diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..a1f3f66 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,49 @@ +name: rust + +on: + push: + branches: [master, main] + paths: ['rust/**', '.github/workflows/rust.yml'] + pull_request: + paths: ['rust/**', '.github/workflows/rust.yml'] + +defaults: + run: + shell: pwsh + working-directory: rust + +jobs: + build: + name: build / test / clippy / fmt + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + + - name: Install Rust toolchain + uses: dtolnay/rust-toolchain@stable + with: + toolchain: '1.85' + components: rustfmt, clippy + + - name: Cache cargo + uses: Swatinem/rust-cache@v2 + with: + workspaces: rust + + - name: cargo fmt --check + run: cargo fmt --all -- --check + + - name: cargo build --workspace + run: cargo build --workspace --all-targets + + - name: cargo test --workspace + run: cargo test --workspace --no-fail-fast + env: + # MX_LIVE is intentionally NOT set — live tests require an AVEVA + # install + Galaxy DB which CI cannot provide. See design/60-roadmap.md + # validation strategy: live probes run on the maintainer's workstation, + # gated by `MX_LIVE=1` via `tools/Setup-LiveProbeEnv.ps1`. + MX_LIVE: '' + + - name: cargo clippy --workspace -- -D warnings + run: cargo clippy --workspace --all-targets -- -D warnings diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a3fd58f --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ +# ---- .NET build artifacts ---- +**/bin/ +**/obj/ +*.user +*.userprefs +*.suo +*.userosscache +*.sln.docstates +[Dd]ebug/ +[Rr]elease/ +.vs/ + +# ---- Rust build artifacts (rust/ has its own .gitignore too) ---- +**/target/ +**/*.rs.bk +Cargo.lock.bak +# rust/Cargo.lock IS committed for workspace reproducibility. + +# ---- IDE / editor ---- +.idea/ +.vscode/ +*.swp +*~ +*.bak +*.tmp + +# ---- OS ---- +Thumbs.db +Desktop.ini +.DS_Store + +# ---- Local credential / state caches ---- +# (We never inline secrets — credentials live in Infisical via +# tools/Setup-LiveProbeEnv.ps1. Anything in these patterns is +# definitionally never tracked.) +**/*.secret +**/.env +**/.env.local +**/credentials.json + +# ---- Frida-generated test fixture symlinks ---- +# rust/tests/fixtures/ is populated at test time from captures/ per +# design/60-roadmap.md M0; the actual symlink tree is not checked in. +/rust/tests/fixtures/ + +# ---- Plan files (project-local Claude Code plan staging) ---- +# These live under the user's ~/.claude/plans/ scope but appear at the +# project root if accidentally created. +/zazzy-napping-sketch.md + +# ---- Reverse-engineering working state ---- +# `analysis/ghidra/projects/` is Ghidra's transient project database +# (~178 MB). It is regenerated by re-loading the binaries in +# `analysis/ghidra/input/` and re-running the headless decompile scripts +# under `analysis/ghidra/scripts/`. The actual evidence — the decompiled +# C/C++ pseudo-source — lives under `analysis/ghidra/exports/` and IS +# committed. +/analysis/ghidra/projects/ + +# `analysis/ghidra/input/` contains AVEVA's proprietary DLLs (Lmx.dll, +# NmxSvc.exe, NmxAdptr.dll, NmxSvcps.dll, LmxProxy.dll, aaMxDataConsumer.dll, +# WWProxyStub.dll) copied from a System Platform install. These are vendor +# binaries; they are not ours to redistribute. The decompiled exports under +# `analysis/ghidra/exports/` ARE committed (they are our analysis, not the +# vendor binaries). To repopulate `input/` for a re-decompile, copy the +# matching DLLs from a local AVEVA install and rerun the Ghidra scripts. +/analysis/ghidra/input/ diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..de42d3c --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,125 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project goal + +Build a **native Rust interface that replaces the AVEVA/Wonderware MXAccess library**, giving Rust applications an MXAccess-equivalent API for talking to the AVEVA System Platform. When COM bindings are needed, use [microsoft/windows-rs](https://github.com/microsoft/windows-rs). + +**Two-layer delivery target:** + +1. **Raw MXAccess replacement is key.** The first deliverable is a faithful, byte-accurate Rust reimplementation of the MXAccess surface (register/advise/write/read/subscribe/callback dispatch) over the proven x64 transports. Parity with native MXAccess wire behavior comes before ergonomics — every operation must round-trip the same bytes and surface the same status as the captured native stack. +2. **High-level safe async via Tokio is the end goal.** Above the raw layer, expose an idiomatic Rust API: `async`/`await` on Tokio, `Send + Sync` handles, typed errors instead of `HRESULT`, no `unsafe` in the public surface, structured subscription streams (e.g. `Stream`), and cancellation via `CancellationToken`/drop. The raw layer should be usable on its own for power users; the Tokio layer is what most consumers should reach for. + +The Rust port does not yet exist in this tree. What lives here today is the **reverse-engineering reference**: a working .NET 10 x64 managed implementation of the same protocol stack, plus the captures, decompiled artifacts, and wire-format docs that justify every byte of it. Treat the .NET code as the executable spec — do not invent protocol behavior; port what is already proven. + +## High-level architecture + +The real MXAccess runtime is a **32-bit COM/native stack**. The .NET assembly `ArchestrA.MXAccess.dll` is just an interop shim around `LMXPROXYLib`: + +``` +ArchestrA.MXAccess.dll -> LmxProxy.dll -> Lmx.dll / NmxAdptr.dll -> NmxSvc.exe +``` + +Two viable replacement paths have been proven from x64 (relevant to the Rust port): + +1. **Managed DCOM/NDR directly to `NmxSvc.exe`** — full MXAccess-compatible LMX/NMX behavior. Bypasses the x86-only `NmxSvcps.dll` proxy/stub by speaking ORPC + NTLM packet-integrity on the wire. This is what `src/MxNativeClient` does. The Rust port should follow the same approach using `windows-rs` for COM activation/RPCSS bootstrap and a hand-rolled DCE/RPC + NDR codec for the service interfaces. +2. **ASB (`IASBIDataV2`) over `net.tcp` to MxDataProvider** — a higher-level data-service path that handles register/read/write/complete/subscribe without going through NMX at all. This is what `src/MxAsbClient` does. Useful as a regular-tag data-plane behind a compatibility router; does not cover callback-only MXAccess semantics. + +`docs/ASB-Native-Integration-Decision.md` records the decision to use ASB as the preferred data-plane and reserve NMX for callback-only semantics that ASB cannot reach. + +### Layering inside the .NET reference + +- **`src/MxNativeCodec`** — pure protocol codec, no I/O. Handles `MxReferenceHandle` (the 20-byte LMX automation/attribute handle, including CRC-16/IBM signatures over lowercase UTF-16LE names), the NMX `TransferData` envelope, item-control (advise/unadvise) bodies, normal/secured write bodies, `Write2` timestamped variants, subscription/status callback decoders (`0x32`, `0x33`), reference-registration (`0x10`/`0x11`), and the `MxStatus`/`MxValueKind`/`MxDataType` model. **This is the layer most directly equivalent to what the Rust port needs to reproduce first.** +- **`src/MxNativeClient`** — DCOM transport + session façade. Implements managed NTLMv2 (`ManagedNtlmClientContext`), DCE/RPC PDU framing (`DceRpcPdu`, `DceRpcTcpClient`), `IObjectExporter::ResolveOxid`, `IRemUnknown::RemQueryInterface`, the `INmxService2` client (`ManagedNmxService2Client`), a managed callback exporter that serves `INmxSvcCallback`/`IRemUnknown` from a managed RPC endpoint, plus the high-level `MxNativeSession` and the MXAccess-shaped `MxNativeCompatibilityServer`. Talks SQL directly to the Galaxy Repository (`GalaxyRepositoryTagResolver`, `GalaxyRepositoryUserResolver`) instead of calling the x86 LMX resolver. +- **`src/MxAsbClient`** — ASB/WCF data client (`MxAsbDataClient`) plus an MXAccess-shaped facade (`MxAsbCompatibilityServer`). Self-contained from NMX. +- **`src/*.Probe`** — runnable diagnostic CLIs that exercise individual protocol slices end-to-end against the live local AVEVA install. They are how new behavior gets validated; their CLI flags double as documentation of the supported operations. +- **`src/*.Tests`** — assertion-style runners (each is a console `Program.cs`, not a framework test project). Run them with `dotnet run --project ...`. +- **`src/MxTraceHarness`** (net481/x86) and **`src/NmxComHarness`** — instrumented harnesses that load the real x86 stack to capture ground-truth wire bytes. + +### Reverse-engineering artifacts (the spec, in priority order) + +When in doubt about wire format, these are authoritative — read before guessing: + +- `docs/MXAccess-Reverse-Engineering.md`, `docs/MXAccess-Public-API.md` — overall map and the public surface to replicate. +- `docs/Loopback-Protocol-Findings.md`, `docs/NMX-COM-Contracts.md`, `docs/Transport-Correlation.md` — DCE/RPC interfaces, opnums, and how Frida-observed native calls map to TCP frames. +- `docs/ASB-Variant-Wire-Format.md` — ASB variant layout, scalar/array, timestamps, durations, quality/status. +- `docs/DotNet10-Native-Library-Plan.md` — current parity matrix vs. `ILMXProxyServer5`, what's proven, what's blocked. +- `docs/MxNativeSession-API.md` — the consumer-facing API surface the Rust port should converge on. +- `analysis/frida/write-body-matrix.tsv`, `write-array-body-matrix.tsv`, `write-mode-matrix.tsv` — per-type captured write bodies. +- `analysis/proxy/nmxsvcps-procedures.tsv` — decoded MIDL procedure table. +- `analysis/decompiled-mxaccess/`, `analysis/decompiled-interop/`, `analysis/decompiled/` — decompiled C# of the real assemblies. `analysis/ghidra/` and `analysis/native/` for native code. +- `captures/0NN-frida-*` — controlled Frida captures, one per write/subscribe scenario. `frida-to-tcp-map.tsv` inside a capture correlates native calls to the wire. +- `work_remain.md` — current status of what's done vs. open across both managed paths. + +## Common commands + +All .NET projects target **net10.0-windows / x64** (except the x86 `MxTraceHarness`, which is net481). + +```powershell +# Build the protocol layers +dotnet build src\MxNativeCodec\MxNativeCodec.csproj +dotnet build src\MxNativeClient\MxNativeClient.csproj +dotnet build src\MxAsbClient\MxAsbClient.csproj + +# Run the assertion-style test programs +dotnet run --project src\MxNativeCodec.Tests\MxNativeCodec.Tests.csproj +dotnet run --project src\MxNativeClient.Tests\MxNativeClient.Tests.csproj +dotnet run --project src\MxAsbClient.Tests\MxAsbClient.Tests.csproj + +# Live probes against the local AVEVA install (require NTLM env + Galaxy SQL access) +dotnet run --project src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-session-write --tag=TestChildObject.TestInt --value=123 --objref-only +dotnet run --project src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-session-subscribe --tag=TestChildObject.TestInt --subscribe-hold-seconds=5 --objref-only + +# Populate live-probe env vars from Infisical (via wwtools/secrets/Get-Secret.ps1). +# Sets MX_LIVE, MX_NMX_HOST, MX_GALAXY_DB, MX_TEST_USER, MX_TEST_DOMAIN, +# MX_TEST_PASSWORD, and (when configured) MX_ASB_SHARED_SECRET. Dot-source so +# the env vars persist in the calling session. Never inline plaintext. +. .\tools\Setup-LiveProbeEnv.ps1 +. .\tools\Setup-LiveProbeEnv.ps1 -SkipAsbSecret # if ASB secret not yet in Infisical +.\tools\Setup-LiveProbeEnv.ps1 -DryRun # print what would be set +``` + +There is no solution file or workspace runner — build/test each project explicitly. There is no lint config; the projects use `Nullable` and `ImplicitUsings` enabled and rely on the compiler. + +### Rust workspace (M0 onwards) + +The Rust port lives under `rust/` (sibling of `src/`). Toolchain pinned to 1.85 stable via `rust/rust-toolchain.toml`; edition 2024; license MIT. + +```powershell +# All commands run from the rust/ workspace root +cd rust + +# Workspace-wide +cargo build --workspace --all-targets +cargo test --workspace --no-fail-fast +cargo clippy --workspace --all-targets -- -D warnings +cargo fmt --all -- --check + +# Single crate +cargo build -p mxaccess-codec +cargo test -p mxaccess-codec + +# Examples (live under crates/mxaccess/examples/, invoke with -p mxaccess) +cargo run -p mxaccess --example connect-write-read +cargo run -p mxaccess --example subscribe -- --tag TestChildObject.TestInt +cargo run -p mxaccess --example asb-subscribe -- --tag TestChildObject.TestInt + +# Live integration tests (require AVEVA + Galaxy DB; gated by MX_LIVE) +. ..\tools\Setup-LiveProbeEnv.ps1 # dot-source — fetches creds from Infisical +cargo test -p mxaccess --features live -- --ignored + +# Publish-check (M0 DoD) +cargo publish --dry-run -p mxaccess-codec +``` + +CI: `.github/workflows/rust.yml` runs `fmt --check`, `build`, `test`, `clippy -D warnings` on Windows. + +## Working rules specific to this project + +- **Do not fabricate protocol behavior.** Every wire shape in the .NET reference is backed by a Frida capture, decompiled source, or live probe. When extending the Rust port, point to the same evidence — capture a new fixture if one doesn't exist. +- **Preserve unknown bytes.** The codecs in `MxNativeCodec` deliberately round-trip unknown tag/session/quality fields rather than zeroing them. Mirror this in Rust; consumers depend on byte-for-byte parity with native MXAccess for some flows. +- **x64 only for the replacement.** The whole point is to escape the 32-bit `NmxSvcps.dll` proxy/stub. Do not introduce a dependency on the x86 stack from any replacement code; if x86 is unavoidable for capture/validation, isolate it in `MxTraceHarness`/`NmxComHarness`. +- **COM in Rust → use `windows-rs`.** For COM activation, `IUnknown`, OBJREF marshaling, and registered type-library callback paths, prefer `windows`/`windows-rs` types over hand-rolled FFI. +- **Galaxy Repository access is direct SQL** (see `GalaxyRepositoryTagResolver.cs`), not LMX. The Rust port should do the same — query the `dbo.gobject` / `dbo.instance` / `dbo.dynamic_attribute` / `dbo.attribute_definition` / `dbo.primitive_instance` / `dbo.package` tables, then walk the package-inheritance chain via `package.derived_from_package_id` (the recursive CTE in `GalaxyRepositoryTagResolver.cs:209-293`, named `deployed_package_chain`). Combine with CRC-16/IBM signature computation locally to reproduce the native handle without touching x86 LMX. Verified against `wwtools/grdb/` (the sibling Galaxy SQL exploration repo) and `wwtools/grdb/queries/attributes.sql`. Resolver input is `tag_name`-form (e.g. `DelmiaReceiver_001`), NOT `contained_name`-form (e.g. `TestMachine_001.DelmiaReceiver`) — the two are asymmetric in the schema. Earlier drafts of this file listed `aa_attribute` / `aa_object` / `mx_attribute_category` as the surface; those names do not exist as tables in the Galaxy DB and have been corrected. +- **Captures and probe outputs in `captures/`, `analysis/frida/`, `analysis/proxy/` are evidence, not throwaway logs.** Don't delete or rewrite them when refactoring. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c28728f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Joseph Doherty + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..466b0f9 --- /dev/null +++ b/README.md @@ -0,0 +1,313 @@ +# AVEVA MXAccess reverse-engineering notes + +This folder documents the local AVEVA/Wonderware MXAccess stack installed on this +machine, using the primary runtime DLL: + +`C:\Program Files (x86)\ArchestrA\Framework\Bin\ArchestrA.MXAccess.dll` + +Primary documentation: + +- [docs/MXAccess-Reverse-Engineering.md](docs/MXAccess-Reverse-Engineering.md) +- [docs/MXAccess-Public-API.md](docs/MXAccess-Public-API.md) +- [docs/Managed-LMX-NMX-Capture-Plan.md](docs/Managed-LMX-NMX-Capture-Plan.md) +- [docs/Capture-Run-2026-04-25.md](docs/Capture-Run-2026-04-25.md) +- [docs/Loopback-Protocol-Findings.md](docs/Loopback-Protocol-Findings.md) +- [docs/NMX-COM-Contracts.md](docs/NMX-COM-Contracts.md) +- [docs/DotNet10-Native-Library-Plan.md](docs/DotNet10-Native-Library-Plan.md) +- [docs/Ghidra-Headless-Analysis.md](docs/Ghidra-Headless-Analysis.md) +- [docs/Transport-Correlation.md](docs/Transport-Correlation.md) + +Current executable capture harness: + +`src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe` + +Managed codec work-in-progress: + +`src\MxNativeCodec\MxNativeCodec.csproj` + +.NET 10 x64 NMX client/probe scaffold: + +`src\MxNativeClient\MxNativeClient.csproj` +`src\MxNativeClient.Probe\MxNativeClient.Probe.csproj` +`src\MxNativeClient.Tests\MxNativeClient.Tests.csproj` + +This .NET 10 library currently implements a template-based encoder/decoder for +the observed `CNmxAdapter::PutRequest` write bodies. It preserves unknown +tag/session fields from a captured body and replaces the typed value slot plus +write index. The companion console test project round-trips the real Frida +bytes for bool, int, float, double, string, datetime, and the observed +int/bool/float/double/string array bodies. It also includes the first observed +`INmxService2.TransferData` envelope codec (`46-byte header + PutRequest body`). +The client scaffold now includes managed OBJREF parsing, NMX procedure metadata, +ORPC structures, `IRemUnknown::RemQueryInterface` message composition, and +DCE/RPC PDU primitives tested against captured bytes. It also has a managed +unauthenticated `IObjectExporter::ResolveOxid` probe that reaches RPCSS and +currently confirms the expected `ERROR_ACCESS_DENIED` auth blocker. A reference +Impacket probe now proves the packet-private DCOM path end to end: it activates +`NmxSvc.NmxService`, receives an `INmxService2` IPID, and calls +`GetPartnerVersion` successfully from a 64-bit process without loading the +AVEVA x86 proxy. The managed scaffold now goes further: it implements managed +NTLMv2 packet-integrity signing, resolves the OXID, performs +`IRemUnknown::RemQueryInterface`, and calls `INmxService2.GetPartnerVersion` +successfully from .NET 10 x64. The first service-specific scalar codec is in +`src\MxNativeClient\NmxService2Messages.cs`. + +Generated static-analysis artifacts are under `analysis/`: + +- `analysis/decompiled-mxaccess/` - decompiled C# for `ArchestrA.MXAccess.dll`. +- `analysis/interop/` - imported interop assemblies generated from native type libraries. +- `analysis/decompiled-interop/` - decompiled type-library imports for `Lmx.dll`, `LmxProxy.dll`, + `NmxAdptr.dll`, `NmxSvc.exe`, and `MXAccess32.tlb`. + +The main finding is that `ArchestrA.MXAccess.dll` is not the implementation of +the LMX/NMX protocol. It is a .NET COM interop assembly imported from +`LMXPROXYLib`. The real runtime path is a 32-bit COM/native stack: + +`ArchestrA.MXAccess.dll` -> `LmxProxy.dll` -> `Lmx.dll` / `NmxAdptr.dll` -> `NmxSvc.exe` + +That explains the current `net48`/x86 constraint and shapes the possible paths +to a modern .NET or Rust interface. + +Current loopback captures show that the native path uses DCE/RPC on +`::1:49704` plus at least one separate compact localhost binary stream around +write/write-complete activity. See `docs/Loopback-Protocol-Findings.md` for the +captured interface UUIDs, opnum shape, and write-window correlation. + +Latest controlled captures: + +`captures\021-loopback-write-test-int-sequence-103-105` +`captures\023-frida-write-test-int-sequence-109-111` +`captures\024-frida-write-test-bool-sequence` +`captures\025-frida-write-test-float-sequence` +`captures\026-frida-write-test-double-sequence` +`captures\027-frida-write-test-string-sequence` +`captures\028-frida-write-test-datetime-sequence` +`captures\029-frida-write-test-int-array` +`captures\030-frida-write-test-bool-array` +`captures\031-frida-write-test-float-array` +`captures\032-frida-write-test-double-array` +`captures\033-frida-write-test-string-array` +`captures\035-frida-write-test-datetime-array-full` +`captures\040-frida-write-normal-secured-protectedvalue` +`captures\041-frida-write-normal-verified-protectedvalue1` +`captures\042-frida-write2-test-int-timestamp` +`captures\043-frida-loopback-write-test-int-115` +`captures\044-frida-loopback-write-test-int-123456789` +`captures\045-service-boundary-write-test-int-123456790` +`captures\046-service-boundary-write-test-int-123456791` + +The loopback int sequence writes `TestChildObject.TestInt` to `103`, `104`, and +`105` in one advised session. The local stream framing is stable, but the +requested int values are not isolated as plain int32 payloads in the decoded +write-window pcap records. The Frida traces then find the values at the native +boundary: `CLMXProxyServer` receives the COM `VARIANT`, `CNmxAdapter::PutRequest` +carries the typed body, and `CNmxAdapter::TransferData` wraps that body. + +The current scalar write matrix is saved at: + +`analysis\frida\write-body-matrix.tsv` + +The current array write matrix is saved at: + +`analysis\frida\write-array-body-matrix.tsv` + +The current write-mode matrix is saved at: + +`analysis\frida\write-mode-matrix.tsv` + +The decoded `NmxSvcps.dll` MIDL procedure table is saved at: + +`analysis\proxy\nmxsvcps-procedures.tsv` + +The .NET 10 x64 remote-style `IUnknown` OBJREF probe output is saved at: + +`analysis\proxy\nmxservice-objref-context2.txt` + +The reference DCOM activation and `INmxService2.GetPartnerVersion` probe output +is saved at: + +`analysis\proxy\dcom-inmxservice2-getpartner-probe.txt` + +The managed OXID, RemQueryInterface, and `INmxService2.GetPartnerVersion` probe +output is saved at: + +`analysis\proxy\managed-remqi-and-getpartner-probe.txt` + +The first Frida-to-TCP correlation output is: + +`captures\043-frida-loopback-write-test-int-115\frida-to-tcp-map.tsv` + +The non-ambiguous correlation capture is: + +`captures\044-frida-loopback-write-test-int-123456789\frida-to-tcp-map.tsv` + +The matrices cover bool, int, float, double, string, datetime, and the matching +array forms, plus timestamped `Write2` and secured/verified public write +behavior. Capture `046` proves the same 86-byte write body reaches +`CNmxService.TransferData` inside `NmxSvc.exe`, but the .NET 10 x64 probe proves +ordinary COM interop fails on first method call because the only installed MIDL +proxy/stub is 32-bit (`NmxSvcps.dll`). The latest managed probe proves the +service can still be reached through managed packet-integrity ORPC. The next +blocker for the full managed x64 library is callback/interface-pointer +marshaling for `RegisterEngine2`, the `TransferData` byte-array method, then +status/error, add-item, advise, remove-item, and general tag metadata synthesis. + +The `TransferData` byte-array method is now encoded and live-probed. The +service returns an NMX application HRESULT for the unregistered control probe, +which means the ORPC/NDR call shape is accepted. The callback marshal probe +confirms Windows cannot export `INmxSvcCallback` from x64 on this machine +because the proxy/stub is not registered for 64-bit; a managed callback object +exporter is required. The callback method codecs for `DataReceived` and +`StatusReceived` are now in `src\MxNativeClient\NmxSvcCallbackMessages.cs`; the +remaining callback work is the managed object endpoint/OBJREF exporter. + +`RegisterEngine2` marshaling is now decoded far enough for a managed .NET 10 +x64 null-callback registration lifecycle. The x86 direct harness and Frida +captures show the required `0x72657355` BSTR user-marshal marker, the BSTR wire +format, and the callback MInterfacePointer wrapper. The live managed probe is: + +`analysis\proxy\managed-registerengine2-null-callback-probe.txt` + +It returns non-failing COM success codes for both register and unregister. The +remaining `RegisterEngine2` work is generating a managed callback OBJREF and +serving `INmxSvcCallback`/`IRemUnknown` from a managed DCE/RPC endpoint. + +A synthetic managed callback OBJREF currently fails before `NmxSvc.exe` connects +to the advertised listener, which points to missing RPCSS/OXID registration. +A COM-runtime-registered x64 `IUnknown` OBJREF patched to the callback IID is +accepted for non-null `RegisterEngine2`: + +`analysis\proxy\managed-registerengine2-callback-com-iunknown-objref-probe.txt` + +That proves the non-null callback argument can be accepted in .NET 10 x64, but +it does not yet prove callback method dispatch without the missing x64 +`NmxSvcps.dll` stub. + +The x64 callback marshal issue can be solved with a registered type library and +the Windows standard automation proxy/stub: + +`analysis\scripts\register_x64_callback_typelib.ps1` + +After that setup, `CoMarshalInterface(INmxSvcCallback)` succeeds from .NET 10 +x64 and `NmxSvc.exe` accepts the real marshaled callback OBJREF: + +`analysis\proxy\managed-registerengine2-callback-com-real-probe.txt` + +The same synthetic self-transfer path produces no callback in the x86 direct +harness, so the next blocker is the NMX add/advise/session message bodies that +actually trigger data/status callbacks. + +That next layer is now being decoded from focused subscription capture: + +`captures\058-frida-subscribe-testint` + +The capture shows `AdviseSupervisory` sending a 39-byte `CNmxAdapter.PutRequest` +body wrapped in an 85-byte `TransferData` body. The corresponding unadvise body +uses the same item-control shape with command byte `0x21` instead of `0x1f`, +wrapped in an 83-byte `TransferData` body whose envelope kind is `3`. Incoming +`ProcessDataReceived` bodies use a related length-prefixed service-to-adapter +shape and carry status/data commands including `0x32` and `0x33`. The generic +frame classifier is now checked into: + +`src\MxNativeCodec\NmxObservedFrame.cs` + +The callback codec now accepts both observed service-to-adapter forms: the +4-byte length-prefixed buffers and the direct 46-byte-header buffers seen in +the Write2 callback capture. It decodes `0x32` subscription status records and +`0x33` data update records into typed status/detail, quality, FILETIME +timestamps, wire kind, correlation IDs, and scalar values for the observed bool, +int, float, double, string, scalar arrays, datetime arrays, and multi-record +date/status updates: + +`src\MxNativeCodec\NmxSubscriptionMessage.cs` + +The generated envelope encoder now reproduces the captured advise and unadvise +`TransferData` bodies exactly: + +`src\MxNativeCodec\NmxTransferEnvelope.cs` + +Follow-up captures for `TestBool`, `TestString`, and the array attributes show +that the item-control body contains an `MxHandle` projection. The +parser/encoder is: + +`src\MxNativeCodec\NmxItemControlMessage.cs` + +Capture `061` hooks `Lmx.dll` around `IMxReference.GetMxHandle` and +`AccessManager.FixUpMxHandle`. It proves the resolved `TestInt` handle is a +20-byte structure: + +`01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00` + +The LMX typelib names this as `MxAutomationObjectHandle` followed by +`MxAttributeHandle`: + +| Offset | Field | Value for `TestChildObject.TestInt` | +| ---: | --- | ---: | +| 0 | `galaxy` | `1` | +| 2 | `platform` | `1` | +| 4 | `engine` | `2` | +| 6 | `object` | `5` | +| 8 | object signature | `0xd736` | +| 10 | primitive id | `2` | +| 12 | attribute id | `155` | +| 14 | property/category id | `10` | +| 16 | attribute signature | `0xda3e` | +| 18 | attribute index | `0` (`-1` for arrays) | + +The NMX item-control request projects bytes 6 through 19 of this handle, then +appends tail `0x00000003`. The signatures are reproducible in managed code: +CRC-16/IBM over the lowercase UTF-16LE object or attribute name +(`testchildobject -> 0xd736`, `testint -> 0xda3e`). The managed handle type and +synthesizer are: + +`src\MxNativeCodec\MxReferenceHandle.cs` + +Normal write bodies are also generated from the same handle projection plus +the GR data type. The generator reproduces the observed normal bool, int, +float, double, string, datetime, and array write bodies, plus the captured +timestamped int `Write2` body. The GR resolver and generator also cover the +captured secured/verified test tags (`security_classification` 2 and 3); +their public route is still the normal write body shape: + +`src\MxNativeCodec\NmxWriteMessage.cs` + +The Galaxy Repository resolver is now live-tested against the local `ZB` +database and reproduces that same handle for `TestChildObject.TestInt` without +calling the x86 LMX resolver: + +`src\MxNativeClient\GalaxyRepositoryTagResolver.cs` + +The reusable .NET 10 x64 managed service client is now checked into: + +`src\MxNativeClient\ManagedNmxService2Client.cs` + +A first consumer-facing session facade now wraps the low-level pieces: + +`src\MxNativeClient\MxNativeSession.cs` + +It opens/registers a managed callback engine, resolves Galaxy Repository tag +metadata, exposes `WriteAsync`, timestamped `Write2Async`, +metadata browse, transient subscription `ReadAsync`, +`SubscribeAsync`/`Unsubscribe`, and raises typed callback records decoded by +`NmxSubscriptionMessage`. + +The facade usage notes and probe commands are documented in: + +`docs\MxNativeSession-API.md` + +The remaining parity gaps against the full `ILMXProxyServer5` MXAccess surface +are tracked method-by-method in: + +`docs\DotNet10-Native-Library-Plan.md` + +It moves the proven managed DCOM path out of the probe and exposes activation, +OXID resolution, `IRemUnknown::RemQueryInterface`, `RegisterEngine2`, `Connect`, +subscriber engine calls, `TransferData`, generated `AdviseSupervisory` and +`UnAdvise` bodies, generated normal `Write` and timestamped `Write2` bodies, +`GetPartnerVersion`, and +unregister without loading the +AVEVA x86 proxy/stub. The probe now has a guarded managed subscribe path; SSPI +auth faults at `ResolveOxid` with `0x00000721`, so the valid end-to-end +subscription probe remains the managed NTLM runtime-auth path. When callbacks +arrive, the probe prints the typed subscription records using the same managed +callback decoder. diff --git a/analysis/db/capture-tag-candidates.tsv b/analysis/db/capture-tag-candidates.tsv new file mode 100644 index 0000000..8f87f28 --- /dev/null +++ b/analysis/db/capture-tag-candidates.tsv @@ -0,0 +1,126 @@ +candidate_set full_tag_reference data_type_name mx_data_type is_array array_dimension security_classification security_name is_historized is_alarm attribute_source +------------- ------------------ -------------- ------------ -------- --------------- ----------------------- ------------- ------------- -------- ---------------- +read_capture DevTestObject.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestArea.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestArea2.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestChildObject.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_001.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_002.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_003.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_004.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_005.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_006.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_007.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_008.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_009.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_010.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_011.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_012.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_013.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_014.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_015.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_016.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_017.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_018.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_019.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture TestMachine_020.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_001.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_002.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_003.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_004.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_005.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_006.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_007.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_008.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_009.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_010.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DelmiaReceiver_020.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DEV.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DevAppEngine.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture DevPlatform.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture MESReceiver_001.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +read_capture MESReceiver_002.ScanState Boolean 1 0 NULL -1 Unknown 0 0 primitive +candidate_set full_tag_reference data_type_name mx_data_type is_array array_dimension security_classification security_name is_historized is_alarm attribute_source +------------- ------------------ -------------- ------------ -------- --------------- ----------------------- ------------- ------------- -------- ---------------- +array_read_capture DevTestObject.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestArea.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestArea2.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestChildObject.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_001.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_002.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_003.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_004.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_005.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_006.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_007.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_008.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_009.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_010.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_011.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_012.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_013.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_014.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_015.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_016.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_017.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_018.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_019.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestMachine_020.AlarmCntsBySeverityEnableShelved[] Integer 2 1 4 -1 Unknown 0 0 primitive +array_read_capture TestChildObject.TestBoolArray[] Boolean 1 1 10 1 Operate 0 0 dynamic +array_read_capture TestChildObject.TestDateTimeArray[] Time 6 1 10 1 Operate 0 0 dynamic +array_read_capture TestChildObject.TestDoubleArray[] Double 4 1 10 1 Operate 0 0 dynamic +array_read_capture TestChildObject.TestFloatArray[] Float 3 1 10 1 Operate 0 0 dynamic +array_read_capture TestChildObject.TestIntArray[] Integer 2 1 10 1 Operate 0 0 dynamic +array_read_capture TestChildObject.TestStringArray[] String 5 1 10 1 Operate 0 0 dynamic +array_read_capture DevTestObject.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestArea.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestArea2.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestChildObject.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestMachine_001.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestMachine_001.TestAlarm001.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestMachine_001.TestAlarm002.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestMachine_001.TestAlarm003.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestMachine_002.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +array_read_capture TestMachine_002.TestAlarm001.AlarmCntsBySeverity[] Integer 2 1 13 -1 Unknown 0 0 primitive +candidate_set full_tag_reference data_type_name mx_data_type is_array array_dimension security_classification security_name is_historized is_alarm attribute_source +------------- ------------------ -------------- ------------ -------- --------------- ----------------------- ------------- ------------- -------- ---------------- +possible_write_capture TestChildObject.TestBool Boolean 1 0 NULL 1 Operate 0 0 dynamic +possible_write_capture TestChildObject.TestDateTime Time 6 0 NULL 1 Operate 0 0 dynamic +possible_write_capture TestChildObject.TestDouble Double 4 0 NULL 1 Operate 0 0 dynamic +possible_write_capture TestChildObject.TestFloat Float 3 0 NULL 1 Operate 0 0 dynamic +possible_write_capture TestChildObject.TestInt Integer 2 0 NULL 1 Operate 0 0 dynamic +possible_write_capture TestChildObject.TestString String 5 0 NULL 1 Operate 0 0 dynamic +possible_write_capture TestMachine_001.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_002.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_003.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_004.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_005.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_006.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_007.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_008.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_009.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_010.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_011.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_012.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_013.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_014.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_015.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_016.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_017.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_018.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_019.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestMachine_020.TestHistoryValue Integer 2 0 NULL 1 Operate 1 0 dynamic +possible_write_capture TestArea.AlarmInhibit Boolean 1 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestArea.PlantState String 5 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestArea2.AlarmInhibit Boolean 1 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestArea2.PlantState String 5 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestChildObject.AlarmInhibit Boolean 1 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.AlarmInhibit Boolean 1 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm001.AckMsg String 5 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm001.AlarmInhibit Boolean 1 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm001.AlarmShelveCmd String 5 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm001.DescAttrName String 5 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm002.AckMsg String 5 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm002.AlarmInhibit Boolean 1 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm002.AlarmShelveCmd String 5 0 NULL 0 FreeAccess 0 0 primitive +possible_write_capture TestMachine_001.TestAlarm002.DescAttrName String 5 0 NULL 0 FreeAccess 0 0 primitive diff --git a/analysis/db/secured-write-candidates.tsv b/analysis/db/secured-write-candidates.tsv new file mode 100644 index 0000000..45cb8c9 --- /dev/null +++ b/analysis/db/secured-write-candidates.tsv @@ -0,0 +1,42 @@ +full_tag_reference data_type_name mx_data_type is_array array_dimension security_classification security_name mx_attribute_category attribute_source +------------------ -------------- ------------ -------- --------------- ----------------------- ------------- --------------------- ---------------- +TestMachine_001.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_002.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_003.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_004.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_005.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_006.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_007.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_008.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_009.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_010.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_011.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_012.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_013.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_014.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_015.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_016.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_017.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_018.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_019.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_020.ProtectedValue Boolean 1 0 NULL 2 SecuredWrite 10 dynamic +TestMachine_001.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_002.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_003.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_004.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_005.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_006.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_007.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_008.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_009.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_010.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_011.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_012.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_013.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_014.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_015.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_016.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_017.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_018.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_019.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic +TestMachine_020.ProtectedValue1 Boolean 1 0 NULL 3 VerifiedWrite 10 dynamic diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop.Lmx.csproj b/analysis/decompiled-interop/Interop.Lmx/Interop.Lmx.csproj new file mode 100644 index 0000000..3531e09 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop.Lmx.csproj @@ -0,0 +1,15 @@ + + + Interop.Lmx + False + net40 + + + 14.0 + True + False + + + + + \ No newline at end of file diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ASBResultCode.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ASBResultCode.cs new file mode 100644 index 0000000..5a26db7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ASBResultCode.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("C826B0C8-F2AE-4032-BDF4-B74C189087BD")] +public struct ASBResultCode +{ + public ulong ItemId; + + [MarshalAs(UnmanagedType.Error)] + public int ERRORCODE; + + public uint WriteCapability; + + public uint WriteHandle; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AccessManager.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AccessManager.cs new file mode 100644 index 0000000..2292c1b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AccessManager.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("96469CD1-8EF4-11D2-BF61-00104B5F96A7")] +[CoClass(typeof(AccessManagerClass))] +public interface AccessManager : IAccessManagerHost +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AccessManagerClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AccessManagerClass.cs new file mode 100644 index 0000000..1585c38 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AccessManagerClass.cs @@ -0,0 +1,123 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("26014181-4FF7-11D2-8FA6-00A0C937AF60")] +[ClassInterface(ClassInterfaceType.None)] +public class AccessManagerClass : IAccessManagerHost, AccessManager, IAccessManagerHost2, IAccessManagerHost3, IAccessManagerHost4, IAccessManagerClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SwapDataBuffers(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_SwapDataBuffers(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownMxConsumer(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.IUnknown)] + public virtual extern object CreateMxConnection(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ActionTypes.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ActionTypes.cs new file mode 100644 index 0000000..f1afbd1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ActionTypes.cs @@ -0,0 +1,55 @@ +namespace Interop.Lmx; + +public enum ActionTypes +{ + OPENCONNECTION = 0, + FMCACCEPTEDCONN = 1, + SECURE_OPEN_CONNECTION = 256, + NewConnectionReq = 257, + CheckpointData = 258, + FMTYPE_PLATFORM_INFO_REQ = 4096, + FMTYPE_PLATFORM_INFO_RESP = 4097, + FMTYPE_SUBSCRIBE_HEARTBEAT_REQ = 4098, + FMTYPE_SUBSCRIBE_HEARTBEAT_RESP = 4099, + FMTYPE_PLATFORM_HEARTBEAT = 4112, + FMTYPE_GET_PARTNER_ENGINE_INFO_REQ = 4352, + FMTYPE_GET_PARTNER_ENGINE_INFO_RESP = 4353, + FMTYPE_SET_HEARTBEAT_REQ = 4354, + FMTYPE_SET_HEARTBEAT_RESP = 4355, + FMTYPE_SET_PARTNER_HEARTBEAT_REQ = 4356, + FMTYPE_SET_PARTNER_HEARTBEAT_RESP = 4357, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_REQ = 4358, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_RESP = 4359, + FMTYPE_SUBSCRIBE_STATUS_RESQ = 4360, + FMTYPE_SUBSCRIBE_STATUS_RESP = 4361, + FMTYPE_UNSUBSCRIBE_STATUS_RESQ = 4362, + FMTYPE_UNSUBSCRIBE_STATUS_RESP = 4363, + FMTYPE_REFRESH_STATUS_RESQ = 4364, + FMTYPE_REFRESH_STATUS_RESP = 4365, + FMTYPE_REDUNDANCY_STATUS_REQ = 4366, + FMTYPE_REDUNDANCY_STATUS_RESP = 4367, + FMTYPE_PLATFORM_STATUS_REQ = 4368, + FMTYPE_PLATFORM_STATUS_RESP = 4369, + FMTYPE_REDUNDANCY_ENGINE_INFO_REQ = 4370, + FMTYPE_REDUNDANCY_ENGINE_INFO_RESP = 4371, + FMTYPE_ENGINE_FAILOVER_OPERATION_REQ = 4372, + FMTYPE_ENGINE_FAILOVER_OPERATION_RESP = 4373, + FMTYPE_ENGINE_SWITCHING_TO_ACTIVE_NOTIFICATION_REQ = 4374, + FMTYPE_ENGINE_FAILOVER_DATA = 4416, + FMTYPE_ENGINE_FAILOVER_DATA_ACK = 4417, + FMTYPE_ENGINE_SUBSCRIBER_LIST = 4418, + FMTYPE_ENGINE_SUBSCRIBER_LIST_ACK = 4419, + FMTYPE_ENGINE_FAILOVER_STATUS = 4480, + FMTYPE_ENGINE_FAILOVER_STATUS_ACK = 4481, + FMTYPE_ENGINE_PROCESS_STATUS = 4482, + FMTYPE_ENGINE_PROCESS_STATUS_ACK = 4483, + FMTYPE_PLATFORM_STATUS = 4484, + NMXMTYPE_ENGINE_DATA = 4608, + NMXMTYPE_SET_HEARTBEAT_RATE = 4609, + NMXMTYPE_PLATFORM_HEARTBEAT = 4610, + NMXMTYPE_GET_HEARTBEAT_RATE = 4611, + NMXMTYPE_HEARTBEAT_DISCONNECT_REQ = 4612, + NMXMTYPE_CONNECT_INFO = 4613, + NMXMTYPE_CONNECT_INFO_REQ = 4614, + NMXMTYPE_VERSION_ERROR = 4615 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIBootstrapStatusCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIBootstrapStatusCallback.cs new file mode 100644 index 0000000..2e5bd73 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIBootstrapStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("1E8D6971-00DB-461D-A8F9-42733B889966")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface AsyncIBootstrapStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyPlatformStatus([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyPlatformStatus(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIPlatformStatusCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIPlatformStatusCallback.cs new file mode 100644 index 0000000..c6e6f26 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIPlatformStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("4AB54264-3B7A-49C1-8765-B6F905EAD0C3")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface AsyncIPlatformStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyPlatformStatus([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyPlatformStatus(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIProcessStatusCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIProcessStatusCallback.cs new file mode 100644 index 0000000..7264d90 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIProcessStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("B82F0BEA-08FC-47A1-9873-402BAF7600E3")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface AsyncIProcessStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyProcessStatus([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrProcessIdentity, [In] int lPrivateData, [In] tagPlatformProcessStatus lProcessStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyProcessStatus(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIRedundancyMessageSink.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIRedundancyMessageSink.cs new file mode 100644 index 0000000..6ec1918 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIRedundancyMessageSink.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("2B63D630-A693-4D8A-ABF5-3EF9FF7E304B")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface AsyncIRedundancyMessageSink +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_MessageStatusUpdate([In] int lEngineId, [In] int lType, [In] int lReference, [In][ComAliasName("Interop.Lmx.RedundancyMsgStatus")] RedundancyMsgStatus eStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_MessageStatusUpdate(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIRedundancyNotify.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIRedundancyNotify.cs new file mode 100644 index 0000000..f6f473f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AsyncIRedundancyNotify.cs @@ -0,0 +1,46 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("40467D04-81C0-4FD1-821A-27FC4158130E")] +public interface AsyncIRedundancyNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyRedundancyStatusChange([In] int lPlatformId, [In] int lEngineId, [In] int lPartnerPlatformId, [In] int lPartnerEngineId, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In] tagRedundancyIdentity eIdentity, [In] tagRedundancyStatus eStatus, [In] tagRedundancySubStatus eSubStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyRedundancyStatusChange(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyRedundancyEvent([In] int lEngineId, [In] int lPartnerPlatformId, [In] int lPartnerEngineId, [In] tagRedundancyEvent eEvent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyRedundancyEvent(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyRedundancyOperation([In] int lEngineId, [In] tagRedundancyOperation eOperation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyRedundancyOperation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyData([In] int lEngineId, [In] int lType, [In] int lReference, [In] int lLength, [In] ref byte pBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyData(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyDataAck([In] int lEngineId, [In] int lType, [In] int lReference, [In] int lAckCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyDataAck(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyEngineSwitchingToActive([In] int engineThatWasActive, [In] int platformOfEngineThatWasActive, [In] int newActiveEngineId, [In] int newActiveEnginePlatformId, [In] int forceFailoverMaxTimeAllowed); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyEngineSwitchingToActive(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AttributeHandle.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AttributeHandle.cs new file mode 100644 index 0000000..9026887 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/AttributeHandle.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct AttributeHandle +{ + public short shPrimitiveId; + + public short shAttributeId; + + public short shPropertyId; + + public short shIndex1; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapObject.cs new file mode 100644 index 0000000..4d75d4f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("F14886F9-7426-4A85-93F2-734D8950EB20")] +[CoClass(typeof(BootstrapObjectClass))] +public interface BootstrapObject : IBootstrapController4 +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapObjectClass.cs new file mode 100644 index 0000000..9256b24 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapObjectClass.cs @@ -0,0 +1,390 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[ClassInterface(ClassInterfaceType.None)] +[Guid("22595C0C-28B9-11D3-87E0-00A0C982C01C")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class BootstrapObjectClass : IBootstrapController4, BootstrapObject, IBootstrapRegister, IBootstrapRegister2, IBootstrapRegister3, IBootstrapRegister4, IBootstrapRegister5, IBootstrapRegister6, IBootstrapProcessController, IVersionInformation2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform6([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo, [In][MarshalAs(UnmanagedType.BStr)] string bstrOtherNodeCERTIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrGRcertIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrRTcertIssuer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartPlatformProcess([In] int lPrivateData, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szExecutable, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdLnArgs, [In][MarshalAs(UnmanagedType.LPWStr)] string szProcessCtrlArgs, [MarshalAs(UnmanagedType.BStr)] out string pszProcessId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownPlatformProcess([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, [In] int lmsShutdownTimeout); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessStatus([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, out tagPlatformProcessStatus pProcessRunState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownAllPlatformProcesses(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessList(out int plTotalProcesses, [Out] IntPtr ppPlatformProcessList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetCmdStartOptions([In] int lProcessId, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCmdStartOptions([In] int lProcessId, [MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetBuildNumsAndComponentVers(out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetFileVersionNumbers([In] int platformId, [In] MxFileLocationEnum fileLocation, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAllFileVersionNumbers([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int lVersionCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildComponentVersion, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildComponentVersion); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapProcessControllerObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapProcessControllerObject.cs new file mode 100644 index 0000000..c74147d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapProcessControllerObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(BootstrapProcessControllerObjectClass))] +[Guid("22595C0F-28B9-11D3-87E0-00A0C982C01C")] +public interface BootstrapProcessControllerObject : IBootstrapProcessController +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapProcessControllerObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapProcessControllerObjectClass.cs new file mode 100644 index 0000000..d09130f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapProcessControllerObjectClass.cs @@ -0,0 +1,34 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("22595C10-28B9-11D3-87E0-00A0C982C01C")] +[ClassInterface(ClassInterfaceType.None)] +public class BootstrapProcessControllerObjectClass : IBootstrapProcessController, BootstrapProcessControllerObject +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartPlatformProcess([In] int lPrivateData, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szExecutable, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdLnArgs, [In][MarshalAs(UnmanagedType.LPWStr)] string szProcessCtrlArgs, [MarshalAs(UnmanagedType.BStr)] out string pszProcessId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownPlatformProcess([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, [In] int lmsShutdownTimeout); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessStatus([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, out tagPlatformProcessStatus pProcessRunState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownAllPlatformProcesses(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessList(out int plTotalProcesses, [Out] IntPtr ppPlatformProcessList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetCmdStartOptions([In] int lProcessId, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCmdStartOptions([In] int lProcessId, [MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapRegisterObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapRegisterObject.cs new file mode 100644 index 0000000..df495a3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapRegisterObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("E42D2692-4B57-4E97-B99C-2829D60A4D2F")] +[CoClass(typeof(BootstrapRegisterObjectClass))] +public interface BootstrapRegisterObject : IBootstrapRegister3 +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapRegisterObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapRegisterObjectClass.cs new file mode 100644 index 0000000..69af9b5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/BootstrapRegisterObjectClass.cs @@ -0,0 +1,57 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("22595C0E-28B9-11D3-87E0-00A0C982C01C")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class BootstrapRegisterObjectClass : IBootstrapRegister3, BootstrapRegisterObject +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CONNECTING_STATUS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CONNECTING_STATUS.cs new file mode 100644 index 0000000..6f5af2c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CONNECTING_STATUS.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum CONNECTING_STATUS +{ + CONNECTION_FAILED, + CONNECTION_ACCEPTED, + CONNECTION_ESTABLISHED +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckPointerFactoryFlags.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckPointerFactoryFlags.cs new file mode 100644 index 0000000..bb03d93 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckPointerFactoryFlags.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum CheckPointerFactoryFlags +{ + DONT_RESTORE_STATE, + RESTORE_STATE +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointFileCreationResult.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointFileCreationResult.cs new file mode 100644 index 0000000..bf5ef2f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointFileCreationResult.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum CheckpointFileCreationResult +{ + eCreationUndefined, + eCreationOK, + eCreationFailed, + eCreationRestoredFromBackup, + eCreationRestoredFromConfig +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointOperationResult.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointOperationResult.cs new file mode 100644 index 0000000..ba022e9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointOperationResult.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum CheckpointOperationResult +{ + CheckpointOk, + CheckpointFailure +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFactory.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFactory.cs new file mode 100644 index 0000000..754b05e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFactory.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("E9A9DA2F-E017-11D3-937B-00C04FA04C92")] +[CoClass(typeof(CheckpointerFactoryClass))] +public interface CheckpointerFactory : ICheckpointerFactory +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFactoryClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFactoryClass.cs new file mode 100644 index 0000000..185b198 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFactoryClass.cs @@ -0,0 +1,15 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("B80620CE-D909-11D3-9378-00C04FA04C92")] +[ClassInterface(ClassInterfaceType.None)] +public class CheckpointerFactoryClass : ICheckpointerFactory, CheckpointerFactory +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ICheckpointer CreateCheckpointFile([In][MarshalAs(UnmanagedType.LPWStr)] string CheckPointFileName, [In] CheckPointerFactoryFlags Flags, [In] CheckpointerFileCreationDisposition CreateDisp, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr, [In][MarshalAs(UnmanagedType.IUnknown)] object accessMangerHost, out CheckpointFileCreationResult resultCode); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFileCreationDisposition.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFileCreationDisposition.cs new file mode 100644 index 0000000..156373c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerFileCreationDisposition.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum CheckpointerFileCreationDisposition +{ + CHK_POINT_FILE_CREATE_ALWAYS, + CHK_POINT_FILE_OPEN_EXISTING +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerStatus.cs new file mode 100644 index 0000000..e97da2e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CheckpointerStatus.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum CheckpointerStatus +{ + CheckpointerIdle, + CheckpointerBusy, + NoCheckpointFile +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoBaseRuntimeObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoBaseRuntimeObject.cs new file mode 100644 index 0000000..acf517c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoBaseRuntimeObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(CoBaseRuntimeObjectClass))] +[Guid("FA5DE931-208A-11D4-82B8-00104B5F96A7")] +public interface CoBaseRuntimeObject : IAutomationObject +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoBaseRuntimeObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoBaseRuntimeObjectClass.cs new file mode 100644 index 0000000..8ca339c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoBaseRuntimeObjectClass.cs @@ -0,0 +1,114 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("BE4A11B6-86C2-49C6-883E-ABA501A6BCC7")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +[ComConversionLoss] +public class CoBaseRuntimeObjectClass : CoBaseRuntimeObject, IAutomationObject, IAttributeNameProvider, IAttributeNameProvider2, IDebugBRO +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResolvePrimitiveReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][Out] ref short pPrimitiveId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResolveAttributeReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][MarshalAs(UnmanagedType.BStr)] string attributeName, [In][Out] ref short pPrimitiveId, [In][Out] ref short pAttributeId, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAttributeNameProvider2_ResolvePrimitiveReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][Out] ref short pPrimitiveId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAttributeNameProvider2_ResolveAttributeReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][MarshalAs(UnmanagedType.BStr)] string attributeName, [In][Out] ref short pPrimitiveId, [In][Out] ref short pAttributeId, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResolveAttributeReference2([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][MarshalAs(UnmanagedType.BStr)] string attributeName, [In][Out] ref short pPrimitiveId, [In][Out] ref short pAttributeId, out bool isDynamic, out bool HasQuality, out bool HasTimestamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint GetProcessId(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetObjectId(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetCategory(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetHost(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoObjectStg.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoObjectStg.cs new file mode 100644 index 0000000..28d56c7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoObjectStg.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("63022ACC-281B-4B5D-99AE-C2FC9345FCB8")] +[CoClass(typeof(CoObjectStgClass))] +public interface CoObjectStg : IObjectStg +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoObjectStgClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoObjectStgClass.cs new file mode 100644 index 0000000..f71081c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/CoObjectStgClass.cs @@ -0,0 +1,23 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("50DEBB44-A6A3-4FEF-A06A-635B51DE8716")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class CoObjectStgClass : CoObjectStg, IObjectStg +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IAutomationObjectDefinition CreateAutomationObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IPrimitiveDefinition CreatePrimitive(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.IUnknown)] + public virtual extern object Open([In][MarshalAs(UnmanagedType.Struct)] object xmlSource); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataChangeUpdate.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataChangeUpdate.cs new file mode 100644 index 0000000..95cfe31 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataChangeUpdate.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("4C6219B2-BE72-4EB4-9722-2D14F2B1D94E")] +public struct DataChangeUpdate +{ + public ulong ItemId; + + public int StatusCode; + + public uint HighDateTime; + + public uint LowDateTime; + + public int quality; + + public IDataVariant value; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataClient.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataClient.cs new file mode 100644 index 0000000..1c097a8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataClient.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("D55C14E8-FB22-48F8-A092-EF9BC452A083")] +[CoClass(typeof(DataClientClass))] +public interface DataClient : IDataClient +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataClientClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataClientClass.cs new file mode 100644 index 0000000..03be64a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataClientClass.cs @@ -0,0 +1,124 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ComConversionLoss] +[Guid("73BC4121-FF89-4762-901C-206E2BD9FE87")] +public class DataClientClass : IDataClient, DataClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetLastError(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetHeap(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Connect([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Connect2([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr DisConnect(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Disconnect2(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IsIDataClientConnected(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr CreateSubscription([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] CreateSubscription2([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr ChangeSubscription([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] ChangeSubscription2([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr DeleteSubscription([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] DeleteSubscription2([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr AddMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] AddMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr ChangeMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] ChangeMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr DeleteMonitoredItems([In] long SubscriptionId, [In] ref ulong ItemIds, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] DeleteMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] ItemIds, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr RegisterItems([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] RegisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr UnregisterItems([In] ref ulong varItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] UnregisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] varItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Write([In] ref _WriteRequest pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Write2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] WriteRequest2[] pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Publish([In] long SubscriptionId, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Publish2([In] long SubscriptionId, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr PublishWriteComplete([Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] PublishWriteComplete2([MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Read([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Read2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint UpdatesCount); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataConsumer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataConsumer.cs new file mode 100644 index 0000000..625d775 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataConsumer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("8948FFF4-4529-4447-9115-C69041A49B00")] +[CoClass(typeof(DataConsumerClass))] +public interface DataConsumer : IDataConsumer1 +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataConsumerClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataConsumerClass.cs new file mode 100644 index 0000000..b08541f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataConsumerClass.cs @@ -0,0 +1,87 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("85209FB2-0BA1-4594-BBC4-59D3DDAB823D")] +public class DataConsumerClass : IDataConsumer1, DataConsumer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterCallback([In][MarshalAs(UnmanagedType.Interface)] IDataConsumerCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterCallback(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int ResolveNamespace([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResolveReference([In] int lNamespaceId, [In][MarshalAs(UnmanagedType.BStr)] string bstrName, [In][MarshalAs(UnmanagedType.BStr)] string bstrContext, [In] int lItemId, [In] ulong ulUserData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Subscribe([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterReference([In] int lNamespaceId, [In] int lItemId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ActivateSuspend([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Write([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] uint ItemQuality, [In] ref _IVariant ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Write2([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] uint ItemQuality, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IDataVariant[] ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void WriteWithReasonDesc([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] short ItemQuality, [In] ref _IVariant ItemValue, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessMessages(out int lSize, [Out] IntPtr updates, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessMessages2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemDataUpdate2[] updates, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessRegistration(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessRegistration2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemRegistrationResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessSubscription(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessSubscription2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemSubscriptionResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessUnregister(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessUnregister2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemUnregisterResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessWriteComplete(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessWriteComplete2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemWriteResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessActivateSuspend(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessActivateSuspend2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemActiveResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsConnected([In] int namespaceId, out int connected); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterReferenceEx([In] int lNamespaceId, [In] int lItemId, [In] int isSubscribed); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataQuality.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataQuality.cs new file mode 100644 index 0000000..d681d7a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DataQuality.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum DataQuality +{ + DataQualityUnknown = -1, + DataQualityGood, + DataQualityUncertain, + DataQualityInitializing, + DataQualityBad +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Dictionary.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Dictionary.cs new file mode 100644 index 0000000..b27c3c7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Dictionary.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("FB91DD91-83C2-413C-BEB0-95338B522B14")] +[CoClass(typeof(DictionaryClass))] +public interface Dictionary : IDictionary +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DictionaryClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DictionaryClass.cs new file mode 100644 index 0000000..5d2e7b5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/DictionaryClass.cs @@ -0,0 +1,25 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("FB55EF60-8D1F-11D4-A9A3-0060976445E9")] +public class DictionaryClass : IDictionary, Dictionary +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string vendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string groupID, [In][MarshalAs(UnmanagedType.LPWStr)] string dictionaryFileName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetLocaleOverride([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetText([In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetTextWithPhraseKey([In][MarshalAs(UnmanagedType.BStr)] string key); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EATTRIBUTEPROPERTY.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EATTRIBUTEPROPERTY.cs new file mode 100644 index 0000000..d941561 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EATTRIBUTEPROPERTY.cs @@ -0,0 +1,57 @@ +namespace Interop.Lmx; + +public enum EATTRIBUTEPROPERTY +{ + idxAttribPropUndefined = -1, + idxAttribPropName = 0, + idxAttribPropAttributeCategory = 1, + idxAttribPropCfgSethandler = 2, + idxAttribPropRtSethandler = 3, + idxAttribPropType = 4, + idxAttribPropUpperBoundDim1 = 5, + idxAttribPropValue = 10, + idxAttribPropSecurityClassification = 11, + idxAttribPropLocked = 12, + idxAttribPropQuality = 13, + idxAttribPropBit00 = 14, + idxAttribPropBit01 = 15, + idxAttribPropBit02 = 16, + idxAttribPropBit03 = 17, + idxAttribPropBit04 = 18, + idxAttribPropBit05 = 19, + idxAttribPropBit06 = 20, + idxAttribPropBit07 = 21, + idxAttribPropBit08 = 22, + idxAttribPropBit09 = 23, + idxAttribPropBit10 = 24, + idxAttribPropBit11 = 25, + idxAttribPropBit12 = 26, + idxAttribPropBit13 = 27, + idxAttribPropBit14 = 28, + idxAttribPropBit15 = 29, + idxAttribPropBit16 = 30, + idxAttribPropBit17 = 31, + idxAttribPropBit18 = 32, + idxAttribPropBit19 = 33, + idxAttribPropBit20 = 34, + idxAttribPropBit21 = 35, + idxAttribPropBit22 = 36, + idxAttribPropBit23 = 37, + idxAttribPropBit24 = 38, + idxAttribPropBit25 = 39, + idxAttribPropBit26 = 40, + idxAttribPropBit27 = 41, + idxAttribPropBit28 = 42, + idxAttribPropBit29 = 43, + idxAttribPropBit30 = 44, + idxAttribPropBit31 = 45, + idxAttribPropValueReadOnly = 46, + idxAttribPropSecurityClassificationReadOnly = 47, + idxAttribPropLockedReadOnly = 48, + idxAttribPropTime = 49, + idxAttribPropBuffer = 50, + idxAttribPropHasBuffer = 51, + idxAttribPropEnumStrings = 52, + idxAttribPropReasonDesc = 53, + idxAttribPropEND = 54 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EAUTHMODE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EAUTHMODE.cs new file mode 100644 index 0000000..21c3b3a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EAUTHMODE.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum EAUTHMODE +{ + eNone, + eGalaxyOnly, + eOSUserBased, + eOSGroupBased +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EBASERUNTIMEOBJECT.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EBASERUNTIMEOBJECT.cs new file mode 100644 index 0000000..271d7ec --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EBASERUNTIMEOBJECT.cs @@ -0,0 +1,11 @@ +namespace Interop.Lmx; + +public enum EBASERUNTIMEOBJECT +{ + idxBROAttributeUndefined = -1, + idxBROPrimitiveList = 100, + idxBRODeployComplete = 101, + idxBROCreateDynamicAttributes = 102, + idxBRODumpState = 103, + idxBROSetAttributeProperties = 104 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECALLCONTEXTFLAG.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECALLCONTEXTFLAG.cs new file mode 100644 index 0000000..541aebe --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECALLCONTEXTFLAG.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum ECALLCONTEXTFLAG +{ + eCallingContextUnknown, + eSupervisorySetAttribute, + eSystemSetAttribute, + eUserSetAttribute, + eInternalSetAttribute +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECATEGORY.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECATEGORY.cs new file mode 100644 index 0000000..9bdaf5c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECATEGORY.cs @@ -0,0 +1,34 @@ +namespace Interop.Lmx; + +public enum ECATEGORY +{ + idxCategoryUndefined, + idxCategoryPlatformEngine, + idxCategoryClusterEngine, + idxCategoryApplicationEngine, + idxCategoryViewEngine, + idxCategoryProductEngine, + idxCategoryHistoryEngine, + idxCategoryPrintEngine, + idxCategoryOutpost, + idxCategoryQueryEngine, + idxCategoryApplicationObject, + idxCategoryIONetwork, + idxCategoryIODevice, + idxCategoryArea, + idxCategoryUserProfile, + idxCategoryDisplay, + idxCategorySymbol, + idxCategoryViewApp, + idxCategoryProductionObject, + idxCategoryReport, + idxCategorySharedProcedure, + idxCategoryInsertablePrimitive, + idxCategoryIDEMacro, + idxCategoryGalaxy, + idxCategoryPostIO, + idxCategoryCustom, + idxCategoryInTouchViewApp, + idxCategoryVisualElement, + idxCategoryWidget +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECOMMONATTRIBUTES.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECOMMONATTRIBUTES.cs new file mode 100644 index 0000000..6783583 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECOMMONATTRIBUTES.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum ECOMMONATTRIBUTES +{ + idxComAttUnknown = -1, + idxComAttExternalName = 1, + idxComAttInternalName = 2 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECOMMONPRIMITIVE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECOMMONPRIMITIVE.cs new file mode 100644 index 0000000..3e3388e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ECOMMONPRIMITIVE.cs @@ -0,0 +1,62 @@ +namespace Interop.Lmx; + +public enum ECOMMONPRIMITIVE +{ + idxCommonUndefined = -1, + idxCommonExternalName = 1, + idxCommonInternalName = 2, + idxCommonTagname = 100, + idxCommonShortDescription = 101, + idxCommonCategoryIDEnum = 102, + idxCommonAttributes = 103, + idxCommonCmdScanState = 104, + idxCommonScanState = 105, + idxCommonSecurityGroup = 106, + idxCommonError = 107, + idxCommonRelativeOrderEnum = 108, + idxCommonArea = 109, + idxCommonContainer = 110, + idxCommonHost = 111, + idxCommonAlarmModeEnum = 112, + idxCommonAlarmMode = 113, + idxCommonAlarmModeCmd = 114, + idxCommonAlarmInhibit = 115, + idxCommonInAlarm = 116, + idxCommonBasedOn = 117, + idxCommonIsTemplate = 118, + idxCommonCodeBase = 119, + idxCommonUDAs = 120, + idxCommon_InheritedUDAs = 121, + idxCommonExtensions = 122, + idxCommon_InheritedExtensions = 123, + idxCommon_Category = 124, + idxCommon_ConfigVersion = 125, + idxCommon_Warnings = 126, + idxCommonContainedName = 127, + idxCommonExecutionRelatedObject = 128, + idxCommonExecutionRelativeOrder = 129, + idxCommonHierachicalName = 130, + idxCommonMinorVersion = 131, + idxCommon_CmdAdd = 132, + idxCommon_CmdRemove = 133, + idxCommonCmdData = 134, + idxCommon_InheritedCmdData = 135, + idxCommon_AdviseOnlyActiveEnabled = 136, + idxCommonAlarmMostUrgentSeverity = 137, + idxCommonAlarmMostUrgentMode = 138, + idxCommonAlarmMostUrgentAcked = 139, + idxCommonAlarmCntsBySeverity = 140, + idxCommon_AlarmMostUrgentInit = 141, + idxCommon_TempMostUrgentSeverity = 142, + idxCommon_TempMostUrgentMode = 143, + idxCommon_TempMostUrgentAcked = 144, + idxCommon_TempCntsBySeverity = 145, + idxCommon_TempMostUrgentInit = 146, + idxCommon_AggAlarmUpdate = 147, + idxCommonAlarmMostUrgentInAlarm = 148, + idxCommon_TempMostUrgentInAlarm = 149, + idxCommonAlarmMostUrgentShelved = 150, + idxCommonAlarmCntsBySeverityEnableShelved = 151, + idxCommon_TempMostUrgentShelved = 152, + idxCommon_TempCntsBySeverityEnableShelved = 153 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EEXECUTIONGROUP.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EEXECUTIONGROUP.cs new file mode 100644 index 0000000..36438d6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EEXECUTIONGROUP.cs @@ -0,0 +1,26 @@ +namespace Interop.Lmx; + +public enum EEXECUTIONGROUP +{ + idxExeGroupUnknown = -1, + idxExeGroupCommon, + idxExeGroupInput, + idxExeGroupPreScript, + idxExeGroupCustom, + idxExeGroupCustom1, + idxExeGroupCustom2, + idxExeGroupCustom3, + idxExeGroupCustom4, + idxExeGroupCustom5, + idxExeGroupCustom6, + idxExeGroupCustom7, + idxExeGroupCustom8, + idxExeGroupCustom9, + idxExeGroupCustom10, + idxExeGroupExpression, + idxExeGroupScript, + idxExeGroupPostScript, + idxExeGroupOutput, + idxExeGroupHistory, + idxExeGroupAlarm +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EExecutionOrder.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EExecutionOrder.cs new file mode 100644 index 0000000..4ed2688 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EExecutionOrder.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum EExecutionOrder +{ + NONE = 1, + BEFORE, + AFTER +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EFileType.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EFileType.cs new file mode 100644 index 0000000..6b301d6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EFileType.cs @@ -0,0 +1,16 @@ +namespace Interop.Lmx; + +public enum EFileType +{ + eUndefinedFileType, + eNormal, + eComDLL, + eComEXE, + eNTService, + eMergeRegistryScript, + eForHTMLEditor, + eDictionary, + eMsiMergeModule, + eNETFrameworkAssembly, + eSimpleNETAssembly +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EGRAPHICTYPE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EGRAPHICTYPE.cs new file mode 100644 index 0000000..edce3e7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EGRAPHICTYPE.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum EGRAPHICTYPE +{ + eDisplay = 1, + eSymbol +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTACTION.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTACTION.cs new file mode 100644 index 0000000..60e8555 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTACTION.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum EIMPORTACTION +{ + eCancelImport, + eOverwriteDuplicate, + eSkipOnError, + eImportWithNewName +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTCONFLICT.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTCONFLICT.cs new file mode 100644 index 0000000..d980e00 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTCONFLICT.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum EIMPORTCONFLICT +{ + eImportedObjectIsNewer, + eImportedObjectIsOlder, + eImportedDiffObjectSameName +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTSTATUS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTSTATUS.cs new file mode 100644 index 0000000..b0b2ab2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTSTATUS.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum EIMPORTSTATUS +{ + eImportHasError, + eImportHasAborted, + eImportHasNoError +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTTYPE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTTYPE.cs new file mode 100644 index 0000000..59df50a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EIMPORTTYPE.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum EIMPORTTYPE +{ + eNormalImport, + eMinorVersionImport, + eMajorVersionImport, + eAbortImport +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ELOGIN.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ELOGIN.cs new file mode 100644 index 0000000..ab018f3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ELOGIN.cs @@ -0,0 +1,11 @@ +namespace Interop.Lmx; + +public enum ELOGIN +{ + eInvalidUser = 1, + eInvalidPassword, + ePwdChangeInvalid, + ePwdCahngeSuccess, + eLoginOK, + eSecurityNotEnabled +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EMULTIDEPLOYTYPE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EMULTIDEPLOYTYPE.cs new file mode 100644 index 0000000..6258d6c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EMULTIDEPLOYTYPE.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum EMULTIDEPLOYTYPE +{ + eStart = 1, + eEnd +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EOPCUAStatusCode.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EOPCUAStatusCode.cs new file mode 100644 index 0000000..9410758 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EOPCUAStatusCode.cs @@ -0,0 +1,224 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("D57DCACA-E4C9-4AC6-8739-8E58955B2571")] +public enum EOPCUAStatusCode +{ + OPCUA_STATUSCODE_Good = 0, + OPCUA_STATUSCODE_Uncertain = 1073741824, + OPCUA_STATUSCODE_Bad = int.MinValue, + OPCUA_STATUSCODE_BadUnexpectedError = -2147418112, + OPCUA_STATUSCODE_BadInternalError = -2147352576, + OPCUA_STATUSCODE_BadOutOfMemory = -2147287040, + OPCUA_STATUSCODE_BadResourceUnavailable = -2147221504, + OPCUA_STATUSCODE_BadCommunicationError = -2147155968, + OPCUA_STATUSCODE_BadEncodingError = -2147090432, + OPCUA_STATUSCODE_BadDecodingError = -2147024896, + OPCUA_STATUSCODE_BadEncodingLimitsExceeded = -2146959360, + OPCUA_STATUSCODE_BadRequestTooLarge = -2135425024, + OPCUA_STATUSCODE_BadResponseTooLarge = -2135359488, + OPCUA_STATUSCODE_BadUnknownResponse = -2146893824, + OPCUA_STATUSCODE_BadTimeout = -2146828288, + OPCUA_STATUSCODE_BadServiceUnsupported = -2146762752, + OPCUA_STATUSCODE_BadShutdown = -2146697216, + OPCUA_STATUSCODE_BadServerNotConnected = -2146631680, + OPCUA_STATUSCODE_BadServerHalted = -2146566144, + OPCUA_STATUSCODE_BadNothingToDo = -2146500608, + OPCUA_STATUSCODE_BadTooManyOperations = -2146435072, + OPCUA_STATUSCODE_BadDataTypeIdUnknown = -2146369536, + OPCUA_STATUSCODE_BadCertificateInvalid = -2146304000, + OPCUA_STATUSCODE_BadSecurityChecksFailed = -2146238464, + OPCUA_STATUSCODE_BadCertificateTimeInvalid = -2146172928, + OPCUA_STATUSCODE_BadCertificateIssuerTimeInvalid = -2146107392, + OPCUA_STATUSCODE_BadCertificateHostNameInvalid = -2146041856, + OPCUA_STATUSCODE_BadCertificateUriInvalid = -2145976320, + OPCUA_STATUSCODE_BadCertificateUseNotAllowed = -2145910784, + OPCUA_STATUSCODE_BadCertificateIssuerUseNotAllowed = -2145845248, + OPCUA_STATUSCODE_BadCertificateUntrusted = -2145779712, + OPCUA_STATUSCODE_BadCertificateRevocationUnknown = -2145714176, + OPCUA_STATUSCODE_BadCertificateIssuerRevocationUnknown = -2145648640, + OPCUA_STATUSCODE_BadCertificateRevoked = -2145583104, + OPCUA_STATUSCODE_BadCertificateIssuerRevoked = -2145517568, + OPCUA_STATUSCODE_BadUserAccessDenied = -2145452032, + OPCUA_STATUSCODE_BadIdentityTokenInvalid = -2145386496, + OPCUA_STATUSCODE_BadIdentityTokenRejected = -2145320960, + OPCUA_STATUSCODE_BadSecureChannelIdInvalid = -2145255424, + OPCUA_STATUSCODE_BadInvalidTimestamp = -2145189888, + OPCUA_STATUSCODE_BadNonceInvalid = -2145124352, + OPCUA_STATUSCODE_BadSessionIdInvalid = -2145058816, + OPCUA_STATUSCODE_BadSessionClosed = -2144993280, + OPCUA_STATUSCODE_BadSessionNotActivated = -2144927744, + OPCUA_STATUSCODE_BadSubscriptionIdInvalid = -2144862208, + OPCUA_STATUSCODE_BadRequestHeaderInvalid = -2144731136, + OPCUA_STATUSCODE_BadTimestampsToReturnInvalid = -2144665600, + OPCUA_STATUSCODE_BadRequestCanceledByClient = -2144600064, + OPCUA_STATUSCODE_GoodSubscriptionTransferred = 2949120, + OPCUA_STATUSCODE_GoodCompletesAsynchronously = 3014656, + OPCUA_STATUSCODE_GoodOverload = 3080192, + OPCUA_STATUSCODE_GoodClamped = 3145728, + OPCUA_STATUSCODE_BadNoCommunication = -2144272384, + OPCUA_STATUSCODE_BadWaitingForInitialData = -2144206848, + OPCUA_STATUSCODE_BadNodeIdInvalid = -2144141312, + OPCUA_STATUSCODE_BadNodeIdUnknown = -2144075776, + OPCUA_STATUSCODE_BadAttributeIdInvalid = -2144010240, + OPCUA_STATUSCODE_BadIndexRangeInvalid = -2143944704, + OPCUA_STATUSCODE_BadIndexRangeNoData = -2143879168, + OPCUA_STATUSCODE_BadDataEncodingInvalid = -2143813632, + OPCUA_STATUSCODE_BadDataEncodingUnsupported = -2143748096, + OPCUA_STATUSCODE_BadNotReadable = -2143682560, + OPCUA_STATUSCODE_BadNotWritable = -2143617024, + OPCUA_STATUSCODE_BadOutOfRange = -2143551488, + OPCUA_STATUSCODE_BadNotSupported = -2143485952, + OPCUA_STATUSCODE_BadNotFound = -2143420416, + OPCUA_STATUSCODE_BadObjectDeleted = -2143354880, + OPCUA_STATUSCODE_BadNotImplemented = -2143289344, + OPCUA_STATUSCODE_BadMonitoringModeInvalid = -2143223808, + OPCUA_STATUSCODE_BadMonitoredItemIdInvalid = -2143158272, + OPCUA_STATUSCODE_BadMonitoredItemFilterInvalid = -2143092736, + OPCUA_STATUSCODE_BadMonitoredItemFilterUnsupported = -2143027200, + OPCUA_STATUSCODE_BadFilterNotAllowed = -2142961664, + OPCUA_STATUSCODE_BadStructureMissing = -2142896128, + OPCUA_STATUSCODE_BadEventFilterInvalid = -2142830592, + OPCUA_STATUSCODE_BadContentFilterInvalid = -2142765056, + OPCUA_STATUSCODE_BadFilterOperatorInvalid = -2134835200, + OPCUA_STATUSCODE_BadFilterOperatorUnsupported = -2134769664, + OPCUA_STATUSCODE_BadFilterOperandCountMismatch = -2134704128, + OPCUA_STATUSCODE_BadFilterOperandInvalid = -2142699520, + OPCUA_STATUSCODE_BadFilterElementInvalid = -2134638592, + OPCUA_STATUSCODE_BadFilterLiteralInvalid = -2134573056, + OPCUA_STATUSCODE_BadContinuationPointInvalid = -2142633984, + OPCUA_STATUSCODE_BadNoContinuationPoints = -2142568448, + OPCUA_STATUSCODE_BadReferenceTypeIdInvalid = -2142502912, + OPCUA_STATUSCODE_BadBrowseDirectionInvalid = -2142437376, + OPCUA_STATUSCODE_BadNodeNotInView = -2142371840, + OPCUA_STATUSCODE_BadServerUriInvalid = -2142306304, + OPCUA_STATUSCODE_BadServerNameMissing = -2142240768, + OPCUA_STATUSCODE_BadDiscoveryUrlMissing = -2142175232, + OPCUA_STATUSCODE_BadSemaphoreFileMissing = -2142109696, + OPCUA_STATUSCODE_BadRequestTypeInvalid = -2142044160, + OPCUA_STATUSCODE_BadSecurityModeRejected = -2141978624, + OPCUA_STATUSCODE_BadSecurityPolicyRejected = -2141913088, + OPCUA_STATUSCODE_BadTooManySessions = -2141847552, + OPCUA_STATUSCODE_BadUserSignatureInvalid = -2141782016, + OPCUA_STATUSCODE_BadApplicationSignatureInvalid = -2141716480, + OPCUA_STATUSCODE_BadNoValidCertificates = -2141650944, + OPCUA_STATUSCODE_BadIdentityChangeNotSupported = -2134507520, + OPCUA_STATUSCODE_BadRequestCanceledByRequest = -2141585408, + OPCUA_STATUSCODE_BadParentNodeIdInvalid = -2141519872, + OPCUA_STATUSCODE_BadReferenceNotAllowed = -2141454336, + OPCUA_STATUSCODE_BadNodeIdRejected = -2141388800, + OPCUA_STATUSCODE_BadNodeIdExists = -2141323264, + OPCUA_STATUSCODE_BadNodeClassInvalid = -2141257728, + OPCUA_STATUSCODE_BadBrowseNameInvalid = -2141192192, + OPCUA_STATUSCODE_BadBrowseNameDuplicated = -2141126656, + OPCUA_STATUSCODE_BadNodeAttributesInvalid = -2141061120, + OPCUA_STATUSCODE_BadTypeDefinitionInvalid = -2140995584, + OPCUA_STATUSCODE_BadSourceNodeIdInvalid = -2140930048, + OPCUA_STATUSCODE_BadTargetNodeIdInvalid = -2140864512, + OPCUA_STATUSCODE_BadDuplicateReferenceNotAllowed = -2140798976, + OPCUA_STATUSCODE_BadInvalidSelfReference = -2140733440, + OPCUA_STATUSCODE_BadReferenceLocalOnly = -2140667904, + OPCUA_STATUSCODE_BadNoDeleteRights = -2140602368, + OPCUA_STATUSCODE_UncertainReferenceNotDeleted = 1086062592, + OPCUA_STATUSCODE_BadServerIndexInvalid = -2140536832, + OPCUA_STATUSCODE_BadViewIdUnknown = -2140471296, + OPCUA_STATUSCODE_BadViewTimestampInvalid = -2134310912, + OPCUA_STATUSCODE_BadViewParameterMismatch = -2134245376, + OPCUA_STATUSCODE_BadViewVersionInvalid = -2134179840, + OPCUA_STATUSCODE_UncertainNotAllNodesAvailable = 1086324736, + OPCUA_STATUSCODE_GoodResultsMayBeIncomplete = 12189696, + OPCUA_STATUSCODE_BadNotTypeDefinition = -2134376448, + OPCUA_STATUSCODE_UncertainReferenceOutOfServer = 1080819712, + OPCUA_STATUSCODE_BadTooManyMatches = -2140340224, + OPCUA_STATUSCODE_BadQueryTooComplex = -2140274688, + OPCUA_STATUSCODE_BadNoMatch = -2140209152, + OPCUA_STATUSCODE_BadMaxAgeInvalid = -2140143616, + OPCUA_STATUSCODE_BadHistoryOperationInvalid = -2140078080, + OPCUA_STATUSCODE_BadHistoryOperationUnsupported = -2140012544, + OPCUA_STATUSCODE_BadInvalidTimestampArgument = -2135097344, + OPCUA_STATUSCODE_BadWriteNotSupported = -2139947008, + OPCUA_STATUSCODE_BadTypeMismatch = -2139881472, + OPCUA_STATUSCODE_BadMethodInvalid = -2139815936, + OPCUA_STATUSCODE_BadArgumentsMissing = -2139750400, + OPCUA_STATUSCODE_BadTooManySubscriptions = -2139684864, + OPCUA_STATUSCODE_BadTooManyPublishRequests = -2139619328, + OPCUA_STATUSCODE_BadNoSubscription = -2139553792, + OPCUA_STATUSCODE_BadSequenceNumberUnknown = -2139488256, + OPCUA_STATUSCODE_BadMessageNotAvailable = -2139422720, + OPCUA_STATUSCODE_BadInsufficientClientProfile = -2139357184, + OPCUA_STATUSCODE_BadStateNotActive = -2134966272, + OPCUA_STATUSCODE_BadTcpServerTooBusy = -2139291648, + OPCUA_STATUSCODE_BadTcpMessageTypeInvalid = -2139226112, + OPCUA_STATUSCODE_BadTcpSecureChannelUnknown = -2139160576, + OPCUA_STATUSCODE_BadTcpMessageTooLarge = -2139095040, + OPCUA_STATUSCODE_BadTcpNotEnoughResources = -2139029504, + OPCUA_STATUSCODE_BadTcpInternalError = -2138963968, + OPCUA_STATUSCODE_BadTcpEndpointUrlInvalid = -2138898432, + OPCUA_STATUSCODE_BadRequestInterrupted = -2138832896, + OPCUA_STATUSCODE_BadRequestTimeout = -2138767360, + OPCUA_STATUSCODE_BadSecureChannelClosed = -2138701824, + OPCUA_STATUSCODE_BadSecureChannelTokenUnknown = -2138636288, + OPCUA_STATUSCODE_BadSequenceNumberInvalid = -2138570752, + OPCUA_STATUSCODE_BadProtocolVersionUnsupported = -2135031808, + OPCUA_STATUSCODE_BadConfigurationError = -2138505216, + OPCUA_STATUSCODE_BadNotConnected = -2138439680, + OPCUA_STATUSCODE_BadDeviceFailure = -2138374144, + OPCUA_STATUSCODE_BadSensorFailure = -2138308608, + OPCUA_STATUSCODE_BadOutOfService = -2138243072, + OPCUA_STATUSCODE_BadDeadbandFilterInvalid = -2138177536, + OPCUA_STATUSCODE_UncertainNoCommunicationLastUsableValue = 1083113472, + OPCUA_STATUSCODE_UncertainLastUsableValue = 1083179008, + OPCUA_STATUSCODE_UncertainSubstituteValue = 1083244544, + OPCUA_STATUSCODE_UncertainInitialValue = 1083310080, + OPCUA_STATUSCODE_UncertainSensorNotAccurate = 1083375616, + OPCUA_STATUSCODE_UncertainEngineeringUnitsExceeded = 1083441152, + OPCUA_STATUSCODE_UncertainSubNormal = 1083506688, + OPCUA_STATUSCODE_GoodLocalOverride = 9830400, + OPCUA_STATUSCODE_BadRefreshInProgress = -2137587712, + OPCUA_STATUSCODE_BadConditionAlreadyDisabled = -2137522176, + OPCUA_STATUSCODE_BadConditionAlreadyEnabled = -2134114304, + OPCUA_STATUSCODE_BadConditionDisabled = -2137456640, + OPCUA_STATUSCODE_BadEventIdUnknown = -2137391104, + OPCUA_STATUSCODE_BadEventNotAcknowledgeable = -2135228416, + OPCUA_STATUSCODE_BadDialogNotActive = -2134048768, + OPCUA_STATUSCODE_BadDialogResponseInvalid = -2133983232, + OPCUA_STATUSCODE_BadConditionBranchAlreadyAcked = -2133917696, + OPCUA_STATUSCODE_BadConditionBranchAlreadyConfirmed = -2133852160, + OPCUA_STATUSCODE_BadConditionAlreadyShelved = -2133786624, + OPCUA_STATUSCODE_BadConditionNotShelved = -2133721088, + OPCUA_STATUSCODE_BadShelvingTimeoutOfRange = -2133655552, + OPCUA_STATUSCODE_BadNoData = -2137325568, + OPCUA_STATUSCODE_BadBoundNotFound = -2133393408, + OPCUA_STATUSCODE_BadBoundNotSupported = -2133327872, + OPCUA_STATUSCODE_BadDataLost = -2137194496, + OPCUA_STATUSCODE_BadDataUnavailable = -2137128960, + OPCUA_STATUSCODE_BadEntryExists = -2137063424, + OPCUA_STATUSCODE_BadNoEntryExists = -2136997888, + OPCUA_STATUSCODE_BadTimestampNotSupported = -2136932352, + OPCUA_STATUSCODE_GoodEntryInserted = 10616832, + OPCUA_STATUSCODE_GoodEntryReplaced = 10682368, + OPCUA_STATUSCODE_UncertainDataSubNormal = 1084489728, + OPCUA_STATUSCODE_GoodNoData = 10813440, + OPCUA_STATUSCODE_GoodMoreData = 10878976, + OPCUA_STATUSCODE_BadAggregateListMismatch = -2133590016, + OPCUA_STATUSCODE_BadAggregateNotSupported = -2133524480, + OPCUA_STATUSCODE_BadAggregateInvalidInputs = -2133458944, + OPCUA_STATUSCODE_GoodCommunicationEvent = 10944512, + OPCUA_STATUSCODE_GoodShutdownEvent = 11010048, + OPCUA_STATUSCODE_GoodCallAgain = 11075584, + OPCUA_STATUSCODE_GoodNonCriticalTimeout = 11141120, + OPCUA_STATUSCODE_BadInvalidArgument = -2136276992, + OPCUA_STATUSCODE_BadConnectionRejected = -2136211456, + OPCUA_STATUSCODE_BadDisconnect = -2136145920, + OPCUA_STATUSCODE_BadConnectionClosed = -2136080384, + OPCUA_STATUSCODE_BadInvalidState = -2136014848, + OPCUA_STATUSCODE_BadEndOfStream = -2135949312, + OPCUA_STATUSCODE_BadNoDataAvailable = -2135883776, + OPCUA_STATUSCODE_BadWaitingForResponse = -2135818240, + OPCUA_STATUSCODE_BadOperationAbandoned = -2135752704, + OPCUA_STATUSCODE_BadExpectedStreamToBlock = -2135687168, + OPCUA_STATUSCODE_BadWouldBlock = -2135621632, + OPCUA_STATUSCODE_BadSyntaxError = -2135556096, + OPCUA_STATUSCODE_BadMaxConnectionsReached = -2135490560 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPACKAGESTATUS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPACKAGESTATUS.cs new file mode 100644 index 0000000..051b572 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPACKAGESTATUS.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum EPACKAGESTATUS +{ + ePackageUnknownStatus = -1, + ePackageGood, + ePackageBad, + ePackageWarning +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPERMISSION_ACCESS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPERMISSION_ACCESS.cs new file mode 100644 index 0000000..0cf8a59 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPERMISSION_ACCESS.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum EPERMISSION_ACCESS +{ + eAccessOK = 1, + eAccessdeny +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPREFERENCETYPE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPREFERENCETYPE.cs new file mode 100644 index 0000000..e47958a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EPREFERENCETYPE.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum EPREFERENCETYPE +{ + eUndefinedPreference, + eIde, + eAttributeBrowser +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EQUEUETYPE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EQUEUETYPE.cs new file mode 100644 index 0000000..86e40b2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EQUEUETYPE.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum EQUEUETYPE +{ + eExpressQueue, + eGuarantyQueue +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ERESERVEDPRIMITIVEIDS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ERESERVEDPRIMITIVEIDS.cs new file mode 100644 index 0000000..9807634 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ERESERVEDPRIMITIVEIDS.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum ERESERVEDPRIMITIVEIDS +{ + eReservedPrimitiveIdUndefined = -1, + eBaseRuntimeObjectId = 1, + eCommonPrimitiveId = 2, + eTopLevelCustomPrimitiveId = 100 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ERRORCODE.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ERRORCODE.cs new file mode 100644 index 0000000..d0568d0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ERRORCODE.cs @@ -0,0 +1,59 @@ +namespace Interop.Lmx; + +public enum ERRORCODE +{ + eNoError, + eFailureOnScan, + eDatabaseMismatch, + eUnProcessed, + eObjectInUse, + eObjectDoesNotExist, + eObjectCheckedIn, + eObjectInPendingUpdateState, + eObjectCheckedOutToCurrentUser, + eObjectCheckedOutToAnotherUser, + eObjectDeployTransitionState, + eEngineDoesNotExist, + ePlatformDoesNotExist, + ePlatformCommunicationError, + eObjectAlreadyDeployed, + eEngineCommunicationError, + eFsObjectAlreadyDeletedError, + eFsObjectEditedByOtherUserError, + eCascadeToDerivedObjectsError, + eCheckOutError, + eObjectNotDeployed, + eObjectUndoCheckoutError, + eLicenseUnAvailable, + eObjectIdMismatchDetected, + eSignatureMismatch, + ePermissionDenied, + eUserIdPasswordInvalid, + ePlatformStartupFailed, + eGRNodePlatformNotDeployed, + eUndeployFailed, + eDeployFailed, + eObjectHasChilds, + eInvalidForCurrentObjectState, + eProgressNotify, + eObjectInSufficientPermissions, + eInvalidInstallationVersion, + eBackupAppEngineIsDeployed, + ePlatformNotConfiguredForFailOver, + eObjectsExceedLimit, + eEnginesExceedLimit, + eFailToCreateBackupEngine, + ePrimaryAppEngineIsDeployed, + eObjectIsBackupEngine, + eUnDefined, + eFSDevLicenseUnAvailable, + eSufficientIOUnAvailable, + eSufficientUserConnectionUnAvailable, + eDeployedFileTransfering, + eLocaleNotSupported, + eFailToExportAlarmComments, + eFailToImportAlarmComments, + eDeployChangeFailed, + eRequestTimedOut, + eGalaxyObjectLocked +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ESECURITY_PERMISSION.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ESECURITY_PERMISSION.cs new file mode 100644 index 0000000..9d8bd09 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ESECURITY_PERMISSION.cs @@ -0,0 +1,62 @@ +namespace Interop.Lmx; + +public enum ESECURITY_PERMISSION +{ + eImport = 1, + eGrLoadGrDump, + eExport, + eModDeployInst, + eModTemplates, + eCanDisableChangeComments, + eStartStopPE, + eOverrideCheckOut, + eUploadRuntime, + eModifySODSetting, + eCMDSysobjTemp, + eCMDSysobjInst, + eCMDDeviceTemp, + eCMDDeviceInst, + eCMDAppobjTemp, + eCMDAppobjInst, + eCMDUIobjTemp, + eCMDUIobjInst, + eModSecModel, + eCMDFrameObjs, + eModLocalSetting, + eModTimeSyncSetting, + eCMDUserPTemp, + eMOwnUserProfile, + eDepUnDepSysobj, + eDepUnDepFraobj, + eDepUnDepAppobj, + eRedeployObjects, + eDepUnDepDeviceInt, + eMarkObjUndeployed, + eWritegObjAttrinObjVw, + eWritegObjAttrinSupMode, + eWritegObjAttrinSystemMode, + eManageLicense, + eBackUpHistData, + eArchResHistData, + eAckAlarams, + eCanManageFormulaStore, + eCanManageFormulaTemplate, + eCanManageFormulaInstance, + eImportGrpahics, + eExportGrpahics, + eCMDGrpahics, + eCMDAttachedGraphicsInTemplate, + eCMDViewApp, + eDepUndepViewApp, + eCMDAttachedGraphicsInInstance, + eCanEditQualityStatus, + eAccessIDE, + eAccessSMC, + eAccessVEW, + eAccessINT, + eSecurityVerifiedWrite, + eCanShelveAlarms, + eCanModifyAlarmSeverity, + eCanModifyAlarmModes, + eCanModifyPlantState +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ESTARTUPCONTEXT.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ESTARTUPCONTEXT.cs new file mode 100644 index 0000000..0f90412 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ESTARTUPCONTEXT.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum ESTARTUPCONTEXT +{ + eStartupContextUnknown, + eStartingAfterDeployment, + eStartingFromCheckpoint, + eStartingFromStandby, + eStartingAfterDeployChange +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EWHICHVERSIONTODEPLOY.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EWHICHVERSIONTODEPLOY.cs new file mode 100644 index 0000000..5cd055e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EWHICHVERSIONTODEPLOY.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum EWHICHVERSIONTODEPLOY +{ + eDeployLastDeployedVersion, + eDeployCheckedinVersion +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EngineExitStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EngineExitStatus.cs new file mode 100644 index 0000000..6753428 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EngineExitStatus.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum EngineExitStatus +{ + eEngineNotRunning, + eEngineShuttingDown, + eEngineSwitchingToStandby, + eEngineSwitchingToActive +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EnginePrimitiveInternalCnt.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EnginePrimitiveInternalCnt.cs new file mode 100644 index 0000000..08d1cc5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EnginePrimitiveInternalCnt.cs @@ -0,0 +1,25 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct EnginePrimitiveInternalCnt +{ + public int extRefCnt; + + public int extRefCntUnbound; + + public int issuedInternalGetsCnt; + + public int issuedInternalSetsCnt; + + public int issuedExternalGetsCnt; + + public int issuedExternalSetsCnt; + + public int receivedExternalGetsCnt; + + public int receivedExternalSetsCnt; + + public int lHeartbeat; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EngineStates.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EngineStates.cs new file mode 100644 index 0000000..67ef1cf --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/EngineStates.cs @@ -0,0 +1,13 @@ +namespace Interop.Lmx; + +public enum EngineStates +{ + Uninitialized, + Initialized, + Starting, + Deploying, + StartingHostedObjects, + Running, + ShuttingDown, + AboutToShutDown +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/FileInstallInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/FileInstallInfo.cs new file mode 100644 index 0000000..f82c500 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/FileInstallInfo.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("1871FC50-634B-11D8-9867-0007E978B186")] +public struct FileInstallInfo +{ + [MarshalAs(UnmanagedType.BStr)] + public string szFilename; + + [MarshalAs(UnmanagedType.BStr)] + public string szVendorname; + + [MarshalAs(UnmanagedType.BStr)] + public string szGroupID; + + public EFileType FileType; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/FileInstallInfo2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/FileInstallInfo2.cs new file mode 100644 index 0000000..8b4af11 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/FileInstallInfo2.cs @@ -0,0 +1,22 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("1871FC53-634B-11D8-9867-0007E978B186")] +public struct FileInstallInfo2 +{ + [MarshalAs(UnmanagedType.BStr)] + public string szFilename; + + [MarshalAs(UnmanagedType.BStr)] + public string szVendorname; + + [MarshalAs(UnmanagedType.BStr)] + public string szGroupID; + + public EFileType FileType; + + [MarshalAs(UnmanagedType.BStr)] + public string szLocation; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GLOBAL_CONSTS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GLOBAL_CONSTS.cs new file mode 100644 index 0000000..73667a0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GLOBAL_CONSTS.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum GLOBAL_CONSTS +{ + MAX_TAGNAME_LENGTH = 32, + MAX_ATTRIBUTE_NAME_LENGTH = 329 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GalaxyStatusInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GalaxyStatusInfo.cs new file mode 100644 index 0000000..1b9be7a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GalaxyStatusInfo.cs @@ -0,0 +1,24 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("1031E230-67F6-11D8-9872-0007E978B186")] +public struct GalaxyStatusInfo +{ + public int totalNumberOfInstances; + + public int totalNumberOfTemplates; + + public int numberOfObjectsWithErrors; + + public int numberOfObjectsWithWarnings; + + public int numberOfInstancesNotDeployed; + + public int numberofObjectsWithChanges; + + public int numberofObjectsCheckedOut; + + public int numberofObjectsCheckedOutToLoggedinUser; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GalaxyVersionInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GalaxyVersionInfo.cs new file mode 100644 index 0000000..c2f4e50 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GalaxyVersionInfo.cs @@ -0,0 +1,23 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("1031E231-67F6-11D8-9872-0007E978B186")] +public struct GalaxyVersionInfo +{ + public int versionNumber; + + [MarshalAs(UnmanagedType.BStr)] + public string versionString; + + [MarshalAs(UnmanagedType.BStr)] + public string cdiVersionString; + + public short bMigrateRequired; + + public short bMigrateSupported; + + [MarshalAs(UnmanagedType.BStr)] + public string reason; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameInInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameInInfo.cs new file mode 100644 index 0000000..35006b9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameInInfo.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct GetTagNameInInfo +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int CallbackID; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameInInfoCS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameInInfoCS.cs new file mode 100644 index 0000000..983282a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameInInfoCS.cs @@ -0,0 +1,21 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("EBACE03A-2963-433D-A11E-825C52923F31")] +public struct GetTagNameInInfoCS +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int CallbackID; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameOutInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameOutInfo.cs new file mode 100644 index 0000000..3ae7647 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameOutInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct GetTagNameOutInfo +{ + [ComConversionLoss] + public IntPtr pGalaxyNameString; + + [ComConversionLoss] + public IntPtr pObjectNameString; + + [ComConversionLoss] + public IntPtr pAttributeNameString; + + [ComConversionLoss] + public IntPtr pStatus; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameOutInfoCS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameOutInfoCS.cs new file mode 100644 index 0000000..7bf23c5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/GetTagNameOutInfoCS.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("4B81976C-90BB-4098-A1BB-F6D85F11E496")] +public struct GetTagNameOutInfoCS +{ + [MarshalAs(UnmanagedType.BStr)] + public string pGalaxyNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pObjectNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pAttributeNameString; + + public MxStatus pStatus; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerClient.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerClient.cs new file mode 100644 index 0000000..1d8e636 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerClient.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F2B877E1-1DBE-11D3-80AD-00104B5F96A7")] +public interface IAccessManagerClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.IUnknown)] + object CreateMxConnection(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost.cs new file mode 100644 index 0000000..c9bda4e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("96469CD1-8EF4-11D2-BF61-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAccessManagerHost +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessMessages(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost2.cs new file mode 100644 index 0000000..9e710e7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost2.cs @@ -0,0 +1,37 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("02FB8CDD-C214-479C-B9FB-CF7BCC01BB14")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAccessManagerHost2 : IAccessManagerHost +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessOutputsEx([In] int lMode); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost3.cs new file mode 100644 index 0000000..e297884 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost3.cs @@ -0,0 +1,40 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("EB84CFA8-9CF3-49CB-AFC8-5EFE8D664C81")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAccessManagerHost3 : IAccessManagerHost2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SwapDataBuffers(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost4.cs new file mode 100644 index 0000000..dfa4f5e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerHost4.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("964EBB72-56D3-48C7-BB75-17646B4D4950")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAccessManagerHost4 : IAccessManagerHost3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SwapDataBuffers(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownMxConsumer(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerProvider.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerProvider.cs new file mode 100644 index 0000000..4cae667 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerProvider.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("96469CD2-8EF4-11D2-BF61-00104B5F96A7")] +public interface IAccessManagerProvider +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterAutomationObject([In][MarshalAs(UnmanagedType.Interface)] CoBaseRuntimeObject pAutomationObject, [In] int AutomationObjectId, [In][MarshalAs(UnmanagedType.LPWStr)] string AutomationObjectName, [In] int AutomationObjectSignature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnRegisterAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CancelAllSubscriptions(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifySubscriptionChange([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InvalidateSubscription([In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ObjectRestored([In][MarshalAs(UnmanagedType.Interface)] CoBaseRuntimeObject pAutomationObject, [In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterAutomationObjectNoUpdate([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateObjectsAttribute(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerProvider2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerProvider2.cs new file mode 100644 index 0000000..addcfab --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAccessManagerProvider2.cs @@ -0,0 +1,37 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("5DDF5C87-5A7A-41D6-B689-C170CD37CC00")] +public interface IAccessManagerProvider2 : IAccessManagerProvider +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterAutomationObject([In][MarshalAs(UnmanagedType.Interface)] CoBaseRuntimeObject pAutomationObject, [In] int AutomationObjectId, [In][MarshalAs(UnmanagedType.LPWStr)] string AutomationObjectName, [In] int AutomationObjectSignature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnRegisterAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CancelAllSubscriptions(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifySubscriptionChange([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InvalidateSubscription([In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ObjectRestored([In][MarshalAs(UnmanagedType.Interface)] CoBaseRuntimeObject pAutomationObject, [In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterAutomationObjectNoUpdate([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateObjectsAttribute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifySubscriptionChange2([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref short quality, [In] ref _FILETIME timeStamp); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IArchestrAError.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IArchestrAError.cs new file mode 100644 index 0000000..0d3f527 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IArchestrAError.cs @@ -0,0 +1,29 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("90F6EA33-C670-4285-887E-74EB765CA422")] +public enum IArchestrAError +{ + ArchestrAErrorSuccess = 0, + ArchestrAErrorInvalidConnectionId = 1, + ArchestrAErrorApplicationAuthenticationError = 2, + ArchestrAErrorUserAuthenticationError = 3, + ArchestrAErrorUserAuthorizationError = 4, + ArchestrAErrorNotSupportedOperation = 5, + ArchestrAErrorMonitoredItemsNotFound = 6, + ArchestrAErrorInvalidSubscriptionID = 7, + ArchestrAErrorItemAlreadyRegistered = 8, + ArchestrAErrorItemAlreadyDeletedOrDoesNotExist = 9, + ArchestrAErrorInvalidMonitoredItems = 10, + ArchestrAErrorOperationFailed = 11, + ArchestrAErrorSpecificError = 12, + ArchestrAErrorBadNoCommunication = 13, + ArchestrAErrorBad_NothingToDo = 14, + ArchestrAErrorBad_TooManyOperations = 15, + ArchestrAErrorBad_NodeIdInvalid = 16, + ArchestrAErrorBrowseFailed = 17, + ArchestrAErrorWriteFailed_BadOutOfRange = 18, + ArchestrAErrorWriteFailed_BadTypeMismatch = 19, + ArchestrAErrorUnknown = 65535 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IArchestrAResult.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IArchestrAResult.cs new file mode 100644 index 0000000..b2437c2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IArchestrAResult.cs @@ -0,0 +1,14 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("8830ECEF-F8A7-4897-9048-83CD085B8EB5")] +public struct IArchestrAResult +{ + public IArchestrAError ERRORCODE; + + public uint SpecificErrorCode; + + public uint status; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeCheckpoint.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeCheckpoint.cs new file mode 100644 index 0000000..5c05090 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeCheckpoint.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("5C3A62E1-DCBB-11D3-8B23-000000000000")] +public interface IAttributeCheckpoint +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreatePropertyCheckpoint([In] int propertyId, [In] short index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [DispId(1)] + int id + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPropertyCheckpointValue([In] int propertyId, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPropertyCheckpointValue([In] int propertyId, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [DispId(3)] + IEnumPropertyCheckpoint PropertyCheckpoints + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeDefinition.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeDefinition.cs new file mode 100644 index 0000000..9e0e19e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeDefinition.cs @@ -0,0 +1,158 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("8E03A706-ECA8-45F7-9D72-3EADAA4FF2F5")] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +public interface IAttributeDefinition +{ + [DispId(1)] + string Name + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(2)] + MxAttributeCategory category + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(3)] + MxDataType type + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(4)] + MxValue value + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.Interface)] + set; + } + + [DispId(5)] + MxValue Min + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.Interface)] + set; + } + + [DispId(6)] + MxValue Max + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.Interface)] + set; + } + + [DispId(7)] + bool CfgSethandler + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(8)] + bool RtSetHandler + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(9)] + MxSecurityClassification SecurityClassification + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(10)] + int UpperBoundDim1 + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(11)] + int UpperBoundDim2 + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(12)] + int UpperBoundDim3 + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(13)] + MxPropertyLockedEnum Locked + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(14)] + short attributeId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeDefinitions.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeDefinitions.cs new file mode 100644 index 0000000..77ea22b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeDefinitions.cs @@ -0,0 +1,37 @@ +using System.Collections; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("31ED8996-8368-47E2-A48B-0A07FFE6983B")] +public interface IAttributeDefinitions : IEnumerable +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IAttributeDefinition AddAttribute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveAttribute([In] int nAttributeId); + + [DispId(3)] + int count + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(0)] + IAttributeDefinition this[[In] int nIndex] + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalType = "System.Runtime.InteropServices.CustomMarshalers.EnumeratorToEnumVariantMarshaler, CustomMarshalers, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] + new IEnumerator GetEnumerator(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeNameProvider.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeNameProvider.cs new file mode 100644 index 0000000..0323590 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeNameProvider.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F2B877E6-1DBE-11D3-80AD-00104B5F96A7")] +public interface IAttributeNameProvider +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResolvePrimitiveReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][Out] ref short pPrimitiveId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResolveAttributeReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][MarshalAs(UnmanagedType.BStr)] string attributeName, [In][Out] ref short pPrimitiveId, [In][Out] ref short pAttributeId, out bool isDynamic); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeNameProvider2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeNameProvider2.cs new file mode 100644 index 0000000..d1cd56d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAttributeNameProvider2.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("05329473-F0DE-4C3C-ADAA-C11E484296EF")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAttributeNameProvider2 : IAttributeNameProvider +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResolvePrimitiveReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][Out] ref short pPrimitiveId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResolveAttributeReference([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][MarshalAs(UnmanagedType.BStr)] string attributeName, [In][Out] ref short pPrimitiveId, [In][Out] ref short pAttributeId, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResolveAttributeReference2([In][MarshalAs(UnmanagedType.BStr)] string AutomationObjectName, [In][MarshalAs(UnmanagedType.BStr)] string primitiveName, [In][MarshalAs(UnmanagedType.BStr)] string attributeName, [In][Out] ref short pPrimitiveId, [In][Out] ref short pAttributeId, out bool isDynamic, out bool HasQuality, out bool HasTimestamp); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject.cs new file mode 100644 index 0000000..6946257 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject.cs @@ -0,0 +1,84 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("FA5DE931-208A-11D4-82B8-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +public interface IAutomationObject +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject2.cs new file mode 100644 index 0000000..f82626a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject2.cs @@ -0,0 +1,110 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CF9A3A29-CA03-406D-971C-44D799F6E72B")] +public interface IAutomationObject2 : IAutomationObject +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeEx([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetState([In] ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownCachedObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrepareCachedObjectForStartup(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateAttributesFromRuntimeCheckpoint([In] int primitive, [In] uint bufSize, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPrimitiveCheckpointChanges([In] int primitive, [In][MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetObjectId(out int ObjectID); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject3.cs new file mode 100644 index 0000000..35db217 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject3.cs @@ -0,0 +1,113 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("BA83493C-3C8C-4C47-88D7-028FA880C42F")] +public interface IAutomationObject3 : IAutomationObject2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetState([In] ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutdownCachedObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrepareCachedObjectForStartup(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAttributesFromRuntimeCheckpoint([In] int primitive, [In] uint bufSize, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveCheckpointChanges([In] int primitive, [In][MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectId(out int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Invoke([In] int lMode, [In][MarshalAs(UnmanagedType.Struct)] ref object vPara); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject4.cs new file mode 100644 index 0000000..ea84317 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject4.cs @@ -0,0 +1,131 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4E219836-F98F-407E-AE9D-627A8B50EF40")] +public interface IAutomationObject4 : IAutomationObject3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetState([In] ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutdownCachedObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrepareCachedObjectForStartup(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAttributesFromRuntimeCheckpoint([In] int primitive, [In] uint bufSize, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveCheckpointChanges([In] int primitive, [In][MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectId(out int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Invoke([In] int lMode, [In][MarshalAs(UnmanagedType.Struct)] ref object vPara); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeEx2([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out _FILETIME pTime, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out short pQualityOut, out _FILETIME pTimeOut, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributesSupportedProperties([In] ref MxAttributeHandle pMxAttributeHandle, out uint pPropertyFlags, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDefaultTimestamp(out _FILETIME pTime); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject5.cs new file mode 100644 index 0000000..1cb320f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject5.cs @@ -0,0 +1,134 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("A0FA497E-965E-402E-9F34-3D75828006BF")] +public interface IAutomationObject5 : IAutomationObject4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetState([In] ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutdownCachedObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrepareCachedObjectForStartup(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAttributesFromRuntimeCheckpoint([In] int primitive, [In] uint bufSize, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveCheckpointChanges([In] int primitive, [In][MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectId(out int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Invoke([In] int lMode, [In][MarshalAs(UnmanagedType.Struct)] ref object vPara); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx2([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out _FILETIME pTime, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out short pQualityOut, out _FILETIME pTimeOut, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributesSupportedProperties([In] ref MxAttributeHandle pMxAttributeHandle, out uint pPropertyFlags, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetDefaultTimestamp(out _FILETIME pTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttributeEx3([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, int CallbackID); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject6.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject6.cs new file mode 100644 index 0000000..8fb64e7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject6.cs @@ -0,0 +1,137 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("62ACE170-6FDA-4036-A4BE-B0AC3E5C69DE")] +public interface IAutomationObject6 : IAutomationObject5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetState([In] ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutdownCachedObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrepareCachedObjectForStartup(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAttributesFromRuntimeCheckpoint([In] int primitive, [In] uint bufSize, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveCheckpointChanges([In] int primitive, [In][MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectId(out int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Invoke([In] int lMode, [In][MarshalAs(UnmanagedType.Struct)] ref object vPara); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx2([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out _FILETIME pTime, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out short pQualityOut, out _FILETIME pTimeOut, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributesSupportedProperties([In] ref MxAttributeHandle pMxAttributeHandle, out uint pPropertyFlags, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetDefaultTimestamp(out _FILETIME pTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx3([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttributeEx4([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, int CallbackID); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject7.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject7.cs new file mode 100644 index 0000000..5cdeb84 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObject7.cs @@ -0,0 +1,140 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("DD2AC8C2-4478-473C-A4D2-0A5E6F938BDC")] +public interface IAutomationObject7 : IAutomationObject6 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int ObjectID, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.IUnknown)] object pScheduler, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectCheckpoint pAutomationObjectCheckpoint, [In][MarshalAs(UnmanagedType.Interface)] IDeployCompleteNotification pDeployCompleteNotification, [In][MarshalAs(UnmanagedType.Interface)] ISecurityChecker pSecurityChecker, [In][MarshalAs(UnmanagedType.Interface)] IUserAuthenticator pUserAuthenticator, [In][MarshalAs(UnmanagedType.Interface)] IEventPublisher pEventPublisher, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Startup([In] ESTARTUPCONTEXT startupContext); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAccessRights([In] ref VBGUID userId, [In] ref VBGUID userIdVerifier, [In] bool verifiedByUser, [In] ref MxAttributeHandle AttributeHandle, [ComAliasName("Interop.Lmx.MxAccessRights")] out MxAccessRights accessRights); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttribute([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Subscribe([In] ref MxAttributeHandle pMxAttributeHandle, [In] int index, out bool isDynamic); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Unsubscribe([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSubscriptionChanges([In][MarshalAs(UnmanagedType.Interface)] IAccessManagerProvider pAccessManagerProvider); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCheckpointChanges(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnHostScanStateChange([In] bool bEngineOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStatusDescription([In] ref MxAttributeHandle pMxAttributeHandle, [In] ref MxStatus pStatus, [MarshalAs(UnmanagedType.BStr)] out string pDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetAttributeCollection([In] ref _RequestAttributeInfo pRequestAttributeInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NoReferencesOutstanding([In] ref MxAttributeHandle pMxAttributeHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeData([In] ref MxAttributeHandle AttributeHandle, [Out] IntPtr attributeData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetState(out ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAndCheckpointAttribute([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionIndependentCodebase([MarshalAs(UnmanagedType.BStr)] out string codeBase); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequiredHostFeature(out Guid hostFeature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectCategory(out int category); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void HasChangesToCheckpoint(out bool __MIDL__IAutomationObject0000); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetState([In] ObjectStateEnum state); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutdownCachedObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrepareCachedObjectForStartup(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateAttributesFromRuntimeCheckpoint([In] int primitive, [In] uint bufSize, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveCheckpointChanges([In] int primitive, [In][MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetObjectId(out int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Invoke([In] int lMode, [In][MarshalAs(UnmanagedType.Struct)] ref object vPara); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeEx2([In][ComAliasName("Interop.Lmx.MxOperationContext")] MxOperationContext Context, [In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out short pQuality, out _FILETIME pTime, out MxStatus pStatus, out uint GetAttributeStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttributeEx([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] int callbackAttributeId, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In][MarshalAs(UnmanagedType.Interface)] MxValue pDataOut, out short pQualityOut, out _FILETIME pTimeOut, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx2([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In] int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributesSupportedProperties([In] ref MxAttributeHandle pMxAttributeHandle, out uint pPropertyFlags, out MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetDefaultTimestamp(out _FILETIME pTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx3([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttributeEx4([In] ref MxAttributeHandle pMxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue, [In] short quality, [In] _FILETIME ftTime, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool verifiedByUser, [In][MarshalAs(UnmanagedType.LPWStr)] string engineName, out MxStatus pStatus, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, int CallbackID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void LogUserOrSupervisorySetEvent([In] ref MxStatus pStatus, [In] int CallbackID); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectCheckpoint.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectCheckpoint.cs new file mode 100644 index 0000000..9838636 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectCheckpoint.cs @@ -0,0 +1,79 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[Guid("88BD3A83-D90D-11D3-9378-00C04FA04C92")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAutomationObjectCheckpoint +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void LogSystemSetAttributeCall([In] MxAttributeHandle AttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IPrimitiveCheckpoint CreatePrimitiveCheckpoint([In] int primitiveId, [In] int BlobSize, [In] ref byte Blob); + + [DispId(1)] + int id + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(2)] + string AutomationObjectName + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + } + + [DispId(3)] + VBGUID AutomationObjectCLSID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(4)] + int AutomationObjectSignature + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IPrimitiveCheckpoint GetPrimitiveCheckpoint([In] int primitiveId); + + [DispId(5)] + IEnumPrimitiveCheckpoint PrimitiveCheckpoints + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckpointData([In] uint bufSize, [In] ref byte buff); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void zBadForDotNet_GetCheckpointData(out uint bufSize, [Out] IntPtr buf); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ChangeIdentity(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + byte[] GetCheckpointData(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetCheckpointIdentity([In] Guid identityGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCheckpointIdentity(out int checkpointId, out Guid identityGuid); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectDefinition.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectDefinition.cs new file mode 100644 index 0000000..ee5f431 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectDefinition.cs @@ -0,0 +1,192 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("89F3240A-47C3-427B-BDFA-727631349393")] +public interface IAutomationObjectDefinition +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Save(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SaveAs([In][MarshalAs(UnmanagedType.BStr)] string bstrFilename); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetFilename(); + + [DispId(4)] + IPrimitiveDefinition TopMostPrimitive + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(5)] + IFeatures SupportedFeatures + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(6)] + IFeatures RequiredHostFeatures + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(7)] + string Name + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(8)] + string ShortDescription + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(9)] + string ObjectHelp + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(10)] + ECATEGORY CategoryId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(11)] + VBGUID CategoryCLSID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(12)] + VBGUID BaseEditorCLSID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(13)] + VBGUID BaseRuntimeCLSID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(14)] + short DefaultPrimitiveId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(15)] + VBGUID CommonPrimitiveGUID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(16)] + string ToolsetName + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(17)] + VBGUID gObjectGUID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ImportTopMostPrimitive([In][MarshalAs(UnmanagedType.Interface)] IPrimitiveDefinition pPrimitiveDefinition); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IPrimitiveDefinition AddTopMostPrimitive(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveTopMostPrimitive(); + + [DispId(21)] + IConfigurationValues ConfigurationValues + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(22)] + string FormatVersion + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectNameProvider.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectNameProvider.cs new file mode 100644 index 0000000..4b3d7a3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IAutomationObjectNameProvider.cs @@ -0,0 +1,35 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("F2B877E5-1DBE-11D3-80AD-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAutomationObjectNameProvider +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsTagname([In][MarshalAs(UnmanagedType.LPWStr)] string tagname, out int pPlatformId, out int pEngineId, out int pObjectId, out int redundantPlatformId, out int redundantEngineId, out ECATEGORY pObjectCategory); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsHierarchicalName([In][MarshalAs(UnmanagedType.LPWStr)] string containerTagname, [In][MarshalAs(UnmanagedType.LPWStr)] string hierarchicalName, [MarshalAs(UnmanagedType.BStr)] out string tagname, out int pPlatformId, out int pEngineId, out int pObjectId, out int redundantPlatformId, out int redundantEngineId, out ECATEGORY pObjectCategory); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetContainer([In][MarshalAs(UnmanagedType.LPWStr)] string tagname, [MarshalAs(UnmanagedType.BStr)] out string containerTagname, out int containerPlatformId, out int containerEngineId, out int containerObjectId, out int redundantPlatformId, out int redundantEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetArea([In][MarshalAs(UnmanagedType.LPWStr)] string tagname, [MarshalAs(UnmanagedType.BStr)] out string areaTagname, out int areaPlatformId, out int areaEngineId, out int areaObjectId, out int redundantPlatformId, out int redundantEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetHost([In][MarshalAs(UnmanagedType.LPWStr)] string tagname, [MarshalAs(UnmanagedType.BStr)] out string hostTagname, out int hostPlatformId, out int hostEngineId, out int hostObjectId, out int redundantPlatformId, out int redundantEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string tagname, [MarshalAs(UnmanagedType.BStr)] out string platformTagname, out int platformPlatformId, out int platformEngineId, out int platformObjectId, out int redundantPlatformId, out int redundantEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetEngine([In][MarshalAs(UnmanagedType.LPWStr)] string tagname, [MarshalAs(UnmanagedType.BStr)] out string engineTagname, out int enginePlatformId, out int engineEngineId, out int engineObjectId, out int redundantPlatformId, out int redundantEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IAttributeNameProvider GetAttributeNameProvider([In] int AutomationObjectId); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBaseRuntimeScanOnDemand.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBaseRuntimeScanOnDemand.cs new file mode 100644 index 0000000..eab723e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBaseRuntimeScanOnDemand.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("9C7672AE-1F39-49C3-AEB0-6C4D95D0B5BA")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBaseRuntimeScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SuspendUpdates([In] short shPrimitiveId, [In] uint dwCount, [In] ref short pshAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ActivateUpdates([In] short shPrimitiveId, [In] uint dwCount, [In] ref short pshAttributeId); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBaseRuntimeSupportBuffer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBaseRuntimeSupportBuffer.cs new file mode 100644 index 0000000..e3a52e2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBaseRuntimeSupportBuffer.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("A4E61363-4BFC-4A9D-B6EF-896A7F6C0D17")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBaseRuntimeSupportBuffer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void EnableBufferSupport([In] short shPrimitiveId, [In] short shAttributeId, [In] bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ClearOffScanBuffers(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController.cs new file mode 100644 index 0000000..f5de0e5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController.cs @@ -0,0 +1,52 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("22595C0B-28B9-11D3-87E0-00A0C982C01C")] +public interface IBootstrapController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDownPlatformSynchronous([In] int platformId); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController2.cs new file mode 100644 index 0000000..9b67b89 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController2.cs @@ -0,0 +1,55 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("1943AAB6-2AC9-45D5-AD5F-1AF80AECBCAE")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapController2 : IBootstrapController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController3.cs new file mode 100644 index 0000000..8c96064 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController3.cs @@ -0,0 +1,59 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("1943AAB6-2AC9-45D5-AD5F-1AF80AECBCAD")] +public interface IBootstrapController3 : IBootstrapController2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController4.cs new file mode 100644 index 0000000..64a8a8f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController4.cs @@ -0,0 +1,65 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("F14886F9-7426-4A85-93F2-734D8950EB20")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapController4 : IBootstrapController3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController5.cs new file mode 100644 index 0000000..1d45772 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapController5.cs @@ -0,0 +1,71 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("63512694-27F3-4210-AD3B-2A68EAA6DF4E")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapController5 : IBootstrapController4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveLocalPlatform(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSecurityForStoreFwdDirectory(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapProcessController.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapProcessController.cs new file mode 100644 index 0000000..4a1cb89 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapProcessController.cs @@ -0,0 +1,33 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("22595C0F-28B9-11D3-87E0-00A0C982C01C")] +public interface IBootstrapProcessController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartPlatformProcess([In] int lPrivateData, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szExecutable, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdLnArgs, [In][MarshalAs(UnmanagedType.LPWStr)] string szProcessCtrlArgs, [MarshalAs(UnmanagedType.BStr)] out string pszProcessId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownPlatformProcess([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, [In] int lmsShutdownTimeout); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformProcessStatus([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, out tagPlatformProcessStatus pProcessRunState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownAllPlatformProcesses(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformProcessList(out int plTotalProcesses, [Out] IntPtr ppPlatformProcessList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetCmdStartOptions([In] int lProcessId, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCmdStartOptions([In] int lProcessId, [MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister.cs new file mode 100644 index 0000000..16841dc --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister.cs @@ -0,0 +1,48 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("22595C0D-28B9-11D3-87E0-00A0C982C01C")] +public interface IBootstrapRegister +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister2.cs new file mode 100644 index 0000000..851dd12 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister2.cs @@ -0,0 +1,50 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("E42D2692-4B57-4E97-B99C-2829D60A4D2E")] +public interface IBootstrapRegister2 : IBootstrapRegister +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister3.cs new file mode 100644 index 0000000..210aedc --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister3.cs @@ -0,0 +1,56 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("E42D2692-4B57-4E97-B99C-2829D60A4D2F")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegister3 : IBootstrapRegister2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister4.cs new file mode 100644 index 0000000..429c621 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister4.cs @@ -0,0 +1,59 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("219BB2BB-B4B6-4486-A2C8-93F11BA16583")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegister4 : IBootstrapRegister3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister5.cs new file mode 100644 index 0000000..a57c480 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister5.cs @@ -0,0 +1,62 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0A7B1AF2-CFFC-491D-ADDD-8C496E9207F2")] +public interface IBootstrapRegister5 : IBootstrapRegister4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister6.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister6.cs new file mode 100644 index 0000000..c9ef200 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegister6.cs @@ -0,0 +1,65 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("597D6C1E-05F2-4B5E-95E8-A088F1002249")] +public interface IBootstrapRegister6 : IBootstrapRegister5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformId, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform6([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo, [In][MarshalAs(UnmanagedType.BStr)] string bstrOtherNodeCERTIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrGRcertIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrRTcertIssuer); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegistryAccess.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegistryAccess.cs new file mode 100644 index 0000000..615a401 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapRegistryAccess.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("04C4A1E4-4541-11D3-87EC-00A0C982C01C")] +public interface IBootstrapRegistryAccess +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRootKey([MarshalAs(UnmanagedType.BStr)] out string pbstrRootpath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In][MarshalAs(UnmanagedType.LPWStr)] string szIndex, [MarshalAs(UnmanagedType.BStr)] out string pbstrPathname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In][MarshalAs(UnmanagedType.LPWStr)] string szIndex, [In][MarshalAs(UnmanagedType.LPWStr)] string szPathname); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapStatusCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapStatusCallback.cs new file mode 100644 index 0000000..c4cdc23 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IBootstrapStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("71CC01D9-5C20-41D8-B297-4E0C7DE04D31")] +public interface IBootstrapStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyPlatformStatus([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ICheckpointer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ICheckpointer.cs new file mode 100644 index 0000000..6cb2a53 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ICheckpointer.cs @@ -0,0 +1,101 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("D3A386B0-59F8-422E-A8E8-B155A118A83B")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ICheckpointer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteCheckpointFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteCheckpoint([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IAutomationObjectCheckpoint CreateAutomationObjectCheckpoint([In] int ObjectID, [In][MarshalAs(UnmanagedType.LPWStr)] string AutomationObjectName, [In] VBGUID CLSIDOfBFO, [In] int AutomationObjectSignature); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IAutomationObjectCheckpoint GetAutomationObjectCheckpoint([In] int ObjectID); + + [DispId(2)] + IEnumHostedAutomationObjectCheckpoint HostedAutomationObjectCheckpoints + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(3)] + CheckpointerStatus status + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + CheckpointOperationResult OperationStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(4)] + VBFILETIME checkpointFiletime + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnRegisterAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckpointProperty([In] MxAttributeHandle MxAttributeHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IAutomationObjectCheckpoint GetRuntimeCheckpoint([In] int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PersistDeployedCheckpoints(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPrimitiveStateChange([In] short primitiveId, [MarshalAs(UnmanagedType.Interface)] out IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteCheckpoints([In] int cnt, [In] ref int objectIds); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SaveCheckpointsToStream([In] int category, [In] int cnt, [In] ref int checkpoints, [MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateCheckpointsFromStream([In] int cnt, [In][Out][ComAliasName("Interop.Lmx.LoadCheckpointResult")] ref LoadCheckpointResult staticCheckpoints, [In] Guid guid, [In][MarshalAs(UnmanagedType.Interface)] IStream stream); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteRuntimeCheckpoint([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateRuntimeCheckpoint([In] int AutomationObjectId); + + [DispId(6)] + bool DeploymentInProgress + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ICheckpointerFactory.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ICheckpointerFactory.cs new file mode 100644 index 0000000..449ca2e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ICheckpointerFactory.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("E9A9DA2F-E017-11D3-937B-00C04FA04C92")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ICheckpointerFactory +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ICheckpointer CreateCheckpointFile([In][MarshalAs(UnmanagedType.LPWStr)] string CheckPointFileName, [In] CheckPointerFactoryFlags Flags, [In] CheckpointerFileCreationDisposition CreateDisp, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncMgr, [In][MarshalAs(UnmanagedType.IUnknown)] object accessMangerHost, out CheckpointFileCreationResult resultCode); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IConfigurationValue.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IConfigurationValue.cs new file mode 100644 index 0000000..56719fe --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IConfigurationValue.cs @@ -0,0 +1,52 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("8C72121B-6BA8-41B4-94C4-832D425B0EAA")] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +public interface IConfigurationValue +{ + [DispId(1)] + short primitiveId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(2)] + short attributeId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(3)] + short propertyId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(4)] + MxValue value + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.Interface)] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IConfigurationValues.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IConfigurationValues.cs new file mode 100644 index 0000000..e431643 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IConfigurationValues.cs @@ -0,0 +1,37 @@ +using System.Collections; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("17727E5D-102E-46DD-87AA-55908A0F08DB")] +public interface IConfigurationValues : IEnumerable +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IConfigurationValue AddConfigurationValue(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveConfigurationValue([In] short shPrimitiveId, [In] short shAttributeId, [In] short shPropertyId); + + [DispId(3)] + int count + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(0)] + IConfigurationValue this[[In] int nIndex] + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalType = "System.Runtime.InteropServices.CustomMarshalers.EnumeratorToEnumVariantMarshaler, CustomMarshalers, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] + new IEnumerator GetEnumerator(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataClient.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataClient.cs new file mode 100644 index 0000000..279b6db --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataClient.cs @@ -0,0 +1,123 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[Guid("D55C14E8-FB22-48F8-A092-EF9BC452A083")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IDataClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetLastError(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetHeap(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Connect([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Connect2([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr DisConnect(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Disconnect2(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int IsIDataClientConnected(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr CreateSubscription([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] CreateSubscription2([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr ChangeSubscription([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] ChangeSubscription2([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr DeleteSubscription([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] DeleteSubscription2([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr AddMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] AddMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr ChangeMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] ChangeMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr DeleteMonitoredItems([In] long SubscriptionId, [In] ref ulong ItemIds, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] DeleteMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] ItemIds, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr RegisterItems([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] RegisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr UnregisterItems([In] ref ulong varItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] UnregisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] varItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Write([In] ref _WriteRequest pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Write2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] WriteRequest2[] pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Publish([In] long SubscriptionId, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Publish2([In] long SubscriptionId, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr PublishWriteComplete([Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] PublishWriteComplete2([MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Read([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Read2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint UpdatesCount); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumer.cs new file mode 100644 index 0000000..f6e3604 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumer.cs @@ -0,0 +1,84 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CF507A59-D4E6-480D-B38E-7D8B035B8C94")] +public interface IDataConsumer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterCallback([In][MarshalAs(UnmanagedType.Interface)] IDataConsumerCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterCallback(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int ResolveNamespace([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResolveReference([In] int lNamespaceId, [In][MarshalAs(UnmanagedType.BStr)] string bstrName, [In][MarshalAs(UnmanagedType.BStr)] string bstrContext, [In] int lItemId, [In] ulong ulUserData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Subscribe([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterReference([In] int lNamespaceId, [In] int lItemId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ActivateSuspend([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Write([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] uint ItemQuality, [In] ref _IVariant ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Write2([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] uint ItemQuality, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IDataVariant[] ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void WriteWithReasonDesc([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] short ItemQuality, [In] ref _IVariant ItemValue, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessMessages(out int lSize, [Out] IntPtr updates, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessMessages2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemDataUpdate2[] updates, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessRegistration(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessRegistration2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemRegistrationResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessSubscription(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessSubscription2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemSubscriptionResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessUnregister(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessUnregister2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemUnregisterResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessWriteComplete(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessWriteComplete2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemWriteResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessActivateSuspend(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessActivateSuspend2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemActiveResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsConnected([In] int namespaceId, out int connected); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Shutdown(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumer1.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumer1.cs new file mode 100644 index 0000000..23fc664 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumer1.cs @@ -0,0 +1,86 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("8948FFF4-4529-4447-9115-C69041A49B00")] +public interface IDataConsumer1 : IDataConsumer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterCallback([In][MarshalAs(UnmanagedType.Interface)] IDataConsumerCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterCallback(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int ResolveNamespace([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResolveReference([In] int lNamespaceId, [In][MarshalAs(UnmanagedType.BStr)] string bstrName, [In][MarshalAs(UnmanagedType.BStr)] string bstrContext, [In] int lItemId, [In] ulong ulUserData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Subscribe([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterReference([In] int lNamespaceId, [In] int lItemId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ActivateSuspend([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Write([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] uint ItemQuality, [In] ref _IVariant ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Write2([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] uint ItemQuality, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IDataVariant[] ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void WriteWithReasonDesc([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] short ItemQuality, [In] ref _IVariant ItemValue, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessMessages(out int lSize, [Out] IntPtr updates, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessMessages2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemDataUpdate2[] updates, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessRegistration(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessRegistration2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemRegistrationResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessSubscription(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessSubscription2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemSubscriptionResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessUnregister(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessUnregister2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemUnregisterResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessWriteComplete(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessWriteComplete2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemWriteResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessActivateSuspend(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessActivateSuspend2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemActiveResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsConnected([In] int namespaceId, out int connected); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterReferenceEx([In] int lNamespaceId, [In] int lItemId, [In] int isSubscribed); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumerCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumerCallback.cs new file mode 100644 index 0000000..1dd3d27 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataConsumerCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("FA990F6C-2F68-4C46-84F7-0A0279ADFA99")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IDataConsumerCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NamespaceResolved([In] int lNamespaceId); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataType.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataType.cs new file mode 100644 index 0000000..80ce79e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataType.cs @@ -0,0 +1,56 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("77051582-C09B-4222-BA2A-766554B0D142")] +public enum IDataType +{ + TypeByte = 0, + TypeChar = 1, + TypeInt16 = 2, + TypeUInt16 = 3, + TypeInt32 = 4, + TypeUInt32 = 5, + TypeInt64 = 6, + TypeUInt64 = 7, + TypeFloat = 8, + TypeDouble = 9, + TypeString = 10, + TypeDateTime = 11, + TypeDuration = 12, + TypeGuid = 13, + TypeByteString = 14, + TypeLocaleID = 15, + TypeLocalizedText = 16, + TypeBool = 17, + TypeSByte = 18, + TypeErrorStatus = 19, + TypeEnum = 20, + TypeDataType = 21, + TypeSecurityClassification = 22, + TypeDataQuality = 23, + TypeByteArray = 40, + TypeCharArray = 41, + TypeInt16Array = 42, + TypeUInt16Array = 43, + TypeInt32Array = 44, + TypeUInt32Array = 45, + TypeInt64Array = 46, + TypeUInt64Array = 47, + TypeFloatArray = 48, + TypeDoubleArray = 49, + TypeStringArray = 50, + TypeDateTimeArray = 51, + TypeDurationArray = 52, + TypeGuidArray = 53, + TypeByteStringArray = 54, + TypeLocaleIDArray = 55, + TypeLocalizedTextArray = 56, + TypeBoolArray = 57, + TypeSByteArray = 58, + TypeEnumArray = 60, + TypeDataTypeArray = 61, + TypeSecurityClassificationArray = 62, + TypeDataQualityArray = 63, + TypeUnknown = 65535 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataVariant.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataVariant.cs new file mode 100644 index 0000000..2a887d2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDataVariant.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("8D6DED71-C022-4F83-AF3D-BA24E13D22D0")] +public struct IDataVariant +{ + public ushort type; + + public int length; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] Payload; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDebugBRO.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDebugBRO.cs new file mode 100644 index 0000000..e47d436 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDebugBRO.cs @@ -0,0 +1,24 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F23FD5A5-C063-452A-8D37-4060648C10EC")] +public interface IDebugBRO +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint GetProcessId(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetObjectId(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetCategory(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetHost(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDependentFile.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDependentFile.cs new file mode 100644 index 0000000..03c19a3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDependentFile.cs @@ -0,0 +1,44 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("1C0F822C-8F07-4E3E-A95F-F2756215FA2A")] +public interface IDependentFile +{ + [DispId(1)] + string Name + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(2)] + string vendorName + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(3)] + EFileType RegistrationType + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDependentFiles.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDependentFiles.cs new file mode 100644 index 0000000..f4151fa --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDependentFiles.cs @@ -0,0 +1,49 @@ +using System.Collections; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("A9C3E252-E0F1-484D-AA10-4C70AEDEDD9E")] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +public interface IDependentFiles : IEnumerable +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IDependentFile AddDependentFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveDependentFile([In][MarshalAs(UnmanagedType.BStr)] string bstrDependentFileName); + + [DispId(3)] + int count + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(0)] + IDependentFile this[[In] int nIndex] + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalType = "System.Runtime.InteropServices.CustomMarshalers.EnumeratorToEnumVariantMarshaler, CustomMarshalers, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] + new IEnumerator GetEnumerator(); + + [DispId(4)] + IDependentFile DefaultDependentFile + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.Interface)] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDeployCompleteNotification.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDeployCompleteNotification.cs new file mode 100644 index 0000000..11e58b1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDeployCompleteNotification.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("3427CAC7-92A8-44BA-98CC-6586F04F7E64")] +public interface IDeployCompleteNotification +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyDeployComplete(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDictionary.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDictionary.cs new file mode 100644 index 0000000..df94954 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IDictionary.cs @@ -0,0 +1,24 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("FB91DD91-83C2-413C-BEB0-95338B522B14")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IDictionary +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In][MarshalAs(UnmanagedType.LPWStr)] string vendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string groupID, [In][MarshalAs(UnmanagedType.LPWStr)] string dictionaryFileName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetLocaleOverride([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetText([In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetTextWithPhraseKey([In][MarshalAs(UnmanagedType.BStr)] string key); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnginePrimitiveInternal.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnginePrimitiveInternal.cs new file mode 100644 index 0000000..613d7e3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnginePrimitiveInternal.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("9A4C7AFE-AFA0-4648-8307-CD8867F5810C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IEnginePrimitiveInternal +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPrimitiveRuntimeSite([In] short primitiveId, [In][MarshalAs(UnmanagedType.Interface)] IPrimitiveRuntimeSite pSite); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdatePrimitiveRuntimeData([In] ref byte pData, [In] int size, [In] OPERATION op); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetDataNotifyFailureConsecMax([In] int dataNotifyFailureConsecMax); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumAttributeCheckpoint.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumAttributeCheckpoint.cs new file mode 100644 index 0000000..8837db2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumAttributeCheckpoint.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("A2E82EF1-DA5F-11D3-9379-00C04FA04C92")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IEnumAttributeCheckpoint +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Next([In] int NumberElements, [MarshalAs(UnmanagedType.Interface)] out IAttributeCheckpoint ppAttributeCheckpoint, out int pNumberElementsInArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([In][MarshalAs(UnmanagedType.Interface)] ref IEnumAttributeCheckpoint ppEnumAttributeCheckpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Reset(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Skip([In] int ItemsToSkip); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumHostedAutomationObjectCheckpoint.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumHostedAutomationObjectCheckpoint.cs new file mode 100644 index 0000000..dbba71c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumHostedAutomationObjectCheckpoint.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("88BD3A87-D90D-11D3-9378-00C04FA04C92")] +public interface IEnumHostedAutomationObjectCheckpoint +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Next([In] int NumberElements, [MarshalAs(UnmanagedType.Interface)] out IAutomationObjectCheckpoint ppAutomationObjectCheckpoint, out int NumberElementsInArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([In][MarshalAs(UnmanagedType.Interface)] ref IEnumHostedAutomationObjectCheckpoint ppEnumHostedAutomationObjectCheckpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Reset(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Skip([In] int ItemsToSkip); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumPrimitiveCheckpoint.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumPrimitiveCheckpoint.cs new file mode 100644 index 0000000..6febfbb --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumPrimitiveCheckpoint.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("88BD3A86-D90D-11D3-9378-00C04FA04C92")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IEnumPrimitiveCheckpoint +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Next([In] int NumberElements, [MarshalAs(UnmanagedType.Interface)] out IPrimitiveCheckpoint ppPrimitiveCheckpoint, out int pNumberElementsInArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([In][MarshalAs(UnmanagedType.Interface)] ref IEnumPrimitiveCheckpoint ppEnumPrimitiveCheckpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Reset(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Skip([In] int ItemsToSkip); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumPropertyCheckpoint.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumPropertyCheckpoint.cs new file mode 100644 index 0000000..d414904 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEnumPropertyCheckpoint.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("5C3A62E3-DCBB-11D3-8B23-000000000000")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IEnumPropertyCheckpoint +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Next([In] int NumberElements, [MarshalAs(UnmanagedType.Interface)] out MxValue ppFsValue, out int pNumberElementsInArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out IEnumPropertyCheckpoint ppEnumPropertyCheckpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Reset(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Skip([In] int ItemsToSkip); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEventPublisher.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEventPublisher.cs new file mode 100644 index 0000000..4f4c981 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IEventPublisher.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("9F538574-D4AB-4A3B-871E-55540D3864D2")] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +public interface IEventPublisher +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void Initialize([In][MarshalAs(UnmanagedType.IUnknown)] object pMxUnknown); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(2)] + [return: MarshalAs(UnmanagedType.BStr)] + string SystemEvt([In][MarshalAs(UnmanagedType.BStr)] string attrName, [In][MarshalAs(UnmanagedType.BStr)] string areaName, [In] int lowTimestamp, [In] int highTimestamp, [In] int timeOffset, [In][MarshalAs(UnmanagedType.BStr)] string desc, [In][MarshalAs(UnmanagedType.BStr)] string @event); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(3)] + [return: MarshalAs(UnmanagedType.BStr)] + string SecurityAuditEvt([In][MarshalAs(UnmanagedType.BStr)] string attrName, [In][MarshalAs(UnmanagedType.BStr)] string areaName, [In] int lowTimestamp, [In] int highTimestamp, [In] int timeOffset, [In][MarshalAs(UnmanagedType.BStr)] string desc, [In][MarshalAs(UnmanagedType.BStr)] string oldValue, [In][MarshalAs(UnmanagedType.BStr)] string newValue, [In][MarshalAs(UnmanagedType.BStr)] string sourceName, [In][MarshalAs(UnmanagedType.BStr)] string user1Name, [In][MarshalAs(UnmanagedType.BStr)] string user1FullName, [In][MarshalAs(UnmanagedType.BStr)] string user1DomainName, [In][MarshalAs(UnmanagedType.BStr)] string user2Name, [In][MarshalAs(UnmanagedType.BStr)] string user2FullName, [In][MarshalAs(UnmanagedType.BStr)] string user2DomainName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(4)] + [return: MarshalAs(UnmanagedType.BStr)] + string AppChangeEvt([In][MarshalAs(UnmanagedType.BStr)] string attrName, [In][MarshalAs(UnmanagedType.BStr)] string areaName, [In] int lowTimestamp, [In] int highTimestamp, [In] int timeOffset, [In][MarshalAs(UnmanagedType.BStr)] string desc, [In][MarshalAs(UnmanagedType.BStr)] string oldValue, [In][MarshalAs(UnmanagedType.BStr)] string newValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(5)] + [return: MarshalAs(UnmanagedType.BStr)] + string MessageEvt([In][MarshalAs(UnmanagedType.BStr)] string attrName, [In][MarshalAs(UnmanagedType.BStr)] string areaName, [In] int lowTimestamp, [In] int highTimestamp, [In] int timeOffset, [In][MarshalAs(UnmanagedType.BStr)] string desc, [In][MarshalAs(UnmanagedType.BStr)] string message, [In] int confirmRequired, [In] int confirmReceived, [In] int inputRequired, [In] int inputReceived, [In][MarshalAs(UnmanagedType.BStr)] string input); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMC.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMC.cs new file mode 100644 index 0000000..48c092a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMC.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A5")] +public interface IFMC +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] int lPlatformId, [In] int lCookie, [In][MarshalAs(UnmanagedType.BStr)] string bstrAddress, [In] int lPort, [In][MarshalAs(UnmanagedType.Interface)] IFMCCallback pCallback, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RequestConnection([In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Connect([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int lPlatformId, [In] int timeToWaitForConnection = 500); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SendData([In] int lPlatformId, [In] int lMessageID, [In][ComAliasName("Interop.Lmx.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody, [In] int dwTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnInitialize(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DisConnect([In] int lPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectEx([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int timeToWaitForConnection); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMCCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMCCallback.cs new file mode 100644 index 0000000..211e03a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMCCallback.cs @@ -0,0 +1,25 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A6")] +public interface IFMCCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataReceived([In] int lPlatformId, [In][ComAliasName("Interop.Lmx.ActionTypes")] ActionTypes usType, [In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RequestConnectionRecv([In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablished([In] int lPlatformId, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataSent([In] int lPlatformId, [In] int lMessageID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionClosed([In] int lPlatformId, [In] int lCookie, [In] int lErrCode); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMCCallbackEx.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMCCallbackEx.cs new file mode 100644 index 0000000..371e666 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFMCCallbackEx.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("C76EFD3E-772D-4C16-BEF5-0C0ECAB2A509")] +public interface IFMCCallbackEx : IFMCCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DataReceived([In] int lPlatformId, [In][ComAliasName("Interop.Lmx.ActionTypes")] ActionTypes usType, [In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RequestConnectionRecv([In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ConnectionEstablished([In] int lPlatformId, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DataSent([In] int lPlatformId, [In] int lMessageID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ConnectionClosed([In] int lPlatformId, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablishedEx([MarshalAs(UnmanagedType.BStr)] string address, int port, int platformId, int lCookie, int lErrCode); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFSEngineClient.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFSEngineClient.cs new file mode 100644 index 0000000..2ee111b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFSEngineClient.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("1D55A3C8-E395-4228-B29C-60BEE521B7B3")] +public interface IFSEngineClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineState([ComAliasName("Interop.Lmx.EngineStates")] EngineStates states); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFeature.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFeature.cs new file mode 100644 index 0000000..4993012 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFeature.cs @@ -0,0 +1,20 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("C23F39EF-074C-4BE2-AE0E-BF653E99373F")] +public interface IFeature +{ + [DispId(1)] + VBGUID FeatureGUID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFeatures.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFeatures.cs new file mode 100644 index 0000000..4e94936 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFeatures.cs @@ -0,0 +1,37 @@ +using System.Collections; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("87FB569A-A93B-4100-8BDA-E7511AEB1FC9")] +public interface IFeatures : IEnumerable +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IFeature AddFeature(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveFeature([In] ref VBGUID pVal); + + [DispId(3)] + int count + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(0)] + IFeature this[[In] int nIndex] + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalType = "System.Runtime.InteropServices.CustomMarshalers.EnumeratorToEnumVariantMarshaler, CustomMarshalers, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] + new IEnumerator GetEnumerator(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFileRepository.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFileRepository.cs new file mode 100644 index 0000000..afcc8e6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IFileRepository.cs @@ -0,0 +1,42 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("E1C5680E-DA6A-413B-8DE5-D5F2EA71A40E")] +public interface IFileRepository +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPimRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szPimRepositoryMachineName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutVendorFileToRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID, [In][MarshalAs(UnmanagedType.Interface)] IStream pStrmFile); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteVendorFileFromRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetVendorFileFromRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID, [MarshalAs(UnmanagedType.Interface)] out IStream ppStrmFile); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RenameVendorFileInRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID, [In][MarshalAs(UnmanagedType.LPWStr)] string szOldFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szNewFilename); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RenameVendorname([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szOldVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szNewVendorname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetGroupIDPath([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetGalaxyPathForResource([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szResource); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutGalaxyFileToRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szFullFilename, [In][MarshalAs(UnmanagedType.Interface)] IStream pStrmFile); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetGalaxyFileFromRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szFullFilename, [MarshalAs(UnmanagedType.Interface)] out IStream ppStrmFile); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IHierarchicalObjectNameProvider.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IHierarchicalObjectNameProvider.cs new file mode 100644 index 0000000..3c10505 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IHierarchicalObjectNameProvider.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("DC6E9681-B4F6-48B3-A8D5-82B0E2A2649D")] +public interface IHierarchicalObjectNameProvider +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsFullHierarchicalName([In][MarshalAs(UnmanagedType.LPWStr)] string hierarchicalName, [MarshalAs(UnmanagedType.BStr)] out string tagname, out int pPlatformId, out int pEngineId, out int pObjectId, out int redundantPlatformId, out int redundantEngineId, out ECATEGORY pObjectCategory); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify.cs new file mode 100644 index 0000000..9e442b8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("06D2B229-AF4F-11D3-939D-00C04F6BBD91")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IInfoNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Fire_OnInfoNotify([In] int flag); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_Event.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_Event.cs new file mode 100644 index 0000000..387576a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_Event.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComEventInterface(typeof(IInfoNotify), typeof(IInfoNotify_EventProvider))] +[ComVisible(false)] +public interface IInfoNotify_Event +{ + event IInfoNotify_Fire_OnInfoNotifyEventHandler Fire_OnInfoNotify; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_EventProvider.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_EventProvider.cs new file mode 100644 index 0000000..82b9053 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_EventProvider.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.Lmx; + +internal sealed class IInfoNotify_EventProvider : IInfoNotify_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 41, 178, 210, 6, 79, 175, 211, 17, 147, 157, + 0, 192, 79, 107, 189, 145 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_Fire_OnInfoNotify(IInfoNotify_Fire_OnInfoNotifyEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + IInfoNotify_SinkHelper infoNotify_SinkHelper = new IInfoNotify_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(infoNotify_SinkHelper, out pdwCookie); + infoNotify_SinkHelper.m_dwCookie = pdwCookie; + infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate = P_0; + m_aEventSinkHelpers.Add(infoNotify_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_Fire_OnInfoNotify(IInfoNotify_Fire_OnInfoNotifyEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + IInfoNotify_SinkHelper infoNotify_SinkHelper = (IInfoNotify_SinkHelper)m_aEventSinkHelpers[num]; + if (infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate != null && ((infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(infoNotify_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public IInfoNotify_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + IInfoNotify_SinkHelper infoNotify_SinkHelper = (IInfoNotify_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(infoNotify_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs new file mode 100644 index 0000000..714b409 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +public delegate void IInfoNotify_Fire_OnInfoNotifyEventHandler([In] int flag); diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_SinkHelper.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_SinkHelper.cs new file mode 100644 index 0000000..5860ef8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInfoNotify_SinkHelper.cs @@ -0,0 +1,28 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ClassInterface(ClassInterfaceType.None)] +public sealed class IInfoNotify_SinkHelper : IInfoNotify +{ + public IInfoNotify_Fire_OnInfoNotifyEventHandler m_Fire_OnInfoNotifyDelegate; + + public int m_dwCookie; + + public void Fire_OnInfoNotify(int P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_Fire_OnInfoNotifyDelegate != null) + { + m_Fire_OnInfoNotifyDelegate(P_0); + } + } + + internal IInfoNotify_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_Fire_OnInfoNotifyDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInternalAccessManagerHost.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInternalAccessManagerHost.cs new file mode 100644 index 0000000..858bfaa --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInternalAccessManagerHost.cs @@ -0,0 +1,80 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("E0AF1A65-F984-475A-9C1A-680F21DEFD82")] +public interface IInternalAccessManagerHost +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] int platformId, [In] int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetEngineName([MarshalAs(UnmanagedType.BStr)] out string engineName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ExecuteAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + CoBaseRuntimeObject GetAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetQueueExtent([In] int dwNewExtent, [In] short QueueType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateGuaranteedQueue([In] int maxExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteGuaranteedQueue([In] int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetMxStatusDescription([In] MxStatus status, [MarshalAs(UnmanagedType.BStr)] out string description); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RetrieveObjectInfo([In][MarshalAs(UnmanagedType.Interface)] MxValue parameters, [In][MarshalAs(UnmanagedType.Interface)] MxValue result); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetFoldingCnt(out int count); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyObjectQuarantined([In] int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQuarantinedObjectCnt(out int count); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetProtocolInfo([MarshalAs(UnmanagedType.BStr)] out string lmxversion, [MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAutomationObjectIdByName([In][MarshalAs(UnmanagedType.LPWStr)] string objectName, out int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DisableFolding([In] ushort ObjectID, [In] ref MxAttributeHandle attribute); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribedAttributeChanged([In] int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPublishPacketCnts(out int PublishPacketsSentCount, out int PublishPacketsReceivedCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetSvcStatistics(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInternalAccessManagerHost2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInternalAccessManagerHost2.cs new file mode 100644 index 0000000..752d906 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IInternalAccessManagerHost2.cs @@ -0,0 +1,86 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("D0273309-213B-46EF-ABDA-1987A315666B")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IInternalAccessManagerHost2 : IInternalAccessManagerHost +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] int platformId, [In] int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineName([MarshalAs(UnmanagedType.BStr)] out string engineName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ExecuteAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new CoBaseRuntimeObject GetAutomationObject([In] int AutomationObjectId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetQueueExtent([In] int dwNewExtent, [In] short QueueType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateGuaranteedQueue([In] int maxExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteGuaranteedQueue([In] int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetMxStatusDescription([In] MxStatus status, [MarshalAs(UnmanagedType.BStr)] out string description); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RetrieveObjectInfo([In][MarshalAs(UnmanagedType.Interface)] MxValue parameters, [In][MarshalAs(UnmanagedType.Interface)] MxValue result); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetFoldingCnt(out int count); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifyObjectQuarantined([In] int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQuarantinedObjectCnt(out int count); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetProtocolInfo([MarshalAs(UnmanagedType.BStr)] out string lmxversion, [MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAutomationObjectIdByName([In][MarshalAs(UnmanagedType.LPWStr)] string objectName, out int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DisableFolding([In] ushort ObjectID, [In] ref MxAttributeHandle attribute); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribedAttributeChanged([In] int ObjectID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPublishPacketCnts(out int PublishPacketsSentCount, out int PublishPacketsReceivedCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetSvcStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeRedundantEngine([In] tagRedundancyIdentity failoverIdentity, [In] tagMxInitialState mxState, [In] int platformId, [In] int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetNmxPlatformCfgInfo([In] tagNmxPlatformCfgInfo nmxPlatformCfgInfo); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemIdentity2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemIdentity2.cs new file mode 100644 index 0000000..d884750 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemIdentity2.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("E3E3A688-9FAE-4B44-B87A-95C1B3711F06")] +public struct IItemIdentity2 +{ + public ushort ReferenceType; + + public ushort type; + + [MarshalAs(UnmanagedType.BStr)] + public string ContextName; + + [MarshalAs(UnmanagedType.BStr)] + public string Name; + + public ulong id; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemIdentityType.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemIdentityType.cs new file mode 100644 index 0000000..b7ab973 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemIdentityType.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("15C679A3-AC29-4497-AC43-5EA8710BAD46")] +public enum IItemIdentityType +{ + Name = 0, + id = 1, + NameAndId = 2, + Other = 65535 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemReferenceType.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemReferenceType.cs new file mode 100644 index 0000000..bde4822 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IItemReferenceType.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("78FC3B63-DACE-4192-A550-1E645F607A37")] +public enum IItemReferenceType +{ + ItemReferenceNone = 0, + ItemReferenceAbsolute = 1, + ItemReferenceHierarchical = 2, + ItemReferenceRelative = 3, + ItemReferenceOther = 65535 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer.cs new file mode 100644 index 0000000..3c09394 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer.cs @@ -0,0 +1,46 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("CCE67FB7-EAFD-4367-9212-617043BF126D")] +public interface ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer2.cs new file mode 100644 index 0000000..fc41b76 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer2.cs @@ -0,0 +1,50 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("020A8A87-69C5-497F-A893-B629E669FBFF")] +public interface ILMXProxyServer2 : ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer3.cs new file mode 100644 index 0000000..b840208 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer3.cs @@ -0,0 +1,54 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("57D006B6-F25E-4654-A81E-BCBAFD60FE59")] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +public interface ILMXProxyServer3 : ILMXProxyServer2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer4.cs new file mode 100644 index 0000000..5b3daef --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer4.cs @@ -0,0 +1,74 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("9DC0D5C1-9371-4E84-86F8-7091D316A66C")] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +public interface ILMXProxyServer4 : ILMXProxyServer3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer5.cs new file mode 100644 index 0000000..f5bcedd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILMXProxyServer5.cs @@ -0,0 +1,82 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +public interface ILMXProxyServer5 : ILMXProxyServer4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + new void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + new void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + new void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + new void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + new void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILoggerSupport.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILoggerSupport.cs new file mode 100644 index 0000000..2bbb094 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ILoggerSupport.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("E9664A24-4940-469C-9C6C-3C827C4010F8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ILoggerSupport +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartLogger(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMCHeartbeatCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMCHeartbeatCallback.cs new file mode 100644 index 0000000..feac526 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMCHeartbeatCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("0160D478-1FBF-43C8-BD84-8BD40F528DF8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMCHeartbeatCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PartialMsgReceived([In] int platformId, [In] int lCookie); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMonitoredItem2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMonitoredItem2.cs new file mode 100644 index 0000000..63a0835 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMonitoredItem2.cs @@ -0,0 +1,26 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("2AA2E248-AF2E-4FCC-95CD-C46AF4F0A1FA")] +public struct IMonitoredItem2 +{ + public byte Active; + + public ushort ReferenceType; + + public ushort type; + + [MarshalAs(UnmanagedType.BStr)] + public string ContextName; + + [MarshalAs(UnmanagedType.BStr)] + public string Name; + + public ulong id; + + public ulong SampleInterval; + + public ulong TimeDeadband; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxBindingService.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxBindingService.cs new file mode 100644 index 0000000..08b9c11 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxBindingService.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4391F3F0-49A0-4822-9E93-6DA04A92F434")] +public interface IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterPreboundReference([In] int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxBindingService2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxBindingService2.cs new file mode 100644 index 0000000..37a6e00 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxBindingService2.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("B69F9918-4393-4F90-8012-D742FEC337BB")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxBindingService2 : IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback.cs new file mode 100644 index 0000000..09bdf45 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CC49CA44-D8CB-11D3-823B-00104B5F96A7")] +public interface IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback2.cs new file mode 100644 index 0000000..af996fe --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CFC6372F-0DA8-4278-A988-F1825C7916A0")] +public interface IMxCallback2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OperationComplete([In] int lCallbackId, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback3.cs new file mode 100644 index 0000000..aa95840 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxCallback3.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("38366038-CD67-457B-8C24-9AD003785798")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxCallback3 : IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult2([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut, [In] short QualityOut, [In] _FILETIME TimestampOut); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection.cs new file mode 100644 index 0000000..b5b2e16 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("74A0D864-4DF5-4C42-841C-4B6265133189")] +public interface IMxInternalConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetReferenceResolutionStatus([In] int refHandle, [In] int ObjectID, out MxAttributeHandle localPart, out int status); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection2.cs new file mode 100644 index 0000000..12dc8e5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("A90A0DC6-2719-4703-BC27-9E8682318E35")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxInternalConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetMxHandle([In] int refHandle, out MxHandle MxHandle, out bool referenceResolved); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection3.cs new file mode 100644 index 0000000..d280f89 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxInternalConnection3.cs @@ -0,0 +1,20 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("E2FB0E18-9359-4145-9956-0108E75399BC")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxInternalConnection3 : IMxInternalConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetMxHandle([In] int refHandle, out MxHandle MxHandle, out bool referenceResolved); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint hRef2ReferenceTblCookie([In] int refHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetMxReference([In] int hRef); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReference.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReference.cs new file mode 100644 index 0000000..4fec00f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReference.cs @@ -0,0 +1,92 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReference : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [DispId(1)] + string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInfo.cs new file mode 100644 index 0000000..de485db --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInfo.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("89D91C9B-AD6F-43D4-AA1B-4AB18326C7A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInfo +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameString([In] int lReferenceCount, [In] ref GetTagNameInInfo pGetTagNameInInfo, out GetTagNameOutInfo pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInfoCS.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInfoCS.cs new file mode 100644 index 0000000..1bad884 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInfoCS.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("11E8356E-0F0D-4D67-974D-925968B66307")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInfoCS +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameStringCS([In] GetTagNameInInfoCS pGetTagNameInInfo, out GetTagNameOutInfoCS pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals.cs new file mode 100644 index 0000000..fea9119 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals.cs @@ -0,0 +1,20 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("90BEFDF6-C111-4366-A27A-8A88DC87A095")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInternals +{ + [DispId(1)] + MxHandle MxHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals2.cs new file mode 100644 index 0000000..7274251 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals2.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("C03A40FC-55DE-4AEA-A87A-401A191163E9")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInternals2 : IMxReferenceInternals +{ + [DispId(1)] + new MxHandle MxHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(2)] + MxRedundantEngineHandle MxRedundantEngineHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals3.cs new file mode 100644 index 0000000..3033e04 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals3.cs @@ -0,0 +1,40 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("F6DF74AF-EB59-48BF-B698-409ABD6367AA")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInternals3 : IMxReferenceInternals2 +{ + [DispId(1)] + new MxHandle MxHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(2)] + new MxRedundantEngineHandle MxRedundantEngineHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(3)] + bool IsDIObject + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals4.cs new file mode 100644 index 0000000..f7dfe24 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxReferenceInternals4.cs @@ -0,0 +1,60 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("A7EABAE9-1F01-438D-8D2F-DA7BD9F3DE0F")] +public interface IMxReferenceInternals4 : IMxReferenceInternals3 +{ + [DispId(1)] + new MxHandle MxHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(2)] + new MxRedundantEngineHandle MxRedundantEngineHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(3)] + new bool IsDIObject + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(4)] + bool HasQuality + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(5)] + bool HasTimestamp + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxScanOnDemand.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxScanOnDemand.cs new file mode 100644 index 0000000..4fecb10 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxScanOnDemand.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("8A4B2077-6E4F-4135-915A-DD952F95EF25")] +public interface IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IncrementSODCounts([In] short ObjectID, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DecrementSODCounts([In] short ObjectID, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxScanOnDemand2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxScanOnDemand2.cs new file mode 100644 index 0000000..29a72dd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxScanOnDemand2.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("8D2EAA56-8512-486B-8FB0-22B3F518CFF7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxScanOnDemand2 : IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IncrementSODCounts([In] short ObjectID, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DecrementSODCounts([In] short ObjectID, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference2([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection.cs new file mode 100644 index 0000000..34b30c5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection.cs @@ -0,0 +1,26 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +public interface IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection2.cs new file mode 100644 index 0000000..73a5cdc --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection2.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("C0D60B4B-C503-43FB-884D-BB3C06777348")] +public interface IMxSupervisoryConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetAttribute2([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double value); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection3.cs new file mode 100644 index 0000000..8501d07 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection3.cs @@ -0,0 +1,36 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("621B4552-9CDC-440E-BDDC-894536122643")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection3 : IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection4.cs new file mode 100644 index 0000000..33d7893 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection4.cs @@ -0,0 +1,58 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CA187E22-D98B-4A44-BD2F-E82CC1E03EEF")] +public interface IMxSupervisoryConnection4 : IMxSupervisoryConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryGetAttribute2([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.Interface)] MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double value); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection5.cs new file mode 100644 index 0000000..bc12a7a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection5.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("52733B9D-1DF4-440F-9320-CFD511FB88F1")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterPreboundReference([In] int preboundReferenceHandle, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection6.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection6.cs new file mode 100644 index 0000000..9e4cb30 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSupervisoryConnection6.cs @@ -0,0 +1,39 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("7F681721-B31D-4A35-A059-D04FA1AA936B")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection6 : IMxSupervisoryConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference2([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection.cs new file mode 100644 index 0000000..3f8891b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection.cs @@ -0,0 +1,38 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CC49CA45-D8CB-11D3-823B-00104B5F96A7")] +public interface IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool Subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string SystemGetQualityDescription([In] ref short mxDataQuality); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection2.cs new file mode 100644 index 0000000..f3b8235 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection2.cs @@ -0,0 +1,44 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("649EF01C-1384-4979-AF39-83A284E8BAFC")] +public interface IMxSystemConnection2 : IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool Subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection3.cs new file mode 100644 index 0000000..5080d20 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxSystemConnection3.cs @@ -0,0 +1,65 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("95EBDC41-C2F7-48AA-B0A0-B3577E165905")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSystemConnection3 : IMxSystemConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool Subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection.cs new file mode 100644 index 0000000..c9fd76b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("CC49CA43-D8CB-11D3-823B-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection2.cs new file mode 100644 index 0000000..bff49c2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection2.cs @@ -0,0 +1,40 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4863541B-B371-4AA2-9378-5347E5D36000")] +public interface IMxUserConnection2 : IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection3.cs new file mode 100644 index 0000000..2b3e0a5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection3.cs @@ -0,0 +1,64 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("F0411F6A-F8C5-49D3-8359-302DC4B9A9F8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection3 : IMxUserConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection4.cs new file mode 100644 index 0000000..a86c5b8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection4.cs @@ -0,0 +1,105 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("232A5C28-A9A9-48F7-A256-94018F6F8F49")] +public interface IMxUserConnection4 : IMxUserConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection5.cs new file mode 100644 index 0000000..28832f8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection5.cs @@ -0,0 +1,108 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("4805D9B8-1BD4-4726-81F8-B70BEEB1D7AE")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection5 : IMxUserConnection4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection6.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection6.cs new file mode 100644 index 0000000..ab3eaf0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection6.cs @@ -0,0 +1,111 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("FD619BE8-98D2-46EA-A274-8481C320C662")] +public interface IMxUserConnection6 : IMxUserConnection5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection7.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection7.cs new file mode 100644 index 0000000..23c7898 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxUserConnection7.cs @@ -0,0 +1,114 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("7FC9C127-083E-48DC-9BE7-BC55A9EA439E")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection7 : IMxUserConnection6 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex7([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int arrayIndex); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxValue.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxValue.cs new file mode 100644 index 0000000..db74db0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxValue.cs @@ -0,0 +1,159 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +[ComConversionLoss] +public interface IMxValue : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] MxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxValueFactory.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxValueFactory.cs new file mode 100644 index 0000000..d6d1041 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IMxValueFactory.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("1B6AEB81-CB43-11D2-BFFF-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxValueFactory +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstance([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceBool([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, bool val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceLong([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, int val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceFloat([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, float val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceDouble([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, double val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceString([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, [MarshalAs(UnmanagedType.LPWStr)] string val); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx.cs new file mode 100644 index 0000000..82f8d63 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx.cs @@ -0,0 +1,54 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("42DB0512-28BE-11D3-80C0-00104B5F96A7")] +public interface INmx +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetMessageTimeout([In] int TimeoutValue); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx2.cs new file mode 100644 index 0000000..40d19a6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("61902C5F-194B-4FF6-81C8-AE5540625CAB")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmx2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequestEx([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwSize, [In] ref byte pData); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx3.cs new file mode 100644 index 0000000..119a69f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx3.cs @@ -0,0 +1,66 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("9F9D26DA-69DE-4A27-822A-E0D5B1745039")] +public interface INmx3 : INmx +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx4.cs new file mode 100644 index 0000000..5319833 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmx4.cs @@ -0,0 +1,74 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("84168012-B544-4217-A145-32819C607435")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmx4 : INmx3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize2([In] int dwPlatformId, [In] int dwEngineId, [In] int dwVersion, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous2(out int pPlatformId, out int pEngineId, [In] int dwVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerVersion([In] int lGalaxyId, [In] int lPlatformId, [In] int lEngineId, out int plVersion); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxHeartbeat.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxHeartbeat.cs new file mode 100644 index 0000000..729e755 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxHeartbeat.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("0B447D53-D3CC-4471-B2DF-5E06AC355915")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxHeartbeat +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Shutdown(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxStatistics.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxStatistics.cs new file mode 100644 index 0000000..ae81b19 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxStatistics.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4169B479-54BD-11D3-A9CC-00A0C9FB55A0")] +public interface INmxStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNmxStatistics(out tagNmxStatsInfo pNmxStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Reset(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxSvcCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxSvcCallback.cs new file mode 100644 index 0000000..18cc406 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxSvcCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("B49F92F7-C748-4169-8ECA-A0670B012746")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxSvcCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataReceived([In] int dwBufferSize, [In] ref sbyte lpDataBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StatusReceived([In] int dwBufferSize, [In] ref sbyte lpStatusBuffer); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxSvcStatistics.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxSvcStatistics.cs new file mode 100644 index 0000000..1975cd7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INmxSvcStatistics.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("6EB90E4C-DF5C-47F0-B2CD-110549C1162A")] +public interface INmxSvcStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetSvcStatistics(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INotifyCheckpointChange.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INotifyCheckpointChange.cs new file mode 100644 index 0000000..438971c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/INotifyCheckpointChange.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B894A03B-8DE7-4FF5-B101-1244F5BDCD89")] +public interface INotifyCheckpointChange +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckpointProperty([In] MxAttributeHandle MxAttributeHandle, [In] short quality, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IObjectStg.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IObjectStg.cs new file mode 100644 index 0000000..948f451 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IObjectStg.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("63022ACC-281B-4B5D-99AE-C2FC9345FCB8")] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +public interface IObjectStg +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IAutomationObjectDefinition CreateAutomationObject(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IPrimitiveDefinition CreatePrimitive(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.IUnknown)] + object Open([In][MarshalAs(UnmanagedType.Struct)] object xmlSource); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPersist.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPersist.cs new file mode 100644 index 0000000..5209a5b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPersist.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0000010C-0000-0000-C000-000000000046")] +public interface IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClassID(out Guid pClassID); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPersistStream.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPersistStream.cs new file mode 100644 index 0000000..ad79ed7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPersistStream.cs @@ -0,0 +1,26 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("00000109-0000-0000-C000-000000000046")] +public interface IPersistStream : IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetSizeMax(out _ULARGE_INTEGER pcbSize); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF.cs new file mode 100644 index 0000000..d15a22e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF.cs @@ -0,0 +1,53 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("47AB0597-F440-4697-B9BB-C722963BF76B")] +public interface IPimPF +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializePimOnCR(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPimRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szPimRepositoryMachineName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddFilesToNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveFilesFromNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InstallToNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddFolder([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFoldername); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveFolder([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFoldername); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetFolderPath([In][MarshalAs(UnmanagedType.LPWStr)] string szFoldername); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteMsi([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szMsiname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void zBadForDotNet_DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void zBadForDotNet_UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo[] pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo[] pFileInstallInfoArray); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF2.cs new file mode 100644 index 0000000..a1482ef --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("483CC72D-57DC-408F-AEEE-B976C78CD6E5")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPimPF2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CleanupPlatform(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF3.cs new file mode 100644 index 0000000..e2e0b94 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF3.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("D0B07A91-E3DC-4886-9B93-6F3223FA9855")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPimPF3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void zBadForDotNet_DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void zBadForDotNet_UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeployRuntimeFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UndeployAllRuntimeFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeployRuntimeFilesTCP([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int TargetPort, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPimFileRepositoryPath([MarshalAs(UnmanagedType.BStr)] out string fileRepositoryPath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo2[] pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo2[] pFileInstallInfoArray); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF4.cs new file mode 100644 index 0000000..df75001 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF4.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("46687954-8247-4279-9BAB-95ADE5FBD159")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPimPF4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CleanupPlatformUpgrade([In] bool bIsGRNode); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF5.cs new file mode 100644 index 0000000..a4662dd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF5.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("233FD98B-106D-4695-807F-9C4E4E0CC722")] +public interface IPimPF5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray, [In] int iCodeModuleType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray, [In] int iCodeModuleType); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF6.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF6.cs new file mode 100644 index 0000000..9e43278 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF6.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("9A9C1B4A-6068-40CA-B9FD-3105262930B6")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPimPF6 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveLocalPlatform(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF7.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF7.cs new file mode 100644 index 0000000..5202d51 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPimPF7.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("DD062033-B605-4879-BA9C-B56A5EA6F4A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPimPF7 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveViewAppDeployedFolders([In][MarshalAs(UnmanagedType.LPWStr)] string szViewAppName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveViewAppNetworkShare([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szViewAppName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeArchestraPath([In][MarshalAs(UnmanagedType.LPWStr)] string szPath); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInfoServer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInfoServer.cs new file mode 100644 index 0000000..a782169 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInfoServer.cs @@ -0,0 +1,73 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4E448140-AE83-11D3-939D-00C04F6BBD91")] +public interface IPlatformInfoServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsValidEngineId([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineDefinition([In] int lEngineId, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagEngineDefinition GetEngineDefinition([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteEngineDefinition([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineScanState([In] int lEngineId, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetEngineScanState([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetStartupType([In] int lEngineId, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetStartupType([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineState([In] int lEngineId, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineRestart([In] int lEngineId, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetEngineRestart([In] int lEngineId); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInfoServer2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInfoServer2.cs new file mode 100644 index 0000000..06834a1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInfoServer2.cs @@ -0,0 +1,82 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("2BF52D84-0902-489F-84F8-77BD49BB932E")] +public interface IPlatformInfoServer2 : IPlatformInfoServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsValidEngineId([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineDefinition([In] int lEngineId, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new tagEngineDefinition GetEngineDefinition([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteEngineDefinition([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineScanState([In] int lEngineId, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetEngineScanState([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupType([In] int lEngineId, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetStartupType([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineState([In] int lEngineId, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineRestart([In] int lEngineId, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetEngineRestart([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineDefinition2([In] int lEngineId, [In] ref tagEngineDefinition2 pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagEngineDefinition2 GetEngineDefinition2([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagRedundancyIdentity GetEngineRedundancyIdentity([In] int lEngineId); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk.cs new file mode 100644 index 0000000..3b068f3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk.cs @@ -0,0 +1,90 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("148C8733-3930-11D3-87EA-00A0C982C01C")] +[ComConversionLoss] +public interface IPlatformInformationClerk +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk2.cs new file mode 100644 index 0000000..f175abd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk2.cs @@ -0,0 +1,102 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("361A8B77-C77A-4A70-B220-FB502D6F847E")] +public interface IPlatformInformationClerk2 : IPlatformInformationClerk +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk3.cs new file mode 100644 index 0000000..5b0ca81 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk3.cs @@ -0,0 +1,114 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("361A8B77-C77A-4A70-B220-FB502D6F847F")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformInformationClerk3 : IPlatformInformationClerk2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk4.cs new file mode 100644 index 0000000..6cfb659 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk4.cs @@ -0,0 +1,126 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[Guid("5A405C49-2FB2-499A-99A8-0E09676DBD75")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformInformationClerk4 : IPlatformInformationClerk3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk5.cs new file mode 100644 index 0000000..961148b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformInformationClerk5.cs @@ -0,0 +1,128 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("80A3606C-99F8-4CC8-AF3B-92B57782DBCC")] +public interface IPlatformInformationClerk5 : IPlatformInformationClerk4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerPlatformSUPStatus([In] int platformId, [In] int partnerPlatformId, out int supStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformRegistryAccess.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformRegistryAccess.cs new file mode 100644 index 0000000..cecf898 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformRegistryAccess.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("45073152-4A92-11D3-87EC-00A0C982C01C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformRegistryAccess +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDirectoryRootpath([MarshalAs(UnmanagedType.BStr)] out string pbstrPath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRootKey([MarshalAs(UnmanagedType.BStr)] out string pbstrRootpath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In] int index, [MarshalAs(UnmanagedType.BStr)] out string pbstrPathname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In] int index, [In][MarshalAs(UnmanagedType.LPWStr)] string szPathname); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformStatusCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformStatusCallback.cs new file mode 100644 index 0000000..2da1a68 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPlatformStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("BCE01301-0A39-41E2-90A3-0D9C7110A12A")] +public interface IPlatformStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyPlatformStatus([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveCheckpoint.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveCheckpoint.cs new file mode 100644 index 0000000..dfcc63e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveCheckpoint.cs @@ -0,0 +1,47 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("88BD3A84-D90D-11D3-9378-00C04FA04C92")] +[ComConversionLoss] +public interface IPrimitiveCheckpoint +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateAttributeCheckpoint([In] int attributeId, [MarshalAs(UnmanagedType.Interface)] out IAttributeCheckpoint ppAttributeCheckpoint); + + [DispId(1)] + int id + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IAttributeCheckpoint GetAttributeCheckpoint([In] int attributeId); + + [DispId(4)] + IEnumAttributeCheckpoint AttributeCheckpoints + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(5)] + IntPtr AssociatedData + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void put_AssociatedData([In] int BlobSize, [In] ref byte Blob); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteAttributeCheckpoint([In] int attributeId); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveDefinition.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveDefinition.cs new file mode 100644 index 0000000..3004499 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveDefinition.cs @@ -0,0 +1,165 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("FB25C069-2AC4-4400-A211-9E426C2C3960")] +public interface IPrimitiveDefinition +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Save(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SaveAs([In][MarshalAs(UnmanagedType.LPWStr)] string fileName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetFilename(); + + [DispId(4)] + IPrimitiveDefinitions ChildPrimitives + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(5)] + IAttributeDefinitions Attributes + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(6)] + IDependentFiles EditorFiles + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(7)] + IDependentFiles PackageFiles + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(8)] + IDependentFiles RuntimeFiles + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [DispId(9)] + EEXECUTIONGROUP ExecutionGroup + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(10)] + bool SupportDynamicAttributes + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(11)] + bool IsVirtual + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(12)] + VBGUID PrimitiveGUID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(13)] + VBGUID EditorCLSID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(14)] + VBGUID PackageCLSID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(15)] + VBGUID RuntimeCLSID + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(16)] + short primitiveId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [DispId(17)] + short DefaultAttributeId + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GenerateHeader([In][MarshalAs(UnmanagedType.BStr)] string fileName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetDLLFilename(); + + [DispId(20)] + string FullPrimitiveName + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveDefinitions.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveDefinitions.cs new file mode 100644 index 0000000..75cb50b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveDefinitions.cs @@ -0,0 +1,40 @@ +using System.Collections; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("D068DBD0-7EE8-4846-B3CD-D4498B9132E1")] +public interface IPrimitiveDefinitions : IEnumerable +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IPrimitiveDefinition AddPrimitive(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ImportPrimitive([In][MarshalAs(UnmanagedType.Interface)] IPrimitiveDefinition pPrimitiveDefinition); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemovePrimitive([In] short nPrimitiveId); + + [DispId(4)] + int count + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(0)] + IPrimitiveDefinition this[[In] int nIndex] + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalType = "System.Runtime.InteropServices.CustomMarshalers.EnumeratorToEnumVariantMarshaler, CustomMarshalers, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] + new IEnumerator GetEnumerator(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntime.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntime.cs new file mode 100644 index 0000000..4b52ee0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntime.cs @@ -0,0 +1,32 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("8CF35610-42DB-41FB-8B37-9085F610D5AD")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPrimitiveRuntime +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] short primitiveId, [In][MarshalAs(UnmanagedType.Interface)] IPrimitiveRuntimeSite pSite); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Startup([In] ref StartupInfo startInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHandler([In] ref AttributeHandle pHandle, [In] ref SetInfo pInfo, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In][Out] ref MxStatus pStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Execute(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetScanState([In] bool bOnScan); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetStatusDescription([In] short shDetailedErrorCode); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite.cs new file mode 100644 index 0000000..1292dca --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite.cs @@ -0,0 +1,51 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("C42B2C1C-7DF0-4265-8CD0-01CBC0B00AB7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPrimitiveRuntimeSite +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetParentId([In] short primitiveId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetChildPrimitives([In] short primitiveId, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I2)] ref short[] primitiveList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeIds([In] short primitiveId, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I2)] ref short[] attributeList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short AddAttribute([In][MarshalAs(UnmanagedType.LPWStr)] string strAttributeName, [In] MxAttributeCategory newAttributeCategory, [In] bool vbHasRtSetHandlerFlag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveAttribute([In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetEventPublisher([MarshalAs(UnmanagedType.Interface)] out IEventPublisher eventPublisher); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddErrorMessage([In][MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddWarningMessage([In][MarshalAs(UnmanagedType.LPWStr)] string warningMessage); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttribute([In] ref AttributeHandle pHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetAttribute([In] ref AttributeHandle pHandle, [In][MarshalAs(UnmanagedType.Interface)] MxValue pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string AppEvent([In][MarshalAs(UnmanagedType.LPWStr)] string attrName, [In] VBFILETIME timeStamp, [In] int timeOffset, [In][MarshalAs(UnmanagedType.LPWStr)] string desc, [In][MarshalAs(UnmanagedType.LPWStr)] string oldValue, [In][MarshalAs(UnmanagedType.LPWStr)] string newValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string MessageEvent([In][MarshalAs(UnmanagedType.LPWStr)] string attrName, [In] VBFILETIME timeStamp, [In] int timeOffset, [In][MarshalAs(UnmanagedType.LPWStr)] string desc, [In][MarshalAs(UnmanagedType.LPWStr)] string message, [In] int confirmRequired, [In] int confirmReceived, [In] int inputRequired, [In] int inputReceived, [In][MarshalAs(UnmanagedType.LPWStr)] string input); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetScanTimeUTC(out _FILETIME time); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite2.cs new file mode 100644 index 0000000..27f7804 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite2.cs @@ -0,0 +1,411 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("7F9D858B-CEC0-40DE-9B85-79868E95621F")] +public interface IPrimitiveRuntimeSite2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeValues(out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeValuesById([In] short primitiveId, out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifySubscriptionChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyCheckpointChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPrimitiveAttributeSite([In] short primitiveId, [MarshalAs(UnmanagedType.Interface)] out IPrimitiveRuntimeSite2 ppSite); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckpointAttribute([In] short attributeId, [In] bool checkpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetType([In] short attributeId, out MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetLockStatus([In] short attributeId, out MxPropertyLockedEnum pLockStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetNumElements([In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetNumElements([In] short attributeId, [In] int numelements); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBoolean([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBoolean([In] short id, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBooleanVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBooleanVQ([In] short id, [In] short quality, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBooleanArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBooleanArrayItem([In] short id, [In] int index, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBooleanArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBooleanQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetBooleanQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetBooleanArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetInteger([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInteger([In] short id, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetIntegerVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutIntegerVQ([In] short id, [In] short quality, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetIntegerArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutIntegerArrayItem([In] short id, [In] int index, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutIntegerArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutIntegerQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetIntegerQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetIntegerArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloat([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloat([In] short id, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloatVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloatVQ([In] short id, [In] short quality, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloatArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloatArrayItem([In] short id, [In] int index, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloatArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloatQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetFloatQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetFloatArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDouble([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDouble([In] short id, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDoubleVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDoubleVQ([In] short id, [In] short quality, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDoubleArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDoubleArrayItem([In] short id, [In] int index, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDoubleArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDoubleQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetDoubleQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetDoubleArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTime([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTime([In] short id, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTimeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTimeVQ([In] short id, [In] short quality, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTimeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTimeArrayItem([In] short id, [In] int index, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetElapsedTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetElapsedTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetString([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutString([In] short id, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetStringVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutStringVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetStringArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutStringArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutStringArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutStringQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetStringQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetStringArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTime([In] short id, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTime([In] short id, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTimeVQ([In] short id, out short quality, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTimeVQ([In] short id, [In] short quality, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTimeArrayItem([In] short id, [In] int index, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTimeArrayItem([In] short id, [In] int index, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomEnum([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnum([In] short id, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomEnumVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnumVQ([In] short id, [In] short quality, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomEnumArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnumArrayItem([In] short id, [In] int index, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnumArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnumQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomEnumQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomEnumArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetReference([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReference([In] short id, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetReferenceVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReferenceVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetReferenceArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReferenceArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReferenceArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReferenceQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetReferenceQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetReferenceArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatus([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatus([In] short id, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatusVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatusVQ([In] short id, [In] short quality, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatusArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatusArrayItem([In] short id, [In] int index, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatusArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatusQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxStatusQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxStatusArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataType([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataType([In] short id, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataTypeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataTypeVQ([In] short id, [In] short quality, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataTypeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataTypeArrayItem([In] short id, [In] int index, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataTypeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataTypeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxDataTypeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxDataTypeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStruct([In] short id, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStruct([In] short id, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructVQ([In] short id, out short quality, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructVQ([In] short id, [In] short quality, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructArrayItem([In] short id, [In] int index, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructArrayItem([In] short id, [In] int index, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomStructQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomStructArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyBROProxyOfAttributeChangeEx([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out int writeToAttribute); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite3.cs new file mode 100644 index 0000000..d33f36b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite3.cs @@ -0,0 +1,635 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[Guid("79E4C97E-5A91-453F-AE70-D80D589E6305")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPrimitiveRuntimeSite3 : IPrimitiveRuntimeSite2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeValues(out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeValuesById([In] short primitiveId, out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifySubscriptionChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifyCheckpointChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveAttributeSite([In] short primitiveId, [MarshalAs(UnmanagedType.Interface)] out IPrimitiveRuntimeSite2 ppSite); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CheckpointAttribute([In] short attributeId, [In] bool checkpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetType([In] short attributeId, out MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetLockStatus([In] short attributeId, out MxPropertyLockedEnum pLockStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetNumElements([In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetNumElements([In] short attributeId, [In] int numelements); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBoolean([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBoolean([In] short id, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanVQ([In] short id, [In] short quality, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayItem([In] short id, [In] int index, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetBooleanQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetBooleanArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetInteger([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutInteger([In] short id, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerVQ([In] short id, [In] short quality, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayItem([In] short id, [In] int index, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetIntegerQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetIntegerArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloat([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloat([In] short id, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatVQ([In] short id, [In] short quality, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayItem([In] short id, [In] int index, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetFloatQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetFloatArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDouble([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDouble([In] short id, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleVQ([In] short id, [In] short quality, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayItem([In] short id, [In] int index, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetDoubleQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetDoubleArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTime([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTime([In] short id, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeVQ([In] short id, [In] short quality, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayItem([In] short id, [In] int index, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetElapsedTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetElapsedTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetString([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutString([In] short id, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetStringQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetStringArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTime([In] short id, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTime([In] short id, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeVQ([In] short id, out short quality, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeVQ([In] short id, [In] short quality, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeArrayItem([In] short id, [In] int index, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayItem([In] short id, [In] int index, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnum([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnum([In] short id, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumVQ([In] short id, [In] short quality, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayItem([In] short id, [In] int index, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReference([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReference([In] short id, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetReferenceQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetReferenceArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatus([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatus([In] short id, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusVQ([In] short id, [In] short quality, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayItem([In] short id, [In] int index, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxStatusQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxStatusArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataType([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataType([In] short id, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeVQ([In] short id, [In] short quality, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayItem([In] short id, [In] int index, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxDataTypeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxDataTypeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStruct([In] short id, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStruct([In] short id, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructVQ([In] short id, out short quality, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructVQ([In] short id, [In] short quality, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructArrayItem([In] short id, [In] int index, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayItem([In] short id, [In] int index, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomStructQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomStructArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifyBROProxyOfAttributeChangeEx([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out int writeToAttribute); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBooleanVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBooleanVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetBooleanT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBooleanT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetBooleanArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBooleanArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetIntegerVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutIntegerVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetIntegerT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutIntegerT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetIntegerArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutIntegerArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloatVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloatVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetFloatT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloatT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetFloatArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloatArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDoubleVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDoubleVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetDoubleT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDoubleT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetDoubleArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDoubleArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTimeVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTimeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetElapsedTimeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTimeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetElapsedTimeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTimeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetStringVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutStringVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetStringT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutStringT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetStringArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutStringArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTimeVTQ([In] short id, out short quality, out _FILETIME timeStamp, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTimeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetTimeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTimeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetTimeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTimeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetCustomEnumVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnumVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetCustomEnumT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnumT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetCustomEnumArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnumArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetReferenceVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReferenceVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetReferenceT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReferenceT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetReferenceArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutReferenceArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatusVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatusVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetMxStatusT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatusT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetMxStatusArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatusArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataTypeVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataTypeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetMxDataTypeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataTypeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetMxDataTypeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataTypeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructVTQ([In] short id, out short quality, out _FILETIME timeStamp, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetCustomStructT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + _FILETIME GetCustomStructArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeSupportedProperties([In] short attrId, out int SupportedProperties); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDefaultTimestamp(out _FILETIME timeStamp); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite5.cs new file mode 100644 index 0000000..074fa7c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite5.cs @@ -0,0 +1,650 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F2163BB1-3AE9-4B81-8C32-6ED9AA609F7E")] +[ComConversionLoss] +public interface IPrimitiveRuntimeSite5 : IPrimitiveRuntimeSite3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeValues(out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeValuesById([In] short primitiveId, out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifySubscriptionChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifyCheckpointChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveAttributeSite([In] short primitiveId, [MarshalAs(UnmanagedType.Interface)] out IPrimitiveRuntimeSite2 ppSite); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CheckpointAttribute([In] short attributeId, [In] bool checkpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetType([In] short attributeId, out MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetLockStatus([In] short attributeId, out MxPropertyLockedEnum pLockStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetNumElements([In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetNumElements([In] short attributeId, [In] int numelements); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBoolean([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBoolean([In] short id, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanVQ([In] short id, [In] short quality, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayItem([In] short id, [In] int index, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetBooleanQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetBooleanArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetInteger([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutInteger([In] short id, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerVQ([In] short id, [In] short quality, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayItem([In] short id, [In] int index, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetIntegerQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetIntegerArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloat([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloat([In] short id, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatVQ([In] short id, [In] short quality, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayItem([In] short id, [In] int index, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetFloatQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetFloatArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDouble([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDouble([In] short id, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleVQ([In] short id, [In] short quality, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayItem([In] short id, [In] int index, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetDoubleQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetDoubleArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTime([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTime([In] short id, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeVQ([In] short id, [In] short quality, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayItem([In] short id, [In] int index, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetElapsedTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetElapsedTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetString([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutString([In] short id, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetStringQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetStringArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTime([In] short id, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTime([In] short id, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeVQ([In] short id, out short quality, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeVQ([In] short id, [In] short quality, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeArrayItem([In] short id, [In] int index, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayItem([In] short id, [In] int index, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnum([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnum([In] short id, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumVQ([In] short id, [In] short quality, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayItem([In] short id, [In] int index, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReference([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReference([In] short id, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetReferenceQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetReferenceArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatus([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatus([In] short id, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusVQ([In] short id, [In] short quality, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayItem([In] short id, [In] int index, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxStatusQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxStatusArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataType([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataType([In] short id, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeVQ([In] short id, [In] short quality, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayItem([In] short id, [In] int index, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxDataTypeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxDataTypeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStruct([In] short id, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStruct([In] short id, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructVQ([In] short id, out short quality, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructVQ([In] short id, [In] short quality, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructArrayItem([In] short id, [In] int index, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayItem([In] short id, [In] int index, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomStructQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomStructArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifyBROProxyOfAttributeChangeEx([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out int writeToAttribute); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetBooleanT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetBooleanArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetIntegerT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetIntegerArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetFloatT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetFloatArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetDoubleT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetDoubleArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetElapsedTimeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetElapsedTimeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetStringT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetStringArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeVTQ([In] short id, out short quality, out _FILETIME timeStamp, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetTimeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetTimeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomEnumT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomEnumArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetReferenceT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetReferenceArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxStatusT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxStatusArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxDataTypeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxDataTypeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructVTQ([In] short id, out short quality, out _FILETIME timeStamp, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomStructT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomStructArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeSupportedProperties([In] short attrId, out int SupportedProperties); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetDefaultTimestamp(out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetHasBuffer([In] short attributeId, out bool hasBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetBuffer([In] short attributeId, out int length, [Out] IntPtr buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBuffer([In] short attributeId, [In] int length, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeBuffers([In] short primitiveId, [Out] IntPtr buffers); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAttributeBufferById([In] short primitiveId, [In] short attributeId, [Out] IntPtr buffer); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite6.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite6.cs new file mode 100644 index 0000000..a1618a1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IPrimitiveRuntimeSite6.cs @@ -0,0 +1,652 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("5DE3F00B-598F-4783-8607-92BC66390D99")] +public interface IPrimitiveRuntimeSite6 : IPrimitiveRuntimeSite5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeValues(out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeValuesById([In] short primitiveId, out int count, [Out] IntPtr values); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifySubscriptionChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifyCheckpointChange([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPrimitiveAttributeSite([In] short primitiveId, [MarshalAs(UnmanagedType.Interface)] out IPrimitiveRuntimeSite2 ppSite); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CheckpointAttribute([In] short attributeId, [In] bool checkpoint); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetType([In] short attributeId, out MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetLockStatus([In] short attributeId, out MxPropertyLockedEnum pLockStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetNumElements([In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetNumElements([In] short attributeId, [In] int numelements); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBoolean([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBoolean([In] short id, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanVQ([In] short id, [In] short quality, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayItem([In] short id, [In] int index, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetBooleanQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetBooleanArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetInteger([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutInteger([In] short id, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerVQ([In] short id, [In] short quality, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayItem([In] short id, [In] int index, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetIntegerQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetIntegerArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloat([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloat([In] short id, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatVQ([In] short id, [In] short quality, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayItem([In] short id, [In] int index, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetFloatQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetFloatArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDouble([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDouble([In] short id, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleVQ([In] short id, [In] short quality, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayItem([In] short id, [In] int index, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetDoubleQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetDoubleArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTime([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTime([In] short id, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeVQ([In] short id, [In] short quality, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayItem([In] short id, [In] int index, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetElapsedTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetElapsedTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetString([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutString([In] short id, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetStringQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetStringArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTime([In] short id, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTime([In] short id, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeVQ([In] short id, out short quality, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeVQ([In] short id, [In] short quality, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeArrayItem([In] short id, [In] int index, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayItem([In] short id, [In] int index, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetTimeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetTimeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnum([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnum([In] short id, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumVQ([In] short id, [In] short quality, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayItem([In] short id, [In] int index, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReference([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReference([In] short id, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceVQ([In] short id, [In] short quality, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayItem([In] short id, [In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetReferenceQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetReferenceArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatus([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatus([In] short id, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusVQ([In] short id, [In] short quality, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayItem([In] short id, [In] int index, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxStatusQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxStatusArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataType([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataType([In] short id, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeVQ([In] short id, out short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeVQ([In] short id, [In] short quality, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeArrayItem([In] short id, [In] int index); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayItem([In] short id, [In] int index, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxDataTypeQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetMxDataTypeArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStruct([In] short id, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStruct([In] short id, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructVQ([In] short id, out short quality, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructVQ([In] short id, [In] short quality, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructArrayItem([In] short id, [In] int index, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayItem([In] short id, [In] int index, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructQ([In] short id, [In] short quality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomStructQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomStructArrayQ([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void NotifyBROProxyOfAttributeChangeEx([In] ref PrimitiveAttributeTableEntry tableEntry, [In] short primitiveId, [In] short attributeId, [In] short propertyId, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out int writeToAttribute); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetBooleanVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] bool value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetBooleanT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetBooleanArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBooleanArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetIntegerVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] int value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetIntegerT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetIntegerArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutIntegerArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new float GetFloatVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] float value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetFloatT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetFloatArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutFloatArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new double GetDoubleVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] double value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetDoubleT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetDoubleArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutDoubleArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VB_LARGE_INTEGER GetElapsedTimeVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] ref VB_LARGE_INTEGER value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetElapsedTimeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetElapsedTimeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutElapsedTimeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetStringVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.LPWStr)] string value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetStringT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetStringArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutStringArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetTimeVTQ([In] short id, out short quality, out _FILETIME timeStamp, out VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBFILETIME value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetTimeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetTimeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutTimeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new short GetCustomEnumVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] short value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomEnumT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomEnumArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomEnumArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxReference GetReferenceVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.Interface)] MxReference value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetReferenceT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetReferenceArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutReferenceArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxStatus GetMxStatusVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] MxStatus value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxStatusT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxStatusArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxStatusArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new MxDataType GetMxDataTypeVTQ([In] short id, out short quality, out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] MxDataType value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxDataTypeT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetMxDataTypeArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMxDataTypeArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCustomStructVTQ([In] short id, out short quality, out _FILETIME timeStamp, out int guid, out int length, [Out] IntPtr value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructVTQ([In] short id, [In] short quality, [In] _FILETIME timeStamp, [In] int guid, [In] int length, [In] ref byte value); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomStructT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new _FILETIME GetCustomStructArrayT([In] short id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutCustomStructArrayT([In] short id, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeSupportedProperties([In] short attrId, out int SupportedProperties); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetDefaultTimestamp(out _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetHasBuffer([In] short attributeId, out bool hasBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetBuffer([In] short attributeId, out int length, [Out] IntPtr buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutBuffer([In] short attributeId, [In] int length, [In] ref byte buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeBuffers([In] short primitiveId, [Out] IntPtr buffers); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAttributeBufferById([In] short primitiveId, [In] short attributeId, [Out] IntPtr buffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyRetentiveChange([In] short primitiveId, [In] short attributeId, [In] short propertyId, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IProcessLocale.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IProcessLocale.cs new file mode 100644 index 0000000..5f79528 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IProcessLocale.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("8CF8B900-8D26-11D4-A9A3-0060976445E9")] +public interface IProcessLocale +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetProcessLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetProcessLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetDefaultLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetDefaultLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetThreadLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetThreadLocale(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IProcessStatusCallback.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IProcessStatusCallback.cs new file mode 100644 index 0000000..52c6231 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IProcessStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("DDF780BD-99C9-40D3-B35C-57083D3ED996")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IProcessStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyProcessStatus([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrProcessIdentity, [In] int lPrivateData, [In] tagPlatformProcessStatus lProcessStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyMessageSink.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyMessageSink.cs new file mode 100644 index 0000000..fecece0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyMessageSink.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("83613B26-1D36-4C96-9DDB-68A806AD47BB")] +public interface IRedundancyMessageSink +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void MessageStatusUpdate([In] int lEngineId, [In] int lType, [In] int lReference, [In][ComAliasName("Interop.Lmx.RedundancyMsgStatus")] RedundancyMsgStatus eStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyNotify.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyNotify.cs new file mode 100644 index 0000000..8cd7a32 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyNotify.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("612B0410-BAA9-4B0A-A097-96D6B0E0108D")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IRedundancyNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyRedundancyStatusChange([In] int lPlatformId, [In] int lEngineId, [In] int lPartnerPlatformId, [In] int lPartnerEngineId, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In] tagRedundancyIdentity eIdentity, [In] tagRedundancyStatus eStatus, [In] tagRedundancySubStatus eSubStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyRedundancyEvent([In] int lEngineId, [In] int lPartnerPlatformId, [In] int lPartnerEngineId, [In] tagRedundancyEvent eEvent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyRedundancyOperation([In] int lEngineId, [In] tagRedundancyOperation eOperation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyData([In] int lEngineId, [In] int lType, [In] int lReference, [In] int lLength, [In] ref byte pBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyDataAck([In] int lEngineId, [In] int lType, [In] int lReference, [In] int lAckCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyEngineSwitchingToActive([In] int engineThatWasActive, [In] int platformOfEngineThatWasActive, [In] int newActiveEngineId, [In] int newActiveEnginePlatformId, [In] int forceFailoverMaxTimeAllowed); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyService.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyService.cs new file mode 100644 index 0000000..346f152 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyService.cs @@ -0,0 +1,92 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("F31F0CC4-3085-4183-BF28-8FA0659F01F2")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IRedundancyService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] Guid guidGalaxyId, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPrimaryAddress, [In] int lPrimaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrSecondaryAddress, [In] int lSecondaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void TransferData([In] int lEngineId, [In] int lType, [In] int lReference, [In] ref byte pBuffer, [In] int lLength, [In] int lTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateSubscriberInfo([In] int lEngineId, [In] int lToAddCount, [In] ref tagEngineSubscriberInformation pToAdd, [In] int lToDeleteCount, [In] ref tagEngineSubscriberInformation pToDelete); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterRedundancyNotification([In] int lEngineId, [In][MarshalAs(UnmanagedType.Interface)] IRedundancyNotify pNotify, out int pCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterRedundancyNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterRedundancyStatusNotification([In] int lTargetPlatformId, [In] int lTargetEngineId, [In][MarshalAs(UnmanagedType.Interface)] IRedundancyNotify pNotify, out int pCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterRedundancyStatusNotification([In] int lTargetPlatformId, [In] int lTargetEngineId, [In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterRedundantEngine([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatRateForRedundantPartner([In] int lEngineId, [In] int lTicks, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatRate([In] int lEngineId, [In] int lTicks, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetIndirectDetectTimeoutForRedundantPartner([In] int lEngineId, [In] int lTimeOut, [In] int bEnableStandbyDetect); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetIndirectDetectTimeout([In] int lEngineId, [In] int lTimeOut, [In] int bEnableStandbyDetect); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateRedundancyStatus([In] int lEngineId, [In] tagRedundancyStatus eFailoverStatus, [In] tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRedundancyStatus([In] int lPlatformId, [In] int lEngineId, out tagRedundancyStatus eFailoverStatus, out tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRedundancyStatusBlock([In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, out tagRedundancyStatus eFailoverStatus, out tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetEngineRedundancyInfo([In] int lPlatformId, [In] int lEngineId, out tagEngineRedundancyInformation pFailoverEngineInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetHeartbeatConsecMissCount([In] int lEngineId, [In] tagRedundancyChannel eChannel, out int plTotalHeartbeatMissed, out int plConsecHeartbeatMissed); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateRemotePlatform([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPrimaryAddress, [In] int lPrimaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrFailoverAddress, [In] int lFailoverPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveRemotePlatform([In] int lPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterRedundantEngine([In] int lEngineId, [In] int lPartnerPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string partnerPMCAddress, [In] int partnerPMCPort, [In][MarshalAs(UnmanagedType.BStr)] string partnerRMCAddress, [In] int partnerRMCPort, [In] int timeToDiscoverPartner, [In][MarshalAs(UnmanagedType.BStr)] string engineName, [In] tagRedundancyIdentity eFailoverConfig); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdatePartnerRMCAddress([In] int lEngineId, [In][MarshalAs(UnmanagedType.BStr)] string partnerRMCAddress, [In] int partnerRMCPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UpdateTimeToDiscoverRedundantPartner([In] int engineId, [In] int timeToDiscoverPartner); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetMaxTimeForStandbyToBecomeActive([In] int engineId, [In] int timeToBecomeActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerRedundancyStatus([In] int engineId, out tagRedundancyStatus status, out tagRedundancySubStatus subStatus, out tagRedundancyStatus partnerStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerRMCAddress([In] int engineId, [MarshalAs(UnmanagedType.BStr)] out string partnerRMCAddress, out int partnerRMCPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Dump([In] int dumpmsg, [In][MarshalAs(UnmanagedType.Struct)] ref object parm1, [In][MarshalAs(UnmanagedType.Struct)] ref object parm2); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRedundancyStatusBlockEx([In] tagRedundancyChannel lMessageChannelId, [In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, out tagRedundancyStatus eStatus, out int partnerPlatform, out int partnerEngine, [ComAliasName("Interop.Lmx.eRedundancyStatusBlockExResult")] out eRedundancyStatusBlockExResult result); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyService2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyService2.cs new file mode 100644 index 0000000..80fb8e6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IRedundancyService2.cs @@ -0,0 +1,95 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("5C7C1C94-09C1-4E0A-9DCE-ECA53FBCDE04")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IRedundancyService2 : IRedundancyService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] Guid guidGalaxyId, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPrimaryAddress, [In] int lPrimaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrSecondaryAddress, [In] int lSecondaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void TransferData([In] int lEngineId, [In] int lType, [In] int lReference, [In] ref byte pBuffer, [In] int lLength, [In] int lTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateSubscriberInfo([In] int lEngineId, [In] int lToAddCount, [In] ref tagEngineSubscriberInformation pToAdd, [In] int lToDeleteCount, [In] ref tagEngineSubscriberInformation pToDelete); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterRedundancyNotification([In] int lEngineId, [In][MarshalAs(UnmanagedType.Interface)] IRedundancyNotify pNotify, out int pCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterRedundancyNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterRedundancyStatusNotification([In] int lTargetPlatformId, [In] int lTargetEngineId, [In][MarshalAs(UnmanagedType.Interface)] IRedundancyNotify pNotify, out int pCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterRedundancyStatusNotification([In] int lTargetPlatformId, [In] int lTargetEngineId, [In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterRedundantEngine([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetHeartbeatRateForRedundantPartner([In] int lEngineId, [In] int lTicks, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetHeartbeatRate([In] int lEngineId, [In] int lTicks, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetIndirectDetectTimeoutForRedundantPartner([In] int lEngineId, [In] int lTimeOut, [In] int bEnableStandbyDetect); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetIndirectDetectTimeout([In] int lEngineId, [In] int lTimeOut, [In] int bEnableStandbyDetect); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateRedundancyStatus([In] int lEngineId, [In] tagRedundancyStatus eFailoverStatus, [In] tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRedundancyStatus([In] int lPlatformId, [In] int lEngineId, out tagRedundancyStatus eFailoverStatus, out tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRedundancyStatusBlock([In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, out tagRedundancyStatus eFailoverStatus, out tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineRedundancyInfo([In] int lPlatformId, [In] int lEngineId, out tagEngineRedundancyInformation pFailoverEngineInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetHeartbeatConsecMissCount([In] int lEngineId, [In] tagRedundancyChannel eChannel, out int plTotalHeartbeatMissed, out int plConsecHeartbeatMissed); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateRemotePlatform([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPrimaryAddress, [In] int lPrimaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrFailoverAddress, [In] int lFailoverPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoveRemotePlatform([In] int lPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterRedundantEngine([In] int lEngineId, [In] int lPartnerPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string partnerPMCAddress, [In] int partnerPMCPort, [In][MarshalAs(UnmanagedType.BStr)] string partnerRMCAddress, [In] int partnerRMCPort, [In] int timeToDiscoverPartner, [In][MarshalAs(UnmanagedType.BStr)] string engineName, [In] tagRedundancyIdentity eFailoverConfig); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdatePartnerRMCAddress([In] int lEngineId, [In][MarshalAs(UnmanagedType.BStr)] string partnerRMCAddress, [In] int partnerRMCPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UpdateTimeToDiscoverRedundantPartner([In] int engineId, [In] int timeToDiscoverPartner); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMaxTimeForStandbyToBecomeActive([In] int engineId, [In] int timeToBecomeActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPartnerRedundancyStatus([In] int engineId, out tagRedundancyStatus status, out tagRedundancySubStatus subStatus, out tagRedundancyStatus partnerStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPartnerRMCAddress([In] int engineId, [MarshalAs(UnmanagedType.BStr)] out string partnerRMCAddress, out int partnerRMCPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Dump([In] int dumpmsg, [In][MarshalAs(UnmanagedType.Struct)] ref object parm1, [In][MarshalAs(UnmanagedType.Struct)] ref object parm2); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRedundancyStatusBlockEx([In] tagRedundancyChannel lMessageChannelId, [In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, out tagRedundancyStatus eStatus, out int partnerPlatform, out int partnerEngine, [ComAliasName("Interop.Lmx.eRedundancyStatusBlockExResult")] out eRedundancyStatusBlockExResult result); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRedundancyStatusBlockEx2([In] tagRedundancyChannel eMessageChannel, [In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, [In] tagRedundancyChannel ePartnerStatusMessageChannel, out tagRedundancyStatus peStatus, out tagRedundancySubStatus peSubStatus, out tagRedundancyStatus pePartnerStatus, out tagRedundancySubStatus pePartnerSubStatus, out int plPartnerPlatform, out int plPartnerEngine, [ComAliasName("Interop.Lmx.eRedundancyStatusBlockExResult")] out eRedundancyStatusBlockExResult peResult); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IReferenceStringParser.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IReferenceStringParser.cs new file mode 100644 index 0000000..e2ce02a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IReferenceStringParser.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F2B877E3-1DBE-11D3-80AD-00104B5F96A7")] +public interface IReferenceStringParser +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ParseAutomationObjectHandle([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectNameProvider pAutomationObjectNameProvider, out bool isDynamic); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IScheduler.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IScheduler.cs new file mode 100644 index 0000000..5fc9f07 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IScheduler.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("C9B2ADCD-A086-488F-907D-1144176DADB2")] +public interface IScheduler +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In][MarshalAs(UnmanagedType.Interface)] WatchdogObject pWatchdog, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncManager); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Run([ComAliasName("Interop.Lmx.EngineExitStatus")] ref EngineExitStatus exitStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterAutomationObject([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int id, [In][MarshalAs(UnmanagedType.Interface)] CoBaseRuntimeObject pAutomationObject, [In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] int RelativeOrder); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnRegisterAutomationObject([In] int id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetScanPeriod([In] int ScanPeriod); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetScanState([In] int ObjectID, [In] bool ScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetObjectTimeStamp(out _FILETIME pFileTime, out short offset); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckpointObjects(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterSchedulerClient([In] uint callbackMask, [In][MarshalAs(UnmanagedType.Interface)] ISchedulerClient schedulerClient, out int cookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterSchedulerClient([In] int cookie); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISchedulerClient.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISchedulerClient.cs new file mode 100644 index 0000000..c3567c9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISchedulerClient.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("347CFCC1-0660-4384-9743-38AE9A8944F4")] +public interface ISchedulerClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartInitialObjectExecution(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ObjectExecutionComplete(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISecurityChecker.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISecurityChecker.cs new file mode 100644 index 0000000..90d598a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISecurityChecker.cs @@ -0,0 +1,53 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("1B690A6C-DBE6-4476-BA3F-FD00DF10BEC8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ISecurityChecker +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckOperationPermission([In] VBGUID userId, [In][MarshalAs(UnmanagedType.LPWStr)] string securityGroup, [In] MxSecurityClassification attributeClassification, out EPERMISSION_ACCESS pPermission); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckPermissionForUser([In] VBGUID userId, [In] ESECURITY_PERMISSION ePerm, out EPERMISSION_ACCESS pPermission); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsValidSecurityGroup([In][MarshalAs(UnmanagedType.LPWStr)] string securityGroup, out bool bValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsValidRole([In][MarshalAs(UnmanagedType.LPWStr)] string role, out bool bValidRole); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeFromStr([In][MarshalAs(UnmanagedType.BStr)] string bstrSecuritySchema); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckPermissionForRoles([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueRoles, [In] ESECURITY_PERMISSION ePerm, out EPERMISSION_ACCESS pPermission); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetListOfSecurityGroups([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsSecurityEnabled(out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetUserNameInfo([In] ref VBGUID userGuid, [MarshalAs(UnmanagedType.BStr)] out string pUserLoginName, [MarshalAs(UnmanagedType.BStr)] out string pUserFullName, [MarshalAs(UnmanagedType.BStr)] out string pUserDomainName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAuthenticationMode(out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CheckAlarmAckPermission([In] VBGUID userId, [In][MarshalAs(UnmanagedType.LPWStr)] string securityGroup, [In] ESECURITY_PERMISSION ePerm, out EPERMISSION_ACCESS pPermission); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISecurityToken.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISecurityToken.cs new file mode 100644 index 0000000..57664d4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISecurityToken.cs @@ -0,0 +1,26 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("189476D6-63C5-4950-B293-AEEE1A54D906")] +public interface ISecurityToken +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetUserID([In][Out] ref VBGUID userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetUserName([In][Out][MarshalAs(UnmanagedType.BStr)] ref string bstrUserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool QueryGroupMembership([In][MarshalAs(UnmanagedType.BStr)] string bstrGroupName, out int plStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetAccessToken(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetUserFullName(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISequentialStream.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISequentialStream.cs new file mode 100644 index 0000000..eb60db9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ISequentialStream.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("0C733A30-2A1C-11CE-ADE5-00AA0044773D")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatus.cs new file mode 100644 index 0000000..1634fd2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatus.cs @@ -0,0 +1,16 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +[Guid("4A4BC20F-0955-4C55-967E-83F18D857ED3")] +public struct IStatus +{ + public short success; + + public IStatusCategory category; + + public IStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusCategory.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusCategory.cs new file mode 100644 index 0000000..fc7062b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusCategory.cs @@ -0,0 +1,18 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("21C12A06-B2D2-4614-B4C7-C6F9DB1F3D6D")] +public enum IStatusCategory +{ + IStatusCategoryUnknown = -1, + ICategoryOk, + ICategoryPending, + ICategoryWarning, + ICategoryCommunicationError, + ICategoryConfigurationError, + ICategoryOperationalError, + ICategorySecurityError, + ICategorySoftwareError, + ICategoryOtherError +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusNotify.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusNotify.cs new file mode 100644 index 0000000..756076d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusNotify.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("ACA1A4A8-9F53-499D-962A-B8FC76D5A7D8")] +public interface IStatusNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyStateChanged([In] ref tagEngineStatusInfo pEngineStatusInfo); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusSource.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusSource.cs new file mode 100644 index 0000000..1e9101e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStatusSource.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("D2FAC471-1A4C-4181-9400-85116EB954DD")] +public enum IStatusSource +{ + ISourceUnknown = -1, + ISourceRequestingLmx, + ISourceRespondingLmx, + ISourceRequestingNmx, + ISourceRespondingNmx, + ISourceRequestingAutomationObject, + ISourceRespondingAutomationObject +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStream.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStream.cs new file mode 100644 index 0000000..61af0de --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IStream.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("0000000C-0000-0000-C000-000000000046")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IStream : ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteSeek([In] _LARGE_INTEGER dlibMove, [In] uint dwOrigin, out _ULARGE_INTEGER plibNewPosition); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSize([In] _ULARGE_INTEGER libNewSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteCopyTo([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] _ULARGE_INTEGER cb, out _ULARGE_INTEGER pcbRead, out _ULARGE_INTEGER pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Commit([In] uint grfCommitFlags); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Revert(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void LockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnlockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Stat(out tagSTATSTG pstatstg, [In] uint grfStatFlag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out IStream ppstm); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator.cs new file mode 100644 index 0000000..911d5ff --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator.cs @@ -0,0 +1,39 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("92FF7FD3-A65F-431C-86AA-7BB502FF0D2C")] +public interface IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator2.cs new file mode 100644 index 0000000..8fcf676 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator2.cs @@ -0,0 +1,43 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("D78A902B-9609-49F6-8760-6A2AEA6CA274")] +public interface IUserAuthenticator2 : IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator3.cs new file mode 100644 index 0000000..1df8f2d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator3.cs @@ -0,0 +1,47 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("73ECBF0E-8A67-4878-8DED-934F6DBD943B")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator3 : IUserAuthenticator2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator4.cs new file mode 100644 index 0000000..46d4027 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator4.cs @@ -0,0 +1,50 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("E72606A1-3DF5-4D7E-BD66-0AADA70E98D8")] +public interface IUserAuthenticator4 : IUserAuthenticator3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator5.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator5.cs new file mode 100644 index 0000000..98ae9e5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator5.cs @@ -0,0 +1,54 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("9F2DFE15-108F-44AF-A40E-04BBD85FE755")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator5 : IUserAuthenticator4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator6.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator6.cs new file mode 100644 index 0000000..b04bbb0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator6.cs @@ -0,0 +1,61 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("430CD0D2-5C05-4621-A286-AECEBFABABEC")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator6 : IUserAuthenticator5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator7.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator7.cs new file mode 100644 index 0000000..557f2b1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IUserAuthenticator7.cs @@ -0,0 +1,64 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("0759D857-2EC6-481B-B497-117A6A4F7204")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator7 : IUserAuthenticator6 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + new byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsSecurityForGalaxyEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, out bool bEnable); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IVersionInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IVersionInformation.cs new file mode 100644 index 0000000..919cafa --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IVersionInformation.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("5C1F679B-2F14-4426-A1A0-B74B73BD8EF4")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IVersionInformation +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMaintenanceBuildComponentVersion(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IVersionInformation2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IVersionInformation2.cs new file mode 100644 index 0000000..4b9a6fa --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IVersionInformation2.cs @@ -0,0 +1,39 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B6EEB7BF-AE82-4373-A715-32ADF63E7076")] +public interface IVersionInformation2 : IVersionInformation +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMaintenanceBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetBuildNumsAndComponentVers(out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetFileVersionNumbers([In] int platformId, [In] MxFileLocationEnum fileLocation, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAllFileVersionNumbers([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int lVersionCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildComponentVersion, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildComponentVersion); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IWatchdog.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IWatchdog.cs new file mode 100644 index 0000000..eef2d7d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/IWatchdog.cs @@ -0,0 +1,37 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4F8CED36-2A43-11D3-87E0-00A0C982C01C")] +public interface IWatchdog +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RequestWatchdogMonitor([In] int lmsStartupTimeout = 30000, [In] int lmsShutdownTimeout = 30000, [In] int lmsWatchdogTime = 60000, [In] int lWatchdogFault = 3, [In] tagWatchdogTimeoutAction lWatchdogAction = tagWatchdogTimeoutAction.TIMEOUT_NO_ACTION); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartupCompleted(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetStartupTimeout([In] int lmsPeriod); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetShutdownTimeout([In] int lmsPeriod); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetShutdownEvent([In] int lmsShutdownTimeout, [MarshalAs(UnmanagedType.BStr)] out string pbstrEventName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetWatchdogTime([In] int lmsWaitTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetWatchdogFaults([In] uint dwFaults); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetWatchdogAction([In] tagWatchdogTimeoutAction action); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetWatchdog(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/InternationalizedString.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/InternationalizedString.cs new file mode 100644 index 0000000..4a97f65 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/InternationalizedString.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("43529BD9-3860-4343-BC7E-697B9F8B344D")] +public struct InternationalizedString +{ + public int locale; + + [MarshalAs(UnmanagedType.BStr)] + public string internationalizedStr; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemActiveResponse.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemActiveResponse.cs new file mode 100644 index 0000000..7412e78 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemActiveResponse.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("E671ED95-A301-4761-97F9-103D15CBCDF7")] +public struct ItemActiveResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int status; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemDataUpdate2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemDataUpdate2.cs new file mode 100644 index 0000000..3d991cf --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemDataUpdate2.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("FF261F10-8BF9-4CEE-85D3-11D3D530EF9E")] +public struct ItemDataUpdate2 +{ + public ulong ItemId; + + public uint StatusCode; + + public uint HighDateTime; + + public uint LowDateTime; + + public uint quality; + + public IDataVariant value; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemRegistrationResponse.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemRegistrationResponse.cs new file mode 100644 index 0000000..80dae7d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemRegistrationResponse.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("441AC761-08A3-4B41-804C-917C60D0C9CF")] +public struct ItemRegistrationResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int status; + + public int WriteCapability; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemSubscriptionResponse.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemSubscriptionResponse.cs new file mode 100644 index 0000000..358ead0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemSubscriptionResponse.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("BD6BACE0-9002-44C5-8B7A-8119751F160A")] +public struct ItemSubscriptionResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int status; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemUnregisterResponse.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemUnregisterResponse.cs new file mode 100644 index 0000000..3c9ec90 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemUnregisterResponse.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("B960F7E2-A583-49D3-8B15-DB3FE37F718B")] +public struct ItemUnregisterResponse +{ + public ulong ItemId; + + [MarshalAs(UnmanagedType.Error)] + public int status; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemWriteResponse.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemWriteResponse.cs new file mode 100644 index 0000000..cc88ff2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ItemWriteResponse.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("5799A991-D9C1-4513-BB6C-D2D91E65F0E5")] +public struct ItemWriteResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int status; + + public uint category; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LMXProxyServer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LMXProxyServer.cs new file mode 100644 index 0000000..48b4ad0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LMXProxyServer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +[CoClass(typeof(LMXProxyServerClass))] +public interface LMXProxyServer : ILMXProxyServer5, _ILMXProxyServerEvents_Event +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LMXProxyServerClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LMXProxyServerClass.cs new file mode 100644 index 0000000..ae94784 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LMXProxyServerClass.cs @@ -0,0 +1,92 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC")] +[ClassInterface(ClassInterfaceType.None)] +[ComSourceInterfaces("Interop.Lmx._ILMXProxyServerEvents\0Interop.Lmx._ILMXProxyServerEvents2\0\0")] +public class LMXProxyServerClass : ILMXProxyServer5, LMXProxyServer, _ILMXProxyServerEvents_Event, _ILMXProxyServerEvents2_Event +{ + public virtual extern event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + public virtual extern event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + public virtual extern event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; + + public virtual extern event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + public virtual extern int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + public virtual extern void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + public virtual extern int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + public virtual extern void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + public virtual extern void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + public virtual extern void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + public virtual extern void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + public virtual extern void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + public virtual extern int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + public virtual extern int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + public virtual extern int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + public virtual extern void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + public virtual extern void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + public virtual extern void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + public virtual extern void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + public virtual extern void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + public virtual extern int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + public virtual extern void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoadCheckpointResult.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoadCheckpointResult.cs new file mode 100644 index 0000000..1fcc6c2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoadCheckpointResult.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct LoadCheckpointResult +{ + public int ObjectID; + + [ComAliasName("Interop.Lmx.eLoadCheckpointResult")] + public eLoadCheckpointResult result; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoggerSupport.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoggerSupport.cs new file mode 100644 index 0000000..a26bc24 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoggerSupport.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(LoggerSupportClass))] +[Guid("E9664A24-4940-469C-9C6C-3C827C4010F8")] +public interface LoggerSupport : ILoggerSupport +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoggerSupportClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoggerSupportClass.cs new file mode 100644 index 0000000..34d8c23 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/LoggerSupportClass.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("AB238B38-1145-42B2-90E9-C7A4B0A5145B")] +[ClassInterface(ClassInterfaceType.None)] +public class LoggerSupportClass : ILoggerSupport, LoggerSupport +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartLogger(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MXSTATUS_PROXY.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MXSTATUS_PROXY.cs new file mode 100644 index 0000000..d399d3f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MXSTATUS_PROXY.cs @@ -0,0 +1,16 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("A162D9E4-9019-42F3-A087-79264007E542")] +public struct MXSTATUS_PROXY +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAccessRights.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAccessRights.cs new file mode 100644 index 0000000..4a07814 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAccessRights.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum MxAccessRights +{ + MxAccessNone, + MxAccessWrite +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAttributeCategory.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAttributeCategory.cs new file mode 100644 index 0000000..faf5f18 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAttributeCategory.cs @@ -0,0 +1,26 @@ +namespace Interop.Lmx; + +public enum MxAttributeCategory +{ + MxCategoryUndefined = -1, + MxCategoryPackageOnly, + MxCategoryPackageOnly_Lockable, + MxCategoryCalculated, + MxCategoryCalculatedRetentive, + MxCategoryWriteable_U, + MxCategoryWriteable_S, + MxCategoryWriteable_US, + MxCategoryWriteable_UC, + MxCategoryWriteable_USC, + MxCategoryWriteable_UC_Lockable, + MxCategoryWriteable_USC_Lockable, + MxCategoryWriteable_C_Lockable, + MxCategory_SystemSetsOnly, + MxCategory_SystemInternal, + MxCategory_SystemWriteable, + MxCategory_Constant, + MxCategory_SystemInternal_Browsable, + MxCategory_CalculatedPackage, + MxCategory_DeleteAfterStartup, + MxAttributeCategoryEND +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAttributeHandle.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAttributeHandle.cs new file mode 100644 index 0000000..07c772f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAttributeHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAttributeHandle +{ + public short primitiveId; + + public short attributeId; + + public short propertyId; + + public ushort signature; + + public short index1; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAutomationObjectHandle.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAutomationObjectHandle.cs new file mode 100644 index 0000000..a0b3a55 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxAutomationObjectHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAutomationObjectHandle +{ + public byte galaxy; + + public ushort platform; + + public ushort engine; + + public ushort @object; + + public ushort signature; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxConnection.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxConnection.cs new file mode 100644 index 0000000..a0eaf04 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxConnection.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(MxConnectionClass))] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +public interface MxConnection : IMxSupervisoryConnection +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxConnectionClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxConnectionClass.cs new file mode 100644 index 0000000..6108aa4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxConnectionClass.cs @@ -0,0 +1,583 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("F2B877E7-1DBE-11D3-80AD-00104B5F96A7")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class MxConnectionClass : IMxSupervisoryConnection, MxConnection, IMxSupervisoryConnection3, IMxUserConnection, IMxUserConnection2, IMxUserConnection3, IMxUserConnection4, IMxUserConnection5, IMxUserConnection6, IMxSystemConnection, IMxSystemConnection2, IMxSystemConnection3, IMxBindingService, IMxBindingService2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSupervisoryConnection3_SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSupervisoryConnection3_SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection2_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection2_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection3_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection3_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection3_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection4_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection4_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection4_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection5_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection6_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool Subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection2_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool Subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection2_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection3_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool Subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection3_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetResponse([In] int CallbackID, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short quality, [In] _FILETIME timeStamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short quality, [In] _FILETIME timeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxDataType.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxDataType.cs new file mode 100644 index 0000000..47ff9b5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxDataType.cs @@ -0,0 +1,24 @@ +namespace Interop.Lmx; + +public enum MxDataType +{ + MxDataTypeUnknown = -1, + MxNoData, + MxBoolean, + MxInteger, + MxFloat, + MxDouble, + MxString, + MxTime, + MxElapsedTime, + MxReferenceType, + MxStatusType, + MxDataTypeEnum, + MxSecurityClassificationEnum, + MxDataQualityType, + MxQualifiedEnum, + MxQualifiedStruct, + MxInternationalizedString, + MxBigString, + MxDataTypeEND +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxFileLocationEnum.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxFileLocationEnum.cs new file mode 100644 index 0000000..fab41a9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxFileLocationEnum.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum MxFileLocationEnum +{ + MxInCommonFolder, + MxInBinFolder, + MxInWindowsGAC +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxHandle.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxHandle.cs new file mode 100644 index 0000000..c4d912a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxHandle.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxHandle +{ + public MxAutomationObjectHandle @object; + + public MxAttributeHandle attribute; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxOperationContext.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxOperationContext.cs new file mode 100644 index 0000000..fd494ca --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxOperationContext.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum MxOperationContext +{ + MxMessageExchange, + MxMessageExchangeClient +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxPropertyLockedEnum.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxPropertyLockedEnum.cs new file mode 100644 index 0000000..ac902ac --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxPropertyLockedEnum.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum MxPropertyLockedEnum +{ + MxUndefinedLockedStatus = -1, + MxUnLocked, + MxLockedInMe, + MxLockedInParent, + MxPropertyLockedEnumEND +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxRedundantEngineHandle.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxRedundantEngineHandle.cs new file mode 100644 index 0000000..81437b3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxRedundantEngineHandle.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxRedundantEngineHandle +{ + public ushort partnerPlatformId; + + public ushort partnerEngineId; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxReference.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxReference.cs new file mode 100644 index 0000000..e6823d4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxReference.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(MxReferenceClass))] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +public interface MxReference : IMxReference +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxReferenceClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxReferenceClass.cs new file mode 100644 index 0000000..1dddd87 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxReferenceClass.cs @@ -0,0 +1,93 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("6C449378-EE5F-428C-BB95-01AE4573C742")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class MxReferenceClass : IMxReference, MxReference +{ + [DispId(1)] + public virtual extern string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + public virtual extern string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + public virtual extern string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + public virtual extern MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + public virtual extern MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + public virtual extern string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxResolutionStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxResolutionStatus.cs new file mode 100644 index 0000000..2368e4b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxResolutionStatus.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum MxResolutionStatus +{ + MxReferenceUndefined = -1, + MxReferenceUnresolved, + MxReferenceResolved, + MxReferenceAttributeNotPresent +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxResultCode.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxResultCode.cs new file mode 100644 index 0000000..bc254fc --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxResultCode.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("1FDA8A16-06B0-413D-BEB3-C764BDCB352A")] +public struct MxResultCode +{ + public int lNamespaceId; + + [MarshalAs(UnmanagedType.Error)] + public int ERRORCODE; + + public uint ArchestrErrorCode; + + public uint ArchestrSpecific; + + public uint ArchestrStatus; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxScanState.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxScanState.cs new file mode 100644 index 0000000..5d5638e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxScanState.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum MxScanState +{ + MxOnScan, + MxOffScan +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxSecurityClassification.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxSecurityClassification.cs new file mode 100644 index 0000000..8464d6d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxSecurityClassification.cs @@ -0,0 +1,13 @@ +namespace Interop.Lmx; + +public enum MxSecurityClassification +{ + MxSecurityUndefined = -1, + MxSecurityFreeAccess, + MxSecurityOperate, + MxSecuritySecuredWrite, + MxSecurityVerifiedWrite, + MxSecurityTune, + MxSecurityConfigure, + MxSecurityViewOnly +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatus.cs new file mode 100644 index 0000000..e175159 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatus.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct MxStatus +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusCategory.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusCategory.cs new file mode 100644 index 0000000..ea12ccb --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusCategory.cs @@ -0,0 +1,15 @@ +namespace Interop.Lmx; + +public enum MxStatusCategory +{ + MxStatusCategoryUnknown = -1, + MxCategoryOk, + MxCategoryPending, + MxCategoryWarning, + MxCategoryCommunicationError, + MxCategoryConfigurationError, + MxCategoryOperationalError, + MxCategorySecurityError, + MxCategorySoftwareError, + MxCategoryOtherError +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusDetail.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusDetail.cs new file mode 100644 index 0000000..d261c71 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusDetail.cs @@ -0,0 +1,51 @@ +namespace Interop.Lmx; + +public enum MxStatusDetail +{ + MX_S_Success = 0, + MX_E_RequestTimedOut = 1, + MX_E_PlatformCommunicationError = 2, + MX_E_InvalidPlatformId = 3, + MX_E_InvalidEngineId = 4, + MX_E_EngineCommunicationError = 5, + MX_E_InvalidReference = 6, + MX_E_NoGalaxyRepository = 7, + MX_E_InvalidObjectId = 8, + MX_E_ObjectSignatureMismatch = 9, + MX_E_AttributeSignatureMismatch = 10, + MX_E_ResolvingAttribute = 11, + MX_E_ResolvingObject = 12, + MX_E_WrongDataType = 13, + MX_E_WrongNumberOfDimensions = 14, + MX_E_InvalidIndex = 15, + MX_E_IndexOutOfOrder = 16, + MX_E_DimensionDoesNotExist = 17, + MX_E_ConversionNotSupported = 18, + MX_E_UnableToConvertString = 19, + MX_E_Overflow = 20, + MX_E_NmxVersionMismatch = 21, + MX_E_NmxInvalidCommand = 22, + MX_E_LmxVersionMismatch = 23, + MX_E_LmxInvalidCommand = 24, + MX_E_GalaxyRepositoryBusy = 25, + MX_E_EngineOverloaded = 26, + MX_E_InvalidPrimitiveId = 1000, + MX_E_InvalidAttributeId = 1001, + MX_E_InvalidPropertyId = 1002, + MX_E_IndexOutOfRange = 1003, + MX_E_DataOutOfRange = 1004, + MX_E_IncorrectDataType = 1005, + MX_E_NotReadable = 1006, + MX_E_NotWriteable = 1007, + MX_E_WriteAccessDenied = 1008, + MX_E_UnknownError = 1009, + MX_E_ObjectInitializing = 1010, + MX_E_EngineInitializing = 1011, + MX_E_SecuredWrite = 1012, + MX_E_VerifiedWrite = 1013, + MX_E_NoAlarmAckPrivilege = 1014, + MX_E_AlarmAckedAlready = 1015, + MX_E_UserNotHavingAccessRights = 1016, + MX_E_VerifierNotHavingVerifyRights = 1017, + MX_E_AutomationObjectSpecificError = 8000 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusSource.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusSource.cs new file mode 100644 index 0000000..2852ca2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxStatusSource.cs @@ -0,0 +1,12 @@ +namespace Interop.Lmx; + +public enum MxStatusSource +{ + MxSourceUnknown = -1, + MxSourceRequestingLmx, + MxSourceRespondingLmx, + MxSourceRequestingNmx, + MxSourceRespondingNmx, + MxSourceRequestingAutomationObject, + MxSourceRespondingAutomationObject +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxValue.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxValue.cs new file mode 100644 index 0000000..38a65b0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxValue.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +[CoClass(typeof(MxValueClass))] +public interface MxValue : IMxValue +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxValueClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxValueClass.cs new file mode 100644 index 0000000..a901381 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/MxValueClass.cs @@ -0,0 +1,160 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("51D955B1-B086-11D2-BFB1-00104B5F96A7")] +[ClassInterface(ClassInterfaceType.None)] +[ComConversionLoss] +public class MxValueClass : IMxValue, MxValue +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] MxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Nmx.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Nmx.cs new file mode 100644 index 0000000..3efdae6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Nmx.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("84168012-B544-4217-A145-32819C607435")] +[CoClass(typeof(NmxClass))] +public interface Nmx : INmx4 +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxClass.cs new file mode 100644 index 0000000..d568ba4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxClass.cs @@ -0,0 +1,199 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("42DB0511-28BE-11D3-80C0-00104B5F96A7")] +[ComConversionLoss] +public class NmxClass : INmx4, Nmx, INmx, INmx2, INmx3, INmxHeartbeat, INmxSvcCallback, INmxSvcStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize2([In] int dwPlatformId, [In] int dwEngineId, [In] int dwVersion, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous2(out int pPlatformId, out int pEngineId, [In] int dwVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerVersion([In] int lGalaxyId, [In] int lPlatformId, [In] int lEngineId, out int plVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequestEx([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.Lmx.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetQueueInfo(out int numberMessagesQueued, out int queueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AddSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DataReceived([In] int dwBufferSize, [In] ref sbyte lpDataBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StatusReceived([In] int dwBufferSize, [In] ref sbyte lpStatusBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetSvcStatistics(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxStatistics.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxStatistics.cs new file mode 100644 index 0000000..464fb62 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxStatistics.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("4169B479-54BD-11D3-A9CC-00A0C9FB55A0")] +[CoClass(typeof(NmxStatisticsClass))] +public interface NmxStatistics : INmxStatistics +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxStatisticsClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxStatisticsClass.cs new file mode 100644 index 0000000..bf66f60 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/NmxStatisticsClass.cs @@ -0,0 +1,17 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[Guid("4169B47A-54BD-11D3-A9CC-00A0C9FB55A0")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class NmxStatisticsClass : INmxStatistics, NmxStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxStatistics(out tagNmxStatsInfo pNmxStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Reset(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/OPERATION.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/OPERATION.cs new file mode 100644 index 0000000..da03e5f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/OPERATION.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum OPERATION +{ + eSet, + eGet +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ObjectStateEnum.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ObjectStateEnum.cs new file mode 100644 index 0000000..58cf456 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ObjectStateEnum.cs @@ -0,0 +1,17 @@ +namespace Interop.Lmx; + +public enum ObjectStateEnum +{ + idxUninitialized = 0, + idxNormallyDeploying = 1, + idxRestoringFromCheckpoint = 2, + idxStarting = 4, + idxIdleOffScan = 8, + idxIdleOnScan = 16, + idxExecuting = 32, + idxInvocation = 48, + idxShuttingDown = 64, + idxShutdown = 128, + idxQuarantined = 256, + idxCachedOnStandby = 4096 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PimPF.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PimPF.cs new file mode 100644 index 0000000..2bfb0b0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PimPF.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("47AB0597-F440-4697-B9BB-C722963BF76B")] +[CoClass(typeof(PimPFClass))] +public interface PimPF : IPimPF +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PimPFClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PimPFClass.cs new file mode 100644 index 0000000..d92fd09 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PimPFClass.cs @@ -0,0 +1,154 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("A6E3B7C3-4A91-11D3-A9DB-00A0C9EC08A5")] +[ClassInterface(ClassInterfaceType.None)] +public class PimPFClass : IPimPF, PimPF, IFileRepository, IPimPF2, IVersionInformation, IPimPF3, IPimPF4, IPimPF5, IPimPF6, IPimPF7 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializePimOnCR(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPimRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szPimRepositoryMachineName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AddFilesToNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveFilesFromNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UpdateNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InstallToNode([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AddFolder([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFoldername); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveFolder([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFoldername); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetFolderPath([In][MarshalAs(UnmanagedType.LPWStr)] string szFoldername); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteMsi([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szMsiname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void zBadForDotNet_DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void zBadForDotNet_UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo[] pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo[] pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IFileRepository_SetPimRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szPimRepositoryMachineName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutVendorFileToRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID, [In][MarshalAs(UnmanagedType.Interface)] IStream pStrmFile); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteVendorFileFromRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetVendorFileFromRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID, [MarshalAs(UnmanagedType.Interface)] out IStream ppStrmFile); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RenameVendorFileInRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID, [In][MarshalAs(UnmanagedType.LPWStr)] string szOldFilename, [In][MarshalAs(UnmanagedType.LPWStr)] string szNewFilename); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RenameVendorname([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szOldVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szNewVendorname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetGroupIDPath([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendorname, [In][MarshalAs(UnmanagedType.LPWStr)] string szGroupID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetGalaxyPathForResource([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szResource); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutGalaxyFileToRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szFullFilename, [In][MarshalAs(UnmanagedType.Interface)] IStream pStrmFile); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetGalaxyFileFromRepository([In][MarshalAs(UnmanagedType.LPWStr)] string szFullFilename, [MarshalAs(UnmanagedType.Interface)] out IStream ppStrmFile); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CleanupPlatform(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void zBadForDotNet_DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void zBadForDotNet_UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeployRuntimeFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UndeployAllRuntimeFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeployRuntimeFilesTCP([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int TargetPort, [In] int FileInstallInfoCount, [In] ref FileInstallInfo pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPimFileRepositoryPath([MarshalAs(UnmanagedType.BStr)] out string fileRepositoryPath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo2[] pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] FileInstallInfo2[] pFileInstallInfoArray); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CleanupPlatformUpgrade([In] bool bIsGRNode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray, [In] int iCodeModuleType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UndeployFiles([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szClientNodename, [In] int FileInstallInfoCount, [In] ref FileInstallInfo2 pFileInstallInfoArray, [In] int iCodeModuleType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveLocalPlatform(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveViewAppDeployedFolders([In][MarshalAs(UnmanagedType.LPWStr)] string szViewAppName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveViewAppNetworkShare([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string szViewAppName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeArchestraPath([In][MarshalAs(UnmanagedType.LPWStr)] string szPath); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInfoServer.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInfoServer.cs new file mode 100644 index 0000000..02b5cea --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInfoServer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("4E448140-AE83-11D3-939D-00C04F6BBD91")] +[CoClass(typeof(PlatformInfoServerClass))] +public interface PlatformInfoServer : IPlatformInfoServer, IInfoNotify_Event +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInfoServerClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInfoServerClass.cs new file mode 100644 index 0000000..a02b7c7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInfoServerClass.cs @@ -0,0 +1,97 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComSourceInterfaces("Interop.Lmx.IInfoNotify\0\0")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("79EEACB0-5A55-11D3-A9CF-00A0C9FB55A0")] +[ClassInterface(ClassInterfaceType.None)] +public class PlatformInfoServerClass : IPlatformInfoServer, PlatformInfoServer, IInfoNotify_Event, IVersionInformation +{ + public virtual extern event IInfoNotify_Fire_OnInfoNotifyEventHandler Fire_OnInfoNotify; + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsValidEngineId([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineDefinition([In] int lEngineId, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern tagEngineDefinition GetEngineDefinition([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteEngineDefinition([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineScanState([In] int lEngineId, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetEngineScanState([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetStartupType([In] int lEngineId, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetStartupType([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineState([In] int lEngineId, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineRestart([In] int lEngineId, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetEngineRestart([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildComponentVersion(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInformationClerkObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInformationClerkObject.cs new file mode 100644 index 0000000..f18405d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInformationClerkObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("148C8733-3930-11D3-87EA-00A0C982C01C")] +[CoClass(typeof(PlatformInformationClerkObjectClass))] +public interface PlatformInformationClerkObject : IPlatformInformationClerk +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInformationClerkObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInformationClerkObjectClass.cs new file mode 100644 index 0000000..08936f5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformInformationClerkObjectClass.cs @@ -0,0 +1,514 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("148C8734-3930-11D3-87EA-00A0C982C01C")] +[ClassInterface(ClassInterfaceType.None)] +[ComConversionLoss] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class PlatformInformationClerkObjectClass : IPlatformInformationClerk, PlatformInformationClerkObject, IPlatformInformationClerk2, IPlatformInformationClerk3, IPlatformInformationClerk4, IPlatformInformationClerk5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerPlatformSUPStatus([In] int platformId, [In] int partnerPlatformId, out int supStatus); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformRegistryAccessObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformRegistryAccessObject.cs new file mode 100644 index 0000000..e886035 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformRegistryAccessObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(PlatformRegistryAccessObjectClass))] +[Guid("45073152-4A92-11D3-87EC-00A0C982C01C")] +public interface PlatformRegistryAccessObject : IPlatformRegistryAccess +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformRegistryAccessObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformRegistryAccessObjectClass.cs new file mode 100644 index 0000000..3c6c18f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PlatformRegistryAccessObjectClass.cs @@ -0,0 +1,23 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("45073153-4A92-11D3-87EC-00A0C982C01C")] +public class PlatformRegistryAccessObjectClass : IPlatformRegistryAccess, PlatformRegistryAccessObject +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDirectoryRootpath([MarshalAs(UnmanagedType.BStr)] out string pbstrPath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRootKey([MarshalAs(UnmanagedType.BStr)] out string pbstrRootpath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In] int index, [MarshalAs(UnmanagedType.BStr)] out string pbstrPathname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In] int index, [In][MarshalAs(UnmanagedType.LPWStr)] string szPathname); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PrimitiveAttributeTableEntry.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PrimitiveAttributeTableEntry.cs new file mode 100644 index 0000000..bc29bb3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/PrimitiveAttributeTableEntry.cs @@ -0,0 +1,12 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct PrimitiveAttributeTableEntry +{ + [ComConversionLoss] + public IntPtr attributeData; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ProcessLocale.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ProcessLocale.cs new file mode 100644 index 0000000..084f8cc --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ProcessLocale.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("8CF8B900-8D26-11D4-A9A3-0060976445E9")] +[CoClass(typeof(ProcessLocaleClass))] +public interface ProcessLocale : IProcessLocale +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ProcessLocaleClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ProcessLocaleClass.cs new file mode 100644 index 0000000..bf4dd1d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ProcessLocaleClass.cs @@ -0,0 +1,29 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("82807A20-8D26-11D4-A9A3-0060976445E9")] +[ClassInterface(ClassInterfaceType.None)] +public class ProcessLocaleClass : IProcessLocale, ProcessLocale +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetProcessLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetProcessLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetDefaultLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetDefaultLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetThreadLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetThreadLocale(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyMsgStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyMsgStatus.cs new file mode 100644 index 0000000..49cb803 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyMsgStatus.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum RedundancyMsgStatus +{ + RedundancyMsg_Sent, + RedundancyMsg_Acknowledged, + RedundancyMsg_NoConnection, + RedundancyMsg_TimedOut +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyObject.cs new file mode 100644 index 0000000..6df2712 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("5C7C1C94-09C1-4E0A-9DCE-ECA53FBCDE04")] +[CoClass(typeof(RedundancyObjectClass))] +public interface RedundancyObject : IRedundancyService2 +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyObjectClass.cs new file mode 100644 index 0000000..9fed3d8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/RedundancyObjectClass.cs @@ -0,0 +1,96 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("A5865417-2DDC-47D0-A5E9-B9138015AC73")] +[ClassInterface(ClassInterfaceType.None)] +public class RedundancyObjectClass : IRedundancyService2, RedundancyObject +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In] Guid guidGalaxyId, [In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPrimaryAddress, [In] int lPrimaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrSecondaryAddress, [In] int lSecondaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void TransferData([In] int lEngineId, [In] int lType, [In] int lReference, [In] ref byte pBuffer, [In] int lLength, [In] int lTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UpdateSubscriberInfo([In] int lEngineId, [In] int lToAddCount, [In] ref tagEngineSubscriberInformation pToAdd, [In] int lToDeleteCount, [In] ref tagEngineSubscriberInformation pToDelete); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterRedundancyNotification([In] int lEngineId, [In][MarshalAs(UnmanagedType.Interface)] IRedundancyNotify pNotify, out int pCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterRedundancyNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterRedundancyStatusNotification([In] int lTargetPlatformId, [In] int lTargetEngineId, [In][MarshalAs(UnmanagedType.Interface)] IRedundancyNotify pNotify, out int pCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterRedundancyStatusNotification([In] int lTargetPlatformId, [In] int lTargetEngineId, [In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterRedundantEngine([In] int lEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetHeartbeatRateForRedundantPartner([In] int lEngineId, [In] int lTicks, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetHeartbeatRate([In] int lEngineId, [In] int lTicks, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetIndirectDetectTimeoutForRedundantPartner([In] int lEngineId, [In] int lTimeOut, [In] int bEnableStandbyDetect); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetIndirectDetectTimeout([In] int lEngineId, [In] int lTimeOut, [In] int bEnableStandbyDetect); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UpdateRedundancyStatus([In] int lEngineId, [In] tagRedundancyStatus eFailoverStatus, [In] tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRedundancyStatus([In] int lPlatformId, [In] int lEngineId, out tagRedundancyStatus eFailoverStatus, out tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRedundancyStatusBlock([In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, out tagRedundancyStatus eFailoverStatus, out tagRedundancySubStatus subStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetEngineRedundancyInfo([In] int lPlatformId, [In] int lEngineId, out tagEngineRedundancyInformation pFailoverEngineInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetHeartbeatConsecMissCount([In] int lEngineId, [In] tagRedundancyChannel eChannel, out int plTotalHeartbeatMissed, out int plConsecHeartbeatMissed); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UpdateRemotePlatform([In] int lPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string bstrPrimaryAddress, [In] int lPrimaryPort, [In][MarshalAs(UnmanagedType.BStr)] string bstrFailoverAddress, [In] int lFailoverPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveRemotePlatform([In] int lPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterRedundantEngine([In] int lEngineId, [In] int lPartnerPlatformId, [In][MarshalAs(UnmanagedType.BStr)] string partnerPMCAddress, [In] int partnerPMCPort, [In][MarshalAs(UnmanagedType.BStr)] string partnerRMCAddress, [In] int partnerRMCPort, [In] int timeToDiscoverPartner, [In][MarshalAs(UnmanagedType.BStr)] string engineName, [In] tagRedundancyIdentity eFailoverConfig); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UpdatePartnerRMCAddress([In] int lEngineId, [In][MarshalAs(UnmanagedType.BStr)] string partnerRMCAddress, [In] int partnerRMCPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UpdateTimeToDiscoverRedundantPartner([In] int engineId, [In] int timeToDiscoverPartner); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetMaxTimeForStandbyToBecomeActive([In] int engineId, [In] int timeToBecomeActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerRedundancyStatus([In] int engineId, out tagRedundancyStatus status, out tagRedundancySubStatus subStatus, out tagRedundancyStatus partnerStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerRMCAddress([In] int engineId, [MarshalAs(UnmanagedType.BStr)] out string partnerRMCAddress, out int partnerRMCPort); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Dump([In] int dumpmsg, [In][MarshalAs(UnmanagedType.Struct)] ref object parm1, [In][MarshalAs(UnmanagedType.Struct)] ref object parm2); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRedundancyStatusBlockEx([In] tagRedundancyChannel lMessageChannelId, [In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, out tagRedundancyStatus eStatus, out int partnerPlatform, out int partnerEngine, [ComAliasName("Interop.Lmx.eRedundancyStatusBlockExResult")] out eRedundancyStatusBlockExResult result); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRedundancyStatusBlockEx2([In] tagRedundancyChannel eMessageChannel, [In] int lPlatformId, [In] int lEngineId, [In] int lTimeOut, [In] tagRedundancyChannel ePartnerStatusMessageChannel, out tagRedundancyStatus peStatus, out tagRedundancySubStatus peSubStatus, out tagRedundancyStatus pePartnerStatus, out tagRedundancySubStatus pePartnerSubStatus, out int plPartnerPlatform, out int plPartnerEngine, [ComAliasName("Interop.Lmx.eRedundancyStatusBlockExResult")] out eRedundancyStatusBlockExResult peResult); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ReferenceStringParser.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ReferenceStringParser.cs new file mode 100644 index 0000000..d17c06e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ReferenceStringParser.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(ReferenceStringParserClass))] +[Guid("F2B877E3-1DBE-11D3-80AD-00104B5F96A7")] +public interface ReferenceStringParser : IReferenceStringParser +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ReferenceStringParserClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ReferenceStringParserClass.cs new file mode 100644 index 0000000..9d79e2b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/ReferenceStringParserClass.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("F2B877E4-1DBE-11D3-80AD-00104B5F96A7")] +public class ReferenceStringParserClass : IReferenceStringParser, ReferenceStringParser +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ParseAutomationObjectHandle([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In][MarshalAs(UnmanagedType.Interface)] IAutomationObjectNameProvider pAutomationObjectNameProvider, out bool isDynamic); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Scheduler.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Scheduler.cs new file mode 100644 index 0000000..83f5e26 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/Scheduler.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("C9B2ADCD-A086-488F-907D-1144176DADB2")] +[CoClass(typeof(SchedulerClass))] +public interface Scheduler : IScheduler +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/SchedulerClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/SchedulerClass.cs new file mode 100644 index 0000000..b66e547 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/SchedulerClass.cs @@ -0,0 +1,44 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("45A85368-B5F7-4547-83CC-AD2294C4F628")] +public class SchedulerClass : IScheduler, Scheduler +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In][MarshalAs(UnmanagedType.Interface)] WatchdogObject pWatchdog, [In][MarshalAs(UnmanagedType.IUnknown)] object pAccessManager, [In][MarshalAs(UnmanagedType.Interface)] ICheckpointer pCheckpointer, [In][MarshalAs(UnmanagedType.IUnknown)] object objectSyncManager); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Run([ComAliasName("Interop.Lmx.EngineExitStatus")] ref EngineExitStatus exitStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterAutomationObject([In][MarshalAs(UnmanagedType.LPWStr)] string Name, [In] int id, [In][MarshalAs(UnmanagedType.Interface)] CoBaseRuntimeObject pAutomationObject, [In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] int RelativeOrder); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnRegisterAutomationObject([In] int id); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetScanPeriod([In] int ScanPeriod); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetScanState([In] int ObjectID, [In] bool ScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetObjectTimeStamp(out _FILETIME pFileTime, out short offset); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CheckpointObjects(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterSchedulerClient([In] uint callbackMask, [In][MarshalAs(UnmanagedType.Interface)] ISchedulerClient schedulerClient, out int cookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterSchedulerClient([In] int cookie); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/SetInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/SetInfo.cs new file mode 100644 index 0000000..492d2d6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/SetInfo.cs @@ -0,0 +1,18 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct SetInfo +{ + public VBGUID userId; + + public VBGUID userIdVerifier; + + public ECALLCONTEXTFLAG callContext; + + public int responseId; + + [MarshalAs(UnmanagedType.BStr)] + public string engineName; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/StartupInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/StartupInfo.cs new file mode 100644 index 0000000..b7bc453 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/StartupInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct StartupInfo +{ + public ESTARTUPCONTEXT startupContext; + + public VB_LARGE_INTEGER checkpointFiletime; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/USER_ID.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/USER_ID.cs new file mode 100644 index 0000000..85804be --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/USER_ID.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("C78927D7-204A-4E76-B643-DC9D1276B02E")] +public struct USER_ID +{ + public int Data1; + + public short Data2; + + public short Data3; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + public byte[] Data4; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserASBToken.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserASBToken.cs new file mode 100644 index 0000000..27a07a3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserASBToken.cs @@ -0,0 +1,38 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("D38E49FF-C0EA-4232-9552-8BA2147F0863")] +public struct UserASBToken +{ + public ushort Encryption; + + public short EncryptionSpecified; + + [MarshalAs(UnmanagedType.BStr)] + public string HostName; + + public ushort IdType; + + public short IdTypeSpecified; + + [MarshalAs(UnmanagedType.BStr)] + public string LocationID; + + [MarshalAs(UnmanagedType.BStr)] + public string Password; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] SamlToken; + + [MarshalAs(UnmanagedType.BStr)] + public string UserName; + + public ushort Validity; + + public short ValiditySpecified; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] X509Certificate; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserAuthenticator.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserAuthenticator.cs new file mode 100644 index 0000000..e077953 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserAuthenticator.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(UserAuthenticatorClass))] +[Guid("0759D857-2EC6-481B-B497-117A6A4F7204")] +public interface UserAuthenticator : IUserAuthenticator7 +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserAuthenticatorClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserAuthenticatorClass.cs new file mode 100644 index 0000000..e35821a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/UserAuthenticatorClass.cs @@ -0,0 +1,293 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[ComConversionLoss] +[Guid("FC3501EB-5883-4B82-B286-9AFB2956B469")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class UserAuthenticatorClass : IUserAuthenticator7, UserAuthenticator, IUserAuthenticator6, IUserAuthenticator5, IUserAuthenticator4, IUserAuthenticator3, IUserAuthenticator2, IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public virtual extern byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsSecurityForGalaxyEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator6_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator6_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator6_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator6_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator6_GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator6_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr IUserAuthenticator6_GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public virtual extern byte[] IUserAuthenticator6_LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator6_ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator5_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator5_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator5_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator5_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator5_GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator5_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr IUserAuthenticator5_GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator4_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator4_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator4_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator4_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator4_GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator4_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator3_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator3_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator3_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator3_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator3_GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator2_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator2_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator2_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator2_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator2_GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator_GetUserID([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VBFILETIME.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VBFILETIME.cs new file mode 100644 index 0000000..6bec79d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VBFILETIME.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("09721FDD-046A-45D7-9BF8-7F6F9ED3934E")] +public struct VBFILETIME +{ + public int LowDateTime; + + public int HighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VBGUID.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VBGUID.cs new file mode 100644 index 0000000..f48d090 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VBGUID.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("CB6EA3AE-3D97-11D4-AA6D-00A0C9FB522A")] +public struct VBGUID +{ + public int Data1; + + public short Data2; + + public short Data3; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + public byte[] Data4; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VB_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VB_LARGE_INTEGER.cs new file mode 100644 index 0000000..e566035 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/VB_LARGE_INTEGER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("BEACE14F-AAA2-412A-B113-F7FC00F2BD25")] +public struct VB_LARGE_INTEGER +{ + public int LowPart; + + public int HighPart; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WatchdogObject.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WatchdogObject.cs new file mode 100644 index 0000000..0345240 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WatchdogObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[CoClass(typeof(WatchdogObjectClass))] +[Guid("4F8CED36-2A43-11D3-87E0-00A0C982C01C")] +public interface WatchdogObject : IWatchdog +{ +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WatchdogObjectClass.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WatchdogObjectClass.cs new file mode 100644 index 0000000..4c6fee0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WatchdogObjectClass.cs @@ -0,0 +1,38 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("4F8CED37-2A43-11D3-87E0-00A0C982C01C")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class WatchdogObjectClass : IWatchdog, WatchdogObject +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RequestWatchdogMonitor([In] int lmsStartupTimeout = 30000, [In] int lmsShutdownTimeout = 30000, [In] int lmsWatchdogTime = 60000, [In] int lWatchdogFault = 3, [In] tagWatchdogTimeoutAction lWatchdogAction = tagWatchdogTimeoutAction.TIMEOUT_NO_ACTION); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartupCompleted(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetStartupTimeout([In] int lmsPeriod); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetShutdownTimeout([In] int lmsPeriod); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetShutdownEvent([In] int lmsShutdownTimeout, [MarshalAs(UnmanagedType.BStr)] out string pbstrEventName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetWatchdogTime([In] int lmsWaitTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetWatchdogFaults([In] uint dwFaults); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetWatchdogAction([In] tagWatchdogTimeoutAction action); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetWatchdog(); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WriteCapabilityType.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WriteCapabilityType.cs new file mode 100644 index 0000000..2b181cd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WriteCapabilityType.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[Guid("953FDABA-3C19-4B96-8B52-AF69BB3FFE0C")] +public enum WriteCapabilityType +{ + WriteUnknown = 0, + WriteNonsecure = 1, + WriteUser = 2, + WriteConfirm = 4, + WriteVerify = 8 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WriteRequest2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WriteRequest2.cs new file mode 100644 index 0000000..efa6112 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/WriteRequest2.cs @@ -0,0 +1,24 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("F6DF55F3-CECE-4857-96FE-3B390D6DAF77")] +public struct WriteRequest2 +{ + public ushort ReferenceType; + + public ushort type; + + [MarshalAs(UnmanagedType.BStr)] + public string ContextName; + + [MarshalAs(UnmanagedType.BStr)] + public string Name; + + public ulong id; + + public uint quality; + + public IDataVariant value; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_AttributeInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_AttributeInformation.cs new file mode 100644 index 0000000..3796ce0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_AttributeInformation.cs @@ -0,0 +1,36 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 1)] +public struct _AttributeInformation +{ + public int lSize; + + public short shPrimitiveId; + + public short shAttributeId; + + public byte Locked; + + public byte SecurityClassification; + + public byte type; + + public byte category; + + public byte RuntimeSethandler; + + public byte CfgSethandler; + + public short mxDataQuality; + + public int lDim; + + public int lNameSize; + + public int cbData; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 1)] + public byte[] pbData; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_DataUpdate.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_DataUpdate.cs new file mode 100644 index 0000000..ca93a8b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_DataUpdate.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _DataUpdate +{ + public ulong ItemId; + + public uint StatusCode; + + public uint StatusDetail; + + public _FILETIME timeStamp; + + public uint quality; + + public _IVariant value; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_FILETIME.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_FILETIME.cs new file mode 100644 index 0000000..b99549c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_FILETIME.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct _FILETIME +{ + public uint dwLowDateTime; + + public uint dwHighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IItemIdentity.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IItemIdentity.cs new file mode 100644 index 0000000..d456deb --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IItemIdentity.cs @@ -0,0 +1,21 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[ComConversionLoss] +public struct _IItemIdentity +{ + [ComConversionLoss] + public IntPtr ContextName; + + public ulong id; + + [ComConversionLoss] + public IntPtr Name; + + public ushort ReferenceType; + + public ushort type; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents.cs new file mode 100644 index 0000000..d16c890 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents.cs @@ -0,0 +1,23 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[Guid("848299B6-DD61-4A0D-A304-3947A564B89C")] +[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +public interface _ILMXProxyServerEvents +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(2)] + void OnWriteComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(3)] + void OperationComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2.cs new file mode 100644 index 0000000..16961d2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2.cs @@ -0,0 +1,15 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] +[Guid("C70A6FC4-09EF-4F31-8874-A049FEE87A95")] +public interface _ILMXProxyServerEvents2 +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnBufferedDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_Event.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_Event.cs new file mode 100644 index 0000000..e2fe050 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_Event.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +[ComEventInterface(typeof(_ILMXProxyServerEvents2), typeof(_ILMXProxyServerEvents2_EventProvider))] +public interface _ILMXProxyServerEvents2_Event +{ + event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_EventProvider.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_EventProvider.cs new file mode 100644 index 0000000..18ed64f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_EventProvider.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.Lmx; + +internal sealed class _ILMXProxyServerEvents2_EventProvider : _ILMXProxyServerEvents2_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 196, 111, 10, 199, 239, 9, 49, 79, 136, 116, + 160, 73, 254, 232, 122, 149 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = new _ILMXProxyServerEvents2_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents2_SinkHelper, out pdwCookie); + iLMXProxyServerEvents2_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents2_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate != null && ((iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public _ILMXProxyServerEvents2_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs new file mode 100644 index 0000000..9bd3cfc --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +public delegate void _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_SinkHelper.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_SinkHelper.cs new file mode 100644 index 0000000..6ed627a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents2_SinkHelper.cs @@ -0,0 +1,28 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class _ILMXProxyServerEvents2_SinkHelper : _ILMXProxyServerEvents2 +{ + public _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler m_OnBufferedDataChangeDelegate; + + public int m_dwCookie; + + public void OnBufferedDataChange(int P_0, int P_1, MxDataType P_2, object P_3, object P_4, object P_5, ref MXSTATUS_PROXY[] P_6) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnBufferedDataChangeDelegate != null) + { + m_OnBufferedDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, P_5, ref P_6); + } + } + + internal _ILMXProxyServerEvents2_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnBufferedDataChangeDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_Event.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_Event.cs new file mode 100644 index 0000000..3de9acd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_Event.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComEventInterface(typeof(_ILMXProxyServerEvents), typeof(_ILMXProxyServerEvents_EventProvider))] +public interface _ILMXProxyServerEvents_Event +{ + event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_EventProvider.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_EventProvider.cs new file mode 100644 index 0000000..342521d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_EventProvider.cs @@ -0,0 +1,288 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.Lmx; + +internal sealed class _ILMXProxyServerEvents_EventProvider : _ILMXProxyServerEvents_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 182, 153, 130, 132, 97, 221, 13, 74, 163, 4, + 57, 71, 165, 100, 184, 156 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void add_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void add_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public _ILMXProxyServerEvents_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs new file mode 100644 index 0000000..a9f2796 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +public delegate void _ILMXProxyServerEvents_OnDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs new file mode 100644 index 0000000..7fd72c7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +public delegate void _ILMXProxyServerEvents_OnWriteCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs new file mode 100644 index 0000000..a895ea7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents_OperationCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_SinkHelper.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_SinkHelper.cs new file mode 100644 index 0000000..f13a0dd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ILMXProxyServerEvents_SinkHelper.cs @@ -0,0 +1,52 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class _ILMXProxyServerEvents_SinkHelper : _ILMXProxyServerEvents +{ + public _ILMXProxyServerEvents_OnDataChangeEventHandler m_OnDataChangeDelegate; + + public _ILMXProxyServerEvents_OnWriteCompleteEventHandler m_OnWriteCompleteDelegate; + + public _ILMXProxyServerEvents_OperationCompleteEventHandler m_OperationCompleteDelegate; + + public int m_dwCookie; + + public void OnDataChange(int P_0, int P_1, object P_2, int P_3, object P_4, ref MXSTATUS_PROXY[] P_5) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnDataChangeDelegate != null) + { + m_OnDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, ref P_5); + } + } + + public void OnWriteComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnWriteCompleteDelegate != null) + { + m_OnWriteCompleteDelegate(P_0, P_1, ref P_2); + } + } + + public void OperationComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OperationCompleteDelegate != null) + { + m_OperationCompleteDelegate(P_0, P_1, ref P_2); + } + } + + internal _ILMXProxyServerEvents_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnDataChangeDelegate = null; + m_OnWriteCompleteDelegate = null; + m_OperationCompleteDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IMonitoredItem.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IMonitoredItem.cs new file mode 100644 index 0000000..61da860 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IMonitoredItem.cs @@ -0,0 +1,24 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[ComConversionLoss] +public struct _IMonitoredItem +{ + public byte Active; + + [ComConversionLoss] + public IntPtr Item; + + public ulong SampleInterval; + + public ulong TimeDeadband; + + [ComConversionLoss] + public IntPtr userData; + + [ComConversionLoss] + public IntPtr ValueDeadband; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IUserToken.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IUserToken.cs new file mode 100644 index 0000000..cf26dcc --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IUserToken.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _IUserToken +{ + public int Encryption; + + [ComConversionLoss] + public IntPtr HostName; + + public int IdType; + + [ComConversionLoss] + public IntPtr LocationID; + + [ComConversionLoss] + public IntPtr Password; + + [ComConversionLoss] + public IntPtr UserName; + + public _IWS_BYTES SamlToken; + + public ushort Validity; + + public _IWS_BYTES X509Certificate; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IVariant.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IVariant.cs new file mode 100644 index 0000000..2fbb7d9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IVariant.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct _IVariant +{ + public int length; + + public _IWS_BYTES Payload; + + public ushort type; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IWS_BYTES.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IWS_BYTES.cs new file mode 100644 index 0000000..9911326 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_IWS_BYTES.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _IWS_BYTES +{ + public uint length; + + [ComConversionLoss] + public IntPtr bytes; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ItemDataUpdate.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ItemDataUpdate.cs new file mode 100644 index 0000000..8b1fd8a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ItemDataUpdate.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _ItemDataUpdate +{ + public ulong ItemId; + + public uint StatusCode; + + public uint StatusDetail; + + public _FILETIME timeStamp; + + public uint quality; + + public _IVariant value; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_LARGE_INTEGER.cs new file mode 100644 index 0000000..275c6ba --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_LARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _LARGE_INTEGER +{ + public long QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_RequestAttributeInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_RequestAttributeInfo.cs new file mode 100644 index 0000000..8882366 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_RequestAttributeInfo.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 1)] +public struct _RequestAttributeInfo +{ + public int lObjectId; + + public short shPropertyFlags; + + public short shTypeFlags; + + public short shCategoryFlags; + + public byte SecClassFlags; + + public byte LockedFlags; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_RuntimeAttributeCollection.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_RuntimeAttributeCollection.cs new file mode 100644 index 0000000..b2c1407 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_RuntimeAttributeCollection.cs @@ -0,0 +1,26 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 1)] +public struct _RuntimeAttributeCollection +{ + public int lObjectId; + + public int lAttributeCnt; + + public short shPropertyFlags; + + public short shTypeFlags; + + public short shCategoryFlags; + + public byte SecClassFlags; + + public byte LockedFlags; + + public int cbData; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 1)] + public byte[] pbData; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_StatusItem.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_StatusItem.cs new file mode 100644 index 0000000..7e957c8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_StatusItem.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _StatusItem +{ + public int ERRORCODE; + + [ComConversionLoss] + public IntPtr Item; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ULARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ULARGE_INTEGER.cs new file mode 100644 index 0000000..bcb017e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_ULARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _ULARGE_INTEGER +{ + public ulong QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_WriteRequest.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_WriteRequest.cs new file mode 100644 index 0000000..231838f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_WriteRequest.cs @@ -0,0 +1,20 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _WriteRequest +{ + [ComConversionLoss] + public IntPtr Item; + + public _FILETIME timeStamp; + + public ushort StatusCode; + + public uint quality; + + public _IVariant value; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_WriteRequestWithReasonDesc.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_WriteRequestWithReasonDesc.cs new file mode 100644 index 0000000..9bdb149 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/_WriteRequestWithReasonDesc.cs @@ -0,0 +1,27 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _WriteRequestWithReasonDesc +{ + [ComConversionLoss] + public IntPtr Item; + + public _FILETIME timeStamp; + + public ushort StatusCode; + + public short quality; + + public _IVariant value; + + [MarshalAs(UnmanagedType.LPWStr)] + public string reasonDescription; + + public int arrayIndex; + + public short bArrayIndexValid; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0000_0000_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0000_0000_0001.cs new file mode 100644 index 0000000..0852e22 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0000_0000_0001.cs @@ -0,0 +1,13 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0000_0000_0001 +{ + Uninitialized, + Initialized, + Starting, + Deploying, + StartingHostedObjects, + Running, + ShuttingDown, + AboutToShutDown +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0089_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0089_0001.cs new file mode 100644 index 0000000..2db5826 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0089_0001.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0089_0001 +{ + MxAccessNone, + MxAccessWrite +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0089_0002.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0089_0002.cs new file mode 100644 index 0000000..b1ded96 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0089_0002.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0089_0002 +{ + MxMessageExchange, + MxMessageExchangeClient +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0093_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0093_0001.cs new file mode 100644 index 0000000..bed5b09 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0093_0001.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0093_0001 +{ + eLoadCheckpointResult_Uninitialized, + eLoadCheckpointResult_ObjectAddedToCheckpoint, + eLoadCheckpointResult_ObjectExistsInCheckpoint, + eLoadCheckpointResult_FailedToAddObjectToCheckpoint +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0093_0002.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0093_0002.cs new file mode 100644 index 0000000..8f6382a --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0093_0002.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct __MIDL___MIDL_itf_Lmx_0001_0093_0002 +{ + public int ObjectID; + + [ComAliasName("Interop.Lmx.eLoadCheckpointResult")] + public eLoadCheckpointResult result; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0135_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0135_0001.cs new file mode 100644 index 0000000..498c5a9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0135_0001.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0135_0001 +{ + eExpressQueue, + eGuarantyQueue +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0171_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0171_0001.cs new file mode 100644 index 0000000..d52f21e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0171_0001.cs @@ -0,0 +1,13 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0171_0001 +{ + ENGINE_STATE_UNDEFINED, + ENGINE_STATE_DEPLOYING, + ENGINE_STATE_OFFSCAN, + ENGINE_STATE_ONSCAN, + ENGINE_STATE_CHK_RESTORE_BACKUP, + ENGINE_STATE_CHK_RESTORE_CONFIG, + ENGINE_STATE_CHK_RESTORE_FAILED, + ENGINE_STATE_UBOUND +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0200_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0200_0001.cs new file mode 100644 index 0000000..8ebd051 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0200_0001.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0200_0001 +{ + eEngineNotRunning, + eEngineShuttingDown, + eEngineSwitchingToStandby, + eEngineSwitchingToActive +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0209_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0209_0001.cs new file mode 100644 index 0000000..ed949f5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0209_0001.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0209_0001 +{ + RedundancyMsg_Sent, + RedundancyMsg_Acknowledged, + RedundancyMsg_NoConnection, + RedundancyMsg_TimedOut +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0210_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0210_0001.cs new file mode 100644 index 0000000..2201676 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0210_0001.cs @@ -0,0 +1,11 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0210_0001 +{ + eRedundancyStatusBlockEx_GeneralFailure, + eRedundancyStatusBlockEx_Success, + eRedundancyStatusBlockEx_FailedToRetrieveStatus, + eRedundancyStatusBlockEx_Timeout, + eRedundancyStatusBlockEx_MsgSendFailure, + eRedundancyStatusBlockEx_NetworkFailure +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0212_0001.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0212_0001.cs new file mode 100644 index 0000000..8b5ac1c --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0212_0001.cs @@ -0,0 +1,55 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0212_0001 +{ + OPENCONNECTION = 0, + FMCACCEPTEDCONN = 1, + SECURE_OPEN_CONNECTION = 256, + NewConnectionReq = 257, + CheckpointData = 258, + FMTYPE_PLATFORM_INFO_REQ = 4096, + FMTYPE_PLATFORM_INFO_RESP = 4097, + FMTYPE_SUBSCRIBE_HEARTBEAT_REQ = 4098, + FMTYPE_SUBSCRIBE_HEARTBEAT_RESP = 4099, + FMTYPE_PLATFORM_HEARTBEAT = 4112, + FMTYPE_GET_PARTNER_ENGINE_INFO_REQ = 4352, + FMTYPE_GET_PARTNER_ENGINE_INFO_RESP = 4353, + FMTYPE_SET_HEARTBEAT_REQ = 4354, + FMTYPE_SET_HEARTBEAT_RESP = 4355, + FMTYPE_SET_PARTNER_HEARTBEAT_REQ = 4356, + FMTYPE_SET_PARTNER_HEARTBEAT_RESP = 4357, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_REQ = 4358, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_RESP = 4359, + FMTYPE_SUBSCRIBE_STATUS_RESQ = 4360, + FMTYPE_SUBSCRIBE_STATUS_RESP = 4361, + FMTYPE_UNSUBSCRIBE_STATUS_RESQ = 4362, + FMTYPE_UNSUBSCRIBE_STATUS_RESP = 4363, + FMTYPE_REFRESH_STATUS_RESQ = 4364, + FMTYPE_REFRESH_STATUS_RESP = 4365, + FMTYPE_REDUNDANCY_STATUS_REQ = 4366, + FMTYPE_REDUNDANCY_STATUS_RESP = 4367, + FMTYPE_PLATFORM_STATUS_REQ = 4368, + FMTYPE_PLATFORM_STATUS_RESP = 4369, + FMTYPE_REDUNDANCY_ENGINE_INFO_REQ = 4370, + FMTYPE_REDUNDANCY_ENGINE_INFO_RESP = 4371, + FMTYPE_ENGINE_FAILOVER_OPERATION_REQ = 4372, + FMTYPE_ENGINE_FAILOVER_OPERATION_RESP = 4373, + FMTYPE_ENGINE_SWITCHING_TO_ACTIVE_NOTIFICATION_REQ = 4374, + FMTYPE_ENGINE_FAILOVER_DATA = 4416, + FMTYPE_ENGINE_FAILOVER_DATA_ACK = 4417, + FMTYPE_ENGINE_SUBSCRIBER_LIST = 4418, + FMTYPE_ENGINE_SUBSCRIBER_LIST_ACK = 4419, + FMTYPE_ENGINE_FAILOVER_STATUS = 4480, + FMTYPE_ENGINE_FAILOVER_STATUS_ACK = 4481, + FMTYPE_ENGINE_PROCESS_STATUS = 4482, + FMTYPE_ENGINE_PROCESS_STATUS_ACK = 4483, + FMTYPE_PLATFORM_STATUS = 4484, + NMXMTYPE_ENGINE_DATA = 4608, + NMXMTYPE_SET_HEARTBEAT_RATE = 4609, + NMXMTYPE_PLATFORM_HEARTBEAT = 4610, + NMXMTYPE_GET_HEARTBEAT_RATE = 4611, + NMXMTYPE_HEARTBEAT_DISCONNECT_REQ = 4612, + NMXMTYPE_CONNECT_INFO = 4613, + NMXMTYPE_CONNECT_INFO_REQ = 4614, + NMXMTYPE_VERSION_ERROR = 4615 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0212_0002.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0212_0002.cs new file mode 100644 index 0000000..828a6be --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/__MIDL___MIDL_itf_Lmx_0001_0212_0002.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum __MIDL___MIDL_itf_Lmx_0001_0212_0002 +{ + CONNECTION_FAILED, + CONNECTION_ACCEPTED, + CONNECTION_ESTABLISHED +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/eLoadCheckpointResult.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/eLoadCheckpointResult.cs new file mode 100644 index 0000000..5516332 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/eLoadCheckpointResult.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum eLoadCheckpointResult +{ + eLoadCheckpointResult_Uninitialized, + eLoadCheckpointResult_ObjectAddedToCheckpoint, + eLoadCheckpointResult_ObjectExistsInCheckpoint, + eLoadCheckpointResult_FailedToAddObjectToCheckpoint +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/eRedundancyStatusBlockExResult.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/eRedundancyStatusBlockExResult.cs new file mode 100644 index 0000000..64317ef --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/eRedundancyStatusBlockExResult.cs @@ -0,0 +1,11 @@ +namespace Interop.Lmx; + +public enum eRedundancyStatusBlockExResult +{ + eRedundancyStatusBlockEx_GeneralFailure, + eRedundancyStatusBlockEx_Success, + eRedundancyStatusBlockEx_FailedToRetrieveStatus, + eRedundancyStatusBlockEx_Timeout, + eRedundancyStatusBlockEx_MsgSendFailure, + eRedundancyStatusBlockEx_NetworkFailure +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagClusterRegistrationInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagClusterRegistrationInformation.cs new file mode 100644 index 0000000..556c2b6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagClusterRegistrationInformation.cs @@ -0,0 +1,24 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagClusterRegistrationInformation +{ + public int lPlatformId; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterGUID; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterName; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterVersion; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrGRHostName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrGRHostAddress; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineDefinition.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineDefinition.cs new file mode 100644 index 0000000..16d7292 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineDefinition.cs @@ -0,0 +1,26 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineDefinition +{ + public int lEngineId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrClassId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrExecutableName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineSignature; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrVendorName; + + public int lEngineCategory; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineDefinition2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineDefinition2.cs new file mode 100644 index 0000000..59b416b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineDefinition2.cs @@ -0,0 +1,57 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineDefinition2 +{ + public int lEngineId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrClassId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrExecutableName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineSignature; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrVendorName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrCheckpointPath; + + public int lEngineCategory; + + public tagRedundancyIdentity redundancyIdentity; + + [MarshalAs(UnmanagedType.BStr)] + public string primaryAddress; + + public int primaryPort; + + [MarshalAs(UnmanagedType.BStr)] + public string rmcAddress; + + public int rmcPort; + + public int partnerPlatformId; + + [MarshalAs(UnmanagedType.BStr)] + public string partnerPMCAddress; + + public int partnerPMCPort; + + [MarshalAs(UnmanagedType.BStr)] + public string partnerRMCAddress; + + public int partnerRMCPort; + + public int timeToDiscoverPartner; + + public int bRestartOnStandbyTransition; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineRedundancyInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineRedundancyInformation.cs new file mode 100644 index 0000000..9ad08a5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineRedundancyInformation.cs @@ -0,0 +1,32 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineRedundancyInformation +{ + public int lPlatformId; + + public int lEngineId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + public tagRedundancyIdentity redundancyIdentity; + + public tagRedundancyStatus redundancyStatus; + + public int lPartnerPlatformId; + + public int lPartnerEngineId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPartnerPMCNetAddress; + + public int lPartnerPMCPort; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPartnerSMCNetAddress; + + public int lPartnerSMCPort; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineStatusInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineStatusInfo.cs new file mode 100644 index 0000000..4bc2c32 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineStatusInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineStatusInfo +{ + public int lEngineId; + + public int EngineState; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineSubscriberInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineSubscriberInformation.cs new file mode 100644 index 0000000..f4a3093 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagEngineSubscriberInformation.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineSubscriberInformation +{ + public int lPlatformId; + + public int lEngineId; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagID.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagID.cs new file mode 100644 index 0000000..79778b8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagID.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagID +{ + public int lPlatformId; + + public int lEngineId; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagMxInitialState.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagMxInitialState.cs new file mode 100644 index 0000000..954e7ab --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagMxInitialState.cs @@ -0,0 +1,7 @@ +namespace Interop.Lmx; + +public enum tagMxInitialState +{ + MxStateActive, + MxStateStandby +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxPlatformCfgInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxPlatformCfgInfo.cs new file mode 100644 index 0000000..6e034da --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxPlatformCfgInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagNmxPlatformCfgInfo +{ + public int HeartbeatPeriod; + + public int HeartbeatsMissedConsecMaxAllowed; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxStatsInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxStatsInfo.cs new file mode 100644 index 0000000..625dcde --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxStatsInfo.cs @@ -0,0 +1,23 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagNmxStatsInfo +{ + public int localSend; + + public int localRecv; + + public int networkSend; + + public int networkRecv; + + public int requestTimedOut; + + public int invalidPlatformId; + + public int invalidEngineId; + + public int engineNotRunning; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxSvcStatsInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxSvcStatsInfo.cs new file mode 100644 index 0000000..a340d4e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagNmxSvcStatsInfo.cs @@ -0,0 +1,47 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagNmxSvcStatsInfo +{ + public int bNetNmxDisconnected; + + public int lNetNmxDisconnectCnt; + + public int lNetNMXHeartbeatsMissedCnt; + + public int lNetNMXHeartbeatsMissedConsecCnt; + + public int lNetNMXHeartbeatsMissedConsecMax; + + public int lNMXRequestsSentOffNodeSizeMax; + + public int lNMXResponsesSentOffNodeSizeMax; + + public int lNMXRequestsRcvdOffNodeCnt; + + public int lNMXRequestsSentOffNodeCnt; + + public int lNMXResponsesRcvdOffNodeCnt; + + public int lNMXResponsesSentOffNodeCnt; + + public int lNMXResponsesRcvdOffNodeAccumSize; + + public int lNMXResponsesSentOffNodeAccumSize; + + public int lNMXRequestsRcvdOffNodeAccumSize; + + public int lNMXRequestsSentOffNodeAccumSize; + + public int lNMXRequestsRcvdOffNodeSizeMax; + + public int lNMXResponsesRcvdOffNodeSizeMax; + + public int lNetNMXHeartbeatPeriod; + + public int lNmxLocalMsgsCnt; + + public int lNmxMsgMxTimeout; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPACKETHEADER.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPACKETHEADER.cs new file mode 100644 index 0000000..de6920b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPACKETHEADER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPACKETHEADER +{ + public int lSize; + + [ComAliasName("Interop.Lmx.ActionTypes")] + public ActionTypes DataType; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformInformation.cs new file mode 100644 index 0000000..c0a3c2d --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformInformation +{ + public int lPlatformId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPlatformName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrMachine; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformProcessInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformProcessInformation.cs new file mode 100644 index 0000000..46d9471 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformProcessInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformProcessInformation +{ + public int lPlatformId; + + public int lProcessId; + + public int lPrivateData; + + public tagPlatformProcessStatus processStatus; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformProcessStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformProcessStatus.cs new file mode 100644 index 0000000..563dfa8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformProcessStatus.cs @@ -0,0 +1,20 @@ +namespace Interop.Lmx; + +public enum tagPlatformProcessStatus +{ + PROCESS_STARTING, + PROCESS_START_FAILED, + PROCESS_STARTED, + PROCESS_STOPPING, + PROCESS_STOP_FAILED, + PROCESS_STOPPED, + PROCESS_TROUBLE, + PROCESS_FAILED, + PROCESS_STARTING_ACTIVE, + PROCESS_STARTING_STANDBY, + PROCESS_SWITCHING_STANDBY, + PROCESS_STOPPING_STANDBY, + PROCESS_RUNNING_ACTIVE, + PROCESS_RUNNING_STANDBY, + PROCESS_STOPPED_STANDBY +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation.cs new file mode 100644 index 0000000..5489af5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation2.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation2.cs new file mode 100644 index 0000000..0c2a555 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation2.cs @@ -0,0 +1,21 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation2 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation3.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation3.cs new file mode 100644 index 0000000..ea93e0f --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation3.cs @@ -0,0 +1,25 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation3 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; + + public int lMasterBuildNumber; + + public int lMinorBuildNumber; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation4.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation4.cs new file mode 100644 index 0000000..75f9b87 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformRegistrationInformation4.cs @@ -0,0 +1,30 @@ +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation4 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; + + public int lMasterBuildNumber; + + public int lMinorBuildNumber; + + public int storeFwdRedundancyTCPPort; + + [MarshalAs(UnmanagedType.BStr)] + public string storeFwdDir; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformStartupSetting.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformStartupSetting.cs new file mode 100644 index 0000000..e435f78 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformStartupSetting.cs @@ -0,0 +1,8 @@ +namespace Interop.Lmx; + +public enum tagPlatformStartupSetting +{ + BOOTSTRAP_START, + SERVICES_START, + ENGINE_START +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformStatus.cs new file mode 100644 index 0000000..f2b8ebd --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagPlatformStatus.cs @@ -0,0 +1,24 @@ +namespace Interop.Lmx; + +public enum tagPlatformStatus +{ + PLATFORM_STARTING, + PLATFORM_START_FAILED, + PLATFORM_STARTED, + PLATFORM_STOPPING, + PLATFORM_STOP_FAILED, + PLATFORM_STOPPED, + PLATFORM_TROUBLE, + PLATFORM_FAILED, + PLATFORM_REGISTERED, + PLATFORM_UNREGISTERED, + PLATFORM_PENDING, + PLATFORM_COMMERROR, + PLATFORM_UNAVAILABLE, + PLATFORM_ADDED, + PLATFORM_REMOVED, + PLATFORM_BOOTSTRAP_STOPPED, + PLATFORM_DEPLOYING, + PLATFORM_UNDEPLOYING, + PLATFORM_CHECKPOINT_FAILED +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyChannel.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyChannel.cs new file mode 100644 index 0000000..ca4562e --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyChannel.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum tagRedundancyChannel +{ + NoChannel, + PrimaryChannel, + SecondaryChannel, + AllChannels +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyEvent.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyEvent.cs new file mode 100644 index 0000000..28a45c3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyEvent.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum tagRedundancyEvent +{ + PartnerStarted, + PartnerShutdown, + PartnerFailed, + PartnerRelocated, + ActiveActiveDetected +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyIdentity.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyIdentity.cs new file mode 100644 index 0000000..c9f10e4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyIdentity.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum tagRedundancyIdentity +{ + Primary = 1, + Backup, + NotRedundant, + RedundancyIdentityUnknown +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyOperation.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyOperation.cs new file mode 100644 index 0000000..c9a512b --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyOperation.cs @@ -0,0 +1,12 @@ +namespace Interop.Lmx; + +public enum tagRedundancyOperation +{ + NoOperation, + SetToActive, + SetToStandby, + PrepareToBeActive, + PrepareToBeStandby, + RetrievePartnerStatus, + SetToShutdown +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyStatus.cs new file mode 100644 index 0000000..74adc32 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancyStatus.cs @@ -0,0 +1,21 @@ +namespace Interop.Lmx; + +public enum tagRedundancyStatus +{ + Startup_DeterminingRedundancyStatus = 0, + Startup_SwitchingTo_Active = 1, + Startup_SwitchingTo_Standby = 2, + Active = 3, + Active_SwitchingToStandby = 4, + Active_StandbyNotAvailable = 5, + Standby_Ready = 6, + Standby_NotReady = 7, + Standby_SyncingData = 8, + Standby_SyncingCode = 9, + Standby_SwitchingToActive = 10, + Standby_MissedHeartbeats = 11, + Status_Unknown = 12, + Status_Failed = 13, + Active_PartnerNotUpgraded = 14, + Status_NoChange = 255 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancySubStatus.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancySubStatus.cs new file mode 100644 index 0000000..9596405 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRedundancySubStatus.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum tagRedundancySubStatus +{ + RedundancySubStatus_NotApplicable = 0, + PartnerNotReachable_OverPrimary = 1, + PartnerNotReachable_OverSecondary = 2, + PartnerNotReachable = 3, + RedundancySubStatus_NoChange = 255 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRegistrationSource.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRegistrationSource.cs new file mode 100644 index 0000000..fae0ceb --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagRegistrationSource.cs @@ -0,0 +1,9 @@ +namespace Interop.Lmx; + +public enum tagRegistrationSource +{ + PLATFORM_SRC_PACKAGE, + PLATFORM_SRC_BOOTSTRAP, + PLATFORM_SRC_INSTALL, + PLATFORM_SRC_DEPLOYCHANGE +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagSTATSTG.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagSTATSTG.cs new file mode 100644 index 0000000..83bfb66 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagSTATSTG.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.Lmx; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct tagSTATSTG +{ + [MarshalAs(UnmanagedType.LPWStr)] + public string pwcsName; + + public uint type; + + public _ULARGE_INTEGER cbSize; + + public _FILETIME mtime; + + public _FILETIME ctime; + + public _FILETIME atime; + + public uint grfMode; + + public uint grfLocksSupported; + + public Guid clsid; + + public uint grfStateBits; + + public uint reserved; +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagWatchdogTimeoutAction.cs b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagWatchdogTimeoutAction.cs new file mode 100644 index 0000000..3bf57d6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Interop/Lmx/tagWatchdogTimeoutAction.cs @@ -0,0 +1,10 @@ +namespace Interop.Lmx; + +public enum tagWatchdogTimeoutAction +{ + TIMEOUT_NO_ACTION = 0, + TIMEOUT_LOG_ERROR = 1, + TIMEOUT_RESTART = 2, + TIMEOUT_SHUTDOWN = 3, + TIMEOUT_REDUNDANT = 16 +} diff --git a/analysis/decompiled-interop/Interop.Lmx/Properties/AssemblyInfo.cs b/analysis/decompiled-interop/Interop.Lmx/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..94c5481 --- /dev/null +++ b/analysis/decompiled-interop/Interop.Lmx/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: TypeLibVersion(1, 0)] +[assembly: Guid("1DAFBF11-5FA9-11D3-813C-00104B5F96A7")] +[assembly: ImportedFromTypeLib("Lmx")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop.LmxProxy.csproj b/analysis/decompiled-interop/Interop.LmxProxy/Interop.LmxProxy.csproj new file mode 100644 index 0000000..72efd59 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop.LmxProxy.csproj @@ -0,0 +1,15 @@ + + + Interop.LmxProxy + False + net40 + + + 14.0 + True + False + + + + + \ No newline at end of file diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/AccessManager.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/AccessManager.cs new file mode 100644 index 0000000..9e09bcd --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/AccessManager.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[CoClass(typeof(AccessManagerClass))] +[Guid("96469CD1-8EF4-11D2-BF61-00104B5F96A7")] +public interface AccessManager : IAccessManagerHost +{ +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/AccessManagerClass.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/AccessManagerClass.cs new file mode 100644 index 0000000..2ad0c9f --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/AccessManagerClass.cs @@ -0,0 +1,123 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("26014181-4FF7-11D2-8FA6-00A0C937AF60")] +[ClassInterface(ClassInterfaceType.None)] +public class AccessManagerClass : IAccessManagerHost, AccessManager, IAccessManagerHost2, IAccessManagerHost3, IAccessManagerHost4, IAccessManagerClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost2_ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost3_ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SwapDataBuffers(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IAccessManagerHost4_SwapDataBuffers(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownMxConsumer(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.IUnknown)] + public virtual extern object CreateMxConnection(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/DataQuality.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/DataQuality.cs new file mode 100644 index 0000000..00685be --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/DataQuality.cs @@ -0,0 +1,10 @@ +namespace Interop.LmxProxy; + +public enum DataQuality +{ + DataQualityUnknown = -1, + DataQualityGood, + DataQualityUncertain, + DataQualityInitializing, + DataQualityBad +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/EAUTHMODE.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/EAUTHMODE.cs new file mode 100644 index 0000000..a659691 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/EAUTHMODE.cs @@ -0,0 +1,9 @@ +namespace Interop.LmxProxy; + +public enum EAUTHMODE +{ + eNone, + eGalaxyOnly, + eOSUserBased, + eOSGroupBased +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ELOGIN.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ELOGIN.cs new file mode 100644 index 0000000..6599eae --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ELOGIN.cs @@ -0,0 +1,11 @@ +namespace Interop.LmxProxy; + +public enum ELOGIN +{ + eInvalidUser = 1, + eInvalidPassword, + ePwdChangeInvalid, + ePwdCahngeSuccess, + eLoginOK, + eSecurityNotEnabled +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameInInfo.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameInInfo.cs new file mode 100644 index 0000000..d37d5d3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameInInfo.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct GetTagNameInInfo +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int callbackId; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameInInfoCS.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameInInfoCS.cs new file mode 100644 index 0000000..4a99c55 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameInInfoCS.cs @@ -0,0 +1,21 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("EBACE03A-2963-433D-A11E-825C52923F31")] +public struct GetTagNameInInfoCS +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int callbackId; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameOutInfo.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameOutInfo.cs new file mode 100644 index 0000000..b393f08 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameOutInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct GetTagNameOutInfo +{ + [ComConversionLoss] + public IntPtr pGalaxyNameString; + + [ComConversionLoss] + public IntPtr pObjectNameString; + + [ComConversionLoss] + public IntPtr pAttributeNameString; + + [ComConversionLoss] + public IntPtr pStatus; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameOutInfoCS.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameOutInfoCS.cs new file mode 100644 index 0000000..648f24f --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/GetTagNameOutInfoCS.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("4B81976C-90BB-4098-A1BB-F6D85F11E496")] +public struct GetTagNameOutInfoCS +{ + [MarshalAs(UnmanagedType.BStr)] + public string pGalaxyNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pObjectNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pAttributeNameString; + + public MxStatus pStatus; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerClient.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerClient.cs new file mode 100644 index 0000000..ecd0137 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerClient.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F2B877E1-1DBE-11D3-80AD-00104B5F96A7")] +public interface IAccessManagerClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.IUnknown)] + object CreateMxConnection(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost.cs new file mode 100644 index 0000000..30929fc --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("96469CD1-8EF4-11D2-BF61-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAccessManagerHost +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessMessages(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost2.cs new file mode 100644 index 0000000..f2cd8ee --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost2.cs @@ -0,0 +1,37 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("02FB8CDD-C214-479C-B9FB-CF7BCC01BB14")] +public interface IAccessManagerHost2 : IAccessManagerHost +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ProcessOutputsEx([In] int lMode); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost3.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost3.cs new file mode 100644 index 0000000..c1312b1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost3.cs @@ -0,0 +1,40 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("EB84CFA8-9CF3-49CB-AFC8-5EFE8D664C81")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IAccessManagerHost3 : IAccessManagerHost2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SwapDataBuffers(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost4.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost4.cs new file mode 100644 index 0000000..c9d68e2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IAccessManagerHost4.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("964EBB72-56D3-48C7-BB75-17646B4D4950")] +public interface IAccessManagerHost4 : IAccessManagerHost3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetEngineId(out int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputs(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInput(out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMiscellaneous(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessMessages(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessDataChange([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessInputEx([In] int lMode, out bool queueWasEmpty, out int messageSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ProcessOutputsEx([In] int lMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SwapDataBuffers(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownMxConsumer(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer.cs new file mode 100644 index 0000000..0279a06 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer.cs @@ -0,0 +1,46 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("CCE67FB7-EAFD-4367-9212-617043BF126D")] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +public interface ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer2.cs new file mode 100644 index 0000000..3d7741c --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer2.cs @@ -0,0 +1,50 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("020A8A87-69C5-497F-A893-B629E669FBFF")] +public interface ILMXProxyServer2 : ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer3.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer3.cs new file mode 100644 index 0000000..dcd74e8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer3.cs @@ -0,0 +1,54 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("57D006B6-F25E-4654-A81E-BCBAFD60FE59")] +public interface ILMXProxyServer3 : ILMXProxyServer2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer4.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer4.cs new file mode 100644 index 0000000..7e12511 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer4.cs @@ -0,0 +1,74 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("9DC0D5C1-9371-4E84-86F8-7091D316A66C")] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +public interface ILMXProxyServer4 : ILMXProxyServer3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer5.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer5.cs new file mode 100644 index 0000000..d3d8547 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ILMXProxyServer5.cs @@ -0,0 +1,82 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +public interface ILMXProxyServer5 : ILMXProxyServer4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + new void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + new void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + new void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + new void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + new void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxBindingService.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxBindingService.cs new file mode 100644 index 0000000..70d022e --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxBindingService.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4391F3F0-49A0-4822-9E93-6DA04A92F434")] +public interface IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterPreboundReference([In] int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxBindingService2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxBindingService2.cs new file mode 100644 index 0000000..bde5612 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxBindingService2.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B69F9918-4393-4F90-8012-D742FEC337BB")] +public interface IMxBindingService2 : IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback.cs new file mode 100644 index 0000000..bf78c75 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CC49CA44-D8CB-11D3-823B-00104B5F96A7")] +public interface IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback2.cs new file mode 100644 index 0000000..05b28d2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("CFC6372F-0DA8-4278-A988-F1825C7916A0")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxCallback2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OperationComplete([In] int lCallbackId, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback3.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback3.cs new file mode 100644 index 0000000..b3d8631 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxCallback3.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("38366038-CD67-457B-8C24-9AD003785798")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxCallback3 : IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult2([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut, [In] short QualityOut, [In] _FILETIME TimestampOut); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxInternalConnection.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxInternalConnection.cs new file mode 100644 index 0000000..3103836 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxInternalConnection.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("74A0D864-4DF5-4C42-841C-4B6265133189")] +public interface IMxInternalConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetReferenceResolutionStatus([In] int refHandle, [In] int objectId, out MxAttributeHandle localPart, out int status); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReference.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReference.cs new file mode 100644 index 0000000..602a90a --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReference.cs @@ -0,0 +1,92 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +public interface IMxReference : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [DispId(1)] + string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInfo.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInfo.cs new file mode 100644 index 0000000..46d271c --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInfo.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("89D91C9B-AD6F-43D4-AA1B-4AB18326C7A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInfo +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameString([In] int lReferenceCount, [In] ref GetTagNameInInfo pGetTagNameInInfo, out GetTagNameOutInfo pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInfoCS.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInfoCS.cs new file mode 100644 index 0000000..27f3a67 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInfoCS.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("11E8356E-0F0D-4D67-974D-925968B66307")] +public interface IMxReferenceInfoCS +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameStringCS([In] GetTagNameInInfoCS pGetTagNameInInfo, out GetTagNameOutInfoCS pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInternals.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInternals.cs new file mode 100644 index 0000000..d716bc9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxReferenceInternals.cs @@ -0,0 +1,20 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("90BEFDF6-C111-4366-A27A-8A88DC87A095")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInternals +{ + [DispId(1)] + MxHandle MxHandle + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + set; + } +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxScanOnDemand.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxScanOnDemand.cs new file mode 100644 index 0000000..40e5a3f --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxScanOnDemand.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("8A4B2077-6E4F-4135-915A-DD952F95EF25")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IncrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DecrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxScanOnDemand2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxScanOnDemand2.cs new file mode 100644 index 0000000..329536d --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxScanOnDemand2.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("8D2EAA56-8512-486B-8FB0-22B3F518CFF7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxScanOnDemand2 : IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IncrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DecrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference2([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection.cs new file mode 100644 index 0000000..be75aca --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection.cs @@ -0,0 +1,26 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +public interface IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection3.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection3.cs new file mode 100644 index 0000000..a68a6a7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection3.cs @@ -0,0 +1,36 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("621B4552-9CDC-440E-BDDC-894536122643")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection3 : IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection5.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection5.cs new file mode 100644 index 0000000..123e5c1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection5.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("52733B9D-1DF4-440F-9320-CFD511FB88F1")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterPreboundReference([In] int preboundReferenceHandle, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection6.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection6.cs new file mode 100644 index 0000000..6c0b10b --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSupervisoryConnection6.cs @@ -0,0 +1,39 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("7F681721-B31D-4A35-A059-D04FA1AA936B")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection6 : IMxSupervisoryConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference2([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection.cs new file mode 100644 index 0000000..318456d --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection.cs @@ -0,0 +1,38 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("CC49CA45-D8CB-11D3-823B-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string SystemGetQualityDescription([In] ref short mxDataQuality); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection2.cs new file mode 100644 index 0000000..45d5639 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection2.cs @@ -0,0 +1,44 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("649EF01C-1384-4979-AF39-83A284E8BAFC")] +public interface IMxSystemConnection2 : IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection3.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection3.cs new file mode 100644 index 0000000..9d5f3e2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxSystemConnection3.cs @@ -0,0 +1,65 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("95EBDC41-C2F7-48AA-B0A0-B3577E165905")] +public interface IMxSystemConnection3 : IMxSystemConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short Quality, [In] _FILETIME Timestamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection.cs new file mode 100644 index 0000000..3f48462 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CC49CA43-D8CB-11D3-823B-00104B5F96A7")] +public interface IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection2.cs new file mode 100644 index 0000000..62b5026 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection2.cs @@ -0,0 +1,40 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("4863541B-B371-4AA2-9378-5347E5D36000")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection2 : IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection3.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection3.cs new file mode 100644 index 0000000..96c1bda --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection3.cs @@ -0,0 +1,64 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F0411F6A-F8C5-49D3-8359-302DC4B9A9F8")] +public interface IMxUserConnection3 : IMxUserConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection4.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection4.cs new file mode 100644 index 0000000..1388855 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection4.cs @@ -0,0 +1,105 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("232A5C28-A9A9-48F7-A256-94018F6F8F49")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection4 : IMxUserConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection5.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection5.cs new file mode 100644 index 0000000..69e21ef --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection5.cs @@ -0,0 +1,108 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4805D9B8-1BD4-4726-81F8-B70BEEB1D7AE")] +public interface IMxUserConnection5 : IMxUserConnection4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection6.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection6.cs new file mode 100644 index 0000000..b356d6d --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxUserConnection6.cs @@ -0,0 +1,111 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("FD619BE8-98D2-46EA-A274-8481C320C662")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection6 : IMxUserConnection5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxValue.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxValue.cs new file mode 100644 index 0000000..452283f --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxValue.cs @@ -0,0 +1,159 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[ComConversionLoss] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxValue : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] MxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxValueFactory.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxValueFactory.cs new file mode 100644 index 0000000..b9e8afd --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IMxValueFactory.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("1B6AEB81-CB43-11D2-BFFF-00104B5F96A7")] +public interface IMxValueFactory +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstance([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceBool([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, bool val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceLong([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, int val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceFloat([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, float val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceDouble([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, double val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceString([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, [MarshalAs(UnmanagedType.LPWStr)] string val); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IPersist.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IPersist.cs new file mode 100644 index 0000000..35494eb --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IPersist.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0000010C-0000-0000-C000-000000000046")] +public interface IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClassID(out Guid pClassID); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IPersistStream.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IPersistStream.cs new file mode 100644 index 0000000..602acdb --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IPersistStream.cs @@ -0,0 +1,26 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("00000109-0000-0000-C000-000000000046")] +public interface IPersistStream : IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetSizeMax(out _ULARGE_INTEGER pcbSize); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IProcessLocale.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IProcessLocale.cs new file mode 100644 index 0000000..599b4d6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IProcessLocale.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("8CF8B900-8D26-11D4-A9A3-0060976445E9")] +public interface IProcessLocale +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetProcessLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetProcessLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetDefaultLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetDefaultLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetThreadLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetThreadLocale(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ISecurityToken.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ISecurityToken.cs new file mode 100644 index 0000000..1699bcf --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ISecurityToken.cs @@ -0,0 +1,26 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("189476D6-63C5-4950-B293-AEEE1A54D906")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ISecurityToken +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetUserId([In][Out] ref VBGUID userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetUserName([In][Out][MarshalAs(UnmanagedType.BStr)] ref string bstrUserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool QueryGroupMembership([In][MarshalAs(UnmanagedType.BStr)] string bstrGroupName, out int plStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetAccessToken(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetUserFullName(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ISequentialStream.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ISequentialStream.cs new file mode 100644 index 0000000..d166df3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ISequentialStream.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0C733A30-2A1C-11CE-ADE5-00AA0044773D")] +public interface ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IStream.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IStream.cs new file mode 100644 index 0000000..faa8174 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IStream.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0000000C-0000-0000-C000-000000000046")] +public interface IStream : ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteSeek([In] _LARGE_INTEGER dlibMove, [In] uint dwOrigin, out _ULARGE_INTEGER plibNewPosition); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSize([In] _ULARGE_INTEGER libNewSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteCopyTo([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] _ULARGE_INTEGER cb, out _ULARGE_INTEGER pcbRead, out _ULARGE_INTEGER pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Commit([In] uint grfCommitFlags); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Revert(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void LockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnlockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Stat(out tagSTATSTG pstatstg, [In] uint grfStatFlag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out IStream ppstm); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator.cs new file mode 100644 index 0000000..9dc702f --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator.cs @@ -0,0 +1,39 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("92FF7FD3-A65F-431C-86AA-7BB502FF0D2C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator2.cs new file mode 100644 index 0000000..5747787 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator2.cs @@ -0,0 +1,43 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("D78A902B-9609-49F6-8760-6A2AEA6CA274")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator2 : IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator3.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator3.cs new file mode 100644 index 0000000..a3976a8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator3.cs @@ -0,0 +1,47 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("73ECBF0E-8A67-4878-8DED-934F6DBD943B")] +public interface IUserAuthenticator3 : IUserAuthenticator2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator4.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator4.cs new file mode 100644 index 0000000..bc95600 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator4.cs @@ -0,0 +1,50 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("E72606A1-3DF5-4D7E-BD66-0AADA70E98D8")] +public interface IUserAuthenticator4 : IUserAuthenticator3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator5.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator5.cs new file mode 100644 index 0000000..7cb83df --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator5.cs @@ -0,0 +1,54 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("9F2DFE15-108F-44AF-A40E-04BBD85FE755")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator5 : IUserAuthenticator4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator6.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator6.cs new file mode 100644 index 0000000..dee0217 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator6.cs @@ -0,0 +1,61 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("430CD0D2-5C05-4621-A286-AECEBFABABEC")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator6 : IUserAuthenticator5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator7.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator7.cs new file mode 100644 index 0000000..1209d4c --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/IUserAuthenticator7.cs @@ -0,0 +1,64 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0759D857-2EC6-481B-B497-117A6A4F7204")] +public interface IUserAuthenticator7 : IUserAuthenticator6 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + new byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsSecurityForGalaxyEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, out bool bEnable); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/InternationalizedString.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/InternationalizedString.cs new file mode 100644 index 0000000..7bea4b0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/InternationalizedString.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("43529BD9-3860-4343-BC7E-697B9F8B344D")] +public struct InternationalizedString +{ + public int locale; + + [MarshalAs(UnmanagedType.BStr)] + public string internationalizedStr; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/LMXProxyServer.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/LMXProxyServer.cs new file mode 100644 index 0000000..731f1f6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/LMXProxyServer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +[CoClass(typeof(LMXProxyServerClass))] +public interface LMXProxyServer : ILMXProxyServer5, _ILMXProxyServerEvents_Event +{ +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/LMXProxyServerClass.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/LMXProxyServerClass.cs new file mode 100644 index 0000000..8c57b19 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/LMXProxyServerClass.cs @@ -0,0 +1,92 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[ComSourceInterfaces("Interop.LmxProxy._ILMXProxyServerEvents\0Interop.LmxProxy._ILMXProxyServerEvents2\0\0")] +[Guid("C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class LMXProxyServerClass : ILMXProxyServer5, LMXProxyServer, _ILMXProxyServerEvents_Event, _ILMXProxyServerEvents2_Event +{ + public virtual extern event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + public virtual extern event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + public virtual extern event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; + + public virtual extern event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + public virtual extern int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + public virtual extern void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + public virtual extern int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + public virtual extern void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + public virtual extern void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + public virtual extern void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + public virtual extern void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + public virtual extern void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + public virtual extern int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + public virtual extern int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + public virtual extern int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + public virtual extern void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + public virtual extern void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + public virtual extern void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + public virtual extern void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + public virtual extern void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + public virtual extern int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + public virtual extern void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MXSTATUS_PROXY.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MXSTATUS_PROXY.cs new file mode 100644 index 0000000..bc287da --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MXSTATUS_PROXY.cs @@ -0,0 +1,16 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("A162D9E4-9019-42F3-A087-79264007E542")] +public struct MXSTATUS_PROXY +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxAttributeHandle.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxAttributeHandle.cs new file mode 100644 index 0000000..b6a0fad --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxAttributeHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAttributeHandle +{ + public short primitiveId; + + public short attributeId; + + public short propertyId; + + public ushort signature; + + public short index1; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxAutomationObjectHandle.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxAutomationObjectHandle.cs new file mode 100644 index 0000000..46c3082 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxAutomationObjectHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAutomationObjectHandle +{ + public byte galaxy; + + public ushort platform; + + public ushort engine; + + public ushort @object; + + public ushort signature; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxConnection.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxConnection.cs new file mode 100644 index 0000000..ddf493a --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxConnection.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +[CoClass(typeof(MxConnectionClass))] +public interface MxConnection : IMxSupervisoryConnection +{ +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxConnectionClass.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxConnectionClass.cs new file mode 100644 index 0000000..37d50e0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxConnectionClass.cs @@ -0,0 +1,583 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("F2B877E7-1DBE-11D3-80AD-00104B5F96A7")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class MxConnectionClass : IMxSupervisoryConnection, MxConnection, IMxSupervisoryConnection3, IMxUserConnection, IMxUserConnection2, IMxUserConnection3, IMxUserConnection4, IMxUserConnection5, IMxUserConnection6, IMxSystemConnection, IMxSystemConnection2, IMxSystemConnection3, IMxBindingService, IMxBindingService2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSupervisoryConnection3_SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSupervisoryConnection3_SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection2_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection2_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection3_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection3_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection3_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection4_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection4_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection4_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection5_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection6_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection2_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection2_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection3_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection3_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short Quality, [In] _FILETIME Timestamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxDataType.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxDataType.cs new file mode 100644 index 0000000..5f1f042 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxDataType.cs @@ -0,0 +1,24 @@ +namespace Interop.LmxProxy; + +public enum MxDataType +{ + MxDataTypeUnknown = -1, + MxNoData, + MxBoolean, + MxInteger, + MxFloat, + MxDouble, + MxString, + MxTime, + MxElapsedTime, + MxReferenceType, + MxStatusType, + MxDataTypeEnum, + MxSecurityClassificationEnum, + MxDataQualityType, + MxQualifiedEnum, + MxQualifiedStruct, + MxInternationalizedString, + MxBigString, + MxDataTypeEND +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxHandle.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxHandle.cs new file mode 100644 index 0000000..7450b54 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxHandle.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxHandle +{ + public MxAutomationObjectHandle @object; + + public MxAttributeHandle attribute; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxReference.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxReference.cs new file mode 100644 index 0000000..4af1a3b --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxReference.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +[CoClass(typeof(MxReferenceClass))] +public interface MxReference : IMxReference +{ +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxReferenceClass.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxReferenceClass.cs new file mode 100644 index 0000000..20edc29 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxReferenceClass.cs @@ -0,0 +1,93 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[Guid("6C449378-EE5F-428C-BB95-01AE4573C742")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class MxReferenceClass : IMxReference, MxReference +{ + [DispId(1)] + public virtual extern string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + public virtual extern string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + public virtual extern string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + public virtual extern MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + public virtual extern MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + public virtual extern string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxResolutionStatus.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxResolutionStatus.cs new file mode 100644 index 0000000..96fa2ee --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxResolutionStatus.cs @@ -0,0 +1,9 @@ +namespace Interop.LmxProxy; + +public enum MxResolutionStatus +{ + MxReferenceUndefined = -1, + MxReferenceUnresolved, + MxReferenceResolved, + MxReferenceAttributeNotPresent +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxScanState.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxScanState.cs new file mode 100644 index 0000000..e7a670b --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxScanState.cs @@ -0,0 +1,7 @@ +namespace Interop.LmxProxy; + +public enum MxScanState +{ + MxOnScan, + MxOffScan +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxSecurityClassification.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxSecurityClassification.cs new file mode 100644 index 0000000..3b95a7a --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxSecurityClassification.cs @@ -0,0 +1,13 @@ +namespace Interop.LmxProxy; + +public enum MxSecurityClassification +{ + MxSecurityUndefined = -1, + MxSecurityFreeAccess, + MxSecurityOperate, + MxSecuritySecuredWrite, + MxSecurityVerifiedWrite, + MxSecurityTune, + MxSecurityConfigure, + MxSecurityViewOnly +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatus.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatus.cs new file mode 100644 index 0000000..366fe22 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatus.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct MxStatus +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusCategory.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusCategory.cs new file mode 100644 index 0000000..c2a5c07 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusCategory.cs @@ -0,0 +1,15 @@ +namespace Interop.LmxProxy; + +public enum MxStatusCategory +{ + MxStatusCategoryUnknown = -1, + MxCategoryOk, + MxCategoryPending, + MxCategoryWarning, + MxCategoryCommunicationError, + MxCategoryConfigurationError, + MxCategoryOperationalError, + MxCategorySecurityError, + MxCategorySoftwareError, + MxCategoryOtherError +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusDetail.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusDetail.cs new file mode 100644 index 0000000..ffaa98d --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusDetail.cs @@ -0,0 +1,51 @@ +namespace Interop.LmxProxy; + +public enum MxStatusDetail +{ + MX_S_Success = 0, + MX_E_RequestTimedOut = 1, + MX_E_PlatformCommunicationError = 2, + MX_E_InvalidPlatformId = 3, + MX_E_InvalidEngineId = 4, + MX_E_EngineCommunicationError = 5, + MX_E_InvalidReference = 6, + MX_E_NoGalaxyRepository = 7, + MX_E_InvalidObjectId = 8, + MX_E_ObjectSignatureMismatch = 9, + MX_E_AttributeSignatureMismatch = 10, + MX_E_ResolvingAttribute = 11, + MX_E_ResolvingObject = 12, + MX_E_WrongDataType = 13, + MX_E_WrongNumberOfDimensions = 14, + MX_E_InvalidIndex = 15, + MX_E_IndexOutOfOrder = 16, + MX_E_DimensionDoesNotExist = 17, + MX_E_ConversionNotSupported = 18, + MX_E_UnableToConvertString = 19, + MX_E_Overflow = 20, + MX_E_NmxVersionMismatch = 21, + MX_E_NmxInvalidCommand = 22, + MX_E_LmxVersionMismatch = 23, + MX_E_LmxInvalidCommand = 24, + MX_E_GalaxyRepositoryBusy = 25, + MX_E_EngineOverloaded = 26, + MX_E_InvalidPrimitiveId = 1000, + MX_E_InvalidAttributeId = 1001, + MX_E_InvalidPropertyId = 1002, + MX_E_IndexOutOfRange = 1003, + MX_E_DataOutOfRange = 1004, + MX_E_IncorrectDataType = 1005, + MX_E_NotReadable = 1006, + MX_E_NotWriteable = 1007, + MX_E_WriteAccessDenied = 1008, + MX_E_UnknownError = 1009, + MX_E_ObjectInitializing = 1010, + MX_E_EngineInitializing = 1011, + MX_E_SecuredWrite = 1012, + MX_E_VerifiedWrite = 1013, + MX_E_NoAlarmAckPrivilege = 1014, + MX_E_AlarmAckedAlready = 1015, + MX_E_UserNotHavingAccessRights = 1016, + MX_E_VerifierNotHavingVerifyRights = 1017, + MX_E_AutomationObjectSpecificError = 8000 +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusSource.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusSource.cs new file mode 100644 index 0000000..1837d19 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxStatusSource.cs @@ -0,0 +1,12 @@ +namespace Interop.LmxProxy; + +public enum MxStatusSource +{ + MxSourceUnknown = -1, + MxSourceRequestingLmx, + MxSourceRespondingLmx, + MxSourceRequestingNmx, + MxSourceRespondingNmx, + MxSourceRequestingAutomationObject, + MxSourceRespondingAutomationObject +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxValue.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxValue.cs new file mode 100644 index 0000000..23a0e9e --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxValue.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +[CoClass(typeof(MxValueClass))] +public interface MxValue : IMxValue +{ +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxValueClass.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxValueClass.cs new file mode 100644 index 0000000..ee94f31 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/MxValueClass.cs @@ -0,0 +1,160 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ComConversionLoss] +[Guid("51D955B1-B086-11D2-BFB1-00104B5F96A7")] +[ClassInterface(ClassInterfaceType.None)] +public class MxValueClass : IMxValue, MxValue +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] MxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ProcessLocale.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ProcessLocale.cs new file mode 100644 index 0000000..457d65b --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ProcessLocale.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[CoClass(typeof(ProcessLocaleClass))] +[Guid("8CF8B900-8D26-11D4-A9A3-0060976445E9")] +public interface ProcessLocale : IProcessLocale +{ +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ProcessLocaleClass.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ProcessLocaleClass.cs new file mode 100644 index 0000000..c70e1d5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/ProcessLocaleClass.cs @@ -0,0 +1,29 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[Guid("82807A20-8D26-11D4-A9A3-0060976445E9")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class ProcessLocaleClass : IProcessLocale, ProcessLocale +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetProcessLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetProcessLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetDefaultLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetDefaultLocale(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetThreadLocale([In] int localeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetThreadLocale(); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserASBToken.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserASBToken.cs new file mode 100644 index 0000000..c234f8e --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserASBToken.cs @@ -0,0 +1,38 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("D38E49FF-C0EA-4232-9552-8BA2147F0863")] +public struct UserASBToken +{ + public ushort Encryption; + + public short EncryptionSpecified; + + [MarshalAs(UnmanagedType.BStr)] + public string HostName; + + public ushort IdType; + + public short IdTypeSpecified; + + [MarshalAs(UnmanagedType.BStr)] + public string LocationID; + + [MarshalAs(UnmanagedType.BStr)] + public string Password; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] SamlToken; + + [MarshalAs(UnmanagedType.BStr)] + public string UserName; + + public ushort Validity; + + public short ValiditySpecified; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] X509Certificate; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserAuthenticator.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserAuthenticator.cs new file mode 100644 index 0000000..ba0d2b4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserAuthenticator.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[CoClass(typeof(UserAuthenticatorClass))] +[Guid("0759D857-2EC6-481B-B497-117A6A4F7204")] +public interface UserAuthenticator : IUserAuthenticator7 +{ +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserAuthenticatorClass.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserAuthenticatorClass.cs new file mode 100644 index 0000000..80d91c6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/UserAuthenticatorClass.cs @@ -0,0 +1,293 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("FC3501EB-5883-4B82-B286-9AFB2956B469")] +[ComConversionLoss] +[ClassInterface(ClassInterfaceType.None)] +public class UserAuthenticatorClass : IUserAuthenticator7, UserAuthenticator, IUserAuthenticator6, IUserAuthenticator5, IUserAuthenticator4, IUserAuthenticator3, IUserAuthenticator2, IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public virtual extern byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsSecurityForGalaxyEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator6_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator6_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator6_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator6_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator6_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator6_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr IUserAuthenticator6_GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public virtual extern byte[] IUserAuthenticator6_LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator6_ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator5_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator5_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator5_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator5_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator5_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator5_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr IUserAuthenticator5_GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator4_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator4_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator4_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator4_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator4_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator4_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator3_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator3_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator3_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator3_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator3_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator2_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator2_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator2_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator2_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator2_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VBFILETIME.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VBFILETIME.cs new file mode 100644 index 0000000..e3b48e5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VBFILETIME.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("09721FDD-046A-45D7-9BF8-7F6F9ED3934E")] +public struct VBFILETIME +{ + public int LowDateTime; + + public int HighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VBGUID.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VBGUID.cs new file mode 100644 index 0000000..4de3112 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VBGUID.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("CB6EA3AE-3D97-11D4-AA6D-00A0C9FB522A")] +public struct VBGUID +{ + public int Data1; + + public short Data2; + + public short Data3; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + public byte[] Data4; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VB_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VB_LARGE_INTEGER.cs new file mode 100644 index 0000000..c7e4951 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/VB_LARGE_INTEGER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("BEACE14F-AAA2-412A-B113-F7FC00F2BD25")] +public struct VB_LARGE_INTEGER +{ + public int LowPart; + + public int HighPart; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_FILETIME.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_FILETIME.cs new file mode 100644 index 0000000..c8e4a7e --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_FILETIME.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct _FILETIME +{ + public uint dwLowDateTime; + + public uint dwHighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents.cs new file mode 100644 index 0000000..d2dc6aa --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents.cs @@ -0,0 +1,23 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] +[Guid("848299B6-DD61-4A0D-A304-3947A564B89C")] +public interface _ILMXProxyServerEvents +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(2)] + void OnWriteComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(3)] + void OperationComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2.cs new file mode 100644 index 0000000..bd017b5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2.cs @@ -0,0 +1,15 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComImport] +[Guid("C70A6FC4-09EF-4F31-8874-A049FEE87A95")] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] +public interface _ILMXProxyServerEvents2 +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnBufferedDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_Event.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_Event.cs new file mode 100644 index 0000000..91f78ed --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_Event.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComVisible(false)] +[ComEventInterface(typeof(_ILMXProxyServerEvents2), typeof(_ILMXProxyServerEvents2_EventProvider))] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public interface _ILMXProxyServerEvents2_Event +{ + event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_EventProvider.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_EventProvider.cs new file mode 100644 index 0000000..ddab170 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_EventProvider.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.LmxProxy; + +internal sealed class _ILMXProxyServerEvents2_EventProvider : _ILMXProxyServerEvents2_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 196, 111, 10, 199, 239, 9, 49, 79, 136, 116, + 160, 73, 254, 232, 122, 149 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = new _ILMXProxyServerEvents2_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents2_SinkHelper, out pdwCookie); + iLMXProxyServerEvents2_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents2_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate != null && ((iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public _ILMXProxyServerEvents2_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs new file mode 100644 index 0000000..c20ecac --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_SinkHelper.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_SinkHelper.cs new file mode 100644 index 0000000..b9682f7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents2_SinkHelper.cs @@ -0,0 +1,28 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ClassInterface(ClassInterfaceType.None)] +public sealed class _ILMXProxyServerEvents2_SinkHelper : _ILMXProxyServerEvents2 +{ + public _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler m_OnBufferedDataChangeDelegate; + + public int m_dwCookie; + + public void OnBufferedDataChange(int P_0, int P_1, MxDataType P_2, object P_3, object P_4, object P_5, ref MXSTATUS_PROXY[] P_6) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnBufferedDataChangeDelegate != null) + { + m_OnBufferedDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, P_5, ref P_6); + } + } + + internal _ILMXProxyServerEvents2_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnBufferedDataChangeDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_Event.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_Event.cs new file mode 100644 index 0000000..7a61dee --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_Event.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComEventInterface(typeof(_ILMXProxyServerEvents), typeof(_ILMXProxyServerEvents_EventProvider))] +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public interface _ILMXProxyServerEvents_Event +{ + event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_EventProvider.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_EventProvider.cs new file mode 100644 index 0000000..e3bf0c3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_EventProvider.cs @@ -0,0 +1,288 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.LmxProxy; + +internal sealed class _ILMXProxyServerEvents_EventProvider : _ILMXProxyServerEvents_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 182, 153, 130, 132, 97, 221, 13, 74, 163, 4, + 57, 71, 165, 100, 184, 156 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void add_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void add_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public _ILMXProxyServerEvents_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs new file mode 100644 index 0000000..dec9ad4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents_OnDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs new file mode 100644 index 0000000..9f67d9f --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents_OnWriteCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs new file mode 100644 index 0000000..d077a7b --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents_OperationCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_SinkHelper.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_SinkHelper.cs new file mode 100644 index 0000000..3ab687c --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ILMXProxyServerEvents_SinkHelper.cs @@ -0,0 +1,52 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class _ILMXProxyServerEvents_SinkHelper : _ILMXProxyServerEvents +{ + public _ILMXProxyServerEvents_OnDataChangeEventHandler m_OnDataChangeDelegate; + + public _ILMXProxyServerEvents_OnWriteCompleteEventHandler m_OnWriteCompleteDelegate; + + public _ILMXProxyServerEvents_OperationCompleteEventHandler m_OperationCompleteDelegate; + + public int m_dwCookie; + + public void OnDataChange(int P_0, int P_1, object P_2, int P_3, object P_4, ref MXSTATUS_PROXY[] P_5) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnDataChangeDelegate != null) + { + m_OnDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, ref P_5); + } + } + + public void OnWriteComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnWriteCompleteDelegate != null) + { + m_OnWriteCompleteDelegate(P_0, P_1, ref P_2); + } + } + + public void OperationComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OperationCompleteDelegate != null) + { + m_OperationCompleteDelegate(P_0, P_1, ref P_2); + } + } + + internal _ILMXProxyServerEvents_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnDataChangeDelegate = null; + m_OnWriteCompleteDelegate = null; + m_OperationCompleteDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_LARGE_INTEGER.cs new file mode 100644 index 0000000..d8996f1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_LARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _LARGE_INTEGER +{ + public long QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ULARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ULARGE_INTEGER.cs new file mode 100644 index 0000000..8e4f992 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/_ULARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _ULARGE_INTEGER +{ + public ulong QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/tagSTATSTG.cs b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/tagSTATSTG.cs new file mode 100644 index 0000000..f4187f2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Interop/LmxProxy/tagSTATSTG.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.LmxProxy; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct tagSTATSTG +{ + [MarshalAs(UnmanagedType.LPWStr)] + public string pwcsName; + + public uint type; + + public _ULARGE_INTEGER cbSize; + + public _FILETIME mtime; + + public _FILETIME ctime; + + public _FILETIME atime; + + public uint grfMode; + + public uint grfLocksSupported; + + public Guid clsid; + + public uint grfStateBits; + + public uint reserved; +} diff --git a/analysis/decompiled-interop/Interop.LmxProxy/Properties/AssemblyInfo.cs b/analysis/decompiled-interop/Interop.LmxProxy/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..adee12d --- /dev/null +++ b/analysis/decompiled-interop/Interop.LmxProxy/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: TypeLibVersion(1, 0)] +[assembly: Guid("C36ECF28-3EF3-4528-9843-81D7FDC86328")] +[assembly: ImportedFromTypeLib("LMXPROXYLib")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop.MXAccess32.csproj b/analysis/decompiled-interop/Interop.MXAccess32/Interop.MXAccess32.csproj new file mode 100644 index 0000000..5f11a62 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop.MXAccess32.csproj @@ -0,0 +1,15 @@ + + + Interop.MXAccess32 + False + net40 + + + 14.0 + True + False + + + + + \ No newline at end of file diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer.cs new file mode 100644 index 0000000..8fa9f00 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer.cs @@ -0,0 +1,46 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("CCE67FB7-EAFD-4367-9212-617043BF126D")] +public interface ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer2.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer2.cs new file mode 100644 index 0000000..cdb318b --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer2.cs @@ -0,0 +1,50 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("020A8A87-69C5-497F-A893-B629E669FBFF")] +public interface ILMXProxyServer2 : ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer3.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer3.cs new file mode 100644 index 0000000..f335a3f --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer3.cs @@ -0,0 +1,54 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("57D006B6-F25E-4654-A81E-BCBAFD60FE59")] +public interface ILMXProxyServer3 : ILMXProxyServer2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer4.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer4.cs new file mode 100644 index 0000000..cec27c9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer4.cs @@ -0,0 +1,74 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[Guid("9DC0D5C1-9371-4E84-86F8-7091D316A66C")] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +public interface ILMXProxyServer4 : ILMXProxyServer3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer5.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer5.cs new file mode 100644 index 0000000..4365651 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/ILMXProxyServer5.cs @@ -0,0 +1,82 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FDual | TypeLibTypeFlags.FDispatchable)] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +public interface ILMXProxyServer5 : ILMXProxyServer4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + new void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + new void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + new void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + new void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + new void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/LMXProxyServer.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/LMXProxyServer.cs new file mode 100644 index 0000000..72e6529 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/LMXProxyServer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +[CoClass(typeof(LMXProxyServerClass))] +public interface LMXProxyServer : ILMXProxyServer5, _ILMXProxyServerEvents_Event +{ +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/LMXProxyServerClass.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/LMXProxyServerClass.cs new file mode 100644 index 0000000..386415f --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/LMXProxyServerClass.cs @@ -0,0 +1,92 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[Guid("C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +[ComSourceInterfaces("Interop.MXAccess32._ILMXProxyServerEvents\0Interop.MXAccess32._ILMXProxyServerEvents2\0\0")] +public class LMXProxyServerClass : ILMXProxyServer5, LMXProxyServer, _ILMXProxyServerEvents_Event, _ILMXProxyServerEvents2_Event +{ + public virtual extern event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + public virtual extern event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + public virtual extern event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; + + public virtual extern event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + public virtual extern int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + public virtual extern void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + public virtual extern int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + public virtual extern void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + public virtual extern void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + public virtual extern void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + public virtual extern void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + public virtual extern void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + public virtual extern int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + public virtual extern int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + public virtual extern int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + public virtual extern void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + public virtual extern void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + public virtual extern void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + public virtual extern void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + public virtual extern void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + public virtual extern int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + public virtual extern void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MXSTATUS_PROXY.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MXSTATUS_PROXY.cs new file mode 100644 index 0000000..7eaf210 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MXSTATUS_PROXY.cs @@ -0,0 +1,16 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("A162D9E4-9019-42F3-A087-79264007E542")] +public struct MXSTATUS_PROXY +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxDataType.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxDataType.cs new file mode 100644 index 0000000..0208ec3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxDataType.cs @@ -0,0 +1,24 @@ +namespace Interop.MXAccess32; + +public enum MxDataType +{ + MxDataTypeUnknown = -1, + MxNoData, + MxBoolean, + MxInteger, + MxFloat, + MxDouble, + MxString, + MxTime, + MxElapsedTime, + MxReferenceType, + MxStatusType, + MxDataTypeEnum, + MxSecurityClassificationEnum, + MxDataQualityType, + MxQualifiedEnum, + MxQualifiedStruct, + MxInternationalizedString, + MxBigString, + MxDataTypeEND +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatus.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatus.cs new file mode 100644 index 0000000..a0119ab --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatus.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct MxStatus +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatusCategory.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatusCategory.cs new file mode 100644 index 0000000..c4b6d7a --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatusCategory.cs @@ -0,0 +1,15 @@ +namespace Interop.MXAccess32; + +public enum MxStatusCategory +{ + MxStatusCategoryUnknown = -1, + MxCategoryOk, + MxCategoryPending, + MxCategoryWarning, + MxCategoryCommunicationError, + MxCategoryConfigurationError, + MxCategoryOperationalError, + MxCategorySecurityError, + MxCategorySoftwareError, + MxCategoryOtherError +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatusSource.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatusSource.cs new file mode 100644 index 0000000..76e6462 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/MxStatusSource.cs @@ -0,0 +1,12 @@ +namespace Interop.MXAccess32; + +public enum MxStatusSource +{ + MxSourceUnknown = -1, + MxSourceRequestingLmx, + MxSourceRespondingLmx, + MxSourceRequestingNmx, + MxSourceRespondingNmx, + MxSourceRequestingAutomationObject, + MxSourceRespondingAutomationObject +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents.cs new file mode 100644 index 0000000..a586ee2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents.cs @@ -0,0 +1,23 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[Guid("848299B6-DD61-4A0D-A304-3947A564B89C")] +public interface _ILMXProxyServerEvents +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(2)] + void OnWriteComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(3)] + void OperationComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2.cs new file mode 100644 index 0000000..7ab4394 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2.cs @@ -0,0 +1,15 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComImport] +[Guid("C70A6FC4-09EF-4F31-8874-A049FEE87A95")] +[TypeLibType(TypeLibTypeFlags.FDispatchable)] +[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] +public interface _ILMXProxyServerEvents2 +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnBufferedDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_Event.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_Event.cs new file mode 100644 index 0000000..84a97be --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_Event.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComEventInterface(typeof(_ILMXProxyServerEvents2), typeof(_ILMXProxyServerEvents2_EventProvider))] +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public interface _ILMXProxyServerEvents2_Event +{ + event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_EventProvider.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_EventProvider.cs new file mode 100644 index 0000000..d8d0845 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_EventProvider.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.MXAccess32; + +internal sealed class _ILMXProxyServerEvents2_EventProvider : _ILMXProxyServerEvents2_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 196, 111, 10, 199, 239, 9, 49, 79, 136, 116, + 160, 73, 254, 232, 122, 149 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = new _ILMXProxyServerEvents2_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents2_SinkHelper, out pdwCookie); + iLMXProxyServerEvents2_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents2_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate != null && ((iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public _ILMXProxyServerEvents2_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs new file mode 100644 index 0000000..81b1ae6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +public delegate void _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_SinkHelper.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_SinkHelper.cs new file mode 100644 index 0000000..c343a05 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents2_SinkHelper.cs @@ -0,0 +1,28 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class _ILMXProxyServerEvents2_SinkHelper : _ILMXProxyServerEvents2 +{ + public _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler m_OnBufferedDataChangeDelegate; + + public int m_dwCookie; + + public void OnBufferedDataChange(int P_0, int P_1, MxDataType P_2, object P_3, object P_4, object P_5, ref MXSTATUS_PROXY[] P_6) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnBufferedDataChangeDelegate != null) + { + m_OnBufferedDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, P_5, ref P_6); + } + } + + internal _ILMXProxyServerEvents2_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnBufferedDataChangeDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_Event.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_Event.cs new file mode 100644 index 0000000..6bf7328 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_Event.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComEventInterface(typeof(_ILMXProxyServerEvents), typeof(_ILMXProxyServerEvents_EventProvider))] +public interface _ILMXProxyServerEvents_Event +{ + event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_EventProvider.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_EventProvider.cs new file mode 100644 index 0000000..f491b71 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_EventProvider.cs @@ -0,0 +1,288 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.MXAccess32; + +internal sealed class _ILMXProxyServerEvents_EventProvider : _ILMXProxyServerEvents_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 182, 153, 130, 132, 97, 221, 13, 74, 163, 4, + 57, 71, 165, 100, 184, 156 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void add_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void add_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public _ILMXProxyServerEvents_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs new file mode 100644 index 0000000..29c4468 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents_OnDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs new file mode 100644 index 0000000..095ab48 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents_OnWriteCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs new file mode 100644 index 0000000..a9a1998 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public delegate void _ILMXProxyServerEvents_OperationCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_SinkHelper.cs b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_SinkHelper.cs new file mode 100644 index 0000000..58748f6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Interop/MXAccess32/_ILMXProxyServerEvents_SinkHelper.cs @@ -0,0 +1,52 @@ +using System.Runtime.InteropServices; + +namespace Interop.MXAccess32; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class _ILMXProxyServerEvents_SinkHelper : _ILMXProxyServerEvents +{ + public _ILMXProxyServerEvents_OnDataChangeEventHandler m_OnDataChangeDelegate; + + public _ILMXProxyServerEvents_OnWriteCompleteEventHandler m_OnWriteCompleteDelegate; + + public _ILMXProxyServerEvents_OperationCompleteEventHandler m_OperationCompleteDelegate; + + public int m_dwCookie; + + public void OnDataChange(int P_0, int P_1, object P_2, int P_3, object P_4, ref MXSTATUS_PROXY[] P_5) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnDataChangeDelegate != null) + { + m_OnDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, ref P_5); + } + } + + public void OnWriteComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnWriteCompleteDelegate != null) + { + m_OnWriteCompleteDelegate(P_0, P_1, ref P_2); + } + } + + public void OperationComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OperationCompleteDelegate != null) + { + m_OperationCompleteDelegate(P_0, P_1, ref P_2); + } + } + + internal _ILMXProxyServerEvents_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnDataChangeDelegate = null; + m_OnWriteCompleteDelegate = null; + m_OperationCompleteDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.MXAccess32/Properties/AssemblyInfo.cs b/analysis/decompiled-interop/Interop.MXAccess32/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..1e4e8a9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.MXAccess32/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: ImportedFromTypeLib("LMXPROXYLib")] +[assembly: Guid("77E896EC-B3E3-4DE4-B96F-F32570164211")] +[assembly: TypeLibVersion(3, 2)] +[assembly: AssemblyVersion("3.2.0.0")] diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop.NmxAdptr.csproj b/analysis/decompiled-interop/Interop.NmxAdptr/Interop.NmxAdptr.csproj new file mode 100644 index 0000000..fe6b137 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop.NmxAdptr.csproj @@ -0,0 +1,15 @@ + + + Interop.NmxAdptr + False + net40 + + + 14.0 + True + False + + + + + \ No newline at end of file diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ActionTypes.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ActionTypes.cs new file mode 100644 index 0000000..4d5f4b7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ActionTypes.cs @@ -0,0 +1,55 @@ +namespace Interop.NmxAdptr; + +public enum ActionTypes +{ + OPENCONNECTION = 0, + FMCACCEPTEDCONN = 1, + SECURE_OPEN_CONNECTION = 256, + NewConnectionReq = 257, + CheckpointData = 258, + FMTYPE_PLATFORM_INFO_REQ = 4096, + FMTYPE_PLATFORM_INFO_RESP = 4097, + FMTYPE_SUBSCRIBE_HEARTBEAT_REQ = 4098, + FMTYPE_SUBSCRIBE_HEARTBEAT_RESP = 4099, + FMTYPE_PLATFORM_HEARTBEAT = 4112, + FMTYPE_GET_PARTNER_ENGINE_INFO_REQ = 4352, + FMTYPE_GET_PARTNER_ENGINE_INFO_RESP = 4353, + FMTYPE_SET_HEARTBEAT_REQ = 4354, + FMTYPE_SET_HEARTBEAT_RESP = 4355, + FMTYPE_SET_PARTNER_HEARTBEAT_REQ = 4356, + FMTYPE_SET_PARTNER_HEARTBEAT_RESP = 4357, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_REQ = 4358, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_RESP = 4359, + FMTYPE_SUBSCRIBE_STATUS_RESQ = 4360, + FMTYPE_SUBSCRIBE_STATUS_RESP = 4361, + FMTYPE_UNSUBSCRIBE_STATUS_RESQ = 4362, + FMTYPE_UNSUBSCRIBE_STATUS_RESP = 4363, + FMTYPE_REFRESH_STATUS_RESQ = 4364, + FMTYPE_REFRESH_STATUS_RESP = 4365, + FMTYPE_REDUNDANCY_STATUS_REQ = 4366, + FMTYPE_REDUNDANCY_STATUS_RESP = 4367, + FMTYPE_PLATFORM_STATUS_REQ = 4368, + FMTYPE_PLATFORM_STATUS_RESP = 4369, + FMTYPE_REDUNDANCY_ENGINE_INFO_REQ = 4370, + FMTYPE_REDUNDANCY_ENGINE_INFO_RESP = 4371, + FMTYPE_ENGINE_FAILOVER_OPERATION_REQ = 4372, + FMTYPE_ENGINE_FAILOVER_OPERATION_RESP = 4373, + FMTYPE_ENGINE_SWITCHING_TO_ACTIVE_NOTIFICATION_REQ = 4374, + FMTYPE_ENGINE_FAILOVER_DATA = 4416, + FMTYPE_ENGINE_FAILOVER_DATA_ACK = 4417, + FMTYPE_ENGINE_SUBSCRIBER_LIST = 4418, + FMTYPE_ENGINE_SUBSCRIBER_LIST_ACK = 4419, + FMTYPE_ENGINE_FAILOVER_STATUS = 4480, + FMTYPE_ENGINE_FAILOVER_STATUS_ACK = 4481, + FMTYPE_ENGINE_PROCESS_STATUS = 4482, + FMTYPE_ENGINE_PROCESS_STATUS_ACK = 4483, + FMTYPE_PLATFORM_STATUS = 4484, + NMXMTYPE_ENGINE_DATA = 4608, + NMXMTYPE_SET_HEARTBEAT_RATE = 4609, + NMXMTYPE_PLATFORM_HEARTBEAT = 4610, + NMXMTYPE_GET_HEARTBEAT_RATE = 4611, + NMXMTYPE_HEARTBEAT_DISCONNECT_REQ = 4612, + NMXMTYPE_CONNECT_INFO = 4613, + NMXMTYPE_CONNECT_INFO_REQ = 4614, + NMXMTYPE_VERSION_ERROR = 4615 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIBootstrapStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIBootstrapStatusCallback.cs new file mode 100644 index 0000000..6e9425e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIBootstrapStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("1E8D6971-00DB-461D-A8F9-42733B889966")] +public interface AsyncIBootstrapStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyPlatformStatus(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIPlatformStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIPlatformStatusCallback.cs new file mode 100644 index 0000000..e639e52 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIPlatformStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4AB54264-3B7A-49C1-8765-B6F905EAD0C3")] +public interface AsyncIPlatformStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyPlatformStatus(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIProcessStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIProcessStatusCallback.cs new file mode 100644 index 0000000..7c4ac35 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/AsyncIProcessStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B82F0BEA-08FC-47A1-9873-402BAF7600E3")] +public interface AsyncIProcessStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyProcessStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrProcessIdentity, [In] int lPrivateData, [In] tagPlatformProcessStatus lProcessStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyProcessStatus(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/BootstrapObject.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/BootstrapObject.cs new file mode 100644 index 0000000..48e2226 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/BootstrapObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[CoClass(typeof(BootstrapObjectClass))] +[Guid("F14886F9-7426-4A85-93F2-734D8950EB20")] +public interface BootstrapObject : IBootstrapController4 +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/BootstrapObjectClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/BootstrapObjectClass.cs new file mode 100644 index 0000000..d53099d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/BootstrapObjectClass.cs @@ -0,0 +1,390 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("22595C0C-28B9-11D3-87E0-00A0C982C01C")] +[ComConversionLoss] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class BootstrapObjectClass : IBootstrapController4, BootstrapObject, IBootstrapRegister, IBootstrapRegister2, IBootstrapRegister3, IBootstrapRegister4, IBootstrapRegister5, IBootstrapRegister6, IBootstrapProcessController, IVersionInformation2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform6([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo, [In][MarshalAs(UnmanagedType.BStr)] string bstrOtherNodeCERTIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrGRcertIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrRTcertIssuer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartPlatformProcess([In] int lPrivateData, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szExecutable, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdLnArgs, [In][MarshalAs(UnmanagedType.LPWStr)] string szProcessCtrlArgs, [MarshalAs(UnmanagedType.BStr)] out string pszProcessId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownPlatformProcess([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, [In] int lmsShutdownTimeout); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessStatus([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, out tagPlatformProcessStatus pProcessRunState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownAllPlatformProcesses(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessList(out int plTotalProcesses, [Out] IntPtr ppPlatformProcessList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetCmdStartOptions([In] int lProcessId, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCmdStartOptions([In] int lProcessId, [MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetBuildNumsAndComponentVers(out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetFileVersionNumbers([In] int platformId, [In] MxFileLocationEnum fileLocation, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAllFileVersionNumbers([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int lVersionCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildComponentVersion, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildComponentVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/CONNECTING_STATUS.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/CONNECTING_STATUS.cs new file mode 100644 index 0000000..6210178 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/CONNECTING_STATUS.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxAdptr; + +public enum CONNECTING_STATUS +{ + CONNECTION_FAILED, + CONNECTION_ACCEPTED, + CONNECTION_ESTABLISHED +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/DataQuality.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/DataQuality.cs new file mode 100644 index 0000000..3f54e89 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/DataQuality.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxAdptr; + +public enum DataQuality +{ + DataQualityUnknown = -1, + DataQualityGood, + DataQualityUncertain, + DataQualityInitializing, + DataQualityBad +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EATTRIBUTEPROPERTY.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EATTRIBUTEPROPERTY.cs new file mode 100644 index 0000000..bbc9ccc --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EATTRIBUTEPROPERTY.cs @@ -0,0 +1,57 @@ +namespace Interop.NmxAdptr; + +public enum EATTRIBUTEPROPERTY +{ + idxAttribPropUndefined = -1, + idxAttribPropName = 0, + idxAttribPropAttributeCategory = 1, + idxAttribPropCfgSethandler = 2, + idxAttribPropRtSethandler = 3, + idxAttribPropType = 4, + idxAttribPropUpperBoundDim1 = 5, + idxAttribPropValue = 10, + idxAttribPropSecurityClassification = 11, + idxAttribPropLocked = 12, + idxAttribPropQuality = 13, + idxAttribPropBit00 = 14, + idxAttribPropBit01 = 15, + idxAttribPropBit02 = 16, + idxAttribPropBit03 = 17, + idxAttribPropBit04 = 18, + idxAttribPropBit05 = 19, + idxAttribPropBit06 = 20, + idxAttribPropBit07 = 21, + idxAttribPropBit08 = 22, + idxAttribPropBit09 = 23, + idxAttribPropBit10 = 24, + idxAttribPropBit11 = 25, + idxAttribPropBit12 = 26, + idxAttribPropBit13 = 27, + idxAttribPropBit14 = 28, + idxAttribPropBit15 = 29, + idxAttribPropBit16 = 30, + idxAttribPropBit17 = 31, + idxAttribPropBit18 = 32, + idxAttribPropBit19 = 33, + idxAttribPropBit20 = 34, + idxAttribPropBit21 = 35, + idxAttribPropBit22 = 36, + idxAttribPropBit23 = 37, + idxAttribPropBit24 = 38, + idxAttribPropBit25 = 39, + idxAttribPropBit26 = 40, + idxAttribPropBit27 = 41, + idxAttribPropBit28 = 42, + idxAttribPropBit29 = 43, + idxAttribPropBit30 = 44, + idxAttribPropBit31 = 45, + idxAttribPropValueReadOnly = 46, + idxAttribPropSecurityClassificationReadOnly = 47, + idxAttribPropLockedReadOnly = 48, + idxAttribPropTime = 49, + idxAttribPropBuffer = 50, + idxAttribPropHasBuffer = 51, + idxAttribPropEnumStrings = 52, + idxAttribPropReasonDesc = 53, + idxAttribPropEND = 54 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EBASERUNTIMEOBJECT.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EBASERUNTIMEOBJECT.cs new file mode 100644 index 0000000..2950331 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EBASERUNTIMEOBJECT.cs @@ -0,0 +1,11 @@ +namespace Interop.NmxAdptr; + +public enum EBASERUNTIMEOBJECT +{ + idxBROAttributeUndefined = -1, + idxBROPrimitiveList = 100, + idxBRODeployComplete = 101, + idxBROCreateDynamicAttributes = 102, + idxBRODumpState = 103, + idxBROSetAttributeProperties = 104 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECATEGORY.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECATEGORY.cs new file mode 100644 index 0000000..e6c0683 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECATEGORY.cs @@ -0,0 +1,34 @@ +namespace Interop.NmxAdptr; + +public enum ECATEGORY +{ + idxCategoryUndefined, + idxCategoryPlatformEngine, + idxCategoryClusterEngine, + idxCategoryApplicationEngine, + idxCategoryViewEngine, + idxCategoryProductEngine, + idxCategoryHistoryEngine, + idxCategoryPrintEngine, + idxCategoryOutpost, + idxCategoryQueryEngine, + idxCategoryApplicationObject, + idxCategoryIONetwork, + idxCategoryIODevice, + idxCategoryArea, + idxCategoryUserProfile, + idxCategoryDisplay, + idxCategorySymbol, + idxCategoryViewApp, + idxCategoryProductionObject, + idxCategoryReport, + idxCategorySharedProcedure, + idxCategoryInsertablePrimitive, + idxCategoryIDEMacro, + idxCategoryGalaxy, + idxCategoryPostIO, + idxCategoryCustom, + idxCategoryInTouchViewApp, + idxCategoryVisualElement, + idxCategoryWidget +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECOMMONATTRIBUTES.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECOMMONATTRIBUTES.cs new file mode 100644 index 0000000..1d0d38a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECOMMONATTRIBUTES.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxAdptr; + +public enum ECOMMONATTRIBUTES +{ + idxComAttUnknown = -1, + idxComAttExternalName = 1, + idxComAttInternalName = 2 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECOMMONPRIMITIVE.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECOMMONPRIMITIVE.cs new file mode 100644 index 0000000..c97f764 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ECOMMONPRIMITIVE.cs @@ -0,0 +1,62 @@ +namespace Interop.NmxAdptr; + +public enum ECOMMONPRIMITIVE +{ + idxCommonUndefined = -1, + idxCommonExternalName = 1, + idxCommonInternalName = 2, + idxCommonTagname = 100, + idxCommonShortDescription = 101, + idxCommonCategoryIDEnum = 102, + idxCommonAttributes = 103, + idxCommonCmdScanState = 104, + idxCommonScanState = 105, + idxCommonSecurityGroup = 106, + idxCommonError = 107, + idxCommonRelativeOrderEnum = 108, + idxCommonArea = 109, + idxCommonContainer = 110, + idxCommonHost = 111, + idxCommonAlarmModeEnum = 112, + idxCommonAlarmMode = 113, + idxCommonAlarmModeCmd = 114, + idxCommonAlarmInhibit = 115, + idxCommonInAlarm = 116, + idxCommonBasedOn = 117, + idxCommonIsTemplate = 118, + idxCommonCodeBase = 119, + idxCommonUDAs = 120, + idxCommon_InheritedUDAs = 121, + idxCommonExtensions = 122, + idxCommon_InheritedExtensions = 123, + idxCommon_Category = 124, + idxCommon_ConfigVersion = 125, + idxCommon_Warnings = 126, + idxCommonContainedName = 127, + idxCommonExecutionRelatedObject = 128, + idxCommonExecutionRelativeOrder = 129, + idxCommonHierachicalName = 130, + idxCommonMinorVersion = 131, + idxCommon_CmdAdd = 132, + idxCommon_CmdRemove = 133, + idxCommonCmdData = 134, + idxCommon_InheritedCmdData = 135, + idxCommon_AdviseOnlyActiveEnabled = 136, + idxCommonAlarmMostUrgentSeverity = 137, + idxCommonAlarmMostUrgentMode = 138, + idxCommonAlarmMostUrgentAcked = 139, + idxCommonAlarmCntsBySeverity = 140, + idxCommon_AlarmMostUrgentInit = 141, + idxCommon_TempMostUrgentSeverity = 142, + idxCommon_TempMostUrgentMode = 143, + idxCommon_TempMostUrgentAcked = 144, + idxCommon_TempCntsBySeverity = 145, + idxCommon_TempMostUrgentInit = 146, + idxCommon_AggAlarmUpdate = 147, + idxCommonAlarmMostUrgentInAlarm = 148, + idxCommon_TempMostUrgentInAlarm = 149, + idxCommonAlarmMostUrgentShelved = 150, + idxCommonAlarmCntsBySeverityEnableShelved = 151, + idxCommon_TempMostUrgentShelved = 152, + idxCommon_TempCntsBySeverityEnableShelved = 153 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EEXECUTIONGROUP.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EEXECUTIONGROUP.cs new file mode 100644 index 0000000..920e932 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EEXECUTIONGROUP.cs @@ -0,0 +1,26 @@ +namespace Interop.NmxAdptr; + +public enum EEXECUTIONGROUP +{ + idxExeGroupUnknown = -1, + idxExeGroupCommon, + idxExeGroupInput, + idxExeGroupPreScript, + idxExeGroupCustom, + idxExeGroupCustom1, + idxExeGroupCustom2, + idxExeGroupCustom3, + idxExeGroupCustom4, + idxExeGroupCustom5, + idxExeGroupCustom6, + idxExeGroupCustom7, + idxExeGroupCustom8, + idxExeGroupCustom9, + idxExeGroupCustom10, + idxExeGroupExpression, + idxExeGroupScript, + idxExeGroupPostScript, + idxExeGroupOutput, + idxExeGroupHistory, + idxExeGroupAlarm +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EFileType.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EFileType.cs new file mode 100644 index 0000000..def026c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EFileType.cs @@ -0,0 +1,16 @@ +namespace Interop.NmxAdptr; + +public enum EFileType +{ + eUndefinedFileType, + eNormal, + eComDLL, + eComEXE, + eNTService, + eMergeRegistryScript, + eForHTMLEditor, + eDictionary, + eMsiMergeModule, + eNETFrameworkAssembly, + eSimpleNETAssembly +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EQUEUETYPE.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EQUEUETYPE.cs new file mode 100644 index 0000000..4e5d1bb --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/EQUEUETYPE.cs @@ -0,0 +1,7 @@ +namespace Interop.NmxAdptr; + +public enum EQUEUETYPE +{ + eExpressQueue, + eGuarantyQueue +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ERESERVEDPRIMITIVEIDS.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ERESERVEDPRIMITIVEIDS.cs new file mode 100644 index 0000000..e753c69 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ERESERVEDPRIMITIVEIDS.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxAdptr; + +public enum ERESERVEDPRIMITIVEIDS +{ + eReservedPrimitiveIdUndefined = -1, + eBaseRuntimeObjectId = 1, + eCommonPrimitiveId = 2, + eTopLevelCustomPrimitiveId = 100 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/FMCObj.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/FMCObj.cs new file mode 100644 index 0000000..e5b9a95 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/FMCObj.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[CoClass(typeof(FMCObjClass))] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A5")] +public interface FMCObj : IFMC +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/FMCObjClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/FMCObjClass.cs new file mode 100644 index 0000000..6447ff9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/FMCObjClass.cs @@ -0,0 +1,35 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("851252A1-C628-4897-A52B-206B50842AD8")] +public class FMCObjClass : IFMC, FMCObj, IUdpMessage +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In] int lPlatformID, [In] int lCookie, [In][MarshalAs(UnmanagedType.BStr)] string bstrAddress, [In] int lPort, [In][MarshalAs(UnmanagedType.Interface)] IFMCCallback pCallback, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RequestConnection([In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Connect([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int lPlatformID, [In] int timeToWaitForConnection = 500); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SendData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxAdptr.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody, [In] int dwTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnInitialize(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DisConnect([In] int lPlatformID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ConnectEx([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int timeToWaitForConnection); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SendUdpData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxAdptr.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GLOBAL_CONSTS.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GLOBAL_CONSTS.cs new file mode 100644 index 0000000..0fdd0bf --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GLOBAL_CONSTS.cs @@ -0,0 +1,7 @@ +namespace Interop.NmxAdptr; + +public enum GLOBAL_CONSTS +{ + MAX_TAGNAME_LENGTH = 32, + MAX_ATTRIBUTE_NAME_LENGTH = 329 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameInInfo.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameInInfo.cs new file mode 100644 index 0000000..2031d26 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameInInfo.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct GetTagNameInInfo +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int callbackId; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameInInfoCS.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameInInfoCS.cs new file mode 100644 index 0000000..e8da693 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameInInfoCS.cs @@ -0,0 +1,21 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("EBACE03A-2963-433D-A11E-825C52923F31")] +public struct GetTagNameInInfoCS +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int callbackId; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameOutInfo.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameOutInfo.cs new file mode 100644 index 0000000..14acc82 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameOutInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct GetTagNameOutInfo +{ + [ComConversionLoss] + public IntPtr pGalaxyNameString; + + [ComConversionLoss] + public IntPtr pObjectNameString; + + [ComConversionLoss] + public IntPtr pAttributeNameString; + + [ComConversionLoss] + public IntPtr pStatus; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameOutInfoCS.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameOutInfoCS.cs new file mode 100644 index 0000000..b09df71 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/GetTagNameOutInfoCS.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("4B81976C-90BB-4098-A1BB-F6D85F11E496")] +public struct GetTagNameOutInfoCS +{ + [MarshalAs(UnmanagedType.BStr)] + public string pGalaxyNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pObjectNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pAttributeNameString; + + public MxStatus pStatus; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController.cs new file mode 100644 index 0000000..5efec2d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController.cs @@ -0,0 +1,52 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("22595C0B-28B9-11D3-87E0-00A0C982C01C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDownPlatformSynchronous([In] int platformId); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController2.cs new file mode 100644 index 0000000..7729c60 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController2.cs @@ -0,0 +1,55 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("1943AAB6-2AC9-45D5-AD5F-1AF80AECBCAE")] +public interface IBootstrapController2 : IBootstrapController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController3.cs new file mode 100644 index 0000000..c757f00 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController3.cs @@ -0,0 +1,59 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("1943AAB6-2AC9-45D5-AD5F-1AF80AECBCAD")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapController3 : IBootstrapController2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController4.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController4.cs new file mode 100644 index 0000000..7153ee7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController4.cs @@ -0,0 +1,65 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F14886F9-7426-4A85-93F2-734D8950EB20")] +public interface IBootstrapController4 : IBootstrapController3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController5.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController5.cs new file mode 100644 index 0000000..89bde96 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapController5.cs @@ -0,0 +1,71 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("63512694-27F3-4210-AD3B-2A68EAA6DF4E")] +public interface IBootstrapController5 : IBootstrapController4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveLocalPlatform(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSecurityForStoreFwdDirectory(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapProcessController.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapProcessController.cs new file mode 100644 index 0000000..1c88006 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapProcessController.cs @@ -0,0 +1,33 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("22595C0F-28B9-11D3-87E0-00A0C982C01C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +public interface IBootstrapProcessController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartPlatformProcess([In] int lPrivateData, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szExecutable, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdLnArgs, [In][MarshalAs(UnmanagedType.LPWStr)] string szProcessCtrlArgs, [MarshalAs(UnmanagedType.BStr)] out string pszProcessId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownPlatformProcess([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, [In] int lmsShutdownTimeout); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformProcessStatus([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, out tagPlatformProcessStatus pProcessRunState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownAllPlatformProcesses(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformProcessList(out int plTotalProcesses, [Out] IntPtr ppPlatformProcessList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetCmdStartOptions([In] int lProcessId, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCmdStartOptions([In] int lProcessId, [MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister.cs new file mode 100644 index 0000000..f8acced --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister.cs @@ -0,0 +1,48 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("22595C0D-28B9-11D3-87E0-00A0C982C01C")] +public interface IBootstrapRegister +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister2.cs new file mode 100644 index 0000000..7804467 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister2.cs @@ -0,0 +1,50 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("E42D2692-4B57-4E97-B99C-2829D60A4D2E")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegister2 : IBootstrapRegister +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister3.cs new file mode 100644 index 0000000..1adbd2a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister3.cs @@ -0,0 +1,56 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("E42D2692-4B57-4E97-B99C-2829D60A4D2F")] +public interface IBootstrapRegister3 : IBootstrapRegister2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister4.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister4.cs new file mode 100644 index 0000000..c4c2f53 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister4.cs @@ -0,0 +1,59 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("219BB2BB-B4B6-4486-A2C8-93F11BA16583")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegister4 : IBootstrapRegister3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister5.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister5.cs new file mode 100644 index 0000000..04c9d21 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister5.cs @@ -0,0 +1,62 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0A7B1AF2-CFFC-491D-ADDD-8C496E9207F2")] +public interface IBootstrapRegister5 : IBootstrapRegister4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister6.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister6.cs new file mode 100644 index 0000000..5e890db --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegister6.cs @@ -0,0 +1,65 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("597D6C1E-05F2-4B5E-95E8-A088F1002249")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegister6 : IBootstrapRegister5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform6([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo, [In][MarshalAs(UnmanagedType.BStr)] string bstrOtherNodeCERTIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrGRcertIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrRTcertIssuer); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegistryAccess.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegistryAccess.cs new file mode 100644 index 0000000..1a539f1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapRegistryAccess.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("04C4A1E4-4541-11D3-87EC-00A0C982C01C")] +public interface IBootstrapRegistryAccess +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRootKey([MarshalAs(UnmanagedType.BStr)] out string pbstrRootpath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In][MarshalAs(UnmanagedType.LPWStr)] string szIndex, [MarshalAs(UnmanagedType.BStr)] out string pbstrPathname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In][MarshalAs(UnmanagedType.LPWStr)] string szIndex, [In][MarshalAs(UnmanagedType.LPWStr)] string szPathname); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapStatusCallback.cs new file mode 100644 index 0000000..991dacf --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IBootstrapStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("71CC01D9-5C20-41D8-B297-4E0C7DE04D31")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMC.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMC.cs new file mode 100644 index 0000000..84057c6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMC.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A5")] +public interface IFMC +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] int lPlatformID, [In] int lCookie, [In][MarshalAs(UnmanagedType.BStr)] string bstrAddress, [In] int lPort, [In][MarshalAs(UnmanagedType.Interface)] IFMCCallback pCallback, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RequestConnection([In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Connect([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int lPlatformID, [In] int timeToWaitForConnection = 500); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SendData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxAdptr.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody, [In] int dwTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnInitialize(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DisConnect([In] int lPlatformID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectEx([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int timeToWaitForConnection); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMCCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMCCallback.cs new file mode 100644 index 0000000..de1b5dd --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMCCallback.cs @@ -0,0 +1,25 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A6")] +public interface IFMCCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataReceived([In] int lPlatformID, [In][ComAliasName("Interop.NmxAdptr.ActionTypes")] ActionTypes usType, [In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RequestConnectionRecv([In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablished([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataSent([In] int lPlatformID, [In] int lMessageID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionClosed([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMCCallbackEx.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMCCallbackEx.cs new file mode 100644 index 0000000..5717423 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IFMCCallbackEx.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("C76EFD3E-772D-4C16-BEF5-0C0ECAB2A509")] +public interface IFMCCallbackEx : IFMCCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DataReceived([In] int lPlatformID, [In][ComAliasName("Interop.NmxAdptr.ActionTypes")] ActionTypes usType, [In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RequestConnectionRecv([In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ConnectionEstablished([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DataSent([In] int lPlatformID, [In] int lMessageID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ConnectionClosed([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablishedEx([MarshalAs(UnmanagedType.BStr)] string address, int port, int platformId, int lCookie, int lErrCode); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify.cs new file mode 100644 index 0000000..1e38185 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("06D2B229-AF4F-11D3-939D-00C04F6BBD91")] +public interface IInfoNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Fire_OnInfoNotify([In] int flag); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_Event.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_Event.cs new file mode 100644 index 0000000..3484b20 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_Event.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComVisible(false)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComEventInterface(typeof(IInfoNotify), typeof(IInfoNotify_EventProvider))] +public interface IInfoNotify_Event +{ + event IInfoNotify_Fire_OnInfoNotifyEventHandler Fire_OnInfoNotify; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_EventProvider.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_EventProvider.cs new file mode 100644 index 0000000..d207e3c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_EventProvider.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.NmxAdptr; + +internal sealed class IInfoNotify_EventProvider : IInfoNotify_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 41, 178, 210, 6, 79, 175, 211, 17, 147, 157, + 0, 192, 79, 107, 189, 145 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_Fire_OnInfoNotify(IInfoNotify_Fire_OnInfoNotifyEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + IInfoNotify_SinkHelper infoNotify_SinkHelper = new IInfoNotify_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(infoNotify_SinkHelper, out pdwCookie); + infoNotify_SinkHelper.m_dwCookie = pdwCookie; + infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate = P_0; + m_aEventSinkHelpers.Add(infoNotify_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_Fire_OnInfoNotify(IInfoNotify_Fire_OnInfoNotifyEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + IInfoNotify_SinkHelper infoNotify_SinkHelper = (IInfoNotify_SinkHelper)m_aEventSinkHelpers[num]; + if (infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate != null && ((infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(infoNotify_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public IInfoNotify_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + IInfoNotify_SinkHelper infoNotify_SinkHelper = (IInfoNotify_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(infoNotify_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs new file mode 100644 index 0000000..5ceac3a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +public delegate void IInfoNotify_Fire_OnInfoNotifyEventHandler([In] int flag); diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_SinkHelper.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_SinkHelper.cs new file mode 100644 index 0000000..ea5e075 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IInfoNotify_SinkHelper.cs @@ -0,0 +1,28 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class IInfoNotify_SinkHelper : IInfoNotify +{ + public IInfoNotify_Fire_OnInfoNotifyEventHandler m_Fire_OnInfoNotifyDelegate; + + public int m_dwCookie; + + public void Fire_OnInfoNotify(int P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_Fire_OnInfoNotifyDelegate != null) + { + m_Fire_OnInfoNotifyDelegate(P_0); + } + } + + internal IInfoNotify_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_Fire_OnInfoNotifyDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMCHeartbeatCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMCHeartbeatCallback.cs new file mode 100644 index 0000000..5966682 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMCHeartbeatCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("0160D478-1FBF-43C8-BD84-8BD40F528DF8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMCHeartbeatCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PartialMsgReceived([In] int platformId, [In] int lCookie); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxBindingService.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxBindingService.cs new file mode 100644 index 0000000..ec8635c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxBindingService.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4391F3F0-49A0-4822-9E93-6DA04A92F434")] +public interface IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterPreboundReference([In] int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxBindingService2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxBindingService2.cs new file mode 100644 index 0000000..eebba6a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxBindingService2.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("B69F9918-4393-4F90-8012-D742FEC337BB")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxBindingService2 : IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback.cs new file mode 100644 index 0000000..bec2f53 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CC49CA44-D8CB-11D3-823B-00104B5F96A7")] +public interface IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback2.cs new file mode 100644 index 0000000..ffb11ea --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CFC6372F-0DA8-4278-A988-F1825C7916A0")] +public interface IMxCallback2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OperationComplete([In] int lCallbackId, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback3.cs new file mode 100644 index 0000000..6fd1e51 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxCallback3.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("38366038-CD67-457B-8C24-9AD003785798")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxCallback3 : IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult2([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueOut, [In] short QualityOut, [In] _FILETIME TimestampOut); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReference.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReference.cs new file mode 100644 index 0000000..18e6f1e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReference.cs @@ -0,0 +1,92 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReference : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [DispId(1)] + string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReferenceInfo.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReferenceInfo.cs new file mode 100644 index 0000000..2c5c255 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReferenceInfo.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("89D91C9B-AD6F-43D4-AA1B-4AB18326C7A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInfo +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameString([In] int lReferenceCount, [In] ref GetTagNameInInfo pGetTagNameInInfo, out GetTagNameOutInfo pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReferenceInfoCS.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReferenceInfoCS.cs new file mode 100644 index 0000000..3a6f9af --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxReferenceInfoCS.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("11E8356E-0F0D-4D67-974D-925968B66307")] +public interface IMxReferenceInfoCS +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameStringCS([In] GetTagNameInInfoCS pGetTagNameInInfo, out GetTagNameOutInfoCS pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxScanOnDemand.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxScanOnDemand.cs new file mode 100644 index 0000000..0b5a759 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxScanOnDemand.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("8A4B2077-6E4F-4135-915A-DD952F95EF25")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IncrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DecrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxScanOnDemand2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxScanOnDemand2.cs new file mode 100644 index 0000000..7b18930 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxScanOnDemand2.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("8D2EAA56-8512-486B-8FB0-22B3F518CFF7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxScanOnDemand2 : IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IncrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DecrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference2([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection.cs new file mode 100644 index 0000000..0f17e36 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection.cs @@ -0,0 +1,26 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +public interface IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection3.cs new file mode 100644 index 0000000..c8464ca --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection3.cs @@ -0,0 +1,36 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("621B4552-9CDC-440E-BDDC-894536122643")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection3 : IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection6.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection6.cs new file mode 100644 index 0000000..7343bde --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSupervisoryConnection6.cs @@ -0,0 +1,39 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("7F681721-B31D-4A35-A059-D04FA1AA936B")] +public interface IMxSupervisoryConnection6 : IMxSupervisoryConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference2([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection.cs new file mode 100644 index 0000000..81bf9e0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection.cs @@ -0,0 +1,38 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CC49CA45-D8CB-11D3-823B-00104B5F96A7")] +public interface IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string SystemGetQualityDescription([In] ref short mxDataQuality); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection2.cs new file mode 100644 index 0000000..21782cc --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection2.cs @@ -0,0 +1,44 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("649EF01C-1384-4979-AF39-83A284E8BAFC")] +public interface IMxSystemConnection2 : IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection3.cs new file mode 100644 index 0000000..b80eba7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxSystemConnection3.cs @@ -0,0 +1,65 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("95EBDC41-C2F7-48AA-B0A0-B3577E165905")] +public interface IMxSystemConnection3 : IMxSystemConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short Quality, [In] _FILETIME Timestamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection.cs new file mode 100644 index 0000000..766d32c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CC49CA43-D8CB-11D3-823B-00104B5F96A7")] +public interface IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection2.cs new file mode 100644 index 0000000..fd91ea1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection2.cs @@ -0,0 +1,40 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("4863541B-B371-4AA2-9378-5347E5D36000")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection2 : IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection3.cs new file mode 100644 index 0000000..3207964 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection3.cs @@ -0,0 +1,64 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F0411F6A-F8C5-49D3-8359-302DC4B9A9F8")] +public interface IMxUserConnection3 : IMxUserConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection4.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection4.cs new file mode 100644 index 0000000..4c87925 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection4.cs @@ -0,0 +1,105 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("232A5C28-A9A9-48F7-A256-94018F6F8F49")] +public interface IMxUserConnection4 : IMxUserConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection5.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection5.cs new file mode 100644 index 0000000..371b2e9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection5.cs @@ -0,0 +1,108 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4805D9B8-1BD4-4726-81F8-B70BEEB1D7AE")] +public interface IMxUserConnection5 : IMxUserConnection4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection6.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection6.cs new file mode 100644 index 0000000..298a2c2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxUserConnection6.cs @@ -0,0 +1,111 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("FD619BE8-98D2-46EA-A274-8481C320C662")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection6 : IMxUserConnection5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxValue.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxValue.cs new file mode 100644 index 0000000..cafc89e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxValue.cs @@ -0,0 +1,159 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +public interface IMxValue : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] MxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + MxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxValueFactory.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxValueFactory.cs new file mode 100644 index 0000000..3cd9bd7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IMxValueFactory.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("1B6AEB81-CB43-11D2-BFFF-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxValueFactory +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstance([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceBool([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, bool val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceLong([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, int val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceFloat([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, float val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceDouble([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, double val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceString([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, [MarshalAs(UnmanagedType.LPWStr)] string val); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx.cs new file mode 100644 index 0000000..0e8a653 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx.cs @@ -0,0 +1,54 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("42DB0512-28BE-11D3-80C0-00104B5F96A7")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmx +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetMessageTimeout([In] int TimeoutValue); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx2.cs new file mode 100644 index 0000000..d32615e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("61902C5F-194B-4FF6-81C8-AE5540625CAB")] +public interface INmx2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequestEx([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwSize, [In] ref byte pData); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx3.cs new file mode 100644 index 0000000..0511e11 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx3.cs @@ -0,0 +1,66 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("9F9D26DA-69DE-4A27-822A-E0D5B1745039")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +public interface INmx3 : INmx +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx4.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx4.cs new file mode 100644 index 0000000..cdbb8e7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmx4.cs @@ -0,0 +1,74 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("84168012-B544-4217-A145-32819C607435")] +public interface INmx4 : INmx3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize2([In] int dwPlatformId, [In] int dwEngineId, [In] int dwVersion, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous2(out int pPlatformId, out int pEngineId, [In] int dwVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxHeartbeat.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxHeartbeat.cs new file mode 100644 index 0000000..a0cbb0d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxHeartbeat.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("0B447D53-D3CC-4471-B2DF-5E06AC355915")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxHeartbeat +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDown(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxNotify.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxNotify.cs new file mode 100644 index 0000000..11802b6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxNotify.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("73849AEA-472A-4715-B8C6-1C806AF12DFC")] +public interface INmxNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablished([In] int lPlatformID, [In] int lReference, [In] tagNmxSvcConnectionStatus eConnStatus, [In] int lDetailCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionClosed([In] int lPlatformID, [In] int lReference); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxService.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxService.cs new file mode 100644 index 0000000..942882d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxService.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("575008DB-845D-46C6-A906-F6F8CA86F315")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxService2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxService2.cs new file mode 100644 index 0000000..5e9c6a0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxService2.cs @@ -0,0 +1,37 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("2630A513-A974-4B1A-8025-457A9A7C56B8")] +public interface INmxService2 : INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine2([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In] int lVersion, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxStatistics.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxStatistics.cs new file mode 100644 index 0000000..8eb7d1d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxStatistics.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("4169B479-54BD-11D3-A9CC-00A0C9FB55A0")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNmxStatistics(out tagNmxStatsInfo pNmxStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Reset(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxStatus.cs new file mode 100644 index 0000000..68768ca --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxStatus.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("4CA783BC-F68E-42F4-9D76-8107C826F625")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxStatus +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OPENCONNECTION([In] int lPlatformID, [In][MarshalAs(UnmanagedType.Interface)] INmxNotify pNotify, [In] int lReference, [In] int lProcessId, out int plCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CloseConnection([In] int lCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetConnectionStatus([In] int lPlatformID, out tagNmxSvcConnectionStatus peConnState); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxSvcCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxSvcCallback.cs new file mode 100644 index 0000000..d9edfb7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxSvcCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B49F92F7-C748-4169-8ECA-A0670B012746")] +public interface INmxSvcCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataReceived([In] int dwBufferSize, [In] ref sbyte lpDataBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StatusReceived([In] int dwBufferSize, [In] ref sbyte lpStatusBuffer); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxSvcStatistics.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxSvcStatistics.cs new file mode 100644 index 0000000..47eb5bd --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/INmxSvcStatistics.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("6EB90E4C-DF5C-47F0-B2CD-110549C1162A")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxSvcStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetSvcStatistics(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPersist.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPersist.cs new file mode 100644 index 0000000..d85c6fe --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPersist.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("0000010C-0000-0000-C000-000000000046")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClassID(out Guid pClassID); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPersistStream.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPersistStream.cs new file mode 100644 index 0000000..22f63fd --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPersistStream.cs @@ -0,0 +1,26 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("00000109-0000-0000-C000-000000000046")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPersistStream : IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetSizeMax(out _ULARGE_INTEGER pcbSize); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInfoServer.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInfoServer.cs new file mode 100644 index 0000000..8b6cdc1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInfoServer.cs @@ -0,0 +1,73 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4E448140-AE83-11D3-939D-00C04F6BBD91")] +public interface IPlatformInfoServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsValidEngineId([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineDefinition([In] int lEngineID, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagEngineDefinition GetEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineScanState([In] int lEngineID, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetEngineScanState([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetStartupType([In] int lEngineID, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetStartupType([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineState([In] int lEngineID, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineRestart([In] int lEngineID, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetEngineRestart([In] int lEngineID); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInfoServer2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInfoServer2.cs new file mode 100644 index 0000000..d29a0a0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInfoServer2.cs @@ -0,0 +1,82 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("2BF52D84-0902-489F-84F8-77BD49BB932E")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformInfoServer2 : IPlatformInfoServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsValidEngineId([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineDefinition([In] int lEngineID, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new tagEngineDefinition GetEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineScanState([In] int lEngineID, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetEngineScanState([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupType([In] int lEngineID, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetStartupType([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineState([In] int lEngineID, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineRestart([In] int lEngineID, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetEngineRestart([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineDefinition2([In] int lEngineID, [In] ref tagEngineDefinition2 pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagEngineDefinition2 GetEngineDefinition2([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagRedundancyIdentity GetEngineRedundancyIdentity([In] int lEngineID); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk.cs new file mode 100644 index 0000000..cfdf9eb --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk.cs @@ -0,0 +1,90 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("148C8733-3930-11D3-87EA-00A0C982C01C")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformInformationClerk +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk2.cs new file mode 100644 index 0000000..4bfa430 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk2.cs @@ -0,0 +1,102 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("361A8B77-C77A-4A70-B220-FB502D6F847E")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformInformationClerk2 : IPlatformInformationClerk +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk3.cs new file mode 100644 index 0000000..3d0b1d9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformInformationClerk3.cs @@ -0,0 +1,114 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("361A8B77-C77A-4A70-B220-FB502D6F847F")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +public interface IPlatformInformationClerk3 : IPlatformInformationClerk2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformStatusCallback.cs new file mode 100644 index 0000000..ec9aaa7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IPlatformStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("BCE01301-0A39-41E2-90A3-0D9C7110A12A")] +public interface IPlatformStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IProcessStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IProcessStatusCallback.cs new file mode 100644 index 0000000..3e23ed2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IProcessStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("DDF780BD-99C9-40D3-B35C-57083D3ED996")] +public interface IProcessStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyProcessStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrProcessIdentity, [In] int lPrivateData, [In] tagPlatformProcessStatus lProcessStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ISequentialStream.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ISequentialStream.cs new file mode 100644 index 0000000..f9bd92c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/ISequentialStream.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("0C733A30-2A1C-11CE-ADE5-00AA0044773D")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IStatusNotify.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IStatusNotify.cs new file mode 100644 index 0000000..633d31a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IStatusNotify.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("ACA1A4A8-9F53-499D-962A-B8FC76D5A7D8")] +public interface IStatusNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyStateChanged([In] ref tagEngineStatusInfo pEngineStatusInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IStream.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IStream.cs new file mode 100644 index 0000000..a0baef8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IStream.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("0000000C-0000-0000-C000-000000000046")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IStream : ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteSeek([In] _LARGE_INTEGER dlibMove, [In] uint dwOrigin, out _ULARGE_INTEGER plibNewPosition); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSize([In] _ULARGE_INTEGER libNewSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteCopyTo([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] _ULARGE_INTEGER cb, out _ULARGE_INTEGER pcbRead, out _ULARGE_INTEGER pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Commit([In] uint grfCommitFlags); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Revert(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void LockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnlockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Stat(out tagSTATSTG pstatstg, [In] uint grfStatFlag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out IStream ppstm); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IUdpMessage.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IUdpMessage.cs new file mode 100644 index 0000000..945999a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IUdpMessage.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("70FEF3FA-7E71-400E-B1BA-0C8ADE1E7ED8")] +public interface IUdpMessage +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SendUdpData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxAdptr.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IVersionInformation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IVersionInformation.cs new file mode 100644 index 0000000..342ffa8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IVersionInformation.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("5C1F679B-2F14-4426-A1A0-B74B73BD8EF4")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IVersionInformation +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMaintenanceBuildComponentVersion(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IVersionInformation2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IVersionInformation2.cs new file mode 100644 index 0000000..fb74663 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/IVersionInformation2.cs @@ -0,0 +1,39 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("B6EEB7BF-AE82-4373-A715-32ADF63E7076")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IVersionInformation2 : IVersionInformation +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMaintenanceBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetBuildNumsAndComponentVers(out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetFileVersionNumbers([In] int platformId, [In] MxFileLocationEnum fileLocation, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAllFileVersionNumbers([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int lVersionCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildComponentVersion, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildComponentVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/InternationalizedString.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/InternationalizedString.cs new file mode 100644 index 0000000..e299a95 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/InternationalizedString.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("43529BD9-3860-4343-BC7E-697B9F8B344D")] +public struct InternationalizedString +{ + public int locale; + + [MarshalAs(UnmanagedType.BStr)] + public string internationalizedStr; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxAttributeHandle.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxAttributeHandle.cs new file mode 100644 index 0000000..0a1b363 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxAttributeHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAttributeHandle +{ + public short primitiveId; + + public short attributeId; + + public short propertyId; + + public ushort signature; + + public short index1; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxAutomationObjectHandle.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxAutomationObjectHandle.cs new file mode 100644 index 0000000..017b69d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxAutomationObjectHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAutomationObjectHandle +{ + public byte galaxy; + + public ushort platform; + + public ushort engine; + + public ushort @object; + + public ushort signature; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxConnection.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxConnection.cs new file mode 100644 index 0000000..b442d03 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxConnection.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[CoClass(typeof(MxConnectionClass))] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +public interface MxConnection : IMxSupervisoryConnection +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxConnectionClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxConnectionClass.cs new file mode 100644 index 0000000..0e4495e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxConnectionClass.cs @@ -0,0 +1,583 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("F2B877E7-1DBE-11D3-80AD-00104B5F96A7")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +public class MxConnectionClass : IMxSupervisoryConnection, MxConnection, IMxSupervisoryConnection3, IMxUserConnection, IMxUserConnection2, IMxUserConnection3, IMxUserConnection4, IMxUserConnection5, IMxUserConnection6, IMxSystemConnection, IMxSystemConnection2, IMxSystemConnection3, IMxBindingService, IMxBindingService2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSupervisoryConnection3_SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSupervisoryConnection3_SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection2_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection2_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection3_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection3_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection3_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection4_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection4_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection4_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection5_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection5_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection6_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxUserConnection6_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection2_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection2_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection2_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection3_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue IMxSystemConnection3_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection3_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short Quality, [In] _FILETIME Timestamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] MxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxDataType.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxDataType.cs new file mode 100644 index 0000000..6a99bee --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxDataType.cs @@ -0,0 +1,24 @@ +namespace Interop.NmxAdptr; + +public enum MxDataType +{ + MxDataTypeUnknown = -1, + MxNoData, + MxBoolean, + MxInteger, + MxFloat, + MxDouble, + MxString, + MxTime, + MxElapsedTime, + MxReferenceType, + MxStatusType, + MxDataTypeEnum, + MxSecurityClassificationEnum, + MxDataQualityType, + MxQualifiedEnum, + MxQualifiedStruct, + MxInternationalizedString, + MxBigString, + MxDataTypeEND +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxFileLocationEnum.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxFileLocationEnum.cs new file mode 100644 index 0000000..3309f02 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxFileLocationEnum.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxAdptr; + +public enum MxFileLocationEnum +{ + MxInCommonFolder, + MxInBinFolder, + MxInWindowsGAC +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxHandle.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxHandle.cs new file mode 100644 index 0000000..d985159 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxHandle.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxHandle +{ + public MxAutomationObjectHandle @object; + + public MxAttributeHandle attribute; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxReference.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxReference.cs new file mode 100644 index 0000000..3bbc1bf --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxReference.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +[CoClass(typeof(MxReferenceClass))] +public interface MxReference : IMxReference +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxReferenceClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxReferenceClass.cs new file mode 100644 index 0000000..f56e42b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxReferenceClass.cs @@ -0,0 +1,93 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("6C449378-EE5F-428C-BB95-01AE4573C742")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class MxReferenceClass : IMxReference, MxReference +{ + [DispId(1)] + public virtual extern string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + public virtual extern string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + public virtual extern string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + public virtual extern MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + public virtual extern MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + public virtual extern string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxResolutionStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxResolutionStatus.cs new file mode 100644 index 0000000..5835229 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxResolutionStatus.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxAdptr; + +public enum MxResolutionStatus +{ + MxReferenceUndefined = -1, + MxReferenceUnresolved, + MxReferenceResolved, + MxReferenceAttributeNotPresent +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxSecurityClassification.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxSecurityClassification.cs new file mode 100644 index 0000000..67fc5e1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxSecurityClassification.cs @@ -0,0 +1,13 @@ +namespace Interop.NmxAdptr; + +public enum MxSecurityClassification +{ + MxSecurityUndefined = -1, + MxSecurityFreeAccess, + MxSecurityOperate, + MxSecuritySecuredWrite, + MxSecurityVerifiedWrite, + MxSecurityTune, + MxSecurityConfigure, + MxSecurityViewOnly +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatus.cs new file mode 100644 index 0000000..ce688f4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatus.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct MxStatus +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusCategory.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusCategory.cs new file mode 100644 index 0000000..32d2c82 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusCategory.cs @@ -0,0 +1,15 @@ +namespace Interop.NmxAdptr; + +public enum MxStatusCategory +{ + MxStatusCategoryUnknown = -1, + MxCategoryOk, + MxCategoryPending, + MxCategoryWarning, + MxCategoryCommunicationError, + MxCategoryConfigurationError, + MxCategoryOperationalError, + MxCategorySecurityError, + MxCategorySoftwareError, + MxCategoryOtherError +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusDetail.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusDetail.cs new file mode 100644 index 0000000..6f6d93c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusDetail.cs @@ -0,0 +1,51 @@ +namespace Interop.NmxAdptr; + +public enum MxStatusDetail +{ + MX_S_Success = 0, + MX_E_RequestTimedOut = 1, + MX_E_PlatformCommunicationError = 2, + MX_E_InvalidPlatformId = 3, + MX_E_InvalidEngineId = 4, + MX_E_EngineCommunicationError = 5, + MX_E_InvalidReference = 6, + MX_E_NoGalaxyRepository = 7, + MX_E_InvalidObjectId = 8, + MX_E_ObjectSignatureMismatch = 9, + MX_E_AttributeSignatureMismatch = 10, + MX_E_ResolvingAttribute = 11, + MX_E_ResolvingObject = 12, + MX_E_WrongDataType = 13, + MX_E_WrongNumberOfDimensions = 14, + MX_E_InvalidIndex = 15, + MX_E_IndexOutOfOrder = 16, + MX_E_DimensionDoesNotExist = 17, + MX_E_ConversionNotSupported = 18, + MX_E_UnableToConvertString = 19, + MX_E_Overflow = 20, + MX_E_NmxVersionMismatch = 21, + MX_E_NmxInvalidCommand = 22, + MX_E_LmxVersionMismatch = 23, + MX_E_LmxInvalidCommand = 24, + MX_E_GalaxyRepositoryBusy = 25, + MX_E_EngineOverloaded = 26, + MX_E_InvalidPrimitiveId = 1000, + MX_E_InvalidAttributeId = 1001, + MX_E_InvalidPropertyId = 1002, + MX_E_IndexOutOfRange = 1003, + MX_E_DataOutOfRange = 1004, + MX_E_IncorrectDataType = 1005, + MX_E_NotReadable = 1006, + MX_E_NotWriteable = 1007, + MX_E_WriteAccessDenied = 1008, + MX_E_UnknownError = 1009, + MX_E_ObjectInitializing = 1010, + MX_E_EngineInitializing = 1011, + MX_E_SecuredWrite = 1012, + MX_E_VerifiedWrite = 1013, + MX_E_NoAlarmAckPrivilege = 1014, + MX_E_AlarmAckedAlready = 1015, + MX_E_UserNotHavingAccessRights = 1016, + MX_E_VerifierNotHavingVerifyRights = 1017, + MX_E_AutomationObjectSpecificError = 8000 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusSource.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusSource.cs new file mode 100644 index 0000000..36b4b83 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxStatusSource.cs @@ -0,0 +1,12 @@ +namespace Interop.NmxAdptr; + +public enum MxStatusSource +{ + MxSourceUnknown = -1, + MxSourceRequestingLmx, + MxSourceRespondingLmx, + MxSourceRequestingNmx, + MxSourceRespondingNmx, + MxSourceRequestingAutomationObject, + MxSourceRespondingAutomationObject +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxValue.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxValue.cs new file mode 100644 index 0000000..331e6f5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxValue.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[CoClass(typeof(MxValueClass))] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +public interface MxValue : IMxValue +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxValueClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxValueClass.cs new file mode 100644 index 0000000..ac955ae --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/MxValueClass.cs @@ -0,0 +1,160 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[ComConversionLoss] +[Guid("51D955B1-B086-11D2-BFB1-00104B5F96A7")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +public class MxValueClass : IMxValue, MxValue +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] MxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern MxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/Nmx.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/Nmx.cs new file mode 100644 index 0000000..2fbb4f0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/Nmx.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[CoClass(typeof(NmxClass))] +[Guid("84168012-B544-4217-A145-32819C607435")] +public interface Nmx : INmx4 +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxClass.cs new file mode 100644 index 0000000..9eec43d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxClass.cs @@ -0,0 +1,199 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ComConversionLoss] +[Guid("42DB0511-28BE-11D3-80C0-00104B5F96A7")] +public class NmxClass : INmx4, Nmx, INmx, INmx2, INmx3, INmxHeartbeat, INmxSvcCallback, INmxSvcStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize2([In] int dwPlatformId, [In] int dwEngineId, [In] int dwVersion, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous2(out int pPlatformId, out int pEngineId, [In] int dwVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequestEx([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxAdptr.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AddSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DataReceived([In] int dwBufferSize, [In] ref sbyte lpDataBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StatusReceived([In] int dwBufferSize, [In] ref sbyte lpStatusBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetSvcStatistics(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxService.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxService.cs new file mode 100644 index 0000000..b1f30c7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxService.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[CoClass(typeof(NmxServiceClass))] +[Guid("2630A513-A974-4B1A-8025-457A9A7C56B8")] +public interface NmxService : INmxService2 +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxServiceClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxServiceClass.cs new file mode 100644 index 0000000..52ad3fa --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxServiceClass.cs @@ -0,0 +1,74 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("AE24BD51-2E80-44CC-905B-E5446C942BEB")] +[ClassInterface(ClassInterfaceType.None)] +public class NmxServiceClass : INmxService2, NmxService, INmxService, INmxSvcStatistics, INmxStatus +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterEngine2([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In] int lVersion, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetSvcStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void OPENCONNECTION([In] int lPlatformID, [In][MarshalAs(UnmanagedType.Interface)] INmxNotify pNotify, [In] int lReference, [In] int lProcessId, out int plCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CloseConnection([In] int lCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetConnectionStatus([In] int lPlatformID, out tagNmxSvcConnectionStatus peConnState); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxStatistics.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxStatistics.cs new file mode 100644 index 0000000..384ff76 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxStatistics.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[Guid("4169B479-54BD-11D3-A9CC-00A0C9FB55A0")] +[CoClass(typeof(NmxStatisticsClass))] +public interface NmxStatistics : INmxStatistics +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxStatisticsClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxStatisticsClass.cs new file mode 100644 index 0000000..0a60244 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/NmxStatisticsClass.cs @@ -0,0 +1,17 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("4169B47A-54BD-11D3-A9CC-00A0C9FB55A0")] +[ClassInterface(ClassInterfaceType.None)] +public class NmxStatisticsClass : INmxStatistics, NmxStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxStatistics(out tagNmxStatsInfo pNmxStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Reset(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/PlatformInfoServer.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/PlatformInfoServer.cs new file mode 100644 index 0000000..08185cf --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/PlatformInfoServer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[CoClass(typeof(PlatformInfoServerClass))] +[Guid("4E448140-AE83-11D3-939D-00C04F6BBD91")] +public interface PlatformInfoServer : IPlatformInfoServer, IInfoNotify_Event +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/PlatformInfoServerClass.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/PlatformInfoServerClass.cs new file mode 100644 index 0000000..093f4ec --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/PlatformInfoServerClass.cs @@ -0,0 +1,97 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[ComImport] +[ComSourceInterfaces("Interop.NmxAdptr.IInfoNotify\0\0")] +[Guid("79EEACB0-5A55-11D3-A9CF-00A0C9FB55A0")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class PlatformInfoServerClass : IPlatformInfoServer, PlatformInfoServer, IInfoNotify_Event, IVersionInformation +{ + public virtual extern event IInfoNotify_Fire_OnInfoNotifyEventHandler Fire_OnInfoNotify; + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsValidEngineId([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineDefinition([In] int lEngineID, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern tagEngineDefinition GetEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineScanState([In] int lEngineID, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetEngineScanState([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetStartupType([In] int lEngineID, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetStartupType([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineState([In] int lEngineID, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineRestart([In] int lEngineID, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetEngineRestart([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildComponentVersion(); +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VBFILETIME.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VBFILETIME.cs new file mode 100644 index 0000000..68d71f9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VBFILETIME.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("09721FDD-046A-45D7-9BF8-7F6F9ED3934E")] +public struct VBFILETIME +{ + public int LowDateTime; + + public int HighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VBGUID.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VBGUID.cs new file mode 100644 index 0000000..450295c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VBGUID.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("CB6EA3AE-3D97-11D4-AA6D-00A0C9FB522A")] +public struct VBGUID +{ + public int Data1; + + public short Data2; + + public short Data3; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + public byte[] Data4; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VB_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VB_LARGE_INTEGER.cs new file mode 100644 index 0000000..eb3e6b4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/VB_LARGE_INTEGER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("BEACE14F-AAA2-412A-B113-F7FC00F2BD25")] +public struct VB_LARGE_INTEGER +{ + public int LowPart; + + public int HighPart; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_FILETIME.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_FILETIME.cs new file mode 100644 index 0000000..1e78f84 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_FILETIME.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct _FILETIME +{ + public uint dwLowDateTime; + + public uint dwHighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_LARGE_INTEGER.cs new file mode 100644 index 0000000..2288425 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_LARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _LARGE_INTEGER +{ + public long QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_ULARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_ULARGE_INTEGER.cs new file mode 100644 index 0000000..c99976b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/_ULARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _ULARGE_INTEGER +{ + public ulong QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0024_0001.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0024_0001.cs new file mode 100644 index 0000000..5e00216 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0024_0001.cs @@ -0,0 +1,7 @@ +namespace Interop.NmxAdptr; + +public enum __MIDL___MIDL_itf_NmxAdptr_0001_0024_0001 +{ + eExpressQueue, + eGuarantyQueue +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0076_0001.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0076_0001.cs new file mode 100644 index 0000000..35d5675 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0076_0001.cs @@ -0,0 +1,55 @@ +namespace Interop.NmxAdptr; + +public enum __MIDL___MIDL_itf_NmxAdptr_0001_0076_0001 +{ + OPENCONNECTION = 0, + FMCACCEPTEDCONN = 1, + SECURE_OPEN_CONNECTION = 256, + NewConnectionReq = 257, + CheckpointData = 258, + FMTYPE_PLATFORM_INFO_REQ = 4096, + FMTYPE_PLATFORM_INFO_RESP = 4097, + FMTYPE_SUBSCRIBE_HEARTBEAT_REQ = 4098, + FMTYPE_SUBSCRIBE_HEARTBEAT_RESP = 4099, + FMTYPE_PLATFORM_HEARTBEAT = 4112, + FMTYPE_GET_PARTNER_ENGINE_INFO_REQ = 4352, + FMTYPE_GET_PARTNER_ENGINE_INFO_RESP = 4353, + FMTYPE_SET_HEARTBEAT_REQ = 4354, + FMTYPE_SET_HEARTBEAT_RESP = 4355, + FMTYPE_SET_PARTNER_HEARTBEAT_REQ = 4356, + FMTYPE_SET_PARTNER_HEARTBEAT_RESP = 4357, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_REQ = 4358, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_RESP = 4359, + FMTYPE_SUBSCRIBE_STATUS_RESQ = 4360, + FMTYPE_SUBSCRIBE_STATUS_RESP = 4361, + FMTYPE_UNSUBSCRIBE_STATUS_RESQ = 4362, + FMTYPE_UNSUBSCRIBE_STATUS_RESP = 4363, + FMTYPE_REFRESH_STATUS_RESQ = 4364, + FMTYPE_REFRESH_STATUS_RESP = 4365, + FMTYPE_REDUNDANCY_STATUS_REQ = 4366, + FMTYPE_REDUNDANCY_STATUS_RESP = 4367, + FMTYPE_PLATFORM_STATUS_REQ = 4368, + FMTYPE_PLATFORM_STATUS_RESP = 4369, + FMTYPE_REDUNDANCY_ENGINE_INFO_REQ = 4370, + FMTYPE_REDUNDANCY_ENGINE_INFO_RESP = 4371, + FMTYPE_ENGINE_FAILOVER_OPERATION_REQ = 4372, + FMTYPE_ENGINE_FAILOVER_OPERATION_RESP = 4373, + FMTYPE_ENGINE_SWITCHING_TO_ACTIVE_NOTIFICATION_REQ = 4374, + FMTYPE_ENGINE_FAILOVER_DATA = 4416, + FMTYPE_ENGINE_FAILOVER_DATA_ACK = 4417, + FMTYPE_ENGINE_SUBSCRIBER_LIST = 4418, + FMTYPE_ENGINE_SUBSCRIBER_LIST_ACK = 4419, + FMTYPE_ENGINE_FAILOVER_STATUS = 4480, + FMTYPE_ENGINE_FAILOVER_STATUS_ACK = 4481, + FMTYPE_ENGINE_PROCESS_STATUS = 4482, + FMTYPE_ENGINE_PROCESS_STATUS_ACK = 4483, + FMTYPE_PLATFORM_STATUS = 4484, + NMXMTYPE_ENGINE_DATA = 4608, + NMXMTYPE_SET_HEARTBEAT_RATE = 4609, + NMXMTYPE_PLATFORM_HEARTBEAT = 4610, + NMXMTYPE_GET_HEARTBEAT_RATE = 4611, + NMXMTYPE_HEARTBEAT_DISCONNECT_REQ = 4612, + NMXMTYPE_CONNECT_INFO = 4613, + NMXMTYPE_CONNECT_INFO_REQ = 4614, + NMXMTYPE_VERSION_ERROR = 4615 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0076_0002.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0076_0002.cs new file mode 100644 index 0000000..7336d58 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0076_0002.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxAdptr; + +public enum __MIDL___MIDL_itf_NmxAdptr_0001_0076_0002 +{ + CONNECTION_FAILED, + CONNECTION_ACCEPTED, + CONNECTION_ESTABLISHED +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0081_0001.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0081_0001.cs new file mode 100644 index 0000000..5a8838d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/__MIDL___MIDL_itf_NmxAdptr_0001_0081_0001.cs @@ -0,0 +1,13 @@ +namespace Interop.NmxAdptr; + +public enum __MIDL___MIDL_itf_NmxAdptr_0001_0081_0001 +{ + ENGINE_STATE_UNDEFINED, + ENGINE_STATE_DEPLOYING, + ENGINE_STATE_OFFSCAN, + ENGINE_STATE_ONSCAN, + ENGINE_STATE_CHK_RESTORE_BACKUP, + ENGINE_STATE_CHK_RESTORE_CONFIG, + ENGINE_STATE_CHK_RESTORE_FAILED, + ENGINE_STATE_UBOUND +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagClusterRegistrationInformation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagClusterRegistrationInformation.cs new file mode 100644 index 0000000..bd49251 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagClusterRegistrationInformation.cs @@ -0,0 +1,24 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagClusterRegistrationInformation +{ + public int lPlatformID; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterGUID; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterName; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterVersion; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrGRHostName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrGRHostAddress; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineDefinition.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineDefinition.cs new file mode 100644 index 0000000..2b252a9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineDefinition.cs @@ -0,0 +1,26 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineDefinition +{ + public int lEngineID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrClassId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrExecutableName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineSignature; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrVendorName; + + public int lEngineCategory; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineDefinition2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineDefinition2.cs new file mode 100644 index 0000000..b57100f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineDefinition2.cs @@ -0,0 +1,57 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineDefinition2 +{ + public int lEngineID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrClassId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrExecutableName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineSignature; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrVendorName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrCheckpointPath; + + public int lEngineCategory; + + public tagRedundancyIdentity redundancyIdentity; + + [MarshalAs(UnmanagedType.BStr)] + public string primaryAddress; + + public int primaryPort; + + [MarshalAs(UnmanagedType.BStr)] + public string rmcAddress; + + public int rmcPort; + + public int partnerPlatformId; + + [MarshalAs(UnmanagedType.BStr)] + public string partnerPMCAddress; + + public int partnerPMCPort; + + [MarshalAs(UnmanagedType.BStr)] + public string partnerRMCAddress; + + public int partnerRMCPort; + + public int timeToDiscoverPartner; + + public int bRestartOnStandbyTransition; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineRedundancyInformation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineRedundancyInformation.cs new file mode 100644 index 0000000..06b5093 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineRedundancyInformation.cs @@ -0,0 +1,32 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineRedundancyInformation +{ + public int lPlatformID; + + public int lEngineID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + public tagRedundancyIdentity redundancyIdentity; + + public tagRedundancyStatus redundancyStatus; + + public int lPartnerPlatformId; + + public int lPartnerEngineId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPartnerPMCNetAddress; + + public int lPartnerPMCPort; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPartnerSMCNetAddress; + + public int lPartnerSMCPort; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineStatusInfo.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineStatusInfo.cs new file mode 100644 index 0000000..2a0aadf --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineStatusInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineStatusInfo +{ + public int lEngineID; + + public int EngineState; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineSubscriberInformation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineSubscriberInformation.cs new file mode 100644 index 0000000..d93f5bb --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagEngineSubscriberInformation.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineSubscriberInformation +{ + public int lPlatformID; + + public int lEngineID; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagID.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagID.cs new file mode 100644 index 0000000..6bd4293 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagID.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagID +{ + public int lPlatformID; + + public int lEngineID; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxStatsInfo.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxStatsInfo.cs new file mode 100644 index 0000000..c095473 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxStatsInfo.cs @@ -0,0 +1,23 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagNmxStatsInfo +{ + public int localSend; + + public int localRecv; + + public int networkSend; + + public int networkRecv; + + public int requestTimedOut; + + public int invalidPlatformId; + + public int invalidEngineId; + + public int engineNotRunning; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxSvcConnectionStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxSvcConnectionStatus.cs new file mode 100644 index 0000000..b015437 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxSvcConnectionStatus.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxAdptr; + +public enum tagNmxSvcConnectionStatus +{ + NmxSvcDisConnected, + NmxSvcDisconnecting, + NmxSvcConnected, + NmxSvcConnecting, + NmxSvcVerifyingConnectionInfo +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxSvcStatsInfo.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxSvcStatsInfo.cs new file mode 100644 index 0000000..22a5e02 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagNmxSvcStatsInfo.cs @@ -0,0 +1,47 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagNmxSvcStatsInfo +{ + public int bNetNmxDisconnected; + + public int lNetNmxDisconnectCnt; + + public int lNetNMXHeartbeatsMissedCnt; + + public int lNetNMXHeartbeatsMissedConsecCnt; + + public int lNetNMXHeartbeatsMissedConsecMax; + + public int lNMXRequestsSentOffNodeSizeMax; + + public int lNMXResponsesSentOffNodeSizeMax; + + public int lNMXRequestsRcvdOffNodeCnt; + + public int lNMXRequestsSentOffNodeCnt; + + public int lNMXResponsesRcvdOffNodeCnt; + + public int lNMXResponsesSentOffNodeCnt; + + public int lNMXResponsesRcvdOffNodeAccumSize; + + public int lNMXResponsesSentOffNodeAccumSize; + + public int lNMXRequestsRcvdOffNodeAccumSize; + + public int lNMXRequestsSentOffNodeAccumSize; + + public int lNMXRequestsRcvdOffNodeSizeMax; + + public int lNMXResponsesRcvdOffNodeSizeMax; + + public int lNetNMXHeartbeatPeriod; + + public int lNmxLocalMsgsCnt; + + public int lNmxMsgMxTimeout; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPACKETHEADER.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPACKETHEADER.cs new file mode 100644 index 0000000..ba99c00 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPACKETHEADER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPACKETHEADER +{ + public int lSize; + + [ComAliasName("Interop.NmxAdptr.ActionTypes")] + public ActionTypes DataType; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformInformation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformInformation.cs new file mode 100644 index 0000000..00dc7d8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformInformation +{ + public int lPlatformID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPlatformName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrMachine; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformProcessInformation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformProcessInformation.cs new file mode 100644 index 0000000..326c83f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformProcessInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformProcessInformation +{ + public int lPlatformID; + + public int lProcessId; + + public int lPrivateData; + + public tagPlatformProcessStatus processStatus; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformProcessStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformProcessStatus.cs new file mode 100644 index 0000000..50b9d2f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformProcessStatus.cs @@ -0,0 +1,20 @@ +namespace Interop.NmxAdptr; + +public enum tagPlatformProcessStatus +{ + PROCESS_STARTING, + PROCESS_START_FAILED, + PROCESS_STARTED, + PROCESS_STOPPING, + PROCESS_STOP_FAILED, + PROCESS_STOPPED, + PROCESS_TROUBLE, + PROCESS_FAILED, + PROCESS_STARTING_ACTIVE, + PROCESS_STARTING_STANDBY, + PROCESS_SWITCHING_STANDBY, + PROCESS_STOPPING_STANDBY, + PROCESS_RUNNING_ACTIVE, + PROCESS_RUNNING_STANDBY, + PROCESS_STOPPED_STANDBY +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation.cs new file mode 100644 index 0000000..5fa09ea --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation2.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation2.cs new file mode 100644 index 0000000..0aaec3a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation2.cs @@ -0,0 +1,21 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation2 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation3.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation3.cs new file mode 100644 index 0000000..6542198 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation3.cs @@ -0,0 +1,25 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation3 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; + + public int lMasterBuildNumber; + + public int lMinorBuildNumber; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation4.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation4.cs new file mode 100644 index 0000000..1e05080 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformRegistrationInformation4.cs @@ -0,0 +1,30 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation4 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; + + public int lMasterBuildNumber; + + public int lMinorBuildNumber; + + public int storeFwdRedundancyTCPPort; + + [MarshalAs(UnmanagedType.BStr)] + public string storeFwdDir; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformStartupSetting.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformStartupSetting.cs new file mode 100644 index 0000000..6c6ce21 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformStartupSetting.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxAdptr; + +public enum tagPlatformStartupSetting +{ + BOOTSTRAP_START, + SERVICES_START, + ENGINE_START +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformStatus.cs new file mode 100644 index 0000000..a2b478f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagPlatformStatus.cs @@ -0,0 +1,24 @@ +namespace Interop.NmxAdptr; + +public enum tagPlatformStatus +{ + PLATFORM_STARTING, + PLATFORM_START_FAILED, + PLATFORM_STARTED, + PLATFORM_STOPPING, + PLATFORM_STOP_FAILED, + PLATFORM_STOPPED, + PLATFORM_TROUBLE, + PLATFORM_FAILED, + PLATFORM_REGISTERED, + PLATFORM_UNREGISTERED, + PLATFORM_PENDING, + PLATFORM_COMMERROR, + PLATFORM_UNAVAILABLE, + PLATFORM_ADDED, + PLATFORM_REMOVED, + PLATFORM_BOOTSTRAP_STOPPED, + PLATFORM_DEPLOYING, + PLATFORM_UNDEPLOYING, + PLATFORM_CHECKPOINT_FAILED +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyChannel.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyChannel.cs new file mode 100644 index 0000000..ecbad9c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyChannel.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxAdptr; + +public enum tagRedundancyChannel +{ + NoChannel, + PrimaryChannel, + SecondaryChannel, + AllChannels +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyEvent.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyEvent.cs new file mode 100644 index 0000000..060390d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyEvent.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxAdptr; + +public enum tagRedundancyEvent +{ + PartnerStarted, + PartnerShutdown, + PartnerFailed, + PartnerRelocated, + ActiveActiveDetected +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyIdentity.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyIdentity.cs new file mode 100644 index 0000000..f1f6627 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyIdentity.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxAdptr; + +public enum tagRedundancyIdentity +{ + Primary = 1, + Backup, + NotRedundant, + RedundancyIdentityUnknown +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyOperation.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyOperation.cs new file mode 100644 index 0000000..28ca72a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyOperation.cs @@ -0,0 +1,12 @@ +namespace Interop.NmxAdptr; + +public enum tagRedundancyOperation +{ + NoOperation, + SetToActive, + SetToStandby, + PrepareToBeActive, + PrepareToBeStandby, + RetrievePartnerStatus, + SetToShutdown +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyStatus.cs new file mode 100644 index 0000000..f983233 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancyStatus.cs @@ -0,0 +1,21 @@ +namespace Interop.NmxAdptr; + +public enum tagRedundancyStatus +{ + Startup_DeterminingRedundancyStatus = 0, + Startup_SwitchingTo_Active = 1, + Startup_SwitchingTo_Standby = 2, + Active = 3, + Active_SwitchingToStandby = 4, + Active_StandbyNotAvailable = 5, + Standby_Ready = 6, + Standby_NotReady = 7, + Standby_SyncingData = 8, + Standby_SyncingCode = 9, + Standby_SwitchingToActive = 10, + Standby_MissedHeartbeats = 11, + Status_Unknown = 12, + Status_Failed = 13, + Active_PartnerNotUpgraded = 14, + Status_NoChange = 255 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancySubStatus.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancySubStatus.cs new file mode 100644 index 0000000..66ff9fa --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRedundancySubStatus.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxAdptr; + +public enum tagRedundancySubStatus +{ + RedundancySubStatus_NotApplicable = 0, + PartnerNotReachable_OverPrimary = 1, + PartnerNotReachable_OverSecondary = 2, + PartnerNotReachable = 3, + RedundancySubStatus_NoChange = 255 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRegistrationSource.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRegistrationSource.cs new file mode 100644 index 0000000..32c0b6c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagRegistrationSource.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxAdptr; + +public enum tagRegistrationSource +{ + PLATFORM_SRC_PACKAGE, + PLATFORM_SRC_BOOTSTRAP, + PLATFORM_SRC_INSTALL, + PLATFORM_SRC_DEPLOYCHANGE +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagSTATSTG.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagSTATSTG.cs new file mode 100644 index 0000000..1fa047a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagSTATSTG.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.NmxAdptr; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct tagSTATSTG +{ + [MarshalAs(UnmanagedType.LPWStr)] + public string pwcsName; + + public uint type; + + public _ULARGE_INTEGER cbSize; + + public _FILETIME mtime; + + public _FILETIME ctime; + + public _FILETIME atime; + + public uint grfMode; + + public uint grfLocksSupported; + + public Guid clsid; + + public uint grfStateBits; + + public uint reserved; +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagWatchdogTimeoutAction.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagWatchdogTimeoutAction.cs new file mode 100644 index 0000000..8a48e33 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Interop/NmxAdptr/tagWatchdogTimeoutAction.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxAdptr; + +public enum tagWatchdogTimeoutAction +{ + TIMEOUT_NO_ACTION = 0, + TIMEOUT_LOG_ERROR = 1, + TIMEOUT_RESTART = 2, + TIMEOUT_SHUTDOWN = 3, + TIMEOUT_REDUNDANT = 16 +} diff --git a/analysis/decompiled-interop/Interop.NmxAdptr/Properties/AssemblyInfo.cs b/analysis/decompiled-interop/Interop.NmxAdptr/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..aa4dbe5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxAdptr/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: TypeLibVersion(0, 0)] +[assembly: Guid("00000000-0000-0000-0000-000000000000")] +[assembly: ImportedFromTypeLib("MyImports")] +[assembly: AssemblyVersion("0.0.0.0")] diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop.NmxSvc.csproj b/analysis/decompiled-interop/Interop.NmxSvc/Interop.NmxSvc.csproj new file mode 100644 index 0000000..50eac5d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop.NmxSvc.csproj @@ -0,0 +1,15 @@ + + + Interop.NmxSvc + False + net40 + + + 14.0 + True + False + + + + + \ No newline at end of file diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/ActionTypes.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/ActionTypes.cs new file mode 100644 index 0000000..a21a1eb --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/ActionTypes.cs @@ -0,0 +1,55 @@ +namespace Interop.NmxSvc; + +public enum ActionTypes +{ + OPENCONNECTION = 0, + FMCACCEPTEDCONN = 1, + SECURE_OPEN_CONNECTION = 256, + NewConnectionReq = 257, + CheckpointData = 258, + FMTYPE_PLATFORM_INFO_REQ = 4096, + FMTYPE_PLATFORM_INFO_RESP = 4097, + FMTYPE_SUBSCRIBE_HEARTBEAT_REQ = 4098, + FMTYPE_SUBSCRIBE_HEARTBEAT_RESP = 4099, + FMTYPE_PLATFORM_HEARTBEAT = 4112, + FMTYPE_GET_PARTNER_ENGINE_INFO_REQ = 4352, + FMTYPE_GET_PARTNER_ENGINE_INFO_RESP = 4353, + FMTYPE_SET_HEARTBEAT_REQ = 4354, + FMTYPE_SET_HEARTBEAT_RESP = 4355, + FMTYPE_SET_PARTNER_HEARTBEAT_REQ = 4356, + FMTYPE_SET_PARTNER_HEARTBEAT_RESP = 4357, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_REQ = 4358, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_RESP = 4359, + FMTYPE_SUBSCRIBE_STATUS_RESQ = 4360, + FMTYPE_SUBSCRIBE_STATUS_RESP = 4361, + FMTYPE_UNSUBSCRIBE_STATUS_RESQ = 4362, + FMTYPE_UNSUBSCRIBE_STATUS_RESP = 4363, + FMTYPE_REFRESH_STATUS_RESQ = 4364, + FMTYPE_REFRESH_STATUS_RESP = 4365, + FMTYPE_REDUNDANCY_STATUS_REQ = 4366, + FMTYPE_REDUNDANCY_STATUS_RESP = 4367, + FMTYPE_PLATFORM_STATUS_REQ = 4368, + FMTYPE_PLATFORM_STATUS_RESP = 4369, + FMTYPE_REDUNDANCY_ENGINE_INFO_REQ = 4370, + FMTYPE_REDUNDANCY_ENGINE_INFO_RESP = 4371, + FMTYPE_ENGINE_FAILOVER_OPERATION_REQ = 4372, + FMTYPE_ENGINE_FAILOVER_OPERATION_RESP = 4373, + FMTYPE_ENGINE_SWITCHING_TO_ACTIVE_NOTIFICATION_REQ = 4374, + FMTYPE_ENGINE_FAILOVER_DATA = 4416, + FMTYPE_ENGINE_FAILOVER_DATA_ACK = 4417, + FMTYPE_ENGINE_SUBSCRIBER_LIST = 4418, + FMTYPE_ENGINE_SUBSCRIBER_LIST_ACK = 4419, + FMTYPE_ENGINE_FAILOVER_STATUS = 4480, + FMTYPE_ENGINE_FAILOVER_STATUS_ACK = 4481, + FMTYPE_ENGINE_PROCESS_STATUS = 4482, + FMTYPE_ENGINE_PROCESS_STATUS_ACK = 4483, + FMTYPE_PLATFORM_STATUS = 4484, + NMXMTYPE_ENGINE_DATA = 4608, + NMXMTYPE_SET_HEARTBEAT_RATE = 4609, + NMXMTYPE_PLATFORM_HEARTBEAT = 4610, + NMXMTYPE_GET_HEARTBEAT_RATE = 4611, + NMXMTYPE_HEARTBEAT_DISCONNECT_REQ = 4612, + NMXMTYPE_CONNECT_INFO = 4613, + NMXMTYPE_CONNECT_INFO_REQ = 4614, + NMXMTYPE_VERSION_ERROR = 4615 +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIBootstrapStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIBootstrapStatusCallback.cs new file mode 100644 index 0000000..c4a1a7a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIBootstrapStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("1E8D6971-00DB-461D-A8F9-42733B889966")] +public interface AsyncIBootstrapStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyPlatformStatus(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIPlatformStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIPlatformStatusCallback.cs new file mode 100644 index 0000000..598d4ae --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIPlatformStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("4AB54264-3B7A-49C1-8765-B6F905EAD0C3")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface AsyncIPlatformStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyPlatformStatus(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIProcessStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIProcessStatusCallback.cs new file mode 100644 index 0000000..fd9f978 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/AsyncIProcessStatusCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("B82F0BEA-08FC-47A1-9873-402BAF7600E3")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface AsyncIProcessStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Begin_NotifyProcessStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrProcessIdentity, [In] int lPrivateData, [In] tagPlatformProcessStatus lProcessStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Finish_NotifyProcessStatus(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/BootstrapObject.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/BootstrapObject.cs new file mode 100644 index 0000000..1fa4058 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/BootstrapObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("F14886F9-7426-4A85-93F2-734D8950EB20")] +[CoClass(typeof(BootstrapObjectClass))] +public interface BootstrapObject : IBootstrapController4 +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/BootstrapObjectClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/BootstrapObjectClass.cs new file mode 100644 index 0000000..0881cfa --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/BootstrapObjectClass.cs @@ -0,0 +1,390 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[ComConversionLoss] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("22595C0C-28B9-11D3-87E0-00A0C982C01C")] +public class BootstrapObjectClass : IBootstrapController4, BootstrapObject, IBootstrapRegister, IBootstrapRegister2, IBootstrapRegister3, IBootstrapRegister4, IBootstrapRegister5, IBootstrapRegister6, IBootstrapProcessController, IVersionInformation2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister2_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister3_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister4_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister5_RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IBootstrapRegister6_RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterPlatform6([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo, [In][MarshalAs(UnmanagedType.BStr)] string bstrOtherNodeCERTIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrGRcertIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrRTcertIssuer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StartPlatformProcess([In] int lPrivateData, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szExecutable, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdLnArgs, [In][MarshalAs(UnmanagedType.LPWStr)] string szProcessCtrlArgs, [MarshalAs(UnmanagedType.BStr)] out string pszProcessId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownPlatformProcess([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, [In] int lmsShutdownTimeout); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessStatus([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, out tagPlatformProcessStatus pProcessRunState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutdownAllPlatformProcesses(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformProcessList(out int plTotalProcesses, [Out] IntPtr ppPlatformProcessList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetCmdStartOptions([In] int lProcessID, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCmdStartOptions([In] int lProcessID, [MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetBuildNumsAndComponentVers(out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetFileVersionNumbers([In] int platformId, [In] MxFileLocationEnum fileLocation, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAllFileVersionNumbers([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int lVersionCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildComponentVersion, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildComponentVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/CONNECTING_STATUS.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/CONNECTING_STATUS.cs new file mode 100644 index 0000000..9c29dc0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/CONNECTING_STATUS.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxSvc; + +public enum CONNECTING_STATUS +{ + CONNECTION_FAILED, + CONNECTION_ACCEPTED, + CONNECTION_ESTABLISHED +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/DataQuality.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/DataQuality.cs new file mode 100644 index 0000000..c68ee1d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/DataQuality.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxSvc; + +public enum DataQuality +{ + DataQualityUnknown = -1, + DataQualityGood, + DataQualityUncertain, + DataQualityInitializing, + DataQualityBad +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/EQUEUETYPE.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/EQUEUETYPE.cs new file mode 100644 index 0000000..f793fd7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/EQUEUETYPE.cs @@ -0,0 +1,7 @@ +namespace Interop.NmxSvc; + +public enum EQUEUETYPE +{ + eExpressQueue, + eGuarantyQueue +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCCallback.cs new file mode 100644 index 0000000..91bf7c8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCCallback.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A6")] +[CoClass(typeof(FMCCallbackClass))] +public interface FMCCallback : IFMCCallback +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCCallbackClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCCallbackClass.cs new file mode 100644 index 0000000..2d53c84 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCCallbackClass.cs @@ -0,0 +1,29 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("794D8256-18EB-4067-A855-5E54B4AAA182")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +public class FMCCallbackClass : IFMCCallback, FMCCallback, IMCHeartbeatCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DataReceived([In] int lPlatformID, [In][ComAliasName("Interop.NmxSvc.ActionTypes")] ActionTypes usType, [In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RequestConnectionRecv([In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ConnectionEstablished([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DataSent([In] int lPlatformID, [In] int lMessageID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ConnectionClosed([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PartialMsgReceived([In] int platformId, [In] int lCookie); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCObj.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCObj.cs new file mode 100644 index 0000000..edc3607 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCObj.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A5")] +[CoClass(typeof(FMCObjClass))] +public interface FMCObj : IFMC +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCObjClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCObjClass.cs new file mode 100644 index 0000000..596b94f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/FMCObjClass.cs @@ -0,0 +1,35 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("851252A1-C628-4897-A52B-206B50842AD8")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +public class FMCObjClass : IFMC, FMCObj, IUdpMessage +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In] int lPlatformID, [In] int lCookie, [In][MarshalAs(UnmanagedType.BStr)] string bstrAddress, [In] int lPort, [In][MarshalAs(UnmanagedType.Interface)] FMCCallback pCallback, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RequestConnection([In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Connect([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int lPlatformID, [In] int timeToWaitForConnection = 500); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SendData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxSvc.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody, [In] int dwTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnInitialize(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DisConnect([In] int lPlatformID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ConnectEx([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int timeToWaitForConnection); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SendUdpData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxSvc.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController.cs new file mode 100644 index 0000000..298ca37 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController.cs @@ -0,0 +1,52 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("22595C0B-28B9-11D3-87E0-00A0C982C01C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDownPlatformSynchronous([In] int platformId); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController2.cs new file mode 100644 index 0000000..f3b1b5a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController2.cs @@ -0,0 +1,55 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("1943AAB6-2AC9-45D5-AD5F-1AF80AECBCAE")] +public interface IBootstrapController2 : IBootstrapController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController3.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController3.cs new file mode 100644 index 0000000..5393643 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController3.cs @@ -0,0 +1,59 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("1943AAB6-2AC9-45D5-AD5F-1AF80AECBCAD")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapController3 : IBootstrapController2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController4.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController4.cs new file mode 100644 index 0000000..54223fe --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController4.cs @@ -0,0 +1,65 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F14886F9-7426-4A85-93F2-734D8950EB20")] +public interface IBootstrapController4 : IBootstrapController3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController5.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController5.cs new file mode 100644 index 0000000..4177dac --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapController5.cs @@ -0,0 +1,71 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("63512694-27F3-4210-AD3B-2A68EAA6DF4E")] +public interface IBootstrapController5 : IBootstrapController4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void StartPlatform([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatform([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformStatus([In] int platformId, out tagPlatformStatus pPlatformStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetLocalPlatformEngineStatus([In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InformOtherPlatformStatus([In] int platformId, [In] tagPlatformStatus platformStatus, [In] int lPlatformEngineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStartupState([In] int platformId, [In] tagPlatformStartupSetting flag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribePlatformStatusService([In][MarshalAs(UnmanagedType.Interface)] IPlatformStatusCallback pIPlatformStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeProcessStatusService([In][MarshalAs(UnmanagedType.Interface)] IProcessStatusCallback pIProcessStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService([In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribePlatformStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeProcessStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnSubscribeBootstrapStatusService([In] int lToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ShutDownPlatformSynchronous([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformMappingTableTimeStamp(out _FILETIME pmtTimeStamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SubscribeBootstrapStatusService2([In] Guid bootstrapInstance, [In] int platformId, [In][MarshalAs(UnmanagedType.Interface)] IBootstrapStatusCallback pIBootstrapStatusCallback, out int plToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SwitchoverPlatform([In] int lDestinationPlatform, [In] int lStagedEngineId, [In] bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRestartHostedEnginesStatus([In] int lLocalPlatformId, out bool bRestartHostedEngines); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveLocalPlatform(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSecurityForStoreFwdDirectory(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapProcessController.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapProcessController.cs new file mode 100644 index 0000000..ae82844 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapProcessController.cs @@ -0,0 +1,33 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("22595C0F-28B9-11D3-87E0-00A0C982C01C")] +public interface IBootstrapProcessController +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StartPlatformProcess([In] int lPrivateData, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szExecutable, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdLnArgs, [In][MarshalAs(UnmanagedType.LPWStr)] string szProcessCtrlArgs, [MarshalAs(UnmanagedType.BStr)] out string pszProcessId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownPlatformProcess([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, [In] int lmsShutdownTimeout); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformProcessStatus([In][MarshalAs(UnmanagedType.LPWStr)] string szProcessId, out tagPlatformProcessStatus pProcessRunState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutdownAllPlatformProcesses(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformProcessList(out int plTotalProcesses, [Out] IntPtr ppPlatformProcessList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetCmdStartOptions([In] int lProcessID, [In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCmdStartOptions([In] int lProcessID, [MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister.cs new file mode 100644 index 0000000..4b2d19f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister.cs @@ -0,0 +1,48 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("22595C0D-28B9-11D3-87E0-00A0C982C01C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +public interface IBootstrapRegister +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister2.cs new file mode 100644 index 0000000..fdd5108 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister2.cs @@ -0,0 +1,50 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("E42D2692-4B57-4E97-B99C-2829D60A4D2E")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegister2 : IBootstrapRegister +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister3.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister3.cs new file mode 100644 index 0000000..7e3a6ca --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister3.cs @@ -0,0 +1,56 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("E42D2692-4B57-4E97-B99C-2829D60A4D2F")] +public interface IBootstrapRegister3 : IBootstrapRegister2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister4.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister4.cs new file mode 100644 index 0000000..32c651b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister4.cs @@ -0,0 +1,59 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("219BB2BB-B4B6-4486-A2C8-93F11BA16583")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegister4 : IBootstrapRegister3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister5.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister5.cs new file mode 100644 index 0000000..225736e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister5.cs @@ -0,0 +1,62 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0A7B1AF2-CFFC-491D-ADDD-8C496E9207F2")] +public interface IBootstrapRegister5 : IBootstrapRegister4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister6.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister6.cs new file mode 100644 index 0000000..4acea93 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegister6.cs @@ -0,0 +1,65 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("597D6C1E-05F2-4B5E-95E8-A088F1002249")] +public interface IBootstrapRegister6 : IBootstrapRegister5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagRegistrationSource regSource, [In] int lPlatformID, [In] tagClusterRegistrationInformation clusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation([In] int platformId, out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPlatform([In] tagRegistrationSource regSource, [In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatformEngine([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string szVendor, [In][MarshalAs(UnmanagedType.LPWStr)] string szEngineName, [In][MarshalAs(UnmanagedType.LPWStr)] string szStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string szConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRemotePlatformList([In][MarshalAs(UnmanagedType.LPWStr)] string szNodeName, out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterFolderOrFile([In][MarshalAs(UnmanagedType.LPWStr)] string szFolderOrFilePath, [In] bool bRemoveOnUninstall); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformStatus([In] int platformId, [In] tagPlatformStatus status, [In] int engineStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform2([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation2 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform3([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation3 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void MarkPlatformUndeployed([In][MarshalAs(UnmanagedType.BStr)] string bstrGalaxyName, [In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterPlatform4([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterNodeWithASBSolution([In][MarshalAs(UnmanagedType.LPWStr)] string NodeToPairWith); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterPlatform6([In][MarshalAs(UnmanagedType.LPWStr)] string szGalaxyName, [In] tagRegistrationSource regSource, [In] tagPlatformRegistrationInformation4 platformRegInfo, [In][MarshalAs(UnmanagedType.BStr)] string bstrOtherNodeCERTIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrGRcertIssuer, [MarshalAs(UnmanagedType.BStr)] out string bstrRTcertIssuer); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegistryAccess.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegistryAccess.cs new file mode 100644 index 0000000..f0440f3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapRegistryAccess.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("04C4A1E4-4541-11D3-87EC-00A0C982C01C")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapRegistryAccess +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRootKey([MarshalAs(UnmanagedType.BStr)] out string pbstrRootpath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In][MarshalAs(UnmanagedType.LPWStr)] string szIndex, [MarshalAs(UnmanagedType.BStr)] out string pbstrPathname); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetObjectRuntimeFilepath([In][MarshalAs(UnmanagedType.LPWStr)] string szObjectName, [In][MarshalAs(UnmanagedType.LPWStr)] string szIndex, [In][MarshalAs(UnmanagedType.LPWStr)] string szPathname); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapStatusCallback.cs new file mode 100644 index 0000000..4c7a537 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IBootstrapStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("71CC01D9-5C20-41D8-B297-4E0C7DE04D31")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IBootstrapStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMC.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMC.cs new file mode 100644 index 0000000..e526b3b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMC.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A5")] +public interface IFMC +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] int lPlatformID, [In] int lCookie, [In][MarshalAs(UnmanagedType.BStr)] string bstrAddress, [In] int lPort, [In][MarshalAs(UnmanagedType.Interface)] FMCCallback pCallback, [In][MarshalAs(UnmanagedType.BStr)] string bstrMulticastGroup, [In] int lMultiCastPort = 5001); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RequestConnection([In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Connect([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int lPlatformID, [In] int timeToWaitForConnection = 500); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SendData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxSvc.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody, [In] int dwTimeOut = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnInitialize(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DisConnect([In] int lPlatformID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectEx([In][MarshalAs(UnmanagedType.BStr)] string bstrPartnerIP, [In] int lPartnerPort, [In] int timeToWaitForConnection); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMCCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMCCallback.cs new file mode 100644 index 0000000..76d3fbb --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMCCallback.cs @@ -0,0 +1,25 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("4422DBBC-3714-487C-81A4-CBA3B3E981A6")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IFMCCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataReceived([In] int lPlatformID, [In][ComAliasName("Interop.NmxSvc.ActionTypes")] ActionTypes usType, [In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RequestConnectionRecv([In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablished([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataSent([In] int lPlatformID, [In] int lMessageID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionClosed([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMCCallbackEx.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMCCallbackEx.cs new file mode 100644 index 0000000..e4d5d70 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IFMCCallbackEx.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("C76EFD3E-772D-4C16-BEF5-0C0ECAB2A509")] +public interface IFMCCallbackEx : IFMCCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DataReceived([In] int lPlatformID, [In][ComAliasName("Interop.NmxSvc.ActionTypes")] ActionTypes usType, [In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RequestConnectionRecv([In] int lCookie, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ConnectionEstablished([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DataSent([In] int lPlatformID, [In] int lMessageID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ConnectionClosed([In] int lPlatformID, [In] int lCookie, [In] int lErrCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablishedEx([MarshalAs(UnmanagedType.BStr)] string address, int port, int platformId, int lCookie, int lErrCode); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify.cs new file mode 100644 index 0000000..f7ff781 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("06D2B229-AF4F-11D3-939D-00C04F6BBD91")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IInfoNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Fire_OnInfoNotify([In] int flag); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_Event.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_Event.cs new file mode 100644 index 0000000..2149d82 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_Event.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComEventInterface(typeof(IInfoNotify), typeof(IInfoNotify_EventProvider))] +[ComVisible(false)] +public interface IInfoNotify_Event +{ + event IInfoNotify_Fire_OnInfoNotifyEventHandler Fire_OnInfoNotify; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_EventProvider.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_EventProvider.cs new file mode 100644 index 0000000..4e67979 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_EventProvider.cs @@ -0,0 +1,148 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace Interop.NmxSvc; + +internal sealed class IInfoNotify_EventProvider : IInfoNotify_Event, IDisposable +{ + private WeakReference m_wkConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 41, 178, 210, 6, 79, 175, 211, 17, 147, 157, + 0, 192, 79, 107, 189, 145 + }); + ((IConnectionPointContainer)m_wkConnectionPointContainer.Target).FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_Fire_OnInfoNotify(IInfoNotify_Fire_OnInfoNotifyEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + Init(); + } + IInfoNotify_SinkHelper infoNotify_SinkHelper = new IInfoNotify_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(infoNotify_SinkHelper, out pdwCookie); + infoNotify_SinkHelper.m_dwCookie = pdwCookie; + infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate = P_0; + m_aEventSinkHelpers.Add(infoNotify_SinkHelper); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void remove_Fire_OnInfoNotify(IInfoNotify_Fire_OnInfoNotifyEventHandler P_0) + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + IInfoNotify_SinkHelper infoNotify_SinkHelper = (IInfoNotify_SinkHelper)m_aEventSinkHelpers[num]; + if (infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate != null && ((infoNotify_SinkHelper.m_Fire_OnInfoNotifyDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(infoNotify_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public IInfoNotify_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_wkConnectionPointContainer = new WeakReference((IConnectionPointContainer)P_0, trackResurrection: false); + } + + public void Finalize() + { + bool lockTaken = default(bool); + try + { + Monitor.Enter(this, ref lockTaken); + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + IInfoNotify_SinkHelper infoNotify_SinkHelper = (IInfoNotify_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(infoNotify_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + if (lockTaken) + { + Monitor.Exit(this); + } + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs new file mode 100644 index 0000000..243ad93 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_Fire_OnInfoNotifyEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ComVisible(false)] +public delegate void IInfoNotify_Fire_OnInfoNotifyEventHandler([In] int flag); diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_SinkHelper.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_SinkHelper.cs new file mode 100644 index 0000000..6a64add --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IInfoNotify_SinkHelper.cs @@ -0,0 +1,28 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[TypeLibType(TypeLibTypeFlags.FHidden)] +[ClassInterface(ClassInterfaceType.None)] +public sealed class IInfoNotify_SinkHelper : IInfoNotify +{ + public IInfoNotify_Fire_OnInfoNotifyEventHandler m_Fire_OnInfoNotifyDelegate; + + public int m_dwCookie; + + public void Fire_OnInfoNotify(int P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_Fire_OnInfoNotifyDelegate != null) + { + m_Fire_OnInfoNotifyDelegate(P_0); + } + } + + internal IInfoNotify_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_Fire_OnInfoNotifyDelegate = null; + } +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMCHeartbeatCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMCHeartbeatCallback.cs new file mode 100644 index 0000000..819249a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMCHeartbeatCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0160D478-1FBF-43C8-BD84-8BD40F528DF8")] +public interface IMCHeartbeatCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PartialMsgReceived([In] int platformId, [In] int lCookie); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxReference.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxReference.cs new file mode 100644 index 0000000..20d0daf --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxReference.cs @@ -0,0 +1,92 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +public interface IMxReference : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [DispId(1)] + string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxValue.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxValue.cs new file mode 100644 index 0000000..3abf8d6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxValue.cs @@ -0,0 +1,159 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +public interface IMxValue : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxValueFactory.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxValueFactory.cs new file mode 100644 index 0000000..3482df6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IMxValueFactory.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("1B6AEB81-CB43-11D2-BFFF-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxValueFactory +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstance([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceBool([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, bool val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceLong([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, int val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceFloat([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, float val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceDouble([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, double val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceString([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue, [MarshalAs(UnmanagedType.LPWStr)] string val); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx.cs new file mode 100644 index 0000000..11241f9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx.cs @@ -0,0 +1,54 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("42DB0512-28BE-11D3-80C0-00104B5F96A7")] +public interface INmx +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetMessageTimeout([In] int TimeoutValue); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx2.cs new file mode 100644 index 0000000..ab71bc3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("61902C5F-194B-4FF6-81C8-AE5540625CAB")] +public interface INmx2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequestEx([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwSize, [In] ref byte pData); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx3.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx3.cs new file mode 100644 index 0000000..ba88f81 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx3.cs @@ -0,0 +1,66 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("9F9D26DA-69DE-4A27-822A-E0D5B1745039")] +public interface INmx3 : INmx +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx4.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx4.cs new file mode 100644 index 0000000..270e6bb --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmx4.cs @@ -0,0 +1,74 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("84168012-B544-4217-A145-32819C607435")] +public interface INmx4 : INmx3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize2([In] int dwPlatformId, [In] int dwEngineId, [In] int dwVersion, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void InitializeAnonymous2(out int pPlatformId, out int pEngineId, [In] int dwVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxHeartbeat.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxHeartbeat.cs new file mode 100644 index 0000000..8bc38a8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxHeartbeat.cs @@ -0,0 +1,22 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("0B447D53-D3CC-4471-B2DF-5E06AC355915")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxHeartbeat +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ShutDown(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxNotify.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxNotify.cs new file mode 100644 index 0000000..1278613 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxNotify.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("73849AEA-472A-4715-B8C6-1C806AF12DFC")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionEstablished([In] int lPlatformID, [In] int lReference, [In] tagNmxSvcConnectionStatus eConnStatus, [In] int lDetailCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ConnectionClosed([In] int lPlatformID, [In] int lReference); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxService.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxService.cs new file mode 100644 index 0000000..4d6c9f2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxService.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("575008DB-845D-46C6-A906-F6F8CA86F315")] +public interface INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxService2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxService2.cs new file mode 100644 index 0000000..6db7ec5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxService2.cs @@ -0,0 +1,37 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("2630A513-A974-4B1A-8025-457A9A7C56B8")] +public interface INmxService2 : INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine2([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In] int lVersion, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxStatistics.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxStatistics.cs new file mode 100644 index 0000000..ef88ab6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxStatistics.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("4169B479-54BD-11D3-A9CC-00A0C9FB55A0")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNmxStatistics(out tagNmxStatsInfo pNmxStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Reset(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxStatus.cs new file mode 100644 index 0000000..10161b1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxStatus.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4CA783BC-F68E-42F4-9D76-8107C826F625")] +public interface INmxStatus +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OPENCONNECTION([In] int lPlatformID, [In][MarshalAs(UnmanagedType.Interface)] INmxNotify pNotify, [In] int lReference, [In] int lProcessID, out int plCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CloseConnection([In] int lCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetConnectionStatus([In] int lPlatformID, out tagNmxSvcConnectionStatus peConnState); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxSvcCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxSvcCallback.cs new file mode 100644 index 0000000..471eab1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxSvcCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("B49F92F7-C748-4169-8ECA-A0670B012746")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface INmxSvcCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DataReceived([In] int dwBufferSize, [In] ref sbyte lpDataBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void StatusReceived([In] int dwBufferSize, [In] ref sbyte lpStatusBuffer); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxSvcStatistics.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxSvcStatistics.cs new file mode 100644 index 0000000..6298d57 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/INmxSvcStatistics.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("6EB90E4C-DF5C-47F0-B2CD-110549C1162A")] +public interface INmxSvcStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetSvcStatistics(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPersist.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPersist.cs new file mode 100644 index 0000000..e0a1fd7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPersist.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("0000010C-0000-0000-C000-000000000046")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClassID(out Guid pClassID); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPersistStream.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPersistStream.cs new file mode 100644 index 0000000..d416968 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPersistStream.cs @@ -0,0 +1,26 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("00000109-0000-0000-C000-000000000046")] +public interface IPersistStream : IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetSizeMax(out _ULARGE_INTEGER pcbSize); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInfoServer.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInfoServer.cs new file mode 100644 index 0000000..c77ea2b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInfoServer.cs @@ -0,0 +1,73 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4E448140-AE83-11D3-939D-00C04F6BBD91")] +public interface IPlatformInfoServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsValidEngineId([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineDefinition([In] int lEngineID, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagEngineDefinition GetEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineScanState([In] int lEngineID, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetEngineScanState([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetStartupType([In] int lEngineID, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetStartupType([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineState([In] int lEngineID, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineRestart([In] int lEngineID, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetEngineRestart([In] int lEngineID); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInfoServer2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInfoServer2.cs new file mode 100644 index 0000000..7adfff6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInfoServer2.cs @@ -0,0 +1,82 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("2BF52D84-0902-489F-84F8-77BD49BB932E")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformInfoServer2 : IPlatformInfoServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsValidEngineId([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineDefinition([In] int lEngineID, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new tagEngineDefinition GetEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineScanState([In] int lEngineID, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetEngineScanState([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupType([In] int lEngineID, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetStartupType([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineState([In] int lEngineID, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetEngineRestart([In] int lEngineID, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool GetEngineRestart([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetEngineDefinition2([In] int lEngineID, [In] ref tagEngineDefinition2 pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagEngineDefinition2 GetEngineDefinition2([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + tagRedundancyIdentity GetEngineRedundancyIdentity([In] int lEngineID); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk.cs new file mode 100644 index 0000000..8d47093 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk.cs @@ -0,0 +1,90 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("148C8733-3930-11D3-87EA-00A0C982C01C")] +public interface IPlatformInformationClerk +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk2.cs new file mode 100644 index 0000000..7e420d2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk2.cs @@ -0,0 +1,102 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[ComConversionLoss] +[Guid("361A8B77-C77A-4A70-B220-FB502D6F847E")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformInformationClerk2 : IPlatformInformationClerk +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk3.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk3.cs new file mode 100644 index 0000000..ddcbaf3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk3.cs @@ -0,0 +1,114 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("361A8B77-C77A-4A70-B220-FB502D6F847F")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +public interface IPlatformInformationClerk3 : IPlatformInformationClerk2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk4.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk4.cs new file mode 100644 index 0000000..3d5d12b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk4.cs @@ -0,0 +1,126 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[ComConversionLoss] +[Guid("5A405C49-2FB2-499A-99A8-0E09676DBD75")] +public interface IPlatformInformationClerk4 : IPlatformInformationClerk3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk5.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk5.cs new file mode 100644 index 0000000..503e3b2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformInformationClerk5.cs @@ -0,0 +1,128 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("80A3606C-99F8-4CC8-AF3B-92B57782DBCC")] +public interface IPlatformInformationClerk5 : IPlatformInformationClerk4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerPlatformSUPStatus([In] int platformId, [In] int partnerPlatformId, out int supStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformStatusCallback.cs new file mode 100644 index 0000000..c8be7cc --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IPlatformStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("BCE01301-0A39-41E2-90A3-0D9C7110A12A")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IPlatformStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyPlatformStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrPlatformName, [In] tagPlatformStatus lPlatformStatus, [In] int lPlatformEngineStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IProcessStatusCallback.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IProcessStatusCallback.cs new file mode 100644 index 0000000..ec0f80a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IProcessStatusCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("DDF780BD-99C9-40D3-B35C-57083D3ED996")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IProcessStatusCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyProcessStatus([In] int lPlatformID, [In][MarshalAs(UnmanagedType.BStr)] string bstrProcessIdentity, [In] int lPrivateData, [In] tagPlatformProcessStatus lProcessStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/ISequentialStream.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/ISequentialStream.cs new file mode 100644 index 0000000..660882a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/ISequentialStream.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("0C733A30-2A1C-11CE-ADE5-00AA0044773D")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IStatusNotify.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IStatusNotify.cs new file mode 100644 index 0000000..1d4ca10 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IStatusNotify.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("ACA1A4A8-9F53-499D-962A-B8FC76D5A7D8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IStatusNotify +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NotifyStateChanged([In] ref tagEngineStatusInfo pEngineStatusInfo); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IStream.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IStream.cs new file mode 100644 index 0000000..8305d25 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IStream.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("0000000C-0000-0000-C000-000000000046")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IStream : ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteSeek([In] _LARGE_INTEGER dlibMove, [In] uint dwOrigin, out _ULARGE_INTEGER plibNewPosition); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSize([In] _ULARGE_INTEGER libNewSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteCopyTo([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] _ULARGE_INTEGER cb, out _ULARGE_INTEGER pcbRead, out _ULARGE_INTEGER pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Commit([In] uint grfCommitFlags); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Revert(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void LockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnlockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Stat(out tagSTATSTG pstatstg, [In] uint grfStatFlag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out IStream ppstm); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IUdpMessage.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IUdpMessage.cs new file mode 100644 index 0000000..d6d0d6a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IUdpMessage.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("70FEF3FA-7E71-400E-B1BA-0C8ADE1E7ED8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUdpMessage +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SendUdpData([In] int lPlatformID, [In] int lMessageID, [In][ComAliasName("Interop.NmxSvc.ActionTypes")] ActionTypes usType, [In] int lSize, [In] ref byte pMsgBody); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IVersionInformation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IVersionInformation.cs new file mode 100644 index 0000000..7170642 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IVersionInformation.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("5C1F679B-2F14-4426-A1A0-B74B73BD8EF4")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IVersionInformation +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetMaintenanceBuildComponentVersion(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IVersionInformation2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IVersionInformation2.cs new file mode 100644 index 0000000..f45c4b9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/IVersionInformation2.cs @@ -0,0 +1,39 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B6EEB7BF-AE82-4373-A715-32ADF63E7076")] +public interface IVersionInformation2 : IVersionInformation +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int GetMaintenanceBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetBuildNumsAndComponentVers(out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetFileVersionNumbers([In] int platformId, [In] MxFileLocationEnum fileLocation, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int masterBuildNumber, out int masterBuildComponentVersion, out int maintenanceBuildNumber, out int maintenanceBuildComponentVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAllFileVersionNumbers([In] int platformId, [In][MarshalAs(UnmanagedType.LPWStr)] string fileName, out int lVersionCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMasterBuildComponentVersion, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildNumber, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_I4)] out int[] ppMaintenanceBuildComponentVersion); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/InternationalizedString.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/InternationalizedString.cs new file mode 100644 index 0000000..c4ef638 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/InternationalizedString.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("43529BD9-3860-4343-BC7E-697B9F8B344D")] +public struct InternationalizedString +{ + public int locale; + + [MarshalAs(UnmanagedType.BStr)] + public string internationalizedStr; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxAttributeHandle.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxAttributeHandle.cs new file mode 100644 index 0000000..608404a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxAttributeHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAttributeHandle +{ + public short primitiveId; + + public short attributeId; + + public short propertyId; + + public ushort signature; + + public short index1; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxAutomationObjectHandle.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxAutomationObjectHandle.cs new file mode 100644 index 0000000..cef50d7 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxAutomationObjectHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAutomationObjectHandle +{ + public byte galaxy; + + public ushort platform; + + public ushort engine; + + public ushort @object; + + public ushort signature; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxDataType.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxDataType.cs new file mode 100644 index 0000000..d8a1e1b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxDataType.cs @@ -0,0 +1,24 @@ +namespace Interop.NmxSvc; + +public enum MxDataType +{ + MxDataTypeUnknown = -1, + MxNoData, + MxBoolean, + MxInteger, + MxFloat, + MxDouble, + MxString, + MxTime, + MxElapsedTime, + MxReferenceType, + MxStatusType, + MxDataTypeEnum, + MxSecurityClassificationEnum, + MxDataQualityType, + MxQualifiedEnum, + MxQualifiedStruct, + MxInternationalizedString, + MxBigString, + MxDataTypeEND +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxFileLocationEnum.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxFileLocationEnum.cs new file mode 100644 index 0000000..f4ea99f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxFileLocationEnum.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxSvc; + +public enum MxFileLocationEnum +{ + MxInCommonFolder, + MxInBinFolder, + MxInWindowsGAC +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxHandle.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxHandle.cs new file mode 100644 index 0000000..8fa268f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxHandle.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxHandle +{ + public MxAutomationObjectHandle @object; + + public MxAttributeHandle attribute; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxResolutionStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxResolutionStatus.cs new file mode 100644 index 0000000..f280c1d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxResolutionStatus.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxSvc; + +public enum MxResolutionStatus +{ + MxReferenceUndefined = -1, + MxReferenceUnresolved, + MxReferenceResolved, + MxReferenceAttributeNotPresent +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxSecurityClassification.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxSecurityClassification.cs new file mode 100644 index 0000000..bc8871f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxSecurityClassification.cs @@ -0,0 +1,13 @@ +namespace Interop.NmxSvc; + +public enum MxSecurityClassification +{ + MxSecurityUndefined = -1, + MxSecurityFreeAccess, + MxSecurityOperate, + MxSecuritySecuredWrite, + MxSecurityVerifiedWrite, + MxSecurityTune, + MxSecurityConfigure, + MxSecurityViewOnly +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatus.cs new file mode 100644 index 0000000..269d78c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatus.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct MxStatus +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusCategory.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusCategory.cs new file mode 100644 index 0000000..01090dd --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusCategory.cs @@ -0,0 +1,15 @@ +namespace Interop.NmxSvc; + +public enum MxStatusCategory +{ + MxStatusCategoryUnknown = -1, + MxCategoryOk, + MxCategoryPending, + MxCategoryWarning, + MxCategoryCommunicationError, + MxCategoryConfigurationError, + MxCategoryOperationalError, + MxCategorySecurityError, + MxCategorySoftwareError, + MxCategoryOtherError +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusDetail.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusDetail.cs new file mode 100644 index 0000000..f167619 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusDetail.cs @@ -0,0 +1,51 @@ +namespace Interop.NmxSvc; + +public enum MxStatusDetail +{ + MX_S_Success = 0, + MX_E_RequestTimedOut = 1, + MX_E_PlatformCommunicationError = 2, + MX_E_InvalidPlatformId = 3, + MX_E_InvalidEngineId = 4, + MX_E_EngineCommunicationError = 5, + MX_E_InvalidReference = 6, + MX_E_NoGalaxyRepository = 7, + MX_E_InvalidObjectId = 8, + MX_E_ObjectSignatureMismatch = 9, + MX_E_AttributeSignatureMismatch = 10, + MX_E_ResolvingAttribute = 11, + MX_E_ResolvingObject = 12, + MX_E_WrongDataType = 13, + MX_E_WrongNumberOfDimensions = 14, + MX_E_InvalidIndex = 15, + MX_E_IndexOutOfOrder = 16, + MX_E_DimensionDoesNotExist = 17, + MX_E_ConversionNotSupported = 18, + MX_E_UnableToConvertString = 19, + MX_E_Overflow = 20, + MX_E_NmxVersionMismatch = 21, + MX_E_NmxInvalidCommand = 22, + MX_E_LmxVersionMismatch = 23, + MX_E_LmxInvalidCommand = 24, + MX_E_GalaxyRepositoryBusy = 25, + MX_E_EngineOverloaded = 26, + MX_E_InvalidPrimitiveId = 1000, + MX_E_InvalidAttributeId = 1001, + MX_E_InvalidPropertyId = 1002, + MX_E_IndexOutOfRange = 1003, + MX_E_DataOutOfRange = 1004, + MX_E_IncorrectDataType = 1005, + MX_E_NotReadable = 1006, + MX_E_NotWriteable = 1007, + MX_E_WriteAccessDenied = 1008, + MX_E_UnknownError = 1009, + MX_E_ObjectInitializing = 1010, + MX_E_EngineInitializing = 1011, + MX_E_SecuredWrite = 1012, + MX_E_VerifiedWrite = 1013, + MX_E_NoAlarmAckPrivilege = 1014, + MX_E_AlarmAckedAlready = 1015, + MX_E_UserNotHavingAccessRights = 1016, + MX_E_VerifierNotHavingVerifyRights = 1017, + MX_E_AutomationObjectSpecificError = 8000 +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusSource.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusSource.cs new file mode 100644 index 0000000..5a0b12c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxStatusSource.cs @@ -0,0 +1,12 @@ +namespace Interop.NmxSvc; + +public enum MxStatusSource +{ + MxSourceUnknown = -1, + MxSourceRequestingLmx, + MxSourceRespondingLmx, + MxSourceRequestingNmx, + MxSourceRespondingNmx, + MxSourceRequestingAutomationObject, + MxSourceRespondingAutomationObject +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxValue.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxValue.cs new file mode 100644 index 0000000..8fc1b0a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxValue.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +[CoClass(typeof(MxValueClass))] +public interface MxValue : IMxValue +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxValueClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxValueClass.cs new file mode 100644 index 0000000..7ee6419 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/MxValueClass.cs @@ -0,0 +1,160 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ComConversionLoss] +[ClassInterface(ClassInterfaceType.None)] +[Guid("51D955B1-B086-11D2-BFB1-00104B5F96A7")] +public class MxValueClass : IMxValue, MxValue +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Clone([MarshalAs(UnmanagedType.Interface)] out MxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] MxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/Nmx.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/Nmx.cs new file mode 100644 index 0000000..11b4dc8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/Nmx.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("84168012-B544-4217-A145-32819C607435")] +[CoClass(typeof(NmxClass))] +public interface Nmx : INmx4 +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxClass.cs new file mode 100644 index 0000000..04e261e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxClass.cs @@ -0,0 +1,199 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("42DB0511-28BE-11D3-80C0-00104B5F96A7")] +[ClassInterface(ClassInterfaceType.None)] +[ComConversionLoss] +public class NmxClass : INmx4, Nmx, INmx, INmx2, INmx3, INmxHeartbeat, INmxSvcCallback, INmxSvcStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize2([In] int dwPlatformId, [In] int dwEngineId, [In] int dwVersion, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void InitializeAnonymous2(out int pPlatformId, out int pEngineId, [In] int dwVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx_SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PutRequestEx([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_Initialize([In] int dwPlatformId, [In] int dwEngineId, [In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_InitializeAnonymous(out int pPlatformId, out int pEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_CreateGuaranteedQueue([In] int dwQueueExtent); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_DeleteGuaranteedQueue([In] int dwEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_SetQueueExtent([In] int dwNewExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetQueueExtent(out int dwQueueExtent, [In][ComAliasName("Interop.NmxSvc.EQUEUETYPE")] EQUEUETYPE EQUEUETYPE); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetQueueInfo(out int NumberMessagesQueued, out int QueueSizeInBytes); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutRequest([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutResponse([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetRequest(out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetResponse(out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutMessageNoReply([In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetVersionInfo([MarshalAs(UnmanagedType.BStr)] out string nmxversion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_SetMessageTimeout([In] int TimeoutValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutRequest2([In] int dwClusterId, [In] int dwPlatformId, [In] int dwEngineId, [In] byte byPriority, [In] byte byType, [In] int dwSize, [In] ref byte pData, out int pdwRequestHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_PutResponse2([In] byte byType, [In] int dwGalaxyId, [In] int dwPlatformId, [In] int dwEngineId, [In] int dwRequestHandle, [In] int dwSize, [In] ref byte pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetRequest2([In] byte byType, out int pdwGalaxyId, out int pdwPlatformId, out int pdwEngineId, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData, out bool pReplyRequired); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmx3_GetResponse2([In] byte byType, out int pdwResponseCode, out int pdwRequestHandle, out int pdwSize, [Out] IntPtr pData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AddSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveSubscriberEngine([In] int dwSubscriberClusterId, [In] int dwSubscriberPlatformId, [In] int dwSubscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ShutDown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DataReceived([In] int dwBufferSize, [In] ref sbyte lpDataBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void StatusReceived([In] int dwBufferSize, [In] ref sbyte lpStatusBuffer); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetSvcStatistics(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxService.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxService.cs new file mode 100644 index 0000000..566e542 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxService.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[CoClass(typeof(NmxServiceClass))] +[Guid("2630A513-A974-4B1A-8025-457A9A7C56B8")] +public interface NmxService : INmxService2 +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxServiceClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxServiceClass.cs new file mode 100644 index 0000000..5475649 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxServiceClass.cs @@ -0,0 +1,74 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("AE24BD51-2E80-44CC-905B-E5446C942BEB")] +public class NmxServiceClass : INmxService2, NmxService, INmxService, INmxSvcStatistics, INmxStatus +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterEngine2([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In] int lVersion, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerVersion([In] int lGalaxyID, [In] int lPlatformID, [In] int lEngineID, out int plVersion); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_RegisterEngine([In] int lEngineID, [In][MarshalAs(UnmanagedType.BStr)] string bstrEngineName, [In][MarshalAs(UnmanagedType.Interface)] INmxSvcCallback pNmxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_UnRegisterEngine([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_Connect([In] int lLocalEngineID, [In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_TransferData([In] int lRemoteGalaxyID, [In] int lRemotePlatformID, [In] int lRemoteEngineID, [In] int lSize, [In] ref byte pMsgBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_AddSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_RemoveSubscriberEngine([In] int lLocalEngineID, [In] int lSubscriberGalaxyID, [In] int lSubscriberPlatformID, [In] int lSubscriberEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void INmxService_SetHeartbeatSendInterval([In] int lTicksPerBeat, [In] int lMaxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetSvcStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void OPENCONNECTION([In] int lPlatformID, [In][MarshalAs(UnmanagedType.Interface)] INmxNotify pNotify, [In] int lReference, [In] int lProcessID, out int plCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CloseConnection([In] int lCookie, out tagNmxSvcConnectionStatus peStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetConnectionStatus([In] int lPlatformID, out tagNmxSvcConnectionStatus peConnState); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxStatistics.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxStatistics.cs new file mode 100644 index 0000000..21011c6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxStatistics.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("4169B479-54BD-11D3-A9CC-00A0C9FB55A0")] +[CoClass(typeof(NmxStatisticsClass))] +public interface NmxStatistics : INmxStatistics +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxStatisticsClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxStatisticsClass.cs new file mode 100644 index 0000000..6b64a57 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/NmxStatisticsClass.cs @@ -0,0 +1,17 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[Guid("4169B47A-54BD-11D3-A9CC-00A0C9FB55A0")] +[ClassInterface(ClassInterfaceType.None)] +public class NmxStatisticsClass : INmxStatistics, NmxStatistics +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNmxStatistics(out tagNmxStatsInfo pNmxStats); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Reset(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInfoServer.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInfoServer.cs new file mode 100644 index 0000000..81b28fb --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInfoServer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("4E448140-AE83-11D3-939D-00C04F6BBD91")] +[CoClass(typeof(PlatformInfoServerClass))] +public interface PlatformInfoServer : IPlatformInfoServer, IInfoNotify_Event +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInfoServerClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInfoServerClass.cs new file mode 100644 index 0000000..5d8f3f1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInfoServerClass.cs @@ -0,0 +1,97 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +[ComSourceInterfaces("Interop.NmxSvc.IInfoNotify\0\0")] +[Guid("79EEACB0-5A55-11D3-A9CF-00A0C9FB55A0")] +public class PlatformInfoServerClass : IPlatformInfoServer, PlatformInfoServer, IInfoNotify_Event, IVersionInformation +{ + public virtual extern event IInfoNotify_Fire_OnInfoNotifyEventHandler Fire_OnInfoNotify; + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern tagNmxStatsInfo GetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetNmxStatistics(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsValidEngineId([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsAnyEngineOnScan(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineDefinition([In] int lEngineID, [In] ref tagEngineDefinition pEngDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern tagEngineDefinition GetEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteEngineDefinition([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetFirstEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetNextEngine(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformScanState([In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetPlatformScanState(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineScanState([In] int lEngineID, [In] bool bScanState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetEngineScanState([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetStartupType([In] int lEngineID, [In] int StartupType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetStartupType([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteFile(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int RegisterEngineStatusNotification([In][MarshalAs(UnmanagedType.Interface)] IStatusNotify pStatusNotify); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterEngineStatusNotification([In] int lCookie); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineState([In] int lEngineID, [In] int EngineState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetEngineRestart([In] int lEngineID, [In] bool bRestart); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool GetEngineRestart([In] int lEngineID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetProductInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetComponentInternalName(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMasterBuildComponentVersion(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildNumber(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int GetMaintenanceBuildComponentVersion(); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInformationClerkObject.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInformationClerkObject.cs new file mode 100644 index 0000000..8555e98 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInformationClerkObject.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[Guid("148C8733-3930-11D3-87EA-00A0C982C01C")] +[CoClass(typeof(PlatformInformationClerkObjectClass))] +public interface PlatformInformationClerkObject : IPlatformInformationClerk +{ +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInformationClerkObjectClass.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInformationClerkObjectClass.cs new file mode 100644 index 0000000..f1e5de6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/PlatformInformationClerkObjectClass.cs @@ -0,0 +1,514 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[ComImport] +[ComConversionLoss] +[Guid("148C8734-3930-11D3-87EA-00A0C982C01C")] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +public class PlatformInformationClerkObjectClass : IPlatformInformationClerk, PlatformInformationClerkObject, IPlatformInformationClerk2, IPlatformInformationClerk3, IPlatformInformationClerk4, IPlatformInformationClerk5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk2_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk3_GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk4_GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity([In] int platformId, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity([In] int platformId, [In] ref tagPlatformRegistrationInformation pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetOwnPlatformId(out int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformServicesNames([In] int maxIn, out int serviceCount, [MarshalAs(UnmanagedType.BStr)] out string names, [MarshalAs(UnmanagedType.BStr)] out string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_AppendPlatformServicesNames([In][MarshalAs(UnmanagedType.BStr)] string names, [In][MarshalAs(UnmanagedType.BStr)] string options); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformEngineName([MarshalAs(UnmanagedType.BStr)] out string pVendorName, [MarshalAs(UnmanagedType.BStr)] out string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pStartupOptions, [MarshalAs(UnmanagedType.BStr)] out string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformEngineName([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [In][MarshalAs(UnmanagedType.LPWStr)] string pStartupOptions, [In][MarshalAs(UnmanagedType.LPWStr)] string pConfigOptions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_CreateFilePath([In][MarshalAs(UnmanagedType.LPWStr)] string pVendorName, [In][MarshalAs(UnmanagedType.LPWStr)] string pFileName, [MarshalAs(UnmanagedType.BStr)] out string pbstrFilePath); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_UnregisterClusterInformation(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_RegisterClusterInformation([In] tagClusterRegistrationInformation clusterRegInfo); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetClusterInformation(out tagClusterRegistrationInformation pClusterInformation); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_ResetPlatformList(out int numPlatforms); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetNextPlatform(out int pId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeletePlatformIdentity([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetStartupState(out tagPlatformStartupSetting pStartupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetStartupState([In] tagPlatformStartupSetting startupState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformRegister(out int pPlatformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformRegister([In] int platformId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeletePlatformInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeleteObjectRuntimeInfo(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_DeletePlatformList(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetCmdStartOptions([In][MarshalAs(UnmanagedType.LPWStr)] string szCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetCmdStartOptions([MarshalAs(UnmanagedType.BStr)] out string pszCmdOption); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity2([In] int platformId, [In] ref tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity2([In] int platformId, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName2([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation2 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList2(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity3([In] int platformId, [In] ref tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity3([In] int platformId, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName3([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation3 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList3(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_SetPlatformIdentity4([In] int platformId, [In] ref tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentity4([In] int platformId, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformIdentityFromPlatformName4([In][MarshalAs(UnmanagedType.LPWStr)] string pPlatformName, out tagPlatformRegistrationInformation4 pPlatformIdentity); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IPlatformInformationClerk5_GetPlatformList4(out int plTotalPlatforms, [Out] IntPtr ppPlatformList); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetPartnerPlatformSUPStatus([In] int platformId, [In] int partnerPlatformId, out int supStatus); +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VBFILETIME.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VBFILETIME.cs new file mode 100644 index 0000000..2d2eb2d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VBFILETIME.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("09721FDD-046A-45D7-9BF8-7F6F9ED3934E")] +public struct VBFILETIME +{ + public int LowDateTime; + + public int HighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VBGUID.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VBGUID.cs new file mode 100644 index 0000000..edd3b9e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VBGUID.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("CB6EA3AE-3D97-11D4-AA6D-00A0C9FB522A")] +public struct VBGUID +{ + public int Data1; + + public short Data2; + + public short Data3; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + public byte[] Data4; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VB_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VB_LARGE_INTEGER.cs new file mode 100644 index 0000000..67cf17b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/VB_LARGE_INTEGER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("BEACE14F-AAA2-412A-B113-F7FC00F2BD25")] +public struct VB_LARGE_INTEGER +{ + public int LowPart; + + public int HighPart; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_FILETIME.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_FILETIME.cs new file mode 100644 index 0000000..e33d6b2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_FILETIME.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct _FILETIME +{ + public uint dwLowDateTime; + + public uint dwHighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_LARGE_INTEGER.cs new file mode 100644 index 0000000..b10dfce --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_LARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _LARGE_INTEGER +{ + public long QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_ULARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_ULARGE_INTEGER.cs new file mode 100644 index 0000000..e366629 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/_ULARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _ULARGE_INTEGER +{ + public ulong QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0000_0006_0001.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0000_0006_0001.cs new file mode 100644 index 0000000..b0bf41a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0000_0006_0001.cs @@ -0,0 +1,55 @@ +namespace Interop.NmxSvc; + +public enum __MIDL___MIDL_itf_NmxSvc_0000_0006_0001 +{ + OPENCONNECTION = 0, + FMCACCEPTEDCONN = 1, + SECURE_OPEN_CONNECTION = 256, + NewConnectionReq = 257, + CheckpointData = 258, + FMTYPE_PLATFORM_INFO_REQ = 4096, + FMTYPE_PLATFORM_INFO_RESP = 4097, + FMTYPE_SUBSCRIBE_HEARTBEAT_REQ = 4098, + FMTYPE_SUBSCRIBE_HEARTBEAT_RESP = 4099, + FMTYPE_PLATFORM_HEARTBEAT = 4112, + FMTYPE_GET_PARTNER_ENGINE_INFO_REQ = 4352, + FMTYPE_GET_PARTNER_ENGINE_INFO_RESP = 4353, + FMTYPE_SET_HEARTBEAT_REQ = 4354, + FMTYPE_SET_HEARTBEAT_RESP = 4355, + FMTYPE_SET_PARTNER_HEARTBEAT_REQ = 4356, + FMTYPE_SET_PARTNER_HEARTBEAT_RESP = 4357, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_REQ = 4358, + FMTYPE_SET_PARTNER_INDIRECT_DETECT_TIMEOUT_RESP = 4359, + FMTYPE_SUBSCRIBE_STATUS_RESQ = 4360, + FMTYPE_SUBSCRIBE_STATUS_RESP = 4361, + FMTYPE_UNSUBSCRIBE_STATUS_RESQ = 4362, + FMTYPE_UNSUBSCRIBE_STATUS_RESP = 4363, + FMTYPE_REFRESH_STATUS_RESQ = 4364, + FMTYPE_REFRESH_STATUS_RESP = 4365, + FMTYPE_REDUNDANCY_STATUS_REQ = 4366, + FMTYPE_REDUNDANCY_STATUS_RESP = 4367, + FMTYPE_PLATFORM_STATUS_REQ = 4368, + FMTYPE_PLATFORM_STATUS_RESP = 4369, + FMTYPE_REDUNDANCY_ENGINE_INFO_REQ = 4370, + FMTYPE_REDUNDANCY_ENGINE_INFO_RESP = 4371, + FMTYPE_ENGINE_FAILOVER_OPERATION_REQ = 4372, + FMTYPE_ENGINE_FAILOVER_OPERATION_RESP = 4373, + FMTYPE_ENGINE_SWITCHING_TO_ACTIVE_NOTIFICATION_REQ = 4374, + FMTYPE_ENGINE_FAILOVER_DATA = 4416, + FMTYPE_ENGINE_FAILOVER_DATA_ACK = 4417, + FMTYPE_ENGINE_SUBSCRIBER_LIST = 4418, + FMTYPE_ENGINE_SUBSCRIBER_LIST_ACK = 4419, + FMTYPE_ENGINE_FAILOVER_STATUS = 4480, + FMTYPE_ENGINE_FAILOVER_STATUS_ACK = 4481, + FMTYPE_ENGINE_PROCESS_STATUS = 4482, + FMTYPE_ENGINE_PROCESS_STATUS_ACK = 4483, + FMTYPE_PLATFORM_STATUS = 4484, + NMXMTYPE_ENGINE_DATA = 4608, + NMXMTYPE_SET_HEARTBEAT_RATE = 4609, + NMXMTYPE_PLATFORM_HEARTBEAT = 4610, + NMXMTYPE_GET_HEARTBEAT_RATE = 4611, + NMXMTYPE_HEARTBEAT_DISCONNECT_REQ = 4612, + NMXMTYPE_CONNECT_INFO = 4613, + NMXMTYPE_CONNECT_INFO_REQ = 4614, + NMXMTYPE_VERSION_ERROR = 4615 +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0000_0006_0002.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0000_0006_0002.cs new file mode 100644 index 0000000..ec571d1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0000_0006_0002.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxSvc; + +public enum __MIDL___MIDL_itf_NmxSvc_0000_0006_0002 +{ + CONNECTION_FAILED, + CONNECTION_ACCEPTED, + CONNECTION_ESTABLISHED +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0001_0068_0001.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0001_0068_0001.cs new file mode 100644 index 0000000..d0c73f2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0001_0068_0001.cs @@ -0,0 +1,7 @@ +namespace Interop.NmxSvc; + +public enum __MIDL___MIDL_itf_NmxSvc_0001_0068_0001 +{ + eExpressQueue, + eGuarantyQueue +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0001_0100_0001.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0001_0100_0001.cs new file mode 100644 index 0000000..d00ad76 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/__MIDL___MIDL_itf_NmxSvc_0001_0100_0001.cs @@ -0,0 +1,13 @@ +namespace Interop.NmxSvc; + +public enum __MIDL___MIDL_itf_NmxSvc_0001_0100_0001 +{ + ENGINE_STATE_UNDEFINED, + ENGINE_STATE_DEPLOYING, + ENGINE_STATE_OFFSCAN, + ENGINE_STATE_ONSCAN, + ENGINE_STATE_CHK_RESTORE_BACKUP, + ENGINE_STATE_CHK_RESTORE_CONFIG, + ENGINE_STATE_CHK_RESTORE_FAILED, + ENGINE_STATE_UBOUND +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagClusterRegistrationInformation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagClusterRegistrationInformation.cs new file mode 100644 index 0000000..68de80b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagClusterRegistrationInformation.cs @@ -0,0 +1,24 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagClusterRegistrationInformation +{ + public int lPlatformID; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterGUID; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterName; + + [MarshalAs(UnmanagedType.BStr)] + public string clusterVersion; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrGRHostName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrGRHostAddress; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineDefinition.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineDefinition.cs new file mode 100644 index 0000000..1723f33 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineDefinition.cs @@ -0,0 +1,26 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineDefinition +{ + public int lEngineID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrClassId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrExecutableName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineSignature; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrVendorName; + + public int lEngineCategory; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineDefinition2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineDefinition2.cs new file mode 100644 index 0000000..56f2306 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineDefinition2.cs @@ -0,0 +1,57 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineDefinition2 +{ + public int lEngineID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrClassId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrExecutableName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineSignature; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrVendorName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrCheckpointPath; + + public int lEngineCategory; + + public tagRedundancyIdentity redundancyIdentity; + + [MarshalAs(UnmanagedType.BStr)] + public string primaryAddress; + + public int primaryPort; + + [MarshalAs(UnmanagedType.BStr)] + public string rmcAddress; + + public int rmcPort; + + public int partnerPlatformId; + + [MarshalAs(UnmanagedType.BStr)] + public string partnerPMCAddress; + + public int partnerPMCPort; + + [MarshalAs(UnmanagedType.BStr)] + public string partnerRMCAddress; + + public int partnerRMCPort; + + public int timeToDiscoverPartner; + + public int bRestartOnStandbyTransition; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineRedundancyInformation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineRedundancyInformation.cs new file mode 100644 index 0000000..58cbd01 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineRedundancyInformation.cs @@ -0,0 +1,32 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineRedundancyInformation +{ + public int lPlatformID; + + public int lEngineID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrEngineName; + + public tagRedundancyIdentity redundancyIdentity; + + public tagRedundancyStatus redundancyStatus; + + public int lPartnerPlatformId; + + public int lPartnerEngineId; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPartnerPMCNetAddress; + + public int lPartnerPMCPort; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPartnerSMCNetAddress; + + public int lPartnerSMCPort; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineStatusInfo.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineStatusInfo.cs new file mode 100644 index 0000000..2c90050 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineStatusInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineStatusInfo +{ + public int lEngineID; + + public int EngineState; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineSubscriberInformation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineSubscriberInformation.cs new file mode 100644 index 0000000..b190779 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagEngineSubscriberInformation.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagEngineSubscriberInformation +{ + public int lPlatformID; + + public int lEngineID; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagID.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagID.cs new file mode 100644 index 0000000..57dd77c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagID.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagID +{ + public int lPlatformID; + + public int lEngineID; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxStatsInfo.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxStatsInfo.cs new file mode 100644 index 0000000..273101d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxStatsInfo.cs @@ -0,0 +1,23 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagNmxStatsInfo +{ + public int localSend; + + public int localRecv; + + public int networkSend; + + public int networkRecv; + + public int requestTimedOut; + + public int invalidPlatformId; + + public int invalidEngineId; + + public int engineNotRunning; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxSvcConnectionStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxSvcConnectionStatus.cs new file mode 100644 index 0000000..b3df46c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxSvcConnectionStatus.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxSvc; + +public enum tagNmxSvcConnectionStatus +{ + NmxSvcDisConnected, + NmxSvcDisconnecting, + NmxSvcConnected, + NmxSvcConnecting, + NmxSvcVerifyingConnectionInfo +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxSvcStatsInfo.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxSvcStatsInfo.cs new file mode 100644 index 0000000..c5427b4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagNmxSvcStatsInfo.cs @@ -0,0 +1,47 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagNmxSvcStatsInfo +{ + public int bNetNmxDisconnected; + + public int lNetNmxDisconnectCnt; + + public int lNetNMXHeartbeatsMissedCnt; + + public int lNetNMXHeartbeatsMissedConsecCnt; + + public int lNetNMXHeartbeatsMissedConsecMax; + + public int lNMXRequestsSentOffNodeSizeMax; + + public int lNMXResponsesSentOffNodeSizeMax; + + public int lNMXRequestsRcvdOffNodeCnt; + + public int lNMXRequestsSentOffNodeCnt; + + public int lNMXResponsesRcvdOffNodeCnt; + + public int lNMXResponsesSentOffNodeCnt; + + public int lNMXResponsesRcvdOffNodeAccumSize; + + public int lNMXResponsesSentOffNodeAccumSize; + + public int lNMXRequestsRcvdOffNodeAccumSize; + + public int lNMXRequestsSentOffNodeAccumSize; + + public int lNMXRequestsRcvdOffNodeSizeMax; + + public int lNMXResponsesRcvdOffNodeSizeMax; + + public int lNetNMXHeartbeatPeriod; + + public int lNmxLocalMsgsCnt; + + public int lNmxMsgMxTimeout; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPACKETHEADER.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPACKETHEADER.cs new file mode 100644 index 0000000..0e267ca --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPACKETHEADER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPACKETHEADER +{ + public int lSize; + + [ComAliasName("Interop.NmxSvc.ActionTypes")] + public ActionTypes DataType; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformInformation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformInformation.cs new file mode 100644 index 0000000..2522123 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformInformation +{ + public int lPlatformID; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrPlatformName; + + [MarshalAs(UnmanagedType.BStr)] + public string bstrMachine; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformProcessInformation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformProcessInformation.cs new file mode 100644 index 0000000..2a1835e --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformProcessInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformProcessInformation +{ + public int lPlatformID; + + public int lProcessID; + + public int lPrivateData; + + public tagPlatformProcessStatus processStatus; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformProcessStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformProcessStatus.cs new file mode 100644 index 0000000..8db552f --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformProcessStatus.cs @@ -0,0 +1,20 @@ +namespace Interop.NmxSvc; + +public enum tagPlatformProcessStatus +{ + PROCESS_STARTING, + PROCESS_START_FAILED, + PROCESS_STARTED, + PROCESS_STOPPING, + PROCESS_STOP_FAILED, + PROCESS_STOPPED, + PROCESS_TROUBLE, + PROCESS_FAILED, + PROCESS_STARTING_ACTIVE, + PROCESS_STARTING_STANDBY, + PROCESS_SWITCHING_STANDBY, + PROCESS_STOPPING_STANDBY, + PROCESS_RUNNING_ACTIVE, + PROCESS_RUNNING_STANDBY, + PROCESS_STOPPED_STANDBY +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation.cs new file mode 100644 index 0000000..2a39524 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation2.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation2.cs new file mode 100644 index 0000000..b70ef07 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation2.cs @@ -0,0 +1,21 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation2 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation3.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation3.cs new file mode 100644 index 0000000..1380ed9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation3.cs @@ -0,0 +1,25 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation3 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; + + public int lMasterBuildNumber; + + public int lMinorBuildNumber; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation4.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation4.cs new file mode 100644 index 0000000..19d8127 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformRegistrationInformation4.cs @@ -0,0 +1,30 @@ +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct tagPlatformRegistrationInformation4 +{ + public int platformId; + + [MarshalAs(UnmanagedType.BStr)] + public string platformName; + + [MarshalAs(UnmanagedType.BStr)] + public string hostAddress; + + public int mxPort; + + public int pmcPort; + + public int smcPort; + + public int lMasterBuildNumber; + + public int lMinorBuildNumber; + + public int storeFwdRedundancyTCPPort; + + [MarshalAs(UnmanagedType.BStr)] + public string storeFwdDir; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformStartupSetting.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformStartupSetting.cs new file mode 100644 index 0000000..c83b90b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformStartupSetting.cs @@ -0,0 +1,8 @@ +namespace Interop.NmxSvc; + +public enum tagPlatformStartupSetting +{ + BOOTSTRAP_START, + SERVICES_START, + ENGINE_START +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformStatus.cs new file mode 100644 index 0000000..15c814b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagPlatformStatus.cs @@ -0,0 +1,24 @@ +namespace Interop.NmxSvc; + +public enum tagPlatformStatus +{ + PLATFORM_STARTING, + PLATFORM_START_FAILED, + PLATFORM_STARTED, + PLATFORM_STOPPING, + PLATFORM_STOP_FAILED, + PLATFORM_STOPPED, + PLATFORM_TROUBLE, + PLATFORM_FAILED, + PLATFORM_REGISTERED, + PLATFORM_UNREGISTERED, + PLATFORM_PENDING, + PLATFORM_COMMERROR, + PLATFORM_UNAVAILABLE, + PLATFORM_ADDED, + PLATFORM_REMOVED, + PLATFORM_BOOTSTRAP_STOPPED, + PLATFORM_DEPLOYING, + PLATFORM_UNDEPLOYING, + PLATFORM_CHECKPOINT_FAILED +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyChannel.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyChannel.cs new file mode 100644 index 0000000..6cd6f61 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyChannel.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxSvc; + +public enum tagRedundancyChannel +{ + NoChannel, + PrimaryChannel, + SecondaryChannel, + AllChannels +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyEvent.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyEvent.cs new file mode 100644 index 0000000..5317f07 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyEvent.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxSvc; + +public enum tagRedundancyEvent +{ + PartnerStarted, + PartnerShutdown, + PartnerFailed, + PartnerRelocated, + ActiveActiveDetected +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyIdentity.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyIdentity.cs new file mode 100644 index 0000000..0c28b64 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyIdentity.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxSvc; + +public enum tagRedundancyIdentity +{ + Primary = 1, + Backup, + NotRedundant, + RedundancyIdentityUnknown +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyOperation.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyOperation.cs new file mode 100644 index 0000000..12b27bf --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyOperation.cs @@ -0,0 +1,12 @@ +namespace Interop.NmxSvc; + +public enum tagRedundancyOperation +{ + NoOperation, + SetToActive, + SetToStandby, + PrepareToBeActive, + PrepareToBeStandby, + RetrievePartnerStatus, + SetToShutdown +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyStatus.cs new file mode 100644 index 0000000..17e572d --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancyStatus.cs @@ -0,0 +1,21 @@ +namespace Interop.NmxSvc; + +public enum tagRedundancyStatus +{ + Startup_DeterminingRedundancyStatus = 0, + Startup_SwitchingTo_Active = 1, + Startup_SwitchingTo_Standby = 2, + Active = 3, + Active_SwitchingToStandby = 4, + Active_StandbyNotAvailable = 5, + Standby_Ready = 6, + Standby_NotReady = 7, + Standby_SyncingData = 8, + Standby_SyncingCode = 9, + Standby_SwitchingToActive = 10, + Standby_MissedHeartbeats = 11, + Status_Unknown = 12, + Status_Failed = 13, + Active_PartnerNotUpgraded = 14, + Status_NoChange = 255 +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancySubStatus.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancySubStatus.cs new file mode 100644 index 0000000..4280e4b --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRedundancySubStatus.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxSvc; + +public enum tagRedundancySubStatus +{ + RedundancySubStatus_NotApplicable = 0, + PartnerNotReachable_OverPrimary = 1, + PartnerNotReachable_OverSecondary = 2, + PartnerNotReachable = 3, + RedundancySubStatus_NoChange = 255 +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRegistrationSource.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRegistrationSource.cs new file mode 100644 index 0000000..9f5c763 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagRegistrationSource.cs @@ -0,0 +1,9 @@ +namespace Interop.NmxSvc; + +public enum tagRegistrationSource +{ + PLATFORM_SRC_PACKAGE, + PLATFORM_SRC_BOOTSTRAP, + PLATFORM_SRC_INSTALL, + PLATFORM_SRC_DEPLOYCHANGE +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagSTATSTG.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagSTATSTG.cs new file mode 100644 index 0000000..4745e3c --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagSTATSTG.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.NmxSvc; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct tagSTATSTG +{ + [MarshalAs(UnmanagedType.LPWStr)] + public string pwcsName; + + public uint type; + + public _ULARGE_INTEGER cbSize; + + public _FILETIME mtime; + + public _FILETIME ctime; + + public _FILETIME atime; + + public uint grfMode; + + public uint grfLocksSupported; + + public Guid clsid; + + public uint grfStateBits; + + public uint reserved; +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagWatchdogTimeoutAction.cs b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagWatchdogTimeoutAction.cs new file mode 100644 index 0000000..8b6137a --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Interop/NmxSvc/tagWatchdogTimeoutAction.cs @@ -0,0 +1,10 @@ +namespace Interop.NmxSvc; + +public enum tagWatchdogTimeoutAction +{ + TIMEOUT_NO_ACTION = 0, + TIMEOUT_LOG_ERROR = 1, + TIMEOUT_RESTART = 2, + TIMEOUT_SHUTDOWN = 3, + TIMEOUT_REDUNDANT = 16 +} diff --git a/analysis/decompiled-interop/Interop.NmxSvc/Properties/AssemblyInfo.cs b/analysis/decompiled-interop/Interop.NmxSvc/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..04c93b0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.NmxSvc/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: TypeLibVersion(1, 0)] +[assembly: Guid("1C0457D7-F8AB-4EC3-9D05-6E1615B06B06")] +[assembly: ImportedFromTypeLib("NMXSVCLib")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer.csproj b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer.csproj new file mode 100644 index 0000000..5d97c36 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer.csproj @@ -0,0 +1,15 @@ + + + Interop.aaMxDataConsumer + False + net40 + + + 14.0 + True + False + + + + + \ No newline at end of file diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ASBResultCode.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ASBResultCode.cs new file mode 100644 index 0000000..4feea0b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ASBResultCode.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("C826B0C8-F2AE-4032-BDF4-B74C189087BD")] +public struct ASBResultCode +{ + public ulong ItemId; + + [MarshalAs(UnmanagedType.Error)] + public int ErrorCode; + + public uint WriteCapability; + + public uint WriteHandle; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataChangeUpdate.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataChangeUpdate.cs new file mode 100644 index 0000000..61c0219 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataChangeUpdate.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("4C6219B2-BE72-4EB4-9722-2D14F2B1D94E")] +public struct DataChangeUpdate +{ + public ulong ItemId; + + public int StatusCode; + + public uint HighDateTime; + + public uint LowDateTime; + + public int Quality; + + public IDataVariant value; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataClient.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataClient.cs new file mode 100644 index 0000000..136d568 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataClient.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[CoClass(typeof(DataClientClass))] +[Guid("D55C14E8-FB22-48F8-A092-EF9BC452A083")] +public interface DataClient : IDataClient +{ +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataClientClass.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataClientClass.cs new file mode 100644 index 0000000..243f8b6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataClientClass.cs @@ -0,0 +1,124 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[ComConversionLoss] +[Guid("73BC4121-FF89-4762-901C-206E2BD9FE87")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class DataClientClass : IDataClient, DataClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Initialize([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetLastError(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResetHeap(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Connect([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Connect2([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Disconnect(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Disconnect2(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IsIDataClientConnected(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr CreateSubscription([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] CreateSubscription2([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr ChangeSubscription([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] ChangeSubscription2([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr DeleteSubscription([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] DeleteSubscription2([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr AddMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] AddMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr ChangeMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] ChangeMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr DeleteMonitoredItems([In] long SubscriptionId, [In] ref ulong ItemIds, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] DeleteMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] ItemIds, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr RegisterItems([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] RegisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr UnregisterItems([In] ref ulong varItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] UnregisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] varItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Write([In] ref _WriteRequest pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Write2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] WriteRequest2[] pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Publish([In] long SubscriptionId, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Publish2([In] long SubscriptionId, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr PublishWriteComplete([Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] PublishWriteComplete2([MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr Read([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + public virtual extern IArchestrAResult[] Read2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint UpdatesCount); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataConsumer.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataConsumer.cs new file mode 100644 index 0000000..9abade5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataConsumer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[CoClass(typeof(DataConsumerClass))] +[Guid("8948FFF4-4529-4447-9115-C69041A49B00")] +public interface DataConsumer : IDataConsumer1 +{ +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataConsumerClass.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataConsumerClass.cs new file mode 100644 index 0000000..a6172ad --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataConsumerClass.cs @@ -0,0 +1,87 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +[ClassInterface(ClassInterfaceType.None)] +[Guid("85209FB2-0BA1-4594-BBC4-59D3DDAB823D")] +public class DataConsumerClass : IDataConsumer1, DataConsumer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void RegisterCallback([In][MarshalAs(UnmanagedType.Interface)] IDataConsumerCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterCallback(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int ResolveNamespace([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ResolveReference([In] int lNamespaceId, [In][MarshalAs(UnmanagedType.BStr)] string bstrName, [In][MarshalAs(UnmanagedType.BStr)] string bstrContext, [In] int lItemId, [In] ulong ulUserData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void subscribe([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterReference([In] int lNamespaceId, [In] int lItemId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void ActivateSuspend([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Write([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] uint ItemQuality, [In] ref _IVariant ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Write2([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] uint ItemQuality, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IDataVariant[] ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void WriteWithReasonDesc([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] short ItemQuality, [In] ref _IVariant ItemValue, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessMessages(out int lSize, [Out] IntPtr updates, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessMessages2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemDataUpdate2[] updates, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessRegistration(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessRegistration2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemRegistrationResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessSubscription(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessSubscription2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemSubscriptionResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessUnregister(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessUnregister2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemUnregisterResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessWriteComplete(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessWriteComplete2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemWriteResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessActivateSuspend(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern uint ProcessActivateSuspend2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemActiveResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsConnected([In] int namespaceId, out int connected); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterReferenceEx([In] int lNamespaceId, [In] int lItemId, [In] int isSubscribed); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataQuality.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataQuality.cs new file mode 100644 index 0000000..9e13bf5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/DataQuality.cs @@ -0,0 +1,10 @@ +namespace Interop.aaMxDataConsumer; + +public enum DataQuality +{ + DataQualityUnknown = -1, + DataQualityGood, + DataQualityUncertain, + DataQualityInitializing, + DataQualityBad +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/EAUTHMODE.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/EAUTHMODE.cs new file mode 100644 index 0000000..c8709d2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/EAUTHMODE.cs @@ -0,0 +1,9 @@ +namespace Interop.aaMxDataConsumer; + +public enum EAUTHMODE +{ + eNone, + eGalaxyOnly, + eOSUserBased, + eOSGroupBased +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ELOGIN.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ELOGIN.cs new file mode 100644 index 0000000..3f85f27 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ELOGIN.cs @@ -0,0 +1,11 @@ +namespace Interop.aaMxDataConsumer; + +public enum ELOGIN +{ + eInvalidUser = 1, + eInvalidPassword, + ePwdChangeInvalid, + ePwdCahngeSuccess, + eLoginOK, + eSecurityNotEnabled +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameInInfo.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameInInfo.cs new file mode 100644 index 0000000..f97167b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameInInfo.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct GetTagNameInInfo +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int callbackId; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameInInfoCS.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameInInfoCS.cs new file mode 100644 index 0000000..96ff01a --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameInInfoCS.cs @@ -0,0 +1,21 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("EBACE03A-2963-433D-A11E-825C52923F31")] +public struct GetTagNameInInfoCS +{ + public int hRef; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pReferenceString; + + [MarshalAs(UnmanagedType.LPWStr)] + public string pContextString; + + [MarshalAs(UnmanagedType.Interface)] + public IMxCallback2 pMxCallback2; + + public int callbackId; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameOutInfo.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameOutInfo.cs new file mode 100644 index 0000000..6b80e4e --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameOutInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct GetTagNameOutInfo +{ + [ComConversionLoss] + public IntPtr pGalaxyNameString; + + [ComConversionLoss] + public IntPtr pObjectNameString; + + [ComConversionLoss] + public IntPtr pAttributeNameString; + + [ComConversionLoss] + public IntPtr pStatus; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameOutInfoCS.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameOutInfoCS.cs new file mode 100644 index 0000000..fb6faa1 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/GetTagNameOutInfoCS.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("4B81976C-90BB-4098-A1BB-F6D85F11E496")] +public struct GetTagNameOutInfoCS +{ + [MarshalAs(UnmanagedType.BStr)] + public string pGalaxyNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pObjectNameString; + + [MarshalAs(UnmanagedType.BStr)] + public string pAttributeNameString; + + public MxStatus pStatus; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IArchestrAError.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IArchestrAError.cs new file mode 100644 index 0000000..ba35df2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IArchestrAError.cs @@ -0,0 +1,29 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[Guid("90F6EA33-C670-4285-887E-74EB765CA422")] +public enum IArchestrAError +{ + ArchestrAErrorSuccess = 0, + ArchestrAErrorInvalidConnectionId = 1, + ArchestrAErrorApplicationAuthenticationError = 2, + ArchestrAErrorUserAuthenticationError = 3, + ArchestrAErrorUserAuthorizationError = 4, + ArchestrAErrorNotSupportedOperation = 5, + ArchestrAErrorMonitoredItemsNotFound = 6, + ArchestrAErrorInvalidSubscriptionID = 7, + ArchestrAErrorItemAlreadyRegistered = 8, + ArchestrAErrorItemAlreadyDeletedOrDoesNotExist = 9, + ArchestrAErrorInvalidMonitoredItems = 10, + ArchestrAErrorOperationFailed = 11, + ArchestrAErrorSpecificError = 12, + ArchestrAErrorBadNoCommunication = 13, + ArchestrAErrorBad_NothingToDo = 14, + ArchestrAErrorBad_TooManyOperations = 15, + ArchestrAErrorBad_NodeIdInvalid = 16, + ArchestrAErrorBrowseFailed = 17, + ArchestrAErrorWriteFailed_BadOutOfRange = 18, + ArchestrAErrorWriteFailed_BadTypeMismatch = 19, + ArchestrAErrorUnknown = 65535 +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IArchestrAResult.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IArchestrAResult.cs new file mode 100644 index 0000000..e51472b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IArchestrAResult.cs @@ -0,0 +1,14 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("8830ECEF-F8A7-4897-9048-83CD085B8EB5")] +public struct IArchestrAResult +{ + public IArchestrAError ErrorCode; + + public uint SpecificErrorCode; + + public uint Status; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataClient.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataClient.cs new file mode 100644 index 0000000..14129b9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataClient.cs @@ -0,0 +1,123 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("D55C14E8-FB22-48F8-A092-EF9BC452A083")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IDataClient +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Initialize([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetLastError(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResetHeap(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Connect([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Connect2([In][MarshalAs(UnmanagedType.BStr)] string endPointUri, [In] ulong timeout, [In] ref _IUserToken userToken, out uint clientId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Disconnect(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Disconnect2(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int IsIDataClientConnected(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr CreateSubscription([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] CreateSubscription2([In] long MaxQueueSize, [In] ulong SampleInterval, [In] int ActiveState, out long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr ChangeSubscription([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] ChangeSubscription2([In] long SubscriptionId, [In] int ActiveState); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr DeleteSubscription([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] DeleteSubscription2([In] long SubscriptionId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr AddMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] AddMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr ChangeMonitoredItems([In] long SubscriptionId, [In] ref _IMonitoredItem MonItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] ChangeMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IMonitoredItem2[] MonItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr DeleteMonitoredItems([In] long SubscriptionId, [In] ref ulong ItemIds, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] DeleteMonitoredItems2([In] long SubscriptionId, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] ItemIds, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr RegisterItems([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] RegisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr UnregisterItems([In] ref ulong varItems, [In] uint ItemsCount, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] UnregisterItems2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI8)] ulong[] varItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Write([In] ref _WriteRequest pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Write2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] WriteRequest2[] pWriteRequests, [In] uint RequestsCount, [In] uint WriteHandle, [In] ref _IUserToken User, [In] ref _IUserToken userToken, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Publish([In] long SubscriptionId, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Publish2([In] long SubscriptionId, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr PublishWriteComplete([Out] IntPtr pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] PublishWriteComplete2([MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ASBResultCode[] pResultCode, out uint ResultCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr Read([In] ref _IItemIdentity IdItems, [In] uint ItemsCount, [Out] IntPtr pDataUpdates, out uint UpdatesCount); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] + IArchestrAResult[] Read2([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IItemIdentity2[] IdItems, [In] uint ItemsCount, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out DataChangeUpdate[] pDataUpdates, out uint UpdatesCount); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumer.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumer.cs new file mode 100644 index 0000000..9c1b8de --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumer.cs @@ -0,0 +1,84 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("CF507A59-D4E6-480D-B38E-7D8B035B8C94")] +public interface IDataConsumer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterCallback([In][MarshalAs(UnmanagedType.Interface)] IDataConsumerCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterCallback(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int ResolveNamespace([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ResolveReference([In] int lNamespaceId, [In][MarshalAs(UnmanagedType.BStr)] string bstrName, [In][MarshalAs(UnmanagedType.BStr)] string bstrContext, [In] int lItemId, [In] ulong ulUserData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void subscribe([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterReference([In] int lNamespaceId, [In] int lItemId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ActivateSuspend([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Write([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] uint ItemQuality, [In] ref _IVariant ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Write2([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] uint ItemQuality, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IDataVariant[] ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void WriteWithReasonDesc([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] short ItemQuality, [In] ref _IVariant ItemValue, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessMessages(out int lSize, [Out] IntPtr updates, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessMessages2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemDataUpdate2[] updates, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessRegistration(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessRegistration2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemRegistrationResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessSubscription(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessSubscription2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemSubscriptionResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessUnregister(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessUnregister2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemUnregisterResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessWriteComplete(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessWriteComplete2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemWriteResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessActivateSuspend(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + uint ProcessActivateSuspend2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemActiveResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsConnected([In] int namespaceId, out int connected); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Shutdown(); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumer1.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumer1.cs new file mode 100644 index 0000000..6febbf5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumer1.cs @@ -0,0 +1,86 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("8948FFF4-4529-4447-9115-C69041A49B00")] +public interface IDataConsumer1 : IDataConsumer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterCallback([In][MarshalAs(UnmanagedType.Interface)] IDataConsumerCallback pCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterCallback(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int ResolveNamespace([In][MarshalAs(UnmanagedType.BStr)] string bstrNamespace); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ResolveReference([In] int lNamespaceId, [In][MarshalAs(UnmanagedType.BStr)] string bstrName, [In][MarshalAs(UnmanagedType.BStr)] string bstrContext, [In] int lItemId, [In] ulong ulUserData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void subscribe([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterReference([In] int lNamespaceId, [In] int lItemId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ActivateSuspend([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] int bActive); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Write([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] uint ItemQuality, [In] ref _IVariant ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Write2([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] uint ItemQuality, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] IDataVariant[] ItemValue, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void WriteWithReasonDesc([In] int lNamespaceId, [In] int lItemId, [In] ulong ulUserData, [In] ref Guid userId, [In] ref Guid verifierId, [In] bool bUserVerified, [In] _FILETIME ItemTimestamp, [In] short ItemQuality, [In] ref _IVariant ItemValue, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In] uint MxOperationType, [In] int arrayIndex, [In] bool bArrayIndexValid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessMessages(out int lSize, [Out] IntPtr updates, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessMessages2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemDataUpdate2[] updates, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessRegistration(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessRegistration2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemRegistrationResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessSubscription(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessSubscription2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemSubscriptionResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessUnregister(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessUnregister2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemUnregisterResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessWriteComplete(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessWriteComplete2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemWriteResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessActivateSuspend(out int lSize, [Out] IntPtr responses, [Out] IntPtr pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new uint ProcessActivateSuspend2(out int lSize, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out ItemActiveResponse[] responses, [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] out MxResultCode[] pResultCode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsConnected([In] int namespaceId, out int connected); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Shutdown(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterReferenceEx([In] int lNamespaceId, [In] int lItemId, [In] int isSubscribed); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumerCallback.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumerCallback.cs new file mode 100644 index 0000000..4b2ee7b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataConsumerCallback.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("FA990F6C-2F68-4C46-84F7-0A0279ADFA99")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IDataConsumerCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void NamespaceResolved([In] int lNamespaceId); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataType.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataType.cs new file mode 100644 index 0000000..c903b33 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataType.cs @@ -0,0 +1,56 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[Guid("77051582-C09B-4222-BA2A-766554B0D142")] +public enum IDataType +{ + TypeByte = 0, + TypeChar = 1, + TypeInt16 = 2, + TypeUInt16 = 3, + TypeInt32 = 4, + TypeUInt32 = 5, + TypeInt64 = 6, + TypeUInt64 = 7, + TypeFloat = 8, + TypeDouble = 9, + TypeString = 10, + TypeDateTime = 11, + TypeDuration = 12, + TypeGuid = 13, + TypeByteString = 14, + TypeLocaleID = 15, + TypeLocalizedText = 16, + TypeBool = 17, + TypeSByte = 18, + TypeErrorStatus = 19, + TypeEnum = 20, + TypeDataType = 21, + TypeSecurityClassification = 22, + TypeDataQuality = 23, + TypeByteArray = 40, + TypeCharArray = 41, + TypeInt16Array = 42, + TypeUInt16Array = 43, + TypeInt32Array = 44, + TypeUInt32Array = 45, + TypeInt64Array = 46, + TypeUInt64Array = 47, + TypeFloatArray = 48, + TypeDoubleArray = 49, + TypeStringArray = 50, + TypeDateTimeArray = 51, + TypeDurationArray = 52, + TypeGuidArray = 53, + TypeByteStringArray = 54, + TypeLocaleIDArray = 55, + TypeLocalizedTextArray = 56, + TypeBoolArray = 57, + TypeSByteArray = 58, + TypeEnumArray = 60, + TypeDataTypeArray = 61, + TypeSecurityClassificationArray = 62, + TypeDataQualityArray = 63, + TypeUnknown = 65535 +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataVariant.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataVariant.cs new file mode 100644 index 0000000..8b6ccbf --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IDataVariant.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("8D6DED71-C022-4F83-AF3D-BA24E13D22D0")] +public struct IDataVariant +{ + public ushort type; + + public int length; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] Payload; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemIdentity2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemIdentity2.cs new file mode 100644 index 0000000..92dcc0a --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemIdentity2.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("E3E3A688-9FAE-4B44-B87A-95C1B3711F06")] +public struct IItemIdentity2 +{ + public ushort ReferenceType; + + public ushort type; + + [MarshalAs(UnmanagedType.BStr)] + public string ContextName; + + [MarshalAs(UnmanagedType.BStr)] + public string Name; + + public ulong Id; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemIdentityType.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemIdentityType.cs new file mode 100644 index 0000000..261bd8b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemIdentityType.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[Guid("15C679A3-AC29-4497-AC43-5EA8710BAD46")] +public enum IItemIdentityType +{ + Name = 0, + Id = 1, + NameAndId = 2, + Other = 65535 +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemReferenceType.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemReferenceType.cs new file mode 100644 index 0000000..891c5e8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IItemReferenceType.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[Guid("78FC3B63-DACE-4192-A550-1E645F607A37")] +public enum IItemReferenceType +{ + ItemReferenceNone = 0, + ItemReferenceAbsolute = 1, + ItemReferenceHierarchical = 2, + ItemReferenceRelative = 3, + ItemReferenceOther = 65535 +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMonitoredItem2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMonitoredItem2.cs new file mode 100644 index 0000000..51d1cae --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMonitoredItem2.cs @@ -0,0 +1,26 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("2AA2E248-AF2E-4FCC-95CD-C46AF4F0A1FA")] +public struct IMonitoredItem2 +{ + public byte Active; + + public ushort ReferenceType; + + public ushort type; + + [MarshalAs(UnmanagedType.BStr)] + public string ContextName; + + [MarshalAs(UnmanagedType.BStr)] + public string Name; + + public ulong Id; + + public ulong SampleInterval; + + public ulong TimeDeadband; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxBindingService.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxBindingService.cs new file mode 100644 index 0000000..b9104b6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxBindingService.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4391F3F0-49A0-4822-9E93-6DA04A92F434")] +public interface IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnregisterPreboundReference([In] int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxBindingService2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxBindingService2.cs new file mode 100644 index 0000000..c76e625 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxBindingService2.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B69F9918-4393-4F90-8012-D742FEC337BB")] +public interface IMxBindingService2 : IMxBindingService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback.cs new file mode 100644 index 0000000..4e97c4f --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("CC49CA44-D8CB-11D3-823B-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueOut); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback2.cs new file mode 100644 index 0000000..38b844c --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback2.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("CFC6372F-0DA8-4278-A988-F1825C7916A0")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxCallback2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OperationComplete([In] int lCallbackId, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback3.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback3.cs new file mode 100644 index 0000000..4103b7c --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxCallback3.cs @@ -0,0 +1,19 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("38366038-CD67-457B-8C24-9AD003785798")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxCallback3 : IMxCallback +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnDataChange([In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void OnSetAttributeResult([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void OnSetAttributeResult2([In] int hRef, [In] ref MxStatus pMxStatus, [In][MarshalAs(UnmanagedType.BStr)] string pStatusDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueOut, [In] short QualityOut, [In] _FILETIME TimestampOut); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReference.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReference.cs new file mode 100644 index 0000000..71d06d0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReference.cs @@ -0,0 +1,92 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("30B05B02-D834-11D3-8239-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReference : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [DispId(1)] + string FullReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(2)] + string AutomationObjectReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(3)] + string AttributeReferenceString + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [DispId(4)] + MxResolutionStatus AutomationObjectResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(5)] + MxResolutionStatus AttributeResolutionStatus + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + get; + } + + [DispId(6)] + string Context + { + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [param: In] + [param: MarshalAs(UnmanagedType.LPWStr)] + set; + } + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxReference GenerateEnumStringsReference([In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReferenceInfo.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReferenceInfo.cs new file mode 100644 index 0000000..114084c --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReferenceInfo.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("89D91C9B-AD6F-43D4-AA1B-4AB18326C7A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInfo +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameString([In] int lReferenceCount, [In] ref GetTagNameInInfo pGetTagNameInInfo, out GetTagNameOutInfo pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReferenceInfoCS.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReferenceInfoCS.cs new file mode 100644 index 0000000..645f437 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxReferenceInfoCS.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("11E8356E-0F0D-4D67-974D-925968B66307")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxReferenceInfoCS +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTagNameStringCS([In] GetTagNameInInfoCS pGetTagNameInInfo, out GetTagNameOutInfoCS pGetTagNameOutInfo); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxScanOnDemand.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxScanOnDemand.cs new file mode 100644 index 0000000..609ed96 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxScanOnDemand.cs @@ -0,0 +1,31 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("8A4B2077-6E4F-4135-915A-DD952F95EF25")] +public interface IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IncrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void DecrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxScanOnDemand2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxScanOnDemand2.cs new file mode 100644 index 0000000..d42f154 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxScanOnDemand2.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("8D2EAA56-8512-486B-8FB0-22B3F518CFF7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxScanOnDemand2 : IMxScanOnDemand +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SuspendReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void ActivateReference([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback2 pMxCallback2, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterSuspendedReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterSuspendedReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IncrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void DecrementSODCounts([In] short objectId, [In] short primitiveId, [In] short attributeId, [In][MarshalAs(UnmanagedType.BStr)] string attributeString); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GlobalScanOnDemandEnabled(out bool pGlobalSODEnabled); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterSuspendedReference2([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection.cs new file mode 100644 index 0000000..7f0a2c5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection.cs @@ -0,0 +1,26 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +public interface IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection3.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection3.cs new file mode 100644 index 0000000..6a80365 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection3.cs @@ -0,0 +1,36 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("621B4552-9CDC-440E-BDDC-894536122643")] +public interface IMxSupervisoryConnection3 : IMxSupervisoryConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection6.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection6.cs new file mode 100644 index 0000000..a69970c --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSupervisoryConnection6.cs @@ -0,0 +1,39 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("7F681721-B31D-4A35-A059-D04FA1AA936B")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSupervisoryConnection6 : IMxSupervisoryConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SupervisoryRegisterReference2([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection.cs new file mode 100644 index 0000000..3bdd03f --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection.cs @@ -0,0 +1,38 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("CC49CA45-D8CB-11D3-823B-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string SystemGetQualityDescription([In] ref short mxDataQuality); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection2.cs new file mode 100644 index 0000000..e7a67e2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection2.cs @@ -0,0 +1,44 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("649EF01C-1384-4979-AF39-83A284E8BAFC")] +public interface IMxSystemConnection2 : IMxSystemConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection3.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection3.cs new file mode 100644 index 0000000..745db13 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxSystemConnection3.cs @@ -0,0 +1,65 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("95EBDC41-C2F7-48AA-B0A0-B3577E165905")] +public interface IMxSystemConnection3 : IMxSystemConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In] short Quality, [In] _FILETIME Timestamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection.cs new file mode 100644 index 0000000..09b6270 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection.cs @@ -0,0 +1,30 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("CC49CA43-D8CB-11D3-823B-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection2.cs new file mode 100644 index 0000000..8045cde --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection2.cs @@ -0,0 +1,40 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("4863541B-B371-4AA2-9378-5347E5D36000")] +public interface IMxUserConnection2 : IMxUserConnection +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection3.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection3.cs new file mode 100644 index 0000000..ca7cc0a --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection3.cs @@ -0,0 +1,64 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("F0411F6A-F8C5-49D3-8359-302DC4B9A9F8")] +public interface IMxUserConnection3 : IMxUserConnection2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection4.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection4.cs new file mode 100644 index 0000000..acb95cb --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection4.cs @@ -0,0 +1,105 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("232A5C28-A9A9-48F7-A256-94018F6F8F49")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection4 : IMxUserConnection3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection5.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection5.cs new file mode 100644 index 0000000..918d65b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection5.cs @@ -0,0 +1,108 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("4805D9B8-1BD4-4726-81F8-B70BEEB1D7AE")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxUserConnection5 : IMxUserConnection4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection6.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection6.cs new file mode 100644 index 0000000..7def0eb --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxUserConnection6.cs @@ -0,0 +1,111 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("FD619BE8-98D2-46EA-A274-8481C320C662")] +public interface IMxUserConnection6 : IMxUserConnection5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new IMxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxValue.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxValue.cs new file mode 100644 index 0000000..f14fa38 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxValue.cs @@ -0,0 +1,159 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("D4905673-9679-4FD3-949C-DC26E10482B0")] +[ComConversionLoss] +public interface IMxValue : IPersistStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetSizeMax(out _ULARGE_INTEGER pcbSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out IMxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Empty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutBoolean([In] bool newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInteger([In] int newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutFloat([In] float newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutDouble([In] double newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutString([In][MarshalAs(UnmanagedType.LPWStr)] string newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutTime([In] ref VBFILETIME pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElapsedTime([In] ref VB_LARGE_INTEGER pNewVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxStatus([In] ref MxStatus newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataType([In] MxDataType newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxSecurityClassification([In] MxSecurityClassification newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutMxDataQuality([In] ref short newVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStruct([In] int guid, [In] int structSize, [In] ref byte pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomEnum([In][MarshalAs(UnmanagedType.LPWStr)] string value, [In] short ordinal, [In] short primitiveId, [In] short attributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool GetBoolean(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetInteger(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + float GetFloat(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + double GetDouble(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetString(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetTime(out VBFILETIME pVal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VB_LARGE_INTEGER GetElapsedTime(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + IMxReference GetMxReference(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxStatus GetMxStatus(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxDataType GetMxDataType(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + MxSecurityClassification GetMxSecurityClassification(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + short GetMxDataQuality(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStruct(out int pGuid, out int pStructSize, [Out] IntPtr pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomEnum([MarshalAs(UnmanagedType.BStr)] out string pValue, out short pOrdinal, out short pPrimitiveId, out short pAttributeId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionCount(out short nDimensions); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutElement([In] int index, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetElement([In] int index1, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetDimensionSize(out int pSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutCustomStructVB([In] int guid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetCustomStructVB(out int pGuid, [In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] ref byte[] pStruct); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStrings([In] int count, [In] ref InternationalizedString strings); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalStringsVB([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStrings(out int count, [Out] IntPtr locals); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetInternationalStringsVB([In][Out][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref InternationalizedString[] ppsa); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetInternationalString([In] int locale); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void PutInternationalString([In] int locale, [In][MarshalAs(UnmanagedType.BStr)] string InternationalizedString); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxValueFactory.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxValueFactory.cs new file mode 100644 index 0000000..64343a5 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IMxValueFactory.cs @@ -0,0 +1,28 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("1B6AEB81-CB43-11D2-BFFF-00104B5F96A7")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IMxValueFactory +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstance([MarshalAs(UnmanagedType.Interface)] out IMxValue ppMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceBool([MarshalAs(UnmanagedType.Interface)] out IMxValue ppMxValue, bool val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceLong([MarshalAs(UnmanagedType.Interface)] out IMxValue ppMxValue, int val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceFloat([MarshalAs(UnmanagedType.Interface)] out IMxValue ppMxValue, float val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceDouble([MarshalAs(UnmanagedType.Interface)] out IMxValue ppMxValue, double val); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void CreateInstanceString([MarshalAs(UnmanagedType.Interface)] out IMxValue ppMxValue, [MarshalAs(UnmanagedType.LPWStr)] string val); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IPersist.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IPersist.cs new file mode 100644 index 0000000..87a00f0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IPersist.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0000010C-0000-0000-C000-000000000046")] +public interface IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetClassID(out Guid pClassID); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IPersistStream.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IPersistStream.cs new file mode 100644 index 0000000..4ec99cc --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IPersistStream.cs @@ -0,0 +1,26 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("00000109-0000-0000-C000-000000000046")] +public interface IPersistStream : IPersist +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetClassID(out Guid pClassID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsDirty(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Load([In][MarshalAs(UnmanagedType.Interface)] IStream pstm); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Save([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] int fClearDirty); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetSizeMax(out _ULARGE_INTEGER pcbSize); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ISecurityToken.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ISecurityToken.cs new file mode 100644 index 0000000..e58103c --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ISecurityToken.cs @@ -0,0 +1,26 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("189476D6-63C5-4950-B293-AEEE1A54D906")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface ISecurityToken +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetUserId([In][Out] ref VBGUID userId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetUserName([In][Out][MarshalAs(UnmanagedType.BStr)] ref string bstrUserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool QueryGroupMembership([In][MarshalAs(UnmanagedType.BStr)] string bstrGroupName, out int plStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + int GetAccessToken(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetUserFullName(); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ISequentialStream.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ISequentialStream.cs new file mode 100644 index 0000000..fa328fc --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ISequentialStream.cs @@ -0,0 +1,16 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0C733A30-2A1C-11CE-ADE5-00AA0044773D")] +public interface ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IStream.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IStream.cs new file mode 100644 index 0000000..3fd952f --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IStream.cs @@ -0,0 +1,43 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("0000000C-0000-0000-C000-000000000046")] +public interface IStream : ISequentialStream +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteRead(out byte pv, [In] uint cb, out uint pcbRead); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoteWrite([In] ref byte pv, [In] uint cb, out uint pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteSeek([In] _LARGE_INTEGER dlibMove, [In] uint dwOrigin, out _ULARGE_INTEGER plibNewPosition); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetSize([In] _ULARGE_INTEGER libNewSize); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoteCopyTo([In][MarshalAs(UnmanagedType.Interface)] IStream pstm, [In] _ULARGE_INTEGER cb, out _ULARGE_INTEGER pcbRead, out _ULARGE_INTEGER pcbWritten); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Commit([In] uint grfCommitFlags); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Revert(); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void LockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnlockRegion([In] _ULARGE_INTEGER libOffset, [In] _ULARGE_INTEGER cb, [In] uint dwLockType); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Stat(out tagSTATSTG pstatstg, [In] uint grfStatFlag); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Clone([MarshalAs(UnmanagedType.Interface)] out IStream ppstm); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator.cs new file mode 100644 index 0000000..7653c89 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator.cs @@ -0,0 +1,39 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("92FF7FD3-A65F-431C-86AA-7BB502FF0D2C")] +public interface IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator2.cs new file mode 100644 index 0000000..f35140b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator2.cs @@ -0,0 +1,43 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("D78A902B-9609-49F6-8760-6A2AEA6CA274")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator2 : IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator3.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator3.cs new file mode 100644 index 0000000..fc20cd9 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator3.cs @@ -0,0 +1,47 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("73ECBF0E-8A67-4878-8DED-934F6DBD943B")] +public interface IUserAuthenticator3 : IUserAuthenticator2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator4.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator4.cs new file mode 100644 index 0000000..fd0c5db --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator4.cs @@ -0,0 +1,50 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("E72606A1-3DF5-4D7E-BD66-0AADA70E98D8")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator4 : IUserAuthenticator3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator5.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator5.cs new file mode 100644 index 0000000..0b1d59b --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator5.cs @@ -0,0 +1,54 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("9F2DFE15-108F-44AF-A40E-04BBD85FE755")] +[ComConversionLoss] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator5 : IUserAuthenticator4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator6.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator6.cs new file mode 100644 index 0000000..0c939d3 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator6.cs @@ -0,0 +1,61 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("430CD0D2-5C05-4621-A286-AECEBFABABEC")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator6 : IUserAuthenticator5 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator7.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator7.cs new file mode 100644 index 0000000..0ebf96e --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/IUserAuthenticator7.cs @@ -0,0 +1,64 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("0759D857-2EC6-481B-B497-117A6A4F7204")] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +public interface IUserAuthenticator7 : IUserAuthenticator6 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + new ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + new byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + new string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void IsSecurityForGalaxyEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, out bool bEnable); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/InternationalizedString.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/InternationalizedString.cs new file mode 100644 index 0000000..72f47be --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/InternationalizedString.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("43529BD9-3860-4343-BC7E-697B9F8B344D")] +public struct InternationalizedString +{ + public int locale; + + [MarshalAs(UnmanagedType.BStr)] + public string internationalizedStr; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemActiveResponse.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemActiveResponse.cs new file mode 100644 index 0000000..647ac7e --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemActiveResponse.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("E671ED95-A301-4761-97F9-103D15CBCDF7")] +public struct ItemActiveResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int Status; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemDataUpdate2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemDataUpdate2.cs new file mode 100644 index 0000000..bdd9f4d --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemDataUpdate2.cs @@ -0,0 +1,20 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("FF261F10-8BF9-4CEE-85D3-11D3D530EF9E")] +public struct ItemDataUpdate2 +{ + public ulong ItemId; + + public uint StatusCode; + + public uint HighDateTime; + + public uint LowDateTime; + + public uint Quality; + + public IDataVariant value; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemRegistrationResponse.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemRegistrationResponse.cs new file mode 100644 index 0000000..9b63755 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemRegistrationResponse.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("441AC761-08A3-4B41-804C-917C60D0C9CF")] +public struct ItemRegistrationResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int Status; + + public int WriteCapability; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemSubscriptionResponse.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemSubscriptionResponse.cs new file mode 100644 index 0000000..c02bda8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemSubscriptionResponse.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("BD6BACE0-9002-44C5-8B7A-8119751F160A")] +public struct ItemSubscriptionResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int Status; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemUnregisterResponse.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemUnregisterResponse.cs new file mode 100644 index 0000000..67e4935 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemUnregisterResponse.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("B960F7E2-A583-49D3-8B15-DB3FE37F718B")] +public struct ItemUnregisterResponse +{ + public ulong ItemId; + + [MarshalAs(UnmanagedType.Error)] + public int Status; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemWriteResponse.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemWriteResponse.cs new file mode 100644 index 0000000..525344e --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/ItemWriteResponse.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("5799A991-D9C1-4513-BB6C-D2D91E65F0E5")] +public struct ItemWriteResponse +{ + public ulong ItemId; + + public ulong userData; + + [MarshalAs(UnmanagedType.Error)] + public int Status; + + public uint category; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxAttributeHandle.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxAttributeHandle.cs new file mode 100644 index 0000000..71732b2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxAttributeHandle.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 2)] +public struct MxAttributeHandle +{ + public short primitiveId; + + public short attributeId; + + public short propertyId; + + public ushort signature; + + public short index1; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxConnection.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxConnection.cs new file mode 100644 index 0000000..3ac8dbc --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxConnection.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("221799BB-99A5-4BB6-B690-7F875371B6D6")] +[CoClass(typeof(MxConnectionClass))] +public interface MxConnection : IMxSupervisoryConnection +{ +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxConnectionClass.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxConnectionClass.cs new file mode 100644 index 0000000..2e6dc1f --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxConnectionClass.cs @@ -0,0 +1,583 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("F2B877E7-1DBE-11D3-80AD-00104B5F96A7")] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class MxConnectionClass : IMxSupervisoryConnection, MxConnection, IMxSupervisoryConnection3, IMxUserConnection, IMxUserConnection2, IMxUserConnection3, IMxUserConnection4, IMxUserConnection5, IMxUserConnection6, IMxSystemConnection, IMxSystemConnection2, IMxSystemConnection3, IMxBindingService, IMxBindingService2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSupervisoryConnection3_SupervisoryRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.LPWStr)] string setCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisoryUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxSupervisoryConnection3_SupervisoryGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SupervisorySetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSupervisoryConnection3_SetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SupervisoryGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisorySetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SupervisoryGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection2_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection2_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection2_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection2_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection3_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection3_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection3_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection3_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection3_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection4_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection4_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection4_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection4_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection4_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection5_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection5_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection5_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection5_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection5_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection5_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection5_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool IsIndirect, [In] bool IsReadable, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection6_UserGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxUserConnection6_UserGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxUserConnection6_UserRegisterPreboundReference([In] int preboundReferenceHandle, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] int userData); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection6_UserGetArrayAttributeByIndex([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger([In] int hRef, out short DataQuality, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean([In] int hRef, out short DataQuality, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat([In] int hRef, out short DataQuality, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble([In] int hRef, out short DataQuality, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum([In] int hRef, out short DataQuality, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString([In] int hRef, out short DataQuality, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection6_UserGetAttribute4([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxUserConnection6_UserGetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute4([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetArrayAttributeByIndex4([In] int hRef, [In] short arrayIndex, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInteger4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out int plValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBoolean4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out bool pbValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetFloat4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out float pfValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetDouble4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out double pdValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetQualifiedEnum4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, out short ordinal); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetBigString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserGetInternationalizedString4([In] int hRef, out short DataQuality, out _FILETIME pMxTime, out MxStatus MxStatus, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxUserConnection6_UserSetAttribute5([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UserSetAttribute6([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp, [In] ref VBGUID userId, [In] ref VBGUID verifier, [In] bool userVerified, [In][MarshalAs(UnmanagedType.LPWStr)] string sourceName, [In][MarshalAs(UnmanagedType.LPWStr)] string reasonDescription, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection2_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxSystemConnection2_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxSystemConnection2_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection2_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxSystemConnection2_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection2_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern int IMxSystemConnection3_SystemRegisterReference([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, [In] bool subscribe); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemUnregisterReference([In] int hRef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxSystemConnection3_SystemGetAttribute([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxSystemConnection3_SystemGetAttributeBlocking([In] int hRef, out short pMxDataQuality, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttributeGuaranteed([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue IMxSystemConnection3_SystemSetAttributeBlocking([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IMxSystemConnection3_SystemGetQualityDescription([In] ref short mxDataQuality); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetResponse([In] int callbackId, [In] ref MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxSystemConnection3_SystemSetAttribute2([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SystemGetAttribute3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttribute3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In] short Quality, [In] _FILETIME Timestamp, [In][MarshalAs(UnmanagedType.Interface)] IMxCallback pMxCallback, [In] byte msgPriority = 0); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SystemGetAttributeBlocking3([In] int hRef, out short pMxDataQuality, out _FILETIME pMxTime, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemSetAttributeGuaranteed3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValue, [In] short Quality, [In] _FILETIME Timestamp); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern IMxValue SystemSetAttributeBlocking3([In] int hRef, [In][MarshalAs(UnmanagedType.Interface)] IMxValue pMxValueIn, [In] short QualityIn, [In] _FILETIME TimestampIn, out MxStatus pMxStatus, [MarshalAs(UnmanagedType.BStr)] out string pStatusDescription, out short pMxDataQualityOut, out _FILETIME pMxTimeOut); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void SystemGetAttributesSupportedProperties([In] int hRef, out int SupportedProperties, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_PrebindReference([In][MarshalAs(UnmanagedType.LPWStr)] string referenceString, out int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IMxBindingService2_UnregisterPreboundReference([In] int preboundRefHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void PrebindReferenceEx([In][MarshalAs(UnmanagedType.Interface)] IMxReference pMxReference, out int preboundRefHandle); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxDataType.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxDataType.cs new file mode 100644 index 0000000..423d26c --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxDataType.cs @@ -0,0 +1,24 @@ +namespace Interop.aaMxDataConsumer; + +public enum MxDataType +{ + MxDataTypeUnknown = -1, + MxNoData, + MxBoolean, + MxInteger, + MxFloat, + MxDouble, + MxString, + MxTime, + MxElapsedTime, + MxReferenceType, + MxStatusType, + MxDataTypeEnum, + MxSecurityClassificationEnum, + MxDataQualityType, + MxQualifiedEnum, + MxQualifiedStruct, + MxInternationalizedString, + MxBigString, + MxDataTypeEND +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxResolutionStatus.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxResolutionStatus.cs new file mode 100644 index 0000000..0692bd6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxResolutionStatus.cs @@ -0,0 +1,9 @@ +namespace Interop.aaMxDataConsumer; + +public enum MxResolutionStatus +{ + MxReferenceUndefined = -1, + MxReferenceUnresolved, + MxReferenceResolved, + MxReferenceAttributeNotPresent +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxResultCode.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxResultCode.cs new file mode 100644 index 0000000..3089593 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxResultCode.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("1FDA8A16-06B0-413D-BEB3-C764BDCB352A")] +public struct MxResultCode +{ + public int lNamespaceId; + + [MarshalAs(UnmanagedType.Error)] + public int ErrorCode; + + public uint ArchestrErrorCode; + + public uint ArchestrSpecific; + + public uint ArchestrStatus; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxSecurityClassification.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxSecurityClassification.cs new file mode 100644 index 0000000..45f882d --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxSecurityClassification.cs @@ -0,0 +1,13 @@ +namespace Interop.aaMxDataConsumer; + +public enum MxSecurityClassification +{ + MxSecurityUndefined = -1, + MxSecurityFreeAccess, + MxSecurityOperate, + MxSecuritySecuredWrite, + MxSecurityVerifiedWrite, + MxSecurityTune, + MxSecurityConfigure, + MxSecurityViewOnly +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatus.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatus.cs new file mode 100644 index 0000000..c03ce54 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatus.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct MxStatus +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusCategory.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusCategory.cs new file mode 100644 index 0000000..da257b6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusCategory.cs @@ -0,0 +1,15 @@ +namespace Interop.aaMxDataConsumer; + +public enum MxStatusCategory +{ + MxStatusCategoryUnknown = -1, + MxCategoryOk, + MxCategoryPending, + MxCategoryWarning, + MxCategoryCommunicationError, + MxCategoryConfigurationError, + MxCategoryOperationalError, + MxCategorySecurityError, + MxCategorySoftwareError, + MxCategoryOtherError +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusDetail.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusDetail.cs new file mode 100644 index 0000000..0865c2c --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusDetail.cs @@ -0,0 +1,51 @@ +namespace Interop.aaMxDataConsumer; + +public enum MxStatusDetail +{ + MX_S_Success = 0, + MX_E_RequestTimedOut = 1, + MX_E_PlatformCommunicationError = 2, + MX_E_InvalidPlatformId = 3, + MX_E_InvalidEngineId = 4, + MX_E_EngineCommunicationError = 5, + MX_E_InvalidReference = 6, + MX_E_NoGalaxyRepository = 7, + MX_E_InvalidObjectId = 8, + MX_E_ObjectSignatureMismatch = 9, + MX_E_AttributeSignatureMismatch = 10, + MX_E_ResolvingAttribute = 11, + MX_E_ResolvingObject = 12, + MX_E_WrongDataType = 13, + MX_E_WrongNumberOfDimensions = 14, + MX_E_InvalidIndex = 15, + MX_E_IndexOutOfOrder = 16, + MX_E_DimensionDoesNotExist = 17, + MX_E_ConversionNotSupported = 18, + MX_E_UnableToConvertString = 19, + MX_E_Overflow = 20, + MX_E_NmxVersionMismatch = 21, + MX_E_NmxInvalidCommand = 22, + MX_E_LmxVersionMismatch = 23, + MX_E_LmxInvalidCommand = 24, + MX_E_GalaxyRepositoryBusy = 25, + MX_E_EngineOverloaded = 26, + MX_E_InvalidPrimitiveId = 1000, + MX_E_InvalidAttributeId = 1001, + MX_E_InvalidPropertyId = 1002, + MX_E_IndexOutOfRange = 1003, + MX_E_DataOutOfRange = 1004, + MX_E_IncorrectDataType = 1005, + MX_E_NotReadable = 1006, + MX_E_NotWriteable = 1007, + MX_E_WriteAccessDenied = 1008, + MX_E_UnknownError = 1009, + MX_E_ObjectInitializing = 1010, + MX_E_EngineInitializing = 1011, + MX_E_SecuredWrite = 1012, + MX_E_VerifiedWrite = 1013, + MX_E_NoAlarmAckPrivilege = 1014, + MX_E_AlarmAckedAlready = 1015, + MX_E_UserNotHavingAccessRights = 1016, + MX_E_VerifierNotHavingVerifyRights = 1017, + MX_E_AutomationObjectSpecificError = 8000 +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusSource.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusSource.cs new file mode 100644 index 0000000..0b716b4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/MxStatusSource.cs @@ -0,0 +1,12 @@ +namespace Interop.aaMxDataConsumer; + +public enum MxStatusSource +{ + MxSourceUnknown = -1, + MxSourceRequestingLmx, + MxSourceRespondingLmx, + MxSourceRequestingNmx, + MxSourceRespondingNmx, + MxSourceRequestingAutomationObject, + MxSourceRespondingAutomationObject +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserASBToken.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserASBToken.cs new file mode 100644 index 0000000..d447929 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserASBToken.cs @@ -0,0 +1,38 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("D38E49FF-C0EA-4232-9552-8BA2147F0863")] +public struct UserASBToken +{ + public ushort Encryption; + + public short EncryptionSpecified; + + [MarshalAs(UnmanagedType.BStr)] + public string HostName; + + public ushort IdType; + + public short IdTypeSpecified; + + [MarshalAs(UnmanagedType.BStr)] + public string LocationID; + + [MarshalAs(UnmanagedType.BStr)] + public string Password; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] SamlToken; + + [MarshalAs(UnmanagedType.BStr)] + public string UserName; + + public ushort Validity; + + public short ValiditySpecified; + + [MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public byte[] X509Certificate; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserAuthenticator.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserAuthenticator.cs new file mode 100644 index 0000000..61506a8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserAuthenticator.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("0759D857-2EC6-481B-B497-117A6A4F7204")] +[CoClass(typeof(UserAuthenticatorClass))] +public interface UserAuthenticator : IUserAuthenticator7 +{ +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserAuthenticatorClass.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserAuthenticatorClass.cs new file mode 100644 index 0000000..0690134 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/UserAuthenticatorClass.cs @@ -0,0 +1,293 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[ComImport] +[Guid("FC3501EB-5883-4B82-B286-9AFB2956B469")] +[ComConversionLoss] +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FCanCreate)] +public class UserAuthenticatorClass : IUserAuthenticator7, UserAuthenticator, IUserAuthenticator6, IUserAuthenticator5, IUserAuthenticator4, IUserAuthenticator3, IUserAuthenticator2, IUserAuthenticator +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public virtual extern byte[] LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IsSecurityForGalaxyEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator6_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator6_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator6_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator6_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator6_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator6_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator6_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr IUserAuthenticator6_GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] + public virtual extern byte[] IUserAuthenticator6_LogInEx([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.Interface)] out ISecurityToken ppSecToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator6_ValidateToken([In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UI1)] byte[] data); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator5_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator5_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator5_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator5_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator5_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator5_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator5_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern IntPtr IUserAuthenticator5_GetUserSamlToken([In][MarshalAs(UnmanagedType.BStr)] string bstrUserName, out uint pLenght); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator4_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator4_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator4_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator4_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator4_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator4_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator4_UpdateOSGroupUserRoles([In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyName, [In][MarshalAs(UnmanagedType.BStr)] string bstrgalaxyNodeName, [In] UserASBToken userToken); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator3_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator3_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator3_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator3_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator3_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator3_GetUserSecurityToken([In][MarshalAs(UnmanagedType.LPWStr)] string loginDomain, [In][MarshalAs(UnmanagedType.LPWStr)] string loginName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator2_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator2_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator2_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator2_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator2_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator2_SmartCardLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string credential, [In][MarshalAs(UnmanagedType.LPWStr)] string userPin, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason, [MarshalAs(UnmanagedType.BStr)] out string bstrLogonDomain); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_LogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator_GetAuthenticationMode([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out EAUTHMODE eAuthenticationMode); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern void IUserAuthenticator_IsSecurityEnabled([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, out bool bEnable); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_UserLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In] Guid callerID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.BStr)] + public virtual extern string IUserAuthenticator_GetUserName([In] ref VBGUID userGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern bool IUserAuthenticator_IsLoginRequired([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + public virtual extern VBGUID IUserAuthenticator_GetUserId([In][MarshalAs(UnmanagedType.LPWStr)] string UserName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [return: MarshalAs(UnmanagedType.Interface)] + public virtual extern ISecurityToken IUserAuthenticator_ChangeLogIn([In][MarshalAs(UnmanagedType.LPWStr)] string galaxyNodeName, [In][MarshalAs(UnmanagedType.LPWStr)] string galaxyName, [In][MarshalAs(UnmanagedType.LPWStr)] string UserName, [In][MarshalAs(UnmanagedType.LPWStr)] string userPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPassword, [In][MarshalAs(UnmanagedType.LPWStr)] string newPasswordA, out ELOGIN eLoginFlag, [MarshalAs(UnmanagedType.BStr)] out string bstrReason); +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VBFILETIME.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VBFILETIME.cs new file mode 100644 index 0000000..eca4d27 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VBFILETIME.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("09721FDD-046A-45D7-9BF8-7F6F9ED3934E")] +public struct VBFILETIME +{ + public int LowDateTime; + + public int HighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VBGUID.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VBGUID.cs new file mode 100644 index 0000000..0b03ff2 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VBGUID.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("CB6EA3AE-3D97-11D4-AA6D-00A0C9FB522A")] +public struct VBGUID +{ + public int Data1; + + public short Data2; + + public short Data3; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] + public byte[] Data4; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VB_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VB_LARGE_INTEGER.cs new file mode 100644 index 0000000..3a3765f --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/VB_LARGE_INTEGER.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("BEACE14F-AAA2-412A-B113-F7FC00F2BD25")] +public struct VB_LARGE_INTEGER +{ + public int LowPart; + + public int HighPart; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/WriteCapabilityType.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/WriteCapabilityType.cs new file mode 100644 index 0000000..45135b4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/WriteCapabilityType.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[Guid("953FDABA-3C19-4B96-8B52-AF69BB3FFE0C")] +public enum WriteCapabilityType +{ + WriteUnknown = 0, + WriteNonsecure = 1, + WriteUser = 2, + WriteConfirm = 4, + WriteVerify = 8 +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/WriteRequest2.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/WriteRequest2.cs new file mode 100644 index 0000000..09e0eb8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/WriteRequest2.cs @@ -0,0 +1,24 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[Guid("F6DF55F3-CECE-4857-96FE-3B390D6DAF77")] +public struct WriteRequest2 +{ + public ushort ReferenceType; + + public ushort type; + + [MarshalAs(UnmanagedType.BStr)] + public string ContextName; + + [MarshalAs(UnmanagedType.BStr)] + public string Name; + + public ulong Id; + + public uint Quality; + + public IDataVariant value; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_DataUpdate.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_DataUpdate.cs new file mode 100644 index 0000000..82b699d --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_DataUpdate.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _DataUpdate +{ + public ulong ItemId; + + public uint StatusCode; + + public uint StatusDetail; + + public _FILETIME Timestamp; + + public uint Quality; + + public _IVariant value; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_FILETIME.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_FILETIME.cs new file mode 100644 index 0000000..ef6eafd --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_FILETIME.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct _FILETIME +{ + public uint dwLowDateTime; + + public uint dwHighDateTime; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IItemIdentity.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IItemIdentity.cs new file mode 100644 index 0000000..8ad81ee --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IItemIdentity.cs @@ -0,0 +1,21 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[ComConversionLoss] +public struct _IItemIdentity +{ + [ComConversionLoss] + public IntPtr ContextName; + + public ulong Id; + + [ComConversionLoss] + public IntPtr Name; + + public ushort ReferenceType; + + public ushort type; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IMonitoredItem.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IMonitoredItem.cs new file mode 100644 index 0000000..28ca32f --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IMonitoredItem.cs @@ -0,0 +1,24 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[ComConversionLoss] +public struct _IMonitoredItem +{ + public byte Active; + + [ComConversionLoss] + public IntPtr Item; + + public ulong SampleInterval; + + public ulong TimeDeadband; + + [ComConversionLoss] + public IntPtr userData; + + [ComConversionLoss] + public IntPtr ValueDeadband; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IUserToken.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IUserToken.cs new file mode 100644 index 0000000..15e83c6 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IUserToken.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _IUserToken +{ + public int Encryption; + + [ComConversionLoss] + public IntPtr HostName; + + public int IdType; + + [ComConversionLoss] + public IntPtr LocationID; + + [ComConversionLoss] + public IntPtr Password; + + [ComConversionLoss] + public IntPtr UserName; + + public _IWS_BYTES SamlToken; + + public ushort Validity; + + public _IWS_BYTES X509Certificate; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IVariant.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IVariant.cs new file mode 100644 index 0000000..e90b993 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IVariant.cs @@ -0,0 +1,13 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct _IVariant +{ + public int length; + + public _IWS_BYTES Payload; + + public ushort type; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IWS_BYTES.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IWS_BYTES.cs new file mode 100644 index 0000000..5b96b3e --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_IWS_BYTES.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _IWS_BYTES +{ + public uint length; + + [ComConversionLoss] + public IntPtr bytes; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_ItemDataUpdate.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_ItemDataUpdate.cs new file mode 100644 index 0000000..bbc1e4d --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_ItemDataUpdate.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _ItemDataUpdate +{ + public ulong ItemId; + + public uint StatusCode; + + public uint StatusDetail; + + public _FILETIME Timestamp; + + public uint Quality; + + public _IVariant value; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_LARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_LARGE_INTEGER.cs new file mode 100644 index 0000000..5e90730 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_LARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _LARGE_INTEGER +{ + public long QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_StatusItem.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_StatusItem.cs new file mode 100644 index 0000000..20215a0 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_StatusItem.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _StatusItem +{ + public int ErrorCode; + + [ComConversionLoss] + public IntPtr Item; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_ULARGE_INTEGER.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_ULARGE_INTEGER.cs new file mode 100644 index 0000000..5353066 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_ULARGE_INTEGER.cs @@ -0,0 +1,9 @@ +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct _ULARGE_INTEGER +{ + public ulong QuadPart; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_WriteRequest.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_WriteRequest.cs new file mode 100644 index 0000000..abdbddf --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_WriteRequest.cs @@ -0,0 +1,20 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _WriteRequest +{ + [ComConversionLoss] + public IntPtr Item; + + public _FILETIME Timestamp; + + public ushort StatusCode; + + public uint Quality; + + public _IVariant value; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_WriteRequestWithReasonDesc.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_WriteRequestWithReasonDesc.cs new file mode 100644 index 0000000..84cbb8a --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/_WriteRequestWithReasonDesc.cs @@ -0,0 +1,27 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[ComConversionLoss] +public struct _WriteRequestWithReasonDesc +{ + [ComConversionLoss] + public IntPtr Item; + + public _FILETIME Timestamp; + + public ushort StatusCode; + + public short Quality; + + public _IVariant value; + + [MarshalAs(UnmanagedType.LPWStr)] + public string reasonDescription; + + public int arrayIndex; + + public short bArrayIndexValid; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/tagSTATSTG.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/tagSTATSTG.cs new file mode 100644 index 0000000..b3f16e8 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Interop.aaMxDataConsumer/tagSTATSTG.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.InteropServices; + +namespace Interop.aaMxDataConsumer; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +public struct tagSTATSTG +{ + [MarshalAs(UnmanagedType.LPWStr)] + public string pwcsName; + + public uint type; + + public _ULARGE_INTEGER cbSize; + + public _FILETIME mtime; + + public _FILETIME ctime; + + public _FILETIME atime; + + public uint grfMode; + + public uint grfLocksSupported; + + public Guid clsid; + + public uint grfStateBits; + + public uint reserved; +} diff --git a/analysis/decompiled-interop/Interop.aaMxDataConsumer/Properties/AssemblyInfo.cs b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0b27ef4 --- /dev/null +++ b/analysis/decompiled-interop/Interop.aaMxDataConsumer/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: TypeLibVersion(1, 0)] +[assembly: Guid("CDECA873-F26C-4EB2-9692-FF748C757638")] +[assembly: ImportedFromTypeLib("MXDATACONSUMERLib")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled-mxaccess/ArchestrA.MXAccess.csproj b/analysis/decompiled-mxaccess/ArchestrA.MXAccess.csproj new file mode 100644 index 0000000..35f40b6 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA.MXAccess.csproj @@ -0,0 +1,15 @@ + + + ArchestrA.MxAccess + False + net20 + + + 14.0 + True + False + + + + + \ No newline at end of file diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer.cs new file mode 100644 index 0000000..471984d --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer.cs @@ -0,0 +1,46 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[Guid("CCE67FB7-EAFD-4367-9212-617043BF126D")] +[TypeLibType(4160)] +public interface ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer2.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer2.cs new file mode 100644 index 0000000..ff5f915 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer2.cs @@ -0,0 +1,50 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[TypeLibType(4160)] +[Guid("020A8A87-69C5-497F-A893-B629E669FBFF")] +public interface ILMXProxyServer2 : ILMXProxyServer +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer3.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer3.cs new file mode 100644 index 0000000..5f410d9 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer3.cs @@ -0,0 +1,54 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[TypeLibType(4160)] +[Guid("57D006B6-F25E-4654-A81E-BCBAFD60FE59")] +public interface ILMXProxyServer3 : ILMXProxyServer2 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer4.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer4.cs new file mode 100644 index 0000000..8c910cf --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer4.cs @@ -0,0 +1,74 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[TypeLibType(4160)] +[Guid("9DC0D5C1-9371-4E84-86F8-7091D316A66C")] +public interface ILMXProxyServer4 : ILMXProxyServer3 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer5.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer5.cs new file mode 100644 index 0000000..e8b7af2 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/ILMXProxyServer5.cs @@ -0,0 +1,82 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[TypeLibType(4160)] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +public interface ILMXProxyServer5 : ILMXProxyServer4 +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + new int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + new void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + new int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + new void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + new void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + new void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + new void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + new void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + new int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + new int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + new int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + new void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + new void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + new void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + new void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + new void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/LMXProxyServer.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/LMXProxyServer.cs new file mode 100644 index 0000000..3a2d813 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/LMXProxyServer.cs @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[Guid("ECEFF506-A752-46E3-9E31-0A8E257C9926")] +[CoClass(typeof(LMXProxyServerClass))] +public interface LMXProxyServer : ILMXProxyServer5, _ILMXProxyServerEvents_Event +{ +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/LMXProxyServerClass.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/LMXProxyServerClass.cs new file mode 100644 index 0000000..bcadfdf --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/LMXProxyServerClass.cs @@ -0,0 +1,92 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[ClassInterface(0)] +[ComSourceInterfaces("ArchestrA.MxAccess._ILMXProxyServerEvents\0ArchestrA.MxAccess._ILMXProxyServerEvents2\0\0")] +[TypeLibType(2)] +[Guid("C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC")] +public class LMXProxyServerClass : ILMXProxyServer5, LMXProxyServer, _ILMXProxyServerEvents_Event, _ILMXProxyServerEvents2_Event +{ + public virtual extern event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + public virtual extern event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + public virtual extern event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; + + public virtual extern event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743808)] + public virtual extern int Register([In][MarshalAs(UnmanagedType.BStr)] string pClientName); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743809)] + public virtual extern void Unregister([In] int hLMXServerHandle); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743810)] + public virtual extern int AddItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743811)] + public virtual extern void RemoveItem([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743812)] + public virtual extern void Advise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743813)] + public virtual extern void UnAdvise([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743814)] + public virtual extern void Write([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743815)] + public virtual extern void WriteSecured([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610743816)] + public virtual extern int AuthenticateUser([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUser, [In][MarshalAs(UnmanagedType.BStr)] string VerifyUserPsw); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610809344)] + public virtual extern int ArchestrAUserToId([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string UserIdGuid); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610874880)] + public virtual extern int AddItem2([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940416)] + public virtual extern void Write2([In] int hLMXServerHandle, [In] int hItem, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime, [In] int UserID); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940417)] + public virtual extern void WriteSecured2([In] int hLMXServerHandle, [In] int hItem, [In] int CurrentUserID, [In] int VerifierUserID, [In][MarshalAs(UnmanagedType.Struct)] object pItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pItemTime); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940418)] + public virtual extern void Suspend([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940419)] + public virtual extern void Activate([In] int hLMXServerHandle, [In] int hItem, out MxStatus pMxStatus); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1610940420)] + public virtual extern void AdviseSupervisory([In] int hLMXServerHandle, [In] int hItem); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005952)] + public virtual extern int AddBufferedItem([In] int hLMXServerHandle, [In][MarshalAs(UnmanagedType.BStr)] string strItemDef, [In][MarshalAs(UnmanagedType.BStr)] string strItemCtxt); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1611005953)] + public virtual extern void SetBufferedUpdateInterval([In] int hLMXServerHandle, [In] int lUpdateInterval); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MXSTATUS_PROXY.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MXSTATUS_PROXY.cs new file mode 100644 index 0000000..0679903 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MXSTATUS_PROXY.cs @@ -0,0 +1,16 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +[Guid("A162D9E4-9019-42F3-A087-79264007E542")] +public struct MXSTATUS_PROXY +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxDataType.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxDataType.cs new file mode 100644 index 0000000..04fa326 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxDataType.cs @@ -0,0 +1,24 @@ +namespace ArchestrA.MxAccess; + +public enum MxDataType +{ + MxDataTypeUnknown = -1, + MxNoData, + MxBoolean, + MxInteger, + MxFloat, + MxDouble, + MxString, + MxTime, + MxElapsedTime, + MxReferenceType, + MxStatusType, + MxDataTypeEnum, + MxSecurityClassificationEnum, + MxDataQualityType, + MxQualifiedEnum, + MxQualifiedStruct, + MxInternationalizedString, + MxBigString, + MxDataTypeEND +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatus.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatus.cs new file mode 100644 index 0000000..da338a0 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatus.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[StructLayout(LayoutKind.Sequential, Pack = 4)] +public struct MxStatus +{ + public short success; + + public MxStatusCategory category; + + public MxStatusSource detectedBy; + + public short detail; +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatusCategory.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatusCategory.cs new file mode 100644 index 0000000..3ab6992 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatusCategory.cs @@ -0,0 +1,15 @@ +namespace ArchestrA.MxAccess; + +public enum MxStatusCategory +{ + MxStatusCategoryUnknown = -1, + MxCategoryOk, + MxCategoryPending, + MxCategoryWarning, + MxCategoryCommunicationError, + MxCategoryConfigurationError, + MxCategoryOperationalError, + MxCategorySecurityError, + MxCategorySoftwareError, + MxCategoryOtherError +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatusSource.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatusSource.cs new file mode 100644 index 0000000..40f6ba1 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/MxStatusSource.cs @@ -0,0 +1,12 @@ +namespace ArchestrA.MxAccess; + +public enum MxStatusSource +{ + MxSourceUnknown = -1, + MxSourceRequestingLmx, + MxSourceRespondingLmx, + MxSourceRequestingNmx, + MxSourceRespondingNmx, + MxSourceRequestingAutomationObject, + MxSourceRespondingAutomationObject +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents.cs new file mode 100644 index 0000000..d4f5331 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents.cs @@ -0,0 +1,23 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[TypeLibType(4096)] +[InterfaceType(2)] +[Guid("848299B6-DD61-4A0D-A304-3947A564B89C")] +public interface _ILMXProxyServerEvents +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(2)] + void OnWriteComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(3)] + void OperationComplete([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2.cs new file mode 100644 index 0000000..015ff19 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2.cs @@ -0,0 +1,15 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComImport] +[Guid("C70A6FC4-09EF-4F31-8874-A049FEE87A95")] +[TypeLibType(4096)] +[InterfaceType(2)] +public interface _ILMXProxyServerEvents2 +{ + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1)] + void OnBufferedDataChange([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_Event.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_Event.cs new file mode 100644 index 0000000..26d762e --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_Event.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[TypeLibType(16)] +[ComVisible(false)] +[ComEventInterface(typeof(_ILMXProxyServerEvents2_0000), typeof(_ILMXProxyServerEvents2_EventProvider_0000))] +public interface _ILMXProxyServerEvents2_Event +{ + event _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler OnBufferedDataChange; +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_EventProvider.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_EventProvider.cs new file mode 100644 index 0000000..bf77276 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_EventProvider.cs @@ -0,0 +1,136 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace ArchestrA.MxAccess; + +internal sealed class _ILMXProxyServerEvents2_EventProvider : _ILMXProxyServerEvents2_Event, IDisposable +{ + private IConnectionPointContainer m_ConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 196, 111, 10, 199, 239, 9, 49, 79, 136, 116, + 160, 73, 254, 232, 122, 149 + }); + m_ConnectionPointContainer.FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = new _ILMXProxyServerEvents2_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents2_SinkHelper, out pdwCookie); + iLMXProxyServerEvents2_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents2_SinkHelper); + } + finally + { + Monitor.Exit(this); + } + } + + public void remove_OnBufferedDataChange(_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate != null && ((iLMXProxyServerEvents2_SinkHelper.m_OnBufferedDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + Monitor.Exit(this); + } + } + + public _ILMXProxyServerEvents2_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_ConnectionPointContainer = (IConnectionPointContainer)P_0; + } + + public void Finalize() + { + Monitor.Enter(this); + try + { + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents2_SinkHelper iLMXProxyServerEvents2_SinkHelper = (_ILMXProxyServerEvents2_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents2_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + Monitor.Exit(this); + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs new file mode 100644 index 0000000..e91f4e4 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComVisible(false)] +[TypeLibType(16)] +public delegate void _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In] MxDataType dtDataType, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In][MarshalAs(UnmanagedType.Struct)] object pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_SinkHelper.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_SinkHelper.cs new file mode 100644 index 0000000..22d3a8a --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents2_SinkHelper.cs @@ -0,0 +1,28 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class _ILMXProxyServerEvents2_SinkHelper : _ILMXProxyServerEvents2 +{ + public _ILMXProxyServerEvents2_OnBufferedDataChangeEventHandler m_OnBufferedDataChangeDelegate; + + public int m_dwCookie; + + public void OnBufferedDataChange(int P_0, int P_1, MxDataType P_2, object P_3, object P_4, object P_5, ref MXSTATUS_PROXY[] P_6) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnBufferedDataChangeDelegate != null) + { + m_OnBufferedDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, P_5, ref P_6); + } + } + + internal _ILMXProxyServerEvents2_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnBufferedDataChangeDelegate = null; + } +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_Event.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_Event.cs new file mode 100644 index 0000000..f0f2f5f --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_Event.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComVisible(false)] +[ComEventInterface(typeof(_ILMXProxyServerEvents_0000), typeof(_ILMXProxyServerEvents_EventProvider_0000))] +[TypeLibType(16)] +public interface _ILMXProxyServerEvents_Event +{ + event _ILMXProxyServerEvents_OnDataChangeEventHandler OnDataChange; + + event _ILMXProxyServerEvents_OnWriteCompleteEventHandler OnWriteComplete; + + event _ILMXProxyServerEvents_OperationCompleteEventHandler OperationComplete; +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_EventProvider.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_EventProvider.cs new file mode 100644 index 0000000..0882895 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_EventProvider.cs @@ -0,0 +1,260 @@ +using System; +using System.Collections; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; +using System.Threading; + +namespace ArchestrA.MxAccess; + +internal sealed class _ILMXProxyServerEvents_EventProvider : _ILMXProxyServerEvents_Event, IDisposable +{ + private IConnectionPointContainer m_ConnectionPointContainer; + + private ArrayList m_aEventSinkHelpers; + + private IConnectionPoint m_ConnectionPoint; + + private void Init() + { + IConnectionPoint ppCP = null; + Guid riid = new Guid(new byte[16] + { + 182, 153, 130, 132, 97, 221, 13, 74, 163, 4, + 57, 71, 165, 100, 184, 156 + }); + m_ConnectionPointContainer.FindConnectionPoint(ref riid, out ppCP); + m_ConnectionPoint = ppCP; + m_aEventSinkHelpers = new ArrayList(); + } + + public void add_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + Monitor.Exit(this); + } + } + + public void remove_OnDataChange(_ILMXProxyServerEvents_OnDataChangeEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnDataChangeDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + Monitor.Exit(this); + } + } + + public void add_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + Monitor.Exit(this); + } + } + + public void remove_OnWriteComplete(_ILMXProxyServerEvents_OnWriteCompleteEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OnWriteCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + Monitor.Exit(this); + } + } + + public void add_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_ConnectionPoint == null) + { + Init(); + } + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = new _ILMXProxyServerEvents_SinkHelper(); + int pdwCookie = 0; + m_ConnectionPoint.Advise(iLMXProxyServerEvents_SinkHelper, out pdwCookie); + iLMXProxyServerEvents_SinkHelper.m_dwCookie = pdwCookie; + iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate = P_0; + m_aEventSinkHelpers.Add(iLMXProxyServerEvents_SinkHelper); + } + finally + { + Monitor.Exit(this); + } + } + + public void remove_OperationComplete(_ILMXProxyServerEvents_OperationCompleteEventHandler P_0) + { + Monitor.Enter(this); + try + { + if (m_aEventSinkHelpers == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 >= count) + { + return; + } + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + if (iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate != null && ((iLMXProxyServerEvents_SinkHelper.m_OperationCompleteDelegate.Equals(P_0) ? 1u : 0u) & 0xFFu) != 0) + { + m_aEventSinkHelpers.RemoveAt(num); + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + if (count <= 1) + { + Marshal.ReleaseComObject(m_ConnectionPoint); + m_ConnectionPoint = null; + m_aEventSinkHelpers = null; + } + break; + } + num++; + } + while (num < count); + } + finally + { + Monitor.Exit(this); + } + } + + public _ILMXProxyServerEvents_EventProvider(object P_0) + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_ConnectionPointContainer = (IConnectionPointContainer)P_0; + } + + public void Finalize() + { + Monitor.Enter(this); + try + { + if (m_ConnectionPoint == null) + { + return; + } + int count = m_aEventSinkHelpers.Count; + int num = 0; + if (0 < count) + { + do + { + _ILMXProxyServerEvents_SinkHelper iLMXProxyServerEvents_SinkHelper = (_ILMXProxyServerEvents_SinkHelper)m_aEventSinkHelpers[num]; + m_ConnectionPoint.Unadvise(iLMXProxyServerEvents_SinkHelper.m_dwCookie); + num++; + } + while (num < count); + } + Marshal.ReleaseComObject(m_ConnectionPoint); + } + catch (Exception) + { + } + finally + { + Monitor.Exit(this); + } + } + + public void Dispose() + { + //Error decoding local variables: Signature type sequence must have at least one element. + Finalize(); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs new file mode 100644 index 0000000..e560d9b --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OnDataChangeEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ComVisible(false)] +[TypeLibType(16)] +public delegate void _ILMXProxyServerEvents_OnDataChangeEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.Struct)] object pvItemValue, [In] int pwItemQuality, [In][MarshalAs(UnmanagedType.Struct)] object pftItemTimeStamp, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs new file mode 100644 index 0000000..a0b1af0 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OnWriteCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[TypeLibType(16)] +[ComVisible(false)] +public delegate void _ILMXProxyServerEvents_OnWriteCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs new file mode 100644 index 0000000..fa88697 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_OperationCompleteEventHandler.cs @@ -0,0 +1,7 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[TypeLibType(16)] +[ComVisible(false)] +public delegate void _ILMXProxyServerEvents_OperationCompleteEventHandler([In] int hLMXServerHandle, [In] int phItemHandle, [In][MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_RECORD)] ref MXSTATUS_PROXY[] pVars); diff --git a/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_SinkHelper.cs b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_SinkHelper.cs new file mode 100644 index 0000000..e60df16 --- /dev/null +++ b/analysis/decompiled-mxaccess/ArchestrA/MxAccess/_ILMXProxyServerEvents_SinkHelper.cs @@ -0,0 +1,52 @@ +using System.Runtime.InteropServices; + +namespace ArchestrA.MxAccess; + +[ClassInterface(ClassInterfaceType.None)] +[TypeLibType(TypeLibTypeFlags.FHidden)] +public sealed class _ILMXProxyServerEvents_SinkHelper : _ILMXProxyServerEvents +{ + public _ILMXProxyServerEvents_OnDataChangeEventHandler m_OnDataChangeDelegate; + + public _ILMXProxyServerEvents_OnWriteCompleteEventHandler m_OnWriteCompleteDelegate; + + public _ILMXProxyServerEvents_OperationCompleteEventHandler m_OperationCompleteDelegate; + + public int m_dwCookie; + + public void OnDataChange(int P_0, int P_1, object P_2, int P_3, object P_4, ref MXSTATUS_PROXY[] P_5) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnDataChangeDelegate != null) + { + m_OnDataChangeDelegate(P_0, P_1, P_2, P_3, P_4, ref P_5); + } + } + + public void OnWriteComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OnWriteCompleteDelegate != null) + { + m_OnWriteCompleteDelegate(P_0, P_1, ref P_2); + } + } + + public void OperationComplete(int P_0, int P_1, ref MXSTATUS_PROXY[] P_2) + { + //Error decoding local variables: Signature type sequence must have at least one element. + if (m_OperationCompleteDelegate != null) + { + m_OperationCompleteDelegate(P_0, P_1, ref P_2); + } + } + + internal _ILMXProxyServerEvents_SinkHelper() + { + //Error decoding local variables: Signature type sequence must have at least one element. + m_dwCookie = 0; + m_OnDataChangeDelegate = null; + m_OnWriteCompleteDelegate = null; + m_OperationCompleteDelegate = null; + } +} diff --git a/analysis/decompiled-mxaccess/Properties/AssemblyInfo.cs b/analysis/decompiled-mxaccess/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..eb93536 --- /dev/null +++ b/analysis/decompiled-mxaccess/Properties/AssemblyInfo.cs @@ -0,0 +1,8 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: TypeLibVersion(3, 2)] +[assembly: Guid("77e896ec-b3e3-4de4-b96f-f32570164211")] +[assembly: PrimaryInteropAssembly(3, 2)] +[assembly: ImportedFromTypeLib("LMXPROXYLib")] +[assembly: AssemblyVersion("3.2.0.0")] diff --git a/analysis/decompiled/ASBIDataV2Adapter/ASBIDataV2Adapter.csproj b/analysis/decompiled/ASBIDataV2Adapter/ASBIDataV2Adapter.csproj new file mode 100644 index 0000000..def5dc7 --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ASBIDataV2Adapter.csproj @@ -0,0 +1,27 @@ + + + ASBIDataV2Adapter + False + net45 + + + 14.0 + True + False + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ASBIDataV1Shim.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ASBIDataV1Shim.cs new file mode 100644 index 0000000..b26aaaa --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ASBIDataV1Shim.cs @@ -0,0 +1,1443 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.ServiceModel; +using System.Threading; +using ArchestrAServices.ASBIDataV2Adapter; +using ArchestrAServices.ASBIDataV2Contract; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBContract; + +[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)] +public abstract class ASBIDataV1Shim : IASBIDataV2, IAuthenticateASB +{ + private class ConnectionContext + { + public IContextChannel ConnectionChannel; + + public IDataV2toV1 ConnectionImplementation; + + public Timer ConnectionKeepaliveTimer; + + private ConnectionContext() + { + } + + public ConnectionContext(IContextChannel Channel, IDataV2toV1 Implementation, Timer KeepaliveTimer) + { + ConnectionChannel = Channel; + ConnectionImplementation = Implementation; + ConnectionKeepaliveTimer = KeepaliveTimer; + } + } + + private static ReaderWriterLockSlim implementationLock = new ReaderWriterLockSlim(); + + private static Dictionary m_Implementations = new Dictionary(); + + private static int KeepaliveTimeout = 30000; + + protected virtual IDataV2toV1 GetImplementation() + { + return null; + } + + public ASBIDataV1Shim() + { + } + + public virtual ConnectResponse Connect(ConnectRequest request) + { + ConnectResponse connectResponse = SysAuthServiceAuthentication.ProcessClientConnection(request); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Connect started new Authenticator for connection Id {0}", connectResponse.ConnectionValidator.ConnectionId.ToString()); + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "Connect started new Authenticator for connection Id =", connectResponse.ConnectionValidator.ConnectionId.ToString()); + return connectResponse; + } + + public virtual void AuthenticateMe(AuthenticateMe request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "AuthenticateMe entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && (OperationContext.Current.Channel.LocalAddress.Uri.ToString().ToLower().StartsWith("http") || serviceAuthenticator.ProcessClientAuthenticateMe(request))) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "AuthenticateMe found authenticator and validated request message, calling implementation OnConnect({0})", serviceAuthenticator.connectionID.ToString()); + ConnectionId connectionId = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 implementation = GetImplementation(); + if (implementation != null) + { + Timer keepaliveTimer = new Timer(KeepaliveHandler, implementation, KeepaliveTimeout, -1); + try + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "AuthenticateMe found authenticator and validated request message, calling implementation OnConnect Id =", serviceAuthenticator.connectionID.ToString()); + implementation.OnConnect(connectionId, serviceAuthenticator.Lifetime); + implementationLock.EnterWriteLock(); + try + { + m_Implementations.Add(serviceAuthenticator.connectionID, new ConnectionContext(OperationContext.Current.Channel, implementation, keepaliveTimer)); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "AuthenticateMe added implementation for ConnectionId {0}", serviceAuthenticator.connectionID); + } + finally + { + implementationLock.ExitWriteLock(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "AuthenticateMe caught exception from implementation for ConnectionId {0}: {1}", serviceAuthenticator.connectionID, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "AuthenticateMe exit Id =", serviceAuthenticator.connectionID.ToString()); + } + + public virtual RenewResponse Renew(RenewRequest request) + { + return SysAuthServiceAuthentication.ProcessClientRenew(request); + } + + public virtual void UpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfiguration request) + { + SysAuthServiceAuthentication.ProcessClientUpdateSystemAuthenticationConfiguration(request); + } + + public virtual void Disconnect(Disconnect request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "Disconnect entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + OnDisconnect(request.ConnectionValidator.ConnectionId); + serviceAuthenticator.ProcessClientDisconnect(request); + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "Disconnect exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + } + + private void OnDisconnect(Guid ConnectionId) + { + ConnectionId id = new ConnectionId + { + Id = ConnectionId + }; + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (!flag) + { + return; + } + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + Timer connectionKeepaliveTimer = value.ConnectionKeepaliveTimer; + connectionKeepaliveTimer.Change(-1, -1); + connectionKeepaliveTimer.Dispose(); + try + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "OnDisconnect found authenticator and validated request message, calling implementation OnDisconnect Id =", ConnectionId.ToString()); + connectionImplementation.OnDisconnect(id); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "OnDisconnect caught exception from implementation for ConnectionId {0}: {1}", ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + implementationLock.EnterWriteLock(); + try + { + m_Implementations.Remove(ConnectionId); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "OnDisconnect removed implementation for ConnectionId {0}", ConnectionId); + } + finally + { + implementationLock.ExitWriteLock(); + } + } + + public virtual void KeepAlive(KeepAlive request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 100, string.Empty, "KeepAlive entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId connectionId = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + connectionImplementation.KeepAlive(connectionId); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "KeepAlive caught exception from implementation for ConnectionId {0}: {1}", connectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 100, string.Empty, "KeepAlive exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + } + + private void KeepaliveHandler(object Implementation) + { + Guid guid = Guid.Empty; + IContextChannel contextChannel = null; + implementationLock.EnterReadLock(); + try + { + foreach (KeyValuePair implementation in m_Implementations) + { + if (implementation.Value.ConnectionImplementation == Implementation) + { + guid = implementation.Key; + contextChannel = implementation.Value.ConnectionChannel; + break; + } + } + } + finally + { + implementationLock.ExitReadLock(); + } + if (guid == Guid.Empty) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Keepalive timeout triggered, could not find ConnectionId"); + return; + } + OnDisconnect(guid); + SysAuthenticatorServiceCache.RemoveServiceAuthenticator(guid); + try + { + if (contextChannel != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Keepalive timeout elapsed without any method calls, closing connection {0} and aborting service channel", guid.ToString()); + contextChannel.Abort(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, ex.StackTrace); + } + } + + public virtual ActivateUserResponse ActivateUser(ActivateUserRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ActivateUser entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ActivateUserResponse activateUserResponse = new ActivateUserResponse(); + activateUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ActivateUser found authenticator for Connection Id {0}", request.ConnectionValidator.ConnectionId.ToString()); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ActivateUser validated request, passing to service"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + activateUserResponse.Result = connectionImplementation.ActivateUser(id, request.UserToken.ToV1UserToken()); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ActivateUser caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + activateUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + activateUserResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ActivateUser exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return activateUserResponse; + } + + public virtual ExchangeCapabilitiesResponse ExchangeCapabilities(ExchangeCapabilitiesRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ExchangeCapabilities entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ExchangeCapabilitiesResponse exchangeCapabilitiesResponse = new ExchangeCapabilitiesResponse(); + exchangeCapabilitiesResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ExchangeCapabilities found authenticator for Connection Id {0}", request.ConnectionValidator.ConnectionId.ToString()); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ExchangeCapabilities validated request, passing to service"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + exchangeCapabilitiesResponse.Result = connectionImplementation.ExchangeCapabilities(out var ServiceCapabilities, id, request.ClientCapabilities); + exchangeCapabilitiesResponse.ServiceCapabilities = ServiceCapabilities; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ExchangeCapabilities caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + exchangeCapabilitiesResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + exchangeCapabilitiesResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ExchangeCapabilities exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return exchangeCapabilitiesResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.ReadResponse Read(ArchestrAServices.ASBIDataV2Contract.ReadRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Read entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.ReadResponse readResponse = new ArchestrAServices.ASBIDataV2Contract.ReadResponse(); + readResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + ItemStatusV2[] Status = null; + RuntimeValue[] Values = null; + ItemIdentity[] items = null; + readResponse.Status = null; + readResponse.Values = null; + if (request.Items != null) + { + items = request.Items.ToV1ItemIdentityArray(); + } + readResponse.Result = connectionImplementation.Read(out Status, out Values, id, items); + if (Status != null) + { + readResponse.Status = Status.ToTrueV2ItemStatusArray(); + } + if (Values != null) + { + readResponse.Values = Values.ToV2RuntimeValueArray(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Read caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + readResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + readResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Read exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return readResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.WriteResponse Write(ArchestrAServices.ASBIDataV2Contract.WriteBasicRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Write entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.WriteResponse writeResponse = new ArchestrAServices.ASBIDataV2Contract.WriteResponse(); + writeResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + WriteValueV2[] array = request.Values.ToMirroredV2WriteValueArray(); + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < array.Length; i++) + { + array[i].ArrayElementIndex += setting; + } + } + } + ItemIdentity[] items = null; + if (request.Items != null) + { + items = request.Items.ToV1ItemIdentityArray(); + } + writeResponse.Result = connectionImplementation.Write(out var Status, id, items, array, request.WriteHandle); + writeResponse.Status = Status.ToTrueV2ItemStatusArray(); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Write caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Write exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.WriteUserResponse WriteUser(ArchestrAServices.ASBIDataV2Contract.WriteUserRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteUser entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.WriteUserResponse writeUserResponse = new ArchestrAServices.ASBIDataV2Contract.WriteUserResponse(); + writeUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + WriteValueV2[] array = null; + ItemIdentity[] items = null; + if (request.Values != null) + { + array = request.Values.ToMirroredV2WriteValueArray(); + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < array.Length; i++) + { + array[i].ArrayElementIndex += setting; + } + } + } + } + if (request.Items != null) + { + items = request.Items.ToV1ItemIdentityArray(); + } + writeUserResponse.Result = connectionImplementation.WriteUser(out var Status, id, items, array, request.User.ToV1UserToken(), request.WriteHandle); + writeUserResponse.Status = Status.ToTrueV2ItemStatusArray(); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteUser caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeUserResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteUser exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeUserResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.WriteVerifiedResponse WriteVerified(ArchestrAServices.ASBIDataV2Contract.WriteVerifiedRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteVerified entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.WriteVerifiedResponse writeVerifiedResponse = new ArchestrAServices.ASBIDataV2Contract.WriteVerifiedResponse(); + writeVerifiedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + WriteValueV2[] array = null; + ItemIdentity[] items = null; + writeVerifiedResponse.Status = null; + if (request.Values != null) + { + array = request.Values.ToMirroredV2WriteValueArray(); + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < array.Length; i++) + { + array[i].ArrayElementIndex += setting; + } + } + } + } + if (request.Items != null) + { + items = request.Items.ToV1ItemIdentityArray(); + } + writeVerifiedResponse.Result = connectionImplementation.WriteVerified(out var Status, id, items, array, request.User.ToV1UserToken(), request.Supervisor.ToV1UserToken(), request.WriteHandle); + if (Status != null) + { + writeVerifiedResponse.Status = Status.ToTrueV2ItemStatusArray(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteVerified caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeVerifiedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeVerifiedResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteVerified exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeVerifiedResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.WriteSecuredResponse WriteSecured(ArchestrAServices.ASBIDataV2Contract.WriteSecuredRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteSecured entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.WriteSecuredResponse writeSecuredResponse = new ArchestrAServices.ASBIDataV2Contract.WriteSecuredResponse(); + writeSecuredResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + WriteValueV2[] array = null; + ItemIdentity[] items = null; + writeSecuredResponse.Status = null; + if (request.Values != null) + { + array = request.Values.ToMirroredV2WriteValueArray(); + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < array.Length; i++) + { + array[i].ArrayElementIndex += setting; + } + } + } + } + if (request.Items != null) + { + items = request.Items.ToV1ItemIdentityArray(); + } + writeSecuredResponse.Result = connectionImplementation.WriteSecured(out var Status, id, items, array, request.User.ToV1UserToken(), request.WriteHandle); + if (Status != null) + { + writeSecuredResponse.Status = Status.ToTrueV2ItemStatusArray(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteSecured caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeSecuredResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeSecuredResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteSecured exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeSecuredResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.WriteConfirmedResponse WriteConfirmed(ArchestrAServices.ASBIDataV2Contract.WriteConfirmedRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteConfirmed entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.WriteConfirmedResponse writeConfirmedResponse = new ArchestrAServices.ASBIDataV2Contract.WriteConfirmedResponse(); + writeConfirmedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + request.Value.ArrayElementIndex += setting; + } + } + writeConfirmedResponse.Result = connectionImplementation.WriteConfirmed(out var ValueReceived, out var WriteToken, id, request.Item.ToV1ItemIdentity(), request.Value.ToMirroredV2WriteValue(), request.User.ToV1UserToken(), request.Supervisor.ToV1UserToken()); + if (connectionImplementation.Settings != null) + { + int setting2 = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting2 != 0) + { + ValueReceived.ArrayElementIndex -= setting2; + } + } + writeConfirmedResponse.ValueReceived = ValueReceived.ToTrueV2WriteValue(); + writeConfirmedResponse.WriteToken = WriteToken; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteConfirmed caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeConfirmedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeConfirmedResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteConfirmed exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeConfirmedResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.ConfirmWriteResponse ConfirmWrite(ArchestrAServices.ASBIDataV2Contract.ConfirmWriteRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ConfirmWrite entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.ConfirmWriteResponse confirmWriteResponse = new ArchestrAServices.ASBIDataV2Contract.ConfirmWriteResponse(); + confirmWriteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + request.Value.ArrayElementIndex += setting; + } + } + confirmWriteResponse.Result = connectionImplementation.ConfirmWrite(id, request.Item.ToV1ItemIdentity(), request.WriteToken, request.Value.ToMirroredV2WriteValue(), request.User.ToV1UserToken(), request.Supervisor.ToV1UserToken(), request.WriteHandle); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ConfirmWrite caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + confirmWriteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + confirmWriteResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ConfirmWrite exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return confirmWriteResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.PublishWriteCompleteResponse PublishWriteComplete(ArchestrAServices.ASBIDataV2Contract.PublishWriteCompleteRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "PublishWriteComplete entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.PublishWriteCompleteResponse publishWriteCompleteResponse = new ArchestrAServices.ASBIDataV2Contract.PublishWriteCompleteResponse(); + publishWriteCompleteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + publishWriteCompleteResponse.CompleteWrites = null; + publishWriteCompleteResponse.Result = connectionImplementation.PublishWriteComplete(out var CompleteWrites, id); + if (CompleteWrites != null) + { + publishWriteCompleteResponse.CompleteWrites = CompleteWrites.ToV2ItemWriteCompleteArray(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "PublishWriteComplete caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + publishWriteCompleteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + publishWriteCompleteResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "PublishWriteComplete exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return publishWriteCompleteResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.CreateSubscriptionResponse CreateSubscription(ArchestrAServices.ASBIDataV2Contract.CreateSubscriptionRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "CreateSubscription entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.CreateSubscriptionResponse createSubscriptionResponse = new ArchestrAServices.ASBIDataV2Contract.CreateSubscriptionResponse(); + createSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "CreateSubscription found authenticator for Connection Id {0}", request.ConnectionValidator.ConnectionId.ToString()); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "CreateSubscription validated request, passing to service"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + createSubscriptionResponse.Result = connectionImplementation.CreateSubscription(out var SubscriptionId, id, request.MaxQueueSize, request.SampleInterval); + createSubscriptionResponse.SubscriptionId = SubscriptionId; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "CreateSubscription caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + createSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + createSubscriptionResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "CreateSubscription exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return createSubscriptionResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.SetSubscriptionStateResponse SetSubscriptionState(ArchestrAServices.ASBIDataV2Contract.SetSubscriptionStateRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "SetSubscriptionState entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.SetSubscriptionStateResponse setSubscriptionStateResponse = new ArchestrAServices.ASBIDataV2Contract.SetSubscriptionStateResponse(); + setSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + setSubscriptionStateResponse.Result = connectionImplementation.SetSubscriptionState(id, request.SubscriptionId, request.NewStateProperty.ToV1Variant(), request.StateToChange); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "SetSubscriptionState caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + setSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + setSubscriptionStateResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "SetSubscriptionState exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return setSubscriptionStateResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.GetSubscriptionStateResponse GetSubscriptionState(ArchestrAServices.ASBIDataV2Contract.GetSubscriptionStateRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetSubscriptionState entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.GetSubscriptionStateResponse getSubscriptionStateResponse = new ArchestrAServices.ASBIDataV2Contract.GetSubscriptionStateResponse(); + getSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + getSubscriptionStateResponse.Result = connectionImplementation.GetSubscriptionState(out var State, id, request.SubscriptionId, request.StateToGet); + getSubscriptionStateResponse.StateProperty = State.ToV2Variant(); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetSubscriptionState caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + getSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + getSubscriptionStateResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetSubscriptionState exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return getSubscriptionStateResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.DeleteSubscriptionResponse DeleteSubscription(ArchestrAServices.ASBIDataV2Contract.DeleteSubscriptionRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteSubscription entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.DeleteSubscriptionResponse deleteSubscriptionResponse = new ArchestrAServices.ASBIDataV2Contract.DeleteSubscriptionResponse(); + deleteSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + deleteSubscriptionResponse.Result = connectionImplementation.DeleteSubscription(id, request.SubscriptionId); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "DeleteSubscription caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + deleteSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + deleteSubscriptionResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteSubscription exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return deleteSubscriptionResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.AddMonitoredItemsResponse AddMonitoredItems(ArchestrAServices.ASBIDataV2Contract.AddMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "AddMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.AddMonitoredItemsResponse addMonitoredItemsResponse = new ArchestrAServices.ASBIDataV2Contract.AddMonitoredItemsResponse(); + addMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + MonitoredItem[] items = null; + addMonitoredItemsResponse.Status = null; + addMonitoredItemsResponse.ItemCapabilities = null; + if (request.Items != null) + { + items = request.Items.ToV1MonitoredItemArray(); + } + addMonitoredItemsResponse.Result = connectionImplementation.AddMonitoredItems(out var Status, out var ItemCapabilities, id, request.SubscriptionId, items, (byte)(request.RequireId ? 1 : 0)); + if (Status != null) + { + addMonitoredItemsResponse.Status = Status.ToV2ItemStatusArray(); + } + if (ItemCapabilities != null) + { + addMonitoredItemsResponse.ItemCapabilities = ItemCapabilities.ToV2ItemRegistrationArray(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "AddMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + addMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + addMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "AddMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return addMonitoredItemsResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.DeleteMonitoredItemsResponse DeleteMonitoredItems(ArchestrAServices.ASBIDataV2Contract.DeleteMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.DeleteMonitoredItemsResponse deleteMonitoredItemsResponse = new ArchestrAServices.ASBIDataV2Contract.DeleteMonitoredItemsResponse(); + deleteMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + MonitoredItem[] items = null; + deleteMonitoredItemsResponse.Status = null; + if (request.Items != null) + { + items = request.Items.ToV1MonitoredItemArray(); + } + deleteMonitoredItemsResponse.Result = connectionImplementation.DeleteMonitoredItems(out var Status, id, request.SubscriptionId, items); + if (Status != null) + { + deleteMonitoredItemsResponse.Status = Status.ToV2ItemStatusArray(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "DeleteMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + deleteMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + deleteMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return deleteMonitoredItemsResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.GetMonitoredItemsResponse GetMonitoredItems(ArchestrAServices.ASBIDataV2Contract.GetMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.GetMonitoredItemsResponse getMonitoredItemsResponse = new ArchestrAServices.ASBIDataV2Contract.GetMonitoredItemsResponse(); + getMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + getMonitoredItemsResponse.Items = null; + getMonitoredItemsResponse.Result = connectionImplementation.GetMonitoredItems(out var Items, id, request.SubscriptionId); + if (Items != null) + { + getMonitoredItemsResponse.Items = Items.ToV2MonitoredItemArray(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + getMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + getMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return getMonitoredItemsResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.PublishResponse Publish(ArchestrAServices.ASBIDataV2Contract.PublishRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Publish entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.PublishResponse publishResponse = new ArchestrAServices.ASBIDataV2Contract.PublishResponse(); + publishResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Publish validated request"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + publishResponse.Status = null; + publishResponse.Values = null; + publishResponse.Result = connectionImplementation.Publish(out var Status, out var Values, id, request.SubscriptionId); + if (Status != null) + { + publishResponse.Status = Status.ToV2ItemStatusArray(); + } + if (Values != null) + { + publishResponse.Values = Values.ToV2MonitoredItemValueArray(); + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Publish found implementation, called user code with error {0}, {1} Statuses, {2} Values", publishResponse.Result.ErrorCode, (Status != null) ? Status.Length : 0, (Values != null) ? Values.Length : 0); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Publish caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + publishResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + publishResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Publish could not find implementation for ConnectionId {0}", request.ConnectionValidator.ConnectionId); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Publish did not validate request for ConnectionId {0}", request.ConnectionValidator.ConnectionId); + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Publish exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return publishResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.RegisterItemsResponse RegisterItems(ArchestrAServices.ASBIDataV2Contract.RegisterItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "RegisterItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.RegisterItemsResponse registerItemsResponse = new ArchestrAServices.ASBIDataV2Contract.RegisterItemsResponse(); + registerItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems found authenticator from connection Id"); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems authenticator validated request message"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems calling implementation"); + ItemIdentity[] items = null; + if (request.Items != null) + { + items = request.Items.ToV1ItemIdentityArray(); + } + registerItemsResponse.Result = connectionImplementation.RegisterItems(out var Status, out var ItemCapabilities, id, items, (byte)(request.RequireId ? 1 : 0), (byte)(request.RegisterOnly ? 1 : 0)); + if (Status != null) + { + registerItemsResponse.Status = Status.ToV2ItemStatusArray(); + } + else + { + registerItemsResponse.Status = null; + } + if (ItemCapabilities != null) + { + registerItemsResponse.ItemCapabilities = ItemCapabilities.ToV2ItemRegistrationArray(); + } + else + { + registerItemsResponse.ItemCapabilities = null; + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "RegisterItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + registerItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + registerItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "RegisterItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return registerItemsResponse; + } + + public virtual ArchestrAServices.ASBIDataV2Contract.UnregisterItemsResponse UnregisterItems(ArchestrAServices.ASBIDataV2Contract.UnregisterItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "UnregisterItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ArchestrAServices.ASBIDataV2Contract.UnregisterItemsResponse unregisterItemsResponse = new ArchestrAServices.ASBIDataV2Contract.UnregisterItemsResponse(); + unregisterItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2toV1 connectionImplementation = value.ConnectionImplementation; + try + { + ItemIdentity[] items = null; + if (request.Items != null) + { + items = request.Items.ToV1ItemIdentityArray(); + } + unregisterItemsResponse.Result = connectionImplementation.UnregisterItems(out var Status, id, items); + unregisterItemsResponse.Status = Status.ToV2ItemStatusArray(); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "UnregisterItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + unregisterItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + unregisterItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "UnregisterItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return unregisterItemsResponse; + } + + public bool ForceDisconnect() + { + return true; + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/IDataV2toV1.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/IDataV2toV1.cs new file mode 100644 index 0000000..7ced02e --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/IDataV2toV1.cs @@ -0,0 +1,55 @@ +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +public interface IDataV2toV1 +{ + IAsbInterfaceSettings Settings { get; } + + ArchestrAResult KeepAlive(ConnectionId Id); + + void OnConnect(ConnectionId ConnectionId, ulong Timeout); + + ArchestrAResult ActivateUser(ConnectionId Id, UserToken UserToken); + + ArchestrAResult ExchangeCapabilities(out string ServiceCapabilities, ConnectionId Id, string ClientCapabilities); + + ArchestrAResult Read(out ItemStatusV2[] Status, out RuntimeValue[] Values, ConnectionId Id, ItemIdentity[] Items); + + ArchestrAResult Write(out ItemStatusV2[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValueV2[] Values, uint WriteHandle); + + ArchestrAResult WriteUser(out ItemStatusV2[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValueV2[] Values, UserToken User, uint WriteHandle); + + ArchestrAResult WriteVerified(out ItemStatusV2[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValueV2[] Values, UserToken User, UserToken Supervisor, uint WriteHandle); + + ArchestrAResult WriteSecured(out ItemStatusV2[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValueV2[] Values, UserToken User, uint WriteHandle); + + ArchestrAResult WriteConfirmed(out WriteValueV2 ValueReceived, out long WriteToken, ConnectionId Id, ItemIdentity Item, WriteValueV2 Value, UserToken User, UserToken Supervisor); + + ArchestrAResult ConfirmWrite(ConnectionId Id, ItemIdentity Item, long WriteToken, WriteValueV2 Value, UserToken User, UserToken Supervisor, uint WriteHandle); + + ArchestrAResult PublishWriteComplete(out ItemWriteCompleteV2[] CompleteWrites, ConnectionId Id); + + ArchestrAResult CreateSubscription(out long SubscriptionId, ConnectionId Id, long MaxQueueSize, ulong SampleInterval); + + ArchestrAResult SetSubscriptionState(ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataContract.Variant NewState, ushort StateToChange); + + ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.Variant State, ConnectionId Id, long SubscriptionId, ushort StateToGet); + + ArchestrAResult DeleteSubscription(ConnectionId Id, long SubscriptionId); + + ArchestrAResult AddMonitoredItems(out ItemStatus[] Status, out ItemRegistration[] ItemCapabilities, ConnectionId Id, long SubscriptionId, MonitoredItem[] Items, byte RequireId); + + ArchestrAResult DeleteMonitoredItems(out ItemStatus[] Status, ConnectionId Id, long SubscriptionId, MonitoredItem[] Items); + + ArchestrAResult GetMonitoredItems(out MonitoredItem[] Items, ConnectionId Id, long SubscriptionId); + + ArchestrAResult Publish(out ItemStatus[] Status, out MonitoredItemValue[] Values, ConnectionId Id, long SubscriptionId); + + ArchestrAResult RegisterItems(out ItemStatus[] Status, out ItemRegistration[] ItemCapabilities, ConnectionId Id, ItemIdentity[] Items, byte RequireId, byte RegisterOnly); + + ArchestrAResult UnregisterItems(out ItemStatus[] Status, ConnectionId Id, ItemIdentity[] Items); + + void OnDisconnect(ConnectionId Id); +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ItemStatusV2.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ItemStatusV2.cs new file mode 100644 index 0000000..8f357cf --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ItemStatusV2.cs @@ -0,0 +1,61 @@ +namespace ArchestrAServices.ASBContract; + +public struct ItemStatusV2 +{ + private ItemIdentity itemField; + + private ushort errorCodeField; + + private bool errorCodeFieldSpecified; + + private ASBStatus statusField; + + public ItemIdentity Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + public ushort ErrorCode + { + get + { + return errorCodeField; + } + set + { + errorCodeField = value; + ErrorCodeSpecified = true; + } + } + + public bool ErrorCodeSpecified + { + get + { + return errorCodeFieldSpecified; + } + set + { + errorCodeFieldSpecified = value; + } + } + + public ASBStatus Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ItemWriteCompleteV2.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ItemWriteCompleteV2.cs new file mode 100644 index 0000000..6826c1e --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/ItemWriteCompleteV2.cs @@ -0,0 +1,50 @@ +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +public class ItemWriteCompleteV2 +{ + private ItemStatusV2[] statusField; + + private uint writeHandleField; + + private bool writeHandleFieldSpecified; + + public ItemStatusV2[] Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public uint WriteHandle + { + get + { + return writeHandleField; + } + set + { + writeHandleField = value; + WriteHandleSpecified = true; + } + } + + [XmlIgnore] + public bool WriteHandleSpecified + { + get + { + return writeHandleFieldSpecified; + } + set + { + writeHandleFieldSpecified = value; + } + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/WriteValueV2.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/WriteValueV2.cs new file mode 100644 index 0000000..f594f8e --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBContract/WriteValueV2.cs @@ -0,0 +1,138 @@ +using System; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract; + +namespace ArchestrAServices.ASBContract; + +public struct WriteValueV2 +{ + private bool hasQTField; + + private bool hasQTFieldSpecified; + + private Variant valueField; + + private ASBStatus statusField; + + private DateTime timestampField; + + private bool timestampFieldSpecified; + + private string commentField; + + private int arrayElementIndexField; + + private bool arrayElementIndexFieldSpecified; + + public bool HasQT + { + get + { + return hasQTField; + } + set + { + hasQTField = value; + HasQTSpecified = true; + } + } + + [XmlIgnore] + public bool HasQTSpecified + { + get + { + return hasQTFieldSpecified; + } + set + { + hasQTFieldSpecified = value; + } + } + + public Variant Value + { + get + { + return valueField; + } + set + { + valueField = value; + } + } + + public ASBStatus Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public DateTime Timestamp + { + get + { + return timestampField; + } + set + { + timestampField = value; + TimestampSpecified = true; + } + } + + public bool TimestampSpecified + { + get + { + return timestampFieldSpecified; + } + set + { + timestampFieldSpecified = value; + } + } + + public string Comment + { + get + { + return commentField; + } + set + { + commentField = value; + } + } + + public int ArrayElementIndex + { + get + { + return arrayElementIndexField; + } + set + { + arrayElementIndexField = value; + ArrayElementIndexSpecified = true; + } + } + + public bool ArrayElementIndexSpecified + { + get + { + return arrayElementIndexFieldSpecified; + } + set + { + arrayElementIndexFieldSpecified = value; + } + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV1toV2Extensions.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV1toV2Extensions.cs new file mode 100644 index 0000000..fbc1ca4 --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV1toV2Extensions.cs @@ -0,0 +1,375 @@ +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Contract; + +namespace ArchestrAServices.ASBIDataV2Adapter; + +public static class IDataV1toV2Extensions +{ + public static ArchestrAServices.ASBIDataV2Contract.ItemIdentity ToV2ItemIdentity(this ArchestrAServices.ASBContract.ItemIdentity v1Identity) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity result = new ArchestrAServices.ASBIDataV2Contract.ItemIdentity + { + Name = v1Identity.Name, + ContextName = v1Identity.ContextName, + IdSpecified = v1Identity.IdSpecified + }; + if (v1Identity.IdSpecified) + { + result.Id = v1Identity.Id; + } + result.ReferenceType = v1Identity.ReferenceType; + result.Type = v1Identity.Type; + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] ToV2ItemIdentityArray(this ArchestrAServices.ASBContract.ItemIdentity[] v1ItemIdentity) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] array = new ArchestrAServices.ASBIDataV2Contract.ItemIdentity[v1ItemIdentity.Length]; + for (int i = 0; i < v1ItemIdentity.Length; i++) + { + array[i] = v1ItemIdentity[i].ToV2ItemIdentity(); + } + return array; + } + + public static ItemStatusV2 ToMirroredV2ItemStatus(this ArchestrAServices.ASBContract.ItemStatus v1Status) + { + ItemStatusV2 result = new ItemStatusV2 + { + ErrorCodeSpecified = v1Status.ErrorCodeSpecified + }; + if (v1Status.ErrorCodeSpecified) + { + result.ErrorCode = v1Status.ErrorCode; + } + result.Item = v1Status.Item; + result.Status = default(ArchestrAServices.ASBContract.ASBStatus); + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemStatus ToV2ItemStatus(this ArchestrAServices.ASBContract.ItemStatus v1Status) + { + ArchestrAServices.ASBIDataV2Contract.ItemStatus result = new ArchestrAServices.ASBIDataV2Contract.ItemStatus + { + ErrorCodeSpecified = v1Status.ErrorCodeSpecified + }; + if (v1Status.ErrorCodeSpecified) + { + result.ErrorCode = v1Status.ErrorCode; + } + result.Item = v1Status.Item.ToV2ItemIdentity(); + result.Status = default(ArchestrAServices.ASBIDataV2Contract.ASBStatus); + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemStatus[] ToV2ItemStatusArray(this ArchestrAServices.ASBContract.ItemStatus[] v1Status) + { + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] array = new ArchestrAServices.ASBIDataV2Contract.ItemStatus[v1Status.Length]; + for (int i = 0; i < v1Status.Length; i++) + { + array[i] = v1Status[i].ToV2ItemStatus(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemStatus ToV2ItemStatus(this ItemStatusV2 v1Status) + { + ArchestrAServices.ASBIDataV2Contract.ItemStatus result = new ArchestrAServices.ASBIDataV2Contract.ItemStatus + { + ErrorCodeSpecified = v1Status.ErrorCodeSpecified + }; + if (v1Status.ErrorCodeSpecified) + { + result.ErrorCode = v1Status.ErrorCode; + } + result.Item = v1Status.Item.ToV2ItemIdentity(); + result.Status = v1Status.Status.ToV2ASBStatus(); + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemStatus[] ToV2ItemStatusArray(this ItemStatusV2[] v1Status) + { + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] array = new ArchestrAServices.ASBIDataV2Contract.ItemStatus[v1Status.Length]; + for (int i = 0; i < v1Status.Length; i++) + { + array[i] = v1Status[i].ToV2ItemStatus(); + } + return array; + } + + public static ArchestrAServices.ASBContract.ItemStatus ToV1ItemStatus(this ItemStatusV2 v1Status) + { + ArchestrAServices.ASBContract.ItemStatus result = new ArchestrAServices.ASBContract.ItemStatus + { + ErrorCodeSpecified = v1Status.ErrorCodeSpecified + }; + if (v1Status.ErrorCodeSpecified) + { + result.ErrorCode = v1Status.ErrorCode; + } + result.Item = v1Status.Item; + return result; + } + + public static ArchestrAServices.ASBContract.ItemStatus[] ToV1ItemStatusArray(this ItemStatusV2[] v1Status) + { + ArchestrAServices.ASBContract.ItemStatus[] array = new ArchestrAServices.ASBContract.ItemStatus[v1Status.Length]; + for (int i = 0; i < v1Status.Length; i++) + { + array[i] = v1Status[i].ToV1ItemStatus(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemRegistration ToV2ItemRegistration(this ArchestrAServices.ASBContract.ItemRegistration v1Registration) + { + ArchestrAServices.ASBIDataV2Contract.ItemRegistration result = new ArchestrAServices.ASBIDataV2Contract.ItemRegistration + { + IdSpecified = v1Registration.IdSpecified, + Id = v1Registration.Id, + WriteCapabilitySpecified = v1Registration.WriteCapabilitySpecified + }; + if (v1Registration.WriteCapabilitySpecified) + { + result.WriteCapability = v1Registration.WriteCapability; + } + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ToV2ItemRegistrationArray(this ArchestrAServices.ASBContract.ItemRegistration[] v1Registration) + { + ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] array = new ArchestrAServices.ASBIDataV2Contract.ItemRegistration[v1Registration.Length]; + for (int i = 0; i < v1Registration.Length; i++) + { + array[i] = v1Registration[i].ToV2ItemRegistration(); + } + return array; + } + + public static ArchestrAServices.ASBIDataContract.V2.Variant ToV2Variant(this ArchestrAServices.ASBIDataContract.Variant v1Variant) + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = v1Variant.Type, + Length = v1Variant.Length, + Payload = v1Variant.Payload + }; + } + + public static ArchestrAServices.ASBIDataV2Contract.MonitoredItem ToV2MonitoredItem(this ArchestrAServices.ASBContract.MonitoredItem v1MonitoredItem) + { + ArchestrAServices.ASBIDataV2Contract.MonitoredItem result = new ArchestrAServices.ASBIDataV2Contract.MonitoredItem + { + ActiveSpecified = v1MonitoredItem.ActiveSpecified + }; + if (v1MonitoredItem.ActiveSpecified) + { + result.Active = v1MonitoredItem.Active; + } + result.Item = v1MonitoredItem.Item.ToV2ItemIdentity(); + result.SampleInterval = v1MonitoredItem.SampleInterval; + result.TimeDeadbandSpecified = v1MonitoredItem.TimeDeadbandSpecified; + if (v1MonitoredItem.TimeDeadbandSpecified) + { + result.TimeDeadband = v1MonitoredItem.TimeDeadband; + } + result.UserData = v1MonitoredItem.UserData.ToV2Variant(); + result.ValueDeadband = v1MonitoredItem.ValueDeadband.ToV2Variant(); + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] ToV2MonitoredItemArray(this ArchestrAServices.ASBContract.MonitoredItem[] v1MonitoredItem) + { + ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] array = new ArchestrAServices.ASBIDataV2Contract.MonitoredItem[v1MonitoredItem.Length]; + for (int i = 0; i < v1MonitoredItem.Length; i++) + { + array[i] = v1MonitoredItem[i].ToV2MonitoredItem(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.ASBStatus ToV2ASBStatus(this ArchestrAServices.ASBContract.ASBStatus v1ASBStatus) + { + return new ArchestrAServices.ASBIDataV2Contract.ASBStatus + { + Count = v1ASBStatus.Count, + Payload = v1ASBStatus.Payload + }; + } + + public static ArchestrAServices.ASBIDataV2Contract.RuntimeValue ToV2RuntimeValue(this ArchestrAServices.ASBContract.RuntimeValue v1RuntimeValue) + { + ArchestrAServices.ASBIDataV2Contract.RuntimeValue result = new ArchestrAServices.ASBIDataV2Contract.RuntimeValue + { + Status = v1RuntimeValue.Status.ToV2ASBStatus(), + TimestampSpecified = v1RuntimeValue.TimestampSpecified + }; + if (v1RuntimeValue.TimestampSpecified) + { + result.Timestamp = v1RuntimeValue.Timestamp; + } + result.Value = v1RuntimeValue.Value.ToV2Variant(); + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] ToV2RuntimeValueArray(this ArchestrAServices.ASBContract.RuntimeValue[] v1RuntimeValue) + { + ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] array = new ArchestrAServices.ASBIDataV2Contract.RuntimeValue[v1RuntimeValue.Length]; + for (int i = 0; i < v1RuntimeValue.Length; i++) + { + array[i] = v1RuntimeValue[i].ToV2RuntimeValue(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue ToV2MonitoredItemValue(this ArchestrAServices.ASBContract.MonitoredItemValue v1MonitoredItemValue) + { + return new ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue + { + Item = v1MonitoredItemValue.Item.ToV2ItemIdentity(), + UserData = v1MonitoredItemValue.UserData.ToV2Variant(), + Value = v1MonitoredItemValue.Value.ToV2RuntimeValue() + }; + } + + public static ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] ToV2MonitoredItemValueArray(this ArchestrAServices.ASBContract.MonitoredItemValue[] v1MonitoredItemValue) + { + ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] array = new ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[v1MonitoredItemValue.Length]; + for (int i = 0; i < v1MonitoredItemValue.Length; i++) + { + array[i] = v1MonitoredItemValue[i].ToV2MonitoredItemValue(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.WriteValue ToV2WriteValue(this ArchestrAServices.ASBContract.WriteValue v1WriteValue) + { + ArchestrAServices.ASBIDataV2Contract.WriteValue result = new ArchestrAServices.ASBIDataV2Contract.WriteValue + { + ArrayElementIndex = 0, + Comment = v1WriteValue.Comment, + HasQTSpecified = v1WriteValue.HasQTSpecified + }; + if (v1WriteValue.HasQTSpecified) + { + result.HasQT = v1WriteValue.HasQT; + } + result.Status = v1WriteValue.Status.ToV2ASBStatus(); + result.TimestampSpecified = v1WriteValue.TimestampSpecified; + if (v1WriteValue.TimestampSpecified) + { + result.Timestamp = v1WriteValue.Timestamp; + } + result.Value = v1WriteValue.Value.ToV2Variant(); + result.ArrayElementIndexSpecified = false; + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.WriteValue[] ToV2WriteValueArray(this ArchestrAServices.ASBContract.WriteValue[] v1WriteValue) + { + ArchestrAServices.ASBIDataV2Contract.WriteValue[] array = new ArchestrAServices.ASBIDataV2Contract.WriteValue[v1WriteValue.Length]; + for (int i = 0; i < v1WriteValue.Length; i++) + { + array[i] = v1WriteValue[i].ToV2WriteValue(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete ToV2ItemWriteComplete(this ArchestrAServices.ASBContract.ItemWriteComplete v1ItemWriteComplete) + { + return new ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete + { + Status = v1ItemWriteComplete.Status.ToV2ItemStatusArray(), + WriteHandle = v1ItemWriteComplete.WriteHandle + }; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] ToV2ItemWriteCompleteArray(this ArchestrAServices.ASBContract.ItemWriteComplete[] v1ItemWriteComplete) + { + ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] array = new ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[v1ItemWriteComplete.Length]; + for (int i = 0; i < v1ItemWriteComplete.Length; i++) + { + array[i] = v1ItemWriteComplete[i].ToV2ItemWriteComplete(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete ToV2ItemWriteComplete(this ItemWriteCompleteV2 v1ItemWriteComplete) + { + ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete result = new ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete + { + Status = v1ItemWriteComplete.Status.ToV2ItemStatusArray(), + WriteHandleSpecified = v1ItemWriteComplete.WriteHandleSpecified + }; + if (v1ItemWriteComplete.WriteHandleSpecified) + { + result.WriteHandle = v1ItemWriteComplete.WriteHandle; + } + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] ToV2ItemWriteCompleteArray(this ItemWriteCompleteV2[] v1ItemWriteComplete) + { + ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] array = new ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[v1ItemWriteComplete.Length]; + for (int i = 0; i < v1ItemWriteComplete.Length; i++) + { + array[i] = v1ItemWriteComplete[i].ToV2ItemWriteComplete(); + } + return array; + } + + public static ArchestrAServices.ASBContract.ItemWriteComplete ToV1ItemWriteComplete(this ItemWriteCompleteV2 v1ItemWriteComplete) + { + ArchestrAServices.ASBContract.ItemWriteComplete result = new ArchestrAServices.ASBContract.ItemWriteComplete + { + Status = v1ItemWriteComplete.Status.ToV1ItemStatusArray(), + WriteHandleSpecified = v1ItemWriteComplete.WriteHandleSpecified + }; + if (v1ItemWriteComplete.WriteHandleSpecified) + { + result.WriteHandle = v1ItemWriteComplete.WriteHandle; + } + return result; + } + + public static ArchestrAServices.ASBContract.ItemWriteComplete[] ToV1ItemWriteCompleteArray(this ItemWriteCompleteV2[] v1ItemWriteComplete) + { + ArchestrAServices.ASBContract.ItemWriteComplete[] array = new ArchestrAServices.ASBContract.ItemWriteComplete[v1ItemWriteComplete.Length]; + for (int i = 0; i < v1ItemWriteComplete.Length; i++) + { + array[i] = v1ItemWriteComplete[i].ToV1ItemWriteComplete(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.UserToken ToV2UserToken(this ArchestrAServices.ASBContract.UserToken v1UserToken) + { + ArchestrAServices.ASBIDataV2Contract.UserToken result = new ArchestrAServices.ASBIDataV2Contract.UserToken + { + EncryptionSpecified = v1UserToken.EncryptionSpecified + }; + if (v1UserToken.EncryptionSpecified) + { + result.Encryption = v1UserToken.Encryption; + } + result.HostName = v1UserToken.HostName; + result.IdTypeSpecified = v1UserToken.IdTypeSpecified; + if (v1UserToken.IdTypeSpecified) + { + result.IdType = v1UserToken.IdType; + } + result.LocationID = v1UserToken.LocationID; + result.Password = v1UserToken.Password; + result.SamlToken = v1UserToken.SamlToken; + result.UserName = v1UserToken.UserName; + result.ValiditySpecified = v1UserToken.ValiditySpecified; + if (v1UserToken.ValiditySpecified) + { + result.Validity = v1UserToken.Validity; + } + result.X509Certificate = v1UserToken.X509Certificate; + return result; + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV2toV1Extensions.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV2toV1Extensions.cs new file mode 100644 index 0000000..be7965a --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV2toV1Extensions.cs @@ -0,0 +1,285 @@ +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Contract; + +namespace ArchestrAServices.ASBIDataV2Adapter; + +public static class IDataV2toV1Extensions +{ + public static ArchestrAServices.ASBIDataContract.Variant ToV1Variant(this ArchestrAServices.ASBIDataContract.V2.Variant v2Variant) + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = v2Variant.Type, + Length = v2Variant.Length, + Payload = v2Variant.Payload + }; + } + + public static ArchestrAServices.ASBContract.MonitoredItem ToV1MonitoredItem(this ArchestrAServices.ASBIDataV2Contract.MonitoredItem v2MonitoredItem) + { + ArchestrAServices.ASBContract.MonitoredItem result = new ArchestrAServices.ASBContract.MonitoredItem + { + ActiveSpecified = v2MonitoredItem.ActiveSpecified + }; + if (v2MonitoredItem.ActiveSpecified) + { + result.Active = v2MonitoredItem.Active; + } + result.Item = v2MonitoredItem.Item.ToV1ItemIdentity(); + result.SampleInterval = v2MonitoredItem.SampleInterval; + result.TimeDeadbandSpecified = v2MonitoredItem.TimeDeadbandSpecified; + if (v2MonitoredItem.TimeDeadbandSpecified) + { + result.TimeDeadband = v2MonitoredItem.TimeDeadband; + } + result.UserData = v2MonitoredItem.UserData.ToV1Variant(); + result.ValueDeadband = v2MonitoredItem.ValueDeadband.ToV1Variant(); + return result; + } + + public static ArchestrAServices.ASBContract.MonitoredItem[] ToV1MonitoredItemArray(this ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] v2MonitoredItem) + { + ArchestrAServices.ASBContract.MonitoredItem[] array = new ArchestrAServices.ASBContract.MonitoredItem[v2MonitoredItem.Length]; + for (int i = 0; i < v2MonitoredItem.Length; i++) + { + array[i] = v2MonitoredItem[i].ToV1MonitoredItem(); + } + return array; + } + + public static ArchestrAServices.ASBContract.ASBStatus ToV1ASBStatus(this ArchestrAServices.ASBIDataV2Contract.ASBStatus v2ASBStatus) + { + return new ArchestrAServices.ASBContract.ASBStatus + { + Count = v2ASBStatus.Count, + Payload = v2ASBStatus.Payload + }; + } + + public static ArchestrAServices.ASBContract.WriteValue ToV1WriteValue(this WriteValueV2 v2MirroredWriteValue) + { + ArchestrAServices.ASBContract.WriteValue result = new ArchestrAServices.ASBContract.WriteValue + { + Comment = v2MirroredWriteValue.Comment, + HasQTSpecified = v2MirroredWriteValue.HasQTSpecified + }; + if (v2MirroredWriteValue.HasQTSpecified) + { + result.HasQT = v2MirroredWriteValue.HasQT; + } + result.Status = v2MirroredWriteValue.Status; + result.TimestampSpecified = v2MirroredWriteValue.TimestampSpecified; + if (v2MirroredWriteValue.TimestampSpecified) + { + result.Timestamp = v2MirroredWriteValue.Timestamp; + } + result.Value = v2MirroredWriteValue.Value; + return result; + } + + public static ArchestrAServices.ASBContract.WriteValue ToV1WriteValue(this ArchestrAServices.ASBIDataV2Contract.WriteValue v2WriteValue) + { + ArchestrAServices.ASBContract.WriteValue result = new ArchestrAServices.ASBContract.WriteValue + { + Comment = v2WriteValue.Comment, + HasQTSpecified = v2WriteValue.HasQTSpecified + }; + if (v2WriteValue.HasQTSpecified) + { + result.HasQT = v2WriteValue.HasQT; + } + result.Status = v2WriteValue.Status.ToV1ASBStatus(); + result.TimestampSpecified = v2WriteValue.TimestampSpecified; + if (v2WriteValue.TimestampSpecified) + { + result.Timestamp = v2WriteValue.Timestamp; + } + result.Value = v2WriteValue.Value.ToV1Variant(); + return result; + } + + public static ArchestrAServices.ASBContract.WriteValue[] ToV1WriteValueArray(this ArchestrAServices.ASBIDataV2Contract.WriteValue[] v2WriteValue) + { + ArchestrAServices.ASBContract.WriteValue[] array = new ArchestrAServices.ASBContract.WriteValue[v2WriteValue.Length]; + for (int i = 0; i < v2WriteValue.Length; i++) + { + array[i] = v2WriteValue[i].ToV1WriteValue(); + } + return array; + } + + public static ArchestrAServices.ASBContract.UserToken ToV1UserToken(this ArchestrAServices.ASBIDataV2Contract.UserToken v2UserToken) + { + ArchestrAServices.ASBContract.UserToken result = new ArchestrAServices.ASBContract.UserToken + { + EncryptionSpecified = v2UserToken.EncryptionSpecified + }; + if (v2UserToken.EncryptionSpecified) + { + result.Encryption = v2UserToken.Encryption; + } + result.HostName = v2UserToken.HostName; + result.IdTypeSpecified = v2UserToken.IdTypeSpecified; + if (v2UserToken.IdTypeSpecified) + { + result.IdType = v2UserToken.IdType; + } + result.LocationID = v2UserToken.LocationID; + result.Password = v2UserToken.Password; + result.SamlToken = v2UserToken.SamlToken; + result.UserName = v2UserToken.UserName; + result.ValiditySpecified = v2UserToken.ValiditySpecified; + if (v2UserToken.ValiditySpecified) + { + result.Validity = v2UserToken.Validity; + } + result.X509Certificate = v2UserToken.X509Certificate; + return result; + } + + public static ArchestrAServices.ASBContract.ItemIdentity ToV1ItemIdentity(this ArchestrAServices.ASBIDataV2Contract.ItemIdentity v1Identity) + { + ArchestrAServices.ASBContract.ItemIdentity result = new ArchestrAServices.ASBContract.ItemIdentity + { + Name = v1Identity.Name, + ContextName = v1Identity.ContextName, + IdSpecified = v1Identity.IdSpecified + }; + if (v1Identity.IdSpecified) + { + result.Id = v1Identity.Id; + } + result.ReferenceType = v1Identity.ReferenceType; + result.Type = v1Identity.Type; + return result; + } + + public static ArchestrAServices.ASBContract.ItemIdentity[] ToV1ItemIdentityArray(this ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] v2ItemIdentity) + { + ArchestrAServices.ASBContract.ItemIdentity[] array = new ArchestrAServices.ASBContract.ItemIdentity[v2ItemIdentity.Length]; + for (int i = 0; i < v2ItemIdentity.Length; i++) + { + array[i] = v2ItemIdentity[i].ToV1ItemIdentity(); + } + return array; + } + + public static ArchestrAServices.ASBContract.ItemStatus ToV1ItemStatus(this ArchestrAServices.ASBIDataV2Contract.ItemStatus v2Status) + { + ArchestrAServices.ASBContract.ItemStatus result = new ArchestrAServices.ASBContract.ItemStatus + { + ErrorCodeSpecified = v2Status.ErrorCodeSpecified + }; + if (v2Status.ErrorCodeSpecified) + { + result.ErrorCode = v2Status.ErrorCode; + } + result.Item = v2Status.Item.ToV1ItemIdentity(); + return result; + } + + public static ArchestrAServices.ASBContract.ItemStatus[] ToV1ItemStatusArray(this ArchestrAServices.ASBIDataV2Contract.ItemStatus[] v2Status) + { + ArchestrAServices.ASBContract.ItemStatus[] array = new ArchestrAServices.ASBContract.ItemStatus[v2Status.Length]; + for (int i = 0; i < v2Status.Length; i++) + { + array[i] = v2Status[i].ToV1ItemStatus(); + } + return array; + } + + public static ArchestrAServices.ASBContract.ItemRegistration ToV1ItemRegistration(this ArchestrAServices.ASBIDataV2Contract.ItemRegistration v2Registration) + { + ArchestrAServices.ASBContract.ItemRegistration result = new ArchestrAServices.ASBContract.ItemRegistration + { + IdSpecified = v2Registration.IdSpecified + }; + if (v2Registration.IdSpecified) + { + result.Id = v2Registration.Id; + } + result.WriteCapability = v2Registration.WriteCapability; + return result; + } + + public static ArchestrAServices.ASBContract.ItemRegistration[] ToV1ItemRegistrationArray(this ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] v2Registration) + { + ArchestrAServices.ASBContract.ItemRegistration[] array = new ArchestrAServices.ASBContract.ItemRegistration[v2Registration.Length]; + for (int i = 0; i < v2Registration.Length; i++) + { + array[i] = v2Registration[i].ToV1ItemRegistration(); + } + return array; + } + + public static ArchestrAServices.ASBContract.RuntimeValue ToV1RuntimeValue(this ArchestrAServices.ASBIDataV2Contract.RuntimeValue v2RuntimeValue) + { + ArchestrAServices.ASBContract.RuntimeValue result = new ArchestrAServices.ASBContract.RuntimeValue + { + Status = v2RuntimeValue.Status.ToV1ASBStatus(), + TimestampSpecified = v2RuntimeValue.TimestampSpecified + }; + if (v2RuntimeValue.TimestampSpecified) + { + result.Timestamp = v2RuntimeValue.Timestamp; + } + result.Value = v2RuntimeValue.Value.ToV1Variant(); + return result; + } + + public static ArchestrAServices.ASBContract.RuntimeValue[] ToV1RuntimeValueArray(this ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] v2RuntimeValue) + { + ArchestrAServices.ASBContract.RuntimeValue[] array = new ArchestrAServices.ASBContract.RuntimeValue[v2RuntimeValue.Length]; + for (int i = 0; i < v2RuntimeValue.Length; i++) + { + array[i] = v2RuntimeValue[i].ToV1RuntimeValue(); + } + return array; + } + + public static ArchestrAServices.ASBContract.MonitoredItemValue ToV1MonitoredItemValue(this ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue v2MonitoredItemValue) + { + return new ArchestrAServices.ASBContract.MonitoredItemValue + { + Item = v2MonitoredItemValue.Item.ToV1ItemIdentity(), + UserData = v2MonitoredItemValue.UserData.ToV1Variant(), + Value = v2MonitoredItemValue.Value.ToV1RuntimeValue() + }; + } + + public static ArchestrAServices.ASBContract.MonitoredItemValue[] ToV1MonitoredItemValueArray(this ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] v2MonitoredItemValue) + { + ArchestrAServices.ASBContract.MonitoredItemValue[] array = new ArchestrAServices.ASBContract.MonitoredItemValue[v2MonitoredItemValue.Length]; + for (int i = 0; i < v2MonitoredItemValue.Length; i++) + { + array[i] = v2MonitoredItemValue[i].ToV1MonitoredItemValue(); + } + return array; + } + + public static ArchestrAServices.ASBContract.ItemWriteComplete ToV1ItemWriteComplete(this ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete v2ItemWriteComplete) + { + ArchestrAServices.ASBContract.ItemWriteComplete result = new ArchestrAServices.ASBContract.ItemWriteComplete + { + Status = v2ItemWriteComplete.Status.ToV1ItemStatusArray(), + WriteHandleSpecified = v2ItemWriteComplete.WriteHandleSpecified + }; + if (v2ItemWriteComplete.WriteHandleSpecified) + { + result.WriteHandle = v2ItemWriteComplete.WriteHandle; + } + return result; + } + + public static ArchestrAServices.ASBContract.ItemWriteComplete[] ToV1ItemWriteCompleteArray(this ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] v2ItemWriteComplete) + { + ArchestrAServices.ASBContract.ItemWriteComplete[] array = new ArchestrAServices.ASBContract.ItemWriteComplete[v2ItemWriteComplete.Length]; + for (int i = 0; i < v2ItemWriteComplete.Length; i++) + { + array[i] = v2ItemWriteComplete[i].ToV1ItemWriteComplete(); + } + return array; + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV2toV2Extensions.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV2toV2Extensions.cs new file mode 100644 index 0000000..c6f989e --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.ASBIDataV2Adapter/IDataV2toV2Extensions.cs @@ -0,0 +1,191 @@ +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataV2Contract; + +namespace ArchestrAServices.ASBIDataV2Adapter; + +public static class IDataV2toV2Extensions +{ + public static ArchestrAServices.ASBIDataV2Contract.ItemStatus ToTrueV2ItemStatus(this ItemStatusV2 v2ItemStatus) + { + ArchestrAServices.ASBIDataV2Contract.ItemStatus result = new ArchestrAServices.ASBIDataV2Contract.ItemStatus + { + ErrorCodeSpecified = v2ItemStatus.ErrorCodeSpecified + }; + if (v2ItemStatus.ErrorCodeSpecified) + { + result.ErrorCode = v2ItemStatus.ErrorCode; + } + result.Item = v2ItemStatus.Item.ToV2ItemIdentity(); + result.Status = v2ItemStatus.Status.ToV2ASBStatus(); + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.ItemStatus[] ToTrueV2ItemStatusArray(this ItemStatusV2[] v2ItemStatus) + { + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] array = new ArchestrAServices.ASBIDataV2Contract.ItemStatus[v2ItemStatus.Length]; + for (int i = 0; i < v2ItemStatus.Length; i++) + { + array[i] = v2ItemStatus[i].ToTrueV2ItemStatus(); + } + return array; + } + + public static ItemStatusV2 ToMirroredV1ItemStatus(this ArchestrAServices.ASBContract.ItemStatus v1ItemStatus) + { + ItemStatusV2 result = new ItemStatusV2 + { + ErrorCodeSpecified = v1ItemStatus.ErrorCodeSpecified + }; + if (v1ItemStatus.ErrorCodeSpecified) + { + result.ErrorCode = v1ItemStatus.ErrorCode; + } + result.Item = v1ItemStatus.Item; + result.Status = default(ArchestrAServices.ASBContract.ASBStatus); + return result; + } + + public static ItemStatusV2[] ToMirroredV1ItemStatusArray(this ArchestrAServices.ASBContract.ItemStatus[] v1ItemStatus) + { + ItemStatusV2[] array = new ItemStatusV2[v1ItemStatus.Length]; + for (int i = 0; i < v1ItemStatus.Length; i++) + { + array[i] = v1ItemStatus[i].ToMirroredV1ItemStatus(); + } + return array; + } + + public static ItemStatusV2 ToMirroredV2ItemStatus(this ArchestrAServices.ASBIDataV2Contract.ItemStatus trueV2ItemStatus) + { + ItemStatusV2 result = new ItemStatusV2 + { + ErrorCodeSpecified = trueV2ItemStatus.ErrorCodeSpecified + }; + if (trueV2ItemStatus.ErrorCodeSpecified) + { + result.ErrorCode = trueV2ItemStatus.ErrorCode; + } + result.Item = trueV2ItemStatus.Item.ToV1ItemIdentity(); + result.Status = trueV2ItemStatus.Status.ToV1ASBStatus(); + return result; + } + + public static ItemStatusV2[] ToMirroredV2ItemStatusArray(this ArchestrAServices.ASBIDataV2Contract.ItemStatus[] truev2ItemStatus) + { + ItemStatusV2[] array = new ItemStatusV2[truev2ItemStatus.Length]; + for (int i = 0; i < truev2ItemStatus.Length; i++) + { + array[i] = truev2ItemStatus[i].ToMirroredV2ItemStatus(); + } + return array; + } + + public static WriteValueV2 ToMirroredV2WriteValue(this ArchestrAServices.ASBIDataV2Contract.WriteValue trueV2WriteValue) + { + WriteValueV2 result = new WriteValueV2 + { + ArrayElementIndexSpecified = trueV2WriteValue.ArrayElementIndexSpecified + }; + if (trueV2WriteValue.ArrayElementIndexSpecified) + { + result.ArrayElementIndex = trueV2WriteValue.ArrayElementIndex; + } + result.Comment = trueV2WriteValue.Comment; + result.HasQTSpecified = trueV2WriteValue.HasQTSpecified; + if (trueV2WriteValue.HasQTSpecified) + { + result.HasQT = trueV2WriteValue.HasQT; + } + result.HasQT = trueV2WriteValue.HasQT; + result.Status = trueV2WriteValue.Status.ToV1ASBStatus(); + result.Timestamp = trueV2WriteValue.Timestamp; + result.Value = trueV2WriteValue.Value.ToV1Variant(); + return result; + } + + public static WriteValueV2[] ToMirroredV2WriteValueArray(this ArchestrAServices.ASBIDataV2Contract.WriteValue[] trueV2WriteValue) + { + WriteValueV2[] array = new WriteValueV2[trueV2WriteValue.Length]; + for (int i = 0; i < trueV2WriteValue.Length; i++) + { + array[i] = trueV2WriteValue[i].ToMirroredV2WriteValue(); + } + return array; + } + + public static ItemWriteCompleteV2 ToMirroredV1ItemWriteComplete(this ArchestrAServices.ASBContract.ItemWriteComplete v2ItemWriteComplete) + { + ItemWriteCompleteV2 itemWriteCompleteV = new ItemWriteCompleteV2(); + itemWriteCompleteV.Status = v2ItemWriteComplete.Status.ToMirroredV1ItemStatusArray(); + itemWriteCompleteV.WriteHandleSpecified = v2ItemWriteComplete.WriteHandleSpecified; + if (v2ItemWriteComplete.WriteHandleSpecified) + { + itemWriteCompleteV.WriteHandle = v2ItemWriteComplete.WriteHandle; + } + return itemWriteCompleteV; + } + + public static ItemWriteCompleteV2[] ToMirroredV1ItemWriteCompleteArray(this ArchestrAServices.ASBContract.ItemWriteComplete[] v1ItemWriteComplete) + { + ItemWriteCompleteV2[] array = new ItemWriteCompleteV2[v1ItemWriteComplete.Length]; + for (int i = 0; i < v1ItemWriteComplete.Length; i++) + { + array[i] = v1ItemWriteComplete[i].ToMirroredV1ItemWriteComplete(); + } + return array; + } + + public static ItemWriteCompleteV2 ToMirroredV2ItemWriteComplete(this ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete v2ItemWriteComplete) + { + ItemWriteCompleteV2 itemWriteCompleteV = new ItemWriteCompleteV2(); + itemWriteCompleteV.Status = v2ItemWriteComplete.Status.ToMirroredV2ItemStatusArray(); + itemWriteCompleteV.WriteHandleSpecified = v2ItemWriteComplete.WriteHandleSpecified; + if (v2ItemWriteComplete.WriteHandleSpecified) + { + itemWriteCompleteV.WriteHandle = v2ItemWriteComplete.WriteHandle; + } + return itemWriteCompleteV; + } + + public static ItemWriteCompleteV2[] ToMirroredV2ItemWriteCompleteArray(this ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] v2ItemWriteComplete) + { + ItemWriteCompleteV2[] array = new ItemWriteCompleteV2[v2ItemWriteComplete.Length]; + for (int i = 0; i < v2ItemWriteComplete.Length; i++) + { + array[i] = v2ItemWriteComplete[i].ToMirroredV2ItemWriteComplete(); + } + return array; + } + + public static ArchestrAServices.ASBIDataV2Contract.WriteValue ToTrueV2WriteValue(this WriteValueV2 mirroredV2WriteValue) + { + ArchestrAServices.ASBIDataV2Contract.WriteValue result = new ArchestrAServices.ASBIDataV2Contract.WriteValue + { + ArrayElementIndexSpecified = mirroredV2WriteValue.ArrayElementIndexSpecified + }; + if (mirroredV2WriteValue.ArrayElementIndexSpecified) + { + result.ArrayElementIndex = mirroredV2WriteValue.ArrayElementIndex; + } + result.Comment = mirroredV2WriteValue.Comment; + result.HasQT = mirroredV2WriteValue.HasQT; + result.Status = mirroredV2WriteValue.Status.ToV2ASBStatus(); + result.TimestampSpecified = mirroredV2WriteValue.TimestampSpecified; + if (mirroredV2WriteValue.TimestampSpecified) + { + result.Timestamp = mirroredV2WriteValue.Timestamp; + } + result.Value = mirroredV2WriteValue.Value.ToV2Variant(); + return result; + } + + public static ArchestrAServices.ASBIDataV2Contract.WriteValue[] ToTrueV2WriteValueArray(this WriteValueV2[] mirroredV2WriteValue) + { + ArchestrAServices.ASBIDataV2Contract.WriteValue[] array = new ArchestrAServices.ASBIDataV2Contract.WriteValue[mirroredV2WriteValue.Length]; + for (int i = 0; i < array.Length; i++) + { + array[i] = mirroredV2WriteValue[i].ToTrueV2WriteValue(); + } + return array; + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.Proxy/ASBDataV1Proxy.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.Proxy/ASBDataV1Proxy.cs new file mode 100644 index 0000000..acdb68c --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.Proxy/ASBDataV1Proxy.cs @@ -0,0 +1,1251 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Diagnostics; +using System.Reflection; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Discovery; +using System.Threading; +using System.Threading.Tasks; +using System.Xml; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.ASBIDataV2Adapter; +using ArchestrAServices.ASBIDataV2Contract; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.Proxy; + +public class ASBDataV1Proxy : IDataV2toV1, IDisposable +{ + public class ConnectionDelegate + { + private IASBIDataV2 dataClientField; + + private ConnectionDelegate() + { + dataClientField = null; + } + + public ConnectionDelegate(IASBIDataV2 browseClient) + { + dataClientField = browseClient; + } + + public ConnectResponse CallConnect(ConnectRequest request) + { + if (dataClientField != null) + { + return dataClientField.Connect(request); + } + return new ConnectResponse + { + Result = ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0) + }; + } + + public void CallAuthenticateMe(AuthenticateMe request) + { + if (dataClientField != null) + { + dataClientField.AuthenticateMe(request); + } + } + + public void CallDisconnect(Disconnect request) + { + if (dataClientField != null) + { + dataClientField.Disconnect(request); + } + } + } + + private string accessName; + + private ChannelFactory dataProviderFactory; + + private IASBIDataV2 dataClient; + + public Guid connectionId = Guid.Empty; + + private object connectionLock; + + private ManualResetEvent connectionEstablishedEvent; + + private List accumulatedErrorMsg; + + private object errorMsgLock; + + private string customSerializerSearchString = "/binding/customserializer/version2"; + + private ConfiguredLogger aaLoggerConfig; + + public static TraceSource ASBDataProxyCustom = new TraceSource("ASBDataProxyLogs"); + + public IASBIDataV2 DataClient => dataClient; + + public bool Connected + { + get + { + if (dataClient != null) + { + return ((IClientChannel)dataClient).State != CommunicationState.Faulted; + } + return false; + } + } + + public CommunicationState ChannelState + { + get + { + if (dataClient == null) + { + return CommunicationState.Faulted; + } + return ((IClientChannel)dataClient).State; + } + } + + public IAsbInterfaceSettings Settings { get; private set; } + + public ASBDataV1Proxy(string access, IAsbInterfaceSettings settings) + { + accessName = access; + Settings = settings; + Process currentProcess = Process.GetCurrentProcess(); + if (currentProcess != null) + { + aaLoggerConfig = new ConfiguredLogger(currentProcess.ProcessName); + aaLoggerConfig.ChangeSourceLevel("DataFlowLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("ControlFlowLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("CommandLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("ExceptionLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("DiagnosticsLogs", SourceLevels.All); + aaLoggerConfig.AddCustomTraceSource("ASBDataProxyLogs", ASBDataV2Proxy.ASBDataProxyCustom, "ASBDataV1Proxy"); + aaLoggerConfig.ChangeSourceLevel("ASBDataProxyLogs", SourceLevels.All); + } + Reset(); + } + + private void Reset() + { + if (dataClient != null) + { + ((IClientChannel)dataClient).Abort(); + } + dataProviderFactory = null; + dataClient = null; + connectionId = Guid.Empty; + connectionLock = new object(); + } + + public bool Connect(out string errorMessage) + { + try + { + Reset(); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, "Connection reset failed : {0} \n Stack: {1}", ex.Message, ex.StackTrace); + } + errorMessage = string.Empty; + bool result = false; + bool useCustomSerializer = false; + string SolutionName = string.Empty; + EndpointDiscoveryMetadata endpointDiscoveryMetadata = null; + FindResponse findResponse = FindIDataEndpoint(accessName); + if (findResponse != null && findResponse.Endpoints != null && findResponse.Endpoints.Count != 0) + { + endpointDiscoveryMetadata = SelectEndpointToConnectTo(findResponse, ref useCustomSerializer); + if (endpointDiscoveryMetadata != null) + { + ASBSolutionManager aSBSolutionManager = new ASBSolutionManager(); + SolutionName = aSBSolutionManager.GetASBSolutionName(endpointDiscoveryMetadata, out errorMessage); + if (string.IsNullOrEmpty(errorMessage)) + { + aSBSolutionManager.GetASBSolutionPassphrase(SolutionName, out errorMessage); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Connect found no endpoints for access name {0} that were configured correctly", accessName); + } + } + else if (findResponse != null) + { + if (findResponse.Endpoints != null) + { + if (findResponse.Endpoints.Count == 0) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "Connect found no endpoints for IDataV2 with access name {0}", accessName); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "Connect FindResponse has a null Endpoints member finding IDataV2 with access name {0}", accessName); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "Connect null FindResponse finding IDataV2 with access name {0}", accessName); + } + if (string.IsNullOrEmpty(errorMessage)) + { + if (endpointDiscoveryMetadata != null) + { + lock (connectionLock) + { + dataProviderFactory = null; + dataClient = null; + connectionId = Guid.Empty; + } + connectionEstablishedEvent = new ManualResetEvent(initialState: false); + accumulatedErrorMsg = new List(); + errorMsgLock = new object(); + foreach (Uri listenUri in endpointDiscoveryMetadata.ListenUris) + { + string SelectedEndpointUri = listenUri.ToString(); + Task.Factory.StartNew(delegate + { + EndpointAddress dataProviderEndpoint = new EndpointAddress(SelectedEndpointUri); + Binding binding = SvcUtilities.GetBinding(SelectedEndpointUri); + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Try connecting with IDataV2 endpoint {0}", SelectedEndpointUri); + if (InternalConnect(dataProviderEndpoint, binding, SolutionName, out var errorMessage2, useCustomSerializer)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Connected to IDataV2 endpoint {0}", SelectedEndpointUri); + } + else if (errorMessage2 != null) + { + lock (errorMsgLock) + { + accumulatedErrorMsg.Add(errorMessage2); + } + } + }); + } + connectionEstablishedEvent.WaitOne(20000); + connectionEstablishedEvent.Close(); + connectionEstablishedEvent = null; + lock (connectionLock) + { + result = true; + if (dataProviderFactory == null) + { + foreach (string item in accumulatedErrorMsg) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, item); + } + result = false; + } + } + } + else + { + string text = $"There are no endpoints selected for the namespace: '{accessName}'. Confirm that \r"; + string text2 = $"a) local galaxy and remote galaxy {accessName} specify the same UDS \r"; + string text3 = $"b) local galaxy has been paired with remote galaxy {accessName} \r"; + string text4 = $"c) MxDataProvider service has been deployed on galaxy {accessName}."; + errorMessage = $"{text}{text2}{text3}{text4}"; + } + } + return result; + } + + public EndpointDiscoveryMetadata SelectEndpointToConnectTo(FindResponse findResponse, ref bool useCustomSerializer) + { + EndpointDiscoveryMetadata result = null; + List list = new List(); + List list2 = new List(); + bool flag = true; + foreach (EndpointDiscoveryMetadata endpoint in findResponse.Endpoints) + { + if (flag) + { + list2.Add(endpoint); + } + else + { + list.Add(endpoint); + } + flag = false; + } + Random random = new Random(DateTime.Now.Millisecond); + if (list2.Count != 0) + { + useCustomSerializer = true; + result = list2[random.Next(list2.Count)]; + } + else if (list.Count != 0) + { + useCustomSerializer = false; + result = list[random.Next(list.Count)]; + } + return result; + } + + public bool Connect(EndpointDiscoveryMetadata SelectedMetadata, out string errorMessage) + { + errorMessage = string.Empty; + bool useCustomSerializer = false; + foreach (Uri scope in SelectedMetadata.Scopes) + { + if (scope.AbsolutePath.Contains(customSerializerSearchString)) + { + useCustomSerializer = true; + break; + } + } + string text = SelectedMetadata.Address.Uri.ToString(); + EndpointAddress dataProviderEndpoint = new EndpointAddress(text); + Binding binding = SvcUtilities.GetBinding(text); + ASBSolutionManager aSBSolutionManager = new ASBSolutionManager(); + string aSBSolutionName = aSBSolutionManager.GetASBSolutionName(SelectedMetadata, out errorMessage); + if (string.IsNullOrEmpty(errorMessage)) + { + aSBSolutionManager.GetASBSolutionPassphrase(aSBSolutionName, out errorMessage); + } + if (string.IsNullOrEmpty(errorMessage)) + { + bool num = InternalConnect(dataProviderEndpoint, binding, aSBSolutionName, out errorMessage, useCustomSerializer); + if (!num && errorMessage != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Error, 0, errorMessage); + } + return num; + } + return false; + } + + private bool InternalConnect(EndpointAddress dataProviderEndpoint, Binding binding, string SolutionName, out string errorMessage, bool useCustomSerializer) + { + bool flag = false; + errorMessage = string.Empty; + if (dataProviderEndpoint != null && binding != null) + { + try + { + ChannelFactory channelFactory = new ChannelFactory(binding, dataProviderEndpoint); + channelFactory.Open(); + IASBIDataV2 iASBIDataV = channelFactory.CreateChannel(); + Guid empty = Guid.Empty; + if (iASBIDataV != null) + { + ((IClientChannel)iASBIDataV).Open(); + if (iASBIDataV != null && ((IClientChannel)iASBIDataV).State != CommunicationState.Faulted) + { + ConnectionDelegate connectionDelegate = new ConnectionDelegate(iASBIDataV); + flag = SysAuthClientAuthentication.EstablishSecureSession(Process.GetCurrentProcess().ProcessName, "localdomain", Environment.MachineName, SolutionName, new WeakReference(this), connectionDelegate.CallConnect, connectionDelegate.CallAuthenticateMe, out empty, out errorMessage); + Thread.Sleep(250); + if (flag) + { + Stopwatch stopwatch = new Stopwatch(); + stopwatch.Start(); + bool flag2; + do + { + flag2 = PublishWriteComplete(out var _).ErrorCode != ArchestrAServices.ASBContract.EnumASBFactory.ArchestrAErrorToInt(ArchestrAServices.ASBContract.ArchestrAError.InvalidConnectionId); + if (flag2) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Ping PublishWriteComplete() successful with service using ConnectionId {0}", empty); + } + if (!flag2) + { + Thread.Sleep(250); + } + } + while (!flag2 && stopwatch.ElapsedMilliseconds < 2500); + flag = flag2; + } + if (flag) + { + bool flag3 = false; + lock (connectionLock) + { + if (dataProviderFactory == null) + { + flag3 = true; + dataProviderFactory = channelFactory; + dataClient = iASBIDataV; + connectionId = empty; + if (connectionEstablishedEvent != null) + { + connectionEstablishedEvent.Set(); + } + } + } + if (!flag3) + { + SysAuthClientAuthentication.DisconnectSecureSession(empty, connectionDelegate.CallDisconnect); + if (iASBIDataV != null) + { + ((IClientChannel)iASBIDataV).Close(); + ((IClientChannel)iASBIDataV).Dispose(); + } + } + } + else + { + if (iASBIDataV != null) + { + ((IClientChannel)iASBIDataV).Abort(); + ((IClientChannel)iASBIDataV).Dispose(); + } + if (string.IsNullOrEmpty(errorMessage)) + { + errorMessage = "ASBDataV1Proxy could not connect with service: EstablishSecureSession failed"; + } + } + } + else + { + errorMessage = "ASBDataV1Proxy could not connect with service: communicaton channel in faulted state"; + flag = false; + } + } + else + { + errorMessage = $"ASBDataV1Proxy not able to create a channel for the endpoint {dataProviderEndpoint.Uri.ToString()}"; + } + } + catch (CommunicationException ex) + { + errorMessage = "ASBDataV1Proxy caught CommunicationException opening channel: " + ex.Message; + if (ex.InnerException != null) + { + errorMessage += ex.InnerException.Message; + } + } + catch (TimeoutException ex2) + { + errorMessage = "ASBDataV1Proxy caught TimeoutException opening channel: " + ex2.Message; + if (ex2.InnerException != null) + { + errorMessage += ex2.InnerException.Message; + } + } + catch (Exception ex3) + { + errorMessage = "ASBDataV1Proxy caught exception opening channel: " + ex3.Message; + flag = false; + } + } + else + { + if (dataProviderEndpoint == null) + { + errorMessage += "ASBDataV1Proxy cannot proceed to connect: No provider endpoint provided by caller"; + flag = false; + } + if (binding == null) + { + errorMessage += "ASBDataV1Proxy cannot proceed to connect: No binding provided by caller"; + flag = false; + } + } + return flag; + } + + public void Disconnect() + { + SysAuthClientAuthentication.DisconnectSecureSession(connectionId, CallDisconnect); + } + + public void Abort() + { + Reset(); + } + + private void CallDisconnect(Disconnect request) + { + if (dataClient != null && ((IClientChannel)dataClient).State != CommunicationState.Faulted) + { + dataClient.Disconnect(request); + } + } + + public ArchestrAServices.ASBContract.ArchestrAResult KeepAlive(ArchestrAServices.ASBContract.ConnectionId Id) + { + return KeepAlive(); + } + + public ArchestrAServices.ASBContract.ArchestrAResult KeepAlive() + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + KeepAlive keepAlive = new KeepAlive(); + keepAlive.ConnectionValidator.ConnectionId = connectionId; + clientAuthenticator.Sign(keepAlive); + dataClient.KeepAlive(keepAlive); + return ArchestrAServices.ASBContract.ResultFactory.MakeGoodResult(); + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ActivateUser(ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.UserToken UserToken) + { + return ActivateUser(UserToken); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ActivateUser(ArchestrAServices.ASBContract.UserToken UserToken) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ActivateUserRequest activateUserRequest = new ActivateUserRequest(); + activateUserRequest.ConnectionValidator.ConnectionId = connectionId; + activateUserRequest.UserToken = UserToken.ToV2UserToken(); + clientAuthenticator.Sign(activateUserRequest); + ActivateUserResponse activateUserResponse = dataClient.ActivateUser(activateUserRequest); + if (activateUserResponse != null) + { + return activateUserResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ExchangeCapabilities(out string ServiceCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, string ClientCapabilities) + { + return ExchangeCapabilities(out ServiceCapabilities, ClientCapabilities); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ExchangeCapabilities(out string ServiceCapabilities, string ClientCapabilities) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ExchangeCapabilitiesRequest exchangeCapabilitiesRequest = new ExchangeCapabilitiesRequest(); + exchangeCapabilitiesRequest.ConnectionValidator.ConnectionId = connectionId; + exchangeCapabilitiesRequest.ClientCapabilities = ClientCapabilities; + clientAuthenticator.Sign(exchangeCapabilitiesRequest); + ExchangeCapabilitiesResponse exchangeCapabilitiesResponse = dataClient.ExchangeCapabilities(exchangeCapabilitiesRequest); + if (exchangeCapabilitiesResponse != null) + { + ServiceCapabilities = exchangeCapabilitiesResponse.ServiceCapabilities; + return exchangeCapabilitiesResponse.Result; + } + } + } + ServiceCapabilities = string.Empty; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Read(out ItemStatusV2[] Status, out ArchestrAServices.ASBContract.RuntimeValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + return Read(out Status, out Values, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Read(out ItemStatusV2[] Status, out ArchestrAServices.ASBContract.RuntimeValue[] Values, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.ReadRequest readRequest = new ArchestrAServices.ASBIDataV2Contract.ReadRequest(); + readRequest.ConnectionValidator.ConnectionId = connectionId; + readRequest.Items = Items.ToV2ItemIdentityArray(); + clientAuthenticator.Sign(readRequest); + ArchestrAServices.ASBIDataV2Contract.ReadResponse readResponse = dataClient.Read(readRequest); + if (readResponse != null) + { + Status = readResponse.Status.ToMirroredV2ItemStatusArray(); + Values = readResponse.Values.ToV1RuntimeValueArray(); + return readResponse.Result; + } + } + } + Status = null; + Values = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Write(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, uint WriteHandle) + { + return Write(out Status, Items, Values, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Write(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, uint WriteHandle) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.WriteBasicRequest writeBasicRequest = new ArchestrAServices.ASBIDataV2Contract.WriteBasicRequest(); + writeBasicRequest.ConnectionValidator.ConnectionId = connectionId; + writeBasicRequest.Items = Items.ToV2ItemIdentityArray(); + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + writeBasicRequest.Values = Values.ToTrueV2WriteValueArray(); + writeBasicRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeBasicRequest); + ArchestrAServices.ASBIDataV2Contract.WriteResponse writeResponse = dataClient.Write(writeBasicRequest); + if (writeResponse != null) + { + Status = writeResponse.Status.ToMirroredV2ItemStatusArray(); + return writeResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteUser(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + return WriteUser(out Status, Items, Values, User, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteUser(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.WriteUserRequest writeUserRequest = new ArchestrAServices.ASBIDataV2Contract.WriteUserRequest(); + writeUserRequest.ConnectionValidator.ConnectionId = connectionId; + writeUserRequest.Items = Items.ToV2ItemIdentityArray(); + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + writeUserRequest.Values = Values.ToTrueV2WriteValueArray(); + writeUserRequest.User = User.ToV2UserToken(); + writeUserRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeUserRequest); + ArchestrAServices.ASBIDataV2Contract.WriteUserResponse writeUserResponse = dataClient.WriteUser(writeUserRequest); + if (writeUserResponse != null) + { + Status = writeUserResponse.Status.ToMirroredV2ItemStatusArray(); + return writeUserResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteVerified(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + return WriteVerified(out Status, Items, Values, User, Supervisor, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteVerified(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.WriteVerifiedRequest writeVerifiedRequest = new ArchestrAServices.ASBIDataV2Contract.WriteVerifiedRequest(); + writeVerifiedRequest.ConnectionValidator.ConnectionId = connectionId; + writeVerifiedRequest.Items = Items.ToV2ItemIdentityArray(); + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + writeVerifiedRequest.Values = Values.ToTrueV2WriteValueArray(); + writeVerifiedRequest.User = User.ToV2UserToken(); + writeVerifiedRequest.Supervisor = Supervisor.ToV2UserToken(); + writeVerifiedRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeVerifiedRequest); + ArchestrAServices.ASBIDataV2Contract.WriteVerifiedResponse writeVerifiedResponse = dataClient.WriteVerified(writeVerifiedRequest); + if (writeVerifiedResponse != null) + { + Status = writeVerifiedResponse.Status.ToMirroredV2ItemStatusArray(); + return writeVerifiedResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteSecured(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + return WriteSecured(out Status, Items, Values, User, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteSecured(out ItemStatusV2[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, WriteValueV2[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.WriteSecuredRequest writeSecuredRequest = new ArchestrAServices.ASBIDataV2Contract.WriteSecuredRequest(); + writeSecuredRequest.ConnectionValidator.ConnectionId = connectionId; + writeSecuredRequest.Items = Items.ToV2ItemIdentityArray(); + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + writeSecuredRequest.Values = Values.ToTrueV2WriteValueArray(); + writeSecuredRequest.User = User.ToV2UserToken(); + writeSecuredRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeSecuredRequest); + ArchestrAServices.ASBIDataV2Contract.WriteSecuredResponse writeSecuredResponse = dataClient.WriteSecured(writeSecuredRequest); + if (writeSecuredResponse != null) + { + Status = writeSecuredResponse.Status.ToMirroredV2ItemStatusArray(); + return writeSecuredResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteConfirmed(out WriteValueV2 ValueReceived, out long WriteToken, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity Item, WriteValueV2 Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor) + { + return WriteConfirmed(out ValueReceived, out WriteToken, Item, Value, User, Supervisor); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteConfirmed(out WriteValueV2 ValueReceived, out long WriteToken, ArchestrAServices.ASBContract.ItemIdentity Item, WriteValueV2 Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.WriteConfirmedRequest writeConfirmedRequest = new ArchestrAServices.ASBIDataV2Contract.WriteConfirmedRequest(); + writeConfirmedRequest.ConnectionValidator.ConnectionId = connectionId; + writeConfirmedRequest.Item = Item.ToV2ItemIdentity(); + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + Value.ArrayElementIndex -= setting; + } + } + writeConfirmedRequest.Value = Value.ToTrueV2WriteValue(); + writeConfirmedRequest.User = User.ToV2UserToken(); + writeConfirmedRequest.Supervisor = Supervisor.ToV2UserToken(); + clientAuthenticator.Sign(writeConfirmedRequest); + ArchestrAServices.ASBIDataV2Contract.WriteConfirmedResponse writeConfirmedResponse = dataClient.WriteConfirmed(writeConfirmedRequest); + if (writeConfirmedResponse != null) + { + if (Settings != null) + { + int setting2 = Settings.GetSetting("ArrayBase", 0); + if (setting2 != 0) + { + writeConfirmedResponse.ValueReceived.ArrayElementIndex += setting2; + } + } + ValueReceived = writeConfirmedResponse.ValueReceived.ToMirroredV2WriteValue(); + WriteToken = writeConfirmedResponse.WriteToken; + return writeConfirmedResponse.Result; + } + } + } + ValueReceived = default(WriteValueV2); + WriteToken = long.MaxValue; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ConfirmWrite(ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity Item, long WriteToken, WriteValueV2 Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + return ConfirmWrite(Item, WriteToken, Value, User, Supervisor, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ConfirmWrite(ArchestrAServices.ASBContract.ItemIdentity Item, long WriteToken, WriteValueV2 Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.ConfirmWriteRequest confirmWriteRequest = new ArchestrAServices.ASBIDataV2Contract.ConfirmWriteRequest(); + confirmWriteRequest.ConnectionValidator.ConnectionId = connectionId; + confirmWriteRequest.Item = Item.ToV2ItemIdentity(); + confirmWriteRequest.WriteToken = WriteToken; + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + Value.ArrayElementIndex -= setting; + } + } + confirmWriteRequest.Value = Value.ToTrueV2WriteValue(); + confirmWriteRequest.User = User.ToV2UserToken(); + confirmWriteRequest.Supervisor = Supervisor.ToV2UserToken(); + confirmWriteRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(confirmWriteRequest); + ArchestrAServices.ASBIDataV2Contract.ConfirmWriteResponse confirmWriteResponse = dataClient.ConfirmWrite(confirmWriteRequest); + if (confirmWriteResponse != null) + { + return confirmWriteResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult PublishWriteComplete(out ItemWriteCompleteV2[] CompleteWrites, ArchestrAServices.ASBContract.ConnectionId Id) + { + return PublishWriteComplete(out CompleteWrites); + } + + public ArchestrAServices.ASBContract.ArchestrAResult PublishWriteComplete(out ItemWriteCompleteV2[] CompleteWrites) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.PublishWriteCompleteRequest publishWriteCompleteRequest = new ArchestrAServices.ASBIDataV2Contract.PublishWriteCompleteRequest(); + publishWriteCompleteRequest.ConnectionValidator.ConnectionId = connectionId; + clientAuthenticator.Sign(publishWriteCompleteRequest); + ArchestrAServices.ASBIDataV2Contract.PublishWriteCompleteResponse publishWriteCompleteResponse = dataClient.PublishWriteComplete(publishWriteCompleteRequest); + if (publishWriteCompleteResponse != null) + { + CompleteWrites = publishWriteCompleteResponse.CompleteWrites.ToMirroredV2ItemWriteCompleteArray(); + return publishWriteCompleteResponse.Result; + } + } + } + CompleteWrites = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult CreateSubscription(out long SubscriptionId, ArchestrAServices.ASBContract.ConnectionId Id, long MaxQueueSize, ulong SampleInterval) + { + return CreateSubscription(out SubscriptionId, MaxQueueSize, SampleInterval); + } + + public ArchestrAServices.ASBContract.ArchestrAResult CreateSubscription(out long SubscriptionId, long MaxQueueSize, ulong SampleInterval) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.CreateSubscriptionRequest createSubscriptionRequest = new ArchestrAServices.ASBIDataV2Contract.CreateSubscriptionRequest(); + createSubscriptionRequest.ConnectionValidator.ConnectionId = connectionId; + createSubscriptionRequest.MaxQueueSize = MaxQueueSize; + createSubscriptionRequest.SampleInterval = SampleInterval; + clientAuthenticator.Sign(createSubscriptionRequest); + ArchestrAServices.ASBIDataV2Contract.CreateSubscriptionResponse createSubscriptionResponse = dataClient.CreateSubscription(createSubscriptionRequest); + if (createSubscriptionResponse != null) + { + SubscriptionId = createSubscriptionResponse.SubscriptionId; + return createSubscriptionResponse.Result; + } + } + } + SubscriptionId = long.MaxValue; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult SetSubscriptionState(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataContract.Variant NewState, ushort StateToChange) + { + return SetSubscriptionState(SubscriptionId, NewState, StateToChange); + } + + public ArchestrAServices.ASBContract.ArchestrAResult SetSubscriptionState(long SubscriptionId, ArchestrAServices.ASBIDataContract.Variant NewState, ushort StateToChange) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.SetSubscriptionStateRequest setSubscriptionStateRequest = new ArchestrAServices.ASBIDataV2Contract.SetSubscriptionStateRequest(); + setSubscriptionStateRequest.ConnectionValidator.ConnectionId = connectionId; + setSubscriptionStateRequest.SubscriptionId = SubscriptionId; + setSubscriptionStateRequest.NewStateProperty = NewState.ToV2Variant(); + setSubscriptionStateRequest.StateToChange = StateToChange; + clientAuthenticator.Sign(setSubscriptionStateRequest); + ArchestrAServices.ASBIDataV2Contract.SetSubscriptionStateResponse setSubscriptionStateResponse = dataClient.SetSubscriptionState(setSubscriptionStateRequest); + if (setSubscriptionStateResponse != null) + { + return setSubscriptionStateResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.Variant State, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ushort StateToGet) + { + return GetSubscriptionState(out State, SubscriptionId, StateToGet); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.Variant State, long SubscriptionId, ushort StateToGet) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.GetSubscriptionStateRequest getSubscriptionStateRequest = new ArchestrAServices.ASBIDataV2Contract.GetSubscriptionStateRequest(); + getSubscriptionStateRequest.ConnectionValidator.ConnectionId = connectionId; + getSubscriptionStateRequest.SubscriptionId = SubscriptionId; + getSubscriptionStateRequest.StateToGet = StateToGet; + clientAuthenticator.Sign(getSubscriptionStateRequest); + ArchestrAServices.ASBIDataV2Contract.GetSubscriptionStateResponse subscriptionState = dataClient.GetSubscriptionState(getSubscriptionStateRequest); + if (subscriptionState != null) + { + State = subscriptionState.StateProperty.ToV1Variant(); + return subscriptionState.Result; + } + } + } + State = default(ArchestrAServices.ASBIDataContract.Variant); + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteSubscription(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return DeleteSubscription(SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteSubscription(long SubscriptionId) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.DeleteSubscriptionRequest deleteSubscriptionRequest = new ArchestrAServices.ASBIDataV2Contract.DeleteSubscriptionRequest(); + deleteSubscriptionRequest.ConnectionValidator.ConnectionId = connectionId; + deleteSubscriptionRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(deleteSubscriptionRequest); + ArchestrAServices.ASBIDataV2Contract.DeleteSubscriptionResponse deleteSubscriptionResponse = dataClient.DeleteSubscription(deleteSubscriptionRequest); + if (deleteSubscriptionResponse != null) + { + return deleteSubscriptionResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items, byte RequireId) + { + return AddMonitoredItems(out Status, out ItemCapabilities, SubscriptionId, RequireId != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items, byte RequireId) + { + return AddMonitoredItems(out Status, out ItemCapabilities, SubscriptionId, RequireId != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, long SubscriptionId, bool RequireId, ArchestrAServices.ASBContract.MonitoredItem[] Items) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.AddMonitoredItemsRequest addMonitoredItemsRequest = new ArchestrAServices.ASBIDataV2Contract.AddMonitoredItemsRequest(); + addMonitoredItemsRequest.ConnectionValidator.ConnectionId = connectionId; + addMonitoredItemsRequest.SubscriptionId = SubscriptionId; + addMonitoredItemsRequest.Items = Items.ToV2MonitoredItemArray(); + addMonitoredItemsRequest.RequireId = RequireId; + clientAuthenticator.Sign(addMonitoredItemsRequest); + ArchestrAServices.ASBIDataV2Contract.AddMonitoredItemsResponse addMonitoredItemsResponse = dataClient.AddMonitoredItems(addMonitoredItemsRequest); + if (addMonitoredItemsResponse != null) + { + Status = addMonitoredItemsResponse.Status.ToV1ItemStatusArray(); + ItemCapabilities = addMonitoredItemsResponse.ItemCapabilities.ToV1ItemRegistrationArray(); + return addMonitoredItemsResponse.Result; + } + } + } + Status = null; + ItemCapabilities = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items) + { + return DeleteMonitoredItems(out Status, SubscriptionId, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.DeleteMonitoredItemsRequest deleteMonitoredItemsRequest = new ArchestrAServices.ASBIDataV2Contract.DeleteMonitoredItemsRequest(); + deleteMonitoredItemsRequest.ConnectionValidator.ConnectionId = connectionId; + deleteMonitoredItemsRequest.SubscriptionId = SubscriptionId; + deleteMonitoredItemsRequest.Items = Items.ToV2MonitoredItemArray(); + clientAuthenticator.Sign(deleteMonitoredItemsRequest); + ArchestrAServices.ASBIDataV2Contract.DeleteMonitoredItemsResponse deleteMonitoredItemsResponse = dataClient.DeleteMonitoredItems(deleteMonitoredItemsRequest); + if (deleteMonitoredItemsResponse != null) + { + Status = deleteMonitoredItemsResponse.Status.ToV1ItemStatusArray(); + return deleteMonitoredItemsResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetMonitoredItems(out ArchestrAServices.ASBContract.MonitoredItem[] Items, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return GetMonitoredItems(out Items, SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetMonitoredItems(out ArchestrAServices.ASBContract.MonitoredItem[] Items, long SubscriptionId) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.GetMonitoredItemsRequest getMonitoredItemsRequest = new ArchestrAServices.ASBIDataV2Contract.GetMonitoredItemsRequest(); + getMonitoredItemsRequest.ConnectionValidator.ConnectionId = connectionId; + getMonitoredItemsRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(getMonitoredItemsRequest); + ArchestrAServices.ASBIDataV2Contract.GetMonitoredItemsResponse monitoredItems = dataClient.GetMonitoredItems(getMonitoredItemsRequest); + if (monitoredItems != null) + { + Items = monitoredItems.Items.ToV1MonitoredItemArray(); + return monitoredItems.Result; + } + } + } + Items = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Publish(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.MonitoredItemValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return Publish(out Status, out Values, SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Publish(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.MonitoredItemValue[] Values, long SubscriptionId) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.PublishRequest publishRequest = new ArchestrAServices.ASBIDataV2Contract.PublishRequest(); + publishRequest.ConnectionValidator.ConnectionId = connectionId; + publishRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(publishRequest); + ArchestrAServices.ASBIDataV2Contract.PublishResponse publishResponse = dataClient.Publish(publishRequest); + if (publishResponse != null) + { + Status = publishResponse.Status.ToV1ItemStatusArray(); + Values = publishResponse.Values.ToV1MonitoredItemValueArray(); + return publishResponse.Result; + } + } + } + Status = null; + Values = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + return RegisterItems(out Status, out ItemCapabilities, RequireId != 0, RegisterOnly != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + return RegisterItems(out Status, out ItemCapabilities, RequireId != 0, RegisterOnly != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, bool RequireId, bool RegisterOnly, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.RegisterItemsRequest registerItemsRequest = new ArchestrAServices.ASBIDataV2Contract.RegisterItemsRequest(); + registerItemsRequest.ConnectionValidator.ConnectionId = connectionId; + registerItemsRequest.Items = Items.ToV2ItemIdentityArray(); + registerItemsRequest.RequireId = RequireId; + registerItemsRequest.RegisterOnly = RegisterOnly; + clientAuthenticator.Sign(registerItemsRequest); + ArchestrAServices.ASBIDataV2Contract.RegisterItemsResponse registerItemsResponse = dataClient.RegisterItems(registerItemsRequest); + if (registerItemsResponse != null) + { + Status = registerItemsResponse.Status.ToV1ItemStatusArray(); + ItemCapabilities = registerItemsResponse.ItemCapabilities.ToV1ItemRegistrationArray(); + return registerItemsResponse.Result; + } + } + } + Status = null; + ItemCapabilities = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult UnregisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + return UnregisterItems(out Status, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult UnregisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + ArchestrAServices.ASBIDataV2Contract.UnregisterItemsRequest unregisterItemsRequest = new ArchestrAServices.ASBIDataV2Contract.UnregisterItemsRequest(); + unregisterItemsRequest.ConnectionValidator.ConnectionId = connectionId; + unregisterItemsRequest.Items = Items.ToV2ItemIdentityArray(); + clientAuthenticator.Sign(unregisterItemsRequest); + ArchestrAServices.ASBIDataV2Contract.UnregisterItemsResponse unregisterItemsResponse = dataClient.UnregisterItems(unregisterItemsRequest); + if (unregisterItemsResponse != null) + { + Status = unregisterItemsResponse.Status.ToV1ItemStatusArray(); + return unregisterItemsResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public void OnConnect(ArchestrAServices.ASBContract.ConnectionId ConnectionId, ulong Timeout) + { + } + + public void OnDisconnect(ArchestrAServices.ASBContract.ConnectionId Id) + { + } + + public static FindResponse FindIDataEndpoint(string AccessName) + { + FindResponse result = null; + try + { + Uri uri = RegistryHandler.MakeLDSProbeEndpointAddress(Environment.MachineName); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "FindIDataEndpoint generated LDS endpoint for SR Node localhost: {0}", uri.AbsoluteUri); + FindCriteria findCriteria = new FindCriteria(); + XmlQualifiedName xmlQualifiedName = new XmlQualifiedName("IASBIDataV2", "http://ASB.IDataV2"); + if (!string.IsNullOrEmpty(xmlQualifiedName.Name)) + { + findCriteria.ContractTypeNames.Add(xmlQualifiedName); + } + List list = new List(); + list.Add("domainname/" + AccessName); + Collection collection = SvcUtilities.CreateFindScopes(string.Empty, string.Empty, string.Empty, list); + findCriteria.Scopes.Clear(); + foreach (Uri item in collection) + { + findCriteria.Scopes.Add(item); + } + using DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(uri.AbsoluteUri), new EndpointAddress(uri))); + result = discoveryClient.Find(findCriteria); + } + catch (TargetInvocationException ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) TargetInvocationException: {1}", AccessName, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex.InnerException.Message); + } + result = null; + } + catch (ObjectDisposedException ex2) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) ObjectDisposedException: {1}", AccessName, ex2.Message); + if (ex2.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex2.InnerException.Message); + } + result = null; + } + catch (Exception ex3) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) Exception: {1}", AccessName, ex3.Message); + if (ex3.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex3.InnerException.Message); + } + result = null; + } + return result; + } + + protected virtual void Dispose(bool disposing) + { + if (!disposing) + { + return; + } + if (dataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null && clientAuthenticator.SecureSessionEstablished) + { + Disconnect(); + } + IClientChannel obj = dataClient as IClientChannel; + obj?.Close(); + obj?.Dispose(); + } + connectionEstablishedEvent?.Close(); + connectionEstablishedEvent = null; + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.Proxy/IDataProxySelector.cs b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.Proxy/IDataProxySelector.cs new file mode 100644 index 0000000..a23f6ad --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/ArchestrAServices.Proxy/IDataProxySelector.cs @@ -0,0 +1,51 @@ +using System.ServiceModel.Discovery; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.Proxy; + +public class IDataProxySelector +{ + public static object SelectProxyForLatestEndpoint(string accessName, IAsbInterfaceSettings settings, out string errorMessage) + { + return SelectProxyForLatestEndpoint(accessName, DiscoveryScope.Global, settings, out errorMessage); + } + + public static object SelectProxyForLatestEndpoint(string accessName, DiscoveryScope scopeRule, IAsbInterfaceSettings settings, out string errorMessage) + { + errorMessage = string.Empty; + object obj = null; + FindResponse findResponse = ASBDataV2Proxy.FindIDataEndpoint(accessName, scopeRule); + if (findResponse != null && findResponse.Endpoints != null && findResponse.Endpoints.Count > 0) + { + obj = new ASBDataV2Proxy(accessName, settings); + } + else + { + errorMessage += "| IDataV2: No Endpoint found."; + } + if (obj == null) + { + obj = TryFindIDataV1(accessName, ref errorMessage); + } + if (obj == null) + { + errorMessage = " unable to find a useable endpoint for IData or IDataV2" + errorMessage; + } + return obj; + } + + private static ASBDataProxy TryFindIDataV1(string accessName, ref string errorMessage) + { + ASBDataProxy result = null; + FindResponse findResponse = ASBDataProxy.FindIDataEndpoint(accessName); + if (findResponse != null && findResponse.Endpoints != null && findResponse.Endpoints.Count > 0) + { + result = new ASBDataProxy(accessName); + } + else + { + errorMessage += "| IData: No Endpoint found."; + } + return result; + } +} diff --git a/analysis/decompiled/ASBIDataV2Adapter/Properties/AssemblyInfo.cs b/analysis/decompiled/ASBIDataV2Adapter/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..3b057c5 --- /dev/null +++ b/analysis/decompiled/ASBIDataV2Adapter/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyDescription("ASB Runtime Data V2.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("ASBIDataV2Adapter")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaMxDataConsumer/-A0x6ea962a9/-lambda0-.cs b/analysis/decompiled/aaMxDataConsumer/-A0x6ea962a9/-lambda0-.cs new file mode 100644 index 0000000..c925493 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-A0x6ea962a9/-lambda0-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003FA0x6ea962a9; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct _003Clambda0_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00--CBD.cs new file mode 100644 index 0000000..c646b0e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY00_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00--CB_W.cs new file mode 100644 index 0000000..29a413e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 2)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY00_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00Q6MPBXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00Q6MPBXXZ.cs new file mode 100644 index 0000000..d8d04cf --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY00Q6MPBXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY00Q6MPBXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBD.cs new file mode 100644 index 0000000..d737e7d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 2)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY01_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBH.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBH.cs new file mode 100644 index 0000000..ca4dd65 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBH.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY01_0024_0024CBH +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBU_ATL_INTMAP_ENTRY-ATL--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBU_ATL_INTMAP_ENTRY-ATL--.cs new file mode 100644 index 0000000..fe16218 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CBU_ATL_INTMAP_ENTRY-ATL--.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY01_0024_0024CBU_ATL_INTMAP_ENTRY_0040ATL_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CB_W.cs new file mode 100644 index 0000000..ac5f825 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY01_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01Q6AXXZ.cs new file mode 100644 index 0000000..dd9aba0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY01Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01VCComVariant-ATL--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01VCComVariant-ATL--.cs new file mode 100644 index 0000000..694ae77 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY01VCComVariant-ATL--.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY01VCComVariant_0040ATL_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02--CBD.cs new file mode 100644 index 0000000..21f1af5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 3)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY02_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02--CB_W.cs new file mode 100644 index 0000000..1980f35 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 6)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY02_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02D.cs new file mode 100644 index 0000000..2fea849 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 3)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY02D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02Q6AXXZ.cs new file mode 100644 index 0000000..53a4102 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY02Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY02Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03--CBD.cs new file mode 100644 index 0000000..b6e8963 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY03_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03--CB_W.cs new file mode 100644 index 0000000..828523b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY03_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03Q6AXXZ.cs new file mode 100644 index 0000000..241a127 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY03Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY03Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04--CBD.cs new file mode 100644 index 0000000..ef08e7a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 5)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY04_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04--CB_W.cs new file mode 100644 index 0000000..5f6f46b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 10)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY04_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04D.cs new file mode 100644 index 0000000..77292b2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 5)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY04D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04Q6AXXZ.cs new file mode 100644 index 0000000..c09106a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY04Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY04Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05--CBD.cs new file mode 100644 index 0000000..02a8ecb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 6)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY05_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05--CB_W.cs new file mode 100644 index 0000000..4d34af1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY05_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05D.cs new file mode 100644 index 0000000..c1b8823 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY05D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 6)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY05D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06--CBD.cs new file mode 100644 index 0000000..390b751 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 7)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY06_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06--CB_W.cs new file mode 100644 index 0000000..d5b83db --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 14)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY06_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06PB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06PB_W.cs new file mode 100644 index 0000000..21a4dfe --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06PB_W.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY06PB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06Q6AXXZ.cs new file mode 100644 index 0000000..04988eb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY06Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY06Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07--CBD.cs new file mode 100644 index 0000000..2297307 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY07_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07--CB_W.cs new file mode 100644 index 0000000..a96476d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY07_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07D.cs new file mode 100644 index 0000000..a11573e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY07D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY07D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08--CBD.cs new file mode 100644 index 0000000..98e1ffc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 9)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY08_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08--CB_W.cs new file mode 100644 index 0000000..a0b7550 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 18)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY08_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08Q6AXXZ.cs new file mode 100644 index 0000000..a43e8ac --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY08Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY08Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09--CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09--CBD.cs new file mode 100644 index 0000000..ade2b9f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09--CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 10)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY09_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09--CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09--CB_W.cs new file mode 100644 index 0000000..853168e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09--CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY09_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09Q6AXXZ.cs new file mode 100644 index 0000000..e611d05 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY09Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 40)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY09Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0A-P6AHXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0A-P6AHXZ.cs new file mode 100644 index 0000000..cc1af1f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0A-P6AHXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0A_0040P6AHXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0A-P6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0A-P6AXXZ.cs new file mode 100644 index 0000000..cd77d09 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0A-P6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0A_0040P6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA---CBD.cs new file mode 100644 index 0000000..30bde0e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA---CB_W.cs new file mode 100644 index 0000000..8b5c9d0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA-Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA-Q6AXXZ.cs new file mode 100644 index 0000000..3fbd59d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BA-Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 64)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BA_0040Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAA-D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAA-D.cs new file mode 100644 index 0000000..5522c8f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAA-D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 256)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0BAA_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAA-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAA-_W.cs new file mode 100644 index 0000000..17faf6c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAA-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 512)] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BAA_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAAA-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAAA-_W.cs new file mode 100644 index 0000000..6ab7375 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAAA-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 8192)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BAAA_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAE-D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAE-D.cs new file mode 100644 index 0000000..9aaeaaf --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAE-D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 260)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BAE_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAE-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAE-_W.cs new file mode 100644 index 0000000..50ea393 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAE-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 520)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BAE_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAF-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAF-_W.cs new file mode 100644 index 0000000..c916d84 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAF-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 522)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BAF_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAG-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAG-_W.cs new file mode 100644 index 0000000..33c992a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BAG-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 524)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BAG_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BB---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BB---CBD.cs new file mode 100644 index 0000000..cdf4191 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BB---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 17)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0BB_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BB---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BB---CB_W.cs new file mode 100644 index 0000000..8ec249f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BB---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 34)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BB_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BC---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BC---CBD.cs new file mode 100644 index 0000000..798de4b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BC---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 18)] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BC_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BC---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BC---CB_W.cs new file mode 100644 index 0000000..c37f7a8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BC---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BC_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BCJ---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BCJ---CB_W.cs new file mode 100644 index 0000000..792fba3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BCJ---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 594)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BCJ_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BCL---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BCL---CB_W.cs new file mode 100644 index 0000000..231c628 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BCL---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 598)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BCL_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BD---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BD---CBD.cs new file mode 100644 index 0000000..0c7face --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BD---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 19)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BD_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BD---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BD---CB_W.cs new file mode 100644 index 0000000..3f516eb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BD---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 38)] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BD_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BE---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BE---CBD.cs new file mode 100644 index 0000000..1c9a556 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BE---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0BE_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BE---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BE---CB_W.cs new file mode 100644 index 0000000..cf2c54a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BE---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 40)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BE_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BF---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BF---CBD.cs new file mode 100644 index 0000000..ef72ba4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BF---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 21)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BF_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BF---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BF---CB_W.cs new file mode 100644 index 0000000..964775d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BF---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 42)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0BF_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BG---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BG---CBD.cs new file mode 100644 index 0000000..d4f8980 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BG---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 22)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BG_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BH---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BH---CBD.cs new file mode 100644 index 0000000..940bc16 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BH---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 23)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0BH_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BI---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BI---CBD.cs new file mode 100644 index 0000000..7476420 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BI---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0BI_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BI---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BI---CB_W.cs new file mode 100644 index 0000000..cb5f87d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BI---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 48)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0BI_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BJ---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BJ---CBD.cs new file mode 100644 index 0000000..ff3a2b4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BJ---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 25)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0BJ_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BJ---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BJ---CB_W.cs new file mode 100644 index 0000000..3cd6937 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BJ---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 50)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0BJ_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BL---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BL---CBD.cs new file mode 100644 index 0000000..0e377c3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BL---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 27)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BL_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BL---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BL---CB_W.cs new file mode 100644 index 0000000..cfc87ca --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BL---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 54)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BL_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BM---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BM---CBD.cs new file mode 100644 index 0000000..4c83dd2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BM---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0BM_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BN---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BN---CBD.cs new file mode 100644 index 0000000..88dcdb1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BN---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 29)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0BN_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BN---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BN---CB_W.cs new file mode 100644 index 0000000..1c1b255 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BN---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 58)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0BN_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BO---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BO---CB_W.cs new file mode 100644 index 0000000..2ef923f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BO---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 60)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0BO_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BP---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BP---CB_W.cs new file mode 100644 index 0000000..5909a95 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0BP---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 62)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0BP_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CA---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CA---CB_W.cs new file mode 100644 index 0000000..3db3ded --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CA---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 64)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0CA_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CA-D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CA-D.cs new file mode 100644 index 0000000..b19c910 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CA-D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0CA_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CAA-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CAA-_W.cs new file mode 100644 index 0000000..a7701fe --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CAA-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1024)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0CAA_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CAJ-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CAJ-_W.cs new file mode 100644 index 0000000..f499529 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CAJ-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1042)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0CAJ_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CC---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CC---CB_W.cs new file mode 100644 index 0000000..cd3abe6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CC---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 68)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0CC_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CD---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CD---CB_W.cs new file mode 100644 index 0000000..fe6238f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CD---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 70)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0CD_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CE-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CE-_W.cs new file mode 100644 index 0000000..9421683 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CE-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 72)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0CE_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CF---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CF---CB_W.cs new file mode 100644 index 0000000..af711e0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CF---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 74)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0CF_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CH---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CH---CB_W.cs new file mode 100644 index 0000000..d46f6a1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CH---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 78)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0CH_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CJ---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CJ---CB_W.cs new file mode 100644 index 0000000..d0ed21f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CJ---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 82)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0CJ_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CK---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CK---CB_W.cs new file mode 100644 index 0000000..91830dc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CK---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 84)] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0CK_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CL---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CL---CB_W.cs new file mode 100644 index 0000000..407a437 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CL---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 86)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0CL_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CM---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CM---CB_W.cs new file mode 100644 index 0000000..05aa18f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CM---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 88)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0CM_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CN---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CN---CB_W.cs new file mode 100644 index 0000000..a7777ea --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CN---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 90)] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0CN_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CO---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CO---CB_W.cs new file mode 100644 index 0000000..90b770b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CO---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 92)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0CO_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CP---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CP---CB_W.cs new file mode 100644 index 0000000..8e636dc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0CP---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 94)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0CP_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DA---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DA---CB_W.cs new file mode 100644 index 0000000..5a4b0e2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DA---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 96)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0DA_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DB---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DB---CB_W.cs new file mode 100644 index 0000000..a3fc226 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DB---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 98)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0DB_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DC---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DC---CB_W.cs new file mode 100644 index 0000000..28f5f08 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DC---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 100)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0DC_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DD---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DD---CB_W.cs new file mode 100644 index 0000000..fbe5005 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DD---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 102)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0DD_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DE---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DE---CB_W.cs new file mode 100644 index 0000000..f609a53 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DE---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 104)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0DE_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DF---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DF---CB_W.cs new file mode 100644 index 0000000..a79a523 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DF---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 106)] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0DF_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DH---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DH---CB_W.cs new file mode 100644 index 0000000..01c6630 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DH---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 110)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0DH_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DI---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DI---CB_W.cs new file mode 100644 index 0000000..ec4acfa --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DI---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 112)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0DI_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DJ---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DJ---CB_W.cs new file mode 100644 index 0000000..648f9c4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DJ---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 114)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0DJ_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DK---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DK---CB_W.cs new file mode 100644 index 0000000..e556fab --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DK---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 116)] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0DK_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DL---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DL---CB_W.cs new file mode 100644 index 0000000..64aa3f0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DL---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 118)] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0DL_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DM---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DM---CB_W.cs new file mode 100644 index 0000000..848702f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DM---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 120)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0DM_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DM-D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DM-D.cs new file mode 100644 index 0000000..5fc8c81 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DM-D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 60)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0DM_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DN---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DN---CB_W.cs new file mode 100644 index 0000000..f366005 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DN---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 122)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0DN_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DO---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DO---CB_W.cs new file mode 100644 index 0000000..ca48914 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DO---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 124)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0DO_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DP---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DP---CB_W.cs new file mode 100644 index 0000000..c382bc6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0DP---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 126)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0DP_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA---CB_W.cs new file mode 100644 index 0000000..c93fc24 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 128)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0EA_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA-D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA-D.cs new file mode 100644 index 0000000..798e27c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA-D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 64)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0EA_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA-_W.cs new file mode 100644 index 0000000..78a155e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EA-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 128)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0EA_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EB---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EB---CB_W.cs new file mode 100644 index 0000000..7510399 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EB---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 130)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0EB_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EC---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EC---CB_W.cs new file mode 100644 index 0000000..f6d37d4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EC---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 132)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0EC_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0ED---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0ED---CB_W.cs new file mode 100644 index 0000000..2f969cb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0ED---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 134)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0ED_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EE---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EE---CB_W.cs new file mode 100644 index 0000000..867af12 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EE---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 136)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0EE_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EG---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EG---CB_W.cs new file mode 100644 index 0000000..6edd310 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EG---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 140)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0EG_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EH---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EH---CB_W.cs new file mode 100644 index 0000000..5b8d5e9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EH---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 142)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0EH_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EI---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EI---CB_W.cs new file mode 100644 index 0000000..25faa48 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EI---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 144)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0EI_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EJ---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EJ---CB_W.cs new file mode 100644 index 0000000..53e0ba1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EJ---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 146)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0EJ_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EK---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EK---CB_W.cs new file mode 100644 index 0000000..f95f2ab --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EK---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 148)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0EK_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EL---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EL---CB_W.cs new file mode 100644 index 0000000..0b4ad83 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EL---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 150)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0EL_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EM---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EM---CB_W.cs new file mode 100644 index 0000000..9c5f1c4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EM---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 152)] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0EM_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EN---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EN---CB_W.cs new file mode 100644 index 0000000..75e68df --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EN---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 154)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0EN_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EP---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EP---CB_W.cs new file mode 100644 index 0000000..01333b1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0EP---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 158)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0EP_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FA---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FA---CB_W.cs new file mode 100644 index 0000000..fc698af --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FA---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 160)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0FA_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FB---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FB---CB_W.cs new file mode 100644 index 0000000..44aadff --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FB---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 162)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0FB_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FC---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FC---CB_W.cs new file mode 100644 index 0000000..0d25518 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FC---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 164)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0FC_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FE---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FE---CB_W.cs new file mode 100644 index 0000000..d5ffb9f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FE---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 168)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0FE_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FG---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FG---CBD.cs new file mode 100644 index 0000000..e828ffc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FG---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 86)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0FG_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FH---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FH---CB_W.cs new file mode 100644 index 0000000..2467c31 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FH---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 174)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0FH_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FI---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FI---CB_W.cs new file mode 100644 index 0000000..7f15dd3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FI---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 176)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0FI_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FJ---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FJ---CB_W.cs new file mode 100644 index 0000000..8e6cb03 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FJ---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 178)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0FJ_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FK---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FK---CB_W.cs new file mode 100644 index 0000000..04147fc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FK---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 180)] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0FK_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FM---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FM---CBD.cs new file mode 100644 index 0000000..4042bf0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FM---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 92)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0FM_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FM---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FM---CB_W.cs new file mode 100644 index 0000000..a9b75a6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FM---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 184)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0FM_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FO---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FO---CB_W.cs new file mode 100644 index 0000000..9dabe67 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0FO---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 188)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0FO_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GE---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GE---CB_W.cs new file mode 100644 index 0000000..b795861 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GE---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 200)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0GE_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GG---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GG---CB_W.cs new file mode 100644 index 0000000..f3157ef --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GG---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 204)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0GG_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GJ---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GJ---CB_W.cs new file mode 100644 index 0000000..5c41285 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GJ---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 210)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0GJ_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GM-D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GM-D.cs new file mode 100644 index 0000000..1081fbe --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GM-D.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 108)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0GM_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GM-_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GM-_W.cs new file mode 100644 index 0000000..4f45849 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GM-_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 216)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0GM_0040_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GN---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GN---CB_W.cs new file mode 100644 index 0000000..7a86100 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0GN---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 218)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0GN_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HB---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HB---CB_W.cs new file mode 100644 index 0000000..37cceca --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HB---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 226)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0HB_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HH---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HH---CB_W.cs new file mode 100644 index 0000000..172fba0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HH---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 238)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0HH_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HL---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HL---CB_W.cs new file mode 100644 index 0000000..0e2eccc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0HL---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 246)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0HL_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0IH---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0IH---CBD.cs new file mode 100644 index 0000000..79bef43 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0IH---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 135)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0IH_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0JO---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0JO---CB_W.cs new file mode 100644 index 0000000..1677cee --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0JO---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 316)] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0JO_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L---CBD.cs new file mode 100644 index 0000000..45e1851 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 11)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L---CB_W.cs new file mode 100644 index 0000000..5e22df1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 22)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L-Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L-Q6AXXZ.cs new file mode 100644 index 0000000..86d52f4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0L-Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0L_0040Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0M---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0M---CBD.cs new file mode 100644 index 0000000..de56f65 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0M---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0M_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0M---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0M---CB_W.cs new file mode 100644 index 0000000..11719f3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0M---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0M_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N---CBD.cs new file mode 100644 index 0000000..d9511af --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 13)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0N_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N---CB_W.cs new file mode 100644 index 0000000..46951b9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 26)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024ArrayType_0024_0024_0024BY0N_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N-Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N-Q6AXXZ.cs new file mode 100644 index 0000000..7faf932 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0N-Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 52)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0N_0040Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O---CBD.cs new file mode 100644 index 0000000..695f437 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 14)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0O_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O---CB_W.cs new file mode 100644 index 0000000..fac8260 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0O_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O-Q6AXXZ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O-Q6AXXZ.cs new file mode 100644 index 0000000..99b1fc8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0O-Q6AXXZ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 56)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0O_0040Q6AXXZ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0P---CBD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0P---CBD.cs new file mode 100644 index 0000000..4d73cfd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0P---CBD.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 15)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024ArrayType_0024_0024_0024BY0P_0040_0024_0024CBD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0P---CB_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0P---CB_W.cs new file mode 100644 index 0000000..8198962 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-ArrayType---BY0P---CB_W.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 30)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024ArrayType_0024_0024_0024BY0P_0040_0024_0024CB_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--D.cs new file mode 100644 index 0000000..343963c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--D.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--E.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--E.cs new file mode 100644 index 0000000..7286cd1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--E.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--F.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--F.cs new file mode 100644 index 0000000..c7c9c11 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--F.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040F +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--G.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--G.cs new file mode 100644 index 0000000..2b2a1bd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--G.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040G +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--H.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--H.cs new file mode 100644 index 0000000..6584194 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--H.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040H +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--I.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--I.cs new file mode 100644 index 0000000..ef796d3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--I.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040I +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--J.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--J.cs new file mode 100644 index 0000000..5f276f2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--J.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040J +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--K.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--K.cs new file mode 100644 index 0000000..3e9998e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--K.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040K +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--M.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--M.cs new file mode 100644 index 0000000..ca94c49 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--M.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040M +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--N.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--N.cs new file mode 100644 index 0000000..7393204 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--N.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040N +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAD.cs new file mode 100644 index 0000000..1fee3fb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAD.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAE.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAE.cs new file mode 100644 index 0000000..7643f39 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAE.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAE +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAF.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAF.cs new file mode 100644 index 0000000..886b8f6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAF.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAF +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAG.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAG.cs new file mode 100644 index 0000000..0940d78 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAG.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAG +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAH.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAH.cs new file mode 100644 index 0000000..d61c44d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAH.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAH +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAI.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAI.cs new file mode 100644 index 0000000..4403392 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAI.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAI +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAJ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAJ.cs new file mode 100644 index 0000000..b064ad4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAJ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAJ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAK.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAK.cs new file mode 100644 index 0000000..a859b47 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAK.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAK +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAM.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAM.cs new file mode 100644 index 0000000..de8ca49 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAM.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAM +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAN.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAN.cs new file mode 100644 index 0000000..ae11bc2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAN.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAN +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPAUIDispatch--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPAUIDispatch--.cs new file mode 100644 index 0000000..0ed9549 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPAUIDispatch--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPAUIUnknown--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPAUIUnknown--.cs new file mode 100644 index 0000000..4b08711 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPAUIUnknown--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPA_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPA_W.cs new file mode 100644 index 0000000..702168f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAPA_W.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAPA_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PATtagCY--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PATtagCY--.cs new file mode 100644 index 0000000..53ee731 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PATtagCY--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PATtagCY_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAUIDispatch--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAUIDispatch--.cs new file mode 100644 index 0000000..3d9e60c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAUIDispatch--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAUIDispatch_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAUIUnknown--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAUIUnknown--.cs new file mode 100644 index 0000000..5887673 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PAUIUnknown--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PAUIUnknown_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_J.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_J.cs new file mode 100644 index 0000000..1398c50 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_J.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PA_J +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_K.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_K.cs new file mode 100644 index 0000000..8258d05 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_K.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PA_K +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_W.cs new file mode 100644 index 0000000..deb7496 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--PA_W.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040PA_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--TtagCY--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--TtagCY--.cs new file mode 100644 index 0000000..f5817c7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--TtagCY--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040TtagCY_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--_J.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--_J.cs new file mode 100644 index 0000000..41e6459 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--_J.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040_J +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--_K.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--_K.cs new file mode 100644 index 0000000..c68f05a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-PQtagVARIANT--_K.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024PQtagVARIANT_0040_0040_K +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--D.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--D.cs new file mode 100644 index 0000000..f975164 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--D.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040D +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--E.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--E.cs new file mode 100644 index 0000000..7da2d22 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--E.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--F.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--F.cs new file mode 100644 index 0000000..242f678 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--F.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040F +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--G.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--G.cs new file mode 100644 index 0000000..0b0a6e1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--G.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040G +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--H.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--H.cs new file mode 100644 index 0000000..358ffef --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--H.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040H +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--I.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--I.cs new file mode 100644 index 0000000..5d25f9c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--I.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040I +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--J.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--J.cs new file mode 100644 index 0000000..55ca522 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--J.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040J +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--K.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--K.cs new file mode 100644 index 0000000..0d4f2cb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--K.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040K +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--M.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--M.cs new file mode 100644 index 0000000..b547a92 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--M.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040M +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--N.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--N.cs new file mode 100644 index 0000000..ccdd0b8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--N.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040N +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAD.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAD.cs new file mode 100644 index 0000000..4df2f92 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAD.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAD +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAE.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAE.cs new file mode 100644 index 0000000..c932e61 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAE.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAE +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAF.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAF.cs new file mode 100644 index 0000000..a209fc0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAF.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAF +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAG.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAG.cs new file mode 100644 index 0000000..2c81e2d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAG.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAG +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAH.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAH.cs new file mode 100644 index 0000000..0767105 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAH.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAH +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAI.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAI.cs new file mode 100644 index 0000000..21cad49 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAI.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAI +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAJ.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAJ.cs new file mode 100644 index 0000000..70705ef --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAJ.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAJ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAK.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAK.cs new file mode 100644 index 0000000..499f48e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAK.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAK +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAM.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAM.cs new file mode 100644 index 0000000..dee0a0f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAM.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAM +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAN.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAN.cs new file mode 100644 index 0000000..f61cb36 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAN.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAN +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPAUIDispatch--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPAUIDispatch--.cs new file mode 100644 index 0000000..db48b46 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPAUIDispatch--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPAUIUnknown--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPAUIUnknown--.cs new file mode 100644 index 0000000..813e470 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPAUIUnknown--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPA_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPA_W.cs new file mode 100644 index 0000000..b927065 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAPA_W.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PATtagCY--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PATtagCY--.cs new file mode 100644 index 0000000..9731cd2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PATtagCY--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAUIDispatch--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAUIDispatch--.cs new file mode 100644 index 0000000..a312e0e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAUIDispatch--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAUIUnknown--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAUIUnknown--.cs new file mode 100644 index 0000000..d1bdb50 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PAUIUnknown--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_J.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_J.cs new file mode 100644 index 0000000..e077f56 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_J.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PA_J +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_K.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_K.cs new file mode 100644 index 0000000..265d71c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_K.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PA_K +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_W.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_W.cs new file mode 100644 index 0000000..c41a344 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--PA_W.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040PA_W +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--TtagCY--.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--TtagCY--.cs new file mode 100644 index 0000000..f243e1b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--TtagCY--.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--_J.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--_J.cs new file mode 100644 index 0000000..5798a97 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--_J.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040_J +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--_K.cs b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--_K.cs new file mode 100644 index 0000000..f5b9de5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CppImplementationDetails-/-PTMType-QQtagVARIANT--_K.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCppImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024PTMType_0024QQtagVARIANT_0040_0040_K +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/AtExitLock.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/AtExitLock.cs new file mode 100644 index 0000000..3b672ce --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/AtExitLock.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCrtImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct AtExitLock +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/DefaultDomain.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/DefaultDomain.cs new file mode 100644 index 0000000..301e442 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/DefaultDomain.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCrtImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct DefaultDomain +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/Exception.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/Exception.cs new file mode 100644 index 0000000..4449f4d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/Exception.cs @@ -0,0 +1,23 @@ +using System; +using System.Runtime.Serialization; + +namespace _003CCrtImplementationDetails_003E; + +[Serializable] +internal class Exception : System.Exception +{ + protected Exception(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + public Exception(string message, System.Exception innerException) + : base(message, innerException) + { + } + + public Exception(string message) + : base(message) + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/LanguageSupport.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/LanguageSupport.cs new file mode 100644 index 0000000..dd6ab54 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/LanguageSupport.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCrtImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct LanguageSupport +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleLoadException.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleLoadException.cs new file mode 100644 index 0000000..c5371ce --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleLoadException.cs @@ -0,0 +1,25 @@ +using System; +using System.Runtime.Serialization; + +namespace _003CCrtImplementationDetails_003E; + +[Serializable] +internal class ModuleLoadException : System.Exception +{ + public const string Nested = "A nested exception occurred after the primary exception that caused the C++ module to fail to load.\n"; + + protected ModuleLoadException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + public ModuleLoadException(string message, System.Exception innerException) + : base(message, innerException) + { + } + + public ModuleLoadException(string message) + : base(message) + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleLoadExceptionHandlerException.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleLoadExceptionHandlerException.cs new file mode 100644 index 0000000..540f895 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleLoadExceptionHandlerException.cs @@ -0,0 +1,64 @@ +using System; +using System.Runtime.Serialization; +using System.Security; + +namespace _003CCrtImplementationDetails_003E; + +[Serializable] +internal class ModuleLoadExceptionHandlerException : ModuleLoadException +{ + private const string formatString = "\n{0}: {1}\n--- Start of primary exception ---\n{2}\n--- End of primary exception ---\n\n--- Start of nested exception ---\n{3}\n--- End of nested exception ---\n"; + + private System.Exception _003Cbacking_store_003ENestedException; + + public System.Exception NestedException + { + get + { + return _003Cbacking_store_003ENestedException; + } + set + { + _003Cbacking_store_003ENestedException = value; + } + } + + protected ModuleLoadExceptionHandlerException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + NestedException = (System.Exception)info.GetValue("NestedException", typeof(System.Exception)); + } + + public ModuleLoadExceptionHandlerException(string message, System.Exception innerException, System.Exception nestedException) + : base(message, innerException) + { + NestedException = nestedException; + } + + public override string ToString() + { + string text = ((InnerException == null) ? string.Empty : InnerException.ToString()); + string text2 = ((NestedException == null) ? string.Empty : NestedException.ToString()); + object[] array = new object[4] + { + GetType(), + null, + null, + null + }; + string text3 = ((Message == null) ? string.Empty : Message); + array[1] = text3; + string text4 = ((text == null) ? string.Empty : text); + array[2] = text4; + string text5 = ((text2 == null) ? string.Empty : text2); + array[3] = text5; + return string.Format("\n{0}: {1}\n--- Start of primary exception ---\n{2}\n--- End of primary exception ---\n\n--- Start of nested exception ---\n{3}\n--- End of nested exception ---\n", array); + } + + [SecurityCritical] + public override void GetObjectData(SerializationInfo info, StreamingContext context) + { + base.GetObjectData(info, context); + info.AddValue("NestedException", NestedException, typeof(System.Exception)); + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleUninitializer.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleUninitializer.cs new file mode 100644 index 0000000..1f1b823 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ModuleUninitializer.cs @@ -0,0 +1,80 @@ +using System; +using System.Collections; +using System.Runtime.CompilerServices; +using System.Runtime.ConstrainedExecution; +using System.Security; +using System.Threading; + +namespace _003CCrtImplementationDetails_003E; + +internal class ModuleUninitializer : Stack +{ + private static object @lock = new object(); + + internal static ModuleUninitializer _ModuleUninitializer = new ModuleUninitializer(); + + [SecuritySafeCritical] + internal void AddHandler(EventHandler handler) + { + bool lockTaken = false; + RuntimeHelpers.PrepareConstrainedRegions(); + try + { + RuntimeHelpers.PrepareConstrainedRegions(); + Monitor.Enter(@lock, ref lockTaken); + RuntimeHelpers.PrepareDelegate(handler); + Push(handler); + } + finally + { + if (lockTaken) + { + Monitor.Exit(@lock); + } + } + } + + [SecuritySafeCritical] + private ModuleUninitializer() + { + EventHandler value = SingletonDomainUnload; + AppDomain.CurrentDomain.DomainUnload += value; + AppDomain.CurrentDomain.ProcessExit += value; + } + + [PrePrepareMethod] + [SecurityCritical] + private void SingletonDomainUnload(object source, EventArgs arguments) + { + bool lockTaken = false; + RuntimeHelpers.PrepareConstrainedRegions(); + try + { + RuntimeHelpers.PrepareConstrainedRegions(); + Monitor.Enter(@lock, ref lockTaken); + IEnumerator enumerator = GetEnumerator(); + try + { + while (enumerator.MoveNext()) + { + ((EventHandler)enumerator.Current)(source, arguments); + } + } + finally + { + IEnumerator enumerator2 = enumerator; + if (enumerator is IDisposable disposable) + { + disposable.Dispose(); + } + } + } + finally + { + if (lockTaken) + { + Monitor.Exit(@lock); + } + } + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/NativeDll.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/NativeDll.cs new file mode 100644 index 0000000..e8eb2a5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/NativeDll.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCrtImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct NativeDll +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/OpenMPWithMultipleAppdomainsException.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/OpenMPWithMultipleAppdomainsException.cs new file mode 100644 index 0000000..623d08b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/OpenMPWithMultipleAppdomainsException.cs @@ -0,0 +1,17 @@ +using System; +using System.Runtime.Serialization; + +namespace _003CCrtImplementationDetails_003E; + +[Serializable] +internal class OpenMPWithMultipleAppdomainsException : System.Exception +{ + protected OpenMPWithMultipleAppdomainsException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + public OpenMPWithMultipleAppdomainsException() + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/Progress.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/Progress.cs new file mode 100644 index 0000000..6d5dc90 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/Progress.cs @@ -0,0 +1,22 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCrtImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct Progress +{ + [CLSCompliant(false)] + [MiscellaneousBits(64)] + [DebugInfoInPDB] + [NativeCppClass] + public enum State + { + + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ThisModule.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ThisModule.cs new file mode 100644 index 0000000..71b2257 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/ThisModule.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCrtImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct ThisModule +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/TriBool.cs b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/TriBool.cs new file mode 100644 index 0000000..5f89076 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-CrtImplementationDetails-/TriBool.cs @@ -0,0 +1,22 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace _003CCrtImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct TriBool +{ + [MiscellaneousBits(64)] + [CLSCompliant(false)] + [NativeCppClass] + [DebugInfoInPDB] + public enum State + { + + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/-Module-.cs b/analysis/decompiled/aaMxDataConsumer/-Module-.cs new file mode 100644 index 0000000..cebac6d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-Module-.cs @@ -0,0 +1,11944 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.ConstrainedExecution; +using System.Runtime.ExceptionServices; +using System.Runtime.InteropServices; +using System.Security; +using System.Security.Permissions; +using System.Threading; +using _003CCppImplementationDetails_003E; +using _003CCrtImplementationDetails_003E; +using _003FA0x6ea962a9; +using ATL; +using ATL._003CAtlImplementationDetails_003E; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Contract; +using ArchestrAServices.Common; +using Define_the_symbol__ATL_MIXED; +using Inconsistent_definition_of_symbol__ATL_MIXED; +using com_eh; +using std; + +internal class _003CModule_003E +{ + internal static _0024ArrayType_0024_0024_0024BY0N_0040_0024_0024CB_W _003F_003F_C_0040_1BK_0040EDKOLFBJ_0040_003F_0024AAO_003F_0024AAL_003F_0024AAE_003F_0024AAA_003F_0024AAU_003F_0024AAT_003F_0024AA3_003F_0024AA2_003F_0024AA_003F4_003F_0024AAD_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024AA_0040/* Not supported: data(4F 00 4C 00 45 00 41 00 55 00 54 00 33 00 32 00 2E 00 44 00 4C 00 4C 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BJ_0040_0024_0024CBD _003F_003F_C_0040_0BJ_0040CNLFOMHB_0040UnRegisterTypeLibForUser_003F_0024AA_0040/* Not supported: data(55 6E 52 65 67 69 73 74 65 72 54 79 70 65 4C 69 62 46 6F 72 55 73 65 72 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BH_0040_0024_0024CBD _003F_003F_C_0040_0BH_0040LBOMMKPJ_0040RegisterTypeLibForUser_003F_0024AA_0040/* Not supported: data(52 65 67 69 73 74 65 72 54 79 70 65 4C 69 62 46 6F 72 55 73 65 72 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BE_0040_0024_0024CB_W _003F_003F_C_0040_1CI_0040KPMALOMG_0040_003F_0024AAI_003F_0024AAD_003F_0024AAi_003F_0024AAs_003F_0024AAp_003F_0024AAa_003F_0024AAt_003F_0024AAc_003F_0024AAh_003F_0024AA_003F5_003F_0024AAe_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AA_003F_0024CD_003F_0024AA_003F_0024CF_003F_0024AAd_003F_0024AA_003F_0024AA_0040/* Not supported: data(49 00 44 00 69 00 73 00 70 00 61 00 74 00 63 00 68 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 23 00 25 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BF_0040_0024_0024CB_W _003F_003F_C_0040_1CK_0040DOIMBAJG_0040_003F_0024AAU_003F_0024AAn_003F_0024AAk_003F_0024AAn_003F_0024AAo_003F_0024AAw_003F_0024AAn_003F_0024AA_003F5_003F_0024AAe_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AA0_003F_0024AAx_003F_0024AA_003F_0024CF_003F_0024AA0_003F_0024AAl_003F_0024AAX_003F_0024AA_003F_0024AA_0040/* Not supported: data(55 00 6E 00 6B 00 6E 00 6F 00 77 00 6E 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 30 00 78 00 25 00 30 00 6C 00 58 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0M_0040_0024_0024CB_W _003F_003F_C_0040_1BI_0040NFCPJLAG_0040_003F_0024AAI_003F_0024AAn_003F_0024AAs_003F_0024AAt_003F_0024AAa_003F_0024AAl_003F_0024AAl_003F_0024AAP_003F_0024AAa_003F_0024AAt_003F_0024AAh_003F_0024AA_003F_0024AA_0040/* Not supported: data(49 00 6E 00 73 00 74 00 61 00 6C 00 6C 00 50 00 61 00 74 00 68 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY01_0024_0024CB_W _003F_003F_C_0040_13FPGAJAPJ_0040_003F_0024AA_003F2_003F_0024AA_003F_0024AA_0040/* Not supported: data(5C 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0O_0040_0024_0024CB_W _003F_003F_C_0040_1BM_0040HGNMANJP_0040_003F_0024AAL_003F_0024AAo_003F_0024AAg_003F_0024AAg_003F_0024AAe_003F_0024AAr_003F_0024AAD_003F_0024AAL_003F_0024AAL_003F_0024AA_003F4_003F_0024AAd_003F_0024AAl_003F_0024AAl_003F_0024AA_003F_0024AA_0040/* Not supported: data(4C 00 6F 00 67 00 67 00 65 00 72 00 44 00 4C 00 4C 00 2E 00 64 00 6C 00 6C 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY08_0024_0024CBD _003F_003F_C_0040_08IFIPMOHA_0040LOGSTART_003F_0024AA_0040/* Not supported: data(4C 4F 47 53 54 41 52 54 00) */; + + internal static _0024ArrayType_0024_0024_0024BY07_0024_0024CBD _003F_003F_C_0040_07LOFAHCDH_0040LOGSTOP_003F_0024AA_0040/* Not supported: data(4C 4F 47 53 54 4F 50 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CBD _003F_003F_C_0040_0BA_0040MPEPPNLK_0040SETIDENTITYNAME_003F_0024AA_0040/* Not supported: data(53 45 54 49 44 45 4E 54 49 54 59 4E 41 4D 45 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CBD _003F_003F_C_0040_0BA_0040NHIGJIIM_0040ADDINSTANCENAME_003F_0024AA_0040/* Not supported: data(41 44 44 49 4E 53 54 41 4E 43 45 4E 41 4D 45 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BD_0040_0024_0024CBD _003F_003F_C_0040_0BD_0040ILCNCFAH_0040REMOVEINSTANCENAME_003F_0024AA_0040/* Not supported: data(52 45 4D 4F 56 45 49 4E 53 54 41 4E 43 45 4E 41 4D 45 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BE_0040_0024_0024CBD _003F_003F_C_0040_0BE_0040FILCLPDE_0040REMOVEINSTANCENAME1_003F_0024AA_0040/* Not supported: data(52 45 4D 4F 56 45 49 4E 53 54 41 4E 43 45 4E 41 4D 45 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CBD _003F_003F_C_0040_0BA_0040KCFEFNI_0040REGISTERLOGFLAG_003F_0024AA_0040/* Not supported: data(52 45 47 49 53 54 45 52 4C 4F 47 46 4C 41 47 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BC_0040_0024_0024CBD _003F_003F_C_0040_0BC_0040ELGEGIFK_0040REGISTERLOGFLAGEX_003F_0024AA_0040/* Not supported: data(52 45 47 49 53 54 45 52 4C 4F 47 46 4C 41 47 45 58 00) */; + + internal static _0024ArrayType_0024_0024_0024BY08_0024_0024CBD _003F_003F_C_0040_08NPEILFIC_0040LOGERROR_003F_0024AA_0040/* Not supported: data(4C 4F 47 45 52 52 4F 52 00) */; + + internal static _0024ArrayType_0024_0024_0024BY09_0024_0024CBD _003F_003F_C_0040_09MFDEKNAL_0040LOGERROR1_003F_0024AA_0040/* Not supported: data(4C 4F 47 45 52 52 4F 52 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CBD _003F_003F_C_0040_0L_0040KFFCFCKB_0040LOGWARNING_003F_0024AA_0040/* Not supported: data(4C 4F 47 57 41 52 4E 49 4E 47 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0M_0040_0024_0024CBD _003F_003F_C_0040_0M_0040GHCJMGJO_0040LOGWARNING1_003F_0024AA_0040/* Not supported: data(4C 4F 47 57 41 52 4E 49 4E 47 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY07_0024_0024CBD _003F_003F_C_0040_07GJCPHPPO_0040LOGINFO_003F_0024AA_0040/* Not supported: data(4C 4F 47 49 4E 46 4F 00) */; + + internal static _0024ArrayType_0024_0024_0024BY08_0024_0024CBD _003F_003F_C_0040_08JMDBPHNG_0040LOGINFO1_003F_0024AA_0040/* Not supported: data(4C 4F 47 49 4E 46 4F 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY08_0024_0024CBD _003F_003F_C_0040_08FJPHOBDP_0040LOGTRACE_003F_0024AA_0040/* Not supported: data(4C 4F 47 54 52 41 43 45 00) */; + + internal static _0024ArrayType_0024_0024_0024BY09_0024_0024CBD _003F_003F_C_0040_09HAGCNNGO_0040LOGTRACE1_003F_0024AA_0040/* Not supported: data(4C 4F 47 54 52 41 43 45 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0N_0040_0024_0024CBD _003F_003F_C_0040_0N_0040CLGGFCLK_0040LOGSTARTSTOP_003F_0024AA_0040/* Not supported: data(4C 4F 47 53 54 41 52 54 53 54 4F 50 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0O_0040_0024_0024CBD _003F_003F_C_0040_0O_0040ONMCDLHC_0040LOGSTARTSTOP1_003F_0024AA_0040/* Not supported: data(4C 4F 47 53 54 41 52 54 53 54 4F 50 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0N_0040_0024_0024CBD _003F_003F_C_0040_0N_0040HFGKCDEH_0040LOGENTRYEXIT_003F_0024AA_0040/* Not supported: data(4C 4F 47 45 4E 54 52 59 45 58 49 54 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0O_0040_0024_0024CBD _003F_003F_C_0040_0O_0040COJALJKC_0040LOGENTRYEXIT1_003F_0024AA_0040/* Not supported: data(4C 4F 47 45 4E 54 52 59 45 58 49 54 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BD_0040_0024_0024CBD _003F_003F_C_0040_0BD_0040EKMEGPHB_0040LOGTHREADSTARTSTOP_003F_0024AA_0040/* Not supported: data(4C 4F 47 54 48 52 45 41 44 53 54 41 52 54 53 54 4F 50 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BE_0040_0024_0024CBD _003F_003F_C_0040_0BE_0040OBBFICHH_0040LOGTHREADSTARTSTOP1_003F_0024AA_0040/* Not supported: data(4C 4F 47 54 48 52 45 41 44 53 54 41 52 54 53 54 4F 50 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY06_0024_0024CBD _003F_003F_C_0040_06BNOPOHKO_0040LOGSQL_003F_0024AA_0040/* Not supported: data(4C 4F 47 53 51 4C 00) */; + + internal static _0024ArrayType_0024_0024_0024BY07_0024_0024CBD _003F_003F_C_0040_07PHCOGGLK_0040LOGSQL1_003F_0024AA_0040/* Not supported: data(4C 4F 47 53 51 4C 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0O_0040_0024_0024CBD _003F_003F_C_0040_0O_0040DABOCFFK_0040LOGCONNECTION_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 4F 4E 4E 45 43 54 49 4F 4E 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0P_0040_0024_0024CBD _003F_003F_C_0040_0P_0040ENNDKBHN_0040LOGCONNECTION1_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 4F 4E 4E 45 43 54 49 4F 4E 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0M_0040_0024_0024CBD _003F_003F_C_0040_0M_0040FHLEMPNE_0040LOGCTORDTOR_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 54 4F 52 44 54 4F 52 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0N_0040_0024_0024CBD _003F_003F_C_0040_0N_0040EHLEKFLA_0040LOGCTORDTOR1_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 54 4F 52 44 54 4F 52 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0M_0040_0024_0024CBD _003F_003F_C_0040_0M_0040JJPIKHHL_0040LOGREFCOUNT_003F_0024AA_0040/* Not supported: data(4C 4F 47 52 45 46 43 4F 55 4E 54 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0N_0040_0024_0024CBD _003F_003F_C_0040_0N_0040BBDFHKB_0040LOGREFCOUNT1_003F_0024AA_0040/* Not supported: data(4C 4F 47 52 45 46 43 4F 55 4E 54 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY09_0024_0024CBD _003F_003F_C_0040_09JGONFHHO_0040LOGCUSTOM_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 55 53 54 4F 4D 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CBD _003F_003F_C_0040_0L_0040HBHGLGNO_0040LOGCUSTOM1_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 55 53 54 4F 4D 31 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CBD _003F_003F_C_0040_0L_0040FKFLOFBN_0040LOGCUSTOM2_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 55 53 54 4F 4D 32 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CBD _003F_003F_C_0040_0L_0040EDEANEFM_0040LOGCUSTOM3_003F_0024AA_0040/* Not supported: data(4C 4F 47 43 55 53 54 4F 4D 33 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CBD _003F_003F_C_0040_0L_0040CKBLACFO_0040GETLOGFLAG_003F_0024AA_0040/* Not supported: data(47 45 54 4C 4F 47 46 4C 41 47 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CBD _003F_003F_C_0040_0BA_0040PNFJIPKD_0040GETIDENTITYNAME_003F_0024AA_0040/* Not supported: data(47 45 54 49 44 45 4E 54 49 54 59 4E 41 4D 45 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CBD _003F_003F_C_0040_0BA_0040FLFOBGOM_0040GETINSTANCENAME_003F_0024AA_0040/* Not supported: data(47 45 54 49 4E 53 54 41 4E 43 45 4E 41 4D 45 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BF_0040_0024_0024CBD _003F_003F_C_0040_0BF_0040LBFMFPBC_0040REGISTERLOGGERCLIENT_003F_0024AA_0040/* Not supported: data(52 45 47 49 53 54 45 52 4C 4F 47 47 45 52 43 4C 49 45 4E 54 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BH_0040_0024_0024CBD _003F_003F_C_0040_0BH_0040BMJDDFKB_0040UNREGISTERLOGGERCLIENT_003F_0024AA_0040/* Not supported: data(55 4E 52 45 47 49 53 54 45 52 4C 4F 47 47 45 52 43 4C 49 45 4E 54 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CBD _003F_003F_C_0040_0L_0040MKNKIKJF_0040LOGFLAGLOG_003F_0024AA_0040/* Not supported: data(4C 4F 47 46 4C 41 47 4C 4F 47 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CB_W _003F_003F_C_0040_1CA_0040FHDNFEPA_0040_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAI_003F_0024AAn_003F_0024AAv_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAd_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 2D 00 20 00 49 00 6E 00 76 00 61 00 6C 00 69 00 64 00 20 00 4E 00 61 00 6D 00 65 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0P_0040_0024_0024CB_W _003F_003F_C_0040_1BO_0040OADAGIBE_0040_003F_0024AAL_003F_0024AAo_003F_0024AAg_003F_0024AAA_003F_0024AAl_003F_0024AAl_003F_0024AAF_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AAu_003F_0024AAr_003F_0024AAe_003F_0024AAs_003F_0024AA_003F_0024AA_0040/* Not supported: data(4C 00 6F 00 67 00 41 00 6C 00 6C 00 46 00 61 00 69 00 6C 00 75 00 72 00 65 00 73 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY02_0024_0024CB_W _003F_003F_C_0040_15GANGMFKL_0040_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024AA_0040/* Not supported: data(25 00 73 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY03_0024_0024CB_W _003F_003F_C_0040_17NBLPPKPK_0040_003F_0024AA_003F4_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040/* Not supported: data(2E 00 20 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0L_0040_0024_0024CB_W _003F_003F_C_0040_1BG_0040DPKOFGLD_0040_003F_0024AAC_003F_0024AAo_003F_0024AAu_003F_0024AAl_003F_0024AAd_003F_0024AA_003F5_003F_0024AAn_003F_0024AAo_003F_0024AAt_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040/* Not supported: data(43 00 6F 00 75 00 6C 00 64 00 20 00 6E 00 6F 00 74 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY05_0024_0024CB_W _003F_003F_C_0040_1M_0040LEFLHPII_0040_003F_0024AAF_003F_0024AAr_003F_0024AAo_003F_0024AAm_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040/* Not supported: data(46 00 72 00 6F 00 6D 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BD_0040_0024_0024CB_W _003F_003F_C_0040_1CG_0040MKBKEECM_0040_003F_0024AAU_003F_0024AAn_003F_0024AAe_003F_0024AAx_003F_0024AAp_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AAu_003F_0024AAr_003F_0024AAe_003F_0024AA_003F_0024AA_0040/* Not supported: data(55 00 6E 00 65 00 78 00 70 00 65 00 63 00 74 00 65 00 64 00 20 00 66 00 61 00 69 00 6C 00 75 00 72 00 65 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY01_0024_0024CB_W _003F_003F_C_0040_13DIBMAFH_0040_003F_0024AA_003F_0024CJ_003F_0024AA_003F_0024AA_0040/* Not supported: data(29 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY02_0024_0024CB_W _003F_003F_C_0040_15CMBHNMLL_0040_003F_0024AA_003F5_003F_0024AA_003F_0024CI_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 28 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY07_0024_0024CB_W _003F_003F_C_0040_1BA_0040FPNNNPCM_0040_003F_0024AA_003F5_003F_0024AAr_003F_0024AAa_003F_0024AAi_003F_0024AAs_003F_0024AAe_003F_0024AAd_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 72 00 61 00 69 00 73 00 65 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY07_0024_0024CB_W _003F_003F_C_0040_1BA_0040INIEBIMA_0040_003F_0024AA_003F5_003F_0024AAc_003F_0024AAa_003F_0024AAu_003F_0024AAg_003F_0024AAh_003F_0024AAt_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 63 00 61 00 75 00 67 00 68 00 74 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY07_0024_0024CB_W _003F_003F_C_0040_1BA_0040PNPNGKLM_0040_003F_0024AA_003F5_003F_0024AAl_003F_0024AAo_003F_0024AAg_003F_0024AAg_003F_0024AAe_003F_0024AAd_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 6C 00 6F 00 67 00 67 00 65 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY05_0024_0024CB_W _003F_003F_C_0040_1M_0040JNPJNLMI_0040_003F_0024AA_003F5_003F_0024AA_003F_0024CI_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 28 00 69 00 6E 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY04_0024_0024CB_W _003F_003F_C_0040_19OEAOONN_0040_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 69 00 6E 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY09_0024_0024CB_W _003F_003F_C_0040_1BE_0040BJLMEAOD_0040_003F_0024AA_003F5_003F_0024AAa_003F_0024AAt_003F_0024AA_003F5_003F_0024AAl_003F_0024AAi_003F_0024AAn_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040/* Not supported: data(20 00 61 00 74 00 20 00 6C 00 69 00 6E 00 65 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DA_0040_0024_0024CB_W _003F_003F_C_0040_1GA_0040IMPKENHL_0040_003F_0024AAF_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AA_003F5_003F_0024AAt_003F_0024AAo_003F_0024AA_003F5_003F_0024AAa_003F_0024AAl_003F_0024AAl_003F_0024AAo_003F_0024AAc_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAl_003F_0024AAd_003F_0024AA_003F5_003F_0024AAb_003F_0024AAy_003F_0024AAt_003F_0024AAe_003F_0024AAs_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAA_003F_0024AAA_0040/* Not supported: data(46 00 61 00 69 00 6C 00 20 00 74 00 6F 00 20 00 61 00 6C 00 6C 00 6F 00 63 00 61 00 74 00 65 00 20 00 25 00 6C 00 64 00 20 00 62 00 79 00 74 00 65 00 73 00 20 00 69 00 6E 00 20 00 41 00 41 00 43 00 6F 00 6D 00 42 00 53 00 54 00 52 00 3A 00 3A 00 43 00 6F 00 70 00 79 00 28 00 29 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FM_0040_0024_0024CBD _003F_003F_C_0040_0FM_0040JLBFLOGH_0040D_003F3_003F2BldSrc1_003F29_003F2s_003F2SharedComponents_003F2_0040/* Not supported: data(44 3A 5C 42 6C 64 53 72 63 31 5C 39 5C 73 5C 53 68 61 72 65 64 43 6F 6D 70 6F 6E 65 6E 74 73 5C 49 6E 74 65 72 6E 61 6C 5C 4D 61 67 65 6C 6C 61 6E 50 75 62 6C 69 63 5C 49 6E 63 6C 75 64 65 73 5C 43 6C 61 73 73 75 74 69 6C 69 74 69 65 73 5C 41 41 43 6F 6D 42 53 54 52 2E 68 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BI_0040_0024_0024CBD _003F_003F_C_0040_0BI_0040CFPLBAOH_0040invalid_003F5string_003F5position_003F_0024AA_0040/* Not supported: data(69 6E 76 61 6C 69 64 20 73 74 72 69 6E 67 20 70 6F 73 69 74 69 6F 6E 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040_0024_0024CBD _003F_003F_C_0040_0BA_0040JFNIOLAK_0040string_003F5too_003F5long_003F_0024AA_0040/* Not supported: data(73 74 72 69 6E 67 20 74 6F 6F 20 6C 6F 6E 67 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DJ_0040_0024_0024CB_W _003F_003F_C_0040_1HC_0040BNGLPIPF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAG_003F_0024AAe_003F_0024AAt_003F_0024AAI_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAA_003F_0024AAd_003F_0024AAa_003F_0024AAp_003F_0024AAt_003F_0024AAe_003F_0024AAr_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 47 00 65 00 74 00 49 00 44 00 61 00 74 00 61 00 41 00 64 00 61 00 70 00 74 00 65 00 72 00 20 00 50 00 72 00 6F 00 78 00 79 00 20 00 46 00 65 00 74 00 63 00 68 00 20 00 46 00 61 00 69 00 6C 00 65 00 64 00 20 00 27 00 25 00 73 00 27 00 00 00) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R17_003F0A_0040EA_0040_003F_0024_Iosb_0040H_0040std_0040_00408/* Not supported: data(74 06 0B 10 00 00 00 00 08 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 04 36 0A 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_23 _003F_003F_R0_003FAVsystem_error_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 73 79 73 74 65 6D 5F 65 72 72 6F 72 40 73 74 64 40 40 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAN _003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040/*Field data (rva=0xb5ecc) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402P6MXXZA/* Not supported: data(32 00 00 06) */; + + internal static _0024ArrayType_0024_0024_0024BY0CE_0040_W _003FA0xda2128e9_002EszLoggerRegPath/* Not supported: data(53 00 4F 00 46 00 54 00 57 00 41 00 52 00 45 00 5C 00 41 00 72 00 63 00 68 00 65 00 73 00 74 00 72 00 41 00 5C 00 46 00 72 00 61 00 6D 00 65 00 77 00 6F 00 72 00 6B 00 5C 00 4C 00 6F 00 67 00 67 00 65 00 72 00 00 00) */; + + internal static uint _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051/*Field data (rva=0xb5ec4) could not be found in any section!*/; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024basic_ios_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(20 06 0B 10 02 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 74 35 0A 10) */; + + internal static _0024ArrayType_0024_0024_0024BY02Q6AXXZ _003F_003F_7bad_alloc_0040std_0040_00406B_0040/* Not supported: data(90 21 00 10 12 10 05 10 6C A6 06 10) */; + + internal static _0024ArrayType_0024_0024_0024BY02Q6AXXZ _003F_003F_7runtime_error_0040std_0040_00406B_0040/* Not supported: data(30 39 00 10 12 10 05 10 6C A6 06 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_75 _003F_003F_R0_003FAV_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 62 61 73 69 63 5F 73 74 72 69 6E 67 73 74 72 65 61 6D 40 5F 57 55 3F 24 63 68 61 72 5F 74 72 61 69 74 73 40 5F 57 40 73 74 64 40 40 56 3F 24 61 6C 6C 6F 63 61 74 6F 72 40 5F 57 40 32 40 40 73 74 64 40 40 00) */; + + internal static _0024_s__CatchableTypeArray_0024_extraBytes_8 _CTA2_003FAVcom_error_dbg_0040com_eh_0040_0040/* Not supported: data(02 00 00 00 0C 47 0A 10 28 47 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3ios_base_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 02 00 00 00 DC 35 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3system_error_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 03 00 00 00 58 33 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PA_K _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040/*Field data (rva=0xb5ed0) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402P6MXXZA/* Not supported: data(2E 00 00 06) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_72 _003F_003F_R0_003FAV_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 62 61 73 69 63 5F 73 74 72 69 6E 67 62 75 66 40 5F 57 55 3F 24 63 68 61 72 5F 74 72 61 69 74 73 40 5F 57 40 73 74 64 40 40 56 3F 24 61 6C 6C 6F 63 61 74 6F 72 40 5F 57 40 32 40 40 73 74 64 40 40 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040 _003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040/*Field data (rva=0xb5ed4) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402P6MXXZA/* Not supported: data(3A 00 00 06) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAK _003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040/*Field data (rva=0xb5ed8) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402P6MXXZA/* Not supported: data(2A 00 00 06) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_27 _003F_003F_R0_003FAVcom_error_dbg_0040com_eh_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 63 6F 6D 5F 65 72 72 6F 72 5F 64 62 67 40 63 6F 6D 5F 65 68 40 40 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PA_J _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040/*Field data (rva=0xb5edc) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402P6MXXZA/* Not supported: data(2C 00 00 06) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040exception_0040std_0040_00408/* Not supported: data(9C 01 0B 10 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 D0 32 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 04 00 00 00 9C 36 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024basic_iostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(00 00 00 00 03 00 00 00 09 00 00 00 F0 34 0A 10) */; + + internal static Thank_you Define_the_symbol__ATL_MIXED_002Eclash/*Field data (rva=0xb5ee0) could not be found in any section!*/; + + internal static _Please_define_it_the_same_throughout_your_project Inconsistent_definition_of_symbol__ATL_MIXED_002Eclash/*Field data (rva=0xb5ee1) could not be found in any section!*/; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_8 _003F_003F_R2runtime_error_0040std_0040_00408/* Not supported: data(18 33 0A 10 B4 32 0A 10 00) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00408/* Not supported: data(50 05 0B 10 09 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 6C 34 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040 _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040/*Field data (rva=0xb5ee4) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402P6MXXZA/* Not supported: data(36 00 00 06) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAF _003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040/*Field data (rva=0xb5ee8) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402P6MXXZA/* Not supported: data(20 00 00 06) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040E _003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040/*Field data (rva=0xb5eec) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402P6MXXZA/* Not supported: data(1C 00 00 06) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040A_00403EA_0040ios_base_0040std_0040_00408/* Not supported: data(58 06 0B 10 01 00 00 00 00 00 00 00 00 00 00 00 04 00 00 00 40 00 00 00 CC 35 0A 10) */; + + internal static _0024ArrayType_0024_0024_0024BY02Q6AXXZ _003F_003F_7failure_0040ios_base_0040std_0040_00406B_0040/* Not supported: data(C0 3A 00 10 12 10 05 10 6C A6 06 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(90 06 0B 10 03 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 8C 36 0A 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024basic_istream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(E4 05 0B 10 03 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 34 35 0A 10) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_16 _003F_003F_R2failure_0040ios_base_0040std_0040_00408/* Not supported: data(BC 33 0A 10 68 33 0A 10 18 33 0A 10 B4 32 0A 10 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAM _003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040/*Field data (rva=0xb5ef0) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402P6MXXZA/* Not supported: data(30 00 00 06) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_36 _003F_003F_R2_003F_0024basic_iostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(C4 34 0A 10 18 35 0A 10 58 35 0A 10 38 36 0A 10 54 36 0A 10 70 36 0A 10 58 35 0A 10 38 36 0A 10 54 36 0A 10 00) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_12 _003F_003F_R2_003F_0024basic_ios_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(94 35 0A 10 B0 35 0A 10 E8 35 0A 10 00) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_20 _003F_003F_R0_003FAVexception_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 65 78 63 65 70 74 69 6F 6E 40 73 74 64 40 40 00) */; + + internal unsafe static uint* _003FplfLogFailures_0040_003F1_003F_003FLogIfError_0040com_eh_0040_0040YAXJPB_W_0040Z_00404PAKA/*Field data (rva=0xb5ec8) could not be found in any section!*/; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_8 _003F_003F_R2bad_alloc_0040std_0040_00408/* Not supported: data(98 32 0A 10 B4 32 0A 10 00) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 02 00 00 00 FC 33 0A 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040bad_alloc_0040std_0040_00408/* Not supported: data(80 01 0B 10 01 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 7C 32 0A 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_52 _003F_003F_R0_003FAV_003F_0024basic_istream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 62 61 73 69 63 5F 69 73 74 72 65 61 6D 40 5F 57 55 3F 24 63 68 61 72 5F 74 72 61 69 74 73 40 5F 57 40 73 74 64 40 40 40 73 74 64 40 40 00) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00408/* Not supported: data(00 00 00 00 03 00 00 00 0A 00 00 00 7C 34 0A 10) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_16 _003F_003F_R2_003F_0024basic_istream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(18 35 0A 10 58 35 0A 10 38 36 0A 10 54 36 0A 10 00) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_19 _003F_003F_R0_003FAVios_base_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 69 6F 73 5F 62 61 73 65 40 73 74 64 40 40 00) */; + + internal static int ___0040_0040_PchSym__004000_0040UyowhixBUJUhUhixUncwzgzhvieviUncwzgzxlmhfnviUncwzgzxlmhfnviUivovzhvUxrwzgzevihrlmzwzkgviuzxglibOlyq_0040/*Field data (rva=0xb20a8) could not be found in any section!*/; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024_Iosb_0040H_0040std_0040_00408/* Not supported: data(74 06 0B 10 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 04 36 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PA_W _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040/*Field data (rva=0xb5ef4) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402P6MXXZA/* Not supported: data(33 00 00 06) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024_Iosb_0040H_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 01 00 00 00 14 36 0A 10) */; + + internal static _0024ArrayType_0024_0024_0024BY01Q6AXXZ _003F_003F_7_com_error_0040_00406B_0040/* Not supported: data(F0 32 00 10 6C A6 06 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040system_error_0040std_0040_00408/* Not supported: data(30 02 0B 10 02 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 48 33 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040M _003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040/*Field data (rva=0xb5ef8) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402P6MXXZA/* Not supported: data(2F 00 00 06) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024basic_ios_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 03 00 00 00 84 35 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024basic_streambuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 01 00 00 00 50 34 0A 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_27 _003F_003F_R0_003FAVfailure_0040ios_base_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 66 61 69 6C 75 72 65 40 69 6F 73 5F 62 61 73 65 40 73 74 64 40 40 00) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_17 _003F_003F_R0_003FAV_com_error_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 5F 63 6F 6D 5F 65 72 72 6F 72 40 40 00) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_16 _003F_003F_R2_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(B0 36 0A 10 58 35 0A 10 38 36 0A 10 54 36 0A 10 00) */; + + internal static _GUID IID_IAxWinHostWindow/* Not supported: data(50 20 EA B6 8A 04 D1 11 82 B9 00 C0 4F B9 94 2E) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4com_error_dbg_0040com_eh_0040_00406B_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 38 07 0B 10 E0 36 0A 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_24 _003F_003F_R0_003FAVruntime_error_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 72 75 6E 74 69 6D 65 5F 65 72 72 6F 72 40 73 74 64 40 40 00) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3runtime_error_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 02 00 00 00 0C 33 0A 10) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_8 _003F_003F_R2com_error_dbg_0040com_eh_0040_00408/* Not supported: data(FC 36 0A 10 4C 32 0A 10 00) */; + + internal static _GUID IID_IAxWinHostWindowLic/* Not supported: data(A8 BD 35 39 D9 4E 5C 49 86 50 E0 1F C1 E3 8A 4B) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_52 _003F_003F_R0_003FAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 62 61 73 69 63 5F 6F 73 74 72 65 61 6D 40 5F 57 55 3F 24 63 68 61 72 5F 74 72 61 69 74 73 40 5F 57 40 73 74 64 40 40 40 73 74 64 40 40 00) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4_com_error_0040_00406B_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 24 01 0B 10 34 32 0A 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00408/* Not supported: data(18 04 0B 10 01 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 EC 33 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040 _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040/*Field data (rva=0xb5efc) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402P6MXXZA/* Not supported: data(35 00 00 06) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_com_error_0040_00408/* Not supported: data(24 01 0B 10 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 34 32 0A 10) */; + + internal static _GUID CLSID_Registrar/* Not supported: data(3A 05 EC 44 0F 40 D0 11 9D CD 00 A0 C9 03 91 D3) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024basic_streambuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(68 04 0B 10 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 40 34 0A 10) */; + + internal static _0024ArrayType_0024_0024_0024BY01_0024_0024CBH _003F_003F_8_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00407B_003F_0024basic_istream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040_0040/* Not supported: data(00 00 00 00 60 00 00 00) */; + + internal static CAtlReleaseManagedClassFactories ATL_002E_AtlReleaseManagedClassFactories/*Field data (rva=0xb5f00) could not be found in any section!*/; + + internal unsafe static delegate* ATL_002E_003FA0xda2128e9_002E_AtlReleaseManagedClassFactories_0024initializer_0024/* Not supported: data(44 00 00 06) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_8 _003F_003F_R2ios_base_0040std_0040_00408/* Not supported: data(B0 35 0A 10 E8 35 0A 10 00) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 18 04 0B 10 EC 33 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3bad_alloc_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 02 00 00 00 8C 32 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040 _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040/*Field data (rva=0xb5f04) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402P6MXXZA/* Not supported: data(37 00 00 06) */; + + internal static _GUID IID_IInternalConnection/* Not supported: data(70 07 AD 72 9F 6A D1 11 BC EC 00 60 08 8F 44 4E) */; + + internal static _0024_s__CatchableTypeArray_0024_extraBytes_4 _CTA1_003FAVCAtlException_0040ATL_0040_0040/* Not supported: data(01 00 00 00 80 46 0A 10) */; + + internal static CWrapLogger _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A/*Field data (rva=0xb5df0) could not be found in any section!*/; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1BA_0040_003F0A_0040EA_0040_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(90 06 0B 10 03 00 00 00 10 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 8C 36 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040J _003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040/*Field data (rva=0xb5f08) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402P6MXXZA/* Not supported: data(27 00 00 06) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040I _003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040/*Field data (rva=0xb5f0c) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402P6MXXZA/* Not supported: data(25 00 00 06) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_com_error_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 01 00 00 00 44 32 0A 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_20 _003F_003F_R0_003FAVbad_alloc_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 62 61 64 5F 61 6C 6C 6F 63 40 73 74 64 40 40 00) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_40 _003F_003F_R2_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00408/* Not supported: data(A8 34 0A 10 C4 34 0A 10 18 35 0A 10 58 35 0A 10 38 36 0A 10 54 36 0A 10 70 36 0A 10 58 35 0A 10 38 36 0A 10 54 36 0A 10 00) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_4 _003F_003F_R2_003F_0024_Iosb_0040H_0040std_0040_00408/* Not supported: data(1C 36 0A 10 00) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_20 _003F_003F_R0_003FAV_003F_0024_Iosb_0040H_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 5F 49 6F 73 62 40 48 40 73 74 64 40 40 00) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_4 _003F_003F_R2exception_0040std_0040_00408/* Not supported: data(B4 32 0A 10 00) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040runtime_error_0040std_0040_00408/* Not supported: data(F8 01 0B 10 01 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 FC 32 0A 10) */; + + internal static _GUID IID_IAxWinAmbientDispatch/* Not supported: data(51 20 EA B6 8A 04 D1 11 82 B9 00 C0 4F B9 94 2E) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAG _003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040/*Field data (rva=0xb5f10) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402P6MXXZA/* Not supported: data(22 00 00 06) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3exception_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 01 00 00 00 E0 32 0A 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAD _003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040/*Field data (rva=0xb5f14) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402P6MXXZA/* Not supported: data(1D 00 00 06) */; + + internal static _0024_s__CatchableTypeArray_0024_extraBytes_8 _CTA2_003FAVbad_alloc_0040std_0040_0040/* Not supported: data(02 00 00 00 B8 46 0A 10 D4 46 0A 10) */; + + internal static _0024ArrayType_0024_0024_0024BY0BA_0040Q6AXXZ _003F_003F_7_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040/* Not supported: data(50 41 00 10 84 0E 05 10 8A 0E 05 10 C0 BB 01 10 00 A4 01 10 90 0E 05 10 00 A3 01 10 96 0E 05 10 9C 0E 05 10 A2 0E 05 10 90 A4 01 10 D0 A6 01 10 A8 0E 05 10 AE 0E 05 10 B4 0E 05 10 6C A6 06 10) */; + + internal static _GUID IID_IDocHostUIHandlerDispatch/* Not supported: data(F0 5A 5B 42 F1 65 D1 11 96 11 00 00 F8 1E 0D 0D) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040K _003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040/*Field data (rva=0xb5f18) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402P6MXXZA/* Not supported: data(29 00 00 06) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040com_error_dbg_0040com_eh_0040_00408/* Not supported: data(38 07 0B 10 01 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 E0 36 0A 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040failure_0040ios_base_0040std_0040_00408/* Not supported: data(94 03 0B 10 03 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 98 33 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3_003F_0024basic_istream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 04 00 00 00 44 35 0A 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040_003F_0024basic_iostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(A4 05 0B 10 08 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 E0 34 0A 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_53 _003F_003F_R0_003FAV_003F_0024basic_iostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 62 61 73 69 63 5F 69 6F 73 74 72 65 61 6D 40 5F 57 55 3F 24 63 68 61 72 5F 74 72 61 69 74 73 40 5F 57 40 73 74 64 40 40 40 73 74 64 40 40 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040_J _003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040/*Field data (rva=0xb5f1c) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402P6MXXZA/* Not supported: data(2B 00 00 06) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040H _003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040/*Field data (rva=0xb5f20) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402P6MXXZA/* Not supported: data(23 00 00 06) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040D _003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040/*Field data (rva=0xb5f24) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402P6MXXZA/* Not supported: data(1B 00 00 06) */; + + internal static _0024ArrayType_0024_0024_0024BY01Q6AXXZ _003F_003F_7_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040/* Not supported: data(D0 64 00 10 6C A6 06 10) */; + + internal static _GUID LIBID_ATLLib/* Not supported: data(35 05 EC 44 0F 40 D0 11 9D CD 00 A0 C9 03 91 D3) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R17A_00403EA_0040_003F_0024_Iosb_0040H_0040std_0040_00408/* Not supported: data(74 06 0B 10 00 00 00 00 08 00 00 00 00 00 00 00 04 00 00 00 40 00 00 00 04 36 0A 10) */; + + internal static _s__ThrowInfo _TI2_003FAVbad_alloc_0040std_0040_0040/* Not supported: data(00 00 00 00 80 8D 00 10 00 00 00 00 AC 46 0A 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3failure_0040ios_base_0040std_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 04 00 00 00 A8 33 0A 10) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_8 _003F_003F_R2_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00408/* Not supported: data(08 34 0A 10 24 34 0A 10 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040N _003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040/*Field data (rva=0xb5f28) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402P6MXXZA/* Not supported: data(31 00 00 06) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4bad_alloc_0040std_0040_00406B_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 80 01 0B 10 7C 32 0A 10) */; + + internal static _s__CatchableType _CT_003F_003F_R0_003FAVexception_0040std_0040_0040_00408_003F_003F0exception_0040std_0040_0040_0024_0024FQAE_0040ABV01_0040_0040Z12/* Not supported: data(00 00 00 00 9C 01 0B 10 00 00 00 00 FF FF FF FF 00 00 00 00 0C 00 00 00 18 10 05 10) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAJ _003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040/*Field data (rva=0xb5f2c) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402P6MXXZA/* Not supported: data(28 00 00 06) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040G _003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040/*Field data (rva=0xb5f30) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402P6MXXZA/* Not supported: data(21 00 00 06) */; + + internal static _0024ArrayType_0024_0024_0024BY01Q6AXXZ _003F_003F_7com_error_dbg_0040com_eh_0040_00406B_0040/* Not supported: data(B0 6C 00 10 6C A6 06 10) */; + + internal static _s__RTTIClassHierarchyDescriptor _003F_003F_R3com_error_dbg_0040com_eh_0040_00408/* Not supported: data(00 00 00 00 00 00 00 00 02 00 00 00 F0 36 0A 10) */; + + internal static _s__CatchableType _CT_003F_003F_R0_003FAV_com_error_0040_0040_00408_003F_003F0_com_error_0040_0040_0024_0024FQAE_0040ABV0_0040_0040Z16/* Not supported: data(00 00 00 00 24 01 0B 10 00 00 00 00 FF FF FF FF 00 00 00 00 10 00 00 00 B0 7E 01 10) */; + + internal static _s__ThrowInfo _TI1_003FAVCAtlException_0040ATL_0040_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 78 46 0A 10) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_4 _003F_003F_R2_com_error_0040_00408/* Not supported: data(4C 32 0A 10 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAE _003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040/*Field data (rva=0xb5f34) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402P6MXXZA/* Not supported: data(1E 00 00 06) */; + + internal static _GUID IID_IRegistrar/* Not supported: data(3B 05 EC 44 0F 40 D0 11 9D CD 00 A0 C9 03 91 D3) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040 _003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040/*Field data (rva=0xb5f38) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402P6MXXZA/* Not supported: data(39 00 00 06) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040/* Not supported: data(00 00 00 00 60 00 00 00 00 00 00 00 50 05 0B 10 6C 34 0A 10) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_12 _003F_003F_R2system_error_0040std_0040_00408/* Not supported: data(68 33 0A 10 18 33 0A 10 B4 32 0A 10 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040 _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040/*Field data (rva=0xb5f3c) could not be found in any section!*/; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402P6MXXZA/* Not supported: data(38 00 00 06) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4failure_0040ios_base_0040std_0040_00406B_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 94 03 0B 10 98 33 0A 10) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_54 _003F_003F_R0_003FAV_003F_0024basic_streambuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 62 61 73 69 63 5F 73 74 72 65 61 6D 62 75 66 40 5F 57 55 3F 24 63 68 61 72 5F 74 72 61 69 74 73 40 5F 57 40 73 74 64 40 40 40 73 74 64 40 40 00) */; + + internal static _s__CatchableType _CT_003F_003F_R0_003FAVCAtlException_0040ATL_0040_0040_004084/* Not supported: data(00 00 00 00 74 00 0B 10 00 00 00 00 FF FF FF FF 00 00 00 00 04 00 00 00 00 00 00 00) */; + + internal static _GUID IID_IAxWinAmbientDispatchEx/* Not supported: data(8B 77 D0 B2 99 AC 58 4C A5 C8 E7 72 4E 53 16 B5) */; + + internal static _s__CatchableType _CT_003F_003F_R0_003FAVcom_error_dbg_0040com_eh_0040_0040_00408_003F_003F0com_error_dbg_0040com_eh_0040_0040_0024_0024FQAE_0040ABV01_0040_0040Z28/* Not supported: data(00 00 00 00 38 07 0B 10 00 00 00 00 FF FF FF FF 00 00 00 00 1C 00 00 00 F0 DB 01 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040_003F0A_0040EA_0040ios_base_0040std_0040_00408/* Not supported: data(58 06 0B 10 01 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00 40 00 00 00 CC 35 0A 10) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402GB/* Not supported: data(02 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402GB/* Not supported: data(03 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402GB/* Not supported: data(11 40) */; + + internal unsafe static void* _pAtlReleaseManagedClassFactories/* Not supported: data(00 5F 0B 10) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402GB/* Not supported: data(09 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402GB/* Not supported: data(04 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402GB/* Not supported: data(10 00) */; + + internal static uint _003FATL_CREATE_OBJECT_0040CComApartment_0040ATL_0040_00402IA/*Field data (rva=0xb5de8) could not be found in any section!*/; + + internal static uint _003F_Max_0040_003F_0024AtlLimits_0040I_0040ATL_0040_00402IB/* Not supported: data(FF FF FF FF) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402GB/* Not supported: data(09 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402GB/* Not supported: data(0D 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402GB/* Not supported: data(13 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402GB/* Not supported: data(10 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402GB/* Not supported: data(08 40) */; + + internal static int _003F_Min_0040_003F_0024AtlLimits_0040H_0040ATL_0040_00402HB/* Not supported: data(00 00 00 80) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402GB/* Not supported: data(04 00) */; + + internal unsafe static _ATL_OBJMAP_ENTRY30* __pobjMapEntryLast/* Not supported: data(00 00 00 00) */; + + internal unsafe static _ATL_OBJMAP_ENTRY30* __pobjMapEntryFirst/* Not supported: data(00 00 00 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402GB/* Not supported: data(03 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAUtagVARIANT_0040_0040_0040ATL_0040_00402GB/* Not supported: data(0C 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402GB/* Not supported: data(13 40) */; + + internal static bool ATL_002E_003CAtlImplementationDetails_003E_002EDllModuleInitialized/*Field data (rva=0xb5de0) could not be found in any section!*/; + + internal static bool ATL_002E_003CAtlImplementationDetails_003E_002EComModuleInitialized/*Field data (rva=0xb5de1) could not be found in any section!*/; + + internal static CComModuleHelper ATL_002E_003CAtlImplementationDetails_003E_002EComModuleHelper/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402GB/* Not supported: data(15 40) */; + + internal static bool _003Fm_bInitFailed_0040CAtlBaseModule_0040ATL_0040_00402_NA/*Field data (rva=0xb5dbc) could not be found in any section!*/; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402GB/* Not supported: data(13 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402GB/* Not supported: data(03 00) */; + + internal static _GUID _003Fm_libid_0040CAtlModule_0040ATL_0040_00402U_GUID_0040_0040A/*Field data (rva=0xb5dd0) could not be found in any section!*/; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402GB/* Not supported: data(15 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402GB/* Not supported: data(12 40) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAI _003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040/*Field data (rva=0xb5f40) could not be found in any section!*/; + + internal static long _003F_Max_0040_003F_0024AtlLimits_0040_J_0040ATL_0040_00402_JB/* Not supported: data(FF FF FF FF FF FF FF 7F) */; + + internal unsafe static CAtlModule* ATL_002E_pAtlModule/*Field data (rva=0xb5dcc) could not be found in any section!*/; + + internal static ulong _003F_Min_0040_003F_0024AtlLimits_0040_K_0040ATL_0040_00402_KB/* Not supported: data(00 00 00 00 00 00 00 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402GB/* Not supported: data(05 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402GB/* Not supported: data(13 40) */; + + internal unsafe static delegate* unmanaged[Cdecl, Cdecl] ATL_002E_pPerfRegFunc/*Field data (rva=0xb5dc0) could not be found in any section!*/; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402GB/* Not supported: data(14 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402GB/* Not supported: data(02 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402GB/* Not supported: data(08 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402GB/* Not supported: data(0D 00) */; + + internal static bool ATL_002E_AtlRegisterPerUser/*Field data (rva=0xb5dc8) could not be found in any section!*/; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402GB/* Not supported: data(12 00) */; + + internal static ulong _003F_Max_0040_003F_0024AtlLimits_0040_K_0040ATL_0040_00402_KB/* Not supported: data(FF FF FF FF FF FF FF FF) */; + + internal static uint _003F_Max_0040_003F_0024AtlLimits_0040K_0040ATL_0040_00402KB/* Not supported: data(FF FF FF FF) */; + + internal unsafe static delegate* unmanaged[Cdecl, Cdecl] ATL_002E_pPerfUnRegFunc/*Field data (rva=0xb5dc4) could not be found in any section!*/; + + internal static uint _003F_Min_0040_003F_0024AtlLimits_0040K_0040ATL_0040_00402KB/* Not supported: data(00 00 00 00) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402GB/* Not supported: data(11 00) */; + + internal unsafe static CComModule* ATL_002E_pModule/*Field data (rva=0xb5de4) could not be found in any section!*/; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402GB/* Not supported: data(14 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402GB/* Not supported: data(06 00) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040/*Field data (rva=0xb5f44) could not be found in any section!*/; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040_K _003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040/*Field data (rva=0xb5f48) could not be found in any section!*/; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402GB/* Not supported: data(05 40) */; + + internal static long _003F_Min_0040_003F_0024AtlLimits_0040_J_0040ATL_0040_00402_JB/* Not supported: data(00 00 00 00 00 00 00 80) */; + + internal static uint _003F_Min_0040_003F_0024AtlLimits_0040I_0040ATL_0040_00402IB/* Not supported: data(00 00 00 00) */; + + internal static int _003F_Min_0040_003F_0024AtlLimits_0040J_0040ATL_0040_00402JB/* Not supported: data(00 00 00 80) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040PAH _003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040/*Field data (rva=0xb5f4c) could not be found in any section!*/; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402GB/* Not supported: data(06 40) */; + + internal static ushort _003FVT_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402GB/* Not supported: data(03 40) */; + + internal static int _003F_Max_0040_003F_0024AtlLimits_0040H_0040ATL_0040_00402HB/* Not supported: data(FF FF FF 7F) */; + + internal static int _003F_Max_0040_003F_0024AtlLimits_0040J_0040ATL_0040_00402JB/* Not supported: data(FF FF FF 7F) */; + + internal static _0024PTMType_0024QQtagVARIANT_0040_0040F _003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040/*Field data (rva=0xb5f50) could not be found in any section!*/; + + internal unsafe static IAtlAutoThreadModule* ATL_002E_pAtlAutoThreadModule/* Not supported: data(00 00 00 00) */; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402P6MXXZA/* Not supported: data(2D 00 00 06) */; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402P6MXXZA/* Not supported: data(1F 00 00 06) */; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402P6MXXZA/* Not supported: data(34 00 00 06) */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040_J_0040std_0040_00402HB/* Not supported: data(06 00 00 00) */; + + internal static _Iosb_003Cint_003E._Openmode _003Fbinary_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040_N_0040std_0040_00402HB/* Not supported: data(01 00 00 00) */; + + internal static _Iosb_003Cint_003E._Iostate _003F_Hardfail_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Iostate_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Iostate _003Feofbit_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Iostate_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040G_0040std_0040_00402HB/* Not supported: data(03 00 00 00) */; + + internal static _Iosb_003Cint_003E._Openmode _003Fapp_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fuppercase_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040E_0040std_0040_00402HB/* Not supported: data(02 00 00 00) */; + + internal static _Iosb_003Cint_003E._Openmode _003Ftrunc_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fskipws_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fbasefield_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003F_Stdio_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fleft_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040D_0040std_0040_00402HB/* Not supported: data(02 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fshowpos_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040O_0040std_0040_00402HB/* Not supported: data(09 00 00 00) */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040_K_0040std_0040_00402HB/* Not supported: data(06 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fadjustfield_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Iostate _003Fbadbit_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Iostate_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Openmode _003Fin_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040F_0040std_0040_00402HB/* Not supported: data(03 00 00 00) */; + + internal static bool _003Fvalue_0040_003F_0024integral_constant_0040_N_002400_0040tr1_0040std_0040_00402_NB/* Not supported: data(01) */; + + internal static bool _003Fvalue_0040_003F_0024integral_constant_0040_N_00240A_0040_0040tr1_0040std_0040_00402_NB/* Not supported: data(00) */; + + internal static uint _003Fvalue_0040_003F_0024integral_constant_0040I_00240A_0040_0040tr1_0040std_0040_00402IB/* Not supported: data(00 00 00 00) */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040J_0040std_0040_00402HB/* Not supported: data(05 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Foct_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fhex_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fshowbase_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fshowpoint_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003Fcollate_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(01 00 00 00) */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040M_0040std_0040_00402HB/* Not supported: data(07 00 00 00) */; + + internal static _Iosb_003Cint_003E._Seekdir _003Fbeg_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Seekdir_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Iostate _003Ffailbit_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Iostate_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040H_0040std_0040_00402HB/* Not supported: data(04 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Funitbuf_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fright_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040N_0040std_0040_00402HB/* Not supported: data(08 00 00 00) */; + + internal static int _003Fctype_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(02 00 00 00) */; + + internal static _Iosb_003Cint_003E._Openmode _003Fout_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Finternal_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Iostate _003Fgoodbit_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Iostate_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fboolalpha_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Openmode _003Fate_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040K_0040std_0040_00402HB/* Not supported: data(05 00 00 00) */; + + internal static int _003Fall_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(3F 00 00 00) */; + + internal static int _003Fnumeric_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(08 00 00 00) */; + + internal static _Iosb_003Cint_003E._Seekdir _003Fend_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Seekdir_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Openmode _003F_Noreplace_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Seekdir _003Fcur_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Seekdir_004012_0040B/* Not supported: data() */; + + internal static int _003Ftime_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(10 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fhexfloat_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003Fmessages_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(20 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Ffixed_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003Fnone_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(00 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Ffloatfield_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Openmode _003F_Nocreate_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Openmode_004012_0040B/* Not supported: data() */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fscientific_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003Fmonetary_0040_003F_0024_Locbase_0040H_0040std_0040_00402HB/* Not supported: data(04 00 00 00) */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040C_0040std_0040_00402HB/* Not supported: data(02 00 00 00) */; + + internal static _Iosb_003Cint_003E._Fmtflags _003Fdec_0040_003F_0024_Iosb_0040H_0040std_0040_00402W4_Fmtflags_004012_0040B/* Not supported: data() */; + + internal static int _003F_Rank_0040_003F_0024_Arithmetic_traits_0040I_0040std_0040_00402HB/* Not supported: data(04 00 00 00) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_48 _003F_003F_R0_003FAV_003F_0024basic_ios_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 3F 24 62 61 73 69 63 5F 69 6F 73 40 5F 57 55 3F 24 63 68 61 72 5F 74 72 61 69 74 73 40 5F 57 40 73 74 64 40 40 40 73 74 64 40 40 00) */; + + internal static _0024ArrayType_0024_0024_0024BY01_0024_0024CBH _003F_003F_8_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00407B_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040_0040/* Not supported: data(00 00 00 00 50 00 00 00) */; + + internal static _s__ThrowInfo _TI2_003FAVcom_error_dbg_0040com_eh_0040_0040/* Not supported: data(00 00 00 00 30 DB 01 10 00 00 00 00 00 47 0A 10) */; + + internal static _0024ArrayType_0024_0024_0024BY02Q6AXXZ _003F_003F_7system_error_0040std_0040_00406B_0040/* Not supported: data(90 39 00 10 12 10 05 10 6C A6 06 10) */; + + internal static _s__CatchableType _CT_003F_003F_R0_003FAVbad_alloc_0040std_0040_0040_00408_003F_003F0bad_alloc_0040std_0040_0040_0024_0024FQAE_0040ABV01_0040_0040Z12/* Not supported: data(00 00 00 00 80 01 0B 10 00 00 00 00 FF FF FF FF 00 00 00 00 0C 00 00 00 F0 92 00 10) */; + + internal static _s__RTTIBaseClassDescriptor2 _003F_003F_R1A_0040A_00403FA_0040_003F_0024basic_ios_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(20 06 0B 10 02 00 00 00 00 00 00 00 00 00 00 00 04 00 00 00 50 00 00 00 74 35 0A 10) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4runtime_error_0040std_0040_00406B_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 F8 01 0B 10 FC 32 0A 10) */; + + internal static _0024_s__RTTIBaseClassArray_0024_extraBytes_4 _003F_003F_R2_003F_0024basic_streambuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_0040std_0040_00408/* Not supported: data(24 34 0A 10 00) */; + + internal static _0024_TypeDescriptor_0024_extraBytes_24 _003F_003F_R0_003FAVCAtlException_0040ATL_0040_0040_00408/* Not supported: data(6C A6 06 10 00 00 00 00 2E 3F 41 56 43 41 74 6C 45 78 63 65 70 74 69 6F 6E 40 41 54 4C 40 40 00) */; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402P6MXXZA/* Not supported: data(26 00 00 06) */; + + internal static _s__RTTICompleteObjectLocator _003F_003F_R4system_error_0040std_0040_00406B_0040/* Not supported: data(00 00 00 00 00 00 00 00 00 00 00 00 30 02 0B 10 48 33 0A 10) */; + + internal unsafe static delegate* _003FA0xda2128e9_002E_003FpmField_0024initializer_0024_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402P6MXXZA/* Not supported: data(24 00 00 06) */; + + public unsafe static int** __unep_0040_003F_Bool_function_0040std_0040_0040_0024_0024FYAXABU_Bool_struct_00401_0040_0040Z/* Not supported: data(A0 20 00 10) */; + + public unsafe static int** __unep_0040_003Fdec_0040std_0040_0040_0024_0024FYAAAVios_base_00401_0040AAV21_0040_0040Z/* Not supported: data(D0 83 01 10) */; + + public unsafe static int** __unep_0040_003Fhex_0040std_0040_0040_0024_0024FYAAAVios_base_00401_0040AAV21_0040_0040Z/* Not supported: data(F0 83 01 10) */; + + private unsafe static int** __unep_0040_003FUnRegisterTypeLib_0040_0040_0024_0024J220YGJABU_GUID_0040_0040GGKW4tagSYSKIND_0040_0040_0040Z/* Not supported: data(0A 00 05 10) */; + + private unsafe static int** __unep_0040_003FRegisterTypeLib_0040_0040_0024_0024J212YGJPAUITypeLib_0040_0040PB_W1_0040Z/* Not supported: data(10 00 05 10) */; + + private unsafe static int** __unep_0040_003Fends_0040std_0040_0040_0024_0024FYAAAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040AAV21_0040_0040Z/* Not supported: data(BA 0E 05 10) */; + + internal static uint _003FBadCertificateIssuerRevocationUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 1C 80) */; + + internal static uint _003FBadUnknownResponse_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 09 80) */; + + internal static uint _003FBadTcpNotEnoughResources_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 81 80) */; + + internal static uint _003FBadTcpMessageTypeInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 7E 80) */; + + internal static _0024ArrayType_0024_0024_0024BY0CE_0040_W _003FA0xcc57d9b2_002EszLoggerRegPath/* Not supported: data(53 00 4F 00 46 00 54 00 57 00 41 00 52 00 45 00 5C 00 41 00 72 00 63 00 68 00 65 00 73 00 74 00 72 00 41 00 5C 00 46 00 72 00 61 00 6D 00 65 00 77 00 6F 00 72 00 6B 00 5C 00 4C 00 6F 00 67 00 67 00 65 00 72 00 00 00) */; + + internal static uint _003FBadTypeMismatch_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 74 80) */; + + internal static uint _003FBadWouldBlock_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B5 80) */; + + internal static uint _003FUncertainDataSubNormal_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A4 40) */; + + internal static uint _003FBadParentNodeIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 5B 80) */; + + internal static uint _003FBadBrowseDirectionInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 4D 80) */; + + internal static uint _003FUncertainLastUsableValue_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 90 40) */; + + internal static uint _003FBadSecureChannelTokenUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 87 80) */; + + internal static uint _003FBadSubscriptionIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 28 80) */; + + internal static uint _003FBadConditionAlreadyDisabled_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 98 80) */; + + internal static uint _003FBadIdentityChangeNotSupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C6 80) */; + + internal static uint _003FBadNodeAttributesInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 62 80) */; + + internal static uint _003FBadResponseTooLarge_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B9 80) */; + + internal static uint _003FBadCertificateUriInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 17 80) */; + + internal static uint _003FBadInvalidArgument_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 AB 80) */; + + internal static uint _003FGoodCallAgain_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A9 00) */; + + internal static uint _003FBadAggregateInvalidInputs_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D6 80) */; + + internal static uint _003FBadIndexRangeInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 36 80) */; + + internal static uint _003FBadAggregateNotSupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D5 80) */; + + internal static uint _003FGoodNonCriticalTimeout_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 AA 00) */; + + internal static uint _003FGoodEntryInserted_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A2 00) */; + + internal static uint _003FBadBrowseNameDuplicated_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 61 80) */; + + internal static uint _003FBadNotWritable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 3B 80) */; + + internal static uint _003FGoodCompletesAsynchronously_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 2E 00) */; + + internal static uint _003FBadWriteNotSupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 73 80) */; + + internal static uint _003FBadFilterNotAllowed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 45 80) */; + + internal static uint _003FBadTcpInternalError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 82 80) */; + + internal static uint _003FBadTcpSecureChannelUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 7F 80) */; + + internal static uint _003FBadNoDeleteRights_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 69 80) */; + + internal static uint _003FBadRequestCanceledByRequest_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 5A 80) */; + + internal static uint _003FBadEntryExists_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 9F 80) */; + + internal static uint _003FBadCertificateHostNameInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 16 80) */; + + internal static uint _003FBadExpectedStreamToBlock_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B4 80) */; + + internal static uint _003FBadWaitingForInitialData_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 32 80) */; + + internal static uint _003FBadSecurityChecksFailed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 13 80) */; + + internal static uint _003FBadReferenceNotAllowed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 5C 80) */; + + internal static uint _003FBadFilterLiteralInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C5 80) */; + + internal static uint _003FBadNoDataAvailable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B1 80) */; + + internal static uint _003FBadServerNotConnected_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 0D 80) */; + + internal static uint _003FBadMessageNotAvailable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 7B 80) */; + + internal static uint _003FBadConfigurationError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 89 80) */; + + internal static uint _003FBadInvalidTimestampArgument_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 BD 80) */; + + internal static uint _003FBadWaitingForResponse_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B2 80) */; + + internal static uint _003FBadContentFilterInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 48 80) */; + + internal static uint _003FBadViewIdUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 6B 80) */; + + internal static uint _003FBadServerNameMissing_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 50 80) */; + + internal static uint _003FBadSensorFailure_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 8C 80) */; + + internal static uint _003FUncertainNoCommunicationLastUsableValue_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 8F 40) */; + + internal static uint _003FBadConditionAlreadyShelved_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D1 80) */; + + internal static uint _003FBadBoundNotFound_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D7 80) */; + + internal static uint _003FBadCertificateIssuerRevoked_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 1E 80) */; + + internal static uint _003FBadInsufficientClientProfile_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 7C 80) */; + + internal static uint _003FUncertainEngineeringUnitsExceeded_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 94 40) */; + + internal static uint _003FBadCertificateRevocationUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 1B 80) */; + + internal static uint _003FBadOutOfMemory_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 03 80) */; + + internal static uint _003FBadSecurityPolicyRejected_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 55 80) */; + + internal static uint _003FBadViewTimestampInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C9 80) */; + + internal static uint _003FBadViewParameterMismatch_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 CA 80) */; + + internal static uint _003FBadMonitoringModeInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 41 80) */; + + internal static int ___0040_0040_PchSym__004000_0040UyowhixBUJUhUhixUncwzgzhvieviUncwzgzxlmhfnviUncwzgzxlmhfnviUivovzhvUxrwzgzevihrlmzwzkgvieBOlyq_0040/*Field data (rva=0xb6b48) could not be found in any section!*/; + + internal static uint _003FBadTimestampNotSupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A1 80) */; + + internal static uint _003FBadTypeDefinitionInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 63 80) */; + + internal static uint _003FBadSessionClosed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 26 80) */; + + internal static uint _003FBadEventNotAcknowledgeable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 BB 80) */; + + internal static uint _003FUncertainNotAllNodesAvailable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C0 40) */; + + internal static uint _003FBadSessionIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 25 80) */; + + internal static uint _003FBadStateNotActive_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 BF 80) */; + + internal static uint _003FUncertainSubNormal_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 95 40) */; + + internal static uint _003FBadSourceNodeIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 64 80) */; + + internal static uint _003FBadQueryTooComplex_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 6E 80) */; + + internal static uint _003FBadConditionBranchAlreadyAcked_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 CF 80) */; + + internal static uint _003FUncertainReferenceOutOfServer_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 6C 40) */; + + internal static uint _003FBadDataTypeIdUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 11 80) */; + + internal static uint _003FBadNodeClassInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 5F 80) */; + + internal static uint _003FBadConditionDisabled_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 99 80) */; + + internal static uint _003FBadCertificateTimeInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 14 80) */; + + internal static uint _003FBadRequestTimeout_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 85 80) */; + + internal static uint _003FBadEncodingLimitsExceeded_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 08 80) */; + + internal static uint _003FBadIndexRangeNoData_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 37 80) */; + + internal static uint _003FBadServerUriInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 4F 80) */; + + internal static uint _003FBadTooManyPublishRequests_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 78 80) */; + + internal static uint _003FBadSecureChannelClosed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 86 80) */; + + internal static uint _003FBadReferenceLocalOnly_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 68 80) */; + + internal static uint _003FBadRequestTypeInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 53 80) */; + + internal static uint _003FBadUserSignatureInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 57 80) */; + + internal static uint _003FUncertainSubstituteValue_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 91 40) */; + + internal static uint _003FBadHistoryOperationUnsupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 72 80) */; + + internal static uint _003FBadSecurityModeRejected_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 54 80) */; + + internal static uint _003FBadNoEntryExists_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A0 80) */; + + internal static uint _003FUncertainSensorNotAccurate_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 93 40) */; + + internal static uint _003FBadObjectDeleted_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 3F 80) */; + + internal static uint _003FBadDecodingError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 07 80) */; + + internal static uint _003FGoodNoData_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A5 00) */; + + internal static uint _003FBadInvalidTimestamp_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 23 80) */; + + internal static uint _003FBadNoMatch_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 6F 80) */; + + internal static uint _003FBadServerHalted_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 0E 80) */; + + internal static uint _003FBadNoCommunication_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 31 80) */; + + internal static uint _003FBadTooManySubscriptions_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 77 80) */; + + internal static uint _003FBadSecureChannelIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 22 80) */; + + internal static uint _003FBadDataEncodingInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 38 80) */; + + internal static uint _003FBadTcpEndpointUrlInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 83 80) */; + + internal static uint _003FBadNotTypeDefinition_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C8 80) */; + + internal static uint _003FBadBrowseNameInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 60 80) */; + + internal static uint _003FBadUserAccessDenied_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 1F 80) */; + + internal static uint _003FBadDialogNotActive_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 CD 80) */; + + internal static uint _003FBadAggregateListMismatch_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D4 80) */; + + internal static uint _003FBadRequestInterrupted_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 84 80) */; + + internal static uint _003FBadEventFilterInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 47 80) */; + + internal static uint _003FBadNotReadable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 3A 80) */; + + internal static uint _003FBadServiceUnsupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 0B 80) */; + + internal static uint _003FBadIdentityTokenInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 20 80) */; + + internal static uint _003FBadConnectionClosed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 AE 80) */; + + internal static uint _003FBadEventIdUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 9A 80) */; + + internal static uint _003FBadDisconnect_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 AD 80) */; + + internal static uint _003FBadFilterOperandCountMismatch_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C3 80) */; + + internal static uint _003FBadNoSubscription_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 79 80) */; + + internal static uint _003FBadMonitoredItemFilterUnsupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 44 80) */; + + internal static uint _003FBadMonitoredItemFilterInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 43 80) */; + + internal static uint _003FBadNotImplemented_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 40 80) */; + + internal static uint _003FBadOutOfService_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 8D 80) */; + + internal static uint _003FBadStructureMissing_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 46 80) */; + + internal static uint _003FBadProtocolVersionUnsupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 BE 80) */; + + internal static uint _003FBadDataLost_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 9D 80) */; + + internal static uint _003FBadFilterOperatorUnsupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C2 80) */; + + internal static uint _003FBadEndOfStream_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B0 80) */; + + internal static uint _003FBadMaxConnectionsReached_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B7 80) */; + + internal static uint _003FBadCertificateRevoked_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 1D 80) */; + + internal static uint _003FBadAttributeIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 35 80) */; + + internal static uint _003FBadSessionNotActivated_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 27 80) */; + + internal static uint _003FBadTcpMessageTooLarge_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 80 80) */; + + internal static uint _003FGoodMoreData_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A6 00) */; + + internal static uint _003FBadDeadbandFilterInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 8E 80) */; + + internal static uint _003FBadIdentityTokenRejected_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 21 80) */; + + internal static uint _003FBadRequestHeaderInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 2A 80) */; + + internal static uint _003FBadCertificateUseNotAllowed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 18 80) */; + + internal static uint _003FBadNodeNotInView_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 4E 80) */; + + internal static uint _003FBadNodeIdUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 34 80) */; + + internal static uint _003FBadOutOfRange_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 3C 80) */; + + internal static uint _003FBadApplicationSignatureInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 58 80) */; + + internal static uint _003FBadSequenceNumberInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 88 80) */; + + internal static uint _003FBadTargetNodeIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 65 80) */; + + internal static uint _003FUncertainReferenceNotDeleted_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 BC 40) */; + + internal static uint _003FBadInvalidSelfReference_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 67 80) */; + + internal static uint _003FGoodCommunicationEvent_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A7 00) */; + + internal static uint _003FBadTooManyOperations_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 10 80) */; + + internal static uint _003FBadNoData_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 9B 80) */; + + internal static uint _003FBadSyntaxError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B6 80) */; + + internal static uint _003FBadNoContinuationPoints_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 4B 80) */; + + internal static uint _003FBadNotConnected_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 8A 80) */; + + internal static uint _003FBadNodeIdExists_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 5E 80) */; + + internal static uint _003FBadCommunicationError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 05 80) */; + + internal static uint _003FBadConditionBranchAlreadyConfirmed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D0 80) */; + + internal static uint _003FBadFilterElementInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C4 80) */; + + internal static uint _003FBadOperationAbandoned_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B3 80) */; + + internal static uint _003FBadDiscoveryUrlMissing_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 51 80) */; + + internal static uint _003FBadCertificateIssuerTimeInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 15 80) */; + + internal static uint _003FBadNoValidCertificates_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 59 80) */; + + internal static uint _003FBadCertificateInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 12 80) */; + + internal static uint _003FBadHistoryOperationInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 71 80) */; + + internal static uint _003FBadRequestCanceledByClient_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 2C 80) */; + + internal static uint _003FBadMonitoredItemIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 42 80) */; + + internal static uint _003FBadMaxAgeInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 70 80) */; + + internal static uint _003FBadNotFound_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 3E 80) */; + + internal static uint _003FBadDuplicateReferenceNotAllowed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 66 80) */; + + internal static uint _003FBadTooManySessions_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 56 80) */; + + internal static uint _003FBadInvalidState_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 AF 80) */; + + internal static uint _003FGoodClamped_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 30 00) */; + + internal static uint _003FBadContinuationPointInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 4A 80) */; + + internal static uint _003FBadNotSupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 3D 80) */; + + internal static uint _003FBadConditionAlreadyEnabled_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 CC 80) */; + + internal static uint _003FBadInternalError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 02 80) */; + + internal static uint _003FBadRequestTooLarge_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 B8 80) */; + + internal static uint _003FBadNodeIdRejected_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 5D 80) */; + + internal static uint _003FBadCertificateIssuerUseNotAllowed_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 19 80) */; + + internal static uint _003FBadDataUnavailable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 9E 80) */; + + internal static uint _003FBadReferenceTypeIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 4C 80) */; + + internal static uint _003FBadFilterOperatorInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 C1 80) */; + + internal static uint _003FUncertainInitialValue_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 92 40) */; + + internal static uint _003FBadNodeIdInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 33 80) */; + + internal static uint _003FBadFilterOperandInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 49 80) */; + + internal static uint _003FBadCertificateUntrusted_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 1A 80) */; + + internal static uint _003FBadSequenceNumberUnknown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 7A 80) */; + + internal static uint _003FBadArgumentsMissing_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 76 80) */; + + internal static uint _003FBadRefreshInProgress_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 97 80) */; + + internal static uint _003FBadConnectionRejected_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 AC 80) */; + + internal static uint _003FBadTooManyMatches_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 6D 80) */; + + internal static uint _003FGood_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 00 00) */; + + internal static uint _003FBadUnexpectedError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 01 80) */; + + internal static uint _003FBadConditionNotShelved_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D2 80) */; + + internal static uint _003FBadNonceInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 24 80) */; + + internal static uint _003FGoodOverload_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 2F 00) */; + + internal static uint _003FBadSemaphoreFileMissing_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 52 80) */; + + internal static uint _003FGoodShutdownEvent_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A8 00) */; + + internal static uint _003FBadTimeout_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 0A 80) */; + + internal static uint _003FBad_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 00 80) */; + + internal static uint _003FBadViewVersionInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 CB 80) */; + + internal static uint _003FBadDataEncodingUnsupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 39 80) */; + + internal static uint _003FBadNothingToDo_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 0F 80) */; + + internal static uint _003FBadDeviceFailure_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 8B 80) */; + + internal static uint _003FGoodEntryReplaced_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 A3 00) */; + + internal static uint _003FBadDialogResponseInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 CE 80) */; + + internal static uint _003FBadTcpServerTooBusy_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 7D 80) */; + + internal static uint _003FBadTimestampsToReturnInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 2B 80) */; + + internal static uint _003FBadShutdown_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 0C 80) */; + + internal static uint _003FBadEncodingError_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 06 80) */; + + internal static uint _003FGoodLocalOverride_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 96 00) */; + + internal static uint _003FBadMethodInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 75 80) */; + + internal static uint _003FUncertain_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 00 40) */; + + internal static uint _003FBadResourceUnavailable_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 04 80) */; + + internal static uint _003FBadShelvingTimeoutOfRange_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D3 80) */; + + internal static uint _003FBadBoundNotSupported_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 D8 80) */; + + internal static uint _003FBadServerIndexInvalid_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 6A 80) */; + + internal static uint _003FGoodResultsMayBeIncomplete_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 BA 00) */; + + internal static uint _003FGoodSubscriptionTransferred_0040StatusCodes_0040_00402IB/* Not supported: data(00 00 2D 00) */; + + private unsafe static int** __unep_0040_003FUnRegisterTypeLib_0040_0040_0024_0024J220YGJABU_GUID_0040_0040GGKW4tagSYSKIND_0040_0040_0040Z/* Not supported: data(0A 00 05 10) */; + + private unsafe static int** __unep_0040_003FRegisterTypeLib_0040_0040_0024_0024J212YGJPAUITypeLib_0040_0040PB_W1_0040Z/* Not supported: data(10 00 05 10) */; + + private unsafe static int** __unep_0040_003Fends_0040std_0040_0040_0024_0024FYAAAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040AAV21_0040_0040Z/* Not supported: data(BA 0E 05 10) */; + + internal static _0024ArrayType_0024_0024_0024BY0CE_0040_W _003FA0x4ac3ab1c_002EszLoggerRegPath/* Not supported: data(53 00 4F 00 46 00 54 00 57 00 41 00 52 00 45 00 5C 00 41 00 72 00 63 00 68 00 65 00 73 00 74 00 72 00 41 00 5C 00 46 00 72 00 61 00 6D 00 65 00 77 00 6F 00 72 00 6B 00 5C 00 4C 00 6F 00 67 00 67 00 65 00 72 00 00 00) */; + + internal static int ___0040_0040_PchSym__004000_0040UyowhixBUJUhUhixUncwzgzhvieviUncwzgzxlmhfnviUncwzgzxlmhfnviUivovzhvUxrwzgzevihrlmzwzkgvieCOlyq_0040/*Field data (rva=0xbb004) could not be found in any section!*/; + + private unsafe static int** __unep_0040_003FUnRegisterTypeLib_0040_0040_0024_0024J220YGJABU_GUID_0040_0040GGKW4tagSYSKIND_0040_0040_0040Z/* Not supported: data(0A 00 05 10) */; + + private unsafe static int** __unep_0040_003FRegisterTypeLib_0040_0040_0024_0024J212YGJPAUITypeLib_0040_0040PB_W1_0040Z/* Not supported: data(10 00 05 10) */; + + private unsafe static int** __unep_0040_003Fends_0040std_0040_0040_0024_0024FYAAAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040AAV21_0040_0040Z/* Not supported: data(BA 0E 05 10) */; + + internal static _0024ArrayType_0024_0024_0024BY0EN_0040_0024_0024CB_W _003F_003F_C_0040_1JK_0040EOEIELEM_0040_003F_0024AAO_003F_0024AAn_003F_0024AAl_003F_0024AAy_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AAe_003F_0024AA_003F5_003F_0024AAp_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAo_003F_0024AAf_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAe_003F_0024AA_003F5_003F_0024AAO_003F_0024AAP_003F_0024AAC_003F_0024AAU_003F_0024AAA_003F_0024AA_003F5_003F_0024AAe_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_0040/* Not supported: data(4F 00 6E 00 6C 00 79 00 20 00 6F 00 6E 00 65 00 20 00 70 00 61 00 72 00 74 00 20 00 6F 00 66 00 20 00 74 00 68 00 65 00 20 00 4F 00 50 00 43 00 55 00 41 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 63 00 6F 00 64 00 65 00 20 00 69 00 73 00 20 00 62 00 65 00 69 00 6E 00 67 00 20 00 74 00 72 00 61 00 6E 00 73 00 6D 00 69 00 74 00 74 00 65 00 64 00 20 00 66 00 72 00 6F 00 6D 00 20 00 74 00 68 00 65 00 20 00 73 00 65 00 72 00 76 00 65 00 72 00 2E 00 2E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CF_0040_0024_0024CB_W _003F_003F_C_0040_1EK_0040KKDLLJGJ_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA_003F5_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AA_003F5_003F_0024AAs_003F_0024AAe_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAo_003F_0024AA_003F5_003F_0024AAn_003F_0024AAu_003F_0024AAl_003F_0024AAl_0040/* Not supported: data(53 00 74 00 61 00 74 00 75 00 73 00 55 00 70 00 64 00 61 00 74 00 65 00 72 00 20 00 53 00 74 00 61 00 74 00 75 00 73 00 20 00 73 00 65 00 74 00 20 00 74 00 6F 00 20 00 6E 00 75 00 6C 00 6C 00 70 00 74 00 72 00 21 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EC_0040_0024_0024CB_W _003F_003F_C_0040_1IE_0040KILCCGEC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040/* Not supported: data(53 00 74 00 61 00 74 00 75 00 73 00 55 00 70 00 64 00 61 00 74 00 65 00 72 00 5F 00 49 00 74 00 65 00 6D 00 44 00 61 00 74 00 61 00 55 00 70 00 64 00 61 00 74 00 65 00 3A 00 3A 00 53 00 65 00 74 00 53 00 74 00 61 00 74 00 75 00 73 00 43 00 61 00 74 00 65 00 67 00 6F 00 72 00 79 00 20 00 69 00 74 00 65 00 6D 00 20 00 73 00 65 00 74 00 20 00 74 00 6F 00 20 00 4E 00 55 00 4C 00 4C 00 21 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EA_0040_0024_0024CB_W _003F_003F_C_0040_1IA_0040DDMNCIAB_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040/* Not supported: data(53 00 74 00 61 00 74 00 75 00 73 00 55 00 70 00 64 00 61 00 74 00 65 00 72 00 5F 00 49 00 74 00 65 00 6D 00 44 00 61 00 74 00 61 00 55 00 70 00 64 00 61 00 74 00 65 00 3A 00 3A 00 53 00 65 00 74 00 53 00 74 00 61 00 74 00 75 00 73 00 44 00 65 00 74 00 61 00 69 00 6C 00 20 00 69 00 74 00 65 00 6D 00 20 00 73 00 65 00 74 00 20 00 74 00 6F 00 20 00 4E 00 55 00 4C 00 4C 00 21 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DL_0040_0024_0024CB_W _003F_003F_C_0040_1HG_0040CLAPEJNO_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040/* Not supported: data(53 00 74 00 61 00 74 00 75 00 73 00 55 00 70 00 64 00 61 00 74 00 65 00 72 00 5F 00 49 00 74 00 65 00 6D 00 44 00 61 00 74 00 61 00 55 00 70 00 64 00 61 00 74 00 65 00 3A 00 3A 00 53 00 65 00 74 00 51 00 75 00 61 00 6C 00 69 00 74 00 79 00 20 00 69 00 74 00 65 00 6D 00 20 00 73 00 65 00 74 00 20 00 74 00 6F 00 20 00 4E 00 55 00 4C 00 4C 00 21 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CE_0040_W _003FA0x6ea962a9_002EszLoggerRegPath/* Not supported: data(53 00 4F 00 46 00 54 00 57 00 41 00 52 00 45 00 5C 00 41 00 72 00 63 00 68 00 65 00 73 00 74 00 72 00 41 00 5C 00 46 00 72 00 61 00 6D 00 65 00 77 00 6F 00 72 00 6B 00 5C 00 4C 00 6F 00 67 00 67 00 65 00 72 00 00 00) */; + + internal static int ___0040_0040_PchSym__004000_0040UyowhixBUJUhUhixUncwzgzhvieviUncwzgzxlmhfnviUncwzgzxlmhfnviUivovzhvUxlmhfnviwzgzfgrorgrvhOlyq_0040/*Field data (rva=0xc298c) could not be found in any section!*/; + + private unsafe static int** __unep_0040_003FUnRegisterTypeLib_0040_0040_0024_0024J220YGJABU_GUID_0040_0040GGKW4tagSYSKIND_0040_0040_0040Z/* Not supported: data(0A 00 05 10) */; + + private unsafe static int** __unep_0040_003FRegisterTypeLib_0040_0040_0024_0024J212YGJPAUITypeLib_0040_0040PB_W1_0040Z/* Not supported: data(10 00 05 10) */; + + private unsafe static int** __unep_0040_003Fends_0040std_0040_0040_0024_0024FYAAAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040AAV21_0040_0040Z/* Not supported: data(BA 0E 05 10) */; + + internal static _0024ArrayType_0024_0024_0024BY00_0024_0024CB_W _003F_003F_C_0040_11LOCGONAA_0040_003F_0024AA_003F_0024AA_0040/* Not supported: data(00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CM_0040_0024_0024CB_W _003F_003F_C_0040_1FI_0040OJABHBPA_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAG_003F_0024AAe_003F_0024AAt_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAI_003F_0024AAd_003F_0024AA_003F5_003F_0024AAc_003F_0024AAl_003F_0024AAi_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 47 00 65 00 74 00 43 00 6C 00 69 00 65 00 6E 00 74 00 49 00 64 00 20 00 63 00 6C 00 69 00 65 00 6E 00 74 00 49 00 64 00 5B 00 30 00 78 00 25 00 78 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DE_0040_0024_0024CB_W _003F_003F_C_0040_1GI_0040ONLHDAKO_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAs_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAp_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 49 00 73 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 65 00 64 00 20 00 72 00 65 00 70 00 6F 00 72 00 74 00 69 00 6E 00 67 00 20 00 64 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 65 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DI_0040_0024_0024CB_W _003F_003F_C_0040_1HA_0040PJEHIALF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAs_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAp_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 49 00 73 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 65 00 64 00 20 00 72 00 65 00 70 00 6F 00 72 00 74 00 69 00 6E 00 67 00 20 00 61 00 63 00 74 00 75 00 61 00 6C 00 20 00 66 00 6C 00 61 00 67 00 20 00 5B 00 25 00 64 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CJ_0040_0024_0024CB_W _003F_003F_C_0040_1FC_0040EPLLHOHG_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAc_003F_0024AAk_003F_0024AAn_003F_0024AAo_003F_0024AAw_003F_0024AAl_003F_0024AAe_003F_0024AAd_003F_0024AAg_003F_0024AAe_003F_0024AAD_003F_0024AAi_003F_0024AAs_003F_0024AAc_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 63 00 6B 00 6E 00 6F 00 77 00 6C 00 65 00 64 00 67 00 65 00 44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 65 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EG_0040_0024_0024CB_W _003F_003F_C_0040_1IM_0040DFLDJAFO_0040_003F_0024AAc_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAt_003F_0024AAo_003F_0024AA_003F5_003F_0024AAs_003F_0024AAt_003F_0024AAa_003F_0024AAr_0040/* Not supported: data(63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 69 00 6F 00 6E 00 20 00 74 00 68 00 72 00 65 00 61 00 64 00 20 00 66 00 61 00 69 00 6C 00 65 00 64 00 20 00 74 00 6F 00 20 00 73 00 74 00 61 00 72 00 74 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 69 00 6F 00 6E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY06_0024_0024CB_W _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040/* Not supported: data(3C 00 4E 00 55 00 4C 00 4C 00 3E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DP_0040_0024_0024CB_W _003F_003F_C_0040_1HO_0040NDFKEEAM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAC_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 69 00 6F 00 6E 00 20 00 3C 00 25 00 73 00 3E 00 20 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DJ_0040_0024_0024CB_W _003F_003F_C_0040_1HC_0040FNGKBMCI_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAG_003F_0024AAe_003F_0024AAt_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAI_003F_0024AAd_003F_0024AA_003F5_003F_0024AAc_003F_0024AAl_003F_0024AAi_003F_0024AAe_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 47 00 65 00 74 00 43 00 6C 00 69 00 65 00 6E 00 74 00 49 00 64 00 20 00 63 00 6C 00 69 00 65 00 6E 00 74 00 49 00 64 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FO_0040_0024_0024CB_W _003F_003F_C_0040_1LM_0040JDMOONDP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 62 00 61 00 64 00 20 00 73 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 49 00 44 00 20 00 72 00 65 00 63 00 65 00 69 00 76 00 65 00 64 00 2C 00 20 00 61 00 62 00 6F 00 72 00 74 00 69 00 6E 00 67 00 20 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 69 00 6F 00 6E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0GE_0040_0024_0024CB_W _003F_003F_C_0040_1MI_0040BBBFCBAL_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 49 00 6E 00 76 00 61 00 6C 00 69 00 64 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 69 00 6F 00 6E 00 49 00 64 00 20 00 45 00 52 00 52 00 4F 00 52 00 20 00 72 00 65 00 63 00 65 00 69 00 76 00 65 00 64 00 2C 00 20 00 61 00 62 00 6F 00 72 00 74 00 69 00 6E 00 67 00 20 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 69 00 6F 00 6E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DP_0040_0024_0024CB_W _003F_003F_C_0040_1HO_0040NIKGJAIJ_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DP_0040_0024_0024CB_W _003F_003F_C_0040_1HO_0040FJPAHHEB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_003F_0024AAS_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 68 00 61 00 6E 00 67 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DP_0040_0024_0024CB_W _003F_003F_C_0040_1HO_0040NDGMDLFF_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FI_0040_0024_0024CB_W _003F_003F_C_0040_1LA_0040GIMNEDKJ_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 49 00 64 00 5B 00 25 00 49 00 36 00 34 00 78 00 5D 00 20 00 54 00 79 00 70 00 65 00 5B 00 25 00 64 00 5D 00 20 00 41 00 63 00 74 00 69 00 76 00 65 00 5B 00 25 00 78 00 5D 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EN_0040_0024_0024CB_W _003F_003F_C_0040_1JK_0040HNDDPKGD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 53 00 65 00 74 00 74 00 69 00 6E 00 67 00 20 00 69 00 74 00 65 00 6D 00 20 00 5B 00 25 00 49 00 36 00 34 00 78 00 5D 00 20 00 62 00 75 00 66 00 66 00 65 00 72 00 20 00 70 00 72 00 6F 00 70 00 65 00 72 00 74 00 79 00 20 00 74 00 6F 00 20 00 25 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FE_0040_0024_0024CB_W _003F_003F_C_0040_1KI_0040FPBEJJDM_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 46 00 61 00 69 00 6C 00 65 00 64 00 20 00 74 00 6F 00 20 00 73 00 65 00 74 00 20 00 42 00 75 00 66 00 66 00 65 00 72 00 65 00 64 00 20 00 70 00 72 00 6F 00 70 00 65 00 72 00 74 00 79 00 20 00 49 00 44 00 61 00 74 00 61 00 20 00 63 00 6F 00 6E 00 74 00 72 00 61 00 63 00 74 00 20 00 25 00 73 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DJ_0040_0024_0024CB_W _003F_003F_C_0040_1HC_0040BDFNOHO_0040_003F_0024AAE_003F_0024AAx_003F_0024AAc_003F_0024AAe_003F_0024AAp_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAo_003F_0024AAw_003F_0024AAn_003F_0024AA_003F5_003F_0024AAa_003F_0024AAt_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_0040/* Not supported: data(45 00 78 00 63 00 65 00 70 00 74 00 69 00 6F 00 6E 00 20 00 74 00 68 00 72 00 6F 00 77 00 6E 00 20 00 61 00 74 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 25 00 73 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EA_0040_0024_0024CB_W _003F_003F_C_0040_1IA_0040BPMIELCD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 6E 00 6F 00 20 00 62 00 75 00 66 00 66 00 65 00 72 00 65 00 64 00 20 00 66 00 69 00 65 00 6C 00 64 00 20 00 69 00 6E 00 20 00 63 00 6F 00 6E 00 74 00 72 00 61 00 63 00 74 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FJ_0040_0024_0024CB_W _003F_003F_C_0040_1LC_0040LEPGMBLE_0040_003F_0024AAF_003F_0024AAi_003F_0024AAn_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_0040/* Not supported: data(46 00 69 00 6E 00 69 00 73 00 68 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 49 00 64 00 5B 00 25 00 49 00 36 00 34 00 78 00 5D 00 20 00 54 00 79 00 70 00 65 00 5B 00 25 00 64 00 5D 00 20 00 41 00 63 00 74 00 69 00 76 00 65 00 5B 00 25 00 78 00 5D 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DP_0040_0024_0024CB_W _003F_003F_C_0040_1HO_0040FCFFKLBD_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EB_0040_0024_0024CB_W _003F_003F_C_0040_1IC_0040PALBPJO_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAM_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EG_0040_0024_0024CB_W _003F_003F_C_0040_1IM_0040JAMHCJGD_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAc_003F_0024AAk_003F_0024AAT_003F_0024AAr_003F_0024AAa_003F_0024AAc_003F_0024AAe_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_0040/* Not supported: data(53 00 74 00 61 00 63 00 6B 00 54 00 72 00 61 00 63 00 65 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DK_0040_0024_0024CB_W _003F_003F_C_0040_1HE_0040GKKHABN_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 52 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EA_0040_0024_0024CB_W _003F_003F_C_0040_1IA_0040GOKAJCO_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 55 00 6E 00 72 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 61 00 63 00 63 00 65 00 73 00 73 00 69 00 6E 00 67 00 20 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DM_0040_0024_0024CB_W _003F_003F_C_0040_1HI_0040HMIMHHDB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 55 00 6E 00 72 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EJ_0040_0024_0024CB_W _003F_003F_C_0040_1JC_0040MJFKDKKI_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAW_003F_0024AAi_003F_0024AAt_003F_0024AAh_003F_0024AAD_003F_0024AAe_003F_0024AAs_003F_0024AAc_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAa_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 57 00 69 00 74 00 68 00 44 00 65 00 73 00 63 00 20 00 2D 00 20 00 61 00 72 00 72 00 61 00 79 00 49 00 6E 00 64 00 65 00 78 00 56 00 61 00 6C 00 69 00 64 00 5B 00 25 00 64 00 5D 00 20 00 61 00 72 00 72 00 61 00 79 00 45 00 6C 00 65 00 6D 00 65 00 6E 00 74 00 49 00 6E 00 64 00 65 00 78 00 5B 00 25 00 64 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DB_0040_0024_0024CB_W _003F_003F_C_0040_1GC_0040FPNFIDGI_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F_0024DM_003F_0024AA_003F_0024CF_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0JO_0040_0024_0024CB_W _003F_003F_C_0040_1BDM_0040FIOEEPED_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_003F_0024AAb_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAt_003F_0024AAi_003F_0024AAn_003F_0024AAu_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 20 00 62 00 43 00 6F 00 6E 00 74 00 69 00 6E 00 75 00 65 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 65 00 64 00 20 00 3D 00 20 00 66 00 61 00 6C 00 73 00 65 00 20 00 28 00 72 00 65 00 63 00 65 00 69 00 76 00 65 00 64 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 66 00 72 00 6F 00 6D 00 20 00 53 00 65 00 72 00 76 00 69 00 63 00 65 00 20 00 73 00 69 00 64 00 65 00 29 00 20 00 45 00 72 00 72 00 6F 00 72 00 43 00 6F 00 64 00 65 00 5B 00 25 00 64 00 20 00 25 00 78 00 5D 00 20 00 53 00 70 00 65 00 63 00 69 00 66 00 69 00 63 00 45 00 72 00 72 00 6F 00 72 00 43 00 6F 00 64 00 65 00 5B 00 25 00 64 00 20 00 25 00 78 00 5D 00 20 00 53 00 74 00 61 00 74 00 75 00 73 00 5B 00 25 00 64 00 20 00 25 00 78 00 5D 00 21 00 20 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0HL_0040_0024_0024CB_W _003F_003F_C_0040_1PG_0040BFDNNDOD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_003F_0024AAb_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAt_003F_0024AAi_003F_0024AAn_003F_0024AAu_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 20 00 62 00 43 00 6F 00 6E 00 74 00 69 00 6E 00 75 00 65 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 65 00 64 00 20 00 3D 00 20 00 66 00 61 00 6C 00 73 00 65 00 20 00 28 00 72 00 65 00 63 00 65 00 69 00 76 00 65 00 64 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 66 00 72 00 6F 00 6D 00 20 00 53 00 65 00 72 00 76 00 69 00 63 00 65 00 20 00 73 00 69 00 64 00 65 00 29 00 20 00 70 00 61 00 72 00 74 00 69 00 61 00 6C 00 52 00 65 00 73 00 75 00 6C 00 74 00 20 00 69 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DD_0040_0024_0024CB_W _003F_003F_C_0040_1GG_0040BDJMECGK_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EA_0040_0024_0024CB_W _003F_003F_C_0040_1IA_0040HBCHAGCP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AAW_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 57 00 72 00 69 00 74 00 65 00 43 00 6F 00 6D 00 70 00 6C 00 65 00 74 00 65 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DA_0040_0024_0024CB_W _003F_003F_C_0040_1GA_0040DFJBHNBM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AA_003F_0024DM_003F_0024AA_003F_0024CF_003F_0024AAs_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 69 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 52 00 65 00 61 00 64 00 20 00 3C 00 25 00 73 00 3E 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CE_0040_W _003FA0x56a9090b_002EszLoggerRegPath/* Not supported: data(53 00 4F 00 46 00 54 00 57 00 41 00 52 00 45 00 5C 00 41 00 72 00 63 00 68 00 65 00 73 00 74 00 72 00 41 00 5C 00 46 00 72 00 61 00 6D 00 65 00 77 00 6F 00 72 00 6B 00 5C 00 4C 00 6F 00 67 00 67 00 65 00 72 00 00 00) */; + + internal static int ___0040_0040_PchSym__004000_0040UyowhixBUJUhUhixUncwzgzhvieviUncwzgzxlmhfnviUncwzgzxlmhfnviUivovzhvUwzgzxorvmgxorOlyq_0040/*Field data (rva=0xc4088) could not be found in any section!*/; + + private unsafe static int** __unep_0040_003FUnRegisterTypeLib_0040_0040_0024_0024J220YGJABU_GUID_0040_0040GGKW4tagSYSKIND_0040_0040_0040Z/* Not supported: data(0A 00 05 10) */; + + private unsafe static int** __unep_0040_003FRegisterTypeLib_0040_0040_0024_0024J212YGJPAUITypeLib_0040_0040PB_W1_0040Z/* Not supported: data(10 00 05 10) */; + + private unsafe static int** __unep_0040_003Fends_0040std_0040_0040_0024_0024FYAAAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040AAV21_0040_0040Z/* Not supported: data(BA 0E 05 10) */; + + internal static _0024ArrayType_0024_0024_0024BY0CK_0040_0024_0024CB_W _003F_003F_C_0040_1FE_0040DNKGCEPE_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AAi_003F_0024AAn_003F_0024AAg_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 69 00 6E 00 67 00 20 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 74 00 68 00 72 00 65 00 61 00 64 00 20 00 66 00 6F 00 72 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CK_0040_0024_0024CB_W _003F_003F_C_0040_1FE_0040OAOFFABC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAo_003F_0024AAp_003F_0024AAp_003F_0024AAi_003F_0024AAn_003F_0024AAg_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_0040/* Not supported: data(53 00 74 00 6F 00 70 00 70 00 69 00 6E 00 67 00 20 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 74 00 68 00 72 00 65 00 61 00 64 00 20 00 66 00 6F 00 72 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CK_0040_0024_0024CB_W _003F_003F_C_0040_1FE_0040IJJNJMIO_0040_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AAf_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_003F_0024AAs_003F_0024AAp_003F_0024AAa_003F_0024AAc_003F_0024AAe_003F_0024AA_003F_0024FL_003F_0024AA_003F_0024CF_003F_0024AAs_0040/* Not supported: data(43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 74 00 68 00 72 00 65 00 61 00 64 00 20 00 20 00 66 00 6F 00 72 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 73 00 74 00 6F 00 70 00 70 00 65 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0GG_0040_0024_0024CB_W _003F_003F_C_0040_1MM_0040PKMKMBAF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 61 00 69 00 74 00 46 00 6F 00 72 00 45 00 78 00 69 00 74 00 4F 00 72 00 44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 6F 00 72 00 54 00 69 00 6D 00 65 00 6F 00 75 00 74 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 61 00 75 00 74 00 6F 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 6F 00 62 00 6A 00 65 00 63 00 74 00 20 00 67 00 65 00 6E 00 65 00 72 00 61 00 6C 00 20 00 66 00 61 00 69 00 6C 00 75 00 72 00 65 00 20 00 25 00 73 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EI_0040_0024_0024CB_W _003F_003F_C_0040_1JA_0040PLNKLFK_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 61 00 69 00 74 00 46 00 6F 00 72 00 45 00 78 00 69 00 74 00 4F 00 72 00 44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 6F 00 72 00 54 00 69 00 6D 00 65 00 6F 00 75 00 74 00 20 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 74 00 69 00 63 00 6B 00 2E 00 2E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FM_0040_0024_0024CB_W _003F_003F_C_0040_1LI_0040LBCHGBIC_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 61 00 69 00 74 00 46 00 6F 00 72 00 45 00 78 00 69 00 74 00 4F 00 72 00 44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 6F 00 72 00 54 00 69 00 6D 00 65 00 6F 00 75 00 74 00 20 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 74 00 68 00 72 00 65 00 61 00 64 00 20 00 66 00 6F 00 72 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 71 00 75 00 69 00 74 00 74 00 69 00 6E 00 67 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0GN_0040_0024_0024CB_W _003F_003F_C_0040_1NK_0040LHMCCOLO_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 61 00 69 00 74 00 46 00 6F 00 72 00 45 00 78 00 69 00 74 00 4F 00 72 00 44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 6F 00 72 00 54 00 69 00 6D 00 65 00 6F 00 75 00 74 00 20 00 44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 64 00 65 00 74 00 65 00 63 00 74 00 65 00 64 00 20 00 66 00 6F 00 72 00 20 00 6E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 2C 00 20 00 74 00 72 00 79 00 69 00 6E 00 67 00 20 00 74 00 6F 00 20 00 72 00 65 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0HB_0040_0024_0024CB_W _003F_003F_C_0040_1OC_0040GDCOMDB_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 61 00 69 00 74 00 46 00 6F 00 72 00 45 00 78 00 69 00 74 00 4F 00 72 00 44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 6F 00 72 00 54 00 69 00 6D 00 65 00 6F 00 75 00 74 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 62 00 61 00 64 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 20 00 76 00 61 00 6C 00 75 00 65 00 20 00 66 00 72 00 6F 00 6D 00 20 00 77 00 61 00 69 00 74 00 20 00 6F 00 6E 00 20 00 41 00 75 00 74 00 6F 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 74 00 68 00 72 00 65 00 61 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EB_0040_0024_0024CB_W _003F_003F_C_0040_1IC_0040MCAHFFDM_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 75 00 74 00 6F 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 4C 00 6F 00 6F 00 70 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 74 00 72 00 79 00 69 00 6E 00 67 00 20 00 74 00 6F 00 20 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EC_0040_0024_0024CB_W _003F_003F_C_0040_1IE_0040JHNCKAJN_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 75 00 74 00 6F 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 4C 00 6F 00 6F 00 70 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 53 00 55 00 43 00 43 00 45 00 53 00 53 00 46 00 55 00 4C 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EI_0040_0024_0024CB_W _003F_003F_C_0040_1JA_0040IOGDGEAK_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 75 00 74 00 6F 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 4C 00 6F 00 6F 00 70 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 46 00 41 00 49 00 4C 00 45 00 44 00 2C 00 20 00 72 00 65 00 74 00 72 00 79 00 69 00 6E 00 67 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CL_0040_0024_0024CB_W _003F_003F_C_0040_1FG_0040GOGOIJKL_0040_003F_0024AAE_003F_0024AAx_003F_0024AAc_003F_0024AAe_003F_0024AAp_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F3_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_0040/* Not supported: data(45 00 78 00 63 00 65 00 70 00 74 00 69 00 6F 00 6E 00 20 00 69 00 6E 00 20 00 41 00 75 00 74 00 6F 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 3A 00 20 00 25 00 73 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FA_0040_0024_0024CB_W _003F_003F_C_0040_1KA_0040OAMPOJAB_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 75 00 74 00 6F 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 4C 00 6F 00 6F 00 70 00 20 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 74 00 68 00 72 00 65 00 61 00 64 00 20 00 66 00 6F 00 72 00 20 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 5B 00 25 00 73 00 5D 00 20 00 64 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 69 00 6E 00 67 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EE_0040_0024_0024CB_W _003F_003F_C_0040_1II_0040OKKJDKFF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AAa_003F_0024AAt_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 49 00 6E 00 69 00 74 00 69 00 61 00 6C 00 69 00 7A 00 65 00 20 00 61 00 74 00 74 00 65 00 6D 00 70 00 74 00 69 00 6E 00 67 00 20 00 69 00 6E 00 69 00 74 00 69 00 61 00 6C 00 20 00 77 00 69 00 74 00 68 00 20 00 6E 00 61 00 6D 00 65 00 53 00 70 00 61 00 63 00 65 00 20 00 5B 00 25 00 73 00 5D 00 20 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EM_0040_0024_0024CB_W _003F_003F_C_0040_1JI_0040ONNMMLJK_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AAm_003F_0024AAa_003F_0024AAk_003F_0024AAi_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 49 00 6E 00 69 00 74 00 69 00 61 00 6C 00 69 00 7A 00 65 00 20 00 6D 00 61 00 6B 00 69 00 6E 00 67 00 20 00 61 00 20 00 6E 00 65 00 77 00 20 00 41 00 53 00 42 00 44 00 61 00 74 00 61 00 50 00 72 00 6F 00 78 00 79 00 20 00 6F 00 62 00 6A 00 65 00 63 00 74 00 20 00 6E 00 61 00 6D 00 65 00 53 00 70 00 61 00 63 00 65 00 20 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EI_0040_0024_0024CB_W _003F_003F_C_0040_1JA_0040JFJHFOLH_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AAm_003F_0024AAa_003F_0024AAd_003F_0024AAe_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 49 00 6E 00 69 00 74 00 69 00 61 00 6C 00 69 00 7A 00 65 00 20 00 6D 00 61 00 64 00 65 00 20 00 74 00 68 00 65 00 20 00 73 00 74 00 72 00 4E 00 61 00 6D 00 65 00 73 00 70 00 61 00 63 00 65 00 20 00 53 00 74 00 72 00 69 00 6E 00 67 00 20 00 6E 00 61 00 6D 00 65 00 53 00 70 00 61 00 63 00 65 00 20 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EC_0040_0024_0024CB_W _003F_003F_C_0040_1IE_0040CLMONHFC_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAE_003F_0024AAx_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 49 00 6E 00 69 00 74 00 69 00 61 00 6C 00 69 00 7A 00 65 00 20 00 2D 00 20 00 45 00 78 00 63 00 65 00 70 00 74 00 69 00 6F 00 6E 00 20 00 63 00 61 00 75 00 67 00 68 00 74 00 3A 00 20 00 25 00 73 00 20 00 6E 00 61 00 6D 00 65 00 53 00 70 00 61 00 63 00 65 00 20 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FK_0040_0024_0024CB_W _003F_003F_C_0040_1LE_0040LNODMAFF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAn_003F_0024AAe_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 49 00 6E 00 69 00 74 00 69 00 61 00 6C 00 69 00 7A 00 65 00 20 00 2D 00 20 00 6E 00 65 00 77 00 20 00 41 00 53 00 42 00 44 00 61 00 74 00 61 00 50 00 72 00 6F 00 78 00 79 00 20 00 6F 00 62 00 6A 00 65 00 63 00 74 00 20 00 6D 00 61 00 64 00 65 00 2C 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 69 00 6E 00 67 00 20 00 74 00 72 00 75 00 65 00 20 00 6E 00 61 00 6D 00 65 00 53 00 70 00 61 00 63 00 65 00 20 00 5B 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CA_0040_0024_0024CB_W _003F_003F_C_0040_1EA_0040GCOONOBM_0040_003F_0024AAC_003F_0024AAa_003F_0024AAu_003F_0024AAg_003F_0024AAh_003F_0024AAt_003F_0024AA_003F5_003F_0024AAe_003F_0024AAx_003F_0024AAc_003F_0024AAe_003F_0024AAp_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAd_003F_0024AAu_003F_0024AAr_003F_0024AAi_003F_0024AAn_003F_0024AAg_003F_0024AA_003F5_003F_0024AAc_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F_0024AA_0040/* Not supported: data(43 00 61 00 75 00 67 00 68 00 74 00 20 00 65 00 78 00 63 00 65 00 70 00 74 00 69 00 6F 00 6E 00 20 00 64 00 75 00 72 00 69 00 6E 00 67 00 20 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CJ_0040_0024_0024CB_W _003F_003F_C_0040_1FC_0040JECJKEIC_0040_003F_0024AA_003F_0024FL_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAs_003F_0024AAu_003F_0024AAc_003F_0024AAc_003F_0024AAe_003F_0024AAe_003F_0024AAd_003F_0024AAe_003F_0024AAd_003F_0024AA_003F0_003F_0024AA_003F5_003F_0024AAc_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_0040/* Not supported: data(5B 00 25 00 73 00 5D 00 20 00 2D 00 20 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 73 00 75 00 63 00 63 00 65 00 65 00 64 00 65 00 64 00 2C 00 20 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 69 00 64 00 20 00 30 00 78 00 25 00 78 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CN_0040_0024_0024CB_W _003F_003F_C_0040_1FK_0040LJCOFOHL_0040_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAt_003F_0024AAu_003F_0024AAr_003F_0024AAn_003F_0024AA_003F5_003F_0024AA0_003F_0024AAx_003F_0024AA_003F_0024CF_0040/* Not supported: data(5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 20 00 2D 00 20 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 20 00 30 00 78 00 25 00 78 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 3C 00 25 00 73 00 3E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FH_0040_0024_0024CB_W _003F_003F_C_0040_1KO_0040FMKLBGIG_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA2_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 32 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 20 00 2D 00 20 00 49 00 6E 00 69 00 74 00 69 00 61 00 6C 00 69 00 7A 00 65 00 20 00 73 00 75 00 63 00 63 00 65 00 65 00 64 00 65 00 64 00 2C 00 20 00 63 00 61 00 6C 00 6C 00 69 00 6E 00 67 00 20 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 6F 00 6E 00 20 00 50 00 72 00 6F 00 78 00 79 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EB_0040_0024_0024CB_W _003F_003F_C_0040_1IC_0040MGOONLHD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 20 00 2D 00 20 00 53 00 65 00 63 00 75 00 72 00 65 00 20 00 53 00 65 00 73 00 73 00 69 00 6F 00 6E 00 20 00 45 00 73 00 74 00 61 00 62 00 6C 00 69 00 73 00 68 00 65 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DF_0040_0024_0024CB_W _003F_003F_C_0040_1GK_0040DEAHLMDE_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_0040/* Not supported: data(43 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 43 00 4C 00 49 00 3A 00 3A 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 20 00 2D 00 20 00 43 00 6C 00 69 00 65 00 6E 00 74 00 49 00 64 00 5B 00 30 00 78 00 25 00 78 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0BO_0040_0024_0024CB_W _003F_003F_C_0040_1DM_0040LJKEOBDG_0040_003F_0024AAD_003F_0024AAi_003F_0024AAs_003F_0024AAc_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAE_003F_0024AAN_003F_0024AAT_003F_0024AAR_003F_0024AAY_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F_0024AA_0040/* Not supported: data(44 00 69 00 73 00 63 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 20 00 45 00 4E 00 54 00 52 00 59 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DM_0040_0024_0024CB_W _003F_003F_C_0040_1HI_0040FFIAIOHO_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 25 00 73 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EP_0040_0024_0024CB_W _003F_003F_C_0040_1JO_0040HIIJLOJA_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FI_0040_0024_0024CB_W _003F_003F_C_0040_1LA_0040ENPPMGJC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_003F_0024AAu_003F_0024AAb_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 43 00 72 00 65 00 61 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 73 00 75 00 62 00 69 00 64 00 5B 00 30 00 78 00 25 00 49 00 36 00 34 00 78 00 5D 00 20 00 68 00 72 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DN_0040_0024_0024CB_W _003F_003F_C_0040_1HK_0040MIBGAHFB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 43 00 68 00 61 00 6E 00 67 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EP_0040_0024_0024CB_W _003F_003F_C_0040_1JO_0040FFMODPDB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 43 00 68 00 61 00 6E 00 67 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EH_0040_0024_0024CB_W _003F_003F_C_0040_1IO_0040KNGFFAPP_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_003F_0024AAS_003F_0024AAu_003F_0024AAb_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 43 00 68 00 61 00 6E 00 67 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DN_0040_0024_0024CB_W _003F_003F_C_0040_1HK_0040OMJMOPKP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EP_0040_0024_0024CB_W _003F_003F_C_0040_1JO_0040BANHOFBI_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EH_0040_0024_0024CB_W _003F_003F_C_0040_1IO_0040LKBODLOO_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAS_003F_0024AAu_003F_0024AAb_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 53 00 75 00 62 00 73 00 63 00 72 00 69 00 70 00 74 00 69 00 6F 00 6E 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EG_0040_0024_0024CB_W _003F_003F_C_0040_1IM_0040OLEIFPNK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 53 00 75 00 62 00 49 00 44 00 5B 00 25 00 49 00 36 00 34 00 64 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DI_0040_0024_0024CB_W _003F_003F_C_0040_1HA_0040FMFOOMB_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 49 00 73 00 43 00 6F 00 6E 00 6E 00 65 00 63 00 74 00 65 00 64 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FH_0040_0024_0024CB_W _003F_003F_C_0040_1KO_0040OACFEBEB_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 41 00 75 00 74 00 68 00 65 00 6E 00 74 00 69 00 63 00 61 00 74 00 69 00 6F 00 6E 00 20 00 61 00 6E 00 64 00 20 00 44 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 61 00 72 00 65 00 20 00 76 00 61 00 6C 00 69 00 64 00 2E 00 2E 00 2E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0ED_0040_0024_0024CB_W _003F_003F_C_0040_1IG_0040CANLKDMH_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 72 00 65 00 73 00 75 00 6C 00 74 00 20 00 69 00 73 00 20 00 20 00 6E 00 6F 00 6E 00 2D 00 6E 00 75 00 6C 00 6C 00 2E 00 2E 00 2E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DO_0040_0024_0024CB_W _003F_003F_C_0040_1HM_0040MMBAMPK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 73 00 74 00 61 00 74 00 75 00 73 00 2E 00 6C 00 65 00 6E 00 5B 00 25 00 64 00 5D 00 2E 00 2E 00 2E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EE_0040_0024_0024CB_W _003F_003F_C_0040_1II_0040DOKAMNJK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 43 00 61 00 70 00 61 00 62 00 69 00 6C 00 69 00 74 00 69 00 65 00 73 00 2E 00 6C 00 65 00 6E 00 5B 00 25 00 64 00 5D 00 2E 00 2E 00 2E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DN_0040_0024_0024CB_W _003F_003F_C_0040_1HK_0040GEJKHJBK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 2E 00 2E 00 2E 00 20 00 69 00 74 00 65 00 6D 00 73 00 2E 00 6C 00 65 00 6E 00 5B 00 25 00 64 00 5D 00 2E 00 2E 00 2E 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DM_0040_0024_0024CB_W _003F_003F_C_0040_1HI_0040NHOMPAFA_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EN_0040_0024_0024CB_W _003F_003F_C_0040_1JK_0040EKCKCCLE_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EG_0040_0024_0024CB_W _003F_003F_C_0040_1IM_0040CJBEJLBK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 41 00 64 00 64 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CO_0040_0024_0024CB_W _003F_003F_C_0040_1FM_0040GAGIGBCP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 65 00 6C 00 65 00 74 00 65 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FB_0040_0024_0024CB_W _003F_003F_C_0040_1KC_0040IPCJOJAN_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EJ_0040_0024_0024CB_W _003F_003F_C_0040_1JC_0040BNHHDNIL_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 44 00 65 00 6C 00 65 00 74 00 65 00 4D 00 6F 00 6E 00 69 00 74 00 6F 00 72 00 65 00 64 00 49 00 74 00 65 00 6D 00 73 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CO_0040_0024_0024CB_W _003F_003F_C_0040_1FM_0040CJNLBGKM_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_003F_0024AAN_0040/* Not supported: data(44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 52 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 4E 00 55 00 4C 00 4C 00 20 00 69 00 6E 00 20 00 69 00 74 00 65 00 6D 00 73 00 21 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CH_0040_0024_0024CB_W _003F_003F_C_0040_1EO_0040NFFCHMJD_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 52 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EK_0040_0024_0024CB_W _003F_003F_C_0040_1JE_0040COELOAEH_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 52 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EC_0040_0024_0024CB_W _003F_003F_C_0040_1IE_0040JMEPNMNJ_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 52 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DK_0040_0024_0024CB_W _003F_003F_C_0040_1HE_0040DEPFEAGN_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 55 00 6E 00 72 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EM_0040_0024_0024CB_W _003F_003F_C_0040_1JI_0040OLIOKBCP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 55 00 6E 00 72 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EE_0040_0024_0024CB_W _003F_003F_C_0040_1II_0040MKNPJEMA_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 55 00 6E 00 72 00 65 00 67 00 69 00 73 00 74 00 65 00 72 00 49 00 74 00 65 00 6D 00 73 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DE_0040_0024_0024CB_W _003F_003F_C_0040_1GI_0040HLOIFDBJ_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAU_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 55 00 73 00 65 00 72 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EG_0040_0024_0024CB_W _003F_003F_C_0040_1IM_0040INAKFEEL_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAU_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 55 00 73 00 65 00 72 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DO_0040_0024_0024CB_W _003F_003F_C_0040_1HM_0040LKPLIHJE_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAU_003F_0024AAs_003F_0024AAe_003F_0024AAr_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 55 00 73 00 65 00 72 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DA_0040_0024_0024CB_W _003F_003F_C_0040_1GA_0040ELKDJNAI_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EC_0040_0024_0024CB_W _003F_003F_C_0040_1IE_0040LMGBBOLC_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DK_0040_0024_0024CB_W _003F_003F_C_0040_1HE_0040KGHNJGHF_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAt_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DI_0040_0024_0024CB_W _003F_003F_C_0040_1HA_0040EJLCDLM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAV_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 56 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EK_0040_0024_0024CB_W _003F_003F_C_0040_1JE_0040HDNOAGAK_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAV_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 56 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EC_0040_0024_0024CB_W _003F_003F_C_0040_1IE_0040FBDPCFJC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAV_003F_0024AAe_003F_0024AAr_003F_0024AAi_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 56 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DH_0040_0024_0024CB_W _003F_003F_C_0040_1GO_0040BHFGFPMO_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 53 00 65 00 63 00 75 00 72 00 65 00 64 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EJ_0040_0024_0024CB_W _003F_003F_C_0040_1JC_0040JEHPCAEM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 53 00 65 00 63 00 75 00 72 00 65 00 64 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EB_0040_0024_0024CB_W _003F_003F_C_0040_1IC_0040PCAHNIKE_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAS_003F_0024AAe_003F_0024AAc_003F_0024AAu_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 57 00 72 00 69 00 74 00 65 00 53 00 65 00 63 00 75 00 72 00 65 00 64 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DE_0040_0024_0024CB_W _003F_003F_C_0040_1GI_0040LKNDJNC_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAK_003F_0024AAe_003F_0024AAe_003F_0024AAp_003F_0024AAA_003F_0024AAl_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 4B 00 65 00 65 00 70 00 41 00 6C 00 69 00 76 00 65 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EH_0040_0024_0024CB_W _003F_003F_C_0040_1IO_0040LDADOF_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAK_003F_0024AAe_003F_0024AAe_003F_0024AAp_003F_0024AAA_003F_0024AAl_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 4B 00 65 00 65 00 70 00 41 00 6C 00 69 00 76 00 65 00 20 00 64 00 61 00 74 00 61 00 20 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EL_0040_0024_0024CB_W _003F_003F_C_0040_1JG_0040KFAAKIBG_0040_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F3_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_0040/* Not supported: data(20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 3A 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 20 00 45 00 58 00 49 00 54 00 20 00 74 00 69 00 6D 00 65 00 20 00 73 00 70 00 65 00 6E 00 74 00 20 00 25 00 6C 00 64 00 20 00 6D 00 73 00 20 00 66 00 6F 00 72 00 20 00 25 00 6C 00 64 00 20 00 6D 00 73 00 67 00 73 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DC_0040_0024_0024CB_W _003F_003F_C_0040_1GE_0040IGBJBPAC_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EE_0040_0024_0024CB_W _003F_003F_C_0040_1II_0040GNNPJPOF_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DP_0040_0024_0024CB_W _003F_003F_C_0040_1HO_0040NFBIPBHB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 57 00 72 00 69 00 74 00 65 00 43 00 6F 00 6D 00 70 00 6C 00 65 00 74 00 65 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0FB_0040_0024_0024CB_W _003F_003F_C_0040_1KC_0040NKEFEMIB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 57 00 72 00 69 00 74 00 65 00 43 00 6F 00 6D 00 70 00 6C 00 65 00 74 00 65 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EJ_0040_0024_0024CB_W _003F_003F_C_0040_1JC_0040FLDAINPK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AAW_003F_0024AAr_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 50 00 75 00 62 00 6C 00 69 00 73 00 68 00 57 00 72 00 69 00 74 00 65 00 43 00 6F 00 6D 00 70 00 6C 00 65 00 74 00 65 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0CP_0040_0024_0024CB_W _003F_003F_C_0040_1FO_0040FHPIGDOG_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AA_003F_0024CF_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 52 00 65 00 61 00 64 00 20 00 25 00 73 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0EB_0040_0024_0024CB_W _003F_003F_C_0040_1IC_0040CHPAPOPB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAd_0040/* Not supported: data(45 00 72 00 72 00 6F 00 72 00 20 00 6F 00 6E 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 52 00 65 00 61 00 64 00 20 00 64 00 61 00 74 00 61 00 63 00 6C 00 69 00 65 00 6E 00 74 00 20 00 77 00 61 00 73 00 20 00 6E 00 75 00 6C 00 6C 00 21 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static _0024ArrayType_0024_0024_0024BY0DJ_0040_0024_0024CB_W _003F_003F_C_0040_1HC_0040CIHDPBCL_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAt_003F_0024AAu_0040/* Not supported: data(53 00 74 00 61 00 72 00 74 00 20 00 44 00 61 00 74 00 61 00 43 00 6C 00 69 00 65 00 6E 00 74 00 50 00 72 00 6F 00 78 00 79 00 3A 00 3A 00 52 00 65 00 61 00 64 00 20 00 72 00 65 00 74 00 75 00 72 00 6E 00 73 00 3A 00 20 00 5B 00 30 00 78 00 25 00 78 00 5D 00 20 00 20 00 5B 00 67 00 61 00 6C 00 61 00 78 00 79 00 20 00 25 00 73 00 5D 00 00 00) */; + + internal static int ___0040_0040_PchSym__004000_0040UyowhixBUJUhUhixUncwzgzhvieviUncwzgzxlmhfnviUncwzgzxlmhfnviUivovzhvUwzgzxorvmgkilcbOlyq_0040/*Field data (rva=0xc894c) could not be found in any section!*/; + + internal static _0024ArrayType_0024_0024_0024BY0CE_0040_W _003FA0xa8d5f844_002EszLoggerRegPath/* Not supported: data(53 00 4F 00 46 00 54 00 57 00 41 00 52 00 45 00 5C 00 41 00 72 00 63 00 68 00 65 00 73 00 74 00 72 00 41 00 5C 00 46 00 72 00 61 00 6D 00 65 00 77 00 6F 00 72 00 6B 00 5C 00 4C 00 6F 00 67 00 67 00 65 00 72 00 00 00) */; + + private unsafe static int** __unep_0040_003FUnRegisterTypeLib_0040_0040_0024_0024J220YGJABU_GUID_0040_0040GGKW4tagSYSKIND_0040_0040_0040Z/* Not supported: data(0A 00 05 10) */; + + private unsafe static int** __unep_0040_003FRegisterTypeLib_0040_0040_0024_0024J212YGJPAUITypeLib_0040_0040PB_W1_0040Z/* Not supported: data(10 00 05 10) */; + + private unsafe static int** __unep_0040_003Fends_0040std_0040_0040_0024_0024FYAAAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040AAV21_0040_0040Z/* Not supported: data(BA 0E 05 10) */; + + internal static __s_GUID _GUID_90f1a06e_7712_4762_86b5_7a5eba6bdb02/* Not supported: data(6E A0 F1 90 12 77 62 47 86 B5 7A 5E BA 6B DB 02) */; + + internal static __s_GUID _GUID_cb2f6722_ab3a_11d2_9c40_00c04fa30a3e/* Not supported: data(22 67 2F CB 3A AB D2 11 9C 40 00 C0 4F A3 0A 3E) */; + + internal static _0024ArrayType_0024_0024_0024BY00Q6MPBXXZ _003FA0xd56818f8_002E__xc_mp_z/* Not supported: data(00 00 00 00) */; + + [FixedAddressValueType] + internal static int _003FUninitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA; + + internal unsafe static delegate* _003FA0xd56818f8_002E_003FUninitialized_0024initializer_0024_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2P6MXXZA/* Not supported: data(00 02 00 06) */; + + internal static _0024ArrayType_0024_0024_0024BY00Q6MPBXXZ _003FA0xd56818f8_002E__xi_vt_a/* Not supported: data(00 00 00 00) */; + + [FixedAddressValueType] + internal static Progress.State _003FInitializedPerAppDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A; + + internal unsafe static delegate* _003FA0xd56818f8_002E_003FInitializedPerAppDomain_0024initializer_0024_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2P6MXXZA/* Not supported: data(05 02 00 06) */; + + [FixedAddressValueType] + internal static bool _003FIsDefaultDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2_NA; + + internal unsafe static delegate* _003FA0xd56818f8_002E_003FIsDefaultDomain_0024initializer_0024_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2P6MXXZA/* Not supported: data(01 02 00 06) */; + + internal static _0024ArrayType_0024_0024_0024BY00Q6MPBXXZ _003FA0xd56818f8_002E__xc_ma_a/* Not supported: data(00 00 00 00) */; + + [FixedAddressValueType] + internal static Progress.State _003FInitializedNative_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A; + + internal unsafe static delegate* _003FA0xd56818f8_002E_003FInitializedNative_0024initializer_0024_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2P6MXXZA/* Not supported: data(03 02 00 06) */; + + [FixedAddressValueType] + internal static int _003FInitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA; + + internal unsafe static delegate* _003FA0xd56818f8_002E_003FInitialized_0024initializer_0024_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2P6MXXZA/* Not supported: data(FF 01 00 06) */; + + internal static _0024ArrayType_0024_0024_0024BY00Q6MPBXXZ _003FA0xd56818f8_002E__xc_ma_z/* Not supported: data(00 00 00 00) */; + + [FixedAddressValueType] + internal static Progress.State _003FInitializedVtables_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A; + + internal unsafe static delegate* _003FA0xd56818f8_002E_003FInitializedVtables_0024initializer_0024_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2P6MXXZA/* Not supported: data(02 02 00 06) */; + + internal static __s_GUID _GUID_cb2f6723_ab3a_11d2_9c40_00c04fa30a3e/* Not supported: data(23 67 2F CB 3A AB D2 11 9C 40 00 C0 4F A3 0A 3E) */; + + internal static _0024ArrayType_0024_0024_0024BY00Q6MPBXXZ _003FA0xd56818f8_002E__xi_vt_z/* Not supported: data(00 00 00 00) */; + + [FixedAddressValueType] + internal static Progress.State _003FInitializedPerProcess_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A; + + internal unsafe static delegate* _003FA0xd56818f8_002E_003FInitializedPerProcess_0024initializer_0024_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2P6MXXZA/* Not supported: data(04 02 00 06) */; + + internal static bool _003FInitializedPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA/*Field data (rva=0xcd3db) could not be found in any section!*/; + + internal static bool _003FEntered_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA/*Field data (rva=0xcd3d8) could not be found in any section!*/; + + internal static bool _003FInitializedNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA/*Field data (rva=0xcd3d9) could not be found in any section!*/; + + internal static int _003FCount_0040AllDomains_0040_003CCrtImplementationDetails_003E_0040_00402HA/*Field data (rva=0xcd3d4) could not be found in any section!*/; + + internal static uint _003FProcessAttach_0040NativeDll_0040_003CCrtImplementationDetails_003E_0040_00400IB/* Not supported: data(01 00 00 00) */; + + internal static uint _003FThreadAttach_0040NativeDll_0040_003CCrtImplementationDetails_003E_0040_00400IB/* Not supported: data(02 00 00 00) */; + + internal static TriBool.State _003FhasNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A/* Not supported: data() */; + + internal static uint _003FProcessDetach_0040NativeDll_0040_003CCrtImplementationDetails_003E_0040_00400IB/* Not supported: data(00 00 00 00) */; + + internal static uint _003FThreadDetach_0040NativeDll_0040_003CCrtImplementationDetails_003E_0040_00400IB/* Not supported: data(03 00 00 00) */; + + internal static uint _003FProcessVerifier_0040NativeDll_0040_003CCrtImplementationDetails_003E_0040_00400IB/* Not supported: data(04 00 00 00) */; + + internal static TriBool.State _003FhasPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A/* Not supported: data() */; + + internal static bool _003FInitializedNativeFromCCTOR_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA/*Field data (rva=0xcd3da) could not be found in any section!*/; + + internal static _0024ArrayType_0024_0024_0024BY00Q6MPBXXZ _003FA0xd56818f8_002E__xc_mp_a/* Not supported: data(00 00 00 00) */; + + internal static __s_GUID _GUID_90f1a06c_7712_4762_86b5_7a5eba6bdb02/* Not supported: data(6C A0 F1 90 12 77 62 47 86 B5 7A 5E BA 6B DB 02) */; + + public unsafe static int** __unep_0040_003FDoNothing_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024FCGJPAX_0040Z/* Not supported: data(E9 20 05 10) */; + + public unsafe static int** __unep_0040_003F_UninitializeDefaultDomain_0040LanguageSupport_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024FCGJPAX_0040Z/* Not supported: data(95 22 05 10) */; + + [FixedAddressValueType] + internal static uint __exit_list_size_app_domain; + + [FixedAddressValueType] + internal unsafe static delegate** __onexitbegin_app_domain; + + internal static uint _003FA0xe11594df_002E__exit_list_size/*Field data (rva=0xcd560) could not be found in any section!*/; + + [FixedAddressValueType] + internal unsafe static delegate** __onexitend_app_domain; + + internal unsafe static delegate** _003FA0xe11594df_002E__onexitbegin_m/*Field data (rva=0xcd558) could not be found in any section!*/; + + internal unsafe static delegate** _003FA0xe11594df_002E__onexitend_m/*Field data (rva=0xcd55c) could not be found in any section!*/; + + [FixedAddressValueType] + internal unsafe static void* _003F_lock_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0PAXA; + + [FixedAddressValueType] + internal static int _003F_ref_count_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0HA; + + internal static _0024ArrayType_0024_0024_0024BY01Q6AXXZ _003F_003F_7type_info_0040_00406B_0040/* Not supported: data(C1 0F 05 10 00 00 00 00) */; + + internal unsafe static uint* g_pLogAutoConnect/*Field data (rva=0xccea4) could not be found in any section!*/; + + internal static CAtlComModule ATL_002E_AtlComModule/*Field data (rva=0xccee4) could not be found in any section!*/; + + internal static CAtlBaseModule ATL_002E_AtlBaseModule/*Field data (rva=0xccf0c) could not be found in any section!*/; + + internal unsafe static long* __imp_std_002E_BADOFF/* Not supported: data(A4 E1 0A 00) */; + + internal unsafe static uint* g_pLogSubscription/*Field data (rva=0xcce98) could not be found in any section!*/; + + internal unsafe static uint* g_pLogWriteRequests/*Field data (rva=0xcce9c) could not be found in any section!*/; + + internal unsafe static uint* g_pLogDataClient/*Field data (rva=0xcce90) could not be found in any section!*/; + + internal unsafe static uint* g_pLogRegisteredItems/*Field data (rva=0xcce94) could not be found in any section!*/; + + internal unsafe static uint* g_pPublishPerformance/*Field data (rva=0xccea8) could not be found in any section!*/; + + internal static bool g_ProcessExitCalled/*Field data (rva=0xcce80) could not be found in any section!*/; + + internal static _0024ArrayType_0024_0024_0024BY0A_0040P6AXXZ __xc_z/* Not supported: data(00) */; + + internal static volatile uint __native_vcclrit_reason/* Not supported: data(FF FF FF FF) */; + + internal static _0024ArrayType_0024_0024_0024BY0A_0040P6AXXZ __xc_a/* Not supported: data(00) */; + + internal static _0024ArrayType_0024_0024_0024BY0A_0040P6AHXZ __xi_a/* Not supported: data(00) */; + + internal static volatile __enative_startup_state __native_startup_state/* Not supported: data() */; + + internal static _0024ArrayType_0024_0024_0024BY0A_0040P6AHXZ __xi_z/* Not supported: data(00) */; + + internal unsafe static volatile void* __native_startup_lock/*Field data (rva=0xcd58c) could not be found in any section!*/; + + internal static volatile uint __native_dllmain_reason/* Not supported: data(FF FF FF FF) */; + + internal unsafe static int IsEqualGUID(_GUID* rguid1, _GUID* rguid2) + { + uint num = 16u; + _GUID* ptr = rguid2; + byte b = *(byte*)rguid1; + byte b2 = *(byte*)rguid2; + if ((uint)b >= (uint)b2) + { + int num2 = (int)((byte*)rguid1 - (nuint)rguid2); + while ((uint)b <= (uint)b2) + { + if (num != 1) + { + num--; + ptr = (_GUID*)((byte*)ptr + 1); + b = *(num2 + (byte*)ptr); + b2 = *(byte*)ptr; + if ((uint)b < (uint)b2) + { + break; + } + continue; + } + return 1; + } + } + return 0; + } + + internal unsafe static uint FormatMessage(uint dwFlags, void* lpSource, uint dwMessageId, uint dwLanguageId, char* lpBuffer, uint nSize, sbyte** Arguments) + { + return FormatMessageW(dwFlags, lpSource, dwMessageId, dwLanguageId, lpBuffer, nSize, Arguments); + } + + internal static int HRESULT_FROM_WIN32(uint x) + { + return ((int)x > 0) ? ((int)(x & 0xFFFF) | -2147024896) : ((int)x); + } + + internal unsafe static char* wmemcpy(char* _S1, char* _S2, uint _N) + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(_S1, _S2, _N << 1); + return _S1; + } + + internal unsafe static char* wmemmove(char* _S1, char* _S2, uint _N) + { + return (char*)memmove(_S1, _S2, _N << 1); + } + + internal static uint ATL_002E_AtlGetConversionACP() + { + return 3u; + } + + internal unsafe static void ATL_002E_AtlRaiseException(uint dwExceptionCode, uint dwExceptionFlags) + { + RaiseException(dwExceptionCode, dwExceptionFlags, 0u, null); + } + + internal unsafe static CAtlException* ATL_002ECAtlException_002E_007Bctor_007D(CAtlException* P_0, int hr) + { + *(int*)P_0 = hr; + return P_0; + } + + internal unsafe static void ATL_002EAtlThrowImpl(int hr) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out CAtlException ex); + *(int*)(&ex) = hr; + _CxxThrowException(&ex, (_s__ThrowInfo*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _TI1_003FAVCAtlException_0040ATL_0040_0040)); + } + + internal static void ATL_002EAtlThrowLastWin32() + { + uint lastError = GetLastError(); + ATL_002EAtlThrowImpl(((int)lastError > 0) ? ((int)(lastError & 0xFFFF) | -2147024896) : ((int)lastError)); + } + + internal static int ATL_002EAtlCrtErrorCheck(int nError) + { + switch (nError) + { + case 12: + ATL_002EAtlThrowImpl(-2147024882); + goto case 22; + case 22: + case 34: + ATL_002EAtlThrowImpl(-2147024809); + goto case 0; + case 0: + case 80: + return nError; + default: + ATL_002EAtlThrowImpl(-2147467259); + return 0; + } + } + + internal unsafe static int ATL_002EChecked_002Ewcsncpy_s(char* _Dest, uint _SizeInChars, char* _Source, uint _Count) + { + int num = wcsncpy_s(_Dest, _SizeInChars, _Source, _Count); + switch (num) + { + case 12: + ATL_002EAtlThrowImpl(-2147024882); + goto case 22; + case 22: + case 34: + ATL_002EAtlThrowImpl(-2147024809); + goto case 0; + case 0: + case 80: + return num; + default: + ATL_002EAtlThrowImpl(-2147467259); + return 0; + } + } + + internal unsafe static int ATL_002ECComCriticalSection_002ETerm(CComCriticalSection* P_0) + { + DeleteCriticalSection((_RTL_CRITICAL_SECTION*)P_0); + return 0; + } + + [SpecialName] + internal unsafe static CComPtr_003CIDispatch_003E* ATL_002ECComPtr_003CIDispatch_003E_002E_007Bctor_007D(CComPtr_003CIDispatch_003E* P_0, CComPtr_003CIDispatch_003E* lp) + { + int num = (*(int*)P_0 = *(int*)lp); + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)num + 4)))((IntPtr)num); + } + return P_0; + } + + [SpecialName] + internal unsafe static CComQIPtr_003CIUnknown_002C_0026IID_IUnknown_003E* ATL_002ECComQIPtr_003CIUnknown_002C_0026IID_IUnknown_003E_002E_007Bctor_007D(CComQIPtr_003CIUnknown_002C_0026IID_IUnknown_003E* P_0, CComQIPtr_003CIUnknown_002C_0026IID_IUnknown_003E* lp) + { + int num = (*(int*)P_0 = *(int*)lp); + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)num + 4)))((IntPtr)num); + } + return P_0; + } + + internal unsafe static void ATL_002ECComPtr_003CIUnknown_003E_002E_007Bdtor_007D(CComPtr_003CIUnknown_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + internal unsafe static CComBSTR* ATL_002ECComBSTR_002E_007Bctor_007D(CComBSTR* P_0) + { + *(int*)P_0 = 0; + return P_0; + } + + [SpecialName] + internal unsafe static CComBSTR* ATL_002ECComBSTR_002E_007Bctor_007D(CComBSTR* P_0, CComBSTR* src) + { + uint num = *(uint*)src; + char* ptr = ((num == 0) ? null : ((num == 0) ? SysAllocStringByteLen(null, 0u) : SysAllocStringByteLen((sbyte*)(int)(*(uint*)src), SysStringByteLen((char*)(int)num)))); + *(int*)P_0 = (int)ptr; + if (*(int*)src != 0 && ptr == null) + { + ATL_002EAtlThrowImpl(-2147024882); + } + return P_0; + } + + internal unsafe static uint ATL_002ECComBSTR_002ELength(CComBSTR* P_0) + { + return SysStringLen((char*)(int)(*(uint*)P_0)); + } + + internal unsafe static char* ATL_002ECComBSTR_002E_002EPA_W(CComBSTR* P_0) + { + return (char*)(int)(*(uint*)P_0); + } + + internal unsafe static char** ATL_002ECComBSTR_002E_0026(CComBSTR* P_0) + { + return (char**)P_0; + } + + internal unsafe static char* ATL_002ECComBSTR_002ECopy(CComBSTR* P_0) + { + uint num = *(uint*)P_0; + if (num == 0) + { + return null; + } + if (num != 0) + { + return SysAllocStringByteLen((sbyte*)(int)(*(uint*)P_0), SysStringByteLen((char*)(int)num)); + } + return SysAllocStringByteLen(null, 0u); + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool ATL_002ECComBSTR_002E_0021(CComBSTR* P_0) + { + return *(int*)P_0 == 0; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool ATL_002ECComBSTR_002E_0021_003D(CComBSTR* P_0, int nNull) + { + return *(int*)P_0 != 0; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool ATL_002ECComBSTR_002E_003D_003D(CComBSTR* P_0, int nNull) + { + return *(int*)P_0 == 0; + } + + internal unsafe static void ATL_002ECComBSTR_002E_007Bdtor_007D(CComBSTR* P_0) + { + SysFreeString((char*)(int)(*(uint*)P_0)); + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040D, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040E, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAD, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAE, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040F, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAF, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040G, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAG, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040H, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAH, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040I, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAI, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAJ, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAK, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040M, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAM, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040N, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAN, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xda2128e9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040) = 8; + } + + [SpecialName] + internal unsafe static CComVariant* ATL_002ECComVariant_002E_007Bctor_007D(CComVariant* P_0, CComVariant* varSrc) + { + *(short*)P_0 = 0; + int num = VariantCopy((tagVARIANT*)P_0, (tagVARIANT*)varSrc); + if (num < 0) + { + *(short*)P_0 = 10; + ((int*)P_0)[2] = num; + ATL_002EAtlThrowImpl(num); + } + return P_0; + } + + internal unsafe static int ATL_002ECComVariant_002ECopy(CComVariant* P_0, tagVARIANT* pSrc) + { + return VariantCopy((tagVARIANT*)P_0, pSrc); + } + + internal unsafe static void ATL_002ECComVariant_002EInternalCopy(CComVariant* P_0, tagVARIANT* pSrc) + { + int num = VariantCopy((tagVARIANT*)P_0, pSrc); + if (num < 0) + { + *(short*)P_0 = 10; + ((int*)P_0)[2] = num; + ATL_002EAtlThrowImpl(num); + } + } + + [SpecialName] + internal unsafe static CHandle* ATL_002ECHandle_002E_007Bctor_007D(CHandle* P_0, CHandle* h) + { + void* ptr = (void*)(int)(*(uint*)h); + *(int*)h = 0; + *(int*)P_0 = (int)ptr; + return P_0; + } + + internal unsafe static void ATL_002ECHandle_002EAttach(CHandle* P_0, void* h) + { + *(int*)P_0 = (int)h; + } + + internal unsafe static void* ATL_002ECHandle_002EDetach(CHandle* P_0) + { + int num = *(int*)P_0; + *(int*)P_0 = 0; + return (void*)num; + } + + internal unsafe static void ATL_002ECAtlComModule_002ETerm(CAtlComModule* P_0) + { + if (*(int*)P_0 == 0) + { + return; + } + _ATL_OBJMAP_ENTRY30** ptr = (_ATL_OBJMAP_ENTRY30**)(int)((uint*)P_0)[2]; + if ((nuint)ptr < (nuint)((int*)P_0)[3]) + { + do + { + uint num = *(uint*)ptr; + if (num != 0) + { + _ATL_OBJMAP_ENTRY30* ptr2 = (_ATL_OBJMAP_ENTRY30*)(int)num; + uint num2 = ((uint*)ptr2)[4]; + if (num2 != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num2 + 8)))((IntPtr)(int)num2); + } + ((int*)ptr2)[4] = 0; + } + ptr = (_ATL_OBJMAP_ENTRY30**)((byte*)ptr + 4); + } + while ((nuint)ptr < (nuint)((int*)P_0)[3]); + } + DeleteCriticalSection((_RTL_CRITICAL_SECTION*)((byte*)P_0 + 16)); + *(int*)P_0 = 0; + } + + internal unsafe static CAtlReleaseManagedClassFactories* ATL_002ECAtlReleaseManagedClassFactories_002E_007Bctor_007D(CAtlReleaseManagedClassFactories* P_0) + { + return P_0; + } + + internal unsafe static void ATL_002ECAtlReleaseManagedClassFactories_002E_007Bdtor_007D(CAtlReleaseManagedClassFactories* P_0) + { + ATL_002ECAtlComModule_002ETerm((CAtlComModule*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref ATL_002E_AtlComModule)); + } + + internal unsafe static void _003FA0xda2128e9_002E_003F_003F__E_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + _atexit_m((delegate*)(&_003FA0xda2128e9_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ)); + } + + internal unsafe static void _003FA0xda2128e9_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + ATL_002ECAtlComModule_002ETerm((CAtlComModule*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref ATL_002E_AtlComModule)); + } + + internal unsafe static HINSTANCE__* ATL_002ECComModule_002EGetModuleInstance(CComModule* P_0) + { + return (HINSTANCE__*)(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref ATL_002E_AtlBaseModule, 4)); + } + + [SpecialName] + internal unsafe static CRegKey* ATL_002ECRegKey_002E_007Bctor_007D(CRegKey* P_0, CRegKey* key) + { + HKEY__* ptr = (HKEY__*)(int)(*(uint*)key); + *(int*)key = 0; + ((int*)key)[1] = 0; + ((int*)key)[2] = 0; + *(int*)P_0 = (int)ptr; + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + return P_0; + } + + internal unsafe static HKEY__* ATL_002ECRegKey_002EDetach(CRegKey* P_0) + { + int num = *(int*)P_0; + *(int*)P_0 = 0; + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + return (HKEY__*)num; + } + + internal unsafe static void ATL_002ECRegKey_002EAttach(CRegKey* P_0, HKEY__* hKey) + { + *(int*)P_0 = (int)hKey; + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + } + + internal unsafe static int AtlWinModuleTerm(_ATL_WIN_MODULE70* pWinModule, HINSTANCE__* hInst) + { + if (pWinModule == null) + { + return -2147024809; + } + switch ((uint)(*(int*)pWinModule)) + { + case 0u: + return 0; + default: + return -2147024809; + case 44u: + { + int num = 0; + if (0 < ((int*)pWinModule)[9]) + { + do + { + if (num >= 0 && num < ((int*)((byte*)pWinModule + 32))[1]) + { + UnregisterClassW((char*)(int)(*(ushort*)(num * 2 + ((int*)pWinModule)[8])), hInst); + num++; + continue; + } + RaiseException(3221225612u, 1u, 0u, null); + break; + } + while (num < ((int*)pWinModule)[9]); + } + uint num2 = ((uint*)pWinModule)[8]; + if (num2 != 0) + { + free((void*)(int)num2); + ((int*)pWinModule)[8] = 0; + } + ((int*)((byte*)pWinModule + 32))[1] = 0; + ((int*)((byte*)pWinModule + 32))[2] = 0; + DeleteCriticalSection((_RTL_CRITICAL_SECTION*)((byte*)pWinModule + 4)); + *(int*)pWinModule = 0; + return 0; + } + } + } + + internal unsafe static uint ATL_002E_003FA0xda2128e9_002EAtlGetDirLen(char* lpszPathName) + { + if (lpszPathName == null) + { + return 0u; + } + char* ptr = lpszPathName; + char* ptr2 = lpszPathName; + if (*lpszPathName != 0) + { + char* ptr3; + do + { + ptr3 = CharNextW(ptr2); + ushort num = *ptr2; + if (num == 92 || num == 47 || num == 58) + { + ptr = ptr3; + } + ptr2 = ptr3; + } + while (*ptr3 != 0); + } + return (uint)((nint)((byte*)ptr - (nuint)lpszPathName) >> 1); + } + + internal unsafe static int AtlUnRegisterTypeLib(HINSTANCE__* hInstTypeLib, char* lpszIndex) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out CComBSTR cComBSTR); + *(int*)(&cComBSTR) = 0; + System.Runtime.CompilerServices.Unsafe.SkipInit(out CComPtr_003CITypeLib_003E cComPtr_003CITypeLib_003E); + System.Runtime.CompilerServices.Unsafe.SkipInit(out tagTLIBATTR* ptr); + bool flag; + int num; + try + { + *(int*)(&cComPtr_003CITypeLib_003E) = 0; + try + { + num = AtlLoadTypeLib(hInstTypeLib, lpszIndex, (char**)(&cComBSTR), (ITypeLib**)(&cComPtr_003CITypeLib_003E)); + if (num >= 0) + { + num = ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)) + 28)))((IntPtr)(*(int*)(&cComPtr_003CITypeLib_003E)), &ptr); + if (num >= 0) + { + flag = false; + num = AtlGetPerUserRegistration(&flag); + if (num >= 0) + { + goto IL_008c; + } + goto IL_005a; + } + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CITypeLib_003E_002E_007Bdtor_007D), &cComPtr_003CITypeLib_003E); + throw; + } + goto end_IL_0004; + IL_005a: + if (*(int*)(&cComPtr_003CITypeLib_003E) != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)) + 8)))((IntPtr)(*(int*)(&cComPtr_003CITypeLib_003E))); + } + goto IL_0081; + end_IL_0004:; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR); + throw; + } + goto IL_0103; + IL_008c: + try + { + try + { + delegate* unmanaged[Stdcall, Stdcall]<_GUID*, ushort, ushort, uint, tagSYSKIND, int> delegate_002A; + if (flag) + { + HINSTANCE__* moduleHandleW = GetModuleHandleW((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BK_0040EDKOLFBJ_0040_003F_0024AAO_003F_0024AAL_003F_0024AAE_003F_0024AAA_003F_0024AAU_003F_0024AAT_003F_0024AA3_003F_0024AA2_003F_0024AA_003F4_003F_0024AAD_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024AA_0040)); + if (moduleHandleW != null) + { + delegate_002A = (delegate* unmanaged[Stdcall, Stdcall]<_GUID*, ushort, ushort, uint, tagSYSKIND, int>)GetProcAddress(moduleHandleW, (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BJ_0040CNLFOMHB_0040UnRegisterTypeLibForUser_003F_0024AA_0040)); + if ((delegate* unmanaged[Stdcall, Stdcall]<_GUID*, ushort, ushort, uint, tagSYSKIND, int>)null != delegate_002A) + { + goto IL_00b5; + } + } + } + delegate_002A = (delegate* unmanaged[Stdcall, Stdcall]<_GUID*, ushort, ushort, uint, tagSYSKIND, int>)global::_003CModule_003E.__unep_0040_003FUnRegisterTypeLib_0040_0040_0024_0024J220YGJABU_GUID_0040_0040GGKW4tagSYSKIND_0040_0040_0040Z; + goto IL_00b5; + IL_00b5: + tagTLIBATTR* num2 = ptr; + num = delegate_002A((_GUID*)num2, ((ushort*)num2)[12], ((ushort*)ptr)[13], ((uint*)ptr)[4], ((tagSYSKIND*)ptr)[5]); + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)) + 48)))((IntPtr)(*(int*)(&cComPtr_003CITypeLib_003E)), ptr); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CITypeLib_003E_002E_007Bdtor_007D), &cComPtr_003CITypeLib_003E); + throw; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR); + throw; + } + goto IL_0103; + IL_0103: + try + { + try + { + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CITypeLib_003E_002E_007Bdtor_007D), &cComPtr_003CITypeLib_003E); + throw; + } + if (*(int*)(&cComPtr_003CITypeLib_003E) != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)) + 8)))((IntPtr)(*(int*)(&cComPtr_003CITypeLib_003E))); + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR); + throw; + } + SysFreeString((char*)(int)(*(uint*)(&cComBSTR))); + return num; + IL_0081: + SysFreeString((char*)(int)(*(uint*)(&cComBSTR))); + return num; + } + + internal unsafe static void ATL_002ECComPtr_003CITypeLib_003E_002E_007Bdtor_007D(CComPtr_003CITypeLib_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + internal unsafe static int AtlRegisterTypeLib(HINSTANCE__* hInstTypeLib, char* lpszIndex) + { + //Discarded unreachable code: IL_030c + System.Runtime.CompilerServices.Unsafe.SkipInit(out CComBSTR cComBSTR); + *(int*)(&cComBSTR) = 0; + System.Runtime.CompilerServices.Unsafe.SkipInit(out CComPtr_003CITypeLib_003E cComPtr_003CITypeLib_003E); + char* ptr; + System.Runtime.CompilerServices.Unsafe.SkipInit(out CComBSTR cComBSTR2); + bool flag; + int num; + try + { + *(int*)(&cComPtr_003CITypeLib_003E) = 0; + try + { + num = AtlLoadTypeLib(hInstTypeLib, lpszIndex, (char**)(&cComBSTR), (ITypeLib**)(&cComPtr_003CITypeLib_003E)); + if (num >= 0) + { + ptr = null; + *(int*)(&cComBSTR2) = 0; + try + { + if (((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)) + 36)))((IntPtr)(*(int*)(&cComPtr_003CITypeLib_003E)), -1, null, null, null, (char**)(&cComBSTR2)) >= 0 && *(int*)(&cComBSTR2) != 0) + { + uint num2 = SysStringLen((char*)(int)(*(uint*)(&cComBSTR2))); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAE_0040_W _0024ArrayType_0024_0024_0024BY0BAE_0040_W2); + switch (wcsncpy_s((char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2), 260u, (char*)(int)(*(uint*)(&cComBSTR2)), num2)) + { + case 12: + ATL_002EAtlThrowImpl(-2147024882); + goto case 22; + case 22: + case 34: + ATL_002EAtlThrowImpl(-2147024809); + goto case 0; + case 0: + case 80: + System.Runtime.CompilerServices.Unsafe.As<_0024ArrayType_0024_0024_0024BY0BAE_0040_W, short>(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _0024ArrayType_0024_0024_0024BY0BAE_0040_W2, 518)) = 0; + *(short*)((ref *(_003F*)(ATL_002E_003FA0xda2128e9_002EAtlGetDirLen((char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2)) * 2)) + (ref *(_003F*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2))) = 0; + ptr = (char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2); + break; + default: + ATL_002EAtlThrowImpl(-2147467259); + break; + } + } + flag = false; + num = AtlGetPerUserRegistration(&flag); + if (num >= 0) + { + goto IL_025b; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR2); + throw; + } + SysFreeString((char*)(int)(*(uint*)(&cComBSTR2))); + goto IL_0229; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CITypeLib_003E_002E_007Bdtor_007D), &cComPtr_003CITypeLib_003E); + throw; + } + goto end_IL_0004; + IL_0229: + if (*(int*)(&cComPtr_003CITypeLib_003E) != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)) + 8)))((IntPtr)(*(int*)(&cComPtr_003CITypeLib_003E))); + } + goto IL_0250; + end_IL_0004:; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR); + throw; + } + goto IL_02cb; + IL_025b: + try + { + try + { + try + { + delegate* unmanaged[Stdcall, Stdcall] delegate_002A; + if (flag) + { + HINSTANCE__* moduleHandleW = GetModuleHandleW((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BK_0040EDKOLFBJ_0040_003F_0024AAO_003F_0024AAL_003F_0024AAE_003F_0024AAA_003F_0024AAU_003F_0024AAT_003F_0024AA3_003F_0024AA2_003F_0024AA_003F4_003F_0024AAD_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024AA_0040)); + if (moduleHandleW != null) + { + delegate_002A = (delegate* unmanaged[Stdcall, Stdcall])GetProcAddress(moduleHandleW, (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BH_0040LBOMMKPJ_0040RegisterTypeLibForUser_003F_0024AA_0040)); + if ((delegate* unmanaged[Stdcall, Stdcall])null != delegate_002A) + { + goto IL_0284; + } + } + } + delegate_002A = (delegate* unmanaged[Stdcall, Stdcall])global::_003CModule_003E.__unep_0040_003FRegisterTypeLib_0040_0040_0024_0024J212YGJPAUITypeLib_0040_0040PB_W1_0040Z; + goto IL_0284; + IL_0284: + num = delegate_002A((ITypeLib*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)), (char*)(int)(*(uint*)(&cComBSTR)), ptr); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR2); + throw; + } + SysFreeString((char*)(int)(*(uint*)(&cComBSTR2))); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CITypeLib_003E_002E_007Bdtor_007D), &cComPtr_003CITypeLib_003E); + throw; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR); + throw; + } + goto IL_02cb; + IL_02cb: + try + { + try + { + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CITypeLib_003E_002E_007Bdtor_007D), &cComPtr_003CITypeLib_003E); + throw; + } + if (*(int*)(&cComPtr_003CITypeLib_003E) != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CITypeLib_003E)) + 8)))((IntPtr)(*(int*)(&cComPtr_003CITypeLib_003E))); + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), &cComBSTR); + throw; + } + SysFreeString((char*)(int)(*(uint*)(&cComBSTR))); + return num; + IL_0250: + SysFreeString((char*)(int)(*(uint*)(&cComBSTR))); + return num; + } + + internal unsafe static int AtlComModuleRegisterServer(_ATL_COM_MODULE70* pComModule, int bRegTypeLib, _GUID* pCLSID) + { + if (pComModule == null) + { + return -2147024809; + } + int num = 0; + _ATL_OBJMAP_ENTRY30** ptr = (_ATL_OBJMAP_ENTRY30**)(int)((uint*)pComModule)[2]; + if ((nuint)ptr >= (nuint)((int*)pComModule)[3]) + { + goto IL_0063; + } + while (true) + { + uint num2 = *(uint*)ptr; + if (num2 != 0) + { + _ATL_OBJMAP_ENTRY30* ptr2 = (_ATL_OBJMAP_ENTRY30*)(int)num2; + if (pCLSID == null || IsEqualGUID(pCLSID, (_GUID*)(int)(*(uint*)ptr2)) != 0) + { + num = ((delegate* unmanaged[Stdcall, Stdcall])(int)((uint*)ptr2)[1])(1); + if (num < 0) + { + break; + } + num = AtlRegisterClassCategoriesHelper((_GUID*)(int)(*(uint*)ptr2), ((delegate* unmanaged[Cdecl, Cdecl]<_ATL_CATMAP_ENTRY*>)(int)((uint*)ptr2)[7])(), 1); + if (num < 0) + { + break; + } + } + } + ptr = (_ATL_OBJMAP_ENTRY30**)((byte*)ptr + 4); + if ((nuint)ptr < (nuint)((int*)pComModule)[3]) + { + continue; + } + goto IL_005f; + } + goto IL_0071; + IL_005f: + if (num >= 0) + { + goto IL_0063; + } + goto IL_0071; + IL_0063: + if (bRegTypeLib != 0) + { + num = AtlRegisterTypeLib((HINSTANCE__*)(int)((uint*)pComModule)[1], null); + } + goto IL_0071; + IL_0071: + return num; + } + + internal unsafe static int AtlComModuleUnregisterServer(_ATL_COM_MODULE70* pComModule, int bUnRegTypeLib, _GUID* pCLSID) + { + if (pComModule == null) + { + return -2147024809; + } + int num = 0; + _ATL_OBJMAP_ENTRY30** ptr = (_ATL_OBJMAP_ENTRY30**)(int)((uint*)pComModule)[2]; + if ((nuint)ptr >= (nuint)((int*)pComModule)[3]) + { + goto IL_0063; + } + while (true) + { + uint num2 = *(uint*)ptr; + if (num2 != 0) + { + _ATL_OBJMAP_ENTRY30* ptr2 = (_ATL_OBJMAP_ENTRY30*)(int)num2; + if (pCLSID == null || IsEqualGUID(pCLSID, (_GUID*)(int)(*(uint*)ptr2)) != 0) + { + num = AtlRegisterClassCategoriesHelper((_GUID*)(int)(*(uint*)ptr2), ((delegate* unmanaged[Cdecl, Cdecl]<_ATL_CATMAP_ENTRY*>)(int)((uint*)ptr2)[7])(), 0); + if (num < 0) + { + break; + } + num = ((delegate* unmanaged[Stdcall, Stdcall])(int)((uint*)ptr2)[1])(0); + if (num < 0) + { + break; + } + } + } + ptr = (_ATL_OBJMAP_ENTRY30**)((byte*)ptr + 4); + if ((nuint)ptr < (nuint)((int*)pComModule)[3]) + { + continue; + } + goto IL_005f; + } + goto IL_0071; + IL_005f: + if (num >= 0) + { + goto IL_0063; + } + goto IL_0071; + IL_0063: + if (bUnRegTypeLib != 0) + { + num = AtlUnRegisterTypeLib((HINSTANCE__*)(int)((uint*)pComModule)[1], null); + } + goto IL_0071; + IL_0071: + return num; + } + + internal unsafe static void* ATL_002ECComTypeInfoHolder_002Estringdispid_002E__vecDelDtor(CComTypeInfoHolder.stringdispid* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + CComTypeInfoHolder.stringdispid* ptr = (CComTypeInfoHolder.stringdispid*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 12u, *(int*)ptr, (delegate*)(delegate*)(&ATL_002ECComTypeInfoHolder_002Estringdispid_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + SysFreeString((char*)(int)(*(uint*)P_0)); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static void ATL_002ECComTypeInfoHolder_002Estringdispid_002E_007Bdtor_007D(CComTypeInfoHolder.stringdispid* P_0) + { + SysFreeString((char*)(int)(*(uint*)P_0)); + } + + internal static void _com_util_002ECheckError(int hr) + { + if (hr < 0) + { + _com_issue_error(hr); + } + } + + internal unsafe static _bstr_t* _bstr_t_002E_007Bctor_007D(_bstr_t* P_0) + { + *(int*)P_0 = 0; + return P_0; + } + + [SpecialName] + internal unsafe static _bstr_t* _bstr_t_002E_007Bctor_007D(_bstr_t* P_0, _bstr_t* s) + { + int num = (*(int*)P_0 = *(int*)s); + if (num != 0) + { + InterlockedIncrement((int*)(num + 8)); + } + return P_0; + } + + internal unsafe static _bstr_t* _bstr_t_002E_007Bctor_007D(_bstr_t* P_0, char* s) + { + //Discarded unreachable code: IL_0050 + _bstr_t.Data_t* ptr = (_bstr_t.Data_t*)@new(12u); + _bstr_t.Data_t* ptr3; + try + { + if (ptr != null) + { + ((int*)ptr)[1] = 0; + ((int*)ptr)[2] = 1; + char* ptr2 = SysAllocString(s); + *(int*)ptr = (int)ptr2; + if (ptr2 == null && s != null) + { + _com_issue_error(-2147024882); + } + ptr3 = ptr; + } + else + { + ptr3 = null; + } + } + catch + { + //try-fault + delete(ptr); + throw; + } + *(int*)P_0 = (int)ptr3; + if (ptr3 == null) + { + _com_issue_error(-2147024882); + } + return P_0; + } + + internal unsafe static _bstr_t* _bstr_t_002E_007Bctor_007D(_bstr_t* P_0, char* bstr, [MarshalAs(UnmanagedType.U1)] bool fCopy) + { + //Discarded unreachable code: IL_005c + _bstr_t.Data_t* ptr = (_bstr_t.Data_t*)@new(12u); + _bstr_t.Data_t* ptr3; + try + { + if (ptr != null) + { + ((int*)ptr)[1] = 0; + ((int*)ptr)[2] = 1; + if (fCopy && bstr != null) + { + char* ptr2 = SysAllocStringByteLen((sbyte*)bstr, SysStringByteLen(bstr)); + *(int*)ptr = (int)ptr2; + if (ptr2 != null) + { + goto IL_003b; + } + _com_issue_error(-2147024882); + } + *(int*)ptr = (int)bstr; + goto IL_003b; + } + ptr3 = null; + goto end_IL_0008; + IL_003b: + ptr3 = ptr; + end_IL_0008:; + } + catch + { + //try-fault + delete(ptr); + throw; + } + *(int*)P_0 = (int)ptr3; + if (ptr3 == null) + { + _com_issue_error(-2147024882); + } + return P_0; + } + + internal unsafe static void _bstr_t_002E_007Bdtor_007D(_bstr_t* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)num); + *(int*)P_0 = 0; + } + } + + internal unsafe static _bstr_t* _bstr_t_002E_003D(_bstr_t* P_0, _bstr_t* s) + { + if (P_0 != s) + { + uint num = *(uint*)P_0; + if (num != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)num); + *(int*)P_0 = 0; + } + int num2 = (*(int*)P_0 = *(int*)s); + if (num2 != 0) + { + InterlockedIncrement((int*)(num2 + 8)); + } + } + return P_0; + } + + internal unsafe static char* _bstr_t_002E_002EPB_W(_bstr_t* P_0) + { + uint num = *(uint*)P_0; + return (char*)(int)((num != 0) ? (*(uint*)(int)num) : 0u); + } + + internal unsafe static char* _bstr_t_002E_002EPA_W(_bstr_t* P_0) + { + uint num = *(uint*)P_0; + return (char*)(int)((num != 0) ? (*(uint*)(int)num) : 0u); + } + + internal unsafe static uint _bstr_t_002Elength(_bstr_t* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + uint num2 = *(uint*)(int)num; + return (num2 != 0) ? SysStringLen((char*)(int)num2) : 0u; + } + return 0u; + } + + internal unsafe static void _bstr_t_002E_AddRef(_bstr_t* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + InterlockedIncrement((int*)(int)(num + 8)); + } + } + + internal unsafe static void _bstr_t_002E_Free(_bstr_t* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)num); + *(int*)P_0 = 0; + } + } + + internal unsafe static _bstr_t.Data_t* _bstr_t_002EData_t_002E_007Bctor_007D(_bstr_t.Data_t* P_0, char* s) + { + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 1; + char* ptr = SysAllocString(s); + *(int*)P_0 = (int)ptr; + if (ptr == null && s != null) + { + _com_issue_error(-2147024882); + } + return P_0; + } + + internal unsafe static _bstr_t.Data_t* _bstr_t_002EData_t_002E_007Bctor_007D(_bstr_t.Data_t* P_0, char* bstr, [MarshalAs(UnmanagedType.U1)] bool fCopy) + { + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 1; + if (fCopy && bstr != null) + { + char* ptr = SysAllocStringByteLen((sbyte*)bstr, SysStringByteLen(bstr)); + *(int*)P_0 = (int)ptr; + if (ptr != null) + { + goto IL_0030; + } + _com_issue_error(-2147024882); + } + *(int*)P_0 = (int)bstr; + goto IL_0030; + IL_0030: + return P_0; + } + + internal unsafe static uint _bstr_t_002EData_t_002EAddRef(_bstr_t.Data_t* P_0) + { + _bstr_t.Data_t* ptr = (_bstr_t.Data_t*)((byte*)P_0 + 8); + InterlockedIncrement((int*)ptr); + return *(uint*)ptr; + } + + internal unsafe static uint _bstr_t_002EData_t_002ERelease(_bstr_t.Data_t* P_0) + { + uint num = (uint)InterlockedDecrement((int*)P_0 + 2); + if (num == 0 && P_0 != null) + { + uint num2 = *(uint*)P_0; + if (num2 != 0) + { + SysFreeString((char*)(int)num2); + } + uint num3 = ((uint*)P_0)[1]; + if (num3 != 0) + { + delete_005B_005D((void*)(int)num3); + } + delete(P_0); + } + return num; + } + + internal unsafe static void* _bstr_t_002EData_t_002E__delDtor(_bstr_t.Data_t* P_0, uint P_1) + { + uint num = *(uint*)P_0; + if (num != 0) + { + SysFreeString((char*)(int)num); + } + uint num2 = ((uint*)P_0)[1]; + if (num2 != 0) + { + delete_005B_005D((void*)(int)num2); + } + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static char** _bstr_t_002EData_t_002EGetWString(_bstr_t.Data_t* P_0) + { + return (char**)P_0; + } + + internal unsafe static uint _bstr_t_002EData_t_002ELength(_bstr_t.Data_t* P_0) + { + uint num = *(uint*)P_0; + return (num != 0) ? SysStringLen((char*)(int)num) : 0u; + } + + internal unsafe static void* _bstr_t_002EData_t_002Enew(uint sz) + { + return @new(sz); + } + + internal unsafe static void _bstr_t_002EData_t_002E_007Bdtor_007D(_bstr_t.Data_t* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + SysFreeString((char*)(int)num); + } + uint num2 = ((uint*)P_0)[1]; + if (num2 != 0) + { + delete_005B_005D((void*)(int)num2); + } + } + + internal unsafe static void _bstr_t_002EData_t_002E_Free(_bstr_t.Data_t* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + SysFreeString((char*)(int)num); + } + uint num2 = ((uint*)P_0)[1]; + if (num2 != 0) + { + delete_005B_005D((void*)(int)num2); + } + } + + [SpecialName] + internal unsafe static _variant_t* _variant_t_002E_007Bctor_007D(_variant_t* P_0, _variant_t* varSrc) + { + VariantInit((tagVARIANT*)P_0); + int num = VariantCopy((tagVARIANT*)P_0, (tagVARIANT*)varSrc); + if (num < 0) + { + _com_issue_error(num); + } + return P_0; + } + + internal unsafe static _com_error* _com_error_002E_007Bctor_007D(_com_error* P_0, int hr, IErrorInfo* perrinfo, [MarshalAs(UnmanagedType.U1)] bool fAddRef) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_com_error_0040_00406B_0040); + ((int*)P_0)[1] = hr; + ((int*)P_0)[2] = (int)perrinfo; + ((int*)P_0)[3] = 0; + if (perrinfo != null && fAddRef) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)perrinfo + 4)))((nint)perrinfo); + } + return P_0; + } + + internal unsafe static void* _com_error_002E__vecDelDtor(_com_error* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + _com_error* ptr = (_com_error*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 16u, *(int*)ptr, (delegate*)(delegate*<_com_error*, void>)(&_com_error_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_com_error_0040_00406B_0040); + uint num = ((uint*)P_0)[2]; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + uint num2 = ((uint*)P_0)[3]; + if (num2 != 0) + { + LocalFree((void*)(int)num2); + } + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + [SpecialName] + internal unsafe static _com_error* _com_error_002E_007Bctor_007D(_com_error* P_0, _com_error* that) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_com_error_0040_00406B_0040); + ((int*)P_0)[1] = ((int*)that)[1]; + ((int*)P_0)[2] = ((int*)that)[2]; + ((int*)P_0)[3] = 0; + uint num = ((uint*)P_0)[2]; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 4)))((IntPtr)(int)num); + } + return P_0; + } + + internal unsafe static void _com_error_002E_007Bdtor_007D(_com_error* P_0) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_com_error_0040_00406B_0040); + uint num = ((uint*)P_0)[2]; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + uint num2 = ((uint*)P_0)[3]; + if (num2 != 0) + { + LocalFree((void*)(int)num2); + } + } + + internal unsafe static int _com_error_002EError(_com_error* P_0) + { + return ((int*)P_0)[1]; + } + + internal unsafe static ushort _com_error_002EWCode(_com_error* P_0) + { + int num = ((int*)P_0)[1]; + return (ushort)(((uint)(num + 2147220992) <= 65023u) ? ((ushort)(num + 2147220992)) : 0); + } + + internal unsafe static IErrorInfo* _com_error_002EErrorInfo(_com_error* P_0) + { + if (((int*)P_0)[2] != 0) + { + int num = ((int*)P_0)[2]; + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)num + 4)))((IntPtr)num); + } + return (IErrorInfo*)(int)((uint*)P_0)[2]; + } + + internal unsafe static _bstr_t* _com_error_002EDescription(_com_error* P_0, _bstr_t* P_1) + { + uint num = 0u; + char* ptr = null; + if (((int*)P_0)[2] != 0) + { + int num2 = ((int*)P_0)[2]; + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)num2 + 20)))((IntPtr)num2, &ptr); + } + char* ptr2 = ptr; + _bstr_t.Data_t* ptr3 = (_bstr_t.Data_t*)@new(12u); + try + { + _bstr_t.Data_t* ptr4; + try + { + if (ptr3 != null) + { + ((int*)ptr3)[1] = 0; + ((int*)ptr3)[2] = 1; + *(int*)ptr3 = (int)ptr2; + ptr4 = ptr3; + } + else + { + ptr4 = null; + } + } + catch + { + //try-fault + delete(ptr3); + throw; + } + *(int*)P_1 = (int)ptr4; + if (ptr4 == null) + { + _com_issue_error(-2147024882); + } + num = 1u; + return P_1; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), P_1); + } + throw; + } + } + + internal unsafe static _bstr_t* _com_error_002ESource(_com_error* P_0, _bstr_t* P_1) + { + uint num = 0u; + char* ptr = null; + if (((int*)P_0)[2] != 0) + { + int num2 = ((int*)P_0)[2]; + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)num2 + 16)))((IntPtr)num2, &ptr); + } + char* ptr2 = ptr; + _bstr_t.Data_t* ptr3 = (_bstr_t.Data_t*)@new(12u); + try + { + _bstr_t.Data_t* ptr4; + try + { + if (ptr3 != null) + { + ((int*)ptr3)[1] = 0; + ((int*)ptr3)[2] = 1; + *(int*)ptr3 = (int)ptr2; + ptr4 = ptr3; + } + else + { + ptr4 = null; + } + } + catch + { + //try-fault + delete(ptr3); + throw; + } + *(int*)P_1 = (int)ptr4; + if (ptr4 == null) + { + _com_issue_error(-2147024882); + } + num = 1u; + return P_1; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), P_1); + } + throw; + } + } + + internal unsafe static char* _com_error_002EErrorMessage(_com_error* P_0) + { + _com_error* ptr = (_com_error*)((byte*)P_0 + 12); + if (*(int*)ptr == 0) + { + FormatMessageW(4864u, null, ((uint*)P_0)[1], 1024u, (char*)ptr, 0u, null); + uint num = *(uint*)ptr; + if (num != 0) + { + int num2 = lstrlenW((char*)(int)num); + if (num2 > 1) + { + int num3 = num2 * 2 + *(int*)ptr - 2; + if (*(ushort*)num3 == 10) + { + *(short*)num3 = 0; + int num4 = num2 * 2 + *(int*)ptr - 4; + if (*(ushort*)num4 == 13) + { + *(short*)num4 = 0; + } + } + } + } + else + { + void* ptr2 = LocalAlloc(0u, 64u); + *(int*)ptr = (int)ptr2; + if (ptr2 != null) + { + ushort num5 = _com_error_002EWCode(P_0); + if (num5 != 0) + { + swprintf_s((char*)ptr2, 32u, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1CI_0040KPMALOMG_0040_003F_0024AAI_003F_0024AAD_003F_0024AAi_003F_0024AAs_003F_0024AAp_003F_0024AAa_003F_0024AAt_003F_0024AAc_003F_0024AAh_003F_0024AA_003F5_003F_0024AAe_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AA_003F_0024CD_003F_0024AA_003F_0024CF_003F_0024AAd_003F_0024AA_003F_0024AA_0040), __arglist((int)num5)); + } + else + { + swprintf_s((char*)ptr2, 32u, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1CK_0040DOIMBAJG_0040_003F_0024AAU_003F_0024AAn_003F_0024AAk_003F_0024AAn_003F_0024AAo_003F_0024AAw_003F_0024AAn_003F_0024AA_003F5_003F_0024AAe_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AA0_003F_0024AAx_003F_0024AA_003F_0024CF_003F_0024AA0_003F_0024AAl_003F_0024AAX_003F_0024AA_003F_0024AA_0040), __arglist(((int*)P_0)[1])); + } + } + } + } + return (char*)(int)(*(uint*)ptr); + } + + internal static ushort _com_error_002EHRESULTToWCode(int hr) + { + return (ushort)(((uint)(hr + 2147220992) <= 65023u) ? ((ushort)(hr + 2147220992)) : 0); + } + + internal unsafe static CWrapLogger* CWrapLogger_002E_007Bctor_007D(CWrapLogger* P_0) + { + *(int*)P_0 = 0; + ((int*)P_0)[1] = -1; + ((int*)P_0)[2] = 0; + ((int*)P_0)[3] = 0; + ((int*)P_0)[4] = 0; + ((int*)P_0)[5] = 0; + ((int*)P_0)[6] = 0; + ((int*)P_0)[7] = 0; + ((int*)P_0)[8] = 0; + ((int*)P_0)[9] = 0; + ((int*)P_0)[10] = 0; + ((int*)P_0)[11] = 0; + ((int*)P_0)[12] = 0; + ((int*)P_0)[13] = 0; + ((int*)P_0)[14] = 0; + ((int*)P_0)[15] = 0; + ((int*)P_0)[16] = 0; + ((int*)P_0)[17] = 0; + ((int*)P_0)[18] = 0; + ((int*)P_0)[19] = 0; + ((int*)P_0)[20] = 0; + ((int*)P_0)[21] = 0; + ((int*)P_0)[22] = 0; + ((int*)P_0)[23] = 0; + ((int*)P_0)[24] = 0; + ((int*)P_0)[25] = 0; + ((int*)P_0)[26] = 0; + ((int*)P_0)[27] = 0; + ((int*)P_0)[28] = 0; + ((int*)P_0)[29] = 0; + ((int*)P_0)[30] = 0; + ((int*)P_0)[31] = 0; + ((int*)P_0)[32] = 0; + ((int*)P_0)[33] = 0; + ((int*)P_0)[34] = 0; + ((int*)P_0)[35] = 0; + ((int*)P_0)[36] = 0; + ((int*)P_0)[37] = 0; + ((int*)P_0)[38] = 0; + ((int*)P_0)[39] = 0; + ((int*)P_0)[40] = 0; + ((int*)P_0)[41] = 0; + // IL initblk instruction + System.Runtime.CompilerServices.Unsafe.InitBlock((byte*)P_0 + 168, 0, 44); + return P_0; + } + + internal unsafe static void CWrapLogger_002E_007Bdtor_007D(CWrapLogger* P_0) + { + int num = ((int*)P_0)[1]; + if (num != -1) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)((uint*)P_0)[40])(num); + ((int*)P_0)[1] = -1; + } + if (*(int*)P_0 != 0) + { + CWrapLogger_002EUnloadLoggerDLL(P_0); + } + // IL initblk instruction + System.Runtime.CompilerServices.Unsafe.InitBlock((byte*)P_0 + 168, 0, 44); + } + + internal unsafe static int CWrapLogger_002ELogStartEx(CWrapLogger* P_0) + { + if (CWrapLogger_002EInitialize(P_0)) + { + uint num = ((uint*)P_0)[2]; + if (num != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)num)(((int*)P_0)[1]) != 0 && ((int*)P_0)[36] != 0) + { + int num2 = 0; + CWrapLogger* ptr = (CWrapLogger*)((byte*)P_0 + 168); + do + { + *(int*)ptr = (int)((delegate* unmanaged[Cdecl, Cdecl])(int)((uint*)P_0)[36])(((int*)P_0)[1], num2); + num2++; + ptr = (CWrapLogger*)((byte*)ptr + 4); + } + while ((uint)num2 < 11u); + return 1; + } + } + return 0; + } + + internal unsafe static int CWrapLogger_002ELogStart(CWrapLogger* P_0) + { + if (CWrapLogger_002EInitialize(P_0)) + { + uint num = ((uint*)P_0)[2]; + if (num != 0) + { + return ((delegate* unmanaged[Cdecl, Cdecl])(int)num)(((int*)P_0)[1]); + } + } + return 0; + } + + internal unsafe static void CWrapLogger_002ESetIdentityName(CWrapLogger* P_0, char* pIdentityName) + { + if (CWrapLogger_002EInitialize(P_0)) + { + uint num = ((uint*)P_0)[4]; + if (num != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)num)(((int*)P_0)[1], pIdentityName); + } + } + } + + internal unsafe static uint* CWrapLogger_002EGetLogFlag(CWrapLogger* P_0, int iflag) + { + if ((uint)iflag <= 10u) + { + if (((int*)(iflag * 4 + (byte*)P_0))[42] == 0 && CWrapLogger_002ELogStartEx(P_0) == 0) + { + return null; + } + return (uint*)(int)((uint*)(iflag * 4 + (byte*)P_0))[42]; + } + return null; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CWrapLogger_002ELogFlagLog(CWrapLogger* P_0, uint* clf, uint dwCookie) + { + if (CWrapLogger_002EInitialize(P_0)) + { + uint num = ((uint*)P_0)[41]; + if (num != 0) + { + return ((delegate* unmanaged[Cdecl, Cdecl])(int)num)(((int*)P_0)[1], clf, dwCookie) != 0; + } + } + return false; + } + + internal unsafe static uint* CWrapLogger_002ERegisterLogFlag(CWrapLogger* P_0, tagLogFlagCategory lfCat, char* pCatName) + { + if (CWrapLogger_002EInitialize(P_0)) + { + uint num = ((uint*)P_0)[8]; + if (num != 0) + { + return ((delegate* unmanaged[Cdecl, Cdecl])(int)num)(((int*)P_0)[1], lfCat, pCatName); + } + } + return null; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CWrapLogger_002ELoadLoggerDLL(CWrapLogger* P_0) + { + if (*(int*)P_0 != 0) + { + return true; + } + uint num = 522u; + bool flag = true; + System.Runtime.CompilerServices.Unsafe.SkipInit(out HKEY__* ptr); + System.Runtime.CompilerServices.Unsafe.SkipInit(out uint num2); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAF_0040_W _0024ArrayType_0024_0024_0024BY0BAF_0040_W2); + if (RegOpenKeyExW((HKEY__*)(-2147483646), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xda2128e9_002EszLoggerRegPath), 0u, 131097u, &ptr) != 0) + { + ptr = null; + flag = false; + } + else if (RegQueryValueExW(ptr, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BI_0040NFCPJLAG_0040_003F_0024AAI_003F_0024AAn_003F_0024AAs_003F_0024AAt_003F_0024AAa_003F_0024AAl_003F_0024AAl_003F_0024AAP_003F_0024AAa_003F_0024AAt_003F_0024AAh_003F_0024AA_003F_0024AA_0040), null, &num2, (byte*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2), &num) != 0) + { + flag = false; + } + RegCloseKey(ptr); + if (flag) + { + _0024ArrayType_0024_0024_0024BY0BAF_0040_W* ptr2 = &_0024ArrayType_0024_0024_0024BY0BAF_0040_W2; + if (*(short*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2) != 0) + { + do + { + ptr2 = (_0024ArrayType_0024_0024_0024BY0BAF_0040_W*)((byte*)ptr2 + 2); + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr2) != 0); + } + if ((nint)((ref *(_003F*)ptr2) - (ref *(_003F*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2))) >> 1 != 0) + { + _0024ArrayType_0024_0024_0024BY0BAF_0040_W* ptr3 = &_0024ArrayType_0024_0024_0024BY0BAF_0040_W2; + if (*(short*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2) != 0) + { + do + { + ptr3 = (_0024ArrayType_0024_0024_0024BY0BAF_0040_W*)((byte*)ptr3 + 2); + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr3) != 0); + } + nint num3 = (nint)((ref *(_003F*)ptr3) - (ref *(_003F*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2))) >> 1; + char* ptr4 = (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_13FPGAJAPJ_0040_003F_0024AA_003F2_003F_0024AA_003F_0024AA_0040); + _0024ArrayType_0024_0024_0024BY0BAF_0040_W* ptr5 = (_0024ArrayType_0024_0024_0024BY0BAF_0040_W*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.SubtractByteOffset(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(byteOffset: num3 * 2, source: ref _0024ArrayType_0024_0024_0024BY0BAF_0040_W2), 2)); + short num4 = System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr5); + short num5 = 92; + if (num4 >= 92) + { + while (num4 <= num5) + { + if (num4 != 0) + { + ptr5 = (_0024ArrayType_0024_0024_0024BY0BAF_0040_W*)((byte*)ptr5 + 2); + ptr4++; + num4 = System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr5); + num5 = System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr4); + if (num4 < num5) + { + break; + } + continue; + } + goto IL_00e5; + } + } + wcscat_s((char*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2), 261u, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_13FPGAJAPJ_0040_003F_0024AA_003F2_003F_0024AA_003F_0024AA_0040)); + goto IL_00e5; + } + } + wcscpy_s((char*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2), 261u, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BM_0040HGNMANJP_0040_003F_0024AAL_003F_0024AAo_003F_0024AAg_003F_0024AAg_003F_0024AAe_003F_0024AAr_003F_0024AAD_003F_0024AAL_003F_0024AAL_003F_0024AA_003F4_003F_0024AAd_003F_0024AAl_003F_0024AAl_003F_0024AA_003F_0024AA_0040)); + goto IL_010b; + IL_00e5: + wcscat_s((char*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2), 261u, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BM_0040HGNMANJP_0040_003F_0024AAL_003F_0024AAo_003F_0024AAg_003F_0024AAg_003F_0024AAe_003F_0024AAr_003F_0024AAD_003F_0024AAL_003F_0024AAL_003F_0024AA_003F4_003F_0024AAd_003F_0024AAl_003F_0024AAl_003F_0024AA_003F_0024AA_0040)); + goto IL_010b; + IL_010b: + HINSTANCE__* ptr6 = LoadLibraryExW((char*)(&_0024ArrayType_0024_0024_0024BY0BAF_0040_W2), null, 8u); + *(int*)P_0 = (int)ptr6; + if (ptr6 == null) + { + return false; + } + ((int*)P_0)[2] = (int)GetProcAddress(ptr6, (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_08IFIPMOHA_0040LOGSTART_003F_0024AA_0040)); + ((int*)P_0)[3] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_07LOFAHCDH_0040LOGSTOP_003F_0024AA_0040)); + ((int*)P_0)[4] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040MPEPPNLK_0040SETIDENTITYNAME_003F_0024AA_0040)); + ((int*)P_0)[5] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040NHIGJIIM_0040ADDINSTANCENAME_003F_0024AA_0040)); + ((int*)P_0)[6] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BD_0040ILCNCFAH_0040REMOVEINSTANCENAME_003F_0024AA_0040)); + ((int*)P_0)[7] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BE_0040FILCLPDE_0040REMOVEINSTANCENAME1_003F_0024AA_0040)); + ((int*)P_0)[8] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040KCFEFNI_0040REGISTERLOGFLAG_003F_0024AA_0040)); + ((int*)P_0)[9] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BC_0040ELGEGIFK_0040REGISTERLOGFLAGEX_003F_0024AA_0040)); + ((int*)P_0)[10] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_08NPEILFIC_0040LOGERROR_003F_0024AA_0040)); + ((int*)P_0)[11] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_09MFDEKNAL_0040LOGERROR1_003F_0024AA_0040)); + ((int*)P_0)[12] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0L_0040KFFCFCKB_0040LOGWARNING_003F_0024AA_0040)); + ((int*)P_0)[13] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0M_0040GHCJMGJO_0040LOGWARNING1_003F_0024AA_0040)); + ((int*)P_0)[14] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_07GJCPHPPO_0040LOGINFO_003F_0024AA_0040)); + ((int*)P_0)[15] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_08JMDBPHNG_0040LOGINFO1_003F_0024AA_0040)); + ((int*)P_0)[16] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_08FJPHOBDP_0040LOGTRACE_003F_0024AA_0040)); + ((int*)P_0)[17] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_09HAGCNNGO_0040LOGTRACE1_003F_0024AA_0040)); + ((int*)P_0)[18] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0N_0040CLGGFCLK_0040LOGSTARTSTOP_003F_0024AA_0040)); + ((int*)P_0)[19] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0O_0040ONMCDLHC_0040LOGSTARTSTOP1_003F_0024AA_0040)); + ((int*)P_0)[20] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0N_0040HFGKCDEH_0040LOGENTRYEXIT_003F_0024AA_0040)); + ((int*)P_0)[21] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0O_0040COJALJKC_0040LOGENTRYEXIT1_003F_0024AA_0040)); + ((int*)P_0)[22] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BD_0040EKMEGPHB_0040LOGTHREADSTARTSTOP_003F_0024AA_0040)); + ((int*)P_0)[23] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BE_0040OBBFICHH_0040LOGTHREADSTARTSTOP1_003F_0024AA_0040)); + ((int*)P_0)[24] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_06BNOPOHKO_0040LOGSQL_003F_0024AA_0040)); + ((int*)P_0)[25] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_07PHCOGGLK_0040LOGSQL1_003F_0024AA_0040)); + ((int*)P_0)[26] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0O_0040DABOCFFK_0040LOGCONNECTION_003F_0024AA_0040)); + ((int*)P_0)[27] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0P_0040ENNDKBHN_0040LOGCONNECTION1_003F_0024AA_0040)); + ((int*)P_0)[28] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0M_0040FHLEMPNE_0040LOGCTORDTOR_003F_0024AA_0040)); + ((int*)P_0)[29] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0N_0040EHLEKFLA_0040LOGCTORDTOR1_003F_0024AA_0040)); + ((int*)P_0)[30] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0M_0040JJPIKHHL_0040LOGREFCOUNT_003F_0024AA_0040)); + ((int*)P_0)[31] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0N_0040BBDFHKB_0040LOGREFCOUNT1_003F_0024AA_0040)); + ((int*)P_0)[32] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_09JGONFHHO_0040LOGCUSTOM_003F_0024AA_0040)); + ((int*)P_0)[33] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0L_0040HBHGLGNO_0040LOGCUSTOM1_003F_0024AA_0040)); + ((int*)P_0)[34] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0L_0040FKFLOFBN_0040LOGCUSTOM2_003F_0024AA_0040)); + ((int*)P_0)[35] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0L_0040EDEANEFM_0040LOGCUSTOM3_003F_0024AA_0040)); + ((int*)P_0)[36] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0L_0040CKBLACFO_0040GETLOGFLAG_003F_0024AA_0040)); + ((int*)P_0)[37] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040PNFJIPKD_0040GETIDENTITYNAME_003F_0024AA_0040)); + ((int*)P_0)[38] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040FLFOBGOM_0040GETINSTANCENAME_003F_0024AA_0040)); + ((int*)P_0)[39] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BF_0040LBFMFPBC_0040REGISTERLOGGERCLIENT_003F_0024AA_0040)); + ((int*)P_0)[40] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BH_0040BMJDDFKB_0040UNREGISTERLOGGERCLIENT_003F_0024AA_0040)); + ((int*)P_0)[41] = (int)GetProcAddress((HINSTANCE__*)(int)(*(uint*)P_0), (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0L_0040MKNKIKJF_0040LOGFLAGLOG_003F_0024AA_0040)); + return true; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CWrapLogger_002EUnloadLoggerDLL(CWrapLogger* P_0) + { + uint num = *(uint*)P_0; + if (num == 0) + { + return true; + } + if (FreeLibrary((HINSTANCE__*)(int)num) != 0) + { + *(int*)P_0 = 0; + ((int*)P_0)[2] = 0; + ((int*)P_0)[3] = 0; + ((int*)P_0)[4] = 0; + ((int*)P_0)[5] = 0; + ((int*)P_0)[6] = 0; + ((int*)P_0)[7] = 0; + ((int*)P_0)[8] = 0; + ((int*)P_0)[9] = 0; + ((int*)P_0)[10] = 0; + ((int*)P_0)[11] = 0; + ((int*)P_0)[12] = 0; + ((int*)P_0)[13] = 0; + ((int*)P_0)[14] = 0; + ((int*)P_0)[15] = 0; + ((int*)P_0)[16] = 0; + ((int*)P_0)[17] = 0; + ((int*)P_0)[18] = 0; + ((int*)P_0)[19] = 0; + ((int*)P_0)[20] = 0; + ((int*)P_0)[21] = 0; + ((int*)P_0)[22] = 0; + ((int*)P_0)[23] = 0; + ((int*)P_0)[24] = 0; + ((int*)P_0)[25] = 0; + ((int*)P_0)[26] = 0; + ((int*)P_0)[27] = 0; + ((int*)P_0)[28] = 0; + ((int*)P_0)[29] = 0; + ((int*)P_0)[30] = 0; + ((int*)P_0)[31] = 0; + ((int*)P_0)[32] = 0; + ((int*)P_0)[33] = 0; + ((int*)P_0)[34] = 0; + ((int*)P_0)[35] = 0; + ((int*)P_0)[36] = 0; + ((int*)P_0)[37] = 0; + ((int*)P_0)[38] = 0; + ((int*)P_0)[39] = 0; + ((int*)P_0)[40] = 0; + ((int*)P_0)[41] = 0; + return true; + } + return false; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CWrapLogger_002EInitialize(CWrapLogger* P_0) + { + CWrapLogger* ptr = (CWrapLogger*)((byte*)P_0 + 4); + if (*(int*)ptr != -1) + { + return true; + } + if (*(int*)P_0 == 0) + { + CWrapLogger_002ELoadLoggerDLL(P_0); + if (*(int*)P_0 == 0) + { + goto IL_002e; + } + } + uint num = ((uint*)P_0)[39]; + if (num != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)num)((int*)ptr); + } + goto IL_002e; + IL_002e: + if (*(int*)ptr == -1) + { + return false; + } + CWrapLogger_002ESetDefaultIdentity(P_0); + return true; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CWrapLogger_002EUninitialize(CWrapLogger* P_0) + { + int num = ((int*)P_0)[1]; + if (num != -1) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)((uint*)P_0)[40])(num); + ((int*)P_0)[1] = -1; + } + if (*(int*)P_0 != 0) + { + CWrapLogger_002EUnloadLoggerDLL(P_0); + } + // IL initblk instruction + System.Runtime.CompilerServices.Unsafe.InitBlock((byte*)P_0 + 168, 0, 44); + return true; + } + + internal unsafe static void CWrapLogger_002ESetDefaultIdentity(CWrapLogger* P_0) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAE_0040_W _0024ArrayType_0024_0024_0024BY0BAE_0040_W2); + GetModuleFileNameW((HINSTANCE__*)(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref ATL_002E_AtlBaseModule, 4)), (char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2), 260u); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _WIN32_FIND_DATAW wIN32_FIND_DATAW); + void* ptr = FindFirstFileW((char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2), &wIN32_FIND_DATAW); + if (ptr != (void*)(-1)) + { + _wsplitpath_s((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref wIN32_FIND_DATAW, 44)), null, 0u, null, 0u, (char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2), 260u, null, 0u); + FindClose(ptr); + } + else + { + wcscat_s((char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2), 260u, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1CA_0040FHDNFEPA_0040_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAI_003F_0024AAn_003F_0024AAv_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAd_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_003F_0024AA_003F_0024AA_0040)); + } + if (CWrapLogger_002EInitialize(P_0)) + { + uint num = ((uint*)P_0)[4]; + if (num != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)num)(((int*)P_0)[1], (char*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040_W2)); + } + } + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CWrapLogger_002EReadPathFromRegistry(CWrapLogger* P_0, char* szPath, char* szRegName, char* szValue, uint dwValue) + { + bool result = true; + System.Runtime.CompilerServices.Unsafe.SkipInit(out HKEY__* ptr); + System.Runtime.CompilerServices.Unsafe.SkipInit(out uint num); + if (RegOpenKeyExW((HKEY__*)(-2147483646), szPath, 0u, 131097u, &ptr) != 0) + { + ptr = null; + result = false; + } + else if (RegQueryValueExW(ptr, szRegName, null, &num, (byte*)szValue, &dwValue) != 0) + { + result = false; + } + RegCloseKey(ptr); + return result; + } + + internal unsafe static CWrapLogger* CLoggerSelect_002E_GetFSLogger() + { + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + return (CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A); + } + + internal unsafe static void _003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ() + { + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 160)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) = -1; + } + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) != 0) + { + CWrapLogger_002EUnloadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + } + // IL initblk instruction + System.Runtime.CompilerServices.Unsafe.InitBlock(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 168), 0, 44); + } + + internal unsafe static void std_002E_Bool_function(_Bool_struct* P_0) + { + } + + internal unsafe static bad_alloc* std_002Ebad_alloc_002E_007Bctor_007D(bad_alloc* P_0, sbyte* _Message) + { + std_002Eexception_002E_007Bctor_007D((exception*)P_0, &_Message); + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7bad_alloc_0040std_0040_00406B_0040); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eexception_002E_007Bdtor_007D), P_0); + throw; + } + } + + internal unsafe static void std_002Ebad_alloc_002E_007Bdtor_007D(bad_alloc* P_0) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7bad_alloc_0040std_0040_00406B_0040); + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + } + + internal unsafe static void* std_002Ebad_alloc_002E__vecDelDtor(bad_alloc* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + bad_alloc* ptr = (bad_alloc*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 12u, *(int*)ptr, (delegate*)(delegate*)(&std_002Ebad_alloc_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7bad_alloc_0040std_0040_00406B_0040); + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + [SpecialName] + internal unsafe static _Exception_ptr* std_002E_Exception_ptr_002E_007Bctor_007D(_Exception_ptr* P_0, _Exception_ptr* _Rhs) + { + __ExceptionPtrCopy(P_0, _Rhs); + return P_0; + } + + internal unsafe static uint std_002Echar_traits_003Cwchar_t_003E_002Elength(char* _First) + { + char* ptr = _First; + if (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(_First) != 0) + { + do + { + ptr++; + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr) != 0); + } + return (uint)((nint)((byte*)ptr - (nuint)_First) >> 1); + } + + internal unsafe static char* std_002Echar_traits_003Cwchar_t_003E_002Ecopy(char* _First1, char* _First2, uint _Count) + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(_First1, _First2, _Count << 1); + return _First1; + } + + internal unsafe static char* std_002Echar_traits_003Cwchar_t_003E_002Emove(char* _First1, char* _First2, uint _Count) + { + return (char*)memmove(_First1, _First2, _Count << 1); + } + + internal unsafe static void std_002Echar_traits_003Cwchar_t_003E_002Eassign(char* _Left, char* _Right) + { + *_Left = *_Right; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool std_002Echar_traits_003Cwchar_t_003E_002Eeq_int_type(ushort* _Left, ushort* _Right) + { + return *_Left == *_Right; + } + + internal static ushort std_002Echar_traits_003Cwchar_t_003E_002Eeof() + { + return ushort.MaxValue; + } + + [SpecialName] + internal unsafe static _Iterator_base12* std_002E_Iterator_base12_002E_007Bctor_007D(_Iterator_base12* P_0, _Iterator_base12* _Right) + { + *(int*)P_0 = 0; + ((int*)P_0)[1] = 0; + uint num = *(uint*)_Right; + if (0 != num) + { + _Container_base12* ptr = (_Container_base12*)(int)(*(uint*)(int)num); + if (ptr != null) + { + *(int*)P_0 = *(int*)ptr; + } + } + return P_0; + } + + internal unsafe static _Iterator_base12* std_002E_Iterator_base12_002E_003D(_Iterator_base12* P_0, _Iterator_base12* _Right) + { + uint num = *(uint*)_Right; + if (*(int*)P_0 != (int)num) + { + _Container_base12* ptr = (_Container_base12*)(int)(*(uint*)(int)num); + if (ptr != null) + { + *(int*)P_0 = *(int*)ptr; + } + } + return P_0; + } + + internal unsafe static void std_002E_Iterator_base12_002E_Adopt(_Iterator_base12* P_0, _Container_base12* _Parent) + { + if (_Parent != null) + { + *(int*)P_0 = *(int*)_Parent; + } + } + + [SpecialName] + internal unsafe static allocator_003Cvoid_003E* std_002Eallocator_003Cvoid_003E_002E_007Bctor_007D(allocator_003Cvoid_003E* P_0, allocator_003Cvoid_003E* P_1) + { + return P_0; + } + + internal unsafe static void* std_002Eruntime_error_002E__vecDelDtor(runtime_error* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + runtime_error* ptr = (runtime_error*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 12u, *(int*)ptr, (delegate*)(delegate*)(&std_002Eruntime_error_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static void std_002Eruntime_error_002E_007Bdtor_007D(runtime_error* P_0) + { + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + } + + [SpecialName] + internal unsafe static runtime_error* std_002Eruntime_error_002E_007Bctor_007D(runtime_error* P_0, runtime_error* P_1) + { + std_002Eexception_002E_007Bctor_007D((exception*)P_0, (exception*)P_1); + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7runtime_error_0040std_0040_00406B_0040); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eexception_002E_007Bdtor_007D), P_0); + throw; + } + } + + [SpecialName] + internal unsafe static locale* std_002Elocale_002E_007Bctor_007D(locale* P_0, locale* _Right) + { + std_002Elocale_002Efacet_002E_Incref((locale.facet*)(*(int*)P_0 = *(int*)_Right)); + return P_0; + } + + internal unsafe static void* std_002Esystem_error_002E__vecDelDtor(system_error* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + system_error* ptr = (system_error*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 20u, *(int*)ptr, (delegate*)(delegate*)(&std_002Esystem_error_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static void std_002Esystem_error_002E_007Bdtor_007D(system_error* P_0) + { + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + } + + internal unsafe static void* std_002Eios_base_002Efailure_002E__vecDelDtor(ios_base.failure* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + ios_base.failure* ptr = (ios_base.failure*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 20u, *(int*)ptr, (delegate*)(delegate*)(&std_002Eios_base_002Efailure_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static void std_002Eios_base_002Efailure_002E_007Bdtor_007D(ios_base.failure* P_0) + { + std_002Eexception_002E_007Bdtor_007D((exception*)P_0); + } + + [SpecialName] + internal unsafe static ios_base.failure* std_002Eios_base_002Efailure_002E_007Bctor_007D(ios_base.failure* P_0, ios_base.failure* P_1) + { + std_002Eexception_002E_007Bctor_007D((exception*)P_0, (exception*)P_1); + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7runtime_error_0040std_0040_00406B_0040); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eexception_002E_007Bdtor_007D), P_0); + throw; + } + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7system_error_0040std_0040_00406B_0040); + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock((byte*)P_0 + 12, (byte*)P_1 + 12, 8); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eruntime_error_002E_007Bdtor_007D), P_0); + throw; + } + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7failure_0040ios_base_0040std_0040_00406B_0040); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Esystem_error_002E_007Bdtor_007D), P_0); + throw; + } + } + + [SpecialName] + internal unsafe static system_error* std_002Esystem_error_002E_007Bctor_007D(system_error* P_0, system_error* P_1) + { + std_002Eexception_002E_007Bctor_007D((exception*)P_0, (exception*)P_1); + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7runtime_error_0040std_0040_00406B_0040); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eexception_002E_007Bdtor_007D), P_0); + throw; + } + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7system_error_0040std_0040_00406B_0040); + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock((byte*)P_0 + 12, (byte*)P_1 + 12, 8); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eruntime_error_002E_007Bdtor_007D), P_0); + throw; + } + } + + internal unsafe static ios_base* std_002Edec(ios_base* _Iosbase) + { + std_002Eios_base_002Esetf(_Iosbase, 512, 3584); + return _Iosbase; + } + + internal unsafe static ios_base* std_002Ehex(ios_base* _Iosbase) + { + std_002Eios_base_002Esetf(_Iosbase, 2048, 3584); + return _Iosbase; + } + + internal unsafe static void com_eh_002ELogIfError(int e, char* s) + { + bool flag = false; + if (_003FplfLogFailures_0040_003F1_003F_003FLogIfError_0040com_eh_0040_0040YAXJPB_W_0040Z_00404PAKA == null) + { + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0095; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0095; + } + goto IL_00aa; + } + goto IL_00e3; + IL_00d7: + uint* ptr; + _003FplfLogFailures_0040_003F1_003F_003FLogIfError_0040com_eh_0040_0040YAXJPB_W_0040Z_00404PAKA = ptr; + if (ptr != null) + { + goto IL_00e3; + } + goto IL_01ba; + IL_0188: + uint* ptr2; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr2, 0u) != 0) + { + flag = true; + } + goto IL_01ba; + IL_00e3: + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr2 = _003FplfLogFailures_0040_003F1_003F_003FLogIfError_0040com_eh_0040_0040YAXJPB_W_0040Z_00404PAKA; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0173; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0173; + } + goto IL_0188; + IL_041e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0436; + } + return; + IL_01ba: + uint* ptr3; + if ((e & 0x1FFF0000) != 262144 && e != -2147467259) + { + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr3 = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 168)) != 0 || CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 168))) : 0); + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_02c6; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_02c6; + } + goto IL_02de; + } + if (!flag) + { + return; + } + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* ptr4 = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_041e; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_041e; + } + goto IL_0436; + IL_02de: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr3, 0u) != 0) + { + CWrapLogger_002ELogError(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_15GANGMFKL_0040_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024AA_0040), __arglist((ushort*)s)); + } + return; + IL_0436: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) == 0 || ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr4, 0u) == 0) + { + return; + } + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + CWrapLogger_002ELogWarning((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_15GANGMFKL_0040_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024AA_0040), __arglist((ushort*)s)); + return; + IL_0095: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00aa; + } + goto IL_00d5; + IL_02c6: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_02de; + } + return; + IL_00aa: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 32)) == 0) + { + goto IL_00d5; + } + ptr = ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 32)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), (tagLogFlagCategory)11, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BO_0040OADAGIBE_0040_003F_0024AAL_003F_0024AAo_003F_0024AAg_003F_0024AAA_003F_0024AAl_003F_0024AAl_003F_0024AAF_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AAu_003F_0024AAr_003F_0024AAe_003F_0024AAs_003F_0024AA_003F_0024AA_0040)); + goto IL_00d7; + IL_00d5: + ptr = null; + goto IL_00d7; + IL_0173: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0188; + } + goto IL_01ba; + } + + internal unsafe static com_error_dbg* com_eh_002Ecom_error_dbg_002E_007Bctor_007D(com_error_dbg* P_0, int hr, IErrorInfo* perrinfo, char* msg, sbyte* file, int line) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_com_error_0040_00406B_0040); + ((int*)P_0)[1] = hr; + ((int*)P_0)[2] = (int)perrinfo; + ((int*)P_0)[3] = 0; + if (perrinfo != null) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)perrinfo + 4)))((nint)perrinfo); + } + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7com_error_dbg_0040com_eh_0040_00406B_0040); + _bstr_t_002E_007Bctor_007D((_bstr_t*)((byte*)P_0 + 16), msg); + try + { + ((int*)P_0)[5] = (int)file; + ((int*)P_0)[6] = line; + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), (byte*)P_0 + 16); + throw; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_com_error*, void>)(&_com_error_002E_007Bdtor_007D), P_0); + throw; + } + } + + internal unsafe static _bstr_t* com_eh_002Ecom_error_dbg_002EErrorMessage(com_error_dbg* P_0, _bstr_t* P_1, EWhen when, sbyte* inFile, int inLine) + { + uint num = 0u; + sbyte* ptr = ((inFile == null) ? ((sbyte*)(int)((uint*)P_0)[5]) : inFile); + int num2 = ((inLine == 0) ? ((int*)P_0)[6] : inLine); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _bstr_t bstr_t); + *(int*)(&bstr_t) = 0; + try + { + try + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out _bstr_t bstr_t2); + *(int*)(&bstr_t2) = 0; + try + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj); + *(int*)(&obj) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_8_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00407B_003F_0024basic_istream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040_0040); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_8_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00407B_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040_0040); + std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 96))); + try + { + num = 2u; + std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D((basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(&obj), (basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 24)), 0); + try + { + *(int*)((ref *(_003F*)(*(int*)(*(int*)(&obj) + 4))) + (ref *(_003F*)(&obj))) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* pThis = (basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 24)); + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 24))); + try + { + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 24)) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 84)) = 0; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 88)) = 0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), pThis); + throw; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 24))); + throw; + } + } + catch + { + //try-fault + if ((num & 2) != 0) + { + num &= 0xFFFFFFFDu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 96))); + } + throw; + } + try + { + if (_bstr_t_002Elength((_bstr_t*)((byte*)P_0 + 16)) != 0) + { + uint num3 = ((uint*)P_0)[4]; + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(_Val: (char*)((num3 == 0) ? 0 : ((int)(*(uint*)(int)num3))), _Ostr: std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BG_0040DPKOFGLD_0040_003F_0024AAC_003F_0024AAo_003F_0024AAu_003F_0024AAl_003F_0024AAd_003F_0024AA_003F5_003F_0024AAn_003F_0024AAo_003F_0024AAt_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040))), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_17NBLPPKPK_0040_003F_0024AA_003F4_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)); + } + System.Runtime.CompilerServices.Unsafe.SkipInit(out _bstr_t bstr_t3); + _bstr_t* ptr2 = _com_error_002ESource((_com_error*)P_0, &bstr_t3); + try + { + if (&bstr_t != ptr2) + { + *(int*)(&bstr_t) = *(int*)ptr2; + if (*(int*)(&bstr_t) != 0) + { + InterlockedIncrement((int*)(*(int*)(&bstr_t) + 8)); + } + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), &bstr_t3); + throw; + } + if (*(int*)(&bstr_t3) != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)(*(uint*)(&bstr_t3))); + *(int*)(&bstr_t3) = 0; + } + System.Runtime.CompilerServices.Unsafe.SkipInit(out _bstr_t bstr_t4); + _bstr_t* ptr3 = _com_error_002EDescription((_com_error*)P_0, &bstr_t4); + try + { + if (&bstr_t2 != ptr3) + { + *(int*)(&bstr_t2) = *(int*)ptr3; + if (*(int*)(&bstr_t2) != 0) + { + InterlockedIncrement((int*)(*(int*)(&bstr_t2) + 8)); + } + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), &bstr_t4); + throw; + } + if (*(int*)(&bstr_t4) != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)(*(uint*)(&bstr_t4))); + *(int*)(&bstr_t4) = 0; + } + if (*(int*)(&bstr_t) != 0) + { + int num4 = *(int*)(int)(*(uint*)(&bstr_t)); + if (num4 != 0 && SysStringLen((char*)num4) != 0) + { + char* val = (char*)(int)(*(uint*)(int)(*(uint*)(&bstr_t))); + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1M_0040LEFLHPII_0040_003F_0024AAF_003F_0024AAr_003F_0024AAo_003F_0024AAm_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)), val), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_17NBLPPKPK_0040_003F_0024AA_003F4_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)); + } + } + if (*(int*)(&bstr_t2) != 0) + { + int num5 = *(int*)(int)(*(uint*)(&bstr_t2)); + if (num5 != 0 && SysStringLen((char*)num5) != 0) + { + char* val2 = (char*)(int)(*(uint*)(int)(*(uint*)(&bstr_t2))); + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), val2), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_17NBLPPKPK_0040_003F_0024AA_003F4_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)); + } + } + if (-2147418113 == com_eh_002Ecom_error_dbg_002EError(P_0)) + { + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1CG_0040MKBKEECM_0040_003F_0024AAU_003F_0024AAn_003F_0024AAe_003F_0024AAx_003F_0024AAp_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AAu_003F_0024AAr_003F_0024AAe_003F_0024AA_003F_0024AA_0040)); + } + else + { + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), _com_error_002EErrorMessage((_com_error*)P_0)); + } + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_15CMBHNMLL_0040_003F_0024AA_003F5_003F_0024AA_003F_0024CI_003F_0024AA_003F_0024AA_0040)), (delegate* unmanaged[Cdecl, Cdecl])__unep_0040_003Fhex_0040std_0040_0040_0024_0024FYAAAVios_base_00401_0040AAV21_0040_0040Z), com_eh_002Ecom_error_dbg_002EError(P_0)), (delegate* unmanaged[Cdecl, Cdecl])__unep_0040_003Fdec_0040std_0040_0040_0024_0024FYAAAVios_base_00401_0040AAV21_0040_0040Z), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_13DIBMAFH_0040_003F_0024AA_003F_0024CJ_003F_0024AA_003F_0024AA_0040)); + if ((EWhen)0 == when) + { + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BA_0040FPNNNPCM_0040_003F_0024AA_003F5_003F_0024AAr_003F_0024AAa_003F_0024AAi_003F_0024AAs_003F_0024AAe_003F_0024AAd_003F_0024AA_003F_0024AA_0040)); + } + else if ((EWhen)1 == when) + { + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BA_0040INIEBIMA_0040_003F_0024AA_003F5_003F_0024AAc_003F_0024AAa_003F_0024AAu_003F_0024AAg_003F_0024AAh_003F_0024AAt_003F_0024AA_003F_0024AA_0040)); + } + else if ((EWhen)2 == when) + { + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BA_0040PNPNGKLM_0040_003F_0024AA_003F5_003F_0024AAl_003F_0024AAo_003F_0024AAg_003F_0024AAg_003F_0024AAe_003F_0024AAd_003F_0024AA_003F_0024AA_0040)); + } + else + { + /*OpCode not supported: DebugBreak*/; + } + if (ptr != null) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY02D _0024ArrayType_0024_0024_0024BY02D2); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAA_0040D _0024ArrayType_0024_0024_0024BY0BAA_0040D2); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAA_0040D _0024ArrayType_0024_0024_0024BY0BAA_0040D3); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAA_0040D _0024ArrayType_0024_0024_0024BY0BAA_0040D4); + _splitpath_s(ptr, (sbyte*)(&_0024ArrayType_0024_0024_0024BY02D2), 3u, (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAA_0040D2), 256u, (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAA_0040D3), 256u, (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAA_0040D4), 256u); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAE_0040D _0024ArrayType_0024_0024_0024BY0BAE_0040D2); + _makepath_s((sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040D2), 260u, null, null, (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAA_0040D3), (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAA_0040D4)); + System.Runtime.CompilerServices.Unsafe.SkipInit(out _0024ArrayType_0024_0024_0024BY0BAE_0040D _0024ArrayType_0024_0024_0024BY0BAE_0040D3); + _makepath_s((sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040D3), 260u, (sbyte*)(&_0024ArrayType_0024_0024_0024BY02D2), (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAA_0040D2), null, null); + System.Runtime.CompilerServices.Unsafe.SkipInit(out CA2WEX_003C128_003E cA2WEX_003C128_003E); + *(int*)(&cA2WEX_003C128_003E) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref cA2WEX_003C128_003E, 4)); + ATL_002ECA2WEX_003C128_003E_002EInit(&cA2WEX_003C128_003E, (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040D2), 3u); + try + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out CA2WEX_003C128_003E cA2WEX_003C128_003E2); + *(int*)(&cA2WEX_003C128_003E2) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref cA2WEX_003C128_003E2, 4)); + ATL_002ECA2WEX_003C128_003E_002EInit(&cA2WEX_003C128_003E2, (sbyte*)(&_0024ArrayType_0024_0024_0024BY0BAE_0040D3), 3u); + try + { + std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BE_0040BJLMEAOD_0040_003F_0024AA_003F5_003F_0024AAa_003F_0024AAt_003F_0024AA_003F5_003F_0024AAl_003F_0024AAi_003F_0024AAn_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)), num2), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_19OEAOONN_0040_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)), (char*)(int)(*(uint*)(&cA2WEX_003C128_003E))), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1M_0040JNPJNLMI_0040_003F_0024AA_003F5_003F_0024AA_003F_0024CI_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)), (char*)(int)(*(uint*)(&cA2WEX_003C128_003E2))), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_13DIBMAFH_0040_003F_0024AA_003F_0024CJ_003F_0024AA_003F_0024AA_0040)); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECA2WEX_003C128_003E_002E_007Bdtor_007D), &cA2WEX_003C128_003E2); + throw; + } + if ((void*)(*(int*)(&cA2WEX_003C128_003E2)) != System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref cA2WEX_003C128_003E2, 4))) + { + free((void*)(int)(*(uint*)(&cA2WEX_003C128_003E2))); + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECA2WEX_003C128_003E_002E_007Bdtor_007D), &cA2WEX_003C128_003E); + throw; + } + if ((void*)(*(int*)(&cA2WEX_003C128_003E)) != System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref cA2WEX_003C128_003E, 4))) + { + free((void*)(int)(*(uint*)(&cA2WEX_003C128_003E))); + } + } + std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_17NBLPPKPK_0040_003F_0024AA_003F4_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024AA_0040)), (delegate* unmanaged[Cdecl, Cdecl])global::_003CModule_003E.__unep_0040_003Fends_0040std_0040_0040_0024_0024FYAAAV_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040AAV21_0040_0040Z); + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj2); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr4 = std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Estr(&obj, &obj2); + try + { + char* s = ((8u > (uint)((int*)ptr4)[5]) ? ((char*)ptr4) : ((char*)(int)(*(uint*)ptr4))); + _bstr_t_002E_007Bctor_007D(P_1, s); + num = 3u; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj2); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 20))) + { + delete((void*)(int)(*(uint*)(&obj2))); + } + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 16)) = 0; + *(short*)(&obj2) = 0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E__vbaseDtor), &obj); + throw; + } + std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 96))); + std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 96))); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), &bstr_t2); + throw; + } + if (*(int*)(&bstr_t2) != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)(*(uint*)(&bstr_t2))); + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), &bstr_t); + throw; + } + if (*(int*)(&bstr_t) != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)(*(uint*)(&bstr_t))); + } + return P_1; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), P_1); + } + throw; + } + } + + internal unsafe static com_error_dbg* com_eh_002Ecom_error_dbg_002ELogGetError(com_error_dbg* P_0, int hresult, EWhen when, char* msg, sbyte* file, int line) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out uint num); + try + { + num = 0u; + System.Runtime.CompilerServices.Unsafe.SkipInit(out CComPtr_003CIErrorInfo_003E cComPtr_003CIErrorInfo_003E); + *(int*)(&cComPtr_003CIErrorInfo_003E) = 0; + try + { + if (0 != GetErrorInfo(0u, (IErrorInfo**)(&cComPtr_003CIErrorInfo_003E))) + { + IErrorInfo* ptr = (IErrorInfo*)(int)(*(uint*)(&cComPtr_003CIErrorInfo_003E)); + if (*(int*)(&cComPtr_003CIErrorInfo_003E) != 0) + { + *(int*)(&cComPtr_003CIErrorInfo_003E) = 0; + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)ptr + 8)))((nint)ptr); + } + } + com_eh_002Ecom_error_dbg_002E_007Bctor_007D(P_0, hresult, (IErrorInfo*)(int)(*(uint*)(&cComPtr_003CIErrorInfo_003E)), msg, file, line); + num = 1u; + System.Runtime.CompilerServices.Unsafe.SkipInit(out _bstr_t bstr_t); + _bstr_t* ptr2 = com_eh_002Ecom_error_dbg_002EErrorMessage(P_0, &bstr_t, when, null, 0); + try + { + uint num2 = *(uint*)ptr2; + char* s = (char*)((num2 == 0) ? 0 : ((int)(*(uint*)(int)num2))); + com_eh_002ELogIfError(hresult, s); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), &bstr_t); + throw; + } + if (*(int*)(&bstr_t) != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)(*(uint*)(&bstr_t))); + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CIErrorInfo_003E_002E_007Bdtor_007D), &cComPtr_003CIErrorInfo_003E); + throw; + } + if (*(int*)(&cComPtr_003CIErrorInfo_003E) != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)(*(uint*)(&cComPtr_003CIErrorInfo_003E)) + 8)))((IntPtr)(*(int*)(&cComPtr_003CIErrorInfo_003E))); + } + return P_0; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&com_eh_002Ecom_error_dbg_002E_007Bdtor_007D), P_0); + } + throw; + } + } + + internal unsafe static void com_eh_002Ecom_error_dbg_002EThrow(int hresult, char* msg, sbyte* file, int line) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out com_error_dbg com_error_dbg2); + com_eh_002Ecom_error_dbg_002ELogGetError(&com_error_dbg2, hresult, (EWhen)0, msg, file, line); + _CxxThrowException(&com_error_dbg2, (_s__ThrowInfo*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _TI2_003FAVcom_error_dbg_0040com_eh_0040_0040)); + } + + internal unsafe static int com_eh_002Ecom_error_dbg_002EError(com_error_dbg* P_0) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out CComPtr_003CIErrorInfo_003E cComPtr_003CIErrorInfo_003E); + *(int*)(&cComPtr_003CIErrorInfo_003E) = 0; + IErrorInfo* ptr; + int result; + try + { + if (((int*)P_0)[2] != 0) + { + int num = ((int*)P_0)[2]; + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)num + 4)))((IntPtr)num); + } + ptr = (IErrorInfo*)(int)((uint*)P_0)[2]; + *(int*)(&cComPtr_003CIErrorInfo_003E) = (int)ptr; + if (ptr != null) + { + SetErrorInfo(0u, ptr); + } + result = ((int*)P_0)[1]; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComPtr_003CIErrorInfo_003E_002E_007Bdtor_007D), &cComPtr_003CIErrorInfo_003E); + throw; + } + if (ptr != null) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)ptr + 8)))((nint)ptr); + } + return result; + } + + internal unsafe static void* com_eh_002Ecom_error_dbg_002E__vecDelDtor(com_error_dbg* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + com_error_dbg* ptr = (com_error_dbg*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 28u, *(int*)ptr, (delegate*)(delegate*)(&com_eh_002Ecom_error_dbg_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + com_eh_002Ecom_error_dbg_002E_007Bdtor_007D(P_0); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static void std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E__vbaseDtor(basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = (basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 96); + std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(ptr); + std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)ptr); + } + + internal unsafe static void com_eh_002Ecom_error_dbg_002E_007Bdtor_007D(com_error_dbg* P_0) + { + try + { + _bstr_t* ptr = (_bstr_t*)((byte*)P_0 + 16); + uint num = *(uint*)ptr; + if (num != 0) + { + _bstr_t_002EData_t_002ERelease((_bstr_t.Data_t*)(int)num); + *(int*)ptr = 0; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_com_error*, void>)(&_com_error_002E_007Bdtor_007D), P_0); + throw; + } + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_com_error_0040_00406B_0040); + uint num2 = ((uint*)P_0)[2]; + if (num2 != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num2 + 8)))((IntPtr)(int)num2); + } + uint num3 = ((uint*)P_0)[3]; + if (num3 != 0) + { + LocalFree((void*)(int)num3); + } + } + + internal unsafe static void ATL_002ECComPtr_003CIErrorInfo_003E_002E_007Bdtor_007D(CComPtr_003CIErrorInfo_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + [SpecialName] + internal unsafe static com_error_dbg* com_eh_002Ecom_error_dbg_002E_007Bctor_007D(com_error_dbg* P_0, com_error_dbg* P_1) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_com_error_0040_00406B_0040); + ((int*)P_0)[1] = ((int*)P_1)[1]; + com_error_dbg* ptr = (com_error_dbg*)((byte*)P_0 + 8); + *(int*)ptr = ((int*)P_1)[2]; + ((int*)P_0)[3] = 0; + uint num = *(uint*)ptr; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 4)))((IntPtr)(int)num); + } + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7com_error_dbg_0040com_eh_0040_00406B_0040); + int num2 = (((int*)P_0)[4] = ((int*)P_1)[4]); + if (num2 != 0) + { + InterlockedIncrement((int*)(num2 + 8)); + } + try + { + ((int*)P_0)[5] = ((int*)P_1)[5]; + ((int*)P_0)[6] = ((int*)P_1)[6]; + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_bstr_t*, void>)(&_bstr_t_002E_007Bdtor_007D), (byte*)P_0 + 16); + throw; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*<_com_error*, void>)(&_com_error_002E_007Bdtor_007D), P_0); + throw; + } + } + + internal unsafe static char* AAComBSTR_002ECopy(AAComBSTR* P_0) + { + uint num = *(uint*)P_0; + if (num == 0) + { + return null; + } + uint num2 = SysStringByteLen((char*)(int)num); + char* ptr = SysAllocStringByteLen((sbyte*)(int)(*(uint*)P_0), num2); + uint* ptr2; + if (ptr == null) + { + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr2 = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_010e; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_010e; + } + goto IL_0123; + } + goto IL_0187; + IL_0162: + System.Runtime.CompilerServices.Unsafe.SkipInit(out com_error_dbg com_error_dbg2); + com_eh_002Ecom_error_dbg_002ELogGetError(&com_error_dbg2, -2147024882, (EWhen)0, null, (sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0FM_0040JLBFLOGH_0040D_003F3_003F2BldSrc1_003F29_003F2s_003F2SharedComponents_003F2_0040), 139); + _CxxThrowException(&com_error_dbg2, (_s__ThrowInfo*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _TI2_003FAVcom_error_dbg_0040com_eh_0040_0040)); + goto IL_0187; + IL_0123: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr2, 0u) != 0) + { + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1GA_0040IMPKENHL_0040_003F_0024AAF_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AA_003F5_003F_0024AAt_003F_0024AAo_003F_0024AA_003F5_003F_0024AAa_003F_0024AAl_003F_0024AAl_003F_0024AAo_003F_0024AAc_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAl_003F_0024AAd_003F_0024AA_003F5_003F_0024AAb_003F_0024AAy_003F_0024AAt_003F_0024AAe_003F_0024AAs_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAA_003F_0024AAA_0040), __arglist(num2)); + } + goto IL_0162; + IL_010e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0123; + } + goto IL_0162; + IL_0187: + return ptr; + } + + [SpecialName] + internal unsafe static AAComBSTR* AAComBSTR_002E_007Bctor_007D(AAComBSTR* P_0, AAComBSTR* src) + { + *(int*)P_0 = (int)AAComBSTR_002ECopy(src); + return P_0; + } + + internal unsafe static CComPtrBase_003CIDispatch_003E* ATL_002ECComPtrBase_003CIDispatch_003E_002E_007Bctor_007D(CComPtrBase_003CIDispatch_003E* P_0, IDispatch* lp) + { + *(int*)P_0 = (int)lp; + if (lp != null) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)lp + 4)))((nint)lp); + } + return P_0; + } + + internal unsafe static void ATL_002ECComPtrBase_003CIDispatch_003E_002E_007Bdtor_007D(CComPtrBase_003CIDispatch_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + internal unsafe static CComPtr_003CIUnknown_003E* ATL_002ECComPtr_003CIUnknown_003E_002E_007Bctor_007D(CComPtr_003CIUnknown_003E* P_0, IUnknown* lp) + { + *(int*)P_0 = (int)lp; + if (lp != null) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)lp + 4)))((nint)lp); + } + return P_0; + } + + internal unsafe static void ATL_002ECComPtrBase_003CIUnknown_003E_002E_007Bdtor_007D(CComPtrBase_003CIUnknown_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + internal unsafe static int ATL_002ECSimpleArray_003Cunsigned_0020short_002CATL_003A_003ACSimpleArrayEqualHelper_003Cunsigned_0020short_003E_0020_003E_002EGetSize(CSimpleArray_003Cunsigned_0020short_002CATL_003A_003ACSimpleArrayEqualHelper_003Cunsigned_0020short_003E_0020_003E* P_0) + { + return ((int*)P_0)[1]; + } + + internal unsafe static void ATL_002ECSimpleArray_003Cunsigned_0020short_002CATL_003A_003ACSimpleArrayEqualHelper_003Cunsigned_0020short_003E_0020_003E_002ERemoveAll(CSimpleArray_003Cunsigned_0020short_002CATL_003A_003ACSimpleArrayEqualHelper_003Cunsigned_0020short_003E_0020_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + free((void*)(int)num); + *(int*)P_0 = 0; + } + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + } + + internal unsafe static ushort* ATL_002ECSimpleArray_003Cunsigned_0020short_002CATL_003A_003ACSimpleArrayEqualHelper_003Cunsigned_0020short_003E_0020_003E_002E_005B_005D(CSimpleArray_003Cunsigned_0020short_002CATL_003A_003ACSimpleArrayEqualHelper_003Cunsigned_0020short_003E_0020_003E* P_0, int nIndex) + { + if (nIndex >= 0 && nIndex < ((int*)P_0)[1]) + { + return (ushort*)(nIndex * 2 + *(int*)P_0); + } + RaiseException(3221225612u, 1u, 0u, null); + return null; + } + + internal unsafe static CComPtr_003CITypeLib_003E* ATL_002ECComPtr_003CITypeLib_003E_002E_007Bctor_007D(CComPtr_003CITypeLib_003E* P_0) + { + *(int*)P_0 = 0; + return P_0; + } + + internal unsafe static void ATL_002ECComPtrBase_003CITypeLib_003E_002E_007Bdtor_007D(CComPtrBase_003CITypeLib_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + internal unsafe static ITypeLib* ATL_002ECComPtrBase_003CITypeLib_003E_002E_002EPAUITypeLib_0040_0040(CComPtrBase_003CITypeLib_003E* P_0) + { + return (ITypeLib*)(int)(*(uint*)P_0); + } + + internal unsafe static ITypeLib** ATL_002ECComPtrBase_003CITypeLib_003E_002E_0026(CComPtrBase_003CITypeLib_003E* P_0) + { + return (ITypeLib**)P_0; + } + + internal unsafe static _NoAddRefReleaseOnCComPtr_003CITypeLib_003E* ATL_002ECComPtrBase_003CITypeLib_003E_002E_002D_003E(CComPtrBase_003CITypeLib_003E* P_0) + { + return (_NoAddRefReleaseOnCComPtr_003CITypeLib_003E*)(int)(*(uint*)P_0); + } + + [SpecialName] + internal unsafe static CComPtr_003CITypeInfo_003E* ATL_002ECComPtr_003CITypeInfo_003E_002E_007Bctor_007D(CComPtr_003CITypeInfo_003E* P_0, CComPtr_003CITypeInfo_003E* lp) + { + int num = (*(int*)P_0 = *(int*)lp); + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)num + 4)))((IntPtr)num); + } + return P_0; + } + + internal unsafe static void ATL_002ECComPtrBase_003CITypeInfo_003E_002E_007Bdtor_007D(CComPtrBase_003CITypeInfo_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + [SpecialName] + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* _Right) + { + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Right, 0u, uint.MaxValue); + return P_0; + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + return P_0; + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* _Right) + { + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Right); + return P_0; + } + + internal unsafe static void std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + if (8u <= (uint)((int*)P_0)[5]) + { + delete((void*)(int)(*(uint*)P_0)); + } + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eerase(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, uint _Off, uint _Count) + { + uint num = ((uint*)P_0)[4]; + if (num < _Off) + { + std_002E_Xout_of_range((sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BI_0040CFPLBAOH_0040invalid_003F5string_003F5position_003F_0024AA_0040)); + } + uint num2 = num - _Off; + if (num2 < _Count) + { + _Count = num2; + } + if (0 < _Count) + { + uint num3 = ((uint*)P_0)[5]; + char* ptr = ((8 > num3) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + char* ptr2 = ((8 > num3) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + memmove((int)(_Off * 2) + (byte*)ptr2, (int)((_Off + _Count) * 2) + (byte*)ptr, num2 - _Count << 1); + uint num4 = (uint)(((int*)P_0)[4] -= (int)_Count); + char* ptr3 = ((8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + *(short*)((int)(num4 * 2) + (byte*)ptr3) = 0; + } + return P_0; + } + + internal unsafe static char* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Ec_str(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + return (8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0)); + } + + internal unsafe static uint std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Esize(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + return ((uint*)P_0)[4]; + } + + internal unsafe static basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, int _Mode, int P_2) + { + uint num = 0u; + if (P_2 != 0) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_8_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00407B_003F_0024basic_istream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040_0040); + ((int*)P_0)[4] = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_8_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00407B_003F_0024basic_ostream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040_00401_0040_0040); + std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 96)); + try + { + num = 1u; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 + 96); + } + throw; + } + } + try + { + basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = (basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 24); + std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D((basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, (basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)ptr, 0); + try + { + *(int*)(*(int*)(*(int*)P_0 + 4) + (byte*)P_0) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D((basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr, _Mode); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 + 24); + throw; + } + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 + 96); + } + throw; + } + } + + internal unsafe static void std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + *((int*)((byte*)P_0 + *(int*)(*((int*)P_0 - 24) + 4)) - 24) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringstream_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr; + try + { + ptr = (basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 - 72); + basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr2 = (basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr; + *(int*)ptr2 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + try + { + std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Tidy(ptr2); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), ptr2); + throw; + } + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)ptr2); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 - 96 + 24); + throw; + } + std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)ptr); + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Estr(basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_1) + { + uint num = 0u; + std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Estr((basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 24), P_1); + try + { + num = 1u; + return P_1; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_1); + } + throw; + } + } + + internal unsafe static void std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + try + { + std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Tidy(P_0); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_0); + throw; + } + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + + internal unsafe static ushort std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eoverflow(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, ushort _Meta) + { + if ((((int*)P_0)[16] & 8) != 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null && (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) < (nuint)((int*)P_0)[15]) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbase((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0), (char*)(int)((uint*)P_0)[15], std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eepptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)); + } + if (ushort.MaxValue == _Meta) + { + return (ushort)((_Meta != ushort.MaxValue) ? _Meta : 0); + } + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) < std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eepptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) + { + *std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Pninc((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) = (char)_Meta; + return _Meta; + } + if ((((int*)P_0)[16] & 2) != 0) + { + return ushort.MaxValue; + } + int num = (int)((std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) ? ((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eepptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1) : 0); + uint num2 = (uint)num >> 1; + uint num3 = ((num2 >= 32) ? num2 : 32u); + uint num4 = num3; + if (0 < num3) + { + while (int.MaxValue - num4 < (uint)num) + { + num4 >>= 1; + if (0 >= num4) + { + break; + } + } + } + if (num4 == 0) + { + return ushort.MaxValue; + } + uint num5 = num4 + (uint)num; + char* ptr = std_002E_Allocate_003Cwchar_t_003E(num5, null); + char* ptr2 = std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + if (0u < (uint)num) + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr, ptr2, num << 1); + } + if (num == 0) + { + ((int*)P_0)[15] = (int)ptr; + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, (char*)((int)(num5 * 2) + (byte*)ptr)); + if ((((int*)P_0)[16] & 4) != 0) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, null, ptr); + } + else + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, ptr, ptr + 1); + } + } + else + { + ((int*)P_0)[15] = (int)(((nint)((int*)P_0)[15] - (nint)ptr2 >> 1) + ptr); + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbase((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)ptr2) >> 1) + ptr, ((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)ptr2) >> 1) + ptr, (char*)((int)(num5 * 2) + (byte*)ptr)); + if ((((int*)P_0)[16] & 4) != 0) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, null, ptr); + } + else + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, ((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)ptr2) >> 1) + ptr, std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) + 1); + } + } + if ((((int*)P_0)[16] & 1) != 0) + { + delete(ptr2); + } + ((int*)P_0)[16] |= 1; + *std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Pninc((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) = (char)_Meta; + return _Meta; + } + + internal unsafe static ushort std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Epbackfail(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, ushort _Meta) + { + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) > std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) + { + if (ushort.MaxValue != _Meta) + { + char* ptr = std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - 1; + if (_Meta != *ptr && (((int*)P_0)[16] & 2) != 0) + { + goto IL_0063; + } + } + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egbump((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, -1); + if (ushort.MaxValue != _Meta) + { + *std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) = (char)_Meta; + } + return (ushort)((_Meta != ushort.MaxValue) ? _Meta : 0); + } + goto IL_0063; + IL_0063: + return ushort.MaxValue; + } + + internal unsafe static ushort std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eunderflow(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) == null) + { + return ushort.MaxValue; + } + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) < std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eegptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) + { + return *std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + if ((((int*)P_0)[16] & 4) == 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null && (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) > std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) || (nuint)((int*)P_0)[15] > (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0))) + { + if ((nuint)((int*)P_0)[15] < (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) + { + ((int*)P_0)[15] = (int)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0), std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0), (char*)(int)((uint*)P_0)[15]); + return *std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + return ushort.MaxValue; + } + + internal unsafe static fpos_003Cint_003E* std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eseekoff(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, fpos_003Cint_003E* P_1, long _Off, int _Way, int _Which) + { + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null && (nuint)((int*)P_0)[15] < (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) + { + ((int*)P_0)[15] = (int)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + if ((_Which & 1) != 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + if (_Way == 2) + { + _Off += (nint)((int*)P_0)[15] - (nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) >> 1; + } + else if (_Way == 1) + { + if ((_Which & 2) != 0) + { + goto IL_0070; + } + _Off += (nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1; + } + else if (_Way != 0) + { + goto IL_0070; + } + goto IL_0079; + } + if ((_Which & 2) != 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + switch (_Way) + { + case 2: + _Off += (nint)((int*)P_0)[15] - (nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) >> 1; + break; + case 1: + _Off += (nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1; + break; + default: + _Off = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + break; + case 0: + break; + } + if (0 <= _Off && _Off <= (nint)((int*)P_0)[15] - (nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) >> 1) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbump((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, (int)(((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1) + _Off)); + } + else + { + _Off = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + } + } + else if (_Off != 0) + { + _Off = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + } + goto IL_0186; + IL_0186: + *(long*)P_1 = _Off; + ((long*)P_1)[1] = 0L; + ((int*)P_1)[4] = 0; + return P_1; + IL_0070: + _Off = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + goto IL_0079; + IL_0079: + if (0 <= _Off && _Off <= (nint)((int*)P_0)[15] - (nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) >> 1) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egbump((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, (int)(((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1) + _Off)); + if ((_Which & 2) != 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbase((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0), std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0), std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eepptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)); + } + } + else + { + _Off = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + } + goto IL_0186; + } + + internal unsafe static fpos_003Cint_003E* std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eseekpos(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, fpos_003Cint_003E* P_1, fpos_003Cint_003E _Ptr, int _Mode) + { + long num = (int)System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ref System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _Ptr, 8))) + System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ref *(byte*)(&_Ptr)); + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null && (nuint)((int*)P_0)[15] < (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) + { + ((int*)P_0)[15] = (int)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + if (num != *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF)) + { + if ((_Mode & 1) != 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + if (0 <= num && num <= (nint)((int*)P_0)[15] - (nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) >> 1) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egbump((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, (int)(((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1) + num)); + if ((_Mode & 2) != 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbase((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0), std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0), std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eepptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)); + } + } + else + { + num = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + } + } + else if ((_Mode & 2) != 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + if (0 <= num && num <= (nint)((int*)P_0)[15] - (nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) >> 1) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbump((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, (int)(((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1) + num)); + } + else + { + num = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + } + } + else + { + num = *(long*)(int)System.Runtime.CompilerServices.Unsafe.As(ref __imp_std_002E_BADOFF); + } + } + *(long*)P_1 = num; + ((long*)P_1)[1] = 0L; + ((int*)P_1)[4] = 0; + return P_1; + } + + internal unsafe static CA2WEX_003C128_003E* ATL_002ECA2WEX_003C128_003E_002E_007Bctor_007D(CA2WEX_003C128_003E* P_0, sbyte* psz) + { + *(int*)P_0 = (int)((byte*)P_0 + 4); + ATL_002ECA2WEX_003C128_003E_002EInit(P_0, psz, 3u); + return P_0; + } + + internal unsafe static void ATL_002ECA2WEX_003C128_003E_002E_007Bdtor_007D(CA2WEX_003C128_003E* P_0) + { + char* ptr = (char*)(int)(*(uint*)P_0); + if (ptr != (byte*)P_0 + 4) + { + free(ptr); + } + } + + internal unsafe static char* ATL_002ECA2WEX_003C128_003E_002E_002EPA_W(CA2WEX_003C128_003E* P_0) + { + return (char*)(int)(*(uint*)P_0); + } + + internal unsafe static CComPtr_003CIErrorInfo_003E* ATL_002ECComPtr_003CIErrorInfo_003E_002E_007Bctor_007D(CComPtr_003CIErrorInfo_003E* P_0) + { + *(int*)P_0 = 0; + return P_0; + } + + internal unsafe static void ATL_002ECComPtrBase_003CIErrorInfo_003E_002E_007Bdtor_007D(CComPtrBase_003CIErrorInfo_003E* P_0) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + } + + internal unsafe static IErrorInfo* ATL_002ECComPtrBase_003CIErrorInfo_003E_002E_002EPAUIErrorInfo_0040_0040(CComPtrBase_003CIErrorInfo_003E* P_0) + { + return (IErrorInfo*)(int)(*(uint*)P_0); + } + + internal unsafe static IErrorInfo** ATL_002ECComPtrBase_003CIErrorInfo_003E_002E_0026(CComPtrBase_003CIErrorInfo_003E* P_0) + { + return (IErrorInfo**)P_0; + } + + internal unsafe static void ATL_002ECComPtrBase_003CIErrorInfo_003E_002ERelease(CComPtrBase_003CIErrorInfo_003E* P_0) + { + IErrorInfo* ptr = (IErrorInfo*)(int)(*(uint*)P_0); + if (ptr != null) + { + *(int*)P_0 = 0; + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)ptr + 8)))((nint)ptr); + } + } + + internal unsafe static void ATL_002ECComPtrBase_003CIErrorInfo_003E_002EAttach(CComPtrBase_003CIErrorInfo_003E* P_0, IErrorInfo* p2) + { + uint num = *(uint*)P_0; + if (num != 0) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)(int)num + 8)))((IntPtr)(int)num); + } + *(int*)P_0 = (int)p2; + } + + internal unsafe static void* std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E__vecDelDtor(basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, uint P_1) + { + basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr2; + if ((P_1 & 2) != 0) + { + basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = (basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 - 100); + ptr2 = (basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 - 96); + __ehvec_dtor(ptr2, 168u, *(int*)ptr, (delegate*)(delegate*)(&std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E__vbaseDtor)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + ptr2 = (basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 - 96); + basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr3 = (basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)ptr2 + 96); + std_002Ebasic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(ptr3); + std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)ptr3); + if ((P_1 & 1) != 0) + { + delete(ptr2); + } + return ptr2; + } + + internal unsafe static void* std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E__vecDelDtor(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, uint P_1) + { + if ((P_1 & 2) != 0) + { + basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = (basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 - 4); + __ehvec_dtor(P_0, 72u, *(int*)ptr, (delegate*)(delegate*)(&std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D)); + if ((P_1 & 1) != 0) + { + delete_005B_005D(ptr); + } + return ptr; + } + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + try + { + std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Tidy(P_0); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_0); + throw; + } + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static CComPtrBase_003CIUnknown_003E* ATL_002ECComPtrBase_003CIUnknown_003E_002E_007Bctor_007D(CComPtrBase_003CIUnknown_003E* P_0, IUnknown* lp) + { + *(int*)P_0 = (int)lp; + if (lp != null) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)lp + 4)))((nint)lp); + } + return P_0; + } + + internal unsafe static CComPtrBase_003CITypeLib_003E* ATL_002ECComPtrBase_003CITypeLib_003E_002E_007Bctor_007D(CComPtrBase_003CITypeLib_003E* P_0) + { + *(int*)P_0 = 0; + return P_0; + } + + internal unsafe static CComPtrBase_003CITypeInfo_003E* ATL_002ECComPtrBase_003CITypeInfo_003E_002E_007Bctor_007D(CComPtrBase_003CITypeInfo_003E* P_0, ITypeInfo* lp) + { + *(int*)P_0 = (int)lp; + if (lp != null) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)lp + 4)))((nint)lp); + } + return P_0; + } + + [SpecialName] + internal unsafe static allocator_003Cchar_003E* std_002Eallocator_003Cchar_003E_002E_007Bctor_007D(allocator_003Cchar_003E* P_0, allocator_003Cchar_003E* P_1) + { + return P_0; + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* _Right) + { + if (P_0 != _Right) + { + if (8u <= (uint)((int*)P_0)[5]) + { + delete((void*)(int)(*(uint*)P_0)); + } + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + if ((uint)((int*)_Right)[5] < 8u) + { + memmove(P_0, _Right, (uint)(((int*)_Right)[4] * 2 + 2)); + } + else + { + *(int*)P_0 = *(int*)_Right; + *(int*)_Right = 0; + } + ((int*)P_0)[4] = ((int*)_Right)[4]; + ((int*)P_0)[5] = ((int*)_Right)[5]; + ((int*)_Right)[5] = 7; + ((int*)_Right)[4] = 0; + *(short*)_Right = 0; + } + return P_0; + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* _Right, uint _Roff, uint _Count) + { + uint num = ((uint*)_Right)[4]; + if (num < _Roff) + { + std_002E_Xout_of_range((sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BI_0040CFPLBAOH_0040invalid_003F5string_003F5position_003F_0024AA_0040)); + } + uint num2 = num - _Roff; + if (_Count < num2) + { + num2 = _Count; + } + if (P_0 == _Right) + { + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eerase(P_0, num2 + _Roff, uint.MaxValue); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eerase(P_0, 0u, _Roff); + goto IL_00d4; + } + if (2147483646 < num2) + { + std_002E_Xlength_error((sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040JFNIOLAK_0040string_003F5too_003F5long_003F_0024AA_0040)); + } + uint num3 = ((uint*)P_0)[5]; + if (num3 < num2) + { + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Copy(P_0, num2, ((uint*)P_0)[4]); + } + else if (num2 == 0) + { + ((int*)P_0)[4] = 0; + *((8 > num3) ? ((short*)P_0) : ((short*)(int)(*(uint*)P_0))) = 0; + goto IL_008a; + } + if (0 >= num2) + { + goto IL_008a; + } + int num4 = 1; + goto IL_008d; + IL_008a: + num4 = 0; + goto IL_008d; + IL_008d: + if ((byte)num4 != 0) + { + char* ptr = ((8u > (uint)((int*)_Right)[5]) ? ((char*)_Right) : ((char*)(int)(*(uint*)_Right))); + IntPtr intPtr = ((8u > (uint)((int*)P_0)[5]) ? ((IntPtr)(nint)P_0) : ((IntPtr)(*(int*)P_0))); + uint num5 = num2 * 2; + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(intPtr, (int)(_Roff * 2) + (byte*)ptr, num5); + ((int*)P_0)[4] = (int)num2; + char* ptr2 = ((8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + *(short*)((int)num5 + (byte*)ptr2) = 0; + } + goto IL_00d4; + IL_00d4: + return P_0; + } + + internal unsafe static void std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Eos(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, uint _Newsize) + { + ((int*)P_0)[4] = (int)_Newsize; + char* ptr = ((8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + *(short*)((int)(_Newsize * 2) + (byte*)ptr) = 0; + } + + internal unsafe static void std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Tidy(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, [MarshalAs(UnmanagedType.U1)] bool _Built, uint _Newsize) + { + if (_Built && 8u <= (uint)((int*)P_0)[5]) + { + char* ptr = (char*)(int)(*(uint*)P_0); + if (0 < _Newsize) + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(P_0, ptr, _Newsize << 1); + } + delete(ptr); + } + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = (int)_Newsize; + *(short*)((int)(_Newsize * 2) + (byte*)P_0) = 0; + } + + internal unsafe static char* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Myptr(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + return (8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0)); + } + + internal unsafe static char* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Myptr(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + return (8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0)); + } + + internal unsafe static void std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Xran(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + std_002E_Xout_of_range((sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BI_0040CFPLBAOH_0040invalid_003F5string_003F5position_003F_0024AA_0040)); + } + + internal unsafe static _String_val_003Cwchar_t_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002E_String_val_003Cwchar_t_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(_String_val_003Cwchar_t_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, allocator_003Cwchar_t_003E* _Al) + { + return P_0; + } + + internal unsafe static void std_002E_String_val_003Cwchar_t_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(_String_val_003Cwchar_t_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + } + + internal unsafe static allocator_003Cwchar_t_003E* std_002Eallocator_003Cwchar_t_003E_002E_007Bctor_007D(allocator_003Cwchar_t_003E* P_0) + { + return P_0; + } + + [SpecialName] + internal unsafe static allocator_003Cwchar_t_003E* std_002Eallocator_003Cwchar_t_003E_002E_007Bctor_007D(allocator_003Cwchar_t_003E* P_0, allocator_003Cwchar_t_003E* P_1) + { + return P_0; + } + + internal unsafe static void std_002Eallocator_003Cwchar_t_003E_002Edeallocate(allocator_003Cwchar_t_003E* P_0, char* _Ptr, uint __unnamed001) + { + delete(_Ptr); + } + + internal unsafe static char* std_002Eallocator_003Cwchar_t_003E_002Eallocate(allocator_003Cwchar_t_003E* P_0, uint _Count) + { + return std_002E_Allocate_003Cwchar_t_003E(_Count, null); + } + + [SpecialName] + internal unsafe static allocator_003C_WIN32_FIND_DATAW_003E* std_002Eallocator_003C_WIN32_FIND_DATAW_003E_002E_007Bctor_007D(allocator_003C_WIN32_FIND_DATAW_003E* P_0, allocator_003C_WIN32_FIND_DATAW_003E* P_1) + { + return P_0; + } + + internal unsafe static basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, int _Mode) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7_003F_0024basic_stringbuf_0040_WU_003F_0024char_traits_0040_W_0040std_0040_0040V_003F_0024allocator_0040_W_00402_0040_0040std_0040_00406B_0040); + int num = 0; + if ((_Mode & 1) == 0) + { + num = 4; + } + if ((_Mode & 2) == 0) + { + num |= 2; + } + if ((_Mode & 8) != 0) + { + num |= 8; + } + if ((_Mode & 4) != 0) + { + num |= 0x10; + } + ((int*)P_0)[15] = 0; + ((int*)P_0)[16] = num; + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_0); + throw; + } + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Estr(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_1) + { + uint num = 0u; + if ((((int*)P_0)[16] & 2) == 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + uint num2 = ((uint*)P_0)[15]; + uint count = (uint)((((nuint)(int)num2 < (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) ? ((nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) : ((nint)(int)num2)) - (nint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbase((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) >> 1); + char* ptr = std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbase((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)) = 0; + *(short*)(&obj) = 0; + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(&obj, ptr, count); + try + { + try + { + ((int*)P_1)[5] = 7; + ((int*)P_1)[4] = 0; + *(short*)P_1 = 0; + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_1, &obj); + num = 1u; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20))) + { + delete((void*)(int)(*(uint*)(&obj))); + } + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)) = 0; + *(short*)(&obj) = 0; + return P_1; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_1); + } + throw; + } + } + if ((((int*)P_0)[16] & 4) == 0 && std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + uint count2 = (uint)((nint)((byte*)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eegptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) - (nuint)std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)) >> 1); + char* ptr2 = std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj2); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 16)) = 0; + *(short*)(&obj2) = 0; + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(&obj2, ptr2, count2); + try + { + try + { + ((int*)P_1)[5] = 7; + ((int*)P_1)[4] = 0; + *(short*)P_1 = 0; + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_1, &obj2); + num = 1u; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj2); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 20))) + { + delete((void*)(int)(*(uint*)(&obj2))); + } + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj2, 16)) = 0; + *(short*)(&obj2) = 0; + return P_1; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_1); + } + throw; + } + } + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj3); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj3, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj3, 16)) = 0; + *(short*)(&obj3) = 0; + try + { + try + { + ((int*)P_1)[5] = 7; + ((int*)P_1)[4] = 0; + *(short*)P_1 = 0; + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_1, &obj3); + num = 1u; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj3); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj3, 20))) + { + delete((void*)(int)(*(uint*)(&obj3))); + } + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj3, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj3, 16)) = 0; + *(short*)(&obj3) = 0; + return P_1; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_1); + } + throw; + } + } + + internal unsafe static void std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Tidy(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + if ((((int*)P_0)[16] & 1) != 0) + { + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) != null) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eepptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + else + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eegptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + } + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0); + delete(std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0)); + } + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, null, null, null); + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, null, null); + ((int*)P_0)[15] = 0; + ((int*)P_0)[16] &= -2; + } + + internal unsafe static void ATL_002ECA2WEX_003C128_003E_002EInit(CA2WEX_003C128_003E* P_0, sbyte* psz, uint nCodePage) + { + if (psz == null) + { + *(int*)P_0 = 0; + return; + } + int num = lstrlenA(psz) + 1; + ATL_002EAtlConvAllocMemory_003Cwchar_t_003E((char**)P_0, num, (char*)P_0 + 2, 128); + if (0 != MultiByteToWideChar(nCodePage, 0u, psz, num, (char*)(int)(*(uint*)P_0), num)) + { + return; + } + if (GetLastError() == 122) + { + int num2 = MultiByteToWideChar(nCodePage, 0u, psz, num, null, 0); + ATL_002EAtlConvAllocMemory_003Cwchar_t_003E((char**)P_0, num2, (char*)P_0 + 2, 128); + if (0 != MultiByteToWideChar(nCodePage, 0u, psz, num, (char*)(int)(*(uint*)P_0), num2)) + { + return; + } + } + ATL_002EAtlThrowLastWin32(); + } + + internal unsafe static CComPtrBase_003CIErrorInfo_003E* ATL_002ECComPtrBase_003CIErrorInfo_003E_002E_007Bctor_007D(CComPtrBase_003CIErrorInfo_003E* P_0) + { + *(int*)P_0 = 0; + return P_0; + } + + internal unsafe static basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E.sentry* std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esentry_002E_007Bctor_007D(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E.sentry* P_0, basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* _Ostr) + { + *(int*)P_0 = (int)_Ostr; + if (std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) != null) + { + int num = *(int*)P_0; + basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* intPtr = std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)num + 4) + num)); + ((delegate* unmanaged[Thiscall, Thiscall])(int)(*(uint*)(*(int*)intPtr + 4)))((nint)intPtr); + } + try + { + if (std_002Eios_base_002Egood((ios_base*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) && std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Etie((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) != null) + { + std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eflush(std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Etie((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr))); + } + ((sbyte*)P_0)[4] = (std_002Eios_base_002Egood((ios_base*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) ? ((sbyte)1) : ((sbyte)0)); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Sentry_base_002E_007Bdtor_007D), P_0); + throw; + } + } + + internal unsafe static void std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esentry_002E_007Bdtor_007D(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E.sentry* P_0) + { + try + { + if (!std_002Euncaught_exception()) + { + std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Osfx((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(int)(*(uint*)P_0)); + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Sentry_base_002E_007Bdtor_007D), P_0); + throw; + } + int num = *(int*)P_0; + if (std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)num + 4) + num)) != null) + { + num = *(int*)P_0; + basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* intPtr = std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)num + 4) + num)); + ((delegate* unmanaged[Thiscall, Thiscall])(int)(*(uint*)(*(int*)intPtr + 8)))((nint)intPtr); + } + } + + internal unsafe static delegate* unmanaged[Cdecl, Cdecl]<_Bool_struct*, void> std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esentry_002E_002EP6AXABU_Bool_struct_0040std_0040_0040_0040Z(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E.sentry* P_0) + { + return (delegate* unmanaged[Cdecl, Cdecl]<_Bool_struct*, void>)(((bool*)P_0)[4] ? __unep_0040_003F_Bool_function_0040std_0040_0040_0024_0024FYAXABU_Bool_struct_00401_0040_0040Z : null); + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, char* _Ptr, uint _Count) + { + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Ptr, _Count); + return P_0; + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* _Right) + { + return std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Right, 0u, uint.MaxValue); + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, char* _Ptr, uint _Count) + { + if (std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Inside(P_0, _Ptr)) + { + char* ptr = ((8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + return std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, P_0, (uint)((nint)((byte*)_Ptr - (nuint)ptr) >> 1), _Count); + } + if (2147483646 < _Count) + { + std_002E_Xlength_error((sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040JFNIOLAK_0040string_003F5too_003F5long_003F_0024AA_0040)); + } + uint num = ((uint*)P_0)[5]; + if (num < _Count) + { + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Copy(P_0, _Count, ((uint*)P_0)[4]); + } + else if (_Count == 0) + { + ((int*)P_0)[4] = 0; + *((8 > num) ? ((short*)P_0) : ((short*)(int)(*(uint*)P_0))) = 0; + goto IL_0071; + } + if (0 >= _Count) + { + goto IL_0071; + } + int num2 = 1; + goto IL_0073; + IL_0073: + if ((byte)num2 != 0) + { + IntPtr intPtr = ((8u > (uint)((int*)P_0)[5]) ? ((IntPtr)(nint)P_0) : ((IntPtr)(*(int*)P_0))); + uint num3 = _Count * 2; + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(intPtr, _Ptr, num3); + ((int*)P_0)[4] = (int)_Count; + char* ptr2 = ((8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + *(short*)((int)num3 + (byte*)ptr2) = 0; + } + return P_0; + IL_0071: + num2 = 0; + goto IL_0073; + } + + internal unsafe static allocator_003Cwchar_t_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eget_allocator(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, allocator_003Cwchar_t_003E* P_1) + { + return P_1; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Grow(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, uint _Newsize, [MarshalAs(UnmanagedType.U1)] bool _Trim) + { + if (2147483646 < _Newsize) + { + std_002E_Xlength_error((sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040JFNIOLAK_0040string_003F5too_003F5long_003F_0024AA_0040)); + } + uint num = ((uint*)P_0)[5]; + if (num < _Newsize) + { + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Copy(P_0, _Newsize, ((uint*)P_0)[4]); + } + else if (_Trim && _Newsize < 8) + { + uint num2 = ((uint*)P_0)[4]; + uint newsize = ((_Newsize >= num2) ? num2 : _Newsize); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Tidy(P_0, true, newsize); + } + else if (_Newsize == 0) + { + ((int*)P_0)[4] = 0; + *((8 > num) ? ((short*)P_0) : ((short*)(int)(*(uint*)P_0))) = 0; + goto IL_0069; + } + if (0 >= _Newsize) + { + goto IL_0069; + } + int num3 = 1; + goto IL_006b; + IL_0069: + num3 = 0; + goto IL_006b; + IL_006b: + return (byte)num3 != 0; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Inside(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, char* _Ptr) + { + if (_Ptr != null) + { + uint num = ((uint*)P_0)[5]; + char* ptr = ((8 > num) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + if (_Ptr >= ptr) + { + char* ptr2 = ((8 > num) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + if (((int*)P_0)[4] * 2 + (byte*)ptr2 > _Ptr) + { + return true; + } + } + } + return false; + } + + internal unsafe static void std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Xlen(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + std_002E_Xlength_error((sbyte*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_0BA_0040JFNIOLAK_0040string_003F5too_003F5long_003F_0024AA_0040)); + } + + internal unsafe static void std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Init(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, char* _Ptr, uint _Count, int _State) + { + ((int*)P_0)[15] = 0; + ((int*)P_0)[16] = _State; + if (_Count == 0 || (_State & 6) == 6) + { + return; + } + char* ptr = std_002E_Allocate_003Cwchar_t_003E(_Count, null); + uint num = _Count * 2; + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr, _Ptr, num); + char* ptr2 = (char*)((byte*)ptr + (int)num); + ((int*)P_0)[15] = (int)ptr2; + if ((((int*)P_0)[16] & 4) == 0) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, ptr, ptr2); + } + int num2 = ((int*)P_0)[16]; + if ((num2 & 2) == 0) + { + char* ptr3 = (((num2 & 0x10) == 0) ? ptr : ptr2); + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, ptr3, ptr2); + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0) == null) + { + std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg((basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)P_0, ptr, null, ptr); + } + } + ((int*)P_0)[16] |= 1; + } + + internal unsafe static int std_002Ebasic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Getstate(basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, int _Mode) + { + int num = 0; + if ((_Mode & 1) == 0) + { + num = 4; + } + if ((_Mode & 2) == 0) + { + num |= 2; + } + if ((_Mode & 8) != 0) + { + num |= 8; + } + if ((_Mode & 4) != 0) + { + num |= 0x10; + } + return num; + } + + internal unsafe static basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E._Sentry_base* std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Sentry_base_002E_007Bctor_007D(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E._Sentry_base* P_0, basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* _Ostr) + { + *(int*)P_0 = (int)_Ostr; + if (std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) != null) + { + int num = *(int*)P_0; + basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* intPtr = std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)num + 4) + num)); + ((delegate* unmanaged[Thiscall, Thiscall])(int)(*(uint*)(*(int*)intPtr + 4)))((nint)intPtr); + } + return P_0; + } + + internal unsafe static void std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Sentry_base_002E_007Bdtor_007D(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E._Sentry_base* P_0) + { + int num = *(int*)P_0; + if (std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)num + 4) + num)) != null) + { + num = *(int*)P_0; + basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* intPtr = std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)num + 4) + num)); + ((delegate* unmanaged[Thiscall, Thiscall])(int)(*(uint*)(*(int*)intPtr + 8)))((nint)intPtr); + } + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* _Right) + { + return std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Right, 0u, uint.MaxValue); + } + + internal unsafe static uint std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Emax_size(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + return 2147483646u; + } + + internal unsafe static void std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Copy(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, uint _Newsize, uint _Oldlen) + { + uint num = (uint)__CxxQueryExceptionSize(); + int num2 = (int)stackalloc byte[(int)(num << 1)]; + uint num3 = _Newsize | 7; + if (2147483646 < num3) + { + num3 = _Newsize; + } + else + { + uint num4 = ((uint*)P_0)[5]; + uint num5 = num4 >> 1; + if (num5 > num3 / 3) + { + num3 = ((num4 > 2147483646 - num5) ? 2147483646u : (num5 + num4)); + } + } + System.Runtime.CompilerServices.Unsafe.SkipInit(out int num6); + System.Runtime.CompilerServices.Unsafe.SkipInit(out char* ptr); + try + { + num6 = (int)num + num2; + ptr = std_002E_Allocate_003Cwchar_t_003E(num3 + 1, null); + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + uint exceptionCode = (uint)Marshal.GetExceptionCode(); + return (byte)__CxxExceptionFilter((void*)Marshal.GetExceptionPointers(), null, 0, null) != 0; + }).Invoke()) + { + uint num7 = 0u; + __CxxRegisterExceptionObject((void*)Marshal.GetExceptionPointers(), (void*)num6); + try + { + try + { + num3 = _Newsize; + try + { + ptr = std_002E_Allocate_003Cwchar_t_003E(_Newsize + 1, null); + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + uint exceptionCode2 = (uint)Marshal.GetExceptionCode(); + return (byte)__CxxExceptionFilter((void*)Marshal.GetExceptionPointers(), null, 0, null) != 0; + }).Invoke()) + { + uint num8 = 0u; + __CxxRegisterExceptionObject((void*)Marshal.GetExceptionPointers(), (void*)num2); + try + { + try + { + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_Tidy(P_0, true, 0u); + _CxxThrowException(null, null); + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + num8 = (uint)__CxxDetectRethrow((void*)Marshal.GetExceptionPointers()); + return (byte)num8 != 0; + }).Invoke()) + { + } + if (num8 != 0) + { + throw; + } + goto end_IL_00b0; + } + finally + { + __CxxUnregisterExceptionObject((void*)num2, (int)num8); + } + end_IL_00b0:; + } + goto end_IL_008b; + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + num7 = (uint)__CxxDetectRethrow((void*)Marshal.GetExceptionPointers()); + return (byte)num7 != 0; + }).Invoke()) + { + } + if (num7 != 0) + { + throw; + } + end_IL_008b:; + } + finally + { + __CxxUnregisterExceptionObject((void*)num6, (int)num7); + } + } + if (0 < _Oldlen) + { + char* ptr2 = ((8u > (uint)((int*)P_0)[5]) ? ((char*)P_0) : ((char*)(int)(*(uint*)P_0))); + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr, ptr2, _Oldlen << 1); + } + if (8u <= (uint)((int*)P_0)[5]) + { + delete((void*)(int)(*(uint*)P_0)); + } + *(short*)P_0 = 0; + *(int*)P_0 = (int)ptr; + ((int*)P_0)[5] = (int)num3; + ((int*)P_0)[4] = (int)_Oldlen; + char* ptr3 = ((8 > num3) ? ((char*)P_0) : ptr); + *(short*)((int)(_Oldlen * 2) + (byte*)ptr3) = 0; + } + + internal unsafe static uint std_002Eallocator_003Cwchar_t_003E_002Emax_size(allocator_003Cwchar_t_003E* P_0) + { + return 2147483647u; + } + + internal unsafe static basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Eoperator_003C_003C_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_0020_003E(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* _Ostr, char* _Val) + { + int num = (int)stackalloc byte[__CxxQueryExceptionSize()]; + int num2 = 0; + char* ptr = _Val; + if (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(_Val) != 0) + { + do + { + ptr++; + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr) != 0); + } + long num3 = (long)(nuint)((nint)((byte*)ptr - (nuint)_Val) >> 1); + long num4 = ((std_002Eios_base_002Ewidth((ios_base*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) <= 0 || std_002Eios_base_002Ewidth((ios_base*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) <= num3) ? 0 : (std_002Eios_base_002Ewidth((ios_base*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) - num3)); + long num5 = num4; + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E.sentry sentry); + std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esentry_002E_007Bctor_007D(&sentry, _Ostr); + try + { + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref sentry, 4)) == 0 || __unep_0040_003F_Bool_function_0040std_0040_0040_0024_0024FYAXABU_Bool_struct_00401_0040_0040Z == null) + { + num2 = 4; + } + else + { + try + { + if ((std_002Eios_base_002Eflags((ios_base*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)) & 0x1C0) != 64) + { + for (; 0 < num5; num5 += -1L) + { + ushort num6 = std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esputc(std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)), std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Efill((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr))); + ushort num7 = ushort.MaxValue; + if (ushort.MaxValue == num6) + { + num2 |= 4; + break; + } + } + if (num2 != 0) + { + goto IL_014d; + } + } + if (std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esputn(std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)), _Val, num3) != num3) + { + num2 = 4; + } + else + { + for (; 0 < num5; num5 += -1L) + { + ushort num8 = std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esputc(std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr)), std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Efill((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr))); + ushort num9 = ushort.MaxValue; + if (ushort.MaxValue == num8) + { + num2 |= 4; + break; + } + } + } + goto IL_014d; + IL_014d: + std_002Eios_base_002Ewidth((ios_base*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr), 0L); + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + uint exceptionCode = (uint)Marshal.GetExceptionCode(); + return (byte)__CxxExceptionFilter((void*)Marshal.GetExceptionPointers(), null, 0, null) != 0; + }).Invoke()) + { + uint num10 = 0u; + __CxxRegisterExceptionObject((void*)Marshal.GetExceptionPointers(), (void*)num); + try + { + try + { + std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetstate((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr), 4, true); + goto end_IL_0185; + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + num10 = (uint)__CxxDetectRethrow((void*)Marshal.GetExceptionPointers()); + return (byte)num10 != 0; + }).Invoke()) + { + } + if (num10 != 0) + { + throw; + } + end_IL_0185:; + } + finally + { + __CxxUnregisterExceptionObject((void*)num, (int)num10); + } + } + } + std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetstate((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)_Ostr + 4) + (byte*)_Ostr), num2, false); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esentry_002E_007Bdtor_007D), &sentry); + throw; + } + try + { + if (!std_002Euncaught_exception()) + { + std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Osfx((basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(int)(*(uint*)(&sentry))); + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Sentry_base_002E_007Bdtor_007D), &sentry); + throw; + } + if (std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)(int)(*(uint*)(&sentry)) + 4) + *(int*)(&sentry))) != null) + { + basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* intPtr = std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf((basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E*)(*(int*)(*(int*)(int)(*(uint*)(&sentry)) + 4) + *(int*)(&sentry))); + ((delegate* unmanaged[Thiscall, Thiscall])(int)(*(uint*)(*(int*)intPtr + 8)))((nint)intPtr); + } + return _Ostr; + } + + internal unsafe static int _splitpath_s_003C3_002C256_002C256_002C256_003E(sbyte* _Dest, _0024ArrayType_0024_0024_0024BY02D* _Drive, _0024ArrayType_0024_0024_0024BY0BAA_0040D* _Dir, _0024ArrayType_0024_0024_0024BY0BAA_0040D* _Name, _0024ArrayType_0024_0024_0024BY0BAA_0040D* _Ext) + { + return _splitpath_s(_Dest, (sbyte*)_Drive, 3u, (sbyte*)_Dir, 256u, (sbyte*)_Name, 256u, (sbyte*)_Ext, 256u); + } + + internal unsafe static int _makepath_s_003C260_003E(_0024ArrayType_0024_0024_0024BY0BAE_0040D* _Path, sbyte* _Drive, sbyte* _Dir, sbyte* _Filename, sbyte* _Ext) + { + return _makepath_s((sbyte*)_Path, 260u, _Drive, _Dir, _Filename, _Ext); + } + + internal unsafe static allocator_003Cwchar_t_003E* std_002Eforward_003Cclass_0020std_003A_003Aallocator_003Cwchar_t_003E_0020_003E(allocator_003Cwchar_t_003E* _Arg) + { + return _Arg; + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Eforward_003Cclass_0020std_003A_003Abasic_string_003Cwchar_t_002Cstruct_0020std_003A_003Achar_traits_003Cwchar_t_003E_002Cclass_0020std_003A_003Aallocator_003Cwchar_t_003E_0020_003E_0020_003E(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* _Arg) + { + return _Arg; + } + + internal unsafe static void ATL_002EAtlConvFreeMemory_003Cwchar_t_003E(char* pBuff, char* pszFixedBuffer, int nFixedBufferLength) + { + if (pBuff != pszFixedBuffer) + { + free(pBuff); + } + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool std_002Eoperator_0021_003D_003Cwchar_t_002Cwchar_t_003E(allocator_003Cwchar_t_003E* _Left, allocator_003Cwchar_t_003E* _Right) + { + return false; + } + + internal unsafe static char* std_002E_Allocate_003Cwchar_t_003E(uint _Count, char* __unnamed001) + { + void* ptr = null; + if (_Count != 0) + { + if (int.MaxValue >= _Count) + { + ptr = @new(_Count << 1); + if (ptr != null) + { + goto IL_001a; + } + } + sbyte* ptr2 = null; + System.Runtime.CompilerServices.Unsafe.SkipInit(out bad_alloc bad_alloc2); + std_002Eexception_002E_007Bctor_007D((exception*)(&bad_alloc2), &ptr2); + try + { + *(int*)(&bad_alloc2) = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7bad_alloc_0040std_0040_00406B_0040); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eexception_002E_007Bdtor_007D), &bad_alloc2); + throw; + } + _CxxThrowException(&bad_alloc2, (_s__ThrowInfo*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _TI2_003FAVbad_alloc_0040std_0040_0040)); + return null; + } + goto IL_001a; + IL_001a: + return (char*)ptr; + } + + internal unsafe static void ATL_002EAtlConvAllocMemory_003Cwchar_t_003E(char** ppBuff, int nLength, char* pszFixedBuffer, int nFixedBufferLength) + { + if (ppBuff == null) + { + ATL_002EAtlThrowImpl(-2147024809); + } + if (nLength < 0) + { + ATL_002EAtlThrowImpl(-2147024809); + } + if (pszFixedBuffer == null) + { + ATL_002EAtlThrowImpl(-2147024809); + } + uint num = *(uint*)ppBuff; + if ((char*)(int)num != pszFixedBuffer) + { + if (nLength > nFixedBufferLength) + { + char* ptr = (char*)_recalloc((void*)(int)num, (uint)nLength, 2u); + if (ptr == null) + { + ATL_002EAtlThrowImpl(-2147024882); + } + *(int*)ppBuff = (int)ptr; + } + else + { + free((void*)(int)num); + *(int*)ppBuff = (int)pszFixedBuffer; + } + } + else if (nLength > nFixedBufferLength) + { + *(int*)ppBuff = (int)calloc((uint)nLength, 2u); + } + else + { + *(int*)ppBuff = (int)pszFixedBuffer; + } + if (*(int*)ppBuff == 0) + { + ATL_002EAtlThrowImpl(-2147024882); + } + } + + [SpecialName] + internal unsafe static bad_alloc* std_002Ebad_alloc_002E_007Bctor_007D(bad_alloc* P_0, bad_alloc* P_1) + { + std_002Eexception_002E_007Bctor_007D((exception*)P_0, (exception*)P_1); + try + { + *(int*)P_0 = (int)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_7bad_alloc_0040std_0040_00406B_0040); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Eexception_002E_007Bdtor_007D), P_0); + throw; + } + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool std_002Eoperator_003D_003D_003Cwchar_t_002Cwchar_t_003E(allocator_003Cwchar_t_003E* P_0, allocator_003Cwchar_t_003E* P_1) + { + return true; + } + + internal unsafe static ref char PtrToStringChars(string s) + { + ref byte reference = ref *(byte*)s; + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + return ref System.Runtime.CompilerServices.Unsafe.As(ref reference); + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040D, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040E, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAD, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAE, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040F, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAF, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040G, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAG, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040H, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAH, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040I, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAI, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAJ, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAK, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040M, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAM, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040N, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAN, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xcc57d9b2_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040) = 8; + } + + internal unsafe static void _003FA0xcc57d9b2_002E_003F_003F__E_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + _atexit_m((delegate*)(&_003FA0xcc57d9b2_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ)); + } + + internal unsafe static void _003FA0xcc57d9b2_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + ATL_002ECAtlComModule_002ETerm((CAtlComModule*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref ATL_002E_AtlComModule)); + } + + internal unsafe static uint ATL_002E_003FA0xcc57d9b2_002EAtlGetDirLen(char* lpszPathName) + { + if (lpszPathName == null) + { + return 0u; + } + char* ptr = lpszPathName; + char* ptr2 = lpszPathName; + if (*lpszPathName != 0) + { + char* ptr3; + do + { + ptr3 = CharNextW(ptr2); + ushort num = *ptr2; + if (num == 92 || num == 47 || num == 58) + { + ptr = ptr3; + } + ptr2 = ptr3; + } + while (*ptr3 != 0); + } + return (uint)((nint)((byte*)ptr - (nuint)lpszPathName) >> 1); + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040D, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040E, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAD, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAE, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040F, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAF, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040G, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAG, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040H, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAH, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040I, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAI, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAJ, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAK, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040M, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAM, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040N, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAN, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x4ac3ab1c_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040) = 8; + } + + internal unsafe static void _003FA0x4ac3ab1c_002E_003F_003F__E_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + _atexit_m((delegate*)(&_003FA0x4ac3ab1c_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ)); + } + + internal unsafe static void _003FA0x4ac3ab1c_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + ATL_002ECAtlComModule_002ETerm((CAtlComModule*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref ATL_002E_AtlComModule)); + } + + internal unsafe static uint ATL_002E_003FA0x4ac3ab1c_002EAtlGetDirLen(char* lpszPathName) + { + if (lpszPathName == null) + { + return 0u; + } + char* ptr = lpszPathName; + char* ptr2 = lpszPathName; + if (*lpszPathName != 0) + { + char* ptr3; + do + { + ptr3 = CharNextW(ptr2); + ushort num = *ptr2; + if (num == 92 || num == 47 || num == 58) + { + ptr = ptr3; + } + ptr2 = ptr3; + } + while (*ptr3 != 0); + } + return (uint)((nint)((byte*)ptr - (nuint)lpszPathName) >> 1); + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040D, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040E, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAD, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAE, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040F, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAF, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040G, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAG, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040H, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAH, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040I, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAI, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAJ, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAK, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040M, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAM, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040N, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAN, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x6ea962a9_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040) = 8; + } + + internal unsafe static void _003FA0x6ea962a9_002E_003F_003F__E_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + _atexit_m((delegate*)(&_003FA0x6ea962a9_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ)); + } + + internal unsafe static void _003FA0x6ea962a9_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + ATL_002ECAtlComModule_002ETerm((CAtlComModule*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref ATL_002E_AtlComModule)); + } + + internal unsafe static uint ATL_002E_003FA0x6ea962a9_002EAtlGetDirLen(char* lpszPathName) + { + if (lpszPathName == null) + { + return 0u; + } + char* ptr = lpszPathName; + char* ptr2 = lpszPathName; + if (*lpszPathName != 0) + { + char* ptr3; + do + { + ptr3 = CharNextW(ptr2); + ushort num = *ptr2; + if (num == 92 || num == 47 || num == 58) + { + ptr = ptr3; + } + ptr2 = ptr3; + } + while (*ptr3 != 0); + } + return (uint)((nint)((byte*)ptr - (nuint)lpszPathName) >> 1); + } + + internal unsafe static void ConsumerDataUtilities_002EMergeReceivedChunks(ConsumerDataUtilities* P_0, int itemCountInAllChunks, _ItemDataUpdate** pDataUpdates, List ItemValuesList) + { + *(int*)pDataUpdates = (int)CoTaskMemAlloc((uint)(itemCountInAllChunks * 48)); + int num = 0; + List.Enumerator enumerator = ItemValuesList.GetEnumerator(); + while (enumerator.MoveNext()) + { + ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] current = enumerator.Current; + StatusUpdater_ItemDataUpdate statusUpdater_ItemDataUpdate = new StatusUpdater_ItemDataUpdate(); + for (int i = 0; i < (nint)current.LongLength; i++) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item = current[i].Item; + int num2 = num * 48; + *(ulong*)(*(int*)pDataUpdates + num2) = item.Id; + *(int*)(num2 + *(int*)pDataUpdates + 8) = 0; + ArchestrAServices.ASBIDataV2Contract.ASBStatus status = current[i].Value.Status; + statusUpdater_ItemDataUpdate.SetStatus(status); + statusUpdater_ItemDataUpdate.SetItemDataUpdate((_ItemDataUpdate*)(*(int*)pDataUpdates + num2)); + statusUpdater_ItemDataUpdate.FillInUpdate(); + try + { + DateTime timestamp = current[i].Value.Timestamp; + *(long*)(num2 + *(int*)pDataUpdates + 16) = timestamp.ToFileTimeUtc(); + } + catch (System.Exception) + { + *(long*)(*(int*)pDataUpdates + num * 48 + 16) = 0L; + } + ArchestrAServices.ASBIDataContract.V2.Variant value = current[i].Value.Value; + int num3 = num * 48; + *(ushort*)(num3 + *(int*)pDataUpdates + 40) = value.Type; + ArchestrAServices.ASBIDataContract.V2.Variant value2 = current[i].Value.Value; + *(int*)(num3 + *(int*)pDataUpdates + 28) = value2.Length; + if (current[i].Value.Value.Length > 0 && current[i].Value.Value.Payload != null) + { + ArchestrAServices.ASBIDataContract.V2.Variant value3 = current[i].Value.Value; + *(int*)(num3 + *(int*)pDataUpdates + 32) = value3.Payload.Length; + int num4 = num3 + *(int*)pDataUpdates; + uint num5 = *(uint*)(num4 + 32); + if (num5 != 0) + { + *(int*)(num3 + *(int*)pDataUpdates + 36) = (int)CoTaskMemAlloc(num5); + if (*(int*)(num3 + *(int*)pDataUpdates + 36) != 0) + { + fixed (byte* ptr = ¤t[i].Value.Value.Payload[0]) + { + try + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(*(int*)(num3 + *(int*)pDataUpdates + 36), ptr, *(int*)(num3 + *(int*)pDataUpdates + 32)); + } + catch + { + //try-fault + ptr = null; + throw; + } + } + } + } + else + { + *(int*)(num4 + 36) = 0; + } + } + else + { + *(int*)(num3 + *(int*)pDataUpdates + 32) = 0; + *(int*)(num3 + *(int*)pDataUpdates + 36) = 0; + } + num++; + } + } + } + + internal unsafe static ushort ConsumerDataUtilities_002EGetOPCDAQualityCode(ConsumerDataUtilities* P_0, uint opcUaQuality, ushort* MxStatusCategory, ushort* MxStatusDetail) + { + ushort result = 192; + *MxStatusCategory = 0; + *MxStatusDetail = 0; + switch (opcUaQuality) + { + case 9830400u: + result = 216; + break; + case 0u: + result = 192; + break; + case 1073741824u: + result = 64; + *MxStatusDetail = 1009; + break; + case 1083375616u: + result = 80; + *MxStatusDetail = 1009; + break; + case 1083179008u: + result = 68; + *MxStatusDetail = 1009; + break; + case 1083441152u: + result = 84; + *MxStatusDetail = 1009; + break; + case 2148597760u: + result = 0; + *MxStatusDetail = 13; + break; + case 2147680256u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 20; + break; + case 1083506688u: + result = 88; + *MxStatusDetail = 1009; + break; + case 2149515264u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 1016; + break; + case 2150760448u: + result = 32; + *MxStatusCategory = 1; + *MxStatusDetail = 1010; + break; + case 2150957056u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 1001; + break; + case 2151284736u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 1006; + break; + case 2151022592u: + case 2151088128u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 15; + break; + case 2151415808u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 1003; + break; + case 2151350272u: + case 2155020288u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 1007; + break; + case 2156199936u: + result = 28; + *MxStatusDetail = 1; + break; + case 2155085824u: + result = 0; + *MxStatusDetail = 1005; + break; + case 2150825984u: + case 2150891520u: + case 2151743488u: + case 2151809024u: + case 2156462080u: + result = 4; + *MxStatusCategory = 4; + *MxStatusDetail = 6; + break; + case 2156593152u: + result = 12; + *MxStatusDetail = 1009; + break; + case 2156658688u: + result = 16; + *MxStatusDetail = 1009; + break; + default: + if ((byte)(((opcUaQuality & 0xC0000000u) != 0) ? 1u : 0u) != 0) + { + result = 0; + *MxStatusCategory = 8; + *MxStatusDetail = 1009; + } + else + { + *MxStatusDetail = 1009; + } + break; + case 2150694912u: + case 2156527616u: + case 2158886912u: + result = 8; + *MxStatusDetail = 2; + break; + case 2156724224u: + result = 28; + *MxStatusDetail = 2; + break; + } + return result; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool _003FA0x6ea962a9_002E_003Clambda0_003E_002E_0028_0029(_003Clambda0_003E* P_0, uint code) + { + return (byte)(((code & 0xC0000000u) != 0) ? 1u : 0u) != 0; + } + + internal unsafe static void ATL_002ECComBSTR_002EAttach(CComBSTR* P_0, char* src) + { + uint num = *(uint*)P_0; + if ((char*)(int)num != src) + { + SysFreeString((char*)(int)num); + *(int*)P_0 = (int)src; + } + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040D, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040E, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAD, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAE, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040F, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAF, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040G, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAG, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040H, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAH, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040I, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAI, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAJ, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAK, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040M, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAM, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040N, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAN, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0x56a9090b_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040) = 8; + } + + internal unsafe static void _003FA0x56a9090b_002E_003F_003F__E_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + _atexit_m((delegate*)(&_003FA0x56a9090b_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ)); + } + + internal unsafe static void _003FA0x56a9090b_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + ATL_002ECAtlComModule_002ETerm((CAtlComModule*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref ATL_002E_AtlComModule)); + } + + internal unsafe static uint ATL_002E_003FA0x56a9090b_002EAtlGetDirLen(char* lpszPathName) + { + if (lpszPathName == null) + { + return 0u; + } + char* ptr = lpszPathName; + char* ptr2 = lpszPathName; + if (*lpszPathName != 0) + { + char* ptr3; + do + { + ptr3 = CharNextW(ptr2); + ushort num = *ptr2; + if (num == 92 || num == 47 || num == 58) + { + ptr = ptr3; + } + ptr2 = ptr3; + } + while (*ptr3 != 0); + } + return (uint)((nint)((byte*)ptr - (nuint)lpszPathName) >> 1); + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, char* _Ptr) + { + char* ptr = _Ptr; + if (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(_Ptr) != 0) + { + do + { + ptr++; + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr) != 0); + } + uint count = (uint)((nint)((byte*)ptr - (nuint)_Ptr) >> 1); + return std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Ptr, count); + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, char* _Ptr) + { + char* ptr = _Ptr; + if (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(_Ptr) != 0) + { + do + { + ptr++; + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr) != 0); + } + uint count = (uint)((nint)((byte*)ptr - (nuint)_Ptr) >> 1); + return std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Ptr, count); + } + + internal unsafe static DataClientProxyUnmanagedVars* DataClientProxyUnmanagedVars_002E_007Bctor_007D(DataClientProxyUnmanagedVars* P_0) + { + *(int*)P_0 = 0; + try + { + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 4); + ((int*)ptr)[5] = 7; + ((int*)ptr)[4] = 0; + *(short*)ptr = 0; + try + { + WritersWithNonBlockingReadersLock_002E_007Bctor_007D((WritersWithNonBlockingReadersLock*)((byte*)P_0 + 32)); + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 + 4); + throw; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), P_0); + throw; + } + } + + internal unsafe static void* DataClientProxyUnmanagedVars_002E__delDtor(DataClientProxyUnmanagedVars* P_0, uint P_1) + { + DataClientProxyUnmanagedVars_002E_007Bdtor_007D(P_0); + if ((P_1 & 1) != 0) + { + delete(P_0); + } + return P_0; + } + + internal unsafe static void DataClientProxyUnmanagedVars_002E_007Bdtor_007D(DataClientProxyUnmanagedVars* P_0) + { + try + { + try + { + WritersWithNonBlockingReadersLock_002E_007Bdtor_007D((WritersWithNonBlockingReadersLock*)((byte*)P_0 + 32)); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 + 4); + throw; + } + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 4); + if (8u <= (uint)((int*)ptr)[5]) + { + delete((void*)(int)(*(uint*)ptr)); + } + ((int*)ptr)[5] = 7; + ((int*)ptr)[4] = 0; + *(short*)ptr = 0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&ATL_002ECComBSTR_002E_007Bdtor_007D), P_0); + throw; + } + SysFreeString((char*)(int)(*(uint*)P_0)); + } + + internal unsafe static CDataClientCLI* CDataClientCLI_002E_007Bctor_007D(CDataClientCLI* P_0) + { + WritersWithNonBlockingReadersLock_002E_007Bctor_007D((WritersWithNonBlockingReadersLock*)((byte*)P_0 + 8)); + try + { + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 64); + ((int*)ptr)[5] = 7; + ((int*)ptr)[4] = 0; + *(short*)ptr = 0; + try + { + ((int*)P_0)[23] = 0; + CDataClientCLI* ptr2 = (CDataClientCLI*)((byte*)P_0 + 4); + *(int*)ptr2 = -1; + DataClientProxy dataClientProxy = new DataClientProxy(5); + *(int*)ptr2 = DataClientProxies.AddProxy(dataClientProxy); + *(int*)P_0 = 2000; + return P_0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 + 64); + throw; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&WritersWithNonBlockingReadersLock_002E_007Bdtor_007D), (byte*)P_0 + 8); + throw; + } + } + + internal unsafe static void CDataClientCLI_002E_007Bdtor_007D(CDataClientCLI* P_0) + { + try + { + try + { + CDataClientCLI* ptr = (CDataClientCLI*)((byte*)P_0 + 92); + uint num = *(uint*)ptr; + if (num != 0) + { + SysFreeString((char*)(int)num); + *(int*)ptr = 0; + } + CDataClientCLI* ptr2 = (CDataClientCLI*)((byte*)P_0 + 4); + DataClientProxy proxy = DataClientProxies.GetProxy(*(int*)ptr2); + if (proxy != null && proxy.ThreadRunning()) + { + proxy.EndWorkerThread(); + } + DataClientProxies.RemoveProxy(*(int*)ptr2); + *(int*)ptr2 = -1; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)P_0 + 64); + throw; + } + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr3 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 64); + if (8u <= (uint)((int*)ptr3)[5]) + { + delete((void*)(int)(*(uint*)ptr3)); + } + ((int*)ptr3)[5] = 7; + ((int*)ptr3)[4] = 0; + *(short*)ptr3 = 0; + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&WritersWithNonBlockingReadersLock_002E_007Bdtor_007D), (byte*)P_0 + 8); + throw; + } + WritersWithNonBlockingReadersLock_002E_007Bdtor_007D((WritersWithNonBlockingReadersLock*)((byte*)P_0 + 8)); + } + + internal unsafe static void CDataClientCLI_002EAcknowledgeDisconnected(CDataClientCLI* P_0) + { + DataClientProxies.GetProxy(((int*)P_0)[1])?.AcknowledgeDisconnected(); + } + + internal unsafe static int CDataClientCLI_002EIsIDataClientConnected(CDataClientCLI* P_0, int* bConnected) + { + int result = -2147024809; + if (bConnected != null) + { + *bConnected = 0; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null) + { + *bConnected = (proxy.IsConnected() ? 1 : 0); + } + result = 0; + } + return result; + } + + internal unsafe static void CDataClientCLI_002EStopCommunications(CDataClientCLI* P_0) + { + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.ThreadRunning()) + { + proxy.EndWorkerThread(); + } + } + + internal unsafe static int CDataClientCLI_002ECreateConnection(CDataClientCLI* P_0, char* bstrNameSpace) + { + DataClientProxy dataClientProxy = null; + int result = -2147467259; + try + { + dataClientProxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (dataClientProxy != null) + { + if (dataClientProxy.ThreadRunning()) + { + dataClientProxy.EndWorkerThread(); + } + uint num = ((uint*)P_0)[23]; + if (num != 0) + { + SysFreeString((char*)(int)num); + ((int*)P_0)[23] = 0; + } + ((int*)P_0)[23] = (int)SysAllocString(bstrNameSpace); + dataClientProxy.SetNamespace(bstrNameSpace); + dataClientProxy.StartWorkerThread(); + } + else if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 1), 0u)) + { + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1IM_0040DFLDJAFO_0040_003F_0024AAc_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAa_003F_0024AAi_003F_0024AAl_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAt_003F_0024AAo_003F_0024AA_003F5_003F_0024AAs_003F_0024AAt_003F_0024AAa_003F_0024AAr_0040), __arglist()); + } + } + catch (System.Exception ex) + { + result = -2147467259; + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)P_0 + 64), ptr); + CWrapLogger* ptr2 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr2)[43] != 0 || CWrapLogger_002ELogStartEx(ptr2) != 0) ? ((int)((uint*)ptr2)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num2 = ((uint*)P_0)[23]; + char* ptr3 = ((num2 != 0) ? ((char*)(int)num2) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr4 = ((8u > (uint)((int*)((byte*)P_0 + 64))[5]) ? ((char*)P_0 + 32) : ((char*)(int)((uint*)P_0)[16])); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HO_0040NDFKEEAM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAC_0040), __arglist((ushort*)ptr4, (ushort*)ptr3)); + } + } + catch + { + //try-fault + ptr = null; + throw; + } + } + } + return result; + } + + internal unsafe static uint CDataClientCLI_002EGetClientId(CDataClientCLI* P_0) + { + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + uint clientId; + uint* ptr; + if (proxy != null) + { + clientId = proxy.GetClientId(); + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = g_pLogDataClient; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_00a7; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_00a7; + } + goto IL_00bf; + } + return 0u; + IL_00bf: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + uint num = ((uint*)P_0)[23]; + char* ptr2 = ((num != 0) ? ((char*)(int)num) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), g_pLogDataClient, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HC_0040FNGKBMCI_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAG_003F_0024AAe_003F_0024AAt_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAI_003F_0024AAd_003F_0024AA_003F5_003F_0024AAc_003F_0024AAl_003F_0024AAi_003F_0024AAe_0040), __arglist(clientId, (ushort*)ptr2)); + } + goto IL_0157; + IL_0157: + return clientId; + IL_00a7: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00bf; + } + goto IL_0157; + } + + internal unsafe static int CDataClientCLI_002ECreateSubscription(CDataClientCLI* P_0, long MaxQueueSize, ulong SampleInterval, int ActiveState, long* SubscriptionId, IArchestrAResult** pArchestrAResult) + { + ValueType valueType = null; + int num = 0; + bool flag = false; + if (SubscriptionId == null) + { + return -2147024809; + } + *SubscriptionId = 0L; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + valueType = null; + num = proxy.CreateSubscription(SubscriptionId, 1L, &SampleInterval, ref valueType); + if (*SubscriptionId == 0) + { + proxy.SetDisconnectSignal(); + num = -2147418106; + flag = true; + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 2), 0u)) + { + CWrapLogger_002ELogInfo(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1LM_0040JDMOONDP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040), __arglist()); + } + } + if (pArchestrAResult != null) + { + void* ptr = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr; + if (ptr == null) + { + num = -2147024882; + } + else if (valueType != null) + { + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + if (valueType != null && ((ArchestrAResult)valueType).ErrorCode == 1 && !flag) + { + proxy.SetDisconnectSignal(); + num = -2147418106; + flag = true; + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 2), 0u)) + { + CWrapLogger_002ELogInfo(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1MI_0040BBBFCBAL_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040), __arglist()); + } + } + } + } + } + catch (System.Exception ex) + { + num = -2147467259; + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr3 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr3, ptr2); + CWrapLogger* ptr4 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr4)[43] != 0 || CWrapLogger_002ELogStartEx(ptr4) != 0) ? ((int)((uint*)ptr4)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num2 = ((uint*)P_0)[23]; + char* ptr5 = ((num2 != 0) ? ((char*)(int)num2) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr6 = ((8u > (uint)((int*)ptr3)[5]) ? ((char*)ptr3) : ((char*)(int)(*(uint*)ptr3))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HO_0040NIKGJAIJ_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040), __arglist((ushort*)ptr6, (ushort*)ptr5)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + else + { + num = -2147418106; + } + return num; + } + + internal unsafe static int CDataClientCLI_002EChangeSubscription(CDataClientCLI* P_0, long SubscriptionId, int ActiveState, IArchestrAResult** pArchestrAResult) + { + ValueType valueType = null; + int num = 0; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + ArchestrAServices.ASBIDataContract.V2.Variant variant = VariantFactory.MakeVariantValue(ActiveState); + ushort num2 = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.SubscriptionStateTypeToInt(ArchestrAServices.ASBIDataV2Contract.SubscriptionStateType.SubsEnableState); + valueType = null; + num = proxy.ChangeSubscription(&SubscriptionId, &variant, &num2, ref valueType); + if (pArchestrAResult != null) + { + void* ptr = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr; + if (ptr == null) + { + num = -2147024882; + } + else if (valueType != null) + { + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + } + catch (System.Exception ex) + { + num = -2147467259; + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr3 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr3, ptr2); + CWrapLogger* ptr4 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr4)[43] != 0 || CWrapLogger_002ELogStartEx(ptr4) != 0) ? ((int)((uint*)ptr4)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num3 = ((uint*)P_0)[23]; + char* ptr5 = ((num3 != 0) ? ((char*)(int)num3) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr6 = ((8u > (uint)((int*)ptr3)[5]) ? ((char*)ptr3) : ((char*)(int)(*(uint*)ptr3))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HO_0040FJPAHHEB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_003F_0024AAS_0040), __arglist((ushort*)ptr6, (ushort*)ptr5)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + else + { + num = -2147418106; + } + return num; + } + + internal unsafe static int CDataClientCLI_002EDeleteSubscription(CDataClientCLI* P_0, long SubscriptionId, IArchestrAResult** pArchestrAResult) + { + ValueType valueType = null; + int num = 0; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + valueType = null; + num = proxy.DeleteSubscription(&SubscriptionId, ref valueType); + if (pArchestrAResult != null) + { + void* ptr = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr; + if (ptr == null) + { + num = -2147024882; + } + else if (valueType != null) + { + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + } + catch (System.Exception ex) + { + num = -2147467259; + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr3 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr3, ptr2); + CWrapLogger* ptr4 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr4)[43] != 0 || CWrapLogger_002ELogStartEx(ptr4) != 0) ? ((int)((uint*)ptr4)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num2 = ((uint*)P_0)[23]; + char* ptr5 = ((num2 != 0) ? ((char*)(int)num2) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr6 = ((8u > (uint)((int*)ptr3)[5]) ? ((char*)ptr3) : ((char*)(int)(*(uint*)ptr3))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HO_0040NDGMDLFF_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040), __arglist((ushort*)ptr6, (ushort*)ptr5)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + else + { + num = -2147418106; + } + return num; + } + + internal unsafe static int CDataClientCLI_002EAddMonitoredItems(CDataClientCLI* P_0, long SubscriptionId, _IMonitoredItem* MonItems, uint ItemsCount, ConsumerASBResultCode** pResultCode, uint* ResultCount, IArchestrAResult** pArchestrAResult) + { + ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] array = null; + PropertyInfo propertyInfo = null; + object obj = null; + object obj2 = null; + NullReferenceException ex = null; + System.Exception ex2 = null; + ValueType valueType = null; + ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] Capabilities = null; + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status = null; + System.Exception ex3 = null; + int result = 0; + if ((_003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + _atexit_m((delegate*)(&_003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + _003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + bool flag = CWrapLogger_002ELogFlagLog((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), g_pLogSubscription, 0u); + if (MonItems != null && pResultCode != null && ResultCount != null) + { + *(int*)pResultCode = 0; + *ResultCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + bool flag2 = true; + int num = 0; + while (flag2) + { + uint num2 = ItemsCount - (uint)num; + uint num3 = *(uint*)P_0; + uint num4 = ((num2 < num3) ? num2 : num3); + int num5 = (int)num4; + array = new ArchestrAServices.ASBIDataV2Contract.MonitoredItem[num4]; + ushort num6 = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemIdentityTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemIdentityType.Id); + ushort referenceType = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemReferenceTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemReferenceType.None); + ushort type = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.DataTypeToInt(DataType.TypeUnknown); + for (int i = 0; i < num5; i++) + { + if (flag && CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), g_pLogSubscription, 0u)) + { + uint num7 = ((uint*)P_0)[23]; + char* ptr = ((num7 != 0) ? ((char*)(int)num7) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + _IMonitoredItem* ptr2 = (_IMonitoredItem*)((byte*)MonItems + (i + num) * 32); + CWrapLogger_002ELogCustom(CLoggerSelect_002E_GetFSLogger(), g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1LA_0040GIMNEDKJ_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist(*(ulong*)(((int*)ptr2)[1] + 8), (int)num6, (int)(*(byte*)ptr2), (ushort*)ptr)); + } + bool flag3 = false; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item = default(ArchestrAServices.ASBIDataV2Contract.ItemIdentity); + _IMonitoredItem* ptr3 = (_IMonitoredItem*)((byte*)MonItems + (i + num) * 32); + ulong num8 = *(ulong*)(((int*)ptr3)[1] + 8); + if ((num8 & 0x8000000000000000uL) != 0) + { + num8 &= 0x7FFFFFFFFFFFFFFFL; + flag3 = true; + } + item.Id = num8; + item.Name = string.Empty; + item.ContextName = string.Empty; + item.Type = num6; + item.ReferenceType = referenceType; + array[i].Item = item; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item2 = array[i].Item; + item2.Name = string.Empty; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item3 = array[i].Item; + item3.ContextName = string.Empty; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item4 = array[i].Item; + item4.Type = num6; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item5 = array[i].Item; + item5.ReferenceType = referenceType; + bool active = ((*(bool*)ptr3) ? true : false); + array[i].Active = active; + array[i].SampleInterval = ((ulong*)ptr3)[1]; + array[i].TimeDeadband = 0uL; + ArchestrAServices.ASBIDataContract.V2.Variant valueDeadband = array[i].ValueDeadband; + valueDeadband.Type = type; + ArchestrAServices.ASBIDataContract.V2.Variant valueDeadband2 = array[i].ValueDeadband; + valueDeadband2.Length = 0; + ArchestrAServices.ASBIDataContract.V2.Variant valueDeadband3 = array[i].ValueDeadband; + valueDeadband3.Payload = null; + ArchestrAServices.ASBIDataContract.V2.Variant userData = VariantFactory.MakeVariantValue(*(ulong*)(((int*)ptr3)[1] + 8)); + array[i].UserData = userData; + propertyInfo = DataClientProxies.m_bufferProperty.GetBufferField(); + if (propertyInfo != null) + { + try + { + obj = array[i]; + obj2 = flag3; + propertyInfo.SetValue(obj, obj2); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 3), 0u)) + { + CWrapLogger_002ELogTrace(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1JK_0040HNDDPKGD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_0040), __arglist(item.Id, flag3 ? 1 : 0)); + } + ref ArchestrAServices.ASBIDataV2Contract.MonitoredItem reference = ref array[i]; + reference = (ArchestrAServices.ASBIDataV2Contract.MonitoredItem)obj; + } + catch (NullReferenceException ex4) + { + fixed (char* ptr4 = &PtrToStringChars(ex4.Message)) + { + try + { + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 1), 0u)) + { + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1KI_0040FPBEJJDM_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_0040), __arglist((ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr4 = null; + throw; + } + } + } + catch (System.Exception ex5) + { + fixed (char* ptr5 = &PtrToStringChars(ex5.Message)) + { + try + { + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 1), 0u)) + { + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HC_0040BDFNOHO_0040_003F_0024AAE_003F_0024AAx_003F_0024AAc_003F_0024AAe_003F_0024AAp_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAo_003F_0024AAw_003F_0024AAn_003F_0024AA_003F5_003F_0024AAa_003F_0024AAt_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_0040), __arglist((ushort*)ptr5)); + } + } + catch + { + //try-fault + ptr5 = null; + throw; + } + } + } + } + else if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 1), 0u)) + { + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1IA_0040BPMIELCD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_0040), __arglist()); + } + if (flag && CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), g_pLogSubscription, 0u)) + { + uint num9 = ((uint*)P_0)[23]; + char* ptr6 = ((num9 != 0) ? ((char*)(int)num9) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item6 = array[i].Item; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item7 = array[i].Item; + CWrapLogger_002ELogCustom(CLoggerSelect_002E_GetFSLogger(), g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1LC_0040LEPGMBLE_0040_003F_0024AAF_003F_0024AAi_003F_0024AAn_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_0040), __arglist(item7.Id, (int)item6.Type, array[i].Active ? 1 : 0, (ushort*)ptr6)); + } + } + valueType = null; + result = proxy.AddMonitoredItems(ref Status, ref Capabilities, &SubscriptionId, ref array, ref valueType); + if (pArchestrAResult != null) + { + void* ptr7 = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr7; + if (ptr7 == null) + { + result = -2147024882; + flag2 = false; + } + else + { + if (valueType == null) + { + goto IL_059a; + } + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + if (valueType == null || ((ArchestrAResult)valueType).ErrorCode != EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + goto IL_059a; + } + if (num == 0) + { + *(int*)pResultCode = (int)CoTaskMemAlloc(ItemsCount * 32); + } + if (Status != null) + { + for (int j = 0; j < (nint)Status.LongLength; j++) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item8 = Status[j].Item; + int num10 = (j + num) * 32; + *(ulong*)(num10 + *(int*)pResultCode) = item8.Id; + *(int*)(*(int*)pResultCode + num10 + 8) = Status[j].ErrorCode; + } + *ResultCount = (uint)((int)(*ResultCount) + (nint)Status.LongLength); + } + num = num5 + num; + if ((uint)num >= ItemsCount) + { + flag2 = false; + } + goto IL_059d; + IL_059d: + if (num5 < *(int*)P_0) + { + flag2 = false; + } + continue; + IL_059a: + flag2 = false; + goto IL_059d; + } + } + catch (System.Exception ex6) + { + result = -2147467259; + ref byte reference2 = ref *(byte*)ex6.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference2) != null) + { + reference2 = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference2))); + } + fixed (char* ptr8 = &System.Runtime.CompilerServices.Unsafe.As(ref reference2)) + { + try + { + CDataClientCLI* ptr9 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr9, ptr8); + CWrapLogger* ptr10 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr10)[43] != 0 || CWrapLogger_002ELogStartEx(ptr10) != 0) ? ((int)((uint*)ptr10)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num11 = ((uint*)P_0)[23]; + char* ptr11 = ((num11 != 0) ? ((char*)(int)num11) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HO_0040FCFFKLBD_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040), __arglist((ushort*)std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Ec_str((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr9), (ushort*)ptr11)); + } + } + catch + { + //try-fault + ptr8 = null; + throw; + } + } + } + } + else + { + result = -2147418106; + } + return result; + } + return -2147024809; + } + + internal unsafe static int CDataClientCLI_002EChangeMonitoredItems(CDataClientCLI* P_0, long SubscriptionId, _IMonitoredItem* MonItems, uint ItemsCount, ConsumerASBResultCode** pResultCode, uint* ResultCount, IArchestrAResult** pArchestrAResult) + { + return CDataClientCLI_002EAddMonitoredItems(P_0, SubscriptionId, MonItems, ItemsCount, pResultCode, ResultCount, pArchestrAResult); + } + + internal unsafe static int CDataClientCLI_002EDeleteMonitoredItems(CDataClientCLI* P_0, long SubscriptionId, ulong* ItemIds, uint ItemsCount, ConsumerASBResultCode** pResultCode, uint* ResultCount, IArchestrAResult** pArchestrAResult) + { + ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] array = null; + ValueType valueType = null; + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status = null; + System.Exception ex = null; + int result = 0; + if (ItemIds != null && pResultCode != null && ResultCount != null) + { + *(int*)pResultCode = 0; + *ResultCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + bool flag = true; + int num = 0; + while (flag) + { + uint num2 = ItemsCount - (uint)num; + uint num3 = *(uint*)P_0; + uint num4 = ((num2 < num3) ? num2 : num3); + int num5 = (int)num4; + array = new ArchestrAServices.ASBIDataV2Contract.MonitoredItem[num4]; + ushort type = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemIdentityTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemIdentityType.Id); + ushort referenceType = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemReferenceTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemReferenceType.None); + ushort type2 = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.DataTypeToInt(DataType.TypeUnknown); + for (int i = 0; i < num5; i++) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item = new ArchestrAServices.ASBIDataV2Contract.ItemIdentity + { + Id = *(ulong*)((i + num) * 8 + (byte*)ItemIds), + Name = string.Empty, + ContextName = string.Empty, + Type = type, + ReferenceType = referenceType + }; + array[i].Item = item; + array[i].Active = true; + array[i].SampleInterval = 0uL; + array[i].TimeDeadband = 0uL; + ArchestrAServices.ASBIDataContract.V2.Variant valueDeadband = new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = type2, + Length = 0, + Payload = null + }; + array[i].ValueDeadband = valueDeadband; + ArchestrAServices.ASBIDataContract.V2.Variant userData = VariantFactory.MakeVariantValue(*(ulong*)(i * 8 + (byte*)ItemIds)); + array[i].UserData = userData; + } + valueType = null; + result = proxy.DeleteMonitoredItems(ref Status, &SubscriptionId, ref array, ref valueType); + if (pArchestrAResult != null) + { + void* ptr = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr; + if (ptr == null) + { + result = -2147024882; + flag = false; + } + else + { + if (valueType == null) + { + goto IL_0271; + } + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + if (valueType == null || ((ArchestrAResult)valueType).ErrorCode != EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + goto IL_0271; + } + if (num == 0) + { + *(int*)pResultCode = (int)CoTaskMemAlloc(ItemsCount * 32); + } + if (Status != null) + { + for (int j = 0; j < (nint)Status.LongLength; j++) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item2 = Status[j].Item; + int num6 = (j + num) * 32; + *(ulong*)(*(int*)pResultCode + num6) = item2.Id; + *(int*)(num6 + *(int*)pResultCode + 8) = Status[j].ErrorCode; + } + *ResultCount = (uint)((int)(*ResultCount) + (nint)Status.LongLength); + } + else + { + *ResultCount = 0u; + } + num = num5 + num; + if ((uint)num >= ItemsCount) + { + flag = false; + } + goto IL_0274; + IL_0274: + if (num5 < *(int*)P_0) + { + flag = false; + } + continue; + IL_0271: + flag = false; + goto IL_0274; + } + } + catch (System.Exception ex2) + { + result = -2147467259; + ref byte reference = ref *(byte*)ex2.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr3 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr3, ptr2); + CWrapLogger* ptr4 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr4)[43] != 0 || CWrapLogger_002ELogStartEx(ptr4) != 0) ? ((int)((uint*)ptr4)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num7 = ((uint*)P_0)[23]; + char* ptr5 = ((num7 != 0) ? ((char*)(int)num7) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr6 = ((8u > (uint)((int*)ptr3)[5]) ? ((char*)ptr3) : ((char*)(int)(*(uint*)ptr3))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1IC_0040PALBPJO_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAM_0040), __arglist((ushort*)ptr6, (ushort*)ptr5)); + } + ref byte reference2 = ref *(byte*)ex2.StackTrace; + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference2) != null) + { + reference2 = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference2))); + } + fixed (char* ptr7 = &System.Runtime.CompilerServices.Unsafe.As(ref reference2)) + { + try + { + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr3, ptr7); + CWrapLogger* ptr8 = CLoggerSelect_002E_GetFSLogger(); + uint* clf2 = (uint*)((((int*)ptr8)[43] != 0 || CWrapLogger_002ELogStartEx(ptr8) != 0) ? ((int)((uint*)ptr8)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf2, 0u)) + { + uint num8 = ((uint*)P_0)[23]; + char* ptr9 = ((num8 != 0) ? ((char*)(int)num8) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1IM_0040JAMHCJGD_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAc_003F_0024AAk_003F_0024AAT_003F_0024AAr_003F_0024AAa_003F_0024AAc_003F_0024AAe_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_0040), __arglist((ushort*)std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Ec_str((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr3), (ushort*)ptr9)); + } + } + catch + { + //try-fault + ptr7 = null; + throw; + } + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + else + { + result = -2147418106; + } + return result; + } + return -2147024809; + } + + internal unsafe static int CDataClientCLI_002ERegisterItems(CDataClientCLI* P_0, _IItemIdentity* IdItems, uint ItemsCount, ConsumerASBResultCode** pResultCode, uint* ResultCount, IArchestrAResult** pArchestrAResult) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] array = null; + ValueType valueType = null; + ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] Capabilities = null; + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status = null; + int result = 0; + if ((IdItems == null && pResultCode == null) || ResultCount == null) + { + return -2147024809; + } + *(int*)pResultCode = 0; + *ResultCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + bool flag = true; + int num = 0; + while (flag) + { + uint num2 = ItemsCount - (uint)num; + uint num3 = *(uint*)P_0; + uint num4 = ((num2 < num3) ? num2 : num3); + int num5 = (int)num4; + array = new ArchestrAServices.ASBIDataV2Contract.ItemIdentity[num4]; + ushort type = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemIdentityTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemIdentityType.NameAndId); + ushort referenceType = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemReferenceTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemReferenceType.None); + for (int i = 0; i < num5; i++) + { + _IItemIdentity* ptr = (_IItemIdentity*)((byte*)IdItems + (i + num) * 24); + array[i].Id = ((ulong*)ptr)[1]; + array[i].Name = new string((char*)(int)((uint*)ptr)[4]); + array[i].ContextName = new string((char*)(int)(*(uint*)ptr)); + array[i].Type = type; + array[i].ReferenceType = referenceType; + } + valueType = null; + result = proxy.RegisterItems(ref Status, ref Capabilities, ref array, ref valueType); + if (pArchestrAResult != null) + { + void* ptr2 = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr2; + if (ptr2 == null) + { + result = -2147024882; + flag = false; + } + else + { + if (valueType == null) + { + goto IL_01ee; + } + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + if (valueType == null || ((ArchestrAResult)valueType).ErrorCode != EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + goto IL_01ee; + } + if (num == 0) + { + *(int*)pResultCode = (int)CoTaskMemAlloc(ItemsCount * 32); + } + if (Status != null) + { + for (int j = 0; j < (nint)Status.LongLength; j++) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item = Status[j].Item; + int num6 = (j + num) * 32; + *(ulong*)(*(int*)pResultCode + num6) = item.Id; + *(int*)(num6 + *(int*)pResultCode + 8) = Status[j].ErrorCode; + } + *ResultCount = (uint)((int)(*ResultCount) + (nint)Status.LongLength); + } + num = num5 + num; + if ((uint)num >= ItemsCount) + { + flag = false; + } + goto IL_01f1; + IL_01f1: + if (num5 < *(int*)P_0) + { + flag = false; + } + continue; + IL_01ee: + flag = false; + goto IL_01f1; + } + } + catch (System.Exception ex) + { + result = -2147467259; + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr3 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr4 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr4, ptr3); + CWrapLogger* ptr5 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr5)[43] != 0 || CWrapLogger_002ELogStartEx(ptr5) != 0) ? ((int)((uint*)ptr5)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num7 = ((uint*)P_0)[23]; + char* ptr6 = ((num7 != 0) ? ((char*)(int)num7) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr7 = ((8u > (uint)((int*)ptr4)[5]) ? ((char*)ptr4) : ((char*)(int)(*(uint*)ptr4))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HE_0040GKKHABN_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_0040), __arglist((ushort*)ptr7, (ushort*)ptr6)); + } + } + catch + { + //try-fault + ptr3 = null; + throw; + } + } + } + } + else + { + result = -2147418106; + } + return result; + } + + internal unsafe static int CDataClientCLI_002EUnregisterItems(CDataClientCLI* P_0, ulong* varItems, uint ItemsCount, ConsumerASBResultCode** pResultCode, uint* ResultCount, IArchestrAResult** pArchestrAResult) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] array = null; + ValueType valueType = null; + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status = null; + int result = 0; + if (varItems != null && pResultCode != null && ResultCount != null) + { + *(int*)pResultCode = 0; + *ResultCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + bool flag = true; + int num = 0; + while (flag) + { + uint num2 = ItemsCount - (uint)num; + uint num3 = *(uint*)P_0; + uint num4 = ((num2 < num3) ? num2 : num3); + int num5 = (int)num4; + array = new ArchestrAServices.ASBIDataV2Contract.ItemIdentity[num4]; + ushort type = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemIdentityTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemIdentityType.Id); + ushort referenceType = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemReferenceTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemReferenceType.None); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), g_pLogRegisteredItems, 0u)) + { + uint num6 = ((uint*)P_0)[23]; + char* ptr = ((num6 != 0) ? ((char*)(int)num6) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + CWrapLogger_002ELogCustom(CLoggerSelect_002E_GetFSLogger(), g_pLogRegisteredItems, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1IA_0040GOKAJCO_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_0040), __arglist((ushort*)ptr)); + } + for (int i = 0; i < num5; i++) + { + array[i].Id = *(ulong*)((i + num) * 8 + (byte*)varItems); + array[i].Type = type; + array[i].ReferenceType = referenceType; + } + valueType = null; + result = proxy.UnregisterItems(ref Status, ref array, ref valueType); + if (pArchestrAResult != null) + { + void* ptr2 = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr2; + if (ptr2 == null) + { + result = -2147024882; + flag = false; + } + else + { + if (valueType == null) + { + goto IL_01f8; + } + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + if (valueType == null || ((ArchestrAResult)valueType).ErrorCode != EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + goto IL_01f8; + } + if (num == 0) + { + *(int*)pResultCode = (int)CoTaskMemAlloc(ItemsCount * 32); + } + if (Status != null) + { + for (int j = 0; j < (nint)Status.LongLength; j++) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item = Status[j].Item; + int num7 = (j + num) * 32; + *(ulong*)(*(int*)pResultCode + num7) = item.Id; + *(int*)(num7 + *(int*)pResultCode + 8) = Status[j].ErrorCode; + } + *ResultCount = (uint)((int)(*ResultCount) + (nint)Status.LongLength); + } + num = num5 + num; + if ((uint)num >= ItemsCount) + { + flag = false; + } + goto IL_01fb; + IL_01f8: + flag = false; + goto IL_01fb; + IL_01fb: + if (num5 < *(int*)P_0) + { + flag = false; + } + } + } + catch (System.Exception ex) + { + result = -2147467259; + ref byte reference = ref *(byte*)ex.StackTrace; + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr3 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr4 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr4, ptr3); + CWrapLogger* ptr5 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr5)[43] != 0 || CWrapLogger_002ELogStartEx(ptr5) != 0) ? ((int)((uint*)ptr5)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num8 = ((uint*)P_0)[23]; + char* ptr6 = ((num8 != 0) ? ((char*)(int)num8) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr7 = ((8u > (uint)((int*)ptr4)[5]) ? ((char*)ptr4) : ((char*)(int)(*(uint*)ptr4))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1HI_0040HMIMHHDB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_0040), __arglist((ushort*)ptr7, (ushort*)ptr6)); + } + } + catch + { + //try-fault + ptr3 = null; + throw; + } + } + } + } + else + { + result = -2147418106; + } + return result; + } + return -2147024809; + } + + internal unsafe static int CDataClientCLI_002EWriteWithDesc(CDataClientCLI* P_0, _WriteRequestWithReasonDesc* pWriteRequests, uint RequestsCount, uint WriteHandle, _IUserToken* User, _IUserToken* UserToken, short bUserVerified, uint MxOperationType, ConsumerASBResultCode** pResultCode, uint* ResultCount, IArchestrAResult** pArchestrAResult) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] array = null; + ArchestrAServices.ASBIDataV2Contract.WriteValue[] array2 = null; + ArchestrAServices.ASBIDataV2Contract.ASBStatusElement[] array3 = null; + string text = null; + ArchestrAServices.ASBIDataV2Contract.UserToken[] array4 = null; + ValueType result = null; + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status = null; + ArchestrAServices.ASBIDataV2Contract.UserToken[] array5 = null; + ArchestrAServices.ASBIDataV2Contract.UserToken[] array6 = null; + ArchestrAServices.ASBIDataV2Contract.UserToken[] array7 = null; + ArchestrAServices.ASBIDataV2Contract.UserToken[] array8 = null; + System.Exception ex = null; + int result2 = 0; + if (pWriteRequests != null && pResultCode != null && ResultCount != null) + { + *(int*)pResultCode = 0; + *ResultCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + bool flag = true; + int num = 0; + while (flag) + { + uint num2 = RequestsCount - (uint)num; + uint num3 = *(uint*)P_0; + uint num4 = ((num2 < num3) ? num2 : num3); + int num5 = (int)num4; + array = new ArchestrAServices.ASBIDataV2Contract.ItemIdentity[num4]; + array2 = new ArchestrAServices.ASBIDataV2Contract.WriteValue[num4]; + ushort type = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemIdentityTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemIdentityType.Id); + ushort referenceType = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemReferenceTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemReferenceType.None); + for (int i = 0; i < num5; i++) + { + _WriteRequestWithReasonDesc* ptr = (_WriteRequestWithReasonDesc*)((byte*)pWriteRequests + i * 44); + array[i].Id = *(ulong*)(*(int*)ptr + 8); + array[i].Name = string.Empty; + array[i].ContextName = string.Empty; + array[i].Type = type; + array[i].ReferenceType = referenceType; + array2[i].Comment = new string((char*)(int)((uint*)ptr)[8]); + array2[i].HasQT = true; + if (((short*)ptr)[20] != 0) + { + array2[i].ArrayElementIndex = ((int*)ptr)[9]; + } + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), g_pLogWriteRequests, 0u)) + { + CWrapLogger_002ELogCustom(CLoggerSelect_002E_GetFSLogger(), g_pLogWriteRequests, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1JC_0040MJFKDKKI_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAW_003F_0024AAi_003F_0024AAt_003F_0024AAh_003F_0024AAD_003F_0024AAe_003F_0024AAs_003F_0024AAc_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAa_0040), __arglist((int)((short*)ptr)[20], ((int*)ptr)[9])); + } + array3 = new ArchestrAServices.ASBIDataV2Contract.ASBStatusElement[1]; + array3[0].statusType = ArchestrAServices.ASBIDataV2Contract.ASBStatusType.MxQuality; + array3[0].statusValue = (ushort)((short*)ptr)[7]; + ArchestrAServices.ASBIDataV2Contract.ASBStatus status = ArchestrAServices.ASBIDataV2Contract.ASBSerializer.ASBStatusFromArray(array3); + array2[i].Status = status; + DateTime timestamp = DateTime.FromFileTimeUtc(*(long*)((byte*)ptr + 4)); + array2[i].Timestamp = timestamp; + ArchestrAServices.ASBIDataContract.V2.Variant value = new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = ((ushort*)ptr)[14], + Length = ((int*)ptr)[4] + }; + uint num6 = ((uint*)ptr)[5]; + if (num6 != 0) + { + value.Payload = new byte[num6]; + if (value.Payload != null) + { + fixed (byte* ptr2 = &value.Payload[0]) + { + try + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr2, ((int*)ptr)[6], ((int*)ptr)[5]); + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + else + { + value.Payload = null; + } + array2[i].Value = value; + } + bool flag2 = false; + text = string.Empty; + RegistryHandler.GetDefaultSolutionName(out text); + if (!CDataClientCLI_002EIsObjectToObjectWrite(P_0, MxOperationType)) + { + if (User != null) + { + if (bUserVerified == 0) + { + if (((int*)User)[6] != 0) + { + array4 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + array4[0].IdType = (ushort)((uint*)User)[2]; + array4[0].UserName = new string((char*)(int)((uint*)User)[5]); + array4[0].Password = text; + array4[0].SamlToken = new byte[((int*)User)[6]]; + if (array4[0].SamlToken != null) + { + fixed (byte* ptr3 = &array4[0].SamlToken[0]) + { + try + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr3, ((int*)User)[7], ((int*)User)[6]); + } + catch + { + //try-fault + ptr3 = null; + throw; + } + } + } + } + else + { + array4 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + } + result2 = proxy.WriteUser(ref Status, ref array, ref array2, ref array4, &WriteHandle, ref result); + flag2 = true; + } + else if (UserToken != null) + { + if (bUserVerified == -1) + { + if (((int*)User)[6] != 0 && ((int*)UserToken)[6] != 0) + { + array5 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + array5[0].IdType = (ushort)((uint*)User)[2]; + array5[0].UserName = new string((char*)(int)((uint*)User)[5]); + array5[0].Password = text; + array5[0].SamlToken = new byte[((int*)User)[6]]; + if (array5[0].SamlToken != null) + { + fixed (byte* ptr4 = &array5[0].SamlToken[0]) + { + try + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr4, ((int*)User)[7], ((int*)User)[6]); + } + catch + { + //try-fault + ptr4 = null; + throw; + } + } + } + array6 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + array6[0].IdType = (ushort)((uint*)UserToken)[2]; + array6[0].UserName = new string((char*)(int)((uint*)UserToken)[5]); + array6[0].Password = text; + array6[0].SamlToken = new byte[((int*)UserToken)[6]]; + if (array6[0].SamlToken != null) + { + fixed (byte* ptr5 = &array6[0].SamlToken[0]) + { + try + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr5, ((int*)UserToken)[7], ((int*)UserToken)[6]); + } + catch + { + //try-fault + ptr5 = null; + throw; + } + } + } + } + else + { + array5 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + array6 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + } + result2 = proxy.WriteVerified(ref Status, ref array, ref array2, ref array5, ref array6, &WriteHandle, ref result); + flag2 = true; + } + } + else if (bUserVerified == -1) + { + if (((int*)User)[6] != 0) + { + array7 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + array7[0].IdType = (ushort)((uint*)User)[2]; + array7[0].UserName = new string((char*)(int)((uint*)User)[5]); + array7[0].Password = text; + array7[0].SamlToken = new byte[((int*)User)[6]]; + if (array7[0].SamlToken != null) + { + fixed (byte* ptr6 = &array7[0].SamlToken[0]) + { + try + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(ptr6, ((int*)User)[7], ((int*)User)[6]); + } + catch + { + //try-fault + ptr6 = null; + throw; + } + } + } + } + else + { + array7 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + } + result2 = proxy.WriteSecured(ref Status, ref array, ref array2, ref array7, &WriteHandle, ref result); + flag2 = true; + } + } + else + { + result2 = proxy.Write(ref Status, ref array, ref array2, &WriteHandle, ref result); + flag2 = true; + } + } + else + { + array8 = new ArchestrAServices.ASBIDataV2Contract.UserToken[1]; + array8[0].UserName = "ASBMxUser"; + array8[0].Password = "Secret"; + result2 = proxy.WriteUser(ref Status, ref array, ref array2, ref array8, &WriteHandle, ref result); + } + if (pArchestrAResult != null) + { + void* ptr7 = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr7; + if (ptr7 == null) + { + result2 = -2147024882; + flag = false; + } + else + { + if (result == null) + { + goto IL_06f5; + } + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)result).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)result).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)result).Status; + } + } + if (result == null || ((ArchestrAResult)result).ErrorCode != EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + goto IL_06f5; + } + if (num == 0) + { + *(int*)pResultCode = (int)CoTaskMemAlloc(RequestsCount * 32); + } + for (int j = 0; j < (nint)Status.LongLength; j++) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item = Status[j].Item; + int num7 = (j + num) * 32; + *(ulong*)(*(int*)pResultCode + num7) = item.Id; + *(int*)(num7 + *(int*)pResultCode + 8) = Status[j].ErrorCode; + } + *ResultCount = (uint)((int)(*ResultCount) + (nint)Status.LongLength); + num = num5 + num; + if ((uint)num >= RequestsCount) + { + flag = false; + } + goto IL_06f8; + IL_06f5: + flag = false; + goto IL_06f8; + IL_06f8: + if (num5 < *(int*)P_0) + { + flag = false; + } + } + } + catch (System.Exception ex2) + { + result2 = -2147467259; + ref byte reference = ref *(byte*)ex2.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr8 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr9 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr9, ptr8); + CWrapLogger* ptr10 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr10)[43] != 0 || CWrapLogger_002ELogStartEx(ptr10) != 0) ? ((int)((uint*)ptr10)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num8 = ((uint*)P_0)[23]; + char* ptr11 = ((num8 != 0) ? ((char*)(int)num8) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1GC_0040FPNFIDGI_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F_0024DM_003F_0024AA_003F_0024CF_0040), __arglist((ushort*)std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Ec_str((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr9), (ushort*)ptr11)); + } + } + catch + { + //try-fault + ptr8 = null; + throw; + } + } + } + } + else + { + result2 = -2147418106; + } + return result2; + } + return -2147024809; + } + + internal unsafe static int CDataClientCLI_002EPublish(CDataClientCLI* P_0, long SubscriptionId, _ItemDataUpdate** pDataUpdates, uint* UpdatesCount, IArchestrAResult** pArchestrAResult) + { + List list = null; + ValueType valueType = null; + ValueType valueType2 = null; + ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] ItemValues = null; + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status = null; + int result = 0; + if (pDataUpdates != null && UpdatesCount != null) + { + *(int*)pDataUpdates = 0; + *UpdatesCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + bool flag = true; + System.Runtime.CompilerServices.Unsafe.SkipInit(out vector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E obj); + std_002Evector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_007Bctor_007D(&obj); + try + { + list = new List(); + int num = 0; + valueType = null; + while (flag) + { + valueType2 = null; + result = proxy.Publish(ref Status, ref ItemValues, &SubscriptionId, ref valueType2); + if (valueType2 != null && (((ArchestrAResult)valueType2).ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success) || ((ArchestrAResult)valueType2).ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.PublishComplete))) + { + if (ItemValues != null && (nint)ItemValues.LongLength > 0) + { + list.Add(ItemValues); + num = (int)((nint)ItemValues.LongLength + num); + } + else + { + flag = false; + } + if (((ArchestrAResult)valueType2).ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.PublishComplete)) + { + ((ArchestrAResult)valueType2).ErrorCode = EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success); + flag = false; + } + } + else + { + flag = false; + if (valueType2 != null) + { + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 2), 0u)) + { + uint num2 = ((uint*)P_0)[23]; + char* ptr = ((num2 != 0) ? ((char*)(int)num2) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + CWrapLogger_002ELogInfo(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1BDM_0040FIOEEPED_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_003F_0024AAb_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAt_003F_0024AAi_003F_0024AAn_003F_0024AAu_0040), __arglist((uint)((ArchestrAResult)valueType2).ErrorCode, (uint)((ArchestrAResult)valueType2).ErrorCode, ((ArchestrAResult)valueType2).SpecificErrorCode, ((ArchestrAResult)valueType2).SpecificErrorCode, ((ArchestrAResult)valueType2).Status, ((ArchestrAResult)valueType2).Status, (ushort*)ptr)); + } + } + else if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), CWrapLogger_002EGetLogFlag(CLoggerSelect_002E_GetFSLogger(), 2), 0u)) + { + uint num3 = ((uint*)P_0)[23]; + char* ptr2 = ((num3 != 0) ? ((char*)(int)num3) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + CWrapLogger_002ELogInfo(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1PG_0040BFDNNDOD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_003F_0024AAb_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAt_003F_0024AAi_003F_0024AAn_003F_0024AAu_0040), __arglist((ushort*)ptr2)); + } + proxy.SetDisconnectSignal(); + result = -2147418106; + } + valueType = valueType2; + } + if (pArchestrAResult != null) + { + void* ptr3 = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr3; + if (ptr3 == null) + { + result = -2147024882; + } + else if (valueType != null) + { + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + if (num > 0) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out ConsumerDataUtilities consumerDataUtilities); + ConsumerDataUtilities_002EMergeReceivedChunks(&consumerDataUtilities, num, pDataUpdates, list); + *UpdatesCount = (uint)num; + } + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&std_002Evector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_007Bdtor_007D), &obj); + throw; + } + std_002Evector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_007Bdtor_007D(&obj); + } + catch (System.Exception ex) + { + result = -2147467259; + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr4 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr5 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr5, ptr4); + CWrapLogger* ptr6 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr6)[43] != 0 || CWrapLogger_002ELogStartEx(ptr6) != 0) ? ((int)((uint*)ptr6)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num4 = ((uint*)P_0)[23]; + char* ptr7 = ((num4 != 0) ? ((char*)(int)num4) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr8 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1GG_0040BDJMECGK_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AA_003F5_0040), __arglist((ushort*)ptr8, (ushort*)ptr7)); + } + } + catch + { + //try-fault + ptr4 = null; + throw; + } + } + } + } + else + { + result = -2147418106; + } + return result; + } + return -2147024809; + } + + internal unsafe static int CDataClientCLI_002EPublishWriteComplete(CDataClientCLI* P_0, ConsumerASBResultCode** pResultCode, uint* ResultCount, IArchestrAResult** pArchestrAResult) + { + List list = null; + ValueType valueType = null; + ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] WriteCompletes = null; + StatusUpdater_ConsumerASBResultCode statusUpdater_ConsumerASBResultCode = null; + ValueType valueType2 = null; + string text = null; + string text2 = null; + string text3 = null; + string text4 = null; + string text5 = null; + int result = 0; + if (pResultCode != null && ResultCount != null) + { + *(int*)pResultCode = 0; + *ResultCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + list = new List(); + bool flag = true; + valueType = null; + while (flag) + { + result = proxy.PublishWriteComplete(ref WriteCompletes, ref valueType); + if (valueType != null && (((ArchestrAResult)valueType).ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success) || ((ArchestrAResult)valueType).ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.PublishComplete))) + { + if (WriteCompletes != null && (nint)WriteCompletes.LongLength > 0) + { + for (int i = 0; i < (nint)WriteCompletes.LongLength; i++) + { + if ((nint)WriteCompletes[i].Status.LongLength > 0) + { + *ResultCount = (uint)((int)(*ResultCount) + (nint)WriteCompletes[i].Status.LongLength); + list.Add(WriteCompletes[i]); + } + } + } + else + { + flag = false; + } + if (((ArchestrAResult)valueType).ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.PublishComplete)) + { + flag = false; + ((ArchestrAResult)valueType).ErrorCode = EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success); + } + } + else + { + flag = false; + } + } + if (pArchestrAResult != null) + { + void* ptr = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr; + if (ptr == null) + { + result = -2147024882; + } + else if (valueType != null) + { + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + } + } + uint num = *ResultCount; + if (num != 0) + { + void* ptr2 = CoTaskMemAlloc(num * 32); + *(int*)pResultCode = (int)ptr2; + if (ptr2 != null) + { + // IL initblk instruction + System.Runtime.CompilerServices.Unsafe.InitBlock(ptr2, 0, *ResultCount * 32); + int num2 = 0; + statusUpdater_ConsumerASBResultCode = new StatusUpdater_ConsumerASBResultCode(); + List.Enumerator enumerator = list.GetEnumerator(); + while (enumerator.MoveNext()) + { + valueType2 = enumerator.Current; + if ((nint)((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status.LongLength <= 0) + { + continue; + } + for (int j = 0; j < (nint)((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status.LongLength; j++) + { + bool flag2 = false; + if (((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Status.Count != 0 && ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Status.Payload != null) + { + flag2 = true; + statusUpdater_ConsumerASBResultCode.SetConsumerASBResultCode((ConsumerASBResultCode*)(num2 * 32 + *(int*)pResultCode)); + ArchestrAServices.ASBIDataV2Contract.ASBStatus status = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Status; + statusUpdater_ConsumerASBResultCode.SetStatus(status); + statusUpdater_ConsumerASBResultCode.FillInUpdate(); + } + if (((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode == 21) + { + text = Convert.ToString(EnumASBFactory.IntToArchestrAError(((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode)); + int num3 = num2 * 32; + *(int*)(*(int*)pResultCode + num3 + 8) = 1008; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Item; + *(ulong*)(num3 + *(int*)pResultCode) = item.Id; + *(uint*)(*(int*)pResultCode + num3 + 16) = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).WriteHandle; + } + else if (((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode == 22) + { + text2 = Convert.ToString(EnumASBFactory.IntToArchestrAError(((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode)); + int num3 = num2 * 32; + *(int*)(*(int*)pResultCode + num3 + 8) = 1012; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item2 = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Item; + *(ulong*)(num3 + *(int*)pResultCode) = item2.Id; + *(uint*)(*(int*)pResultCode + num3 + 16) = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).WriteHandle; + } + else if (((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode == 23) + { + text3 = Convert.ToString(EnumASBFactory.IntToArchestrAError(((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode)); + int num3 = num2 * 32; + *(int*)(*(int*)pResultCode + num3 + 8) = 1013; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item3 = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Item; + *(ulong*)(num3 + *(int*)pResultCode) = item3.Id; + *(uint*)(*(int*)pResultCode + num3 + 16) = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).WriteHandle; + } + else if (((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode == 33) + { + text4 = Convert.ToString(EnumASBFactory.IntToArchestrAError(((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode)); + int num3 = num2 * 32; + *(int*)(*(int*)pResultCode + num3 + 8) = 1016; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item4 = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Item; + *(ulong*)(num3 + *(int*)pResultCode) = item4.Id; + *(uint*)(*(int*)pResultCode + num3 + 16) = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).WriteHandle; + } + else if (((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode == 34) + { + text5 = Convert.ToString(EnumASBFactory.IntToArchestrAError(((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode)); + int num3 = num2 * 32; + *(int*)(*(int*)pResultCode + num3 + 8) = 1017; + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item5 = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Item; + *(ulong*)(num3 + *(int*)pResultCode) = item5.Id; + *(uint*)(*(int*)pResultCode + num3 + 16) = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).WriteHandle; + } + else + { + if (!flag2) + { + *(int*)(*(int*)pResultCode + num2 * 32 + 8) = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].ErrorCode; + } + ArchestrAServices.ASBIDataV2Contract.ItemIdentity item6 = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).Status[j].Item; + int num3 = num2 * 32; + *(ulong*)(num3 + *(int*)pResultCode) = item6.Id; + *(uint*)(*(int*)pResultCode + num3 + 16) = ((ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete)valueType2).WriteHandle; + } + num2++; + } + } + } + else + { + *ResultCount = 0u; + result = -2147024882; + } + } + } + catch (System.Exception ex) + { + result = -2147467259; + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr3 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr4 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr4, ptr3); + CWrapLogger* ptr5 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr5)[43] != 0 || CWrapLogger_002ELogStartEx(ptr5) != 0) ? ((int)((uint*)ptr5)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num4 = ((uint*)P_0)[23]; + char* ptr6 = ((num4 != 0) ? ((char*)(int)num4) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr7 = ((8u > (uint)((int*)ptr4)[5]) ? ((char*)ptr4) : ((char*)(int)(*(uint*)ptr4))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1IA_0040HBCHAGCP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AAW_0040), __arglist((ushort*)ptr7, (ushort*)ptr6)); + } + } + catch + { + //try-fault + ptr3 = null; + throw; + } + } + } + } + else + { + result = -2147418106; + } + return result; + } + return -2147024809; + } + + internal unsafe static int CDataClientCLI_002EGetInt32(CDataClientCLI* P_0, ushort* lowerPart, ushort* upperPart) + { + int result = 0; + byte[] bytes = BitConverter.GetBytes(*lowerPart); + byte[] bytes2 = BitConverter.GetBytes(*upperPart); + byte[] array = new byte[4]; + if (bytes != null && bytes2 != null && (nint)bytes.LongLength == 2 && (nint)bytes2.LongLength == 2) + { + array[0] = bytes[0]; + array[1] = bytes[1]; + array[2] = bytes2[0]; + array[3] = bytes2[1]; + result = BitConverter.ToInt32(array, 0); + } + return result; + } + + internal unsafe static int CDataClientCLI_002ERead(CDataClientCLI* P_0, _IItemIdentity* IdItems, uint ItemsCount, _DataUpdate** pDataUpdates, uint* UpdatesCount, IArchestrAResult** pArchestrAResult) + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] array = null; + ValueType valueType = null; + ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] ItemValues = null; + ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status = null; + ArchestrAServices.ASBIDataV2Contract.ASBStatusElement[] array2 = null; + System.Exception ex = null; + int num = 0; + if (IdItems != null && pDataUpdates != null && UpdatesCount != null) + { + *(int*)pDataUpdates = 0; + *UpdatesCount = 0u; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null && proxy.IsConnected()) + { + try + { + array = new ArchestrAServices.ASBIDataV2Contract.ItemIdentity[ItemsCount]; + ushort type = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemIdentityTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemIdentityType.Id); + ushort referenceType = ArchestrAServices.ASBIDataV2Contract.IDataASBEnumFactory.ItemReferenceTypeToInt(ArchestrAServices.ASBIDataV2Contract.ItemReferenceType.None); + uint num2 = 0u; + for (int i = 0; (uint)i < ItemsCount; i++) + { + array[i].Id = ((ulong*)((byte*)IdItems + i * 24))[1]; + array[i].Type = type; + array[i].Name = string.Empty; + array[i].ContextName = string.Empty; + array[i].ReferenceType = referenceType; + } + valueType = null; + num = proxy.Read(ref Status, ref ItemValues, ref array, ref valueType); + if (pArchestrAResult == null) + { + goto IL_013a; + } + void* ptr = CoTaskMemAlloc(12u); + *(int*)pArchestrAResult = (int)ptr; + if (ptr == null) + { + num = -2147024882; + goto IL_013a; + } + if (valueType != null) + { + *(int*)(int)(*(uint*)pArchestrAResult) = ((ArchestrAResult)valueType).ErrorCode; + *(uint*)(*(int*)pArchestrAResult + 4) = ((ArchestrAResult)valueType).SpecificErrorCode; + *(uint*)(*(int*)pArchestrAResult + 8) = ((ArchestrAResult)valueType).Status; + goto IL_013a; + } + goto end_IL_004d; + IL_013a: + if (valueType != null && ((ArchestrAResult)valueType).ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + *(int*)pDataUpdates = (int)CoTaskMemAlloc((uint)((nint)ItemValues.LongLength * 48)); + for (int j = 0; j < (nint)ItemValues.LongLength; j++) + { + int num3 = j * 48; + *(long*)(num3 + *(int*)pDataUpdates) = ((long*)((byte*)IdItems + j * 24))[1]; + *(int*)(*(int*)pDataUpdates + num3 + 8) = 0; + array2 = ArchestrAServices.ASBIDataV2Contract.ASBSerializer.ASBStatusToArray(ItemValues[j].Status); + if ((nint)array2.LongLength > 0) + { + for (int k = 0; k < (nint)array2.LongLength; k++) + { + switch (array2[k].statusType) + { + case ArchestrAServices.ASBIDataV2Contract.ASBStatusType.MXStatusCategory: + *(int*)(*(int*)pDataUpdates + j * 48 + 8) = array2[k].statusValue; + break; + case ArchestrAServices.ASBIDataV2Contract.ASBStatusType.MxStatusDetail: + *(int*)(*(int*)pDataUpdates + j * 48 + 12) = array2[k].statusValue; + break; + case ArchestrAServices.ASBIDataV2Contract.ASBStatusType.OPCUAVendorStatus: + { + ushort statusValue2 = array2[k].statusValue; + int num5 = *(int*)pDataUpdates + j * 48 + 24; + num2 = (uint)((*(int*)num5 & -65536) | statusValue2); + *(uint*)num5 = num2; + break; + } + case ArchestrAServices.ASBIDataV2Contract.ASBStatusType.OPCUAStatus: + { + ushort statusValue = array2[k].statusValue; + int num4 = *(int*)pDataUpdates + j * 48 + 24; + num2 = (uint)((statusValue << 16) | (*(int*)num4 & 0xFFFF)); + *(uint*)num4 = num2; + break; + } + case ArchestrAServices.ASBIDataV2Contract.ASBStatusType.MxQuality: + *(int*)(*(int*)pDataUpdates + j * 48 + 24) = array2[k].statusValue; + break; + } + } + } + DateTime timestamp = ItemValues[j].Timestamp; + int num6 = j * 48; + *(long*)(*(int*)pDataUpdates + num6 + 16) = timestamp.ToFileTimeUtc(); + ArchestrAServices.ASBIDataContract.V2.Variant value = ItemValues[j].Value; + *(ushort*)(*(int*)pDataUpdates + num6 + 40) = value.Type; + ArchestrAServices.ASBIDataContract.V2.Variant value2 = ItemValues[j].Value; + *(int*)(*(int*)pDataUpdates + num6 + 28) = value2.Length; + ArchestrAServices.ASBIDataContract.V2.Variant value3 = ItemValues[j].Value; + *(int*)(*(int*)pDataUpdates + num6 + 32) = value3.Payload.Length; + int num7 = *(int*)pDataUpdates + num6; + uint num8 = *(uint*)(num7 + 32); + if (num8 != 0) + { + *(int*)(*(int*)pDataUpdates + num6 + 36) = (int)CoTaskMemAlloc(num8); + if (*(int*)(*(int*)pDataUpdates + num6 + 36) == 0) + { + continue; + } + fixed (byte* ptr2 = &ItemValues[j].Value.Payload[0]) + { + try + { + // IL cpblk instruction + System.Runtime.CompilerServices.Unsafe.CopyBlock(*(int*)(*(int*)pDataUpdates + num6 + 36), ptr2, *(int*)(*(int*)pDataUpdates + num6 + 32)); + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + else + { + *(int*)(num7 + 36) = 0; + } + } + *UpdatesCount = (uint)ItemValues.Length; + } + end_IL_004d:; + } + catch (System.Exception ex2) + { + num = -2147467259; + ref byte reference = ref *(byte*)ex2.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr3 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + CDataClientCLI* ptr4 = (CDataClientCLI*)((byte*)P_0 + 64); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)ptr4, ptr3); + CWrapLogger* ptr5 = CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr5)[43] != 0 || CWrapLogger_002ELogStartEx(ptr5) != 0) ? ((int)((uint*)ptr5)[43]) : 0); + if (CWrapLogger_002ELogFlagLog(CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + uint num9 = ((uint*)P_0)[23]; + char* ptr6 = ((num9 != 0) ? ((char*)(int)num9) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr7 = ((8u > (uint)((int*)ptr4)[5]) ? ((char*)ptr4) : ((char*)(int)(*(uint*)ptr4))); + CWrapLogger_002ELogWarning(CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003F_003F_C_0040_1GA_0040DFJBHNBM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AA_003F_0024DM_003F_0024AA_003F_0024CF_003F_0024AAs_0040), __arglist((ushort*)ptr7, (ushort*)ptr6)); + } + } + catch + { + //try-fault + ptr3 = null; + throw; + } + } + } + } + else + { + num = -2147418106; + } + return num; + } + return -2147024809; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CDataClientCLI_002EIsObjectToObjectWrite(CDataClientCLI* P_0, uint MxOperationType) + { + if (MxOperationType != 3 && MxOperationType != 39 && MxOperationType != 55) + { + return false; + } + return true; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool CDataClientCLI_002ESupportsArrayElementWrites(CDataClientCLI* P_0) + { + bool result = false; + DataClientProxy proxy = DataClientProxies.GetProxy(((int*)P_0)[1]); + if (proxy != null) + { + result = proxy.SupportsArrayElementWrites(); + } + return result; + } + + internal unsafe static vector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* std_002Evector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_007Bctor_007D(vector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* P_0) + { + *(int*)P_0 = 0; + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + return P_0; + } + + internal unsafe static void std_002Evector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_007Bdtor_007D(vector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* P_0) + { + if (*(int*)P_0 != 0) + { + std_002E_Container_base0_002E_Orphan_all((_Container_base0*)P_0); + delete((void*)(int)(*(uint*)P_0)); + } + *(int*)P_0 = 0; + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + } + + internal unsafe static void std_002Evector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_Tidy(vector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* P_0) + { + if (*(int*)P_0 != 0) + { + std_002E_Container_base0_002E_Orphan_all((_Container_base0*)P_0); + delete((void*)(int)(*(uint*)P_0)); + } + *(int*)P_0 = 0; + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + } + + internal unsafe static _Vector_val_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* std_002E_Vector_val_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_007Bctor_007D(_Vector_val_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* P_0, allocator_003C_ItemDataUpdate_0020_002A_003E* _Al) + { + *(int*)P_0 = 0; + ((int*)P_0)[1] = 0; + ((int*)P_0)[2] = 0; + return P_0; + } + + internal unsafe static void std_002E_Vector_val_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_007Bdtor_007D(_Vector_val_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* P_0) + { + } + + internal unsafe static allocator_003C_ItemDataUpdate_0020_002A_003E* std_002Eallocator_003C_ItemDataUpdate_0020_002A_003E_002E_007Bctor_007D(allocator_003C_ItemDataUpdate_0020_002A_003E* P_0) + { + return P_0; + } + + [SpecialName] + internal unsafe static allocator_003C_ItemDataUpdate_0020_002A_003E* std_002Eallocator_003C_ItemDataUpdate_0020_002A_003E_002E_007Bctor_007D(allocator_003C_ItemDataUpdate_0020_002A_003E* P_0, allocator_003C_ItemDataUpdate_0020_002A_003E* P_1) + { + return P_0; + } + + internal unsafe static void std_002Evector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E_002E_Destroy(vector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E* P_0, _ItemDataUpdate** _First, _ItemDataUpdate** _Last) + { + } + + internal unsafe static void std_002Eallocator_003C_ItemDataUpdate_0020_002A_003E_002Edeallocate(allocator_003C_ItemDataUpdate_0020_002A_003E* P_0, _ItemDataUpdate** _Ptr, uint __unnamed001) + { + delete(_Ptr); + } + + internal unsafe static void std_002E_Destroy_range_003Cclass_0020std_003A_003Aallocator_003Cstruct_0020_ItemDataUpdate_0020_002A_003E_0020_003E(_ItemDataUpdate** _First, _ItemDataUpdate** _Last, allocator_003C_ItemDataUpdate_0020_002A_003E* _Al) + { + } + + internal unsafe static _Scalar_ptr_iterator_tag std_002E_Ptr_cat_003Cstruct_0020_ItemDataUpdate_0020_002A_002Cstruct_0020_ItemDataUpdate_0020_002A_003E(_ItemDataUpdate** P_0, _ItemDataUpdate** P_1) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out _Scalar_ptr_iterator_tag result); + return result; + } + + internal unsafe static void std_002E_Destroy_range_003Cclass_0020std_003A_003Aallocator_003Cstruct_0020_ItemDataUpdate_0020_002A_003E_0020_003E(_ItemDataUpdate** _First, _ItemDataUpdate** _Last, allocator_003C_ItemDataUpdate_0020_002A_003E* _Al, _Scalar_ptr_iterator_tag __unnamed003) + { + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040D, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040D_0040ATL_0040_00402QQtagVARIANT_0040_0040DQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040E, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040E_0040ATL_0040_00402QQtagVARIANT_0040_0040EQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAD, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAD_0040ATL_0040_00402QQtagVARIANT_0040_0040PADQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAE, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAE_0040ATL_0040_00402QQtagVARIANT_0040_0040PAEQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040F, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040F_0040ATL_0040_00402QQtagVARIANT_0040_0040FQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAF, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAF_0040ATL_0040_00402QQtagVARIANT_0040_0040PAFQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040G, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040G_0040ATL_0040_00402QQtagVARIANT_0040_0040GQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAG, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAG_0040ATL_0040_00402QQtagVARIANT_0040_0040PAGQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040H, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040H_0040ATL_0040_00402QQtagVARIANT_0040_0040HQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAH, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAH_0040ATL_0040_00402QQtagVARIANT_0040_0040PAHQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040I, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040I_0040ATL_0040_00402QQtagVARIANT_0040_0040IQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAI, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAI_0040ATL_0040_00402QQtagVARIANT_0040_0040PAIQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040J_0040ATL_0040_00402QQtagVARIANT_0040_0040JQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAJ, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAJ_0040ATL_0040_00402QQtagVARIANT_0040_0040PAJQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040K_0040ATL_0040_00402QQtagVARIANT_0040_0040KQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAK, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAK_0040ATL_0040_00402QQtagVARIANT_0040_0040PAKQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_J_0040ATL_0040_00402QQtagVARIANT_0040_0040_JQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_J, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_J_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_JQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040_K_0040ATL_0040_00402QQtagVARIANT_0040_0040_KQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_K, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_K_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_KQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040M, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040M_0040ATL_0040_00402QQtagVARIANT_0040_0040MQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAM, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAM_0040ATL_0040_00402QQtagVARIANT_0040_0040PAMQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040N, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040N_0040ATL_0040_00402QQtagVARIANT_0040_0040NQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAN, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAN_0040ATL_0040_00402QQtagVARIANT_0040_0040PANQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PA_WQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPA_W, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPA_W_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPA_WQ3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIUnknown_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIUnknown_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PAPAUIDispatch_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PAPAUIDispatch_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040TtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040TtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040TtagCY_0040_0040Q3_0040) = 8; + } + + internal static void _003FA0xa8d5f844_002E_003F_003F__E_003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040_0040_0040YMXXZ() + { + System.Runtime.CompilerServices.Unsafe.As<_0024PTMType_0024QQtagVARIANT_0040_0040PATtagCY_0040_0040, int>(ref _003FpmField_0040_003F_0024CVarTypeInfo_0040PATtagCY_0040_0040_0040ATL_0040_00402QQtagVARIANT_0040_0040PATtagCY_0040_0040Q3_0040) = 8; + } + + internal unsafe static void _003FA0xa8d5f844_002E_003F_003F__E_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + _atexit_m((delegate*)(&_003FA0xa8d5f844_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ)); + } + + internal unsafe static void _003FA0xa8d5f844_002E_003F_003F__F_AtlReleaseManagedClassFactories_0040ATL_0040_0040YMXXZ() + { + ATL_002ECAtlComModule_002ETerm((CAtlComModule*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref ATL_002E_AtlComModule)); + } + + internal unsafe static uint ATL_002E_003FA0xa8d5f844_002EAtlGetDirLen(char* lpszPathName) + { + if (lpszPathName == null) + { + return 0u; + } + char* ptr = lpszPathName; + char* ptr2 = lpszPathName; + if (*lpszPathName != 0) + { + char* ptr3; + do + { + ptr3 = CharNextW(ptr2); + ushort num = *ptr2; + if (num == 92 || num == 47 || num == 58) + { + ptr = ptr3; + } + ptr2 = ptr3; + } + while (*ptr3 != 0); + } + return (uint)((nint)((byte*)ptr - (nuint)lpszPathName) >> 1); + } + + internal unsafe static basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, char* _Ptr) + { + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + char* ptr = _Ptr; + if (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(_Ptr) != 0) + { + do + { + ptr++; + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr) != 0); + } + uint count = (uint)((nint)((byte*)ptr - (nuint)_Ptr) >> 1); + std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, _Ptr, count); + return P_0; + } + + internal unsafe static uint std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Elength(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + return ((uint*)P_0)[4]; + } + + internal unsafe static MultiReadLock* MultiReadLock_002E_007Bctor_007D(MultiReadLock* P_0, WritersWithNonBlockingReadersLock* lockingImpl) + { + *(int*)P_0 = (int)lockingImpl; + WritersWithNonBlockingReadersLock_002EReaderLock(lockingImpl); + return P_0; + } + + internal unsafe static void MultiReadLock_002E_007Bdtor_007D(MultiReadLock* P_0) + { + WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)P_0)); + } + + internal unsafe static MultiWriteLock* MultiWriteLock_002E_007Bctor_007D(MultiWriteLock* P_0, WritersWithNonBlockingReadersLock* lockingImpl) + { + *(int*)P_0 = (int)lockingImpl; + WritersWithNonBlockingReadersLock_002EWriterLock(lockingImpl); + return P_0; + } + + internal unsafe static void MultiWriteLock_002E_007Bdtor_007D(MultiWriteLock* P_0) + { + WritersWithNonBlockingReadersLock_002EWriterUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)P_0)); + } + + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002ENativeDll_002EIsInDllMain() + { + return __native_dllmain_reason != uint.MaxValue; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002ENativeDll_002EIsInProcessAttach() + { + return __native_dllmain_reason == 1; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002ENativeDll_002EIsInProcessDetach() + { + return __native_dllmain_reason == 0; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002ENativeDll_002EIsInVcclrit() + { + return __native_vcclrit_reason != uint.MaxValue; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002ENativeDll_002EIsSafeForManagedCode() + { + if (!(__native_dllmain_reason != uint.MaxValue)) + { + return true; + } + if (__native_vcclrit_reason != uint.MaxValue) + { + return true; + } + int num = ((__native_dllmain_reason != 1 && __native_dllmain_reason != 0) ? 1 : 0); + return (byte)num != 0; + } + + internal static void _003CCrtImplementationDetails_003E_002EThrowNestedModuleLoadException(System.Exception innerException, System.Exception nestedException) + { + throw new ModuleLoadExceptionHandlerException("A nested exception occurred after the primary exception that caused the C++ module to fail to load.\n", innerException, nestedException); + } + + internal static void _003CCrtImplementationDetails_003E_002EThrowModuleLoadException(string errorMessage) + { + throw new ModuleLoadException(errorMessage); + } + + internal static void _003CCrtImplementationDetails_003E_002EThrowModuleLoadException(string errorMessage, System.Exception innerException) + { + throw new ModuleLoadException(errorMessage, innerException); + } + + internal static void _003CCrtImplementationDetails_003E_002ERegisterModuleUninitializer(EventHandler handler) + { + ModuleUninitializer._ModuleUninitializer.AddHandler(handler); + } + + [SecuritySafeCritical] + internal unsafe static Guid _003CCrtImplementationDetails_003E_002EFromGUID(_GUID* guid) + { + return new Guid(*(uint*)guid, ((ushort*)guid)[2], ((ushort*)guid)[3], ((byte*)guid)[8], ((byte*)guid)[9], ((byte*)guid)[10], ((byte*)guid)[11], ((byte*)guid)[12], ((byte*)guid)[13], ((byte*)guid)[14], ((byte*)guid)[15]); + } + + [SecurityCritical] + internal unsafe static int __get_default_appdomain(IUnknown** ppUnk) + { + ICorRuntimeHost* ptr = null; + int num; + try + { + Guid guid = _003CCrtImplementationDetails_003E_002EFromGUID((_GUID*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _GUID_cb2f6722_ab3a_11d2_9c40_00c04fa30a3e)); + Guid guid2 = guid; + Guid guid3 = _003CCrtImplementationDetails_003E_002EFromGUID((_GUID*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _GUID_cb2f6723_ab3a_11d2_9c40_00c04fa30a3e)); + Guid guid4 = guid3; + ptr = (ICorRuntimeHost*)RuntimeEnvironment.GetRuntimeInterfaceAsIntPtr(guid3, guid).ToPointer(); + } + catch (System.Exception e) + { + num = Marshal.GetHRForException(e); + goto IL_0039; + } + goto IL_003d; + IL_0039: + if (num >= 0) + { + goto IL_003d; + } + goto IL_0057; + IL_003d: + num = ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)ptr + 52)))((nint)ptr, ppUnk); + ICorRuntimeHost* intPtr = ptr; + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)intPtr + 8)))((nint)intPtr); + goto IL_0057; + IL_0057: + return num; + } + + internal unsafe static void __release_appdomain(IUnknown* ppUnk) + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)ppUnk + 8)))((nint)ppUnk); + } + + [SecurityCritical] + internal unsafe static AppDomain _003CCrtImplementationDetails_003E_002EGetDefaultDomain() + { + IUnknown* ptr = null; + int num = __get_default_appdomain(&ptr); + if (num >= 0) + { + try + { + IntPtr pUnk = new IntPtr(ptr); + return (AppDomain)Marshal.GetObjectForIUnknown(pUnk); + } + finally + { + __release_appdomain(ptr); + } + } + Marshal.ThrowExceptionForHR(num); + return null; + } + + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002EDoCallBackInDefaultDomain(delegate* unmanaged[Stdcall, Stdcall] function, void* cookie) + { + Guid riid = _003CCrtImplementationDetails_003E_002EFromGUID((_GUID*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _GUID_90f1a06c_7712_4762_86b5_7a5eba6bdb02)); + ICLRRuntimeHost* ptr = (ICLRRuntimeHost*)RuntimeEnvironment.GetRuntimeInterfaceAsIntPtr(_003CCrtImplementationDetails_003E_002EFromGUID((_GUID*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _GUID_90f1a06e_7712_4762_86b5_7a5eba6bdb02)), riid).ToPointer(); + try + { + AppDomain appDomain = _003CCrtImplementationDetails_003E_002EGetDefaultDomain(); + int num = *(int*)ptr + 32; + int num2 = ((delegate* unmanaged[Stdcall, Stdcall], void*, int>)(int)(*(uint*)num))((nint)ptr, (uint)appDomain.Id, function, cookie); + if (num2 < 0) + { + Marshal.ThrowExceptionForHR(num2); + } + } + finally + { + ((delegate* unmanaged[Stdcall, Stdcall])(int)(*(uint*)(*(int*)ptr + 8)))((nint)ptr); + } + } + + [SecuritySafeCritical] + internal unsafe static int _003CCrtImplementationDetails_003E_002EDefaultDomain_002EDoNothing(void* cookie) + { + GC.KeepAlive(int.MaxValue); + return 0; + } + + [SecuritySafeCritical] + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool _003CCrtImplementationDetails_003E_002EDefaultDomain_002EHasPerProcess() + { + if (_003FhasPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A == (TriBool.State)2) + { + void** ptr = (void**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xc_mp_a); + if (System.Runtime.CompilerServices.Unsafe.IsAddressLessThan(ref _003FA0xd56818f8_002E__xc_mp_a, ref _003FA0xd56818f8_002E__xc_mp_z)) + { + do + { + if (*(int*)ptr == 0) + { + ptr = (void**)((byte*)ptr + 4); + continue; + } + _003FhasPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A = (TriBool.State)(-1); + return true; + } + while (ptr < System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xc_mp_z)); + } + _003FhasPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A = (TriBool.State)0; + return false; + } + return _003FhasPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A == (TriBool.State)(-1); + } + + [SecuritySafeCritical] + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static bool _003CCrtImplementationDetails_003E_002EDefaultDomain_002EHasNative() + { + if (_003FhasNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A == (TriBool.State)2) + { + void** ptr = (void**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xi_a); + if (System.Runtime.CompilerServices.Unsafe.IsAddressLessThan(ref __xi_a, ref __xi_z)) + { + do + { + if (*(int*)ptr == 0) + { + ptr = (void**)((byte*)ptr + 4); + continue; + } + _003FhasNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A = (TriBool.State)(-1); + return true; + } + while (ptr < System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xi_z)); + } + void** ptr2 = (void**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xc_a); + if (System.Runtime.CompilerServices.Unsafe.IsAddressLessThan(ref __xc_a, ref __xc_z)) + { + do + { + if (*(int*)ptr2 == 0) + { + ptr2 = (void**)((byte*)ptr2 + 4); + continue; + } + _003FhasNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A = (TriBool.State)(-1); + return true; + } + while (ptr2 < System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xc_z)); + } + _003FhasNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A = (TriBool.State)0; + return false; + } + return _003FhasNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00400W4State_0040TriBool_00402_0040A == (TriBool.State)(-1); + } + + [SecuritySafeCritical] + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002EDefaultDomain_002ENeedsInitialization() + { + int num = (((_003CCrtImplementationDetails_003E_002EDefaultDomain_002EHasPerProcess() && !_003FInitializedPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA) || (_003CCrtImplementationDetails_003E_002EDefaultDomain_002EHasNative() && !_003FInitializedNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA && __native_startup_state == (__enative_startup_state)0)) ? 1 : 0); + return (byte)num != 0; + } + + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002EDefaultDomain_002ENeedsUninitialization() + { + return _003FEntered_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA; + } + + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002EDefaultDomain_002EInitialize() + { + _003CCrtImplementationDetails_003E_002EDoCallBackInDefaultDomain((delegate* unmanaged[Stdcall, Stdcall])__unep_0040_003FDoNothing_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024FCGJPAX_0040Z, null); + } + + internal static void _003FA0xd56818f8_002E_003F_003F__E_003FInitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA_0040_0040YMXXZ() + { + _003FInitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA = 0; + } + + internal static void _003FA0xd56818f8_002E_003F_003F__E_003FUninitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA_0040_0040YMXXZ() + { + _003FUninitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA = 0; + } + + internal static void _003FA0xd56818f8_002E_003F_003F__E_003FIsDefaultDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2_NA_0040_0040YMXXZ() + { + _003FIsDefaultDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2_NA = false; + } + + internal static void _003FA0xd56818f8_002E_003F_003F__E_003FInitializedVtables_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A_0040_0040YMXXZ() + { + _003FInitializedVtables_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)0; + } + + internal static void _003FA0xd56818f8_002E_003F_003F__E_003FInitializedNative_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A_0040_0040YMXXZ() + { + _003FInitializedNative_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)0; + } + + internal static void _003FA0xd56818f8_002E_003F_003F__E_003FInitializedPerProcess_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A_0040_0040YMXXZ() + { + _003FInitializedPerProcess_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)0; + } + + internal static void _003FA0xd56818f8_002E_003F_003F__E_003FInitializedPerAppDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A_0040_0040YMXXZ() + { + _003FInitializedPerAppDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)0; + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeVtables(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0, "The C++ module failed to load during vtable initialization.\n"); + _003FInitializedVtables_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)1; + _initterm_m((delegate**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xi_vt_a), (delegate**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xi_vt_z)); + _003FInitializedVtables_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)2; + } + + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeDefaultAppDomain(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0, "The C++ module failed to load while attempting to initialize the default appdomain.\n"); + _003CCrtImplementationDetails_003E_002EDefaultDomain_002EInitialize(); + } + + [SecurityCritical] + [DebuggerStepThrough] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeNative(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0, "The C++ module failed to load during native initialization.\n"); + __security_init_cookie(); + _003FInitializedNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA = true; + if (!_003CCrtImplementationDetails_003E_002ENativeDll_002EIsSafeForManagedCode()) + { + _amsg_exit(33); + } + if (__native_startup_state == (__enative_startup_state)1) + { + _amsg_exit(33); + } + else if (__native_startup_state == (__enative_startup_state)0) + { + _003FInitializedNative_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)1; + __native_startup_state = (__enative_startup_state)1; + if (_initterm_e((delegate* unmanaged[Cdecl, Cdecl]*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xi_a), (delegate* unmanaged[Cdecl, Cdecl]*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xi_z)) != 0) + { + _003CCrtImplementationDetails_003E_002EThrowModuleLoadException(gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_002EP_0024AAVString_0040System_0040_0040((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0)); + } + _initterm((delegate* unmanaged[Cdecl, Cdecl]*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xc_a), (delegate* unmanaged[Cdecl, Cdecl]*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __xc_z)); + __native_startup_state = (__enative_startup_state)2; + _003FInitializedNativeFromCCTOR_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA = true; + _003FInitializedNative_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)2; + } + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializePerProcess(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0, "The C++ module failed to load during process initialization.\n"); + _003FInitializedPerProcess_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)1; + _initatexit_m(); + _initterm_m((delegate**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xc_mp_a), (delegate**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xc_mp_z)); + _003FInitializedPerProcess_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)2; + _003FInitializedPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA = true; + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializePerAppDomain(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0, "The C++ module failed to load during appdomain initialization.\n"); + _003FInitializedPerAppDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)1; + _initatexit_app_domain(); + _initterm_m((delegate**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xc_ma_a), (delegate**)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xd56818f8_002E__xc_ma_z)); + _003FInitializedPerAppDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2W4State_0040Progress_00402_0040A = (Progress.State)2; + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeUninitializer(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0, "The C++ module failed to load during registration for the unload events.\n"); + _003CCrtImplementationDetails_003E_002ERegisterModuleUninitializer([ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] [PrePrepareMethod] [SecurityCritical] (object source, EventArgs arguments) => + { + if (_003FInitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA != 0 && Interlocked.Exchange(ref _003FUninitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA, 1) == 0) + { + bool num = Interlocked.Decrement(ref _003FCount_0040AllDomains_0040_003CCrtImplementationDetails_003E_0040_00402HA) == 0; + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeAppDomain(); + if (num) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeDefaultDomain(); + } + } + }); + } + + [SecurityCritical] + [DebuggerStepThrough] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_Initialize(LanguageSupport* P_0) + { + _003FIsDefaultDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2_NA = AppDomain.CurrentDomain.IsDefaultAppDomain(); + if (_003FIsDefaultDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2_NA) + { + _003FEntered_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA = true; + } + void* ptr = _getFiberPtrId(); + int num = 0; + int num2 = 0; + int num3 = 0; + RuntimeHelpers.PrepareConstrainedRegions(); + try + { + while (num2 == 0) + { + try + { + } + finally + { + IntPtr intPtr = (IntPtr)0; + IntPtr intPtr2 = intPtr; + IntPtr intPtr3 = (IntPtr)ptr; + IntPtr intPtr4 = intPtr3; + IntPtr intPtr5 = Interlocked.CompareExchange(ref System.Runtime.CompilerServices.Unsafe.As(ref __native_startup_lock), intPtr3, intPtr); + IntPtr intPtr6 = intPtr5; + void* ptr2 = (void*)intPtr5; + if (ptr2 == null) + { + num2 = 1; + } + else if (ptr2 == ptr) + { + num = 1; + num2 = 1; + } + } + if (num2 == 0) + { + Sleep(1000u); + } + } + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeVtables(P_0); + if (_003FIsDefaultDomain_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2_NA) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeNative(P_0); + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializePerProcess(P_0); + } + else if (_003CCrtImplementationDetails_003E_002EDefaultDomain_002ENeedsInitialization()) + { + num3 = 1; + } + } + finally + { + if (num == 0) + { + IntPtr value = (IntPtr)0; + Interlocked.Exchange(ref System.Runtime.CompilerServices.Unsafe.As(ref __native_startup_lock), value); + } + } + if (num3 != 0) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeDefaultAppDomain(P_0); + } + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializePerAppDomain(P_0); + _003FInitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA = 1; + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitializeUninitializer(P_0); + } + + [SecurityCritical] + internal static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeAppDomain() + { + _app_exit_callback(); + } + + [SecurityCritical] + internal unsafe static int _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_UninitializeDefaultDomain(void* cookie) + { + _exit_callback(); + _003FInitializedPerProcess_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA = false; + if (_003FInitializedNativeFromCCTOR_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA) + { + _cexit(); + __native_startup_state = (__enative_startup_state)0; + _003FInitializedNativeFromCCTOR_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA = false; + } + _003FInitializedNative_0040DefaultDomain_0040_003CCrtImplementationDetails_003E_0040_00402_NA = false; + return 0; + } + + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeDefaultDomain() + { + if (_003CCrtImplementationDetails_003E_002EDefaultDomain_002ENeedsUninitialization()) + { + if (AppDomain.CurrentDomain.IsDefaultAppDomain()) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_UninitializeDefaultDomain(null); + } + else + { + _003CCrtImplementationDetails_003E_002EDoCallBackInDefaultDomain((delegate* unmanaged[Stdcall, Stdcall])__unep_0040_003F_UninitializeDefaultDomain_0040LanguageSupport_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024FCGJPAX_0040Z, null); + } + } + } + + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [PrePrepareMethod] + [SecurityCritical] + internal static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EDomainUnload(object source, EventArgs arguments) + { + if (_003FInitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA != 0 && Interlocked.Exchange(ref _003FUninitialized_0040CurrentDomain_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q2HA, 1) == 0) + { + bool num = Interlocked.Decrement(ref _003FCount_0040AllDomains_0040_003CCrtImplementationDetails_003E_0040_00402HA) == 0; + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeAppDomain(); + if (num) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeDefaultDomain(); + } + } + } + + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SecurityCritical] + [DebuggerStepThrough] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002ECleanup(LanguageSupport* P_0, System.Exception innerException) + { + try + { + bool flag = Interlocked.Decrement(ref _003FCount_0040AllDomains_0040_003CCrtImplementationDetails_003E_0040_00402HA) == 0; + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeAppDomain(); + if (flag) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EUninitializeDefaultDomain(); + } + } + catch (System.Exception nestedException) + { + _003CCrtImplementationDetails_003E_002EThrowNestedModuleLoadException(innerException, nestedException); + } + catch + { + _003CCrtImplementationDetails_003E_002EThrowNestedModuleLoadException(innerException, null); + } + } + + [SecurityCritical] + internal unsafe static LanguageSupport* _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_007Bctor_007D(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_007Bctor_007D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0); + return P_0; + } + + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_007Bdtor_007D(LanguageSupport* P_0) + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_007Bdtor_007D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0); + } + + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SecurityCritical] + [DebuggerStepThrough] + internal unsafe static void _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitialize(LanguageSupport* P_0) + { + bool flag = false; + RuntimeHelpers.PrepareConstrainedRegions(); + try + { + gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0, "The C++ module failed to load.\n"); + RuntimeHelpers.PrepareConstrainedRegions(); + try + { + } + finally + { + Interlocked.Increment(ref _003FCount_0040AllDomains_0040_003CCrtImplementationDetails_003E_0040_00402HA); + flag = true; + } + _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_Initialize(P_0); + } + catch (System.Exception innerException) + { + if (flag) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002ECleanup(P_0, innerException); + } + _003CCrtImplementationDetails_003E_002EThrowModuleLoadException(gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_002EP_0024AAVString_0040System_0040_0040((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0), innerException); + } + catch + { + if (flag) + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002ECleanup(P_0, null); + } + _003CCrtImplementationDetails_003E_002EThrowModuleLoadException(gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_002EP_0024AAVString_0040System_0040_0040((gcroot_003CSystem_003A_003AString_0020_005E_003E*)P_0), null); + } + } + + [DebuggerStepThrough] + [SecurityCritical] + static unsafe _003CModule_003E() + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out LanguageSupport languageSupport); + _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_007Bctor_007D(&languageSupport); + try + { + _003CCrtImplementationDetails_003E_002ELanguageSupport_002EInitialize(&languageSupport); + } + catch + { + //try-fault + ___CxxCallUnwindDtor((delegate*)(delegate*)(&_003CCrtImplementationDetails_003E_002ELanguageSupport_002E_007Bdtor_007D), &languageSupport); + throw; + } + _003CCrtImplementationDetails_003E_002ELanguageSupport_002E_007Bdtor_007D(&languageSupport); + } + + [DebuggerStepThrough] + [SecuritySafeCritical] + internal unsafe static gcroot_003CSystem_003A_003AString_0020_005E_003E* gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_007Bctor_007D(gcroot_003CSystem_003A_003AString_0020_005E_003E* P_0) + { + *(int*)P_0 = (int)((IntPtr)GCHandle.Alloc(null)).ToPointer(); + return P_0; + } + + [SecurityCritical] + [DebuggerStepThrough] + internal unsafe static void gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_007Bdtor_007D(gcroot_003CSystem_003A_003AString_0020_005E_003E* P_0) + { + IntPtr intPtr = new IntPtr((void*)(int)(*(uint*)P_0)); + ((GCHandle)intPtr).Free(); + *(int*)P_0 = 0; + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static gcroot_003CSystem_003A_003AString_0020_005E_003E* gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_003D(gcroot_003CSystem_003A_003AString_0020_005E_003E* P_0, string t) + { + IntPtr intPtr = new IntPtr((void*)(int)(*(uint*)P_0)); + GCHandle gCHandle = (GCHandle)intPtr; + gCHandle.Target = t; + return P_0; + } + + [SecuritySafeCritical] + internal unsafe static string gcroot_003CSystem_003A_003AString_0020_005E_003E_002E_002EP_0024AAVString_0040System_0040_0040(gcroot_003CSystem_003A_003AString_0020_005E_003E* P_0) + { + IntPtr intPtr = new IntPtr((void*)(int)(*(uint*)P_0)); + return (string)((GCHandle)intPtr).Target; + } + + [SecurityCritical] + [HandleProcessCorruptedStateExceptions] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SecurityPermission(SecurityAction.Assert, UnmanagedCode = true)] + internal unsafe static void ___CxxCallUnwindDtor(delegate* pDtor, void* pThis) + { + try + { + pDtor(pThis); + } + catch when (__FrameUnwindFilter((_EXCEPTION_POINTERS*)Marshal.GetExceptionPointers()) != 0) + { + } + } + + [SecurityCritical] + [HandleProcessCorruptedStateExceptions] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SecurityPermission(SecurityAction.Assert, UnmanagedCode = true)] + internal unsafe static void ___CxxCallUnwindDelDtor(delegate* pDtor, void* pThis) + { + try + { + pDtor(pThis); + } + catch when (__FrameUnwindFilter((_EXCEPTION_POINTERS*)Marshal.GetExceptionPointers()) != 0) + { + } + } + + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SecurityCritical] + [HandleProcessCorruptedStateExceptions] + [SecurityPermission(SecurityAction.Assert, UnmanagedCode = true)] + internal unsafe static void ___CxxCallUnwindVecDtor(delegate*, void> pVecDtor, void* ptr, uint size, int count, delegate* pDtor) + { + try + { + pVecDtor(ptr, size, count, pDtor); + } + catch when (__FrameUnwindFilter((_EXCEPTION_POINTERS*)Marshal.GetExceptionPointers()) != 0) + { + } + } + + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [HandleProcessCorruptedStateExceptions] + [SecurityCritical] + internal unsafe static void __ehvec_dtor(void* ptr, uint size, int count, delegate* pDtor) + { + int num = 0; + ptr = (int)size * count + (byte*)ptr; + try + { + while (true) + { + count--; + if (count < 0) + { + break; + } + ptr = (byte*)ptr - (int)size; + pDtor(ptr); + } + num = 1; + } + finally + { + if (num == 0) + { + __ArrayUnwind(ptr, size, count, pDtor); + } + } + } + + [SecurityCritical] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SecurityPermission(SecurityAction.Assert, UnmanagedCode = true)] + internal unsafe static int _003FA0xf01855ed_002EArrayUnwindFilter(_EXCEPTION_POINTERS* pExPtrs) + { + if (*(int*)(int)(*(uint*)pExPtrs) != -529697949) + { + return 0; + } + terminate(); + return 0; + } + + [SecurityCritical] + [HandleProcessCorruptedStateExceptions] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + internal unsafe static void __ArrayUnwind(void* ptr, uint size, int count, delegate* pDtor) + { + try + { + while (true) + { + count--; + if (count >= 0) + { + ptr = (byte*)ptr - (int)size; + pDtor(ptr); + continue; + } + break; + } + } + catch when (_003FA0xf01855ed_002EArrayUnwindFilter((_EXCEPTION_POINTERS*)Marshal.GetExceptionPointers()) != 0) + { + } + } + + [SecurityCritical] + [DebuggerStepThrough] + internal unsafe static ValueType _003CCrtImplementationDetails_003E_002EAtExitLock_002E_handle() + { + if (_003F_lock_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0PAXA != null) + { + IntPtr value = new IntPtr(_003F_lock_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0PAXA); + return GCHandle.FromIntPtr(value); + } + return null; + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Construct(object value) + { + _003F_lock_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0PAXA = null; + _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Set(value); + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Set(object value) + { + ValueType valueType = _003CCrtImplementationDetails_003E_002EAtExitLock_002E_handle(); + if (valueType == null) + { + valueType = GCHandle.Alloc(value); + _003F_lock_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0PAXA = GCHandle.ToIntPtr((GCHandle)valueType).ToPointer(); + } + else + { + ((GCHandle)valueType).Target = value; + } + } + + [DebuggerStepThrough] + [SecurityCritical] + internal static object _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Get() + { + ValueType valueType = _003CCrtImplementationDetails_003E_002EAtExitLock_002E_handle(); + if (valueType != null) + { + return ((GCHandle)valueType).Target; + } + return null; + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static void _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Destruct() + { + ValueType valueType = _003CCrtImplementationDetails_003E_002EAtExitLock_002E_handle(); + if (valueType != null) + { + ((GCHandle)valueType).Free(); + _003F_lock_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0PAXA = null; + } + } + + [DebuggerStepThrough] + [SecuritySafeCritical] + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003CCrtImplementationDetails_003E_002EAtExitLock_002EIsInitialized() + { + return _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Get() != null; + } + + [SecurityCritical] + [DebuggerStepThrough] + internal static void _003CCrtImplementationDetails_003E_002EAtExitLock_002EAddRef() + { + if (!_003CCrtImplementationDetails_003E_002EAtExitLock_002EIsInitialized()) + { + _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Construct(new object()); + _003F_ref_count_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0HA = 0; + } + _003F_ref_count_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0HA++; + } + + [SecurityCritical] + [DebuggerStepThrough] + internal static void _003CCrtImplementationDetails_003E_002EAtExitLock_002ERemoveRef() + { + _003F_ref_count_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0HA--; + if (_003F_ref_count_0040AtExitLock_0040_003CCrtImplementationDetails_003E_0040_0040_0024_0024Q0HA == 0) + { + _003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Destruct(); + } + } + + [DebuggerStepThrough] + [SecurityCritical] + internal static void _003CCrtImplementationDetails_003E_002EAtExitLock_002EEnter() + { + Monitor.Enter(_003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Get()); + } + + [DebuggerStepThrough] + [SecurityCritical] + internal static void _003CCrtImplementationDetails_003E_002EAtExitLock_002EExit() + { + Monitor.Exit(_003CCrtImplementationDetails_003E_002EAtExitLock_002E_lock_Get()); + } + + [DebuggerStepThrough] + [SecurityCritical] + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003FA0xe11594df_002E__global_lock() + { + bool result = false; + if (_003CCrtImplementationDetails_003E_002EAtExitLock_002EIsInitialized()) + { + _003CCrtImplementationDetails_003E_002EAtExitLock_002EEnter(); + result = true; + } + return result; + } + + [DebuggerStepThrough] + [SecurityCritical] + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003FA0xe11594df_002E__global_unlock() + { + bool result = false; + if (_003CCrtImplementationDetails_003E_002EAtExitLock_002EIsInitialized()) + { + _003CCrtImplementationDetails_003E_002EAtExitLock_002EExit(); + result = true; + } + return result; + } + + [DebuggerStepThrough] + [SecurityCritical] + [return: MarshalAs(UnmanagedType.U1)] + internal static bool _003FA0xe11594df_002E__alloc_global_lock() + { + _003CCrtImplementationDetails_003E_002EAtExitLock_002EAddRef(); + return _003CCrtImplementationDetails_003E_002EAtExitLock_002EIsInitialized(); + } + + [DebuggerStepThrough] + [SecurityCritical] + internal static void _003FA0xe11594df_002E__dealloc_global_lock() + { + _003CCrtImplementationDetails_003E_002EAtExitLock_002ERemoveRef(); + } + + [SecurityCritical] + internal unsafe static int _atexit_helper(delegate* func, uint* __pexit_list_size, delegate*** __ponexitend_e, delegate*** __ponexitbegin_e) + { + delegate* delegate_002A = null; + if (func == (delegate*)null) + { + return -1; + } + if (_003FA0xe11594df_002E__global_lock()) + { + try + { + delegate** ptr = (delegate**)DecodePointer((void*)(int)(*(uint*)__ponexitbegin_e)); + delegate** ptr2 = (delegate**)DecodePointer((void*)(int)(*(uint*)__ponexitend_e)); + int num = (int)((byte*)ptr2 - (nuint)ptr); + if (*__pexit_list_size - 1 < (uint)(num >>> 2)) + { + try + { + uint num2 = *__pexit_list_size * 4; + uint num3 = ((num2 >= 2048) ? 2048u : num2); + IntPtr cb = new IntPtr((int)(num2 + num3)); + IntPtr pv = new IntPtr(ptr); + IntPtr intPtr = Marshal.ReAllocHGlobal(pv, cb); + IntPtr intPtr2 = intPtr; + IntPtr intPtr3 = intPtr; + ptr2 = (delegate**)((byte*)intPtr3.ToPointer() + num); + ptr = (delegate**)intPtr3.ToPointer(); + uint num4 = *__pexit_list_size; + uint num5 = ((512 >= num4) ? num4 : 512u); + *__pexit_list_size = num4 + num5; + } + catch (OutOfMemoryException) + { + IntPtr cb2 = new IntPtr((int)(*__pexit_list_size * 4 + 8)); + IntPtr pv2 = new IntPtr(ptr); + IntPtr intPtr4 = Marshal.ReAllocHGlobal(pv2, cb2); + IntPtr intPtr5 = intPtr4; + IntPtr intPtr6 = intPtr4; + ptr2 = (delegate**)((byte*)intPtr6.ToPointer() - (nuint)ptr + (nuint)ptr2); + ptr = (delegate**)intPtr6.ToPointer(); + *__pexit_list_size += 4u; + } + } + *(int*)ptr2 = (int)func; + ptr2 = (delegate**)((byte*)ptr2 + 4); + delegate_002A = func; + *(int*)__ponexitbegin_e = (int)EncodePointer(ptr); + *(int*)__ponexitend_e = (int)EncodePointer(ptr2); + } + catch (OutOfMemoryException) + { + } + finally + { + _003FA0xe11594df_002E__global_unlock(); + } + if (delegate_002A != (delegate*)null) + { + return 0; + } + } + return -1; + } + + [SecurityCritical] + internal unsafe static void _exit_callback() + { + if (_003FA0xe11594df_002E__exit_list_size == 0) + { + return; + } + delegate** ptr = (delegate**)DecodePointer(_003FA0xe11594df_002E__onexitbegin_m); + delegate** ptr2 = (delegate**)DecodePointer(_003FA0xe11594df_002E__onexitend_m); + if (ptr != (delegate**)(-1) && ptr != null && ptr2 != null) + { + delegate** ptr3 = ptr; + delegate** ptr4 = ptr2; + while (true) + { + ptr2 = (delegate**)((byte*)ptr2 - 4); + if (ptr2 < ptr) + { + break; + } + if ((void*)(*(int*)ptr2) != _encoded_null()) + { + void* intPtr = DecodePointer((void*)(int)(*(uint*)ptr2)); + *(int*)ptr2 = (int)_encoded_null(); + ((delegate*)intPtr)(); + delegate** ptr5 = (delegate**)DecodePointer(_003FA0xe11594df_002E__onexitbegin_m); + delegate** ptr6 = (delegate**)DecodePointer(_003FA0xe11594df_002E__onexitend_m); + if (ptr3 != ptr5 || ptr4 != ptr6) + { + ptr3 = ptr5; + ptr = ptr5; + ptr4 = ptr6; + ptr2 = ptr6; + } + } + } + IntPtr hglobal = new IntPtr(ptr); + Marshal.FreeHGlobal(hglobal); + } + _003FA0xe11594df_002E__dealloc_global_lock(); + } + + [SecurityCritical] + [DebuggerStepThrough] + internal unsafe static int _initatexit_m() + { + int result = 0; + if (_003FA0xe11594df_002E__alloc_global_lock()) + { + _003FA0xe11594df_002E__onexitbegin_m = (delegate**)EncodePointer(Marshal.AllocHGlobal(128).ToPointer()); + _003FA0xe11594df_002E__onexitend_m = _003FA0xe11594df_002E__onexitbegin_m; + _003FA0xe11594df_002E__exit_list_size = 32u; + result = 1; + } + return result; + } + + internal unsafe static delegate* _onexit_m(delegate* _Function) + { + return (_atexit_m((delegate*)_Function) != -1) ? _Function : null; + } + + [SecurityCritical] + internal unsafe static int _atexit_m(delegate* func) + { + return _atexit_helper((delegate*)EncodePointer(func), (uint*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xe11594df_002E__exit_list_size), (delegate***)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xe11594df_002E__onexitend_m), (delegate***)System.Runtime.CompilerServices.Unsafe.AsPointer(ref _003FA0xe11594df_002E__onexitbegin_m)); + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static int _initatexit_app_domain() + { + if (_003FA0xe11594df_002E__alloc_global_lock()) + { + __onexitbegin_app_domain = (delegate**)EncodePointer(Marshal.AllocHGlobal(128).ToPointer()); + __onexitend_app_domain = __onexitbegin_app_domain; + __exit_list_size_app_domain = 32u; + } + return 1; + } + + [SecurityCritical] + [HandleProcessCorruptedStateExceptions] + internal unsafe static void _app_exit_callback() + { + if (__exit_list_size_app_domain == 0) + { + return; + } + delegate** ptr = (delegate**)DecodePointer(__onexitbegin_app_domain); + delegate** ptr2 = (delegate**)DecodePointer(__onexitend_app_domain); + try + { + if (ptr == (delegate**)(-1) || ptr == null || ptr2 == null) + { + return; + } + delegate* delegate_002A = null; + delegate** ptr3 = ptr; + delegate** ptr4 = ptr2; + while (true) + { + delegate** ptr5 = null; + delegate** ptr6 = null; + do + { + ptr2 = (delegate**)((byte*)ptr2 - 4); + } + while (ptr2 >= ptr && (void*)(*(int*)ptr2) == _encoded_null()); + if (ptr2 >= ptr) + { + delegate_002A = (delegate*)DecodePointer((void*)(int)(*(uint*)ptr2)); + *(int*)ptr2 = (int)_encoded_null(); + delegate_002A(); + delegate** ptr7 = (delegate**)DecodePointer(__onexitbegin_app_domain); + delegate** ptr8 = (delegate**)DecodePointer(__onexitend_app_domain); + if (ptr3 != ptr7 || ptr4 != ptr8) + { + ptr3 = ptr7; + ptr = ptr7; + ptr4 = ptr8; + ptr2 = ptr8; + } + continue; + } + break; + } + } + finally + { + IntPtr hglobal = new IntPtr(ptr); + Marshal.FreeHGlobal(hglobal); + _003FA0xe11594df_002E__dealloc_global_lock(); + } + } + + [SecurityCritical] + internal unsafe static delegate* _onexit_m_appdomain(delegate* _Function) + { + return (_atexit_m_appdomain((delegate*)_Function) != -1) ? _Function : null; + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static int _atexit_m_appdomain(delegate* func) + { + return _atexit_helper((delegate*)EncodePointer(func), (uint*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __exit_list_size_app_domain), (delegate***)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __onexitend_app_domain), (delegate***)System.Runtime.CompilerServices.Unsafe.AsPointer(ref __onexitbegin_app_domain)); + } + + [DllImport("KERNEL32.dll")] + [SecurityCritical] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SuppressUnmanagedCodeSecurity] + public unsafe static extern void* DecodePointer(void* Ptr); + + [DllImport("MSVCR100.dll", CallingConvention = CallingConvention.Cdecl)] + [SuppressUnmanagedCodeSecurity] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SecurityCritical] + public unsafe static extern void* _encoded_null(); + + [DllImport("KERNEL32.dll")] + [SecurityCritical] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] + [SuppressUnmanagedCodeSecurity] + public unsafe static extern void* EncodePointer(void* Ptr); + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static int _initterm_e(delegate* unmanaged[Cdecl, Cdecl]* pfbegin, delegate* unmanaged[Cdecl, Cdecl]* pfend) + { + int num = 0; + if (pfbegin < pfend) + { + while (num == 0) + { + uint num2 = *(uint*)pfbegin; + if (num2 != 0) + { + num = ((delegate* unmanaged[Cdecl, Cdecl])(int)num2)(); + } + pfbegin = (delegate* unmanaged[Cdecl, Cdecl]*)((byte*)pfbegin + 4); + if (pfbegin >= pfend) + { + break; + } + } + } + return num; + } + + [SecurityCritical] + [DebuggerStepThrough] + internal unsafe static void _initterm(delegate* unmanaged[Cdecl, Cdecl]* pfbegin, delegate* unmanaged[Cdecl, Cdecl]* pfend) + { + if (pfbegin >= pfend) + { + return; + } + do + { + uint num = *(uint*)pfbegin; + if (num != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)num)(); + } + pfbegin = (delegate* unmanaged[Cdecl, Cdecl]*)((byte*)pfbegin + 4); + } + while (pfbegin < pfend); + } + + [DebuggerStepThrough] + internal static ModuleHandle _003CCrtImplementationDetails_003E_002EThisModule_002EHandle() + { + return typeof(ThisModule).Module.ModuleHandle; + } + + [DebuggerStepThrough] + [SecurityCritical] + [SecurityPermission(SecurityAction.Assert, UnmanagedCode = true)] + internal unsafe static void _initterm_m(delegate** pfbegin, delegate** pfend) + { + if (pfbegin >= pfend) + { + return; + } + do + { + uint num = *(uint*)pfbegin; + if (num != 0) + { + _003CCrtImplementationDetails_003E_002EThisModule_002EResolveMethod_003Cvoid_0020const_0020_002A_0020__clrcall_0028void_0029_003E((delegate*)(int)num)(); + } + pfbegin = (delegate**)((byte*)pfbegin + 4); + } + while (pfbegin < pfend); + } + + [DebuggerStepThrough] + [SecurityCritical] + internal unsafe static delegate* _003CCrtImplementationDetails_003E_002EThisModule_002EResolveMethod_003Cvoid_0020const_0020_002A_0020__clrcall_0028void_0029_003E(delegate* methodToken) + { + return (delegate*)_003CCrtImplementationDetails_003E_002EThisModule_002EHandle().ResolveMethodHandle((int)methodToken).GetFunctionPointer().ToPointer(); + } + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void CWrapLogger_002ELogError(CWrapLogger* P_0, char* P_1, __arglist); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void CWrapLogger_002ELogWarning(CWrapLogger* P_0, char* P_1, __arglist); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void CWrapLogger_002ELogCustom(CWrapLogger* P_0, uint* P_1, char* P_2, __arglist); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Elocale_002Efacet_002E_Incref(locale.facet* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + [return: MarshalAs(UnmanagedType.U1)] + internal unsafe static extern bool std_002Eios_base_002Egood(ios_base* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int std_002Eios_base_002Eflags(ios_base* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int std_002Eios_base_002Esetf(ios_base* P_0, int P_1, int P_2); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern long std_002Eios_base_002Ewidth(ios_base* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern long std_002Eios_base_002Ewidth(ios_base* P_0, long P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetstate(basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, int P_1, [MarshalAs(UnmanagedType.U1)] bool P_2); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Erdbuf(basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, delegate* unmanaged[Cdecl, Cdecl] P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, delegate* unmanaged[Cdecl, Cdecl] P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_003C_003C(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, int P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eflush(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern ushort std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esputc(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, [MarshalAs(UnmanagedType.U2)] char P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eeback(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egptr(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbase(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epptr(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eegptr(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Egbump(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, int P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetg(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, char* P_1, char* P_2, char* P_3); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Eepptr(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Epbump(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, int P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, char* P_1, char* P_2); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esetp(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, char* P_1, char* P_2, char* P_3); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Pninc(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + [return: MarshalAs(UnmanagedType.U2)] + internal unsafe static extern char std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Efill(basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_1, int P_2); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* std_002Ebasic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Etie(basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Ebasic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002E_Osfx(basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern long std_002Ebasic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_002Esputn(basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E* P_0, char* P_1, long P_2); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* @new(uint P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* LocalFree(void* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int RegCloseKey(HKEY__* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern int __CxxQueryExceptionSize(); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int __CxxDetectRethrow(void* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int wcscpy_s(char* P_0, uint P_1, char* P_2); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void DeleteCriticalSection(_RTL_CRITICAL_SECTION* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int _splitpath_s(sbyte* P_0, sbyte* P_1, uint P_2, sbyte* P_3, uint P_4, sbyte* P_5, uint P_6, sbyte* P_7, uint P_8); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int swprintf_s(char* P_0, uint P_1, char* P_2, __arglist); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* CharNextW(char* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void SysFreeString(char* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int wcscat_s(char* P_0, uint P_1, char* P_2); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern uint SysStringByteLen(char* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void _CxxThrowException(void* P_0, _s__ThrowInfo* P_1); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int UnregisterClassW(char* P_0, HINSTANCE__* P_1); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int RegOpenKeyExW(HKEY__* P_0, char* P_1, uint P_2, uint P_3, HKEY__** P_4); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* LocalAlloc(uint P_0, uint P_1); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int SetErrorInfo(uint P_0, IErrorInfo* P_1); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int FindClose(void* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern void _com_issue_error(int P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void __CxxUnregisterExceptionObject(void* P_0, int P_1); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void delete(void* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern delegate* unmanaged[Stdcall, Stdcall] GetProcAddress(HINSTANCE__* P_0, sbyte* P_1); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern uint GetLastError(); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void RaiseException(uint P_0, uint P_1, uint P_2, uint* P_3); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int lstrlenW(char* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int __CxxExceptionFilter(void* P_0, void* P_1, int P_2, void* P_3); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int MultiByteToWideChar(uint P_0, uint P_1, sbyte* P_2, int P_3, char* P_4, int P_5); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void delete_005B_005D(void* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* _recalloc(void* P_0, uint P_1, uint P_2); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern uint GetModuleFileNameW(HINSTANCE__* P_0, char* P_1, uint P_2); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern uint FormatMessageW(uint P_0, void* P_1, uint P_2, uint P_3, char* P_4, uint P_5, sbyte** P_6); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int RegQueryValueExW(HKEY__* P_0, char* P_1, uint* P_2, uint* P_3, byte* P_4, uint* P_5); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void VariantInit(tagVARIANT* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* SysAllocStringByteLen(sbyte* P_0, uint P_1); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int __CxxRegisterExceptionObject(void* P_0, void* P_1); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern HINSTANCE__* GetModuleHandleW(char* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int VariantCopy(tagVARIANT* P_0, tagVARIANT* P_1); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int _wsplitpath_s(char* P_0, char* P_1, uint P_2, char* P_3, uint P_4, char* P_5, uint P_6, char* P_7, uint P_8); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int _makepath_s(sbyte* P_0, uint P_1, sbyte* P_2, sbyte* P_3, sbyte* P_4, sbyte* P_5); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* calloc(uint P_0, uint P_1); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void free(void* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int InterlockedDecrement(int* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int InterlockedIncrement(int* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern HINSTANCE__* LoadLibraryExW(char* P_0, void* P_1, uint P_2); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int FreeLibrary(HINSTANCE__* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int GetErrorInfo(uint P_0, IErrorInfo** P_1); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* memmove(void* P_0, void* P_1, uint P_2); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int lstrlenA(sbyte* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int AtlLoadTypeLib(HINSTANCE__* P_0, char* P_1, char** P_2, ITypeLib** P_3); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int AtlGetPerUserRegistration(bool* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int AtlRegisterClassCategoriesHelper(_GUID* P_0, _ATL_CATMAP_ENTRY* P_1, int P_2); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void __ExceptionPtrCopy(void* P_0, void* P_1); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* FindFirstFileW(char* P_0, _WIN32_FIND_DATAW* P_1); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool std_002Euncaught_exception(); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002E_Xlength_error(sbyte* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002E_Xout_of_range(sbyte* P_0); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern exception* std_002Eexception_002E_007Bctor_007D(exception* P_0, exception* P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern exception* std_002Eexception_002E_007Bctor_007D(exception* P_0, sbyte** P_1); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002Eexception_002E_007Bdtor_007D(exception* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int wcsncpy_s(char* P_0, uint P_1, char* P_2, uint P_3); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern uint SysStringLen(char* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern char* SysAllocString(char* P_0); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* CoTaskMemAlloc(uint P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void CWrapLogger_002ELogInfo(CWrapLogger* P_0, char* P_1, __arglist); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void CWrapLogger_002ELogTrace(CWrapLogger* P_0, char* P_1, __arglist); + + [DllImport("", CallingConvention = CallingConvention.ThisCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void std_002E_Container_base0_002E_Orphan_all(_Container_base0* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern WritersWithNonBlockingReadersLock* WritersWithNonBlockingReadersLock_002E_007Bctor_007D(WritersWithNonBlockingReadersLock* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void WritersWithNonBlockingReadersLock_002E_007Bdtor_007D(WritersWithNonBlockingReadersLock* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void WritersWithNonBlockingReadersLock_002EWriterLock(WritersWithNonBlockingReadersLock* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void WritersWithNonBlockingReadersLock_002EWriterUnlock(WritersWithNonBlockingReadersLock* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void WritersWithNonBlockingReadersLock_002EReaderLock(WritersWithNonBlockingReadersLock* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void WritersWithNonBlockingReadersLock_002EReaderUnlock(WritersWithNonBlockingReadersLock* P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern void* _getFiberPtrId(); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern void _amsg_exit(int P_0); + + [MethodImpl(MethodImplOptions.Unmanaged | MethodImplOptions.PreserveSig, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern void __security_init_cookie(); + + [DllImport("", CallingConvention = CallingConvention.StdCall, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern void Sleep(uint P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern void _cexit(); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal unsafe static extern int __FrameUnwindFilter(_EXCEPTION_POINTERS* P_0); + + [DllImport("", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] + [MethodImpl(MethodImplOptions.Unmanaged, MethodCodeType = MethodCodeType.Native)] + [SuppressUnmanagedCodeSecurity] + internal static extern void terminate(); +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_102.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_102.cs new file mode 100644 index 0000000..e1947b4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_102.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 110)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_102 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_15.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_15.cs new file mode 100644 index 0000000..d78d5fb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_15.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 23)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024_TypeDescriptor_0024_extraBytes_15 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_17.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_17.cs new file mode 100644 index 0000000..f2bf47f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_17.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 25)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024_TypeDescriptor_0024_extraBytes_17 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_19.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_19.cs new file mode 100644 index 0000000..c982c68 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_19.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 27)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_TypeDescriptor_0024_extraBytes_19 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_20.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_20.cs new file mode 100644 index 0000000..5f68e65 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_20.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024_TypeDescriptor_0024_extraBytes_20 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_21.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_21.cs new file mode 100644 index 0000000..df9fa25 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_21.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 29)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024_TypeDescriptor_0024_extraBytes_21 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_22.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_22.cs new file mode 100644 index 0000000..fadb3b6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_22.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 30)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_TypeDescriptor_0024_extraBytes_22 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_23.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_23.cs new file mode 100644 index 0000000..84b0c9d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_23.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 31)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024_TypeDescriptor_0024_extraBytes_23 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_24.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_24.cs new file mode 100644 index 0000000..07483cb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_24.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_TypeDescriptor_0024_extraBytes_24 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_25.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_25.cs new file mode 100644 index 0000000..6a8fb17 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_25.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 33)] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _0024_TypeDescriptor_0024_extraBytes_25 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_26.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_26.cs new file mode 100644 index 0000000..0d79e89 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_26.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 34)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024_TypeDescriptor_0024_extraBytes_26 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_27.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_27.cs new file mode 100644 index 0000000..f88518c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_27.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 35)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_27 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_29.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_29.cs new file mode 100644 index 0000000..5f45308 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_29.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 37)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_29 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_3.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_3.cs new file mode 100644 index 0000000..abda76e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_3.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 11)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _0024_TypeDescriptor_0024_extraBytes_3 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_30.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_30.cs new file mode 100644 index 0000000..f0ec455 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_30.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 38)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_30 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_31.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_31.cs new file mode 100644 index 0000000..7e89505 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_31.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 39)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024_TypeDescriptor_0024_extraBytes_31 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_37.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_37.cs new file mode 100644 index 0000000..88401aa --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_37.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 45)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_37 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_42.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_42.cs new file mode 100644 index 0000000..10f50f5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_42.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 50)] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024_TypeDescriptor_0024_extraBytes_42 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_46.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_46.cs new file mode 100644 index 0000000..967327c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_46.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 54)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _0024_TypeDescriptor_0024_extraBytes_46 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_48.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_48.cs new file mode 100644 index 0000000..905fcb8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_48.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 56)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_48 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_50.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_50.cs new file mode 100644 index 0000000..c6f9d13 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_50.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 58)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024_TypeDescriptor_0024_extraBytes_50 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_52.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_52.cs new file mode 100644 index 0000000..d12782f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_52.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 60)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_52 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_53.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_53.cs new file mode 100644 index 0000000..5b33c7d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_53.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 61)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_TypeDescriptor_0024_extraBytes_53 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_54.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_54.cs new file mode 100644 index 0000000..daef061 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_54.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 62)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_54 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_58.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_58.cs new file mode 100644 index 0000000..f9eebe3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_58.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 66)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024_TypeDescriptor_0024_extraBytes_58 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_72.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_72.cs new file mode 100644 index 0000000..117e7ab --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_72.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 80)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct _0024_TypeDescriptor_0024_extraBytes_72 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_75.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_75.cs new file mode 100644 index 0000000..ccbe4df --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_75.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 83)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _0024_TypeDescriptor_0024_extraBytes_75 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_77.cs b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_77.cs new file mode 100644 index 0000000..d16a55a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_TypeDescriptor-_extraBytes_77.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 85)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +internal struct _0024_TypeDescriptor_0024_extraBytes_77 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_16.cs b/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_16.cs new file mode 100644 index 0000000..2a12a6b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_16.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024_s__CatchableTypeArray_0024_extraBytes_16 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_4.cs b/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_4.cs new file mode 100644 index 0000000..3d884d6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_4.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_s__CatchableTypeArray_0024_extraBytes_4 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_8.cs b/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_8.cs new file mode 100644 index 0000000..4104396 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__CatchableTypeArray-_extraBytes_8.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _0024_s__CatchableTypeArray_0024_extraBytes_8 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_12.cs b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_12.cs new file mode 100644 index 0000000..b57bcf8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_12.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 13)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_s__RTTIBaseClassArray_0024_extraBytes_12 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_16.cs b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_16.cs new file mode 100644 index 0000000..b9b317e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_16.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 17)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024_s__RTTIBaseClassArray_0024_extraBytes_16 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_20.cs b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_20.cs new file mode 100644 index 0000000..635d6e4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_20.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 21)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024_s__RTTIBaseClassArray_0024_extraBytes_20 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_36.cs b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_36.cs new file mode 100644 index 0000000..ef2a0cf --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_36.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 37)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _0024_s__RTTIBaseClassArray_0024_extraBytes_36 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_4.cs b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_4.cs new file mode 100644 index 0000000..d86a8d8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_4.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 5)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_s__RTTIBaseClassArray_0024_extraBytes_4 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_40.cs b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_40.cs new file mode 100644 index 0000000..769a130 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_40.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 41)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _0024_s__RTTIBaseClassArray_0024_extraBytes_40 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_8.cs b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_8.cs new file mode 100644 index 0000000..dc173e8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/-_s__RTTIBaseClassArray-_extraBytes_8.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 9)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _0024_s__RTTIBaseClassArray_0024_extraBytes_8 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/AAComBSTR.cs b/analysis/decompiled/aaMxDataConsumer/AAComBSTR.cs new file mode 100644 index 0000000..b324958 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/AAComBSTR.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct AAComBSTR +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-HINSTANCE__---FreeLibraryPolicy-.cs b/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-HINSTANCE__---FreeLibraryPolicy-.cs new file mode 100644 index 0000000..3dd8b50 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-HINSTANCE__---FreeLibraryPolicy-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace AAHandle; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CHandle_003CHINSTANCE___0020_002A_002CFreeLibraryPolicy_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-void---CloseHandlePolicy-.cs b/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-void---CloseHandlePolicy-.cs new file mode 100644 index 0000000..bf4ef36 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-void---CloseHandlePolicy-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace AAHandle; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CHandle_003Cvoid_0020_002A_002CCloseHandlePolicy_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-void---FindCloseHandlePolicy-.cs b/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-void---FindCloseHandlePolicy-.cs new file mode 100644 index 0000000..61d5f58 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/AAHandle/CHandle-void---FindCloseHandlePolicy-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace AAHandle; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CHandle_003Cvoid_0020_002A_002CFindCloseHandlePolicy_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL.-AtlImplementationDetails-/CComModuleHelper.cs b/analysis/decompiled/aaMxDataConsumer/ATL.-AtlImplementationDetails-/CComModuleHelper.cs new file mode 100644 index 0000000..b21c52b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL.-AtlImplementationDetails-/CComModuleHelper.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL._003CAtlImplementationDetails_003E; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct CComModuleHelper +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL._ATL_SAFE_ALLOCA_IMPL/CAtlSafeAllocBufferManager-ATL.cs b/analysis/decompiled/aaMxDataConsumer/ATL._ATL_SAFE_ALLOCA_IMPL/CAtlSafeAllocBufferManager-ATL.cs new file mode 100644 index 0000000..f3d36e5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL._ATL_SAFE_ALLOCA_IMPL/CAtlSafeAllocBufferManager-ATL.cs @@ -0,0 +1,21 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL._ATL_SAFE_ALLOCA_IMPL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CAtlSafeAllocBufferManager_003CATL_003A_003ACCRTAllocator_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [UnsafeValueType] + [MiscellaneousBits(65)] + internal struct CAtlSafeAllocBufferNode + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/ATLSTRINGRESOURCEIMAGE.cs b/analysis/decompiled/aaMxDataConsumer/ATL/ATLSTRINGRESOURCEIMAGE.cs new file mode 100644 index 0000000..2e8b37f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/ATLSTRINGRESOURCEIMAGE.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 2)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct ATLSTRINGRESOURCEIMAGE +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CA2WEX-128-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CA2WEX-128-.cs new file mode 100644 index 0000000..4a3b9e0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CA2WEX-128-.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 260)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +[UnsafeValueType] +internal struct CA2WEX_003C128_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlAutoThreadModuleT-ATL.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlAutoThreadModuleT-ATL.cs new file mode 100644 index 0000000..8538ee1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlAutoThreadModuleT-ATL.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CAtlAutoThreadModuleT_003CATL_003A_003ACAtlAutoThreadModule_002CATL_003A_003ACComSimpleThreadAllocator_002C4294967295_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlBaseModule.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlBaseModule.cs new file mode 100644 index 0000000..727ef5f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlBaseModule.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 56)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CAtlBaseModule +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlComModule.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlComModule.cs new file mode 100644 index 0000000..00d3894 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlComModule.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 40)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CAtlComModule +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlException.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlException.cs new file mode 100644 index 0000000..962da42 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlException.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CAtlException +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlModule.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlModule.cs new file mode 100644 index 0000000..1e9906a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlModule.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal static struct CAtlModule +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlModuleT-ATL.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlModuleT-ATL.cs new file mode 100644 index 0000000..c3cf377 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlModuleT-ATL.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CAtlModuleT_003CATL_003A_003ACComModule_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlReleaseManagedClassFactories.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlReleaseManagedClassFactories.cs new file mode 100644 index 0000000..e47403a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlReleaseManagedClassFactories.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CAtlReleaseManagedClassFactories +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlTransactionManager.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlTransactionManager.cs new file mode 100644 index 0000000..9cf64de --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlTransactionManager.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CAtlTransactionManager +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CAtlWinModule.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlWinModule.cs new file mode 100644 index 0000000..c064ec5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CAtlWinModule.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CAtlWinModule +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CCRTAllocator.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CCRTAllocator.cs new file mode 100644 index 0000000..f939a7a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CCRTAllocator.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CCRTAllocator +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComApartment.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComApartment.cs new file mode 100644 index 0000000..7f27725 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComApartment.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CComApartment +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComAutoCriticalSection.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComAutoCriticalSection.cs new file mode 100644 index 0000000..b7758d9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComAutoCriticalSection.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CComAutoCriticalSection +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComBSTR.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComBSTR.cs new file mode 100644 index 0000000..9ba2bbf --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComBSTR.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComBSTR +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComClassFactory.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComClassFactory.cs new file mode 100644 index 0000000..0f16982 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComClassFactory.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal static struct CComClassFactory +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComClassFactoryAutoThread.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComClassFactoryAutoThread.cs new file mode 100644 index 0000000..fcc3227 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComClassFactoryAutoThread.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal static struct CComClassFactoryAutoThread +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComCritSecLock-ATL.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComCritSecLock-ATL.cs new file mode 100644 index 0000000..6fb797f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComCritSecLock-ATL.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComCritSecLock_003CATL_003A_003ACComCriticalSection_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComCriticalSection.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComCriticalSection.cs new file mode 100644 index 0000000..ac97311 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComCriticalSection.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CComCriticalSection +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComDynamicUnkArray.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComDynamicUnkArray.cs new file mode 100644 index 0000000..a8064c0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComDynamicUnkArray.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CComDynamicUnkArray +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComEnumFlags.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComEnumFlags.cs new file mode 100644 index 0000000..c008f5e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComEnumFlags.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace ATL; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum CComEnumFlags +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComExcepInfo.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComExcepInfo.cs new file mode 100644 index 0000000..21759cd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComExcepInfo.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComExcepInfo +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComFakeCriticalSection.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComFakeCriticalSection.cs new file mode 100644 index 0000000..908bab2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComFakeCriticalSection.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComFakeCriticalSection +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComFuncDesc.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComFuncDesc.cs new file mode 100644 index 0000000..1c34d55 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComFuncDesc.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CComFuncDesc +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComModule.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComModule.cs new file mode 100644 index 0000000..8008b47 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComModule.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 48)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CComModule +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectLockT-ATL.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectLockT-ATL.cs new file mode 100644 index 0000000..f2e8035 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectLockT-ATL.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CComObjectLockT_003CATL_003A_003ACComSingleThreadModel_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectRootBase.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectRootBase.cs new file mode 100644 index 0000000..954d326 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectRootBase.cs @@ -0,0 +1,60 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComObjectRootBase +{ + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xda2128e9_0024339_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024339_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024339_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x6ea962a9_0024339_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024339_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xa8d5f844_0024339_0024 + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectRootEx-ATL.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectRootEx-ATL.cs new file mode 100644 index 0000000..59d2d29 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComObjectRootEx-ATL.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CComObjectRootEx_003CATL_003A_003ACComSingleThreadModel_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IDispatch-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IDispatch-.cs new file mode 100644 index 0000000..f22f459 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IDispatch-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CComPtr_003CIDispatch_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IErrorInfo-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IErrorInfo-.cs new file mode 100644 index 0000000..fd1b602 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IErrorInfo-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComPtr_003CIErrorInfo_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IPersistStream-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IPersistStream-.cs new file mode 100644 index 0000000..34728fb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IPersistStream-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CComPtr_003CIPersistStream_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IRegistrar-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IRegistrar-.cs new file mode 100644 index 0000000..375568d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IRegistrar-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CComPtr_003CIRegistrar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeInfo-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeInfo-.cs new file mode 100644 index 0000000..62d6bf2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeInfo-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComPtr_003CITypeInfo_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeInfo2-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeInfo2-.cs new file mode 100644 index 0000000..319c043 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeInfo2-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComPtr_003CITypeInfo2_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeLib-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeLib-.cs new file mode 100644 index 0000000..12c8109 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-ITypeLib-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComPtr_003CITypeLib_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IUnknown-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IUnknown-.cs new file mode 100644 index 0000000..7fd1237 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtr-IUnknown-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComPtr_003CIUnknown_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IDispatch-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IDispatch-.cs new file mode 100644 index 0000000..62b6b9c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IDispatch-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CComPtrBase_003CIDispatch_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IErrorInfo-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IErrorInfo-.cs new file mode 100644 index 0000000..cb3d25c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IErrorInfo-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComPtrBase_003CIErrorInfo_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IPersistStream-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IPersistStream-.cs new file mode 100644 index 0000000..a6a51b6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IPersistStream-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComPtrBase_003CIPersistStream_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IRegistrar-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IRegistrar-.cs new file mode 100644 index 0000000..5ce2971 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IRegistrar-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComPtrBase_003CIRegistrar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeInfo-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeInfo-.cs new file mode 100644 index 0000000..54b1002 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeInfo-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComPtrBase_003CITypeInfo_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeInfo2-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeInfo2-.cs new file mode 100644 index 0000000..12ae4a6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeInfo2-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComPtrBase_003CITypeInfo2_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeLib-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeLib-.cs new file mode 100644 index 0000000..53be1e5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-ITypeLib-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CComPtrBase_003CITypeLib_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IUnknown-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IUnknown-.cs new file mode 100644 index 0000000..3ba9829 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComPtrBase-IUnknown-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComPtrBase_003CIUnknown_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComQIPtr-IUnknown--IID_IUnknown-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComQIPtr-IUnknown--IID_IUnknown-.cs new file mode 100644 index 0000000..e7e43ef --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComQIPtr-IUnknown--IID_IUnknown-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComQIPtr_003CIUnknown_002C_0026IID_IUnknown_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-IDispatch---9-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-IDispatch---9-.cs new file mode 100644 index 0000000..8a7ef74 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-IDispatch---9-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComSafeArray_003CIDispatch_0020_002A_002C9_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-IUnknown---13-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-IUnknown---13-.cs new file mode 100644 index 0000000..366f5cd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-IUnknown---13-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComSafeArray_003CIUnknown_0020_002A_002C13_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-tagVARIANT-12-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-tagVARIANT-12-.cs new file mode 100644 index 0000000..5228f86 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-tagVARIANT-12-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CComSafeArray_003CtagVARIANT_002C12_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-wchar_t---8-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-wchar_t---8-.cs new file mode 100644 index 0000000..ac1b687 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArray-wchar_t---8-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CComSafeArray_003Cwchar_t_0020_002A_002C8_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArrayBound.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArrayBound.cs new file mode 100644 index 0000000..a586395 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeArrayBound.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComSafeArrayBound +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeDeleteCriticalSection.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeDeleteCriticalSection.cs new file mode 100644 index 0000000..47d259f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSafeDeleteCriticalSection.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComSafeDeleteCriticalSection +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSimpleThreadAllocator.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSimpleThreadAllocator.cs new file mode 100644 index 0000000..40d7a7f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSimpleThreadAllocator.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComSimpleThreadAllocator +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComSingleThreadModel.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComSingleThreadModel.cs new file mode 100644 index 0000000..1855723 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComSingleThreadModel.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CComSingleThreadModel +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComTypeAttr.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComTypeAttr.cs new file mode 100644 index 0000000..100a080 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComTypeAttr.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComTypeAttr +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComTypeInfoHolder.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComTypeInfoHolder.cs new file mode 100644 index 0000000..6b1129e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComTypeInfoHolder.cs @@ -0,0 +1,22 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CComTypeInfoHolder +{ + [StructLayout(LayoutKind.Sequential, Size = 12)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + public struct stringdispid + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComUnkArray-1-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComUnkArray-1-.cs new file mode 100644 index 0000000..d076383 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComUnkArray-1-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CComUnkArray_003C1_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComVarDesc.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComVarDesc.cs new file mode 100644 index 0000000..ab692ad --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComVarDesc.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CComVarDesc +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CComVariant.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CComVariant.cs new file mode 100644 index 0000000..0783d32 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CComVariant.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CComVariant +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CCritSecLock.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CCritSecLock.cs new file mode 100644 index 0000000..98bb117 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CCritSecLock.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CCritSecLock +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CDynamicStdCallThunk.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CDynamicStdCallThunk.cs new file mode 100644 index 0000000..2e1820a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CDynamicStdCallThunk.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CDynamicStdCallThunk +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CGlobalAllocator.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CGlobalAllocator.cs new file mode 100644 index 0000000..249caef --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CGlobalAllocator.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct CGlobalAllocator +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CHandle.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CHandle.cs new file mode 100644 index 0000000..77af25a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CHandle.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CHandle +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CLocalAllocator.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CLocalAllocator.cs new file mode 100644 index 0000000..4d6d47f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CLocalAllocator.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CLocalAllocator +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CRegKey.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CRegKey.cs new file mode 100644 index 0000000..63b2f66 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CRegKey.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CRegKey +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CSecurityDescriptor.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CSecurityDescriptor.cs new file mode 100644 index 0000000..15bd317 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CSecurityDescriptor.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct CSecurityDescriptor +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CSimpleArray-unsigned-short-ATL.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CSimpleArray-unsigned-short-ATL.cs new file mode 100644 index 0000000..32a00fb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CSimpleArray-unsigned-short-ATL.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct CSimpleArray_003Cunsigned_0020short_002CATL_003A_003ACSimpleArrayEqualHelper_003Cunsigned_0020short_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/CTraceCategory.cs b/analysis/decompiled/aaMxDataConsumer/ATL/CTraceCategory.cs new file mode 100644 index 0000000..c8e4c1a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/CTraceCategory.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CTraceCategory +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/ClassesAllowedInStream.cs b/analysis/decompiled/aaMxDataConsumer/ATL/ClassesAllowedInStream.cs new file mode 100644 index 0000000..02bd297 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/ClassesAllowedInStream.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Explicit, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(66)] +internal struct ClassesAllowedInStream +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/IAtlAutoThreadModule.cs b/analysis/decompiled/aaMxDataConsumer/ATL/IAtlAutoThreadModule.cs new file mode 100644 index 0000000..791ce61 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/IAtlAutoThreadModule.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal static struct IAtlAutoThreadModule +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CACHEDATA.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CACHEDATA.cs new file mode 100644 index 0000000..e5e3113 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CACHEDATA.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _ATL_CACHEDATA +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CATMAP_ENTRY.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CATMAP_ENTRY.cs new file mode 100644 index 0000000..9016bc0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CATMAP_ENTRY.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _ATL_CATMAP_ENTRY +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CHAINDATA.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CHAINDATA.cs new file mode 100644 index 0000000..0cdc10a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CHAINDATA.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _ATL_CHAINDATA +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_COM_MODULE70.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_COM_MODULE70.cs new file mode 100644 index 0000000..2ecd63c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_COM_MODULE70.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 40)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _ATL_COM_MODULE70 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CREATORDATA.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CREATORDATA.cs new file mode 100644 index 0000000..fc8fc1a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_CREATORDATA.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _ATL_CREATORDATA +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_FUNC_INFO.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_FUNC_INFO.cs new file mode 100644 index 0000000..e95089d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_FUNC_INFO.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[DebugInfoInPDB] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _ATL_FUNC_INFO +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_INTMAP_ENTRY.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_INTMAP_ENTRY.cs new file mode 100644 index 0000000..40c7828 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_INTMAP_ENTRY.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _ATL_INTMAP_ENTRY +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_MODULE70.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_MODULE70.cs new file mode 100644 index 0000000..2aeecb3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_MODULE70.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _ATL_MODULE70 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_OBJMAP_ENTRY30.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_OBJMAP_ENTRY30.cs new file mode 100644 index 0000000..dd59a75 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_OBJMAP_ENTRY30.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _ATL_OBJMAP_ENTRY30 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_REGMAP_ENTRY.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_REGMAP_ENTRY.cs new file mode 100644 index 0000000..7d455e3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_REGMAP_ENTRY.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _ATL_REGMAP_ENTRY +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_WIN_MODULE70.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_WIN_MODULE70.cs new file mode 100644 index 0000000..2ce11ab --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_ATL_WIN_MODULE70.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _ATL_WIN_MODULE70 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_AtlAptCreateObjData.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_AtlAptCreateObjData.cs new file mode 100644 index 0000000..a6fd97a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_AtlAptCreateObjData.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _AtlAptCreateObjData +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_AtlCreateWndData.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_AtlCreateWndData.cs new file mode 100644 index 0000000..0d679e1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_AtlCreateWndData.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _AtlCreateWndData +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_IDispEvent.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_IDispEvent.cs new file mode 100644 index 0000000..15f5d34 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_IDispEvent.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +[UnsafeValueType] +internal static struct _IDispEvent +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IPersistStream-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IPersistStream-.cs new file mode 100644 index 0000000..ed683d2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IPersistStream-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal static struct _NoAddRefReleaseOnCComPtr_003CIPersistStream_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IRegistrar-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IRegistrar-.cs new file mode 100644 index 0000000..45dff09 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IRegistrar-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal static struct _NoAddRefReleaseOnCComPtr_003CIRegistrar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-ITypeInfo-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-ITypeInfo-.cs new file mode 100644 index 0000000..42c03ee --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-ITypeInfo-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal static struct _NoAddRefReleaseOnCComPtr_003CITypeInfo_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-ITypeLib-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-ITypeLib-.cs new file mode 100644 index 0000000..3dd1430 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-ITypeLib-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal static struct _NoAddRefReleaseOnCComPtr_003CITypeLib_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IUnknown-.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IUnknown-.cs new file mode 100644 index 0000000..0d76bc0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_NoAddRefReleaseOnCComPtr-IUnknown-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal static struct _NoAddRefReleaseOnCComPtr_003CIUnknown_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ATL/_stdcallthunk.cs b/analysis/decompiled/aaMxDataConsumer/ATL/_stdcallthunk.cs new file mode 100644 index 0000000..332ce26 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ATL/_stdcallthunk.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace ATL; + +[StructLayout(LayoutKind.Sequential, Size = 13)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _stdcallthunk +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/AnnoScope.cs b/analysis/decompiled/aaMxDataConsumer/AnnoScope.cs new file mode 100644 index 0000000..2980bd5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/AnnoScope.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum AnnoScope +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/ArchestrAtoBROErrorCodes.cs b/analysis/decompiled/aaMxDataConsumer/ArchestrAtoBROErrorCodes.cs new file mode 100644 index 0000000..dcf38ee --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ArchestrAtoBROErrorCodes.cs @@ -0,0 +1,12 @@ +using System; +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +[CLSCompliant(false)] +public enum ArchestrAtoBROErrorCodes +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/BufferProperty.cs b/analysis/decompiled/aaMxDataConsumer/BufferProperty.cs new file mode 100644 index 0000000..d9728e6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/BufferProperty.cs @@ -0,0 +1,42 @@ +using System; +using System.Reflection; +using System.Runtime.InteropServices; +using ArchestrAServices.ASBIDataV2Contract; + +internal class BufferProperty : IDisposable +{ + protected PropertyInfo m_bufferField; + + public BufferProperty() + { + m_bufferField = typeof(MonitoredItem).GetProperty("Buffered"); + } + + private void _007EBufferProperty() + { + m_bufferField = null; + } + + public PropertyInfo GetBufferField() + { + return m_bufferField; + } + + protected virtual void Dispose([MarshalAs(UnmanagedType.U1)] bool P_0) + { + if (P_0) + { + m_bufferField = null; + } + else + { + base.Finalize(); + } + } + + public virtual sealed void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/CDataClientCLI.cs b/analysis/decompiled/aaMxDataConsumer/CDataClientCLI.cs new file mode 100644 index 0000000..1bf1b19 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CDataClientCLI.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 96)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[UnsafeValueType] +internal struct CDataClientCLI +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapter.cs b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapter.cs new file mode 100644 index 0000000..e2f1d70 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapter.cs @@ -0,0 +1,59 @@ +using System.Runtime.InteropServices; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Contract; + +public abstract class CIDataVersionAdapter +{ + [return: MarshalAs(UnmanagedType.U1)] + public abstract bool Connect(ref string errorMessage); + + public abstract void Abort(); + + public abstract void Disconnect(); + + [return: MarshalAs(UnmanagedType.U1)] + public abstract bool SupportsArrayElementWrites(); + + public abstract ArchestrAResult KeepAlive(); + + public abstract ArchestrAResult Read(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] ItemValues, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items); + + public abstract ArchestrAResult Write(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, uint WriteHandle); + + public abstract ArchestrAResult WriteUser(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle); + + public abstract ArchestrAResult WriteVerified(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle); + + public abstract ArchestrAResult WriteSecured(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle); + + public abstract ArchestrAResult WriteConfirmed(ref ArchestrAServices.ASBIDataV2Contract.WriteValue ValueReceived, ref long WriteToken, ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor); + + public abstract ArchestrAResult ConfirmWrite(ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, long WriteToken, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle); + + public abstract ArchestrAResult PublishWriteComplete(ref ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] CompleteWrites); + + public abstract ArchestrAResult CreateSubscription(ref long SubscriptionId, long MaxQueueSize, ulong SampleInterval); + + public abstract ArchestrAResult SetSubscriptionState(long SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant NewState, ushort StateToChange); + + public abstract ArchestrAResult GetSubscriptionState(ref ArchestrAServices.ASBIDataContract.V2.Variant State, long SubscriptionId, ushort StateToGet); + + public abstract ArchestrAResult DeleteSubscription(long SubscriptionId); + + public abstract ArchestrAResult AddMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, byte RequireId); + + public abstract ArchestrAResult DeleteMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items); + + public abstract ArchestrAResult GetMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, long SubscriptionId); + + public abstract ArchestrAResult Publish(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] Values, long SubscriptionId); + + public abstract ArchestrAResult RegisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly); + + public abstract ArchestrAResult UnregisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items); + + public CIDataVersionAdapter() + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterFactory.cs b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterFactory.cs new file mode 100644 index 0000000..9f14c4c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterFactory.cs @@ -0,0 +1,107 @@ +using System.Runtime.CompilerServices; +using ArchestrAServices.Contract; +using ArchestrAServices.Proxy; + +public class CIDataVersionAdapterFactory +{ + public unsafe static CIDataVersionAdapter GetIDataAdapter(string AccessName) + { + string text = null; + CIDataVersionAdapter result = null; + text = string.Empty; + object obj = IDataProxySelector.SelectProxyForLatestEndpoint(AccessName, new AsbMxDataSettings(), out text); + if (obj != null) + { + if (obj.GetType().IsAssignableFrom(typeof(ASBDataV2Proxy))) + { + result = new CIDataVersionAdapterV2((ASBDataV2Proxy)obj); + } + else if (obj.GetType().IsAssignableFrom(typeof(ASBDataProxy))) + { + result = new CIDataVersionAdapterV1((ASBDataProxy)obj); + } + } + else + { + ref byte reference = ref *(byte*)text; + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0110; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0110; + } + goto IL_012a; + IL_0110: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_012a; + } + goto end_IL_0080; + IL_012a: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HC_0040BNGLPIPF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAG_003F_0024AAe_003F_0024AAt_003F_0024AAI_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAA_003F_0024AAd_003F_0024AAa_003F_0024AAp_003F_0024AAt_003F_0024AAe_003F_0024AAr_0040), __arglist((ushort*)ptr)); + } + end_IL_0080:; + } + catch + { + //try-fault + ptr = null; + throw; + } + } + } + return result; + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterV1.cs b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterV1.cs new file mode 100644 index 0000000..3091b8e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterV1.cs @@ -0,0 +1,388 @@ +using System.Runtime.InteropServices; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Adapter; +using ArchestrAServices.ASBIDataV2Contract; +using ArchestrAServices.Proxy; + +public class CIDataVersionAdapterV1(ASBDataProxy ASBProxy) : CIDataVersionAdapter +{ + private ASBDataProxy m_ASBProxy = ASBProxy; + + private TimePassed m_timePassed = new TimePassed(300); + + private ConnectionId m_blankConnectionId; + + [return: MarshalAs(UnmanagedType.U1)] + public override bool Connect(ref string errorMessage) + { + bool result = false; + ASBDataProxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + result = aSBProxy.Connect(out errorMessage); + } + return result; + } + + public override void Abort() + { + m_ASBProxy?.Abort(); + } + + public override void Disconnect() + { + m_ASBProxy?.Disconnect(); + } + + [return: MarshalAs(UnmanagedType.U1)] + public override bool SupportsArrayElementWrites() + { + return false; + } + + public override ArchestrAResult KeepAlive() + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataProxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.KeepAlive(m_blankConnectionId); + } + return archestrAResult; + } + + public override ArchestrAResult Read(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] ItemValues, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAServices.ASBContract.RuntimeValue[] array2 = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + array2 = null; + archestrAResult = m_ASBProxy.Read(out array, out array2, m_blankConnectionId, Items.ToV1ItemIdentityArray()); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + if (array2 != null) + { + ItemValues = array2.ToV2RuntimeValueArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult Write(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, uint WriteHandle) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + archestrAResult = m_ASBProxy.Write(out array, Items.ToV1ItemIdentityArray(), Values.ToV1WriteValueArray(), WriteHandle); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult WriteUser(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + ArchestrAServices.ASBContract.UserToken user = User.ToV1UserToken(); + archestrAResult = m_ASBProxy.WriteUser(out array, Items.ToV1ItemIdentityArray(), Values.ToV1WriteValueArray(), user, WriteHandle); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult WriteVerified(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + ArchestrAServices.ASBContract.UserToken supervisor = Supervisor.ToV1UserToken(); + ArchestrAServices.ASBContract.UserToken user = User.ToV1UserToken(); + archestrAResult = m_ASBProxy.WriteVerified(out array, Items.ToV1ItemIdentityArray(), Values.ToV1WriteValueArray(), user, supervisor, WriteHandle); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult WriteSecured(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + ArchestrAServices.ASBContract.UserToken user = User.ToV1UserToken(); + archestrAResult = m_ASBProxy.WriteSecured(out array, Items.ToV1ItemIdentityArray(), Values.ToV1WriteValueArray(), user, WriteHandle); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult WriteConfirmed(ref ArchestrAServices.ASBIDataV2Contract.WriteValue ValueReceived, ref long WriteToken, ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + ArchestrAServices.ASBContract.WriteValue ValueReceived2 = default(ArchestrAServices.ASBContract.WriteValue); + ArchestrAServices.ASBContract.UserToken supervisor = Supervisor.ToV1UserToken(); + ArchestrAServices.ASBContract.UserToken user = User.ToV1UserToken(); + ArchestrAServices.ASBContract.WriteValue value = Value.ToV1WriteValue(); + ArchestrAServices.ASBContract.ItemIdentity item = Item.ToV1ItemIdentity(); + archestrAResult = m_ASBProxy.WriteConfirmed(out ValueReceived2, out WriteToken, item, value, user, supervisor); + ArchestrAServices.ASBIDataV2Contract.WriteValue writeValue = ValueReceived2.ToV2WriteValue(); + ValueReceived = writeValue; + } + return archestrAResult; + } + + public override ArchestrAResult ConfirmWrite(ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, long WriteToken, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + ArchestrAServices.ASBContract.UserToken supervisor = Supervisor.ToV1UserToken(); + ArchestrAServices.ASBContract.UserToken user = User.ToV1UserToken(); + ArchestrAServices.ASBContract.WriteValue value = Value.ToV1WriteValue(); + ArchestrAServices.ASBContract.ItemIdentity item = Item.ToV1ItemIdentity(); + archestrAResult = m_ASBProxy.ConfirmWrite(item, WriteToken, value, user, supervisor, WriteHandle); + } + return archestrAResult; + } + + public override ArchestrAResult PublishWriteComplete(ref ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] CompleteWrites) + { + ArchestrAServices.ASBContract.ItemWriteComplete[] array = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataProxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + array = null; + archestrAResult = aSBProxy.PublishWriteComplete(out array); + if (array != null) + { + CompleteWrites = array.ToV2ItemWriteCompleteArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult CreateSubscription(ref long SubscriptionId, long MaxQueueSize, ulong SampleInterval) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataProxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.CreateSubscription(out SubscriptionId, MaxQueueSize, SampleInterval); + } + return archestrAResult; + } + + public override ArchestrAResult SetSubscriptionState(long SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant NewState, ushort StateToChange) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + ArchestrAServices.ASBIDataContract.Variant newState = NewState.ToV1Variant(); + archestrAResult = m_ASBProxy.SetSubscriptionState(SubscriptionId, newState, StateToChange); + } + return archestrAResult; + } + + public override ArchestrAResult GetSubscriptionState(ref ArchestrAServices.ASBIDataContract.V2.Variant State, long SubscriptionId, ushort StateToGet) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataProxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + ArchestrAServices.ASBIDataContract.Variant State2 = default(ArchestrAServices.ASBIDataContract.Variant); + archestrAResult = aSBProxy.GetSubscriptionState(out State2, SubscriptionId, StateToGet); + ArchestrAServices.ASBIDataContract.V2.Variant variant = State2.ToV2Variant(); + State = variant; + } + return archestrAResult; + } + + public override ArchestrAResult DeleteSubscription(long SubscriptionId) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataProxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.DeleteSubscription(SubscriptionId); + } + return archestrAResult; + } + + public override ArchestrAResult AddMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, byte RequireId) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAServices.ASBContract.ItemRegistration[] array2 = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + array2 = null; + archestrAResult = m_ASBProxy.AddMonitoredItems(out array, out array2, SubscriptionId, Items.ToV1MonitoredItemArray(), RequireId); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + if (array2 != null) + { + ItemCapabilities = array2.ToV2ItemRegistrationArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult DeleteMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + archestrAResult = m_ASBProxy.DeleteMonitoredItems(out array, SubscriptionId, Items.ToV1MonitoredItemArray()); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult GetMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, long SubscriptionId) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + ArchestrAServices.ASBContract.MonitoredItem[] Items2 = Items.ToV1MonitoredItemArray(); + archestrAResult = m_ASBProxy.GetMonitoredItems(out Items2, SubscriptionId); + } + return archestrAResult; + } + + public override ArchestrAResult Publish(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] Values, long SubscriptionId) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAServices.ASBContract.MonitoredItemValue[] array2 = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataProxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + array = null; + array2 = null; + archestrAResult = aSBProxy.Publish(out array, out array2, SubscriptionId); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + if (array2 != null) + { + Values = array2.ToV2MonitoredItemValueArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult RegisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAServices.ASBContract.ItemRegistration[] array2 = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + array2 = null; + archestrAResult = m_ASBProxy.RegisterItems(out array, out array2, Items.ToV1ItemIdentityArray(), RequireId, RegisterOnly); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + if (array2 != null) + { + ItemCapabilities = array2.ToV2ItemRegistrationArray(); + } + } + return archestrAResult; + } + + public override ArchestrAResult UnregisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + ArchestrAServices.ASBContract.ItemStatus[] array = null; + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + if (m_ASBProxy != null) + { + array = null; + archestrAResult = m_ASBProxy.UnregisterItems(out array, Items.ToV1ItemIdentityArray()); + if (array != null) + { + Status = array.ToV2ItemStatusArray(); + } + } + return archestrAResult; + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterV2.cs b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterV2.cs new file mode 100644 index 0000000..d7698f8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CIDataVersionAdapterV2.cs @@ -0,0 +1,287 @@ +using System.Runtime.InteropServices; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Contract; +using ArchestrAServices.Proxy; + +public class CIDataVersionAdapterV2(ASBDataV2Proxy ASBProxy) : CIDataVersionAdapter +{ + private ASBDataV2Proxy m_ASBProxy = ASBProxy; + + private ConnectionId m_blankConnectionId; + + [return: MarshalAs(UnmanagedType.U1)] + public override bool Connect(ref string errorMessage) + { + bool result = false; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + result = aSBProxy.Connect(out errorMessage); + } + return result; + } + + public override void Abort() + { + m_ASBProxy?.Abort(); + } + + public override void Disconnect() + { + m_ASBProxy?.Disconnect(); + } + + [return: MarshalAs(UnmanagedType.U1)] + public override bool SupportsArrayElementWrites() + { + return true; + } + + public override ArchestrAResult KeepAlive() + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.KeepAlive(m_blankConnectionId); + } + return archestrAResult; + } + + public override ArchestrAResult Read(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] ItemValues, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.Read(out Status, out ItemValues, m_blankConnectionId, Items); + } + return archestrAResult; + } + + public override ArchestrAResult Write(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, uint WriteHandle) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.Write(out Status, Items, Values, WriteHandle); + } + return archestrAResult; + } + + public override ArchestrAResult WriteUser(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.WriteUser(out Status, Items, Values, User, WriteHandle); + } + return archestrAResult; + } + + public override ArchestrAResult WriteVerified(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.WriteVerified(out Status, Items, Values, User, Supervisor, WriteHandle); + } + return archestrAResult; + } + + public override ArchestrAResult WriteSecured(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.WriteSecured(out Status, Items, Values, User, WriteHandle); + } + return archestrAResult; + } + + public override ArchestrAResult WriteConfirmed(ref ArchestrAServices.ASBIDataV2Contract.WriteValue ValueReceived, ref long WriteToken, ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.WriteConfirmed(out ValueReceived, out WriteToken, Item, Value, User, Supervisor); + } + return archestrAResult; + } + + public override ArchestrAResult ConfirmWrite(ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, long WriteToken, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.ConfirmWrite(Item, WriteToken, Value, User, Supervisor, WriteHandle); + } + return archestrAResult; + } + + public override ArchestrAResult PublishWriteComplete(ref ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] CompleteWrites) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.PublishWriteComplete(out CompleteWrites); + } + return archestrAResult; + } + + public override ArchestrAResult CreateSubscription(ref long SubscriptionId, long MaxQueueSize, ulong SampleInterval) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.CreateSubscription(out SubscriptionId, MaxQueueSize, SampleInterval); + } + return archestrAResult; + } + + public override ArchestrAResult SetSubscriptionState(long SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant NewState, ushort StateToChange) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.SetSubscriptionState(SubscriptionId, NewState, StateToChange); + } + return archestrAResult; + } + + public override ArchestrAResult GetSubscriptionState(ref ArchestrAServices.ASBIDataContract.V2.Variant State, long SubscriptionId, ushort StateToGet) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.GetSubscriptionState(out State, SubscriptionId, StateToGet); + } + return archestrAResult; + } + + public override ArchestrAResult DeleteSubscription(long SubscriptionId) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.DeleteSubscription(SubscriptionId); + } + return archestrAResult; + } + + public override ArchestrAResult AddMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, byte RequireId) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.AddMonitoredItems(out Status, out ItemCapabilities, SubscriptionId, Items, RequireId); + } + return archestrAResult; + } + + public override ArchestrAResult DeleteMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.DeleteMonitoredItems(out Status, SubscriptionId, Items); + } + return archestrAResult; + } + + public override ArchestrAResult GetMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, long SubscriptionId) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.GetMonitoredItems(out Items, SubscriptionId); + } + return archestrAResult; + } + + public override ArchestrAResult Publish(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] Values, long SubscriptionId) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.Publish(out Status, out Values, SubscriptionId); + } + return archestrAResult; + } + + public override ArchestrAResult RegisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.RegisterItems(out Status, out ItemCapabilities, Items, RequireId, RegisterOnly); + } + return archestrAResult; + } + + public override ArchestrAResult UnregisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + ArchestrAResult archestrAResult = default(ArchestrAResult); + archestrAResult = ResultFactory.MakeResult(ArchestrAError.SpecificError, 32); + archestrAResult.SpecificErrorCode = 2147614720u; + ASBDataV2Proxy aSBProxy = m_ASBProxy; + if (aSBProxy != null) + { + archestrAResult = aSBProxy.UnregisterItems(out Status, Items); + } + return archestrAResult; + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/CLoggerSelect.cs b/analysis/decompiled/aaMxDataConsumer/CLoggerSelect.cs new file mode 100644 index 0000000..c2b4196 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CLoggerSelect.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CLoggerSelect +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/CMinidump.cs b/analysis/decompiled/aaMxDataConsumer/CMinidump.cs new file mode 100644 index 0000000..9b3875d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CMinidump.cs @@ -0,0 +1,18 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CMinidump +{ + [MiscellaneousBits(64)] + [DebugInfoInPDB] + [NativeCppClass] + internal enum _MINIDUMP_TYPE + { + + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/CWrapLogger.cs b/analysis/decompiled/aaMxDataConsumer/CWrapLogger.cs new file mode 100644 index 0000000..0571670 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CWrapLogger.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 212)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct CWrapLogger +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/CloseHandlePolicy.cs b/analysis/decompiled/aaMxDataConsumer/CloseHandlePolicy.cs new file mode 100644 index 0000000..3765e82 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CloseHandlePolicy.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct CloseHandlePolicy +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/CloseServiceHandlePolicy.cs b/analysis/decompiled/aaMxDataConsumer/CloseServiceHandlePolicy.cs new file mode 100644 index 0000000..3bf05d3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/CloseServiceHandlePolicy.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct CloseServiceHandlePolicy +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ConsumerASBResultCode.cs b/analysis/decompiled/aaMxDataConsumer/ConsumerASBResultCode.cs new file mode 100644 index 0000000..1f78ba1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ConsumerASBResultCode.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct ConsumerASBResultCode +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ConsumerDataUtilities.cs b/analysis/decompiled/aaMxDataConsumer/ConsumerDataUtilities.cs new file mode 100644 index 0000000..63394b7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ConsumerDataUtilities.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct ConsumerDataUtilities +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/DataClientProxies.cs b/analysis/decompiled/aaMxDataConsumer/DataClientProxies.cs new file mode 100644 index 0000000..96d7c9f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/DataClientProxies.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using msclr; + +internal class DataClientProxies +{ + public static SortedDictionary s_Proxies = new SortedDictionary(); + + public static int s_Index = 0; + + public static object lockit = new object(); + + public static BufferProperty m_bufferProperty = new BufferProperty(); + + public static int AddProxy(DataClientProxy dataClientProxy) + { + @lock obj = null; + int result = -1; + if (dataClientProxy != null) + { + @lock obj2 = new @lock(lockit); + try + { + obj = obj2; + s_Proxies.Add(s_Index, dataClientProxy); + result = s_Index; + s_Index++; + } + catch + { + //try-fault + ((IDisposable)obj).Dispose(); + throw; + } + ((IDisposable)obj).Dispose(); + } + return result; + } + + public static void RemoveProxy(int index) + { + @lock obj = null; + @lock obj2 = new @lock(lockit); + try + { + obj = obj2; + ((IDisposable)GetProxy(index))?.Dispose(); + s_Proxies.Remove(index); + } + catch + { + //try-fault + ((IDisposable)obj).Dispose(); + throw; + } + ((IDisposable)obj).Dispose(); + } + + public static DataClientProxy GetProxy(int index) + { + @lock obj = null; + @lock obj2 = new @lock(lockit); + DataClientProxy result; + try + { + obj = obj2; + if (s_Proxies[index] != null) + { + result = s_Proxies[index]; + goto IL_0033; + } + } + catch + { + //try-fault + ((IDisposable)obj).Dispose(); + throw; + } + DataClientProxy result2; + try + { + result2 = null; + } + catch + { + //try-fault + ((IDisposable)obj).Dispose(); + throw; + } + ((IDisposable)obj).Dispose(); + return result2; + IL_0033: + ((IDisposable)obj).Dispose(); + return result; + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/DataClientProxy.cs b/analysis/decompiled/aaMxDataConsumer/DataClientProxy.cs new file mode 100644 index 0000000..969d136 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/DataClientProxy.cs @@ -0,0 +1,4905 @@ +using System; +using System.IO; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.ServiceModel; +using System.Threading; +using ATL; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Contract; +using std; + +internal class DataClientProxy : IDisposable +{ + private bool m_EndWorkerThread; + + private Thread m_workerThread; + + private EventWaitHandle m_exitCommand_evt; + + private EventWaitHandle m_threadHasEnded_evt; + + private EventWaitHandle m_disconnected_evt; + + private uint m_retryCnt; + + private WaitHandle[] m_evts; + + private CIDataVersionAdapter m_DataClient; + + private int m_index; + + private bool m_ReportADisconnect; + + private bool m_IsConnected; + + private bool m_ThreadIsRunning; + + private uint m_ulClientId; + + private bool m_SupportsArrayElementWrites; + + private unsafe DataClientProxyUnmanagedVars* m_unmanagedVars; + + private unsafe void WaitForExitOrDisconnectorTimeout(uint milliseconds) + { + int num = 0; + bool flag; + try + { + num = WaitHandle.WaitAny(m_evts, (int)milliseconds); + } + catch (Exception ex) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)) = 0; + *(short*)(&obj) = 0; + try + { + ref byte reference = ref *(byte*)ex.StackTrace; + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D(&obj, ptr); + CWrapLogger* ptr2 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr2)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr2) != 0) ? ((int)((uint*)ptr2)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr3 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr4 = ((8u > (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20))) ? ((char*)(&obj)) : ((char*)(int)(*(uint*)(&obj)))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1MM_0040PKMKMBAF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040), __arglist((ushort*)ptr3, (ushort*)ptr4)); + } + m_EndWorkerThread = true; + flag = true; + } + catch + { + //try-fault + ptr = null; + throw; + } + } + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20))) + { + global::_003CModule_003E.delete((void*)(int)(*(uint*)(&obj))); + } + goto IL_00f6; + } + goto IL_00fd; + IL_00f6: + if (flag) + { + return; + } + goto IL_00fd; + IL_00fd: + uint* g_pLogAutoConnect; + switch (num) + { + case 258: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0198; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0198; + } + goto IL_01b0; + default: + { + CWrapLogger* ptr6 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf2 = (uint*)((((int*)ptr6)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr6) != 0) ? ((int)((uint*)ptr6)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf2, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1OC_0040GDCOMDB_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040), __arglist((ushort*)ptr7)); + } + m_EndWorkerThread = true; + break; + } + case 1: + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars5 = m_unmanagedVars; + char* ptr9 = ((*(int*)unmanagedVars5 != 0) ? ((char*)(int)(*(uint*)unmanagedVars5)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1NK_0040LHMCCOLO_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040), __arglist((ushort*)ptr9)); + } + Disconnect(); + m_disconnected_evt.Reset(); + break; + case 0: + { + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr5 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1LI_0040LBCHGBIC_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040), __arglist((ushort*)ptr5)); + } + break; + } + IL_0198: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_01b0; + } + break; + IL_01b0: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars4 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars4 != 0) ? ((char*)(int)(*(uint*)unmanagedVars4)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JA_0040PLNKLFK_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAa_003F_0024AAi_003F_0024AAt_003F_0024AAF_003F_0024AAo_003F_0024AAr_003F_0024AAE_003F_0024AAx_003F_0024AAi_003F_0024AAt_003F_0024AAO_003F_0024AAr_003F_0024AAD_003F_0024AAi_0040), __arglist((ushort*)ptr8)); + } + break; + } + } + + private unsafe void MarshalString(string s, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* os) + { + char* ptr = (char*)Marshal.StringToHGlobalUni(s).ToPointer(); + char* ptr2 = ptr; + if (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr) != 0) + { + do + { + ptr2++; + } + while (System.Runtime.CompilerServices.Unsafe.ReadUnaligned(ptr2) != 0); + } + uint count = (uint)((nint)((byte*)ptr2 - (nuint)ptr) >> 1); + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(os, ptr, count); + IntPtr hglobal = new IntPtr(ptr); + Marshal.FreeHGlobal(hglobal); + } + + private unsafe void Connect() + { + int num = (int)stackalloc byte[global::_003CModule_003E.__CxxQueryExceptionSize()]; + int num2 = 0; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiWriteLock multiWriteLock); + *(int*)(&multiWriteLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EWriterLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiWriteLock))); + try + { + try + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj); + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(&obj, (char*)(int)(*(uint*)m_unmanagedVars)); + try + { + num2 = Connect2(&obj, 0uL); + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj); + throw; + } + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D(&obj); + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + uint exceptionCode = (uint)Marshal.GetExceptionCode(); + return (byte)global::_003CModule_003E.__CxxExceptionFilter((void*)Marshal.GetExceptionPointers(), null, 0, null) != 0; + }).Invoke()) + { + uint num3 = 0u; + global::_003CModule_003E.__CxxRegisterExceptionObject((void*)Marshal.GetExceptionPointers(), (void*)num); + try + { + try + { + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.CWrapLogger_002EGetLogFlag(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), 1), 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1EA_0040GCOONOBM_0040_003F_0024AAC_003F_0024AAa_003F_0024AAu_003F_0024AAg_003F_0024AAh_003F_0024AAt_003F_0024AA_003F5_003F_0024AAe_003F_0024AAx_003F_0024AAc_003F_0024AAe_003F_0024AAp_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAd_003F_0024AAu_003F_0024AAr_003F_0024AAi_003F_0024AAn_003F_0024AAg_003F_0024AA_003F5_003F_0024AAc_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F_0024AA_0040), __arglist()); + } + num2 = -2147467259; + goto end_IL_007c; + } + catch when (((Func)delegate + { + // Could not convert BlockContainer to single expression + num3 = (uint)global::_003CModule_003E.__CxxDetectRethrow((void*)Marshal.GetExceptionPointers()); + return (byte)num3 != 0; + }).Invoke()) + { + } + if (num3 != 0) + { + throw; + } + end_IL_007c:; + } + finally + { + global::_003CModule_003E.__CxxUnregisterExceptionObject((void*)num, (int)num3); + } + } + uint* g_pLogAutoConnect; + if (num2 >= 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0166; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0166; + } + goto IL_017e; + } + uint* ptr; + if (num2 != -2147418106) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_032d; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_032d; + } + goto IL_0347; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogAutoConnect2 = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0485; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0485; + } + goto IL_049f; + IL_0166: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_017e; + } + goto IL_0224; + IL_0485: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_049f; + } + goto end_IL_001f; + IL_0347: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr2 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj4); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* errorMsg = GetErrorMsg(&obj4); + try + { + char* ptr3 = ((8u > (uint)((int*)errorMsg)[5]) ? ((char*)errorMsg) : ((char*)(int)(*(uint*)errorMsg))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FK_0040LJCOFOHL_0040_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAt_003F_0024AAu_003F_0024AAr_003F_0024AAn_003F_0024AA_003F5_003F_0024AA0_003F_0024AAx_003F_0024AA_003F_0024CF_0040), __arglist((ushort*)ptr2, num2, (ushort*)ptr3)); + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj4); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj4, 20))) + { + global::_003CModule_003E.delete((void*)(int)(*(uint*)(&obj4))); + } + } + goto end_IL_001f; + IL_017e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FC_0040JECJKEIC_0040_003F_0024AA_003F_0024FL_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAs_003F_0024AAu_003F_0024AAc_003F_0024AAc_003F_0024AAe_003F_0024AAe_003F_0024AAd_003F_0024AAe_003F_0024AAd_003F_0024AA_003F0_003F_0024AA_003F5_003F_0024AAc_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_0040), __arglist((ushort*)ptr4, m_ulClientId)); + } + goto IL_0224; + IL_0224: + m_IsConnected = true; + goto end_IL_001f; + IL_049f: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect2, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr5 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj5); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* errorMsg2 = GetErrorMsg(&obj5); + try + { + char* ptr6 = ((8u > (uint)((int*)errorMsg2)[5]) ? ((char*)errorMsg2) : ((char*)(int)(*(uint*)errorMsg2))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FK_0040LJCOFOHL_0040_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAt_003F_0024AAu_003F_0024AAr_003F_0024AAn_003F_0024AA_003F5_003F_0024AA0_003F_0024AAx_003F_0024AA_003F_0024CF_0040), __arglist((ushort*)ptr5, -2147418106, (ushort*)ptr6)); + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj5); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj5, 20))) + { + global::_003CModule_003E.delete((void*)(int)(*(uint*)(&obj5))); + } + } + goto end_IL_001f; + IL_032d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0347; + } + end_IL_001f:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiWriteLock_002E_007Bdtor_007D), &multiWriteLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EWriterUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiWriteLock))); + } + + private unsafe int Connect2(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* nameSpace, ulong timeout) + { + string errorMessage = null; + Exception ex = null; + int num = -2147467259; + try + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr = &obj; + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* nameSpace2 = global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bctor_007D(&obj, nameSpace); + if (Initialize(nameSpace2) && m_DataClient != null) + { + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr2 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1KO_0040FMKLBGIG_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA2_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_0040), __arglist((ushort*)ptr2)); + } + if (m_DataClient.Connect(ref errorMessage)) + { + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr3 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IC_0040MGOONLHD_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_0040), __arglist((ushort*)ptr3)); + } + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1GK_0040DEAHLMDE_0040_003F_0024AAC_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAC_003F_0024AAL_003F_0024AAI_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_0040), __arglist((ushort*)ptr4, m_ulClientId)); + } + num = 0; + } + else + { + fixed (char* ptr5 = &global::_003CModule_003E.PtrToStringChars(errorMessage)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr5); + m_ulClientId = 0u; + m_DataClient?.Abort(); + m_DataClient = null; + num = -2147418106; + } + catch + { + //try-fault + ptr5 = null; + throw; + } + } + } + } + else + { + m_ulClientId = 0u; + bool flag = false; + CIDataVersionAdapter dataClient = m_DataClient; + if (dataClient != null) + { + dataClient.Abort(); + num = -2147467259; + } + else + { + num = -2147418106; + } + m_DataClient = null; + } + } + catch (Exception ex2) + { + num = ((ex2.GetType() == typeof(FileNotFoundException)) ? 2 : (-2147467259)); + ref byte reference = ref *(byte*)ex2.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr6 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr6); + } + catch + { + //try-fault + ptr6 = null; + throw; + } + } + } + return num; + } + + private unsafe int Disconnect() + { + int result = 0; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiWriteLock multiWriteLock); + *(int*)(&multiWriteLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EWriterLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiWriteLock))); + try + { + m_IsConnected = false; + m_ReportADisconnect = true; + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_00b4; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_00b4; + } + goto IL_00cc; + IL_00b4: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00cc; + } + goto IL_016c; + IL_016c: + if (m_DataClient != null) + { + try + { + m_DataClient.Disconnect(); + } + catch (Exception ex) + { + result = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + m_DataClient?.Abort(); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr); + } + catch + { + //try-fault + ptr = null; + throw; + } + } + } + } + m_DataClient = null; + goto end_IL_0016; + IL_00cc: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr2 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1DM_0040LJKEOBDG_0040_003F_0024AAD_003F_0024AAi_003F_0024AAs_003F_0024AAc_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAE_003F_0024AAN_003F_0024AAT_003F_0024AAR_003F_0024AAY_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F_0024AA_0040), __arglist((ushort*)ptr2)); + } + goto IL_016c; + end_IL_0016:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiWriteLock_002E_007Bdtor_007D), &multiWriteLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EWriterUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiWriteLock))); + return result; + } + + [return: MarshalAs(UnmanagedType.U1)] + private unsafe bool Initialize(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* nameSpace) + { + bool result; + try + { + result = false; + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0092; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0092; + } + goto IL_00aa; + IL_0555: + uint* g_pLogAutoConnect2; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect2, 0u) != 0) + { + char* ptr = ((8u > (uint)((int*)nameSpace)[5]) ? ((char*)nameSpace) : ((char*)(int)(*(uint*)nameSpace))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1LE_0040LNODMAFF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAn_003F_0024AAe_0040), __arglist((ushort*)ptr)); + } + goto end_IL_0000; + IL_03e6: + string accessName; + try + { + CIDataVersionAdapter cIDataVersionAdapter = (m_DataClient = CIDataVersionAdapterFactory.GetIDataAdapter(accessName)); + if (cIDataVersionAdapter != null) + { + m_SupportsArrayElementWrites = cIDataVersionAdapter.SupportsArrayElementWrites(); + result = true; + } + else + { + m_SupportsArrayElementWrites = false; + } + } + catch (Exception ex) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj); + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)) = 0; + *(short*)(&obj) = 0; + try + { + MarshalString(ex.Message, &obj); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + char* ptr2 = ((8u > (uint)((int*)nameSpace)[5]) ? ((char*)nameSpace) : ((char*)(int)(*(uint*)nameSpace))); + char* ptr3 = ((8u > (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20))) ? ((char*)(&obj)) : ((char*)(int)(*(uint*)(&obj)))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IE_0040CLMONHFC_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AA_003F9_003F_0024AA_003F5_003F_0024AAE_003F_0024AAx_0040), __arglist((ushort*)ptr3, (ushort*)ptr2)); + } + result = false; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20))) + { + global::_003CModule_003E.delete((void*)(int)(*(uint*)(&obj))); + } + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogAutoConnect2 = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_053b; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_053b; + } + goto IL_0555; + IL_028b: + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr4 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)nameSpace + 20); + accessName = new string((8u > (uint)(*(int*)ptr4)) ? ((char*)nameSpace) : ((char*)(int)(*(uint*)nameSpace))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogAutoConnect3 = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0333; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0333; + } + goto IL_034d; + IL_034d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect3, 0u) != 0) + { + char* ptr5 = ((8u > (uint)(*(int*)ptr4)) ? ((char*)nameSpace) : ((char*)(int)(*(uint*)nameSpace))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JA_0040JFJHFOLH_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AAm_003F_0024AAa_003F_0024AAd_003F_0024AAe_0040), __arglist((ushort*)ptr5)); + } + goto IL_03e6; + IL_01dd: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_01f5; + } + goto IL_028b; + IL_0140: + uint* g_pLogAutoConnect4; + if (((int*)nameSpace)[4] != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogAutoConnect4 = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_01dd; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_01dd; + } + goto IL_01f5; + } + goto end_IL_0000; + IL_0092: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00aa; + } + goto IL_0140; + IL_053b: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0555; + } + goto end_IL_0000; + IL_00aa: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + char* ptr6 = ((8u > (uint)((int*)nameSpace)[5]) ? ((char*)nameSpace) : ((char*)(int)(*(uint*)nameSpace))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1II_0040OKKJDKFF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AAa_003F_0024AAt_003F_0024AAt_003F_0024AAe_0040), __arglist((ushort*)ptr6)); + } + goto IL_0140; + IL_0333: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + goto IL_03e6; + } + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_034d; + IL_01f5: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect4, 0u) != 0) + { + char* ptr7 = ((8u > (uint)((int*)nameSpace)[5]) ? ((char*)nameSpace) : ((char*)(int)(*(uint*)nameSpace))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JI_0040ONNMMLJK_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAi_003F_0024AAa_003F_0024AAl_003F_0024AAi_003F_0024AAz_003F_0024AAe_003F_0024AA_003F5_003F_0024AAm_003F_0024AAa_003F_0024AAk_003F_0024AAi_0040), __arglist((ushort*)ptr7)); + } + goto IL_028b; + end_IL_0000:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), nameSpace); + throw; + } + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr8 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)nameSpace + 20); + if (8u <= (uint)(*(int*)ptr8)) + { + global::_003CModule_003E.delete((void*)(int)(*(uint*)nameSpace)); + } + *(int*)ptr8 = 7; + ((int*)nameSpace)[4] = 0; + *(short*)nameSpace = 0; + return result; + } + + public void SetDisconnectSignal() + { + m_disconnected_evt?.Set(); + } + + public unsafe void AutoConnectLoop() + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E obj); + while (!m_EndWorkerThread) + { + try + { + m_ThreadIsRunning = true; + if (!m_IsConnected) + { + m_retryCnt++; + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IC_0040MCAHFFDM_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040), __arglist((ushort*)ptr)); + } + Connect(); + if (m_IsConnected) + { + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr2 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IE_0040JHNCKAJN_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040), __arglist((ushort*)ptr2)); + } + continue; + } + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr3 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JA_0040IOGDGEAK_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040), __arglist((ushort*)ptr3)); + } + if (m_retryCnt < 30) + { + WaitForExitOrDisconnectorTimeout(2000u); + } + else + { + WaitForExitOrDisconnectorTimeout(30000u); + } + } + else + { + m_retryCnt = 0u; + WaitForExitOrDisconnectorTimeout(30000u); + } + } + catch (Exception ex) + { + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)) = 0; + *(short*)(&obj) = 0; + try + { + ref byte reference = ref *(byte*)ex.StackTrace; + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr4 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D(&obj, ptr4); + CWrapLogger* ptr5 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr5)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr5) != 0) ? ((int)((uint*)ptr5)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars4 = m_unmanagedVars; + char* ptr6 = ((*(int*)unmanagedVars4 != 0) ? ((char*)(int)(*(uint*)unmanagedVars4)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + char* ptr7 = ((8u > (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20))) ? ((char*)(&obj)) : ((char*)(int)(*(uint*)(&obj)))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FG_0040GOGOIJKL_0040_003F_0024AAE_003F_0024AAx_003F_0024AAc_003F_0024AAe_003F_0024AAp_003F_0024AAt_003F_0024AAi_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAi_003F_0024AAn_003F_0024AA_003F5_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F3_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_0040), __arglist((ushort*)ptr7, (ushort*)ptr6)); + } + } + catch + { + //try-fault + ptr4 = null; + throw; + } + } + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), &obj); + throw; + } + if (8u <= (uint)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20))) + { + global::_003CModule_003E.delete((void*)(int)(*(uint*)(&obj))); + } + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 20)) = 7; + System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref obj, 16)) = 0; + *(short*)(&obj) = 0; + } + } + uint* g_pLogAutoConnect; + if (m_IsConnected) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_02cb; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_02cb; + } + goto IL_02e3; + } + goto IL_0387; + IL_02cb: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_02e3; + } + goto IL_0380; + IL_02e3: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars5 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars5 != 0) ? ((char*)(int)(*(uint*)unmanagedVars5)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1KA_0040OAMPOJAB_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAu_003F_0024AAt_003F_0024AAo_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAL_003F_0024AAo_003F_0024AAo_003F_0024AAp_0040), __arglist((ushort*)ptr8)); + } + goto IL_0380; + IL_0380: + Disconnect(); + goto IL_0387; + IL_0387: + m_ThreadIsRunning = false; + m_threadHasEnded_evt.Set(); + } + + public unsafe void StartWorkerThread() + { + m_EndWorkerThread = false; + m_exitCommand_evt = new EventWaitHandle(initialState: false, EventResetMode.AutoReset); + m_disconnected_evt = new EventWaitHandle(initialState: false, EventResetMode.ManualReset); + m_threadHasEnded_evt = new EventWaitHandle(initialState: false, EventResetMode.AutoReset); + (m_evts = new WaitHandle[2])[0] = m_exitCommand_evt; + m_evts[1] = m_disconnected_evt; + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_00e3; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_00e3; + } + goto IL_00fb; + IL_00e3: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00fb; + } + goto IL_0195; + IL_0195: + (m_workerThread = new Thread(AutoConnectLoop)).Start(); + return; + IL_00fb: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FE_0040DNKGCEPE_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AAi_003F_0024AAn_003F_0024AAg_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_0040), __arglist((ushort*)ptr)); + } + goto IL_0195; + } + + public unsafe void EndWorkerThread() + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogAutoConnect = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0090; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0090; + } + goto IL_00a8; + IL_0090: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00a8; + } + goto IL_0142; + IL_0231: + uint* g_pLogAutoConnect2; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) == 0 || ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect2, 0u) == 0) + { + return; + } + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FE_0040IJJNJMIO_0040_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AAf_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_003F_0024AAs_003F_0024AAp_003F_0024AAa_003F_0024AAc_003F_0024AAe_003F_0024AA_003F_0024FL_003F_0024AA_003F_0024CF_003F_0024AAs_0040), __arglist((ushort*)ptr)); + return; + IL_0142: + m_EndWorkerThread = true; + m_exitCommand_evt.Set(); + m_threadHasEnded_evt.WaitOne(5000); + m_workerThread = null; + m_exitCommand_evt = null; + m_disconnected_evt = null; + m_threadHasEnded_evt = null; + m_evts = null; + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogAutoConnect2 = global::_003CModule_003E.g_pLogAutoConnect; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0219; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0219; + } + goto IL_0231; + IL_0219: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0231; + } + return; + IL_00a8: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogAutoConnect, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr2 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogAutoConnect, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FE_0040OAOFFABC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAo_003F_0024AAp_003F_0024AAp_003F_0024AAi_003F_0024AAn_003F_0024AAg_003F_0024AA_003F5_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAf_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAN_003F_0024AAa_003F_0024AAm_003F_0024AAe_0040), __arglist((ushort*)ptr2)); + } + goto IL_0142; + } + + public unsafe DataClientProxy(int i) + { + m_EndWorkerThread = false; + m_workerThread = null; + m_exitCommand_evt = null; + m_threadHasEnded_evt = null; + m_disconnected_evt = null; + m_retryCnt = 0u; + m_DataClient = null; + m_index = i; + m_ReportADisconnect = false; + m_IsConnected = false; + m_ThreadIsRunning = false; + m_ulClientId = 0u; + m_SupportsArrayElementWrites = false; + DataClientProxyUnmanagedVars* ptr = (DataClientProxyUnmanagedVars*)global::_003CModule_003E.@new(88u); + DataClientProxyUnmanagedVars* unmanagedVars; + try + { + if (ptr != null) + { + *(int*)ptr = 0; + try + { + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr2 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)ptr + 4); + ((int*)ptr2)[5] = 7; + ((int*)ptr2)[4] = 0; + *(short*)ptr2 = 0; + try + { + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002E_007Bctor_007D((WritersWithNonBlockingReadersLock*)((byte*)ptr + 32)); + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), (byte*)ptr + 4); + throw; + } + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.ATL_002ECComBSTR_002E_007Bdtor_007D), ptr); + throw; + } + unmanagedVars = ptr; + } + else + { + unmanagedVars = null; + } + } + catch + { + //try-fault + global::_003CModule_003E.delete(ptr); + throw; + } + m_unmanagedVars = unmanagedVars; + base._002Ector(); + AppDomain.CurrentDomain.ProcessExit += ProcessExitHandler; + } + + private unsafe void _007EDataClientProxy() + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + if (unmanagedVars != null) + { + DataClientProxyUnmanagedVars* ptr = unmanagedVars; + global::_003CModule_003E.DataClientProxyUnmanagedVars_002E_007Bdtor_007D(ptr); + global::_003CModule_003E.delete(ptr); + } + } + + public unsafe uint GetClientId() + { + uint* g_pLogDataClient; + if (m_IsConnected) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogDataClient = global::_003CModule_003E.g_pLogDataClient; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_009a; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_009a; + } + goto IL_00b2; + } + return 0u; + IL_00b2: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogDataClient, 0u) != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogDataClient, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FI_0040OJABHBPA_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAG_003F_0024AAe_003F_0024AAt_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAI_003F_0024AAd_003F_0024AA_003F5_003F_0024AAc_003F_0024AAl_003F_0024AAi_0040), __arglist(m_ulClientId)); + } + goto IL_0138; + IL_0138: + return m_ulClientId; + IL_009a: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00b2; + } + goto IL_0138; + } + + public unsafe basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* GetErrorMsg(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + System.Runtime.CompilerServices.Unsafe.SkipInit(out uint num); + try + { + num = 0u; + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* right = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4); + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, right, 0u, uint.MaxValue); + num = 1u; + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_11LOCGONAA_0040_003F_0024AA_003F_0024AA_0040), 0u); + return P_0; + } + catch + { + //try-fault + if ((num & 1) != 0) + { + num &= 0xFFFFFFFEu; + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_007Bdtor_007D), P_0); + } + throw; + } + } + + [return: MarshalAs(UnmanagedType.U1)] + public unsafe bool IsConnected() + { + uint* g_pLogDataClient; + if (m_ReportADisconnect) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogDataClient = global::_003CModule_003E.g_pLogDataClient; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_009a; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_009a; + } + goto IL_00b2; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogDataClient2 = global::_003CModule_003E.g_pLogDataClient; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_01c0; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_01c0; + } + goto IL_01d8; + IL_01c0: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_01d8; + } + goto IL_025e; + IL_01d8: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogDataClient2, 0u) != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogDataClient, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HA_0040PJEHIALF_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAs_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAp_0040), __arglist(m_IsConnected ? 1 : 0)); + } + goto IL_025e; + IL_012f: + return false; + IL_00b2: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogDataClient, 0u) != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogDataClient, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1GI_0040ONLHDAKO_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAI_003F_0024AAs_003F_0024AAC_003F_0024AAo_003F_0024AAn_003F_0024AAn_003F_0024AAe_003F_0024AAc_003F_0024AAt_003F_0024AAe_003F_0024AAd_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAp_0040), __arglist()); + } + goto IL_012f; + IL_025e: + return m_IsConnected; + IL_009a: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00b2; + } + goto IL_012f; + } + + public unsafe void AcknowledgeDisconnected() + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogDataClient = global::_003CModule_003E.g_pLogDataClient; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_008f; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_008f; + } + goto IL_00a7; + IL_008f: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_00a7; + } + goto IL_0124; + IL_0124: + m_ReportADisconnect = false; + return; + IL_00a7: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogDataClient, 0u) != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogDataClient, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FC_0040EPLLHOHG_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAc_003F_0024AAk_003F_0024AAn_003F_0024AAo_003F_0024AAw_003F_0024AAl_003F_0024AAe_003F_0024AAd_003F_0024AAg_003F_0024AAe_003F_0024AAD_003F_0024AAi_003F_0024AAs_003F_0024AAc_0040), __arglist()); + } + goto IL_0124; + } + + [return: MarshalAs(UnmanagedType.U1)] + public bool ThreadRunning() + { + bool result = false; + if (m_workerThread != null) + { + int num = ((m_ThreadIsRunning && !m_EndWorkerThread) ? 1 : 0); + result = (byte)num != 0; + } + return result; + } + + public unsafe void SetNamespace(char* bstrNamespace) + { + if (m_workerThread != null) + { + int num = ((m_ThreadIsRunning && !m_EndWorkerThread) ? 1 : 0); + if ((byte)num != 0) + { + return; + } + } + char* ptr = global::_003CModule_003E.SysAllocString(bstrNamespace); + CComBSTR* unmanagedVars = (CComBSTR*)m_unmanagedVars; + uint num2 = *(uint*)unmanagedVars; + if ((char*)(int)num2 != ptr) + { + global::_003CModule_003E.SysFreeString((char*)(int)num2); + *(int*)unmanagedVars = (int)ptr; + } + } + + public unsafe int CreateSubscription(long* SubscriptionId, long MaxQueueSize, ulong* SampleInterval, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_025d; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_025d; + } + goto IL_0272; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.CreateSubscription(ref *SubscriptionId, 4L, *SampleInterval); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HI_0040FFIAIOHO_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02ce; + IL_035e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0378; + } + goto end_IL_001a; + IL_02ce: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_035e; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_035e; + } + goto IL_0378; + IL_0272: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JO_0040HIIJLOJA_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_0040), __arglist((ushort*)ptr7)); + } + goto IL_02ce; + IL_0378: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + long num2 = ((SubscriptionId == null) ? (-1L) : (*SubscriptionId)); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1LA_0040ENPPMGJC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAr_003F_0024AAe_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAS_003F_0024AAu_003F_0024AAb_0040), __arglist(num2, num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_025d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0272; + } + goto IL_02ce; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int ChangeSubscription(long* SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant* enableState, ushort* properptyToChange, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0262; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0262; + } + goto IL_0277; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.SetSubscriptionState(*SubscriptionId, *enableState, *properptyToChange); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HK_0040MIBGAHFB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02d3; + IL_0363: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_037d; + } + goto end_IL_001a; + IL_02d3: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0363; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0363; + } + goto IL_037d; + IL_0277: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JO_0040FFMODPDB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_0040), __arglist((ushort*)ptr7)); + } + goto IL_02d3; + IL_037d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IO_0040KNGFFAPP_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAC_003F_0024AAh_003F_0024AAa_003F_0024AAn_003F_0024AAg_003F_0024AAe_003F_0024AAS_003F_0024AAu_003F_0024AAb_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_0262: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0277; + } + goto IL_02d3; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int DeleteSubscription(long* SubscriptionId, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0259; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0259; + } + goto IL_026e; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.DeleteSubscription(*SubscriptionId); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HK_0040OMJMOPKP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02ca; + IL_035a: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0374; + } + goto end_IL_001a; + IL_02ca: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_035a; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_035a; + } + goto IL_0374; + IL_026e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JO_0040BANHOFBI_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_0040), __arglist((ushort*)ptr7)); + } + goto IL_02ca; + IL_0374: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IO_0040LKBODLOO_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAS_003F_0024AAu_003F_0024AAb_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_0259: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_026e; + } + goto IL_02ca; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int AddMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] Capabilities, long* SubscriptionId, ref ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, ref ValueType result) + { + int num = -2147418106; + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IM_0040OLEIFPNK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist(*SubscriptionId, (ushort*)ptr)); + } + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr2; + if (m_IsConnected) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HA_0040FMFOOMB_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist()); + } + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr2 = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0492; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0492; + } + goto IL_04a7; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1KO_0040OACFEBEB_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist()); + } + try + { + if ((result = m_DataClient.AddMonitoredItems(ref Status, ref Capabilities, *SubscriptionId, Items, 0)) != null && global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IG_0040CANLKDMH_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist()); + } + if (Status != null && global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HM_0040MMBAMPK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist(Status.Length)); + } + if (Capabilities != null && global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1II_0040DOKAMNJK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist(Capabilities.Length)); + } + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HK_0040GEJKHJBK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist(Items.Length)); + } + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr3 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr3); + CWrapLogger* ptr4 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr4)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr4) != 0) ? ((int)((uint*)ptr4)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr5 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr6 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars2 + 4); + char* ptr7 = ((8u > (uint)((int*)ptr6)[5]) ? ((char*)ptr6) : ((char*)(int)(*(uint*)ptr6))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HI_0040NHOMPAFA_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040), __arglist((ushort*)ptr7, (ushort*)ptr5)); + } + } + catch + { + //try-fault + ptr3 = null; + throw; + } + } + } + } + goto IL_0503; + IL_05ad: + uint* g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IM_0040CJBEJLBK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_00d7; + IL_0593: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_05ad; + } + goto end_IL_00d7; + IL_04a7: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr2, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars4 = m_unmanagedVars; + char* ptr9 = ((*(int*)unmanagedVars4 != 0) ? ((char*)(int)(*(uint*)unmanagedVars4)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JK_0040EKCKCCLE_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAA_003F_0024AAd_003F_0024AAd_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040), __arglist((ushort*)ptr9)); + } + goto IL_0503; + IL_0503: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0593; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0593; + } + goto IL_05ad; + IL_0492: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_04a7; + } + goto IL_0503; + end_IL_00d7:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int DeleteMonitoredItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, long* SubscriptionId, ref ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_025d; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_025d; + } + goto IL_0272; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.DeleteMonitoredItems(ref Status, *SubscriptionId, Items); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FM_0040GAGIGBCP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAM_003F_0024AAo_003F_0024AAn_003F_0024AAi_003F_0024AAt_003F_0024AAo_003F_0024AAr_003F_0024AAe_003F_0024AAd_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02ce; + IL_035e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0378; + } + goto end_IL_001a; + IL_02ce: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_035e; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_035e; + } + goto IL_0378; + IL_0272: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1KC_0040IPCJOJAN_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_0040), __arglist((ushort*)ptr7)); + } + goto IL_02ce; + IL_0378: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JC_0040BNHHDNIL_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAD_003F_0024AAe_003F_0024AAl_003F_0024AAe_003F_0024AAt_003F_0024AAe_003F_0024AAM_003F_0024AAo_003F_0024AAn_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_025d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0272; + } + goto IL_02ce; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int RegisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] Capabilities, ref ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_028f; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_028f; + } + goto IL_02a4; + } + try + { + ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] array = Items; + if (array == null) + { + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.CWrapLogger_002EGetLogFlag(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), 1), 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FM_0040CJNLBGKM_0040_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_003F_0024AAN_0040), __arglist()); + } + } + else + { + ArchestrAResult archestrAResult = m_DataClient.RegisterItems(ref Status, ref Capabilities, array, 1, 1); + result = archestrAResult; + } + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1EO_0040NFFCHMJD_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAs_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F5_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_0300; + IL_048e: + uint* g_pLogRegisteredItems; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogRegisteredItems, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogRegisteredItems, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IE_0040JMEPNMNJ_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AAI_0040), __arglist(num, (ushort*)ptr7)); + } + goto end_IL_001a; + IL_03aa: + uint* g_pLogRegisteredItems2; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogRegisteredItems2, 0u) != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogRegisteredItems = global::_003CModule_003E.g_pLogRegisteredItems; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0474; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0474; + } + goto IL_048e; + } + goto end_IL_001a; + IL_02a4: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JE_0040COELOAEH_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_0040), __arglist((ushort*)ptr8)); + } + goto IL_0300; + IL_0300: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogRegisteredItems2 = global::_003CModule_003E.g_pLogRegisteredItems; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0390; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0390; + } + goto IL_03aa; + IL_0390: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_03aa; + } + goto end_IL_001a; + IL_0474: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_048e; + } + goto end_IL_001a; + IL_028f: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_02a4; + } + goto IL_0300; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int UnregisterItems(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_025a; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_025a; + } + goto IL_026f; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.UnregisterItems(ref Status, Items); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HE_0040DEPFEAGN_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02cb; + IL_0459: + uint* g_pLogRegisteredItems; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogRegisteredItems, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogRegisteredItems, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1II_0040MKNPJEMA_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_003F_0024AAs_003F_0024AAt_003F_0024AAe_0040), __arglist(num, (ushort*)ptr7)); + } + goto end_IL_001a; + IL_0375: + uint* g_pLogRegisteredItems2; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogRegisteredItems2, 0u) != 0) + { + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogRegisteredItems = global::_003CModule_003E.g_pLogRegisteredItems; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_043f; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_043f; + } + goto IL_0459; + } + goto end_IL_001a; + IL_026f: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JI_0040OLIOKBCP_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAU_003F_0024AAn_003F_0024AAr_003F_0024AAe_003F_0024AAg_003F_0024AAi_0040), __arglist((ushort*)ptr8)); + } + goto IL_02cb; + IL_02cb: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + g_pLogRegisteredItems2 = global::_003CModule_003E.g_pLogRegisteredItems; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_035b; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_035b; + } + goto IL_0375; + IL_035b: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0375; + } + goto end_IL_001a; + IL_043f: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0459; + } + goto end_IL_001a; + IL_025a: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_026f; + } + goto IL_02cb; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int WriteUser(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ref ArchestrAServices.ASBIDataV2Contract.WriteValue[] ItemValues, ref ArchestrAServices.ASBIDataV2Contract.UserToken[] userToken, uint* WriteHandle, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_026e; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_026e; + } + goto IL_0283; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.WriteUser(ref Status, Items, ItemValues, userToken[0], *WriteHandle); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1GI_0040HLOIFDBJ_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAU_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02df; + IL_036f: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0389; + } + goto end_IL_001a; + IL_02df: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_036f; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_036f; + } + goto IL_0389; + IL_0283: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IM_0040INAKFEEL_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAU_0040), __arglist((ushort*)ptr7)); + } + goto IL_02df; + IL_0389: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HM_0040LKPLIHJE_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAU_003F_0024AAs_003F_0024AAe_003F_0024AAr_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_026e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0283; + } + goto IL_02df; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int Write(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ref ArchestrAServices.ASBIDataV2Contract.WriteValue[] ItemValues, uint* WriteHandle, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0260; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0260; + } + goto IL_0275; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.Write(ref Status, Items, ItemValues, *WriteHandle); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1GA_0040ELKDJNAI_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02d1; + IL_0361: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_037b; + } + goto end_IL_001a; + IL_02d1: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0361; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0361; + } + goto IL_037b; + IL_0275: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IE_0040LMGBBOLC_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_0040), __arglist((ushort*)ptr7)); + } + goto IL_02d1; + IL_037b: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HE_0040KGHNJGHF_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAt_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_0260: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0275; + } + goto IL_02d1; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int WriteVerified(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ref ArchestrAServices.ASBIDataV2Contract.WriteValue[] ItemValues, ref ArchestrAServices.ASBIDataV2Contract.UserToken[] userToken, ref ArchestrAServices.ASBIDataV2Contract.UserToken[] verifierToken, uint* WriteHandle, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_027c; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_027c; + } + goto IL_0291; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.WriteVerified(ref Status, Items, ItemValues, userToken[0], verifierToken[0], *WriteHandle); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HA_0040EJLCDLM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAV_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02ed; + IL_037d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0397; + } + goto end_IL_001a; + IL_02ed: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_037d; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_037d; + } + goto IL_0397; + IL_0291: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JE_0040HDNOAGAK_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAV_0040), __arglist((ushort*)ptr7)); + } + goto IL_02ed; + IL_0397: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IE_0040FBDPCFJC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAV_003F_0024AAe_003F_0024AAr_003F_0024AAi_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_027c: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0291; + } + goto IL_02ed; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int WriteSecured(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ref ArchestrAServices.ASBIDataV2Contract.WriteValue[] ItemValues, ref ArchestrAServices.ASBIDataV2Contract.UserToken[] userToken, uint* WriteHandle, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_026e; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_026e; + } + goto IL_0283; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.WriteSecured(ref Status, Items, ItemValues, userToken[0], *WriteHandle); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1GO_0040BHFGFPMO_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02df; + IL_036f: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0389; + } + goto end_IL_001a; + IL_02df: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_036f; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_036f; + } + goto IL_0389; + IL_0283: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JC_0040JEHPCAEM_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAS_0040), __arglist((ushort*)ptr7)); + } + goto IL_02df; + IL_0389: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IC_0040PCAHNIKE_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAW_003F_0024AAr_003F_0024AAi_003F_0024AAt_003F_0024AAe_003F_0024AAS_003F_0024AAe_003F_0024AAc_003F_0024AAu_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_026e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0283; + } + goto IL_02df; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int KeepAlive() + { + int result = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0250; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0250; + } + goto IL_026a; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.KeepAlive(); + result = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + result = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1GI_0040LKNDJNC_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAK_003F_0024AAe_003F_0024AAe_003F_0024AAp_003F_0024AAA_003F_0024AAl_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto end_IL_001a; + IL_0250: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_026a; + } + goto end_IL_001a; + IL_026a: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IO_0040LDADOF_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAK_003F_0024AAe_003F_0024AAe_003F_0024AAp_003F_0024AAA_003F_0024AAl_0040), __arglist((ushort*)ptr7)); + } + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return result; + } + + public unsafe int Publish(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] ItemValues, long* SubscriptionId, ref ValueType result) + { + ValueType valueType = null; + ValueType valueType2 = null; + ValueType valueType3 = null; + int result2 = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0334; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0334; + } + goto IL_034e; + } + try + { + valueType = null; + valueType2 = null; + bool flag = global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pPublishPerformance, 0u); + if (flag) + { + valueType = DateTime.Now; + } + ArchestrAResult archestrAResult = m_DataClient.Publish(ref Status, ref ItemValues, *SubscriptionId); + result = archestrAResult; + if (flag) + { + valueType2 = DateTime.Now; + ValueType valueType4 = default(TimeSpan); + (TimeSpan)valueType4 = new TimeSpan((int)(((DateTime)valueType2).Ticks - ((DateTime)valueType).Ticks)); + valueType3 = valueType4; + int num = (int)((TimeSpan)valueType4).TotalMilliseconds; + ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] array = ItemValues; + int num2 = ((array != null) ? array.Length : 0); + int num3 = num2; + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pPublishPerformance, 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogCustom(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.g_pPublishPerformance, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JG_0040KFAAKIBG_0040_003F_0024AA_003F5_003F_0024AA_003F_0024FL_003F_0024AAg_003F_0024AAa_003F_0024AAl_003F_0024AAa_003F_0024AAx_003F_0024AAy_003F_0024AA_003F5_003F_0024AA_003F_0024CF_003F_0024AAs_003F_0024AA_003F_0024FN_003F_0024AA_003F3_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_0040), __arglist((ushort*)(int)(*(uint*)m_unmanagedVars), num, num2)); + } + } + result2 = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + result2 = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1GE_0040IGBJBPAC_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto end_IL_0023; + IL_0334: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_034e; + } + goto end_IL_0023; + IL_034e: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1II_0040GNNPJPOF_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040), __arglist((ushort*)ptr7)); + } + end_IL_0023:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return result2; + } + + public unsafe int PublishWriteComplete(ref ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] WriteCompletes, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0258; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0258; + } + goto IL_026d; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.PublishWriteComplete(ref WriteCompletes); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HO_0040NFBIPBHB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02c9; + IL_0359: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0373; + } + goto end_IL_001a; + IL_02c9: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0359; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0359; + } + goto IL_0373; + IL_026d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1KC_0040NKEFEMIB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_0040), __arglist((ushort*)ptr7)); + } + goto IL_02c9; + IL_0373: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JC_0040FLDAINPK_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAP_003F_0024AAu_003F_0024AAb_003F_0024AAl_003F_0024AAi_003F_0024AAs_003F_0024AAh_003F_0024AAW_003F_0024AAr_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_0258: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_026d; + } + goto IL_02c9; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public unsafe int Read(ref ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ref ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] ItemValues, ref ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ref ValueType result) + { + int num = -2147418106; + System.Runtime.CompilerServices.Unsafe.SkipInit(out MultiReadLock multiReadLock); + *(int*)(&multiReadLock) = (int)((byte*)m_unmanagedVars + 32); + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderLock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + try + { + uint* ptr; + if (m_IsConnected) + { + if (m_DataClient == null) + { + m_disconnected_evt?.Set(); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_025c; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_025c; + } + goto IL_0271; + } + try + { + ArchestrAResult archestrAResult = m_DataClient.Read(ref Status, ref ItemValues, Items); + result = archestrAResult; + num = 0; + } + catch (Exception ex) + { + m_disconnected_evt?.Set(); + num = ((ex.GetType() == typeof(CommunicationException) || ex.GetType() == typeof(CommunicationObjectFaultedException)) ? (-2147418106) : (-2147467259)); + ref byte reference = ref *(byte*)ex.ToString(); + if (System.Runtime.CompilerServices.Unsafe.AsPointer(ref reference) != null) + { + reference = ref *(byte*)((ref *(_003F*)RuntimeHelpers.OffsetToStringData) + (ref System.Runtime.CompilerServices.Unsafe.As(ref reference))); + } + fixed (char* ptr2 = &System.Runtime.CompilerServices.Unsafe.As(ref reference)) + { + try + { + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002E_003D((basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)m_unmanagedVars + 4), ptr2); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* clf = (uint*)((((int*)ptr3)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr3) != 0) ? ((int)((uint*)ptr3)[43]) : 0); + if (global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), clf, 0u)) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + char* ptr4 = ((*(int*)unmanagedVars != 0) ? ((char*)(int)(*(uint*)unmanagedVars)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* ptr5 = (basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E*)((byte*)unmanagedVars + 4); + char* ptr6 = ((8u > (uint)((int*)ptr5)[5]) ? ((char*)ptr5) : ((char*)(int)(*(uint*)ptr5))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1FO_0040FHPIGDOG_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AA_003F_0024CF_0040), __arglist((ushort*)ptr6, (ushort*)ptr4)); + } + } + catch + { + //try-fault + ptr2 = null; + throw; + } + } + } + } + goto IL_02cd; + IL_035d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0377; + } + goto end_IL_001a; + IL_02cd: + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* g_pLogSubscription = global::_003CModule_003E.g_pLogSubscription; + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_035d; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_035d; + } + goto IL_0377; + IL_0271: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars2 = m_unmanagedVars; + char* ptr7 = ((*(int*)unmanagedVars2 != 0) ? ((char*)(int)(*(uint*)unmanagedVars2)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IC_0040CHPAPOPB_0040_003F_0024AAE_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAd_0040), __arglist((ushort*)ptr7)); + } + goto IL_02cd; + IL_0377: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), g_pLogSubscription, 0u) != 0) + { + DataClientProxyUnmanagedVars* unmanagedVars3 = m_unmanagedVars; + char* ptr8 = ((*(int*)unmanagedVars3 != 0) ? ((char*)(int)(*(uint*)unmanagedVars3)) : ((char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1O_0040DPFEOIGE_0040_003F_0024AA_003F_0024DM_003F_0024AAN_003F_0024AAU_003F_0024AAL_003F_0024AAL_003F_0024AA_003F_0024DO_003F_0024AA_003F_0024AA_0040))); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogCustom((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), global::_003CModule_003E.g_pLogSubscription, (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HC_0040CIHDPBCL_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAC_003F_0024AAl_003F_0024AAi_003F_0024AAe_003F_0024AAn_003F_0024AAt_003F_0024AAP_003F_0024AAr_003F_0024AAo_003F_0024AAx_003F_0024AAy_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAR_003F_0024AAe_003F_0024AAa_003F_0024AAd_003F_0024AA_003F5_003F_0024AAr_003F_0024AAe_003F_0024AAt_003F_0024AAu_0040), __arglist(num, (ushort*)ptr8)); + } + goto end_IL_001a; + IL_025c: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_0271; + } + goto IL_02cd; + end_IL_001a:; + } + catch + { + //try-fault + global::_003CModule_003E.___CxxCallUnwindDtor((delegate*)(delegate*)(&global::_003CModule_003E.MultiReadLock_002E_007Bdtor_007D), &multiReadLock); + throw; + } + global::_003CModule_003E.WritersWithNonBlockingReadersLock_002EReaderUnlock((WritersWithNonBlockingReadersLock*)(int)(*(uint*)(&multiReadLock))); + return num; + } + + public void ProcessExitHandler(object __unnamed000, EventArgs args) + { + m_EndWorkerThread = true; + m_exitCommand_evt?.Set(); + global::_003CModule_003E.g_ProcessExitCalled = true; + } + + [return: MarshalAs(UnmanagedType.U1)] + public bool SupportsArrayElementWrites() + { + return m_SupportsArrayElementWrites; + } + + protected unsafe virtual void Dispose([MarshalAs(UnmanagedType.U1)] bool P_0) + { + if (P_0) + { + DataClientProxyUnmanagedVars* unmanagedVars = m_unmanagedVars; + if (unmanagedVars != null) + { + DataClientProxyUnmanagedVars* ptr = unmanagedVars; + global::_003CModule_003E.DataClientProxyUnmanagedVars_002E_007Bdtor_007D(ptr); + global::_003CModule_003E.delete(ptr); + } + } + else + { + base.Finalize(); + } + } + + public virtual sealed void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/DataClientProxyUnmanagedVars.cs b/analysis/decompiled/aaMxDataConsumer/DataClientProxyUnmanagedVars.cs new file mode 100644 index 0000000..541b687 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/DataClientProxyUnmanagedVars.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 88)] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct DataClientProxyUnmanagedVars +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/DataQuality.cs b/analysis/decompiled/aaMxDataConsumer/DataQuality.cs new file mode 100644 index 0000000..4aacbe8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/DataQuality.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum DataQuality +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/Define_the_symbol__ATL_MIXED/Thank_you.cs b/analysis/decompiled/aaMxDataConsumer/Define_the_symbol__ATL_MIXED/Thank_you.cs new file mode 100644 index 0000000..640ba3e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/Define_the_symbol__ATL_MIXED/Thank_you.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace Define_the_symbol__ATL_MIXED; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct Thank_you +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/EAUTHMODE.cs b/analysis/decompiled/aaMxDataConsumer/EAUTHMODE.cs new file mode 100644 index 0000000..affa381 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/EAUTHMODE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum EAUTHMODE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/EHExceptionRecord.cs b/analysis/decompiled/aaMxDataConsumer/EHExceptionRecord.cs new file mode 100644 index 0000000..384a61f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/EHExceptionRecord.cs @@ -0,0 +1,20 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct EHExceptionRecord +{ + [StructLayout(LayoutKind.Sequential, Size = 12)] + [MiscellaneousBits(65)] + [NativeCppClass] + [CLSCompliant(false)] + [DebugInfoInPDB] + public struct EHParameters + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/ELOGIN.cs b/analysis/decompiled/aaMxDataConsumer/ELOGIN.cs new file mode 100644 index 0000000..faf95b2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ELOGIN.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum ELOGIN +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/ETaskType.cs b/analysis/decompiled/aaMxDataConsumer/ETaskType.cs new file mode 100644 index 0000000..830b4ea --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ETaskType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum ETaskType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/FindCloseHandlePolicy.cs b/analysis/decompiled/aaMxDataConsumer/FindCloseHandlePolicy.cs new file mode 100644 index 0000000..76f8070 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/FindCloseHandlePolicy.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct FindCloseHandlePolicy +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/FreeLibraryPolicy.cs b/analysis/decompiled/aaMxDataConsumer/FreeLibraryPolicy.cs new file mode 100644 index 0000000..b47ef77 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/FreeLibraryPolicy.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct FreeLibraryPolicy +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/HDC__.cs b/analysis/decompiled/aaMxDataConsumer/HDC__.cs new file mode 100644 index 0000000..1e72865 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/HDC__.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct HDC__ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/HINSTANCE__.cs b/analysis/decompiled/aaMxDataConsumer/HINSTANCE__.cs new file mode 100644 index 0000000..5c55543 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/HINSTANCE__.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct HINSTANCE__ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/HKEY__.cs b/analysis/decompiled/aaMxDataConsumer/HKEY__.cs new file mode 100644 index 0000000..ade7faa --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/HKEY__.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct HKEY__ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/HRSRC__.cs b/analysis/decompiled/aaMxDataConsumer/HRSRC__.cs new file mode 100644 index 0000000..e9249e3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/HRSRC__.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct HRSRC__ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/HWND__.cs b/analysis/decompiled/aaMxDataConsumer/HWND__.cs new file mode 100644 index 0000000..7543054 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/HWND__.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct HWND__ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IArchestrAError.cs b/analysis/decompiled/aaMxDataConsumer/IArchestrAError.cs new file mode 100644 index 0000000..18ff4c7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IArchestrAError.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum IArchestrAError +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/IArchestrAResult.cs b/analysis/decompiled/aaMxDataConsumer/IArchestrAResult.cs new file mode 100644 index 0000000..8a82cca --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IArchestrAResult.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct IArchestrAResult +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ICLRRuntimeHost.cs b/analysis/decompiled/aaMxDataConsumer/ICLRRuntimeHost.cs new file mode 100644 index 0000000..939070c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ICLRRuntimeHost.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal static struct ICLRRuntimeHost +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ICorRuntimeHost.cs b/analysis/decompiled/aaMxDataConsumer/ICorRuntimeHost.cs new file mode 100644 index 0000000..301b6ea --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ICorRuntimeHost.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal static struct ICorRuntimeHost +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IDataType.cs b/analysis/decompiled/aaMxDataConsumer/IDataType.cs new file mode 100644 index 0000000..58a522a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IDataType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum IDataType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/IDispatch.cs b/analysis/decompiled/aaMxDataConsumer/IDispatch.cs new file mode 100644 index 0000000..4c7dd20 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IDispatch.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal static struct IDispatch +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IErrorInfo.cs b/analysis/decompiled/aaMxDataConsumer/IErrorInfo.cs new file mode 100644 index 0000000..fe8326a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IErrorInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal static struct IErrorInfo +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IGlobalInterfaceTable.cs b/analysis/decompiled/aaMxDataConsumer/IGlobalInterfaceTable.cs new file mode 100644 index 0000000..13eb275 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IGlobalInterfaceTable.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal static struct IGlobalInterfaceTable +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IItemIdentityType.cs b/analysis/decompiled/aaMxDataConsumer/IItemIdentityType.cs new file mode 100644 index 0000000..84bee9c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IItemIdentityType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum IItemIdentityType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/IItemReferenceType.cs b/analysis/decompiled/aaMxDataConsumer/IItemReferenceType.cs new file mode 100644 index 0000000..2fc4a62 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IItemReferenceType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum IItemReferenceType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/IMAGE_AUX_SYMBOL_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/IMAGE_AUX_SYMBOL_TYPE.cs new file mode 100644 index 0000000..3bae251 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IMAGE_AUX_SYMBOL_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum IMAGE_AUX_SYMBOL_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/IMPORT_OBJECT_NAME_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/IMPORT_OBJECT_NAME_TYPE.cs new file mode 100644 index 0000000..f644cd4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IMPORT_OBJECT_NAME_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum IMPORT_OBJECT_NAME_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/IMPORT_OBJECT_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/IMPORT_OBJECT_TYPE.cs new file mode 100644 index 0000000..7667ff8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IMPORT_OBJECT_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum IMPORT_OBJECT_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/IObjectWithSite.cs b/analysis/decompiled/aaMxDataConsumer/IObjectWithSite.cs new file mode 100644 index 0000000..79b513c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IObjectWithSite.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal static struct IObjectWithSite +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IPersistStream.cs b/analysis/decompiled/aaMxDataConsumer/IPersistStream.cs new file mode 100644 index 0000000..464e632 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IPersistStream.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal static struct IPersistStream +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IRegistrar.cs b/analysis/decompiled/aaMxDataConsumer/IRegistrar.cs new file mode 100644 index 0000000..18116b6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IRegistrar.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal static struct IRegistrar +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IRegistrarBase.cs b/analysis/decompiled/aaMxDataConsumer/IRegistrarBase.cs new file mode 100644 index 0000000..ee93555 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IRegistrarBase.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal static struct IRegistrarBase +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ISequentialStream.cs b/analysis/decompiled/aaMxDataConsumer/ISequentialStream.cs new file mode 100644 index 0000000..fc1c9de --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ISequentialStream.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal static struct ISequentialStream +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IStream.cs b/analysis/decompiled/aaMxDataConsumer/IStream.cs new file mode 100644 index 0000000..0df5b56 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IStream.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal static struct IStream +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ITypeInfo.cs b/analysis/decompiled/aaMxDataConsumer/ITypeInfo.cs new file mode 100644 index 0000000..4c84529 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ITypeInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal static struct ITypeInfo +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ITypeInfo2.cs b/analysis/decompiled/aaMxDataConsumer/ITypeInfo2.cs new file mode 100644 index 0000000..e9a9484 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ITypeInfo2.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal static struct ITypeInfo2 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/ITypeLib.cs b/analysis/decompiled/aaMxDataConsumer/ITypeLib.cs new file mode 100644 index 0000000..6139c54 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ITypeLib.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal static struct ITypeLib +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/IUnknown.cs b/analysis/decompiled/aaMxDataConsumer/IUnknown.cs new file mode 100644 index 0000000..025d41f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/IUnknown.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal static struct IUnknown +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/Inconsistent_definition_of_symbol__ATL_MIXED/_Please_define_it_the_same_throughout_your_project.cs b/analysis/decompiled/aaMxDataConsumer/Inconsistent_definition_of_symbol__ATL_MIXED/_Please_define_it_the_same_throughout_your_project.cs new file mode 100644 index 0000000..f2c0ece --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/Inconsistent_definition_of_symbol__ATL_MIXED/_Please_define_it_the_same_throughout_your_project.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace Inconsistent_definition_of_symbol__ATL_MIXED; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _Please_define_it_the_same_throughout_your_project +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/LastError.cs b/analysis/decompiled/aaMxDataConsumer/LastError.cs new file mode 100644 index 0000000..7ba014c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/LastError.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8192)] +[MiscellaneousBits(64)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct LastError +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/MultiReadLock.cs b/analysis/decompiled/aaMxDataConsumer/MultiReadLock.cs new file mode 100644 index 0000000..d4bca1a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MultiReadLock.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct MultiReadLock +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/MultiWriteLock.cs b/analysis/decompiled/aaMxDataConsumer/MultiWriteLock.cs new file mode 100644 index 0000000..81466d0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MultiWriteLock.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct MultiWriteLock +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/MxDataType.cs b/analysis/decompiled/aaMxDataConsumer/MxDataType.cs new file mode 100644 index 0000000..f929db1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MxDataType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum MxDataType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/MxResolutionStatus.cs b/analysis/decompiled/aaMxDataConsumer/MxResolutionStatus.cs new file mode 100644 index 0000000..f9009f3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MxResolutionStatus.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum MxResolutionStatus +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/MxSecurityClassification.cs b/analysis/decompiled/aaMxDataConsumer/MxSecurityClassification.cs new file mode 100644 index 0000000..116c3a5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MxSecurityClassification.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum MxSecurityClassification +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/MxStatusCategory.cs b/analysis/decompiled/aaMxDataConsumer/MxStatusCategory.cs new file mode 100644 index 0000000..42415ff --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MxStatusCategory.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum MxStatusCategory +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/MxStatusDetail.cs b/analysis/decompiled/aaMxDataConsumer/MxStatusDetail.cs new file mode 100644 index 0000000..aa4fee6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MxStatusDetail.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum MxStatusDetail +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/MxStatusSource.cs b/analysis/decompiled/aaMxDataConsumer/MxStatusSource.cs new file mode 100644 index 0000000..60f419f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/MxStatusSource.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum MxStatusSource +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/PIDMSI_STATUS_VALUE.cs b/analysis/decompiled/aaMxDataConsumer/PIDMSI_STATUS_VALUE.cs new file mode 100644 index 0000000..7f743ad --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/PIDMSI_STATUS_VALUE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum PIDMSI_STATUS_VALUE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/Properties/AssemblyInfo.cs b/analysis/decompiled/aaMxDataConsumer/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c6ee2ac --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/Properties/AssemblyInfo.cs @@ -0,0 +1,6 @@ +using System.Reflection; +using System.Security; +using System.Security.Permissions; + +[assembly: SecurityRules(SecurityRuleSet.Level1)] +[assembly: AssemblyVersion("0.0.0.0")] diff --git a/analysis/decompiled/aaMxDataConsumer/RPC_ADDRESS_CHANGE_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/RPC_ADDRESS_CHANGE_TYPE.cs new file mode 100644 index 0000000..a7e5a97 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/RPC_ADDRESS_CHANGE_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum RPC_ADDRESS_CHANGE_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/ReplacesCorHdrNumericDefines.cs b/analysis/decompiled/aaMxDataConsumer/ReplacesCorHdrNumericDefines.cs new file mode 100644 index 0000000..38cd9a2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ReplacesCorHdrNumericDefines.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum ReplacesCorHdrNumericDefines +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/SC_HANDLE__.cs b/analysis/decompiled/aaMxDataConsumer/SC_HANDLE__.cs new file mode 100644 index 0000000..e496780 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/SC_HANDLE__.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct SC_HANDLE__ +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/SYSGEOCLASS.cs b/analysis/decompiled/aaMxDataConsumer/SYSGEOCLASS.cs new file mode 100644 index 0000000..dc5932f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/SYSGEOCLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum SYSGEOCLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/SYSGEOTYPE.cs b/analysis/decompiled/aaMxDataConsumer/SYSGEOTYPE.cs new file mode 100644 index 0000000..0e50fe8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/SYSGEOTYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum SYSGEOTYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/SYSNLS_FUNCTION.cs b/analysis/decompiled/aaMxDataConsumer/SYSNLS_FUNCTION.cs new file mode 100644 index 0000000..0beae39 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/SYSNLS_FUNCTION.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum SYSNLS_FUNCTION +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/SafeLoadLibraryEx.cs b/analysis/decompiled/aaMxDataConsumer/SafeLoadLibraryEx.cs new file mode 100644 index 0000000..b8e3caf --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/SafeLoadLibraryEx.cs @@ -0,0 +1,20 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct SafeLoadLibraryEx +{ + [MiscellaneousBits(64)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [NativeCppClass] + public enum eAALLFolders + { + + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/StatusUpdater.cs b/analysis/decompiled/aaMxDataConsumer/StatusUpdater.cs new file mode 100644 index 0000000..a68bfe1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/StatusUpdater.cs @@ -0,0 +1,106 @@ +using System.Runtime.CompilerServices; +using ArchestrAServices.ASBIDataV2Contract; + +internal abstract class StatusUpdater +{ + private ASBStatusElement[] m_statusElement; + + public void SetStatus(ASBStatus Status) + { + m_statusElement = ASBSerializer.ASBStatusToArray(Status); + } + + public abstract void SetStatusCategory(uint StatusCode); + + public abstract void SetStatusDetail(uint StatusDetail); + + public abstract void SetQuality(uint Quality); + + public unsafe void FillInUpdate() + { + ASBStatusElement[] statusElement = m_statusElement; + if (statusElement != null) + { + int num = statusElement.Length; + if (num <= 0) + { + return; + } + uint statusCategory = 0u; + bool flag = false; + uint statusDetail = 1009u; + bool flag2 = false; + uint quality = 64u; + bool flag3 = false; + uint num2 = 0u; + bool flag4 = false; + uint num3 = 0u; + bool flag5 = false; + int num4 = 0; + int num5 = num; + if (0 < num5) + { + do + { + switch (statusElement[num4].statusType) + { + case ASBStatusType.MXStatusCategory: + flag = true; + statusCategory = statusElement[num4].statusValue; + break; + case ASBStatusType.MxStatusDetail: + flag2 = true; + statusDetail = statusElement[num4].statusValue; + break; + case ASBStatusType.OPCUAVendorStatus: + flag4 = true; + num2 = statusElement[num4].statusValue; + break; + case ASBStatusType.OPCUAStatus: + flag5 = true; + num3 = statusElement[num4].statusValue; + break; + case ASBStatusType.MxQuality: + flag3 = true; + quality = statusElement[num4].statusValue; + break; + } + num4++; + } + while (num4 < num5); + } + if ((flag5 ^ flag4) && global::_003CModule_003E.CWrapLogger_002ELogFlagLog(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), global::_003CModule_003E.CWrapLogger_002EGetLogFlag(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), 1), 0u)) + { + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1JK_0040EOEIELEM_0040_003F_0024AAO_003F_0024AAn_003F_0024AAl_003F_0024AAy_003F_0024AA_003F5_003F_0024AAo_003F_0024AAn_003F_0024AAe_003F_0024AA_003F5_003F_0024AAp_003F_0024AAa_003F_0024AAr_003F_0024AAt_003F_0024AA_003F5_003F_0024AAo_003F_0024AAf_003F_0024AA_003F5_003F_0024AAt_003F_0024AAh_003F_0024AAe_003F_0024AA_003F5_003F_0024AAO_003F_0024AAP_003F_0024AAC_003F_0024AAU_003F_0024AAA_003F_0024AA_003F5_003F_0024AAe_003F_0024AAr_003F_0024AAr_003F_0024AAo_003F_0024AAr_0040), __arglist()); + } + if (!flag && !flag2 && !flag3 && flag4 && flag5) + { + ushort num6 = 0; + ushort num7 = 0; + System.Runtime.CompilerServices.Unsafe.SkipInit(out ConsumerDataUtilities consumerDataUtilities); + quality = global::_003CModule_003E.ConsumerDataUtilities_002EGetOPCDAQualityCode(&consumerDataUtilities, (num3 << 16) | (num2 & 0xFFFF), &num6, &num7); + statusCategory = num6; + statusDetail = num7; + } + SetStatusCategory(statusCategory); + SetStatusDetail(statusDetail); + SetQuality(quality); + return; + } + CWrapLogger* ptr = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + uint* ptr2 = (uint*)((((int*)ptr)[43] != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx(ptr) != 0) ? ((int)((uint*)ptr)[43]) : 0); + CWrapLogger* ptr3 = global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(); + if (global::_003CModule_003E.CWrapLogger_002EInitialize(ptr3)) + { + uint num8 = ((uint*)ptr3)[41]; + if (num8 != 0 && ((delegate* unmanaged[Cdecl, Cdecl])(int)num8)(((int*)ptr3)[1], ptr2, 0u) != 0) + { + global::_003CModule_003E.CWrapLogger_002ELogWarning(global::_003CModule_003E.CLoggerSelect_002E_GetFSLogger(), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1EK_0040KKDLLJGJ_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA_003F5_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AA_003F5_003F_0024AAs_003F_0024AAe_003F_0024AAt_003F_0024AA_003F5_003F_0024AAt_003F_0024AAo_003F_0024AA_003F5_003F_0024AAn_003F_0024AAu_003F_0024AAl_003F_0024AAl_0040), __arglist()); + } + } + } + + public StatusUpdater() + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/StatusUpdater_ConsumerASBResultCode.cs b/analysis/decompiled/aaMxDataConsumer/StatusUpdater_ConsumerASBResultCode.cs new file mode 100644 index 0000000..14729b8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/StatusUpdater_ConsumerASBResultCode.cs @@ -0,0 +1,192 @@ +using System.Runtime.CompilerServices; + +internal class StatusUpdater_ConsumerASBResultCode : StatusUpdater +{ + private unsafe ConsumerASBResultCode* m_item; + + public unsafe void SetConsumerASBResultCode(ConsumerASBResultCode* item) + { + m_item = item; + if (item != null) + { + ((int*)item)[5] = 8; + ((int*)m_item)[2] = 1009; + } + } + + public unsafe override void SetStatusCategory(uint StatusCode) + { + ConsumerASBResultCode* item = m_item; + if (item != null) + { + ((int*)item)[5] = (int)StatusCode; + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0105; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0105; + } + goto IL_011d; + IL_0105: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_011d; + } + return; + IL_011d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) == 0 || ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) == 0) + { + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogWarning((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IE_0040KILCCGEC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040), __arglist()); + } + + public unsafe override void SetStatusDetail(uint StatusDetail) + { + ConsumerASBResultCode* item = m_item; + if (item != null) + { + ((int*)item)[2] = (int)StatusDetail; + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0104; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0104; + } + goto IL_011c; + IL_0104: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_011c; + } + return; + IL_011c: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) == 0 || ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) == 0) + { + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogWarning((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IA_0040DDMNCIAB_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040), __arglist()); + } + + public override void SetQuality(uint Quality) + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/StatusUpdater_ItemDataUpdate.cs b/analysis/decompiled/aaMxDataConsumer/StatusUpdater_ItemDataUpdate.cs new file mode 100644 index 0000000..6be67af --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/StatusUpdater_ItemDataUpdate.cs @@ -0,0 +1,274 @@ +using System.Runtime.CompilerServices; + +internal class StatusUpdater_ItemDataUpdate : StatusUpdater +{ + private unsafe _ItemDataUpdate* m_item; + + public unsafe void SetItemDataUpdate(_ItemDataUpdate* item) + { + m_item = item; + if (item != null) + { + ((int*)item)[2] = 8; + ((int*)m_item)[3] = 1009; + } + } + + public unsafe override void SetStatusCategory(uint StatusCode) + { + _ItemDataUpdate* item = m_item; + if (item != null) + { + ((int*)item)[2] = (int)StatusCode; + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0104; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0104; + } + goto IL_011c; + IL_0104: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_011c; + } + return; + IL_011c: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) == 0 || ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) == 0) + { + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogWarning((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IE_0040KILCCGEC_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040), __arglist()); + } + + public unsafe override void SetStatusDetail(uint StatusDetail) + { + _ItemDataUpdate* item = m_item; + if (item != null) + { + ((int*)item)[3] = (int)StatusDetail; + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0105; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0105; + } + goto IL_011d; + IL_0105: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_011d; + } + return; + IL_011d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) == 0 || ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) == 0) + { + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogWarning((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1IA_0040DDMNCIAB_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040), __arglist()); + } + + public unsafe override void SetQuality(uint Quality) + { + _ItemDataUpdate* item = m_item; + if (item != null) + { + ((int*)item)[6] = (int)Quality; + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + uint* ptr = (uint*)((System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172)) != 0 || global::_003CModule_003E.CWrapLogger_002ELogStartEx((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)) != 0) ? ((int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 172))) : 0); + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) == -1) + { + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + global::_003CModule_003E.CWrapLogger_002ELoadLoggerDLL((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + if (System.Runtime.CompilerServices.Unsafe.As(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A) == 0) + { + goto IL_0105; + } + } + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)) != 0) + { + ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 156)))((int*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4))); + } + goto IL_0105; + } + goto IL_011d; + IL_0105: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)) != -1) + { + global::_003CModule_003E.CWrapLogger_002ESetDefaultIdentity((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + goto IL_011d; + } + return; + IL_011d: + if (System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)) == 0 || ((delegate* unmanaged[Cdecl, Cdecl])(int)System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 164)))(System.Runtime.CompilerServices.Unsafe.As(ref System.Runtime.CompilerServices.Unsafe.AddByteOffset(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A, 4)), ptr, 0u) == 0) + { + return; + } + if ((global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 & 1) == 0) + { + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 |= 1u; + try + { + global::_003CModule_003E.CWrapLogger_002E_007Bctor_007D((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A)); + global::_003CModule_003E._atexit_m((delegate*)(&global::_003CModule_003E._003F_003F__FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_0040YMXXZ)); + } + catch + { + //try-fault + global::_003CModule_003E._003F_003F_B_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_004051 &= 4294967294u; + throw; + } + } + global::_003CModule_003E.CWrapLogger_002ELogWarning((CWrapLogger*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003FfsLogger_0040_003F1_003F_003F_GetFSLogger_0040CLoggerSelect_0040_0040SAAAVCWrapLogger_0040_0040XZ_00404V3_0040A), (char*)System.Runtime.CompilerServices.Unsafe.AsPointer(ref global::_003CModule_003E._003F_003F_C_0040_1HG_0040CLAPEJNO_0040_003F_0024AAS_003F_0024AAt_003F_0024AAa_003F_0024AAt_003F_0024AAu_003F_0024AAs_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AAr_003F_0024AA__003F_0024AAI_003F_0024AAt_003F_0024AAe_003F_0024AAm_003F_0024AAD_003F_0024AAa_003F_0024AAt_003F_0024AAa_003F_0024AAU_003F_0024AAp_003F_0024AAd_003F_0024AAa_003F_0024AAt_003F_0024AAe_003F_0024AA_003F3_003F_0024AA_003F3_003F_0024AAS_003F_0024AAe_0040), __arglist()); + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/TimePassed.cs b/analysis/decompiled/aaMxDataConsumer/TimePassed.cs new file mode 100644 index 0000000..932324b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/TimePassed.cs @@ -0,0 +1,22 @@ +using System; +using System.Runtime.InteropServices; + +internal class TimePassed(int timePeriod) +{ + private int TIME_UNTIL_OK = timePeriod; + + private DateTime m_lastTime = DateTime.Now; + + [return: MarshalAs(UnmanagedType.U1)] + public bool TimeHasPassed() + { + bool result = false; + if (DateTime.Now.Subtract(m_lastTime).Seconds >= TIME_UNTIL_OK) + { + DateTime now = DateTime.Now; + m_lastTime = now; + result = true; + } + return result; + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/VARENUM.cs b/analysis/decompiled/aaMxDataConsumer/VARENUM.cs new file mode 100644 index 0000000..17f81f1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/VARENUM.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum VARENUM +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/ValidatorFlags.cs b/analysis/decompiled/aaMxDataConsumer/ValidatorFlags.cs new file mode 100644 index 0000000..adac0ca --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/ValidatorFlags.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum ValidatorFlags +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/WriteCapabilityType.cs b/analysis/decompiled/aaMxDataConsumer/WriteCapabilityType.cs new file mode 100644 index 0000000..cfe6fef --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/WriteCapabilityType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum WriteCapabilityType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/WritersWithNonBlockingReadersLock.cs b/analysis/decompiled/aaMxDataConsumer/WritersWithNonBlockingReadersLock.cs new file mode 100644 index 0000000..bb6ed02 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/WritersWithNonBlockingReadersLock.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 56)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct WritersWithNonBlockingReadersLock +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACCESS_ALLOWED_ACE.cs b/analysis/decompiled/aaMxDataConsumer/_ACCESS_ALLOWED_ACE.cs new file mode 100644 index 0000000..69b9d57 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACCESS_ALLOWED_ACE.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _ACCESS_ALLOWED_ACE +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACCESS_DENIED_ACE.cs b/analysis/decompiled/aaMxDataConsumer/_ACCESS_DENIED_ACE.cs new file mode 100644 index 0000000..de81306 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACCESS_DENIED_ACE.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _ACCESS_DENIED_ACE +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACCESS_REASON_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_ACCESS_REASON_TYPE.cs new file mode 100644 index 0000000..168371e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACCESS_REASON_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _ACCESS_REASON_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACE_HEADER.cs b/analysis/decompiled/aaMxDataConsumer/_ACE_HEADER.cs new file mode 100644 index 0000000..94aac7d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACE_HEADER.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _ACE_HEADER +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACL.cs b/analysis/decompiled/aaMxDataConsumer/_ACL.cs new file mode 100644 index 0000000..4533856 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACL.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _ACL +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACL_INFORMATION_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_ACL_INFORMATION_CLASS.cs new file mode 100644 index 0000000..fbe7b81 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACL_INFORMATION_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _ACL_INFORMATION_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACL_SIZE_INFORMATION.cs b/analysis/decompiled/aaMxDataConsumer/_ACL_SIZE_INFORMATION.cs new file mode 100644 index 0000000..f6ac13d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACL_SIZE_INFORMATION.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _ACL_SIZE_INFORMATION +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ACTIVATION_CONTEXT_INFO_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_ACTIVATION_CONTEXT_INFO_CLASS.cs new file mode 100644 index 0000000..1ca9a25 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ACTIVATION_CONTEXT_INFO_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _ACTIVATION_CONTEXT_INFO_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_APTTYPE.cs b/analysis/decompiled/aaMxDataConsumer/_APTTYPE.cs new file mode 100644 index 0000000..0035d65 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_APTTYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _APTTYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_APTTYPEQUALIFIER.cs b/analysis/decompiled/aaMxDataConsumer/_APTTYPEQUALIFIER.cs new file mode 100644 index 0000000..8e68124 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_APTTYPEQUALIFIER.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _APTTYPEQUALIFIER +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_AUDIT_EVENT_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_AUDIT_EVENT_TYPE.cs new file mode 100644 index 0000000..c116561 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_AUDIT_EVENT_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _AUDIT_EVENT_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_BIN_TYPES.cs b/analysis/decompiled/aaMxDataConsumer/_BIN_TYPES.cs new file mode 100644 index 0000000..f71937c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_BIN_TYPES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _BIN_TYPES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_CHANGER_DEVICE_PROBLEM_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_CHANGER_DEVICE_PROBLEM_TYPE.cs new file mode 100644 index 0000000..bcfae07 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_CHANGER_DEVICE_PROBLEM_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _CHANGER_DEVICE_PROBLEM_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_CLRAssemblyIdentityFlags.cs b/analysis/decompiled/aaMxDataConsumer/_CLRAssemblyIdentityFlags.cs new file mode 100644 index 0000000..2078ffa --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_CLRAssemblyIdentityFlags.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _CLRAssemblyIdentityFlags +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_CM_ERROR_CONTROL_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_CM_ERROR_CONTROL_TYPE.cs new file mode 100644 index 0000000..72101d8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_CM_ERROR_CONTROL_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _CM_ERROR_CONTROL_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_CM_SERVICE_LOAD_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_CM_SERVICE_LOAD_TYPE.cs new file mode 100644 index 0000000..13532bd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_CM_SERVICE_LOAD_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _CM_SERVICE_LOAD_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_CM_SERVICE_NODE_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_CM_SERVICE_NODE_TYPE.cs new file mode 100644 index 0000000..1aa3cb9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_CM_SERVICE_NODE_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _CM_SERVICE_NODE_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_COMPUTER_NAME_FORMAT.cs b/analysis/decompiled/aaMxDataConsumer/_COMPUTER_NAME_FORMAT.cs new file mode 100644 index 0000000..32e1038 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_COMPUTER_NAME_FORMAT.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _COMPUTER_NAME_FORMAT +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_Collvec.cs b/analysis/decompiled/aaMxDataConsumer/_Collvec.cs new file mode 100644 index 0000000..1a5b3af --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_Collvec.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _Collvec +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_Ctypevec.cs b/analysis/decompiled/aaMxDataConsumer/_Ctypevec.cs new file mode 100644 index 0000000..3053a87 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_Ctypevec.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _Ctypevec +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_Cvtvec.cs b/analysis/decompiled/aaMxDataConsumer/_Cvtvec.cs new file mode 100644 index 0000000..31337a1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_Cvtvec.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _Cvtvec +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_DEP_SYSTEM_POLICY_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_DEP_SYSTEM_POLICY_TYPE.cs new file mode 100644 index 0000000..da2a0c9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_DEP_SYSTEM_POLICY_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _DEP_SYSTEM_POLICY_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_DETECTION_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_DETECTION_TYPE.cs new file mode 100644 index 0000000..7689435 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_DETECTION_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _DETECTION_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_DEVICE_POWER_STATE.cs b/analysis/decompiled/aaMxDataConsumer/_DEVICE_POWER_STATE.cs new file mode 100644 index 0000000..e219d77 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_DEVICE_POWER_STATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _DEVICE_POWER_STATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_DLLVERSIONINFO.cs b/analysis/decompiled/aaMxDataConsumer/_DLLVERSIONINFO.cs new file mode 100644 index 0000000..d82d8c7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_DLLVERSIONINFO.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +internal struct _DLLVERSIONINFO +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_DataUpdate.cs b/analysis/decompiled/aaMxDataConsumer/_DataUpdate.cs new file mode 100644 index 0000000..f7039c7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_DataUpdate.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 48)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _DataUpdate +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_Dconst.cs b/analysis/decompiled/aaMxDataConsumer/_Dconst.cs new file mode 100644 index 0000000..2c1388a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_Dconst.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Explicit, Size = 16)] +[MiscellaneousBits(66)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _Dconst +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ELEMENT_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_ELEMENT_TYPE.cs new file mode 100644 index 0000000..03cb108 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ELEMENT_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _ELEMENT_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ENLISTMENT_INFORMATION_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_ENLISTMENT_INFORMATION_CLASS.cs new file mode 100644 index 0000000..71913bd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ENLISTMENT_INFORMATION_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _ENLISTMENT_INFORMATION_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_EXCEPTION_DISPOSITION.cs b/analysis/decompiled/aaMxDataConsumer/_EXCEPTION_DISPOSITION.cs new file mode 100644 index 0000000..ef06c9a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_EXCEPTION_DISPOSITION.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _EXCEPTION_DISPOSITION +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_EXCEPTION_POINTERS.cs b/analysis/decompiled/aaMxDataConsumer/_EXCEPTION_POINTERS.cs new file mode 100644 index 0000000..131c5e6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_EXCEPTION_POINTERS.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _EXCEPTION_POINTERS +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_FILETIME.cs b/analysis/decompiled/aaMxDataConsumer/_FILETIME.cs new file mode 100644 index 0000000..d35a339 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_FILETIME.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _FILETIME +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_FINDEX_INFO_LEVELS.cs b/analysis/decompiled/aaMxDataConsumer/_FINDEX_INFO_LEVELS.cs new file mode 100644 index 0000000..287b402 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_FINDEX_INFO_LEVELS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _FINDEX_INFO_LEVELS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_FINDEX_SEARCH_OPS.cs b/analysis/decompiled/aaMxDataConsumer/_FINDEX_SEARCH_OPS.cs new file mode 100644 index 0000000..1347342 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_FINDEX_SEARCH_OPS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _FINDEX_SEARCH_OPS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_GET_FILEEX_INFO_LEVELS.cs b/analysis/decompiled/aaMxDataConsumer/_GET_FILEEX_INFO_LEVELS.cs new file mode 100644 index 0000000..dfae764 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_GET_FILEEX_INFO_LEVELS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _GET_FILEEX_INFO_LEVELS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_GUID.cs b/analysis/decompiled/aaMxDataConsumer/_GUID.cs new file mode 100644 index 0000000..a7aaba8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_GUID.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _GUID +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_HARDWARE_COUNTER_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_HARDWARE_COUNTER_TYPE.cs new file mode 100644 index 0000000..3539af6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_HARDWARE_COUNTER_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _HARDWARE_COUNTER_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_HEAP_INFORMATION_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_HEAP_INFORMATION_CLASS.cs new file mode 100644 index 0000000..fc9a1c0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_HEAP_INFORMATION_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _HEAP_INFORMATION_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_HostApplicationPolicy.cs b/analysis/decompiled/aaMxDataConsumer/_HostApplicationPolicy.cs new file mode 100644 index 0000000..6d7fbd5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_HostApplicationPolicy.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _HostApplicationPolicy +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_IDL_CS_CONVERT.cs b/analysis/decompiled/aaMxDataConsumer/_IDL_CS_CONVERT.cs new file mode 100644 index 0000000..13c0333 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_IDL_CS_CONVERT.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _IDL_CS_CONVERT +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_IItemIdentity.cs b/analysis/decompiled/aaMxDataConsumer/_IItemIdentity.cs new file mode 100644 index 0000000..bc014bc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_IItemIdentity.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _IItemIdentity +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_IMAGEHLP_SYMBOL_TYPE_INFO.cs b/analysis/decompiled/aaMxDataConsumer/_IMAGEHLP_SYMBOL_TYPE_INFO.cs new file mode 100644 index 0000000..e0bdf6d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_IMAGEHLP_SYMBOL_TYPE_INFO.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _IMAGEHLP_SYMBOL_TYPE_INFO +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_IMAGE_DOS_HEADER.cs b/analysis/decompiled/aaMxDataConsumer/_IMAGE_DOS_HEADER.cs new file mode 100644 index 0000000..c24d494 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_IMAGE_DOS_HEADER.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 64)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _IMAGE_DOS_HEADER +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_IMonitoredItem.cs b/analysis/decompiled/aaMxDataConsumer/_IMonitoredItem.cs new file mode 100644 index 0000000..b93e3b6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_IMonitoredItem.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _IMonitoredItem +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_IUserToken.cs b/analysis/decompiled/aaMxDataConsumer/_IUserToken.cs new file mode 100644 index 0000000..6955954 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_IUserToken.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _IUserToken +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ItemDataUpdate.cs b/analysis/decompiled/aaMxDataConsumer/_ItemDataUpdate.cs new file mode 100644 index 0000000..f1d97f8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ItemDataUpdate.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 48)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _ItemDataUpdate +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_JOBOBJECTINFOCLASS.cs b/analysis/decompiled/aaMxDataConsumer/_JOBOBJECTINFOCLASS.cs new file mode 100644 index 0000000..cc3429e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_JOBOBJECTINFOCLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _JOBOBJECTINFOCLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_KDHELP.cs b/analysis/decompiled/aaMxDataConsumer/_KDHELP.cs new file mode 100644 index 0000000..03a48be --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_KDHELP.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 64)] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _KDHELP +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_KDHELP64.cs b/analysis/decompiled/aaMxDataConsumer/_KDHELP64.cs new file mode 100644 index 0000000..69f1286 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_KDHELP64.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 112)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _KDHELP64 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_KTMOBJECT_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_KTMOBJECT_TYPE.cs new file mode 100644 index 0000000..a2d38af --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_KTMOBJECT_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _KTMOBJECT_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_LARGE_INTEGER.cs b/analysis/decompiled/aaMxDataConsumer/_LARGE_INTEGER.cs new file mode 100644 index 0000000..52c0406 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_LARGE_INTEGER.cs @@ -0,0 +1,68 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Explicit, Size = 8)] +[MiscellaneousBits(66)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _LARGE_INTEGER +{ + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_00242_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + public struct _003Cunnamed_002Dtype_002Du_003E + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_00242_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240x4ac3ab1c_00242_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240x6ea962a9_00242_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_00242_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xa8d5f844_00242_0024 + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/_LOGICAL_PROCESSOR_RELATIONSHIP.cs b/analysis/decompiled/aaMxDataConsumer/_LOGICAL_PROCESSOR_RELATIONSHIP.cs new file mode 100644 index 0000000..5bbbc1e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_LOGICAL_PROCESSOR_RELATIONSHIP.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _LOGICAL_PROCESSOR_RELATIONSHIP +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_LUID.cs b/analysis/decompiled/aaMxDataConsumer/_LUID.cs new file mode 100644 index 0000000..0f61023 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_LUID.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _LUID +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MANDATORY_LEVEL.cs b/analysis/decompiled/aaMxDataConsumer/_MANDATORY_LEVEL.cs new file mode 100644 index 0000000..cd56012 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MANDATORY_LEVEL.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _MANDATORY_LEVEL +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MEDIA_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_MEDIA_TYPE.cs new file mode 100644 index 0000000..4aca3fd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MEDIA_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _MEDIA_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MEMORY_RESOURCE_NOTIFICATION_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_MEMORY_RESOURCE_NOTIFICATION_TYPE.cs new file mode 100644 index 0000000..6193371 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MEMORY_RESOURCE_NOTIFICATION_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _MEMORY_RESOURCE_NOTIFICATION_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_CALLBACK_INFORMATION.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_CALLBACK_INFORMATION.cs new file mode 100644 index 0000000..547c8c8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_CALLBACK_INFORMATION.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _MINIDUMP_CALLBACK_INFORMATION +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_CALLBACK_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_CALLBACK_TYPE.cs new file mode 100644 index 0000000..86dbc03 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_CALLBACK_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _MINIDUMP_CALLBACK_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_EXCEPTION_INFORMATION.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_EXCEPTION_INFORMATION.cs new file mode 100644 index 0000000..0236092 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_EXCEPTION_INFORMATION.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _MINIDUMP_EXCEPTION_INFORMATION +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE.cs new file mode 100644 index 0000000..f31e64a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_SECONDARY_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_SECONDARY_FLAGS.cs new file mode 100644 index 0000000..01b2da8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_SECONDARY_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _MINIDUMP_SECONDARY_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_STREAM_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_STREAM_TYPE.cs new file mode 100644 index 0000000..113fa0b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_STREAM_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _MINIDUMP_STREAM_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_TYPE.cs new file mode 100644 index 0000000..c81ce97 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _MINIDUMP_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_USER_STREAM_INFORMATION.cs b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_USER_STREAM_INFORMATION.cs new file mode 100644 index 0000000..f177b44 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MINIDUMP_USER_STREAM_INFORMATION.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _MINIDUMP_USER_STREAM_INFORMATION +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MODULE_WRITE_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/_MODULE_WRITE_FLAGS.cs new file mode 100644 index 0000000..2ce1b48 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MODULE_WRITE_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _MODULE_WRITE_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_MONITOR_DISPLAY_STATE.cs b/analysis/decompiled/aaMxDataConsumer/_MONITOR_DISPLAY_STATE.cs new file mode 100644 index 0000000..5da7e25 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_MONITOR_DISPLAY_STATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _MONITOR_DISPLAY_STATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_PARTITION_STYLE.cs b/analysis/decompiled/aaMxDataConsumer/_PARTITION_STYLE.cs new file mode 100644 index 0000000..a7e3520 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_PARTITION_STYLE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _PARTITION_STYLE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_POWER_REQUEST_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_POWER_REQUEST_TYPE.cs new file mode 100644 index 0000000..617e206 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_POWER_REQUEST_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _POWER_REQUEST_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_PROCESSOR_CACHE_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_PROCESSOR_CACHE_TYPE.cs new file mode 100644 index 0000000..c70a943 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_PROCESSOR_CACHE_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _PROCESSOR_CACHE_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_RESOURCEMANAGER_INFORMATION_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_RESOURCEMANAGER_INFORMATION_CLASS.cs new file mode 100644 index 0000000..fe80dc1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_RESOURCEMANAGER_INFORMATION_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _RESOURCEMANAGER_INFORMATION_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_RPC_ASYNC_EVENT.cs b/analysis/decompiled/aaMxDataConsumer/_RPC_ASYNC_EVENT.cs new file mode 100644 index 0000000..f8bac02 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_RPC_ASYNC_EVENT.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _RPC_ASYNC_EVENT +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_RPC_HTTP_REDIRECTOR_STAGE.cs b/analysis/decompiled/aaMxDataConsumer/_RPC_HTTP_REDIRECTOR_STAGE.cs new file mode 100644 index 0000000..0c8c0aa --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_RPC_HTTP_REDIRECTOR_STAGE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _RPC_HTTP_REDIRECTOR_STAGE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_RPC_NOTIFICATION_TYPES.cs b/analysis/decompiled/aaMxDataConsumer/_RPC_NOTIFICATION_TYPES.cs new file mode 100644 index 0000000..ad610e8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_RPC_NOTIFICATION_TYPES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _RPC_NOTIFICATION_TYPES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_RTL_CRITICAL_SECTION.cs b/analysis/decompiled/aaMxDataConsumer/_RTL_CRITICAL_SECTION.cs new file mode 100644 index 0000000..52ed736 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_RTL_CRITICAL_SECTION.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _RTL_CRITICAL_SECTION +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_RTL_UMS_SCHEDULER_REASON.cs b/analysis/decompiled/aaMxDataConsumer/_RTL_UMS_SCHEDULER_REASON.cs new file mode 100644 index 0000000..03a5f58 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_RTL_UMS_SCHEDULER_REASON.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _RTL_UMS_SCHEDULER_REASON +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_RTL_UMS_THREAD_INFO_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_RTL_UMS_THREAD_INFO_CLASS.cs new file mode 100644 index 0000000..48e4a28 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_RTL_UMS_THREAD_INFO_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _RTL_UMS_THREAD_INFO_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SC_ACTION_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_SC_ACTION_TYPE.cs new file mode 100644 index 0000000..2637d74 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SC_ACTION_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _SC_ACTION_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SC_ENUM_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_SC_ENUM_TYPE.cs new file mode 100644 index 0000000..a2f215d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SC_ENUM_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _SC_ENUM_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SC_STATUS_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_SC_STATUS_TYPE.cs new file mode 100644 index 0000000..6f3e598 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SC_STATUS_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _SC_STATUS_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SECURITY_ATTRIBUTES.cs b/analysis/decompiled/aaMxDataConsumer/_SECURITY_ATTRIBUTES.cs new file mode 100644 index 0000000..fd26934 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SECURITY_ATTRIBUTES.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _SECURITY_ATTRIBUTES +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SECURITY_DESCRIPTOR.cs b/analysis/decompiled/aaMxDataConsumer/_SECURITY_DESCRIPTOR.cs new file mode 100644 index 0000000..e417b9e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SECURITY_DESCRIPTOR.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _SECURITY_DESCRIPTOR +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SECURITY_IMPERSONATION_LEVEL.cs b/analysis/decompiled/aaMxDataConsumer/_SECURITY_IMPERSONATION_LEVEL.cs new file mode 100644 index 0000000..84c145a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SECURITY_IMPERSONATION_LEVEL.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _SECURITY_IMPERSONATION_LEVEL +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SID_NAME_USE.cs b/analysis/decompiled/aaMxDataConsumer/_SID_NAME_USE.cs new file mode 100644 index 0000000..8a47dbb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SID_NAME_USE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _SID_NAME_USE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_ASSOCIATION_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_ASSOCIATION_TYPE.cs new file mode 100644 index 0000000..b86ffa8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_ASSOCIATION_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _STORAGE_ASSOCIATION_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_BUS_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_BUS_TYPE.cs new file mode 100644 index 0000000..6384b04 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_BUS_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _STORAGE_BUS_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_IDENTIFIER_CODE_SET.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_IDENTIFIER_CODE_SET.cs new file mode 100644 index 0000000..7686dfb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_IDENTIFIER_CODE_SET.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _STORAGE_IDENTIFIER_CODE_SET +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_IDENTIFIER_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_IDENTIFIER_TYPE.cs new file mode 100644 index 0000000..9eb85e4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_IDENTIFIER_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _STORAGE_IDENTIFIER_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_ID_NAA_FORMAT.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_ID_NAA_FORMAT.cs new file mode 100644 index 0000000..5b732b1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_ID_NAA_FORMAT.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _STORAGE_ID_NAA_FORMAT +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_MEDIA_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_MEDIA_TYPE.cs new file mode 100644 index 0000000..e58f85d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_MEDIA_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _STORAGE_MEDIA_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_PORT_CODE_SET.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_PORT_CODE_SET.cs new file mode 100644 index 0000000..7e27311 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_PORT_CODE_SET.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _STORAGE_PORT_CODE_SET +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_PROPERTY_ID.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_PROPERTY_ID.cs new file mode 100644 index 0000000..f074715 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_PROPERTY_ID.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _STORAGE_PROPERTY_ID +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STORAGE_QUERY_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_STORAGE_QUERY_TYPE.cs new file mode 100644 index 0000000..1209b0a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STORAGE_QUERY_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _STORAGE_QUERY_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_STREAM_INFO_LEVELS.cs b/analysis/decompiled/aaMxDataConsumer/_STREAM_INFO_LEVELS.cs new file mode 100644 index 0000000..c32501b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_STREAM_INFO_LEVELS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _STREAM_INFO_LEVELS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SYSTEMTIME.cs b/analysis/decompiled/aaMxDataConsumer/_SYSTEMTIME.cs new file mode 100644 index 0000000..976e8f5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SYSTEMTIME.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _SYSTEMTIME +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SYSTEM_AUDIT_ACE.cs b/analysis/decompiled/aaMxDataConsumer/_SYSTEM_AUDIT_ACE.cs new file mode 100644 index 0000000..4155a68 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SYSTEM_AUDIT_ACE.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _SYSTEM_AUDIT_ACE +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_SYSTEM_POWER_STATE.cs b/analysis/decompiled/aaMxDataConsumer/_SYSTEM_POWER_STATE.cs new file mode 100644 index 0000000..8f95cdc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_SYSTEM_POWER_STATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _SYSTEM_POWER_STATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TAPE_DRIVE_PROBLEM_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_TAPE_DRIVE_PROBLEM_TYPE.cs new file mode 100644 index 0000000..ee8035e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TAPE_DRIVE_PROBLEM_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _TAPE_DRIVE_PROBLEM_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_THDTYPE.cs b/analysis/decompiled/aaMxDataConsumer/_THDTYPE.cs new file mode 100644 index 0000000..44106ca --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_THDTYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _THDTYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_THREAD_WRITE_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/_THREAD_WRITE_FLAGS.cs new file mode 100644 index 0000000..83eaf2c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_THREAD_WRITE_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _THREAD_WRITE_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TOKEN_ELEVATION_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_TOKEN_ELEVATION_TYPE.cs new file mode 100644 index 0000000..fdb70c7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TOKEN_ELEVATION_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _TOKEN_ELEVATION_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TOKEN_INFORMATION_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_TOKEN_INFORMATION_CLASS.cs new file mode 100644 index 0000000..e977d30 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TOKEN_INFORMATION_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum _TOKEN_INFORMATION_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TOKEN_PRIMARY_GROUP.cs b/analysis/decompiled/aaMxDataConsumer/_TOKEN_PRIMARY_GROUP.cs new file mode 100644 index 0000000..5ae5178 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TOKEN_PRIMARY_GROUP.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _TOKEN_PRIMARY_GROUP +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TOKEN_PRIVILEGES.cs b/analysis/decompiled/aaMxDataConsumer/_TOKEN_PRIVILEGES.cs new file mode 100644 index 0000000..fa1bbd9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TOKEN_PRIVILEGES.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _TOKEN_PRIVILEGES +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TOKEN_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_TOKEN_TYPE.cs new file mode 100644 index 0000000..aa18a78 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TOKEN_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _TOKEN_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TOKEN_USER.cs b/analysis/decompiled/aaMxDataConsumer/_TOKEN_USER.cs new file mode 100644 index 0000000..3751d60 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TOKEN_USER.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _TOKEN_USER +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TP_CALLBACK_ENVIRON_V1.cs b/analysis/decompiled/aaMxDataConsumer/_TP_CALLBACK_ENVIRON_V1.cs new file mode 100644 index 0000000..0996c99 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TP_CALLBACK_ENVIRON_V1.cs @@ -0,0 +1,28 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _TP_CALLBACK_ENVIRON_V1 +{ + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [CLSCompliant(false)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + public struct _003Cunnamed_002Dtype_002Du_003E + { + [StructLayout(LayoutKind.Sequential, Size = 4)] + [NativeCppClass] + [CLSCompliant(false)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + public struct _003Cunnamed_002Dtype_002Ds_003E + { + } + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TP_CALLBACK_PRIORITY.cs b/analysis/decompiled/aaMxDataConsumer/_TP_CALLBACK_PRIORITY.cs new file mode 100644 index 0000000..b0692e8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TP_CALLBACK_PRIORITY.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _TP_CALLBACK_PRIORITY +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TRANSACTIONMANAGER_INFORMATION_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_TRANSACTIONMANAGER_INFORMATION_CLASS.cs new file mode 100644 index 0000000..4909677 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TRANSACTIONMANAGER_INFORMATION_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _TRANSACTIONMANAGER_INFORMATION_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_INFORMATION_CLASS.cs b/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_INFORMATION_CLASS.cs new file mode 100644 index 0000000..b37ed3d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_INFORMATION_CLASS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _TRANSACTION_INFORMATION_CLASS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_OUTCOME.cs b/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_OUTCOME.cs new file mode 100644 index 0000000..510d32e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_OUTCOME.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _TRANSACTION_OUTCOME +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_STATE.cs b/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_STATE.cs new file mode 100644 index 0000000..742c973 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_TRANSACTION_STATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _TRANSACTION_STATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ULARGE_INTEGER.cs b/analysis/decompiled/aaMxDataConsumer/_ULARGE_INTEGER.cs new file mode 100644 index 0000000..c5385d0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ULARGE_INTEGER.cs @@ -0,0 +1,68 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Explicit, Size = 8)] +[NativeCppClass] +[MiscellaneousBits(66)] +[DebugInfoInPDB] +internal struct _ULARGE_INTEGER +{ + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xda2128e9_00244_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [CLSCompliant(false)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + public struct _003Cunnamed_002Dtype_002Du_003E + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xcc57d9b2_00244_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x4ac3ab1c_00244_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x6ea962a9_00244_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x56a9090b_00244_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xa8d5f844_00244_0024 + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/_URLZONEREG.cs b/analysis/decompiled/aaMxDataConsumer/_URLZONEREG.cs new file mode 100644 index 0000000..f8d3026 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_URLZONEREG.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _URLZONEREG +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_USER_MARSHAL_CB_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_USER_MARSHAL_CB_TYPE.cs new file mode 100644 index 0000000..0dd6324 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_USER_MARSHAL_CB_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _USER_MARSHAL_CB_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WIN32_FILE_ATTRIBUTE_DATA.cs b/analysis/decompiled/aaMxDataConsumer/_WIN32_FILE_ATTRIBUTE_DATA.cs new file mode 100644 index 0000000..8e2b228 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WIN32_FILE_ATTRIBUTE_DATA.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _WIN32_FILE_ATTRIBUTE_DATA +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WIN32_FIND_DATAW.cs b/analysis/decompiled/aaMxDataConsumer/_WIN32_FIND_DATAW.cs new file mode 100644 index 0000000..6df35ce --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WIN32_FIND_DATAW.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 592)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _WIN32_FIND_DATAW +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_CHANGE.cs b/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_CHANGE.cs new file mode 100644 index 0000000..291c957 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_CHANGE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _WRITE_CACHE_CHANGE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_ENABLE.cs b/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_ENABLE.cs new file mode 100644 index 0000000..854f72f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_ENABLE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _WRITE_CACHE_ENABLE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_TYPE.cs new file mode 100644 index 0000000..dba4427 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WRITE_CACHE_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _WRITE_CACHE_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WRITE_THROUGH.cs b/analysis/decompiled/aaMxDataConsumer/_WRITE_THROUGH.cs new file mode 100644 index 0000000..90ccaed --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WRITE_THROUGH.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _WRITE_THROUGH +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WSAESETSERVICEOP.cs b/analysis/decompiled/aaMxDataConsumer/_WSAESETSERVICEOP.cs new file mode 100644 index 0000000..a5f2c98 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WSAESETSERVICEOP.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _WSAESETSERVICEOP +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WSAEcomparator.cs b/analysis/decompiled/aaMxDataConsumer/_WSAEcomparator.cs new file mode 100644 index 0000000..bf3dc82 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WSAEcomparator.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum _WSAEcomparator +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_WriteRequestWithReasonDesc.cs b/analysis/decompiled/aaMxDataConsumer/_WriteRequestWithReasonDesc.cs new file mode 100644 index 0000000..67c03c1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_WriteRequestWithReasonDesc.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 44)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _WriteRequestWithReasonDesc +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IAuthenticateEx_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IAuthenticateEx_0001.cs new file mode 100644 index 0000000..020845b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IAuthenticateEx_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL_IAuthenticateEx_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallbackEx_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallbackEx_0001.cs new file mode 100644 index 0000000..c990d27 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallbackEx_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL_IBindStatusCallbackEx_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0001.cs new file mode 100644 index 0000000..7e66ce3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL_IBindStatusCallback_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0002.cs new file mode 100644 index 0000000..8eedf0a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum __MIDL_IBindStatusCallback_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0003.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0003.cs new file mode 100644 index 0000000..dd2a0bd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0003.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL_IBindStatusCallback_0003 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0004.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0004.cs new file mode 100644 index 0000000..0ff64ff --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0004.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum __MIDL_IBindStatusCallback_0004 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0005.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0005.cs new file mode 100644 index 0000000..549408d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0005.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum __MIDL_IBindStatusCallback_0005 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0006.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0006.cs new file mode 100644 index 0000000..24bdf29 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IBindStatusCallback_0006.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum __MIDL_IBindStatusCallback_0006 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_ICodeInstall_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_ICodeInstall_0001.cs new file mode 100644 index 0000000..6c461f8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_ICodeInstall_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum __MIDL_ICodeInstall_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0001.cs new file mode 100644 index 0000000..100af61 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum __MIDL_IInternetSecurityManager_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0002.cs new file mode 100644 index 0000000..b5c31cd --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL_IInternetSecurityManager_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0003.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0003.cs new file mode 100644 index 0000000..db28e15 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetSecurityManager_0003.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL_IInternetSecurityManager_0003 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetZoneManager_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetZoneManager_0001.cs new file mode 100644 index 0000000..658484f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetZoneManager_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL_IInternetZoneManager_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetZoneManager_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetZoneManager_0002.cs new file mode 100644 index 0000000..d2824f9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IInternetZoneManager_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum __MIDL_IInternetZoneManager_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL_IMonikerProp_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL_IMonikerProp_0001.cs new file mode 100644 index 0000000..41bb6f6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL_IMonikerProp_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum __MIDL_IMonikerProp_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_gchost_0000_0000_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_gchost_0000_0000_0001.cs new file mode 100644 index 0000000..7e0bc3f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_gchost_0000_0000_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_gchost_0000_0000_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_gchost_0000_0000_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_gchost_0000_0000_0002.cs new file mode 100644 index 0000000..2720829 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_gchost_0000_0000_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_gchost_0000_0000_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0001.cs new file mode 100644 index 0000000..96683bc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_mscoree_0000_0000_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0002.cs new file mode 100644 index 0000000..9960480 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0000_0000_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0003.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0003.cs new file mode 100644 index 0000000..e93725f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0003.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum __MIDL___MIDL_itf_mscoree_0000_0000_0003 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0004.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0004.cs new file mode 100644 index 0000000..4646c80 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0004.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_mscoree_0000_0000_0004 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0005.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0005.cs new file mode 100644 index 0000000..90a5f21 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0000_0005.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_mscoree_0000_0000_0005 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0001.cs new file mode 100644 index 0000000..7a4953a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0000_0009_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0002.cs new file mode 100644 index 0000000..82f6d1d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_mscoree_0000_0009_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0003.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0003.cs new file mode 100644 index 0000000..ea7a3b9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0009_0003.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_mscoree_0000_0009_0003 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0011_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0011_0001.cs new file mode 100644 index 0000000..353563a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0011_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0000_0011_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0020_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0020_0001.cs new file mode 100644 index 0000000..67b5076 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0020_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0000_0020_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0021_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0021_0001.cs new file mode 100644 index 0000000..152828c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0021_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum __MIDL___MIDL_itf_mscoree_0000_0021_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0021_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0021_0002.cs new file mode 100644 index 0000000..120f0d2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0021_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0000_0021_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0001.cs new file mode 100644 index 0000000..ef42de8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0000_0028_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0002.cs new file mode 100644 index 0000000..0ecb5e2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_mscoree_0000_0028_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0003.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0003.cs new file mode 100644 index 0000000..3bf6b5d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0003.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum __MIDL___MIDL_itf_mscoree_0000_0028_0003 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0004.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0004.cs new file mode 100644 index 0000000..127eaf9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0028_0004.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0000_0028_0004 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0030_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0030_0001.cs new file mode 100644 index 0000000..3af821c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0030_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum __MIDL___MIDL_itf_mscoree_0000_0030_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0030_0002.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0030_0002.cs new file mode 100644 index 0000000..ca00531 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0030_0002.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum __MIDL___MIDL_itf_mscoree_0000_0030_0002 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0039_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0039_0001.cs new file mode 100644 index 0000000..c0af78b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0039_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum __MIDL___MIDL_itf_mscoree_0000_0039_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0044_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0044_0001.cs new file mode 100644 index 0000000..658865a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0044_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum __MIDL___MIDL_itf_mscoree_0000_0044_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0045_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0045_0001.cs new file mode 100644 index 0000000..3db4f49 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0000_0045_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_mscoree_0000_0045_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0001_0014_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0001_0014_0001.cs new file mode 100644 index 0000000..c6ced06 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_mscoree_0001_0014_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum __MIDL___MIDL_itf_mscoree_0001_0014_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_objidl_0000_0046_0001.cs b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_objidl_0000_0046_0001.cs new file mode 100644 index 0000000..b2dad3e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__MIDL___MIDL_itf_objidl_0000_0046_0001.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum __MIDL___MIDL_itf_objidl_0000_0046_0001 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__enative_startup_state.cs b/analysis/decompiled/aaMxDataConsumer/__enative_startup_state.cs new file mode 100644 index 0000000..2a63925 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__enative_startup_state.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum __enative_startup_state +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/__m128.cs b/analysis/decompiled/aaMxDataConsumer/__m128.cs new file mode 100644 index 0000000..e138a81 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__m128.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Explicit, Size = 16)] +[MiscellaneousBits(66)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct __m128 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/__m64.cs b/analysis/decompiled/aaMxDataConsumer/__m64.cs new file mode 100644 index 0000000..5618983 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__m64.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Explicit, Size = 8)] +[UnsafeValueType] +[MiscellaneousBits(66)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct __m64 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/__s_GUID.cs b/analysis/decompiled/aaMxDataConsumer/__s_GUID.cs new file mode 100644 index 0000000..cda7af6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__s_GUID.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +[UnsafeValueType] +internal struct __s_GUID +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/__type_info_node.cs b/analysis/decompiled/aaMxDataConsumer/__type_info_node.cs new file mode 100644 index 0000000..8ab1245 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/__type_info_node.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct __type_info_node +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_bstr_t.cs b/analysis/decompiled/aaMxDataConsumer/_bstr_t.cs new file mode 100644 index 0000000..7f429b8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_bstr_t.cs @@ -0,0 +1,18 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct _bstr_t +{ + [StructLayout(LayoutKind.Sequential, Size = 12)] + [DebugInfoInPDB] + [MiscellaneousBits(64)] + [NativeCppClass] + internal struct Data_t + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/_com_error.cs b/analysis/decompiled/aaMxDataConsumer/_com_error.cs new file mode 100644 index 0000000..65325d6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_com_error.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct _com_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_devicemodeA.cs b/analysis/decompiled/aaMxDataConsumer/_devicemodeA.cs new file mode 100644 index 0000000..4963cb6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_devicemodeA.cs @@ -0,0 +1,149 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 156)] +[UnsafeValueType] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _devicemodeA +{ + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024108_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xda2128e9_0024109_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024110_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024108_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024109_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024110_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024108_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024109_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024110_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024108_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x6ea962a9_0024109_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024110_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024108_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024109_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024110_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024108_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024109_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024110_0024 + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/_devicemodeW.cs b/analysis/decompiled/aaMxDataConsumer/_devicemodeW.cs new file mode 100644 index 0000000..db9b8df --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_devicemodeW.cs @@ -0,0 +1,149 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 220)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _devicemodeW +{ + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xda2128e9_0024111_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xda2128e9_0024112_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024113_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024111_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024112_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024113_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024111_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024112_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024113_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024111_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x6ea962a9_0024112_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024113_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024111_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024112_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024113_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xa8d5f844_0024111_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xa8d5f844_0024112_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024113_0024 + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/_hostBiningPolicyModifyFlags.cs b/analysis/decompiled/aaMxDataConsumer/_hostBiningPolicyModifyFlags.cs new file mode 100644 index 0000000..f03ab36 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_hostBiningPolicyModifyFlags.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _hostBiningPolicyModifyFlags +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_iobuf.cs b/analysis/decompiled/aaMxDataConsumer/_iobuf.cs new file mode 100644 index 0000000..c7483a6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_iobuf.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _iobuf +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_ldiv_t.cs b/analysis/decompiled/aaMxDataConsumer/_ldiv_t.cs new file mode 100644 index 0000000..f36581e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_ldiv_t.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _ldiv_t +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_lldiv_t.cs b/analysis/decompiled/aaMxDataConsumer/_lldiv_t.cs new file mode 100644 index 0000000..c72d067 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_lldiv_t.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +[NativeCppClass] +internal struct _lldiv_t +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_s__CatchableType.cs b/analysis/decompiled/aaMxDataConsumer/_s__CatchableType.cs new file mode 100644 index 0000000..9d89ac6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_s__CatchableType.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _s__CatchableType +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_s__RTTIBaseClassDescriptor2.cs b/analysis/decompiled/aaMxDataConsumer/_s__RTTIBaseClassDescriptor2.cs new file mode 100644 index 0000000..0945e3e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_s__RTTIBaseClassDescriptor2.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[NativeCppClass] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +internal struct _s__RTTIBaseClassDescriptor2 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_s__RTTIClassHierarchyDescriptor.cs b/analysis/decompiled/aaMxDataConsumer/_s__RTTIClassHierarchyDescriptor.cs new file mode 100644 index 0000000..ae713f5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_s__RTTIClassHierarchyDescriptor.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _s__RTTIClassHierarchyDescriptor +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_s__RTTICompleteObjectLocator.cs b/analysis/decompiled/aaMxDataConsumer/_s__RTTICompleteObjectLocator.cs new file mode 100644 index 0000000..7acc22a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_s__RTTICompleteObjectLocator.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _s__RTTICompleteObjectLocator +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_s__ThrowInfo.cs b/analysis/decompiled/aaMxDataConsumer/_s__ThrowInfo.cs new file mode 100644 index 0000000..2404e2e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_s__ThrowInfo.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _s__ThrowInfo +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagADDRESS.cs b/analysis/decompiled/aaMxDataConsumer/_tagADDRESS.cs new file mode 100644 index 0000000..5f5225f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagADDRESS.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +[MiscellaneousBits(65)] +internal struct _tagADDRESS +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagADDRESS64.cs b/analysis/decompiled/aaMxDataConsumer/_tagADDRESS64.cs new file mode 100644 index 0000000..65f3459 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagADDRESS64.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +[UnsafeValueType] +internal struct _tagADDRESS64 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagINTERNETFEATURELIST.cs b/analysis/decompiled/aaMxDataConsumer/_tagINTERNETFEATURELIST.cs new file mode 100644 index 0000000..d5e6574 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagINTERNETFEATURELIST.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum _tagINTERNETFEATURELIST +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagOIBDG_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/_tagOIBDG_FLAGS.cs new file mode 100644 index 0000000..c48d52e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagOIBDG_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _tagOIBDG_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagPARSEACTION.cs b/analysis/decompiled/aaMxDataConsumer/_tagPARSEACTION.cs new file mode 100644 index 0000000..03a9476 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagPARSEACTION.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _tagPARSEACTION +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagPI_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/_tagPI_FLAGS.cs new file mode 100644 index 0000000..036e014 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagPI_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _tagPI_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagPSUACTION.cs b/analysis/decompiled/aaMxDataConsumer/_tagPSUACTION.cs new file mode 100644 index 0000000..21d3fbc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagPSUACTION.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum _tagPSUACTION +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_tagQUERYOPTION.cs b/analysis/decompiled/aaMxDataConsumer/_tagQUERYOPTION.cs new file mode 100644 index 0000000..2399c86 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_tagQUERYOPTION.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum _tagQUERYOPTION +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/_variant_t.cs b/analysis/decompiled/aaMxDataConsumer/_variant_t.cs new file mode 100644 index 0000000..8cedd7f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/_variant_t.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _variant_t +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/aaMxDataConsumer.csproj b/analysis/decompiled/aaMxDataConsumer/aaMxDataConsumer.csproj new file mode 100644 index 0000000..2b53be4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/aaMxDataConsumer.csproj @@ -0,0 +1,32 @@ + + + aaMxDataConsumer + False + net40 + x86 + + + 14.0 + True + False + + + app.manifest + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaMxDataConsumer/app.manifest b/analysis/decompiled/aaMxDataConsumer/app.manifest new file mode 100644 index 0000000..c1cb483 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/app.manifest @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaMxDataConsumer/com_eh/ComErrorInitializer.cs b/analysis/decompiled/aaMxDataConsumer/com_eh/ComErrorInitializer.cs new file mode 100644 index 0000000..8c3350d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/com_eh/ComErrorInitializer.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace com_eh; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct ComErrorInitializer +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/com_eh/ComErrorInitializerNoTranslation.cs b/analysis/decompiled/aaMxDataConsumer/com_eh/ComErrorInitializerNoTranslation.cs new file mode 100644 index 0000000..721aef5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/com_eh/ComErrorInitializerNoTranslation.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace com_eh; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct ComErrorInitializerNoTranslation +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/com_eh/EWhen.cs b/analysis/decompiled/aaMxDataConsumer/com_eh/EWhen.cs new file mode 100644 index 0000000..02660d0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/com_eh/EWhen.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace com_eh; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum EWhen +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/com_eh/SuccessException.cs b/analysis/decompiled/aaMxDataConsumer/com_eh/SuccessException.cs new file mode 100644 index 0000000..6848582 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/com_eh/SuccessException.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace com_eh; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct SuccessException +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/com_eh/com_error_dbg.cs b/analysis/decompiled/aaMxDataConsumer/com_eh/com_error_dbg.cs new file mode 100644 index 0000000..8829432 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/com_eh/com_error_dbg.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace com_eh; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct com_error_dbg +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/gcroot-System.cs b/analysis/decompiled/aaMxDataConsumer/gcroot-System.cs new file mode 100644 index 0000000..c6ba168 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/gcroot-System.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct gcroot_003CSystem_003A_003AString_0020_005E_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/lconv.cs b/analysis/decompiled/aaMxDataConsumer/lconv.cs new file mode 100644 index 0000000..381dc07 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/lconv.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 80)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct lconv +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/localeinfo_struct.cs b/analysis/decompiled/aaMxDataConsumer/localeinfo_struct.cs new file mode 100644 index 0000000..6151b2e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/localeinfo_struct.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct localeinfo_struct +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/msclr/_detail_class.cs b/analysis/decompiled/aaMxDataConsumer/msclr/_detail_class.cs new file mode 100644 index 0000000..ac00141 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/msclr/_detail_class.cs @@ -0,0 +1,17 @@ +using System.Runtime.InteropServices; + +namespace msclr; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +internal struct _detail_class +{ + [StructLayout(LayoutKind.Sequential, Size = 1)] + public struct dummy_struct + { + public static readonly string dummy_string = ""; + } + + public static string _safe_true = dummy_struct.dummy_string; + + public static string _safe_false = null; +} diff --git a/analysis/decompiled/aaMxDataConsumer/msclr/lock.cs b/analysis/decompiled/aaMxDataConsumer/msclr/lock.cs new file mode 100644 index 0000000..aab4df7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/msclr/lock.cs @@ -0,0 +1,140 @@ +using System; +using System.Runtime.InteropServices; +using System.Threading; + +namespace msclr; + +internal class @lock : IDisposable +{ + [StructLayout(LayoutKind.Sequential, Size = 1)] + private struct is_not_003CSystem_003A_003AObject_002CSystem_003A_003AThreading_003A_003AReaderWriterLock_003E + { + } + + private object m_object; + + private bool m_locked; + + public @lock(object _object) + { + m_object = _object; + m_locked = false; + base._002Ector(); + acquire(-1); + } + + private void _007Elock() + { + if (m_locked) + { + Monitor.Exit(m_object); + m_locked = false; + } + } + + [return: MarshalAs(UnmanagedType.U1)] + public bool is_locked() + { + return m_locked; + } + + public implicit operator string() + { + return (!m_locked) ? _detail_class._safe_false : _detail_class._safe_true; + } + + public void acquire(TimeSpan _timeout) + { + if (!m_locked) + { + Monitor.TryEnter(m_object, _timeout, ref m_locked); + if (!m_locked) + { + throw Marshal.GetExceptionForHR(-2147024638); + } + } + } + + public void acquire() + { + if (!m_locked) + { + Monitor.TryEnter(m_object, -1, ref m_locked); + if (!m_locked) + { + throw Marshal.GetExceptionForHR(-2147024638); + } + } + } + + public void acquire(int _timeout) + { + if (!m_locked) + { + Monitor.TryEnter(m_object, _timeout, ref m_locked); + if (!m_locked) + { + throw Marshal.GetExceptionForHR(-2147024638); + } + } + } + + [return: MarshalAs(UnmanagedType.U1)] + public bool try_acquire(TimeSpan _timeout) + { + if (!m_locked) + { + Monitor.TryEnter(m_object, _timeout, ref m_locked); + if (!m_locked) + { + return false; + } + } + return true; + } + + [return: MarshalAs(UnmanagedType.U1)] + public bool try_acquire(int _timeout) + { + if (!m_locked) + { + Monitor.TryEnter(m_object, _timeout, ref m_locked); + if (!m_locked) + { + return false; + } + } + return true; + } + + public void release() + { + if (m_locked) + { + Monitor.Exit(m_object); + m_locked = false; + } + } + + protected virtual void Dispose([MarshalAs(UnmanagedType.U1)] bool P_0) + { + if (P_0) + { + if (m_locked) + { + Monitor.Exit(m_object); + m_locked = false; + } + } + else + { + base.Finalize(); + } + } + + public virtual sealed void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/msclr/lock_when.cs b/analysis/decompiled/aaMxDataConsumer/msclr/lock_when.cs new file mode 100644 index 0000000..1154c78 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/msclr/lock_when.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace msclr; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum lock_when +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/std.errc/errc.cs b/analysis/decompiled/aaMxDataConsumer/std.errc/errc.cs new file mode 100644 index 0000000..dbf2b5b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std.errc/errc.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace std.errc; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum errc +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/std.io_errc/io_errc.cs b/analysis/decompiled/aaMxDataConsumer/std.io_errc/io_errc.cs new file mode 100644 index 0000000..1e3a9e1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std.io_errc/io_errc.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace std.io_errc; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum io_errc +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/std.pointer_safety/pointer_safety.cs b/analysis/decompiled/aaMxDataConsumer/std.pointer_safety/pointer_safety.cs new file mode 100644 index 0000000..88a7bd3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std.pointer_safety/pointer_safety.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace std.pointer_safety; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum pointer_safety +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/std.tr1/_Nil.cs b/analysis/decompiled/aaMxDataConsumer/std.tr1/_Nil.cs new file mode 100644 index 0000000..ff358b3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std.tr1/_Nil.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std.tr1; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct _Nil +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std.tr1/_Ref_count_base.cs b/analysis/decompiled/aaMxDataConsumer/std.tr1/_Ref_count_base.cs new file mode 100644 index 0000000..d48cfe2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std.tr1/_Ref_count_base.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std.tr1; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal static struct _Ref_count_base +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std.tr1/bad_weak_ptr.cs b/analysis/decompiled/aaMxDataConsumer/std.tr1/bad_weak_ptr.cs new file mode 100644 index 0000000..d8be170 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std.tr1/bad_weak_ptr.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std.tr1; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct bad_weak_ptr +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Bool_struct.cs b/analysis/decompiled/aaMxDataConsumer/std/_Bool_struct.cs new file mode 100644 index 0000000..eb5a621 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Bool_struct.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _Bool_struct +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Container_base0.cs b/analysis/decompiled/aaMxDataConsumer/std/_Container_base0.cs new file mode 100644 index 0000000..797858f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Container_base0.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _Container_base0 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Container_base12.cs b/analysis/decompiled/aaMxDataConsumer/std/_Container_base12.cs new file mode 100644 index 0000000..dece6f6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Container_base12.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _Container_base12 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Container_proxy.cs b/analysis/decompiled/aaMxDataConsumer/std/_Container_proxy.cs new file mode 100644 index 0000000..db5a132 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Container_proxy.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _Container_proxy +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Exception_ptr.cs b/analysis/decompiled/aaMxDataConsumer/std/_Exception_ptr.cs new file mode 100644 index 0000000..3f2d399 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Exception_ptr.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct _Exception_ptr +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Iosb-int-.cs b/analysis/decompiled/aaMxDataConsumer/std/_Iosb-int-.cs new file mode 100644 index 0000000..d2f9d98 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Iosb-int-.cs @@ -0,0 +1,58 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _Iosb_003Cint_003E +{ + [MiscellaneousBits(64)] + [DebugInfoInPDB] + [CLSCompliant(false)] + [NativeCppClass] + public enum _Dummy_enum + { + + } + + [DebugInfoInPDB] + [CLSCompliant(false)] + [NativeCppClass] + [MiscellaneousBits(64)] + public enum _Fmtflags + { + + } + + [NativeCppClass] + [CLSCompliant(false)] + [DebugInfoInPDB] + [MiscellaneousBits(64)] + public enum _Iostate + { + + } + + [NativeCppClass] + [MiscellaneousBits(64)] + [CLSCompliant(false)] + [DebugInfoInPDB] + public enum _Openmode + { + + } + + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(64)] + [CLSCompliant(false)] + public enum _Seekdir + { + + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Iterator_base0.cs b/analysis/decompiled/aaMxDataConsumer/std/_Iterator_base0.cs new file mode 100644 index 0000000..6b1ca51 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Iterator_base0.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _Iterator_base0 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Iterator_base12.cs b/analysis/decompiled/aaMxDataConsumer/std/_Iterator_base12.cs new file mode 100644 index 0000000..608b2be --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Iterator_base12.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct _Iterator_base12 +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Locinfo.cs b/analysis/decompiled/aaMxDataConsumer/std/_Locinfo.cs new file mode 100644 index 0000000..1b139e3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Locinfo.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct _Locinfo +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Mutex.cs b/analysis/decompiled/aaMxDataConsumer/std/_Mutex.cs new file mode 100644 index 0000000..5529851 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Mutex.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct _Mutex +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Nonscalar_ptr_iterator_tag.cs b/analysis/decompiled/aaMxDataConsumer/std/_Nonscalar_ptr_iterator_tag.cs new file mode 100644 index 0000000..05621bc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Nonscalar_ptr_iterator_tag.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct _Nonscalar_ptr_iterator_tag +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Scalar_ptr_iterator_tag.cs b/analysis/decompiled/aaMxDataConsumer/std/_Scalar_ptr_iterator_tag.cs new file mode 100644 index 0000000..5ec6ec7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Scalar_ptr_iterator_tag.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct _Scalar_ptr_iterator_tag +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_String_const_iterator-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/_String_const_iterator-char-std.cs new file mode 100644 index 0000000..bc53941 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_String_const_iterator-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct _String_const_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_String_iterator-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/_String_iterator-char-std.cs new file mode 100644 index 0000000..fc23afe --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_String_iterator-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct _String_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_String_val-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/_String_val-char-std.cs new file mode 100644 index 0000000..524acc9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_String_val-char-std.cs @@ -0,0 +1,24 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[MiscellaneousBits(64)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct _String_val_003Cchar_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E +{ + [StructLayout(LayoutKind.Explicit, Size = 16)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + [UnsafeValueType] + public struct _Bxty + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_String_val-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/_String_val-wchar_t-std.cs new file mode 100644 index 0000000..b09baa5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_String_val-wchar_t-std.cs @@ -0,0 +1,24 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct _String_val_003Cwchar_t_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E +{ + [StructLayout(LayoutKind.Explicit, Size = 16)] + [NativeCppClass] + [MiscellaneousBits(66)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [UnsafeValueType] + public struct _Bxty + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Timevec.cs b/analysis/decompiled/aaMxDataConsumer/std/_Timevec.cs new file mode 100644 index 0000000..f4ce66c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Timevec.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _Timevec +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Uninitialized.cs b/analysis/decompiled/aaMxDataConsumer/std/_Uninitialized.cs new file mode 100644 index 0000000..6bff7f8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Uninitialized.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace std; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum _Uninitialized +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Vector_const_iterator-std.cs b/analysis/decompiled/aaMxDataConsumer/std/_Vector_const_iterator-std.cs new file mode 100644 index 0000000..48bf849 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Vector_const_iterator-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _Vector_const_iterator_003Cstd_003A_003A_Vector_val_003C_WIN32_FIND_DATAW_002Cstd_003A_003Aallocator_003C_WIN32_FIND_DATAW_003E_0020_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Vector_iterator-std.cs b/analysis/decompiled/aaMxDataConsumer/std/_Vector_iterator-std.cs new file mode 100644 index 0000000..cadc410 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Vector_iterator-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct _Vector_iterator_003Cstd_003A_003A_Vector_val_003C_WIN32_FIND_DATAW_002Cstd_003A_003Aallocator_003C_WIN32_FIND_DATAW_003E_0020_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Vector_val-_ItemDataUpdate---std.cs b/analysis/decompiled/aaMxDataConsumer/std/_Vector_val-_ItemDataUpdate---std.cs new file mode 100644 index 0000000..aa101cc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Vector_val-_ItemDataUpdate---std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct _Vector_val_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Vector_val-_WIN32_FIND_DATAW-std.cs b/analysis/decompiled/aaMxDataConsumer/std/_Vector_val-_WIN32_FIND_DATAW-std.cs new file mode 100644 index 0000000..8148d19 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Vector_val-_WIN32_FIND_DATAW-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct _Vector_val_003C_WIN32_FIND_DATAW_002Cstd_003A_003Aallocator_003C_WIN32_FIND_DATAW_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/_Yarn-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/_Yarn-char-.cs new file mode 100644 index 0000000..bca5204 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/_Yarn-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct _Yarn_003Cchar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/allocator-_ItemDataUpdate---.cs b/analysis/decompiled/aaMxDataConsumer/std/allocator-_ItemDataUpdate---.cs new file mode 100644 index 0000000..6e4fe9b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/allocator-_ItemDataUpdate---.cs @@ -0,0 +1,27 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct allocator_003C_ItemDataUpdate_0020_002A_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 1)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + public struct rebind_003C_ItemDataUpdate_0020_002A_003E + { + } + + [SpecialName] + public unsafe static void _003CMarshalCopy_003E(allocator_003C_ItemDataUpdate_0020_002A_003E* P_0, allocator_003C_ItemDataUpdate_0020_002A_003E* P_1) + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/allocator-_WIN32_FIND_DATAW-.cs b/analysis/decompiled/aaMxDataConsumer/std/allocator-_WIN32_FIND_DATAW-.cs new file mode 100644 index 0000000..8a96035 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/allocator-_WIN32_FIND_DATAW-.cs @@ -0,0 +1,27 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct allocator_003C_WIN32_FIND_DATAW_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 1)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + public struct rebind_003C_WIN32_FIND_DATAW_003E + { + } + + [SpecialName] + public unsafe static void _003CMarshalCopy_003E(allocator_003C_WIN32_FIND_DATAW_003E* P_0, allocator_003C_WIN32_FIND_DATAW_003E* P_1) + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/allocator-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/allocator-char-.cs new file mode 100644 index 0000000..fd04237 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/allocator-char-.cs @@ -0,0 +1,27 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct allocator_003Cchar_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 1)] + [MiscellaneousBits(65)] + [NativeCppClass] + [CLSCompliant(false)] + [DebugInfoInPDB] + public struct rebind_003Cchar_003E + { + } + + [SpecialName] + public unsafe static void _003CMarshalCopy_003E(allocator_003Cchar_003E* P_0, allocator_003Cchar_003E* P_1) + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/allocator-void-.cs b/analysis/decompiled/aaMxDataConsumer/std/allocator-void-.cs new file mode 100644 index 0000000..d58f7d6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/allocator-void-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct allocator_003Cvoid_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/allocator-wchar_t-.cs b/analysis/decompiled/aaMxDataConsumer/std/allocator-wchar_t-.cs new file mode 100644 index 0000000..9954765 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/allocator-wchar_t-.cs @@ -0,0 +1,27 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct allocator_003Cwchar_t_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 1)] + [MiscellaneousBits(65)] + [NativeCppClass] + [CLSCompliant(false)] + [DebugInfoInPDB] + public struct rebind_003Cwchar_t_003E + { + } + + [SpecialName] + public unsafe static void _003CMarshalCopy_003E(allocator_003Cwchar_t_003E* P_0, allocator_003Cwchar_t_003E* P_1) + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/bad_alloc.cs b/analysis/decompiled/aaMxDataConsumer/std/bad_alloc.cs new file mode 100644 index 0000000..6c55f8f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/bad_alloc.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct bad_alloc +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/bad_array_new_length.cs b/analysis/decompiled/aaMxDataConsumer/std/bad_array_new_length.cs new file mode 100644 index 0000000..88906c7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/bad_array_new_length.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct bad_array_new_length +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/bad_cast.cs b/analysis/decompiled/aaMxDataConsumer/std/bad_cast.cs new file mode 100644 index 0000000..9a5ad14 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/bad_cast.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct bad_cast +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/bad_exception.cs b/analysis/decompiled/aaMxDataConsumer/std/bad_exception.cs new file mode 100644 index 0000000..1b1d139 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/bad_exception.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct bad_exception +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_ios-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_ios-char-std.cs new file mode 100644 index 0000000..53ac67f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_ios-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 72)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct basic_ios_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_ios-unsigned-short-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_ios-unsigned-short-std.cs new file mode 100644 index 0000000..d188d00 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_ios-unsigned-short-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 72)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct basic_ios_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_ios-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_ios-wchar_t-std.cs new file mode 100644 index 0000000..db27b86 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_ios-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 72)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct basic_ios_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_iostream-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_iostream-char-std.cs new file mode 100644 index 0000000..066d329 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_iostream-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 96)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct basic_iostream_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_iostream-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_iostream-wchar_t-std.cs new file mode 100644 index 0000000..2f27d65 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_iostream-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 96)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct basic_iostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_istream-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_istream-char-std.cs new file mode 100644 index 0000000..036d5b3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_istream-char-std.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 88)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct basic_istream_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 4)] + [MiscellaneousBits(64)] + [DebugInfoInPDB] + [NativeCppClass] + [CLSCompliant(false)] + public struct _Sentry_base + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(64)] + [CLSCompliant(false)] + public struct sentry + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_istream-unsigned-short-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_istream-unsigned-short-std.cs new file mode 100644 index 0000000..7dbe25f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_istream-unsigned-short-std.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 88)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct basic_istream_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 4)] + [CLSCompliant(false)] + [MiscellaneousBits(64)] + [DebugInfoInPDB] + [NativeCppClass] + public struct _Sentry_base + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(64)] + [CLSCompliant(false)] + public struct sentry + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_istream-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_istream-wchar_t-std.cs new file mode 100644 index 0000000..4bf5a1a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_istream-wchar_t-std.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 88)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct basic_istream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 4)] + [NativeCppClass] + [CLSCompliant(false)] + [DebugInfoInPDB] + [MiscellaneousBits(64)] + public struct _Sentry_base + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [CLSCompliant(false)] + [NativeCppClass] + [MiscellaneousBits(64)] + [DebugInfoInPDB] + public struct sentry + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-char-std.cs new file mode 100644 index 0000000..971bb5e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-char-std.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 80)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct basic_ostream_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 4)] + [MiscellaneousBits(64)] + [DebugInfoInPDB] + [CLSCompliant(false)] + [NativeCppClass] + public struct _Sentry_base + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(64)] + [NativeCppClass] + [CLSCompliant(false)] + public struct sentry + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-unsigned-short-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-unsigned-short-std.cs new file mode 100644 index 0000000..e69cb3d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-unsigned-short-std.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 80)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct basic_ostream_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 4)] + [CLSCompliant(false)] + [MiscellaneousBits(64)] + [NativeCppClass] + [DebugInfoInPDB] + public struct _Sentry_base + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(64)] + [CLSCompliant(false)] + [NativeCppClass] + [DebugInfoInPDB] + public struct sentry + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-wchar_t-std.cs new file mode 100644 index 0000000..1ad1d69 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_ostream-wchar_t-std.cs @@ -0,0 +1,31 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 80)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct basic_ostream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E +{ + [StructLayout(LayoutKind.Sequential, Size = 4)] + [CLSCompliant(false)] + [DebugInfoInPDB] + [MiscellaneousBits(64)] + [NativeCppClass] + public struct _Sentry_base + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [CLSCompliant(false)] + [MiscellaneousBits(64)] + public struct sentry + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-char-std.cs new file mode 100644 index 0000000..27301b7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 60)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct basic_streambuf_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-unsigned-short-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-unsigned-short-std.cs new file mode 100644 index 0000000..3209d27 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-unsigned-short-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 60)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct basic_streambuf_003Cunsigned_0020short_002Cstd_003A_003Achar_traits_003Cunsigned_0020short_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-wchar_t-std.cs new file mode 100644 index 0000000..0be62d7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_streambuf-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 60)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct basic_streambuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_string-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_string-char-std.cs new file mode 100644 index 0000000..6a0958d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_string-char-std.cs @@ -0,0 +1,14 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct basic_string_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_string-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_string-wchar_t-std.cs new file mode 100644 index 0000000..d6a25b4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_string-wchar_t-std.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[MiscellaneousBits(64)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +internal struct basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E +{ + [SpecialName] + public unsafe static void _003CMarshalCopy_003E(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0, basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_1) + { + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + global::_003CModule_003E.std_002Ebasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_002Eassign(P_0, P_1, 0u, uint.MaxValue); + } + + [SpecialName] + public unsafe static void _003CMarshalDestroy_003E(basic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E* P_0) + { + if (8u <= (uint)((int*)P_0)[5]) + { + global::_003CModule_003E.delete((void*)(int)(*(uint*)P_0)); + } + ((int*)P_0)[5] = 7; + ((int*)P_0)[4] = 0; + *(short*)P_0 = 0; + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_stringbuf-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_stringbuf-wchar_t-std.cs new file mode 100644 index 0000000..5339ef9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_stringbuf-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 72)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct basic_stringbuf_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/basic_stringstream-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/basic_stringstream-wchar_t-std.cs new file mode 100644 index 0000000..19065af --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/basic_stringstream-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 168)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct basic_stringstream_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/char_traits-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/char_traits-char-.cs new file mode 100644 index 0000000..4d9d14e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/char_traits-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct char_traits_003Cchar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/char_traits-unsigned-short-.cs b/analysis/decompiled/aaMxDataConsumer/std/char_traits-unsigned-short-.cs new file mode 100644 index 0000000..a7183a3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/char_traits-unsigned-short-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct char_traits_003Cunsigned_0020short_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/char_traits-wchar_t-.cs b/analysis/decompiled/aaMxDataConsumer/std/char_traits-wchar_t-.cs new file mode 100644 index 0000000..841e849 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/char_traits-wchar_t-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct char_traits_003Cwchar_t_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/codecvt-char-char-int-.cs b/analysis/decompiled/aaMxDataConsumer/std/codecvt-char-char-int-.cs new file mode 100644 index 0000000..a9a6833 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/codecvt-char-char-int-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct codecvt_003Cchar_002Cchar_002Cint_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/codecvt-unsigned-short-char-int-.cs b/analysis/decompiled/aaMxDataConsumer/std/codecvt-unsigned-short-char-int-.cs new file mode 100644 index 0000000..a401f00 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/codecvt-unsigned-short-char-int-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct codecvt_003Cunsigned_0020short_002Cchar_002Cint_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/codecvt-wchar_t-char-int-.cs b/analysis/decompiled/aaMxDataConsumer/std/codecvt-wchar_t-char-int-.cs new file mode 100644 index 0000000..f2cd395 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/codecvt-wchar_t-char-int-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct codecvt_003Cwchar_t_002Cchar_002Cint_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/codecvt_base.cs b/analysis/decompiled/aaMxDataConsumer/std/codecvt_base.cs new file mode 100644 index 0000000..4d6eed1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/codecvt_base.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct codecvt_base +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ctype-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/ctype-char-.cs new file mode 100644 index 0000000..db74f31 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ctype-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct ctype_003Cchar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ctype-unsigned-short-.cs b/analysis/decompiled/aaMxDataConsumer/std/ctype-unsigned-short-.cs new file mode 100644 index 0000000..1821d50 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ctype-unsigned-short-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct ctype_003Cunsigned_0020short_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ctype-wchar_t-.cs b/analysis/decompiled/aaMxDataConsumer/std/ctype-wchar_t-.cs new file mode 100644 index 0000000..bcef610 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ctype-wchar_t-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct ctype_003Cwchar_t_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ctype_base.cs b/analysis/decompiled/aaMxDataConsumer/std/ctype_base.cs new file mode 100644 index 0000000..3396ed8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ctype_base.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[NativeCppClass] +internal struct ctype_base +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ctype_byname-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/ctype_byname-char-.cs new file mode 100644 index 0000000..d2809f9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ctype_byname-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct ctype_byname_003Cchar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/domain_error.cs b/analysis/decompiled/aaMxDataConsumer/std/domain_error.cs new file mode 100644 index 0000000..c2732ac --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/domain_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct domain_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/error_category.cs b/analysis/decompiled/aaMxDataConsumer/std/error_category.cs new file mode 100644 index 0000000..90f388e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/error_category.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal static struct error_category +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/error_code.cs b/analysis/decompiled/aaMxDataConsumer/std/error_code.cs new file mode 100644 index 0000000..bb460cf --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/error_code.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct error_code +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/error_condition.cs b/analysis/decompiled/aaMxDataConsumer/std/error_condition.cs new file mode 100644 index 0000000..e615fd3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/error_condition.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct error_condition +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/exception.cs b/analysis/decompiled/aaMxDataConsumer/std/exception.cs new file mode 100644 index 0000000..a28bfd0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/exception.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct exception +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/float_denorm_style.cs b/analysis/decompiled/aaMxDataConsumer/std/float_denorm_style.cs new file mode 100644 index 0000000..fb769b2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/float_denorm_style.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace std; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum float_denorm_style +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/float_round_style.cs b/analysis/decompiled/aaMxDataConsumer/std/float_round_style.cs new file mode 100644 index 0000000..e236498 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/float_round_style.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace std; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum float_round_style +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/fpos-int-.cs b/analysis/decompiled/aaMxDataConsumer/std/fpos-int-.cs new file mode 100644 index 0000000..0bd7ba2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/fpos-int-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct fpos_003Cint_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/hash-__int64-.cs b/analysis/decompiled/aaMxDataConsumer/std/hash-__int64-.cs new file mode 100644 index 0000000..96c953d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/hash-__int64-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct hash_003C__int64_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/hash-double-.cs b/analysis/decompiled/aaMxDataConsumer/std/hash-double-.cs new file mode 100644 index 0000000..8afc874 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/hash-double-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct hash_003Cdouble_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/hash-float-.cs b/analysis/decompiled/aaMxDataConsumer/std/hash-float-.cs new file mode 100644 index 0000000..f3bbeea --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/hash-float-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct hash_003Cfloat_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/hash-long-double-.cs b/analysis/decompiled/aaMxDataConsumer/std/hash-long-double-.cs new file mode 100644 index 0000000..2167a0e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/hash-long-double-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct hash_003Clong_0020double_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/hash-std.cs b/analysis/decompiled/aaMxDataConsumer/std/hash-std.cs new file mode 100644 index 0000000..476b2f4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/hash-std.cs @@ -0,0 +1,34 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct hash_003Cstd_003A_003Abasic_string_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_002Cstd_003A_003Aallocator_003Cwchar_t_003E_0020_003E_0020_003E +{ +} +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct hash_003Cstd_003A_003Aerror_condition_003E +{ +} +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct hash_003Cstd_003A_003Abasic_string_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_002Cstd_003A_003Aallocator_003Cchar_003E_0020_003E_0020_003E +{ +} +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct hash_003Cstd_003A_003Aerror_code_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/hash-unsigned-__int64-.cs b/analysis/decompiled/aaMxDataConsumer/std/hash-unsigned-__int64-.cs new file mode 100644 index 0000000..55928a8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/hash-unsigned-__int64-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct hash_003Cunsigned_0020__int64_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/hash-unsigned-long-.cs b/analysis/decompiled/aaMxDataConsumer/std/hash-unsigned-long-.cs new file mode 100644 index 0000000..cb630fc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/hash-unsigned-long-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct hash_003Cunsigned_0020long_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/invalid_argument.cs b/analysis/decompiled/aaMxDataConsumer/std/invalid_argument.cs new file mode 100644 index 0000000..fa329f6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/invalid_argument.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct invalid_argument +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ios_base.cs b/analysis/decompiled/aaMxDataConsumer/std/ios_base.cs new file mode 100644 index 0000000..d2198fa --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ios_base.cs @@ -0,0 +1,56 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 56)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct ios_base +{ + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(64)] + [CLSCompliant(false)] + public enum @event + { + + } + + [StructLayout(LayoutKind.Sequential, Size = 20)] + [CLSCompliant(false)] + [MiscellaneousBits(64)] + [NativeCppClass] + [DebugInfoInPDB] + public struct failure + { + } + + [StructLayout(LayoutKind.Sequential, Size = 1)] + [MiscellaneousBits(64)] + [NativeCppClass] + [DebugInfoInPDB] + [CLSCompliant(false)] + public struct Init + { + } + + [StructLayout(LayoutKind.Sequential, Size = 16)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _Iosarray + { + } + + [StructLayout(LayoutKind.Sequential, Size = 12)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _Fnarray + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/istreambuf_iterator-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/istreambuf_iterator-char-std.cs new file mode 100644 index 0000000..3a28d68 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/istreambuf_iterator-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct istreambuf_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/istreambuf_iterator-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/istreambuf_iterator-wchar_t-std.cs new file mode 100644 index 0000000..f0055a4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/istreambuf_iterator-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct istreambuf_iterator_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/length_error.cs b/analysis/decompiled/aaMxDataConsumer/std/length_error.cs new file mode 100644 index 0000000..b0ace55 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/length_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct length_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/locale.cs b/analysis/decompiled/aaMxDataConsumer/std/locale.cs new file mode 100644 index 0000000..5b87feb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/locale.cs @@ -0,0 +1,40 @@ +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 4)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct locale +{ + [StructLayout(LayoutKind.Sequential, Size = 4)] + [CLSCompliant(false)] + [MiscellaneousBits(64)] + [NativeCppClass] + [DebugInfoInPDB] + public struct id + { + } + + [StructLayout(LayoutKind.Sequential, Size = 32)] + [MiscellaneousBits(64)] + [NativeCppClass] + [DebugInfoInPDB] + [CLSCompliant(false)] + public struct _Locimp + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [CLSCompliant(false)] + [MiscellaneousBits(64)] + [DebugInfoInPDB] + [NativeCppClass] + public struct facet + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/logic_error.cs b/analysis/decompiled/aaMxDataConsumer/std/logic_error.cs new file mode 100644 index 0000000..25caa2e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/logic_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct logic_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/num_get-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/num_get-char-std.cs new file mode 100644 index 0000000..da99a58 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/num_get-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct num_get_003Cchar_002Cstd_003A_003Aistreambuf_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/num_get-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/num_get-wchar_t-std.cs new file mode 100644 index 0000000..f5187d8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/num_get-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct num_get_003Cwchar_t_002Cstd_003A_003Aistreambuf_iterator_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/num_put-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/num_put-char-std.cs new file mode 100644 index 0000000..308fc2c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/num_put-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct num_put_003Cchar_002Cstd_003A_003Aostreambuf_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/num_put-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/num_put-wchar_t-std.cs new file mode 100644 index 0000000..2c0bd67 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/num_put-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct num_put_003Cwchar_t_002Cstd_003A_003Aostreambuf_iterator_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-__int64-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-__int64-.cs new file mode 100644 index 0000000..f1081d3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-__int64-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct numeric_limits_003C__int64_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-bool-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-bool-.cs new file mode 100644 index 0000000..4d83928 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-bool-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct numeric_limits_003Cbool_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-char-.cs new file mode 100644 index 0000000..f82530e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct numeric_limits_003Cchar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-double-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-double-.cs new file mode 100644 index 0000000..0409034 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-double-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct numeric_limits_003Cdouble_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-float-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-float-.cs new file mode 100644 index 0000000..99abd4e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-float-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct numeric_limits_003Cfloat_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-int-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-int-.cs new file mode 100644 index 0000000..b549cfa --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-int-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct numeric_limits_003Cint_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-long-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-long-.cs new file mode 100644 index 0000000..88fbc7f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-long-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct numeric_limits_003Clong_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-long-double-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-long-double-.cs new file mode 100644 index 0000000..fe0ef57 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-long-double-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct numeric_limits_003Clong_0020double_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-short-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-short-.cs new file mode 100644 index 0000000..40f8413 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-short-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct numeric_limits_003Cshort_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-signed-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-signed-char-.cs new file mode 100644 index 0000000..c85fafb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-signed-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct numeric_limits_003Csigned_0020char_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-__int64-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-__int64-.cs new file mode 100644 index 0000000..402f77a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-__int64-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct numeric_limits_003Cunsigned_0020__int64_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-char-.cs new file mode 100644 index 0000000..509c938 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct numeric_limits_003Cunsigned_0020char_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-int-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-int-.cs new file mode 100644 index 0000000..954b56c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-int-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct numeric_limits_003Cunsigned_0020int_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-long-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-long-.cs new file mode 100644 index 0000000..1cfbcc5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-long-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct numeric_limits_003Cunsigned_0020long_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-short-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-short-.cs new file mode 100644 index 0000000..1347b16 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-unsigned-short-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct numeric_limits_003Cunsigned_0020short_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-wchar_t-.cs b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-wchar_t-.cs new file mode 100644 index 0000000..64c7925 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numeric_limits-wchar_t-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 1)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct numeric_limits_003Cwchar_t_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numpunct-char-.cs b/analysis/decompiled/aaMxDataConsumer/std/numpunct-char-.cs new file mode 100644 index 0000000..b37ae94 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numpunct-char-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal struct numpunct_003Cchar_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/numpunct-wchar_t-.cs b/analysis/decompiled/aaMxDataConsumer/std/numpunct-wchar_t-.cs new file mode 100644 index 0000000..ab95d01 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/numpunct-wchar_t-.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal struct numpunct_003Cwchar_t_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ostreambuf_iterator-char-std.cs b/analysis/decompiled/aaMxDataConsumer/std/ostreambuf_iterator-char-std.cs new file mode 100644 index 0000000..1b43b4a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ostreambuf_iterator-char-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct ostreambuf_iterator_003Cchar_002Cstd_003A_003Achar_traits_003Cchar_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/ostreambuf_iterator-wchar_t-std.cs b/analysis/decompiled/aaMxDataConsumer/std/ostreambuf_iterator-wchar_t-std.cs new file mode 100644 index 0000000..f9b5e28 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/ostreambuf_iterator-wchar_t-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct ostreambuf_iterator_003Cwchar_t_002Cstd_003A_003Achar_traits_003Cwchar_t_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/out_of_range.cs b/analysis/decompiled/aaMxDataConsumer/std/out_of_range.cs new file mode 100644 index 0000000..98b1a81 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/out_of_range.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal struct out_of_range +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/overflow_error.cs b/analysis/decompiled/aaMxDataConsumer/std/overflow_error.cs new file mode 100644 index 0000000..abd4ef4 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/overflow_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct overflow_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/range_error.cs b/analysis/decompiled/aaMxDataConsumer/std/range_error.cs new file mode 100644 index 0000000..eb37523 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/range_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct range_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/runtime_error.cs b/analysis/decompiled/aaMxDataConsumer/std/runtime_error.cs new file mode 100644 index 0000000..426b6d6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/runtime_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct runtime_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/system_error.cs b/analysis/decompiled/aaMxDataConsumer/std/system_error.cs new file mode 100644 index 0000000..be61bf1 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/system_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 20)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct system_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/underflow_error.cs b/analysis/decompiled/aaMxDataConsumer/std/underflow_error.cs new file mode 100644 index 0000000..c6a898f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/underflow_error.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal struct underflow_error +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/vector-_ItemDataUpdate---std.cs b/analysis/decompiled/aaMxDataConsumer/std/vector-_ItemDataUpdate---std.cs new file mode 100644 index 0000000..0502503 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/vector-_ItemDataUpdate---std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct vector_003C_ItemDataUpdate_0020_002A_002Cstd_003A_003Aallocator_003C_ItemDataUpdate_0020_002A_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/std/vector-_WIN32_FIND_DATAW-std.cs b/analysis/decompiled/aaMxDataConsumer/std/vector-_WIN32_FIND_DATAW-std.cs new file mode 100644 index 0000000..d9b87b7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/std/vector-_WIN32_FIND_DATAW-std.cs @@ -0,0 +1,13 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +namespace std; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct vector_003C_WIN32_FIND_DATAW_002Cstd_003A_003Aallocator_003C_WIN32_FIND_DATAW_003E_0020_003E +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagACTIVATEFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagACTIVATEFLAGS.cs new file mode 100644 index 0000000..d70e938 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagACTIVATEFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagACTIVATEFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagADVF.cs b/analysis/decompiled/aaMxDataConsumer/tagADVF.cs new file mode 100644 index 0000000..65ffc84 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagADVF.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagADVF +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagApplicationType.cs b/analysis/decompiled/aaMxDataConsumer/tagApplicationType.cs new file mode 100644 index 0000000..6d43502 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagApplicationType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagApplicationType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagAspectInfoFlag.cs b/analysis/decompiled/aaMxDataConsumer/tagAspectInfoFlag.cs new file mode 100644 index 0000000..01ac6e0 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagAspectInfoFlag.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagAspectInfoFlag +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagBINDSPEED.cs b/analysis/decompiled/aaMxDataConsumer/tagBINDSPEED.cs new file mode 100644 index 0000000..c47b0ff --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagBINDSPEED.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagBINDSPEED +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagBINDSTATUS.cs b/analysis/decompiled/aaMxDataConsumer/tagBINDSTATUS.cs new file mode 100644 index 0000000..f03d0fb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagBINDSTATUS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagBINDSTATUS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagBINDSTRING.cs b/analysis/decompiled/aaMxDataConsumer/tagBINDSTRING.cs new file mode 100644 index 0000000..72a44e9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagBINDSTRING.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagBINDSTRING +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagBIND_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagBIND_FLAGS.cs new file mode 100644 index 0000000..5448112 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagBIND_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagBIND_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCALLCONV.cs b/analysis/decompiled/aaMxDataConsumer/tagCALLCONV.cs new file mode 100644 index 0000000..662b41a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCALLCONV.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagCALLCONV +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCALLTYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagCALLTYPE.cs new file mode 100644 index 0000000..eca60a6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCALLTYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagCALLTYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCHANGEKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagCHANGEKIND.cs new file mode 100644 index 0000000..d91eb2f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCHANGEKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagCHANGEKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCLSCTX.cs b/analysis/decompiled/aaMxDataConsumer/tagCLSCTX.cs new file mode 100644 index 0000000..8f2d45a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCLSCTX.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagCLSCTX +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCOINIT.cs b/analysis/decompiled/aaMxDataConsumer/tagCOINIT.cs new file mode 100644 index 0000000..0a0f2d6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCOINIT.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagCOINIT +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCOMSD.cs b/analysis/decompiled/aaMxDataConsumer/tagCOMSD.cs new file mode 100644 index 0000000..629a45a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCOMSD.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagCOMSD +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCONNECTDATA.cs b/analysis/decompiled/aaMxDataConsumer/tagCONNECTDATA.cs new file mode 100644 index 0000000..d10bd4a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCONNECTDATA.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 8)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct tagCONNECTDATA +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCOWAIT_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagCOWAIT_FLAGS.cs new file mode 100644 index 0000000..b2dfd77 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCOWAIT_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagCOWAIT_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCTRLINFO.cs b/analysis/decompiled/aaMxDataConsumer/tagCTRLINFO.cs new file mode 100644 index 0000000..8e433d5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCTRLINFO.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagCTRLINFO +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagCY.cs b/analysis/decompiled/aaMxDataConsumer/tagCY.cs new file mode 100644 index 0000000..63d34e9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagCY.cs @@ -0,0 +1,58 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Explicit, Size = 8)] +[MiscellaneousBits(66)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct tagCY +{ + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024192_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024192_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024192_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024192_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024192_0024 + { + } + + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xa8d5f844_0024192_0024 + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDATADIR.cs b/analysis/decompiled/aaMxDataConsumer/tagDATADIR.cs new file mode 100644 index 0000000..40a54fc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDATADIR.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagDATADIR +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDCOM_CALL_STATE.cs b/analysis/decompiled/aaMxDataConsumer/tagDCOM_CALL_STATE.cs new file mode 100644 index 0000000..aba757a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDCOM_CALL_STATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagDCOM_CALL_STATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDEC.cs b/analysis/decompiled/aaMxDataConsumer/tagDEC.cs new file mode 100644 index 0000000..9b62c87 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDEC.cs @@ -0,0 +1,191 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[UnsafeValueType] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct tagDEC +{ + [StructLayout(LayoutKind.Explicit, Size = 2)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xda2128e9_0024193_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 2)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xda2128e9_0024194_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024195_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024196_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 2)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024193_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 2)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024194_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024195_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024196_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 2)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024193_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 2)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024194_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024195_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024196_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 2)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x6ea962a9_0024193_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 2)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x6ea962a9_0024194_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024195_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x6ea962a9_0024196_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 2)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024193_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 2)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240x56a9090b_0024194_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x56a9090b_0024195_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024196_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 2)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024193_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 2)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024194_0024 + { + } + } + + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xa8d5f844_0024195_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024196_0024 + { + } + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDESCKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagDESCKIND.cs new file mode 100644 index 0000000..5b6373b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDESCKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagDESCKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDISCARDCACHE.cs b/analysis/decompiled/aaMxDataConsumer/tagDISCARDCACHE.cs new file mode 100644 index 0000000..d8f2d19 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDISCARDCACHE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagDISCARDCACHE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDISPPARAMS.cs b/analysis/decompiled/aaMxDataConsumer/tagDISPPARAMS.cs new file mode 100644 index 0000000..9b28ab9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDISPPARAMS.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct tagDISPPARAMS +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDOCHOSTUIDBLCLKDispatch.cs b/analysis/decompiled/aaMxDataConsumer/tagDOCHOSTUIDBLCLKDispatch.cs new file mode 100644 index 0000000..55e7cbe --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDOCHOSTUIDBLCLKDispatch.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagDOCHOSTUIDBLCLKDispatch +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDOMNodeType.cs b/analysis/decompiled/aaMxDataConsumer/tagDOMNodeType.cs new file mode 100644 index 0000000..0d7985c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDOMNodeType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagDOMNodeType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDVASPECT.cs b/analysis/decompiled/aaMxDataConsumer/tagDVASPECT.cs new file mode 100644 index 0000000..848c3e5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDVASPECT.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagDVASPECT +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDVASPECT2.cs b/analysis/decompiled/aaMxDataConsumer/tagDVASPECT2.cs new file mode 100644 index 0000000..f14d672 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDVASPECT2.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagDVASPECT2 +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagDocHostUIFlagDispatch.cs b/analysis/decompiled/aaMxDataConsumer/tagDocHostUIFlagDispatch.cs new file mode 100644 index 0000000..e9987b8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagDocHostUIFlagDispatch.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagDocHostUIFlagDispatch +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagEOLE_AUTHENTICATION_CAPABILITIES.cs b/analysis/decompiled/aaMxDataConsumer/tagEOLE_AUTHENTICATION_CAPABILITIES.cs new file mode 100644 index 0000000..1bc39a3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagEOLE_AUTHENTICATION_CAPABILITIES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagEOLE_AUTHENTICATION_CAPABILITIES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagEXCEPINFO.cs b/analysis/decompiled/aaMxDataConsumer/tagEXCEPINFO.cs new file mode 100644 index 0000000..0fc8d92 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagEXCEPINFO.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct tagEXCEPINFO +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagEXTCONN.cs b/analysis/decompiled/aaMxDataConsumer/tagEXTCONN.cs new file mode 100644 index 0000000..2363f67 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagEXTCONN.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagEXTCONN +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagExtendedErrorParamTypes.cs b/analysis/decompiled/aaMxDataConsumer/tagExtendedErrorParamTypes.cs new file mode 100644 index 0000000..7b6c5ca --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagExtendedErrorParamTypes.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagExtendedErrorParamTypes +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagExtentMode.cs b/analysis/decompiled/aaMxDataConsumer/tagExtentMode.cs new file mode 100644 index 0000000..9047566 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagExtentMode.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagExtentMode +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagFUNCDESC.cs b/analysis/decompiled/aaMxDataConsumer/tagFUNCDESC.cs new file mode 100644 index 0000000..c92f679 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagFUNCDESC.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 52)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct tagFUNCDESC +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagFUNCFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagFUNCFLAGS.cs new file mode 100644 index 0000000..97909b9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagFUNCFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagFUNCFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagFUNCKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagFUNCKIND.cs new file mode 100644 index 0000000..f5ca183 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagFUNCKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagFUNCKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_EH_VALUES.cs b/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_EH_VALUES.cs new file mode 100644 index 0000000..df5a572 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_EH_VALUES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagGLOBALOPT_EH_VALUES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_PROPERTIES.cs b/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_PROPERTIES.cs new file mode 100644 index 0000000..45ec6f9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_PROPERTIES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagGLOBALOPT_PROPERTIES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_RPCTP_VALUES.cs b/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_RPCTP_VALUES.cs new file mode 100644 index 0000000..01769d2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagGLOBALOPT_RPCTP_VALUES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagGLOBALOPT_RPCTP_VALUES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagGUIDKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagGUIDKIND.cs new file mode 100644 index 0000000..ebc6559 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagGUIDKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagGUIDKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagHITRESULT.cs b/analysis/decompiled/aaMxDataConsumer/tagHITRESULT.cs new file mode 100644 index 0000000..830993f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagHITRESULT.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagHITRESULT +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagINVOKEKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagINVOKEKIND.cs new file mode 100644 index 0000000..3379ea7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagINVOKEKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagINVOKEKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagLIBFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagLIBFLAGS.cs new file mode 100644 index 0000000..061a74e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagLIBFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagLIBFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagLOCKTYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagLOCKTYPE.cs new file mode 100644 index 0000000..dd146ca --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagLOCKTYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagLOCKTYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagLogFlagCategory.cs b/analysis/decompiled/aaMxDataConsumer/tagLogFlagCategory.cs new file mode 100644 index 0000000..47b2c56 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagLogFlagCategory.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagLogFlagCategory +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagMEMCTX.cs b/analysis/decompiled/aaMxDataConsumer/tagMEMCTX.cs new file mode 100644 index 0000000..cf95f1f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagMEMCTX.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagMEMCTX +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagMKREDUCE.cs b/analysis/decompiled/aaMxDataConsumer/tagMKREDUCE.cs new file mode 100644 index 0000000..31a58ee --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagMKREDUCE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagMKREDUCE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagMKSYS.cs b/analysis/decompiled/aaMxDataConsumer/tagMKSYS.cs new file mode 100644 index 0000000..3bf03fc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagMKSYS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagMKSYS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagMSG.cs b/analysis/decompiled/aaMxDataConsumer/tagMSG.cs new file mode 100644 index 0000000..564f865 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagMSG.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 28)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct tagMSG +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagMSHCTX.cs b/analysis/decompiled/aaMxDataConsumer/tagMSHCTX.cs new file mode 100644 index 0000000..35bcbfe --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagMSHCTX.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagMSHCTX +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagMSHLFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagMSHLFLAGS.cs new file mode 100644 index 0000000..a83c8b6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagMSHLFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagMSHLFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLECLOSE.cs b/analysis/decompiled/aaMxDataConsumer/tagOLECLOSE.cs new file mode 100644 index 0000000..c22eb9e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLECLOSE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagOLECLOSE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLECONTF.cs b/analysis/decompiled/aaMxDataConsumer/tagOLECONTF.cs new file mode 100644 index 0000000..8d1e04e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLECONTF.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagOLECONTF +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLEDCFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagOLEDCFLAGS.cs new file mode 100644 index 0000000..09b8325 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLEDCFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagOLEDCFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLEGETMONIKER.cs b/analysis/decompiled/aaMxDataConsumer/tagOLEGETMONIKER.cs new file mode 100644 index 0000000..5266f1d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLEGETMONIKER.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagOLEGETMONIKER +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLELINKBIND.cs b/analysis/decompiled/aaMxDataConsumer/tagOLELINKBIND.cs new file mode 100644 index 0000000..ec8a97d --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLELINKBIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagOLELINKBIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLEMISC.cs b/analysis/decompiled/aaMxDataConsumer/tagOLEMISC.cs new file mode 100644 index 0000000..d896c5c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLEMISC.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagOLEMISC +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLERENDER.cs b/analysis/decompiled/aaMxDataConsumer/tagOLERENDER.cs new file mode 100644 index 0000000..73c14ba --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLERENDER.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagOLERENDER +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLEUPDATE.cs b/analysis/decompiled/aaMxDataConsumer/tagOLEUPDATE.cs new file mode 100644 index 0000000..eb2f190 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLEUPDATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagOLEUPDATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLEVERB.cs b/analysis/decompiled/aaMxDataConsumer/tagOLEVERB.cs new file mode 100644 index 0000000..412c64f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLEVERB.cs @@ -0,0 +1,11 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[NativeCppClass] +internal struct tagOLEVERB +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLEVERBATTRIB.cs b/analysis/decompiled/aaMxDataConsumer/tagOLEVERBATTRIB.cs new file mode 100644 index 0000000..af0d04b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLEVERBATTRIB.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagOLEVERBATTRIB +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagOLEWHICHMK.cs b/analysis/decompiled/aaMxDataConsumer/tagOLEWHICHMK.cs new file mode 100644 index 0000000..4263d5e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagOLEWHICHMK.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagOLEWHICHMK +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagPENDINGMSG.cs b/analysis/decompiled/aaMxDataConsumer/tagPENDINGMSG.cs new file mode 100644 index 0000000..762fdcb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagPENDINGMSG.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagPENDINGMSG +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagPENDINGTYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagPENDINGTYPE.cs new file mode 100644 index 0000000..19c943f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagPENDINGTYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagPENDINGTYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagPOINTERINACTIVE.cs b/analysis/decompiled/aaMxDataConsumer/tagPOINTERINACTIVE.cs new file mode 100644 index 0000000..6ceeca8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagPOINTERINACTIVE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagPOINTERINACTIVE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagPROPBAG2_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagPROPBAG2_TYPE.cs new file mode 100644 index 0000000..7c67e13 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagPROPBAG2_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagPROPBAG2_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagPROPPAGESTATUS.cs b/analysis/decompiled/aaMxDataConsumer/tagPROPPAGESTATUS.cs new file mode 100644 index 0000000..5c79c7c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagPROPPAGESTATUS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagPROPPAGESTATUS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagPROPVARIANT.cs b/analysis/decompiled/aaMxDataConsumer/tagPROPVARIANT.cs new file mode 100644 index 0000000..5278014 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagPROPVARIANT.cs @@ -0,0 +1,171 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct tagPROPVARIANT +{ + [StructLayout(LayoutKind.Explicit, Size = 16)] + [UnsafeValueType] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024304_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024305_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xda2128e9_0024306_0024 + { + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [DebugInfoInPDB] + [UnsafeValueType] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024304_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024305_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024306_0024 + { + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [NativeCppClass] + [DebugInfoInPDB] + [UnsafeValueType] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024304_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024305_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024306_0024 + { + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [NativeCppClass] + [UnsafeValueType] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024304_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x6ea962a9_0024305_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x6ea962a9_0024306_0024 + { + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [UnsafeValueType] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x56a9090b_0024304_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x56a9090b_0024305_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x56a9090b_0024306_0024 + { + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [UnsafeValueType] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xa8d5f844_0024304_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xa8d5f844_0024305_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xa8d5f844_0024306_0024 + { + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + [UnsafeValueType] + internal struct _0024UnnamedClass_00240xd56818f8_0024179_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xd56818f8_0024180_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xd56818f8_0024181_0024 + { + } + } + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagPictureAttributes.cs b/analysis/decompiled/aaMxDataConsumer/tagPictureAttributes.cs new file mode 100644 index 0000000..873285a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagPictureAttributes.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagPictureAttributes +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagQACONTAINERFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagQACONTAINERFLAGS.cs new file mode 100644 index 0000000..6e43f25 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagQACONTAINERFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagQACONTAINERFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagREADYSTATE.cs b/analysis/decompiled/aaMxDataConsumer/tagREADYSTATE.cs new file mode 100644 index 0000000..db08ef3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagREADYSTATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagREADYSTATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagRECT.cs b/analysis/decompiled/aaMxDataConsumer/tagRECT.cs new file mode 100644 index 0000000..cf7014f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagRECT.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[MiscellaneousBits(65)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +internal struct tagRECT +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagREGCLS.cs b/analysis/decompiled/aaMxDataConsumer/tagREGCLS.cs new file mode 100644 index 0000000..55a1365 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagREGCLS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagREGCLS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagREGKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagREGKIND.cs new file mode 100644 index 0000000..170e18a --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagREGKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagREGKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagRPCOPT_PROPERTIES.cs b/analysis/decompiled/aaMxDataConsumer/tagRPCOPT_PROPERTIES.cs new file mode 100644 index 0000000..792ed89 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagRPCOPT_PROPERTIES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagRPCOPT_PROPERTIES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagRPCOPT_SERVER_LOCALITY_VALUES.cs b/analysis/decompiled/aaMxDataConsumer/tagRPCOPT_SERVER_LOCALITY_VALUES.cs new file mode 100644 index 0000000..67fa978 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagRPCOPT_SERVER_LOCALITY_VALUES.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagRPCOPT_SERVER_LOCALITY_VALUES +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSAFEARRAY.cs b/analysis/decompiled/aaMxDataConsumer/tagSAFEARRAY.cs new file mode 100644 index 0000000..78a4aed --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSAFEARRAY.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 24)] +[UnsafeValueType] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct tagSAFEARRAY +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSERVERCALL.cs b/analysis/decompiled/aaMxDataConsumer/tagSERVERCALL.cs new file mode 100644 index 0000000..48f63eb --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSERVERCALL.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagSERVERCALL +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSFBS_FLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagSFBS_FLAGS.cs new file mode 100644 index 0000000..d9db204 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSFBS_FLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagSFBS_FLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSF_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagSF_TYPE.cs new file mode 100644 index 0000000..38cea81 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSF_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagSF_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSHCOLSTATE.cs b/analysis/decompiled/aaMxDataConsumer/tagSHCOLSTATE.cs new file mode 100644 index 0000000..f6db0c8 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSHCOLSTATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagSHCOLSTATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSTATFLAG.cs b/analysis/decompiled/aaMxDataConsumer/tagSTATFLAG.cs new file mode 100644 index 0000000..b66afe6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSTATFLAG.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagSTATFLAG +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSTDMSHLFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagSTDMSHLFLAGS.cs new file mode 100644 index 0000000..9615566 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSTDMSHLFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagSTDMSHLFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSTGC.cs b/analysis/decompiled/aaMxDataConsumer/tagSTGC.cs new file mode 100644 index 0000000..57a6153 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSTGC.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagSTGC +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSTGMOVE.cs b/analysis/decompiled/aaMxDataConsumer/tagSTGMOVE.cs new file mode 100644 index 0000000..9f5ac68 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSTGMOVE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagSTGMOVE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSTGTY.cs b/analysis/decompiled/aaMxDataConsumer/tagSTGTY.cs new file mode 100644 index 0000000..dc8205b --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSTGTY.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagSTGTY +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSTREAM_SEEK.cs b/analysis/decompiled/aaMxDataConsumer/tagSTREAM_SEEK.cs new file mode 100644 index 0000000..5a7bcdc --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSTREAM_SEEK.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagSTREAM_SEEK +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSTRRET_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagSTRRET_TYPE.cs new file mode 100644 index 0000000..dae0929 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSTRRET_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagSTRRET_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagSYSKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagSYSKIND.cs new file mode 100644 index 0000000..10010a5 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagSYSKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagSYSKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagShutdownType.cs b/analysis/decompiled/aaMxDataConsumer/tagShutdownType.cs new file mode 100644 index 0000000..9b570c9 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagShutdownType.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagShutdownType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTEXTMETRICA.cs b/analysis/decompiled/aaMxDataConsumer/tagTEXTMETRICA.cs new file mode 100644 index 0000000..2489c97 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTEXTMETRICA.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 56)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct tagTEXTMETRICA +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTEXTMETRICW.cs b/analysis/decompiled/aaMxDataConsumer/tagTEXTMETRICW.cs new file mode 100644 index 0000000..074ffa6 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTEXTMETRICW.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 60)] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +[UnsafeValueType] +[NativeCppClass] +internal struct tagTEXTMETRICW +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTLIBATTR.cs b/analysis/decompiled/aaMxDataConsumer/tagTLIBATTR.cs new file mode 100644 index 0000000..d6f786e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTLIBATTR.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 32)] +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +[UnsafeValueType] +internal struct tagTLIBATTR +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTYMED.cs b/analysis/decompiled/aaMxDataConsumer/tagTYMED.cs new file mode 100644 index 0000000..5b28965 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTYMED.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum tagTYMED +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTYPEATTR.cs b/analysis/decompiled/aaMxDataConsumer/tagTYPEATTR.cs new file mode 100644 index 0000000..a987820 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTYPEATTR.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 76)] +[NativeCppClass] +[UnsafeValueType] +[DebugInfoInPDB] +[MiscellaneousBits(65)] +internal struct tagTYPEATTR +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTYPEFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagTYPEFLAGS.cs new file mode 100644 index 0000000..3dea62e --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTYPEFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagTYPEFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTYPEKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagTYPEKIND.cs new file mode 100644 index 0000000..c4424e3 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTYPEKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagTYPEKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagTYSPEC.cs b/analysis/decompiled/aaMxDataConsumer/tagTYSPEC.cs new file mode 100644 index 0000000..6e3da58 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagTYSPEC.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagTYSPEC +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagUASFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagUASFLAGS.cs new file mode 100644 index 0000000..34d3804 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagUASFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagUASFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagURLTEMPLATE.cs b/analysis/decompiled/aaMxDataConsumer/tagURLTEMPLATE.cs new file mode 100644 index 0000000..1ee7966 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagURLTEMPLATE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagURLTEMPLATE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagURLZONE.cs b/analysis/decompiled/aaMxDataConsumer/tagURLZONE.cs new file mode 100644 index 0000000..4f6f09c --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagURLZONE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagURLZONE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagUSERCLASSTYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagUSERCLASSTYPE.cs new file mode 100644 index 0000000..fe813ce --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagUSERCLASSTYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[MiscellaneousBits(64)] +[NativeCppClass] +[DebugInfoInPDB] +internal enum tagUSERCLASSTYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagVARDESC.cs b/analysis/decompiled/aaMxDataConsumer/tagVARDESC.cs new file mode 100644 index 0000000..ea7d75f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagVARDESC.cs @@ -0,0 +1,58 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[MiscellaneousBits(65)] +[NativeCppClass] +[DebugInfoInPDB] +internal struct tagVARDESC +{ + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xda2128e9_0024303_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024303_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024303_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [MiscellaneousBits(66)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x6ea962a9_0024303_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x56a9090b_0024303_0024 + { + } + + [StructLayout(LayoutKind.Explicit, Size = 4)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024303_0024 + { + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagVARFLAGS.cs b/analysis/decompiled/aaMxDataConsumer/tagVARFLAGS.cs new file mode 100644 index 0000000..0f37588 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagVARFLAGS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +internal enum tagVARFLAGS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagVARIANT.cs b/analysis/decompiled/aaMxDataConsumer/tagVARIANT.cs new file mode 100644 index 0000000..9e06985 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagVARIANT.cs @@ -0,0 +1,220 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 16)] +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(65)] +internal struct tagVARIANT +{ + [StructLayout(LayoutKind.Explicit, Size = 16)] + [DebugInfoInPDB] + [NativeCppClass] + [UnsafeValueType] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xda2128e9_0024296_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xda2128e9_0024297_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xda2128e9_0024298_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xda2128e9_0024299_0024 + { + } + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + [UnsafeValueType] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024296_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024297_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024298_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xcc57d9b2_0024299_0024 + { + } + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + [UnsafeValueType] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024296_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024297_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [MiscellaneousBits(66)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024298_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x4ac3ab1c_0024299_0024 + { + } + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [UnsafeValueType] + internal struct _0024UnnamedClass_00240x6ea962a9_0024296_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [NativeCppClass] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240x6ea962a9_0024297_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x6ea962a9_0024298_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x6ea962a9_0024299_0024 + { + } + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + [UnsafeValueType] + internal struct _0024UnnamedClass_00240x56a9090b_0024296_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x56a9090b_0024297_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [NativeCppClass] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240x56a9090b_0024298_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(65)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240x56a9090b_0024299_0024 + { + } + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + [UnsafeValueType] + internal struct _0024UnnamedClass_00240xa8d5f844_0024296_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xa8d5f844_0024297_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [MiscellaneousBits(66)] + [NativeCppClass] + internal struct _0024UnnamedClass_00240xa8d5f844_0024298_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(65)] + internal struct _0024UnnamedClass_00240xa8d5f844_0024299_0024 + { + } + } + } + } + + [StructLayout(LayoutKind.Explicit, Size = 16)] + [UnsafeValueType] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xd56818f8_0024171_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 16)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xd56818f8_0024172_0024 + { + [StructLayout(LayoutKind.Explicit, Size = 8)] + [DebugInfoInPDB] + [NativeCppClass] + [MiscellaneousBits(66)] + internal struct _0024UnnamedClass_00240xd56818f8_0024173_0024 + { + [StructLayout(LayoutKind.Sequential, Size = 8)] + [NativeCppClass] + [MiscellaneousBits(65)] + [DebugInfoInPDB] + internal struct _0024UnnamedClass_00240xd56818f8_0024174_0024 + { + } + } + } + } +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagVARKIND.cs b/analysis/decompiled/aaMxDataConsumer/tagVARKIND.cs new file mode 100644 index 0000000..d2e3dc2 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagVARKIND.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagVARKIND +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagVIEWSTATUS.cs b/analysis/decompiled/aaMxDataConsumer/tagVIEWSTATUS.cs new file mode 100644 index 0000000..1764f28 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagVIEWSTATUS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[DebugInfoInPDB] +[NativeCppClass] +[MiscellaneousBits(64)] +internal enum tagVIEWSTATUS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagXFORMCOORDS.cs b/analysis/decompiled/aaMxDataConsumer/tagXFORMCOORDS.cs new file mode 100644 index 0000000..c893467 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagXFORMCOORDS.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[MiscellaneousBits(64)] +[DebugInfoInPDB] +internal enum tagXFORMCOORDS +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tagXMLEMEM_TYPE.cs b/analysis/decompiled/aaMxDataConsumer/tagXMLEMEM_TYPE.cs new file mode 100644 index 0000000..ea3612f --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tagXMLEMEM_TYPE.cs @@ -0,0 +1,10 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +[NativeCppClass] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +internal enum tagXMLEMEM_TYPE +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/tm.cs b/analysis/decompiled/aaMxDataConsumer/tm.cs new file mode 100644 index 0000000..1a193d7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/tm.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 36)] +[NativeCppClass] +[UnsafeValueType] +[MiscellaneousBits(65)] +[DebugInfoInPDB] +internal struct tm +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/type_info.cs b/analysis/decompiled/aaMxDataConsumer/type_info.cs new file mode 100644 index 0000000..e9cd753 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/type_info.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Microsoft.VisualC; + +[StructLayout(LayoutKind.Sequential, Size = 12)] +[DebugInfoInPDB] +[MiscellaneousBits(64)] +[NativeCppClass] +[UnsafeValueType] +internal struct type_info +{ +} diff --git a/analysis/decompiled/aaMxDataConsumer/vc_attributes/AccessType.cs b/analysis/decompiled/aaMxDataConsumer/vc_attributes/AccessType.cs new file mode 100644 index 0000000..c907825 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/vc_attributes/AccessType.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace vc_attributes; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum AccessType +{ + +} diff --git a/analysis/decompiled/aaMxDataConsumer/vc_attributes/YesNoMaybe.cs b/analysis/decompiled/aaMxDataConsumer/vc_attributes/YesNoMaybe.cs new file mode 100644 index 0000000..98987c7 --- /dev/null +++ b/analysis/decompiled/aaMxDataConsumer/vc_attributes/YesNoMaybe.cs @@ -0,0 +1,12 @@ +using System.Runtime.CompilerServices; +using Microsoft.VisualC; + +namespace vc_attributes; + +[MiscellaneousBits(64)] +[DebugInfoInPDB] +[NativeCppClass] +internal enum YesNoMaybe +{ + +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrA.Diagnostics/Logger.cs b/analysis/decompiled/aaServicesCommon/ArchestrA.Diagnostics/Logger.cs new file mode 100644 index 0000000..eab1ecb --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrA.Diagnostics/Logger.cs @@ -0,0 +1,275 @@ +using System; +using System.Globalization; +using System.IO; +using System.Reflection; +using System.Security; +using System.Security.Permissions; +using Microsoft.Win32; + +namespace ArchestrA.Diagnostics; + +internal static class Logger +{ + public static int ErrorCount + { + get + { + if (InitLoggerDll()) + { + int errorCount = 0; + int warningCount = 0; + long ftLastError = 0L; + long ftLastWarning = 0L; + if (NativeMethods.GetLoggerStats(string.Empty, ref errorCount, ref ftLastError, ref warningCount, ref ftLastWarning) <= 0) + { + return -1; + } + return errorCount; + } + return -1; + } + } + + public static bool IsLoaded { get; private set; } + + public static int WarningCount + { + get + { + if (InitLoggerDll()) + { + int errorCount = 0; + int warningCount = 0; + long ftLastError = 0L; + long ftLastWarning = 0L; + if (NativeMethods.GetLoggerStats(string.Empty, ref errorCount, ref ftLastError, ref warningCount, ref ftLastWarning) <= 0) + { + return -1; + } + return warningCount; + } + return -1; + } + } + + private static bool CheckRegistry { get; set; } + + private static bool DomainUnloaded { get; set; } + + private static int LoggerClientIdentity { get; set; } + + static Logger() + { + LoggerClientIdentity = 0; + CheckRegistry = true; + } + + public static void LogConnection(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogConnection(LoggerClientIdentity, errorMessage); + } + } + + public static void LogCtorDtor(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogCtorDtor(LoggerClientIdentity, errorMessage); + } + } + + public static void LogCustom(int cookie, string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogCustom(LoggerClientIdentity, cookie, errorMessage); + } + } + + public static void LogEntryExit(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogEntryExit(LoggerClientIdentity, errorMessage); + } + } + + public static void LogError(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogError(LoggerClientIdentity, errorMessage); + } + } + + public static void LogInfo(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogInfo(LoggerClientIdentity, errorMessage); + } + } + + public static void LogRefCount(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogRefCount(LoggerClientIdentity, errorMessage); + } + } + + public static int LogRegisterCustomFlag(string flagName) + { + if (!Initialize()) + { + return 0; + } + return NativeMethods.RegisterLogFlag(LoggerClientIdentity, 11, flagName); + } + + public static int LogRegisterCustomFlagEx(string flagName, int defaultValue) + { + if (!Initialize()) + { + return 0; + } + return NativeMethods.RegisterLogFlagEx(LoggerClientIdentity, 11, flagName, defaultValue); + } + + public static void LogSQL(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogSQL(LoggerClientIdentity, errorMessage); + } + } + + public static void LogSetIdentityName(string identityName) + { + if (Initialize()) + { + NativeMethods.SetIdentityName(LoggerClientIdentity, identityName); + } + } + + public static void LogStartStop(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogStartStop(LoggerClientIdentity, errorMessage); + } + } + + public static void LogThreadStartStop(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogThreadStartStop(LoggerClientIdentity, errorMessage); + } + } + + public static void LogTrace(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogTrace(LoggerClientIdentity, errorMessage); + } + } + + public static void LogWarning(string errorMessage) + { + if (Initialize()) + { + NativeMethods.InternalLogWarning(LoggerClientIdentity, errorMessage); + } + } + + public static void ResetLoggerCheck() + { + CheckRegistry = true; + } + + private static bool InitLoggerDll() + { + bool flag = IsLoaded; + if (flag) + { + return true; + } + if (CheckRegistry) + { + IntPtr intPtr = IntPtr.Zero; + CheckRegistry = false; + new RegistryPermission(RegistryPermissionAccess.Read, "HKEY_LOCAL_MACHINE\\Software\\ArchestrA\\Framework\\Logger").Assert(); + try + { + RegistryKey registryKey = Registry.LocalMachine.OpenSubKey("Software\\ArchestrA\\Framework\\Logger", writable: false); + if (registryKey != null) + { + string text = Convert.ToString(registryKey.GetValue("InstallPath", string.Empty), CultureInfo.InvariantCulture); + if (text.Length > 0) + { + intPtr = NativeMethods.LoadLibraryExW(wParam: new IntPtr(0), lpMdoule: Path.Combine(text, "LoggerDll.dll"), flag: 8); + } + } + } + finally + { + CodeAccessPermission.RevertAssert(); + } + flag = intPtr != IntPtr.Zero; + } + IsLoaded = flag; + return flag; + } + + private static bool Initialize() + { + if (DomainUnloaded) + { + return false; + } + if (LoggerClientIdentity != 0) + { + return true; + } + if (InitLoggerDll()) + { + int hIdentity = 0; + int num = NativeMethods.RegisterLoggerClient(ref hIdentity); + LoggerClientIdentity = hIdentity; + if (num != 0 && LoggerClientIdentity != 0) + { + new FileIOPermission(PermissionState.Unrestricted).Assert(); + try + { + NativeMethods.SetIdentityName(LoggerClientIdentity, Assembly.GetExecutingAssembly().GetName().Name); + } + finally + { + CodeAccessPermission.RevertAssert(); + } + AppDomain.CurrentDomain.DomainUnload += OnCurrentDomainUnload; + return true; + } + } + return false; + } + + private static void OnCurrentDomainUnload(object sender, EventArgs e) + { + UnInitialize(); + DomainUnloaded = true; + } + + private static void UnInitialize() + { + if (LoggerClientIdentity != 0) + { + NativeMethods.UnregisterLoggerClient(LoggerClientIdentity); + LoggerClientIdentity = 0; + } + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrA.Diagnostics/NativeMethods.cs b/analysis/decompiled/aaServicesCommon/ArchestrA.Diagnostics/NativeMethods.cs new file mode 100644 index 0000000..ffe23ec --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrA.Diagnostics/NativeMethods.cs @@ -0,0 +1,67 @@ +using System; +using System.Runtime.InteropServices; + +namespace ArchestrA.Diagnostics; + +internal static class NativeMethods +{ + [DllImport("kernel32")] + public static extern IntPtr LoadLibraryExW([MarshalAs(UnmanagedType.LPWStr)] string lpMdoule, IntPtr wParam, int flag); + + [DllImport("kernel32")] + internal static extern IntPtr LoadLibraryW([MarshalAs(UnmanagedType.LPWStr)] string lpMdoule); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "REGISTERLOGGERCLIENT", ExactSpelling = true)] + internal static extern int RegisterLoggerClient(ref int hIdentity); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "UNREGISTERLOGGERCLIENT", ExactSpelling = true)] + internal static extern int UnregisterLoggerClient(int hIdentity); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "SETIDENTITYNAME", ExactSpelling = true)] + internal static extern int SetIdentityName(int hIdentity, string strIdentity); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGERROR", ExactSpelling = true)] + internal static extern void InternalLogError(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGWARNING", ExactSpelling = true)] + internal static extern void InternalLogWarning(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGINFO", ExactSpelling = true)] + internal static extern void InternalLogInfo(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGTRACE", ExactSpelling = true)] + internal static extern void InternalLogTrace(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGSTARTSTOP", ExactSpelling = true)] + internal static extern void InternalLogStartStop(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGENTRYEXIT", ExactSpelling = true)] + internal static extern void InternalLogEntryExit(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGTHREADSTARTSTOP", ExactSpelling = true)] + internal static extern void InternalLogThreadStartStop(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGSQL", ExactSpelling = true)] + internal static extern void InternalLogSQL(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGCONNECTION", ExactSpelling = true)] + internal static extern void InternalLogConnection(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGCTORDTOR", ExactSpelling = true)] + internal static extern void InternalLogCtorDtor(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGREFCOUNT", ExactSpelling = true)] + internal static extern void InternalLogRefCount(int hIdentity, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "REGISTERLOGFLAG", ExactSpelling = true)] + internal static extern int RegisterLogFlag(int hIdentity, int nCustomFlag, [MarshalAs(UnmanagedType.LPWStr)] string strFlag); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "REGISTERLOGFLAGEX", ExactSpelling = true)] + internal static extern int RegisterLogFlagEx(int hIdentity, int nCustomFlag, [MarshalAs(UnmanagedType.LPWStr)] string strFlag, int nDefaultVal); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "LOGCUSTOM2", ExactSpelling = true)] + internal static extern void InternalLogCustom(int hIdentity, int nCustomFlag, [MarshalAs(UnmanagedType.LPWStr)] string errorMessage); + + [DllImport("LoggerDLL.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode, EntryPoint = "GETLOGGERSTATS", ExactSpelling = true)] + internal static extern int GetLoggerStats([MarshalAs(UnmanagedType.LPWStr)] string hostName, ref int errorCount, ref long ftLastError, ref int warningCount, ref long ftLastWarning); +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Constants/BindingType.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Constants/BindingType.cs new file mode 100644 index 0000000..b7d5bb0 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Constants/BindingType.cs @@ -0,0 +1,22 @@ +using System; +using System.CodeDom.Compiler; +using System.Xml.Serialization; + +namespace ArchestrAServices.Common.Constants; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.34230")] +[XmlType(Namespace = "urn:data.configuration.framework.asb.se:1")] +[XmlRoot(Namespace = "urn:data.configuration.framework.asb.se:1", IsNullable = false)] +public enum BindingType +{ + Custom, + NetNamedPipe, + NetTcp, + BasicHttp, + Ws2007FederationHttp, + Ws2007Http, + WsDualHttp, + WsHttp, + Msmq +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Constants/DiscoveryScope.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Constants/DiscoveryScope.cs new file mode 100644 index 0000000..b7b8b64 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Constants/DiscoveryScope.cs @@ -0,0 +1,198 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Text; + +namespace ArchestrAServices.Common.Constants; + +public static class DiscoveryScope +{ + public const string AsbCoreServiceScope = "archestra://coreservices"; + + public const string AsbUserServiceScope = "archestra://asb/"; + + public const string ServiceNameScope = "instancename/"; + + public const string ServiceVersionScope = "serviceversion/"; + + public const string DataTypeScope = "datatype/"; + + public const string SolutionNameScope = "asbsolution/"; + + public const string NodeNameScope = "asbnode/"; + + public const string BindingScope = "servicebinding/"; + + public const string CustomSerializerScope = "binding/customserializer/version2"; + + public const string DomainScope = "domainname/"; + + public const string NamespaceScope = "namespace/"; + + public const string SourceIdScope = "sourceid/"; + + public const string AssociationTypeScope = "associationType/"; + + public const string HierarchyIdScope = "hierarchyId/"; + + public const string HierarchyNameScope = "hierarchy/"; + + public const string TlsScope = "tls/"; + + public const string BaseRevisionScope = "baserevision/"; + + public const string RevisionScope = "revision/"; + + public static bool IsTransportSecurityScope(Uri scope) + { + bool result = false; + if (scope != null) + { + StringBuilder stringBuilder = new StringBuilder(); + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("tls/"); + string text = stringBuilder.ToString(); + if (scope.ToString().ToUpperInvariant().StartsWith(text.ToUpperInvariant())) + { + result = true; + } + } + return result; + } + + public static bool DoesScopeIndicateThatTlsIsEnabled(Uri scope) + { + bool result = false; + if (scope != null && IsTransportSecurityScope(scope)) + { + StringBuilder stringBuilder = new StringBuilder(); + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("tls/"); + string text = stringBuilder.ToString(); + if (bool.TryParse(scope.ToString().ToUpperInvariant().Replace(text.ToUpperInvariant(), string.Empty), out var result2)) + { + result = result2; + } + } + return result; + } + + public static Uri GetSolutionScope(string solutionName) + { + StringBuilder stringBuilder = new StringBuilder(); + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("asbsolution/"); + stringBuilder.Append(solutionName); + return new Uri(stringBuilder.ToString()); + } + + public static Uri GetSourceIdScope(ushort sourceId) + { + StringBuilder stringBuilder = new StringBuilder(); + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("sourceid/"); + stringBuilder.Append(sourceId.ToString(CultureInfo.InvariantCulture)); + return new Uri(stringBuilder.ToString()); + } + + public static Uri[] GetStandardServiceScope(string instanceName, string nodeName, string solutionName, BindingType bindingType, IEnumerable sourceIds, IEnumerable associationTypes, IEnumerable hierarchyIds, IEnumerable hierarchyNames, IEnumerable customScopes, bool tlsEnabled = false) + { + List list = new List(); + StringBuilder stringBuilder = new StringBuilder(); + if (!string.IsNullOrEmpty(solutionName)) + { + list.Add(GetSolutionScope(solutionName)); + } + Uri item; + if (bindingType != BindingType.Custom) + { + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("servicebinding/"); + stringBuilder.Append(bindingType.ToString()); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + } + if (!string.IsNullOrEmpty(nodeName)) + { + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("asbnode/"); + stringBuilder.Append(nodeName); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + } + if (!string.IsNullOrEmpty(instanceName)) + { + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("instancename/"); + stringBuilder.Append(instanceName); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + } + if (sourceIds != null) + { + foreach (ushort sourceId in sourceIds) + { + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("sourceid/"); + stringBuilder.Append(sourceId.ToString(CultureInfo.InvariantCulture)); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + } + } + if (associationTypes != null) + { + foreach (string associationType in associationTypes) + { + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("associationType/"); + stringBuilder.Append(associationType); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + } + } + if (hierarchyIds != null) + { + foreach (ushort hierarchyId in hierarchyIds) + { + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("hierarchyId/"); + stringBuilder.Append(hierarchyId.ToString(CultureInfo.InvariantCulture)); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + } + } + if (hierarchyNames != null) + { + foreach (string hierarchyName in hierarchyNames) + { + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("hierarchy/"); + stringBuilder.Append(hierarchyName); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + } + } + stringBuilder.Clear(); + stringBuilder.Append("archestra://asb/"); + stringBuilder.Append("tls/"); + stringBuilder.Append(tlsEnabled ? "true" : "false"); + item = new Uri(stringBuilder.ToString()); + stringBuilder.Clear(); + list.Add(item); + if (customScopes != null) + { + foreach (Uri customScope in customScopes) + { + list.Add(customScope); + } + } + return list.ToArray(); + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Extensions/DataExtensions.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Extensions/DataExtensions.cs new file mode 100644 index 0000000..1f977f2 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Extensions/DataExtensions.cs @@ -0,0 +1,138 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.Text; + +namespace ArchestrAServices.Common.Extensions; + +public static class DataExtensions +{ + public static string ToBase64(this string value) + { + return Convert.ToBase64String(Encoding.UTF8.GetBytes(value)); + } + + public static string FromBase64(this string value) + { + string result = string.Empty; + if (value != null) + { + byte[] bytes = Convert.FromBase64String(value); + result = Encoding.UTF8.GetString(bytes); + } + return result; + } + + public static string FromByteArrayToBase64(this byte[] value) + { + string result = string.Empty; + try + { + result = Convert.ToBase64String(value); + } + catch (Exception ex) + { + Trace.WriteLine(ex.Message); + } + return result; + } + + public static string FromByteArrayToHex(this byte[] value) + { + StringBuilder stringBuilder = new StringBuilder(); + if (value != null) + { + foreach (byte b in value) + { + stringBuilder.Append(b.ToString("X2", CultureInfo.CurrentCulture)); + } + } + return stringBuilder.ToString(); + } + + public static byte[] FromBase64ToByteArray(this string value) + { + byte[] result = null; + if (value != null) + { + try + { + result = Convert.FromBase64String(value); + } + catch (Exception ex) + { + Trace.WriteLine(ex.Message); + } + } + return result; + } + + public static byte[] FromHexToByteArray(this string value) + { + List list = new List(); + if (value != null) + { + string text = value.Replace(" ", string.Empty); + text = text.Replace("\r", string.Empty); + text = text.Replace("\n", string.Empty); + if (text.Length % 2 == 0) + { + for (int i = 0; i < text.Length; i += 2) + { + if (byte.TryParse(text.Substring(i, 2), NumberStyles.HexNumber, CultureInfo.InvariantCulture, out var result)) + { + list.Add(result); + } + } + } + } + return list.ToArray(); + } + + public static byte[] Concatenate(this byte[] value, byte[] other) + { + if (value == null) + { + throw new ArgumentNullException("value"); + } + if (other == null) + { + throw new ArgumentNullException("other"); + } + List list = new List(); + list.AddRange(value); + list.AddRange(other); + return list.ToArray(); + } + + public static int CompareTo(this byte[] value, byte[] other) + { + if (value == null) + { + throw new ArgumentNullException("value"); + } + if (other == null) + { + throw new ArgumentNullException("other"); + } + int num = -1; + if (value.Length == other.Length) + { + num = 0; + for (int i = 0; i < value.Length; i++) + { + if (num != 0) + { + break; + } + if (value[i] != other[i]) + { + num = -1; + } + } + } + return num; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Extensions/StringExtensions.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Extensions/StringExtensions.cs new file mode 100644 index 0000000..35e757b --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common.Extensions/StringExtensions.cs @@ -0,0 +1,33 @@ +using System; +using System.Xml; + +namespace ArchestrAServices.Common.Extensions; + +public static class StringExtensions +{ + public static int CompareTo(this XmlQualifiedName value, XmlQualifiedName other) + { + int num = 0; + if (value != null && other != null) + { + num = value.IsEmpty.CompareTo(other.IsEmpty); + if (num == 0) + { + num = string.Compare(value.Namespace, other.Namespace, StringComparison.Ordinal); + if (num == 0) + { + num = string.Compare(value.Name, other.Name, StringComparison.Ordinal); + } + } + } + else if (value == null && other != null) + { + num = -1; + } + else if (value != null) + { + num = 1; + } + return num; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBConfigurationInformation.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBConfigurationInformation.cs new file mode 100644 index 0000000..e471329 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBConfigurationInformation.cs @@ -0,0 +1,100 @@ +using System; +using System.Security.Cryptography; +using System.Text; + +namespace ArchestrAServices.Common; + +public class ASBConfigurationInformation +{ + private const string DefaultCryptoGenerator = "22"; + + private const int DefaultKeySize = 256; + + private const string DefaultPrime768 = "1552518092300708935130918131258481755631334049434514313202351194902966239949102107258669453876591642442910007680288864229150803718918046342632727613031282983744380820890196288509170691316593175367469551763119843371637221007210577919"; + + private const string DefaultHashAlgorithm = "None"; + + private const int DefaultPasswordIterations = 1; + + private const string DefaultSaltValue = "s@1tValue"; + + private const string DefaultInitializationVector = "ba172e9941be138b"; + + public string SolutionName { get; set; } + + public string Generator { get; set; } + + public string Prime { get; set; } + + public string HashAlgorithm { get; set; } + + public string InitializationVector { get; set; } + + public string SaltValue { get; set; } + + public int PasswordDerivationIterations { get; set; } + + public int KeySize { get; set; } + + public string EncryptedSharedSecret { get; set; } + + public string EncryptedCertificate { get; set; } + + public string IsDefault { get; set; } + + public string SRNodeName { get; set; } + + public string PrimaryGlobalDiscovery { get; set; } + + public string SecondaryGlobalDiscovery { get; set; } + + public string PrimaryUniversalDiscovery { get; set; } + + public string SecondaryUniversalDiscovery { get; set; } + + public ASBConfigurationInformation() + { + Generator = "22"; + KeySize = 256; + Prime = "1552518092300708935130918131258481755631334049434514313202351194902966239949102107258669453876591642442910007680288864229150803718918046342632727613031282983744380820890196288509170691316593175367469551763119843371637221007210577919"; + HashAlgorithm = "None"; + PasswordDerivationIterations = 1; + SaltValue = "s@1tValue"; + InitializationVector = "ba172e9941be138b"; + } + + public static string GetNewSharedSecret(int length) + { + if (length < 1) + { + throw new ArgumentOutOfRangeException("length"); + } + StringBuilder stringBuilder = new StringBuilder(length); + RNGCryptoServiceProvider rNGCryptoServiceProvider = new RNGCryptoServiceProvider(); + try + { + char[] array = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".ToCharArray(); + byte[] array2 = new byte[1]; + for (int i = 0; i < length; i++) + { + do + { + rNGCryptoServiceProvider.GetBytes(array2); + } + while (!IsFairRandomNumber(array2[0], array.Length)); + stringBuilder.Append(array[array2[0] % array.Length]); + } + } + finally + { + rNGCryptoServiceProvider.Dispose(); + } + return stringBuilder.ToString(); + } + + private static bool IsFairRandomNumber(byte randomNumber, int numChars) + { + int num = 255 / numChars; + return randomNumber < numChars * num; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBCustomLoggingConfigurationParser.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBCustomLoggingConfigurationParser.cs new file mode 100644 index 0000000..53420e4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBCustomLoggingConfigurationParser.cs @@ -0,0 +1,98 @@ +using System; +using System.Diagnostics; +using System.IO; +using System.Xml.Linq; + +namespace ArchestrAServices.Common; + +internal class ASBCustomLoggingConfigurationParser +{ + public static void Parse(ConfiguredLogger logger) + { + if (logger == null) + { + return; + } + string uri = Path.Combine(Environment.CurrentDirectory, logger.ComponentName + ".logger.config"); + try + { + XDocument xDocument = XDocument.Load(uri); + if (xDocument == null) + { + return; + } + XElement xElement = xDocument.Element("configuration"); + if (xElement == null) + { + return; + } + XElement xElement2 = xElement.Element("asb.diagnostics"); + if (xElement2 != null) + { + XElement xElement3 = xElement2.Element("sources"); + if (xElement3 != null) + { + ParseSources(logger, xElement3); + } + } + } + catch (Exception) + { + } + } + + private static void ParseSources(ConfiguredLogger logger, XElement sourcesElement) + { + try + { + foreach (XElement item in sourcesElement.Elements("source")) + { + XAttribute xAttribute = item.Attribute("name"); + XAttribute xAttribute2 = item.Attribute("switchValue"); + if (xAttribute == null || xAttribute2 == null) + { + continue; + } + SourceLevels newLevel = SourceLevels.Off; + try + { + newLevel = (SourceLevels)Enum.Parse(typeof(SourceLevels), xAttribute2.Value); + } + catch (ArgumentException) + { + } + TraceSource traceSource = logger.ChangeSourceLevel(xAttribute.Value, newLevel); + if (traceSource == null) + { + continue; + } + XElement xElement = item.Element("listeners"); + if (xElement == null) + { + continue; + } + foreach (XElement item2 in xElement.Elements("add")) + { + XAttribute xAttribute3 = item2.Attribute("type"); + item2.Attribute("traceOutputOptions"); + XAttribute xAttribute4 = item2.Attribute("initializeData"); + if (xAttribute3 != null) + { + string value = xAttribute3.Value; + if (value == "aaLoggerETWListner" && xAttribute4 != null) + { + string value2 = xAttribute4.Value; + traceSource.Listeners.Remove(value2); + aaLoggerListner aaLoggerListner2 = new aaLoggerListner(value2, logger.ComponentName); + aaLoggerListner2.Name = value2; + traceSource.Listeners.Add(aaLoggerListner2); + } + } + } + } + } + catch (Exception) + { + } + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBEndpointDescription.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBEndpointDescription.cs new file mode 100644 index 0000000..1dbe036 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ASBEndpointDescription.cs @@ -0,0 +1,13 @@ +using System; +using System.ServiceModel.Channels; + +namespace ArchestrAServices.Common; + +public struct ASBEndpointDescription(Uri Address, string Interface, Binding Binding) +{ + public Uri EndpointAddress = Address; + + public string EndpointInterface = Interface; + + public Binding EndpointBinding = Binding; +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ArchestraSafeHandle.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ArchestraSafeHandle.cs new file mode 100644 index 0000000..144bc12 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ArchestraSafeHandle.cs @@ -0,0 +1,36 @@ +using System; +using System.Runtime.ConstrainedExecution; +using System.Security.Permissions; +using Microsoft.Win32.SafeHandles; + +namespace ArchestrAServices.Common; + +[SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode = true)] +[SecurityPermission(SecurityAction.Demand, UnmanagedCode = true)] +internal class ArchestraSafeHandle : SafeHandleZeroOrMinusOneIsInvalid +{ + internal static ArchestraSafeHandle Empty => new ArchestraSafeHandle(); + + internal IntPtr Handle + { + get + { + return handle; + } + set + { + SetHandle(value); + } + } + + private ArchestraSafeHandle() + : base(ownsHandle: true) + { + } + + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] + protected override bool ReleaseHandle() + { + return NativeMethods.CloseHandle(handle); + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfigFileWatcher.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfigFileWatcher.cs new file mode 100644 index 0000000..4ec24f6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfigFileWatcher.cs @@ -0,0 +1,90 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; + +namespace ArchestrAServices.Common; + +public sealed class ConfigFileWatcher : IDisposable +{ + private static readonly ConfigFileWatcher theInstance = new ConfigFileWatcher(); + + private readonly List eventHandlers = new List(); + + private bool disposed; + + private FileSystemWatcher watcher; + + private ConfigFileWatcher() + { + string directoryName = Path.GetDirectoryName(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile); + string fileName = Path.GetFileName(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile); + if (string.IsNullOrWhiteSpace(directoryName) || string.IsNullOrWhiteSpace(fileName)) + { + throw new ArgumentException("Invalid configuration file path."); + } + watcher = new FileSystemWatcher(directoryName, fileName); + AppDomain.CurrentDomain.ProcessExit += delegate + { + Dispose(); + }; + } + + public static void AddHandler(FileSystemEventHandler eventHandler) + { + theInstance.RegisterHandler(eventHandler); + } + + public static void RemoveHandler(FileSystemEventHandler eventHandler) + { + theInstance.UnRegisterHandler(eventHandler); + } + + public void Dispose() + { + Dispose(disposing: true); + } + + private void RegisterHandler(FileSystemEventHandler eventHandler) + { + if (watcher != null) + { + watcher.Changed += eventHandler; + eventHandlers.Add(eventHandler); + watcher.EnableRaisingEvents = true; + } + } + + private void UnRegisterHandler(FileSystemEventHandler eventHandler) + { + if (watcher != null) + { + watcher.Changed -= eventHandler; + eventHandlers.Remove(eventHandler); + if (!eventHandlers.Any()) + { + watcher.EnableRaisingEvents = false; + } + } + } + + private void Dispose(bool disposing) + { + if (disposed) + { + return; + } + if (disposing && watcher != null) + { + foreach (FileSystemEventHandler eventHandler in eventHandlers) + { + watcher.Changed -= eventHandler; + } + watcher.EnableRaisingEvents = false; + watcher.Dispose(); + watcher = null; + eventHandlers.Clear(); + } + disposed = true; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfigurationRepository.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfigurationRepository.cs new file mode 100644 index 0000000..e9f4edc --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfigurationRepository.cs @@ -0,0 +1,131 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Xml.Linq; + +namespace ArchestrAServices.Common; + +public class ConfigurationRepository +{ + private readonly Dictionary configurationRepositoryInternal = new Dictionary(); + + public ConfigurationRepository() + { + configurationRepositoryInternal = new Dictionary(); + Initialize(); + } + + public static string ExtractValueFromKey(XElement configuration, string key, string defaultValue) + { + string text = LookupKeyInElement(configuration, "ServiceParameters", key); + if (string.IsNullOrEmpty(text)) + { + text = LookupKeyInElement(configuration, "CustomData", key); + } + if (string.IsNullOrEmpty(text)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 2, $"ExtractValueFromKey cannot find key '{key}', using default '{defaultValue}'"); + text = defaultValue; + } + return text; + } + + public void InsertExtractedParameter(XElement configuration, string Name, string DefaultValue = null) + { + if (string.IsNullOrEmpty(DefaultValue)) + { + DefaultValue = GetParameter(Name); + } + string value = ExtractValueFromKey(configuration, Name, DefaultValue); + configurationRepositoryInternal[Name] = value; + } + + public void InsertParameter(string Name, string Value) + { + configurationRepositoryInternal[Name] = Value; + } + + public string GetParameter(string Name) + { + string result = string.Empty; + if (configurationRepositoryInternal.ContainsKey(Name)) + { + result = configurationRepositoryInternal[Name]; + } + return result; + } + + public string GetParameter(string Name, string DefaultValue) + { + string text = GetParameter(Name); + if (string.IsNullOrEmpty(text)) + { + text = DefaultValue; + } + return text; + } + + private static string LookupKeyInElement(XElement configuration, string OuterElement, string key) + { + string empty = string.Empty; + try + { + string text = (from ServiceParameters in configuration.Element(OuterElement).Elements("Parameter") + where key == ServiceParameters.Attribute("name").Value + select ServiceParameters.Attribute("value").Value).First(); + if (text != null && text.Length > 0) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 3, $"ExtractValueFromKey extracting value '{text}' from key '{key}'"); + empty = text; + } + else + { + empty = string.Empty; + } + } + catch (Exception ex) + { + empty = string.Empty; + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"Exception raised : {ex.Message}"); + } + return empty; + } + + private void Initialize() + { + InsertParameter("netTcpBinding.Security.Mode", "None"); + InsertParameter("netTcpBinding.TransferMode", "Buffered"); + InsertParameter("netTcpBinding.MaxReceivedMessageSize", int.MaxValue.ToString()); + InsertParameter("netTcpBinding.MaxBufferSize", int.MaxValue.ToString()); + InsertParameter("netTcpBinding.MaxBufferPoolSize", long.MaxValue.ToString()); + InsertParameter("netTcpBinding.ReaderQuotas.MaxArrayLength", int.MaxValue.ToString()); + InsertParameter("netTcpBinding.ReaderQuotas.MaxBytesPerRead", int.MaxValue.ToString()); + InsertParameter("netTcpBinding.ReaderQuotas.MaxDepth", int.MaxValue.ToString()); + InsertParameter("netTcpBinding.ReaderQuotas.MaxNameTableCharCount", int.MaxValue.ToString()); + InsertParameter("netTcpBinding.ReaderQuotas.MaxStringContentLength", int.MaxValue.ToString()); + InsertParameter("netTcpBinding.OpenTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("netTcpBinding.ReceiveTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("netTcpBinding.SendTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("netTcpBinding.CloseTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("netTcpBinding.ReliableSession.InactivityTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("HttpBinding.Security.Mode", "None"); + InsertParameter("HttpBinding.AllowCookies", "false"); + InsertParameter("HttpBinding.BypassProxyOnLocal", "true"); + InsertParameter("HttpBinding.HostNameComparisonMode", "StrongWildcard"); + InsertParameter("HttpBinding.MessageEncoding", "Text"); + InsertParameter("HttpBinding.MaxReceivedMessageSize", int.MaxValue.ToString()); + InsertParameter("HttpBinding.MaxBufferPoolSize", long.MaxValue.ToString()); + InsertParameter("HttpBinding.ReaderQuotas.MaxArrayLength", int.MaxValue.ToString()); + InsertParameter("HttpBinding.ReaderQuotas.MaxBytesPerRead", int.MaxValue.ToString()); + InsertParameter("HttpBinding.ReaderQuotas.MaxDepth", int.MaxValue.ToString()); + InsertParameter("HttpBinding.ReaderQuotas.MaxNameTableCharCount", int.MaxValue.ToString()); + InsertParameter("HttpBinding.ReaderQuotas.MaxStringContentLength", int.MaxValue.ToString()); + InsertParameter("HttpBinding.OpenTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("HttpBinding.ReceiveTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("HttpBinding.SendTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("HttpBinding.CloseTimeout", new TimeSpan(0, 1, 0).ToString()); + InsertParameter("HttpBinding.ReliableSession.InactivityTimeout", new TimeSpan(0, 1, 0).ToString()); + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfiguredLogger.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfiguredLogger.cs new file mode 100644 index 0000000..8c2135c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ConfiguredLogger.cs @@ -0,0 +1,64 @@ +using System.Collections.Generic; +using System.Diagnostics; + +namespace ArchestrAServices.Common; + +public class ConfiguredLogger +{ + private Dictionary TraceSourceMap; + + public string ComponentName { get; set; } + + public ConfiguredLogger(string componentName) + { + TraceSourceMap = new Dictionary(); + ComponentName = componentName; + AddCustomTraceSource("DataFlowLogs", SvcTrace.DiagData, "LogTraceType"); + AddCustomTraceSource("ControlFlowLogs", SvcTrace.DiagControl, "LogInfoType"); + AddCustomTraceSource("CommandLogs", SvcTrace.DiagCommand, "ASBCommand"); + AddCustomTraceSource("ExceptionLogs", SvcTrace.DiagException, "ASBException"); + AddCustomTraceSource("DiagnosticsLogs", SvcTrace.DiagDiagnostics, "ASBDiagnostic"); + } + + public void AddCustomTraceSource(string name, TraceSource source, string logFlag, SourceLevels newLevel = SourceLevels.Off) + { + TraceSourceMap[name] = source; + bool flag = false; + foreach (TraceListener listener in source.Listeners) + { + if (listener.Name == logFlag) + { + flag = true; + break; + } + } + source.Listeners.Remove("Default"); + if (!flag) + { + aaLoggerListner aaLoggerListner2 = new aaLoggerListner(logFlag, ComponentName); + aaLoggerListner2.Name = logFlag; + aaLoggerListner2.SourceLevel = newLevel; + source.Listeners.Add(aaLoggerListner2); + if (source.Switch == null || source.Switch.DisplayName != name) + { + source.Switch = new SourceSwitch(name); + } + source.Switch.Level = SourceLevels.All; + } + } + + public TraceSource ChangeSourceLevel(string name, SourceLevels newLevel) + { + TraceSource value = null; + if (TraceSourceMap.TryGetValue(name, out value) && value.Switch != null) + { + value.Switch.Level = newLevel; + } + return value; + } + + public void ReloadConfiguration() + { + ASBCustomLoggingConfigurationParser.Parse(this); + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/DPUtility.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/DPUtility.cs new file mode 100644 index 0000000..2abe4b3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/DPUtility.cs @@ -0,0 +1,232 @@ +using System; +using System.Runtime.InteropServices; +using System.Text; + +namespace ArchestrAServices.Common; + +public class DPUtility +{ + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] + internal struct DATA_BLOB + { + public int cbData; + + public IntPtr pbData; + } + + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] + internal struct CRYPTPROTECT_PROMPTSTRUCT + { + public int cbSize; + + public int dwPromptFlags; + + public IntPtr hwndApp; + + public string szPrompt; + } + + public enum Store + { + USE_MACHINE_STORE = 1, + USE_USER_STORE + } + + private static IntPtr NullPtr = (IntPtr)0; + + private const int CRYPTPROTECT_UI_FORBIDDEN = 1; + + private const int CRYPTPROTECT_LOCAL_MACHINE = 4; + + private Store store; + + [DllImport("Crypt32.dll", CharSet = CharSet.Unicode, SetLastError = true)] + private static extern bool CryptProtectData(ref DATA_BLOB pDataIn, string szDataDescr, ref DATA_BLOB pOptionalEntropy, IntPtr pvReserved, ref CRYPTPROTECT_PROMPTSTRUCT pPromptStruct, int dwFlags, ref DATA_BLOB pDataOut); + + [DllImport("Crypt32.dll", CharSet = CharSet.Unicode, SetLastError = true)] + private static extern bool CryptUnprotectData(ref DATA_BLOB pDataIn, string szDataDescr, ref DATA_BLOB pOptionalEntropy, IntPtr pvReserved, ref CRYPTPROTECT_PROMPTSTRUCT pPromptStruct, int dwFlags, ref DATA_BLOB pDataOut); + + public DPUtility(Store tempStore) + { + store = tempStore; + } + + public byte[] Encrypt(byte[] plainText, byte[] optionalEntropy) + { + if (plainText == null || plainText.Length == 0) + { + if (optionalEntropy == null) + { + optionalEntropy = new byte[0]; + } + return new byte[0]; + } + DATA_BLOB pDataIn = default(DATA_BLOB); + DATA_BLOB pDataOut = default(DATA_BLOB); + DATA_BLOB pOptionalEntropy = default(DATA_BLOB); + CRYPTPROTECT_PROMPTSTRUCT ps = default(CRYPTPROTECT_PROMPTSTRUCT); + InitPromptstruct(ref ps); + try + { + try + { + int num = plainText.Length; + pDataIn.pbData = Marshal.AllocHGlobal(num); + if (IntPtr.Zero == pDataIn.pbData) + { + throw new Exception("Unable to allocate plaintext buffer."); + } + pDataIn.cbData = num; + Marshal.Copy(plainText, 0, pDataIn.pbData, num); + } + catch (Exception ex) + { + throw new Exception("Exception marshalling data. " + ex.Message); + } + int dwFlags; + if (Store.USE_MACHINE_STORE == store) + { + dwFlags = 5; + if (optionalEntropy == null) + { + optionalEntropy = new byte[0]; + } + try + { + int num2 = optionalEntropy.Length; + pOptionalEntropy.pbData = Marshal.AllocHGlobal(optionalEntropy.Length); + if (IntPtr.Zero == pOptionalEntropy.pbData) + { + throw new Exception("Unable to allocate entropy data buffer."); + } + Marshal.Copy(optionalEntropy, 0, pOptionalEntropy.pbData, num2); + pOptionalEntropy.cbData = num2; + } + catch (Exception ex2) + { + throw new Exception("Exception entropy marshalling data. " + ex2.Message); + } + } + else + { + dwFlags = 1; + } + if (!CryptProtectData(ref pDataIn, string.Empty, ref pOptionalEntropy, IntPtr.Zero, ref ps, dwFlags, ref pDataOut)) + { + throw new Exception("Encryption failed."); + } + if (IntPtr.Zero != pDataIn.pbData) + { + Marshal.FreeHGlobal(pDataIn.pbData); + } + if (IntPtr.Zero != pOptionalEntropy.pbData) + { + Marshal.FreeHGlobal(pOptionalEntropy.pbData); + } + } + catch (Exception ex3) + { + throw new Exception("Exception encrypting. " + ex3.Message); + } + byte[] array = new byte[pDataOut.cbData]; + Marshal.Copy(pDataOut.pbData, array, 0, pDataOut.cbData); + Marshal.FreeHGlobal(pDataOut.pbData); + return array; + } + + private void InitPromptstruct(ref CRYPTPROTECT_PROMPTSTRUCT ps) + { + ps.cbSize = Marshal.SizeOf(typeof(CRYPTPROTECT_PROMPTSTRUCT)); + ps.dwPromptFlags = 0; + ps.hwndApp = NullPtr; + ps.szPrompt = null; + } + + public byte[] Decrypt(byte[] cipherText, byte[] optionalEntropy) + { + if (cipherText == null || cipherText.Length == 0) + { + if (optionalEntropy == null) + { + optionalEntropy = new byte[0]; + } + return new byte[0]; + } + DATA_BLOB pDataOut = default(DATA_BLOB); + DATA_BLOB pDataIn = default(DATA_BLOB); + CRYPTPROTECT_PROMPTSTRUCT ps = default(CRYPTPROTECT_PROMPTSTRUCT); + InitPromptstruct(ref ps); + try + { + try + { + int num = cipherText.Length; + pDataIn.pbData = Marshal.AllocHGlobal(num); + if (IntPtr.Zero == pDataIn.pbData) + { + throw new Exception("Unable to allocate cipherText buffer."); + } + pDataIn.cbData = num; + Marshal.Copy(cipherText, 0, pDataIn.pbData, pDataIn.cbData); + } + catch (Exception ex) + { + throw new Exception("Exception marshalling data. " + ex.Message); + } + DATA_BLOB pOptionalEntropy = default(DATA_BLOB); + int dwFlags; + if (Store.USE_MACHINE_STORE == store) + { + dwFlags = 5; + if (optionalEntropy == null) + { + optionalEntropy = new byte[0]; + } + try + { + int num2 = optionalEntropy.Length; + pOptionalEntropy.pbData = Marshal.AllocHGlobal(num2); + if (IntPtr.Zero == pOptionalEntropy.pbData) + { + throw new Exception("Unable to allocate entropy buffer."); + } + pOptionalEntropy.cbData = num2; + Marshal.Copy(optionalEntropy, 0, pOptionalEntropy.pbData, num2); + } + catch (Exception ex2) + { + throw new Exception("Exception entropy marshalling data. " + ex2.Message); + } + } + else + { + dwFlags = 1; + } + if (!CryptUnprotectData(ref pDataIn, null, ref pOptionalEntropy, IntPtr.Zero, ref ps, dwFlags, ref pDataOut)) + { + throw new Exception("Decryption failed."); + } + if (IntPtr.Zero != pDataIn.pbData) + { + Marshal.FreeHGlobal(pDataIn.pbData); + } + if (IntPtr.Zero != pOptionalEntropy.pbData) + { + Marshal.FreeHGlobal(pOptionalEntropy.pbData); + } + } + catch (Exception ex3) + { + throw new Exception("Exception decrypting. " + ex3.Message); + } + byte[] array = new byte[pDataOut.cbData]; + Marshal.Copy(pDataOut.pbData, array, 0, pDataOut.cbData); + Marshal.FreeHGlobal(pDataOut.pbData); + return array; + } + + public byte[] GetOptionalEntropy() + { + return Encoding.Unicode.GetBytes("wonderware"); + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/DetachedProcess.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/DetachedProcess.cs new file mode 100644 index 0000000..ffd2d68 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/DetachedProcess.cs @@ -0,0 +1,182 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Runtime.InteropServices; +using System.Text; + +namespace ArchestrAServices.Common; + +public static class DetachedProcess +{ + private static class NativeMethods + { + public struct STARTUPINFO + { + public int cb; + + public string lpReserved; + + public string lpDesktop; + + public string lpTitle; + + public int dwX; + + public int dwY; + + public int dwXSize; + + public int dwXCountChars; + + public int dwYCountChars; + + public int dwFillAttribute; + + public int dwFlags; + + public short wShowWindow; + + public short cbReserved2; + + public IntPtr lpReserved2; + + public IntPtr hStdInput; + + public IntPtr hStdOutput; + + public IntPtr hStdError; + } + + public struct STARTUPINFOEX + { + public STARTUPINFO StartupInfo; + + public IntPtr lpAttributeList; + } + + public struct PROCESS_INFORMATION + { + public IntPtr hProcess; + + public IntPtr hThread; + + public int dwProcessID; + + public int dwThreadID; + } + + public struct SECURITY_ATTRIBUTES + { + public int Length; + + public IntPtr lpSecurityDescriptor; + + public bool bInheritHandle; + } + + public const uint ZERO_FLAG = 0u; + + public const uint CREATE_BREAKAWAY_FROM_JOB = 16777216u; + + public const uint CREATE_DEFAULT_ERROR_MODE = 67108864u; + + public const uint CREATE_NEW_CONSOLE = 16u; + + public const uint CREATE_NEW_PROCESS_GROUP = 512u; + + public const uint CREATE_NO_WINDOW = 134217728u; + + public const uint CREATE_PROTECTED_PROCESS = 262144u; + + public const uint CREATE_PRESERVE_CODE_AUTHZ_LEVEL = 33554432u; + + public const uint CREATE_SEPARATE_WOW_VDM = 4096u; + + public const uint CREATE_SHARED_WOW_VDM = 4096u; + + public const uint CREATE_SUSPENDED = 4u; + + public const uint CREATE_UNICODE_ENVIRONMENT = 1024u; + + public const uint DEBUG_ONLY_THIS_PROCESS = 2u; + + public const uint DEBUG_PROCESS = 1u; + + public const uint DETACHED_PROCESS = 8u; + + public const uint EXTENDED_STARTUPINFO_PRESENT = 524288u; + + public const uint INHERIT_PARENT_AFFINITY = 65536u; + + public const uint PROC_THREAD_ATTRIBUTE_HANDLE_LIST = 131074u; + + public const uint PROC_THREAD_ATTRIBUTE_PARENT_PROCESS = 131072u; + + public const uint FILE_ACCESS_WRITE = 1073741824u; + + public const int STARTF_USESTDHANDLES = 256; + + [DllImport("kernel32.dll", BestFitMapping = false, CharSet = CharSet.Auto, SetLastError = true)] + public static extern bool CreateProcess([MarshalAs(UnmanagedType.LPTStr)] string lpApplicationName, StringBuilder lpCommandLine, ref SECURITY_ATTRIBUTES lpProcessAttributes, ref SECURITY_ATTRIBUTES lpThreadAttributes, bool bInheritHandles, uint dwCreationFlags, IntPtr lpEnvironment, [MarshalAs(UnmanagedType.LPTStr)] string lpCurrentDirectory, [In] ref STARTUPINFOEX lpStartupInfo, out PROCESS_INFORMATION lpProcessInformation); + + [DllImport("kernel32.dll", SetLastError = true)] + [return: MarshalAs(UnmanagedType.Bool)] + public static extern bool InitializeProcThreadAttributeList(IntPtr lpAttributeList, int dwAttributeCount, int dwFlags, ref IntPtr lpSize); + + [DllImport("kernel32.dll", SetLastError = true)] + [return: MarshalAs(UnmanagedType.Bool)] + public static extern bool DeleteProcThreadAttributeList(IntPtr lpAttributeList); + + [DllImport("kernel32.dll", SetLastError = true)] + public static extern bool CloseHandle(IntPtr hHandle); + } + + public static Process Start(string executablePath, string commandLine) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Starting detached process {0} {1} with command '{2}'", Environment.CurrentDirectory, executablePath, commandLine); + NativeMethods.STARTUPINFOEX lpStartupInfo = default(NativeMethods.STARTUPINFOEX); + lpStartupInfo.StartupInfo.cb = Marshal.SizeOf((object)lpStartupInfo); + lpStartupInfo.lpAttributeList = IntPtr.Zero; + try + { + IntPtr lpSize = IntPtr.Zero; + if (NativeMethods.InitializeProcThreadAttributeList(IntPtr.Zero, 1, 0, ref lpSize) || lpSize == IntPtr.Zero) + { + return null; + } + IntPtr intPtr = Marshal.AllocHGlobal(lpSize); + if (!NativeMethods.InitializeProcThreadAttributeList(intPtr, 1, 0, ref lpSize)) + { + Marshal.FreeHGlobal(intPtr); + return null; + } + lpStartupInfo.lpAttributeList = intPtr; + NativeMethods.SECURITY_ATTRIBUTES lpProcessAttributes = default(NativeMethods.SECURITY_ATTRIBUTES); + lpProcessAttributes.Length = Marshal.SizeOf((object)lpProcessAttributes); + lpProcessAttributes.bInheritHandle = true; + StringBuilder lpCommandLine = new StringBuilder(commandLine); + if (NativeMethods.CreateProcess(executablePath, lpCommandLine, ref lpProcessAttributes, ref lpProcessAttributes, bInheritHandles: false, 8u, IntPtr.Zero, null, ref lpStartupInfo, out var lpProcessInformation)) + { + NativeMethods.CloseHandle(lpProcessInformation.hProcess); + NativeMethods.CloseHandle(lpProcessInformation.hThread); + return Process.GetProcessById(lpProcessInformation.dwProcessID); + } + int lastWin32Error = Marshal.GetLastWin32Error(); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, "Starting detached process {0} failed with error {1}", executablePath, lastWin32Error); + return null; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Detached process start failed: {0}", ex.Message); + return null; + } + finally + { + if (lpStartupInfo.lpAttributeList != IntPtr.Zero) + { + NativeMethods.DeleteProcThreadAttributeList(lpStartupInfo.lpAttributeList); + Marshal.FreeHGlobal(lpStartupInfo.lpAttributeList); + } + } + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/FingerprintedDataProtector.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/FingerprintedDataProtector.cs new file mode 100644 index 0000000..bc7b69c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/FingerprintedDataProtector.cs @@ -0,0 +1,125 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Management; +using System.Security; +using System.Security.Cryptography; +using System.Text; + +namespace ArchestrAServices.Common; + +public static class FingerprintedDataProtector +{ + private const string PrefixV1 = "____NCHENC___"; + + private static readonly byte[] AdditionalEntropy = Value; + + private static readonly UTF8Encoding Encoding = new UTF8Encoding(); + + private static byte[] Value => GetHash(string.Format(CultureInfo.InvariantCulture, "{0}, {1}", new object[2] + { + CpuId(), + BiosId() + }), string.Format(CultureInfo.InvariantCulture, "{0}, {1}", new object[2] + { + BaseId(), + DiskId() + })); + + public static string Protect(string data) + { + return Convert.ToBase64String(Protect(Encoding.GetBytes(AttachPrefix(data)))); + } + + public static byte[] Protect(byte[] data) + { + return ProtectedData.Protect(data, AdditionalEntropy, DataProtectionScope.LocalMachine); + } + + public static string Unprotect(string encoded) + { + return DetachPrefix(Encoding.GetString(Unprotect(Convert.FromBase64String(encoded)))); + } + + public static byte[] Unprotect(byte[] encoded) + { + return ProtectedData.Unprotect(encoded, AdditionalEntropy, DataProtectionScope.LocalMachine); + } + + private static string AttachPrefix(string toEncode) + { + return "____NCHENC___" + toEncode; + } + + private static string BaseId() + { + Dictionary dictionary = Identifier("Win32_BaseBoard", "Model", "Manufacturer", "Name", "SerialNumber"); + return string.Format(CultureInfo.InvariantCulture, "{0}-{1}-{2}-{3}", dictionary["Model"], dictionary["Manufacturer"], dictionary["Name"], dictionary["SerialNumber"]); + } + + private static string BiosId() + { + Dictionary dictionary = Identifier("Win32_BIOS", "Manufacturer", "IdentificationCode"); + return string.Format(CultureInfo.InvariantCulture, "{0}-{1}", new object[2] + { + dictionary["Manufacturer"], + dictionary["IdentificationCode"] + }); + } + + private static string CpuId() + { + Dictionary dictionary = Identifier("Win32_Processor", "UniqueId", "ProcessorId", "Name", "Manufacturer", "MaxClockSpeed"); + return string.Format(CultureInfo.InvariantCulture, "{0}-{1}-{2}-{3}-{4}", dictionary["UniqueId"], dictionary["ProcessorId"], dictionary["Name"], dictionary["Manufacturer"], dictionary["MaxClockSpeed"]); + } + + private static string DetachPrefix(string decoded) + { + if (decoded.Length > "____NCHENC___".Length && decoded.StartsWith("____NCHENC___", StringComparison.Ordinal)) + { + return decoded.Substring("____NCHENC___".Length); + } + throw new SecurityException("Invalid encoded string."); + } + + private static string DiskId() + { + Dictionary dictionary = Identifier("Win32_DiskDrive", "Model", "Manufacturer", "Signature", "TotalHeads"); + return string.Format(CultureInfo.InvariantCulture, "{0}-{1}-{2}-{3}", dictionary["Model"], dictionary["Manufacturer"], dictionary["Signature"], dictionary["TotalHeads"]); + } + + private static byte[] GetHash(string partOne, string partTwo) + { + byte[] bytes = new UTF8Encoding().GetBytes(partTwo); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(partOne, bytes); + return rfc2898DeriveBytes.GetBytes(16); + } + + private static Dictionary Identifier(string wmiClass, params string[] wmiProperties) + { + Dictionary dictionary = new Dictionary(wmiProperties.Length); + string[] array = wmiProperties; + foreach (string key in array) + { + dictionary[key] = string.Empty; + } + using ManagementClass managementClass = new ManagementClass(wmiClass); + foreach (ManagementObject item in managementClass.GetInstances().Cast()) + { + array = wmiProperties; + foreach (string text in array) + { + try + { + dictionary[text] = item[text].ToString(); + } + catch (Exception) + { + dictionary[text] = string.Empty; + } + } + } + return dictionary; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/HostNameValidator.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/HostNameValidator.cs new file mode 100644 index 0000000..aa4408d --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/HostNameValidator.cs @@ -0,0 +1,416 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Globalization; +using System.Linq; +using System.Net; + +namespace ArchestrAServices.Common; + +public class HostNameValidator +{ + public static bool IsValidHostAddress(string hostAddress) + { + bool result = false; + try + { + UriHostNameType uriHostNameType = Uri.CheckHostName(hostAddress); + if (uriHostNameType != UriHostNameType.Unknown) + { + result = true; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"The Host Address {hostAddress} is a valid {uriHostNameType}."); + } + else + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"The given host Address {hostAddress} is invalid"); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, ex.Message); + } + return result; + } + + public static bool IsValidIPAddress(string hostAddress) + { + bool result = false; + try + { + UriHostNameType uriHostNameType = Uri.CheckHostName(hostAddress); + if (uriHostNameType != UriHostNameType.Unknown) + { + result = true; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"The Host Address {hostAddress} is a valid {uriHostNameType}."); + } + else + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"The given host Address {hostAddress} is invalid"); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, ex.Message); + } + return result; + } + + public static bool IsValidFQDNAddress(string hostAddress) + { + bool result = false; + try + { + UriHostNameType uriHostNameType = Uri.CheckHostName(hostAddress); + if (uriHostNameType != UriHostNameType.Unknown) + { + result = true; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"The Host Address {hostAddress} is a valid {uriHostNameType}."); + } + else + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"The given host Address {hostAddress} is invalid"); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, ex.Message); + } + return result; + } + + public static bool IsValidNodeName(string nodeName) + { + bool result = false; + try + { + UriHostNameType uriHostNameType = Uri.CheckHostName(nodeName); + if (uriHostNameType != UriHostNameType.Unknown) + { + result = true; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"The node name {nodeName} is a valid {uriHostNameType}."); + } + else + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"The given node name Address {nodeName} is invalid"); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, ex.Message); + } + return result; + } + + public static bool IsEndpointEquals(string oldEndpoint, string newEndPoint) + { + bool flag = false; + try + { + if (string.IsNullOrEmpty(oldEndpoint) && string.IsNullOrEmpty(newEndPoint)) + { + return true; + } + if (string.IsNullOrEmpty(oldEndpoint) ^ string.IsNullOrEmpty(newEndPoint)) + { + return false; + } + string text = string.Empty; + string text2 = string.Empty; + int num = 0; + int num2 = 0; + Uri uri = new Uri(oldEndpoint); + if (null != uri) + { + text = GetHostName(uri.Host, returnSameHNIfNotAvailable: true); + num = uri.Port; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"Old endpoint host name {text}, and Port number: {num}"); + } + uri = new Uri(newEndPoint); + if (null != uri) + { + text2 = GetHostName(uri.Host, returnSameHNIfNotAvailable: true); + num2 = uri.Port; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"New endpoint host {text2}, and Port number: {num2}"); + } + if (string.Equals(text, text2, StringComparison.CurrentCultureIgnoreCase) && num == num2) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, $"{oldEndpoint} and {newEndPoint} are equal"); + return true; + } + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, $"{oldEndpoint} and {newEndPoint} are Not equal"); + return false; + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Information, 0, ex.Message); + return false; + } + } + + public static bool IsHostAddressEquals(string sourceHostAddr, string targetHostAddr) + { + bool flag = false; + try + { + if (string.IsNullOrEmpty(sourceHostAddr) && string.IsNullOrEmpty(targetHostAddr)) + { + return true; + } + if (string.IsNullOrEmpty(sourceHostAddr) ^ string.IsNullOrEmpty(targetHostAddr)) + { + return false; + } + string hostName = GetHostName(sourceHostAddr, returnSameHNIfNotAvailable: true); + string hostName2 = GetHostName(targetHostAddr, returnSameHNIfNotAvailable: true); + return string.Equals(hostName, hostName2, StringComparison.CurrentCultureIgnoreCase); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Information, 0, ex.Message); + return false; + } + } + + public static string GetHostName(string hostAddress, bool returnSameHNIfNotAvailable) + { + string text = string.Empty; + bool flag = false; + try + { + if (!string.IsNullOrEmpty(hostAddress) && IsValidHostAddress(hostAddress)) + { + if (IsLocalIPAddress(hostAddress)) + { + flag = true; + text = Environment.MachineName; + } + else + { + IPHostEntry hostEntry = Dns.GetHostEntry(hostAddress); + if (hostEntry != null) + { + flag = true; + string hostName = hostEntry.HostName; + if (!string.IsNullOrEmpty(hostName) && hostName.Contains('.')) + { + if (hostName.EndsWith(".")) + { + hostName = Dns.GetHostEntry(hostEntry.AddressList[0]).HostName; + } + text = hostName.Substring(0, hostName.IndexOf(".")); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"The HostName for {hostAddress} is : {text}"); + } + else + { + text = hostEntry.HostName; + } + } + } + } + else + { + flag = true; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, string.Format("The HostAddress is emtpy or invalid", hostAddress)); + } + } + catch (Exception ex) + { + text = string.Empty; + SvcTrace.DiagException.TraceEvent(TraceEventType.Information, 0, ex.Message); + } + finally + { + if (!flag) + { + if (returnSameHNIfNotAvailable) + { + text = hostAddress; + } + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, $"Couldn't find the DNS server for givem hostAddress {hostAddress} "); + } + } + return text; + } + + public static string GetHostName(string endPointAddress, bool returnSameHNIfNotAvailable, out int portNumber) + { + string result = string.Empty; + portNumber = 0; + try + { + if (!string.IsNullOrEmpty(endPointAddress)) + { + Uri uri = new Uri(endPointAddress); + if (null != uri) + { + result = GetHostName(uri.Host, returnSameHNIfNotAvailable); + portNumber = uri.Port; + } + } + } + catch (Exception ex) + { + result = string.Empty; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"Invalid endpoint address {endPointAddress}."); + SvcTrace.DiagException.TraceEvent(TraceEventType.Information, 0, ex.Message); + } + return result; + } + + public static bool IsLocalMachine(string baseAddress) + { + bool flag = false; + SvcTrace.DiagCommand.TraceEvent(TraceEventType.Information, 3, string.Format(CultureInfo.CurrentCulture, "IsLocalMachine called for URI {0} ", new object[1] { baseAddress })); + try + { + IPAddress[] hostAddresses = GetHostAddresses(new Uri(baseAddress)); + IPAddress[] hostAddresses2 = Dns.GetHostAddresses(Dns.GetHostName()); + IPAddress[] array = hostAddresses; + foreach (IPAddress iPAddress in array) + { + if (IPAddress.IsLoopback(iPAddress)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "IsLocalMachine: URI designates loopback, returning true")); + flag = true; + break; + } + IPAddress[] array2 = hostAddresses2; + foreach (IPAddress obj in array2) + { + if (iPAddress.Equals(obj)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "IsLocalMachine: URI designates localhost, returning true")); + flag = true; + break; + } + } + if (flag) + { + break; + } + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Critical, 0, string.Format(CultureInfo.CurrentCulture, "IsLocalMachine method has an exception {0}.", new object[1] { ex.Message })); + flag = false; + } + if (!flag) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "IsLocalMachine: URI designates foreign node, returning false")); + } + return flag; + } + + public static bool IsLocalIPAddress(string ipAddress) + { + bool result = false; + if (IsValidIPAddress(ipAddress)) + { + IPAddress[] addressList = Dns.GetHostEntry(string.Empty).AddressList; + for (int i = 0; i < addressList.Length; i++) + { + string b = addressList[i].ToString(); + if (string.Equals(ipAddress, b, StringComparison.CurrentCultureIgnoreCase)) + { + result = true; + break; + } + } + } + return result; + } + + public static IPAddress[] GetHostAddresses(Uri uri) + { + IPAddress[] result = new IPAddress[0]; + try + { + SvcTrace.DiagCommand.TraceEvent(TraceEventType.Information, 3, string.Format(CultureInfo.CurrentCulture, "GetHostAddresses called for URI {0} ", new object[1] { uri })); + UriBuilder uriBuilder = new UriBuilder(uri); + if (uriBuilder != null) + { + result = GetHostAddresses(uriBuilder.Host); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Critical, 0, string.Format(CultureInfo.CurrentCulture, "GetHostAddresses method has an exception {0}.", new object[1] { ex.Message })); + } + return result; + } + + public static IPAddress[] GetHostAddresses(string hostAddress) + { + IPAddress[] result = new IPAddress[0]; + try + { + if (hostAddress != null) + { + SvcTrace.DiagCommand.TraceEvent(TraceEventType.Information, 3, string.Format(CultureInfo.CurrentCulture, "GetHostAddresses called for hostname {0} ", new object[1] { hostAddress })); + if (hostAddress.StartsWith("localhost", ignoreCase: true, CultureInfo.CurrentCulture)) + { + hostAddress = hostAddress.Replace("localhost", Environment.MachineName); + } + result = Dns.GetHostAddresses(hostAddress.ToString()); + } + else + { + SvcTrace.DiagCommand.TraceEvent(TraceEventType.Information, 3, string.Format(CultureInfo.CurrentCulture, "GetHostAddresses called for 'null' hostname ")); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Critical, 0, string.Format(CultureInfo.CurrentCulture, "GetHostAddresses method has an exception {0}.", new object[1] { ex.Message })); + } + return result; + } + + public static bool IsRemoteNodeSameasSRNode(string remoteRepositoryNode, string defaultSRNodeName) + { + bool result = false; + try + { + string value = string.Empty; + if (string.IsNullOrEmpty(defaultSRNodeName)) + { + value = RegistryHandler.GetSrNode(out defaultSRNodeName); + } + if (string.IsNullOrEmpty(value) && IsValidNodeName(remoteRepositoryNode) && string.Equals(GetHostName(remoteRepositoryNode, returnSameHNIfNotAvailable: true), defaultSRNodeName, StringComparison.CurrentCultureIgnoreCase)) + { + result = true; + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Information, 0, $"IsRemoteNodeSameasSRNode failed: {ex.Message}"); + } + return result; + } + + public static bool IsValidateEndpointUri(string endpointAddr) + { + bool result = false; + try + { + if (string.IsNullOrEmpty(endpointAddr)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Endpoint address is empty or null"); + } + else if (Uri.IsWellFormedUriString(endpointAddr, UriKind.RelativeOrAbsolute)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"The endpoint address {endpointAddr} of the discovery service is valid URI address."); + result = true; + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"Invalid endpoint address '{endpointAddr}'."); + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, ex.Message); + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/IPAddressChangeEventHandler.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/IPAddressChangeEventHandler.cs new file mode 100644 index 0000000..91813b0 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/IPAddressChangeEventHandler.cs @@ -0,0 +1,3 @@ +namespace ArchestrAServices.Common; + +public delegate void IPAddressChangeEventHandler(); diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/IPAddressWatcher.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/IPAddressWatcher.cs new file mode 100644 index 0000000..d81fdae --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/IPAddressWatcher.cs @@ -0,0 +1,156 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net; +using System.Net.NetworkInformation; +using System.Net.Sockets; +using System.Threading; +using System.Threading.Tasks; + +namespace ArchestrAServices.Common; + +public class IPAddressWatcher : IDisposable +{ + private readonly ReaderWriterLockSlim cacheLock = new ReaderWriterLockSlim(); + + private List ipAddresses = new List(); + + private bool disposed; + + public event IPAddressChangeEventHandler AddressChangedEvent; + + public IPAddressWatcher() + { + ipAddresses = GetAllIpAddresses(); + } + + ~IPAddressWatcher() + { + Dispose(disposing: false); + } + + public void Start() + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Start watching for IP address changes"); + NetworkChange.NetworkAddressChanged += IpChangedEventHandler; + } + + public void Stop() + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Stop watching for IP address changes"); + NetworkChange.NetworkAddressChanged -= IpChangedEventHandler; + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + private static List GetAllIpAddresses() + { + List list = new List(); + NetworkInterface[] allNetworkInterfaces = NetworkInterface.GetAllNetworkInterfaces(); + for (int i = 0; i < allNetworkInterfaces.Length; i++) + { + foreach (UnicastIPAddressInformation unicastAddress in allNetworkInterfaces[i].GetIPProperties().UnicastAddresses) + { + if (unicastAddress.IsDnsEligible && unicastAddress.Address.AddressFamily == AddressFamily.InterNetwork) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, " Found IPV4 address = {0}", unicastAddress.Address); + list.Add(unicastAddress.Address); + } + } + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Found a total of {0} IPV4 addresses", list.Count); + return list; + } + + private bool HaveIpAddressesChanged() + { + bool flag = false; + List allIpAddresses = GetAllIpAddresses(); + if (allIpAddresses.Count != ipAddresses.Count) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "IP Address count has changed: current count = {0}, previous count = {1}", allIpAddresses.Count, ipAddresses.Count); + flag = true; + } + if (!flag) + { + foreach (IPAddress item in allIpAddresses) + { + if (!ipAddresses.Contains(item)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "IP Address has changed: new address = {0} did not previously exist", item); + flag = true; + break; + } + } + } + if (!flag) + { + foreach (IPAddress ipAddress in ipAddresses) + { + if (!allIpAddresses.Contains(ipAddress)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "IP Address has changed: old address = {0} no longer exists", ipAddress); + flag = true; + break; + } + } + } + if (flag) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "IP Addresses Previous: {0} and current {1}", string.Join(",", ipAddresses.Select((IPAddress a) => a.ToString())), string.Join(",", allIpAddresses.Select((IPAddress a) => a.ToString()))); + ipAddresses = allIpAddresses; + } + return flag; + } + + private void IpChangedEventHandler(object sender, EventArgs e) + { + cacheLock.EnterWriteLock(); + bool flag; + try + { + flag = HaveIpAddressesChanged(); + } + finally + { + cacheLock.ExitWriteLock(); + } + if (flag) + { + TriggerNetworkAddressChanged(); + } + } + + private Task TriggerNetworkAddressChanged() + { + IPAddressChangeEventHandler handler = this.AddressChangedEvent; + if (handler != null) + { + return Task.Factory.StartNew(delegate + { + handler(); + }); + } + return Task.Factory.StartNew(delegate + { + }); + } + + protected virtual void Dispose(bool disposing) + { + if (!disposed) + { + if (disposing && cacheLock != null) + { + cacheLock.Dispose(); + } + disposed = true; + } + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/Impersonator.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/Impersonator.cs new file mode 100644 index 0000000..76e4755 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/Impersonator.cs @@ -0,0 +1,56 @@ +using System; +using System.Runtime.InteropServices; +using System.Security.Principal; + +namespace ArchestrAServices.Common; + +public class Impersonator : IDisposable +{ + private WindowsImpersonationContext _impersonatedUser; + + private ArchestraSafeHandle _userHandle; + + public const int LOGON32_LOGON_INTERACTIVE = 2; + + public const int LOGON32_LOGON_SERVICE = 3; + + public const int LOGON32_PROVIDER_DEFAULT = 0; + + public Impersonator() + { + } + + public Impersonator(string userDomain, string userName, string password) + { + _userHandle = ArchestraSafeHandle.Empty; + IntPtr phToken = IntPtr.Zero; + if (!LogonUser(userName, userDomain, password, 2, 0, ref phToken)) + { + throw new ApplicationException("Could not impersonate user"); + } + _userHandle.Handle = phToken; + WindowsIdentity windowsIdentity = new WindowsIdentity(_userHandle.Handle); + _impersonatedUser = windowsIdentity.Impersonate(); + } + + public void Dispose() + { + if (_impersonatedUser != null) + { + _impersonatedUser.Undo(); + if (_userHandle != null && _userHandle.IsInvalid) + { + _userHandle.Dispose(); + } + } + } + + [DllImport("advapi32.dll", BestFitMapping = false, CharSet = CharSet.Auto, SetLastError = true)] + public static extern bool LogonUser(string lpszUserName, string lpszDomain, string lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken); + + [DllImport("kernel32.dll", CharSet = CharSet.Auto)] + public static extern bool CloseHandle(IntPtr handle); + + [DllImport("InteropUtils.dll", CallingConvention = CallingConvention.Cdecl)] + public static extern uint GetAdminUserDetails([MarshalAs(UnmanagedType.BStr)] out string pbstrOSDomainName, [MarshalAs(UnmanagedType.BStr)] out string pbstrOSUserName, [MarshalAs(UnmanagedType.BStr)] out string pbstrPassword); +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/NativeMethods.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/NativeMethods.cs new file mode 100644 index 0000000..02739ce --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/NativeMethods.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.ConstrainedExecution; +using System.Runtime.InteropServices; +using System.Security; + +namespace ArchestrAServices.Common; + +[SuppressUnmanagedCodeSecurity] +internal static class NativeMethods +{ + [DllImport("kernel32", SetLastError = true)] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] + internal static extern bool CloseHandle(IntPtr handle); +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/NetTcpBindingSecurityMode.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/NetTcpBindingSecurityMode.cs new file mode 100644 index 0000000..f409fed --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/NetTcpBindingSecurityMode.cs @@ -0,0 +1,8 @@ +namespace ArchestrAServices.Common; + +public enum NetTcpBindingSecurityMode +{ + None, + CredentialAuthentication, + CertificateEncryption +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryChangeFilter.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryChangeFilter.cs new file mode 100644 index 0000000..df18662 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryChangeFilter.cs @@ -0,0 +1,12 @@ +using System; + +namespace ArchestrAServices.Common; + +[Flags] +public enum RegistryChangeFilter +{ + SubKey = 1, + Attributes = 2, + Value = 4, + Security = 8 +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryHandler.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryHandler.cs new file mode 100644 index 0000000..4856a5f --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryHandler.cs @@ -0,0 +1,954 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Security; +using System.Security.AccessControl; +using System.Text; +using System.Xml.Linq; +using Microsoft.Win32; + +namespace ArchestrAServices.Common; + +public class RegistryHandler +{ + private static string asbInstallPath = string.Empty; + + private static string asbCoreServicesInstallPath = string.Empty; + + private static string managementServerAddress = string.Empty; + + public static string ASBSolutionsSubkey = string.Empty; + + public static string ASBRegistration = "NodeRegistration"; + + public static string LDSPort = "808"; + + public static string PGDSEndPoint = "PrimaryGlobalDiscovery"; + + public static string SGDSEndPoint = "SecondaryGlobalDiscovery"; + + public static string PUDSEndPoint = "PrimaryUniversalDiscovery"; + + public static string SUDSEndPoint = "SecondaryUniversalDiscovery"; + + public static string LDSEndPoint = "EndPointLocalDiscovery"; + + private static string Wow64OptionalLayer + { + get + { + if (!Environment.Is64BitProcess) + { + return string.Empty; + } + return "Wow6432Node\\"; + } + } + + public static string RegistryPath => "SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices\\"; + + public static string Registry32Path => "SOFTWARE\\ArchestrA\\ArchestrAServices\\"; + + public static string ASBSolutionPath => RegistryPath + ASBSolutionsSubkey; + + public static string ASBNodeRegistraion => $"{RegistryPath}{ASBRegistration}"; + + public static string ASBInstallPath + { + get + { + if (string.IsNullOrEmpty(asbInstallPath)) + { + try + { + asbInstallPath = Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices", "ASBInstallPath", string.Empty).ToString(); + } + catch (NullReferenceException) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ParentKey for ASBInstallPath key was not found in registry"); + } + } + return asbInstallPath; + } + } + + public static string AsbCoreServicesInstallPath + { + get + { + if (!string.IsNullOrEmpty(asbCoreServicesInstallPath)) + { + return asbCoreServicesInstallPath; + } + try + { + string text = Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices", "FwkInstallPath", string.Empty).ToString(); + if (!string.IsNullOrEmpty(text)) + { + asbCoreServicesInstallPath = Path.Combine(text, "CoreServices"); + } + } + catch (NullReferenceException) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ParentKey for FwkInstallPath key was not found in registry"); + } + return asbCoreServicesInstallPath; + } + } + + public static SecureCommunicationModes SecureCommunicationMode + { + get + { + try + { + string text = Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices", "SecureCommunicationMode", 0).ToString(); + if (!string.IsNullOrEmpty(text)) + { + int.TryParse(text, out var result); + return (SecureCommunicationModes)result; + } + } + catch + { + } + return SecureCommunicationModes.Never; + } + set + { + try + { + Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices", "SecureCommunicationMode", (int)value, RegistryValueKind.DWord); + } + catch + { + } + } + } + + public static bool AsbManagedCertificates + { + get + { + try + { + return Convert.ToBoolean(Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices", "ASBManagedCertificates", 1)); + } + catch + { + } + return true; + } + set + { + Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices", "ASBManagedCertificates", value, RegistryValueKind.DWord); + } + } + + public static int DefaultSslPort + { + get + { + try + { + return Convert.ToInt32(Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\WebApplications\\Default", "SslPort", 443)); + } + catch + { + } + return 443; + } + set + { + Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\WebApplications\\Default", "SslPort", value, RegistryValueKind.DWord); + } + } + + public static string ManagementServerAddress + { + get + { + try + { + if (string.IsNullOrEmpty(managementServerAddress)) + { + managementServerAddress = Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\" + Wow64OptionalLayer + "ArchestrA\\ArchestrAServices", "MSAddress", string.Empty).ToString(); + } + return managementServerAddress; + } + catch + { + } + return string.Empty; + } + } + + public static Uri MakeLDSProbeEndpointAddress(string NodeName) + { + return new Uri("net.tcp://" + NodeName + "/LDS/Probe"); + } + + public static Uri MakeLDSEndpointAddress(string NodeName) + { + return new Uri("net.tcp://" + NodeName + "/LDS"); + } + + public static string DeleteFromRegistry(string solutionName) + { + string SRNodeName; + string srNode = GetSrNode(solutionName, out SRNodeName); + if (!string.IsNullOrEmpty(srNode)) + { + return srNode; + } + if (SRNodeName.ToUpperInvariant() == Environment.MachineName.ToUpperInvariant()) + { + return "Cannot delete the SR node solution."; + } + string subkey = RegistryPath; + if (!string.IsNullOrEmpty(solutionName)) + { + subkey = ASBSolutionPath + solutionName; + } + try + { + Registry.LocalMachine.DeleteSubKeyTree(subkey); + return "Success"; + } + catch (ArgumentNullException ex) + { + return "Node Does not exist to delete: " + ex.Message; + } + catch (SecurityException ex2) + { + return "Security Error: " + ex2.Message; + } + catch (ArgumentException ex3) + { + return "Node Does not exist to delete: " + ex3.Message; + } + catch (ObjectDisposedException ex4) + { + return ex4.Message; + } + catch (UnauthorizedAccessException ex5) + { + return "UnauthorizedAccessException: " + ex5.Message; + } + } + + public static string CreateASBConfigInfoStructureInRegistry(ASBConfigurationInformation securityConfiguration, string srNode, bool isRegister) + { + try + { + if (securityConfiguration != null) + { + CreateSolutionKey(securityConfiguration); + CreateNodeRegistrationyKey(securityConfiguration, isRegister); + return "Success"; + } + return "Cannot write security configuration to registry: Please provide SecurityConfiguration"; + } + catch (UnauthorizedAccessException ex) + { + return "Cannot write security configuration to registry: " + ex.Message; + } + catch (SecurityException ex2) + { + return "Cannot write security configuration to registry: " + ex2.Message; + } + catch (IOException ex3) + { + return "Cannot write security configuration to registry: " + ex3.Message; + } + catch (ObjectDisposedException ex4) + { + return "Cannot write security configuration to registry: " + ex4.Message; + } + } + + public static string ReadASBConfigInfoStructureFromRegistry(string solutionName, out ASBConfigurationInformation securityConfiguration) + { + string empty = string.Empty; + string text = solutionName; + string DefaultSolutionName; + string defaultSolutionName = GetDefaultSolutionName(out DefaultSolutionName); + if (string.IsNullOrEmpty(solutionName)) + { + if (string.IsNullOrEmpty(defaultSolutionName)) + { + securityConfiguration = null; + return "Read of default ASBSolution requested, but no default on local machine"; + } + text = DefaultSolutionName; + } + RegistryKey registryKey = null; + using (RegistryKey registryKey2 = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32)) + { + registryKey = registryKey2.OpenSubKey(Registry32Path + "\\" + text); + registryKey2.Close(); + if (registryKey == null) + { + securityConfiguration = null; + return "ASBSolution " + text + " does not exist local machine"; + } + } + using (registryKey) + { + securityConfiguration = FillConfigurationFromRegistry(registryKey, text, DefaultSolutionName); + registryKey.Close(); + return empty; + } + } + + private static ASBConfigurationInformation FillConfigurationFromRegistry(RegistryKey asbSolutionKey, string solutionNameToRead, string defaultSolutionName) + { + if (asbSolutionKey == null) + { + return null; + } + ASBConfigurationInformation aSBConfigurationInformation = new ASBConfigurationInformation + { + SolutionName = solutionNameToRead + }; + try + { + aSBConfigurationInformation.Generator = asbSolutionKey.GetValue("Generator", string.Empty).ToString(); + aSBConfigurationInformation.Prime = asbSolutionKey.GetValue("Prime", string.Empty).ToString(); + aSBConfigurationInformation.HashAlgorithm = asbSolutionKey.GetValue("HashAlgorthim", string.Empty).ToString(); + aSBConfigurationInformation.InitializationVector = asbSolutionKey.GetValue("initailizationVector", string.Empty).ToString(); + aSBConfigurationInformation.SaltValue = asbSolutionKey.GetValue("saltValue", string.Empty).ToString(); + string s = asbSolutionKey.GetValue("passowordIterations", "0").ToString(); + aSBConfigurationInformation.PasswordDerivationIterations = int.Parse(s); + string s2 = asbSolutionKey.GetValue("keySize", "0").ToString(); + aSBConfigurationInformation.KeySize = int.Parse(s2); + try + { + DPUtility dPUtility = new DPUtility(DPUtility.Store.USE_MACHINE_STORE); + byte[] bytes = Encoding.Unicode.GetBytes("wonderware"); + byte[] cipherText = (byte[])asbSolutionKey.GetValue("sharedsecret", RegistryValueKind.Binary); + byte[] bytes2 = dPUtility.Decrypt(cipherText, bytes); + aSBConfigurationInformation.EncryptedSharedSecret = Encoding.Unicode.GetString(bytes2); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Reading and decrypting shared secret failed with exception {0}", ex.Message); + } + aSBConfigurationInformation.EncryptedCertificate = asbSolutionKey.GetValue("Certificate", RegistryValueKind.String).ToString(); + aSBConfigurationInformation.IsDefault = ((string.Compare(solutionNameToRead, defaultSolutionName, ignoreCase: true) == 0) ? "true" : "false"); + if (string.IsNullOrEmpty(GetSrNode(solutionNameToRead, out var SRNodeName))) + { + aSBConfigurationInformation.SRNodeName = SRNodeName; + } + } + catch (Exception ex2) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Failed to read a solution element for ASB Solution {0} with exception {1}", solutionNameToRead, ex2.Message); + } + return aSBConfigurationInformation; + } + + private static void CreateNodeRegistrationyKey(ASBConfigurationInformation securityConfiguration, bool isRegister) + { + RegistryKey registryKey = Registry.LocalMachine.CreateSubKey(ASBSolutionPath + securityConfiguration.SolutionName + "\\NodeRegistration", RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None); + Uri uri = MakeLDSEndpointAddress(securityConfiguration.SRNodeName); + if (registryKey != null) + { + SetSecurityParameter(uri.AbsoluteUri, registryKey, LDSEndPoint); + SetSecurityParameter(securityConfiguration.PrimaryGlobalDiscovery, registryKey, PGDSEndPoint); + SetSecurityParameter(securityConfiguration.SecondaryGlobalDiscovery, registryKey, SGDSEndPoint); + SetSecurityParameter(securityConfiguration.PrimaryUniversalDiscovery, registryKey, PUDSEndPoint); + SetSecurityParameter(securityConfiguration.SecondaryUniversalDiscovery, registryKey, SUDSEndPoint); + SetSecurityParameter(securityConfiguration.SRNodeName, registryKey, "ServiceRepositoryNode"); + registryKey.Close(); + registryKey.Dispose(); + } + if (isRegister && string.Compare(securityConfiguration.IsDefault, "true", StringComparison.OrdinalIgnoreCase) == 0) + { + RegistryKey registryKey2 = Registry.LocalMachine.CreateSubKey(RegistryPath + "NodeRegistration", RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None); + Uri uri2 = MakeLDSEndpointAddress(Environment.MachineName); + if (registryKey2 != null) + { + SetSecurityParameter(uri2.AbsoluteUri, registryKey2, LDSEndPoint); + SetSecurityParameter(securityConfiguration.PrimaryGlobalDiscovery, registryKey2, PGDSEndPoint); + SetSecurityParameter(securityConfiguration.SecondaryGlobalDiscovery, registryKey2, SGDSEndPoint); + SetSecurityParameter(securityConfiguration.PrimaryUniversalDiscovery, registryKey2, PUDSEndPoint); + SetSecurityParameter(securityConfiguration.SecondaryUniversalDiscovery, registryKey2, SUDSEndPoint); + SetSecurityParameter(securityConfiguration.SRNodeName, registryKey2, "ServiceRepositoryNode"); + CreateRootKey(securityConfiguration); + registryKey2.Close(); + registryKey2.Dispose(); + } + } + } + + private static void CreateRootKey(ASBConfigurationInformation securityConfiguration) + { + using RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(RegistryPath, RegistryKeyPermissionCheck.ReadWriteSubTree); + registryKey?.SetValue("DefaultASBSolution", securityConfiguration.SolutionName); + } + + private static void CreateSolutionKey(ASBConfigurationInformation securityConfiguration) + { + RegistryKey registryKey = Registry.LocalMachine.CreateSubKey(ASBSolutionPath + securityConfiguration.SolutionName, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None); + if (registryKey != null) + { + SetSecurityParameter(securityConfiguration.EncryptedCertificate, registryKey, "Certificate"); + SetSecurityParameter(securityConfiguration.Generator, registryKey, "Generator"); + SetSecurityParameter(securityConfiguration.HashAlgorithm, registryKey, "HashAlgorthim"); + SetSecurityParameter(securityConfiguration.InitializationVector, registryKey, "initailizationVector"); + SetSecurityParameter(securityConfiguration.SaltValue, registryKey, "saltValue"); + SetSecurityParameter(securityConfiguration.Prime, registryKey, "Prime"); + try + { + DPUtility dPUtility = new DPUtility(DPUtility.Store.USE_MACHINE_STORE); + byte[] bytes = Encoding.Unicode.GetBytes(securityConfiguration.EncryptedSharedSecret); + byte[] bytes2 = Encoding.Unicode.GetBytes("wonderware"); + byte[] value = dPUtility.Encrypt(bytes, bytes2); + registryKey.SetValue("sharedsecret", value, RegistryValueKind.Binary); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Failed to write passphrase to registry: {0}", ex.Message); + } + registryKey.SetValue("passowordIterations", securityConfiguration.PasswordDerivationIterations); + registryKey.SetValue("keySize", securityConfiguration.KeySize); + registryKey.Close(); + registryKey.Dispose(); + } + } + + private static void SetSecurityParameter(string securityConfiguration, RegistryKey solutionKey, string name) + { + if (!string.IsNullOrEmpty(securityConfiguration)) + { + solutionKey.SetValue(name, securityConfiguration); + } + else + { + solutionKey.SetValue(name, string.Empty); + } + } + + public static string CreateUniversalSolutionStructureInRegistry(ASBConfigurationInformation securityConfiguration) + { + string result = string.Empty; + try + { + if (securityConfiguration != null) + { + using RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(ASBSolutionPath, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryRights.SetValue); + if (registryKey == null) + { + result = "Cannot open parent registry key for creating the Universal Solution."; + } + else + { + using (RegistryKey registryKey2 = registryKey.OpenSubKey(securityConfiguration.SolutionName)) + { + if (registryKey2 == null) + { + CreateSolutionKey(securityConfiguration); + } + } + registryKey.SetValue("UniversalSolution", securityConfiguration.SolutionName, RegistryValueKind.String); + } + } + else + { + result = "Please provide details for configuring the Universal Solution."; + } + } + catch (UnauthorizedAccessException ex) + { + result = ex.Message; + } + catch (SecurityException ex2) + { + result = ex2.Message; + } + catch (IOException ex3) + { + result = ex3.Message; + } + catch (ObjectDisposedException ex4) + { + result = ex4.Message; + } + return result; + } + + public static string GetSrNode(out string SRNodeName) + { + SRNodeName = string.Empty; + RegistryKey registryKey = null; + string result = string.Empty; + try + { + registryKey = Registry.LocalMachine.OpenSubKey(RegistryPath + "NodeRegistration"); + object obj = null; + if (registryKey != null && (obj = registryKey.GetValue("ServiceRepositoryNode")) != null) + { + SRNodeName = obj.ToString(); + if (string.IsNullOrEmpty(SRNodeName)) + { + result = "Default SR Node name is empty"; + } + } + else + { + result = "Unable to open registry key " + RegistryPath + "NodeRegistration\\ServiceRepositoryNode"; + } + } + catch (UnauthorizedAccessException ex) + { + result = ex.Message; + } + catch (SecurityException ex2) + { + result = ex2.Message; + } + catch (IOException ex3) + { + result = ex3.Message; + } + catch (ObjectDisposedException ex4) + { + result = ex4.Message; + } + finally + { + registryKey?.Close(); + } + return result; + } + + public static bool GetSRInstalled() + { + bool result = false; + try + { + result = GetBinaryRegistryValue(RegistryPath, "SRInstalled"); + } + catch (Exception ex) when (ex is UnauthorizedAccessException || ex is SecurityException || ex is IOException || ex is ObjectDisposedException) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetSRInstalled: Unable to read SR installation status from registry, assuming false: {0}", ex.Message); + } + return result; + } + + public static bool GetManagementServerInstalled() + { + bool result = false; + try + { + result = GetBinaryRegistryValue(RegistryPath, "MSInstalled"); + } + catch (Exception ex) when (ex is UnauthorizedAccessException || ex is SecurityException || ex is IOException || ex is ObjectDisposedException) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetManagementServerInstalled: Unable to read Management Server installation status from registry, assuming false: {0}", ex.Message); + } + return result; + } + + public static string GetSrNode(string SolutionName, out string SRNodeName) + { + SRNodeName = string.Empty; + RegistryKey registryKey = null; + string result = string.Empty; + try + { + registryKey = Registry.LocalMachine.OpenSubKey(ASBSolutionPath + SolutionName + "\\NodeRegistration", writable: true); + object obj = null; + if (registryKey != null && (obj = registryKey.GetValue("ServiceRepositoryNode")) != null) + { + SRNodeName = obj.ToString(); + if (string.IsNullOrEmpty(SRNodeName)) + { + result = "Default SR Node name is empty"; + } + } + else + { + result = "Unable to open registry key " + ASBSolutionPath + SolutionName + "\\NodeRegistration\\ServiceRepositoryNode"; + } + } + catch (UnauthorizedAccessException ex) + { + result = ex.Message; + } + catch (SecurityException ex2) + { + result = ex2.Message; + } + catch (IOException ex3) + { + result = ex3.Message; + } + catch (ObjectDisposedException ex4) + { + result = ex4.Message; + } + finally + { + registryKey?.Close(); + } + return result; + } + + public static string GetDefaultSolutionName(out string DefaultSolutionName) + { + DefaultSolutionName = string.Empty; + RegistryKey registryKey = null; + string result = string.Empty; + try + { + registryKey = Registry.LocalMachine.OpenSubKey(RegistryPath, writable: false); + object obj = null; + if (registryKey != null && (obj = registryKey.GetValue("DefaultASBSolution")) != null) + { + DefaultSolutionName = obj.ToString(); + result = string.Empty; + } + else + { + result = "Unable to open registry key " + RegistryPath + "\\DefaultASBSolution"; + } + } + catch (UnauthorizedAccessException ex) + { + result = ex.Message; + } + catch (SecurityException ex2) + { + result = ex2.Message; + } + catch (IOException ex3) + { + result = ex3.Message; + } + catch (ObjectDisposedException ex4) + { + result = ex4.Message; + } + finally + { + registryKey?.Close(); + } + return result; + } + + public static string GetSolutionPassphrase(string asbSolution, out string passphrase) + { + passphrase = string.Empty; + string result = string.Empty; + if (string.IsNullOrEmpty(asbSolution)) + { + result = GetDefaultSolutionName(out asbSolution); + } + if (string.IsNullOrEmpty(asbSolution)) + { + passphrase = string.Empty; + return result; + } + RegistryKey registryKey = null; + try + { + registryKey = Registry.LocalMachine.OpenSubKey(ASBSolutionPath + asbSolution, writable: false); + object obj = null; + if (registryKey != null && (obj = registryKey.GetValue("sharedsecret")) != null) + { + try + { + byte[] bytes = new DPUtility(DPUtility.Store.USE_MACHINE_STORE).Decrypt(optionalEntropy: Encoding.Unicode.GetBytes("wonderware"), cipherText: (byte[])obj); + passphrase = Encoding.Unicode.GetString(bytes); + result = string.Empty; + } + catch (Exception) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Failed to read passphrase from registry."); + } + } + else + { + result = string.Format("Unable to find the passphrase for the solution: '{0}'. Confirm that local galaxy and remote galaxy (whose solution name is '{0}') have been paired", asbSolution); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Unable to open registry key {0}{1}\\sharedsecret", ASBSolutionPath, asbSolution); + } + } + catch (UnauthorizedAccessException ex2) + { + result = ex2.Message; + } + catch (SecurityException ex3) + { + result = ex3.Message; + } + catch (IOException ex4) + { + result = ex4.Message; + } + catch (ObjectDisposedException ex5) + { + result = ex5.Message; + } + finally + { + registryKey?.Close(); + } + return result; + } + + public static List EnumerateSolutionsAtThisNode() + { + _ = string.Empty; + List list = new List(); + RegistryKey registryKey = null; + try + { + registryKey = Registry.LocalMachine.OpenSubKey(ASBSolutionPath, writable: true); + if (registryKey != null) + { + string[] subKeyNames = registryKey.GetSubKeyNames(); + foreach (string text in subKeyNames) + { + if (string.Compare(text, ASBRegistration, ignoreCase: true) != 0) + { + list.Add(text); + } + } + } + else + { + _ = "Unable to open registry key " + ASBSolutionPath; + } + } + catch (UnauthorizedAccessException ex) + { + _ = ex.Message; + } + catch (SecurityException ex2) + { + _ = ex2.Message; + } + catch (IOException ex3) + { + _ = ex3.Message; + } + catch (ObjectDisposedException ex4) + { + _ = ex4.Message; + } + finally + { + registryKey?.Close(); + } + return list; + } + + public static List> ReadDiscoveryInfoFromRegistry(string asbSolutionName) + { + List> list = new List>(); + using (RegistryKey registryKey = Registry.LocalMachine.CreateSubKey(ASBSolutionPath + asbSolutionName + "\\" + ASBRegistration, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None)) + { + if (registryKey != null) + { + list.Add(new KeyValuePair(LDSEndPoint, registryKey.GetValue(LDSEndPoint, string.Empty).ToString())); + list.Add(new KeyValuePair(PGDSEndPoint, registryKey.GetValue(PGDSEndPoint, string.Empty).ToString())); + list.Add(new KeyValuePair(SGDSEndPoint, registryKey.GetValue(SGDSEndPoint, string.Empty).ToString())); + list.Add(new KeyValuePair(PUDSEndPoint, registryKey.GetValue(PUDSEndPoint, string.Empty).ToString())); + list.Add(new KeyValuePair(SUDSEndPoint, registryKey.GetValue(SUDSEndPoint, string.Empty).ToString())); + list.Add(new KeyValuePair("ServiceRepositoryNode", registryKey.GetValue("ServiceRepositoryNode", string.Empty).ToString())); + registryKey.Close(); + } + } + return list; + } + + public static bool SetDiscoveryInfoInRegistry(string solutionName, List> extraInfo, string srNode = null) + { + if (extraInfo == null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "SetDiscoveryInfoInRegistry: Unable to proceed with no info to set, not setting Discovery information"); + return false; + } + if (!string.IsNullOrEmpty(srNode)) + { + extraInfo.Add(new KeyValuePair("ServiceRepositoryNode", srNode)); + } + string text = solutionName; + if (!string.IsNullOrEmpty(GetDefaultSolutionName(out var DefaultSolutionName))) + { + DefaultSolutionName = string.Empty; + } + if (string.IsNullOrEmpty(text)) + { + text = DefaultSolutionName; + } + if (string.IsNullOrEmpty(text)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "SetDiscoveryInfoInRegistry: Default solution specified, but does not exist, not setting Discovery information"); + return false; + } + using (RegistryKey registryKey = Registry.LocalMachine.CreateSubKey(ASBSolutionPath + solutionName + "\\NodeRegistration", RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None)) + { + if (registryKey != null) + { + foreach (KeyValuePair item in extraInfo) + { + if (string.Compare(item.Key, LDSEndPoint) == 0 || string.Compare(item.Key, PGDSEndPoint) == 0 || string.Compare(item.Key, SGDSEndPoint) == 0 || string.Compare(item.Key, PUDSEndPoint) == 0 || string.Compare(item.Key, SUDSEndPoint) == 0 || string.Compare(item.Key, "ServiceRepositoryNode") == 0) + { + SetSecurityParameter(item.Value, registryKey, item.Key); + break; + } + } + registryKey.Close(); + } + } + if (string.Compare(text, DefaultSolutionName, ignoreCase: true) == 0) + { + using RegistryKey registryKey2 = Registry.LocalMachine.CreateSubKey(RegistryPath + "NodeRegistration", RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None); + if (registryKey2 != null) + { + foreach (KeyValuePair item2 in extraInfo) + { + if (string.Compare(item2.Key, LDSEndPoint) == 0 || string.Compare(item2.Key, PGDSEndPoint) == 0 || string.Compare(item2.Key, SGDSEndPoint) == 0 || string.Compare(item2.Key, PUDSEndPoint) == 0 || string.Compare(item2.Key, SUDSEndPoint) == 0 || string.Compare(item2.Key, "ServiceRepositoryNode") == 0) + { + SetSecurityParameter(item2.Value, registryKey2, item2.Key); + break; + } + } + registryKey2.Close(); + } + } + return true; + } + + public static void UpdateDiscoveryInfos(List> discoveryInfos) + { + UpdateDiscoverySingleRegKey(string.Empty, discoveryInfos); + if (string.IsNullOrEmpty(GetDefaultSolutionName(out var DefaultSolutionName))) + { + UpdateDiscoverySingleRegKey(DefaultSolutionName, discoveryInfos); + } + } + + private static void UpdateDiscoverySingleRegKey(string solutionName, List> discoveryInfos) + { + if (solutionName == null) + { + solutionName = string.Empty; + } + if (!string.IsNullOrEmpty(solutionName)) + { + solutionName += "\\"; + } + RegistryKey registryKey = Registry.LocalMachine.CreateSubKey(ASBSolutionPath + solutionName + "NodeRegistration", RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None); + if (registryKey == null) + { + return; + } + foreach (KeyValuePair discoveryInfo in discoveryInfos) + { + switch (discoveryInfo.Key) + { + case "PrimaryGlobalDiscovery": + WriteRegistryValue(registryKey, PGDSEndPoint, discoveryInfo.Value); + break; + case "SecondaryGlobalDiscovery": + WriteRegistryValue(registryKey, SGDSEndPoint, discoveryInfo.Value); + break; + case "PrimaryUniversalDiscovery": + WriteRegistryValue(registryKey, PUDSEndPoint, discoveryInfo.Value); + break; + case "SecondaryUniversalDiscovery": + WriteRegistryValue(registryKey, SUDSEndPoint, discoveryInfo.Value); + break; + } + } + } + + private static void WriteRegistryValue(RegistryKey solutionKey, string key, string value) + { + if (solutionKey != null) + { + if (!string.IsNullOrEmpty(value)) + { + solutionKey.SetValue(key, value); + } + else + { + solutionKey.SetValue(key, string.Empty); + } + } + } + + public static string GenerateXMLExtraInfo(List> Parameters) + { + XElement xElement = new XElement("extrainfo"); + if (Parameters != null) + { + foreach (KeyValuePair Parameter in Parameters) + { + XElement xElement2 = new XElement("parameter"); + xElement2.Add(new XAttribute("name", Parameter.Key)); + xElement2.Add(new XAttribute("value", Parameter.Value)); + xElement.Add(xElement2); + } + } + return xElement.ToString(); + } + + public static Dictionary ParseXMLExtraInfo(string XMLExtraInfo) + { + Dictionary dictionary = new Dictionary(); + if (!string.IsNullOrEmpty(XMLExtraInfo)) + { + XElement xElement = null; + using StringReader stringReader = new StringReader(XMLExtraInfo); + if (stringReader != null) + { + xElement = XElement.Load(stringReader); + } + if (xElement != null) + { + foreach (XElement item in xElement.Elements("parameter")) + { + XAttribute xAttribute = item.Attribute("name"); + XAttribute xAttribute2 = item.Attribute("value"); + if (xAttribute != null && xAttribute2 != null) + { + dictionary.Add(xAttribute.Value, xAttribute2.Value); + } + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"ParseXMLExtraInfo failed to parse XMLExtraInfo {XMLExtraInfo}"); + } + } + return dictionary; + } + + private static bool GetBinaryRegistryValue(string keyPath, string keyName) + { + bool result = false; + RegistryKey registryKey = null; + try + { + registryKey = Registry.LocalMachine.OpenSubKey(keyPath); + if (registryKey != null) + { + result = Convert.ToBoolean(registryKey.GetValue(keyName)); + } + registryKey?.Close(); + } + catch (Exception) + { + registryKey?.Close(); + throw; + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryWatcher.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryWatcher.cs new file mode 100644 index 0000000..dcba1c2 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/RegistryWatcher.cs @@ -0,0 +1,327 @@ +#define TRACE +using System; +using System.ComponentModel; +using System.Diagnostics; +using System.Runtime.InteropServices; +using System.Threading; +using Microsoft.Win32; + +namespace ArchestrAServices.Common; + +public class RegistryWatcher : IDisposable +{ + private IntPtr intPtrRegistryHive; + + private string strRegistrySubName; + + private object objThreadLock = new object(); + + private Thread workerThread; + + private bool bDisposed; + + private ManualResetEvent eventToTerminate = new ManualResetEvent(initialState: false); + + private bool bEnableRaisingEvents; + + private RegistryChangeFilter registryChangeFilter = RegistryChangeFilter.Value; + + private static readonly string wow64OptionalLayer = (Environment.Is64BitProcess ? "Wow6432Node\\" : string.Empty); + + private const int KEY_QUERY_VALUE = 1; + + private const int KEY_NOTIFY = 16; + + private const int STANDARD_RIGHTS_READ = 131072; + + private static readonly IntPtr HKEY_CLASSES_ROOT = new IntPtr(int.MinValue); + + private static readonly IntPtr HKEY_CURRENT_USER = new IntPtr(-2147483647); + + private static readonly IntPtr HKEY_LOCAL_MACHINE = new IntPtr(-2147483646); + + private static readonly IntPtr HKEY_USERS = new IntPtr(-2147483645); + + private static readonly IntPtr HKEY_PERFORMANCE_DATA = new IntPtr(-2147483644); + + private static readonly IntPtr HKEY_CURRENT_CONFIG = new IntPtr(-2147483643); + + private static readonly IntPtr HKEY_DYN_DATA = new IntPtr(-2147483642); + + public RegistryChangeFilter RegistryChangeNotifyFilter + { + get + { + return registryChangeFilter; + } + set + { + lock (objThreadLock) + { + if (IsMonitoring) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, "Monitoring thread is already running"); + } + else + { + registryChangeFilter = value; + } + } + } + } + + public bool EnableRaisingEvents + { + get + { + return bEnableRaisingEvents; + } + set + { + if (bEnableRaisingEvents != value) + { + if (value) + { + bEnableRaisingEvents = Start(); + return; + } + Stop(); + bEnableRaisingEvents = value; + } + } + } + + private bool IsMonitoring => workerThread != null; + + private event EventHandler changed; + + public event EventHandler Changed + { + add + { + lock (objThreadLock) + { + changed += value.Invoke; + } + } + remove + { + lock (objThreadLock) + { + changed -= value.Invoke; + } + } + } + + [DllImport("advapi32.dll", BestFitMapping = false, CharSet = CharSet.Auto, SetLastError = true)] + private static extern int RegOpenKeyEx(IntPtr hKey, string subKey, uint options, int samDesired, out IntPtr phkResult); + + [DllImport("advapi32.dll", SetLastError = true)] + private static extern int RegNotifyChangeKeyValue(IntPtr hKey, bool bWatchSubtree, RegistryChangeFilter dwNotifyFilter, IntPtr hEvent, bool fAsynchronous); + + [DllImport("advapi32.dll", SetLastError = true)] + private static extern int RegCloseKey(IntPtr hKey); + + protected virtual void OnChanged() + { + EventHandler eventHandler = this.changed; + if (eventHandler != null) + { + lock (objThreadLock) + { + eventHandler(this, null); + } + } + } + + public bool SetRegistryPath(RegistryHive registryHive, string subKey) + { + bool flag = false; + try + { + flag = InitAndValidateRegistryKey(registryHive, subKey); + } + catch (Exception ex) + { + flag = false; + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"SetRegistryPath exception: '{ex.Message}'"); + } + return flag; + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + private bool InitAndValidateRegistryKey(RegistryHive hive, string name) + { + bool flag = true; + switch (hive) + { + case RegistryHive.ClassesRoot: + intPtrRegistryHive = HKEY_CLASSES_ROOT; + break; + case RegistryHive.CurrentConfig: + intPtrRegistryHive = HKEY_CURRENT_CONFIG; + break; + case RegistryHive.CurrentUser: + intPtrRegistryHive = HKEY_CURRENT_USER; + break; + case RegistryHive.LocalMachine: + intPtrRegistryHive = HKEY_LOCAL_MACHINE; + break; + case RegistryHive.PerformanceData: + intPtrRegistryHive = HKEY_PERFORMANCE_DATA; + break; + case RegistryHive.Users: + intPtrRegistryHive = HKEY_USERS; + break; + default: + flag = false; + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, "Invalid rootkey for registry path"); + break; + } + if (flag) + { + RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(name); + if (registryKey != null) + { + strRegistrySubName = name; + registryKey.Close(); + } + else + { + flag = false; + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, "Invalid subkey for registry path"); + } + } + return flag; + } + + private bool Start() + { + bool result = false; + if (bDisposed) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 2, "This instance is already disposed"); + } + if (!string.IsNullOrEmpty(strRegistrySubName)) + { + IntPtr phkResult; + int num = RegOpenKeyEx(intPtrRegistryHive, strRegistrySubName, 0u, 131089, out phkResult); + if (phkResult != IntPtr.Zero) + { + RegCloseKey(phkResult); + } + if (num == 0) + { + lock (objThreadLock) + { + if (!IsMonitoring) + { + eventToTerminate.Reset(); + workerThread = new Thread(RegWatcherThread); + workerThread.IsBackground = true; + workerThread.Start(); + result = true; + } + } + } + } + return result; + } + + private void RegWatcherThread() + { + IntPtr phkResult = IntPtr.Zero; + try + { + if (RegOpenKeyEx(intPtrRegistryHive, strRegistrySubName, 0u, 131089, out phkResult) != 0) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, "RegOpenKeyEx is failed to open the given registry key path"); + } + AutoResetEvent autoResetEvent = new AutoResetEvent(initialState: false); + WaitHandle[] waitHandles = new WaitHandle[2] { autoResetEvent, eventToTerminate }; + int num = ReadWaitTimeout(); + while (!eventToTerminate.WaitOne(0, exitContext: true)) + { + int num2 = RegNotifyChangeKeyValue(phkResult, bWatchSubtree: true, registryChangeFilter, autoResetEvent.SafeWaitHandle.DangerousGetHandle(), fAsynchronous: true); + if (num2 != 0) + { + throw new Win32Exception(num2); + } + if (WaitHandle.WaitAny(waitHandles) == 0) + { + while (RegNotifyChangeKeyValue(phkResult, bWatchSubtree: true, RegistryChangeFilter.Value, autoResetEvent.SafeWaitHandle.DangerousGetHandle(), fAsynchronous: true) == 0 && WaitHandle.WaitAny(waitHandles, TimeSpan.FromSeconds(num)) == 0) + { + } + OnChanged(); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, "MonitorThread exception {0}", ex.Message); + } + finally + { + if (phkResult != IntPtr.Zero) + { + RegCloseKey(phkResult); + } + workerThread = null; + } + } + + private static int ReadWaitTimeout() + { + int result = 2; + try + { + using RegistryKey registryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\\" + wow64OptionalLayer + "ArchestrA\\ArchestrAServices", writable: false); + object obj = registryKey?.GetValue("DiscoveryChangeNotifyDelay"); + if (obj != null && !int.TryParse(obj.ToString(), out result)) + { + result = 2; + } + } + catch (Exception) + { + } + return result; + } + + private void Stop() + { + if (bDisposed) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 2, "This instance is already disposed"); + return; + } + lock (objThreadLock) + { + Thread thread = workerThread; + if (thread != null) + { + eventToTerminate.Set(); + thread.Join(); + } + } + } + + protected virtual void Dispose(bool disposing) + { + if (!bDisposed) + { + Stop(); + if (disposing && eventToTerminate != null) + { + eventToTerminate.Dispose(); + eventToTerminate = null; + } + bDisposed = true; + } + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SafeEnum.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SafeEnum.cs new file mode 100644 index 0000000..8661ebc --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SafeEnum.cs @@ -0,0 +1,19 @@ +using System; + +namespace ArchestrAServices.Common; + +public static class SafeEnum +{ + public static bool TryParse(string inputValue, out TEnum enumValue) where TEnum : struct + { + TEnum result; + bool flag = Enum.TryParse(inputValue, ignoreCase: true, out result); + if (flag && !Enum.IsDefined(typeof(TEnum), result)) + { + flag = false; + result = default(TEnum); + } + enumValue = result; + return flag; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SecureCommunicationModes.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SecureCommunicationModes.cs new file mode 100644 index 0000000..4003ca0 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SecureCommunicationModes.cs @@ -0,0 +1,8 @@ +namespace ArchestrAServices.Common; + +public enum SecureCommunicationModes +{ + Never, + Preferred, + Required +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ServiceShutdownControl.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ServiceShutdownControl.cs new file mode 100644 index 0000000..66a030a --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ServiceShutdownControl.cs @@ -0,0 +1,128 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Threading; + +namespace ArchestrAServices.Common; + +public class ServiceShutdownControl : IDisposable +{ + public delegate void ShutdownCallback(); + + private readonly ShutdownCallback m_Callback; + + private bool disposed; + + public ServiceShutdownControl(ShutdownCallback callback = null) + { + m_Callback = callback; + } + + ~ServiceShutdownControl() + { + Dispose(disposing: false); + } + + public static void SignalShutdown(Process watchedServiceProcess, string serviceInstanceName) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ServiceShutdownControl: SignalShutdown called"); + try + { + if (!string.IsNullOrWhiteSpace(serviceInstanceName)) + { + EventWaitHandle eventWaitHandle = EventWaitHandle.OpenExisting(serviceInstanceName); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ServiceShutdownControl: Setting shutdown signal for process {serviceInstanceName}"); + eventWaitHandle.Set(); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ServiceShutdownControl: Closing the process {serviceInstanceName}"); + watchedServiceProcess?.WaitForExit(15000); + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, "ServiceShutdownControl: Process name cannot be null/empty."); + } + } + catch (WaitHandleCannotBeOpenedException) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "ServiceShutdownControl: Named event does not exist."); + } + catch (UnauthorizedAccessException ex2) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"ServiceShutdownControl: Unauthorized access: {ex2.Message}"); + } + catch (Exception ex3) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"ServiceShutdownControl: Exception in SignalShutdown: {ex3.Message}"); + } + if (watchedServiceProcess != null && !watchedServiceProcess.HasExited) + { + try + { + watchedServiceProcess.Kill(); + } + catch (Exception) + { + } + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ServiceShutdownControl: SignalShutdown exited"); + } + + public void WaitForShutdown(string serviceInstanceName) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ServiceShutdownControl: WaitForShutdown called."); + try + { + if (!string.IsNullOrEmpty(serviceInstanceName)) + { + EventWaitHandle eventWaitHandle = new EventWaitHandle(initialState: false, EventResetMode.AutoReset, serviceInstanceName); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ServiceShutdownControl: Starting wait for shutdown signal for process {serviceInstanceName}"); + eventWaitHandle.WaitOne(); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ServiceShutdownControl: Received shutdown signal, stopping process {serviceInstanceName}"); + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, "ServiceShutdownControl: Process name cannot be null/empty."); + } + } + catch (WaitHandleCannotBeOpenedException) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"ServiceShutdownControl: Named event does not exist for process {serviceInstanceName}"); + } + catch (UnauthorizedAccessException ex2) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"ServiceShutdownControl: Unauthorized access: {ex2.Message}"); + } + catch (Exception ex3) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"ServiceShutdownControl: Exception in WaitForShutdown: {ex3.Message}"); + } + try + { + if (m_Callback != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ServiceShutdownControl: Calling user-supplied shutdown callback"); + m_Callback(); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ServiceShutdownControl: Returned from user-supplied shutdown callback"); + } + } + catch (Exception ex4) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"ServiceShutdownControl: Exception calling user-supplied callback: {ex4.Message}"); + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ServiceShutdownControl: WaitForShutdown exited."); + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + protected virtual void Dispose(bool disposing) + { + if (!disposed) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Stop, 0, "ServiceShutdownControl disposing"); + disposed = true; + } + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ServiceTrace.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ServiceTrace.cs new file mode 100644 index 0000000..f977bfe --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ServiceTrace.cs @@ -0,0 +1,157 @@ +#define TRACE +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Reflection; + +namespace ArchestrAServices.Common; + +public static class ServiceTrace +{ + public static TraceSource DiagData { get; private set; } + + public static TraceSource DiagControl { get; private set; } + + public static TraceSource DiagCommand { get; private set; } + + public static TraceSource DiagException { get; private set; } + + public static TraceSource SecurityEvent { get; private set; } + + public static TraceSource DiagDiagnostics { get; private set; } + + public static TraceSource DiagCsv { get; private set; } + + static ServiceTrace() + { + DiagData = new TraceSource("DataFlowLogs"); + DiagControl = new TraceSource("ControlFlowLogs"); + DiagCommand = new TraceSource("CommandLogs"); + DiagException = new TraceSource("ExceptionLogs"); + SecurityEvent = new TraceSource("SecurityLogs"); + DiagDiagnostics = new TraceSource("DiagnosticsLogs"); + DiagCsv = new TraceSource("CSVDiagnostics"); + } + + public static void SetLogIdentityAll(string identity) + { + DiagData.SetLogIdentity(identity); + DiagControl.SetLogIdentity(identity); + DiagCommand.SetLogIdentity(identity); + DiagException.SetLogIdentity(identity); + SecurityEvent.SetLogIdentity(identity); + DiagDiagnostics.SetLogIdentity(identity); + DiagCsv.SetLogIdentity(identity); + } + + public static void SetLogIdentity(this TraceSource traceSource, [Localizable(false)] string identity) + { + if (traceSource == null || string.IsNullOrEmpty(identity)) + { + return; + } + foreach (TraceListener listener in traceSource.Listeners) + { + PropertyInfo property = listener.GetType().GetProperty("LoggingIdentity"); + if (property != null && property.CanWrite && property.PropertyType == typeof(string)) + { + property.SetValue(listener, identity, null); + } + } + } + + public static void LogInfo([Localizable(false)] string message) + { + DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, message); + } + + public static void LogInfo([Localizable(false)] string format, params object[] args) + { + LogInfo(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogWarning([Localizable(false)] string message) + { + DiagException.TraceEvent(TraceEventType.Warning, 0, message); + } + + public static void LogWarning([Localizable(false)] string format, params object[] args) + { + LogWarning(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogError([Localizable(false)] string message) + { + DiagException.TraceEvent(TraceEventType.Error, 0, message); + } + + public static void LogError([Localizable(false)] string format, params object[] args) + { + LogError(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogCritical([Localizable(false)] string message) + { + DiagException.TraceEvent(TraceEventType.Critical, 0, message); + } + + public static void LogCritical([Localizable(false)] string format, params object[] args) + { + LogCritical(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogVerbose([Localizable(false)] string message) + { + DiagDiagnostics.TraceEvent(TraceEventType.Verbose, 0, message); + } + + public static void LogVerbose([Localizable(false)] string format, params object[] args) + { + LogVerbose(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogStart([Localizable(false)] string message) + { + SecurityEvent.TraceEvent(TraceEventType.Start, 0, message); + } + + public static void LogStart([Localizable(false)] string format, params object[] args) + { + LogStart(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogStop([Localizable(false)] string message) + { + SecurityEvent.TraceEvent(TraceEventType.Stop, 0, message); + } + + public static void LogStop([Localizable(false)] string format, params object[] args) + { + LogStop(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogSuspend([Localizable(false)] string message) + { + SecurityEvent.TraceEvent(TraceEventType.Suspend, 0, message); + } + + public static void LogSuspend([Localizable(false)] string format, params object[] args) + { + LogSuspend(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogResume([Localizable(false)] string message) + { + SecurityEvent.TraceEvent(TraceEventType.Resume, 0, message); + } + + public static void LogResume([Localizable(false)] string format, params object[] args) + { + LogResume(string.Format(CultureInfo.InvariantCulture, format, args)); + } + + public static void LogCsv(params object[] args) + { + DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, args); + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SvcTrace.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SvcTrace.cs new file mode 100644 index 0000000..81914c6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SvcTrace.cs @@ -0,0 +1,18 @@ +using System.Diagnostics; + +namespace ArchestrAServices.Common; + +public class SvcTrace +{ + public static TraceSource DiagData = new TraceSource("DataFlowLogs"); + + public static TraceSource DiagControl = new TraceSource("ControlFlowLogs"); + + public static TraceSource DiagCommand = new TraceSource("CommandLogs"); + + public static TraceSource DiagException = new TraceSource("ExceptionLogs"); + + public static TraceSource DiagDiagnostics = new TraceSource("DiagnosticsLogs"); + + public static TraceSource DiagCsv = new TraceSource("CSVDiagnostics"); +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SvcUtilities.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SvcUtilities.cs new file mode 100644 index 0000000..4a4550c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/SvcUtilities.cs @@ -0,0 +1,917 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Net; +using System.Net.NetworkInformation; +using System.Net.Security; +using System.Net.Sockets; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Discovery; +using System.ServiceProcess; +using System.Threading; +using System.Xml.Linq; +using Microsoft.Win32; + +namespace ArchestrAServices.Common; + +public static class SvcUtilities +{ + public const string AsbCoreServiceScope = "archestra://coreservices"; + + public const string AsbUserServiceScope = "archestra://asb/"; + + public const string AsbScopePrefix = "archestra://"; + + public const string ServiceNameScope = "instancename/"; + + public const string ServiceVersionScope = "serviceversion/"; + + public const string DataTypeScope = "datatype/"; + + public const string SolutionNameScope = "asbsolution/"; + + public const string DomainScope = "domainname/"; + + public const string NamespaceScope = "namespace/"; + + public static ConfigurationRepository asbCommonConfiguration = new ConfigurationRepository(); + + public static string MetaOuterElement = "ArchestrA.Discovery"; + + public static string MetaReplicationElement = "replicationScope"; + + public static string MetaReplicationAttributeName = "scope"; + + public static string MetaReplicationAttributeValue = "localASBSolution"; + + private static readonly int Auto_Port = 0; + + private static readonly int portStartIndex = 10000; + + private static readonly int portEndIndex = 15000; + + public static string ParseCommandLine(string[] args, string switchName) + { + if (args == null) + { + return string.Empty; + } + if (string.IsNullOrEmpty(switchName)) + { + return string.Empty; + } + string text = switchName.ToUpperInvariant(); + if (!switchName.StartsWith("/", StringComparison.OrdinalIgnoreCase)) + { + text = "/" + text; + } + foreach (string text2 in args) + { + if (text2.ToUpperInvariant().StartsWith(text, StringComparison.OrdinalIgnoreCase)) + { + string text3 = text2.Substring(text.Length); + if (text3.StartsWith("=", StringComparison.OrdinalIgnoreCase)) + { + text3 = text3.Substring(1); + } + return text3; + } + } + return string.Empty; + } + + public static Binding GetBinding(string endpointAddress) + { + return GetBinding(endpointAddress, NetTcpBindingSecurityMode.None); + } + + public static Binding GetBinding(string endpointAddress, NetTcpBindingSecurityMode securityMode) + { + Binding result = null; + string text = endpointAddress.ToLower(); + if (text.StartsWith("http")) + { + result = GetWSHttpBinding(); + } + else if (text.StartsWith("net.tcp")) + { + switch (securityMode) + { + case NetTcpBindingSecurityMode.None: + result = GetTcpBinding(); + break; + case NetTcpBindingSecurityMode.CertificateEncryption: + result = GetSecureCertificateTcpBinding(); + break; + case NetTcpBindingSecurityMode.CredentialAuthentication: + result = GetSecureCredentialTcpBinding(); + break; + } + } + else if (text.StartsWith("net.pipe")) + { + result = GetNamedPipeBinding(); + } + return result; + } + + public static WSHttpBinding GetHttpBinding() + { + return GetWSHttpBinding(); + } + + public static WSHttpBinding GetWSHttpBinding() + { + int num = int.MaxValue; + WSHttpBinding wSHttpBinding = new WSHttpBinding(); + try + { + string parameter = asbCommonConfiguration.GetParameter("HttpBinding.Security.Mode", "None"); + wSHttpBinding.Security.Mode = (SecurityMode)Enum.Parse(typeof(SecurityMode), parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.AllowCookies", "false"); + wSHttpBinding.AllowCookies = bool.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.BypassProxyOnLocal", "true"); + wSHttpBinding.BypassProxyOnLocal = bool.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.HostNameComparisonMode", "StrongWildcard"); + wSHttpBinding.HostNameComparisonMode = (HostNameComparisonMode)Enum.Parse(typeof(HostNameComparisonMode), parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.MessageEncoding", "Text"); + wSHttpBinding.MessageEncoding = (WSMessageEncoding)Enum.Parse(typeof(WSMessageEncoding), parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.MaxReceivedMessageSize", int.MaxValue.ToString()); + wSHttpBinding.MaxReceivedMessageSize = int.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.MaxBufferPoolSize", long.MaxValue.ToString()); + wSHttpBinding.MaxBufferPoolSize = long.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.ReaderQuotas.MaxArrayLength", int.MaxValue.ToString()); + wSHttpBinding.ReaderQuotas.MaxArrayLength = int.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.ReaderQuotas.MaxBytesPerRead", int.MaxValue.ToString()); + wSHttpBinding.ReaderQuotas.MaxBytesPerRead = num; + parameter = asbCommonConfiguration.GetParameter("HttpBinding.ReaderQuotas.MaxDepth", int.MaxValue.ToString()); + wSHttpBinding.ReaderQuotas.MaxDepth = num; + parameter = asbCommonConfiguration.GetParameter("HttpBinding.ReaderQuotas.MaxNameTableCharCount", int.MaxValue.ToString()); + wSHttpBinding.ReaderQuotas.MaxNameTableCharCount = num; + parameter = asbCommonConfiguration.GetParameter("HttpBinding.ReaderQuotas.MaxStringContentLength", int.MaxValue.ToString()); + wSHttpBinding.ReaderQuotas.MaxStringContentLength = num; + parameter = asbCommonConfiguration.GetParameter("HttpBinding.OpenTimeout", new TimeSpan(0, 1, 0).ToString()); + wSHttpBinding.OpenTimeout = TimeSpan.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.ReceiveTimeout", new TimeSpan(0, 1, 0).ToString()); + wSHttpBinding.ReceiveTimeout = TimeSpan.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.SendTimeout", new TimeSpan(0, 1, 0).ToString()); + wSHttpBinding.SendTimeout = TimeSpan.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.CloseTimeout", new TimeSpan(0, 1, 0).ToString()); + wSHttpBinding.CloseTimeout = TimeSpan.Parse(parameter); + parameter = asbCommonConfiguration.GetParameter("HttpBinding.ReliableSession.InactivityTimeout", new TimeSpan(0, 1, 0).ToString()); + wSHttpBinding.ReliableSession.InactivityTimeout = TimeSpan.Parse(parameter); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"GetHttpBinding exception: '{ex.Message}'"); + } + return wSHttpBinding; + } + + public static IEnumerable ParseEndpoints(XElement ServiceConfiguration) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 2, "ParseEndpoints entry"); + List list = new List(); + string text = "ASBService"; + XAttribute xAttribute = ServiceConfiguration.Attribute("ServiceName"); + if (xAttribute != null) + { + text = xAttribute.Value; + } + string text2 = "ASBInstance"; + XAttribute xAttribute2 = ServiceConfiguration.Attribute("InstanceName"); + if (xAttribute2 != null) + { + text2 = xAttribute2.Value; + } + XElement xElement = ServiceConfiguration.Descendants("CommonData").FirstOrDefault(); + IEnumerable enumerable = null; + if (xElement != null) + { + enumerable = xElement.Descendants("Endpoint"); + } + if (enumerable != null) + { + foreach (XElement item in enumerable) + { + string text3 = ""; + XAttribute xAttribute3 = item.Attribute("transport"); + if (xAttribute3 != null) + { + text3 = xAttribute3.Value; + } + string text4 = "localhost"; + XAttribute xAttribute4 = item.Attribute("address"); + if (xAttribute4 != null) + { + text4 = xAttribute4.Value; + } + string text5 = string.Empty; + XAttribute xAttribute5 = item.Attribute("interfaceName"); + if (xAttribute5 != null) + { + text5 = xAttribute5.Value; + } + string text6 = string.Empty; + XAttribute xAttribute6 = item.Attribute("port"); + if (xAttribute6 != null) + { + text6 = xAttribute6.Value; + if (text6 == "0") + { + text6 = string.Empty; + } + } + string value = string.Empty; + XAttribute xAttribute7 = item.Attribute("default"); + if (xAttribute7 != null) + { + value = xAttribute7.Value; + } + bool flag = true; + if (!string.IsNullOrEmpty(value)) + { + flag = Convert.ToBoolean(value); + } + Binding TypedBinding = null; + string addressPrefix = GetAddressPrefix(text3, out TypedBinding); + if (!string.IsNullOrEmpty(text5) && !string.IsNullOrEmpty(addressPrefix) && TypedBinding != null) + { + string empty = string.Empty; + empty = ((!(string.IsNullOrEmpty(text6) || flag)) ? (addressPrefix + "://" + text4 + ":" + text6 + "/" + text + "/" + text2) : (addressPrefix + "://" + text4 + "/" + text + "/" + text2)); + Uri endpointUri = GetEndpointUri(new Uri(empty), bCreatePort: false); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 2, "ParseEndpoints adding description: Address = {0} Contract = {1} Binding = {2}", endpointUri, text5, TypedBinding.Name); + if (flag) + { + if (TypedBinding is NetTcpBinding) + { + ((NetTcpBinding)TypedBinding).PortSharingEnabled = true; + } + } + else if (TypedBinding is NetTcpBinding) + { + ((NetTcpBinding)TypedBinding).PortSharingEnabled = string.IsNullOrEmpty(text6); + } + list.Add(new ASBEndpointDescription(endpointUri, text5, TypedBinding)); + } + else + { + if (string.IsNullOrEmpty(text5)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, "ParseEndpoints: element in configuration without an interfaceName attribute, no endpoint generated"); + } + if (string.IsNullOrEmpty(addressPrefix)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"ParseEndpoints: element in configuration with transport attribute='{text3}' does not translate to a scheme, no endpoint generated"); + } + if (TypedBinding == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"ParseEndpoints: element in configuration with transport attribute='{text3}' does not translate to a binding, no endpoint generated"); + } + } + } + } + return list; + } + + public static string GetAddressPrefix(string Transport, out Binding TypedBinding) + { + string result = string.Empty; + TypedBinding = null; + if (!string.IsNullOrEmpty(Transport)) + { + switch (Transport.ToLower()) + { + case "net.tcp": + result = "net.tcp"; + TypedBinding = GetTcpBinding(); + break; + case "basichttp": + result = "http"; + TypedBinding = new BasicHttpBinding(); + break; + case "webhttp": + result = "http"; + TypedBinding = null; + break; + case "wsdualhttp": + result = "http"; + TypedBinding = new WSDualHttpBinding(); + break; + case "wshttp": + case "http": + result = "http"; + TypedBinding = GetWSHttpBinding(); + break; + default: + TypedBinding = null; + break; + } + } + return result; + } + + public static EndpointAddress GetEndPointAddress(Uri endpointAddressUri) + { + return GetEndPointAddress(endpointAddressUri, bCreatePort: true); + } + + public static EndpointAddress GetEndPointAddress(Uri endpointAddressUri, bool bCreatePort) + { + if (endpointAddressUri == null) + { + return null; + } + EndpointAddress result = new EndpointAddress(endpointAddressUri); + Uri endpointUri = GetEndpointUri(endpointAddressUri, bCreatePort); + if (endpointUri != null) + { + result = new EndpointAddress(endpointUri); + } + return result; + } + + public static Uri GetEndpointUri(Uri endpointAddressUri, bool bCreatePort) + { + if (endpointAddressUri == null) + { + return null; + } + try + { + UriBuilder uriBuilder = new UriBuilder(endpointAddressUri); + if (uriBuilder.Scheme != "net.pipe") + { + if (endpointAddressUri.OriginalString.IndexOf("localhost", StringComparison.OrdinalIgnoreCase) != -1) + { + uriBuilder.Host = Environment.MachineName; + } + if (bCreatePort && (uriBuilder.Port == -1 || uriBuilder.Port == Auto_Port)) + { + uriBuilder.Port = FindAvailablePortOnMachine(); + } + } + return uriBuilder.Uri; + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 2, $"GetEndpointUri exception: '{ex.Message}'"); + } + return null; + } + + public static Uri GetEndpointListenUri(Uri endpointAddress) + { + Uri result = null; + if (endpointAddress != null) + { + try + { + UriBuilder uriBuilder = new UriBuilder(endpointAddress); + if (uriBuilder != null) + { + IPAddress[] hostAddresses = Dns.GetHostAddresses(uriBuilder.Host); + foreach (IPAddress iPAddress in hostAddresses) + { + if (iPAddress.AddressFamily == AddressFamily.InterNetwork) + { + uriBuilder.Host = iPAddress.ToString(); + } + } + result = uriBuilder.Uri; + } + else + { + result = endpointAddress; + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 2, $"GetEndpointListenUri exception: '{ex.Message}'"); + } + } + return result; + } + + public static int FindAvailablePortOnMachine() + { + int result = 0; + Random random = new Random(Environment.TickCount); + using (Mutex mutex = new Mutex(initiallyOwned: false, "ArchestraCommon")) + { + mutex.WaitOne(); + List list = (from p in IPGlobalProperties.GetIPGlobalProperties().GetActiveTcpListeners() + select p.Port).ToList(); + for (int num = 0; num < 5000; num++) + { + int num2 = random.Next(portStartIndex, portEndIndex); + if (!list.Contains(num2)) + { + result = num2; + break; + } + } + } + return result; + } + + public static EndpointDiscoveryMetadata GetDiscoveryEndpointMetada(EndpointDiscoveryMetadata metaData) + { + try + { + if (metaData != null) + { + UriBuilder uriBuilder = new UriBuilder(metaData.Address.Uri); + if (uriBuilder != null && !string.IsNullOrEmpty(uriBuilder.Host)) + { + IPAddress[] hostAddresses = Dns.GetHostAddresses(uriBuilder.Host); + foreach (IPAddress iPAddress in hostAddresses) + { + if (iPAddress.AddressFamily == AddressFamily.InterNetwork) + { + uriBuilder.Host = iPAddress.ToString(); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 2, string.Format(CultureInfo.CurrentCulture, "IP address {0} for host name {1}", new object[2] + { + iPAddress.ToString(), + metaData.Address.Uri.ToString() + })); + if (!metaData.ListenUris.Contains(uriBuilder.Uri)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 2, string.Format(CultureInfo.CurrentCulture, "IP address {0} is not exist in the ListenUris collection ", new object[1] { uriBuilder.Uri.ToString() })); + metaData.ListenUris.Insert(0, uriBuilder.Uri); + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 2, string.Format(CultureInfo.CurrentCulture, "IP address {0} is already exist in the ListenUris collection ", new object[1] { uriBuilder.Uri.ToString() })); + } + } + } + } + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Information, 2, string.Format(CultureInfo.CurrentCulture, "GetDiscoveryEndpointMetada: Exception {0}", new object[1] { ex.Message })); + } + return metaData; + } + + public static string ReadKeyValue(string subKey, string value) + { + string result = string.Empty; + try + { + string text = RegistryHandler.RegistryPath; + if (!string.IsNullOrEmpty(subKey)) + { + text = text + "\\" + subKey; + } + RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(text, writable: false); + if (registryKey != null) + { + object value2 = registryKey.GetValue(value); + if (value2 != null) + { + result = value2.ToString(); + } + registryKey.Close(); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"ReadKeyValue: Exception caught: {ex.Message}"); + result = string.Empty; + } + return result; + } + + public static void GetLocalDiscoveryInfoFromWatchdogConfigFile(string WatchdogConfigFilePath, out string LocalDiscovery) + { + LocalDiscovery = string.Empty; + if (!File.Exists(WatchdogConfigFilePath)) + { + return; + } + try + { + XElement xElement = XElement.Load(WatchdogConfigFilePath); + if (!xElement.Elements("appSettings").Any()) + { + return; + } + foreach (XElement item in xElement.Elements("appSettings").Descendants()) + { + if (item.Attribute("key") != null && item.Attribute("key").Value == "LocalDiscoveryEndpoint" && item.Attribute("value") != null) + { + LocalDiscovery = item.Attribute("value").Value; + } + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"GetLocalDiscoveryInfoFromWatchdogConfigFile: Exception caught: {ex.Message}"); + } + } + + public static void GetDiscoveryInfoFromWatchdogConfigFile(string WatchdogConfigFilePath, out string Discovery1, out string Discovery2) + { + Discovery1 = string.Empty; + Discovery2 = string.Empty; + if (!File.Exists(WatchdogConfigFilePath)) + { + return; + } + try + { + XElement xElement = XElement.Load(WatchdogConfigFilePath); + if (!xElement.Elements("appSettings").Any()) + { + return; + } + foreach (XElement item in xElement.Elements("appSettings").Descendants()) + { + if (item.Attribute("key") != null && item.Attribute("key").Value == "PrimaryGlobalDiscoveryEndpoint" && item.Attribute("value") != null) + { + Discovery1 = item.Attribute("value").Value; + } + if (item.Attribute("key") != null && item.Attribute("key").Value == "SecondaryGlobalDiscoveryEndpoint" && item.Attribute("value") != null) + { + Discovery2 = item.Attribute("value").Value; + } + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"GetDiscoveryInfoFromWatchdogConfigFile: Exception caught: {ex.Message}"); + } + } + + public static string GetDiscoveryEndpoint() + { + string empty = string.Empty; + empty = ReadKeyValue(RegistryHandler.ASBRegistration, RegistryHandler.LDSEndPoint); + if (string.IsNullOrEmpty(empty)) + { + empty = "net.tcp://localhost/LDS/Probe"; + } + return empty; + } + + public static bool UpdateWatchDogFile(string WatchdogConfigFilePath, string endpoint1, string endpoint2) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "UpdateWatchDogFile: returning true."); + return true; + } + + public static string ReadWatchdogConfigFilePath() + { + string text = ReadKeyValue(string.Empty, "ASBInstallPath"); + if (!string.IsNullOrEmpty(text)) + { + text = Path.Combine(text, "aaServiceWatchdog.exe.config"); + } + return text; + } + + public static void PersistDiscoveryInfo(string discovery1, string discovery2) + { + string text = ReadWatchdogConfigFilePath(); + if (!string.IsNullOrEmpty(text)) + { + UpdateWatchDogFile(text, discovery1, discovery2); + } + } + + public static void WriteKeyValue(string subKey, string key, string value) + { + try + { + string text = RegistryHandler.RegistryPath; + if (!string.IsNullOrEmpty(subKey)) + { + text = text + "\\" + subKey; + } + Registry.LocalMachine.OpenSubKey(text, writable: true)?.SetValue(key, value); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"WriteKeyValue: Exception caught: {ex.Message}"); + } + } + + public static bool IsKeyExist(string subKey, string value) + { + try + { + string text = RegistryHandler.RegistryPath; + if (!string.IsNullOrEmpty(subKey)) + { + text = text + "\\" + subKey; + } + RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(text, writable: false); + if (registryKey != null && registryKey.GetValue(value) != null) + { + return true; + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"IsKeyExist: Exception caught: {ex.Message}"); + } + return false; + } + + public static void CreateKeysIfNotExist(string subKey) + { + if (!IsKeyExist(subKey, "NodeRegistration")) + { + string text = RegistryHandler.RegistryPath; + if (!string.IsNullOrEmpty(subKey)) + { + text = text + "\\" + subKey; + } + text += "\\NodeRegistration"; + try + { + Registry.LocalMachine.CreateSubKey(text); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, $"CreateKeysIfNotExist: Exception caught: {ex.Message}"); + } + } + } + + public static Collection CreateRegisterScopes(string version, string serviceName, string dataType, string domain, string nameSpace, XElement configuration, List extraScopes) + { + if (string.IsNullOrEmpty(version) || string.IsNullOrEmpty(serviceName) || string.IsNullOrEmpty(dataType) || string.IsNullOrEmpty(domain) || string.IsNullOrEmpty(nameSpace)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "While creating Discovery scopes for a service, one of (version, serviceName, dataType, domain, or nameSpace) was missing, generating scopes for the rest"); + } + Collection collection = CreateFindScopes(version, serviceName, dataType, domain, nameSpace, extraScopes); + RegistryHandler.GetDefaultSolutionName(out var DefaultSolutionName); + if (!string.IsNullOrEmpty(DefaultSolutionName)) + { + BuildScopeUri("asbsolution/", DefaultSolutionName, collection); + } + return collection; + } + + public static Collection CreateFindScopes(string version, string serviceName, string dataType, string domain, string nameSpace, List extraScopes) + { + Collection collection = new Collection(); + if (extraScopes != null) + { + foreach (string extraScope in extraScopes) + { + BuildScopeUri(string.Empty, extraScope, collection); + } + } + if (!string.IsNullOrEmpty(serviceName)) + { + BuildScopeUri("instancename/", serviceName, collection); + } + if (!string.IsNullOrEmpty(version)) + { + BuildScopeUri("serviceversion/", version, collection); + } + if (!string.IsNullOrEmpty(dataType)) + { + BuildScopeUri("datatype/", dataType, collection); + } + if (!string.IsNullOrEmpty(domain)) + { + BuildScopeUri("domainname/", domain, collection); + } + if (!string.IsNullOrEmpty(nameSpace)) + { + BuildScopeUri("namespace/", nameSpace, collection); + } + return collection; + } + + public static Collection CreateRegisterScopes(string version, string serviceName, string dataType, XElement configuration, List extraScopes) + { + if (string.IsNullOrEmpty(version) || string.IsNullOrEmpty(serviceName) || string.IsNullOrEmpty(dataType)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "While creating Discovery scopes for a service, one of (version, serviceName, or dataType) was missing, generating scopes for the rest"); + } + Collection collection = CreateFindScopes(version, serviceName, dataType, extraScopes); + RegistryHandler.GetDefaultSolutionName(out var DefaultSolutionName); + if (!string.IsNullOrEmpty(DefaultSolutionName)) + { + BuildScopeUri("asbsolution/", DefaultSolutionName, collection); + } + return collection; + } + + public static Collection CreateFindScopes(string version, string serviceName, string dataType, List extraScopes) + { + Collection collection = new Collection(); + if (extraScopes != null) + { + foreach (string extraScope in extraScopes) + { + BuildScopeUri(string.Empty, extraScope, collection); + } + } + if (!string.IsNullOrEmpty(serviceName)) + { + BuildScopeUri("instancename/", serviceName, collection); + } + if (!string.IsNullOrEmpty(version)) + { + BuildScopeUri("serviceversion/", version, collection); + } + if (!string.IsNullOrEmpty(dataType)) + { + BuildScopeUri("datatype/", dataType, collection); + } + return collection; + } + + public static bool IsGRInstalled(out string message) + { + bool result = false; + message = string.Empty; + try + { + if ((from svc in ServiceController.GetServices() + where svc.ServiceName == "aaGR" + select svc).FirstOrDefault() != null) + { + result = true; + message = "IsGRInstalled()::true; aaGR Service is Installed."; + } + else + { + message = "IsGRInstalled()::false; aaGR Service is not Installed."; + } + } + catch (Exception ex) + { + message = ex.ToString(); + } + return result; + } + + public static bool IsAnyPlatformIsDeployed(out string strFromMachineName, out string strGalaxyName, out string message) + { + bool result = false; + strFromMachineName = string.Empty; + strGalaxyName = string.Empty; + message = string.Empty; + string name = "SOFTWARE\\ArchestrA\\Framework\\ClusterInformation"; + RegistryKey registryKey = null; + try + { + registryKey = Registry.LocalMachine.OpenSubKey(name, writable: false); + if (registryKey != null) + { + strGalaxyName = registryKey.GetValue("ClusterName").ToString(); + strFromMachineName = registryKey.GetValue("GalaxyPlatformName").ToString(); + result = true; + message = "IsAnyPlatformIsDeployed():: true; platform is deployed."; + } + else + { + message = "IsAnyPlatformIsDeployed():: false; platform is not deployed."; + } + } + catch (Exception ex) + { + message = ex.ToString(); + } + finally + { + registryKey?.Close(); + } + return result; + } + + private static void BuildScopeUri(string scopeType, string scopeName, Collection scopeCollection) + { + if (scopeCollection != null && !string.IsNullOrEmpty(scopeName)) + { + string text = scopeName; + if (!text.StartsWith("archestra://", StringComparison.OrdinalIgnoreCase)) + { + text = "archestra://asb/" + scopeType + scopeName; + } + scopeCollection.Add(new Uri(text.ToLower(CultureInfo.InvariantCulture))); + } + } + + public static NetTcpBinding GetTcpBinding() + { + int num = int.MaxValue; + NetTcpBinding netTcpBinding = new NetTcpBinding(); + try + { + netTcpBinding.Security.Mode = SecurityMode.None; + netTcpBinding.TransferMode = TransferMode.Buffered; + netTcpBinding.PortSharingEnabled = true; + netTcpBinding.MaxReceivedMessageSize = num; + netTcpBinding.MaxBufferSize = num; + netTcpBinding.MaxBufferPoolSize = long.MaxValue; + netTcpBinding.ReaderQuotas.MaxArrayLength = num; + netTcpBinding.ReaderQuotas.MaxBytesPerRead = num; + netTcpBinding.ReaderQuotas.MaxDepth = num; + netTcpBinding.ReaderQuotas.MaxNameTableCharCount = num; + netTcpBinding.ReaderQuotas.MaxStringContentLength = num; + netTcpBinding.OpenTimeout = new TimeSpan(0, 1, 0); + netTcpBinding.ReceiveTimeout = new TimeSpan(0, 1, 0); + netTcpBinding.SendTimeout = new TimeSpan(0, 1, 0); + netTcpBinding.CloseTimeout = new TimeSpan(0, 1, 0); + netTcpBinding.ReliableSession.InactivityTimeout = new TimeSpan(0, 1, 0); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"GetTcpBinding exception: '{ex.Message}'"); + } + return netTcpBinding; + } + + public static NetTcpBinding GetAnnouncementBinding() + { + if (RegistryHandler.SecureCommunicationMode != SecureCommunicationModes.Never) + { + return GetSecureCredentialTcpBinding(); + } + return GetTcpBinding(); + } + + public static NetTcpBinding GetAnnouncementBinding(Uri announcementAddress) + { + if (announcementAddress.AbsoluteUri.Contains("/LDS/") && RegistryHandler.SecureCommunicationMode != SecureCommunicationModes.Never) + { + return GetSecureCredentialTcpBinding(); + } + return GetTcpBinding(); + } + + public static NetTcpBinding GetSecureCertificateTcpBinding() + { + NetTcpBinding tcpBinding = GetTcpBinding(); + try + { + tcpBinding.Security.Mode = SecurityMode.Transport; + tcpBinding.Security.Transport.ProtectionLevel = ProtectionLevel.EncryptAndSign; + tcpBinding.Security.Transport.ClientCredentialType = TcpClientCredentialType.None; + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"GetTcpBinding exception: '{ex.Message}'"); + } + return tcpBinding; + } + + private static NetTcpBinding GetSecureCredentialTcpBinding() + { + NetTcpBinding tcpBinding = GetTcpBinding(); + try + { + tcpBinding.Security.Mode = SecurityMode.Transport; + tcpBinding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Windows; + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"GetTcpBinding exception: '{ex.Message}'"); + } + return tcpBinding; + } + + public static NetNamedPipeBinding GetNamedPipeBinding() + { + int num = int.MaxValue; + NetNamedPipeBinding netNamedPipeBinding = new NetNamedPipeBinding(); + try + { + netNamedPipeBinding.Security.Mode = NetNamedPipeSecurityMode.None; + netNamedPipeBinding.TransferMode = TransferMode.Buffered; + netNamedPipeBinding.MaxReceivedMessageSize = num; + netNamedPipeBinding.MaxBufferSize = num; + netNamedPipeBinding.MaxBufferPoolSize = long.MaxValue; + netNamedPipeBinding.ReaderQuotas.MaxArrayLength = num; + netNamedPipeBinding.ReaderQuotas.MaxBytesPerRead = num; + netNamedPipeBinding.ReaderQuotas.MaxDepth = num; + netNamedPipeBinding.ReaderQuotas.MaxNameTableCharCount = num; + netNamedPipeBinding.ReaderQuotas.MaxStringContentLength = num; + netNamedPipeBinding.OpenTimeout = new TimeSpan(0, 1, 0); + netNamedPipeBinding.ReceiveTimeout = new TimeSpan(0, 1, 0); + netNamedPipeBinding.SendTimeout = new TimeSpan(0, 1, 0); + netNamedPipeBinding.CloseTimeout = new TimeSpan(0, 1, 0); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 2, $"NetNamedPipeBinding exception: '{ex.Message}'"); + } + return netNamedPipeBinding; + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ThrowHelper.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ThrowHelper.cs new file mode 100644 index 0000000..1f5e589 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/ThrowHelper.cs @@ -0,0 +1,82 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Globalization; +using System.Linq; +using System.Runtime.InteropServices; + +namespace ArchestrAServices.Common; + +public static class ThrowHelper +{ + [AttributeUsage(AttributeTargets.Parameter)] + private sealed class ValidatedNotNullAttribute : Attribute + { + } + + public static void ThrowIfArgumentNull([ValidatedNotNull] T argument, string argumentName) where T : class + { + if (argument == null) + { + throw new ArgumentNullException(argumentName); + } + } + + public static void ThrowIfArgumentNullOrEmpty([ValidatedNotNull] IEnumerable argument, string argumentName) + { + if (argument == null) + { + throw new ArgumentNullException(argumentName); + } + if (!argument.Any()) + { + throw new ArgumentException("Value must not be empty.", argumentName); + } + } + + public static void ThrowIfArgumentNullOrWhiteSpace([ValidatedNotNull] string argument, string argumentName) + { + if (argument == null) + { + throw new ArgumentNullException(argumentName); + } + if (string.IsNullOrWhiteSpace(argument)) + { + throw new ArgumentException("Value must not be empty or only whitespace.", argumentName); + } + } + + public static void ThrowIfArgumentOutOfRange(bool outOfRange, string argumentName) + { + if (outOfRange) + { + throw new ArgumentOutOfRangeException(argumentName, "Value out of range."); + } + } + + public static void ThrowArgumentException(bool invalid, string argumentName, [Localizable(false)] string message) + { + if (invalid) + { + throw new ArgumentException(message, argumentName); + } + } + + public static void ThrowInvalidOperation([Localizable(false)] string message) + { + throw new InvalidOperationException(message); + } + + public static void ThrowIfServiceIsNull([ValidatedNotNull] T service) where T : class + { + if (service == null) + { + throw new InvalidOperationException(string.Format(CultureInfo.InvariantCulture, "Service {0} is not available", new object[1] { typeof(T).FullName })); + } + } + + public static void ThrowIfHResultError(int code) + { + Marshal.ThrowExceptionForHR(code); + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/WindowsServiceStatusChangedEventArgs.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/WindowsServiceStatusChangedEventArgs.cs new file mode 100644 index 0000000..b9de0de --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/WindowsServiceStatusChangedEventArgs.cs @@ -0,0 +1,8 @@ +using System; + +namespace ArchestrAServices.Common; + +public class WindowsServiceStatusChangedEventArgs : EventArgs +{ + public bool IsRunning { get; set; } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/WindowsServiceWatcher.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/WindowsServiceWatcher.cs new file mode 100644 index 0000000..81f4d85 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/WindowsServiceWatcher.cs @@ -0,0 +1,150 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Globalization; +using System.ServiceProcess; +using System.Timers; + +namespace ArchestrAServices.Common; + +public class WindowsServiceWatcher : IDisposable +{ + private static readonly int TimerInterval = 5000; + + private static readonly int LogWarningCount = 12; + + private readonly string serviceName; + + private bool disposed; + + private Timer timer; + + private int isOfflineCounter; + + private bool lastIsRunningStatus; + + private ServiceController serviceController; + + public event EventHandler StatusChanged; + + public WindowsServiceWatcher(string serviceName) + { + this.serviceName = serviceName; + timer = new Timer(TimerInterval); + timer.Elapsed += MonitorServiceStatus; + timer.Enabled = false; + timer.AutoReset = false; + } + + public void Start() + { + MonitorServiceStatus(null, null); + timer.Enabled = true; + } + + public void Stop() + { + timer.Enabled = false; + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + protected virtual void Dispose(bool disposing) + { + if (disposed) + { + return; + } + if (disposing) + { + if (timer != null) + { + timer.Elapsed -= MonitorServiceStatus; + timer.Dispose(); + timer = null; + } + if (serviceController != null) + { + serviceController.Dispose(); + serviceController = null; + } + lastIsRunningStatus = false; + isOfflineCounter = 0; + } + disposed = true; + } + + private void MonitorServiceStatus(object source, ElapsedEventArgs e) + { + bool flag = false; + bool flag2; + try + { + if (serviceController == null) + { + serviceController = new ServiceController(serviceName); + } + serviceController.Refresh(); + flag2 = serviceController.Status == ServiceControllerStatus.Running; + } + catch (Exception) + { + if (serviceController != null) + { + serviceController.Dispose(); + serviceController = null; + } + flag2 = false; + flag = true; + } + if (flag2) + { + if (!lastIsRunningStatus) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.InvariantCulture, "{0} windows service is running.", new object[1] { serviceName })); + OnStatusChanged(new WindowsServiceStatusChangedEventArgs + { + IsRunning = true + }); + lastIsRunningStatus = true; + isOfflineCounter = 0; + } + } + else + { + if (lastIsRunningStatus) + { + OnStatusChanged(new WindowsServiceStatusChangedEventArgs + { + IsRunning = false + }); + lastIsRunningStatus = false; + } + isOfflineCounter++; + if (isOfflineCounter % LogWarningCount == 0) + { + if (flag) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Error, 0, string.Format(CultureInfo.InvariantCulture, "{0} windows service does not exist. If this problem persists, please try installing the {0} windows service.", new object[1] { serviceName })); + } + else + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, string.Format(CultureInfo.InvariantCulture, "{0} windows service is not running. If this problem persists, please try restarting the {0} windows service.", new object[1] { serviceName })); + } + } + } + timer.Enabled = true; + } + + private void OnStatusChanged(WindowsServiceStatusChangedEventArgs newStatus) + { + if (this.StatusChanged != null) + { + this.StatusChanged(this, newStatus); + } + } +} diff --git a/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/aaLoggerListner.cs b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/aaLoggerListner.cs new file mode 100644 index 0000000..e6e667c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/ArchestrAServices.Common/aaLoggerListner.cs @@ -0,0 +1,322 @@ +using System; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using ArchestrA.Diagnostics; + +namespace ArchestrAServices.Common; + +public class aaLoggerListner : TraceListener +{ + private enum aaLogType + { + LogErrorType, + LogWarningType, + LogInfoType, + LogTraceType, + LogStartStopType, + LogThreadStartStopType, + LogConnectionType, + LogRefCountType, + LogCtorDtorType, + LogSQLType, + LogEntryExitType + } + + private static object LogLockObject = new object(); + + private string CSVLOGFLAG = "ASBAdvancedLog"; + + private string LoggingIdentity = string.Empty; + + private bool IsCustomLogType; + + private bool IsCsvLogType; + + private aaLogType LoggerType; + + private int CustomLogTypeCookie; + + private SourceLevels sourceLevel = SourceLevels.All; + + private string asbLogFolder = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\ArchestrA\\LogFiles\\ASBLogging\\"; + + private string asbLogFile; + + private static object LogFileLockObject = new object(); + + public SourceLevels SourceLevel + { + get + { + return sourceLevel; + } + set + { + sourceLevel = value; + } + } + + public aaLoggerListner() + { + Logger.LogSetIdentityName(Process.GetCurrentProcess().ProcessName); + LoggerType = aaLogType.LogTraceType; + IsCustomLogType = false; + IsCsvLogType = false; + CustomLogTypeCookie = 0; + InitializeAdvanceLog(); + } + + public aaLoggerListner(string initializeData) + { + string[] array = new string[0]; + if (!string.IsNullOrEmpty(initializeData)) + { + array = initializeData.Split(','); + } + string logCategory = "LogTraceType"; + if (array.Length != 0) + { + logCategory = array[0].Trim(); + } + string text = "All"; + if (array.Length > 1) + { + text = array[1].Trim(); + } + SetSourceLevel(text); + LoggingIdentity = Process.GetCurrentProcess().ProcessName; + string[] commandLineArgs = Environment.GetCommandLineArgs(); + foreach (string text2 in commandLineArgs) + { + if (!text2.ToLower().StartsWith("/n")) + { + continue; + } + string text3 = text2.Substring(2).ToLower(); + if (!text3.Contains("discovery")) + { + break; + } + if (text3.Contains("local")) + { + LoggingIdentity = "aaDiscoveryLocal"; + } + else if (text3.Contains("global")) + { + if (text3.Contains("primary")) + { + LoggingIdentity = "aaDiscoveryPrimaryGlobal"; + } + else if (text3.Contains("secondary")) + { + LoggingIdentity = "aaDiscoverySecondaryGlobal"; + } + } + else if (text3.Contains("universal")) + { + if (text3.Contains("primary")) + { + LoggingIdentity = "aaDiscoveryPrimaryUniversal"; + } + else if (text3.Contains("secondary")) + { + LoggingIdentity = "aaDiscoverySecondaryUniversal"; + } + } + break; + } + Logger.LogSetIdentityName(LoggingIdentity); + InitializeAdvanceLog(); + IsCsvLogType = false; + SetLogCategory(logCategory); + } + + public aaLoggerListner(string LogCategory, string LogIdentityName) + { + LoggingIdentity = LogIdentityName; + Logger.LogSetIdentityName(LoggingIdentity); + InitializeAdvanceLog(); + IsCsvLogType = false; + SetLogCategory(LogCategory); + } + + private void InitializeAdvanceLog() + { + if (!Directory.Exists(asbLogFolder)) + { + Directory.CreateDirectory(asbLogFolder); + } + asbLogFile = asbLogFolder + Environment.MachineName + "_" + LoggingIdentity + ".log"; + } + + private void SetLogCategory(string LogCategory) + { + aaLogType loggerType = aaLogType.LogTraceType; + try + { + loggerType = (aaLogType)Enum.Parse(typeof(aaLogType), LogCategory); + IsCustomLogType = false; + } + catch (Exception) + { + if (string.Compare(LogCategory, CSVLOGFLAG, ignoreCase: true) == 0) + { + IsCsvLogType = true; + } + else + { + CustomLogTypeCookie = Logger.LogRegisterCustomFlag(LogCategory); + } + IsCustomLogType = true; + } + LoggerType = loggerType; + } + + private void SetSourceLevel(string level) + { + SourceLevels sourceLevels = SourceLevels.All; + try + { + sourceLevels = (SourceLevels)Enum.Parse(typeof(SourceLevels), level); + } + catch (Exception) + { + sourceLevels = SourceLevels.All; + } + sourceLevel = sourceLevels; + } + + public override void Write(string message) + { + LogIt(message, TraceEventType.Verbose); + } + + public override void WriteLine(string message) + { + LogIt(message, TraceEventType.Verbose); + } + + public override void WriteLine(string message, string category) + { + LogIt(message, TraceEventType.Verbose); + } + + public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType eventType, int id, string message) + { + LogAdvancedFile(eventCache, source, eventType, message); + LogIt(message, eventType); + } + + public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType eventType, int id, string format, params object[] args) + { + if (IsCsvLogType) + { + LogCsvFile(eventCache, source, eventType, id, format, args); + return; + } + string message = string.Format(CultureInfo.CurrentCulture, format, args); + LogAdvancedFile(eventCache, source, eventType, message); + LogIt(message, eventType); + } + + private void LogIt(string message, TraceEventType eventType) + { + aaLogType aaLogType2 = LoggerType; + switch (eventType) + { + case TraceEventType.Warning: + aaLogType2 = aaLogType.LogWarningType; + break; + case TraceEventType.Error: + aaLogType2 = aaLogType.LogErrorType; + break; + case TraceEventType.Critical: + aaLogType2 = aaLogType.LogErrorType; + break; + } + if (!IsCustomLogType) + { + switch (aaLogType2) + { + case aaLogType.LogErrorType: + Logger.LogError(message); + break; + case aaLogType.LogWarningType: + Logger.LogWarning(message); + break; + case aaLogType.LogInfoType: + Logger.LogInfo(message); + break; + case aaLogType.LogTraceType: + Logger.LogTrace(message); + break; + case aaLogType.LogStartStopType: + Logger.LogStartStop(message); + break; + case aaLogType.LogThreadStartStopType: + Logger.LogThreadStartStop(message); + break; + case aaLogType.LogConnectionType: + Logger.LogConnection(message); + break; + case aaLogType.LogRefCountType: + Logger.LogRefCount(message); + break; + case aaLogType.LogCtorDtorType: + Logger.LogCtorDtor(message); + break; + case aaLogType.LogSQLType: + Logger.LogSQL(message); + break; + case aaLogType.LogEntryExitType: + Logger.LogEntryExit(message); + break; + } + } + else + { + switch (aaLogType2) + { + case aaLogType.LogErrorType: + Logger.LogError(message); + break; + case aaLogType.LogWarningType: + Logger.LogWarning(message); + break; + default: + Logger.LogCustom(CustomLogTypeCookie, message); + break; + } + } + } + + private void LogCsvFile(TraceEventCache eventCache, string source, TraceEventType eventType, int id, string format, params object[] args) + { + string text = eventCache.DateTime.ToString("M/d/yyyy HH:mm:ss.fff") + "," + Environment.MachineName + "," + LoggingIdentity + "," + eventType.ToString() + "," + id + "," + eventCache.ProcessId + "," + eventCache.ThreadId.ToString() + "," + format; + foreach (object obj in args) + { + text = text + "," + obj.ToString(); + } + string text2 = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\ArchestrA\\LogFiles\\"; + if (!Directory.Exists(text2)) + { + return; + } + try + { + lock (LogLockObject) + { + using StreamWriter streamWriter = File.AppendText(text2 + Environment.MachineName + "_" + LoggingIdentity + "_" + eventCache.ProcessId + ".csv"); + streamWriter.WriteLine(text); + } + } + catch (Exception) + { + } + } + + public void LogAdvancedFile(TraceEventCache eventCache, string source, TraceEventType eventType, string message) + { + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspChildControlTypeAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspChildControlTypeAttribute.cs new file mode 100644 index 0000000..b45fc43 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspChildControlTypeAttribute.cs @@ -0,0 +1,19 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspChildControlTypeAttribute : Attribute +{ + public string TagName { get; private set; } + + public Type ControlType { get; private set; } + + public AspChildControlTypeAttribute(string tagName, Type controlType) + { + TagName = tagName; + ControlType = controlType; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspDataFieldAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspDataFieldAttribute.cs new file mode 100644 index 0000000..4aff98e --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspDataFieldAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspDataFieldAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspDataFieldsAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspDataFieldsAttribute.cs new file mode 100644 index 0000000..4d66e47 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspDataFieldsAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspDataFieldsAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMethodPropertyAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMethodPropertyAttribute.cs new file mode 100644 index 0000000..2415156 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMethodPropertyAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMethodPropertyAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcActionAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcActionAttribute.cs new file mode 100644 index 0000000..c224d88 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcActionAttribute.cs @@ -0,0 +1,20 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcActionAttribute : Attribute +{ + public string AnonymousProperty { get; private set; } + + public AspMvcActionAttribute() + { + } + + public AspMvcActionAttribute(string anonymousProperty) + { + AnonymousProperty = anonymousProperty; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcActionSelectorAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcActionSelectorAttribute.cs new file mode 100644 index 0000000..fed5a85 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcActionSelectorAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcActionSelectorAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaAttribute.cs new file mode 100644 index 0000000..976561e --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaAttribute.cs @@ -0,0 +1,20 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcAreaAttribute : Attribute +{ + public string AnonymousProperty { get; private set; } + + public AspMvcAreaAttribute() + { + } + + public AspMvcAreaAttribute(string anonymousProperty) + { + AnonymousProperty = anonymousProperty; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaMasterLocationFormatAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaMasterLocationFormatAttribute.cs new file mode 100644 index 0000000..8267aad --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaMasterLocationFormatAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcAreaMasterLocationFormatAttribute : Attribute +{ + public string Format { get; private set; } + + public AspMvcAreaMasterLocationFormatAttribute(string format) + { + Format = format; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaPartialViewLocationFormatAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaPartialViewLocationFormatAttribute.cs new file mode 100644 index 0000000..8ae45e6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaPartialViewLocationFormatAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcAreaPartialViewLocationFormatAttribute : Attribute +{ + public string Format { get; private set; } + + public AspMvcAreaPartialViewLocationFormatAttribute(string format) + { + Format = format; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaViewLocationFormatAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaViewLocationFormatAttribute.cs new file mode 100644 index 0000000..b67f960 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcAreaViewLocationFormatAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcAreaViewLocationFormatAttribute : Attribute +{ + public string Format { get; private set; } + + public AspMvcAreaViewLocationFormatAttribute(string format) + { + Format = format; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcControllerAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcControllerAttribute.cs new file mode 100644 index 0000000..2bedb9e --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcControllerAttribute.cs @@ -0,0 +1,20 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcControllerAttribute : Attribute +{ + public string AnonymousProperty { get; private set; } + + public AspMvcControllerAttribute() + { + } + + public AspMvcControllerAttribute(string anonymousProperty) + { + AnonymousProperty = anonymousProperty; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcDisplayTemplateAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcDisplayTemplateAttribute.cs new file mode 100644 index 0000000..6abbfb4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcDisplayTemplateAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcDisplayTemplateAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcEditorTemplateAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcEditorTemplateAttribute.cs new file mode 100644 index 0000000..e19bfcf --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcEditorTemplateAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcEditorTemplateAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcMasterAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcMasterAttribute.cs new file mode 100644 index 0000000..86d4924 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcMasterAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcMasterAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcMasterLocationFormatAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcMasterLocationFormatAttribute.cs new file mode 100644 index 0000000..11920f1 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcMasterLocationFormatAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcMasterLocationFormatAttribute : Attribute +{ + public string Format { get; private set; } + + public AspMvcMasterLocationFormatAttribute(string format) + { + Format = format; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcModelTypeAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcModelTypeAttribute.cs new file mode 100644 index 0000000..5a76784 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcModelTypeAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcModelTypeAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcPartialViewAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcPartialViewAttribute.cs new file mode 100644 index 0000000..b39fed9 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcPartialViewAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcPartialViewAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcPartialViewLocationFormatAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcPartialViewLocationFormatAttribute.cs new file mode 100644 index 0000000..03f9446 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcPartialViewLocationFormatAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcPartialViewLocationFormatAttribute : Attribute +{ + public string Format { get; private set; } + + public AspMvcPartialViewLocationFormatAttribute(string format) + { + Format = format; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcSuppressViewErrorAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcSuppressViewErrorAttribute.cs new file mode 100644 index 0000000..6ff0f14 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcSuppressViewErrorAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcSuppressViewErrorAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcTemplateAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcTemplateAttribute.cs new file mode 100644 index 0000000..09ae86e --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcTemplateAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcTemplateAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewAttribute.cs new file mode 100644 index 0000000..16e4b5e --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcViewAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewComponentAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewComponentAttribute.cs new file mode 100644 index 0000000..1c9f3ec --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewComponentAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcViewComponentAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewComponentViewAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewComponentViewAttribute.cs new file mode 100644 index 0000000..7d7e33f --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewComponentViewAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcViewComponentViewAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewLocationFormatAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewLocationFormatAttribute.cs new file mode 100644 index 0000000..a11c5e1 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspMvcViewLocationFormatAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspMvcViewLocationFormatAttribute : Attribute +{ + public string Format { get; private set; } + + public AspMvcViewLocationFormatAttribute(string format) + { + Format = format; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspRequiredAttributeAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspRequiredAttributeAttribute.cs new file mode 100644 index 0000000..1e5c34e --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspRequiredAttributeAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspRequiredAttributeAttribute : Attribute +{ + public string Attribute { get; private set; } + + public AspRequiredAttributeAttribute(string attribute) + { + Attribute = attribute; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspTypePropertyAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspTypePropertyAttribute.cs new file mode 100644 index 0000000..845fb4e --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AspTypePropertyAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AspTypePropertyAttribute : Attribute +{ + public bool CreateConstructorReferences { get; private set; } + + public AspTypePropertyAttribute(bool createConstructorReferences) + { + CreateConstructorReferences = createConstructorReferences; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionConditionAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionConditionAttribute.cs new file mode 100644 index 0000000..574bc26 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionConditionAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AssertionConditionAttribute : Attribute +{ + public AssertionConditionType ConditionType { get; private set; } + + public AssertionConditionAttribute(AssertionConditionType conditionType) + { + ConditionType = conditionType; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionConditionType.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionConditionType.cs new file mode 100644 index 0000000..c830c79 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionConditionType.cs @@ -0,0 +1,9 @@ +namespace JetBrains.Annotations; + +internal enum AssertionConditionType +{ + IS_TRUE, + IS_FALSE, + IS_NULL, + IS_NOT_NULL +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionMethodAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionMethodAttribute.cs new file mode 100644 index 0000000..11e4744 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/AssertionMethodAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class AssertionMethodAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/BaseTypeRequiredAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/BaseTypeRequiredAttribute.cs new file mode 100644 index 0000000..e7fa347 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/BaseTypeRequiredAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class BaseTypeRequiredAttribute : Attribute +{ + public Type BaseType { get; private set; } + + public BaseTypeRequiredAttribute(Type baseType) + { + BaseType = baseType; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CanBeNullAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CanBeNullAttribute.cs new file mode 100644 index 0000000..a980c6c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CanBeNullAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Parameter | AttributeTargets.Delegate | AttributeTargets.GenericParameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class CanBeNullAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CannotApplyEqualityOperatorAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CannotApplyEqualityOperatorAttribute.cs new file mode 100644 index 0000000..f540207 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CannotApplyEqualityOperatorAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class CannotApplyEqualityOperatorAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CollectionAccessAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CollectionAccessAttribute.cs new file mode 100644 index 0000000..bdc4532 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CollectionAccessAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class CollectionAccessAttribute : Attribute +{ + public CollectionAccessType CollectionAccessType { get; private set; } + + public CollectionAccessAttribute(CollectionAccessType collectionAccessType) + { + CollectionAccessType = collectionAccessType; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CollectionAccessType.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CollectionAccessType.cs new file mode 100644 index 0000000..b002894 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/CollectionAccessType.cs @@ -0,0 +1,12 @@ +using System; + +namespace JetBrains.Annotations; + +[Flags] +internal enum CollectionAccessType +{ + None = 0, + Read = 1, + ModifyExistingContent = 2, + UpdatedContent = 6 +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ContractAnnotationAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ContractAnnotationAttribute.cs new file mode 100644 index 0000000..1a536f8 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ContractAnnotationAttribute.cs @@ -0,0 +1,24 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class ContractAnnotationAttribute : Attribute +{ + public string Contract { get; private set; } + + public bool ForceFullStates { get; private set; } + + public ContractAnnotationAttribute(string contract) + : this(contract, forceFullStates: false) + { + } + + public ContractAnnotationAttribute(string contract, bool forceFullStates) + { + Contract = contract; + ForceFullStates = forceFullStates; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/HtmlAttributeValueAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/HtmlAttributeValueAttribute.cs new file mode 100644 index 0000000..e5020c1 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/HtmlAttributeValueAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class HtmlAttributeValueAttribute : Attribute +{ + public string Name { get; private set; } + + public HtmlAttributeValueAttribute(string name) + { + Name = name; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/HtmlElementAttributesAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/HtmlElementAttributesAttribute.cs new file mode 100644 index 0000000..be9ee35 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/HtmlElementAttributesAttribute.cs @@ -0,0 +1,20 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class HtmlElementAttributesAttribute : Attribute +{ + public string Name { get; private set; } + + public HtmlElementAttributesAttribute() + { + } + + public HtmlElementAttributesAttribute(string name) + { + Name = name; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitNotNullAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitNotNullAttribute.cs new file mode 100644 index 0000000..f49bc88 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitNotNullAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class ImplicitNotNullAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitUseKindFlags.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitUseKindFlags.cs new file mode 100644 index 0000000..00e4a1c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitUseKindFlags.cs @@ -0,0 +1,13 @@ +using System; + +namespace JetBrains.Annotations; + +[Flags] +internal enum ImplicitUseKindFlags +{ + Default = 7, + Access = 1, + Assign = 2, + InstantiatedWithFixedConstructorSignature = 4, + InstantiatedNoFixedConstructorSignature = 8 +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitUseTargetFlags.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitUseTargetFlags.cs new file mode 100644 index 0000000..f42440d --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ImplicitUseTargetFlags.cs @@ -0,0 +1,12 @@ +using System; + +namespace JetBrains.Annotations; + +[Flags] +internal enum ImplicitUseTargetFlags +{ + Default = 1, + Itself = 1, + Members = 2, + WithMembers = 3 +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/InstantHandleAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/InstantHandleAttribute.cs new file mode 100644 index 0000000..df6ebf4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/InstantHandleAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class InstantHandleAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/InvokerParameterNameAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/InvokerParameterNameAttribute.cs new file mode 100644 index 0000000..205d790 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/InvokerParameterNameAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class InvokerParameterNameAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ItemCanBeNullAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ItemCanBeNullAttribute.cs new file mode 100644 index 0000000..deff487 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ItemCanBeNullAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Delegate)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class ItemCanBeNullAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ItemNotNullAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ItemNotNullAttribute.cs new file mode 100644 index 0000000..13584f8 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ItemNotNullAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Delegate)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class ItemNotNullAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/LinqTunnelAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/LinqTunnelAttribute.cs new file mode 100644 index 0000000..ff90e98 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/LinqTunnelAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class LinqTunnelAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/LocalizationRequiredAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/LocalizationRequiredAttribute.cs new file mode 100644 index 0000000..1a6b324 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/LocalizationRequiredAttribute.cs @@ -0,0 +1,21 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.All)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class LocalizationRequiredAttribute : Attribute +{ + public bool Required { get; private set; } + + public LocalizationRequiredAttribute() + : this(required: true) + { + } + + public LocalizationRequiredAttribute(bool required) + { + Required = required; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MacroAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MacroAttribute.cs new file mode 100644 index 0000000..86996c4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MacroAttribute.cs @@ -0,0 +1,15 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class MacroAttribute : Attribute +{ + public string Expression { get; set; } + + public int Editable { get; set; } + + public string Target { get; set; } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MeansImplicitUseAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MeansImplicitUseAttribute.cs new file mode 100644 index 0000000..20c025c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MeansImplicitUseAttribute.cs @@ -0,0 +1,34 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class | AttributeTargets.GenericParameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class MeansImplicitUseAttribute : Attribute +{ + public ImplicitUseKindFlags UseKindFlags { get; private set; } + + public ImplicitUseTargetFlags TargetFlags { get; private set; } + + public MeansImplicitUseAttribute() + : this(ImplicitUseKindFlags.Default, ImplicitUseTargetFlags.Default) + { + } + + public MeansImplicitUseAttribute(ImplicitUseKindFlags useKindFlags) + : this(useKindFlags, ImplicitUseTargetFlags.Default) + { + } + + public MeansImplicitUseAttribute(ImplicitUseTargetFlags targetFlags) + : this(ImplicitUseKindFlags.Default, targetFlags) + { + } + + public MeansImplicitUseAttribute(ImplicitUseKindFlags useKindFlags, ImplicitUseTargetFlags targetFlags) + { + UseKindFlags = useKindFlags; + TargetFlags = targetFlags; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MustUseReturnValueAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MustUseReturnValueAttribute.cs new file mode 100644 index 0000000..c7805c3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/MustUseReturnValueAttribute.cs @@ -0,0 +1,20 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class MustUseReturnValueAttribute : Attribute +{ + public string Justification { get; private set; } + + public MustUseReturnValueAttribute() + { + } + + public MustUseReturnValueAttribute(string justification) + { + Justification = justification; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NoEnumerationAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NoEnumerationAttribute.cs new file mode 100644 index 0000000..8cbef96 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NoEnumerationAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class NoEnumerationAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NoReorder.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NoReorder.cs new file mode 100644 index 0000000..94c8202 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NoReorder.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.All)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class NoReorder : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NotNullAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NotNullAttribute.cs new file mode 100644 index 0000000..a336fcc --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NotNullAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Parameter | AttributeTargets.Delegate | AttributeTargets.GenericParameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class NotNullAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NotifyPropertyChangedInvocatorAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NotifyPropertyChangedInvocatorAttribute.cs new file mode 100644 index 0000000..61b04f8 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/NotifyPropertyChangedInvocatorAttribute.cs @@ -0,0 +1,20 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class NotifyPropertyChangedInvocatorAttribute : Attribute +{ + public string ParameterName { get; private set; } + + public NotifyPropertyChangedInvocatorAttribute() + { + } + + public NotifyPropertyChangedInvocatorAttribute(string parameterName) + { + ParameterName = parameterName; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PathReferenceAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PathReferenceAttribute.cs new file mode 100644 index 0000000..b25d877 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PathReferenceAttribute.cs @@ -0,0 +1,20 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class PathReferenceAttribute : Attribute +{ + public string BasePath { get; private set; } + + public PathReferenceAttribute() + { + } + + public PathReferenceAttribute(string basePath) + { + BasePath = basePath; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ProvidesContextAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ProvidesContextAttribute.cs new file mode 100644 index 0000000..6b17125 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ProvidesContextAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface | AttributeTargets.Parameter | AttributeTargets.GenericParameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class ProvidesContextAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PublicAPIAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PublicAPIAttribute.cs new file mode 100644 index 0000000..82f44ca --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PublicAPIAttribute.cs @@ -0,0 +1,19 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class PublicAPIAttribute : Attribute +{ + public string Comment { get; private set; } + + public PublicAPIAttribute() + { + } + + public PublicAPIAttribute(string comment) + { + Comment = comment; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PureAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PureAttribute.cs new file mode 100644 index 0000000..b15474b --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/PureAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class PureAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorDirectiveAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorDirectiveAttribute.cs new file mode 100644 index 0000000..df74e94 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorDirectiveAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorDirectiveAttribute : Attribute +{ + public string Directive { get; private set; } + + public RazorDirectiveAttribute(string directive) + { + Directive = directive; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorHelperCommonAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorHelperCommonAttribute.cs new file mode 100644 index 0000000..d530d94 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorHelperCommonAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorHelperCommonAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorImportNamespaceAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorImportNamespaceAttribute.cs new file mode 100644 index 0000000..4010e3d --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorImportNamespaceAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorImportNamespaceAttribute : Attribute +{ + public string Name { get; private set; } + + public RazorImportNamespaceAttribute(string name) + { + Name = name; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorInjectionAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorInjectionAttribute.cs new file mode 100644 index 0000000..08daec2 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorInjectionAttribute.cs @@ -0,0 +1,19 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorInjectionAttribute : Attribute +{ + public string Type { get; private set; } + + public string FieldName { get; private set; } + + public RazorInjectionAttribute(string type, string fieldName) + { + Type = type; + FieldName = fieldName; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorLayoutAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorLayoutAttribute.cs new file mode 100644 index 0000000..95e51a0 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorLayoutAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorLayoutAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorSectionAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorSectionAttribute.cs new file mode 100644 index 0000000..70970d8 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorSectionAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorSectionAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteLiteralMethodAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteLiteralMethodAttribute.cs new file mode 100644 index 0000000..faf8c64 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteLiteralMethodAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorWriteLiteralMethodAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteMethodAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteMethodAttribute.cs new file mode 100644 index 0000000..a11974c --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteMethodAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorWriteMethodAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteMethodParameterAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteMethodParameterAttribute.cs new file mode 100644 index 0000000..618e810 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RazorWriteMethodParameterAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RazorWriteMethodParameterAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RegexPatternAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RegexPatternAttribute.cs new file mode 100644 index 0000000..47b2933 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/RegexPatternAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class RegexPatternAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/SourceTemplateAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/SourceTemplateAttribute.cs new file mode 100644 index 0000000..0939d7d --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/SourceTemplateAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class SourceTemplateAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/StringFormatMethodAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/StringFormatMethodAttribute.cs new file mode 100644 index 0000000..f6ffff5 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/StringFormatMethodAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Delegate)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class StringFormatMethodAttribute : Attribute +{ + public string FormatParameterName { get; private set; } + + public StringFormatMethodAttribute(string formatParameterName) + { + FormatParameterName = formatParameterName; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/TerminatesProgramAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/TerminatesProgramAttribute.cs new file mode 100644 index 0000000..513a6f7 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/TerminatesProgramAttribute.cs @@ -0,0 +1,11 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[Obsolete("Use [ContractAnnotation('=> halt')] instead")] +[AttributeUsage(AttributeTargets.Method)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class TerminatesProgramAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/UsedImplicitlyAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/UsedImplicitlyAttribute.cs new file mode 100644 index 0000000..6649318 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/UsedImplicitlyAttribute.cs @@ -0,0 +1,34 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.All)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class UsedImplicitlyAttribute : Attribute +{ + public ImplicitUseKindFlags UseKindFlags { get; private set; } + + public ImplicitUseTargetFlags TargetFlags { get; private set; } + + public UsedImplicitlyAttribute() + : this(ImplicitUseKindFlags.Default, ImplicitUseTargetFlags.Default) + { + } + + public UsedImplicitlyAttribute(ImplicitUseKindFlags useKindFlags) + : this(useKindFlags, ImplicitUseTargetFlags.Default) + { + } + + public UsedImplicitlyAttribute(ImplicitUseTargetFlags targetFlags) + : this(ImplicitUseKindFlags.Default, targetFlags) + { + } + + public UsedImplicitlyAttribute(ImplicitUseKindFlags useKindFlags, ImplicitUseTargetFlags targetFlags) + { + UseKindFlags = useKindFlags; + TargetFlags = targetFlags; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ValueProviderAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ValueProviderAttribute.cs new file mode 100644 index 0000000..f69d2f6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/ValueProviderAttribute.cs @@ -0,0 +1,16 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class ValueProviderAttribute : Attribute +{ + public string Name { get; private set; } + + public ValueProviderAttribute(string name) + { + Name = name; + } +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/XamlItemBindingOfItemsControlAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/XamlItemBindingOfItemsControlAttribute.cs new file mode 100644 index 0000000..afa2106 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/XamlItemBindingOfItemsControlAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Property)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class XamlItemBindingOfItemsControlAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/XamlItemsControlAttribute.cs b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/XamlItemsControlAttribute.cs new file mode 100644 index 0000000..969b309 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/JetBrains.Annotations/XamlItemsControlAttribute.cs @@ -0,0 +1,10 @@ +using System; +using System.Diagnostics; + +namespace JetBrains.Annotations; + +[AttributeUsage(AttributeTargets.Class)] +[Conditional("JETBRAINS_ANNOTATIONS")] +internal sealed class XamlItemsControlAttribute : Attribute +{ +} diff --git a/analysis/decompiled/aaServicesCommon/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesCommon/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..342ff44 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyDescription("ASB Services Common.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("aaServicesCommon")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesCommon/aaServicesCommon.csproj b/analysis/decompiled/aaServicesCommon/aaServicesCommon.csproj new file mode 100644 index 0000000..5e07743 --- /dev/null +++ b/analysis/decompiled/aaServicesCommon/aaServicesCommon.csproj @@ -0,0 +1,25 @@ + + + aaServicesCommon + False + net40 + + + 14.0 + True + False + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBClient.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBClient.cs new file mode 100644 index 0000000..15b4639 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBClient.cs @@ -0,0 +1,637 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Reflection; +using System.Runtime.InteropServices; +using System.Security; +using System.ServiceModel; +using System.ServiceModel.Discovery; +using System.Text; +using System.Xml; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; +using ArchestrAServices.Proxy; + +namespace ASBClientAccessLayer; + +public class ASBClient : IASBClient1, IASBClient +{ + private ManageASBSecurityProxy AsbSecurityProxy; + + public bool Connected + { + get + { + if (AsbSecurityProxy != null && AsbSecurityProxy.State == CommunicationState.Opened) + { + return AsbSecurityProxy.SecureSessionEstablished; + } + return false; + } + } + + public ASBClient() + { + AsbSecurityProxy = null; + } + + public ASBClient(string SrNodeName) + { + AsbSecurityProxy = new ManageASBSecurityProxy(SrNodeName); + string errorMessage = string.Empty; + if (!AsbSecurityProxy.Connect(string.Empty, out errorMessage)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Error opening persistent endpoint to System Authentication service on node {0}: {1}", SrNodeName, errorMessage); + } + } + + public bool Reconnect() + { + if (AsbSecurityProxy != null) + { + AsbSecurityProxy.Disconnect(); + string errorMessage = string.Empty; + if (!AsbSecurityProxy.Connect(string.Empty, out errorMessage)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Error re-opening persistent endpoint to System Authentication service on node {0}: {1}", AsbSecurityProxy.SRNodeName, errorMessage); + return false; + } + return true; + } + return false; + } + + public bool Disconnect() + { + if (AsbSecurityProxy != null) + { + AsbSecurityProxy.Disconnect(); + return true; + } + return false; + } + + public ArchestrAResult OpenTemporaryRegistrationEndpoint(string repositoryNode, SecureString passphrase) + { + ArchestrAResult archestrAResult = ResultFactory.MakeResult(ArchestrAError.BadNoCommunication, 0); + string errorMessage = string.Empty; + ManageASBSecurityProxy asbSecurityProxy = AsbSecurityProxy; + if (asbSecurityProxy == null) + { + using (asbSecurityProxy = new ManageASBSecurityProxy(repositoryNode)) + { + asbSecurityProxy.Connect(string.Empty, out errorMessage); + EnableRegistration(archestrAResult, asbSecurityProxy, passphrase, out errorMessage); + } + } + else + { + EnableRegistration(archestrAResult, asbSecurityProxy, passphrase, out errorMessage); + } + return archestrAResult; + } + + private ArchestrAResult EnableRegistration(ArchestrAResult archestrAResult, ManageASBSecurityProxy Proxy, SecureString passphrase, out string errorMessage) + { + errorMessage = string.Empty; + if (Proxy.State == CommunicationState.Opened && Proxy.SecureSessionEstablished) + { + archestrAResult = Proxy.RegisterServiceBusEnable(new SystemAuthenticationASBConfiguration + { + solutionName = "EnableRegistration", + EncryptedSharedSecret = Encoding.ASCII.GetBytes(ConvertToString(passphrase)) + }); + if (archestrAResult.Status != 0) + { + errorMessage = "failed to open registration endpoint"; + } + } + return archestrAResult; + } + + public ArchestrAResult CloseTemporaryRegistrationEndpoint(string repositoryNode) + { + ArchestrAResult archestrAResult = ResultFactory.MakeResult(ArchestrAError.BadNoCommunication, 0); + string errorMessage = string.Empty; + ManageASBSecurityProxy asbSecurityProxy = AsbSecurityProxy; + if (asbSecurityProxy == null) + { + using (asbSecurityProxy = new ManageASBSecurityProxy(repositoryNode)) + { + asbSecurityProxy.Connect(string.Empty, out errorMessage); + DisableRegistration(archestrAResult, asbSecurityProxy, out errorMessage); + } + } + else + { + DisableRegistration(archestrAResult, asbSecurityProxy, out errorMessage); + } + return archestrAResult; + } + + private ArchestrAResult DisableRegistration(ArchestrAResult archestrAResult, ManageASBSecurityProxy Proxy, out string errorMessage) + { + errorMessage = string.Empty; + if (Proxy.State == CommunicationState.Opened && Proxy.SecureSessionEstablished) + { + archestrAResult = Proxy.RegisterServiceBusEnable(new SystemAuthenticationASBConfiguration + { + solutionName = "DisableRegistration", + EncryptedSharedSecret = null + }); + if (archestrAResult.Status != 0) + { + errorMessage = "failed to close registration endpoint"; + } + } + return archestrAResult; + } + + public ArchestrAResult OpenTemporaryPairingEndpoint(string repositoryNode, SecureString passphrase) + { + ArchestrAResult archestrAResult = ResultFactory.MakeResult(ArchestrAError.BadNoCommunication, 0); + string errorMessage = string.Empty; + ManageASBSecurityProxy asbSecurityProxy = AsbSecurityProxy; + if (asbSecurityProxy == null) + { + using (asbSecurityProxy = new ManageASBSecurityProxy(repositoryNode)) + { + asbSecurityProxy.Connect(string.Empty, out errorMessage); + EnablePairing(archestrAResult, asbSecurityProxy, passphrase, out errorMessage); + } + } + else + { + EnablePairing(archestrAResult, asbSecurityProxy, passphrase, out errorMessage); + } + return archestrAResult; + } + + private ArchestrAResult EnablePairing(ArchestrAResult archestrAResult, ManageASBSecurityProxy Proxy, SecureString passphrase, out string errorMessage) + { + errorMessage = string.Empty; + if (Proxy.State == CommunicationState.Opened && Proxy.SecureSessionEstablished) + { + archestrAResult = Proxy.RegisterServiceBusEnable(new SystemAuthenticationASBConfiguration + { + solutionName = "EnablePairing", + EncryptedSharedSecret = Encoding.ASCII.GetBytes(ConvertToString(passphrase)) + }); + if (archestrAResult.Status != 0) + { + errorMessage = "failed to open pairing endpoint"; + } + } + return archestrAResult; + } + + public ArchestrAResult CloseTemporaryPairingEndpoint(string repositoryNode) + { + ArchestrAResult archestrAResult = ResultFactory.MakeResult(ArchestrAError.BadNoCommunication, 0); + string errorMessage = string.Empty; + ManageASBSecurityProxy asbSecurityProxy = AsbSecurityProxy; + if (asbSecurityProxy == null) + { + using (asbSecurityProxy = new ManageASBSecurityProxy(repositoryNode)) + { + asbSecurityProxy.Connect(string.Empty, out errorMessage); + DisablePairing(archestrAResult, asbSecurityProxy, out errorMessage); + } + } + else + { + DisablePairing(archestrAResult, asbSecurityProxy, out errorMessage); + } + return archestrAResult; + } + + private ArchestrAResult DisablePairing(ArchestrAResult archestrAResult, ManageASBSecurityProxy Proxy, out string errorMessage) + { + errorMessage = string.Empty; + if (Proxy.State == CommunicationState.Opened && Proxy.SecureSessionEstablished) + { + archestrAResult = Proxy.RegisterServiceBusEnable(new SystemAuthenticationASBConfiguration + { + solutionName = "DisablePairing", + EncryptedSharedSecret = null + }); + if (archestrAResult.Status != 0) + { + errorMessage = "failed to close pairing endpoint"; + } + } + return archestrAResult; + } + + public ArchestrAResult GetRegistrationEndpointStatus(string repositoryNode, out List ConfigurationData) + { + ConfigurationData = new List(); + ArchestrAResult archestrAResult = ResultFactory.MakeResult(ArchestrAError.BadNoCommunication, 0); + string errorMessage = string.Empty; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetRegistrationEndpointStatus: Creating new ManageASBSecurityProxy for {0}", repositoryNode); + ManageASBSecurityProxy asbSecurityProxy = AsbSecurityProxy; + if (asbSecurityProxy == null) + { + using (asbSecurityProxy = new ManageASBSecurityProxy(repositoryNode)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetRegistrationEndpointStatus: Calling Connect with empty passphrase"); + asbSecurityProxy.Connect(string.Empty, out errorMessage); + RetrieveTemporaryEndpoint(archestrAResult, asbSecurityProxy, ConfigurationData, out errorMessage); + } + } + else + { + RetrieveTemporaryEndpoint(archestrAResult, asbSecurityProxy, ConfigurationData, out errorMessage); + } + return archestrAResult; + } + + private ArchestrAResult RetrieveTemporaryEndpoint(ArchestrAResult archestrAResult, ManageASBSecurityProxy Proxy, List ConfigurationData, out string errorMessage) + { + errorMessage = string.Empty; + if (Proxy.State == CommunicationState.Opened && Proxy.SecureSessionEstablished) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetRegistrationEndpointStatus: Calling GetRegistrationEndpointStatus"); + archestrAResult = Proxy.GetRegistrationEndpointStatus(out var ConfigurationData2); + if (archestrAResult.Status != 0) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetRegistrationEndpointStatus: failed to retrieve temporary endpoint status: {0}", archestrAResult.Status); + errorMessage = "failed to retrieve temporary endpoint status"; + } + else + { + StatusTemporaryEndpoint[] array = ConfigurationData2; + for (int i = 0; i < array.Length; i++) + { + StatusTemporaryEndpoint statusTemporaryEndpoint = array[i]; + ConfigurationData.Add(new TemporaryEndpointStatus + { + EndpointName = statusTemporaryEndpoint.EndpointName, + EndpointState = (TemporaryEndpointState)Enum.Parse(typeof(TemporaryEndpointState), statusTemporaryEndpoint.EndpointState, ignoreCase: true) + }); + } + } + } + return archestrAResult; + } + + public RegistrationResult RegisterWithSR(string repositoryNode, SecureString passphrase) + { + string value = new ManageSecurityConfiguration().Registration(AsbSecurityProxy, repositoryNode, ConvertToString(passphrase), null, isRegister: true); + RegistrationResult result = RegistrationResult.Success; + if (!string.IsNullOrEmpty(value)) + { + result = RegistrationResult.RepositoryNodeNotConfigured; + } + return result; + } + + public RegistrationResult CopySolutionFromSR(string repositoryNode, SecureString passphrase, string solutionName) + { + string value = new ManageSecurityConfiguration().Registration(AsbSecurityProxy, repositoryNode, ConvertToString(passphrase), solutionName, isRegister: false); + RegistrationResult result = RegistrationResult.Success; + if (!string.IsNullOrEmpty(value)) + { + result = RegistrationResult.RepositoryNodeNotConfigured; + } + return result; + } + + public RegistrationResult RemoveSolutionFromThisNode(string solutionName) + { + if (string.IsNullOrEmpty(solutionName)) + { + return RegistrationResult.NodeInaccessible; + } + string value = RegistryHandler.DeleteFromRegistry(solutionName); + RegistrationResult result = RegistrationResult.Success; + if (!string.IsNullOrEmpty(value)) + { + result = RegistrationResult.RepositoryNodeNotConfigured; + } + return result; + } + + public string GetPassphraseForSolution(string solutionName) + { + return new ManageSecurityConfiguration().GetPassphraseForSolution(solutionName); + } + + public RegistrationResult UnregisterWithSR(string repositoryNode) + { + string text = new ManageSecurityConfiguration().UnRegistration(repositoryNode); + RegistrationResult result = RegistrationResult.Success; + if (!string.IsNullOrEmpty(text)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, string.Format("UnregisterWithSR({0}) failed: {1}", string.IsNullOrEmpty(repositoryNode) ? "" : repositoryNode, text)); + result = RegistrationResult.RepositoryNodeNotConfigured; + } + return result; + } + + public RegistrationResult PairSRNodes(string remoteRepositoryNode, SecureString passphrase) + { + RegistrationResult result = RegistrationResult.Success; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"PairSRNodes Enter: {remoteRepositoryNode}"); + ManageSecurityConfiguration manageSecurityConfiguration = new ManageSecurityConfiguration(); + string SRNodeName = string.Empty; + RegistryHandler.GetSrNode(out SRNodeName); + if (HostNameValidator.IsRemoteNodeSameasSRNode(remoteRepositoryNode, SRNodeName)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "PairSRNodes failed: Pairing to same SRNode is not allowed"); + result = RegistrationResult.NodeInaccessible; + } + else + { + string text = manageSecurityConfiguration.PairDefaultSRwithRemoteSR(remoteRepositoryNode, ConvertToString(passphrase)); + if (!string.IsNullOrEmpty(text)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"PairSRNodes failed: {text}"); + result = RegistrationResult.RepositoryNodeNotConfigured; + } + } + return result; + } + + public RegistrationResult UnpairSRNodes(string remoteRepositoryNode) + { + string SRNodeName = string.Empty; + RegistryHandler.GetSrNode(out SRNodeName); + RegistrationResult result = RegistrationResult.Success; + if (HostNameValidator.IsRemoteNodeSameasSRNode(remoteRepositoryNode, SRNodeName)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "UnPairSRNode failed: Un-pairing to same SRNode is not allowed"); + result = RegistrationResult.NodeInaccessible; + } + else + { + string remoteSolutionName = "Archestra_" + remoteRepositoryNode; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, string.Format("UnpairSRNodes called for solution '{0}'", string.IsNullOrEmpty(remoteRepositoryNode) ? "" : remoteRepositoryNode)); + SynchronizeSolutionsWithSR(); + string text = new ManageSecurityConfiguration().UnpairDefaultSRfromRemoteSR(remoteSolutionName); + if (!string.IsNullOrEmpty(text)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"UnpairSRNodes failed: {text}"); + result = RegistrationResult.RepositoryNodeNotConfigured; + } + } + return result; + } + + public string GetChangedASBExtraInfo() + { + SynchronizeSolutionsWithSR(); + string empty = string.Empty; + string XMLExtraInfo = string.Empty; + string SRNodeName = string.Empty; + empty = RegistryHandler.GetSrNode(out SRNodeName); + if (!string.IsNullOrEmpty(SRNodeName)) + { + ManageASBSecurityProxy asbSecurityProxy = AsbSecurityProxy; + if (asbSecurityProxy == null) + { + using (asbSecurityProxy = new ManageASBSecurityProxy(SRNodeName)) + { + asbSecurityProxy.Connect(string.Empty, out empty); + RetrieveExtraInfoChanges(asbSecurityProxy, out XMLExtraInfo, out empty); + } + } + else + { + RetrieveExtraInfoChanges(asbSecurityProxy, out XMLExtraInfo, out empty); + } + } + else + { + empty = "No repository node is registered"; + } + return XMLExtraInfo; + } + + private void RetrieveExtraInfoChanges(ManageASBSecurityProxy Proxy, out string XMLExtraInfo, out string errorMessage) + { + XMLExtraInfo = string.Empty; + errorMessage = string.Empty; + if (Proxy.State == CommunicationState.Opened && Proxy.SecureSessionEstablished && Proxy.QueryExtraInfoChanges(out XMLExtraInfo, Environment.MachineName).Status != 0) + { + errorMessage = "failed to retrieve temporary endpoint status"; + } + } + + private void SynchronizeSolutionsWithSR() + { + if (!string.IsNullOrEmpty(RegistryHandler.GetDefaultSolutionName(out var DefaultSolutionName)) || !string.IsNullOrEmpty(RegistryHandler.GetSrNode(DefaultSolutionName, out var SRNodeName)) || !string.IsNullOrEmpty(RegistryHandler.GetSolutionPassphrase(DefaultSolutionName, out var passphrase))) + { + return; + } + using SecureString secureString = new SecureString(); + string text = passphrase; + foreach (char c in text) + { + secureString.AppendChar(c); + } + List pairedSolutionsInSR = GetPairedSolutionsInSR(SRNodeName); + List solutionsAtThisNode = GetSolutionsAtThisNode(); + if (!pairedSolutionsInSR.Any() || !solutionsAtThisNode.Any()) + { + return; + } + Dictionary dictionary = new Dictionary(); + foreach (string item in pairedSolutionsInSR) + { + dictionary.Add(item, 0); + } + Dictionary dictionary2 = new Dictionary(); + foreach (string item2 in solutionsAtThisNode) + { + dictionary2.Add(item2, 0); + } + int value; + foreach (string item3 in pairedSolutionsInSR) + { + if (item3 != DefaultSolutionName && !dictionary2.TryGetValue(item3, out value)) + { + CopySolutionFromSR(SRNodeName, secureString, item3); + } + } + foreach (string item4 in solutionsAtThisNode) + { + if (item4 != DefaultSolutionName && !dictionary.TryGetValue(item4, out value)) + { + RemoveSolutionFromThisNode(item4); + } + } + } + + public List GetPairedSolutionsInSR(string repositoryNode) + { + List SolutionNames = new List(); + new ManageSecurityConfiguration().GetSolutionsPairedWithSR(AsbSecurityProxy, repositoryNode, out SolutionNames); + return SolutionNames; + } + + public List GetSolutionsAtThisNode() + { + return RegistryHandler.EnumerateSolutionsAtThisNode(); + } + + public string GetDiscoveryEndpoint() + { + return SvcUtilities.GetDiscoveryEndpoint(); + } + + public FindResponse FindServices(FindCriteria findCriteria, out ASBDiscoveryResult Result) + { + Result = ASBDiscoveryResult.Unknown; + string text = SvcUtilities.GetDiscoveryEndpoint(); + if (!string.IsNullOrEmpty(text)) + { + if (!text.ToLower().EndsWith("/probe")) + { + text += "/Probe"; + } + return InternalFindServices(text, findCriteria, out Result); + } + Result = ASBDiscoveryResult.DiscoveryNotAvailable; + return null; + } + + public EndpointDiscoveryMetadata FindServiceEndpoint(Type ContractType, Uri[] Scopes, out ASBDiscoveryResult Result) + { + Result = ASBDiscoveryResult.Unknown; + string text = SvcUtilities.GetDiscoveryEndpoint(); + if (!string.IsNullOrEmpty(text)) + { + if (!text.ToLower().EndsWith("/probe")) + { + text += "/Probe"; + } + Uri probeEndpointAddress = new Uri(text); + return InternalFindServiceEndpoint(ContractType.Name, Scopes, probeEndpointAddress, out Result); + } + Result = ASBDiscoveryResult.DiscoveryNotAvailable; + return null; + } + + public RegistrationResult UnPairRemoteSR(string RemoteRepositoryNode, out string errorMessage) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "UnPairRemoteSR Entered"); + string SRNodeName = string.Empty; + errorMessage = string.Empty; + RegistryHandler.GetSrNode(out SRNodeName); + RegistrationResult registrationResult = RegistrationResult.Success; + if (HostNameValidator.IsRemoteNodeSameasSRNode(RemoteRepositoryNode, SRNodeName)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "UnPairRemoteSR failed: Un-pairing to same SRNode is not allowed"); + registrationResult = RegistrationResult.NodeInaccessible; + } + else + { + string remoteSolutionName = "Archestra_" + RemoteRepositoryNode; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, string.Format("UnPairRemoteSR called for solution '{0}'", string.IsNullOrEmpty(RemoteRepositoryNode) ? "" : RemoteRepositoryNode)); + SynchronizeSolutionsWithSR(); + registrationResult = new ManageSecurityConfiguration().UnPairRemoteSR(remoteSolutionName, out errorMessage); + if (registrationResult != RegistrationResult.Success) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"UnPairRemoteSR failed: {errorMessage}"); + } + } + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "UnPairRemoteSR Exit"); + return registrationResult; + } + + public static string ConvertToString(SecureString password) + { + if (password == null) + { + return string.Empty; + } + IntPtr intPtr = IntPtr.Zero; + try + { + intPtr = Marshal.SecureStringToGlobalAllocUnicode(password); + return Marshal.PtrToStringUni(intPtr); + } + finally + { + Marshal.ZeroFreeGlobalAllocUnicode(intPtr); + } + } + + private FindResponse InternalFindServices(string discoveryendpoint, FindCriteria findiCriteria, out ASBDiscoveryResult Result) + { + if (string.IsNullOrEmpty(discoveryendpoint)) + { + Result = ASBDiscoveryResult.DiscoveryBadParameters; + return null; + } + if (findiCriteria == null) + { + Result = ASBDiscoveryResult.DiscoveryBadParameters; + return null; + } + Result = ASBDiscoveryResult.Unknown; + try + { + Uri uri = new Uri(discoveryendpoint); + EndpointAddress endpointAddress = new EndpointAddress(uri); + using DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(uri.ToString()), endpointAddress)); + FindResponse findResponse = discoveryClient.Find(findiCriteria); + if (findResponse != null && findResponse.Endpoints.Count > 0) + { + Result = ASBDiscoveryResult.Success; + } + else + { + Result = ASBDiscoveryResult.DiscoveryReturnedNoEndpoints; + } + return findResponse; + } + catch (Exception) + { + } + return null; + } + + private EndpointDiscoveryMetadata InternalFindServiceEndpoint(string ContractName, Uri[] Scopes, Uri probeEndpointAddress, out ASBDiscoveryResult Result) + { + if (string.IsNullOrEmpty(ContractName)) + { + Result = ASBDiscoveryResult.DiscoveryBadParameters; + return null; + } + if (probeEndpointAddress == null) + { + Result = ASBDiscoveryResult.DiscoveryBadParameters; + return null; + } + EndpointAddress endpointAddress = new EndpointAddress(probeEndpointAddress); + using (DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(probeEndpointAddress.ToString()), endpointAddress))) + { + FindCriteria findCriteria = new FindCriteria(); + Result = ASBDiscoveryResult.Unknown; + try + { + XmlQualifiedName item = new XmlQualifiedName(ContractName, "http://ArchestrAServices.Contract"); + findCriteria.ContractTypeNames.Add(item); + findCriteria.Scopes.Concat(Scopes.ToList()); + FindResponse findResponse = discoveryClient.Find(findCriteria); + if (findResponse != null && findResponse.Endpoints.Count > 0) + { + Result = ASBDiscoveryResult.Success; + return findResponse.Endpoints[0]; + } + Result = ASBDiscoveryResult.DiscoveryReturnedNoEndpoints; + } + catch (TargetInvocationException) + { + } + catch (UriFormatException) + { + } + } + return null; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBDiscoveryResult.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBDiscoveryResult.cs new file mode 100644 index 0000000..ffaf2d0 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBDiscoveryResult.cs @@ -0,0 +1,10 @@ +namespace ASBClientAccessLayer; + +public enum ASBDiscoveryResult +{ + Success = 0, + DiscoveryNotAvailable = 1, + DiscoveryReturnedNoEndpoints = 2, + DiscoveryBadParameters = 3, + Unknown = 65535 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBDiscoveryResult1.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBDiscoveryResult1.cs new file mode 100644 index 0000000..2964da3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ASBDiscoveryResult1.cs @@ -0,0 +1,10 @@ +namespace ASBClientAccessLayer; + +public enum ASBDiscoveryResult1 +{ + Success = 0, + DiscoveryNotAvailable = 1, + DiscoveryReturnedNoEndpoints = 2, + DiscoveryBadParameters = 3, + Unknown = 65535 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ClientAccessUtilities.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ClientAccessUtilities.cs new file mode 100644 index 0000000..0b78007 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ClientAccessUtilities.cs @@ -0,0 +1,104 @@ +#define TRACE +using System; +using System.Collections.ObjectModel; +using System.Diagnostics; +using System.Linq; +using System.Reflection; +using System.ServiceModel; +using System.ServiceModel.Discovery; +using System.Xml; +using ArchestrAServices.Common; + +namespace ASBClientAccessLayer; + +public class ClientAccessUtilities +{ + private Random random = new Random(); + + public ClientAccessUtilities() + { + random = new Random(Environment.TickCount); + } + + public EndpointDiscoveryMetadata FindServiceEndpoint(Type ContractType, Uri[] Scopes, out ASBDiscoveryResult1 Result) + { + Collection scopes = new Collection(Scopes.ToList()); + return FindServiceEndpoint(ContractType.Name, scopes, out Result); + } + + public EndpointDiscoveryMetadata FindServiceEndpoint(string ContractTypeName, Collection Scopes, out ASBDiscoveryResult1 Result) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindServiceEndpoint -- Enter"); + Result = ASBDiscoveryResult1.Unknown; + string text = SvcUtilities.GetDiscoveryEndpoint(); + if (!string.IsNullOrEmpty(text)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindServiceEndpoint -- DiscoveryEndPoint {text} method"); + if (!text.ToLower().EndsWith("/probe")) + { + text += "/Probe"; + } + Uri probeEndpointAddress = new Uri(text); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindServiceEndpoint -- calling InternalFindServiceEndpoint() method"); + return InternalFindServiceEndpoint(ContractTypeName, Scopes, probeEndpointAddress, out Result); + } + Result = ASBDiscoveryResult1.DiscoveryNotAvailable; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindServiceEndpoint -- Exit"); + return null; + } + + private EndpointDiscoveryMetadata InternalFindServiceEndpoint(string ContractName, Collection Scopes, Uri probeEndpointAddress, out ASBDiscoveryResult1 Result) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, $"InternalFindServiceEndpoint() Enter"); + if (string.IsNullOrEmpty(ContractName)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, $"InternalFindServiceEndpoint() Empty contact name"); + Result = ASBDiscoveryResult1.DiscoveryBadParameters; + return null; + } + if (probeEndpointAddress == null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, $"InternalFindServiceEndpoint() probeEndpointAddress is null"); + Result = ASBDiscoveryResult1.DiscoveryBadParameters; + return null; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"InternalFindServiceEndpoint() initializing..."); + EndpointAddress endpointAddress = new EndpointAddress(probeEndpointAddress); + using (DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(probeEndpointAddress.ToString()), endpointAddress))) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"InternalFindServiceEndpoint() Creating FindCriteria instance ..."); + FindCriteria findCriteria = new FindCriteria(); + Result = ASBDiscoveryResult1.Unknown; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindServiceEndpoint finding services with interface {ContractName} and {findCriteria.Scopes.Count()} scopes"); + try + { + XmlQualifiedName item = new XmlQualifiedName(ContractName, "http://ArchestrAServices.Contract"); + findCriteria.ContractTypeNames.Add(item); + foreach (Uri Scope in Scopes) + { + findCriteria.Scopes.Add(Scope); + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindServiceEndpoint finding services with interface {ContractName} and {findCriteria.Scopes.Count()} scopes"); + foreach (Uri scope in findCriteria.Scopes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $" {scope.AbsoluteUri.ToString()}"); + } + FindResponse findResponse = discoveryClient.Find(findCriteria); + if (findResponse != null && findResponse.Endpoints.Count > 0) + { + Result = ASBDiscoveryResult1.Success; + return findResponse.Endpoints[random.Next(findResponse.Endpoints.Count())]; + } + Result = ASBDiscoveryResult1.DiscoveryReturnedNoEndpoints; + } + catch (TargetInvocationException) + { + } + catch (UriFormatException) + { + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"InternalFindServiceEndpoint() Enter"); + } + return null; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/IASBClient.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/IASBClient.cs new file mode 100644 index 0000000..ac74c0a --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/IASBClient.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Security; +using System.ServiceModel.Discovery; +using ArchestrAServices.Contract; + +namespace ASBClientAccessLayer; + +public interface IASBClient +{ + bool Connected { get; } + + bool Reconnect(); + + bool Disconnect(); + + ArchestrAResult OpenTemporaryRegistrationEndpoint(string repositoryNode, SecureString passphrase); + + ArchestrAResult CloseTemporaryRegistrationEndpoint(string repositoryNode); + + ArchestrAResult OpenTemporaryPairingEndpoint(string repositoryNode, SecureString passphrase); + + ArchestrAResult CloseTemporaryPairingEndpoint(string repositoryNode); + + ArchestrAResult GetRegistrationEndpointStatus(string repositoryNode, out List ConfigurationData); + + RegistrationResult RegisterWithSR(string repositoryNode, SecureString passphrase); + + RegistrationResult CopySolutionFromSR(string repositoryNode, SecureString passphrase, string solutionName); + + RegistrationResult RemoveSolutionFromThisNode(string solutionName); + + string GetPassphraseForSolution(string solutionName); + + RegistrationResult UnregisterWithSR(string repositoryNode); + + RegistrationResult PairSRNodes(string remoteRepositoryNode, SecureString passphrase); + + RegistrationResult UnpairSRNodes(string repositoryNode); + + string GetChangedASBExtraInfo(); + + List GetPairedSolutionsInSR(string repositoryNode); + + List GetSolutionsAtThisNode(); + + string GetDiscoveryEndpoint(); + + FindResponse FindServices(FindCriteria findCriteria, out ASBDiscoveryResult Result); + + EndpointDiscoveryMetadata FindServiceEndpoint(Type ContractType, Uri[] Scopes, out ASBDiscoveryResult Result); +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/IASBClient1.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/IASBClient1.cs new file mode 100644 index 0000000..cf5ec72 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/IASBClient1.cs @@ -0,0 +1,6 @@ +namespace ASBClientAccessLayer; + +public interface IASBClient1 : IASBClient +{ + RegistrationResult UnPairRemoteSR(string RemoteRepositoryNode, out string errorMessage); +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ManageSecurityConfiguration.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ManageSecurityConfiguration.cs new file mode 100644 index 0000000..afb33f6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/ManageSecurityConfiguration.cs @@ -0,0 +1,804 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net; +using System.Net.Sockets; +using System.ServiceModel; +using System.Text; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; +using ArchestrAServices.Proxy; +using Microsoft.Win32; + +namespace ASBClientAccessLayer; + +public class ManageSecurityConfiguration +{ + public string RegisterSecurityConfiguration(SystemAuthenticationASBConfiguration ConfigurationData, string xmlExtraInfo, string srNodeName, bool isRegister) + { + string empty = string.Empty; + try + { + ASBConfigurationInformation aSBConfigurationInformation = new ASBConfigurationInformation(); + ConfigurationData = GetConfigurationInformation(ConfigurationData, aSBConfigurationInformation); + aSBConfigurationInformation.InitializationVector = ValidateSecurityConfiguration(ConfigurationData.initializationVector); + aSBConfigurationInformation.SolutionName = ConfigurationData.solutionName; + aSBConfigurationInformation.KeySize = ConfigurationData.keySize; + aSBConfigurationInformation.PasswordDerivationIterations = ConfigurationData.passwordDerivationIterations; + aSBConfigurationInformation.Prime = ValidateSecurityConfiguration(ConfigurationData.prime); + aSBConfigurationInformation.SaltValue = ValidateSecurityConfiguration(ConfigurationData.saltValue); + aSBConfigurationInformation.IsDefault = ConfigurationData.isDefault; + aSBConfigurationInformation.SRNodeName = ConfigurationData.srNodeName; + Dictionary dictionary = RegistryHandler.ParseXMLExtraInfo(xmlExtraInfo); + string value = string.Empty; + string value2 = string.Empty; + string value3 = string.Empty; + string value4 = string.Empty; + dictionary.TryGetValue("PrimaryGlobalDiscovery", out value); + dictionary.TryGetValue("SecondaryGlobalDiscovery", out value2); + dictionary.TryGetValue("PrimaryUniversalDiscovery", out value3); + dictionary.TryGetValue("SecondaryUniversalDiscovery", out value4); + aSBConfigurationInformation.PrimaryGlobalDiscovery = value; + aSBConfigurationInformation.SecondaryGlobalDiscovery = value2; + aSBConfigurationInformation.PrimaryUniversalDiscovery = value3; + aSBConfigurationInformation.SecondaryUniversalDiscovery = value4; + return RegistryHandler.CreateASBConfigInfoStructureInRegistry(aSBConfigurationInformation, srNodeName, isRegister); + } + catch (Exception ex) + { + return ex.Message; + } + } + + private static SystemAuthenticationASBConfiguration GetConfigurationInformation(SystemAuthenticationASBConfiguration ConfigurationData, ASBConfigurationInformation asbConfigurationInformation) + { + if (ConfigurationData.EncryptedCertificate != null) + { + asbConfigurationInformation.EncryptedCertificate = ValidateSecurityConfiguration(ConfigurationData.EncryptedCertificate); + } + if (ConfigurationData.EncryptedSharedSecret != null) + { + asbConfigurationInformation.EncryptedSharedSecret = ValidateSecurityConfiguration(ConfigurationData.EncryptedSharedSecret); + } + asbConfigurationInformation.Generator = ValidateSecurityConfiguration(ConfigurationData.generator); + if (!string.IsNullOrEmpty(ConfigurationData.hashAlgorithm)) + { + asbConfigurationInformation.HashAlgorithm = ConfigurationData.hashAlgorithm; + } + else + { + asbConfigurationInformation.HashAlgorithm = string.Empty; + } + return ConfigurationData; + } + + public string GetPassphraseForSolution(string solutionName) + { + string passphrase = string.Empty; + _ = string.Empty; + RegistryHandler.GetSolutionPassphrase(solutionName, out passphrase); + if (string.IsNullOrEmpty(passphrase)) + { + string SRNodeName = string.Empty; + RegistryHandler.GetSrNode(out SRNodeName); + string passphrase2 = string.Empty; + RegistryHandler.GetSolutionPassphrase(string.Empty, out passphrase2); + Registration(SRNodeName, passphrase2, solutionName, isRegister: false); + RegistryHandler.GetSolutionPassphrase(solutionName, out passphrase); + } + return passphrase; + } + + public string Registration(string srNode, string passPhrase, string SolutionName, bool isRegister) + { + return Registration(null, srNode, passPhrase, SolutionName, isRegister); + } + + public string Registration(ManageASBSecurityProxy AsbSecurityProxy, string srNode, string passPhrase, string SolutionName, bool isRegister) + { + string errorMessage = string.Empty; + ManageASBSecurityProxy manageASBSecurityProxy = AsbSecurityProxy; + if (isRegister) + { + if (manageASBSecurityProxy == null) + { + manageASBSecurityProxy = new ManageASBSecurityProxy(srNode); + string text = SystemAuthenticationConstants.MakeTemporaryRegistrationEndpointAddress(srNode); + bool flag; + switch (RegistryHandler.SecureCommunicationMode) + { + case SecureCommunicationModes.Required: + flag = ConnectTemporaryEndpoint(passPhrase, text + "S", manageASBSecurityProxy, out errorMessage); + break; + case SecureCommunicationModes.Preferred: + flag = ConnectTemporaryEndpoint(passPhrase, text + "S", manageASBSecurityProxy, out errorMessage); + if (!flag) + { + flag = ConnectTemporaryEndpoint(passPhrase, text, manageASBSecurityProxy, out errorMessage); + } + break; + default: + flag = ConnectTemporaryEndpoint(passPhrase, text, manageASBSecurityProxy, out errorMessage); + break; + } + if (!flag) + { + errorMessage = "Registration(true) failed to connect to temporary endpoint: " + errorMessage; + } + CheckProxyState(manageASBSecurityProxy, isRegister, out errorMessage); + } + else + { + CheckProxyState(manageASBSecurityProxy, isRegister, out errorMessage); + } + } + else if (manageASBSecurityProxy == null) + { + manageASBSecurityProxy = new ManageASBSecurityProxy(srNode); + if (!manageASBSecurityProxy.Connect(passPhrase, out errorMessage)) + { + errorMessage = "Registration(false) failed to connect to temporary endpoint: " + errorMessage; + } + CheckProxyState(manageASBSecurityProxy, isRegister, out errorMessage); + } + else + { + CheckProxyState(manageASBSecurityProxy, isRegister, out errorMessage); + } + if (string.IsNullOrEmpty(errorMessage)) + { + SystemAuthenticationASBConfiguration ConfigurationData = default(SystemAuthenticationASBConfiguration); + string XMLExtraInfo = string.Empty; + ArchestrAResult serviceBusPlatformConfiguration = manageASBSecurityProxy.GetServiceBusPlatformConfiguration(out ConfigurationData, out XMLExtraInfo, default(Guid), string.IsNullOrEmpty(SolutionName) ? ("Register/" + srNode) : SolutionName); + errorMessage = ((serviceBusPlatformConfiguration.Status != 0) ? ("Failed to get SecurityConfiguration from SystemAuthentication service with Status = " + serviceBusPlatformConfiguration.Status) : RegisterSecurityConfiguration(ConfigurationData, XMLExtraInfo, srNode, isRegister)); + } + return errorMessage; + } + + private bool ConnectTemporaryEndpoint(string passPhrase, string endpoint, ManageASBSecurityProxy proxy, out string errorMessage) + { + return proxy.Connect(passPhrase, endpoint, out errorMessage); + } + + private void CheckProxyState(ManageASBSecurityProxy Proxy, bool isRegister, out string errorMessage) + { + errorMessage = string.Empty; + if (Proxy.State != CommunicationState.Opened || !Proxy.SecureSessionEstablished) + { + errorMessage = $"Registration({isRegister.ToString().ToLower()}) proxy not connected to ASB endpoint"; + } + } + + public string UnRegistration(string repositoryNode) + { + string text = string.Empty; + string SRNodeName = repositoryNode; + if (string.IsNullOrEmpty(SRNodeName)) + { + text = RegistryHandler.GetSrNode(out SRNodeName); + } + if (string.IsNullOrEmpty(SRNodeName)) + { + text = "Node is currently not registed to service repository node"; + } + if (!string.IsNullOrEmpty(ValidateSRNode(SRNodeName))) + { + text = "Invalid SRNode"; + } + if (string.IsNullOrEmpty(ValidateSRNode(text))) + { + text = DeleteSecurityConfiguration(SRNodeName); + } + return text; + } + + public string PairDefaultSRwithRemoteSR(string remoteRepositoryNode, string remoteRepositoryPairingPassphrase) + { + string empty = string.Empty; + ManageASBSecurityProxy DefaultProxy = null; + ManageASBSecurityProxy RemoteProxy = null; + try + { + empty = ConnectToDefaultAndRemoteSR(remoteRepositoryNode, remoteRepositoryPairingPassphrase, out DefaultProxy, out RemoteProxy); + if (string.IsNullOrEmpty(empty)) + { + empty = ExchangeBetweenDefaultAndRemoteSR(remoteRepositoryNode, DefaultProxy, RemoteProxy); + } + } + catch (Exception ex) + { + empty = "Caught exception during pairing: " + ex.Message; + } + try + { + DefaultProxy?.Disconnect(); + RemoteProxy?.Disconnect(); + } + catch (Exception ex2) + { + empty = "Caught exception cleaning up after pairing: " + ex2.Message; + } + return empty; + } + + private string ConnectToDefaultAndRemoteSR(string remoteRepositoryNode, string remoteRepositoryPairingPassphrase, out ManageASBSecurityProxy DefaultProxy, out ManageASBSecurityProxy RemoteProxy) + { + string empty = string.Empty; + DefaultProxy = null; + RemoteProxy = null; + empty = RegistryHandler.GetSrNode(out var SRNodeName); + if (!string.IsNullOrEmpty(empty)) + { + return empty; + } + try + { + string text = SystemAuthenticationConstants.MakeTemporaryPairingEndpointAddress(remoteRepositoryNode); + RemoteProxy = new ManageASBSecurityProxy(remoteRepositoryNode); + bool flag; + switch (RegistryHandler.SecureCommunicationMode) + { + case SecureCommunicationModes.Required: + flag = ConnectTemporaryEndpoint(remoteRepositoryPairingPassphrase, text + "S", RemoteProxy, out empty); + break; + case SecureCommunicationModes.Preferred: + flag = ConnectTemporaryEndpoint(remoteRepositoryPairingPassphrase, text + "S", RemoteProxy, out empty); + if (!flag) + { + flag = ConnectTemporaryEndpoint(remoteRepositoryPairingPassphrase, text, RemoteProxy, out empty); + } + break; + default: + flag = ConnectTemporaryEndpoint(remoteRepositoryPairingPassphrase, text, RemoteProxy, out empty); + break; + } + if (!flag) + { + empty = "Failed to connect to SystemAuthentication service at remote SR " + remoteRepositoryNode; + } + } + catch (Exception ex) + { + empty = "ConnectToDefaultAndRemoteSR exception attempting to connect to temporary pairing endpoint on default SR: " + ex.Message; + } + if (string.IsNullOrEmpty(empty)) + { + try + { + DefaultProxy = new ManageASBSecurityProxy(SRNodeName); + if (!DefaultProxy.Connect(string.Empty, out empty)) + { + if (RemoteProxy != null) + { + RemoteProxy.Disconnect(); + RemoteProxy = null; + } + empty = "Failed to connect to SystemAuthentication service at default SR "; + } + } + catch (Exception ex2) + { + empty = "ConnectToDefaultAndRemoteSR exception attempting to connect to ASB endpoint on SR " + SRNodeName + ": " + ex2.Message; + } + } + return empty; + } + + private string ExchangeBetweenDefaultAndRemoteSR(string remoteRepositoryNode, ManageASBSecurityProxy DefaultProxy, ManageASBSecurityProxy RemoteProxy) + { + string text = string.Empty; + if (DefaultProxy == null) + { + return "ExchangeBetweenDefaultAndRemoteSR called without a connection to the default SR node"; + } + if (RemoteProxy == null) + { + return "ExchangeBetweenDefaultAndRemoteSR called without a connection to the remote SR node"; + } + RegistryHandler.GetSrNode(out var SRNodeName); + SystemAuthenticationASBConfiguration ConfigurationData = default(SystemAuthenticationASBConfiguration); + string XMLExtraInfo = string.Empty; + SystemAuthenticationASBConfiguration ConfigurationData2 = default(SystemAuthenticationASBConfiguration); + string XMLExtraInfo2 = string.Empty; + try + { + ArchestrAResult serviceBusPlatformConfiguration = RemoteProxy.GetServiceBusPlatformConfiguration(out ConfigurationData, out XMLExtraInfo, default(Guid), "Register/" + remoteRepositoryNode); + if (serviceBusPlatformConfiguration.Status != 0) + { + text = "Failed to get SecurityConfiguration from remote SR '" + remoteRepositoryNode + "' with status " + serviceBusPlatformConfiguration.Status; + } + } + catch (Exception ex) + { + text = "ExchangeBetweenDefaultAndRemoteSR exception reading default configuration from remote SR Node :" + ex.Message; + } + if (string.IsNullOrEmpty(text)) + { + try + { + ArchestrAResult serviceBusPlatformConfiguration2 = DefaultProxy.GetServiceBusPlatformConfiguration(out ConfigurationData2, out XMLExtraInfo2, default(Guid), "Register/" + SRNodeName); + if (serviceBusPlatformConfiguration2.Status != 0) + { + text = "Failed to get SecurityConfiguration from default SR '" + SRNodeName + "' with status " + serviceBusPlatformConfiguration2.Status; + } + } + catch (Exception ex2) + { + text = "ExchangeBetweenDefaultAndRemoteSR exception reading default configuration from default SR Node :" + ex2.Message; + } + } + bool flag = false; + if (string.IsNullOrEmpty(text)) + { + Dictionary dictionary = RegistryHandler.ParseXMLExtraInfo(XMLExtraInfo); + Dictionary dictionary2 = RegistryHandler.ParseXMLExtraInfo(XMLExtraInfo2); + if (dictionary.TryGetValue(RegistryHandler.PUDSEndPoint, out var value) && !string.IsNullOrEmpty(value)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Remote PUDS endpoint is configured: {0}", value); + if (dictionary2.TryGetValue(RegistryHandler.PUDSEndPoint, out var value2) && string.IsNullOrEmpty(value2)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Default PUDS endpoint is configured but empty, copying remote to default and settint writeback flag"); + dictionary2[RegistryHandler.PUDSEndPoint] = dictionary[RegistryHandler.PUDSEndPoint]; + flag = true; + } + else if (!dictionary2.TryGetValue(RegistryHandler.PUDSEndPoint, out value2)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Default PUDS endpoint is NOT configured"); + } + else if (!string.IsNullOrEmpty(value2)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Default PUDS endpoint is configured: {0}", value2); + } + } + else if (!dictionary.TryGetValue(RegistryHandler.PUDSEndPoint, out value)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Remote PUDS endpoint is NOT configured"); + } + else if (string.IsNullOrEmpty(value)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Remote PUDS endpoint is configured but empty"); + } + if (dictionary.TryGetValue(RegistryHandler.SUDSEndPoint, out var value3) && !string.IsNullOrEmpty(value3) && dictionary2.TryGetValue(RegistryHandler.SUDSEndPoint, out var value4) && string.IsNullOrEmpty(value4)) + { + dictionary2[RegistryHandler.SUDSEndPoint] = dictionary[RegistryHandler.SUDSEndPoint]; + flag = true; + } + if (flag) + { + XMLExtraInfo2 = RegistryHandler.GenerateXMLExtraInfo(dictionary2.ToList()); + } + } + if (string.IsNullOrEmpty(text)) + { + try + { + ConfigurationData2.isDefault = "false"; + ArchestrAResult serviceBusPlatformConfiguration = RemoteProxy.RegisterSystemAuthenticationConfiguration(ConfigurationData2, XMLExtraInfo2); + if (serviceBusPlatformConfiguration.Status != 0) + { + text = "Failed to register SecurityConfiguration to remote SR '" + remoteRepositoryNode + "' with status " + serviceBusPlatformConfiguration.Status; + } + } + catch (Exception ex3) + { + text = "ExchangeBetweenDefaultAndRemoteSR exception writing default SR configuration to remote SR Node :" + ex3.Message; + } + try + { + ConfigurationData.isDefault = "false"; + ArchestrAResult serviceBusPlatformConfiguration2 = DefaultProxy.RegisterSystemAuthenticationConfiguration(ConfigurationData, XMLExtraInfo); + if (serviceBusPlatformConfiguration2.Status != 0) + { + if (!string.IsNullOrEmpty(text)) + { + text += " and "; + } + text = text + "Failed to register SecurityConfiguration to default SR '" + SRNodeName + "' with status " + serviceBusPlatformConfiguration2.Status; + } + if (flag) + { + ConfigurationData2.isDefault = "true"; + serviceBusPlatformConfiguration2 = DefaultProxy.RegisterSystemAuthenticationConfiguration(ConfigurationData2, XMLExtraInfo2); + if (serviceBusPlatformConfiguration2.Status != 0) + { + if (!string.IsNullOrEmpty(text)) + { + text += " and "; + } + text = text + "Failed to re-register UDS-modified default SecurityConfiguration to default SR '" + SRNodeName + "' with status " + serviceBusPlatformConfiguration2.Status; + } + } + } + catch (Exception ex4) + { + text = "ExchangeBetweenDefaultAndRemoteSR exception writing remote SR configuration to default SR Node :" + ex4.Message; + } + } + return text; + } + + public string UnpairDefaultSRfromRemoteSR(string remoteSolutionName) + { + string empty = string.Empty; + empty = RegistryHandler.GetDefaultSolutionName(out var DefaultSolutionName); + if (!string.IsNullOrEmpty(empty)) + { + return empty; + } + RegistryHandler.GetSrNode(out var SRNodeName); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"UnpairDefaultSRfromRemoteSR using default solution name {DefaultSolutionName}, default SR Node {SRNodeName} and remote solution name {remoteSolutionName}"); + ManageASBSecurityProxy DefaultProxy = null; + ManageASBSecurityProxy RemoteProxy = null; + try + { + empty = ConnectToDefaultAndRemoteSR(remoteSolutionName, out var remoteRepositoryNode, out DefaultProxy, out RemoteProxy); + if (!string.IsNullOrEmpty(empty)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"UnpairDefaultSRfromRemoteSR: ConnectToDefaultAndRemoteSR returned error: {empty}"); + } + else + { + empty = DisconnectBetweenDefaultAndRemoteSR(remoteRepositoryNode, DefaultProxy, RemoteProxy); + if (!string.IsNullOrEmpty(empty)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"UnpairDefaultSRfromRemoteSR: DisconnectBetweenDefaultAndRemoteSR returned error: {empty}"); + } + } + } + catch (Exception ex) + { + empty = "Caught exception during unpairing: " + ex.Message; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"Caught exception during unpairing: {ex.Message} {ex.StackTrace.ToString()}"); + } + finally + { + DefaultProxy?.Disconnect(); + RemoteProxy?.Disconnect(); + } + return empty; + } + + private string ConnectToDefaultAndRemoteSR(string remoteSolutionName, out string remoteRepositoryNode, out ManageASBSecurityProxy DefaultProxy, out ManageASBSecurityProxy RemoteProxy) + { + string empty = string.Empty; + DefaultProxy = null; + RemoteProxy = null; + remoteRepositoryNode = string.Empty; + try + { + empty = RegistryHandler.GetSrNode(out var SRNodeName); + if (!string.IsNullOrEmpty(empty)) + { + return empty; + } + string passphraseForSolution = GetPassphraseForSolution(remoteSolutionName); + if (string.IsNullOrEmpty(passphraseForSolution)) + { + return "Unable to obtain solution configuration and passphrase for remote solution " + remoteSolutionName; + } + empty = RegistryHandler.GetSrNode(remoteSolutionName, out remoteRepositoryNode); + if (!string.IsNullOrEmpty(empty)) + { + return empty; + } + RemoteProxy = new ManageASBSecurityProxy(remoteRepositoryNode); + if (!RemoteProxy.Connect(passphraseForSolution, out empty)) + { + empty = "Failed to connect to SystemAuthentication service at remote SR " + remoteRepositoryNode; + } + if (string.IsNullOrEmpty(empty)) + { + DefaultProxy = new ManageASBSecurityProxy(SRNodeName); + if (!DefaultProxy.Connect(string.Empty, out empty)) + { + RemoteProxy.Disconnect(); + RemoteProxy = null; + empty = "Failed to connect to SystemAuthentication service at default SR " + SRNodeName; + } + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"ConnectToDefaultAndRemoteSR exception: {ex.Message}"); + empty = "ConnectToDefaultAndRemoteSR exception: " + ex.Message; + } + return empty; + } + + private string ConnectToDefaultSR(string DefaultSRNodeName, out ManageASBSecurityProxy DefaultProxy) + { + DefaultProxy = null; + string errorMessage = string.Empty; + try + { + DefaultProxy = new ManageASBSecurityProxy(DefaultSRNodeName); + if (!DefaultProxy.Connect(string.Empty, out errorMessage)) + { + errorMessage = "Failed to connect to SystemAuthentication service at default SR " + DefaultSRNodeName; + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"ConnectToDefaultSR exception: {ex.Message}"); + errorMessage = "ConnectToDefaultSR exception: " + ex.Message; + } + return errorMessage; + } + + private string DisconnectBetweenDefaultAndRemoteSR(string remoteRepositoryNode, ManageASBSecurityProxy DefaultProxy, ManageASBSecurityProxy RemoteProxy) + { + string text = string.Empty; + if (DefaultProxy == null) + { + return "DisconnectBetweenDefaultAndRemoteSR called without a connection to the default SR node"; + } + if (RemoteProxy == null) + { + return "DisconnectBetweenDefaultAndRemoteSR called without a connection to the remote SR node"; + } + RegistryHandler.GetSrNode(out var SRNodeName); + SystemAuthenticationASBConfiguration ConfigurationData = default(SystemAuthenticationASBConfiguration); + string XMLExtraInfo = string.Empty; + SystemAuthenticationASBConfiguration ConfigurationData2 = default(SystemAuthenticationASBConfiguration); + string XMLExtraInfo2 = string.Empty; + ArchestrAResult serviceBusPlatformConfiguration = RemoteProxy.GetServiceBusPlatformConfiguration(out ConfigurationData, out XMLExtraInfo, default(Guid), "Register/" + remoteRepositoryNode); + if (serviceBusPlatformConfiguration.Status != 0) + { + text = "Failed to get SecurityConfiguration from remote SR '" + remoteRepositoryNode + "' with status " + serviceBusPlatformConfiguration.Status; + } + else + { + ArchestrAResult serviceBusPlatformConfiguration2 = DefaultProxy.GetServiceBusPlatformConfiguration(out ConfigurationData2, out XMLExtraInfo2, default(Guid), "Register/" + SRNodeName); + if (serviceBusPlatformConfiguration2.Status != 0) + { + text = "Failed to get SecurityConfiguration from default SR '" + SRNodeName + "' with status " + serviceBusPlatformConfiguration2.Status; + } + } + if (string.IsNullOrEmpty(text)) + { + serviceBusPlatformConfiguration = RemoteProxy.UnregisterSystemAuthenticationConfiguration(ConfigurationData2.solutionName); + if (serviceBusPlatformConfiguration.Status != 0) + { + text = "Failed to delete default SecurityConfiguration from remote SR '" + remoteRepositoryNode + "' with status " + serviceBusPlatformConfiguration.Status; + } + ArchestrAResult serviceBusPlatformConfiguration2 = DefaultProxy.UnregisterSystemAuthenticationConfiguration(ConfigurationData.solutionName); + if (serviceBusPlatformConfiguration2.Status != 0) + { + if (!string.IsNullOrEmpty(text)) + { + text += " and "; + } + text = text + "Failed to delete SecurityConfiguration from remote SR '" + SRNodeName + "' with status " + serviceBusPlatformConfiguration2.Status; + } + } + return text; + } + + private string DisconnectRemoteSR(string remoteSolutionName, string remoteRepositoryNode, ManageASBSecurityProxy DefaultProxy) + { + string text = string.Empty; + if (DefaultProxy == null) + { + return "DisconnectRemoteSR called without a connection to the default SR node"; + } + RegistryHandler.GetSrNode(out var SRNodeName); + ArchestrAResult archestrAResult = DefaultProxy.UnregisterSystemAuthenticationConfiguration(remoteSolutionName); + if (archestrAResult.Status != 0) + { + if (!string.IsNullOrEmpty(text)) + { + text += " and "; + } + text = text + "Failed to delete Remote Solution '" + remoteSolutionName + "' SecurityConfiguration from default SR '" + SRNodeName + "' with status " + archestrAResult.Status; + SvcTrace.DiagException.TraceEvent(TraceEventType.Information, 0, $"DisconnectRemoteSR: {text}"); + } + return text; + } + + private string DeleteSecurityConfiguration(string srNode) + { + string errorMessage = string.Empty; + using (ManageASBSecurityProxy manageASBSecurityProxy = new ManageASBSecurityProxy(srNode)) + { + if (manageASBSecurityProxy.Connect(string.Empty, out errorMessage)) + { + SystemAuthenticationASBConfiguration ConfigurationData = default(SystemAuthenticationASBConfiguration); + string XMLExtraInfo = string.Empty; + ArchestrAResult serviceBusPlatformConfiguration = manageASBSecurityProxy.GetServiceBusPlatformConfiguration(out ConfigurationData, out XMLExtraInfo, default(Guid), "Unregister/" + srNode); + if (serviceBusPlatformConfiguration.ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + if (string.Compare(srNode, Environment.MachineName, ignoreCase: true) != 0) + { + errorMessage = RegistryHandler.DeleteFromRegistry(ConfigurationData.solutionName); + Registry.LocalMachine.DeleteSubKeyTree(RegistryHandler.ASBNodeRegistraion); + } + } + else + { + errorMessage = "failed to get SecurityConfiguration from SystemAuthentication service with status " + EnumASBFactory.IntToArchestrAError(serviceBusPlatformConfiguration.ErrorCode); + } + } + } + return errorMessage; + } + + public string GetRemoteSolutionName(string srNode, string remoteNode) + { + string empty = string.Empty; + string empty2 = string.Empty; + List SolutionNames = new List(); + empty2 = GetSolutionsPairedWithSR(null, srNode, out SolutionNames); + if (!string.IsNullOrEmpty(empty2)) + { + return empty2; + } + string remoteSlnName = "Archestra_" + remoteNode; + empty = SolutionNames.Find((string x) => x.ToString() == remoteSlnName); + if (string.IsNullOrEmpty(empty)) + { + return "Unable to find Remote Solution Name"; + } + return empty; + } + + public string GetSolutionsPairedWithSR(string srNode, out List SolutionNames) + { + return GetSolutionsPairedWithSR(null, srNode, out SolutionNames); + } + + public string GetSolutionsPairedWithSR(ManageASBSecurityProxy AsbSecurityProxy, string srNode, out List SolutionNames) + { + SolutionNames = new List(); + string errorMessage = string.Empty; + ManageASBSecurityProxy manageASBSecurityProxy = AsbSecurityProxy; + if (manageASBSecurityProxy == null) + { + using (manageASBSecurityProxy = new ManageASBSecurityProxy(srNode)) + { + manageASBSecurityProxy.Connect(string.Empty, out errorMessage); + errorMessage = GetSolutions(manageASBSecurityProxy, SolutionNames); + } + } + else + { + errorMessage = GetSolutions(manageASBSecurityProxy, SolutionNames); + } + return errorMessage; + } + + private string GetSolutions(ManageASBSecurityProxy Proxy, List SolutionNames) + { + string result = string.Empty; + if (Proxy.State == CommunicationState.Opened && Proxy.SecureSessionEstablished) + { + if (Proxy.EnumerateSolutions(out var SolutionNames2).Status != 0) + { + result = "failed to get solution names from SystemAuthentication service"; + } + else + { + RegistryHandler.GetDefaultSolutionName(out var DefaultSolutionName); + string[] array = SolutionNames2; + foreach (string text in array) + { + if (string.Compare(text, DefaultSolutionName, StringComparison.OrdinalIgnoreCase) != 0 && !text.ToUpperInvariant().StartsWith("UNIVERSAL_")) + { + SolutionNames.Add(text); + } + } + } + } + return result; + } + + public string ValidateSRNode(string srNode) + { + string result = string.Empty; + if (!string.IsNullOrEmpty(srNode)) + { + result = "Please provide valid SR Node "; + try + { + if (Dns.GetHostEntry(srNode) != null) + { + result = string.Empty; + } + } + catch (ArgumentNullException) + { + } + catch (ArgumentOutOfRangeException) + { + } + catch (ArgumentException) + { + } + catch (SocketException) + { + } + } + return result; + } + + public RegistrationResult UnPairRemoteSR(string remoteSolutionName, out string errorMessage) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "ManageSecurityConfig::UnPairRemoteSR Entered"); + RegistrationResult result = RegistrationResult.Success; + errorMessage = string.Empty; + errorMessage = RegistryHandler.GetDefaultSolutionName(out var DefaultSolutionName); + if (!string.IsNullOrEmpty(errorMessage)) + { + return RegistrationResult.RepositoryNodeNotConfigured; + } + errorMessage = RegistryHandler.GetSrNode(out var SRNodeName); + if (!string.IsNullOrEmpty(errorMessage)) + { + return RegistrationResult.RepositoryNodeNotConfigured; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"UnPairRemoteSR using default solution name {DefaultSolutionName}, default SR Node {SRNodeName} and remote solution name {remoteSolutionName}"); + ManageASBSecurityProxy DefaultProxy = null; + try + { + errorMessage = ConnectToDefaultSR(SRNodeName, out DefaultProxy); + if (!string.IsNullOrEmpty(errorMessage)) + { + result = RegistrationResult.NodeInaccessible; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"UnPairRemoteSR: ConnectToDefaultSR returned error: {errorMessage}"); + } + else + { + string SRNodeName2 = string.Empty; + errorMessage = RegistryHandler.GetSrNode(remoteSolutionName, out SRNodeName2); + if (!string.IsNullOrEmpty(errorMessage)) + { + result = RegistrationResult.RepositoryNotFoundOnTargetNode; + } + string remoteSolutionName2 = GetRemoteSolutionName(SRNodeName, SRNodeName2); + errorMessage = DisconnectRemoteSR(remoteSolutionName2, SRNodeName2, DefaultProxy); + if (!string.IsNullOrEmpty(errorMessage)) + { + result = RegistrationResult.Unknown; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"UnPairRemoteSR: DisconnectRemoteSR returned error: {errorMessage}"); + } + else + { + result = RegistrationResult.Success; + } + } + } + catch (Exception ex) + { + errorMessage = "Caught exception during unpairing: " + ex.Message; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, $"Caught exception during unpairing: {ex.Message} {ex.StackTrace.ToString()}"); + result = RegistrationResult.Unknown; + } + finally + { + DefaultProxy?.Disconnect(); + } + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "ManageSecurityConfig::UnPairRemoteSR Exit"); + return result; + } + + private static string ValidateSecurityConfiguration(byte[] ConfigurationData) + { + string empty = string.Empty; + if (ConfigurationData != null) + { + return Encoding.Default.GetString(ConfigurationData); + } + return string.Empty; + } + + private static int ValidateSecurityConfiguration(int ConfigurationData) + { + int num = 0; + if (ConfigurationData != 0) + { + return ConfigurationData; + } + return 0; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/RegistrationResult.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/RegistrationResult.cs new file mode 100644 index 0000000..cfe6e01 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/RegistrationResult.cs @@ -0,0 +1,11 @@ +namespace ASBClientAccessLayer; + +public enum RegistrationResult +{ + Success = 0, + NodeInaccessible = 1, + RepositoryNotFoundOnTargetNode = 2, + IncorrectPassphrase = 3, + RepositoryNodeNotConfigured = 4, + Unknown = 65535 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/SrConfigurationMonitor.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/SrConfigurationMonitor.cs new file mode 100644 index 0000000..e1c6b48 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/SrConfigurationMonitor.cs @@ -0,0 +1,110 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Timers; +using ArchestrAServices.Common; +using ArchestrAServices.Proxy; + +namespace ASBClientAccessLayer; + +[Obsolete("This class is provided for backward compatibility only and will be removed in a future release. If you are using this, contact the ASB team.")] +public class SrConfigurationMonitor : IDisposable +{ + private readonly double _pollIntervalmSec = 5000.0; + + private Timer _timer = new Timer(); + + private bool disposed; + + private ManageASBSecurityProxy _sysAuthProxy; + + private string m_PreviousPayload = string.Empty; + + private bool _authSvcConnected; + + public event EventHandler PayLoadChanged; + + private void PollSrConfigurationChanges() + { + try + { + if (_sysAuthProxy != null && _authSvcConnected) + { + _sysAuthProxy.QueryExtraInfoChanges(out var XMLExtraInfo, Environment.MachineName); + if (string.Compare(m_PreviousPayload, XMLExtraInfo) != 0 && !string.IsNullOrEmpty(XMLExtraInfo)) + { + EventArgs e = new EventArgs(); + Dictionary source = RegistryHandler.ParseXMLExtraInfo(XMLExtraInfo); + m_PreviousPayload = XMLExtraInfo; + RegistryHandler.UpdateDiscoveryInfos(source.ToList()); + OnPayLoadChanged(e); + } + } + } + catch (Exception) + { + } + } + + private void TimerElapsed(object sender, EventArgs eventArgs) + { + PollSrConfigurationChanges(); + } + + protected virtual void OnPayLoadChanged(EventArgs e) + { + if (this.PayLoadChanged != null) + { + this.PayLoadChanged(this, e); + } + } + + protected virtual void Dispose(bool disposing) + { + if (disposed) + { + return; + } + if (disposing) + { + if (_sysAuthProxy != null) + { + _sysAuthProxy.Disconnect(); + _sysAuthProxy.Dispose(); + _sysAuthProxy = null; + } + if (_timer != null) + { + _timer.Elapsed -= TimerElapsed; + _timer.Stop(); + _timer.Dispose(); + _timer = null; + } + } + disposed = true; + } + + public void StartMonitoring() + { + _timer.Start(); + string errorMessage = string.Empty; + _authSvcConnected = _sysAuthProxy.Connect(string.Empty, out errorMessage); + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + public SrConfigurationMonitor(double pollInterval) + { + if (pollInterval > 1.0) + { + _pollIntervalmSec = pollInterval; + } + _timer.Interval = pollInterval; + _timer.Elapsed += TimerElapsed; + _sysAuthProxy = new ManageASBSecurityProxy("G2G_1"); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/TempRegistryHandler.cs b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/TempRegistryHandler.cs new file mode 100644 index 0000000..7b15b37 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ASBClientAccessLayer/TempRegistryHandler.cs @@ -0,0 +1,47 @@ +using System.Collections.Generic; +using ArchestrAServices.Common; +using Microsoft.Win32; + +namespace ASBClientAccessLayer; + +public class TempRegistryHandler +{ + public static void UpdateDiscoveryInfos(Dictionary dicvoeryInfos) + { + RegistryKey registryKey = Registry.LocalMachine.CreateSubKey(RegistryHandler.RegistryPath + "NodeRegistration", RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryOptions.None); + if (registryKey == null) + { + return; + } + foreach (KeyValuePair dicvoeryInfo in dicvoeryInfos) + { + switch (dicvoeryInfo.Key) + { + case "PrimaryGlobalDiscovery": + WriteRegistryValue(registryKey, RegistryHandler.PGDSEndPoint, dicvoeryInfo.Value); + break; + case "SecondaryGlobalDiscovery": + WriteRegistryValue(registryKey, RegistryHandler.SGDSEndPoint, dicvoeryInfo.Value); + break; + case "PrimaryUniversalDiscovery": + WriteRegistryValue(registryKey, RegistryHandler.PUDSEndPoint, dicvoeryInfo.Value); + break; + case "SecondaryUniversalDiscovery": + WriteRegistryValue(registryKey, RegistryHandler.SUDSEndPoint, dicvoeryInfo.Value); + break; + } + } + } + + private static void WriteRegistryValue(RegistryKey solutionKey, string key, string value) + { + if (!string.IsNullOrEmpty(value)) + { + solutionKey.SetValue(key, value); + } + else + { + solutionKey.SetValue(key, string.Empty); + } + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/ASBEnumFactory.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/ASBEnumFactory.cs new file mode 100644 index 0000000..171c6f7 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/ASBEnumFactory.cs @@ -0,0 +1,23 @@ +using System; + +namespace ArchestrAServices.ASBContract; + +public static class ASBEnumFactory +{ + public static DataType IntToDataType(ushort iValue) + { + try + { + return (DataType)iValue; + } + catch (Exception) + { + return DataType.TypeUnknown; + } + } + + public static ushort DataTypeToInt(DataType eValue) + { + return (ushort)eValue; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/ConnectionId.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/ConnectionId.cs new file mode 100644 index 0000000..0af2b03 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/ConnectionId.cs @@ -0,0 +1,8 @@ +using System; + +namespace ArchestrAServices.ASBContract; + +public struct ConnectionId +{ + public Guid Id; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/DataType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/DataType.cs new file mode 100644 index 0000000..557e05b --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.ASBContract/DataType.cs @@ -0,0 +1,53 @@ +namespace ArchestrAServices.ASBContract; + +public enum DataType : ushort +{ + TypeByte = 0, + TypeChar = 1, + TypeInt16 = 2, + TypeUInt16 = 3, + TypeInt32 = 4, + TypeUInt32 = 5, + TypeInt64 = 6, + TypeUInt64 = 7, + TypeFloat = 8, + TypeDouble = 9, + TypeString = 10, + TypeDateTime = 11, + TypeDuration = 12, + TypeGuid = 13, + TypeByteString = 14, + TypeLocaleID = 15, + TypeLocalizedText = 16, + TypeBool = 17, + TypeSByte = 18, + TypeErrorStatus = 19, + TypeEnum = 20, + TypeDataType = 21, + TypeSecurityClassification = 22, + TypeDataQuality = 23, + TypeByteArray = 40, + TypeCharArray = 41, + TypeInt16Array = 42, + TypeUInt16Array = 43, + TypeInt32Array = 44, + TypeUInt32Array = 45, + TypeInt64Array = 46, + TypeUInt64Array = 47, + TypeFloatArray = 48, + TypeDoubleArray = 49, + TypeStringArray = 50, + TypeDateTimeArray = 51, + TypeDurationArray = 52, + TypeGuidArray = 53, + TypeByteStringArray = 54, + TypeLocaleIDArray = 55, + TypeLocalizedTextArray = 56, + TypeBoolArray = 57, + TypeSByteArray = 58, + TypeEnumArray = 60, + TypeDataTypeArray = 61, + TypeSecurityClassificationArray = 62, + TypeDataQualityArray = 63, + TypeUnknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializer.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializer.cs new file mode 100644 index 0000000..45edde1 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializer.cs @@ -0,0 +1,137 @@ +using System; +using System.IO; +using System.Runtime.Serialization; +using System.Xml; + +namespace ArchestrAServices.Contract; + +public class ASBCustomSerializer : XmlObjectSerializer +{ + protected string m_ASBPrefix = "ASB"; + + protected Type m_Type; + + protected bool m_IsArray; + + protected bool m_IsCustomSerialization; + + protected XmlObjectSerializer m_FallbackSerializer; + + public ASBCustomSerializer(Type type, XmlObjectSerializer fallbackSerializer) + { + Type c = type; + m_IsArray = false; + if (null != type && type.IsArray) + { + m_IsArray = true; + c = type.GetElementType(); + } + m_Type = type; + m_IsCustomSerialization = typeof(IASBCustomSerializableType).IsAssignableFrom(c); + m_FallbackSerializer = fallbackSerializer; + } + + public override bool IsStartObject(XmlDictionaryReader reader) + { + bool flag = false; + if (m_IsCustomSerialization && reader != null) + { + return string.Compare(reader.LocalName, m_ASBPrefix, StringComparison.CurrentCultureIgnoreCase) == 0; + } + return m_FallbackSerializer.IsStartObject(reader); + } + + public override object ReadObject(XmlDictionaryReader reader, bool verifyObjectName) + { + object obj = null; + if (m_IsCustomSerialization && reader != null) + { + using MemoryStream memoryStream = new MemoryStream(reader.ReadElementContentAsBase64()); + if (memoryStream != null && memoryStream.Length > 0) + { + BinaryReader binaryReader = new BinaryReader(memoryStream); + if (m_IsArray) + { + int num = binaryReader.ReadInt32(); + if (num > 0) + { + Type elementType = m_Type.GetElementType(); + if (null != elementType && Activator.CreateInstance(elementType) is IASBCustomSerializableType iASBCustomSerializableType) + { + obj = iASBCustomSerializableType.InitializeArrayFromStream(binaryReader, num); + } + } + } + else + { + obj = Activator.CreateInstance(m_Type); + ((IASBCustomSerializableType)obj).InitializeFromStream(binaryReader); + } + } + } + else + { + obj = m_FallbackSerializer.ReadObject(reader, verifyObjectName); + } + return obj; + } + + public override void WriteEndObject(XmlDictionaryWriter writer) + { + if (m_IsCustomSerialization && writer != null) + { + writer.WriteEndElement(); + } + else + { + m_FallbackSerializer.WriteEndObject(writer); + } + } + + public override void WriteObjectContent(XmlDictionaryWriter writer, object graph) + { + if (m_IsCustomSerialization && writer != null) + { + MemoryStream memoryStream = new MemoryStream(); + try + { + BinaryWriter bw = new BinaryWriter(memoryStream); + if (m_IsArray) + { + if (graph != null) + { + Type elementType = m_Type.GetElementType(); + if (null != elementType && Activator.CreateInstance(elementType) is IASBCustomSerializableType iASBCustomSerializableType) + { + iASBCustomSerializableType.WriteArrayToStream(graph, ref bw); + } + } + } + else + { + ((IASBCustomSerializableType)graph).WriteToStream(bw); + } + byte[] array = memoryStream.ToArray(); + writer.WriteBase64(array, 0, array.Length); + return; + } + finally + { + memoryStream.Dispose(); + } + } + m_FallbackSerializer.WriteObjectContent(writer, graph); + } + + public override void WriteStartObject(XmlDictionaryWriter writer, object graph) + { + if (m_IsCustomSerialization && writer != null) + { + writer.WriteStartElement(m_ASBPrefix); + } + else + { + m_FallbackSerializer.WriteStartObject(writer, graph); + } + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializerContractBehavior.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializerContractBehavior.cs new file mode 100644 index 0000000..1570d49 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializerContractBehavior.cs @@ -0,0 +1,104 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Globalization; +using System.ServiceModel.Channels; +using System.ServiceModel.Description; +using System.ServiceModel.Dispatcher; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public class ASBCustomSerializerContractBehavior : IContractBehavior +{ + public virtual void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) + { + } + + public virtual void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime) + { + ReplaceSerializerOperationBehavior(contractDescription); + } + + public virtual void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, DispatchRuntime dispatchRuntime) + { + ReplaceSerializerOperationBehavior(contractDescription); + } + + public virtual void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint) + { + if (contractDescription == null) + { + return; + } + foreach (OperationDescription operation in contractDescription.Operations) + { + foreach (MessageDescription message in operation.Messages) + { + ValidateMessagePartDescription(message.Body.ReturnValue); + foreach (MessagePartDescription part in message.Body.Parts) + { + ValidateMessagePartDescription(part); + } + foreach (MessageHeaderDescription header in message.Headers) + { + ValidateCustomSerializableType(header.Type); + } + } + } + } + + protected virtual void ValidateMessagePartDescription(MessagePartDescription part) + { + if (part != null) + { + ValidateCustomSerializableType(part.Type); + } + } + + protected virtual void ValidateCustomSerializableType(Type type) + { + Type type2 = type; + if (null != type && type.IsArray) + { + type2 = type.GetElementType(); + } + if (typeof(IASBCustomSerializableType).IsAssignableFrom(type2)) + { + if (!type2.IsPublic) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "ASBCustomSerializerContractBehaviorAttribute:ValidateCustomSerializableType- Custom serialization is supported in public types only")); + } + if (type2.IsClass && type2.GetConstructor(new Type[0]) == null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, string.Format(CultureInfo.CurrentCulture, "ASBCustomSerializerContractBehaviorAttribute:ValidateCustomSerializableType- Custom serializable types must have a public, parameterless constructor")); + } + } + } + + protected virtual void ReplaceSerializerOperationBehavior(ContractDescription contract) + { + if (contract == null) + { + return; + } + foreach (OperationDescription operation in contract.Operations) + { + for (int i = 0; i < operation.Behaviors.Count; i++) + { + if (operation.Behaviors[i] is DataContractSerializerOperationBehavior) + { + if (typeof(DataContractSerializerOperationBehavior).IsAssignableFrom(typeof(T))) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Replacing the default serialization with ASB-Specific custom serialization")); + operation.Behaviors[i] = Activator.CreateInstance(typeof(T), operation) as DataContractSerializerOperationBehavior; + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, string.Format(CultureInfo.CurrentCulture, "ASBCustomSerializerOperationBehavior:CreateSerializer-failed to create instance for DataContractSerializerOperationBehavior. Invalid type {0}", new object[1] { typeof(T).FullName })); + } + } + } + } + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializerContractBehaviorAttribute.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializerContractBehaviorAttribute.cs new file mode 100644 index 0000000..7dd606e --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBCustomSerializerContractBehaviorAttribute.cs @@ -0,0 +1,108 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.ServiceModel.Channels; +using System.ServiceModel.Description; +using System.ServiceModel.Dispatcher; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public class ASBCustomSerializerContractBehaviorAttribute : Attribute, IContractBehavior +{ + private Type _serializerOperationBehaviorType; + + private ASBCustomSerializerContractBehaviorAttribute() + { + } + + public ASBCustomSerializerContractBehaviorAttribute(Type SerializerOperationBehaviorType) + { + _serializerOperationBehaviorType = SerializerOperationBehaviorType; + } + + public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) + { + } + + public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime) + { + ReplaceSerializerOperationBehavior(contractDescription); + } + + public void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, DispatchRuntime dispatchRuntime) + { + ReplaceSerializerOperationBehavior(contractDescription); + } + + public void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint) + { + foreach (OperationDescription operation in contractDescription.Operations) + { + foreach (MessageDescription message in operation.Messages) + { + ValidateMessagePartDescription(message.Body.ReturnValue); + foreach (MessagePartDescription part in message.Body.Parts) + { + ValidateMessagePartDescription(part); + } + foreach (MessageHeaderDescription header in message.Headers) + { + ValidateCustomSerializableType(header.Type); + } + } + } + } + + protected void ValidateMessagePartDescription(MessagePartDescription part) + { + if (part != null) + { + ValidateCustomSerializableType(part.Type); + } + } + + protected void ValidateCustomSerializableType(Type type) + { + Type type2 = type; + if (type.IsArray) + { + type2 = type.GetElementType(); + } + if (typeof(IASBCustomSerializableType).IsAssignableFrom(type2)) + { + if (!type2.IsPublic) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ASBCustomSerializerContractBehaviorAttribute:ValidateCustomSerializableType- Custom serialization is supported in public types only"); + } + if (type2.IsClass && type2.GetConstructor(new Type[0]) == null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, $"ASBCustomSerializerContractBehaviorAttribute:ValidateCustomSerializableType- Custom serializable types must have a public, parameterless constructor"); + } + } + } + + protected void ReplaceSerializerOperationBehavior(ContractDescription contract) + { + if (contract == null) + { + return; + } + if (_serializerOperationBehaviorType == null || !typeof(DataContractSerializerOperationBehavior).IsAssignableFrom(_serializerOperationBehaviorType)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, "ASBCustomSerializerOperationBehavior:CreateSerializer-failed to create instance for DataContractSerializerOperationBehavior. Invalid type {0}", (_serializerOperationBehaviorType == null) ? "" : _serializerOperationBehaviorType.FullName); + return; + } + foreach (OperationDescription operation in contract.Operations) + { + for (int i = 0; i < operation.Behaviors.Count; i++) + { + if (operation.Behaviors[i] is DataContractSerializerOperationBehavior) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Replacing the default serialization with ASB-Specific custom serialization"); + operation.Behaviors[i] = Activator.CreateInstance(_serializerOperationBehaviorType, operation) as DataContractSerializerOperationBehavior; + } + } + } + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBSerializer.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBSerializer.cs new file mode 100644 index 0000000..7591ecb --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBSerializer.cs @@ -0,0 +1,82 @@ +using System; + +namespace ArchestrAServices.Contract; + +public static class ASBSerializer +{ + public static ASBStatus ASBStatusFromArray(ASBStatusElement[] status) + { + ASBStatus result = new ASBStatus + { + Count = 0 + }; + if (status == null) + { + return result; + } + ushort num = 0; + ASBStatusElement[] array = status; + for (int i = 0; i < array.Length; i++) + { + num = ((array[i].statusValue != 0) ? ((ushort)(num + 3)) : ((ushort)(num + 1))); + } + if (num > 255) + { + throw new IndexOutOfRangeException("Too many ASBStatusElements in ASBStatusFromArray"); + } + byte[] array2 = new byte[num]; + num = 0; + array = status; + for (int i = 0; i < array.Length; i++) + { + ASBStatusElement aSBStatusElement = array[i]; + if (aSBStatusElement.statusValue == 0) + { + array2[num++] = (byte)(((byte)aSBStatusElement.statusType & 0x7F) | 0x80); + continue; + } + array2[num++] = (byte)((byte)aSBStatusElement.statusType & 0x7F); + byte[] array3 = new byte[2]; + array3 = BitConverter.GetBytes(aSBStatusElement.statusValue); + array2[num++] = array3[0]; + array2[num++] = array3[1]; + } + result.Count = (byte)num; + result.Payload = array2; + return result; + } + + public static ASBStatusElement[] ASBStatusToArray(ASBStatus status) + { + if (status.Payload == null) + { + return new ASBStatusElement[0]; + } + byte[] payload = status.Payload; + ushort num = 0; + ushort num2 = 0; + while (num2 < status.Count) + { + num2 = (((payload[num2] & 0x80) == 0) ? ((ushort)(num2 + 3)) : ((ushort)(num2 + 1))); + num++; + } + ASBStatusElement[] array = new ASBStatusElement[num]; + num2 = 0; + for (ushort num3 = 0; num3 < num; num3++) + { + if ((payload[num2] & 0x80) != 0) + { + array[num3].statusType = (ASBStatusType)(payload[num2] & 0x7F); + array[num3].statusValue = 0; + num2++; + } + else + { + array[num3].statusType = (ASBStatusType)payload[num2++]; + array[num3].statusValue = BitConverter.ToUInt16(payload, num2); + num2 += 2; + } + } + return array; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBSolutionUtilities.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBSolutionUtilities.cs new file mode 100644 index 0000000..1d65733 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBSolutionUtilities.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Text; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public static class ASBSolutionUtilities +{ + public static string WriteSecurityInformationInRegistry(SystemAuthenticationASBConfiguration ConfigurationData, string xmlExtraInfo) + { + string empty = string.Empty; + try + { + ASBConfigurationInformation obj = new ASBConfigurationInformation + { + EncryptedCertificate = ((ConfigurationData.EncryptedCertificate == null) ? string.Empty : Encoding.Default.GetString(ConfigurationData.EncryptedCertificate)), + EncryptedSharedSecret = ((ConfigurationData.EncryptedSharedSecret == null) ? string.Empty : Encoding.Default.GetString(ConfigurationData.EncryptedSharedSecret)), + Generator = ((ConfigurationData.generator == null) ? string.Empty : Encoding.Default.GetString(ConfigurationData.generator)), + HashAlgorithm = ((ConfigurationData.hashAlgorithm == null) ? string.Empty : ConfigurationData.hashAlgorithm), + InitializationVector = ((ConfigurationData.initializationVector == null) ? string.Empty : Encoding.Default.GetString(ConfigurationData.initializationVector)), + SolutionName = ((ConfigurationData.solutionName == null) ? string.Empty : ConfigurationData.solutionName), + KeySize = ConfigurationData.keySize, + PasswordDerivationIterations = ConfigurationData.passwordDerivationIterations, + Prime = ((ConfigurationData.prime == null) ? string.Empty : Encoding.Default.GetString(ConfigurationData.prime)), + SaltValue = ((ConfigurationData.saltValue == null) ? string.Empty : Encoding.Default.GetString(ConfigurationData.saltValue)), + IsDefault = "false", + SRNodeName = ((ConfigurationData.srNodeName == null) ? string.Empty : ConfigurationData.srNodeName) + }; + Dictionary dictionary = RegistryHandler.ParseXMLExtraInfo(xmlExtraInfo); + string value = string.Empty; + string value2 = string.Empty; + string value3 = string.Empty; + string value4 = string.Empty; + dictionary.TryGetValue("PrimaryGlobalDiscovery", out value); + dictionary.TryGetValue("SecondaryGlobalDiscovery", out value2); + dictionary.TryGetValue("PrimaryUniversalDiscovery", out value3); + dictionary.TryGetValue("SecondaryUniversalDiscovery", out value4); + obj.PrimaryGlobalDiscovery = value; + obj.SecondaryGlobalDiscovery = value2; + obj.PrimaryUniversalDiscovery = value3; + obj.SecondaryUniversalDiscovery = value4; + return RegistryHandler.CreateASBConfigInfoStructureInRegistry(obj, obj.SRNodeName, isRegister: false); + } + catch (Exception ex) + { + return ex.Message; + } + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatus.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatus.cs new file mode 100644 index 0000000..df45cf3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatus.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ASBStatus +{ + [DataMember] + public byte Count; + + [DataMember] + public byte[] Payload; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatusElement.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatusElement.cs new file mode 100644 index 0000000..ddcc26a --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatusElement.cs @@ -0,0 +1,60 @@ +using System; + +namespace ArchestrAServices.Contract; + +public struct ASBStatusElement +{ + public ASBStatusType statusType; + + public ushort statusValue; + + public ASBStatus Status + { + get + { + byte b = 0; + byte[] array = null; + if (statusValue == 0) + { + b = 1; + array = new byte[b]; + array[0] = (byte)(((byte)statusType & 0x7F) | 0x80); + } + else + { + b = 3; + array = new byte[b]; + array[0] = (byte)((byte)statusType & 0x7F); + byte[] array2 = new byte[2]; + array2 = BitConverter.GetBytes(statusValue); + array[1] = array2[0]; + array[2] = array2[1]; + } + return new ASBStatus + { + Count = b, + Payload = array + }; + } + } + + public ASBStatusElement(ASBStatus singleStatus) + { + if (singleStatus.Payload == null || singleStatus.Payload.Length < 1) + { + throw new IndexOutOfRangeException("ASBStatus payload contained no data in ASBStatusElement constructor"); + } + if ((singleStatus.Payload[0] & 0x80) != 0) + { + statusType = (ASBStatusType)(singleStatus.Payload[0] & 0x7F); + statusValue = 0; + return; + } + if (singleStatus.Payload.Length < 3) + { + throw new IndexOutOfRangeException("ASBStatus payload contained insufficient data in ASBStatusElement constructor"); + } + statusType = (ASBStatusType)singleStatus.Payload[0]; + statusValue = BitConverter.ToUInt16(singleStatus.Payload, 1); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatusType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatusType.cs new file mode 100644 index 0000000..dc0e0c3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ASBStatusType.cs @@ -0,0 +1,15 @@ +namespace ArchestrAServices.Contract; + +public enum ASBStatusType : ushort +{ + OPCDAStatus = 1, + OPCUAStatus = 2, + OPCUAVendorStatus = 3, + SCADAStatus = 4, + MXStatusCategory = 5, + MxStatusDetail = 6, + MxQuality = 7, + Reserved1Status = 125, + Reserved2Status = 126, + Reserved3Status = 127 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ActionResult.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ActionResult.cs new file mode 100644 index 0000000..19a06e4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ActionResult.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public class ActionResult +{ + [DataMember] + public Status Status { get; set; } + + [DataMember] + public string ErrorMessage { get; set; } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ApplicationToken.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ApplicationToken.cs new file mode 100644 index 0000000..f6330d4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ApplicationToken.cs @@ -0,0 +1,19 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ApplicationToken +{ + [DataMember] + public string ApplicationName; + + [DataMember] + public string DomainName; + + [DataMember] + public string HostName; + + [DataMember] + public byte[] X509Certificate; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAAttribute.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAAttribute.cs new file mode 100644 index 0000000..b5c377c --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAAttribute.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAAttribute +{ + [DataMember(Name = "Name", Order = 0, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "ID", Order = 1, EmitDefaultValue = true)] + public ulong ID; + + [DataMember(Name = "Properties", Order = 2, EmitDefaultValue = true)] + public ArchestrAProperty[] Properties; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAAttributeEx.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAAttributeEx.cs new file mode 100644 index 0000000..4bee342 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAAttributeEx.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAAttributeEx +{ + [DataMember(Name = "Name", Order = 0, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "ID", Order = 1, EmitDefaultValue = true)] + public ulong ID; + + [DataMember(Name = "Properties", Order = 2, EmitDefaultValue = true)] + public ArchestrAPropertyEx[] Properties; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAContainedName.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAContainedName.cs new file mode 100644 index 0000000..d2ba81f --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAContainedName.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAContainedName +{ + [DataMember(Name = "Name", Order = 0, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "RelationshipID", Order = 1, EmitDefaultValue = true)] + public ulong RelationshipID; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAEntity.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAEntity.cs new file mode 100644 index 0000000..1f9148d --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAEntity.cs @@ -0,0 +1,28 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAEntity +{ + [DataMember(Name = "UniqueName", Order = 0, EmitDefaultValue = true)] + public string UniqueName; + + [DataMember(Name = "ID", Order = 1, EmitDefaultValue = true)] + public ulong ID; + + [DataMember(Name = "IsTemplate", Order = 2, EmitDefaultValue = true)] + public byte IsTemplate; + + [DataMember(Name = "ContainedName", Order = 3, EmitDefaultValue = true)] + public ArchestrAContainedName[] ContainedName; + + [DataMember(Name = "Properties", Order = 4, EmitDefaultValue = true)] + public ArchestrAProperty[] Properties; + + [DataMember(Name = "Facets", Order = 5, EmitDefaultValue = true)] + public ArchestrAFacet[] Facets; + + [DataMember(Name = "UserData", Order = 6, EmitDefaultValue = true)] + public string UserData; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAEntityEx.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAEntityEx.cs new file mode 100644 index 0000000..d1e64d3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAEntityEx.cs @@ -0,0 +1,28 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAEntityEx +{ + [DataMember(Name = "UniqueName", Order = 0, EmitDefaultValue = true)] + public string UniqueName; + + [DataMember(Name = "ID", Order = 1, EmitDefaultValue = true)] + public ulong ID; + + [DataMember(Name = "IsTemplate", Order = 2, EmitDefaultValue = true)] + public byte IsTemplate; + + [DataMember(Name = "ContainedName", Order = 3, EmitDefaultValue = true)] + public ArchestrAContainedName[] ContainedName; + + [DataMember(Name = "Properties", Order = 4, EmitDefaultValue = true)] + public ArchestrAPropertyEx[] Properties; + + [DataMember(Name = "Facets", Order = 5, EmitDefaultValue = true)] + public ArchestrAFacetEx[] Facets; + + [DataMember(Name = "UserData", Order = 6, EmitDefaultValue = true)] + public string UserData; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAError.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAError.cs new file mode 100644 index 0000000..0f3d20f --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAError.cs @@ -0,0 +1,50 @@ +namespace ArchestrAServices.Contract; + +public enum ArchestrAError : ushort +{ + Success = 0, + InvalidConnectionId = 1, + ApplicationAuthenticationError = 2, + UserAuthenticationError = 3, + UserAuthorizationError = 4, + NotSupportedOperation = 5, + MonitoredItemsNotFound = 6, + InvalidSubscriptionID = 7, + ItemAlreadyRegistered = 8, + ItemAlreadyDeletedOrDoesNotExist = 9, + InvalidMonitoredItems = 10, + OperationFailed = 11, + SpecificError = 12, + BadNoCommunication = 13, + Bad_NothingToDo = 14, + Bad_TooManyOperations = 15, + Bad_NodeIdInvalid = 16, + BrowseFailed = 17, + WriteFailed_BadOutOfRange = 18, + WriteFailed_BadTypeMismatch = 19, + WriteFailed_BadDimensionMismatch = 20, + WriteFailed_AccessDenied = 21, + WriteFailed_SecuredWrite = 22, + WriteFailed_VerifiedWrite = 23, + IndexOutOfRange = 24, + RequestTimedOut = 25, + DataTypeConversionNotSupported = 26, + ItemCannotBeRegistered_NoName = 27, + ItemCannotBeRegistered_NoId = 28, + ItemAlreadyBeingMonitored = 29, + SubscriptionIDAlreadyExist = 30, + OperationWouldBlock = 31, + PublishComplete = 32, + WriteFailed_UserNotHavingAccessRights = 33, + WriteFailed_VerifierNotHavingVerifyRights = 34, + ObjectNotInitialized = 128, + EndPointNotFound = 129, + ConnectionClosed = 130, + InvalidParameter = 131, + MemoryAllocationError = 132, + OperationNotComplete = 133, + FileOperationFailed = 256, + InvalidXMLFile = 272, + RecordLookupError = 288, + Unknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAFacet.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAFacet.cs new file mode 100644 index 0000000..8d23903 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAFacet.cs @@ -0,0 +1,22 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAFacet +{ + [DataMember(Name = "Name", Order = 0, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "Id", Order = 1, EmitDefaultValue = true)] + public ulong Id; + + [DataMember(Name = "HasNamespace", Order = 2, EmitDefaultValue = true)] + public byte HasNamespace; + + [DataMember(Name = "Properties", Order = 3, EmitDefaultValue = true)] + public ArchestrAProperty[] Properties; + + [DataMember(Name = "Attributes", Order = 4, EmitDefaultValue = true)] + public ArchestrAAttribute[] Attributes; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAFacetEx.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAFacetEx.cs new file mode 100644 index 0000000..d847313 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAFacetEx.cs @@ -0,0 +1,22 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAFacetEx +{ + [DataMember(Name = "Name", Order = 0, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "Id", Order = 1, EmitDefaultValue = true)] + public ulong Id; + + [DataMember(Name = "HasNamespace", Order = 2, EmitDefaultValue = true)] + public byte HasNamespace; + + [DataMember(Name = "Properties", Order = 3, EmitDefaultValue = true)] + public ArchestrAPropertyEx[] Properties; + + [DataMember(Name = "Attributes", Order = 4, EmitDefaultValue = true)] + public ArchestrAAttributeEx[] Attributes; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAProperty.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAProperty.cs new file mode 100644 index 0000000..a1882b9 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAProperty.cs @@ -0,0 +1,22 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAProperty +{ + [DataMember(Name = "ID", Order = 0, EmitDefaultValue = true)] + public ulong ID; + + [DataMember(Name = "IsDefault", Order = 1, EmitDefaultValue = true)] + public byte IsDefault; + + [DataMember(Name = "Name", Order = 2, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "Value", Order = 3, EmitDefaultValue = true)] + public object Value; + + [DataMember(Name = "Type", Order = 4, EmitDefaultValue = true)] + public string Type; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAPropertyEx.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAPropertyEx.cs new file mode 100644 index 0000000..d8c61c3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAPropertyEx.cs @@ -0,0 +1,22 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAPropertyEx +{ + [DataMember(Name = "ID", Order = 0, EmitDefaultValue = true)] + public ulong ID; + + [DataMember(Name = "IsDefault", Order = 1, EmitDefaultValue = true)] + public byte IsDefault; + + [DataMember(Name = "Name", Order = 2, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "Value", Order = 3, EmitDefaultValue = true)] + public object Value; + + [DataMember(Name = "Type", Order = 4, EmitDefaultValue = true)] + public string Type; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAResult.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAResult.cs new file mode 100644 index 0000000..8217eb6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestrAResult.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestrAResult +{ + [DataMember] + public uint Status; + + [DataMember] + public uint SpecificErrorCode; + + [DataMember] + public ushort ErrorCode; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseDirection.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseDirection.cs new file mode 100644 index 0000000..03e9e69 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseDirection.cs @@ -0,0 +1,14 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Name = "ArchestraBrowseDirection", Namespace = "http://ArchestrAServices.Contract")] +public enum ArchestraBrowseDirection +{ + [EnumMember] + ForwardOrDown = 0, + [EnumMember] + ReverseOrUp = 1, + [EnumMember] + Unknown = 65535 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseNode.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseNode.cs new file mode 100644 index 0000000..dc7c8c4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseNode.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestraBrowseNode +{ + [DataMember(Name = "RelationshipId", Order = 0, EmitDefaultValue = true)] + public ulong RelationshipId; + + [DataMember(Name = "Direction", Order = 1, EmitDefaultValue = true)] + public ArchestraBrowseDirection Direction; + + [DataMember(Name = "NodeID", Order = 2, EmitDefaultValue = true)] + public ulong NodeID; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseResult.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseResult.cs new file mode 100644 index 0000000..c2a8df2 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraBrowseResult.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestraBrowseResult +{ + [DataMember(Name = "ContinuationPoint", Order = 0, EmitDefaultValue = true)] + public ulong ContinuationPoint; + + [DataMember(Name = "TargetNodes", Order = 1, EmitDefaultValue = true)] + public ArchestraNode[] TargetNodes; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraNode.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraNode.cs new file mode 100644 index 0000000..6b32db5 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraNode.cs @@ -0,0 +1,19 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestraNode +{ + [DataMember(Name = "UniqueName", Order = 0, EmitDefaultValue = true)] + public string UniqueName; + + [DataMember(Name = "ContainedName", Order = 1, EmitDefaultValue = true)] + public string ContainedName; + + [DataMember(Name = "BrowseNode", Order = 2, EmitDefaultValue = true)] + public ArchestraBrowseNode Node; + + [DataMember(Name = "UserData", Order = 3, EmitDefaultValue = true)] + public string UserData; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraRelationship.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraRelationship.cs new file mode 100644 index 0000000..17b03bd --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraRelationship.cs @@ -0,0 +1,19 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ArchestraRelationship +{ + [DataMember] + public ulong Id; + + [DataMember] + public ArchestraRelationshipType Type; + + [DataMember] + public string NamespaceIdentifier; + + [DataMember] + public string Name; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraRelationshipType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraRelationshipType.cs new file mode 100644 index 0000000..2c79d97 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ArchestraRelationshipType.cs @@ -0,0 +1,14 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public enum ArchestraRelationshipType +{ + [EnumMember] + Hierarchical = 0, + [EnumMember] + Network = 1, + [EnumMember] + Unknown = 65535 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbBaseSettings.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbBaseSettings.cs new file mode 100644 index 0000000..0b0e766 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbBaseSettings.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; + +namespace ArchestrAServices.Contract; + +public class AsbBaseSettings : IAsbInterfaceSettings +{ + private static Dictionary settings = new Dictionary(); + + public T GetSetting(string settingName, T defaultSetting) + { + object value = null; + if (settings.TryGetValue(settingName.ToLower(), out value)) + { + try + { + return (T)Convert.ChangeType(value, typeof(T)); + } + catch (Exception) + { + } + } + return defaultSetting; + } + + public void SetSetting(string settingName, object setting) + { + settings[settingName.ToLower()] = setting; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbIntouchSettings.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbIntouchSettings.cs new file mode 100644 index 0000000..94b76b5 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbIntouchSettings.cs @@ -0,0 +1,11 @@ +namespace ArchestrAServices.Contract; + +public class AsbIntouchSettings : AsbBaseSettings +{ + public AsbIntouchSettings() + { + SetSetting("ArrayBase", 1); + SetSetting("PreferCustomSerialization", true); + SetSetting("IDataMaxPublishCount", 4); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbMxDataSettings.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbMxDataSettings.cs new file mode 100644 index 0000000..a4e783b --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbMxDataSettings.cs @@ -0,0 +1,11 @@ +namespace ArchestrAServices.Contract; + +public class AsbMxDataSettings : AsbBaseSettings +{ + public AsbMxDataSettings() + { + SetSetting("ArrayBase", 1); + SetSetting("PreferCustomSerialization", true); + SetSetting("IDataMaxPublishCount", 10); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbOpcuaSettings.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbOpcuaSettings.cs new file mode 100644 index 0000000..135ea59 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AsbOpcuaSettings.cs @@ -0,0 +1,12 @@ +namespace ArchestrAServices.Contract; + +public class AsbOpcuaSettings : AsbBaseSettings +{ + public AsbOpcuaSettings() + { + SetSetting("ArrayBase", 0); + SetSetting("PreferCustomSerialization", true); + SetSetting("IDataMaxPublishCount", 10); + SetSetting("IBrowseMaxBrowseObject", 10000); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AuthenticationCryptography.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AuthenticationCryptography.cs new file mode 100644 index 0000000..81d4a07 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/AuthenticationCryptography.cs @@ -0,0 +1,130 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.Security.Cryptography; +using System.Text; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +internal static class AuthenticationCryptography +{ + public static byte[] DeriveKey(byte[] passPhrase, byte[] saltValue, string hashAlgorithm, int passwordIterations, int keySize) + { + if (passPhrase == null || passPhrase.Length == 0) + { + throw new ArgumentNullException("passPhrase"); + } + if (saltValue == null || saltValue.Length == 0) + { + throw new ArgumentNullException("saltValue"); + } + if (string.IsNullOrEmpty(hashAlgorithm)) + { + throw new ArgumentNullException("hashAlgorithm"); + } + byte[] array = new byte[passPhrase.Length + saltValue.Length]; + Buffer.BlockCopy(passPhrase, 0, array, 0, passPhrase.Length); + Buffer.BlockCopy(saltValue, 0, array, passPhrase.Length, saltValue.Length); + using MD5 mD = new MD5CryptoServiceProvider(); + for (int i = 0; i < passwordIterations; i++) + { + array = mD.ComputeHash(array); + } + StringBuilder stringBuilder = new StringBuilder(); + for (int j = 0; j < array.Length; j++) + { + stringBuilder.Append(array[j].ToString("x2")); + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "SvcAuth: DeriveKey generated '{0}' from '{1}'", new object[2] + { + stringBuilder.ToString(), + passPhrase[0].ToString("x2") + })); + return Encoding.UTF8.GetBytes(stringBuilder.ToString()); + } + + public static byte[] Encrypt(byte[] PlainPayload, byte[] passPhrase, byte[] saltValue, string hashAlgorithm, int passwordIterations, byte[] initVector, int keySize) + { + if (PlainPayload == null) + { + throw new ArgumentNullException("value"); + } + if (passPhrase == null || passPhrase.Length == 0) + { + throw new ArgumentNullException("passPhrase"); + } + if (saltValue == null || saltValue.Length == 0) + { + throw new ArgumentNullException("saltValue"); + } + if (string.IsNullOrEmpty(hashAlgorithm)) + { + throw new ArgumentNullException("hashAlgorithm"); + } + if (initVector == null || initVector.Length == 0) + { + throw new ArgumentNullException("initVector"); + } + byte[] rgbKey = DeriveKey(passPhrase, saltValue, hashAlgorithm, passwordIterations, 32); + byte[] array = null; + using RijndaelManaged rijndaelManaged = new RijndaelManaged(); + rijndaelManaged.Mode = CipherMode.CBC; + ICryptoTransform transform = rijndaelManaged.CreateEncryptor(rgbKey, initVector); + using MemoryStream memoryStream = new MemoryStream(); + using CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write); + cryptoStream.Write(PlainPayload, 0, PlainPayload.Length); + cryptoStream.FlushFinalBlock(); + return memoryStream.ToArray(); + } + + public static byte[] Decrypt(byte[] CypherPayload, byte[] passPhrase, byte[] saltValue, string hashAlgorithm, int passwordIterations, byte[] initVector, int keySize) + { + if (CypherPayload == null) + { + throw new ArgumentNullException("value"); + } + if (passPhrase == null || passPhrase.Length == 0) + { + throw new ArgumentNullException("passPhrase"); + } + if (saltValue == null || saltValue.Length == 0) + { + throw new ArgumentNullException("saltValue"); + } + if (string.IsNullOrEmpty(hashAlgorithm)) + { + throw new ArgumentNullException("hashAlgorithm"); + } + if (initVector == null || initVector.Length == 0) + { + throw new ArgumentNullException("initVector"); + } + byte[] rgbKey = DeriveKey(passPhrase, saltValue, hashAlgorithm, passwordIterations, 32); + byte[] array = null; + using (RijndaelManaged rijndaelManaged = new RijndaelManaged()) + { + rijndaelManaged.Mode = CipherMode.CBC; + ICryptoTransform transform = rijndaelManaged.CreateDecryptor(rgbKey, initVector); + using MemoryStream stream = new MemoryStream(CypherPayload); + using CryptoStream cryptoStream = new CryptoStream(stream, transform, CryptoStreamMode.Read); + array = new byte[CypherPayload.Length]; + int num = 0; + try + { + num = cryptoStream.Read(array, 0, array.Length); + } + catch (Exception) + { + num = array.Length; + for (int i = 0; i < num; i++) + { + array[i] = 0; + } + } + } + return array; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilter.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilter.cs new file mode 100644 index 0000000..ac8cf3a --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilter.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct BrowseFilter +{ + [DataMember(Name = "FilterName", Order = 0, EmitDefaultValue = true)] + public string FilterName; + + [DataMember(Name = "Filters", Order = 1, EmitDefaultValue = true)] + public BrowseFilterElement[] Filters; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterElement.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterElement.cs new file mode 100644 index 0000000..0dac3ee --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterElement.cs @@ -0,0 +1,19 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct BrowseFilterElement +{ + [DataMember(Name = "AppliesTo", Order = 0, EmitDefaultValue = true)] + public FilterType AppliesTo; + + [DataMember(Name = "Type", Order = 1, EmitDefaultValue = true)] + public ElementType Type; + + [DataMember(Name = "Name", Order = 2, EmitDefaultValue = true)] + public string Name; + + [DataMember(Name = "FilterValue", Order = 3, EmitDefaultValue = true)] + public BrowseFilterValue[] FilterValue; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterOperator.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterOperator.cs new file mode 100644 index 0000000..19e63ad --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterOperator.cs @@ -0,0 +1,34 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public enum BrowseFilterOperator +{ + [EnumMember] + Equal = 1, + [EnumMember] + NotEqual, + [EnumMember] + LessThan, + [EnumMember] + LessThanOrEqual, + [EnumMember] + GreaterThan, + [EnumMember] + GreaterThanOrEqual, + [EnumMember] + Like, + [EnumMember] + NotLike, + [EnumMember] + Between, + [EnumMember] + NotBetween, + [EnumMember] + In, + [EnumMember] + NotIn, + [EnumMember] + Match +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterValue.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterValue.cs new file mode 100644 index 0000000..b82e76b --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseFilterValue.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct BrowseFilterValue +{ + [DataMember(Name = "Operator", Order = 0, EmitDefaultValue = true)] + public BrowseFilterOperator Operator; + + [DataMember(Name = "Value", Order = 1, EmitDefaultValue = true)] + public Variant[] Value; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseNode.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseNode.cs new file mode 100644 index 0000000..35ae5be --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/BrowseNode.cs @@ -0,0 +1,19 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct BrowseNode +{ + [DataMember] + public string DisplayName; + + [DataMember] + public string ContainedName; + + [DataMember] + public string HierachicalName; + + [DataMember] + public ulong ID; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ClientAuthentication.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ClientAuthentication.cs new file mode 100644 index 0000000..8cf50a6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ClientAuthentication.cs @@ -0,0 +1,210 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Globalization; +using System.Numerics; +using System.Security.Cryptography; +using System.Text; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public class ClientAuthentication : EncryptionBase +{ + private RNGCryptoServiceProvider m_Random = new RNGCryptoServiceProvider(); + + public ulong Timeout { get; set; } + + public ConnectionId connectionId { get; private set; } + + public bool SecureSessionEstablished { get; private set; } + + public string ReasonSecureSessionNotEstablished { get; private set; } + + public BigInteger ClientPrivateKey { get; private set; } + + public BigInteger ClientPublicKey { get; private set; } + + public BigInteger ServicePublicKey { get; private set; } + + public ClientAuthentication() + { + Reset(); + ReasonSecureSessionNotEstablished = "Constructed"; + base.DH_passphrase = Constants.GetDHPassphrase(); + base.hashAlgorithm = Constants.hashAlgorithm; + } + + public void EstablishSecureSession(string application, string domain, string host, MakeCallToServiceConnect ConnectDelegate, MakeCallToServiceActivate ActivateDelegate) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "ClientAuth: EstablishSecureSession '{0}', '{1}', '{2}' entering", new object[3] { application, domain, host })); + SecureSessionEstablished = false; + InitializeAuthentication(); + PublicKey clientToken = new PublicKey + { + ApplicationName = application, + DomainName = domain, + HostName = host, + KeyValue = ClientPublicKey.ToByteArray() + }; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "ClientAuth: Sending Connect() with client public key of {0} bits", new object[1] { clientToken.KeyValue.Length * 8 })); + Connection connection = default(Connection); + ArchestrAResult archestrAResult = ConnectDelegate(out connection, application, domain, host, clientToken); + if (archestrAResult.ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "ClientAuth: Received successful response from service Connect() with service public key of {0} bits", new object[1] { connection.serviceKeyField.KeyValue.Length * 8 })); + connectionId = connection.idField; + ServicePublicKey = new BigInteger(connection.serviceKeyField.KeyValue); + byte[] ClientValidationData = null; + if (ProcessServiceNegotiation(connection.authenticationDataField.AuthenticationData, out ClientValidationData)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "ClientAuth: Returning client validation data in call to service ActivateSession()"); + archestrAResult = ActivateDelegate(Authentication: new ConnectionAuthenticationData + { + AuthenticationData = ClientValidationData + }, ConnectionId: connectionId, Timeout: Timeout); + if (archestrAResult.ErrorCode == EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "ClientAuth: Service returned good result from ActivateSession(), secure session established")); + SecureSessionEstablished = true; + ReasonSecureSessionNotEstablished = "Secure session established"; + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "ClientAuth: Service returned bad result from ActivateSession(), no secure session established")); + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, string.Format(CultureInfo.CurrentCulture, "ClientAuth: Service returned bad result from ActivateSession(), no secure session established")); + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = $"Service ActivateSession() returned ArchestrAError '{EnumASBFactory.IntToArchestrAError(archestrAResult.ErrorCode).ToString()}'"; + } + } + else + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 100, "ClientAuth: Service validation data could not be verified, no secure session established"); + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "ClientAuth: Service validation data could not be verified, no secure session established"); + Reset(); + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = "Service validation data returned from Connect() was invalid"; + } + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "ClientAuth: Service returned bad result from Connect(), no secure session established"); + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "ClientAuth: Service returned bad result from Connect(), no secure session established"); + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = $"Service Connect() returned ArchestrAError '{EnumASBFactory.IntToArchestrAError(archestrAResult.ErrorCode).ToString()}'"; + } + } + + public void AbortSession() + { + Reset(); + ReasonSecureSessionNotEstablished = "Session Aborted"; + } + + public void DisconnectSecureSession(MakeCallToServiceDisconnect DisconnectDelegate) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "ClientAuth: Calling service Disconnect(), ending secure session"); + DisconnectDelegate(connectionId); + Reset(); + ReasonSecureSessionNotEstablished = "Session Disconnected normally"; + } + + private void Reset() + { + Timeout = 10000uL; + connectionId = new ConnectionId + { + Id = default(Guid) + }; + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = "Reset"; + ClientPrivateKey = BigInteger.MinusOne; + ClientPublicKey = BigInteger.Zero; + base.NegotiatedKey = new byte[200]; + m_Random.GetBytes(base.NegotiatedKey); + ServicePublicKey = BigInteger.Zero; + } + + private void InitializeAuthentication() + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "ClientAuth: Generating D-H keys with size = {0}", new object[1] { Constants.DH_KeySize })); + Constants.GenerateKey(Constants.DH_KeySize, out DH_p, out DH_g); + BigInteger bigInteger = DH_p - new BigInteger(1); + ClientPrivateKey = new BigInteger(0); + while (ClientPrivateKey >= bigInteger || ClientPrivateKey <= 0L) + { + byte[] array = new byte[Constants.DH_SecretSize / 8]; + m_Random.GetBytes(array); + ClientPrivateKey = new BigInteger(array); + } + ClientPublicKey = BigInteger.ModPow(DH_g, ClientPrivateKey, DH_p); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "ClientAuth: Generated Client private key and public key"); + } + + private bool ProcessServiceNegotiation(byte[] ServiceValidationData, out byte[] ClientValidationData) + { + base.NegotiatedKey = Encoding.UTF8.GetBytes(base.DH_passphrase); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "ClientAuth: Computed negotiated key [{0} {1} {2} {3} .. {4} {5}] {6} bytes", base.NegotiatedKey[0], base.NegotiatedKey[1], base.NegotiatedKey[2], base.NegotiatedKey[3], base.NegotiatedKey[base.NegotiatedKey.Length - 2], base.NegotiatedKey[base.NegotiatedKey.Length - 1], base.NegotiatedKey.Length)); + byte[] array = ServicePublicKey.ToByteArray(); + byte[] array2 = ClientPublicKey.ToByteArray(); + byte[] array3 = new byte[array.Length + array2.Length]; + Array.Copy(array, array3, array.Length); + Array.Copy(array2, 0, array3, array.Length, array2.Length); + byte[] array4 = Decrypt(ServiceValidationData, base.NegotiatedKey); + byte[] array5 = new byte[array4[0] + (array4[1] << 8)]; + for (int i = 0; i < array5.Length; i++) + { + array5[i] = 0; + } + Array.Copy(array4, 2, array5, 0, array4.Length - 2); + byte[] bytes = Encoding.UTF8.GetBytes(base.DH_passphrase); + byte[] array6 = Decrypt(array5, bytes); + byte[] array7 = new byte[array6[0] + (array6[1] << 8)]; + for (int j = 0; j < array7.Length; j++) + { + array7[j] = 0; + } + Array.Copy(array6, 2, array7, 0, array6.Length - 2); + bool flag = array3.Length == array7.Length; + if (flag) + { + for (int k = 0; k < array7.Length; k++) + { + if (array3[k] != array7[k]) + { + flag = false; + break; + } + } + } + bool flag2 = false; + ClientValidationData = null; + if (flag) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "ClientAuth: Decrypted and confirmed service validation data"); + SecureSessionEstablished = true; + ReasonSecureSessionNotEstablished = "Secure session established"; + array3 = new byte[array2.Length + array.Length + 2]; + int num = array3.Length - 2; + array3[0] = (byte)((ulong)num & 0xFFuL); + array3[1] = (byte)(((ulong)num >> 8) & 0xFF); + Array.Copy(array2, 0, array3, 2, array2.Length); + Array.Copy(array, 0, array3, array2.Length + 2, array.Length); + byte[] array8 = Encrypt(array3, bytes); + byte[] array9 = new byte[array8.Length + 2]; + int num2 = array9.Length - 2; + array9[0] = (byte)((ulong)num2 & 0xFFuL); + array9[1] = (byte)(((ulong)num2 >> 8) & 0xFF); + Array.Copy(array8, 0, array9, 2, array8.Length); + ClientValidationData = Encrypt(array9, base.NegotiatedKey); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "ClientAuth: Generated and encrypted return client validation data"); + return true; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "ClientAuth: Service validation data is incorrect, cannot authenticate"); + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "ClientAuth: Service validation data is incorrect, cannot authenticate"); + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = "Service validation payload incorrect"; + ClientValidationData = ServiceValidationData; + return false; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Connection.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Connection.cs new file mode 100644 index 0000000..86ceebc --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Connection.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct Connection +{ + [DataMember] + public ConnectionId idField; + + [DataMember] + public PublicKey serviceKeyField; + + [DataMember] + public ConnectionAuthenticationData authenticationDataField; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionAuthenticationData.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionAuthenticationData.cs new file mode 100644 index 0000000..9b15dd9 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionAuthenticationData.cs @@ -0,0 +1,10 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ConnectionAuthenticationData +{ + [DataMember] + public byte[] AuthenticationData; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionFactory.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionFactory.cs new file mode 100644 index 0000000..466cbd7 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionFactory.cs @@ -0,0 +1,27 @@ +using System; + +namespace ArchestrAServices.Contract; + +public static class ConnectionFactory +{ + public static ConnectionId MakeConnection() + { + return new ConnectionId + { + Id = Guid.NewGuid() + }; + } + + public static ConnectionId MakeInvalidConnection() + { + return new ConnectionId + { + Id = Guid.Empty + }; + } + + public static bool IsEqual(ConnectionId id1, ConnectionId id2) + { + return id1.Id == id2.Id; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionId.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionId.cs new file mode 100644 index 0000000..6327ece --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ConnectionId.cs @@ -0,0 +1,11 @@ +using System; +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ConnectionId +{ + [DataMember] + public Guid Id; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Constants.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Constants.cs new file mode 100644 index 0000000..ac63b82 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Constants.cs @@ -0,0 +1,112 @@ +using System; +using System.Numerics; +using System.Security.Cryptography; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public static class Constants +{ + public static int DH_KeySize = 1024; + + public static int DH_SecretSize = 160; + + public static string DH_passphrase = "Pas5pr@se"; + + public static string SaltValue = "s@1tValue"; + + public static string hashAlgorithm = CngAlgorithm.MD5.ToString(); + + public static int PasswordIterations = 1; + + public static string InitialVector = "ba172e9941be138b"; + + public static int KeySize = 256; + + private static string s_DECIMAL768 = "1552518092300708935130918131258481755631334049434514313202351194902966239949102107258669453876591642442910007680288864229150803718918046342632727613031282983744380820890196288509170691316593175367469551763119843371637221007210577919"; + + private static byte[] s_OAKLEY768 = new byte[96] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 58, 54, 32, 255, 255, + 255, 255, 255, 255, 255, 255 + }; + + private static string s_DECIMAL1024 = "179769313486231590770839156793787453197860296048756011706444423684197180216158519368947833795864925541502180565485980503646440548199239100050792877003355816639229553136239076508735759914822574862575007425302077447712589550957937778424442426617334727629299387668709205606050270810842907692932019128194"; + + private static byte[] s_OAKLEY1024 = new byte[128] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 55, 237, 107, 11, 255, + 92, 182, 244, 6, 183, 237, 238, 56, 107, 251, + 90, 137, 159, 165, 174, 159, 36, 17, 124, 75, + 31, 230, 73, 40, 102, 81, 236, 230, 83, 129, + 255, 255, 255, 255, 255, 255, 255, 255 + }; + + private static string s_DECIMAL1536 = "2410312426921032588552076022197566074856950548502459942654116941958108831682612228890093858261341614673227141477904012196503648957050582631942730706805009223062734745341073406696246014589361659774041027169249453200378729434170325843778659198143763193776859869524088940195577346119843545301547043747207749969763750084308926339295559968882457872412993810129130294592999947926365264059284647209730384947211681434464714438488520940127459844288859336526896320919633919"; + + private static byte[] s_OAKLEY1536 = new byte[192] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 55, 237, 107, 11, 255, + 92, 182, 244, 6, 183, 237, 238, 56, 107, 251, + 90, 137, 159, 165, 174, 159, 36, 17, 124, 75, + 31, 230, 73, 40, 102, 81, 236, 228, 91, 61, + 194, 0, 124, 184, 161, 99, 191, 5, 152, 218, + 72, 54, 28, 85, 211, 154, 105, 22, 63, 168, + 253, 36, 207, 95, 131, 101, 93, 35, 220, 163, + 173, 150, 28, 98, 243, 86, 32, 133, 82, 187, + 158, 213, 41, 7, 112, 150, 150, 109, 103, 12, + 53, 78, 74, 188, 152, 4, 241, 116, 108, 8, + 202, 35, 115, 39, 255, 255, 255, 255, 255, 255, + 255, 255 + }; + + public static string GetDHPassphrase() + { + string passphrase = string.Empty; + RegistryHandler.GetSolutionPassphrase(string.Empty, out passphrase); + return passphrase; + } + + public static void GenerateKey(int bitlen, out BigInteger DH_p, out BigInteger DH_g) + { + switch (bitlen) + { + case 768: + BigInteger.TryParse(s_DECIMAL768, out DH_p); + break; + case 1024: + BigInteger.TryParse(s_DECIMAL1024, out DH_p); + break; + case 1536: + BigInteger.TryParse(s_DECIMAL1536, out DH_p); + break; + default: + throw new ArgumentException("Invalid bit size."); + } + DH_g = new BigInteger(22); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CredentialType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CredentialType.cs new file mode 100644 index 0000000..15c170d --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CredentialType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.Contract; + +public enum CredentialType : ushort +{ + UsernamePassword = 0, + X509Certificate = 1, + SamlToken = 2, + Other = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CredentialValidity.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CredentialValidity.cs new file mode 100644 index 0000000..ed79719 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CredentialValidity.cs @@ -0,0 +1,12 @@ +namespace ArchestrAServices.Contract; + +public enum CredentialValidity : ushort +{ + UserIdentityValid = 0, + UserIdentityInvalid_BadPassword = 1, + UserIdentityInvalid_NoUser = 2, + UserIdentityInvalid_CannotAuthenticate = 3, + UserIdentityInvalid_AccountDisabled = 4, + UserIdentityInvalid_AccountLocked = 5, + UesrIdentityValidityUnknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CustomEnum.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CustomEnum.cs new file mode 100644 index 0000000..b921af4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/CustomEnum.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct CustomEnum +{ + [DataMember] + public short ordinal; + + [DataMember] + public string OrdinalValue; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/DataQualityType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/DataQualityType.cs new file mode 100644 index 0000000..a55ecf7 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/DataQualityType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.Contract; + +public enum DataQualityType : ushort +{ + Good = 0, + Uncertain = 16, + Bad = 1, + Other = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/DataType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/DataType.cs new file mode 100644 index 0000000..1b3a0e5 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/DataType.cs @@ -0,0 +1,53 @@ +namespace ArchestrAServices.Contract; + +public enum DataType : ushort +{ + TypeByte = 0, + TypeChar = 1, + TypeInt16 = 2, + TypeUInt16 = 3, + TypeInt32 = 4, + TypeUInt32 = 5, + TypeInt64 = 6, + TypeUInt64 = 7, + TypeFloat = 8, + TypeDouble = 9, + TypeString = 10, + TypeDateTime = 11, + TypeDuration = 12, + TypeGuid = 13, + TypeByteString = 14, + TypeLocaleID = 15, + TypeLocalizedText = 16, + TypeBool = 17, + TypeSByte = 18, + TypeErrorStatus = 19, + TypeEnum = 20, + TypeDataType = 21, + TypeSecurityClassification = 22, + TypeDataQuality = 23, + TypeByteArray = 40, + TypeCharArray = 41, + TypeInt16Array = 42, + TypeUInt16Array = 43, + TypeInt32Array = 44, + TypeUInt32Array = 45, + TypeInt64Array = 46, + TypeUInt64Array = 47, + TypeFloatArray = 48, + TypeDoubleArray = 49, + TypeStringArray = 50, + TypeDateTimeArray = 51, + TypeDurationArray = 52, + TypeGuidArray = 53, + TypeByteStringArray = 54, + TypeLocaleIDArray = 55, + TypeLocalizedTextArray = 56, + TypeBoolArray = 57, + TypeSByteArray = 58, + TypeEnumArray = 60, + TypeDataTypeArray = 61, + TypeSecurityClassificationArray = 62, + TypeDataQualityArray = 63, + TypeUnknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ElementType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ElementType.cs new file mode 100644 index 0000000..aec7fd6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ElementType.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public enum ElementType +{ + [EnumMember] + Entity = 1, + [EnumMember] + Facet, + [EnumMember] + Method, + [EnumMember] + Attribute +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EncryptionBase.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EncryptionBase.cs new file mode 100644 index 0000000..a055026 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EncryptionBase.cs @@ -0,0 +1,98 @@ +using System; +using System.Numerics; +using System.Text; + +namespace ArchestrAServices.Contract; + +public class EncryptionBase +{ + protected BigInteger DH_p = BigInteger.Zero; + + protected BigInteger DH_g = BigInteger.Zero; + + public string DH_passphrase { get; set; } + + public string hashAlgorithm { get; set; } + + public byte[] NegotiatedKey { get; protected set; } + + public byte[] Encrypt(byte[] PlainPayload, byte[] EncryptionKey) + { + if (PlainPayload == null) + { + throw new ArgumentNullException("PlainPayload"); + } + if (EncryptionKey == null) + { + throw new ArgumentNullException("EncryptionKey"); + } + byte[] bytes = Encoding.UTF8.GetBytes(Constants.SaltValue); + byte[] bytes2 = Encoding.UTF8.GetBytes(Constants.InitialVector); + return AuthenticationCryptography.Encrypt(PlainPayload, EncryptionKey, bytes, Constants.hashAlgorithm, Constants.PasswordIterations, bytes2, Constants.KeySize); + } + + public byte[] Decrypt(byte[] EncryptedPayload, byte[] EncryptionKey) + { + if (EncryptedPayload == null) + { + throw new ArgumentNullException("EncryptedPayload"); + } + if (EncryptionKey == null) + { + throw new ArgumentNullException("EncryptionKey"); + } + byte[] bytes = Encoding.UTF8.GetBytes(Constants.SaltValue); + byte[] bytes2 = Encoding.UTF8.GetBytes(Constants.InitialVector); + byte[] array = AuthenticationCryptography.Decrypt(EncryptedPayload, EncryptionKey, bytes, Constants.hashAlgorithm, Constants.PasswordIterations, bytes2, Constants.KeySize); + int num = array.Length; + int num2 = array.Length - 1; + while (num2 > 1 && array[num2] == 0) + { + num--; + num2--; + } + byte[] array2 = new byte[num]; + Array.Copy(array, array2, num); + return array2; + } + + public byte[] Encrypt(string PlainPayloadString, string EncryptionPassphrase) + { + if (string.IsNullOrEmpty(PlainPayloadString)) + { + throw new ArgumentException("PlainPayloadString"); + } + if (string.IsNullOrEmpty(EncryptionPassphrase)) + { + throw new ArgumentException("EncryptionPassphrase"); + } + byte[] bytes = Encoding.UTF8.GetBytes(Constants.SaltValue); + byte[] bytes2 = Encoding.UTF8.GetBytes(Constants.InitialVector); + byte[] bytes3 = Encoding.UTF8.GetBytes(EncryptionPassphrase); + return AuthenticationCryptography.Encrypt(Encoding.UTF8.GetBytes(PlainPayloadString), bytes3, bytes, Constants.hashAlgorithm, Constants.PasswordIterations, bytes2, Constants.KeySize); + } + + public string Decrypt(byte[] EncryptedPayload, string EncryptionPassphrase) + { + if (EncryptedPayload == null) + { + throw new ArgumentNullException("EncryptedPayload"); + } + if (string.IsNullOrEmpty(EncryptionPassphrase)) + { + throw new ArgumentException("EncryptionPassphrase"); + } + byte[] bytes = Encoding.UTF8.GetBytes(Constants.SaltValue); + byte[] bytes2 = Encoding.UTF8.GetBytes(Constants.InitialVector); + byte[] bytes3 = Encoding.UTF8.GetBytes(EncryptionPassphrase); + byte[] array = AuthenticationCryptography.Decrypt(EncryptedPayload, bytes3, bytes, Constants.hashAlgorithm, Constants.PasswordIterations, bytes2, Constants.KeySize); + int num = array.Length; + int num2 = array.Length - 1; + while (num2 > 1 && array[num2] == 0) + { + num--; + num2--; + } + return Encoding.UTF8.GetString(array, 0, num); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EncryptionType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EncryptionType.cs new file mode 100644 index 0000000..94f16ed --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EncryptionType.cs @@ -0,0 +1,6 @@ +namespace ArchestrAServices.Contract; + +public enum EncryptionType : ushort +{ + None +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EnumASBFactory.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EnumASBFactory.cs new file mode 100644 index 0000000..311a2c6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EnumASBFactory.cs @@ -0,0 +1,74 @@ +using System; + +namespace ArchestrAServices.Contract; + +public static class EnumASBFactory +{ + public static ArchestrAError IntToArchestrAError(ushort iValue) + { + try + { + return (ArchestrAError)iValue; + } + catch (Exception) + { + return ArchestrAError.Unknown; + } + } + + public static ushort ArchestrAErrorToInt(ArchestrAError eValue) + { + return (ushort)eValue; + } + + public static CredentialType IntToCredentialType(ushort iValue) + { + try + { + return (CredentialType)iValue; + } + catch (Exception) + { + return CredentialType.Other; + } + } + + public static ushort CredentialTypeToInt(CredentialType eValue) + { + return (ushort)eValue; + } + + public static EncryptionType IntToEncryptionType(ushort iValue) + { + try + { + return (EncryptionType)iValue; + } + catch (Exception) + { + return EncryptionType.None; + } + } + + public static ushort EncryptionTypeToInt(EncryptionType eValue) + { + return (ushort)eValue; + } + + public static CredentialValidity IntToCredentialValidity(ushort iValue) + { + try + { + return (CredentialValidity)iValue; + } + catch (Exception) + { + return CredentialValidity.UesrIdentityValidityUnknown; + } + } + + public static ushort CredentialValidityToInt(CredentialValidity eValue) + { + return (ushort)eValue; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EnumFactory.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EnumFactory.cs new file mode 100644 index 0000000..f05f8a8 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/EnumFactory.cs @@ -0,0 +1,143 @@ +using System; + +namespace ArchestrAServices.Contract; + +public static class EnumFactory +{ + public static DataType IntToDataType(ushort iValue) + { + try + { + return (DataType)iValue; + } + catch (Exception) + { + return DataType.TypeUnknown; + } + } + + public static ushort DataTypeToInt(DataType eValue) + { + return (ushort)eValue; + } + + public static DataQualityType IntToDataQualityType(ushort iValue) + { + try + { + return (DataQualityType)iValue; + } + catch (Exception) + { + return DataQualityType.Uncertain; + } + } + + public static ushort DataQualityTypeToInt(DataQualityType eValue) + { + return (ushort)eValue; + } + + public static ItemIdentityType IntToItemIdentityType(ushort iValue) + { + try + { + return (ItemIdentityType)iValue; + } + catch (Exception) + { + return ItemIdentityType.Other; + } + } + + public static ushort ItemIdentityTypeToInt(ItemIdentityType eValue) + { + return (ushort)eValue; + } + + public static ItemReferenceType IntToItemReferenceType(ushort iValue) + { + try + { + return (ItemReferenceType)iValue; + } + catch (Exception) + { + return ItemReferenceType.Other; + } + } + + public static ushort ItemReferenceTypeToInt(ItemReferenceType eValue) + { + return (ushort)eValue; + } + + public static SubscriptionStateType IntToSubscriptionStateType(ushort iValue) + { + try + { + return (SubscriptionStateType)iValue; + } + catch (Exception) + { + return SubscriptionStateType.SubsUnknown; + } + } + + public static ushort SubscriptionStateTypeToInt(SubscriptionStateType eValue) + { + return (ushort)eValue; + } + + public static WriteCapabilityType IntToWriteCapabilityType(ushort iValue) + { + try + { + return (WriteCapabilityType)iValue; + } + catch (Exception) + { + return WriteCapabilityType.WriteUnknown; + } + } + + public static ushort WriteCapabilityTypeToInt(WriteCapabilityType eValue) + { + return (ushort)eValue; + } + + public static OpcQualityMask IntToOpcQualityMask(ushort iValue) + { + try + { + return (OpcQualityMask)iValue; + } + catch (Exception) + { + return OpcQualityMask.MAGELLAN_QUALITY_INITIALIZING; + } + } + + public static ushort OpcQualityMaskToInt(OpcQualityMask eValue) + { + return (ushort)eValue; + } + + public static MonitoredItem MakeDeleteMonitoredItem(ItemIdentity Item) + { + MonitoredItem result = default(MonitoredItem); + result.Item = Item; + result.SampleInterval = 0uL; + result.Active = 0; + result.TimeDeadband = 0uL; + result.ValueDeadband = default(Variant); + result.ValueDeadband.Type = DataTypeToInt(DataType.TypeUnknown); + result.ValueDeadband.Length = 0; + result.ValueDeadband.Payload = null; + result.UserData = default(Variant); + result.UserData.Type = DataTypeToInt(DataType.TypeUnknown); + result.UserData.Length = 0; + result.UserData.Payload = null; + return result; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/FilterType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/FilterType.cs new file mode 100644 index 0000000..07c28ce --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/FilterType.cs @@ -0,0 +1,12 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public enum FilterType +{ + [EnumMember] + Entity = 1, + [EnumMember] + Attribute +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IASBCustomSerializableType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IASBCustomSerializableType.cs new file mode 100644 index 0000000..ce886dd --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IASBCustomSerializableType.cs @@ -0,0 +1,14 @@ +using System.IO; + +namespace ArchestrAServices.Contract; + +public interface IASBCustomSerializableType +{ + void WriteToStream(BinaryWriter writer); + + void InitializeFromStream(BinaryReader reader); + + object InitializeArrayFromStream(BinaryReader reader, int arrayLength); + + void WriteArrayToStream(object graph, ref BinaryWriter bw); +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IAsbInterfaceSettings.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IAsbInterfaceSettings.cs new file mode 100644 index 0000000..875e1d6 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IAsbInterfaceSettings.cs @@ -0,0 +1,8 @@ +namespace ArchestrAServices.Contract; + +public interface IAsbInterfaceSettings +{ + T GetSetting(string settingName, T defaultSetting); + + void SetSetting(string settingName, object setting); +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IBrowseStatus.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IBrowseStatus.cs new file mode 100644 index 0000000..e976043 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IBrowseStatus.cs @@ -0,0 +1,30 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Name = "IBrowseStatus", Namespace = "http://ArchestrAServices.Contract")] +public enum IBrowseStatus : ushort +{ + [EnumMember] + OK = 0, + [EnumMember] + IncorrectClientToken = 1, + [EnumMember] + IncorrectConnectionId = 2, + [EnumMember] + ClientSessionNotCreated = 32, + [EnumMember] + InvalidUsernameOrPassword = 49, + [EnumMember] + InvalidUserCert = 50, + [EnumMember] + CannotFindGR = 51, + [EnumMember] + CatchedException = 52, + [EnumMember] + InvalidContinuationPoint = 64, + [EnumMember] + CannotGetResult = 65, + [EnumMember] + UnKnown = 255 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IManageASBSecurity.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IManageASBSecurity.cs new file mode 100644 index 0000000..2bca645 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/IManageASBSecurity.cs @@ -0,0 +1,32 @@ +using System; +using System.ServiceModel; + +namespace ArchestrAServices.Contract; + +[ServiceContract(SessionMode = SessionMode.Required, Namespace = "http://ArchestrAServices.Contract")] +public interface IManageASBSecurity : ISecureSession +{ + [OperationContract] + ArchestrAResult RegisterSystemAuthenticationConfiguration(ConnectionId Id, SystemAuthenticationASBConfiguration ConfigurationData, string XMLExtraInfo); + + [OperationContract] + ArchestrAResult UnregisterSystemAuthenticationConfiguration(ConnectionId Id, string SolutionName); + + [OperationContract] + ArchestrAResult RegisterServiceBusPlatformId(ConnectionId Id, Guid NodeId); + + [OperationContract] + ArchestrAResult GetServiceBusPlatformConfiguration(out SystemAuthenticationASBConfiguration ConfigurationData, out string XMLExtraInfo, ConnectionId Id, Guid NodeId, string SolutionName); + + [OperationContract] + ArchestrAResult RegisterServiceBusEnable(ConnectionId Id, SystemAuthenticationASBConfiguration ConfigurationData); + + [OperationContract] + ArchestrAResult GetRegistrationEndpointStatus(out StatusTemporaryEndpoint[] ConfigurationData, ConnectionId Id); + + [OperationContract] + ArchestrAResult QueryExtraInfoChanges(out string XMLExtraInfo, ConnectionId Id, string NodeId); + + [OperationContract] + ArchestrAResult EnumerateSolutions(out string[] SolutionNames, ConnectionId Id); +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ISecureSession.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ISecureSession.cs new file mode 100644 index 0000000..9e788f4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ISecureSession.cs @@ -0,0 +1,22 @@ +using System.ServiceModel; + +namespace ArchestrAServices.Contract; + +[ServiceContract(SessionMode = SessionMode.Required, Namespace = "http://ArchestrAServices.Contract")] +public interface ISecureSession +{ + [OperationContract(IsInitiating = true)] + ArchestrAResult Connect(out Connection ConnectionDescription, string Application, string Domain, string Host, PublicKey ClientToken); + + [OperationContract(IsInitiating = false)] + ArchestrAResult ActivateSession(ConnectionId Id, ConnectionAuthenticationData Authentication, ulong Timeout); + + [OperationContract(IsInitiating = false)] + ArchestrAResult ActivateUser(ConnectionId Id, UserToken UserToken); + + [OperationContract(IsInitiating = false)] + ArchestrAResult KeepAlive(ConnectionId Id); + + [OperationContract(IsInitiating = false, IsTerminating = true)] + ArchestrAResult Disconnect(ConnectionId ConnectionID); +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemIdentity.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemIdentity.cs new file mode 100644 index 0000000..be1bb77 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemIdentity.cs @@ -0,0 +1,22 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ItemIdentity +{ + [DataMember] + public ushort Type; + + [DataMember] + public ushort ReferenceType; + + [DataMember] + public string Name; + + [DataMember] + public string ContextName; + + [DataMember] + public ulong Id; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemIdentityType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemIdentityType.cs new file mode 100644 index 0000000..0e09062 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemIdentityType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.Contract; + +public enum ItemIdentityType : ushort +{ + Name = 0, + Id = 1, + NameAndId = 2, + Other = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemReferenceType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemReferenceType.cs new file mode 100644 index 0000000..382a277 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemReferenceType.cs @@ -0,0 +1,10 @@ +namespace ArchestrAServices.Contract; + +public enum ItemReferenceType : ushort +{ + None = 0, + Absolute = 1, + Hierarchical = 2, + Relative = 3, + Other = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemRegistration.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemRegistration.cs new file mode 100644 index 0000000..3d8f8dd --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemRegistration.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ItemRegistration +{ + [DataMember] + public ushort WriteCapability; + + [DataMember] + public ulong Id; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemStatus.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemStatus.cs new file mode 100644 index 0000000..4dcc4c2 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemStatus.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ItemStatus +{ + [DataMember] + public ItemIdentity Item; + + [DataMember] + public ushort ErrorCode; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemWriteComplete.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemWriteComplete.cs new file mode 100644 index 0000000..316a06e --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ItemWriteComplete.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct ItemWriteComplete +{ + [DataMember] + public uint WriteHandle; + + [DataMember] + public ItemStatus[] Status; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceActivate.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceActivate.cs new file mode 100644 index 0000000..7d3f9a3 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceActivate.cs @@ -0,0 +1,3 @@ +namespace ArchestrAServices.Contract; + +public delegate ArchestrAResult MakeCallToServiceActivate(ConnectionId ConnectionId, ConnectionAuthenticationData Authentication, ulong Timeout); diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceConnect.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceConnect.cs new file mode 100644 index 0000000..21babe9 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceConnect.cs @@ -0,0 +1,3 @@ +namespace ArchestrAServices.Contract; + +public delegate ArchestrAResult MakeCallToServiceConnect(out Connection connection, string Application, string Domain, string Host, PublicKey ClientToken); diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceDisconnect.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceDisconnect.cs new file mode 100644 index 0000000..ce7ec24 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MakeCallToServiceDisconnect.cs @@ -0,0 +1,3 @@ +namespace ArchestrAServices.Contract; + +public delegate ArchestrAResult MakeCallToServiceDisconnect(ConnectionId ConnectionId); diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MonitoredItem.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MonitoredItem.cs new file mode 100644 index 0000000..77ffee2 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MonitoredItem.cs @@ -0,0 +1,25 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct MonitoredItem +{ + [DataMember] + public ItemIdentity Item; + + [DataMember] + public ulong SampleInterval; + + [DataMember] + public byte Active; + + [DataMember] + public ulong TimeDeadband; + + [DataMember] + public Variant ValueDeadband; + + [DataMember] + public Variant UserData; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MonitoredItemValue.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MonitoredItemValue.cs new file mode 100644 index 0000000..d78f849 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/MonitoredItemValue.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct MonitoredItemValue +{ + [DataMember] + public ItemIdentity Item; + + [DataMember] + public RuntimeValue Value; + + [DataMember] + public Variant UserData; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/OpcQualityMask.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/OpcQualityMask.cs new file mode 100644 index 0000000..cb6a3f0 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/OpcQualityMask.cs @@ -0,0 +1,28 @@ +namespace ArchestrAServices.Contract; + +public enum OpcQualityMask : ushort +{ + OPC_LIMIT_OK = 0, + OPC_QUALITY_BAD = 0, + OPC_LIMIT_LOW = 1, + OPC_LIMIT_HIGH = 2, + OPC_LIMIT_MASK = 3, + OPC_LIMIT_CONST = 3, + OPC_QUALITY_CONFIG_ERROR = 4, + OPC_QUALITY_NOT_CONNECTED = 8, + OPC_QUALITY_DEVICE_FAILURE = 12, + OPC_QUALITY_SENSOR_FAILURE = 16, + OPC_QUALITY_LAST_KNOWN = 20, + OPC_QUALITY_COMM_FAILURE = 24, + OPC_QUALITY_OUT_OF_SERVICE = 28, + MAGELLAN_QUALITY_INITIALIZING = 32, + OPC_QUALITY_UNCERTAIN = 64, + OPC_QUALITY_LAST_USABLE = 68, + OPC_QUALITY_SENSOR_CAL = 80, + OPC_QUALITY_EGU_EXCEEDED = 84, + OPC_QUALITY_SUB_NORMAL = 88, + OPC_QUALITY_GOOD = 192, + OPC_QUALITY_MASK = 192, + OPC_QUALITY_LOCAL_OVERRIDE = 216, + OPC_STATUS_MASK = 252 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/PublicKey.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/PublicKey.cs new file mode 100644 index 0000000..86e62d1 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/PublicKey.cs @@ -0,0 +1,19 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct PublicKey +{ + [DataMember] + public string ApplicationName; + + [DataMember] + public string DomainName; + + [DataMember] + public string HostName; + + [DataMember] + public byte[] KeyValue; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ResultFactory.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ResultFactory.cs new file mode 100644 index 0000000..28ae36c --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ResultFactory.cs @@ -0,0 +1,23 @@ +namespace ArchestrAServices.Contract; + +public static class ResultFactory +{ + public static ArchestrAResult MakeGoodResult() + { + return new ArchestrAResult + { + ErrorCode = EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success), + Status = 0u, + SpecificErrorCode = 0u + }; + } + + public static ArchestrAResult MakeResult(ArchestrAError error, ushort status) + { + return new ArchestrAResult + { + ErrorCode = EnumASBFactory.ArchestrAErrorToInt(error), + Status = status + }; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/RuntimeValue.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/RuntimeValue.cs new file mode 100644 index 0000000..495b5ad --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/RuntimeValue.cs @@ -0,0 +1,17 @@ +using System; +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct RuntimeValue +{ + [DataMember] + public DateTime Timestamp; + + [DataMember] + public Variant Value; + + [DataMember] + public ASBStatus Status; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SamlClaimsCheck.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SamlClaimsCheck.cs new file mode 100644 index 0000000..966f5cb --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SamlClaimsCheck.cs @@ -0,0 +1,151 @@ +#define TRACE +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.IdentityModel.Claims; +using System.IdentityModel.Tokens; +using System.Linq; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public class SamlClaimsCheck +{ + public static bool CheckSamlTokenForAttributeClaim(SamlSecurityToken SamlToken, string ClaimValue) + { + if (SamlToken == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForAttributeClaim: SamlToken cannot be null"); + return false; + } + if (string.IsNullOrEmpty(ClaimValue)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForAttributeClaim: ClaimValue cannot be null or empty"); + return false; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "SAML assertion contains {0} statements", new object[1] { SamlToken.Assertion.Statements.Count() })); + foreach (SamlStatement statement in SamlToken.Assertion.Statements) + { + if (!(statement is SamlAttributeStatement)) + { + continue; + } + SamlAttributeStatement samlAttributeStatement = statement as SamlAttributeStatement; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "SamlAttributeStatement has {0} attributes", new object[1] { samlAttributeStatement.Attributes.Count() })); + foreach (SamlAttribute attribute in samlAttributeStatement.Attributes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Attribute '{0}' has {1} claims", new object[2] + { + attribute.Name, + attribute.ExtractClaims().Count() + })); + foreach (Claim item in attribute.ExtractClaims()) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Claim type '{0}', Right: '{1}'", new object[2] { item.ClaimType, item.Right })); + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Attribute '{0}' has {1} values", new object[2] + { + attribute.Name, + attribute.AttributeValues.Count() + })); + foreach (string attributeValue in attribute.AttributeValues) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Value: '{0}'", new object[1] { attributeValue })); + if (attributeValue == ClaimValue) + { + return true; + } + } + } + } + return false; + } + + public static List ExtractAllAttributeClaims(SamlSecurityToken SamlToken) + { + return ExtractAllAttributeClaims(SamlToken); + } + + public static List ExtractAllAttributeClaims(SamlSecurityToken SamlToken, string AttributeName) + { + List list = new List(); + if (SamlToken == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "ExtractAllAttributeClaims: SamlToken cannot be null"); + return list; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "ExtractAllAttributeClaims extracting '{0}' attributes", new object[1] { AttributeName })); + foreach (SamlStatement statement in SamlToken.Assertion.Statements) + { + if (!(statement is SamlAttributeStatement)) + { + continue; + } + foreach (SamlAttribute attribute in (statement as SamlAttributeStatement).Attributes) + { + if (!string.IsNullOrEmpty(AttributeName) && !(attribute.Name == AttributeName)) + { + continue; + } + foreach (Claim item in attribute.ExtractClaims()) + { + if (!(item.ClaimType == ClaimTypes.Name) || !(item.Right == Rights.PossessProperty)) + { + continue; + } + foreach (string attributeValue in attribute.AttributeValues) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Adding '{0} attribute's value '{1}' to return list", new object[2] { attribute.Name, attributeValue })); + list.Add(attributeValue); + } + } + } + } + return list; + } + + public static bool CheckSamlTokenForAuthenticationClaim(SamlSecurityToken SamlToken, string ClaimValue) + { + if (SamlToken == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForAuthenticationClaim: SamlToken cannot be null"); + return false; + } + if (string.IsNullOrEmpty(ClaimValue)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForAuthenticationClaim: ClaimValue cannot be null or empty"); + return false; + } + return false; + } + + public static bool CheckSamlTokenForAuthorizationClaim(SamlSecurityToken SamlToken, string ClaimValue) + { + if (SamlToken == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForAuthorizationClaim: SamlToken cannot be null"); + return false; + } + if (string.IsNullOrEmpty(ClaimValue)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForAuthorizationClaim: ClaimValue cannot be null or empty"); + return false; + } + return false; + } + + public static bool CheckSamlTokenForSubjectClaim(SamlSecurityToken SamlToken, string ClaimValue) + { + if (SamlToken == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForSubjectClaim: SamlToken cannot be null"); + return false; + } + if (string.IsNullOrEmpty(ClaimValue)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "CheckSamlTokenForSubjectClaim: ClaimValue cannot be null or empty"); + return false; + } + return false; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceAuthentication.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceAuthentication.cs new file mode 100644 index 0000000..efcfe3a --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceAuthentication.cs @@ -0,0 +1,169 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Globalization; +using System.Numerics; +using System.Security.Cryptography; +using System.Text; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public class ServiceAuthentication : EncryptionBase +{ + private RNGCryptoServiceProvider m_Random = new RNGCryptoServiceProvider(); + + public ConnectionId connectionId { get; private set; } + + public bool SecureSessionEstablished { get; private set; } + + public string ReasonSecureSessionNotEstablished { get; private set; } + + public BigInteger ClientPublicKey { get; private set; } + + public BigInteger ServicePrivateKey { get; private set; } + + public BigInteger ServicePublicKey { get; private set; } + + public ServiceAuthentication() + { + Reset(); + ReasonSecureSessionNotEstablished = "Constructed"; + base.DH_passphrase = Constants.GetDHPassphrase(); + base.hashAlgorithm = Constants.hashAlgorithm; + } + + public ArchestrAResult ProcessClientConnection(string application, string domain, string host, PublicKey ClientToken, out Connection connectionDescription) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "SvcAuth: Processing client Connect() call '{0}', '{1}', '{2}'", new object[3] { application, domain, host })); + connectionId = new ConnectionId + { + Id = Guid.NewGuid() + }; + ClientPublicKey = new BigInteger(ClientToken.KeyValue); + Constants.GenerateKey(Constants.DH_KeySize, out DH_p, out DH_g); + BigInteger bigInteger = DH_p - new BigInteger(1); + ServicePrivateKey = new BigInteger(0); + while (ServicePrivateKey >= bigInteger || ServicePrivateKey <= 0L) + { + byte[] array = new byte[Constants.DH_SecretSize / 8]; + m_Random.GetBytes(array); + ServicePrivateKey = new BigInteger(array); + } + ServicePublicKey = BigInteger.ModPow(DH_g, ServicePrivateKey, DH_p); + base.NegotiatedKey = Encoding.UTF8.GetBytes(base.DH_passphrase); + connectionDescription = default(Connection); + connectionDescription.idField = connectionId; + connectionDescription.serviceKeyField.ApplicationName = application; + connectionDescription.serviceKeyField.DomainName = domain; + connectionDescription.serviceKeyField.HostName = host; + connectionDescription.serviceKeyField.KeyValue = ServicePublicKey.ToByteArray(); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "SvcAuth: Captured {0}-bit client public key, generated {1}-bit service public key, computed {2}-bit negotiated private key", new object[3] + { + ClientToken.KeyValue.Length * 8, + connectionDescription.serviceKeyField.KeyValue.Length * 8, + base.NegotiatedKey.Length * 8 + })); + byte[] array2 = ServicePublicKey.ToByteArray(); + byte[] array3 = ClientPublicKey.ToByteArray(); + byte[] array4 = new byte[array2.Length + array3.Length + 2]; + int num = array4.Length - 2; + array4[0] = (byte)((ulong)num & 0xFFuL); + array4[1] = (byte)(((ulong)num >> 8) & 0xFF); + Array.Copy(array2, 0, array4, 2, array2.Length); + Array.Copy(array3, 0, array4, array2.Length + 2, array3.Length); + byte[] bytes = Encoding.UTF8.GetBytes(base.DH_passphrase); + byte[] array5 = Encrypt(array4, bytes); + byte[] array6 = new byte[array5.Length + 2]; + int num2 = array6.Length - 2; + array6[0] = (byte)((ulong)num2 & 0xFFuL); + array6[1] = (byte)(((ulong)num2 >> 8) & 0xFF); + Array.Copy(array5, 0, array6, 2, array5.Length); + byte[] array7 = Encrypt(array6, base.NegotiatedKey); + connectionDescription.authenticationDataField.AuthenticationData = array7; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "SvcAuth: Generated {0}-bit service validation data, returning to client", new object[1] { array7.Length * 8 })); + return ResultFactory.MakeGoodResult(); + } + + public ArchestrAResult ProcessClientActivate(ConnectionId Id, ConnectionAuthenticationData Authentication, ulong Timeout) + { + if (Id.Id != connectionId.Id) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "SvcAuth: Client called ActivateSession() with invalid connection ID, no secure session created"); + Reset(); + ReasonSecureSessionNotEstablished = "ProcessClientActivate called with bad connection id"; + return ResultFactory.MakeResult(ArchestrAError.ApplicationAuthenticationError, 0); + } + byte[] array = ClientPublicKey.ToByteArray(); + byte[] array2 = ServicePublicKey.ToByteArray(); + byte[] array3 = new byte[array.Length + array2.Length]; + Array.Copy(array, array3, array.Length); + Array.Copy(array2, 0, array3, array.Length, array2.Length); + byte[] array4 = Decrypt(Authentication.AuthenticationData, base.NegotiatedKey); + byte[] array5 = new byte[array4[0] + (array4[1] << 8)]; + for (int i = 0; i < array5.Length; i++) + { + array5[i] = 0; + } + Array.Copy(array4, 2, array5, 0, array4.Length - 2); + byte[] bytes = Encoding.UTF8.GetBytes(base.DH_passphrase); + byte[] array6 = Decrypt(array5, bytes); + byte[] array7 = new byte[array6[0] + (array6[1] << 8)]; + for (int j = 0; j < array7.Length; j++) + { + array7[j] = 0; + } + Array.Copy(array6, 2, array7, 0, array6.Length - 2); + bool flag = array3.Length == array7.Length; + if (flag) + { + for (int k = 0; k < array7.Length; k++) + { + if (array3[k] != array7[k]) + { + flag = false; + break; + } + } + } + ArchestrAResult result = ResultFactory.MakeGoodResult(); + if (flag) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "SvcAuth: Confirmed {0}-bit client validation data, secure session established", new object[1] { array7.Length * 8 })); + SecureSessionEstablished = true; + ReasonSecureSessionNotEstablished = "Secure session established"; + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, string.Format(CultureInfo.CurrentCulture, "SvcAuth: Could not confirm {0}-bit client validation data, secure session not established", new object[1] { array7.Length * 8 })); + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, string.Format(CultureInfo.CurrentCulture, "SvcAuth: Could not confirm {0}-bit client validation data, secure session not established", new object[1] { array7.Length * 8 })); + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = "Client validation payload incorrect"; + result = ResultFactory.MakeResult(ArchestrAError.ApplicationAuthenticationError, 0); + } + return result; + } + + public ArchestrAResult ProcessClientDisconnect(ConnectionId Id) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SvcAuth: Processing Disconnect() call from client"); + Reset(); + ReasonSecureSessionNotEstablished = "Client disconnected"; + return ResultFactory.MakeGoodResult(); + } + + private void Reset() + { + connectionId = new ConnectionId + { + Id = default(Guid) + }; + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = "Reset"; + ClientPublicKey = BigInteger.Zero; + ServicePrivateKey = BigInteger.MinusOne; + ServicePublicKey = BigInteger.Zero; + base.NegotiatedKey = new byte[200]; + m_Random.GetBytes(base.NegotiatedKey); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceDiagnostic.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceDiagnostic.cs new file mode 100644 index 0000000..6eaa662 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceDiagnostic.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract] +public class ServiceDiagnostic +{ + [DataMember] + public string DiagnosticName { get; set; } + + [DataMember] + public string DiagnosticValue { get; set; } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceDiagnosticList.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceDiagnosticList.cs new file mode 100644 index 0000000..a3e0abb --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceDiagnosticList.cs @@ -0,0 +1,37 @@ +using System.Collections.ObjectModel; +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract] +public class ServiceDiagnosticList +{ + [DataMember] + private Collection diagnosticData = new Collection(); + + [DataMember] + public string ServiceInstance { get; set; } + + [DataMember] + public string ServiceType { get; set; } + + public void ClearDiagnosticData() + { + diagnosticData.Clear(); + } + + public Collection FetchDiagnosticData() + { + return diagnosticData; + } + + public void AddServiceDiagnostic(ServiceDiagnostic serviceDiagnostic) + { + diagnosticData.Add(serviceDiagnostic); + } + + public bool RemoveServiceDiagnostic(ServiceDiagnostic serviceDiagnostic) + { + return diagnosticData.Remove(serviceDiagnostic); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceInfo.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceInfo.cs new file mode 100644 index 0000000..7dbed1d --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/ServiceInfo.cs @@ -0,0 +1,76 @@ +using System; +using System.Collections.ObjectModel; +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract] +public class ServiceInfo +{ + [DataMember] + private Collection diagnosticList = new Collection(); + + [DataMember] + public string ServiceInstanceName { get; set; } + + [DataMember] + public string ServiceConfig { get; set; } + + [DataMember] + public string ServiceHostName { get; set; } + + [DataMember] + public string ServiceDllName { get; set; } + + [DataMember] + public string ContractTypeName { get; set; } + + [DataMember] + public string BaseAddress { get; set; } + + [DataMember] + public string MexAddress { get; set; } + + [DataMember] + public DateTime ReregistrationTime { get; set; } + + [DataMember] + public double RegistrationPeriod { get; set; } + + [DataMember] + public DateTime PingTime { get; set; } + + [DataMember] + public double PingPeriod { get; set; } + + [DataMember] + public DateTime NextPingTime { get; set; } + + public long PingIntervalCounter { get; set; } + + [DataMember] + public bool PublishWcfEndpoints { get; set; } + + [DataMember] + public bool IsRunning { get; set; } + + public void ClearServiceDiagnostic() + { + diagnosticList.Clear(); + } + + public Collection FetchDiagnosticList() + { + return diagnosticList; + } + + public void AddServiceDiagnostic(ServiceDiagnostic serviceDiagnostic) + { + diagnosticList.Add(serviceDiagnostic); + } + + public bool RemoveServiceDiagnostic(ServiceDiagnostic serviceDiagnostic) + { + return diagnosticList.Remove(serviceDiagnostic); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Status.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Status.cs new file mode 100644 index 0000000..e613317 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Status.cs @@ -0,0 +1,14 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public enum Status +{ + [EnumMember] + Success, + [EnumMember] + Failure, + [EnumMember] + Unknown +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/StatusTemporaryEndpoint.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/StatusTemporaryEndpoint.cs new file mode 100644 index 0000000..7346102 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/StatusTemporaryEndpoint.cs @@ -0,0 +1,13 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct StatusTemporaryEndpoint +{ + [DataMember] + public string EndpointName; + + [DataMember] + public string EndpointState; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SubscriptionStateType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SubscriptionStateType.cs new file mode 100644 index 0000000..0644dfe --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SubscriptionStateType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.Contract; + +public enum SubscriptionStateType : ushort +{ + SubsEnableState = 1, + SubsSampleInterval = 2, + SubsMaxQueueSize = 3, + SubsUnknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SystemAuthenticationASBConfiguration.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SystemAuthenticationASBConfiguration.cs new file mode 100644 index 0000000..a24aa98 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SystemAuthenticationASBConfiguration.cs @@ -0,0 +1,43 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct SystemAuthenticationASBConfiguration +{ + [DataMember] + public string solutionName; + + [DataMember] + public byte[] generator; + + [DataMember] + public byte[] prime; + + [DataMember] + public string hashAlgorithm; + + [DataMember] + public byte[] initializationVector; + + [DataMember] + public byte[] saltValue; + + [DataMember] + public int passwordDerivationIterations; + + [DataMember] + public int keySize; + + [DataMember] + public byte[] EncryptedSharedSecret; + + [DataMember] + public byte[] EncryptedCertificate; + + [DataMember] + public string isDefault; + + [DataMember] + public string srNodeName; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SystemAuthenticationConstants.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SystemAuthenticationConstants.cs new file mode 100644 index 0000000..fe8e73f --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/SystemAuthenticationConstants.cs @@ -0,0 +1,24 @@ +using System; + +namespace ArchestrAServices.Contract; + +public static class SystemAuthenticationConstants +{ + public static string MakeTemporaryRegistrationEndpointAddress(string SRNode) + { + if (SRNode.ToLower() == "localhost") + { + SRNode = Environment.MachineName; + } + return "net.tcp://" + SRNode + ":7084/SystemAuthentication/Registration"; + } + + public static string MakeTemporaryPairingEndpointAddress(string SRNode) + { + if (SRNode.ToLower() == "localhost") + { + SRNode = Environment.MachineName; + } + return "net.tcp://" + SRNode + ":7085/SystemAuthentication/Pairing"; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TemporaryEndpointState.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TemporaryEndpointState.cs new file mode 100644 index 0000000..fbc939f --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TemporaryEndpointState.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.Contract; + +public enum TemporaryEndpointState +{ + EndpointOpen = 0, + EndpointClosed = 1, + EndpointFaulted = 2, + EndpointUnknown = 32767 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TemporaryEndpointStatus.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TemporaryEndpointStatus.cs new file mode 100644 index 0000000..07a5486 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TemporaryEndpointStatus.cs @@ -0,0 +1,8 @@ +namespace ArchestrAServices.Contract; + +public struct TemporaryEndpointStatus +{ + public string EndpointName; + + public TemporaryEndpointState EndpointState; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TokenManager.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TokenManager.cs new file mode 100644 index 0000000..cea0a70 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/TokenManager.cs @@ -0,0 +1,162 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.IdentityModel.Selectors; +using System.IdentityModel.Tokens; +using System.ServiceModel.Security; +using System.ServiceModel.Security.Tokens; +using System.Xml; +using ArchestrAServices.Common; + +namespace ArchestrAServices.Contract; + +public class TokenManager +{ + public static UserToken RepackageSamlToken(UserToken userAuthentication, byte[] incomingSharedSecret, byte[] outgoingSharedSecret) + { + SamlSecurityToken samlReadToken = ExtractIncomingSamlToken(userAuthentication, incomingSharedSecret); + string tokenId = string.Empty; + return SerializeSamlToken(PackageOutgoingSamlToken(samlReadToken, outgoingSharedSecret, out tokenId), tokenId); + } + + public static SamlSecurityToken ExtractIncomingSamlToken(UserToken userAuthentication, byte[] incomingSharedSecret) + { + if (incomingSharedSecret == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "ExtractIncomingSamlToken: incomingSharedSecret cannot be null"); + return null; + } + SamlSecurityToken samlSecurityToken = null; + try + { + SecurityToken item = new BinarySecretSecurityToken(userAuthentication.Password, incomingSharedSecret); + WSSecurityTokenSerializer wSSecurityTokenSerializer = new WSSecurityTokenSerializer(SecurityVersion.WSSecurity11, emitBspRequiredAttributes: false, new SamlSerializer()); + XmlReader reader = XmlReader.Create(new MemoryStream(userAuthentication.SamlToken)); + if (wSSecurityTokenSerializer.CanReadToken(reader)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Serializer is capable of reading SAML token from XML"); + SecurityTokenResolver tokenResolver = SecurityTokenResolver.CreateDefaultSecurityTokenResolver(new List { item }.AsReadOnly(), canMatchLocalId: true); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Serializer is reading token"); + SecurityToken securityToken = wSSecurityTokenSerializer.ReadToken(reader, tokenResolver); + if (securityToken != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Serializer successfully read a token"); + samlSecurityToken = securityToken as SamlSecurityToken; + if (samlSecurityToken == null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Serializer could not read a SAML token"); + } + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Serializer could not read the token"); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Serializer is NOT capable of reading SAML token to XML"); + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, string.Format(CultureInfo.CurrentCulture, "Exception deserializing SAML token: {0}", new object[1] { ex.Message })); + Exception innerException = ex.InnerException; + if (innerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, string.Format(CultureInfo.CurrentCulture, "--> {0}", new object[1] { innerException.Message })); + Exception innerException2 = innerException.InnerException; + if (innerException2 != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, string.Format(CultureInfo.CurrentCulture, "--> {0}", new object[1] { innerException2.Message })); + } + } + } + return samlSecurityToken; + } + + private static SamlSecurityToken PackageOutgoingSamlToken(SamlSecurityToken samlReadToken, byte[] outgoingSharedSecret, out string tokenId) + { + tokenId = string.Empty; + if (samlReadToken == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "PackageOutgoingSamlToken: samlReadToken cannot be null"); + return null; + } + if (outgoingSharedSecret == null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "PackageOutgoingSamlToken: outgoingSharedSecret cannot be null"); + return null; + } + SamlSecurityToken result = null; + try + { + SecurityToken securityToken = new BinarySecretSecurityToken(outgoingSharedSecret); + tokenId = securityToken.Id; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "PackageOutgoingSamlToken: creating skic from id='{0}'", new object[1] { securityToken.Id })); + SecurityKeyIdentifierClause securityKeyIdentifierClause = securityToken.CreateKeyIdentifierClause(); + SecurityKeyIdentifier signingKeyIdentifier = new SecurityKeyIdentifier(securityKeyIdentifierClause); + List list = new List(1); + SecurityKeyIdentifier securityKeyIdentifier = null; + list.Add(SamlConstants.SenderVouches); + new SamlSubject(null, null, null, list, null, securityKeyIdentifier); + SigningCredentials signingCredentials = new SigningCredentials(securityToken.SecurityKeys[0], "http://www.w3.org/2000/09/xmldsig#hmac-sha1", "http://www.w3.org/2000/09/xmldsig#sha1", signingKeyIdentifier); + SamlAssertion assertion = samlReadToken.Assertion; + result = new SamlSecurityToken(new SamlAssertion(assertion.AssertionId, assertion.Issuer, assertion.IssueInstant, assertion.Conditions, assertion.Advice, assertion.Statements) + { + SigningCredentials = signingCredentials + }); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, string.Format(CultureInfo.CurrentCulture, "Exception caught in CreateSamlToken: '{0}'", new object[1] { ex.Message })); + } + return result; + } + + public static UserToken SerializeSamlToken(SamlSecurityToken samlToken, string tokenId) + { + UserToken result = default(UserToken); + if (samlToken != null) + { + WSSecurityTokenSerializer wSSecurityTokenSerializer = new WSSecurityTokenSerializer(SecurityVersion.WSSecurity11, emitBspRequiredAttributes: true, new SamlSerializer()); + if (wSSecurityTokenSerializer.CanWriteToken(samlToken)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Verbose, 0, "Serializer is capable of writing SAML token to XML"); + try + { + using (MemoryStream memoryStream = new MemoryStream()) + { + XmlWriter writer = XmlWriter.Create(memoryStream); + wSSecurityTokenSerializer.WriteToken(writer, samlToken); + result.IdType = EnumASBFactory.CredentialTypeToInt(CredentialType.SamlToken); + result.SamlToken = memoryStream.ToArray(); + result.Password = tokenId; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Verbose, 0, string.Format(CultureInfo.CurrentCulture, "Serialized SAML Token {0}:", new object[1] { samlToken.Id })); + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, string.Format(CultureInfo.CurrentCulture, "Exception during serialization: '{0}'", new object[1] { ex.Message })); + Exception innerException = ex.InnerException; + if (innerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, string.Format(CultureInfo.CurrentCulture, "-> '{0}'", new object[1] { innerException.Message })); + Exception innerException2 = innerException.InnerException; + if (innerException2 != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, string.Format(CultureInfo.CurrentCulture, "-> '{0}'", new object[1] { innerException2.Message })); + } + } + } + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Verbose, 0, "Serializer is NOT capable of writing SAML token to XML"); + } + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/UserToken.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/UserToken.cs new file mode 100644 index 0000000..339cbde --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/UserToken.cs @@ -0,0 +1,34 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct UserToken +{ + [DataMember] + public ushort Validity; + + [DataMember] + public ushort IdType; + + [DataMember] + public ushort Encryption; + + [DataMember] + public string LocationID; + + [DataMember] + public string HostName; + + [DataMember] + public string UserName; + + [DataMember] + public string Password; + + [DataMember] + public byte[] X509Certificate; + + [DataMember] + public byte[] SamlToken; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/UserTokenFactory.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/UserTokenFactory.cs new file mode 100644 index 0000000..95a6bcc --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/UserTokenFactory.cs @@ -0,0 +1,34 @@ +using System; + +namespace ArchestrAServices.Contract; + +public static class UserTokenFactory +{ + public static UserToken MakeToken(string userName, string password) + { + return new UserToken + { + IdType = EnumASBFactory.CredentialTypeToInt(CredentialType.UsernamePassword), + Encryption = EnumASBFactory.EncryptionTypeToInt(EncryptionType.None), + LocationID = "en_US", + HostName = Environment.MachineName, + UserName = userName, + Password = password, + X509Certificate = new byte[0] + }; + } + + public static UserToken MakeInvalidToken() + { + return new UserToken + { + IdType = EnumASBFactory.CredentialTypeToInt(CredentialType.Other), + Encryption = EnumASBFactory.EncryptionTypeToInt(EncryptionType.None), + LocationID = "en_US", + HostName = Environment.MachineName, + UserName = string.Empty, + Password = string.Empty, + X509Certificate = new byte[0] + }; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Variant.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Variant.cs new file mode 100644 index 0000000..e9459fe --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/Variant.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct Variant +{ + [DataMember] + public ushort Type; + + [DataMember] + public int Length; + + [DataMember] + public byte[] Payload; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/VariantFactory.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/VariantFactory.cs new file mode 100644 index 0000000..fd24a7f --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/VariantFactory.cs @@ -0,0 +1,747 @@ +using System; +using System.CodeDom.Compiler; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; + +namespace ArchestrAServices.Contract; + +public static class VariantFactory +{ + public static Variant MakeVariantValue(bool value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeBool), + Length = 1, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(sbyte value) + { + Variant result = new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeSByte), + Length = 1, + Payload = new byte[1] + }; + result.Payload[0] = (byte)value; + return result; + } + + public static Variant MakeVariantValue(byte value) + { + Variant result = new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeByte), + Length = 1, + Payload = new byte[1] + }; + result.Payload[0] = value; + return result; + } + + public static Variant MakeVariantValue(ushort value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeUInt16), + Length = 2, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(uint value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeUInt32), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(ulong value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeUInt64), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(short value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeInt16), + Length = 2, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(int value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeInt32), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(long value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeInt64), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValueAsDuration(long value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeDuration), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValueAsDurationArray(long[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + result = MakeVariantValue(value); + result.Type = EnumFactory.DataTypeToInt(DataType.TypeDurationArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeDurationArray); + return result; + } + + public static Variant MakeVariantValue(float value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeFloat), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(double value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeDouble), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(string value) + { + Variant result = default(Variant); + result.Type = EnumFactory.DataTypeToInt(DataType.TypeString); + result.Payload = Encoding.Unicode.GetBytes(value); + result.Length = result.Payload.Count(); + return result; + } + + public static Variant MakeVariantValue(DateTime value) + { + return new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeDateTime), + Length = 8, + Payload = BitConverter.GetBytes(value.ToFileTimeUtc()) + }; + } + + public static Variant MakeVariantValue(Guid value) + { + Variant variant = new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeGuid) + }; + return MakeVariantValue(value.ToString()); + } + + public static Variant MakeVariantValue(long value, bool bStatus) + { + Variant result = new Variant + { + Type = EnumFactory.DataTypeToInt(DataType.TypeLocalizedText) + }; + MemoryStream memoryStream = null; + try + { + memoryStream = new MemoryStream(); + using (StreamWriter streamWriter = new StreamWriter(memoryStream)) + { + memoryStream = null; + streamWriter.Write(value); + streamWriter.Flush(); + } + result.Payload = memoryStream.ToArray(); + result.Length = result.Payload.Count(); + return result; + } + finally + { + memoryStream?.Dispose(); + } + } + + public static Variant MakeVariantValue(CustomEnum customEnum) + { + Variant result = default(Variant); + short ordinal = customEnum.ordinal; + string ordinalValue = customEnum.OrdinalValue; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeEnum); + List list = new List(); + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + result.Length = 6 + ordinalValue.Length; + result.Payload = list.ToArray(); + return result; + } + + public static Variant MakeVariantValue(int[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeInt32Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeInt32Array); + return result; + } + + public static Variant MakeVariantValue(uint[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + return result; + } + + public static Variant MakeVariantValue(long[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeInt64Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeInt64Array); + return result; + } + + public static Variant MakeVariantValue(ulong[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + return result; + } + + public static Variant MakeVariantValue(float[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeFloatArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeFloatArray); + return result; + } + + public static Variant MakeVariantValue(double[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + return result; + } + + public static Variant MakeVariantValue(short[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeInt16Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeInt16Array); + return result; + } + + public static Variant MakeVariantValue(ushort[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + return result; + } + + public static Variant MakeVariantValue(byte[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + result.Length = value.Length; + result.Payload = value; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeByteArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeByteArray); + return result; + } + + public static Variant MakeVariantValue(sbyte[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeSByteArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeSByteArray); + return result; + } + + public static Variant MakeVariantValue(bool[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeBoolArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeBoolArray); + return result; + } + + public static Variant MakeVariantValue(DateTime[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + long[] array = new long[value.Length]; + for (int i = 0; i < value.Length; i++) + { + array[i] = value[i].ToFileTimeUtc(); + } + result = MakeVariantValue(array); + result.Type = EnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + return result; + } + + public static Variant MakeVariantValue(char[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeCharArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeCharArray); + return result; + } + + public static Variant MakeVariantValue(string[] value) + { + if (value == null || value.Length == 0) + { + return new Variant + { + Length = 0, + Payload = new byte[0], + Type = EnumFactory.DataTypeToInt(DataType.TypeStringArray) + }; + } + byte[][] array = new byte[value.Length][]; + int num = 0; + for (int i = 0; i < value.Length; i++) + { + if (value[i] == null) + { + array[i] = new byte[0]; + } + else + { + array[i] = Encoding.Unicode.GetBytes(value[i]); + num += array[i].Length; + } + num += 4; + } + byte[] array2 = new byte[num]; + int j = 0; + int num2 = 0; + for (; j < value.Length; j++) + { + byte[] bytes = BitConverter.GetBytes(array[j].Length); + Buffer.BlockCopy(bytes, 0, array2, num2, bytes.Length); + num2 += bytes.Length; + Buffer.BlockCopy(array[j], 0, array2, num2, array[j].Length); + num2 += array[j].Length; + } + return new Variant + { + Length = array2.Length, + Payload = array2, + Type = EnumFactory.DataTypeToInt(DataType.TypeStringArray) + }; + } + + public static Variant MakeVariantValue(Guid[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + string[] array = new string[value.Length]; + for (int i = 0; i < value.Length; i++) + { + array[i] = value[i].ToString(); + } + result = MakeVariantValue(array); + result.Type = EnumFactory.DataTypeToInt(DataType.TypeGuidArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeGuidArray); + return result; + } + + public static Variant MakeVariantValue(CustomEnum[] customEnum) + { + Variant result = default(Variant); + int num = 0; + List list = new List(); + if (customEnum != null && customEnum.Length != 0) + { + for (int i = 0; i < customEnum.Length; i++) + { + short ordinal = customEnum[i].ordinal; + string ordinalValue = customEnum[i].OrdinalValue; + num += 6 + ordinalValue.Length; + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + } + result.Length = num; + result.Payload = list.ToArray(); + result.Type = EnumFactory.DataTypeToInt(DataType.TypeEnumArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = EnumFactory.DataTypeToInt(DataType.TypeEnum); + return result; + } + + public static Variant MakeVariantArray(Array valueArray) + { + Variant result = default(Variant); + Type type = valueArray.GetType(); + type.GetArrayRank(); + int VariantElementSize = 0; + if (type.HasElementType) + { + CalculateTypeAndSize(type.GetElementType(), ref result.Type, ref VariantElementSize); + } + uint arrayRank = (uint)type.GetArrayRank(); + byte[] array = new byte[4 + arrayRank * 4 + valueArray.Length * VariantElementSize]; + int num = 0; + byte[] bytes = BitConverter.GetBytes(arrayRank); + bytes.CopyTo(array, num); + num += bytes.Count(); + int[] array2 = new int[arrayRank]; + for (int i = 0; i < array2.Count(); i++) + { + byte[] bytes2 = BitConverter.GetBytes((uint)valueArray.GetLength(i)); + bytes2.CopyTo(array, num); + num += bytes2.Count(); + array2[i] = 0; + } + PackArray(array, ref num, valueArray, array2, 0); + result.Payload = array; + result.Length = result.Payload.Count(); + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static void CalculateTypeAndSize(Type valueArrayElementType, ref ushort VariantElementType, ref int VariantElementSize) + { + if (valueArrayElementType == typeof(bool)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeBoolArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(sbyte)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeSByteArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(byte)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeByteArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(ushort)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + VariantElementSize = 2; + } + else if (valueArrayElementType == typeof(uint)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(ulong)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(short)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeInt16Array); + VariantElementSize = 2; + } + else if (valueArrayElementType == typeof(int)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeInt32Array); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(long)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeInt64Array); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(float)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeFloatArray); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(double)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(string)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeStringArray); + VariantElementSize = 0; + } + else if (valueArrayElementType == typeof(DateTime)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(Guid)) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeGuidArray); + VariantElementSize = Guid.Empty.ToByteArray().Count(); + } + else if (valueArrayElementType == typeof(byte[])) + { + VariantElementType = EnumFactory.DataTypeToInt(DataType.TypeByteStringArray); + VariantElementSize = 0; + } + } + + private static void PackArray(byte[] Payload, ref int PayloadIndex, Array valueArray, int[] DimensionIndices, int Dimension) + { + if (Dimension == DimensionIndices.Count() - 1) + { + for (int i = 0; i < valueArray.GetLength(Dimension); i++) + { + DimensionIndices[Dimension] = i; + byte[] array = PackArrayElement(valueArray.GetValue(DimensionIndices)); + array.CopyTo(Payload, PayloadIndex); + PayloadIndex += array.Count(); + } + } + else + { + for (int j = 0; j < valueArray.GetLength(Dimension); j++) + { + DimensionIndices[Dimension] = j; + PackArray(Payload, ref PayloadIndex, valueArray, DimensionIndices, Dimension + 1); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static byte[] PackArrayElement(object element) + { + if (element == null) + { + return new byte[0]; + } + if (element.GetType() == typeof(bool)) + { + return BitConverter.GetBytes((bool)element); + } + if (element.GetType() == typeof(sbyte)) + { + return BitConverter.GetBytes((sbyte)element); + } + if (element.GetType() == typeof(byte)) + { + return BitConverter.GetBytes((byte)element); + } + if (element.GetType() == typeof(ushort)) + { + return BitConverter.GetBytes((ushort)element); + } + if (element.GetType() == typeof(uint)) + { + return BitConverter.GetBytes((uint)element); + } + if (element.GetType() == typeof(ulong)) + { + return BitConverter.GetBytes((ulong)element); + } + if (element.GetType() == typeof(short)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(int)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(long)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(float)) + { + return BitConverter.GetBytes((float)element); + } + if (element.GetType() == typeof(double)) + { + return BitConverter.GetBytes((double)element); + } + if (element.GetType() == typeof(string)) + { + return Encoding.Unicode.GetBytes((string)element); + } + if (element.GetType() == typeof(DateTime)) + { + return BitConverter.GetBytes(((DateTime)element).ToBinary()); + } + if (element.GetType() == typeof(Guid)) + { + return ((Guid)element).ToByteArray(); + } + if (element.GetType() == typeof(byte[])) + { + return (byte[])element; + } + return new byte[0]; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/VariantReader.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/VariantReader.cs new file mode 100644 index 0000000..2f67404 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/VariantReader.cs @@ -0,0 +1,4223 @@ +using System; +using System.CodeDom.Compiler; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace ArchestrAServices.Contract; + +public class VariantReader +{ + public Variant Value { get; set; } + + public VariantReader(Variant value) + { + Value = value; + } + + public DataType GetVariantType() + { + return EnumFactory.IntToDataType(Value.Type); + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsByte() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = Value.Payload[0]; + return obj; + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (byte)Convert.ChangeType(obj, typeof(byte)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt16() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = BitConverter.ToInt16(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (short)Convert.ChangeType(obj, typeof(short)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt16() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = BitConverter.ToUInt16(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (ushort)Convert.ChangeType(obj, typeof(ushort)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt32() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToInt32(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (int)Convert.ChangeType(obj, typeof(int)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt32() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToUInt32(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (uint)Convert.ChangeType(obj, typeof(uint)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt64() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToInt64(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (long)Convert.ChangeType(obj, typeof(long)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt64() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToUInt64(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (ulong)Convert.ChangeType(obj, typeof(ulong)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsFloat() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToSingle(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (float)Convert.ChangeType(obj, typeof(float)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDouble() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToDouble(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (double)Convert.ChangeType(obj, typeof(double)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsString() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = Encoding.Unicode.GetString(Value.Payload); + return obj; + } + if (obj != null) + { + result = (string)Convert.ChangeType(obj, typeof(string)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsBool() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = Convert.ToBoolean(Value.Payload[0]); + return obj; + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() == 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (bool)Convert.ChangeType(obj, typeof(bool)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsSByte() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = (sbyte)Value.Payload[0]; + return obj; + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (sbyte)Convert.ChangeType(obj, typeof(sbyte)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsDateTime() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = DateTime.FromFileTimeUtc(BitConverter.ToInt64(Value.Payload, 0)); + return obj; + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (DateTime)Convert.ChangeType(obj, typeof(DateTime)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsDuration() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = TimeSpan.FromTicks(BitConverter.ToInt64(Value.Payload, 0)); + return obj; + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (TimeSpan)Convert.ChangeType(obj, typeof(TimeSpan)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsGuid() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + { + string g = (string)GetAsString(); + obj = new Guid(g); + return obj; + } + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = ((!(obj.GetType() == typeof(string))) ? ((object)(Guid)Convert.ChangeType(obj, typeof(Guid))) : ((object)new Guid((string)obj))); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public byte[] GetAsByteString() + { + return Value.Payload; + } + + public string GetAsLocalizedText() + { + return (string)GetAsString(); + } + + public object GetScalarValue(DataType targetType) + { + object obj = null; + try + { + switch (EnumFactory.IntToDataType(Value.Type)) + { + case DataType.TypeBool: + obj = GetAsBool(); + if (DataType.TypeBool == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeByte: + obj = GetAsByte(); + if (targetType == DataType.TypeByte) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDateTime: + obj = GetAsDateTime(); + if (targetType == DataType.TypeByte) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDouble: + obj = GetAsDouble(); + if (DataType.TypeDouble == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDuration: + obj = GetAsDuration(); + if (DataType.TypeDuration == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeFloat: + obj = GetAsFloat(); + if (DataType.TypeFloat == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeGuid: + obj = GetAsGuid(); + if (DataType.TypeGuid == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt16: + obj = GetAsInt16(); + if (DataType.TypeInt16 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt32: + obj = GetAsInt32(); + if (DataType.TypeInt32 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt64: + obj = GetAsInt64(); + if (DataType.TypeInt64 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeLocalizedText: + obj = GetAsLocalizedText(); + if (DataType.TypeLocalizedText == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeSByte: + obj = GetAsSByte(); + if (DataType.TypeSByte == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeString: + obj = GetAsString(); + if (DataType.TypeString == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt16: + obj = GetAsUInt16(); + if (DataType.TypeUInt16 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt32: + obj = GetAsUInt32(); + if (DataType.TypeUInt32 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt64: + obj = GetAsUInt64(); + if (DataType.TypeUInt64 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + default: + return GetAsString(); + } + } + catch (Exception) + { + return obj; + } + } + + public object GetValueInTargetArrayType(DataType targetType) + { + switch (targetType) + { + case DataType.TypeBool: + { + bool[] array14 = (bool[])GetAsBoolArray(); + if (array14 != null && array14.Length != 0) + { + return array14; + } + return Value; + } + case DataType.TypeByte: + { + byte[] array8 = (byte[])GetAsByteArray(); + if (array8 != null && array8.Length != 0) + { + return array8; + } + return Value; + } + case DataType.TypeDateTime: + { + DateTime[] array15 = (DateTime[])GetAsDateTimeArray(); + if (array15 != null && array15.Length != 0) + { + return array15; + } + return Value; + } + case DataType.TypeDouble: + { + double[] array11 = (double[])GetAsDoubleArray(); + if (array11 != null && array11.Length != 0) + { + return array11; + } + return Value; + } + case DataType.TypeDuration: + { + TimeSpan[] array6 = (TimeSpan[])GetAsDurationArray(); + if (array6 != null && array6.Length != 0) + { + return array6; + } + return Value; + } + case DataType.TypeFloat: + { + float[] array12 = (float[])GetAsFloatArray(); + if (array12 != null && array12.Length != 0) + { + return array12; + } + return Value; + } + case DataType.TypeGuid: + { + Guid[] array10 = (Guid[])GetAsGuidArray(); + if (array10 != null && array10.Length != 0) + { + return array10; + } + return Value; + } + case DataType.TypeInt16: + { + short[] array3 = (short[])GetAsInt16Array(); + if (array3 != null && array3.Length != 0) + { + return array3; + } + return Value; + } + case DataType.TypeInt32: + { + int[] array4 = (int[])GetAsInt32Array(); + if (array4 != null && array4.Length != 0) + { + return array4; + } + return Value; + } + case DataType.TypeInt64: + { + long[] array7 = (long[])GetAsInt64Array(); + if (array7 != null && array7.Length != 0) + { + return array7; + } + return Value; + } + case DataType.TypeSByte: + { + sbyte[] array2 = (sbyte[])GetAsSByteArray(); + if (array2 != null && array2.Length != 0) + { + return array2; + } + return Value; + } + case DataType.TypeUInt16: + { + ushort[] array13 = (ushort[])GetAsUInt16Array(); + if (array13 != null && array13.Length != 0) + { + return array13; + } + return Value; + } + case DataType.TypeUInt32: + { + uint[] array9 = (uint[])GetAsUInt32Array(); + if (array9 != null && array9.Length != 0) + { + return array9; + } + return Value; + } + case DataType.TypeUInt64: + { + ulong[] array5 = (ulong[])GetAsUInt64Array(); + if (array5 != null && array5.Length != 0) + { + return array5; + } + return Value; + } + case DataType.TypeUnknown: + return Value; + default: + { + string[] array = (string[])GetAsStringArray(); + if (array != null && array.Length != 0) + { + return array; + } + return Value; + } + } + } + + private static object GetValueInTargetType(DataType targetType, object retValue) + { + return targetType switch + { + DataType.TypeBool => Convert.ChangeType(retValue, typeof(bool)), + DataType.TypeByte => Convert.ChangeType(retValue, typeof(byte)), + DataType.TypeDateTime => Convert.ChangeType(retValue, typeof(DateTime)), + DataType.TypeDouble => Convert.ChangeType(retValue, typeof(double)), + DataType.TypeDuration => Convert.ChangeType(retValue, typeof(long)), + DataType.TypeFloat => Convert.ChangeType(retValue, typeof(float)), + DataType.TypeGuid => Convert.ChangeType(retValue, typeof(Guid)), + DataType.TypeInt16 => Convert.ChangeType(retValue, typeof(short)), + DataType.TypeInt32 => Convert.ChangeType(retValue, typeof(int)), + DataType.TypeInt64 => Convert.ChangeType(retValue, typeof(long)), + DataType.TypeSByte => Convert.ChangeType(retValue, typeof(sbyte)), + DataType.TypeUInt16 => Convert.ChangeType(retValue, typeof(ushort)), + DataType.TypeUInt32 => Convert.ChangeType(retValue, typeof(uint)), + DataType.TypeUInt64 => Convert.ChangeType(retValue, typeof(ulong)), + _ => Convert.ChangeType(retValue, typeof(string)), + }; + } + + public object GetArrayValue(DataType targetType) + { + object obj = new object(); + try + { + return GetValueInTargetArrayType(targetType); + } + catch (Exception) + { + return null; + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsEnum() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() == 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeEnum: + { + CustomEnum customEnum = default(CustomEnum); + int num = 0; + int num2 = 0; + customEnum.ordinal = BitConverter.ToInt16(Value.Payload, num); + num += 2; + num2 = BitConverter.ToInt32(Value.Payload, num) * 2; + num += 4; + customEnum.OrdinalValue = Encoding.Unicode.GetString(Value.Payload, num, num2); + obj = customEnum; + break; + } + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (CustomEnum)Convert.ChangeType(obj, typeof(CustomEnum)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public Array GetAsGenericArray() + { + Type type = CalculateVariableType(); + if (type == null) + { + return new uint[0]; + } + int num = 0; + uint num2 = BitConverter.ToUInt32(Value.Payload, num); + num += 4; + int[] array = new int[num2]; + int[] array2 = new int[num2]; + for (int i = 0; i < num2; i++) + { + array[i] = (int)BitConverter.ToUInt32(Value.Payload, num); + num += 4; + array2[i] = 0; + } + Array array3 = Array.CreateInstance(type, array); + UnpackArray(Value.Payload, ref num, array3, array2, 0); + return array3; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private Type CalculateVariableType() + { + return GetVariantType() switch + { + DataType.TypeByteArray => typeof(byte), + DataType.TypeCharArray => typeof(char), + DataType.TypeInt16Array => typeof(short), + DataType.TypeUInt16Array => typeof(ushort), + DataType.TypeInt32Array => typeof(int), + DataType.TypeUInt32Array => typeof(uint), + DataType.TypeInt64Array => typeof(long), + DataType.TypeUInt64Array => typeof(ulong), + DataType.TypeFloatArray => typeof(float), + DataType.TypeDoubleArray => typeof(double), + DataType.TypeStringArray => typeof(string), + DataType.TypeDateTimeArray => typeof(DateTime), + DataType.TypeGuidArray => typeof(Guid), + DataType.TypeByteStringArray => typeof(byte[]), + DataType.TypeBoolArray => typeof(bool), + DataType.TypeSByteArray => typeof(sbyte), + _ => null, + }; + } + + private static void UnpackArray(byte[] Payload, ref int PayloadIndex, Array valueArray, int[] DimensionIndices, int Dimension) + { + if (Dimension == DimensionIndices.Count() - 1) + { + Type elementType = valueArray.GetType().GetElementType(); + for (int i = 0; i < valueArray.GetLength(Dimension); i++) + { + DimensionIndices[Dimension] = i; + UnpackArrayElement(Payload, ref PayloadIndex, elementType, valueArray, DimensionIndices); + } + } + else + { + for (int j = 0; j < valueArray.GetLength(Dimension); j++) + { + DimensionIndices[Dimension] = j; + UnpackArray(Payload, ref PayloadIndex, valueArray, DimensionIndices, Dimension + 1); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static void UnpackArrayElement(byte[] Payload, ref int PayloadIndex, Type valueType, Array valueArray, int[] DimensionIndices) + { + if (Payload != null && valueArray != null) + { + if (valueType == typeof(bool)) + { + valueArray.SetValue(Payload[PayloadIndex] != 0, DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(sbyte)) + { + valueArray.SetValue(Payload[PayloadIndex], DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(byte)) + { + valueArray.SetValue(Payload[PayloadIndex], DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(ushort)) + { + valueArray.SetValue(BitConverter.ToUInt16(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 2; + } + else if (valueType == typeof(uint)) + { + valueArray.SetValue(BitConverter.ToUInt32(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(ulong)) + { + valueArray.SetValue(BitConverter.ToUInt64(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(short)) + { + valueArray.SetValue(BitConverter.ToInt16(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 2; + } + else if (valueType == typeof(int)) + { + valueArray.SetValue(BitConverter.ToInt32(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(long)) + { + valueArray.SetValue(BitConverter.ToInt64(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(float)) + { + valueArray.SetValue(BitConverter.ToSingle(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(double)) + { + valueArray.SetValue(BitConverter.ToDouble(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(string)) + { + uint count = BitConverter.ToUInt32(Payload, PayloadIndex); + PayloadIndex += 4; + char[] chars = new UnicodeEncoding().GetChars(Payload, PayloadIndex, (int)count); + valueArray.SetValue(new string(chars), DimensionIndices); + } + else if (valueType == typeof(DateTime)) + { + long ticks = BitConverter.ToInt32(Payload, PayloadIndex); + PayloadIndex += 4; + valueArray.SetValue(new DateTime(ticks), DimensionIndices); + } + else if (valueType == typeof(Guid)) + { + byte[] array = new byte[16]; + Array.Copy(Payload, PayloadIndex, array, 0, 16); + PayloadIndex += 16; + Guid guid = new Guid(array); + valueArray.SetValue(guid, DimensionIndices); + } + else if (valueType == typeof(byte[])) + { + uint num = BitConverter.ToUInt32(Payload, PayloadIndex); + PayloadIndex += 4; + byte[] array2 = new byte[num]; + Array.Copy(Payload, PayloadIndex, array2, 0L, num); + PayloadIndex += (int)num; + valueArray.SetValue(array2, DimensionIndices); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt32Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + if (Value.Payload.Count() >= 4) + { + int[] array2 = new int[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt32(Value.Payload, num); + num += 4; + num2++; + } + return array2; + } + return new int[0]; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + int[] array3 = new int[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (int)Convert.ChangeType(array.GetValue(i), typeof(int)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsByteArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + if (Value.Payload.Count() >= 1) + { + return Value.Payload; + } + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + byte[] array2 = new byte[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (byte)Convert.ChangeType(array.GetValue(i), typeof(byte)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public char[] GetAsCharArray() + { + if (Value.Payload.Count() >= 2) + { + char[] array = new char[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array[num2] = BitConverter.ToChar(Value.Payload, num); + num += 2; + num2++; + } + return array; + } + return new char[0]; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt16Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + if (Value.Payload.Count() >= 2) + { + short[] array2 = new short[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt16(Value.Payload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + short[] array3 = new short[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (short)Convert.ChangeType(array.GetValue(i), typeof(short)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt16Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + if (Value.Payload.Count() >= 2) + { + ushort[] array2 = new ushort[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt16(Value.Payload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + ushort[] array3 = new ushort[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ushort)Convert.ChangeType(array.GetValue(i), typeof(ushort)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt32Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + if (Value.Payload.Count() >= 4) + { + uint[] array2 = new uint[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt32(Value.Payload, num); + num += 4; + num2++; + } + array = array2; + } + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + uint[] array3 = new uint[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (uint)Convert.ChangeType(array.GetValue(i), typeof(uint)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt64Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + case DataType.TypeInt64Array: + case DataType.TypeDurationArray: + if (Value.Payload.Count() >= 8) + { + long[] array2 = new long[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt64(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + long[] array3 = new long[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (long)Convert.ChangeType(array.GetValue(i), typeof(long)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt64Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + if (Value.Payload.Count() >= 8) + { + ulong[] array2 = new ulong[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt64(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + ulong[] array3 = new ulong[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ulong)Convert.ChangeType(array.GetValue(i), typeof(ulong)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsFloatArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + if (Value.Payload.Count() >= 4) + { + float[] array2 = new float[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToSingle(Value.Payload, num); + num += 4; + num2++; + } + return array2; + } + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + float[] array3 = new float[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (float)Convert.ChangeType(array.GetValue(i), typeof(float)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDoubleArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + if (Value.Payload.Count() >= 8) + { + double[] array2 = new double[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToDouble(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + double[] array3 = new double[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (double)Convert.ChangeType(array.GetValue(i), typeof(double)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsStringArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeGuid: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeGuidArray: + case DataType.TypeLocalizedTextArray: + { + if (Value.Payload.Count() <= 4) + { + break; + } + Queue queue = new Queue(); + uint num = 0u; + int num2; + for (num2 = 0; num2 < Value.Length; num2 += (int)num) + { + num = BitConverter.ToUInt32(Value.Payload, num2); + if (num2 + num >= Value.Length) + { + break; + } + num2 += 4; + queue.Enqueue(Encoding.Unicode.GetString(Value.Payload, num2, (int)num)); + } + return queue.ToArray(); + } + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + } + if (array != null) + { + string[] array2 = new string[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (string)Convert.ChangeType(array.GetValue(i), typeof(string)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDateTimeArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + if (Value.Payload.Count() >= 8) + { + DateTime[] array2 = new DateTime[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + long fileTime = BitConverter.ToInt64(Value.Payload, num); + array2[num2] = DateTime.FromFileTimeUtc(fileTime); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + DateTime[] array3 = new DateTime[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (DateTime)Convert.ChangeType(array.GetValue(i), typeof(DateTime)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDurationArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + if (Value.Payload.Count() >= 8) + { + TimeSpan[] array2 = new TimeSpan[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + long value = BitConverter.ToInt64(Value.Payload, num); + array2[num2] = TimeSpan.FromTicks(value); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + TimeSpan[] array3 = new TimeSpan[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (TimeSpan)Convert.ChangeType(array.GetValue(i), typeof(TimeSpan)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsGuidArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + if (Value.Payload.Count() > 4) + { + string[] array2 = (string[])GetAsStringArray(); + Guid[] array3 = new Guid[array2.Length]; + for (int i = 0; i < array2.Length; i++) + { + array3[i] = new Guid(array2[i]); + } + return array3; + } + break; + } + if (array != null) + { + Guid[] array4 = new Guid[array.Length]; + for (int j = 0; j < array4.Length; j++) + { + try + { + if (array.GetValue(j).GetType() == typeof(string)) + { + string g = (string)array.GetValue(j); + array4[j] = new Guid(g); + } + else + { + array4[j] = (Guid)Convert.ChangeType(array.GetValue(j), typeof(Guid)); + } + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array4; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsBoolArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + if (Value.Payload.Count() >= 1) + { + bool[] array2 = new bool[Value.Length / 1]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToBoolean(Value.Payload, num); + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + bool[] array3 = new bool[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (bool)Convert.ChangeType(array.GetValue(i), typeof(bool)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsSByteArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + if (Value.Payload.Count() >= 1) + { + sbyte[] array2 = new sbyte[Value.Length]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = (sbyte)Value.Payload[num]; + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + sbyte[] array3 = new sbyte[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (sbyte)Convert.ChangeType(array.GetValue(i), typeof(sbyte)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return new sbyte[0]; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsEnumArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + case DataType.TypeEnum: + case DataType.TypeEnumArray: + { + int num = 0; + List list = new List(); + int num2; + for (num2 = 0; num2 < Value.Length; num2 += num) + { + CustomEnum item = new CustomEnum + { + ordinal = BitConverter.ToInt16(Value.Payload, num2) + }; + num2 += 2; + num = BitConverter.ToInt32(Value.Payload, num2) * 2; + if (num2 + num >= Value.Payload.Length) + { + break; + } + num2 += 4; + item.OrdinalValue = Encoding.Unicode.GetString(Value.Payload, num2, num); + list.Add(item); + } + array = list.ToArray(); + break; + } + } + if (array != null) + { + CustomEnum[] array2 = new CustomEnum[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (CustomEnum)Convert.ChangeType(array.GetValue(i), typeof(CustomEnum)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/WriteCapabilityType.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/WriteCapabilityType.cs new file mode 100644 index 0000000..b4c42a7 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/WriteCapabilityType.cs @@ -0,0 +1,10 @@ +namespace ArchestrAServices.Contract; + +public enum WriteCapabilityType : ushort +{ + WriteUnknown = 0, + WriteNonsecure = 1, + WriteUser = 2, + WriteConfirm = 4, + WriteVerify = 8 +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/WriteValue.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/WriteValue.cs new file mode 100644 index 0000000..ed65c43 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Contract/WriteValue.cs @@ -0,0 +1,23 @@ +using System; +using System.Runtime.Serialization; + +namespace ArchestrAServices.Contract; + +[DataContract(Namespace = "http://ArchestrAServices.Contract")] +public struct WriteValue +{ + [DataMember] + public byte HasQT; + + [DataMember] + public Variant Value; + + [DataMember] + public ASBStatus Status; + + [DataMember] + public DateTime Timestamp; + + [DataMember] + public string Comment; +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Proxy/ASBSolutionManager.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Proxy/ASBSolutionManager.cs new file mode 100644 index 0000000..eecb92b --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Proxy/ASBSolutionManager.cs @@ -0,0 +1,103 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.ServiceModel.Discovery; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.Proxy; + +public class ASBSolutionManager +{ + public static string ASBSolutionScope = "archestra://asb/" + ("archestra://asb/".EndsWith("/") ? string.Empty : "/") + "asbsolution/"; + + public static string CoreServiceSolutionScope = "archestra://coreservices" + ("archestra://coreservices".EndsWith("/") ? string.Empty : "/") + "asbsolution/"; + + public string GetASBSolutionPassphrase(EndpointDiscoveryMetadata DiscoveryMetadata, out string errorMessage) + { + string aSBSolutionName = GetASBSolutionName(DiscoveryMetadata, out errorMessage); + if (string.IsNullOrEmpty(aSBSolutionName)) + { + errorMessage = RegistryHandler.GetSolutionPassphrase(aSBSolutionName, out var passphrase); + return passphrase; + } + return GetASBSolutionPassphrase(aSBSolutionName, out errorMessage); + } + + public string GetASBSolutionName(EndpointDiscoveryMetadata DiscoveryMetadata, out string errorMessage) + { + errorMessage = string.Empty; + string text = ASBSolutionScope.ToLower(); + string text2 = CoreServiceSolutionScope.ToLower(); + foreach (Uri scope in DiscoveryMetadata.Scopes) + { + string text3 = string.Empty; + string text4 = scope.AbsoluteUri.ToString().ToLower(); + if (text4.StartsWith(text)) + { + text3 = scope.AbsoluteUri.ToString().Substring(text.Length); + } + if (text4.StartsWith(text2)) + { + text3 = scope.AbsoluteUri.ToString().Substring(text2.Length); + } + if (!string.IsNullOrEmpty(text3)) + { + if (text3.StartsWith("/")) + { + text3 = text3.Substring(1); + } + if (text3.EndsWith("/")) + { + text3 = text3.Substring(0, text3.Length - 1); + } + return text3; + } + } + errorMessage = "GetASBSolutionName unable to find solution name in scopes provided in DiscoveryMetadata"; + return string.Empty; + } + + public string GetASBSolutionPassphrase(string SolutionName, out string errorMessage) + { + errorMessage = string.Empty; + errorMessage = RegistryHandler.GetSolutionPassphrase(SolutionName, out var passphrase); + if (string.IsNullOrEmpty(errorMessage)) + { + return passphrase; + } + using (ManageASBSecurityProxy manageASBSecurityProxy = new ManageASBSecurityProxy(string.Empty)) + { + if (!manageASBSecurityProxy.Connect(string.Empty, out errorMessage)) + { + errorMessage = "GetASBSolutionPassphrase(" + SolutionName + ") failed to connect to default SR node on ASB endpoint: " + errorMessage; + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"GetASBSolutionPassphrase: failed to connect to default SR node on ASB endpoint: {errorMessage}"); + } + if (string.IsNullOrEmpty(errorMessage)) + { + SystemAuthenticationASBConfiguration ConfigurationData = default(SystemAuthenticationASBConfiguration); + string XMLExtraInfo = string.Empty; + ArchestrAResult serviceBusPlatformConfiguration = manageASBSecurityProxy.GetServiceBusPlatformConfiguration(out ConfigurationData, out XMLExtraInfo, default(Guid), string.IsNullOrEmpty(SolutionName) ? "Register/" : SolutionName); + if (serviceBusPlatformConfiguration.Status == 0) + { + errorMessage = ASBSolutionUtilities.WriteSecurityInformationInRegistry(ConfigurationData, XMLExtraInfo); + } + else + { + errorMessage = "Failed to get SecurityConfiguration from SystemAuthentication service with Status = " + serviceBusPlatformConfiguration.Status; + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"GetASBSolutionPassphrase: Failed to get SecurityConfiguration from SystemAuthentication service with Status: {serviceBusPlatformConfiguration.Status.ToString()}"); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"GetASBSolutionPassphrase: cannot continue: {errorMessage}"); + } + errorMessage = RegistryHandler.GetSolutionPassphrase(SolutionName, out passphrase); + if (!string.IsNullOrEmpty(errorMessage)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, $"GetASBSolutionPassphrase: After retrieving solution {SolutionName}, cannot find passphrase: {errorMessage}'"); + } + } + return passphrase; + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Proxy/ManageASBSecurityProxy.cs b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Proxy/ManageASBSecurityProxy.cs new file mode 100644 index 0000000..8d46fd8 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/ArchestrAServices.Proxy/ManageASBSecurityProxy.cs @@ -0,0 +1,701 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.Linq; +using System.Net; +using System.Reflection; +using System.Security.Cryptography.X509Certificates; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Discovery; +using System.ServiceModel.Security; +using System.Threading; +using System.Threading.Tasks; +using System.Xml; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.Proxy; + +public class ManageASBSecurityProxy : IDisposable +{ + public class ConnectionDelegate + { + private IManageASBSecurity securityClientField; + + private ConnectionDelegate() + { + securityClientField = null; + } + + public ConnectionDelegate(IManageASBSecurity securityClient) + { + securityClientField = securityClient; + } + + public ArchestrAResult CallConnect(out Connection connection, string application, string domain, string host, ArchestrAServices.Contract.PublicKey clientToken) + { + if (securityClientField != null) + { + try + { + return securityClientField.Connect(out connection, application, domain, host, clientToken); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: CallConnect delegate caught exception {0}", ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + connection = default(Connection); + return ResultFactory.MakeResult(ArchestrAError.OperationFailed, 0); + } + + public ArchestrAResult CallActivate(ConnectionId connection, ConnectionAuthenticationData authentication, ulong timeout) + { + ArchestrAResult result = ResultFactory.MakeResult(ArchestrAError.OperationFailed, 0); + if (securityClientField != null) + { + try + { + result = securityClientField.ActivateSession(connection, authentication, timeout); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: CallActivate delegate caught exception {0}", ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + return result; + } + + public ArchestrAResult CallDisconnect(ConnectionId id) + { + ArchestrAResult result = ResultFactory.MakeResult(ArchestrAError.OperationFailed, 0); + if (securityClientField != null) + { + try + { + result = securityClientField.Disconnect(id); + } + catch (CommunicationException ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASBSecurity Proxy: ConnectionDelegate::CallDisconnect delegate caught communication exception {0}", ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, " {0}", ex.InnerException.Message); + } + } + catch (Exception ex2) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: ConnectionDelegate::CallDisconnect delegate caught exception {0}", ex2.Message); + if (ex2.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex2.InnerException.Message); + } + } + } + return result; + } + } + + private string m_SrbNodeName; + + private ChannelFactory securityProxyFactory; + + private IManageASBSecurity manageASBSecurityClient; + + private object connectionLock; + + private ManualResetEvent connectionEstablishedEvent; + + private ClientAuthentication authenticater; + + private ConnectionId securityConnectionId; + + private List accumulatedErrorMsg; + + private object errorMsgLock; + + public bool SecureSessionEstablished => authenticater.SecureSessionEstablished; + + public CommunicationState State + { + get + { + if (manageASBSecurityClient != null) + { + return ((IClientChannel)manageASBSecurityClient).State; + } + return CommunicationState.Closed; + } + } + + public string SRNodeName => m_SrbNodeName; + + public ManageASBSecurityProxy(string SrNode) + { + if (string.IsNullOrEmpty(SrNode)) + { + RegistryHandler.GetSrNode(out SrNode); + } + m_SrbNodeName = SrNode; + securityProxyFactory = null; + manageASBSecurityClient = null; + connectionLock = new object(); + securityConnectionId = default(ConnectionId); + } + + public bool Connect(string passphrase, out string errorMessage) + { + SecureCommunicationModes secureCommunicationMode = RegistryHandler.SecureCommunicationMode; + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Establishing connection for mode: {0}", new object[1] { secureCommunicationMode })); + bool flag; + switch (secureCommunicationMode) + { + case SecureCommunicationModes.Required: + flag = ConnectInternal(passphrase, secured: true, out errorMessage); + break; + case SecureCommunicationModes.Preferred: + flag = ConnectInternal(passphrase, secured: true, out errorMessage); + if (!flag) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Attempting the fallback connection for mode: {0}, reason: {1}", new object[2] { secureCommunicationMode, errorMessage })); + flag = ConnectInternal(passphrase, secured: false, out errorMessage); + } + break; + default: + flag = ConnectInternal(passphrase, secured: false, out errorMessage); + break; + } + if (flag) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, string.Format(CultureInfo.CurrentCulture, "Successfully connected for mode: {0}", new object[1] { secureCommunicationMode })); + } + return flag; + } + + private bool ConnectInternal(string passphrase, bool secured, out string errorMessage) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASBSecurity Proxy: Connect called, with {0} passphrase", string.IsNullOrEmpty(passphrase) ? "default" : "specific"); + errorMessage = string.Empty; + EndpointDiscoveryMetadata endpointDiscoveryMetadata = null; + FindResponse findResponse = FindPermanentEndPoint(m_SrbNodeName, useLocalHost: true, secured); + if (findResponse == null || findResponse.Endpoints == null || findResponse.Endpoints.Count == 0) + { + findResponse = FindPermanentEndPoint(m_SrbNodeName, useLocalHost: false, secured); + } + if (findResponse != null && findResponse.Endpoints != null && findResponse.Endpoints.Count != 0) + { + Random random = new Random(DateTime.Now.Millisecond); + endpointDiscoveryMetadata = findResponse.Endpoints[random.Next(findResponse.Endpoints.Count)]; + } + else if (findResponse != null) + { + if (findResponse.Endpoints != null) + { + if (findResponse.Endpoints.Count == 0) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASBSecurity Proxy: Connect found no endpoints for IManageASBSecurity on the SR node {0}", m_SrbNodeName); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: Connect FindResponse has a null Endpoints member finding IManageASBSecurity on the SR node {0}", m_SrbNodeName); + } + } + else + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASBSecurity Proxy: Connect null FindResponse finding IManageASBSecurity on the SR node {0}", m_SrbNodeName); + } + if (string.IsNullOrEmpty(passphrase)) + { + errorMessage = RegistryHandler.GetSolutionPassphrase(string.Empty, out passphrase); + if (!string.IsNullOrEmpty(errorMessage)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: Connect found problem getting solution passphrase: {0}", errorMessage); + return false; + } + } + if (endpointDiscoveryMetadata == null) + { + return false; + } + return ConnectParallel(passphrase, endpointDiscoveryMetadata.ListenUris, out errorMessage); + } + + public bool Connect(string passphrase, string temporaryEndpoint, out string errorMessage) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASBSecurity Proxy: Connect called, with {0} passphrase and temporary endpoint {1}", string.IsNullOrEmpty(passphrase) ? "default" : "specific", temporaryEndpoint); + errorMessage = string.Empty; + List list = new List(); + UriBuilder uriBuilder = new UriBuilder(temporaryEndpoint); + list.Add(uriBuilder.Uri); + if (uriBuilder.Port > 0) + { + uriBuilder.Port = -1; + list.Add(uriBuilder.Uri); + } + return ConnectParallel(passphrase, list, out errorMessage); + } + + private bool ConnectParallel(string passphrase, IEnumerable endpoints, out string errorMessage) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASBSecurity Proxy: ConnectParallel called, with {0} endpoints", endpoints.Count()); + foreach (Uri endpoint in endpoints) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, " {0}", endpoint); + } + errorMessage = string.Empty; + bool result = false; + lock (connectionLock) + { + securityProxyFactory = null; + manageASBSecurityClient = null; + securityConnectionId = default(ConnectionId); + authenticater = null; + } + if (manageASBSecurityClient != null) + { + if (((IClientChannel)manageASBSecurityClient).State == CommunicationState.Opened || ((IClientChannel)manageASBSecurityClient).State == CommunicationState.Opening) + { + ((IClientChannel)manageASBSecurityClient).Close(); + } + else if (((IClientChannel)manageASBSecurityClient).State == CommunicationState.Faulted) + { + ((IClientChannel)manageASBSecurityClient).Abort(); + } + manageASBSecurityClient = null; + } + if (securityProxyFactory != null) + { + if (securityProxyFactory.State == CommunicationState.Opened || securityProxyFactory.State == CommunicationState.Opening) + { + securityProxyFactory.Close(); + } + securityProxyFactory = null; + } + connectionEstablishedEvent = new ManualResetEvent(initialState: false); + accumulatedErrorMsg = new List(); + errorMsgLock = new object(); + foreach (Uri endpoint2 in endpoints) + { + string SelectedEndpointUri = endpoint2.ToString(); + Task.Factory.StartNew(delegate + { + bool num = SelectedEndpointUri.EndsWith("/ASBSecurityS", StringComparison.OrdinalIgnoreCase) || SelectedEndpointUri.EndsWith("/RegistrationS", StringComparison.OrdinalIgnoreCase) || SelectedEndpointUri.EndsWith("/PairingS", StringComparison.OrdinalIgnoreCase); + EndpointAddress systemAuthenticationEndpoint = new EndpointAddress(SelectedEndpointUri); + Binding binding = SvcUtilities.GetBinding(SelectedEndpointUri); + if (num) + { + Uri uri = new Uri(SelectedEndpointUri); + IPHostEntry hostEntry = Dns.GetHostEntry(uri.Host); + systemAuthenticationEndpoint = new EndpointAddress(uri, EndpointIdentity.CreateDnsIdentity(hostEntry.HostName)); + binding = SvcUtilities.GetBinding(SelectedEndpointUri, NetTcpBindingSecurityMode.CertificateEncryption); + } + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Try connecting with IManageASBSecurity endpoint {0}", SelectedEndpointUri); + if (InternalConnect(systemAuthenticationEndpoint, binding, passphrase, out var errorMessage2)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Connected to IManageASBSecurity endpoint {0}", SelectedEndpointUri); + } + else if (!string.IsNullOrEmpty(errorMessage2)) + { + lock (errorMsgLock) + { + accumulatedErrorMsg.Add(errorMessage2); + } + } + }); + } + connectionEstablishedEvent.WaitOne(20000); + connectionEstablishedEvent.Dispose(); + connectionEstablishedEvent = null; + lock (connectionLock) + { + result = true; + if (securityProxyFactory == null) + { + foreach (string item in accumulatedErrorMsg) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, item); + } + result = false; + } + } + return result; + } + + private bool InternalConnect(EndpointAddress systemAuthenticationEndpoint, Binding binding, string passphrase, out string errorMessage) + { + bool result = false; + errorMessage = string.Empty; + if (systemAuthenticationEndpoint != null && binding != null) + { + try + { + ChannelFactory channelFactory = new ChannelFactory(binding, systemAuthenticationEndpoint); + if (binding is NetTcpBinding netTcpBinding && netTcpBinding.Security.Mode == SecurityMode.Transport && channelFactory.Credentials != null) + { + channelFactory.Credentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.ChainTrust; + channelFactory.Credentials.ServiceCertificate.Authentication.RevocationMode = X509RevocationMode.NoCheck; + } + channelFactory.Open(); + IManageASBSecurity manageASBSecurity = channelFactory.CreateChannel(); + if (manageASBSecurity != null) + { + ((IClientChannel)manageASBSecurity).Open(); + if (manageASBSecurity != null && ((IClientChannel)manageASBSecurity).State != CommunicationState.Faulted) + { + ConnectionDelegate connectionDelegate = new ConnectionDelegate(manageASBSecurity); + ClientAuthentication clientAuthentication = new ClientAuthentication(); + if (!string.IsNullOrEmpty(passphrase)) + { + clientAuthentication.DH_passphrase = passphrase; + } + clientAuthentication.EstablishSecureSession("SystemAuthenticationService", "localdomain", Environment.MachineName, connectionDelegate.CallConnect, connectionDelegate.CallActivate); + if (clientAuthentication.SecureSessionEstablished) + { + bool flag = false; + lock (connectionLock) + { + if (securityProxyFactory == null) + { + flag = true; + securityProxyFactory = channelFactory; + manageASBSecurityClient = manageASBSecurity; + securityConnectionId = clientAuthentication.connectionId; + authenticater = clientAuthentication; + if (connectionEstablishedEvent != null) + { + connectionEstablishedEvent.Set(); + } + } + } + if (!flag) + { + clientAuthentication.DisconnectSecureSession(connectionDelegate.CallDisconnect); + if (manageASBSecurity != null) + { + ((IClientChannel)manageASBSecurity).Close(); + ((IClientChannel)manageASBSecurity).Dispose(); + } + } + result = flag; + } + else + { + if (manageASBSecurity != null) + { + ((IClientChannel)manageASBSecurity).Abort(); + ((IClientChannel)manageASBSecurity).Dispose(); + } + if (!string.IsNullOrEmpty(authenticater.ReasonSecureSessionNotEstablished)) + { + errorMessage = "ManageASBSecurityProxy failed to establish secure session: " + authenticater.ReasonSecureSessionNotEstablished; + } + else + { + errorMessage = "ManageASBSecurityProxy failed to establish secure session"; + } + } + } + else + { + errorMessage = "ManageASBSecurityProxy: InternalConnect could not connect with proxy object"; + } + } + } + catch (CommunicationException ex) + { + errorMessage = "ManageASBSecurityProxy caught CommunicationException opening channel: " + ex.Message; + if (ex.InnerException != null) + { + errorMessage += ex.InnerException.Message; + } + } + catch (TimeoutException ex2) + { + errorMessage = "ManageASBSecurityProxy caught TimeoutException opening channel: " + ex2.Message; + if (ex2.InnerException != null) + { + errorMessage += ex2.InnerException.Message; + } + } + catch (Exception ex3) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "ManageASBSecurityProxy: InternalConnect caught exception {0}, {1}", ex3.Message, ex3.StackTrace); + if (ex3.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, " {0}", ex3.InnerException.Message); + } + errorMessage = "ManageASBSecurityProxy: InternalConnect caught exception: " + ex3.Message; + result = false; + } + } + return result; + } + + public void Disconnect() + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Proxy Disconnect called, client connection closing"); + if (authenticater != null) + { + authenticater.DisconnectSecureSession(CallDisconnect); + authenticater = null; + } + if (manageASBSecurityClient != null) + { + ((IClientChannel)manageASBSecurityClient).Close(); + manageASBSecurityClient = null; + } + if (securityProxyFactory != null) + { + if (securityProxyFactory.State == CommunicationState.Opened || securityProxyFactory.State == CommunicationState.Opening) + { + securityProxyFactory.Close(); + } + securityProxyFactory = null; + } + } + + public ArchestrAResult EnumerateSolutions(out string[] SolutionNames) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.EnumerateSolutions(out SolutionNames, securityConnectionId); + } + SolutionNames = new string[0]; + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + public ArchestrAResult GetRegistrationEndpointStatus(out StatusTemporaryEndpoint[] ConfigurationData) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.GetRegistrationEndpointStatus(out ConfigurationData, securityConnectionId); + } + ConfigurationData = new StatusTemporaryEndpoint[0]; + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + public ArchestrAResult GetServiceBusPlatformConfiguration(out SystemAuthenticationASBConfiguration ConfigurationData, out string XMLExtraInfo, Guid NodeId, string SolutionName) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.GetServiceBusPlatformConfiguration(out ConfigurationData, out XMLExtraInfo, securityConnectionId, NodeId, SolutionName); + } + ConfigurationData = default(SystemAuthenticationASBConfiguration); + XMLExtraInfo = string.Empty; + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + public ArchestrAResult QueryExtraInfoChanges(out string XMLExtraInfo, string NodeId) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.QueryExtraInfoChanges(out XMLExtraInfo, securityConnectionId, NodeId); + } + XMLExtraInfo = string.Empty; + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + public ArchestrAResult RegisterServiceBusEnable(SystemAuthenticationASBConfiguration ConfigurationData) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.RegisterServiceBusEnable(securityConnectionId, ConfigurationData); + } + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + public ArchestrAResult RegisterServiceBusPlatformId(Guid NodeId) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.RegisterServiceBusPlatformId(securityConnectionId, NodeId); + } + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + public ArchestrAResult RegisterSystemAuthenticationConfiguration(SystemAuthenticationASBConfiguration ConfigurationData, string XMLExtraInfo) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.RegisterSystemAuthenticationConfiguration(securityConnectionId, ConfigurationData, XMLExtraInfo); + } + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + public ArchestrAResult UnregisterSystemAuthenticationConfiguration(string SolutionName) + { + if (manageASBSecurityClient != null) + { + return manageASBSecurityClient.UnregisterSystemAuthenticationConfiguration(securityConnectionId, SolutionName); + } + return ResultFactory.MakeResult(ArchestrAError.InvalidConnectionId, 0); + } + + private ArchestrAResult CallConnect(out Connection connection, string application, string domain, string host, ArchestrAServices.Contract.PublicKey clientToken) + { + if (manageASBSecurityClient != null) + { + try + { + return manageASBSecurityClient.Connect(out connection, application, domain, host, clientToken); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: CallConnect delegate caught exception {0}", ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + connection = default(Connection); + return ResultFactory.MakeResult(ArchestrAError.OperationFailed, 0); + } + + private ArchestrAResult CallActivate(ConnectionId connection, ConnectionAuthenticationData authentication, ulong timeout) + { + ArchestrAResult result = ResultFactory.MakeResult(ArchestrAError.OperationFailed, 0); + if (manageASBSecurityClient != null) + { + try + { + result = manageASBSecurityClient.ActivateSession(connection, authentication, timeout); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: CallActivate delegate caught exception {0}", ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + return result; + } + + private ArchestrAResult CallDisconnect(ConnectionId id) + { + ArchestrAResult result = ResultFactory.MakeResult(ArchestrAError.OperationFailed, 0); + if (manageASBSecurityClient != null) + { + try + { + result = manageASBSecurityClient.Disconnect(securityConnectionId); + } + catch (CommunicationException ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASBSecurity Proxy: CallDisconnect delegate caught exception {0}", ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, " {0}", ex.InnerException.Message); + } + } + catch (Exception ex2) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ASBSecurity Proxy: CallDisconnect delegate caught exception {0}", ex2.Message); + if (ex2.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex2.InnerException.Message); + } + } + } + return result; + } + + private static FindResponse FindPermanentEndPoint(string srNode, bool useLocalHost, bool secured) + { + FindResponse result = null; + try + { + Uri uri = RegistryHandler.MakeLDSProbeEndpointAddress(useLocalHost ? "localhost" : srNode); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindPermanentEndPoint generated LDS endpoint for SR Node {srNode}: {uri.AbsoluteUri}"); + using DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(uri.AbsoluteUri), new EndpointAddress(uri))); + discoveryClient.Open(); + if (discoveryClient.InnerChannel.State == CommunicationState.Opened) + { + result = discoveryClient.Find(GenerateCriteria(srNode, secured)); + discoveryClient.Close(); + } + else + { + discoveryClient.InnerChannel.Abort(); + } + } + catch (TargetInvocationException ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindPermanentEndPoint({srNode}) TargetInvocationException: {ex.Message}"); + if (ex.InnerException != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $" {ex.InnerException.Message}"); + } + result = null; + } + catch (ObjectDisposedException ex2) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindPermanentEndPoint({srNode}) ObjectDisposedException: {ex2.Message}"); + if (ex2.InnerException != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $" {ex2.InnerException.Message}"); + } + result = null; + } + catch (Exception ex3) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"FindPermanentEndPoint({srNode}) Exception: {ex3.Message}"); + if (ex3.InnerException != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $" {ex3.InnerException.Message}"); + } + result = null; + } + return result; + } + + private static FindCriteria GenerateCriteria(string srNode, bool secure) + { + FindCriteria findCriteria = new FindCriteria(); + XmlQualifiedName item = new XmlQualifiedName(secure ? "IManageASBSecurityS" : "IManageASBSecurity", "http://ArchestrAServices.Contract"); + findCriteria.ContractTypeNames.Add(item); + findCriteria.Scopes.Clear(); + findCriteria.Scopes.Add(new Uri("archestra://coreservices/nodename/" + srNode.ToLower())); + return findCriteria; + } + + protected virtual void Dispose(bool disposing) + { + if (!disposing) + { + return; + } + if (manageASBSecurityClient != null) + { + if (authenticater.SecureSessionEstablished) + { + Disconnect(); + } + IClientChannel obj = manageASBSecurityClient as IClientChannel; + obj?.Close(); + obj?.Dispose(); + } + connectionEstablishedEvent?.Close(); + connectionEstablishedEvent = null; + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } +} diff --git a/analysis/decompiled/aaServicesCommonDataContracts/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesCommonDataContracts/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..e7e3932 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/Properties/AssemblyInfo.cs @@ -0,0 +1,18 @@ +using System; +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: CLSCompliant(false)] +[assembly: InternalsVisibleTo("Common.DataContracts.Test, PublicKey = 0024000004800000940000000602000000240000525341310004000001000100a79fb5ce9af5b80294b8b7ae7b476bcbf30b0713351655b2170195cd14acd8ed1462df1ab3a167d5463bd76a6151dd1766b94c350994d233a7024266591ee249882a4ee9c9e4de90dcd4c3762f274652cabac4a99704a9073872505b090f638e1a0827aeac9ff572d93d1a7800669dc0ce920817bd5aa5d70bacb7df88b4fdb3")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyDescription("ASB Services Common.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("aaServicesCommonDataContracts")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesCommonDataContracts/aaServicesCommonDataContracts.csproj b/analysis/decompiled/aaServicesCommonDataContracts/aaServicesCommonDataContracts.csproj new file mode 100644 index 0000000..90070ca --- /dev/null +++ b/analysis/decompiled/aaServicesCommonDataContracts/aaServicesCommonDataContracts.csproj @@ -0,0 +1,24 @@ + + + aaServicesCommonDataContracts + False + net40 + + + 14.0 + True + False + + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/PipeClient.cs b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/PipeClient.cs new file mode 100644 index 0000000..f856aba --- /dev/null +++ b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/PipeClient.cs @@ -0,0 +1,52 @@ +using System; +using System.IO.Pipes; +using System.Text; + +namespace ArchestrAServices.Common.Resolution; + +public class PipeClient : IDisposable +{ + private string _pipeName; + + private NamedPipeClientStream _pipeClient; + + private bool disposed; + + public PipeClient(string PipeName) + { + _pipeName = PipeName; + _pipeClient = new NamedPipeClientStream(".", _pipeName, PipeDirection.Out); + } + + public bool SendString(string Data) + { + _pipeClient.Connect(5000); + byte[] bytes = Encoding.UTF8.GetBytes(Data); + _pipeClient.Write(bytes, 0, bytes.Length); + _pipeClient.WaitForPipeDrain(); + return true; + } + + public void Dispose() + { + Dispose(freeManagedObjectsAlso: true); + GC.SuppressFinalize(this); + } + + protected virtual void Dispose(bool freeManagedObjectsAlso) + { + if (!disposed) + { + if (freeManagedObjectsAlso) + { + _pipeClient.Dispose(); + } + disposed = true; + } + } + + ~PipeClient() + { + Dispose(freeManagedObjectsAlso: false); + } +} diff --git a/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/PipeServer.cs b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/PipeServer.cs new file mode 100644 index 0000000..66382e0 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/PipeServer.cs @@ -0,0 +1,64 @@ +using System; +using System.IO.Pipes; +using System.Text; +using System.Threading; + +namespace ArchestrAServices.Common.Resolution; + +public class PipeServer : IDisposable +{ + private string _pipeName; + + private NamedPipeServerStream _pipeServer; + + private bool disposed; + + public PipeServer(string PipeName) + { + _pipeName = PipeName; + _pipeServer = new NamedPipeServerStream(_pipeName, PipeDirection.In, 1, PipeTransmissionMode.Message); + } + + public string ReadString() + { + _pipeServer.WaitForConnection(); + string result = string.Empty; + if (_pipeServer.IsConnected) + { + while (!_pipeServer.IsMessageComplete) + { + Thread.Sleep(50); + } + byte[] array = new byte[100]; + int num = _pipeServer.Read(array, 0, 100); + if (num > 0) + { + result = Encoding.UTF8.GetString(array, 0, num); + } + } + return result; + } + + public void Dispose() + { + Dispose(freeManagedObjectsAlso: true); + GC.SuppressFinalize(this); + } + + protected virtual void Dispose(bool freeManagedObjectsAlso) + { + if (!disposed) + { + if (freeManagedObjectsAlso) + { + _pipeServer.Dispose(); + } + disposed = true; + } + } + + ~PipeServer() + { + Dispose(freeManagedObjectsAlso: false); + } +} diff --git a/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/Resolution.cs b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/Resolution.cs new file mode 100644 index 0000000..6f5c2ad --- /dev/null +++ b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/Resolution.cs @@ -0,0 +1,182 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Net.NetworkInformation; +using System.Net.Sockets; +using System.ServiceModel.Discovery; + +namespace ArchestrAServices.Common.Resolution; + +public class Resolution +{ + private static string MostRecentIPAddressFromExe; + + [Obsolete("Use ArchestrAServices.Common.HostedService.Resolution.GetDiscoveryEndpointMetadata() instead.")] + public static EndpointDiscoveryMetadata GetDiscoveryEndpointMetada(EndpointDiscoveryMetadata metaData) + { + string errorMessage; + return GetDiscoveryEndpointMetada(metaData, out errorMessage); + } + + [Obsolete("Use ArchestrAServices.Common.HostedService.Resolution.GetDiscoveryEndpointMetadata() instead.")] + public static EndpointDiscoveryMetadata GetDiscoveryEndpointMetada(EndpointDiscoveryMetadata metaData, out string errorMessage) + { + errorMessage = string.Empty; + try + { + if (metaData != null) + { + string[] array = null; + NetworkInterface[] array2 = null; + try + { + array2 = NetworkInterface.GetAllNetworkInterfaces(); + } + catch (NetworkInformationException) + { + array2 = null; + } + if (array2 != null) + { + List list = new List(); + NetworkInterface[] array3 = array2; + foreach (NetworkInterface networkInterface in array3) + { + if (networkInterface.NetworkInterfaceType != NetworkInterfaceType.Ethernet) + { + continue; + } + foreach (UnicastIPAddressInformation unicastAddress in networkInterface.GetIPProperties().UnicastAddresses) + { + if (unicastAddress.Address.AddressFamily == AddressFamily.InterNetwork && unicastAddress.SuffixOrigin != SuffixOrigin.LinkLayerAddress) + { + if (unicastAddress.SuffixOrigin == SuffixOrigin.Manual || unicastAddress.SuffixOrigin == SuffixOrigin.OriginDhcp) + { + list.Insert(0, unicastAddress.Address.ToString()); + } + else + { + list.Add(unicastAddress.Address.ToString()); + } + } + } + } + list.Add(Environment.MachineName); + array = list.ToArray(); + } + UriBuilder uriBuilder = new UriBuilder(metaData.Address.Uri); + if (uriBuilder != null && !string.IsNullOrEmpty(uriBuilder.Host)) + { + metaData.ListenUris.Clear(); + string[] array4 = array; + foreach (string host in array4) + { + uriBuilder.Host = host; + Uri uri = uriBuilder.Uri; + metaData.ListenUris.Add(uri); + } + } + } + } + catch (Exception ex2) + { + errorMessage = "GetDiscoveryEndpointMetada: Exception " + ex2.Message; + } + return metaData; + } + + [Obsolete("Legacy method. No longer supported due to deprecated Win32 methods being used.")] + public static string ResolveIPAddress(string HostOrIP, out string errorMessage) + { + string empty = string.Empty; + errorMessage = string.Empty; + if (!Environment.Is64BitProcess) + { + try + { + empty = ResolveLocalIPAddr(HostOrIP, out errorMessage); + } + catch (Exception ex) + { + empty = string.Empty; + errorMessage = "ResolveIPAddress caught exception: " + ex.Message; + } + } + else + { + if (string.IsNullOrEmpty(MostRecentIPAddressFromExe)) + { + string text = Guid.NewGuid().ToString() + "_Resolution"; + using PipeServer pipeServer = new PipeServer(text); + if (File.Exists("aaASBResolveIP.exe")) + { + try + { + Process.Start("aaASBResolveIP.exe", text + " " + HostOrIP); + MostRecentIPAddressFromExe = pipeServer.ReadString(); + } + catch (Exception ex2) + { + errorMessage = $"ResolveIPAddress called in 64-bit process - exception starting or reading from helper process aaASBResolveIP.exe: {ex2.Message}"; + } + } + else + { + errorMessage = "ResolveIPAddress called in 64-bit process - could not find helper process aaASBResolveIP.exe, no resolution"; + } + } + empty = MostRecentIPAddressFromExe; + } + return empty; + } + + private unsafe static string ResolveLocalIPAddr(string HostOrIP, out string errorMessage) + { + WinSock.WSAData lpWSAData; + int num = WinSock.WSAStartup(514, out lpWSAData); + string result = string.Empty; + errorMessage = "Unknown failure in ResolveLocalIPAddr"; + if (num == 0) + { + int addr = WinSock.inet_addr(HostOrIP); + WinSock.hostent* ptr = null; + if (addr != -1) + { + int len = 4; + ptr = WinSock.gethostbyaddr(ref addr, len, ProtocolFamily.InterNetwork); + if (ptr == null) + { + result = string.Empty; + errorMessage = "ResolveLocalIPAddr: call to gethostbyaddr for IP address " + HostOrIP + " failed to resolve a hostent struct"; + } + } + else + { + ptr = WinSock.gethostbyname(HostOrIP); + if (ptr == null) + { + result = string.Empty; + errorMessage = "ResolveLocalIPAddr: call to gethostbyname for host name " + HostOrIP + " failed to resolve a hostent struct"; + } + } + if (ptr != null) + { + byte* h_addr_list = *ptr->h_addr_list; + int num2 = *h_addr_list; + int num3 = h_addr_list[1]; + int num4 = h_addr_list[2]; + int num5 = h_addr_list[3]; + result = $"{num2}.{num3}.{num4}.{num5}"; + errorMessage = string.Empty; + } + WinSock.WSACleanup(); + } + else + { + result = string.Empty; + errorMessage = "ResolveLocalIPAddr: unable to initialize WinSock, WSAStartup returned error"; + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/Validation.cs b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/Validation.cs new file mode 100644 index 0000000..1707bab --- /dev/null +++ b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/Validation.cs @@ -0,0 +1,6 @@ +namespace ArchestrAServices.Common.Resolution; + +internal static class Validation +{ + internal static string IPAddressRegex = "^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3}$"; +} diff --git a/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/WinSock.cs b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/WinSock.cs new file mode 100644 index 0000000..28ca774 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonResolution/ArchestrAServices.Common.Resolution/WinSock.cs @@ -0,0 +1,68 @@ +using System; +using System.Net.Sockets; +using System.Runtime.InteropServices; +using System.Security; + +namespace ArchestrAServices.Common.Resolution; + +[SuppressUnmanagedCodeSecurity] +internal class WinSock +{ + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct WSAData + { + [MarshalAs(UnmanagedType.U2)] + public ushort wVersion; + + [MarshalAs(UnmanagedType.U2)] + public ushort wHighVersion; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 257)] + private byte[] szDescription; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 129)] + private byte[] szSystemStatus; + + [MarshalAs(UnmanagedType.U2)] + public ushort iMaxSockets; + + [MarshalAs(UnmanagedType.U2)] + public ushort iMaxUdpDg; + + [MarshalAs(UnmanagedType.LPStr)] + public string lpVendorInfo; + } + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct hostent + { + public IntPtr h_name; + + public IntPtr h_aliases; + + [MarshalAs(UnmanagedType.I2)] + public short h_addrtype; + + [MarshalAs(UnmanagedType.I2)] + public short h_length; + + public unsafe byte** h_addr_list; + } + + internal const uint INADDR_NONE = uint.MaxValue; + + [DllImport("ws2_32", CharSet = CharSet.Ansi, SetLastError = true)] + internal static extern int WSAStartup([In][MarshalAs(UnmanagedType.U2)] ushort wVersionRequested, [MarshalAs(UnmanagedType.Struct)] out WSAData lpWSAData); + + [DllImport("ws2_32", CharSet = CharSet.Ansi, SetLastError = true)] + internal static extern int WSACleanup(); + + [DllImport("ws2_32", CharSet = CharSet.Ansi, SetLastError = true)] + internal unsafe static extern hostent* gethostbyaddr([In][MarshalAs(UnmanagedType.I4)] ref int addr, [In][MarshalAs(UnmanagedType.I4)] int len, [In] ProtocolFamily type); + + [DllImport("ws2_32", BestFitMapping = false, CharSet = CharSet.Ansi, SetLastError = true)] + internal unsafe static extern hostent* gethostbyname([In] string host); + + [DllImport("ws2_32", BestFitMapping = false, CharSet = CharSet.Ansi, SetLastError = true)] + internal static extern int inet_addr([In] string cp); +} diff --git a/analysis/decompiled/aaServicesCommonResolution/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesCommonResolution/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..e3540d4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonResolution/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Versioning; +using System.Security; +using System.Security.Permissions; + +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyProduct("ArchestrA Data Store")] +[assembly: AssemblyFileVersion("2019.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyTitle("ArchestrAServices.Common.Resolution")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: ComVisible(false)] +[assembly: Guid("8a59d007-5515-4d89-b34c-aecf3d1fb35e")] +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesCommonResolution/aaServicesCommonResolution.csproj b/analysis/decompiled/aaServicesCommonResolution/aaServicesCommonResolution.csproj new file mode 100644 index 0000000..46376f4 --- /dev/null +++ b/analysis/decompiled/aaServicesCommonResolution/aaServicesCommonResolution.csproj @@ -0,0 +1,19 @@ + + + aaServicesCommonResolution + False + net40 + + + 14.0 + True + False + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ASBArchestrAResult.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ASBArchestrAResult.cs new file mode 100644 index 0000000..756cd61 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ASBArchestrAResult.cs @@ -0,0 +1,117 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[DesignerCategory("code")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public class ASBArchestrAResult +{ + private bool successField; + + private int resultCodeField; + + private string locationField; + + private string[] successMessagesField; + + private string[] informationMessagesField; + + private string[] errorMessagesField; + + private NamedValue[] extensionsField; + + public bool Success + { + get + { + return successField; + } + set + { + successField = value; + } + } + + public int ResultCode + { + get + { + return resultCodeField; + } + set + { + resultCodeField = value; + } + } + + public string Location + { + get + { + return locationField; + } + set + { + locationField = value; + } + } + + [XmlElement("SuccessMessages")] + public string[] SuccessMessages + { + get + { + return successMessagesField; + } + set + { + successMessagesField = value; + } + } + + [XmlElement("InformationMessages")] + public string[] InformationMessages + { + get + { + return informationMessagesField; + } + set + { + informationMessagesField = value; + } + } + + [XmlElement("ErrorMessages")] + public string[] ErrorMessages + { + get + { + return errorMessagesField; + } + set + { + errorMessagesField = value; + } + } + + [XmlElement("Extensions")] + public NamedValue[] Extensions + { + get + { + return extensionsField; + } + set + { + extensionsField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ArchestrAError.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ArchestrAError.cs new file mode 100644 index 0000000..29dffa3 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ArchestrAError.cs @@ -0,0 +1,41 @@ +namespace ArchestrAServices.ASBContract; + +public enum ArchestrAError : ushort +{ + Success = 0, + InvalidConnectionId = 1, + ApplicationAuthenticationError = 2, + UserAuthenticationError = 3, + UserAuthorizationError = 4, + NotSupportedOperation = 5, + MonitoredItemsNotFound = 6, + InvalidSubscriptionID = 7, + ItemAlreadyRegistered = 8, + ItemAlreadyDeletedOrDoesNotExist = 9, + InvalidMonitoredItems = 10, + OperationFailed = 11, + SpecificError = 12, + BadNoCommunication = 13, + Bad_NothingToDo = 14, + Bad_TooManyOperations = 15, + Bad_NodeIdInvalid = 16, + BrowseFailed = 17, + WriteFailed_BadOutOfRange = 18, + WriteFailed_BadTypeMismatch = 19, + WriteFailed_BadDimensionMismatch = 20, + WriteFailed_AccessDenied = 21, + WriteFailed_SecuredWrite = 22, + WriteFailed_VerifiedWrite = 23, + IndexOutOfRange = 24, + RequestTimedOut = 25, + DataTypeConversionNotSupported = 26, + ItemCannotBeRegistered_NoName = 27, + ItemCannotBeRegistered_NoId = 28, + ItemAlreadyBeingMonitored = 29, + SubscriptionIDAlreadyExist = 30, + OperationWouldBlock = 31, + PublishComplete = 32, + WriteFailed_UserNotHavingAccessRights = 33, + WriteFailed_VerifierNotHavingVerifyRights = 34, + Unknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ArchestrAResult.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ArchestrAResult.cs new file mode 100644 index 0000000..5783ea7 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ArchestrAResult.cs @@ -0,0 +1,155 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public struct ArchestrAResult +{ + private bool successField; + + private int resultCodeField; + + private uint specificErrorCodeField; + + private uint statusCodeField; + + private string locationField; + + private string[] successMessagesField; + + private string[] informationMessagesField; + + private string[] errorMessagesField; + + private NamedValue[] extensionsField; + + public bool Success + { + get + { + return successField; + } + set + { + successField = value; + } + } + + public int ResultCode + { + get + { + return resultCodeField; + } + set + { + resultCodeField = value; + } + } + + public int ErrorCode + { + get + { + return resultCodeField; + } + set + { + resultCodeField = value; + } + } + + public uint SpecificErrorCode + { + get + { + return specificErrorCodeField; + } + set + { + specificErrorCodeField = value; + } + } + + public uint Status + { + get + { + return statusCodeField; + } + set + { + statusCodeField = value; + } + } + + public string Location + { + get + { + return locationField; + } + set + { + locationField = value; + } + } + + [XmlElement("SuccessMessages")] + public string[] SuccessMessages + { + get + { + return successMessagesField; + } + set + { + successMessagesField = value; + } + } + + [XmlElement("InformationMessages")] + public string[] InformationMessages + { + get + { + return informationMessagesField; + } + set + { + informationMessagesField = value; + } + } + + [XmlElement("ErrorMessages")] + public string[] ErrorMessages + { + get + { + return errorMessagesField; + } + set + { + errorMessagesField = value; + } + } + + [XmlElement("Extensions")] + public NamedValue[] Extensions + { + get + { + return extensionsField; + } + set + { + extensionsField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticateMe.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticateMe.cs new file mode 100644 index 0000000..6fad3bf --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticateMe.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "AuthenticateMeRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class AuthenticateMe : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public AuthenticationData ConsumerAuthenticationData; + + public AuthenticateMe() + { + } + + public AuthenticateMe(AuthenticationData ConsumerAuthenticationData) + { + this.ConsumerAuthenticationData = ConsumerAuthenticationData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticationData.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticationData.cs new file mode 100644 index 0000000..aa9e08d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticationData.cs @@ -0,0 +1,45 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[DesignerCategory("code")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public class AuthenticationData +{ + private byte[] dataField; + + private byte[] initializationVectorField; + + [XmlElement(DataType = "base64Binary")] + public byte[] Data + { + get + { + return dataField; + } + set + { + dataField = value; + } + } + + [XmlElement(DataType = "base64Binary")] + public byte[] InitializationVector + { + get + { + return initializationVectorField; + } + set + { + initializationVectorField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticationDataExtensions.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticationDataExtensions.cs new file mode 100644 index 0000000..037a046 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/AuthenticationDataExtensions.cs @@ -0,0 +1,44 @@ +namespace ArchestrAServices.ASBContract; + +public static class AuthenticationDataExtensions +{ + public static bool AreEqual(this AuthenticationData value, AuthenticationData other) + { + try + { + if (value != null && value.Data != null && other != null && other.Data != null) + { + return value.AreEqual(other.Data); + } + } + catch + { + } + return false; + } + + public static bool AreEqual(this AuthenticationData value, byte[] expected) + { + bool result = false; + try + { + if (value != null && value.Data != null && expected != null && value.Data.Length == expected.Length) + { + result = true; + for (int i = 0; i < value.Data.Length; i++) + { + if (value.Data[i] != expected[i]) + { + result = false; + break; + } + } + } + } + catch + { + result = false; + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectRequest.cs new file mode 100644 index 0000000..8676d4b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectRequest.cs @@ -0,0 +1,30 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ConnectRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class ConnectRequest : ServiceMessage +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public Guid ConnectionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] + public PublicKey ConsumerPublicKey; + + public ConnectRequest() + { + } + + public ConnectRequest(Guid ConnectionId, PublicKey ConsumerPublicKey) + { + this.ConnectionId = ConnectionId; + this.ConsumerPublicKey = ConsumerPublicKey; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectResponse.cs new file mode 100644 index 0000000..0fa587f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectResponse.cs @@ -0,0 +1,35 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ConnectResponse", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class ConnectResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public PublicKey ServicePublicKey; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] + public AuthenticationData ServiceAuthenticationData; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 2)] + [XmlElement(DataType = "duration")] + public string ConnectionLifetime; + + public ConnectResponse() + { + } + + public ConnectResponse(PublicKey ServicePublicKey, AuthenticationData ServiceAuthenticationData, string ConnectionLifetime) + { + this.ServicePublicKey = ServicePublicKey; + this.ServiceAuthenticationData = ServiceAuthenticationData; + this.ConnectionLifetime = ConnectionLifetime; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectedRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectedRequest.cs new file mode 100644 index 0000000..62fad13 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectedRequest.cs @@ -0,0 +1,21 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract] +public class ConnectedRequest : ServiceMessage +{ + [MessageHeader(Namespace = "http://asb.contracts.headers/20111111")] + public ConnectionValidator ConnectionValidator; + + public ConnectedRequest() + { + ConnectionValidator = new ConnectionValidator(); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectedResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectedResponse.cs new file mode 100644 index 0000000..9542d3a --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectedResponse.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract] +public class ConnectedResponse : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111")] + public ArchestrAResult Result; + + public ConnectedResponse() + { + } + + public ConnectedResponse(ArchestrAResult result) + { + Result = result; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectionValidator.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectionValidator.cs new file mode 100644 index 0000000..37a5752 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ConnectionValidator.cs @@ -0,0 +1,73 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[DesignerCategory("code")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public class ConnectionValidator +{ + private Guid connectionIdField; + + private ulong messageNumberField; + + private byte[] messageAuthenticationCodeField; + + private byte[] signatureInitializationVectorField; + + public Guid ConnectionId + { + get + { + return connectionIdField; + } + set + { + connectionIdField = value; + } + } + + public ulong MessageNumber + { + get + { + return messageNumberField; + } + set + { + messageNumberField = value; + } + } + + [XmlElement(DataType = "base64Binary")] + public byte[] MessageAuthenticationCode + { + get + { + return messageAuthenticationCodeField; + } + set + { + messageAuthenticationCodeField = value; + } + } + + [XmlElement(DataType = "base64Binary")] + public byte[] SignatureInitializationVector + { + get + { + return signatureInitializationVectorField; + } + set + { + signatureInitializationVectorField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/CredentialType.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/CredentialType.cs new file mode 100644 index 0000000..7dfbe40 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/CredentialType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.ASBContract; + +public enum CredentialType : ushort +{ + UsernamePassword = 0, + X509Certificate = 1, + SamlToken = 2, + Other = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/CredentialValidity.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/CredentialValidity.cs new file mode 100644 index 0000000..6e671dd --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/CredentialValidity.cs @@ -0,0 +1,10 @@ +namespace ArchestrAServices.ASBContract; + +public enum CredentialValidity : ushort +{ + UserIdentityValid = 0, + UserIdentityInvalid_BadPassword = 1, + UserIdentityInvalid_NoUser = 2, + UserIdentityInvalid_CannotAuthenticate = 3, + UesrIdentityValidityUnknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/DataConversionUtilities.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/DataConversionUtilities.cs new file mode 100644 index 0000000..a9438b6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/DataConversionUtilities.cs @@ -0,0 +1,94 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Text; + +namespace ArchestrAServices.ASBContract; + +public static class DataConversionUtilities +{ + public static string ToBase64(this string value) + { + string result = string.Empty; + if (value != null) + { + result = Encoding.UTF8.GetBytes(value).ToBase64(); + } + return result; + } + + public static string FromBase64(this string value) + { + string result = string.Empty; + if (value != null) + { + byte[] bytes = value.FromBase64ToByteArray(); + result = Encoding.UTF8.GetString(bytes); + } + return result; + } + + public static string ToBase64(this byte[] value) + { + string result = string.Empty; + try + { + result = Convert.ToBase64String(value); + } + catch + { + } + return result; + } + + public static string ToHex(this byte[] value) + { + StringBuilder stringBuilder = new StringBuilder(); + if (value != null) + { + foreach (byte b in value) + { + stringBuilder.Append(b.ToString("X2", CultureInfo.CurrentCulture)); + } + } + return stringBuilder.ToString(); + } + + public static byte[] FromBase64ToByteArray(this string value) + { + byte[] result = null; + if (value != null) + { + try + { + result = Convert.FromBase64String(value); + } + catch + { + } + } + return result; + } + + public static byte[] FromHexToByteArray(this string value) + { + List list = new List(); + if (value != null) + { + string text = value.Replace(" ", string.Empty); + text = text.Replace("\r", string.Empty); + text = text.Replace("\n", string.Empty); + if (text.Length % 2 == 0) + { + for (int i = 0; i < text.Length; i += 2) + { + if (byte.TryParse(text.Substring(i, 2), NumberStyles.HexNumber, CultureInfo.InvariantCulture, out var result)) + { + list.Add(result); + } + } + } + } + return list.ToArray(); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/Disconnect.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/Disconnect.cs new file mode 100644 index 0000000..e11b5a8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/Disconnect.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DisconnectRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class Disconnect : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public AuthenticationData ConsumerAuthenticationData; + + public Disconnect() + { + } + + public Disconnect(AuthenticationData ConsumerAuthenticationData) + { + this.ConsumerAuthenticationData = ConsumerAuthenticationData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/EncryptionType.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/EncryptionType.cs new file mode 100644 index 0000000..6d4791f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/EncryptionType.cs @@ -0,0 +1,6 @@ +namespace ArchestrAServices.ASBContract; + +public enum EncryptionType : ushort +{ + None +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/EnumASBFactory.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/EnumASBFactory.cs new file mode 100644 index 0000000..72ce133 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/EnumASBFactory.cs @@ -0,0 +1,74 @@ +using System; + +namespace ArchestrAServices.ASBContract; + +public static class EnumASBFactory +{ + public static ArchestrAError IntToArchestrAError(ushort iValue) + { + try + { + return (ArchestrAError)iValue; + } + catch (Exception) + { + return ArchestrAError.Unknown; + } + } + + public static ushort ArchestrAErrorToInt(ArchestrAError eValue) + { + return (ushort)eValue; + } + + public static CredentialType IntToCredentialType(ushort iValue) + { + try + { + return (CredentialType)iValue; + } + catch (Exception) + { + return CredentialType.Other; + } + } + + public static ushort CredentialTypeToInt(CredentialType eValue) + { + return (ushort)eValue; + } + + public static EncryptionType IntToEncryptionType(ushort iValue) + { + try + { + return (EncryptionType)iValue; + } + catch (Exception) + { + return EncryptionType.None; + } + } + + public static ushort EncryptionTypeToInt(EncryptionType eValue) + { + return (ushort)eValue; + } + + public static CredentialValidity IntToCredentialValidity(ushort iValue) + { + try + { + return (CredentialValidity)iValue; + } + catch (Exception) + { + return CredentialValidity.UesrIdentityValidityUnknown; + } + } + + public static ushort CredentialValidityToInt(CredentialValidity eValue) + { + return (ushort)eValue; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/IAuthenticateASB.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/IAuthenticateASB.cs new file mode 100644 index 0000000..ebd7658 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/IAuthenticateASB.cs @@ -0,0 +1,33 @@ +using System.CodeDom.Compiler; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[ServiceContract(Namespace = "http://asb.contracts/20111111", ConfigurationName = "IAuthenticateASB")] +public interface IAuthenticateASB +{ + [OperationContract(Action = "http://asb.contracts/20111111:connectIn", ReplyAction = "*")] + [XmlSerializerFormat(SupportFaults = true)] + ConnectResponse Connect(ConnectRequest request); + + [OperationContract(Action = "http://asb.contracts/20111111:renewIn", ReplyAction = "*")] + [XmlSerializerFormat(SupportFaults = true)] + RenewResponse Renew(RenewRequest request); + + [OperationContract(IsOneWay = true, Action = "http://asb.contracts/20111111:authenticateMeIn")] + [XmlSerializerFormat(SupportFaults = true)] + void AuthenticateMe(AuthenticateMe request); + + [OperationContract(IsOneWay = true, Action = "http://asb.contracts/20111111:updateSystemAuthenticationConfigurationIn")] + [XmlSerializerFormat(SupportFaults = true)] + void UpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfiguration request); + + [OperationContract(IsOneWay = true, Action = "http://asb.contracts/20111111:disconnectIn")] + [XmlSerializerFormat(SupportFaults = true)] + void Disconnect(Disconnect request); + + [OperationContract(IsOneWay = true, Action = "http://asb.contracts/20111111:keepAliveIn")] + [XmlSerializerFormat(SupportFaults = true)] + void KeepAlive(KeepAlive request); +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ItemChoiceType.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ItemChoiceType.cs new file mode 100644 index 0000000..685c9c9 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ItemChoiceType.cs @@ -0,0 +1,33 @@ +using System; +using System.CodeDom.Compiler; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[XmlType(Namespace = "http://asb.contracts.data/20111111", IncludeInSchema = false)] +public enum ItemChoiceType +{ + Blob, + Boolean, + Byte, + Date, + DateTime, + Decimal, + Double, + Duration, + Float, + Guid, + Hex, + Int, + Integer, + Long, + Short, + String, + Time, + UnsignedByte, + UnsignedInt, + UnsignedLong, + UnsignedShort +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/KeepAlive.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/KeepAlive.cs new file mode 100644 index 0000000..9dadc3c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/KeepAlive.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "KeepAliveRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class KeepAlive : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public AuthenticationData ConsumerAuthenticationData; + + public KeepAlive() + { + } + + public KeepAlive(AuthenticationData ConsumerAuthenticationData) + { + this.ConsumerAuthenticationData = ConsumerAuthenticationData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCallToAuthenticationConnect.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCallToAuthenticationConnect.cs new file mode 100644 index 0000000..8e66fb8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCallToAuthenticationConnect.cs @@ -0,0 +1,3 @@ +namespace ArchestrAServices.ASBContract; + +public delegate ConnectResponse MakeCallToAuthenticationConnect(ConnectRequest request); diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCallToServiceDisconnect.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCallToServiceDisconnect.cs new file mode 100644 index 0000000..bee4275 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCallToServiceDisconnect.cs @@ -0,0 +1,3 @@ +namespace ArchestrAServices.ASBContract; + +public delegate void MakeCallToServiceDisconnect(Disconnect request); diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCalltoAuthenticateMe.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCalltoAuthenticateMe.cs new file mode 100644 index 0000000..5878c88 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/MakeCalltoAuthenticateMe.cs @@ -0,0 +1,3 @@ +namespace ArchestrAServices.ASBContract; + +public delegate void MakeCalltoAuthenticateMe(AuthenticateMe request); diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/NamedValue.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/NamedValue.cs new file mode 100644 index 0000000..e613418 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/NamedValue.cs @@ -0,0 +1,43 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[DesignerCategory("code")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public class NamedValue +{ + private string nameField; + + private ResultVariant valueField; + + public string Name + { + get + { + return nameField; + } + set + { + nameField = value; + } + } + + public ResultVariant Value + { + get + { + return valueField; + } + set + { + valueField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/PublicKey.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/PublicKey.cs new file mode 100644 index 0000000..f132b1a --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/PublicKey.cs @@ -0,0 +1,30 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[DesignerCategory("code")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public class PublicKey +{ + private byte[] dataField; + + [XmlElement(DataType = "base64Binary")] + public byte[] Data + { + get + { + return dataField; + } + set + { + dataField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/RenewRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/RenewRequest.cs new file mode 100644 index 0000000..53ddd29 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/RenewRequest.cs @@ -0,0 +1,34 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "RenewRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class RenewRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public AuthenticationData ConsumerAuthenticationData; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] + public Guid NewConnectionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 2)] + public PublicKey NewConsumerPublicKey; + + public RenewRequest() + { + } + + public RenewRequest(AuthenticationData ConsumerAuthenticationData, Guid NewConnectionId, PublicKey NewConsumerPublicKey) + { + this.ConsumerAuthenticationData = ConsumerAuthenticationData; + this.NewConnectionId = NewConnectionId; + this.NewConsumerPublicKey = NewConsumerPublicKey; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/RenewResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/RenewResponse.cs new file mode 100644 index 0000000..2bfc20b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/RenewResponse.cs @@ -0,0 +1,40 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "RenewResponse", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class RenewResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public Guid NewConnectionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] + [XmlElement(DataType = "duration")] + public string NewConnectionLifetime; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 2)] + public PublicKey NewServicePublicKey; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 3)] + public AuthenticationData NewServiceAuthenticationData; + + public RenewResponse() + { + } + + public RenewResponse(Guid NewConnectionId, string NewConnectionLifetime, PublicKey NewServicePublicKey, AuthenticationData NewServiceAuthenticationData) + { + this.NewConnectionId = NewConnectionId; + this.NewConnectionLifetime = NewConnectionLifetime; + this.NewServicePublicKey = NewServicePublicKey; + this.NewServiceAuthenticationData = NewServiceAuthenticationData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ResultFactory.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ResultFactory.cs new file mode 100644 index 0000000..e500593 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ResultFactory.cs @@ -0,0 +1,84 @@ +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +public static class ResultFactory +{ + public static ArchestrAResult MakeGoodResult() + { + return new ArchestrAResult + { + ErrorCode = EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.Success), + Status = 0u, + SpecificErrorCode = 0u, + Success = true + }; + } + + public static ArchestrAResult MakeResult(ArchestrAError error, ushort status) + { + return new ArchestrAResult + { + ErrorCode = EnumASBFactory.ArchestrAErrorToInt(error), + Status = status, + Success = (error == ArchestrAError.Success) + }; + } + + public static ArchestrAResult MakeResult(ArchestrAError error, ushort status, uint specificError) + { + return new ArchestrAResult + { + ResultCode = EnumASBFactory.ArchestrAErrorToInt(error), + Status = status, + SpecificErrorCode = specificError, + Success = (error == ArchestrAError.Success) + }; + } + + public static void AddExtension(this ArchestrAResult Result, string Name, object Value, ItemChoiceType ValueType) + { + NamedValue[] array = null; + array = ((Result.Extensions != null) ? Result.Extensions : new NamedValue[0]); + Result.Extensions = new NamedValue[array.Length + 1]; + for (int i = 0; i < array.Length; i++) + { + Result.Extensions[i] = array[i]; + } + NamedValue namedValue = new NamedValue(); + namedValue.Name = Name; + namedValue.Value = new ResultVariant(); + namedValue.Value.Item = Value; + namedValue.Value.ItemElementName = ValueType; + Result.Extensions[Result.Extensions.Length - 1] = namedValue; + } + + public static ArchestrAResult MakeResult(int Error) + { + return new ArchestrAResult + { + ResultCode = Error, + Success = (Error == 0) + }; + } + + public static ArchestrAResult MakeResult(int Error, string Location) + { + return new ArchestrAResult + { + Location = Location, + ResultCode = Error, + Success = (Error == 0) + }; + } + + public static ArchestrAResult MakeResult(ArchestrAServices.Contract.ArchestrAResult result) + { + ArchestrAResult result2 = default(ArchestrAResult); + result2.ResultCode = result.ErrorCode; + result2.Status = result.Status; + result2.SpecificErrorCode = result.SpecificErrorCode; + result2.Success = result2.ResultCode == 0; + return result2; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ResultVariant.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ResultVariant.cs new file mode 100644 index 0000000..07455f0 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ResultVariant.cs @@ -0,0 +1,66 @@ +using System; +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[DesignerCategory("code")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public class ResultVariant +{ + private object itemField; + + private ItemChoiceType itemElementNameField; + + [XmlElement("Blob", typeof(byte[]), DataType = "base64Binary")] + [XmlElement("Boolean", typeof(bool))] + [XmlElement("Byte", typeof(sbyte))] + [XmlElement("Date", typeof(DateTime), DataType = "date")] + [XmlElement("DateTime", typeof(DateTime))] + [XmlElement("Decimal", typeof(decimal))] + [XmlElement("Double", typeof(double))] + [XmlElement("Duration", typeof(string), DataType = "duration")] + [XmlElement("Float", typeof(float))] + [XmlElement("Guid", typeof(Guid))] + [XmlElement("Hex", typeof(byte[]), DataType = "hexBinary")] + [XmlElement("Int", typeof(int))] + [XmlElement("Integer", typeof(string), DataType = "integer")] + [XmlElement("Long", typeof(long))] + [XmlElement("Short", typeof(short))] + [XmlElement("String", typeof(string))] + [XmlElement("Time", typeof(DateTime), DataType = "time")] + [XmlElement("UnsignedByte", typeof(byte))] + [XmlElement("UnsignedInt", typeof(uint))] + [XmlElement("UnsignedLong", typeof(ulong))] + [XmlElement("UnsignedShort", typeof(ushort))] + [XmlChoiceIdentifier("ItemElementName")] + public object Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + [XmlIgnore] + public ItemChoiceType ItemElementName + { + get + { + return itemElementNameField; + } + set + { + itemElementNameField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SerializationExtensions.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SerializationExtensions.cs new file mode 100644 index 0000000..bbd6c71 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SerializationExtensions.cs @@ -0,0 +1,94 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Xml.Linq; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +public static class SerializationExtensions +{ + private static readonly Dictionary xmlSerializers = new Dictionary(); + + private static readonly object serializersLock = new object(); + + public static XmlSerializer GetTypeSerializer(Type objectType) + { + if (objectType == null) + { + return null; + } + XmlSerializer xmlSerializer; + lock (serializersLock) + { + if (!xmlSerializers.ContainsKey(objectType)) + { + string defaultNamespace = "urn:invensys.schemas"; + object[] customAttributes = objectType.GetCustomAttributes(inherit: true); + if (customAttributes.Length != 0) + { + object[] array = customAttributes; + for (int i = 0; i < array.Length; i++) + { + if (array[i] is XmlRootAttribute xmlRootAttribute) + { + defaultNamespace = xmlRootAttribute.Namespace; + break; + } + } + } + xmlSerializer = new XmlSerializer(objectType, defaultNamespace); + xmlSerializers.Add(objectType, xmlSerializer); + } + else + { + xmlSerializer = xmlSerializers[objectType]; + } + } + return xmlSerializer; + } + + public static string ToXml(this object value) + { + string text = string.Empty; + if (value != null) + { + try + { + using TextWriter textWriter = new StringWriter(CultureInfo.CurrentCulture); + lock (serializersLock) + { + XmlSerializer typeSerializer = GetTypeSerializer(value.GetType()); + if (typeSerializer != null) + { + typeSerializer.Serialize(textWriter, value); + text = textWriter.ToString(); + } + } + } + catch + { + } + } + if (Environment.Is64BitProcess) + { + using TextReader textReader = new StringReader(text); + using IEnumerator enumerator = XDocument.Load(textReader).Elements().GetEnumerator(); + if (enumerator.MoveNext()) + { + XElement current = enumerator.Current; + XAttribute xAttribute = current.Attribute(XNamespace.Xmlns + "xsd"); + XAttribute xAttribute2 = current.Attribute(XNamespace.Xmlns + "xsi"); + if (xAttribute != null && xAttribute2 != null) + { + current.ReplaceAttributes(xAttribute2, xAttribute); + } + using TextWriter textWriter2 = new StringWriter(CultureInfo.CurrentCulture); + current.Save(textWriter2); + text = textWriter2.ToString(); + } + } + return text; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ServiceMessage.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ServiceMessage.cs new file mode 100644 index 0000000..401e3ac --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/ServiceMessage.cs @@ -0,0 +1,14 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract] +public class ServiceMessage +{ +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SigningMethod.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SigningMethod.cs new file mode 100644 index 0000000..128a587 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SigningMethod.cs @@ -0,0 +1,7 @@ +namespace ArchestrAServices.ASBContract; + +public enum SigningMethod +{ + Baktun, + Apollo +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthClientAuthentication.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthClientAuthentication.cs new file mode 100644 index 0000000..dc4fcd0 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthClientAuthentication.cs @@ -0,0 +1,204 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Globalization; +using System.Numerics; +using System.Security.Cryptography; +using System.Text; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBContract; + +public class SysAuthClientAuthentication : SysAuthConnectionBase +{ + private RNGCryptoServiceProvider m_Random = new RNGCryptoServiceProvider(); + + private readonly WeakReference owner; + + public uint Timeout { get; set; } + + public BigInteger ClientPrivateKey { get; private set; } + + public BigInteger ClientPublicKey { get; private set; } + + public BigInteger ServicePublicKey { get; private set; } + + public bool IsOwnerAlive + { + get + { + if (owner != null) + { + return owner.IsAlive; + } + return true; + } + } + + [Obsolete("Please use the constructor that takes the owner as well.")] + public SysAuthClientAuthentication(string ASBSolution) + : this(ASBSolution, null) + { + } + + public SysAuthClientAuthentication(string ASBSolution, WeakReference owner) + : base(ASBSolution) + { + Reset(); + base.ReasonSecureSessionNotEstablished = "Constructed"; + this.owner = owner; + } + + public static bool EstablishSecureSession(string application, string domain, string host, string asbSolution, WeakReference owner, MakeCallToAuthenticationConnect connectDelegate, MakeCalltoAuthenticateMe authenticateMeDelegate, out Guid connectionId) + { + string ReasonSecureSessionNotEstablished; + return EstablishSecureSession(application, domain, host, asbSolution, owner, connectDelegate, authenticateMeDelegate, out connectionId, out ReasonSecureSessionNotEstablished); + } + + [Obsolete("Please use the method that requires the owner as well.")] + public static bool EstablishSecureSession(string application, string domain, string host, string asbSolution, MakeCallToAuthenticationConnect connectDelegate, MakeCalltoAuthenticateMe authenticateMeDelegate, out Guid connectionId) + { + return EstablishSecureSession(application, domain, host, asbSolution, null, connectDelegate, authenticateMeDelegate, out connectionId); + } + + [CLSCompliant(false)] + [Obsolete("Please use the method that requires the owner as well.")] + public static bool EstablishSecureSession(string application, string domain, string host, string asbSolution, MakeCallToAuthenticationConnect connectDelegate, MakeCalltoAuthenticateMe authenticateMeDelegate, out Guid connectionId, out string ReasonSecureSessionNotEstablished) + { + return EstablishSecureSession(application, domain, host, asbSolution, null, connectDelegate, authenticateMeDelegate, out connectionId, out ReasonSecureSessionNotEstablished); + } + + [CLSCompliant(false)] + public static bool EstablishSecureSession(string application, string domain, string host, string asbSolution, WeakReference owner, MakeCallToAuthenticationConnect connectDelegate, MakeCalltoAuthenticateMe authenticateMeDelegate, out Guid connectionId, out string ReasonSecureSessionNotEstablished) + { + SysAuthClientAuthentication sysAuthClientAuthentication = new SysAuthClientAuthentication(asbSolution, owner); + ReasonSecureSessionNotEstablished = string.Empty; + SysAuthenticatorClientCache.AddClientAuthenticator(sysAuthClientAuthentication); + connectionId = sysAuthClientAuthentication.connectionID; + PublicKey publicKey = new PublicKey(); + publicKey.Data = sysAuthClientAuthentication.m_LocalPublicKey; + ConnectRequest request = new ConnectRequest(connectionId, publicKey); + ConnectResponse connectResponse = null; + try + { + connectResponse = connectDelegate(request); + } + catch (Exception ex) + { + string text = string.Format(CultureInfo.CurrentCulture, "Exception connecting to service during EstablishSecureSession: {0}", new object[1] { ex.Message }); + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, text); + if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = text; + } + } + if (connectResponse != null) + { + if (connectResponse.Result.Success) + { + sysAuthClientAuthentication.m_RemotePublicKey = connectResponse.ServicePublicKey.Data; + sysAuthClientAuthentication.SignatureMethod = SigningMethod.Baktun; + sysAuthClientAuthentication.ReasonSecureSessionNotEstablished = string.Empty; + if (sysAuthClientAuthentication.ValidResponse(connectResponse, ForceHmac: true)) + { + sysAuthClientAuthentication.m_Authenticated = true; + if (connectResponse.ConnectionLifetime.Contains(":" + SysAuthConnectionBase.ASBAuthenticationVersion)) + { + sysAuthClientAuthentication.SignatureMethod = SigningMethod.Apollo; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysClientAuth: Connect() response validated, signing set to {0}", (sysAuthClientAuthentication.SignatureMethod == SigningMethod.Baktun) ? "System Platform 2012R2 Comptibility" : "System Platform 2014 Compatibility"); + byte[] initializationVector; + AuthenticateMe request2 = new AuthenticateMe(new AuthenticationData + { + Data = sysAuthClientAuthentication.CalculateAuthenticationData(sysAuthClientAuthentication.m_LocalPublicKey, sysAuthClientAuthentication.m_RemotePublicKey, out initializationVector), + InitializationVector = initializationVector + }); + sysAuthClientAuthentication.Sign(request2, ForceHmac: true); + authenticateMeDelegate(request2); + } + else + { + if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + if (!string.IsNullOrEmpty(sysAuthClientAuthentication.ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = "Service returned response to Connect method, but validation failed: " + sysAuthClientAuthentication.ReasonSecureSessionNotEstablished; + } + else + { + ReasonSecureSessionNotEstablished = "Service returned response to Connect method, but validation data was not valid, cannot establish secure session"; + } + } + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + connectionId = Guid.Empty; + } + } + else + { + if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + string text2 = string.Empty; + if (connectResponse.Result.ErrorMessages != null && connectResponse.Result.ErrorMessages.Length != 0) + { + string[] errorMessages = connectResponse.Result.ErrorMessages; + foreach (string text3 in errorMessages) + { + text2 = text2 + text3 + "| "; + } + } + if (string.IsNullOrEmpty(text2)) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "Service returned error {0} in response to Connect method, cannot establish secure connection.", new object[1] { connectResponse.Result.ErrorCode }); + } + else + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "Service returned error {0} in response to Connect method, cannot establish secure connection. Additional information: {1}", new object[2] + { + connectResponse.Result.ErrorCode, + text2 + }); + } + } + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + connectionId = Guid.Empty; + } + } + else + { + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + connectionId = Guid.Empty; + } + return sysAuthClientAuthentication.SecureSessionEstablished; + } + + public void AbortSession() + { + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionID); + Reset(); + base.ReasonSecureSessionNotEstablished = "Session Aborted"; + } + + [CLSCompliant(false)] + public static void DisconnectSecureSession(Guid connectionId, MakeCallToServiceDisconnect DisconnectDelegate) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + byte[] initializationVector; + Disconnect request = new Disconnect(new AuthenticationData + { + Data = clientAuthenticator.Encypher(Encoding.UTF8.GetBytes(clientAuthenticator.connectionID.ToString()), out initializationVector), + InitializationVector = initializationVector + }); + clientAuthenticator.Sign(request); + DisconnectDelegate?.Invoke(request); + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + } + } + + private new void Reset() + { + base.Reset(); + Timeout = 10000u; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthConnectionBase.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthConnectionBase.cs new file mode 100644 index 0000000..45f40b4 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthConnectionBase.cs @@ -0,0 +1,701 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.IO.Compression; +using System.Numerics; +using System.Security.Cryptography; +using System.Security.Cryptography.X509Certificates; +using System.Text; +using ArchestrAServices.Common; +using Invensys.Compression; + +namespace ArchestrAServices.ASBContract; + +public class SysAuthConnectionBase +{ + private static RandomNumberGenerator mRANDOM = RandomNumberGenerator.Create(); + + private static readonly byte[] PASSWORDSALT = Encoding.ASCII.GetBytes("ArchestrAService"); + + protected static string ASBAuthenticationVersion = "V2"; + + protected static readonly object MessageNumberLock = new object(); + + protected SysAuthParameters m_SolutionParameters; + + public Guid connectionID = Guid.Empty; + + protected byte[] m_PrivateKey; + + protected byte[] m_LocalPublicKey; + + protected byte[] m_RemotePublicKey; + + protected bool m_Authenticated; + + protected ulong m_NextMessageNumber = 1uL; + + private ulong m_HighestMessageNumberReceived; + + private List m_OutOfSyncMessageNumbers = new List(); + + private byte[] SolutionPassphrase + { + get + { + byte[] result = null; + if (m_SolutionParameters.ASBSolutionValid) + { + if (m_SolutionParameters.DH_passphrase != null && m_SolutionParameters.DH_passphrase.Length > 0) + { + result = Encoding.UTF8.GetBytes(m_SolutionParameters.DH_passphrase); + } + if (m_SolutionParameters.DH_certificate != null && m_SolutionParameters.DH_certificate.Length != 0) + { + result = new X509Certificate(m_SolutionParameters.DH_certificate).GetPublicKey(); + } + } + return result; + } + } + + private byte[] CryptoKey + { + get + { + List list = new List(); + list.AddRange(CalculateConnectionKey(m_RemotePublicKey, m_PrivateKey)); + byte[] solutionPassphrase = SolutionPassphrase; + if (solutionPassphrase != null) + { + list.AddRange(solutionPassphrase); + } + return list.ToArray(); + } + } + + public ConnectionValidator m_ConnectionValidator { get; protected set; } + + public bool SecureSessionEstablished + { + get + { + return m_Authenticated; + } + protected set + { + m_Authenticated = value; + } + } + + public string ReasonSecureSessionNotEstablished { get; protected set; } + + public string DH_passphrase + { + get + { + return m_SolutionParameters.DH_passphrase; + } + set + { + m_SolutionParameters.DH_passphrase = value; + } + } + + public string DH_hashAlgorithm => m_SolutionParameters.hashAlgorithm; + + public string DH_asbSolutionName => m_SolutionParameters.ASBSolutionName; + + public SigningMethod SignatureMethod { get; set; } + + public SysAuthConnectionBase(string asbSolutionName = null) + { + m_SolutionParameters = new SysAuthParameters(asbSolutionName); + ReasonSecureSessionNotEstablished = "Constructed"; + Reset(); + } + + protected void Reset() + { + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = "Reset"; + SignatureMethod = SigningMethod.Baktun; + connectionID = Guid.NewGuid(); + m_PrivateKey = GetPrivateKey(m_SolutionParameters.KeySize); + m_LocalPublicKey = CalculatePublicKey(m_PrivateKey); + m_Authenticated = false; + } + + private byte[] GetPrivateKey(int length) + { + byte[] array = null; + if (length > 0) + { + BigInteger bigInteger = m_SolutionParameters.DH_p - new BigInteger(1); + BigInteger bigInteger2 = new BigInteger(0); + while (bigInteger2 >= bigInteger || bigInteger2 <= 0L) + { + array = new byte[length / 8]; + mRANDOM.GetBytes(array); + bigInteger2 = new BigInteger(array); + } + } + return array; + } + + protected byte[] CalculatePublicKey(byte[] privateKey) + { + BigInteger exponent = new BigInteger(privateKey); + BigInteger dH_g = m_SolutionParameters.DH_g; + BigInteger dH_p = m_SolutionParameters.DH_p; + return BigInteger.ModPow(dH_g, exponent, dH_p).ToByteArray(); + } + + protected byte[] CalculateConnectionKey(byte[] remotePublicKey, byte[] localPrivateKey) + { + BigInteger value = new BigInteger(remotePublicKey); + BigInteger exponent = new BigInteger(localPrivateKey); + BigInteger dH_p = m_SolutionParameters.DH_p; + return BigInteger.ModPow(value, exponent, dH_p).ToByteArray(); + } + + private HMAC NewSolutionHmac(bool ForceHMAC = false) + { + HMAC result; + switch (DH_hashAlgorithm.ToLower()) + { + case "md5": + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Solution HMAC is MD5"); + result = new HMACMD5(CryptoKey); + break; + case "sha1": + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Solution HMAC is SHA1"); + result = new HMACSHA1(CryptoKey); + break; + case "sha512": + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Solution HMAC is SHA512"); + result = new HMACSHA512(CryptoKey); + break; + default: + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Solution HMAC is NONE"); + result = null; + if (ForceHMAC) + { + result = new HMACSHA1(CryptoKey); + } + break; + } + return result; + } + + public bool ValidRequest(ConnectedRequest request, bool ForceHmac = false) + { + bool flag = false; + if (request != null && request.ConnectionValidator != null) + { + ConnectionValidator connectionValidator = request.ConnectionValidator; + byte[] messageAuthenticationCode = connectionValidator.MessageAuthenticationCode; + byte[] signatureInitializationVector = connectionValidator.SignatureInitializationVector; + byte[] array = null; + using (HMAC hMAC = NewSolutionHmac(ForceHmac)) + { + if (hMAC != null) + { + connectionValidator.MessageAuthenticationCode = new byte[0]; + connectionValidator.SignatureInitializationVector = new byte[0]; + byte[] bytes = Encoding.UTF8.GetBytes(request.ToXml()); + connectionValidator.MessageAuthenticationCode = messageAuthenticationCode; + connectionValidator.SignatureInitializationVector = signatureInitializationVector; + if (SignatureMethod == SigningMethod.Baktun) + { + array = EncypherBaktun(hMAC.ComputeHash(bytes), signatureInitializationVector); + } + else + { + byte[] array2 = hMAC.ComputeHash(bytes); + byte[] array3 = DecypherApollo(messageAuthenticationCode, signatureInitializationVector); + bool flag2 = false; + if (array2 != null && array3 != null && array2.Length == array3.Length) + { + flag2 = true; + for (int i = 0; i < array2.Length; i++) + { + if (array2[i] != array3[i]) + { + flag2 = false; + break; + } + } + } + array = ((!flag2) ? new byte[0] : messageAuthenticationCode); + } + } + } + if (array != null) + { + if (messageAuthenticationCode != null && array.Length == messageAuthenticationCode.Length) + { + flag = true; + for (int j = 0; j < messageAuthenticationCode.Length; j++) + { + if (messageAuthenticationCode[j] != array[j]) + { + if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message hmac correct length {0} but differs at byte {1}, cannot validate", new object[2] { messageAuthenticationCode.Length, j }); + } + flag = false; + break; + } + } + } + else if (messageAuthenticationCode == null) + { + if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = "ValidRequest: Received message has null hmac, cannot validate"; + } + } + else if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message hmac wrong length, cannot validate (received {0}, computed {1})", new object[2] { messageAuthenticationCode.Length, array.Length }); + } + } + else + { + flag = true; + } + if (flag) + { + lock (this) + { + if (connectionValidator.MessageNumber <= m_HighestMessageNumberReceived) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message out of sequence, cannot validate (current {0}, highest {1})", new object[2] { connectionValidator.MessageNumber, m_HighestMessageNumberReceived }); + flag = false; + } + else if (m_OutOfSyncMessageNumbers.Contains(connectionValidator.MessageNumber)) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message received late, cannot validate (current {0})", new object[1] { connectionValidator.MessageNumber }); + flag = false; + } + else if (connectionValidator.MessageNumber == m_HighestMessageNumberReceived + 1) + { + m_HighestMessageNumberReceived = connectionValidator.MessageNumber; + } + else + { + m_OutOfSyncMessageNumbers.Add(connectionValidator.MessageNumber); + } + m_OutOfSyncMessageNumbers.Sort(); + foreach (ulong outOfSyncMessageNumber in m_OutOfSyncMessageNumbers) + { + if (outOfSyncMessageNumber == m_HighestMessageNumberReceived + 1) + { + m_HighestMessageNumberReceived = outOfSyncMessageNumber; + } + } + List list = new List(); + foreach (ulong outOfSyncMessageNumber2 in m_OutOfSyncMessageNumbers) + { + if (outOfSyncMessageNumber2 <= m_HighestMessageNumberReceived) + { + list.Add(outOfSyncMessageNumber2); + } + } + foreach (ulong item in list) + { + m_OutOfSyncMessageNumbers.Remove(item); + } + } + } + } + else + { + ReasonSecureSessionNotEstablished = "ValidRequest: Either the message or its ConnectionValidator field is null, cannot validate"; + } + return flag; + } + + public bool ValidResponse(ConnectedResponse response, bool ForceHmac = false) + { + if (response != null && response.Result.Success) + { + return ValidRequest(response, ForceHmac); + } + return false; + } + + protected byte[] ReCalculateAuthenticationData(byte[] leftPart, byte[] rightPart, byte[] initializationVector) + { + List list = new List(); + if (leftPart != null) + { + list.AddRange(leftPart); + } + if (rightPart != null) + { + list.AddRange(rightPart); + } + return ReEncypher(list.ToArray(), initializationVector); + } + + protected byte[] CalculateAuthenticationData(byte[] leftPart, byte[] rightPart, out byte[] initializationVector) + { + List list = new List(); + initializationVector = null; + if (leftPart != null) + { + list.AddRange(leftPart); + } + if (rightPart != null) + { + list.AddRange(rightPart); + } + return Encypher(list.ToArray(), out initializationVector); + } + + public ConnectionValidator MakeConnectionValidator() + { + lock (MessageNumberLock) + { + return new ConnectionValidator + { + ConnectionId = connectionID, + MessageNumber = m_NextMessageNumber++, + MessageAuthenticationCode = new byte[0], + SignatureInitializationVector = new byte[0] + }; + } + } + + public void Sign(ConnectedRequest request, bool ForceHmac = false) + { + if (request == null) + { + return; + } + lock (MessageNumberLock) + { + ConnectionValidator connectionValidator = new ConnectionValidator(); + connectionValidator.ConnectionId = connectionID; + connectionValidator.MessageNumber = m_NextMessageNumber++; + connectionValidator.MessageAuthenticationCode = new byte[0]; + connectionValidator.SignatureInitializationVector = new byte[0]; + request.ConnectionValidator = connectionValidator; + using HMAC hMAC = NewSolutionHmac(ForceHmac); + if (hMAC != null) + { + byte[] bytes = Encoding.UTF8.GetBytes(request.ToXml()); + connectionValidator.MessageAuthenticationCode = Encypher(hMAC.ComputeHash(bytes), out var initializationVector); + connectionValidator.SignatureInitializationVector = initializationVector; + } + } + } + + public byte[] EncypherBaktun(byte[] clearData, byte[] initializationVector) + { + byte[] result = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream stream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + using AADeflateStream aADeflateStream = new AADeflateStream(stream, CompressionMode.Compress); + aADeflateStream.Write(clearData, 0, clearData.Length); + aADeflateStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public byte[] EncypherBaktun(byte[] clearData, out byte[] initializationVector) + { + byte[] result = null; + initializationVector = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + initializationVector = aesManaged.IV; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream stream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + using AADeflateStream aADeflateStream = new AADeflateStream(stream, CompressionMode.Compress); + aADeflateStream.Write(clearData, 0, clearData.Length); + aADeflateStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public string EncypherBaktun(string clearText, out byte[] initializationVector) + { + string result = string.Empty; + initializationVector = null; + if (!string.IsNullOrEmpty(clearText)) + { + byte[] bytes = Encoding.UTF8.GetBytes(clearText); + result = EncypherBaktun(bytes, out initializationVector).ToBase64(); + } + return result; + } + + public byte[] ReEncypherBaktun(byte[] clearData, byte[] initializationVector) + { + byte[] result = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream stream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + using AADeflateStream aADeflateStream = new AADeflateStream(stream, CompressionMode.Compress); + aADeflateStream.Write(clearData, 0, clearData.Length); + aADeflateStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public string ReEncypherBaktun(string clearText, byte[] initializationVector) + { + string result = string.Empty; + if (!string.IsNullOrEmpty(clearText)) + { + byte[] bytes = Encoding.UTF8.GetBytes(clearText); + result = ReEncypherBaktun(bytes, initializationVector).ToBase64(); + } + return result; + } + + public byte[] DecypherBaktun(byte[] cypherData, byte[] initializationVector) + { + byte[] result = null; + if (cypherData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateDecryptor(); + using MemoryStream stream = new MemoryStream(cypherData); + using CryptoStream stream2 = new CryptoStream(stream, transform, CryptoStreamMode.Read); + using AADeflateStream aADeflateStream = new AADeflateStream(stream2, CompressionMode.Decompress); + using MemoryStream memoryStream = new MemoryStream(); + aADeflateStream.CopyTo(memoryStream); + result = memoryStream.ToArray(); + } + return result; + } + + public string DecypherBaktun(string cypherText, byte[] initializationVector) + { + string result = string.Empty; + if (!string.IsNullOrEmpty(cypherText)) + { + byte[] cypherData = cypherText.FromBase64ToByteArray(); + byte[] bytes = DecypherBaktun(cypherData, initializationVector); + result = Encoding.UTF8.GetString(bytes); + } + return result; + } + + public byte[] EncypherApollo(byte[] clearData, byte[] initializationVector) + { + byte[] result = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + cryptoStream.Write(clearData, 0, clearData.Length); + cryptoStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public byte[] EncypherApollo(byte[] clearData, out byte[] initializationVector) + { + byte[] result = null; + initializationVector = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + initializationVector = aesManaged.IV; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + cryptoStream.Write(clearData, 0, clearData.Length); + cryptoStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public string EncypherApollo(string clearText, out byte[] initializationVector) + { + string result = string.Empty; + initializationVector = null; + if (!string.IsNullOrEmpty(clearText)) + { + byte[] bytes = Encoding.UTF8.GetBytes(clearText); + result = EncypherApollo(bytes, out initializationVector).ToBase64(); + } + return result; + } + + public byte[] ReEncypherApollo(byte[] clearData, byte[] initializationVector) + { + byte[] result = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + cryptoStream.Write(clearData, 0, clearData.Length); + cryptoStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public string ReEncypherApollo(string clearText, byte[] initializationVector) + { + string result = string.Empty; + if (!string.IsNullOrEmpty(clearText)) + { + byte[] bytes = Encoding.UTF8.GetBytes(clearText); + result = ReEncypherApollo(bytes, initializationVector).ToBase64(); + } + return result; + } + + public byte[] DecypherApollo(byte[] cypherData, byte[] initializationVector) + { + byte[] result = null; + if (cypherData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), PASSWORDSALT); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateDecryptor(); + using MemoryStream stream = new MemoryStream(cypherData); + using CryptoStream cryptoStream = new CryptoStream(stream, transform, CryptoStreamMode.Read); + using MemoryStream memoryStream = new MemoryStream(); + cryptoStream.CopyTo(memoryStream); + result = memoryStream.ToArray(); + } + return result; + } + + public string DecypherApollo(string cypherText, byte[] initializationVector) + { + string result = string.Empty; + if (!string.IsNullOrEmpty(cypherText)) + { + byte[] cypherData = cypherText.FromBase64ToByteArray(); + byte[] bytes = DecypherApollo(cypherData, initializationVector); + result = Encoding.UTF8.GetString(bytes); + } + return result; + } + + public byte[] Encypher(byte[] clearData, byte[] initializationVector) + { + if (SignatureMethod == SigningMethod.Baktun) + { + return EncypherBaktun(clearData, initializationVector); + } + return EncypherApollo(clearData, initializationVector); + } + + public byte[] Encypher(byte[] clearData, out byte[] initializationVector) + { + if (SignatureMethod == SigningMethod.Baktun) + { + return EncypherBaktun(clearData, out initializationVector); + } + return EncypherApollo(clearData, out initializationVector); + } + + public string Encypher(string clearText, out byte[] initializationVector) + { + if (SignatureMethod == SigningMethod.Baktun) + { + return EncypherBaktun(clearText, out initializationVector); + } + return EncypherApollo(clearText, out initializationVector); + } + + public byte[] ReEncypher(byte[] clearData, byte[] initializationVector) + { + if (SignatureMethod == SigningMethod.Baktun) + { + return ReEncypherBaktun(clearData, initializationVector); + } + return ReEncypherApollo(clearData, initializationVector); + } + + public string ReEncypher(string clearText, byte[] initializationVector) + { + if (SignatureMethod == SigningMethod.Baktun) + { + return ReEncypherBaktun(clearText, initializationVector); + } + return ReEncypherApollo(clearText, initializationVector); + } + + public byte[] Decypher(byte[] cypherData, byte[] initializationVector) + { + if (SignatureMethod == SigningMethod.Baktun) + { + return DecypherBaktun(cypherData, initializationVector); + } + return DecypherApollo(cypherData, initializationVector); + } + + public string Decypher(string cypherText, byte[] initializationVector) + { + if (SignatureMethod == SigningMethod.Baktun) + { + return DecypherBaktun(cypherText, initializationVector); + } + return DecypherApollo(cypherText, initializationVector); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthParameters.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthParameters.cs new file mode 100644 index 0000000..8da2008 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthParameters.cs @@ -0,0 +1,249 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Numerics; +using System.Security.Cryptography; +using System.Text; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBContract; + +public class SysAuthParameters +{ + public string ASBSolutionName; + + public bool ASBSolutionValid; + + public int DH_KeySize; + + public int DH_SecretSize; + + public BigInteger DH_p; + + public BigInteger DH_g; + + private string m_SysAuthPassphrase; + + private byte[] m_SysAuthCertificate; + + public uint ConnectionLifetime; + + public string SaltValue; + + public string hashAlgorithm; + + public int PasswordIterations; + + public string InitialVector; + + public int KeySize; + + private static string RegKeyRelativePath = string.Empty; + + public static int DH_KeySize_Dft = 1024; + + public static int DH_SecretSize_Dft = 160; + + public static string DH_passphrase_Dft = Environment.MachineName; + + public static uint ConnectionLifetime_Dft = 60000u; + + public static string SaltValue_Dft = "s@1tValue"; + + public static string hashAlgorithm_Dft = CngAlgorithm.MD5.ToString(); + + public static int PasswordIterations_Dft = 1; + + public static string InitialVector_Dft = "ba172e9941be138b"; + + public static int KeySize_Dft = 256; + + private static string s_DECIMAL768 = "1552518092300708935130918131258481755631334049434514313202351194902966239949102107258669453876591642442910007680288864229150803718918046342632727613031282983744380820890196288509170691316593175367469551763119843371637221007210577919"; + + private static byte[] s_OAKLEY768 = new byte[96] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 58, 54, 32, 255, 255, + 255, 255, 255, 255, 255, 255 + }; + + private static string s_DECIMAL1024 = "179769313486231590770839156793787453197860296048756011706444423684197180216158519368947833795864925541502180565485980503646440548199239100050792877003355816639229553136239076508735759914822574862575007425302077447712589550957937778424442426617334727629299387668709205606050270810842907692932019128194"; + + private static byte[] s_OAKLEY1024 = new byte[128] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 55, 237, 107, 11, 255, + 92, 182, 244, 6, 183, 237, 238, 56, 107, 251, + 90, 137, 159, 165, 174, 159, 36, 17, 124, 75, + 31, 230, 73, 40, 102, 81, 236, 230, 83, 129, + 255, 255, 255, 255, 255, 255, 255, 255 + }; + + private static string s_DECIMAL1536 = "2410312426921032588552076022197566074856950548502459942654116941958108831682612228890093858261341614673227141477904012196503648957050582631942730706805009223062734745341073406696246014589361659774041027169249453200378729434170325843778659198143763193776859869524088940195577346119843545301547043747207749969763750084308926339295559968882457872412993810129130294592999947926365264059284647209730384947211681434464714438488520940127459844288859336526896320919633919"; + + private static byte[] s_OAKLEY1536 = new byte[192] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 55, 237, 107, 11, 255, + 92, 182, 244, 6, 183, 237, 238, 56, 107, 251, + 90, 137, 159, 165, 174, 159, 36, 17, 124, 75, + 31, 230, 73, 40, 102, 81, 236, 228, 91, 61, + 194, 0, 124, 184, 161, 99, 191, 5, 152, 218, + 72, 54, 28, 85, 211, 154, 105, 22, 63, 168, + 253, 36, 207, 95, 131, 101, 93, 35, 220, 163, + 173, 150, 28, 98, 243, 86, 32, 133, 82, 187, + 158, 213, 41, 7, 112, 150, 150, 109, 103, 12, + 53, 78, 74, 188, 152, 4, 241, 116, 108, 8, + 202, 35, 115, 39, 255, 255, 255, 255, 255, 255, + 255, 255 + }; + + public string DH_passphrase + { + get + { + return m_SysAuthPassphrase; + } + set + { + ResetToDefaults(); + m_SysAuthPassphrase = value; + ASBSolutionValid = true; + } + } + + public byte[] DH_certificate => m_SysAuthCertificate; + + public SysAuthParameters(string asbSolutionName = null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "SysAuthParameters constructor with asbSolutionName = {0}", string.IsNullOrEmpty(asbSolutionName) ? "" : asbSolutionName); + ASBSolutionName = asbSolutionName; + ASBSolutionValid = false; + ResetToDefaults(); + LoadASBSolution(); + } + + public void ResetToDefaults() + { + ASBSolutionValid = false; + DH_KeySize = DH_KeySize_Dft; + DH_SecretSize = DH_SecretSize_Dft; + m_SysAuthPassphrase = DH_passphrase_Dft; + m_SysAuthCertificate = null; + ConnectionLifetime = ConnectionLifetime_Dft; + SaltValue = SaltValue_Dft; + hashAlgorithm = hashAlgorithm_Dft; + PasswordIterations = PasswordIterations_Dft; + InitialVector = InitialVector_Dft; + KeySize = KeySize_Dft; + GenerateKey(); + } + + private void LoadASBSolution() + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "LoadASBSolution entry"); + try + { + if (string.IsNullOrEmpty(ASBSolutionName)) + { + ASBSolutionName = SvcUtilities.ReadKeyValue(string.Empty, "DefaultASBSolution"); + if (string.IsNullOrEmpty(ASBSolutionName)) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "LoadASBSolution: Unable to get default ASB solution name"); + ASBSolutionValid = false; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "LoadASBSolution created with empty solution name, resetting to default '{0}'", string.IsNullOrEmpty(ASBSolutionName) ? "" : ASBSolutionName); + } + ASBSolutionValid = false; + if (!string.IsNullOrEmpty(ASBSolutionName)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "LoadASBSolution: Using solution {0}", ASBSolutionName); + if (string.IsNullOrEmpty(RegistryHandler.GetSolutionPassphrase(ASBSolutionName, out var passphrase)) && !string.IsNullOrEmpty(passphrase)) + { + DH_passphrase = passphrase; + } + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "Certificate")) != null) + { + m_SysAuthCertificate = Encoding.UTF8.GetBytes(passphrase); + } + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "saltValue")) != null) + { + SaltValue = passphrase; + } + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "HashAlgorthim")) != null) + { + hashAlgorithm = passphrase; + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "LoadASBSolution: Using hashAlgorithm {0}", hashAlgorithm); + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "passowordIterations")) != null) + { + PasswordIterations = int.Parse(passphrase); + } + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "initailizationVector")) != null) + { + InitialVector = passphrase; + } + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "keySize")) != null) + { + int.TryParse(passphrase, out KeySize); + } + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "Prime")) != null) + { + BigInteger.TryParse(passphrase, out DH_p); + } + if ((passphrase = SvcUtilities.ReadKeyValue(RegKeyRelativePath + ASBSolutionName, "Generator")) != null) + { + BigInteger.TryParse(passphrase, out DH_g); + } + ASBSolutionValid = true; + } + } + catch (Exception ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "LoadASBSolution: Exception caught: {0}", ex.Message); + ASBSolutionValid = false; + } + } + + private void GenerateKey() + { + if (DH_KeySize == 768) + { + BigInteger.TryParse(s_DECIMAL768, out DH_p); + } + else if (DH_KeySize == 1024) + { + BigInteger.TryParse(s_DECIMAL1024, out DH_p); + } + else + { + if (DH_KeySize != 1536) + { + throw new ArgumentException("Invalid bit size."); + } + BigInteger.TryParse(s_DECIMAL1536, out DH_p); + } + DH_g = new BigInteger(22); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthServiceAuthentication.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthServiceAuthentication.cs new file mode 100644 index 0000000..e1b6943 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthServiceAuthentication.cs @@ -0,0 +1,120 @@ +#define TRACE +using System; +using System.Diagnostics; +using System.Numerics; +using System.Security.Cryptography; +using System.Text; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBContract; + +public class SysAuthServiceAuthentication : SysAuthConnectionBase +{ + private RNGCryptoServiceProvider m_Random = new RNGCryptoServiceProvider(); + + public BigInteger ClientPublicKey { get; private set; } + + public BigInteger ServicePrivateKey { get; private set; } + + public BigInteger ServicePublicKey { get; private set; } + + public ulong Lifetime { get; private set; } + + public SysAuthServiceAuthentication() + { + Reset(); + Lifetime = 18000000uL; + } + + [CLSCompliant(false)] + public static ConnectResponse ProcessClientConnection(ConnectRequest request) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: Processing client Connect() call '{0}'", request.ConnectionId.ToString()); + ConnectResponse connectResponse = null; + if (request != null && request.ConsumerPublicKey != null && request.ConsumerPublicKey.Data != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: Validated request message, processing"); + SysAuthServiceAuthentication sysAuthServiceAuthentication = new SysAuthServiceAuthentication(); + sysAuthServiceAuthentication.connectionID = request.ConnectionId; + sysAuthServiceAuthentication.m_RemotePublicKey = request.ConsumerPublicKey.Data; + SysAuthenticatorServiceCache.AddServiceAuthenticator(sysAuthServiceAuthentication); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: Added authenticator for connection, captured client public key"); + PublicKey servicePublicKey = new PublicKey + { + Data = sysAuthServiceAuthentication.m_LocalPublicKey + }; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: Established service public key to return"); + byte[] initializationVector; + AuthenticationData serviceAuthenticationData = new AuthenticationData + { + Data = sysAuthServiceAuthentication.CalculateAuthenticationData(sysAuthServiceAuthentication.m_LocalPublicKey, sysAuthServiceAuthentication.m_RemotePublicKey, out initializationVector), + InitializationVector = initializationVector + }; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: Calculated authentication data to return"); + ArchestrAResult result = ResultFactory.MakeGoodResult(); + sysAuthServiceAuthentication.Lifetime = sysAuthServiceAuthentication.m_SolutionParameters.ConnectionLifetime; + connectResponse = new ConnectResponse(servicePublicKey, serviceAuthenticationData, sysAuthServiceAuthentication.Lifetime + ":" + SysAuthConnectionBase.ASBAuthenticationVersion); + connectResponse.Result = result; + sysAuthServiceAuthentication.SignatureMethod = SigningMethod.Baktun; + sysAuthServiceAuthentication.Sign(connectResponse, ForceHmac: true); + sysAuthServiceAuthentication.SignatureMethod = SigningMethod.Apollo; + sysAuthServiceAuthentication.ReasonSecureSessionNotEstablished = string.Empty; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: Signed Connect response message"); + } + return connectResponse; + } + + [CLSCompliant(false)] + public bool ProcessClientAuthenticateMe(AuthenticateMe request) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: Processing client AuthenticateMe() call for connection id {0}", connectionID.ToString()); + base.SignatureMethod = SigningMethod.Apollo; + if (!ValidRequest(request, ForceHmac: true)) + { + base.SignatureMethod = SigningMethod.Baktun; + if (!ValidRequest(request, ForceHmac: true)) + { + return false; + } + } + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: AuthenticateMe() validated, signing set to {0}", (base.SignatureMethod == SigningMethod.Baktun) ? "System Platform 2012R2 Comptibility" : "System Platform 2014 Compatibility"); + AuthenticationData consumerAuthenticationData = request.ConsumerAuthenticationData; + if (consumerAuthenticationData != null) + { + byte[] expected = ReCalculateAuthenticationData(m_RemotePublicKey, m_LocalPublicKey, consumerAuthenticationData.InitializationVector); + if (consumerAuthenticationData.AreEqual(expected)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 100, "SysSvcAuth: AuthenticateMe() authenticated client"); + m_Authenticated = true; + } + } + return m_Authenticated; + } + + [CLSCompliant(false)] + public static RenewResponse ProcessClientRenew(RenewRequest request) + { + SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId)?.ValidRequest(request); + return null; + } + + [CLSCompliant(false)] + public static void ProcessClientUpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfiguration request) + { + SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId)?.ValidRequest(request); + } + + [CLSCompliant(false)] + public void ProcessClientDisconnect(Disconnect request) + { + AuthenticationData consumerAuthenticationData = request.ConsumerAuthenticationData; + if (consumerAuthenticationData != null) + { + byte[] bytes = Decypher(consumerAuthenticationData.Data, consumerAuthenticationData.InitializationVector); + if (Guid.TryParse(Encoding.UTF8.GetString(bytes), out var result) && result == connectionID) + { + SysAuthenticatorServiceCache.RemoveServiceAuthenticator(result); + } + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthenticatorClientCache.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthenticatorClientCache.cs new file mode 100644 index 0000000..022a15c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthenticatorClientCache.cs @@ -0,0 +1,85 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +namespace ArchestrAServices.ASBContract; + +public class SysAuthenticatorClientCache : SynchronizedKeyedCollection +{ + private static readonly SysAuthenticatorClientCache clientConnections = new SysAuthenticatorClientCache(); + + private static object cacheLockObject = new object(); + + private SysAuthenticatorClientCache() + { + } + + public static IEnumerable GetAllClientAuthenticators() + { + List list = new List(); + lock (cacheLockObject) + { + list.AddRange(clientConnections.Items); + return list; + } + } + + public static void AddClientAuthenticator(SysAuthClientAuthentication clientAuthenticator) + { + lock (cacheLockObject) + { + clientConnections.Purge(); + } + if (clientAuthenticator == null) + { + return; + } + lock (cacheLockObject) + { + if (!clientConnections.Contains(clientAuthenticator.connectionID)) + { + clientConnections.Add(clientAuthenticator); + } + } + } + + public static SysAuthClientAuthentication GetClientAuthenticator(Guid connectionId) + { + SysAuthClientAuthentication result = null; + lock (cacheLockObject) + { + if (clientConnections.Contains(connectionId)) + { + result = clientConnections[connectionId]; + } + } + return result; + } + + public static SysAuthClientAuthentication RemoveClientAuthenticator(Guid connectionId) + { + SysAuthClientAuthentication result = GetClientAuthenticator(connectionId); + lock (cacheLockObject) + { + if (clientConnections.Contains(connectionId)) + { + result = clientConnections[connectionId]; + clientConnections.Remove(connectionId); + } + } + return result; + } + + protected void Purge() + { + foreach (Guid item in this.Where((SysAuthClientAuthentication item) => !item.IsOwnerAlive).Select(GetKeyForItem).ToList()) + { + Remove(item); + } + } + + protected override Guid GetKeyForItem(SysAuthClientAuthentication item) + { + return item.connectionID; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthenticatorServiceCache.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthenticatorServiceCache.cs new file mode 100644 index 0000000..d593a60 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/SysAuthenticatorServiceCache.cs @@ -0,0 +1,71 @@ +using System; +using System.Collections.Generic; + +namespace ArchestrAServices.ASBContract; + +public class SysAuthenticatorServiceCache : SynchronizedKeyedCollection +{ + private static readonly SysAuthenticatorServiceCache serviceConnections = new SysAuthenticatorServiceCache(); + + private static object ServiceCacheLockObject = new object(); + + private SysAuthenticatorServiceCache() + { + } + + public static IEnumerable GetAllServiceAuthenticators() + { + List list = new List(); + lock (ServiceCacheLockObject) + { + list.AddRange(serviceConnections.Items); + return list; + } + } + + public static void AddServiceAuthenticator(SysAuthServiceAuthentication serviceAuthenticator) + { + if (serviceAuthenticator == null) + { + return; + } + lock (ServiceCacheLockObject) + { + if (!serviceConnections.Contains(serviceAuthenticator.connectionID)) + { + serviceConnections.Add(serviceAuthenticator); + } + } + } + + public static SysAuthServiceAuthentication GetServiceAuthenticator(Guid connectionId) + { + SysAuthServiceAuthentication result = null; + lock (ServiceCacheLockObject) + { + if (serviceConnections.Contains(connectionId)) + { + result = serviceConnections[connectionId]; + } + } + return result; + } + + public static SysAuthServiceAuthentication RemoveServiceAuthenticator(Guid connectionId) + { + SysAuthServiceAuthentication serviceAuthenticator = GetServiceAuthenticator(connectionId); + if (serviceAuthenticator != null) + { + lock (ServiceCacheLockObject) + { + serviceConnections.Remove(connectionId); + } + } + return serviceAuthenticator; + } + + protected override Guid GetKeyForItem(SysAuthServiceAuthentication item) + { + return item.connectionID; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/UpdateSystemAuthenticationConfiguration.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/UpdateSystemAuthenticationConfiguration.cs new file mode 100644 index 0000000..18ac476 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/ArchestrAServices.ASBContract/UpdateSystemAuthenticationConfiguration.cs @@ -0,0 +1,31 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "UpdateSystemAuthenticationConfigurationRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public class UpdateSystemAuthenticationConfiguration : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public string EncryptedConfigurationData; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] + [XmlElement(DataType = "base64Binary")] + public byte[] InitializationVector; + + public UpdateSystemAuthenticationConfiguration() + { + } + + public UpdateSystemAuthenticationConfiguration(string EncryptedConfigurationData, byte[] InitializationVector) + { + this.EncryptedConfigurationData = EncryptedConfigurationData; + this.InitializationVector = InitializationVector; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.ContractTypes/UserTokenContract.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.ContractTypes/UserTokenContract.cs new file mode 100644 index 0000000..f5fed3a --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.ContractTypes/UserTokenContract.cs @@ -0,0 +1,39 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2.ContractTypes; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class UserTokenContract +{ + [XmlElement(IsNullable = true, ElementName = "Encryption", Order = 0)] + public ushort? Encryption { get; set; } + + [XmlElement(IsNullable = true, ElementName = "HostName", Order = 1)] + public string HostName { get; set; } + + [XmlElement(IsNullable = true, ElementName = "IdType", Order = 2)] + public ushort? IdType { get; set; } + + [XmlElement(IsNullable = true, ElementName = "LocationId", Order = 3)] + public string LocationId { get; set; } + + [XmlElement(IsNullable = true, ElementName = "UserName", Order = 4)] + public string UserName { get; set; } + + [XmlElement(DataType = "base64Binary", IsNullable = true, ElementName = "Password", Order = 5)] + public byte[] Password { get; set; } + + [XmlElement(IsNullable = true, ElementName = "Validity", Order = 6)] + public ushort? Validity { get; set; } + + [XmlElement(DataType = "base64Binary", IsNullable = true, ElementName = "SamlToken", Order = 7)] + public byte[] SamlToken { get; set; } + + [XmlElement(DataType = "base64Binary", IsNullable = true, ElementName = "JwtToken", Order = 8)] + public byte[] JwtToken { get; set; } + + [XmlElement(DataType = "base64Binary", IsNullable = true, ElementName = "X509Certificate", Order = 9)] + public byte[] X509Certificate { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2Serializer.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2Serializer.cs new file mode 100644 index 0000000..e752da1 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2Serializer.cs @@ -0,0 +1,122 @@ +using System; +using System.IO; +using System.Runtime.Serialization; +using System.Xml; + +namespace Asb.Base.V2.Serialization; + +public sealed class BaseV2Serializer : XmlObjectSerializer +{ + private const string BaseV2Prefix = "ASBBaseV2"; + + private readonly Type elementType; + + private readonly bool useCustomSerialization; + + private readonly XmlObjectSerializer fallbackSerializer; + + public BaseV2Serializer(Type type, XmlObjectSerializer fallbackSerializer) + { + this.fallbackSerializer = fallbackSerializer; + elementType = type; + if (!(type == null)) + { + Type c = (type.IsArray ? type.GetElementType() : type); + useCustomSerialization = typeof(IBaseV2CustomSerializable).IsAssignableFrom(c); + } + } + + public override bool IsStartObject(XmlDictionaryReader reader) + { + if (useCustomSerialization) + { + return string.Compare(reader.LocalName, "ASBBaseV2", StringComparison.CurrentCultureIgnoreCase) == 0; + } + return fallbackSerializer.IsStartObject(reader); + } + + public override object ReadObject(XmlDictionaryReader reader, bool verifyObjectName) + { + if (useCustomSerialization) + { + using MemoryStream input = new MemoryStream(reader.ReadElementContentAsBase64()); + using BinaryReader binaryReader = new BinaryReader(input); + if (binaryReader.ReadBoolean()) + { + return null; + } + if (Activator.CreateInstance(elementType.IsArray ? elementType.GetElementType() : elementType) is IBaseV2CustomSerializable baseV2CustomSerializable) + { + if (elementType.IsArray) + { + int arrayLength = binaryReader.ReadInt32(); + return baseV2CustomSerializable.InitializeArrayFromStream(binaryReader, arrayLength); + } + baseV2CustomSerializable.InitializeFromStream(binaryReader); + return baseV2CustomSerializable; + } + } + return fallbackSerializer.ReadObject(reader, verifyObjectName); + } + + public override void WriteEndObject(XmlDictionaryWriter writer) + { + if (useCustomSerialization) + { + writer.WriteEndElement(); + } + else + { + fallbackSerializer.WriteEndObject(writer); + } + } + + public override void WriteObjectContent(XmlDictionaryWriter writer, object graph) + { + bool flag = false; + if (useCustomSerialization) + { + using MemoryStream memoryStream = new MemoryStream(); + using BinaryWriter binaryWriter = new BinaryWriter(memoryStream); + binaryWriter.Write(graph == null); + if (graph == null) + { + flag = true; + } + else if (elementType.IsArray) + { + if (Activator.CreateInstance(elementType.GetElementType()) is IBaseV2CustomSerializable baseV2CustomSerializable) + { + baseV2CustomSerializable.WriteArrayToStream(graph, binaryWriter); + flag = true; + } + } + else if (graph is IBaseV2CustomSerializable baseV2CustomSerializable2) + { + baseV2CustomSerializable2.WriteToStream(binaryWriter); + flag = true; + } + if (flag) + { + byte[] array = memoryStream.ToArray(); + writer.WriteBase64(array, 0, array.Length); + } + } + if (!flag) + { + fallbackSerializer.WriteObjectContent(writer, graph); + } + } + + public override void WriteStartObject(XmlDictionaryWriter writer, object graph) + { + if (useCustomSerialization) + { + writer.WriteStartElement("ASBBaseV2"); + } + else + { + fallbackSerializer.WriteStartObject(writer, graph); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2SerializerContractBehaviorAttribute.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2SerializerContractBehaviorAttribute.cs new file mode 100644 index 0000000..e55f0c6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2SerializerContractBehaviorAttribute.cs @@ -0,0 +1,79 @@ +using System; +using System.ServiceModel.Channels; +using System.ServiceModel.Description; +using System.ServiceModel.Dispatcher; + +namespace Asb.Base.V2.Serialization; + +public sealed class BaseV2SerializerContractBehaviorAttribute : Attribute, IContractBehavior +{ + public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) + { + } + + public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime) + { + ReplaceSerializerOperationBehavior(contractDescription); + } + + public void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, DispatchRuntime dispatchRuntime) + { + ReplaceSerializerOperationBehavior(contractDescription); + } + + public void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint) + { + foreach (OperationDescription operation in contractDescription.Operations) + { + foreach (MessageDescription message in operation.Messages) + { + ValidateMessagePartDescription(message.Body.ReturnValue); + foreach (MessagePartDescription part in message.Body.Parts) + { + ValidateMessagePartDescription(part); + } + foreach (MessageHeaderDescription header in message.Headers) + { + ValidateCustomSerializableType(header.Type); + } + } + } + } + + private static void ValidateMessagePartDescription(MessagePartDescription part) + { + if (part != null) + { + ValidateCustomSerializableType(part.Type); + } + } + + private static void ValidateCustomSerializableType(Type type) + { + if (typeof(IBaseV2CustomSerializable).IsAssignableFrom(type)) + { + if (!type.IsPublic) + { + throw new InvalidOperationException("Custom serialization is supported in public types only"); + } + if (type.IsClass && type.GetConstructor(new Type[0]) == null) + { + throw new InvalidOperationException("Custom serializable types must have a public, parameterless constructor"); + } + } + } + + private static void ReplaceSerializerOperationBehavior(ContractDescription contract) + { + foreach (OperationDescription operation in contract.Operations) + { + for (int i = 0; i < operation.Behaviors.Count; i++) + { + if (operation.Behaviors[i] is DataContractSerializerOperationBehavior) + { + operation.Behaviors[i] = new BaseV2SerializerOperationBehavior(operation); + } + } + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2SerializerOperationBehavior.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2SerializerOperationBehavior.cs new file mode 100644 index 0000000..0cfbb30 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/BaseV2SerializerOperationBehavior.cs @@ -0,0 +1,30 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Runtime.Serialization; +using System.ServiceModel.Description; +using System.Xml; +using ArchestrAServices.Common; + +namespace Asb.Base.V2.Serialization; + +public class BaseV2SerializerOperationBehavior : DataContractSerializerOperationBehavior +{ + public BaseV2SerializerOperationBehavior(OperationDescription operation) + : base(operation) + { + } + + public override XmlObjectSerializer CreateSerializer(Type type, string name, string ns, IList knownTypes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "BaseV2SerializerOperationBehavior:CreateSerializer-creating an instance for BaseV2Serializer class"); + return new BaseV2Serializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } + + public override XmlObjectSerializer CreateSerializer(Type type, XmlDictionaryString name, XmlDictionaryString ns, IList knownTypes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "BaseV2SerializerOperationBehavior:CreateSerializer-creating an instance for BaseV2Serializer class"); + return new BaseV2Serializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/IBaseV2CustomSerializable.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/IBaseV2CustomSerializable.cs new file mode 100644 index 0000000..263590e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/IBaseV2CustomSerializable.cs @@ -0,0 +1,14 @@ +using System.IO; + +namespace Asb.Base.V2.Serialization; + +public interface IBaseV2CustomSerializable +{ + void WriteToStream(BinaryWriter writer); + + void InitializeFromStream(BinaryReader reader); + + void WriteArrayToStream(object graph, BinaryWriter writer); + + object InitializeArrayFromStream(BinaryReader reader, int arrayLength); +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/SerializationExtensions.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/SerializationExtensions.cs new file mode 100644 index 0000000..38b6f69 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2.Serialization/SerializationExtensions.cs @@ -0,0 +1,33 @@ +using System; +using System.IO; + +namespace Asb.Base.V2.Serialization; + +public static class SerializationExtensions +{ + public static void WriteStringSafe(this BinaryWriter writer, string value) + { + if (writer == null) + { + throw new ArgumentNullException("writer"); + } + writer.Write(value == null); + if (value != null) + { + writer.Write(value); + } + } + + public static string ReadStringSafe(this BinaryReader reader) + { + if (reader == null) + { + throw new ArgumentNullException("reader"); + } + if (!reader.ReadBoolean()) + { + return reader.ReadString(); + } + return null; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAError.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAError.cs new file mode 100644 index 0000000..14e08eb --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAError.cs @@ -0,0 +1,43 @@ +namespace Asb.Base.V2; + +public enum ArchestrAError +{ + Success = 0, + InvalidConnectionId = 1, + ApplicationAuthenticationError = 2, + UserAuthenticationError = 3, + UserAuthorizationError = 4, + NotSupportedOperation = 5, + MonitoredItemsNotFound = 6, + InvalidSubscriptionId = 7, + ItemAlreadyRegistered = 8, + ItemAlreadyDeletedOrDoesNotExist = 9, + InvalidMonitoredItems = 10, + OperationFailed = 11, + SpecificError = 12, + BadNoCommunication = 13, + BadNothingToDo = 14, + BadTooManyOperations = 15, + BadNodeIdInvalid = 16, + BrowseFailed = 17, + WriteFailedBadOutOfRange = 18, + WriteFailedBadTypeMismatch = 19, + WriteFailedBadDimensionMismatch = 20, + WriteFailedAccessDenied = 21, + WriteFailedSecuredWrite = 22, + WriteFailedVerifiedWrite = 23, + IndexOutOfRange = 24, + RequestTimedOut = 25, + DataTypeConversionNotSupported = 26, + ItemCannotBeRegisteredNoName = 27, + ItemCannotBeRegisteredNoId = 28, + ItemAlreadyBeingMonitored = 29, + SubscriptionIdAlreadyExist = 30, + OperationWouldBlock = 31, + PublishComplete = 32, + WriteFailedUserNotHavingAccessRights = 33, + WriteFailedVerifierNotHavingVerifyRights = 34, + NotLicensedError = 35, + DownstreamDeviceUnavailable = 36, + Unknown = 65535 +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAResult.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAResult.cs new file mode 100644 index 0000000..1ef14c8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAResult.cs @@ -0,0 +1,130 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class ArchestrAResult +{ + [XmlElement(ElementName = "Success", Order = 0)] + public bool Success { get; set; } + + [XmlElement(ElementName = "ResultCode", Order = 1)] + public int ResultCode { get; set; } + + [XmlElement(ElementName = "SpecificErrorCode", Order = 2)] + public uint SpecificErrorCode { get; set; } + + [XmlElement(ElementName = "Status", Order = 3)] + public uint Status { get; set; } + + [XmlElement(ElementName = "Location", Order = 4)] + public string Location { get; set; } + + [XmlElement(ElementName = "SuccessMessages", Order = 5)] + public string[] SuccessMessages { get; set; } + + [XmlElement(ElementName = "InformationMessages", Order = 6)] + public string[] InformationMessages { get; set; } + + [XmlElement(ElementName = "ErrorMessages", Order = 7)] + public string[] ErrorMessages { get; set; } + + [XmlElement(ElementName = "Extensions", Order = 8)] + public NamedValue[] Extensions { get; set; } + + [XmlIgnore] + public static bool CollectStackTraceInExceptions { get; set; } + + [XmlIgnore] + public ArchestrAError ResultCodeAsError + { + get + { + if (ResultCode < 65535) + { + return (ArchestrAError)ResultCode; + } + return ArchestrAError.Unknown; + } + set + { + ResultCode = (int)value; + } + } + + public static ArchestrAResult Create(ArchestrAResult archestraResult) + { + ArchestrAResult archestrAResult = archestraResult; + if (archestrAResult == null) + { + archestrAResult = new ArchestrAResult + { + Success = true, + ErrorMessages = new string[0], + InformationMessages = new string[0], + SuccessMessages = new string[0], + Extensions = new NamedValue[0], + ResultCode = 0 + }; + } + return archestrAResult; + } + + public static ArchestrAResult MakeGoodResult() + { + return new ArchestrAResult + { + ResultCodeAsError = ArchestrAError.Success, + Status = 0u, + SpecificErrorCode = 0u, + Success = true + }; + } + + public static ArchestrAResult MakeResult(ArchestrAError error, ushort status) + { + return new ArchestrAResult + { + ResultCodeAsError = error, + Status = status, + Success = (error == ArchestrAError.Success) + }; + } + + public static ArchestrAResult MakeResult(ArchestrAError error, ushort status, uint specificError) + { + return new ArchestrAResult + { + ResultCodeAsError = error, + Status = status, + SpecificErrorCode = specificError, + Success = (error == ArchestrAError.Success) + }; + } + + public static ArchestrAResult MakeErrorResult(string message) + { + if (string.IsNullOrWhiteSpace(message)) + { + throw new ArgumentNullException("message"); + } + return MakeResult(ArchestrAError.Unknown, 0, 0u).AddErrorMessage(message); + } + + public static ArchestrAResult MakeErrorResult(ArchestrAError error, string message) + { + if (string.IsNullOrWhiteSpace(message)) + { + throw new ArgumentNullException("message"); + } + return MakeResult(ArchestrAError.Unknown, 0, 0u).AddErrorMessage(message); + } + + public static ArchestrAResult MakeNotLicensedResult(string message) + { + string message2 = (string.IsNullOrWhiteSpace(message) ? "The requested connection is not licensed for the operation and will be terminated" : message); + return MakeResult(ArchestrAError.NotLicensedError, 0, 0u).AddErrorMessage(message2); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAResultExtensions.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAResultExtensions.cs new file mode 100644 index 0000000..571b980 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ArchestrAResultExtensions.cs @@ -0,0 +1,258 @@ +using System.Collections.Generic; +using System.ComponentModel; +using System.Globalization; +using System.Linq; +using System.Text; + +namespace Asb.Base.V2; + +public static class ArchestrAResultExtensions +{ + public static ArchestrAResult AddSuccessMessage(this ArchestrAResult result, [Localizable(false)] string message, params object[] arguments) + { + if (result == null) + { + return null; + } + result.AddSuccessMessage(FormatMessage(message, arguments)); + return result; + } + + public static ArchestrAResult AddSuccessMessage(this ArchestrAResult result, [Localizable(false)] string message) + { + if (result == null) + { + return null; + } + if (string.IsNullOrEmpty(message)) + { + return result; + } + if (result.SuccessMessages == null) + { + result.SuccessMessages = new string[0]; + } + List list = result.SuccessMessages.ToList(); + list.Add(message); + result.SuccessMessages = list.ToArray(); + return result; + } + + public static ArchestrAResult AddInformationMessage(this ArchestrAResult result, [Localizable(false)] string message, params object[] arguments) + { + if (result == null) + { + return null; + } + result.AddInformationMessage(FormatMessage(message, arguments)); + return result; + } + + public static ArchestrAResult AddInformationMessage(this ArchestrAResult result, [Localizable(false)] string message) + { + if (result == null) + { + return null; + } + if (string.IsNullOrEmpty(message)) + { + return result; + } + if (result.InformationMessages == null) + { + result.InformationMessages = new string[0]; + } + List list = result.InformationMessages.ToList(); + list.Add(message); + result.InformationMessages = list.ToArray(); + return result; + } + + public static ArchestrAResult AddErrorMessage(this ArchestrAResult result, [Localizable(false)] string message, params object[] arguments) + { + if (result == null) + { + return null; + } + result.AddErrorMessage(FormatMessage(message, arguments)); + return result; + } + + public static ArchestrAResult AddErrorMessage(this ArchestrAResult result, [Localizable(false)] string message) + { + if (result == null) + { + return null; + } + if (string.IsNullOrEmpty(message)) + { + return result; + } + if (result.ErrorMessages == null) + { + result.ErrorMessages = new string[0]; + } + List list = result.ErrorMessages.ToList(); + list.Add(message); + result.ErrorMessages = list.ToArray(); + return result; + } + + public static ArchestrAResult AddErrorMessages(this ArchestrAResult result, IEnumerable messages) + { + if (result == null) + { + return null; + } + if (messages == null) + { + return result; + } + if (result.ErrorMessages == null) + { + result.ErrorMessages = new string[0]; + } + List list = result.ErrorMessages.ToList(); + list.AddRange(messages); + result.ErrorMessages = list.ToArray(); + return result; + } + + public static ArchestrAResult AddExtension(this ArchestrAResult result, NamedValue extension) + { + if (result == null) + { + return null; + } + if (extension == null) + { + return result; + } + if (result.Extensions == null) + { + result.Extensions = new NamedValue[0]; + } + List list = result.Extensions.ToList(); + list.Add(extension); + result.Extensions = list.ToArray(); + return result; + } + + public static ArchestrAResult AddExtension(this ArchestrAResult result, [Localizable(false)] string name, object value) + { + if (result == null) + { + return null; + } + if (result.Extensions == null) + { + result.Extensions = new NamedValue[0]; + } + List list = result.Extensions.ToList(); + list.Add(new NamedValue + { + Name = name, + Value = Value.Create(value) + }); + result.Extensions = list.ToArray(); + return result; + } + + public static ArchestrAResult Concatenate(this ArchestrAResult thisResult, ArchestrAResult result) + { + if (thisResult == null) + { + return null; + } + if (result != null) + { + if (!result.Success) + { + thisResult.Success = false; + } + if (result.ErrorMessages != null) + { + if (thisResult.ErrorMessages == null) + { + thisResult.ErrorMessages = new string[0]; + } + List list = thisResult.ErrorMessages.ToList(); + list.AddRange(result.ErrorMessages); + thisResult.ErrorMessages = list.ToArray(); + } + if (result.InformationMessages != null) + { + if (thisResult.InformationMessages == null) + { + thisResult.InformationMessages = new string[0]; + } + List list2 = thisResult.InformationMessages.ToList(); + list2.AddRange(result.InformationMessages); + thisResult.ErrorMessages = list2.ToArray(); + } + if (result.SuccessMessages != null) + { + if (thisResult.SuccessMessages == null) + { + thisResult.SuccessMessages = new string[0]; + } + List list3 = thisResult.SuccessMessages.ToList(); + list3.AddRange(result.SuccessMessages); + thisResult.SuccessMessages = list3.ToArray(); + } + if (result.Extensions != null) + { + if (thisResult.Extensions == null) + { + thisResult.Extensions = new NamedValue[0]; + } + List list4 = thisResult.Extensions.ToList(); + list4.AddRange(result.Extensions); + thisResult.Extensions = list4.ToArray(); + } + if (thisResult.ResultCode == 0) + { + thisResult.ResultCode = result.ResultCode; + } + } + return result; + } + + public static string ToFormattedString(this ArchestrAResult result) + { + if (result == null) + { + return null; + } + StringBuilder stringBuilder = new StringBuilder(); + if (result.Success) + { + stringBuilder.Append("Success"); + if (result.SuccessMessages != null && result.SuccessMessages.Length != 0) + { + stringBuilder.Append(": "); + stringBuilder.Append(string.Join("| ", result.SuccessMessages)); + } + } + else + { + stringBuilder.Append("Failure"); + if (result.ErrorMessages != null && result.ErrorMessages.Length != 0) + { + stringBuilder.Append(": "); + stringBuilder.Append(string.Join("| ", result.ErrorMessages)); + } + } + return stringBuilder.ToString(); + } + + private static string FormatMessage([Localizable(false)] string message, params object[] arguments) + { + string result = message; + if (arguments != null && arguments.Length != 0) + { + result = string.Format(CultureInfo.CurrentCulture, message, arguments); + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticateMeRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticateMeRequest.cs new file mode 100644 index 0000000..bdb8834 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticateMeRequest.cs @@ -0,0 +1,27 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "AuthenticateMe", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class AuthenticateMeRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "ConsumerAuthenticationData")] + public AuthenticationData ConsumerAuthenticationData { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 1)] + [XmlElement(ElementName = "ConsumerMetaData")] + public ClientMetadata ConsumerMetaData { get; set; } + + public AuthenticateMeRequest() + { + } + + public AuthenticateMeRequest(AuthenticationData consumerAuthenticationData, ClientMetadata consumerMetaData) + { + ConsumerAuthenticationData = consumerAuthenticationData; + ConsumerMetaData = consumerMetaData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticateMeResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticateMeResponse.cs new file mode 100644 index 0000000..72aa894 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticateMeResponse.cs @@ -0,0 +1,18 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "AuthenticateMeResponse", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class AuthenticateMeResponse : ConnectedResponse +{ + public AuthenticateMeResponse() + { + } + + public AuthenticateMeResponse(ArchestrAResult result, ConnectionState downstreamConnectionState) + : base(result, downstreamConnectionState) + { + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticationData.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticationData.cs new file mode 100644 index 0000000..a3b9999 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticationData.cs @@ -0,0 +1,15 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class AuthenticationData +{ + [XmlElement(ElementName = "Data", DataType = "base64Binary", Order = 0)] + public byte[] Data { get; set; } + + [XmlElement(ElementName = "InitializationVector", DataType = "base64Binary", Order = 1)] + public byte[] InitializationVector { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticationDataExtensions.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticationDataExtensions.cs new file mode 100644 index 0000000..7e9549c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/AuthenticationDataExtensions.cs @@ -0,0 +1,44 @@ +namespace Asb.Base.V2; + +public static class AuthenticationDataExtensions +{ + public static bool AreEqual(this AuthenticationData value, AuthenticationData other) + { + try + { + if (value != null && value.Data != null && other != null && other.Data != null) + { + return value.AreEqual(other.Data); + } + } + catch + { + } + return false; + } + + public static bool AreEqual(this AuthenticationData value, byte[] expected) + { + bool result = false; + try + { + if (value != null && value.Data != null && expected != null && value.Data.Length == expected.Length) + { + result = true; + for (int i = 0; i < value.Data.Length; i++) + { + if (value.Data[i] != expected[i]) + { + result = false; + break; + } + } + } + } + catch + { + result = false; + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/BaseV2Client.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/BaseV2Client.cs new file mode 100644 index 0000000..5de04b8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/BaseV2Client.cs @@ -0,0 +1,661 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Globalization; +using System.Linq; +using System.Net; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Discovery; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using System.Xml; +using ArchestrAServices.Common; +using ArchestrAServices.Proxy; +using Asb.Base.V2.ContractTypes; + +namespace Asb.Base.V2; + +public class BaseV2Client : IBaseV2, IDisposable where T : class, IAuthenticateAsb +{ + private readonly object connectionLock = new object(); + + private readonly string connectionUser = string.Empty; + + private readonly string connectionApplication = string.Empty; + + private readonly TimeSpan timeToWaitForConnection = DefaultTimeToWaitForConnection; + + private IClientManagement clientManager; + + private long connectionInProgress; + + private ConnectContext successfulConnectionResult; + + private ManualResetEvent connectionEstablishedEvent; + + private bool disposed; + + public static TimeSpan DefaultTimeToWaitForConnection => TimeSpan.FromSeconds(20.0); + + public SecureCommunicationModes SecureCommunicationMode { get; set; } + + public DateTime ServiceLoadTime { get; set; } + + public bool Connected + { + get + { + if (successfulConnectionResult?.ServiceChannel != null) + { + return successfulConnectionResult.ServiceChannel.State == CommunicationState.Opened; + } + return false; + } + } + + public CommunicationState State + { + get + { + if (successfulConnectionResult != null && successfulConnectionResult.ServiceChannel != null) + { + return successfulConnectionResult.ServiceChannel.State; + } + return CommunicationState.Closed; + } + } + + public ConnectionState DownstreamConnectionState { get; protected set; } + + internal ConnectContext Context => successfulConnectionResult; + + protected T ChannelClient => successfulConnectionResult.ServiceClient; + + public Guid ConnectionId + { + get + { + if (successfulConnectionResult != null) + { + return successfulConnectionResult.ConnectionId; + } + return Guid.Empty; + } + set + { + } + } + + public BaseV2Client() + { + clientManager = new ClientManagement(); + SecureCommunicationMode = RegistryHandler.SecureCommunicationMode; + } + + public BaseV2Client(TimeSpan connectTimeout) + : this() + { + if (connectTimeout.TotalMilliseconds > 2147483647.0 || connectTimeout < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException("connectTimeout"); + } + timeToWaitForConnection = connectTimeout; + } + + internal BaseV2Client(TimeSpan connectTimeout, IClientManagement manager) + : this(manager) + { + if (connectTimeout.TotalMilliseconds > 2147483647.0 || connectTimeout < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException("connectTimeout"); + } + timeToWaitForConnection = connectTimeout; + } + + internal BaseV2Client(TimeSpan connectTimeout, IClientManagement manager, string application, string user) + : this(connectTimeout, manager) + { + connectionApplication = application; + connectionUser = user; + } + + public BaseV2Client(TimeSpan connectTimeout, string application, string user) + : this(connectTimeout) + { + connectionApplication = application; + connectionUser = user; + } + + internal BaseV2Client(IClientManagement manager) + { + clientManager = manager; + SecureCommunicationMode = RegistryHandler.SecureCommunicationMode; + } + + public bool Connect(EndpointDiscoveryMetadata selectedMetadata, string solutionName, ClientAccess access, Action errorCallback) + { + return Connect(selectedMetadata, solutionName, access, errorCallback, useSecureConnection: false); + } + + public bool Connect(EndpointDiscoveryMetadata selectedMetadata, string solutionName, ClientAccess access, Action errorCallback, bool useSecureConnection) + { + ServiceTrace.LogCsv("Connect (endpoint discovered) entry"); + ServiceTrace.LogResume("Connect (endpoint discovered) entry"); + if (Interlocked.CompareExchange(ref connectionInProgress, 1L, 0L) != 0L) + { + string text = string.Format(CultureInfo.InvariantCulture, "Connect: another connection is in progress, cannot attempt a connection using selected discovery metadata"); + ServiceTrace.LogError(text); + errorCallback?.Invoke(text); + return false; + } + try + { + bool flag = EstablishConnection(selectedMetadata, solutionName, access, errorCallback, useSecureConnection); + ServiceTrace.LogSuspend("Connect (endpoint discovered) exit, {0}", flag ? "succeeded" : "failed"); + ServiceTrace.LogCsv("Connect (endpoint discovered) exit [success]", flag); + return flag; + } + finally + { + Interlocked.Exchange(ref connectionInProgress, 0L); + } + } + + public void Disconnect() + { + ServiceTrace.LogCsv("Disconnect entry"); + ServiceTrace.LogResume("Disconnect entry"); + if (successfulConnectionResult == null || !successfulConnectionResult.Success) + { + return; + } + SystemAuthenticationClientAuthentication.DisconnectSecureSession(successfulConnectionResult.ConnectionId, delegate(DisconnectRequest request) + { + if (successfulConnectionResult != null && successfulConnectionResult.Success) + { + if (successfulConnectionResult.ServiceClient != null && successfulConnectionResult.ServiceChannel != null && successfulConnectionResult.ServiceChannel.State != CommunicationState.Faulted) + { + ServiceTrace.LogCsv("Calling WCF channel Disconnect method"); + successfulConnectionResult.ServiceClient.Disconnect(request); + ServiceTrace.LogCsv("Returned from WCF channel Disconnect method"); + } + Reset(); + } + }); + DownstreamConnectionState = ConnectionState.Unknown; + ServiceTrace.LogSuspend("Disconnect exit"); + ServiceTrace.LogCsv("Disconnect exit"); + } + + public void Abort() + { + Reset(); + } + + internal void InjectClientManager(IClientManagement manager) + { + clientManager = manager; + } + + protected static ReadOnlyCollection DiscoverEndpoints(XmlQualifiedName contract, string scopeRule) + { + return DiscoverEndpoints(contract, scopeRule, null); + } + + protected static ReadOnlyCollection DiscoverEndpoints(XmlQualifiedName contract, string scopeRule, bool? useSecureConnection) + { + List list = new ClientManagement().DiscoverEndpointsForContract(contract, scopeRule)?.ToList(); + if (list == null) + { + ServiceTrace.LogWarning(string.Format(CultureInfo.InvariantCulture, "DiscoverEndpoints: null FindResponse finding contract {0} with access name {1}", new object[2] { contract.Name, scopeRule })); + return new ReadOnlyCollection(new EndpointDiscoveryMetadata[0]); + } + if (list.Count == 0) + { + ServiceTrace.LogInfo(string.Format(CultureInfo.InvariantCulture, "DiscoverEndpoints found no endpoints for contract {0} with access name {1}", new object[2] { contract.Name, scopeRule })); + return new ReadOnlyCollection(new EndpointDiscoveryMetadata[0]); + } + return new ReadOnlyCollection(list); + } + + protected bool Connect(XmlQualifiedName contract, string scopeRule, ClientAccess access, Action errorCallback) + { + return Connect(contract, scopeRule, access, errorCallback, useSecureConnection: false); + } + + protected bool Connect(XmlQualifiedName contract, string scopeRule, ClientAccess access, Action errorCallback, bool useSecureConnection) + { + ServiceTrace.LogCsv("Connect (discover endpoint) entry"); + ServiceTrace.LogResume("Connect (discover endpoint) entry"); + if (contract == null) + { + string text = string.Format(CultureInfo.InvariantCulture, "Connect: no contract provided, no connection is possible"); + ServiceTrace.LogError(text); + errorCallback?.Invoke(text); + return false; + } + if (Interlocked.CompareExchange(ref connectionInProgress, 1L, 0L) != 0L) + { + string text2 = string.Format(CultureInfo.InvariantCulture, "Connect: another connection is in progress, cannot attempt a connection with a specified contract and access name"); + ServiceTrace.LogError(text2); + errorCallback?.Invoke(text2); + return false; + } + try + { + List list = clientManager.DiscoverEndpointsForContract(contract, scopeRule)?.ToList(); + if (list == null) + { + string text3 = string.Format(CultureInfo.InvariantCulture, "Connect: null FindResponse finding contract {0} with access name {1}", new object[2] { contract.Name, scopeRule }); + ServiceTrace.LogError(text3); + errorCallback?.Invoke(text3); + return false; + } + if (list.Count == 0) + { + string text4 = string.Format(CultureInfo.InvariantCulture, "Connect found no endpoints for contract {0} with access name {1}", new object[2] { contract.Name, scopeRule }); + ServiceTrace.LogError(text4); + errorCallback?.Invoke(text4); + return false; + } + EndpointDiscoveryMetadata selectedMetadata; + if (list.Count > 1) + { + Random random = new Random(DateTime.Now.Millisecond); + selectedMetadata = list[random.Next(list.Count)]; + } + else + { + selectedMetadata = list[0]; + } + bool flag = EstablishConnection(selectedMetadata, string.Empty, access, errorCallback, useSecureConnection); + ServiceTrace.LogSuspend("Connect (discover endpoint) exit, {0}", flag ? "succeeded" : "failed"); + ServiceTrace.LogCsv("Connect (discover endpoint) exit [success]", flag); + return flag; + } + finally + { + Interlocked.Exchange(ref connectionInProgress, 0L); + } + } + + protected UserTokenContract EncryptUserToken(UserToken originalToken) + { + if (originalToken == null) + { + return null; + } + UserTokenContract userTokenContract = new UserTokenContract + { + Encryption = originalToken.Encryption, + HostName = originalToken.HostName, + IdType = originalToken.IdType, + LocationId = originalToken.LocationId, + UserName = originalToken.UserName, + Validity = originalToken.Validity + }; + SystemAuthenticationClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(successfulConnectionResult.ConnectionId); + if (clientAuthenticator == null || !clientAuthenticator.SecureSessionEstablished) + { + throw new InvalidOperationException("Cannot encrypt user token due to session in wrong state"); + } + if (originalToken.Password != null) + { + byte[] bytes = Encoding.UTF8.GetBytes(originalToken.Password); + userTokenContract.Password = clientAuthenticator.Encypher(bytes, clientAuthenticator.EncryptionKey); + } + if (originalToken.SamlToken != null) + { + userTokenContract.SamlToken = clientAuthenticator.Encypher(originalToken.SamlToken, clientAuthenticator.EncryptionKey); + } + if (originalToken.JwtToken != null) + { + byte[] bytes2 = Encoding.UTF8.GetBytes(originalToken.JwtToken); + userTokenContract.JwtToken = clientAuthenticator.Encypher(bytes2, clientAuthenticator.EncryptionKey); + } + if (originalToken.X509Certificate != null) + { + userTokenContract.X509Certificate = clientAuthenticator.Encypher(originalToken.X509Certificate, clientAuthenticator.EncryptionKey); + } + return userTokenContract; + } + + protected void Reset() + { + successfulConnectionResult?.Dispose(); + successfulConnectionResult = null; + } + + private bool EstablishConnection(EndpointDiscoveryMetadata selectedMetadata, string solutionName, ClientAccess access, Action errorCallback, bool useSecureConnection) + { + ServiceTrace.LogCsv("CreateConnectContext entry"); + ServiceTrace.LogResume("CreateConnectContext entry"); + if (selectedMetadata == null) + { + errorCallback?.Invoke("No discovery endpoint metadata provided, cannot connect"); + return false; + } + if (string.IsNullOrWhiteSpace(solutionName)) + { + solutionName = new ASBSolutionManager().GetASBSolutionName(selectedMetadata, out var errorMessage); + if (!string.IsNullOrEmpty(errorMessage)) + { + errorCallback?.Invoke(errorMessage); + return false; + } + } + lock (connectionLock) + { + successfulConnectionResult = null; + connectionEstablishedEvent = new ManualResetEvent(initialState: false); + } + using (CancellationTokenSource cancellationTokenSource = new CancellationTokenSource()) + { + SpinConnectionTasks(selectedMetadata.ListenUris, solutionName, access, errorCallback, useSecureConnection, cancellationTokenSource.Token); + bool flag = connectionEstablishedEvent.WaitOne(timeToWaitForConnection); + ServiceTrace.LogVerbose("{0} task connected with the service", flag ? "A" : "No"); + cancellationTokenSource.Cancel(); + } + bool result; + lock (connectionLock) + { + connectionEstablishedEvent.Dispose(); + connectionEstablishedEvent = null; + result = true; + if (successfulConnectionResult == null) + { + result = false; + errorCallback?.Invoke("No connection was established with a service endpoint"); + } + } + ServiceTrace.LogSuspend("CreateConnectContext exit"); + ServiceTrace.LogCsv("CreateConnectContext exit"); + return result; + } + + private void SpinConnectionTasks(Collection listenUris, string solutionName, ClientAccess access, Action errorCallback, bool useSecureConnection, CancellationToken cancellationToken) + { + ServiceTrace.LogVerbose("Spinning tasks for {0} listen Uris", listenUris.Count); + foreach (Uri endpointUri in listenUris) + { + string selectedEndpointUri = endpointUri.ToString(); + Task.Factory.StartNew(delegate + { + NetTcpBindingSecurityMode securityMode = (useSecureConnection ? NetTcpBindingSecurityMode.CertificateEncryption : NetTcpBindingSecurityMode.None); + Binding binding = SvcUtilities.GetBinding(selectedEndpointUri, securityMode); + binding.OpenTimeout = new TimeSpan(0, 10, 0); + binding.ReceiveTimeout = new TimeSpan(0, 10, 0); + binding.SendTimeout = new TimeSpan(0, 10, 0); + binding.CloseTimeout = new TimeSpan(0, 10, 0); + EndpointAddress serviceEndpointAddress = new EndpointAddress(selectedEndpointUri); + if (useSecureConnection) + { + IPHostEntry hostEntry = Dns.GetHostEntry(endpointUri.Host); + serviceEndpointAddress = new EndpointAddress(endpointUri, EndpointIdentity.CreateDnsIdentity(hostEntry.HostName)); + } + InternalConnect(serviceEndpointAddress, binding, solutionName, access, errorCallback, cancellationToken); + }, cancellationToken, TaskCreationOptions.None, TaskScheduler.Default); + } + } + + private void InternalConnect(EndpointAddress serviceEndpointAddress, Binding binding, string solutionName, ClientAccess access, Action errorCallback, CancellationToken cancellationToken) + { + if (serviceEndpointAddress == null) + { + throw new ArgumentNullException("serviceEndpointAddress"); + } + if (binding == null) + { + throw new ArgumentNullException("binding"); + } + if (string.IsNullOrEmpty(solutionName)) + { + throw new ArgumentNullException("solutionName"); + } + try + { + EstablishChannelConnection(serviceEndpointAddress, binding, solutionName, access, errorCallback, cancellationToken); + } + catch (CommunicationException ex) + { + ServiceTrace.LogWarning("BaseV2Client caught CommunicationException opening channel: " + ex.Message); + errorCallback?.Invoke("BaseV2Client caught CommunicationException opening channel: " + ex.Message); + if (ex.InnerException != null) + { + ServiceTrace.LogWarning(" " + ex.InnerException.Message); + errorCallback?.Invoke(" " + ex.InnerException.Message); + } + } + catch (TimeoutException ex2) + { + ServiceTrace.LogWarning("BaseV2Client caught TimeoutException opening channel: " + ex2.Message); + errorCallback?.Invoke("BaseV2Client caught TimeoutException opening channel: " + ex2.Message); + if (ex2.InnerException != null) + { + ServiceTrace.LogWarning(" " + ex2.InnerException.Message); + errorCallback?.Invoke(" " + ex2.InnerException.Message); + } + } + catch (Exception ex3) + { + ServiceTrace.LogWarning("BaseV2Client caught exception opening channel: " + ex3.Message); + errorCallback?.Invoke("BaseV2Client caught exception opening channel: " + ex3.Message); + } + } + + private void EstablishChannelConnection(EndpointAddress serviceEndpointAddress, Binding binding, string solutionName, ClientAccess access, Action errorCallback, CancellationToken cancellationToken) + { + ConnectContext connectContext = clientManager.CreateConnectContext(serviceEndpointAddress, binding, connectionApplication, connectionUser, cancellationToken); + if ((connectContext != null && connectContext.ServiceChannelFactory?.State == CommunicationState.Closed) || (connectContext != null && connectContext.ServiceChannel?.State == CommunicationState.Closed)) + { + return; + } + if (clientManager.EstablishSecureSession(connectContext, solutionName, access)) + { + ServiceTrace.LogVerbose("Secure connection with endpoint {0} is established using solution {1}", serviceEndpointAddress.Uri.AbsoluteUri, solutionName); + bool flag = false; + lock (connectionLock) + { + if (successfulConnectionResult == null) + { + flag = true; + successfulConnectionResult = connectContext; + ServiceTrace.LogVerbose("Secure connection with endpoint {0} using solution {1} is first, signal success", serviceEndpointAddress.Uri.AbsoluteUri, solutionName); + connectionEstablishedEvent?.Set(); + } + } + if (!flag) + { + ServiceTrace.LogVerbose("Secure connection with endpoint {0} using solution {1} is NOT first, disconnect", serviceEndpointAddress.Uri.AbsoluteUri, solutionName); + clientManager.DisconnectSecureSession(connectContext); + connectContext.Dispose(); + } + } + else + { + if (connectContext != null && !string.IsNullOrEmpty(connectContext.ErrorMessage)) + { + errorCallback?.Invoke(connectContext.ErrorMessage); + } + ServiceTrace.LogVerbose("Connection with endpoint {0} using solution {1} rejected", serviceEndpointAddress.Uri.AbsoluteUri, solutionName); + if (connectionEstablishedEvent != null) + { + connectionEstablishedEvent.Set(); + } + } + } + + public void OnConnect(ulong timeout, ConsumerMetadata metadata) + { + ServiceTrace.LogCsv("OnConnect entry"); + ServiceTrace.LogResume("OnConnect entry"); + throw new NotImplementedException(); + } + + public ArchestrAResult KeepAlive() + { + ServiceTrace.LogCsv("KeepAlive entry"); + ServiceTrace.LogResume("KeepAlive entry"); + ArchestrAResult archestrAResult = PrepareToSend(new KeepAliveRequest(), delegate(ConnectedRequest request, T channelClient) + { + ServiceTrace.LogVerbose("Calling WCF channel KeepAlive method"); + KeepAliveResponse keepAliveResponse = channelClient.KeepAlive((KeepAliveRequest)request); + ServiceTrace.LogVerbose("Returned from WCF channel KeepAlive method"); + if (keepAliveResponse == null) + { + return ArchestrAResult.MakeResult(ArchestrAError.BadNoCommunication, 0).AddErrorMessage("No response from the service"); + } + UpdateDownstreamConnectionState(keepAliveResponse); + return keepAliveResponse.Result; + }); + ServiceTrace.LogSuspend("KeepAlive exit with {0}", archestrAResult.Success ? "success" : "failure"); + ServiceTrace.LogCsv("KeepAlive exit [success]", archestrAResult.Success); + return archestrAResult; + } + + public ArchestrAResult GetStatusItems(out string[] items) + { + ServiceTrace.LogCsv("GetStatusItems entry"); + ServiceTrace.LogResume("GetStatusItems entry"); + string[] receivedItems = null; + ArchestrAResult archestrAResult = PrepareToSend(new GetStatusItemsRequest(), delegate(ConnectedRequest request, T channelClient) + { + ServiceTrace.LogCsv("Calling WCF channel GetStatusItems method"); + GetStatusItemsResponse statusItems = channelClient.GetStatusItems((GetStatusItemsRequest)request); + ServiceTrace.LogCsv("Returned from WCF channel GetStatusItems method"); + if (statusItems == null) + { + return ArchestrAResult.MakeResult(ArchestrAError.BadNoCommunication, 0).AddErrorMessage("No response from the service"); + } + UpdateDownstreamConnectionState(statusItems); + receivedItems = statusItems.Items; + return statusItems.Result; + }); + ServiceTrace.LogSuspend("GetStatusItems exit with {0}", archestrAResult.Success ? "success" : "failure"); + ServiceTrace.LogCsv("GetStatusItems exit [success]", archestrAResult.Success); + items = receivedItems; + return archestrAResult; + } + + public ArchestrAResult GetStatus(string[] itemsToReturn, out NamedValue[] items) + { + ServiceTrace.LogCsv("GetStatus entry"); + ServiceTrace.LogResume("GetStatus entry"); + NamedValue[] receivedItems = null; + ArchestrAResult archestrAResult = PrepareToSend(new GetStatusRequest + { + ItemsToReturn = itemsToReturn + }, delegate(ConnectedRequest request, T channelClient) + { + ServiceTrace.LogCsv("Calling WCF channel GetStatus method"); + GetStatusResponse status = channelClient.GetStatus((GetStatusRequest)request); + ServiceTrace.LogCsv("Returned from WCF channel GetStatus method"); + if (status == null) + { + return ArchestrAResult.MakeResult(ArchestrAError.BadNoCommunication, 0).AddErrorMessage("No response from the service"); + } + UpdateDownstreamConnectionState(status); + receivedItems = status.Items; + return status.Result; + }); + ServiceTrace.LogSuspend("GetStatus exit with {0}", archestrAResult.Success ? "success" : "failure"); + ServiceTrace.LogCsv("GetStatus exit [success]", archestrAResult.Success); + items = receivedItems; + return archestrAResult; + } + + public void OnDisconnect() + { + ServiceTrace.LogCsv("OnDisconnect entry"); + ServiceTrace.LogResume("OnDisconnect entry"); + throw new NotImplementedException(); + } + + protected ArchestrAResult PrepareToSend(ConnectedRequest request, Func processFunc) + { + if (request == null) + { + return ArchestrAResult.MakeResult(ArchestrAError.BadNoCommunication, 0).AddErrorMessage("No request message provided for signature"); + } + if (processFunc == null) + { + return ArchestrAResult.MakeResult(ArchestrAError.BadNoCommunication, 0).AddErrorMessage("No processing function provided"); + } + ArchestrAResult archestrAResult = SignRequest(request); + if (!archestrAResult.Success) + { + return archestrAResult; + } + T channelClient = ChannelClient; + if (channelClient == null) + { + return ArchestrAResult.MakeResult(ArchestrAError.BadNoCommunication, 0).AddErrorMessage("No connected client for the current connection Id"); + } + return processFunc(request, channelClient); + } + + protected ArchestrAResult SignRequest(ConnectedRequest request) + { + ArchestrAResult result = ArchestrAResult.MakeResult(ArchestrAError.InvalidConnectionId, 0); + if (successfulConnectionResult != null && successfulConnectionResult.ServiceClient != null && State != CommunicationState.Faulted) + { + SystemAuthenticationClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(successfulConnectionResult.ConnectionId); + if (clientAuthenticator != null) + { + clientAuthenticator.Sign(request, forceHmac: false); + return ArchestrAResult.MakeGoodResult(); + } + result.AddErrorMessage("Unable to find a signer using the current connection Id"); + } + else + { + result.AddErrorMessage("Unable to use the client proxy for the current connection Id"); + } + return result; + } + + protected void UpdateDownstreamConnectionState(ConnectedResponse response) + { + if (response != null) + { + if (response.DownstreamConnectionState <= 6) + { + DownstreamConnectionState = (ConnectionState)response.DownstreamConnectionState; + return; + } + ServiceTrace.LogWarning(string.Format(CultureInfo.InvariantCulture, "ASB Base V2 client failed to parse downstream connection state value of {0}", new object[1] { response.DownstreamConnectionState })); + DownstreamConnectionState = ConnectionState.Unknown; + } + } + + ~BaseV2Client() + { + Dispose(disposing: false); + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + private void Dispose(bool disposing) + { + if (disposed) + { + return; + } + if (disposing) + { + if (successfulConnectionResult != null) + { + successfulConnectionResult.Dispose(); + } + successfulConnectionResult = null; + } + disposed = true; + Reset(); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/BaseV2Shim.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/BaseV2Shim.cs new file mode 100644 index 0000000..ec49a4e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/BaseV2Shim.cs @@ -0,0 +1,492 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.ServiceModel; +using System.Text; +using System.Threading; +using ArchestrAServices.Common; +using Asb.Base.V2.ContractTypes; + +namespace Asb.Base.V2; + +[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)] +public abstract class BaseV2Shim : IAuthenticateAsb +{ + private sealed class ConnectionContext : IDisposable + { + private readonly TimeSpan keepAliveTimeout; + + private readonly Timer timer; + + private bool disposed; + + public IContextChannel ConnectionChannel { get; private set; } + + public IBaseV2 ConnectionImplementation { get; } + + public ConnectionContext(IBaseV2 implementation, TimerCallback keepAliveTimeoutCallback, Guid connectionId, TimeSpan keepAliveTimeout) + { + ConnectionChannel = ((OperationContext.Current == null) ? null : OperationContext.Current.Channel); + ConnectionImplementation = implementation; + timer = new Timer(keepAliveTimeoutCallback, connectionId, (int)keepAliveTimeout.TotalMilliseconds, -1); + this.keepAliveTimeout = keepAliveTimeout; + } + + ~ConnectionContext() + { + Dispose(disposing: false); + } + + public void RestartTimer() + { + timer.Change((int)keepAliveTimeout.TotalMilliseconds, -1); + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + private void Dispose(bool disposing) + { + if (disposed) + { + return; + } + disposed = true; + if (disposing) + { + if (ConnectionChannel != null) + { + ConnectionChannel.Close(); + ConnectionChannel = null; + } + if (timer != null) + { + timer.Dispose(); + } + } + } + } + + private static readonly ReaderWriterLockSlim implementationLock = new ReaderWriterLockSlim(); + + private static readonly Dictionary implementations = new Dictionary(); + + private static readonly TimeSpan defaultKeepAliveTimeout = TimeSpan.FromSeconds(30.0); + + public virtual ConnectionState DownstreamConnectionState { get; set; } + + protected virtual TimeSpan KeepAliveTimeout => defaultKeepAliveTimeout; + + public ConnectResponse Connect(ConnectRequest request) + { + if (request == null) + { + return null; + } + ServiceTrace.LogCsv("Connect entry [ConId]", request.ConnectionId); + ServiceTrace.LogResume("Connect entry, connection Id {0} ", request.ConnectionId); + ConnectResponse connectResponse = SystemAuthenticationServiceAuthentication.ProcessClientConnection(request); + ServiceTrace.LogVerbose("BaseV2Shim.Connect started new SysAuthenticator for connection Id {0}", connectResponse.ConnectionValidator.ConnectionId); + ServiceTrace.LogSuspend("Connect exit, connection Id {0}, success = {1}", request.ConnectionId, connectResponse.Result.Success); + ServiceTrace.LogCsv("Connect exit [ConId Success]", request.ConnectionId, connectResponse.Result.Success); + return connectResponse; + } + + public AuthenticateMeResponse AuthenticateMe(AuthenticateMeRequest request) + { + if (request == null) + { + return null; + } + ServiceTrace.LogCsv("AuthenticateMe entry [ConnId]", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("AuthenticateMe entry, connection Id {0} ", request.ConnectionValidator.ConnectionId); + ArchestrAResult archestrAResult = ArchestrAResult.MakeResult(ArchestrAError.OperationFailed, 0); + SystemAuthenticationServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + if (serviceAuthenticator.ProcessClientAuthenticateMe(request)) + { + ServiceTrace.LogVerbose("AuthenticateMe found authenticator and validated request message, establishing serivce implementation for connect Id {0})", serviceAuthenticator.ConnectionId); + ConsumerMetadata metadata = ConsumerMetadata.Create(request.ConsumerMetaData); + archestrAResult = CheckConsumerMetadata(metadata, serviceAuthenticator.ConnectionId); + if (archestrAResult.Success) + { + archestrAResult = CreateServiceImplmentation(serviceAuthenticator, metadata); + } + } + else + { + archestrAResult = ArchestrAResult.MakeResult(ArchestrAError.ApplicationAuthenticationError, 0); + string message = string.Format(CultureInfo.CurrentCulture, "AuthenticateMe unable to authenticate client for ConnectionId {0}", new object[1] { serviceAuthenticator.ConnectionId }); + ServiceTrace.LogWarning(message); + archestrAResult.AddErrorMessage(message); + } + } + if (!archestrAResult.Success) + { + OnDisconnect(request.ConnectionValidator.ConnectionId); + } + ServiceTrace.LogSuspend("AuthenticateMe exit, connection Id {0}, success = {1}", request.ConnectionValidator.ConnectionId, archestrAResult.Success); + ServiceTrace.LogCsv("AuthenticateMe exit [ConId Success]", request.ConnectionValidator.ConnectionId, archestrAResult.Success); + return new AuthenticateMeResponse(archestrAResult, DownstreamConnectionState); + } + + public KeepAliveResponse KeepAlive(KeepAliveRequest request) + { + if (request == null) + { + return null; + } + ServiceTrace.LogCsv("KeepAlive entry [ConnId]", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("KeepAlive entry, connection Id {0} ", request.ConnectionValidator.ConnectionId); + ArchestrAResult result = ArchestrAResult.MakeResult(ArchestrAError.OperationFailed, 0); + SystemAuthenticationServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request, forceHmac: false)) + { + implementationLock.EnterReadLock(); + bool flag; + ConnectionContext value; + try + { + flag = implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag && value != null) + { + value.RestartTimer(); + IBaseV2 connectionImplementation = value.ConnectionImplementation; + try + { + result = EnsureValidResult(connectionImplementation.KeepAlive()); + } + catch (Exception ex) + { + ServiceTrace.LogWarning("KeepAlive caught exception from implementation for connection Id {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + ServiceTrace.LogWarning(" {0}", ex.InnerException.Message); + } + } + } + } + ServiceTrace.LogResume("KeepAlive exit, connection Id {0}", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("KeepAlive exit [ConId]", request.ConnectionValidator.ConnectionId); + return new KeepAliveResponse(result, DownstreamConnectionState); + } + + public GetStatusItemsResponse GetStatusItems(GetStatusItemsRequest request) + { + if (request == null) + { + return null; + } + ServiceTrace.LogCsv("GetStatusItems entry [ConnId]", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("GetStatusItems entry, connection Id {0} ", request.ConnectionValidator.ConnectionId); + GetStatusItemsResponse getStatusItemsResponse = new GetStatusItemsResponse(ArchestrAResult.MakeResult(ArchestrAError.InvalidConnectionId, 0), null, DownstreamConnectionState); + IBaseV2 implementation = GetImplementation(request); + if (implementation != null) + { + try + { + getStatusItemsResponse.Result = EnsureValidResult(implementation.GetStatusItems(out var items)); + List list = items.ToList(); + list.Add("ServiceLoadTime"); + getStatusItemsResponse.Items = list.ToArray(); + } + catch (Exception ex) + { + ServiceTrace.LogWarning("GetStatusItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + getStatusItemsResponse.Result.AddErrorMessage(ex.Message); + if (ex.InnerException != null) + { + ServiceTrace.LogWarning(" {0}", ex.InnerException.Message); + getStatusItemsResponse.Result.AddErrorMessage(ex.InnerException.Message); + } + getStatusItemsResponse.Result.ResultCodeAsError = ArchestrAError.OperationFailed; + } + } + ServiceTrace.LogSuspend("GetStatusItems exit, connection Id {0}, success = {1}", request.ConnectionValidator.ConnectionId, getStatusItemsResponse.Result.Success); + ServiceTrace.LogCsv("GetStatusItems exit [ConId Success]", request.ConnectionValidator.ConnectionId, getStatusItemsResponse.Result.Success); + return getStatusItemsResponse; + } + + public GetStatusResponse GetStatus(GetStatusRequest request) + { + if (request == null) + { + return null; + } + ServiceTrace.LogCsv("GetStatus entry [ConnId]", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("GetStatus entry, connection Id {0} ", request.ConnectionValidator.ConnectionId); + GetStatusResponse getStatusResponse = new GetStatusResponse(ArchestrAResult.MakeResult(ArchestrAError.InvalidConnectionId, 0), null, DownstreamConnectionState); + IBaseV2 implementation = GetImplementation(request); + if (implementation != null) + { + try + { + getStatusResponse.Result = EnsureValidResult(implementation.GetStatus(request.ItemsToReturn, out var items)); + List list = items.ToList(); + list.Add(new NamedValue + { + Name = "ServiceLoadTime", + Value = Value.Create(implementation.ServiceLoadTime) + }); + getStatusResponse.Items = list.ToArray(); + } + catch (Exception ex) + { + ServiceTrace.LogWarning("GetStatus caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + getStatusResponse.Result.AddErrorMessage(ex.Message); + if (ex.InnerException != null) + { + ServiceTrace.LogWarning(" {0}", ex.InnerException.Message); + getStatusResponse.Result.AddErrorMessage(ex.InnerException.Message); + } + getStatusResponse.Result.ResultCodeAsError = ArchestrAError.OperationFailed; + } + } + ServiceTrace.LogSuspend("GetStatus exit, connection Id {0}, success = {1}", request.ConnectionValidator.ConnectionId, getStatusResponse.Result.Success); + ServiceTrace.LogCsv("GetStatus exit [ConId Success]", request.ConnectionValidator.ConnectionId, getStatusResponse.Result.Success); + return getStatusResponse; + } + + public RenewResponse Renew(RenewRequest request) + { + if (request == null) + { + return null; + } + ServiceTrace.LogCsv("Renew entry [ConnId]", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("Renew entry, connection Id {0} ", request.ConnectionValidator.ConnectionId); + RenewResponse renewResponse = SystemAuthenticationServiceAuthentication.ProcessClientRenew(request); + ServiceTrace.LogSuspend("Renew exit, connection Id {0}, success = {1}", request.ConnectionValidator.ConnectionId, renewResponse.Result.Success); + ServiceTrace.LogCsv("Renew exit [ConId Success]", request.ConnectionValidator.ConnectionId, renewResponse.Result.Success); + return renewResponse; + } + + public void UpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfigurationRequest request) + { + if (request != null) + { + ServiceTrace.LogCsv("UpdateSystemAuthenticationConfiguration entry [ConnId]", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("UpdateSystemAuthenticationConfiguration entry, connection Id {0} ", request.ConnectionValidator.ConnectionId); + SystemAuthenticationServiceAuthentication.ProcessClientUpdateSystemAuthenticationConfiguration(request); + ServiceTrace.LogSuspend("UpdateSystemAuthenticationConfiguration exit, connection Id {0}", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogCsv("UpdateSystemAuthenticationConfiguration exit [ConId]", request.ConnectionValidator.ConnectionId); + } + } + + public void Disconnect(DisconnectRequest request) + { + if (request != null) + { + ServiceTrace.LogCsv("Disconnect entry [ConnId]", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogResume("Disconnect entry, connection Id {0} ", request.ConnectionValidator.ConnectionId); + SystemAuthenticationServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request, forceHmac: false)) + { + OnDisconnect(request.ConnectionValidator.ConnectionId); + serviceAuthenticator.ProcessClientDisconnect(request); + } + ServiceTrace.LogSuspend("Disconnect exit, connection Id {0}", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogCsv("Disconnect exit [ConId]", request.ConnectionValidator.ConnectionId); + } + } + + protected UserToken DecryptUserToken(Guid connectionId, UserTokenContract wireToken) + { + if (wireToken == null) + { + return null; + } + SystemAuthenticationServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(connectionId); + if (serviceAuthenticator == null || !serviceAuthenticator.SecureSessionEstablished) + { + throw new InvalidOperationException("Cannot decrypt user token due to session in wrong state"); + } + UserToken userToken = new UserToken + { + Encryption = wireToken.Encryption, + HostName = wireToken.HostName, + IdType = wireToken.IdType, + LocationId = wireToken.LocationId, + UserName = wireToken.UserName, + Validity = wireToken.Validity + }; + if (wireToken.Password != null) + { + byte[] bytes = serviceAuthenticator.Decypher(wireToken.Password, serviceAuthenticator.EncryptionKey); + userToken.Password = Encoding.UTF8.GetString(bytes); + } + if (wireToken.SamlToken != null) + { + userToken.SamlToken = serviceAuthenticator.Decypher(wireToken.SamlToken, serviceAuthenticator.EncryptionKey); + } + if (wireToken.JwtToken != null) + { + byte[] bytes2 = serviceAuthenticator.Decypher(wireToken.JwtToken, serviceAuthenticator.EncryptionKey); + userToken.JwtToken = Encoding.UTF8.GetString(bytes2); + } + if (wireToken.X509Certificate != null) + { + userToken.X509Certificate = serviceAuthenticator.Decypher(wireToken.X509Certificate, serviceAuthenticator.EncryptionKey); + } + return userToken; + } + + protected static ArchestrAResult EnsureValidResult(ArchestrAResult result) + { + if (result == null) + { + return ArchestrAResult.MakeErrorResult("Service returned no result"); + } + return result; + } + + private ArchestrAResult CreateServiceImplmentation(SystemAuthenticationServiceAuthentication authenticator, ConsumerMetadata metadata) + { + ArchestrAResult result = ArchestrAResult.MakeGoodResult(); + IBaseV2 implementation = GetImplementation(); + if (implementation == null) + { + result = ArchestrAResult.MakeResult(ArchestrAError.Unknown, 0); + string message = string.Format(CultureInfo.CurrentCulture, "AuthenticateMe could not create a service implementation object for ConnectionId {0}", new object[1] { authenticator.ConnectionId }); + ServiceTrace.LogWarning(message); + result.AddErrorMessage(message); + return result; + } + try + { + ServiceTrace.LogCsv("AuthenticateMe found authenticator and validated request message, calling implementation OnConnect [ConId]", authenticator.ConnectionId); + ServiceTrace.LogVerbose("AuthenticateMe found authenticator and validated request message, calling implementation OnConnect for connection Id {0}", authenticator.ConnectionId); + implementation.ServiceLoadTime = DateTime.UtcNow; + implementation.ConnectionId = authenticator.ConnectionId; + implementation.OnConnect(authenticator.Lifetime, metadata); + CreateConnectionContext(authenticator.ConnectionId, implementation); + } + catch (Exception ex) + { + result = ArchestrAResult.MakeResult(ArchestrAError.Unknown, 0); + ServiceTrace.LogWarning("AuthenticateMe caught exception from implementation for ConnectionId {0}: {1}", authenticator.ConnectionId, ex.Message); + result.AddErrorMessage(ex.Message); + if (ex.InnerException != null) + { + ServiceTrace.LogWarning(" {0}", ex.InnerException.Message); + result.AddErrorMessage(ex.InnerException.Message); + } + } + return result; + } + + private void CreateConnectionContext(Guid connectionId, IBaseV2 implementation) + { + implementationLock.EnterWriteLock(); + try + { + implementations.Add(connectionId, new ConnectionContext(implementation, KeepaliveHandler, connectionId, KeepAliveTimeout)); + ServiceTrace.LogVerbose("AuthenticateMe added implementation for connection Id {0}", connectionId); + } + finally + { + implementationLock.ExitWriteLock(); + } + } + + private static void OnDisconnect(Guid connectionId) + { + IBaseV2 baseV = null; + bool flag = false; + implementationLock.EnterWriteLock(); + try + { + flag = implementations.TryGetValue(connectionId, out var value); + if (flag) + { + implementations.Remove(connectionId); + ServiceTrace.LogVerbose("OnDisconnect removed implementation for ConnectionId {0}", connectionId); + baseV = value.ConnectionImplementation; + value.Dispose(); + } + } + catch (Exception ex) + { + ServiceTrace.LogVerbose("OnDisconnect handled an exception: {0}", ex); + } + finally + { + implementationLock.ExitWriteLock(); + } + if (flag && baseV != null) + { + try + { + ServiceTrace.LogCsv("OnDisconnect found authenticator and validated request message, calling implementation OnDisconnect Id =", connectionId); + baseV.OnDisconnect(); + } + catch (Exception ex2) + { + ServiceTrace.LogWarning("OnDisconnect caught exception from implementation for ConnectionId {0}: {1}", connectionId, ex2.Message); + if (ex2.InnerException != null) + { + ServiceTrace.LogWarning(" {0}", ex2.InnerException.Message); + } + } + } + SysAuthenticatorServiceCache.RemoveServiceAuthenticator(connectionId); + } + + private static void KeepaliveHandler(object connectionId) + { + try + { + OnDisconnect((Guid)connectionId); + } + catch (Exception ex) + { + ServiceTrace.LogVerbose("KeepaliveHandler handled an exception {0}", ex); + } + } + + protected virtual ArchestrAResult CheckConsumerMetadata(ConsumerMetadata metadata, Guid connectionId) + { + return ArchestrAResult.MakeGoodResult(); + } + + protected abstract IBaseV2 GetImplementation(); + + protected static T GetImplementation(ConnectedRequest request) where T : class, IBaseV2 + { + if (request == null) + { + return null; + } + SystemAuthenticationServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request, forceHmac: false)) + { + implementationLock.EnterReadLock(); + bool flag; + ConnectionContext value; + try + { + flag = implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag && value != null) + { + value.RestartTimer(); + return value.ConnectionImplementation as T; + } + } + return null; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientAccess.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientAccess.cs new file mode 100644 index 0000000..9dec273 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientAccess.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2", IncludeInSchema = false)] +public enum ClientAccess +{ + FullAccess, + ReadOnly +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientManagement.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientManagement.cs new file mode 100644 index 0000000..10269a4 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientManagement.cs @@ -0,0 +1,173 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Reflection; +using System.Security.Cryptography.X509Certificates; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Discovery; +using System.ServiceModel.Security; +using System.Threading; +using System.Threading.Tasks; +using System.Xml; +using ArchestrAServices.Common; + +namespace Asb.Base.V2; + +internal class ClientManagement : IClientManagement +{ + public ConnectContext CreateConnectContext(EndpointAddress serviceEndpointAddress, Binding binding, string application, string user, CancellationToken cancellationToken) where T : class, IAuthenticateAsb + { + ConnectContext connectContext = new ConnectContext + { + Success = false, + ErrorMessage = string.Empty, + ServiceChannelFactory = null, + ServiceClient = null, + ServiceChannel = null, + ConnectionId = Guid.Empty, + ConnectionUser = user, + ConnectionApplication = application + }; + ServiceTrace.LogVerbose("Try connecting with endpoint {0}", serviceEndpointAddress.Uri.AbsoluteUri); + connectContext.ServiceChannelFactory = new ChannelFactory(binding, serviceEndpointAddress); + if (binding is NetTcpBinding netTcpBinding && netTcpBinding.Security.Mode == SecurityMode.Transport && connectContext.ServiceChannelFactory.Credentials != null) + { + connectContext.ServiceChannelFactory.Credentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.ChainTrust; + connectContext.ServiceChannelFactory.Credentials.ServiceCertificate.Authentication.RevocationMode = X509RevocationMode.NoCheck; + } + InjectCustomBehavior(connectContext.ServiceChannelFactory); + if (!OpenOrAbort(connectContext.ServiceChannelFactory, cancellationToken)) + { + ServiceTrace.LogVerbose("BaseV2Client CreateConnectContext is cancelled when create channel for {0}", serviceEndpointAddress.Uri.AbsoluteUri); + return connectContext; + } + connectContext.ServiceClient = connectContext.ServiceChannelFactory.CreateChannel(); + if (connectContext.ServiceClient == null) + { + ServiceTrace.LogWarning("BaseV2Client not able to create a client for the endpoint {0}", serviceEndpointAddress.Uri.AbsoluteUri); + return null; + } + connectContext.CastClientToChannel(); + if (connectContext.ServiceChannel == null) + { + ServiceTrace.LogWarning("BaseV2Client not able to create a channel for the endpoint {0}", serviceEndpointAddress.Uri.AbsoluteUri); + return null; + } + if (!OpenOrAbort(connectContext.ServiceChannel, cancellationToken)) + { + ServiceTrace.LogVerbose("BaseV2Client CreateConnectContext is cancelled when open channel for {0}", serviceEndpointAddress.Uri.AbsoluteUri); + } + return connectContext; + } + + public virtual void InjectCustomBehavior(ChannelFactory channelFactory) where T : class, IAuthenticateAsb + { + } + + public bool EstablishSecureSession(ConnectContext context, string solutionName, ClientAccess access) where T : class, IAuthenticateAsb + { + if (context?.ServiceChannel == null) + { + return false; + } + if (context.ServiceChannel.State != CommunicationState.Faulted) + { + ServiceTrace.LogVerbose("Channel with endpoint {0} is open, establishing secure session using solution {1}", context.ServiceChannel.RemoteAddress.Uri.AbsoluteUri, solutionName); + return context.EstablishSecureSession(solutionName, access); + } + ServiceTrace.LogVerbose("Secure connection with endpoint {0} is NOT established using solution {1}", context.ServiceChannel.RemoteAddress.Uri.AbsoluteUri, solutionName); + context.ServiceChannel.Abort(); + context.Dispose(); + if (string.IsNullOrEmpty(context.ErrorMessage)) + { + context.ErrorMessage = "BaseV2Client could not connect with service: EstablishSecureSession failed"; + } + ServiceTrace.LogWarning(context.ErrorMessage); + return false; + } + + public void DisconnectSecureSession(ConnectContext context) where T : class, IAuthenticateAsb + { + context?.DisconnectSecureSession(); + } + + public IEnumerable DiscoverEndpointsForContract(XmlQualifiedName contract, string scopeRule) + { + if (contract == null) + { + throw new ArgumentNullException("contract"); + } + ServiceTrace.LogCsv("DiscoverEndpointsForContract entry [Contract scopeRule]", contract, string.IsNullOrEmpty(scopeRule) ? "" : scopeRule); + ServiceTrace.LogResume("DiscoverEndpointsForContract entry, contract {0}, scopeRule {1}", contract, string.IsNullOrEmpty(scopeRule) ? "" : scopeRule); + FindResponse findResponse; + try + { + Uri uri = RegistryHandler.MakeLDSProbeEndpointAddress(Environment.MachineName); + ServiceTrace.LogVerbose("DiscoverEndpointsForContract({0}) generated LDS endpoint for localhost: {1}", contract, uri.AbsoluteUri); + FindCriteria findCriteria = new FindCriteria(); + findCriteria.ContractTypeNames.Add(contract); + List list = new List(); + if (!string.IsNullOrEmpty(scopeRule)) + { + list.Add(scopeRule); + } + Collection collection = SvcUtilities.CreateFindScopes(string.Empty, string.Empty, string.Empty, list); + ServiceTrace.LogVerbose("DiscoverEndpointsForContract({0}) generated {1} scope Uris:", contract, collection.Count); + findCriteria.Scopes.Clear(); + foreach (Uri item in collection) + { + ServiceTrace.LogVerbose(" {0}", item.AbsoluteUri); + findCriteria.Scopes.Add(item); + } + using DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(uri.AbsoluteUri), new EndpointAddress(uri))); + findResponse = discoveryClient.Find(findCriteria); + ServiceTrace.LogVerbose("DiscoverEndpointsForContract({0}) found {1} endpoints", contract, findResponse.Endpoints.Count); + } + catch (TargetInvocationException ex) + { + ServiceTrace.LogError("DiscoverEndpointsForContract({0}, {1}) TargetInvocationException: {2}", contract, scopeRule, ex.Message); + if (ex.InnerException != null) + { + ServiceTrace.LogError(" {0}", ex.InnerException.Message); + } + findResponse = null; + } + catch (ObjectDisposedException ex2) + { + ServiceTrace.LogError("DiscoverEndpointsForContract({0}, {1}) ObjectDisposedException: {2}", contract, scopeRule, ex2.Message); + if (ex2.InnerException != null) + { + ServiceTrace.LogError(" {0}", ex2.InnerException.Message); + } + findResponse = null; + } + catch (Exception ex3) + { + ServiceTrace.LogError("DiscoverEndpointsForContract({0}, {1}) Exception: {2}", contract, scopeRule, ex3.Message); + if (ex3.InnerException != null) + { + ServiceTrace.LogError(" {0}", ex3.InnerException.Message); + } + findResponse = null; + } + ServiceTrace.LogSuspend("DiscoverEndpointsForContract exit, contract {0}, scopeRule {1}", contract, string.IsNullOrEmpty(scopeRule) ? "" : scopeRule); + ServiceTrace.LogCsv("DiscoverEndpointsForContract exit [Contract scopeRule]", contract, string.IsNullOrEmpty(scopeRule) ? "" : scopeRule); + return findResponse?.Endpoints; + } + + private static bool OpenOrAbort(ICommunicationObject communicationObject, CancellationToken cancellationToken) + { + Task task = Task.Factory.StartNew(communicationObject.Open, cancellationToken, TaskCreationOptions.None, TaskScheduler.Default); + try + { + task.Wait(cancellationToken); + } + catch (OperationCanceledException) + { + communicationObject.Abort(); + return false; + } + return true; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientMetadata.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientMetadata.cs new file mode 100644 index 0000000..83f6c84 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ClientMetadata.cs @@ -0,0 +1,27 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:asb.se:2")] +public class ClientMetadata +{ + [XmlElement(ElementName = "UserName", Order = 0)] + public string UserName { get; set; } + + [XmlElement(ElementName = "HostName", Order = 1)] + public string HostName { get; set; } + + [XmlElement(ElementName = "SessionId", Order = 2)] + public string SessionId { get; set; } + + [XmlElement(ElementName = "SessionHostName", Order = 3)] + public string SessionHostName { get; set; } + + [XmlElement(ElementName = "ApplicationName", Order = 4)] + public string ApplicationName { get; set; } + + [XmlElement(ElementName = "Access", Order = 5)] + public ClientAccess Access { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectContext.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectContext.cs new file mode 100644 index 0000000..cc6eb69 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectContext.cs @@ -0,0 +1,134 @@ +using System; +using System.Diagnostics; +using System.Runtime.InteropServices; +using System.ServiceModel; + +namespace Asb.Base.V2; + +public sealed class ConnectContext : IDisposable where T : class, IAuthenticateAsb +{ + private bool disposed; + + public bool Success { get; set; } + + public string ErrorMessage { get; set; } + + public ChannelFactory ServiceChannelFactory { get; set; } + + public T ServiceClient { get; set; } + + public IClientChannel ServiceChannel { get; set; } + + public Guid ConnectionId { get; set; } + + public string ConnectionUser { get; set; } + + public string ConnectionApplication { get; set; } + + ~ConnectContext() + { + Dispose(disposing: false); + } + + public bool EstablishSecureSession(string solutionName, ClientAccess access) + { + string errorMessage = string.Empty; + Guid connectId = Guid.Empty; + Success = SystemAuthenticationClientAuthentication.EstablishSecureSession(solutionName, GenerateClientMetadata(access), (ConnectRequest request) => ServiceClient.Connect(request), (AuthenticateMeRequest request) => ServiceClient.AuthenticateMe(request), delegate(Guid id) + { + connectId = id; + }, delegate(string msg) + { + errorMessage = msg; + }); + if (Success) + { + ConnectionId = connectId; + } + else + { + ErrorMessage = errorMessage; + } + return Success; + } + + public void DisconnectSecureSession() + { + SystemAuthenticationClientAuthentication.DisconnectSecureSession(ConnectionId, delegate(DisconnectRequest request) + { + ServiceClient.Disconnect(request); + }); + } + + public void CastClientToChannel() + { + ServiceChannel = ServiceClient as IClientChannel; + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + private ClientMetadata GenerateClientMetadata(ClientAccess access) + { + ClientMetadata clientMetadata = new ClientMetadata + { + UserName = (string.IsNullOrEmpty(ConnectionUser) ? Environment.UserName : ConnectionUser), + HostName = Environment.MachineName, + ApplicationName = (string.IsNullOrEmpty(ConnectionApplication) ? Process.GetCurrentProcess().ProcessName : ConnectionApplication), + Access = access + }; + string terminalServicesClientName = GetTerminalServicesClientName(); + if (terminalServicesClientName == "\0") + { + clientMetadata.SessionHostName = string.Empty; + clientMetadata.SessionId = string.Empty; + } + else + { + clientMetadata.SessionHostName = terminalServicesClientName; + clientMetadata.SessionId = Process.GetCurrentProcess().SessionId.ToString(); + } + return clientMetadata; + } + + private static string GetTerminalServicesClientName() + { + IntPtr ppBuffer; + int pBytesReturned; + bool num = NativeMethods.WTSQuerySessionInformation(NativeMethods.WTS_CURRENT_SERVER_HANDLE, -1, NativeMethods.WTS_INFO_CLASS.WTSClientName, out ppBuffer, out pBytesReturned); + string result = null; + if (num) + { + result = Marshal.PtrToStringAuto(ppBuffer); + NativeMethods.WTSFreeMemory(ppBuffer); + } + return result; + } + + private void Dispose(bool disposing) + { + if (disposed) + { + return; + } + disposed = true; + if (disposing) + { + if (ServiceChannel != null) + { + ServiceChannel.Close(); + ServiceChannel.Dispose(); + } + ServiceChannel = null; + if (ServiceChannelFactory != null) + { + ServiceChannelFactory.Close(); + ((IDisposable)ServiceChannelFactory).Dispose(); + } + ServiceChannelFactory = null; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectRequest.cs new file mode 100644 index 0000000..888b841 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectRequest.cs @@ -0,0 +1,33 @@ +using System; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "Connect", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class ConnectRequest : ServiceMessage +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "ConnectionId")] + public Guid ConnectionId { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 1)] + [XmlElement(ElementName = "ConsumerPublicKey")] + public PublicKey ConsumerPublicKey { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 2)] + [XmlElement(ElementName = "SecurityPolicy")] + public string SecurityPolicy { get; set; } + + public ConnectRequest() + { + } + + public ConnectRequest(Guid connectionId, PublicKey consumerPublicKey, string securityPolicy) + { + ConnectionId = connectionId; + ConsumerPublicKey = consumerPublicKey; + SecurityPolicy = securityPolicy; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectResponse.cs new file mode 100644 index 0000000..66d4046 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectResponse.cs @@ -0,0 +1,33 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "ConnectResponse", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class ConnectResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 2)] + [XmlElement(ElementName = "ServicePublicKey")] + public PublicKey ServicePublicKey { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 3)] + [XmlElement(ElementName = "ServiceAuthenticationData")] + public AuthenticationData ServiceAuthenticationData { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 4)] + [XmlElement(ElementName = "ConnectionLifetime", DataType = "duration")] + public string ConnectionLifetime { get; set; } + + public ConnectResponse() + { + } + + public ConnectResponse(ArchestrAResult result, PublicKey servicePublicKey, AuthenticationData serviceAuthenticationData, string connectionLifetime) + : base(result) + { + ServicePublicKey = servicePublicKey; + ServiceAuthenticationData = serviceAuthenticationData; + ConnectionLifetime = connectionLifetime; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectedRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectedRequest.cs new file mode 100644 index 0000000..9c115e9 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectedRequest.cs @@ -0,0 +1,15 @@ +using System.ServiceModel; + +namespace Asb.Base.V2; + +[MessageContract] +public class ConnectedRequest : ServiceMessage +{ + [MessageHeader(Namespace = "urn:hdr.asb.se:2")] + public ConnectionValidator ConnectionValidator { get; set; } + + public ConnectedRequest() + { + ConnectionValidator = new ConnectionValidator(); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectedResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectedResponse.cs new file mode 100644 index 0000000..d7530b1 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectedResponse.cs @@ -0,0 +1,33 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract] +public class ConnectedResponse : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "Result")] + public ArchestrAResult Result { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 1)] + [XmlElement(ElementName = "DownstreamState")] + public int DownstreamConnectionState { get; set; } + + public ConnectedResponse() + { + Result = ArchestrAResult.MakeGoodResult(); + DownstreamConnectionState = 0; + } + + public ConnectedResponse(ArchestrAResult result) + : this(result, ConnectionState.Unknown) + { + } + + public ConnectedResponse(ArchestrAResult result, ConnectionState downstreamConnectionState) + { + Result = result; + DownstreamConnectionState = (int)downstreamConnectionState; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectionState.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectionState.cs new file mode 100644 index 0000000..71eac88 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectionState.cs @@ -0,0 +1,12 @@ +namespace Asb.Base.V2; + +public enum ConnectionState +{ + Unknown, + Created, + Opening, + Opened, + Closing, + Closed, + Faulted +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectionValidator.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectionValidator.cs new file mode 100644 index 0000000..47263b1 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConnectionValidator.cs @@ -0,0 +1,21 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:asb.se:2")] +public class ConnectionValidator +{ + [XmlElement(ElementName = "ConnectionId", Order = 0)] + public Guid ConnectionId { get; set; } + + [XmlElement(ElementName = "MessageNumber", Order = 1)] + public ulong MessageNumber { get; set; } + + [XmlElement(ElementName = "MessageAuthenticationCode", DataType = "base64Binary", Order = 2)] + public byte[] MessageAuthenticationCode { get; set; } + + [XmlElement(ElementName = "SignatureInitializationVector", DataType = "base64Binary", Order = 3)] + public byte[] SignatureInitializationVector { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConsumerMetadata.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConsumerMetadata.cs new file mode 100644 index 0000000..16c0ed6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ConsumerMetadata.cs @@ -0,0 +1,35 @@ +namespace Asb.Base.V2; + +public class ConsumerMetadata +{ + public string UserName { get; private set; } + + public string HostName { get; private set; } + + public string SessionId { get; private set; } + + public string SessionHostName { get; private set; } + + public string ApplicationName { get; private set; } + + public ClientAccess Access { get; set; } + + public ConsumerMetadata(string userName, string hostName, string sessionId, string sessionHostName, string applicationName, ClientAccess access) + { + UserName = userName; + HostName = hostName; + SessionId = sessionId; + SessionHostName = sessionHostName; + ApplicationName = applicationName; + Access = access; + } + + public static ConsumerMetadata Create(ClientMetadata metadata) + { + if (metadata == null) + { + return new ConsumerMetadata(string.Empty, string.Empty, string.Empty, string.Empty, string.Empty, ClientAccess.FullAccess); + } + return new ConsumerMetadata(metadata.UserName, metadata.HostName, metadata.SessionId, metadata.SessionHostName, metadata.ApplicationName, metadata.Access); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/CustomEnum.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/CustomEnum.cs new file mode 100644 index 0000000..1347ddb --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/CustomEnum.cs @@ -0,0 +1,14 @@ +namespace Asb.Base.V2; + +public class CustomEnum +{ + public short Ordinal { get; private set; } + + public string OrdinalValue { get; private set; } + + public CustomEnum(short ordinal, string ordinalValue) + { + Ordinal = ordinal; + OrdinalValue = ordinalValue; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DataConversionUtilities.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DataConversionUtilities.cs new file mode 100644 index 0000000..909db23 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DataConversionUtilities.cs @@ -0,0 +1,94 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Text; + +namespace Asb.Base.V2; + +public static class DataConversionUtilities +{ + public static string ToBase64(this string value) + { + string result = string.Empty; + if (value != null) + { + result = Encoding.UTF8.GetBytes(value).ToBase64(); + } + return result; + } + + public static string FromBase64(this string value) + { + string result = string.Empty; + if (value != null) + { + byte[] bytes = value.FromBase64ToByteArray(); + result = Encoding.UTF8.GetString(bytes); + } + return result; + } + + public static string ToBase64(this byte[] value) + { + string result = string.Empty; + try + { + result = Convert.ToBase64String(value); + } + catch + { + } + return result; + } + + public static string ToHex(this byte[] value) + { + StringBuilder stringBuilder = new StringBuilder(); + if (value != null) + { + foreach (byte b in value) + { + stringBuilder.Append(b.ToString("X2", CultureInfo.CurrentCulture)); + } + } + return stringBuilder.ToString(); + } + + public static byte[] FromBase64ToByteArray(this string value) + { + byte[] result = null; + if (value != null) + { + try + { + result = Convert.FromBase64String(value); + } + catch + { + } + } + return result; + } + + public static byte[] FromHexToByteArray(this string value) + { + List list = new List(); + if (value != null) + { + string text = value.Replace(" ", string.Empty); + text = text.Replace("\r", string.Empty); + text = text.Replace("\n", string.Empty); + if (text.Length % 2 == 0) + { + for (int i = 0; i < text.Length; i += 2) + { + if (byte.TryParse(text.Substring(i, 2), NumberStyles.HexNumber, CultureInfo.InvariantCulture, out var result)) + { + list.Add(result); + } + } + } + } + return list.ToArray(); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DisconnectRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DisconnectRequest.cs new file mode 100644 index 0000000..4f4798c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DisconnectRequest.cs @@ -0,0 +1,21 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "Disconnect", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +public class DisconnectRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "ConsumerAuthenticationData")] + public AuthenticationData ConsumerAuthenticationData { get; set; } + + public DisconnectRequest() + { + } + + public DisconnectRequest(AuthenticationData consumerAuthenticationData) + { + ConsumerAuthenticationData = consumerAuthenticationData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DiscoveryScope.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DiscoveryScope.cs new file mode 100644 index 0000000..ff4d05c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/DiscoveryScope.cs @@ -0,0 +1,9 @@ +namespace Asb.Base.V2; + +public enum DiscoveryScope +{ + Default, + Local, + Global, + Closest +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/EntityHandle.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/EntityHandle.cs new file mode 100644 index 0000000..2c0b15e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/EntityHandle.cs @@ -0,0 +1,17 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlInclude(typeof(SourceHandle))] +[XmlInclude(typeof(SolutionHandle))] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class EntityHandle +{ + [XmlElement(ElementName = "Key", Order = 0)] + public Value Key { get; set; } + + [XmlElement(ElementName = "NamePath", Order = 1)] + public string NamePath { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusItemsRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusItemsRequest.cs new file mode 100644 index 0000000..c1f00cb --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusItemsRequest.cs @@ -0,0 +1,10 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "GetStatusItems", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class GetStatusItemsRequest : ConnectedRequest +{ +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusItemsResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusItemsResponse.cs new file mode 100644 index 0000000..3d3db8a --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusItemsResponse.cs @@ -0,0 +1,23 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "GetStatusItemsResponse", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class GetStatusItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 2)] + [XmlElement(ElementName = "Items")] + public string[] Items { get; set; } + + public GetStatusItemsResponse() + { + } + + public GetStatusItemsResponse(ArchestrAResult result, string[] items, ConnectionState downstreamConnectionState) + : base(result, downstreamConnectionState) + { + Items = items; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusRequest.cs new file mode 100644 index 0000000..70ca1a4 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusRequest.cs @@ -0,0 +1,22 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "GetStatus", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class GetStatusRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "ItemsToReturn")] + public string[] ItemsToReturn { get; set; } + + public GetStatusRequest() + { + } + + public GetStatusRequest(string[] itemsToReturn) + { + ItemsToReturn = itemsToReturn; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusResponse.cs new file mode 100644 index 0000000..8c085ec --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/GetStatusResponse.cs @@ -0,0 +1,25 @@ +using System.ServiceModel; +using System.Xml.Serialization; +using Asb.Base.V2.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "GetStatusResponse", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +[BaseV2SerializerContractBehavior] +public class GetStatusResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 2)] + [XmlElement(ElementName = "Items")] + public NamedValue[] Items { get; set; } + + public GetStatusResponse() + { + } + + public GetStatusResponse(ArchestrAResult result, NamedValue[] items, ConnectionState downstreamConnectionState) + : base(result, downstreamConnectionState) + { + Items = items; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IAuthenticateAsb.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IAuthenticateAsb.cs new file mode 100644 index 0000000..8f0f000 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IAuthenticateAsb.cs @@ -0,0 +1,33 @@ +using System.ServiceModel; +using Asb.Base.V2.Serialization; + +namespace Asb.Base.V2; + +[ServiceContract(Namespace = "urn:asb.se:2", ConfigurationName = "IAuthenticateAsb")] +[BaseV2SerializerContractBehavior] +public interface IAuthenticateAsb +{ + [OperationContract(Action = "urn:asb.se:2/IAuthenticateAsb/Connect", ReplyAction = "urn:asb.se:2/IAuthenticateAsb/ConnectResponse")] + ConnectResponse Connect(ConnectRequest request); + + [OperationContract(Action = "urn:asb.se:2/IAuthenticateAsb/AuthenticateMe", ReplyAction = "urn:asb.se:2/IAuthenticateAsb/AuthenticateMeResponse")] + AuthenticateMeResponse AuthenticateMe(AuthenticateMeRequest request); + + [OperationContract(Action = "urn:asb.se:2/IAuthenticateAsb/Renew", ReplyAction = "urn:asb.se:2/IAuthenticateAsb/RenewResponse")] + RenewResponse Renew(RenewRequest request); + + [OperationContract(Action = "urn:asb.se:2/IAuthenticateAsb/GetStatusItems", ReplyAction = "urn:asb.se:2/IAuthenticateAsb/GetStatusItemsResponse")] + GetStatusItemsResponse GetStatusItems(GetStatusItemsRequest request); + + [OperationContract(Action = "urn:asb.se:2/IAuthenticateAsb/GetStatus", ReplyAction = "urn:asb.se:2/IAuthenticateAsb/GetStatusResponse")] + GetStatusResponse GetStatus(GetStatusRequest request); + + [OperationContract(IsOneWay = true, Action = "urn:asb.se:2/IAuthenticateAsb/UpdateSystemAuthenticationConfiguration")] + void UpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfigurationRequest request); + + [OperationContract(Action = "urn:asb.se:2/IAuthenticateAsb/KeepAlive")] + KeepAliveResponse KeepAlive(KeepAliveRequest request); + + [OperationContract(IsOneWay = true, Action = "urn:asb.se:2/IAuthenticateAsb/Disconnect")] + void Disconnect(DisconnectRequest request); +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IBaseV2.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IBaseV2.cs new file mode 100644 index 0000000..c8935d6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IBaseV2.cs @@ -0,0 +1,20 @@ +using System; + +namespace Asb.Base.V2; + +public interface IBaseV2 +{ + Guid ConnectionId { get; set; } + + DateTime ServiceLoadTime { get; set; } + + void OnConnect(ulong timeout, ConsumerMetadata metadata); + + ArchestrAResult KeepAlive(); + + ArchestrAResult GetStatusItems(out string[] items); + + ArchestrAResult GetStatus(string[] itemsToReturn, out NamedValue[] items); + + void OnDisconnect(); +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IClientManagement.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IClientManagement.cs new file mode 100644 index 0000000..ab9b1e6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/IClientManagement.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Discovery; +using System.Threading; +using System.Xml; + +namespace Asb.Base.V2; + +internal interface IClientManagement +{ + ConnectContext CreateConnectContext(EndpointAddress serviceEndpointAddress, Binding binding, string application, string user, CancellationToken cancellationToken) where T : class, IAuthenticateAsb; + + void InjectCustomBehavior(ChannelFactory channelFactory) where T : class, IAuthenticateAsb; + + bool EstablishSecureSession(ConnectContext context, string solutionName, ClientAccess access) where T : class, IAuthenticateAsb; + + void DisconnectSecureSession(ConnectContext context) where T : class, IAuthenticateAsb; + + IEnumerable DiscoverEndpointsForContract(XmlQualifiedName contract, string scopeRule); +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ISolutionParameters.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ISolutionParameters.cs new file mode 100644 index 0000000..cb41642 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ISolutionParameters.cs @@ -0,0 +1,27 @@ +using System; +using System.Numerics; + +namespace Asb.Base.V2; + +internal interface ISolutionParameters +{ + string DefaultAsbSolutionName { get; } + + string GetSolutionPassphrase(string asbSolution, Action errorMessageHandler); + + byte[] GetSolutionCertificate(string asbSolution); + + string GetSolutionSaltValue(string asbSolution); + + string GetSolutionHashAlgorithm(string asbSolution); + + int GetSolutionPasswordIterations(string asbSolution); + + string GetSolutionInitialVector(string asbSolution); + + int GetSolutionKeySize(string asbSolution); + + BigInteger GetSolutionPrime(string asbSolution); + + BigInteger GetSolutionGenerator(string asbSolution); +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/KeepAliveRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/KeepAliveRequest.cs new file mode 100644 index 0000000..8545c79 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/KeepAliveRequest.cs @@ -0,0 +1,22 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "KeepAlive", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class KeepAliveRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "ConsumerAuthenticationData")] + public AuthenticationData ConsumerAuthenticationData { get; set; } + + public KeepAliveRequest() + { + } + + public KeepAliveRequest(AuthenticationData consumerAuthenticationData) + { + ConsumerAuthenticationData = consumerAuthenticationData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/KeepAliveResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/KeepAliveResponse.cs new file mode 100644 index 0000000..0277705 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/KeepAliveResponse.cs @@ -0,0 +1,18 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "KeepAliveResponse", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class KeepAliveResponse : ConnectedResponse +{ + public KeepAliveResponse() + { + } + + public KeepAliveResponse(ArchestrAResult result, ConnectionState downstreamConnectionState) + : base(result, downstreamConnectionState) + { + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/MxValueHelper.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/MxValueHelper.cs new file mode 100644 index 0000000..8950cb2 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/MxValueHelper.cs @@ -0,0 +1,3719 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Text; +using ArchestrAServices.ASBContract; + +namespace Asb.Base.V2; + +public static class MxValueHelper +{ + public static object ReadByte(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = mxLegacyPayload[0]; + return obj; + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (byte)Convert.ChangeType(obj, typeof(byte), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadShort(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = BitConverter.ToInt16(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (short)Convert.ChangeType(obj, typeof(short), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadUnsignedShort(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = BitConverter.ToUInt16(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (ushort)Convert.ChangeType(obj, typeof(ushort), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadInt(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = BitConverter.ToInt32(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (int)Convert.ChangeType(obj, typeof(int), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadUnsignedInt(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = BitConverter.ToUInt32(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (uint)Convert.ChangeType(obj, typeof(uint), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadLong(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = BitConverter.ToInt64(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (long)Convert.ChangeType(obj, typeof(long), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadUnsignedLong(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = BitConverter.ToUInt64(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (ulong)Convert.ChangeType(obj, typeof(ulong), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadSingle(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object obj2 = null; + try + { + DataType dataType = ASBEnumFactory.IntToDataType(mxLegacyType); + switch (dataType) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = BitConverter.ToSingle(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadString(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + obj2 = ((dataType == DataType.TypeLocalizedText) ? ((object)(float)Convert.ChangeType(obj, typeof(float), ExtractLocaleInfo(mxLegacyType, mxLegacyPayload))) : ((object)(float)Convert.ChangeType(obj, typeof(float), CultureInfo.CurrentCulture))); + if (float.IsInfinity((float)obj2)) + { + obj2 = obj; + } + } + } + catch (InvalidCastException) + { + obj2 = obj; + } + catch (FormatException) + { + obj2 = obj; + } + catch (OverflowException) + { + obj2 = obj; + } + return obj2; + } + + public static object ReadDouble(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + DataType dataType = ASBEnumFactory.IntToDataType(mxLegacyType); + switch (dataType) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = BitConverter.ToDouble(mxLegacyPayload, 0); + return obj; + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadString(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = ((dataType == DataType.TypeLocalizedText) ? ((object)(double)Convert.ChangeType(obj, typeof(double), ExtractLocaleInfo(mxLegacyType, mxLegacyPayload))) : ((object)(double)Convert.ChangeType(obj, typeof(double), CultureInfo.CurrentCulture))); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadString(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeLocalizedText: + if (mxLegacyPayload.Length > 20) + { + obj = Encoding.Unicode.GetString(mxLegacyPayload, 20, mxLegacyPayload.Length - 20); + } + break; + default: + if (mxLegacyPayload != null) + { + obj = Encoding.Unicode.GetString(mxLegacyPayload); + } + return obj; + } + if (obj != null) + { + result = (string)Convert.ChangeType(obj, typeof(string), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadLocalizedString(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeString: + return Encoding.Unicode.GetString(mxLegacyPayload); + case DataType.TypeDouble: + return Encoding.Unicode.GetString(mxLegacyPayload); + case DataType.TypeLocalizedText: + if (mxLegacyPayload.Length > 20) + { + return Encoding.Unicode.GetString(mxLegacyPayload, 20, mxLegacyPayload.Length - 20); + } + break; + } + throw new InvalidCastException("Cannot convert Variant to a string value"); + } + + public static object ReadBoolean(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = Convert.ToBoolean(mxLegacyPayload[0]); + return obj; + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length == 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (bool)Convert.ChangeType(obj, typeof(bool), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadSignedByte(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = (sbyte)mxLegacyPayload[0]; + return obj; + } + break; + default: + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (sbyte)Convert.ChangeType(obj, typeof(sbyte), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadDateTime(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = DateTime.FromFileTimeUtc(BitConverter.ToInt64(mxLegacyPayload, 0)); + return obj; + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadString(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (DateTime)Convert.ChangeType(obj, typeof(DateTime), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadDuration(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = TimeSpan.FromTicks(BitConverter.ToInt64(mxLegacyPayload, 0)); + return obj; + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + default: + obj = ReadString(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (TimeSpan)Convert.ChangeType(obj, typeof(TimeSpan), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadGuid(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + { + string g = (string)ReadString(mxLegacyType, mxLegacyLength, mxLegacyPayload); + obj = new Guid(g); + return obj; + } + default: + obj = ReadString(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = ((!(obj is string g2)) ? ((object)(Guid)Convert.ChangeType(obj, typeof(Guid), CultureInfo.CurrentCulture)) : ((object)new Guid(g2))); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadEnum(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + object obj = null; + object result = null; + try + { + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + if (mxLegacyPayload.Length == 1) + { + obj = ReadBoolean(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeByte: + if (mxLegacyPayload.Length == 1) + { + obj = ReadByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeSByte: + if (mxLegacyPayload.Length >= 1) + { + obj = ReadSignedByte(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt16: + if (mxLegacyPayload.Length == 2) + { + obj = ReadUnsignedShort(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt32: + if (mxLegacyPayload.Length == 4) + { + obj = ReadUnsignedInt(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeUInt64: + if (mxLegacyPayload.Length == 8) + { + obj = ReadUnsignedLong(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeFloat: + if (mxLegacyPayload.Length == 4) + { + obj = ReadSingle(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDouble: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDouble(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDateTime: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeDuration: + if (mxLegacyPayload.Length == 8) + { + obj = ReadDuration(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeGuid: + if (mxLegacyPayload.Length == 4) + { + obj = ReadDateTime(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + break; + case DataType.TypeEnum: + { + int num = 0; + short ordinal = BitConverter.ToInt16(mxLegacyPayload, num); + num += 2; + int count = BitConverter.ToInt32(mxLegacyPayload, num) * 2; + num += 4; + obj = new CustomEnum(ordinal, Encoding.Unicode.GetString(mxLegacyPayload, num, count)); + break; + } + default: + obj = ReadString(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (obj != null) + { + result = (CustomEnum)Convert.ChangeType(obj, typeof(CustomEnum), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public static object ReadIntegerArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + if (mxLegacyPayload.Length >= 4) + { + int[] array2 = new int[mxLegacyLength / 4]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToInt32(mxLegacyPayload, num); + num += 4; + num2++; + } + return array2; + } + return new int[0]; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + int[] array3 = new int[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (int)Convert.ChangeType(array.GetValue(i), typeof(int), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadByteArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + if (mxLegacyPayload.Length >= 1) + { + return mxLegacyPayload; + } + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + byte[] array2 = new byte[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (byte)Convert.ChangeType(array.GetValue(i), typeof(byte), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + public static char[] ReadCharArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + ASBEnumFactory.IntToDataType(mxLegacyType); + if (mxLegacyPayload.Length >= 2) + { + char[] array = new char[mxLegacyLength / 2]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array[num2] = BitConverter.ToChar(mxLegacyPayload, num); + num += 2; + num2++; + } + return array; + } + return new char[0]; + } + + public static object ReadShortArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + if (mxLegacyPayload.Length >= 2) + { + short[] array2 = new short[mxLegacyLength / 2]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToInt16(mxLegacyPayload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + short[] array3 = new short[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (short)Convert.ChangeType(array.GetValue(i), typeof(short), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadUnsignedShortArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + if (mxLegacyPayload.Length >= 2) + { + ushort[] array2 = new ushort[mxLegacyLength / 2]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToUInt16(mxLegacyPayload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + ushort[] array3 = new ushort[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ushort)Convert.ChangeType(array.GetValue(i), typeof(ushort), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadUnsignedIntArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + if (mxLegacyPayload.Length >= 4) + { + uint[] array2 = new uint[mxLegacyLength / 4]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToUInt32(mxLegacyPayload, num); + num += 4; + num2++; + } + array = array2; + } + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + uint[] array3 = new uint[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (uint)Convert.ChangeType(array.GetValue(i), typeof(uint), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadLongArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + case DataType.TypeInt64Array: + case DataType.TypeDurationArray: + if (mxLegacyPayload.Length >= 8) + { + long[] array2 = new long[mxLegacyLength / 8]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToInt64(mxLegacyPayload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + long[] array3 = new long[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (long)Convert.ChangeType(array.GetValue(i), typeof(long), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadUnsignedLongArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + if (mxLegacyPayload.Length >= 8) + { + ulong[] array2 = new ulong[mxLegacyLength / 8]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToUInt64(mxLegacyPayload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + ulong[] array3 = new ulong[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ulong)Convert.ChangeType(array.GetValue(i), typeof(ulong), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadSingleArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + if (mxLegacyPayload.Length >= 4) + { + float[] array2 = new float[mxLegacyLength / 4]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToSingle(mxLegacyPayload, num); + num += 4; + num2++; + } + return array2; + } + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + float[] array3 = new float[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (float)Convert.ChangeType(array.GetValue(i), typeof(float), CultureInfo.CurrentCulture); + if (float.IsInfinity(array3[i])) + { + return array; + } + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadDoubleArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + if (mxLegacyPayload.Length >= 8) + { + double[] array2 = new double[mxLegacyLength / 8]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToDouble(mxLegacyPayload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + double[] array3 = new double[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (double)Convert.ChangeType(array.GetValue(i), typeof(double), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadStringArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeGuid: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeGuidArray: + case DataType.TypeLocalizedTextArray: + { + if (mxLegacyPayload.Length <= 4) + { + break; + } + Queue queue = new Queue(); + uint num = 0u; + int num2; + for (num2 = 0; num2 < mxLegacyLength; num2 += (int)num) + { + num = BitConverter.ToUInt32(mxLegacyPayload, num2); + if (num2 + num >= mxLegacyLength) + { + break; + } + num2 += 4; + queue.Enqueue(Encoding.Unicode.GetString(mxLegacyPayload, num2, (int)num)); + } + return queue.ToArray(); + } + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + string[] array2 = new string[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (string)Convert.ChangeType(array.GetValue(i), typeof(string), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + public static object ReadDateTimeArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + if (mxLegacyPayload.Length >= 8) + { + DateTime[] array2 = new DateTime[mxLegacyLength / 8]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + long fileTime = BitConverter.ToInt64(mxLegacyPayload, num); + array2[num2] = DateTime.FromFileTimeUtc(fileTime); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + DateTime[] array3 = new DateTime[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (DateTime)Convert.ChangeType(array.GetValue(i), typeof(DateTime), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadDurationArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + if (mxLegacyPayload.Length >= 8) + { + TimeSpan[] array2 = new TimeSpan[mxLegacyLength / 8]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + long value = BitConverter.ToInt64(mxLegacyPayload, num); + array2[num2] = TimeSpan.FromTicks(value); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + TimeSpan[] array3 = new TimeSpan[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (TimeSpan)Convert.ChangeType(array.GetValue(i), typeof(TimeSpan), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadGuidArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + if (mxLegacyPayload.Length > 4) + { + string[] array2 = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + Guid[] array3 = new Guid[array2.Length]; + for (int i = 0; i < array2.Length; i++) + { + array3[i] = new Guid(array2[i]); + } + return array3; + } + break; + } + if (array != null) + { + Guid[] array4 = new Guid[array.Length]; + for (int j = 0; j < array4.Length; j++) + { + try + { + if (array.GetValue(j).GetType() == typeof(string)) + { + string g = (string)array.GetValue(j); + array4[j] = new Guid(g); + } + else + { + array4[j] = (Guid)Convert.ChangeType(array.GetValue(j), typeof(Guid), CultureInfo.CurrentCulture); + } + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array4; + } + return array; + } + + public static object ReadBooleanArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + if (mxLegacyPayload.Length >= 1) + { + bool[] array2 = new bool[mxLegacyLength / 1]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = BitConverter.ToBoolean(mxLegacyPayload, num); + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + bool[] array3 = new bool[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (bool)Convert.ChangeType(array.GetValue(i), typeof(bool), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + public static object ReadSignedByteArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + if (mxLegacyPayload.Length >= 1) + { + sbyte[] array2 = new sbyte[mxLegacyLength]; + int num = 0; + int num2 = 0; + while (num < mxLegacyLength) + { + array2[num2] = (sbyte)mxLegacyPayload[num]; + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + } + if (array != null) + { + sbyte[] array3 = new sbyte[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (sbyte)Convert.ChangeType(array.GetValue(i), typeof(sbyte), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return new sbyte[0]; + } + + public static object ReadEnumArray(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + Array array = null; + switch (ASBEnumFactory.IntToDataType(mxLegacyType)) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])ReadBooleanArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])ReadDurationArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])ReadByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])ReadSignedByteArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])ReadShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])ReadUnsignedShortArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])ReadIntegerArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])ReadUnsignedIntArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])ReadLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])ReadUnsignedLongArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])ReadSingleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])ReadDoubleArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])ReadStringArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])ReadDateTimeArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])ReadGuidArray(mxLegacyType, mxLegacyLength, mxLegacyPayload); + break; + case DataType.TypeEnum: + case DataType.TypeEnumArray: + { + List list = new List(); + int num = 0; + while (num < mxLegacyLength) + { + short ordinal = BitConverter.ToInt16(mxLegacyPayload, num); + num += 2; + int num2 = BitConverter.ToInt32(mxLegacyPayload, num) * 2; + if (num + num2 >= mxLegacyPayload.Length) + { + break; + } + num += 4; + CustomEnum item = new CustomEnum(ordinal, Encoding.Unicode.GetString(mxLegacyPayload, num, num2)); + list.Add(item); + num += num2; + } + array = list.ToArray(); + break; + } + } + if (array != null) + { + CustomEnum[] array2 = new CustomEnum[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (CustomEnum)Convert.ChangeType(array.GetValue(i), typeof(CustomEnum), CultureInfo.CurrentCulture); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + internal static object GetValueInTargetType(DataType targetType, object retValue) + { + return targetType switch + { + DataType.TypeBool => Convert.ChangeType(retValue, typeof(bool), CultureInfo.CurrentCulture), + DataType.TypeByte => Convert.ChangeType(retValue, typeof(byte), CultureInfo.CurrentCulture), + DataType.TypeDateTime => Convert.ChangeType(retValue, typeof(DateTime), CultureInfo.CurrentCulture), + DataType.TypeDouble => Convert.ChangeType(retValue, typeof(double), CultureInfo.CurrentCulture), + DataType.TypeDuration => Convert.ChangeType(retValue, typeof(long), CultureInfo.CurrentCulture), + DataType.TypeFloat => Convert.ChangeType(retValue, typeof(float), CultureInfo.CurrentCulture), + DataType.TypeGuid => Convert.ChangeType(retValue, typeof(Guid), CultureInfo.CurrentCulture), + DataType.TypeInt16 => Convert.ChangeType(retValue, typeof(short), CultureInfo.CurrentCulture), + DataType.TypeInt32 => Convert.ChangeType(retValue, typeof(int), CultureInfo.CurrentCulture), + DataType.TypeInt64 => Convert.ChangeType(retValue, typeof(long), CultureInfo.CurrentCulture), + DataType.TypeSByte => Convert.ChangeType(retValue, typeof(sbyte), CultureInfo.CurrentCulture), + DataType.TypeUInt16 => Convert.ChangeType(retValue, typeof(ushort), CultureInfo.CurrentCulture), + DataType.TypeUInt32 => Convert.ChangeType(retValue, typeof(uint), CultureInfo.CurrentCulture), + DataType.TypeUInt64 => Convert.ChangeType(retValue, typeof(ulong), CultureInfo.CurrentCulture), + _ => Convert.ChangeType(retValue, typeof(string), CultureInfo.CurrentCulture), + }; + } + + private static CultureInfo ExtractLocaleInfo(ushort mxLegacyType, byte[] mxLegacyPayload) + { + CultureInfo result = CultureInfo.InvariantCulture; + if (ASBEnumFactory.IntToDataType(mxLegacyType) == DataType.TypeLocalizedText && mxLegacyPayload.Length >= 11 && int.TryParse(Encoding.Unicode.GetString(mxLegacyPayload, 8, 8), NumberStyles.HexNumber, CultureInfo.InvariantCulture, out var result2) && result2 > 0) + { + result = CultureInfo.GetCultureInfo(result2); + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/NamedValue.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/NamedValue.cs new file mode 100644 index 0000000..3751aab --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/NamedValue.cs @@ -0,0 +1,15 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class NamedValue +{ + [XmlElement(ElementName = "Name", Order = 0)] + public string Name { get; set; } + + [XmlElement(ElementName = "Value", Order = 1)] + public Value Value { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/NativeMethods.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/NativeMethods.cs new file mode 100644 index 0000000..72c463b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/NativeMethods.cs @@ -0,0 +1,23 @@ +using System; +using System.Runtime.InteropServices; + +namespace Asb.Base.V2; + +internal static class NativeMethods +{ + public enum WTS_INFO_CLASS + { + WTSSessionId = 4, + WTSClientName = 10 + } + + public static readonly IntPtr WTS_CURRENT_SERVER_HANDLE = IntPtr.Zero; + + public const int WTS_CURRENT_SESSION = -1; + + [DllImport("Wtsapi32.dll", CharSet = CharSet.Auto)] + public static extern bool WTSQuerySessionInformation(IntPtr hServer, int sessionId, WTS_INFO_CLASS wtsInfoClass, out IntPtr ppBuffer, out int pBytesReturned); + + [DllImport("wtsapi32.dll", ExactSpelling = true)] + public static extern void WTSFreeMemory(IntPtr memory); +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/PublicKey.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/PublicKey.cs new file mode 100644 index 0000000..c12ce5c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/PublicKey.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class PublicKey +{ + [XmlElement(ElementName = "Data", DataType = "base64Binary", Order = 0)] + public byte[] Data { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/RenewRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/RenewRequest.cs new file mode 100644 index 0000000..711c87d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/RenewRequest.cs @@ -0,0 +1,33 @@ +using System; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "Renew", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class RenewRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "ConsumerAuthenticationData")] + public AuthenticationData ConsumerAuthenticationData { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 1)] + [XmlElement(ElementName = "NewConnectionId")] + public Guid NewConnectionId { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 2)] + [XmlElement(ElementName = "NewConsumerPublicKey")] + public PublicKey NewConsumerPublicKey { get; set; } + + public RenewRequest() + { + } + + public RenewRequest(AuthenticationData consumerAuthenticationData, Guid newConnectionId, PublicKey newConsumerPublicKey) + { + ConsumerAuthenticationData = consumerAuthenticationData; + NewConnectionId = newConnectionId; + NewConsumerPublicKey = newConsumerPublicKey; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/RenewResponse.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/RenewResponse.cs new file mode 100644 index 0000000..9364694 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/RenewResponse.cs @@ -0,0 +1,39 @@ +using System; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "RenewResponse", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class RenewResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 2)] + [XmlElement(ElementName = "NewConnectionId")] + public Guid NewConnectionId { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 3)] + [XmlElement(ElementName = "NewConnectionLifetime", DataType = "duration")] + public string NewConnectionLifetime { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 4)] + [XmlElement(ElementName = "NewServicePublicKey")] + public PublicKey NewServicePublicKey { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 5)] + [XmlElement(ElementName = "NewServiceAuthenticationData")] + public AuthenticationData NewServiceAuthenticationData { get; set; } + + public RenewResponse() + { + } + + public RenewResponse(ArchestrAResult result, Guid newConnectionId, string newConnectionLifetime, PublicKey newServicePublicKey, AuthenticationData newServiceAuthenticationData) + : base(result) + { + NewConnectionId = newConnectionId; + NewConnectionLifetime = newConnectionLifetime; + NewServicePublicKey = newServicePublicKey; + NewServiceAuthenticationData = newServiceAuthenticationData; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SerializationExtensions.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SerializationExtensions.cs new file mode 100644 index 0000000..52ab2cc --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SerializationExtensions.cs @@ -0,0 +1,98 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Xml.Linq; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +public static class SerializationExtensions +{ + private static readonly Dictionary xmlSerializers = new Dictionary(); + + private static readonly object serializersLock = new object(); + + public static string ToXml(this object value) + { + string xmlText = string.Empty; + if (value != null) + { + try + { + using TextWriter textWriter = new StringWriter(CultureInfo.CurrentCulture); + lock (serializersLock) + { + XmlSerializer typeSerializer = GetTypeSerializer(value.GetType()); + if (typeSerializer != null) + { + typeSerializer.Serialize(textWriter, value); + xmlText = textWriter.ToString(); + } + } + } + catch + { + } + } + return NormalizeXmlText(xmlText); + } + + private static XmlSerializer GetTypeSerializer(Type objectType) + { + XmlSerializer xmlSerializer = null; + if (objectType != null) + { + lock (serializersLock) + { + if (!xmlSerializers.ContainsKey(objectType)) + { + string defaultNamespace = "urn:invensys.schemas"; + object[] customAttributes = objectType.GetCustomAttributes(inherit: true); + for (int i = 0; i < customAttributes.Length; i++) + { + if (customAttributes[i] is XmlRootAttribute xmlRootAttribute) + { + defaultNamespace = xmlRootAttribute.Namespace; + break; + } + } + xmlSerializer = new XmlSerializer(objectType, defaultNamespace); + xmlSerializers.Add(objectType, xmlSerializer); + } + else + { + xmlSerializer = xmlSerializers[objectType]; + } + } + } + return xmlSerializer; + } + + private static string NormalizeXmlText(string xmlText) + { + if (string.IsNullOrEmpty(xmlText)) + { + return xmlText; + } + if (Environment.Is64BitProcess) + { + using StringReader textReader = new StringReader(xmlText); + using IEnumerator enumerator = XDocument.Load(textReader).Elements().GetEnumerator(); + if (enumerator.MoveNext()) + { + XElement current = enumerator.Current; + XAttribute xAttribute = current.Attribute(XNamespace.Xmlns + "xsd"); + XAttribute xAttribute2 = current.Attribute(XNamespace.Xmlns + "xsi"); + if (xAttribute != null && xAttribute2 != null) + { + current.ReplaceAttributes(xAttribute2, xAttribute); + } + using TextWriter textWriter = new StringWriter(CultureInfo.CurrentCulture); + current.Save(textWriter); + xmlText = textWriter.ToString(); + } + } + return xmlText; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ServiceMessage.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ServiceMessage.cs new file mode 100644 index 0000000..678e390 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ServiceMessage.cs @@ -0,0 +1,8 @@ +using System.ServiceModel; + +namespace Asb.Base.V2; + +[MessageContract] +public class ServiceMessage +{ +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SolutionHandle.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SolutionHandle.cs new file mode 100644 index 0000000..b66b02b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SolutionHandle.cs @@ -0,0 +1,12 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class SolutionHandle : SourceHandle +{ + [XmlElement(ElementName = "SolutionName", Order = 0)] + public string SolutionName { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SolutionParameters.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SolutionParameters.cs new file mode 100644 index 0000000..99f65d0 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SolutionParameters.cs @@ -0,0 +1,102 @@ +using System; +using System.Numerics; +using System.Text; +using ArchestrAServices.Common; + +namespace Asb.Base.V2; + +public class SolutionParameters : ISolutionParameters +{ + public string DefaultAsbSolutionName => SvcUtilities.ReadKeyValue(string.Empty, "DefaultASBSolution"); + + public string GetSolutionPassphrase(string asbSolution, Action errorMessageHandler) + { + string passphrase; + string solutionPassphrase = RegistryHandler.GetSolutionPassphrase(asbSolution, out passphrase); + if (!string.IsNullOrEmpty(solutionPassphrase)) + { + errorMessageHandler?.Invoke(solutionPassphrase); + } + return passphrase; + } + + public byte[] GetSolutionCertificate(string asbSolution) + { + string s; + if ((s = SvcUtilities.ReadKeyValue(asbSolution, "Certificate")) != null) + { + return Encoding.UTF8.GetBytes(s); + } + return null; + } + + public string GetSolutionSaltValue(string asbSolution) + { + string result; + if ((result = SvcUtilities.ReadKeyValue(asbSolution, "saltValue")) != null) + { + return result; + } + return null; + } + + public string GetSolutionHashAlgorithm(string asbSolution) + { + string result; + if ((result = SvcUtilities.ReadKeyValue(asbSolution, "HashAlgorthim")) != null) + { + return result; + } + return null; + } + + public int GetSolutionPasswordIterations(string asbSolution) + { + string s; + if ((s = SvcUtilities.ReadKeyValue(asbSolution, "passowordIterations")) != null && int.TryParse(s, out var result)) + { + return result; + } + return 0; + } + + public string GetSolutionInitialVector(string asbSolution) + { + string result; + if ((result = SvcUtilities.ReadKeyValue(asbSolution, "initailizationVector")) != null) + { + return result; + } + return null; + } + + public int GetSolutionKeySize(string asbSolution) + { + string s; + if ((s = SvcUtilities.ReadKeyValue(asbSolution, "keySize")) != null && int.TryParse(s, out var result)) + { + return result; + } + return 0; + } + + public BigInteger GetSolutionPrime(string asbSolution) + { + string value; + if ((value = SvcUtilities.ReadKeyValue(asbSolution, "Prime")) != null && BigInteger.TryParse(value, out var result)) + { + return result; + } + return BigInteger.Zero; + } + + public BigInteger GetSolutionGenerator(string asbSolution) + { + string value; + if ((value = SvcUtilities.ReadKeyValue(asbSolution, "Generator")) != null && BigInteger.TryParse(value, out var result)) + { + return result; + } + return BigInteger.Zero; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SourceHandle.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SourceHandle.cs new file mode 100644 index 0000000..122358d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SourceHandle.cs @@ -0,0 +1,13 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlInclude(typeof(SolutionHandle))] +[XmlType(Namespace = "urn:data.asb.se:2")] +public class SourceHandle : EntityHandle +{ + [XmlElement(ElementName = "SourceId", Order = 0)] + public ushort SourceId { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthParameters.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthParameters.cs new file mode 100644 index 0000000..f9a9b33 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthParameters.cs @@ -0,0 +1,251 @@ +using System; +using System.Numerics; +using System.Security.Cryptography; +using ArchestrAServices.Common; + +namespace Asb.Base.V2; + +public class SysAuthParameters +{ + private const string SDecimal768 = "1552518092300708935130918131258481755631334049434514313202351194902966239949102107258669453876591642442910007680288864229150803718918046342632727613031282983744380820890196288509170691316593175367469551763119843371637221007210577919"; + + private static readonly byte[] sOakley768 = new byte[96] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 58, 54, 32, 255, 255, + 255, 255, 255, 255, 255, 255 + }; + + private const string SDecimal1024 = "179769313486231590770839156793787453197860296048756011706444423684197180216158519368947833795864925541502180565485980503646440548199239100050792877003355816639229553136239076508735759914822574862575007425302077447712589550957937778424442426617334727629299387668709205606050270810842907692932019128194"; + + private static readonly byte[] sOakley1024 = new byte[128] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 55, 237, 107, 11, 255, + 92, 182, 244, 6, 183, 237, 238, 56, 107, 251, + 90, 137, 159, 165, 174, 159, 36, 17, 124, 75, + 31, 230, 73, 40, 102, 81, 236, 230, 83, 129, + 255, 255, 255, 255, 255, 255, 255, 255 + }; + + private const string SDecimal1536 = "2410312426921032588552076022197566074856950548502459942654116941958108831682612228890093858261341614673227141477904012196503648957050582631942730706805009223062734745341073406696246014589361659774041027169249453200378729434170325843778659198143763193776859869524088940195577346119843545301547043747207749969763750084308926339295559968882457872412993810129130294592999947926365264059284647209730384947211681434464714438488520940127459844288859336526896320919633919"; + + private static readonly byte[] sOakley1536 = new byte[192] + { + 255, 255, 255, 255, 255, 255, 255, 255, 201, 15, + 218, 162, 33, 104, 194, 52, 196, 198, 98, 139, + 128, 220, 28, 209, 41, 2, 78, 8, 138, 103, + 204, 116, 2, 11, 190, 166, 59, 19, 155, 34, + 81, 74, 8, 121, 142, 52, 4, 221, 239, 149, + 25, 179, 205, 58, 67, 27, 48, 43, 10, 109, + 242, 95, 20, 55, 79, 225, 53, 109, 109, 81, + 194, 69, 228, 133, 181, 118, 98, 94, 126, 198, + 244, 76, 66, 233, 166, 55, 237, 107, 11, 255, + 92, 182, 244, 6, 183, 237, 238, 56, 107, 251, + 90, 137, 159, 165, 174, 159, 36, 17, 124, 75, + 31, 230, 73, 40, 102, 81, 236, 228, 91, 61, + 194, 0, 124, 184, 161, 99, 191, 5, 152, 218, + 72, 54, 28, 85, 211, 154, 105, 22, 63, 168, + 253, 36, 207, 95, 131, 101, 93, 35, 220, 163, + 173, 150, 28, 98, 243, 86, 32, 133, 82, 187, + 158, 213, 41, 7, 112, 150, 150, 109, 103, 12, + 53, 78, 74, 188, 152, 4, 241, 116, 108, 8, + 202, 35, 115, 39, 255, 255, 255, 255, 255, 255, + 255, 255 + }; + + private const int DhKeySizeDft = 1024; + + private const int DhSecretSizeDft = 160; + + private static readonly string dhPassphraseDft = Environment.MachineName; + + private const uint ConnectionLifetimeDft = 60000u; + + private const string SaltValueDft = "s@1tValue"; + + private static readonly string hashAlgorithmDft = CngAlgorithm.MD5.ToString(); + + private const int PasswordIterationsDft = 1; + + private const string InitialVectorDft = "ba172e9941be138b"; + + private const int KeySizeDft = 256; + + private readonly ISolutionParameters solutionParameterSource; + + private string sysAuthPassphrase; + + public string AsbSolutionName { get; set; } + + public bool AsbSolutionValid { get; set; } + + public int DhKeySize { get; set; } + + public int DhSecretSize { get; set; } + + public BigInteger DhP { get; set; } + + public BigInteger DhG { get; set; } + + public string DhPassphrase + { + get + { + return sysAuthPassphrase; + } + set + { + ResetToDefaults(); + sysAuthPassphrase = value; + AsbSolutionValid = true; + } + } + + public byte[] DhCertificate { get; private set; } + + public uint ConnectionLifetime { get; set; } + + public string SaltValue { get; set; } + + public string HashAlgorithm { get; set; } + + public int PasswordIterations { get; set; } + + public string InitialVector { get; set; } + + public int KeySize { get; set; } + + public SysAuthParameters(string asbSolutionName = null) + { + ServiceTrace.LogVerbose("SysAuthParameters constructor with asbSolutionName = {0}", string.IsNullOrEmpty(asbSolutionName) ? "" : asbSolutionName); + AsbSolutionName = asbSolutionName; + solutionParameterSource = new SolutionParameters(); + AsbSolutionValid = false; + ResetToDefaults(); + LoadAsbSolution(); + } + + internal SysAuthParameters(string asbSolutionName, ISolutionParameters parameters) + { + ServiceTrace.LogVerbose("SysAuthParameters constructor with asbSolutionName = {0}", string.IsNullOrEmpty(asbSolutionName) ? "" : asbSolutionName); + AsbSolutionName = asbSolutionName; + solutionParameterSource = parameters; + AsbSolutionValid = false; + ResetToDefaults(); + LoadAsbSolution(); + } + + private void ResetToDefaults() + { + AsbSolutionValid = false; + DhKeySize = 1024; + DhSecretSize = 160; + sysAuthPassphrase = dhPassphraseDft; + DhCertificate = null; + ConnectionLifetime = 60000u; + SaltValue = "s@1tValue"; + HashAlgorithm = hashAlgorithmDft; + PasswordIterations = 1; + InitialVector = "ba172e9941be138b"; + KeySize = 256; + GenerateKey(); + } + + private void LoadAsbSolution() + { + ServiceTrace.LogResume("LoadAsbSolution entry"); + try + { + if (solutionParameterSource == null) + { + ServiceTrace.LogError("LoadAsbSolution: No solution source provided"); + AsbSolutionValid = false; + return; + } + if (string.IsNullOrEmpty(AsbSolutionName)) + { + AsbSolutionName = solutionParameterSource.DefaultAsbSolutionName; + if (string.IsNullOrEmpty(AsbSolutionName)) + { + ServiceTrace.LogError("LoadAsbSolution: Unable to get default ASB solution name"); + AsbSolutionValid = false; + } + ServiceTrace.LogInfo("LoadAsbSolution created with empty solution name, resetting to default '{0}'", string.IsNullOrEmpty(AsbSolutionName) ? "" : AsbSolutionName); + } + AsbSolutionValid = false; + if (!string.IsNullOrEmpty(AsbSolutionName)) + { + ServiceTrace.LogVerbose("LoadAsbSolution: Using solution {0}", AsbSolutionName); + string errorMessage = string.Empty; + DhPassphrase = solutionParameterSource.GetSolutionPassphrase(AsbSolutionName, delegate(string msg) + { + errorMessage = msg; + }); + if (string.IsNullOrEmpty(errorMessage)) + { + DhCertificate = solutionParameterSource.GetSolutionCertificate(AsbSolutionName); + SaltValue = solutionParameterSource.GetSolutionSaltValue(AsbSolutionName); + HashAlgorithm = solutionParameterSource.GetSolutionHashAlgorithm(AsbSolutionName); + PasswordIterations = solutionParameterSource.GetSolutionPasswordIterations(AsbSolutionName); + InitialVector = solutionParameterSource.GetSolutionInitialVector(AsbSolutionName); + KeySize = solutionParameterSource.GetSolutionKeySize(AsbSolutionName); + DhP = solutionParameterSource.GetSolutionPrime(AsbSolutionName); + DhG = solutionParameterSource.GetSolutionGenerator(AsbSolutionName); + AsbSolutionValid = true; + } + else + { + ServiceTrace.LogError("LoadAsbSolution: Error loading passphrase: " + errorMessage); + } + } + } + catch (Exception ex) + { + ServiceTrace.LogError("LoadAsbSolution: Exception caught: {0}", ex.Message); + AsbSolutionValid = false; + } + ServiceTrace.LogSuspend("LoadAsbSolution exit"); + } + + private void GenerateKey() + { + bool flag; + BigInteger result; + if (DhKeySize == 768) + { + flag = BigInteger.TryParse("1552518092300708935130918131258481755631334049434514313202351194902966239949102107258669453876591642442910007680288864229150803718918046342632727613031282983744380820890196288509170691316593175367469551763119843371637221007210577919", out result); + } + else if (DhKeySize == 1024) + { + flag = BigInteger.TryParse("179769313486231590770839156793787453197860296048756011706444423684197180216158519368947833795864925541502180565485980503646440548199239100050792877003355816639229553136239076508735759914822574862575007425302077447712589550957937778424442426617334727629299387668709205606050270810842907692932019128194", out result); + } + else + { + if (DhKeySize != 1536) + { + throw new ArgumentException("Invalid bit size."); + } + flag = BigInteger.TryParse("2410312426921032588552076022197566074856950548502459942654116941958108831682612228890093858261341614673227141477904012196503648957050582631942730706805009223062734745341073406696246014589361659774041027169249453200378729434170325843778659198143763193776859869524088940195577346119843545301547043747207749969763750084308926339295559968882457872412993810129130294592999947926365264059284647209730384947211681434464714438488520940127459844288859336526896320919633919", out result); + } + if (flag) + { + DhP = result; + } + DhG = new BigInteger(22); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthenticatorClientCache.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthenticatorClientCache.cs new file mode 100644 index 0000000..6bea71f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthenticatorClientCache.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; + +namespace Asb.Base.V2; + +public class SysAuthenticatorClientCache : SynchronizedKeyedCollection +{ + private static readonly SysAuthenticatorClientCache clientConnections = new SysAuthenticatorClientCache(); + + private static object cacheLockObject = new object(); + + private SysAuthenticatorClientCache() + { + } + + public static IEnumerable GetAllClientAuthenticators() + { + List list = new List(); + lock (cacheLockObject) + { + list.AddRange(clientConnections.Items); + return list; + } + } + + public static void AddClientAuthenticator(SystemAuthenticationClientAuthentication clientAuthenticator) + { + if (clientAuthenticator == null) + { + return; + } + lock (cacheLockObject) + { + if (!clientConnections.Contains(clientAuthenticator.ConnectionId)) + { + clientConnections.Add(clientAuthenticator); + } + } + } + + public static SystemAuthenticationClientAuthentication GetClientAuthenticator(Guid connectionId) + { + SystemAuthenticationClientAuthentication result = null; + lock (cacheLockObject) + { + if (clientConnections.Contains(connectionId)) + { + result = clientConnections[connectionId]; + } + } + return result; + } + + public static SystemAuthenticationClientAuthentication RemoveClientAuthenticator(Guid connectionId) + { + SystemAuthenticationClientAuthentication result = null; + lock (cacheLockObject) + { + if (clientConnections.Contains(connectionId)) + { + result = clientConnections[connectionId]; + clientConnections.Remove(connectionId); + } + } + return result; + } + + protected override Guid GetKeyForItem(SystemAuthenticationClientAuthentication item) + { + return item.ConnectionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthenticatorServiceCache.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthenticatorServiceCache.cs new file mode 100644 index 0000000..6978e0c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SysAuthenticatorServiceCache.cs @@ -0,0 +1,67 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Asb.Base.V2; + +public class SysAuthenticatorServiceCache : SynchronizedKeyedCollection +{ + private static readonly SysAuthenticatorServiceCache serviceConnections = new SysAuthenticatorServiceCache(); + + private static readonly object serviceCacheLockObject = new object(); + + private SysAuthenticatorServiceCache() + { + } + + public static IEnumerable GetAllServiceAuthenticators() + { + return serviceConnections.Items.AsEnumerable(); + } + + public static void AddServiceAuthenticator(SystemAuthenticationServiceAuthentication serviceAuthenticator) + { + if (serviceAuthenticator == null) + { + return; + } + lock (serviceCacheLockObject) + { + if (!serviceConnections.Contains(serviceAuthenticator.ConnectionId)) + { + serviceConnections.Add(serviceAuthenticator); + } + } + } + + public static SystemAuthenticationServiceAuthentication GetServiceAuthenticator(Guid connectionId) + { + SystemAuthenticationServiceAuthentication result = null; + lock (serviceCacheLockObject) + { + if (serviceConnections.Contains(connectionId)) + { + result = serviceConnections[connectionId]; + } + } + return result; + } + + public static SystemAuthenticationServiceAuthentication RemoveServiceAuthenticator(Guid connectionId) + { + SystemAuthenticationServiceAuthentication serviceAuthenticator = GetServiceAuthenticator(connectionId); + if (serviceAuthenticator != null) + { + lock (serviceCacheLockObject) + { + serviceConnections.Remove(connectionId); + } + } + return serviceAuthenticator; + } + + protected override Guid GetKeyForItem(SystemAuthenticationServiceAuthentication item) + { + return item.ConnectionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationClientAuthentication.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationClientAuthentication.cs new file mode 100644 index 0000000..9ded012 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationClientAuthentication.cs @@ -0,0 +1,142 @@ +using System; +using System.Globalization; +using System.Text; +using ArchestrAServices.Common; + +namespace Asb.Base.V2; + +public class SystemAuthenticationClientAuthentication : SystemAuthenticationConnectionBase +{ + public uint Timeout { get; set; } + + public SystemAuthenticationClientAuthentication(string asbSolution) + : base(asbSolution) + { + Reset(); + base.ReasonSecureSessionNotEstablished = "Constructed"; + } + + public static bool EstablishSecureSession(string asbSolution, ClientMetadata clientMetadata, Func connectDelegate, Func authenticateMeDelegate, Action connectionIdHandler, Action reasonSecureSessionNotEstablishedHandler) + { + SystemAuthenticationClientAuthentication systemAuthenticationClientAuthentication = new SystemAuthenticationClientAuthentication(asbSolution); + SysAuthenticatorClientCache.AddClientAuthenticator(systemAuthenticationClientAuthentication); + Guid connectionId = systemAuthenticationClientAuthentication.ConnectionId; + PublicKey consumerPublicKey = new PublicKey + { + Data = systemAuthenticationClientAuthentication.LocalPublicKey + }; + ConnectRequest arg = new ConnectRequest(connectionId, consumerPublicKey, asbSolution); + ConnectResponse connectResponse = null; + try + { + connectResponse = connectDelegate?.Invoke(arg); + } + catch (Exception ex) + { + string text = string.Format(CultureInfo.CurrentCulture, "Exception connecting to service during EstablishSecureSession: {0}", new object[1] { ex.Message }); + ServiceTrace.LogWarning(text); + reasonSecureSessionNotEstablishedHandler?.Invoke(text); + } + if (connectResponse != null) + { + if (connectResponse.Result.Success) + { + systemAuthenticationClientAuthentication.RemotePublicKey = connectResponse.ServicePublicKey.Data; + systemAuthenticationClientAuthentication.ReasonSecureSessionNotEstablished = string.Empty; + if (systemAuthenticationClientAuthentication.ValidResponse(connectResponse, forceHmac: true)) + { + byte[] initializationVector; + AuthenticateMeRequest authenticateMeRequest = new AuthenticateMeRequest(new AuthenticationData + { + Data = systemAuthenticationClientAuthentication.CalculateAuthenticationData(systemAuthenticationClientAuthentication.LocalPublicKey, systemAuthenticationClientAuthentication.RemotePublicKey, out initializationVector), + InitializationVector = initializationVector + }, clientMetadata); + systemAuthenticationClientAuthentication.Sign(authenticateMeRequest, forceHmac: true); + AuthenticateMeResponse authenticateMeResponse = authenticateMeDelegate(authenticateMeRequest); + if (authenticateMeResponse != null && authenticateMeResponse.Result.Success) + { + systemAuthenticationClientAuthentication.SecureSessionEstablished = true; + connectionIdHandler?.Invoke(connectionId); + } + else + { + ServiceTrace.LogVerbose("Service rejected the connection at the AuthenticateMe stage"); + string obj = "Service rejected the connection at the AuthenticateMe stage"; + if (authenticateMeResponse != null) + { + obj = ((authenticateMeResponse.Result.ErrorMessages == null || authenticateMeResponse.Result.ErrorMessages.Length == 0) ? string.Format(CultureInfo.CurrentCulture, "Service returned error {0} in response to AuthenticateMe method, cannot establish secure connection.", new object[1] { authenticateMeResponse.Result.ResultCodeAsError }) : authenticateMeResponse.Result.ErrorMessages[0]); + } + reasonSecureSessionNotEstablishedHandler?.Invoke(obj); + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + connectionIdHandler?.Invoke(Guid.Empty); + } + } + else + { + if (!string.IsNullOrEmpty(systemAuthenticationClientAuthentication.ReasonSecureSessionNotEstablished)) + { + reasonSecureSessionNotEstablishedHandler?.Invoke("Service returned response to Connect method, but validation failed: " + systemAuthenticationClientAuthentication.ReasonSecureSessionNotEstablished); + } + else + { + reasonSecureSessionNotEstablishedHandler?.Invoke("Service returned response to Connect method, but validation data was not valid, cannot establish secure session"); + } + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + connectionIdHandler?.Invoke(Guid.Empty); + } + } + else + { + if (connectResponse.Result.ErrorMessages != null && connectResponse.Result.ErrorMessages.Length != 0) + { + reasonSecureSessionNotEstablishedHandler?.Invoke(string.Format(CultureInfo.CurrentCulture, "Service returned error {0} in response to Connect method, cannot establish secure connection. Additional information:", new object[1] { connectResponse.Result.ResultCodeAsError })); + string[] errorMessages = connectResponse.Result.ErrorMessages; + foreach (string obj2 in errorMessages) + { + reasonSecureSessionNotEstablishedHandler?.Invoke(obj2); + } + } + else + { + reasonSecureSessionNotEstablishedHandler?.Invoke(string.Format(CultureInfo.CurrentCulture, "Service returned error {0} in response to Connect method, cannot establish secure connection.", new object[1] { connectResponse.Result.ResultCodeAsError })); + } + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + connectionIdHandler?.Invoke(Guid.Empty); + } + } + else + { + SysAuthenticatorClientCache.RemoveClientAuthenticator(connectionId); + connectionIdHandler?.Invoke(Guid.Empty); + } + return systemAuthenticationClientAuthentication.SecureSessionEstablished; + } + + public void AbortSession() + { + Reset(); + base.ReasonSecureSessionNotEstablished = "Session Aborted"; + } + + public static void DisconnectSecureSession(Guid connectionId, Action disconnectDelegate) + { + SystemAuthenticationClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(connectionId); + if (clientAuthenticator != null) + { + byte[] initializationVector; + DisconnectRequest disconnectRequest = new DisconnectRequest(new AuthenticationData + { + Data = clientAuthenticator.EncypherWithNewInitializationVector(Encoding.UTF8.GetBytes(clientAuthenticator.ConnectionId.ToString()), out initializationVector), + InitializationVector = initializationVector + }); + clientAuthenticator.Sign(disconnectRequest, forceHmac: false); + disconnectDelegate?.Invoke(disconnectRequest); + } + } + + private new void Reset() + { + base.Reset(); + Timeout = 10000u; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationConnectionBase.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationConnectionBase.cs new file mode 100644 index 0000000..67486e9 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationConnectionBase.cs @@ -0,0 +1,509 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Numerics; +using System.Security.Cryptography; +using System.Security.Cryptography.X509Certificates; +using System.Text; +using ArchestrAServices.Common; + +namespace Asb.Base.V2; + +public class SystemAuthenticationConnectionBase +{ + private static readonly RNGCryptoServiceProvider random = new RNGCryptoServiceProvider(); + + private static readonly byte[] passwordsalt = Encoding.ASCII.GetBytes("ArchestrAService"); + + protected static string AsbAuthenticationVersion = "V2"; + + protected static readonly object MessageNumberLock = new object(); + + private readonly List outOfSyncMessageNumbers = new List(); + + private ulong highestMessageNumberReceived; + + private byte[] cryptoKey; + + private byte[] encryptionKey; + + protected SysAuthParameters SolutionParameters; + + protected byte[] PrivateKey; + + protected byte[] LocalPublicKey; + + protected byte[] RemotePublicKey; + + protected ulong NextMessageNumber = 1uL; + + internal static ISolutionParameters TestParameters { private get; set; } + + internal byte[] CryptoKey => cryptoKey ?? (cryptoKey = CalculateCryptoKey()); + + internal byte[] EncryptionKey => encryptionKey ?? (encryptionKey = CalculateEncryptionKey()); + + private byte[] SolutionPassphrase + { + get + { + byte[] result = null; + if (SolutionParameters.AsbSolutionValid) + { + if (!string.IsNullOrEmpty(SolutionParameters.DhPassphrase)) + { + result = Encoding.UTF8.GetBytes(SolutionParameters.DhPassphrase); + } + if (SolutionParameters.DhCertificate != null && SolutionParameters.DhCertificate.Length != 0) + { + result = new X509Certificate(SolutionParameters.DhCertificate).GetPublicKey(); + } + } + return result; + } + } + + public Guid ConnectionId { get; set; } = Guid.Empty; + + public ConnectionValidator ConnectionValidator { get; protected set; } + + public bool SecureSessionEstablished { get; protected set; } + + public string ReasonSecureSessionNotEstablished { get; protected set; } + + public string DhPassphrase + { + get + { + return SolutionParameters.DhPassphrase; + } + set + { + SolutionParameters.DhPassphrase = value; + } + } + + public string DhHashAlgorithm => SolutionParameters.HashAlgorithm; + + public string DhAsbSolutionName => SolutionParameters.AsbSolutionName; + + public SystemAuthenticationConnectionBase(string asbSolutionName = null) + { + if (TestParameters != null) + { + SolutionParameters = new SysAuthParameters(asbSolutionName, TestParameters); + } + else + { + SolutionParameters = new SysAuthParameters(asbSolutionName); + } + ReasonSecureSessionNotEstablished = "Constructed"; + Reset(); + } + + protected void Reset() + { + SecureSessionEstablished = false; + ReasonSecureSessionNotEstablished = "Reset"; + ConnectionId = Guid.NewGuid(); + PrivateKey = GetPrivateKey(SolutionParameters.KeySize); + LocalPublicKey = CalculatePublicKey(PrivateKey); + cryptoKey = null; + SecureSessionEstablished = false; + } + + private byte[] GetPrivateKey(int length) + { + byte[] array = null; + if (length > 0) + { + BigInteger bigInteger = SolutionParameters.DhP - new BigInteger(1); + BigInteger bigInteger2 = new BigInteger(0); + while (bigInteger2 >= bigInteger || bigInteger2 <= 0L) + { + array = new byte[length / 8]; + random.GetBytes(array); + bigInteger2 = new BigInteger(array); + } + } + return array; + } + + protected byte[] CalculatePublicKey(byte[] privateKey) + { + BigInteger exponent = new BigInteger(privateKey); + BigInteger dhG = SolutionParameters.DhG; + BigInteger dhP = SolutionParameters.DhP; + return BigInteger.ModPow(dhG, exponent, dhP).ToByteArray(); + } + + protected byte[] CalculateConnectionKey(byte[] remotePublicKey, byte[] localPrivateKey) + { + BigInteger value = new BigInteger(remotePublicKey); + BigInteger exponent = new BigInteger(localPrivateKey); + BigInteger dhP = SolutionParameters.DhP; + return BigInteger.ModPow(value, exponent, dhP).ToByteArray(); + } + + private HMAC NewSolutionHmac(bool forceHmac) + { + HMAC result; + switch (DhHashAlgorithm.ToLower()) + { + case "md5": + ServiceTrace.LogVerbose("Solution HMAC is MD5"); + result = new HMACMD5(CryptoKey); + break; + case "sha1": + ServiceTrace.LogVerbose("Solution HMAC is SHA1"); + result = new HMACSHA1(CryptoKey); + break; + case "sha512": + ServiceTrace.LogVerbose("Solution HMAC is SHA512"); + result = new HMACSHA512(CryptoKey); + break; + default: + ServiceTrace.LogVerbose("Solution HMAC is NONE"); + result = null; + if (forceHmac) + { + result = new HMACSHA1(CryptoKey); + } + break; + } + return result; + } + + public bool ValidRequest(ConnectedRequest request, bool forceHmac) + { + bool flag = false; + if (request == null) + { + ReasonSecureSessionNotEstablished = "ValidRequest: The message is null, cannot validate"; + return false; + } + if (request.ConnectionValidator == null) + { + ReasonSecureSessionNotEstablished = "ValidRequest: The message ConnectionValidator field is null, cannot validate"; + return false; + } + ConnectionValidator connectionValidator = request.ConnectionValidator; + byte[] messageAuthenticationCode = connectionValidator.MessageAuthenticationCode; + byte[] signatureInitializationVector = connectionValidator.SignatureInitializationVector; + byte[] array = null; + using (HMAC hMAC = NewSolutionHmac(forceHmac)) + { + if (hMAC != null) + { + connectionValidator.MessageAuthenticationCode = new byte[0]; + connectionValidator.SignatureInitializationVector = new byte[0]; + byte[] bytes = Encoding.UTF8.GetBytes(request.ToXml()); + connectionValidator.MessageAuthenticationCode = messageAuthenticationCode; + connectionValidator.SignatureInitializationVector = signatureInitializationVector; + byte[] array2 = hMAC.ComputeHash(bytes); + byte[] array3 = Decypher(messageAuthenticationCode, signatureInitializationVector); + bool flag2 = false; + if (array3 != null && array2.Length == array3.Length) + { + flag2 = true; + for (int i = 0; i < array2.Length; i++) + { + if (array2[i] != array3[i]) + { + flag2 = false; + break; + } + } + } + array = ((!flag2) ? new byte[0] : messageAuthenticationCode); + } + } + if (array != null) + { + if (messageAuthenticationCode != null && array.Length == messageAuthenticationCode.Length) + { + flag = true; + for (int j = 0; j < messageAuthenticationCode.Length; j++) + { + if (messageAuthenticationCode[j] != array[j]) + { + if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message hmac correct length {0} but differs at byte {1}, cannot validate", new object[2] { messageAuthenticationCode.Length, j }); + } + flag = false; + break; + } + } + } + else if (messageAuthenticationCode == null) + { + if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = "ValidRequest: Received message has null hmac, cannot validate"; + } + } + else if (string.IsNullOrEmpty(ReasonSecureSessionNotEstablished)) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message hmac wrong length, cannot validate (received {0}, computed {1})", new object[2] { messageAuthenticationCode.Length, array.Length }); + } + } + else + { + flag = true; + } + if (flag) + { + lock (this) + { + if (connectionValidator.MessageNumber <= highestMessageNumberReceived) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message out of sequence, cannot validate (current {0}, highest {1})", new object[2] { connectionValidator.MessageNumber, highestMessageNumberReceived }); + flag = false; + } + else if (outOfSyncMessageNumbers.Contains(connectionValidator.MessageNumber)) + { + ReasonSecureSessionNotEstablished = string.Format(CultureInfo.CurrentCulture, "ValidRequest: Received message received late, cannot validate (current {0})", new object[1] { connectionValidator.MessageNumber }); + flag = false; + } + else if (connectionValidator.MessageNumber == highestMessageNumberReceived + 1) + { + highestMessageNumberReceived = connectionValidator.MessageNumber; + } + else + { + outOfSyncMessageNumbers.Add(connectionValidator.MessageNumber); + } + outOfSyncMessageNumbers.Sort(); + foreach (ulong outOfSyncMessageNumber in outOfSyncMessageNumbers) + { + if (outOfSyncMessageNumber == highestMessageNumberReceived + 1) + { + highestMessageNumberReceived = outOfSyncMessageNumber; + } + } + List list = new List(); + foreach (ulong outOfSyncMessageNumber2 in outOfSyncMessageNumbers) + { + if (outOfSyncMessageNumber2 <= highestMessageNumberReceived) + { + list.Add(outOfSyncMessageNumber2); + } + } + foreach (ulong item in list) + { + outOfSyncMessageNumbers.Remove(item); + } + } + } + return flag; + } + + public bool ValidResponse(ConnectedResponse response, bool forceHmac = false) + { + if (response != null && response.Result.Success) + { + return ValidRequest(response, forceHmac); + } + return false; + } + + protected byte[] ReCalculateAuthenticationData(byte[] leftPart, byte[] rightPart, byte[] initializationVector) + { + List list = new List(); + if (leftPart != null) + { + list.AddRange(leftPart); + } + if (rightPart != null) + { + list.AddRange(rightPart); + } + return ReEncypher(list.ToArray(), initializationVector); + } + + protected byte[] CalculateAuthenticationData(byte[] leftPart, byte[] rightPart, out byte[] initializationVector) + { + List list = new List(); + if (leftPart != null) + { + list.AddRange(leftPart); + } + if (rightPart != null) + { + list.AddRange(rightPart); + } + return EncypherWithNewInitializationVector(list.ToArray(), out initializationVector); + } + + public void Sign(ConnectedRequest request, bool forceHmac) + { + if (request == null) + { + return; + } + lock (MessageNumberLock) + { + request.ConnectionValidator = new ConnectionValidator + { + ConnectionId = ConnectionId, + MessageNumber = NextMessageNumber++, + MessageAuthenticationCode = new byte[0], + SignatureInitializationVector = new byte[0] + }; + using HMAC hMAC = NewSolutionHmac(forceHmac); + if (hMAC != null) + { + string text = request.ToXml(); + ServiceTrace.LogVerbose("Signing XML message is {0}", text); + byte[] bytes = Encoding.UTF8.GetBytes(text); + request.ConnectionValidator.MessageAuthenticationCode = EncypherWithNewInitializationVector(hMAC.ComputeHash(bytes), out var initializationVector); + request.ConnectionValidator.SignatureInitializationVector = initializationVector; + } + } + } + + public byte[] Encypher(byte[] clearData, byte[] initializationVector) + { + byte[] result = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), passwordsalt); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + cryptoStream.Write(clearData, 0, clearData.Length); + cryptoStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public byte[] EncypherWithNewInitializationVector(byte[] clearData, out byte[] initializationVector) + { + byte[] result = null; + initializationVector = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), passwordsalt); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + initializationVector = aesManaged.IV; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + cryptoStream.Write(clearData, 0, clearData.Length); + cryptoStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public string Encypher(string clearText, out byte[] initializationVector) + { + string result = string.Empty; + initializationVector = null; + if (!string.IsNullOrEmpty(clearText)) + { + byte[] bytes = Encoding.UTF8.GetBytes(clearText); + result = EncypherWithNewInitializationVector(bytes, out initializationVector).ToBase64(); + } + return result; + } + + public byte[] ReEncypher(byte[] clearData, byte[] initializationVector) + { + byte[] result = null; + if (clearData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), passwordsalt); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + using ICryptoTransform transform = aesManaged.CreateEncryptor(); + using MemoryStream memoryStream = new MemoryStream(); + using (CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write)) + { + cryptoStream.Write(clearData, 0, clearData.Length); + cryptoStream.Close(); + } + result = memoryStream.ToArray(); + } + return result; + } + + public string ReEncypher(string clearText, byte[] initializationVector) + { + string result = string.Empty; + if (!string.IsNullOrEmpty(clearText)) + { + byte[] bytes = Encoding.UTF8.GetBytes(clearText); + result = ReEncypher(bytes, initializationVector).ToBase64(); + } + return result; + } + + public byte[] Decypher(byte[] cypherData, byte[] initializationVector) + { + byte[] result = null; + if (cypherData != null) + { + using AesManaged aesManaged = new AesManaged(); + using Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(CryptoKey.ToBase64(), passwordsalt); + aesManaged.Key = rfc2898DeriveBytes.GetBytes(16); + aesManaged.IV = initializationVector; + try + { + using ICryptoTransform transform = aesManaged.CreateDecryptor(); + using MemoryStream stream = new MemoryStream(cypherData); + using CryptoStream cryptoStream = new CryptoStream(stream, transform, CryptoStreamMode.Read); + using MemoryStream memoryStream = new MemoryStream(); + cryptoStream.CopyTo(memoryStream); + result = memoryStream.ToArray(); + } + catch (Exception ex) + { + ReasonSecureSessionNotEstablished = "Decypher failed: " + ex.Message; + result = null; + } + } + return result; + } + + public string Decypher(string cypherText, byte[] initializationVector) + { + string result = string.Empty; + if (!string.IsNullOrEmpty(cypherText)) + { + byte[] cypherData = cypherText.FromBase64ToByteArray(); + byte[] bytes = Decypher(cypherData, initializationVector); + result = Encoding.UTF8.GetString(bytes); + } + return result; + } + + private byte[] CalculateCryptoKey() + { + List list = new List(); + list.AddRange(CalculateConnectionKey(RemotePublicKey, PrivateKey)); + byte[] solutionPassphrase = SolutionPassphrase; + if (solutionPassphrase != null) + { + list.AddRange(solutionPassphrase); + } + return list.ToArray(); + } + + private byte[] CalculateEncryptionKey() + { + return new HMACMD5(CryptoKey).ComputeHash(CryptoKey); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationServiceAuthentication.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationServiceAuthentication.cs new file mode 100644 index 0000000..d0496f2 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/SystemAuthenticationServiceAuthentication.cs @@ -0,0 +1,110 @@ +using System; +using System.Text; +using ArchestrAServices.Common; + +namespace Asb.Base.V2; + +public class SystemAuthenticationServiceAuthentication : SystemAuthenticationConnectionBase +{ + public ulong Lifetime { get; private set; } + + public SystemAuthenticationServiceAuthentication() + { + Reset(); + Lifetime = 18000000uL; + } + + public static ConnectResponse ProcessClientConnection(ConnectRequest request) + { + ServiceTrace.LogResume("SystemAuthenticationServiceAuthentication.ProcessClientConnection entry"); + if (request == null) + { + return null; + } + ServiceTrace.LogVerbose("SysSvcAuth: Processing client Connect() call '{0}'", request.ConnectionId); + if (request.ConsumerPublicKey == null) + { + return null; + } + if (request.ConsumerPublicKey.Data == null) + { + return null; + } + SystemAuthenticationServiceAuthentication systemAuthenticationServiceAuthentication = new SystemAuthenticationServiceAuthentication + { + ConnectionId = request.ConnectionId, + RemotePublicKey = request.ConsumerPublicKey.Data + }; + SysAuthenticatorServiceCache.AddServiceAuthenticator(systemAuthenticationServiceAuthentication); + PublicKey servicePublicKey = new PublicKey + { + Data = systemAuthenticationServiceAuthentication.LocalPublicKey + }; + AuthenticationData authenticationData = new AuthenticationData(); + authenticationData.Data = systemAuthenticationServiceAuthentication.CalculateAuthenticationData(systemAuthenticationServiceAuthentication.LocalPublicKey, systemAuthenticationServiceAuthentication.RemotePublicKey, out var initializationVector); + authenticationData.InitializationVector = initializationVector; + ArchestrAResult result = ArchestrAResult.MakeGoodResult(); + systemAuthenticationServiceAuthentication.Lifetime = systemAuthenticationServiceAuthentication.SolutionParameters.ConnectionLifetime; + ConnectResponse connectResponse = new ConnectResponse(result, servicePublicKey, authenticationData, systemAuthenticationServiceAuthentication.Lifetime + ":" + SystemAuthenticationConnectionBase.AsbAuthenticationVersion); + systemAuthenticationServiceAuthentication.Sign(connectResponse, forceHmac: true); + systemAuthenticationServiceAuthentication.ReasonSecureSessionNotEstablished = string.Empty; + ServiceTrace.LogSuspend("SystemAuthenticationServiceAuthentication.ProcessClientConnection exit"); + return connectResponse; + } + + public bool ProcessClientAuthenticateMe(AuthenticateMeRequest request) + { + ServiceTrace.LogResume("SystemAuthenticationServiceAuthentication.ProcessClientAuthenticateMe entry with connection Id {0}", request.ConnectionValidator.ConnectionId); + ServiceTrace.LogVerbose("SystemAuthenticationServiceAuthentication: Processing client AuthenticateMe() call for connection id {0}", request.ConnectionValidator.ConnectionId); + if (!ValidRequest(request, forceHmac: true)) + { + return false; + } + AuthenticationData consumerAuthenticationData = request.ConsumerAuthenticationData; + if (consumerAuthenticationData != null) + { + byte[] expected = ReCalculateAuthenticationData(RemotePublicKey, LocalPublicKey, consumerAuthenticationData.InitializationVector); + if (consumerAuthenticationData.AreEqual(expected)) + { + ServiceTrace.LogVerbose("SystemAuthenticationServiceAuthentication: AuthenticateMe() authenticated client"); + base.SecureSessionEstablished = true; + } + } + ServiceTrace.LogSuspend("SystemAuthenticationServiceAuthentication.ProcessClientAuthenticateMe exit"); + return base.SecureSessionEstablished; + } + + public static RenewResponse ProcessClientRenew(RenewRequest request) + { + ServiceTrace.LogResume("SystemAuthenticationServiceAuthentication.ProcessClientRenew entry with connection Id {0}", request.ConnectionValidator.ConnectionId); + SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId)?.ValidRequest(request, forceHmac: false); + ServiceTrace.LogSuspend("SystemAuthenticationServiceAuthentication.ProcessClientRenew exit"); + return null; + } + + public static void ProcessClientUpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfigurationRequest request) + { + ServiceTrace.LogResume("SystemAuthenticationServiceAuthentication.ProcessClientUpdateSystemAuthenticationConfiguration entry with connection Id {0}", request.ConnectionValidator.ConnectionId); + SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId)?.ValidRequest(request, forceHmac: false); + ServiceTrace.LogSuspend("SystemAuthenticationServiceAuthentication.ProcessClientUpdateSystemAuthenticationConfiguration exit"); + } + + public void ProcessClientDisconnect(DisconnectRequest request) + { + if (request == null) + { + return; + } + ServiceTrace.LogResume("SystemAuthenticationServiceAuthentication.ProcessClientDisconnect entry with connection Id {0}", request.ConnectionValidator.ConnectionId); + AuthenticationData consumerAuthenticationData = request.ConsumerAuthenticationData; + if (consumerAuthenticationData != null) + { + byte[] bytes = Decypher(consumerAuthenticationData.Data, consumerAuthenticationData.InitializationVector); + if (Guid.TryParse(Encoding.UTF8.GetString(bytes), out var result) && result == base.ConnectionId) + { + SysAuthenticatorServiceCache.RemoveServiceAuthenticator(result); + } + } + ServiceTrace.LogSuspend("SystemAuthenticationServiceAuthentication.ProcessClientDisconnect exit"); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/UpdateSystemAuthenticationConfigurationRequest.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/UpdateSystemAuthenticationConfigurationRequest.cs new file mode 100644 index 0000000..897e4bd --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/UpdateSystemAuthenticationConfigurationRequest.cs @@ -0,0 +1,27 @@ +using System.ServiceModel; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[MessageContract(WrapperName = "UpdateSystemAuthenticationConfiguration", WrapperNamespace = "urn:msg.asb.se:2", IsWrapped = true)] +[XmlRoot(Namespace = "urn:msg.asb.se:2")] +public class UpdateSystemAuthenticationConfigurationRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 0)] + [XmlElement(ElementName = "EncryptedConfigurationData")] + public string EncryptedConfigurationData { get; set; } + + [MessageBodyMember(Namespace = "urn:msg.asb.se:2", Order = 1)] + [XmlElement(ElementName = "InitializationVector", DataType = "base64Binary")] + public byte[] InitializationVector { get; set; } + + public UpdateSystemAuthenticationConfigurationRequest() + { + } + + public UpdateSystemAuthenticationConfigurationRequest(string encryptedConfigurationData, byte[] initializationVector) + { + EncryptedConfigurationData = encryptedConfigurationData; + InitializationVector = initializationVector; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/UserToken.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/UserToken.cs new file mode 100644 index 0000000..fe3f988 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/UserToken.cs @@ -0,0 +1,24 @@ +namespace Asb.Base.V2; + +public class UserToken +{ + public ushort? Encryption { get; set; } + + public string HostName { get; set; } + + public ushort? IdType { get; set; } + + public string LocationId { get; set; } + + public string UserName { get; set; } + + public string Password { get; set; } + + public ushort? Validity { get; set; } + + public string JwtToken { get; set; } + + public byte[] SamlToken { get; set; } + + public byte[] X509Certificate { get; set; } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/Value.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/Value.cs new file mode 100644 index 0000000..d9bb05f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/Value.cs @@ -0,0 +1,1393 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Text; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; +using ArchestrAServices.Common; +using Asb.Base.V2.Serialization; + +namespace Asb.Base.V2; + +[DebuggerDisplay("{Item}")] +public sealed class Value : IBaseV2CustomSerializable, IEquatable +{ + [XmlIgnore] + public object Item { get; private set; } + + [XmlIgnore] + public ValueItemType ItemType { get; private set; } + + [XmlIgnore] + public bool IsArray { get; private set; } + + [XmlIgnore] + public ushort MxLegacyItemType { get; private set; } + + [XmlIgnore] + public int MxLegacyLength { get; private set; } + + [XmlElement(ElementName = "Payload", DataType = "base64Binary", IsNullable = true, Order = 0)] + public byte[] Payload + { + get + { + using MemoryStream memoryStream = new MemoryStream(); + using BinaryWriter writer = new BinaryWriter(memoryStream); + ((IBaseV2CustomSerializable)this).WriteToStream(writer); + return memoryStream.ToArray(); + } + set + { + using MemoryStream input = new MemoryStream(value); + using BinaryReader reader = new BinaryReader(input); + ((IBaseV2CustomSerializable)this).InitializeFromStream(reader); + } + } + + [XmlIgnore] + public DataType MxLegacyDataType + { + get + { + switch (ItemType) + { + case ValueItemType.Boolean: + if (!IsArray) + { + return DataType.TypeBool; + } + return DataType.TypeBoolArray; + case ValueItemType.Byte: + if (!IsArray) + { + return DataType.TypeByte; + } + return DataType.TypeByteArray; + case ValueItemType.SignedByte: + if (!IsArray) + { + return DataType.TypeSByte; + } + return DataType.TypeSByteArray; + case ValueItemType.Short: + if (!IsArray) + { + return DataType.TypeInt16; + } + return DataType.TypeInt16Array; + case ValueItemType.UnsignedShort: + if (!IsArray) + { + return DataType.TypeUInt16; + } + return DataType.TypeUInt16Array; + case ValueItemType.Int: + if (!IsArray) + { + return DataType.TypeInt32; + } + return DataType.TypeInt32Array; + case ValueItemType.UnsignedInt: + if (!IsArray) + { + return DataType.TypeUInt32; + } + return DataType.TypeUInt32Array; + case ValueItemType.Long: + if (!IsArray) + { + return DataType.TypeInt64; + } + return DataType.TypeInt64Array; + case ValueItemType.UnsignedLong: + if (!IsArray) + { + return DataType.TypeUInt64; + } + return DataType.TypeUInt64Array; + case ValueItemType.Single: + if (!IsArray) + { + return DataType.TypeFloat; + } + return DataType.TypeFloatArray; + case ValueItemType.Double: + if (!IsArray) + { + return DataType.TypeDouble; + } + return DataType.TypeDoubleArray; + case ValueItemType.DateTime: + if (!IsArray) + { + return DataType.TypeDateTime; + } + return DataType.TypeDateTimeArray; + case ValueItemType.Duration: + if (!IsArray) + { + return DataType.TypeDuration; + } + return DataType.TypeDurationArray; + case ValueItemType.Guid: + if (!IsArray) + { + return DataType.TypeGuid; + } + return DataType.TypeGuidArray; + case ValueItemType.String: + if (!IsArray) + { + return DataType.TypeString; + } + return DataType.TypeStringArray; + default: + return ASBEnumFactory.IntToDataType(MxLegacyItemType); + } + } + } + + public static Value Create(object value) + { + if (value == null) + { + return new Value(); + } + ValueItemType? valueItemType = ClrTypeToValueType(value.GetType()); + if (!valueItemType.HasValue) + { + throw new ArgumentException("value is not a supported type", "value"); + } + return new Value + { + Item = value, + ItemType = valueItemType.Value, + IsArray = (value is Array) + }; + } + + public static Value Create(bool value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Boolean, + IsArray = false + }; + } + + public static Value Create(byte value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Byte, + IsArray = false + }; + } + + public static Value Create(sbyte value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.SignedByte, + IsArray = false + }; + } + + public static Value Create(short value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Short, + IsArray = false + }; + } + + public static Value Create(ushort value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.UnsignedShort, + IsArray = false + }; + } + + public static Value Create(int value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Int, + IsArray = false + }; + } + + public static Value Create(uint value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.UnsignedInt, + IsArray = false + }; + } + + public static Value Create(long value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Long, + IsArray = false + }; + } + + public static Value Create(ulong value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.UnsignedLong, + IsArray = false + }; + } + + public static Value Create(float value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Single, + IsArray = false + }; + } + + public static Value Create(double value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Double, + IsArray = false + }; + } + + public static Value Create(decimal value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Decimal, + IsArray = false + }; + } + + public static Value Create(string value) + { + if (value == null) + { + throw new ArgumentNullException("value"); + } + return new Value + { + Item = value, + ItemType = ValueItemType.String, + IsArray = false + }; + } + + public static Value Create(DateTime value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.DateTime, + IsArray = false + }; + } + + public static Value Create(TimeSpan value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Duration, + IsArray = false + }; + } + + public static Value Create(Guid value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Guid, + IsArray = false + }; + } + + public static Value Create(bool[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Boolean, + IsArray = true + }; + } + + public static Value Create(byte[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Byte, + IsArray = true + }; + } + + public static Value Create(sbyte[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.SignedByte, + IsArray = true + }; + } + + public static Value Create(short[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Short, + IsArray = true + }; + } + + public static Value Create(ushort[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.UnsignedShort, + IsArray = true + }; + } + + public static Value Create(int[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Int, + IsArray = true + }; + } + + public static Value Create(uint[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.UnsignedInt, + IsArray = true + }; + } + + public static Value Create(long[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Long, + IsArray = true + }; + } + + public static Value Create(ulong[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.UnsignedLong, + IsArray = true + }; + } + + public static Value Create(float[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Single, + IsArray = true + }; + } + + public static Value Create(double[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Double, + IsArray = true + }; + } + + public static Value Create(decimal[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Decimal, + IsArray = true + }; + } + + public static Value Create(string[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.String, + IsArray = true + }; + } + + public static Value Create(DateTime[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.DateTime, + IsArray = true + }; + } + + public static Value Create(TimeSpan[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Duration, + IsArray = true + }; + } + + public static Value Create(Guid[] value) + { + return new Value + { + Item = value, + ItemType = ValueItemType.Guid, + IsArray = true + }; + } + + public static Value CreateMxLegacy(ushort mxLegacyType, int mxLegacyLength, byte[] mxLegacyPayload) + { + return new Value + { + Item = mxLegacyPayload, + ItemType = ValueItemType.MxLegacy, + IsArray = false, + MxLegacyLength = mxLegacyLength, + MxLegacyItemType = mxLegacyType + }; + } + + public static Value Create(CustomEnum customEnum) + { + if (customEnum == null) + { + throw new ArgumentNullException("customEnum"); + } + short ordinal = customEnum.Ordinal; + string ordinalValue = customEnum.OrdinalValue; + ushort mxLegacyType = ASBEnumFactory.DataTypeToInt(DataType.TypeEnum); + List list = new List(); + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + int mxLegacyLength = 6 + ordinalValue.Length; + byte[] mxLegacyPayload = list.ToArray(); + return CreateMxLegacy(mxLegacyType, mxLegacyLength, mxLegacyPayload); + } + + public static Value Create(CustomEnum[] customEnums) + { + int num = 0; + List list = new List(); + if (customEnums != null && customEnums.Length != 0) + { + CustomEnum[] array = customEnums; + foreach (CustomEnum obj in array) + { + short ordinal = obj.Ordinal; + string ordinalValue = obj.OrdinalValue; + num += 6 + ordinalValue.Length; + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + } + int mxLegacyLength = num; + byte[] mxLegacyPayload = list.ToArray(); + return CreateMxLegacy(ASBEnumFactory.DataTypeToInt(DataType.TypeEnumArray), mxLegacyLength, mxLegacyPayload); + } + return CreateMxLegacy(ASBEnumFactory.DataTypeToInt(DataType.TypeEnum), 0, new byte[0]); + } + + public bool Equals(Value other) + { + if (other == null) + { + return false; + } + if (other == this) + { + return true; + } + if (ItemType != other.ItemType || IsArray != other.IsArray) + { + return false; + } + if (IsArray) + { + if (Item == other.Item) + { + return true; + } + if (Item == null || other.Item == null) + { + return false; + } + return ((IStructuralEquatable)Item).Equals(other.Item, StructuralComparisons.StructuralEqualityComparer); + } + return object.Equals(Item, other.Item); + } + + public override bool Equals(object obj) + { + return Equals(obj as Value); + } + + public override int GetHashCode() + { + return Item?.GetHashCode() ?? 0; + } + + void IBaseV2CustomSerializable.InitializeFromStream(BinaryReader reader) + { + if (reader == null) + { + throw new ArgumentNullException("reader"); + } + ItemType = (ValueItemType)reader.ReadInt32(); + IsArray = reader.ReadBoolean(); + if (IsArray) + { + if (reader.ReadBoolean()) + { + Item = null; + return; + } + int num = reader.ReadInt32(); + Array array = Array.CreateInstance(ValueTypeToClrType(ItemType), num); + for (int i = 0; i < num; i++) + { + array.SetValue(ReadContent(reader, ItemType), i); + } + Item = array; + } + else if (ItemType == ValueItemType.MxLegacy) + { + Tuple tuple = ReadMxLegacyContent(reader); + MxLegacyItemType = tuple.Item1; + MxLegacyLength = tuple.Item2; + Item = tuple.Item3; + } + else + { + Item = ReadContent(reader, ItemType); + } + } + + void IBaseV2CustomSerializable.WriteToStream(BinaryWriter writer) + { + if (writer == null) + { + throw new ArgumentNullException("writer"); + } + writer.Write((int)ItemType); + writer.Write(IsArray); + if (IsArray) + { + Array array = (Array)Item; + if (array != null) + { + writer.Write(value: false); + writer.Write(array.Length); + { + foreach (object item in array) + { + WriteContent(writer, item, ItemType); + } + return; + } + } + writer.Write(value: true); + } + else if (ItemType == ValueItemType.MxLegacy) + { + WriteMxLegacyContent(writer, MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + else + { + WriteContent(writer, Item, ItemType); + } + } + + void IBaseV2CustomSerializable.WriteArrayToStream(object graph, BinaryWriter writer) + { + if (graph == null || writer == null) + { + return; + } + try + { + if (graph is Value[] array) + { + writer.Write(array.Length); + Value[] array2 = array; + for (int i = 0; i < array2.Length; i++) + { + ((IBaseV2CustomSerializable)array2[i]).WriteToStream(writer); + } + } + } + catch (Exception ex) + { + ServiceTrace.LogError("Exception caught serializing an array of Value objects: {0}", ex.Message); + } + } + + object IBaseV2CustomSerializable.InitializeArrayFromStream(BinaryReader reader, int arrayLength) + { + if (reader == null) + { + return null; + } + Value[] result = null; + try + { + Value[] array = new Value[arrayLength]; + for (int i = 0; i < arrayLength; i++) + { + ((IBaseV2CustomSerializable)array[i]).InitializeFromStream(reader); + } + result = array; + } + catch (Exception ex) + { + ServiceTrace.LogError("Exception caught deserializing an array of ASBStatus objects: {0}", ex.Message); + } + return result; + } + + public object ReadByte() + { + if (ItemType == ValueItemType.Byte) + { + return (byte)Item; + } + return MxValueHelper.ReadByte(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadShort() + { + if (ItemType == ValueItemType.Short) + { + return (short)Item; + } + return MxValueHelper.ReadShort(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadUnsignedShort() + { + if (ItemType == ValueItemType.UnsignedShort) + { + return (ushort)Item; + } + return MxValueHelper.ReadUnsignedShort(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadInt() + { + if (ItemType == ValueItemType.Int) + { + return (int)Item; + } + return MxValueHelper.ReadInt(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadUnsignedInt() + { + if (ItemType == ValueItemType.UnsignedInt) + { + return (uint)Item; + } + return MxValueHelper.ReadUnsignedInt(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadLong() + { + if (ItemType == ValueItemType.Long) + { + return (long)Item; + } + return MxValueHelper.ReadLong(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadUnsignedLong() + { + if (ItemType == ValueItemType.UnsignedLong) + { + return (ulong)Item; + } + return MxValueHelper.ReadUnsignedLong(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadSingle() + { + if (ItemType == ValueItemType.Single) + { + return (float)Item; + } + return MxValueHelper.ReadSingle(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadDouble() + { + if (ItemType == ValueItemType.Double) + { + return (double)Item; + } + return MxValueHelper.ReadDouble(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadString() + { + if (ItemType == ValueItemType.String) + { + return (string)Item; + } + return MxValueHelper.ReadDouble(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadBoolean() + { + if (ItemType == ValueItemType.Boolean) + { + return (bool)Item; + } + return MxValueHelper.ReadBoolean(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadSignedByte() + { + if (ItemType == ValueItemType.SignedByte) + { + return (sbyte)Item; + } + return MxValueHelper.ReadSignedByte(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadDateTime() + { + if (ItemType == ValueItemType.DateTime) + { + return (DateTime)Item; + } + return MxValueHelper.ReadDateTime(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadDuration() + { + if (ItemType == ValueItemType.Duration) + { + return (TimeSpan)Item; + } + return MxValueHelper.ReadDuration(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadGuid() + { + if (ItemType == ValueItemType.Guid) + { + return (Guid)Item; + } + return MxValueHelper.ReadGuid(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public byte[] ReadByteString() + { + return (byte[])Item; + } + + public string ReadLocalizedText() + { + return (string)ReadString(); + } + + public object GetScalarValue(DataType targetType) + { + object obj = null; + try + { + switch (ASBEnumFactory.IntToDataType(MxLegacyItemType)) + { + case DataType.TypeBool: + obj = ReadBoolean(); + return (DataType.TypeBool == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeByte: + obj = ReadByte(); + return (targetType == DataType.TypeByte) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeDateTime: + obj = ReadDateTime(); + return (targetType == DataType.TypeByte) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeDouble: + obj = ReadDouble(); + return (DataType.TypeDouble == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeDuration: + obj = ReadDuration(); + return (DataType.TypeDuration == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeFloat: + obj = ReadSingle(); + return (DataType.TypeFloat == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeGuid: + obj = ReadGuid(); + return (DataType.TypeGuid == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeInt16: + obj = ReadShort(); + return (DataType.TypeInt16 == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeInt32: + obj = ReadInt(); + return (DataType.TypeInt32 == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeInt64: + obj = ReadLong(); + return (DataType.TypeInt64 == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeLocalizedText: + obj = ReadLocalizedText(); + return (DataType.TypeLocalizedText == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeSByte: + obj = ReadSignedByte(); + return (DataType.TypeSByte == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeString: + obj = ReadString(); + return (DataType.TypeString == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeUInt16: + obj = ReadUnsignedShort(); + return (DataType.TypeUInt16 == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeUInt32: + obj = ReadUnsignedInt(); + return (DataType.TypeUInt32 == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + case DataType.TypeUInt64: + obj = ReadUnsignedLong(); + return (DataType.TypeUInt64 == targetType) ? obj : MxValueHelper.GetValueInTargetType(targetType, obj); + default: + return ReadString(); + } + } + catch (Exception) + { + return obj; + } + } + + public object GetValueInTargetArrayType(DataType targetType) + { + switch (targetType) + { + case DataType.TypeBool: + { + bool[] array14 = (bool[])ReadBooleanArray(); + if (array14 == null || array14.Length == 0) + { + return null; + } + return array14; + } + case DataType.TypeByte: + { + byte[] array8 = (byte[])ReadByteArray(); + if (array8 == null || array8.Length == 0) + { + return null; + } + return array8; + } + case DataType.TypeDateTime: + { + DateTime[] array15 = (DateTime[])ReadDateTimeArray(); + if (array15 == null || array15.Length == 0) + { + return null; + } + return array15; + } + case DataType.TypeDouble: + { + double[] array11 = (double[])ReadDoubleArray(); + if (array11 == null || array11.Length == 0) + { + return null; + } + return array11; + } + case DataType.TypeDuration: + { + TimeSpan[] array6 = (TimeSpan[])ReadDurationArray(); + if (array6 == null || array6.Length == 0) + { + return null; + } + return array6; + } + case DataType.TypeFloat: + { + float[] array12 = (float[])ReadSingleArray(); + if (array12 == null || array12.Length == 0) + { + return null; + } + return array12; + } + case DataType.TypeGuid: + { + Guid[] array10 = (Guid[])ReadGuidArray(); + if (array10 == null || array10.Length == 0) + { + return null; + } + return array10; + } + case DataType.TypeInt16: + { + short[] array3 = (short[])ReadShortArray(); + if (array3 == null || array3.Length == 0) + { + return null; + } + return array3; + } + case DataType.TypeInt32: + { + int[] array4 = (int[])ReadIntegerArray(); + if (array4 == null || array4.Length == 0) + { + return null; + } + return array4; + } + case DataType.TypeInt64: + { + long[] array7 = (long[])ReadLongArray(); + if (array7 == null || array7.Length == 0) + { + return null; + } + return array7; + } + case DataType.TypeSByte: + { + sbyte[] array2 = (sbyte[])ReadSignedByteArray(); + if (array2 == null || array2.Length == 0) + { + return null; + } + return array2; + } + case DataType.TypeUInt16: + { + ushort[] array13 = (ushort[])ReadUnsignedShortArray(); + if (array13 == null || array13.Length == 0) + { + return null; + } + return array13; + } + case DataType.TypeUInt32: + { + uint[] array9 = (uint[])ReadUnsignedIntArray(); + if (array9 == null || array9.Length == 0) + { + return null; + } + return array9; + } + case DataType.TypeUInt64: + { + ulong[] array5 = (ulong[])ReadUnsignedLongArray(); + if (array5 == null || array5.Length == 0) + { + return null; + } + return array5; + } + default: + { + string[] array = (string[])ReadStringArray(); + if (array == null || array.Length == 0) + { + return null; + } + return array; + } + } + } + + public object GetArrayValue(DataType targetType) + { + try + { + return GetValueInTargetArrayType(targetType); + } + catch (Exception) + { + return null; + } + } + + public object ReadEnum() + { + return MxValueHelper.ReadEnum(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadIntegerArray() + { + if (ItemType == ValueItemType.Int && IsArray) + { + return (int[])Item; + } + return MxValueHelper.ReadIntegerArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadByteArray() + { + if (ItemType == ValueItemType.Byte && IsArray) + { + return (byte[])Item; + } + return MxValueHelper.ReadByteArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public char[] ReadCharArray() + { + return MxValueHelper.ReadCharArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadShortArray() + { + if (ItemType == ValueItemType.Short && IsArray) + { + return (short[])Item; + } + return MxValueHelper.ReadShortArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadUnsignedShortArray() + { + if (ItemType == ValueItemType.UnsignedShort && IsArray) + { + return (ushort[])Item; + } + return MxValueHelper.ReadUnsignedShortArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadUnsignedIntArray() + { + if (ItemType == ValueItemType.UnsignedInt && IsArray) + { + return (uint[])Item; + } + return MxValueHelper.ReadUnsignedIntArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadLongArray() + { + if (ItemType == ValueItemType.Long && IsArray) + { + return (long[])Item; + } + return MxValueHelper.ReadLongArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadUnsignedLongArray() + { + if (ItemType == ValueItemType.UnsignedLong && IsArray) + { + return (ulong[])Item; + } + return MxValueHelper.ReadUnsignedLongArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadSingleArray() + { + if (ItemType == ValueItemType.Single && IsArray) + { + return (float[])Item; + } + return MxValueHelper.ReadSingleArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadDoubleArray() + { + if (ItemType == ValueItemType.Double && IsArray) + { + return (double[])Item; + } + return MxValueHelper.ReadDoubleArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadStringArray() + { + if (ItemType == ValueItemType.String && IsArray) + { + return (string[])Item; + } + return MxValueHelper.ReadStringArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadDateTimeArray() + { + if (ItemType == ValueItemType.DateTime && IsArray) + { + return (DateTime[])Item; + } + return MxValueHelper.ReadDateTimeArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadDurationArray() + { + if (ItemType == ValueItemType.Duration && IsArray) + { + return (TimeSpan[])Item; + } + return MxValueHelper.ReadDurationArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadGuidArray() + { + if (ItemType == ValueItemType.Guid && IsArray) + { + return (Guid[])Item; + } + return MxValueHelper.ReadGuidArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadBooleanArray() + { + if (ItemType == ValueItemType.Boolean && IsArray) + { + return (bool[])Item; + } + return MxValueHelper.ReadBooleanArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadSignedByteArray() + { + if (ItemType == ValueItemType.SignedByte && IsArray) + { + return (sbyte[])Item; + } + return MxValueHelper.ReadSignedByteArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + public object ReadEnumArray() + { + return MxValueHelper.ReadEnumArray(MxLegacyItemType, MxLegacyLength, (byte[])Item); + } + + private static object ReadContent(BinaryReader reader, ValueItemType valueType) + { + return valueType switch + { + ValueItemType.None => null, + ValueItemType.Boolean => reader.ReadBoolean(), + ValueItemType.Byte => reader.ReadByte(), + ValueItemType.SignedByte => reader.ReadSByte(), + ValueItemType.Short => reader.ReadInt16(), + ValueItemType.UnsignedShort => reader.ReadUInt16(), + ValueItemType.Int => reader.ReadInt32(), + ValueItemType.UnsignedInt => reader.ReadUInt32(), + ValueItemType.Long => reader.ReadInt64(), + ValueItemType.UnsignedLong => reader.ReadUInt64(), + ValueItemType.Single => reader.ReadSingle(), + ValueItemType.Double => reader.ReadDouble(), + ValueItemType.Decimal => reader.ReadDecimal(), + ValueItemType.DateTime => DateTime.FromFileTimeUtc(reader.ReadInt64()), + ValueItemType.Duration => TimeSpan.FromTicks(reader.ReadInt64()), + ValueItemType.Guid => new Guid(reader.ReadBytes(16)), + ValueItemType.String => reader.ReadStringSafe(), + _ => throw new NotSupportedException("Unsupported ItemType"), + }; + } + + private static void WriteContent(BinaryWriter writer, object value, ValueItemType valueType) + { + switch (valueType) + { + case ValueItemType.Boolean: + writer.Write((bool)value); + break; + case ValueItemType.Byte: + writer.Write((byte)value); + break; + case ValueItemType.SignedByte: + writer.Write((sbyte)value); + break; + case ValueItemType.Short: + writer.Write((short)value); + break; + case ValueItemType.UnsignedShort: + writer.Write((ushort)value); + break; + case ValueItemType.Int: + writer.Write((int)value); + break; + case ValueItemType.UnsignedInt: + writer.Write((uint)value); + break; + case ValueItemType.Long: + writer.Write((long)value); + break; + case ValueItemType.UnsignedLong: + writer.Write((ulong)value); + break; + case ValueItemType.Single: + writer.Write((float)value); + break; + case ValueItemType.Double: + writer.Write((double)value); + break; + case ValueItemType.Decimal: + writer.Write((decimal)value); + break; + case ValueItemType.DateTime: + writer.Write(((DateTime)value).ToFileTimeUtc()); + break; + case ValueItemType.Duration: + writer.Write(((TimeSpan)value).Ticks); + break; + case ValueItemType.Guid: + writer.Write(((Guid)value).ToByteArray()); + break; + case ValueItemType.String: + writer.WriteStringSafe((string)value); + break; + default: + throw new NotSupportedException("Unsupported ItemType"); + case ValueItemType.None: + break; + } + } + + private static void WriteMxLegacyContent(BinaryWriter writer, ushort mxLegacyDataType, int mxLegacyLength, byte[] mxLegacyPayload) + { + writer.Write(mxLegacyDataType); + writer.Write(mxLegacyLength); + writer.Write(mxLegacyPayload.Length); + writer.Write(mxLegacyPayload); + } + + private static Tuple ReadMxLegacyContent(BinaryReader reader) + { + ushort item = reader.ReadUInt16(); + int item2 = reader.ReadInt32(); + int count = reader.ReadInt32(); + return Tuple.Create(item, item2, reader.ReadBytes(count)); + } + + private static Type ValueTypeToClrType(ValueItemType valueType) + { + return valueType switch + { + ValueItemType.Boolean => typeof(bool), + ValueItemType.Byte => typeof(byte), + ValueItemType.SignedByte => typeof(sbyte), + ValueItemType.Int => typeof(int), + ValueItemType.UnsignedInt => typeof(uint), + ValueItemType.Short => typeof(short), + ValueItemType.UnsignedShort => typeof(ushort), + ValueItemType.Long => typeof(long), + ValueItemType.UnsignedLong => typeof(ulong), + ValueItemType.Single => typeof(float), + ValueItemType.Decimal => typeof(decimal), + ValueItemType.Double => typeof(double), + ValueItemType.DateTime => typeof(DateTime), + ValueItemType.Duration => typeof(TimeSpan), + ValueItemType.Guid => typeof(Guid), + ValueItemType.String => typeof(string), + _ => throw new NotSupportedException("Unsupported type of the item"), + }; + } + + private static ValueItemType? ClrTypeToValueType(Type type) + { + if (type.IsArray) + { + type = type.GetElementType(); + } + switch (Type.GetTypeCode(type)) + { + case TypeCode.Boolean: + return ValueItemType.Boolean; + case TypeCode.Byte: + return ValueItemType.Byte; + case TypeCode.SByte: + return ValueItemType.SignedByte; + case TypeCode.Int16: + return ValueItemType.Short; + case TypeCode.UInt16: + return ValueItemType.UnsignedShort; + case TypeCode.Int32: + return ValueItemType.Int; + case TypeCode.UInt32: + return ValueItemType.UnsignedInt; + case TypeCode.Int64: + return ValueItemType.Long; + case TypeCode.UInt64: + return ValueItemType.UnsignedLong; + case TypeCode.Single: + return ValueItemType.Single; + case TypeCode.Double: + return ValueItemType.Double; + case TypeCode.Decimal: + return ValueItemType.Decimal; + case TypeCode.DateTime: + return ValueItemType.DateTime; + case TypeCode.String: + return ValueItemType.String; + case TypeCode.Object: + if (type == typeof(TimeSpan)) + { + return ValueItemType.Duration; + } + if (type == typeof(Guid)) + { + return ValueItemType.Guid; + } + break; + } + return null; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ValueItemType.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ValueItemType.cs new file mode 100644 index 0000000..d9837ed --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Asb.Base.V2/ValueItemType.cs @@ -0,0 +1,28 @@ +using System; +using System.Xml.Serialization; + +namespace Asb.Base.V2; + +[Serializable] +[XmlType(Namespace = "urn:data.asb.se:2", IncludeInSchema = false)] +public enum ValueItemType +{ + None, + Boolean, + Byte, + SignedByte, + Short, + UnsignedShort, + Int, + UnsignedInt, + Long, + UnsignedLong, + Single, + Double, + Decimal, + DateTime, + Duration, + Guid, + String, + MxLegacy +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AACopyEncoder.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AACopyEncoder.cs new file mode 100644 index 0000000..3e29603 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AACopyEncoder.cs @@ -0,0 +1,45 @@ +using System; + +namespace Invensys.Compression; + +internal class AACopyEncoder +{ + private const int PaddingSize = 5; + + private const int MaxUncompressedBlockSize = 65536; + + public void GetBlock(AADeflateInput input, AAOutputBuffer output, bool isFinal) + { + int num = 0; + if (input != null) + { + num = Math.Min(input.Count, output.FreeBytes - 5 - output.BitsInBuffer); + if (num > 65531) + { + num = 65531; + } + } + if (isFinal) + { + output.WriteBits(3, 1u); + } + else + { + output.WriteBits(3, 0u); + } + output.FlushBits(); + WriteLenNLen((ushort)num, output); + if (input != null && num > 0) + { + output.WriteBytes(input.Buffer, input.StartIndex, num); + input.ConsumeBytes(num); + } + } + + private void WriteLenNLen(ushort len, AAOutputBuffer output) + { + output.WriteUInt16(len); + ushort value = (ushort)(~len); + output.WriteUInt16(value); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflateInput.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflateInput.cs new file mode 100644 index 0000000..addbe8e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflateInput.cs @@ -0,0 +1,73 @@ +namespace Invensys.Compression; + +internal class AADeflateInput +{ + internal struct InputState + { + internal int count; + + internal int startIndex; + } + + private byte[] buffer; + + private int count; + + private int startIndex; + + internal byte[] Buffer + { + get + { + return buffer; + } + set + { + buffer = value; + } + } + + internal int Count + { + get + { + return count; + } + set + { + count = value; + } + } + + internal int StartIndex + { + get + { + return startIndex; + } + set + { + startIndex = value; + } + } + + internal void ConsumeBytes(int n) + { + startIndex += n; + count -= n; + } + + internal InputState DumpState() + { + InputState result = default(InputState); + result.count = count; + result.startIndex = startIndex; + return result; + } + + internal void RestoreState(InputState state) + { + count = state.count; + startIndex = state.startIndex; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflateStream.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflateStream.cs new file mode 100644 index 0000000..f0ac967 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflateStream.cs @@ -0,0 +1,400 @@ +using System; +using System.IO; +using System.IO.Compression; +using System.Security.Permissions; +using System.Threading; + +namespace Invensys.Compression; + +public class AADeflateStream : Stream +{ + internal delegate void AsyncWriteDelegate(byte[] array, int offset, int count, bool isAsync); + + internal const int DefaultBufferSize = 8192; + + private Stream _stream; + + private CompressionMode _mode; + + private bool _leaveOpen; + + private AADeflaterManaged deflater; + + private byte[] buffer; + + private int asyncOperations; + + private readonly AsyncCallback m_CallBack; + + private readonly AsyncWriteDelegate m_AsyncWriterDelegate; + + private bool wroteBytes; + + public Stream BaseStream => _stream; + + public override bool CanRead + { + get + { + if (_stream == null) + { + return false; + } + if (_mode == CompressionMode.Decompress) + { + return _stream.CanRead; + } + return false; + } + } + + public override bool CanWrite + { + get + { + if (_stream == null) + { + return false; + } + if (_mode == CompressionMode.Compress) + { + return _stream.CanWrite; + } + return false; + } + } + + public override bool CanSeek => false; + + public override long Length + { + get + { + throw new NotSupportedException(); + } + } + + public override long Position + { + get + { + throw new NotSupportedException(); + } + set + { + throw new NotSupportedException(); + } + } + + public AADeflateStream(Stream stream, CompressionMode mode) + : this(stream, mode, leaveOpen: false) + { + } + + public AADeflateStream(Stream stream, CompressionMode mode, bool leaveOpen) + { + if (stream == null) + { + throw new ArgumentNullException("stream"); + } + if (CompressionMode.Compress != mode && mode != CompressionMode.Decompress) + { + throw new ArgumentException("mode"); + } + _stream = stream; + _mode = mode; + _leaveOpen = leaveOpen; + switch (_mode) + { + case CompressionMode.Decompress: + throw new ArgumentException("CompressionMode.Decompress - Unsupported"); + case CompressionMode.Compress: + if (!_stream.CanWrite) + { + throw new ArgumentException("stream"); + } + deflater = new AADeflaterManaged(); + m_AsyncWriterDelegate = InternalWrite; + m_CallBack = WriteCallback; + break; + } + buffer = new byte[8192]; + } + + public override void Flush() + { + EnsureNotDisposed(); + } + + public override long Seek(long offset, SeekOrigin origin) + { + throw new NotSupportedException(); + } + + public override void SetLength(long value) + { + throw new NotSupportedException(); + } + + public override int Read(byte[] array, int offset, int count) + { + throw new ArgumentException("Read - Unsupported"); + } + + private void ValidateParameters(byte[] array, int offset, int count) + { + if (array == null) + { + throw new ArgumentNullException("array"); + } + if (offset < 0) + { + throw new ArgumentOutOfRangeException("offset"); + } + if (count < 0) + { + throw new ArgumentOutOfRangeException("count"); + } + if (array.Length - offset < count) + { + throw new ArgumentException(); + } + } + + private void EnsureNotDisposed() + { + if (_stream == null) + { + throw new ObjectDisposedException(string.Empty); + } + } + + private void EnsureDecompressionMode() + { + if (_mode != CompressionMode.Decompress) + { + throw new InvalidOperationException(); + } + } + + private void EnsureCompressionMode() + { + if (_mode != CompressionMode.Compress) + { + throw new InvalidOperationException(); + } + } + + [HostProtection(SecurityAction.LinkDemand, ExternalThreading = true)] + public override IAsyncResult BeginRead(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) + { + throw new ArgumentException("BeginRead - Unsupported"); + } + + private void ReadCallback(IAsyncResult baseStreamResult) + { + throw new ArgumentException("ReadCallback - Unsupported"); + } + + public override int EndRead(IAsyncResult asyncResult) + { + EnsureDecompressionMode(); + CheckEndXxxxLegalStateAndParams(asyncResult); + DeflateStreamAsyncResult deflateStreamAsyncResult = (DeflateStreamAsyncResult)asyncResult; + AwaitAsyncResultCompletion(deflateStreamAsyncResult); + if (deflateStreamAsyncResult.Result is Exception ex) + { + throw ex; + } + return (int)deflateStreamAsyncResult.Result; + } + + public override void Write(byte[] array, int offset, int count) + { + EnsureCompressionMode(); + ValidateParameters(array, offset, count); + EnsureNotDisposed(); + InternalWrite(array, offset, count, isAsync: false); + } + + internal void InternalWrite(byte[] array, int offset, int count, bool isAsync) + { + DoMaintenance(array, offset, count); + WriteDeflaterOutput(isAsync); + deflater.SetInput(array, offset, count); + WriteDeflaterOutput(isAsync); + } + + private void WriteDeflaterOutput(bool isAsync) + { + while (!deflater.NeedsInput()) + { + int deflateOutput = deflater.GetDeflateOutput(buffer); + if (deflateOutput > 0) + { + DoWrite(buffer, 0, deflateOutput, isAsync); + } + } + } + + private void DoWrite(byte[] array, int offset, int count, bool isAsync) + { + if (isAsync) + { + IAsyncResult asyncResult = _stream.BeginWrite(array, offset, count, null, null); + _stream.EndWrite(asyncResult); + } + else + { + _stream.Write(array, offset, count); + } + } + + private void DoMaintenance(byte[] array, int offset, int count) + { + if (count > 0) + { + wroteBytes = true; + } + } + + private void PurgeBuffers(bool disposing) + { + if (!disposing || _stream == null) + { + return; + } + Flush(); + if (_mode != CompressionMode.Compress || !wroteBytes) + { + return; + } + WriteDeflaterOutput(isAsync: false); + bool flag; + do + { + flag = deflater.Finish(buffer, out var bytesRead); + if (bytesRead > 0) + { + DoWrite(buffer, 0, bytesRead, isAsync: false); + } + } + while (!flag); + } + + protected override void Dispose(bool disposing) + { + try + { + PurgeBuffers(disposing); + } + finally + { + try + { + if (disposing && !_leaveOpen && _stream != null) + { + _stream.Close(); + } + } + finally + { + _stream = null; + try + { + } + finally + { + base.Dispose(disposing); + } + } + } + } + + [HostProtection(SecurityAction.LinkDemand, ExternalThreading = true)] + public override IAsyncResult BeginWrite(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) + { + EnsureCompressionMode(); + if (asyncOperations != 0) + { + throw new InvalidOperationException(); + } + ValidateParameters(array, offset, count); + EnsureNotDisposed(); + Interlocked.Increment(ref asyncOperations); + try + { + DeflateStreamAsyncResult deflateStreamAsyncResult = new DeflateStreamAsyncResult(this, asyncState, asyncCallback, array, offset, count); + deflateStreamAsyncResult.isWrite = true; + m_AsyncWriterDelegate.BeginInvoke(array, offset, count, isAsync: true, m_CallBack, deflateStreamAsyncResult); + deflateStreamAsyncResult.m_CompletedSynchronously &= deflateStreamAsyncResult.IsCompleted; + return deflateStreamAsyncResult; + } + catch + { + Interlocked.Decrement(ref asyncOperations); + throw; + } + } + + private void WriteCallback(IAsyncResult asyncResult) + { + DeflateStreamAsyncResult deflateStreamAsyncResult = (DeflateStreamAsyncResult)asyncResult.AsyncState; + deflateStreamAsyncResult.m_CompletedSynchronously &= asyncResult.CompletedSynchronously; + try + { + m_AsyncWriterDelegate.EndInvoke(asyncResult); + } + catch (Exception result) + { + deflateStreamAsyncResult.InvokeCallback(result); + return; + } + deflateStreamAsyncResult.InvokeCallback(null); + } + + public override void EndWrite(IAsyncResult asyncResult) + { + EnsureCompressionMode(); + CheckEndXxxxLegalStateAndParams(asyncResult); + DeflateStreamAsyncResult deflateStreamAsyncResult = (DeflateStreamAsyncResult)asyncResult; + AwaitAsyncResultCompletion(deflateStreamAsyncResult); + if (deflateStreamAsyncResult.Result is Exception ex) + { + throw ex; + } + } + + private void CheckEndXxxxLegalStateAndParams(IAsyncResult asyncResult) + { + if (asyncOperations != 1) + { + throw new InvalidOperationException(); + } + if (asyncResult == null) + { + throw new ArgumentNullException("asyncResult"); + } + EnsureNotDisposed(); + if (!(asyncResult is DeflateStreamAsyncResult)) + { + throw new ArgumentNullException("asyncResult"); + } + } + + private void AwaitAsyncResultCompletion(DeflateStreamAsyncResult asyncResult) + { + try + { + if (!asyncResult.IsCompleted) + { + asyncResult.AsyncWaitHandle.WaitOne(); + } + } + finally + { + Interlocked.Decrement(ref asyncOperations); + asyncResult.Close(); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflaterManaged.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflaterManaged.cs new file mode 100644 index 0000000..71ebd31 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AADeflaterManaged.cs @@ -0,0 +1,188 @@ +using System; + +namespace Invensys.Compression; + +internal class AADeflaterManaged : IDisposable +{ + private enum DeflaterState + { + NotStarted, + SlowDownForIncompressible1, + SlowDownForIncompressible2, + StartingSmallData, + CompressThenCheck, + CheckingForIncompressible, + HandlingSmallData + } + + private const int MinBlockSize = 256; + + private const int MaxHeaderFooterGoo = 120; + + private const int CleanCopySize = 8072; + + private const double BadCompressionThreshold = 1.0; + + private AAFastEncoder deflateEncoder; + + private AACopyEncoder copyEncoder; + + private AADeflateInput input; + + private AAOutputBuffer output; + + private DeflaterState processingState; + + private AADeflateInput inputFromHistory; + + internal AADeflaterManaged() + { + deflateEncoder = new AAFastEncoder(); + copyEncoder = new AACopyEncoder(); + input = new AADeflateInput(); + output = new AAOutputBuffer(); + processingState = DeflaterState.NotStarted; + } + + public bool NeedsInput() + { + if (input.Count == 0) + { + return deflateEncoder.BytesInHistory == 0; + } + return false; + } + + public void SetInput(byte[] inputBuffer, int startIndex, int count) + { + input.Buffer = inputBuffer; + input.Count = count; + input.StartIndex = startIndex; + if (count > 0 && count < 256) + { + switch (processingState) + { + case DeflaterState.NotStarted: + case DeflaterState.CheckingForIncompressible: + processingState = DeflaterState.StartingSmallData; + break; + case DeflaterState.CompressThenCheck: + processingState = DeflaterState.HandlingSmallData; + break; + } + } + } + + public int GetDeflateOutput(byte[] outputBuffer) + { + output.UpdateBuffer(outputBuffer); + switch (processingState) + { + case DeflaterState.NotStarted: + { + AADeflateInput.InputState state3 = input.DumpState(); + AAOutputBuffer.BufferState state4 = output.DumpState(); + deflateEncoder.GetBlockHeader(output); + deflateEncoder.GetCompressedData(input, output); + if (!UseCompressed(deflateEncoder.LastCompressionRatio)) + { + input.RestoreState(state3); + output.RestoreState(state4); + copyEncoder.GetBlock(input, output, isFinal: false); + FlushInputWindows(); + processingState = DeflaterState.CheckingForIncompressible; + } + else + { + processingState = DeflaterState.CompressThenCheck; + } + break; + } + case DeflaterState.CompressThenCheck: + deflateEncoder.GetCompressedData(input, output); + if (!UseCompressed(deflateEncoder.LastCompressionRatio)) + { + processingState = DeflaterState.SlowDownForIncompressible1; + inputFromHistory = deflateEncoder.UnprocessedInput; + } + break; + case DeflaterState.SlowDownForIncompressible1: + deflateEncoder.GetBlockFooter(output); + processingState = DeflaterState.SlowDownForIncompressible2; + goto case DeflaterState.SlowDownForIncompressible2; + case DeflaterState.SlowDownForIncompressible2: + if (inputFromHistory.Count > 0) + { + copyEncoder.GetBlock(inputFromHistory, output, isFinal: false); + } + if (inputFromHistory.Count == 0) + { + deflateEncoder.FlushInput(); + processingState = DeflaterState.CheckingForIncompressible; + } + break; + case DeflaterState.CheckingForIncompressible: + { + AADeflateInput.InputState state = input.DumpState(); + AAOutputBuffer.BufferState state2 = output.DumpState(); + deflateEncoder.GetBlock(input, output, 8072); + if (!UseCompressed(deflateEncoder.LastCompressionRatio)) + { + input.RestoreState(state); + output.RestoreState(state2); + copyEncoder.GetBlock(input, output, isFinal: false); + FlushInputWindows(); + } + break; + } + case DeflaterState.StartingSmallData: + deflateEncoder.GetBlockHeader(output); + processingState = DeflaterState.HandlingSmallData; + goto case DeflaterState.HandlingSmallData; + case DeflaterState.HandlingSmallData: + deflateEncoder.GetCompressedData(input, output); + break; + } + return output.BytesWritten; + } + + public bool Finish(byte[] outputBuffer, out int bytesRead) + { + if (processingState == DeflaterState.NotStarted) + { + bytesRead = 0; + return true; + } + output.UpdateBuffer(outputBuffer); + if (processingState == DeflaterState.CompressThenCheck || processingState == DeflaterState.HandlingSmallData || processingState == DeflaterState.SlowDownForIncompressible1) + { + deflateEncoder.GetBlockFooter(output); + } + WriteFinal(); + bytesRead = output.BytesWritten; + return true; + } + + void IDisposable.Dispose() + { + } + + protected void Dispose(bool disposing) + { + } + + private bool UseCompressed(double ratio) + { + return ratio <= 1.0; + } + + private void FlushInputWindows() + { + deflateEncoder.FlushInput(); + } + + private void WriteFinal() + { + copyEncoder.GetBlock(null, output, isFinal: true); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoder.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoder.cs new file mode 100644 index 0000000..a79c0e2 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoder.cs @@ -0,0 +1,156 @@ +using System; + +namespace Invensys.Compression; + +internal class AAFastEncoder +{ + private AAFastEncoderWindow inputWindow; + + private AAMatch currentMatch; + + private double lastCompressionRatio; + + internal int BytesInHistory => inputWindow.BytesAvailable; + + internal AADeflateInput UnprocessedInput => inputWindow.UnprocessedInput; + + internal double LastCompressionRatio => lastCompressionRatio; + + public AAFastEncoder() + { + inputWindow = new AAFastEncoderWindow(); + currentMatch = new AAMatch(); + } + + internal void FlushInput() + { + inputWindow.FlushWindow(); + } + + internal void GetBlock(AADeflateInput input, AAOutputBuffer output, int maxBytesToCopy) + { + WriteDeflatePreamble(output); + GetCompressedOutput(input, output, maxBytesToCopy); + WriteEndOfBlock(output); + } + + internal void GetCompressedData(AADeflateInput input, AAOutputBuffer output) + { + GetCompressedOutput(input, output, -1); + } + + internal void GetBlockHeader(AAOutputBuffer output) + { + WriteDeflatePreamble(output); + } + + internal void GetBlockFooter(AAOutputBuffer output) + { + WriteEndOfBlock(output); + } + + private void GetCompressedOutput(AADeflateInput input, AAOutputBuffer output, int maxBytesToCopy) + { + int bytesWritten = output.BytesWritten; + int num = 0; + int num2 = BytesInHistory + input.Count; + do + { + int num3 = ((input.Count < inputWindow.FreeWindowSpace) ? input.Count : inputWindow.FreeWindowSpace); + if (maxBytesToCopy >= 1) + { + num3 = Math.Min(num3, maxBytesToCopy - num); + } + if (num3 > 0) + { + inputWindow.CopyBytes(input.Buffer, input.StartIndex, num3); + input.ConsumeBytes(num3); + num += num3; + } + GetCompressedOutput(output); + } + while (SafeToWriteTo(output) && InputAvailable(input) && (maxBytesToCopy < 1 || num < maxBytesToCopy)); + int num4 = output.BytesWritten - bytesWritten; + int num5 = BytesInHistory + input.Count; + int num6 = num2 - num5; + if (num4 != 0) + { + lastCompressionRatio = (double)num4 / (double)num6; + } + } + + private void GetCompressedOutput(AAOutputBuffer output) + { + while (inputWindow.BytesAvailable > 0 && SafeToWriteTo(output)) + { + inputWindow.GetNextSymbolOrMatch(currentMatch); + if (currentMatch.State == AAMatchState.HasSymbol) + { + WriteChar(currentMatch.Symbol, output); + continue; + } + if (currentMatch.State == AAMatchState.HasMatch) + { + WriteMatch(currentMatch.Length, currentMatch.Position, output); + continue; + } + WriteChar(currentMatch.Symbol, output); + WriteMatch(currentMatch.Length, currentMatch.Position, output); + } + } + + private bool InputAvailable(AADeflateInput input) + { + if (input.Count <= 0) + { + return BytesInHistory > 0; + } + return true; + } + + private bool SafeToWriteTo(AAOutputBuffer output) + { + return output.FreeBytes > 16; + } + + private void WriteEndOfBlock(AAOutputBuffer output) + { + uint num = AAFastEncoderStatics.FastEncoderLiteralCodeInfo[256]; + int n = (int)(num & 0x1F); + output.WriteBits(n, num >> 5); + } + + internal static void WriteMatch(int matchLen, int matchPos, AAOutputBuffer output) + { + uint num = AAFastEncoderStatics.FastEncoderLiteralCodeInfo[254 + matchLen]; + int num2 = (int)(num & 0x1F); + if (num2 <= 16) + { + output.WriteBits(num2, num >> 5); + } + else + { + output.WriteBits(16, (num >> 5) & 0xFFFF); + output.WriteBits(num2 - 16, num >> 21); + } + num = AAFastEncoderStatics.FastEncoderDistanceCodeInfo[AAFastEncoderStatics.GetSlot(matchPos)]; + output.WriteBits((int)(num & 0xF), num >> 8); + int num3 = (int)((num >> 4) & 0xF); + if (num3 != 0) + { + output.WriteBits(num3, (uint)matchPos & AAFastEncoderStatics.BitMask[num3]); + } + } + + internal static void WriteChar(byte b, AAOutputBuffer output) + { + uint num = AAFastEncoderStatics.FastEncoderLiteralCodeInfo[b]; + output.WriteBits((int)(num & 0x1F), num >> 5); + } + + internal static void WriteDeflatePreamble(AAOutputBuffer output) + { + output.WriteBytes(AAFastEncoderStatics.FastEncoderTreeStructureData, 0, AAFastEncoderStatics.FastEncoderTreeStructureData.Length); + output.WriteBits(9, 34u); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoderStatics.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoderStatics.cs new file mode 100644 index 0000000..b3285f0 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoderStatics.cs @@ -0,0 +1,186 @@ +namespace Invensys.Compression; + +internal static class AAFastEncoderStatics +{ + internal static readonly byte[] FastEncoderTreeStructureData; + + internal static readonly byte[] BFinalFastEncoderTreeStructureData; + + internal static readonly uint[] FastEncoderLiteralCodeInfo; + + internal static readonly uint[] FastEncoderDistanceCodeInfo; + + internal static readonly uint[] BitMask; + + internal static readonly byte[] ExtraLengthBits; + + internal static readonly byte[] ExtraDistanceBits; + + internal const int NumChars = 256; + + internal const int NumLengthBaseCodes = 29; + + internal const int NumDistBaseCodes = 30; + + internal const uint FastEncoderPostTreeBitBuf = 34u; + + internal const int FastEncoderPostTreeBitCount = 9; + + internal const uint NoCompressionHeader = 0u; + + internal const int NoCompressionHeaderBitCount = 3; + + internal const uint BFinalNoCompressionHeader = 1u; + + internal const int BFinalNoCompressionHeaderBitCount = 3; + + internal const int MaxCodeLen = 16; + + private static byte[] distLookup; + + static AAFastEncoderStatics() + { + FastEncoderTreeStructureData = new byte[98] + { + 236, 189, 7, 96, 28, 73, 150, 37, 38, 47, + 109, 202, 123, 127, 74, 245, 74, 215, 224, 116, + 161, 8, 128, 96, 19, 36, 216, 144, 64, 16, + 236, 193, 136, 205, 230, 146, 236, 29, 105, 71, + 35, 41, 171, 42, 129, 202, 101, 86, 101, 93, + 102, 22, 64, 204, 237, 157, 188, 247, 222, 123, + 239, 189, 247, 222, 123, 239, 189, 247, 186, 59, + 157, 78, 39, 247, 223, 255, 63, 92, 102, 100, + 1, 108, 246, 206, 74, 218, 201, 158, 33, 128, + 170, 200, 31, 63, 126, 124, 31, 63 + }; + BFinalFastEncoderTreeStructureData = new byte[98] + { + 237, 189, 7, 96, 28, 73, 150, 37, 38, 47, + 109, 202, 123, 127, 74, 245, 74, 215, 224, 116, + 161, 8, 128, 96, 19, 36, 216, 144, 64, 16, + 236, 193, 136, 205, 230, 146, 236, 29, 105, 71, + 35, 41, 171, 42, 129, 202, 101, 86, 101, 93, + 102, 22, 64, 204, 237, 157, 188, 247, 222, 123, + 239, 189, 247, 222, 123, 239, 189, 247, 186, 59, + 157, 78, 39, 247, 223, 255, 63, 92, 102, 100, + 1, 108, 246, 206, 74, 218, 201, 158, 33, 128, + 170, 200, 31, 63, 126, 124, 31, 63 + }; + FastEncoderLiteralCodeInfo = new uint[513] + { + 55278u, 317422u, 186350u, 448494u, 120814u, 382958u, 251886u, 514030u, 14318u, 51180u, + 294u, 276462u, 145390u, 407534u, 79854u, 341998u, 210926u, 473070u, 47086u, 309230u, + 178158u, 440302u, 112622u, 374766u, 243694u, 505838u, 30702u, 292846u, 161774u, 423918u, + 6125u, 96238u, 1318u, 358382u, 9194u, 116716u, 227310u, 489454u, 137197u, 25578u, + 2920u, 3817u, 23531u, 5098u, 1127u, 7016u, 3175u, 12009u, 1896u, 5992u, + 3944u, 7913u, 8040u, 16105u, 21482u, 489u, 232u, 8681u, 4585u, 4328u, + 12777u, 13290u, 2280u, 63470u, 325614u, 6376u, 2537u, 1256u, 10729u, 5352u, + 6633u, 29674u, 56299u, 3304u, 15339u, 194542u, 14825u, 3050u, 1513u, 19434u, + 9705u, 10220u, 5609u, 13801u, 3561u, 11242u, 75756u, 48107u, 456686u, 129006u, + 42988u, 31723u, 391150u, 64491u, 260078u, 522222u, 4078u, 806u, 615u, 2663u, + 1639u, 1830u, 7400u, 744u, 3687u, 166u, 108524u, 11753u, 1190u, 359u, + 2407u, 678u, 1383u, 71661u, 1702u, 422u, 1446u, 3431u, 4840u, 2792u, + 7657u, 6888u, 2027u, 202733u, 26604u, 38893u, 169965u, 266222u, 135150u, 397294u, + 69614u, 331758u, 200686u, 462830u, 36846u, 298990u, 167918u, 430062u, 102382u, 364526u, + 233454u, 495598u, 20462u, 282606u, 151534u, 413678u, 85998u, 348142u, 217070u, 479214u, + 53230u, 315374u, 184302u, 446446u, 118766u, 380910u, 249838u, 511982u, 12270u, 274414u, + 143342u, 405486u, 77806u, 339950u, 208878u, 471022u, 45038u, 307182u, 176110u, 438254u, + 110574u, 372718u, 241646u, 503790u, 28654u, 290798u, 159726u, 421870u, 94190u, 356334u, + 225262u, 487406u, 61422u, 323566u, 192494u, 454638u, 126958u, 389102u, 258030u, 520174u, + 8174u, 270318u, 139246u, 401390u, 73710u, 335854u, 204782u, 466926u, 40942u, 303086u, + 172014u, 434158u, 106478u, 368622u, 237550u, 499694u, 24558u, 286702u, 155630u, 417774u, + 90094u, 352238u, 221166u, 483310u, 57326u, 319470u, 188398u, 450542u, 122862u, 385006u, + 253934u, 516078u, 16366u, 278510u, 147438u, 409582u, 81902u, 344046u, 212974u, 475118u, + 49134u, 311278u, 180206u, 442350u, 114670u, 376814u, 245742u, 507886u, 32750u, 294894u, + 163822u, 425966u, 98286u, 104429u, 235501u, 22509u, 360430u, 153581u, 229358u, 88045u, + 491502u, 219117u, 65518u, 327662u, 196590u, 458734u, 131054u, 132u, 3u, 388u, + 68u, 324u, 197u, 709u, 453u, 966u, 1990u, 38u, 1062u, 935u, + 2983u, 1959u, 4007u, 551u, 1575u, 2599u, 3623u, 104u, 2152u, 4200u, + 6248u, 873u, 4969u, 9065u, 13161u, 1770u, 9962u, 18154u, 26346u, 5867u, + 14059u, 22251u, 30443u, 38635u, 46827u, 55019u, 63211u, 15852u, 32236u, 48620u, + 65004u, 81388u, 97772u, 114156u, 130540u, 27629u, 60397u, 93165u, 125933u, 158701u, + 191469u, 224237u, 257005u, 1004u, 17388u, 33772u, 50156u, 66540u, 82924u, 99308u, + 115692u, 7150u, 39918u, 72686u, 105454u, 138222u, 170990u, 203758u, 236526u, 269294u, + 302062u, 334830u, 367598u, 400366u, 433134u, 465902u, 498670u, 92144u, 223216u, 354288u, + 485360u, 616432u, 747504u, 878576u, 1009648u, 1140720u, 1271792u, 1402864u, 1533936u, 1665008u, + 1796080u, 1927152u, 2058224u, 34799u, 100335u, 165871u, 231407u, 296943u, 362479u, 428015u, + 493551u, 559087u, 624623u, 690159u, 755695u, 821231u, 886767u, 952303u, 1017839u, 59376u, + 190448u, 321520u, 452592u, 583664u, 714736u, 845808u, 976880u, 1107952u, 1239024u, 1370096u, + 1501168u, 1632240u, 1763312u, 1894384u, 2025456u, 393203u, 917491u, 1441779u, 1966067u, 2490355u, + 3014643u, 3538931u, 4063219u, 4587507u, 5111795u, 5636083u, 6160371u, 6684659u, 7208947u, 7733235u, + 8257523u, 8781811u, 9306099u, 9830387u, 10354675u, 10878963u, 11403251u, 11927539u, 12451827u, 12976115u, + 13500403u, 14024691u, 14548979u, 15073267u, 15597555u, 16121843u, 16646131u, 262131u, 786419u, 1310707u, + 1834995u, 2359283u, 2883571u, 3407859u, 3932147u, 4456435u, 4980723u, 5505011u, 6029299u, 6553587u, + 7077875u, 7602163u, 8126451u, 8650739u, 9175027u, 9699315u, 10223603u, 10747891u, 11272179u, 11796467u, + 12320755u, 12845043u, 13369331u, 13893619u, 14417907u, 14942195u, 15466483u, 15990771u, 16515059u, 524275u, + 1048563u, 1572851u, 2097139u, 2621427u, 3145715u, 3670003u, 4194291u, 4718579u, 5242867u, 5767155u, + 6291443u, 6815731u, 7340019u, 7864307u, 8388595u, 8912883u, 9437171u, 9961459u, 10485747u, 11010035u, + 11534323u, 12058611u, 12582899u, 13107187u, 13631475u, 14155763u, 14680051u, 15204339u, 15728627u, 16252915u, + 16777203u, 124913u, 255985u, 387057u, 518129u, 649201u, 780273u, 911345u, 1042417u, 1173489u, + 1304561u, 1435633u, 1566705u, 1697777u, 1828849u, 1959921u, 2090993u, 2222065u, 2353137u, 2484209u, + 2615281u, 2746353u, 2877425u, 3008497u, 3139569u, 3270641u, 3401713u, 3532785u, 3663857u, 3794929u, + 3926001u, 4057073u, 18411u + }; + FastEncoderDistanceCodeInfo = new uint[32] + { + 3846u, 130826u, 261899u, 524043u, 65305u, 16152u, 48936u, 32552u, 7991u, 24375u, + 3397u, 12102u, 84u, 7509u, 2148u, 869u, 1140u, 4981u, 3204u, 644u, + 2708u, 1684u, 3748u, 420u, 2484u, 2997u, 1476u, 7109u, 2005u, 6101u, + 0u, 256u + }; + BitMask = new uint[16] + { + 0u, 1u, 3u, 7u, 15u, 31u, 63u, 127u, 255u, 511u, + 1023u, 2047u, 4095u, 8191u, 16383u, 32767u + }; + ExtraLengthBits = new byte[29] + { + 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, + 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, + 4, 4, 4, 4, 5, 5, 5, 5, 0 + }; + ExtraDistanceBits = new byte[32] + { + 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, + 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, + 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, + 0, 0 + }; + distLookup = new byte[512]; + int num = 0; + int i; + for (i = 0; i < 16; i++) + { + for (int j = 0; j < 1 << (int)ExtraDistanceBits[i]; j++) + { + distLookup[num++] = (byte)i; + } + } + num >>= 7; + for (; i < 30; i++) + { + for (int k = 0; k < 1 << ExtraDistanceBits[i] - 7; k++) + { + distLookup[256 + num++] = (byte)i; + } + } + } + + internal static int GetSlot(int pos) + { + return distLookup[(pos < 256) ? pos : (256 + (pos >> 7))]; + } + + public static uint BitReverse(uint code, int length) + { + uint num = 0u; + do + { + num |= code & 1; + num <<= 1; + code >>= 1; + } + while (--length > 0); + return num >> 1; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoderWindow.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoderWindow.cs new file mode 100644 index 0000000..27ba815 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAFastEncoderWindow.cs @@ -0,0 +1,285 @@ +using System; +using System.Diagnostics; + +namespace Invensys.Compression; + +internal class AAFastEncoderWindow +{ + private byte[] window; + + private int bufPos; + + private int bufEnd; + + private const int FastEncoderHashShift = 4; + + private const int FastEncoderHashtableSize = 2048; + + private const int FastEncoderHashMask = 2047; + + private const int FastEncoderWindowSize = 8192; + + private const int FastEncoderWindowMask = 8191; + + private const int FastEncoderMatch3DistThreshold = 16384; + + internal const int MaxMatch = 258; + + internal const int MinMatch = 3; + + private const int SearchDepth = 32; + + private const int GoodLength = 4; + + private const int NiceLength = 32; + + private const int LazyMatchThreshold = 6; + + private ushort[] prev; + + private ushort[] lookup; + + public int BytesAvailable => bufEnd - bufPos; + + public AADeflateInput UnprocessedInput => new AADeflateInput + { + Buffer = window, + StartIndex = bufPos, + Count = bufEnd - bufPos + }; + + public int FreeWindowSpace => 16384 - bufEnd; + + public AAFastEncoderWindow() + { + ResetWindow(); + } + + public void FlushWindow() + { + ResetWindow(); + } + + private void ResetWindow() + { + window = new byte[16646]; + prev = new ushort[8450]; + lookup = new ushort[2048]; + bufPos = 8192; + bufEnd = bufPos; + } + + public void CopyBytes(byte[] inputBuffer, int startIndex, int count) + { + Array.Copy(inputBuffer, startIndex, window, bufEnd, count); + bufEnd += count; + } + + public void MoveWindows() + { + Array.Copy(window, bufPos - 8192, window, 0, 8192); + for (int i = 0; i < 2048; i++) + { + int num = lookup[i] - 8192; + if (num <= 0) + { + lookup[i] = 0; + } + else + { + lookup[i] = (ushort)num; + } + } + for (int i = 0; i < 8192; i++) + { + long num2 = (long)prev[i] - 8192L; + if (num2 <= 0) + { + prev[i] = 0; + } + else + { + prev[i] = (ushort)num2; + } + } + bufPos = 8192; + bufEnd = bufPos; + } + + private uint HashValue(uint hash, byte b) + { + return (hash << 4) ^ b; + } + + private uint InsertString(ref uint hash) + { + hash = HashValue(hash, window[bufPos + 2]); + uint num = lookup[hash & 0x7FF]; + lookup[hash & 0x7FF] = (ushort)bufPos; + prev[bufPos & 0x1FFF] = (ushort)num; + return num; + } + + private void InsertStrings(ref uint hash, int matchLen) + { + if (bufEnd - bufPos <= matchLen) + { + bufPos += matchLen - 1; + return; + } + while (--matchLen > 0) + { + InsertString(ref hash); + bufPos++; + } + } + + internal bool GetNextSymbolOrMatch(AAMatch match) + { + uint hash = HashValue(0u, window[bufPos]); + hash = HashValue(hash, window[bufPos + 1]); + int matchPos = 0; + int num; + if (bufEnd - bufPos <= 3) + { + num = 0; + } + else + { + int num2 = (int)InsertString(ref hash); + if (num2 != 0) + { + num = FindMatch(num2, out matchPos, 32, 32); + if (bufPos + num > bufEnd) + { + num = bufEnd - bufPos; + } + } + else + { + num = 0; + } + } + if (num < 3) + { + match.State = AAMatchState.HasSymbol; + match.Symbol = window[bufPos]; + bufPos++; + } + else + { + bufPos++; + if (num <= 6) + { + int matchPos2 = 0; + int num3 = (int)InsertString(ref hash); + int num4; + if (num3 != 0) + { + num4 = FindMatch(num3, out matchPos2, (num < 4) ? 32 : 8, 32); + if (bufPos + num4 > bufEnd) + { + num4 = bufEnd - bufPos; + } + } + else + { + num4 = 0; + } + if (num4 > num) + { + match.State = AAMatchState.HasSymbolAndMatch; + match.Symbol = window[bufPos - 1]; + match.Position = matchPos2; + match.Length = num4; + bufPos++; + num = num4; + InsertStrings(ref hash, num); + } + else + { + match.State = AAMatchState.HasMatch; + match.Position = matchPos; + match.Length = num; + num--; + bufPos++; + InsertStrings(ref hash, num); + } + } + else + { + match.State = AAMatchState.HasMatch; + match.Position = matchPos; + match.Length = num; + InsertStrings(ref hash, num); + } + } + if (bufPos == 16384) + { + MoveWindows(); + } + return true; + } + + private int FindMatch(int search, out int matchPos, int searchDepth, int niceLength) + { + int num = 0; + int num2 = 0; + int num3 = bufPos - 8192; + byte b = window[bufPos]; + while (search > num3) + { + if (window[search + num] == b) + { + int i; + for (i = 0; i < 258 && window[bufPos + i] == window[search + i]; i++) + { + } + if (i > num) + { + num = i; + num2 = search; + if (i > 32) + { + break; + } + b = window[bufPos + i]; + } + } + if (--searchDepth == 0) + { + break; + } + search = prev[search & 0x1FFF]; + } + matchPos = bufPos - num2 - 1; + if (num == 3 && matchPos >= 16384) + { + return 0; + } + return num; + } + + [Conditional("DEBUG")] + private void VerifyHashes() + { + for (int i = 0; i < 2048; i++) + { + ushort num = lookup[i]; + while (num != 0 && bufPos - num < 8192) + { + ushort num2 = prev[num & 0x1FFF]; + if (bufPos - num2 >= 8192) + { + break; + } + num = num2; + } + } + } + + private uint RecalculateHash(int position) + { + return (uint)(((window[position] << 8) ^ (window[position + 1] << 4) ^ window[position + 2]) & 0x7FF); + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAMatch.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAMatch.cs new file mode 100644 index 0000000..f2d2eca --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAMatch.cs @@ -0,0 +1,60 @@ +namespace Invensys.Compression; + +internal class AAMatch +{ + private AAMatchState state; + + private int pos; + + private int len; + + private byte symbol; + + internal AAMatchState State + { + get + { + return state; + } + set + { + state = value; + } + } + + internal int Position + { + get + { + return pos; + } + set + { + pos = value; + } + } + + internal int Length + { + get + { + return len; + } + set + { + len = value; + } + } + + internal byte Symbol + { + get + { + return symbol; + } + set + { + symbol = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAMatchState.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAMatchState.cs new file mode 100644 index 0000000..9aac974 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAMatchState.cs @@ -0,0 +1,8 @@ +namespace Invensys.Compression; + +internal enum AAMatchState +{ + HasSymbol, + HasMatch, + HasSymbolAndMatch +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAOutputBuffer.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAOutputBuffer.cs new file mode 100644 index 0000000..9e21111 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/AAOutputBuffer.cs @@ -0,0 +1,113 @@ +using System; + +namespace Invensys.Compression; + +internal class AAOutputBuffer +{ + internal struct BufferState + { + internal int pos; + + internal uint bitBuf; + + internal int bitCount; + } + + private byte[] byteBuffer; + + private int pos; + + private uint bitBuf; + + private int bitCount; + + internal int BytesWritten => pos; + + internal int FreeBytes => byteBuffer.Length - pos; + + internal int BitsInBuffer => bitCount / 8 + 1; + + internal void UpdateBuffer(byte[] output) + { + byteBuffer = output; + pos = 0; + } + + internal void WriteUInt16(ushort value) + { + byteBuffer[pos++] = (byte)value; + byteBuffer[pos++] = (byte)(value >> 8); + } + + internal void WriteBits(int n, uint bits) + { + bitBuf |= bits << bitCount; + bitCount += n; + if (bitCount >= 16) + { + byteBuffer[pos++] = (byte)bitBuf; + byteBuffer[pos++] = (byte)(bitBuf >> 8); + bitCount -= 16; + bitBuf >>= 16; + } + } + + internal void FlushBits() + { + while (bitCount >= 8) + { + byteBuffer[pos++] = (byte)bitBuf; + bitCount -= 8; + bitBuf >>= 8; + } + if (bitCount > 0) + { + byteBuffer[pos++] = (byte)bitBuf; + bitBuf = 0u; + bitCount = 0; + } + } + + internal void WriteBytes(byte[] byteArray, int offset, int count) + { + if (bitCount == 0) + { + Array.Copy(byteArray, offset, byteBuffer, pos, count); + pos += count; + } + else + { + WriteBytesUnaligned(byteArray, offset, count); + } + } + + private void WriteBytesUnaligned(byte[] byteArray, int offset, int count) + { + for (int i = 0; i < count; i++) + { + byte b = byteArray[offset + i]; + WriteByteUnaligned(b); + } + } + + private void WriteByteUnaligned(byte b) + { + WriteBits(8, b); + } + + internal BufferState DumpState() + { + BufferState result = default(BufferState); + result.pos = pos; + result.bitBuf = bitBuf; + result.bitCount = bitCount; + return result; + } + + internal void RestoreState(BufferState state) + { + pos = state.pos; + bitBuf = state.bitBuf; + bitCount = state.bitCount; + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/DeflateStreamAsyncResult.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/DeflateStreamAsyncResult.cs new file mode 100644 index 0000000..7161e94 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Invensys.Compression/DeflateStreamAsyncResult.cs @@ -0,0 +1,106 @@ +using System; +using System.Threading; + +namespace Invensys.Compression; + +internal class DeflateStreamAsyncResult : IAsyncResult +{ + public byte[] buffer; + + public int offset; + + public int count; + + public bool isWrite; + + private object m_AsyncObject; + + private object m_AsyncState; + + private AsyncCallback m_AsyncCallback; + + private object m_Result; + + internal bool m_CompletedSynchronously; + + private int m_InvokedCallback; + + private int m_Completed; + + private object m_Event; + + public object AsyncState => m_AsyncState; + + public WaitHandle AsyncWaitHandle + { + get + { + int completed = m_Completed; + if (m_Event == null) + { + Interlocked.CompareExchange(ref m_Event, new ManualResetEvent(completed != 0), null); + } + ManualResetEvent manualResetEvent = (ManualResetEvent)m_Event; + if (completed == 0 && m_Completed != 0) + { + manualResetEvent.Set(); + } + return manualResetEvent; + } + } + + public bool CompletedSynchronously => m_CompletedSynchronously; + + public bool IsCompleted => m_Completed != 0; + + internal object Result => m_Result; + + public DeflateStreamAsyncResult(object asyncObject, object asyncState, AsyncCallback asyncCallback, byte[] buffer, int offset, int count) + { + this.buffer = buffer; + this.offset = offset; + this.count = count; + m_CompletedSynchronously = true; + m_AsyncObject = asyncObject; + m_AsyncState = asyncState; + m_AsyncCallback = asyncCallback; + } + + internal void Close() + { + if (m_Event != null) + { + ((ManualResetEvent)m_Event).Close(); + } + } + + internal void InvokeCallback(bool completedSynchronously, object result) + { + Complete(completedSynchronously, result); + } + + internal void InvokeCallback(object result) + { + Complete(result); + } + + private void Complete(bool completedSynchronously, object result) + { + m_CompletedSynchronously = completedSynchronously; + Complete(result); + } + + private void Complete(object result) + { + m_Result = result; + Interlocked.Increment(ref m_Completed); + if (m_Event != null) + { + ((ManualResetEvent)m_Event).Set(); + } + if (Interlocked.Increment(ref m_InvokedCallback) == 1 && m_AsyncCallback != null) + { + m_AsyncCallback(this); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..99cbd54 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: CLSCompliant(false)] +[assembly: InternalsVisibleTo("Contract.IAuthenticateASB.UnitTest, PublicKey=0024000004800000940000000602000000240000525341310004000001000100bd93c789db4fc111921cb26c0c84c98b814989934efaf5db327d28ae4393df69402fcc2043d0767a22919510c438dea0a535baac763803356f4b63cc8890e3f17dbf0dd81318854034fa1c8d6efba84b8ff138bc9396f2ad7f696c0aa9e2b4cc8f63204810954f17b912bc31c29f8607d061d744a55fcf8253734bec598a5bc2")] +[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")] +[assembly: InternalsVisibleTo("Asb.Runtime.V3, PublicKey=0024000004800000940000000602000000240000525341310004000001000100A79FB5CE9AF5B80294B8B7AE7B476BCBF30B0713351655B2170195CD14ACD8ED1462DF1AB3A167D5463BD76A6151DD1766B94C350994D233A7024266591EE249882A4EE9C9E4DE90DCD4C3762F274652CABAC4A99704A9073872505B090F638E1A0827AEAC9FF572D93D1A7800669DC0CE920817BD5AA5D70BACB7DF88B4FDB3")] +[assembly: InternalsVisibleTo("ASBIDataV3.UnitTest, PublicKey=0024000004800000940000000602000000240000525341310004000001000100A79FB5CE9AF5B80294B8B7AE7B476BCBF30B0713351655B2170195CD14ACD8ED1462DF1AB3A167D5463BD76A6151DD1766B94C350994D233A7024266591EE249882A4EE9C9E4DE90DCD4C3762F274652CABAC4A99704A9073872505B090F638E1A0827AEAC9FF572D93D1A7800669DC0CE920817BD5AA5D70BACB7DF88B4FDB3")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyDescription("ASB Service Base Contracts.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("aaServicesContractIAuthenticateASB")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/System.IO.Compression/DeflateStreamAsyncResult.cs b/analysis/decompiled/aaServicesContractIAuthenticateASB/System.IO.Compression/DeflateStreamAsyncResult.cs new file mode 100644 index 0000000..fa2d472 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/System.IO.Compression/DeflateStreamAsyncResult.cs @@ -0,0 +1,103 @@ +using System.Threading; + +namespace System.IO.Compression; + +internal class DeflateStreamAsyncResult : IAsyncResult +{ + public byte[] buffer; + + public int offset; + + public int count; + + private object m_AsyncObject; + + private object m_AsyncState; + + private AsyncCallback m_AsyncCallback; + + private object m_Result; + + internal bool m_CompletedSynchronously; + + private int m_InvokedCallback; + + private int m_Completed; + + private object m_Event; + + public object AsyncState => m_AsyncState; + + public WaitHandle AsyncWaitHandle + { + get + { + int completed = m_Completed; + if (m_Event == null) + { + Interlocked.CompareExchange(ref m_Event, new ManualResetEvent(completed != 0), null); + } + ManualResetEvent manualResetEvent = (ManualResetEvent)m_Event; + if (completed == 0 && m_Completed != 0) + { + manualResetEvent.Set(); + } + return manualResetEvent; + } + } + + public bool CompletedSynchronously => m_CompletedSynchronously; + + public bool IsCompleted => m_Completed != 0; + + internal object Result => m_Result; + + public DeflateStreamAsyncResult(object asyncObject, object asyncState, AsyncCallback asyncCallback, byte[] buffer, int offset, int count) + { + this.buffer = buffer; + this.offset = offset; + this.count = count; + m_CompletedSynchronously = true; + m_AsyncObject = asyncObject; + m_AsyncState = asyncState; + m_AsyncCallback = asyncCallback; + } + + internal void Close() + { + if (m_Event != null) + { + ((ManualResetEvent)m_Event).Close(); + } + } + + internal void InvokeCallback(bool completedSynchronously, object result) + { + Complete(completedSynchronously, result); + } + + internal void InvokeCallback(object result) + { + Complete(result); + } + + private void Complete(bool completedSynchronously, object result) + { + m_CompletedSynchronously = completedSynchronously; + Complete(result); + } + + private void Complete(object result) + { + m_Result = result; + Interlocked.Increment(ref m_Completed); + if (m_Event != null) + { + ((ManualResetEvent)m_Event).Set(); + } + if (Interlocked.Increment(ref m_InvokedCallback) == 1 && m_AsyncCallback != null) + { + m_AsyncCallback(this); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIAuthenticateASB/aaServicesContractIAuthenticateASB.csproj b/analysis/decompiled/aaServicesContractIAuthenticateASB/aaServicesContractIAuthenticateASB.csproj new file mode 100644 index 0000000..c8b9493 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIAuthenticateASB/aaServicesContractIAuthenticateASB.csproj @@ -0,0 +1,25 @@ + + + aaServicesContractIAuthenticateASB + False + net40 + + + 14.0 + True + False + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataCustomSerializer.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataCustomSerializer.cs new file mode 100644 index 0000000..d7b8d45 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataCustomSerializer.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.Serialization; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +public class ASBIDataCustomSerializer : ASBCustomSerializer +{ + public ASBIDataCustomSerializer(Type type, XmlObjectSerializer fallbackSerializer) + : base(type, fallbackSerializer) + { + m_ASBPrefix = "ASBIData"; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataCustomSerializerOperationBehavior.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataCustomSerializerOperationBehavior.cs new file mode 100644 index 0000000..869a321 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataCustomSerializerOperationBehavior.cs @@ -0,0 +1,30 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Runtime.Serialization; +using System.ServiceModel.Description; +using System.Xml; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBContract; + +public class ASBIDataCustomSerializerOperationBehavior : DataContractSerializerOperationBehavior +{ + public ASBIDataCustomSerializerOperationBehavior(OperationDescription operation) + : base(operation) + { + } + + public override XmlObjectSerializer CreateSerializer(Type type, string name, string ns, IList knownTypes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ASBIDataCustomSerializerOperationBehavior:CreateSerializer-creating an instance for ASBIDataCustomSerializer class"); + return new ASBIDataCustomSerializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } + + public override XmlObjectSerializer CreateSerializer(Type type, XmlDictionaryString name, XmlDictionaryString ns, IList knownTypes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ASBIDataCustomSerializerOperationBehavior:CreateSerializer-creating an instance for ASBIDataCustomSerializer class"); + return new ASBIDataCustomSerializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataShim.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataShim.cs new file mode 100644 index 0000000..efbf54d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBIDataShim.cs @@ -0,0 +1,1149 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.ServiceModel; +using System.Threading; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBContract; + +[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)] +public abstract class ASBIDataShim : IASBIData, IAuthenticateASB +{ + private class ConnectionContext + { + public IContextChannel ConnectionChannel; + + public IData ConnectionImplementation; + + public Timer ConnectionKeepaliveTimer; + + private ConnectionContext() + { + } + + public ConnectionContext(IContextChannel Channel, IData Implementation, Timer KeepaliveTimer) + { + ConnectionChannel = Channel; + ConnectionImplementation = Implementation; + ConnectionKeepaliveTimer = KeepaliveTimer; + } + } + + private static ReaderWriterLockSlim implementationLock = new ReaderWriterLockSlim(); + + private static Dictionary m_Implementations = new Dictionary(); + + private static int KeepaliveTimeout = 30000; + + protected virtual IData GetImplementation() + { + return null; + } + + public ASBIDataShim() + { + } + + public virtual ConnectResponse Connect(ConnectRequest request) + { + ConnectResponse connectResponse = SysAuthServiceAuthentication.ProcessClientConnection(request); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Connect started new Authenticator for connection Id {0}", connectResponse.ConnectionValidator.ConnectionId.ToString()); + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "Connect started new Authenticator for connection Id =", connectResponse.ConnectionValidator.ConnectionId.ToString()); + return connectResponse; + } + + public virtual void AuthenticateMe(AuthenticateMe request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "AuthenticateMe entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && (OperationContext.Current.Channel.LocalAddress.Uri.ToString().ToLower().StartsWith("http") || serviceAuthenticator.ProcessClientAuthenticateMe(request))) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "AuthenticateMe found authenticator and validated request message, calling implementation OnConnect({0})", serviceAuthenticator.connectionID.ToString()); + ConnectionId connectionId = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData implementation = GetImplementation(); + if (implementation != null) + { + Timer keepaliveTimer = new Timer(KeepaliveHandler, implementation, KeepaliveTimeout, -1); + try + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "AuthenticateMe found authenticator and validated request message, calling implementation OnConnect Id =", serviceAuthenticator.connectionID.ToString()); + implementation.OnConnect(connectionId, serviceAuthenticator.Lifetime); + implementationLock.EnterWriteLock(); + try + { + m_Implementations.Add(serviceAuthenticator.connectionID, new ConnectionContext(OperationContext.Current.Channel, implementation, keepaliveTimer)); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "AuthenticateMe added implementation for ConnectionId {0}", serviceAuthenticator.connectionID); + } + finally + { + implementationLock.ExitWriteLock(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "AuthenticateMe caught exception from implementation for ConnectionId {0}: {1}", serviceAuthenticator.connectionID, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "AuthenticateMe exit Id =", serviceAuthenticator.connectionID.ToString()); + } + + public virtual RenewResponse Renew(RenewRequest request) + { + return SysAuthServiceAuthentication.ProcessClientRenew(request); + } + + public virtual void UpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfiguration request) + { + SysAuthServiceAuthentication.ProcessClientUpdateSystemAuthenticationConfiguration(request); + } + + public virtual void Disconnect(Disconnect request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "Disconnect entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + OnDisconnect(request.ConnectionValidator.ConnectionId); + serviceAuthenticator.ProcessClientDisconnect(request); + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "Disconnect exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + } + + private void OnDisconnect(Guid ConnectionId) + { + ConnectionId id = new ConnectionId + { + Id = ConnectionId + }; + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (!flag) + { + return; + } + IData connectionImplementation = value.ConnectionImplementation; + Timer connectionKeepaliveTimer = value.ConnectionKeepaliveTimer; + connectionKeepaliveTimer.Change(-1, -1); + connectionKeepaliveTimer.Dispose(); + try + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "OnDisconnect found authenticator and validated request message, calling implementation OnDisconnect Id =", ConnectionId.ToString()); + connectionImplementation.OnDisconnect(id); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "OnDisconnect caught exception from implementation for ConnectionId {0}: {1}", ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + implementationLock.EnterWriteLock(); + try + { + m_Implementations.Remove(ConnectionId); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "OnDisconnect removed implementation for ConnectionId {0}", ConnectionId); + } + finally + { + implementationLock.ExitWriteLock(); + } + } + + public virtual void KeepAlive(KeepAlive request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 100, string.Empty, "KeepAlive entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId connectionId = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + connectionImplementation.KeepAlive(connectionId); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "KeepAlive caught exception from implementation for ConnectionId {0}: {1}", connectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 100, string.Empty, "KeepAlive exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + } + + private void KeepaliveHandler(object Implementation) + { + Guid guid = Guid.Empty; + IContextChannel contextChannel = null; + implementationLock.EnterReadLock(); + try + { + foreach (KeyValuePair implementation in m_Implementations) + { + if (implementation.Value.ConnectionImplementation == Implementation) + { + guid = implementation.Key; + contextChannel = implementation.Value.ConnectionChannel; + break; + } + } + } + finally + { + implementationLock.ExitReadLock(); + } + if (guid == Guid.Empty) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Keepalive timeout triggered, could not find ConnectionId"); + return; + } + OnDisconnect(guid); + SysAuthenticatorServiceCache.RemoveServiceAuthenticator(guid); + try + { + if (contextChannel != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Keepalive timeout elapsed without any method calls, closing connection {0} and aborting service channel", guid.ToString()); + contextChannel.Abort(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, ex.StackTrace); + } + } + + public virtual ReadResponse Read(ReadRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Read entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ReadResponse readResponse = new ReadResponse(); + readResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + ItemStatus[] Status = null; + RuntimeValue[] Values = null; + readResponse.Result = connectionImplementation.Read(out Status, out Values, id, request.Items); + readResponse.Status = Status; + readResponse.Values = Values; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Read caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + readResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + readResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Read exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return readResponse; + } + + public virtual WriteResponse Write(WriteBasicRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Write entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteResponse writeResponse = new WriteResponse(); + writeResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + writeResponse.Result = connectionImplementation.Write(out var Status, id, request.Items, request.Values, request.WriteHandle); + writeResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Write caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Write exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeResponse; + } + + public virtual WriteUserResponse WriteUser(WriteUserRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteUser entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteUserResponse writeUserResponse = new WriteUserResponse(); + writeUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + IData connectionImplementation = value.ConnectionImplementation; + try + { + writeUserResponse.Result = connectionImplementation.WriteUser(out var Status, id, request.Items, request.Values, request.User, request.WriteHandle); + writeUserResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteUser caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeUserResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteUser exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeUserResponse; + } + + public virtual WriteVerifiedResponse WriteVerified(WriteVerifiedRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteVerified entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteVerifiedResponse writeVerifiedResponse = new WriteVerifiedResponse(); + writeVerifiedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + writeVerifiedResponse.Result = connectionImplementation.WriteVerified(out var Status, id, request.Items, request.Values, request.User, request.Supervisor, request.WriteHandle); + writeVerifiedResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteVerified caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeVerifiedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeVerifiedResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteVerified exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeVerifiedResponse; + } + + public virtual WriteSecuredResponse WriteSecured(WriteSecuredRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteSecured entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteSecuredResponse writeSecuredResponse = new WriteSecuredResponse(); + writeSecuredResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + writeSecuredResponse.Result = connectionImplementation.WriteSecured(out var Status, id, request.Items, request.Values, request.User, request.WriteHandle); + writeSecuredResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteSecured caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeSecuredResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeSecuredResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteSecured exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeSecuredResponse; + } + + public virtual WriteConfirmedResponse WriteConfirmed(WriteConfirmedRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteConfirmed entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteConfirmedResponse writeConfirmedResponse = new WriteConfirmedResponse(); + writeConfirmedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + writeConfirmedResponse.Result = connectionImplementation.WriteConfirmed(out var ValueReceived, out var WriteToken, id, request.Item, request.Value, request.User, request.Supervisor); + writeConfirmedResponse.ValueReceived = ValueReceived; + writeConfirmedResponse.WriteToken = WriteToken; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteConfirmed caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeConfirmedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeConfirmedResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteConfirmed exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeConfirmedResponse; + } + + public virtual ConfirmWriteResponse ConfirmWrite(ConfirmWriteRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ConfirmWrite entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ConfirmWriteResponse confirmWriteResponse = new ConfirmWriteResponse(); + confirmWriteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + confirmWriteResponse.Result = connectionImplementation.ConfirmWrite(id, request.Item, request.WriteToken, request.Value, request.User, request.Supervisor, request.WriteHandle); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ConfirmWrite caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + confirmWriteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + confirmWriteResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ConfirmWrite exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return confirmWriteResponse; + } + + public virtual PublishWriteCompleteResponse PublishWriteComplete(PublishWriteCompleteRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "PublishWriteComplete entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + PublishWriteCompleteResponse publishWriteCompleteResponse = new PublishWriteCompleteResponse(); + publishWriteCompleteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + publishWriteCompleteResponse.Result = connectionImplementation.PublishWriteComplete(out var CompleteWrites, id); + publishWriteCompleteResponse.CompleteWrites = CompleteWrites; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "PublishWriteComplete caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + publishWriteCompleteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + publishWriteCompleteResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "PublishWriteComplete exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return publishWriteCompleteResponse; + } + + public virtual CreateSubscriptionResponse CreateSubscription(CreateSubscriptionRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "CreateSubscription entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + CreateSubscriptionResponse createSubscriptionResponse = new CreateSubscriptionResponse(); + createSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "CreateSubscription found authenticator for Connection Id {0}", request.ConnectionValidator.ConnectionId.ToString()); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "CreateSubscription validated request, passing to service"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + createSubscriptionResponse.Result = connectionImplementation.CreateSubscription(out var SubscriptionId, id, request.MaxQueueSize, request.SampleInterval); + createSubscriptionResponse.SubscriptionId = SubscriptionId; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "CreateSubscription caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + createSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + createSubscriptionResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "CreateSubscription exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return createSubscriptionResponse; + } + + public virtual SetSubscriptionStateResponse SetSubscriptionState(SetSubscriptionStateRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "SetSubscriptionState entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SetSubscriptionStateResponse setSubscriptionStateResponse = new SetSubscriptionStateResponse(); + setSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + setSubscriptionStateResponse.Result = connectionImplementation.SetSubscriptionState(id, request.SubscriptionId, request.NewStateProperty, request.StateToChange); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "SetSubscriptionState caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + setSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + setSubscriptionStateResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "SetSubscriptionState exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return setSubscriptionStateResponse; + } + + public virtual GetSubscriptionStateResponse GetSubscriptionState(GetSubscriptionStateRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetSubscriptionState entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + GetSubscriptionStateResponse getSubscriptionStateResponse = new GetSubscriptionStateResponse(); + getSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + getSubscriptionStateResponse.Result = connectionImplementation.GetSubscriptionState(out var State, id, request.SubscriptionId, request.StateToGet); + getSubscriptionStateResponse.StateProperty = State; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetSubscriptionState caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + getSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + getSubscriptionStateResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetSubscriptionState exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return getSubscriptionStateResponse; + } + + public virtual DeleteSubscriptionResponse DeleteSubscription(DeleteSubscriptionRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteSubscription entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + DeleteSubscriptionResponse deleteSubscriptionResponse = new DeleteSubscriptionResponse(); + deleteSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + deleteSubscriptionResponse.Result = connectionImplementation.DeleteSubscription(id, request.SubscriptionId); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "DeleteSubscription caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + deleteSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + deleteSubscriptionResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteSubscription exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return deleteSubscriptionResponse; + } + + public virtual AddMonitoredItemsResponse AddMonitoredItems(AddMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "AddMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + AddMonitoredItemsResponse addMonitoredItemsResponse = new AddMonitoredItemsResponse(); + addMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + addMonitoredItemsResponse.Result = connectionImplementation.AddMonitoredItems(out var Status, out var ItemCapabilities, id, request.SubscriptionId, request.Items, (byte)(request.RequireId ? 1 : 0)); + addMonitoredItemsResponse.Status = Status; + addMonitoredItemsResponse.ItemCapabilities = ItemCapabilities; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "AddMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + addMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + addMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "AddMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return addMonitoredItemsResponse; + } + + public virtual DeleteMonitoredItemsResponse DeleteMonitoredItems(DeleteMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + DeleteMonitoredItemsResponse deleteMonitoredItemsResponse = new DeleteMonitoredItemsResponse(); + deleteMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + deleteMonitoredItemsResponse.Result = connectionImplementation.DeleteMonitoredItems(out var Status, id, request.SubscriptionId, request.Items); + deleteMonitoredItemsResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "DeleteMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + deleteMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + deleteMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return deleteMonitoredItemsResponse; + } + + public virtual GetMonitoredItemsResponse GetMonitoredItems(GetMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + GetMonitoredItemsResponse getMonitoredItemsResponse = new GetMonitoredItemsResponse(); + getMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + getMonitoredItemsResponse.Result = connectionImplementation.GetMonitoredItems(out var Items, id, request.SubscriptionId); + getMonitoredItemsResponse.Items = Items; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + getMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + getMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return getMonitoredItemsResponse; + } + + public virtual PublishResponse Publish(PublishRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Publish entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + PublishResponse publishResponse = new PublishResponse(); + publishResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Publish validated request"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + publishResponse.Result = connectionImplementation.Publish(out var Status, out var Values, id, request.SubscriptionId); + publishResponse.Status = Status; + publishResponse.Values = Values; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Publish found implementation, called user code with error {0}, {1} Statuses, {2} Values", publishResponse.Result.ErrorCode, (Status != null) ? Status.Length : 0, (Values != null) ? Values.Length : 0); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Publish caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + publishResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + publishResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Publish could not find implementation for ConnectionId {0}", request.ConnectionValidator.ConnectionId); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Publish did not validate request for ConnectionId {0}", request.ConnectionValidator.ConnectionId); + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Publish exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return publishResponse; + } + + public virtual RegisterItemsResponse RegisterItems(RegisterItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "RegisterItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + RegisterItemsResponse registerItemsResponse = new RegisterItemsResponse(); + registerItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems found authenticator from connection Id"); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems authenticator validated request message"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems calling implementation"); + registerItemsResponse.Result = connectionImplementation.RegisterItems(out var Status, out var ItemCapabilities, id, request.Items, (byte)(request.RequireId ? 1 : 0), (byte)(request.RegisterOnly ? 1 : 0)); + registerItemsResponse.Status = Status; + registerItemsResponse.ItemCapabilities = ItemCapabilities; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "RegisterItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + registerItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + registerItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "RegisterItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return registerItemsResponse; + } + + public virtual UnregisterItemsResponse UnregisterItems(UnregisterItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "UnregisterItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + UnregisterItemsResponse unregisterItemsResponse = new UnregisterItemsResponse(); + unregisterItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IData connectionImplementation = value.ConnectionImplementation; + try + { + unregisterItemsResponse.Result = connectionImplementation.UnregisterItems(out var Status, id, request.Items); + unregisterItemsResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "UnregisterItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + unregisterItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + unregisterItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "UnregisterItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return unregisterItemsResponse; + } + + public bool ForceDisconnect() + { + return true; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBSerializer.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBSerializer.cs new file mode 100644 index 0000000..a2907fd --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBSerializer.cs @@ -0,0 +1,82 @@ +using System; + +namespace ArchestrAServices.ASBContract; + +public static class ASBSerializer +{ + public static ASBStatus ASBStatusFromArray(ASBStatusElement[] status) + { + ASBStatus result = new ASBStatus + { + Count = 0 + }; + if (status == null) + { + return result; + } + ushort num = 0; + ASBStatusElement[] array = status; + for (int i = 0; i < array.Length; i++) + { + num = ((array[i].statusValue != 0) ? ((ushort)(num + 3)) : ((ushort)(num + 1))); + } + if (num > 255) + { + throw new IndexOutOfRangeException("Too many ASBStatusElements in ASBStatusFromArray"); + } + byte[] array2 = new byte[num]; + num = 0; + array = status; + for (int i = 0; i < array.Length; i++) + { + ASBStatusElement aSBStatusElement = array[i]; + if (aSBStatusElement.statusValue == 0) + { + array2[num++] = (byte)(((byte)aSBStatusElement.statusType & 0x7F) | 0x80); + continue; + } + array2[num++] = (byte)((byte)aSBStatusElement.statusType & 0x7F); + byte[] array3 = new byte[2]; + array3 = BitConverter.GetBytes(aSBStatusElement.statusValue); + array2[num++] = array3[0]; + array2[num++] = array3[1]; + } + result.Count = (sbyte)num; + result.Payload = array2; + return result; + } + + public static ASBStatusElement[] ASBStatusToArray(ASBStatus status) + { + if (status.Payload == null) + { + return new ASBStatusElement[0]; + } + byte[] payload = status.Payload; + ushort num = 0; + ushort num2 = 0; + while (num2 < status.Count) + { + num2 = (((payload[num2] & 0x80) == 0) ? ((ushort)(num2 + 3)) : ((ushort)(num2 + 1))); + num++; + } + ASBStatusElement[] array = new ASBStatusElement[num]; + num2 = 0; + for (ushort num3 = 0; num3 < num; num3++) + { + if ((payload[num2] & 0x80) != 0) + { + array[num3].statusType = (ASBStatusType)(payload[num2] & 0x7F); + array[num3].statusValue = 0; + num2++; + } + else + { + array[num3].statusType = (ASBStatusType)payload[num2++]; + array[num3].statusValue = BitConverter.ToUInt16(payload, num2); + num2 += 2; + } + } + return array; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatus.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatus.cs new file mode 100644 index 0000000..f43c9ed --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatus.cs @@ -0,0 +1,165 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct ASBStatus : IASBCustomSerializableType +{ + private sbyte countField; + + private byte[] payloadField; + + public sbyte Count + { + get + { + return countField; + } + set + { + countField = value; + } + } + + [XmlElement(DataType = "base64Binary")] + public byte[] Payload + { + get + { + return payloadField; + } + set + { + payloadField = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer == null) + { + return; + } + try + { + writer.Write(countField); + if (payloadField != null) + { + writer.Write((uint)payloadField.Length); + writer.Write(payloadField); + } + else + { + writer.Write(0u); + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (reader == null) + { + return; + } + try + { + countField = reader.ReadSByte(); + int num = reader.ReadInt32(); + if (num > 0) + { + payloadField = reader.ReadBytes(num); + } + else + { + payloadField = null; + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + ASBStatus[] array = new ASBStatus[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is ASBStatus[] array) + { + bw.Write(array.Length); + ASBStatus[] array2 = array; + foreach (ASBStatus aSBStatus in array2) + { + aSBStatus.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref ASBStatus result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.countField = reader.ReadSByte(); + int num = reader.ReadInt32(); + if (num > 0) + { + result.payloadField = reader.ReadBytes(num); + } + else + { + result.payloadField = null; + } + } + } + + public ASBStatus(ArchestrAServices.Contract.ASBStatus oldStatus) + { + countField = (sbyte)oldStatus.Count; + payloadField = oldStatus.Payload; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusConverter.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusConverter.cs new file mode 100644 index 0000000..1fc4e1e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusConverter.cs @@ -0,0 +1,15 @@ +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +public static class ASBStatusConverter +{ + public static ArchestrAServices.Contract.ASBStatus ASBStatusBacker(ASBStatus value) + { + return new ArchestrAServices.Contract.ASBStatus + { + Count = (byte)value.Count, + Payload = value.Payload + }; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusElement.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusElement.cs new file mode 100644 index 0000000..c749358 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusElement.cs @@ -0,0 +1,60 @@ +using System; + +namespace ArchestrAServices.ASBContract; + +public struct ASBStatusElement +{ + public ASBStatusType statusType; + + public ushort statusValue; + + public ASBStatus Status + { + get + { + byte b = 0; + byte[] array = null; + if (statusValue == 0) + { + b = 1; + array = new byte[b]; + array[0] = (byte)(((byte)statusType & 0x7F) | 0x80); + } + else + { + b = 3; + array = new byte[b]; + array[0] = (byte)((byte)statusType & 0x7F); + byte[] array2 = new byte[2]; + array2 = BitConverter.GetBytes(statusValue); + array[1] = array2[0]; + array[2] = array2[1]; + } + return new ASBStatus + { + Count = (sbyte)b, + Payload = array + }; + } + } + + public ASBStatusElement(ASBStatus singleStatus) + { + if (singleStatus.Payload == null || singleStatus.Payload.Length < 1) + { + throw new IndexOutOfRangeException("ASBStatus payload contained no data in ASBStatusElement constructor"); + } + if ((singleStatus.Payload[0] & 0x80) != 0) + { + statusType = (ASBStatusType)(singleStatus.Payload[0] & 0x7F); + statusValue = 0; + return; + } + if (singleStatus.Payload.Length < 3) + { + throw new IndexOutOfRangeException("ASBStatus payload contained insufficient data in ASBStatusElement constructor"); + } + statusType = (ASBStatusType)singleStatus.Payload[0]; + statusValue = BitConverter.ToUInt16(singleStatus.Payload, 1); + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusType.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusType.cs new file mode 100644 index 0000000..425e157 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ASBStatusType.cs @@ -0,0 +1,15 @@ +namespace ArchestrAServices.ASBContract; + +public enum ASBStatusType : ushort +{ + OPCDAStatus = 1, + OPCUAStatus = 2, + OPCUAVendorStatus = 3, + SCADAStatus = 4, + MXStatusCategory = 5, + MxStatusDetail = 6, + MxQuality = 7, + Reserved1Status = 125, + Reserved2Status = 126, + Reserved3Status = 127 +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/AddMonitoredItemsRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/AddMonitoredItemsRequest.cs new file mode 100644 index 0000000..1ec39b6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/AddMonitoredItemsRequest.cs @@ -0,0 +1,35 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "AddMonitoredItemsRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class AddMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Items")] + public MonitoredItem[] Items; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public bool RequireId; + + public AddMonitoredItemsRequest() + { + } + + public AddMonitoredItemsRequest(long SubscriptionId, MonitoredItem[] Items, bool RequireId) + { + this.SubscriptionId = SubscriptionId; + this.Items = Items; + this.RequireId = RequireId; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/AddMonitoredItemsResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/AddMonitoredItemsResponse.cs new file mode 100644 index 0000000..1f3fab1 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/AddMonitoredItemsResponse.cs @@ -0,0 +1,32 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "AddMonitoredItemsResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class AddMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("ItemCapabilities")] + public ItemRegistration[] ItemCapabilities; + + public AddMonitoredItemsResponse() + { + } + + public AddMonitoredItemsResponse(ItemStatus[] Status, ItemRegistration[] ItemCapabilities) + { + this.Status = Status; + this.ItemCapabilities = ItemCapabilities; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ConfirmWriteRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ConfirmWriteRequest.cs new file mode 100644 index 0000000..40fc573 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ConfirmWriteRequest.cs @@ -0,0 +1,45 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ConfirmWriteRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class ConfirmWriteRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public ItemIdentity Item; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + public long WriteToken; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public WriteValue Value; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 3)] + public UserToken User; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 4)] + public UserToken Supervisor; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 5)] + public uint WriteHandle; + + public ConfirmWriteRequest() + { + } + + public ConfirmWriteRequest(ItemIdentity Item, long WriteToken, WriteValue Value, UserToken User, UserToken Supervisor, uint WriteHandle) + { + this.Item = Item; + this.WriteToken = WriteToken; + this.Value = Value; + this.User = User; + this.Supervisor = Supervisor; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ConfirmWriteResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ConfirmWriteResponse.cs new file mode 100644 index 0000000..0908eb5 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ConfirmWriteResponse.cs @@ -0,0 +1,14 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ConfirmWriteResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class ConfirmWriteResponse : ConnectedResponse +{ +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CreateSubscriptionRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CreateSubscriptionRequest.cs new file mode 100644 index 0000000..0e4b7e7 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CreateSubscriptionRequest.cs @@ -0,0 +1,29 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "CreateSubscriptionRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class CreateSubscriptionRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long MaxQueueSize; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + public ulong SampleInterval; + + public CreateSubscriptionRequest() + { + } + + public CreateSubscriptionRequest(long MaxQueueSize, ulong SampleInterval) + { + this.MaxQueueSize = MaxQueueSize; + this.SampleInterval = SampleInterval; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CreateSubscriptionResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CreateSubscriptionResponse.cs new file mode 100644 index 0000000..bbc731b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CreateSubscriptionResponse.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "CreateSubscriptionResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class CreateSubscriptionResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + public CreateSubscriptionResponse() + { + } + + public CreateSubscriptionResponse(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CustomEnum.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CustomEnum.cs new file mode 100644 index 0000000..36451d9 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/CustomEnum.cs @@ -0,0 +1,8 @@ +namespace ArchestrAServices.ASBContract; + +public struct CustomEnum +{ + public short ordinal; + + public string OrdinalValue; +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DataQualityType.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DataQualityType.cs new file mode 100644 index 0000000..53f3cb5 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DataQualityType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.ASBContract; + +public enum DataQualityType : ushort +{ + Good = 0, + Uncertain = 16, + Bad = 1, + Other = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteMonitoredItemsRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteMonitoredItemsRequest.cs new file mode 100644 index 0000000..c7b9ddc --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteMonitoredItemsRequest.cs @@ -0,0 +1,31 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteMonitoredItemsRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class DeleteMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Items")] + public MonitoredItem[] Items; + + public DeleteMonitoredItemsRequest() + { + } + + public DeleteMonitoredItemsRequest(long SubscriptionId, MonitoredItem[] Items) + { + this.SubscriptionId = SubscriptionId; + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteMonitoredItemsResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteMonitoredItemsResponse.cs new file mode 100644 index 0000000..99f8909 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteMonitoredItemsResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteMonitoredItemsResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class DeleteMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public DeleteMonitoredItemsResponse() + { + } + + public DeleteMonitoredItemsResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteSubscriptionRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteSubscriptionRequest.cs new file mode 100644 index 0000000..5f90fdd --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteSubscriptionRequest.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteSubscriptionRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class DeleteSubscriptionRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + public DeleteSubscriptionRequest() + { + } + + public DeleteSubscriptionRequest(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteSubscriptionResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteSubscriptionResponse.cs new file mode 100644 index 0000000..b7667b4 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/DeleteSubscriptionResponse.cs @@ -0,0 +1,14 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteSubscriptionResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class DeleteSubscriptionResponse : ConnectedResponse +{ +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetMonitoredItemsRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetMonitoredItemsRequest.cs new file mode 100644 index 0000000..2a363ad --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetMonitoredItemsRequest.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetMonitoredItemsRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class GetMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + public GetMonitoredItemsRequest() + { + } + + public GetMonitoredItemsRequest(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetMonitoredItemsResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetMonitoredItemsResponse.cs new file mode 100644 index 0000000..c67f6fe --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetMonitoredItemsResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetMonitoredItemsResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class GetMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items")] + public MonitoredItem[] Items; + + public GetMonitoredItemsResponse() + { + } + + public GetMonitoredItemsResponse(MonitoredItem[] Items) + { + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetSubscriptionStateRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetSubscriptionStateRequest.cs new file mode 100644 index 0000000..5150dae --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetSubscriptionStateRequest.cs @@ -0,0 +1,29 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetSubscriptionStateRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class GetSubscriptionStateRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + public ushort StateToGet; + + public GetSubscriptionStateRequest() + { + } + + public GetSubscriptionStateRequest(long SubscriptionId, ushort StateToGet) + { + this.SubscriptionId = SubscriptionId; + this.StateToGet = StateToGet; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetSubscriptionStateResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetSubscriptionStateResponse.cs new file mode 100644 index 0000000..7e860b7 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/GetSubscriptionStateResponse.cs @@ -0,0 +1,47 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBIDataContract; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetSubscriptionStateResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class GetSubscriptionStateResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + private Variant State; + + public ArchestrAServices.ASBIDataContract.Variant StateProperty + { + get + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = State.Type, + Length = State.Length, + Payload = State.Payload + }; + } + set + { + State.Type = value.Type; + State.Length = value.Length; + State.Payload = value.Payload; + } + } + + public GetSubscriptionStateResponse() + { + } + + public GetSubscriptionStateResponse(ArchestrAServices.ASBIDataContract.Variant State) + { + this.State.Type = State.Type; + this.State.Length = State.Length; + this.State.Payload = State.Payload; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IASBIData.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IASBIData.cs new file mode 100644 index 0000000..f8dfd37 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IASBIData.cs @@ -0,0 +1,63 @@ +using System.CodeDom.Compiler; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[ServiceContract(Namespace = "http://ArchestrAServices.Contract", ConfigurationName = "IASBIData")] +public interface IASBIData : IAuthenticateASB +{ + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:readIn", ReplyAction = "*")] + ReadResponse Read(ReadRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:WriteBasicRequest", ReplyAction = "*")] + WriteResponse Write(WriteBasicRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:writeUserIn", ReplyAction = "*")] + WriteUserResponse WriteUser(WriteUserRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:writeVerifiedIn", ReplyAction = "*")] + WriteVerifiedResponse WriteVerified(WriteVerifiedRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:writeSecuredIn", ReplyAction = "*")] + WriteSecuredResponse WriteSecured(WriteSecuredRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:writeConfirmedIn", ReplyAction = "*")] + WriteConfirmedResponse WriteConfirmed(WriteConfirmedRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:confirmWriteIn", ReplyAction = "*")] + ConfirmWriteResponse ConfirmWrite(ConfirmWriteRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:publishWriteCompleteIn", ReplyAction = "*")] + PublishWriteCompleteResponse PublishWriteComplete(PublishWriteCompleteRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:createSubscriptionIn", ReplyAction = "*")] + CreateSubscriptionResponse CreateSubscription(CreateSubscriptionRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:setSubscriptionStateIn", ReplyAction = "*")] + SetSubscriptionStateResponse SetSubscriptionState(SetSubscriptionStateRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:getSubscriptionStateIn", ReplyAction = "*")] + GetSubscriptionStateResponse GetSubscriptionState(GetSubscriptionStateRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:deleteSubscriptionIn", ReplyAction = "*")] + DeleteSubscriptionResponse DeleteSubscription(DeleteSubscriptionRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:addMonitoredItemsIn", ReplyAction = "*")] + AddMonitoredItemsResponse AddMonitoredItems(AddMonitoredItemsRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:deleteMonitoredItemsIn", ReplyAction = "*")] + DeleteMonitoredItemsResponse DeleteMonitoredItems(DeleteMonitoredItemsRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:getMonitoredItemsIn", ReplyAction = "*")] + GetMonitoredItemsResponse GetMonitoredItems(GetMonitoredItemsRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:publishIn", ReplyAction = "*")] + PublishResponse Publish(PublishRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:registerItemsIn", ReplyAction = "*")] + RegisterItemsResponse RegisterItems(RegisterItemsRequest request); + + [OperationContract(Action = "http://asb.contracts.idata.messages/20111111:unregisterItemsIn", ReplyAction = "*")] + UnregisterItemsResponse UnregisterItems(UnregisterItemsRequest request); +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IASBIDataChannel.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IASBIDataChannel.cs new file mode 100644 index 0000000..8e5d06d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IASBIDataChannel.cs @@ -0,0 +1,11 @@ +using System; +using System.CodeDom.Compiler; +using System.ServiceModel; +using System.ServiceModel.Channels; + +namespace ArchestrAServices.ASBContract; + +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +public interface IASBIDataChannel : IASBIData, IAuthenticateASB, IClientChannel, IContextChannel, IChannel, ICommunicationObject, IExtensibleObject, IDisposable +{ +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IData.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IData.cs new file mode 100644 index 0000000..052381b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IData.cs @@ -0,0 +1,48 @@ +using ArchestrAServices.ASBIDataContract; + +namespace ArchestrAServices.ASBContract; + +public interface IData +{ + ArchestrAResult KeepAlive(ConnectionId Id); + + void OnConnect(ConnectionId ConnectionId, ulong Timeout); + + ArchestrAResult Read(out ItemStatus[] Status, out RuntimeValue[] Values, ConnectionId Id, ItemIdentity[] Items); + + ArchestrAResult Write(out ItemStatus[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, uint WriteHandle); + + ArchestrAResult WriteUser(out ItemStatus[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle); + + ArchestrAResult WriteVerified(out ItemStatus[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, UserToken User, UserToken Supervisor, uint WriteHandle); + + ArchestrAResult WriteSecured(out ItemStatus[] Status, ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle); + + ArchestrAResult WriteConfirmed(out WriteValue ValueReceived, out long WriteToken, ConnectionId Id, ItemIdentity Item, WriteValue Value, UserToken User, UserToken Supervisor); + + ArchestrAResult ConfirmWrite(ConnectionId Id, ItemIdentity Item, long WriteToken, WriteValue Value, UserToken User, UserToken Supervisor, uint WriteHandle); + + ArchestrAResult PublishWriteComplete(out ItemWriteComplete[] CompleteWrites, ConnectionId Id); + + ArchestrAResult CreateSubscription(out long SubscriptionId, ConnectionId Id, long MaxQueueSize, ulong SampleInterval); + + ArchestrAResult SetSubscriptionState(ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataContract.Variant NewState, ushort StateToChange); + + ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.Variant State, ConnectionId Id, long SubscriptionId, ushort StateToGet); + + ArchestrAResult DeleteSubscription(ConnectionId Id, long SubscriptionId); + + ArchestrAResult AddMonitoredItems(out ItemStatus[] Status, out ItemRegistration[] ItemCapabilities, ConnectionId Id, long SubscriptionId, MonitoredItem[] Items, byte RequireId); + + ArchestrAResult DeleteMonitoredItems(out ItemStatus[] Status, ConnectionId Id, long SubscriptionId, MonitoredItem[] Items); + + ArchestrAResult GetMonitoredItems(out MonitoredItem[] Items, ConnectionId Id, long SubscriptionId); + + ArchestrAResult Publish(out ItemStatus[] Status, out MonitoredItemValue[] Values, ConnectionId Id, long SubscriptionId); + + ArchestrAResult RegisterItems(out ItemStatus[] Status, out ItemRegistration[] ItemCapabilities, ConnectionId Id, ItemIdentity[] Items, byte RequireId, byte RegisterOnly); + + ArchestrAResult UnregisterItems(out ItemStatus[] Status, ConnectionId Id, ItemIdentity[] Items); + + void OnDisconnect(ConnectionId Id); +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IDataASBEnumFactory.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IDataASBEnumFactory.cs new file mode 100644 index 0000000..3ab7c83 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/IDataASBEnumFactory.cs @@ -0,0 +1,142 @@ +using System; +using ArchestrAServices.ASBIDataContract; + +namespace ArchestrAServices.ASBContract; + +public static class IDataASBEnumFactory +{ + public static DataType IntToDataType(ushort iValue) + { + return ASBEnumFactory.IntToDataType(iValue); + } + + public static ushort DataTypeToInt(DataType eValue) + { + return ASBEnumFactory.DataTypeToInt(eValue); + } + + public static DataQualityType IntToDataQualityType(ushort iValue) + { + try + { + return (DataQualityType)iValue; + } + catch (Exception) + { + return DataQualityType.Uncertain; + } + } + + public static ushort DataQualityTypeToInt(DataQualityType eValue) + { + return (ushort)eValue; + } + + public static ItemIdentityType IntToItemIdentityType(ushort iValue) + { + try + { + return (ItemIdentityType)iValue; + } + catch (Exception) + { + return ItemIdentityType.Id; + } + } + + public static ushort ItemIdentityTypeToInt(ItemIdentityType eValue) + { + return (ushort)eValue; + } + + public static ItemReferenceType IntToItemReferenceType(ushort iValue) + { + try + { + return (ItemReferenceType)iValue; + } + catch (Exception) + { + return ItemReferenceType.None; + } + } + + public static ushort ItemReferenceTypeToInt(ItemReferenceType eValue) + { + return (ushort)eValue; + } + + public static SubscriptionStateType IntToSubscriptionStateType(ushort iValue) + { + try + { + return (SubscriptionStateType)iValue; + } + catch (Exception) + { + return SubscriptionStateType.SubsUnknown; + } + } + + public static ushort SubscriptionStateTypeToInt(SubscriptionStateType eValue) + { + return (ushort)eValue; + } + + public static WriteCapabilityType IntToWriteCapabilityType(ushort iValue) + { + try + { + return (WriteCapabilityType)iValue; + } + catch (Exception) + { + return WriteCapabilityType.WriteUnknown; + } + } + + public static ushort WriteCapabilityTypeToInt(WriteCapabilityType eValue) + { + return (ushort)eValue; + } + + public static OpcQualityMask IntToOpcQualityMask(ushort iValue) + { + try + { + return (OpcQualityMask)iValue; + } + catch (Exception) + { + return OpcQualityMask.MAGELLAN_QUALITY_INITIALIZING; + } + } + + public static ushort OpcQualityMaskToInt(OpcQualityMask eValue) + { + return (ushort)eValue; + } + + public static MonitoredItem MakeDeleteMonitoredItem(ItemIdentity Item) + { + return new MonitoredItem + { + Item = Item, + SampleInterval = 0uL, + Active = false, + TimeDeadband = 0uL, + ValueDeadband = new ArchestrAServices.ASBIDataContract.Variant + { + Type = DataTypeToInt(DataType.TypeUnknown), + Length = 0, + Payload = null + }, + UserData = new ArchestrAServices.ASBIDataContract.Variant + { + Type = DataTypeToInt(DataType.TypeUnknown), + Length = 0, + Payload = null + } + }; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemIdentity.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemIdentity.cs new file mode 100644 index 0000000..b26376d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemIdentity.cs @@ -0,0 +1,261 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Text; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct ItemIdentity : IASBCustomSerializableType +{ + private ushort typeField; + + private ushort referenceTypeField; + + private string nameField; + + private string contextNameField; + + private ulong idField; + + private bool idFieldSpecified; + + public ushort Type + { + get + { + return typeField; + } + set + { + typeField = value; + } + } + + public ushort ReferenceType + { + get + { + return referenceTypeField; + } + set + { + referenceTypeField = value; + } + } + + [XmlElement(IsNullable = true)] + public string Name + { + get + { + return nameField; + } + set + { + nameField = value; + } + } + + [XmlElement(IsNullable = true)] + public string ContextName + { + get + { + return contextNameField; + } + set + { + contextNameField = value; + } + } + + public ulong Id + { + get + { + return idField; + } + set + { + idField = value; + IdSpecified = true; + } + } + + [XmlIgnore] + public bool IdSpecified + { + get + { + return idFieldSpecified; + } + set + { + idFieldSpecified = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer == null) + { + return; + } + try + { + writer.Write(typeField); + writer.Write(referenceTypeField); + if (!string.IsNullOrEmpty(nameField)) + { + byte[] bytes = Encoding.Unicode.GetBytes(nameField); + writer.Write((uint)bytes.Length); + writer.Write(bytes); + } + else + { + writer.Write(0u); + } + if (!string.IsNullOrEmpty(contextNameField)) + { + byte[] bytes2 = Encoding.Unicode.GetBytes(contextNameField); + writer.Write((uint)bytes2.Length); + writer.Write(bytes2); + } + else + { + writer.Write(0u); + } + writer.Write(Id); + writer.Write(IdSpecified); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (!MemoryStreamHelper.ValidateStream(reader)) + { + return; + } + try + { + typeField = reader.ReadUInt16(); + referenceTypeField = reader.ReadUInt16(); + int num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes = reader.ReadBytes(num); + nameField = Encoding.Unicode.GetString(bytes); + } + else + { + nameField = string.Empty; + } + num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes2 = reader.ReadBytes(num); + contextNameField = Encoding.Unicode.GetString(bytes2); + } + else + { + contextNameField = string.Empty; + } + idField = reader.ReadUInt64(); + idFieldSpecified = reader.ReadBoolean(); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + ItemIdentity[] array = new ItemIdentity[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is ItemIdentity[] array) + { + bw.Write(array.Length); + ItemIdentity[] array2 = array; + foreach (ItemIdentity itemIdentity in array2) + { + itemIdentity.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref ItemIdentity result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.typeField = reader.ReadUInt16(); + result.referenceTypeField = reader.ReadUInt16(); + int num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes = reader.ReadBytes(num); + result.nameField = Encoding.Unicode.GetString(bytes); + } + else + { + result.nameField = string.Empty; + } + num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes2 = reader.ReadBytes(num); + result.contextNameField = Encoding.Unicode.GetString(bytes2); + } + else + { + result.contextNameField = string.Empty; + } + result.idField = reader.ReadUInt64(); + result.idFieldSpecified = reader.ReadBoolean(); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemIdentityType.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemIdentityType.cs new file mode 100644 index 0000000..20de5b2 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemIdentityType.cs @@ -0,0 +1,15 @@ +using System; +using System.CodeDom.Compiler; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public enum ItemIdentityType +{ + Name, + Id, + NameAndId +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemReferenceType.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemReferenceType.cs new file mode 100644 index 0000000..b54fdf9 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemReferenceType.cs @@ -0,0 +1,16 @@ +using System; +using System.CodeDom.Compiler; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public enum ItemReferenceType +{ + None, + Absolute, + Hierarchical, + Relative +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemRegistration.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemRegistration.cs new file mode 100644 index 0000000..d49f470 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemRegistration.cs @@ -0,0 +1,73 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct ItemRegistration +{ + private ulong idField; + + private bool idFieldSpecified; + + private ushort writeCapabilityField; + + private bool writeCapabilityFieldSpecified; + + public ulong Id + { + get + { + return idField; + } + set + { + idField = value; + IdSpecified = true; + } + } + + [XmlIgnore] + public bool IdSpecified + { + get + { + return idFieldSpecified; + } + set + { + idFieldSpecified = value; + } + } + + public ushort WriteCapability + { + get + { + return writeCapabilityField; + } + set + { + writeCapabilityField = value; + WriteCapabilitySpecified = true; + } + } + + [XmlIgnore] + public bool WriteCapabilitySpecified + { + get + { + return writeCapabilityFieldSpecified; + } + set + { + writeCapabilityFieldSpecified = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemStatus.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemStatus.cs new file mode 100644 index 0000000..6450fd0 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemStatus.cs @@ -0,0 +1,151 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct ItemStatus : IASBCustomSerializableType +{ + private ItemIdentity itemField; + + private ushort errorCodeField; + + private bool errorCodeFieldSpecified; + + public ItemIdentity Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + public ushort ErrorCode + { + get + { + return errorCodeField; + } + set + { + errorCodeField = value; + ErrorCodeSpecified = true; + } + } + + [XmlIgnore] + public bool ErrorCodeSpecified + { + get + { + return errorCodeFieldSpecified; + } + set + { + errorCodeFieldSpecified = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer != null) + { + try + { + itemField.WriteToStream(writer); + writer.Write(errorCodeField); + writer.Write(errorCodeFieldSpecified); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + try + { + itemField.InitializeFromStream(reader); + errorCodeField = reader.ReadUInt16(); + errorCodeFieldSpecified = reader.ReadBoolean(); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + ItemStatus[] array = new ItemStatus[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is ItemStatus[] array) + { + bw.Write(array.Length); + ItemStatus[] array2 = array; + foreach (ItemStatus itemStatus in array2) + { + itemStatus.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref ItemStatus result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.itemField.InitializeFromStream(reader); + result.errorCodeField = reader.ReadUInt16(); + result.errorCodeFieldSpecified = reader.ReadBoolean(); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemWriteComplete.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemWriteComplete.cs new file mode 100644 index 0000000..faa6a4c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ItemWriteComplete.cs @@ -0,0 +1,58 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct ItemWriteComplete +{ + private ItemStatus[] statusField; + + private uint writeHandleField; + + private bool writeHandleFieldSpecified; + + [XmlElement("Status")] + public ItemStatus[] Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public uint WriteHandle + { + get + { + return writeHandleField; + } + set + { + writeHandleField = value; + WriteHandleSpecified = true; + } + } + + [XmlIgnore] + public bool WriteHandleSpecified + { + get + { + return writeHandleFieldSpecified; + } + set + { + writeHandleFieldSpecified = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MemoryStreamHelper.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MemoryStreamHelper.cs new file mode 100644 index 0000000..5789d1b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MemoryStreamHelper.cs @@ -0,0 +1,37 @@ +#define TRACE +using System.Diagnostics; +using System.IO; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBContract; + +public class MemoryStreamHelper +{ + public static bool ValidateStream(BinaryReader reader) + { + if (reader == null || reader.BaseStream == null || reader.BaseStream.Length <= 0) + { + return false; + } + return true; + } + + public static bool ValidateStream(BinaryReader reader, int arrayCnt) + { + bool result = false; + if (ValidateStream(reader)) + { + reader.BaseStream.Position = 0L; + int num = reader.ReadInt32(); + if (num != arrayCnt) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, $" MemoryStreamHelper: ValidateStream. Array count{arrayCnt}, doesn't match with the actual count {num}"); + } + else + { + result = true; + } + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MonitoredItem.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MonitoredItem.cs new file mode 100644 index 0000000..f60b237 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MonitoredItem.cs @@ -0,0 +1,144 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct MonitoredItem +{ + private ItemIdentity itemField; + + private ulong sampleIntervalField; + + private bool activeField; + + private bool activeFieldSpecified; + + private ulong timeDeadbandField; + + private bool timeDeadbandFieldSpecified; + + private Variant valueDeadbandField; + + private Variant userDataField; + + public ItemIdentity Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + public ulong SampleInterval + { + get + { + return sampleIntervalField; + } + set + { + sampleIntervalField = value; + } + } + + public bool Active + { + get + { + return activeField; + } + set + { + activeField = value; + ActiveSpecified = true; + } + } + + [XmlIgnore] + public bool ActiveSpecified + { + get + { + return activeFieldSpecified; + } + set + { + activeFieldSpecified = value; + } + } + + public ulong TimeDeadband + { + get + { + return timeDeadbandField; + } + set + { + timeDeadbandField = value; + TimeDeadbandSpecified = true; + } + } + + [XmlIgnore] + public bool TimeDeadbandSpecified + { + get + { + return timeDeadbandFieldSpecified; + } + set + { + timeDeadbandFieldSpecified = value; + } + } + + public ArchestrAServices.ASBIDataContract.Variant ValueDeadband + { + get + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = valueDeadbandField.Type, + Length = valueDeadbandField.Length, + Payload = valueDeadbandField.Payload + }; + } + set + { + valueDeadbandField.Type = value.Type; + valueDeadbandField.Length = value.Length; + valueDeadbandField.Payload = value.Payload; + } + } + + public ArchestrAServices.ASBIDataContract.Variant UserData + { + get + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = userDataField.Type, + Length = userDataField.Length, + Payload = userDataField.Payload + }; + } + set + { + userDataField.Type = value.Type; + userDataField.Length = value.Length; + userDataField.Payload = value.Payload; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MonitoredItemValue.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MonitoredItemValue.cs new file mode 100644 index 0000000..d85c167 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/MonitoredItemValue.cs @@ -0,0 +1,136 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct MonitoredItemValue : IASBCustomSerializableType +{ + private ItemIdentity itemField; + + private RuntimeValue valueField; + + private Variant userDataField; + + public ItemIdentity Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + public RuntimeValue Value + { + get + { + return valueField; + } + set + { + valueField = value; + } + } + + public ArchestrAServices.ASBIDataContract.Variant UserData + { + get + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = userDataField.Type, + Length = userDataField.Length, + Payload = userDataField.Payload + }; + } + set + { + userDataField.Type = value.Type; + userDataField.Length = value.Length; + userDataField.Payload = value.Payload; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer != null) + { + itemField.WriteToStream(writer); + valueField.WriteToStream(writer); + userDataField.WriteToStream(writer); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + itemField.InitializeFromStream(reader); + valueField.InitializeFromStream(reader); + userDataField.InitializeFromStream(reader); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + MonitoredItemValue[] array = new MonitoredItemValue[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is MonitoredItemValue[] array) + { + bw.Write(array.Length); + MonitoredItemValue[] array2 = array; + foreach (MonitoredItemValue monitoredItemValue in array2) + { + monitoredItemValue.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" MonitoredItemValue: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref MonitoredItemValue result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.itemField.InitializeFromStream(reader); + result.valueField.InitializeFromStream(reader); + result.userDataField.InitializeFromStream(reader); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/OpcQualityMask.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/OpcQualityMask.cs new file mode 100644 index 0000000..8c19215 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/OpcQualityMask.cs @@ -0,0 +1,28 @@ +namespace ArchestrAServices.ASBContract; + +public enum OpcQualityMask : ushort +{ + OPC_LIMIT_OK = 0, + OPC_QUALITY_BAD = 0, + OPC_LIMIT_LOW = 1, + OPC_LIMIT_HIGH = 2, + OPC_LIMIT_MASK = 3, + OPC_LIMIT_CONST = 3, + OPC_QUALITY_CONFIG_ERROR = 4, + OPC_QUALITY_NOT_CONNECTED = 8, + OPC_QUALITY_DEVICE_FAILURE = 12, + OPC_QUALITY_SENSOR_FAILURE = 16, + OPC_QUALITY_LAST_KNOWN = 20, + OPC_QUALITY_COMM_FAILURE = 24, + OPC_QUALITY_OUT_OF_SERVICE = 28, + MAGELLAN_QUALITY_INITIALIZING = 32, + OPC_QUALITY_UNCERTAIN = 64, + OPC_QUALITY_LAST_USABLE = 68, + OPC_QUALITY_SENSOR_CAL = 80, + OPC_QUALITY_EGU_EXCEEDED = 84, + OPC_QUALITY_SUB_NORMAL = 88, + OPC_QUALITY_GOOD = 192, + OPC_QUALITY_MASK = 192, + OPC_QUALITY_LOCAL_OVERRIDE = 216, + OPC_STATUS_MASK = 252 +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishRequest.cs new file mode 100644 index 0000000..4e9117c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishRequest.cs @@ -0,0 +1,25 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class PublishRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + public PublishRequest() + { + } + + public PublishRequest(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishResponse.cs new file mode 100644 index 0000000..68639d6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishResponse.cs @@ -0,0 +1,32 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class PublishResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Values")] + public MonitoredItemValue[] Values; + + public PublishResponse() + { + } + + public PublishResponse(ItemStatus[] Status, MonitoredItemValue[] Values) + { + this.Status = Status; + this.Values = Values; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishWriteCompleteRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishWriteCompleteRequest.cs new file mode 100644 index 0000000..ecaf64e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishWriteCompleteRequest.cs @@ -0,0 +1,14 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishWriteCompleteRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class PublishWriteCompleteRequest : ConnectedRequest +{ +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishWriteCompleteResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishWriteCompleteResponse.cs new file mode 100644 index 0000000..45a7074 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/PublishWriteCompleteResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishWriteCompleteResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class PublishWriteCompleteResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("CompleteWrites")] + public ItemWriteComplete[] CompleteWrites; + + public PublishWriteCompleteResponse() + { + } + + public PublishWriteCompleteResponse(ItemWriteComplete[] CompleteWrites) + { + this.CompleteWrites = CompleteWrites; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ReadRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ReadRequest.cs new file mode 100644 index 0000000..1d04366 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ReadRequest.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ReadRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class ReadRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + public ReadRequest() + { + } + + public ReadRequest(ItemIdentity[] Items) + { + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ReadResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ReadResponse.cs new file mode 100644 index 0000000..1088cab --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/ReadResponse.cs @@ -0,0 +1,32 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ReadResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class ReadResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Values")] + public RuntimeValue[] Values; + + public ReadResponse() + { + } + + public ReadResponse(ItemStatus[] Status, RuntimeValue[] Values) + { + this.Status = Status; + this.Values = Values; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RegisterItemsRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RegisterItemsRequest.cs new file mode 100644 index 0000000..9c1b588 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RegisterItemsRequest.cs @@ -0,0 +1,35 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "RegisterItemsRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class RegisterItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + public bool RequireId; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public bool RegisterOnly; + + public RegisterItemsRequest() + { + } + + public RegisterItemsRequest(ItemIdentity[] Items, bool RequireId, bool RegisterOnly) + { + this.Items = Items; + this.RequireId = RequireId; + this.RegisterOnly = RegisterOnly; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RegisterItemsResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RegisterItemsResponse.cs new file mode 100644 index 0000000..29caa46 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RegisterItemsResponse.cs @@ -0,0 +1,32 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "RegisterItemsResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class RegisterItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("ItemCapabilities")] + public ItemRegistration[] ItemCapabilities; + + public RegisterItemsResponse() + { + } + + public RegisterItemsResponse(ItemStatus[] Status, ItemRegistration[] ItemCapabilities) + { + this.Status = Status; + this.ItemCapabilities = ItemCapabilities; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RuntimeValue.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RuntimeValue.cs new file mode 100644 index 0000000..1cca69e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/RuntimeValue.cs @@ -0,0 +1,176 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct RuntimeValue : IASBCustomSerializableType +{ + private DateTime timestampField; + + private bool timestampFieldSpecified; + + private Variant valueField; + + private ASBStatus statusField; + + public DateTime Timestamp + { + get + { + return timestampField; + } + set + { + timestampField = value; + TimestampSpecified = true; + } + } + + [XmlIgnore] + public bool TimestampSpecified + { + get + { + return timestampFieldSpecified; + } + set + { + timestampFieldSpecified = value; + } + } + + public ArchestrAServices.ASBIDataContract.Variant Value + { + get + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = valueField.Type, + Length = valueField.Length, + Payload = valueField.Payload + }; + } + set + { + valueField.Type = value.Type; + valueField.Length = value.Length; + valueField.Payload = value.Payload; + } + } + + public ASBStatus Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer != null) + { + try + { + writer.Write(timestampField.ToBinary()); + writer.Write(timestampFieldSpecified); + valueField.WriteToStream(writer); + statusField.WriteToStream(writer); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + try + { + timestampField = DateTime.FromBinary(reader.ReadInt64()); + timestampFieldSpecified = reader.ReadBoolean(); + valueField.InitializeFromStream(reader); + statusField.InitializeFromStream(reader); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + RuntimeValue[] array = new RuntimeValue[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is RuntimeValue[] array) + { + bw.Write(array.Length); + RuntimeValue[] array2 = array; + foreach (RuntimeValue runtimeValue in array2) + { + runtimeValue.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref RuntimeValue result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.timestampField = DateTime.FromBinary(reader.ReadInt64()); + result.timestampFieldSpecified = reader.ReadBoolean(); + result.valueField.InitializeFromStream(reader); + result.statusField.InitializeFromStream(reader); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SetSubscriptionStateRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SetSubscriptionStateRequest.cs new file mode 100644 index 0000000..59fe6b5 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SetSubscriptionStateRequest.cs @@ -0,0 +1,55 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBIDataContract; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "SetSubscriptionStateRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class SetSubscriptionStateRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + private Variant NewState; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public ushort StateToChange; + + public ArchestrAServices.ASBIDataContract.Variant NewStateProperty + { + get + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = NewState.Type, + Length = NewState.Length, + Payload = NewState.Payload + }; + } + set + { + NewState.Type = value.Type; + NewState.Length = value.Length; + NewState.Payload = value.Payload; + } + } + + public SetSubscriptionStateRequest() + { + } + + public SetSubscriptionStateRequest(long SubscriptionId, ArchestrAServices.ASBIDataContract.Variant NewState, ushort StateToChange) + { + this.SubscriptionId = SubscriptionId; + this.NewState.Type = NewState.Type; + this.NewState.Length = NewState.Length; + this.NewState.Payload = NewState.Payload; + this.StateToChange = StateToChange; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SetSubscriptionStateResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SetSubscriptionStateResponse.cs new file mode 100644 index 0000000..6b9a8e2 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SetSubscriptionStateResponse.cs @@ -0,0 +1,14 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "SetSubscriptionStateResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class SetSubscriptionStateResponse : ConnectedResponse +{ +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SubscriptionStateType.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SubscriptionStateType.cs new file mode 100644 index 0000000..ef5237e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/SubscriptionStateType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.ASBContract; + +public enum SubscriptionStateType : ushort +{ + SubsEnableState = 1, + SubsSampleInterval = 2, + SubsMaxQueueSize = 3, + SubsUnknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UnregisterItemsRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UnregisterItemsRequest.cs new file mode 100644 index 0000000..0d3e5a3 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UnregisterItemsRequest.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "UnregisterItemsRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class UnregisterItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + public UnregisterItemsRequest() + { + } + + public UnregisterItemsRequest(ItemIdentity[] Items) + { + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UnregisterItemsResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UnregisterItemsResponse.cs new file mode 100644 index 0000000..fb727e6 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UnregisterItemsResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "UnregisterItemsResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class UnregisterItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public UnregisterItemsResponse() + { + } + + public UnregisterItemsResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UserToken.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UserToken.cs new file mode 100644 index 0000000..30af063 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/UserToken.cs @@ -0,0 +1,193 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct UserToken +{ + private ushort encryptionField; + + private bool encryptionFieldSpecified; + + private string hostNameField; + + private ushort idTypeField; + + private bool idTypeFieldSpecified; + + private string locationIDField; + + private string passwordField; + + private byte[] samlTokenField; + + private string userNameField; + + private ushort validityField; + + private bool validityFieldSpecified; + + private byte[] x509CertificateField; + + public ushort Encryption + { + get + { + return encryptionField; + } + set + { + encryptionField = value; + EncryptionSpecified = true; + } + } + + [XmlIgnore] + public bool EncryptionSpecified + { + get + { + return encryptionFieldSpecified; + } + set + { + encryptionFieldSpecified = value; + } + } + + [XmlElement(IsNullable = true)] + public string HostName + { + get + { + return hostNameField; + } + set + { + hostNameField = value; + } + } + + public ushort IdType + { + get + { + return idTypeField; + } + set + { + idTypeField = value; + IdTypeSpecified = true; + } + } + + [XmlIgnore] + public bool IdTypeSpecified + { + get + { + return idTypeFieldSpecified; + } + set + { + idTypeFieldSpecified = value; + } + } + + [XmlElement(IsNullable = true)] + public string LocationID + { + get + { + return locationIDField; + } + set + { + locationIDField = value; + } + } + + [XmlElement(IsNullable = true)] + public string Password + { + get + { + return passwordField; + } + set + { + passwordField = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] SamlToken + { + get + { + return samlTokenField; + } + set + { + samlTokenField = value; + } + } + + [XmlElement(IsNullable = true)] + public string UserName + { + get + { + return userNameField; + } + set + { + userNameField = value; + } + } + + public ushort Validity + { + get + { + return validityField; + } + set + { + validityField = value; + ValiditySpecified = true; + } + } + + [XmlIgnore] + public bool ValiditySpecified + { + get + { + return validityFieldSpecified; + } + set + { + validityFieldSpecified = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] X509Certificate + { + get + { + return x509CertificateField; + } + set + { + x509CertificateField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/Variant.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/Variant.cs new file mode 100644 index 0000000..21ca246 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/Variant.cs @@ -0,0 +1,176 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +internal struct Variant : IASBCustomSerializableType +{ + private ushort typeField; + + private int lengthField; + + private byte[] payloadField; + + public ushort Type + { + get + { + return typeField; + } + set + { + typeField = value; + } + } + + public int Length + { + get + { + return lengthField; + } + set + { + lengthField = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] Payload + { + get + { + return payloadField; + } + set + { + payloadField = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer == null) + { + return; + } + try + { + writer.Write(typeField); + writer.Write(lengthField); + if (payloadField != null) + { + writer.Write((uint)payloadField.Length); + writer.Write(payloadField); + } + else + { + writer.Write(0u); + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" Variant: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (!MemoryStreamHelper.ValidateStream(reader)) + { + return; + } + try + { + typeField = reader.ReadUInt16(); + lengthField = reader.ReadInt32(); + int num = reader.ReadInt32(); + if (num > 0) + { + payloadField = reader.ReadBytes(num); + } + else + { + payloadField = null; + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" Variant: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + Variant[] array = new Variant[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" InitializeFromArray: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is Variant[] array) + { + bw.Write(array.Length); + Variant[] array2 = array; + foreach (Variant variant in array2) + { + variant.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" Variant: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref Variant result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.typeField = reader.ReadUInt16(); + result.lengthField = reader.ReadInt32(); + int num = reader.ReadInt32(); + if (num > 0) + { + result.payloadField = reader.ReadBytes(num); + } + else + { + result.payloadField = null; + } + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/VariantConverter.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/VariantConverter.cs new file mode 100644 index 0000000..53fc51a --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/VariantConverter.cs @@ -0,0 +1,17 @@ +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +public static class VariantConverter +{ + public static ArchestrAServices.Contract.Variant VariantBacker(ArchestrAServices.ASBIDataContract.Variant value) + { + return new ArchestrAServices.Contract.Variant + { + Type = value.Type, + Length = value.Length, + Payload = value.Payload + }; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/VariantTester.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/VariantTester.cs new file mode 100644 index 0000000..e243e90 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/VariantTester.cs @@ -0,0 +1,111 @@ +using System.IO; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBContract; + +public struct VariantTester : IASBCustomSerializableType +{ + private Variant _testVariant = default(Variant); + + public ushort Type + { + get + { + return _testVariant.Type; + } + set + { + _testVariant.Type = value; + } + } + + public int Length + { + get + { + return _testVariant.Length; + } + set + { + _testVariant.Length = value; + } + } + + public byte[] Payload + { + get + { + return _testVariant.Payload; + } + set + { + _testVariant.Payload = value; + } + } + + public VariantTester(ArchestrAServices.ASBIDataContract.Variant Value) + { + _testVariant.Type = Value.Type; + _testVariant.Length = Value.Length; + _testVariant.Payload = Value.Payload; + } + + public ArchestrAServices.ASBIDataContract.Variant GetAsVariant() + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = _testVariant.Type, + Length = _testVariant.Length, + Payload = _testVariant.Payload + }; + } + + public void Initialize() + { + _testVariant = default(Variant); + } + + public void WriteToStream(BinaryWriter writer) + { + _testVariant.WriteToStream(writer); + } + + public void InitializeFromStream(BinaryReader reader) + { + _testVariant.InitializeFromStream(reader); + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + if (_testVariant.InitializeArrayFromStream(reader, arrayCnt) is Variant[] array) + { + ArchestrAServices.ASBIDataContract.Variant[] array2 = new ArchestrAServices.ASBIDataContract.Variant[array.Length]; + for (int i = 0; i < array.Length; i++) + { + array2[i] = default(ArchestrAServices.ASBIDataContract.Variant); + array2[i].Type = array[i].Type; + array2[i].Length = array[i].Length; + array2[i].Payload = array[i].Payload; + } + return array2; + } + return null; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph is ArchestrAServices.ASBIDataContract.Variant[] array) + { + Variant[] array2 = new Variant[array.Length]; + for (int i = 0; i < array.Length; i++) + { + array2[i] = default(Variant); + array2[i].Type = array[i].Type; + array2[i].Length = array[i].Length; + array2[i].Payload = array[i].Payload; + } + _testVariant.WriteArrayToStream(array2, ref bw); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteBasicRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteBasicRequest.cs new file mode 100644 index 0000000..148df8c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteBasicRequest.cs @@ -0,0 +1,36 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteBasicRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteBasicRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items", IsNullable = false)] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Values", IsNullable = false)] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public uint WriteHandle; + + public WriteBasicRequest() + { + } + + public WriteBasicRequest(ItemIdentity[] Items, WriteValue[] Values, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteCapabilityType.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteCapabilityType.cs new file mode 100644 index 0000000..5da6e3d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteCapabilityType.cs @@ -0,0 +1,10 @@ +namespace ArchestrAServices.ASBContract; + +public enum WriteCapabilityType : ushort +{ + WriteUnknown = 0, + WriteNonsecure = 1, + WriteUser = 2, + WriteConfirm = 4, + WriteVerify = 8 +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteConfirmedRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteConfirmedRequest.cs new file mode 100644 index 0000000..281ccd5 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteConfirmedRequest.cs @@ -0,0 +1,37 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteConfirmedRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteConfirmedRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public ItemIdentity Item; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + public WriteValue Value; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 3)] + public UserToken Supervisor; + + public WriteConfirmedRequest() + { + } + + public WriteConfirmedRequest(ItemIdentity Item, WriteValue Value, UserToken User, UserToken Supervisor) + { + this.Item = Item; + this.Value = Value; + this.User = User; + this.Supervisor = Supervisor; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteConfirmedResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteConfirmedResponse.cs new file mode 100644 index 0000000..d469779 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteConfirmedResponse.cs @@ -0,0 +1,29 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteConfirmedResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteConfirmedResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + public WriteValue ValueReceived; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + public long WriteToken; + + public WriteConfirmedResponse() + { + } + + public WriteConfirmedResponse(WriteValue ValueReceived, long WriteToken) + { + this.ValueReceived = ValueReceived; + this.WriteToken = WriteToken; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteResponse.cs new file mode 100644 index 0000000..a6b0f87 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteBasicResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status", IsNullable = false)] + public ItemStatus[] Status; + + public WriteResponse() + { + } + + public WriteResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteSecuredRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteSecuredRequest.cs new file mode 100644 index 0000000..cce89db --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteSecuredRequest.cs @@ -0,0 +1,40 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteSecuredRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteSecuredRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Values")] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 3)] + public uint WriteHandle; + + public WriteSecuredRequest() + { + } + + public WriteSecuredRequest(ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.User = User; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteSecuredResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteSecuredResponse.cs new file mode 100644 index 0000000..9103c42 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteSecuredResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteSecuredResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteSecuredResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public WriteSecuredResponse() + { + } + + public WriteSecuredResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteUserRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteUserRequest.cs new file mode 100644 index 0000000..11936ca --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteUserRequest.cs @@ -0,0 +1,40 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteUserRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteUserRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Values")] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 3)] + public uint WriteHandle; + + public WriteUserRequest() + { + } + + public WriteUserRequest(ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.User = User; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteUserResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteUserResponse.cs new file mode 100644 index 0000000..0803fa4 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteUserResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteUserResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteUserResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public WriteUserResponse() + { + } + + public WriteUserResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteValue.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteValue.cs new file mode 100644 index 0000000..e4dcb92 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteValue.cs @@ -0,0 +1,124 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract; + +namespace ArchestrAServices.ASBContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct WriteValue +{ + private bool hasQTField; + + private bool hasQTFieldSpecified; + + private Variant valueField; + + private ASBStatus statusField; + + private DateTime timestampField; + + private bool timestampFieldSpecified; + + private string commentField; + + public bool HasQT + { + get + { + return hasQTField; + } + set + { + hasQTField = value; + HasQTSpecified = true; + } + } + + [XmlIgnore] + public bool HasQTSpecified + { + get + { + return hasQTFieldSpecified; + } + set + { + hasQTFieldSpecified = value; + } + } + + public ArchestrAServices.ASBIDataContract.Variant Value + { + get + { + return new ArchestrAServices.ASBIDataContract.Variant + { + Type = valueField.Type, + Length = valueField.Length, + Payload = valueField.Payload + }; + } + set + { + valueField.Type = value.Type; + valueField.Length = value.Length; + valueField.Payload = value.Payload; + } + } + + public ASBStatus Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public DateTime Timestamp + { + get + { + return timestampField; + } + set + { + timestampField = value; + TimestampSpecified = true; + } + } + + [XmlIgnore] + public bool TimestampSpecified + { + get + { + return timestampFieldSpecified; + } + set + { + timestampFieldSpecified = value; + } + } + + [XmlElement(IsNullable = true)] + public string Comment + { + get + { + return commentField; + } + set + { + commentField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteVerifiedRequest.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteVerifiedRequest.cs new file mode 100644 index 0000000..63e95b1 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteVerifiedRequest.cs @@ -0,0 +1,44 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteVerifiedRequest", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteVerifiedRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 1)] + [XmlElement("Values")] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 3)] + public UserToken Supervisor; + + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 4)] + public uint WriteHandle; + + public WriteVerifiedRequest() + { + } + + public WriteVerifiedRequest(ItemIdentity[] Items, WriteValue[] Values, UserToken User, UserToken Supervisor, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.User = User; + this.Supervisor = Supervisor; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteVerifiedResponse.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteVerifiedResponse.cs new file mode 100644 index 0000000..e991d6e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBContract/WriteVerifiedResponse.cs @@ -0,0 +1,27 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBContract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteVerifiedResponse", WrapperNamespace = "http://asb.contracts.idata.messages/20111111", IsWrapped = true)] +public class WriteVerifiedResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.idata.messages/20111111", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public WriteVerifiedResponse() + { + } + + public WriteVerifiedResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/Variant.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/Variant.cs new file mode 100644 index 0000000..edc14d1 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/Variant.cs @@ -0,0 +1,78 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataContract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct Variant +{ + private ushort typeField; + + private int lengthField; + + private byte[] payloadField; + + public ushort Type + { + get + { + return typeField; + } + set + { + typeField = value; + } + } + + public int Length + { + get + { + return lengthField; + } + set + { + lengthField = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] Payload + { + get + { + return payloadField; + } + set + { + payloadField = value; + } + } + + public Variant(ref ArchestrAServices.Contract.Variant oldVariant) + { + lengthField = oldVariant.Length; + typeField = oldVariant.Type; + payloadField = oldVariant.Payload; + } + + public Variant(ArchestrAServices.Contract.Variant oldVariant) + { + lengthField = oldVariant.Length; + typeField = oldVariant.Type; + payloadField = oldVariant.Payload; + } + + public Variant(int Length, ushort Type, byte[] Payload) + { + lengthField = Length; + typeField = Type; + payloadField = Payload; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/VariantFactory.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/VariantFactory.cs new file mode 100644 index 0000000..849ad71 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/VariantFactory.cs @@ -0,0 +1,749 @@ +using System; +using System.CodeDom.Compiler; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataContract; + +public static class VariantFactory +{ + public static Variant MakeVariantValue(bool value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeBool), + Length = 1, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(sbyte value) + { + Variant result = new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeSByte), + Length = 1, + Payload = new byte[1] + }; + result.Payload[0] = (byte)value; + return result; + } + + public static Variant MakeVariantValue(byte value) + { + Variant result = new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeByte), + Length = 1, + Payload = new byte[1] + }; + result.Payload[0] = value; + return result; + } + + public static Variant MakeVariantValue(ushort value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16), + Length = 2, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(uint value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(ulong value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(short value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16), + Length = 2, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(int value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(long value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValueAsDuration(long value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDuration), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValueAsDurationArray(long[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + result = MakeVariantValue(value); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDurationArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDurationArray); + return result; + } + + public static Variant MakeVariantValue(float value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeFloat), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(double value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDouble), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(string value) + { + Variant result = default(Variant); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeString); + result.Payload = Encoding.Unicode.GetBytes(value); + result.Length = result.Payload.Count(); + return result; + } + + public static Variant MakeVariantValue(DateTime value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTime), + Length = 8, + Payload = BitConverter.GetBytes(value.ToFileTimeUtc()) + }; + } + + public static Variant MakeVariantValue(Guid value) + { + Variant result = MakeVariantValue(value.ToString()); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeGuid); + return result; + } + + public static Variant MakeVariantValue(long value, bool bStatus) + { + Variant result = new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeLocalizedText) + }; + MemoryStream memoryStream = null; + try + { + memoryStream = new MemoryStream(); + using (StreamWriter streamWriter = new StreamWriter(memoryStream)) + { + memoryStream = null; + streamWriter.Write(value); + streamWriter.Flush(); + } + result.Payload = memoryStream.ToArray(); + result.Length = result.Payload.Count(); + return result; + } + finally + { + memoryStream?.Dispose(); + } + } + + public static Variant MakeVariantValue(CustomEnum customEnum) + { + Variant result = default(Variant); + short ordinal = customEnum.ordinal; + string ordinalValue = customEnum.OrdinalValue; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeEnum); + List list = new List(); + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + result.Length = 6 + ordinalValue.Length; + result.Payload = list.ToArray(); + return result; + } + + public static Variant MakeVariantValue(int[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32Array); + return result; + } + + public static Variant MakeVariantValue(uint[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + return result; + } + + public static Variant MakeVariantValue(long[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64Array); + return result; + } + + public static Variant MakeVariantValue(ulong[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + return result; + } + + public static Variant MakeVariantValue(float[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeFloatArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeFloatArray); + return result; + } + + public static Variant MakeVariantValue(double[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + return result; + } + + public static Variant MakeVariantValue(short[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16Array); + return result; + } + + public static Variant MakeVariantValue(ushort[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + return result; + } + + public static Variant MakeVariantValue(byte[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + result.Length = value.Length; + result.Payload = value; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeByteArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeByteArray); + return result; + } + + public static Variant MakeVariantValue(sbyte[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeSByteArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeSByteArray); + return result; + } + + public static Variant MakeVariantValue(bool[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeBoolArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeBoolArray); + return result; + } + + public static Variant MakeVariantValue(DateTime[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + long[] array = new long[value.Length]; + for (int i = 0; i < value.Length; i++) + { + array[i] = value[i].ToFileTimeUtc(); + } + result = MakeVariantValue(array); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + return result; + } + + public static Variant MakeVariantValue(char[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeCharArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeCharArray); + return result; + } + + public static Variant MakeVariantValue(string[] value) + { + if (value == null || value.Length == 0) + { + return new Variant + { + Length = 0, + Payload = new byte[0], + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeStringArray) + }; + } + byte[][] array = new byte[value.Length][]; + int num = 0; + for (int i = 0; i < value.Length; i++) + { + if (value[i] == null) + { + array[i] = new byte[0]; + } + else + { + array[i] = Encoding.Unicode.GetBytes(value[i]); + num += array[i].Length; + } + num += 4; + } + byte[] array2 = new byte[num]; + int j = 0; + int num2 = 0; + for (; j < value.Length; j++) + { + byte[] bytes = BitConverter.GetBytes(array[j].Length); + Buffer.BlockCopy(bytes, 0, array2, num2, bytes.Length); + num2 += bytes.Length; + Buffer.BlockCopy(array[j], 0, array2, num2, array[j].Length); + num2 += array[j].Length; + } + return new Variant + { + Length = array2.Length, + Payload = array2, + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeStringArray) + }; + } + + public static Variant MakeVariantValue(Guid[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + string[] array = new string[value.Length]; + for (int i = 0; i < value.Length; i++) + { + array[i] = value[i].ToString(); + } + result = MakeVariantValue(array); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeGuidArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeGuidArray); + return result; + } + + public static Variant MakeVariantValue(CustomEnum[] customEnum) + { + Variant result = default(Variant); + int num = 0; + List list = new List(); + if (customEnum != null && customEnum.Length != 0) + { + for (int i = 0; i < customEnum.Length; i++) + { + short ordinal = customEnum[i].ordinal; + string ordinalValue = customEnum[i].OrdinalValue; + num += 6 + ordinalValue.Length; + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + } + result.Length = num; + result.Payload = list.ToArray(); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeEnumArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeEnum); + return result; + } + + public static Variant MakeVariantArray(Array valueArray) + { + Variant result = default(Variant); + Type type = valueArray.GetType(); + type.GetArrayRank(); + int VariantElementSize = 0; + if (type.HasElementType) + { + Type elementType = type.GetElementType(); + ushort VariantElementType = 0; + CalculateTypeAndSize(elementType, ref VariantElementType, ref VariantElementSize); + result.Type = VariantElementType; + } + uint arrayRank = (uint)type.GetArrayRank(); + byte[] array = new byte[4 + arrayRank * 4 + valueArray.Length * VariantElementSize]; + int num = 0; + byte[] bytes = BitConverter.GetBytes(arrayRank); + bytes.CopyTo(array, num); + num += bytes.Count(); + int[] array2 = new int[arrayRank]; + for (int i = 0; i < array2.Count(); i++) + { + byte[] bytes2 = BitConverter.GetBytes((uint)valueArray.GetLength(i)); + bytes2.CopyTo(array, num); + num += bytes2.Count(); + array2[i] = 0; + } + PackArray(array, ref num, valueArray, array2, 0); + result.Payload = array; + result.Length = result.Payload.Count(); + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static void CalculateTypeAndSize(Type valueArrayElementType, ref ushort VariantElementType, ref int VariantElementSize) + { + if (valueArrayElementType == typeof(bool)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeBoolArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(sbyte)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeSByteArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(byte)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeByteArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(ushort)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + VariantElementSize = 2; + } + else if (valueArrayElementType == typeof(uint)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(ulong)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(short)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16Array); + VariantElementSize = 2; + } + else if (valueArrayElementType == typeof(int)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32Array); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(long)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64Array); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(float)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeFloatArray); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(double)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(string)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeStringArray); + VariantElementSize = 0; + } + else if (valueArrayElementType == typeof(DateTime)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(Guid)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeGuidArray); + VariantElementSize = Guid.Empty.ToByteArray().Count(); + } + else if (valueArrayElementType == typeof(byte[])) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeByteStringArray); + VariantElementSize = 0; + } + } + + private static void PackArray(byte[] Payload, ref int PayloadIndex, Array valueArray, int[] DimensionIndices, int Dimension) + { + if (Dimension == DimensionIndices.Count() - 1) + { + for (int i = 0; i < valueArray.GetLength(Dimension); i++) + { + DimensionIndices[Dimension] = i; + byte[] array = PackArrayElement(valueArray.GetValue(DimensionIndices)); + array.CopyTo(Payload, PayloadIndex); + PayloadIndex += array.Count(); + } + } + else + { + for (int j = 0; j < valueArray.GetLength(Dimension); j++) + { + DimensionIndices[Dimension] = j; + PackArray(Payload, ref PayloadIndex, valueArray, DimensionIndices, Dimension + 1); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static byte[] PackArrayElement(object element) + { + if (element == null) + { + return new byte[0]; + } + if (element.GetType() == typeof(bool)) + { + return BitConverter.GetBytes((bool)element); + } + if (element.GetType() == typeof(sbyte)) + { + return BitConverter.GetBytes((sbyte)element); + } + if (element.GetType() == typeof(byte)) + { + return BitConverter.GetBytes((byte)element); + } + if (element.GetType() == typeof(ushort)) + { + return BitConverter.GetBytes((ushort)element); + } + if (element.GetType() == typeof(uint)) + { + return BitConverter.GetBytes((uint)element); + } + if (element.GetType() == typeof(ulong)) + { + return BitConverter.GetBytes((ulong)element); + } + if (element.GetType() == typeof(short)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(int)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(long)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(float)) + { + return BitConverter.GetBytes((float)element); + } + if (element.GetType() == typeof(double)) + { + return BitConverter.GetBytes((double)element); + } + if (element.GetType() == typeof(string)) + { + return Encoding.Unicode.GetBytes((string)element); + } + if (element.GetType() == typeof(DateTime)) + { + return BitConverter.GetBytes(((DateTime)element).ToBinary()); + } + if (element.GetType() == typeof(Guid)) + { + return ((Guid)element).ToByteArray(); + } + if (element.GetType() == typeof(byte[])) + { + return (byte[])element; + } + return new byte[0]; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/VariantReader.cs b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/VariantReader.cs new file mode 100644 index 0000000..bded215 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/ArchestrAServices.ASBIDataContract/VariantReader.cs @@ -0,0 +1,4269 @@ +using System; +using System.CodeDom.Compiler; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataContract; + +public class VariantReader +{ + public Variant Value { get; set; } + + public VariantReader(Variant value) + { + Value = value; + } + + public DataType GetVariantType() + { + return ASBEnumFactory.IntToDataType(Value.Type); + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsByte() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = Value.Payload[0]; + return obj; + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (byte)Convert.ChangeType(obj, typeof(byte)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt16() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = BitConverter.ToInt16(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (short)Convert.ChangeType(obj, typeof(short)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt16() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = BitConverter.ToUInt16(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (ushort)Convert.ChangeType(obj, typeof(ushort)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt32() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToInt32(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (int)Convert.ChangeType(obj, typeof(int)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt32() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToUInt32(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (uint)Convert.ChangeType(obj, typeof(uint)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt64() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToInt64(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (long)Convert.ChangeType(obj, typeof(long)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt64() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToUInt64(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (ulong)Convert.ChangeType(obj, typeof(ulong)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsFloat() + { + object obj = null; + object obj2 = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToSingle(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + obj2 = ((GetVariantType() == DataType.TypeLocalizedText) ? ((object)(float)Convert.ChangeType(obj, typeof(float), ExtractLocaleInfo())) : ((object)(float)Convert.ChangeType(obj, typeof(float)))); + if (float.IsInfinity((float)obj2)) + { + obj2 = obj; + } + } + } + catch (InvalidCastException) + { + obj2 = obj; + } + catch (FormatException) + { + obj2 = obj; + } + catch (OverflowException) + { + obj2 = obj; + } + return obj2; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDouble() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToDouble(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = ((GetVariantType() == DataType.TypeLocalizedText) ? ((object)(double)Convert.ChangeType(obj, typeof(double), ExtractLocaleInfo())) : ((object)(double)Convert.ChangeType(obj, typeof(double)))); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsString() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + case DataType.TypeLocalizedText: + if (Value.Payload.Count() > 20) + { + obj = Encoding.Unicode.GetString(Value.Payload, 20, Value.Payload.Length - 20); + } + break; + default: + obj = Encoding.Unicode.GetString(Value.Payload); + return obj; + } + if (obj != null) + { + result = (string)Convert.ChangeType(obj, typeof(string)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + private CultureInfo ExtractLocaleInfo() + { + CultureInfo result = CultureInfo.InvariantCulture; + if (GetVariantType() == DataType.TypeLocalizedText && Value.Payload.Length >= 11) + { + string s = Encoding.Unicode.GetString(Value.Payload, 8, 8); + int result2 = 0; + int.TryParse(s, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out result2); + if (result2 > 0) + { + result = CultureInfo.GetCultureInfo(result2); + } + } + return result; + } + + private byte[] SplitByteArray(byte[] source, int startIndex, int length) + { + if (length > 0) + { + byte[] array = new byte[length]; + for (int i = 0; i < length; i++) + { + array[i] = source[startIndex + i]; + } + return array; + } + return null; + } + + public object GetAsBool() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = Convert.ToBoolean(Value.Payload[0]); + return obj; + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() == 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (bool)Convert.ChangeType(obj, typeof(bool)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsSByte() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = (sbyte)Value.Payload[0]; + return obj; + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (sbyte)Convert.ChangeType(obj, typeof(sbyte)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsDateTime() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = DateTime.FromFileTimeUtc(BitConverter.ToInt64(Value.Payload, 0)); + return obj; + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (DateTime)Convert.ChangeType(obj, typeof(DateTime)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsDuration() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = TimeSpan.FromTicks(BitConverter.ToInt64(Value.Payload, 0)); + return obj; + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (TimeSpan)Convert.ChangeType(obj, typeof(TimeSpan)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsGuid() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + { + string g = (string)GetAsString(); + obj = new Guid(g); + return obj; + } + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = ((!(obj.GetType() == typeof(string))) ? ((object)(Guid)Convert.ChangeType(obj, typeof(Guid))) : ((object)new Guid((string)obj))); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public byte[] GetAsByteString() + { + return Value.Payload; + } + + public string GetAsLocalizedText() + { + return (string)GetAsString(); + } + + public object GetScalarValue(DataType targetType) + { + object obj = null; + try + { + switch (ASBEnumFactory.IntToDataType(Value.Type)) + { + case DataType.TypeBool: + obj = GetAsBool(); + if (DataType.TypeBool == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeByte: + obj = GetAsByte(); + if (targetType == DataType.TypeByte) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDateTime: + obj = GetAsDateTime(); + if (targetType == DataType.TypeByte) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDouble: + obj = GetAsDouble(); + if (DataType.TypeDouble == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDuration: + obj = GetAsDuration(); + if (DataType.TypeDuration == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeFloat: + obj = GetAsFloat(); + if (DataType.TypeFloat == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeGuid: + obj = GetAsGuid(); + if (DataType.TypeGuid == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt16: + obj = GetAsInt16(); + if (DataType.TypeInt16 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt32: + obj = GetAsInt32(); + if (DataType.TypeInt32 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt64: + obj = GetAsInt64(); + if (DataType.TypeInt64 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeLocalizedText: + obj = GetAsLocalizedText(); + if (DataType.TypeLocalizedText == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeSByte: + obj = GetAsSByte(); + if (DataType.TypeSByte == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeString: + obj = GetAsString(); + if (DataType.TypeString == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt16: + obj = GetAsUInt16(); + if (DataType.TypeUInt16 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt32: + obj = GetAsUInt32(); + if (DataType.TypeUInt32 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt64: + obj = GetAsUInt64(); + if (DataType.TypeUInt64 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + default: + return GetAsString(); + } + } + catch (Exception) + { + return obj; + } + } + + public object GetValueInTargetArrayType(DataType targetType) + { + switch (targetType) + { + case DataType.TypeBool: + { + bool[] array14 = (bool[])GetAsBoolArray(); + if (array14 != null && array14.Length != 0) + { + return array14; + } + return Value; + } + case DataType.TypeByte: + { + byte[] array8 = (byte[])GetAsByteArray(); + if (array8 != null && array8.Length != 0) + { + return array8; + } + return Value; + } + case DataType.TypeDateTime: + { + DateTime[] array15 = (DateTime[])GetAsDateTimeArray(); + if (array15 != null && array15.Length != 0) + { + return array15; + } + return Value; + } + case DataType.TypeDouble: + { + double[] array11 = (double[])GetAsDoubleArray(); + if (array11 != null && array11.Length != 0) + { + return array11; + } + return Value; + } + case DataType.TypeDuration: + { + TimeSpan[] array6 = (TimeSpan[])GetAsDurationArray(); + if (array6 != null && array6.Length != 0) + { + return array6; + } + return Value; + } + case DataType.TypeFloat: + { + float[] array12 = (float[])GetAsFloatArray(); + if (array12 != null && array12.Length != 0) + { + return array12; + } + return Value; + } + case DataType.TypeGuid: + { + Guid[] array10 = (Guid[])GetAsGuidArray(); + if (array10 != null && array10.Length != 0) + { + return array10; + } + return Value; + } + case DataType.TypeInt16: + { + short[] array3 = (short[])GetAsInt16Array(); + if (array3 != null && array3.Length != 0) + { + return array3; + } + return Value; + } + case DataType.TypeInt32: + { + int[] array4 = (int[])GetAsInt32Array(); + if (array4 != null && array4.Length != 0) + { + return array4; + } + return Value; + } + case DataType.TypeInt64: + { + long[] array7 = (long[])GetAsInt64Array(); + if (array7 != null && array7.Length != 0) + { + return array7; + } + return Value; + } + case DataType.TypeSByte: + { + sbyte[] array2 = (sbyte[])GetAsSByteArray(); + if (array2 != null && array2.Length != 0) + { + return array2; + } + return Value; + } + case DataType.TypeUInt16: + { + ushort[] array13 = (ushort[])GetAsUInt16Array(); + if (array13 != null && array13.Length != 0) + { + return array13; + } + return Value; + } + case DataType.TypeUInt32: + { + uint[] array9 = (uint[])GetAsUInt32Array(); + if (array9 != null && array9.Length != 0) + { + return array9; + } + return Value; + } + case DataType.TypeUInt64: + { + ulong[] array5 = (ulong[])GetAsUInt64Array(); + if (array5 != null && array5.Length != 0) + { + return array5; + } + return Value; + } + case DataType.TypeUnknown: + return Value; + default: + { + string[] array = (string[])GetAsStringArray(); + if (array != null && array.Length != 0) + { + return array; + } + return Value; + } + } + } + + private static object GetValueInTargetType(DataType targetType, object retValue) + { + return targetType switch + { + DataType.TypeBool => Convert.ChangeType(retValue, typeof(bool)), + DataType.TypeByte => Convert.ChangeType(retValue, typeof(byte)), + DataType.TypeDateTime => Convert.ChangeType(retValue, typeof(DateTime)), + DataType.TypeDouble => Convert.ChangeType(retValue, typeof(double)), + DataType.TypeDuration => Convert.ChangeType(retValue, typeof(long)), + DataType.TypeFloat => Convert.ChangeType(retValue, typeof(float)), + DataType.TypeGuid => Convert.ChangeType(retValue, typeof(Guid)), + DataType.TypeInt16 => Convert.ChangeType(retValue, typeof(short)), + DataType.TypeInt32 => Convert.ChangeType(retValue, typeof(int)), + DataType.TypeInt64 => Convert.ChangeType(retValue, typeof(long)), + DataType.TypeSByte => Convert.ChangeType(retValue, typeof(sbyte)), + DataType.TypeUInt16 => Convert.ChangeType(retValue, typeof(ushort)), + DataType.TypeUInt32 => Convert.ChangeType(retValue, typeof(uint)), + DataType.TypeUInt64 => Convert.ChangeType(retValue, typeof(ulong)), + _ => Convert.ChangeType(retValue, typeof(string)), + }; + } + + public object GetArrayValue(DataType targetType) + { + object obj = new object(); + try + { + return GetValueInTargetArrayType(targetType); + } + catch (Exception) + { + return null; + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsEnum() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() == 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeEnum: + { + CustomEnum customEnum = default(CustomEnum); + int num = 0; + int num2 = 0; + customEnum.ordinal = BitConverter.ToInt16(Value.Payload, num); + num += 2; + num2 = BitConverter.ToInt32(Value.Payload, num) * 2; + num += 4; + customEnum.OrdinalValue = Encoding.Unicode.GetString(Value.Payload, num, num2); + obj = customEnum; + break; + } + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (CustomEnum)Convert.ChangeType(obj, typeof(CustomEnum)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public Array GetAsGenericArray() + { + Type type = CalculateVariableType(); + if (type == null) + { + return new uint[0]; + } + int num = 0; + uint num2 = BitConverter.ToUInt32(Value.Payload, num); + num += 4; + int[] array = new int[num2]; + int[] array2 = new int[num2]; + for (int i = 0; i < num2; i++) + { + array[i] = (int)BitConverter.ToUInt32(Value.Payload, num); + num += 4; + array2[i] = 0; + } + Array array3 = Array.CreateInstance(type, array); + UnpackArray(Value.Payload, ref num, array3, array2, 0); + return array3; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private Type CalculateVariableType() + { + return GetVariantType() switch + { + DataType.TypeByteArray => typeof(byte), + DataType.TypeCharArray => typeof(char), + DataType.TypeInt16Array => typeof(short), + DataType.TypeUInt16Array => typeof(ushort), + DataType.TypeInt32Array => typeof(int), + DataType.TypeUInt32Array => typeof(uint), + DataType.TypeInt64Array => typeof(long), + DataType.TypeUInt64Array => typeof(ulong), + DataType.TypeFloatArray => typeof(float), + DataType.TypeDoubleArray => typeof(double), + DataType.TypeStringArray => typeof(string), + DataType.TypeDateTimeArray => typeof(DateTime), + DataType.TypeGuidArray => typeof(Guid), + DataType.TypeByteStringArray => typeof(byte[]), + DataType.TypeBoolArray => typeof(bool), + DataType.TypeSByteArray => typeof(sbyte), + _ => null, + }; + } + + private static void UnpackArray(byte[] Payload, ref int PayloadIndex, Array valueArray, int[] DimensionIndices, int Dimension) + { + if (Dimension == DimensionIndices.Count() - 1) + { + Type elementType = valueArray.GetType().GetElementType(); + for (int i = 0; i < valueArray.GetLength(Dimension); i++) + { + DimensionIndices[Dimension] = i; + UnpackArrayElement(Payload, ref PayloadIndex, elementType, valueArray, DimensionIndices); + } + } + else + { + for (int j = 0; j < valueArray.GetLength(Dimension); j++) + { + DimensionIndices[Dimension] = j; + UnpackArray(Payload, ref PayloadIndex, valueArray, DimensionIndices, Dimension + 1); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static void UnpackArrayElement(byte[] Payload, ref int PayloadIndex, Type valueType, Array valueArray, int[] DimensionIndices) + { + if (Payload != null && valueArray != null) + { + if (valueType == typeof(bool)) + { + valueArray.SetValue(Payload[PayloadIndex] != 0, DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(sbyte)) + { + valueArray.SetValue(Payload[PayloadIndex], DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(byte)) + { + valueArray.SetValue(Payload[PayloadIndex], DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(ushort)) + { + valueArray.SetValue(BitConverter.ToUInt16(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 2; + } + else if (valueType == typeof(uint)) + { + valueArray.SetValue(BitConverter.ToUInt32(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(ulong)) + { + valueArray.SetValue(BitConverter.ToUInt64(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(short)) + { + valueArray.SetValue(BitConverter.ToInt16(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 2; + } + else if (valueType == typeof(int)) + { + valueArray.SetValue(BitConverter.ToInt32(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(long)) + { + valueArray.SetValue(BitConverter.ToInt64(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(float)) + { + valueArray.SetValue(BitConverter.ToSingle(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(double)) + { + valueArray.SetValue(BitConverter.ToDouble(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(string)) + { + uint count = BitConverter.ToUInt32(Payload, PayloadIndex); + PayloadIndex += 4; + char[] chars = new UnicodeEncoding().GetChars(Payload, PayloadIndex, (int)count); + valueArray.SetValue(new string(chars), DimensionIndices); + } + else if (valueType == typeof(DateTime)) + { + long ticks = BitConverter.ToInt32(Payload, PayloadIndex); + PayloadIndex += 4; + valueArray.SetValue(new DateTime(ticks), DimensionIndices); + } + else if (valueType == typeof(Guid)) + { + byte[] array = new byte[16]; + Array.Copy(Payload, PayloadIndex, array, 0, 16); + PayloadIndex += 16; + Guid guid = new Guid(array); + valueArray.SetValue(guid, DimensionIndices); + } + else if (valueType == typeof(byte[])) + { + uint num = BitConverter.ToUInt32(Payload, PayloadIndex); + PayloadIndex += 4; + byte[] array2 = new byte[num]; + Array.Copy(Payload, PayloadIndex, array2, 0L, num); + PayloadIndex += (int)num; + valueArray.SetValue(array2, DimensionIndices); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt32Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + if (Value.Payload.Count() >= 4) + { + int[] array2 = new int[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt32(Value.Payload, num); + num += 4; + num2++; + } + return array2; + } + return new int[0]; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + int[] array3 = new int[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (int)Convert.ChangeType(array.GetValue(i), typeof(int)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsByteArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + if (Value.Payload.Count() >= 1) + { + return Value.Payload; + } + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + byte[] array2 = new byte[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (byte)Convert.ChangeType(array.GetValue(i), typeof(byte)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public char[] GetAsCharArray() + { + if (Value.Payload.Count() >= 2) + { + char[] array = new char[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array[num2] = BitConverter.ToChar(Value.Payload, num); + num += 2; + num2++; + } + return array; + } + return new char[0]; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt16Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + if (Value.Payload.Count() >= 2) + { + short[] array2 = new short[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt16(Value.Payload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + short[] array3 = new short[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (short)Convert.ChangeType(array.GetValue(i), typeof(short)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt16Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + if (Value.Payload.Count() >= 2) + { + ushort[] array2 = new ushort[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt16(Value.Payload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + ushort[] array3 = new ushort[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ushort)Convert.ChangeType(array.GetValue(i), typeof(ushort)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt32Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + if (Value.Payload.Count() >= 4) + { + uint[] array2 = new uint[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt32(Value.Payload, num); + num += 4; + num2++; + } + array = array2; + } + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + uint[] array3 = new uint[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (uint)Convert.ChangeType(array.GetValue(i), typeof(uint)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt64Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + case DataType.TypeInt64Array: + case DataType.TypeDurationArray: + if (Value.Payload.Count() >= 8) + { + long[] array2 = new long[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt64(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + long[] array3 = new long[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (long)Convert.ChangeType(array.GetValue(i), typeof(long)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt64Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + if (Value.Payload.Count() >= 8) + { + ulong[] array2 = new ulong[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt64(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + ulong[] array3 = new ulong[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ulong)Convert.ChangeType(array.GetValue(i), typeof(ulong)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsFloatArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + if (Value.Payload.Count() >= 4) + { + float[] array2 = new float[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToSingle(Value.Payload, num); + num += 4; + num2++; + } + return array2; + } + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + float[] array3 = new float[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (float)Convert.ChangeType(array.GetValue(i), typeof(float)); + if (float.IsInfinity(array3[i])) + { + return array; + } + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDoubleArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + if (Value.Payload.Count() >= 8) + { + double[] array2 = new double[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToDouble(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + double[] array3 = new double[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (double)Convert.ChangeType(array.GetValue(i), typeof(double)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsStringArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeGuid: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeGuidArray: + case DataType.TypeLocalizedTextArray: + { + if (Value.Payload.Count() <= 4) + { + break; + } + Queue queue = new Queue(); + uint num = 0u; + int num2; + for (num2 = 0; num2 < Value.Length; num2 += (int)num) + { + num = BitConverter.ToUInt32(Value.Payload, num2); + if (num2 + num >= Value.Length) + { + break; + } + num2 += 4; + queue.Enqueue(Encoding.Unicode.GetString(Value.Payload, num2, (int)num)); + } + return queue.ToArray(); + } + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + } + if (array != null) + { + string[] array2 = new string[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (string)Convert.ChangeType(array.GetValue(i), typeof(string)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDateTimeArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + if (Value.Payload.Count() >= 8) + { + DateTime[] array2 = new DateTime[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + long fileTime = BitConverter.ToInt64(Value.Payload, num); + array2[num2] = DateTime.FromFileTimeUtc(fileTime); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + DateTime[] array3 = new DateTime[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (DateTime)Convert.ChangeType(array.GetValue(i), typeof(DateTime)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDurationArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + if (Value.Payload.Count() >= 8) + { + TimeSpan[] array2 = new TimeSpan[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + long value = BitConverter.ToInt64(Value.Payload, num); + array2[num2] = TimeSpan.FromTicks(value); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + TimeSpan[] array3 = new TimeSpan[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (TimeSpan)Convert.ChangeType(array.GetValue(i), typeof(TimeSpan)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsGuidArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + if (Value.Payload.Count() > 4) + { + string[] array2 = (string[])GetAsStringArray(); + Guid[] array3 = new Guid[array2.Length]; + for (int i = 0; i < array2.Length; i++) + { + array3[i] = new Guid(array2[i]); + } + return array3; + } + break; + } + if (array != null) + { + Guid[] array4 = new Guid[array.Length]; + for (int j = 0; j < array4.Length; j++) + { + try + { + if (array.GetValue(j).GetType() == typeof(string)) + { + string g = (string)array.GetValue(j); + array4[j] = new Guid(g); + } + else + { + array4[j] = (Guid)Convert.ChangeType(array.GetValue(j), typeof(Guid)); + } + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array4; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsBoolArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + if (Value.Payload.Count() >= 1) + { + bool[] array2 = new bool[Value.Length / 1]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToBoolean(Value.Payload, num); + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + bool[] array3 = new bool[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (bool)Convert.ChangeType(array.GetValue(i), typeof(bool)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsSByteArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + if (Value.Payload.Count() >= 1) + { + sbyte[] array2 = new sbyte[Value.Length]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = (sbyte)Value.Payload[num]; + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + sbyte[] array3 = new sbyte[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (sbyte)Convert.ChangeType(array.GetValue(i), typeof(sbyte)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return new sbyte[0]; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsEnumArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + case DataType.TypeEnum: + case DataType.TypeEnumArray: + { + int num = 0; + List list = new List(); + int num2; + for (num2 = 0; num2 < Value.Length; num2 += num) + { + CustomEnum item = new CustomEnum + { + ordinal = BitConverter.ToInt16(Value.Payload, num2) + }; + num2 += 2; + num = BitConverter.ToInt32(Value.Payload, num2) * 2; + if (num2 + num >= Value.Payload.Length) + { + break; + } + num2 += 4; + item.OrdinalValue = Encoding.Unicode.GetString(Value.Payload, num2, num); + list.Add(item); + } + array = list.ToArray(); + break; + } + } + if (array != null) + { + CustomEnum[] array2 = new CustomEnum[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (CustomEnum)Convert.ChangeType(array.GetValue(i), typeof(CustomEnum)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } +} diff --git a/analysis/decompiled/aaServicesContractIData/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesContractIData/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..93eb350 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/Properties/AssemblyInfo.cs @@ -0,0 +1,14 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("aaServicesContractIData")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesContractIData/aaServicesContractIData.csproj b/analysis/decompiled/aaServicesContractIData/aaServicesContractIData.csproj new file mode 100644 index 0000000..8fa23d2 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIData/aaServicesContractIData.csproj @@ -0,0 +1,23 @@ + + + aaServicesContractIData + False + net40 + + + 14.0 + True + False + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/Variant.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/Variant.cs new file mode 100644 index 0000000..6d43b93 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/Variant.cs @@ -0,0 +1,78 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataContract.V2; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[DebuggerStepThrough] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct Variant +{ + private ushort typeField; + + private int lengthField; + + private byte[] payloadField; + + public ushort Type + { + get + { + return typeField; + } + set + { + typeField = value; + } + } + + public int Length + { + get + { + return lengthField; + } + set + { + lengthField = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] Payload + { + get + { + return payloadField; + } + set + { + payloadField = value; + } + } + + public Variant(ref ArchestrAServices.Contract.Variant oldVariant) + { + lengthField = oldVariant.Length; + typeField = oldVariant.Type; + payloadField = oldVariant.Payload; + } + + public Variant(ArchestrAServices.Contract.Variant oldVariant) + { + lengthField = oldVariant.Length; + typeField = oldVariant.Type; + payloadField = oldVariant.Payload; + } + + public Variant(int Length, ushort Type, byte[] Payload) + { + lengthField = Length; + typeField = Type; + payloadField = Payload; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/VariantFactory.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/VariantFactory.cs new file mode 100644 index 0000000..1e84987 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/VariantFactory.cs @@ -0,0 +1,750 @@ +using System; +using System.CodeDom.Compiler; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataV2Contract; + +namespace ArchestrAServices.ASBIDataContract.V2; + +public static class VariantFactory +{ + public static Variant MakeVariantValue(bool value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeBool), + Length = 1, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(sbyte value) + { + Variant result = new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeSByte), + Length = 1, + Payload = new byte[1] + }; + result.Payload[0] = (byte)value; + return result; + } + + public static Variant MakeVariantValue(byte value) + { + Variant result = new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeByte), + Length = 1, + Payload = new byte[1] + }; + result.Payload[0] = value; + return result; + } + + public static Variant MakeVariantValue(ushort value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16), + Length = 2, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(uint value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(ulong value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(short value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16), + Length = 2, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(int value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(long value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValueAsDuration(long value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDuration), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValueAsDurationArray(long[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + result = MakeVariantValue(value); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDurationArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDurationArray); + return result; + } + + public static Variant MakeVariantValue(float value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeFloat), + Length = 4, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(double value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDouble), + Length = 8, + Payload = BitConverter.GetBytes(value) + }; + } + + public static Variant MakeVariantValue(string value) + { + Variant result = default(Variant); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeString); + result.Payload = Encoding.Unicode.GetBytes(value); + result.Length = result.Payload.Count(); + return result; + } + + public static Variant MakeVariantValue(DateTime value) + { + return new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTime), + Length = 8, + Payload = BitConverter.GetBytes(value.ToFileTimeUtc()) + }; + } + + public static Variant MakeVariantValue(Guid value) + { + Variant result = MakeVariantValue(value.ToString()); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeGuid); + return result; + } + + public static Variant MakeVariantValue(long value, bool bStatus) + { + Variant result = new Variant + { + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeLocalizedText) + }; + MemoryStream memoryStream = null; + try + { + memoryStream = new MemoryStream(); + using (StreamWriter streamWriter = new StreamWriter(memoryStream)) + { + memoryStream = null; + streamWriter.Write(value); + streamWriter.Flush(); + } + result.Payload = memoryStream.ToArray(); + result.Length = result.Payload.Count(); + return result; + } + finally + { + memoryStream?.Dispose(); + } + } + + public static Variant MakeVariantValue(CustomEnum customEnum) + { + Variant result = default(Variant); + short ordinal = customEnum.ordinal; + string ordinalValue = customEnum.OrdinalValue; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeEnum); + List list = new List(); + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + result.Length = 6 + ordinalValue.Length; + result.Payload = list.ToArray(); + return result; + } + + public static Variant MakeVariantValue(int[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32Array); + return result; + } + + public static Variant MakeVariantValue(uint[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + return result; + } + + public static Variant MakeVariantValue(long[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64Array); + return result; + } + + public static Variant MakeVariantValue(ulong[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + return result; + } + + public static Variant MakeVariantValue(float[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 4]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeFloatArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeFloatArray); + return result; + } + + public static Variant MakeVariantValue(double[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 8]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + return result; + } + + public static Variant MakeVariantValue(short[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16Array); + return result; + } + + public static Variant MakeVariantValue(ushort[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + return result; + } + + public static Variant MakeVariantValue(byte[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + result.Length = value.Length; + result.Payload = value; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeByteArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeByteArray); + return result; + } + + public static Variant MakeVariantValue(sbyte[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeSByteArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeSByteArray); + return result; + } + + public static Variant MakeVariantValue(bool[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeBoolArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeBoolArray); + return result; + } + + public static Variant MakeVariantValue(DateTime[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + long[] array = new long[value.Length]; + for (int i = 0; i < value.Length; i++) + { + array[i] = value[i].ToFileTimeUtc(); + } + result = MakeVariantValue(array); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + return result; + } + + public static Variant MakeVariantValue(char[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + byte[] array = new byte[value.Length * 2]; + Buffer.BlockCopy(value, 0, array, 0, array.Length); + result.Length = array.Length; + result.Payload = array; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeCharArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeCharArray); + return result; + } + + public static Variant MakeVariantValue(string[] value) + { + if (value == null || value.Length == 0) + { + return new Variant + { + Length = 0, + Payload = new byte[0], + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeStringArray) + }; + } + byte[][] array = new byte[value.Length][]; + int num = 0; + for (int i = 0; i < value.Length; i++) + { + if (value[i] == null) + { + array[i] = new byte[0]; + } + else + { + array[i] = Encoding.Unicode.GetBytes(value[i]); + num += array[i].Length; + } + num += 4; + } + byte[] array2 = new byte[num]; + int j = 0; + int num2 = 0; + for (; j < value.Length; j++) + { + byte[] bytes = BitConverter.GetBytes(array[j].Length); + Buffer.BlockCopy(bytes, 0, array2, num2, bytes.Length); + num2 += bytes.Length; + Buffer.BlockCopy(array[j], 0, array2, num2, array[j].Length); + num2 += array[j].Length; + } + return new Variant + { + Length = array2.Length, + Payload = array2, + Type = ASBEnumFactory.DataTypeToInt(DataType.TypeStringArray) + }; + } + + public static Variant MakeVariantValue(Guid[] value) + { + Variant result = default(Variant); + if (value != null && value.Length != 0) + { + string[] array = new string[value.Length]; + for (int i = 0; i < value.Length; i++) + { + array[i] = value[i].ToString(); + } + result = MakeVariantValue(array); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeGuidArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeGuidArray); + return result; + } + + public static Variant MakeVariantValue(CustomEnum[] customEnum) + { + Variant result = default(Variant); + int num = 0; + List list = new List(); + if (customEnum != null && customEnum.Length != 0) + { + for (int i = 0; i < customEnum.Length; i++) + { + short ordinal = customEnum[i].ordinal; + string ordinalValue = customEnum[i].OrdinalValue; + num += 6 + ordinalValue.Length; + list.AddRange(BitConverter.GetBytes(Convert.ToInt16(ordinal))); + list.AddRange(BitConverter.GetBytes(Convert.ToUInt32(ordinalValue.Length))); + list.AddRange(Encoding.Unicode.GetBytes(ordinalValue)); + } + result.Length = num; + result.Payload = list.ToArray(); + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeEnumArray); + return result; + } + result.Length = 0; + result.Payload = new byte[0]; + result.Type = ASBEnumFactory.DataTypeToInt(DataType.TypeEnum); + return result; + } + + public static Variant MakeVariantArray(Array valueArray) + { + Variant result = default(Variant); + Type type = valueArray.GetType(); + type.GetArrayRank(); + int VariantElementSize = 0; + if (type.HasElementType) + { + Type elementType = type.GetElementType(); + ushort VariantElementType = 0; + CalculateTypeAndSize(elementType, ref VariantElementType, ref VariantElementSize); + result.Type = VariantElementType; + } + uint arrayRank = (uint)type.GetArrayRank(); + byte[] array = new byte[4 + arrayRank * 4 + valueArray.Length * VariantElementSize]; + int num = 0; + byte[] bytes = BitConverter.GetBytes(arrayRank); + bytes.CopyTo(array, num); + num += bytes.Count(); + int[] array2 = new int[arrayRank]; + for (int i = 0; i < array2.Count(); i++) + { + byte[] bytes2 = BitConverter.GetBytes((uint)valueArray.GetLength(i)); + bytes2.CopyTo(array, num); + num += bytes2.Count(); + array2[i] = 0; + } + PackArray(array, ref num, valueArray, array2, 0); + result.Payload = array; + result.Length = result.Payload.Count(); + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static void CalculateTypeAndSize(Type valueArrayElementType, ref ushort VariantElementType, ref int VariantElementSize) + { + if (valueArrayElementType == typeof(bool)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeBoolArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(sbyte)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeSByteArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(byte)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeByteArray); + VariantElementSize = 1; + } + else if (valueArrayElementType == typeof(ushort)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt16Array); + VariantElementSize = 2; + } + else if (valueArrayElementType == typeof(uint)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt32Array); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(ulong)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeUInt64Array); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(short)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeInt16Array); + VariantElementSize = 2; + } + else if (valueArrayElementType == typeof(int)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeInt32Array); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(long)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeInt64Array); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(float)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeFloatArray); + VariantElementSize = 4; + } + else if (valueArrayElementType == typeof(double)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeDoubleArray); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(string)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeStringArray); + VariantElementSize = 0; + } + else if (valueArrayElementType == typeof(DateTime)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeDateTimeArray); + VariantElementSize = 8; + } + else if (valueArrayElementType == typeof(Guid)) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeGuidArray); + VariantElementSize = Guid.Empty.ToByteArray().Count(); + } + else if (valueArrayElementType == typeof(byte[])) + { + VariantElementType = ASBEnumFactory.DataTypeToInt(DataType.TypeByteStringArray); + VariantElementSize = 0; + } + } + + private static void PackArray(byte[] Payload, ref int PayloadIndex, Array valueArray, int[] DimensionIndices, int Dimension) + { + if (Dimension == DimensionIndices.Count() - 1) + { + for (int i = 0; i < valueArray.GetLength(Dimension); i++) + { + DimensionIndices[Dimension] = i; + byte[] array = PackArrayElement(valueArray.GetValue(DimensionIndices)); + array.CopyTo(Payload, PayloadIndex); + PayloadIndex += array.Count(); + } + } + else + { + for (int j = 0; j < valueArray.GetLength(Dimension); j++) + { + DimensionIndices[Dimension] = j; + PackArray(Payload, ref PayloadIndex, valueArray, DimensionIndices, Dimension + 1); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static byte[] PackArrayElement(object element) + { + if (element == null) + { + return new byte[0]; + } + if (element.GetType() == typeof(bool)) + { + return BitConverter.GetBytes((bool)element); + } + if (element.GetType() == typeof(sbyte)) + { + return BitConverter.GetBytes((sbyte)element); + } + if (element.GetType() == typeof(byte)) + { + return BitConverter.GetBytes((byte)element); + } + if (element.GetType() == typeof(ushort)) + { + return BitConverter.GetBytes((ushort)element); + } + if (element.GetType() == typeof(uint)) + { + return BitConverter.GetBytes((uint)element); + } + if (element.GetType() == typeof(ulong)) + { + return BitConverter.GetBytes((ulong)element); + } + if (element.GetType() == typeof(short)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(int)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(long)) + { + return BitConverter.GetBytes((int)element); + } + if (element.GetType() == typeof(float)) + { + return BitConverter.GetBytes((float)element); + } + if (element.GetType() == typeof(double)) + { + return BitConverter.GetBytes((double)element); + } + if (element.GetType() == typeof(string)) + { + return Encoding.Unicode.GetBytes((string)element); + } + if (element.GetType() == typeof(DateTime)) + { + return BitConverter.GetBytes(((DateTime)element).ToBinary()); + } + if (element.GetType() == typeof(Guid)) + { + return ((Guid)element).ToByteArray(); + } + if (element.GetType() == typeof(byte[])) + { + return (byte[])element; + } + return new byte[0]; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/VariantReader.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/VariantReader.cs new file mode 100644 index 0000000..04448bb --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataContract.V2/VariantReader.cs @@ -0,0 +1,4270 @@ +using System; +using System.CodeDom.Compiler; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataV2Contract; + +namespace ArchestrAServices.ASBIDataContract.V2; + +public class VariantReader +{ + public Variant Value { get; set; } + + public VariantReader(Variant value) + { + Value = value; + } + + public DataType GetVariantType() + { + return ASBEnumFactory.IntToDataType(Value.Type); + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsByte() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = Value.Payload[0]; + return obj; + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (byte)Convert.ChangeType(obj, typeof(byte)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt16() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = BitConverter.ToInt16(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (short)Convert.ChangeType(obj, typeof(short)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt16() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = BitConverter.ToUInt16(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (ushort)Convert.ChangeType(obj, typeof(ushort)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt32() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToInt32(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (int)Convert.ChangeType(obj, typeof(int)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt32() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToUInt32(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (uint)Convert.ChangeType(obj, typeof(uint)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt64() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToInt64(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (long)Convert.ChangeType(obj, typeof(long)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt64() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToUInt64(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (ulong)Convert.ChangeType(obj, typeof(ulong)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsFloat() + { + object obj = null; + object obj2 = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = BitConverter.ToSingle(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + obj2 = ((GetVariantType() == DataType.TypeLocalizedText) ? ((object)(float)Convert.ChangeType(obj, typeof(float), ExtractLocaleInfo())) : ((object)(float)Convert.ChangeType(obj, typeof(float)))); + if (float.IsInfinity((float)obj2)) + { + obj2 = obj; + } + } + } + catch (InvalidCastException) + { + obj2 = obj; + } + catch (FormatException) + { + obj2 = obj; + } + catch (OverflowException) + { + obj2 = obj; + } + return obj2; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDouble() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = BitConverter.ToDouble(Value.Payload, 0); + return obj; + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = ((GetVariantType() == DataType.TypeLocalizedText) ? ((object)(double)Convert.ChangeType(obj, typeof(double), ExtractLocaleInfo())) : ((object)(double)Convert.ChangeType(obj, typeof(double)))); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsString() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + case DataType.TypeLocalizedText: + if (Value.Payload.Count() > 20) + { + obj = Encoding.Unicode.GetString(Value.Payload, 20, Value.Payload.Length - 20); + } + break; + default: + obj = Encoding.Unicode.GetString(Value.Payload); + return obj; + } + if (obj != null) + { + result = (string)Convert.ChangeType(obj, typeof(string)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + private CultureInfo ExtractLocaleInfo() + { + CultureInfo result = CultureInfo.InvariantCulture; + if (GetVariantType() == DataType.TypeLocalizedText && Value.Payload.Length >= 11) + { + string s = Encoding.Unicode.GetString(Value.Payload, 8, 8); + int result2 = 0; + int.TryParse(s, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out result2); + if (result2 > 0) + { + result = CultureInfo.GetCultureInfo(result2); + } + } + return result; + } + + private byte[] SplitByteArray(byte[] source, int startIndex, int length) + { + if (length > 0) + { + byte[] array = new byte[length]; + for (int i = 0; i < length; i++) + { + array[i] = source[startIndex + i]; + } + return array; + } + return null; + } + + public object GetAsBool() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = Convert.ToBoolean(Value.Payload[0]); + return obj; + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() == 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (bool)Convert.ChangeType(obj, typeof(bool)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsSByte() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = (sbyte)Value.Payload[0]; + return obj; + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsDouble(); + break; + } + if (obj != null) + { + result = (sbyte)Convert.ChangeType(obj, typeof(sbyte)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsDateTime() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = DateTime.FromFileTimeUtc(BitConverter.ToInt64(Value.Payload, 0)); + return obj; + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (DateTime)Convert.ChangeType(obj, typeof(DateTime)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsDuration() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = TimeSpan.FromTicks(BitConverter.ToInt64(Value.Payload, 0)); + return obj; + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (TimeSpan)Convert.ChangeType(obj, typeof(TimeSpan)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public object GetAsGuid() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + { + string g = (string)GetAsString(); + obj = new Guid(g); + return obj; + } + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = ((!(obj.GetType() == typeof(string))) ? ((object)(Guid)Convert.ChangeType(obj, typeof(Guid))) : ((object)new Guid((string)obj))); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public byte[] GetAsByteString() + { + return Value.Payload; + } + + public string GetAsLocalizedText() + { + return (string)GetAsString(); + } + + public object GetScalarValue(DataType targetType) + { + object obj = null; + try + { + switch (ASBEnumFactory.IntToDataType(Value.Type)) + { + case DataType.TypeBool: + obj = GetAsBool(); + if (DataType.TypeBool == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeByte: + obj = GetAsByte(); + if (targetType == DataType.TypeByte) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDateTime: + obj = GetAsDateTime(); + if (targetType == DataType.TypeByte) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDouble: + obj = GetAsDouble(); + if (DataType.TypeDouble == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeDuration: + obj = GetAsDuration(); + if (DataType.TypeDuration == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeFloat: + obj = GetAsFloat(); + if (DataType.TypeFloat == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeGuid: + obj = GetAsGuid(); + if (DataType.TypeGuid == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt16: + obj = GetAsInt16(); + if (DataType.TypeInt16 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt32: + obj = GetAsInt32(); + if (DataType.TypeInt32 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeInt64: + obj = GetAsInt64(); + if (DataType.TypeInt64 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeLocalizedText: + obj = GetAsLocalizedText(); + if (DataType.TypeLocalizedText == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeSByte: + obj = GetAsSByte(); + if (DataType.TypeSByte == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeString: + obj = GetAsString(); + if (DataType.TypeString == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt16: + obj = GetAsUInt16(); + if (DataType.TypeUInt16 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt32: + obj = GetAsUInt32(); + if (DataType.TypeUInt32 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + case DataType.TypeUInt64: + obj = GetAsUInt64(); + if (DataType.TypeUInt64 == targetType) + { + return obj; + } + return GetValueInTargetType(targetType, obj); + default: + return GetAsString(); + } + } + catch (Exception) + { + return obj; + } + } + + public object GetValueInTargetArrayType(DataType targetType) + { + switch (targetType) + { + case DataType.TypeBool: + { + bool[] array14 = (bool[])GetAsBoolArray(); + if (array14 != null && array14.Length != 0) + { + return array14; + } + return Value; + } + case DataType.TypeByte: + { + byte[] array8 = (byte[])GetAsByteArray(); + if (array8 != null && array8.Length != 0) + { + return array8; + } + return Value; + } + case DataType.TypeDateTime: + { + DateTime[] array15 = (DateTime[])GetAsDateTimeArray(); + if (array15 != null && array15.Length != 0) + { + return array15; + } + return Value; + } + case DataType.TypeDouble: + { + double[] array11 = (double[])GetAsDoubleArray(); + if (array11 != null && array11.Length != 0) + { + return array11; + } + return Value; + } + case DataType.TypeDuration: + { + TimeSpan[] array6 = (TimeSpan[])GetAsDurationArray(); + if (array6 != null && array6.Length != 0) + { + return array6; + } + return Value; + } + case DataType.TypeFloat: + { + float[] array12 = (float[])GetAsFloatArray(); + if (array12 != null && array12.Length != 0) + { + return array12; + } + return Value; + } + case DataType.TypeGuid: + { + Guid[] array10 = (Guid[])GetAsGuidArray(); + if (array10 != null && array10.Length != 0) + { + return array10; + } + return Value; + } + case DataType.TypeInt16: + { + short[] array3 = (short[])GetAsInt16Array(); + if (array3 != null && array3.Length != 0) + { + return array3; + } + return Value; + } + case DataType.TypeInt32: + { + int[] array4 = (int[])GetAsInt32Array(); + if (array4 != null && array4.Length != 0) + { + return array4; + } + return Value; + } + case DataType.TypeInt64: + { + long[] array7 = (long[])GetAsInt64Array(); + if (array7 != null && array7.Length != 0) + { + return array7; + } + return Value; + } + case DataType.TypeSByte: + { + sbyte[] array2 = (sbyte[])GetAsSByteArray(); + if (array2 != null && array2.Length != 0) + { + return array2; + } + return Value; + } + case DataType.TypeUInt16: + { + ushort[] array13 = (ushort[])GetAsUInt16Array(); + if (array13 != null && array13.Length != 0) + { + return array13; + } + return Value; + } + case DataType.TypeUInt32: + { + uint[] array9 = (uint[])GetAsUInt32Array(); + if (array9 != null && array9.Length != 0) + { + return array9; + } + return Value; + } + case DataType.TypeUInt64: + { + ulong[] array5 = (ulong[])GetAsUInt64Array(); + if (array5 != null && array5.Length != 0) + { + return array5; + } + return Value; + } + case DataType.TypeUnknown: + return Value; + default: + { + string[] array = (string[])GetAsStringArray(); + if (array != null && array.Length != 0) + { + return array; + } + return Value; + } + } + } + + private static object GetValueInTargetType(DataType targetType, object retValue) + { + return targetType switch + { + DataType.TypeBool => Convert.ChangeType(retValue, typeof(bool)), + DataType.TypeByte => Convert.ChangeType(retValue, typeof(byte)), + DataType.TypeDateTime => Convert.ChangeType(retValue, typeof(DateTime)), + DataType.TypeDouble => Convert.ChangeType(retValue, typeof(double)), + DataType.TypeDuration => Convert.ChangeType(retValue, typeof(long)), + DataType.TypeFloat => Convert.ChangeType(retValue, typeof(float)), + DataType.TypeGuid => Convert.ChangeType(retValue, typeof(Guid)), + DataType.TypeInt16 => Convert.ChangeType(retValue, typeof(short)), + DataType.TypeInt32 => Convert.ChangeType(retValue, typeof(int)), + DataType.TypeInt64 => Convert.ChangeType(retValue, typeof(long)), + DataType.TypeSByte => Convert.ChangeType(retValue, typeof(sbyte)), + DataType.TypeUInt16 => Convert.ChangeType(retValue, typeof(ushort)), + DataType.TypeUInt32 => Convert.ChangeType(retValue, typeof(uint)), + DataType.TypeUInt64 => Convert.ChangeType(retValue, typeof(ulong)), + _ => Convert.ChangeType(retValue, typeof(string)), + }; + } + + public object GetArrayValue(DataType targetType) + { + object obj = new object(); + try + { + return GetValueInTargetArrayType(targetType); + } + catch (Exception) + { + return null; + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsEnum() + { + object obj = null; + object result = null; + try + { + switch (GetVariantType()) + { + case DataType.TypeBool: + if (Value.Payload.Count() == 1) + { + obj = GetAsBool(); + } + break; + case DataType.TypeByte: + if (Value.Payload.Count() == 1) + { + obj = GetAsByte(); + } + break; + case DataType.TypeSByte: + if (Value.Payload.Count() >= 1) + { + obj = GetAsSByte(); + } + break; + case DataType.TypeInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsInt16(); + } + break; + case DataType.TypeUInt16: + if (Value.Payload.Count() == 2) + { + obj = GetAsUInt16(); + } + break; + case DataType.TypeInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsInt32(); + } + break; + case DataType.TypeUInt32: + if (Value.Payload.Count() == 4) + { + obj = GetAsUInt32(); + } + break; + case DataType.TypeInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsInt64(); + } + break; + case DataType.TypeUInt64: + if (Value.Payload.Count() == 8) + { + obj = GetAsUInt64(); + } + break; + case DataType.TypeFloat: + if (Value.Payload.Count() == 4) + { + obj = GetAsFloat(); + } + break; + case DataType.TypeDouble: + if (Value.Payload.Count() == 8) + { + obj = GetAsDouble(); + } + break; + case DataType.TypeDateTime: + if (Value.Payload.Count() == 8) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeDuration: + if (Value.Payload.Count() == 8) + { + obj = GetAsDuration(); + } + break; + case DataType.TypeGuid: + if (Value.Payload.Count() == 4) + { + obj = GetAsDateTime(); + } + break; + case DataType.TypeEnum: + { + CustomEnum customEnum = default(CustomEnum); + int num = 0; + int num2 = 0; + customEnum.ordinal = BitConverter.ToInt16(Value.Payload, num); + num += 2; + num2 = BitConverter.ToInt32(Value.Payload, num) * 2; + num += 4; + customEnum.OrdinalValue = Encoding.Unicode.GetString(Value.Payload, num, num2); + obj = customEnum; + break; + } + case DataType.TypeUnknown: + obj = Value; + break; + default: + obj = GetAsString(); + break; + } + if (obj != null) + { + result = (CustomEnum)Convert.ChangeType(obj, typeof(CustomEnum)); + } + } + catch (InvalidCastException) + { + result = obj; + } + catch (FormatException) + { + result = obj; + } + catch (OverflowException) + { + result = obj; + } + return result; + } + + public Array GetAsGenericArray() + { + Type type = CalculateVariableType(); + if (type == null) + { + return new uint[0]; + } + int num = 0; + uint num2 = BitConverter.ToUInt32(Value.Payload, num); + num += 4; + int[] array = new int[num2]; + int[] array2 = new int[num2]; + for (int i = 0; i < num2; i++) + { + array[i] = (int)BitConverter.ToUInt32(Value.Payload, num); + num += 4; + array2[i] = 0; + } + Array array3 = Array.CreateInstance(type, array); + UnpackArray(Value.Payload, ref num, array3, array2, 0); + return array3; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private Type CalculateVariableType() + { + return GetVariantType() switch + { + DataType.TypeByteArray => typeof(byte), + DataType.TypeCharArray => typeof(char), + DataType.TypeInt16Array => typeof(short), + DataType.TypeUInt16Array => typeof(ushort), + DataType.TypeInt32Array => typeof(int), + DataType.TypeUInt32Array => typeof(uint), + DataType.TypeInt64Array => typeof(long), + DataType.TypeUInt64Array => typeof(ulong), + DataType.TypeFloatArray => typeof(float), + DataType.TypeDoubleArray => typeof(double), + DataType.TypeStringArray => typeof(string), + DataType.TypeDateTimeArray => typeof(DateTime), + DataType.TypeGuidArray => typeof(Guid), + DataType.TypeByteStringArray => typeof(byte[]), + DataType.TypeBoolArray => typeof(bool), + DataType.TypeSByteArray => typeof(sbyte), + _ => null, + }; + } + + private static void UnpackArray(byte[] Payload, ref int PayloadIndex, Array valueArray, int[] DimensionIndices, int Dimension) + { + if (Dimension == DimensionIndices.Count() - 1) + { + Type elementType = valueArray.GetType().GetElementType(); + for (int i = 0; i < valueArray.GetLength(Dimension); i++) + { + DimensionIndices[Dimension] = i; + UnpackArrayElement(Payload, ref PayloadIndex, elementType, valueArray, DimensionIndices); + } + } + else + { + for (int j = 0; j < valueArray.GetLength(Dimension); j++) + { + DimensionIndices[Dimension] = j; + UnpackArray(Payload, ref PayloadIndex, valueArray, DimensionIndices, Dimension + 1); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + private static void UnpackArrayElement(byte[] Payload, ref int PayloadIndex, Type valueType, Array valueArray, int[] DimensionIndices) + { + if (Payload != null && valueArray != null) + { + if (valueType == typeof(bool)) + { + valueArray.SetValue(Payload[PayloadIndex] != 0, DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(sbyte)) + { + valueArray.SetValue(Payload[PayloadIndex], DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(byte)) + { + valueArray.SetValue(Payload[PayloadIndex], DimensionIndices); + PayloadIndex++; + } + else if (valueType == typeof(ushort)) + { + valueArray.SetValue(BitConverter.ToUInt16(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 2; + } + else if (valueType == typeof(uint)) + { + valueArray.SetValue(BitConverter.ToUInt32(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(ulong)) + { + valueArray.SetValue(BitConverter.ToUInt64(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(short)) + { + valueArray.SetValue(BitConverter.ToInt16(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 2; + } + else if (valueType == typeof(int)) + { + valueArray.SetValue(BitConverter.ToInt32(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(long)) + { + valueArray.SetValue(BitConverter.ToInt64(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(float)) + { + valueArray.SetValue(BitConverter.ToSingle(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 4; + } + else if (valueType == typeof(double)) + { + valueArray.SetValue(BitConverter.ToDouble(Payload, PayloadIndex), DimensionIndices); + PayloadIndex += 8; + } + else if (valueType == typeof(string)) + { + uint count = BitConverter.ToUInt32(Payload, PayloadIndex); + PayloadIndex += 4; + char[] chars = new UnicodeEncoding().GetChars(Payload, PayloadIndex, (int)count); + valueArray.SetValue(new string(chars), DimensionIndices); + } + else if (valueType == typeof(DateTime)) + { + long ticks = BitConverter.ToInt32(Payload, PayloadIndex); + PayloadIndex += 4; + valueArray.SetValue(new DateTime(ticks), DimensionIndices); + } + else if (valueType == typeof(Guid)) + { + byte[] array = new byte[16]; + Array.Copy(Payload, PayloadIndex, array, 0, 16); + PayloadIndex += 16; + Guid guid = new Guid(array); + valueArray.SetValue(guid, DimensionIndices); + } + else if (valueType == typeof(byte[])) + { + uint num = BitConverter.ToUInt32(Payload, PayloadIndex); + PayloadIndex += 4; + byte[] array2 = new byte[num]; + Array.Copy(Payload, PayloadIndex, array2, 0L, num); + PayloadIndex += (int)num; + valueArray.SetValue(array2, DimensionIndices); + } + } + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt32Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + if (Value.Payload.Count() >= 4) + { + int[] array2 = new int[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt32(Value.Payload, num); + num += 4; + num2++; + } + return array2; + } + return new int[0]; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + int[] array3 = new int[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (int)Convert.ChangeType(array.GetValue(i), typeof(int)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsByteArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + if (Value.Payload.Count() >= 1) + { + return Value.Payload; + } + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + byte[] array2 = new byte[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (byte)Convert.ChangeType(array.GetValue(i), typeof(byte)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public char[] GetAsCharArray() + { + if (Value.Payload.Count() >= 2) + { + char[] array = new char[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array[num2] = BitConverter.ToChar(Value.Payload, num); + num += 2; + num2++; + } + return array; + } + return new char[0]; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt16Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + if (Value.Payload.Count() >= 2) + { + short[] array2 = new short[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt16(Value.Payload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + short[] array3 = new short[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (short)Convert.ChangeType(array.GetValue(i), typeof(short)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt16Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + if (Value.Payload.Count() >= 2) + { + ushort[] array2 = new ushort[Value.Length / 2]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt16(Value.Payload, num); + num += 2; + num2++; + } + return array2; + } + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + ushort[] array3 = new ushort[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ushort)Convert.ChangeType(array.GetValue(i), typeof(ushort)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt32Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + if (Value.Payload.Count() >= 4) + { + uint[] array2 = new uint[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt32(Value.Payload, num); + num += 4; + num2++; + } + array = array2; + } + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + uint[] array3 = new uint[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (uint)Convert.ChangeType(array.GetValue(i), typeof(uint)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsInt64Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeDuration: + case DataType.TypeInt64Array: + case DataType.TypeDurationArray: + if (Value.Payload.Count() >= 8) + { + long[] array2 = new long[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToInt64(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + long[] array3 = new long[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (long)Convert.ChangeType(array.GetValue(i), typeof(long)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsUInt64Array() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + if (Value.Payload.Count() >= 8) + { + ulong[] array2 = new ulong[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToUInt64(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + ulong[] array3 = new ulong[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (ulong)Convert.ChangeType(array.GetValue(i), typeof(ulong)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsFloatArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + if (Value.Payload.Count() >= 4) + { + float[] array2 = new float[Value.Length / 4]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToSingle(Value.Payload, num); + num += 4; + num2++; + } + return array2; + } + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + float[] array3 = new float[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (float)Convert.ChangeType(array.GetValue(i), typeof(float)); + if (float.IsInfinity(array3[i])) + { + return array; + } + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDoubleArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + if (Value.Payload.Count() >= 8) + { + double[] array2 = new double[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToDouble(Value.Payload, num); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + double[] array3 = new double[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (double)Convert.ChangeType(array.GetValue(i), typeof(double)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsStringArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeGuid: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeGuidArray: + case DataType.TypeLocalizedTextArray: + { + if (Value.Payload.Count() <= 4) + { + break; + } + Queue queue = new Queue(); + uint num = 0u; + int num2; + for (num2 = 0; num2 < Value.Length; num2 += (int)num) + { + num = BitConverter.ToUInt32(Value.Payload, num2); + if (num2 + num >= Value.Length) + { + break; + } + num2 += 4; + queue.Enqueue(Encoding.Unicode.GetString(Value.Payload, num2, (int)num)); + } + return queue.ToArray(); + } + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + } + if (array != null) + { + string[] array2 = new string[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (string)Convert.ChangeType(array.GetValue(i), typeof(string)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDateTimeArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + if (Value.Payload.Count() >= 8) + { + DateTime[] array2 = new DateTime[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + long fileTime = BitConverter.ToInt64(Value.Payload, num); + array2[num2] = DateTime.FromFileTimeUtc(fileTime); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + DateTime[] array3 = new DateTime[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (DateTime)Convert.ChangeType(array.GetValue(i), typeof(DateTime)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsDurationArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + if (Value.Payload.Count() >= 8) + { + TimeSpan[] array2 = new TimeSpan[Value.Length / 8]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + long value = BitConverter.ToInt64(Value.Payload, num); + array2[num2] = TimeSpan.FromTicks(value); + num += 8; + num2++; + } + return array2; + } + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + TimeSpan[] array3 = new TimeSpan[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (TimeSpan)Convert.ChangeType(array.GetValue(i), typeof(TimeSpan)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsGuidArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + if (Value.Payload.Count() > 4) + { + string[] array2 = (string[])GetAsStringArray(); + Guid[] array3 = new Guid[array2.Length]; + for (int i = 0; i < array2.Length; i++) + { + array3[i] = new Guid(array2[i]); + } + return array3; + } + break; + } + if (array != null) + { + Guid[] array4 = new Guid[array.Length]; + for (int j = 0; j < array4.Length; j++) + { + try + { + if (array.GetValue(j).GetType() == typeof(string)) + { + string g = (string)array.GetValue(j); + array4[j] = new Guid(g); + } + else + { + array4[j] = (Guid)Convert.ChangeType(array.GetValue(j), typeof(Guid)); + } + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array4; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsBoolArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + if (Value.Payload.Count() >= 1) + { + bool[] array2 = new bool[Value.Length / 1]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = BitConverter.ToBoolean(Value.Payload, num); + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + bool[] array3 = new bool[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (bool)Convert.ChangeType(array.GetValue(i), typeof(bool)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return array; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsSByteArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + if (Value.Payload.Count() >= 1) + { + sbyte[] array2 = new sbyte[Value.Length]; + int num = 0; + int num2 = 0; + while (num < Value.Length) + { + array2[num2] = (sbyte)Value.Payload[num]; + num++; + num2++; + } + return array2; + } + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + } + if (array != null) + { + sbyte[] array3 = new sbyte[array.Length]; + for (int i = 0; i < array3.Length; i++) + { + try + { + array3[i] = (sbyte)Convert.ChangeType(array.GetValue(i), typeof(sbyte)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array3; + } + return new sbyte[0]; + } + + [GeneratedCode("Manually Avoid Code Metrics", "0.0.0.0")] + public object GetAsEnumArray() + { + Array array = null; + switch (GetVariantType()) + { + case DataType.TypeBool: + case DataType.TypeBoolArray: + array = (bool[])GetAsBoolArray(); + break; + case DataType.TypeDuration: + case DataType.TypeDurationArray: + array = (TimeSpan[])GetAsDurationArray(); + break; + case DataType.TypeByte: + case DataType.TypeByteString: + case DataType.TypeByteArray: + case DataType.TypeByteStringArray: + array = (byte[])GetAsByteArray(); + break; + case DataType.TypeSByte: + case DataType.TypeSByteArray: + array = (sbyte[])GetAsSByteArray(); + break; + case DataType.TypeInt16: + case DataType.TypeInt16Array: + array = (short[])GetAsInt16Array(); + break; + case DataType.TypeUInt16: + case DataType.TypeUInt16Array: + array = (ushort[])GetAsUInt16Array(); + break; + case DataType.TypeInt32: + case DataType.TypeInt32Array: + array = (int[])GetAsInt32Array(); + break; + case DataType.TypeUInt32: + case DataType.TypeUInt32Array: + array = (uint[])GetAsUInt32Array(); + break; + case DataType.TypeInt64: + case DataType.TypeInt64Array: + array = (long[])GetAsInt64Array(); + break; + case DataType.TypeUInt64: + case DataType.TypeUInt64Array: + array = (ulong[])GetAsUInt64Array(); + break; + case DataType.TypeFloat: + case DataType.TypeFloatArray: + array = (float[])GetAsFloatArray(); + break; + case DataType.TypeDouble: + case DataType.TypeDoubleArray: + array = (double[])GetAsDoubleArray(); + break; + case DataType.TypeString: + case DataType.TypeLocalizedText: + case DataType.TypeStringArray: + case DataType.TypeLocalizedTextArray: + array = (string[])GetAsStringArray(); + break; + case DataType.TypeDateTime: + case DataType.TypeDateTimeArray: + array = (DateTime[])GetAsDateTimeArray(); + break; + case DataType.TypeGuid: + case DataType.TypeGuidArray: + array = (Guid[])GetAsGuidArray(); + break; + case DataType.TypeEnum: + case DataType.TypeEnumArray: + { + int num = 0; + List list = new List(); + int num2; + for (num2 = 0; num2 < Value.Length; num2 += num) + { + CustomEnum item = new CustomEnum + { + ordinal = BitConverter.ToInt16(Value.Payload, num2) + }; + num2 += 2; + num = BitConverter.ToInt32(Value.Payload, num2) * 2; + if (num2 + num >= Value.Payload.Length) + { + break; + } + num2 += 4; + item.OrdinalValue = Encoding.Unicode.GetString(Value.Payload, num2, num); + list.Add(item); + } + array = list.ToArray(); + break; + } + } + if (array != null) + { + CustomEnum[] array2 = new CustomEnum[array.Length]; + for (int i = 0; i < array2.Length; i++) + { + try + { + array2[i] = (CustomEnum)Convert.ChangeType(array.GetValue(i), typeof(CustomEnum)); + } + catch (InvalidCastException) + { + return array; + } + catch (FormatException) + { + return array; + } + catch (OverflowException) + { + return array; + } + } + return array2; + } + return array; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataCustomSerializer.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataCustomSerializer.cs new file mode 100644 index 0000000..ba0b4df --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataCustomSerializer.cs @@ -0,0 +1,14 @@ +using System; +using System.Runtime.Serialization; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public class ASBIDataCustomSerializer : ASBCustomSerializer +{ + public ASBIDataCustomSerializer(Type type, XmlObjectSerializer fallbackSerializer) + : base(type, fallbackSerializer) + { + m_ASBPrefix = "ASBIData"; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataCustomSerializerOperationBehavior.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataCustomSerializerOperationBehavior.cs new file mode 100644 index 0000000..f36a674 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataCustomSerializerOperationBehavior.cs @@ -0,0 +1,30 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Runtime.Serialization; +using System.ServiceModel.Description; +using System.Xml; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public class ASBIDataCustomSerializerOperationBehavior : DataContractSerializerOperationBehavior +{ + public ASBIDataCustomSerializerOperationBehavior(OperationDescription operation) + : base(operation) + { + } + + public override XmlObjectSerializer CreateSerializer(Type type, string name, string ns, IList knownTypes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ASBIDataCustomSerializerOperationBehavior:CreateSerializer-creating an instance for ASBIDataCustomSerializer class"); + return new ASBIDataCustomSerializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } + + public override XmlObjectSerializer CreateSerializer(Type type, XmlDictionaryString name, XmlDictionaryString ns, IList knownTypes) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, $"ASBIDataCustomSerializerOperationBehavior:CreateSerializer-creating an instance for ASBIDataCustomSerializer class"); + return new ASBIDataCustomSerializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataV2Shim.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataV2Shim.cs new file mode 100644 index 0000000..3dc2290 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBIDataV2Shim.cs @@ -0,0 +1,1330 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.ServiceModel; +using System.Threading; +using ArchestrAServices.ASBContract; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)] +public abstract class ASBIDataV2Shim : IASBIDataV2, IAuthenticateASB +{ + private class ConnectionContext + { + public IContextChannel ConnectionChannel; + + public IDataV2 ConnectionImplementation; + + public Timer ConnectionKeepaliveTimer; + + private ConnectionContext() + { + } + + public ConnectionContext(IContextChannel Channel, IDataV2 Implementation, Timer KeepaliveTimer) + { + ConnectionChannel = Channel; + ConnectionImplementation = Implementation; + ConnectionKeepaliveTimer = KeepaliveTimer; + } + } + + private static ReaderWriterLockSlim implementationLock = new ReaderWriterLockSlim(); + + private static Dictionary m_Implementations = new Dictionary(); + + private static int KeepaliveTimeout = 30000; + + protected virtual IDataV2 GetImplementation() + { + return null; + } + + public ASBIDataV2Shim() + { + } + + public virtual ConnectResponse Connect(ConnectRequest request) + { + ConnectResponse connectResponse = SysAuthServiceAuthentication.ProcessClientConnection(request); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Connect started new Authenticator for connection Id {0}", connectResponse.ConnectionValidator.ConnectionId.ToString()); + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "Connect started new Authenticator for connection Id =", connectResponse.ConnectionValidator.ConnectionId.ToString()); + return connectResponse; + } + + public virtual void AuthenticateMe(AuthenticateMe request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "AuthenticateMe entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && (OperationContext.Current.Channel.LocalAddress.Uri.ToString().ToLower().StartsWith("http") || serviceAuthenticator.ProcessClientAuthenticateMe(request))) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "AuthenticateMe found authenticator and validated request message, calling implementation OnConnect({0})", serviceAuthenticator.connectionID.ToString()); + ConnectionId connectionId = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 implementation = GetImplementation(); + if (implementation != null) + { + Timer keepaliveTimer = new Timer(KeepaliveHandler, implementation, KeepaliveTimeout, -1); + try + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "AuthenticateMe found authenticator and validated request message, calling implementation OnConnect Id =", serviceAuthenticator.connectionID.ToString()); + implementation.OnConnect(connectionId, serviceAuthenticator.Lifetime); + implementationLock.EnterWriteLock(); + try + { + m_Implementations.Add(serviceAuthenticator.connectionID, new ConnectionContext(OperationContext.Current.Channel, implementation, keepaliveTimer)); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "AuthenticateMe added implementation for ConnectionId {0}", serviceAuthenticator.connectionID); + } + finally + { + implementationLock.ExitWriteLock(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "AuthenticateMe caught exception from implementation for ConnectionId {0}: {1}", serviceAuthenticator.connectionID, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "AuthenticateMe exit Id =", serviceAuthenticator.connectionID.ToString()); + } + + public virtual RenewResponse Renew(RenewRequest request) + { + return SysAuthServiceAuthentication.ProcessClientRenew(request); + } + + public virtual void UpdateSystemAuthenticationConfiguration(UpdateSystemAuthenticationConfiguration request) + { + SysAuthServiceAuthentication.ProcessClientUpdateSystemAuthenticationConfiguration(request); + } + + public virtual void Disconnect(Disconnect request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "Disconnect entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + OnDisconnect(request.ConnectionValidator.ConnectionId); + serviceAuthenticator.ProcessClientDisconnect(request); + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Stop, 100, string.Empty, "Disconnect exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + } + + private void OnDisconnect(Guid ConnectionId) + { + ConnectionId id = new ConnectionId + { + Id = ConnectionId + }; + bool flag = false; + implementationLock.EnterWriteLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(ConnectionId, out value); + if (flag) + { + m_Implementations.Remove(ConnectionId); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "OnDisconnect removed implementation for ConnectionId {0}", ConnectionId); + } + } + finally + { + implementationLock.ExitWriteLock(); + } + if (!flag) + { + return; + } + IDataV2 connectionImplementation = value.ConnectionImplementation; + Timer connectionKeepaliveTimer = value.ConnectionKeepaliveTimer; + connectionKeepaliveTimer.Change(-1, -1); + connectionKeepaliveTimer.Dispose(); + try + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Start, 100, string.Empty, "OnDisconnect found authenticator and validated request message, calling implementation OnDisconnect Id =", ConnectionId.ToString()); + connectionImplementation.OnDisconnect(id); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "OnDisconnect caught exception from implementation for ConnectionId {0}: {1}", ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + + public virtual void KeepAlive(KeepAlive request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 100, string.Empty, "KeepAlive entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId connectionId = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + connectionImplementation.KeepAlive(connectionId); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "KeepAlive caught exception from implementation for ConnectionId {0}: {1}", connectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 100, string.Empty, "KeepAlive exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + } + + private void KeepaliveHandler(object Implementation) + { + Guid guid = Guid.Empty; + IContextChannel contextChannel = null; + implementationLock.EnterReadLock(); + try + { + foreach (KeyValuePair implementation in m_Implementations) + { + if (implementation.Value.ConnectionImplementation == Implementation) + { + guid = implementation.Key; + contextChannel = implementation.Value.ConnectionChannel; + break; + } + } + } + finally + { + implementationLock.ExitReadLock(); + } + if (guid == Guid.Empty) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Keepalive timeout triggered, could not find ConnectionId"); + return; + } + OnDisconnect(guid); + SysAuthenticatorServiceCache.RemoveServiceAuthenticator(guid); + try + { + if (contextChannel != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Keepalive timeout elapsed without any method calls, closing connection {0} and aborting service channel", guid.ToString()); + contextChannel.Abort(); + } + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, ex.StackTrace); + } + } + + public virtual ActivateUserResponse ActivateUser(ActivateUserRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ActivateUser entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ActivateUserResponse activateUserResponse = new ActivateUserResponse(); + activateUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ActivateUser found authenticator for Connection Id {0}", request.ConnectionValidator.ConnectionId.ToString()); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ActivateUser validated request, passing to service"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + activateUserResponse.Result = connectionImplementation.ActivateUser(id, request.UserToken); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ActivateUser caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + activateUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + activateUserResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ActivateUser exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return activateUserResponse; + } + + public virtual ExchangeCapabilitiesResponse ExchangeCapabilities(ExchangeCapabilitiesRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ExchangeCapabilities entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ExchangeCapabilitiesResponse exchangeCapabilitiesResponse = new ExchangeCapabilitiesResponse(); + exchangeCapabilitiesResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ExchangeCapabilities found authenticator for Connection Id {0}", request.ConnectionValidator.ConnectionId.ToString()); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ExchangeCapabilities validated request, passing to service"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + exchangeCapabilitiesResponse.Result = connectionImplementation.ExchangeCapabilities(out var ServiceCapabilities, id, request.ClientCapabilities); + exchangeCapabilitiesResponse.ServiceCapabilities = ServiceCapabilities; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ExchangeCapabilities caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + exchangeCapabilitiesResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + exchangeCapabilitiesResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ExchangeCapabilities exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return exchangeCapabilitiesResponse; + } + + public virtual ReadResponse Read(ReadRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Read entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ReadResponse readResponse = new ReadResponse(); + readResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + ItemStatus[] Status = null; + RuntimeValue[] Values = null; + readResponse.Result = connectionImplementation.Read(out Status, out Values, id, request.Items); + readResponse.Status = Status; + readResponse.Values = Values; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Read caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + readResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + readResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Read exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return readResponse; + } + + public virtual WriteResponse Write(WriteBasicRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Write entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteResponse writeResponse = new WriteResponse(); + writeResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < request.Values.Length; i++) + { + if (request.Values[i].ArrayElementIndexSpecified) + { + request.Values[i].ArrayElementIndex += setting; + } + } + } + } + writeResponse.Result = connectionImplementation.Write(out var Status, id, request.Items, request.Values, request.WriteHandle); + writeResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Write caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Write exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeResponse; + } + + public virtual WriteUserResponse WriteUser(WriteUserRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteUser entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteUserResponse writeUserResponse = new WriteUserResponse(); + writeUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < request.Values.Length; i++) + { + if (request.Values[i].ArrayElementIndexSpecified) + { + request.Values[i].ArrayElementIndex += setting; + } + } + } + } + writeUserResponse.Result = connectionImplementation.WriteUser(out var Status, id, request.Items, request.Values, request.User, request.WriteHandle); + writeUserResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteUser caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeUserResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeUserResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteUser exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeUserResponse; + } + + public virtual WriteVerifiedResponse WriteVerified(WriteVerifiedRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteVerified entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteVerifiedResponse writeVerifiedResponse = new WriteVerifiedResponse(); + writeVerifiedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < request.Values.Length; i++) + { + if (request.Values[i].ArrayElementIndexSpecified) + { + request.Values[i].ArrayElementIndex += setting; + } + } + } + } + writeVerifiedResponse.Result = connectionImplementation.WriteVerified(out var Status, id, request.Items, request.Values, request.User, request.Supervisor, request.WriteHandle); + writeVerifiedResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteVerified caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeVerifiedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeVerifiedResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteVerified exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeVerifiedResponse; + } + + public virtual WriteSecuredResponse WriteSecured(WriteSecuredRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteSecured entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteSecuredResponse writeSecuredResponse = new WriteSecuredResponse(); + writeSecuredResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < request.Values.Length; i++) + { + if (request.Values[i].ArrayElementIndexSpecified) + { + request.Values[i].ArrayElementIndex += setting; + } + } + } + } + writeSecuredResponse.Result = connectionImplementation.WriteSecured(out var Status, id, request.Items, request.Values, request.User, request.WriteHandle); + writeSecuredResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteSecured caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeSecuredResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeSecuredResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteSecured exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeSecuredResponse; + } + + public virtual WriteConfirmedResponse WriteConfirmed(WriteConfirmedRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteConfirmed entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + WriteConfirmedResponse writeConfirmedResponse = new WriteConfirmedResponse(); + writeConfirmedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0 && request.Value.ArrayElementIndexSpecified) + { + request.Value.ArrayElementIndex += setting; + } + } + writeConfirmedResponse.Result = connectionImplementation.WriteConfirmed(out var ValueReceived, out var WriteToken, id, request.Item, request.Value, request.User, request.Supervisor); + if (connectionImplementation.Settings != null) + { + int setting2 = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting2 != 0 && ValueReceived.ArrayElementIndexSpecified) + { + ValueReceived.ArrayElementIndex -= setting2; + } + } + writeConfirmedResponse.ValueReceived = ValueReceived; + writeConfirmedResponse.WriteToken = WriteToken; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "WriteConfirmed caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + writeConfirmedResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + writeConfirmedResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "WriteConfirmed exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return writeConfirmedResponse; + } + + public virtual ConfirmWriteResponse ConfirmWrite(ConfirmWriteRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ConfirmWrite entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + ConfirmWriteResponse confirmWriteResponse = new ConfirmWriteResponse(); + confirmWriteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + if (connectionImplementation.Settings != null) + { + int setting = connectionImplementation.Settings.GetSetting("ArrayBase", 0); + if (setting != 0 && request.Value.ArrayElementIndexSpecified) + { + request.Value.ArrayElementIndex += setting; + } + } + confirmWriteResponse.Result = connectionImplementation.ConfirmWrite(id, request.Item, request.WriteToken, request.Value, request.User, request.Supervisor, request.WriteHandle); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "ConfirmWrite caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + confirmWriteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + confirmWriteResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "ConfirmWrite exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return confirmWriteResponse; + } + + public virtual PublishWriteCompleteResponse PublishWriteComplete(PublishWriteCompleteRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "PublishWriteComplete entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + PublishWriteCompleteResponse publishWriteCompleteResponse = new PublishWriteCompleteResponse(); + publishWriteCompleteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + publishWriteCompleteResponse.Result = connectionImplementation.PublishWriteComplete(out var CompleteWrites, id); + publishWriteCompleteResponse.CompleteWrites = CompleteWrites; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "PublishWriteComplete caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + publishWriteCompleteResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + publishWriteCompleteResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "PublishWriteComplete exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return publishWriteCompleteResponse; + } + + public virtual CreateSubscriptionResponse CreateSubscription(CreateSubscriptionRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "CreateSubscription entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + CreateSubscriptionResponse createSubscriptionResponse = new CreateSubscriptionResponse(); + createSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "CreateSubscription found authenticator for Connection Id {0}", request.ConnectionValidator.ConnectionId.ToString()); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "CreateSubscription validated request, passing to service"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + createSubscriptionResponse.Result = connectionImplementation.CreateSubscription(out var SubscriptionId, id, request.MaxQueueSize, request.SampleInterval); + createSubscriptionResponse.SubscriptionId = SubscriptionId; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "CreateSubscription caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + createSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + createSubscriptionResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "CreateSubscription exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return createSubscriptionResponse; + } + + public virtual SetSubscriptionStateResponse SetSubscriptionState(SetSubscriptionStateRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "SetSubscriptionState entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + SetSubscriptionStateResponse setSubscriptionStateResponse = new SetSubscriptionStateResponse(); + setSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + setSubscriptionStateResponse.Result = connectionImplementation.SetSubscriptionState(id, request.SubscriptionId, request.NewStateProperty, request.StateToChange); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "SetSubscriptionState caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + setSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + setSubscriptionStateResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "SetSubscriptionState exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return setSubscriptionStateResponse; + } + + public virtual GetSubscriptionStateResponse GetSubscriptionState(GetSubscriptionStateRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetSubscriptionState entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + GetSubscriptionStateResponse getSubscriptionStateResponse = new GetSubscriptionStateResponse(); + getSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + getSubscriptionStateResponse.Result = connectionImplementation.GetSubscriptionState(out var State, id, request.SubscriptionId, request.StateToGet); + getSubscriptionStateResponse.StateProperty = State; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetSubscriptionState caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + getSubscriptionStateResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + getSubscriptionStateResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetSubscriptionState exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return getSubscriptionStateResponse; + } + + public virtual DeleteSubscriptionResponse DeleteSubscription(DeleteSubscriptionRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteSubscription entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + DeleteSubscriptionResponse deleteSubscriptionResponse = new DeleteSubscriptionResponse(); + deleteSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + deleteSubscriptionResponse.Result = connectionImplementation.DeleteSubscription(id, request.SubscriptionId); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "DeleteSubscription caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + deleteSubscriptionResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + deleteSubscriptionResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteSubscription exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return deleteSubscriptionResponse; + } + + public virtual AddMonitoredItemsResponse AddMonitoredItems(AddMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "AddMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + AddMonitoredItemsResponse addMonitoredItemsResponse = new AddMonitoredItemsResponse(); + addMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + addMonitoredItemsResponse.Result = connectionImplementation.AddMonitoredItems(out var Status, out var ItemCapabilities, id, request.SubscriptionId, request.Items, (byte)(request.RequireId ? 1 : 0)); + addMonitoredItemsResponse.Status = Status; + addMonitoredItemsResponse.ItemCapabilities = ItemCapabilities; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "AddMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + addMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + addMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "AddMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return addMonitoredItemsResponse; + } + + public virtual DeleteMonitoredItemsResponse DeleteMonitoredItems(DeleteMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + DeleteMonitoredItemsResponse deleteMonitoredItemsResponse = new DeleteMonitoredItemsResponse(); + deleteMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + deleteMonitoredItemsResponse.Result = connectionImplementation.DeleteMonitoredItems(out var Status, id, request.SubscriptionId, request.Items); + deleteMonitoredItemsResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "DeleteMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + deleteMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + deleteMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "DeleteMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return deleteMonitoredItemsResponse; + } + + public virtual GetMonitoredItemsResponse GetMonitoredItems(GetMonitoredItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetMonitoredItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + GetMonitoredItemsResponse getMonitoredItemsResponse = new GetMonitoredItemsResponse(); + getMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + getMonitoredItemsResponse.Result = connectionImplementation.GetMonitoredItems(out var Items, id, request.SubscriptionId); + getMonitoredItemsResponse.Items = Items; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "GetMonitoredItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + getMonitoredItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + getMonitoredItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "GetMonitoredItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return getMonitoredItemsResponse; + } + + public virtual PublishResponse Publish(PublishRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Publish entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + PublishResponse publishResponse = new PublishResponse(); + publishResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Publish validated request"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + publishResponse.Result = connectionImplementation.Publish(out var Status, out var Values, id, request.SubscriptionId); + publishResponse.Status = Status; + publishResponse.Values = Values; + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Publish found implementation, called user code with error {0}, {1} Statuses, {2} Values", publishResponse.Result.ErrorCode, (Status != null) ? Status.Length : 0, (Values != null) ? Values.Length : 0); + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "Publish caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + publishResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + publishResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Publish could not find implementation for ConnectionId {0}", request.ConnectionValidator.ConnectionId); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Publish did not validate request for ConnectionId {0}", request.ConnectionValidator.ConnectionId); + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "Publish exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return publishResponse; + } + + public virtual RegisterItemsResponse RegisterItems(RegisterItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "RegisterItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + RegisterItemsResponse registerItemsResponse = new RegisterItemsResponse(); + registerItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems found authenticator from connection Id"); + } + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems authenticator validated request message"); + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "RegisterItems calling implementation"); + registerItemsResponse.Result = connectionImplementation.RegisterItems(out var Status, out var ItemCapabilities, id, request.Items, (byte)(request.RequireId ? 1 : 0), (byte)(request.RegisterOnly ? 1 : 0)); + registerItemsResponse.Status = Status; + registerItemsResponse.ItemCapabilities = ItemCapabilities; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "RegisterItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + registerItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + registerItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "RegisterItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return registerItemsResponse; + } + + public virtual UnregisterItemsResponse UnregisterItems(UnregisterItemsRequest request) + { + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "UnregisterItems entry Id =", request.ConnectionValidator.ConnectionId.ToString()); + UnregisterItemsResponse unregisterItemsResponse = new UnregisterItemsResponse(); + unregisterItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.InvalidConnectionId)); + SysAuthServiceAuthentication serviceAuthenticator = SysAuthenticatorServiceCache.GetServiceAuthenticator(request.ConnectionValidator.ConnectionId); + if (serviceAuthenticator != null && serviceAuthenticator.ValidRequest(request)) + { + bool flag = false; + implementationLock.EnterReadLock(); + ConnectionContext value; + try + { + flag = m_Implementations.TryGetValue(request.ConnectionValidator.ConnectionId, out value); + } + finally + { + implementationLock.ExitReadLock(); + } + if (flag) + { + value.ConnectionKeepaliveTimer.Change(KeepaliveTimeout, -1); + ConnectionId id = new ConnectionId + { + Id = serviceAuthenticator.connectionID + }; + IDataV2 connectionImplementation = value.ConnectionImplementation; + try + { + unregisterItemsResponse.Result = connectionImplementation.UnregisterItems(out var Status, id, request.Items); + unregisterItemsResponse.Status = Status; + } + catch (Exception ex) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, "UnregisterItems caught exception from implementation for ConnectionId {0}: {1}", request.ConnectionValidator.ConnectionId, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, " {0}", ex.InnerException.Message); + } + unregisterItemsResponse.Result = ResultFactory.MakeResult(EnumASBFactory.ArchestrAErrorToInt(ArchestrAError.OperationFailed)); + unregisterItemsResponse.Result.ErrorMessages = new string[1] { ex.Message }; + } + } + } + SvcTrace.DiagCsv.TraceEvent(TraceEventType.Information, 0, string.Empty, "UnregisterItems exit Id =", request.ConnectionValidator.ConnectionId.ToString()); + return unregisterItemsResponse; + } + + public bool ForceDisconnect() + { + return true; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBSerializer.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBSerializer.cs new file mode 100644 index 0000000..a01ef05 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBSerializer.cs @@ -0,0 +1,82 @@ +using System; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public static class ASBSerializer +{ + public static ASBStatus ASBStatusFromArray(ASBStatusElement[] status) + { + ASBStatus result = new ASBStatus + { + Count = 0 + }; + if (status == null) + { + return result; + } + ushort num = 0; + ASBStatusElement[] array = status; + for (int i = 0; i < array.Length; i++) + { + num = ((array[i].statusValue != 0) ? ((ushort)(num + 3)) : ((ushort)(num + 1))); + } + if (num > 255) + { + throw new IndexOutOfRangeException("Too many ASBStatusElements in ASBStatusFromArray"); + } + byte[] array2 = new byte[num]; + num = 0; + array = status; + for (int i = 0; i < array.Length; i++) + { + ASBStatusElement aSBStatusElement = array[i]; + if (aSBStatusElement.statusValue == 0) + { + array2[num++] = (byte)(((byte)aSBStatusElement.statusType & 0x7F) | 0x80); + continue; + } + array2[num++] = (byte)((byte)aSBStatusElement.statusType & 0x7F); + byte[] array3 = new byte[2]; + array3 = BitConverter.GetBytes(aSBStatusElement.statusValue); + array2[num++] = array3[0]; + array2[num++] = array3[1]; + } + result.Count = (sbyte)num; + result.Payload = array2; + return result; + } + + public static ASBStatusElement[] ASBStatusToArray(ASBStatus status) + { + if (status.Payload == null) + { + return new ASBStatusElement[0]; + } + byte[] payload = status.Payload; + ushort num = 0; + ushort num2 = 0; + while (num2 < status.Count) + { + num2 = (((payload[num2] & 0x80) == 0) ? ((ushort)(num2 + 3)) : ((ushort)(num2 + 1))); + num++; + } + ASBStatusElement[] array = new ASBStatusElement[num]; + num2 = 0; + for (ushort num3 = 0; num3 < num; num3++) + { + if ((payload[num2] & 0x80) != 0) + { + array[num3].statusType = (ASBStatusType)(payload[num2] & 0x7F); + array[num3].statusValue = 0; + num2++; + } + else + { + array[num3].statusType = (ASBStatusType)payload[num2++]; + array[num3].statusValue = BitConverter.ToUInt16(payload, num2); + num2 += 2; + } + } + return array; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatus.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatus.cs new file mode 100644 index 0000000..13764bb --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatus.cs @@ -0,0 +1,159 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ASBStatus : IASBCustomSerializableType +{ + private sbyte countField; + + private byte[] payloadField; + + public sbyte Count + { + get + { + return countField; + } + set + { + countField = value; + } + } + + [XmlElement(DataType = "base64Binary")] + public byte[] Payload + { + get + { + return payloadField; + } + set + { + payloadField = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer == null) + { + return; + } + try + { + writer.Write(countField); + if (payloadField != null) + { + writer.Write((uint)payloadField.Length); + writer.Write(payloadField); + } + else + { + writer.Write(0u); + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (reader == null) + { + return; + } + try + { + countField = reader.ReadSByte(); + int num = reader.ReadInt32(); + if (num > 0) + { + payloadField = reader.ReadBytes(num); + } + else + { + payloadField = null; + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + ASBStatus[] array = new ASBStatus[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is ASBStatus[] array) + { + bw.Write(array.Length); + ASBStatus[] array2 = array; + foreach (ASBStatus aSBStatus in array2) + { + aSBStatus.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ASBStatus: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref ASBStatus result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.countField = reader.ReadSByte(); + int num = reader.ReadInt32(); + if (num > 0) + { + result.payloadField = reader.ReadBytes(num); + } + else + { + result.payloadField = null; + } + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatusElement.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatusElement.cs new file mode 100644 index 0000000..34ebe31 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatusElement.cs @@ -0,0 +1,60 @@ +using System; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public struct ASBStatusElement +{ + public ASBStatusType statusType; + + public ushort statusValue; + + public ASBStatus Status + { + get + { + byte b = 0; + byte[] array = null; + if (statusValue == 0) + { + b = 1; + array = new byte[b]; + array[0] = (byte)(((byte)statusType & 0x7F) | 0x80); + } + else + { + b = 3; + array = new byte[b]; + array[0] = (byte)((byte)statusType & 0x7F); + byte[] array2 = new byte[2]; + array2 = BitConverter.GetBytes(statusValue); + array[1] = array2[0]; + array[2] = array2[1]; + } + return new ASBStatus + { + Count = (sbyte)b, + Payload = array + }; + } + } + + public ASBStatusElement(ASBStatus singleStatus) + { + if (singleStatus.Payload == null || singleStatus.Payload.Length < 1) + { + throw new IndexOutOfRangeException("ASBStatus payload contained no data in ASBStatusElement constructor"); + } + if ((singleStatus.Payload[0] & 0x80) != 0) + { + statusType = (ASBStatusType)(singleStatus.Payload[0] & 0x7F); + statusValue = 0; + return; + } + if (singleStatus.Payload.Length < 3) + { + throw new IndexOutOfRangeException("ASBStatus payload contained insufficient data in ASBStatusElement constructor"); + } + statusType = (ASBStatusType)singleStatus.Payload[0]; + statusValue = BitConverter.ToUInt16(singleStatus.Payload, 1); + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatusType.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatusType.cs new file mode 100644 index 0000000..fd8369d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ASBStatusType.cs @@ -0,0 +1,15 @@ +namespace ArchestrAServices.ASBIDataV2Contract; + +public enum ASBStatusType : ushort +{ + OPCDAStatus = 1, + OPCUAStatus = 2, + OPCUAVendorStatus = 3, + SCADAStatus = 4, + MXStatusCategory = 5, + MxStatusDetail = 6, + MxQuality = 7, + Reserved1Status = 125, + Reserved2Status = 126, + Reserved3Status = 127 +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ActivateUserRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ActivateUserRequest.cs new file mode 100644 index 0000000..b986672 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ActivateUserRequest.cs @@ -0,0 +1,26 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ActivateUserRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ActivateUserRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public UserToken UserToken; + + public ActivateUserRequest() + { + } + + public ActivateUserRequest(UserToken UserToken) + { + this.UserToken = UserToken; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ActivateUserResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ActivateUserResponse.cs new file mode 100644 index 0000000..e7c0a23 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ActivateUserResponse.cs @@ -0,0 +1,15 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ActivateUserResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ActivateUserResponse : ConnectedResponse +{ +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/AddMonitoredItemsRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/AddMonitoredItemsRequest.cs new file mode 100644 index 0000000..124cc60 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/AddMonitoredItemsRequest.cs @@ -0,0 +1,36 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "AddMonitoredItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class AddMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Items")] + public MonitoredItem[] Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public bool RequireId; + + public AddMonitoredItemsRequest() + { + } + + public AddMonitoredItemsRequest(long SubscriptionId, MonitoredItem[] Items, bool RequireId) + { + this.SubscriptionId = SubscriptionId; + this.Items = Items; + this.RequireId = RequireId; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/AddMonitoredItemsResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/AddMonitoredItemsResponse.cs new file mode 100644 index 0000000..a12e12f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/AddMonitoredItemsResponse.cs @@ -0,0 +1,33 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "AddMonitoredItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class AddMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("ItemCapabilities")] + public ItemRegistration[] ItemCapabilities; + + public AddMonitoredItemsResponse() + { + } + + public AddMonitoredItemsResponse(ItemStatus[] Status, ItemRegistration[] ItemCapabilities) + { + this.Status = Status; + this.ItemCapabilities = ItemCapabilities; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ConfirmWriteRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ConfirmWriteRequest.cs new file mode 100644 index 0000000..caff99a --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ConfirmWriteRequest.cs @@ -0,0 +1,46 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ConfirmWriteRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ConfirmWriteRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public ItemIdentity Item; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public long WriteToken; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public WriteValue Value; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 3)] + public UserToken User; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 4)] + public UserToken Supervisor; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 5)] + public uint WriteHandle; + + public ConfirmWriteRequest() + { + } + + public ConfirmWriteRequest(ItemIdentity Item, long WriteToken, WriteValue Value, UserToken User, UserToken Supervisor, uint WriteHandle) + { + this.Item = Item; + this.WriteToken = WriteToken; + this.Value = Value; + this.User = User; + this.Supervisor = Supervisor; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ConfirmWriteResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ConfirmWriteResponse.cs new file mode 100644 index 0000000..6994f0b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ConfirmWriteResponse.cs @@ -0,0 +1,15 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ConfirmWriteResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ConfirmWriteResponse : ConnectedResponse +{ +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CreateSubscriptionRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CreateSubscriptionRequest.cs new file mode 100644 index 0000000..682c071 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CreateSubscriptionRequest.cs @@ -0,0 +1,30 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "CreateSubscriptionRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class CreateSubscriptionRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long MaxQueueSize; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public ulong SampleInterval; + + public CreateSubscriptionRequest() + { + } + + public CreateSubscriptionRequest(long MaxQueueSize, ulong SampleInterval) + { + this.MaxQueueSize = MaxQueueSize; + this.SampleInterval = SampleInterval; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CreateSubscriptionResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CreateSubscriptionResponse.cs new file mode 100644 index 0000000..4f0d7a8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CreateSubscriptionResponse.cs @@ -0,0 +1,26 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "CreateSubscriptionResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class CreateSubscriptionResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + public CreateSubscriptionResponse() + { + } + + public CreateSubscriptionResponse(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CustomEnum.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CustomEnum.cs new file mode 100644 index 0000000..348c37c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/CustomEnum.cs @@ -0,0 +1,8 @@ +namespace ArchestrAServices.ASBIDataV2Contract; + +public struct CustomEnum +{ + public short ordinal; + + public string OrdinalValue; +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DataQualityType.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DataQualityType.cs new file mode 100644 index 0000000..c5f12db --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DataQualityType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.ASBIDataV2Contract; + +public enum DataQualityType : ushort +{ + Good = 0, + Uncertain = 16, + Bad = 1, + Other = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteMonitoredItemsRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteMonitoredItemsRequest.cs new file mode 100644 index 0000000..9538c4b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteMonitoredItemsRequest.cs @@ -0,0 +1,32 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteMonitoredItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class DeleteMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Items")] + public MonitoredItem[] Items; + + public DeleteMonitoredItemsRequest() + { + } + + public DeleteMonitoredItemsRequest(long SubscriptionId, MonitoredItem[] Items) + { + this.SubscriptionId = SubscriptionId; + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteMonitoredItemsResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteMonitoredItemsResponse.cs new file mode 100644 index 0000000..31c1b3e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteMonitoredItemsResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteMonitoredItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class DeleteMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public DeleteMonitoredItemsResponse() + { + } + + public DeleteMonitoredItemsResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteSubscriptionRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteSubscriptionRequest.cs new file mode 100644 index 0000000..47df92c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteSubscriptionRequest.cs @@ -0,0 +1,26 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteSubscriptionRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class DeleteSubscriptionRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + public DeleteSubscriptionRequest() + { + } + + public DeleteSubscriptionRequest(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteSubscriptionResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteSubscriptionResponse.cs new file mode 100644 index 0000000..e85398b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/DeleteSubscriptionResponse.cs @@ -0,0 +1,15 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "DeleteSubscriptionResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class DeleteSubscriptionResponse : ConnectedResponse +{ +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ExchangeCapabilitiesRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ExchangeCapabilitiesRequest.cs new file mode 100644 index 0000000..2752b40 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ExchangeCapabilitiesRequest.cs @@ -0,0 +1,26 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ExchangeCapabilitiesRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ExchangeCapabilitiesRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public string ClientCapabilities; + + public ExchangeCapabilitiesRequest() + { + } + + public ExchangeCapabilitiesRequest(string ClientCapabilities) + { + this.ClientCapabilities = ClientCapabilities; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ExchangeCapabilitiesResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ExchangeCapabilitiesResponse.cs new file mode 100644 index 0000000..a41472e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ExchangeCapabilitiesResponse.cs @@ -0,0 +1,26 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ExchangeCapabilitiesResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ExchangeCapabilitiesResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public string ServiceCapabilities; + + public ExchangeCapabilitiesResponse() + { + } + + public ExchangeCapabilitiesResponse(string ServiceCapabilities) + { + this.ServiceCapabilities = ServiceCapabilities; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetMonitoredItemsRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetMonitoredItemsRequest.cs new file mode 100644 index 0000000..0bd4e11 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetMonitoredItemsRequest.cs @@ -0,0 +1,26 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetMonitoredItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class GetMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + public GetMonitoredItemsRequest() + { + } + + public GetMonitoredItemsRequest(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetMonitoredItemsResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetMonitoredItemsResponse.cs new file mode 100644 index 0000000..c6d6137 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetMonitoredItemsResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetMonitoredItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class GetMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public MonitoredItem[] Items; + + public GetMonitoredItemsResponse() + { + } + + public GetMonitoredItemsResponse(MonitoredItem[] Items) + { + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetSubscriptionStateRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetSubscriptionStateRequest.cs new file mode 100644 index 0000000..a85d013 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetSubscriptionStateRequest.cs @@ -0,0 +1,30 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetSubscriptionStateRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class GetSubscriptionStateRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public ushort StateToGet; + + public GetSubscriptionStateRequest() + { + } + + public GetSubscriptionStateRequest(long SubscriptionId, ushort StateToGet) + { + this.SubscriptionId = SubscriptionId; + this.StateToGet = StateToGet; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetSubscriptionStateResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetSubscriptionStateResponse.cs new file mode 100644 index 0000000..16f1690 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/GetSubscriptionStateResponse.cs @@ -0,0 +1,48 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "GetSubscriptionStateResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class GetSubscriptionStateResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + private Variant State; + + public ArchestrAServices.ASBIDataContract.V2.Variant StateProperty + { + get + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = State.Type, + Length = State.Length, + Payload = State.Payload + }; + } + set + { + State.Type = value.Type; + State.Length = value.Length; + State.Payload = value.Payload; + } + } + + public GetSubscriptionStateResponse() + { + } + + public GetSubscriptionStateResponse(ArchestrAServices.ASBIDataContract.V2.Variant State) + { + this.State.Type = State.Type; + this.State.Length = State.Length; + this.State.Payload = State.Payload; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IASBIDataV2.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IASBIDataV2.cs new file mode 100644 index 0000000..4420c57 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IASBIDataV2.cs @@ -0,0 +1,70 @@ +using System.CodeDom.Compiler; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[ServiceContract(Namespace = "http://ASB.IDataV2", ConfigurationName = "IASBIDataV2")] +public interface IASBIDataV2 : IAuthenticateASB +{ + [OperationContract(Action = "http://ASB.IDataV2:activateUserIn", ReplyAction = "*")] + ActivateUserResponse ActivateUser(ActivateUserRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:exchangeCapabilitiesIn", ReplyAction = "*")] + ExchangeCapabilitiesResponse ExchangeCapabilities(ExchangeCapabilitiesRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:readIn", ReplyAction = "*")] + ReadResponse Read(ReadRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:writeIn", ReplyAction = "*")] + WriteResponse Write(WriteBasicRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:writeUserIn", ReplyAction = "*")] + WriteUserResponse WriteUser(WriteUserRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:writeVerifiedIn", ReplyAction = "*")] + WriteVerifiedResponse WriteVerified(WriteVerifiedRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:writeSecuredIn", ReplyAction = "*")] + WriteSecuredResponse WriteSecured(WriteSecuredRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:writeConfirmedIn", ReplyAction = "*")] + WriteConfirmedResponse WriteConfirmed(WriteConfirmedRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:confirmWriteIn", ReplyAction = "*")] + ConfirmWriteResponse ConfirmWrite(ConfirmWriteRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:publishWriteCompleteIn", ReplyAction = "*")] + PublishWriteCompleteResponse PublishWriteComplete(PublishWriteCompleteRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:createSubscriptionIn", ReplyAction = "*")] + CreateSubscriptionResponse CreateSubscription(CreateSubscriptionRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:setSubscriptionStateIn", ReplyAction = "*")] + SetSubscriptionStateResponse SetSubscriptionState(SetSubscriptionStateRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:getSubscriptionStateIn", ReplyAction = "*")] + GetSubscriptionStateResponse GetSubscriptionState(GetSubscriptionStateRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:deleteSubscriptionIn", ReplyAction = "*")] + DeleteSubscriptionResponse DeleteSubscription(DeleteSubscriptionRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:addMonitoredItemsIn", ReplyAction = "*")] + AddMonitoredItemsResponse AddMonitoredItems(AddMonitoredItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:deleteMonitoredItemsIn", ReplyAction = "*")] + DeleteMonitoredItemsResponse DeleteMonitoredItems(DeleteMonitoredItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:getMonitoredItemsIn", ReplyAction = "*")] + GetMonitoredItemsResponse GetMonitoredItems(GetMonitoredItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:publishIn", ReplyAction = "*")] + PublishResponse Publish(PublishRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:registerItemsIn", ReplyAction = "*")] + RegisterItemsResponse RegisterItems(RegisterItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:unregisterItemsIn", ReplyAction = "*")] + UnregisterItemsResponse UnregisterItems(UnregisterItemsRequest request); +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IDataASBEnumFactory.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IDataASBEnumFactory.cs new file mode 100644 index 0000000..68761af --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IDataASBEnumFactory.cs @@ -0,0 +1,143 @@ +using System; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public static class IDataASBEnumFactory +{ + public static DataType IntToDataType(ushort iValue) + { + return ASBEnumFactory.IntToDataType(iValue); + } + + public static ushort DataTypeToInt(DataType eValue) + { + return ASBEnumFactory.DataTypeToInt(eValue); + } + + public static DataQualityType IntToDataQualityType(ushort iValue) + { + try + { + return (DataQualityType)iValue; + } + catch (Exception) + { + return DataQualityType.Uncertain; + } + } + + public static ushort DataQualityTypeToInt(DataQualityType eValue) + { + return (ushort)eValue; + } + + public static ItemIdentityType IntToItemIdentityType(ushort iValue) + { + try + { + return (ItemIdentityType)iValue; + } + catch (Exception) + { + return ItemIdentityType.Id; + } + } + + public static ushort ItemIdentityTypeToInt(ItemIdentityType eValue) + { + return (ushort)eValue; + } + + public static ItemReferenceType IntToItemReferenceType(ushort iValue) + { + try + { + return (ItemReferenceType)iValue; + } + catch (Exception) + { + return ItemReferenceType.None; + } + } + + public static ushort ItemReferenceTypeToInt(ItemReferenceType eValue) + { + return (ushort)eValue; + } + + public static SubscriptionStateType IntToSubscriptionStateType(ushort iValue) + { + try + { + return (SubscriptionStateType)iValue; + } + catch (Exception) + { + return SubscriptionStateType.SubsUnknown; + } + } + + public static ushort SubscriptionStateTypeToInt(SubscriptionStateType eValue) + { + return (ushort)eValue; + } + + public static WriteCapabilityType IntToWriteCapabilityType(ushort iValue) + { + try + { + return (WriteCapabilityType)iValue; + } + catch (Exception) + { + return WriteCapabilityType.WriteUnknown; + } + } + + public static ushort WriteCapabilityTypeToInt(WriteCapabilityType eValue) + { + return (ushort)eValue; + } + + public static OpcQualityMask IntToOpcQualityMask(ushort iValue) + { + try + { + return (OpcQualityMask)iValue; + } + catch (Exception) + { + return OpcQualityMask.MAGELLAN_QUALITY_INITIALIZING; + } + } + + public static ushort OpcQualityMaskToInt(OpcQualityMask eValue) + { + return (ushort)eValue; + } + + public static MonitoredItem MakeDeleteMonitoredItem(ItemIdentity Item) + { + return new MonitoredItem + { + Item = Item, + SampleInterval = 0uL, + Active = false, + TimeDeadband = 0uL, + ValueDeadband = new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = DataTypeToInt(DataType.TypeUnknown), + Length = 0, + Payload = null + }, + UserData = new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = DataTypeToInt(DataType.TypeUnknown), + Length = 0, + Payload = null + } + }; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IDataV2.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IDataV2.cs new file mode 100644 index 0000000..b9fe9e2 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/IDataV2.cs @@ -0,0 +1,56 @@ +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public interface IDataV2 +{ + IAsbInterfaceSettings Settings { get; } + + ArchestrAServices.ASBContract.ArchestrAResult KeepAlive(ArchestrAServices.ASBContract.ConnectionId Id); + + void OnConnect(ArchestrAServices.ASBContract.ConnectionId ConnectionId, ulong Timeout); + + ArchestrAServices.ASBContract.ArchestrAResult ActivateUser(ArchestrAServices.ASBContract.ConnectionId Id, UserToken UserToken); + + ArchestrAServices.ASBContract.ArchestrAResult ExchangeCapabilities(out string ServiceCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, string ClientCapabilities); + + ArchestrAServices.ASBContract.ArchestrAResult Read(out ItemStatus[] Status, out RuntimeValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity[] Items); + + ArchestrAServices.ASBContract.ArchestrAResult Write(out ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, uint WriteHandle); + + ArchestrAServices.ASBContract.ArchestrAResult WriteUser(out ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle); + + ArchestrAServices.ASBContract.ArchestrAResult WriteVerified(out ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, UserToken User, UserToken Supervisor, uint WriteHandle); + + ArchestrAServices.ASBContract.ArchestrAResult WriteSecured(out ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle); + + ArchestrAServices.ASBContract.ArchestrAResult WriteConfirmed(out WriteValue ValueReceived, out long WriteToken, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity Item, WriteValue Value, UserToken User, UserToken Supervisor); + + ArchestrAServices.ASBContract.ArchestrAResult ConfirmWrite(ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity Item, long WriteToken, WriteValue Value, UserToken User, UserToken Supervisor, uint WriteHandle); + + ArchestrAServices.ASBContract.ArchestrAResult PublishWriteComplete(out ItemWriteComplete[] CompleteWrites, ArchestrAServices.ASBContract.ConnectionId Id); + + ArchestrAServices.ASBContract.ArchestrAResult CreateSubscription(out long SubscriptionId, ArchestrAServices.ASBContract.ConnectionId Id, long MaxQueueSize, ulong SampleInterval); + + ArchestrAServices.ASBContract.ArchestrAResult SetSubscriptionState(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant NewState, ushort StateToChange); + + ArchestrAServices.ASBContract.ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.V2.Variant State, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ushort StateToGet); + + ArchestrAServices.ASBContract.ArchestrAResult DeleteSubscription(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId); + + ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ItemStatus[] Status, out ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, MonitoredItem[] Items, byte RequireId); + + ArchestrAServices.ASBContract.ArchestrAResult DeleteMonitoredItems(out ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, MonitoredItem[] Items); + + ArchestrAServices.ASBContract.ArchestrAResult GetMonitoredItems(out MonitoredItem[] Items, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId); + + ArchestrAServices.ASBContract.ArchestrAResult Publish(out ItemStatus[] Status, out MonitoredItemValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId); + + ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ItemStatus[] Status, out ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity[] Items, byte RequireId, byte RegisterOnly); + + ArchestrAServices.ASBContract.ArchestrAResult UnregisterItems(out ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ItemIdentity[] Items); + + void OnDisconnect(ArchestrAServices.ASBContract.ConnectionId Id); +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemIdentity.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemIdentity.cs new file mode 100644 index 0000000..54499b3 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemIdentity.cs @@ -0,0 +1,261 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Text; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemIdentity : IASBCustomSerializableType +{ + private ushort typeField; + + private ushort referenceTypeField; + + private string nameField; + + private string contextNameField; + + private ulong idField; + + private bool idFieldSpecified; + + public ushort Type + { + get + { + return typeField; + } + set + { + typeField = value; + } + } + + public ushort ReferenceType + { + get + { + return referenceTypeField; + } + set + { + referenceTypeField = value; + } + } + + [XmlElement(IsNullable = true)] + public string Name + { + get + { + return nameField; + } + set + { + nameField = value; + } + } + + [XmlElement(IsNullable = true)] + public string ContextName + { + get + { + return contextNameField; + } + set + { + contextNameField = value; + } + } + + public ulong Id + { + get + { + return idField; + } + set + { + idField = value; + IdSpecified = true; + } + } + + [XmlIgnore] + public bool IdSpecified + { + get + { + return idFieldSpecified; + } + set + { + idFieldSpecified = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer == null) + { + return; + } + try + { + writer.Write(typeField); + writer.Write(referenceTypeField); + if (!string.IsNullOrEmpty(nameField)) + { + byte[] bytes = Encoding.Unicode.GetBytes(nameField); + writer.Write((uint)bytes.Length); + writer.Write(bytes); + } + else + { + writer.Write(0u); + } + if (!string.IsNullOrEmpty(contextNameField)) + { + byte[] bytes2 = Encoding.Unicode.GetBytes(contextNameField); + writer.Write((uint)bytes2.Length); + writer.Write(bytes2); + } + else + { + writer.Write(0u); + } + writer.Write(Id); + writer.Write(IdSpecified); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (!MemoryStreamHelper.ValidateStream(reader)) + { + return; + } + try + { + typeField = reader.ReadUInt16(); + referenceTypeField = reader.ReadUInt16(); + int num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes = reader.ReadBytes(num); + nameField = Encoding.Unicode.GetString(bytes); + } + else + { + nameField = string.Empty; + } + num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes2 = reader.ReadBytes(num); + contextNameField = Encoding.Unicode.GetString(bytes2); + } + else + { + contextNameField = string.Empty; + } + idField = reader.ReadUInt64(); + idFieldSpecified = reader.ReadBoolean(); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + ItemIdentity[] array = new ItemIdentity[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is ItemIdentity[] array) + { + bw.Write(array.Length); + ItemIdentity[] array2 = array; + foreach (ItemIdentity itemIdentity in array2) + { + itemIdentity.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemIdentity: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref ItemIdentity result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.typeField = reader.ReadUInt16(); + result.referenceTypeField = reader.ReadUInt16(); + int num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes = reader.ReadBytes(num); + result.nameField = Encoding.Unicode.GetString(bytes); + } + else + { + result.nameField = string.Empty; + } + num = reader.ReadInt32(); + if (num > 0) + { + byte[] bytes2 = reader.ReadBytes(num); + result.contextNameField = Encoding.Unicode.GetString(bytes2); + } + else + { + result.contextNameField = string.Empty; + } + result.idField = reader.ReadUInt64(); + result.idFieldSpecified = reader.ReadBoolean(); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemIdentityType.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemIdentityType.cs new file mode 100644 index 0000000..91817e9 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemIdentityType.cs @@ -0,0 +1,15 @@ +using System; +using System.CodeDom.Compiler; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public enum ItemIdentityType +{ + Name, + Id, + NameAndId +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemReferenceType.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemReferenceType.cs new file mode 100644 index 0000000..0d62313 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemReferenceType.cs @@ -0,0 +1,16 @@ +using System; +using System.CodeDom.Compiler; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.233")] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public enum ItemReferenceType +{ + None, + Absolute, + Hierarchical, + Relative +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemRegistration.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemRegistration.cs new file mode 100644 index 0000000..285e6b0 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemRegistration.cs @@ -0,0 +1,73 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemRegistration +{ + private ulong idField; + + private bool idFieldSpecified; + + private ushort writeCapabilityField; + + private bool writeCapabilityFieldSpecified; + + public ulong Id + { + get + { + return idField; + } + set + { + idField = value; + IdSpecified = true; + } + } + + [XmlIgnore] + public bool IdSpecified + { + get + { + return idFieldSpecified; + } + set + { + idFieldSpecified = value; + } + } + + public ushort WriteCapability + { + get + { + return writeCapabilityField; + } + set + { + writeCapabilityField = value; + WriteCapabilitySpecified = true; + } + } + + [XmlIgnore] + public bool WriteCapabilitySpecified + { + get + { + return writeCapabilityFieldSpecified; + } + set + { + writeCapabilityFieldSpecified = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemStatus.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemStatus.cs new file mode 100644 index 0000000..6ae9ff4 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemStatus.cs @@ -0,0 +1,168 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemStatus : IASBCustomSerializableType +{ + private ItemIdentity itemField; + + private ushort errorCodeField; + + private bool errorCodeFieldSpecified; + + private ASBStatus statusField; + + public ItemIdentity Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + public ushort ErrorCode + { + get + { + return errorCodeField; + } + set + { + errorCodeField = value; + ErrorCodeSpecified = true; + } + } + + [XmlIgnore] + public bool ErrorCodeSpecified + { + get + { + return errorCodeFieldSpecified; + } + set + { + errorCodeFieldSpecified = value; + } + } + + public ASBStatus Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer != null) + { + try + { + itemField.WriteToStream(writer); + statusField.WriteToStream(writer); + writer.Write(errorCodeField); + writer.Write(errorCodeFieldSpecified); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + try + { + itemField.InitializeFromStream(reader); + statusField.InitializeFromStream(reader); + errorCodeField = reader.ReadUInt16(); + errorCodeFieldSpecified = reader.ReadBoolean(); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + ItemStatus[] array = new ItemStatus[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is ItemStatus[] array) + { + bw.Write(array.Length); + ItemStatus[] array2 = array; + foreach (ItemStatus itemStatus in array2) + { + itemStatus.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" ItemStatus: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref ItemStatus result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.itemField.InitializeFromStream(reader); + result.statusField.InitializeFromStream(reader); + result.errorCodeField = reader.ReadUInt16(); + result.errorCodeFieldSpecified = reader.ReadBoolean(); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemWriteComplete.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemWriteComplete.cs new file mode 100644 index 0000000..7fad9f5 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ItemWriteComplete.cs @@ -0,0 +1,58 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemWriteComplete +{ + private ItemStatus[] statusField; + + private uint writeHandleField; + + private bool writeHandleFieldSpecified; + + [XmlElement("Status")] + public ItemStatus[] Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public uint WriteHandle + { + get + { + return writeHandleField; + } + set + { + writeHandleField = value; + WriteHandleSpecified = true; + } + } + + [XmlIgnore] + public bool WriteHandleSpecified + { + get + { + return writeHandleFieldSpecified; + } + set + { + writeHandleFieldSpecified = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MemoryStreamHelper.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MemoryStreamHelper.cs new file mode 100644 index 0000000..f4c6b1e --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MemoryStreamHelper.cs @@ -0,0 +1,37 @@ +#define TRACE +using System.Diagnostics; +using System.IO; +using ArchestrAServices.Common; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public class MemoryStreamHelper +{ + public static bool ValidateStream(BinaryReader reader) + { + if (reader == null || reader.BaseStream == null || reader.BaseStream.Length <= 0) + { + return false; + } + return true; + } + + public static bool ValidateStream(BinaryReader reader, int arrayCnt) + { + bool result = false; + if (ValidateStream(reader)) + { + reader.BaseStream.Position = 0L; + int num = reader.ReadInt32(); + if (num != arrayCnt) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, $" MemoryStreamHelper: ValidateStream. Array count{arrayCnt}, doesn't match with the actual count {num}"); + } + else + { + result = true; + } + } + return result; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MonitoredItem.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MonitoredItem.cs new file mode 100644 index 0000000..fcbda07 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MonitoredItem.cs @@ -0,0 +1,160 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Runtime.Serialization; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract.V2; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct MonitoredItem +{ + private ItemIdentity itemField; + + private ulong sampleIntervalField; + + private bool activeField; + + private bool activeFieldSpecified; + + private ulong timeDeadbandField; + + private bool timeDeadbandFieldSpecified; + + private Variant valueDeadbandField; + + private Variant userDataField; + + [OptionalField(VersionAdded = 2)] + private bool bufferedField; + + public ItemIdentity Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + public ulong SampleInterval + { + get + { + return sampleIntervalField; + } + set + { + sampleIntervalField = value; + } + } + + public bool Active + { + get + { + return activeField; + } + set + { + activeField = value; + ActiveSpecified = true; + } + } + + [XmlIgnore] + public bool ActiveSpecified + { + get + { + return activeFieldSpecified; + } + set + { + activeFieldSpecified = value; + } + } + + public ulong TimeDeadband + { + get + { + return timeDeadbandField; + } + set + { + timeDeadbandField = value; + TimeDeadbandSpecified = true; + } + } + + [XmlIgnore] + public bool TimeDeadbandSpecified + { + get + { + return timeDeadbandFieldSpecified; + } + set + { + timeDeadbandFieldSpecified = value; + } + } + + public ArchestrAServices.ASBIDataContract.V2.Variant ValueDeadband + { + get + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = valueDeadbandField.Type, + Length = valueDeadbandField.Length, + Payload = valueDeadbandField.Payload + }; + } + set + { + valueDeadbandField.Type = value.Type; + valueDeadbandField.Length = value.Length; + valueDeadbandField.Payload = value.Payload; + } + } + + public ArchestrAServices.ASBIDataContract.V2.Variant UserData + { + get + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = userDataField.Type, + Length = userDataField.Length, + Payload = userDataField.Payload + }; + } + set + { + userDataField.Type = value.Type; + userDataField.Length = value.Length; + userDataField.Payload = value.Payload; + } + } + + public bool Buffered + { + get + { + return bufferedField; + } + set + { + bufferedField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MonitoredItemValue.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MonitoredItemValue.cs new file mode 100644 index 0000000..a6edefa --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/MonitoredItemValue.cs @@ -0,0 +1,136 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct MonitoredItemValue : IASBCustomSerializableType +{ + private ItemIdentity itemField; + + private RuntimeValue valueField; + + private Variant userDataField; + + public ItemIdentity Item + { + get + { + return itemField; + } + set + { + itemField = value; + } + } + + public RuntimeValue Value + { + get + { + return valueField; + } + set + { + valueField = value; + } + } + + public ArchestrAServices.ASBIDataContract.V2.Variant UserData + { + get + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = userDataField.Type, + Length = userDataField.Length, + Payload = userDataField.Payload + }; + } + set + { + userDataField.Type = value.Type; + userDataField.Length = value.Length; + userDataField.Payload = value.Payload; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer != null) + { + itemField.WriteToStream(writer); + valueField.WriteToStream(writer); + userDataField.WriteToStream(writer); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + itemField.InitializeFromStream(reader); + valueField.InitializeFromStream(reader); + userDataField.InitializeFromStream(reader); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + MonitoredItemValue[] array = new MonitoredItemValue[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is MonitoredItemValue[] array) + { + bw.Write(array.Length); + MonitoredItemValue[] array2 = array; + foreach (MonitoredItemValue monitoredItemValue in array2) + { + monitoredItemValue.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" MonitoredItemValue: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref MonitoredItemValue result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.itemField.InitializeFromStream(reader); + result.valueField.InitializeFromStream(reader); + result.userDataField.InitializeFromStream(reader); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/OpcQualityMask.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/OpcQualityMask.cs new file mode 100644 index 0000000..cd8f64b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/OpcQualityMask.cs @@ -0,0 +1,28 @@ +namespace ArchestrAServices.ASBIDataV2Contract; + +public enum OpcQualityMask : ushort +{ + OPC_LIMIT_OK = 0, + OPC_QUALITY_BAD = 0, + OPC_LIMIT_LOW = 1, + OPC_LIMIT_HIGH = 2, + OPC_LIMIT_MASK = 3, + OPC_LIMIT_CONST = 3, + OPC_QUALITY_CONFIG_ERROR = 4, + OPC_QUALITY_NOT_CONNECTED = 8, + OPC_QUALITY_DEVICE_FAILURE = 12, + OPC_QUALITY_SENSOR_FAILURE = 16, + OPC_QUALITY_LAST_KNOWN = 20, + OPC_QUALITY_COMM_FAILURE = 24, + OPC_QUALITY_OUT_OF_SERVICE = 28, + MAGELLAN_QUALITY_INITIALIZING = 32, + OPC_QUALITY_UNCERTAIN = 64, + OPC_QUALITY_LAST_USABLE = 68, + OPC_QUALITY_SENSOR_CAL = 80, + OPC_QUALITY_EGU_EXCEEDED = 84, + OPC_QUALITY_SUB_NORMAL = 88, + OPC_QUALITY_GOOD = 192, + OPC_QUALITY_MASK = 192, + OPC_QUALITY_LOCAL_OVERRIDE = 216, + OPC_STATUS_MASK = 252 +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishRequest.cs new file mode 100644 index 0000000..d8ca017 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishRequest.cs @@ -0,0 +1,26 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class PublishRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + public PublishRequest() + { + } + + public PublishRequest(long SubscriptionId) + { + this.SubscriptionId = SubscriptionId; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishResponse.cs new file mode 100644 index 0000000..a9359b8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishResponse.cs @@ -0,0 +1,33 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class PublishResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public MonitoredItemValue[] Values; + + public PublishResponse() + { + } + + public PublishResponse(ItemStatus[] Status, MonitoredItemValue[] Values) + { + this.Status = Status; + this.Values = Values; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishWriteCompleteRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishWriteCompleteRequest.cs new file mode 100644 index 0000000..e6b4e1b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishWriteCompleteRequest.cs @@ -0,0 +1,15 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishWriteCompleteRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class PublishWriteCompleteRequest : ConnectedRequest +{ +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishWriteCompleteResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishWriteCompleteResponse.cs new file mode 100644 index 0000000..f569daa --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/PublishWriteCompleteResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "PublishWriteCompleteResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class PublishWriteCompleteResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("CompleteWrites")] + public ItemWriteComplete[] CompleteWrites; + + public PublishWriteCompleteResponse() + { + } + + public PublishWriteCompleteResponse(ItemWriteComplete[] CompleteWrites) + { + this.CompleteWrites = CompleteWrites; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ReadRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ReadRequest.cs new file mode 100644 index 0000000..2235672 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ReadRequest.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ReadRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ReadRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + public ReadRequest() + { + } + + public ReadRequest(ItemIdentity[] Items) + { + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ReadResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ReadResponse.cs new file mode 100644 index 0000000..9c45457 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/ReadResponse.cs @@ -0,0 +1,33 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "ReadResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class ReadResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public RuntimeValue[] Values; + + public ReadResponse() + { + } + + public ReadResponse(ItemStatus[] Status, RuntimeValue[] Values) + { + this.Status = Status; + this.Values = Values; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RegisterItemsRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RegisterItemsRequest.cs new file mode 100644 index 0000000..02d48ea --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RegisterItemsRequest.cs @@ -0,0 +1,36 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "RegisterItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class RegisterItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public bool RequireId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public bool RegisterOnly; + + public RegisterItemsRequest() + { + } + + public RegisterItemsRequest(ItemIdentity[] Items, bool RequireId, bool RegisterOnly) + { + this.Items = Items; + this.RequireId = RequireId; + this.RegisterOnly = RegisterOnly; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RegisterItemsResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RegisterItemsResponse.cs new file mode 100644 index 0000000..34749a1 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RegisterItemsResponse.cs @@ -0,0 +1,33 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "RegisterItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class RegisterItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("ItemCapabilities")] + public ItemRegistration[] ItemCapabilities; + + public RegisterItemsResponse() + { + } + + public RegisterItemsResponse(ItemStatus[] Status, ItemRegistration[] ItemCapabilities) + { + this.Status = Status; + this.ItemCapabilities = ItemCapabilities; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RuntimeValue.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RuntimeValue.cs new file mode 100644 index 0000000..14408d8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/RuntimeValue.cs @@ -0,0 +1,176 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct RuntimeValue : IASBCustomSerializableType +{ + private DateTime timestampField; + + private bool timestampFieldSpecified; + + private Variant valueField; + + private ASBStatus statusField; + + public DateTime Timestamp + { + get + { + return timestampField; + } + set + { + timestampField = value; + TimestampSpecified = true; + } + } + + [XmlIgnore] + public bool TimestampSpecified + { + get + { + return timestampFieldSpecified; + } + set + { + timestampFieldSpecified = value; + } + } + + public ArchestrAServices.ASBIDataContract.V2.Variant Value + { + get + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = valueField.Type, + Length = valueField.Length, + Payload = valueField.Payload + }; + } + set + { + valueField.Type = value.Type; + valueField.Length = value.Length; + valueField.Payload = value.Payload; + } + } + + public ASBStatus Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer != null) + { + try + { + writer.Write(timestampField.ToBinary()); + writer.Write(timestampFieldSpecified); + valueField.WriteToStream(writer); + statusField.WriteToStream(writer); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + try + { + timestampField = DateTime.FromBinary(reader.ReadInt64()); + timestampFieldSpecified = reader.ReadBoolean(); + valueField.InitializeFromStream(reader); + statusField.InitializeFromStream(reader); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + RuntimeValue[] array = new RuntimeValue[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is RuntimeValue[] array) + { + bw.Write(array.Length); + RuntimeValue[] array2 = array; + foreach (RuntimeValue runtimeValue in array2) + { + runtimeValue.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" RuntimeValue: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref RuntimeValue result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.timestampField = DateTime.FromBinary(reader.ReadInt64()); + result.timestampFieldSpecified = reader.ReadBoolean(); + result.valueField.InitializeFromStream(reader); + result.statusField.InitializeFromStream(reader); + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SetSubscriptionStateRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SetSubscriptionStateRequest.cs new file mode 100644 index 0000000..7daa1a8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SetSubscriptionStateRequest.cs @@ -0,0 +1,56 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "SetSubscriptionStateRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class SetSubscriptionStateRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + private Variant NewState; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public ushort StateToChange; + + public ArchestrAServices.ASBIDataContract.V2.Variant NewStateProperty + { + get + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = NewState.Type, + Length = NewState.Length, + Payload = NewState.Payload + }; + } + set + { + NewState.Type = value.Type; + NewState.Length = value.Length; + NewState.Payload = value.Payload; + } + } + + public SetSubscriptionStateRequest() + { + } + + public SetSubscriptionStateRequest(long SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant NewState, ushort StateToChange) + { + this.SubscriptionId = SubscriptionId; + this.NewState.Type = NewState.Type; + this.NewState.Length = NewState.Length; + this.NewState.Payload = NewState.Payload; + this.StateToChange = StateToChange; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SetSubscriptionStateResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SetSubscriptionStateResponse.cs new file mode 100644 index 0000000..026c86b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SetSubscriptionStateResponse.cs @@ -0,0 +1,15 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "SetSubscriptionStateResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class SetSubscriptionStateResponse : ConnectedResponse +{ +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SubscriptionStateType.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SubscriptionStateType.cs new file mode 100644 index 0000000..c3c7208 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/SubscriptionStateType.cs @@ -0,0 +1,9 @@ +namespace ArchestrAServices.ASBIDataV2Contract; + +public enum SubscriptionStateType : ushort +{ + SubsEnableState = 1, + SubsSampleInterval = 2, + SubsMaxQueueSize = 3, + SubsUnknown = ushort.MaxValue +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UnregisterItemsRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UnregisterItemsRequest.cs new file mode 100644 index 0000000..0323106 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UnregisterItemsRequest.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "UnregisterItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class UnregisterItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + public UnregisterItemsRequest() + { + } + + public UnregisterItemsRequest(ItemIdentity[] Items) + { + this.Items = Items; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UnregisterItemsResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UnregisterItemsResponse.cs new file mode 100644 index 0000000..a036d5f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UnregisterItemsResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "UnregisterItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class UnregisterItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public UnregisterItemsResponse() + { + } + + public UnregisterItemsResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UserToken.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UserToken.cs new file mode 100644 index 0000000..fe075ec --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/UserToken.cs @@ -0,0 +1,193 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct UserToken +{ + private ushort encryptionField; + + private bool encryptionFieldSpecified; + + private string hostNameField; + + private ushort idTypeField; + + private bool idTypeFieldSpecified; + + private string locationIDField; + + private string passwordField; + + private byte[] samlTokenField; + + private string userNameField; + + private ushort validityField; + + private bool validityFieldSpecified; + + private byte[] x509CertificateField; + + public ushort Encryption + { + get + { + return encryptionField; + } + set + { + encryptionField = value; + EncryptionSpecified = true; + } + } + + [XmlIgnore] + public bool EncryptionSpecified + { + get + { + return encryptionFieldSpecified; + } + set + { + encryptionFieldSpecified = value; + } + } + + [XmlElement(IsNullable = true)] + public string HostName + { + get + { + return hostNameField; + } + set + { + hostNameField = value; + } + } + + public ushort IdType + { + get + { + return idTypeField; + } + set + { + idTypeField = value; + IdTypeSpecified = true; + } + } + + [XmlIgnore] + public bool IdTypeSpecified + { + get + { + return idTypeFieldSpecified; + } + set + { + idTypeFieldSpecified = value; + } + } + + [XmlElement(IsNullable = true)] + public string LocationID + { + get + { + return locationIDField; + } + set + { + locationIDField = value; + } + } + + [XmlElement(IsNullable = true)] + public string Password + { + get + { + return passwordField; + } + set + { + passwordField = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] SamlToken + { + get + { + return samlTokenField; + } + set + { + samlTokenField = value; + } + } + + [XmlElement(IsNullable = true)] + public string UserName + { + get + { + return userNameField; + } + set + { + userNameField = value; + } + } + + public ushort Validity + { + get + { + return validityField; + } + set + { + validityField = value; + ValiditySpecified = true; + } + } + + [XmlIgnore] + public bool ValiditySpecified + { + get + { + return validityFieldSpecified; + } + set + { + validityFieldSpecified = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] X509Certificate + { + get + { + return x509CertificateField; + } + set + { + x509CertificateField = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/Variant.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/Variant.cs new file mode 100644 index 0000000..e9a124f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/Variant.cs @@ -0,0 +1,176 @@ +#define TRACE +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.IO; +using System.Xml.Serialization; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct Variant : IASBCustomSerializableType +{ + private ushort typeField; + + private int lengthField; + + private byte[] payloadField; + + public ushort Type + { + get + { + return typeField; + } + set + { + typeField = value; + } + } + + public int Length + { + get + { + return lengthField; + } + set + { + lengthField = value; + } + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[] Payload + { + get + { + return payloadField; + } + set + { + payloadField = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + if (writer == null) + { + return; + } + try + { + writer.Write(typeField); + writer.Write(lengthField); + if (payloadField != null) + { + writer.Write((uint)payloadField.Length); + writer.Write(payloadField); + } + else + { + writer.Write(0u); + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" Variant: WriteTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + if (!MemoryStreamHelper.ValidateStream(reader)) + { + return; + } + try + { + typeField = reader.ReadUInt16(); + lengthField = reader.ReadInt32(); + int num = reader.ReadInt32(); + if (num > 0) + { + payloadField = reader.ReadBytes(num); + } + else + { + payloadField = null; + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" Variant: InitializeFrom. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + object result = null; + if (MemoryStreamHelper.ValidateStream(reader, arrayCnt)) + { + try + { + Variant[] array = new Variant[arrayCnt]; + for (int i = 0; i < arrayCnt; i++) + { + InitializeFrom(reader, ref array[i]); + } + result = array; + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" InitializeFromArray: InitializeFromArray. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + return result; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph == null || bw == null) + { + return; + } + try + { + if (graph is Variant[] array) + { + bw.Write(array.Length); + Variant[] array2 = array; + foreach (Variant variant in array2) + { + variant.WriteToStream(bw); + } + } + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Error, 0, $" Variant: WriteArrayTo. Exception raised {ex.Message} \n Stack Trace: {ex.StackTrace}"); + } + } + + private static void InitializeFrom(BinaryReader reader, ref Variant result) + { + if (MemoryStreamHelper.ValidateStream(reader)) + { + result.typeField = reader.ReadUInt16(); + result.lengthField = reader.ReadInt32(); + int num = reader.ReadInt32(); + if (num > 0) + { + result.payloadField = reader.ReadBytes(num); + } + else + { + result.payloadField = null; + } + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/VariantTester.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/VariantTester.cs new file mode 100644 index 0000000..41bcc7d --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/VariantTester.cs @@ -0,0 +1,111 @@ +using System.IO; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +public struct VariantTester : IASBCustomSerializableType +{ + private Variant _testVariant = default(Variant); + + public ushort Type + { + get + { + return _testVariant.Type; + } + set + { + _testVariant.Type = value; + } + } + + public int Length + { + get + { + return _testVariant.Length; + } + set + { + _testVariant.Length = value; + } + } + + public byte[] Payload + { + get + { + return _testVariant.Payload; + } + set + { + _testVariant.Payload = value; + } + } + + public void WriteToStream(BinaryWriter writer) + { + _testVariant.WriteToStream(writer); + } + + public void InitializeFromStream(BinaryReader reader) + { + _testVariant.InitializeFromStream(reader); + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayCnt) + { + if (_testVariant.InitializeArrayFromStream(reader, arrayCnt) is Variant[] array) + { + ArchestrAServices.ASBIDataContract.V2.Variant[] array2 = new ArchestrAServices.ASBIDataContract.V2.Variant[array.Length]; + for (int i = 0; i < array.Length; i++) + { + array2[i] = default(ArchestrAServices.ASBIDataContract.V2.Variant); + array2[i].Type = array[i].Type; + array2[i].Length = array[i].Length; + array2[i].Payload = array[i].Payload; + } + return array2; + } + return null; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter bw) + { + if (graph is ArchestrAServices.ASBIDataContract.V2.Variant[] array) + { + Variant[] array2 = new Variant[array.Length]; + for (int i = 0; i < array.Length; i++) + { + array2[i] = default(Variant); + array2[i].Type = array[i].Type; + array2[i].Length = array[i].Length; + array2[i].Payload = array[i].Payload; + } + _testVariant.WriteArrayToStream(array2, ref bw); + } + } + + public VariantTester(ArchestrAServices.ASBIDataContract.V2.Variant Value) + { + _testVariant.Type = Value.Type; + _testVariant.Length = Value.Length; + _testVariant.Payload = Value.Payload; + } + + public ArchestrAServices.ASBIDataContract.V2.Variant GetAsVariant() + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = _testVariant.Type, + Length = _testVariant.Length, + Payload = _testVariant.Payload + }; + } + + public void Initialize() + { + _testVariant = default(Variant); + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteBasicRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteBasicRequest.cs new file mode 100644 index 0000000..55b4fdb --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteBasicRequest.cs @@ -0,0 +1,37 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteBasicRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteBasicRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public uint WriteHandle; + + public WriteBasicRequest() + { + } + + public WriteBasicRequest(ItemIdentity[] Items, WriteValue[] Values, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteCapabilityType.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteCapabilityType.cs new file mode 100644 index 0000000..7929eeb --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteCapabilityType.cs @@ -0,0 +1,10 @@ +namespace ArchestrAServices.ASBIDataV2Contract; + +public enum WriteCapabilityType : ushort +{ + WriteUnknown = 0, + WriteNonsecure = 1, + WriteUser = 2, + WriteConfirm = 4, + WriteVerify = 8 +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteConfirmedRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteConfirmedRequest.cs new file mode 100644 index 0000000..3c4c34c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteConfirmedRequest.cs @@ -0,0 +1,38 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteConfirmedRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteConfirmedRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public ItemIdentity Item; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public WriteValue Value; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 3)] + public UserToken Supervisor; + + public WriteConfirmedRequest() + { + } + + public WriteConfirmedRequest(ItemIdentity Item, WriteValue Value, UserToken User, UserToken Supervisor) + { + this.Item = Item; + this.Value = Value; + this.User = User; + this.Supervisor = Supervisor; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteConfirmedResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteConfirmedResponse.cs new file mode 100644 index 0000000..7eec21c --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteConfirmedResponse.cs @@ -0,0 +1,30 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteConfirmedResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteConfirmedResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public WriteValue ValueReceived; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public long WriteToken; + + public WriteConfirmedResponse() + { + } + + public WriteConfirmedResponse(WriteValue ValueReceived, long WriteToken) + { + this.ValueReceived = ValueReceived; + this.WriteToken = WriteToken; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteResponse.cs new file mode 100644 index 0000000..4108a7f --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteBasicResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public WriteResponse() + { + } + + public WriteResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteSecuredRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteSecuredRequest.cs new file mode 100644 index 0000000..dcf89f8 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteSecuredRequest.cs @@ -0,0 +1,41 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteSecuredRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteSecuredRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 3)] + public uint WriteHandle; + + public WriteSecuredRequest() + { + } + + public WriteSecuredRequest(ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.User = User; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteSecuredResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteSecuredResponse.cs new file mode 100644 index 0000000..7c5096b --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteSecuredResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteSecuredResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteSecuredResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public WriteSecuredResponse() + { + } + + public WriteSecuredResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteUserRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteUserRequest.cs new file mode 100644 index 0000000..9619e47 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteUserRequest.cs @@ -0,0 +1,41 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteUserRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteUserRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 3)] + public uint WriteHandle; + + public WriteUserRequest() + { + } + + public WriteUserRequest(ItemIdentity[] Items, WriteValue[] Values, UserToken User, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.User = User; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteUserResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteUserResponse.cs new file mode 100644 index 0000000..a8892ac --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteUserResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteUserResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteUserResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public WriteUserResponse() + { + } + + public WriteUserResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteValue.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteValue.cs new file mode 100644 index 0000000..dcdd9f0 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteValue.cs @@ -0,0 +1,154 @@ +using System; +using System.CodeDom.Compiler; +using System.Diagnostics; +using System.Xml.Serialization; +using ArchestrAServices.ASBIDataContract.V2; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[Serializable] +[GeneratedCode("System.Xml", "4.0.30319.18054")] +[DebuggerStepThrough] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct WriteValue +{ + private bool hasQTField; + + private bool hasQTFieldSpecified; + + private Variant valueField; + + private ASBStatus statusField; + + private DateTime timestampField; + + private bool timestampFieldSpecified; + + private string commentField; + + private int arrayElementIndexField; + + private bool arrayElementIndexFieldSpecified; + + public bool HasQT + { + get + { + return hasQTField; + } + set + { + hasQTField = value; + HasQTSpecified = true; + } + } + + [XmlIgnore] + public bool HasQTSpecified + { + get + { + return hasQTFieldSpecified; + } + set + { + hasQTFieldSpecified = value; + } + } + + public ArchestrAServices.ASBIDataContract.V2.Variant Value + { + get + { + return new ArchestrAServices.ASBIDataContract.V2.Variant + { + Type = valueField.Type, + Length = valueField.Length, + Payload = valueField.Payload + }; + } + set + { + valueField.Type = value.Type; + valueField.Length = value.Length; + valueField.Payload = value.Payload; + } + } + + public ASBStatus Status + { + get + { + return statusField; + } + set + { + statusField = value; + } + } + + public DateTime Timestamp + { + get + { + return timestampField; + } + set + { + timestampField = value; + TimestampSpecified = true; + } + } + + [XmlIgnore] + public bool TimestampSpecified + { + get + { + return timestampFieldSpecified; + } + set + { + timestampFieldSpecified = value; + } + } + + [XmlElement(IsNullable = true)] + public string Comment + { + get + { + return commentField; + } + set + { + commentField = value; + } + } + + public int ArrayElementIndex + { + get + { + return arrayElementIndexField; + } + set + { + arrayElementIndexField = value; + ArrayElementIndexSpecified = true; + } + } + + [XmlIgnore] + public bool ArrayElementIndexSpecified + { + get + { + return arrayElementIndexFieldSpecified; + } + set + { + arrayElementIndexFieldSpecified = value; + } + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteVerifiedRequest.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteVerifiedRequest.cs new file mode 100644 index 0000000..8ce3352 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteVerifiedRequest.cs @@ -0,0 +1,45 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteVerifiedRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteVerifiedRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[] Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public WriteValue[] Values; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public UserToken User; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 3)] + public UserToken Supervisor; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 4)] + public uint WriteHandle; + + public WriteVerifiedRequest() + { + } + + public WriteVerifiedRequest(ItemIdentity[] Items, WriteValue[] Values, UserToken User, UserToken Supervisor, uint WriteHandle) + { + this.Items = Items; + this.Values = Values; + this.User = User; + this.Supervisor = Supervisor; + this.WriteHandle = WriteHandle; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteVerifiedResponse.cs b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteVerifiedResponse.cs new file mode 100644 index 0000000..ba27892 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/ArchestrAServices.ASBIDataV2Contract/WriteVerifiedResponse.cs @@ -0,0 +1,28 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.ServiceModel; +using System.Xml.Serialization; +using ArchestrAServices.ASBContract; + +namespace ArchestrAServices.ASBIDataV2Contract; + +[DebuggerStepThrough] +[GeneratedCode("System.ServiceModel", "4.0.0.0")] +[EditorBrowsable(EditorBrowsableState.Advanced)] +[MessageContract(WrapperName = "WriteVerifiedResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public class WriteVerifiedResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[] Status; + + public WriteVerifiedResponse() + { + } + + public WriteVerifiedResponse(ItemStatus[] Status) + { + this.Status = Status; + } +} diff --git a/analysis/decompiled/aaServicesContractIDataV2/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesContractIDataV2/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..56c29d7 --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/Properties/AssemblyInfo.cs @@ -0,0 +1,14 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("aaServicesContractIDataV2")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesContractIDataV2/aaServicesContractIDataV2.csproj b/analysis/decompiled/aaServicesContractIDataV2/aaServicesContractIDataV2.csproj new file mode 100644 index 0000000..5cfe92a --- /dev/null +++ b/analysis/decompiled/aaServicesContractIDataV2/aaServicesContractIDataV2.csproj @@ -0,0 +1,23 @@ + + + aaServicesContractIDataV2 + False + net40 + + + 14.0 + True + False + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaServicesProxyIData/ArchestrAServices.Proxy/ASBDataProxy.cs b/analysis/decompiled/aaServicesProxyIData/ArchestrAServices.Proxy/ASBDataProxy.cs new file mode 100644 index 0000000..8a69442 --- /dev/null +++ b/analysis/decompiled/aaServicesProxyIData/ArchestrAServices.Proxy/ASBDataProxy.cs @@ -0,0 +1,1251 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Diagnostics; +using System.Linq; +using System.Net; +using System.Reflection; +using System.Security.Cryptography.X509Certificates; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Description; +using System.ServiceModel.Discovery; +using System.ServiceModel.Security; +using System.Threading; +using System.Threading.Tasks; +using System.Xml; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.Proxy; + +public class ASBDataProxy : IData, IDisposable +{ + public class ConnectionDelegate + { + private readonly IASBIData dataClientField; + + public ConnectionDelegate(IASBIData dataClient) + { + dataClientField = dataClient; + } + + private ConnectionDelegate() + { + dataClientField = null; + } + + public ConnectResponse CallConnect(ConnectRequest request) + { + if (dataClientField != null) + { + return dataClientField.Connect(request); + } + return new ConnectResponse + { + Result = ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0) + }; + } + + public void CallAuthenticateMe(AuthenticateMe request) + { + if (dataClientField != null) + { + dataClientField.AuthenticateMe(request); + } + } + + public void CallDisconnect(Disconnect request) + { + if (dataClientField != null) + { + dataClientField.Disconnect(request); + } + } + } + + public static TraceSource ASBDataProxyCustom = new TraceSource("ASBDataProxyLogs"); + + private static readonly XmlQualifiedName qualifiedName = new XmlQualifiedName("IASBIData", "http://ArchestrAServices.Contract"); + + private static readonly XmlQualifiedName securedQualifiedName = new XmlQualifiedName("IASBIDataS", "http://ArchestrAServices.Contract"); + + public Guid m_ConnectionId = Guid.Empty; + + private readonly string m_AccessName; + + private ChannelFactory m_DataProviderFactory; + + private IASBIData IDataClient; + + private readonly object connectionLock; + + private ManualResetEvent connectionEstablishedEvent; + + private List accumulatedErrorMsg; + + private object errorMsgLock; + + private readonly string customSerializerSearchString = "/binding/customserializer/version1"; + + private readonly ConfiguredLogger aaLoggerConfig; + + public bool Connected + { + get + { + if (IDataClient != null) + { + return ((IClientChannel)IDataClient).State != CommunicationState.Faulted; + } + return false; + } + } + + public CommunicationState ChannelState + { + get + { + if (IDataClient == null) + { + return CommunicationState.Faulted; + } + return ((IClientChannel)IDataClient).State; + } + } + + public SecureCommunicationModes SecureCommunicationMode { get; set; } + + public ASBDataProxy(string AccessName) + { + m_AccessName = AccessName; + connectionLock = new object(); + Process currentProcess = Process.GetCurrentProcess(); + if (currentProcess != null) + { + aaLoggerConfig = new ConfiguredLogger(currentProcess.ProcessName); + aaLoggerConfig.ChangeSourceLevel("DataFlowLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("ControlFlowLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("CommandLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("ExceptionLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("DiagnosticsLogs", SourceLevels.All); + aaLoggerConfig.AddCustomTraceSource("ASBDataProxyLogs", ASBDataProxyCustom, "ASBDataProxy"); + aaLoggerConfig.ChangeSourceLevel("ASBDataProxyLogs", SourceLevels.All); + } + SecureCommunicationMode = RegistryHandler.SecureCommunicationMode; + } + + public static FindResponse FindIDataEndpoint(string AccessName) + { + return FindIDataEndpoint(AccessName, SecureCommunicationModes.Never); + } + + public static FindResponse FindIDataEndpoint(string AccessName, SecureCommunicationModes secureCommunicationMode) + { + if (secureCommunicationMode == SecureCommunicationModes.Preferred || secureCommunicationMode == SecureCommunicationModes.Required) + { + FindResponse findResponse = DiscoverEndpointsInternal(AccessName, securedQualifiedName); + if (findResponse != null && findResponse.Endpoints.Any()) + { + return findResponse; + } + } + if (secureCommunicationMode != SecureCommunicationModes.Required) + { + return DiscoverEndpointsInternal(AccessName, qualifiedName); + } + return null; + } + + public bool Connect(out string errorMessage) + { + errorMessage = string.Empty; + switch (SecureCommunicationMode) + { + case SecureCommunicationModes.Required: + return ConnectInternal(secured: true, out errorMessage); + case SecureCommunicationModes.Preferred: + { + bool flag = ConnectInternal(secured: true, out errorMessage); + if (!flag) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Attempting the fallback connection - reason {0}", errorMessage); + flag = ConnectInternal(secured: false, out errorMessage); + } + return flag; + } + default: + return ConnectInternal(secured: false, out errorMessage); + } + } + + private bool ConnectInternal(bool secured, out string errorMessage) + { + try + { + Reset(); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, "Connection reset failed : {0} \n Stack: {1}", ex.Message, ex.StackTrace); + } + errorMessage = string.Empty; + bool result = false; + bool useCustomSerializer = false; + string SolutionName = string.Empty; + EndpointDiscoveryMetadata endpointDiscoveryMetadata = null; + string accessName = m_AccessName; + int secureCommunicationMode; + if (!secured) + { + secureCommunicationMode = 0; + } + else + { + SecureCommunicationModes secureCommunicationModes = (SecureCommunicationMode = SecureCommunicationModes.Required); + secureCommunicationMode = (int)secureCommunicationModes; + } + FindResponse findResponse = FindIDataEndpoint(accessName, (SecureCommunicationModes)secureCommunicationMode); + if (findResponse != null && findResponse.Endpoints != null && findResponse.Endpoints.Count != 0) + { + endpointDiscoveryMetadata = SelectEndpointToConnectTo(findResponse, ref useCustomSerializer); + if (endpointDiscoveryMetadata != null) + { + ASBSolutionManager aSBSolutionManager = new ASBSolutionManager(); + SolutionName = aSBSolutionManager.GetASBSolutionName(endpointDiscoveryMetadata, out errorMessage); + if (string.IsNullOrEmpty(errorMessage)) + { + aSBSolutionManager.GetASBSolutionPassphrase(SolutionName, out errorMessage); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Connect found no endpoints for access name {0} that were configured correctly", m_AccessName); + } + } + else if (findResponse != null) + { + if (findResponse.Endpoints != null) + { + if (findResponse.Endpoints.Count == 0) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "Connect found no endpoints for IData with access name {0}", m_AccessName); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "Connect FindResponse has a null Endpoints member finding IData with access name {0}", m_AccessName); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "Connect null FindResponse finding IData with access name {0}", m_AccessName); + } + if (string.IsNullOrEmpty(errorMessage)) + { + if (endpointDiscoveryMetadata != null) + { + bool useSecureConnection = endpointDiscoveryMetadata.ContractTypeNames[0] == securedQualifiedName; + lock (connectionLock) + { + m_DataProviderFactory = null; + IDataClient = null; + m_ConnectionId = Guid.Empty; + } + connectionEstablishedEvent = new ManualResetEvent(initialState: false); + accumulatedErrorMsg = new List(); + errorMsgLock = new object(); + foreach (Uri endpointUri in endpointDiscoveryMetadata.ListenUris) + { + string SelectedEndpointUri = endpointUri.ToString(); + Task.Factory.StartNew(delegate + { + NetTcpBindingSecurityMode securityMode; + EndpointAddress iDataProviderEndpoint; + if (useSecureConnection) + { + securityMode = NetTcpBindingSecurityMode.CertificateEncryption; + IPHostEntry hostEntry = Dns.GetHostEntry(endpointUri.Host); + iDataProviderEndpoint = new EndpointAddress(endpointUri, EndpointIdentity.CreateDnsIdentity(hostEntry.HostName)); + } + else + { + securityMode = NetTcpBindingSecurityMode.None; + iDataProviderEndpoint = new EndpointAddress(SelectedEndpointUri); + } + Binding binding = SvcUtilities.GetBinding(SelectedEndpointUri, securityMode); + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Try connecting with endpoint {0}", SelectedEndpointUri); + if (InternalConnect(iDataProviderEndpoint, binding, SolutionName, out var errorMessage2, useCustomSerializer)) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Connected to IData endpoint {0}", SelectedEndpointUri); + } + else if (errorMessage2 != null) + { + lock (errorMsgLock) + { + accumulatedErrorMsg.Add(errorMessage2); + } + } + }); + } + connectionEstablishedEvent.WaitOne(20000); + connectionEstablishedEvent.Close(); + connectionEstablishedEvent = null; + lock (connectionLock) + { + result = true; + if (m_DataProviderFactory == null) + { + foreach (string item in accumulatedErrorMsg) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, item); + } + result = false; + } + } + } + else + { + string text = $"There are no endpoints selected for the namespace: '{m_AccessName}'. Confirm that \r"; + string text2 = $"a) local galaxy and remote galaxy {m_AccessName} specify the same UDS \r"; + string text3 = $"b) local galaxy has been paired with remote galaxy {m_AccessName} \r"; + string text4 = $"c) MxDataProvider service has been deployed on galaxy {m_AccessName}."; + errorMessage = $"{text}{text2}{text3}{text4}"; + } + } + return result; + } + + public EndpointDiscoveryMetadata SelectEndpointToConnectTo(FindResponse findResponse, ref bool useCustomSerializer) + { + EndpointDiscoveryMetadata result = null; + List list = new List(); + List list2 = new List(); + bool flag = false; + foreach (EndpointDiscoveryMetadata endpoint in findResponse.Endpoints) + { + foreach (Uri scope in endpoint.Scopes) + { + if (scope.AbsolutePath.Contains(customSerializerSearchString)) + { + ASBDataProxyCustom.TraceEvent(TraceEventType.Information, 0, "ASBIData custom-serialization scope is found."); + flag = true; + break; + } + } + if (flag) + { + list2.Add(endpoint); + } + else + { + list.Add(endpoint); + } + flag = false; + } + Random random = new Random(DateTime.Now.Millisecond); + if (list2.Count != 0) + { + useCustomSerializer = true; + result = list2[random.Next(list2.Count)]; + } + else if (list.Count != 0) + { + useCustomSerializer = false; + result = list[random.Next(list.Count)]; + } + return result; + } + + public bool Connect(EndpointDiscoveryMetadata SelectedMetadata, out string errorMessage) + { + errorMessage = string.Empty; + bool useCustomSerializer = false; + foreach (Uri scope in SelectedMetadata.Scopes) + { + if (scope.AbsolutePath.Contains(customSerializerSearchString)) + { + useCustomSerializer = true; + break; + } + } + bool num = SelectedMetadata.ContractTypeNames[0] == securedQualifiedName; + string text = SelectedMetadata.Address.Uri.ToString(); + NetTcpBindingSecurityMode securityMode; + EndpointAddress iDataProviderEndpoint; + if (num) + { + securityMode = NetTcpBindingSecurityMode.CertificateEncryption; + IPHostEntry hostEntry = Dns.GetHostEntry(SelectedMetadata.Address.Uri.Host); + iDataProviderEndpoint = new EndpointAddress(SelectedMetadata.Address.Uri, EndpointIdentity.CreateDnsIdentity(hostEntry.HostName)); + } + else + { + securityMode = NetTcpBindingSecurityMode.None; + iDataProviderEndpoint = new EndpointAddress(text); + } + Binding binding = SvcUtilities.GetBinding(text, securityMode); + ASBSolutionManager aSBSolutionManager = new ASBSolutionManager(); + string aSBSolutionName = aSBSolutionManager.GetASBSolutionName(SelectedMetadata, out errorMessage); + if (string.IsNullOrEmpty(errorMessage)) + { + aSBSolutionManager.GetASBSolutionPassphrase(aSBSolutionName, out errorMessage); + } + if (string.IsNullOrEmpty(errorMessage)) + { + bool num2 = InternalConnect(iDataProviderEndpoint, binding, aSBSolutionName, out errorMessage, useCustomSerializer); + if (!num2 && errorMessage != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Error, 0, errorMessage); + } + return num2; + } + return false; + } + + public void Disconnect() + { + SysAuthClientAuthentication.DisconnectSecureSession(m_ConnectionId, CallDisconnect); + } + + public void Abort() + { + Reset(); + } + + public ArchestrAServices.ASBContract.ArchestrAResult KeepAlive(ArchestrAServices.ASBContract.ConnectionId Id) + { + return KeepAlive(); + } + + public ArchestrAServices.ASBContract.ArchestrAResult KeepAlive() + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + KeepAlive keepAlive = new KeepAlive(); + keepAlive.ConnectionValidator.ConnectionId = m_ConnectionId; + clientAuthenticator.Sign(keepAlive); + IDataClient.KeepAlive(keepAlive); + return ArchestrAServices.ASBContract.ResultFactory.MakeGoodResult(); + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Read(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.RuntimeValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + return Read(out Status, out Values, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Read(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.RuntimeValue[] Values, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + ReadRequest readRequest = new ReadRequest(); + readRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + readRequest.Items = Items; + clientAuthenticator.Sign(readRequest); + ReadResponse readResponse = IDataClient.Read(readRequest); + if (readResponse != null) + { + Status = readResponse.Status; + Values = readResponse.Values; + return readResponse.Result; + } + } + } + Status = null; + Values = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Write(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, uint WriteHandle) + { + return Write(out Status, Items, Values, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Write(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteBasicRequest writeBasicRequest = new WriteBasicRequest(); + writeBasicRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeBasicRequest.Items = Items; + writeBasicRequest.Values = Values; + writeBasicRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeBasicRequest); + WriteResponse writeResponse = IDataClient.Write(writeBasicRequest); + if (writeResponse != null) + { + Status = writeResponse.Status; + return writeResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteUser(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + return WriteUser(out Status, Items, Values, User, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteUser(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteUserRequest writeUserRequest = new WriteUserRequest(); + writeUserRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeUserRequest.Items = Items; + writeUserRequest.Values = Values; + writeUserRequest.User = User; + writeUserRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeUserRequest); + WriteUserResponse writeUserResponse = IDataClient.WriteUser(writeUserRequest); + if (writeUserResponse != null) + { + Status = writeUserResponse.Status; + return writeUserResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteVerified(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + return WriteVerified(out Status, Items, Values, User, Supervisor, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteVerified(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteVerifiedRequest writeVerifiedRequest = new WriteVerifiedRequest(); + writeVerifiedRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeVerifiedRequest.Items = Items; + writeVerifiedRequest.Values = Values; + writeVerifiedRequest.User = User; + writeVerifiedRequest.Supervisor = Supervisor; + writeVerifiedRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeVerifiedRequest); + WriteVerifiedResponse writeVerifiedResponse = IDataClient.WriteVerified(writeVerifiedRequest); + if (writeVerifiedResponse != null) + { + Status = writeVerifiedResponse.Status; + return writeVerifiedResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteSecured(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + return WriteSecured(out Status, Items, Values, User, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteSecured(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items, ArchestrAServices.ASBContract.WriteValue[] Values, ArchestrAServices.ASBContract.UserToken User, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteSecuredRequest writeSecuredRequest = new WriteSecuredRequest(); + writeSecuredRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeSecuredRequest.Items = Items; + writeSecuredRequest.Values = Values; + writeSecuredRequest.User = User; + writeSecuredRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeSecuredRequest); + WriteSecuredResponse writeSecuredResponse = IDataClient.WriteSecured(writeSecuredRequest); + if (writeSecuredResponse != null) + { + Status = writeSecuredResponse.Status; + return writeSecuredResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteConfirmed(out ArchestrAServices.ASBContract.WriteValue ValueReceived, out long WriteToken, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity Item, ArchestrAServices.ASBContract.WriteValue Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor) + { + return WriteConfirmed(out ValueReceived, out WriteToken, Item, Value, User, Supervisor); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteConfirmed(out ArchestrAServices.ASBContract.WriteValue ValueReceived, out long WriteToken, ArchestrAServices.ASBContract.ItemIdentity Item, ArchestrAServices.ASBContract.WriteValue Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteConfirmedRequest writeConfirmedRequest = new WriteConfirmedRequest(); + writeConfirmedRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeConfirmedRequest.Item = Item; + writeConfirmedRequest.Value = Value; + writeConfirmedRequest.User = User; + writeConfirmedRequest.Supervisor = Supervisor; + clientAuthenticator.Sign(writeConfirmedRequest); + WriteConfirmedResponse writeConfirmedResponse = IDataClient.WriteConfirmed(writeConfirmedRequest); + if (writeConfirmedResponse != null) + { + ValueReceived = writeConfirmedResponse.ValueReceived; + WriteToken = writeConfirmedResponse.WriteToken; + return writeConfirmedResponse.Result; + } + } + } + ValueReceived = default(ArchestrAServices.ASBContract.WriteValue); + WriteToken = long.MaxValue; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ConfirmWrite(ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity Item, long WriteToken, ArchestrAServices.ASBContract.WriteValue Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + return ConfirmWrite(Item, WriteToken, Value, User, Supervisor, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ConfirmWrite(ArchestrAServices.ASBContract.ItemIdentity Item, long WriteToken, ArchestrAServices.ASBContract.WriteValue Value, ArchestrAServices.ASBContract.UserToken User, ArchestrAServices.ASBContract.UserToken Supervisor, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + ConfirmWriteRequest confirmWriteRequest = new ConfirmWriteRequest(); + confirmWriteRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + confirmWriteRequest.Item = Item; + confirmWriteRequest.WriteToken = WriteToken; + confirmWriteRequest.Value = Value; + confirmWriteRequest.User = User; + confirmWriteRequest.Supervisor = Supervisor; + confirmWriteRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(confirmWriteRequest); + ConfirmWriteResponse confirmWriteResponse = IDataClient.ConfirmWrite(confirmWriteRequest); + if (confirmWriteResponse != null) + { + return confirmWriteResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult PublishWriteComplete(out ArchestrAServices.ASBContract.ItemWriteComplete[] CompleteWrites, ArchestrAServices.ASBContract.ConnectionId Id) + { + return PublishWriteComplete(out CompleteWrites); + } + + public ArchestrAServices.ASBContract.ArchestrAResult PublishWriteComplete(out ArchestrAServices.ASBContract.ItemWriteComplete[] CompleteWrites) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + PublishWriteCompleteRequest publishWriteCompleteRequest = new PublishWriteCompleteRequest(); + publishWriteCompleteRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + clientAuthenticator.Sign(publishWriteCompleteRequest); + PublishWriteCompleteResponse publishWriteCompleteResponse = IDataClient.PublishWriteComplete(publishWriteCompleteRequest); + if (publishWriteCompleteResponse != null) + { + CompleteWrites = publishWriteCompleteResponse.CompleteWrites; + return publishWriteCompleteResponse.Result; + } + } + } + CompleteWrites = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult CreateSubscription(out long SubscriptionId, ArchestrAServices.ASBContract.ConnectionId Id, long MaxQueueSize, ulong SampleInterval) + { + return CreateSubscription(out SubscriptionId, MaxQueueSize, SampleInterval); + } + + public ArchestrAServices.ASBContract.ArchestrAResult CreateSubscription(out long SubscriptionId, long MaxQueueSize, ulong SampleInterval) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + CreateSubscriptionRequest createSubscriptionRequest = new CreateSubscriptionRequest(); + createSubscriptionRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + createSubscriptionRequest.MaxQueueSize = MaxQueueSize; + createSubscriptionRequest.SampleInterval = SampleInterval; + clientAuthenticator.Sign(createSubscriptionRequest); + CreateSubscriptionResponse createSubscriptionResponse = IDataClient.CreateSubscription(createSubscriptionRequest); + if (createSubscriptionResponse != null) + { + SubscriptionId = createSubscriptionResponse.SubscriptionId; + return createSubscriptionResponse.Result; + } + } + } + SubscriptionId = long.MaxValue; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult SetSubscriptionState(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataContract.Variant NewState, ushort StateToChange) + { + return SetSubscriptionState(SubscriptionId, NewState, StateToChange); + } + + public ArchestrAServices.ASBContract.ArchestrAResult SetSubscriptionState(long SubscriptionId, ArchestrAServices.ASBIDataContract.Variant NewState, ushort StateToChange) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + SetSubscriptionStateRequest setSubscriptionStateRequest = new SetSubscriptionStateRequest(); + setSubscriptionStateRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + setSubscriptionStateRequest.SubscriptionId = SubscriptionId; + setSubscriptionStateRequest.NewStateProperty = NewState; + setSubscriptionStateRequest.StateToChange = StateToChange; + clientAuthenticator.Sign(setSubscriptionStateRequest); + SetSubscriptionStateResponse setSubscriptionStateResponse = IDataClient.SetSubscriptionState(setSubscriptionStateRequest); + if (setSubscriptionStateResponse != null) + { + return setSubscriptionStateResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.Variant State, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ushort StateToGet) + { + return GetSubscriptionState(out State, SubscriptionId, StateToGet); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.Variant State, long SubscriptionId, ushort StateToGet) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + GetSubscriptionStateRequest getSubscriptionStateRequest = new GetSubscriptionStateRequest(); + getSubscriptionStateRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + getSubscriptionStateRequest.SubscriptionId = SubscriptionId; + getSubscriptionStateRequest.StateToGet = StateToGet; + clientAuthenticator.Sign(getSubscriptionStateRequest); + GetSubscriptionStateResponse subscriptionState = IDataClient.GetSubscriptionState(getSubscriptionStateRequest); + if (subscriptionState != null) + { + State = subscriptionState.StateProperty; + return subscriptionState.Result; + } + } + } + State = default(ArchestrAServices.ASBIDataContract.Variant); + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteSubscription(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return DeleteSubscription(SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteSubscription(long SubscriptionId) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + DeleteSubscriptionRequest deleteSubscriptionRequest = new DeleteSubscriptionRequest(); + deleteSubscriptionRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + deleteSubscriptionRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(deleteSubscriptionRequest); + DeleteSubscriptionResponse deleteSubscriptionResponse = IDataClient.DeleteSubscription(deleteSubscriptionRequest); + if (deleteSubscriptionResponse != null) + { + return deleteSubscriptionResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items, byte RequireId) + { + return AddMonitoredItems(out Status, out ItemCapabilities, SubscriptionId, RequireId != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items, byte RequireId) + { + return AddMonitoredItems(out Status, out ItemCapabilities, SubscriptionId, RequireId != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, long SubscriptionId, bool RequireId, ArchestrAServices.ASBContract.MonitoredItem[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + AddMonitoredItemsRequest addMonitoredItemsRequest = new AddMonitoredItemsRequest(); + addMonitoredItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + addMonitoredItemsRequest.SubscriptionId = SubscriptionId; + addMonitoredItemsRequest.Items = Items; + addMonitoredItemsRequest.RequireId = RequireId; + clientAuthenticator.Sign(addMonitoredItemsRequest); + AddMonitoredItemsResponse addMonitoredItemsResponse = IDataClient.AddMonitoredItems(addMonitoredItemsRequest); + if (addMonitoredItemsResponse != null) + { + Status = addMonitoredItemsResponse.Status; + ItemCapabilities = addMonitoredItemsResponse.ItemCapabilities; + return addMonitoredItemsResponse.Result; + } + } + } + Status = null; + ItemCapabilities = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items) + { + return DeleteMonitoredItems(out Status, SubscriptionId, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteMonitoredItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, long SubscriptionId, ArchestrAServices.ASBContract.MonitoredItem[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + DeleteMonitoredItemsRequest deleteMonitoredItemsRequest = new DeleteMonitoredItemsRequest(); + deleteMonitoredItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + deleteMonitoredItemsRequest.SubscriptionId = SubscriptionId; + deleteMonitoredItemsRequest.Items = Items; + clientAuthenticator.Sign(deleteMonitoredItemsRequest); + DeleteMonitoredItemsResponse deleteMonitoredItemsResponse = IDataClient.DeleteMonitoredItems(deleteMonitoredItemsRequest); + if (deleteMonitoredItemsResponse != null) + { + Status = deleteMonitoredItemsResponse.Status; + return deleteMonitoredItemsResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetMonitoredItems(out ArchestrAServices.ASBContract.MonitoredItem[] Items, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return GetMonitoredItems(out Items, SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetMonitoredItems(out ArchestrAServices.ASBContract.MonitoredItem[] Items, long SubscriptionId) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + GetMonitoredItemsRequest getMonitoredItemsRequest = new GetMonitoredItemsRequest(); + getMonitoredItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + getMonitoredItemsRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(getMonitoredItemsRequest); + GetMonitoredItemsResponse monitoredItems = IDataClient.GetMonitoredItems(getMonitoredItemsRequest); + if (monitoredItems != null) + { + Items = monitoredItems.Items; + return monitoredItems.Result; + } + } + } + Items = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Publish(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.MonitoredItemValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return Publish(out Status, out Values, SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Publish(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.MonitoredItemValue[] Values, long SubscriptionId) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + PublishRequest publishRequest = new PublishRequest(); + publishRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + publishRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(publishRequest); + PublishResponse publishResponse = IDataClient.Publish(publishRequest); + if (publishResponse != null) + { + Status = publishResponse.Status; + Values = publishResponse.Values; + return publishResponse.Result; + } + } + } + Status = null; + Values = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + return RegisterItems(out Status, out ItemCapabilities, RequireId != 0, RegisterOnly != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + return RegisterItems(out Status, out ItemCapabilities, RequireId != 0, RegisterOnly != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, out ArchestrAServices.ASBContract.ItemRegistration[] ItemCapabilities, bool RequireId, bool RegisterOnly, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + RegisterItemsRequest registerItemsRequest = new RegisterItemsRequest(); + registerItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + registerItemsRequest.Items = Items; + registerItemsRequest.RequireId = RequireId; + registerItemsRequest.RegisterOnly = RegisterOnly; + clientAuthenticator.Sign(registerItemsRequest); + RegisterItemsResponse registerItemsResponse = IDataClient.RegisterItems(registerItemsRequest); + if (registerItemsResponse != null) + { + Status = registerItemsResponse.Status; + ItemCapabilities = registerItemsResponse.ItemCapabilities; + return registerItemsResponse.Result; + } + } + } + Status = null; + ItemCapabilities = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult UnregisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + return UnregisterItems(out Status, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult UnregisterItems(out ArchestrAServices.ASBContract.ItemStatus[] Status, ArchestrAServices.ASBContract.ItemIdentity[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + UnregisterItemsRequest unregisterItemsRequest = new UnregisterItemsRequest(); + unregisterItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + unregisterItemsRequest.Items = Items; + clientAuthenticator.Sign(unregisterItemsRequest); + UnregisterItemsResponse unregisterItemsResponse = IDataClient.UnregisterItems(unregisterItemsRequest); + if (unregisterItemsResponse != null) + { + Status = unregisterItemsResponse.Status; + return unregisterItemsResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public void OnConnect(ArchestrAServices.ASBContract.ConnectionId ConnectionId, ulong Timeout) + { + } + + public void OnDisconnect(ArchestrAServices.ASBContract.ConnectionId Id) + { + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + protected virtual void Dispose(bool disposing) + { + if (!disposing) + { + return; + } + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null && clientAuthenticator.SecureSessionEstablished) + { + Disconnect(); + } + IClientChannel obj = IDataClient as IClientChannel; + obj?.Close(); + obj?.Dispose(); + } + connectionEstablishedEvent?.Close(); + connectionEstablishedEvent = null; + } + + private static FindResponse DiscoverEndpointsInternal(string AccessName, XmlQualifiedName qualifiedName) + { + FindResponse result = null; + try + { + Uri uri = RegistryHandler.MakeLDSProbeEndpointAddress(Environment.MachineName); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "FindIDataEndpoint generated LDS endpoint for SR Node localhost: {0}", uri.AbsoluteUri); + using DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(uri.AbsoluteUri), new EndpointAddress(uri))); + FindCriteria findCriteria = new FindCriteria(); + if (!string.IsNullOrEmpty(qualifiedName.Name)) + { + findCriteria.ContractTypeNames.Add(qualifiedName); + } + List list = new List(); + list.Add("domainname/" + AccessName + "/global"); + Collection collection = SvcUtilities.CreateFindScopes(string.Empty, string.Empty, string.Empty, list); + findCriteria.Scopes.Clear(); + foreach (Uri item in collection) + { + findCriteria.Scopes.Add(item); + } + result = discoveryClient.Find(findCriteria); + } + catch (TargetInvocationException ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) TargetInvocationException: {1}", AccessName, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex.InnerException.Message); + } + result = null; + } + catch (ObjectDisposedException ex2) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) ObjectDisposedException: {1}", AccessName, ex2.Message); + if (ex2.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex2.InnerException.Message); + } + result = null; + } + catch (Exception ex3) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) Exception: {1}", AccessName, ex3.Message); + if (ex3.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex3.InnerException.Message); + } + result = null; + } + return result; + } + + private void Reset() + { + if (IDataClient != null) + { + ((IClientChannel)IDataClient).Abort(); + } + m_DataProviderFactory = null; + IDataClient = null; + m_ConnectionId = Guid.Empty; + } + + private bool InternalConnect(EndpointAddress IDataProviderEndpoint, Binding binding, string SolutionName, out string errorMessage, bool useCustomSerializer) + { + bool flag = false; + errorMessage = string.Empty; + if (IDataProviderEndpoint != null && binding != null) + { + try + { + ChannelFactory channelFactory = new ChannelFactory(binding, IDataProviderEndpoint); + if (channelFactory != null) + { + if (binding is NetTcpBinding netTcpBinding && netTcpBinding.Security.Mode == SecurityMode.Transport && channelFactory.Credentials != null) + { + channelFactory.Credentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.ChainTrust; + channelFactory.Credentials.ServiceCertificate.Authentication.RevocationMode = X509RevocationMode.NoCheck; + } + if (useCustomSerializer) + { + IContractBehavior contractBehavior = new ASBCustomSerializerContractBehavior(); + if (contractBehavior != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "ASB-IData optimized serialization is enabled."); + channelFactory.Endpoint.Contract.Behaviors.Add(contractBehavior); + } + } + foreach (OperationDescription operation in channelFactory.Endpoint.Contract.Operations) + { + DataContractSerializerOperationBehavior dataContractSerializerOperationBehavior = operation.Behaviors.Find(); + if (dataContractSerializerOperationBehavior != null) + { + dataContractSerializerOperationBehavior.MaxItemsInObjectGraph = int.MaxValue; + } + } + channelFactory.Open(); + IASBIData iASBIData = channelFactory.CreateChannel(); + Guid connectionId = Guid.Empty; + if (iASBIData != null) + { + ((IClientChannel)iASBIData).Open(); + if (iASBIData != null && ((IClientChannel)iASBIData).State != CommunicationState.Faulted) + { + ConnectionDelegate connectionDelegate = new ConnectionDelegate(iASBIData); + flag = SysAuthClientAuthentication.EstablishSecureSession(Process.GetCurrentProcess().ProcessName, "localdomain", Environment.MachineName, SolutionName, new WeakReference(this), connectionDelegate.CallConnect, connectionDelegate.CallAuthenticateMe, out connectionId, out errorMessage); + Thread.Sleep(250); + if (flag) + { + Stopwatch stopwatch = new Stopwatch(); + stopwatch.Start(); + bool flag2; + do + { + flag2 = PublishWriteComplete(out var _).ErrorCode != ArchestrAServices.ASBContract.EnumASBFactory.ArchestrAErrorToInt(ArchestrAServices.ASBContract.ArchestrAError.InvalidConnectionId); + if (flag2) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Ping PublishWriteComplete() successful with service using ConnectionId {0}", connectionId); + } + if (!flag2) + { + Thread.Sleep(250); + } + } + while (!flag2 && stopwatch.ElapsedMilliseconds < 2500); + flag = flag2; + } + if (flag) + { + bool flag3 = false; + lock (connectionLock) + { + if (m_DataProviderFactory == null) + { + flag3 = true; + m_DataProviderFactory = channelFactory; + IDataClient = iASBIData; + m_ConnectionId = connectionId; + if (connectionEstablishedEvent != null) + { + connectionEstablishedEvent.Set(); + } + } + } + if (!flag3) + { + SysAuthClientAuthentication.DisconnectSecureSession(connectionId, connectionDelegate.CallDisconnect); + if (iASBIData != null) + { + ((IClientChannel)iASBIData).Close(); + ((IClientChannel)iASBIData).Dispose(); + } + } + } + else + { + if (iASBIData != null) + { + ((IClientChannel)iASBIData).Abort(); + ((IClientChannel)iASBIData).Dispose(); + } + if (string.IsNullOrEmpty(errorMessage)) + { + errorMessage = "ASBDataProxy could not connect with service: EstablishSecureSession failed"; + } + } + } + else + { + errorMessage = "ASBDataProxy could not connect with service: communicaton channel in faulted state"; + flag = false; + } + } + else + { + errorMessage = $"ASBDataProxy not able to create a channel for the endpoint {IDataProviderEndpoint.Uri}"; + } + } + else + { + errorMessage = $"ASBDataProxy not able to connect it to endpoint {IDataProviderEndpoint.Uri}"; + } + } + catch (CommunicationException ex) + { + errorMessage = "ASBDataProxy caught CommunicationException opening channel: " + ex.Message; + if (ex.InnerException != null) + { + errorMessage += ex.InnerException.Message; + } + } + catch (TimeoutException ex2) + { + errorMessage = "ASBDataProxy caught TimeoutException opening channel: " + ex2.Message; + if (ex2.InnerException != null) + { + errorMessage += ex2.InnerException.Message; + } + } + catch (Exception ex3) + { + errorMessage = "ASBDataProxy caught exception opening channel: " + ex3.Message; + flag = false; + } + } + else + { + if (IDataProviderEndpoint == null) + { + errorMessage += "ASBDataProxy cannot proceed to connect: No provider endpoint provided by caller"; + flag = false; + } + if (binding == null) + { + errorMessage += "ASBDataProxy cannot proceed to connect: No binding provided by caller"; + flag = false; + } + } + return flag; + } + + private void CallDisconnect(Disconnect request) + { + if (IDataClient != null) + { + IDataClient.Disconnect(request); + } + } +} diff --git a/analysis/decompiled/aaServicesProxyIData/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesProxyIData/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..d6e6558 --- /dev/null +++ b/analysis/decompiled/aaServicesProxyIData/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyDescription("ASB Runtime Data V1.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("aaServicesProxyIData")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesProxyIData/aaServicesProxyIData.csproj b/analysis/decompiled/aaServicesProxyIData/aaServicesProxyIData.csproj new file mode 100644 index 0000000..12f2284 --- /dev/null +++ b/analysis/decompiled/aaServicesProxyIData/aaServicesProxyIData.csproj @@ -0,0 +1,24 @@ + + + aaServicesProxyIData + False + net40 + + + 14.0 + True + False + + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/decompiled/aaServicesProxyIDataV2/ArchestrAServices.Proxy/ASBDataV2Proxy.cs b/analysis/decompiled/aaServicesProxyIDataV2/ArchestrAServices.Proxy/ASBDataV2Proxy.cs new file mode 100644 index 0000000..325c463 --- /dev/null +++ b/analysis/decompiled/aaServicesProxyIDataV2/ArchestrAServices.Proxy/ASBDataV2Proxy.cs @@ -0,0 +1,1434 @@ +#define TRACE +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Diagnostics; +using System.Linq; +using System.Net; +using System.Reflection; +using System.Security.Cryptography.X509Certificates; +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Description; +using System.ServiceModel.Discovery; +using System.ServiceModel.Security; +using System.Threading; +using System.Threading.Tasks; +using System.Xml; +using ArchestrAServices.ASBContract; +using ArchestrAServices.ASBIDataContract.V2; +using ArchestrAServices.ASBIDataV2Contract; +using ArchestrAServices.Common; +using ArchestrAServices.Contract; + +namespace ArchestrAServices.Proxy; + +public class ASBDataV2Proxy : IDataV2, IDisposable +{ + public class ConnectionDelegate + { + private readonly IASBIDataV2 dataClientField; + + public ConnectionDelegate(IASBIDataV2 dataClient) + { + dataClientField = dataClient; + } + + private ConnectionDelegate() + { + dataClientField = null; + } + + public ConnectResponse CallConnect(ConnectRequest request) + { + if (dataClientField != null) + { + return dataClientField.Connect(request); + } + return new ConnectResponse + { + Result = ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0) + }; + } + + public void CallAuthenticateMe(AuthenticateMe request) + { + if (dataClientField != null) + { + dataClientField.AuthenticateMe(request); + } + } + + public void CallDisconnect(Disconnect request) + { + if (dataClientField != null) + { + dataClientField.Disconnect(request); + } + } + } + + public static TraceSource ASBDataProxyCustom = new TraceSource("ASBDataProxyLogs"); + + private static readonly XmlQualifiedName qualifiedName = new XmlQualifiedName("IASBIDataV2", "http://ASB.IDataV2"); + + private static readonly XmlQualifiedName securedQualifiedName = new XmlQualifiedName("IASBIDataV2S", "http://ASB.IDataV2"); + + public Guid m_ConnectionId = Guid.Empty; + + private readonly DiscoveryScope scopeRule; + + private readonly string m_AccessName; + + private ChannelFactory m_DataProviderFactory; + + private IASBIDataV2 IDataClient; + + private readonly object connectionLock; + + private ManualResetEvent connectionEstablishedEvent; + + private List accumulatedErrorMsg; + + private object errorMsgLock; + + private readonly string customSerializerSearchString = "/binding/customserializer/version2"; + + private readonly ConfiguredLogger aaLoggerConfig; + + public bool Connected + { + get + { + if (IDataClient != null) + { + return ((IClientChannel)IDataClient).State != CommunicationState.Faulted; + } + return false; + } + } + + public CommunicationState ChannelState + { + get + { + if (IDataClient == null) + { + return CommunicationState.Faulted; + } + return ((IClientChannel)IDataClient).State; + } + } + + public SecureCommunicationModes SecureCommunicationMode { get; set; } + + public IAsbInterfaceSettings Settings { get; private set; } + + public ASBDataV2Proxy(string accessName, IAsbInterfaceSettings settings) + : this(accessName, DiscoveryScope.Global, settings) + { + } + + public ASBDataV2Proxy(string accessName, DiscoveryScope scopeRule, IAsbInterfaceSettings settings) + { + this.scopeRule = scopeRule; + m_AccessName = accessName; + this.scopeRule = DiscoveryScope.Global; + Settings = settings; + connectionLock = new object(); + Process currentProcess = Process.GetCurrentProcess(); + if (currentProcess != null) + { + aaLoggerConfig = new ConfiguredLogger(currentProcess.ProcessName); + aaLoggerConfig.ChangeSourceLevel("DataFlowLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("ControlFlowLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("CommandLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("ExceptionLogs", SourceLevels.All); + aaLoggerConfig.ChangeSourceLevel("DiagnosticsLogs", SourceLevels.All); + aaLoggerConfig.AddCustomTraceSource("ASBDataProxyLogs", ASBDataProxyCustom, "ASBDataV2Proxy"); + aaLoggerConfig.ChangeSourceLevel("ASBDataProxyLogs", SourceLevels.All); + } + SecureCommunicationMode = RegistryHandler.SecureCommunicationMode; + } + + public static ReadOnlyCollection DiscoverEndpoints(string scope, DiscoveryScope scopeRule) + { + return DiscoverEndpoints(scope, scopeRule, SecureCommunicationModes.Never); + } + + public static ReadOnlyCollection DiscoverEndpoints(string scope, DiscoveryScope scopeRule, SecureCommunicationModes secureCommunicationMode) + { + ServiceTrace.LogCsv("DiscoverEndpoints entry [Contract scopeRule],IASBIDataV2", scopeRule); + ServiceTrace.LogResume("DiscoverEndpointsForContract entry, contract IASBIDataV2, scope {0}, scopeRule {1}", scope, scopeRule); + if (string.IsNullOrWhiteSpace(scope)) + { + throw new ArgumentNullException("scope"); + } + return DiscoverEndpoints(scope + "/" + scopeRule.ToString().ToLowerInvariant(), secureCommunicationMode); + } + + public static ReadOnlyCollection DiscoverEndpoints(string scope) + { + return DiscoverEndpoints(scope, SecureCommunicationModes.Never); + } + + public static ReadOnlyCollection DiscoverEndpoints(string scope, SecureCommunicationModes secureCommunicationMode) + { + ServiceTrace.LogCsv("DiscoverEndpoints entry [Contract scopeRule],IASBIDataV2", scope); + ServiceTrace.LogResume("DiscoverEndpointsForContract entry, contract IASBIDataV2, scopeToFind {0}, scopeRule {1}", scope, scope); + if (string.IsNullOrWhiteSpace(scope)) + { + throw new ArgumentNullException("scope"); + } + FindResponse findResponse = null; + if (secureCommunicationMode == SecureCommunicationModes.Preferred || secureCommunicationMode == SecureCommunicationModes.Required) + { + findResponse = DiscoverEndpointsInternal(scope, securedQualifiedName); + } + if ((findResponse == null || !findResponse.Endpoints.Any()) && secureCommunicationMode != SecureCommunicationModes.Required) + { + findResponse = DiscoverEndpointsInternal(scope, qualifiedName); + } + ServiceTrace.LogSuspend("DiscoverEndpoints exit, contract IASBIDataV2, scopeRule {0}", scope); + ServiceTrace.LogCsv("DiscoverEndpointsForContract exit [Contract scopeRule],IASBIDataV2", scope); + if (findResponse == null) + { + return new ReadOnlyCollection(new List()); + } + return new ReadOnlyCollection(findResponse.Endpoints.ToList()); + } + + public static FindResponse FindIDataEndpoint(string accessName) + { + return FindIDataEndpoint(accessName, SecureCommunicationModes.Never); + } + + public static FindResponse FindIDataEndpoint(string accessName, SecureCommunicationModes secureCommunicationMode) + { + return FindIDataEndpoint(accessName, DiscoveryScope.Global, secureCommunicationMode); + } + + public static FindResponse FindIDataEndpoint(string accessName, DiscoveryScope scopeRule) + { + return FindIDataEndpoint(accessName, scopeRule, SecureCommunicationModes.Never); + } + + public static FindResponse FindIDataEndpoint(string accessName, DiscoveryScope scopeRule, SecureCommunicationModes secureCommunicationMode) + { + if (secureCommunicationMode == SecureCommunicationModes.Preferred || secureCommunicationMode == SecureCommunicationModes.Required) + { + FindResponse findResponse = DiscoverEndpointsInternal("domainname/" + accessName + "/" + scopeRule.ToString().ToLowerInvariant(), securedQualifiedName); + if (findResponse != null && findResponse.Endpoints.Any()) + { + return findResponse; + } + } + if (secureCommunicationMode != SecureCommunicationModes.Required) + { + return DiscoverEndpointsInternal("domainname/" + accessName + "/" + scopeRule.ToString().ToLowerInvariant(), qualifiedName); + } + return null; + } + + public bool Connect(out string errorMessage) + { + errorMessage = string.Empty; + switch (SecureCommunicationMode) + { + case SecureCommunicationModes.Required: + return ConnectInternal(secured: true, out errorMessage); + case SecureCommunicationModes.Preferred: + { + bool flag = ConnectInternal(secured: true, out errorMessage); + if (!flag) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Information, 0, "Attempting the fallback connection - reason {0}", errorMessage); + flag = ConnectInternal(secured: false, out errorMessage); + } + return flag; + } + default: + return ConnectInternal(secured: false, out errorMessage); + } + } + + private bool ConnectInternal(bool secured, out string errorMessage) + { + try + { + Reset(); + } + catch (Exception ex) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Warning, 0, "Connection reset failed : {0} \n Stack: {1}", ex.Message, ex.StackTrace); + } + bool result = false; + bool useCustomSerializer = false; + string solutionName; + EndpointDiscoveryMetadata endpointDiscoveryMetadata = FindEndpointForConnect(secured, ref useCustomSerializer, out solutionName, out errorMessage); + bool useSecureConnection = endpointDiscoveryMetadata.ContractTypeNames[0] == securedQualifiedName; + if (endpointDiscoveryMetadata != null) + { + lock (connectionLock) + { + m_DataProviderFactory = null; + IDataClient = null; + m_ConnectionId = Guid.Empty; + } + connectionEstablishedEvent = new ManualResetEvent(initialState: false); + accumulatedErrorMsg = new List(); + errorMsgLock = new object(); + foreach (Uri endpointUri in endpointDiscoveryMetadata.ListenUris) + { + string SelectedEndpointUri = endpointUri.ToString(); + Task.Factory.StartNew(delegate + { + NetTcpBindingSecurityMode securityMode; + EndpointAddress iDataProviderEndpoint; + if (useSecureConnection) + { + securityMode = NetTcpBindingSecurityMode.CertificateEncryption; + IPHostEntry hostEntry = Dns.GetHostEntry(endpointUri.Host); + iDataProviderEndpoint = new EndpointAddress(endpointUri, EndpointIdentity.CreateDnsIdentity(hostEntry.HostName)); + } + else + { + securityMode = NetTcpBindingSecurityMode.None; + iDataProviderEndpoint = new EndpointAddress(SelectedEndpointUri); + } + Binding binding = SvcUtilities.GetBinding(SelectedEndpointUri, securityMode); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Try connecting with endpoint {0}", SelectedEndpointUri); + if (InternalConnect(iDataProviderEndpoint, binding, solutionName, out var errorMessage2, useCustomSerializer)) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Connected to IData endpoint {0}", SelectedEndpointUri); + } + else if (errorMessage2 != null) + { + lock (errorMsgLock) + { + accumulatedErrorMsg.Add(errorMessage2); + } + } + }); + } + connectionEstablishedEvent.WaitOne(20000); + connectionEstablishedEvent.Close(); + connectionEstablishedEvent = null; + lock (connectionLock) + { + result = true; + if (m_DataProviderFactory == null) + { + foreach (string item in accumulatedErrorMsg) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Warning, 0, item); + } + result = false; + } + } + } + return result; + } + + public EndpointDiscoveryMetadata SelectEndpointToConnectTo(FindResponse findResponse, ref bool useCustomSerializer) + { + if (findResponse == null) + { + return null; + } + return SelectEndpointToConnectTo(new ReadOnlyCollection(findResponse.Endpoints), ref useCustomSerializer); + } + + public EndpointDiscoveryMetadata SelectEndpointToConnectTo(ReadOnlyCollection findResponse, ref bool useCustomSerializer) + { + if (findResponse == null) + { + return null; + } + EndpointDiscoveryMetadata result = null; + List list = new List(); + List list2 = new List(); + bool flag = true; + foreach (EndpointDiscoveryMetadata item in findResponse) + { + if (flag) + { + list2.Add(item); + } + else + { + list.Add(item); + } + flag = false; + } + Random random = new Random(DateTime.Now.Millisecond); + if (list2.Count != 0) + { + useCustomSerializer = true; + result = list2[random.Next(list2.Count)]; + } + else if (list.Count != 0) + { + useCustomSerializer = false; + result = list[random.Next(list.Count)]; + } + return result; + } + + public bool Connect(EndpointDiscoveryMetadata SelectedMetadata, out string errorMessage) + { + errorMessage = string.Empty; + bool useCustomSerializer = false; + foreach (Uri scope in SelectedMetadata.Scopes) + { + if (scope.AbsolutePath.Contains(customSerializerSearchString)) + { + useCustomSerializer = true; + break; + } + } + bool num = SelectedMetadata.ContractTypeNames[0] == securedQualifiedName; + string text = SelectedMetadata.Address.Uri.ToString(); + NetTcpBindingSecurityMode securityMode; + EndpointAddress iDataProviderEndpoint; + if (num) + { + securityMode = NetTcpBindingSecurityMode.CertificateEncryption; + IPHostEntry hostEntry = Dns.GetHostEntry(SelectedMetadata.Address.Uri.Host); + iDataProviderEndpoint = new EndpointAddress(SelectedMetadata.Address.Uri, EndpointIdentity.CreateDnsIdentity(hostEntry.HostName)); + } + else + { + securityMode = NetTcpBindingSecurityMode.None; + iDataProviderEndpoint = new EndpointAddress(text); + } + Binding binding = SvcUtilities.GetBinding(text, securityMode); + ASBSolutionManager aSBSolutionManager = new ASBSolutionManager(); + string aSBSolutionName = aSBSolutionManager.GetASBSolutionName(SelectedMetadata, out errorMessage); + if (string.IsNullOrEmpty(errorMessage)) + { + aSBSolutionManager.GetASBSolutionPassphrase(aSBSolutionName, out errorMessage); + } + if (string.IsNullOrEmpty(errorMessage)) + { + bool num2 = InternalConnect(iDataProviderEndpoint, binding, aSBSolutionName, out errorMessage, useCustomSerializer); + if (!num2 && errorMessage != null) + { + SvcTrace.DiagControl.TraceEvent(TraceEventType.Error, 0, errorMessage); + } + return num2; + } + return false; + } + + public void Disconnect() + { + SysAuthClientAuthentication.DisconnectSecureSession(m_ConnectionId, CallDisconnect); + } + + public void Abort() + { + Reset(); + } + + public ArchestrAServices.ASBContract.ArchestrAResult KeepAlive(ArchestrAServices.ASBContract.ConnectionId Id) + { + return KeepAlive(); + } + + public ArchestrAServices.ASBContract.ArchestrAResult KeepAlive() + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + KeepAlive keepAlive = new KeepAlive(); + keepAlive.ConnectionValidator.ConnectionId = m_ConnectionId; + clientAuthenticator.Sign(keepAlive); + IDataClient.KeepAlive(keepAlive); + return ArchestrAServices.ASBContract.ResultFactory.MakeGoodResult(); + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ActivateUser(ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.UserToken UserToken) + { + return ActivateUser(UserToken); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ActivateUser(ArchestrAServices.ASBIDataV2Contract.UserToken UserToken) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + ActivateUserRequest activateUserRequest = new ActivateUserRequest(); + activateUserRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + activateUserRequest.UserToken = UserToken; + clientAuthenticator.Sign(activateUserRequest); + ActivateUserResponse activateUserResponse = IDataClient.ActivateUser(activateUserRequest); + if (activateUserResponse != null) + { + return activateUserResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ExchangeCapabilities(out string ServiceCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, string ClientCapabilities) + { + return ExchangeCapabilities(out ServiceCapabilities, ClientCapabilities); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ExchangeCapabilities(out string ServiceCapabilities, string ClientCapabilities) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + ExchangeCapabilitiesRequest exchangeCapabilitiesRequest = new ExchangeCapabilitiesRequest(); + exchangeCapabilitiesRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + exchangeCapabilitiesRequest.ClientCapabilities = ClientCapabilities; + clientAuthenticator.Sign(exchangeCapabilitiesRequest); + ExchangeCapabilitiesResponse exchangeCapabilitiesResponse = IDataClient.ExchangeCapabilities(exchangeCapabilitiesRequest); + if (exchangeCapabilitiesResponse != null) + { + ServiceCapabilities = exchangeCapabilitiesResponse.ServiceCapabilities; + return exchangeCapabilitiesResponse.Result; + } + } + } + ServiceCapabilities = string.Empty; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Read(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + return Read(out Status, out Values, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Read(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.RuntimeValue[] Values, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + ReadRequest readRequest = new ReadRequest(); + readRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + readRequest.Items = Items; + clientAuthenticator.Sign(readRequest); + ReadResponse readResponse = IDataClient.Read(readRequest); + if (readResponse != null) + { + Status = readResponse.Status; + Values = readResponse.Values; + return readResponse.Result; + } + } + } + Status = null; + Values = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Write(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, uint WriteHandle) + { + return Write(out Status, Items, Values, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Write(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteBasicRequest writeBasicRequest = new WriteBasicRequest(); + writeBasicRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeBasicRequest.Items = Items; + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + if (Values[i].ArrayElementIndexSpecified) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + } + writeBasicRequest.Values = Values; + writeBasicRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeBasicRequest); + WriteResponse writeResponse = IDataClient.Write(writeBasicRequest); + if (writeResponse != null) + { + Status = writeResponse.Status; + return writeResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteUser(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + return WriteUser(out Status, Items, Values, User, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteUser(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteUserRequest writeUserRequest = new WriteUserRequest(); + writeUserRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeUserRequest.Items = Items; + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + if (Values[i].ArrayElementIndexSpecified) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + } + writeUserRequest.Values = Values; + writeUserRequest.User = User; + writeUserRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeUserRequest); + WriteUserResponse writeUserResponse = IDataClient.WriteUser(writeUserRequest); + if (writeUserResponse != null) + { + Status = writeUserResponse.Status; + return writeUserResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteVerified(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + return WriteVerified(out Status, Items, Values, User, Supervisor, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteVerified(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteVerifiedRequest writeVerifiedRequest = new WriteVerifiedRequest(); + writeVerifiedRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeVerifiedRequest.Items = Items; + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + if (Values[i].ArrayElementIndexSpecified) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + } + writeVerifiedRequest.Values = Values; + writeVerifiedRequest.User = User; + writeVerifiedRequest.Supervisor = Supervisor; + writeVerifiedRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeVerifiedRequest); + WriteVerifiedResponse writeVerifiedResponse = IDataClient.WriteVerified(writeVerifiedRequest); + if (writeVerifiedResponse != null) + { + Status = writeVerifiedResponse.Status; + return writeVerifiedResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteSecured(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + return WriteSecured(out Status, Items, Values, User, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteSecured(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, ArchestrAServices.ASBIDataV2Contract.WriteValue[] Values, ArchestrAServices.ASBIDataV2Contract.UserToken User, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteSecuredRequest writeSecuredRequest = new WriteSecuredRequest(); + writeSecuredRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeSecuredRequest.Items = Items; + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0) + { + for (int i = 0; i < Values.Length; i++) + { + if (Values[i].ArrayElementIndexSpecified) + { + Values[i].ArrayElementIndex -= setting; + } + } + } + } + writeSecuredRequest.Values = Values; + writeSecuredRequest.User = User; + writeSecuredRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(writeSecuredRequest); + WriteSecuredResponse writeSecuredResponse = IDataClient.WriteSecured(writeSecuredRequest); + if (writeSecuredResponse != null) + { + Status = writeSecuredResponse.Status; + return writeSecuredResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteConfirmed(out ArchestrAServices.ASBIDataV2Contract.WriteValue ValueReceived, out long WriteToken, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor) + { + return WriteConfirmed(out ValueReceived, out WriteToken, Item, Value, User, Supervisor); + } + + public ArchestrAServices.ASBContract.ArchestrAResult WriteConfirmed(out ArchestrAServices.ASBIDataV2Contract.WriteValue ValueReceived, out long WriteToken, ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + WriteConfirmedRequest writeConfirmedRequest = new WriteConfirmedRequest(); + writeConfirmedRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + writeConfirmedRequest.Item = Item; + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0 && Value.ArrayElementIndexSpecified) + { + Value.ArrayElementIndex -= setting; + } + } + writeConfirmedRequest.Value = Value; + writeConfirmedRequest.User = User; + writeConfirmedRequest.Supervisor = Supervisor; + clientAuthenticator.Sign(writeConfirmedRequest); + WriteConfirmedResponse writeConfirmedResponse = IDataClient.WriteConfirmed(writeConfirmedRequest); + if (writeConfirmedResponse != null) + { + if (Settings != null) + { + int setting2 = Settings.GetSetting("ArrayBase", 0); + if (setting2 != 0 && writeConfirmedResponse.ValueReceived.ArrayElementIndexSpecified) + { + writeConfirmedResponse.ValueReceived.ArrayElementIndex += setting2; + } + } + ValueReceived = writeConfirmedResponse.ValueReceived; + WriteToken = writeConfirmedResponse.WriteToken; + return writeConfirmedResponse.Result; + } + } + } + ValueReceived = default(ArchestrAServices.ASBIDataV2Contract.WriteValue); + WriteToken = long.MaxValue; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ConfirmWrite(ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, long WriteToken, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + return ConfirmWrite(Item, WriteToken, Value, User, Supervisor, WriteHandle); + } + + public ArchestrAServices.ASBContract.ArchestrAResult ConfirmWrite(ArchestrAServices.ASBIDataV2Contract.ItemIdentity Item, long WriteToken, ArchestrAServices.ASBIDataV2Contract.WriteValue Value, ArchestrAServices.ASBIDataV2Contract.UserToken User, ArchestrAServices.ASBIDataV2Contract.UserToken Supervisor, uint WriteHandle) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + ConfirmWriteRequest confirmWriteRequest = new ConfirmWriteRequest(); + confirmWriteRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + confirmWriteRequest.Item = Item; + confirmWriteRequest.WriteToken = WriteToken; + if (Settings != null) + { + int setting = Settings.GetSetting("ArrayBase", 0); + if (setting != 0 && Value.ArrayElementIndexSpecified) + { + Value.ArrayElementIndex -= setting; + } + } + confirmWriteRequest.Value = Value; + confirmWriteRequest.User = User; + confirmWriteRequest.Supervisor = Supervisor; + confirmWriteRequest.WriteHandle = WriteHandle; + clientAuthenticator.Sign(confirmWriteRequest); + ConfirmWriteResponse confirmWriteResponse = IDataClient.ConfirmWrite(confirmWriteRequest); + if (confirmWriteResponse != null) + { + return confirmWriteResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult PublishWriteComplete(out ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] CompleteWrites, ArchestrAServices.ASBContract.ConnectionId Id) + { + return PublishWriteComplete(out CompleteWrites); + } + + public ArchestrAServices.ASBContract.ArchestrAResult PublishWriteComplete(out ArchestrAServices.ASBIDataV2Contract.ItemWriteComplete[] CompleteWrites) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + PublishWriteCompleteRequest publishWriteCompleteRequest = new PublishWriteCompleteRequest(); + publishWriteCompleteRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + clientAuthenticator.Sign(publishWriteCompleteRequest); + PublishWriteCompleteResponse publishWriteCompleteResponse = IDataClient.PublishWriteComplete(publishWriteCompleteRequest); + if (publishWriteCompleteResponse != null) + { + CompleteWrites = publishWriteCompleteResponse.CompleteWrites; + return publishWriteCompleteResponse.Result; + } + } + } + CompleteWrites = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult CreateSubscription(out long SubscriptionId, ArchestrAServices.ASBContract.ConnectionId Id, long MaxQueueSize, ulong SampleInterval) + { + return CreateSubscription(out SubscriptionId, MaxQueueSize, SampleInterval); + } + + public ArchestrAServices.ASBContract.ArchestrAResult CreateSubscription(out long SubscriptionId, long MaxQueueSize, ulong SampleInterval) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + CreateSubscriptionRequest createSubscriptionRequest = new CreateSubscriptionRequest(); + createSubscriptionRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + createSubscriptionRequest.MaxQueueSize = MaxQueueSize; + createSubscriptionRequest.SampleInterval = SampleInterval; + clientAuthenticator.Sign(createSubscriptionRequest); + CreateSubscriptionResponse createSubscriptionResponse = IDataClient.CreateSubscription(createSubscriptionRequest); + if (createSubscriptionResponse != null) + { + SubscriptionId = createSubscriptionResponse.SubscriptionId; + return createSubscriptionResponse.Result; + } + } + } + SubscriptionId = long.MaxValue; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult SetSubscriptionState(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant NewState, ushort StateToChange) + { + return SetSubscriptionState(SubscriptionId, NewState, StateToChange); + } + + public ArchestrAServices.ASBContract.ArchestrAResult SetSubscriptionState(long SubscriptionId, ArchestrAServices.ASBIDataContract.V2.Variant NewState, ushort StateToChange) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + SetSubscriptionStateRequest setSubscriptionStateRequest = new SetSubscriptionStateRequest(); + setSubscriptionStateRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + setSubscriptionStateRequest.SubscriptionId = SubscriptionId; + setSubscriptionStateRequest.NewStateProperty = NewState; + setSubscriptionStateRequest.StateToChange = StateToChange; + clientAuthenticator.Sign(setSubscriptionStateRequest); + SetSubscriptionStateResponse setSubscriptionStateResponse = IDataClient.SetSubscriptionState(setSubscriptionStateRequest); + if (setSubscriptionStateResponse != null) + { + return setSubscriptionStateResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.V2.Variant State, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ushort StateToGet) + { + return GetSubscriptionState(out State, SubscriptionId, StateToGet); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetSubscriptionState(out ArchestrAServices.ASBIDataContract.V2.Variant State, long SubscriptionId, ushort StateToGet) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + GetSubscriptionStateRequest getSubscriptionStateRequest = new GetSubscriptionStateRequest(); + getSubscriptionStateRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + getSubscriptionStateRequest.SubscriptionId = SubscriptionId; + getSubscriptionStateRequest.StateToGet = StateToGet; + clientAuthenticator.Sign(getSubscriptionStateRequest); + GetSubscriptionStateResponse subscriptionState = IDataClient.GetSubscriptionState(getSubscriptionStateRequest); + if (subscriptionState != null) + { + State = subscriptionState.StateProperty; + return subscriptionState.Result; + } + } + } + State = default(ArchestrAServices.ASBIDataContract.V2.Variant); + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteSubscription(ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return DeleteSubscription(SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteSubscription(long SubscriptionId) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + DeleteSubscriptionRequest deleteSubscriptionRequest = new DeleteSubscriptionRequest(); + deleteSubscriptionRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + deleteSubscriptionRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(deleteSubscriptionRequest); + DeleteSubscriptionResponse deleteSubscriptionResponse = IDataClient.DeleteSubscription(deleteSubscriptionRequest); + if (deleteSubscriptionResponse != null) + { + return deleteSubscriptionResponse.Result; + } + } + } + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, byte RequireId) + { + return AddMonitoredItems(out Status, out ItemCapabilities, SubscriptionId, RequireId != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, byte RequireId) + { + return AddMonitoredItems(out Status, out ItemCapabilities, SubscriptionId, RequireId != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult AddMonitoredItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, long SubscriptionId, bool RequireId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + AddMonitoredItemsRequest addMonitoredItemsRequest = new AddMonitoredItemsRequest(); + addMonitoredItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + addMonitoredItemsRequest.SubscriptionId = SubscriptionId; + addMonitoredItemsRequest.Items = Items; + addMonitoredItemsRequest.RequireId = RequireId; + clientAuthenticator.Sign(addMonitoredItemsRequest); + AddMonitoredItemsResponse addMonitoredItemsResponse = IDataClient.AddMonitoredItems(addMonitoredItemsRequest); + if (addMonitoredItemsResponse != null) + { + Status = addMonitoredItemsResponse.Status; + ItemCapabilities = addMonitoredItemsResponse.ItemCapabilities; + return addMonitoredItemsResponse.Result; + } + } + } + Status = null; + ItemCapabilities = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteMonitoredItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items) + { + return DeleteMonitoredItems(out Status, SubscriptionId, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult DeleteMonitoredItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, long SubscriptionId, ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + DeleteMonitoredItemsRequest deleteMonitoredItemsRequest = new DeleteMonitoredItemsRequest(); + deleteMonitoredItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + deleteMonitoredItemsRequest.SubscriptionId = SubscriptionId; + deleteMonitoredItemsRequest.Items = Items; + clientAuthenticator.Sign(deleteMonitoredItemsRequest); + DeleteMonitoredItemsResponse deleteMonitoredItemsResponse = IDataClient.DeleteMonitoredItems(deleteMonitoredItemsRequest); + if (deleteMonitoredItemsResponse != null) + { + Status = deleteMonitoredItemsResponse.Status; + return deleteMonitoredItemsResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetMonitoredItems(out ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return GetMonitoredItems(out Items, SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult GetMonitoredItems(out ArchestrAServices.ASBIDataV2Contract.MonitoredItem[] Items, long SubscriptionId) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + GetMonitoredItemsRequest getMonitoredItemsRequest = new GetMonitoredItemsRequest(); + getMonitoredItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + getMonitoredItemsRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(getMonitoredItemsRequest); + GetMonitoredItemsResponse monitoredItems = IDataClient.GetMonitoredItems(getMonitoredItemsRequest); + if (monitoredItems != null) + { + Items = monitoredItems.Items; + return monitoredItems.Result; + } + } + } + Items = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Publish(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] Values, ArchestrAServices.ASBContract.ConnectionId Id, long SubscriptionId) + { + return Publish(out Status, out Values, SubscriptionId); + } + + public ArchestrAServices.ASBContract.ArchestrAResult Publish(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.MonitoredItemValue[] Values, long SubscriptionId) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + PublishRequest publishRequest = new PublishRequest(); + publishRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + publishRequest.SubscriptionId = SubscriptionId; + clientAuthenticator.Sign(publishRequest); + PublishResponse publishResponse = IDataClient.Publish(publishRequest); + if (publishResponse != null) + { + Status = publishResponse.Status; + Values = publishResponse.Values; + return publishResponse.Result; + } + } + } + Status = null; + Values = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + return RegisterItems(out Status, out ItemCapabilities, RequireId != 0, RegisterOnly != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items, byte RequireId, byte RegisterOnly) + { + return RegisterItems(out Status, out ItemCapabilities, RequireId != 0, RegisterOnly != 0, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult RegisterItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, out ArchestrAServices.ASBIDataV2Contract.ItemRegistration[] ItemCapabilities, bool RequireId, bool RegisterOnly, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + RegisterItemsRequest registerItemsRequest = new RegisterItemsRequest(); + registerItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + registerItemsRequest.Items = Items; + registerItemsRequest.RequireId = RequireId; + registerItemsRequest.RegisterOnly = RegisterOnly; + clientAuthenticator.Sign(registerItemsRequest); + RegisterItemsResponse registerItemsResponse = IDataClient.RegisterItems(registerItemsRequest); + if (registerItemsResponse != null) + { + Status = registerItemsResponse.Status; + ItemCapabilities = registerItemsResponse.ItemCapabilities; + return registerItemsResponse.Result; + } + } + } + Status = null; + ItemCapabilities = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public ArchestrAServices.ASBContract.ArchestrAResult UnregisterItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBContract.ConnectionId Id, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + return UnregisterItems(out Status, Items); + } + + public ArchestrAServices.ASBContract.ArchestrAResult UnregisterItems(out ArchestrAServices.ASBIDataV2Contract.ItemStatus[] Status, ArchestrAServices.ASBIDataV2Contract.ItemIdentity[] Items) + { + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null) + { + UnregisterItemsRequest unregisterItemsRequest = new UnregisterItemsRequest(); + unregisterItemsRequest.ConnectionValidator.ConnectionId = m_ConnectionId; + unregisterItemsRequest.Items = Items; + clientAuthenticator.Sign(unregisterItemsRequest); + UnregisterItemsResponse unregisterItemsResponse = IDataClient.UnregisterItems(unregisterItemsRequest); + if (unregisterItemsResponse != null) + { + Status = unregisterItemsResponse.Status; + return unregisterItemsResponse.Result; + } + } + } + Status = null; + return ArchestrAServices.ASBContract.ResultFactory.MakeResult(ArchestrAServices.ASBContract.ArchestrAError.OperationFailed, 0); + } + + public void OnConnect(ArchestrAServices.ASBContract.ConnectionId ConnectionId, ulong Timeout) + { + } + + public void OnDisconnect(ArchestrAServices.ASBContract.ConnectionId Id) + { + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + protected virtual void Dispose(bool disposing) + { + if (!disposing) + { + return; + } + if (IDataClient != null) + { + SysAuthClientAuthentication clientAuthenticator = SysAuthenticatorClientCache.GetClientAuthenticator(m_ConnectionId); + if (clientAuthenticator != null && clientAuthenticator.SecureSessionEstablished) + { + Disconnect(); + } + IClientChannel obj = IDataClient as IClientChannel; + obj?.Close(); + obj?.Dispose(); + } + connectionEstablishedEvent?.Close(); + connectionEstablishedEvent = null; + } + + private static FindResponse DiscoverEndpointsInternal(string scopeToFind, XmlQualifiedName qualifiedName) + { + FindResponse result = null; + try + { + Uri uri = RegistryHandler.MakeLDSProbeEndpointAddress(Environment.MachineName); + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "FindIDataEndpoint generated LDS endpoint for SR Node localhost: {0}", uri.AbsoluteUri); + using DiscoveryClient discoveryClient = new DiscoveryClient(new DiscoveryEndpoint(SvcUtilities.GetBinding(uri.AbsoluteUri), new EndpointAddress(uri))); + FindCriteria findCriteria = new FindCriteria(); + findCriteria.ContractTypeNames.Add(qualifiedName); + List extraScopes = new List { scopeToFind }; + Collection collection = SvcUtilities.CreateFindScopes(string.Empty, string.Empty, string.Empty, extraScopes); + findCriteria.Scopes.Clear(); + foreach (Uri item in collection) + { + findCriteria.Scopes.Add(item); + } + result = discoveryClient.Find(findCriteria); + } + catch (TargetInvocationException ex) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) TargetInvocationException: {1}", scopeToFind, ex.Message); + if (ex.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex.InnerException.Message); + } + result = null; + } + catch (ObjectDisposedException ex2) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) ObjectDisposedException: {1}", scopeToFind, ex2.Message); + if (ex2.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex2.InnerException.Message); + } + result = null; + } + catch (Exception ex3) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, "FindIDataEndpoint({0}) Exception: {1}", scopeToFind, ex3.Message); + if (ex3.InnerException != null) + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Error, 0, " {0}", ex3.InnerException.Message); + } + result = null; + } + return result; + } + + private void Reset() + { + if (IDataClient != null) + { + ((IClientChannel)IDataClient).Abort(); + } + m_DataProviderFactory = null; + IDataClient = null; + m_ConnectionId = Guid.Empty; + } + + private EndpointDiscoveryMetadata FindEndpointForConnect(bool secured, ref bool useCustomSerializer, out string solutionName, out string errorMessage) + { + solutionName = string.Empty; + string accessName = m_AccessName; + DiscoveryScope num = scopeRule; + int secureCommunicationMode; + if (!secured) + { + SecureCommunicationModes secureCommunicationModes = (SecureCommunicationMode = SecureCommunicationModes.Never); + secureCommunicationMode = (int)secureCommunicationModes; + } + else + { + secureCommunicationMode = 2; + } + FindResponse findResponse = FindIDataEndpoint(accessName, num, (SecureCommunicationModes)secureCommunicationMode); + EndpointDiscoveryMetadata endpointDiscoveryMetadata = SelectEndpointToConnectTo(findResponse, ref useCustomSerializer); + if (endpointDiscoveryMetadata != null) + { + ASBSolutionManager aSBSolutionManager = new ASBSolutionManager(); + solutionName = aSBSolutionManager.GetASBSolutionName(endpointDiscoveryMetadata, out errorMessage); + if (string.IsNullOrEmpty(errorMessage)) + { + aSBSolutionManager.GetASBSolutionPassphrase(solutionName, out errorMessage); + } + } + else + { + SvcTrace.DiagException.TraceEvent(TraceEventType.Warning, 0, "Connect found no endpoints for access name {0} that were configured correctly", m_AccessName); + string text = $"There are no endpoints selected for the namespace: '{m_AccessName}'. Confirm that \r"; + string text2 = $"a) local galaxy and remote galaxy {m_AccessName} specify the same UDS \r"; + string text3 = $"b) local galaxy has been paired with remote galaxy {m_AccessName} \r"; + string text4 = $"c) MxDataProvider service has been deployed on galaxy {m_AccessName}."; + errorMessage = $"{text}{text2}{text3}{text4}"; + } + return endpointDiscoveryMetadata; + } + + private bool InternalConnect(EndpointAddress IDataProviderEndpoint, Binding binding, string SolutionName, out string errorMessage, bool useCustomSerializer) + { + bool flag = false; + errorMessage = string.Empty; + if (IDataProviderEndpoint != null && binding != null) + { + try + { + ChannelFactory channelFactory = new ChannelFactory(binding, IDataProviderEndpoint); + if (channelFactory != null) + { + if (binding is NetTcpBinding netTcpBinding && netTcpBinding.Security.Mode == SecurityMode.Transport && channelFactory.Credentials != null) + { + channelFactory.Credentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.ChainTrust; + channelFactory.Credentials.ServiceCertificate.Authentication.RevocationMode = X509RevocationMode.NoCheck; + } + if (useCustomSerializer && binding is NetTcpBinding) + { + IContractBehavior contractBehavior = new ASBCustomSerializerContractBehavior(); + if (contractBehavior != null) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "ASB-IData optimized serialization is enabled."); + channelFactory.Endpoint.Contract.Behaviors.Add(contractBehavior); + } + } + foreach (OperationDescription operation in channelFactory.Endpoint.Contract.Operations) + { + DataContractSerializerOperationBehavior dataContractSerializerOperationBehavior = operation.Behaviors.Find(); + if (dataContractSerializerOperationBehavior != null) + { + dataContractSerializerOperationBehavior.MaxItemsInObjectGraph = int.MaxValue; + } + } + channelFactory.Open(); + IASBIDataV2 iASBIDataV = channelFactory.CreateChannel(); + Guid connectionId = Guid.Empty; + if (iASBIDataV != null) + { + ((IClientChannel)iASBIDataV).Open(); + if (iASBIDataV != null && ((IClientChannel)iASBIDataV).State != CommunicationState.Faulted) + { + ConnectionDelegate connectionDelegate = new ConnectionDelegate(iASBIDataV); + flag = SysAuthClientAuthentication.EstablishSecureSession(Process.GetCurrentProcess().ProcessName, "localdomain", Environment.MachineName, SolutionName, new WeakReference(this), connectionDelegate.CallConnect, connectionDelegate.CallAuthenticateMe, out connectionId, out errorMessage); + Thread.Sleep(250); + if (flag) + { + Stopwatch stopwatch = new Stopwatch(); + stopwatch.Start(); + bool flag2; + do + { + flag2 = PublishWriteComplete(out var _).ErrorCode != ArchestrAServices.ASBContract.EnumASBFactory.ArchestrAErrorToInt(ArchestrAServices.ASBContract.ArchestrAError.InvalidConnectionId); + if (flag2) + { + SvcTrace.DiagDiagnostics.TraceEvent(TraceEventType.Information, 0, "Ping PublishWriteComplete() successful with service using ConnectionId {0}", connectionId); + } + if (!flag2) + { + Thread.Sleep(250); + } + } + while (!flag2 && stopwatch.ElapsedMilliseconds < 2500); + flag = flag2; + } + if (flag) + { + bool flag3 = false; + lock (connectionLock) + { + if (m_DataProviderFactory == null) + { + flag3 = true; + m_DataProviderFactory = channelFactory; + IDataClient = iASBIDataV; + m_ConnectionId = connectionId; + if (connectionEstablishedEvent != null) + { + connectionEstablishedEvent.Set(); + } + } + } + if (!flag3) + { + SysAuthClientAuthentication.DisconnectSecureSession(connectionId, connectionDelegate.CallDisconnect); + if (iASBIDataV != null) + { + ((IClientChannel)iASBIDataV).Close(); + ((IClientChannel)iASBIDataV).Dispose(); + } + } + } + else + { + if (iASBIDataV != null) + { + ((IClientChannel)iASBIDataV).Abort(); + ((IClientChannel)iASBIDataV).Dispose(); + } + if (string.IsNullOrEmpty(errorMessage)) + { + errorMessage = "ASBDataProxy could not connect with service: EstablishSecureSession failed"; + } + } + } + else + { + errorMessage = "ASBDataProxy could not connect with service: communicaton channel in faulted state"; + flag = false; + } + } + else + { + errorMessage = $"ASBDataProxy not able to create a channel for the endpoint {IDataProviderEndpoint.Uri}"; + } + } + else + { + errorMessage = $"ASBDataProxy not able to connect it to endpoint {IDataProviderEndpoint.Uri}"; + } + } + catch (CommunicationException ex) + { + errorMessage = "ASBDataProxy caught CommunicationException opening channel: " + ex.Message; + if (ex.InnerException != null) + { + errorMessage += ex.InnerException.Message; + } + } + catch (TimeoutException ex2) + { + errorMessage = "ASBDataProxy caught TimeoutException opening channel: " + ex2.Message; + if (ex2.InnerException != null) + { + errorMessage += ex2.InnerException.Message; + } + } + catch (Exception ex3) + { + errorMessage = "ASBDataProxy caught exception opening channel: " + ex3.Message; + flag = false; + } + } + else + { + if (IDataProviderEndpoint == null) + { + errorMessage += "ASBDataProxy cannot proceed to connect: No provider endpoint provided by caller"; + flag = false; + } + if (binding == null) + { + errorMessage += "ASBDataProxy cannot proceed to connect: No binding provided by caller"; + flag = false; + } + } + return flag; + } + + private void CallDisconnect(Disconnect request) + { + if (IDataClient != null) + { + IDataClient.Disconnect(request); + } + } +} diff --git a/analysis/decompiled/aaServicesProxyIDataV2/ArchestrAServices.Proxy/DiscoveryScope.cs b/analysis/decompiled/aaServicesProxyIDataV2/ArchestrAServices.Proxy/DiscoveryScope.cs new file mode 100644 index 0000000..35c20ae --- /dev/null +++ b/analysis/decompiled/aaServicesProxyIDataV2/ArchestrAServices.Proxy/DiscoveryScope.cs @@ -0,0 +1,8 @@ +namespace ArchestrAServices.Proxy; + +public enum DiscoveryScope +{ + Local, + Global, + Closest +} diff --git a/analysis/decompiled/aaServicesProxyIDataV2/Properties/AssemblyInfo.cs b/analysis/decompiled/aaServicesProxyIDataV2/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..fcaefd8 --- /dev/null +++ b/analysis/decompiled/aaServicesProxyIDataV2/Properties/AssemblyInfo.cs @@ -0,0 +1,14 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.Versioning; + +[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")] +[assembly: AssemblyCompany("AVEVA Software, LLC")] +[assembly: AssemblyConfiguration("Release")] +[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")] +[assembly: AssemblyFileVersion("2018.4.20078.1")] +[assembly: AssemblyInformationalVersion("4.4.6")] +[assembly: AssemblyProduct("PCS WCF Services")] +[assembly: AssemblyTitle("aaServicesProxyIDataV2")] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/analysis/decompiled/aaServicesProxyIDataV2/aaServicesProxyIDataV2.csproj b/analysis/decompiled/aaServicesProxyIDataV2/aaServicesProxyIDataV2.csproj new file mode 100644 index 0000000..a862b59 --- /dev/null +++ b/analysis/decompiled/aaServicesProxyIDataV2/aaServicesProxyIDataV2.csproj @@ -0,0 +1,24 @@ + + + aaServicesProxyIDataV2 + False + net40 + + + 14.0 + True + False + + + + + + + + + + + + + + \ No newline at end of file diff --git a/analysis/frida/mx-nmx-trace.js b/analysis/frida/mx-nmx-trace.js new file mode 100644 index 0000000..428b823 --- /dev/null +++ b/analysis/frida/mx-nmx-trace.js @@ -0,0 +1,480 @@ +// Frida hooks generated from headless Ghidra RVAs. +// Usage: frida -f -l analysis/frida/mx-nmx-trace.js -- + +const maxDump = 4096; +const installed = {}; + +function now() { + return new Date().toISOString(); +} + +function emit(event) { + event.time = now(); + console.log(JSON.stringify(event)); +} + +function hexDumpSafe(ptr, length) { + try { + if (ptr.isNull() || length <= 0) return ""; + const capped = Math.min(length, maxDump); + return ptr.readByteArray(capped); + } catch (e) { + return null; + } +} + +function toHex(arrayBuffer) { + if (arrayBuffer === null || arrayBuffer === "") return ""; + const bytes = new Uint8Array(arrayBuffer); + let out = []; + for (let i = 0; i < bytes.length; i++) out.push(bytes[i].toString(16).padStart(2, "0")); + return out.join(" "); +} + +function dumpBytes(ptrValue, length) { + return toHex(hexDumpSafe(ptrValue, length)); +} + +function readStdWString(base, offset) { + try { + const obj = base.add(offset); + const length = obj.add(0x10).readU32(); + const capacity = obj.add(0x14).readU32(); + const data = capacity < 8 ? obj : obj.readPointer(); + if (length > 1024 || data.isNull()) { + return { length, capacity, value: "" }; + } + + return { length, capacity, value: data.readUtf16String(length) }; + } catch (e) { + return { error: e.message }; + } +} + +function readBstr(ptrValue) { + try { + if (ptrValue.isNull()) return ""; + return ptrValue.readUtf16String(); + } catch (e) { + return ""; + } +} + +function readMxHandle(ptrValue) { + try { + if (ptrValue.isNull()) return null; + return { + raw: dumpBytes(ptrValue, 20), + w0: ptrValue.add(0).readU32(), + w1: ptrValue.add(4).readU32(), + w2: ptrValue.add(8).readU32(), + w3: ptrValue.add(12).readU32(), + w4: ptrValue.add(16).readU32() + }; + } catch (e) { + return { error: e.message }; + } +} + +function readPreboundReference(ptrValue) { + try { + if (ptrValue.isNull()) return null; + const err = ptrValue.add(0xac).readPointer(); + return { + ptr: ptrValue.toString(), + referenceString: readStdWString(ptrValue, 0x18), + contextString: readStdWString(ptrValue, 0x34), + auxString: readStdWString(ptrValue, 0x70), + mxReference: ptrValue.add(0x50).readPointer().toString(), + flags10: ptrValue.add(0x10).readU32(), + word14: ptrValue.add(0x14).readU32(), + word4c: ptrValue.add(0x4c).readU32(), + word54: ptrValue.add(0x54).readU32(), + word58: ptrValue.add(0x58).readU32(), + word5c: ptrValue.add(0x5c).readU32(), + word60: ptrValue.add(0x60).readU32(), + word64: ptrValue.add(0x64).readU32(), + word68: ptrValue.add(0x68).readU32(), + word6c: ptrValue.add(0x6c).readU32(), + worda0: ptrValue.add(0xa0).readU32(), + worda4: ptrValue.add(0xa4).readU32(), + status: ptrValue.add(0xa8).readU32(), + flagb0: ptrValue.add(0xb0).readU8(), + errorText: readBstr(err), + raw: dumpBytes(ptrValue, 0xb4) + }; + } catch (e) { + return { error: e.message, ptr: ptrValue.toString() }; + } +} + +function argValue(args, index) { + try { + return args[index].toString(); + } catch (e) { + return ""; + } +} + +function intArg(args, index) { + try { + return args[index].toInt32(); + } catch (e) { + return null; + } +} + +function uintArg(args, index) { + try { + return args[index].toUInt32(); + } catch (e) { + return null; + } +} + +function ptrArg(args, index) { + try { + return args[index]; + } catch (e) { + return ptr("0"); + } +} + +function hook(moduleName, rva, name, handlers) { + const key = moduleName + "!" + name; + if (installed[key]) return; + const module = Process.findModuleByName(moduleName); + if (module === null) return; + const address = module.base.add(rva); + Interceptor.attach(address, handlers(address, module)); + installed[key] = true; + emit({ event: "hook.installed", module: moduleName, name, base: module.base.toString(), rva: "0x" + rva.toString(16), address: address.toString() }); +} + +function hookPlainArgs(moduleName, rva, name, argCount) { + hook(moduleName, rva, name, function (address, module) { + return { + onEnter(args) { + let values = []; + for (let i = 0; i < argCount; i++) values.push(argValue(args, i)); + emit({ + event: "call.enter", + module: moduleName, + name, + address: address.toString(), + ecx: this.context.ecx ? this.context.ecx.toString() : "", + args: values + }); + }, + onLeave(retval) { + emit({ event: "call.leave", module: moduleName, name, retval: retval.toString() }); + } + }; + }); +} + +function hookAuthenticateUser() { + hook("LmxProxy.dll", 0x1399f, "CLMXProxyServer.AuthenticateUser", function (address, module) { + return { + onEnter(args) { + this.userIdOut = ptrArg(args, 4); + const password = readBstr(ptrArg(args, 3)); + emit({ + event: "call.enter", + module: "LmxProxy.dll", + name: "CLMXProxyServer.AuthenticateUser", + address: address.toString(), + ecx: this.context.ecx ? this.context.ecx.toString() : "", + serverHandle: intArg(args, 1), + user: readBstr(ptrArg(args, 2)), + passwordLength: password.length, + userIdOut: this.userIdOut.toString() + }); + }, + onLeave(retval) { + let userId = null; + try { + if (!this.userIdOut.isNull()) userId = this.userIdOut.readS32(); + } catch (e) { + userId = null; + } + + emit({ + event: "call.leave", + module: "LmxProxy.dll", + name: "CLMXProxyServer.AuthenticateUser", + retval: retval.toString(), + userId + }); + } + }; + }); +} + +function hookLmxPrebindReference() { + hook("Lmx.dll", 0xea780, "MxConnection.PrebindReference", function (address, module) { + return { + onEnter(args) { + this.self = ptrArg(args, 0); + this.out = ptrArg(args, 2); + emit({ + event: "lmx.prebind.enter", + module: "Lmx.dll", + name: "MxConnection.PrebindReference", + self: this.self.toString(), + outPtr: this.out.toString(), + referencePtr: ptrArg(args, 1).toString(), + reference: ptrArg(args, 1).readUtf16String() + }); + }, + onLeave(retval) { + let handle = null; + try { + if (!this.out.isNull()) handle = this.out.readS32(); + } catch (e) { + handle = null; + } + emit({ event: "lmx.prebind.leave", module: "Lmx.dll", name: "MxConnection.PrebindReference", handle }); + } + }; + }); +} + +function hookLmxUserRegisterPreboundReference() { + hook("Lmx.dll", 0xe1920, "MxConnection.UserRegisterPreboundReference", function (address, module) { + return { + onEnter(args) { + this.self = ptrArg(args, 0); + this.out = ptrArg(args, 4); + emit({ + event: "lmx.user-register-prebound.enter", + module: "Lmx.dll", + name: "MxConnection.UserRegisterPreboundReference", + self: this.self.toString(), + preboundHandle: intArg(args, 1), + callback: argValue(args, 2), + userData: intArg(args, 3), + outPtr: this.out.toString() + }); + }, + onLeave(retval) { + let mxReferenceHandle = null; + try { + if (!this.out.isNull()) mxReferenceHandle = this.out.readS32(); + } catch (e) { + mxReferenceHandle = null; + } + emit({ + event: "lmx.user-register-prebound.leave", + module: "Lmx.dll", + name: "MxConnection.UserRegisterPreboundReference", + retval: retval.toString(), + mxReferenceHandle + }); + } + }; + }); +} + +function hookLmxReferenceHandleReader() { + hook("Lmx.dll", 0x5f730, "IMxReference.GetMxHandle", function (address, module) { + return { + onEnter(args) { + this.out = ptrArg(args, 0); + this.ref = this.context.ecx ? this.context.ecx : ptr("0"); + }, + onLeave(retval) { + emit({ + event: "lmx.mxhandle.read", + module: "Lmx.dll", + name: "IMxReference.GetMxHandle", + referencePtr: this.ref.toString(), + outPtr: this.out.toString(), + handle: readMxHandle(this.out), + retval: retval.toString() + }); + } + }; + }); +} + +function hookLmxFixupMxHandle() { + hook("Lmx.dll", 0x8f8b0, "AccessManager.FixUpMxHandle", function (address, module) { + return { + onEnter(args) { + this.out = ptrArg(args, 0); + emit({ + event: "lmx.fixup-mxhandle.enter", + module: "Lmx.dll", + name: "AccessManager.FixUpMxHandle", + accessManager: this.context.ecx ? this.context.ecx.toString() : "", + outPtr: this.out.toString(), + inWords: [uintArg(args, 1), uintArg(args, 2), uintArg(args, 3), uintArg(args, 4), uintArg(args, 5), uintArg(args, 6)] + }); + }, + onLeave(retval) { + emit({ + event: "lmx.fixup-mxhandle.leave", + module: "Lmx.dll", + name: "AccessManager.FixUpMxHandle", + outPtr: this.out.toString(), + handle: readMxHandle(this.out), + retval: retval.toString() + }); + } + }; + }); +} + +function hookLmxResolveReference() { + hook("Lmx.dll", 0x113d40, "PreboundReference.Resolve", function (address, module) { + return { + onEnter(args) { + this.prebound = this.context.ecx ? this.context.ecx : ptr("0"); + emit({ + event: "lmx.prebound-resolve.enter", + module: "Lmx.dll", + name: "PreboundReference.Resolve", + prebound: readPreboundReference(this.prebound) + }); + }, + onLeave(retval) { + emit({ + event: "lmx.prebound-resolve.leave", + module: "Lmx.dll", + name: "PreboundReference.Resolve", + prebound: readPreboundReference(this.prebound), + retval: retval.toString() + }); + } + }; + }); +} + +function hookLmxResolveCallbacks() { + hook("Lmx.dll", 0x1155a0, "PreboundReference.OnPlatformResolveReferenceResults", function (address, module) { + return { + onEnter(args) { + this.prebound = this.context.ecx ? this.context.ecx : ptr("0"); + this.reference = this.context.edx ? this.context.edx : ptr("0"); + emit({ + event: "lmx.platform-resolve-results.enter", + module: "Lmx.dll", + name: "PreboundReference.OnPlatformResolveReferenceResults", + prebound: readPreboundReference(this.prebound), + referencePtr: this.reference.toString() + }); + }, + onLeave(retval) { + emit({ + event: "lmx.platform-resolve-results.leave", + module: "Lmx.dll", + name: "PreboundReference.OnPlatformResolveReferenceResults", + prebound: readPreboundReference(this.prebound), + retval: retval.toString() + }); + } + }; + }); + + hook("Lmx.dll", 0x114a90, "PreboundReference.OnSetAttributeResult", function (address, module) { + return { + onEnter(args) { + this.prebound = this.context.ecx ? this.context.ecx : ptr("0"); + emit({ + event: "lmx.set-attribute-result.enter", + module: "Lmx.dll", + name: "PreboundReference.OnSetAttributeResult", + prebound: readPreboundReference(this.prebound), + correlationId: this.context.edx ? this.context.edx.toString() : "", + pValue: argValue(args, 0), + status: argValue(args, 3) + }); + }, + onLeave(retval) { + emit({ + event: "lmx.set-attribute-result.leave", + module: "Lmx.dll", + name: "PreboundReference.OnSetAttributeResult", + prebound: readPreboundReference(this.prebound), + retval: retval.toString() + }); + } + }; + }); +} + +function hookNmxPutRequest(moduleName, rva, name, ex) { + hook(moduleName, rva, name, function (address, module) { + return { + onEnter(args) { + // Ghidra sees this as a C++ method. On x86 thiscall, ECX is likely `this` + // and args[0] is the first stack argument. We log broad argument state + // and dump plausible size/payload pairs for later alignment. + const candidates = []; + for (let sizeIndex = 3; sizeIndex <= 8; sizeIndex++) { + const size = uintArg(args, sizeIndex); + const dataPtr = ptrArg(args, sizeIndex + 1); + if (size !== null && size > 0 && size <= 65536 && !dataPtr.isNull()) { + candidates.push({ + sizeIndex, + ptrIndex: sizeIndex + 1, + size, + ptr: dataPtr.toString(), + hex: toHex(hexDumpSafe(dataPtr, size)) + }); + } + } + let values = []; + for (let i = 0; i < 10; i++) values.push(argValue(args, i)); + emit({ + event: "nmx.enter", + module: moduleName, + name, + address: address.toString(), + ecx: this.context.ecx ? this.context.ecx.toString() : "", + args: values, + candidates + }); + }, + onLeave(retval) { + emit({ event: "nmx.leave", module: moduleName, name, retval: retval.toString() }); + } + }; + }); +} + +function installKnownHooks() { + hookPlainArgs("LmxProxy.dll", 0x12c0c, "CLMXProxyServer.Write.variantA", 10); + hookPlainArgs("LmxProxy.dll", 0x13280, "CLMXProxyServer.Write.variantB", 13); + hookPlainArgs("LmxProxy.dll", 0x12f24, "CLMXProxyServer.WriteSecured.variantA", 10); + hookPlainArgs("LmxProxy.dll", 0x135fe, "CLMXProxyServer.WriteSecured.variantB", 14); + hookPlainArgs("LmxProxy.dll", 0x1121d, "CLMXProxyServer.AddBufferedItem", 5); + hookPlainArgs("LmxProxy.dll", 0x0fc80, "CLMXProxyServer.SetBufferedUpdateInterval", 3); + hookPlainArgs("LmxProxy.dll", 0x142b4, "CLMXProxyServer.AdviseSupervisory", 5); + hookPlainArgs("LmxProxy.dll", 0x163c0, "CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange", 8); + hookPlainArgs("LmxProxy.dll", 0x16b50, "CUserConnectionCallback.OnSetAttributeResult", 4); + hookPlainArgs("LmxProxy.dll", 0x16d4b, "CUserConnectionCallback.OperationComplete", 4); + hookAuthenticateUser(); + + hookNmxPutRequest("NmxAdptr.dll", 0x10996, "CNmxAdapter.TransferData", false); + hookNmxPutRequest("NmxAdptr.dll", 0x112da, "CNmxAdapter.ProcessDataReceived", false); + hookNmxPutRequest("NmxAdptr.dll", 0x15169, "CNmxAdapter.PutRequest", false); + hookNmxPutRequest("NmxAdptr.dll", 0x159c3, "CNmxAdapter.PutRequestEx", true); + + hookLmxPrebindReference(); + hookLmxUserRegisterPreboundReference(); + hookLmxReferenceHandleReader(); + hookLmxFixupMxHandle(); + hookLmxResolveReference(); + hookLmxResolveCallbacks(); +} + +const timer = setInterval(function () { + installKnownHooks(); + if (installed["LmxProxy.dll!CLMXProxyServer.Write.variantA"] && installed["NmxAdptr.dll!CNmxAdapter.PutRequest"]) { + clearInterval(timer); + } +}, 100); + +installKnownHooks(); diff --git a/analysis/frida/nmx-com-proxy-trace.js b/analysis/frida/nmx-com-proxy-trace.js new file mode 100644 index 0000000..69a8fdd --- /dev/null +++ b/analysis/frida/nmx-com-proxy-trace.js @@ -0,0 +1,379 @@ +// Frida hooks for the 32-bit MIDL COM proxy path used by NmxSvcps.dll. +// Usage: +// frida -f src/MxTraceHarness/bin/Release/net481/MxTraceHarness.exe \ +// -l analysis/frida/nmx-com-proxy-trace.js -- --scenario=register --duration=3 + +const maxDump = 8192; +const installed = {}; +let lastBstrMarshalBuffer = ptr("0"); +let lastBstrMarshalLength = 0; + +function now() { + return new Date().toISOString(); +} + +function emit(event) { + event.time = now(); + console.log(JSON.stringify(event)); +} + +function toHex(arrayBuffer) { + if (arrayBuffer === null || arrayBuffer === "") return ""; + const bytes = new Uint8Array(arrayBuffer); + const out = []; + for (let i = 0; i < bytes.length; i++) out.push(bytes[i].toString(16).padStart(2, "0")); + return out.join(" "); +} + +function dump(ptrValue, length) { + try { + if (ptrValue.isNull() || length <= 0) return ""; + return toHex(ptrValue.readByteArray(Math.min(length, maxDump))); + } catch (e) { + return null; + } +} + +function readU32(ptrValue, offset) { + try { + return ptrValue.add(offset).readU32(); + } catch (e) { + return null; + } +} + +function readPtr(ptrValue, offset) { + try { + return ptrValue.add(offset).readPointer(); + } catch (e) { + return ptr("0"); + } +} + +function moduleNameFor(address) { + try { + const module = Process.findModuleByAddress(address); + return module === null ? "" : module.name; + } catch (e) { + return ""; + } +} + +function readUtf16(ptrValue, maxChars) { + try { + if (ptrValue.isNull()) return ""; + return ptrValue.readUtf16String(maxChars); + } catch (e) { + return ""; + } +} + +function describePossibleBstr(ptrValue) { + try { + if (ptrValue.isNull()) return null; + const byteLength = ptrValue.sub(4).readU32(); + if (byteLength > 4096 || (byteLength % 2) !== 0) return null; + return { + ptr: ptrValue.toString(), + byteLength, + charLength: byteLength / 2, + text: readUtf16(ptrValue, byteLength / 2) + }; + } catch (e) { + return null; + } +} + +function dumpNdrVarArgs(args) { + const values = []; + for (let i = 2; i < 12; i++) { + let value = ptr("0"); + try { + value = args[i]; + } catch (e) { + value = ptr("0"); + } + + const item = { + index: i, + value: value.toString(), + module: moduleNameFor(value), + asU32: value.toUInt32() + }; + + const bstr = describePossibleBstr(value); + if (bstr !== null) { + item.bstr = bstr; + } + + values.push(item); + } + + return values; +} + +function dumpStackWords(context, count) { + const values = []; + let esp = ptr("0"); + try { + esp = context.esp; + } catch (e) { + return values; + } + + for (let i = 0; i < count; i++) { + const address = esp.add(i * Process.pointerSize); + let value = ptr("0"); + try { + value = address.readPointer(); + } catch (e) { + value = ptr("0"); + } + + const item = { + index: i, + address: address.toString(), + value: value.toString(), + module: moduleNameFor(value), + asU32: value.toUInt32() + }; + + const bstr = describePossibleBstr(value); + if (bstr !== null) { + item.bstr = bstr; + } + + values.push(item); + } + + return values; +} + +function hookExport(moduleName, exportName, callbacks) { + const key = moduleName + "!" + exportName; + if (installed[key]) return; + + let address = null; + try { + const module = Process.findModuleByName(moduleName); + if (module !== null && typeof module.findExportByName === "function") { + address = module.findExportByName(exportName); + } + if (address === null && typeof Module.findExportByName === "function") { + address = Module.findExportByName(moduleName, exportName); + } + } catch (e) { + address = null; + } + + if (address === null) { + emit({ event: "hook.missing", module: moduleName, name: exportName }); + return; + } + + Interceptor.attach(address, callbacks(address)); + installed[key] = true; + emit({ event: "hook.installed", module: moduleName, name: exportName, address: address.toString() }); +} + +function dumpRpcMessage(pRpcMsg) { + // 32-bit RPC_MESSAGE layout: + // Handle, DataRepresentation, Buffer, BufferLength, ProcNum, TransferSyntax, + // RpcInterfaceInformation, ReservedForRuntime, ManagerEpv, ImportContext, RpcFlags. + const buffer = readPtr(pRpcMsg, 8); + const bufferLength = readU32(pRpcMsg, 12); + const procNum = readU32(pRpcMsg, 16); + const rpcInterfaceInfo = readPtr(pRpcMsg, 24); + + return { + rpcMessage: pRpcMsg.toString(), + buffer: buffer.toString(), + bufferLength, + procNum, + rpcInterfaceInfo: rpcInterfaceInfo.toString(), + rpcInterfaceModule: moduleNameFor(rpcInterfaceInfo), + hex: bufferLength === null ? null : dump(buffer, bufferLength) + }; +} + +function dumpStubMessage(pStubMsg) { + // Common 32-bit MIDL_STUB_MESSAGE prefix. This is intentionally broad; the + // important fields for this investigation are the RPC_MESSAGE pointer and + // the active buffer range used by the generated NmxSvcps proxy. + const rpcMsg = readPtr(pStubMsg, 0); + const buffer = readPtr(pStubMsg, 4); + const bufferStart = readPtr(pStubMsg, 8); + const bufferEnd = readPtr(pStubMsg, 12); + const bufferLength = readU32(pStubMsg, 20); + let activeLength = 0; + try { + activeLength = bufferEnd.sub(bufferStart).toInt32(); + } catch (e) { + activeLength = 0; + } + + return { + stubMessage: pStubMsg.toString(), + rpcMessage: rpcMsg.toString(), + buffer: buffer.toString(), + bufferStart: bufferStart.toString(), + bufferEnd: bufferEnd.toString(), + bufferLength, + activeLength, + bufferHex: activeLength > 0 ? dump(bufferStart, activeLength) : "", + rpc: rpcMsg.isNull() ? null : dumpRpcMessage(rpcMsg) + }; +} + +function installHooks() { + hookExport("oleaut32.dll", "BSTR_UserMarshal", function () { + return { + onEnter(args) { + this.buffer = args[1]; + this.bstrSlot = args[2]; + let bstr = ptr("0"); + try { + bstr = this.bstrSlot.readPointer(); + } catch (e) { + bstr = ptr("0"); + } + emit({ + event: "bstr.usermarshal.enter", + callerModule: moduleNameFor(this.returnAddress), + flags: args[0].toString(), + buffer: this.buffer.toString(), + bstrSlot: this.bstrSlot.toString(), + bstr: describePossibleBstr(bstr) + }); + }, + onLeave(retval) { + let length = 0; + try { + length = retval.sub(this.buffer).toInt32(); + } catch (e) { + length = 0; + } + lastBstrMarshalBuffer = this.buffer; + lastBstrMarshalLength = length; + emit({ + event: "bstr.usermarshal.leave", + callerModule: moduleNameFor(this.returnAddress), + buffer: this.buffer ? this.buffer.toString() : "", + retval: retval.toString(), + marshaledLength: length, + marshaledHex: length > 0 ? dump(this.buffer, length) : "" + }); + } + }; + }); + + hookExport("rpcrt4.dll", "NdrInterfacePointerMarshall", function () { + return { + onEnter(args) { + this.stubMsg = args[0]; + emit({ + event: "ndr.interfaceptr.marshal.enter", + callerModule: moduleNameFor(this.returnAddress), + interfacePointer: args[1].toString(), + format: args[2].toString(), + formatPrefix: dump(args[2], 32), + stub: dumpStubMessage(this.stubMsg) + }); + }, + onLeave(retval) { + emit({ + event: "ndr.interfaceptr.marshal.leave", + callerModule: moduleNameFor(this.returnAddress), + retval: retval.toString(), + stub: this.stubMsg ? dumpStubMessage(this.stubMsg) : null + }); + } + }; + }); + + hookExport("rpcrt4.dll", "NdrClientCall2", function () { + return { + onEnter(args) { + this.format = args[1]; + this.varargs = dumpNdrVarArgs(args); + emit({ + event: "ndr.client.enter", + callerModule: moduleNameFor(this.returnAddress), + stubDesc: args[0].toString(), + procFormat: this.format.toString(), + procFormatPrefix: dump(this.format, 64), + varargs: this.varargs, + stack: dumpStackWords(this.context, 24) + }); + }, + onLeave(retval) { + let surroundingStubHex = ""; + if (lastBstrMarshalBuffer && !lastBstrMarshalBuffer.isNull()) { + try { + surroundingStubHex = dump(lastBstrMarshalBuffer.sub(36), 192); + } catch (e) { + surroundingStubHex = null; + } + } + emit({ + event: "ndr.client.leave", + callerModule: moduleNameFor(this.returnAddress), + procFormat: this.format ? this.format.toString() : "", + retval: retval.toString(), + lastBstrMarshalLength, + surroundingStubHex + }); + } + }; + }); + + hookExport("rpcrt4.dll", "NdrProxySendReceive", function () { + return { + onEnter(args) { + emit({ + event: "ndr.proxy.sendreceive.enter", + callerModule: moduleNameFor(this.returnAddress), + thisPtr: args[0].toString(), + stub: dumpStubMessage(args[1]) + }); + }, + onLeave(retval) { + emit({ + event: "ndr.proxy.sendreceive.leave", + callerModule: moduleNameFor(this.returnAddress), + retval: retval.toString() + }); + } + }; + }); + + hookExport("rpcrt4.dll", "I_RpcSendReceive", function () { + return { + onEnter(args) { + emit({ + event: "rpc.sendreceive.enter", + callerModule: moduleNameFor(this.returnAddress), + rpc: dumpRpcMessage(args[0]) + }); + }, + onLeave(retval) { + emit({ + event: "rpc.sendreceive.leave", + callerModule: moduleNameFor(this.returnAddress), + retval: retval.toString() + }); + } + }; + }); +} + +emit({ event: "script.loaded", process: Process.id, arch: Process.arch, pointerSize: Process.pointerSize }); +installHooks(); +const retryTimer = setInterval(function () { + installHooks(); + if (installed["oleaut32.dll!BSTR_UserMarshal"] + && installed["rpcrt4.dll!NdrInterfacePointerMarshall"] + && installed["rpcrt4.dll!NdrClientCall2"]) { + clearInterval(retryTimer); + } +}, 100); diff --git a/analysis/frida/nmxsvc-trace.js b/analysis/frida/nmxsvc-trace.js new file mode 100644 index 0000000..56e1993 --- /dev/null +++ b/analysis/frida/nmxsvc-trace.js @@ -0,0 +1,239 @@ +// Service-side Frida hooks for NmxSvc.exe. +// Usage: frida -p -l analysis/frida/nmxsvc-trace.js + +const maxDump = 4096; +const installed = {}; + +function now() { + return new Date().toISOString(); +} + +function emit(event) { + event.time = now(); + console.log(JSON.stringify(event)); +} + +function toHex(arrayBuffer) { + if (arrayBuffer === null || arrayBuffer === "") return ""; + const bytes = new Uint8Array(arrayBuffer); + const out = []; + for (let i = 0; i < bytes.length; i++) out.push(bytes[i].toString(16).padStart(2, "0")); + return out.join(" "); +} + +function hexDumpSafe(ptrValue, length) { + try { + if (ptrValue.isNull() || length <= 0) return ""; + const capped = Math.min(length, maxDump); + return ptrValue.readByteArray(capped); + } catch (e) { + return null; + } +} + +function argValue(args, index) { + try { + return args[index].toString(); + } catch (e) { + return ""; + } +} + +function uintArg(args, index) { + try { + return args[index].toUInt32(); + } catch (e) { + return null; + } +} + +function ptrArg(args, index) { + try { + return args[index]; + } catch (e) { + return ptr("0"); + } +} + +function readStackWord(context, index) { + try { + return context.esp.add(index * Process.pointerSize).readPointer(); + } catch (e) { + return ptr("0"); + } +} + +function readUtf16(ptrValue) { + try { + if (ptrValue.isNull()) return ""; + const text = ptrValue.readUtf16String(96); + if (text === null) return ""; + return text.replace(/\u0000.*$/g, ""); + } catch (e) { + return ""; + } +} + +function looksLikeSize(value) { + return value !== null && value > 0 && value <= 65536; +} + +function addCandidate(candidates, source, sizeIndex, ptrIndex, size, dataPtr) { + try { + if (!looksLikeSize(size) || dataPtr.isNull()) return; + const hex = toHex(hexDumpSafe(dataPtr, size)); + if (hex === "") return; + candidates.push({ + source, + sizeIndex, + ptrIndex, + size, + ptr: dataPtr.toString(), + hex + }); + } catch (e) { + } +} + +function candidateBuffers(args, context) { + const candidates = []; + + for (let sizeIndex = 0; sizeIndex <= 12; sizeIndex++) { + const size = uintArg(args, sizeIndex); + const directPtr = ptrArg(args, sizeIndex + 1); + addCandidate(candidates, "args.direct", sizeIndex, sizeIndex + 1, size, directPtr); + + try { + if (!directPtr.isNull()) { + addCandidate(candidates, "args.byref", sizeIndex, sizeIndex + 1, size, directPtr.readPointer()); + } + } catch (e) { + } + } + + for (let sizeIndex = 0; sizeIndex <= 16; sizeIndex++) { + const sizeWord = readStackWord(context, sizeIndex); + let size = null; + try { + size = sizeWord.toUInt32(); + } catch (e) { + } + + const directPtr = readStackWord(context, sizeIndex + 1); + addCandidate(candidates, "stack.direct", sizeIndex, sizeIndex + 1, size, directPtr); + + try { + if (!directPtr.isNull()) { + addCandidate(candidates, "stack.byref", sizeIndex, sizeIndex + 1, size, directPtr.readPointer()); + } + } catch (e) { + } + } + + return candidates; +} + +function stackWords(context, count) { + const words = []; + for (let i = 0; i < count; i++) words.push(readStackWord(context, i).toString()); + return words; +} + +function hook(moduleName, rva, name, handlers) { + const key = moduleName + "!" + name; + if (installed[key]) return; + const module = Process.findModuleByName(moduleName); + if (module === null) return; + const address = module.base.add(rva); + Interceptor.attach(address, handlers(address, module)); + installed[key] = true; + emit({ event: "hook.installed", module: moduleName, name, base: module.base.toString(), rva: "0x" + rva.toString(16), address: address.toString() }); +} + +function hookNmxServiceFunction(rva, name, argCount) { + hook("NmxSvc.exe", rva, name, function (address, module) { + return { + onEnter(args) { + const argList = []; + for (let i = 0; i < argCount; i++) argList.push(argValue(args, i)); + + emit({ + event: "nmxsvc.enter", + module: "NmxSvc.exe", + name, + address: address.toString(), + ecx: this.context.ecx ? this.context.ecx.toString() : "", + esp: this.context.esp ? this.context.esp.toString() : "", + args: argList, + stack: stackWords(this.context, 18), + candidates: candidateBuffers(args, this.context) + }); + }, + onLeave(retval) { + emit({ event: "nmxsvc.leave", module: "NmxSvc.exe", name, retval: retval.toString() }); + } + }; + }); +} + +function hookWinsock(name) { + let address = null; + try { + if (typeof Module.findExportByName === "function") { + address = Module.findExportByName("ws2_32.dll", name); + } else { + const ws2 = Process.findModuleByName("ws2_32.dll"); + if (ws2 !== null && typeof ws2.findExportByName === "function") { + address = ws2.findExportByName(name); + } + } + } catch (e) { + address = null; + } + if (address === null) return; + const key = "ws2_32.dll!" + name; + if (installed[key]) return; + Interceptor.attach(address, { + onEnter(args) { + const len = uintArg(args, 2); + emit({ + event: "winsock.enter", + module: "ws2_32.dll", + name, + socket: argValue(args, 0), + buf: argValue(args, 1), + len, + flags: argValue(args, 3), + hex: looksLikeSize(len) ? toHex(hexDumpSafe(ptrArg(args, 1), len)) : "" + }); + }, + onLeave(retval) { + emit({ event: "winsock.leave", module: "ws2_32.dll", name, retval: retval.toString() }); + } + }); + installed[key] = true; + emit({ event: "hook.installed", module: "ws2_32.dll", name, address: address.toString() }); +} + +function installKnownHooks() { + hookNmxServiceFunction(0x05be1, "CFMCCallback.DataReceived", 8); + hookNmxServiceFunction(0x1807f, "CNmxControler.ProcessDataReceivedForEngine", 10); + hookNmxServiceFunction(0x1d910, "CNmxControler.DataReceived", 10); + hookNmxServiceFunction(0x1dcb5, "CNmxControler.TransferData", 10); + hookNmxServiceFunction(0x1eea5, "CNmxControler.LocalCallbackDataReceived", 10); + hookNmxServiceFunction(0x21b20, "CNmxService.TransferData", 10); + + hookWinsock("send"); + hookWinsock("recv"); + hookWinsock("sendto"); + hookWinsock("recvfrom"); +} + +emit({ + event: "script.loaded", + process: Process.id, + arch: Process.arch, + pointerSize: Process.pointerSize +}); + +installKnownHooks(); diff --git a/analysis/frida/write-array-body-matrix.tsv b/analysis/frida/write-array-body-matrix.tsv new file mode 100644 index 0000000..1d5d394 --- /dev/null +++ b/analysis/frida/write-array-body-matrix.tsv @@ -0,0 +1,8 @@ +capture tag type values com_variant_type putrequest_size putrequest_first_value_offset transferdata_size transferdata_first_value_offset processdatareceived_size processdatareceived_first_value_offset processdatareceived_encoding array_kind_byte element_count element_width_or_code array_descriptor_hex notes +029-frida-write-test-int-array TestChildObject.TestIntArray[] int[] 201;202;203;204;205;206;207;208;209;210 SAFEARRAY VT_I4/0x2003 86 28 132 74 134 94 int32 little-endian 0x42 10 4 42 00 00 00 00 0a 00 04 00 00 00 Packed numeric array values begin immediately after the 11-byte array descriptor. +030-frida-write-test-bool-array TestChildObject.TestBoolArray[] bool[] true;false;true;false;true;false;true;false;true;false SAFEARRAY VT_BOOL/0x200b 66 28 112 74 114 94 VARIANT_BOOL-style 16-bit values 0x41 10 2 41 00 00 00 00 0a 00 02 00 00 00 Requested alternating values returned as True,True,False,False,True,True,False,False,True,True; capture 098 confirms this is an x86 COM automation projection issue rather than a one-off capture. +098-frida-write-bool-array-pattern-10 TestChildObject.TestBoolArray[] bool[] true;false;false;true;true;false;true;false;false;true SAFEARRAY VT_BOOL/0x200b 66 28 112 74 114 94 VARIANT_BOOL-style 16-bit values 0x41 10 2 41 00 00 00 00 0a 00 02 00 00 00 Requested non-repeating values emitted as True,True,False,False,False,False,True,True,True,True through x86 MXAccess COM automation; managed native encoder keeps direct per-element bool encoding by default. +031-frida-write-test-float-array TestChildObject.TestFloatArray[] float[] 1.25;2.5;3.75;4.25;5.5;6.75;7.25;8.5;9.75;10.25 SAFEARRAY VT_R4/0x2004 86 28 132 74 134 94 float32 little-endian 0x43 10 4 43 00 00 00 00 0a 00 04 00 00 00 Packed numeric array values begin immediately after the 11-byte array descriptor. +032-frida-write-test-double-array TestChildObject.TestDoubleArray[] double[] 1.125;2.25;3.5;4.625;5.75;6.875;7.0;8.125;9.25;10.375 SAFEARRAY VT_R8/0x2005 126 28 172 74 174 94 float64 little-endian 0x44 10 8 44 00 00 00 00 0a 00 08 00 00 00 Packed numeric array values begin immediately after the 11-byte array descriptor. +033-frida-write-test-string-array TestChildObject.TestStringArray[] string[] A01;B02;C03;D04;E05;F06;G07;H08;I09;J10 SAFEARRAY VT_BSTR/0x2008 256 41 302 87 304 107 UTF-16LE per-element variable record 0x45 10 4 45 00 00 00 00 0a 00 04 00 00 00 Each element is record_length + scalar string-style variable payload. +035-frida-write-test-datetime-array-full TestChildObject.TestDateTimeArray[] datetime[] 2026-04-25T03:00:00 through 2026-04-25T03:09:00 SAFEARRAY VT_DATE/0x2007 596 41 642 87 214 94 outbound UTF-16LE per-element display string; callback FILETIME sequence 0x45 10 4 45 00 00 00 00 0a 00 04 00 00 00 Original capture 034 was truncated by the old 256-byte Frida dump cap; capture 035 uses the 4096-byte cap and has the full body. diff --git a/analysis/frida/write-body-matrix.tsv b/analysis/frida/write-body-matrix.tsv new file mode 100644 index 0000000..22f020a --- /dev/null +++ b/analysis/frida/write-body-matrix.tsv @@ -0,0 +1,7 @@ +capture tag type values com_variant_type com_value_carrier putrequest_size putrequest_value_offset putrequest_encoding transferdata_size transferdata_value_offset processdatareceived_size processdatareceived_value_offset processdatareceived_encoding notes +023-frida-write-test-int-sequence-109-111 TestChildObject.TestInt int 109,110,111 VT_I4/0x3 args[5] int32 40 18 int32 little-endian 86 64 88 84 int32 little-endian TransferData offset is 46-byte wrapper plus inner offset 18. +024-frida-write-test-bool-sequence TestChildObject.TestBool bool true,false,true VT_BOOL/0xb args[5] VARIANT_BOOL, true=0xffff false=0x0000 37 18 4-byte slot: true ff ff ff 00, false 00 ff ff 00 83 64 85 84 data-change body final byte: true ff, false 00 A separate 51-byte status-like ProcessDataReceived body appears after each write; the bool data-change value is in the 85-byte body. +025-frida-write-test-float-sequence TestChildObject.TestFloat float 1.25,2.5,3.75 VT_R4/0x4 args[5] float32 bits 40 18 float32 little-endian 86 64 88 84 float32 little-endian Same 40-byte write body shape as int with scalar slot retyped. +026-frida-write-test-double-sequence TestChildObject.TestDouble double 1.125,2.25,4.5 VT_R8/0x5 args[5]/args[6] float64 bits 44 18 float64 little-endian 90 64 92 84 float64 little-endian Body grows by 4 bytes relative to int/float. +027-frida-write-test-string-sequence TestChildObject.TestString string AlphaMX,BetaMX,GammaMX VT_BSTR/0x8 BSTR pointer 58 or 60 26 UTF-16LE string bytes 104 or 106 72 106 or 108 92 UTF-16LE string bytes Size depends on string length; value starts 8 bytes later than numeric slot. +028-frida-write-test-datetime-sequence TestChildObject.TestDateTime datetime 2026-04-25T02:30:00,2026-04-25T02:31:00,2026-04-25T02:32:00 VT_DATE/0x7 args[5]/args[6] OLE Automation DATE double 86 26 UTF-16LE display string, e.g. 4/25/2026 2:30:00 AM 132 72 98 88 FILETIME little-endian Outbound datetime is formatted as a string, while callback/update uses FILETIME. diff --git a/analysis/frida/write-failure-completion-matrix.tsv b/analysis/frida/write-failure-completion-matrix.tsv new file mode 100644 index 0000000..ab56403 --- /dev/null +++ b/analysis/frida/write-failure-completion-matrix.tsv @@ -0,0 +1,6 @@ +capture tag write_type value value_body status_body on_write_complete notes +089-frida-write-testint-wrong-type TestChildObject.TestInt string not_an_int 0x37 string wire kind 0x05 completion-only 0x41 no String-to-integer conversion failure is not surfaced by MXAccess OnWriteComplete. +090-frida-write-invalid-reference NoSuchObject_999.NoSuchAttr int 145 none after failed registration none no Write returns S_OK after invalid registration result, but no value-bearing write body is emitted. +091-frida-write-testint-double-type TestChildObject.TestInt double 1.25 0x37 double wire kind 0x04 completion-only 0x00 no Double-to-integer path appears accepted/coerced at NMX completion level. +092-frida-write-testbool-string-type TestChildObject.TestBool string not_bool 0x37 string wire kind 0x05 completion-only 0x41 no String-to-boolean conversion failure matches string-to-integer failure completion. +093-frida-write-testdatetime-string-type TestChildObject.TestDateTime string not_a_date 0x37 string wire kind 0x05 completion-only 0x41 no String-to-time conversion failure matches string-to-integer failure completion. diff --git a/analysis/frida/write-mode-matrix.tsv b/analysis/frida/write-mode-matrix.tsv new file mode 100644 index 0000000..0badbce --- /dev/null +++ b/analysis/frida/write-mode-matrix.tsv @@ -0,0 +1,8 @@ +capture tag scenario method_result com_hook com_args_summary putrequest_size putrequest_value_offset putrequest_time_offset transferdata_size transferdata_value_offset transferdata_time_offset callback_size callback_value_offset callback_time_offset notes +036-frida-write-secured-test-int TestChildObject.TestInt write-secured 0x80004021 unsupported CLMXProxyServer.WriteSecured.variantA session=1 item=1 currentUser=1 verifier=0 vt=0x3 value=112 none none none none none none none none none Operate tag rejects WriteSecured before value-bearing PutRequest. +037-frida-write-secured2-test-int TestChildObject.TestInt write-secured2 E_INVALIDARG CLMXProxyServer.WriteSecured.variantB session=1 item=1 currentUser=1 verifier=0 vt=0x3 value=113 vt_date timestamp none none none none none none none none none Operate tag rejects WriteSecured2 before value-bearing PutRequest. +038-frida-write-secured-protectedvalue TestMachine_001.ProtectedValue write-secured 0x80004021 unsupported CLMXProxyServer.WriteSecured.variantA session=1 item=1 currentUser=1 verifier=0 vt=0xb value=true none none none none none none none none none SecuredWrite tag still rejects public WriteSecured before value-bearing PutRequest. +039-frida-write-secured-verified-protectedvalue1 TestMachine_001.ProtectedValue1 write-secured 0x80004021 unsupported CLMXProxyServer.WriteSecured.variantA session=1 item=1 currentUser=1 verifier=1 vt=0xb value=true none none none none none none none none none VerifiedWrite tag still rejects public WriteSecured before value-bearing PutRequest. +040-frida-write-normal-secured-protectedvalue TestMachine_001.ProtectedValue write success CLMXProxyServer.Write.variantA session=1 item=1 vt=0xb value=true user/security=2 37 18 none 83 64 none 85 84 75 Supported public route for SecuredWrite is normal Write with fourth argument 2. +041-frida-write-normal-verified-protectedvalue1 TestMachine_001.ProtectedValue1 write success CLMXProxyServer.Write.variantA session=1 item=1 vt=0xb value=true user/security=3 37 18 none 83 64 none 85 84 75 Supported public route for VerifiedWrite is normal Write with fourth argument 3. +042-frida-write2-test-int-timestamp TestChildObject.TestInt write2 success CLMXProxyServer.Write.variantB session=1 item=1 vt=0x3 value=114 vt_date timestamp user/security=1 40 18 24 86 64 70 88 84 75 Write2 embeds FILETIME at PutRequest offset 24 and callback offset 75. diff --git a/analysis/ghidra/LmxProxy.headless.log b/analysis/ghidra/LmxProxy.headless.log new file mode 100644 index 0000000..9c8eedf --- /dev/null +++ b/analysis/ghidra/LmxProxy.headless.log @@ -0,0 +1,215 @@ +2026-04-25 02:03:36 INFO (LoggingInitialization) Using log config file: jar:file:/C:/Users/dohertj2/Desktop/focas/tools/ghidra_12.0.4_PUBLIC/Ghidra/Framework/Generic/lib/Generic.jar!/generic.log4j.xml +2026-04-25 02:03:36 INFO (LoggingInitialization) Using log file: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\LmxProxy.headless.log +2026-04-25 02:03:36 INFO (Preferences) Loading user preferences: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\preferences +2026-04-25 02:03:36 INFO (ClassSearcher) Searching for classes... +2026-04-25 02:03:41 INFO (ClassSearcher) Class search complete (4666 ms) +2026-04-25 02:03:41 INFO (DefaultSSLContextInitializer) Initializing SSL Context +2026-04-25 02:03:42 INFO (SecureRandomFactory) Initializing Random Number Generator... +2026-04-25 02:03:42 INFO (SecureRandomFactory) Random Number Generator initialization complete: SHA1PRNG +2026-04-25 02:03:42 INFO (DefaultTrustManagerFactory) Trust manager disabled, cacerts have not been set +2026-04-25 02:03:43 INFO (AnalyzeHeadless) Headless startup complete (12142 ms) +2026-04-25 02:03:43 INFO (ClassSearcher) Class searcher loaded 58 extension points (18 false positives) +2026-04-25 02:03:45 INFO (HeadlessAnalyzer) HEADLESS Script Paths: + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FunctionID\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SwiftDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\WildcardAssembler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\MicrosoftCodeAnalyzer\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FileFormats\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BytePatterns\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\DATA\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PyGhidra\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger-rmi-trace\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\8051\ghidra_scripts + C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PDB\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BSim\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Decompiler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SystemEmulation\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\Atmel\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\DecompilerDependent\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\PIC\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\GnuDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Jython\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\VersionTracking\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\JVM\ghidra_scripts +2026-04-25 02:03:45 INFO (HeadlessAnalyzer) HEADLESS: execution starts +2026-04-25 02:03:45 INFO (HeadlessAnalyzer) Creating project: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\projects\mxnmx +2026-04-25 02:03:45 INFO (DefaultProject) Creating project: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\projects\mxnmx +2026-04-25 02:03:45 INFO (HeadlessAnalyzer) REPORT: Processing input files: +2026-04-25 02:03:45 INFO (HeadlessAnalyzer) project: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\projects\mxnmx +2026-04-25 02:03:45 INFO (HeadlessAnalyzer) IMPORTING: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll +2026-04-25 02:03:54 INFO (ProgramLoader) Using Loader: Portable Executable (PE) +2026-04-25 02:03:54 INFO (ProgramLoader) Using Language/Compiler: x86:LE:32:default:windows +2026-04-25 02:03:54 INFO (ProgramLoader) Using Library Search Path: [., C:\Windows\SysWOW64, C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot\bin, C:\Windows\Sun\Java\bin, C:\Windows\system32, C:\Windows, C:\Program Files\WindowsApps\Microsoft.PowerShell_7.6.1.0_x64__8wekyb3d8bbwe, C:\Users\dohertj2\.codex\tmp\arg0\codex-arg0eaNSL1, C:\TwinCAT\Common64, C:\TwinCAT\Common32, C:\Program Files (x86)\Wonderware\OI-Server\CommonFiles\bin\, C:\Program Files (x86)\Common Files\ArchestrA\, C:\Program Files\OpenSSH\, C:\Windows\System32\Wbem, C:\Windows\System32\WindowsPowerShell\v1.0\, C:\Windows\System32\OpenSSH\, C:\Program Files\dotnet\, C:\Program Files\Git\cmd, C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\DTS\Binn\, C:\Program Files (x86)\Common Files\ArchestrA\Licensing Framework\License API2, C:\Program Files\nodejs\, C:\Program Files\Docker\Docker\resources\bin, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\, C:\Users\dohertj2\AppData\Local\Programs\Python\Launcher\, C:\Users\dohertj2\AppData\Local\Microsoft\WindowsApps, C:\Users\dohertj2\.dotnet\tools, C:\Users\dohertj2\.local\bin, C:\Users\dohertj2\AppData\Local\JetBrains\Toolbox\scripts, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Links, C:\Users\dohertj2\AppData\Roaming\npm, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\BurntSushi.ripgrep.MSVC_Microsoft.Winget.Source_8wekyb3d8bbwe\ripgrep-15.1.0-x86_64-pc-windows-msvc, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\zig.zig_Microsoft.Winget.Source_8wekyb3d8bbwe\zig-x86_64-windows-0.16.0, C:\Users\dohertj2\AppData\Local\OpenAI\Codex\bin, C:\Program Files\WindowsApps\OpenAI.Codex_26.422.2437.0_x64__2p2nqsd0c76g0\app\resources] +2026-04-25 02:04:21 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023015 with CustomAttrib_8117 because they have different sizes (Old: 6, New: 5). +2026-04-25 02:04:21 WARN (CliBlobCustomAttrib) Invalid FieldOrProp value in NamedArg #1: 0x8 +2026-04-25 02:04:21 ERROR (CliStreamBlob) Cannot replace existing blob at address 1002305b with CustomAttrib_8187 because they have different sizes (Old: 6, New: 9). +2026-04-25 02:04:21 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023083 with CustomAttrib_8227 because they have different sizes (Old: 78, New: 58). +2026-04-25 02:04:21 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023015 with CustomAttrib_8117 because they have different sizes (Old: 6, New: 5). +2026-04-25 02:04:21 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023083 with CustomAttrib_8227 because they have different sizes (Old: 78, New: 58). +2026-04-25 02:04:21 WARN (CliBlobCustomAttrib) Invalid FieldOrProp value in NamedArg #1: 0x8 +2026-04-25 02:04:21 ERROR (CliStreamBlob) Cannot replace existing blob at address 1002305b with CustomAttrib_8187 because they have different sizes (Old: 6, New: 9). +2026-04-25 02:04:21 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023015 with CustomAttrib_8117 because they have different sizes (Old: 6, New: 5). +2026-04-25 02:04:30 INFO (TLSDirectory) TLS callbacks at 68f051c0 +2026-04-25 02:04:30 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:04:34 INFO (TLSDirectory) TLS callbacks at 1000701c +2026-04-25 02:04:35 WARN (ExportDataDirectory) Invalid or missing function at 10085b88 +2026-04-25 02:04:40 WARN (ExportDataDirectory) Invalid or missing function at 69e9f8f8 +2026-04-25 02:04:40 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:04:43 INFO (ProgramLoader) Additional info: +Loading file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll?MD5=b3a6a8f46ce22a48a42c23b77fbf9449... +[LmxProxy.dll]: failed to create TerminatedCString at 10038210: Failed to resolve data length for TerminatedCString +------------------------------------------------ + +Searching 36 paths for library ADVAPI32.DLL... +Loading file:///C:/Windows/SysWOW64/advapi32.dll?MD5=950c6d7d9ee5088375a96ae8436eaa70... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library DBGHELP.DLL... +Loading file:///C:/Windows/SysWOW64/dbghelp.dll?MD5=7a365edaa1b5c3a3fcdca41ee8fc95e2... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library KERNEL32.DLL... +Loading file:///C:/Windows/SysWOW64/kernel32.dll?MD5=0ce1f5f3d23f51b9ecfd453e34ca0af7... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library LICAPINATIVEWRAPPER.DLL... +Loading file:///C:/Program Files (x86)/Wonderware/OI-Server/CommonFiles/bin/LicAPINativeWrapper.dll?MD5=dd566b235e709da69c91e8175544321c... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\licapinativewrapper.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCP100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcp100.dll?MD5=bc83108b18756547013ed443b8cdb31b... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCR100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcr100.dll?MD5=0e37fbfa79d349d672456923ec5fbbe3... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLE32.DLL... +Loading file:///C:/Windows/SysWOW64/ole32.dll?MD5=0c99de30cc1bc2997ebf5b7ca4b54fe8... +[ole32.dll]: failed to create WEVTResource at 68fc5218: Failed to resolve data length for WEVTResource +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLEAUT32.DLL... +Loading file:///C:/Windows/SysWOW64/oleaut32.dll?MD5=96b3f5be7d92458fb909620f918a1f63... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library SHLWAPI.DLL... +Loading file:///C:/Windows/SysWOW64/shlwapi.dll?MD5=7955116f6d0ddddab0dab96deaea0b3d... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library USER32.DLL... +Loading file:///C:/Windows/SysWOW64/user32.dll?MD5=0927ed96558e5b2392df6cf7582f2655... +[user32.dll]: failed to create WEVTResource at 69eb6a70: Failed to resolve data length for WEVTResource +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Library not saved to project. +------------------------------------------------ + +Applying cached symbols from LICAPINATIVEWRAPPER.DLL +Applying cached symbols from KERNEL32.DLL +Applying cached symbols from USER32.DLL +Applying cached symbols from ADVAPI32.DLL +Applying cached symbols from OLE32.DLL +Applying cached symbols from OLEAUT32.DLL +Applying cached symbols from SHLWAPI.DLL +Applying cached symbols from MSVCP100.DLL +Applying cached symbols from DBGHELP.DLL +Applying cached symbols from MSVCR100.DLL +Linking the External Programs of 'LmxProxy.dll' to imported libraries... + [LICAPINATIVEWRAPPER.DLL] -> not found in project + [KERNEL32.DLL] -> not found in project + [USER32.DLL] -> not found in project + [ADVAPI32.DLL] -> not found in project + [OLE32.DLL] -> not found in project + [OLEAUT32.DLL] -> not found in project + [SHLWAPI.DLL] -> not found in project + [MSVCP100.DLL] -> not found in project + [DBGHELP.DLL] -> not found in project + [MSVCR100.DLL] -> not found in project +------------------------------------------------ + + +2026-04-25 02:04:43 INFO (HeadlessAnalyzer) IMPORTING: Loaded 0 additional files +2026-04-25 02:04:44 INFO (HeadlessAnalyzer) ANALYZING all memory and code: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll +2026-04-25 02:04:44 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___raise_securityfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:04:44 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___report_rangecheckfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:04:44 INFO (PdbUniversalAnalyzer) Skipping PDB processing: missing PDB information in program metadata +2026-04-25 02:04:45 INFO (PackedDatabaseCache) Packed database cache: C:\Users\dohertj2\AppData\Local\ghidra\packed-db-cache +2026-04-25 02:04:45 DEBUG (PackedDatabaseCache) Caching packed database: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt +2026-04-25 02:04:45 DEBUG (PackedDatabase) Unpacking database C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt -> C:\Users\dohertj2\AppData\Local\ghidra\packed-db-cache\pdb627C0973\db.1.gbf +2026-04-25 02:04:45 DEBUG (PackedDatabaseCache) Cache update completed: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt +2026-04-25 02:04:57 INFO (DecompilerSwitchAnalyzer) hit non-returning function, restarting decompiler switch analyzer later +2026-04-25 02:05:20 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:05:25 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:05:51 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:05:52 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:06:32 INFO (AutoAnalysisManager) ----------------------------------------------------- + ASCII Strings 2.682 secs + Apply Data Archives 0.962 secs + Call Convention ID 0.039 secs + Call-Fixup Installer 0.162 secs + Create Address Tables 0.188 secs + Create Address Tables - One Time 0.058 secs + Create Function 0.807 secs + Data Reference 0.480 secs + Decompiler Parameter ID 21.602 secs + Decompiler Switch Analysis 27.258 secs + Decompiler Switch Analysis - One Time 6.226 secs + Demangler Microsoft 0.543 secs + Disassemble 1.527 secs + Disassemble Entry Points 0.308 secs + Embedded Media 0.034 secs + External Entry References 0.000 secs + Function ID 3.038 secs + Function Start Pre Search 0.053 secs + Function Start Search 0.212 secs + Function Start Search After Code 0.075 secs + Function Start Search After Data 0.051 secs + Non-Returning Functions - Discovered 0.766 secs + Non-Returning Functions - Known 0.029 secs + PDB Universal 0.008 secs + Reference 0.507 secs + Scalar Operand References 1.317 secs + Shared Return Calls 0.626 secs + Stack 8.338 secs + Subroutine References 0.461 secs + Subroutine References - One Time 0.017 secs + Windows x86 PE Exception Handling 10.009 secs + Windows x86 PE RTTI Analyzer 7.982 secs + Windows x86 Thread Environment Block (TEB) Analyzer 0.059 secs + WindowsResourceReference 2.630 secs + X86 Function Callee Purge 0.486 secs + x86 Constant Reference Analyzer 7.712 secs +----------------------------------------------------- + Total Time 107 secs +----------------------------------------------------- + +2026-04-25 02:06:32 INFO (HeadlessAnalyzer) REPORT: Analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll +2026-04-25 02:06:32 INFO (HeadlessAnalyzer) REPORT: Execute script: MxNmxExport.java 'C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports' +2026-04-25 02:06:40 INFO (HeadlessAnalyzer) SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\MxNmxExport.java +2026-04-25 02:06:43 INFO (GhidraScript) MxNmxExport.java> Wrote MX/NMX Ghidra export for LmxProxy.dll to C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports +2026-04-25 02:06:43 INFO (HeadlessAnalyzer) ANALYZING changes made by post scripts: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll +2026-04-25 02:06:43 INFO (HeadlessAnalyzer) REPORT: Post-analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll +2026-04-25 02:06:43 INFO (LocalFileSystem) /LmxProxy.dll: file created (dohertj2) +2026-04-25 02:06:43 INFO (HeadlessAnalyzer) REPORT: Save succeeded for: /LmxProxy.dll (mxnmx:/LmxProxy.dll) +2026-04-25 02:06:43 INFO (HeadlessAnalyzer) REPORT: Import succeeded diff --git a/analysis/ghidra/LmxProxy.script.log b/analysis/ghidra/LmxProxy.script.log new file mode 100644 index 0000000..e69de29 diff --git a/analysis/ghidra/aaMxDataConsumer.dataclient-decompile.log b/analysis/ghidra/aaMxDataConsumer.dataclient-decompile.log new file mode 100644 index 0000000..8d4a6e9 --- /dev/null +++ b/analysis/ghidra/aaMxDataConsumer.dataclient-decompile.log @@ -0,0 +1,45 @@ +INFO Using log config file: jar:file:/C:/Users/dohertj2/Desktop/focas/tools/ghidra_12.0.4_PUBLIC/Ghidra/Framework/Generic/lib/Generic.jar!/generic.log4j.xml (LoggingInitialization) +INFO Using log file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\application.log (LoggingInitialization) +INFO Loading user preferences: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\preferences (Preferences) +INFO Searching for classes... (ClassSearcher) +INFO Class search complete (4609 ms) (ClassSearcher) +INFO Initializing SSL Context (DefaultSSLContextInitializer) +INFO Initializing Random Number Generator... (SecureRandomFactory) +INFO Random Number Generator initialization complete: SHA1PRNG (SecureRandomFactory) +INFO Trust manager disabled, cacerts have not been set (DefaultTrustManagerFactory) +INFO Headless startup complete (11405 ms) (AnalyzeHeadless) +INFO Class searcher loaded 58 extension points (18 false positives) (ClassSearcher) +INFO HEADLESS Script Paths: + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FunctionID\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SwiftDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\WildcardAssembler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\MicrosoftCodeAnalyzer\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FileFormats\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BytePatterns\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\DATA\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PyGhidra\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger-rmi-trace\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\8051\ghidra_scripts + C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PDB\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BSim\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Decompiler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SystemEmulation\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\Atmel\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\DecompilerDependent\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\PIC\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\GnuDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Jython\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\VersionTracking\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\JVM\ghidra_scripts (HeadlessAnalyzer) +INFO HEADLESS: execution starts (HeadlessAnalyzer) +INFO Opening existing project: C:\Users\dohertj2\Desktop\mxaccess\.\analysis\ghidra\projects\mxnmx (HeadlessAnalyzer) +INFO Opening project: C:\Users\dohertj2\Desktop\mxaccess\.\analysis\ghidra\projects\mxnmx (HeadlessProject) +INFO REPORT: Processing project file: /aaMxDataConsumer.dll (HeadlessAnalyzer) +INFO REPORT: Execute script: DecompileSelectedFunctions.java '.\analysis\ghidra\exports\aaMxDataConsumer.dll.dataclient-decompile.md' '0x58e4' '0x7954' '0xbcc0' '0xbd30' '0xc158' '0xcb74' '0xcd50' '0x10444' '0x10b78' '0x167c8' '0x37760' '0x3adf0' '0x3bf50' '0x49070' (HeadlessAnalyzer) +INFO SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\DecompileSelectedFunctions.java (HeadlessAnalyzer) +WARN Decompiling 1000cb74, pcode error at 1000cbc5: Unable to resolve constructor at 1000cbc5 (DecompileCallback) +WARN Decompiling 1000cd50, pcode error at 1000cdcd: Unable to resolve constructor at 1000cdcd (DecompileCallback) +INFO REPORT: Save succeeded for processed file: /aaMxDataConsumer.dll (HeadlessAnalyzer) diff --git a/analysis/ghidra/aaMxDataConsumer.headless.log b/analysis/ghidra/aaMxDataConsumer.headless.log new file mode 100644 index 0000000..e20562b --- /dev/null +++ b/analysis/ghidra/aaMxDataConsumer.headless.log @@ -0,0 +1,373 @@ +INFO Using log config file: jar:file:/C:/Users/dohertj2/Desktop/focas/tools/ghidra_12.0.4_PUBLIC/Ghidra/Framework/Generic/lib/Generic.jar!/generic.log4j.xml (LoggingInitialization) +INFO Using log file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\application.log (LoggingInitialization) +INFO Loading user preferences: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\preferences (Preferences) +INFO Searching for classes... (ClassSearcher) +INFO Class search complete (4882 ms) (ClassSearcher) +INFO Initializing SSL Context (DefaultSSLContextInitializer) +INFO Initializing Random Number Generator... (SecureRandomFactory) +INFO Random Number Generator initialization complete: SHA1PRNG (SecureRandomFactory) +INFO Trust manager disabled, cacerts have not been set (DefaultTrustManagerFactory) +INFO Headless startup complete (13776 ms) (AnalyzeHeadless) +INFO Class searcher loaded 58 extension points (18 false positives) (ClassSearcher) +INFO HEADLESS Script Paths: + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FunctionID\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SwiftDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\WildcardAssembler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\MicrosoftCodeAnalyzer\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FileFormats\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BytePatterns\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\DATA\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PyGhidra\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger-rmi-trace\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\8051\ghidra_scripts + C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PDB\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BSim\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Decompiler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SystemEmulation\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\Atmel\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\DecompilerDependent\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\PIC\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\GnuDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Jython\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\VersionTracking\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\JVM\ghidra_scripts (HeadlessAnalyzer) +INFO HEADLESS: execution starts (HeadlessAnalyzer) +INFO Opening existing project: C:\Users\dohertj2\Desktop\mxaccess\.\analysis\ghidra\projects\mxnmx (HeadlessAnalyzer) +INFO Opening project: C:\Users\dohertj2\Desktop\mxaccess\.\analysis\ghidra\projects\mxnmx (HeadlessProject) +INFO REPORT: Processing input files: (HeadlessAnalyzer) +INFO project: C:\Users\dohertj2\Desktop\mxaccess\.\analysis\ghidra\projects\mxnmx (HeadlessAnalyzer) +INFO IMPORTING: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/aaMxDataConsumer.dll (HeadlessAnalyzer) +INFO Using Loader: Portable Executable (PE) (ProgramLoader) +INFO Using Language/Compiler: x86:LE:32:default:windows (ProgramLoader) +INFO Using Library Search Path: [., C:\Windows\SysWOW64, C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot\bin, C:\Windows\Sun\Java\bin, C:\Windows\system32, C:\Windows, C:\Program Files\WindowsApps\Microsoft.PowerShell_7.6.1.0_x64__8wekyb3d8bbwe, C:\Users\dohertj2\.codex\tmp\arg0\codex-arg0eaNSL1, C:\TwinCAT\Common64, C:\TwinCAT\Common32, C:\Program Files (x86)\Wonderware\OI-Server\CommonFiles\bin\, C:\Program Files (x86)\Common Files\ArchestrA\, C:\Program Files\OpenSSH\, C:\Windows\System32\Wbem, C:\Windows\System32\WindowsPowerShell\v1.0\, C:\Windows\System32\OpenSSH\, C:\Program Files\dotnet\, C:\Program Files\Git\cmd, C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\DTS\Binn\, C:\Program Files (x86)\Common Files\ArchestrA\Licensing Framework\License API2, C:\Program Files\nodejs\, C:\Program Files\Docker\Docker\resources\bin, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\, C:\Users\dohertj2\AppData\Local\Programs\Python\Launcher\, C:\Users\dohertj2\AppData\Local\Microsoft\WindowsApps, C:\Users\dohertj2\.dotnet\tools, C:\Users\dohertj2\.local\bin, C:\Users\dohertj2\AppData\Local\JetBrains\Toolbox\scripts, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Links, C:\Users\dohertj2\AppData\Roaming\npm, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\BurntSushi.ripgrep.MSVC_Microsoft.Winget.Source_8wekyb3d8bbwe\ripgrep-15.1.0-x86_64-pc-windows-msvc, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\zig.zig_Microsoft.Winget.Source_8wekyb3d8bbwe\zig-x86_64-windows-0.16.0, C:\Users\dohertj2\AppData\Local\OpenAI\Codex\bin, C:\Program Files\WindowsApps\OpenAI.Codex_26.422.2437.0_x64__2p2nqsd0c76g0\app\resources] (ProgramLoader) +WARN Error processing function "_splitpath_s" (620): Duplicate parameter name (Status, Items, Items) (CliTableMethodDef) +WARN Error processing function "_wsplitpath_s" (651): Duplicate parameter name (Status, Items, Items) (CliTableMethodDef) +WARN Invalid FieldOrProp value in NamedArg #1: 0x3 (CliBlobCustomAttrib) +ERROR Cannot replace existing blob at address 100a1e54 with CustomAttrib_18748 because they have different sizes (Old: 6, New: 9). (CliStreamBlob) +WARN Invalid FieldOrProp value in NamedArg #1: 0x3 (CliBlobCustomAttrib) +ERROR Cannot replace existing blob at address 100a1e54 with CustomAttrib_18748 because they have different sizes (Old: 6, New: 9). (CliStreamBlob) +WARN Invalid or missing function at 78a7afe0 (ExportDataDirectory) +WARN Invalid or missing function at 10046008 (ExportDataDirectory) +INFO TLS callbacks at 68f051c0 (TLSDirectory) +INFO TLS callbacks at 1000701c (TLSDirectory) +WARN Invalid or missing function at 10085b88 (ExportDataDirectory) +WARN Invalid or missing function at 69e9f8f8 (ExportDataDirectory) +INFO Additional info: +Loading file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/aaMxDataConsumer.dll?MD5=d642bf4c3a452cd8aea39221bb643eda... +[aaMxDataConsumer.dll]: failed to create TerminatedCString at 100e03b4: Failed to resolve data length for TerminatedCString +------------------------------------------------ + +Searching 36 paths for library ADVAPI32.DLL... +Loading file:///C:/Windows/SysWOW64/advapi32.dll?MD5=950c6d7d9ee5088375a96ae8436eaa70... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library ATL100.DLL... +Loading file:///C:/Windows/SysWOW64/atl100.dll?MD5=c85670ab64068f8080998aeba6c5019c... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\atl100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library DBGHELP.DLL... +Loading file:///C:/Windows/SysWOW64/dbghelp.dll?MD5=7a365edaa1b5c3a3fcdca41ee8fc95e2... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library KERNEL32.DLL... +Loading file:///C:/Windows/SysWOW64/kernel32.dll?MD5=0ce1f5f3d23f51b9ecfd453e34ca0af7... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSCOREE.DLL... +Loading file:///C:/Windows/SysWOW64/mscoree.dll?MD5=3398e4051e8f4e2ff3cf0f365fa9238d... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\mscoree.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCP100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcp100.dll?MD5=bc83108b18756547013ed443b8cdb31b... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCR100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcr100.dll?MD5=0e37fbfa79d349d672456923ec5fbbe3... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLE32.DLL... +Loading file:///C:/Windows/SysWOW64/ole32.dll?MD5=0c99de30cc1bc2997ebf5b7ca4b54fe8... +[ole32.dll]: failed to create WEVTResource at 68fc5218: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLEAUT32.DLL... +Loading file:///C:/Windows/SysWOW64/oleaut32.dll?MD5=96b3f5be7d92458fb909620f918a1f63... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library SHLWAPI.DLL... +Loading file:///C:/Windows/SysWOW64/shlwapi.dll?MD5=7955116f6d0ddddab0dab96deaea0b3d... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library USER32.DLL... +Loading file:///C:/Windows/SysWOW64/user32.dll?MD5=0927ed96558e5b2392df6cf7582f2655... +[user32.dll]: failed to create WEVTResource at 69eb6a70: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Library not saved to project. +------------------------------------------------ + +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\atl100.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\mscoree.exports +Linking the External Programs of 'aaMxDataConsumer.dll' to imported libraries... + [KERNEL32.DLL] -> not found in project + [USER32.DLL] -> not found in project + [ADVAPI32.DLL] -> not found in project + [OLE32.DLL] -> not found in project + [OLEAUT32.DLL] -> not found in project + [ATL100.DLL] -> not found in project + [SHLWAPI.DLL] -> not found in project + [MSVCP100.DLL] -> not found in project + [DBGHELP.DLL] -> not found in project + [MSVCR100.DLL] -> not found in project + [MSCOREE.DLL] -> not found in project +------------------------------------------------ + + (ProgramLoader) +INFO IMPORTING: Loaded 0 additional files (HeadlessAnalyzer) +INFO ANALYZING all memory and code: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/aaMxDataConsumer.dll (HeadlessAnalyzer) +WARN Ignoring leading '_' chars on no-return name '___raise_securityfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn (NoReturnFunctionAnalyzer) +WARN Ignoring leading '_' chars on no-return name '___report_rangecheckfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn (NoReturnFunctionAnalyzer) +INFO Skipping PDB processing: failed to locate PDB file in configured locations (PdbUniversalAnalyzer) +INFO Use a script to set the PDB file location. I.e., + PdbAnalyzer.setPdbFileOption(currentProgram, new File("/path/to/pdb/file.pdb")); or + PdbUniversalAnalyzer.setPdbFileOption(currentProgram, new File("/path/to/pdb/file.pdb")); +Or set the symbol server search configuration using: PdbPlugin.saveSymbolServerServiceConfig(...); + This must be done using a pre-script (prior to analysis). (PdbUniversalAnalyzer) +INFO Packed database cache: C:\Users\dohertj2\AppData\Local\ghidra\packed-db-cache (PackedDatabaseCache) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Unprocessed TypeDescriptor: long (TypeDescriptorModel) +INFO Applied data type archive: windows_vs12_32 (ApplyDataArchiveAnalyzer) +WARN Decompiling 1000ca14, pcode error at 1000caaa: Unable to resolve constructor at 1000caaa (DecompileCallback) +WARN Decompiling 10007014, pcode error at 100070b3: Unable to resolve constructor at 100070b3 (DecompileCallback) +WARN Decompiling 10007014, pcode error at 100070b3: Unable to resolve constructor at 100070b3 (DecompileCallback) +WARN Decompiling 10001224, pcode error at 1000122a: Unable to resolve constructor at 1000122a (DecompileCallback) +WARN Decompiling 10002c24, pcode error at 10002c2b: Unable to resolve constructor at 10002c2b (DecompileCallback) +WARN Decompiling 10004a34, pcode error at 10004b25: Unable to resolve constructor at 10004b25 (DecompileCallback) +WARN Decompiling 10005854, pcode error at 10005856: Unable to resolve constructor at 10005856 (DecompileCallback) +WARN Decompiling 10052a48, pcode error at 382b3b41: Could not follow disassembly flow into non-existing memory at 382b3b41 (DecompileCallback) +WARN Decompiling 10001c74, pcode error at 10001c85: Unable to resolve constructor at 10001c85 (DecompileCallback) +WARN Decompiling 10004c24, pcode error at 10004edd: Unable to resolve constructor at 10004edd (DecompileCallback) +WARN Decompiling 10004c24, pcode error at 10004f42: Unable to resolve constructor at 10004f42 (DecompileCallback) +WARN Decompiling 10001c74, pcode error at 10001c85: Unable to resolve constructor at 10001c85 (DecompileCallback) +WARN Decompiling 10011064, pcode error at 1001143c: Unable to resolve constructor at 1001143c (DecompileCallback) +WARN Decompiling 1000dc84, pcode error at 1000dd65: Unable to resolve constructor at 1000dd65 (DecompileCallback) +WARN Decompiling 100044a4, pcode error at 100044ae: Unable to resolve constructor at 100044ae (DecompileCallback) +WARN Decompiling 10052aa4, pcode error at 1de334df: Could not follow disassembly flow into non-existing memory at 1de334df (DecompileCallback) +WARN Decompiling 100520d8, pcode error at 100520da: Unable to resolve constructor at 100520da (DecompileCallback) +WARN Decompiling 1000d4a4, pcode error at 1000d62f: Unable to resolve constructor at 1000d62f (DecompileCallback) +WARN Decompiling 100040d4, pcode error at de060000: Could not follow disassembly flow into non-existing memory at de060000 (DecompileCallback) +WARN Decompiling 1000e0d4, pcode error at 1000e16d: Unable to resolve constructor at 1000e16d (DecompileCallback) +WARN Decompiling 100126dc, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +WARN Decompiling 1000e0d4, pcode error at 1000e16d: Unable to resolve constructor at 1000e16d (DecompileCallback) +WARN Decompiling 1001589c, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 100046c4, pcode error at 1000478a: Unable to resolve constructor at 1000478a (DecompileCallback) +WARN Decompiling 100046c4, pcode error at 100047f2: Unable to resolve constructor at 100047f2 (DecompileCallback) +WARN Decompiling 100146ec, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 100064e4, pcode error at 10006523: Unable to resolve constructor at 10006523 (DecompileCallback) +WARN Decompiling 1000f314, pcode error at 1000f443: Unable to resolve constructor at 1000f443 (DecompileCallback) +WARN Decompiling 10011a64, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +WARN Decompiling 1000f314, pcode error at 1000f443: Unable to resolve constructor at 1000f443 (DecompileCallback) +WARN Decompiling 1000e704, pcode error at 1000e7c4: Unable to resolve constructor at 1000e7c4 (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 10014217: Unable to resolve constructor at 10014217 (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 10006b24, pcode error at 10006b99: Unable to resolve constructor at 10006b99 (DecompileCallback) +WARN Decompiling 10006b24, pcode error at 10006b99: Unable to resolve constructor at 10006b99 (DecompileCallback) +WARN Decompiling 1000b35c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1000cd50, pcode error at 1000cdcd: Unable to resolve constructor at 1000cdcd (DecompileCallback) +WARN Decompiling 1000b54c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1000af7c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10006374, pcode error at 100063e7: Unable to resolve constructor at 100063e7 (DecompileCallback) +WARN Decompiling 10011f54, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +WARN Decompiling 1000b16c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10014f5c, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 1000ef94, pcode error at 1000f15e: Unable to resolve constructor at 1000f15e (DecompileCallback) +WARN Decompiling 1000ab9c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10015d90, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 1000af7c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1001156c, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +WARN Decompiling 1000ad8c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 100041a4, pcode error at 100041ba: Unable to resolve constructor at 100041ba (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 10014217: Unable to resolve constructor at 10014217 (DecompileCallback) +WARN Decompiling 100137dc, pcode error at 1001381b: Unable to resolve constructor at 1001381b (DecompileCallback) +WARN Decompiling 100141d8, pcode error at 10014217: Unable to resolve constructor at 10014217 (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 100153ac, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 100141d8, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 100065d4, pcode error at 100065fe: Unable to resolve constructor at 100065fe (DecompileCallback) +WARN Decompiling 100055d4, pcode error at 10005616: Unable to resolve constructor at 10005616 (DecompileCallback) +WARN Decompiling 100069d4, pcode error at 10006a2b: Unable to resolve constructor at 10006a2b (DecompileCallback) +WARN Decompiling 1000ab9c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 100021f4, pcode error at 100021fa: Unable to resolve constructor at 100021fa (DecompileCallback) +WARN Decompiling 1000f9f4, pcode error at 1000fd89: Unable to resolve constructor at 1000fd89 (DecompileCallback) +WARN Decompiling 1000ad8c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1000e3e4, pcode error at 1000e4b3: Unable to resolve constructor at 1000e4b3 (DecompileCallback) +WARN Decompiling 1000e3e4, pcode error at 1000e4b3: Unable to resolve constructor at 1000e4b3 (DecompileCallback) +INFO Applied data type archive: windows_vs12_32 (ApplyDataArchiveAnalyzer) +WARN Decompiling 10005854, pcode error at 10005856: Unable to resolve constructor at 10005856 (DecompileCallback) +WARN Decompiling 1001589c, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 100069d4, pcode error at 10006a2b: Unable to resolve constructor at 10006a2b (DecompileCallback) +WARN Decompiling 1000ca14, pcode error at 1000caaa: Unable to resolve constructor at 1000caaa (DecompileCallback) +WARN Decompiling 1000f9f4, pcode error at 1000fd89: Unable to resolve constructor at 1000fd89 (DecompileCallback) +WARN Decompiling 10004a34, pcode error at 10004b25: Unable to resolve constructor at 10004b25 (DecompileCallback) +WARN Decompiling 10052a20, pcode error at 382b3b41: Could not follow disassembly flow into non-existing memory at 382b3b41 (DecompileCallback) +WARN Decompiling 10052a48, pcode error at 382b3b41: Could not follow disassembly flow into non-existing memory at 382b3b41 (DecompileCallback) +WARN Decompiling 10052aa4, pcode error at 1de334df: Could not follow disassembly flow into non-existing memory at 1de334df (DecompileCallback) +WARN Decompiling 1000a9c4, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10006b24, pcode error at 10006b99: Unable to resolve constructor at 10006b99 (DecompileCallback) +WARN Decompiling 10006b24, pcode error at 10006b99: Unable to resolve constructor at 10006b99 (DecompileCallback) +WARN Decompiling 10002b44, pcode error at 10002b46: Unable to resolve constructor at 10002b46 (DecompileCallback) +WARN Decompiling 1000cb74, pcode error at 1000cbc5: Unable to resolve constructor at 1000cbc5 (DecompileCallback) +WARN Decompiling 10011a64, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +WARN Decompiling 10003bc4, pcode error at de060000: Could not follow disassembly flow into non-existing memory at de060000 (DecompileCallback) +WARN Decompiling 10003c10, pcode error at 10003c98: Unable to resolve constructor at 10003c98 (DecompileCallback) +WARN Decompiling 1000ab9c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10002c24, pcode error at 10002c2b: Unable to resolve constructor at 10002c2b (DecompileCallback) +WARN Decompiling 10001c74, pcode error at 10001c85: Unable to resolve constructor at 10001c85 (DecompileCallback) +WARN Decompiling 10004c24, pcode error at 10004edd: Unable to resolve constructor at 10004edd (DecompileCallback) +WARN Decompiling 10004c24, pcode error at 10004f42: Unable to resolve constructor at 10004f42 (DecompileCallback) +WARN Decompiling 10001c74, pcode error at 10001c85: Unable to resolve constructor at 10001c85 (DecompileCallback) +WARN Decompiling 1000dc84, pcode error at 1000dd65: Unable to resolve constructor at 1000dd65 (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 10014217: Unable to resolve constructor at 10014217 (DecompileCallback) +WARN Decompiling 1000cd50, pcode error at 1000cdcd: Unable to resolve constructor at 1000cdcd (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 10015d90, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 10010db8, pcode error at 12060001: Could not follow disassembly flow into non-existing memory at 12060001 (DecompileCallback) +WARN Decompiling 1000ab9c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1000ad8c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10010db8, pcode error at 1001143c: Unable to resolve constructor at 1001143c (DecompileCallback) +WARN Decompiling 1000ad8c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1000af7c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1000ef94, pcode error at 1000f15e: Unable to resolve constructor at 1000f15e (DecompileCallback) +WARN Decompiling 10011f54, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 10014217: Unable to resolve constructor at 10014217 (DecompileCallback) +WARN Decompiling 10013ce0, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 10014f5c, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 1000af7c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10007014, pcode error at 100070b3: Unable to resolve constructor at 100070b3 (DecompileCallback) +WARN Decompiling 10007014, pcode error at 100070b3: Unable to resolve constructor at 100070b3 (DecompileCallback) +WARN Decompiling 10011064, pcode error at 1001143c: Unable to resolve constructor at 1001143c (DecompileCallback) +WARN Decompiling 100520d8, pcode error at 100520da: Unable to resolve constructor at 100520da (DecompileCallback) +WARN Decompiling 100040d4, pcode error at de060000: Could not follow disassembly flow into non-existing memory at de060000 (DecompileCallback) +WARN Decompiling 1000e0d4, pcode error at 1000e16d: Unable to resolve constructor at 1000e16d (DecompileCallback) +WARN Decompiling 100520fc, pcode error at 10052125: Unable to resolve constructor at 10052125 (DecompileCallback) +WARN Decompiling 1000e0d4, pcode error at 1000e16d: Unable to resolve constructor at 1000e16d (DecompileCallback) +WARN Decompiling 10016130, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 10052154, pcode error at 1005217d: Unable to resolve constructor at 1005217d (DecompileCallback) +WARN Decompiling 10052154, pcode error at 100521a9: Unable to resolve constructor at 100521a9 (DecompileCallback) +WARN Decompiling 100041a4, pcode error at 100041ba: Unable to resolve constructor at 100041ba (DecompileCallback) +WARN Decompiling 100141d8, pcode error at 10014217: Unable to resolve constructor at 10014217 (DecompileCallback) +WARN Decompiling 1000b16c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 100021f4, pcode error at 100021fa: Unable to resolve constructor at 100021fa (DecompileCallback) +WARN Decompiling 100141d8, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 10001224, pcode error at 1000122a: Unable to resolve constructor at 1000122a (DecompileCallback) +WARN Decompiling 10003304, pcode error at 1000330c: Unable to resolve constructor at 1000330c (DecompileCallback) +WARN Decompiling 1000f314, pcode error at 1000f443: Unable to resolve constructor at 1000f443 (DecompileCallback) +WARN Decompiling 1000f314, pcode error at 1000f443: Unable to resolve constructor at 1000f443 (DecompileCallback) +WARN Decompiling 1000b35c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 10006374, pcode error at 100063e7: Unable to resolve constructor at 100063e7 (DecompileCallback) +WARN Decompiling 1000e3e4, pcode error at 1000e4b3: Unable to resolve constructor at 1000e4b3 (DecompileCallback) +WARN Decompiling 1000e3e4, pcode error at 1000e4b3: Unable to resolve constructor at 1000e4b3 (DecompileCallback) +WARN Decompiling 1000c430, pcode error at 2900c581: Could not follow disassembly flow into non-existing memory at 2900c581 (DecompileCallback) +WARN Decompiling 1000c430, pcode error at 1000c5cc: Unable to resolve constructor at 1000c5cc (DecompileCallback) +WARN Decompiling 100153ac, pcode error at 100161fc: Unable to resolve constructor at 100161fc (DecompileCallback) +WARN Decompiling 10004484, pcode error at 10004486: Unable to resolve constructor at 10004486 (DecompileCallback) +WARN Decompiling 100044a4, pcode error at 100044ae: Unable to resolve constructor at 100044ae (DecompileCallback) +WARN Decompiling 1000d4a4, pcode error at 1000d62f: Unable to resolve constructor at 1000d62f (DecompileCallback) +WARN Decompiling 100064e4, pcode error at 10006523: Unable to resolve constructor at 10006523 (DecompileCallback) +WARN Decompiling 1000b54c, pcode error at 1000b585: Unable to resolve constructor at 1000b585 (DecompileCallback) +WARN Decompiling 1000c59c, pcode error at 1000c5cc: Unable to resolve constructor at 1000c5cc (DecompileCallback) +WARN Decompiling 100065d4, pcode error at 100065fe: Unable to resolve constructor at 100065fe (DecompileCallback) +WARN Decompiling 100055d4, pcode error at 10005616: Unable to resolve constructor at 10005616 (DecompileCallback) +WARN Decompiling 100046c4, pcode error at 1000478a: Unable to resolve constructor at 1000478a (DecompileCallback) +WARN Decompiling 100046c4, pcode error at 100047f2: Unable to resolve constructor at 100047f2 (DecompileCallback) +WARN Decompiling 100146ec, pcode error at 1001472b: Unable to resolve constructor at 1001472b (DecompileCallback) +WARN Decompiling 1000e704, pcode error at 1000e7c4: Unable to resolve constructor at 1000e7c4 (DecompileCallback) +WARN Decompiling 100126dc, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +WARN Decompiling 100137dc, pcode error at 1001381b: Unable to resolve constructor at 1001381b (DecompileCallback) +WARN Decompiling 1001156c, pcode error at 29012b6e: Could not follow disassembly flow into non-existing memory at 29012b6e (DecompileCallback) +INFO ----------------------------------------------------- + ASCII Strings 2.170 secs + Apply Data Archives 0.910 secs + Call Convention ID 20.266 secs + Call-Fixup Installer 0.467 secs + Create Address Tables 0.700 secs + Create Address Tables - One Time 0.225 secs + Create Function 2.003 secs + Data Reference 0.793 secs + Decompiler Parameter ID 58.838 secs + Decompiler Switch Analysis 24.270 secs + Demangler Microsoft 0.954 secs + Disassemble 6.617 secs + Disassemble Entry Points 0.505 secs + Embedded Media 0.066 secs + External Entry References 0.001 secs + Function ID 5.120 secs + Function Start Pre Search 0.091 secs + Function Start Search 5.764 secs + Function Start Search After Code 1.494 secs + Function Start Search After Data 1.284 secs + Non-Returning Functions - Discovered 1.016 secs + Non-Returning Functions - Known 0.032 secs + PDB Universal 0.064 secs + Reference 1.241 secs + Scalar Operand References 3.180 secs + Shared Return Calls 1.330 secs + Stack 16.321 secs + Subroutine References 0.831 secs + Subroutine References - One Time 0.034 secs + Windows x86 PE Exception Handling 14.661 secs + Windows x86 PE RTTI Analyzer 3.322 secs + Windows x86 Thread Environment Block (TEB) Analyzer 0.065 secs + WindowsResourceReference 1.212 secs + X86 Function Callee Purge 0.713 secs + x86 Constant Reference Analyzer 17.568 secs +----------------------------------------------------- + Total Time 194 secs +----------------------------------------------------- + (AutoAnalysisManager) +INFO REPORT: Analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/aaMxDataConsumer.dll (HeadlessAnalyzer) +INFO REPORT: Execute script: MxNmxExport.java '.\analysis\ghidra\exports' (HeadlessAnalyzer) +INFO SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\MxNmxExport.java (HeadlessAnalyzer) +INFO MxNmxExport.java> Wrote MX/NMX Ghidra export for aaMxDataConsumer.dll to C:\Users\dohertj2\Desktop\mxaccess\.\analysis\ghidra\exports (GhidraScript) +INFO ANALYZING changes made by post scripts: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/aaMxDataConsumer.dll (HeadlessAnalyzer) +INFO REPORT: Post-analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/aaMxDataConsumer.dll (HeadlessAnalyzer) +INFO /aaMxDataConsumer.dll: file created (dohertj2) (LocalFileSystem) +INFO REPORT: Save succeeded for: /aaMxDataConsumer.dll (mxnmx:/aaMxDataConsumer.dll) (HeadlessAnalyzer) +INFO REPORT: Import succeeded (HeadlessAnalyzer) diff --git a/analysis/ghidra/all-native.headless.log b/analysis/ghidra/all-native.headless.log new file mode 100644 index 0000000..1f6532f --- /dev/null +++ b/analysis/ghidra/all-native.headless.log @@ -0,0 +1,756 @@ +2026-04-25 02:07:07 INFO (LoggingInitialization) Using log config file: jar:file:/C:/Users/dohertj2/Desktop/focas/tools/ghidra_12.0.4_PUBLIC/Ghidra/Framework/Generic/lib/Generic.jar!/generic.log4j.xml +2026-04-25 02:07:07 INFO (LoggingInitialization) Using log file: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\all-native.headless.log +2026-04-25 02:07:07 INFO (Preferences) Loading user preferences: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\preferences +2026-04-25 02:07:07 INFO (ClassSearcher) Searching for classes... +2026-04-25 02:07:12 INFO (ClassSearcher) Class search complete (4899 ms) +2026-04-25 02:07:12 INFO (DefaultSSLContextInitializer) Initializing SSL Context +2026-04-25 02:07:13 INFO (SecureRandomFactory) Initializing Random Number Generator... +2026-04-25 02:07:13 INFO (SecureRandomFactory) Random Number Generator initialization complete: SHA1PRNG +2026-04-25 02:07:13 INFO (DefaultTrustManagerFactory) Trust manager disabled, cacerts have not been set +2026-04-25 02:07:14 INFO (AnalyzeHeadless) Headless startup complete (11738 ms) +2026-04-25 02:07:14 INFO (ClassSearcher) Class searcher loaded 58 extension points (18 false positives) +2026-04-25 02:07:15 INFO (HeadlessAnalyzer) HEADLESS Script Paths: + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FunctionID\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SwiftDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\WildcardAssembler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\MicrosoftCodeAnalyzer\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\FileFormats\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BytePatterns\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\DATA\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PyGhidra\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Debug\Debugger-rmi-trace\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\8051\ghidra_scripts + C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\PDB\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\BSim\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Decompiler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\SystemEmulation\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\Atmel\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\DecompilerDependent\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\PIC\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\GnuDemangler\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Jython\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\VersionTracking\ghidra_scripts + C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Processors\JVM\ghidra_scripts +2026-04-25 02:07:16 INFO (HeadlessAnalyzer) HEADLESS: execution starts +2026-04-25 02:07:16 INFO (HeadlessAnalyzer) Opening existing project: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\projects\mxnmx +2026-04-25 02:07:16 INFO (HeadlessProject) Opening project: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\projects\mxnmx +2026-04-25 02:07:16 INFO (HeadlessAnalyzer) REPORT: Processing input files: +2026-04-25 02:07:16 INFO (HeadlessAnalyzer) project: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\projects\mxnmx +2026-04-25 02:07:16 INFO (HeadlessAnalyzer) IMPORTING: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll?MD5=b3a6a8f46ce22a48a42c23b77fbf9449 +2026-04-25 02:07:24 INFO (ProgramLoader) Using Loader: Portable Executable (PE) +2026-04-25 02:07:24 INFO (ProgramLoader) Using Language/Compiler: x86:LE:32:default:windows +2026-04-25 02:07:24 INFO (ProgramLoader) Using Library Search Path: [., C:\Windows\SysWOW64, C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot\bin, C:\Windows\Sun\Java\bin, C:\Windows\system32, C:\Windows, C:\Program Files\WindowsApps\Microsoft.PowerShell_7.6.1.0_x64__8wekyb3d8bbwe, C:\Users\dohertj2\.codex\tmp\arg0\codex-arg0eaNSL1, C:\TwinCAT\Common64, C:\TwinCAT\Common32, C:\Program Files (x86)\Wonderware\OI-Server\CommonFiles\bin\, C:\Program Files (x86)\Common Files\ArchestrA\, C:\Program Files\OpenSSH\, C:\Windows\System32\Wbem, C:\Windows\System32\WindowsPowerShell\v1.0\, C:\Windows\System32\OpenSSH\, C:\Program Files\dotnet\, C:\Program Files\Git\cmd, C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\DTS\Binn\, C:\Program Files (x86)\Common Files\ArchestrA\Licensing Framework\License API2, C:\Program Files\nodejs\, C:\Program Files\Docker\Docker\resources\bin, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\, C:\Users\dohertj2\AppData\Local\Programs\Python\Launcher\, C:\Users\dohertj2\AppData\Local\Microsoft\WindowsApps, C:\Users\dohertj2\.dotnet\tools, C:\Users\dohertj2\.local\bin, C:\Users\dohertj2\AppData\Local\JetBrains\Toolbox\scripts, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Links, C:\Users\dohertj2\AppData\Roaming\npm, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\BurntSushi.ripgrep.MSVC_Microsoft.Winget.Source_8wekyb3d8bbwe\ripgrep-15.1.0-x86_64-pc-windows-msvc, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\zig.zig_Microsoft.Winget.Source_8wekyb3d8bbwe\zig-x86_64-windows-0.16.0, C:\Users\dohertj2\AppData\Local\OpenAI\Codex\bin, C:\Program Files\WindowsApps\OpenAI.Codex_26.422.2437.0_x64__2p2nqsd0c76g0\app\resources] +2026-04-25 02:07:47 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023015 with CustomAttrib_8117 because they have different sizes (Old: 6, New: 5). +2026-04-25 02:07:47 WARN (CliBlobCustomAttrib) Invalid FieldOrProp value in NamedArg #1: 0x8 +2026-04-25 02:07:47 ERROR (CliStreamBlob) Cannot replace existing blob at address 1002305b with CustomAttrib_8187 because they have different sizes (Old: 6, New: 9). +2026-04-25 02:07:47 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023083 with CustomAttrib_8227 because they have different sizes (Old: 78, New: 58). +2026-04-25 02:07:47 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023015 with CustomAttrib_8117 because they have different sizes (Old: 6, New: 5). +2026-04-25 02:07:47 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023083 with CustomAttrib_8227 because they have different sizes (Old: 78, New: 58). +2026-04-25 02:07:47 WARN (CliBlobCustomAttrib) Invalid FieldOrProp value in NamedArg #1: 0x8 +2026-04-25 02:07:47 ERROR (CliStreamBlob) Cannot replace existing blob at address 1002305b with CustomAttrib_8187 because they have different sizes (Old: 6, New: 9). +2026-04-25 02:07:47 ERROR (CliStreamBlob) Cannot replace existing blob at address 10023015 with CustomAttrib_8117 because they have different sizes (Old: 6, New: 5). +2026-04-25 02:07:53 INFO (TLSDirectory) TLS callbacks at 68f051c0 +2026-04-25 02:07:54 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:07:57 INFO (TLSDirectory) TLS callbacks at 1000701c +2026-04-25 02:07:57 WARN (ExportDataDirectory) Invalid or missing function at 10085b88 +2026-04-25 02:08:00 WARN (ExportDataDirectory) Invalid or missing function at 69e9f8f8 +2026-04-25 02:08:01 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:08:04 INFO (ProgramLoader) Additional info: +Loading file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll?MD5=b3a6a8f46ce22a48a42c23b77fbf9449... +[LmxProxy.dll]: failed to create TerminatedCString at 10038210: Failed to resolve data length for TerminatedCString +------------------------------------------------ + +Searching 36 paths for library ADVAPI32.DLL... +Loading file:///C:/Windows/SysWOW64/advapi32.dll?MD5=950c6d7d9ee5088375a96ae8436eaa70... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library DBGHELP.DLL... +Loading file:///C:/Windows/SysWOW64/dbghelp.dll?MD5=7a365edaa1b5c3a3fcdca41ee8fc95e2... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library KERNEL32.DLL... +Loading file:///C:/Windows/SysWOW64/kernel32.dll?MD5=0ce1f5f3d23f51b9ecfd453e34ca0af7... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library LICAPINATIVEWRAPPER.DLL... +Loading file:///C:/Program Files (x86)/Wonderware/OI-Server/CommonFiles/bin/LicAPINativeWrapper.dll?MD5=dd566b235e709da69c91e8175544321c... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\licapinativewrapper.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCP100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcp100.dll?MD5=bc83108b18756547013ed443b8cdb31b... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCR100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcr100.dll?MD5=0e37fbfa79d349d672456923ec5fbbe3... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLE32.DLL... +Loading file:///C:/Windows/SysWOW64/ole32.dll?MD5=0c99de30cc1bc2997ebf5b7ca4b54fe8... +[ole32.dll]: failed to create WEVTResource at 68fc5218: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLEAUT32.DLL... +Loading file:///C:/Windows/SysWOW64/oleaut32.dll?MD5=96b3f5be7d92458fb909620f918a1f63... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library SHLWAPI.DLL... +Loading file:///C:/Windows/SysWOW64/shlwapi.dll?MD5=7955116f6d0ddddab0dab96deaea0b3d... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library USER32.DLL... +Loading file:///C:/Windows/SysWOW64/user32.dll?MD5=0927ed96558e5b2392df6cf7582f2655... +[user32.dll]: failed to create WEVTResource at 69eb6a70: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Library not saved to project. +------------------------------------------------ + +Applying cached symbols from LICAPINATIVEWRAPPER.DLL +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Linking the External Programs of 'LmxProxy.dll' to imported libraries... + [LICAPINATIVEWRAPPER.DLL] -> not found in project + [KERNEL32.DLL] -> not found in project + [USER32.DLL] -> not found in project + [ADVAPI32.DLL] -> not found in project + [OLE32.DLL] -> not found in project + [OLEAUT32.DLL] -> not found in project + [SHLWAPI.DLL] -> not found in project + [MSVCP100.DLL] -> not found in project + [DBGHELP.DLL] -> not found in project + [MSVCR100.DLL] -> not found in project +------------------------------------------------ + + +2026-04-25 02:08:04 INFO (HeadlessAnalyzer) IMPORTING: Loaded 0 additional files +2026-04-25 02:08:05 INFO (HeadlessAnalyzer) ANALYZING all memory and code: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll?MD5=b3a6a8f46ce22a48a42c23b77fbf9449 +2026-04-25 02:08:05 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___raise_securityfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:08:05 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___report_rangecheckfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:08:05 INFO (PdbUniversalAnalyzer) Skipping PDB processing: missing PDB information in program metadata +2026-04-25 02:08:05 INFO (PackedDatabaseCache) Packed database cache: C:\Users\dohertj2\AppData\Local\ghidra\packed-db-cache +2026-04-25 02:08:05 DEBUG (PackedDatabaseCache) Using cached packed database: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt +2026-04-25 02:08:20 INFO (DecompilerSwitchAnalyzer) hit non-returning function, restarting decompiler switch analyzer later +2026-04-25 02:08:45 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:08:51 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:09:21 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:09:23 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:10:08 INFO (AutoAnalysisManager) ----------------------------------------------------- + ASCII Strings 1.891 secs + Apply Data Archives 1.076 secs + Call Convention ID 0.055 secs + Call-Fixup Installer 0.199 secs + Create Address Tables 0.245 secs + Create Address Tables - One Time 0.071 secs + Create Function 0.918 secs + Data Reference 0.612 secs + Decompiler Parameter ID 24.775 secs + Decompiler Switch Analysis 29.912 secs + Decompiler Switch Analysis - One Time 6.507 secs + Demangler Microsoft 0.622 secs + Disassemble 1.721 secs + Disassemble Entry Points 0.526 secs + Embedded Media 0.036 secs + External Entry References 0.001 secs + Function ID 3.014 secs + Function Start Pre Search 0.058 secs + Function Start Search 0.262 secs + Function Start Search After Code 0.095 secs + Function Start Search After Data 0.067 secs + Non-Returning Functions - Discovered 0.672 secs + Non-Returning Functions - Known 0.022 secs + PDB Universal 0.009 secs + Reference 0.727 secs + Scalar Operand References 1.674 secs + Shared Return Calls 0.892 secs + Stack 9.805 secs + Subroutine References 0.777 secs + Subroutine References - One Time 0.015 secs + Windows x86 PE Exception Handling 12.548 secs + Windows x86 PE RTTI Analyzer 10.726 secs + Windows x86 Thread Environment Block (TEB) Analyzer 0.058 secs + WindowsResourceReference 2.872 secs + X86 Function Callee Purge 0.638 secs + x86 Constant Reference Analyzer 8.431 secs +----------------------------------------------------- + Total Time 122 secs +----------------------------------------------------- + +2026-04-25 02:10:08 INFO (HeadlessAnalyzer) REPORT: Analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll?MD5=b3a6a8f46ce22a48a42c23b77fbf9449 +2026-04-25 02:10:08 INFO (HeadlessAnalyzer) REPORT: Execute script: MxNmxExport.java 'C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports' +2026-04-25 02:10:08 INFO (HeadlessAnalyzer) SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\MxNmxExport.java +2026-04-25 02:10:11 INFO (GhidraScript) MxNmxExport.java> Wrote MX/NMX Ghidra export for LmxProxy.dll to C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports +2026-04-25 02:10:11 INFO (HeadlessAnalyzer) ANALYZING changes made by post scripts: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll?MD5=b3a6a8f46ce22a48a42c23b77fbf9449 +2026-04-25 02:10:11 INFO (HeadlessAnalyzer) REPORT: Post-analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/LmxProxy.dll?MD5=b3a6a8f46ce22a48a42c23b77fbf9449 +2026-04-25 02:10:11 INFO (LocalFileSystem) /input/LmxProxy.dll: file created (dohertj2) +2026-04-25 02:10:11 INFO (HeadlessAnalyzer) REPORT: Save succeeded for: /input/LmxProxy.dll (mxnmx:/input/LmxProxy.dll) +2026-04-25 02:10:11 INFO (HeadlessAnalyzer) REPORT: Import succeeded +2026-04-25 02:10:11 INFO (HeadlessAnalyzer) IMPORTING: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxAdptr.dll?MD5=ed206eb8de895f295c88017a15cb23de +2026-04-25 02:10:11 INFO (ProgramLoader) Using Loader: Portable Executable (PE) +2026-04-25 02:10:11 INFO (ProgramLoader) Using Language/Compiler: x86:LE:32:default:windows +2026-04-25 02:10:11 INFO (ProgramLoader) Using Library Search Path: [., C:\Windows\SysWOW64, C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot\bin, C:\Windows\Sun\Java\bin, C:\Windows\system32, C:\Windows, C:\Program Files\WindowsApps\Microsoft.PowerShell_7.6.1.0_x64__8wekyb3d8bbwe, C:\Users\dohertj2\.codex\tmp\arg0\codex-arg0eaNSL1, C:\TwinCAT\Common64, C:\TwinCAT\Common32, C:\Program Files (x86)\Wonderware\OI-Server\CommonFiles\bin\, C:\Program Files (x86)\Common Files\ArchestrA\, C:\Program Files\OpenSSH\, C:\Windows\System32\Wbem, C:\Windows\System32\WindowsPowerShell\v1.0\, C:\Windows\System32\OpenSSH\, C:\Program Files\dotnet\, C:\Program Files\Git\cmd, C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\DTS\Binn\, C:\Program Files (x86)\Common Files\ArchestrA\Licensing Framework\License API2, C:\Program Files\nodejs\, C:\Program Files\Docker\Docker\resources\bin, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\, C:\Users\dohertj2\AppData\Local\Programs\Python\Launcher\, C:\Users\dohertj2\AppData\Local\Microsoft\WindowsApps, C:\Users\dohertj2\.dotnet\tools, C:\Users\dohertj2\.local\bin, C:\Users\dohertj2\AppData\Local\JetBrains\Toolbox\scripts, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Links, C:\Users\dohertj2\AppData\Roaming\npm, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\BurntSushi.ripgrep.MSVC_Microsoft.Winget.Source_8wekyb3d8bbwe\ripgrep-15.1.0-x86_64-pc-windows-msvc, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\zig.zig_Microsoft.Winget.Source_8wekyb3d8bbwe\zig-x86_64-windows-0.16.0, C:\Users\dohertj2\AppData\Local\OpenAI\Codex\bin, C:\Program Files\WindowsApps\OpenAI.Codex_26.422.2437.0_x64__2p2nqsd0c76g0\app\resources] +2026-04-25 02:10:14 WARN (ExportDataDirectory) Invalid or missing function at 78a7afe0 +2026-04-25 02:10:24 INFO (TLSDirectory) TLS callbacks at 68f051c0 +2026-04-25 02:10:24 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:10:26 INFO (TLSDirectory) TLS callbacks at 1000701c +2026-04-25 02:10:26 WARN (ExportDataDirectory) Invalid or missing function at 10085b88 +2026-04-25 02:10:30 WARN (ExportDataDirectory) Invalid or missing function at 69e9f8f8 +2026-04-25 02:10:30 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:10:32 WARN (ExportDataDirectory) Invalid or missing function at 4f7c43d4 +2026-04-25 02:10:32 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:10:34 INFO (ProgramLoader) Additional info: +Loading file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxAdptr.dll?MD5=ed206eb8de895f295c88017a15cb23de... +[NmxAdptr.dll]: failed to create TerminatedCString at 100583d0: Failed to resolve data length for TerminatedCString +------------------------------------------------ + +Searching 36 paths for library ADVAPI32.DLL... +Loading file:///C:/Windows/SysWOW64/advapi32.dll?MD5=950c6d7d9ee5088375a96ae8436eaa70... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library ATL100.DLL... +Loading file:///C:/Windows/SysWOW64/atl100.dll?MD5=c85670ab64068f8080998aeba6c5019c... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\atl100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library DBGHELP.DLL... +Loading file:///C:/Windows/SysWOW64/dbghelp.dll?MD5=7a365edaa1b5c3a3fcdca41ee8fc95e2... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library KERNEL32.DLL... +Loading file:///C:/Windows/SysWOW64/kernel32.dll?MD5=0ce1f5f3d23f51b9ecfd453e34ca0af7... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCP100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcp100.dll?MD5=bc83108b18756547013ed443b8cdb31b... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCR100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcr100.dll?MD5=0e37fbfa79d349d672456923ec5fbbe3... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLE32.DLL... +Loading file:///C:/Windows/SysWOW64/ole32.dll?MD5=0c99de30cc1bc2997ebf5b7ca4b54fe8... +[ole32.dll]: failed to create WEVTResource at 68fc5218: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLEAUT32.DLL... +Loading file:///C:/Windows/SysWOW64/oleaut32.dll?MD5=96b3f5be7d92458fb909620f918a1f63... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library SHLWAPI.DLL... +Loading file:///C:/Windows/SysWOW64/shlwapi.dll?MD5=7955116f6d0ddddab0dab96deaea0b3d... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library USER32.DLL... +Loading file:///C:/Windows/SysWOW64/user32.dll?MD5=0927ed96558e5b2392df6cf7582f2655... +[user32.dll]: failed to create WEVTResource at 69eb6a70: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library WS2_32.DLL... +Loading file:///C:/Windows/SysWOW64/ws2_32.dll?MD5=fc4a6145ddd1b64983e8700601c71fc6... +[ws2_32.dll]: failed to create WEVTResource at 4f7cc4b8: Failed to resolve data length for WEVTResource +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ws2_32.exports +Library not saved to project. +------------------------------------------------ + +Applying cached symbols from WS2_32.DLL +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Applying cached symbols from ATL100.DLL +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Linking the External Programs of 'NmxAdptr.dll' to imported libraries... + [WS2_32.DLL] -> not found in project + [KERNEL32.DLL] -> not found in project + [USER32.DLL] -> not found in project + [ADVAPI32.DLL] -> not found in project + [OLE32.DLL] -> not found in project + [OLEAUT32.DLL] -> not found in project + [ATL100.DLL] -> not found in project + [SHLWAPI.DLL] -> not found in project + [MSVCP100.DLL] -> not found in project + [DBGHELP.DLL] -> not found in project + [MSVCR100.DLL] -> not found in project +------------------------------------------------ + + +2026-04-25 02:10:34 INFO (HeadlessAnalyzer) IMPORTING: Loaded 0 additional files +2026-04-25 02:10:34 INFO (HeadlessAnalyzer) ANALYZING all memory and code: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxAdptr.dll?MD5=ed206eb8de895f295c88017a15cb23de +2026-04-25 02:10:34 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___raise_securityfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:10:34 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___report_rangecheckfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:10:34 DEBUG (SymbolServerService) SymbolServerService: querying Program's Import Location - C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\input for NmxAdptr.pdb, c16245bc-ff95-411c-b853-a40971320811, 3, 0, ??? +2026-04-25 02:10:34 DEBUG (SymbolServerService) SymbolServerService: got 0 results from Program's Import Location - C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\input +2026-04-25 02:10:34 DEBUG (SymbolServerService) SymbolServerService: found 0 matches +2026-04-25 02:10:34 INFO (PdbUniversalAnalyzer) Skipping PDB processing: failed to locate PDB file in configured locations +2026-04-25 02:10:34 INFO (PdbUniversalAnalyzer) Use a script to set the PDB file location. I.e., + PdbAnalyzer.setPdbFileOption(currentProgram, new File("/path/to/pdb/file.pdb")); or + PdbUniversalAnalyzer.setPdbFileOption(currentProgram, new File("/path/to/pdb/file.pdb")); +Or set the symbol server search configuration using: PdbPlugin.saveSymbolServerServiceConfig(...); + This must be done using a pre-script (prior to analysis). +2026-04-25 02:10:34 DEBUG (PackedDatabaseCache) Using cached packed database: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt +2026-04-25 02:10:45 INFO (DecompilerSwitchAnalyzer) hit non-returning function, restarting decompiler switch analyzer later +2026-04-25 02:11:18 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:11:21 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:11:45 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:11:46 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:12:30 INFO (AutoAnalysisManager) ----------------------------------------------------- + ASCII Strings 0.182 secs + Apply Data Archives 0.577 secs + Call Convention ID 0.072 secs + Call-Fixup Installer 0.162 secs + Create Address Tables 0.327 secs + Create Address Tables - One Time 0.081 secs + Create Function 0.926 secs + Data Reference 0.504 secs + Decompiler Parameter ID 25.217 secs + Decompiler Switch Analysis 35.928 secs + Decompiler Switch Analysis - One Time 5.933 secs + Demangler Microsoft 0.447 secs + Disassemble 1.670 secs + Disassemble Entry Points 0.210 secs + Embedded Media 0.026 secs + External Entry References 0.000 secs + Function ID 3.141 secs + Function Start Pre Search 0.056 secs + Function Start Search 0.195 secs + Function Start Search After Code 0.202 secs + Function Start Search After Data 0.094 secs + Non-Returning Functions - Discovered 0.689 secs + Non-Returning Functions - Known 0.020 secs + PDB Universal 0.081 secs + Reference 0.720 secs + Scalar Operand References 1.345 secs + Shared Return Calls 0.606 secs + Stack 9.996 secs + Subroutine References 0.520 secs + Subroutine References - One Time 0.024 secs + Windows x86 PE Exception Handling 9.693 secs + Windows x86 PE RTTI Analyzer 5.597 secs + Windows x86 Thread Environment Block (TEB) Analyzer 0.022 secs + WindowsResourceReference 0.896 secs + X86 Function Callee Purge 1.919 secs + x86 Constant Reference Analyzer 8.159 secs +----------------------------------------------------- + Total Time 116 secs +----------------------------------------------------- + +2026-04-25 02:12:30 INFO (HeadlessAnalyzer) REPORT: Analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxAdptr.dll?MD5=ed206eb8de895f295c88017a15cb23de +2026-04-25 02:12:30 INFO (HeadlessAnalyzer) REPORT: Execute script: MxNmxExport.java 'C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports' +2026-04-25 02:12:31 INFO (HeadlessAnalyzer) SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\MxNmxExport.java +2026-04-25 02:12:33 INFO (GhidraScript) MxNmxExport.java> Wrote MX/NMX Ghidra export for NmxAdptr.dll to C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports +2026-04-25 02:12:33 INFO (HeadlessAnalyzer) ANALYZING changes made by post scripts: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxAdptr.dll?MD5=ed206eb8de895f295c88017a15cb23de +2026-04-25 02:12:33 INFO (HeadlessAnalyzer) REPORT: Post-analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxAdptr.dll?MD5=ed206eb8de895f295c88017a15cb23de +2026-04-25 02:12:33 INFO (LocalFileSystem) /input/NmxAdptr.dll: file created (dohertj2) +2026-04-25 02:12:33 INFO (HeadlessAnalyzer) REPORT: Save succeeded for: /input/NmxAdptr.dll (mxnmx:/input/NmxAdptr.dll) +2026-04-25 02:12:33 INFO (HeadlessAnalyzer) REPORT: Import succeeded +2026-04-25 02:12:33 INFO (HeadlessAnalyzer) IMPORTING: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvc.exe?MD5=33e3fda3607d01af4d83859567d99d47 +2026-04-25 02:12:33 INFO (ProgramLoader) Using Loader: Portable Executable (PE) +2026-04-25 02:12:33 INFO (ProgramLoader) Using Language/Compiler: x86:LE:32:default:windows +2026-04-25 02:12:33 INFO (ProgramLoader) Using Library Search Path: [., C:\Windows\SysWOW64, C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot\bin, C:\Windows\Sun\Java\bin, C:\Windows\system32, C:\Windows, C:\Program Files\WindowsApps\Microsoft.PowerShell_7.6.1.0_x64__8wekyb3d8bbwe, C:\Users\dohertj2\.codex\tmp\arg0\codex-arg0eaNSL1, C:\TwinCAT\Common64, C:\TwinCAT\Common32, C:\Program Files (x86)\Wonderware\OI-Server\CommonFiles\bin\, C:\Program Files (x86)\Common Files\ArchestrA\, C:\Program Files\OpenSSH\, C:\Windows\System32\Wbem, C:\Windows\System32\WindowsPowerShell\v1.0\, C:\Windows\System32\OpenSSH\, C:\Program Files\dotnet\, C:\Program Files\Git\cmd, C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\DTS\Binn\, C:\Program Files (x86)\Common Files\ArchestrA\Licensing Framework\License API2, C:\Program Files\nodejs\, C:\Program Files\Docker\Docker\resources\bin, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\, C:\Users\dohertj2\AppData\Local\Programs\Python\Launcher\, C:\Users\dohertj2\AppData\Local\Microsoft\WindowsApps, C:\Users\dohertj2\.dotnet\tools, C:\Users\dohertj2\.local\bin, C:\Users\dohertj2\AppData\Local\JetBrains\Toolbox\scripts, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Links, C:\Users\dohertj2\AppData\Roaming\npm, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\BurntSushi.ripgrep.MSVC_Microsoft.Winget.Source_8wekyb3d8bbwe\ripgrep-15.1.0-x86_64-pc-windows-msvc, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\zig.zig_Microsoft.Winget.Source_8wekyb3d8bbwe\zig-x86_64-windows-0.16.0, C:\Users\dohertj2\AppData\Local\OpenAI\Codex\bin, C:\Program Files\WindowsApps\OpenAI.Codex_26.422.2437.0_x64__2p2nqsd0c76g0\app\resources] +2026-04-25 02:12:47 INFO (TLSDirectory) TLS callbacks at 68f051c0 +2026-04-25 02:12:48 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:12:50 INFO (TLSDirectory) TLS callbacks at 1000701c +2026-04-25 02:12:50 WARN (ExportDataDirectory) Invalid or missing function at 10085b88 +2026-04-25 02:12:54 WARN (ExportDataDirectory) Invalid or missing function at 69e9f8f8 +2026-04-25 02:12:55 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:12:56 WARN (ExportDataDirectory) Invalid or missing function at 4f7c43d4 +2026-04-25 02:12:57 DEBUG (WEVTResourceDataType) Error processing Provider Element. +2026-04-25 02:12:57 INFO (ProgramLoader) Additional info: +Loading file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvc.exe?MD5=33e3fda3607d01af4d83859567d99d47... +[NmxSvc.exe]: failed to create TerminatedCString at 00465770: Failed to resolve data length for TerminatedCString +------------------------------------------------ + +Searching 36 paths for library ADVAPI32.DLL... +Loading file:///C:/Windows/SysWOW64/advapi32.dll?MD5=950c6d7d9ee5088375a96ae8436eaa70... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library DBGHELP.DLL... +Loading file:///C:/Windows/SysWOW64/dbghelp.dll?MD5=7a365edaa1b5c3a3fcdca41ee8fc95e2... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library IPHLPAPI.DLL... +Loading file:///C:/Windows/SysWOW64/IPHLPAPI.DLL?MD5=c5f93114591ab9efe8dc3a4a98845cde... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\iphlpapi.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library KERNEL32.DLL... +Loading file:///C:/Windows/SysWOW64/kernel32.dll?MD5=0ce1f5f3d23f51b9ecfd453e34ca0af7... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCP100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcp100.dll?MD5=bc83108b18756547013ed443b8cdb31b... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library MSVCR100.DLL... +Loading file:///C:/Windows/SysWOW64/msvcr100.dll?MD5=0e37fbfa79d349d672456923ec5fbbe3... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library NETAPI32.DLL... +Loading file:///C:/Windows/SysWOW64/netapi32.dll?MD5=b87c412295a901b441e06549fc7798c2... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\netapi32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLE32.DLL... +Loading file:///C:/Windows/SysWOW64/ole32.dll?MD5=0c99de30cc1bc2997ebf5b7ca4b54fe8... +[ole32.dll]: failed to create WEVTResource at 68fc5218: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLEAUT32.DLL... +Loading file:///C:/Windows/SysWOW64/oleaut32.dll?MD5=96b3f5be7d92458fb909620f918a1f63... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library SECUR32.DLL... +Loading file:///C:/Windows/SysWOW64/secur32.dll?MD5=f43305d96ef703ac86f5a38f635b6f2f... +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\secur32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library SHLWAPI.DLL... +Loading file:///C:/Windows/SysWOW64/shlwapi.dll?MD5=7955116f6d0ddddab0dab96deaea0b3d... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library USER32.DLL... +Loading file:///C:/Windows/SysWOW64/user32.dll?MD5=0927ed96558e5b2392df6cf7582f2655... +[user32.dll]: failed to create WEVTResource at 69eb6a70: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library WS2_32.DLL... +Loading file:///C:/Windows/SysWOW64/ws2_32.dll?MD5=fc4a6145ddd1b64983e8700601c71fc6... +[ws2_32.dll]: failed to create WEVTResource at 4f7cc4b8: Failed to resolve data length for WEVTResource +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ws2_32.exports +Library not saved to project. +------------------------------------------------ + +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ws2_32.exports +Applying cached symbols from IPHLPAPI.DLL +Applying cached symbols from SECUR32.DLL +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\user32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\advapi32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\ole32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\shlwapi.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcp100.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\dbghelp.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\msvcr100.exports +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\netapi32.exports +Linking the External Programs of 'NmxSvc.exe' to imported libraries... + [WS2_32.DLL] -> not found in project + [IPHLPAPI.DLL] -> not found in project + [SECUR32.DLL] -> not found in project + [KERNEL32.DLL] -> not found in project + [USER32.DLL] -> not found in project + [ADVAPI32.DLL] -> not found in project + [OLE32.DLL] -> not found in project + [OLEAUT32.DLL] -> not found in project + [SHLWAPI.DLL] -> not found in project + [MSVCP100.DLL] -> not found in project + [DBGHELP.DLL] -> not found in project + [MSVCR100.DLL] -> not found in project + [NETAPI32.DLL] -> not found in project +------------------------------------------------ + + +2026-04-25 02:12:57 INFO (HeadlessAnalyzer) IMPORTING: Loaded 0 additional files +2026-04-25 02:12:58 INFO (HeadlessAnalyzer) ANALYZING all memory and code: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvc.exe?MD5=33e3fda3607d01af4d83859567d99d47 +2026-04-25 02:12:58 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___raise_securityfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:12:58 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___report_rangecheckfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:12:58 DEBUG (SymbolServerService) SymbolServerService: querying Program's Import Location - C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\input for NmxSvc.pdb, fd35a3a5-adbb-4c2d-827b-138689f178ad, 1, 0, ??? +2026-04-25 02:12:58 DEBUG (SymbolServerService) SymbolServerService: got 0 results from Program's Import Location - C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\input +2026-04-25 02:12:58 DEBUG (SymbolServerService) SymbolServerService: found 0 matches +2026-04-25 02:12:58 INFO (PdbUniversalAnalyzer) Skipping PDB processing: failed to locate PDB file in configured locations +2026-04-25 02:12:58 INFO (PdbUniversalAnalyzer) Use a script to set the PDB file location. I.e., + PdbAnalyzer.setPdbFileOption(currentProgram, new File("/path/to/pdb/file.pdb")); or + PdbUniversalAnalyzer.setPdbFileOption(currentProgram, new File("/path/to/pdb/file.pdb")); +Or set the symbol server search configuration using: PdbPlugin.saveSymbolServerServiceConfig(...); + This must be done using a pre-script (prior to analysis). +2026-04-25 02:12:58 DEBUG (PackedDatabaseCache) Using cached packed database: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt +2026-04-25 02:13:09 INFO (DecompilerSwitchAnalyzer) hit non-returning function, restarting decompiler switch analyzer later +2026-04-25 02:13:19 INFO (DecompilerSwitchAnalyzer) hit non-returning function, restarting decompiler switch analyzer later +2026-04-25 02:13:39 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:13:44 INFO (TypeDescriptorModel) Unprocessed TypeDescriptor: long +2026-04-25 02:14:09 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:14:10 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:14:49 DEBUG (DecompilerParameterIdCmd) Failed to decompile function: FUN_0040eba5: +Low-level Error: Cannot properly adjust input varnodes +2026-04-25 02:15:05 INFO (AutoAnalysisManager) ----------------------------------------------------- + ASCII Strings 0.161 secs + Apply Data Archives 0.592 secs + Call Convention ID 0.081 secs + Call-Fixup Installer 0.246 secs + Create Address Tables 0.309 secs + Create Address Tables - One Time 0.077 secs + Create Function 1.263 secs + Data Reference 0.669 secs + Decompiler Parameter ID 30.290 secs + Decompiler Switch Analysis 21.475 secs + Decompiler Switch Analysis - One Time 14.353 secs + Demangler Microsoft 0.666 secs + Disassemble 1.864 secs + Disassemble Entry Points 0.268 secs + Embedded Media 0.033 secs + External Entry References 0.000 secs + Function ID 3.688 secs + Function Start Pre Search 0.074 secs + Function Start Search 0.361 secs + Function Start Search After Code 0.214 secs + Function Start Search After Data 0.190 secs + Non-Returning Functions - Discovered 0.614 secs + Non-Returning Functions - Known 0.019 secs + PDB Universal 0.003 secs + Reference 0.737 secs + Scalar Operand References 1.795 secs + Shared Return Calls 0.867 secs + Stack 13.370 secs + Subroutine References 0.644 secs + Subroutine References - One Time 0.029 secs + Windows x86 PE Exception Handling 9.698 secs + Windows x86 PE RTTI Analyzer 7.709 secs + Windows x86 Thread Environment Block (TEB) Analyzer 0.022 secs + WindowsResourceReference 2.289 secs + X86 Function Callee Purge 1.973 secs + x86 Constant Reference Analyzer 10.856 secs +----------------------------------------------------- + Total Time 127 secs +----------------------------------------------------- + +2026-04-25 02:15:05 INFO (HeadlessAnalyzer) REPORT: Analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvc.exe?MD5=33e3fda3607d01af4d83859567d99d47 +2026-04-25 02:15:05 INFO (HeadlessAnalyzer) REPORT: Execute script: MxNmxExport.java 'C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports' +2026-04-25 02:15:05 INFO (HeadlessAnalyzer) SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\MxNmxExport.java +2026-04-25 02:15:08 INFO (GhidraScript) MxNmxExport.java> Wrote MX/NMX Ghidra export for NmxSvc.exe to C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports +2026-04-25 02:15:08 INFO (HeadlessAnalyzer) ANALYZING changes made by post scripts: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvc.exe?MD5=33e3fda3607d01af4d83859567d99d47 +2026-04-25 02:15:08 INFO (HeadlessAnalyzer) REPORT: Post-analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvc.exe?MD5=33e3fda3607d01af4d83859567d99d47 +2026-04-25 02:15:08 INFO (LocalFileSystem) /input/NmxSvc.exe: file created (dohertj2) +2026-04-25 02:15:08 INFO (HeadlessAnalyzer) REPORT: Save succeeded for: /input/NmxSvc.exe (mxnmx:/input/NmxSvc.exe) +2026-04-25 02:15:08 INFO (HeadlessAnalyzer) REPORT: Import succeeded +2026-04-25 02:15:08 INFO (HeadlessAnalyzer) IMPORTING: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvcps.dll?MD5=e819cc7af405b742deb1505da4a7e3d4 +2026-04-25 02:15:08 INFO (ProgramLoader) Using Loader: Portable Executable (PE) +2026-04-25 02:15:08 INFO (ProgramLoader) Using Language/Compiler: x86:LE:32:default:windows +2026-04-25 02:15:08 INFO (ProgramLoader) Using Library Search Path: [., C:\Windows\SysWOW64, C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot\bin, C:\Windows\Sun\Java\bin, C:\Windows\system32, C:\Windows, C:\Program Files\WindowsApps\Microsoft.PowerShell_7.6.1.0_x64__8wekyb3d8bbwe, C:\Users\dohertj2\.codex\tmp\arg0\codex-arg0eaNSL1, C:\TwinCAT\Common64, C:\TwinCAT\Common32, C:\Program Files (x86)\Wonderware\OI-Server\CommonFiles\bin\, C:\Program Files (x86)\Common Files\ArchestrA\, C:\Program Files\OpenSSH\, C:\Windows\System32\Wbem, C:\Windows\System32\WindowsPowerShell\v1.0\, C:\Windows\System32\OpenSSH\, C:\Program Files\dotnet\, C:\Program Files\Git\cmd, C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\DTS\Binn\, C:\Program Files (x86)\Common Files\ArchestrA\Licensing Framework\License API2, C:\Program Files\nodejs\, C:\Program Files\Docker\Docker\resources\bin, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\, C:\Users\dohertj2\AppData\Local\Programs\Python\Launcher\, C:\Users\dohertj2\AppData\Local\Microsoft\WindowsApps, C:\Users\dohertj2\.dotnet\tools, C:\Users\dohertj2\.local\bin, C:\Users\dohertj2\AppData\Local\JetBrains\Toolbox\scripts, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Links, C:\Users\dohertj2\AppData\Roaming\npm, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\BurntSushi.ripgrep.MSVC_Microsoft.Winget.Source_8wekyb3d8bbwe\ripgrep-15.1.0-x86_64-pc-windows-msvc, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\zig.zig_Microsoft.Winget.Source_8wekyb3d8bbwe\zig-x86_64-windows-0.16.0, C:\Users\dohertj2\AppData\Local\OpenAI\Codex\bin, C:\Program Files\WindowsApps\OpenAI.Codex_26.422.2437.0_x64__2p2nqsd0c76g0\app\resources] +2026-04-25 02:15:12 INFO (TLSDirectory) TLS callbacks at 1000701c +2026-04-25 02:15:12 WARN (ExportDataDirectory) Invalid or missing function at 10085b88 +2026-04-25 02:15:15 INFO (ProgramLoader) Additional info: +Loading file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvcps.dll?MD5=e819cc7af405b742deb1505da4a7e3d4... +[NmxSvcps.dll]: failed to create TerminatedCString at 1000c46c: Failed to resolve data length for TerminatedCString +------------------------------------------------ + +Searching 36 paths for library KERNEL32.DLL... +Loading file:///C:/Windows/SysWOW64/kernel32.dll?MD5=0ce1f5f3d23f51b9ecfd453e34ca0af7... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library OLEAUT32.DLL... +Loading file:///C:/Windows/SysWOW64/oleaut32.dll?MD5=96b3f5be7d92458fb909620f918a1f63... +Using existing exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\oleaut32.exports +Library not saved to project. +------------------------------------------------ + +Searching 36 paths for library RPCRT4.DLL... +Loading file:///C:/Windows/SysWOW64/rpcrt4.dll?MD5=86b4865aed411b83c8188779681eab79... +Index 10 out of bounds for length 10 +Created exports file: C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\rpcrt4.exports +Library not saved to project. +------------------------------------------------ + +Applying cached symbols from RPCRT4.DLL +Applying C:\Users\dohertj2\AppData\Roaming\ghidra\ghidra_12.0.4_PUBLIC\symbols\win32\kernel32.exports +Applying cached symbols from OLEAUT32.DLL +Linking the External Programs of 'NmxSvcps.dll' to imported libraries... + [RPCRT4.DLL] -> not found in project + [KERNEL32.DLL] -> not found in project + [OLEAUT32.DLL] -> not found in project +------------------------------------------------ + + +2026-04-25 02:15:15 INFO (HeadlessAnalyzer) IMPORTING: Loaded 0 additional files +2026-04-25 02:15:15 INFO (HeadlessAnalyzer) ANALYZING all memory and code: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvcps.dll?MD5=e819cc7af405b742deb1505da4a7e3d4 +2026-04-25 02:15:15 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___raise_securityfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:15:15 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___report_rangecheckfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:15:15 INFO (PdbUniversalAnalyzer) Skipping PDB processing: missing PDB information in program metadata +2026-04-25 02:15:25 DEBUG (PackedDatabaseCache) Using cached packed database: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt +2026-04-25 02:15:28 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:15:28 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:15:47 INFO (AutoAnalysisManager) ----------------------------------------------------- + ASCII Strings 0.025 secs + Apply Data Archives 3.243 secs + Call Convention ID 0.005 secs + Call-Fixup Installer 0.040 secs + Create Address Tables 0.041 secs + Create Address Tables - One Time 0.090 secs + Create Function 0.111 secs + Data Reference 0.062 secs + Decompiler Parameter ID 6.964 secs + Decompiler Switch Analysis 15.562 secs + Demangler Microsoft 0.076 secs + Disassemble 0.043 secs + Disassemble Entry Points 0.315 secs + Embedded Media 0.015 secs + External Entry References 0.001 secs + Function ID 0.546 secs + Function Start Pre Search 0.192 secs + Function Start Search 0.158 secs + Function Start Search After Code 0.020 secs + Function Start Search After Data 0.026 secs + Function Start Search delayed - One Time 0.001 secs + Non-Returning Functions - Discovered 0.082 secs + Non-Returning Functions - Known 0.016 secs + PDB Universal 0.003 secs + Reference 0.095 secs + Scalar Operand References 0.110 secs + Shared Return Calls 0.109 secs + Stack 1.307 secs + Subroutine References 0.052 secs + Subroutine References - One Time 0.009 secs + Windows x86 PE Exception Handling 0.002 secs + Windows x86 PE RTTI Analyzer 0.003 secs + Windows x86 Thread Environment Block (TEB) Analyzer 0.026 secs + WindowsResourceReference 0.917 secs + X86 Function Callee Purge 0.032 secs + x86 Constant Reference Analyzer 1.289 secs +----------------------------------------------------- + Total Time 31 secs +----------------------------------------------------- + +2026-04-25 02:15:47 INFO (HeadlessAnalyzer) REPORT: Analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvcps.dll?MD5=e819cc7af405b742deb1505da4a7e3d4 +2026-04-25 02:15:47 INFO (HeadlessAnalyzer) REPORT: Execute script: MxNmxExport.java 'C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports' +2026-04-25 02:15:47 INFO (HeadlessAnalyzer) SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\MxNmxExport.java +2026-04-25 02:15:47 INFO (GhidraScript) MxNmxExport.java> Wrote MX/NMX Ghidra export for NmxSvcps.dll to C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports +2026-04-25 02:15:47 INFO (HeadlessAnalyzer) ANALYZING changes made by post scripts: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvcps.dll?MD5=e819cc7af405b742deb1505da4a7e3d4 +2026-04-25 02:15:47 INFO (HeadlessAnalyzer) REPORT: Post-analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/NmxSvcps.dll?MD5=e819cc7af405b742deb1505da4a7e3d4 +2026-04-25 02:15:48 INFO (LocalFileSystem) /input/NmxSvcps.dll: file created (dohertj2) +2026-04-25 02:15:48 INFO (HeadlessAnalyzer) REPORT: Save succeeded for: /input/NmxSvcps.dll (mxnmx:/input/NmxSvcps.dll) +2026-04-25 02:15:48 INFO (HeadlessAnalyzer) REPORT: Import succeeded +2026-04-25 02:15:48 INFO (HeadlessAnalyzer) IMPORTING: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/WWProxyStub.dll?MD5=562fc393145e7507093acefb2b59808b +2026-04-25 02:15:48 INFO (ProgramLoader) Using Loader: Portable Executable (PE) +2026-04-25 02:15:48 INFO (ProgramLoader) Using Language/Compiler: x86:LE:32:default:windows +2026-04-25 02:15:48 INFO (ProgramLoader) Using Library Search Path: [., C:\Windows\SysWOW64, C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot\bin, C:\Windows\Sun\Java\bin, C:\Windows\system32, C:\Windows, C:\Program Files\WindowsApps\Microsoft.PowerShell_7.6.1.0_x64__8wekyb3d8bbwe, C:\Users\dohertj2\.codex\tmp\arg0\codex-arg0eaNSL1, C:\TwinCAT\Common64, C:\TwinCAT\Common32, C:\Program Files (x86)\Wonderware\OI-Server\CommonFiles\bin\, C:\Program Files (x86)\Common Files\ArchestrA\, C:\Program Files\OpenSSH\, C:\Windows\System32\Wbem, C:\Windows\System32\WindowsPowerShell\v1.0\, C:\Windows\System32\OpenSSH\, C:\Program Files\dotnet\, C:\Program Files\Git\cmd, C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\Tools\Binn\, C:\Program Files\Microsoft SQL Server\140\DTS\Binn\, C:\Program Files (x86)\Common Files\ArchestrA\Licensing Framework\License API2, C:\Program Files\nodejs\, C:\Program Files\Docker\Docker\resources\bin, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\, C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\, C:\Users\dohertj2\AppData\Local\Programs\Python\Launcher\, C:\Users\dohertj2\AppData\Local\Microsoft\WindowsApps, C:\Users\dohertj2\.dotnet\tools, C:\Users\dohertj2\.local\bin, C:\Users\dohertj2\AppData\Local\JetBrains\Toolbox\scripts, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Links, C:\Users\dohertj2\AppData\Roaming\npm, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\BurntSushi.ripgrep.MSVC_Microsoft.Winget.Source_8wekyb3d8bbwe\ripgrep-15.1.0-x86_64-pc-windows-msvc, C:\Users\dohertj2\AppData\Local\Microsoft\WinGet\Packages\zig.zig_Microsoft.Winget.Source_8wekyb3d8bbwe\zig-x86_64-windows-0.16.0, C:\Users\dohertj2\AppData\Local\OpenAI\Codex\bin, C:\Program Files\WindowsApps\OpenAI.Codex_26.422.2437.0_x64__2p2nqsd0c76g0\app\resources] +2026-04-25 02:15:48 INFO (ProgramLoader) Additional info: +Loading file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/WWProxyStub.dll?MD5=562fc393145e7507093acefb2b59808b... +[WWProxyStub.dll]: failed to create TerminatedCString at 10003498: Failed to resolve data length for TerminatedCString +------------------------------------------------ + + +2026-04-25 02:15:48 INFO (HeadlessAnalyzer) IMPORTING: Loaded 0 additional files +2026-04-25 02:15:48 INFO (HeadlessAnalyzer) ANALYZING all memory and code: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/WWProxyStub.dll?MD5=562fc393145e7507093acefb2b59808b +2026-04-25 02:15:48 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___raise_securityfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:15:48 WARN (NoReturnFunctionAnalyzer) Ignoring leading '_' chars on no-return name '___report_rangecheckfailure' specified in file: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\PEFunctionsThatDoNotReturn +2026-04-25 02:15:48 INFO (PdbUniversalAnalyzer) Skipping PDB processing: missing PDB information in program metadata +2026-04-25 02:15:48 DEBUG (PackedDatabaseCache) Using cached packed database: C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC\Ghidra\Features\Base\data\typeinfo\win32\windows_vs12_32.gdt +2026-04-25 02:15:51 INFO (ApplyDataArchiveAnalyzer) Applied data type archive: windows_vs12_32 +2026-04-25 02:15:55 INFO (AutoAnalysisManager) ----------------------------------------------------- + ASCII Strings 0.004 secs + Apply Data Archives 2.583 secs + Call Convention ID 0.001 secs + Call-Fixup Installer 0.000 secs + Create Address Tables 0.003 secs + Create Function 0.000 secs + Data Reference 0.001 secs + Decompiler Parameter ID 2.853 secs + Decompiler Switch Analysis 0.000 secs + Demangler Microsoft 0.002 secs + Disassemble Entry Points 0.008 secs + Embedded Media 0.006 secs + External Entry References 0.000 secs + Function ID 0.025 secs + Function Start Pre Search 0.018 secs + Function Start Search 0.058 secs + Function Start Search After Code 0.004 secs + Function Start Search After Data 0.002 secs + Non-Returning Functions - Discovered 0.000 secs + Non-Returning Functions - Known 0.012 secs + PDB Universal 0.001 secs + Reference 0.000 secs + Scalar Operand References 0.000 secs + Shared Return Calls 0.001 secs + Stack 0.003 secs + Subroutine References 0.001 secs + Windows x86 PE Exception Handling 0.000 secs + Windows x86 PE RTTI Analyzer 0.000 secs + Windows x86 Thread Environment Block (TEB) Analyzer 0.020 secs + WindowsResourceReference 0.967 secs + X86 Function Callee Purge 0.000 secs + x86 Constant Reference Analyzer 0.004 secs +----------------------------------------------------- + Total Time 6 secs +----------------------------------------------------- + +2026-04-25 02:15:55 INFO (HeadlessAnalyzer) REPORT: Analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/WWProxyStub.dll?MD5=562fc393145e7507093acefb2b59808b +2026-04-25 02:15:55 INFO (HeadlessAnalyzer) REPORT: Execute script: MxNmxExport.java 'C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports' +2026-04-25 02:15:55 INFO (HeadlessAnalyzer) SCRIPT: C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\scripts\MxNmxExport.java +2026-04-25 02:15:55 INFO (GhidraScript) MxNmxExport.java> Wrote MX/NMX Ghidra export for WWProxyStub.dll to C:\Users\dohertj2\Desktop\mxaccess\analysis\ghidra\exports +2026-04-25 02:15:55 INFO (HeadlessAnalyzer) ANALYZING changes made by post scripts: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/WWProxyStub.dll?MD5=562fc393145e7507093acefb2b59808b +2026-04-25 02:15:55 INFO (HeadlessAnalyzer) REPORT: Post-analysis succeeded for file: file:///C:/Users/dohertj2/Desktop/mxaccess/analysis/ghidra/input/WWProxyStub.dll?MD5=562fc393145e7507093acefb2b59808b +2026-04-25 02:15:55 INFO (LocalFileSystem) /input/WWProxyStub.dll: file created (dohertj2) +2026-04-25 02:15:55 INFO (HeadlessAnalyzer) REPORT: Save succeeded for: /input/WWProxyStub.dll (mxnmx:/input/WWProxyStub.dll) +2026-04-25 02:15:55 INFO (HeadlessAnalyzer) REPORT: Import succeeded diff --git a/analysis/ghidra/all-native.script.log b/analysis/ghidra/all-native.script.log new file mode 100644 index 0000000..e69de29 diff --git a/analysis/ghidra/exports/Lmx.dll.call-refs.tsv b/analysis/ghidra/exports/Lmx.dll.call-refs.tsv new file mode 100644 index 0000000..af17772 --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.call-refs.tsv @@ -0,0 +1,1406 @@ +caller_entry caller_name call_address target +100012a0 FUN_100012a0 100012b2 memcpy +100012c0 FUN_100012c0 100012d2 memmove +100014c0 FUN_100014c0 100014d3 memcpy_s +10001a40 Attach 10001a51 SysFreeString +10001a70 FUN_10001a70 10001a76 SysFreeString +10001aa0 FUN_10001aa0 10001ad8 SysFreeString +10001b40 FUN_10001b40 10001b72 SysFreeString +10001dc0 FUN_10001dc0 10001dc3 SysFreeString +10002c10 FUN_10002c10 10002c29 SysAllocString +10002c50 FUN_10002c50 10002c7b SysAllocStringByteLen +10002cf0 FUN_10002cf0 10002cfa SysFreeString +10003100 FUN_10003100 10003112 memcpy +10003150 FUN_10003150 10003162 memmove +100038f0 FUN_100038f0 1000392e SysFreeString +100038f0 FUN_100038f0 1000393c SysFreeString +100038f0 FUN_100038f0 10003952 SysFreeString +100038f0 FUN_100038f0 1000395d SysFreeString +100039a0 FUN_100039a0 100039de SysFreeString +100039a0 FUN_100039a0 100039ed SysFreeString +100039a0 FUN_100039a0 10003a03 SysFreeString +100039a0 FUN_100039a0 10003a12 SysFreeString +100039a0 FUN_100039a0 10003a28 SysFreeString +100039a0 FUN_100039a0 10003a37 SysFreeString +100039a0 FUN_100039a0 10003a4d SysFreeString +100039a0 FUN_100039a0 10003a5b SysFreeString +100039a0 FUN_100039a0 10003a71 SysFreeString +100039a0 FUN_100039a0 10003a7c SysFreeString +10003a90 FUN_10003a90 10003b3e memset +10003cd0 FUN_10003cd0 10003d05 memset +10003f30 FUN_10003f30 10003f45 CoCreateInstance +100040a0 FUN_100040a0 100040cd memset +10004320 FUN_10004320 10004335 CoCreateInstance +100046e0 FUN_100046e0 100046f5 CoCreateInstance +100047d0 FUN_100047d0 100047ec memset +100047d0 FUN_100047d0 10004812 memset +10004850 FUN_10004850 1000486f memset +10004850 FUN_10004850 10004895 memset +100048f0 FUN_100048f0 1000490f memset +100048f0 FUN_100048f0 10004935 memset +10004970 FUN_10004970 10004991 memset +10004b80 FUN_10004b80 10004bb0 SysFreeString +10004ea0 FUN_10004ea0 10004ea3 SysFreeString +10004ef0 FUN_10004ef0 10004ef6 SysFreeString +10005120 FUN_10005120 10005146 CoGetClassObject +10005170 FUN_10005170 100051a2 CoGetClassObject +10005220 FUN_10005220 10005235 SysFreeString +10005280 FUN_10005280 100052b2 CoGetClassObject +10005330 FUN_10005330 10005362 CoGetClassObject +10005420 FUN_10005420 10005452 CoGetClassObject +100054b0 FUN_100054b0 100054e2 CoGetClassObject +10005550 FUN_10005550 10005582 CoGetClassObject +10005620 FUN_10005620 1000562b SysFreeString +100059f0 FUN_100059f0 10005a34 memcpy_s +10005a80 FUN_10005a80 10005b2f memcpy_s +10005cc0 FUN_10005cc0 10005cd5 CoCreateInstance +10005d20 FUN_10005d20 10005d35 CoCreateInstance +10006940 FUN_10006940 10006955 CoCreateInstance +10010f20 FUN_10010f20 10010f50 SysFreeString +10012310 FUN_10012310 10012328 memmove +100123b0 FUN_100123b0 100123cc memmove +100125e0 FUN_100125e0 100125fc memmove +10012e10 FUN_10012e10 10012e25 CoCreateInstance +100134b0 FUN_100134b0 100134c7 memmove +10014180 FUN_10014180 10014198 memmove +10014440 FUN_10014440 10014495 SysAllocStringLen +10014440 FUN_10014440 100144b7 SysFreeString +10014620 FUN_10014620 10014649 SysAllocStringLen +10014660 FUN_10014660 1001468b SysAllocStringLen +100146b0 FUN_100146b0 100146c7 SysAllocString +100146e0 FUN_100146e0 10014710 SysAllocString +10014740 FUN_10014740 10014751 SysFreeString +10014740 FUN_10014740 1001475c SysAllocString +10014780 FUN_10014780 10014796 SysAllocStringByteLen +10014840 FUN_10014840 100148df SysAllocStringLen +10014840 FUN_10014840 10014945 SysFreeString +100149c0 FUN_100149c0 10014a0f SysAllocStringLen +100149c0 FUN_100149c0 10014a2f SysFreeString +10014cb0 FUN_10014cb0 10014d29 SysFreeString +10014cb0 FUN_10014cb0 10014d34 SysAllocString +10014f70 FUN_10014f70 10014fef SysFreeString +100151f0 FUN_100151f0 10015248 SysAllocString +100152a0 FUN_100152a0 1001530a SysAllocStringByteLen +100153d0 FUN_100153d0 10015404 SysFreeString +10015470 FUN_10015470 1001547a SysFreeString +10015b40 FUN_10015b40 10015bc0 SysFreeString +10015b40 FUN_10015b40 10015bcf SysFreeString +10015b40 FUN_10015b40 10015bf6 SysFreeString +10015b40 FUN_10015b40 10015c05 SysFreeString +10015b40 FUN_10015b40 10015c1d SysFreeString +10015b40 FUN_10015b40 10015c2c SysFreeString +10015b40 FUN_10015b40 10015c50 SysFreeString +10015c70 FUN_10015c70 10015ca5 memset +10015df0 FUN_10015df0 10015e5b SysFreeString +10015df0 FUN_10015df0 10015e6a SysFreeString +10016910 FUN_10016910 10016993 memset +10016910 FUN_10016910 100169e9 SysAllocString +10016910 FUN_10016910 10016a13 SysFreeString +10016dd0 FUN_10016dd0 10016e3d SysFreeString +10016ef0 FUN_10016ef0 10016f24 CoGetClassObject +10018e20 FUN_10018e20 10018e43 memcpy +10019ba0 FUN_10019ba0 10019bd5 memcpy +10019f70 FUN_10019f70 10019f89 memcpy +1001e230 FUN_1001e230 1001e248 memmove +1001e2a0 FUN_1001e2a0 1001e2bc memmove +1001e3d0 FUN_1001e3d0 1001e3ec memmove +1001f1f0 FUN_1001f1f0 1001f24c CoCreateInstance +1001f2b0 FUN_1001f2b0 1001f2c5 CoCreateInstance +1001f2e0 FUN_1001f2e0 1001f331 CoCreateInstance +1001f3d0 FUN_1001f3d0 1001f42c CoCreateInstance +1001f490 FUN_1001f490 1001f4a5 CoCreateInstance +1001f4c0 FUN_1001f4c0 1001f511 CoCreateInstance +1001f800 FUN_1001f800 1001f817 memmove +1001fb60 FUN_1001fb60 1001fb9b SysFreeString +1001fb60 FUN_1001fb60 1001fba5 SysFreeString +100212c0 FUN_100212c0 100212d8 memmove +100214a0 FUN_100214a0 100214cc SysAllocString +100214a0 FUN_100214a0 1002151e SysFreeString +10021780 FUN_10021780 100217cc SysFreeString +10021780 FUN_10021780 100217d5 SysFreeString +10021830 FUN_10021830 1002184b SysAllocStringByteLen +10021870 FUN_10021870 10021881 SysFreeString +10021870 FUN_10021870 10021898 SysAllocStringByteLen +10021cc0 FUN_10021cc0 10021cfb SysFreeString +10021cc0 FUN_10021cc0 10021d05 SysFreeString +10021cc0 FUN_10021cc0 10021d0f SysFreeString +10021cc0 FUN_10021cc0 10021d19 SysFreeString +10021d90 FUN_10021d90 10021dcb SysFreeString +10021d90 FUN_10021d90 10021dd5 SysFreeString +10021d90 FUN_10021d90 10021ddf SysFreeString +10021d90 FUN_10021d90 10021de9 SysFreeString +10021ef0 FUN_10021ef0 10021fad CoGetClassObject +10021ef0 FUN_10021ef0 1002202b SysFreeString +10022060 FUN_10022060 1002214a SysFreeString +10022060 FUN_10022060 1002217e CoGetClassObject +10022060 FUN_10022060 100221f9 SysFreeString +10022060 FUN_10022060 10022215 SysFreeString +100222c0 FUN_100222c0 100222fb SysFreeString +100222c0 FUN_100222c0 10022305 SysFreeString +100222c0 FUN_100222c0 1002230f SysFreeString +100222c0 FUN_100222c0 10022319 SysFreeString +100224d0 FUN_100224d0 1002252c SysAllocString +10022580 FUN_10022580 1002258d SysFreeString +10023440 FUN_10023440 1002349a SysFreeString +10023440 FUN_10023440 100234b1 SysAllocStringByteLen +10023440 FUN_10023440 100234f6 SysFreeString +10023440 FUN_10023440 1002350d SysAllocStringByteLen +10023440 FUN_10023440 10023551 SysFreeString +10023670 FUN_10023670 10023729 SysAllocStringByteLen +10023670 FUN_10023670 100237ae SysFreeString +10023ab0 FUN_10023ab0 10023ac1 AtlInternalQueryInterface +10023af0 FUN_10023af0 10023b04 AtlInternalQueryInterface +100243f0 FUN_100243f0 10024445 memmove +10024ac0 FUN_10024ac0 10024be8 memcpy +100256c0 FUN_100256c0 10025722 memcpy +100260d0 FUN_100260d0 1002621d memcpy +10029070 FUN_10029070 100290ed CoCreateInstance +10029160 FUN_10029160 100291c2 CoCreateInstance +100293b0 FUN_100293b0 1002942d CoCreateInstance +100294a0 FUN_100294a0 10029502 CoCreateInstance +100298f0 FUN_100298f0 10029907 memmove +10029cb0 FUN_10029cb0 10029cc1 SysFreeString +10029cb0 FUN_10029cb0 10029cd8 SysAllocStringByteLen +1002d260 FUN_1002d260 1002d2a6 SysFreeString +1002d260 FUN_1002d260 1002d2b0 SysFreeString +1002d8b0 FUN_1002d8b0 1002d8ee SysAllocStringByteLen +1002dbb0 FUN_1002dbb0 1002dbf2 memmove +1002e170 FUN_1002e170 1002e1a4 SysFreeString +1002e440 FUN_1002e440 1002e4e6 SysFreeString +1002e640 FUN_1002e640 1002e65f SysFreeString +1002e760 FUN_1002e760 1002e808 SysFreeString +1002e760 FUN_1002e760 1002e83f SysFreeString +1002e940 FUN_1002e940 1002ea5a SysAllocStringByteLen +1002e940 FUN_1002e940 1002ea82 SysAllocString +1002e940 FUN_1002e940 1002eb01 SysFreeString +1002e940 FUN_1002e940 1002eb1c SysFreeString +1002edc0 FUN_1002edc0 1002ef19 SysFreeString +1002edc0 FUN_1002edc0 1002effb SysFreeString +1002f5f0 FUN_1002f5f0 1002f8d8 SysFreeString +1002f5f0 FUN_1002f5f0 1002f8e5 SysFreeString +1002f5f0 FUN_1002f5f0 1002f8f1 SysFreeString +1002f5f0 FUN_1002f5f0 1002f901 SysFreeString +1002fbc0 FUN_1002fbc0 1002fdf1 SysFreeString +1002fbc0 FUN_1002fbc0 1002ff2c SysFreeString +100300d0 FUN_100300d0 10030100 memset +10032de0 FUN_10032de0 10032e07 memmove +100347c0 FUN_100347c0 10034888 memcpy +10035060 FUN_10035060 100350ed memmove +10035060 FUN_10035060 10035118 memmove +10035060 FUN_10035060 10035153 memmove +10035060 FUN_10035060 10035170 memmove +100362c0 FUN_100362c0 10036392 memcpy +100363d0 FUN_100363d0 1003648e memcpy +10038ad0 FUN_10038ad0 10038b5d memmove +10038ad0 FUN_10038ad0 10038b88 memmove +10038ad0 FUN_10038ad0 10038bc3 memmove +10038ad0 FUN_10038ad0 10038be0 memmove +1003d920 FUN_1003d920 1003d966 SysFreeString +1003d920 FUN_1003d920 1003d970 SysFreeString +1003ed90 FUN_1003ed90 1003edb3 SysFreeString +100401f0 FUN_100401f0 100402a0 SysFreeString +100401f0 FUN_100401f0 100402af SysFreeString +100401f0 FUN_100401f0 100402c7 SysFreeString +100401f0 FUN_100401f0 100402d6 SysFreeString +10040a10 FUN_10040a10 10040ae7 SysFreeString +10040b00 FUN_10040b00 10040bd7 SysFreeString +10041ba0 FUN_10041ba0 10041c89 memcpy +10043cd0 FUN_10043cd0 10043d19 SysFreeString +10043cd0 FUN_10043cd0 10043d23 SysFreeString +100447a0 FUN_100447a0 100447f5 SysFreeString +100447a0 FUN_100447a0 100447ff SysFreeString +100447a0 FUN_100447a0 10044809 SysFreeString +100447a0 FUN_100447a0 10044813 SysFreeString +100448e0 FUN_100448e0 10044903 SysFreeString +10044930 FUN_10044930 1004495e SysFreeString +100455f0 FUN_100455f0 10045a7d SysFreeString +10045aa0 FUN_10045aa0 10045e5d CoGetClassObject +10045aa0 FUN_10045aa0 10045eb0 SysFreeString +10045aa0 FUN_10045aa0 10045f53 SysFreeString +10046a50 FUN_10046a50 10046c4a SysFreeString +10047260 FUN_10047260 10047451 SysFreeString +10047260 FUN_10047260 10047473 SysFreeString +10047fe0 FUN_10047fe0 10048056 SysAllocString +10047fe0 FUN_10047fe0 100480d5 SysFreeString +10047fe0 FUN_10047fe0 1004810c SysFreeString +10048870 FUN_10048870 100488c1 SysFreeString +10049600 FUN_10049600 10049642 memmove +1004bac0 FUN_1004bac0 1004bb05 SysFreeString +1004bac0 FUN_1004bac0 1004bb0f SysFreeString +1004c220 FUN_1004c220 1004c2e2 CoCreateInstance +1004c320 FUN_1004c320 1004c692 SysFreeString +1004c320 FUN_1004c320 1004c6a0 SysFreeString +1004c320 FUN_1004c320 1004c6c1 SysFreeString +1004c320 FUN_1004c320 1004c6d2 SysFreeString +1004d0d0 FUN_1004d0d0 1004d1b5 SysFreeString +1004d0d0 FUN_1004d0d0 1004d1bb SysFreeString +1004d0d0 FUN_1004d0d0 1004d1c1 SysFreeString +1004d5c0 FUN_1004d5c0 1004d5f8 memset +1004d6f0 FUN_1004d6f0 1004d78b SysAllocStringByteLen +1004e990 FUN_1004e990 1004eea8 CoGetClassObject +1004e990 FUN_1004e990 1004eef8 SysFreeString +1004e990 FUN_1004e990 1004ef9a SysFreeString +1004e990 FUN_1004e990 1004f565 SysFreeString +10050690 FUN_10050690 10050dc0 SysFreeString +10051ed0 FUN_10051ed0 10051f63 CoCreateInstance +100521a0 FUN_100521a0 10052237 SysAllocStringByteLen +10053960 FUN_10053960 100539a0 SysFreeString +10053a10 FUN_10053a10 10053a55 SysFreeString +10053a10 FUN_10053a10 10053a5f SysFreeString +10054120 FUN_10054120 100543d3 SysFreeString +10054120 FUN_10054120 100543dd SysFreeString +10054120 FUN_10054120 1005440b SysAllocStringLen +10054120 FUN_10054120 10054427 SysAllocString +10058190 FUN_10058190 100581d5 SysFreeString +10058190 FUN_10058190 100581df SysFreeString +1005a180 FUN_1005a180 1005a1e7 SysFreeString +1005b570 FUN_1005b570 1005b71f SysFreeString +1005b570 FUN_1005b570 1005b78b SysFreeString +1005b570 FUN_1005b570 1005bc29 SysFreeString +1005b570 FUN_1005b570 1005bc71 SysFreeString +1005bde0 FUN_1005bde0 1005bee1 SysFreeString +1005c250 FUN_1005c250 1005c280 SysAllocString +1005c2c0 FUN_1005c2c0 1005c2d1 SysFreeString +1005c2c0 FUN_1005c2c0 1005c2dc SysAllocString +1005c310 FUN_1005c310 1005c343 SysAllocStringLen +1005c310 FUN_1005c310 1005c378 memcpy_s +1005c310 FUN_1005c310 1005c3a0 SysFreeString +1005d510 FUN_1005d510 1005d778 SysFreeString +1005d510 FUN_1005d510 1005d782 SysFreeString +1005e070 FUN_1005e070 1005e0df SysFreeString +1005e070 FUN_1005e070 1005e0e9 SysFreeString +1005f130 FUN_1005f130 1005f1ec SysAllocString +1005f4f0 FUN_1005f4f0 1005f54f CoCreateInstance +1005f590 FUN_1005f590 1005f59b SysFreeString +1005f610 FUN_1005f610 1005f61b SysFreeString +1005f660 FUN_1005f660 1005f66b SysFreeString +1005f6b0 FUN_1005f6b0 1005f6bb SysFreeString +1005ff70 FUN_1005ff70 1006005a SysFreeString +1005ff70 FUN_1005ff70 10060072 SysFreeString +1005ff70 FUN_1005ff70 10060079 SysAllocString +1005ff70 FUN_1005ff70 100600a7 SysFreeString +1005ff70 FUN_1005ff70 100600ad SysFreeString +1005ff70 FUN_1005ff70 100600b9 SysFreeString +1005ff70 FUN_1005ff70 100600c0 SysAllocString +100600f0 FUN_100600f0 1006012d SysFreeString +100600f0 FUN_100600f0 100601f8 SysFreeString +100600f0 FUN_100600f0 100601ff SysAllocString +100600f0 FUN_100600f0 1006021f SysFreeString +100600f0 FUN_100600f0 10060225 SysFreeString +10060240 FUN_10060240 10060285 memmove +10060690 FUN_10060690 10060711 SysFreeString +10060a20 FUN_10060a20 10060a3c SysFreeString +10060a20 FUN_10060a20 10060a7c SysFreeString +10060a20 FUN_10060a20 10060ac9 SysFreeString +10060a20 FUN_10060a20 10060b00 SysFreeString +10060d50 FUN_10060d50 10060d9f CoCreateInstance +10061af0 FUN_10061af0 10061b6c memmove +10061ef0 FUN_10061ef0 100620d3 SysAllocString +10061ef0 FUN_10061ef0 1006214a SysFreeString +10063ff0 FUN_10063ff0 10064001 AtlInternalQueryInterface +10064010 FUN_10064010 10064024 AtlInternalQueryInterface +10064770 FUN_10064770 100647c7 SysAllocStringByteLen +10064a00 FUN_10064a00 10064b19 SysFreeString +10064a00 FUN_10064a00 10064b5b SysFreeString +10064a00 FUN_10064a00 10064b9d SysFreeString +10064a00 FUN_10064a00 10064bdf SysFreeString +10064e80 FUN_10064e80 10064ea2 SysFreeString +10064e80 FUN_10064e80 10064ebb SysAllocStringByteLen +10065160 FUN_10065160 10065334 SysFreeString +10065ad0 FUN_10065ad0 10065b8d CoCreateInstance +10065ad0 FUN_10065ad0 10065c8d SysFreeString +10065cc0 FUN_10065cc0 10065f44 SysFreeString +10065f70 FUN_10065f70 100660be memset +10065f70 FUN_10065f70 10066105 SysAllocString +10065f70 FUN_10065f70 1006612a SysAllocStringByteLen +10065f70 FUN_10065f70 100661ba SysFreeString +10065f70 FUN_10065f70 10066314 SysFreeString +10065f70 FUN_10065f70 10066395 SysFreeString +10065f70 FUN_10065f70 10066436 SysFreeString +10065f70 FUN_10065f70 100664b3 SysFreeString +10065f70 FUN_10065f70 100664fe SysAllocString +10065f70 FUN_10065f70 1006656a SysFreeString +10065f70 FUN_10065f70 1006658a SysFreeString +10065f70 FUN_10065f70 10066616 SysFreeString +10065f70 FUN_10065f70 10066623 SysFreeString +10065f70 FUN_10065f70 1006662e SysFreeString +10066fc0 FUN_10066fc0 10066fef SysFreeString +10066fc0 FUN_10066fc0 10067006 SysAllocStringByteLen +10067aa0 FUN_10067aa0 10067d02 SysFreeString +100683e0 FUN_100683e0 1006844b SysFreeString +10068510 FUN_10068510 10068773 SysFreeString +10069720 FUN_10069720 10069817 CoCreateInstance +10069720 FUN_10069720 100698ac SysFreeString +10069720 FUN_10069720 100698b6 SysFreeString +10069720 FUN_10069720 100698c0 SysFreeString +10069720 FUN_10069720 100698ca SysFreeString +10069950 FUN_10069950 10069ba9 SysFreeString +10069950 FUN_10069950 10069bb6 SysFreeString +10069c30 FUN_10069c30 1006a5c4 SysFreeString +10069c30 FUN_10069c30 1006a689 SysFreeString +10069c30 FUN_10069c30 1006a696 SysFreeString +10069c30 FUN_10069c30 1006b00b SysFreeString +1006b760 FUN_1006b760 1006b7f3 SysAllocString +1006b8bd FUN_1006b8bd 1006b8d7 SysFreeString +1006b8bd FUN_1006b8bd 1006b8e4 SysFreeString +1006c380 FUN_1006c380 1006c3fb SysFreeString +1006cbc0 FUN_1006cbc0 1006cd2e CoCreateInstance +1006cbc0 FUN_1006cbc0 1006cd65 CoCreateInstance +1006eab0 FUN_1006eab0 1006ecd3 SysFreeString +1006f440 FUN_1006f440 1006f4a2 SysAllocString +1006f630 FUN_1006f630 1006f73c SysAllocString +1006f900 FUN_1006f900 1006fa0c SysAllocString +1006fbd0 FUN_1006fbd0 1006fcf0 SysAllocString +1006fec0 FUN_1006fec0 1006ff5d SysAllocString +10070110 FUN_10070110 100701aa SysAllocString +10070360 FUN_10070360 1007071e SysFreeString +10070360 FUN_10070360 1007072b SysFreeString +10070360 FUN_10070360 10070844 SysFreeString +10070360 FUN_10070360 10070851 SysFreeString +10070360 FUN_10070360 100709dc SysFreeString +10070360 FUN_10070360 100709e9 SysFreeString +10070360 FUN_10070360 10070f1c SysFreeString +10070360 FUN_10070360 10070fdf SysFreeString +10070360 FUN_10070360 100710d1 SysFreeString +100719d0 FUN_100719d0 10071a1d SysAllocString +10072df0 FUN_10072df0 10072e6c SysFreeString +10072df0 FUN_10072df0 10072ec1 SysFreeString +10073b80 FUN_10073b80 1007409d SysFreeString +10073b80 FUN_10073b80 100741ec SysFreeString +10073b80 FUN_10073b80 1007453c SysFreeString +10073b80 FUN_10073b80 10074634 SysFreeString +10075010 FUN_10075010 1007515c CoCreateInstance +100757b0 FUN_100757b0 10075ad1 SysFreeString +10075d80 FUN_10075d80 100761b6 CoCreateInstance +10075d80 FUN_10075d80 10076240 SysFreeString +10075d80 FUN_10075d80 1007624a SysFreeString +10075d80 FUN_10075d80 10076254 SysFreeString +10075d80 FUN_10075d80 1007625e SysFreeString +10076fc0 FUN_10076fc0 10076fd1 AtlInternalQueryInterface +10076fe0 FUN_10076fe0 10076ff4 AtlInternalQueryInterface +1007aab0 FUN_1007aab0 1007acca SysFreeString +1007aab0 FUN_1007aab0 1007af95 SysFreeString +1007aab0 FUN_1007aab0 1007b153 SysFreeString +1007b1a0 FUN_1007b1a0 1007b39c SysFreeString +1007b620 FUN_1007b620 1007b7ef SysFreeString +1007bae0 FUN_1007bae0 1007bcc4 SysFreeString +1007d460 FUN_1007d460 1007d534 CoCreateInstance +1007d460 FUN_1007d460 1007d556 SysFreeString +1007d460 FUN_1007d460 1007d570 SysFreeString +1007d460 FUN_1007d460 1007d576 SysAllocString +1007d460 FUN_1007d460 1007d647 SysFreeString +1007d460 FUN_1007d460 1007d652 SysFreeString +1007d460 FUN_1007d460 1007d658 SysAllocString +1007d460 FUN_1007d460 1007d728 SysFreeString +1007d460 FUN_1007d460 1007d732 SysFreeString +1007dcc0 FUN_1007dcc0 1007ddc6 SysFreeString +1007dcc0 FUN_1007dcc0 1007ddd0 SysFreeString +1007dcc0 FUN_1007dcc0 1007ddda SysFreeString +1007dcc0 FUN_1007dcc0 1007de7b SysFreeString +1007e000 FUN_1007e000 1007e21a SysFreeString +10080e90 FUN_10080e90 10080f53 CoCreateInstance +10082170 FUN_10082170 100821b7 SysFreeString +100839f0 FUN_100839f0 100844aa SysFreeString +100839f0 FUN_100839f0 1008454e SysFreeString +100839f0 FUN_100839f0 10084659 SysFreeString +10084b90 FUN_10084b90 100857c1 SysFreeString +10084b90 FUN_10084b90 100857d2 SysFreeString +10084b90 FUN_10084b90 10085911 CoCreateInstance +10084b90 FUN_10084b90 100859a7 CoCreateInstance +10084b90 FUN_10084b90 10085a10 CoCreateInstance +100860c0 FUN_100860c0 10086207 SysFreeString +10086390 FUN_10086390 100867f9 SysFreeString +10086390 FUN_10086390 10086806 SysFreeString +10086830 FUN_10086830 10086862 CoGetClassObject +100868c0 FUN_100868c0 100868f2 CoGetClassObject +10086950 FUN_10086950 10086982 CoGetClassObject +100869e0 FUN_100869e0 10086a12 CoGetClassObject +10086a70 FUN_10086a70 10086aa2 CoGetClassObject +10086b10 FUN_10086b10 10086b42 CoGetClassObject +10086bb0 FUN_10086bb0 10086be2 CoGetClassObject +10086c50 FUN_10086c50 10086c82 CoGetClassObject +10086cf0 FUN_10086cf0 10086fb4 memset +10086cf0 FUN_10086cf0 10087082 memcpy +10086cf0 FUN_10086cf0 100871cd SysFreeString +10086cf0 FUN_10086cf0 10087234 SysFreeString +10086cf0 FUN_10086cf0 10087298 SysFreeString +10086cf0 FUN_10086cf0 10087307 SysFreeString +10086cf0 FUN_10086cf0 10087374 SysFreeString +10086cf0 FUN_10086cf0 100873da SysFreeString +10086cf0 FUN_10086cf0 10087458 SysFreeString +10086cf0 FUN_10086cf0 100874fd SysFreeString +10086cf0 FUN_10086cf0 10087586 SysFreeString +10086cf0 FUN_10086cf0 100875fc SysFreeString +10086cf0 FUN_10086cf0 10087668 SysFreeString +10086cf0 FUN_10086cf0 100876d8 SysFreeString +10086cf0 FUN_10086cf0 10087748 SysFreeString +10086cf0 FUN_10086cf0 100877f0 SysFreeString +10086cf0 FUN_10086cf0 100878c2 memset +10086cf0 FUN_10086cf0 10087a23 SysFreeString +10086cf0 FUN_10086cf0 10087a89 SysFreeString +10086cf0 FUN_10086cf0 10087af4 SysFreeString +10086cf0 FUN_10086cf0 10087bc6 memcpy +10087e10 FUN_10087e10 10087e25 CoCreateInstance +10088030 FUN_10088030 10088061 SysFreeString +100881d0 FUN_100881d0 10088204 SysFreeString +10088230 FUN_10088230 100882aa SysFreeString +10088230 FUN_10088230 100882b5 SysAllocString +100882f0 FUN_100882f0 1008838b memcpy +100884c0 FUN_100884c0 10088505 SysAllocStringByteLen +10088590 FUN_10088590 100885a8 SysFreeString +10088590 FUN_10088590 100885c1 SysAllocStringByteLen +10088640 FUN_10088640 10088670 SysFreeString +100887d0 FUN_100887d0 100887f5 SysFreeString +100887d0 FUN_100887d0 1008880c SysAllocStringByteLen +100888a0 FUN_100888a0 100888d0 SysFreeString +10088da0 FUN_10088da0 10088dd0 SysFreeString +10088f10 FUN_10088f10 10088f50 SysFreeString +10089020 FUN_10089020 10089184 CoCreateInstance +10089020 FUN_10089020 1008924d CoCreateInstance +10089300 FUN_10089300 1008934b SysFreeString +100893a0 FUN_100893a0 100893eb SysFreeString +10089870 FUN_10089870 100898dc SysFreeString +10089870 FUN_10089870 100898e7 SysAllocString +10089870 FUN_10089870 10089969 SysFreeString +10089cb0 FUN_10089cb0 10089f58 memmove +1008a190 FUN_1008a190 1008a4f6 SysFreeString +1008a190 FUN_1008a190 1008a622 SysFreeString +1008a7a0 FUN_1008a7a0 1008a91d SysFreeString +1008a7a0 FUN_1008a7a0 1008a9f1 SysFreeString +1008ad90 FUN_1008ad90 1008add8 memset +1008b620 FUN_1008b620 1008b65b SysFreeString +1008b620 FUN_1008b620 1008b665 SysFreeString +1008b620 FUN_1008b620 1008b66f SysFreeString +1008b620 FUN_1008b620 1008b679 SysFreeString +1008b870 FUN_1008b870 1008b8d2 SysAllocStringByteLen +1008b870 FUN_1008b870 1008b901 SysAllocStringByteLen +1008b870 FUN_1008b870 1008b930 SysAllocStringByteLen +1008b870 FUN_1008b870 1008b95f SysAllocStringByteLen +1008b9a0 FUN_1008b9a0 1008b9db SysFreeString +1008b9a0 FUN_1008b9a0 1008b9e5 SysFreeString +1008b9a0 FUN_1008b9a0 1008b9ef SysFreeString +1008b9a0 FUN_1008b9a0 1008b9f9 SysFreeString +1008c3d0 FUN_1008c3d0 1008c63e SysFreeString +1008c670 FUN_1008c670 1008c827 SysFreeString +1008c850 FUN_1008c850 1008ca07 SysFreeString +1008d2a0 FUN_1008d2a0 1008d6d9 SysFreeString +1008d2a0 FUN_1008d2a0 1008d6e3 SysFreeString +1008d2a0 FUN_1008d2a0 1008d6ed SysFreeString +1008d2a0 FUN_1008d2a0 1008d6f7 SysFreeString +1008d760 FUN_1008d760 1008dad8 SysFreeString +1008d760 FUN_1008d760 1008dd7f SysFreeString +1008ddd0 FUN_1008ddd0 1008df7e SysFreeString +1008dfc0 FUN_1008dfc0 1008e197 SysFreeString +1008ebf0 FUN_1008ebf0 1008ed45 SysFreeString +1008edb0 FUN_1008edb0 1008efaa CoGetClassObject +1008edb0 FUN_1008edb0 1008f02d SysFreeString +1008fb20 FUN_1008fb20 1008fb39 SysAllocStringByteLen +1008fbb0 FUN_1008fbb0 1008fbc1 SysFreeString +1008fd50 FUN_1008fd50 1008fecb SysFreeString +1008fd50 FUN_1008fd50 1008fef4 SysFreeString +1008fd50 FUN_1008fd50 1008fefb SysAllocString +1008fd50 FUN_1008fd50 1009031d SysFreeString +1008fd50 FUN_1008fd50 10090380 SysFreeString +1008fd50 FUN_1008fd50 10090387 SysFreeString +1008fd50 FUN_1008fd50 1009038e SysFreeString +1008fd50 FUN_1008fd50 10090395 SysFreeString +1008fd50 FUN_1008fd50 100903da SysFreeString +1008fd50 FUN_1008fd50 100903e7 SysFreeString +1008fd50 FUN_1008fd50 10090516 SysFreeString +1008fd50 FUN_1008fd50 1009066f CoGetClassObject +1008fd50 FUN_1008fd50 100906ef SysFreeString +1008fd50 FUN_1008fd50 10090752 SysFreeString +1008fd50 FUN_1008fd50 10090771 SysFreeString +1008fd50 FUN_1008fd50 10090790 SysFreeString +1008fd50 FUN_1008fd50 100907b3 SysFreeString +1008fd50 FUN_1008fd50 100907c0 SysFreeString +1008fd50 FUN_1008fd50 10090942 SysFreeString +1008fd50 FUN_1008fd50 10090a9b CoGetClassObject +1008fd50 FUN_1008fd50 10090b1b SysFreeString +1008fd50 FUN_1008fd50 10090b7e SysFreeString +1008fd50 FUN_1008fd50 10090b9d SysFreeString +1008fd50 FUN_1008fd50 10090bbc SysFreeString +1008fd50 FUN_1008fd50 10090bdf SysFreeString +1008fd50 FUN_1008fd50 10090bec SysFreeString +1008fd50 FUN_1008fd50 10090f9b SysFreeString +1008fd50 FUN_1008fd50 10090fff SysFreeString +1008fd50 FUN_1008fd50 100910af SysFreeString +1008fd50 FUN_1008fd50 100910d2 SysFreeString +1008fd50 FUN_1008fd50 10091141 SysFreeString +1008fd50 FUN_1008fd50 100911a5 SysFreeString +1008fd50 FUN_1008fd50 10091255 SysFreeString +1008fd50 FUN_1008fd50 10091278 SysFreeString +1008fd50 FUN_1008fd50 100912e1 CoGetClassObject +1008fd50 FUN_1008fd50 10091374 SysFreeString +1008fd50 FUN_1008fd50 100913d5 SysFreeString +1008fd50 FUN_1008fd50 100913f4 SysFreeString +1008fd50 FUN_1008fd50 10091413 SysFreeString +1008fd50 FUN_1008fd50 1009143f SysFreeString +1008fd50 FUN_1008fd50 10091462 SysFreeString +1008fd50 FUN_1008fd50 10091485 SysFreeString +1008fd50 FUN_1008fd50 10091ba8 SysFreeString +1008fd50 FUN_1008fd50 10091baf SysFreeString +1008fd50 FUN_1008fd50 10091bb6 SysFreeString +1008fd50 FUN_1008fd50 10091bbd SysFreeString +1008fd50 FUN_1008fd50 10091c88 SysFreeString +1008fd50 FUN_1008fd50 10091cff SysFreeString +1008fd50 FUN_1008fd50 10091d0c SysFreeString +10091ed0 FUN_10091ed0 10092308 SysFreeString +100923e0 FUN_100923e0 100924e1 SysFreeString +10092510 FUN_10092510 10092613 SysFreeString +100928d0 FUN_100928d0 10092940 SysAllocString +100928d0 FUN_100928d0 10092c00 SysFreeString +100928d0 FUN_100928d0 10092d69 SysFreeString +100928d0 FUN_100928d0 10092d76 SysFreeString +100928d0 FUN_100928d0 10092daf SysFreeString +100928d0 FUN_100928d0 10092dbc SysFreeString +100928d0 FUN_100928d0 10092e64 SysFreeString +100928d0 FUN_100928d0 10092e6b SysFreeString +100928d0 FUN_100928d0 10092e72 SysFreeString +10092f10 FUN_10092f10 10092f80 SysAllocString +10092f10 FUN_10092f10 10093201 SysFreeString +10092f10 FUN_10092f10 1009329c SysFreeString +10092f10 FUN_10092f10 10093365 SysFreeString +10092f10 FUN_10092f10 10093374 SysFreeString +10092f10 FUN_10092f10 10093426 SysFreeString +10092f10 FUN_10092f10 10093433 SysFreeString +10092f10 FUN_10092f10 1009343a SysFreeString +100934d0 FUN_100934d0 100934f2 SysFreeString +100934d0 FUN_100934d0 1009357a SysAllocStringByteLen +100934d0 FUN_100934d0 100935d9 SysFreeString +10093800 FUN_10093800 10093850 SysFreeString +10093800 FUN_10093800 1009386c SysAllocString +10093aa0 FUN_10093aa0 10093ae4 memcpy_s +10093b50 FUN_10093b50 10093c4c SysFreeString +10093b50 FUN_10093b50 10093dcb SysAllocString +10093f00 FUN_10093f00 100943c0 SysFreeString +10093f00 FUN_10093f00 100943d5 SysFreeString +10094400 FUN_10094400 10094686 SysFreeString +10094400 FUN_10094400 100946a5 SysFreeString +10094400 FUN_10094400 100946c4 SysFreeString +10094400 FUN_10094400 100946e3 SysFreeString +10094400 FUN_10094400 100946fc SysFreeString +10094400 FUN_10094400 1009472a SysFreeString +100953f0 FUN_100953f0 100956e4 SysFreeString +100953f0 FUN_100953f0 100956f5 SysFreeString +100953f0 FUN_100953f0 10095871 SysFreeString +10096620 FUN_10096620 10096bdc SysFreeString +10096620 FUN_10096620 10096bec SysFreeString +10096620 FUN_10096620 10096c00 SysFreeString +10096f60 FUN_10096f60 10096fa0 SysFreeString +10096f60 FUN_10096f60 10096fdc SysFreeString +10096ff0 FUN_10096ff0 10097059 SysFreeString +10096ff0 FUN_10096ff0 100970e3 SysFreeString +100974d0 FUN_100974d0 100974f6 CoGetClassObject +10098610 FUN_10098610 10098621 AtlInternalQueryInterface +10098830 FUN_10098830 10098844 AtlInternalQueryInterface +100989d0 FUN_100989d0 10098a2c AtlInternalQueryInterface +10099090 FUN_10099090 100990bf CoCreateInstance +10099270 FUN_10099270 10099381 SysFreeString +100993a0 FUN_100993a0 100994a9 SysFreeString +100993a0 FUN_100993a0 100994ce SysFreeString +100993a0 FUN_100993a0 1009951f SysFreeString +100993a0 FUN_100993a0 10099548 SysFreeString +100997c0 FUN_100997c0 10099849 SysFreeString +100997c0 FUN_100997c0 10099881 CoGetClassObject +100997c0 FUN_100997c0 10099903 SysFreeString +10099e80 FUN_10099e80 10099e91 AtlInternalQueryInterface +10099ec0 FUN_10099ec0 10099ed4 AtlInternalQueryInterface +1009a010 FUN_1009a010 1009a021 AtlInternalQueryInterface +1009a030 FUN_1009a030 1009a044 AtlInternalQueryInterface +1009a990 FUN_1009a990 1009a9a1 AtlInternalQueryInterface +1009aa30 FUN_1009aa30 1009aa44 AtlInternalQueryInterface +1009af00 FUN_1009af00 1009af5c AtlInternalQueryInterface +1009b060 FUN_1009b060 1009b0bc AtlInternalQueryInterface +1009b760 FUN_1009b760 1009b778 memcpy +1009b760 FUN_1009b760 1009b7c3 memcpy +1009ba40 FUN_1009ba40 1009ba54 AtlInternalQueryInterface +1009bdd0 FUN_1009bdd0 1009bf76 memset +1009d620 FUN_1009d620 1009d6b0 SysFreeString +1009e1b0 FUN_1009e1b0 1009e24a SysFreeString +1009e790 FUN_1009e790 1009e829 SysFreeString +1009e790 FUN_1009e790 1009e833 SysFreeString +1009e790 FUN_1009e790 1009e83d SysFreeString +1009e790 FUN_1009e790 1009e847 SysFreeString +1009ea80 FUN_1009ea80 1009ecd0 SysFreeString +1009f8a0 FUN_1009f8a0 1009f935 SysFreeString +100a0140 FUN_100a0140 100a0178 memset +100a0c70 FUN_100a0c70 100a0cd8 memcpy_s +100a0cf0 FUN_100a0cf0 100a0d50 memcpy_s +100a2e10 FUN_100a2e10 100a2e2d memmove +100a2e40 FUN_100a2e40 100a2e5d memmove +100a35f0 FUN_100a35f0 100a3659 SysFreeString +100a3680 FUN_100a3680 100a36e9 SysFreeString +100a3710 FUN_100a3710 100a3767 SysFreeString +100a3850 FUN_100a3850 100a38b9 SysFreeString +100a38e0 FUN_100a38e0 100a3949 SysFreeString +100a3970 FUN_100a3970 100a39c7 SysFreeString +100a3aa0 FUN_100a3aa0 100a3b09 SysFreeString +100a3b30 FUN_100a3b30 100a3b99 SysFreeString +100a3bc0 FUN_100a3bc0 100a3c17 SysFreeString +100a3cf0 FUN_100a3cf0 100a3d59 SysFreeString +100a3d80 FUN_100a3d80 100a3de9 SysFreeString +100a3e10 FUN_100a3e10 100a3e67 SysFreeString +100a3f20 FUN_100a3f20 100a3f89 SysFreeString +100a3fb0 FUN_100a3fb0 100a4019 SysFreeString +100a4040 FUN_100a4040 100a4097 SysFreeString +100a4150 FUN_100a4150 100a41b9 SysFreeString +100a41e0 FUN_100a41e0 100a4249 SysFreeString +100a4270 FUN_100a4270 100a42c7 SysFreeString +100a4380 FUN_100a4380 100a43e9 SysFreeString +100a4410 FUN_100a4410 100a4479 SysFreeString +100a44a0 FUN_100a44a0 100a44f7 SysFreeString +100a45d0 FUN_100a45d0 100a4639 SysFreeString +100a4660 FUN_100a4660 100a46c9 SysFreeString +100a46f0 FUN_100a46f0 100a4747 SysFreeString +100a4820 FUN_100a4820 100a4889 SysFreeString +100a48b0 FUN_100a48b0 100a4919 SysFreeString +100a4940 FUN_100a4940 100a4997 SysFreeString +100a4a70 FUN_100a4a70 100a4ad9 SysFreeString +100a4b00 FUN_100a4b00 100a4b69 SysFreeString +100a4b90 FUN_100a4b90 100a4be7 SysFreeString +100a4cc0 FUN_100a4cc0 100a4d29 SysFreeString +100a4d50 FUN_100a4d50 100a4db9 SysFreeString +100a4de0 FUN_100a4de0 100a4e37 SysFreeString +100a4ef0 FUN_100a4ef0 100a4f59 SysFreeString +100a4f80 FUN_100a4f80 100a4fe9 SysFreeString +100a5010 FUN_100a5010 100a5067 SysFreeString +100a5120 FUN_100a5120 100a5189 SysFreeString +100a51b0 FUN_100a51b0 100a5219 SysFreeString +100a5240 FUN_100a5240 100a5297 SysFreeString +100a5350 FUN_100a5350 100a53b9 SysFreeString +100a53e0 FUN_100a53e0 100a5449 SysFreeString +100a5470 FUN_100a5470 100a54c7 SysFreeString +100a55f0 FUN_100a55f0 100a5659 SysFreeString +100a5680 FUN_100a5680 100a56e9 SysFreeString +100a5710 FUN_100a5710 100a5767 SysFreeString +100a5840 FUN_100a5840 100a58a9 SysFreeString +100a58d0 FUN_100a58d0 100a5939 SysFreeString +100a5960 FUN_100a5960 100a59b7 SysFreeString +100a5aa0 FUN_100a5aa0 100a5b09 SysFreeString +100a5b30 FUN_100a5b30 100a5b99 SysFreeString +100a5bc0 FUN_100a5bc0 100a5c17 SysFreeString +100a5d30 FUN_100a5d30 100a5d4c memmove +100a5d60 FUN_100a5d60 100a5d7c memmove +100a6130 FUN_100a6130 100a618f SysFreeString +100a6300 FUN_100a6300 100a6346 SysFreeString +100a6300 FUN_100a6300 100a6350 SysFreeString +100a6c20 FUN_100a6c20 100a6c3d memmove +100a6c50 FUN_100a6c50 100a6c6d memmove +100a6e70 FUN_100a6e70 100a6e8c memmove +100a6ea0 FUN_100a6ea0 100a6ebc memmove +100a6f50 FUN_100a6f50 100a6fc0 SysFreeString +100a7090 FUN_100a7090 100a7112 SysFreeString +100a7130 FUN_100a7130 100a71b2 SysFreeString +100a71d0 FUN_100a71d0 100a7243 SysFreeString +100a7260 FUN_100a7260 100a72dd SysFreeString +100a7300 FUN_100a7300 100a7373 SysFreeString +100a7390 FUN_100a7390 100a73fe SysFreeString +100a7420 FUN_100a7420 100a748e SysFreeString +100a7950 FUN_100a7950 100a79d5 SysFreeString +100a79f0 FUN_100a79f0 100a7a7f SysFreeString +100a7aa0 FUN_100a7aa0 100a7b25 SysFreeString +100a7b40 FUN_100a7b40 100a7bc0 SysFreeString +100a7be0 FUN_100a7be0 100a7c60 SysFreeString +100a7c80 FUN_100a7c80 100a7d05 SysFreeString +100a7d20 FUN_100a7d20 100a7daf SysFreeString +100a7dd0 FUN_100a7dd0 100a7e55 SysFreeString +100a7e70 FUN_100a7e70 100a7ef0 SysFreeString +100a7f10 FUN_100a7f10 100a7f90 SysFreeString +100a7fb0 FUN_100a7fb0 100a8023 SysFreeString +100a8040 FUN_100a8040 100a80e3 SysFreeString +100a8110 FUN_100a8110 100a8187 SysFreeString +100a81a0 FUN_100a81a0 100a8218 SysFreeString +100a8830 FUN_100a8830 100a88b5 SysFreeString +100a88d0 FUN_100a88d0 100a8988 SysFreeString +100a89b0 FUN_100a89b0 100a8a39 SysFreeString +100a8a60 FUN_100a8a60 100a8af2 SysFreeString +100a8b10 FUN_100a8b10 100a8b9a SysFreeString +100a8bc0 FUN_100a8bc0 100a8c45 SysFreeString +100a8c60 FUN_100a8c60 100a8d18 SysFreeString +100a8d40 FUN_100a8d40 100a8dc9 SysFreeString +100a8df0 FUN_100a8df0 100a8e82 SysFreeString +100a8ea0 FUN_100a8ea0 100a8f2a SysFreeString +100a94e0 FUN_100a94e0 100a954f SysFreeString +100a94e0 FUN_100a94e0 100a9559 SysFreeString +100a95d0 FUN_100a95d0 100a965a SysAllocStringByteLen +100a95d0 FUN_100a95d0 100a9737 SysFreeString +100a9770 FUN_100a9770 100a97b6 SysFreeString +100a9770 FUN_100a9770 100a97c0 SysFreeString +100a9ad0 FUN_100a9ad0 100a9aec memmove +100a9b00 FUN_100a9b00 100a9b1c memmove +100aa040 FUN_100aa040 100aa0b5 SysFreeString +100aa180 FUN_100aa180 100aa1f8 SysFreeString +100aa220 FUN_100aa220 100aa296 SysFreeString +100aa2b0 FUN_100aa2b0 100aa32c SysFreeString +100aa350 FUN_100aa350 100aa3c5 SysFreeString +100aa490 FUN_100aa490 100aa508 SysFreeString +100aa530 FUN_100aa530 100aa5a6 SysFreeString +100aa5c0 FUN_100aa5c0 100aa63c SysFreeString +100abcd0 FUN_100abcd0 100abd45 SysFreeString +100abe10 FUN_100abe10 100abe88 SysFreeString +100abeb0 FUN_100abeb0 100abf26 SysFreeString +100abf40 FUN_100abf40 100abfbc SysFreeString +100abfe0 FUN_100abfe0 100ac055 SysFreeString +100ac120 FUN_100ac120 100ac198 SysFreeString +100ac1c0 FUN_100ac1c0 100ac236 SysFreeString +100ac250 FUN_100ac250 100ac2cc SysFreeString +100ac330 FUN_100ac330 100ac3a5 SysFreeString +100ac470 FUN_100ac470 100ac4e8 SysFreeString +100ac510 FUN_100ac510 100ac586 SysFreeString +100ac5a0 FUN_100ac5a0 100ac61c SysFreeString +100ac640 FUN_100ac640 100ac6b5 SysFreeString +100ac780 FUN_100ac780 100ac7f8 SysFreeString +100ac820 FUN_100ac820 100ac896 SysFreeString +100ac8b0 FUN_100ac8b0 100ac92c SysFreeString +100ac950 FUN_100ac950 100ac9c5 SysFreeString +100aca90 FUN_100aca90 100acb08 SysFreeString +100acb30 FUN_100acb30 100acba6 SysFreeString +100acbc0 FUN_100acbc0 100acc3c SysFreeString +100acc60 FUN_100acc60 100accd5 SysFreeString +100acda0 FUN_100acda0 100ace18 SysFreeString +100ace40 FUN_100ace40 100aceb6 SysFreeString +100aced0 FUN_100aced0 100acf4c SysFreeString +100acf70 FUN_100acf70 100acfe5 SysFreeString +100ad0b0 FUN_100ad0b0 100ad128 SysFreeString +100ad150 FUN_100ad150 100ad1c6 SysFreeString +100ad1e0 FUN_100ad1e0 100ad25c SysFreeString +100ad280 FUN_100ad280 100ad2f5 SysFreeString +100ad3c0 FUN_100ad3c0 100ad438 SysFreeString +100ad460 FUN_100ad460 100ad4d6 SysFreeString +100ad4f0 FUN_100ad4f0 100ad56c SysFreeString +100ad590 FUN_100ad590 100ad605 SysFreeString +100ad6d0 FUN_100ad6d0 100ad748 SysFreeString +100ad770 FUN_100ad770 100ad7e6 SysFreeString +100ad800 FUN_100ad800 100ad87c SysFreeString +100ad8a0 FUN_100ad8a0 100ad915 SysFreeString +100ad9e0 FUN_100ad9e0 100ada58 SysFreeString +100ada80 FUN_100ada80 100adaf6 SysFreeString +100adb10 FUN_100adb10 100adb8c SysFreeString +100adbb0 FUN_100adbb0 100adc25 SysFreeString +100adcf0 FUN_100adcf0 100add68 SysFreeString +100add90 FUN_100add90 100ade06 SysFreeString +100ade20 FUN_100ade20 100ade9c SysFreeString +100adec0 FUN_100adec0 100adf35 SysFreeString +100ae000 FUN_100ae000 100ae078 SysFreeString +100ae0a0 FUN_100ae0a0 100ae116 SysFreeString +100ae130 FUN_100ae130 100ae1ac SysFreeString +100ae1d0 FUN_100ae1d0 100ae245 SysFreeString +100ae310 FUN_100ae310 100ae388 SysFreeString +100ae3b0 FUN_100ae3b0 100ae426 SysFreeString +100ae440 FUN_100ae440 100ae4bc SysFreeString +100ae4e0 FUN_100ae4e0 100ae555 SysFreeString +100ae620 FUN_100ae620 100ae698 SysFreeString +100ae6c0 FUN_100ae6c0 100ae736 SysFreeString +100ae750 FUN_100ae750 100ae7cc SysFreeString +100ae7f0 FUN_100ae7f0 100ae865 SysFreeString +100ae930 FUN_100ae930 100ae9a8 SysFreeString +100ae9d0 FUN_100ae9d0 100aea46 SysFreeString +100aea60 FUN_100aea60 100aeadc SysFreeString +100aeb00 FUN_100aeb00 100aeb75 SysFreeString +100aec40 FUN_100aec40 100aecb8 SysFreeString +100aece0 FUN_100aece0 100aed56 SysFreeString +100aed70 FUN_100aed70 100aedec SysFreeString +100aee10 FUN_100aee10 100aee85 SysFreeString +100aef50 FUN_100aef50 100aefc8 SysFreeString +100aeff0 FUN_100aeff0 100af066 SysFreeString +100af080 FUN_100af080 100af0fc SysFreeString +100af120 FUN_100af120 100af195 SysFreeString +100af260 FUN_100af260 100af2d8 SysFreeString +100af300 FUN_100af300 100af376 SysFreeString +100af390 FUN_100af390 100af40c SysFreeString +100af430 FUN_100af430 100af4a5 SysFreeString +100af570 FUN_100af570 100af5e8 SysFreeString +100af610 FUN_100af610 100af686 SysFreeString +100af6a0 FUN_100af6a0 100af71c SysFreeString +100af740 FUN_100af740 100af7b5 SysFreeString +100af880 FUN_100af880 100af8f8 SysFreeString +100af920 FUN_100af920 100af996 SysFreeString +100af9b0 FUN_100af9b0 100afa2c SysFreeString +100afa50 FUN_100afa50 100afac5 SysFreeString +100afb90 FUN_100afb90 100afc08 SysFreeString +100afc30 FUN_100afc30 100afca6 SysFreeString +100afcc0 FUN_100afcc0 100afd3c SysFreeString +100afd60 FUN_100afd60 100afdd5 SysFreeString +100afea0 FUN_100afea0 100aff18 SysFreeString +100aff40 FUN_100aff40 100affb6 SysFreeString +100affd0 FUN_100affd0 100b004c SysFreeString +100b0070 FUN_100b0070 100b00e5 SysFreeString +100b01b0 FUN_100b01b0 100b0228 SysFreeString +100b0250 FUN_100b0250 100b02c6 SysFreeString +100b02e0 FUN_100b02e0 100b035c SysFreeString +100b0380 FUN_100b0380 100b03f5 SysFreeString +100b04c0 FUN_100b04c0 100b0538 SysFreeString +100b0560 FUN_100b0560 100b05d6 SysFreeString +100b05f0 FUN_100b05f0 100b066c SysFreeString +100b0690 FUN_100b0690 100b0705 SysFreeString +100b07d0 FUN_100b07d0 100b0848 SysFreeString +100b0870 FUN_100b0870 100b08e6 SysFreeString +100b0900 FUN_100b0900 100b097c SysFreeString +100b09a0 FUN_100b09a0 100b0a15 SysFreeString +100b0ae0 FUN_100b0ae0 100b0b58 SysFreeString +100b0b80 FUN_100b0b80 100b0bf6 SysFreeString +100b0c10 FUN_100b0c10 100b0c8c SysFreeString +100b0cb0 FUN_100b0cb0 100b0d25 SysFreeString +100b0df0 FUN_100b0df0 100b0e68 SysFreeString +100b0e90 FUN_100b0e90 100b0f06 SysFreeString +100b0f20 FUN_100b0f20 100b0f9c SysFreeString +100b0fc0 FUN_100b0fc0 100b1035 SysFreeString +100b1100 FUN_100b1100 100b1178 SysFreeString +100b11a0 FUN_100b11a0 100b1216 SysFreeString +100b1230 FUN_100b1230 100b12ac SysFreeString +100c2470 FUN_100c2470 100c24f2 SysFreeString +100c2510 FUN_100c2510 100c2592 SysFreeString +100c25b0 FUN_100c25b0 100c2625 SysFreeString +100c2640 FUN_100c2640 100c26b0 SysFreeString +100c26d0 FUN_100c26d0 100c273e SysFreeString +100c2760 FUN_100c2760 100c27ce SysFreeString +100c27f0 FUN_100c27f0 100c2860 SysFreeString +100c2cd0 FUN_100c2cd0 100c2d57 SysFreeString +100c2d70 FUN_100c2d70 100c2df0 SysFreeString +100c2e10 FUN_100c2e10 100c2e90 SysFreeString +100c2eb0 FUN_100c2eb0 100c2f32 SysFreeString +100c2f50 FUN_100c2f50 100c2fd7 SysFreeString +100c2ff0 FUN_100c2ff0 100c3072 SysFreeString +100c3090 FUN_100c3090 100c3110 SysFreeString +100c3130 FUN_100c3130 100c31b0 SysFreeString +100c3380 FUN_100c3380 100c33ac memmove +100c3440 FUN_100c3440 100c346c memmove +100dbac0 FUN_100dbac0 100dbb17 CoCreateInstance +100dbda0 FUN_100dbda0 100dbe49 SysFreeString +100dc750 FUN_100dc750 100dc94a SysFreeString +100dcb10 FUN_100dcb10 100dcb43 memmove +100dcba0 FUN_100dcba0 100dcbd3 memmove +100dcc30 FUN_100dcc30 100dcc87 SysAllocString +100dcc30 FUN_100dcc30 100dcd06 SysFreeString +100dcc30 FUN_100dcc30 100dcd3d SysFreeString +100dce30 FUN_100dce30 100dce9b SysFreeString +100dcf90 FUN_100dcf90 100dd00d SysFreeString +100dd030 FUN_100dd030 100dd0ad SysFreeString +100e1d30 FUN_100e1d30 100e1d47 SysAllocString +100e2270 FUN_100e2270 100e23bd SysAllocString +100e2270 FUN_100e2270 100e23dd SysAllocString +100e25c0 FUN_100e25c0 100e27ec SysFreeString +100e2820 FUN_100e2820 100e28b2 SysFreeString +100e2820 FUN_100e2820 100e28d8 SysFreeString +100e2820 FUN_100e2820 100e28ee SysAllocString +100e2920 FUN_100e2920 100e29a1 SysFreeString +100e2920 FUN_100e2920 100e29e8 SysFreeString +100e2920 FUN_100e2920 100e2a0e SysFreeString +100e3080 FUN_100e3080 100e3add SysFreeString +100e3080 FUN_100e3080 100e3aed SysFreeString +100e3b10 FUN_100e3b10 100e3c4a SysFreeString +100e3b10 FUN_100e3b10 100e3c54 SysFreeString +100e3b10 FUN_100e3b10 100e3c5e SysFreeString +100e3b10 FUN_100e3b10 100e3c68 SysFreeString +100e3f50 FUN_100e3f50 100e4133 SysFreeString +100e3f50 FUN_100e3f50 100e4140 SysFreeString +100e3f50 FUN_100e3f50 100e414d SysFreeString +100e3f50 FUN_100e3f50 100e415d SysFreeString +100e3f50 FUN_100e3f50 100e42f5 SysFreeString +100e3f50 FUN_100e3f50 100e43e6 SysAllocString +100e3f50 FUN_100e3f50 100e45d3 SysFreeString +100e4770 FUN_100e4770 100e48b9 SysFreeString +100e48e0 FUN_100e48e0 100e48f0 SysAllocString +100e5ad0 FUN_100e5ad0 100e5da2 SysFreeString +100e71f0 FUN_100e71f0 100e73ed SysAllocString +100e71f0 FUN_100e71f0 100e7490 SysFreeString +100e7640 FUN_100e7640 100e7847 SysAllocString +100e7640 FUN_100e7640 100e7888 SysAllocString +100e7640 FUN_100e7640 100e7925 SysFreeString +100e7640 FUN_100e7640 100e792c SysFreeString +100e7ae0 FUN_100e7ae0 100e7ce7 SysAllocString +100e7ae0 FUN_100e7ae0 100e7d28 SysAllocString +100e7ae0 FUN_100e7ae0 100e7dc2 SysFreeString +100e7ae0 FUN_100e7ae0 100e7dc9 SysFreeString +100e7f80 FUN_100e7f80 100e8187 SysAllocString +100e7f80 FUN_100e7f80 100e81c8 SysAllocString +100e7f80 FUN_100e7f80 100e8264 SysFreeString +100e7f80 FUN_100e7f80 100e826b SysFreeString +100e8420 FUN_100e8420 100e861d SysAllocString +100e8420 FUN_100e8420 100e86c2 SysFreeString +100ea780 FUN_100ea780 100ea8b3 SysAllocString +100ea780 FUN_100ea780 100ea8f4 SysFreeString +100ea780 FUN_100ea780 100ea8fe SysFreeString +100eabf0 FUN_100eabf0 100ead0c SysFreeString +100eabf0 FUN_100eabf0 100ead16 SysFreeString +100eabf0 FUN_100eabf0 100ead20 SysFreeString +100eabf0 FUN_100eabf0 100ead2d SysFreeString +100eabf0 FUN_100eabf0 100eb08d SysAllocString +100eabf0 FUN_100eabf0 100eb0c0 SysFreeString +100ef7a0 FUN_100ef7a0 100ef99d SysAllocString +100ef7a0 FUN_100ef7a0 100efa32 SysFreeString +100efbe0 FUN_100efbe0 100efddd SysAllocString +100efbe0 FUN_100efbe0 100efe74 SysFreeString +100f49d0 FUN_100f49d0 100f49e4 memcpy_s +100f4b40 FUN_100f4b40 100f4b54 memcpy_s +100f4c00 FUN_100f4c00 100f4e2c SysFreeString +100f4c00 FUN_100f4c00 100f4e68 SysFreeString +100f4c00 FUN_100f4c00 100f4e87 SysAllocString +100f4c00 FUN_100f4c00 100f4ea6 SysAllocString +100f4c00 FUN_100f4c00 100f529e SysFreeString +100f4c00 FUN_100f4c00 100f52b6 SysFreeString +100f4c00 FUN_100f4c00 100f536b CoCreateInstance +100f4c00 FUN_100f4c00 100f5602 SysFreeString +100f4c00 FUN_100f4c00 100f563e SysFreeString +100f4c00 FUN_100f4c00 100f5646 SysAllocString +100f4c00 FUN_100f4c00 100f5661 SysAllocString +100f5a30 FUN_100f5a30 100f5a44 memcpy_s +100f5ba0 FUN_100f5ba0 100f5bb4 memcpy_s +100f5c60 FUN_100f5c60 100f5d53 SysFreeString +100f5c60 FUN_100f5c60 100f5d89 SysAllocString +100f5db0 FUN_100f5db0 100f5ea4 SysFreeString +100f5db0 FUN_100f5db0 100f5ed3 SysAllocString +100f5ef0 FUN_100f5ef0 100f5fe3 SysFreeString +100f5ef0 FUN_100f5ef0 100f6019 SysAllocString +100f61a0 FUN_100f61a0 100f61b2 memcpy_s +100f6310 FUN_100f6310 100f6324 memcpy_s +100f63d0 FUN_100f63d0 100f64c3 SysFreeString +100f63d0 FUN_100f63d0 100f64f9 SysAllocString +100f6520 FUN_100f6520 100f6614 SysFreeString +100f6520 FUN_100f6520 100f6643 SysAllocString +100f6660 FUN_100f6660 100f6753 SysFreeString +100f6660 FUN_100f6660 100f6789 SysAllocString +100f6910 FUN_100f6910 100f6922 memcpy_s +100f6a80 FUN_100f6a80 100f6a94 memcpy_s +100f6e50 FUN_100f6e50 100f6e74 memset +100f7190 FUN_100f7190 100f71c0 SysFreeString +100f74e0 FUN_100f74e0 100f7510 memcpy +100f7620 FUN_100f7620 100f7635 CoCreateInstance +100f76f0 FUN_100f76f0 100f7705 CoCreateInstance +100f7840 FUN_100f7840 100f7866 SysFreeString +100f7840 FUN_100f7840 100f7894 SysAllocString +100f78b0 FUN_100f78b0 100f78c8 SysFreeString +100f7ac0 FUN_100f7ac0 100f7b0f memcpy_s +100f8c30 FUN_100f8c30 100f8c4c memmove +100f8fd0 FUN_100f8fd0 100f8feb memmove +100f9000 FUN_100f9000 100f9030 SysFreeString +100fa020 FUN_100fa020 100fa03c memmove +100fa4e0 FUN_100fa4e0 100fa4fb memmove +100fae00 FUN_100fae00 100fae1c memmove +100fba70 FUN_100fba70 100fbaff memmove +100fbdd0 FUN_100fbdd0 100fbe0e SysAllocStringByteLen +100fc3f0 FUN_100fc3f0 100fc43a memcpy_s +100fd060 FUN_100fd060 100fd0c9 SysAllocStringByteLen +100fd200 FUN_100fd200 100fd31f SysFreeString +100fd400 FUN_100fd400 100fd52e SysFreeString +100feb50 FUN_100feb50 100fecd8 SysFreeString +100ff6f0 FUN_100ff6f0 100ff74e memset +100ff6f0 FUN_100ff6f0 100ff786 memset +100ffc90 FUN_100ffc90 100ffe1e SysFreeString +100ffc90 FUN_100ffc90 100ffe28 SysFreeString +10100380 FUN_10100380 101003b0 SysFreeString +10100380 FUN_10100380 101003dc SysAllocStringLen +10100380 FUN_10100380 101003fb SysFreeString +101007e0 FUN_101007e0 1010084d memcpy_s +10100da0 FUN_10100da0 10100df1 SysFreeString +101010e0 FUN_101010e0 101010f7 CoCreateInstance +10101360 FUN_10101360 101014ab SysFreeString +10101360 FUN_10101360 101014d5 SysFreeString +101018a0 FUN_101018a0 10101d33 SysFreeString +101018a0 FUN_101018a0 10101d69 CoCreateInstance +101018a0 FUN_101018a0 10101f35 memcpy +101018a0 FUN_101018a0 10101f51 memcpy +101018a0 FUN_101018a0 10101fb9 SysFreeString +101018a0 FUN_101018a0 101020ee memcpy +101018a0 FUN_101018a0 10102372 SysFreeString +101018a0 FUN_101018a0 1010272a SysAllocString +101018a0 FUN_101018a0 10102755 SysFreeString +101018a0 FUN_101018a0 1010277b SysFreeString +101018a0 FUN_101018a0 101027ef SysFreeString +101018a0 FUN_101018a0 10102830 SysAllocString +101018a0 FUN_101018a0 1010285c memcpy +101018a0 FUN_101018a0 10102872 SysFreeString +101018a0 FUN_101018a0 10102898 SysFreeString +101018a0 FUN_101018a0 101029d7 SysFreeString +101018a0 FUN_101018a0 10102ad4 memcpy +101018a0 FUN_101018a0 10102b1d SysFreeString +10102c70 FUN_10102c70 10102cb8 SysAllocStringByteLen +10102ce0 FUN_10102ce0 10102cf2 SysFreeString +10102ce0 FUN_10102ce0 10102d14 SysFreeString +101037b0 FUN_101037b0 10103a22 SysFreeString +10103a70 FUN_10103a70 10103af0 CoCreateInstance +10103ba0 FUN_10103ba0 10104555 SysFreeString +10103ba0 FUN_10103ba0 10104571 SysFreeString +10104e90 FUN_10104e90 10105001 SysFreeString +10104e90 FUN_10104e90 1010500e SysFreeString +10104e90 FUN_10104e90 10105031 SysFreeString +10104e90 FUN_10104e90 1010504b SysFreeString +10104e90 FUN_10104e90 10105058 SysFreeString +10104e90 FUN_10104e90 1010507b SysFreeString +10107880 FUN_10107880 101083ae SysFreeString +10107880 FUN_10107880 101083de SysAllocString +10107880 FUN_10107880 1010842e SysAllocString +10107880 FUN_10107880 1010864e SysFreeString +10107880 FUN_10107880 10108694 SysFreeString +10107880 FUN_10107880 10108d4c SysFreeString +10107880 FUN_10107880 10108de0 SysFreeString +10107880 FUN_10107880 10108f8e SysFreeString +10107880 FUN_10107880 10109189 SysFreeString +10107880 FUN_10107880 101092be CoCreateInstance +10107880 FUN_10107880 101096b1 SysFreeString +10107880 FUN_10107880 101096be SysFreeString +1010a5e0 FUN_1010a5e0 1010a641 memset +1010a5e0 FUN_1010a5e0 1010a679 memset +1010a5e0 FUN_1010a5e0 1010a6a6 memset +1010ad00 FUN_1010ad00 1010b2fb memset +1010ad00 FUN_1010ad00 1010b333 memset +1010ad00 FUN_1010ad00 1010b360 memset +1010ad00 FUN_1010ad00 1010b38d memset +1010ad00 FUN_1010ad00 1010b3dc memset +1010ad00 FUN_1010ad00 1010b411 memset +1010b4b0 FUN_1010b4b0 1010b660 memcpy_s +1010b7c0 FUN_1010b7c0 1010b92a SysFreeString +1010bd10 FUN_1010bd10 1010c560 SysFreeString +1010bd10 FUN_1010bd10 1010c5c6 SysFreeString +1010bd10 FUN_1010bd10 1010ca39 SysFreeString +1010bd10 FUN_1010bd10 1010cc69 SysFreeString +1010bd10 FUN_1010bd10 1010cc77 SysFreeString +1010bd10 FUN_1010bd10 1010cc9f SysFreeString +1010bd10 FUN_1010bd10 1010d3f0 SysFreeString +1010bd10 FUN_1010bd10 1010d412 SysFreeString +1010d4a0 FUN_1010d4a0 1010d5cc memset +1010d4a0 FUN_1010d4a0 1010d604 memset +1010d4a0 FUN_1010d4a0 1010d631 memset +1010d4a0 FUN_1010d4a0 1010d681 memset +1010d4a0 FUN_1010d4a0 1010d777 memset +1010d4a0 FUN_1010d4a0 1010d7cf memset +1010d4a0 FUN_1010d4a0 1010d80f memset +1010d4a0 FUN_1010d4a0 1010d839 memset +1010d4a0 FUN_1010d4a0 1010d8cd memset +1010db90 FUN_1010db90 1010dbf4 SysFreeString +1010db90 FUN_1010db90 1010dbfe SysFreeString +1010db90 FUN_1010db90 1010dc08 SysFreeString +1010db90 FUN_1010db90 1010dc12 SysFreeString +1010de30 FUN_1010de30 1010df8c SysFreeString +1010de30 FUN_1010de30 1010df96 SysFreeString +1010de30 FUN_1010de30 1010dfa0 SysFreeString +1010de30 FUN_1010de30 1010dfaa SysFreeString +1010e230 FUN_1010e230 1010e397 memcpy_s +1010ee00 FUN_1010ee00 1010f096 SysFreeString +1010ee00 FUN_1010ee00 1010f09e SysFreeString +1010ee00 FUN_1010ee00 1010f16e memset +1010ee00 FUN_1010ee00 1010f1a6 memset +1010ee00 FUN_1010ee00 1010f31d SysFreeString +1010ee00 FUN_1010ee00 1010f467 SysFreeString +1010ee00 FUN_1010ee00 1010f78e SysFreeString +10110986 FUN_10110986 10110feb SysFreeString +10112046 FUN_10112046 101120e5 SysFreeString +10112046 FUN_10112046 101120f2 SysFreeString +10112046 FUN_10112046 10112114 SysFreeString +101121e0 FUN_101121e0 101123a8 memset +101121e0 FUN_101121e0 101123e0 memset +101121e0 FUN_101121e0 10112430 memset +101121e0 FUN_101121e0 10112480 memset +101121e0 FUN_101121e0 101124ad memset +101121e0 FUN_101121e0 10112512 memset +101121e0 FUN_101121e0 10112550 memset +10112a00 FUN_10112a00 10112a30 SysFreeString +10112a00 FUN_10112a00 10112a5c SysAllocStringLen +10112a00 FUN_10112a00 10112a7b SysFreeString +10112da0 FUN_10112da0 10112e09 SysFreeString +10112da0 FUN_10112da0 10112e16 SysFreeString +10112da0 FUN_10112da0 10112e75 SysFreeString +10112da0 FUN_10112da0 10112e7f SysFreeString +10112da0 FUN_10112da0 10112e89 SysFreeString +10112da0 FUN_10112da0 10112e93 SysFreeString +10112f20 FUN_10112f20 10112f48 SysFreeString +10112f20 FUN_10112f20 10112f5d SysAllocStringByteLen +10112f20 FUN_10112f20 10112f83 SysFreeString +10112f20 FUN_10112f20 10112f98 SysAllocStringByteLen +10112f20 FUN_10112f20 10112fbe SysFreeString +10112f20 FUN_10112f20 10112fd3 SysAllocStringByteLen +10112f20 FUN_10112f20 10112ff9 SysFreeString +10112f20 FUN_10112f20 1011300e SysAllocStringByteLen +101131d0 FUN_101131d0 101132ee SysFreeString +101133d0 FUN_101133d0 1011341d SysFreeString +101133d0 FUN_101133d0 10113424 SysAllocString +101133d0 FUN_101133d0 10113455 SysFreeString +10113900 FUN_10113900 1011395f CoCreateInstance +10113b10 FUN_10113b10 10113c47 SysFreeString +10113b10 FUN_10113b10 10113ca0 SysFreeString +10113d40 FUN_10113d40 10113efc SysFreeString +10113d40 FUN_10113d40 10113f11 SysAllocString +10113d40 FUN_10113d40 1011418d SysFreeString +10113d40 FUN_10113d40 10114216 SysFreeString +10113d40 FUN_10113d40 1011449c SysFreeString +10113d40 FUN_10113d40 101144b6 SysFreeString +10114740 FUN_10114740 10114836 SysFreeString +10114740 FUN_10114740 10114892 SysFreeString +10114740 FUN_10114740 101149fa SysFreeString +10114740 FUN_10114740 10114a04 SysFreeString +10114740 FUN_10114740 10114a0e SysFreeString +10114740 FUN_10114740 10114a18 SysFreeString +10118bd0 FUN_10118bd0 10118c30 CoCreateInstance +1011f530 FUN_1011f530 1011f7d0 SysFreeString +10120080 FUN_10120080 10120986 SysFreeString +10123900 FUN_10123900 101241be SysFreeString +10128820 FUN_10128820 10128fb4 SysFreeString +10128820 FUN_10128820 10129154 SysFreeString +10128820 FUN_10128820 10129173 SysFreeString +10128820 FUN_10128820 1012923a SysFreeString +10128820 FUN_10128820 10129259 SysFreeString +10128820 FUN_10128820 101292dd SysFreeString +10128820 FUN_10128820 10129ed2 SysFreeString +10131f30 FUN_10131f30 101328ef CoCreateInstance +10131f30 FUN_10131f30 10133497 CoCreateInstance +10134310 FUN_10134310 101343a7 CoCreateInstance +10134c30 Attach 10134c41 SysFreeString +101353b0 FUN_101353b0 10135498 SysFreeString +10135890 FUN_10135890 1013593d SysFreeString +10135890 FUN_10135890 10135979 SysFreeString +10135890 FUN_10135890 101359f0 SysFreeString +10135890 FUN_10135890 10135a0c SysFreeString +10137530 FUN_10137530 10137547 memcpy +10137ae0 FUN_10137ae0 10137b0c memcpy_s +10137ae0 FUN_10137ae0 10137b3d memcpy_s +10137ae0 FUN_10137ae0 10137b7f memcpy_s +10137ae0 FUN_10137ae0 10137ba0 memcpy_s +10138180 FUN_10138180 101381f5 SysFreeString +10138180 FUN_10138180 10138228 SysFreeString +10138180 FUN_10138180 1013823b SysFreeString +101392c0 FUN_101392c0 10139300 SysFreeString +101392c0 FUN_101392c0 10139333 SysFreeString +101392c0 FUN_101392c0 10139346 SysFreeString +1013b1d0 FUN_1013b1d0 1013b464 SysFreeString +1013b1d0 FUN_1013b1d0 1013b46b SysAllocString +1013b1d0 FUN_1013b1d0 1013b4af SysFreeString +1013b1d0 FUN_1013b1d0 1013b57d SysFreeString +1013b5c0 FUN_1013b5c0 1013b5fe SysFreeString +1013b5c0 FUN_1013b5c0 1013b609 SysAllocString +1013bef0 FUN_1013bef0 1013c185 CoCreateInstance +1013bef0 FUN_1013bef0 1013c22b SysAllocString +1013bef0 FUN_1013bef0 1013c263 SysFreeString +1013bef0 FUN_1013bef0 1013c271 SysAllocString +1013bef0 FUN_1013bef0 1013c312 SysFreeString +1013bef0 FUN_1013bef0 1013c31d SysAllocString +1013bef0 FUN_1013bef0 1013c4fb SysFreeString +1013bef0 FUN_1013bef0 1013c505 SysFreeString +1013bef0 FUN_1013bef0 1013c50f SysFreeString +1013bef0 FUN_1013bef0 1013c519 SysFreeString +1013d120 FUN_1013d120 1013d2f6 SysFreeString +1013dbc0 FUN_1013dbc0 1013e017 SysFreeString +1013dbc0 FUN_1013dbc0 1013e043 SysFreeString +1013dbc0 FUN_1013dbc0 1013e054 SysFreeString +1013dbc0 FUN_1013dbc0 1013e0cb SysFreeString +1013dbc0 FUN_1013dbc0 1013e0d8 SysFreeString +1013dbc0 FUN_1013dbc0 1013e0e5 SysFreeString +1013dbc0 FUN_1013dbc0 1013e0f2 SysFreeString +1013ea30 FUN_1013ea30 1013eaa1 memcpy_s +1013ea30 FUN_1013ea30 1013eb16 memcpy +1013ea30 FUN_1013ea30 1013eb70 memcpy +1013f220 FUN_1013f220 1013f673 SysFreeString +1013f220 FUN_1013f220 1013f712 SysFreeString +10140450 FUN_10140450 10140636 SysFreeString +101421d0 FUN_101421d0 1014251f SysFreeString +101421d0 FUN_101421d0 10142533 SysFreeString +10144630 FUN_10144630 10144aad SysAllocString +10144630 FUN_10144630 10144ad4 SysAllocString +10144630 FUN_10144630 10144cd4 SysFreeString +10144630 FUN_10144630 10144ce1 SysFreeString +10144630 FUN_10144630 10145026 SysAllocString +10144630 FUN_10144630 1014517e SysFreeString +10145357 FUN_10145357 101458b9 SysFreeString +10145357 FUN_10145357 10145aa0 SysFreeString +10145357 FUN_10145357 10145d75 SysFreeString +10145357 FUN_10145357 10145d93 SysFreeString +10145fe0 FUN_10145fe0 1014666e SysFreeString +101479a0 FUN_101479a0 101479b1 SysFreeString +10147b30 FUN_10147b30 10147b6b SysFreeString +10147b30 FUN_10147b30 10147b77 SysFreeString +10147b90 FUN_10147b90 10147bc0 SysFreeString +10147be0 FUN_10147be0 10147c1b SysFreeString +10147be0 FUN_10147be0 10147c27 SysFreeString +10148510 FUN_10148510 10148566 SysFreeString +10148510 FUN_10148510 10148584 SysAllocStringLen +10148510 FUN_10148510 101485ae SysFreeString +10148510 FUN_10148510 101485c6 SysFreeString +10148610 FUN_10148610 10148640 SysFreeString +10148660 FUN_10148660 1014869b SysFreeString +10148660 FUN_10148660 101486a7 SysFreeString +10148cc0 FUN_10148cc0 10148d21 SysAllocString +10148d40 FUN_10148d40 10148d73 SysFreeString +10148da0 FUN_10148da0 10148ddb SysFreeString +10148da0 FUN_10148da0 10148de7 SysFreeString +10148f70 FUN_10148f70 10148fb9 SysAllocStringByteLen +10148f70 FUN_10148f70 10148feb SysAllocStringByteLen +10149020 FUN_10149020 10149067 SysAllocStringByteLen +10149020 FUN_10149020 101490cd SysFreeString +10149020 FUN_10149020 101490f2 SysFreeString +10149020 FUN_10149020 10149102 SysFreeString +10149020 FUN_10149020 10149108 SysAllocString +10149020 FUN_10149020 10149134 SysFreeString +10149740 FUN_10149740 101497a1 SysAllocString +10149840 FUN_10149840 1014986f SysFreeString +101498b0 FUN_101498b0 101498e8 SysFreeString +101498b0 FUN_101498b0 101498f4 SysFreeString +10149910 FUN_10149910 10149959 SysAllocStringByteLen +10149910 FUN_10149910 1014998a SysAllocStringByteLen +101499c0 FUN_101499c0 101499fe SysAllocStringByteLen +10149ca0 FUN_10149ca0 10149ccf SysFreeString +10149cf0 FUN_10149cf0 10149d28 SysFreeString +10149cf0 FUN_10149cf0 10149d34 SysFreeString +10149dc0 FUN_10149dc0 10149dfe SysAllocStringByteLen +10149f80 FUN_10149f80 1014a057 SysFreeString +1014a0e0 FUN_1014a0e0 1014a10f SysFreeString +1014a130 FUN_1014a130 1014a168 SysFreeString +1014a130 FUN_1014a130 1014a174 SysFreeString +1014a190 FUN_1014a190 1014a1d2 SysFreeString +1014a400 FUN_1014a400 1014a449 SysFreeString +1014a400 FUN_1014a400 1014a455 SysFreeString +1014a680 FUN_1014a680 1014a6ca SysAllocStringByteLen +1014a790 FUN_1014a790 1014a7a8 SysFreeString +1014ace0 FUN_1014ace0 1014ad58 SysFreeString +1014ace0 FUN_1014ace0 1014ad68 SysFreeString +1014ace0 FUN_1014ace0 1014ad6f SysAllocString +1014ace0 FUN_1014ace0 1014adda SysFreeString +1014ace0 FUN_1014ace0 1014ade5 SysFreeString +1014ace0 FUN_1014ace0 1014af45 SysFreeString +1014ace0 FUN_1014ace0 1014af50 SysAllocString +1014ace0 FUN_1014ace0 1014af7f SysAllocStringByteLen +1014ace0 FUN_1014ace0 1014afa1 SysFreeString +1014ace0 FUN_1014ace0 1014b03a SysFreeString +1014ace0 FUN_1014ace0 1014b045 SysAllocString +1014ace0 FUN_1014ace0 1014b100 SysFreeString +1014ace0 FUN_1014ace0 1014b112 SysFreeString +1014ace0 FUN_1014ace0 1014b118 SysAllocString +1014ace0 FUN_1014ace0 1014b13d SysFreeString +1014ace0 FUN_1014ace0 1014b14f SysFreeString +1014ace0 FUN_1014ace0 1014b15f SysFreeString +1014ace0 FUN_1014ace0 1014b176 SysAllocStringByteLen +1014ace0 FUN_1014ace0 1014b195 SysFreeString +1014ace0 FUN_1014ace0 1014b1a9 SysFreeString +1014ace0 FUN_1014ace0 1014b1ed SysFreeString +1014b210 FUN_1014b210 1014b64d SysFreeString +1014b210 FUN_1014b210 1014b658 SysAllocString +1014b750 FUN_1014b750 1014b9a5 SysFreeString +1014b9f0 FUN_1014b9f0 1014bc4c SysFreeString +1014b9f0 FUN_1014b9f0 1014bc58 SysFreeString +1014bc90 FUN_1014bc90 1014bcdf SysFreeString +1014bd10 FUN_1014bd10 1014bd63 SysFreeString +1014bd10 FUN_1014bd10 1014bd73 SysFreeString +1014bda0 FUN_1014bda0 1014bea8 SysFreeString +1014bee0 FUN_1014bee0 1014c076 SysFreeString +1014bee0 FUN_1014bee0 1014c082 SysFreeString +1014c590 FUN_1014c590 1014c5ab SysAllocStringLen +1014c5d0 FUN_1014c5d0 1014c62a SysAllocStringLen +1014c650 FUN_1014c650 1014c68a SysFreeString +1014c6a0 FUN_1014c6a0 1014c6dc SysFreeString +1014c7d0 FUN_1014c7d0 1014c839 SysFreeString +1014c7d0 FUN_1014c7d0 1014c83c SysAllocString +1014c7d0 FUN_1014c7d0 1014c8a0 SysFreeString +1014c7d0 FUN_1014c7d0 1014c8ba SysFreeString +1014c7d0 FUN_1014c7d0 1014c90d SysFreeString +1014c7d0 FUN_1014c7d0 1014c927 SysFreeString +1014c7d0 FUN_1014c7d0 1014c98d SysFreeString +1014c7d0 FUN_1014c7d0 1014c9ff SysFreeString +1014c7d0 FUN_1014c7d0 1014ca16 SysFreeString +1014c7d0 FUN_1014c7d0 1014ca24 SysFreeString +1014c7d0 FUN_1014c7d0 1014ca27 SysAllocString +1014c7d0 FUN_1014c7d0 1014ca42 SysFreeString +1014c7d0 FUN_1014c7d0 1014ca4f SysFreeString +1014c7d0 FUN_1014c7d0 1014ca5f SysFreeString +1014ca80 FUN_1014ca80 1014cc62 SysFreeString +1014ca80 FUN_1014ca80 1014ccd5 SysFreeString +1014cf40 FUN_1014cf40 1014cfb0 SysAllocString +1014cf40 FUN_1014cf40 1014cfcf SysAllocString +1014cf40 FUN_1014cf40 1014cfe3 SysAllocString +1014cf40 FUN_1014cf40 1014cff5 SysAllocString +1014cf40 FUN_1014cf40 1014d14a SysFreeString +1014cf40 FUN_1014cf40 1014d151 SysAllocString +1014cf40 FUN_1014cf40 1014d1c6 SysFreeString +1014cf40 FUN_1014cf40 1014d1d8 SysFreeString +1014cf40 FUN_1014cf40 1014d1db SysAllocString +1014cf40 FUN_1014cf40 1014d208 SysFreeString +1014cf40 FUN_1014cf40 1014d213 SysAllocString +1014cf40 FUN_1014cf40 1014d2b7 SysFreeString +1014cf40 FUN_1014cf40 1014d2be SysAllocString +1014cf40 FUN_1014cf40 1014d336 SysFreeString +1014cf40 FUN_1014cf40 1014d369 SysFreeString +1014cf40 FUN_1014cf40 1014d37c SysFreeString +1014cf40 FUN_1014cf40 1014d3c0 SysAllocStringLen +1014cf40 FUN_1014cf40 1014d43e SysFreeString +1014cf40 FUN_1014cf40 1014d450 SysFreeString +1014cf40 FUN_1014cf40 1014d453 SysAllocString +1014cf40 FUN_1014cf40 1014d480 SysFreeString +1014cf40 FUN_1014cf40 1014d487 SysAllocString +1014cf40 FUN_1014cf40 1014d564 SysAllocString +1014cf40 FUN_1014cf40 1014d594 SysAllocString +1014cf40 FUN_1014cf40 1014d624 SysFreeString +1014cf40 FUN_1014cf40 1014d669 SysAllocString +1014cf40 FUN_1014cf40 1014d6b8 SysFreeString +1014cf40 FUN_1014cf40 1014d6e0 SysFreeString +1014cf40 FUN_1014cf40 1014d718 SysAllocString +1014cf40 FUN_1014cf40 1014d741 SysAllocString +1014cf40 FUN_1014cf40 1014d75c SysFreeString +1014cf40 FUN_1014cf40 1014d767 SysAllocString +1014cf40 FUN_1014cf40 1014d7cb SysAllocStringByteLen +1014cf40 FUN_1014cf40 1014d7fd SysAllocStringByteLen +1014cf40 FUN_1014cf40 1014d893 SysFreeString +1014cf40 FUN_1014cf40 1014d89e SysFreeString +1014cf40 FUN_1014cf40 1014d93f SysAllocStringByteLen +1014cf40 FUN_1014cf40 1014d96e SysAllocStringByteLen +1014cf40 FUN_1014cf40 1014d9cd SysAllocStringByteLen +1014cf40 FUN_1014cf40 1014d9fa SysAllocStringByteLen +1014cf40 FUN_1014cf40 1014da6d SysFreeString +1014cf40 FUN_1014cf40 1014da7a SysFreeString +1014cf40 FUN_1014cf40 1014da81 SysFreeString +1014cf40 FUN_1014cf40 1014da88 SysFreeString +1014cf40 FUN_1014cf40 1014db20 SysFreeString +1014cf40 FUN_1014cf40 1014db70 SysFreeString +1014cf40 FUN_1014cf40 1014db7a SysFreeString +1014cf40 FUN_1014cf40 1014db87 SysFreeString +1014cf40 FUN_1014cf40 1014dc28 SysFreeString +1014cf40 FUN_1014cf40 1014dc2f SysAllocString +1014cf40 FUN_1014cf40 1014dc61 SysFreeString +1014cf40 FUN_1014cf40 1014dc73 SysFreeString +1014cf40 FUN_1014cf40 1014dc76 SysAllocString +1014cf40 FUN_1014cf40 1014dd14 SysAllocString +1014cf40 FUN_1014cf40 1014ddb4 SysFreeString +1014cf40 FUN_1014cf40 1014def7 SysFreeString +1014cf40 FUN_1014cf40 1014df4f SysFreeString +1014cf40 FUN_1014cf40 1014df59 SysFreeString +1014cf40 FUN_1014cf40 1014df63 SysFreeString +1014cf40 FUN_1014cf40 1014df70 SysFreeString +1014e000 FUN_1014e000 1014e118 SysFreeString +1014e000 FUN_1014e000 1014e14c SysAllocString +1014e000 FUN_1014e000 1014e18e SysAllocString +1014e000 FUN_1014e000 1014e1ab SysAllocString +1014e000 FUN_1014e000 1014e417 SysAllocString +1014e000 FUN_1014e000 1014e432 SysAllocString +1014e000 FUN_1014e000 1014e4b2 SysFreeString +1014e000 FUN_1014e000 1014e5af SysFreeString +1014e000 FUN_1014e000 1014e743 SysFreeString +1014e000 FUN_1014e000 1014e8cd SysAllocString +1014e000 FUN_1014e000 1014e8f8 SysFreeString +1014e000 FUN_1014e000 1014e91d SysFreeString +1014e000 FUN_1014e000 1014eb03 SysFreeString +1014e000 FUN_1014e000 1014eb10 SysFreeString +1014e000 FUN_1014e000 1014eb1d SysFreeString +1014e000 FUN_1014e000 1014eb2a SysFreeString +1014e000 FUN_1014e000 1014eb37 SysFreeString +1014e000 FUN_1014e000 1014eb44 SysFreeString +1014ed80 FUN_1014ed80 1014eecb SysFreeString +1014ed80 FUN_1014ed80 1014eee5 SysFreeString +1014f010 FUN_1014f010 1014f040 SysFreeString +1014f170 FUN_1014f170 1014f1e5 SysFreeString +1014f4fc memmove_s 1014f50d memmove_s +1014f51d RemoveAt 1014f54e memmove_s +1014f5b2 FUN_1014f5b2 1014f5bf memset +1014f7f2 FUN_1014f7f2 1014f7ff memset +1014fab0 ConvertStringToBSTR 1014fbe1 SysAllocString +1014fd90 _com_invoke_helper 1014fe54 memset +1014fd90 _com_invoke_helper 10150038 VariantInit +1014fd90 _com_invoke_helper 1015009e VariantClear +1014fd90 _com_invoke_helper 10150106 VariantChangeType +1014fd90 _com_invoke_helper 10150116 VariantClear +1014fd90 _com_invoke_helper 10150238 VariantClear +10150480 _com_handle_excepinfo 1015053f SysFreeString +10150480 _com_handle_excepinfo 10150549 SysFreeString +10150480 _com_handle_excepinfo 10150553 SysFreeString +10178fc0 FUN_10178fc0 10178fee SysAllocString +101792e0 FUN_101792e0 1017931a memset +101793a0 FUN_101793a0 101793cf SysFreeString +10179470 FUN_10179470 10179476 SysFreeString +10179480 FUN_10179480 10179486 SysFreeString +10179680 FUN_10179680 10179685 VariantClear diff --git a/analysis/ghidra/exports/Lmx.dll.functions.tsv b/analysis/ghidra/exports/Lmx.dll.functions.tsv new file mode 100644 index 0000000..819803a --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.functions.tsv @@ -0,0 +1,18016 @@ +entry name signature body_size call_count interesting_calls +10001000 FUN_10001000 undefined FUN_10001000(void) 10 0 +10001010 FUN_10001010 undefined FUN_10001010(void) 50 0 +10001050 FUN_10001050 undefined FUN_10001050(void) 112 0 +100010c0 FUN_100010c0 undefined FUN_100010c0(void) 9 1 +100010d0 FUN_100010d0 undefined FUN_100010d0(void) 34 0 +10001110 FUN_10001110 undefined FUN_10001110(void) 58 0 +10001150 FUN_10001150 undefined FUN_10001150(void) 68 1 +100011a0 FUN_100011a0 undefined FUN_100011a0(void) 22 0 +100011c0 FUN_100011c0 undefined FUN_100011c0(void) 27 0 +100011f0 FUN_100011f0 undefined FUN_100011f0(void) 13 0 +10001200 FUN_10001200 undefined FUN_10001200(void) 13 0 +10001210 FUN_10001210 undefined FUN_10001210(void) 17 0 +10001230 FUN_10001230 undefined FUN_10001230(void) 15 0 +10001240 _wmemchr wchar_t * _wmemchr(wchar_t * _S, wchar_t _C, size_t _N) 32 0 +10001260 FUN_10001260 undefined FUN_10001260(void) 54 0 +100012a0 FUN_100012a0 undefined FUN_100012a0(void) 28 1 memcpy +100012c0 FUN_100012c0 undefined FUN_100012c0(void) 29 1 memmove +100012e0 FUN_100012e0 undefined FUN_100012e0(void) 50 0 +10001320 AtlMultiply<> undefined AtlMultiply<>(void) 34 0 +10001350 FUN_10001350 undefined FUN_10001350(void) 10 0 +10001360 FUN_10001360 undefined FUN_10001360(void) 47 0 +100013b0 FUN_100013b0 undefined FUN_100013b0(void) 15 1 +100013c0 FUN_100013c0 undefined FUN_100013c0(void) 1 0 +100013d0 FUN_100013d0 undefined FUN_100013d0(void) 14 0 +100013e0 FUN_100013e0 undefined FUN_100013e0(void) 23 1 +10001400 FUN_10001400 undefined FUN_10001400(void) 26 2 +10001420 FUN_10001420 undefined FUN_10001420(void) 57 1 +100014c0 FUN_100014c0 undefined FUN_100014c0(void) 79 2 memcpy_s +10001580 FUN_10001580 undefined FUN_10001580(void) 22 0 +100015a0 FUN_100015a0 undefined FUN_100015a0(void) 20 0 +100015c0 FUN_100015c0 undefined FUN_100015c0(void) 7 0 +100015d0 FUN_100015d0 undefined FUN_100015d0(void) 3 0 +100015e0 FUN_100015e0 undefined FUN_100015e0(void) 3 0 +100015f0 FUN_100015f0 undefined FUN_100015f0(void) 3 0 +10001600 FUN_10001600 undefined FUN_10001600(void) 1 0 +10001610 FUN_10001610 undefined FUN_10001610(void) 3 0 +10001620 FUN_10001620 undefined FUN_10001620(void) 1 0 +10001630 FUN_10001630 undefined FUN_10001630(void) 3 0 +10001640 FUN_10001640 undefined FUN_10001640(void) 34 1 +10001670 FUN_10001670 undefined FUN_10001670(void) 31 0 +10001690 FUN_10001690 undefined FUN_10001690(void) 26 0 +100016b0 FUN_100016b0 undefined FUN_100016b0(void) 42 1 +100016e0 FUN_100016e0 undefined FUN_100016e0(void) 59 0 +10001720 FUN_10001720 undefined FUN_10001720(void) 99 0 +100017e0 FUN_100017e0 undefined FUN_100017e0(void) 41 2 +10001870 FUN_10001870 undefined FUN_10001870(void) 8 1 +10001890 FUN_10001890 undefined FUN_10001890(void) 40 0 +100018d0 FUN_100018d0 undefined FUN_100018d0(void) 20 0 +100018f0 FUN_100018f0 undefined FUN_100018f0(void) 20 0 +10001920 FUN_10001920 undefined FUN_10001920(void) 32 1 +10001940 FUN_10001940 undefined FUN_10001940(void) 32 0 +10001960 FUN_10001960 undefined FUN_10001960(void) 37 0 +10001990 FUN_10001990 undefined FUN_10001990(void) 15 1 +100019a0 FUN_100019a0 undefined FUN_100019a0(void) 37 1 +100019d0 FUN_100019d0 undefined FUN_100019d0(void) 13 1 +10001a40 Attach void Attach(CComBSTR * this, wchar_t * param_1) 31 1 SysFreeString +10001a70 FUN_10001a70 undefined FUN_10001a70(void) 20 1 SysFreeString +10001aa0 FUN_10001aa0 undefined FUN_10001aa0(void) 75 3 SysFreeString +10001af0 FUN_10001af0 undefined FUN_10001af0(void) 20 0 +10001b10 FUN_10001b10 undefined FUN_10001b10(void) 39 2 +10001b40 FUN_10001b40 undefined FUN_10001b40(void) 75 4 SysFreeString +10001bd0 FUN_10001bd0 undefined FUN_10001bd0(void) 15 1 +10001bf0 FUN_10001bf0 undefined FUN_10001bf0(void) 31 0 +10001c10 FUN_10001c10 undefined FUN_10001c10(void) 172 2 +10001cf0 FUN_10001cf0 undefined FUN_10001cf0(void) 46 0 +10001d20 FUN_10001d20 undefined FUN_10001d20(void) 43 0 +10001d50 FUN_10001d50 undefined FUN_10001d50(void) 43 0 +10001d80 FUN_10001d80 undefined FUN_10001d80(void) 42 0 +10001dc0 FUN_10001dc0 undefined FUN_10001dc0(void) 10 1 SysFreeString +10001dd0 FUN_10001dd0 undefined FUN_10001dd0(void) 18 0 +10001e20 FUN_10001e20 undefined FUN_10001e20(void) 101 1 +10001ee0 FUN_10001ee0 undefined FUN_10001ee0(void) 70 0 +10001f30 FUN_10001f30 undefined FUN_10001f30(void) 98 2 +10001fa0 FUN_10001fa0 undefined FUN_10001fa0(void) 114 2 +10002020 FUN_10002020 undefined FUN_10002020(void) 50 0 +10002060 FUN_10002060 undefined FUN_10002060(void) 66 0 +100020c0 FUN_100020c0 undefined FUN_100020c0(void) 19 0 +100020f0 FUN_100020f0 undefined FUN_100020f0(void) 14 0 +10002100 FUN_10002100 undefined FUN_10002100(void) 17 0 +10002120 FUN_10002120 undefined FUN_10002120(void) 31 0 +10002150 FUN_10002150 undefined FUN_10002150(void) 28 0 +10002170 FUN_10002170 undefined FUN_10002170(void) 38 1 +100021a0 FUN_100021a0 undefined FUN_100021a0(void) 154 3 +10002240 FUN_10002240 undefined FUN_10002240(void) 173 4 +100022f0 FUN_100022f0 undefined FUN_100022f0(void) 61 1 +10002330 FUN_10002330 undefined FUN_10002330(void) 120 1 +100023b0 FUN_100023b0 undefined FUN_100023b0(void) 30 1 +100023d0 FUN_100023d0 undefined FUN_100023d0(void) 38 0 +10002400 FUN_10002400 undefined FUN_10002400(void) 43 0 +10002450 FUN_10002450 undefined FUN_10002450(void) 25 1 +10002470 FUN_10002470 undefined FUN_10002470(void) 10 1 +10002480 FUN_10002480 undefined FUN_10002480(void) 295 8 +100025b0 FUN_100025b0 undefined FUN_100025b0(void) 64 2 +10002600 FUN_10002600 undefined FUN_10002600(void) 160 5 +100026a0 FUN_100026a0 undefined FUN_100026a0(void) 15 0 +100026b0 FUN_100026b0 undefined FUN_100026b0(void) 33 2 +100026f0 FUN_100026f0 undefined FUN_100026f0(void) 40 0 +10002720 FUN_10002720 undefined FUN_10002720(void) 20 0 +10002740 FUN_10002740 undefined FUN_10002740(void) 42 1 +10002770 FUN_10002770 undefined FUN_10002770(void) 52 0 +100027b0 FUN_100027b0 undefined FUN_100027b0(void) 21 0 +100027f0 FUN_100027f0 undefined FUN_100027f0(void) 44 0 +10002830 FUN_10002830 undefined FUN_10002830(void) 34 0 +10002860 FUN_10002860 undefined FUN_10002860(void) 12 0 +10002870 FUN_10002870 undefined FUN_10002870(void) 38 0 +10002930 FUN_10002930 undefined FUN_10002930(void) 36 0 +10002970 FUN_10002970 undefined FUN_10002970(void) 36 0 +100029a0 FUN_100029a0 undefined FUN_100029a0(void) 16 0 +100029b0 FUN_100029b0 undefined FUN_100029b0(void) 11 1 +100029c0 FUN_100029c0 undefined FUN_100029c0(void) 82 0 +10002a20 FUN_10002a20 undefined FUN_10002a20(void) 186 0 +10002ae0 FUN_10002ae0 undefined FUN_10002ae0(void) 59 3 +10002b20 FUN_10002b20 undefined FUN_10002b20(void) 40 3 +10002b50 FUN_10002b50 undefined FUN_10002b50(void) 50 0 +10002b90 FUN_10002b90 undefined FUN_10002b90(void) 18 1 +10002bc0 FUN_10002bc0 undefined FUN_10002bc0(void) 29 0 +10002be0 FUN_10002be0 undefined FUN_10002be0(void) 38 1 +10002c10 FUN_10002c10 undefined FUN_10002c10(void) 59 2 SysAllocString +10002c50 FUN_10002c50 undefined FUN_10002c50(void) 75 3 SysAllocStringByteLen +10002ce0 FUN_10002ce0 undefined FUN_10002ce0(void) 9 1 +10002cf0 FUN_10002cf0 undefined FUN_10002cf0(void) 34 2 SysFreeString +10002d20 FUN_10002d20 undefined FUN_10002d20(void) 131 3 +10002db0 _com_error undefined _com_error(_com_error * this, long param_1, IErrorInfo * param_2, bool param_3) 56 0 +10002df0 _com_error undefined _com_error(_com_error * this, _com_error * param_1) 55 0 +10002e30 ~_com_error void ~_com_error(_com_error * this) 40 1 +10002e60 FUN_10002e60 undefined FUN_10002e60(void) 96 1 +10002ed0 FUN_10002ed0 undefined FUN_10002ed0(void) 23 0 +10002ef0 FUN_10002ef0 undefined FUN_10002ef0(void) 34 0 +10002f20 FUN_10002f20 undefined FUN_10002f20(void) 8 0 +10002f30 FUN_10002f30 undefined FUN_10002f30(void) 1 0 +10002f40 FUN_10002f40 undefined FUN_10002f40(void) 91 1 +10002fa0 FUN_10002fa0 undefined FUN_10002fa0(void) 72 1 +10002ff0 FUN_10002ff0 undefined FUN_10002ff0(void) 95 2 +10003050 FUN_10003050 undefined FUN_10003050(void) 52 0 +10003090 FUN_10003090 undefined FUN_10003090(void) 54 0 +100030d0 FUN_100030d0 undefined FUN_100030d0(void) 33 0 +10003100 FUN_10003100 undefined FUN_10003100(void) 28 1 memcpy +10003120 FUN_10003120 undefined FUN_10003120(void) 34 0 +10003150 FUN_10003150 undefined FUN_10003150(void) 29 1 memmove +10003170 FUN_10003170 undefined FUN_10003170(void) 50 0 +100031b0 FUN_100031b0 undefined FUN_100031b0(void) 17 0 +100031d0 FUN_100031d0 undefined FUN_100031d0(void) 22 0 +100031f0 FUN_100031f0 undefined FUN_100031f0(void) 22 0 +10003270 FUN_10003270 undefined FUN_10003270(void) 18 0 +100032c0 FUN_100032c0 undefined FUN_100032c0(void) 76 2 +10003310 FUN_10003310 undefined FUN_10003310(void) 22 0 +10003340 FUN_10003340 undefined FUN_10003340(void) 5 0 +10003350 FUN_10003350 undefined FUN_10003350(void) 30 1 +10003370 FUN_10003370 undefined FUN_10003370(void) 30 1 +10003390 FUN_10003390 undefined FUN_10003390(void) 39 0 +100033c0 FUN_100033c0 undefined FUN_100033c0(void) 134 0 +100034a0 FUN_100034a0 undefined FUN_100034a0(void) 101 0 +10003510 FUN_10003510 undefined FUN_10003510(void) 29 0 +10003560 FUN_10003560 undefined FUN_10003560(void) 27 1 +10003580 FUN_10003580 undefined FUN_10003580(void) 63 1 +100035c0 FUN_100035c0 undefined FUN_100035c0(void) 13 0 +100035d0 FUN_100035d0 undefined FUN_100035d0(void) 66 0 +10003620 FUN_10003620 undefined FUN_10003620(void) 59 0 +10003660 FUN_10003660 undefined FUN_10003660(void) 4 0 +10003670 FUN_10003670 undefined FUN_10003670(void) 20 1 +10003690 FUN_10003690 undefined FUN_10003690(void) 15 0 +100036a0 FUN_100036a0 undefined FUN_100036a0(void) 39 0 +100036d0 FUN_100036d0 undefined FUN_100036d0(void) 69 0 +10003720 FUN_10003720 undefined FUN_10003720(void) 101 0 +10003790 FUN_10003790 undefined FUN_10003790(void) 13 0 +100037a0 FUN_100037a0 undefined FUN_100037a0(void) 66 0 +10003800 FUN_10003800 undefined FUN_10003800(void) 35 0 +10003830 FUN_10003830 undefined FUN_10003830(void) 33 0 +10003860 FUN_10003860 undefined FUN_10003860(void) 5 0 +10003870 FUN_10003870 undefined FUN_10003870(void) 5 0 +10003880 FUN_10003880 undefined FUN_10003880(void) 45 0 +100038b0 FUN_100038b0 undefined FUN_100038b0(void) 20 0 +100038f0 FUN_100038f0 undefined FUN_100038f0(void) 129 1 SysFreeString +100039a0 FUN_100039a0 undefined FUN_100039a0(void) 240 1 SysFreeString +10003a90 FUN_10003a90 undefined FUN_10003a90(void) 186 1 memset +10003b50 FUN_10003b50 undefined FUN_10003b50(void) 40 1 +10003b80 FUN_10003b80 undefined FUN_10003b80(void) 121 3 +10003c00 FUN_10003c00 undefined FUN_10003c00(void) 193 1 +10003cd0 FUN_10003cd0 undefined FUN_10003cd0(void) 65 2 memset +10003d20 FUN_10003d20 undefined FUN_10003d20(void) 200 7 +10003df0 FUN_10003df0 undefined FUN_10003df0(void) 99 3 +10003e60 FUN_10003e60 undefined FUN_10003e60(void) 141 1 +10003f30 FUN_10003f30 undefined FUN_10003f30(void) 31 1 CoCreateInstance +10003f60 FUN_10003f60 undefined FUN_10003f60(void) 60 1 +10003fc0 FUN_10003fc0 undefined FUN_10003fc0(void) 51 1 +10004010 FUN_10004010 undefined FUN_10004010(void) 118 4 +100040a0 FUN_100040a0 undefined FUN_100040a0(void) 207 4 memset +10004190 FUN_10004190 undefined FUN_10004190(void) 79 1 +100041f0 FUN_100041f0 undefined FUN_100041f0(void) 195 3 +100042e0 FUN_100042e0 undefined FUN_100042e0(void) 15 0 +10004320 FUN_10004320 undefined FUN_10004320(void) 31 1 CoCreateInstance +10004350 FUN_10004350 undefined FUN_10004350(void) 15 0 +10004390 FUN_10004390 undefined FUN_10004390(void) 43 0 +100043d0 FUN_100043d0 undefined FUN_100043d0(void) 229 1 +100044f0 FUN_100044f0 undefined FUN_100044f0(void) 15 0 +10004520 FUN_10004520 undefined FUN_10004520(void) 15 0 +10004560 FUN_10004560 undefined FUN_10004560(void) 49 2 +100045a0 FUN_100045a0 undefined FUN_100045a0(void) 93 4 +10004600 FUN_10004600 undefined FUN_10004600(void) 26 1 +10004630 FUN_10004630 undefined FUN_10004630(void) 15 0 +10004660 FUN_10004660 undefined FUN_10004660(void) 15 0 +100046c0 FUN_100046c0 undefined FUN_100046c0(void) 15 0 +100046e0 FUN_100046e0 undefined FUN_100046e0(void) 31 1 CoCreateInstance +10004720 FUN_10004720 undefined FUN_10004720(void) 147 3 +100047d0 FUN_100047d0 undefined FUN_100047d0(void) 116 2 memset +10004850 FUN_10004850 undefined FUN_10004850(void) 119 2 memset +100048e0 FUN_100048e0 undefined FUN_100048e0(void) 15 0 +100048f0 FUN_100048f0 undefined FUN_100048f0(void) 119 2 memset +10004970 FUN_10004970 undefined FUN_10004970(void) 195 9 memset +10004a60 FUN_10004a60 undefined FUN_10004a60(void) 265 5 +10004b70 FUN_10004b70 undefined FUN_10004b70(void) 10 0 +10004b80 FUN_10004b80 undefined FUN_10004b80(void) 69 1 SysFreeString +10004be0 FUN_10004be0 undefined FUN_10004be0(void) 19 0 +10004c00 FUN_10004c00 undefined FUN_10004c00(void) 19 0 +10004c50 FUN_10004c50 undefined FUN_10004c50(void) 15 0 +10004c60 FUN_10004c60 undefined FUN_10004c60(void) 58 2 +10004ca0 FUN_10004ca0 undefined FUN_10004ca0(void) 15 0 +10004cb0 FUN_10004cb0 undefined FUN_10004cb0(void) 106 3 +10004d40 FUN_10004d40 undefined FUN_10004d40(void) 15 0 +10004d80 FUN_10004d80 undefined FUN_10004d80(void) 11 1 +10004da0 FUN_10004da0 undefined FUN_10004da0(void) 15 0 +10004de0 FUN_10004de0 undefined FUN_10004de0(void) 15 0 +10004e30 FUN_10004e30 undefined FUN_10004e30(void) 15 0 +10004e80 FUN_10004e80 undefined FUN_10004e80(void) 15 0 +10004ea0 FUN_10004ea0 undefined FUN_10004ea0(void) 10 1 SysFreeString +10004ef0 FUN_10004ef0 undefined FUN_10004ef0(void) 20 1 SysFreeString +10004f70 FUN_10004f70 undefined FUN_10004f70(void) 16 0 +10004f80 FUN_10004f80 undefined FUN_10004f80(void) 64 0 +10004fd0 FUN_10004fd0 undefined FUN_10004fd0(void) 18 0 +10005080 FUN_10005080 undefined FUN_10005080(void) 20 0 +100050b0 FUN_100050b0 undefined FUN_100050b0(void) 28 0 +100050d0 FUN_100050d0 undefined FUN_100050d0(void) 28 1 +100050f0 FUN_100050f0 undefined FUN_100050f0(void) 34 1 +10005120 FUN_10005120 undefined FUN_10005120(void) 69 1 CoGetClassObject +10005170 FUN_10005170 undefined FUN_10005170(void) 131 2 CoGetClassObject +10005220 FUN_10005220 undefined FUN_10005220(void) 29 1 SysFreeString +10005240 FUN_10005240 undefined FUN_10005240(void) 58 1 +10005280 FUN_10005280 undefined FUN_10005280(void) 137 2 CoGetClassObject +10005310 FUN_10005310 undefined FUN_10005310(void) 15 0 +10005330 FUN_10005330 undefined FUN_10005330(void) 146 2 CoGetClassObject +10005420 FUN_10005420 undefined FUN_10005420(void) 137 2 CoGetClassObject +100054b0 FUN_100054b0 undefined FUN_100054b0(void) 148 2 CoGetClassObject +10005550 FUN_10005550 undefined FUN_10005550(void) 148 2 CoGetClassObject +100055f0 FUN_100055f0 undefined FUN_100055f0(void) 47 1 +10005620 FUN_10005620 undefined FUN_10005620(void) 60 2 SysFreeString +10005680 FUN_10005680 undefined FUN_10005680(void) 27 0 +100056a0 FUN_100056a0 undefined FUN_100056a0(void) 40 0 +100056d0 FUN_100056d0 undefined FUN_100056d0(void) 32 0 +10005710 FUN_10005710 undefined FUN_10005710(void) 42 0 +10005740 FUN_10005740 undefined FUN_10005740(void) 82 0 +100057b0 FUN_100057b0 undefined FUN_100057b0(void) 40 0 +100057f0 FUN_100057f0 undefined FUN_100057f0(void) 34 0 +10005840 FUN_10005840 undefined FUN_10005840(void) 22 1 +10005860 FUN_10005860 undefined FUN_10005860(void) 103 1 +100058d0 FUN_100058d0 undefined FUN_100058d0(void) 8 0 +100058e0 FUN_100058e0 undefined FUN_100058e0(void) 8 0 +100058f0 FUN_100058f0 undefined FUN_100058f0(void) 8 0 +10005900 FUN_10005900 undefined FUN_10005900(void) 8 0 +10005910 FUN_10005910 undefined FUN_10005910(void) 8 0 +10005920 FUN_10005920 undefined FUN_10005920(void) 8 0 +10005930 FUN_10005930 undefined FUN_10005930(void) 8 0 +10005940 FUN_10005940 undefined FUN_10005940(void) 8 0 +10005950 FUN_10005950 undefined FUN_10005950(void) 8 0 +10005960 FUN_10005960 undefined FUN_10005960(void) 8 0 +10005970 FUN_10005970 undefined FUN_10005970(void) 122 0 +100059f0 FUN_100059f0 undefined FUN_100059f0(void) 128 1 memcpy_s +10005a80 FUN_10005a80 undefined FUN_10005a80(void) 211 2 memcpy_s +10005ba0 FUN_10005ba0 undefined FUN_10005ba0(void) 51 2 +10005c10 FUN_10005c10 undefined FUN_10005c10(void) 15 0 +10005c80 FUN_10005c80 undefined FUN_10005c80(void) 18 0 +10005ca0 FUN_10005ca0 undefined FUN_10005ca0(void) 15 0 +10005cc0 FUN_10005cc0 undefined FUN_10005cc0(void) 31 1 CoCreateInstance +10005ce0 FUN_10005ce0 undefined FUN_10005ce0(void) 15 0 +10005d00 FUN_10005d00 undefined FUN_10005d00(void) 21 0 +10005d20 FUN_10005d20 undefined FUN_10005d20(void) 31 1 CoCreateInstance +10005d50 FUN_10005d50 undefined FUN_10005d50(void) 19 0 +10005d70 FUN_10005d70 undefined FUN_10005d70(void) 19 0 +10005d90 FUN_10005d90 undefined FUN_10005d90(void) 19 0 +10005db0 FUN_10005db0 undefined FUN_10005db0(void) 19 0 +10005dd0 FUN_10005dd0 undefined FUN_10005dd0(void) 15 0 +10005e00 FUN_10005e00 undefined FUN_10005e00(void) 19 0 +10005e20 FUN_10005e20 undefined FUN_10005e20(void) 19 0 +10005e40 FUN_10005e40 undefined FUN_10005e40(void) 15 0 +10005e60 FUN_10005e60 undefined FUN_10005e60(void) 43 0 +10005e90 FUN_10005e90 undefined FUN_10005e90(void) 15 0 +10005eb0 FUN_10005eb0 undefined FUN_10005eb0(void) 19 0 +10005ed0 FUN_10005ed0 undefined FUN_10005ed0(void) 47 1 +10005f10 FUN_10005f10 undefined FUN_10005f10(void) 14 0 +10005f20 FUN_10005f20 undefined FUN_10005f20(void) 14 0 +10005f30 FUN_10005f30 undefined FUN_10005f30(void) 14 0 +10005f40 FUN_10005f40 undefined FUN_10005f40(void) 14 0 +10005f50 FUN_10005f50 undefined FUN_10005f50(void) 14 0 +10005f60 FUN_10005f60 undefined FUN_10005f60(void) 14 0 +10005f70 FUN_10005f70 undefined FUN_10005f70(void) 14 0 +10005f80 FUN_10005f80 undefined FUN_10005f80(void) 14 0 +10005f90 FUN_10005f90 undefined FUN_10005f90(void) 47 1 +10005fd0 FUN_10005fd0 undefined FUN_10005fd0(void) 19 0 +10005ff0 FUN_10005ff0 undefined FUN_10005ff0(void) 19 0 +10006010 FUN_10006010 undefined FUN_10006010(void) 15 0 +10006040 FUN_10006040 undefined FUN_10006040(void) 36 1 +10006070 FUN_10006070 undefined FUN_10006070(void) 15 0 +100060a0 FUN_100060a0 undefined FUN_100060a0(void) 19 0 +100060c0 FUN_100060c0 undefined FUN_100060c0(void) 19 0 +100060f0 FUN_100060f0 undefined FUN_100060f0(void) 15 0 +10006100 FUN_10006100 undefined FUN_10006100(void) 15 0 +10006130 FUN_10006130 undefined FUN_10006130(void) 15 0 +10006160 FUN_10006160 undefined FUN_10006160(void) 30 0 +10006180 FUN_10006180 undefined FUN_10006180(void) 24 0 +100061b0 FUN_100061b0 undefined FUN_100061b0(void) 30 0 +100061e0 FUN_100061e0 undefined FUN_100061e0(void) 30 0 +10006210 FUN_10006210 undefined FUN_10006210(void) 11 0 +10006220 FUN_10006220 undefined FUN_10006220(void) 11 0 +10006230 FUN_10006230 undefined FUN_10006230(void) 8 0 +10006240 FUN_10006240 undefined FUN_10006240(void) 11 0 +10006250 FUN_10006250 undefined FUN_10006250(void) 11 0 +10006260 FUN_10006260 undefined FUN_10006260(void) 11 0 +10006270 FUN_10006270 undefined FUN_10006270(void) 29 0 +10006290 FUN_10006290 undefined FUN_10006290(void) 28 0 +100062c0 FUN_100062c0 undefined FUN_100062c0(void) 40 0 +100062f0 FUN_100062f0 undefined FUN_100062f0(void) 19 1 +10006330 FUN_10006330 undefined FUN_10006330(void) 30 0 +10006350 FUN_10006350 undefined FUN_10006350(void) 30 0 +10006370 FUN_10006370 undefined FUN_10006370(void) 30 0 +100063d0 FUN_100063d0 undefined FUN_100063d0(void) 8 0 +100063e0 FUN_100063e0 undefined FUN_100063e0(void) 8 0 +100063f0 FUN_100063f0 undefined FUN_100063f0(void) 8 0 +10006400 FUN_10006400 undefined FUN_10006400(void) 11 0 +10006410 FUN_10006410 undefined FUN_10006410(void) 11 0 +10006420 FUN_10006420 undefined FUN_10006420(void) 8 0 +10006430 FUN_10006430 undefined FUN_10006430(void) 11 0 +10006440 FUN_10006440 undefined FUN_10006440(void) 11 0 +10006450 FUN_10006450 undefined FUN_10006450(void) 11 0 +10006460 FUN_10006460 undefined FUN_10006460(void) 29 0 +10006480 FUN_10006480 undefined FUN_10006480(void) 28 0 +100064b0 FUN_100064b0 undefined FUN_100064b0(void) 21 0 +100064d0 FUN_100064d0 undefined FUN_100064d0(void) 19 1 +100064f0 FUN_100064f0 undefined FUN_100064f0(void) 11 0 +10006510 FUN_10006510 undefined FUN_10006510(void) 11 0 +10006530 FUN_10006530 undefined FUN_10006530(void) 11 0 +10006550 FUN_10006550 undefined FUN_10006550(void) 11 0 +10006560 FUN_10006560 undefined FUN_10006560(void) 11 0 +10006570 FUN_10006570 undefined FUN_10006570(void) 8 0 +10006580 FUN_10006580 undefined FUN_10006580(void) 11 0 +10006590 FUN_10006590 undefined FUN_10006590(void) 11 0 +100065a0 FUN_100065a0 undefined FUN_100065a0(void) 11 0 +100065b0 FUN_100065b0 undefined FUN_100065b0(void) 29 0 +100065d0 FUN_100065d0 undefined FUN_100065d0(void) 28 0 +100065f0 FUN_100065f0 undefined FUN_100065f0(void) 19 1 +10006640 FUN_10006640 undefined FUN_10006640(void) 22 0 +10006680 FUN_10006680 undefined FUN_10006680(void) 11 0 +10006690 FUN_10006690 undefined FUN_10006690(void) 11 0 +100066b0 FUN_100066b0 undefined FUN_100066b0(void) 76 0 +10006720 FUN_10006720 undefined FUN_10006720(void) 11 0 +100067a0 FUN_100067a0 undefined FUN_100067a0(void) 30 0 +100067f0 FUN_100067f0 undefined FUN_100067f0(void) 8 0 +10006810 FUN_10006810 undefined FUN_10006810(void) 8 0 +10006830 FUN_10006830 undefined FUN_10006830(void) 15 0 +10006850 FUN_10006850 undefined FUN_10006850(void) 15 0 +10006860 FUN_10006860 undefined FUN_10006860(void) 8 0 +10006890 FUN_10006890 undefined FUN_10006890(void) 15 0 +100068b0 FUN_100068b0 undefined FUN_100068b0(void) 8 0 +100068d0 FUN_100068d0 undefined FUN_100068d0(void) 15 0 +10006910 FUN_10006910 undefined FUN_10006910(void) 43 0 +10006940 FUN_10006940 undefined FUN_10006940(void) 31 1 CoCreateInstance +10006980 FUN_10006980 undefined FUN_10006980(void) 21 0 +100069b0 FUN_100069b0 undefined FUN_100069b0(void) 14 0 +100069d0 FUN_100069d0 undefined FUN_100069d0(void) 18 0 +10006a10 FUN_10006a10 undefined FUN_10006a10(void) 11 0 +10006a20 FUN_10006a20 undefined FUN_10006a20(void) 11 0 +10006a30 FUN_10006a30 undefined FUN_10006a30(void) 8 0 +10006a40 FUN_10006a40 undefined FUN_10006a40(void) 11 0 +10006a50 FUN_10006a50 undefined FUN_10006a50(void) 11 0 +10006a60 FUN_10006a60 undefined FUN_10006a60(void) 11 0 +10006a70 FUN_10006a70 undefined FUN_10006a70(void) 29 0 +10006a90 FUN_10006a90 undefined FUN_10006a90(void) 28 0 +10006ac0 FUN_10006ac0 undefined FUN_10006ac0(void) 19 1 +10006ae0 FUN_10006ae0 undefined FUN_10006ae0(void) 19 0 +10006b20 FUN_10006b20 undefined FUN_10006b20(void) 15 0 +10006b80 FUN_10006b80 undefined FUN_10006b80(void) 40 0 +10006bb0 FUN_10006bb0 undefined FUN_10006bb0(void) 19 0 +10006bd0 FUN_10006bd0 undefined FUN_10006bd0(void) 19 0 +10006bf0 FUN_10006bf0 undefined FUN_10006bf0(void) 72 0 +10006c50 FUN_10006c50 undefined FUN_10006c50(void) 8 0 +10006c60 FUN_10006c60 undefined FUN_10006c60(void) 11 0 +10006c70 FUN_10006c70 undefined FUN_10006c70(void) 19 1 +10006ca0 FUN_10006ca0 undefined FUN_10006ca0(void) 11 0 +10006cb0 FUN_10006cb0 undefined FUN_10006cb0(void) 11 0 +10006cc0 FUN_10006cc0 undefined FUN_10006cc0(void) 8 0 +10006cd0 FUN_10006cd0 undefined FUN_10006cd0(void) 11 0 +10006ce0 FUN_10006ce0 undefined FUN_10006ce0(void) 11 0 +10006cf0 FUN_10006cf0 undefined FUN_10006cf0(void) 11 0 +10006d00 FUN_10006d00 undefined FUN_10006d00(void) 29 0 +10006d20 FUN_10006d20 undefined FUN_10006d20(void) 28 0 +10006d50 FUN_10006d50 undefined FUN_10006d50(void) 19 1 +10006d80 FUN_10006d80 undefined FUN_10006d80(void) 19 0 +10006dc0 FUN_10006dc0 undefined FUN_10006dc0(void) 11 0 +10006dd0 FUN_10006dd0 undefined FUN_10006dd0(void) 11 0 +10006de0 FUN_10006de0 undefined FUN_10006de0(void) 8 0 +10006df0 FUN_10006df0 undefined FUN_10006df0(void) 11 0 +10006e00 FUN_10006e00 undefined FUN_10006e00(void) 11 0 +10006e10 FUN_10006e10 undefined FUN_10006e10(void) 11 0 +10006e20 FUN_10006e20 undefined FUN_10006e20(void) 29 0 +10006e40 FUN_10006e40 undefined FUN_10006e40(void) 28 0 +10006e70 FUN_10006e70 undefined FUN_10006e70(void) 19 1 +10006e90 FUN_10006e90 undefined FUN_10006e90(void) 11 0 +10006ea0 FUN_10006ea0 undefined FUN_10006ea0(void) 11 0 +10006eb0 FUN_10006eb0 undefined FUN_10006eb0(void) 8 0 +10006ec0 FUN_10006ec0 undefined FUN_10006ec0(void) 11 0 +10006ed0 FUN_10006ed0 undefined FUN_10006ed0(void) 11 0 +10006ee0 FUN_10006ee0 undefined FUN_10006ee0(void) 11 0 +10006ef0 FUN_10006ef0 undefined FUN_10006ef0(void) 29 0 +10006f10 FUN_10006f10 undefined FUN_10006f10(void) 28 0 +10006f40 FUN_10006f40 undefined FUN_10006f40(void) 19 1 +10006f60 FUN_10006f60 undefined FUN_10006f60(void) 11 0 +10006f70 FUN_10006f70 undefined FUN_10006f70(void) 11 0 +10006f80 FUN_10006f80 undefined FUN_10006f80(void) 8 0 +10006f90 FUN_10006f90 undefined FUN_10006f90(void) 11 0 +10006fa0 FUN_10006fa0 undefined FUN_10006fa0(void) 11 0 +10006fb0 FUN_10006fb0 undefined FUN_10006fb0(void) 11 0 +10006fc0 FUN_10006fc0 undefined FUN_10006fc0(void) 29 0 +10006ff0 FUN_10006ff0 undefined FUN_10006ff0(void) 28 0 +10007010 FUN_10007010 undefined FUN_10007010(void) 11 0 +10007030 FUN_10007030 undefined FUN_10007030(void) 19 1 +10007090 FUN_10007090 undefined FUN_10007090(void) 19 1 +100070b0 FUN_100070b0 undefined FUN_100070b0(void) 11 0 +100070c0 FUN_100070c0 undefined FUN_100070c0(void) 11 0 +100070d0 FUN_100070d0 undefined FUN_100070d0(void) 8 0 +100070e0 FUN_100070e0 undefined FUN_100070e0(void) 11 0 +100070f0 FUN_100070f0 undefined FUN_100070f0(void) 11 0 +10007100 FUN_10007100 undefined FUN_10007100(void) 11 0 +10007110 FUN_10007110 undefined FUN_10007110(void) 29 0 +10007130 FUN_10007130 undefined FUN_10007130(void) 28 0 +10007160 FUN_10007160 undefined FUN_10007160(void) 65 0 +100071b0 FUN_100071b0 undefined FUN_100071b0(void) 19 1 +100071d0 FUN_100071d0 undefined FUN_100071d0(void) 11 0 +100071e0 FUN_100071e0 undefined FUN_100071e0(void) 11 0 +100071f0 FUN_100071f0 undefined FUN_100071f0(void) 8 0 +10007200 FUN_10007200 undefined FUN_10007200(void) 11 0 +10007210 FUN_10007210 undefined FUN_10007210(void) 11 0 +10007220 FUN_10007220 undefined FUN_10007220(void) 11 0 +10007230 FUN_10007230 undefined FUN_10007230(void) 29 0 +10007250 FUN_10007250 undefined FUN_10007250(void) 28 0 +10007280 FUN_10007280 undefined FUN_10007280(void) 19 1 +100072b0 FUN_100072b0 undefined FUN_100072b0(void) 11 0 +100072e0 FUN_100072e0 undefined FUN_100072e0(void) 11 0 +10007310 FUN_10007310 undefined FUN_10007310(void) 11 0 +10007380 FUN_10007380 undefined FUN_10007380(void) 59 1 +100073c0 FUN_100073c0 undefined FUN_100073c0(void) 49 1 +10007400 FUN_10007400 undefined FUN_10007400(void) 11 0 +10007410 FUN_10007410 undefined FUN_10007410(void) 11 0 +10007420 FUN_10007420 undefined FUN_10007420(void) 8 0 +10007430 FUN_10007430 undefined FUN_10007430(void) 11 0 +10007440 FUN_10007440 undefined FUN_10007440(void) 11 0 +10007450 FUN_10007450 undefined FUN_10007450(void) 11 0 +10007460 FUN_10007460 undefined FUN_10007460(void) 29 0 +10007480 FUN_10007480 undefined FUN_10007480(void) 28 0 +100074b0 FUN_100074b0 undefined FUN_100074b0(void) 19 1 +100074d0 FUN_100074d0 undefined FUN_100074d0(void) 11 0 +100074e0 FUN_100074e0 undefined FUN_100074e0(void) 11 0 +100074f0 FUN_100074f0 undefined FUN_100074f0(void) 8 0 +10007500 FUN_10007500 undefined FUN_10007500(void) 11 0 +10007510 FUN_10007510 undefined FUN_10007510(void) 11 0 +10007520 FUN_10007520 undefined FUN_10007520(void) 11 0 +10007530 FUN_10007530 undefined FUN_10007530(void) 29 0 +10007550 FUN_10007550 undefined FUN_10007550(void) 28 0 +10007580 FUN_10007580 undefined FUN_10007580(void) 19 1 +100075a0 FUN_100075a0 undefined FUN_100075a0(void) 11 0 +100075b0 FUN_100075b0 undefined FUN_100075b0(void) 11 0 +100075c0 FUN_100075c0 undefined FUN_100075c0(void) 8 0 +100075d0 FUN_100075d0 undefined FUN_100075d0(void) 11 0 +100075e0 FUN_100075e0 undefined FUN_100075e0(void) 11 0 +100075f0 FUN_100075f0 undefined FUN_100075f0(void) 11 0 +10007600 FUN_10007600 undefined FUN_10007600(void) 29 0 +10007620 FUN_10007620 undefined FUN_10007620(void) 28 0 +10007650 FUN_10007650 undefined FUN_10007650(void) 19 1 +100076b0 FUN_100076b0 undefined FUN_100076b0(void) 11 0 +10007750 FUN_10007750 undefined FUN_10007750(void) 8 0 +10007760 FUN_10007760 undefined FUN_10007760(void) 30 0 +10007780 FUN_10007780 undefined FUN_10007780(void) 11 0 +100077a0 FUN_100077a0 undefined FUN_100077a0(void) 19 1 +10007810 FUN_10007810 undefined FUN_10007810(void) 99 7 +100078e0 FUN_100078e0 undefined FUN_100078e0(void) 19 0 +10007920 FUN_10007920 undefined FUN_10007920(void) 19 0 +10007980 FUN_10007980 undefined FUN_10007980(void) 19 0 +100079a0 FUN_100079a0 undefined FUN_100079a0(void) 19 0 +100079d0 FUN_100079d0 undefined FUN_100079d0(void) 19 0 +10007a10 FUN_10007a10 undefined FUN_10007a10(void) 19 0 +10007a40 FUN_10007a40 undefined FUN_10007a40(void) 19 0 +10007a90 FUN_10007a90 undefined FUN_10007a90(void) 10 0 +10007aa0 FUN_10007aa0 undefined FUN_10007aa0(void) 82 0 +10007b00 FUN_10007b00 undefined FUN_10007b00(void) 19 0 +10007b30 FUN_10007b30 undefined FUN_10007b30(void) 19 0 +10007b50 FUN_10007b50 undefined FUN_10007b50(void) 64 0 +10007bb0 FUN_10007bb0 undefined FUN_10007bb0(void) 19 0 +10007bf0 FUN_10007bf0 undefined FUN_10007bf0(void) 19 0 +10007c10 FUN_10007c10 undefined FUN_10007c10(void) 19 0 +10007c30 FUN_10007c30 undefined FUN_10007c30(void) 19 0 +10007c50 FUN_10007c50 undefined FUN_10007c50(void) 19 0 +10007c70 FUN_10007c70 undefined FUN_10007c70(void) 19 0 +10007c90 FUN_10007c90 undefined FUN_10007c90(void) 19 0 +10007cc0 FUN_10007cc0 undefined FUN_10007cc0(void) 19 0 +10007d00 FUN_10007d00 undefined FUN_10007d00(void) 19 0 +10007d20 FUN_10007d20 undefined FUN_10007d20(void) 19 0 +10007d40 FUN_10007d40 undefined FUN_10007d40(void) 19 0 +10007d60 FUN_10007d60 undefined FUN_10007d60(void) 19 0 +10007d80 FUN_10007d80 undefined FUN_10007d80(void) 19 0 +10007da0 FUN_10007da0 undefined FUN_10007da0(void) 19 0 +10007dd0 FUN_10007dd0 undefined FUN_10007dd0(void) 19 0 +10007df0 FUN_10007df0 undefined FUN_10007df0(void) 19 0 +10007e10 FUN_10007e10 undefined FUN_10007e10(void) 19 0 +10007e60 FUN_10007e60 undefined FUN_10007e60(void) 19 0 +10007e80 FUN_10007e80 undefined FUN_10007e80(void) 19 0 +10007ea0 FUN_10007ea0 undefined FUN_10007ea0(void) 19 0 +10007f00 FUN_10007f00 undefined FUN_10007f00(void) 19 0 +10007f40 FUN_10007f40 undefined FUN_10007f40(void) 19 1 +10007f60 FUN_10007f60 undefined FUN_10007f60(void) 19 0 +10007f90 FUN_10007f90 undefined FUN_10007f90(void) 46 0 +10007fc0 FUN_10007fc0 undefined FUN_10007fc0(void) 19 0 +10007ff0 FUN_10007ff0 undefined FUN_10007ff0(void) 11 0 +10008000 FUN_10008000 undefined FUN_10008000(void) 11 0 +10008010 FUN_10008010 undefined FUN_10008010(void) 8 0 +10008020 FUN_10008020 undefined FUN_10008020(void) 11 0 +10008030 FUN_10008030 undefined FUN_10008030(void) 11 0 +10008040 FUN_10008040 undefined FUN_10008040(void) 11 0 +10008050 FUN_10008050 undefined FUN_10008050(void) 29 0 +10008070 FUN_10008070 undefined FUN_10008070(void) 28 0 +100080a0 FUN_100080a0 undefined FUN_100080a0(void) 19 1 +100080c0 FUN_100080c0 undefined FUN_100080c0(void) 19 0 +100080f0 FUN_100080f0 undefined FUN_100080f0(void) 19 0 +10008150 FUN_10008150 undefined FUN_10008150(void) 19 0 +10008180 FUN_10008180 undefined FUN_10008180(void) 19 0 +100081b0 FUN_100081b0 undefined FUN_100081b0(void) 19 0 +100081e0 FUN_100081e0 undefined FUN_100081e0(void) 19 0 +10008220 FUN_10008220 undefined FUN_10008220(void) 19 0 +10008250 FUN_10008250 undefined FUN_10008250(void) 19 0 +10008290 AtlAdd<> undefined AtlAdd<>(void) 36 0 +100082c0 FUN_100082c0 undefined FUN_100082c0(void) 17 0 +100082e0 FUN_100082e0 undefined FUN_100082e0(void) 17 0 +10008330 FUN_10008330 undefined FUN_10008330(void) 251 9 +10008450 FUN_10008450 undefined FUN_10008450(void) 44 0 +10008490 FUN_10008490 undefined FUN_10008490(void) 8 0 +100084a0 FUN_100084a0 undefined FUN_100084a0(void) 11 0 +100084b0 FUN_100084b0 undefined FUN_100084b0(void) 19 1 +100084d0 FUN_100084d0 undefined FUN_100084d0(void) 51 1 +10008510 FUN_10008510 undefined FUN_10008510(void) 8 0 +10008520 FUN_10008520 undefined FUN_10008520(void) 19 1 +10008540 FUN_10008540 undefined FUN_10008540(void) 39 1 +10008570 FUN_10008570 undefined FUN_10008570(void) 19 1 +10008590 FUN_10008590 undefined FUN_10008590(void) 19 1 +100085b0 FUN_100085b0 undefined FUN_100085b0(void) 8 0 +100085c0 FUN_100085c0 undefined FUN_100085c0(void) 11 0 +100085d0 FUN_100085d0 undefined FUN_100085d0(void) 19 1 +100085f0 FUN_100085f0 undefined FUN_100085f0(void) 19 1 +10008610 FUN_10008610 undefined FUN_10008610(void) 8 0 +10008620 FUN_10008620 undefined FUN_10008620(void) 19 1 +10008640 FUN_10008640 undefined FUN_10008640(void) 8 0 +10008650 FUN_10008650 undefined FUN_10008650(void) 8 0 +10008670 FUN_10008670 undefined FUN_10008670(void) 19 1 +10008690 FUN_10008690 undefined FUN_10008690(void) 11 0 +100086a0 FUN_100086a0 undefined FUN_100086a0(void) 8 0 +100086b0 FUN_100086b0 undefined FUN_100086b0(void) 11 0 +100086c0 FUN_100086c0 undefined FUN_100086c0(void) 11 0 +100086d0 FUN_100086d0 undefined FUN_100086d0(void) 8 0 +100086e0 FUN_100086e0 undefined FUN_100086e0(void) 28 0 +10008700 FUN_10008700 undefined FUN_10008700(void) 19 1 +10008720 FUN_10008720 undefined FUN_10008720(void) 23 1 +10008740 FUN_10008740 undefined FUN_10008740(void) 14 0 +10008750 FUN_10008750 undefined FUN_10008750(void) 140 3 +100087e0 FUN_100087e0 undefined FUN_100087e0(void) 146 4 +10008880 FUN_10008880 undefined FUN_10008880(void) 11 0 +10008890 FUN_10008890 undefined FUN_10008890(void) 8 0 +100088a0 FUN_100088a0 undefined FUN_100088a0(void) 11 0 +100088b0 FUN_100088b0 undefined FUN_100088b0(void) 11 0 +100088c0 FUN_100088c0 undefined FUN_100088c0(void) 28 0 +100088e0 FUN_100088e0 undefined FUN_100088e0(void) 8 0 +10008900 FUN_10008900 undefined FUN_10008900(void) 19 1 +10008920 FUN_10008920 undefined FUN_10008920(void) 143 3 +100089b0 FUN_100089b0 undefined FUN_100089b0(void) 19 1 +100089d0 FUN_100089d0 undefined FUN_100089d0(void) 91 1 +10008a30 FUN_10008a30 undefined FUN_10008a30(void) 8 0 +10008a50 FUN_10008a50 undefined FUN_10008a50(void) 19 1 +10008a70 FUN_10008a70 undefined FUN_10008a70(void) 10 0 +10008a80 FUN_10008a80 undefined FUN_10008a80(void) 8 0 +10008a90 FUN_10008a90 undefined FUN_10008a90(void) 132 1 +10008b40 FUN_10008b40 undefined FUN_10008b40(void) 19 1 +10008b60 FUN_10008b60 undefined FUN_10008b60(void) 19 1 +10008ba0 FUN_10008ba0 undefined FUN_10008ba0(void) 19 1 +10008bd0 FUN_10008bd0 undefined FUN_10008bd0(void) 19 1 +10008bf0 FUN_10008bf0 undefined FUN_10008bf0(void) 8 0 +10008c00 FUN_10008c00 undefined FUN_10008c00(void) 8 0 +10008c10 FUN_10008c10 undefined FUN_10008c10(void) 8 0 +10008c20 FUN_10008c20 undefined FUN_10008c20(void) 8 0 +10008c30 FUN_10008c30 undefined FUN_10008c30(void) 90 0 +10008c90 FUN_10008c90 undefined FUN_10008c90(void) 8 0 +10008ca0 FUN_10008ca0 undefined FUN_10008ca0(void) 8 0 +10008cb0 FUN_10008cb0 undefined FUN_10008cb0(void) 19 1 +10008ce0 FUN_10008ce0 undefined FUN_10008ce0(void) 11 0 +10008cf0 FUN_10008cf0 undefined FUN_10008cf0(void) 8 0 +10008d00 FUN_10008d00 undefined FUN_10008d00(void) 91 0 +10008d60 FUN_10008d60 undefined FUN_10008d60(void) 8 0 +10008d70 FUN_10008d70 undefined FUN_10008d70(void) 8 0 +10008d80 FUN_10008d80 undefined FUN_10008d80(void) 11 0 +10008d90 FUN_10008d90 undefined FUN_10008d90(void) 19 1 +10008dc0 FUN_10008dc0 undefined FUN_10008dc0(void) 8 0 +10008de0 FUN_10008de0 undefined FUN_10008de0(void) 19 1 +10008e00 FUN_10008e00 undefined FUN_10008e00(void) 8 0 +10008e10 FUN_10008e10 undefined FUN_10008e10(void) 8 0 +10008e30 FUN_10008e30 undefined FUN_10008e30(void) 19 1 +10008e50 FUN_10008e50 undefined FUN_10008e50(void) 8 0 +10008e70 FUN_10008e70 undefined FUN_10008e70(void) 19 1 +10008e90 FUN_10008e90 undefined FUN_10008e90(void) 8 0 +10008eb0 FUN_10008eb0 undefined FUN_10008eb0(void) 19 1 +10008ee0 FUN_10008ee0 undefined FUN_10008ee0(void) 19 1 +10008f10 FUN_10008f10 undefined FUN_10008f10(void) 19 1 +10008f40 FUN_10008f40 undefined FUN_10008f40(void) 19 1 +10008f70 FUN_10008f70 undefined FUN_10008f70(void) 11 0 +10008f80 FUN_10008f80 undefined FUN_10008f80(void) 8 0 +10008f90 FUN_10008f90 undefined FUN_10008f90(void) 11 0 +10008fa0 FUN_10008fa0 undefined FUN_10008fa0(void) 11 0 +10008fb0 FUN_10008fb0 undefined FUN_10008fb0(void) 11 0 +10008fd0 FUN_10008fd0 undefined FUN_10008fd0(void) 19 1 +10008ff0 FUN_10008ff0 undefined FUN_10008ff0(void) 11 0 +10009010 FUN_10009010 undefined FUN_10009010(void) 19 1 +10009040 FUN_10009040 undefined FUN_10009040(void) 19 1 +10009060 FUN_10009060 undefined FUN_10009060(void) 11 0 +10009080 FUN_10009080 undefined FUN_10009080(void) 19 1 +100090a0 FUN_100090a0 undefined FUN_100090a0(void) 11 0 +100090c0 FUN_100090c0 undefined FUN_100090c0(void) 19 1 +100090e0 FUN_100090e0 undefined FUN_100090e0(void) 11 0 +100090f0 FUN_100090f0 undefined FUN_100090f0(void) 11 0 +10009110 FUN_10009110 undefined FUN_10009110(void) 19 1 +10009130 FUN_10009130 undefined FUN_10009130(void) 11 0 +10009150 FUN_10009150 undefined FUN_10009150(void) 19 1 +10009180 FUN_10009180 undefined FUN_10009180(void) 19 1 +100091a0 FUN_100091a0 undefined FUN_100091a0(void) 8 0 +100091b0 FUN_100091b0 undefined FUN_100091b0(void) 11 0 +100091d0 FUN_100091d0 undefined FUN_100091d0(void) 19 1 +10009200 FUN_10009200 undefined FUN_10009200(void) 19 1 +10009220 FUN_10009220 undefined FUN_10009220(void) 19 1 +10009240 FUN_10009240 undefined FUN_10009240(void) 14 0 +10009280 FUN_10009280 undefined FUN_10009280(void) 72 0 +100092d0 FUN_100092d0 undefined FUN_100092d0(void) 8 0 +100092f0 FUN_100092f0 undefined FUN_100092f0(void) 19 1 +10009310 FUN_10009310 undefined FUN_10009310(void) 14 0 +10009320 FUN_10009320 undefined FUN_10009320(void) 11 0 +10009340 FUN_10009340 undefined FUN_10009340(void) 11 0 +10009360 FUN_10009360 undefined FUN_10009360(void) 19 1 +100093e0 FUN_100093e0 undefined FUN_100093e0(void) 19 1 +10009400 FUN_10009400 undefined FUN_10009400(void) 8 0 +10009410 FUN_10009410 undefined FUN_10009410(void) 8 0 +10009430 FUN_10009430 undefined FUN_10009430(void) 19 1 +10009450 FUN_10009450 undefined FUN_10009450(void) 11 0 +10009470 FUN_10009470 undefined FUN_10009470(void) 19 1 +10009490 FUN_10009490 undefined FUN_10009490(void) 8 0 +100094b0 FUN_100094b0 undefined FUN_100094b0(void) 19 1 +100094d0 FUN_100094d0 undefined FUN_100094d0(void) 8 0 +100094e0 FUN_100094e0 undefined FUN_100094e0(void) 11 0 +10009500 FUN_10009500 undefined FUN_10009500(void) 19 1 +10009520 FUN_10009520 undefined FUN_10009520(void) 8 0 +10009540 FUN_10009540 undefined FUN_10009540(void) 19 1 +10009570 FUN_10009570 undefined FUN_10009570(void) 19 1 +100095c0 FUN_100095c0 undefined FUN_100095c0(void) 19 1 +100095e0 FUN_100095e0 undefined FUN_100095e0(void) 19 1 +10009600 FUN_10009600 undefined FUN_10009600(void) 11 0 +10009610 FUN_10009610 undefined FUN_10009610(void) 11 0 +10009620 FUN_10009620 undefined FUN_10009620(void) 8 0 +10009630 FUN_10009630 undefined FUN_10009630(void) 11 0 +10009640 FUN_10009640 undefined FUN_10009640(void) 11 0 +10009650 FUN_10009650 undefined FUN_10009650(void) 11 0 +10009660 FUN_10009660 undefined FUN_10009660(void) 29 0 +10009680 FUN_10009680 undefined FUN_10009680(void) 28 0 +100096b0 FUN_100096b0 undefined FUN_100096b0(void) 21 0 +100096d0 FUN_100096d0 undefined FUN_100096d0(void) 19 1 +100096f0 FUN_100096f0 undefined FUN_100096f0(void) 11 0 +10009700 FUN_10009700 undefined FUN_10009700(void) 8 0 +10009710 FUN_10009710 undefined FUN_10009710(void) 11 0 +10009720 FUN_10009720 undefined FUN_10009720(void) 11 0 +10009730 FUN_10009730 undefined FUN_10009730(void) 11 0 +10009740 FUN_10009740 undefined FUN_10009740(void) 8 0 +10009760 FUN_10009760 undefined FUN_10009760(void) 19 1 +100097f0 FUN_100097f0 undefined FUN_100097f0(void) 19 1 +10009820 FUN_10009820 undefined FUN_10009820(void) 19 1 +10009850 FUN_10009850 undefined FUN_10009850(void) 19 1 +10009870 FUN_10009870 undefined FUN_10009870(void) 11 0 +10009880 FUN_10009880 undefined FUN_10009880(void) 8 0 +10009890 FUN_10009890 undefined FUN_10009890(void) 11 0 +100098a0 FUN_100098a0 undefined FUN_100098a0(void) 11 0 +100098c0 FUN_100098c0 undefined FUN_100098c0(void) 19 1 +100098f0 FUN_100098f0 undefined FUN_100098f0(void) 19 1 +10009910 FUN_10009910 undefined FUN_10009910(void) 8 0 +10009920 FUN_10009920 undefined FUN_10009920(void) 11 0 +10009940 FUN_10009940 undefined FUN_10009940(void) 19 1 +10009960 FUN_10009960 undefined FUN_10009960(void) 8 0 +10009980 FUN_10009980 undefined FUN_10009980(void) 19 1 +100099b0 FUN_100099b0 undefined FUN_100099b0(void) 19 1 +100099d0 FUN_100099d0 undefined FUN_100099d0(void) 11 0 +100099f0 FUN_100099f0 undefined FUN_100099f0(void) 11 0 +10009a00 FUN_10009a00 undefined FUN_10009a00(void) 8 0 +10009a10 FUN_10009a10 undefined FUN_10009a10(void) 11 0 +10009a20 FUN_10009a20 undefined FUN_10009a20(void) 11 0 +10009a30 FUN_10009a30 undefined FUN_10009a30(void) 11 0 +10009a40 FUN_10009a40 undefined FUN_10009a40(void) 8 0 +10009a60 FUN_10009a60 undefined FUN_10009a60(void) 19 1 +10009a90 FUN_10009a90 undefined FUN_10009a90(void) 19 1 +10009ab0 FUN_10009ab0 undefined FUN_10009ab0(void) 15 0 +10009ad0 FUN_10009ad0 undefined FUN_10009ad0(void) 14 0 +10009ae0 FUN_10009ae0 undefined FUN_10009ae0(void) 14 0 +10009af0 FUN_10009af0 undefined FUN_10009af0(void) 72 0 +10009b60 FUN_10009b60 undefined FUN_10009b60(void) 72 0 +10009bc0 FUN_10009bc0 undefined FUN_10009bc0(void) 14 0 +10009bf0 FUN_10009bf0 undefined FUN_10009bf0(void) 19 0 +10009c10 FUN_10009c10 undefined FUN_10009c10(void) 19 0 +10009c40 FUN_10009c40 undefined FUN_10009c40(void) 72 0 +10009ca0 FUN_10009ca0 undefined FUN_10009ca0(void) 72 0 +10009d00 FUN_10009d00 undefined FUN_10009d00(void) 72 0 +10009d50 FUN_10009d50 undefined FUN_10009d50(void) 14 0 +10009d80 FUN_10009d80 undefined FUN_10009d80(void) 14 0 +10009d90 FUN_10009d90 undefined FUN_10009d90(void) 14 0 +10009db0 FUN_10009db0 undefined FUN_10009db0(void) 14 0 +10009dc0 FUN_10009dc0 undefined FUN_10009dc0(void) 14 0 +10009dd0 FUN_10009dd0 undefined FUN_10009dd0(void) 14 0 +10009e00 FUN_10009e00 undefined FUN_10009e00(void) 72 0 +10009e50 FUN_10009e50 undefined FUN_10009e50(void) 14 0 +10009e60 FUN_10009e60 undefined FUN_10009e60(void) 14 0 +10009e70 FUN_10009e70 undefined FUN_10009e70(void) 14 0 +10009ea0 FUN_10009ea0 undefined FUN_10009ea0(void) 14 0 +10009f30 FUN_10009f30 undefined FUN_10009f30(void) 72 0 +10009fa0 FUN_10009fa0 undefined FUN_10009fa0(void) 14 0 +10009fb0 FUN_10009fb0 undefined FUN_10009fb0(void) 14 0 +1000a020 FUN_1000a020 undefined FUN_1000a020(void) 8 0 +1000a040 FUN_1000a040 undefined FUN_1000a040(void) 14 0 +1000a050 FUN_1000a050 undefined FUN_1000a050(void) 72 0 +1000a0b0 FUN_1000a0b0 undefined FUN_1000a0b0(void) 14 0 +1000a0d0 FUN_1000a0d0 undefined FUN_1000a0d0(void) 19 1 +1000a100 FUN_1000a100 undefined FUN_1000a100(void) 14 0 +1000a120 FUN_1000a120 undefined FUN_1000a120(void) 72 0 +1000a180 FUN_1000a180 undefined FUN_1000a180(void) 72 0 +1000a1e0 FUN_1000a1e0 undefined FUN_1000a1e0(void) 72 0 +1000a230 FUN_1000a230 undefined FUN_1000a230(void) 72 0 +1000a290 FUN_1000a290 undefined FUN_1000a290(void) 14 0 +1000a2b0 FUN_1000a2b0 undefined FUN_1000a2b0(void) 19 1 +1000a2e0 FUN_1000a2e0 undefined FUN_1000a2e0(void) 11 0 +1000a2f0 FUN_1000a2f0 undefined FUN_1000a2f0(void) 11 0 +1000a300 FUN_1000a300 undefined FUN_1000a300(void) 11 0 +1000a310 FUN_1000a310 undefined FUN_1000a310(void) 28 0 +1000a330 FUN_1000a330 undefined FUN_1000a330(void) 11 0 +1000a340 FUN_1000a340 undefined FUN_1000a340(void) 11 0 +1000a350 FUN_1000a350 undefined FUN_1000a350(void) 11 0 +1000a360 FUN_1000a360 undefined FUN_1000a360(void) 11 0 +1000a370 FUN_1000a370 undefined FUN_1000a370(void) 11 0 +1000a380 FUN_1000a380 undefined FUN_1000a380(void) 11 0 +1000a390 FUN_1000a390 undefined FUN_1000a390(void) 11 0 +1000a3a0 FUN_1000a3a0 undefined FUN_1000a3a0(void) 11 0 +1000a3b0 FUN_1000a3b0 undefined FUN_1000a3b0(void) 28 0 +1000a3d0 FUN_1000a3d0 undefined FUN_1000a3d0(void) 11 0 +1000a3e0 FUN_1000a3e0 undefined FUN_1000a3e0(void) 11 0 +1000a3f0 FUN_1000a3f0 undefined FUN_1000a3f0(void) 11 0 +1000a410 FUN_1000a410 undefined FUN_1000a410(void) 11 0 +1000a420 FUN_1000a420 undefined FUN_1000a420(void) 11 0 +1000a430 FUN_1000a430 undefined FUN_1000a430(void) 11 0 +1000a440 FUN_1000a440 undefined FUN_1000a440(void) 11 0 +1000a450 FUN_1000a450 undefined FUN_1000a450(void) 11 0 +1000a460 FUN_1000a460 undefined FUN_1000a460(void) 28 0 +1000a480 FUN_1000a480 undefined FUN_1000a480(void) 10 0 +1000a490 FUN_1000a490 undefined FUN_1000a490(void) 11 0 +1000a4a0 FUN_1000a4a0 undefined FUN_1000a4a0(void) 11 0 +1000a4b0 FUN_1000a4b0 undefined FUN_1000a4b0(void) 8 0 +1000a4c0 FUN_1000a4c0 undefined FUN_1000a4c0(void) 11 0 +1000a4d0 FUN_1000a4d0 undefined FUN_1000a4d0(void) 11 0 +1000a4e0 FUN_1000a4e0 undefined FUN_1000a4e0(void) 11 0 +1000a4f0 FUN_1000a4f0 undefined FUN_1000a4f0(void) 11 0 +1000a500 FUN_1000a500 undefined FUN_1000a500(void) 8 0 +1000a510 FUN_1000a510 undefined FUN_1000a510(void) 11 0 +1000a520 FUN_1000a520 undefined FUN_1000a520(void) 11 0 +1000a530 FUN_1000a530 undefined FUN_1000a530(void) 11 0 +1000a540 FUN_1000a540 undefined FUN_1000a540(void) 11 0 +1000a550 FUN_1000a550 undefined FUN_1000a550(void) 11 0 +1000a560 FUN_1000a560 undefined FUN_1000a560(void) 28 0 +1000a580 FUN_1000a580 undefined FUN_1000a580(void) 11 0 +1000a590 FUN_1000a590 undefined FUN_1000a590(void) 11 0 +1000a5a0 FUN_1000a5a0 undefined FUN_1000a5a0(void) 11 0 +1000a5b0 FUN_1000a5b0 undefined FUN_1000a5b0(void) 28 0 +1000a5d0 FUN_1000a5d0 undefined FUN_1000a5d0(void) 11 0 +1000a5e0 FUN_1000a5e0 undefined FUN_1000a5e0(void) 11 0 +1000a5f0 FUN_1000a5f0 undefined FUN_1000a5f0(void) 11 0 +1000a600 FUN_1000a600 undefined FUN_1000a600(void) 11 0 +1000a610 FUN_1000a610 undefined FUN_1000a610(void) 11 0 +1000a620 FUN_1000a620 undefined FUN_1000a620(void) 11 0 +1000a630 FUN_1000a630 undefined FUN_1000a630(void) 11 0 +1000a640 FUN_1000a640 undefined FUN_1000a640(void) 11 0 +1000a650 FUN_1000a650 undefined FUN_1000a650(void) 8 0 +1000a660 FUN_1000a660 undefined FUN_1000a660(void) 11 0 +1000a670 FUN_1000a670 undefined FUN_1000a670(void) 11 0 +1000a680 FUN_1000a680 undefined FUN_1000a680(void) 13 0 +1000a690 FUN_1000a690 undefined FUN_1000a690(void) 13 0 +1000a6a0 FUN_1000a6a0 undefined FUN_1000a6a0(void) 11 0 +1000a6b0 FUN_1000a6b0 undefined FUN_1000a6b0(void) 11 0 +1000a6c0 FUN_1000a6c0 undefined FUN_1000a6c0(void) 11 0 +1000a6d0 FUN_1000a6d0 undefined FUN_1000a6d0(void) 11 0 +1000a6e0 FUN_1000a6e0 undefined FUN_1000a6e0(void) 11 0 +1000a6f0 FUN_1000a6f0 undefined FUN_1000a6f0(void) 11 0 +1000a700 FUN_1000a700 undefined FUN_1000a700(void) 11 0 +1000a710 FUN_1000a710 undefined FUN_1000a710(void) 11 0 +1000a720 FUN_1000a720 undefined FUN_1000a720(void) 11 0 +1000a730 FUN_1000a730 undefined FUN_1000a730(void) 11 0 +1000a740 FUN_1000a740 undefined FUN_1000a740(void) 11 0 +1000a750 FUN_1000a750 undefined FUN_1000a750(void) 11 0 +1000a760 FUN_1000a760 undefined FUN_1000a760(void) 28 0 +1000a780 FUN_1000a780 undefined FUN_1000a780(void) 11 0 +1000a790 FUN_1000a790 undefined FUN_1000a790(void) 11 0 +1000a7a0 FUN_1000a7a0 undefined FUN_1000a7a0(void) 8 0 +1000a7b0 FUN_1000a7b0 undefined FUN_1000a7b0(void) 11 0 +1000a7c0 FUN_1000a7c0 undefined FUN_1000a7c0(void) 11 0 +1000a7d0 FUN_1000a7d0 undefined FUN_1000a7d0(void) 11 0 +1000a7e0 FUN_1000a7e0 undefined FUN_1000a7e0(void) 11 0 +1000a7f0 FUN_1000a7f0 undefined FUN_1000a7f0(void) 8 0 +1000a800 FUN_1000a800 undefined FUN_1000a800(void) 11 0 +1000a810 FUN_1000a810 undefined FUN_1000a810(void) 11 0 +1000a820 FUN_1000a820 undefined FUN_1000a820(void) 11 0 +1000a830 FUN_1000a830 undefined FUN_1000a830(void) 11 0 +1000a840 FUN_1000a840 undefined FUN_1000a840(void) 8 0 +1000a850 FUN_1000a850 undefined FUN_1000a850(void) 11 0 +1000a860 FUN_1000a860 undefined FUN_1000a860(void) 11 0 +1000a870 FUN_1000a870 undefined FUN_1000a870(void) 11 0 +1000a880 FUN_1000a880 undefined FUN_1000a880(void) 11 0 +1000a890 FUN_1000a890 undefined FUN_1000a890(void) 11 0 +1000a8a0 FUN_1000a8a0 undefined FUN_1000a8a0(void) 8 0 +1000a8b0 FUN_1000a8b0 undefined FUN_1000a8b0(void) 11 0 +1000a8c0 FUN_1000a8c0 undefined FUN_1000a8c0(void) 11 0 +1000a8d0 FUN_1000a8d0 undefined FUN_1000a8d0(void) 29 0 +1000a8f0 FUN_1000a8f0 undefined FUN_1000a8f0(void) 28 0 +1000a910 FUN_1000a910 undefined FUN_1000a910(void) 11 0 +1000a920 FUN_1000a920 undefined FUN_1000a920(void) 11 0 +1000a930 FUN_1000a930 undefined FUN_1000a930(void) 8 0 +1000a940 FUN_1000a940 undefined FUN_1000a940(void) 11 0 +1000a950 FUN_1000a950 undefined FUN_1000a950(void) 11 0 +1000a960 FUN_1000a960 undefined FUN_1000a960(void) 11 0 +1000a970 FUN_1000a970 undefined FUN_1000a970(void) 11 0 +1000a980 FUN_1000a980 undefined FUN_1000a980(void) 11 0 +1000a990 FUN_1000a990 undefined FUN_1000a990(void) 11 0 +1000a9a0 FUN_1000a9a0 undefined FUN_1000a9a0(void) 11 0 +1000a9b0 FUN_1000a9b0 undefined FUN_1000a9b0(void) 8 0 +1000a9c0 FUN_1000a9c0 undefined FUN_1000a9c0(void) 11 0 +1000a9d0 FUN_1000a9d0 undefined FUN_1000a9d0(void) 11 0 +1000a9e0 FUN_1000a9e0 undefined FUN_1000a9e0(void) 11 0 +1000a9f0 FUN_1000a9f0 undefined FUN_1000a9f0(void) 11 0 +1000aa00 FUN_1000aa00 undefined FUN_1000aa00(void) 11 0 +1000aa10 FUN_1000aa10 undefined FUN_1000aa10(void) 11 0 +1000aa20 FUN_1000aa20 undefined FUN_1000aa20(void) 28 0 +1000aa40 FUN_1000aa40 undefined FUN_1000aa40(void) 11 0 +1000aa50 FUN_1000aa50 undefined FUN_1000aa50(void) 11 0 +1000aa60 FUN_1000aa60 undefined FUN_1000aa60(void) 8 0 +1000aa70 FUN_1000aa70 undefined FUN_1000aa70(void) 11 0 +1000aa80 FUN_1000aa80 undefined FUN_1000aa80(void) 11 0 +1000aa90 FUN_1000aa90 undefined FUN_1000aa90(void) 14 0 +1000aaa0 FUN_1000aaa0 undefined FUN_1000aaa0(void) 11 0 +1000aab0 FUN_1000aab0 undefined FUN_1000aab0(void) 11 0 +1000aac0 FUN_1000aac0 undefined FUN_1000aac0(void) 11 0 +1000aad0 FUN_1000aad0 undefined FUN_1000aad0(void) 11 0 +1000aae0 FUN_1000aae0 undefined FUN_1000aae0(void) 11 0 +1000aaf0 FUN_1000aaf0 undefined FUN_1000aaf0(void) 28 0 +1000ab10 FUN_1000ab10 undefined FUN_1000ab10(void) 14 0 +1000ab20 FUN_1000ab20 undefined FUN_1000ab20(void) 11 0 +1000ab30 FUN_1000ab30 undefined FUN_1000ab30(void) 11 0 +1000ab40 FUN_1000ab40 undefined FUN_1000ab40(void) 8 0 +1000ab50 FUN_1000ab50 undefined FUN_1000ab50(void) 11 0 +1000ab60 FUN_1000ab60 undefined FUN_1000ab60(void) 11 0 +1000ab70 FUN_1000ab70 undefined FUN_1000ab70(void) 14 0 +1000ab80 FUN_1000ab80 undefined FUN_1000ab80(void) 11 0 +1000ab90 FUN_1000ab90 undefined FUN_1000ab90(void) 11 0 +1000aba0 FUN_1000aba0 undefined FUN_1000aba0(void) 8 0 +1000abb0 FUN_1000abb0 undefined FUN_1000abb0(void) 11 0 +1000abc0 FUN_1000abc0 undefined FUN_1000abc0(void) 11 0 +1000abd0 FUN_1000abd0 undefined FUN_1000abd0(void) 11 0 +1000abe0 FUN_1000abe0 undefined FUN_1000abe0(void) 11 0 +1000abf0 FUN_1000abf0 undefined FUN_1000abf0(void) 11 0 +1000ac00 FUN_1000ac00 undefined FUN_1000ac00(void) 11 0 +1000ac10 FUN_1000ac10 undefined FUN_1000ac10(void) 28 0 +1000ac30 FUN_1000ac30 undefined FUN_1000ac30(void) 11 0 +1000ac40 FUN_1000ac40 undefined FUN_1000ac40(void) 11 0 +1000ac50 FUN_1000ac50 undefined FUN_1000ac50(void) 8 0 +1000ac60 FUN_1000ac60 undefined FUN_1000ac60(void) 11 0 +1000ac70 FUN_1000ac70 undefined FUN_1000ac70(void) 11 0 +1000ac80 FUN_1000ac80 undefined FUN_1000ac80(void) 11 0 +1000ac90 FUN_1000ac90 undefined FUN_1000ac90(void) 11 0 +1000aca0 FUN_1000aca0 undefined FUN_1000aca0(void) 11 0 +1000acb0 FUN_1000acb0 undefined FUN_1000acb0(void) 11 0 +1000acc0 FUN_1000acc0 undefined FUN_1000acc0(void) 28 0 +1000ace0 FUN_1000ace0 undefined FUN_1000ace0(void) 11 0 +1000acf0 FUN_1000acf0 undefined FUN_1000acf0(void) 11 0 +1000ad00 FUN_1000ad00 undefined FUN_1000ad00(void) 11 0 +1000ad10 FUN_1000ad10 undefined FUN_1000ad10(void) 11 0 +1000ad20 FUN_1000ad20 undefined FUN_1000ad20(void) 11 0 +1000ad30 FUN_1000ad30 undefined FUN_1000ad30(void) 11 0 +1000ad40 FUN_1000ad40 undefined FUN_1000ad40(void) 11 0 +1000ad50 FUN_1000ad50 undefined FUN_1000ad50(void) 11 0 +1000ad60 FUN_1000ad60 undefined FUN_1000ad60(void) 28 0 +1000ad80 FUN_1000ad80 undefined FUN_1000ad80(void) 11 0 +1000ad90 FUN_1000ad90 undefined FUN_1000ad90(void) 11 0 +1000ada0 FUN_1000ada0 undefined FUN_1000ada0(void) 8 0 +1000adb0 FUN_1000adb0 undefined FUN_1000adb0(void) 11 0 +1000adc0 FUN_1000adc0 undefined FUN_1000adc0(void) 11 0 +1000add0 FUN_1000add0 undefined FUN_1000add0(void) 11 0 +1000ade0 FUN_1000ade0 undefined FUN_1000ade0(void) 29 0 +1000ae00 FUN_1000ae00 undefined FUN_1000ae00(void) 28 0 +1000ae20 FUN_1000ae20 undefined FUN_1000ae20(void) 52 0 +1000ae70 FUN_1000ae70 undefined FUN_1000ae70(void) 11 0 +1000ae80 FUN_1000ae80 undefined FUN_1000ae80(void) 29 0 +1000aea0 FUN_1000aea0 undefined FUN_1000aea0(void) 28 0 +1000aed0 FUN_1000aed0 undefined FUN_1000aed0(void) 11 0 +1000aee0 FUN_1000aee0 undefined FUN_1000aee0(void) 11 0 +1000aef0 FUN_1000aef0 undefined FUN_1000aef0(void) 8 0 +1000af00 FUN_1000af00 undefined FUN_1000af00(void) 11 0 +1000af10 FUN_1000af10 undefined FUN_1000af10(void) 11 0 +1000af20 FUN_1000af20 undefined FUN_1000af20(void) 11 0 +1000af30 FUN_1000af30 undefined FUN_1000af30(void) 11 0 +1000af40 FUN_1000af40 undefined FUN_1000af40(void) 8 0 +1000af50 FUN_1000af50 undefined FUN_1000af50(void) 11 0 +1000af60 FUN_1000af60 undefined FUN_1000af60(void) 11 0 +1000af70 FUN_1000af70 undefined FUN_1000af70(void) 11 0 +1000af80 FUN_1000af80 undefined FUN_1000af80(void) 11 0 +1000af90 FUN_1000af90 undefined FUN_1000af90(void) 28 0 +1000afb0 FUN_1000afb0 undefined FUN_1000afb0(void) 11 0 +1000afc0 FUN_1000afc0 undefined FUN_1000afc0(void) 11 0 +1000afd0 FUN_1000afd0 undefined FUN_1000afd0(void) 8 0 +1000afe0 FUN_1000afe0 undefined FUN_1000afe0(void) 11 0 +1000aff0 FUN_1000aff0 undefined FUN_1000aff0(void) 11 0 +1000b000 FUN_1000b000 undefined FUN_1000b000(void) 11 0 +1000b010 FUN_1000b010 undefined FUN_1000b010(void) 11 0 +1000b020 FUN_1000b020 undefined FUN_1000b020(void) 11 0 +1000b030 FUN_1000b030 undefined FUN_1000b030(void) 11 0 +1000b040 FUN_1000b040 undefined FUN_1000b040(void) 11 0 +1000b050 FUN_1000b050 undefined FUN_1000b050(void) 11 0 +1000b060 FUN_1000b060 undefined FUN_1000b060(void) 11 0 +1000b070 FUN_1000b070 undefined FUN_1000b070(void) 11 0 +1000b080 FUN_1000b080 undefined FUN_1000b080(void) 11 0 +1000b090 FUN_1000b090 undefined FUN_1000b090(void) 11 0 +1000b0a0 FUN_1000b0a0 undefined FUN_1000b0a0(void) 11 0 +1000b0b0 FUN_1000b0b0 undefined FUN_1000b0b0(void) 8 0 +1000b0c0 FUN_1000b0c0 undefined FUN_1000b0c0(void) 11 0 +1000b0d0 FUN_1000b0d0 undefined FUN_1000b0d0(void) 11 0 +1000b0e0 FUN_1000b0e0 undefined FUN_1000b0e0(void) 11 0 +1000b0f0 FUN_1000b0f0 undefined FUN_1000b0f0(void) 29 0 +1000b110 FUN_1000b110 undefined FUN_1000b110(void) 28 0 +1000b130 FUN_1000b130 undefined FUN_1000b130(void) 11 0 +1000b140 FUN_1000b140 undefined FUN_1000b140(void) 11 0 +1000b150 FUN_1000b150 undefined FUN_1000b150(void) 8 0 +1000b160 FUN_1000b160 undefined FUN_1000b160(void) 11 0 +1000b170 FUN_1000b170 undefined FUN_1000b170(void) 11 0 +1000b180 FUN_1000b180 undefined FUN_1000b180(void) 15 0 +1000b190 FUN_1000b190 undefined FUN_1000b190(void) 18 0 +1000b1b0 FUN_1000b1b0 undefined FUN_1000b1b0(void) 18 0 +1000b1d0 FUN_1000b1d0 undefined FUN_1000b1d0(void) 14 0 +1000b1f0 FUN_1000b1f0 undefined FUN_1000b1f0(void) 84 0 +1000b250 FUN_1000b250 undefined FUN_1000b250(void) 14 0 +1000b260 FUN_1000b260 undefined FUN_1000b260(void) 14 0 +1000b270 FUN_1000b270 undefined FUN_1000b270(void) 14 0 +1000b280 FUN_1000b280 undefined FUN_1000b280(void) 14 0 +1000b290 FUN_1000b290 undefined FUN_1000b290(void) 19 0 +1000b2b0 FUN_1000b2b0 undefined FUN_1000b2b0(void) 19 0 +1000b2e0 FUN_1000b2e0 undefined FUN_1000b2e0(void) 19 0 +1000b300 FUN_1000b300 undefined FUN_1000b300(void) 14 0 +1000b310 FUN_1000b310 undefined FUN_1000b310(void) 14 0 +1000b320 FUN_1000b320 undefined FUN_1000b320(void) 14 0 +1000b330 FUN_1000b330 undefined FUN_1000b330(void) 21 0 +1000b350 FUN_1000b350 undefined FUN_1000b350(void) 14 0 +1000b360 FUN_1000b360 undefined FUN_1000b360(void) 14 0 +1000b370 FUN_1000b370 undefined FUN_1000b370(void) 14 0 +1000b380 FUN_1000b380 undefined FUN_1000b380(void) 14 0 +1000b390 FUN_1000b390 undefined FUN_1000b390(void) 14 0 +1000b3a0 FUN_1000b3a0 undefined FUN_1000b3a0(void) 14 0 +1000b3b0 FUN_1000b3b0 undefined FUN_1000b3b0(void) 14 0 +1000b3c0 FUN_1000b3c0 undefined FUN_1000b3c0(void) 14 0 +1000b3d0 FUN_1000b3d0 undefined FUN_1000b3d0(void) 14 0 +1000b3e0 FUN_1000b3e0 undefined FUN_1000b3e0(void) 14 0 +1000b3f0 FUN_1000b3f0 undefined FUN_1000b3f0(void) 14 0 +1000b400 FUN_1000b400 undefined FUN_1000b400(void) 14 0 +1000b410 FUN_1000b410 undefined FUN_1000b410(void) 14 0 +1000b420 FUN_1000b420 undefined FUN_1000b420(void) 14 0 +1000b430 FUN_1000b430 undefined FUN_1000b430(void) 14 0 +1000b440 FUN_1000b440 undefined FUN_1000b440(void) 14 0 +1000b450 FUN_1000b450 undefined FUN_1000b450(void) 72 0 +1000b4a0 FUN_1000b4a0 undefined FUN_1000b4a0(void) 14 0 +1000b4b0 FUN_1000b4b0 undefined FUN_1000b4b0(void) 14 0 +1000b4c0 FUN_1000b4c0 undefined FUN_1000b4c0(void) 14 0 +1000b4f0 FUN_1000b4f0 undefined FUN_1000b4f0(void) 19 0 +1000b510 FUN_1000b510 undefined FUN_1000b510(void) 19 0 +1000b530 FUN_1000b530 undefined FUN_1000b530(void) 14 0 +1000b540 FUN_1000b540 undefined FUN_1000b540(void) 14 0 +1000b550 FUN_1000b550 undefined FUN_1000b550(void) 14 0 +1000b560 FUN_1000b560 undefined FUN_1000b560(void) 14 0 +1000b570 FUN_1000b570 undefined FUN_1000b570(void) 19 0 +1000b590 FUN_1000b590 undefined FUN_1000b590(void) 19 0 +1000b5b0 FUN_1000b5b0 undefined FUN_1000b5b0(void) 19 0 +1000b5d0 FUN_1000b5d0 undefined FUN_1000b5d0(void) 19 0 +1000b5f0 FUN_1000b5f0 undefined FUN_1000b5f0(void) 19 0 +1000b610 FUN_1000b610 undefined FUN_1000b610(void) 19 0 +1000b630 FUN_1000b630 undefined FUN_1000b630(void) 19 0 +1000b650 FUN_1000b650 undefined FUN_1000b650(void) 19 0 +1000b670 FUN_1000b670 undefined FUN_1000b670(void) 19 0 +1000b690 FUN_1000b690 undefined FUN_1000b690(void) 19 0 +1000b6b0 FUN_1000b6b0 undefined FUN_1000b6b0(void) 19 0 +1000b6d0 FUN_1000b6d0 undefined FUN_1000b6d0(void) 19 0 +1000b6f0 FUN_1000b6f0 undefined FUN_1000b6f0(void) 19 0 +1000b710 FUN_1000b710 undefined FUN_1000b710(void) 19 0 +1000b730 FUN_1000b730 undefined FUN_1000b730(void) 19 0 +1000b750 FUN_1000b750 undefined FUN_1000b750(void) 19 0 +1000b770 FUN_1000b770 undefined FUN_1000b770(void) 19 0 +1000b790 FUN_1000b790 undefined FUN_1000b790(void) 19 0 +1000b7b0 FUN_1000b7b0 undefined FUN_1000b7b0(void) 19 0 +1000b7d0 FUN_1000b7d0 undefined FUN_1000b7d0(void) 19 0 +1000b7f0 FUN_1000b7f0 undefined FUN_1000b7f0(void) 19 0 +1000b810 FUN_1000b810 undefined FUN_1000b810(void) 19 0 +1000b830 FUN_1000b830 undefined FUN_1000b830(void) 19 0 +1000b850 FUN_1000b850 undefined FUN_1000b850(void) 19 0 +1000b870 FUN_1000b870 undefined FUN_1000b870(void) 19 0 +1000b890 FUN_1000b890 undefined FUN_1000b890(void) 19 0 +1000b8b0 FUN_1000b8b0 undefined FUN_1000b8b0(void) 19 0 +1000b8d0 FUN_1000b8d0 undefined FUN_1000b8d0(void) 19 0 +1000b920 FUN_1000b920 undefined FUN_1000b920(void) 87 0 +1000b980 FUN_1000b980 undefined FUN_1000b980(void) 11 0 +1000b990 FUN_1000b990 undefined FUN_1000b990(void) 29 0 +1000b9b0 FUN_1000b9b0 undefined FUN_1000b9b0(void) 11 0 +1000b9c0 FUN_1000b9c0 undefined FUN_1000b9c0(void) 11 0 +1000b9d0 FUN_1000b9d0 undefined FUN_1000b9d0(void) 11 0 +1000b9e0 FUN_1000b9e0 undefined FUN_1000b9e0(void) 11 0 +1000b9f0 FUN_1000b9f0 undefined FUN_1000b9f0(void) 29 0 +1000ba10 FUN_1000ba10 undefined FUN_1000ba10(void) 28 0 +1000ba50 FUN_1000ba50 undefined FUN_1000ba50(void) 87 0 +1000bab0 FUN_1000bab0 undefined FUN_1000bab0(void) 11 0 +1000bac0 FUN_1000bac0 undefined FUN_1000bac0(void) 29 0 +1000bae0 FUN_1000bae0 undefined FUN_1000bae0(void) 11 0 +1000baf0 FUN_1000baf0 undefined FUN_1000baf0(void) 11 0 +1000bb00 FUN_1000bb00 undefined FUN_1000bb00(void) 8 0 +1000bb10 FUN_1000bb10 undefined FUN_1000bb10(void) 11 0 +1000bb20 FUN_1000bb20 undefined FUN_1000bb20(void) 11 0 +1000bb30 FUN_1000bb30 undefined FUN_1000bb30(void) 11 0 +1000bb40 FUN_1000bb40 undefined FUN_1000bb40(void) 29 0 +1000bb60 FUN_1000bb60 undefined FUN_1000bb60(void) 28 0 +1000bba0 FUN_1000bba0 undefined FUN_1000bba0(void) 29 0 +1000bbe0 FUN_1000bbe0 undefined FUN_1000bbe0(void) 83 0 +1000bc50 FUN_1000bc50 undefined FUN_1000bc50(void) 87 0 +1000bcb0 FUN_1000bcb0 undefined FUN_1000bcb0(void) 29 0 +1000bd00 FUN_1000bd00 undefined FUN_1000bd00(void) 87 0 +1000bd60 FUN_1000bd60 undefined FUN_1000bd60(void) 29 0 +1000bde0 FUN_1000bde0 undefined FUN_1000bde0(void) 87 0 +1000be40 FUN_1000be40 undefined FUN_1000be40(void) 11 0 +1000be50 FUN_1000be50 undefined FUN_1000be50(void) 29 0 +1000be70 FUN_1000be70 undefined FUN_1000be70(void) 28 0 +1000bec0 FUN_1000bec0 undefined FUN_1000bec0(void) 87 0 +1000bf20 FUN_1000bf20 undefined FUN_1000bf20(void) 11 0 +1000bf30 FUN_1000bf30 undefined FUN_1000bf30(void) 29 0 +1000bf50 FUN_1000bf50 undefined FUN_1000bf50(void) 28 0 +1000bfa0 FUN_1000bfa0 undefined FUN_1000bfa0(void) 87 0 +1000c000 FUN_1000c000 undefined FUN_1000c000(void) 29 0 +1000c020 FUN_1000c020 undefined FUN_1000c020(void) 28 0 +1000c060 FUN_1000c060 undefined FUN_1000c060(void) 87 0 +1000c0c0 FUN_1000c0c0 undefined FUN_1000c0c0(void) 11 0 +1000c0d0 FUN_1000c0d0 undefined FUN_1000c0d0(void) 29 0 +1000c0f0 FUN_1000c0f0 undefined FUN_1000c0f0(void) 28 0 +1000c130 FUN_1000c130 undefined FUN_1000c130(void) 90 0 +1000c190 FUN_1000c190 undefined FUN_1000c190(void) 34 0 +1000c1c0 FUN_1000c1c0 undefined FUN_1000c1c0(void) 32 0 +1000c210 FUN_1000c210 undefined FUN_1000c210(void) 87 0 +1000c270 FUN_1000c270 undefined FUN_1000c270(void) 29 0 +1000c290 FUN_1000c290 undefined FUN_1000c290(void) 28 0 +1000c2e0 FUN_1000c2e0 undefined FUN_1000c2e0(void) 87 0 +1000c340 FUN_1000c340 undefined FUN_1000c340(void) 29 0 +1000c390 FUN_1000c390 undefined FUN_1000c390(void) 87 0 +1000c3f0 FUN_1000c3f0 undefined FUN_1000c3f0(void) 11 0 +1000c400 FUN_1000c400 undefined FUN_1000c400(void) 29 0 +1000c420 FUN_1000c420 undefined FUN_1000c420(void) 28 0 +1000c470 FUN_1000c470 undefined FUN_1000c470(void) 87 0 +1000c4d0 FUN_1000c4d0 undefined FUN_1000c4d0(void) 11 0 +1000c4e0 FUN_1000c4e0 undefined FUN_1000c4e0(void) 29 0 +1000c500 FUN_1000c500 undefined FUN_1000c500(void) 28 0 +1000c550 FUN_1000c550 undefined FUN_1000c550(void) 87 0 +1000c5b0 FUN_1000c5b0 undefined FUN_1000c5b0(void) 11 0 +1000c5c0 FUN_1000c5c0 undefined FUN_1000c5c0(void) 29 0 +1000c5e0 FUN_1000c5e0 undefined FUN_1000c5e0(void) 28 0 +1000c610 FUN_1000c610 undefined FUN_1000c610(void) 29 0 +1000c630 FUN_1000c630 undefined FUN_1000c630(void) 28 0 +1000c690 FUN_1000c690 undefined FUN_1000c690(void) 87 0 +1000c6f0 FUN_1000c6f0 undefined FUN_1000c6f0(void) 11 0 +1000c700 FUN_1000c700 undefined FUN_1000c700(void) 29 0 +1000c720 FUN_1000c720 undefined FUN_1000c720(void) 28 0 +1000c770 FUN_1000c770 undefined FUN_1000c770(void) 87 0 +1000c7d0 FUN_1000c7d0 undefined FUN_1000c7d0(void) 11 0 +1000c7e0 FUN_1000c7e0 undefined FUN_1000c7e0(void) 29 0 +1000c800 FUN_1000c800 undefined FUN_1000c800(void) 28 0 +1000c850 FUN_1000c850 undefined FUN_1000c850(void) 87 0 +1000c8b0 FUN_1000c8b0 undefined FUN_1000c8b0(void) 29 0 +1000c900 FUN_1000c900 undefined FUN_1000c900(void) 87 0 +1000c960 FUN_1000c960 undefined FUN_1000c960(void) 11 0 +1000c970 FUN_1000c970 undefined FUN_1000c970(void) 29 0 +1000c990 FUN_1000c990 undefined FUN_1000c990(void) 28 0 +1000c9f0 FUN_1000c9f0 undefined FUN_1000c9f0(void) 87 0 +1000ca50 FUN_1000ca50 undefined FUN_1000ca50(void) 29 0 +1000cab0 FUN_1000cab0 undefined FUN_1000cab0(void) 29 0 +1000cad0 FUN_1000cad0 undefined FUN_1000cad0(void) 28 0 +1000cb70 FUN_1000cb70 undefined FUN_1000cb70(void) 87 0 +1000cbd0 FUN_1000cbd0 undefined FUN_1000cbd0(void) 11 0 +1000cbe0 FUN_1000cbe0 undefined FUN_1000cbe0(void) 29 0 +1000cc00 FUN_1000cc00 undefined FUN_1000cc00(void) 28 0 +1000cc40 FUN_1000cc40 undefined FUN_1000cc40(void) 29 0 +1000cc80 FUN_1000cc80 undefined FUN_1000cc80(void) 29 0 +1000cca0 FUN_1000cca0 undefined FUN_1000cca0(void) 28 0 +1000ccf0 FUN_1000ccf0 undefined FUN_1000ccf0(void) 87 0 +1000cd50 FUN_1000cd50 undefined FUN_1000cd50(void) 29 0 +1000cd90 FUN_1000cd90 undefined FUN_1000cd90(void) 29 0 +1000cdb0 FUN_1000cdb0 undefined FUN_1000cdb0(void) 28 0 +1000ce00 FUN_1000ce00 undefined FUN_1000ce00(void) 87 0 +1000ce60 FUN_1000ce60 undefined FUN_1000ce60(void) 29 0 +1000cf10 FUN_1000cf10 undefined FUN_1000cf10(void) 87 0 +1000cf70 FUN_1000cf70 undefined FUN_1000cf70(void) 11 0 +1000cf80 FUN_1000cf80 undefined FUN_1000cf80(void) 29 0 +1000cfa0 FUN_1000cfa0 undefined FUN_1000cfa0(void) 28 0 +1000cff0 FUN_1000cff0 undefined FUN_1000cff0(void) 87 0 +1000d050 FUN_1000d050 undefined FUN_1000d050(void) 29 0 +1000d070 FUN_1000d070 undefined FUN_1000d070(void) 28 0 +1000d0a0 FUN_1000d0a0 undefined FUN_1000d0a0(void) 29 0 +1000d0f0 FUN_1000d0f0 undefined FUN_1000d0f0(void) 87 0 +1000d150 FUN_1000d150 undefined FUN_1000d150(void) 11 0 +1000d160 FUN_1000d160 undefined FUN_1000d160(void) 29 0 +1000d180 FUN_1000d180 undefined FUN_1000d180(void) 28 0 +1000d1c0 FUN_1000d1c0 undefined FUN_1000d1c0(void) 29 0 +1000d1e0 FUN_1000d1e0 undefined FUN_1000d1e0(void) 28 0 +1000d230 FUN_1000d230 undefined FUN_1000d230(void) 87 0 +1000d290 FUN_1000d290 undefined FUN_1000d290(void) 29 0 +1000d2b0 FUN_1000d2b0 undefined FUN_1000d2b0(void) 28 0 +1000d300 FUN_1000d300 undefined FUN_1000d300(void) 87 0 +1000d360 FUN_1000d360 undefined FUN_1000d360(void) 11 0 +1000d370 FUN_1000d370 undefined FUN_1000d370(void) 29 0 +1000d390 FUN_1000d390 undefined FUN_1000d390(void) 28 0 +1000d3f0 FUN_1000d3f0 undefined FUN_1000d3f0(void) 87 0 +1000d450 FUN_1000d450 undefined FUN_1000d450(void) 11 0 +1000d460 FUN_1000d460 undefined FUN_1000d460(void) 29 0 +1000d480 FUN_1000d480 undefined FUN_1000d480(void) 28 0 +1000d4b0 FUN_1000d4b0 undefined FUN_1000d4b0(void) 72 0 +1000d510 FUN_1000d510 undefined FUN_1000d510(void) 72 0 +1000d570 FUN_1000d570 undefined FUN_1000d570(void) 14 0 +1000d580 FUN_1000d580 undefined FUN_1000d580(void) 72 0 +1000d6c0 FUN_1000d6c0 undefined FUN_1000d6c0(void) 14 0 +1000d6d0 FUN_1000d6d0 undefined FUN_1000d6d0(void) 14 0 +1000d720 FUN_1000d720 undefined FUN_1000d720(void) 14 0 +1000d740 FUN_1000d740 undefined FUN_1000d740(void) 14 0 +1000d760 FUN_1000d760 undefined FUN_1000d760(void) 14 0 +1000d7a0 FUN_1000d7a0 undefined FUN_1000d7a0(void) 14 0 +1000d7d0 FUN_1000d7d0 undefined FUN_1000d7d0(void) 14 0 +1000d810 FUN_1000d810 undefined FUN_1000d810(void) 14 0 +1000d820 FUN_1000d820 undefined FUN_1000d820(void) 21 0 +1000d880 FUN_1000d880 undefined FUN_1000d880(void) 72 0 +1000d8d0 FUN_1000d8d0 undefined FUN_1000d8d0(void) 14 0 +1000d8e0 FUN_1000d8e0 undefined FUN_1000d8e0(void) 72 0 +1000d930 FUN_1000d930 undefined FUN_1000d930(void) 72 0 +1000d980 FUN_1000d980 undefined FUN_1000d980(void) 14 0 +1000d990 FUN_1000d990 undefined FUN_1000d990(void) 72 0 +1000d9e0 FUN_1000d9e0 undefined FUN_1000d9e0(void) 72 0 +1000da30 FUN_1000da30 undefined FUN_1000da30(void) 14 0 +1000da40 FUN_1000da40 undefined FUN_1000da40(void) 72 0 +1000da90 FUN_1000da90 undefined FUN_1000da90(void) 14 0 +1000daa0 FUN_1000daa0 undefined FUN_1000daa0(void) 72 0 +1000daf0 FUN_1000daf0 undefined FUN_1000daf0(void) 14 0 +1000db00 FUN_1000db00 undefined FUN_1000db00(void) 72 0 +1000db50 FUN_1000db50 undefined FUN_1000db50(void) 72 0 +1000dba0 FUN_1000dba0 undefined FUN_1000dba0(void) 72 0 +1000dbf0 FUN_1000dbf0 undefined FUN_1000dbf0(void) 72 0 +1000dc40 FUN_1000dc40 undefined FUN_1000dc40(void) 14 0 +1000dc50 FUN_1000dc50 undefined FUN_1000dc50(void) 72 0 +1000dca0 FUN_1000dca0 undefined FUN_1000dca0(void) 14 0 +1000dcb0 FUN_1000dcb0 undefined FUN_1000dcb0(void) 72 0 +1000dd00 FUN_1000dd00 undefined FUN_1000dd00(void) 72 0 +1000dd50 FUN_1000dd50 undefined FUN_1000dd50(void) 14 0 +1000dd60 FUN_1000dd60 undefined FUN_1000dd60(void) 72 0 +1000ddb0 FUN_1000ddb0 undefined FUN_1000ddb0(void) 72 0 +1000de00 FUN_1000de00 undefined FUN_1000de00(void) 14 0 +1000de10 FUN_1000de10 undefined FUN_1000de10(void) 72 0 +1000de60 FUN_1000de60 undefined FUN_1000de60(void) 14 0 +1000de70 FUN_1000de70 undefined FUN_1000de70(void) 72 0 +1000ded0 FUN_1000ded0 undefined FUN_1000ded0(void) 15 0 +1000dee0 FUN_1000dee0 undefined FUN_1000dee0(void) 18 0 +1000df10 FUN_1000df10 undefined FUN_1000df10(void) 25 0 +1000df40 FUN_1000df40 undefined FUN_1000df40(void) 43 0 +1000df70 FUN_1000df70 undefined FUN_1000df70(void) 43 0 +1000dfa0 FUN_1000dfa0 undefined FUN_1000dfa0(void) 43 0 +1000dfd0 FUN_1000dfd0 undefined FUN_1000dfd0(void) 43 0 +1000e000 FUN_1000e000 undefined FUN_1000e000(void) 43 0 +1000e030 FUN_1000e030 undefined FUN_1000e030(void) 8 0 +1000e040 FUN_1000e040 undefined FUN_1000e040(void) 8 0 +1000e050 FUN_1000e050 undefined FUN_1000e050(void) 8 0 +1000e060 FUN_1000e060 undefined FUN_1000e060(void) 8 0 +1000e070 FUN_1000e070 undefined FUN_1000e070(void) 8 0 +1000e080 FUN_1000e080 undefined FUN_1000e080(void) 8 0 +1000e090 FUN_1000e090 undefined FUN_1000e090(void) 8 0 +1000e0a0 FUN_1000e0a0 undefined FUN_1000e0a0(void) 8 0 +1000e0c0 FUN_1000e0c0 undefined FUN_1000e0c0(void) 8 0 +1000e0d0 FUN_1000e0d0 undefined FUN_1000e0d0(void) 8 0 +1000e0e0 FUN_1000e0e0 undefined FUN_1000e0e0(void) 8 0 +1000e0f0 FUN_1000e0f0 undefined FUN_1000e0f0(void) 8 0 +1000e100 FUN_1000e100 undefined FUN_1000e100(void) 8 0 +1000e110 FUN_1000e110 undefined FUN_1000e110(void) 8 0 +1000e120 FUN_1000e120 undefined FUN_1000e120(void) 8 0 +1000e130 FUN_1000e130 undefined FUN_1000e130(void) 8 0 +1000e140 FUN_1000e140 undefined FUN_1000e140(void) 8 0 +1000e150 FUN_1000e150 undefined FUN_1000e150(void) 8 0 +1000e160 FUN_1000e160 undefined FUN_1000e160(void) 8 0 +1000e170 FUN_1000e170 undefined FUN_1000e170(void) 8 0 +1000e180 FUN_1000e180 undefined FUN_1000e180(void) 8 0 +1000e1a0 FUN_1000e1a0 undefined FUN_1000e1a0(void) 8 0 +1000e1c0 FUN_1000e1c0 undefined FUN_1000e1c0(void) 8 0 +1000e1d0 FUN_1000e1d0 undefined FUN_1000e1d0(void) 8 0 +1000e1e0 FUN_1000e1e0 undefined FUN_1000e1e0(void) 8 0 +1000e1f0 FUN_1000e1f0 undefined FUN_1000e1f0(void) 8 0 +1000e200 FUN_1000e200 undefined FUN_1000e200(void) 8 0 +1000e210 FUN_1000e210 undefined FUN_1000e210(void) 8 0 +1000e220 FUN_1000e220 undefined FUN_1000e220(void) 8 0 +1000e230 FUN_1000e230 undefined FUN_1000e230(void) 8 0 +1000e240 FUN_1000e240 undefined FUN_1000e240(void) 8 0 +1000e250 FUN_1000e250 undefined FUN_1000e250(void) 8 0 +1000e260 FUN_1000e260 undefined FUN_1000e260(void) 8 0 +1000e290 FUN_1000e290 undefined FUN_1000e290(void) 144 3 +1000e320 FUN_1000e320 undefined FUN_1000e320(void) 8 0 +1000e330 FUN_1000e330 undefined FUN_1000e330(void) 8 0 +1000e340 FUN_1000e340 undefined FUN_1000e340(void) 8 0 +1000e350 FUN_1000e350 undefined FUN_1000e350(void) 8 0 +1000e360 FUN_1000e360 undefined FUN_1000e360(void) 8 0 +1000e370 FUN_1000e370 undefined FUN_1000e370(void) 8 0 +1000e380 FUN_1000e380 undefined FUN_1000e380(void) 8 0 +1000e390 FUN_1000e390 undefined FUN_1000e390(void) 8 0 +1000e3a0 FUN_1000e3a0 undefined FUN_1000e3a0(void) 8 0 +1000e3b0 FUN_1000e3b0 undefined FUN_1000e3b0(void) 8 0 +1000e3c0 FUN_1000e3c0 undefined FUN_1000e3c0(void) 8 0 +1000e3d0 FUN_1000e3d0 undefined FUN_1000e3d0(void) 8 0 +1000e3e0 FUN_1000e3e0 undefined FUN_1000e3e0(void) 8 0 +1000e400 FUN_1000e400 undefined FUN_1000e400(void) 144 3 +1000e490 FUN_1000e490 undefined FUN_1000e490(void) 8 0 +1000e4b0 FUN_1000e4b0 undefined FUN_1000e4b0(void) 146 3 +1000e560 FUN_1000e560 undefined FUN_1000e560(void) 140 3 +1000e600 FUN_1000e600 undefined FUN_1000e600(void) 144 3 +1000e6a0 FUN_1000e6a0 undefined FUN_1000e6a0(void) 143 3 +1000e740 FUN_1000e740 undefined FUN_1000e740(void) 144 3 +1000e7d0 FUN_1000e7d0 undefined FUN_1000e7d0(void) 8 0 +1000e7e0 FUN_1000e7e0 undefined FUN_1000e7e0(void) 144 3 +1000e870 FUN_1000e870 undefined FUN_1000e870(void) 8 0 +1000e890 FUN_1000e890 undefined FUN_1000e890(void) 146 3 +1000e930 FUN_1000e930 undefined FUN_1000e930(void) 144 3 +1000e9d0 FUN_1000e9d0 undefined FUN_1000e9d0(void) 143 3 +1000ea60 FUN_1000ea60 undefined FUN_1000ea60(void) 8 0 +1000ea70 FUN_1000ea70 undefined FUN_1000ea70(void) 8 0 +1000ea80 FUN_1000ea80 undefined FUN_1000ea80(void) 8 0 +1000ea90 FUN_1000ea90 undefined FUN_1000ea90(void) 8 0 +1000eab0 FUN_1000eab0 undefined FUN_1000eab0(void) 144 3 +1000eb50 FUN_1000eb50 undefined FUN_1000eb50(void) 144 3 +1000ebe0 FUN_1000ebe0 undefined FUN_1000ebe0(void) 8 0 +1000ec00 FUN_1000ec00 undefined FUN_1000ec00(void) 144 3 +1000eca0 FUN_1000eca0 undefined FUN_1000eca0(void) 144 3 +1000ed50 FUN_1000ed50 undefined FUN_1000ed50(void) 144 3 +1000edf0 FUN_1000edf0 undefined FUN_1000edf0(void) 144 3 +1000ee80 FUN_1000ee80 undefined FUN_1000ee80(void) 8 0 +1000eea0 FUN_1000eea0 undefined FUN_1000eea0(void) 148 3 +1000ef40 FUN_1000ef40 undefined FUN_1000ef40(void) 8 0 +1000ef60 FUN_1000ef60 undefined FUN_1000ef60(void) 143 3 +1000eff0 FUN_1000eff0 undefined FUN_1000eff0(void) 8 0 +1000f000 FUN_1000f000 undefined FUN_1000f000(void) 8 0 +1000f010 FUN_1000f010 undefined FUN_1000f010(void) 8 0 +1000f030 FUN_1000f030 undefined FUN_1000f030(void) 143 3 +1000f0c0 FUN_1000f0c0 undefined FUN_1000f0c0(void) 8 0 +1000f0e0 FUN_1000f0e0 undefined FUN_1000f0e0(void) 143 3 +1000f170 FUN_1000f170 undefined FUN_1000f170(void) 8 0 +1000f190 FUN_1000f190 undefined FUN_1000f190(void) 146 3 +1000f230 FUN_1000f230 undefined FUN_1000f230(void) 8 0 +1000f250 FUN_1000f250 undefined FUN_1000f250(void) 143 3 +1000f2e0 FUN_1000f2e0 undefined FUN_1000f2e0(void) 8 0 +1000f300 FUN_1000f300 undefined FUN_1000f300(void) 143 3 +1000f390 FUN_1000f390 undefined FUN_1000f390(void) 8 0 +1000f3b0 FUN_1000f3b0 undefined FUN_1000f3b0(void) 143 3 +1000f450 FUN_1000f450 undefined FUN_1000f450(void) 140 3 +1000f4f0 FUN_1000f4f0 undefined FUN_1000f4f0(void) 143 3 +1000f580 FUN_1000f580 undefined FUN_1000f580(void) 8 0 +1000f5a0 FUN_1000f5a0 undefined FUN_1000f5a0(void) 148 3 +1000f640 FUN_1000f640 undefined FUN_1000f640(void) 8 0 +1000f660 FUN_1000f660 undefined FUN_1000f660(void) 152 3 +1000f700 FUN_1000f700 undefined FUN_1000f700(void) 8 0 +1000f720 FUN_1000f720 undefined FUN_1000f720(void) 146 3 +1000f7c0 FUN_1000f7c0 undefined FUN_1000f7c0(void) 8 0 +1000f7e0 FUN_1000f7e0 undefined FUN_1000f7e0(void) 144 3 +1000f880 FUN_1000f880 undefined FUN_1000f880(void) 148 3 +1000f920 FUN_1000f920 undefined FUN_1000f920(void) 8 0 +1000f940 FUN_1000f940 undefined FUN_1000f940(void) 143 3 +1000f9e0 FUN_1000f9e0 undefined FUN_1000f9e0(void) 146 3 +1000fa80 FUN_1000fa80 undefined FUN_1000fa80(void) 8 0 +1000faa0 FUN_1000faa0 undefined FUN_1000faa0(void) 146 3 +1000fb50 FUN_1000fb50 undefined FUN_1000fb50(void) 144 3 +1000fbf0 FUN_1000fbf0 undefined FUN_1000fbf0(void) 144 3 +1000fc90 FUN_1000fc90 undefined FUN_1000fc90(void) 144 3 +1000fd30 FUN_1000fd30 undefined FUN_1000fd30(void) 140 3 +1000fdd0 FUN_1000fdd0 undefined FUN_1000fdd0(void) 146 3 +1000fe70 FUN_1000fe70 undefined FUN_1000fe70(void) 8 0 +1000fe90 FUN_1000fe90 undefined FUN_1000fe90(void) 144 3 +1000ff20 FUN_1000ff20 undefined FUN_1000ff20(void) 8 0 +1000ff40 FUN_1000ff40 undefined FUN_1000ff40(void) 140 3 +1000ffd0 FUN_1000ffd0 undefined FUN_1000ffd0(void) 8 0 +1000fff0 FUN_1000fff0 undefined FUN_1000fff0(void) 144 3 +10010080 FUN_10010080 undefined FUN_10010080(void) 8 0 +100100a0 FUN_100100a0 undefined FUN_100100a0(void) 152 3 +10010140 FUN_10010140 undefined FUN_10010140(void) 8 0 +10010160 FUN_10010160 undefined FUN_10010160(void) 140 3 +100101f0 FUN_100101f0 undefined FUN_100101f0(void) 8 0 +10010210 FUN_10010210 undefined FUN_10010210(void) 144 3 +100102a0 FUN_100102a0 undefined FUN_100102a0(void) 8 0 +100102c0 FUN_100102c0 undefined FUN_100102c0(void) 143 3 +10010360 FUN_10010360 undefined FUN_10010360(void) 146 3 +10010410 FUN_10010410 undefined FUN_10010410(void) 140 3 +100104b0 FUN_100104b0 undefined FUN_100104b0(void) 143 3 +10010550 FUN_10010550 undefined FUN_10010550(void) 140 3 +100105f0 FUN_100105f0 undefined FUN_100105f0(void) 143 3 +10010680 FUN_10010680 undefined FUN_10010680(void) 144 3 +10010710 FUN_10010710 undefined FUN_10010710(void) 8 0 +10010730 FUN_10010730 undefined FUN_10010730(void) 144 3 +100107c0 FUN_100107c0 undefined FUN_100107c0(void) 8 0 +100107e0 FUN_100107e0 undefined FUN_100107e0(void) 140 3 +10010880 FUN_10010880 undefined FUN_10010880(void) 150 3 +10010920 FUN_10010920 undefined FUN_10010920(void) 8 0 +10010940 FUN_10010940 undefined FUN_10010940(void) 140 3 +100109d0 FUN_100109d0 undefined FUN_100109d0(void) 8 0 +100109f0 FUN_100109f0 undefined FUN_100109f0(void) 140 3 +10010a80 FUN_10010a80 undefined FUN_10010a80(void) 8 0 +10010aa0 FUN_10010aa0 undefined FUN_10010aa0(void) 146 3 +10010b40 FUN_10010b40 undefined FUN_10010b40(void) 8 0 +10010b60 FUN_10010b60 undefined FUN_10010b60(void) 152 3 +10010c10 FUN_10010c10 undefined FUN_10010c10(void) 144 3 +10010ca0 FUN_10010ca0 undefined FUN_10010ca0(void) 8 0 +10010cc0 FUN_10010cc0 undefined FUN_10010cc0(void) 148 3 +10010d70 FUN_10010d70 undefined FUN_10010d70(void) 140 3 +10010e00 FUN_10010e00 undefined FUN_10010e00(void) 144 3 +10010e90 FUN_10010e90 undefined FUN_10010e90(void) 144 3 +10010f20 FUN_10010f20 undefined FUN_10010f20(void) 69 1 SysFreeString +10010f70 FUN_10010f70 undefined FUN_10010f70(void) 37 1 +10010fa0 FUN_10010fa0 undefined FUN_10010fa0(void) 85 0 +100110a0 FUN_100110a0 undefined FUN_100110a0(void) 15 0 +100110c0 FUN_100110c0 undefined FUN_100110c0(void) 187 0 +10011180 FUN_10011180 undefined FUN_10011180(void) 211 1 +10011260 FUN_10011260 undefined FUN_10011260(void) 8 0 +100112a0 FUN_100112a0 undefined FUN_100112a0(void) 16 0 +100112c0 FUN_100112c0 undefined FUN_100112c0(void) 34 0 +10011300 FUN_10011300 undefined FUN_10011300(void) 84 0 +10011360 FUN_10011360 undefined FUN_10011360(void) 84 0 +100113d0 FUN_100113d0 undefined FUN_100113d0(void) 84 0 +10011440 FUN_10011440 undefined FUN_10011440(void) 84 0 +100114b0 FUN_100114b0 undefined FUN_100114b0(void) 84 0 +10011520 FUN_10011520 undefined FUN_10011520(void) 84 0 +10011580 FUN_10011580 undefined FUN_10011580(void) 84 0 +100115e0 FUN_100115e0 undefined FUN_100115e0(void) 84 0 +10011650 FUN_10011650 undefined FUN_10011650(void) 8 0 +10011790 FUN_10011790 undefined FUN_10011790(void) 84 0 +100117f0 FUN_100117f0 undefined FUN_100117f0(void) 84 0 +10011850 FUN_10011850 undefined FUN_10011850(void) 84 0 +100118b0 FUN_100118b0 undefined FUN_100118b0(void) 84 0 +10011910 FUN_10011910 undefined FUN_10011910(void) 84 0 +10011970 FUN_10011970 undefined FUN_10011970(void) 84 0 +100119d0 FUN_100119d0 undefined FUN_100119d0(void) 84 0 +10011a30 FUN_10011a30 undefined FUN_10011a30(void) 84 0 +10011a90 FUN_10011a90 undefined FUN_10011a90(void) 84 0 +10011b00 FUN_10011b00 undefined FUN_10011b00(void) 84 0 +10011b60 FUN_10011b60 undefined FUN_10011b60(void) 84 0 +10011bc0 FUN_10011bc0 undefined FUN_10011bc0(void) 84 0 +10011c20 FUN_10011c20 undefined FUN_10011c20(void) 84 0 +10011c80 FUN_10011c80 undefined FUN_10011c80(void) 84 0 +10011ce0 FUN_10011ce0 undefined FUN_10011ce0(void) 84 0 +10011d40 FUN_10011d40 undefined FUN_10011d40(void) 10 0 +10011d50 FUN_10011d50 undefined FUN_10011d50(void) 84 0 +10011dc0 FUN_10011dc0 undefined FUN_10011dc0(void) 8 0 +10011dd0 FUN_10011dd0 undefined FUN_10011dd0(void) 56 0 +10011e10 FUN_10011e10 undefined FUN_10011e10(void) 56 0 +10011e50 FUN_10011e50 undefined FUN_10011e50(void) 8 0 +10011e60 FUN_10011e60 undefined FUN_10011e60(void) 8 0 +10011e70 FUN_10011e70 undefined FUN_10011e70(void) 8 0 +10011e80 FUN_10011e80 undefined FUN_10011e80(void) 8 0 +10011e90 FUN_10011e90 undefined FUN_10011e90(void) 8 0 +10011ea0 FUN_10011ea0 undefined FUN_10011ea0(void) 8 0 +10011eb0 FUN_10011eb0 undefined FUN_10011eb0(void) 8 0 +10011ec0 FUN_10011ec0 undefined FUN_10011ec0(void) 8 0 +10011ed0 FUN_10011ed0 undefined FUN_10011ed0(void) 8 0 +10011ee0 FUN_10011ee0 undefined FUN_10011ee0(void) 8 0 +10011ef0 FUN_10011ef0 undefined FUN_10011ef0(void) 8 0 +10011f00 FUN_10011f00 undefined FUN_10011f00(void) 8 0 +10011f10 FUN_10011f10 undefined FUN_10011f10(void) 8 0 +10011f20 FUN_10011f20 undefined FUN_10011f20(void) 8 0 +10011f30 FUN_10011f30 undefined FUN_10011f30(void) 8 0 +10011f40 FUN_10011f40 undefined FUN_10011f40(void) 8 0 +10011f50 FUN_10011f50 undefined FUN_10011f50(void) 24 0 +10011f70 FUN_10011f70 undefined FUN_10011f70(void) 8 0 +10011f80 FUN_10011f80 undefined FUN_10011f80(void) 8 0 +10011f90 FUN_10011f90 undefined FUN_10011f90(void) 8 0 +10011fa0 FUN_10011fa0 undefined FUN_10011fa0(void) 8 0 +10011fb0 FUN_10011fb0 undefined FUN_10011fb0(void) 8 0 +10011fc0 FUN_10011fc0 undefined FUN_10011fc0(void) 8 0 +10011fd0 FUN_10011fd0 undefined FUN_10011fd0(void) 8 0 +10011fe0 FUN_10011fe0 undefined FUN_10011fe0(void) 8 0 +10011ff0 FUN_10011ff0 undefined FUN_10011ff0(void) 8 0 +10012000 FUN_10012000 undefined FUN_10012000(void) 8 0 +10012010 FUN_10012010 undefined FUN_10012010(void) 8 0 +10012020 FUN_10012020 undefined FUN_10012020(void) 8 0 +10012030 FUN_10012030 undefined FUN_10012030(void) 8 0 +10012040 FUN_10012040 undefined FUN_10012040(void) 8 0 +10012050 FUN_10012050 undefined FUN_10012050(void) 8 0 +10012060 FUN_10012060 undefined FUN_10012060(void) 54 0 +100120a0 FUN_100120a0 undefined FUN_100120a0(void) 8 0 +100120b0 FUN_100120b0 undefined FUN_100120b0(void) 8 0 +100120c0 FUN_100120c0 undefined FUN_100120c0(void) 8 0 +100120d0 FUN_100120d0 undefined FUN_100120d0(void) 8 0 +100120e0 FUN_100120e0 undefined FUN_100120e0(void) 8 0 +100120f0 FUN_100120f0 undefined FUN_100120f0(void) 8 0 +10012100 FUN_10012100 undefined FUN_10012100(void) 8 0 +10012110 FUN_10012110 undefined FUN_10012110(void) 8 0 +10012120 FUN_10012120 undefined FUN_10012120(void) 8 0 +10012130 FUN_10012130 undefined FUN_10012130(void) 42 0 +10012160 FUN_10012160 undefined FUN_10012160(void) 8 0 +10012170 FUN_10012170 undefined FUN_10012170(void) 8 0 +10012180 FUN_10012180 undefined FUN_10012180(void) 8 0 +10012190 FUN_10012190 undefined FUN_10012190(void) 8 0 +100121a0 FUN_100121a0 undefined FUN_100121a0(void) 8 0 +100121b0 FUN_100121b0 undefined FUN_100121b0(void) 8 0 +100121c0 FUN_100121c0 undefined FUN_100121c0(void) 8 0 +100121d0 FUN_100121d0 undefined FUN_100121d0(void) 8 0 +100121e0 FUN_100121e0 undefined FUN_100121e0(void) 8 0 +100121f0 FUN_100121f0 undefined FUN_100121f0(void) 42 0 +10012220 FUN_10012220 undefined FUN_10012220(void) 8 0 +10012230 FUN_10012230 undefined FUN_10012230(void) 11 0 +10012240 FUN_10012240 undefined FUN_10012240(void) 8 0 +10012250 FUN_10012250 undefined FUN_10012250(void) 8 0 +10012260 FUN_10012260 undefined FUN_10012260(void) 8 0 +10012270 FUN_10012270 undefined FUN_10012270(void) 8 0 +10012280 FUN_10012280 undefined FUN_10012280(void) 8 0 +10012290 FUN_10012290 undefined FUN_10012290(void) 8 0 +100122a0 FUN_100122a0 undefined FUN_100122a0(void) 8 0 +100122b0 FUN_100122b0 undefined FUN_100122b0(void) 8 0 +100122c0 FUN_100122c0 undefined FUN_100122c0(void) 8 0 +100122e0 FUN_100122e0 undefined FUN_100122e0(void) 11 0 +100122f0 FUN_100122f0 undefined FUN_100122f0(void) 8 0 +10012300 FUN_10012300 undefined FUN_10012300(void) 11 0 +10012310 FUN_10012310 undefined FUN_10012310(void) 40 1 memmove +10012340 FUN_10012340 undefined FUN_10012340(void) 8 0 +10012350 FUN_10012350 undefined FUN_10012350(void) 24 0 +10012370 FUN_10012370 undefined FUN_10012370(void) 8 0 +10012380 FUN_10012380 undefined FUN_10012380(void) 11 0 +10012390 FUN_10012390 undefined FUN_10012390(void) 11 0 +100123a0 FUN_100123a0 undefined FUN_100123a0(void) 11 0 +100123b0 FUN_100123b0 undefined FUN_100123b0(void) 42 1 memmove +10012400 FUN_10012400 undefined FUN_10012400(void) 8 0 +10012410 FUN_10012410 undefined FUN_10012410(void) 8 0 +10012420 FUN_10012420 undefined FUN_10012420(void) 24 0 +10012450 FUN_10012450 undefined FUN_10012450(void) 11 0 +10012470 FUN_10012470 undefined FUN_10012470(void) 24 0 +100124a0 FUN_100124a0 undefined FUN_100124a0(void) 8 0 +100124b0 FUN_100124b0 undefined FUN_100124b0(void) 11 0 +100124d0 FUN_100124d0 undefined FUN_100124d0(void) 8 0 +100124e0 FUN_100124e0 undefined FUN_100124e0(void) 24 0 +10012500 FUN_10012500 undefined FUN_10012500(void) 8 0 +10012510 FUN_10012510 undefined FUN_10012510(void) 8 0 +10012520 FUN_10012520 undefined FUN_10012520(void) 8 0 +10012530 FUN_10012530 undefined FUN_10012530(void) 24 0 +10012550 FUN_10012550 undefined FUN_10012550(void) 8 0 +10012560 FUN_10012560 undefined FUN_10012560(void) 24 0 +10012580 FUN_10012580 undefined FUN_10012580(void) 8 0 +10012590 FUN_10012590 undefined FUN_10012590(void) 24 0 +100125b0 FUN_100125b0 undefined FUN_100125b0(void) 8 0 +100125c0 FUN_100125c0 undefined FUN_100125c0(void) 8 0 +100125d0 FUN_100125d0 undefined FUN_100125d0(void) 11 0 +100125e0 FUN_100125e0 undefined FUN_100125e0(void) 42 1 memmove +100126b0 FUN_100126b0 undefined FUN_100126b0(void) 84 0 +10012730 FUN_10012730 undefined FUN_10012730(void) 84 0 +100127a0 FUN_100127a0 undefined FUN_100127a0(void) 84 0 +10012970 FUN_10012970 undefined FUN_10012970(void) 84 0 +10012a50 FUN_10012a50 undefined FUN_10012a50(void) 8 0 +10012a90 FUN_10012a90 undefined FUN_10012a90(void) 8 0 +10012ab0 FUN_10012ab0 undefined FUN_10012ab0(void) 8 0 +10012b10 FUN_10012b10 undefined FUN_10012b10(void) 8 0 +10012b20 FUN_10012b20 undefined FUN_10012b20(void) 8 0 +10012b40 FUN_10012b40 undefined FUN_10012b40(void) 8 0 +10012b50 FUN_10012b50 undefined FUN_10012b50(void) 8 0 +10012b60 FUN_10012b60 undefined FUN_10012b60(void) 8 0 +10012b70 FUN_10012b70 undefined FUN_10012b70(void) 8 0 +10012b80 FUN_10012b80 undefined FUN_10012b80(void) 8 0 +10012b90 FUN_10012b90 undefined FUN_10012b90(void) 8 0 +10012ba0 FUN_10012ba0 undefined FUN_10012ba0(void) 8 0 +10012bb0 FUN_10012bb0 undefined FUN_10012bb0(void) 8 0 +10012bc0 FUN_10012bc0 undefined FUN_10012bc0(void) 8 0 +10012bd0 FUN_10012bd0 undefined FUN_10012bd0(void) 8 0 +10012be0 FUN_10012be0 undefined FUN_10012be0(void) 8 0 +10012bf0 FUN_10012bf0 undefined FUN_10012bf0(void) 8 0 +10012c00 FUN_10012c00 undefined FUN_10012c00(void) 8 0 +10012c10 FUN_10012c10 undefined FUN_10012c10(void) 8 0 +10012c20 FUN_10012c20 undefined FUN_10012c20(void) 8 0 +10012c30 FUN_10012c30 undefined FUN_10012c30(void) 8 0 +10012c40 FUN_10012c40 undefined FUN_10012c40(void) 8 0 +10012c50 FUN_10012c50 undefined FUN_10012c50(void) 8 0 +10012c60 FUN_10012c60 undefined FUN_10012c60(void) 8 0 +10012c70 FUN_10012c70 undefined FUN_10012c70(void) 8 0 +10012c80 FUN_10012c80 undefined FUN_10012c80(void) 8 0 +10012c90 FUN_10012c90 undefined FUN_10012c90(void) 8 0 +10012ca0 FUN_10012ca0 undefined FUN_10012ca0(void) 8 0 +10012cb0 FUN_10012cb0 undefined FUN_10012cb0(void) 8 0 +10012cc0 FUN_10012cc0 undefined FUN_10012cc0(void) 14 0 +10012d00 FUN_10012d00 undefined FUN_10012d00(void) 23 0 +10012d20 FUN_10012d20 undefined FUN_10012d20(void) 23 0 +10012d40 FUN_10012d40 undefined FUN_10012d40(void) 23 0 +10012d60 FUN_10012d60 undefined FUN_10012d60(void) 23 0 +10012d80 FUN_10012d80 undefined FUN_10012d80(void) 23 0 +10012da0 FUN_10012da0 undefined FUN_10012da0(void) 23 0 +10012dc0 FUN_10012dc0 undefined FUN_10012dc0(void) 23 0 +10012de0 FUN_10012de0 undefined FUN_10012de0(void) 23 0 +10012e10 FUN_10012e10 undefined FUN_10012e10(void) 31 1 CoCreateInstance +10012e30 FUN_10012e30 undefined FUN_10012e30(void) 19 0 +10012e60 FUN_10012e60 undefined FUN_10012e60(void) 19 1 +10012e80 FUN_10012e80 undefined FUN_10012e80(void) 10 0 +10012e90 FUN_10012e90 undefined FUN_10012e90(void) 10 0 +10012ea0 FUN_10012ea0 undefined FUN_10012ea0(void) 19 1 +10012ec0 FUN_10012ec0 undefined FUN_10012ec0(void) 19 1 +10012ee0 FUN_10012ee0 undefined FUN_10012ee0(void) 24 0 +10012f00 FUN_10012f00 undefined FUN_10012f00(void) 24 0 +10012f40 FUN_10012f40 undefined FUN_10012f40(void) 84 0 +10012fa0 FUN_10012fa0 undefined FUN_10012fa0(void) 19 0 +10012fc0 FUN_10012fc0 undefined FUN_10012fc0(void) 19 0 +10012fe0 FUN_10012fe0 undefined FUN_10012fe0(void) 19 0 +10013000 FUN_10013000 undefined FUN_10013000(void) 19 0 +10013040 FUN_10013040 undefined FUN_10013040(void) 87 0 +100130a0 FUN_100130a0 undefined FUN_100130a0(void) 11 0 +100130b0 FUN_100130b0 undefined FUN_100130b0(void) 29 0 +100130d0 FUN_100130d0 undefined FUN_100130d0(void) 11 0 +100130e0 FUN_100130e0 undefined FUN_100130e0(void) 11 0 +100130f0 FUN_100130f0 undefined FUN_100130f0(void) 8 0 +10013100 FUN_10013100 undefined FUN_10013100(void) 11 0 +10013110 FUN_10013110 undefined FUN_10013110(void) 11 0 +10013120 FUN_10013120 undefined FUN_10013120(void) 11 0 +10013130 FUN_10013130 undefined FUN_10013130(void) 29 0 +10013150 FUN_10013150 undefined FUN_10013150(void) 28 0 +10013180 FUN_10013180 undefined FUN_10013180(void) 11 0 +10013190 FUN_10013190 undefined FUN_10013190(void) 11 0 +100131a0 FUN_100131a0 undefined FUN_100131a0(void) 8 0 +100131b0 FUN_100131b0 undefined FUN_100131b0(void) 11 0 +100131c0 FUN_100131c0 undefined FUN_100131c0(void) 11 0 +100131d0 FUN_100131d0 undefined FUN_100131d0(void) 11 0 +100131e0 FUN_100131e0 undefined FUN_100131e0(void) 29 0 +10013200 FUN_10013200 undefined FUN_10013200(void) 28 0 +10013240 FUN_10013240 undefined FUN_10013240(void) 14 0 +10013250 FUN_10013250 undefined FUN_10013250(void) 72 0 +100132a0 FUN_100132a0 undefined FUN_100132a0(void) 14 0 +100132b0 FUN_100132b0 undefined FUN_100132b0(void) 72 0 +10013300 FUN_10013300 undefined FUN_10013300(void) 8 0 +10013310 FUN_10013310 undefined FUN_10013310(void) 8 0 +10013320 FUN_10013320 undefined FUN_10013320(void) 8 0 +10013330 FUN_10013330 undefined FUN_10013330(void) 60 0 +10013370 FUN_10013370 undefined FUN_10013370(void) 60 0 +100133b0 FUN_100133b0 undefined FUN_100133b0(void) 24 0 +100133d0 FUN_100133d0 undefined FUN_100133d0(void) 42 0 +10013400 FUN_10013400 undefined FUN_10013400(void) 36 0 +10013430 FUN_10013430 undefined FUN_10013430(void) 24 0 +10013450 FUN_10013450 undefined FUN_10013450(void) 8 0 +10013460 FUN_10013460 undefined FUN_10013460(void) 8 0 +10013470 FUN_10013470 undefined FUN_10013470(void) 30 0 +10013490 FUN_10013490 undefined FUN_10013490(void) 8 0 +100134b0 FUN_100134b0 undefined FUN_100134b0(void) 37 1 memmove +100134e0 FUN_100134e0 undefined FUN_100134e0(void) 8 0 +100134f0 FUN_100134f0 undefined FUN_100134f0(void) 30 0 +10013510 FUN_10013510 undefined FUN_10013510(void) 8 0 +10013520 FUN_10013520 undefined FUN_10013520(void) 24 0 +10013540 FUN_10013540 undefined FUN_10013540(void) 8 0 +10013550 FUN_10013550 undefined FUN_10013550(void) 24 0 +10013570 FUN_10013570 undefined FUN_10013570(void) 24 0 +10013590 FUN_10013590 undefined FUN_10013590(void) 8 0 +100135a0 FUN_100135a0 undefined FUN_100135a0(void) 24 0 +100135c0 FUN_100135c0 undefined FUN_100135c0(void) 8 0 +100135d0 FUN_100135d0 undefined FUN_100135d0(void) 24 0 +100135f0 FUN_100135f0 undefined FUN_100135f0(void) 8 0 +10013600 FUN_10013600 undefined FUN_10013600(void) 24 0 +10013620 FUN_10013620 undefined FUN_10013620(void) 8 0 +10013630 FUN_10013630 undefined FUN_10013630(void) 24 0 +10013650 FUN_10013650 undefined FUN_10013650(void) 8 0 +10013660 FUN_10013660 undefined FUN_10013660(void) 24 0 +10013680 FUN_10013680 undefined FUN_10013680(void) 8 0 +10013690 FUN_10013690 undefined FUN_10013690(void) 24 0 +100136b0 FUN_100136b0 undefined FUN_100136b0(void) 8 0 +100136c0 FUN_100136c0 undefined FUN_100136c0(void) 24 0 +100136e0 FUN_100136e0 undefined FUN_100136e0(void) 8 0 +100136f0 FUN_100136f0 undefined FUN_100136f0(void) 24 0 +10013710 FUN_10013710 undefined FUN_10013710(void) 24 0 +10013730 FUN_10013730 undefined FUN_10013730(void) 24 0 +10013750 FUN_10013750 undefined FUN_10013750(void) 8 0 +10013760 FUN_10013760 undefined FUN_10013760(void) 24 0 +10013780 FUN_10013780 undefined FUN_10013780(void) 8 0 +10013790 FUN_10013790 undefined FUN_10013790(void) 24 0 +100137b0 FUN_100137b0 undefined FUN_100137b0(void) 8 0 +100137c0 FUN_100137c0 undefined FUN_100137c0(void) 24 0 +100137e0 FUN_100137e0 undefined FUN_100137e0(void) 8 0 +100137f0 FUN_100137f0 undefined FUN_100137f0(void) 24 0 +10013810 FUN_10013810 undefined FUN_10013810(void) 24 0 +10013830 FUN_10013830 undefined FUN_10013830(void) 8 0 +10013840 FUN_10013840 undefined FUN_10013840(void) 24 0 +10013860 FUN_10013860 undefined FUN_10013860(void) 8 0 +10013870 FUN_10013870 undefined FUN_10013870(void) 24 0 +10013890 FUN_10013890 undefined FUN_10013890(void) 8 0 +100138a0 FUN_100138a0 undefined FUN_100138a0(void) 24 0 +100138c0 FUN_100138c0 undefined FUN_100138c0(void) 8 0 +100138d0 FUN_100138d0 undefined FUN_100138d0(void) 24 0 +100138f0 FUN_100138f0 undefined FUN_100138f0(void) 8 0 +10013900 FUN_10013900 undefined FUN_10013900(void) 24 0 +10013920 FUN_10013920 undefined FUN_10013920(void) 8 0 +10013930 FUN_10013930 undefined FUN_10013930(void) 8 0 +10013940 FUN_10013940 undefined FUN_10013940(void) 8 0 +10013950 FUN_10013950 undefined FUN_10013950(void) 8 0 +10013960 FUN_10013960 undefined FUN_10013960(void) 83 0 +100139c0 FUN_100139c0 undefined FUN_100139c0(void) 87 0 +10013a20 FUN_10013a20 undefined FUN_10013a20(void) 30 0 +10013a40 FUN_10013a40 undefined FUN_10013a40(void) 10 0 +10013a50 FUN_10013a50 undefined FUN_10013a50(void) 10 0 +10013a60 FUN_10013a60 undefined FUN_10013a60(void) 10 0 +10013a70 FUN_10013a70 undefined FUN_10013a70(void) 83 0 +10013ad0 FUN_10013ad0 undefined FUN_10013ad0(void) 83 0 +10013b30 FUN_10013b30 undefined FUN_10013b30(void) 8 0 +10013b50 FUN_10013b50 undefined FUN_10013b50(void) 85 0 +10013bb0 FUN_10013bb0 undefined FUN_10013bb0(void) 89 0 +10013c10 FUN_10013c10 undefined FUN_10013c10(void) 101 0 +10013c80 FUN_10013c80 undefined FUN_10013c80(void) 8 0 +10013c90 FUN_10013c90 undefined FUN_10013c90(void) 8 0 +10013ca0 FUN_10013ca0 undefined FUN_10013ca0(void) 8 0 +10013cb0 FUN_10013cb0 undefined FUN_10013cb0(void) 24 0 +10013cd0 FUN_10013cd0 undefined FUN_10013cd0(void) 24 0 +10013cf0 FUN_10013cf0 undefined FUN_10013cf0(void) 8 0 +10013d00 FUN_10013d00 undefined FUN_10013d00(void) 8 0 +10013d30 FUN_10013d30 undefined FUN_10013d30(void) 8 0 +10013d60 FUN_10013d60 undefined FUN_10013d60(void) 8 0 +10013d70 FUN_10013d70 undefined FUN_10013d70(void) 19 1 +10013db0 FUN_10013db0 undefined FUN_10013db0(void) 87 0 +10013e10 FUN_10013e10 undefined FUN_10013e10(void) 11 0 +10013e20 FUN_10013e20 undefined FUN_10013e20(void) 29 0 +10013e50 FUN_10013e50 undefined FUN_10013e50(void) 8 0 +10013e60 FUN_10013e60 undefined FUN_10013e60(void) 24 0 +10013e80 FUN_10013e80 undefined FUN_10013e80(void) 8 0 +10013e90 FUN_10013e90 undefined FUN_10013e90(void) 8 0 +10013ea0 FUN_10013ea0 undefined FUN_10013ea0(void) 8 0 +10013eb0 FUN_10013eb0 undefined FUN_10013eb0(void) 8 0 +10013ec0 FUN_10013ec0 undefined FUN_10013ec0(void) 8 0 +10013ed0 FUN_10013ed0 undefined FUN_10013ed0(void) 8 0 +10013ee0 FUN_10013ee0 undefined FUN_10013ee0(void) 8 0 +10013ef0 FUN_10013ef0 undefined FUN_10013ef0(void) 8 0 +10013f00 FUN_10013f00 undefined FUN_10013f00(void) 8 0 +10013f10 FUN_10013f10 undefined FUN_10013f10(void) 8 0 +10013f20 FUN_10013f20 undefined FUN_10013f20(void) 8 0 +10013f40 FUN_10013f40 undefined FUN_10013f40(void) 8 0 +10013f50 FUN_10013f50 undefined FUN_10013f50(void) 8 0 +10013f60 FUN_10013f60 undefined FUN_10013f60(void) 8 0 +10013f70 FUN_10013f70 undefined FUN_10013f70(void) 8 0 +10013f80 FUN_10013f80 undefined FUN_10013f80(void) 8 0 +10013f90 FUN_10013f90 undefined FUN_10013f90(void) 8 0 +10013fa0 FUN_10013fa0 undefined FUN_10013fa0(void) 8 0 +10013fb0 FUN_10013fb0 undefined FUN_10013fb0(void) 8 0 +10013fc0 FUN_10013fc0 undefined FUN_10013fc0(void) 8 0 +10013fd0 FUN_10013fd0 undefined FUN_10013fd0(void) 8 0 +10013fe0 FUN_10013fe0 undefined FUN_10013fe0(void) 8 0 +10013ff0 FUN_10013ff0 undefined FUN_10013ff0(void) 8 0 +10014000 FUN_10014000 undefined FUN_10014000(void) 83 0 +10014060 FUN_10014060 undefined FUN_10014060(void) 8 0 +10014070 FUN_10014070 undefined FUN_10014070(void) 60 0 +100140b0 FUN_100140b0 undefined FUN_100140b0(void) 8 0 +100140c0 FUN_100140c0 undefined FUN_100140c0(void) 60 0 +10014100 FUN_10014100 undefined FUN_10014100(void) 24 0 +10014120 FUN_10014120 undefined FUN_10014120(void) 85 0 +10014180 FUN_10014180 undefined FUN_10014180(void) 38 1 memmove +100141b0 FUN_100141b0 undefined FUN_100141b0(void) 42 0 +100141e0 FUN_100141e0 undefined FUN_100141e0(void) 36 0 +10014210 FUN_10014210 undefined FUN_10014210(void) 8 0 +10014220 FUN_10014220 undefined FUN_10014220(void) 24 0 +10014240 FUN_10014240 undefined FUN_10014240(void) 8 0 +10014250 FUN_10014250 undefined FUN_10014250(void) 8 0 +10014260 FUN_10014260 undefined FUN_10014260(void) 8 0 +10014270 FUN_10014270 undefined FUN_10014270(void) 8 0 +10014280 FUN_10014280 undefined FUN_10014280(void) 8 0 +10014290 FUN_10014290 undefined FUN_10014290(void) 8 0 +100142b0 FUN_100142b0 undefined FUN_100142b0(void) 8 0 +100142c0 FUN_100142c0 undefined FUN_100142c0(void) 8 0 +100142d0 FUN_100142d0 undefined FUN_100142d0(void) 8 0 +100142e0 FUN_100142e0 undefined FUN_100142e0(void) 8 0 +100142f0 FUN_100142f0 undefined FUN_100142f0(void) 8 0 +10014300 FUN_10014300 undefined FUN_10014300(void) 8 0 +10014310 FUN_10014310 undefined FUN_10014310(void) 8 0 +10014320 FUN_10014320 undefined FUN_10014320(void) 8 0 +10014330 FUN_10014330 undefined FUN_10014330(void) 74 0 +10014390 FUN_10014390 undefined FUN_10014390(void) 74 0 +100143f0 FUN_100143f0 undefined FUN_100143f0(void) 74 0 +10014440 FUN_10014440 undefined FUN_10014440(void) 195 4 SysAllocStringLen;SysFreeString +10014510 FUN_10014510 undefined FUN_10014510(void) 24 0 +10014530 FUN_10014530 undefined FUN_10014530(void) 22 0 +10014550 FUN_10014550 undefined FUN_10014550(void) 34 0 +10014580 FUN_10014580 undefined FUN_10014580(void) 74 0 +100145d0 FUN_100145d0 undefined FUN_100145d0(void) 74 0 +10014620 FUN_10014620 undefined FUN_10014620(void) 63 2 SysAllocStringLen +10014660 FUN_10014660 undefined FUN_10014660(void) 65 2 SysAllocStringLen +100146b0 FUN_100146b0 undefined FUN_100146b0(void) 45 2 SysAllocString +100146e0 FUN_100146e0 undefined FUN_100146e0(void) 89 4 SysAllocString +10014740 FUN_10014740 undefined FUN_10014740(void) 64 3 SysAllocString;SysFreeString +10014780 FUN_10014780 undefined FUN_10014780(void) 30 2 SysAllocStringByteLen +100147a0 FUN_100147a0 undefined FUN_100147a0(void) 74 0 +100147f0 FUN_100147f0 undefined FUN_100147f0(void) 74 0 +10014840 FUN_10014840 undefined FUN_10014840(void) 289 4 SysAllocStringLen;SysFreeString +10014970 FUN_10014970 undefined FUN_10014970(void) 74 0 +100149c0 FUN_100149c0 undefined FUN_100149c0(void) 192 5 SysAllocStringLen;SysFreeString +10014a80 FUN_10014a80 undefined FUN_10014a80(void) 74 0 +10014b90 FUN_10014b90 undefined FUN_10014b90(void) 26 0 +10014bb0 FUN_10014bb0 undefined FUN_10014bb0(void) 30 0 +10014bd0 FUN_10014bd0 undefined FUN_10014bd0(void) 30 0 +10014c00 FUN_10014c00 undefined FUN_10014c00(void) 57 0 +10014c40 FUN_10014c40 undefined FUN_10014c40(void) 74 0 +10014c90 FUN_10014c90 undefined FUN_10014c90(void) 19 0 +10014cb0 FUN_10014cb0 undefined FUN_10014cb0(void) 188 3 SysAllocString;SysFreeString +10014d70 FUN_10014d70 undefined FUN_10014d70(void) 31 1 +10014db0 FUN_10014db0 undefined FUN_10014db0(void) 28 1 +10014dd0 FUN_10014dd0 undefined FUN_10014dd0(void) 74 0 +10014e20 FUN_10014e20 undefined FUN_10014e20(void) 124 1 +10014ea0 FUN_10014ea0 undefined FUN_10014ea0(void) 159 0 +10014f70 FUN_10014f70 undefined FUN_10014f70(void) 149 2 SysFreeString +10015010 FUN_10015010 undefined FUN_10015010(void) 123 2 +100150a0 FUN_100150a0 undefined FUN_100150a0(void) 74 0 +100150f0 FUN_100150f0 undefined FUN_100150f0(void) 21 0 +10015110 FUN_10015110 undefined FUN_10015110(void) 74 0 +10015160 FUN_10015160 undefined FUN_10015160(void) 138 3 +100151f0 FUN_100151f0 undefined FUN_100151f0(void) 165 3 SysAllocString +100152a0 FUN_100152a0 undefined FUN_100152a0(void) 181 4 SysAllocStringByteLen +10015360 FUN_10015360 undefined FUN_10015360(void) 74 0 +100153d0 FUN_100153d0 undefined FUN_100153d0(void) 95 1 SysFreeString +10015470 FUN_10015470 undefined FUN_10015470(void) 34 2 SysFreeString +100154f0 FUN_100154f0 undefined FUN_100154f0(void) 74 0 +10015540 FUN_10015540 undefined FUN_10015540(void) 74 0 +100155b0 FUN_100155b0 undefined FUN_100155b0(void) 74 0 +10015600 FUN_10015600 undefined FUN_10015600(void) 74 0 +10015650 FUN_10015650 undefined FUN_10015650(void) 74 0 +100156b0 FUN_100156b0 undefined FUN_100156b0(void) 186 3 +10015770 FUN_10015770 undefined FUN_10015770(void) 43 0 +100157a0 `scalar_deleting_destructor' void * `scalar_deleting_destructor'(_com_error * this, uint param_1) 63 2 +10015800 FUN_10015800 undefined FUN_10015800(void) 201 4 +100158d0 FUN_100158d0 undefined FUN_100158d0(void) 74 0 +10015920 FUN_10015920 undefined FUN_10015920(void) 28 0 +10015940 FUN_10015940 undefined FUN_10015940(void) 74 0 +10015990 FUN_10015990 undefined FUN_10015990(void) 74 0 +100159e0 FUN_100159e0 undefined FUN_100159e0(void) 89 1 +10015a40 FUN_10015a40 undefined FUN_10015a40(void) 89 1 +10015ab0 FUN_10015ab0 undefined FUN_10015ab0(void) 49 0 +10015af0 FUN_10015af0 undefined FUN_10015af0(void) 74 0 +10015b40 FUN_10015b40 undefined FUN_10015b40(void) 302 1 SysFreeString +10015c70 FUN_10015c70 undefined FUN_10015c70(void) 63 2 memset +10015cb0 FUN_10015cb0 undefined FUN_10015cb0(void) 226 3 +10015da0 FUN_10015da0 undefined FUN_10015da0(void) 74 0 +10015df0 FUN_10015df0 undefined FUN_10015df0(void) 170 2 SysFreeString +10015ea0 FUN_10015ea0 undefined FUN_10015ea0(void) 947 8 +10016260 FUN_10016260 undefined FUN_10016260(void) 66 2 +100162b0 FUN_100162b0 undefined FUN_100162b0(void) 87 0 +10016310 FUN_10016310 undefined FUN_10016310(void) 68 0 +10016360 FUN_10016360 undefined FUN_10016360(void) 85 0 +100163c0 FUN_100163c0 undefined FUN_100163c0(void) 87 0 +10016420 FUN_10016420 undefined FUN_10016420(void) 74 0 +10016470 FUN_10016470 undefined FUN_10016470(void) 74 0 +100164c0 FUN_100164c0 undefined FUN_100164c0(void) 74 0 +10016510 FUN_10016510 undefined FUN_10016510(void) 68 0 +10016560 FUN_10016560 undefined FUN_10016560(void) 85 0 +100165c0 FUN_100165c0 undefined FUN_100165c0(void) 29 1 +100165e0 FUN_100165e0 undefined FUN_100165e0(void) 68 0 +10016630 FUN_10016630 undefined FUN_10016630(void) 85 0 +10016690 FUN_10016690 undefined FUN_10016690(void) 74 0 +100166e0 FUN_100166e0 undefined FUN_100166e0(void) 24 1 +10016700 FUN_10016700 undefined FUN_10016700(void) 87 0 +10016760 FUN_10016760 undefined FUN_10016760(void) 68 0 +100167b0 FUN_100167b0 undefined FUN_100167b0(void) 68 0 +10016820 FUN_10016820 undefined FUN_10016820(void) 240 3 +10016910 FUN_10016910 undefined FUN_10016910(void) 361 8 SysAllocString;SysFreeString;memset +10016a80 FUN_10016a80 undefined FUN_10016a80(void) 92 3 +10016ae0 FUN_10016ae0 undefined FUN_10016ae0(void) 74 0 +10016b30 FUN_10016b30 undefined FUN_10016b30(void) 68 0 +10016b80 FUN_10016b80 undefined FUN_10016b80(void) 68 0 +10016bd0 FUN_10016bd0 undefined FUN_10016bd0(void) 68 0 +10016c20 FUN_10016c20 undefined FUN_10016c20(void) 87 0 +10016c90 FUN_10016c90 undefined FUN_10016c90(void) 61 0 +10016ce0 FUN_10016ce0 undefined FUN_10016ce0(void) 19 0 +10016d00 FUN_10016d00 undefined FUN_10016d00(void) 134 0 +10016d90 FUN_10016d90 undefined FUN_10016d90(void) 19 0 +10016dc0 FUN_10016dc0 undefined FUN_10016dc0(void) 12 1 +10016dd0 FUN_10016dd0 undefined FUN_10016dd0(void) 133 2 SysFreeString +10016e60 FUN_10016e60 undefined FUN_10016e60(void) 23 1 +10016e80 FUN_10016e80 undefined FUN_10016e80(void) 19 0 +10016ea0 FUN_10016ea0 undefined FUN_10016ea0(void) 68 0 +10016ef0 FUN_10016ef0 undefined FUN_10016ef0(void) 169 2 CoGetClassObject +10016fb0 FUN_10016fb0 undefined FUN_10016fb0(void) 19 0 +10016fd0 FUN_10016fd0 undefined FUN_10016fd0(void) 62 0 +10017010 FUN_10017010 undefined FUN_10017010(void) 85 0 +10017080 FUN_10017080 undefined FUN_10017080(void) 68 0 +100170d0 FUN_100170d0 undefined FUN_100170d0(void) 68 0 +10017120 FUN_10017120 undefined FUN_10017120(void) 68 0 +100171c0 FUN_100171c0 undefined FUN_100171c0(void) 19 0 +100171f0 FUN_100171f0 undefined FUN_100171f0(void) 19 0 +10017210 FUN_10017210 undefined FUN_10017210(void) 22 0 +10017230 FUN_10017230 undefined FUN_10017230(void) 68 0 +10017280 FUN_10017280 undefined FUN_10017280(void) 19 0 +100172a0 FUN_100172a0 undefined FUN_100172a0(void) 19 0 +100172c0 FUN_100172c0 undefined FUN_100172c0(void) 19 0 +100172e0 FUN_100172e0 undefined FUN_100172e0(void) 19 0 +10017300 FUN_10017300 undefined FUN_10017300(void) 19 0 +10017350 FUN_10017350 undefined FUN_10017350(void) 19 0 +10017370 FUN_10017370 undefined FUN_10017370(void) 19 0 +100173a0 FUN_100173a0 undefined FUN_100173a0(void) 19 0 +100173d0 FUN_100173d0 undefined FUN_100173d0(void) 19 0 +10017410 FUN_10017410 undefined FUN_10017410(void) 19 0 +10017430 FUN_10017430 undefined FUN_10017430(void) 19 0 +10017460 FUN_10017460 undefined FUN_10017460(void) 19 0 +10017490 FUN_10017490 undefined FUN_10017490(void) 19 0 +100174c0 FUN_100174c0 undefined FUN_100174c0(void) 19 0 +100174e0 FUN_100174e0 undefined FUN_100174e0(void) 19 0 +10017520 FUN_10017520 undefined FUN_10017520(void) 19 0 +10017550 FUN_10017550 undefined FUN_10017550(void) 19 0 +10017570 FUN_10017570 undefined FUN_10017570(void) 19 0 +10017590 FUN_10017590 undefined FUN_10017590(void) 19 0 +100175b0 FUN_100175b0 undefined FUN_100175b0(void) 19 0 +100175d0 FUN_100175d0 undefined FUN_100175d0(void) 19 0 +100175f0 FUN_100175f0 undefined FUN_100175f0(void) 19 0 +10017610 FUN_10017610 undefined FUN_10017610(void) 19 0 +10017630 FUN_10017630 undefined FUN_10017630(void) 19 0 +10017650 FUN_10017650 undefined FUN_10017650(void) 19 0 +10017670 FUN_10017670 undefined FUN_10017670(void) 19 0 +10017690 FUN_10017690 undefined FUN_10017690(void) 19 0 +100176b0 FUN_100176b0 undefined FUN_100176b0(void) 19 0 +100176d0 FUN_100176d0 undefined FUN_100176d0(void) 19 0 +100176f0 FUN_100176f0 undefined FUN_100176f0(void) 22 0 +10017710 FUN_10017710 undefined FUN_10017710(void) 19 0 +10017730 FUN_10017730 undefined FUN_10017730(void) 19 0 +10017750 FUN_10017750 undefined FUN_10017750(void) 68 0 +100177a0 FUN_100177a0 undefined FUN_100177a0(void) 19 0 +100177c0 FUN_100177c0 undefined FUN_100177c0(void) 19 0 +10017800 FUN_10017800 undefined FUN_10017800(void) 19 0 +10017820 FUN_10017820 undefined FUN_10017820(void) 19 0 +10017840 FUN_10017840 undefined FUN_10017840(void) 19 0 +10017860 FUN_10017860 undefined FUN_10017860(void) 19 0 +100178a0 FUN_100178a0 undefined FUN_100178a0(void) 19 0 +100178d0 FUN_100178d0 undefined FUN_100178d0(void) 19 0 +100178f0 FUN_100178f0 undefined FUN_100178f0(void) 17 0 +10017910 FUN_10017910 undefined FUN_10017910(void) 17 0 +10017940 FUN_10017940 undefined FUN_10017940(void) 31 0 +10017990 FUN_10017990 undefined FUN_10017990(void) 87 0 +100179f0 FUN_100179f0 undefined FUN_100179f0(void) 11 1 +10017a00 FUN_10017a00 undefined FUN_10017a00(void) 11 0 +10017a10 FUN_10017a10 undefined FUN_10017a10(void) 68 0 +10017a60 FUN_10017a60 undefined FUN_10017a60(void) 68 0 +10017ab0 FUN_10017ab0 undefined FUN_10017ab0(void) 90 0 +10017b30 FUN_10017b30 undefined FUN_10017b30(void) 11 1 +10017b50 FUN_10017b50 undefined FUN_10017b50(void) 11 1 +10017b60 FUN_10017b60 undefined FUN_10017b60(void) 10 1 +10017b70 FUN_10017b70 undefined FUN_10017b70(void) 10 1 +10017b90 FUN_10017b90 undefined FUN_10017b90(void) 11 1 +10017ba0 FUN_10017ba0 undefined FUN_10017ba0(void) 11 1 +10017bb0 FUN_10017bb0 undefined FUN_10017bb0(void) 10 1 +10017bf0 FUN_10017bf0 undefined FUN_10017bf0(void) 87 0 +10017c50 FUN_10017c50 undefined FUN_10017c50(void) 11 1 +10017c60 FUN_10017c60 undefined FUN_10017c60(void) 11 0 +10017ca0 FUN_10017ca0 undefined FUN_10017ca0(void) 11 1 +10017cb0 FUN_10017cb0 undefined FUN_10017cb0(void) 14 0 +10017cc0 FUN_10017cc0 undefined FUN_10017cc0(void) 72 0 +10017d20 FUN_10017d20 undefined FUN_10017d20(void) 11 1 +10017d30 FUN_10017d30 undefined FUN_10017d30(void) 11 0 +10017d50 FUN_10017d50 undefined FUN_10017d50(void) 11 1 +10017d90 FUN_10017d90 undefined FUN_10017d90(void) 87 0 +10017df0 FUN_10017df0 undefined FUN_10017df0(void) 11 1 +10017e00 FUN_10017e00 undefined FUN_10017e00(void) 11 0 +10017e30 FUN_10017e30 undefined FUN_10017e30(void) 68 0 +10017e80 FUN_10017e80 undefined FUN_10017e80(void) 11 1 +10017ea0 FUN_10017ea0 undefined FUN_10017ea0(void) 11 1 +10017ee0 FUN_10017ee0 undefined FUN_10017ee0(void) 11 1 +10017ef0 FUN_10017ef0 undefined FUN_10017ef0(void) 10 1 +10017f00 FUN_10017f00 undefined FUN_10017f00(void) 11 1 +10017f20 FUN_10017f20 undefined FUN_10017f20(void) 11 1 +10017f30 FUN_10017f30 undefined FUN_10017f30(void) 194 4 +10018010 FUN_10018010 undefined FUN_10018010(void) 132 3 +100180a0 FUN_100180a0 undefined FUN_100180a0(void) 11 1 +100180c0 FUN_100180c0 undefined FUN_100180c0(void) 11 1 +100180d0 FUN_100180d0 undefined FUN_100180d0(void) 11 1 +100180e0 FUN_100180e0 undefined FUN_100180e0(void) 11 1 +100180f0 FUN_100180f0 undefined FUN_100180f0(void) 11 1 +10018100 FUN_10018100 undefined FUN_10018100(void) 68 0 +10018150 FUN_10018150 undefined FUN_10018150(void) 90 0 +100181e0 FUN_100181e0 undefined FUN_100181e0(void) 11 1 +100181f0 FUN_100181f0 undefined FUN_100181f0(void) 11 0 +10018200 FUN_10018200 undefined FUN_10018200(void) 11 1 +10018210 FUN_10018210 undefined FUN_10018210(void) 11 0 +10018220 FUN_10018220 undefined FUN_10018220(void) 11 1 +10018230 FUN_10018230 undefined FUN_10018230(void) 10 1 +10018240 FUN_10018240 undefined FUN_10018240(void) 10 1 +10018250 FUN_10018250 undefined FUN_10018250(void) 10 1 +10018260 FUN_10018260 undefined FUN_10018260(void) 68 0 +100182b0 FUN_100182b0 undefined FUN_100182b0(void) 10 1 +100182c0 FUN_100182c0 undefined FUN_100182c0(void) 11 1 +100182e0 FUN_100182e0 undefined FUN_100182e0(void) 11 1 +100182f0 FUN_100182f0 undefined FUN_100182f0(void) 11 1 +10018300 FUN_10018300 undefined FUN_10018300(void) 14 1 +10018320 FUN_10018320 undefined FUN_10018320(void) 90 2 +10018380 FUN_10018380 undefined FUN_10018380(void) 11 0 +10018390 FUN_10018390 undefined FUN_10018390(void) 11 0 +100183a0 FUN_100183a0 undefined FUN_100183a0(void) 172 5 +10018450 FUN_10018450 undefined FUN_10018450(void) 31 0 +10018480 FUN_10018480 undefined FUN_10018480(void) 23 0 +100184a0 FUN_100184a0 undefined FUN_100184a0(void) 14 0 +100184c0 FUN_100184c0 undefined FUN_100184c0(void) 19 0 +10018510 FUN_10018510 undefined FUN_10018510(void) 87 0 +10018570 FUN_10018570 undefined FUN_10018570(void) 132 3 +10018600 FUN_10018600 undefined FUN_10018600(void) 11 1 +10018610 FUN_10018610 undefined FUN_10018610(void) 574 8 +10018850 FUN_10018850 undefined FUN_10018850(void) 12 1 +10018860 FUN_10018860 undefined FUN_10018860(void) 388 8 +10018a00 FUN_10018a00 undefined FUN_10018a00(void) 18 1 +10018a20 FUN_10018a20 undefined FUN_10018a20(void) 68 0 +10018a70 FUN_10018a70 undefined FUN_10018a70(void) 11 1 +10018a80 FUN_10018a80 undefined FUN_10018a80(void) 14 0 +10018a90 FUN_10018a90 undefined FUN_10018a90(void) 10 1 +10018ad0 FUN_10018ad0 undefined FUN_10018ad0(void) 87 0 +10018b30 FUN_10018b30 undefined FUN_10018b30(void) 11 1 +10018b40 FUN_10018b40 undefined FUN_10018b40(void) 11 0 +10018b50 FUN_10018b50 undefined FUN_10018b50(void) 11 1 +10018b70 FUN_10018b70 undefined FUN_10018b70(void) 109 3 +10018c00 FUN_10018c00 undefined FUN_10018c00(void) 87 0 +10018c60 FUN_10018c60 undefined FUN_10018c60(void) 11 1 +10018c70 FUN_10018c70 undefined FUN_10018c70(void) 11 0 +10018c80 FUN_10018c80 undefined FUN_10018c80(void) 23 1 +10018cd0 FUN_10018cd0 undefined FUN_10018cd0(void) 87 0 +10018d30 FUN_10018d30 undefined FUN_10018d30(void) 11 1 +10018d40 FUN_10018d40 undefined FUN_10018d40(void) 11 0 +10018d80 FUN_10018d80 undefined FUN_10018d80(void) 87 0 +10018de0 FUN_10018de0 undefined FUN_10018de0(void) 11 1 +10018df0 FUN_10018df0 undefined FUN_10018df0(void) 27 0 +10018e10 FUN_10018e10 undefined FUN_10018e10(void) 11 0 +10018e20 FUN_10018e20 undefined FUN_10018e20(void) 75 2 memcpy +10018e90 FUN_10018e90 undefined FUN_10018e90(void) 21 1 +10018ed0 FUN_10018ed0 undefined FUN_10018ed0(void) 87 0 +10018f30 FUN_10018f30 undefined FUN_10018f30(void) 11 1 +10018f40 FUN_10018f40 undefined FUN_10018f40(void) 11 0 +10018f80 FUN_10018f80 undefined FUN_10018f80(void) 87 0 +10018fe0 FUN_10018fe0 undefined FUN_10018fe0(void) 11 1 +10018ff0 FUN_10018ff0 undefined FUN_10018ff0(void) 11 0 +10019000 FUN_10019000 undefined FUN_10019000(void) 11 1 +10019020 FUN_10019020 undefined FUN_10019020(void) 11 1 +10019030 FUN_10019030 undefined FUN_10019030(void) 11 0 +10019040 FUN_10019040 undefined FUN_10019040(void) 11 1 +10019050 FUN_10019050 undefined FUN_10019050(void) 11 0 +10019070 FUN_10019070 undefined FUN_10019070(void) 11 1 +10019090 FUN_10019090 undefined FUN_10019090(void) 11 1 +100190a0 FUN_100190a0 undefined FUN_100190a0(void) 11 0 +100190c0 FUN_100190c0 undefined FUN_100190c0(void) 11 1 +100190d0 FUN_100190d0 undefined FUN_100190d0(void) 11 1 +100190e0 FUN_100190e0 undefined FUN_100190e0(void) 21 1 +10019100 FUN_10019100 undefined FUN_10019100(void) 11 1 +10019140 FUN_10019140 undefined FUN_10019140(void) 11 1 +10019150 FUN_10019150 undefined FUN_10019150(void) 11 0 +10019190 FUN_10019190 undefined FUN_10019190(void) 87 0 +100191f0 FUN_100191f0 undefined FUN_100191f0(void) 11 1 +10019200 FUN_10019200 undefined FUN_10019200(void) 11 0 +10019240 FUN_10019240 undefined FUN_10019240(void) 87 0 +100192a0 FUN_100192a0 undefined FUN_100192a0(void) 11 1 +100192b0 FUN_100192b0 undefined FUN_100192b0(void) 11 0 +100192f0 FUN_100192f0 undefined FUN_100192f0(void) 87 0 +10019350 FUN_10019350 undefined FUN_10019350(void) 11 1 +10019360 FUN_10019360 undefined FUN_10019360(void) 11 0 +10019380 FUN_10019380 undefined FUN_10019380(void) 11 1 +10019390 FUN_10019390 undefined FUN_10019390(void) 11 1 +100193d0 FUN_100193d0 undefined FUN_100193d0(void) 11 1 +100193e0 FUN_100193e0 undefined FUN_100193e0(void) 68 0 +10019430 FUN_10019430 undefined FUN_10019430(void) 68 0 +10019480 FUN_10019480 undefined FUN_10019480(void) 11 1 +10019490 FUN_10019490 undefined FUN_10019490(void) 68 0 +100194f0 FUN_100194f0 undefined FUN_100194f0(void) 11 1 +10019500 FUN_10019500 undefined FUN_10019500(void) 11 0 +10019520 FUN_10019520 undefined FUN_10019520(void) 11 1 +10019530 FUN_10019530 undefined FUN_10019530(void) 11 1 +10019540 FUN_10019540 undefined FUN_10019540(void) 10 1 +10019590 FUN_10019590 undefined FUN_10019590(void) 11 1 +100195a0 FUN_100195a0 undefined FUN_100195a0(void) 11 0 +100195b0 FUN_100195b0 undefined FUN_100195b0(void) 11 1 +100195c0 FUN_100195c0 undefined FUN_100195c0(void) 176 5 +10019670 FUN_10019670 undefined FUN_10019670(void) 21 0 +10019690 FUN_10019690 undefined FUN_10019690(void) 14 0 +100196b0 FUN_100196b0 undefined FUN_100196b0(void) 14 0 +100196c0 FUN_100196c0 undefined FUN_100196c0(void) 12 1 +100196f0 FUN_100196f0 undefined FUN_100196f0(void) 12 1 +10019720 FUN_10019720 undefined FUN_10019720(void) 14 0 +10019730 FUN_10019730 undefined FUN_10019730(void) 68 0 +10019780 FUN_10019780 undefined FUN_10019780(void) 68 0 +100197e0 FUN_100197e0 undefined FUN_100197e0(void) 12 1 +10019800 FUN_10019800 undefined FUN_10019800(void) 12 1 +10019820 FUN_10019820 undefined FUN_10019820(void) 12 1 +10019830 FUN_10019830 undefined FUN_10019830(void) 14 0 +10019840 FUN_10019840 undefined FUN_10019840(void) 19 0 +10019880 FUN_10019880 undefined FUN_10019880(void) 18 0 +100198a0 FUN_100198a0 undefined FUN_100198a0(void) 14 0 +100198b0 FUN_100198b0 undefined FUN_100198b0(void) 14 0 +100198c0 FUN_100198c0 undefined FUN_100198c0(void) 19 0 +100198e0 FUN_100198e0 undefined FUN_100198e0(void) 14 0 +100198f0 FUN_100198f0 undefined FUN_100198f0(void) 14 0 +10019900 FUN_10019900 undefined FUN_10019900(void) 14 0 +10019930 FUN_10019930 undefined FUN_10019930(void) 12 1 +10019940 FUN_10019940 undefined FUN_10019940(void) 14 0 +10019950 FUN_10019950 undefined FUN_10019950(void) 72 0 +100199a0 FUN_100199a0 undefined FUN_100199a0(void) 14 0 +100199b0 FUN_100199b0 undefined FUN_100199b0(void) 14 0 +100199d0 FUN_100199d0 undefined FUN_100199d0(void) 19 0 +100199f0 FUN_100199f0 undefined FUN_100199f0(void) 14 0 +10019a10 FUN_10019a10 undefined FUN_10019a10(void) 19 0 +10019aa0 FUN_10019aa0 undefined FUN_10019aa0(void) 12 1 +10019ad0 FUN_10019ad0 undefined FUN_10019ad0(void) 14 0 +10019af0 FUN_10019af0 undefined FUN_10019af0(void) 14 0 +10019b50 FUN_10019b50 undefined FUN_10019b50(void) 63 0 +10019ba0 FUN_10019ba0 undefined FUN_10019ba0(void) 143 5 memcpy +10019c40 FUN_10019c40 undefined FUN_10019c40(void) 18 0 +10019c60 FUN_10019c60 undefined FUN_10019c60(void) 68 0 +10019cf0 FUN_10019cf0 undefined FUN_10019cf0(void) 87 0 +10019d50 FUN_10019d50 undefined FUN_10019d50(void) 11 1 +10019d60 FUN_10019d60 undefined FUN_10019d60(void) 11 0 +10019d70 FUN_10019d70 undefined FUN_10019d70(void) 14 0 +10019d80 FUN_10019d80 undefined FUN_10019d80(void) 12 1 +10019da0 FUN_10019da0 undefined FUN_10019da0(void) 14 0 +10019dd0 FUN_10019dd0 undefined FUN_10019dd0(void) 68 0 +10019e20 FUN_10019e20 undefined FUN_10019e20(void) 14 0 +10019e40 FUN_10019e40 undefined FUN_10019e40(void) 12 1 +10019e60 FUN_10019e60 undefined FUN_10019e60(void) 12 1 +10019e80 FUN_10019e80 undefined FUN_10019e80(void) 12 1 +10019ea0 FUN_10019ea0 undefined FUN_10019ea0(void) 12 1 +10019eb0 FUN_10019eb0 undefined FUN_10019eb0(void) 142 2 +10019f3e Catch@10019f3e undefined Catch@10019f3e(void) 41 1 +10019f70 FUN_10019f70 undefined FUN_10019f70(void) 97 2 memcpy +10019fd1 Catch@10019fd1 undefined Catch@10019fd1(void) 46 2 +1001a000 FUN_1001a000 undefined FUN_1001a000(void) 68 0 +1001a050 FUN_1001a050 undefined FUN_1001a050(void) 14 0 +1001a060 FUN_1001a060 undefined FUN_1001a060(void) 21 1 +1001a080 FUN_1001a080 undefined FUN_1001a080(void) 65 0 +1001a0d0 FUN_1001a0d0 undefined FUN_1001a0d0(void) 15 0 +1001a0e0 FUN_1001a0e0 undefined FUN_1001a0e0(void) 472 8 +1001a2b8 Catch@1001a2b8 undefined Catch@1001a2b8(void) 33 1 +1001a2dc FUN_1001a2dc undefined FUN_1001a2dc(void) 117 4 +1001a360 FUN_1001a360 undefined FUN_1001a360(void) 44 0 +1001a390 FUN_1001a390 undefined FUN_1001a390(void) 88 0 +1001a400 FUN_1001a400 undefined FUN_1001a400(void) 21 0 +1001a420 FUN_1001a420 undefined FUN_1001a420(void) 50 1 +1001a460 FUN_1001a460 undefined FUN_1001a460(void) 93 0 +1001a4d0 FUN_1001a4d0 undefined FUN_1001a4d0(void) 21 1 +1001a500 FUN_1001a500 undefined FUN_1001a500(void) 90 0 +1001a570 FUN_1001a570 undefined FUN_1001a570(void) 21 1 +1001a5a0 FUN_1001a5a0 undefined FUN_1001a5a0(void) 21 1 +1001a5d0 FUN_1001a5d0 undefined FUN_1001a5d0(void) 21 1 +1001a600 FUN_1001a600 undefined FUN_1001a600(void) 21 1 +1001a620 FUN_1001a620 undefined FUN_1001a620(void) 14 0 +1001a630 FUN_1001a630 undefined FUN_1001a630(void) 14 0 +1001a640 FUN_1001a640 undefined FUN_1001a640(void) 72 0 +1001a6a0 FUN_1001a6a0 undefined FUN_1001a6a0(void) 21 1 +1001a6c0 FUN_1001a6c0 undefined FUN_1001a6c0(void) 65 0 +1001a710 FUN_1001a710 undefined FUN_1001a710(void) 14 0 +1001a720 FUN_1001a720 undefined FUN_1001a720(void) 64 1 +1001a760 FUN_1001a760 undefined FUN_1001a760(void) 46 0 +1001a790 FUN_1001a790 undefined FUN_1001a790(void) 46 0 +1001a7c0 FUN_1001a7c0 undefined FUN_1001a7c0(void) 81 0 +1001a820 FUN_1001a820 undefined FUN_1001a820(void) 44 0 +1001a860 FUN_1001a860 undefined FUN_1001a860(void) 21 1 +1001a8b0 FUN_1001a8b0 undefined FUN_1001a8b0(void) 87 0 +1001a910 FUN_1001a910 undefined FUN_1001a910(void) 11 0 +1001a920 FUN_1001a920 undefined FUN_1001a920(void) 92 0 +1001a980 FUN_1001a980 undefined FUN_1001a980(void) 44 0 +1001a9b0 FUN_1001a9b0 undefined FUN_1001a9b0(void) 44 0 +1001a9e0 FUN_1001a9e0 undefined FUN_1001a9e0(void) 44 0 +1001aa10 FUN_1001aa10 undefined FUN_1001aa10(void) 15 0 +1001aa30 FUN_1001aa30 undefined FUN_1001aa30(void) 59 0 +1001aa80 FUN_1001aa80 undefined FUN_1001aa80(void) 21 1 +1001aaa0 FUN_1001aaa0 undefined FUN_1001aaa0(void) 17 0 +1001aac0 FUN_1001aac0 undefined FUN_1001aac0(void) 44 0 +1001aaf0 FUN_1001aaf0 undefined FUN_1001aaf0(void) 18 0 +1001ab10 FUN_1001ab10 undefined FUN_1001ab10(void) 49 0 +1001ab50 FUN_1001ab50 undefined FUN_1001ab50(void) 72 0 +1001aba0 FUN_1001aba0 undefined FUN_1001aba0(void) 14 0 +1001abc0 FUN_1001abc0 undefined FUN_1001abc0(void) 12 1 +1001abd0 FUN_1001abd0 undefined FUN_1001abd0(void) 14 0 +1001abe0 FUN_1001abe0 undefined FUN_1001abe0(void) 14 0 +1001abf0 FUN_1001abf0 undefined FUN_1001abf0(void) 14 0 +1001ac00 FUN_1001ac00 undefined FUN_1001ac00(void) 72 0 +1001ac50 FUN_1001ac50 undefined FUN_1001ac50(void) 14 0 +1001ac60 FUN_1001ac60 undefined FUN_1001ac60(void) 14 0 +1001ac70 FUN_1001ac70 undefined FUN_1001ac70(void) 33 0 +1001aca0 FUN_1001aca0 undefined FUN_1001aca0(void) 14 0 +1001acb0 FUN_1001acb0 undefined FUN_1001acb0(void) 33 0 +1001ace0 FUN_1001ace0 undefined FUN_1001ace0(void) 14 0 +1001acf0 FUN_1001acf0 undefined FUN_1001acf0(void) 54 0 +1001ad30 FUN_1001ad30 undefined FUN_1001ad30(void) 21 0 +1001ad50 FUN_1001ad50 undefined FUN_1001ad50(void) 14 0 +1001ad60 FUN_1001ad60 undefined FUN_1001ad60(void) 72 0 +1001adb0 FUN_1001adb0 undefined FUN_1001adb0(void) 14 0 +1001add0 FUN_1001add0 undefined FUN_1001add0(void) 14 0 +1001adf0 FUN_1001adf0 undefined FUN_1001adf0(void) 14 0 +1001ae10 FUN_1001ae10 undefined FUN_1001ae10(void) 72 0 +1001ae60 FUN_1001ae60 undefined FUN_1001ae60(void) 72 0 +1001aeb0 FUN_1001aeb0 undefined FUN_1001aeb0(void) 72 0 +1001af00 FUN_1001af00 undefined FUN_1001af00(void) 14 0 +1001af20 FUN_1001af20 undefined FUN_1001af20(void) 14 0 +1001af30 FUN_1001af30 undefined FUN_1001af30(void) 72 0 +1001af80 FUN_1001af80 undefined FUN_1001af80(void) 14 0 +1001afa0 FUN_1001afa0 undefined FUN_1001afa0(void) 14 0 +1001afc0 FUN_1001afc0 undefined FUN_1001afc0(void) 14 0 +1001afd0 FUN_1001afd0 undefined FUN_1001afd0(void) 14 0 +1001aff0 FUN_1001aff0 undefined FUN_1001aff0(void) 14 0 +1001b000 FUN_1001b000 undefined FUN_1001b000(void) 14 0 +1001b020 FUN_1001b020 undefined FUN_1001b020(void) 14 0 +1001b040 FUN_1001b040 undefined FUN_1001b040(void) 14 0 +1001b060 FUN_1001b060 undefined FUN_1001b060(void) 72 0 +1001b0b0 FUN_1001b0b0 undefined FUN_1001b0b0(void) 72 0 +1001b100 FUN_1001b100 undefined FUN_1001b100(void) 14 0 +1001b120 FUN_1001b120 undefined FUN_1001b120(void) 14 0 +1001b130 FUN_1001b130 undefined FUN_1001b130(void) 12 1 +1001b140 FUN_1001b140 undefined FUN_1001b140(void) 14 0 +1001b150 FUN_1001b150 undefined FUN_1001b150(void) 14 0 +1001b160 FUN_1001b160 undefined FUN_1001b160(void) 17 0 +1001b180 FUN_1001b180 undefined FUN_1001b180(void) 46 0 +1001b1b0 FUN_1001b1b0 undefined FUN_1001b1b0(void) 14 0 +1001b1c0 FUN_1001b1c0 undefined FUN_1001b1c0(void) 72 0 +1001b220 FUN_1001b220 undefined FUN_1001b220(void) 72 0 +1001b270 FUN_1001b270 undefined FUN_1001b270(void) 14 0 +1001b280 FUN_1001b280 undefined FUN_1001b280(void) 14 0 +1001b290 FUN_1001b290 undefined FUN_1001b290(void) 14 0 +1001b2a0 FUN_1001b2a0 undefined FUN_1001b2a0(void) 14 0 +1001b2b0 FUN_1001b2b0 undefined FUN_1001b2b0(void) 72 0 +1001b300 FUN_1001b300 undefined FUN_1001b300(void) 21 1 +1001b340 FUN_1001b340 undefined FUN_1001b340(void) 21 1 +1001b380 FUN_1001b380 undefined FUN_1001b380(void) 21 1 +1001b3b0 FUN_1001b3b0 undefined FUN_1001b3b0(void) 21 1 +1001b3e0 FUN_1001b3e0 undefined FUN_1001b3e0(void) 21 1 +1001b410 FUN_1001b410 undefined FUN_1001b410(void) 21 1 +1001b440 FUN_1001b440 undefined FUN_1001b440(void) 21 1 +1001b460 FUN_1001b460 undefined FUN_1001b460(void) 21 1 +1001b4a0 FUN_1001b4a0 undefined FUN_1001b4a0(void) 21 1 +1001b4e0 FUN_1001b4e0 undefined FUN_1001b4e0(void) 21 1 +1001b530 FUN_1001b530 undefined FUN_1001b530(void) 21 1 +1001b560 FUN_1001b560 undefined FUN_1001b560(void) 21 1 +1001b590 FUN_1001b590 undefined FUN_1001b590(void) 21 1 +1001b5d0 FUN_1001b5d0 undefined FUN_1001b5d0(void) 21 1 +1001b610 FUN_1001b610 undefined FUN_1001b610(void) 21 1 +1001b650 FUN_1001b650 undefined FUN_1001b650(void) 21 1 +1001b680 FUN_1001b680 undefined FUN_1001b680(void) 21 1 +1001b6d0 FUN_1001b6d0 undefined FUN_1001b6d0(void) 87 0 +1001b740 FUN_1001b740 undefined FUN_1001b740(void) 21 1 +1001b780 FUN_1001b780 undefined FUN_1001b780(void) 21 1 +1001b7c0 FUN_1001b7c0 undefined FUN_1001b7c0(void) 21 1 +1001b7f0 FUN_1001b7f0 undefined FUN_1001b7f0(void) 21 1 +1001b830 FUN_1001b830 undefined FUN_1001b830(void) 21 1 +1001b860 FUN_1001b860 undefined FUN_1001b860(void) 21 1 +1001b880 FUN_1001b880 undefined FUN_1001b880(void) 23 1 +1001b8b0 FUN_1001b8b0 undefined FUN_1001b8b0(void) 21 1 +1001b8f0 FUN_1001b8f0 undefined FUN_1001b8f0(void) 21 1 +1001b940 FUN_1001b940 undefined FUN_1001b940(void) 21 1 +1001b970 FUN_1001b970 undefined FUN_1001b970(void) 21 1 +1001b9a0 FUN_1001b9a0 undefined FUN_1001b9a0(void) 21 1 +1001b9d0 FUN_1001b9d0 undefined FUN_1001b9d0(void) 21 1 +1001ba00 FUN_1001ba00 undefined FUN_1001ba00(void) 21 1 +1001ba30 FUN_1001ba30 undefined FUN_1001ba30(void) 21 1 +1001ba70 FUN_1001ba70 undefined FUN_1001ba70(void) 21 1 +1001bab0 FUN_1001bab0 undefined FUN_1001bab0(void) 21 1 +1001bb00 FUN_1001bb00 undefined FUN_1001bb00(void) 21 1 +1001bb30 FUN_1001bb30 undefined FUN_1001bb30(void) 21 1 +1001bb70 FUN_1001bb70 undefined FUN_1001bb70(void) 21 1 +1001bba0 FUN_1001bba0 undefined FUN_1001bba0(void) 21 1 +1001bbf0 FUN_1001bbf0 undefined FUN_1001bbf0(void) 87 0 +1001bc50 FUN_1001bc50 undefined FUN_1001bc50(void) 11 0 +1001bc70 FUN_1001bc70 undefined FUN_1001bc70(void) 21 1 +1001bca0 FUN_1001bca0 undefined FUN_1001bca0(void) 21 1 +1001bcc0 FUN_1001bcc0 undefined FUN_1001bcc0(void) 83 0 +1001bd20 FUN_1001bd20 undefined FUN_1001bd20(void) 87 0 +1001bd90 FUN_1001bd90 undefined FUN_1001bd90(void) 21 1 +1001bdc0 FUN_1001bdc0 undefined FUN_1001bdc0(void) 21 1 +1001bdf0 FUN_1001bdf0 undefined FUN_1001bdf0(void) 21 1 +1001be20 FUN_1001be20 undefined FUN_1001be20(void) 21 1 +1001be40 FUN_1001be40 undefined FUN_1001be40(void) 21 1 +1001be80 FUN_1001be80 undefined FUN_1001be80(void) 21 1 +1001bec0 FUN_1001bec0 undefined FUN_1001bec0(void) 21 1 +1001bef0 FUN_1001bef0 undefined FUN_1001bef0(void) 21 1 +1001bf30 FUN_1001bf30 undefined FUN_1001bf30(void) 21 1 +1001bf70 FUN_1001bf70 undefined FUN_1001bf70(void) 21 1 +1001bfa0 FUN_1001bfa0 undefined FUN_1001bfa0(void) 21 1 +1001bfe0 FUN_1001bfe0 undefined FUN_1001bfe0(void) 21 1 +1001c000 FUN_1001c000 undefined FUN_1001c000(void) 83 0 +1001c060 FUN_1001c060 undefined FUN_1001c060(void) 87 0 +1001c0d0 FUN_1001c0d0 undefined FUN_1001c0d0(void) 21 1 +1001c110 FUN_1001c110 undefined FUN_1001c110(void) 21 1 +1001c130 FUN_1001c130 undefined FUN_1001c130(void) 72 0 +1001c180 FUN_1001c180 undefined FUN_1001c180(void) 24 0 +1001c1a0 FUN_1001c1a0 undefined FUN_1001c1a0(void) 12 1 +1001c1b0 FUN_1001c1b0 undefined FUN_1001c1b0(void) 23 1 +1001c1d0 FUN_1001c1d0 undefined FUN_1001c1d0(void) 72 0 +1001c220 FUN_1001c220 undefined FUN_1001c220(void) 12 1 +1001c230 FUN_1001c230 undefined FUN_1001c230(void) 14 0 +1001c240 FUN_1001c240 undefined FUN_1001c240(void) 12 1 +1001c250 FUN_1001c250 undefined FUN_1001c250(void) 23 1 +1001c270 FUN_1001c270 undefined FUN_1001c270(void) 23 1 +1001c290 FUN_1001c290 undefined FUN_1001c290(void) 23 1 +1001c2b0 FUN_1001c2b0 undefined FUN_1001c2b0(void) 72 0 +1001c300 FUN_1001c300 undefined FUN_1001c300(void) 88 0 +1001c360 FUN_1001c360 undefined FUN_1001c360(void) 72 0 +1001c3b0 FUN_1001c3b0 undefined FUN_1001c3b0(void) 72 0 +1001c400 FUN_1001c400 undefined FUN_1001c400(void) 23 1 +1001c420 FUN_1001c420 undefined FUN_1001c420(void) 23 1 +1001c440 FUN_1001c440 undefined FUN_1001c440(void) 72 0 +1001c4a0 FUN_1001c4a0 undefined FUN_1001c4a0(void) 21 1 +1001c4c0 FUN_1001c4c0 undefined FUN_1001c4c0(void) 23 1 +1001c4e0 FUN_1001c4e0 undefined FUN_1001c4e0(void) 72 0 +1001c540 FUN_1001c540 undefined FUN_1001c540(void) 45 0 +1001c570 FUN_1001c570 undefined FUN_1001c570(void) 23 1 +1001c590 FUN_1001c590 undefined FUN_1001c590(void) 23 1 +1001c5b0 FUN_1001c5b0 undefined FUN_1001c5b0(void) 23 1 +1001c5d0 FUN_1001c5d0 undefined FUN_1001c5d0(void) 23 1 +1001c5f0 FUN_1001c5f0 undefined FUN_1001c5f0(void) 14 0 +1001c600 FUN_1001c600 undefined FUN_1001c600(void) 14 0 +1001c610 FUN_1001c610 undefined FUN_1001c610(void) 14 0 +1001c620 FUN_1001c620 undefined FUN_1001c620(void) 14 0 +1001c630 FUN_1001c630 undefined FUN_1001c630(void) 14 0 +1001c640 FUN_1001c640 undefined FUN_1001c640(void) 14 0 +1001c650 FUN_1001c650 undefined FUN_1001c650(void) 14 0 +1001c660 FUN_1001c660 undefined FUN_1001c660(void) 14 0 +1001c670 FUN_1001c670 undefined FUN_1001c670(void) 21 0 +1001c6c0 FUN_1001c6c0 undefined FUN_1001c6c0(void) 83 0 +1001c740 FUN_1001c740 undefined FUN_1001c740(void) 87 0 +1001c7a0 FUN_1001c7a0 undefined FUN_1001c7a0(void) 83 0 +1001c820 FUN_1001c820 undefined FUN_1001c820(void) 87 0 +1001c880 FUN_1001c880 undefined FUN_1001c880(void) 83 0 +1001c8e0 FUN_1001c8e0 undefined FUN_1001c8e0(void) 87 0 +1001c940 FUN_1001c940 undefined FUN_1001c940(void) 83 0 +1001c9b0 FUN_1001c9b0 undefined FUN_1001c9b0(void) 142 3 +1001ca50 FUN_1001ca50 undefined FUN_1001ca50(void) 21 1 +1001ca70 FUN_1001ca70 undefined FUN_1001ca70(void) 83 0 +1001cad0 FUN_1001cad0 undefined FUN_1001cad0(void) 83 0 +1001cb30 FUN_1001cb30 undefined FUN_1001cb30(void) 83 0 +1001cb90 FUN_1001cb90 undefined FUN_1001cb90(void) 83 0 +1001cbf0 FUN_1001cbf0 undefined FUN_1001cbf0(void) 86 0 +1001cc50 FUN_1001cc50 undefined FUN_1001cc50(void) 83 0 +1001ccb0 FUN_1001ccb0 undefined FUN_1001ccb0(void) 83 0 +1001cd10 FUN_1001cd10 undefined FUN_1001cd10(void) 83 0 +1001cd70 FUN_1001cd70 undefined FUN_1001cd70(void) 83 0 +1001cdd0 FUN_1001cdd0 undefined FUN_1001cdd0(void) 83 0 +1001ce30 FUN_1001ce30 undefined FUN_1001ce30(void) 83 0 +1001ce90 FUN_1001ce90 undefined FUN_1001ce90(void) 87 0 +1001cef0 FUN_1001cef0 undefined FUN_1001cef0(void) 83 0 +1001cf50 FUN_1001cf50 undefined FUN_1001cf50(void) 83 0 +1001cfb0 FUN_1001cfb0 undefined FUN_1001cfb0(void) 83 0 +1001d010 FUN_1001d010 undefined FUN_1001d010(void) 83 0 +1001d070 FUN_1001d070 undefined FUN_1001d070(void) 83 0 +1001d0d0 FUN_1001d0d0 undefined FUN_1001d0d0(void) 83 0 +1001d130 FUN_1001d130 undefined FUN_1001d130(void) 87 0 +1001d190 FUN_1001d190 undefined FUN_1001d190(void) 12 1 +1001d1a0 FUN_1001d1a0 undefined FUN_1001d1a0(void) 83 0 +1001d200 FUN_1001d200 undefined FUN_1001d200(void) 83 0 +1001d260 FUN_1001d260 undefined FUN_1001d260(void) 87 0 +1001d2c0 FUN_1001d2c0 undefined FUN_1001d2c0(void) 83 0 +1001d320 FUN_1001d320 undefined FUN_1001d320(void) 87 0 +1001d380 FUN_1001d380 undefined FUN_1001d380(void) 83 0 +1001d3e0 FUN_1001d3e0 undefined FUN_1001d3e0(void) 83 0 +1001d440 FUN_1001d440 undefined FUN_1001d440(void) 87 0 +1001d4a0 FUN_1001d4a0 undefined FUN_1001d4a0(void) 83 0 +1001d500 FUN_1001d500 undefined FUN_1001d500(void) 83 0 +1001d560 FUN_1001d560 undefined FUN_1001d560(void) 83 0 +1001d5c0 FUN_1001d5c0 undefined FUN_1001d5c0(void) 83 0 +1001d620 FUN_1001d620 undefined FUN_1001d620(void) 87 0 +1001d680 FUN_1001d680 undefined FUN_1001d680(void) 83 0 +1001d6e0 FUN_1001d6e0 undefined FUN_1001d6e0(void) 83 0 +1001d740 FUN_1001d740 undefined FUN_1001d740(void) 87 0 +1001d7a0 FUN_1001d7a0 undefined FUN_1001d7a0(void) 83 0 +1001d800 FUN_1001d800 undefined FUN_1001d800(void) 83 0 +1001d860 FUN_1001d860 undefined FUN_1001d860(void) 83 0 +1001d8c0 FUN_1001d8c0 undefined FUN_1001d8c0(void) 14 0 +1001d8d0 FUN_1001d8d0 undefined FUN_1001d8d0(void) 12 1 +1001d8e0 FUN_1001d8e0 undefined FUN_1001d8e0(void) 12 1 +1001d8f0 FUN_1001d8f0 undefined FUN_1001d8f0(void) 21 1 +1001d910 FUN_1001d910 undefined FUN_1001d910(void) 14 0 +1001d920 FUN_1001d920 undefined FUN_1001d920(void) 12 1 +1001d930 FUN_1001d930 undefined FUN_1001d930(void) 12 1 +1001d940 FUN_1001d940 undefined FUN_1001d940(void) 14 0 +1001d950 FUN_1001d950 undefined FUN_1001d950(void) 12 1 +1001d960 FUN_1001d960 undefined FUN_1001d960(void) 14 0 +1001d970 FUN_1001d970 undefined FUN_1001d970(void) 12 1 +1001d980 FUN_1001d980 undefined FUN_1001d980(void) 14 0 +1001d990 FUN_1001d990 undefined FUN_1001d990(void) 12 1 +1001d9a0 FUN_1001d9a0 undefined FUN_1001d9a0(void) 12 1 +1001d9b0 FUN_1001d9b0 undefined FUN_1001d9b0(void) 12 1 +1001d9c0 FUN_1001d9c0 undefined FUN_1001d9c0(void) 12 1 +1001d9d0 FUN_1001d9d0 undefined FUN_1001d9d0(void) 14 0 +1001d9e0 FUN_1001d9e0 undefined FUN_1001d9e0(void) 12 1 +1001d9f0 FUN_1001d9f0 undefined FUN_1001d9f0(void) 14 0 +1001da00 FUN_1001da00 undefined FUN_1001da00(void) 12 1 +1001da10 FUN_1001da10 undefined FUN_1001da10(void) 12 1 +1001da20 FUN_1001da20 undefined FUN_1001da20(void) 14 0 +1001da30 FUN_1001da30 undefined FUN_1001da30(void) 12 1 +1001da40 FUN_1001da40 undefined FUN_1001da40(void) 12 1 +1001da50 FUN_1001da50 undefined FUN_1001da50(void) 14 0 +1001da60 FUN_1001da60 undefined FUN_1001da60(void) 12 1 +1001da70 FUN_1001da70 undefined FUN_1001da70(void) 14 0 +1001da80 FUN_1001da80 undefined FUN_1001da80(void) 12 1 +1001da90 FUN_1001da90 undefined FUN_1001da90(void) 19 0 +1001dab0 FUN_1001dab0 undefined FUN_1001dab0(void) 15 0 +1001dac0 FUN_1001dac0 undefined FUN_1001dac0(void) 49 0 +1001db00 FUN_1001db00 undefined FUN_1001db00(void) 95 3 +1001db60 FUN_1001db60 undefined FUN_1001db60(void) 120 3 +1001dbe0 FUN_1001dbe0 undefined FUN_1001dbe0(void) 24 0 +1001dc00 FUN_1001dc00 undefined FUN_1001dc00(void) 542 11 +1001de1e Catch@1001de1e undefined Catch@1001de1e(void) 33 1 +1001de42 FUN_1001de42 undefined FUN_1001de42(void) 117 4 +1001dec0 FUN_1001dec0 undefined FUN_1001dec0(void) 405 8 +1001e055 Catch@1001e055 undefined Catch@1001e055(void) 33 1 +1001e079 FUN_1001e079 undefined FUN_1001e079(void) 117 4 +1001e0f0 FUN_1001e0f0 undefined FUN_1001e0f0(void) 54 0 +1001e130 FUN_1001e130 undefined FUN_1001e130(void) 42 0 +1001e160 FUN_1001e160 undefined FUN_1001e160(void) 42 0 +1001e190 FUN_1001e190 undefined FUN_1001e190(void) 83 0 +1001e1f0 FUN_1001e1f0 undefined FUN_1001e1f0(void) 21 0 +1001e210 FUN_1001e210 undefined FUN_1001e210(void) 21 0 +1001e230 FUN_1001e230 undefined FUN_1001e230(void) 40 1 memmove +1001e260 FUN_1001e260 undefined FUN_1001e260(void) 24 0 +1001e280 FUN_1001e280 undefined FUN_1001e280(void) 21 0 +1001e2a0 FUN_1001e2a0 undefined FUN_1001e2a0(void) 42 1 memmove +1001e2e0 FUN_1001e2e0 undefined FUN_1001e2e0(void) 24 0 +1001e310 FUN_1001e310 undefined FUN_1001e310(void) 24 0 +1001e350 FUN_1001e350 undefined FUN_1001e350(void) 24 0 +1001e370 FUN_1001e370 undefined FUN_1001e370(void) 24 0 +1001e390 FUN_1001e390 undefined FUN_1001e390(void) 24 0 +1001e3b0 FUN_1001e3b0 undefined FUN_1001e3b0(void) 24 0 +1001e3d0 FUN_1001e3d0 undefined FUN_1001e3d0(void) 42 1 memmove +1001e410 FUN_1001e410 undefined FUN_1001e410(void) 74 0 +1001e460 FUN_1001e460 undefined FUN_1001e460(void) 32 1 +1001e480 FUN_1001e480 undefined FUN_1001e480(void) 22 1 +1001e4a0 FUN_1001e4a0 undefined FUN_1001e4a0(void) 142 3 +1001e5b0 FUN_1001e5b0 undefined FUN_1001e5b0(void) 86 0 +1001e630 FUN_1001e630 undefined FUN_1001e630(void) 86 0 +1001e6a0 FUN_1001e6a0 undefined FUN_1001e6a0(void) 86 0 +1001e870 FUN_1001e870 undefined FUN_1001e870(void) 86 0 +1001e9d0 FUN_1001e9d0 undefined FUN_1001e9d0(void) 16 0 +1001e9f0 FUN_1001e9f0 undefined FUN_1001e9f0(void) 89 0 +1001ea60 FUN_1001ea60 undefined FUN_1001ea60(void) 68 0 +1001eab0 FUN_1001eab0 undefined FUN_1001eab0(void) 22 0 +1001ead0 FUN_1001ead0 undefined FUN_1001ead0(void) 11 0 +1001eae0 FUN_1001eae0 undefined FUN_1001eae0(void) 12 1 +1001eaf0 FUN_1001eaf0 undefined FUN_1001eaf0(void) 11 0 +1001eb00 FUN_1001eb00 undefined FUN_1001eb00(void) 23 1 +1001eb20 FUN_1001eb20 undefined FUN_1001eb20(void) 11 0 +1001eb30 FUN_1001eb30 undefined FUN_1001eb30(void) 11 0 +1001eb40 FUN_1001eb40 undefined FUN_1001eb40(void) 12 1 +1001eb60 FUN_1001eb60 undefined FUN_1001eb60(void) 12 1 +1001eb80 FUN_1001eb80 undefined FUN_1001eb80(void) 12 1 +1001eba0 FUN_1001eba0 undefined FUN_1001eba0(void) 12 1 +1001ebc0 FUN_1001ebc0 undefined FUN_1001ebc0(void) 12 1 +1001ebd0 FUN_1001ebd0 undefined FUN_1001ebd0(void) 12 1 +1001ebe0 FUN_1001ebe0 undefined FUN_1001ebe0(void) 12 1 +1001ed30 FUN_1001ed30 undefined FUN_1001ed30(void) 12 1 +1001ed40 FUN_1001ed40 undefined FUN_1001ed40(void) 12 1 +1001ed50 FUN_1001ed50 undefined FUN_1001ed50(void) 24 0 +1001ed70 FUN_1001ed70 undefined FUN_1001ed70(void) 12 1 +1001ed80 FUN_1001ed80 undefined FUN_1001ed80(void) 24 0 +1001eda0 FUN_1001eda0 undefined FUN_1001eda0(void) 24 0 +1001edc0 FUN_1001edc0 undefined FUN_1001edc0(void) 12 1 +1001edd0 FUN_1001edd0 undefined FUN_1001edd0(void) 24 0 +1001edf0 FUN_1001edf0 undefined FUN_1001edf0(void) 12 1 +1001ee00 FUN_1001ee00 undefined FUN_1001ee00(void) 12 1 +1001ee10 FUN_1001ee10 undefined FUN_1001ee10(void) 12 1 +1001ee20 FUN_1001ee20 undefined FUN_1001ee20(void) 12 1 +1001ee30 FUN_1001ee30 undefined FUN_1001ee30(void) 24 0 +1001ee50 FUN_1001ee50 undefined FUN_1001ee50(void) 12 1 +1001ee60 FUN_1001ee60 undefined FUN_1001ee60(void) 12 1 +1001ee70 FUN_1001ee70 undefined FUN_1001ee70(void) 12 1 +1001ee80 FUN_1001ee80 undefined FUN_1001ee80(void) 24 0 +1001eea0 FUN_1001eea0 undefined FUN_1001eea0(void) 12 1 +1001eec0 FUN_1001eec0 undefined FUN_1001eec0(void) 24 0 +1001eee0 FUN_1001eee0 undefined FUN_1001eee0(void) 24 0 +1001ef00 FUN_1001ef00 undefined FUN_1001ef00(void) 24 0 +1001ef20 FUN_1001ef20 undefined FUN_1001ef20(void) 12 1 +1001ef30 FUN_1001ef30 undefined FUN_1001ef30(void) 24 0 +1001ef50 FUN_1001ef50 undefined FUN_1001ef50(void) 24 0 +1001ef70 FUN_1001ef70 undefined FUN_1001ef70(void) 24 0 +1001ef90 FUN_1001ef90 undefined FUN_1001ef90(void) 24 0 +1001efb0 FUN_1001efb0 undefined FUN_1001efb0(void) 12 1 +1001efc0 FUN_1001efc0 undefined FUN_1001efc0(void) 24 0 +1001efe0 FUN_1001efe0 undefined FUN_1001efe0(void) 12 1 +1001eff0 FUN_1001eff0 undefined FUN_1001eff0(void) 12 1 +1001f000 FUN_1001f000 undefined FUN_1001f000(void) 12 1 +1001f010 FUN_1001f010 undefined FUN_1001f010(void) 12 1 +1001f020 FUN_1001f020 undefined FUN_1001f020(void) 24 0 +1001f040 FUN_1001f040 undefined FUN_1001f040(void) 24 0 +1001f060 FUN_1001f060 undefined FUN_1001f060(void) 24 0 +1001f080 FUN_1001f080 undefined FUN_1001f080(void) 24 0 +1001f0a0 FUN_1001f0a0 undefined FUN_1001f0a0(void) 24 0 +1001f0c0 FUN_1001f0c0 undefined FUN_1001f0c0(void) 11 0 +1001f0d0 FUN_1001f0d0 undefined FUN_1001f0d0(void) 12 1 +1001f0e0 FUN_1001f0e0 undefined FUN_1001f0e0(void) 24 0 +1001f100 FUN_1001f100 undefined FUN_1001f100(void) 24 0 +1001f120 FUN_1001f120 undefined FUN_1001f120(void) 24 0 +1001f140 FUN_1001f140 undefined FUN_1001f140(void) 24 0 +1001f160 FUN_1001f160 undefined FUN_1001f160(void) 142 3 +1001f1f0 FUN_1001f1f0 undefined FUN_1001f1f0(void) 185 2 CoCreateInstance +1001f2b0 FUN_1001f2b0 undefined FUN_1001f2b0(void) 39 2 CoCreateInstance +1001f2e0 FUN_1001f2e0 undefined FUN_1001f2e0(void) 235 5 CoCreateInstance +1001f3d0 FUN_1001f3d0 undefined FUN_1001f3d0(void) 185 2 CoCreateInstance +1001f490 FUN_1001f490 undefined FUN_1001f490(void) 39 2 CoCreateInstance +1001f4c0 FUN_1001f4c0 undefined FUN_1001f4c0(void) 235 5 CoCreateInstance +1001f5b0 FUN_1001f5b0 undefined FUN_1001f5b0(void) 60 0 +1001f5f0 FUN_1001f5f0 undefined FUN_1001f5f0(void) 60 0 +1001f630 FUN_1001f630 undefined FUN_1001f630(void) 24 0 +1001f650 FUN_1001f650 undefined FUN_1001f650(void) 8 0 +1001f660 FUN_1001f660 undefined FUN_1001f660(void) 13 0 +1001f670 FUN_1001f670 undefined FUN_1001f670(void) 42 0 +1001f6a0 FUN_1001f6a0 undefined FUN_1001f6a0(void) 36 0 +1001f6d0 FUN_1001f6d0 undefined FUN_1001f6d0(void) 24 0 +1001f6f0 FUN_1001f6f0 undefined FUN_1001f6f0(void) 101 0 +1001f760 FUN_1001f760 undefined FUN_1001f760(void) 101 0 +1001f7e0 FUN_1001f7e0 undefined FUN_1001f7e0(void) 21 0 +1001f800 FUN_1001f800 undefined FUN_1001f800(void) 37 1 memmove +1001f830 FUN_1001f830 undefined FUN_1001f830(void) 40 0 +1001f860 FUN_1001f860 undefined FUN_1001f860(void) 21 0 +1001f880 FUN_1001f880 undefined FUN_1001f880(void) 24 0 +1001f8a0 FUN_1001f8a0 undefined FUN_1001f8a0(void) 24 0 +1001f8c0 FUN_1001f8c0 undefined FUN_1001f8c0(void) 24 0 +1001f8e0 FUN_1001f8e0 undefined FUN_1001f8e0(void) 24 0 +1001f900 FUN_1001f900 undefined FUN_1001f900(void) 24 0 +1001f920 FUN_1001f920 undefined FUN_1001f920(void) 24 0 +1001f940 FUN_1001f940 undefined FUN_1001f940(void) 24 0 +1001f960 FUN_1001f960 undefined FUN_1001f960(void) 24 0 +1001f980 FUN_1001f980 undefined FUN_1001f980(void) 24 0 +1001f9a0 FUN_1001f9a0 undefined FUN_1001f9a0(void) 24 0 +1001f9c0 FUN_1001f9c0 undefined FUN_1001f9c0(void) 24 0 +1001f9e0 FUN_1001f9e0 undefined FUN_1001f9e0(void) 24 0 +1001fa00 FUN_1001fa00 undefined FUN_1001fa00(void) 24 0 +1001fa20 FUN_1001fa20 undefined FUN_1001fa20(void) 24 0 +1001fa40 FUN_1001fa40 undefined FUN_1001fa40(void) 24 0 +1001fa60 FUN_1001fa60 undefined FUN_1001fa60(void) 24 0 +1001fa80 FUN_1001fa80 undefined FUN_1001fa80(void) 24 0 +1001faa0 FUN_1001faa0 undefined FUN_1001faa0(void) 24 0 +1001fac0 FUN_1001fac0 undefined FUN_1001fac0(void) 24 0 +1001fae0 FUN_1001fae0 undefined FUN_1001fae0(void) 24 0 +1001fb00 FUN_1001fb00 undefined FUN_1001fb00(void) 24 0 +1001fb20 FUN_1001fb20 undefined FUN_1001fb20(void) 24 0 +1001fb40 FUN_1001fb40 undefined FUN_1001fb40(void) 24 0 +1001fb60 FUN_1001fb60 undefined FUN_1001fb60(void) 117 1 SysFreeString +1001fbe0 FUN_1001fbe0 undefined FUN_1001fbe0(void) 142 3 +1001fc70 FUN_1001fc70 undefined FUN_1001fc70(void) 19 0 +1001fc90 FUN_1001fc90 undefined FUN_1001fc90(void) 142 3 +1001fd20 FUN_1001fd20 undefined FUN_1001fd20(void) 142 3 +1001fdb0 FUN_1001fdb0 undefined FUN_1001fdb0(void) 142 3 +1001fe40 FUN_1001fe40 undefined FUN_1001fe40(void) 142 3 +1001fed0 FUN_1001fed0 undefined FUN_1001fed0(void) 142 3 +1001ff60 FUN_1001ff60 undefined FUN_1001ff60(void) 142 3 +1001fff0 FUN_1001fff0 undefined FUN_1001fff0(void) 142 3 +10020080 FUN_10020080 undefined FUN_10020080(void) 142 3 +10020110 FUN_10020110 undefined FUN_10020110(void) 142 3 +100201a0 FUN_100201a0 undefined FUN_100201a0(void) 142 3 +10020230 FUN_10020230 undefined FUN_10020230(void) 142 3 +100202c0 FUN_100202c0 undefined FUN_100202c0(void) 142 3 +10020350 FUN_10020350 undefined FUN_10020350(void) 142 3 +100203e0 FUN_100203e0 undefined FUN_100203e0(void) 142 3 +10020470 FUN_10020470 undefined FUN_10020470(void) 142 3 +10020500 FUN_10020500 undefined FUN_10020500(void) 142 3 +10020590 FUN_10020590 undefined FUN_10020590(void) 142 3 +10020620 FUN_10020620 undefined FUN_10020620(void) 142 3 +100206b0 FUN_100206b0 undefined FUN_100206b0(void) 142 3 +10020750 FUN_10020750 undefined FUN_10020750(void) 12 1 +10020760 FUN_10020760 undefined FUN_10020760(void) 12 1 +10020770 FUN_10020770 undefined FUN_10020770(void) 142 3 +10020800 FUN_10020800 undefined FUN_10020800(void) 11 1 +10020810 FUN_10020810 undefined FUN_10020810(void) 11 1 +10020820 FUN_10020820 undefined FUN_10020820(void) 11 1 +10020830 FUN_10020830 undefined FUN_10020830(void) 24 0 +10020850 FUN_10020850 undefined FUN_10020850(void) 24 0 +10020870 FUN_10020870 undefined FUN_10020870(void) 17 0 +10020890 FUN_10020890 undefined FUN_10020890(void) 15 0 +100208c0 FUN_100208c0 undefined FUN_100208c0(void) 12 1 +100208f0 FUN_100208f0 undefined FUN_100208f0(void) 83 0 +10020970 FUN_10020970 undefined FUN_10020970(void) 87 0 +100209f0 FUN_100209f0 undefined FUN_100209f0(void) 87 0 +10020a50 FUN_10020a50 undefined FUN_10020a50(void) 14 0 +10020a60 FUN_10020a60 undefined FUN_10020a60(void) 12 1 +10020a70 FUN_10020a70 undefined FUN_10020a70(void) 14 0 +10020a80 FUN_10020a80 undefined FUN_10020a80(void) 12 1 +10020a90 FUN_10020a90 undefined FUN_10020a90(void) 81 0 +10020af0 FUN_10020af0 undefined FUN_10020af0(void) 81 0 +10020b50 FUN_10020b50 undefined FUN_10020b50(void) 81 0 +10020bb0 FUN_10020bb0 undefined FUN_10020bb0(void) 83 0 +10020c10 FUN_10020c10 undefined FUN_10020c10(void) 87 0 +10020c70 FUN_10020c70 undefined FUN_10020c70(void) 99 0 +10020ce0 FUN_10020ce0 undefined FUN_10020ce0(void) 24 0 +10020d00 FUN_10020d00 undefined FUN_10020d00(void) 24 0 +10020d20 FUN_10020d20 undefined FUN_10020d20(void) 142 3 +10020dc0 FUN_10020dc0 undefined FUN_10020dc0(void) 87 0 +10020e30 FUN_10020e30 undefined FUN_10020e30(void) 142 3 +10020ec0 FUN_10020ec0 undefined FUN_10020ec0(void) 89 0 +10020f40 FUN_10020f40 undefined FUN_10020f40(void) 16 0 +10020f50 FUN_10020f50 undefined FUN_10020f50(void) 14 0 +10020f60 FUN_10020f60 undefined FUN_10020f60(void) 24 0 +10020f90 FUN_10020f90 undefined FUN_10020f90(void) 21 0 +10020fb0 FUN_10020fb0 undefined FUN_10020fb0(void) 33 0 +10020fe0 FUN_10020fe0 undefined FUN_10020fe0(void) 33 0 +10021010 FUN_10021010 undefined FUN_10021010(void) 54 0 +10021050 FUN_10021050 undefined FUN_10021050(void) 54 0 +10021090 FUN_10021090 undefined FUN_10021090(void) 42 0 +100210c0 FUN_100210c0 undefined FUN_100210c0(void) 11 1 +100210d0 FUN_100210d0 undefined FUN_100210d0(void) 17 0 +100210f0 FUN_100210f0 undefined FUN_100210f0(void) 15 0 +10021100 FUN_10021100 undefined FUN_10021100(void) 83 0 +10021160 FUN_10021160 undefined FUN_10021160(void) 60 0 +100211a0 FUN_100211a0 undefined FUN_100211a0(void) 60 0 +100211e0 FUN_100211e0 undefined FUN_100211e0(void) 22 0 +10021200 FUN_10021200 undefined FUN_10021200(void) 25 0 +10021220 FUN_10021220 undefined FUN_10021220(void) 157 0 +100212c0 FUN_100212c0 undefined FUN_100212c0(void) 38 1 memmove +100212f0 FUN_100212f0 undefined FUN_100212f0(void) 40 0 +10021320 FUN_10021320 undefined FUN_10021320(void) 34 0 +10021350 FUN_10021350 undefined FUN_10021350(void) 22 0 +10021370 FUN_10021370 undefined FUN_10021370(void) 81 0 +100213d0 FUN_100213d0 undefined FUN_100213d0(void) 42 0 +10021420 FUN_10021420 undefined FUN_10021420(void) 24 0 +10021440 FUN_10021440 undefined FUN_10021440(void) 40 1 +10021470 FUN_10021470 undefined FUN_10021470(void) 42 0 +100214a0 FUN_100214a0 undefined FUN_100214a0(void) 171 6 SysAllocString;SysFreeString +10021550 FUN_10021550 undefined FUN_10021550(void) 74 0 +100215a0 FUN_100215a0 undefined FUN_100215a0(void) 166 2 +10021650 FUN_10021650 undefined FUN_10021650(void) 211 2 +10021730 FUN_10021730 undefined FUN_10021730(void) 72 0 +10021780 FUN_10021780 undefined FUN_10021780(void) 161 2 SysFreeString +10021830 FUN_10021830 undefined FUN_10021830(void) 62 3 SysAllocStringByteLen +10021870 FUN_10021870 undefined FUN_10021870(void) 75 4 SysAllocStringByteLen;SysFreeString +100218c0 FUN_100218c0 undefined FUN_100218c0(void) 32 2 +100218e0 FUN_100218e0 undefined FUN_100218e0(void) 44 3 +10021910 FUN_10021910 undefined FUN_10021910(void) 764 2 +10021c10 FUN_10021c10 undefined FUN_10021c10(void) 162 1 +10021cc0 FUN_10021cc0 undefined FUN_10021cc0(void) 129 1 SysFreeString +10021d90 FUN_10021d90 undefined FUN_10021d90(void) 129 1 SysFreeString +10021e50 FUN_10021e50 undefined FUN_10021e50(void) 52 1 +10021ef0 FUN_10021ef0 undefined FUN_10021ef0(void) 360 4 CoGetClassObject;SysFreeString +10022060 FUN_10022060 undefined FUN_10022060(void) 478 7 CoGetClassObject;SysFreeString +10022240 FUN_10022240 undefined FUN_10022240(void) 105 0 +100222c0 FUN_100222c0 undefined FUN_100222c0(void) 148 2 SysFreeString +10022360 FUN_10022360 undefined FUN_10022360(void) 34 0 +10022390 FUN_10022390 undefined FUN_10022390(void) 105 1 +10022400 FUN_10022400 undefined FUN_10022400(void) 122 1 +10022480 FUN_10022480 undefined FUN_10022480(void) 74 0 +100224d0 FUN_100224d0 undefined FUN_100224d0(void) 115 2 SysAllocString +10022550 FUN_10022550 undefined FUN_10022550(void) 34 1 +10022580 FUN_10022580 undefined FUN_10022580(void) 57 3 SysFreeString +100225e0 FUN_100225e0 undefined FUN_100225e0(void) 105 0 +10022650 FUN_10022650 undefined FUN_10022650(void) 139 0 +100226f0 FUN_100226f0 undefined FUN_100226f0(void) 128 4 +10022770 Catch@10022770 undefined Catch@10022770(void) 22 0 +10022788 Catch@10022788 undefined Catch@10022788(void) 20 0 +100227a0 FUN_100227a0 undefined FUN_100227a0(void) 74 0 +100227f0 FUN_100227f0 undefined FUN_100227f0(void) 41 0 +10022820 FUN_10022820 undefined FUN_10022820(void) 74 0 +10022870 FUN_10022870 undefined FUN_10022870(void) 401 7 +10022a01 Catch@10022a01 undefined Catch@10022a01(void) 33 1 +10022a25 FUN_10022a25 undefined FUN_10022a25(void) 136 5 +10022ab0 FUN_10022ab0 undefined FUN_10022ab0(void) 74 0 +10022b00 FUN_10022b00 undefined FUN_10022b00(void) 74 0 +10022b50 FUN_10022b50 undefined FUN_10022b50(void) 79 2 +10022ba0 FUN_10022ba0 undefined FUN_10022ba0(void) 99 2 +10022c10 FUN_10022c10 undefined FUN_10022c10(void) 150 5 +10022cb0 FUN_10022cb0 undefined FUN_10022cb0(void) 150 5 +10022d50 FUN_10022d50 undefined FUN_10022d50(void) 150 5 +10022df0 FUN_10022df0 undefined FUN_10022df0(void) 150 5 +10022e90 FUN_10022e90 undefined FUN_10022e90(void) 74 0 +10022ee0 FUN_10022ee0 undefined FUN_10022ee0(void) 162 5 +10022f90 FUN_10022f90 undefined FUN_10022f90(void) 96 2 +10022ff0 FUN_10022ff0 undefined FUN_10022ff0(void) 110 2 +10023060 FUN_10023060 undefined FUN_10023060(void) 27 0 +10023080 FUN_10023080 undefined FUN_10023080(void) 24 1 +100230a0 FUN_100230a0 undefined FUN_100230a0(void) 74 0 +100230f0 FUN_100230f0 undefined FUN_100230f0(void) 74 0 +10023140 FUN_10023140 undefined FUN_10023140(void) 74 0 +10023190 FUN_10023190 undefined FUN_10023190(void) 24 1 +100231b0 FUN_100231b0 undefined FUN_100231b0(void) 26 1 +100231d0 FUN_100231d0 undefined FUN_100231d0(void) 68 0 +10023220 FUN_10023220 undefined FUN_10023220(void) 101 0 +100232a0 FUN_100232a0 undefined FUN_100232a0(void) 14 0 +100232b0 FUN_100232b0 undefined FUN_100232b0(void) 15 0 +100232c0 FUN_100232c0 undefined FUN_100232c0(void) 17 0 +100232e0 FUN_100232e0 undefined FUN_100232e0(void) 15 0 +100232f0 FUN_100232f0 undefined FUN_100232f0(void) 17 0 +10023310 FUN_10023310 undefined FUN_10023310(void) 15 0 +10023320 FUN_10023320 undefined FUN_10023320(void) 17 0 +10023340 FUN_10023340 undefined FUN_10023340(void) 15 0 +10023350 FUN_10023350 undefined FUN_10023350(void) 17 0 +10023370 FUN_10023370 undefined FUN_10023370(void) 15 0 +10023380 FUN_10023380 undefined FUN_10023380(void) 12 1 +10023390 FUN_10023390 undefined FUN_10023390(void) 23 1 +100233b0 FUN_100233b0 undefined FUN_100233b0(void) 17 0 +100233d0 FUN_100233d0 undefined FUN_100233d0(void) 15 0 +100233e0 FUN_100233e0 undefined FUN_100233e0(void) 17 0 +10023400 FUN_10023400 undefined FUN_10023400(void) 15 0 +10023410 FUN_10023410 undefined FUN_10023410(void) 17 0 +10023430 FUN_10023430 undefined FUN_10023430(void) 15 0 +10023440 FUN_10023440 undefined FUN_10023440(void) 296 7 SysAllocStringByteLen;SysFreeString +10023570 FUN_10023570 undefined FUN_10023570(void) 50 1 +100235b0 FUN_100235b0 undefined FUN_100235b0(void) 50 1 +100235f0 FUN_100235f0 undefined FUN_100235f0(void) 74 1 +10023640 FUN_10023640 undefined FUN_10023640(void) 46 1 +10023670 FUN_10023670 undefined FUN_10023670(void) 354 10 SysAllocStringByteLen;SysFreeString +100237f0 FUN_100237f0 undefined FUN_100237f0(void) 14 0 +10023800 FUN_10023800 undefined FUN_10023800(void) 15 0 +10023810 FUN_10023810 undefined FUN_10023810(void) 101 0 +10023890 FUN_10023890 undefined FUN_10023890(void) 14 0 +100238a0 FUN_100238a0 undefined FUN_100238a0(void) 15 0 +100238b0 FUN_100238b0 undefined FUN_100238b0(void) 17 0 +100238d0 FUN_100238d0 undefined FUN_100238d0(void) 15 0 +100238e0 FUN_100238e0 undefined FUN_100238e0(void) 17 0 +10023900 FUN_10023900 undefined FUN_10023900(void) 15 0 +10023910 FUN_10023910 undefined FUN_10023910(void) 130 1 +100239a0 FUN_100239a0 undefined FUN_100239a0(void) 17 0 +100239c0 FUN_100239c0 undefined FUN_100239c0(void) 15 0 +100239d0 FUN_100239d0 undefined FUN_100239d0(void) 35 0 +10023a00 FUN_10023a00 undefined FUN_10023a00(void) 14 0 +10023a10 FUN_10023a10 undefined FUN_10023a10(void) 14 0 +10023a40 FUN_10023a40 undefined FUN_10023a40(void) 10 0 +10023a70 FUN_10023a70 undefined FUN_10023a70(void) 16 0 +10023a80 FUN_10023a80 undefined FUN_10023a80(void) 35 0 +10023ab0 FUN_10023ab0 undefined FUN_10023ab0(void) 27 1 AtlInternalQueryInterface +10023af0 FUN_10023af0 undefined FUN_10023af0(void) 30 1 AtlInternalQueryInterface +10023b10 FUN_10023b10 undefined FUN_10023b10(void) 54 1 +10023b50 FUN_10023b50 undefined FUN_10023b50(void) 14 0 +10023b60 FUN_10023b60 undefined FUN_10023b60(void) 15 0 +10023b70 FUN_10023b70 undefined FUN_10023b70(void) 19 0 +10023b90 FUN_10023b90 undefined FUN_10023b90(void) 19 0 +10023bc0 FUN_10023bc0 undefined FUN_10023bc0(void) 17 0 +10023be0 FUN_10023be0 undefined FUN_10023be0(void) 15 0 +10023bf0 FUN_10023bf0 undefined FUN_10023bf0(void) 17 0 +10023c10 FUN_10023c10 undefined FUN_10023c10(void) 15 0 +10023c20 FUN_10023c20 undefined FUN_10023c20(void) 17 0 +10023c40 FUN_10023c40 undefined FUN_10023c40(void) 15 0 +10023c50 FUN_10023c50 undefined FUN_10023c50(void) 17 0 +10023c70 FUN_10023c70 undefined FUN_10023c70(void) 15 0 +10023c90 FUN_10023c90 undefined FUN_10023c90(void) 14 0 +10023ca0 FUN_10023ca0 undefined FUN_10023ca0(void) 15 0 +10023cb0 FUN_10023cb0 undefined FUN_10023cb0(void) 17 0 +10023cd0 FUN_10023cd0 undefined FUN_10023cd0(void) 15 0 +10023ce0 FUN_10023ce0 undefined FUN_10023ce0(void) 15 0 +10023cf0 FUN_10023cf0 undefined FUN_10023cf0(void) 21 0 +10023d30 FUN_10023d30 undefined FUN_10023d30(void) 23 1 +10023da0 FUN_10023da0 undefined FUN_10023da0(void) 101 0 +10023e10 FUN_10023e10 undefined FUN_10023e10(void) 101 0 +10023eb0 FUN_10023eb0 undefined FUN_10023eb0(void) 19 0 +10023ee0 FUN_10023ee0 undefined FUN_10023ee0(void) 18 0 +10023f00 FUN_10023f00 undefined FUN_10023f00(void) 19 0 +10023f40 FUN_10023f40 undefined FUN_10023f40(void) 12 1 +10023f50 FUN_10023f50 undefined FUN_10023f50(void) 23 1 +10023f70 FUN_10023f70 undefined FUN_10023f70(void) 19 0 +10023f90 FUN_10023f90 undefined FUN_10023f90(void) 19 0 +10023fb0 FUN_10023fb0 undefined FUN_10023fb0(void) 19 0 +10023fd0 FUN_10023fd0 undefined FUN_10023fd0(void) 19 0 +10023ff0 FUN_10023ff0 undefined FUN_10023ff0(void) 18 0 +10024010 FUN_10024010 undefined FUN_10024010(void) 18 0 +10024040 FUN_10024040 undefined FUN_10024040(void) 18 0 +10024060 FUN_10024060 undefined FUN_10024060(void) 18 0 +100240a0 FUN_100240a0 undefined FUN_100240a0(void) 18 0 +100240c0 FUN_100240c0 undefined FUN_100240c0(void) 18 0 +10024100 FUN_10024100 undefined FUN_10024100(void) 18 0 +10024160 FUN_10024160 undefined FUN_10024160(void) 18 0 +10024180 FUN_10024180 undefined FUN_10024180(void) 101 0 +10024200 FUN_10024200 undefined FUN_10024200(void) 15 0 +10024230 FUN_10024230 undefined FUN_10024230(void) 101 0 +100242d0 FUN_100242d0 undefined FUN_100242d0(void) 101 0 +10024360 FUN_10024360 undefined FUN_10024360(void) 41 1 +10024390 FUN_10024390 undefined FUN_10024390(void) 83 0 +100243f0 FUN_100243f0 undefined FUN_100243f0(void) 141 2 memmove +10024480 FUN_10024480 undefined FUN_10024480(void) 49 0 +100244c0 FUN_100244c0 undefined FUN_100244c0(void) 83 0 +10024520 FUN_10024520 undefined FUN_10024520(void) 83 0 +10024580 FUN_10024580 undefined FUN_10024580(void) 145 3 +10024620 FUN_10024620 undefined FUN_10024620(void) 58 1 +10024660 FUN_10024660 undefined FUN_10024660(void) 145 3 +10024700 FUN_10024700 undefined FUN_10024700(void) 145 3 +100247a0 FUN_100247a0 undefined FUN_100247a0(void) 101 0 +10024810 FUN_10024810 undefined FUN_10024810(void) 145 3 +100248b0 FUN_100248b0 undefined FUN_100248b0(void) 101 0 +10024920 FUN_10024920 undefined FUN_10024920(void) 101 0 +10024990 FUN_10024990 undefined FUN_10024990(void) 145 3 +10024a40 FUN_10024a40 undefined FUN_10024a40(void) 128 3 +10024ac0 FUN_10024ac0 undefined FUN_10024ac0(void) 532 11 memcpy +10024ce0 FUN_10024ce0 undefined FUN_10024ce0(void) 83 0 +10024d40 FUN_10024d40 undefined FUN_10024d40(void) 14 0 +10024d50 FUN_10024d50 undefined FUN_10024d50(void) 31 1 +10024d70 FUN_10024d70 undefined FUN_10024d70(void) 14 0 +10024d80 FUN_10024d80 undefined FUN_10024d80(void) 12 1 +10024d90 FUN_10024d90 undefined FUN_10024d90(void) 107 1 +10024e00 FUN_10024e00 undefined FUN_10024e00(void) 107 1 +10024e70 FUN_10024e70 undefined FUN_10024e70(void) 145 3 +10024f10 FUN_10024f10 undefined FUN_10024f10(void) 83 0 +10024f70 FUN_10024f70 undefined FUN_10024f70(void) 14 0 +10024f80 FUN_10024f80 undefined FUN_10024f80(void) 83 0 +10024fe0 FUN_10024fe0 undefined FUN_10024fe0(void) 117 2 +10025060 FUN_10025060 undefined FUN_10025060(void) 117 2 +100250e0 FUN_100250e0 undefined FUN_100250e0(void) 83 0 +10025140 FUN_10025140 undefined FUN_10025140(void) 83 0 +100251a0 FUN_100251a0 undefined FUN_100251a0(void) 83 0 +10025200 FUN_10025200 undefined FUN_10025200(void) 83 0 +10025260 FUN_10025260 undefined FUN_10025260(void) 23 1 +10025280 FUN_10025280 undefined FUN_10025280(void) 83 0 +100252e0 FUN_100252e0 undefined FUN_100252e0(void) 83 0 +10025340 FUN_10025340 undefined FUN_10025340(void) 83 0 +100253a0 FUN_100253a0 undefined FUN_100253a0(void) 145 3 +10025440 FUN_10025440 undefined FUN_10025440(void) 49 0 +10025480 FUN_10025480 undefined FUN_10025480(void) 128 1 +10025500 FUN_10025500 undefined FUN_10025500(void) 49 0 +10025540 FUN_10025540 undefined FUN_10025540(void) 12 1 +10025550 FUN_10025550 undefined FUN_10025550(void) 14 0 +10025570 FUN_10025570 undefined FUN_10025570(void) 14 0 +10025580 FUN_10025580 undefined FUN_10025580(void) 14 0 +10025590 FUN_10025590 undefined FUN_10025590(void) 14 0 +100255a0 FUN_100255a0 undefined FUN_100255a0(void) 12 1 +100255b0 FUN_100255b0 undefined FUN_100255b0(void) 14 0 +100255c0 FUN_100255c0 undefined FUN_100255c0(void) 14 0 +100255d0 FUN_100255d0 undefined FUN_100255d0(void) 33 0 +10025600 FUN_10025600 undefined FUN_10025600(void) 14 0 +10025610 FUN_10025610 undefined FUN_10025610(void) 33 0 +10025640 FUN_10025640 undefined FUN_10025640(void) 14 0 +10025650 FUN_10025650 undefined FUN_10025650(void) 54 0 +10025690 FUN_10025690 undefined FUN_10025690(void) 23 0 +100256b0 FUN_100256b0 undefined FUN_100256b0(void) 14 0 +100256c0 FUN_100256c0 undefined FUN_100256c0(void) 182 4 memcpy +10025780 FUN_10025780 undefined FUN_10025780(void) 12 1 +10025790 FUN_10025790 undefined FUN_10025790(void) 14 0 +100257b0 FUN_100257b0 undefined FUN_100257b0(void) 14 0 +100257d0 FUN_100257d0 undefined FUN_100257d0(void) 14 0 +100257f0 FUN_100257f0 undefined FUN_100257f0(void) 12 1 +10025800 FUN_10025800 undefined FUN_10025800(void) 12 1 +10025810 FUN_10025810 undefined FUN_10025810(void) 12 1 +10025820 FUN_10025820 undefined FUN_10025820(void) 14 0 +10025840 FUN_10025840 undefined FUN_10025840(void) 14 0 +10025850 FUN_10025850 undefined FUN_10025850(void) 12 1 +10025860 FUN_10025860 undefined FUN_10025860(void) 12 1 +10025870 FUN_10025870 undefined FUN_10025870(void) 14 0 +10025890 FUN_10025890 undefined FUN_10025890(void) 14 0 +100258b0 FUN_100258b0 undefined FUN_100258b0(void) 14 0 +100258c0 FUN_100258c0 undefined FUN_100258c0(void) 14 0 +100258e0 FUN_100258e0 undefined FUN_100258e0(void) 14 0 +100258f0 FUN_100258f0 undefined FUN_100258f0(void) 12 1 +10025900 FUN_10025900 undefined FUN_10025900(void) 14 0 +10025920 FUN_10025920 undefined FUN_10025920(void) 14 0 +10025940 FUN_10025940 undefined FUN_10025940(void) 14 0 +10025960 FUN_10025960 undefined FUN_10025960(void) 12 1 +10025970 FUN_10025970 undefined FUN_10025970(void) 12 1 +10025980 FUN_10025980 undefined FUN_10025980(void) 14 0 +100259a0 FUN_100259a0 undefined FUN_100259a0(void) 14 0 +100259b0 FUN_100259b0 undefined FUN_100259b0(void) 12 1 +100259c0 FUN_100259c0 undefined FUN_100259c0(void) 23 1 +100259f0 FUN_100259f0 undefined FUN_100259f0(void) 14 0 +10025a00 FUN_10025a00 undefined FUN_10025a00(void) 14 0 +10025a10 FUN_10025a10 undefined FUN_10025a10(void) 51 0 +10025a50 FUN_10025a50 undefined FUN_10025a50(void) 83 0 +10025ab0 FUN_10025ab0 undefined FUN_10025ab0(void) 14 0 +10025ac0 FUN_10025ac0 undefined FUN_10025ac0(void) 12 1 +10025ae0 FUN_10025ae0 undefined FUN_10025ae0(void) 12 1 +10025af0 FUN_10025af0 undefined FUN_10025af0(void) 14 0 +10025b00 FUN_10025b00 undefined FUN_10025b00(void) 14 0 +10025b10 FUN_10025b10 undefined FUN_10025b10(void) 12 1 +10025b20 FUN_10025b20 undefined FUN_10025b20(void) 14 0 +10025b30 FUN_10025b30 undefined FUN_10025b30(void) 12 1 +10025b40 FUN_10025b40 undefined FUN_10025b40(void) 14 0 +10025b50 FUN_10025b50 undefined FUN_10025b50(void) 12 1 +10025b60 FUN_10025b60 undefined FUN_10025b60(void) 12 1 +10025b70 FUN_10025b70 undefined FUN_10025b70(void) 167 3 +10025c30 FUN_10025c30 undefined FUN_10025c30(void) 55 1 +10025c70 FUN_10025c70 undefined FUN_10025c70(void) 17 0 +10025c90 FUN_10025c90 undefined FUN_10025c90(void) 15 0 +10025ca0 FUN_10025ca0 undefined FUN_10025ca0(void) 167 3 +10025d50 FUN_10025d50 undefined FUN_10025d50(void) 167 3 +10025e00 FUN_10025e00 undefined FUN_10025e00(void) 91 0 +10025e60 FUN_10025e60 undefined FUN_10025e60(void) 167 3 +10025f10 FUN_10025f10 undefined FUN_10025f10(void) 19 1 +10025f30 FUN_10025f30 undefined FUN_10025f30(void) 167 3 +10025fe0 FUN_10025fe0 undefined FUN_10025fe0(void) 57 1 +10026020 FUN_10026020 undefined FUN_10026020(void) 167 3 +100260d0 FUN_100260d0 undefined FUN_100260d0(void) 372 6 memcpy +10026260 FUN_10026260 undefined FUN_10026260(void) 167 3 +10026320 FUN_10026320 undefined FUN_10026320(void) 167 3 +100263d0 FUN_100263d0 undefined FUN_100263d0(void) 42 1 +10026410 FUN_10026410 undefined FUN_10026410(void) 88 0 +10026470 FUN_10026470 undefined FUN_10026470(void) 176 3 +10026530 FUN_10026530 undefined FUN_10026530(void) 167 3 +100265e0 FUN_100265e0 undefined FUN_100265e0(void) 167 3 +10026690 FUN_10026690 undefined FUN_10026690(void) 17 0 +100266b0 FUN_100266b0 undefined FUN_100266b0(void) 15 0 +100266c0 FUN_100266c0 undefined FUN_100266c0(void) 167 3 +10026770 FUN_10026770 undefined FUN_10026770(void) 17 0 +10026790 FUN_10026790 undefined FUN_10026790(void) 15 0 +100267a0 FUN_100267a0 undefined FUN_100267a0(void) 167 3 +10026850 FUN_10026850 undefined FUN_10026850(void) 17 0 +10026870 FUN_10026870 undefined FUN_10026870(void) 15 0 +10026880 FUN_10026880 undefined FUN_10026880(void) 167 3 +10026930 FUN_10026930 undefined FUN_10026930(void) 97 1 +100269a0 FUN_100269a0 undefined FUN_100269a0(void) 167 3 +10026a50 FUN_10026a50 undefined FUN_10026a50(void) 17 0 +10026a70 FUN_10026a70 undefined FUN_10026a70(void) 167 3 +10026b20 FUN_10026b20 undefined FUN_10026b20(void) 167 3 +10026bd0 FUN_10026bd0 undefined FUN_10026bd0(void) 167 3 +10026c80 FUN_10026c80 undefined FUN_10026c80(void) 167 3 +10026d30 FUN_10026d30 undefined FUN_10026d30(void) 17 0 +10026d50 FUN_10026d50 undefined FUN_10026d50(void) 15 0 +10026d60 FUN_10026d60 undefined FUN_10026d60(void) 167 3 +10026e10 FUN_10026e10 undefined FUN_10026e10(void) 167 3 +10026ec0 FUN_10026ec0 undefined FUN_10026ec0(void) 167 3 +10026f70 FUN_10026f70 undefined FUN_10026f70(void) 42 1 +10026fa0 FUN_10026fa0 undefined FUN_10026fa0(void) 167 3 +10027050 FUN_10027050 undefined FUN_10027050(void) 17 0 +10027070 FUN_10027070 undefined FUN_10027070(void) 167 3 +10027120 FUN_10027120 undefined FUN_10027120(void) 167 3 +100271d0 FUN_100271d0 undefined FUN_100271d0(void) 167 3 +10027280 FUN_10027280 undefined FUN_10027280(void) 167 3 +10027330 FUN_10027330 undefined FUN_10027330(void) 17 0 +10027350 FUN_10027350 undefined FUN_10027350(void) 167 3 +10027400 FUN_10027400 undefined FUN_10027400(void) 17 0 +10027420 FUN_10027420 undefined FUN_10027420(void) 167 3 +100274d0 FUN_100274d0 undefined FUN_100274d0(void) 167 3 +10027580 FUN_10027580 undefined FUN_10027580(void) 167 3 +10027630 FUN_10027630 undefined FUN_10027630(void) 17 0 +10027650 FUN_10027650 undefined FUN_10027650(void) 44 0 +10027680 FUN_10027680 undefined FUN_10027680(void) 167 3 +10027730 FUN_10027730 undefined FUN_10027730(void) 167 3 +100277e0 FUN_100277e0 undefined FUN_100277e0(void) 44 0 +10027810 FUN_10027810 undefined FUN_10027810(void) 167 3 +100278c0 FUN_100278c0 undefined FUN_100278c0(void) 167 3 +10027970 FUN_10027970 undefined FUN_10027970(void) 167 3 +10027a20 FUN_10027a20 undefined FUN_10027a20(void) 47 0 +10027a50 FUN_10027a50 undefined FUN_10027a50(void) 83 0 +10027ab0 FUN_10027ab0 undefined FUN_10027ab0(void) 167 3 +10027b60 FUN_10027b60 undefined FUN_10027b60(void) 277 0 +10027c80 FUN_10027c80 undefined FUN_10027c80(void) 167 3 +10027d30 FUN_10027d30 undefined FUN_10027d30(void) 17 0 +10027d50 FUN_10027d50 undefined FUN_10027d50(void) 167 3 +10027e00 FUN_10027e00 undefined FUN_10027e00(void) 17 0 +10027e20 FUN_10027e20 undefined FUN_10027e20(void) 167 3 +10027ed0 FUN_10027ed0 undefined FUN_10027ed0(void) 17 0 +10027ef0 FUN_10027ef0 undefined FUN_10027ef0(void) 167 3 +10027fa0 FUN_10027fa0 undefined FUN_10027fa0(void) 17 0 +10027fc0 FUN_10027fc0 undefined FUN_10027fc0(void) 15 0 +10027fd0 FUN_10027fd0 undefined FUN_10027fd0(void) 167 3 +10028080 FUN_10028080 undefined FUN_10028080(void) 167 3 +10028130 FUN_10028130 undefined FUN_10028130(void) 167 3 +100281e0 FUN_100281e0 undefined FUN_100281e0(void) 167 3 +10028290 FUN_10028290 undefined FUN_10028290(void) 81 0 +100282f0 FUN_100282f0 undefined FUN_100282f0(void) 167 3 +100283a0 FUN_100283a0 undefined FUN_100283a0(void) 167 3 +10028450 FUN_10028450 undefined FUN_10028450(void) 167 3 +10028500 FUN_10028500 undefined FUN_10028500(void) 129 0 +10028590 FUN_10028590 undefined FUN_10028590(void) 167 3 +10028640 FUN_10028640 undefined FUN_10028640(void) 167 3 +100286f0 FUN_100286f0 undefined FUN_100286f0(void) 12 1 +10028700 FUN_10028700 undefined FUN_10028700(void) 24 0 +10028720 FUN_10028720 undefined FUN_10028720(void) 23 1 +10028740 FUN_10028740 undefined FUN_10028740(void) 12 1 +10028750 FUN_10028750 undefined FUN_10028750(void) 23 1 +10028770 FUN_10028770 undefined FUN_10028770(void) 14 0 +10028780 FUN_10028780 undefined FUN_10028780(void) 23 1 +100287a0 FUN_100287a0 undefined FUN_100287a0(void) 12 1 +100287b0 FUN_100287b0 undefined FUN_100287b0(void) 12 1 +100287c0 FUN_100287c0 undefined FUN_100287c0(void) 12 1 +100287d0 FUN_100287d0 undefined FUN_100287d0(void) 12 1 +100287e0 FUN_100287e0 undefined FUN_100287e0(void) 12 1 +100287f0 FUN_100287f0 undefined FUN_100287f0(void) 167 3 +100288a0 FUN_100288a0 undefined FUN_100288a0(void) 12 1 +100288b0 FUN_100288b0 undefined FUN_100288b0(void) 14 0 +100288c0 FUN_100288c0 undefined FUN_100288c0(void) 15 0 +100288d0 FUN_100288d0 undefined FUN_100288d0(void) 14 0 +100288e0 FUN_100288e0 undefined FUN_100288e0(void) 20 0 +10028900 FUN_10028900 undefined FUN_10028900(void) 83 0 +10028960 FUN_10028960 undefined FUN_10028960(void) 23 1 +10028980 FUN_10028980 undefined FUN_10028980(void) 120 1 +10028a00 FUN_10028a00 undefined FUN_10028a00(void) 23 1 +10028a20 FUN_10028a20 undefined FUN_10028a20(void) 83 0 +10028a80 FUN_10028a80 undefined FUN_10028a80(void) 23 1 +10028aa0 FUN_10028aa0 undefined FUN_10028aa0(void) 23 1 +10028ac0 FUN_10028ac0 undefined FUN_10028ac0(void) 23 1 +10028ae0 FUN_10028ae0 undefined FUN_10028ae0(void) 14 0 +10028af0 FUN_10028af0 undefined FUN_10028af0(void) 23 1 +10028b10 FUN_10028b10 undefined FUN_10028b10(void) 23 1 +10028b30 FUN_10028b30 undefined FUN_10028b30(void) 23 1 +10028b50 FUN_10028b50 undefined FUN_10028b50(void) 23 1 +10028b70 FUN_10028b70 undefined FUN_10028b70(void) 23 1 +10028b90 FUN_10028b90 undefined FUN_10028b90(void) 23 1 +10028bb0 FUN_10028bb0 undefined FUN_10028bb0(void) 23 1 +10028bd0 FUN_10028bd0 undefined FUN_10028bd0(void) 23 1 +10028bf0 FUN_10028bf0 undefined FUN_10028bf0(void) 15 0 +10028c00 FUN_10028c00 undefined FUN_10028c00(void) 14 0 +10028c10 FUN_10028c10 undefined FUN_10028c10(void) 23 1 +10028c30 FUN_10028c30 undefined FUN_10028c30(void) 23 1 +10028c50 FUN_10028c50 undefined FUN_10028c50(void) 14 0 +10028c60 FUN_10028c60 undefined FUN_10028c60(void) 23 1 +10028c80 FUN_10028c80 undefined FUN_10028c80(void) 14 0 +10028c90 FUN_10028c90 undefined FUN_10028c90(void) 23 1 +10028cb0 FUN_10028cb0 undefined FUN_10028cb0(void) 14 0 +10028cc0 FUN_10028cc0 undefined FUN_10028cc0(void) 23 1 +10028ce0 FUN_10028ce0 undefined FUN_10028ce0(void) 23 1 +10028d00 FUN_10028d00 undefined FUN_10028d00(void) 23 1 +10028d20 FUN_10028d20 undefined FUN_10028d20(void) 23 1 +10028d40 FUN_10028d40 undefined FUN_10028d40(void) 14 0 +10028d50 FUN_10028d50 undefined FUN_10028d50(void) 23 1 +10028d70 FUN_10028d70 undefined FUN_10028d70(void) 14 0 +10028d80 FUN_10028d80 undefined FUN_10028d80(void) 23 1 +10028da0 FUN_10028da0 undefined FUN_10028da0(void) 23 1 +10028dc0 FUN_10028dc0 undefined FUN_10028dc0(void) 14 0 +10028dd0 FUN_10028dd0 undefined FUN_10028dd0(void) 23 1 +10028df0 FUN_10028df0 undefined FUN_10028df0(void) 23 1 +10028e10 FUN_10028e10 undefined FUN_10028e10(void) 14 0 +10028e20 FUN_10028e20 undefined FUN_10028e20(void) 23 1 +10028e40 FUN_10028e40 undefined FUN_10028e40(void) 14 0 +10028e50 FUN_10028e50 undefined FUN_10028e50(void) 23 1 +10028e70 FUN_10028e70 undefined FUN_10028e70(void) 19 0 +10028e90 FUN_10028e90 undefined FUN_10028e90(void) 47 0 +10028ec0 FUN_10028ec0 undefined FUN_10028ec0(void) 83 0 +10028f20 FUN_10028f20 undefined FUN_10028f20(void) 83 0 +10028f80 FUN_10028f80 undefined FUN_10028f80(void) 49 0 +10028fc0 FUN_10028fc0 undefined FUN_10028fc0(void) 80 1 +10029010 Catch@10029010 undefined Catch@10029010(void) 37 2 +10029047 Catch@10029047 undefined Catch@10029047(void) 13 0 +10029070 FUN_10029070 undefined FUN_10029070(void) 238 2 CoCreateInstance +10029160 FUN_10029160 undefined FUN_10029160(void) 210 2 CoCreateInstance +10029240 FUN_10029240 undefined FUN_10029240(void) 190 2 +10029300 FUN_10029300 undefined FUN_10029300(void) 80 1 +10029350 Catch@10029350 undefined Catch@10029350(void) 37 2 +10029387 Catch@10029387 undefined Catch@10029387(void) 13 0 +100293b0 FUN_100293b0 undefined FUN_100293b0(void) 238 2 CoCreateInstance +100294a0 FUN_100294a0 undefined FUN_100294a0(void) 210 2 CoCreateInstance +10029580 FUN_10029580 undefined FUN_10029580(void) 59 0 +100295c0 FUN_100295c0 undefined FUN_100295c0(void) 59 0 +10029600 FUN_10029600 undefined FUN_10029600(void) 23 0 +10029620 FUN_10029620 undefined FUN_10029620(void) 41 0 +10029650 FUN_10029650 undefined FUN_10029650(void) 35 0 +10029680 FUN_10029680 undefined FUN_10029680(void) 23 0 +100296d0 FUN_100296d0 undefined FUN_100296d0(void) 32 1 +10029720 FUN_10029720 undefined FUN_10029720(void) 84 0 +100297c0 FUN_100297c0 undefined FUN_100297c0(void) 32 1 +10029820 FUN_10029820 undefined FUN_10029820(void) 21 0 +10029850 FUN_10029850 undefined FUN_10029850(void) 87 0 +100298f0 FUN_100298f0 undefined FUN_100298f0(void) 39 1 memmove +10029950 FUN_10029950 undefined FUN_10029950(void) 84 0 +10029a10 FUN_10029a10 undefined FUN_10029a10(void) 84 0 +10029a90 FUN_10029a90 undefined FUN_10029a90(void) 40 0 +10029b10 FUN_10029b10 undefined FUN_10029b10(void) 84 0 +10029b70 FUN_10029b70 undefined FUN_10029b70(void) 21 0 +10029cb0 FUN_10029cb0 undefined FUN_10029cb0(void) 125 4 SysAllocStringByteLen;SysFreeString +10029d40 FUN_10029d40 undefined FUN_10029d40(void) 546 2 +10029f70 FUN_10029f70 undefined FUN_10029f70(void) 546 2 +1002a1a0 FUN_1002a1a0 undefined FUN_1002a1a0(void) 546 2 +1002a3d0 FUN_1002a3d0 undefined FUN_1002a3d0(void) 546 2 +1002a600 FUN_1002a600 undefined FUN_1002a600(void) 546 2 +1002a830 FUN_1002a830 undefined FUN_1002a830(void) 546 2 +1002aa60 FUN_1002aa60 undefined FUN_1002aa60(void) 546 2 +1002ac90 FUN_1002ac90 undefined FUN_1002ac90(void) 546 2 +1002aec0 FUN_1002aec0 undefined FUN_1002aec0(void) 546 2 +1002b0f0 FUN_1002b0f0 undefined FUN_1002b0f0(void) 546 2 +1002b320 FUN_1002b320 undefined FUN_1002b320(void) 546 2 +1002b550 FUN_1002b550 undefined FUN_1002b550(void) 546 2 +1002b780 FUN_1002b780 undefined FUN_1002b780(void) 546 2 +1002b9b0 FUN_1002b9b0 undefined FUN_1002b9b0(void) 546 2 +1002bbe0 FUN_1002bbe0 undefined FUN_1002bbe0(void) 546 2 +1002be10 FUN_1002be10 undefined FUN_1002be10(void) 12 1 +1002be20 FUN_1002be20 undefined FUN_1002be20(void) 12 1 +1002be30 FUN_1002be30 undefined FUN_1002be30(void) 24 0 +1002be50 FUN_1002be50 undefined FUN_1002be50(void) 12 1 +1002be60 FUN_1002be60 undefined FUN_1002be60(void) 24 0 +1002be80 FUN_1002be80 undefined FUN_1002be80(void) 24 0 +1002bea0 FUN_1002bea0 undefined FUN_1002bea0(void) 12 1 +1002beb0 FUN_1002beb0 undefined FUN_1002beb0(void) 24 0 +1002bed0 FUN_1002bed0 undefined FUN_1002bed0(void) 12 1 +1002bee0 FUN_1002bee0 undefined FUN_1002bee0(void) 24 0 +1002bf00 FUN_1002bf00 undefined FUN_1002bf00(void) 12 1 +1002bf10 FUN_1002bf10 undefined FUN_1002bf10(void) 12 1 +1002bf20 FUN_1002bf20 undefined FUN_1002bf20(void) 12 1 +1002bf30 FUN_1002bf30 undefined FUN_1002bf30(void) 24 0 +1002bf50 FUN_1002bf50 undefined FUN_1002bf50(void) 12 1 +1002bf60 FUN_1002bf60 undefined FUN_1002bf60(void) 546 2 +1002c190 FUN_1002c190 undefined FUN_1002c190(void) 24 0 +1002c1b0 FUN_1002c1b0 undefined FUN_1002c1b0(void) 24 0 +1002c1d0 FUN_1002c1d0 undefined FUN_1002c1d0(void) 24 0 +1002c1f0 FUN_1002c1f0 undefined FUN_1002c1f0(void) 12 1 +1002c200 FUN_1002c200 undefined FUN_1002c200(void) 24 0 +1002c220 FUN_1002c220 undefined FUN_1002c220(void) 24 0 +1002c240 FUN_1002c240 undefined FUN_1002c240(void) 24 0 +1002c260 FUN_1002c260 undefined FUN_1002c260(void) 24 0 +1002c280 FUN_1002c280 undefined FUN_1002c280(void) 12 1 +1002c290 FUN_1002c290 undefined FUN_1002c290(void) 24 0 +1002c2b0 FUN_1002c2b0 undefined FUN_1002c2b0(void) 12 1 +1002c2c0 FUN_1002c2c0 undefined FUN_1002c2c0(void) 12 1 +1002c2d0 FUN_1002c2d0 undefined FUN_1002c2d0(void) 12 1 +1002c2e0 FUN_1002c2e0 undefined FUN_1002c2e0(void) 12 1 +1002c2f0 FUN_1002c2f0 undefined FUN_1002c2f0(void) 24 0 +1002c310 FUN_1002c310 undefined FUN_1002c310(void) 24 0 +1002c330 FUN_1002c330 undefined FUN_1002c330(void) 24 0 +1002c350 FUN_1002c350 undefined FUN_1002c350(void) 24 0 +1002c370 FUN_1002c370 undefined FUN_1002c370(void) 24 0 +1002c3a0 FUN_1002c3a0 undefined FUN_1002c3a0(void) 19 1 +1002c3c0 FUN_1002c3c0 undefined FUN_1002c3c0(void) 24 0 +1002c3e0 FUN_1002c3e0 undefined FUN_1002c3e0(void) 24 0 +1002c400 FUN_1002c400 undefined FUN_1002c400(void) 24 0 +1002c420 FUN_1002c420 undefined FUN_1002c420(void) 24 0 +1002c440 FUN_1002c440 undefined FUN_1002c440(void) 546 2 +1002c670 FUN_1002c670 undefined FUN_1002c670(void) 190 4 +1002c6ff Catch@1002c6ff undefined Catch@1002c6ff(void) 21 2 +1002c750 FUN_1002c750 undefined FUN_1002c750(void) 190 4 +1002c7df Catch@1002c7df undefined Catch@1002c7df(void) 21 2 +1002c830 FUN_1002c830 undefined FUN_1002c830(void) 190 4 +1002c8bf Catch@1002c8bf undefined Catch@1002c8bf(void) 21 2 +1002c910 FUN_1002c910 undefined FUN_1002c910(void) 131 0 +1002c9a0 FUN_1002c9a0 undefined FUN_1002c9a0(void) 134 0 +1002ca30 FUN_1002ca30 undefined FUN_1002ca30(void) 134 0 +1002cac0 FUN_1002cac0 undefined FUN_1002cac0(void) 134 0 +1002cb50 FUN_1002cb50 undefined FUN_1002cb50(void) 134 0 +1002cbe0 FUN_1002cbe0 undefined FUN_1002cbe0(void) 134 0 +1002cc70 FUN_1002cc70 undefined FUN_1002cc70(void) 134 0 +1002cd00 FUN_1002cd00 undefined FUN_1002cd00(void) 134 0 +1002cd90 FUN_1002cd90 undefined FUN_1002cd90(void) 190 4 +1002ce1f Catch@1002ce1f undefined Catch@1002ce1f(void) 21 2 +1002ce70 FUN_1002ce70 undefined FUN_1002ce70(void) 190 4 +1002ceff Catch@1002ceff undefined Catch@1002ceff(void) 21 2 +1002cf50 FUN_1002cf50 undefined FUN_1002cf50(void) 190 4 +1002cfdf Catch@1002cfdf undefined Catch@1002cfdf(void) 21 2 +1002d030 FUN_1002d030 undefined FUN_1002d030(void) 190 4 +1002d0bf Catch@1002d0bf undefined Catch@1002d0bf(void) 21 2 +1002d110 FUN_1002d110 undefined FUN_1002d110(void) 101 0 +1002d180 FUN_1002d180 undefined FUN_1002d180(void) 101 0 +1002d1f0 FUN_1002d1f0 undefined FUN_1002d1f0(void) 101 0 +1002d260 FUN_1002d260 undefined FUN_1002d260(void) 133 1 SysFreeString +1002d2f0 FUN_1002d2f0 undefined FUN_1002d2f0(void) 100 1 +1002d360 FUN_1002d360 undefined FUN_1002d360(void) 100 1 +1002d3d0 FUN_1002d3d0 undefined FUN_1002d3d0(void) 68 1 +1002d420 FUN_1002d420 undefined FUN_1002d420(void) 546 2 +1002d650 FUN_1002d650 undefined FUN_1002d650(void) 12 1 +1002d660 FUN_1002d660 undefined FUN_1002d660(void) 14 0 +1002d670 FUN_1002d670 undefined FUN_1002d670(void) 23 1 +1002d690 FUN_1002d690 undefined FUN_1002d690(void) 14 0 +1002d6a0 FUN_1002d6a0 undefined FUN_1002d6a0(void) 23 1 +1002d6c0 FUN_1002d6c0 undefined FUN_1002d6c0(void) 83 0 +1002d720 FUN_1002d720 undefined FUN_1002d720(void) 83 0 +1002d780 FUN_1002d780 undefined FUN_1002d780(void) 87 0 +1002d800 FUN_1002d800 undefined FUN_1002d800(void) 121 1 +1002d879 Catch@1002d879 undefined Catch@1002d879(void) 9 1 +1002d8b0 FUN_1002d8b0 undefined FUN_1002d8b0(void) 174 3 SysAllocStringByteLen +1002d960 FUN_1002d960 undefined FUN_1002d960(void) 125 0 +1002d9e0 FUN_1002d9e0 undefined FUN_1002d9e0(void) 125 0 +1002da60 FUN_1002da60 undefined FUN_1002da60(void) 89 0 +1002dac0 FUN_1002dac0 undefined FUN_1002dac0(void) 25 0 +1002dae0 FUN_1002dae0 undefined FUN_1002dae0(void) 179 0 +1002dbb0 FUN_1002dbb0 undefined FUN_1002dbb0(void) 129 1 memmove +1002dc40 FUN_1002dc40 undefined FUN_1002dc40(void) 107 0 +1002dcb0 FUN_1002dcb0 undefined FUN_1002dcb0(void) 101 0 +1002dd20 FUN_1002dd20 undefined FUN_1002dd20(void) 89 0 +1002dd80 FUN_1002dd80 undefined FUN_1002dd80(void) 186 4 +1002de03 Catch@1002de03 undefined Catch@1002de03(void) 21 2 +1002de50 FUN_1002de50 undefined FUN_1002de50(void) 40 0 +1002de80 FUN_1002de80 undefined FUN_1002de80(void) 40 0 +1002deb0 FUN_1002deb0 undefined FUN_1002deb0(void) 33 0 +1002dee0 FUN_1002dee0 undefined FUN_1002dee0(void) 54 0 +1002df20 FUN_1002df20 undefined FUN_1002df20(void) 33 0 +1002df50 FUN_1002df50 undefined FUN_1002df50(void) 52 0 +1002dfa0 FUN_1002dfa0 undefined FUN_1002dfa0(void) 69 0 +1002dff0 FUN_1002dff0 undefined FUN_1002dff0(void) 22 0 +1002e020 FUN_1002e020 undefined FUN_1002e020(void) 48 1 +1002e050 FUN_1002e050 undefined FUN_1002e050(void) 40 0 +1002e080 FUN_1002e080 undefined FUN_1002e080(void) 236 1 +1002e170 FUN_1002e170 undefined FUN_1002e170(void) 88 2 SysFreeString +1002e200 FUN_1002e200 undefined FUN_1002e200(void) 100 1 +1002e270 FUN_1002e270 undefined FUN_1002e270(void) 47 0 +1002e2a0 FUN_1002e2a0 undefined FUN_1002e2a0(void) 34 0 +1002e2d0 FUN_1002e2d0 undefined FUN_1002e2d0(void) 167 0 +1002e380 FUN_1002e380 undefined FUN_1002e380(void) 21 0 +1002e3a0 FUN_1002e3a0 undefined FUN_1002e3a0(void) 5 0 +1002e3c0 FUN_1002e3c0 undefined FUN_1002e3c0(void) 123 0 +1002e440 FUN_1002e440 undefined FUN_1002e440(void) 201 3 SysFreeString +1002e510 FUN_1002e510 undefined FUN_1002e510(void) 131 0 +1002e5a0 FUN_1002e5a0 undefined FUN_1002e5a0(void) 150 1 +1002e640 FUN_1002e640 undefined FUN_1002e640(void) 67 4 SysFreeString +1002e690 FUN_1002e690 undefined FUN_1002e690(void) 65 1 +1002e6f0 FUN_1002e6f0 undefined FUN_1002e6f0(void) 100 1 +1002e760 FUN_1002e760 undefined FUN_1002e760(void) 247 5 SysFreeString +1002e860 FUN_1002e860 undefined FUN_1002e860(void) 136 3 +1002e8f0 FUN_1002e8f0 undefined FUN_1002e8f0(void) 64 0 +1002e940 FUN_1002e940 undefined FUN_1002e940(void) 675 8 SysAllocString;SysAllocStringByteLen;SysFreeString +1002ebf0 FUN_1002ebf0 undefined FUN_1002ebf0(void) 376 3 +1002ed70 FUN_1002ed70 undefined FUN_1002ed70(void) 68 1 +1002edc0 FUN_1002edc0 undefined FUN_1002edc0(void) 606 8 SysFreeString +1002f01e Catch@1002f01e undefined Catch@1002f01e(void) 32 2 +1002f050 FUN_1002f050 undefined FUN_1002f050(void) 35 1 +1002f080 FUN_1002f080 undefined FUN_1002f080(void) 137 2 +1002f110 FUN_1002f110 undefined FUN_1002f110(void) 55 1 +1002f150 FUN_1002f150 undefined FUN_1002f150(void) 395 7 +1002f2e0 FUN_1002f2e0 undefined FUN_1002f2e0(void) 462 6 +1002f4b0 FUN_1002f4b0 undefined FUN_1002f4b0(void) 150 5 +1002f550 FUN_1002f550 undefined FUN_1002f550(void) 145 5 +1002f5f0 FUN_1002f5f0 undefined FUN_1002f5f0(void) 823 5 SysFreeString +1002f930 FUN_1002f930 undefined FUN_1002f930(void) 17 0 +1002f950 FUN_1002f950 undefined FUN_1002f950(void) 15 0 +1002f960 FUN_1002f960 undefined FUN_1002f960(void) 592 7 +1002fbc0 FUN_1002fbc0 undefined FUN_1002fbc0(void) 1223 11 SysFreeString +100300d0 FUN_100300d0 undefined FUN_100300d0(void) 433 4 memset +10030290 FUN_10030290 undefined FUN_10030290(void) 85 1 +100302f0 FUN_100302f0 undefined FUN_100302f0(void) 17 0 +10030310 FUN_10030310 undefined FUN_10030310(void) 15 0 +10030320 FUN_10030320 undefined FUN_10030320(void) 16 0 +10030330 FUN_10030330 undefined FUN_10030330(void) 14 0 +10030340 FUN_10030340 undefined FUN_10030340(void) 16 0 +10030350 FUN_10030350 undefined FUN_10030350(void) 14 0 +10030360 FUN_10030360 undefined FUN_10030360(void) 16 0 +10030370 FUN_10030370 undefined FUN_10030370(void) 14 0 +10030380 FUN_10030380 undefined FUN_10030380(void) 592 7 +100305e0 FUN_100305e0 undefined FUN_100305e0(void) 84 1 +10030640 FUN_10030640 undefined FUN_10030640(void) 98 0 +100306b0 FUN_100306b0 undefined FUN_100306b0(void) 592 7 +10030910 FUN_10030910 undefined FUN_10030910(void) 483 7 +10030b00 FUN_10030b00 undefined FUN_10030b00(void) 17 0 +10030b20 FUN_10030b20 undefined FUN_10030b20(void) 15 0 +10030b30 FUN_10030b30 undefined FUN_10030b30(void) 153 3 +10030bd0 FUN_10030bd0 undefined FUN_10030bd0(void) 17 0 +10030bf0 FUN_10030bf0 undefined FUN_10030bf0(void) 15 0 +10030c00 FUN_10030c00 undefined FUN_10030c00(void) 140 4 +10030c90 FUN_10030c90 undefined FUN_10030c90(void) 17 0 +10030cb0 FUN_10030cb0 undefined FUN_10030cb0(void) 15 0 +10030cc0 FUN_10030cc0 undefined FUN_10030cc0(void) 85 1 +10030d20 FUN_10030d20 undefined FUN_10030d20(void) 89 0 +10030d80 FUN_10030d80 undefined FUN_10030d80(void) 233 6 +10030e70 FUN_10030e70 undefined FUN_10030e70(void) 17 0 +10030e90 FUN_10030e90 undefined FUN_10030e90(void) 15 0 +10030ea0 FUN_10030ea0 undefined FUN_10030ea0(void) 15 0 +10030eb0 FUN_10030eb0 undefined FUN_10030eb0(void) 153 3 +10030f50 FUN_10030f50 undefined FUN_10030f50(void) 16 0 +10030f60 FUN_10030f60 undefined FUN_10030f60(void) 14 0 +10030f70 FUN_10030f70 undefined FUN_10030f70(void) 153 3 +10031010 FUN_10031010 undefined FUN_10031010(void) 16 0 +10031020 FUN_10031020 undefined FUN_10031020(void) 14 0 +10031030 FUN_10031030 undefined FUN_10031030(void) 153 3 +100310d0 FUN_100310d0 undefined FUN_100310d0(void) 16 0 +100310e0 FUN_100310e0 undefined FUN_100310e0(void) 14 0 +100310f0 FUN_100310f0 undefined FUN_100310f0(void) 153 3 +10031190 FUN_10031190 undefined FUN_10031190(void) 16 0 +100311a0 FUN_100311a0 undefined FUN_100311a0(void) 14 0 +100311b0 FUN_100311b0 undefined FUN_100311b0(void) 111 1 +10031220 FUN_10031220 undefined FUN_10031220(void) 17 0 +10031240 FUN_10031240 undefined FUN_10031240(void) 117 2 +100312c0 FUN_100312c0 undefined FUN_100312c0(void) 15 0 +100312d0 FUN_100312d0 undefined FUN_100312d0(void) 468 10 +100314b0 FUN_100314b0 undefined FUN_100314b0(void) 17 0 +100314d0 FUN_100314d0 undefined FUN_100314d0(void) 15 0 +100314e0 FUN_100314e0 undefined FUN_100314e0(void) 17 0 +10031500 FUN_10031500 undefined FUN_10031500(void) 15 0 +10031510 FUN_10031510 undefined FUN_10031510(void) 153 3 +100315b0 FUN_100315b0 undefined FUN_100315b0(void) 16 0 +100315c0 FUN_100315c0 undefined FUN_100315c0(void) 14 0 +100315e0 FUN_100315e0 undefined FUN_100315e0(void) 69 1 +10031630 FUN_10031630 undefined FUN_10031630(void) 17 0 +10031650 FUN_10031650 undefined FUN_10031650(void) 15 0 +10031660 FUN_10031660 undefined FUN_10031660(void) 15 0 +10031670 FUN_10031670 undefined FUN_10031670(void) 17 0 +10031690 FUN_10031690 undefined FUN_10031690(void) 15 0 +100316a0 FUN_100316a0 undefined FUN_100316a0(void) 592 7 +10031900 FUN_10031900 undefined FUN_10031900(void) 17 0 +10031920 FUN_10031920 undefined FUN_10031920(void) 15 0 +10031930 FUN_10031930 undefined FUN_10031930(void) 17 0 +10031950 FUN_10031950 undefined FUN_10031950(void) 15 0 +10031960 FUN_10031960 undefined FUN_10031960(void) 15 0 +10031970 FUN_10031970 undefined FUN_10031970(void) 15 0 +10031980 FUN_10031980 undefined FUN_10031980(void) 592 7 +10031bf0 FUN_10031bf0 undefined FUN_10031bf0(void) 8 0 +10031c00 FUN_10031c00 undefined FUN_10031c00(void) 8 0 +10031c10 FUN_10031c10 undefined FUN_10031c10(void) 8 0 +10031c20 FUN_10031c20 undefined FUN_10031c20(void) 80 2 +10031c70 FUN_10031c70 undefined FUN_10031c70(void) 15 0 +10031c80 FUN_10031c80 undefined FUN_10031c80(void) 17 0 +10031ca0 FUN_10031ca0 undefined FUN_10031ca0(void) 15 0 +10031cb0 FUN_10031cb0 undefined FUN_10031cb0(void) 27 0 +10031cd0 FUN_10031cd0 undefined FUN_10031cd0(void) 30 0 +10031cf0 FUN_10031cf0 undefined FUN_10031cf0(void) 15 0 +10031d00 FUN_10031d00 undefined FUN_10031d00(void) 115 1 +10031d80 FUN_10031d80 undefined FUN_10031d80(void) 15 0 +10031d90 FUN_10031d90 undefined FUN_10031d90(void) 592 7 +10031ff0 FUN_10031ff0 undefined FUN_10031ff0(void) 15 0 +10032000 FUN_10032000 undefined FUN_10032000(void) 592 7 +10032260 FUN_10032260 undefined FUN_10032260(void) 15 0 +10032270 FUN_10032270 undefined FUN_10032270(void) 592 7 +100324d0 FUN_100324d0 undefined FUN_100324d0(void) 17 0 +100324f0 FUN_100324f0 undefined FUN_100324f0(void) 15 0 +10032500 FUN_10032500 undefined FUN_10032500(void) 17 0 +10032520 FUN_10032520 undefined FUN_10032520(void) 15 0 +10032530 FUN_10032530 undefined FUN_10032530(void) 153 3 +100325d0 FUN_100325d0 undefined FUN_100325d0(void) 16 0 +100325e0 FUN_100325e0 undefined FUN_100325e0(void) 14 0 +100325f0 FUN_100325f0 undefined FUN_100325f0(void) 98 0 +10032660 FUN_10032660 undefined FUN_10032660(void) 23 1 +10032690 FUN_10032690 undefined FUN_10032690(void) 12 1 +100326a0 FUN_100326a0 undefined FUN_100326a0(void) 23 1 +100326c0 FUN_100326c0 undefined FUN_100326c0(void) 23 1 +10032710 FUN_10032710 undefined FUN_10032710(void) 23 1 +10032730 FUN_10032730 undefined FUN_10032730(void) 23 1 +10032750 FUN_10032750 undefined FUN_10032750(void) 23 1 +10032780 FUN_10032780 undefined FUN_10032780(void) 23 1 +100327a0 FUN_100327a0 undefined FUN_100327a0(void) 23 1 +100327f0 FUN_100327f0 undefined FUN_100327f0(void) 23 1 +10032840 FUN_10032840 undefined FUN_10032840(void) 23 1 +10032860 FUN_10032860 undefined FUN_10032860(void) 23 1 +10032890 FUN_10032890 undefined FUN_10032890(void) 23 1 +100328c0 FUN_100328c0 undefined FUN_100328c0(void) 592 7 +10032b20 FUN_10032b20 undefined FUN_10032b20(void) 102 0 +10032b90 FUN_10032b90 undefined FUN_10032b90(void) 23 1 +10032bc0 FUN_10032bc0 undefined FUN_10032bc0(void) 23 1 +10032be0 FUN_10032be0 undefined FUN_10032be0(void) 23 1 +10032c00 FUN_10032c00 undefined FUN_10032c00(void) 23 1 +10032c20 FUN_10032c20 undefined FUN_10032c20(void) 23 1 +10032c40 FUN_10032c40 undefined FUN_10032c40(void) 23 1 +10032c60 FUN_10032c60 undefined FUN_10032c60(void) 47 0 +10032c90 FUN_10032c90 undefined FUN_10032c90(void) 100 1 +10032d00 FUN_10032d00 undefined FUN_10032d00(void) 177 3 +10032dc0 FUN_10032dc0 undefined FUN_10032dc0(void) 23 1 +10032de0 FUN_10032de0 undefined FUN_10032de0(void) 82 1 memmove +10032e40 FUN_10032e40 undefined FUN_10032e40(void) 47 2 +10032e70 FUN_10032e70 undefined FUN_10032e70(void) 177 3 +10032f30 FUN_10032f30 undefined FUN_10032f30(void) 56 2 +10032f70 FUN_10032f70 undefined FUN_10032f70(void) 177 3 +10033030 FUN_10033030 undefined FUN_10033030(void) 56 2 +10033070 FUN_10033070 undefined FUN_10033070(void) 177 3 +10033130 FUN_10033130 undefined FUN_10033130(void) 19 1 +10033150 FUN_10033150 undefined FUN_10033150(void) 177 3 +10033210 FUN_10033210 undefined FUN_10033210(void) 177 3 +100332d0 FUN_100332d0 undefined FUN_100332d0(void) 56 2 +10033310 FUN_10033310 undefined FUN_10033310(void) 47 2 +10033340 FUN_10033340 undefined FUN_10033340(void) 102 3 +100333b0 FUN_100333b0 undefined FUN_100333b0(void) 177 3 +10033470 FUN_10033470 undefined FUN_10033470(void) 47 2 +100334a0 FUN_100334a0 undefined FUN_100334a0(void) 177 3 +10033560 FUN_10033560 undefined FUN_10033560(void) 14 0 +10033570 FUN_10033570 undefined FUN_10033570(void) 186 3 +10033630 FUN_10033630 undefined FUN_10033630(void) 177 3 +100336f0 FUN_100336f0 undefined FUN_100336f0(void) 177 3 +100337b0 FUN_100337b0 undefined FUN_100337b0(void) 177 3 +10033870 FUN_10033870 undefined FUN_10033870(void) 177 3 +10033930 FUN_10033930 undefined FUN_10033930(void) 177 3 +100339f0 FUN_100339f0 undefined FUN_100339f0(void) 177 3 +10033ab0 FUN_10033ab0 undefined FUN_10033ab0(void) 23 1 +10033ad0 FUN_10033ad0 undefined FUN_10033ad0(void) 177 3 +10033b90 FUN_10033b90 undefined FUN_10033b90(void) 177 3 +10033c50 FUN_10033c50 undefined FUN_10033c50(void) 177 3 +10033d10 FUN_10033d10 undefined FUN_10033d10(void) 177 3 +10033dd0 FUN_10033dd0 undefined FUN_10033dd0(void) 177 3 +10033e90 FUN_10033e90 undefined FUN_10033e90(void) 217 3 +10033f70 FUN_10033f70 undefined FUN_10033f70(void) 177 3 +10034030 FUN_10034030 undefined FUN_10034030(void) 177 3 +100340f0 FUN_100340f0 undefined FUN_100340f0(void) 15 0 +10034100 FUN_10034100 undefined FUN_10034100(void) 177 3 +100341c0 FUN_100341c0 undefined FUN_100341c0(void) 23 1 +100341e0 FUN_100341e0 undefined FUN_100341e0(void) 177 3 +100342a0 FUN_100342a0 undefined FUN_100342a0(void) 177 3 +10034360 FUN_10034360 undefined FUN_10034360(void) 67 1 +100343b0 FUN_100343b0 undefined FUN_100343b0(void) 36 2 +100343e0 FUN_100343e0 undefined FUN_100343e0(void) 136 2 +10034470 FUN_10034470 undefined FUN_10034470(void) 136 2 +10034500 FUN_10034500 undefined FUN_10034500(void) 177 3 +100345c0 FUN_100345c0 undefined FUN_100345c0(void) 51 0 +10034600 FUN_10034600 undefined FUN_10034600(void) 177 3 +100346c0 FUN_100346c0 undefined FUN_100346c0(void) 51 0 +10034700 FUN_10034700 undefined FUN_10034700(void) 185 3 +100347c0 FUN_100347c0 undefined FUN_100347c0(void) 251 5 memcpy +100348c0 FUN_100348c0 undefined FUN_100348c0(void) 177 3 +10034980 FUN_10034980 undefined FUN_10034980(void) 23 1 +100349a0 FUN_100349a0 undefined FUN_100349a0(void) 177 3 +10034a60 FUN_10034a60 undefined FUN_10034a60(void) 49 0 +10034aa0 FUN_10034aa0 undefined FUN_10034aa0(void) 177 3 +10034b60 FUN_10034b60 undefined FUN_10034b60(void) 177 3 +10034c20 FUN_10034c20 undefined FUN_10034c20(void) 177 3 +10034ce0 FUN_10034ce0 undefined FUN_10034ce0(void) 49 0 +10034d20 FUN_10034d20 undefined FUN_10034d20(void) 177 3 +10034de0 FUN_10034de0 undefined FUN_10034de0(void) 177 3 +10034ea0 FUN_10034ea0 undefined FUN_10034ea0(void) 49 0 +10034ee0 FUN_10034ee0 undefined FUN_10034ee0(void) 177 3 +10034fa0 FUN_10034fa0 undefined FUN_10034fa0(void) 177 3 +10035060 FUN_10035060 undefined FUN_10035060(void) 332 4 memmove +100351b0 FUN_100351b0 undefined FUN_100351b0(void) 181 4 +10035270 FUN_10035270 undefined FUN_10035270(void) 102 3 +100352e0 FUN_100352e0 undefined FUN_100352e0(void) 177 3 +100353a0 FUN_100353a0 undefined FUN_100353a0(void) 17 0 +100353c0 FUN_100353c0 undefined FUN_100353c0(void) 592 7 +10035620 FUN_10035620 undefined FUN_10035620(void) 129 0 +100356b0 FUN_100356b0 undefined FUN_100356b0(void) 177 3 +10035770 FUN_10035770 undefined FUN_10035770(void) 24 1 +10035790 FUN_10035790 undefined FUN_10035790(void) 56 2 +100357d0 FUN_100357d0 undefined FUN_100357d0(void) 177 3 +10035890 FUN_10035890 undefined FUN_10035890(void) 49 0 +100358d0 FUN_100358d0 undefined FUN_100358d0(void) 177 3 +10035990 FUN_10035990 undefined FUN_10035990(void) 49 0 +100359d0 FUN_100359d0 undefined FUN_100359d0(void) 177 3 +10035a90 FUN_10035a90 undefined FUN_10035a90(void) 49 0 +10035ad0 FUN_10035ad0 undefined FUN_10035ad0(void) 177 3 +10035b90 FUN_10035b90 undefined FUN_10035b90(void) 177 3 +10035c50 FUN_10035c50 undefined FUN_10035c50(void) 177 3 +10035d10 FUN_10035d10 undefined FUN_10035d10(void) 56 2 +10035d50 FUN_10035d50 undefined FUN_10035d50(void) 177 3 +10035e10 FUN_10035e10 undefined FUN_10035e10(void) 177 3 +10035ed0 FUN_10035ed0 undefined FUN_10035ed0(void) 23 1 +10035ef0 FUN_10035ef0 undefined FUN_10035ef0(void) 177 3 +10035fb0 FUN_10035fb0 undefined FUN_10035fb0(void) 177 3 +10036070 FUN_10036070 undefined FUN_10036070(void) 15 0 +10036080 FUN_10036080 undefined FUN_10036080(void) 177 3 +10036140 FUN_10036140 undefined FUN_10036140(void) 24 1 +10036160 FUN_10036160 undefined FUN_10036160(void) 56 2 +100361a0 FUN_100361a0 undefined FUN_100361a0(void) 177 3 +10036260 FUN_10036260 undefined FUN_10036260(void) 62 0 +100362a0 FUN_100362a0 undefined FUN_100362a0(void) 12 1 +100362b0 FUN_100362b0 undefined FUN_100362b0(void) 12 1 +100362c0 FUN_100362c0 undefined FUN_100362c0(void) 261 4 memcpy +100363d0 FUN_100363d0 undefined FUN_100363d0(void) 241 4 memcpy +100364d0 FUN_100364d0 undefined FUN_100364d0(void) 12 1 +100364e0 FUN_100364e0 undefined FUN_100364e0(void) 12 1 +100364f0 FUN_100364f0 undefined FUN_100364f0(void) 12 1 +10036500 FUN_10036500 undefined FUN_10036500(void) 12 1 +10036510 FUN_10036510 undefined FUN_10036510(void) 12 1 +10036520 FUN_10036520 undefined FUN_10036520(void) 177 3 +100365e0 FUN_100365e0 undefined FUN_100365e0(void) 12 1 +100365f0 FUN_100365f0 undefined FUN_100365f0(void) 20 1 +10036610 FUN_10036610 undefined FUN_10036610(void) 189 5 +100366cd Catch@100366cd undefined Catch@100366cd(void) 21 2 +100366f0 FUN_100366f0 undefined FUN_100366f0(void) 52 1 +10036730 FUN_10036730 undefined FUN_10036730(void) 52 1 +10036770 FUN_10036770 undefined FUN_10036770(void) 52 1 +100367b0 FUN_100367b0 undefined FUN_100367b0(void) 62 1 +100367f0 FUN_100367f0 undefined FUN_100367f0(void) 24 1 +10036830 FUN_10036830 undefined FUN_10036830(void) 17 0 +10036850 FUN_10036850 undefined FUN_10036850(void) 15 0 +10036860 FUN_10036860 undefined FUN_10036860(void) 17 0 +10036880 FUN_10036880 undefined FUN_10036880(void) 15 0 +10036890 FUN_10036890 undefined FUN_10036890(void) 52 1 +100368e0 FUN_100368e0 undefined FUN_100368e0(void) 186 4 +10036963 Catch@10036963 undefined Catch@10036963(void) 21 2 +100369b0 FUN_100369b0 undefined FUN_100369b0(void) 17 0 +100369d0 FUN_100369d0 undefined FUN_100369d0(void) 15 0 +100369e0 FUN_100369e0 undefined FUN_100369e0(void) 127 1 +10036a5f Catch@10036a5f undefined Catch@10036a5f(void) 9 1 +10036a70 FUN_10036a70 undefined FUN_10036a70(void) 17 0 +10036a90 FUN_10036a90 undefined FUN_10036a90(void) 15 0 +10036aa0 FUN_10036aa0 undefined FUN_10036aa0(void) 52 1 +10036ae0 FUN_10036ae0 undefined FUN_10036ae0(void) 52 1 +10036b20 FUN_10036b20 undefined FUN_10036b20(void) 52 1 +10036b60 FUN_10036b60 undefined FUN_10036b60(void) 52 1 +10036ba0 FUN_10036ba0 undefined FUN_10036ba0(void) 17 0 +10036bc0 FUN_10036bc0 undefined FUN_10036bc0(void) 15 0 +10036bd0 FUN_10036bd0 undefined FUN_10036bd0(void) 52 1 +10036c10 FUN_10036c10 undefined FUN_10036c10(void) 186 4 +10036c93 Catch@10036c93 undefined Catch@10036c93(void) 21 2 +10036ce0 FUN_10036ce0 undefined FUN_10036ce0(void) 17 0 +10036d00 FUN_10036d00 undefined FUN_10036d00(void) 15 0 +10036d10 FUN_10036d10 undefined FUN_10036d10(void) 17 0 +10036d30 FUN_10036d30 undefined FUN_10036d30(void) 15 0 +10036d40 FUN_10036d40 undefined FUN_10036d40(void) 592 7 +10036fa0 FUN_10036fa0 undefined FUN_10036fa0(void) 196 0 +100370c0 FUN_100370c0 undefined FUN_100370c0(void) 56 2 +10037100 FUN_10037100 undefined FUN_10037100(void) 592 7 +10037360 FUN_10037360 undefined FUN_10037360(void) 17 0 +10037380 FUN_10037380 undefined FUN_10037380(void) 15 0 +10037390 FUN_10037390 undefined FUN_10037390(void) 17 0 +100373b0 FUN_100373b0 undefined FUN_100373b0(void) 15 0 +100373c0 FUN_100373c0 undefined FUN_100373c0(void) 17 0 +100373e0 FUN_100373e0 undefined FUN_100373e0(void) 15 0 +100373f0 FUN_100373f0 undefined FUN_100373f0(void) 52 1 +10037430 FUN_10037430 undefined FUN_10037430(void) 592 7 +10037690 FUN_10037690 undefined FUN_10037690(void) 17 0 +100376b0 FUN_100376b0 undefined FUN_100376b0(void) 15 0 +100376c0 FUN_100376c0 undefined FUN_100376c0(void) 62 0 +10037700 FUN_10037700 undefined FUN_10037700(void) 592 7 +10037960 FUN_10037960 undefined FUN_10037960(void) 592 7 +10037bc0 FUN_10037bc0 undefined FUN_10037bc0(void) 592 7 +10037e20 FUN_10037e20 undefined FUN_10037e20(void) 592 7 +10038080 FUN_10038080 undefined FUN_10038080(void) 592 7 +100382e0 FUN_100382e0 undefined FUN_100382e0(void) 592 7 +10038540 FUN_10038540 undefined FUN_10038540(void) 592 7 +100387a0 FUN_100387a0 undefined FUN_100387a0(void) 546 2 +100389d0 FUN_100389d0 undefined FUN_100389d0(void) 190 4 +10038a5f Catch@10038a5f undefined Catch@10038a5f(void) 21 2 +10038ab0 FUN_10038ab0 undefined FUN_10038ab0(void) 30 0 +10038ad0 FUN_10038ad0 undefined FUN_10038ad0(void) 332 4 memmove +10038c20 FUN_10038c20 undefined FUN_10038c20(void) 181 4 +10038ce0 FUN_10038ce0 undefined FUN_10038ce0(void) 592 7 +10038f40 FUN_10038f40 undefined FUN_10038f40(void) 592 7 +100391a0 FUN_100391a0 undefined FUN_100391a0(void) 592 7 +10039400 FUN_10039400 undefined FUN_10039400(void) 592 7 +10039660 FUN_10039660 undefined FUN_10039660(void) 592 7 +100398c0 FUN_100398c0 undefined FUN_100398c0(void) 592 7 +10039b20 FUN_10039b20 undefined FUN_10039b20(void) 592 7 +10039d80 FUN_10039d80 undefined FUN_10039d80(void) 592 7 +10039fe0 FUN_10039fe0 undefined FUN_10039fe0(void) 592 7 +1003a240 FUN_1003a240 undefined FUN_1003a240(void) 592 7 +1003a4a0 FUN_1003a4a0 undefined FUN_1003a4a0(void) 592 7 +1003a700 FUN_1003a700 undefined FUN_1003a700(void) 592 7 +1003a960 FUN_1003a960 undefined FUN_1003a960(void) 56 2 +1003a9a0 FUN_1003a9a0 undefined FUN_1003a9a0(void) 592 7 +1003ac00 FUN_1003ac00 undefined FUN_1003ac00(void) 592 7 +1003ae60 FUN_1003ae60 undefined FUN_1003ae60(void) 592 7 +1003b0c0 FUN_1003b0c0 undefined FUN_1003b0c0(void) 592 7 +1003b320 FUN_1003b320 undefined FUN_1003b320(void) 592 7 +1003b580 FUN_1003b580 undefined FUN_1003b580(void) 592 7 +1003b7e0 FUN_1003b7e0 undefined FUN_1003b7e0(void) 592 7 +1003ba40 FUN_1003ba40 undefined FUN_1003ba40(void) 47 0 +1003ba70 FUN_1003ba70 undefined FUN_1003ba70(void) 56 2 +1003bab0 FUN_1003bab0 undefined FUN_1003bab0(void) 56 2 +1003baf0 FUN_1003baf0 undefined FUN_1003baf0(void) 56 2 +1003bb30 FUN_1003bb30 undefined FUN_1003bb30(void) 56 2 +1003bb70 FUN_1003bb70 undefined FUN_1003bb70(void) 56 2 +1003bbb0 FUN_1003bbb0 undefined FUN_1003bbb0(void) 56 2 +1003bbf0 FUN_1003bbf0 undefined FUN_1003bbf0(void) 56 2 +1003bc30 FUN_1003bc30 undefined FUN_1003bc30(void) 56 2 +1003bc70 FUN_1003bc70 undefined FUN_1003bc70(void) 56 2 +1003bcb0 FUN_1003bcb0 undefined FUN_1003bcb0(void) 56 2 +1003bcf0 FUN_1003bcf0 undefined FUN_1003bcf0(void) 56 2 +1003bd30 FUN_1003bd30 undefined FUN_1003bd30(void) 56 2 +1003bd70 FUN_1003bd70 undefined FUN_1003bd70(void) 56 2 +1003bdb0 FUN_1003bdb0 undefined FUN_1003bdb0(void) 56 2 +1003bdf0 FUN_1003bdf0 undefined FUN_1003bdf0(void) 56 2 +1003be30 FUN_1003be30 undefined FUN_1003be30(void) 56 2 +1003be70 FUN_1003be70 undefined FUN_1003be70(void) 56 2 +1003beb0 FUN_1003beb0 undefined FUN_1003beb0(void) 56 2 +1003bef0 FUN_1003bef0 undefined FUN_1003bef0(void) 56 2 +1003bf30 FUN_1003bf30 undefined FUN_1003bf30(void) 56 2 +1003bf70 FUN_1003bf70 undefined FUN_1003bf70(void) 56 2 +1003bfb0 FUN_1003bfb0 undefined FUN_1003bfb0(void) 56 2 +1003bff0 FUN_1003bff0 undefined FUN_1003bff0(void) 56 2 +1003c030 FUN_1003c030 undefined FUN_1003c030(void) 56 2 +1003c070 FUN_1003c070 undefined FUN_1003c070(void) 56 2 +1003c0b0 FUN_1003c0b0 undefined FUN_1003c0b0(void) 56 2 +1003c0f0 FUN_1003c0f0 undefined FUN_1003c0f0(void) 56 2 +1003c130 FUN_1003c130 undefined FUN_1003c130(void) 56 2 +1003c170 FUN_1003c170 undefined FUN_1003c170(void) 56 2 +1003c1b0 FUN_1003c1b0 undefined FUN_1003c1b0(void) 56 2 +1003c1f0 FUN_1003c1f0 undefined FUN_1003c1f0(void) 56 2 +1003c230 FUN_1003c230 undefined FUN_1003c230(void) 85 1 +1003c290 FUN_1003c290 undefined FUN_1003c290(void) 85 1 +1003c2f0 FUN_1003c2f0 undefined FUN_1003c2f0(void) 33 1 +1003c320 FUN_1003c320 undefined FUN_1003c320(void) 33 1 +1003c350 FUN_1003c350 undefined FUN_1003c350(void) 33 1 +1003c380 FUN_1003c380 undefined FUN_1003c380(void) 33 1 +1003c3b0 FUN_1003c3b0 undefined FUN_1003c3b0(void) 33 1 +1003c3e0 FUN_1003c3e0 undefined FUN_1003c3e0(void) 33 1 +1003c410 FUN_1003c410 undefined FUN_1003c410(void) 33 1 +1003c440 FUN_1003c440 undefined FUN_1003c440(void) 33 1 +1003c470 FUN_1003c470 undefined FUN_1003c470(void) 32 1 +1003c490 FUN_1003c490 undefined FUN_1003c490(void) 32 1 +1003c4b0 FUN_1003c4b0 undefined FUN_1003c4b0(void) 32 1 +1003c4d0 FUN_1003c4d0 undefined FUN_1003c4d0(void) 268 3 +1003c5e0 FUN_1003c5e0 undefined FUN_1003c5e0(void) 254 4 +1003c6e0 FUN_1003c6e0 undefined FUN_1003c6e0(void) 209 3 +1003c7c0 FUN_1003c7c0 undefined FUN_1003c7c0(void) 268 3 +1003c8d0 FUN_1003c8d0 undefined FUN_1003c8d0(void) 293 3 +1003ca00 FUN_1003ca00 undefined FUN_1003ca00(void) 447 3 +1003cbc0 FUN_1003cbc0 undefined FUN_1003cbc0(void) 655 4 +1003ce60 FUN_1003ce60 undefined FUN_1003ce60(void) 377 3 +1003cfe0 FUN_1003cfe0 undefined FUN_1003cfe0(void) 209 3 +1003d0c0 FUN_1003d0c0 undefined FUN_1003d0c0(void) 268 3 +1003d1d0 FUN_1003d1d0 undefined FUN_1003d1d0(void) 209 3 +1003d2b0 FUN_1003d2b0 undefined FUN_1003d2b0(void) 23 1 +1003d2d0 FUN_1003d2d0 undefined FUN_1003d2d0(void) 214 3 +1003d3c0 FUN_1003d3c0 undefined FUN_1003d3c0(void) 51 1 +1003d400 FUN_1003d400 undefined FUN_1003d400(void) 19 1 +1003d420 FUN_1003d420 undefined FUN_1003d420(void) 209 3 +1003d500 FUN_1003d500 undefined FUN_1003d500(void) 209 3 +1003d5e0 FUN_1003d5e0 undefined FUN_1003d5e0(void) 209 3 +1003d6c0 FUN_1003d6c0 undefined FUN_1003d6c0(void) 44 2 +1003d6f0 FUN_1003d6f0 undefined FUN_1003d6f0(void) 166 0 +1003d7a0 FUN_1003d7a0 undefined FUN_1003d7a0(void) 164 0 +1003d850 FUN_1003d850 undefined FUN_1003d850(void) 118 1 +1003d8c6 Catch@1003d8c6 undefined Catch@1003d8c6(void) 9 1 +1003d8f0 FUN_1003d8f0 undefined FUN_1003d8f0(void) 38 1 +1003d920 FUN_1003d920 undefined FUN_1003d920(void) 133 1 SysFreeString +1003d9b0 FUN_1003d9b0 undefined FUN_1003d9b0(void) 100 1 +1003da20 FUN_1003da20 undefined FUN_1003da20(void) 100 1 +1003da90 FUN_1003da90 undefined FUN_1003da90(void) 68 1 +1003dae0 FUN_1003dae0 undefined FUN_1003dae0(void) 112 1 +1003db50 FUN_1003db50 undefined FUN_1003db50(void) 17 0 +1003db70 FUN_1003db70 undefined FUN_1003db70(void) 15 0 +1003db80 FUN_1003db80 undefined FUN_1003db80(void) 17 0 +1003dba0 FUN_1003dba0 undefined FUN_1003dba0(void) 15 0 +1003dbb0 FUN_1003dbb0 undefined FUN_1003dbb0(void) 592 7 +1003de10 FUN_1003de10 undefined FUN_1003de10(void) 592 7 +1003e070 FUN_1003e070 undefined FUN_1003e070(void) 56 2 +1003e0b0 FUN_1003e0b0 undefined FUN_1003e0b0(void) 56 2 +1003e0f0 FUN_1003e0f0 undefined FUN_1003e0f0(void) 123 0 +1003e170 FUN_1003e170 undefined FUN_1003e170(void) 123 0 +1003e1f0 FUN_1003e1f0 undefined FUN_1003e1f0(void) 87 0 +1003e250 FUN_1003e250 undefined FUN_1003e250(void) 37 1 +1003e280 FUN_1003e280 undefined FUN_1003e280(void) 23 1 +1003e2a0 FUN_1003e2a0 undefined FUN_1003e2a0(void) 105 0 +1003e310 FUN_1003e310 undefined FUN_1003e310(void) 99 0 +1003e380 FUN_1003e380 undefined FUN_1003e380(void) 87 0 +1003e3e0 FUN_1003e3e0 undefined FUN_1003e3e0(void) 72 2 +1003e430 FUN_1003e430 undefined FUN_1003e430(void) 107 0 +1003e4a0 FUN_1003e4a0 undefined FUN_1003e4a0(void) 107 0 +1003e510 FUN_1003e510 undefined FUN_1003e510(void) 100 0 +1003e580 FUN_1003e580 undefined FUN_1003e580(void) 119 0 +1003e600 FUN_1003e600 undefined FUN_1003e600(void) 100 0 +1003e670 FUN_1003e670 undefined FUN_1003e670(void) 119 0 +1003e6f0 FUN_1003e6f0 undefined FUN_1003e6f0(void) 374 0 +1003e870 FUN_1003e870 undefined FUN_1003e870(void) 89 0 +1003e8d0 FUN_1003e8d0 undefined FUN_1003e8d0(void) 592 7 +1003eb30 FUN_1003eb30 undefined FUN_1003eb30(void) 56 2 +1003eb70 FUN_1003eb70 undefined FUN_1003eb70(void) 48 1 +1003eba0 FUN_1003eba0 undefined FUN_1003eba0(void) 107 0 +1003ec10 FUN_1003ec10 undefined FUN_1003ec10(void) 198 3 +1003ecf0 FUN_1003ecf0 undefined FUN_1003ecf0(void) 145 2 +1003ed90 FUN_1003ed90 undefined FUN_1003ed90(void) 75 4 SysFreeString +1003edf0 FUN_1003edf0 undefined FUN_1003edf0(void) 109 1 +1003ee60 FUN_1003ee60 undefined FUN_1003ee60(void) 100 1 +1003eed0 FUN_1003eed0 undefined FUN_1003eed0(void) 155 1 +1003ef70 FUN_1003ef70 undefined FUN_1003ef70(void) 404 11 +1003f110 FUN_1003f110 undefined FUN_1003f110(void) 635 3 +1003f390 FUN_1003f390 undefined FUN_1003f390(void) 712 5 +1003f660 FUN_1003f660 undefined FUN_1003f660(void) 640 3 +1003f8e0 FUN_1003f8e0 undefined FUN_1003f8e0(void) 922 7 +1003fca0 FUN_1003fca0 undefined FUN_1003fca0(void) 810 3 +1003ffe0 FUN_1003ffe0 undefined FUN_1003ffe0(void) 91 2 +10040040 FUN_10040040 undefined FUN_10040040(void) 421 1 +100401f0 FUN_100401f0 undefined FUN_100401f0(void) 578 7 SysFreeString +10040440 FUN_10040440 undefined FUN_10040440(void) 34 1 +10040470 FUN_10040470 undefined FUN_10040470(void) 335 7 +100405c0 FUN_100405c0 undefined FUN_100405c0(void) 83 1 +10040620 FUN_10040620 undefined FUN_10040620(void) 47 2 +10040680 FUN_10040680 undefined FUN_10040680(void) 77 2 +100406d0 FUN_100406d0 undefined FUN_100406d0(void) 77 2 +10040720 FUN_10040720 undefined FUN_10040720(void) 77 2 +10040770 FUN_10040770 undefined FUN_10040770(void) 47 2 +100407a0 FUN_100407a0 undefined FUN_100407a0(void) 47 2 +100407d0 FUN_100407d0 undefined FUN_100407d0(void) 110 2 +10040840 FUN_10040840 undefined FUN_10040840(void) 136 2 +100408d0 FUN_100408d0 undefined FUN_100408d0(void) 156 4 +10040970 FUN_10040970 undefined FUN_10040970(void) 58 1 +100409b0 FUN_100409b0 undefined FUN_100409b0(void) 83 1 +10040a10 FUN_10040a10 undefined FUN_10040a10(void) 239 5 SysFreeString +10040b00 FUN_10040b00 undefined FUN_10040b00(void) 239 5 SysFreeString +10040bf0 FUN_10040bf0 undefined FUN_10040bf0(void) 129 1 +10040c80 FUN_10040c80 undefined FUN_10040c80(void) 102 0 +10040cf0 FUN_10040cf0 undefined FUN_10040cf0(void) 102 0 +10040d60 FUN_10040d60 undefined FUN_10040d60(void) 104 1 +10040dd0 FUN_10040dd0 undefined FUN_10040dd0(void) 98 0 +10040e40 FUN_10040e40 undefined FUN_10040e40(void) 98 0 +10040eb0 FUN_10040eb0 undefined FUN_10040eb0(void) 98 0 +10040f20 FUN_10040f20 undefined FUN_10040f20(void) 179 4 +10040fe0 FUN_10040fe0 undefined FUN_10040fe0(void) 252 5 +100410e0 FUN_100410e0 undefined FUN_100410e0(void) 24 1 +10041100 FUN_10041100 undefined FUN_10041100(void) 77 2 +10041150 FUN_10041150 undefined FUN_10041150(void) 98 0 +100411c0 FUN_100411c0 undefined FUN_100411c0(void) 98 0 +10041230 FUN_10041230 undefined FUN_10041230(void) 98 0 +100412a0 FUN_100412a0 undefined FUN_100412a0(void) 77 2 +100412f0 FUN_100412f0 undefined FUN_100412f0(void) 104 1 +10041360 FUN_10041360 undefined FUN_10041360(void) 58 1 +100413a0 FUN_100413a0 undefined FUN_100413a0(void) 77 2 +100413f0 FUN_100413f0 undefined FUN_100413f0(void) 49 0 +10041430 FUN_10041430 undefined FUN_10041430(void) 23 1 +10041450 FUN_10041450 undefined FUN_10041450(void) 23 1 +10041470 FUN_10041470 undefined FUN_10041470(void) 23 1 +10041490 FUN_10041490 undefined FUN_10041490(void) 23 1 +100414b0 FUN_100414b0 undefined FUN_100414b0(void) 23 1 +100414d0 FUN_100414d0 undefined FUN_100414d0(void) 23 1 +100414f0 FUN_100414f0 undefined FUN_100414f0(void) 23 1 +10041510 FUN_10041510 undefined FUN_10041510(void) 23 1 +10041530 FUN_10041530 undefined FUN_10041530(void) 119 1 +100415b0 FUN_100415b0 undefined FUN_100415b0(void) 46 1 +100415e0 FUN_100415e0 undefined FUN_100415e0(void) 18 1 +10041600 FUN_10041600 undefined FUN_10041600(void) 91 2 +10041660 FUN_10041660 undefined FUN_10041660(void) 52 1 +100416a0 FUN_100416a0 undefined FUN_100416a0(void) 52 1 +100416e0 FUN_100416e0 undefined FUN_100416e0(void) 52 1 +10041720 FUN_10041720 undefined FUN_10041720(void) 158 2 +100417c0 FUN_100417c0 undefined FUN_100417c0(void) 24 1 +100417e0 FUN_100417e0 undefined FUN_100417e0(void) 65 1 +10041830 FUN_10041830 undefined FUN_10041830(void) 158 2 +100418d0 FUN_100418d0 undefined FUN_100418d0(void) 24 1 +10041910 FUN_10041910 undefined FUN_10041910(void) 101 1 +10041980 FUN_10041980 undefined FUN_10041980(void) 72 2 +100419d0 FUN_100419d0 undefined FUN_100419d0(void) 52 1 +10041a10 FUN_10041a10 undefined FUN_10041a10(void) 52 1 +10041a50 FUN_10041a50 undefined FUN_10041a50(void) 52 1 +10041a90 FUN_10041a90 undefined FUN_10041a90(void) 52 1 +10041ad0 FUN_10041ad0 undefined FUN_10041ad0(void) 52 1 +10041b10 FUN_10041b10 undefined FUN_10041b10(void) 72 2 +10041b60 FUN_10041b60 undefined FUN_10041b60(void) 52 1 +10041ba0 FUN_10041ba0 undefined FUN_10041ba0(void) 284 4 memcpy +10041cc0 FUN_10041cc0 undefined FUN_10041cc0(void) 44 1 +10041cf0 FUN_10041cf0 undefined FUN_10041cf0(void) 24 1 +10041d10 FUN_10041d10 undefined FUN_10041d10(void) 101 1 +10041d80 FUN_10041d80 undefined FUN_10041d80(void) 77 2 +10041dd0 FUN_10041dd0 undefined FUN_10041dd0(void) 158 2 +10041e70 FUN_10041e70 undefined FUN_10041e70(void) 24 1 +10041e90 FUN_10041e90 undefined FUN_10041e90(void) 52 1 +10041ed0 FUN_10041ed0 undefined FUN_10041ed0(void) 158 2 +10041f70 FUN_10041f70 undefined FUN_10041f70(void) 24 1 +10041f90 FUN_10041f90 undefined FUN_10041f90(void) 47 1 +10041fc0 FUN_10041fc0 undefined FUN_10041fc0(void) 20 1 +10041fe0 FUN_10041fe0 undefined FUN_10041fe0(void) 20 1 +10042000 FUN_10042000 undefined FUN_10042000(void) 158 2 +100420b0 FUN_100420b0 undefined FUN_100420b0(void) 44 2 +100420e0 FUN_100420e0 undefined FUN_100420e0(void) 179 4 +100421a0 FUN_100421a0 undefined FUN_100421a0(void) 252 5 +100422a0 FUN_100422a0 undefined FUN_100422a0(void) 38 1 +100422d0 FUN_100422d0 undefined FUN_100422d0(void) 77 2 +10042320 FUN_10042320 undefined FUN_10042320(void) 158 2 +100423c0 FUN_100423c0 undefined FUN_100423c0(void) 77 2 +10042410 FUN_10042410 undefined FUN_10042410(void) 77 2 +10042460 FUN_10042460 undefined FUN_10042460(void) 77 2 +100424b0 FUN_100424b0 undefined FUN_100424b0(void) 77 2 +10042500 FUN_10042500 undefined FUN_10042500(void) 77 2 +10042550 FUN_10042550 undefined FUN_10042550(void) 77 2 +100425a0 FUN_100425a0 undefined FUN_100425a0(void) 77 2 +100425f0 FUN_100425f0 undefined FUN_100425f0(void) 58 2 +10042630 FUN_10042630 undefined FUN_10042630(void) 77 2 +10042680 FUN_10042680 undefined FUN_10042680(void) 77 2 +100426d0 FUN_100426d0 undefined FUN_100426d0(void) 77 2 +10042720 FUN_10042720 undefined FUN_10042720(void) 77 2 +10042770 FUN_10042770 undefined FUN_10042770(void) 77 2 +100427c0 FUN_100427c0 undefined FUN_100427c0(void) 77 2 +10042810 FUN_10042810 undefined FUN_10042810(void) 77 2 +10042860 FUN_10042860 undefined FUN_10042860(void) 77 2 +100428b0 FUN_100428b0 undefined FUN_100428b0(void) 104 2 +10042920 FUN_10042920 undefined FUN_10042920(void) 77 2 +10042970 FUN_10042970 undefined FUN_10042970(void) 77 2 +100429c0 FUN_100429c0 undefined FUN_100429c0(void) 77 2 +10042a10 FUN_10042a10 undefined FUN_10042a10(void) 77 2 +10042a60 FUN_10042a60 undefined FUN_10042a60(void) 77 2 +10042ab0 FUN_10042ab0 undefined FUN_10042ab0(void) 77 2 +10042b00 FUN_10042b00 undefined FUN_10042b00(void) 77 2 +10042b50 FUN_10042b50 undefined FUN_10042b50(void) 77 2 +10042ba0 FUN_10042ba0 undefined FUN_10042ba0(void) 77 2 +10042bf0 FUN_10042bf0 undefined FUN_10042bf0(void) 77 2 +10042c40 FUN_10042c40 undefined FUN_10042c40(void) 77 2 +10042c90 FUN_10042c90 undefined FUN_10042c90(void) 77 2 +10042ce0 FUN_10042ce0 undefined FUN_10042ce0(void) 77 2 +10042d30 FUN_10042d30 undefined FUN_10042d30(void) 77 2 +10042d80 FUN_10042d80 undefined FUN_10042d80(void) 77 2 +10042dd0 FUN_10042dd0 undefined FUN_10042dd0(void) 77 2 +10042e20 FUN_10042e20 undefined FUN_10042e20(void) 62 0 +10042e60 FUN_10042e60 undefined FUN_10042e60(void) 38 2 +10042e90 FUN_10042e90 undefined FUN_10042e90(void) 38 2 +10042ec0 FUN_10042ec0 undefined FUN_10042ec0(void) 38 2 +10042ef0 FUN_10042ef0 undefined FUN_10042ef0(void) 38 2 +10042f20 FUN_10042f20 undefined FUN_10042f20(void) 200 1 +10042ff0 FUN_10042ff0 undefined FUN_10042ff0(void) 200 1 +100430c0 FUN_100430c0 undefined FUN_100430c0(void) 38 1 +10043110 FUN_10043110 undefined FUN_10043110(void) 37 1 +10043140 FUN_10043140 undefined FUN_10043140(void) 115 1 +100431c0 FUN_100431c0 undefined FUN_100431c0(void) 211 4 +100432a0 FUN_100432a0 undefined FUN_100432a0(void) 339 4 +10043400 FUN_10043400 undefined FUN_10043400(void) 339 4 +10043560 FUN_10043560 undefined FUN_10043560(void) 339 4 +100436c0 FUN_100436c0 undefined FUN_100436c0(void) 190 4 +1004374f Catch@1004374f undefined Catch@1004374f(void) 21 2 +100437a0 FUN_100437a0 undefined FUN_100437a0(void) 190 4 +1004382f Catch@1004382f undefined Catch@1004382f(void) 21 2 +10043880 FUN_10043880 undefined FUN_10043880(void) 190 4 +1004390f Catch@1004390f undefined Catch@1004390f(void) 21 2 +10043960 FUN_10043960 undefined FUN_10043960(void) 190 4 +100439ef Catch@100439ef undefined Catch@100439ef(void) 21 2 +10043a40 FUN_10043a40 undefined FUN_10043a40(void) 190 4 +10043acf Catch@10043acf undefined Catch@10043acf(void) 21 2 +10043b20 FUN_10043b20 undefined FUN_10043b20(void) 190 4 +10043baf Catch@10043baf undefined Catch@10043baf(void) 21 2 +10043c00 FUN_10043c00 undefined FUN_10043c00(void) 83 2 +10043c60 FUN_10043c60 undefined FUN_10043c60(void) 105 0 +10043cd0 FUN_10043cd0 undefined FUN_10043cd0(void) 151 2 SysFreeString +10043d70 FUN_10043d70 undefined FUN_10043d70(void) 119 1 +10043df0 FUN_10043df0 undefined FUN_10043df0(void) 119 1 +10043e70 FUN_10043e70 undefined FUN_10043e70(void) 119 1 +10043ef0 FUN_10043ef0 undefined FUN_10043ef0(void) 91 2 +10043f50 FUN_10043f50 undefined FUN_10043f50(void) 77 2 +10043fa0 FUN_10043fa0 undefined FUN_10043fa0(void) 77 2 +10043ff0 FUN_10043ff0 undefined FUN_10043ff0(void) 357 1 +10044160 FUN_10044160 undefined FUN_10044160(void) 117 0 +100441e0 FUN_100441e0 undefined FUN_100441e0(void) 105 0 +10044250 FUN_10044250 undefined FUN_10044250(void) 98 0 +100442c0 FUN_100442c0 undefined FUN_100442c0(void) 117 0 +10044340 FUN_10044340 undefined FUN_10044340(void) 98 0 +100443b0 FUN_100443b0 undefined FUN_100443b0(void) 58 2 +100443f0 FUN_100443f0 undefined FUN_100443f0(void) 80 1 +10044450 FUN_10044450 undefined FUN_10044450(void) 87 0 +100444b0 FUN_100444b0 undefined FUN_100444b0(void) 105 0 +10044520 FUN_10044520 undefined FUN_10044520(void) 77 2 +10044570 FUN_10044570 undefined FUN_10044570(void) 121 1 +100445e9 Catch@100445e9 undefined Catch@100445e9(void) 45 2 +10044630 FUN_10044630 undefined FUN_10044630(void) 102 1 +100446a0 FUN_100446a0 undefined FUN_100446a0(void) 102 1 +10044710 FUN_10044710 undefined FUN_10044710(void) 136 5 +100447a0 FUN_100447a0 undefined FUN_100447a0(void) 315 3 SysFreeString +100448e0 FUN_100448e0 undefined FUN_100448e0(void) 75 4 SysFreeString +10044930 FUN_10044930 undefined FUN_10044930(void) 110 5 SysFreeString +100449a0 FUN_100449a0 undefined FUN_100449a0(void) 156 2 +10044a40 FUN_10044a40 undefined FUN_10044a40(void) 156 2 +10044ae0 FUN_10044ae0 undefined FUN_10044ae0(void) 136 3 +10044b70 FUN_10044b70 undefined FUN_10044b70(void) 129 1 +10044c00 FUN_10044c00 undefined FUN_10044c00(void) 496 11 +10044df0 FUN_10044df0 undefined FUN_10044df0(void) 575 3 +10045030 FUN_10045030 undefined FUN_10045030(void) 623 7 +100452a0 FUN_100452a0 undefined FUN_100452a0(void) 210 2 +10045380 FUN_10045380 undefined FUN_10045380(void) 623 7 +100455f0 FUN_100455f0 undefined FUN_100455f0(void) 1199 15 SysFreeString +10045aa0 FUN_10045aa0 undefined FUN_10045aa0(void) 1445 9 CoGetClassObject;SysFreeString +10046050 FUN_10046050 undefined FUN_10046050(void) 309 5 +10046190 FUN_10046190 undefined FUN_10046190(void) 441 5 +10046350 FUN_10046350 undefined FUN_10046350(void) 526 10 +10046560 FUN_10046560 undefined FUN_10046560(void) 355 6 +100466d0 FUN_100466d0 undefined FUN_100466d0(void) 319 4 +10046810 FUN_10046810 undefined FUN_10046810(void) 565 9 +10046a50 FUN_10046a50 undefined FUN_10046a50(void) 542 7 SysFreeString +10046c70 FUN_10046c70 undefined FUN_10046c70(void) 289 1 +10046da0 FUN_10046da0 undefined FUN_10046da0(void) 120 1 +10046e20 FUN_10046e20 undefined FUN_10046e20(void) 292 6 +10046f50 FUN_10046f50 undefined FUN_10046f50(void) 496 7 +10047140 FUN_10047140 undefined FUN_10047140(void) 281 1 +10047260 FUN_10047260 undefined FUN_10047260(void) 563 7 SysFreeString +100474a0 FUN_100474a0 undefined FUN_100474a0(void) 195 1 +10047570 FUN_10047570 undefined FUN_10047570(void) 172 3 +10047620 FUN_10047620 undefined FUN_10047620(void) 494 7 +10047810 FUN_10047810 undefined FUN_10047810(void) 476 6 +100479f0 FUN_100479f0 undefined FUN_100479f0(void) 476 6 +10047bd0 FUN_10047bd0 undefined FUN_10047bd0(void) 1034 11 +10047fe0 FUN_10047fe0 undefined FUN_10047fe0(void) 337 10 SysAllocString;SysFreeString +10048140 FUN_10048140 undefined FUN_10048140(void) 176 1 +100481f0 FUN_100481f0 undefined FUN_100481f0(void) 213 4 +100482d0 FUN_100482d0 undefined FUN_100482d0(void) 117 1 +10048350 FUN_10048350 undefined FUN_10048350(void) 117 1 +100483d0 FUN_100483d0 undefined FUN_100483d0(void) 117 1 +10048450 FUN_10048450 undefined FUN_10048450(void) 103 2 +100484c0 FUN_100484c0 undefined FUN_100484c0(void) 132 1 +10048550 FUN_10048550 undefined FUN_10048550(void) 46 1 +10048580 FUN_10048580 undefined FUN_10048580(void) 103 2 +100485f0 FUN_100485f0 undefined FUN_100485f0(void) 116 4 +10048670 FUN_10048670 undefined FUN_10048670(void) 146 1 +10048710 FUN_10048710 undefined FUN_10048710(void) 132 0 +100487a0 FUN_100487a0 undefined FUN_100487a0(void) 117 1 +10048820 FUN_10048820 undefined FUN_10048820(void) 69 2 +10048870 FUN_10048870 undefined FUN_10048870(void) 178 5 SysFreeString +10048930 FUN_10048930 undefined FUN_10048930(void) 161 1 +100489e0 FUN_100489e0 undefined FUN_100489e0(void) 126 1 +10048a60 FUN_10048a60 undefined FUN_10048a60(void) 117 1 +10048ae0 FUN_10048ae0 undefined FUN_10048ae0(void) 117 1 +10048b60 FUN_10048b60 undefined FUN_10048b60(void) 117 1 +10048be0 FUN_10048be0 undefined FUN_10048be0(void) 117 1 +10048c60 FUN_10048c60 undefined FUN_10048c60(void) 117 1 +10048ce0 FUN_10048ce0 undefined FUN_10048ce0(void) 40 1 +10048d10 FUN_10048d10 undefined FUN_10048d10(void) 69 2 +10048d60 FUN_10048d60 undefined FUN_10048d60(void) 247 6 +10048e60 FUN_10048e60 undefined FUN_10048e60(void) 243 5 +10048f60 FUN_10048f60 undefined FUN_10048f60(void) 116 4 +10048fe0 FUN_10048fe0 undefined FUN_10048fe0(void) 158 2 +10049080 FUN_10049080 undefined FUN_10049080(void) 103 2 +100490f0 FUN_100490f0 undefined FUN_100490f0(void) 82 3 +10049150 FUN_10049150 undefined FUN_10049150(void) 117 1 +100491d0 FUN_100491d0 undefined FUN_100491d0(void) 103 2 +10049240 FUN_10049240 undefined FUN_10049240(void) 82 3 +100492a0 FUN_100492a0 undefined FUN_100492a0(void) 120 2 +10049320 FUN_10049320 undefined FUN_10049320(void) 66 1 +10049370 FUN_10049370 undefined FUN_10049370(void) 44 1 +100493a0 FUN_100493a0 undefined FUN_100493a0(void) 44 1 +100493d0 FUN_100493d0 undefined FUN_100493d0(void) 24 1 +100493f0 FUN_100493f0 undefined FUN_100493f0(void) 179 4 +100494b0 FUN_100494b0 undefined FUN_100494b0(void) 9 1 +100494c0 FUN_100494c0 undefined FUN_100494c0(void) 119 2 +10049540 FUN_10049540 undefined FUN_10049540(void) 84 3 +100495a0 FUN_100495a0 undefined FUN_100495a0(void) 84 3 +10049600 FUN_10049600 undefined FUN_10049600(void) 126 2 memmove +10049680 FUN_10049680 undefined FUN_10049680(void) 20 1 +100496a0 FUN_100496a0 undefined FUN_100496a0(void) 158 2 +10049740 FUN_10049740 undefined FUN_10049740(void) 24 1 +10049760 FUN_10049760 undefined FUN_10049760(void) 576 6 +100499a0 FUN_100499a0 undefined FUN_100499a0(void) 24 1 +100499c0 FUN_100499c0 undefined FUN_100499c0(void) 24 1 +100499f0 FUN_100499f0 undefined FUN_100499f0(void) 158 2 +10049a90 FUN_10049a90 undefined FUN_10049a90(void) 158 2 +10049b30 FUN_10049b30 undefined FUN_10049b30(void) 158 2 +10049bd0 FUN_10049bd0 undefined FUN_10049bd0(void) 158 2 +10049c70 FUN_10049c70 undefined FUN_10049c70(void) 158 2 +10049d10 FUN_10049d10 undefined FUN_10049d10(void) 158 2 +10049db0 FUN_10049db0 undefined FUN_10049db0(void) 37 1 +10049de0 FUN_10049de0 undefined FUN_10049de0(void) 158 2 +10049e80 FUN_10049e80 undefined FUN_10049e80(void) 222 5 +10049f60 FUN_10049f60 undefined FUN_10049f60(void) 60 2 +10049fa0 FUN_10049fa0 undefined FUN_10049fa0(void) 75 2 +10049ff0 FUN_10049ff0 undefined FUN_10049ff0(void) 158 2 +1004a090 FUN_1004a090 undefined FUN_1004a090(void) 158 2 +1004a130 FUN_1004a130 undefined FUN_1004a130(void) 158 2 +1004a1d0 FUN_1004a1d0 undefined FUN_1004a1d0(void) 158 2 +1004a270 FUN_1004a270 undefined FUN_1004a270(void) 158 2 +1004a310 FUN_1004a310 undefined FUN_1004a310(void) 158 2 +1004a3b0 FUN_1004a3b0 undefined FUN_1004a3b0(void) 609 3 +1004a620 FUN_1004a620 undefined FUN_1004a620(void) 241 3 +1004a720 FUN_1004a720 undefined FUN_1004a720(void) 158 2 +1004a7c0 FUN_1004a7c0 undefined FUN_1004a7c0(void) 158 2 +1004a870 FUN_1004a870 undefined FUN_1004a870(void) 158 2 +1004a910 FUN_1004a910 undefined FUN_1004a910(void) 158 2 +1004a9b0 FUN_1004a9b0 undefined FUN_1004a9b0(void) 158 2 +1004aa50 FUN_1004aa50 undefined FUN_1004aa50(void) 158 2 +1004aaf0 FUN_1004aaf0 undefined FUN_1004aaf0(void) 158 2 +1004ab90 FUN_1004ab90 undefined FUN_1004ab90(void) 158 2 +1004ac30 FUN_1004ac30 undefined FUN_1004ac30(void) 158 2 +1004acd0 FUN_1004acd0 undefined FUN_1004acd0(void) 158 2 +1004ad70 FUN_1004ad70 undefined FUN_1004ad70(void) 158 2 +1004ae10 FUN_1004ae10 undefined FUN_1004ae10(void) 158 2 +1004aeb0 FUN_1004aeb0 undefined FUN_1004aeb0(void) 158 2 +1004af50 FUN_1004af50 undefined FUN_1004af50(void) 158 2 +1004aff0 FUN_1004aff0 undefined FUN_1004aff0(void) 158 2 +1004b090 FUN_1004b090 undefined FUN_1004b090(void) 158 2 +1004b130 FUN_1004b130 undefined FUN_1004b130(void) 158 2 +1004b1d0 FUN_1004b1d0 undefined FUN_1004b1d0(void) 158 2 +1004b280 FUN_1004b280 undefined FUN_1004b280(void) 191 5 +1004b33f Catch@1004b33f undefined Catch@1004b33f(void) 21 2 +1004b360 FUN_1004b360 undefined FUN_1004b360(void) 38 2 +1004b390 FUN_1004b390 undefined FUN_1004b390(void) 38 2 +1004b3c0 FUN_1004b3c0 undefined FUN_1004b3c0(void) 38 2 +1004b3f0 FUN_1004b3f0 undefined FUN_1004b3f0(void) 38 2 +1004b420 FUN_1004b420 undefined FUN_1004b420(void) 38 2 +1004b450 FUN_1004b450 undefined FUN_1004b450(void) 38 2 +1004b480 FUN_1004b480 undefined FUN_1004b480(void) 38 2 +1004b4b0 FUN_1004b4b0 undefined FUN_1004b4b0(void) 79 2 +1004b500 FUN_1004b500 undefined FUN_1004b500(void) 190 4 +1004b58f Catch@1004b58f undefined Catch@1004b58f(void) 21 2 +1004b5e0 FUN_1004b5e0 undefined FUN_1004b5e0(void) 117 1 +1004b660 FUN_1004b660 undefined FUN_1004b660(void) 190 4 +1004b6ef Catch@1004b6ef undefined Catch@1004b6ef(void) 21 2 +1004b740 FUN_1004b740 undefined FUN_1004b740(void) 190 4 +1004b7cf Catch@1004b7cf undefined Catch@1004b7cf(void) 21 2 +1004b820 FUN_1004b820 undefined FUN_1004b820(void) 190 4 +1004b8af Catch@1004b8af undefined Catch@1004b8af(void) 21 2 +1004b900 FUN_1004b900 undefined FUN_1004b900(void) 190 4 +1004b98f Catch@1004b98f undefined Catch@1004b98f(void) 21 2 +1004b9e0 FUN_1004b9e0 undefined FUN_1004b9e0(void) 190 4 +1004ba6f Catch@1004ba6f undefined Catch@1004ba6f(void) 21 2 +1004bac0 FUN_1004bac0 undefined FUN_1004bac0(void) 132 1 SysFreeString +1004bb50 FUN_1004bb50 undefined FUN_1004bb50(void) 97 1 +1004bbc0 FUN_1004bbc0 undefined FUN_1004bbc0(void) 97 1 +1004bc30 FUN_1004bc30 undefined FUN_1004bc30(void) 97 1 +1004bca0 FUN_1004bca0 undefined FUN_1004bca0(void) 67 1 +1004bcf0 FUN_1004bcf0 undefined FUN_1004bcf0(void) 158 2 +1004bd90 FUN_1004bd90 undefined FUN_1004bd90(void) 158 2 +1004be30 FUN_1004be30 undefined FUN_1004be30(void) 9 1 +1004be40 FUN_1004be40 undefined FUN_1004be40(void) 190 4 +1004becf Catch@1004becf undefined Catch@1004becf(void) 21 2 +1004bf20 FUN_1004bf20 undefined FUN_1004bf20(void) 190 4 +1004bfaf Catch@1004bfaf undefined Catch@1004bfaf(void) 21 2 +1004c000 FUN_1004c000 undefined FUN_1004c000(void) 222 5 +1004c0e0 FUN_1004c0e0 undefined FUN_1004c0e0(void) 28 1 +1004c100 FUN_1004c100 undefined FUN_1004c100(void) 117 1 +1004c180 FUN_1004c180 undefined FUN_1004c180(void) 158 2 +1004c220 FUN_1004c220 undefined FUN_1004c220(void) 251 3 CoCreateInstance +1004c320 FUN_1004c320 undefined FUN_1004c320(void) 975 11 SysFreeString +1004c6f0 FUN_1004c6f0 undefined FUN_1004c6f0(void) 722 6 +1004c9d0 FUN_1004c9d0 undefined FUN_1004c9d0(void) 128 1 +1004ca50 FUN_1004ca50 undefined FUN_1004ca50(void) 186 2 +1004cb30 FUN_1004cb30 undefined FUN_1004cb30(void) 116 4 +1004cbb0 FUN_1004cbb0 undefined FUN_1004cbb0(void) 127 1 +1004cc30 FUN_1004cc30 undefined FUN_1004cc30(void) 156 2 +1004ccd0 FUN_1004ccd0 undefined FUN_1004ccd0(void) 319 4 +1004ce10 FUN_1004ce10 undefined FUN_1004ce10(void) 215 1 +1004cef0 FUN_1004cef0 undefined FUN_1004cef0(void) 137 4 +1004cf80 FUN_1004cf80 undefined FUN_1004cf80(void) 103 2 +1004cff0 FUN_1004cff0 undefined FUN_1004cff0(void) 213 4 +1004d0d0 FUN_1004d0d0 undefined FUN_1004d0d0(void) 251 2 SysFreeString +1004d1d0 FUN_1004d1d0 undefined FUN_1004d1d0(void) 135 1 +1004d260 FUN_1004d260 undefined FUN_1004d260(void) 197 1 +1004d330 FUN_1004d330 undefined FUN_1004d330(void) 179 4 +1004d3f0 FUN_1004d3f0 undefined FUN_1004d3f0(void) 116 4 +1004d470 FUN_1004d470 undefined FUN_1004d470(void) 103 2 +1004d4e0 FUN_1004d4e0 undefined FUN_1004d4e0(void) 103 2 +1004d550 FUN_1004d550 undefined FUN_1004d550(void) 103 2 +1004d5c0 FUN_1004d5c0 undefined FUN_1004d5c0(void) 303 6 memset +1004d6f0 FUN_1004d6f0 undefined FUN_1004d6f0(void) 335 5 SysAllocStringByteLen +1004d840 FUN_1004d840 undefined FUN_1004d840(void) 536 9 +1004da60 FUN_1004da60 undefined FUN_1004da60(void) 1031 13 +1004de70 FUN_1004de70 undefined FUN_1004de70(void) 1519 17 +1004e460 FUN_1004e460 undefined FUN_1004e460(void) 1307 7 +1004e990 FUN_1004e990 undefined FUN_1004e990(void) 3063 19 CoGetClassObject;SysFreeString +1004f590 FUN_1004f590 undefined FUN_1004f590(void) 749 6 +1004f880 FUN_1004f880 undefined FUN_1004f880(void) 2004 7 +10050060 FUN_10050060 undefined FUN_10050060(void) 1581 9 +10050690 FUN_10050690 undefined FUN_10050690(void) 1868 13 SysFreeString +10050df0 FUN_10050df0 undefined FUN_10050df0(void) 371 5 +10050f70 FUN_10050f70 undefined FUN_10050f70(void) 212 6 +10051050 FUN_10051050 undefined FUN_10051050(void) 443 7 +10051210 FUN_10051210 undefined FUN_10051210(void) 107 1 +10051280 FUN_10051280 undefined FUN_10051280(void) 7 0 +10051290 FUN_10051290 undefined FUN_10051290(void) 15 0 +100512a0 FUN_100512a0 undefined FUN_100512a0(void) 39 0 +100512d0 FUN_100512d0 undefined FUN_100512d0(void) 68 1 +10051320 FUN_10051320 undefined FUN_10051320(void) 91 2 +10051380 FUN_10051380 undefined FUN_10051380(void) 96 2 +100513e0 FUN_100513e0 undefined FUN_100513e0(void) 210 3 +100514c0 FUN_100514c0 undefined FUN_100514c0(void) 184 1 +10051580 FUN_10051580 undefined FUN_10051580(void) 68 1 +100515d0 FUN_100515d0 undefined FUN_100515d0(void) 146 5 +10051670 FUN_10051670 undefined FUN_10051670(void) 146 5 +10051710 FUN_10051710 undefined FUN_10051710(void) 674 11 +100519c0 FUN_100519c0 undefined FUN_100519c0(void) 170 1 +10051a70 FUN_10051a70 undefined FUN_10051a70(void) 651 8 +10051d00 FUN_10051d00 undefined FUN_10051d00(void) 460 8 +10051ed0 FUN_10051ed0 undefined FUN_10051ed0(void) 715 10 CoCreateInstance +100521a0 FUN_100521a0 undefined FUN_100521a0(void) 331 5 SysAllocStringByteLen +100522f0 FUN_100522f0 undefined FUN_100522f0(void) 110 3 +10052370 FUN_10052370 undefined FUN_10052370(void) 175 3 +10052420 FUN_10052420 undefined FUN_10052420(void) 103 2 +10052490 FUN_10052490 undefined FUN_10052490(void) 175 3 +10052540 FUN_10052540 undefined FUN_10052540(void) 195 4 +10052610 FUN_10052610 undefined FUN_10052610(void) 19 1 +10052630 FUN_10052630 undefined FUN_10052630(void) 33 2 +10052660 FUN_10052660 undefined FUN_10052660(void) 116 5 +100526e0 FUN_100526e0 undefined FUN_100526e0(void) 103 2 +10052750 FUN_10052750 undefined FUN_10052750(void) 82 3 +100527b0 FUN_100527b0 undefined FUN_100527b0(void) 144 2 +10052840 FUN_10052840 undefined FUN_10052840(void) 103 2 +100528b0 FUN_100528b0 undefined FUN_100528b0(void) 175 3 +10052960 FUN_10052960 undefined FUN_10052960(void) 103 2 +100529d0 FUN_100529d0 undefined FUN_100529d0(void) 175 3 +10052a80 FUN_10052a80 undefined FUN_10052a80(void) 404 2 +10052c50 FUN_10052c50 undefined FUN_10052c50(void) 43 1 +10052c80 FUN_10052c80 undefined FUN_10052c80(void) 9 1 +10052c90 FUN_10052c90 undefined FUN_10052c90(void) 24 1 +10052cb0 FUN_10052cb0 undefined FUN_10052cb0(void) 24 1 +10052cd0 FUN_10052cd0 undefined FUN_10052cd0(void) 24 1 +10052cf0 FUN_10052cf0 undefined FUN_10052cf0(void) 24 1 +10052d10 FUN_10052d10 undefined FUN_10052d10(void) 24 1 +10052d30 FUN_10052d30 undefined FUN_10052d30(void) 24 1 +10052d50 FUN_10052d50 undefined FUN_10052d50(void) 24 1 +10052d70 FUN_10052d70 undefined FUN_10052d70(void) 51 1 +10052db0 FUN_10052db0 undefined FUN_10052db0(void) 75 2 +10052e00 FUN_10052e00 undefined FUN_10052e00(void) 24 1 +10052e20 FUN_10052e20 undefined FUN_10052e20(void) 24 1 +10052e40 FUN_10052e40 undefined FUN_10052e40(void) 24 1 +10052e60 FUN_10052e60 undefined FUN_10052e60(void) 24 1 +10052e80 FUN_10052e80 undefined FUN_10052e80(void) 24 1 +10052ea0 FUN_10052ea0 undefined FUN_10052ea0(void) 24 1 +10052ec0 FUN_10052ec0 undefined FUN_10052ec0(void) 23 1 +10052ee0 FUN_10052ee0 undefined FUN_10052ee0(void) 24 1 +10052f00 FUN_10052f00 undefined FUN_10052f00(void) 24 1 +10052f20 FUN_10052f20 undefined FUN_10052f20(void) 24 1 +10052f40 FUN_10052f40 undefined FUN_10052f40(void) 47 2 +10052f70 FUN_10052f70 undefined FUN_10052f70(void) 24 1 +10052f90 FUN_10052f90 undefined FUN_10052f90(void) 24 1 +10052fb0 FUN_10052fb0 undefined FUN_10052fb0(void) 24 1 +10052fd0 FUN_10052fd0 undefined FUN_10052fd0(void) 24 1 +10052ff0 FUN_10052ff0 undefined FUN_10052ff0(void) 24 1 +10053010 FUN_10053010 undefined FUN_10053010(void) 24 1 +10053030 FUN_10053030 undefined FUN_10053030(void) 24 1 +10053050 FUN_10053050 undefined FUN_10053050(void) 24 1 +10053070 FUN_10053070 undefined FUN_10053070(void) 24 1 +10053090 FUN_10053090 undefined FUN_10053090(void) 24 1 +100530b0 FUN_100530b0 undefined FUN_100530b0(void) 24 1 +100530d0 FUN_100530d0 undefined FUN_100530d0(void) 24 1 +100530f0 FUN_100530f0 undefined FUN_100530f0(void) 24 1 +10053110 FUN_10053110 undefined FUN_10053110(void) 24 1 +10053130 FUN_10053130 undefined FUN_10053130(void) 47 2 +10053160 FUN_10053160 undefined FUN_10053160(void) 510 9 +10053360 FUN_10053360 undefined FUN_10053360(void) 24 1 +10053380 FUN_10053380 undefined FUN_10053380(void) 235 5 +1005346b Catch@1005346b undefined Catch@1005346b(void) 21 2 +10053490 FUN_10053490 undefined FUN_10053490(void) 24 1 +100534b0 FUN_100534b0 undefined FUN_100534b0(void) 47 2 +100534e0 FUN_100534e0 undefined FUN_100534e0(void) 123 2 +10053560 FUN_10053560 undefined FUN_10053560(void) 181 2 +10053620 FUN_10053620 undefined FUN_10053620(void) 32 1 +10053640 FUN_10053640 undefined FUN_10053640(void) 67 0 +10053690 FUN_10053690 undefined FUN_10053690(void) 93 2 +100536f0 FUN_100536f0 undefined FUN_100536f0(void) 165 2 +10053795 Catch@10053795 undefined Catch@10053795(void) 21 2 +100537b0 FUN_100537b0 undefined FUN_100537b0(void) 117 1 +10053830 FUN_10053830 undefined FUN_10053830(void) 38 2 +10053860 FUN_10053860 undefined FUN_10053860(void) 55 2 +100538a0 FUN_100538a0 undefined FUN_100538a0(void) 38 2 +100538d0 FUN_100538d0 undefined FUN_100538d0(void) 40 2 +10053900 FUN_10053900 undefined FUN_10053900(void) 40 2 +10053930 FUN_10053930 undefined FUN_10053930(void) 40 2 +10053960 FUN_10053960 undefined FUN_10053960(void) 161 2 SysFreeString +10053a10 FUN_10053a10 undefined FUN_10053a10(void) 134 1 SysFreeString +10053aa0 FUN_10053aa0 undefined FUN_10053aa0(void) 99 1 +10053b10 FUN_10053b10 undefined FUN_10053b10(void) 99 1 +10053b80 FUN_10053b80 undefined FUN_10053b80(void) 99 1 +10053bf0 FUN_10053bf0 undefined FUN_10053bf0(void) 69 1 +10053c40 FUN_10053c40 undefined FUN_10053c40(void) 200 5 +10053d10 FUN_10053d10 undefined FUN_10053d10(void) 101 2 +10053d80 FUN_10053d80 undefined FUN_10053d80(void) 68 1 +10053dd0 FUN_10053dd0 undefined FUN_10053dd0(void) 24 1 +10053df0 FUN_10053df0 undefined FUN_10053df0(void) 24 1 +10053e10 FUN_10053e10 undefined FUN_10053e10(void) 165 2 +10053eb5 Catch@10053eb5 undefined Catch@10053eb5(void) 21 2 +10053ed0 FUN_10053ed0 undefined FUN_10053ed0(void) 97 1 +10053f40 FUN_10053f40 undefined FUN_10053f40(void) 184 4 +10053fc9 Catch@10053fc9 undefined Catch@10053fc9(void) 17 2 +10054010 FUN_10054010 undefined FUN_10054010(void) 117 1 +10054090 FUN_10054090 undefined FUN_10054090(void) 24 1 +100540b0 FUN_100540b0 undefined FUN_100540b0(void) 97 1 +10054120 FUN_10054120 undefined FUN_10054120(void) 801 15 SysAllocString;SysAllocStringLen;SysFreeString +10054450 FUN_10054450 undefined FUN_10054450(void) 103 2 +100544d0 FUN_100544d0 undefined FUN_100544d0(void) 129 4 +10054560 FUN_10054560 undefined FUN_10054560(void) 87 1 +100545c0 FUN_100545c0 undefined FUN_100545c0(void) 168 4 +10054670 FUN_10054670 undefined FUN_10054670(void) 33 2 +100546a0 FUN_100546a0 undefined FUN_100546a0(void) 175 3 +10054750 FUN_10054750 undefined FUN_10054750(void) 103 2 +100547c0 FUN_100547c0 undefined FUN_100547c0(void) 103 2 +10054830 FUN_10054830 undefined FUN_10054830(void) 103 2 +100548a0 FUN_100548a0 undefined FUN_100548a0(void) 103 2 +10054910 FUN_10054910 undefined FUN_10054910(void) 259 9 +10054a20 FUN_10054a20 undefined FUN_10054a20(void) 2455 14 +100553c0 FUN_100553c0 undefined FUN_100553c0(void) 4245 8 +10056460 FUN_10056460 undefined FUN_10056460(void) 68 1 +100564b0 FUN_100564b0 undefined FUN_100564b0(void) 519 9 +100566c0 FUN_100566c0 undefined FUN_100566c0(void) 595 10 +10056920 FUN_10056920 undefined FUN_10056920(void) 92 2 +10056980 FUN_10056980 undefined FUN_10056980(void) 22 1 +100569a0 FUN_100569a0 undefined FUN_100569a0(void) 84 2 +10056a00 FUN_10056a00 undefined FUN_10056a00(void) 103 2 +10056a70 FUN_10056a70 undefined FUN_10056a70(void) 103 2 +10056ae0 FUN_10056ae0 undefined FUN_10056ae0(void) 103 2 +10056b50 FUN_10056b50 undefined FUN_10056b50(void) 103 2 +10056bc0 FUN_10056bc0 undefined FUN_10056bc0(void) 103 2 +10056c30 FUN_10056c30 undefined FUN_10056c30(void) 175 3 +10056ce0 FUN_10056ce0 undefined FUN_10056ce0(void) 103 2 +10056d50 FUN_10056d50 undefined FUN_10056d50(void) 103 2 +10056dc0 FUN_10056dc0 undefined FUN_10056dc0(void) 51 1 +10056e00 FUN_10056e00 undefined FUN_10056e00(void) 119 2 +10056e80 FUN_10056e80 undefined FUN_10056e80(void) 103 2 +10056ef0 FUN_10056ef0 undefined FUN_10056ef0(void) 103 2 +10056f60 FUN_10056f60 undefined FUN_10056f60(void) 103 2 +10056fd0 FUN_10056fd0 undefined FUN_10056fd0(void) 103 2 +10057040 FUN_10057040 undefined FUN_10057040(void) 103 2 +100570b0 FUN_100570b0 undefined FUN_100570b0(void) 103 2 +10057120 FUN_10057120 undefined FUN_10057120(void) 168 3 +100571d0 FUN_100571d0 undefined FUN_100571d0(void) 103 2 +10057240 FUN_10057240 undefined FUN_10057240(void) 103 2 +100572b0 FUN_100572b0 undefined FUN_100572b0(void) 47 2 +100572e0 FUN_100572e0 undefined FUN_100572e0(void) 103 2 +10057350 FUN_10057350 undefined FUN_10057350(void) 103 2 +100573c0 FUN_100573c0 undefined FUN_100573c0(void) 103 2 +10057430 FUN_10057430 undefined FUN_10057430(void) 103 2 +100574a0 FUN_100574a0 undefined FUN_100574a0(void) 103 2 +10057510 FUN_10057510 undefined FUN_10057510(void) 103 2 +10057580 FUN_10057580 undefined FUN_10057580(void) 175 3 +10057630 FUN_10057630 undefined FUN_10057630(void) 175 3 +100576e0 FUN_100576e0 undefined FUN_100576e0(void) 163 2 +10057790 FUN_10057790 undefined FUN_10057790(void) 103 2 +10057800 FUN_10057800 undefined FUN_10057800(void) 158 2 +100578a0 FUN_100578a0 undefined FUN_100578a0(void) 103 2 +10057910 FUN_10057910 undefined FUN_10057910(void) 154 2 +100579b0 FUN_100579b0 undefined FUN_100579b0(void) 103 2 +10057a20 FUN_10057a20 undefined FUN_10057a20(void) 103 2 +10057a90 FUN_10057a90 undefined FUN_10057a90(void) 103 2 +10057b00 FUN_10057b00 undefined FUN_10057b00(void) 175 3 +10057bb0 FUN_10057bb0 undefined FUN_10057bb0(void) 103 2 +10057c20 FUN_10057c20 undefined FUN_10057c20(void) 103 2 +10057c90 FUN_10057c90 undefined FUN_10057c90(void) 103 2 +10057d00 FUN_10057d00 undefined FUN_10057d00(void) 103 2 +10057d70 FUN_10057d70 undefined FUN_10057d70(void) 103 2 +10057de0 FUN_10057de0 undefined FUN_10057de0(void) 47 2 +10057e10 FUN_10057e10 undefined FUN_10057e10(void) 47 2 +10057e40 FUN_10057e40 undefined FUN_10057e40(void) 89 1 +10057ea0 FUN_10057ea0 undefined FUN_10057ea0(void) 42 1 +10057ed0 FUN_10057ed0 undefined FUN_10057ed0(void) 114 2 +10057f50 FUN_10057f50 undefined FUN_10057f50(void) 127 2 +10057fd0 FUN_10057fd0 undefined FUN_10057fd0(void) 142 2 +10058060 FUN_10058060 undefined FUN_10058060(void) 119 1 +100580e0 FUN_100580e0 undefined FUN_100580e0(void) 28 1 +10058100 FUN_10058100 undefined FUN_10058100(void) 32 1 +10058120 FUN_10058120 undefined FUN_10058120(void) 97 1 +10058190 FUN_10058190 undefined FUN_10058190(void) 132 1 SysFreeString +10058220 FUN_10058220 undefined FUN_10058220(void) 97 1 +10058290 FUN_10058290 undefined FUN_10058290(void) 97 1 +10058300 FUN_10058300 undefined FUN_10058300(void) 67 1 +10058350 FUN_10058350 undefined FUN_10058350(void) 65 1 +100583a0 FUN_100583a0 undefined FUN_100583a0(void) 634 2 +10058620 FUN_10058620 undefined FUN_10058620(void) 97 1 +10058690 FUN_10058690 undefined FUN_10058690(void) 88 2 +100586f0 FUN_100586f0 undefined FUN_100586f0(void) 68 1 +10058740 FUN_10058740 undefined FUN_10058740(void) 103 2 +100587b0 FUN_100587b0 undefined FUN_100587b0(void) 103 2 +10058820 FUN_10058820 undefined FUN_10058820(void) 119 1 +100588a0 FUN_100588a0 undefined FUN_100588a0(void) 164 1 +10058950 FUN_10058950 undefined FUN_10058950(void) 131 1 +100589e0 FUN_100589e0 undefined FUN_100589e0(void) 77 1 +10058a30 FUN_10058a30 undefined FUN_10058a30(void) 195 4 +10058ac4 Catch@10058ac4 undefined Catch@10058ac4(void) 28 2 +10058b10 FUN_10058b10 undefined FUN_10058b10(void) 103 2 +10058b80 FUN_10058b80 undefined FUN_10058b80(void) 97 1 +10058bf0 FUN_10058bf0 undefined FUN_10058bf0(void) 93 1 +10058c50 FUN_10058c50 undefined FUN_10058c50(void) 103 2 +10058cc0 FUN_10058cc0 undefined FUN_10058cc0(void) 884 14 +10059040 FUN_10059040 undefined FUN_10059040(void) 103 2 +100590b0 FUN_100590b0 undefined FUN_100590b0(void) 103 2 +10059120 FUN_10059120 undefined FUN_10059120(void) 103 2 +10059190 FUN_10059190 undefined FUN_10059190(void) 103 2 +10059200 FUN_10059200 undefined FUN_10059200(void) 217 2 +100592e0 FUN_100592e0 undefined FUN_100592e0(void) 472 11 +100594c0 FUN_100594c0 undefined FUN_100594c0(void) 103 2 +10059530 FUN_10059530 undefined FUN_10059530(void) 103 2 +100595a0 FUN_100595a0 undefined FUN_100595a0(void) 103 2 +10059610 FUN_10059610 undefined FUN_10059610(void) 103 2 +10059680 FUN_10059680 undefined FUN_10059680(void) 103 2 +100596f0 FUN_100596f0 undefined FUN_100596f0(void) 103 2 +10059760 FUN_10059760 undefined FUN_10059760(void) 103 2 +100597d0 FUN_100597d0 undefined FUN_100597d0(void) 106 2 +10059840 FUN_10059840 undefined FUN_10059840(void) 103 2 +100598b0 FUN_100598b0 undefined FUN_100598b0(void) 286 5 +100599d0 FUN_100599d0 undefined FUN_100599d0(void) 103 2 +10059a40 FUN_10059a40 undefined FUN_10059a40(void) 103 2 +10059ab0 FUN_10059ab0 undefined FUN_10059ab0(void) 175 3 +10059b60 FUN_10059b60 undefined FUN_10059b60(void) 103 2 +10059bd0 FUN_10059bd0 undefined FUN_10059bd0(void) 103 2 +10059c40 FUN_10059c40 undefined FUN_10059c40(void) 103 2 +10059cb0 FUN_10059cb0 undefined FUN_10059cb0(void) 103 2 +10059d20 FUN_10059d20 undefined FUN_10059d20(void) 103 2 +10059d90 FUN_10059d90 undefined FUN_10059d90(void) 103 2 +10059e00 FUN_10059e00 undefined FUN_10059e00(void) 103 2 +10059e70 FUN_10059e70 undefined FUN_10059e70(void) 103 2 +10059ee0 FUN_10059ee0 undefined FUN_10059ee0(void) 103 2 +10059f50 FUN_10059f50 undefined FUN_10059f50(void) 103 2 +10059fc0 FUN_10059fc0 undefined FUN_10059fc0(void) 103 2 +1005a030 FUN_1005a030 undefined FUN_1005a030(void) 103 2 +1005a0a0 FUN_1005a0a0 undefined FUN_1005a0a0(void) 103 2 +1005a110 FUN_1005a110 undefined FUN_1005a110(void) 103 2 +1005a180 FUN_1005a180 undefined FUN_1005a180(void) 147 3 SysFreeString +1005a220 FUN_1005a220 undefined FUN_1005a220(void) 124 2 +1005a2a0 FUN_1005a2a0 undefined FUN_1005a2a0(void) 114 2 +1005a320 FUN_1005a320 undefined FUN_1005a320(void) 2264 7 +1005ac00 FUN_1005ac00 undefined FUN_1005ac00(void) 940 8 +1005afb0 FUN_1005afb0 undefined FUN_1005afb0(void) 113 2 +1005b030 FUN_1005b030 undefined FUN_1005b030(void) 103 2 +1005b0a0 FUN_1005b0a0 undefined FUN_1005b0a0(void) 114 2 +1005b120 FUN_1005b120 undefined FUN_1005b120(void) 89 1 +1005b180 FUN_1005b180 undefined FUN_1005b180(void) 103 2 +1005b1f0 FUN_1005b1f0 undefined FUN_1005b1f0(void) 114 2 +1005b270 FUN_1005b270 undefined FUN_1005b270(void) 114 2 +1005b2f0 FUN_1005b2f0 undefined FUN_1005b2f0(void) 103 2 +1005b360 FUN_1005b360 undefined FUN_1005b360(void) 175 3 +1005b410 FUN_1005b410 undefined FUN_1005b410(void) 175 3 +1005b4c0 FUN_1005b4c0 undefined FUN_1005b4c0(void) 175 3 +1005b570 FUN_1005b570 undefined FUN_1005b570(void) 1866 26 SysFreeString +1005bcc0 FUN_1005bcc0 undefined FUN_1005bcc0(void) 97 1 +1005bd30 FUN_1005bd30 undefined FUN_1005bd30(void) 174 2 +1005bde0 FUN_1005bde0 undefined FUN_1005bde0(void) 329 8 SysFreeString +1005bf30 FUN_1005bf30 undefined FUN_1005bf30(void) 50 2 +1005bf70 FUN_1005bf70 undefined FUN_1005bf70(void) 30 1 +1005bf90 FUN_1005bf90 undefined FUN_1005bf90(void) 175 3 +1005c040 FUN_1005c040 undefined FUN_1005c040(void) 175 3 +1005c0f0 FUN_1005c0f0 undefined FUN_1005c0f0(void) 175 3 +1005c1a0 FUN_1005c1a0 undefined FUN_1005c1a0(void) 175 3 +1005c250 FUN_1005c250 undefined FUN_1005c250(void) 100 4 SysAllocString +1005c2c0 FUN_1005c2c0 undefined FUN_1005c2c0(void) 75 3 SysAllocString;SysFreeString +1005c310 FUN_1005c310 undefined FUN_1005c310(void) 161 6 SysAllocStringLen;SysFreeString;memcpy_s +1005c3c0 FUN_1005c3c0 undefined FUN_1005c3c0(void) 175 3 +1005c470 FUN_1005c470 undefined FUN_1005c470(void) 175 3 +1005c520 FUN_1005c520 undefined FUN_1005c520(void) 54 1 +1005c560 FUN_1005c560 undefined FUN_1005c560(void) 175 3 +1005c610 FUN_1005c610 undefined FUN_1005c610(void) 175 3 +1005c6c0 FUN_1005c6c0 undefined FUN_1005c6c0(void) 175 3 +1005c770 FUN_1005c770 undefined FUN_1005c770(void) 175 3 +1005c820 FUN_1005c820 undefined FUN_1005c820(void) 175 3 +1005c8d0 FUN_1005c8d0 undefined FUN_1005c8d0(void) 175 3 +1005c980 FUN_1005c980 undefined FUN_1005c980(void) 175 3 +1005ca30 FUN_1005ca30 undefined FUN_1005ca30(void) 175 3 +1005cae0 FUN_1005cae0 undefined FUN_1005cae0(void) 175 3 +1005cb90 FUN_1005cb90 undefined FUN_1005cb90(void) 175 3 +1005cc40 FUN_1005cc40 undefined FUN_1005cc40(void) 175 3 +1005ccf0 FUN_1005ccf0 undefined FUN_1005ccf0(void) 175 3 +1005cda0 FUN_1005cda0 undefined FUN_1005cda0(void) 175 3 +1005ce50 FUN_1005ce50 undefined FUN_1005ce50(void) 175 3 +1005cf00 FUN_1005cf00 undefined FUN_1005cf00(void) 175 3 +1005cfb0 FUN_1005cfb0 undefined FUN_1005cfb0(void) 175 3 +1005d060 FUN_1005d060 undefined FUN_1005d060(void) 32 1 +1005d080 FUN_1005d080 undefined FUN_1005d080(void) 48 2 +1005d0b0 FUN_1005d0b0 undefined FUN_1005d0b0(void) 192 1 +1005d170 FUN_1005d170 undefined FUN_1005d170(void) 43 1 +1005d1a0 FUN_1005d1a0 undefined FUN_1005d1a0(void) 43 1 +1005d1d0 FUN_1005d1d0 undefined FUN_1005d1d0(void) 43 1 +1005d200 FUN_1005d200 undefined FUN_1005d200(void) 43 1 +1005d230 FUN_1005d230 undefined FUN_1005d230(void) 43 1 +1005d260 FUN_1005d260 undefined FUN_1005d260(void) 684 7 +1005d510 FUN_1005d510 undefined FUN_1005d510(void) 708 8 SysFreeString +1005d7e0 FUN_1005d7e0 undefined FUN_1005d7e0(void) 684 7 +1005da90 FUN_1005da90 undefined FUN_1005da90(void) 152 2 +1005db30 FUN_1005db30 undefined FUN_1005db30(void) 684 7 +1005dde0 FUN_1005dde0 undefined FUN_1005dde0(void) 656 8 +1005e070 FUN_1005e070 undefined FUN_1005e070(void) 191 3 SysFreeString +1005e140 FUN_1005e140 undefined FUN_1005e140(void) 152 2 +1005e1e0 FUN_1005e1e0 undefined FUN_1005e1e0(void) 152 2 +1005e280 FUN_1005e280 undefined FUN_1005e280(void) 241 4 +1005e380 FUN_1005e380 undefined FUN_1005e380(void) 51 1 +1005e3c0 FUN_1005e3c0 undefined FUN_1005e3c0(void) 43 1 +1005e3f0 FUN_1005e3f0 undefined FUN_1005e3f0(void) 43 1 +1005e420 FUN_1005e420 undefined FUN_1005e420(void) 51 1 +1005e460 FUN_1005e460 undefined FUN_1005e460(void) 43 1 +1005e490 FUN_1005e490 undefined FUN_1005e490(void) 43 1 +1005e4c0 FUN_1005e4c0 undefined FUN_1005e4c0(void) 43 1 +1005e4f0 FUN_1005e4f0 undefined FUN_1005e4f0(void) 43 1 +1005e520 FUN_1005e520 undefined FUN_1005e520(void) 43 1 +1005e550 FUN_1005e550 undefined FUN_1005e550(void) 43 1 +1005e580 FUN_1005e580 undefined FUN_1005e580(void) 43 1 +1005e5b0 FUN_1005e5b0 undefined FUN_1005e5b0(void) 667 6 +1005e850 FUN_1005e850 undefined FUN_1005e850(void) 64 1 +1005e890 FUN_1005e890 undefined FUN_1005e890(void) 91 2 +1005e8f0 FUN_1005e8f0 undefined FUN_1005e8f0(void) 114 2 +1005e970 FUN_1005e970 undefined FUN_1005e970(void) 314 3 +1005eab0 FUN_1005eab0 undefined FUN_1005eab0(void) 114 2 +1005eb30 FUN_1005eb30 undefined FUN_1005eb30(void) 103 2 +1005eba0 FUN_1005eba0 undefined FUN_1005eba0(void) 103 2 +1005ec10 FUN_1005ec10 undefined FUN_1005ec10(void) 195 4 +1005eca4 Catch@1005eca4 undefined Catch@1005eca4(void) 28 2 +1005ecf0 FUN_1005ecf0 undefined FUN_1005ecf0(void) 129 1 +1005ed80 FUN_1005ed80 undefined FUN_1005ed80(void) 90 1 +1005ede0 FUN_1005ede0 undefined FUN_1005ede0(void) 93 1 +1005ee40 FUN_1005ee40 undefined FUN_1005ee40(void) 77 1 +1005ee90 FUN_1005ee90 undefined FUN_1005ee90(void) 33 2 +1005eec0 FUN_1005eec0 undefined FUN_1005eec0(void) 103 2 +1005ef30 FUN_1005ef30 undefined FUN_1005ef30(void) 106 1 +1005efa0 FUN_1005efa0 undefined FUN_1005efa0(void) 93 1 +1005f000 FUN_1005f000 undefined FUN_1005f000(void) 90 1 +1005f060 FUN_1005f060 undefined FUN_1005f060(void) 198 3 +1005f130 FUN_1005f130 undefined FUN_1005f130(void) 256 6 SysAllocString +1005f240 FUN_1005f240 undefined FUN_1005f240(void) 322 8 +1005f390 FUN_1005f390 undefined FUN_1005f390(void) 345 2 +1005f4f0 FUN_1005f4f0 undefined FUN_1005f4f0(void) 145 2 CoCreateInstance +1005f590 FUN_1005f590 undefined FUN_1005f590(void) 69 2 SysFreeString +1005f5e0 FUN_1005f5e0 undefined FUN_1005f5e0(void) 40 1 +1005f610 FUN_1005f610 undefined FUN_1005f610(void) 69 2 SysFreeString +1005f660 FUN_1005f660 undefined FUN_1005f660(void) 69 2 SysFreeString +1005f6b0 FUN_1005f6b0 undefined FUN_1005f6b0(void) 69 2 SysFreeString +1005f700 FUN_1005f700 undefined FUN_1005f700(void) 40 1 +1005f730 FUN_1005f730 undefined FUN_1005f730(void) 175 1 +1005f7e0 FUN_1005f7e0 undefined FUN_1005f7e0(void) 154 1 +1005f880 FUN_1005f880 undefined FUN_1005f880(void) 161 1 +1005f930 FUN_1005f930 undefined FUN_1005f930(void) 154 1 +1005f9d0 FUN_1005f9d0 undefined FUN_1005f9d0(void) 182 5 +1005fa90 FUN_1005fa90 undefined FUN_1005fa90(void) 84 2 +1005faf0 FUN_1005faf0 undefined FUN_1005faf0(void) 169 1 +1005fba0 FUN_1005fba0 undefined FUN_1005fba0(void) 169 1 +1005fc50 FUN_1005fc50 undefined FUN_1005fc50(void) 169 1 +1005fd00 FUN_1005fd00 undefined FUN_1005fd00(void) 82 1 +1005fd60 FUN_1005fd60 undefined FUN_1005fd60(void) 45 3 +1005fd90 FUN_1005fd90 undefined FUN_1005fd90(void) 348 10 +1005fef0 FUN_1005fef0 undefined FUN_1005fef0(void) 119 2 +1005ff70 FUN_1005ff70 undefined FUN_1005ff70(void) 370 7 SysAllocString;SysFreeString +100600f0 FUN_100600f0 undefined FUN_100600f0(void) 331 8 SysAllocString;SysFreeString +10060240 FUN_10060240 undefined FUN_10060240(void) 389 9 memmove +100603d0 FUN_100603d0 undefined FUN_100603d0(void) 692 14 +10060690 FUN_10060690 undefined FUN_10060690(void) 812 12 SysFreeString +100609c0 FUN_100609c0 undefined FUN_100609c0(void) 95 1 +10060a20 FUN_10060a20 undefined FUN_10060a20(void) 341 4 SysFreeString +10060b80 FUN_10060b80 undefined FUN_10060b80(void) 112 2 +10060bf0 FUN_10060bf0 undefined FUN_10060bf0(void) 158 3 +10060c90 FUN_10060c90 undefined FUN_10060c90(void) 61 1 +10060cd0 FUN_10060cd0 undefined FUN_10060cd0(void) 63 1 +10060d10 FUN_10060d10 undefined FUN_10060d10(void) 49 1 +10060d50 FUN_10060d50 undefined FUN_10060d50(void) 253 2 CoCreateInstance +10060e50 FUN_10060e50 undefined FUN_10060e50(void) 128 2 +10060ed0 FUN_10060ed0 undefined FUN_10060ed0(void) 57 2 +10060f10 FUN_10060f10 undefined FUN_10060f10(void) 45 3 +10060f40 FUN_10060f40 undefined FUN_10060f40(void) 348 10 +100610a0 FUN_100610a0 undefined FUN_100610a0(void) 112 2 +10061110 FUN_10061110 undefined FUN_10061110(void) 233 6 +10061200 FUN_10061200 undefined FUN_10061200(void) 233 6 +100612f0 FUN_100612f0 undefined FUN_100612f0(void) 177 3 +100613b0 FUN_100613b0 undefined FUN_100613b0(void) 138 3 +10061440 FUN_10061440 undefined FUN_10061440(void) 175 3 +10061500 FUN_10061500 undefined FUN_10061500(void) 460 10 +100616d0 FUN_100616d0 undefined FUN_100616d0(void) 175 3 +10061780 FUN_10061780 undefined FUN_10061780(void) 103 2 +100617f0 FUN_100617f0 undefined FUN_100617f0(void) 175 3 +100618a0 FUN_100618a0 undefined FUN_100618a0(void) 103 2 +10061910 FUN_10061910 undefined FUN_10061910(void) 191 4 +100619d0 FUN_100619d0 undefined FUN_100619d0(void) 175 3 +10061a80 FUN_10061a80 undefined FUN_10061a80(void) 103 2 +10061af0 FUN_10061af0 undefined FUN_10061af0(void) 367 8 memmove +10061c60 FUN_10061c60 undefined FUN_10061c60(void) 646 24 +10061ef0 FUN_10061ef0 undefined FUN_10061ef0(void) 2244 10 SysAllocString;SysFreeString +100627c0 FUN_100627c0 undefined FUN_100627c0(void) 224 6 +100628a0 FUN_100628a0 undefined FUN_100628a0(void) 114 2 +10062920 FUN_10062920 undefined FUN_10062920(void) 139 3 +100629b0 FUN_100629b0 undefined FUN_100629b0(void) 1149 15 +10062e30 FUN_10062e30 undefined FUN_10062e30(void) 768 7 +10063140 FUN_10063140 undefined FUN_10063140(void) 558 10 +10063370 FUN_10063370 undefined FUN_10063370(void) 114 2 +100633f0 FUN_100633f0 undefined FUN_100633f0(void) 282 4 +10063510 FUN_10063510 undefined FUN_10063510(void) 114 2 +10063590 FUN_10063590 undefined FUN_10063590(void) 175 3 +10063640 FUN_10063640 undefined FUN_10063640(void) 103 2 +100636b0 FUN_100636b0 undefined FUN_100636b0(void) 48 2 +100636e0 FUN_100636e0 undefined FUN_100636e0(void) 1376 19 +10063c50 FUN_10063c50 undefined FUN_10063c50(void) 32 2 +10063c70 FUN_10063c70 undefined FUN_10063c70(void) 34 2 +10063ca0 FUN_10063ca0 undefined FUN_10063ca0(void) 101 2 +10063d10 FUN_10063d10 undefined FUN_10063d10(void) 51 1 +10063d50 FUN_10063d50 undefined FUN_10063d50(void) 51 1 +10063d90 FUN_10063d90 undefined FUN_10063d90(void) 52 1 +10063dd0 FUN_10063dd0 undefined FUN_10063dd0(void) 19 1 +10063df0 FUN_10063df0 undefined FUN_10063df0(void) 43 1 +10063e20 FUN_10063e20 undefined FUN_10063e20(void) 43 1 +10063e50 FUN_10063e50 undefined FUN_10063e50(void) 43 1 +10063e80 FUN_10063e80 undefined FUN_10063e80(void) 43 1 +10063eb0 FUN_10063eb0 undefined FUN_10063eb0(void) 43 1 +10063ee0 FUN_10063ee0 undefined FUN_10063ee0(void) 66 1 +10063f30 FUN_10063f30 undefined FUN_10063f30(void) 99 1 +10063fb0 FUN_10063fb0 undefined FUN_10063fb0(void) 16 0 +10063fc0 FUN_10063fc0 undefined FUN_10063fc0(void) 35 0 +10063ff0 FUN_10063ff0 undefined FUN_10063ff0(void) 27 1 AtlInternalQueryInterface +10064010 FUN_10064010 undefined FUN_10064010(void) 30 1 AtlInternalQueryInterface +10064030 FUN_10064030 undefined FUN_10064030(void) 104 1 +100640a0 FUN_100640a0 undefined FUN_100640a0(void) 123 2 +10064120 FUN_10064120 undefined FUN_10064120(void) 144 3 +100641b0 FUN_100641b0 undefined FUN_100641b0(void) 190 4 +1006423f Catch@1006423f undefined Catch@1006423f(void) 21 2 +10064290 FUN_10064290 undefined FUN_10064290(void) 90 1 +100642f0 FUN_100642f0 undefined FUN_100642f0(void) 93 1 +10064350 FUN_10064350 undefined FUN_10064350(void) 67 1 +100643a0 FUN_100643a0 undefined FUN_100643a0(void) 137 2 +10064430 FUN_10064430 undefined FUN_10064430(void) 114 2 +100644b0 FUN_100644b0 undefined FUN_100644b0(void) 68 1 +10064500 FUN_10064500 undefined FUN_10064500(void) 153 3 +100645a0 FUN_100645a0 undefined FUN_100645a0(void) 123 2 +10064620 FUN_10064620 undefined FUN_10064620(void) 114 2 +100646a0 FUN_100646a0 undefined FUN_100646a0(void) 114 2 +10064720 FUN_10064720 undefined FUN_10064720(void) 77 1 +10064770 FUN_10064770 undefined FUN_10064770(void) 189 4 SysAllocStringByteLen +10064830 FUN_10064830 undefined FUN_10064830(void) 104 1 +100648a0 FUN_100648a0 undefined FUN_100648a0(void) 105 1 +10064910 FUN_10064910 undefined FUN_10064910(void) 12 1 +10064920 FUN_10064920 undefined FUN_10064920(void) 114 2 +100649a0 FUN_100649a0 undefined FUN_100649a0(void) 90 1 +10064a00 FUN_10064a00 undefined FUN_10064a00(void) 1150 21 SysFreeString +10064e80 FUN_10064e80 undefined FUN_10064e80(void) 159 7 SysAllocStringByteLen;SysFreeString +10064f20 FUN_10064f20 undefined FUN_10064f20(void) 572 11 +10065160 FUN_10065160 undefined FUN_10065160(void) 494 8 SysFreeString +10065350 FUN_10065350 undefined FUN_10065350(void) 734 11 +10065630 FUN_10065630 undefined FUN_10065630(void) 1173 17 +10065ad0 FUN_10065ad0 undefined FUN_10065ad0(void) 486 9 CoCreateInstance;SysFreeString +10065cc0 FUN_10065cc0 undefined FUN_10065cc0(void) 604 13 SysFreeString +10065ea9 Catch@10065ea9 undefined Catch@10065ea9(void) 40 2 +10065f70 FUN_10065f70 undefined FUN_10065f70(void) 1760 39 SysAllocString;SysAllocStringByteLen;SysFreeString;memset +10066650 FUN_10066650 undefined FUN_10066650(void) 257 1 +10066760 FUN_10066760 undefined FUN_10066760(void) 19 1 +10066780 FUN_10066780 undefined FUN_10066780(void) 187 2 +10066840 FUN_10066840 undefined FUN_10066840(void) 24 1 +10066860 FUN_10066860 undefined FUN_10066860(void) 162 1 +10066910 FUN_10066910 undefined FUN_10066910(void) 62 1 +10066950 FUN_10066950 undefined FUN_10066950(void) 187 2 +10066a10 FUN_10066a10 undefined FUN_10066a10(void) 187 2 +10066ad0 FUN_10066ad0 undefined FUN_10066ad0(void) 187 2 +10066b90 FUN_10066b90 undefined FUN_10066b90(void) 187 2 +10066c50 FUN_10066c50 undefined FUN_10066c50(void) 144 3 +10066ce0 Catch@10066ce0 undefined Catch@10066ce0(void) 13 0 +10066cf6 FUN_10066cf6 undefined FUN_10066cf6(void) 30 0 +10066d20 FUN_10066d20 undefined FUN_10066d20(void) 38 2 +10066d50 FUN_10066d50 undefined FUN_10066d50(void) 100 1 +10066dc0 FUN_10066dc0 undefined FUN_10066dc0(void) 103 1 +10066e30 FUN_10066e30 undefined FUN_10066e30(void) 64 1 +10066e70 FUN_10066e70 undefined FUN_10066e70(void) 211 4 +10066f50 FUN_10066f50 undefined FUN_10066f50(void) 69 1 +10066fa0 FUN_10066fa0 undefined FUN_10066fa0(void) 26 1 +10066fc0 FUN_10066fc0 undefined FUN_10066fc0(void) 188 7 SysAllocStringByteLen;SysFreeString +10067080 FUN_10067080 undefined FUN_10067080(void) 112 2 +100670f0 FUN_100670f0 undefined FUN_100670f0(void) 77 1 +10067140 FUN_10067140 undefined FUN_10067140(void) 137 2 +100671d0 FUN_100671d0 undefined FUN_100671d0(void) 68 1 +10067220 FUN_10067220 undefined FUN_10067220(void) 65 1 +10067270 FUN_10067270 undefined FUN_10067270(void) 123 2 +100672f0 FUN_100672f0 undefined FUN_100672f0(void) 114 2 +10067370 FUN_10067370 undefined FUN_10067370(void) 114 2 +100673f0 FUN_100673f0 undefined FUN_100673f0(void) 610 3 +10067660 FUN_10067660 undefined FUN_10067660(void) 190 4 +100676ef Catch@100676ef undefined Catch@100676ef(void) 21 2 +10067740 FUN_10067740 undefined FUN_10067740(void) 103 1 +100677b0 FUN_100677b0 undefined FUN_100677b0(void) 92 1 +10067810 FUN_10067810 undefined FUN_10067810(void) 85 1 +10067870 FUN_10067870 undefined FUN_10067870(void) 15 1 +10067880 FUN_10067880 undefined FUN_10067880(void) 102 1 +100678f0 FUN_100678f0 undefined FUN_100678f0(void) 137 2 +10067980 FUN_10067980 undefined FUN_10067980(void) 92 1 +100679e0 FUN_100679e0 undefined FUN_100679e0(void) 92 1 +10067a40 FUN_10067a40 undefined FUN_10067a40(void) 92 1 +10067aa0 FUN_10067aa0 undefined FUN_10067aa0(void) 646 8 SysFreeString +10067d30 FUN_10067d30 undefined FUN_10067d30(void) 317 12 +10067e70 FUN_10067e70 undefined FUN_10067e70(void) 135 1 +10067f20 FUN_10067f20 undefined FUN_10067f20(void) 79 2 +10067f70 FUN_10067f70 undefined FUN_10067f70(void) 526 10 +10068180 FUN_10068180 undefined FUN_10068180(void) 103 2 +100681f0 FUN_100681f0 undefined FUN_100681f0(void) 82 3 +10068250 FUN_10068250 undefined FUN_10068250(void) 222 4 +10068330 FUN_10068330 undefined FUN_10068330(void) 65 1 +10068380 FUN_10068380 undefined FUN_10068380(void) 24 1 +100683a0 FUN_100683a0 undefined FUN_100683a0(void) 24 1 +100683c0 FUN_100683c0 undefined FUN_100683c0(void) 24 1 +100683e0 FUN_100683e0 undefined FUN_100683e0(void) 228 3 SysFreeString +100684d0 FUN_100684d0 undefined FUN_100684d0(void) 24 1 +100684f0 FUN_100684f0 undefined FUN_100684f0(void) 24 1 +10068510 FUN_10068510 undefined FUN_10068510(void) 745 8 SysFreeString +10068800 FUN_10068800 undefined FUN_10068800(void) 38 2 +10068830 FUN_10068830 undefined FUN_10068830(void) 67 1 +10068880 FUN_10068880 undefined FUN_10068880(void) 32 1 +100688a0 FUN_100688a0 undefined FUN_100688a0(void) 35 1 +100688d0 FUN_100688d0 undefined FUN_100688d0(void) 114 2 +10068950 FUN_10068950 undefined FUN_10068950(void) 610 3 +10068bc0 FUN_10068bc0 undefined FUN_10068bc0(void) 190 4 +10068c4f Catch@10068c4f undefined Catch@10068c4f(void) 21 2 +10068ca0 FUN_10068ca0 undefined FUN_10068ca0(void) 92 1 +10068d00 FUN_10068d00 undefined FUN_10068d00(void) 92 1 +10068d60 FUN_10068d60 undefined FUN_10068d60(void) 112 2 +10068dd0 FUN_10068dd0 undefined FUN_10068dd0(void) 91 2 +10068e30 FUN_10068e30 undefined FUN_10068e30(void) 88 2 +10068e90 FUN_10068e90 undefined FUN_10068e90(void) 146 2 +10068f30 FUN_10068f30 undefined FUN_10068f30(void) 137 2 +10068fc0 FUN_10068fc0 undefined FUN_10068fc0(void) 137 2 +10069050 FUN_10069050 undefined FUN_10069050(void) 411 5 +100691f0 FUN_100691f0 undefined FUN_100691f0(void) 425 5 +100693a0 FUN_100693a0 undefined FUN_100693a0(void) 102 1 +10069410 FUN_10069410 undefined FUN_10069410(void) 83 1 +10069470 FUN_10069470 undefined FUN_10069470(void) 12 1 +10069480 FUN_10069480 undefined FUN_10069480(void) 121 1 +100694f9 Catch@100694f9 undefined Catch@100694f9(void) 33 2 +10069520 FUN_10069520 undefined FUN_10069520(void) 112 2 +10069590 FUN_10069590 undefined FUN_10069590(void) 92 1 +100695f0 FUN_100695f0 undefined FUN_100695f0(void) 92 1 +10069650 FUN_10069650 undefined FUN_10069650(void) 92 1 +100696b0 FUN_100696b0 undefined FUN_100696b0(void) 103 2 +10069720 FUN_10069720 undefined FUN_10069720(void) 552 13 CoCreateInstance;SysFreeString +10069950 FUN_10069950 undefined FUN_10069950(void) 723 18 SysFreeString +10069c30 FUN_10069c30 undefined FUN_10069c30(void) 5069 55 SysFreeString +1006a46a Catch@1006a46a undefined Catch@1006a46a(void) 72 1 +1006b0a0 FUN_1006b0a0 undefined FUN_1006b0a0(void) 26 1 +1006b0c0 FUN_1006b0c0 undefined FUN_1006b0c0(void) 82 3 +1006b120 FUN_1006b120 undefined FUN_1006b120(void) 132 1 +1006b1b0 FUN_1006b1b0 undefined FUN_1006b1b0(void) 103 2 +1006b220 FUN_1006b220 undefined FUN_1006b220(void) 103 2 +1006b290 FUN_1006b290 undefined FUN_1006b290(void) 120 2 +1006b310 FUN_1006b310 undefined FUN_1006b310(void) 43 1 +1006b340 FUN_1006b340 undefined FUN_1006b340(void) 175 3 +1006b3f0 FUN_1006b3f0 undefined FUN_1006b3f0(void) 103 2 +1006b460 FUN_1006b460 undefined FUN_1006b460(void) 656 8 +1006b6f0 FUN_1006b6f0 undefined FUN_1006b6f0(void) 103 2 +1006b760 FUN_1006b760 undefined FUN_1006b760(void) 252 8 SysAllocString +1006b85c Catch@1006b85c undefined Catch@1006b85c(void) 95 5 +1006b8bd FUN_1006b8bd undefined FUN_1006b8bd(void) 61 3 SysFreeString +1006b8fa Catch@1006b8fa undefined Catch@1006b8fa(void) 53 3 +1006b931 Catch@1006b931 undefined Catch@1006b931(void) 119 6 +1006b9ad Catch@1006b9ad undefined Catch@1006b9ad(void) 72 3 +1006ba00 FUN_1006ba00 undefined FUN_1006ba00(void) 187 2 +1006bac0 FUN_1006bac0 undefined FUN_1006bac0(void) 121 3 +1006bb40 FUN_1006bb40 undefined FUN_1006bb40(void) 92 1 +1006bba0 FUN_1006bba0 undefined FUN_1006bba0(void) 102 1 +1006bc10 FUN_1006bc10 undefined FUN_1006bc10(void) 121 1 +1006bc90 FUN_1006bc90 undefined FUN_1006bc90(void) 112 2 +1006bd00 FUN_1006bd00 undefined FUN_1006bd00(void) 323 4 +1006be50 FUN_1006be50 undefined FUN_1006be50(void) 114 2 +1006bed0 FUN_1006bed0 undefined FUN_1006bed0(void) 642 3 +1006c160 FUN_1006c160 undefined FUN_1006c160(void) 38 2 +1006c190 FUN_1006c190 undefined FUN_1006c190(void) 40 2 +1006c1c0 FUN_1006c1c0 undefined FUN_1006c1c0(void) 190 4 +1006c24f Catch@1006c24f undefined Catch@1006c24f(void) 21 2 +1006c2a0 FUN_1006c2a0 undefined FUN_1006c2a0(void) 140 3 +1006c32c Catch@1006c32c undefined Catch@1006c32c(void) 33 2 +1006c350 FUN_1006c350 undefined FUN_1006c350(void) 38 1 +1006c380 FUN_1006c380 undefined FUN_1006c380(void) 167 3 SysFreeString +1006c430 FUN_1006c430 undefined FUN_1006c430(void) 67 1 +1006c480 FUN_1006c480 undefined FUN_1006c480(void) 64 1 +1006c4c0 FUN_1006c4c0 undefined FUN_1006c4c0(void) 122 2 +1006c540 FUN_1006c540 undefined FUN_1006c540(void) 112 2 +1006c5b0 FUN_1006c5b0 undefined FUN_1006c5b0(void) 112 2 +1006c620 FUN_1006c620 undefined FUN_1006c620(void) 103 2 +1006c690 FUN_1006c690 undefined FUN_1006c690(void) 114 2 +1006c710 FUN_1006c710 undefined FUN_1006c710(void) 104 1 +1006c780 FUN_1006c780 undefined FUN_1006c780(void) 104 1 +1006c7f0 FUN_1006c7f0 undefined FUN_1006c7f0(void) 104 1 +1006c860 FUN_1006c860 undefined FUN_1006c860(void) 103 2 +1006c8d0 FUN_1006c8d0 undefined FUN_1006c8d0(void) 103 2 +1006c940 FUN_1006c940 undefined FUN_1006c940(void) 103 2 +1006c9b0 FUN_1006c9b0 undefined FUN_1006c9b0(void) 263 2 +1006cac0 FUN_1006cac0 undefined FUN_1006cac0(void) 140 2 +1006cb50 FUN_1006cb50 undefined FUN_1006cb50(void) 103 2 +1006cbc0 FUN_1006cbc0 undefined FUN_1006cbc0(void) 729 17 CoCreateInstance +1006ce99 Catch@1006ce99 undefined Catch@1006ce99(void) 94 4 +1006cf0e Catch@1006cf0e undefined Catch@1006cf0e(void) 22 0 +1006cf26 Catch@1006cf26 undefined Catch@1006cf26(void) 115 6 +1006cf9e Catch@1006cf9e undefined Catch@1006cf9e(void) 73 3 +1006cff0 FUN_1006cff0 undefined FUN_1006cff0(void) 309 11 +1006d125 Catch@1006d125 undefined Catch@1006d125(void) 94 4 +1006d19a Catch@1006d19a undefined Catch@1006d19a(void) 22 0 +1006d1b2 Catch@1006d1b2 undefined Catch@1006d1b2(void) 115 6 +1006d22a Catch@1006d22a undefined Catch@1006d22a(void) 73 3 +1006d280 FUN_1006d280 undefined FUN_1006d280(void) 506 26 +1006d47a Catch@1006d47a undefined Catch@1006d47a(void) 94 4 +1006d4db FUN_1006d4db undefined FUN_1006d4db(void) 30 1 +1006d4f9 Catch@1006d4f9 undefined Catch@1006d4f9(void) 22 0 +1006d511 Catch@1006d511 undefined Catch@1006d511(void) 115 6 +1006d589 Catch@1006d589 undefined Catch@1006d589(void) 73 3 +1006d5e0 FUN_1006d5e0 undefined FUN_1006d5e0(void) 490 24 +1006d7ca Catch@1006d7ca undefined Catch@1006d7ca(void) 94 4 +1006d82b FUN_1006d82b undefined FUN_1006d82b(void) 30 1 +1006d849 Catch@1006d849 undefined Catch@1006d849(void) 22 0 +1006d861 Catch@1006d861 undefined Catch@1006d861(void) 115 6 +1006d8d9 Catch@1006d8d9 undefined Catch@1006d8d9(void) 73 3 +1006d930 FUN_1006d930 undefined FUN_1006d930(void) 183 4 +1006d9e7 Catch@1006d9e7 undefined Catch@1006d9e7(void) 94 4 +1006da5c Catch@1006da5c undefined Catch@1006da5c(void) 22 0 +1006da74 Catch@1006da74 undefined Catch@1006da74(void) 115 6 +1006daec Catch@1006daec undefined Catch@1006daec(void) 73 3 +1006db40 FUN_1006db40 undefined FUN_1006db40(void) 160 4 +1006dbe0 Catch@1006dbe0 undefined Catch@1006dbe0(void) 94 4 +1006dc55 Catch@1006dc55 undefined Catch@1006dc55(void) 22 0 +1006dc6d Catch@1006dc6d undefined Catch@1006dc6d(void) 115 6 +1006dce5 Catch@1006dce5 undefined Catch@1006dce5(void) 73 3 +1006dd30 FUN_1006dd30 undefined FUN_1006dd30(void) 400 10 +1006dec0 Catch@1006dec0 undefined Catch@1006dec0(void) 94 4 +1006df21 FUN_1006df21 undefined FUN_1006df21(void) 30 1 +1006df3f Catch@1006df3f undefined Catch@1006df3f(void) 22 0 +1006df57 Catch@1006df57 undefined Catch@1006df57(void) 115 6 +1006dfcf Catch@1006dfcf undefined Catch@1006dfcf(void) 73 3 +1006e020 FUN_1006e020 undefined FUN_1006e020(void) 238 6 +1006e10e Catch@1006e10e undefined Catch@1006e10e(void) 17 0 +1006e149 Catch@1006e149 undefined Catch@1006e149(void) 94 4 +1006e1be Catch@1006e1be undefined Catch@1006e1be(void) 22 0 +1006e1d6 Catch@1006e1d6 undefined Catch@1006e1d6(void) 115 6 +1006e24e Catch@1006e24e undefined Catch@1006e24e(void) 73 3 +1006e2a0 FUN_1006e2a0 undefined FUN_1006e2a0(void) 101 1 +1006e310 FUN_1006e310 undefined FUN_1006e310(void) 146 4 +1006e3a2 Catch@1006e3a2 undefined Catch@1006e3a2(void) 94 4 +1006e417 Catch@1006e417 undefined Catch@1006e417(void) 22 0 +1006e42f Catch@1006e42f undefined Catch@1006e42f(void) 115 6 +1006e4a7 Catch@1006e4a7 undefined Catch@1006e4a7(void) 73 3 +1006e4f0 FUN_1006e4f0 undefined FUN_1006e4f0(void) 159 4 +1006e58f Catch@1006e58f undefined Catch@1006e58f(void) 94 4 +1006e604 Catch@1006e604 undefined Catch@1006e604(void) 22 0 +1006e61c Catch@1006e61c undefined Catch@1006e61c(void) 115 6 +1006e694 Catch@1006e694 undefined Catch@1006e694(void) 73 3 +1006e6e0 FUN_1006e6e0 undefined FUN_1006e6e0(void) 148 3 +1006e774 Catch@1006e774 undefined Catch@1006e774(void) 94 4 +1006e7e9 Catch@1006e7e9 undefined Catch@1006e7e9(void) 22 0 +1006e801 Catch@1006e801 undefined Catch@1006e801(void) 115 6 +1006e879 Catch@1006e879 undefined Catch@1006e879(void) 73 3 +1006e8d0 FUN_1006e8d0 undefined FUN_1006e8d0(void) 136 3 +1006e958 Catch@1006e958 undefined Catch@1006e958(void) 94 4 +1006e9cd Catch@1006e9cd undefined Catch@1006e9cd(void) 22 0 +1006e9e5 Catch@1006e9e5 undefined Catch@1006e9e5(void) 115 6 +1006ea5d Catch@1006ea5d undefined Catch@1006ea5d(void) 73 3 +1006eab0 FUN_1006eab0 undefined FUN_1006eab0(void) 596 16 SysFreeString +1006ed04 Catch@1006ed04 undefined Catch@1006ed04(void) 97 4 +1006ed68 FUN_1006ed68 undefined FUN_1006ed68(void) 30 1 +1006ed86 Catch@1006ed86 undefined Catch@1006ed86(void) 25 0 +1006eda1 Catch@1006eda1 undefined Catch@1006eda1(void) 118 6 +1006ee1c Catch@1006ee1c undefined Catch@1006ee1c(void) 73 3 +1006ee70 FUN_1006ee70 undefined FUN_1006ee70(void) 161 3 +1006ef11 Catch@1006ef11 undefined Catch@1006ef11(void) 94 4 +1006ef86 Catch@1006ef86 undefined Catch@1006ef86(void) 22 0 +1006ef9e Catch@1006ef9e undefined Catch@1006ef9e(void) 115 6 +1006f016 Catch@1006f016 undefined Catch@1006f016(void) 73 3 +1006f060 FUN_1006f060 undefined FUN_1006f060(void) 161 3 +1006f101 Catch@1006f101 undefined Catch@1006f101(void) 94 4 +1006f176 Catch@1006f176 undefined Catch@1006f176(void) 22 0 +1006f18e Catch@1006f18e undefined Catch@1006f18e(void) 115 6 +1006f206 Catch@1006f206 undefined Catch@1006f206(void) 73 3 +1006f250 FUN_1006f250 undefined FUN_1006f250(void) 147 3 +1006f2e3 Catch@1006f2e3 undefined Catch@1006f2e3(void) 94 4 +1006f358 Catch@1006f358 undefined Catch@1006f358(void) 22 0 +1006f370 Catch@1006f370 undefined Catch@1006f370(void) 115 6 +1006f3e8 Catch@1006f3e8 undefined Catch@1006f3e8(void) 73 3 +1006f440 FUN_1006f440 undefined FUN_1006f440(void) 152 5 SysAllocString +1006f4d8 Catch@1006f4d8 undefined Catch@1006f4d8(void) 94 4 +1006f54d Catch@1006f54d undefined Catch@1006f54d(void) 22 0 +1006f565 Catch@1006f565 undefined Catch@1006f565(void) 115 6 +1006f5dd Catch@1006f5dd undefined Catch@1006f5dd(void) 73 3 +1006f630 FUN_1006f630 undefined FUN_1006f630(void) 373 10 SysAllocString +1006f7a5 Catch@1006f7a5 undefined Catch@1006f7a5(void) 94 4 +1006f806 FUN_1006f806 undefined FUN_1006f806(void) 30 1 +1006f824 Catch@1006f824 undefined Catch@1006f824(void) 22 0 +1006f83c Catch@1006f83c undefined Catch@1006f83c(void) 115 6 +1006f8b4 Catch@1006f8b4 undefined Catch@1006f8b4(void) 73 3 +1006f900 FUN_1006f900 undefined FUN_1006f900(void) 373 10 SysAllocString +1006fa75 Catch@1006fa75 undefined Catch@1006fa75(void) 94 4 +1006fad6 FUN_1006fad6 undefined FUN_1006fad6(void) 30 1 +1006faf4 Catch@1006faf4 undefined Catch@1006faf4(void) 22 0 +1006fb0c Catch@1006fb0c undefined Catch@1006fb0c(void) 115 6 +1006fb84 Catch@1006fb84 undefined Catch@1006fb84(void) 73 3 +1006fbd0 FUN_1006fbd0 undefined FUN_1006fbd0(void) 402 10 SysAllocString +1006fd62 Catch@1006fd62 undefined Catch@1006fd62(void) 94 4 +1006fdc3 FUN_1006fdc3 undefined FUN_1006fdc3(void) 30 1 +1006fde1 Catch@1006fde1 undefined Catch@1006fde1(void) 22 0 +1006fdf9 Catch@1006fdf9 undefined Catch@1006fdf9(void) 115 6 +1006fe71 Catch@1006fe71 undefined Catch@1006fe71(void) 73 3 +1006fec0 FUN_1006fec0 undefined FUN_1006fec0(void) 257 6 SysAllocString +1006ffc1 Catch@1006ffc1 undefined Catch@1006ffc1(void) 94 4 +10070036 Catch@10070036 undefined Catch@10070036(void) 22 0 +1007004e Catch@1007004e undefined Catch@1007004e(void) 115 6 +100700c6 Catch@100700c6 undefined Catch@100700c6(void) 73 3 +10070110 FUN_10070110 undefined FUN_10070110(void) 257 6 SysAllocString +10070211 Catch@10070211 undefined Catch@10070211(void) 94 4 +10070286 Catch@10070286 undefined Catch@10070286(void) 22 0 +1007029e Catch@1007029e undefined Catch@1007029e(void) 115 6 +10070316 Catch@10070316 undefined Catch@10070316(void) 73 3 +10070360 FUN_10070360 undefined FUN_10070360(void) 4232 29 SysFreeString +10071410 FUN_10071410 undefined FUN_10071410(void) 137 3 +10071499 Catch@10071499 undefined Catch@10071499(void) 94 4 +1007150e Catch@1007150e undefined Catch@1007150e(void) 22 0 +10071526 Catch@10071526 undefined Catch@10071526(void) 115 6 +1007159e Catch@1007159e undefined Catch@1007159e(void) 73 3 +100715f0 FUN_100715f0 undefined FUN_100715f0(void) 170 3 +1007169a Catch@1007169a undefined Catch@1007169a(void) 94 4 +1007170f Catch@1007170f undefined Catch@1007170f(void) 22 0 +10071727 Catch@10071727 undefined Catch@10071727(void) 115 6 +1007179f Catch@1007179f undefined Catch@1007179f(void) 73 3 +100717f0 FUN_100717f0 undefined FUN_100717f0(void) 132 2 +10071874 Catch@10071874 undefined Catch@10071874(void) 94 4 +100718e9 Catch@100718e9 undefined Catch@100718e9(void) 22 0 +10071901 Catch@10071901 undefined Catch@10071901(void) 115 6 +10071979 Catch@10071979 undefined Catch@10071979(void) 73 3 +100719d0 FUN_100719d0 undefined FUN_100719d0(void) 191 5 SysAllocString +10071a8f Catch@10071a8f undefined Catch@10071a8f(void) 94 4 +10071b04 Catch@10071b04 undefined Catch@10071b04(void) 22 0 +10071b1c Catch@10071b1c undefined Catch@10071b1c(void) 115 6 +10071b94 Catch@10071b94 undefined Catch@10071b94(void) 73 3 +10071be0 FUN_10071be0 undefined FUN_10071be0(void) 147 3 +10071c73 Catch@10071c73 undefined Catch@10071c73(void) 94 4 +10071ce8 Catch@10071ce8 undefined Catch@10071ce8(void) 22 0 +10071d00 Catch@10071d00 undefined Catch@10071d00(void) 115 6 +10071d78 Catch@10071d78 undefined Catch@10071d78(void) 73 3 +10071dd0 FUN_10071dd0 undefined FUN_10071dd0(void) 226 8 +10071eb2 Catch@10071eb2 undefined Catch@10071eb2(void) 94 4 +10071f13 FUN_10071f13 undefined FUN_10071f13(void) 30 1 +10071f31 Catch@10071f31 undefined Catch@10071f31(void) 22 0 +10071f49 Catch@10071f49 undefined Catch@10071f49(void) 115 6 +10071fc1 Catch@10071fc1 undefined Catch@10071fc1(void) 73 3 +10072010 FUN_10072010 undefined FUN_10072010(void) 185 4 +100720c9 Catch@100720c9 undefined Catch@100720c9(void) 94 4 +1007213e Catch@1007213e undefined Catch@1007213e(void) 22 0 +10072156 Catch@10072156 undefined Catch@10072156(void) 115 6 +100721ce Catch@100721ce undefined Catch@100721ce(void) 73 3 +10072220 FUN_10072220 undefined FUN_10072220(void) 202 6 +100722ea Catch@100722ea undefined Catch@100722ea(void) 94 4 +1007235f Catch@1007235f undefined Catch@1007235f(void) 22 0 +10072377 Catch@10072377 undefined Catch@10072377(void) 115 6 +100723ef Catch@100723ef undefined Catch@100723ef(void) 73 3 +10072440 FUN_10072440 undefined FUN_10072440(void) 143 2 +100724cf Catch@100724cf undefined Catch@100724cf(void) 94 4 +10072544 Catch@10072544 undefined Catch@10072544(void) 22 0 +1007255c Catch@1007255c undefined Catch@1007255c(void) 115 6 +100725d4 Catch@100725d4 undefined Catch@100725d4(void) 73 3 +10072620 FUN_10072620 undefined FUN_10072620(void) 287 3 +10072740 FUN_10072740 undefined FUN_10072740(void) 546 4 +10072970 FUN_10072970 undefined FUN_10072970(void) 203 3 +10072a3b Catch@10072a3b undefined Catch@10072a3b(void) 94 4 +10072ab0 Catch@10072ab0 undefined Catch@10072ab0(void) 22 0 +10072ac8 Catch@10072ac8 undefined Catch@10072ac8(void) 115 6 +10072b40 Catch@10072b40 undefined Catch@10072b40(void) 73 3 +10072b90 FUN_10072b90 undefined FUN_10072b90(void) 264 7 +10072c98 Catch@10072c98 undefined Catch@10072c98(void) 94 4 +10072d0d Catch@10072d0d undefined Catch@10072d0d(void) 22 0 +10072d25 Catch@10072d25 undefined Catch@10072d25(void) 115 6 +10072d9d Catch@10072d9d undefined Catch@10072d9d(void) 73 3 +10072df0 FUN_10072df0 undefined FUN_10072df0(void) 422 9 SysFreeString +10072fa0 FUN_10072fa0 undefined FUN_10072fa0(void) 494 11 +10073190 FUN_10073190 undefined FUN_10073190(void) 644 20 +10073420 FUN_10073420 undefined FUN_10073420(void) 214 10 +10073500 FUN_10073500 undefined FUN_10073500(void) 175 3 +100735b0 FUN_100735b0 undefined FUN_100735b0(void) 175 3 +10073660 FUN_10073660 undefined FUN_10073660(void) 175 3 +10073710 FUN_10073710 undefined FUN_10073710(void) 690 8 +100739d0 FUN_100739d0 undefined FUN_100739d0(void) 175 3 +10073a80 FUN_10073a80 undefined FUN_10073a80(void) 24 1 +10073aa0 FUN_10073aa0 undefined FUN_10073aa0(void) 43 1 +10073ad0 FUN_10073ad0 undefined FUN_10073ad0(void) 165 3 +10073b80 FUN_10073b80 undefined FUN_10073b80(void) 2913 31 SysFreeString +100746f0 FUN_100746f0 undefined FUN_100746f0(void) 38 2 +10074720 FUN_10074720 undefined FUN_10074720(void) 38 1 +10074750 FUN_10074750 undefined FUN_10074750(void) 37 1 +10074780 FUN_10074780 undefined FUN_10074780(void) 32 1 +100747a0 FUN_100747a0 undefined FUN_100747a0(void) 112 2 +10074810 FUN_10074810 undefined FUN_10074810(void) 69 1 +10074860 FUN_10074860 undefined FUN_10074860(void) 66 1 +100748b0 FUN_100748b0 undefined FUN_100748b0(void) 124 2 +10074930 FUN_10074930 undefined FUN_10074930(void) 231 4 +10074a20 FUN_10074a20 undefined FUN_10074a20(void) 114 2 +10074aa0 FUN_10074aa0 undefined FUN_10074aa0(void) 114 2 +10074b20 FUN_10074b20 undefined FUN_10074b20(void) 642 3 +10074db0 FUN_10074db0 undefined FUN_10074db0(void) 155 2 +10074e50 FUN_10074e50 undefined FUN_10074e50(void) 104 1 +10074ec0 FUN_10074ec0 undefined FUN_10074ec0(void) 104 1 +10074f30 FUN_10074f30 undefined FUN_10074f30(void) 112 2 +10074fa0 FUN_10074fa0 undefined FUN_10074fa0(void) 104 1 +10075010 FUN_10075010 undefined FUN_10075010(void) 491 7 CoCreateInstance +10075200 FUN_10075200 undefined FUN_10075200(void) 393 3 +10075390 FUN_10075390 undefined FUN_10075390(void) 33 2 +100753c0 FUN_100753c0 undefined FUN_100753c0(void) 639 8 +10075640 FUN_10075640 undefined FUN_10075640(void) 353 7 +100757b0 FUN_100757b0 undefined FUN_100757b0(void) 1472 22 SysFreeString +10075d80 FUN_10075d80 undefined FUN_10075d80(void) 1757 22 CoCreateInstance;SysFreeString +10076460 FUN_10076460 undefined FUN_10076460(void) 97 3 +100764d0 FUN_100764d0 undefined FUN_100764d0(void) 103 2 +10076540 FUN_10076540 undefined FUN_10076540(void) 187 2 +10076600 FUN_10076600 undefined FUN_10076600(void) 31 1 +10076620 FUN_10076620 undefined FUN_10076620(void) 43 1 +10076650 FUN_10076650 undefined FUN_10076650(void) 690 8 +10076910 FUN_10076910 undefined FUN_10076910(void) 165 3 +100769c0 FUN_100769c0 undefined FUN_100769c0(void) 64 1 +10076a00 FUN_10076a00 undefined FUN_10076a00(void) 67 1 +10076a50 FUN_10076a50 undefined FUN_10076a50(void) 122 2 +10076ad0 FUN_10076ad0 undefined FUN_10076ad0(void) 112 2 +10076b40 FUN_10076b40 undefined FUN_10076b40(void) 112 2 +10076bb0 FUN_10076bb0 undefined FUN_10076bb0(void) 226 4 +10076ca0 FUN_10076ca0 undefined FUN_10076ca0(void) 169 1 +10076d60 FUN_10076d60 undefined FUN_10076d60(void) 174 1 +10076e10 FUN_10076e10 undefined FUN_10076e10(void) 16 0 +10076e20 FUN_10076e20 undefined FUN_10076e20(void) 35 0 +10076e50 FUN_10076e50 undefined FUN_10076e50(void) 33 2 +10076e80 FUN_10076e80 undefined FUN_10076e80(void) 10 1 +10076e90 FUN_10076e90 undefined FUN_10076e90(void) 10 1 +10076ea0 FUN_10076ea0 undefined FUN_10076ea0(void) 10 1 +10076eb0 FUN_10076eb0 undefined FUN_10076eb0(void) 10 1 +10076ec0 FUN_10076ec0 undefined FUN_10076ec0(void) 10 1 +10076ed0 FUN_10076ed0 undefined FUN_10076ed0(void) 10 1 +10076ee0 FUN_10076ee0 undefined FUN_10076ee0(void) 10 1 +10076ef0 FUN_10076ef0 undefined FUN_10076ef0(void) 10 1 +10076f00 FUN_10076f00 undefined FUN_10076f00(void) 10 1 +10076f10 FUN_10076f10 undefined FUN_10076f10(void) 10 1 +10076f20 FUN_10076f20 undefined FUN_10076f20(void) 10 1 +10076f30 FUN_10076f30 undefined FUN_10076f30(void) 10 1 +10076f40 FUN_10076f40 undefined FUN_10076f40(void) 10 1 +10076f50 FUN_10076f50 undefined FUN_10076f50(void) 10 1 +10076f60 FUN_10076f60 undefined FUN_10076f60(void) 10 1 +10076f70 FUN_10076f70 undefined FUN_10076f70(void) 10 1 +10076f80 FUN_10076f80 undefined FUN_10076f80(void) 10 1 +10076f90 FUN_10076f90 undefined FUN_10076f90(void) 10 1 +10076fa0 FUN_10076fa0 undefined FUN_10076fa0(void) 10 1 +10076fb0 FUN_10076fb0 undefined FUN_10076fb0(void) 10 1 +10076fc0 FUN_10076fc0 undefined FUN_10076fc0(void) 27 1 AtlInternalQueryInterface +10076fe0 FUN_10076fe0 undefined FUN_10076fe0(void) 30 1 AtlInternalQueryInterface +10077000 FUN_10077000 undefined FUN_10077000(void) 10 1 +10077010 FUN_10077010 undefined FUN_10077010(void) 10 1 +10077020 FUN_10077020 undefined FUN_10077020(void) 10 1 +10077030 FUN_10077030 undefined FUN_10077030(void) 10 1 +10077040 FUN_10077040 undefined FUN_10077040(void) 10 1 +10077050 FUN_10077050 undefined FUN_10077050(void) 10 1 +10077060 FUN_10077060 undefined FUN_10077060(void) 10 1 +10077070 FUN_10077070 undefined FUN_10077070(void) 10 1 +10077080 FUN_10077080 undefined FUN_10077080(void) 10 1 +10077090 FUN_10077090 undefined FUN_10077090(void) 10 1 +100770a0 FUN_100770a0 undefined FUN_100770a0(void) 190 4 +1007712f Catch@1007712f undefined Catch@1007712f(void) 21 2 +10077180 FUN_10077180 undefined FUN_10077180(void) 190 4 +1007720f Catch@1007720f undefined Catch@1007720f(void) 21 2 +10077260 FUN_10077260 undefined FUN_10077260(void) 65 1 +100772b0 FUN_100772b0 undefined FUN_100772b0(void) 690 8 +10077570 FUN_10077570 undefined FUN_10077570(void) 165 3 +10077620 FUN_10077620 undefined FUN_10077620(void) 190 4 +100776af Catch@100776af undefined Catch@100776af(void) 21 2 +10077700 FUN_10077700 undefined FUN_10077700(void) 103 2 +10077770 FUN_10077770 undefined FUN_10077770(void) 1136 20 +10077be0 FUN_10077be0 undefined FUN_10077be0(void) 722 12 +10077ec0 FUN_10077ec0 undefined FUN_10077ec0(void) 1173 23 +10078360 FUN_10078360 undefined FUN_10078360(void) 175 3 +10078410 FUN_10078410 undefined FUN_10078410(void) 730 9 +100786f0 FUN_100786f0 undefined FUN_100786f0(void) 24 1 +10078710 FUN_10078710 undefined FUN_10078710(void) 73 2 +10078760 FUN_10078760 undefined FUN_10078760(void) 74 3 +100787b0 FUN_100787b0 undefined FUN_100787b0(void) 187 2 +10078870 FUN_10078870 undefined FUN_10078870(void) 251 6 +1007896b Catch@1007896b undefined Catch@1007896b(void) 21 2 +10078990 FUN_10078990 undefined FUN_10078990(void) 799 8 +10078cb0 FUN_10078cb0 undefined FUN_10078cb0(void) 698 8 +10078f70 FUN_10078f70 undefined FUN_10078f70(void) 690 8 +10079230 FUN_10079230 undefined FUN_10079230(void) 43 1 +10079260 FUN_10079260 undefined FUN_10079260(void) 690 8 +10079520 FUN_10079520 undefined FUN_10079520(void) 127 3 +100795a0 FUN_100795a0 undefined FUN_100795a0(void) 222 4 +10079690 FUN_10079690 undefined FUN_10079690(void) 167 3 +10079740 FUN_10079740 undefined FUN_10079740(void) 165 3 +100797f0 FUN_100797f0 undefined FUN_100797f0(void) 165 3 +100798a0 FUN_100798a0 undefined FUN_100798a0(void) 38 2 +100798d0 FUN_100798d0 undefined FUN_100798d0(void) 38 2 +10079900 FUN_10079900 undefined FUN_10079900(void) 38 2 +10079930 FUN_10079930 undefined FUN_10079930(void) 151 3 +100799c7 Catch@100799c7 undefined Catch@100799c7(void) 13 0 +100799dd FUN_100799dd undefined FUN_100799dd(void) 55 0 +10079a20 FUN_10079a20 undefined FUN_10079a20(void) 88 2 +10079a80 FUN_10079a80 undefined FUN_10079a80(void) 43 1 +10079ab0 FUN_10079ab0 undefined FUN_10079ab0(void) 165 2 +10079b55 Catch@10079b55 undefined Catch@10079b55(void) 21 2 +10079b70 FUN_10079b70 undefined FUN_10079b70(void) 223 3 +10079c50 FUN_10079c50 undefined FUN_10079c50(void) 233 3 +10079d40 FUN_10079d40 undefined FUN_10079d40(void) 560 16 +10079f80 FUN_10079f80 undefined FUN_10079f80(void) 560 16 +1007a1c0 FUN_1007a1c0 undefined FUN_1007a1c0(void) 428 10 +1007a370 FUN_1007a370 undefined FUN_1007a370(void) 380 10 +1007a4f0 FUN_1007a4f0 undefined FUN_1007a4f0(void) 103 2 +1007a560 FUN_1007a560 undefined FUN_1007a560(void) 74 3 +1007a5b0 FUN_1007a5b0 undefined FUN_1007a5b0(void) 24 1 +1007a5d0 FUN_1007a5d0 undefined FUN_1007a5d0(void) 121 2 +1007a650 FUN_1007a650 undefined FUN_1007a650(void) 187 2 +1007a710 FUN_1007a710 undefined FUN_1007a710(void) 43 1 +1007a740 FUN_1007a740 undefined FUN_1007a740(void) 43 1 +1007a770 FUN_1007a770 undefined FUN_1007a770(void) 43 1 +1007a7a0 FUN_1007a7a0 undefined FUN_1007a7a0(void) 43 1 +1007a7d0 FUN_1007a7d0 undefined FUN_1007a7d0(void) 43 1 +1007a800 FUN_1007a800 undefined FUN_1007a800(void) 56 1 +1007a840 FUN_1007a840 undefined FUN_1007a840(void) 64 1 +1007a880 FUN_1007a880 undefined FUN_1007a880(void) 187 2 +1007a940 FUN_1007a940 undefined FUN_1007a940(void) 119 1 +1007a9c0 FUN_1007a9c0 undefined FUN_1007a9c0(void) 103 2 +1007aa30 FUN_1007aa30 undefined FUN_1007aa30(void) 125 2 +1007aab0 FUN_1007aab0 undefined FUN_1007aab0(void) 1577 17 SysFreeString +1007afe1 Catch@1007afe1 undefined Catch@1007afe1(void) 185 4 +1007b1a0 FUN_1007b1a0 undefined FUN_1007b1a0(void) 1132 15 SysFreeString +1007b52d Catch@1007b52d undefined Catch@1007b52d(void) 13 0 +1007b620 FUN_1007b620 undefined FUN_1007b620(void) 1214 13 SysFreeString +1007bae0 FUN_1007bae0 undefined FUN_1007bae0(void) 1120 13 SysFreeString +1007bf40 FUN_1007bf40 undefined FUN_1007bf40(void) 657 9 +1007c1f0 FUN_1007c1f0 undefined FUN_1007c1f0(void) 175 3 +1007c2a0 FUN_1007c2a0 undefined FUN_1007c2a0(void) 103 2 +1007c310 FUN_1007c310 undefined FUN_1007c310(void) 206 4 +1007c3e0 FUN_1007c3e0 undefined FUN_1007c3e0(void) 24 1 +1007c400 FUN_1007c400 undefined FUN_1007c400(void) 203 2 +1007c4d0 FUN_1007c4d0 undefined FUN_1007c4d0(void) 187 2 +1007c590 FUN_1007c590 undefined FUN_1007c590(void) 187 2 +1007c650 FUN_1007c650 undefined FUN_1007c650(void) 187 2 +1007c710 FUN_1007c710 undefined FUN_1007c710(void) 187 2 +1007c7d0 FUN_1007c7d0 undefined FUN_1007c7d0(void) 21 1 +1007c7f0 FUN_1007c7f0 undefined FUN_1007c7f0(void) 66 1 +1007c840 FUN_1007c840 undefined FUN_1007c840(void) 24 1 +1007c860 FUN_1007c860 undefined FUN_1007c860(void) 195 4 +1007c8f4 Catch@1007c8f4 undefined Catch@1007c8f4(void) 28 2 +1007c940 FUN_1007c940 undefined FUN_1007c940(void) 195 3 +1007ca10 FUN_1007ca10 undefined FUN_1007ca10(void) 144 2 +1007caa0 FUN_1007caa0 undefined FUN_1007caa0(void) 103 2 +1007cb10 FUN_1007cb10 undefined FUN_1007cb10(void) 820 30 +1007ce44 Catch@1007ce44 undefined Catch@1007ce44(void) 99 3 +1007cec2 Catch@1007cec2 undefined Catch@1007cec2(void) 106 4 +1007cf32 FUN_1007cf32 undefined FUN_1007cf32(void) 30 1 +1007cf50 Catch@1007cf50 undefined Catch@1007cf50(void) 28 0 +1007cf6e Catch@1007cf6e undefined Catch@1007cf6e(void) 127 6 +1007cff2 Catch@1007cff2 undefined Catch@1007cff2(void) 76 3 +1007d040 FUN_1007d040 undefined FUN_1007d040(void) 186 6 +1007d0fa Catch@1007d0fa undefined Catch@1007d0fa(void) 94 4 +1007d16f Catch@1007d16f undefined Catch@1007d16f(void) 22 0 +1007d187 Catch@1007d187 undefined Catch@1007d187(void) 115 6 +1007d1ff Catch@1007d1ff undefined Catch@1007d1ff(void) 73 3 +1007d250 FUN_1007d250 undefined FUN_1007d250(void) 182 6 +1007d306 Catch@1007d306 undefined Catch@1007d306(void) 94 4 +1007d37b Catch@1007d37b undefined Catch@1007d37b(void) 22 0 +1007d393 Catch@1007d393 undefined Catch@1007d393(void) 115 6 +1007d40b Catch@1007d40b undefined Catch@1007d40b(void) 73 3 +1007d460 FUN_1007d460 undefined FUN_1007d460(void) 776 10 CoCreateInstance;SysAllocString;SysFreeString +1007d770 FUN_1007d770 undefined FUN_1007d770(void) 103 2 +1007d7e0 FUN_1007d7e0 undefined FUN_1007d7e0(void) 114 2 +1007d860 FUN_1007d860 undefined FUN_1007d860(void) 114 2 +1007d8e0 FUN_1007d8e0 undefined FUN_1007d8e0(void) 175 3 +1007d990 FUN_1007d990 undefined FUN_1007d990(void) 103 2 +1007da00 FUN_1007da00 undefined FUN_1007da00(void) 24 1 +1007da20 FUN_1007da20 undefined FUN_1007da20(void) 24 1 +1007da40 FUN_1007da40 undefined FUN_1007da40(void) 24 1 +1007da60 FUN_1007da60 undefined FUN_1007da60(void) 24 1 +1007da80 FUN_1007da80 undefined FUN_1007da80(void) 24 1 +1007daa0 FUN_1007daa0 undefined FUN_1007daa0(void) 64 1 +1007dae0 FUN_1007dae0 undefined FUN_1007dae0(void) 103 2 +1007db50 FUN_1007db50 undefined FUN_1007db50(void) 77 1 +1007dba0 FUN_1007dba0 undefined FUN_1007dba0(void) 175 3 +1007dc50 FUN_1007dc50 undefined FUN_1007dc50(void) 103 2 +1007dcc0 FUN_1007dcc0 undefined FUN_1007dcc0(void) 495 15 SysFreeString +1007deaf Catch@1007deaf undefined Catch@1007deaf(void) 94 4 +1007df24 Catch@1007df24 undefined Catch@1007df24(void) 22 0 +1007df3c Catch@1007df3c undefined Catch@1007df3c(void) 115 6 +1007dfb4 Catch@1007dfb4 undefined Catch@1007dfb4(void) 73 3 +1007e000 FUN_1007e000 undefined FUN_1007e000(void) 575 23 SysFreeString +1007e23f Catch@1007e23f undefined Catch@1007e23f(void) 106 4 +1007e2af FUN_1007e2af undefined FUN_1007e2af(void) 30 1 +1007e2cd Catch@1007e2cd undefined Catch@1007e2cd(void) 28 0 +1007e2eb Catch@1007e2eb undefined Catch@1007e2eb(void) 133 6 +1007e375 Catch@1007e375 undefined Catch@1007e375(void) 82 3 +1007e3d0 FUN_1007e3d0 undefined FUN_1007e3d0(void) 114 2 +1007e450 FUN_1007e450 undefined FUN_1007e450(void) 114 2 +1007e4d0 FUN_1007e4d0 undefined FUN_1007e4d0(void) 103 2 +1007e540 FUN_1007e540 undefined FUN_1007e540(void) 103 2 +1007e5b0 FUN_1007e5b0 undefined FUN_1007e5b0(void) 103 2 +1007e620 FUN_1007e620 undefined FUN_1007e620(void) 103 2 +1007e690 FUN_1007e690 undefined FUN_1007e690(void) 175 3 +1007e740 FUN_1007e740 undefined FUN_1007e740(void) 103 2 +1007e7b0 FUN_1007e7b0 undefined FUN_1007e7b0(void) 739 8 +1007eaa0 FUN_1007eaa0 undefined FUN_1007eaa0(void) 222 3 +1007eb90 FUN_1007eb90 undefined FUN_1007eb90(void) 77 1 +1007ebe0 FUN_1007ebe0 undefined FUN_1007ebe0(void) 137 2 +1007ec70 FUN_1007ec70 undefined FUN_1007ec70(void) 103 2 +1007ece0 FUN_1007ece0 undefined FUN_1007ece0(void) 92 1 +1007ed40 FUN_1007ed40 undefined FUN_1007ed40(void) 92 1 +1007eda0 FUN_1007eda0 undefined FUN_1007eda0(void) 92 1 +1007ee00 FUN_1007ee00 undefined FUN_1007ee00(void) 92 1 +1007ee60 FUN_1007ee60 undefined FUN_1007ee60(void) 103 2 +1007eed0 FUN_1007eed0 undefined FUN_1007eed0(void) 103 2 +1007ef40 FUN_1007ef40 undefined FUN_1007ef40(void) 103 2 +1007efb0 FUN_1007efb0 undefined FUN_1007efb0(void) 103 2 +1007f020 FUN_1007f020 undefined FUN_1007f020(void) 103 2 +1007f090 FUN_1007f090 undefined FUN_1007f090(void) 184 3 +1007f150 FUN_1007f150 undefined FUN_1007f150(void) 175 3 +1007f200 FUN_1007f200 undefined FUN_1007f200(void) 175 3 +1007f2b0 FUN_1007f2b0 undefined FUN_1007f2b0(void) 175 3 +1007f360 FUN_1007f360 undefined FUN_1007f360(void) 175 3 +1007f410 FUN_1007f410 undefined FUN_1007f410(void) 43 1 +1007f440 FUN_1007f440 undefined FUN_1007f440(void) 92 1 +1007f4a0 FUN_1007f4a0 undefined FUN_1007f4a0(void) 92 1 +1007f500 FUN_1007f500 undefined FUN_1007f500(void) 112 2 +1007f570 FUN_1007f570 undefined FUN_1007f570(void) 133 2 +1007f600 FUN_1007f600 undefined FUN_1007f600(void) 92 1 +1007f660 FUN_1007f660 undefined FUN_1007f660(void) 92 1 +1007f6c0 FUN_1007f6c0 undefined FUN_1007f6c0(void) 92 1 +1007f720 FUN_1007f720 undefined FUN_1007f720(void) 175 3 +1007f7d0 FUN_1007f7d0 undefined FUN_1007f7d0(void) 103 2 +1007f840 FUN_1007f840 undefined FUN_1007f840(void) 175 3 +1007f8f0 FUN_1007f8f0 undefined FUN_1007f8f0(void) 103 2 +1007f960 FUN_1007f960 undefined FUN_1007f960(void) 187 2 +1007fa20 FUN_1007fa20 undefined FUN_1007fa20(void) 92 1 +1007fa80 FUN_1007fa80 undefined FUN_1007fa80(void) 102 1 +1007faf0 FUN_1007faf0 undefined FUN_1007faf0(void) 114 2 +1007fb70 FUN_1007fb70 undefined FUN_1007fb70(void) 152 2 +1007fc10 FUN_1007fc10 undefined FUN_1007fc10(void) 104 1 +1007fc80 FUN_1007fc80 undefined FUN_1007fc80(void) 104 1 +1007fcf0 FUN_1007fcf0 undefined FUN_1007fcf0(void) 104 1 +1007fd60 FUN_1007fd60 undefined FUN_1007fd60(void) 24 1 +1007fd80 FUN_1007fd80 undefined FUN_1007fd80(void) 112 2 +1007fdf0 FUN_1007fdf0 undefined FUN_1007fdf0(void) 642 3 +10080080 FUN_10080080 undefined FUN_10080080(void) 131 2 +10080110 FUN_10080110 undefined FUN_10080110(void) 104 1 +10080180 FUN_10080180 undefined FUN_10080180(void) 104 1 +100801f0 FUN_100801f0 undefined FUN_100801f0(void) 104 1 +10080260 FUN_10080260 undefined FUN_10080260(void) 103 2 +100802d0 FUN_100802d0 undefined FUN_100802d0(void) 690 8 +10080590 FUN_10080590 undefined FUN_10080590(void) 165 3 +10080640 FUN_10080640 undefined FUN_10080640(void) 133 2 +100806d0 FUN_100806d0 undefined FUN_100806d0(void) 231 4 +100807c0 FUN_100807c0 undefined FUN_100807c0(void) 190 4 +1008084f Catch@1008084f undefined Catch@1008084f(void) 21 2 +100808a0 FUN_100808a0 undefined FUN_100808a0(void) 190 4 +1008092f Catch@1008092f undefined Catch@1008092f(void) 21 2 +10080980 FUN_10080980 undefined FUN_10080980(void) 190 4 +10080a0f Catch@10080a0f undefined Catch@10080a0f(void) 21 2 +10080a60 FUN_10080a60 undefined FUN_10080a60(void) 103 2 +10080ad0 FUN_10080ad0 undefined FUN_10080ad0(void) 184 3 +10080b90 FUN_10080b90 undefined FUN_10080b90(void) 109 3 +10080c00 FUN_10080c00 undefined FUN_10080c00(void) 175 3 +10080cb0 FUN_10080cb0 undefined FUN_10080cb0(void) 43 1 +10080ce0 FUN_10080ce0 undefined FUN_10080ce0(void) 38 2 +10080d10 FUN_10080d10 undefined FUN_10080d10(void) 38 2 +10080d40 FUN_10080d40 undefined FUN_10080d40(void) 131 2 +10080dd0 FUN_10080dd0 undefined FUN_10080dd0(void) 165 2 +10080e75 Catch@10080e75 undefined Catch@10080e75(void) 21 2 +10080e90 FUN_10080e90 undefined FUN_10080e90(void) 324 4 CoCreateInstance +10080fe0 FUN_10080fe0 undefined FUN_10080fe0(void) 424 10 +10081190 FUN_10081190 undefined FUN_10081190(void) 333 9 +100812e0 FUN_100812e0 undefined FUN_100812e0(void) 187 2 +100813a0 FUN_100813a0 undefined FUN_100813a0(void) 713 8 +10081670 FUN_10081670 undefined FUN_10081670(void) 192 3 +10081740 FUN_10081740 undefined FUN_10081740(void) 119 1 +100817c0 FUN_100817c0 undefined FUN_100817c0(void) 22 1 +100817e0 FUN_100817e0 undefined FUN_100817e0(void) 24 1 +10081800 FUN_10081800 undefined FUN_10081800(void) 43 1 +10081830 FUN_10081830 undefined FUN_10081830(void) 195 4 +100818c4 Catch@100818c4 undefined Catch@100818c4(void) 28 2 +10081910 FUN_10081910 undefined FUN_10081910(void) 103 2 +10081980 FUN_10081980 undefined FUN_10081980(void) 187 2 +10081a40 FUN_10081a40 undefined FUN_10081a40(void) 77 1 +10081a90 FUN_10081a90 undefined FUN_10081a90(void) 103 2 +10081b00 FUN_10081b00 undefined FUN_10081b00(void) 103 2 +10081b70 FUN_10081b70 undefined FUN_10081b70(void) 114 2 +10081bf0 FUN_10081bf0 undefined FUN_10081bf0(void) 175 3 +10081ca0 FUN_10081ca0 undefined FUN_10081ca0(void) 24 1 +10081cc0 FUN_10081cc0 undefined FUN_10081cc0(void) 77 1 +10081d10 FUN_10081d10 undefined FUN_10081d10(void) 114 2 +10081d90 FUN_10081d90 undefined FUN_10081d90(void) 102 1 +10081e00 FUN_10081e00 undefined FUN_10081e00(void) 175 3 +10081eb0 FUN_10081eb0 undefined FUN_10081eb0(void) 114 2 +10081f30 FUN_10081f30 undefined FUN_10081f30(void) 103 2 +10081fa0 FUN_10081fa0 undefined FUN_10081fa0(void) 102 1 +10082010 FUN_10082010 undefined FUN_10082010(void) 114 2 +10082090 FUN_10082090 undefined FUN_10082090(void) 102 1 +10082100 FUN_10082100 undefined FUN_10082100(void) 103 2 +10082170 FUN_10082170 undefined FUN_10082170(void) 387 8 SysFreeString +10082300 FUN_10082300 undefined FUN_10082300(void) 175 3 +100823b0 FUN_100823b0 undefined FUN_100823b0(void) 102 1 +10082420 FUN_10082420 undefined FUN_10082420(void) 137 2 +100824b0 FUN_100824b0 undefined FUN_100824b0(void) 114 1 +10082530 FUN_10082530 undefined FUN_10082530(void) 751 4 +10082820 FUN_10082820 undefined FUN_10082820(void) 112 1 +10082890 FUN_10082890 undefined FUN_10082890(void) 112 2 +10082900 FUN_10082900 undefined FUN_10082900(void) 114 1 +10082980 FUN_10082980 undefined FUN_10082980(void) 114 2 +10082a00 FUN_10082a00 undefined FUN_10082a00(void) 190 4 +10082a8f Catch@10082a8f undefined Catch@10082a8f(void) 21 2 +10082ae0 FUN_10082ae0 undefined FUN_10082ae0(void) 112 2 +10082b50 FUN_10082b50 undefined FUN_10082b50(void) 642 3 +10082de0 FUN_10082de0 undefined FUN_10082de0(void) 690 8 +100830a0 FUN_100830a0 undefined FUN_100830a0(void) 165 3 +10083150 FUN_10083150 undefined FUN_10083150(void) 378 4 +100832d0 FUN_100832d0 undefined FUN_100832d0(void) 183 3 +10083390 FUN_10083390 undefined FUN_10083390(void) 43 1 +100833c0 FUN_100833c0 undefined FUN_100833c0(void) 38 2 +100833f0 FUN_100833f0 undefined FUN_100833f0(void) 28 1 +10083410 FUN_10083410 undefined FUN_10083410(void) 28 1 +10083430 FUN_10083430 undefined FUN_10083430(void) 355 9 +100835a0 FUN_100835a0 undefined FUN_100835a0(void) 187 2 +10083660 FUN_10083660 undefined FUN_10083660(void) 73 2 +100836b0 FUN_100836b0 undefined FUN_100836b0(void) 73 2 +10083700 FUN_10083700 undefined FUN_10083700(void) 24 1 +10083720 FUN_10083720 undefined FUN_10083720(void) 103 2 +10083790 FUN_10083790 undefined FUN_10083790(void) 103 2 +10083800 FUN_10083800 undefined FUN_10083800(void) 175 3 +100838b0 FUN_100838b0 undefined FUN_100838b0(void) 183 3 +10083970 FUN_10083970 undefined FUN_10083970(void) 114 2 +100839f0 FUN_100839f0 undefined FUN_100839f0(void) 4502 73 SysFreeString +10084b90 FUN_10084b90 undefined FUN_10084b90(void) 5411 63 CoCreateInstance;SysFreeString +100860c0 FUN_100860c0 undefined FUN_100860c0(void) 435 6 SysFreeString +10086390 FUN_10086390 undefined FUN_10086390(void) 1161 12 SysFreeString +10086820 FUN_10086820 undefined FUN_10086820(void) 13 0 +10086830 FUN_10086830 undefined FUN_10086830(void) 142 2 CoGetClassObject +100868c0 FUN_100868c0 undefined FUN_100868c0(void) 137 2 CoGetClassObject +10086950 FUN_10086950 undefined FUN_10086950(void) 140 2 CoGetClassObject +100869e0 FUN_100869e0 undefined FUN_100869e0(void) 142 2 CoGetClassObject +10086a70 FUN_10086a70 undefined FUN_10086a70(void) 146 2 CoGetClassObject +10086b10 FUN_10086b10 undefined FUN_10086b10(void) 146 2 CoGetClassObject +10086bb0 FUN_10086bb0 undefined FUN_10086bb0(void) 146 2 CoGetClassObject +10086c50 FUN_10086c50 undefined FUN_10086c50(void) 146 2 CoGetClassObject +10086cf0 FUN_10086cf0 undefined FUN_10086cf0(void) 4060 24 SysFreeString;memcpy;memset +10087dd0 FUN_10087dd0 undefined FUN_10087dd0(void) 22 0 +10087e10 FUN_10087e10 undefined FUN_10087e10(void) 31 1 CoCreateInstance +10087e30 FUN_10087e30 undefined FUN_10087e30(void) 30 0 +10087f00 FUN_10087f00 undefined FUN_10087f00(void) 19 1 +10087f50 FUN_10087f50 undefined FUN_10087f50(void) 8 0 +10087f60 FUN_10087f60 undefined FUN_10087f60(void) 8 0 +10087f70 FUN_10087f70 undefined FUN_10087f70(void) 8 0 +10087f80 FUN_10087f80 undefined FUN_10087f80(void) 11 0 +10087fa0 FUN_10087fa0 undefined FUN_10087fa0(void) 8 0 +10087fb0 FUN_10087fb0 undefined FUN_10087fb0(void) 8 0 +10087fd0 FUN_10087fd0 undefined FUN_10087fd0(void) 93 0 +10088030 FUN_10088030 undefined FUN_10088030(void) 70 1 SysFreeString +100880c0 FUN_100880c0 undefined FUN_100880c0(void) 19 0 +100880f0 FUN_100880f0 undefined FUN_100880f0(void) 59 0 +10088130 FUN_10088130 undefined FUN_10088130(void) 14 0 +10088140 FUN_10088140 undefined FUN_10088140(void) 140 3 +100881d0 FUN_100881d0 undefined FUN_100881d0(void) 93 2 SysFreeString +10088230 FUN_10088230 undefined FUN_10088230(void) 189 3 SysAllocString;SysFreeString +100882f0 FUN_100882f0 undefined FUN_100882f0(void) 282 3 memcpy +10088410 FUN_10088410 undefined FUN_10088410(void) 22 1 +10088440 FUN_10088440 undefined FUN_10088440(void) 19 0 +10088460 FUN_10088460 undefined FUN_10088460(void) 19 0 +10088480 FUN_10088480 undefined FUN_10088480(void) 14 0 +10088490 FUN_10088490 undefined FUN_10088490(void) 21 1 +100884b0 FUN_100884b0 undefined FUN_100884b0(void) 15 0 +100884c0 FUN_100884c0 undefined FUN_100884c0(void) 202 3 SysAllocStringByteLen +10088590 FUN_10088590 undefined FUN_10088590(void) 168 4 SysAllocStringByteLen;SysFreeString +10088640 FUN_10088640 undefined FUN_10088640(void) 69 1 SysFreeString +10088690 FUN_10088690 undefined FUN_10088690(void) 85 1 +100886f0 FUN_100886f0 undefined FUN_100886f0(void) 14 0 +10088700 FUN_10088700 undefined FUN_10088700(void) 15 0 +10088710 FUN_10088710 undefined FUN_10088710(void) 85 1 +10088770 FUN_10088770 undefined FUN_10088770(void) 86 1 +100887d0 FUN_100887d0 undefined FUN_100887d0(void) 191 4 SysAllocStringByteLen;SysFreeString +100888a0 FUN_100888a0 undefined FUN_100888a0(void) 71 1 SysFreeString +100888f0 FUN_100888f0 undefined FUN_100888f0(void) 83 1 +10088950 FUN_10088950 undefined FUN_10088950(void) 872 13 +10088cc0 FUN_10088cc0 undefined FUN_10088cc0(void) 83 1 +10088d20 FUN_10088d20 undefined FUN_10088d20(void) 88 1 +10088d80 FUN_10088d80 undefined FUN_10088d80(void) 32 1 +10088da0 FUN_10088da0 undefined FUN_10088da0(void) 69 1 SysFreeString +10088df0 FUN_10088df0 undefined FUN_10088df0(void) 180 0 +10088eb0 FUN_10088eb0 undefined FUN_10088eb0(void) 86 1 +10088f10 FUN_10088f10 undefined FUN_10088f10(void) 94 1 SysFreeString +10088f70 FUN_10088f70 undefined FUN_10088f70(void) 121 1 +10088fe9 Catch@10088fe9 undefined Catch@10088fe9(void) 39 2 +10089020 FUN_10089020 undefined FUN_10089020(void) 727 8 CoCreateInstance +10089300 FUN_10089300 undefined FUN_10089300(void) 99 1 SysFreeString +10089370 FUN_10089370 undefined FUN_10089370(void) 38 1 +100893a0 FUN_100893a0 undefined FUN_100893a0(void) 101 1 SysFreeString +10089410 FUN_10089410 undefined FUN_10089410(void) 37 1 +10089440 FUN_10089440 undefined FUN_10089440(void) 67 2 +10089490 FUN_10089490 undefined FUN_10089490(void) 61 3 +100894d0 FUN_100894d0 undefined FUN_100894d0(void) 239 6 +100895bf Catch@100895bf undefined Catch@100895bf(void) 21 2 +100895e0 FUN_100895e0 undefined FUN_100895e0(void) 55 2 +10089620 FUN_10089620 undefined FUN_10089620(void) 61 3 +10089660 FUN_10089660 undefined FUN_10089660(void) 121 2 +100896e0 FUN_100896e0 undefined FUN_100896e0(void) 72 0 +10089730 FUN_10089730 undefined FUN_10089730(void) 120 3 +100897b0 FUN_100897b0 undefined FUN_100897b0(void) 181 2 +10089870 FUN_10089870 undefined FUN_10089870(void) 287 6 SysAllocString;SysFreeString +10089990 FUN_10089990 undefined FUN_10089990(void) 783 14 +10089cb0 FUN_10089cb0 undefined FUN_10089cb0(void) 1186 13 memmove +1008a160 FUN_1008a160 undefined FUN_1008a160(void) 44 1 +1008a190 FUN_1008a190 undefined FUN_1008a190(void) 1545 28 SysFreeString +1008a7a0 FUN_1008a7a0 undefined FUN_1008a7a0(void) 677 15 SysFreeString +1008aa50 FUN_1008aa50 undefined FUN_1008aa50(void) 20 1 +1008aa70 FUN_1008aa70 undefined FUN_1008aa70(void) 783 14 +1008ad90 FUN_1008ad90 undefined FUN_1008ad90(void) 366 9 memset +1008af10 FUN_1008af10 undefined FUN_1008af10(void) 24 1 +1008af30 FUN_1008af30 undefined FUN_1008af30(void) 64 0 +1008af70 FUN_1008af70 undefined FUN_1008af70(void) 28 0 +1008af90 FUN_1008af90 undefined FUN_1008af90(void) 206 1 +1008b060 FUN_1008b060 undefined FUN_1008b060(void) 14 0 +1008b070 FUN_1008b070 undefined FUN_1008b070(void) 21 0 +1008b0c0 FUN_1008b0c0 undefined FUN_1008b0c0(void) 51 1 +1008b110 FUN_1008b110 undefined FUN_1008b110(void) 8 0 +1008b120 FUN_1008b120 undefined FUN_1008b120(void) 8 0 +1008b130 FUN_1008b130 undefined FUN_1008b130(void) 8 0 +1008b160 FUN_1008b160 undefined FUN_1008b160(void) 84 0 +1008b1c0 FUN_1008b1c0 undefined FUN_1008b1c0(void) 8 0 +1008b1d0 FUN_1008b1d0 undefined FUN_1008b1d0(void) 33 0 +1008b200 FUN_1008b200 undefined FUN_1008b200(void) 8 0 +1008b210 FUN_1008b210 undefined FUN_1008b210(void) 8 0 +1008b220 FUN_1008b220 undefined FUN_1008b220(void) 8 0 +1008b230 FUN_1008b230 undefined FUN_1008b230(void) 84 0 +1008b290 FUN_1008b290 undefined FUN_1008b290(void) 8 0 +1008b2a0 FUN_1008b2a0 undefined FUN_1008b2a0(void) 14 0 +1008b2d0 FUN_1008b2d0 undefined FUN_1008b2d0(void) 19 0 +1008b2f0 FUN_1008b2f0 undefined FUN_1008b2f0(void) 14 0 +1008b300 FUN_1008b300 undefined FUN_1008b300(void) 8 0 +1008b310 FUN_1008b310 undefined FUN_1008b310(void) 8 0 +1008b320 FUN_1008b320 undefined FUN_1008b320(void) 8 0 +1008b330 FUN_1008b330 undefined FUN_1008b330(void) 8 0 +1008b340 FUN_1008b340 undefined FUN_1008b340(void) 8 0 +1008b350 FUN_1008b350 undefined FUN_1008b350(void) 8 0 +1008b360 FUN_1008b360 undefined FUN_1008b360(void) 11 0 +1008b370 FUN_1008b370 undefined FUN_1008b370(void) 18 0 +1008b390 FUN_1008b390 undefined FUN_1008b390(void) 18 0 +1008b3d0 FUN_1008b3d0 undefined FUN_1008b3d0(void) 33 0 +1008b400 FUN_1008b400 undefined FUN_1008b400(void) 34 1 +1008b430 FUN_1008b430 undefined FUN_1008b430(void) 86 0 +1008b4b0 FUN_1008b4b0 undefined FUN_1008b4b0(void) 12 1 +1008b4c0 FUN_1008b4c0 undefined FUN_1008b4c0(void) 24 0 +1008b4e0 FUN_1008b4e0 undefined FUN_1008b4e0(void) 13 0 +1008b4f0 FUN_1008b4f0 undefined FUN_1008b4f0(void) 142 3 +1008b580 FUN_1008b580 undefined FUN_1008b580(void) 14 0 +1008b590 FUN_1008b590 undefined FUN_1008b590(void) 19 0 +1008b5d0 FUN_1008b5d0 undefined FUN_1008b5d0(void) 24 0 +1008b5f0 FUN_1008b5f0 undefined FUN_1008b5f0(void) 33 0 +1008b620 FUN_1008b620 undefined FUN_1008b620(void) 129 1 SysFreeString +1008b6c0 FUN_1008b6c0 undefined FUN_1008b6c0(void) 42 1 +1008b6f0 FUN_1008b6f0 undefined FUN_1008b6f0(void) 42 1 +1008b720 FUN_1008b720 undefined FUN_1008b720(void) 84 0 +1008b780 FUN_1008b780 undefined FUN_1008b780(void) 42 1 +1008b7b0 FUN_1008b7b0 undefined FUN_1008b7b0(void) 12 1 +1008b7c0 FUN_1008b7c0 undefined FUN_1008b7c0(void) 24 0 +1008b7e0 FUN_1008b7e0 undefined FUN_1008b7e0(void) 13 0 +1008b7f0 FUN_1008b7f0 undefined FUN_1008b7f0(void) 37 0 +1008b820 FUN_1008b820 undefined FUN_1008b820(void) 24 0 +1008b840 FUN_1008b840 undefined FUN_1008b840(void) 33 0 +1008b870 FUN_1008b870 undefined FUN_1008b870(void) 296 3 SysAllocStringByteLen +1008b9a0 FUN_1008b9a0 undefined FUN_1008b9a0(void) 148 2 SysFreeString +1008ba40 FUN_1008ba40 undefined FUN_1008ba40(void) 15 0 +1008ba50 FUN_1008ba50 undefined FUN_1008ba50(void) 15 0 +1008ba60 FUN_1008ba60 undefined FUN_1008ba60(void) 44 1 +1008ba90 FUN_1008ba90 undefined FUN_1008ba90(void) 186 4 +1008bb13 Catch@1008bb13 undefined Catch@1008bb13(void) 21 2 +1008bb60 FUN_1008bb60 undefined FUN_1008bb60(void) 84 1 +1008bbc0 FUN_1008bbc0 undefined FUN_1008bbc0(void) 34 0 +1008bbf0 FUN_1008bbf0 undefined FUN_1008bbf0(void) 100 0 +1008bc60 FUN_1008bc60 undefined FUN_1008bc60(void) 182 1 +1008bd20 FUN_1008bd20 undefined FUN_1008bd20(void) 58 1 +1008bd60 FUN_1008bd60 undefined FUN_1008bd60(void) 58 1 +1008bda0 FUN_1008bda0 undefined FUN_1008bda0(void) 72 2 +1008bdf0 FUN_1008bdf0 undefined FUN_1008bdf0(void) 23 1 +1008be10 FUN_1008be10 undefined FUN_1008be10(void) 98 0 +1008be80 FUN_1008be80 undefined FUN_1008be80(void) 130 1 +1008bf10 FUN_1008bf10 undefined FUN_1008bf10(void) 69 2 +1008bf60 FUN_1008bf60 undefined FUN_1008bf60(void) 100 2 +1008bfd0 FUN_1008bfd0 undefined FUN_1008bfd0(void) 186 4 +1008c053 Catch@1008c053 undefined Catch@1008c053(void) 21 2 +1008c0a0 FUN_1008c0a0 undefined FUN_1008c0a0(void) 128 1 +1008c120 FUN_1008c120 undefined FUN_1008c120(void) 683 9 +1008c3d0 FUN_1008c3d0 undefined FUN_1008c3d0(void) 661 10 SysFreeString +1008c670 FUN_1008c670 undefined FUN_1008c670(void) 477 6 SysFreeString +1008c850 FUN_1008c850 undefined FUN_1008c850(void) 477 6 SysFreeString +1008ca30 FUN_1008ca30 undefined FUN_1008ca30(void) 72 2 +1008ca80 FUN_1008ca80 undefined FUN_1008ca80(void) 127 1 +1008cb00 FUN_1008cb00 undefined FUN_1008cb00(void) 141 1 +1008cb90 FUN_1008cb90 undefined FUN_1008cb90(void) 69 2 +1008cbe0 FUN_1008cbe0 undefined FUN_1008cbe0(void) 127 1 +1008cc60 FUN_1008cc60 undefined FUN_1008cc60(void) 634 2 +1008cee0 FUN_1008cee0 undefined FUN_1008cee0(void) 139 1 +1008cf70 FUN_1008cf70 undefined FUN_1008cf70(void) 43 1 +1008cfa0 FUN_1008cfa0 undefined FUN_1008cfa0(void) 43 1 +1008cfd0 FUN_1008cfd0 undefined FUN_1008cfd0(void) 43 1 +1008d000 FUN_1008d000 undefined FUN_1008d000(void) 43 1 +1008d030 FUN_1008d030 undefined FUN_1008d030(void) 385 4 +1008d1c0 FUN_1008d1c0 undefined FUN_1008d1c0(void) 190 4 +1008d24f Catch@1008d24f undefined Catch@1008d24f(void) 21 2 +1008d2a0 FUN_1008d2a0 undefined FUN_1008d2a0(void) 1165 17 SysFreeString +1008d730 FUN_1008d730 undefined FUN_1008d730(void) 38 2 +1008d760 FUN_1008d760 undefined FUN_1008d760(void) 1641 32 SysFreeString +1008ddd0 FUN_1008ddd0 undefined FUN_1008ddd0(void) 486 10 SysFreeString +1008dfc0 FUN_1008dfc0 undefined FUN_1008dfc0(void) 507 7 SysFreeString +1008e1c0 FUN_1008e1c0 undefined FUN_1008e1c0(void) 94 0 +1008e220 FUN_1008e220 undefined FUN_1008e220(void) 44 1 +1008e250 FUN_1008e250 undefined FUN_1008e250(void) 116 2 +1008e2e0 FUN_1008e2e0 undefined FUN_1008e2e0(void) 52 0 +1008e320 FUN_1008e320 undefined FUN_1008e320(void) 37 0 +1008e350 FUN_1008e350 undefined FUN_1008e350(void) 19 0 +1008e3a0 FUN_1008e3a0 undefined FUN_1008e3a0(void) 8 0 +1008e3b0 FUN_1008e3b0 undefined FUN_1008e3b0(void) 8 0 +1008e3e0 FUN_1008e3e0 undefined FUN_1008e3e0(void) 14 0 +1008e410 FUN_1008e410 undefined FUN_1008e410(void) 19 0 +1008e430 FUN_1008e430 undefined FUN_1008e430(void) 14 0 +1008e440 FUN_1008e440 undefined FUN_1008e440(void) 8 0 +1008e450 FUN_1008e450 undefined FUN_1008e450(void) 8 0 +1008e460 FUN_1008e460 undefined FUN_1008e460(void) 90 0 +1008e4c0 FUN_1008e4c0 undefined FUN_1008e4c0(void) 90 0 +1008e520 FUN_1008e520 undefined FUN_1008e520(void) 85 0 +1008e580 FUN_1008e580 undefined FUN_1008e580(void) 18 0 +1008e5b0 FUN_1008e5b0 undefined FUN_1008e5b0(void) 18 0 +1008e5f0 FUN_1008e5f0 undefined FUN_1008e5f0(void) 13 0 +1008e600 FUN_1008e600 undefined FUN_1008e600(void) 14 0 +1008e610 FUN_1008e610 undefined FUN_1008e610(void) 19 0 +1008e650 FUN_1008e650 undefined FUN_1008e650(void) 88 0 +1008e6b0 FUN_1008e6b0 undefined FUN_1008e6b0(void) 88 0 +1008e710 FUN_1008e710 undefined FUN_1008e710(void) 120 0 +1008e7a0 FUN_1008e7a0 undefined FUN_1008e7a0(void) 42 1 +1008e7d0 FUN_1008e7d0 undefined FUN_1008e7d0(void) 42 1 +1008e800 FUN_1008e800 undefined FUN_1008e800(void) 13 0 +1008e810 FUN_1008e810 undefined FUN_1008e810(void) 37 0 +1008e840 FUN_1008e840 undefined FUN_1008e840(void) 186 4 +1008e8c3 Catch@1008e8c3 undefined Catch@1008e8c3(void) 21 2 +1008e910 FUN_1008e910 undefined FUN_1008e910(void) 186 4 +1008e993 Catch@1008e993 undefined Catch@1008e993(void) 21 2 +1008e9e0 FUN_1008e9e0 undefined FUN_1008e9e0(void) 15 0 +1008e9f0 FUN_1008e9f0 undefined FUN_1008e9f0(void) 15 0 +1008ea00 FUN_1008ea00 undefined FUN_1008ea00(void) 34 0 +1008ea30 FUN_1008ea30 undefined FUN_1008ea30(void) 72 2 +1008ea80 FUN_1008ea80 undefined FUN_1008ea80(void) 72 2 +1008ead0 FUN_1008ead0 undefined FUN_1008ead0(void) 69 2 +1008eb20 FUN_1008eb20 undefined FUN_1008eb20(void) 58 1 +1008eb60 FUN_1008eb60 undefined FUN_1008eb60(void) 69 2 +1008ebb0 FUN_1008ebb0 undefined FUN_1008ebb0(void) 58 1 +1008ebf0 FUN_1008ebf0 undefined FUN_1008ebf0(void) 442 8 SysFreeString +1008edb0 FUN_1008edb0 undefined FUN_1008edb0(void) 822 13 CoGetClassObject;SysFreeString +1008f0f0 FUN_1008f0f0 undefined FUN_1008f0f0(void) 33 1 +1008f120 FUN_1008f120 undefined FUN_1008f120(void) 33 1 +1008f150 FUN_1008f150 undefined FUN_1008f150(void) 436 8 +1008f310 FUN_1008f310 undefined FUN_1008f310(void) 1434 12 +1008f8b0 FUN_1008f8b0 undefined FUN_1008f8b0(void) 609 10 +1008fb20 FUN_1008fb20 undefined FUN_1008fb20(void) 136 7 SysAllocStringByteLen +1008fbb0 FUN_1008fbb0 undefined FUN_1008fbb0(void) 40 2 SysFreeString +1008fbe0 FUN_1008fbe0 undefined FUN_1008fbe0(void) 43 1 +1008fc10 FUN_1008fc10 undefined FUN_1008fc10(void) 43 1 +1008fc40 FUN_1008fc40 undefined FUN_1008fc40(void) 40 1 +1008fc70 FUN_1008fc70 undefined FUN_1008fc70(void) 40 1 +1008fca0 FUN_1008fca0 undefined FUN_1008fca0(void) 170 1 +1008fd50 FUN_1008fd50 undefined FUN_1008fd50(void) 8563 37 CoGetClassObject;SysAllocString;SysFreeString +10091ed0 FUN_10091ed0 undefined FUN_10091ed0(void) 1116 13 SysFreeString +10092330 FUN_10092330 undefined FUN_10092330(void) 63 1 +10092390 FUN_10092390 undefined FUN_10092390(void) 35 1 +100923c0 FUN_100923c0 undefined FUN_100923c0(void) 31 1 +100923e0 FUN_100923e0 undefined FUN_100923e0(void) 299 4 SysFreeString +10092510 FUN_10092510 undefined FUN_10092510(void) 297 4 SysFreeString +10092640 FUN_10092640 undefined FUN_10092640(void) 261 6 +10092750 FUN_10092750 undefined FUN_10092750(void) 43 1 +10092780 FUN_10092780 undefined FUN_10092780(void) 284 10 +1009289c Catch@1009289c undefined Catch@1009289c(void) 51 3 +100928d0 FUN_100928d0 undefined FUN_100928d0(void) 1481 24 SysAllocString;SysFreeString +10092e99 Catch@10092e99 undefined Catch@10092e99(void) 104 5 +10092f10 FUN_10092f10 undefined FUN_10092f10(void) 1361 24 SysAllocString;SysFreeString +10093461 Catch@10093461 undefined Catch@10093461(void) 104 5 +100934d0 FUN_100934d0 undefined FUN_100934d0(void) 318 2 SysAllocStringByteLen;SysFreeString +10093610 FUN_10093610 undefined FUN_10093610(void) 27 1 +10093630 FUN_10093630 undefined FUN_10093630(void) 24 1 +10093650 FUN_10093650 undefined FUN_10093650(void) 43 0 +10093680 FUN_10093680 undefined FUN_10093680(void) 43 0 +100936b0 FUN_100936b0 undefined FUN_100936b0(void) 31 0 +100936d0 FUN_100936d0 undefined FUN_100936d0(void) 49 2 +10093720 FUN_10093720 undefined FUN_10093720(void) 93 4 +10093780 FUN_10093780 undefined FUN_10093780(void) 116 1 +10093800 FUN_10093800 undefined FUN_10093800(void) 133 4 SysAllocString;SysFreeString +10093890 FUN_10093890 undefined FUN_10093890(void) 83 1 +100938f0 FUN_100938f0 undefined FUN_100938f0(void) 24 1 +10093910 FUN_10093910 undefined FUN_10093910(void) 26 1 +10093930 FUN_10093930 undefined FUN_10093930(void) 159 3 +100939d0 FUN_100939d0 undefined FUN_100939d0(void) 23 1 +100939f0 FUN_100939f0 undefined FUN_100939f0(void) 34 0 +10093a20 FUN_10093a20 undefined FUN_10093a20(void) 122 0 +10093aa0 FUN_10093aa0 undefined FUN_10093aa0(void) 128 1 memcpy_s +10093b20 FUN_10093b20 undefined FUN_10093b20(void) 34 0 +10093b50 FUN_10093b50 undefined FUN_10093b50(void) 696 9 SysAllocString;SysFreeString +10093e10 FUN_10093e10 undefined FUN_10093e10(void) 118 2 +10093e90 FUN_10093e90 undefined FUN_10093e90(void) 105 2 +10093f00 FUN_10093f00 undefined FUN_10093f00(void) 1275 7 SysFreeString +10094400 FUN_10094400 undefined FUN_10094400(void) 1184 21 SysFreeString +100948d0 FUN_100948d0 undefined FUN_100948d0(void) 8 0 +100948f0 FUN_100948f0 undefined FUN_100948f0(void) 84 0 +10094950 FUN_10094950 undefined FUN_10094950(void) 8 0 +10094960 FUN_10094960 undefined FUN_10094960(void) 8 0 +10094970 FUN_10094970 undefined FUN_10094970(void) 8 0 +10094980 FUN_10094980 undefined FUN_10094980(void) 8 0 +10094990 FUN_10094990 undefined FUN_10094990(void) 10 0 +100949b0 FUN_100949b0 undefined FUN_100949b0(void) 8 0 +100949c0 FUN_100949c0 undefined FUN_100949c0(void) 8 0 +100949d0 FUN_100949d0 undefined FUN_100949d0(void) 8 0 +100949e0 FUN_100949e0 undefined FUN_100949e0(void) 8 0 +100949f0 FUN_100949f0 undefined FUN_100949f0(void) 11 0 +10094a40 FUN_10094a40 undefined FUN_10094a40(void) 24 0 +10094a60 FUN_10094a60 undefined FUN_10094a60(void) 12 1 +10094a70 FUN_10094a70 undefined FUN_10094a70(void) 142 3 +10094b00 FUN_10094b00 undefined FUN_10094b00(void) 24 0 +10094b20 FUN_10094b20 undefined FUN_10094b20(void) 22 1 +10094b70 FUN_10094b70 undefined FUN_10094b70(void) 24 0 +10094b90 FUN_10094b90 undefined FUN_10094b90(void) 12 1 +10094ba0 FUN_10094ba0 undefined FUN_10094ba0(void) 24 0 +10094bc0 FUN_10094bc0 undefined FUN_10094bc0(void) 241 3 +10094cc0 FUN_10094cc0 undefined FUN_10094cc0(void) 117 1 +10094d40 FUN_10094d40 undefined FUN_10094d40(void) 117 1 +10094dc0 FUN_10094dc0 undefined FUN_10094dc0(void) 23 1 +10094de0 FUN_10094de0 undefined FUN_10094de0(void) 117 1 +10094e60 FUN_10094e60 undefined FUN_10094e60(void) 117 1 +10094ee0 FUN_10094ee0 undefined FUN_10094ee0(void) 168 3 +10094f90 FUN_10094f90 undefined FUN_10094f90(void) 131 1 +10095020 FUN_10095020 undefined FUN_10095020(void) 515 6 +10095230 FUN_10095230 undefined FUN_10095230(void) 292 5 +10095360 FUN_10095360 undefined FUN_10095360(void) 129 1 +100953f0 FUN_100953f0 undefined FUN_100953f0(void) 1191 14 SysFreeString +100958a0 FUN_100958a0 undefined FUN_100958a0(void) 190 4 +1009592f Catch@1009592f undefined Catch@1009592f(void) 21 2 +10095980 FUN_10095980 undefined FUN_10095980(void) 165 2 +10095a25 Catch@10095a25 undefined Catch@10095a25(void) 21 2 +10095a40 FUN_10095a40 undefined FUN_10095a40(void) 119 1 +10095ac0 FUN_10095ac0 undefined FUN_10095ac0(void) 195 4 +10095b54 Catch@10095b54 undefined Catch@10095b54(void) 28 2 +10095ba0 FUN_10095ba0 undefined FUN_10095ba0(void) 77 1 +10095bf0 FUN_10095bf0 undefined FUN_10095bf0(void) 175 3 +10095ca0 FUN_10095ca0 undefined FUN_10095ca0(void) 77 1 +10095cf0 FUN_10095cf0 undefined FUN_10095cf0(void) 124 2 +10095d70 FUN_10095d70 undefined FUN_10095d70(void) 124 2 +10095df0 FUN_10095df0 undefined FUN_10095df0(void) 126 2 +10095e70 FUN_10095e70 undefined FUN_10095e70(void) 124 2 +10095ef0 FUN_10095ef0 undefined FUN_10095ef0(void) 140 2 +10095f80 FUN_10095f80 undefined FUN_10095f80(void) 610 3 +100961f0 FUN_100961f0 undefined FUN_100961f0(void) 140 2 +10096280 FUN_10096280 undefined FUN_10096280(void) 641 7 +10096510 FUN_10096510 undefined FUN_10096510(void) 190 4 +1009659f Catch@1009659f undefined Catch@1009659f(void) 21 2 +100965f0 FUN_100965f0 undefined FUN_100965f0(void) 38 2 +10096620 FUN_10096620 undefined FUN_10096620(void) 1601 27 SysFreeString +10096c70 FUN_10096c70 undefined FUN_10096c70(void) 67 1 +10096cc0 FUN_10096cc0 undefined FUN_10096cc0(void) 23 1 +10096ce0 FUN_10096ce0 undefined FUN_10096ce0(void) 640 14 +10096f60 FUN_10096f60 undefined FUN_10096f60(void) 144 4 SysFreeString +10096ff0 FUN_10096ff0 undefined FUN_10096ff0(void) 329 6 SysFreeString +10097140 FUN_10097140 undefined FUN_10097140(void) 79 2 +10097220 FUN_10097220 undefined FUN_10097220(void) 18 1 +100972a0 FUN_100972a0 undefined FUN_100972a0(void) 67 2 +10097320 FUN_10097320 undefined FUN_10097320(void) 78 1 +10097370 FUN_10097370 undefined FUN_10097370(void) 127 0 +100973f0 FUN_100973f0 undefined FUN_100973f0(void) 154 2 +100974b0 FUN_100974b0 undefined FUN_100974b0(void) 13 0 +100974d0 FUN_100974d0 undefined FUN_100974d0(void) 72 1 CoGetClassObject +100975f0 FUN_100975f0 undefined FUN_100975f0(void) 84 0 +10097660 FUN_10097660 undefined FUN_10097660(void) 148 1 +10097710 FUN_10097710 undefined FUN_10097710(void) 17 0 +10097730 FUN_10097730 undefined FUN_10097730(void) 17 0 +10097750 FUN_10097750 undefined FUN_10097750(void) 153 1 +100977f0 FUN_100977f0 undefined FUN_100977f0(void) 16 0 +10097800 FUN_10097800 undefined FUN_10097800(void) 35 0 +10097890 FUN_10097890 undefined FUN_10097890(void) 33 2 +100978c0 FUN_100978c0 undefined FUN_100978c0(void) 65 1 +10097940 FUN_10097940 undefined FUN_10097940(void) 489 0 +10097b30 FUN_10097b30 undefined FUN_10097b30(void) 141 1 +10097be0 FUN_10097be0 undefined FUN_10097be0(void) 24 0 +10097c00 FUN_10097c00 undefined FUN_10097c00(void) 21 0 +10097c20 FUN_10097c20 undefined FUN_10097c20(void) 21 0 +10097c40 FUN_10097c40 undefined FUN_10097c40(void) 28 0 +10097c60 FUN_10097c60 undefined FUN_10097c60(void) 88 2 +10097cd0 FUN_10097cd0 undefined FUN_10097cd0(void) 15 0 +10097d10 FUN_10097d10 undefined FUN_10097d10(void) 15 0 +10097d60 FUN_10097d60 undefined FUN_10097d60(void) 77 1 +10097df0 FUN_10097df0 undefined FUN_10097df0(void) 11 0 +10097e00 FUN_10097e00 undefined FUN_10097e00(void) 19 0 +10097e20 FUN_10097e20 undefined FUN_10097e20(void) 10 1 +10097e30 FUN_10097e30 undefined FUN_10097e30(void) 10 1 +10097e40 FUN_10097e40 undefined FUN_10097e40(void) 10 1 +10097e50 FUN_10097e50 undefined FUN_10097e50(void) 10 1 +10097e60 FUN_10097e60 undefined FUN_10097e60(void) 10 1 +10097e70 FUN_10097e70 undefined FUN_10097e70(void) 10 1 +10097e80 FUN_10097e80 undefined FUN_10097e80(void) 10 1 +10097e90 FUN_10097e90 undefined FUN_10097e90(void) 10 1 +10097ea0 FUN_10097ea0 undefined FUN_10097ea0(void) 10 1 +10097eb0 FUN_10097eb0 undefined FUN_10097eb0(void) 10 1 +10097ec0 FUN_10097ec0 undefined FUN_10097ec0(void) 10 1 +10097ed0 FUN_10097ed0 undefined FUN_10097ed0(void) 10 1 +10097ee0 FUN_10097ee0 undefined FUN_10097ee0(void) 10 1 +10097ef0 FUN_10097ef0 undefined FUN_10097ef0(void) 10 1 +10097f00 FUN_10097f00 undefined FUN_10097f00(void) 10 1 +10097f10 FUN_10097f10 undefined FUN_10097f10(void) 10 1 +10097f20 FUN_10097f20 undefined FUN_10097f20(void) 10 1 +10097f30 FUN_10097f30 undefined FUN_10097f30(void) 10 1 +10097f40 FUN_10097f40 undefined FUN_10097f40(void) 10 1 +10097f50 FUN_10097f50 undefined FUN_10097f50(void) 10 1 +10097f60 FUN_10097f60 undefined FUN_10097f60(void) 10 1 +10097f70 FUN_10097f70 undefined FUN_10097f70(void) 10 1 +10097f80 FUN_10097f80 undefined FUN_10097f80(void) 10 1 +10097f90 FUN_10097f90 undefined FUN_10097f90(void) 10 1 +10097fa0 FUN_10097fa0 undefined FUN_10097fa0(void) 10 1 +10097fb0 FUN_10097fb0 undefined FUN_10097fb0(void) 10 1 +10097fc0 FUN_10097fc0 undefined FUN_10097fc0(void) 10 1 +10097fd0 FUN_10097fd0 undefined FUN_10097fd0(void) 10 1 +10097fe0 FUN_10097fe0 undefined FUN_10097fe0(void) 10 1 +10097ff0 FUN_10097ff0 undefined FUN_10097ff0(void) 10 1 +10098000 FUN_10098000 undefined FUN_10098000(void) 10 1 +10098010 FUN_10098010 undefined FUN_10098010(void) 10 1 +10098020 FUN_10098020 undefined FUN_10098020(void) 10 1 +10098030 FUN_10098030 undefined FUN_10098030(void) 10 1 +10098040 FUN_10098040 undefined FUN_10098040(void) 10 1 +10098050 FUN_10098050 undefined FUN_10098050(void) 10 1 +10098060 FUN_10098060 undefined FUN_10098060(void) 11 0 +10098070 FUN_10098070 undefined FUN_10098070(void) 8 0 +10098080 FUN_10098080 undefined FUN_10098080(void) 11 0 +10098090 FUN_10098090 undefined FUN_10098090(void) 11 0 +100980a0 FUN_100980a0 undefined FUN_100980a0(void) 28 0 +100980c0 FUN_100980c0 undefined FUN_100980c0(void) 14 0 +100980f0 FUN_100980f0 undefined FUN_100980f0(void) 87 0 +10098150 FUN_10098150 undefined FUN_10098150(void) 11 0 +10098160 FUN_10098160 undefined FUN_10098160(void) 29 0 +10098180 FUN_10098180 undefined FUN_10098180(void) 21 0 +100981a0 FUN_100981a0 undefined FUN_100981a0(void) 19 1 +100981d0 FUN_100981d0 undefined FUN_100981d0(void) 8 0 +100981e0 FUN_100981e0 undefined FUN_100981e0(void) 20 1 +10098200 FUN_10098200 undefined FUN_10098200(void) 8 0 +10098210 FUN_10098210 undefined FUN_10098210(void) 84 0 +10098280 FUN_10098280 undefined FUN_10098280(void) 18 1 +100982a0 FUN_100982a0 undefined FUN_100982a0(void) 8 0 +100982b0 FUN_100982b0 undefined FUN_100982b0(void) 8 0 +100982d0 FUN_100982d0 undefined FUN_100982d0(void) 8 0 +100982e0 FUN_100982e0 undefined FUN_100982e0(void) 24 0 +10098300 FUN_10098300 undefined FUN_10098300(void) 144 3 +10098390 FUN_10098390 undefined FUN_10098390(void) 83 0 +10098410 FUN_10098410 undefined FUN_10098410(void) 106 2 +10098480 FUN_10098480 undefined FUN_10098480(void) 67 2 +100984d0 FUN_100984d0 undefined FUN_100984d0(void) 74 0 +10098520 FUN_10098520 undefined FUN_10098520(void) 126 2 +100985a0 FUN_100985a0 undefined FUN_100985a0(void) 74 0 +10098610 FUN_10098610 undefined FUN_10098610(void) 27 1 AtlInternalQueryInterface +10098660 FUN_10098660 undefined FUN_10098660(void) 33 2 +10098690 FUN_10098690 undefined FUN_10098690(void) 11 1 +100986a0 FUN_100986a0 undefined FUN_100986a0(void) 17 0 +100986c0 FUN_100986c0 undefined FUN_100986c0(void) 151 3 +10098757 Catch@10098757 undefined Catch@10098757(void) 13 0 +1009876d FUN_1009876d undefined FUN_1009876d(void) 61 0 +100987c0 FUN_100987c0 undefined FUN_100987c0(void) 101 0 +10098830 FUN_10098830 undefined FUN_10098830(void) 30 1 AtlInternalQueryInterface +10098850 FUN_10098850 undefined FUN_10098850(void) 186 1 +10098910 FUN_10098910 undefined FUN_10098910(void) 16 0 +10098920 FUN_10098920 undefined FUN_10098920(void) 35 0 +10098960 FUN_10098960 undefined FUN_10098960(void) 110 1 +100989d0 FUN_100989d0 undefined FUN_100989d0(void) 105 1 AtlInternalQueryInterface +10098a40 FUN_10098a40 undefined FUN_10098a40(void) 129 2 +10098ae0 FUN_10098ae0 undefined FUN_10098ae0(void) 68 0 +10098b30 FUN_10098b30 undefined FUN_10098b30(void) 71 1 +10098b80 FUN_10098b80 undefined FUN_10098b80(void) 68 0 +10098bd0 FUN_10098bd0 undefined FUN_10098bd0(void) 85 1 +10098c40 FUN_10098c40 undefined FUN_10098c40(void) 19 0 +10098c70 FUN_10098c70 undefined FUN_10098c70(void) 14 0 +10098c80 FUN_10098c80 undefined FUN_10098c80(void) 72 0 +10098cd0 FUN_10098cd0 undefined FUN_10098cd0(void) 10 1 +10098ce0 FUN_10098ce0 undefined FUN_10098ce0(void) 10 1 +10098cf0 FUN_10098cf0 undefined FUN_10098cf0(void) 10 1 +10098d00 FUN_10098d00 undefined FUN_10098d00(void) 10 1 +10098d10 FUN_10098d10 undefined FUN_10098d10(void) 10 1 +10098d20 FUN_10098d20 undefined FUN_10098d20(void) 10 1 +10098d30 FUN_10098d30 undefined FUN_10098d30(void) 10 1 +10098d40 FUN_10098d40 undefined FUN_10098d40(void) 83 0 +10098da0 FUN_10098da0 undefined FUN_10098da0(void) 11 0 +10098db0 CComCritSecLock undefined CComCritSecLock(CComCritSecLock * this, CComCriticalSection * param_1, bool param_2) 39 1 +10098de0 FUN_10098de0 undefined FUN_10098de0(void) 24 1 +10098e10 FUN_10098e10 undefined FUN_10098e10(void) 12 1 +10098e30 FUN_10098e30 undefined FUN_10098e30(void) 24 0 +10098e50 FUN_10098e50 undefined FUN_10098e50(void) 24 0 +10098e70 FUN_10098e70 undefined FUN_10098e70(void) 21 1 +10098e90 FUN_10098e90 undefined FUN_10098e90(void) 81 0 +10098f00 FUN_10098f00 undefined FUN_10098f00(void) 201 2 +10098fd0 FUN_10098fd0 undefined FUN_10098fd0(void) 90 1 +10099030 FUN_10099030 undefined FUN_10099030(void) 8 0 +10099040 FUN_10099040 undefined FUN_10099040(void) 10 0 +10099050 FUN_10099050 undefined FUN_10099050(void) 10 0 +10099060 FUN_10099060 undefined FUN_10099060(void) 11 1 +10099070 FUN_10099070 undefined FUN_10099070(void) 11 1 +10099080 FUN_10099080 undefined FUN_10099080(void) 4 0 +10099090 FUN_10099090 undefined FUN_10099090(void) 82 1 CoCreateInstance +100990f0 FUN_100990f0 undefined FUN_100990f0(void) 8 0 +10099100 FUN_10099100 undefined FUN_10099100(void) 8 0 +10099120 FUN_10099120 undefined FUN_10099120(void) 28 0 +10099140 FUN_10099140 undefined FUN_10099140(void) 132 2 +100991d0 FUN_100991d0 undefined FUN_100991d0(void) 151 3 +10099270 FUN_10099270 undefined FUN_10099270(void) 300 6 SysFreeString +100993a0 FUN_100993a0 undefined FUN_100993a0(void) 462 10 SysFreeString +10099570 FUN_10099570 undefined FUN_10099570(void) 140 3 +10099600 FUN_10099600 undefined FUN_10099600(void) 140 3 +10099690 FUN_10099690 undefined FUN_10099690(void) 300 3 +100997c0 FUN_100997c0 undefined FUN_100997c0(void) 369 4 CoGetClassObject;SysFreeString +10099940 FUN_10099940 undefined FUN_10099940(void) 100 1 +100999b0 FUN_100999b0 undefined FUN_100999b0(void) 84 0 +10099a10 FUN_10099a10 undefined FUN_10099a10(void) 39 0 +10099a40 FUN_10099a40 undefined FUN_10099a40(void) 123 2 +10099ad0 FUN_10099ad0 undefined FUN_10099ad0(void) 103 5 +10099b40 FUN_10099b40 undefined FUN_10099b40(void) 24 1 +10099b60 FUN_10099b60 undefined FUN_10099b60(void) 164 3 +10099c04 Catch@10099c04 undefined Catch@10099c04(void) 13 0 +10099c19 FUN_10099c19 undefined FUN_10099c19(void) 58 0 +10099c60 FUN_10099c60 undefined FUN_10099c60(void) 103 1 +10099cd0 FUN_10099cd0 undefined FUN_10099cd0(void) 121 0 +10099d50 FUN_10099d50 undefined FUN_10099d50(void) 167 3 +10099e00 FUN_10099e00 undefined FUN_10099e00(void) 35 0 +10099e40 FUN_10099e40 undefined FUN_10099e40(void) 16 0 +10099e50 FUN_10099e50 undefined FUN_10099e50(void) 35 0 +10099e80 FUN_10099e80 undefined FUN_10099e80(void) 27 1 AtlInternalQueryInterface +10099ec0 FUN_10099ec0 undefined FUN_10099ec0(void) 30 1 AtlInternalQueryInterface +10099ee0 FUN_10099ee0 undefined FUN_10099ee0(void) 54 1 +10099f20 FUN_10099f20 undefined FUN_10099f20(void) 35 0 +10099f60 FUN_10099f60 undefined FUN_10099f60(void) 5 0 +10099f90 FUN_10099f90 undefined FUN_10099f90(void) 16 0 +10099fa0 FUN_10099fa0 undefined FUN_10099fa0(void) 35 0 +10099fd0 FUN_10099fd0 undefined FUN_10099fd0(void) 54 1 +1009a010 FUN_1009a010 undefined FUN_1009a010(void) 27 1 AtlInternalQueryInterface +1009a030 FUN_1009a030 undefined FUN_1009a030(void) 30 1 AtlInternalQueryInterface +1009a090 FUN_1009a090 undefined FUN_1009a090(void) 28 0 +1009a0b0 FUN_1009a0b0 undefined FUN_1009a0b0(void) 21 0 +1009a0d0 FUN_1009a0d0 undefined FUN_1009a0d0(void) 21 0 +1009a0f0 FUN_1009a0f0 undefined FUN_1009a0f0(void) 28 0 +1009a110 FUN_1009a110 undefined FUN_1009a110(void) 28 0 +1009a130 FUN_1009a130 undefined FUN_1009a130(void) 21 0 +1009a150 FUN_1009a150 undefined FUN_1009a150(void) 21 0 +1009a170 FUN_1009a170 undefined FUN_1009a170(void) 28 0 +1009a190 FUN_1009a190 undefined FUN_1009a190(void) 17 0 +1009a1b0 FUN_1009a1b0 undefined FUN_1009a1b0(void) 15 0 +1009a1c0 FUN_1009a1c0 undefined FUN_1009a1c0(void) 12 1 +1009a1d0 FUN_1009a1d0 undefined FUN_1009a1d0(void) 23 1 +1009a200 FUN_1009a200 undefined FUN_1009a200(void) 546 2 +1009a430 FUN_1009a430 undefined FUN_1009a430(void) 24 0 +1009a450 FUN_1009a450 undefined FUN_1009a450(void) 142 3 +1009a4e0 FUN_1009a4e0 undefined FUN_1009a4e0(void) 21 1 +1009a500 FUN_1009a500 undefined FUN_1009a500(void) 21 1 +1009a520 FUN_1009a520 undefined FUN_1009a520(void) 113 1 +1009a5a0 FUN_1009a5a0 undefined FUN_1009a5a0(void) 29 1 +1009a5c0 FUN_1009a5c0 undefined FUN_1009a5c0(void) 113 1 +1009a640 FUN_1009a640 undefined FUN_1009a640(void) 29 1 +1009a660 FUN_1009a660 undefined FUN_1009a660(void) 25 1 +1009a680 FUN_1009a680 undefined FUN_1009a680(void) 59 1 +1009a6c0 FUN_1009a6c0 undefined FUN_1009a6c0(void) 244 1 +1009a7c0 FUN_1009a7c0 undefined FUN_1009a7c0(void) 25 1 +1009a7e0 FUN_1009a7e0 undefined FUN_1009a7e0(void) 44 2 +1009a810 FUN_1009a810 undefined FUN_1009a810(void) 177 3 +1009a8d0 FUN_1009a8d0 undefined FUN_1009a8d0(void) 136 0 +1009a990 FUN_1009a990 undefined FUN_1009a990(void) 27 1 AtlInternalQueryInterface +1009a9b0 FUN_1009a9b0 undefined FUN_1009a9b0(void) 44 1 +1009a9e0 FUN_1009a9e0 undefined FUN_1009a9e0(void) 73 1 +1009aa30 FUN_1009aa30 undefined FUN_1009aa30(void) 30 1 AtlInternalQueryInterface +1009aa50 FUN_1009aa50 undefined FUN_1009aa50(void) 122 1 +1009aad0 FUN_1009aad0 undefined FUN_1009aad0(void) 141 2 +1009ab60 FUN_1009ab60 undefined FUN_1009ab60(void) 148 3 +1009abf4 Catch@1009abf4 undefined Catch@1009abf4(void) 13 0 +1009ac0a FUN_1009ac0a undefined FUN_1009ac0a(void) 55 0 +1009ac50 FUN_1009ac50 undefined FUN_1009ac50(void) 148 3 +1009ace4 Catch@1009ace4 undefined Catch@1009ace4(void) 13 0 +1009acfa FUN_1009acfa undefined FUN_1009acfa(void) 61 0 +1009ad40 FUN_1009ad40 undefined FUN_1009ad40(void) 134 0 +1009add0 FUN_1009add0 undefined FUN_1009add0(void) 126 2 +1009ae50 FUN_1009ae50 undefined FUN_1009ae50(void) 50 0 +1009ae90 FUN_1009ae90 undefined FUN_1009ae90(void) 16 0 +1009aea0 FUN_1009aea0 undefined FUN_1009aea0(void) 35 0 +1009af00 FUN_1009af00 undefined FUN_1009af00(void) 105 1 AtlInternalQueryInterface +1009af70 FUN_1009af70 undefined FUN_1009af70(void) 54 1 +1009afb0 FUN_1009afb0 undefined FUN_1009afb0(void) 50 0 +1009aff0 FUN_1009aff0 undefined FUN_1009aff0(void) 16 0 +1009b000 FUN_1009b000 undefined FUN_1009b000(void) 35 0 +1009b060 FUN_1009b060 undefined FUN_1009b060(void) 105 1 AtlInternalQueryInterface +1009b0d0 FUN_1009b0d0 undefined FUN_1009b0d0(void) 54 1 +1009b110 FUN_1009b110 undefined FUN_1009b110(void) 51 1 +1009b150 FUN_1009b150 undefined FUN_1009b150(void) 40 1 +1009b180 FUN_1009b180 undefined FUN_1009b180(void) 592 7 +1009b3e0 FUN_1009b3e0 undefined FUN_1009b3e0(void) 56 2 +1009b420 FUN_1009b420 undefined FUN_1009b420(void) 209 3 +1009b500 FUN_1009b500 undefined FUN_1009b500(void) 190 4 +1009b58f Catch@1009b58f undefined Catch@1009b58f(void) 21 2 +1009b5e0 FUN_1009b5e0 undefined FUN_1009b5e0(void) 25 1 +1009b600 FUN_1009b600 undefined FUN_1009b600(void) 154 3 +1009b6a0 FUN_1009b6a0 undefined FUN_1009b6a0(void) 143 3 +1009b740 FUN_1009b740 undefined FUN_1009b740(void) 18 1 +1009b760 FUN_1009b760 undefined FUN_1009b760(void) 125 2 memcpy +1009b7e0 DllRegisterServer undefined DllRegisterServer(void) 15 1 +1009b7f0 DllUnregisterServer undefined DllUnregisterServer(void) 15 1 +1009b800 FUN_1009b800 undefined FUN_1009b800(void) 147 3 +1009b893 Catch@1009b893 undefined Catch@1009b893(void) 13 0 +1009b8a6 FUN_1009b8a6 undefined FUN_1009b8a6(void) 115 2 +1009b920 FUN_1009b920 undefined FUN_1009b920(void) 149 0 +1009b9c0 FUN_1009b9c0 undefined FUN_1009b9c0(void) 44 1 +1009b9f0 FUN_1009b9f0 undefined FUN_1009b9f0(void) 73 1 +1009ba40 FUN_1009ba40 undefined FUN_1009ba40(void) 30 1 AtlInternalQueryInterface +1009ba60 FUN_1009ba60 undefined FUN_1009ba60(void) 122 1 +1009bae0 FUN_1009bae0 undefined FUN_1009bae0(void) 141 2 +1009bb70 FUN_1009bb70 undefined FUN_1009bb70(void) 161 3 +1009bc11 Catch@1009bc11 undefined Catch@1009bc11(void) 13 0 +1009bc26 FUN_1009bc26 undefined FUN_1009bc26(void) 58 0 +1009bc60 FUN_1009bc60 undefined FUN_1009bc60(void) 161 3 +1009bd01 Catch@1009bd01 undefined Catch@1009bd01(void) 13 0 +1009bd16 FUN_1009bd16 undefined FUN_1009bd16(void) 58 0 +1009bd50 FUN_1009bd50 undefined FUN_1009bd50(void) 77 2 +1009bda0 FUN_1009bda0 undefined FUN_1009bda0(void) 38 2 +1009bdd0 FUN_1009bdd0 undefined FUN_1009bdd0(void) 600 6 memset +1009c030 FUN_1009c030 undefined FUN_1009c030(void) 147 3 +1009c0c3 Catch@1009c0c3 undefined Catch@1009c0c3(void) 13 0 +1009c0d6 FUN_1009c0d6 undefined FUN_1009c0d6(void) 115 2 +1009c150 FUN_1009c150 undefined FUN_1009c150(void) 44 2 +1009c180 FUN_1009c180 undefined FUN_1009c180(void) 44 2 +1009c1b0 FUN_1009c1b0 undefined FUN_1009c1b0(void) 158 2 +1009c250 FUN_1009c250 undefined FUN_1009c250(void) 24 1 +1009c270 FUN_1009c270 undefined FUN_1009c270(void) 347 10 +1009c3d0 FUN_1009c3d0 undefined FUN_1009c3d0(void) 8 0 +1009c3e0 FUN_1009c3e0 undefined FUN_1009c3e0(void) 24 0 +1009c400 FUN_1009c400 undefined FUN_1009c400(void) 24 0 +1009c420 FUN_1009c420 undefined FUN_1009c420(void) 129 0 +1009c4b0 FUN_1009c4b0 undefined FUN_1009c4b0(void) 101 0 +1009c520 FUN_1009c520 undefined FUN_1009c520(void) 24 1 +1009c540 FUN_1009c540 undefined FUN_1009c540(void) 32 1 +1009c560 FUN_1009c560 undefined FUN_1009c560(void) 2385 4 +1009cec0 FUN_1009cec0 undefined FUN_1009cec0(void) 106 2 +1009cf30 FUN_1009cf30 undefined FUN_1009cf30(void) 82 3 +1009cf90 DllGetClassObject HRESULT DllGetClassObject(IID * rclsid, IID * riid, LPVOID * ppv) 292 8 +1009d0c0 FUN_1009d0c0 undefined FUN_1009d0c0(void) 103 2 +1009d130 FUN_1009d130 undefined FUN_1009d130(void) 236 6 +1009d240 FUN_1009d240 undefined FUN_1009d240(void) 103 2 +1009d2b0 FUN_1009d2b0 undefined FUN_1009d2b0(void) 175 3 +1009d360 FUN_1009d360 undefined FUN_1009d360(void) 48 3 +1009d390 FUN_1009d390 undefined FUN_1009d390(void) 21 0 +1009d3b0 FUN_1009d3b0 undefined FUN_1009d3b0(void) 8 0 +1009d3c0 FUN_1009d3c0 undefined FUN_1009d3c0(void) 8 0 +1009d3d0 FUN_1009d3d0 undefined FUN_1009d3d0(void) 84 0 +1009d450 FUN_1009d450 undefined FUN_1009d450(void) 84 0 +1009d4b0 FUN_1009d4b0 undefined FUN_1009d4b0(void) 8 0 +1009d4c0 FUN_1009d4c0 undefined FUN_1009d4c0(void) 8 0 +1009d4d0 FUN_1009d4d0 undefined FUN_1009d4d0(void) 8 0 +1009d4e0 FUN_1009d4e0 undefined FUN_1009d4e0(void) 8 0 +1009d4f0 FUN_1009d4f0 undefined FUN_1009d4f0(void) 8 0 +1009d500 FUN_1009d500 undefined FUN_1009d500(void) 24 0 +1009d520 FUN_1009d520 undefined FUN_1009d520(void) 8 0 +1009d530 FUN_1009d530 undefined FUN_1009d530(void) 24 0 +1009d550 FUN_1009d550 undefined FUN_1009d550(void) 8 0 +1009d560 FUN_1009d560 undefined FUN_1009d560(void) 8 0 +1009d570 FUN_1009d570 undefined FUN_1009d570(void) 24 0 +1009d590 FUN_1009d590 undefined FUN_1009d590(void) 83 0 +1009d5f0 FUN_1009d5f0 undefined FUN_1009d5f0(void) 8 0 +1009d600 FUN_1009d600 undefined FUN_1009d600(void) 24 0 +1009d620 FUN_1009d620 undefined FUN_1009d620(void) 178 3 SysFreeString +1009d6e0 FUN_1009d6e0 undefined FUN_1009d6e0(void) 11 0 +1009d6f0 FUN_1009d6f0 undefined FUN_1009d6f0(void) 11 0 +1009d700 FUN_1009d700 undefined FUN_1009d700(void) 24 0 +1009d720 FUN_1009d720 undefined FUN_1009d720(void) 24 0 +1009d740 FUN_1009d740 undefined FUN_1009d740(void) 90 0 +1009d7a0 FUN_1009d7a0 undefined FUN_1009d7a0(void) 12 1 +1009d7d0 FUN_1009d7d0 undefined FUN_1009d7d0(void) 24 0 +1009d7f0 FUN_1009d7f0 undefined FUN_1009d7f0(void) 12 1 +1009d800 FUN_1009d800 undefined FUN_1009d800(void) 24 0 +1009d820 FUN_1009d820 undefined FUN_1009d820(void) 24 0 +1009d840 FUN_1009d840 undefined FUN_1009d840(void) 101 0 +1009d8b0 FUN_1009d8b0 undefined FUN_1009d8b0(void) 81 0 +1009d910 FUN_1009d910 undefined FUN_1009d910(void) 24 0 +1009d930 FUN_1009d930 undefined FUN_1009d930(void) 24 0 +1009d950 FUN_1009d950 undefined FUN_1009d950(void) 22 0 +1009d970 FUN_1009d970 undefined FUN_1009d970(void) 129 0 +1009da00 FUN_1009da00 undefined FUN_1009da00(void) 129 1 +1009da90 FUN_1009da90 undefined FUN_1009da90(void) 23 0 +1009dab0 FUN_1009dab0 undefined FUN_1009dab0(void) 32 1 +1009dad0 FUN_1009dad0 undefined FUN_1009dad0(void) 546 2 +1009dd00 FUN_1009dd00 undefined FUN_1009dd00(void) 546 2 +1009df30 FUN_1009df30 undefined FUN_1009df30(void) 24 0 +1009df50 FUN_1009df50 undefined FUN_1009df50(void) 12 1 +1009df60 FUN_1009df60 undefined FUN_1009df60(void) 24 0 +1009df80 FUN_1009df80 undefined FUN_1009df80(void) 101 0 +1009dff0 FUN_1009dff0 undefined FUN_1009dff0(void) 24 0 +1009e010 FUN_1009e010 undefined FUN_1009e010(void) 24 0 +1009e030 FUN_1009e030 undefined FUN_1009e030(void) 142 3 +1009e0c0 FUN_1009e0c0 undefined FUN_1009e0c0(void) 142 3 +1009e150 FUN_1009e150 undefined FUN_1009e150(void) 89 0 +1009e1b0 FUN_1009e1b0 undefined FUN_1009e1b0(void) 213 3 SysFreeString +1009e290 FUN_1009e290 undefined FUN_1009e290(void) 24 1 +1009e2b0 FUN_1009e2b0 undefined FUN_1009e2b0(void) 129 0 +1009e340 FUN_1009e340 undefined FUN_1009e340(void) 32 1 +1009e360 FUN_1009e360 undefined FUN_1009e360(void) 209 3 +1009e440 FUN_1009e440 undefined FUN_1009e440(void) 209 3 +1009e520 FUN_1009e520 undefined FUN_1009e520(void) 190 4 +1009e5af Catch@1009e5af undefined Catch@1009e5af(void) 21 2 +1009e600 FUN_1009e600 undefined FUN_1009e600(void) 87 0 +1009e660 FUN_1009e660 undefined FUN_1009e660(void) 24 1 +1009e680 FUN_1009e680 undefined FUN_1009e680(void) 38 2 +1009e6b0 FUN_1009e6b0 undefined FUN_1009e6b0(void) 190 4 +1009e73f Catch@1009e73f undefined Catch@1009e73f(void) 21 2 +1009e790 FUN_1009e790 undefined FUN_1009e790(void) 234 5 SysFreeString +1009e880 FUN_1009e880 undefined FUN_1009e880(void) 38 2 +1009e8b0 FUN_1009e8b0 undefined FUN_1009e8b0(void) 33 2 +1009e8e0 FUN_1009e8e0 undefined FUN_1009e8e0(void) 82 3 +1009e940 FUN_1009e940 undefined FUN_1009e940(void) 82 3 +1009e9a0 FUN_1009e9a0 undefined FUN_1009e9a0(void) 217 9 +1009ea80 FUN_1009ea80 undefined FUN_1009ea80(void) 1364 21 SysFreeString +1009efe0 FUN_1009efe0 undefined FUN_1009efe0(void) 85 4 +1009f040 FUN_1009f040 undefined FUN_1009f040(void) 500 11 +1009f240 FUN_1009f240 undefined FUN_1009f240(void) 500 11 +1009f440 FUN_1009f440 undefined FUN_1009f440(void) 462 10 +1009f610 FUN_1009f610 undefined FUN_1009f610(void) 635 10 +1009f890 FUN_1009f890 undefined FUN_1009f890(void) 8 0 +1009f8a0 FUN_1009f8a0 undefined FUN_1009f8a0(void) 185 4 SysFreeString +1009f960 FUN_1009f960 undefined FUN_1009f960(void) 10 0 +1009f970 FUN_1009f970 undefined FUN_1009f970(void) 45 0 +1009f9a0 FUN_1009f9a0 undefined FUN_1009f9a0(void) 25 0 +1009f9c0 FUN_1009f9c0 undefined FUN_1009f9c0(void) 29 0 +1009fa10 FUN_1009fa10 undefined FUN_1009fa10(void) 16 0 +1009fa20 FUN_1009fa20 undefined FUN_1009fa20(void) 19 0 +1009fa40 FUN_1009fa40 undefined FUN_1009fa40(void) 20 0 +1009fa60 FUN_1009fa60 undefined FUN_1009fa60(void) 19 0 +1009fa80 FUN_1009fa80 undefined FUN_1009fa80(void) 17 0 +1009faa0 FUN_1009faa0 undefined FUN_1009faa0(void) 17 0 +1009fac0 FUN_1009fac0 undefined FUN_1009fac0(void) 25 0 +1009fae0 FUN_1009fae0 undefined FUN_1009fae0(void) 23 0 +1009fb00 FUN_1009fb00 undefined FUN_1009fb00(void) 17 0 +1009fb20 FUN_1009fb20 undefined FUN_1009fb20(void) 58 0 +1009fb60 FUN_1009fb60 undefined FUN_1009fb60(void) 33 0 +1009fbb0 FUN_1009fbb0 undefined FUN_1009fbb0(void) 60 3 +1009fbf0 FUN_1009fbf0 undefined FUN_1009fbf0(void) 65 0 +1009fc40 FUN_1009fc40 undefined FUN_1009fc40(void) 59 1 +1009fc80 FUN_1009fc80 undefined FUN_1009fc80(void) 69 2 +1009fcd0 FUN_1009fcd0 undefined FUN_1009fcd0(void) 108 0 +1009fd40 FUN_1009fd40 undefined FUN_1009fd40(void) 94 0 +1009fda0 FUN_1009fda0 undefined FUN_1009fda0(void) 48 1 +1009fdd0 FUN_1009fdd0 undefined FUN_1009fdd0(void) 66 0 +1009fe20 FUN_1009fe20 undefined FUN_1009fe20(void) 116 0 +1009fea0 FUN_1009fea0 undefined FUN_1009fea0(void) 48 1 +1009fed0 FUN_1009fed0 undefined FUN_1009fed0(void) 66 0 +1009ff60 FUN_1009ff60 undefined FUN_1009ff60(void) 14 1 +1009ff90 FUN_1009ff90 undefined FUN_1009ff90(void) 43 0 +1009ffc0 FUN_1009ffc0 undefined FUN_1009ffc0(void) 15 0 +1009fff0 FUN_1009fff0 undefined FUN_1009fff0(void) 17 0 +100a0010 FUN_100a0010 undefined FUN_100a0010(void) 30 0 +100a0040 FUN_100a0040 undefined FUN_100a0040(void) 84 1 +100a00a0 FUN_100a00a0 undefined FUN_100a00a0(void) 158 4 +100a0140 FUN_100a0140 undefined FUN_100a0140(void) 260 4 memset +100a0290 FUN_100a0290 undefined FUN_100a0290(void) 86 0 +100a0400 FUN_100a0400 undefined FUN_100a0400(void) 33 0 +100a0430 FUN_100a0430 undefined FUN_100a0430(void) 21 0 +100a0510 FUN_100a0510 undefined FUN_100a0510(void) 53 0 +100a0550 FUN_100a0550 undefined FUN_100a0550(void) 94 1 +100a0620 FUN_100a0620 undefined FUN_100a0620(void) 17 0 +100a0640 FUN_100a0640 undefined FUN_100a0640(void) 24 0 +100a0660 FUN_100a0660 undefined FUN_100a0660(void) 17 0 +100a0710 FUN_100a0710 undefined FUN_100a0710(void) 17 0 +100a0730 FUN_100a0730 undefined FUN_100a0730(void) 24 0 +100a0750 FUN_100a0750 undefined FUN_100a0750(void) 17 0 +100a0800 FUN_100a0800 undefined FUN_100a0800(void) 17 0 +100a0820 FUN_100a0820 undefined FUN_100a0820(void) 32 0 +100a08a0 FUN_100a08a0 undefined FUN_100a08a0(void) 31 0 +100a0930 FUN_100a0930 undefined FUN_100a0930(void) 39 0 +100a09e0 FUN_100a09e0 undefined FUN_100a09e0(void) 24 0 +100a0a70 FUN_100a0a70 undefined FUN_100a0a70(void) 21 0 +100a0c50 FUN_100a0c50 undefined FUN_100a0c50(void) 26 1 +100a0c70 FUN_100a0c70 undefined FUN_100a0c70(void) 127 3 memcpy_s +100a0cf0 FUN_100a0cf0 undefined FUN_100a0cf0(void) 119 3 memcpy_s +100a0d70 FUN_100a0d70 undefined FUN_100a0d70(void) 21 0 +100a0d90 FUN_100a0d90 undefined FUN_100a0d90(void) 21 0 +100a0db0 FUN_100a0db0 undefined FUN_100a0db0(void) 21 0 +100a0dd0 FUN_100a0dd0 undefined FUN_100a0dd0(void) 8 0 +100a0de0 FUN_100a0de0 undefined FUN_100a0de0(void) 8 0 +100a0df0 FUN_100a0df0 undefined FUN_100a0df0(void) 8 0 +100a0e00 FUN_100a0e00 undefined FUN_100a0e00(void) 8 0 +100a0e10 FUN_100a0e10 undefined FUN_100a0e10(void) 8 0 +100a0e20 FUN_100a0e20 undefined FUN_100a0e20(void) 144 3 +100a0eb0 FUN_100a0eb0 undefined FUN_100a0eb0(void) 144 3 +100a0f40 FUN_100a0f40 undefined FUN_100a0f40(void) 12 0 +100a0f50 FUN_100a0f50 undefined FUN_100a0f50(void) 12 0 +100a0f60 FUN_100a0f60 undefined FUN_100a0f60(void) 12 0 +100a0f70 FUN_100a0f70 undefined FUN_100a0f70(void) 12 0 +100a0f80 FUN_100a0f80 undefined FUN_100a0f80(void) 12 0 +100a0f90 FUN_100a0f90 undefined FUN_100a0f90(void) 12 0 +100a0fa0 FUN_100a0fa0 undefined FUN_100a0fa0(void) 12 0 +100a0fb0 FUN_100a0fb0 undefined FUN_100a0fb0(void) 12 0 +100a0fc0 FUN_100a0fc0 undefined FUN_100a0fc0(void) 12 0 +100a0fd0 FUN_100a0fd0 undefined FUN_100a0fd0(void) 12 0 +100a0fe0 FUN_100a0fe0 undefined FUN_100a0fe0(void) 12 0 +100a0ff0 FUN_100a0ff0 undefined FUN_100a0ff0(void) 12 0 +100a1000 FUN_100a1000 undefined FUN_100a1000(void) 12 0 +100a1010 FUN_100a1010 undefined FUN_100a1010(void) 12 0 +100a1020 FUN_100a1020 undefined FUN_100a1020(void) 12 0 +100a1030 FUN_100a1030 undefined FUN_100a1030(void) 12 0 +100a1110 FUN_100a1110 undefined FUN_100a1110(void) 31 0 +100a1130 FUN_100a1130 undefined FUN_100a1130(void) 31 0 +100a1150 FUN_100a1150 undefined FUN_100a1150(void) 24 0 +100a1170 FUN_100a1170 undefined FUN_100a1170(void) 27 0 +100a1190 FUN_100a1190 undefined FUN_100a1190(void) 24 0 +100a11b0 FUN_100a11b0 undefined FUN_100a11b0(void) 27 0 +100a11d0 FUN_100a11d0 undefined FUN_100a11d0(void) 12 0 +100a11e0 FUN_100a11e0 undefined FUN_100a11e0(void) 12 0 +100a11f0 FUN_100a11f0 undefined FUN_100a11f0(void) 12 0 +100a1200 FUN_100a1200 undefined FUN_100a1200(void) 12 0 +100a1210 FUN_100a1210 undefined FUN_100a1210(void) 12 0 +100a1220 FUN_100a1220 undefined FUN_100a1220(void) 12 0 +100a1230 FUN_100a1230 undefined FUN_100a1230(void) 12 0 +100a1240 FUN_100a1240 undefined FUN_100a1240(void) 12 0 +100a1250 FUN_100a1250 undefined FUN_100a1250(void) 12 0 +100a1260 FUN_100a1260 undefined FUN_100a1260(void) 12 0 +100a1270 FUN_100a1270 undefined FUN_100a1270(void) 12 0 +100a1280 FUN_100a1280 undefined FUN_100a1280(void) 12 0 +100a1290 FUN_100a1290 undefined FUN_100a1290(void) 12 0 +100a12a0 FUN_100a12a0 undefined FUN_100a12a0(void) 12 0 +100a12b0 FUN_100a12b0 undefined FUN_100a12b0(void) 12 0 +100a12c0 FUN_100a12c0 undefined FUN_100a12c0(void) 12 0 +100a12d0 FUN_100a12d0 undefined FUN_100a12d0(void) 12 0 +100a12e0 FUN_100a12e0 undefined FUN_100a12e0(void) 12 0 +100a12f0 FUN_100a12f0 undefined FUN_100a12f0(void) 12 0 +100a1300 FUN_100a1300 undefined FUN_100a1300(void) 12 0 +100a1310 FUN_100a1310 undefined FUN_100a1310(void) 12 0 +100a1320 FUN_100a1320 undefined FUN_100a1320(void) 12 0 +100a1330 FUN_100a1330 undefined FUN_100a1330(void) 12 0 +100a1340 FUN_100a1340 undefined FUN_100a1340(void) 12 0 +100a1350 FUN_100a1350 undefined FUN_100a1350(void) 12 0 +100a1360 FUN_100a1360 undefined FUN_100a1360(void) 12 0 +100a1370 FUN_100a1370 undefined FUN_100a1370(void) 12 0 +100a1380 FUN_100a1380 undefined FUN_100a1380(void) 12 0 +100a1390 FUN_100a1390 undefined FUN_100a1390(void) 12 0 +100a13a0 FUN_100a13a0 undefined FUN_100a13a0(void) 12 0 +100a13b0 FUN_100a13b0 undefined FUN_100a13b0(void) 12 0 +100a13c0 FUN_100a13c0 undefined FUN_100a13c0(void) 12 0 +100a13d0 FUN_100a13d0 undefined FUN_100a13d0(void) 12 0 +100a13e0 FUN_100a13e0 undefined FUN_100a13e0(void) 12 0 +100a13f0 FUN_100a13f0 undefined FUN_100a13f0(void) 12 0 +100a1400 FUN_100a1400 undefined FUN_100a1400(void) 12 0 +100a1410 FUN_100a1410 undefined FUN_100a1410(void) 12 0 +100a1420 FUN_100a1420 undefined FUN_100a1420(void) 12 0 +100a1430 FUN_100a1430 undefined FUN_100a1430(void) 12 0 +100a1440 FUN_100a1440 undefined FUN_100a1440(void) 12 0 +100a1450 FUN_100a1450 undefined FUN_100a1450(void) 12 0 +100a1460 FUN_100a1460 undefined FUN_100a1460(void) 12 0 +100a1470 FUN_100a1470 undefined FUN_100a1470(void) 12 0 +100a1480 FUN_100a1480 undefined FUN_100a1480(void) 12 0 +100a1490 FUN_100a1490 undefined FUN_100a1490(void) 12 0 +100a14a0 FUN_100a14a0 undefined FUN_100a14a0(void) 12 0 +100a14b0 FUN_100a14b0 undefined FUN_100a14b0(void) 12 0 +100a14c0 FUN_100a14c0 undefined FUN_100a14c0(void) 12 0 +100a14d0 FUN_100a14d0 undefined FUN_100a14d0(void) 12 0 +100a14e0 FUN_100a14e0 undefined FUN_100a14e0(void) 12 0 +100a14f0 FUN_100a14f0 undefined FUN_100a14f0(void) 12 0 +100a1500 FUN_100a1500 undefined FUN_100a1500(void) 12 0 +100a1510 FUN_100a1510 undefined FUN_100a1510(void) 12 0 +100a1520 FUN_100a1520 undefined FUN_100a1520(void) 12 0 +100a1530 FUN_100a1530 undefined FUN_100a1530(void) 12 0 +100a1540 FUN_100a1540 undefined FUN_100a1540(void) 12 0 +100a1550 FUN_100a1550 undefined FUN_100a1550(void) 12 0 +100a1560 FUN_100a1560 undefined FUN_100a1560(void) 12 0 +100a1570 FUN_100a1570 undefined FUN_100a1570(void) 12 0 +100a1580 FUN_100a1580 undefined FUN_100a1580(void) 12 0 +100a1590 FUN_100a1590 undefined FUN_100a1590(void) 12 0 +100a15a0 FUN_100a15a0 undefined FUN_100a15a0(void) 12 0 +100a15b0 FUN_100a15b0 undefined FUN_100a15b0(void) 12 0 +100a15c0 FUN_100a15c0 undefined FUN_100a15c0(void) 12 0 +100a15d0 FUN_100a15d0 undefined FUN_100a15d0(void) 12 0 +100a15e0 FUN_100a15e0 undefined FUN_100a15e0(void) 12 0 +100a15f0 FUN_100a15f0 undefined FUN_100a15f0(void) 12 0 +100a1600 FUN_100a1600 undefined FUN_100a1600(void) 12 0 +100a1610 FUN_100a1610 undefined FUN_100a1610(void) 12 0 +100a1620 FUN_100a1620 undefined FUN_100a1620(void) 12 0 +100a1630 FUN_100a1630 undefined FUN_100a1630(void) 12 0 +100a1640 FUN_100a1640 undefined FUN_100a1640(void) 12 0 +100a1650 FUN_100a1650 undefined FUN_100a1650(void) 12 0 +100a1660 FUN_100a1660 undefined FUN_100a1660(void) 12 0 +100a1670 FUN_100a1670 undefined FUN_100a1670(void) 12 0 +100a1680 FUN_100a1680 undefined FUN_100a1680(void) 12 0 +100a1690 FUN_100a1690 undefined FUN_100a1690(void) 12 0 +100a16a0 FUN_100a16a0 undefined FUN_100a16a0(void) 12 0 +100a16b0 FUN_100a16b0 undefined FUN_100a16b0(void) 12 0 +100a16c0 FUN_100a16c0 undefined FUN_100a16c0(void) 12 0 +100a16d0 FUN_100a16d0 undefined FUN_100a16d0(void) 12 0 +100a16e0 FUN_100a16e0 undefined FUN_100a16e0(void) 12 0 +100a16f0 FUN_100a16f0 undefined FUN_100a16f0(void) 12 0 +100a1700 FUN_100a1700 undefined FUN_100a1700(void) 12 0 +100a1710 FUN_100a1710 undefined FUN_100a1710(void) 12 0 +100a1720 FUN_100a1720 undefined FUN_100a1720(void) 12 0 +100a1730 FUN_100a1730 undefined FUN_100a1730(void) 12 0 +100a1740 FUN_100a1740 undefined FUN_100a1740(void) 12 0 +100a1750 FUN_100a1750 undefined FUN_100a1750(void) 12 0 +100a1760 FUN_100a1760 undefined FUN_100a1760(void) 12 0 +100a1770 FUN_100a1770 undefined FUN_100a1770(void) 12 0 +100a1780 FUN_100a1780 undefined FUN_100a1780(void) 12 0 +100a1790 FUN_100a1790 undefined FUN_100a1790(void) 12 0 +100a17a0 FUN_100a17a0 undefined FUN_100a17a0(void) 12 0 +100a17b0 FUN_100a17b0 undefined FUN_100a17b0(void) 12 0 +100a17c0 FUN_100a17c0 undefined FUN_100a17c0(void) 12 0 +100a17d0 FUN_100a17d0 undefined FUN_100a17d0(void) 12 0 +100a17e0 FUN_100a17e0 undefined FUN_100a17e0(void) 12 0 +100a17f0 FUN_100a17f0 undefined FUN_100a17f0(void) 12 0 +100a1800 FUN_100a1800 undefined FUN_100a1800(void) 12 0 +100a1810 FUN_100a1810 undefined FUN_100a1810(void) 12 0 +100a1820 FUN_100a1820 undefined FUN_100a1820(void) 12 0 +100a1830 FUN_100a1830 undefined FUN_100a1830(void) 12 0 +100a1840 FUN_100a1840 undefined FUN_100a1840(void) 12 0 +100a1850 FUN_100a1850 undefined FUN_100a1850(void) 12 0 +100a1860 FUN_100a1860 undefined FUN_100a1860(void) 12 0 +100a1870 FUN_100a1870 undefined FUN_100a1870(void) 12 0 +100a1880 FUN_100a1880 undefined FUN_100a1880(void) 12 0 +100a1890 FUN_100a1890 undefined FUN_100a1890(void) 12 0 +100a18a0 FUN_100a18a0 undefined FUN_100a18a0(void) 12 0 +100a18b0 FUN_100a18b0 undefined FUN_100a18b0(void) 12 0 +100a18c0 FUN_100a18c0 undefined FUN_100a18c0(void) 12 0 +100a18d0 FUN_100a18d0 undefined FUN_100a18d0(void) 12 0 +100a18e0 FUN_100a18e0 undefined FUN_100a18e0(void) 12 0 +100a18f0 FUN_100a18f0 undefined FUN_100a18f0(void) 12 0 +100a1900 FUN_100a1900 undefined FUN_100a1900(void) 12 0 +100a1910 FUN_100a1910 undefined FUN_100a1910(void) 12 0 +100a1920 FUN_100a1920 undefined FUN_100a1920(void) 12 0 +100a1930 FUN_100a1930 undefined FUN_100a1930(void) 12 0 +100a1940 FUN_100a1940 undefined FUN_100a1940(void) 12 0 +100a1950 FUN_100a1950 undefined FUN_100a1950(void) 12 0 +100a1960 FUN_100a1960 undefined FUN_100a1960(void) 12 0 +100a1970 FUN_100a1970 undefined FUN_100a1970(void) 12 0 +100a1980 FUN_100a1980 undefined FUN_100a1980(void) 12 0 +100a1990 FUN_100a1990 undefined FUN_100a1990(void) 12 0 +100a19a0 FUN_100a19a0 undefined FUN_100a19a0(void) 12 0 +100a19b0 FUN_100a19b0 undefined FUN_100a19b0(void) 12 0 +100a19c0 FUN_100a19c0 undefined FUN_100a19c0(void) 12 0 +100a19d0 FUN_100a19d0 undefined FUN_100a19d0(void) 12 0 +100a19e0 FUN_100a19e0 undefined FUN_100a19e0(void) 12 0 +100a19f0 FUN_100a19f0 undefined FUN_100a19f0(void) 12 0 +100a1a00 FUN_100a1a00 undefined FUN_100a1a00(void) 12 0 +100a1a10 FUN_100a1a10 undefined FUN_100a1a10(void) 12 0 +100a1a20 FUN_100a1a20 undefined FUN_100a1a20(void) 12 0 +100a1a30 FUN_100a1a30 undefined FUN_100a1a30(void) 12 0 +100a1a40 FUN_100a1a40 undefined FUN_100a1a40(void) 12 0 +100a1a50 FUN_100a1a50 undefined FUN_100a1a50(void) 12 0 +100a1a60 FUN_100a1a60 undefined FUN_100a1a60(void) 12 0 +100a1a70 FUN_100a1a70 undefined FUN_100a1a70(void) 12 0 +100a1a80 FUN_100a1a80 undefined FUN_100a1a80(void) 12 0 +100a1a90 FUN_100a1a90 undefined FUN_100a1a90(void) 12 0 +100a1aa0 FUN_100a1aa0 undefined FUN_100a1aa0(void) 12 0 +100a1ab0 FUN_100a1ab0 undefined FUN_100a1ab0(void) 12 0 +100a1ac0 FUN_100a1ac0 undefined FUN_100a1ac0(void) 12 0 +100a1ad0 FUN_100a1ad0 undefined FUN_100a1ad0(void) 12 0 +100a1ae0 FUN_100a1ae0 undefined FUN_100a1ae0(void) 12 0 +100a1af0 FUN_100a1af0 undefined FUN_100a1af0(void) 12 0 +100a1b00 FUN_100a1b00 undefined FUN_100a1b00(void) 12 0 +100a1b10 FUN_100a1b10 undefined FUN_100a1b10(void) 12 0 +100a1b20 FUN_100a1b20 undefined FUN_100a1b20(void) 12 0 +100a1b30 FUN_100a1b30 undefined FUN_100a1b30(void) 12 0 +100a1b40 FUN_100a1b40 undefined FUN_100a1b40(void) 12 0 +100a1b50 FUN_100a1b50 undefined FUN_100a1b50(void) 12 0 +100a1b60 FUN_100a1b60 undefined FUN_100a1b60(void) 12 0 +100a1b70 FUN_100a1b70 undefined FUN_100a1b70(void) 12 0 +100a1b80 FUN_100a1b80 undefined FUN_100a1b80(void) 12 0 +100a1b90 FUN_100a1b90 undefined FUN_100a1b90(void) 12 0 +100a1ba0 FUN_100a1ba0 undefined FUN_100a1ba0(void) 12 0 +100a1bb0 FUN_100a1bb0 undefined FUN_100a1bb0(void) 12 0 +100a1bc0 FUN_100a1bc0 undefined FUN_100a1bc0(void) 12 0 +100a1bd0 FUN_100a1bd0 undefined FUN_100a1bd0(void) 12 0 +100a1be0 FUN_100a1be0 undefined FUN_100a1be0(void) 12 0 +100a1bf0 FUN_100a1bf0 undefined FUN_100a1bf0(void) 12 0 +100a1c00 FUN_100a1c00 undefined FUN_100a1c00(void) 12 0 +100a1c10 FUN_100a1c10 undefined FUN_100a1c10(void) 12 0 +100a1c20 FUN_100a1c20 undefined FUN_100a1c20(void) 12 0 +100a1c30 FUN_100a1c30 undefined FUN_100a1c30(void) 12 0 +100a1c40 FUN_100a1c40 undefined FUN_100a1c40(void) 12 0 +100a1c50 FUN_100a1c50 undefined FUN_100a1c50(void) 12 0 +100a1c60 FUN_100a1c60 undefined FUN_100a1c60(void) 12 0 +100a1c70 FUN_100a1c70 undefined FUN_100a1c70(void) 12 0 +100a1c80 FUN_100a1c80 undefined FUN_100a1c80(void) 12 0 +100a1c90 FUN_100a1c90 undefined FUN_100a1c90(void) 12 0 +100a1ca0 FUN_100a1ca0 undefined FUN_100a1ca0(void) 12 0 +100a1cb0 FUN_100a1cb0 undefined FUN_100a1cb0(void) 12 0 +100a1cc0 FUN_100a1cc0 undefined FUN_100a1cc0(void) 12 0 +100a1cd0 FUN_100a1cd0 undefined FUN_100a1cd0(void) 12 0 +100a1ce0 FUN_100a1ce0 undefined FUN_100a1ce0(void) 12 0 +100a1cf0 FUN_100a1cf0 undefined FUN_100a1cf0(void) 12 0 +100a1d00 FUN_100a1d00 undefined FUN_100a1d00(void) 12 0 +100a1d10 FUN_100a1d10 undefined FUN_100a1d10(void) 12 0 +100a1d20 FUN_100a1d20 undefined FUN_100a1d20(void) 12 0 +100a1d30 FUN_100a1d30 undefined FUN_100a1d30(void) 12 0 +100a1d40 FUN_100a1d40 undefined FUN_100a1d40(void) 12 0 +100a1d50 FUN_100a1d50 undefined FUN_100a1d50(void) 12 0 +100a1d60 FUN_100a1d60 undefined FUN_100a1d60(void) 12 0 +100a1d70 FUN_100a1d70 undefined FUN_100a1d70(void) 12 0 +100a1d80 FUN_100a1d80 undefined FUN_100a1d80(void) 12 0 +100a1d90 FUN_100a1d90 undefined FUN_100a1d90(void) 12 0 +100a1da0 FUN_100a1da0 undefined FUN_100a1da0(void) 12 0 +100a1db0 FUN_100a1db0 undefined FUN_100a1db0(void) 12 0 +100a1dc0 FUN_100a1dc0 undefined FUN_100a1dc0(void) 12 0 +100a1dd0 FUN_100a1dd0 undefined FUN_100a1dd0(void) 12 0 +100a1de0 FUN_100a1de0 undefined FUN_100a1de0(void) 12 0 +100a1df0 FUN_100a1df0 undefined FUN_100a1df0(void) 12 0 +100a1e00 FUN_100a1e00 undefined FUN_100a1e00(void) 12 0 +100a1e10 FUN_100a1e10 undefined FUN_100a1e10(void) 12 0 +100a1e20 FUN_100a1e20 undefined FUN_100a1e20(void) 12 0 +100a1e30 FUN_100a1e30 undefined FUN_100a1e30(void) 12 0 +100a1e40 FUN_100a1e40 undefined FUN_100a1e40(void) 12 0 +100a1e50 FUN_100a1e50 undefined FUN_100a1e50(void) 12 0 +100a1e60 FUN_100a1e60 undefined FUN_100a1e60(void) 12 0 +100a1e70 FUN_100a1e70 undefined FUN_100a1e70(void) 12 0 +100a1f80 FUN_100a1f80 undefined FUN_100a1f80(void) 84 0 +100a1fe0 FUN_100a1fe0 undefined FUN_100a1fe0(void) 24 0 +100a2000 FUN_100a2000 undefined FUN_100a2000(void) 84 0 +100a2060 FUN_100a2060 undefined FUN_100a2060(void) 31 0 +100a2080 FUN_100a2080 undefined FUN_100a2080(void) 46 0 +100a20b0 FUN_100a20b0 undefined FUN_100a20b0(void) 31 0 +100a20d0 FUN_100a20d0 undefined FUN_100a20d0(void) 31 0 +100a20f0 FUN_100a20f0 undefined FUN_100a20f0(void) 31 0 +100a2110 FUN_100a2110 undefined FUN_100a2110(void) 31 0 +100a2130 FUN_100a2130 undefined FUN_100a2130(void) 31 0 +100a2150 FUN_100a2150 undefined FUN_100a2150(void) 31 0 +100a2170 FUN_100a2170 undefined FUN_100a2170(void) 31 0 +100a2190 FUN_100a2190 undefined FUN_100a2190(void) 31 0 +100a21b0 FUN_100a21b0 undefined FUN_100a21b0(void) 31 0 +100a21d0 FUN_100a21d0 undefined FUN_100a21d0(void) 31 0 +100a21f0 FUN_100a21f0 undefined FUN_100a21f0(void) 31 0 +100a2210 FUN_100a2210 undefined FUN_100a2210(void) 31 0 +100a2230 FUN_100a2230 undefined FUN_100a2230(void) 31 0 +100a2250 FUN_100a2250 undefined FUN_100a2250(void) 31 0 +100a2270 FUN_100a2270 undefined FUN_100a2270(void) 31 0 +100a2290 FUN_100a2290 undefined FUN_100a2290(void) 31 0 +100a22b0 FUN_100a22b0 undefined FUN_100a22b0(void) 31 0 +100a22d0 FUN_100a22d0 undefined FUN_100a22d0(void) 31 0 +100a22f0 FUN_100a22f0 undefined FUN_100a22f0(void) 31 0 +100a2310 FUN_100a2310 undefined FUN_100a2310(void) 31 0 +100a2330 FUN_100a2330 undefined FUN_100a2330(void) 31 0 +100a2350 FUN_100a2350 undefined FUN_100a2350(void) 31 0 +100a2370 FUN_100a2370 undefined FUN_100a2370(void) 31 0 +100a2390 FUN_100a2390 undefined FUN_100a2390(void) 31 0 +100a23b0 FUN_100a23b0 undefined FUN_100a23b0(void) 31 0 +100a23d0 FUN_100a23d0 undefined FUN_100a23d0(void) 31 0 +100a23f0 FUN_100a23f0 undefined FUN_100a23f0(void) 31 0 +100a2410 FUN_100a2410 undefined FUN_100a2410(void) 24 0 +100a2430 FUN_100a2430 undefined FUN_100a2430(void) 27 0 +100a2450 FUN_100a2450 undefined FUN_100a2450(void) 24 0 +100a2470 FUN_100a2470 undefined FUN_100a2470(void) 27 0 +100a2490 FUN_100a2490 undefined FUN_100a2490(void) 24 0 +100a24b0 FUN_100a24b0 undefined FUN_100a24b0(void) 27 0 +100a24d0 FUN_100a24d0 undefined FUN_100a24d0(void) 24 0 +100a24f0 FUN_100a24f0 undefined FUN_100a24f0(void) 27 0 +100a2510 FUN_100a2510 undefined FUN_100a2510(void) 24 0 +100a2530 FUN_100a2530 undefined FUN_100a2530(void) 27 0 +100a2550 FUN_100a2550 undefined FUN_100a2550(void) 24 0 +100a2570 FUN_100a2570 undefined FUN_100a2570(void) 27 0 +100a2590 FUN_100a2590 undefined FUN_100a2590(void) 24 0 +100a25b0 FUN_100a25b0 undefined FUN_100a25b0(void) 27 0 +100a25d0 FUN_100a25d0 undefined FUN_100a25d0(void) 24 0 +100a25f0 FUN_100a25f0 undefined FUN_100a25f0(void) 27 0 +100a2610 FUN_100a2610 undefined FUN_100a2610(void) 24 0 +100a2630 FUN_100a2630 undefined FUN_100a2630(void) 27 0 +100a2650 FUN_100a2650 undefined FUN_100a2650(void) 24 0 +100a2670 FUN_100a2670 undefined FUN_100a2670(void) 27 0 +100a2690 FUN_100a2690 undefined FUN_100a2690(void) 24 0 +100a26b0 FUN_100a26b0 undefined FUN_100a26b0(void) 27 0 +100a26d0 FUN_100a26d0 undefined FUN_100a26d0(void) 24 0 +100a26f0 FUN_100a26f0 undefined FUN_100a26f0(void) 27 0 +100a2710 FUN_100a2710 undefined FUN_100a2710(void) 24 0 +100a2730 FUN_100a2730 undefined FUN_100a2730(void) 27 0 +100a2750 FUN_100a2750 undefined FUN_100a2750(void) 24 0 +100a2770 FUN_100a2770 undefined FUN_100a2770(void) 27 0 +100a2790 FUN_100a2790 undefined FUN_100a2790(void) 24 0 +100a27b0 FUN_100a27b0 undefined FUN_100a27b0(void) 27 0 +100a27d0 FUN_100a27d0 undefined FUN_100a27d0(void) 24 0 +100a27f0 FUN_100a27f0 undefined FUN_100a27f0(void) 27 0 +100a2810 FUN_100a2810 undefined FUN_100a2810(void) 24 0 +100a2830 FUN_100a2830 undefined FUN_100a2830(void) 27 0 +100a2850 FUN_100a2850 undefined FUN_100a2850(void) 24 0 +100a2870 FUN_100a2870 undefined FUN_100a2870(void) 27 0 +100a2890 FUN_100a2890 undefined FUN_100a2890(void) 24 0 +100a28b0 FUN_100a28b0 undefined FUN_100a28b0(void) 27 0 +100a28d0 FUN_100a28d0 undefined FUN_100a28d0(void) 24 0 +100a28f0 FUN_100a28f0 undefined FUN_100a28f0(void) 27 0 +100a2910 FUN_100a2910 undefined FUN_100a2910(void) 24 0 +100a2930 FUN_100a2930 undefined FUN_100a2930(void) 27 0 +100a2950 FUN_100a2950 undefined FUN_100a2950(void) 24 0 +100a2970 FUN_100a2970 undefined FUN_100a2970(void) 27 0 +100a2990 FUN_100a2990 undefined FUN_100a2990(void) 24 0 +100a29b0 FUN_100a29b0 undefined FUN_100a29b0(void) 27 0 +100a29d0 FUN_100a29d0 undefined FUN_100a29d0(void) 24 0 +100a29f0 FUN_100a29f0 undefined FUN_100a29f0(void) 27 0 +100a2a10 FUN_100a2a10 undefined FUN_100a2a10(void) 24 0 +100a2a30 FUN_100a2a30 undefined FUN_100a2a30(void) 27 0 +100a2a50 FUN_100a2a50 undefined FUN_100a2a50(void) 24 0 +100a2a70 FUN_100a2a70 undefined FUN_100a2a70(void) 27 0 +100a2a90 FUN_100a2a90 undefined FUN_100a2a90(void) 24 0 +100a2ab0 FUN_100a2ab0 undefined FUN_100a2ab0(void) 27 0 +100a2ad0 FUN_100a2ad0 undefined FUN_100a2ad0(void) 24 0 +100a2af0 FUN_100a2af0 undefined FUN_100a2af0(void) 27 0 +100a2b40 FUN_100a2b40 undefined FUN_100a2b40(void) 84 0 +100a2ba0 FUN_100a2ba0 undefined FUN_100a2ba0(void) 84 0 +100a2c00 FUN_100a2c00 undefined FUN_100a2c00(void) 8 0 +100a2c10 FUN_100a2c10 undefined FUN_100a2c10(void) 41 0 +100a2c40 FUN_100a2c40 undefined FUN_100a2c40(void) 41 0 +100a2c70 FUN_100a2c70 undefined FUN_100a2c70(void) 41 0 +100a2ca0 FUN_100a2ca0 undefined FUN_100a2ca0(void) 41 0 +100a2cd0 FUN_100a2cd0 undefined FUN_100a2cd0(void) 41 0 +100a2d00 FUN_100a2d00 undefined FUN_100a2d00(void) 8 0 +100a2d10 FUN_100a2d10 undefined FUN_100a2d10(void) 8 0 +100a2d20 FUN_100a2d20 undefined FUN_100a2d20(void) 8 0 +100a2d30 FUN_100a2d30 undefined FUN_100a2d30(void) 8 0 +100a2d40 FUN_100a2d40 undefined FUN_100a2d40(void) 41 0 +100a2d70 FUN_100a2d70 undefined FUN_100a2d70(void) 41 0 +100a2da0 FUN_100a2da0 undefined FUN_100a2da0(void) 41 0 +100a2dd0 FUN_100a2dd0 undefined FUN_100a2dd0(void) 8 0 +100a2df0 FUN_100a2df0 undefined FUN_100a2df0(void) 8 0 +100a2e10 FUN_100a2e10 undefined FUN_100a2e10(void) 45 1 memmove +100a2e40 FUN_100a2e40 undefined FUN_100a2e40(void) 45 1 memmove +100a2e70 FUN_100a2e70 undefined FUN_100a2e70(void) 8 0 +100a2e80 FUN_100a2e80 undefined FUN_100a2e80(void) 24 0 +100a2ea0 FUN_100a2ea0 undefined FUN_100a2ea0(void) 8 0 +100a2eb0 FUN_100a2eb0 undefined FUN_100a2eb0(void) 24 0 +100a2f40 FUN_100a2f40 undefined FUN_100a2f40(void) 8 0 +100a2f50 FUN_100a2f50 undefined FUN_100a2f50(void) 8 0 +100a2f60 FUN_100a2f60 undefined FUN_100a2f60(void) 8 0 +100a3530 FUN_100a3530 undefined FUN_100a3530(void) 42 0 +100a3560 FUN_100a3560 undefined FUN_100a3560(void) 43 0 +100a3590 FUN_100a3590 undefined FUN_100a3590(void) 22 0 +100a35b0 FUN_100a35b0 undefined FUN_100a35b0(void) 22 0 +100a35d0 FUN_100a35d0 undefined FUN_100a35d0(void) 22 0 +100a35f0 FUN_100a35f0 undefined FUN_100a35f0(void) 131 3 SysFreeString +100a3680 FUN_100a3680 undefined FUN_100a3680(void) 131 3 SysFreeString +100a3710 FUN_100a3710 undefined FUN_100a3710(void) 113 1 SysFreeString +100a3790 FUN_100a3790 undefined FUN_100a3790(void) 37 0 +100a37c0 FUN_100a37c0 undefined FUN_100a37c0(void) 43 0 +100a37f0 FUN_100a37f0 undefined FUN_100a37f0(void) 22 0 +100a3810 FUN_100a3810 undefined FUN_100a3810(void) 22 0 +100a3830 FUN_100a3830 undefined FUN_100a3830(void) 22 0 +100a3850 FUN_100a3850 undefined FUN_100a3850(void) 131 3 SysFreeString +100a38e0 FUN_100a38e0 undefined FUN_100a38e0(void) 131 3 SysFreeString +100a3970 FUN_100a3970 undefined FUN_100a3970(void) 113 1 SysFreeString +100a39f0 FUN_100a39f0 undefined FUN_100a39f0(void) 27 0 +100a3a10 FUN_100a3a10 undefined FUN_100a3a10(void) 43 0 +100a3a40 FUN_100a3a40 undefined FUN_100a3a40(void) 22 0 +100a3a60 FUN_100a3a60 undefined FUN_100a3a60(void) 22 0 +100a3a80 FUN_100a3a80 undefined FUN_100a3a80(void) 22 0 +100a3aa0 FUN_100a3aa0 undefined FUN_100a3aa0(void) 131 3 SysFreeString +100a3b30 FUN_100a3b30 undefined FUN_100a3b30(void) 131 3 SysFreeString +100a3bc0 FUN_100a3bc0 undefined FUN_100a3bc0(void) 113 1 SysFreeString +100a3c40 FUN_100a3c40 undefined FUN_100a3c40(void) 24 0 +100a3c60 FUN_100a3c60 undefined FUN_100a3c60(void) 43 0 +100a3c90 FUN_100a3c90 undefined FUN_100a3c90(void) 22 0 +100a3cb0 FUN_100a3cb0 undefined FUN_100a3cb0(void) 22 0 +100a3cd0 FUN_100a3cd0 undefined FUN_100a3cd0(void) 22 0 +100a3cf0 FUN_100a3cf0 undefined FUN_100a3cf0(void) 131 3 SysFreeString +100a3d80 FUN_100a3d80 undefined FUN_100a3d80(void) 131 3 SysFreeString +100a3e10 FUN_100a3e10 undefined FUN_100a3e10(void) 113 1 SysFreeString +100a3e90 FUN_100a3e90 undefined FUN_100a3e90(void) 43 0 +100a3ec0 FUN_100a3ec0 undefined FUN_100a3ec0(void) 22 0 +100a3ee0 FUN_100a3ee0 undefined FUN_100a3ee0(void) 22 0 +100a3f00 FUN_100a3f00 undefined FUN_100a3f00(void) 22 0 +100a3f20 FUN_100a3f20 undefined FUN_100a3f20(void) 131 3 SysFreeString +100a3fb0 FUN_100a3fb0 undefined FUN_100a3fb0(void) 131 3 SysFreeString +100a4040 FUN_100a4040 undefined FUN_100a4040(void) 113 1 SysFreeString +100a40c0 FUN_100a40c0 undefined FUN_100a40c0(void) 43 0 +100a40f0 FUN_100a40f0 undefined FUN_100a40f0(void) 22 0 +100a4110 FUN_100a4110 undefined FUN_100a4110(void) 22 0 +100a4130 FUN_100a4130 undefined FUN_100a4130(void) 22 0 +100a4150 FUN_100a4150 undefined FUN_100a4150(void) 131 3 SysFreeString +100a41e0 FUN_100a41e0 undefined FUN_100a41e0(void) 131 3 SysFreeString +100a4270 FUN_100a4270 undefined FUN_100a4270(void) 113 1 SysFreeString +100a42f0 FUN_100a42f0 undefined FUN_100a42f0(void) 43 0 +100a4320 FUN_100a4320 undefined FUN_100a4320(void) 22 0 +100a4340 FUN_100a4340 undefined FUN_100a4340(void) 22 0 +100a4360 FUN_100a4360 undefined FUN_100a4360(void) 22 0 +100a4380 FUN_100a4380 undefined FUN_100a4380(void) 131 3 SysFreeString +100a4410 FUN_100a4410 undefined FUN_100a4410(void) 131 3 SysFreeString +100a44a0 FUN_100a44a0 undefined FUN_100a44a0(void) 113 1 SysFreeString +100a4520 FUN_100a4520 undefined FUN_100a4520(void) 27 0 +100a4540 FUN_100a4540 undefined FUN_100a4540(void) 43 0 +100a4570 FUN_100a4570 undefined FUN_100a4570(void) 22 0 +100a4590 FUN_100a4590 undefined FUN_100a4590(void) 22 0 +100a45b0 FUN_100a45b0 undefined FUN_100a45b0(void) 22 0 +100a45d0 FUN_100a45d0 undefined FUN_100a45d0(void) 131 3 SysFreeString +100a4660 FUN_100a4660 undefined FUN_100a4660(void) 131 3 SysFreeString +100a46f0 FUN_100a46f0 undefined FUN_100a46f0(void) 113 1 SysFreeString +100a4770 FUN_100a4770 undefined FUN_100a4770(void) 27 0 +100a4790 FUN_100a4790 undefined FUN_100a4790(void) 43 0 +100a47c0 FUN_100a47c0 undefined FUN_100a47c0(void) 22 0 +100a47e0 FUN_100a47e0 undefined FUN_100a47e0(void) 22 0 +100a4800 FUN_100a4800 undefined FUN_100a4800(void) 22 0 +100a4820 FUN_100a4820 undefined FUN_100a4820(void) 131 3 SysFreeString +100a48b0 FUN_100a48b0 undefined FUN_100a48b0(void) 131 3 SysFreeString +100a4940 FUN_100a4940 undefined FUN_100a4940(void) 113 1 SysFreeString +100a49c0 FUN_100a49c0 undefined FUN_100a49c0(void) 22 0 +100a49e0 FUN_100a49e0 undefined FUN_100a49e0(void) 43 0 +100a4a10 FUN_100a4a10 undefined FUN_100a4a10(void) 22 0 +100a4a30 FUN_100a4a30 undefined FUN_100a4a30(void) 22 0 +100a4a50 FUN_100a4a50 undefined FUN_100a4a50(void) 22 0 +100a4a70 FUN_100a4a70 undefined FUN_100a4a70(void) 131 3 SysFreeString +100a4b00 FUN_100a4b00 undefined FUN_100a4b00(void) 131 3 SysFreeString +100a4b90 FUN_100a4b90 undefined FUN_100a4b90(void) 113 1 SysFreeString +100a4c10 FUN_100a4c10 undefined FUN_100a4c10(void) 22 0 +100a4c30 FUN_100a4c30 undefined FUN_100a4c30(void) 43 0 +100a4c60 FUN_100a4c60 undefined FUN_100a4c60(void) 22 0 +100a4c80 FUN_100a4c80 undefined FUN_100a4c80(void) 22 0 +100a4ca0 FUN_100a4ca0 undefined FUN_100a4ca0(void) 22 0 +100a4cc0 FUN_100a4cc0 undefined FUN_100a4cc0(void) 131 3 SysFreeString +100a4d50 FUN_100a4d50 undefined FUN_100a4d50(void) 131 3 SysFreeString +100a4de0 FUN_100a4de0 undefined FUN_100a4de0(void) 113 1 SysFreeString +100a4e60 FUN_100a4e60 undefined FUN_100a4e60(void) 43 0 +100a4e90 FUN_100a4e90 undefined FUN_100a4e90(void) 22 0 +100a4eb0 FUN_100a4eb0 undefined FUN_100a4eb0(void) 22 0 +100a4ed0 FUN_100a4ed0 undefined FUN_100a4ed0(void) 22 0 +100a4ef0 FUN_100a4ef0 undefined FUN_100a4ef0(void) 131 3 SysFreeString +100a4f80 FUN_100a4f80 undefined FUN_100a4f80(void) 131 3 SysFreeString +100a5010 FUN_100a5010 undefined FUN_100a5010(void) 113 1 SysFreeString +100a5090 FUN_100a5090 undefined FUN_100a5090(void) 43 0 +100a50c0 FUN_100a50c0 undefined FUN_100a50c0(void) 22 0 +100a50e0 FUN_100a50e0 undefined FUN_100a50e0(void) 22 0 +100a5100 FUN_100a5100 undefined FUN_100a5100(void) 22 0 +100a5120 FUN_100a5120 undefined FUN_100a5120(void) 131 3 SysFreeString +100a51b0 FUN_100a51b0 undefined FUN_100a51b0(void) 131 3 SysFreeString +100a5240 FUN_100a5240 undefined FUN_100a5240(void) 113 1 SysFreeString +100a52c0 FUN_100a52c0 undefined FUN_100a52c0(void) 43 0 +100a52f0 FUN_100a52f0 undefined FUN_100a52f0(void) 22 0 +100a5310 FUN_100a5310 undefined FUN_100a5310(void) 22 0 +100a5330 FUN_100a5330 undefined FUN_100a5330(void) 22 0 +100a5350 FUN_100a5350 undefined FUN_100a5350(void) 131 3 SysFreeString +100a53e0 FUN_100a53e0 undefined FUN_100a53e0(void) 131 3 SysFreeString +100a5470 FUN_100a5470 undefined FUN_100a5470(void) 113 1 SysFreeString +100a54f0 FUN_100a54f0 undefined FUN_100a54f0(void) 97 1 +100a5560 FUN_100a5560 undefined FUN_100a5560(void) 43 0 +100a5590 FUN_100a5590 undefined FUN_100a5590(void) 22 0 +100a55b0 FUN_100a55b0 undefined FUN_100a55b0(void) 22 0 +100a55d0 FUN_100a55d0 undefined FUN_100a55d0(void) 22 0 +100a55f0 FUN_100a55f0 undefined FUN_100a55f0(void) 131 3 SysFreeString +100a5680 FUN_100a5680 undefined FUN_100a5680(void) 131 3 SysFreeString +100a5710 FUN_100a5710 undefined FUN_100a5710(void) 113 1 SysFreeString +100a5790 FUN_100a5790 undefined FUN_100a5790(void) 32 0 +100a57b0 FUN_100a57b0 undefined FUN_100a57b0(void) 43 0 +100a57e0 FUN_100a57e0 undefined FUN_100a57e0(void) 22 0 +100a5800 FUN_100a5800 undefined FUN_100a5800(void) 22 0 +100a5820 FUN_100a5820 undefined FUN_100a5820(void) 22 0 +100a5840 FUN_100a5840 undefined FUN_100a5840(void) 131 3 SysFreeString +100a58d0 FUN_100a58d0 undefined FUN_100a58d0(void) 131 3 SysFreeString +100a5960 FUN_100a5960 undefined FUN_100a5960(void) 113 1 SysFreeString +100a59e0 FUN_100a59e0 undefined FUN_100a59e0(void) 34 0 +100a5a10 FUN_100a5a10 undefined FUN_100a5a10(void) 43 0 +100a5a40 FUN_100a5a40 undefined FUN_100a5a40(void) 22 0 +100a5a60 FUN_100a5a60 undefined FUN_100a5a60(void) 22 0 +100a5a80 FUN_100a5a80 undefined FUN_100a5a80(void) 22 0 +100a5aa0 FUN_100a5aa0 undefined FUN_100a5aa0(void) 131 3 SysFreeString +100a5b30 FUN_100a5b30 undefined FUN_100a5b30(void) 131 3 SysFreeString +100a5bc0 FUN_100a5bc0 undefined FUN_100a5bc0(void) 113 1 SysFreeString +100a5c40 FUN_100a5c40 undefined FUN_100a5c40(void) 21 0 +100a5c60 FUN_100a5c60 undefined FUN_100a5c60(void) 19 0 +100a5c80 FUN_100a5c80 undefined FUN_100a5c80(void) 26 0 +100a5ca0 FUN_100a5ca0 undefined FUN_100a5ca0(void) 19 0 +100a5cc0 FUN_100a5cc0 undefined FUN_100a5cc0(void) 21 0 +100a5ce0 FUN_100a5ce0 undefined FUN_100a5ce0(void) 30 0 +100a5d00 FUN_100a5d00 undefined FUN_100a5d00(void) 8 0 +100a5d10 FUN_100a5d10 undefined FUN_100a5d10(void) 30 0 +100a5d30 FUN_100a5d30 undefined FUN_100a5d30(void) 42 1 memmove +100a5d60 FUN_100a5d60 undefined FUN_100a5d60(void) 42 1 memmove +100a5d90 FUN_100a5d90 undefined FUN_100a5d90(void) 8 0 +100a5da0 FUN_100a5da0 undefined FUN_100a5da0(void) 24 0 +100a5dc0 FUN_100a5dc0 undefined FUN_100a5dc0(void) 8 0 +100a5dd0 FUN_100a5dd0 undefined FUN_100a5dd0(void) 24 0 +100a5df0 FUN_100a5df0 undefined FUN_100a5df0(void) 24 0 +100a5e10 FUN_100a5e10 undefined FUN_100a5e10(void) 8 0 +100a5e20 FUN_100a5e20 undefined FUN_100a5e20(void) 24 0 +100a5e40 FUN_100a5e40 undefined FUN_100a5e40(void) 87 0 +100a5ea0 FUN_100a5ea0 undefined FUN_100a5ea0(void) 90 0 +100a5f00 FUN_100a5f00 undefined FUN_100a5f00(void) 83 0 +100a5f60 FUN_100a5f60 undefined FUN_100a5f60(void) 83 0 +100a5fc0 FUN_100a5fc0 undefined FUN_100a5fc0(void) 74 0 +100a6010 FUN_100a6010 undefined FUN_100a6010(void) 38 0 +100a6040 FUN_100a6040 undefined FUN_100a6040(void) 132 0 +100a60d0 FUN_100a60d0 undefined FUN_100a60d0(void) 94 0 +100a6130 FUN_100a6130 undefined FUN_100a6130(void) 149 2 SysFreeString +100a61d0 FUN_100a61d0 undefined FUN_100a61d0(void) 89 1 +100a6230 FUN_100a6230 undefined FUN_100a6230(void) 89 1 +100a6300 FUN_100a6300 undefined FUN_100a6300(void) 133 1 SysFreeString +100a6390 FUN_100a6390 undefined FUN_100a6390(void) 74 0 +100a63e0 FUN_100a63e0 undefined FUN_100a63e0(void) 85 1 +100a6440 FUN_100a6440 undefined FUN_100a6440(void) 75 0 +100a6490 FUN_100a6490 undefined FUN_100a6490(void) 75 1 +100a64e0 FUN_100a64e0 undefined FUN_100a64e0(void) 74 0 +100a6530 FUN_100a6530 undefined FUN_100a6530(void) 85 1 +100a6590 FUN_100a6590 undefined FUN_100a6590(void) 17 0 +100a65b0 FUN_100a65b0 undefined FUN_100a65b0(void) 85 0 +100a6610 FUN_100a6610 undefined FUN_100a6610(void) 68 0 +100a6670 FUN_100a6670 undefined FUN_100a6670(void) 22 0 +100a6690 FUN_100a6690 undefined FUN_100a6690(void) 136 0 +100a6720 FUN_100a6720 undefined FUN_100a6720(void) 11 0 +100a6730 FUN_100a6730 undefined FUN_100a6730(void) 11 0 +100a6790 FUN_100a6790 undefined FUN_100a6790(void) 45 0 +100a67c0 FUN_100a67c0 undefined FUN_100a67c0(void) 44 0 +100a67f0 FUN_100a67f0 undefined FUN_100a67f0(void) 15 0 +100a6810 FUN_100a6810 undefined FUN_100a6810(void) 45 0 +100a6840 FUN_100a6840 undefined FUN_100a6840(void) 21 0 +100a6860 FUN_100a6860 undefined FUN_100a6860(void) 21 0 +100a6880 FUN_100a6880 undefined FUN_100a6880(void) 21 1 +100a68a0 FUN_100a68a0 undefined FUN_100a68a0(void) 21 1 +100a68c0 FUN_100a68c0 undefined FUN_100a68c0(void) 11 0 +100a68d0 FUN_100a68d0 undefined FUN_100a68d0(void) 615 2 +100a6b40 FUN_100a6b40 undefined FUN_100a6b40(void) 217 2 +100a6c20 FUN_100a6c20 undefined FUN_100a6c20(void) 45 1 memmove +100a6c50 FUN_100a6c50 undefined FUN_100a6c50(void) 45 1 memmove +100a6c80 FUN_100a6c80 undefined FUN_100a6c80(void) 24 0 +100a6ca0 FUN_100a6ca0 undefined FUN_100a6ca0(void) 24 0 +100a6cd0 FUN_100a6cd0 undefined FUN_100a6cd0(void) 12 1 +100a6ce0 FUN_100a6ce0 undefined FUN_100a6ce0(void) 24 0 +100a6d00 FUN_100a6d00 undefined FUN_100a6d00(void) 12 1 +100a6d40 FUN_100a6d40 undefined FUN_100a6d40(void) 24 0 +100a6d60 FUN_100a6d60 undefined FUN_100a6d60(void) 12 1 +100a6d70 FUN_100a6d70 undefined FUN_100a6d70(void) 24 0 +100a6d90 FUN_100a6d90 undefined FUN_100a6d90(void) 12 1 +100a6da0 FUN_100a6da0 undefined FUN_100a6da0(void) 24 0 +100a6dc0 FUN_100a6dc0 undefined FUN_100a6dc0(void) 21 0 +100a6de0 FUN_100a6de0 undefined FUN_100a6de0(void) 101 0 +100a6e50 FUN_100a6e50 undefined FUN_100a6e50(void) 21 0 +100a6e70 FUN_100a6e70 undefined FUN_100a6e70(void) 42 1 memmove +100a6ea0 FUN_100a6ea0 undefined FUN_100a6ea0(void) 42 1 memmove +100a6ed0 FUN_100a6ed0 undefined FUN_100a6ed0(void) 24 0 +100a6ef0 FUN_100a6ef0 undefined FUN_100a6ef0(void) 24 0 +100a6f10 FUN_100a6f10 undefined FUN_100a6f10(void) 24 0 +100a6f30 FUN_100a6f30 undefined FUN_100a6f30(void) 24 0 +100a6f50 FUN_100a6f50 undefined FUN_100a6f50(void) 136 1 SysFreeString +100a6fe0 FUN_100a6fe0 undefined FUN_100a6fe0(void) 69 0 +100a7030 FUN_100a7030 undefined FUN_100a7030(void) 45 0 +100a7060 FUN_100a7060 undefined FUN_100a7060(void) 45 0 +100a7090 FUN_100a7090 undefined FUN_100a7090(void) 154 3 SysFreeString +100a7130 FUN_100a7130 undefined FUN_100a7130(void) 154 3 SysFreeString +100a71d0 FUN_100a71d0 undefined FUN_100a71d0(void) 139 1 SysFreeString +100a7260 FUN_100a7260 undefined FUN_100a7260(void) 149 1 SysFreeString +100a7300 FUN_100a7300 undefined FUN_100a7300(void) 139 1 SysFreeString +100a7390 FUN_100a7390 undefined FUN_100a7390(void) 134 1 SysFreeString +100a7420 FUN_100a7420 undefined FUN_100a7420(void) 134 1 SysFreeString +100a74b0 FUN_100a74b0 undefined FUN_100a74b0(void) 70 0 +100a7500 FUN_100a7500 undefined FUN_100a7500(void) 70 0 +100a7550 FUN_100a7550 undefined FUN_100a7550(void) 67 0 +100a75a0 FUN_100a75a0 undefined FUN_100a75a0(void) 67 0 +100a75f0 FUN_100a75f0 undefined FUN_100a75f0(void) 49 0 +100a7630 FUN_100a7630 undefined FUN_100a7630(void) 59 0 +100a7670 FUN_100a7670 undefined FUN_100a7670(void) 49 0 +100a76b0 FUN_100a76b0 undefined FUN_100a76b0(void) 43 0 +100a76e0 FUN_100a76e0 undefined FUN_100a76e0(void) 43 0 +100a7710 FUN_100a7710 undefined FUN_100a7710(void) 49 0 +100a7750 FUN_100a7750 undefined FUN_100a7750(void) 59 0 +100a7790 FUN_100a7790 undefined FUN_100a7790(void) 49 0 +100a77d0 FUN_100a77d0 undefined FUN_100a77d0(void) 43 0 +100a7800 FUN_100a7800 undefined FUN_100a7800(void) 43 0 +100a7830 FUN_100a7830 undefined FUN_100a7830(void) 49 0 +100a7870 FUN_100a7870 undefined FUN_100a7870(void) 59 0 +100a78b0 FUN_100a78b0 undefined FUN_100a78b0(void) 49 0 +100a78f0 FUN_100a78f0 undefined FUN_100a78f0(void) 43 0 +100a7920 FUN_100a7920 undefined FUN_100a7920(void) 43 0 +100a7950 FUN_100a7950 undefined FUN_100a7950(void) 157 3 SysFreeString +100a79f0 FUN_100a79f0 undefined FUN_100a79f0(void) 167 3 SysFreeString +100a7aa0 FUN_100a7aa0 undefined FUN_100a7aa0(void) 157 3 SysFreeString +100a7b40 FUN_100a7b40 undefined FUN_100a7b40(void) 152 3 SysFreeString +100a7be0 FUN_100a7be0 undefined FUN_100a7be0(void) 152 3 SysFreeString +100a7c80 FUN_100a7c80 undefined FUN_100a7c80(void) 157 3 SysFreeString +100a7d20 FUN_100a7d20 undefined FUN_100a7d20(void) 167 3 SysFreeString +100a7dd0 FUN_100a7dd0 undefined FUN_100a7dd0(void) 157 3 SysFreeString +100a7e70 FUN_100a7e70 undefined FUN_100a7e70(void) 152 3 SysFreeString +100a7f10 FUN_100a7f10 undefined FUN_100a7f10(void) 152 3 SysFreeString +100a7fb0 FUN_100a7fb0 undefined FUN_100a7fb0(void) 139 1 SysFreeString +100a8040 FUN_100a8040 undefined FUN_100a8040(void) 197 2 SysFreeString +100a8110 FUN_100a8110 undefined FUN_100a8110(void) 143 1 SysFreeString +100a81a0 FUN_100a81a0 undefined FUN_100a81a0(void) 144 1 SysFreeString +100a8230 FUN_100a8230 undefined FUN_100a8230(void) 72 0 +100a8280 FUN_100a8280 undefined FUN_100a8280(void) 139 1 +100a8310 FUN_100a8310 undefined FUN_100a8310(void) 74 0 +100a8360 FUN_100a8360 undefined FUN_100a8360(void) 85 0 +100a83c0 FUN_100a83c0 undefined FUN_100a83c0(void) 77 0 +100a8410 FUN_100a8410 undefined FUN_100a8410(void) 118 1 +100a8490 FUN_100a8490 undefined FUN_100a8490(void) 53 0 +100a84d0 FUN_100a84d0 undefined FUN_100a84d0(void) 64 0 +100a8510 FUN_100a8510 undefined FUN_100a8510(void) 56 0 +100a8550 FUN_100a8550 undefined FUN_100a8550(void) 48 0 +100a8580 FUN_100a8580 undefined FUN_100a8580(void) 118 1 +100a8600 FUN_100a8600 undefined FUN_100a8600(void) 53 0 +100a8640 FUN_100a8640 undefined FUN_100a8640(void) 64 0 +100a8680 FUN_100a8680 undefined FUN_100a8680(void) 56 0 +100a86c0 FUN_100a86c0 undefined FUN_100a86c0(void) 48 0 +100a86f0 FUN_100a86f0 undefined FUN_100a86f0(void) 118 1 +100a8770 FUN_100a8770 undefined FUN_100a8770(void) 53 0 +100a87b0 FUN_100a87b0 undefined FUN_100a87b0(void) 64 0 +100a87f0 FUN_100a87f0 undefined FUN_100a87f0(void) 56 0 +100a8830 FUN_100a8830 undefined FUN_100a8830(void) 157 3 SysFreeString +100a88d0 FUN_100a88d0 undefined FUN_100a88d0(void) 219 4 SysFreeString +100a89b0 FUN_100a89b0 undefined FUN_100a89b0(void) 161 3 SysFreeString +100a8a60 FUN_100a8a60 undefined FUN_100a8a60(void) 170 3 SysFreeString +100a8b10 FUN_100a8b10 undefined FUN_100a8b10(void) 162 3 SysFreeString +100a8bc0 FUN_100a8bc0 undefined FUN_100a8bc0(void) 157 3 SysFreeString +100a8c60 FUN_100a8c60 undefined FUN_100a8c60(void) 219 4 SysFreeString +100a8d40 FUN_100a8d40 undefined FUN_100a8d40(void) 161 3 SysFreeString +100a8df0 FUN_100a8df0 undefined FUN_100a8df0(void) 170 3 SysFreeString +100a8ea0 FUN_100a8ea0 undefined FUN_100a8ea0(void) 162 3 SysFreeString +100a8f50 FUN_100a8f50 undefined FUN_100a8f50(void) 142 3 +100a8fe0 FUN_100a8fe0 undefined FUN_100a8fe0(void) 142 3 +100a9070 FUN_100a9070 undefined FUN_100a9070(void) 29 0 +100a9090 FUN_100a9090 undefined FUN_100a9090(void) 24 0 +100a90b0 FUN_100a90b0 undefined FUN_100a90b0(void) 24 0 +100a90d0 FUN_100a90d0 undefined FUN_100a90d0(void) 22 0 +100a90f0 FUN_100a90f0 undefined FUN_100a90f0(void) 22 0 +100a9110 FUN_100a9110 undefined FUN_100a9110(void) 81 0 +100a9170 FUN_100a9170 undefined FUN_100a9170(void) 81 0 +100a91d0 FUN_100a91d0 undefined FUN_100a91d0(void) 88 0 +100a9230 FUN_100a9230 undefined FUN_100a9230(void) 135 0 +100a92c0 FUN_100a92c0 undefined FUN_100a92c0(void) 68 0 +100a9310 FUN_100a9310 undefined FUN_100a9310(void) 74 0 +100a9360 FUN_100a9360 undefined FUN_100a9360(void) 122 0 +100a93e0 FUN_100a93e0 undefined FUN_100a93e0(void) 13 0 +100a93f0 FUN_100a93f0 undefined FUN_100a93f0(void) 100 0 +100a9460 FUN_100a9460 undefined FUN_100a9460(void) 119 1 +100a94e0 FUN_100a94e0 undefined FUN_100a94e0(void) 225 2 SysFreeString +100a95d0 FUN_100a95d0 undefined FUN_100a95d0(void) 410 10 SysAllocStringByteLen;SysFreeString +100a9770 FUN_100a9770 undefined FUN_100a9770(void) 133 1 SysFreeString +100a9800 FUN_100a9800 undefined FUN_100a9800(void) 48 1 +100a9830 FUN_100a9830 undefined FUN_100a9830(void) 48 1 +100a98a0 FUN_100a98a0 undefined FUN_100a98a0(void) 20 0 +100a98c0 FUN_100a98c0 undefined FUN_100a98c0(void) 20 0 +100a98e0 FUN_100a98e0 undefined FUN_100a98e0(void) 129 0 +100a9970 FUN_100a9970 undefined FUN_100a9970(void) 15 0 +100a9980 FUN_100a9980 undefined FUN_100a9980(void) 129 0 +100a9a10 FUN_100a9a10 undefined FUN_100a9a10(void) 84 1 +100a9a70 FUN_100a9a70 undefined FUN_100a9a70(void) 21 0 +100a9a90 FUN_100a9a90 undefined FUN_100a9a90(void) 32 1 +100a9ab0 FUN_100a9ab0 undefined FUN_100a9ab0(void) 21 0 +100a9ad0 FUN_100a9ad0 undefined FUN_100a9ad0(void) 44 1 memmove +100a9b00 FUN_100a9b00 undefined FUN_100a9b00(void) 44 1 memmove +100a9b30 FUN_100a9b30 undefined FUN_100a9b30(void) 42 1 +100a9b60 FUN_100a9b60 undefined FUN_100a9b60(void) 546 2 +100a9d90 FUN_100a9d90 undefined FUN_100a9d90(void) 546 2 +100a9fc0 FUN_100a9fc0 undefined FUN_100a9fc0(void) 24 0 +100a9fe0 FUN_100a9fe0 undefined FUN_100a9fe0(void) 12 1 +100a9ff0 FUN_100a9ff0 undefined FUN_100a9ff0(void) 24 0 +100aa010 FUN_100aa010 undefined FUN_100aa010(void) 12 1 +100aa020 FUN_100aa020 undefined FUN_100aa020(void) 24 0 +100aa040 FUN_100aa040 undefined FUN_100aa040(void) 143 1 SysFreeString +100aa0d0 FUN_100aa0d0 undefined FUN_100aa0d0(void) 66 1 +100aa120 FUN_100aa120 undefined FUN_100aa120(void) 43 1 +100aa150 FUN_100aa150 undefined FUN_100aa150(void) 43 1 +100aa180 FUN_100aa180 undefined FUN_100aa180(void) 146 1 SysFreeString +100aa220 FUN_100aa220 undefined FUN_100aa220(void) 144 1 SysFreeString +100aa2b0 FUN_100aa2b0 undefined FUN_100aa2b0(void) 150 1 SysFreeString +100aa350 FUN_100aa350 undefined FUN_100aa350(void) 143 1 SysFreeString +100aa3e0 FUN_100aa3e0 undefined FUN_100aa3e0(void) 66 1 +100aa430 FUN_100aa430 undefined FUN_100aa430(void) 43 1 +100aa460 FUN_100aa460 undefined FUN_100aa460(void) 43 1 +100aa490 FUN_100aa490 undefined FUN_100aa490(void) 146 1 SysFreeString +100aa530 FUN_100aa530 undefined FUN_100aa530(void) 144 1 SysFreeString +100aa5c0 FUN_100aa5c0 undefined FUN_100aa5c0(void) 150 1 SysFreeString +100aa660 FUN_100aa660 undefined FUN_100aa660(void) 74 0 +100aa6b0 FUN_100aa6b0 undefined FUN_100aa6b0(void) 94 0 +100aa710 FUN_100aa710 undefined FUN_100aa710(void) 74 0 +100aa760 FUN_100aa760 undefined FUN_100aa760(void) 77 0 +100aa7b0 FUN_100aa7b0 undefined FUN_100aa7b0(void) 77 0 +100aa800 FUN_100aa800 undefined FUN_100aa800(void) 83 0 +100aa860 FUN_100aa860 undefined FUN_100aa860(void) 74 0 +100aa8b0 FUN_100aa8b0 undefined FUN_100aa8b0(void) 94 0 +100aa910 FUN_100aa910 undefined FUN_100aa910(void) 74 0 +100aa960 FUN_100aa960 undefined FUN_100aa960(void) 77 0 +100aa9b0 FUN_100aa9b0 undefined FUN_100aa9b0(void) 77 0 +100aaa00 FUN_100aaa00 undefined FUN_100aaa00(void) 83 0 +100aaa60 FUN_100aaa60 undefined FUN_100aaa60(void) 53 0 +100aaaa0 FUN_100aaaa0 undefined FUN_100aaaa0(void) 73 0 +100aaaf0 FUN_100aaaf0 undefined FUN_100aaaf0(void) 62 0 +100aab30 FUN_100aab30 undefined FUN_100aab30(void) 53 0 +100aab70 FUN_100aab70 undefined FUN_100aab70(void) 56 0 +100aabb0 FUN_100aabb0 undefined FUN_100aabb0(void) 53 0 +100aabf0 FUN_100aabf0 undefined FUN_100aabf0(void) 62 0 +100aac30 FUN_100aac30 undefined FUN_100aac30(void) 53 0 +100aac70 FUN_100aac70 undefined FUN_100aac70(void) 73 0 +100aacc0 FUN_100aacc0 undefined FUN_100aacc0(void) 62 0 +100aad00 FUN_100aad00 undefined FUN_100aad00(void) 53 0 +100aad40 FUN_100aad40 undefined FUN_100aad40(void) 56 0 +100aad80 FUN_100aad80 undefined FUN_100aad80(void) 53 0 +100aadc0 FUN_100aadc0 undefined FUN_100aadc0(void) 62 0 +100aae00 FUN_100aae00 undefined FUN_100aae00(void) 73 0 +100aae50 FUN_100aae50 undefined FUN_100aae50(void) 62 0 +100aae90 FUN_100aae90 undefined FUN_100aae90(void) 53 0 +100aaed0 FUN_100aaed0 undefined FUN_100aaed0(void) 53 0 +100aaf10 FUN_100aaf10 undefined FUN_100aaf10(void) 62 0 +100aaf50 FUN_100aaf50 undefined FUN_100aaf50(void) 78 0 +100aafa0 FUN_100aafa0 undefined FUN_100aafa0(void) 73 0 +100aaff0 FUN_100aaff0 undefined FUN_100aaff0(void) 62 0 +100ab030 FUN_100ab030 undefined FUN_100ab030(void) 53 0 +100ab070 FUN_100ab070 undefined FUN_100ab070(void) 53 0 +100ab0b0 FUN_100ab0b0 undefined FUN_100ab0b0(void) 62 0 +100ab0f0 FUN_100ab0f0 undefined FUN_100ab0f0(void) 53 0 +100ab130 FUN_100ab130 undefined FUN_100ab130(void) 73 0 +100ab180 FUN_100ab180 undefined FUN_100ab180(void) 62 0 +100ab1c0 FUN_100ab1c0 undefined FUN_100ab1c0(void) 53 0 +100ab200 FUN_100ab200 undefined FUN_100ab200(void) 56 0 +100ab240 FUN_100ab240 undefined FUN_100ab240(void) 53 0 +100ab280 FUN_100ab280 undefined FUN_100ab280(void) 62 0 +100ab2c0 FUN_100ab2c0 undefined FUN_100ab2c0(void) 53 0 +100ab300 FUN_100ab300 undefined FUN_100ab300(void) 73 0 +100ab350 FUN_100ab350 undefined FUN_100ab350(void) 62 0 +100ab390 FUN_100ab390 undefined FUN_100ab390(void) 53 0 +100ab3d0 FUN_100ab3d0 undefined FUN_100ab3d0(void) 56 0 +100ab410 FUN_100ab410 undefined FUN_100ab410(void) 53 0 +100ab450 FUN_100ab450 undefined FUN_100ab450(void) 62 0 +100ab490 FUN_100ab490 undefined FUN_100ab490(void) 36 1 +100ab4c0 FUN_100ab4c0 undefined FUN_100ab4c0(void) 66 1 +100ab510 FUN_100ab510 undefined FUN_100ab510(void) 43 1 +100ab540 FUN_100ab540 undefined FUN_100ab540(void) 43 1 +100ab570 FUN_100ab570 undefined FUN_100ab570(void) 39 1 +100ab5a0 FUN_100ab5a0 undefined FUN_100ab5a0(void) 31 1 +100ab5c0 FUN_100ab5c0 undefined FUN_100ab5c0(void) 40 1 +100ab5f0 FUN_100ab5f0 undefined FUN_100ab5f0(void) 36 1 +100ab620 FUN_100ab620 undefined FUN_100ab620(void) 66 1 +100ab670 FUN_100ab670 undefined FUN_100ab670(void) 43 1 +100ab6a0 FUN_100ab6a0 undefined FUN_100ab6a0(void) 43 1 +100ab6d0 FUN_100ab6d0 undefined FUN_100ab6d0(void) 39 1 +100ab700 FUN_100ab700 undefined FUN_100ab700(void) 31 1 +100ab720 FUN_100ab720 undefined FUN_100ab720(void) 40 1 +100ab750 FUN_100ab750 undefined FUN_100ab750(void) 36 1 +100ab780 FUN_100ab780 undefined FUN_100ab780(void) 66 1 +100ab7d0 FUN_100ab7d0 undefined FUN_100ab7d0(void) 43 1 +100ab800 FUN_100ab800 undefined FUN_100ab800(void) 43 1 +100ab830 FUN_100ab830 undefined FUN_100ab830(void) 39 1 +100ab860 FUN_100ab860 undefined FUN_100ab860(void) 31 1 +100ab880 FUN_100ab880 undefined FUN_100ab880(void) 40 1 +100ab8b0 FUN_100ab8b0 undefined FUN_100ab8b0(void) 36 1 +100ab8e0 FUN_100ab8e0 undefined FUN_100ab8e0(void) 66 1 +100ab930 FUN_100ab930 undefined FUN_100ab930(void) 43 1 +100ab960 FUN_100ab960 undefined FUN_100ab960(void) 43 1 +100ab990 FUN_100ab990 undefined FUN_100ab990(void) 39 1 +100ab9c0 FUN_100ab9c0 undefined FUN_100ab9c0(void) 31 1 +100ab9e0 FUN_100ab9e0 undefined FUN_100ab9e0(void) 40 1 +100aba10 FUN_100aba10 undefined FUN_100aba10(void) 36 1 +100aba40 FUN_100aba40 undefined FUN_100aba40(void) 66 1 +100aba90 FUN_100aba90 undefined FUN_100aba90(void) 43 1 +100abac0 FUN_100abac0 undefined FUN_100abac0(void) 43 1 +100abaf0 FUN_100abaf0 undefined FUN_100abaf0(void) 39 1 +100abb20 FUN_100abb20 undefined FUN_100abb20(void) 31 1 +100abb40 FUN_100abb40 undefined FUN_100abb40(void) 40 1 +100abb70 FUN_100abb70 undefined FUN_100abb70(void) 36 1 +100abba0 FUN_100abba0 undefined FUN_100abba0(void) 66 1 +100abbf0 FUN_100abbf0 undefined FUN_100abbf0(void) 43 1 +100abc20 FUN_100abc20 undefined FUN_100abc20(void) 43 1 +100abc50 FUN_100abc50 undefined FUN_100abc50(void) 39 1 +100abc80 FUN_100abc80 undefined FUN_100abc80(void) 31 1 +100abca0 FUN_100abca0 undefined FUN_100abca0(void) 40 1 +100abcd0 FUN_100abcd0 undefined FUN_100abcd0(void) 143 1 SysFreeString +100abd60 FUN_100abd60 undefined FUN_100abd60(void) 66 1 +100abdb0 FUN_100abdb0 undefined FUN_100abdb0(void) 43 1 +100abde0 FUN_100abde0 undefined FUN_100abde0(void) 43 1 +100abe10 FUN_100abe10 undefined FUN_100abe10(void) 146 1 SysFreeString +100abeb0 FUN_100abeb0 undefined FUN_100abeb0(void) 144 1 SysFreeString +100abf40 FUN_100abf40 undefined FUN_100abf40(void) 150 1 SysFreeString +100abfe0 FUN_100abfe0 undefined FUN_100abfe0(void) 143 1 SysFreeString +100ac070 FUN_100ac070 undefined FUN_100ac070(void) 66 1 +100ac0c0 FUN_100ac0c0 undefined FUN_100ac0c0(void) 43 1 +100ac0f0 FUN_100ac0f0 undefined FUN_100ac0f0(void) 43 1 +100ac120 FUN_100ac120 undefined FUN_100ac120(void) 146 1 SysFreeString +100ac1c0 FUN_100ac1c0 undefined FUN_100ac1c0(void) 144 1 SysFreeString +100ac250 FUN_100ac250 undefined FUN_100ac250(void) 150 1 SysFreeString +100ac2f0 FUN_100ac2f0 undefined FUN_100ac2f0(void) 58 1 +100ac330 FUN_100ac330 undefined FUN_100ac330(void) 143 1 SysFreeString +100ac3c0 FUN_100ac3c0 undefined FUN_100ac3c0(void) 66 1 +100ac410 FUN_100ac410 undefined FUN_100ac410(void) 43 1 +100ac440 FUN_100ac440 undefined FUN_100ac440(void) 43 1 +100ac470 FUN_100ac470 undefined FUN_100ac470(void) 146 1 SysFreeString +100ac510 FUN_100ac510 undefined FUN_100ac510(void) 144 1 SysFreeString +100ac5a0 FUN_100ac5a0 undefined FUN_100ac5a0(void) 150 1 SysFreeString +100ac640 FUN_100ac640 undefined FUN_100ac640(void) 143 1 SysFreeString +100ac6d0 FUN_100ac6d0 undefined FUN_100ac6d0(void) 66 1 +100ac720 FUN_100ac720 undefined FUN_100ac720(void) 43 1 +100ac750 FUN_100ac750 undefined FUN_100ac750(void) 43 1 +100ac780 FUN_100ac780 undefined FUN_100ac780(void) 146 1 SysFreeString +100ac820 FUN_100ac820 undefined FUN_100ac820(void) 144 1 SysFreeString +100ac8b0 FUN_100ac8b0 undefined FUN_100ac8b0(void) 150 1 SysFreeString +100ac950 FUN_100ac950 undefined FUN_100ac950(void) 143 1 SysFreeString +100ac9e0 FUN_100ac9e0 undefined FUN_100ac9e0(void) 66 1 +100aca30 FUN_100aca30 undefined FUN_100aca30(void) 43 1 +100aca60 FUN_100aca60 undefined FUN_100aca60(void) 43 1 +100aca90 FUN_100aca90 undefined FUN_100aca90(void) 146 1 SysFreeString +100acb30 FUN_100acb30 undefined FUN_100acb30(void) 144 1 SysFreeString +100acbc0 FUN_100acbc0 undefined FUN_100acbc0(void) 150 1 SysFreeString +100acc60 FUN_100acc60 undefined FUN_100acc60(void) 143 1 SysFreeString +100accf0 FUN_100accf0 undefined FUN_100accf0(void) 66 1 +100acd40 FUN_100acd40 undefined FUN_100acd40(void) 43 1 +100acd70 FUN_100acd70 undefined FUN_100acd70(void) 43 1 +100acda0 FUN_100acda0 undefined FUN_100acda0(void) 146 1 SysFreeString +100ace40 FUN_100ace40 undefined FUN_100ace40(void) 144 1 SysFreeString +100aced0 FUN_100aced0 undefined FUN_100aced0(void) 150 1 SysFreeString +100acf70 FUN_100acf70 undefined FUN_100acf70(void) 143 1 SysFreeString +100ad000 FUN_100ad000 undefined FUN_100ad000(void) 66 1 +100ad050 FUN_100ad050 undefined FUN_100ad050(void) 43 1 +100ad080 FUN_100ad080 undefined FUN_100ad080(void) 43 1 +100ad0b0 FUN_100ad0b0 undefined FUN_100ad0b0(void) 146 1 SysFreeString +100ad150 FUN_100ad150 undefined FUN_100ad150(void) 144 1 SysFreeString +100ad1e0 FUN_100ad1e0 undefined FUN_100ad1e0(void) 150 1 SysFreeString +100ad280 FUN_100ad280 undefined FUN_100ad280(void) 143 1 SysFreeString +100ad310 FUN_100ad310 undefined FUN_100ad310(void) 66 1 +100ad360 FUN_100ad360 undefined FUN_100ad360(void) 43 1 +100ad390 FUN_100ad390 undefined FUN_100ad390(void) 43 1 +100ad3c0 FUN_100ad3c0 undefined FUN_100ad3c0(void) 146 1 SysFreeString +100ad460 FUN_100ad460 undefined FUN_100ad460(void) 144 1 SysFreeString +100ad4f0 FUN_100ad4f0 undefined FUN_100ad4f0(void) 150 1 SysFreeString +100ad590 FUN_100ad590 undefined FUN_100ad590(void) 143 1 SysFreeString +100ad620 FUN_100ad620 undefined FUN_100ad620(void) 66 1 +100ad670 FUN_100ad670 undefined FUN_100ad670(void) 43 1 +100ad6a0 FUN_100ad6a0 undefined FUN_100ad6a0(void) 43 1 +100ad6d0 FUN_100ad6d0 undefined FUN_100ad6d0(void) 146 1 SysFreeString +100ad770 FUN_100ad770 undefined FUN_100ad770(void) 144 1 SysFreeString +100ad800 FUN_100ad800 undefined FUN_100ad800(void) 150 1 SysFreeString +100ad8a0 FUN_100ad8a0 undefined FUN_100ad8a0(void) 143 1 SysFreeString +100ad930 FUN_100ad930 undefined FUN_100ad930(void) 66 1 +100ad980 FUN_100ad980 undefined FUN_100ad980(void) 43 1 +100ad9b0 FUN_100ad9b0 undefined FUN_100ad9b0(void) 43 1 +100ad9e0 FUN_100ad9e0 undefined FUN_100ad9e0(void) 146 1 SysFreeString +100ada80 FUN_100ada80 undefined FUN_100ada80(void) 144 1 SysFreeString +100adb10 FUN_100adb10 undefined FUN_100adb10(void) 150 1 SysFreeString +100adbb0 FUN_100adbb0 undefined FUN_100adbb0(void) 143 1 SysFreeString +100adc40 FUN_100adc40 undefined FUN_100adc40(void) 66 1 +100adc90 FUN_100adc90 undefined FUN_100adc90(void) 43 1 +100adcc0 FUN_100adcc0 undefined FUN_100adcc0(void) 43 1 +100adcf0 FUN_100adcf0 undefined FUN_100adcf0(void) 146 1 SysFreeString +100add90 FUN_100add90 undefined FUN_100add90(void) 144 1 SysFreeString +100ade20 FUN_100ade20 undefined FUN_100ade20(void) 150 1 SysFreeString +100adec0 FUN_100adec0 undefined FUN_100adec0(void) 143 1 SysFreeString +100adf50 FUN_100adf50 undefined FUN_100adf50(void) 66 1 +100adfa0 FUN_100adfa0 undefined FUN_100adfa0(void) 43 1 +100adfd0 FUN_100adfd0 undefined FUN_100adfd0(void) 43 1 +100ae000 FUN_100ae000 undefined FUN_100ae000(void) 146 1 SysFreeString +100ae0a0 FUN_100ae0a0 undefined FUN_100ae0a0(void) 144 1 SysFreeString +100ae130 FUN_100ae130 undefined FUN_100ae130(void) 150 1 SysFreeString +100ae1d0 FUN_100ae1d0 undefined FUN_100ae1d0(void) 143 1 SysFreeString +100ae260 FUN_100ae260 undefined FUN_100ae260(void) 66 1 +100ae2b0 FUN_100ae2b0 undefined FUN_100ae2b0(void) 43 1 +100ae2e0 FUN_100ae2e0 undefined FUN_100ae2e0(void) 43 1 +100ae310 FUN_100ae310 undefined FUN_100ae310(void) 146 1 SysFreeString +100ae3b0 FUN_100ae3b0 undefined FUN_100ae3b0(void) 144 1 SysFreeString +100ae440 FUN_100ae440 undefined FUN_100ae440(void) 150 1 SysFreeString +100ae4e0 FUN_100ae4e0 undefined FUN_100ae4e0(void) 143 1 SysFreeString +100ae570 FUN_100ae570 undefined FUN_100ae570(void) 66 1 +100ae5c0 FUN_100ae5c0 undefined FUN_100ae5c0(void) 43 1 +100ae5f0 FUN_100ae5f0 undefined FUN_100ae5f0(void) 43 1 +100ae620 FUN_100ae620 undefined FUN_100ae620(void) 146 1 SysFreeString +100ae6c0 FUN_100ae6c0 undefined FUN_100ae6c0(void) 144 1 SysFreeString +100ae750 FUN_100ae750 undefined FUN_100ae750(void) 150 1 SysFreeString +100ae7f0 FUN_100ae7f0 undefined FUN_100ae7f0(void) 143 1 SysFreeString +100ae880 FUN_100ae880 undefined FUN_100ae880(void) 66 1 +100ae8d0 FUN_100ae8d0 undefined FUN_100ae8d0(void) 43 1 +100ae900 FUN_100ae900 undefined FUN_100ae900(void) 43 1 +100ae930 FUN_100ae930 undefined FUN_100ae930(void) 146 1 SysFreeString +100ae9d0 FUN_100ae9d0 undefined FUN_100ae9d0(void) 144 1 SysFreeString +100aea60 FUN_100aea60 undefined FUN_100aea60(void) 150 1 SysFreeString +100aeb00 FUN_100aeb00 undefined FUN_100aeb00(void) 143 1 SysFreeString +100aeb90 FUN_100aeb90 undefined FUN_100aeb90(void) 66 1 +100aebe0 FUN_100aebe0 undefined FUN_100aebe0(void) 43 1 +100aec10 FUN_100aec10 undefined FUN_100aec10(void) 43 1 +100aec40 FUN_100aec40 undefined FUN_100aec40(void) 146 1 SysFreeString +100aece0 FUN_100aece0 undefined FUN_100aece0(void) 144 1 SysFreeString +100aed70 FUN_100aed70 undefined FUN_100aed70(void) 150 1 SysFreeString +100aee10 FUN_100aee10 undefined FUN_100aee10(void) 143 1 SysFreeString +100aeea0 FUN_100aeea0 undefined FUN_100aeea0(void) 66 1 +100aeef0 FUN_100aeef0 undefined FUN_100aeef0(void) 43 1 +100aef20 FUN_100aef20 undefined FUN_100aef20(void) 43 1 +100aef50 FUN_100aef50 undefined FUN_100aef50(void) 146 1 SysFreeString +100aeff0 FUN_100aeff0 undefined FUN_100aeff0(void) 144 1 SysFreeString +100af080 FUN_100af080 undefined FUN_100af080(void) 150 1 SysFreeString +100af120 FUN_100af120 undefined FUN_100af120(void) 143 1 SysFreeString +100af1b0 FUN_100af1b0 undefined FUN_100af1b0(void) 66 1 +100af200 FUN_100af200 undefined FUN_100af200(void) 43 1 +100af230 FUN_100af230 undefined FUN_100af230(void) 43 1 +100af260 FUN_100af260 undefined FUN_100af260(void) 146 1 SysFreeString +100af300 FUN_100af300 undefined FUN_100af300(void) 144 1 SysFreeString +100af390 FUN_100af390 undefined FUN_100af390(void) 150 1 SysFreeString +100af430 FUN_100af430 undefined FUN_100af430(void) 143 1 SysFreeString +100af4c0 FUN_100af4c0 undefined FUN_100af4c0(void) 66 1 +100af510 FUN_100af510 undefined FUN_100af510(void) 43 1 +100af540 FUN_100af540 undefined FUN_100af540(void) 43 1 +100af570 FUN_100af570 undefined FUN_100af570(void) 146 1 SysFreeString +100af610 FUN_100af610 undefined FUN_100af610(void) 144 1 SysFreeString +100af6a0 FUN_100af6a0 undefined FUN_100af6a0(void) 150 1 SysFreeString +100af740 FUN_100af740 undefined FUN_100af740(void) 143 1 SysFreeString +100af7d0 FUN_100af7d0 undefined FUN_100af7d0(void) 66 1 +100af820 FUN_100af820 undefined FUN_100af820(void) 43 1 +100af850 FUN_100af850 undefined FUN_100af850(void) 43 1 +100af880 FUN_100af880 undefined FUN_100af880(void) 146 1 SysFreeString +100af920 FUN_100af920 undefined FUN_100af920(void) 144 1 SysFreeString +100af9b0 FUN_100af9b0 undefined FUN_100af9b0(void) 150 1 SysFreeString +100afa50 FUN_100afa50 undefined FUN_100afa50(void) 143 1 SysFreeString +100afae0 FUN_100afae0 undefined FUN_100afae0(void) 66 1 +100afb30 FUN_100afb30 undefined FUN_100afb30(void) 43 1 +100afb60 FUN_100afb60 undefined FUN_100afb60(void) 43 1 +100afb90 FUN_100afb90 undefined FUN_100afb90(void) 146 1 SysFreeString +100afc30 FUN_100afc30 undefined FUN_100afc30(void) 144 1 SysFreeString +100afcc0 FUN_100afcc0 undefined FUN_100afcc0(void) 150 1 SysFreeString +100afd60 FUN_100afd60 undefined FUN_100afd60(void) 143 1 SysFreeString +100afdf0 FUN_100afdf0 undefined FUN_100afdf0(void) 66 1 +100afe40 FUN_100afe40 undefined FUN_100afe40(void) 43 1 +100afe70 FUN_100afe70 undefined FUN_100afe70(void) 43 1 +100afea0 FUN_100afea0 undefined FUN_100afea0(void) 146 1 SysFreeString +100aff40 FUN_100aff40 undefined FUN_100aff40(void) 144 1 SysFreeString +100affd0 FUN_100affd0 undefined FUN_100affd0(void) 150 1 SysFreeString +100b0070 FUN_100b0070 undefined FUN_100b0070(void) 143 1 SysFreeString +100b0100 FUN_100b0100 undefined FUN_100b0100(void) 66 1 +100b0150 FUN_100b0150 undefined FUN_100b0150(void) 43 1 +100b0180 FUN_100b0180 undefined FUN_100b0180(void) 43 1 +100b01b0 FUN_100b01b0 undefined FUN_100b01b0(void) 146 1 SysFreeString +100b0250 FUN_100b0250 undefined FUN_100b0250(void) 144 1 SysFreeString +100b02e0 FUN_100b02e0 undefined FUN_100b02e0(void) 150 1 SysFreeString +100b0380 FUN_100b0380 undefined FUN_100b0380(void) 143 1 SysFreeString +100b0410 FUN_100b0410 undefined FUN_100b0410(void) 66 1 +100b0460 FUN_100b0460 undefined FUN_100b0460(void) 43 1 +100b0490 FUN_100b0490 undefined FUN_100b0490(void) 43 1 +100b04c0 FUN_100b04c0 undefined FUN_100b04c0(void) 146 1 SysFreeString +100b0560 FUN_100b0560 undefined FUN_100b0560(void) 144 1 SysFreeString +100b05f0 FUN_100b05f0 undefined FUN_100b05f0(void) 150 1 SysFreeString +100b0690 FUN_100b0690 undefined FUN_100b0690(void) 143 1 SysFreeString +100b0720 FUN_100b0720 undefined FUN_100b0720(void) 66 1 +100b0770 FUN_100b0770 undefined FUN_100b0770(void) 43 1 +100b07a0 FUN_100b07a0 undefined FUN_100b07a0(void) 43 1 +100b07d0 FUN_100b07d0 undefined FUN_100b07d0(void) 146 1 SysFreeString +100b0870 FUN_100b0870 undefined FUN_100b0870(void) 144 1 SysFreeString +100b0900 FUN_100b0900 undefined FUN_100b0900(void) 150 1 SysFreeString +100b09a0 FUN_100b09a0 undefined FUN_100b09a0(void) 143 1 SysFreeString +100b0a30 FUN_100b0a30 undefined FUN_100b0a30(void) 66 1 +100b0a80 FUN_100b0a80 undefined FUN_100b0a80(void) 43 1 +100b0ab0 FUN_100b0ab0 undefined FUN_100b0ab0(void) 43 1 +100b0ae0 FUN_100b0ae0 undefined FUN_100b0ae0(void) 146 1 SysFreeString +100b0b80 FUN_100b0b80 undefined FUN_100b0b80(void) 144 1 SysFreeString +100b0c10 FUN_100b0c10 undefined FUN_100b0c10(void) 150 1 SysFreeString +100b0cb0 FUN_100b0cb0 undefined FUN_100b0cb0(void) 143 1 SysFreeString +100b0d40 FUN_100b0d40 undefined FUN_100b0d40(void) 66 1 +100b0d90 FUN_100b0d90 undefined FUN_100b0d90(void) 43 1 +100b0dc0 FUN_100b0dc0 undefined FUN_100b0dc0(void) 43 1 +100b0df0 FUN_100b0df0 undefined FUN_100b0df0(void) 146 1 SysFreeString +100b0e90 FUN_100b0e90 undefined FUN_100b0e90(void) 144 1 SysFreeString +100b0f20 FUN_100b0f20 undefined FUN_100b0f20(void) 150 1 SysFreeString +100b0fc0 FUN_100b0fc0 undefined FUN_100b0fc0(void) 143 1 SysFreeString +100b1050 FUN_100b1050 undefined FUN_100b1050(void) 66 1 +100b10a0 FUN_100b10a0 undefined FUN_100b10a0(void) 43 1 +100b10d0 FUN_100b10d0 undefined FUN_100b10d0(void) 43 1 +100b1100 FUN_100b1100 undefined FUN_100b1100(void) 146 1 SysFreeString +100b11a0 FUN_100b11a0 undefined FUN_100b11a0(void) 144 1 SysFreeString +100b1230 FUN_100b1230 undefined FUN_100b1230(void) 150 1 SysFreeString +100b12d0 FUN_100b12d0 undefined FUN_100b12d0(void) 74 0 +100b1320 FUN_100b1320 undefined FUN_100b1320(void) 94 0 +100b1380 FUN_100b1380 undefined FUN_100b1380(void) 74 0 +100b13d0 FUN_100b13d0 undefined FUN_100b13d0(void) 77 0 +100b1420 FUN_100b1420 undefined FUN_100b1420(void) 77 0 +100b1470 FUN_100b1470 undefined FUN_100b1470(void) 83 0 +100b14d0 FUN_100b14d0 undefined FUN_100b14d0(void) 74 0 +100b1520 FUN_100b1520 undefined FUN_100b1520(void) 94 0 +100b1580 FUN_100b1580 undefined FUN_100b1580(void) 74 0 +100b15d0 FUN_100b15d0 undefined FUN_100b15d0(void) 77 0 +100b1620 FUN_100b1620 undefined FUN_100b1620(void) 77 0 +100b1670 FUN_100b1670 undefined FUN_100b1670(void) 83 0 +100b16d0 FUN_100b16d0 undefined FUN_100b16d0(void) 74 0 +100b1720 FUN_100b1720 undefined FUN_100b1720(void) 94 0 +100b1780 FUN_100b1780 undefined FUN_100b1780(void) 74 0 +100b17d0 FUN_100b17d0 undefined FUN_100b17d0(void) 77 0 +100b1820 FUN_100b1820 undefined FUN_100b1820(void) 77 0 +100b1870 FUN_100b1870 undefined FUN_100b1870(void) 83 0 +100b18d0 FUN_100b18d0 undefined FUN_100b18d0(void) 74 0 +100b1920 FUN_100b1920 undefined FUN_100b1920(void) 94 0 +100b1980 FUN_100b1980 undefined FUN_100b1980(void) 74 0 +100b19d0 FUN_100b19d0 undefined FUN_100b19d0(void) 77 0 +100b1a20 FUN_100b1a20 undefined FUN_100b1a20(void) 77 0 +100b1a70 FUN_100b1a70 undefined FUN_100b1a70(void) 83 0 +100b1ad0 FUN_100b1ad0 undefined FUN_100b1ad0(void) 74 0 +100b1b20 FUN_100b1b20 undefined FUN_100b1b20(void) 94 0 +100b1b80 FUN_100b1b80 undefined FUN_100b1b80(void) 74 0 +100b1bd0 FUN_100b1bd0 undefined FUN_100b1bd0(void) 77 0 +100b1c20 FUN_100b1c20 undefined FUN_100b1c20(void) 77 0 +100b1c70 FUN_100b1c70 undefined FUN_100b1c70(void) 83 0 +100b1cd0 FUN_100b1cd0 undefined FUN_100b1cd0(void) 74 0 +100b1d20 FUN_100b1d20 undefined FUN_100b1d20(void) 94 0 +100b1d80 FUN_100b1d80 undefined FUN_100b1d80(void) 74 0 +100b1dd0 FUN_100b1dd0 undefined FUN_100b1dd0(void) 77 0 +100b1e20 FUN_100b1e20 undefined FUN_100b1e20(void) 77 0 +100b1e70 FUN_100b1e70 undefined FUN_100b1e70(void) 83 0 +100b1ed0 FUN_100b1ed0 undefined FUN_100b1ed0(void) 74 0 +100b1f20 FUN_100b1f20 undefined FUN_100b1f20(void) 94 0 +100b1f80 FUN_100b1f80 undefined FUN_100b1f80(void) 74 0 +100b1fd0 FUN_100b1fd0 undefined FUN_100b1fd0(void) 77 0 +100b2020 FUN_100b2020 undefined FUN_100b2020(void) 77 0 +100b2070 FUN_100b2070 undefined FUN_100b2070(void) 83 0 +100b20d0 FUN_100b20d0 undefined FUN_100b20d0(void) 74 0 +100b2120 FUN_100b2120 undefined FUN_100b2120(void) 94 0 +100b2180 FUN_100b2180 undefined FUN_100b2180(void) 74 0 +100b21d0 FUN_100b21d0 undefined FUN_100b21d0(void) 77 0 +100b2220 FUN_100b2220 undefined FUN_100b2220(void) 77 0 +100b2270 FUN_100b2270 undefined FUN_100b2270(void) 83 0 +100b22d0 FUN_100b22d0 undefined FUN_100b22d0(void) 74 0 +100b2320 FUN_100b2320 undefined FUN_100b2320(void) 94 0 +100b2380 FUN_100b2380 undefined FUN_100b2380(void) 74 0 +100b23d0 FUN_100b23d0 undefined FUN_100b23d0(void) 77 0 +100b2420 FUN_100b2420 undefined FUN_100b2420(void) 77 0 +100b2470 FUN_100b2470 undefined FUN_100b2470(void) 83 0 +100b24d0 FUN_100b24d0 undefined FUN_100b24d0(void) 74 0 +100b2520 FUN_100b2520 undefined FUN_100b2520(void) 94 0 +100b2580 FUN_100b2580 undefined FUN_100b2580(void) 74 0 +100b25d0 FUN_100b25d0 undefined FUN_100b25d0(void) 77 0 +100b2620 FUN_100b2620 undefined FUN_100b2620(void) 77 0 +100b2670 FUN_100b2670 undefined FUN_100b2670(void) 83 0 +100b26d0 FUN_100b26d0 undefined FUN_100b26d0(void) 74 0 +100b2720 FUN_100b2720 undefined FUN_100b2720(void) 94 0 +100b2780 FUN_100b2780 undefined FUN_100b2780(void) 74 0 +100b27d0 FUN_100b27d0 undefined FUN_100b27d0(void) 77 0 +100b2820 FUN_100b2820 undefined FUN_100b2820(void) 77 0 +100b2870 FUN_100b2870 undefined FUN_100b2870(void) 83 0 +100b28d0 FUN_100b28d0 undefined FUN_100b28d0(void) 74 0 +100b2920 FUN_100b2920 undefined FUN_100b2920(void) 94 0 +100b2980 FUN_100b2980 undefined FUN_100b2980(void) 74 0 +100b29d0 FUN_100b29d0 undefined FUN_100b29d0(void) 77 0 +100b2a20 FUN_100b2a20 undefined FUN_100b2a20(void) 77 0 +100b2a70 FUN_100b2a70 undefined FUN_100b2a70(void) 83 0 +100b2ad0 FUN_100b2ad0 undefined FUN_100b2ad0(void) 74 0 +100b2b20 FUN_100b2b20 undefined FUN_100b2b20(void) 94 0 +100b2b80 FUN_100b2b80 undefined FUN_100b2b80(void) 74 0 +100b2bd0 FUN_100b2bd0 undefined FUN_100b2bd0(void) 77 0 +100b2c20 FUN_100b2c20 undefined FUN_100b2c20(void) 77 0 +100b2c70 FUN_100b2c70 undefined FUN_100b2c70(void) 83 0 +100b2cd0 FUN_100b2cd0 undefined FUN_100b2cd0(void) 74 0 +100b2d20 FUN_100b2d20 undefined FUN_100b2d20(void) 94 0 +100b2d80 FUN_100b2d80 undefined FUN_100b2d80(void) 74 0 +100b2dd0 FUN_100b2dd0 undefined FUN_100b2dd0(void) 77 0 +100b2e20 FUN_100b2e20 undefined FUN_100b2e20(void) 77 0 +100b2e70 FUN_100b2e70 undefined FUN_100b2e70(void) 83 0 +100b2ed0 FUN_100b2ed0 undefined FUN_100b2ed0(void) 74 0 +100b2f20 FUN_100b2f20 undefined FUN_100b2f20(void) 94 0 +100b2f80 FUN_100b2f80 undefined FUN_100b2f80(void) 74 0 +100b2fd0 FUN_100b2fd0 undefined FUN_100b2fd0(void) 77 0 +100b3020 FUN_100b3020 undefined FUN_100b3020(void) 77 0 +100b3070 FUN_100b3070 undefined FUN_100b3070(void) 83 0 +100b30d0 FUN_100b30d0 undefined FUN_100b30d0(void) 74 0 +100b3120 FUN_100b3120 undefined FUN_100b3120(void) 94 0 +100b3180 FUN_100b3180 undefined FUN_100b3180(void) 74 0 +100b31d0 FUN_100b31d0 undefined FUN_100b31d0(void) 77 0 +100b3220 FUN_100b3220 undefined FUN_100b3220(void) 77 0 +100b3270 FUN_100b3270 undefined FUN_100b3270(void) 83 0 +100b32d0 FUN_100b32d0 undefined FUN_100b32d0(void) 74 0 +100b3320 FUN_100b3320 undefined FUN_100b3320(void) 94 0 +100b3380 FUN_100b3380 undefined FUN_100b3380(void) 74 0 +100b33d0 FUN_100b33d0 undefined FUN_100b33d0(void) 77 0 +100b3420 FUN_100b3420 undefined FUN_100b3420(void) 77 0 +100b3470 FUN_100b3470 undefined FUN_100b3470(void) 83 0 +100b34d0 FUN_100b34d0 undefined FUN_100b34d0(void) 74 0 +100b3520 FUN_100b3520 undefined FUN_100b3520(void) 94 0 +100b3580 FUN_100b3580 undefined FUN_100b3580(void) 74 0 +100b35d0 FUN_100b35d0 undefined FUN_100b35d0(void) 77 0 +100b3620 FUN_100b3620 undefined FUN_100b3620(void) 77 0 +100b3670 FUN_100b3670 undefined FUN_100b3670(void) 83 0 +100b36d0 FUN_100b36d0 undefined FUN_100b36d0(void) 74 0 +100b3720 FUN_100b3720 undefined FUN_100b3720(void) 94 0 +100b3780 FUN_100b3780 undefined FUN_100b3780(void) 74 0 +100b37d0 FUN_100b37d0 undefined FUN_100b37d0(void) 77 0 +100b3820 FUN_100b3820 undefined FUN_100b3820(void) 77 0 +100b3870 FUN_100b3870 undefined FUN_100b3870(void) 83 0 +100b38d0 FUN_100b38d0 undefined FUN_100b38d0(void) 74 0 +100b3920 FUN_100b3920 undefined FUN_100b3920(void) 94 0 +100b3980 FUN_100b3980 undefined FUN_100b3980(void) 74 0 +100b39d0 FUN_100b39d0 undefined FUN_100b39d0(void) 77 0 +100b3a20 FUN_100b3a20 undefined FUN_100b3a20(void) 77 0 +100b3a70 FUN_100b3a70 undefined FUN_100b3a70(void) 83 0 +100b3ad0 FUN_100b3ad0 undefined FUN_100b3ad0(void) 74 0 +100b3b20 FUN_100b3b20 undefined FUN_100b3b20(void) 94 0 +100b3b80 FUN_100b3b80 undefined FUN_100b3b80(void) 74 0 +100b3bd0 FUN_100b3bd0 undefined FUN_100b3bd0(void) 77 0 +100b3c20 FUN_100b3c20 undefined FUN_100b3c20(void) 77 0 +100b3c70 FUN_100b3c70 undefined FUN_100b3c70(void) 83 0 +100b3cd0 FUN_100b3cd0 undefined FUN_100b3cd0(void) 74 0 +100b3d20 FUN_100b3d20 undefined FUN_100b3d20(void) 94 0 +100b3d80 FUN_100b3d80 undefined FUN_100b3d80(void) 74 0 +100b3dd0 FUN_100b3dd0 undefined FUN_100b3dd0(void) 77 0 +100b3e20 FUN_100b3e20 undefined FUN_100b3e20(void) 77 0 +100b3e70 FUN_100b3e70 undefined FUN_100b3e70(void) 83 0 +100b3ed0 FUN_100b3ed0 undefined FUN_100b3ed0(void) 74 0 +100b3f20 FUN_100b3f20 undefined FUN_100b3f20(void) 94 0 +100b3f80 FUN_100b3f80 undefined FUN_100b3f80(void) 74 0 +100b3fd0 FUN_100b3fd0 undefined FUN_100b3fd0(void) 77 0 +100b4020 FUN_100b4020 undefined FUN_100b4020(void) 77 0 +100b4070 FUN_100b4070 undefined FUN_100b4070(void) 83 0 +100b40d0 FUN_100b40d0 undefined FUN_100b40d0(void) 74 0 +100b4120 FUN_100b4120 undefined FUN_100b4120(void) 94 0 +100b4180 FUN_100b4180 undefined FUN_100b4180(void) 74 0 +100b41d0 FUN_100b41d0 undefined FUN_100b41d0(void) 77 0 +100b4220 FUN_100b4220 undefined FUN_100b4220(void) 77 0 +100b4270 FUN_100b4270 undefined FUN_100b4270(void) 83 0 +100b42d0 FUN_100b42d0 undefined FUN_100b42d0(void) 74 0 +100b4320 FUN_100b4320 undefined FUN_100b4320(void) 94 0 +100b4380 FUN_100b4380 undefined FUN_100b4380(void) 74 0 +100b43d0 FUN_100b43d0 undefined FUN_100b43d0(void) 77 0 +100b4420 FUN_100b4420 undefined FUN_100b4420(void) 77 0 +100b4470 FUN_100b4470 undefined FUN_100b4470(void) 83 0 +100b44d0 FUN_100b44d0 undefined FUN_100b44d0(void) 74 0 +100b4520 FUN_100b4520 undefined FUN_100b4520(void) 94 0 +100b4580 FUN_100b4580 undefined FUN_100b4580(void) 74 0 +100b45d0 FUN_100b45d0 undefined FUN_100b45d0(void) 77 0 +100b4620 FUN_100b4620 undefined FUN_100b4620(void) 77 0 +100b4670 FUN_100b4670 undefined FUN_100b4670(void) 83 0 +100b46d0 FUN_100b46d0 undefined FUN_100b46d0(void) 74 0 +100b4720 FUN_100b4720 undefined FUN_100b4720(void) 94 0 +100b4780 FUN_100b4780 undefined FUN_100b4780(void) 74 0 +100b47d0 FUN_100b47d0 undefined FUN_100b47d0(void) 77 0 +100b4820 FUN_100b4820 undefined FUN_100b4820(void) 77 0 +100b4870 FUN_100b4870 undefined FUN_100b4870(void) 83 0 +100b48d0 FUN_100b48d0 undefined FUN_100b48d0(void) 74 0 +100b4920 FUN_100b4920 undefined FUN_100b4920(void) 94 0 +100b4980 FUN_100b4980 undefined FUN_100b4980(void) 74 0 +100b49d0 FUN_100b49d0 undefined FUN_100b49d0(void) 77 0 +100b4a20 FUN_100b4a20 undefined FUN_100b4a20(void) 77 0 +100b4a70 FUN_100b4a70 undefined FUN_100b4a70(void) 83 0 +100b4ad0 FUN_100b4ad0 undefined FUN_100b4ad0(void) 53 0 +100b4b10 FUN_100b4b10 undefined FUN_100b4b10(void) 73 0 +100b4b60 FUN_100b4b60 undefined FUN_100b4b60(void) 62 0 +100b4ba0 FUN_100b4ba0 undefined FUN_100b4ba0(void) 53 0 +100b4be0 FUN_100b4be0 undefined FUN_100b4be0(void) 56 0 +100b4c20 FUN_100b4c20 undefined FUN_100b4c20(void) 53 0 +100b4c60 FUN_100b4c60 undefined FUN_100b4c60(void) 62 0 +100b4ca0 FUN_100b4ca0 undefined FUN_100b4ca0(void) 53 0 +100b4ce0 FUN_100b4ce0 undefined FUN_100b4ce0(void) 73 0 +100b4d30 FUN_100b4d30 undefined FUN_100b4d30(void) 62 0 +100b4d70 FUN_100b4d70 undefined FUN_100b4d70(void) 53 0 +100b4db0 FUN_100b4db0 undefined FUN_100b4db0(void) 56 0 +100b4df0 FUN_100b4df0 undefined FUN_100b4df0(void) 53 0 +100b4e30 FUN_100b4e30 undefined FUN_100b4e30(void) 62 0 +100b4e70 FUN_100b4e70 undefined FUN_100b4e70(void) 78 0 +100b4ec0 FUN_100b4ec0 undefined FUN_100b4ec0(void) 53 0 +100b4f00 FUN_100b4f00 undefined FUN_100b4f00(void) 73 0 +100b4f50 FUN_100b4f50 undefined FUN_100b4f50(void) 62 0 +100b4f90 FUN_100b4f90 undefined FUN_100b4f90(void) 53 0 +100b4fd0 FUN_100b4fd0 undefined FUN_100b4fd0(void) 56 0 +100b5010 FUN_100b5010 undefined FUN_100b5010(void) 53 0 +100b5050 FUN_100b5050 undefined FUN_100b5050(void) 62 0 +100b5090 FUN_100b5090 undefined FUN_100b5090(void) 53 0 +100b50d0 FUN_100b50d0 undefined FUN_100b50d0(void) 73 0 +100b5120 FUN_100b5120 undefined FUN_100b5120(void) 62 0 +100b5160 FUN_100b5160 undefined FUN_100b5160(void) 53 0 +100b51a0 FUN_100b51a0 undefined FUN_100b51a0(void) 56 0 +100b51e0 FUN_100b51e0 undefined FUN_100b51e0(void) 53 0 +100b5220 FUN_100b5220 undefined FUN_100b5220(void) 62 0 +100b5260 FUN_100b5260 undefined FUN_100b5260(void) 53 0 +100b52a0 FUN_100b52a0 undefined FUN_100b52a0(void) 73 0 +100b52f0 FUN_100b52f0 undefined FUN_100b52f0(void) 62 0 +100b5330 FUN_100b5330 undefined FUN_100b5330(void) 53 0 +100b5370 FUN_100b5370 undefined FUN_100b5370(void) 56 0 +100b53b0 FUN_100b53b0 undefined FUN_100b53b0(void) 53 0 +100b53f0 FUN_100b53f0 undefined FUN_100b53f0(void) 62 0 +100b5430 FUN_100b5430 undefined FUN_100b5430(void) 53 0 +100b5470 FUN_100b5470 undefined FUN_100b5470(void) 73 0 +100b54c0 FUN_100b54c0 undefined FUN_100b54c0(void) 62 0 +100b5500 FUN_100b5500 undefined FUN_100b5500(void) 53 0 +100b5540 FUN_100b5540 undefined FUN_100b5540(void) 56 0 +100b5580 FUN_100b5580 undefined FUN_100b5580(void) 53 0 +100b55c0 FUN_100b55c0 undefined FUN_100b55c0(void) 62 0 +100b5600 FUN_100b5600 undefined FUN_100b5600(void) 53 0 +100b5640 FUN_100b5640 undefined FUN_100b5640(void) 73 0 +100b5690 FUN_100b5690 undefined FUN_100b5690(void) 62 0 +100b56d0 FUN_100b56d0 undefined FUN_100b56d0(void) 53 0 +100b5710 FUN_100b5710 undefined FUN_100b5710(void) 56 0 +100b5750 FUN_100b5750 undefined FUN_100b5750(void) 53 0 +100b5790 FUN_100b5790 undefined FUN_100b5790(void) 62 0 +100b57d0 FUN_100b57d0 undefined FUN_100b57d0(void) 53 0 +100b5810 FUN_100b5810 undefined FUN_100b5810(void) 73 0 +100b5860 FUN_100b5860 undefined FUN_100b5860(void) 62 0 +100b58a0 FUN_100b58a0 undefined FUN_100b58a0(void) 53 0 +100b58e0 FUN_100b58e0 undefined FUN_100b58e0(void) 56 0 +100b5920 FUN_100b5920 undefined FUN_100b5920(void) 53 0 +100b5960 FUN_100b5960 undefined FUN_100b5960(void) 62 0 +100b59a0 FUN_100b59a0 undefined FUN_100b59a0(void) 53 0 +100b59e0 FUN_100b59e0 undefined FUN_100b59e0(void) 73 0 +100b5a30 FUN_100b5a30 undefined FUN_100b5a30(void) 62 0 +100b5a70 FUN_100b5a70 undefined FUN_100b5a70(void) 53 0 +100b5ab0 FUN_100b5ab0 undefined FUN_100b5ab0(void) 56 0 +100b5af0 FUN_100b5af0 undefined FUN_100b5af0(void) 53 0 +100b5b30 FUN_100b5b30 undefined FUN_100b5b30(void) 62 0 +100b5b70 FUN_100b5b70 undefined FUN_100b5b70(void) 53 0 +100b5bb0 FUN_100b5bb0 undefined FUN_100b5bb0(void) 73 0 +100b5c00 FUN_100b5c00 undefined FUN_100b5c00(void) 62 0 +100b5c40 FUN_100b5c40 undefined FUN_100b5c40(void) 53 0 +100b5c80 FUN_100b5c80 undefined FUN_100b5c80(void) 56 0 +100b5cc0 FUN_100b5cc0 undefined FUN_100b5cc0(void) 53 0 +100b5d00 FUN_100b5d00 undefined FUN_100b5d00(void) 62 0 +100b5d40 FUN_100b5d40 undefined FUN_100b5d40(void) 53 0 +100b5d80 FUN_100b5d80 undefined FUN_100b5d80(void) 73 0 +100b5dd0 FUN_100b5dd0 undefined FUN_100b5dd0(void) 62 0 +100b5e10 FUN_100b5e10 undefined FUN_100b5e10(void) 53 0 +100b5e50 FUN_100b5e50 undefined FUN_100b5e50(void) 56 0 +100b5e90 FUN_100b5e90 undefined FUN_100b5e90(void) 53 0 +100b5ed0 FUN_100b5ed0 undefined FUN_100b5ed0(void) 62 0 +100b5f10 FUN_100b5f10 undefined FUN_100b5f10(void) 53 0 +100b5f50 FUN_100b5f50 undefined FUN_100b5f50(void) 73 0 +100b5fa0 FUN_100b5fa0 undefined FUN_100b5fa0(void) 62 0 +100b5fe0 FUN_100b5fe0 undefined FUN_100b5fe0(void) 53 0 +100b6020 FUN_100b6020 undefined FUN_100b6020(void) 56 0 +100b6060 FUN_100b6060 undefined FUN_100b6060(void) 53 0 +100b60a0 FUN_100b60a0 undefined FUN_100b60a0(void) 62 0 +100b60e0 FUN_100b60e0 undefined FUN_100b60e0(void) 53 0 +100b6120 FUN_100b6120 undefined FUN_100b6120(void) 73 0 +100b6170 FUN_100b6170 undefined FUN_100b6170(void) 62 0 +100b61b0 FUN_100b61b0 undefined FUN_100b61b0(void) 53 0 +100b61f0 FUN_100b61f0 undefined FUN_100b61f0(void) 56 0 +100b6230 FUN_100b6230 undefined FUN_100b6230(void) 53 0 +100b6270 FUN_100b6270 undefined FUN_100b6270(void) 62 0 +100b62b0 FUN_100b62b0 undefined FUN_100b62b0(void) 53 0 +100b62f0 FUN_100b62f0 undefined FUN_100b62f0(void) 73 0 +100b6340 FUN_100b6340 undefined FUN_100b6340(void) 62 0 +100b6380 FUN_100b6380 undefined FUN_100b6380(void) 53 0 +100b63c0 FUN_100b63c0 undefined FUN_100b63c0(void) 56 0 +100b6400 FUN_100b6400 undefined FUN_100b6400(void) 53 0 +100b6440 FUN_100b6440 undefined FUN_100b6440(void) 62 0 +100b6480 FUN_100b6480 undefined FUN_100b6480(void) 53 0 +100b64c0 FUN_100b64c0 undefined FUN_100b64c0(void) 73 0 +100b6510 FUN_100b6510 undefined FUN_100b6510(void) 62 0 +100b6550 FUN_100b6550 undefined FUN_100b6550(void) 53 0 +100b6590 FUN_100b6590 undefined FUN_100b6590(void) 56 0 +100b65d0 FUN_100b65d0 undefined FUN_100b65d0(void) 53 0 +100b6610 FUN_100b6610 undefined FUN_100b6610(void) 62 0 +100b6650 FUN_100b6650 undefined FUN_100b6650(void) 53 0 +100b6690 FUN_100b6690 undefined FUN_100b6690(void) 73 0 +100b66e0 FUN_100b66e0 undefined FUN_100b66e0(void) 62 0 +100b6720 FUN_100b6720 undefined FUN_100b6720(void) 53 0 +100b6760 FUN_100b6760 undefined FUN_100b6760(void) 56 0 +100b67a0 FUN_100b67a0 undefined FUN_100b67a0(void) 53 0 +100b67e0 FUN_100b67e0 undefined FUN_100b67e0(void) 62 0 +100b6820 FUN_100b6820 undefined FUN_100b6820(void) 53 0 +100b6860 FUN_100b6860 undefined FUN_100b6860(void) 73 0 +100b68b0 FUN_100b68b0 undefined FUN_100b68b0(void) 62 0 +100b68f0 FUN_100b68f0 undefined FUN_100b68f0(void) 53 0 +100b6930 FUN_100b6930 undefined FUN_100b6930(void) 56 0 +100b6970 FUN_100b6970 undefined FUN_100b6970(void) 53 0 +100b69b0 FUN_100b69b0 undefined FUN_100b69b0(void) 62 0 +100b69f0 FUN_100b69f0 undefined FUN_100b69f0(void) 53 0 +100b6a30 FUN_100b6a30 undefined FUN_100b6a30(void) 73 0 +100b6a80 FUN_100b6a80 undefined FUN_100b6a80(void) 62 0 +100b6ac0 FUN_100b6ac0 undefined FUN_100b6ac0(void) 53 0 +100b6b00 FUN_100b6b00 undefined FUN_100b6b00(void) 56 0 +100b6b40 FUN_100b6b40 undefined FUN_100b6b40(void) 53 0 +100b6b80 FUN_100b6b80 undefined FUN_100b6b80(void) 62 0 +100b6bc0 FUN_100b6bc0 undefined FUN_100b6bc0(void) 53 0 +100b6c00 FUN_100b6c00 undefined FUN_100b6c00(void) 73 0 +100b6c50 FUN_100b6c50 undefined FUN_100b6c50(void) 62 0 +100b6c90 FUN_100b6c90 undefined FUN_100b6c90(void) 53 0 +100b6cd0 FUN_100b6cd0 undefined FUN_100b6cd0(void) 56 0 +100b6d10 FUN_100b6d10 undefined FUN_100b6d10(void) 53 0 +100b6d50 FUN_100b6d50 undefined FUN_100b6d50(void) 62 0 +100b6d90 FUN_100b6d90 undefined FUN_100b6d90(void) 53 0 +100b6dd0 FUN_100b6dd0 undefined FUN_100b6dd0(void) 73 0 +100b6e20 FUN_100b6e20 undefined FUN_100b6e20(void) 62 0 +100b6e60 FUN_100b6e60 undefined FUN_100b6e60(void) 53 0 +100b6ea0 FUN_100b6ea0 undefined FUN_100b6ea0(void) 56 0 +100b6ee0 FUN_100b6ee0 undefined FUN_100b6ee0(void) 53 0 +100b6f20 FUN_100b6f20 undefined FUN_100b6f20(void) 62 0 +100b6f60 FUN_100b6f60 undefined FUN_100b6f60(void) 53 0 +100b6fa0 FUN_100b6fa0 undefined FUN_100b6fa0(void) 73 0 +100b6ff0 FUN_100b6ff0 undefined FUN_100b6ff0(void) 62 0 +100b7030 FUN_100b7030 undefined FUN_100b7030(void) 53 0 +100b7070 FUN_100b7070 undefined FUN_100b7070(void) 56 0 +100b70b0 FUN_100b70b0 undefined FUN_100b70b0(void) 53 0 +100b70f0 FUN_100b70f0 undefined FUN_100b70f0(void) 62 0 +100b7130 FUN_100b7130 undefined FUN_100b7130(void) 53 0 +100b7170 FUN_100b7170 undefined FUN_100b7170(void) 73 0 +100b71c0 FUN_100b71c0 undefined FUN_100b71c0(void) 62 0 +100b7200 FUN_100b7200 undefined FUN_100b7200(void) 53 0 +100b7240 FUN_100b7240 undefined FUN_100b7240(void) 56 0 +100b7280 FUN_100b7280 undefined FUN_100b7280(void) 53 0 +100b72c0 FUN_100b72c0 undefined FUN_100b72c0(void) 62 0 +100b7300 FUN_100b7300 undefined FUN_100b7300(void) 53 0 +100b7340 FUN_100b7340 undefined FUN_100b7340(void) 73 0 +100b7390 FUN_100b7390 undefined FUN_100b7390(void) 62 0 +100b73d0 FUN_100b73d0 undefined FUN_100b73d0(void) 53 0 +100b7410 FUN_100b7410 undefined FUN_100b7410(void) 56 0 +100b7450 FUN_100b7450 undefined FUN_100b7450(void) 53 0 +100b7490 FUN_100b7490 undefined FUN_100b7490(void) 62 0 +100b74d0 FUN_100b74d0 undefined FUN_100b74d0(void) 53 0 +100b7510 FUN_100b7510 undefined FUN_100b7510(void) 73 0 +100b7560 FUN_100b7560 undefined FUN_100b7560(void) 62 0 +100b75a0 FUN_100b75a0 undefined FUN_100b75a0(void) 53 0 +100b75e0 FUN_100b75e0 undefined FUN_100b75e0(void) 56 0 +100b7620 FUN_100b7620 undefined FUN_100b7620(void) 53 0 +100b7660 FUN_100b7660 undefined FUN_100b7660(void) 62 0 +100b76a0 FUN_100b76a0 undefined FUN_100b76a0(void) 53 0 +100b76e0 FUN_100b76e0 undefined FUN_100b76e0(void) 73 0 +100b7730 FUN_100b7730 undefined FUN_100b7730(void) 62 0 +100b7770 FUN_100b7770 undefined FUN_100b7770(void) 53 0 +100b77b0 FUN_100b77b0 undefined FUN_100b77b0(void) 56 0 +100b77f0 FUN_100b77f0 undefined FUN_100b77f0(void) 53 0 +100b7830 FUN_100b7830 undefined FUN_100b7830(void) 62 0 +100b7870 FUN_100b7870 undefined FUN_100b7870(void) 53 0 +100b78b0 FUN_100b78b0 undefined FUN_100b78b0(void) 73 0 +100b7900 FUN_100b7900 undefined FUN_100b7900(void) 62 0 +100b7940 FUN_100b7940 undefined FUN_100b7940(void) 53 0 +100b7980 FUN_100b7980 undefined FUN_100b7980(void) 56 0 +100b79c0 FUN_100b79c0 undefined FUN_100b79c0(void) 53 0 +100b7a00 FUN_100b7a00 undefined FUN_100b7a00(void) 62 0 +100b7a40 FUN_100b7a40 undefined FUN_100b7a40(void) 53 0 +100b7a80 FUN_100b7a80 undefined FUN_100b7a80(void) 73 0 +100b7ad0 FUN_100b7ad0 undefined FUN_100b7ad0(void) 62 0 +100b7b10 FUN_100b7b10 undefined FUN_100b7b10(void) 53 0 +100b7b50 FUN_100b7b50 undefined FUN_100b7b50(void) 56 0 +100b7b90 FUN_100b7b90 undefined FUN_100b7b90(void) 53 0 +100b7bd0 FUN_100b7bd0 undefined FUN_100b7bd0(void) 62 0 +100b7c10 FUN_100b7c10 undefined FUN_100b7c10(void) 53 0 +100b7c50 FUN_100b7c50 undefined FUN_100b7c50(void) 73 0 +100b7ca0 FUN_100b7ca0 undefined FUN_100b7ca0(void) 62 0 +100b7ce0 FUN_100b7ce0 undefined FUN_100b7ce0(void) 53 0 +100b7d20 FUN_100b7d20 undefined FUN_100b7d20(void) 56 0 +100b7d60 FUN_100b7d60 undefined FUN_100b7d60(void) 53 0 +100b7da0 FUN_100b7da0 undefined FUN_100b7da0(void) 62 0 +100b7de0 FUN_100b7de0 undefined FUN_100b7de0(void) 73 0 +100b7e30 FUN_100b7e30 undefined FUN_100b7e30(void) 62 0 +100b7e70 FUN_100b7e70 undefined FUN_100b7e70(void) 53 0 +100b7eb0 FUN_100b7eb0 undefined FUN_100b7eb0(void) 53 0 +100b7ef0 FUN_100b7ef0 undefined FUN_100b7ef0(void) 62 0 +100b7f30 FUN_100b7f30 undefined FUN_100b7f30(void) 73 0 +100b7f80 FUN_100b7f80 undefined FUN_100b7f80(void) 62 0 +100b7fc0 FUN_100b7fc0 undefined FUN_100b7fc0(void) 53 0 +100b8000 FUN_100b8000 undefined FUN_100b8000(void) 53 0 +100b8040 FUN_100b8040 undefined FUN_100b8040(void) 62 0 +100b8080 FUN_100b8080 undefined FUN_100b8080(void) 73 0 +100b80d0 FUN_100b80d0 undefined FUN_100b80d0(void) 62 0 +100b8110 FUN_100b8110 undefined FUN_100b8110(void) 53 0 +100b8150 FUN_100b8150 undefined FUN_100b8150(void) 53 0 +100b8190 FUN_100b8190 undefined FUN_100b8190(void) 62 0 +100b81d0 FUN_100b81d0 undefined FUN_100b81d0(void) 73 0 +100b8220 FUN_100b8220 undefined FUN_100b8220(void) 62 0 +100b8260 FUN_100b8260 undefined FUN_100b8260(void) 53 0 +100b82a0 FUN_100b82a0 undefined FUN_100b82a0(void) 53 0 +100b82e0 FUN_100b82e0 undefined FUN_100b82e0(void) 62 0 +100b8320 FUN_100b8320 undefined FUN_100b8320(void) 73 0 +100b8370 FUN_100b8370 undefined FUN_100b8370(void) 62 0 +100b83b0 FUN_100b83b0 undefined FUN_100b83b0(void) 53 0 +100b83f0 FUN_100b83f0 undefined FUN_100b83f0(void) 53 0 +100b8430 FUN_100b8430 undefined FUN_100b8430(void) 62 0 +100b8470 FUN_100b8470 undefined FUN_100b8470(void) 73 0 +100b84c0 FUN_100b84c0 undefined FUN_100b84c0(void) 62 0 +100b8500 FUN_100b8500 undefined FUN_100b8500(void) 53 0 +100b8540 FUN_100b8540 undefined FUN_100b8540(void) 53 0 +100b8580 FUN_100b8580 undefined FUN_100b8580(void) 62 0 +100b85c0 FUN_100b85c0 undefined FUN_100b85c0(void) 73 0 +100b8610 FUN_100b8610 undefined FUN_100b8610(void) 62 0 +100b8650 FUN_100b8650 undefined FUN_100b8650(void) 53 0 +100b8690 FUN_100b8690 undefined FUN_100b8690(void) 53 0 +100b86d0 FUN_100b86d0 undefined FUN_100b86d0(void) 62 0 +100b8710 FUN_100b8710 undefined FUN_100b8710(void) 73 0 +100b8760 FUN_100b8760 undefined FUN_100b8760(void) 62 0 +100b87a0 FUN_100b87a0 undefined FUN_100b87a0(void) 53 0 +100b87e0 FUN_100b87e0 undefined FUN_100b87e0(void) 53 0 +100b8820 FUN_100b8820 undefined FUN_100b8820(void) 62 0 +100b8860 FUN_100b8860 undefined FUN_100b8860(void) 73 0 +100b88b0 FUN_100b88b0 undefined FUN_100b88b0(void) 62 0 +100b88f0 FUN_100b88f0 undefined FUN_100b88f0(void) 53 0 +100b8930 FUN_100b8930 undefined FUN_100b8930(void) 53 0 +100b8970 FUN_100b8970 undefined FUN_100b8970(void) 62 0 +100b89b0 FUN_100b89b0 undefined FUN_100b89b0(void) 73 0 +100b8a00 FUN_100b8a00 undefined FUN_100b8a00(void) 62 0 +100b8a40 FUN_100b8a40 undefined FUN_100b8a40(void) 53 0 +100b8a80 FUN_100b8a80 undefined FUN_100b8a80(void) 53 0 +100b8ac0 FUN_100b8ac0 undefined FUN_100b8ac0(void) 62 0 +100b8b00 FUN_100b8b00 undefined FUN_100b8b00(void) 73 0 +100b8b50 FUN_100b8b50 undefined FUN_100b8b50(void) 62 0 +100b8b90 FUN_100b8b90 undefined FUN_100b8b90(void) 53 0 +100b8bd0 FUN_100b8bd0 undefined FUN_100b8bd0(void) 53 0 +100b8c10 FUN_100b8c10 undefined FUN_100b8c10(void) 62 0 +100b8c50 FUN_100b8c50 undefined FUN_100b8c50(void) 73 0 +100b8ca0 FUN_100b8ca0 undefined FUN_100b8ca0(void) 62 0 +100b8ce0 FUN_100b8ce0 undefined FUN_100b8ce0(void) 53 0 +100b8d20 FUN_100b8d20 undefined FUN_100b8d20(void) 53 0 +100b8d60 FUN_100b8d60 undefined FUN_100b8d60(void) 62 0 +100b8da0 FUN_100b8da0 undefined FUN_100b8da0(void) 73 0 +100b8df0 FUN_100b8df0 undefined FUN_100b8df0(void) 62 0 +100b8e30 FUN_100b8e30 undefined FUN_100b8e30(void) 53 0 +100b8e70 FUN_100b8e70 undefined FUN_100b8e70(void) 53 0 +100b8eb0 FUN_100b8eb0 undefined FUN_100b8eb0(void) 62 0 +100b8ef0 FUN_100b8ef0 undefined FUN_100b8ef0(void) 73 0 +100b8f40 FUN_100b8f40 undefined FUN_100b8f40(void) 62 0 +100b8f80 FUN_100b8f80 undefined FUN_100b8f80(void) 53 0 +100b8fc0 FUN_100b8fc0 undefined FUN_100b8fc0(void) 53 0 +100b9000 FUN_100b9000 undefined FUN_100b9000(void) 62 0 +100b9040 FUN_100b9040 undefined FUN_100b9040(void) 73 0 +100b9090 FUN_100b9090 undefined FUN_100b9090(void) 62 0 +100b90d0 FUN_100b90d0 undefined FUN_100b90d0(void) 53 0 +100b9110 FUN_100b9110 undefined FUN_100b9110(void) 53 0 +100b9150 FUN_100b9150 undefined FUN_100b9150(void) 62 0 +100b9190 FUN_100b9190 undefined FUN_100b9190(void) 73 0 +100b91e0 FUN_100b91e0 undefined FUN_100b91e0(void) 62 0 +100b9220 FUN_100b9220 undefined FUN_100b9220(void) 53 0 +100b9260 FUN_100b9260 undefined FUN_100b9260(void) 53 0 +100b92a0 FUN_100b92a0 undefined FUN_100b92a0(void) 62 0 +100b92e0 FUN_100b92e0 undefined FUN_100b92e0(void) 73 0 +100b9330 FUN_100b9330 undefined FUN_100b9330(void) 62 0 +100b9370 FUN_100b9370 undefined FUN_100b9370(void) 53 0 +100b93b0 FUN_100b93b0 undefined FUN_100b93b0(void) 53 0 +100b93f0 FUN_100b93f0 undefined FUN_100b93f0(void) 62 0 +100b9430 FUN_100b9430 undefined FUN_100b9430(void) 73 0 +100b9480 FUN_100b9480 undefined FUN_100b9480(void) 62 0 +100b94c0 FUN_100b94c0 undefined FUN_100b94c0(void) 53 0 +100b9500 FUN_100b9500 undefined FUN_100b9500(void) 53 0 +100b9540 FUN_100b9540 undefined FUN_100b9540(void) 62 0 +100b9580 FUN_100b9580 undefined FUN_100b9580(void) 73 0 +100b95d0 FUN_100b95d0 undefined FUN_100b95d0(void) 62 0 +100b9610 FUN_100b9610 undefined FUN_100b9610(void) 53 0 +100b9650 FUN_100b9650 undefined FUN_100b9650(void) 53 0 +100b9690 FUN_100b9690 undefined FUN_100b9690(void) 62 0 +100b96d0 FUN_100b96d0 undefined FUN_100b96d0(void) 73 0 +100b9720 FUN_100b9720 undefined FUN_100b9720(void) 62 0 +100b9760 FUN_100b9760 undefined FUN_100b9760(void) 53 0 +100b97a0 FUN_100b97a0 undefined FUN_100b97a0(void) 53 0 +100b97e0 FUN_100b97e0 undefined FUN_100b97e0(void) 62 0 +100b9820 FUN_100b9820 undefined FUN_100b9820(void) 73 0 +100b9870 FUN_100b9870 undefined FUN_100b9870(void) 62 0 +100b98b0 FUN_100b98b0 undefined FUN_100b98b0(void) 53 0 +100b98f0 FUN_100b98f0 undefined FUN_100b98f0(void) 53 0 +100b9930 FUN_100b9930 undefined FUN_100b9930(void) 62 0 +100b9970 FUN_100b9970 undefined FUN_100b9970(void) 73 0 +100b99c0 FUN_100b99c0 undefined FUN_100b99c0(void) 62 0 +100b9a00 FUN_100b9a00 undefined FUN_100b9a00(void) 53 0 +100b9a40 FUN_100b9a40 undefined FUN_100b9a40(void) 53 0 +100b9a80 FUN_100b9a80 undefined FUN_100b9a80(void) 62 0 +100b9ac0 FUN_100b9ac0 undefined FUN_100b9ac0(void) 73 0 +100b9b10 FUN_100b9b10 undefined FUN_100b9b10(void) 62 0 +100b9b50 FUN_100b9b50 undefined FUN_100b9b50(void) 53 0 +100b9b90 FUN_100b9b90 undefined FUN_100b9b90(void) 53 0 +100b9bd0 FUN_100b9bd0 undefined FUN_100b9bd0(void) 62 0 +100b9c10 FUN_100b9c10 undefined FUN_100b9c10(void) 73 0 +100b9c60 FUN_100b9c60 undefined FUN_100b9c60(void) 62 0 +100b9ca0 FUN_100b9ca0 undefined FUN_100b9ca0(void) 53 0 +100b9ce0 FUN_100b9ce0 undefined FUN_100b9ce0(void) 53 0 +100b9d20 FUN_100b9d20 undefined FUN_100b9d20(void) 62 0 +100b9d60 FUN_100b9d60 undefined FUN_100b9d60(void) 73 0 +100b9db0 FUN_100b9db0 undefined FUN_100b9db0(void) 62 0 +100b9df0 FUN_100b9df0 undefined FUN_100b9df0(void) 53 0 +100b9e30 FUN_100b9e30 undefined FUN_100b9e30(void) 53 0 +100b9e70 FUN_100b9e70 undefined FUN_100b9e70(void) 62 0 +100b9eb0 FUN_100b9eb0 undefined FUN_100b9eb0(void) 73 0 +100b9f00 FUN_100b9f00 undefined FUN_100b9f00(void) 62 0 +100b9f40 FUN_100b9f40 undefined FUN_100b9f40(void) 53 0 +100b9f80 FUN_100b9f80 undefined FUN_100b9f80(void) 53 0 +100b9fc0 FUN_100b9fc0 undefined FUN_100b9fc0(void) 62 0 +100ba000 FUN_100ba000 undefined FUN_100ba000(void) 73 0 +100ba050 FUN_100ba050 undefined FUN_100ba050(void) 62 0 +100ba090 FUN_100ba090 undefined FUN_100ba090(void) 53 0 +100ba0d0 FUN_100ba0d0 undefined FUN_100ba0d0(void) 53 0 +100ba110 FUN_100ba110 undefined FUN_100ba110(void) 62 0 +100ba150 FUN_100ba150 undefined FUN_100ba150(void) 73 0 +100ba1a0 FUN_100ba1a0 undefined FUN_100ba1a0(void) 62 0 +100ba1e0 FUN_100ba1e0 undefined FUN_100ba1e0(void) 53 0 +100ba220 FUN_100ba220 undefined FUN_100ba220(void) 53 0 +100ba260 FUN_100ba260 undefined FUN_100ba260(void) 62 0 +100ba2a0 FUN_100ba2a0 undefined FUN_100ba2a0(void) 53 0 +100ba2e0 FUN_100ba2e0 undefined FUN_100ba2e0(void) 73 0 +100ba330 FUN_100ba330 undefined FUN_100ba330(void) 62 0 +100ba370 FUN_100ba370 undefined FUN_100ba370(void) 53 0 +100ba3b0 FUN_100ba3b0 undefined FUN_100ba3b0(void) 56 0 +100ba3f0 FUN_100ba3f0 undefined FUN_100ba3f0(void) 53 0 +100ba430 FUN_100ba430 undefined FUN_100ba430(void) 62 0 +100ba470 FUN_100ba470 undefined FUN_100ba470(void) 53 0 +100ba4b0 FUN_100ba4b0 undefined FUN_100ba4b0(void) 73 0 +100ba500 FUN_100ba500 undefined FUN_100ba500(void) 62 0 +100ba540 FUN_100ba540 undefined FUN_100ba540(void) 53 0 +100ba580 FUN_100ba580 undefined FUN_100ba580(void) 56 0 +100ba5c0 FUN_100ba5c0 undefined FUN_100ba5c0(void) 53 0 +100ba600 FUN_100ba600 undefined FUN_100ba600(void) 62 0 +100ba640 FUN_100ba640 undefined FUN_100ba640(void) 78 0 +100ba690 FUN_100ba690 undefined FUN_100ba690(void) 53 0 +100ba6d0 FUN_100ba6d0 undefined FUN_100ba6d0(void) 73 0 +100ba720 FUN_100ba720 undefined FUN_100ba720(void) 62 0 +100ba760 FUN_100ba760 undefined FUN_100ba760(void) 53 0 +100ba7a0 FUN_100ba7a0 undefined FUN_100ba7a0(void) 56 0 +100ba7e0 FUN_100ba7e0 undefined FUN_100ba7e0(void) 53 0 +100ba820 FUN_100ba820 undefined FUN_100ba820(void) 62 0 +100ba860 FUN_100ba860 undefined FUN_100ba860(void) 53 0 +100ba8a0 FUN_100ba8a0 undefined FUN_100ba8a0(void) 73 0 +100ba8f0 FUN_100ba8f0 undefined FUN_100ba8f0(void) 62 0 +100ba930 FUN_100ba930 undefined FUN_100ba930(void) 53 0 +100ba970 FUN_100ba970 undefined FUN_100ba970(void) 56 0 +100ba9b0 FUN_100ba9b0 undefined FUN_100ba9b0(void) 53 0 +100ba9f0 FUN_100ba9f0 undefined FUN_100ba9f0(void) 62 0 +100baa30 FUN_100baa30 undefined FUN_100baa30(void) 53 0 +100baa70 FUN_100baa70 undefined FUN_100baa70(void) 73 0 +100baac0 FUN_100baac0 undefined FUN_100baac0(void) 62 0 +100bab00 FUN_100bab00 undefined FUN_100bab00(void) 53 0 +100bab40 FUN_100bab40 undefined FUN_100bab40(void) 56 0 +100bab80 FUN_100bab80 undefined FUN_100bab80(void) 53 0 +100babc0 FUN_100babc0 undefined FUN_100babc0(void) 62 0 +100bac00 FUN_100bac00 undefined FUN_100bac00(void) 53 0 +100bac40 FUN_100bac40 undefined FUN_100bac40(void) 73 0 +100bac90 FUN_100bac90 undefined FUN_100bac90(void) 62 0 +100bacd0 FUN_100bacd0 undefined FUN_100bacd0(void) 53 0 +100bad10 FUN_100bad10 undefined FUN_100bad10(void) 56 0 +100bad50 FUN_100bad50 undefined FUN_100bad50(void) 53 0 +100bad90 FUN_100bad90 undefined FUN_100bad90(void) 62 0 +100badd0 FUN_100badd0 undefined FUN_100badd0(void) 53 0 +100bae10 FUN_100bae10 undefined FUN_100bae10(void) 73 0 +100bae60 FUN_100bae60 undefined FUN_100bae60(void) 62 0 +100baea0 FUN_100baea0 undefined FUN_100baea0(void) 53 0 +100baee0 FUN_100baee0 undefined FUN_100baee0(void) 56 0 +100baf20 FUN_100baf20 undefined FUN_100baf20(void) 53 0 +100baf60 FUN_100baf60 undefined FUN_100baf60(void) 62 0 +100bafa0 FUN_100bafa0 undefined FUN_100bafa0(void) 53 0 +100bafe0 FUN_100bafe0 undefined FUN_100bafe0(void) 73 0 +100bb030 FUN_100bb030 undefined FUN_100bb030(void) 62 0 +100bb070 FUN_100bb070 undefined FUN_100bb070(void) 53 0 +100bb0b0 FUN_100bb0b0 undefined FUN_100bb0b0(void) 56 0 +100bb0f0 FUN_100bb0f0 undefined FUN_100bb0f0(void) 53 0 +100bb130 FUN_100bb130 undefined FUN_100bb130(void) 62 0 +100bb170 FUN_100bb170 undefined FUN_100bb170(void) 53 0 +100bb1b0 FUN_100bb1b0 undefined FUN_100bb1b0(void) 73 0 +100bb200 FUN_100bb200 undefined FUN_100bb200(void) 62 0 +100bb240 FUN_100bb240 undefined FUN_100bb240(void) 53 0 +100bb280 FUN_100bb280 undefined FUN_100bb280(void) 56 0 +100bb2c0 FUN_100bb2c0 undefined FUN_100bb2c0(void) 53 0 +100bb300 FUN_100bb300 undefined FUN_100bb300(void) 62 0 +100bb340 FUN_100bb340 undefined FUN_100bb340(void) 53 0 +100bb380 FUN_100bb380 undefined FUN_100bb380(void) 73 0 +100bb3d0 FUN_100bb3d0 undefined FUN_100bb3d0(void) 62 0 +100bb410 FUN_100bb410 undefined FUN_100bb410(void) 53 0 +100bb450 FUN_100bb450 undefined FUN_100bb450(void) 56 0 +100bb490 FUN_100bb490 undefined FUN_100bb490(void) 53 0 +100bb4d0 FUN_100bb4d0 undefined FUN_100bb4d0(void) 62 0 +100bb510 FUN_100bb510 undefined FUN_100bb510(void) 53 0 +100bb550 FUN_100bb550 undefined FUN_100bb550(void) 73 0 +100bb5a0 FUN_100bb5a0 undefined FUN_100bb5a0(void) 62 0 +100bb5e0 FUN_100bb5e0 undefined FUN_100bb5e0(void) 53 0 +100bb620 FUN_100bb620 undefined FUN_100bb620(void) 56 0 +100bb660 FUN_100bb660 undefined FUN_100bb660(void) 53 0 +100bb6a0 FUN_100bb6a0 undefined FUN_100bb6a0(void) 62 0 +100bb6e0 FUN_100bb6e0 undefined FUN_100bb6e0(void) 53 0 +100bb720 FUN_100bb720 undefined FUN_100bb720(void) 73 0 +100bb770 FUN_100bb770 undefined FUN_100bb770(void) 62 0 +100bb7b0 FUN_100bb7b0 undefined FUN_100bb7b0(void) 53 0 +100bb7f0 FUN_100bb7f0 undefined FUN_100bb7f0(void) 56 0 +100bb830 FUN_100bb830 undefined FUN_100bb830(void) 53 0 +100bb870 FUN_100bb870 undefined FUN_100bb870(void) 62 0 +100bb8b0 FUN_100bb8b0 undefined FUN_100bb8b0(void) 53 0 +100bb8f0 FUN_100bb8f0 undefined FUN_100bb8f0(void) 73 0 +100bb940 FUN_100bb940 undefined FUN_100bb940(void) 62 0 +100bb980 FUN_100bb980 undefined FUN_100bb980(void) 53 0 +100bb9c0 FUN_100bb9c0 undefined FUN_100bb9c0(void) 56 0 +100bba00 FUN_100bba00 undefined FUN_100bba00(void) 53 0 +100bba40 FUN_100bba40 undefined FUN_100bba40(void) 62 0 +100bba80 FUN_100bba80 undefined FUN_100bba80(void) 53 0 +100bbac0 FUN_100bbac0 undefined FUN_100bbac0(void) 73 0 +100bbb10 FUN_100bbb10 undefined FUN_100bbb10(void) 62 0 +100bbb50 FUN_100bbb50 undefined FUN_100bbb50(void) 53 0 +100bbb90 FUN_100bbb90 undefined FUN_100bbb90(void) 56 0 +100bbbd0 FUN_100bbbd0 undefined FUN_100bbbd0(void) 53 0 +100bbc10 FUN_100bbc10 undefined FUN_100bbc10(void) 62 0 +100bbc50 FUN_100bbc50 undefined FUN_100bbc50(void) 53 0 +100bbc90 FUN_100bbc90 undefined FUN_100bbc90(void) 73 0 +100bbce0 FUN_100bbce0 undefined FUN_100bbce0(void) 62 0 +100bbd20 FUN_100bbd20 undefined FUN_100bbd20(void) 53 0 +100bbd60 FUN_100bbd60 undefined FUN_100bbd60(void) 56 0 +100bbda0 FUN_100bbda0 undefined FUN_100bbda0(void) 53 0 +100bbde0 FUN_100bbde0 undefined FUN_100bbde0(void) 62 0 +100bbe20 FUN_100bbe20 undefined FUN_100bbe20(void) 53 0 +100bbe60 FUN_100bbe60 undefined FUN_100bbe60(void) 73 0 +100bbeb0 FUN_100bbeb0 undefined FUN_100bbeb0(void) 62 0 +100bbef0 FUN_100bbef0 undefined FUN_100bbef0(void) 53 0 +100bbf30 FUN_100bbf30 undefined FUN_100bbf30(void) 56 0 +100bbf70 FUN_100bbf70 undefined FUN_100bbf70(void) 53 0 +100bbfb0 FUN_100bbfb0 undefined FUN_100bbfb0(void) 62 0 +100bbff0 FUN_100bbff0 undefined FUN_100bbff0(void) 53 0 +100bc030 FUN_100bc030 undefined FUN_100bc030(void) 73 0 +100bc080 FUN_100bc080 undefined FUN_100bc080(void) 62 0 +100bc0c0 FUN_100bc0c0 undefined FUN_100bc0c0(void) 53 0 +100bc100 FUN_100bc100 undefined FUN_100bc100(void) 56 0 +100bc140 FUN_100bc140 undefined FUN_100bc140(void) 53 0 +100bc180 FUN_100bc180 undefined FUN_100bc180(void) 62 0 +100bc1c0 FUN_100bc1c0 undefined FUN_100bc1c0(void) 53 0 +100bc200 FUN_100bc200 undefined FUN_100bc200(void) 73 0 +100bc250 FUN_100bc250 undefined FUN_100bc250(void) 62 0 +100bc290 FUN_100bc290 undefined FUN_100bc290(void) 53 0 +100bc2d0 FUN_100bc2d0 undefined FUN_100bc2d0(void) 56 0 +100bc310 FUN_100bc310 undefined FUN_100bc310(void) 53 0 +100bc350 FUN_100bc350 undefined FUN_100bc350(void) 62 0 +100bc390 FUN_100bc390 undefined FUN_100bc390(void) 53 0 +100bc3d0 FUN_100bc3d0 undefined FUN_100bc3d0(void) 73 0 +100bc420 FUN_100bc420 undefined FUN_100bc420(void) 62 0 +100bc460 FUN_100bc460 undefined FUN_100bc460(void) 53 0 +100bc4a0 FUN_100bc4a0 undefined FUN_100bc4a0(void) 56 0 +100bc4e0 FUN_100bc4e0 undefined FUN_100bc4e0(void) 53 0 +100bc520 FUN_100bc520 undefined FUN_100bc520(void) 62 0 +100bc560 FUN_100bc560 undefined FUN_100bc560(void) 53 0 +100bc5a0 FUN_100bc5a0 undefined FUN_100bc5a0(void) 73 0 +100bc5f0 FUN_100bc5f0 undefined FUN_100bc5f0(void) 62 0 +100bc630 FUN_100bc630 undefined FUN_100bc630(void) 53 0 +100bc670 FUN_100bc670 undefined FUN_100bc670(void) 56 0 +100bc6b0 FUN_100bc6b0 undefined FUN_100bc6b0(void) 53 0 +100bc6f0 FUN_100bc6f0 undefined FUN_100bc6f0(void) 62 0 +100bc730 FUN_100bc730 undefined FUN_100bc730(void) 53 0 +100bc770 FUN_100bc770 undefined FUN_100bc770(void) 73 0 +100bc7c0 FUN_100bc7c0 undefined FUN_100bc7c0(void) 62 0 +100bc800 FUN_100bc800 undefined FUN_100bc800(void) 53 0 +100bc840 FUN_100bc840 undefined FUN_100bc840(void) 56 0 +100bc880 FUN_100bc880 undefined FUN_100bc880(void) 53 0 +100bc8c0 FUN_100bc8c0 undefined FUN_100bc8c0(void) 62 0 +100bc900 FUN_100bc900 undefined FUN_100bc900(void) 53 0 +100bc940 FUN_100bc940 undefined FUN_100bc940(void) 73 0 +100bc990 FUN_100bc990 undefined FUN_100bc990(void) 62 0 +100bc9d0 FUN_100bc9d0 undefined FUN_100bc9d0(void) 53 0 +100bca10 FUN_100bca10 undefined FUN_100bca10(void) 56 0 +100bca50 FUN_100bca50 undefined FUN_100bca50(void) 53 0 +100bca90 FUN_100bca90 undefined FUN_100bca90(void) 62 0 +100bcad0 FUN_100bcad0 undefined FUN_100bcad0(void) 53 0 +100bcb10 FUN_100bcb10 undefined FUN_100bcb10(void) 73 0 +100bcb60 FUN_100bcb60 undefined FUN_100bcb60(void) 62 0 +100bcba0 FUN_100bcba0 undefined FUN_100bcba0(void) 53 0 +100bcbe0 FUN_100bcbe0 undefined FUN_100bcbe0(void) 56 0 +100bcc20 FUN_100bcc20 undefined FUN_100bcc20(void) 53 0 +100bcc60 FUN_100bcc60 undefined FUN_100bcc60(void) 62 0 +100bcca0 FUN_100bcca0 undefined FUN_100bcca0(void) 53 0 +100bcce0 FUN_100bcce0 undefined FUN_100bcce0(void) 73 0 +100bcd30 FUN_100bcd30 undefined FUN_100bcd30(void) 62 0 +100bcd70 FUN_100bcd70 undefined FUN_100bcd70(void) 53 0 +100bcdb0 FUN_100bcdb0 undefined FUN_100bcdb0(void) 56 0 +100bcdf0 FUN_100bcdf0 undefined FUN_100bcdf0(void) 53 0 +100bce30 FUN_100bce30 undefined FUN_100bce30(void) 62 0 +100bce70 FUN_100bce70 undefined FUN_100bce70(void) 53 0 +100bceb0 FUN_100bceb0 undefined FUN_100bceb0(void) 73 0 +100bcf00 FUN_100bcf00 undefined FUN_100bcf00(void) 62 0 +100bcf40 FUN_100bcf40 undefined FUN_100bcf40(void) 53 0 +100bcf80 FUN_100bcf80 undefined FUN_100bcf80(void) 56 0 +100bcfc0 FUN_100bcfc0 undefined FUN_100bcfc0(void) 53 0 +100bd000 FUN_100bd000 undefined FUN_100bd000(void) 62 0 +100bd040 FUN_100bd040 undefined FUN_100bd040(void) 53 0 +100bd080 FUN_100bd080 undefined FUN_100bd080(void) 73 0 +100bd0d0 FUN_100bd0d0 undefined FUN_100bd0d0(void) 62 0 +100bd110 FUN_100bd110 undefined FUN_100bd110(void) 53 0 +100bd150 FUN_100bd150 undefined FUN_100bd150(void) 56 0 +100bd190 FUN_100bd190 undefined FUN_100bd190(void) 53 0 +100bd1d0 FUN_100bd1d0 undefined FUN_100bd1d0(void) 62 0 +100bd210 FUN_100bd210 undefined FUN_100bd210(void) 53 0 +100bd250 FUN_100bd250 undefined FUN_100bd250(void) 73 0 +100bd2a0 FUN_100bd2a0 undefined FUN_100bd2a0(void) 62 0 +100bd2e0 FUN_100bd2e0 undefined FUN_100bd2e0(void) 53 0 +100bd320 FUN_100bd320 undefined FUN_100bd320(void) 56 0 +100bd360 FUN_100bd360 undefined FUN_100bd360(void) 53 0 +100bd3a0 FUN_100bd3a0 undefined FUN_100bd3a0(void) 62 0 +100bd3e0 FUN_100bd3e0 undefined FUN_100bd3e0(void) 53 0 +100bd420 FUN_100bd420 undefined FUN_100bd420(void) 73 0 +100bd470 FUN_100bd470 undefined FUN_100bd470(void) 62 0 +100bd4b0 FUN_100bd4b0 undefined FUN_100bd4b0(void) 53 0 +100bd4f0 FUN_100bd4f0 undefined FUN_100bd4f0(void) 56 0 +100bd530 FUN_100bd530 undefined FUN_100bd530(void) 53 0 +100bd570 FUN_100bd570 undefined FUN_100bd570(void) 62 0 +100bd5b0 FUN_100bd5b0 undefined FUN_100bd5b0(void) 36 1 +100bd5e0 FUN_100bd5e0 undefined FUN_100bd5e0(void) 66 1 +100bd630 FUN_100bd630 undefined FUN_100bd630(void) 43 1 +100bd660 FUN_100bd660 undefined FUN_100bd660(void) 43 1 +100bd690 FUN_100bd690 undefined FUN_100bd690(void) 39 1 +100bd6c0 FUN_100bd6c0 undefined FUN_100bd6c0(void) 31 1 +100bd6e0 FUN_100bd6e0 undefined FUN_100bd6e0(void) 40 1 +100bd710 FUN_100bd710 undefined FUN_100bd710(void) 36 1 +100bd740 FUN_100bd740 undefined FUN_100bd740(void) 66 1 +100bd790 FUN_100bd790 undefined FUN_100bd790(void) 43 1 +100bd7c0 FUN_100bd7c0 undefined FUN_100bd7c0(void) 43 1 +100bd7f0 FUN_100bd7f0 undefined FUN_100bd7f0(void) 39 1 +100bd820 FUN_100bd820 undefined FUN_100bd820(void) 31 1 +100bd840 FUN_100bd840 undefined FUN_100bd840(void) 40 1 +100bd870 FUN_100bd870 undefined FUN_100bd870(void) 58 1 +100bd8b0 FUN_100bd8b0 undefined FUN_100bd8b0(void) 36 1 +100bd8e0 FUN_100bd8e0 undefined FUN_100bd8e0(void) 66 1 +100bd930 FUN_100bd930 undefined FUN_100bd930(void) 43 1 +100bd960 FUN_100bd960 undefined FUN_100bd960(void) 43 1 +100bd990 FUN_100bd990 undefined FUN_100bd990(void) 39 1 +100bd9c0 FUN_100bd9c0 undefined FUN_100bd9c0(void) 31 1 +100bd9e0 FUN_100bd9e0 undefined FUN_100bd9e0(void) 40 1 +100bda10 FUN_100bda10 undefined FUN_100bda10(void) 36 1 +100bda40 FUN_100bda40 undefined FUN_100bda40(void) 66 1 +100bda90 FUN_100bda90 undefined FUN_100bda90(void) 43 1 +100bdac0 FUN_100bdac0 undefined FUN_100bdac0(void) 43 1 +100bdaf0 FUN_100bdaf0 undefined FUN_100bdaf0(void) 39 1 +100bdb20 FUN_100bdb20 undefined FUN_100bdb20(void) 31 1 +100bdb40 FUN_100bdb40 undefined FUN_100bdb40(void) 40 1 +100bdb70 FUN_100bdb70 undefined FUN_100bdb70(void) 36 1 +100bdba0 FUN_100bdba0 undefined FUN_100bdba0(void) 66 1 +100bdbf0 FUN_100bdbf0 undefined FUN_100bdbf0(void) 43 1 +100bdc20 FUN_100bdc20 undefined FUN_100bdc20(void) 43 1 +100bdc50 FUN_100bdc50 undefined FUN_100bdc50(void) 39 1 +100bdc80 FUN_100bdc80 undefined FUN_100bdc80(void) 31 1 +100bdca0 FUN_100bdca0 undefined FUN_100bdca0(void) 40 1 +100bdcd0 FUN_100bdcd0 undefined FUN_100bdcd0(void) 36 1 +100bdd00 FUN_100bdd00 undefined FUN_100bdd00(void) 66 1 +100bdd50 FUN_100bdd50 undefined FUN_100bdd50(void) 43 1 +100bdd80 FUN_100bdd80 undefined FUN_100bdd80(void) 43 1 +100bddb0 FUN_100bddb0 undefined FUN_100bddb0(void) 39 1 +100bdde0 FUN_100bdde0 undefined FUN_100bdde0(void) 31 1 +100bde00 FUN_100bde00 undefined FUN_100bde00(void) 40 1 +100bde30 FUN_100bde30 undefined FUN_100bde30(void) 36 1 +100bde60 FUN_100bde60 undefined FUN_100bde60(void) 66 1 +100bdeb0 FUN_100bdeb0 undefined FUN_100bdeb0(void) 43 1 +100bdee0 FUN_100bdee0 undefined FUN_100bdee0(void) 43 1 +100bdf10 FUN_100bdf10 undefined FUN_100bdf10(void) 39 1 +100bdf40 FUN_100bdf40 undefined FUN_100bdf40(void) 31 1 +100bdf60 FUN_100bdf60 undefined FUN_100bdf60(void) 40 1 +100bdf90 FUN_100bdf90 undefined FUN_100bdf90(void) 36 1 +100bdfc0 FUN_100bdfc0 undefined FUN_100bdfc0(void) 66 1 +100be010 FUN_100be010 undefined FUN_100be010(void) 43 1 +100be040 FUN_100be040 undefined FUN_100be040(void) 43 1 +100be070 FUN_100be070 undefined FUN_100be070(void) 39 1 +100be0a0 FUN_100be0a0 undefined FUN_100be0a0(void) 31 1 +100be0c0 FUN_100be0c0 undefined FUN_100be0c0(void) 40 1 +100be0f0 FUN_100be0f0 undefined FUN_100be0f0(void) 36 1 +100be120 FUN_100be120 undefined FUN_100be120(void) 66 1 +100be170 FUN_100be170 undefined FUN_100be170(void) 43 1 +100be1a0 FUN_100be1a0 undefined FUN_100be1a0(void) 43 1 +100be1d0 FUN_100be1d0 undefined FUN_100be1d0(void) 39 1 +100be200 FUN_100be200 undefined FUN_100be200(void) 31 1 +100be220 FUN_100be220 undefined FUN_100be220(void) 40 1 +100be250 FUN_100be250 undefined FUN_100be250(void) 36 1 +100be280 FUN_100be280 undefined FUN_100be280(void) 66 1 +100be2d0 FUN_100be2d0 undefined FUN_100be2d0(void) 43 1 +100be300 FUN_100be300 undefined FUN_100be300(void) 43 1 +100be330 FUN_100be330 undefined FUN_100be330(void) 39 1 +100be360 FUN_100be360 undefined FUN_100be360(void) 31 1 +100be380 FUN_100be380 undefined FUN_100be380(void) 40 1 +100be3b0 FUN_100be3b0 undefined FUN_100be3b0(void) 36 1 +100be3e0 FUN_100be3e0 undefined FUN_100be3e0(void) 66 1 +100be430 FUN_100be430 undefined FUN_100be430(void) 43 1 +100be460 FUN_100be460 undefined FUN_100be460(void) 43 1 +100be490 FUN_100be490 undefined FUN_100be490(void) 39 1 +100be4c0 FUN_100be4c0 undefined FUN_100be4c0(void) 31 1 +100be4e0 FUN_100be4e0 undefined FUN_100be4e0(void) 40 1 +100be510 FUN_100be510 undefined FUN_100be510(void) 36 1 +100be540 FUN_100be540 undefined FUN_100be540(void) 66 1 +100be590 FUN_100be590 undefined FUN_100be590(void) 43 1 +100be5c0 FUN_100be5c0 undefined FUN_100be5c0(void) 43 1 +100be5f0 FUN_100be5f0 undefined FUN_100be5f0(void) 39 1 +100be620 FUN_100be620 undefined FUN_100be620(void) 31 1 +100be640 FUN_100be640 undefined FUN_100be640(void) 40 1 +100be670 FUN_100be670 undefined FUN_100be670(void) 36 1 +100be6a0 FUN_100be6a0 undefined FUN_100be6a0(void) 66 1 +100be6f0 FUN_100be6f0 undefined FUN_100be6f0(void) 43 1 +100be720 FUN_100be720 undefined FUN_100be720(void) 43 1 +100be750 FUN_100be750 undefined FUN_100be750(void) 39 1 +100be780 FUN_100be780 undefined FUN_100be780(void) 31 1 +100be7a0 FUN_100be7a0 undefined FUN_100be7a0(void) 40 1 +100be7d0 FUN_100be7d0 undefined FUN_100be7d0(void) 36 1 +100be800 FUN_100be800 undefined FUN_100be800(void) 66 1 +100be850 FUN_100be850 undefined FUN_100be850(void) 43 1 +100be880 FUN_100be880 undefined FUN_100be880(void) 43 1 +100be8b0 FUN_100be8b0 undefined FUN_100be8b0(void) 39 1 +100be8e0 FUN_100be8e0 undefined FUN_100be8e0(void) 31 1 +100be900 FUN_100be900 undefined FUN_100be900(void) 40 1 +100be930 FUN_100be930 undefined FUN_100be930(void) 36 1 +100be960 FUN_100be960 undefined FUN_100be960(void) 66 1 +100be9b0 FUN_100be9b0 undefined FUN_100be9b0(void) 43 1 +100be9e0 FUN_100be9e0 undefined FUN_100be9e0(void) 43 1 +100bea10 FUN_100bea10 undefined FUN_100bea10(void) 39 1 +100bea40 FUN_100bea40 undefined FUN_100bea40(void) 31 1 +100bea60 FUN_100bea60 undefined FUN_100bea60(void) 40 1 +100bea90 FUN_100bea90 undefined FUN_100bea90(void) 36 1 +100beac0 FUN_100beac0 undefined FUN_100beac0(void) 66 1 +100beb10 FUN_100beb10 undefined FUN_100beb10(void) 43 1 +100beb40 FUN_100beb40 undefined FUN_100beb40(void) 43 1 +100beb70 FUN_100beb70 undefined FUN_100beb70(void) 39 1 +100beba0 FUN_100beba0 undefined FUN_100beba0(void) 31 1 +100bebc0 FUN_100bebc0 undefined FUN_100bebc0(void) 40 1 +100bebf0 FUN_100bebf0 undefined FUN_100bebf0(void) 36 1 +100bec20 FUN_100bec20 undefined FUN_100bec20(void) 66 1 +100bec70 FUN_100bec70 undefined FUN_100bec70(void) 43 1 +100beca0 FUN_100beca0 undefined FUN_100beca0(void) 43 1 +100becd0 FUN_100becd0 undefined FUN_100becd0(void) 39 1 +100bed00 FUN_100bed00 undefined FUN_100bed00(void) 31 1 +100bed20 FUN_100bed20 undefined FUN_100bed20(void) 40 1 +100bed50 FUN_100bed50 undefined FUN_100bed50(void) 36 1 +100bed80 FUN_100bed80 undefined FUN_100bed80(void) 66 1 +100bedd0 FUN_100bedd0 undefined FUN_100bedd0(void) 43 1 +100bee00 FUN_100bee00 undefined FUN_100bee00(void) 43 1 +100bee30 FUN_100bee30 undefined FUN_100bee30(void) 39 1 +100bee60 FUN_100bee60 undefined FUN_100bee60(void) 31 1 +100bee80 FUN_100bee80 undefined FUN_100bee80(void) 40 1 +100beeb0 FUN_100beeb0 undefined FUN_100beeb0(void) 36 1 +100beee0 FUN_100beee0 undefined FUN_100beee0(void) 66 1 +100bef30 FUN_100bef30 undefined FUN_100bef30(void) 43 1 +100bef60 FUN_100bef60 undefined FUN_100bef60(void) 43 1 +100bef90 FUN_100bef90 undefined FUN_100bef90(void) 39 1 +100befc0 FUN_100befc0 undefined FUN_100befc0(void) 31 1 +100befe0 FUN_100befe0 undefined FUN_100befe0(void) 40 1 +100bf010 FUN_100bf010 undefined FUN_100bf010(void) 36 1 +100bf040 FUN_100bf040 undefined FUN_100bf040(void) 66 1 +100bf090 FUN_100bf090 undefined FUN_100bf090(void) 43 1 +100bf0c0 FUN_100bf0c0 undefined FUN_100bf0c0(void) 43 1 +100bf0f0 FUN_100bf0f0 undefined FUN_100bf0f0(void) 39 1 +100bf120 FUN_100bf120 undefined FUN_100bf120(void) 31 1 +100bf140 FUN_100bf140 undefined FUN_100bf140(void) 40 1 +100bf170 FUN_100bf170 undefined FUN_100bf170(void) 36 1 +100bf1a0 FUN_100bf1a0 undefined FUN_100bf1a0(void) 66 1 +100bf1f0 FUN_100bf1f0 undefined FUN_100bf1f0(void) 43 1 +100bf220 FUN_100bf220 undefined FUN_100bf220(void) 43 1 +100bf250 FUN_100bf250 undefined FUN_100bf250(void) 39 1 +100bf280 FUN_100bf280 undefined FUN_100bf280(void) 31 1 +100bf2a0 FUN_100bf2a0 undefined FUN_100bf2a0(void) 40 1 +100bf2d0 FUN_100bf2d0 undefined FUN_100bf2d0(void) 36 1 +100bf300 FUN_100bf300 undefined FUN_100bf300(void) 66 1 +100bf350 FUN_100bf350 undefined FUN_100bf350(void) 43 1 +100bf380 FUN_100bf380 undefined FUN_100bf380(void) 43 1 +100bf3b0 FUN_100bf3b0 undefined FUN_100bf3b0(void) 39 1 +100bf3e0 FUN_100bf3e0 undefined FUN_100bf3e0(void) 31 1 +100bf400 FUN_100bf400 undefined FUN_100bf400(void) 40 1 +100bf430 FUN_100bf430 undefined FUN_100bf430(void) 36 1 +100bf460 FUN_100bf460 undefined FUN_100bf460(void) 66 1 +100bf4b0 FUN_100bf4b0 undefined FUN_100bf4b0(void) 43 1 +100bf4e0 FUN_100bf4e0 undefined FUN_100bf4e0(void) 43 1 +100bf510 FUN_100bf510 undefined FUN_100bf510(void) 39 1 +100bf540 FUN_100bf540 undefined FUN_100bf540(void) 31 1 +100bf560 FUN_100bf560 undefined FUN_100bf560(void) 40 1 +100bf590 FUN_100bf590 undefined FUN_100bf590(void) 36 1 +100bf5c0 FUN_100bf5c0 undefined FUN_100bf5c0(void) 66 1 +100bf610 FUN_100bf610 undefined FUN_100bf610(void) 43 1 +100bf640 FUN_100bf640 undefined FUN_100bf640(void) 43 1 +100bf670 FUN_100bf670 undefined FUN_100bf670(void) 39 1 +100bf6a0 FUN_100bf6a0 undefined FUN_100bf6a0(void) 31 1 +100bf6c0 FUN_100bf6c0 undefined FUN_100bf6c0(void) 40 1 +100bf6f0 FUN_100bf6f0 undefined FUN_100bf6f0(void) 36 1 +100bf720 FUN_100bf720 undefined FUN_100bf720(void) 66 1 +100bf770 FUN_100bf770 undefined FUN_100bf770(void) 43 1 +100bf7a0 FUN_100bf7a0 undefined FUN_100bf7a0(void) 43 1 +100bf7d0 FUN_100bf7d0 undefined FUN_100bf7d0(void) 39 1 +100bf800 FUN_100bf800 undefined FUN_100bf800(void) 31 1 +100bf820 FUN_100bf820 undefined FUN_100bf820(void) 40 1 +100bf850 FUN_100bf850 undefined FUN_100bf850(void) 36 1 +100bf880 FUN_100bf880 undefined FUN_100bf880(void) 66 1 +100bf8d0 FUN_100bf8d0 undefined FUN_100bf8d0(void) 43 1 +100bf900 FUN_100bf900 undefined FUN_100bf900(void) 43 1 +100bf930 FUN_100bf930 undefined FUN_100bf930(void) 39 1 +100bf960 FUN_100bf960 undefined FUN_100bf960(void) 31 1 +100bf980 FUN_100bf980 undefined FUN_100bf980(void) 40 1 +100bf9b0 FUN_100bf9b0 undefined FUN_100bf9b0(void) 36 1 +100bf9e0 FUN_100bf9e0 undefined FUN_100bf9e0(void) 66 1 +100bfa30 FUN_100bfa30 undefined FUN_100bfa30(void) 43 1 +100bfa60 FUN_100bfa60 undefined FUN_100bfa60(void) 43 1 +100bfa90 FUN_100bfa90 undefined FUN_100bfa90(void) 39 1 +100bfac0 FUN_100bfac0 undefined FUN_100bfac0(void) 31 1 +100bfae0 FUN_100bfae0 undefined FUN_100bfae0(void) 40 1 +100bfb10 FUN_100bfb10 undefined FUN_100bfb10(void) 36 1 +100bfb40 FUN_100bfb40 undefined FUN_100bfb40(void) 66 1 +100bfb90 FUN_100bfb90 undefined FUN_100bfb90(void) 43 1 +100bfbc0 FUN_100bfbc0 undefined FUN_100bfbc0(void) 43 1 +100bfbf0 FUN_100bfbf0 undefined FUN_100bfbf0(void) 39 1 +100bfc20 FUN_100bfc20 undefined FUN_100bfc20(void) 31 1 +100bfc40 FUN_100bfc40 undefined FUN_100bfc40(void) 40 1 +100bfc70 FUN_100bfc70 undefined FUN_100bfc70(void) 36 1 +100bfca0 FUN_100bfca0 undefined FUN_100bfca0(void) 66 1 +100bfcf0 FUN_100bfcf0 undefined FUN_100bfcf0(void) 43 1 +100bfd20 FUN_100bfd20 undefined FUN_100bfd20(void) 43 1 +100bfd50 FUN_100bfd50 undefined FUN_100bfd50(void) 39 1 +100bfd80 FUN_100bfd80 undefined FUN_100bfd80(void) 31 1 +100bfda0 FUN_100bfda0 undefined FUN_100bfda0(void) 40 1 +100bfdd0 FUN_100bfdd0 undefined FUN_100bfdd0(void) 36 1 +100bfe00 FUN_100bfe00 undefined FUN_100bfe00(void) 66 1 +100bfe50 FUN_100bfe50 undefined FUN_100bfe50(void) 43 1 +100bfe80 FUN_100bfe80 undefined FUN_100bfe80(void) 43 1 +100bfeb0 FUN_100bfeb0 undefined FUN_100bfeb0(void) 39 1 +100bfee0 FUN_100bfee0 undefined FUN_100bfee0(void) 31 1 +100bff00 FUN_100bff00 undefined FUN_100bff00(void) 40 1 +100bff30 FUN_100bff30 undefined FUN_100bff30(void) 58 1 +100bff70 FUN_100bff70 undefined FUN_100bff70(void) 36 1 +100bffa0 FUN_100bffa0 undefined FUN_100bffa0(void) 66 1 +100bfff0 FUN_100bfff0 undefined FUN_100bfff0(void) 43 1 +100c0020 FUN_100c0020 undefined FUN_100c0020(void) 43 1 +100c0050 FUN_100c0050 undefined FUN_100c0050(void) 39 1 +100c0080 FUN_100c0080 undefined FUN_100c0080(void) 31 1 +100c00a0 FUN_100c00a0 undefined FUN_100c00a0(void) 40 1 +100c00d0 FUN_100c00d0 undefined FUN_100c00d0(void) 36 1 +100c0100 FUN_100c0100 undefined FUN_100c0100(void) 66 1 +100c0150 FUN_100c0150 undefined FUN_100c0150(void) 43 1 +100c0180 FUN_100c0180 undefined FUN_100c0180(void) 43 1 +100c01b0 FUN_100c01b0 undefined FUN_100c01b0(void) 39 1 +100c01e0 FUN_100c01e0 undefined FUN_100c01e0(void) 31 1 +100c0200 FUN_100c0200 undefined FUN_100c0200(void) 40 1 +100c0230 FUN_100c0230 undefined FUN_100c0230(void) 36 1 +100c0260 FUN_100c0260 undefined FUN_100c0260(void) 66 1 +100c02b0 FUN_100c02b0 undefined FUN_100c02b0(void) 43 1 +100c02e0 FUN_100c02e0 undefined FUN_100c02e0(void) 43 1 +100c0310 FUN_100c0310 undefined FUN_100c0310(void) 39 1 +100c0340 FUN_100c0340 undefined FUN_100c0340(void) 31 1 +100c0360 FUN_100c0360 undefined FUN_100c0360(void) 40 1 +100c0390 FUN_100c0390 undefined FUN_100c0390(void) 36 1 +100c03c0 FUN_100c03c0 undefined FUN_100c03c0(void) 66 1 +100c0410 FUN_100c0410 undefined FUN_100c0410(void) 43 1 +100c0440 FUN_100c0440 undefined FUN_100c0440(void) 43 1 +100c0470 FUN_100c0470 undefined FUN_100c0470(void) 39 1 +100c04a0 FUN_100c04a0 undefined FUN_100c04a0(void) 31 1 +100c04c0 FUN_100c04c0 undefined FUN_100c04c0(void) 40 1 +100c04f0 FUN_100c04f0 undefined FUN_100c04f0(void) 36 1 +100c0520 FUN_100c0520 undefined FUN_100c0520(void) 66 1 +100c0570 FUN_100c0570 undefined FUN_100c0570(void) 43 1 +100c05a0 FUN_100c05a0 undefined FUN_100c05a0(void) 43 1 +100c05d0 FUN_100c05d0 undefined FUN_100c05d0(void) 39 1 +100c0600 FUN_100c0600 undefined FUN_100c0600(void) 31 1 +100c0620 FUN_100c0620 undefined FUN_100c0620(void) 40 1 +100c0650 FUN_100c0650 undefined FUN_100c0650(void) 36 1 +100c0680 FUN_100c0680 undefined FUN_100c0680(void) 66 1 +100c06d0 FUN_100c06d0 undefined FUN_100c06d0(void) 43 1 +100c0700 FUN_100c0700 undefined FUN_100c0700(void) 43 1 +100c0730 FUN_100c0730 undefined FUN_100c0730(void) 39 1 +100c0760 FUN_100c0760 undefined FUN_100c0760(void) 31 1 +100c0780 FUN_100c0780 undefined FUN_100c0780(void) 40 1 +100c07b0 FUN_100c07b0 undefined FUN_100c07b0(void) 36 1 +100c07e0 FUN_100c07e0 undefined FUN_100c07e0(void) 66 1 +100c0830 FUN_100c0830 undefined FUN_100c0830(void) 43 1 +100c0860 FUN_100c0860 undefined FUN_100c0860(void) 43 1 +100c0890 FUN_100c0890 undefined FUN_100c0890(void) 39 1 +100c08c0 FUN_100c08c0 undefined FUN_100c08c0(void) 31 1 +100c08e0 FUN_100c08e0 undefined FUN_100c08e0(void) 40 1 +100c0910 FUN_100c0910 undefined FUN_100c0910(void) 36 1 +100c0940 FUN_100c0940 undefined FUN_100c0940(void) 66 1 +100c0990 FUN_100c0990 undefined FUN_100c0990(void) 43 1 +100c09c0 FUN_100c09c0 undefined FUN_100c09c0(void) 43 1 +100c09f0 FUN_100c09f0 undefined FUN_100c09f0(void) 39 1 +100c0a20 FUN_100c0a20 undefined FUN_100c0a20(void) 31 1 +100c0a40 FUN_100c0a40 undefined FUN_100c0a40(void) 40 1 +100c0a70 FUN_100c0a70 undefined FUN_100c0a70(void) 36 1 +100c0aa0 FUN_100c0aa0 undefined FUN_100c0aa0(void) 66 1 +100c0af0 FUN_100c0af0 undefined FUN_100c0af0(void) 43 1 +100c0b20 FUN_100c0b20 undefined FUN_100c0b20(void) 43 1 +100c0b50 FUN_100c0b50 undefined FUN_100c0b50(void) 39 1 +100c0b80 FUN_100c0b80 undefined FUN_100c0b80(void) 31 1 +100c0ba0 FUN_100c0ba0 undefined FUN_100c0ba0(void) 40 1 +100c0bd0 FUN_100c0bd0 undefined FUN_100c0bd0(void) 36 1 +100c0c00 FUN_100c0c00 undefined FUN_100c0c00(void) 66 1 +100c0c50 FUN_100c0c50 undefined FUN_100c0c50(void) 43 1 +100c0c80 FUN_100c0c80 undefined FUN_100c0c80(void) 43 1 +100c0cb0 FUN_100c0cb0 undefined FUN_100c0cb0(void) 39 1 +100c0ce0 FUN_100c0ce0 undefined FUN_100c0ce0(void) 31 1 +100c0d00 FUN_100c0d00 undefined FUN_100c0d00(void) 40 1 +100c0d30 FUN_100c0d30 undefined FUN_100c0d30(void) 36 1 +100c0d60 FUN_100c0d60 undefined FUN_100c0d60(void) 66 1 +100c0db0 FUN_100c0db0 undefined FUN_100c0db0(void) 43 1 +100c0de0 FUN_100c0de0 undefined FUN_100c0de0(void) 43 1 +100c0e10 FUN_100c0e10 undefined FUN_100c0e10(void) 39 1 +100c0e40 FUN_100c0e40 undefined FUN_100c0e40(void) 31 1 +100c0e60 FUN_100c0e60 undefined FUN_100c0e60(void) 40 1 +100c0e90 FUN_100c0e90 undefined FUN_100c0e90(void) 36 1 +100c0ec0 FUN_100c0ec0 undefined FUN_100c0ec0(void) 66 1 +100c0f10 FUN_100c0f10 undefined FUN_100c0f10(void) 43 1 +100c0f40 FUN_100c0f40 undefined FUN_100c0f40(void) 43 1 +100c0f70 FUN_100c0f70 undefined FUN_100c0f70(void) 39 1 +100c0fa0 FUN_100c0fa0 undefined FUN_100c0fa0(void) 31 1 +100c0fc0 FUN_100c0fc0 undefined FUN_100c0fc0(void) 40 1 +100c0ff0 FUN_100c0ff0 undefined FUN_100c0ff0(void) 36 1 +100c1020 FUN_100c1020 undefined FUN_100c1020(void) 66 1 +100c1070 FUN_100c1070 undefined FUN_100c1070(void) 43 1 +100c10a0 FUN_100c10a0 undefined FUN_100c10a0(void) 43 1 +100c10d0 FUN_100c10d0 undefined FUN_100c10d0(void) 39 1 +100c1100 FUN_100c1100 undefined FUN_100c1100(void) 31 1 +100c1120 FUN_100c1120 undefined FUN_100c1120(void) 40 1 +100c1150 FUN_100c1150 undefined FUN_100c1150(void) 36 1 +100c1180 FUN_100c1180 undefined FUN_100c1180(void) 66 1 +100c11d0 FUN_100c11d0 undefined FUN_100c11d0(void) 43 1 +100c1200 FUN_100c1200 undefined FUN_100c1200(void) 43 1 +100c1230 FUN_100c1230 undefined FUN_100c1230(void) 39 1 +100c1260 FUN_100c1260 undefined FUN_100c1260(void) 31 1 +100c1280 FUN_100c1280 undefined FUN_100c1280(void) 40 1 +100c12b0 FUN_100c12b0 undefined FUN_100c12b0(void) 36 1 +100c12e0 FUN_100c12e0 undefined FUN_100c12e0(void) 66 1 +100c1330 FUN_100c1330 undefined FUN_100c1330(void) 43 1 +100c1360 FUN_100c1360 undefined FUN_100c1360(void) 43 1 +100c1390 FUN_100c1390 undefined FUN_100c1390(void) 39 1 +100c13c0 FUN_100c13c0 undefined FUN_100c13c0(void) 31 1 +100c13e0 FUN_100c13e0 undefined FUN_100c13e0(void) 40 1 +100c1410 FUN_100c1410 undefined FUN_100c1410(void) 36 1 +100c1440 FUN_100c1440 undefined FUN_100c1440(void) 66 1 +100c1490 FUN_100c1490 undefined FUN_100c1490(void) 43 1 +100c14c0 FUN_100c14c0 undefined FUN_100c14c0(void) 43 1 +100c14f0 FUN_100c14f0 undefined FUN_100c14f0(void) 39 1 +100c1520 FUN_100c1520 undefined FUN_100c1520(void) 31 1 +100c1540 FUN_100c1540 undefined FUN_100c1540(void) 40 1 +100c1570 FUN_100c1570 undefined FUN_100c1570(void) 36 1 +100c15a0 FUN_100c15a0 undefined FUN_100c15a0(void) 66 1 +100c15f0 FUN_100c15f0 undefined FUN_100c15f0(void) 43 1 +100c1620 FUN_100c1620 undefined FUN_100c1620(void) 43 1 +100c1650 FUN_100c1650 undefined FUN_100c1650(void) 39 1 +100c1680 FUN_100c1680 undefined FUN_100c1680(void) 31 1 +100c16a0 FUN_100c16a0 undefined FUN_100c16a0(void) 40 1 +100c16d0 FUN_100c16d0 undefined FUN_100c16d0(void) 36 1 +100c1700 FUN_100c1700 undefined FUN_100c1700(void) 66 1 +100c1750 FUN_100c1750 undefined FUN_100c1750(void) 43 1 +100c1780 FUN_100c1780 undefined FUN_100c1780(void) 43 1 +100c17b0 FUN_100c17b0 undefined FUN_100c17b0(void) 39 1 +100c17e0 FUN_100c17e0 undefined FUN_100c17e0(void) 31 1 +100c1800 FUN_100c1800 undefined FUN_100c1800(void) 40 1 +100c1830 FUN_100c1830 undefined FUN_100c1830(void) 36 1 +100c1860 FUN_100c1860 undefined FUN_100c1860(void) 66 1 +100c18b0 FUN_100c18b0 undefined FUN_100c18b0(void) 43 1 +100c18e0 FUN_100c18e0 undefined FUN_100c18e0(void) 43 1 +100c1910 FUN_100c1910 undefined FUN_100c1910(void) 39 1 +100c1940 FUN_100c1940 undefined FUN_100c1940(void) 31 1 +100c1960 FUN_100c1960 undefined FUN_100c1960(void) 40 1 +100c1990 FUN_100c1990 undefined FUN_100c1990(void) 36 1 +100c19c0 FUN_100c19c0 undefined FUN_100c19c0(void) 66 1 +100c1a10 FUN_100c1a10 undefined FUN_100c1a10(void) 43 1 +100c1a40 FUN_100c1a40 undefined FUN_100c1a40(void) 43 1 +100c1a70 FUN_100c1a70 undefined FUN_100c1a70(void) 39 1 +100c1aa0 FUN_100c1aa0 undefined FUN_100c1aa0(void) 31 1 +100c1ac0 FUN_100c1ac0 undefined FUN_100c1ac0(void) 40 1 +100c1af0 FUN_100c1af0 undefined FUN_100c1af0(void) 36 1 +100c1b20 FUN_100c1b20 undefined FUN_100c1b20(void) 66 1 +100c1b70 FUN_100c1b70 undefined FUN_100c1b70(void) 43 1 +100c1ba0 FUN_100c1ba0 undefined FUN_100c1ba0(void) 43 1 +100c1bd0 FUN_100c1bd0 undefined FUN_100c1bd0(void) 39 1 +100c1c00 FUN_100c1c00 undefined FUN_100c1c00(void) 31 1 +100c1c20 FUN_100c1c20 undefined FUN_100c1c20(void) 40 1 +100c1c50 FUN_100c1c50 undefined FUN_100c1c50(void) 36 1 +100c1c80 FUN_100c1c80 undefined FUN_100c1c80(void) 66 1 +100c1cd0 FUN_100c1cd0 undefined FUN_100c1cd0(void) 43 1 +100c1d00 FUN_100c1d00 undefined FUN_100c1d00(void) 43 1 +100c1d30 FUN_100c1d30 undefined FUN_100c1d30(void) 39 1 +100c1d60 FUN_100c1d60 undefined FUN_100c1d60(void) 31 1 +100c1d80 FUN_100c1d80 undefined FUN_100c1d80(void) 40 1 +100c1db0 FUN_100c1db0 undefined FUN_100c1db0(void) 36 1 +100c1de0 FUN_100c1de0 undefined FUN_100c1de0(void) 66 1 +100c1e30 FUN_100c1e30 undefined FUN_100c1e30(void) 43 1 +100c1e60 FUN_100c1e60 undefined FUN_100c1e60(void) 43 1 +100c1e90 FUN_100c1e90 undefined FUN_100c1e90(void) 39 1 +100c1ec0 FUN_100c1ec0 undefined FUN_100c1ec0(void) 31 1 +100c1ee0 FUN_100c1ee0 undefined FUN_100c1ee0(void) 40 1 +100c1f10 FUN_100c1f10 undefined FUN_100c1f10(void) 36 1 +100c1f40 FUN_100c1f40 undefined FUN_100c1f40(void) 66 1 +100c1f90 FUN_100c1f90 undefined FUN_100c1f90(void) 43 1 +100c1fc0 FUN_100c1fc0 undefined FUN_100c1fc0(void) 43 1 +100c1ff0 FUN_100c1ff0 undefined FUN_100c1ff0(void) 39 1 +100c2020 FUN_100c2020 undefined FUN_100c2020(void) 31 1 +100c2040 FUN_100c2040 undefined FUN_100c2040(void) 40 1 +100c2070 FUN_100c2070 undefined FUN_100c2070(void) 36 1 +100c20a0 FUN_100c20a0 undefined FUN_100c20a0(void) 66 1 +100c20f0 FUN_100c20f0 undefined FUN_100c20f0(void) 43 1 +100c2120 FUN_100c2120 undefined FUN_100c2120(void) 43 1 +100c2150 FUN_100c2150 undefined FUN_100c2150(void) 39 1 +100c2180 FUN_100c2180 undefined FUN_100c2180(void) 31 1 +100c21a0 FUN_100c21a0 undefined FUN_100c21a0(void) 40 1 +100c21d0 FUN_100c21d0 undefined FUN_100c21d0(void) 36 1 +100c2200 FUN_100c2200 undefined FUN_100c2200(void) 66 1 +100c2250 FUN_100c2250 undefined FUN_100c2250(void) 43 1 +100c2280 FUN_100c2280 undefined FUN_100c2280(void) 43 1 +100c22b0 FUN_100c22b0 undefined FUN_100c22b0(void) 39 1 +100c22e0 FUN_100c22e0 undefined FUN_100c22e0(void) 31 1 +100c2300 FUN_100c2300 undefined FUN_100c2300(void) 40 1 +100c2330 FUN_100c2330 undefined FUN_100c2330(void) 101 0 +100c23a0 FUN_100c23a0 undefined FUN_100c23a0(void) 186 4 +100c2423 Catch@100c2423 undefined Catch@100c2423(void) 21 2 +100c2470 FUN_100c2470 undefined FUN_100c2470(void) 154 3 SysFreeString +100c2510 FUN_100c2510 undefined FUN_100c2510(void) 154 3 SysFreeString +100c25b0 FUN_100c25b0 undefined FUN_100c25b0(void) 141 1 SysFreeString +100c2640 FUN_100c2640 undefined FUN_100c2640(void) 136 1 SysFreeString +100c26d0 FUN_100c26d0 undefined FUN_100c26d0(void) 134 1 SysFreeString +100c2760 FUN_100c2760 undefined FUN_100c2760(void) 134 1 SysFreeString +100c27f0 FUN_100c27f0 undefined FUN_100c27f0(void) 136 1 SysFreeString +100c2880 FUN_100c2880 undefined FUN_100c2880(void) 74 0 +100c28d0 FUN_100c28d0 undefined FUN_100c28d0(void) 69 0 +100c2920 FUN_100c2920 undefined FUN_100c2920(void) 67 0 +100c2970 FUN_100c2970 undefined FUN_100c2970(void) 67 0 +100c29c0 FUN_100c29c0 undefined FUN_100c29c0(void) 69 0 +100c2a10 FUN_100c2a10 undefined FUN_100c2a10(void) 50 0 +100c2a50 FUN_100c2a50 undefined FUN_100c2a50(void) 45 0 +100c2a80 FUN_100c2a80 undefined FUN_100c2a80(void) 43 0 +100c2ab0 FUN_100c2ab0 undefined FUN_100c2ab0(void) 43 0 +100c2ae0 FUN_100c2ae0 undefined FUN_100c2ae0(void) 45 0 +100c2b10 FUN_100c2b10 undefined FUN_100c2b10(void) 50 0 +100c2b50 FUN_100c2b50 undefined FUN_100c2b50(void) 45 0 +100c2b80 FUN_100c2b80 undefined FUN_100c2b80(void) 43 0 +100c2bb0 FUN_100c2bb0 undefined FUN_100c2bb0(void) 43 0 +100c2be0 FUN_100c2be0 undefined FUN_100c2be0(void) 45 0 +100c2c10 FUN_100c2c10 undefined FUN_100c2c10(void) 45 0 +100c2c40 FUN_100c2c40 undefined FUN_100c2c40(void) 43 0 +100c2c70 FUN_100c2c70 undefined FUN_100c2c70(void) 43 0 +100c2ca0 FUN_100c2ca0 undefined FUN_100c2ca0(void) 45 0 +100c2cd0 FUN_100c2cd0 undefined FUN_100c2cd0(void) 159 3 SysFreeString +100c2d70 FUN_100c2d70 undefined FUN_100c2d70(void) 152 3 SysFreeString +100c2e10 FUN_100c2e10 undefined FUN_100c2e10(void) 152 3 SysFreeString +100c2eb0 FUN_100c2eb0 undefined FUN_100c2eb0(void) 154 3 SysFreeString +100c2f50 FUN_100c2f50 undefined FUN_100c2f50(void) 159 3 SysFreeString +100c2ff0 FUN_100c2ff0 undefined FUN_100c2ff0(void) 154 3 SysFreeString +100c3090 FUN_100c3090 undefined FUN_100c3090(void) 152 3 SysFreeString +100c3130 FUN_100c3130 undefined FUN_100c3130(void) 152 3 SysFreeString +100c31d0 FUN_100c31d0 undefined FUN_100c31d0(void) 142 3 +100c3260 FUN_100c3260 undefined FUN_100c3260(void) 142 3 +100c32f0 FUN_100c32f0 undefined FUN_100c32f0(void) 100 1 +100c3360 FUN_100c3360 undefined FUN_100c3360(void) 24 1 +100c3380 FUN_100c3380 undefined FUN_100c3380(void) 87 1 memmove +100c33e0 FUN_100c33e0 undefined FUN_100c33e0(void) 49 0 +100c3420 FUN_100c3420 undefined FUN_100c3420(void) 24 1 +100c3440 FUN_100c3440 undefined FUN_100c3440(void) 87 1 memmove +100c34a0 FUN_100c34a0 undefined FUN_100c34a0(void) 23 1 +100c34c0 FUN_100c34c0 undefined FUN_100c34c0(void) 62 1 +100c3500 FUN_100c3500 undefined FUN_100c3500(void) 191 5 +100c35bf Catch@100c35bf undefined Catch@100c35bf(void) 21 2 +100c35e0 FUN_100c35e0 undefined FUN_100c35e0(void) 191 5 +100c369f Catch@100c369f undefined Catch@100c369f(void) 21 2 +100c36c0 FUN_100c36c0 undefined FUN_100c36c0(void) 32 1 +100c36e0 FUN_100c36e0 undefined FUN_100c36e0(void) 72 2 +100c3730 FUN_100c3730 undefined FUN_100c3730(void) 211 4 +100c3810 FUN_100c3810 undefined FUN_100c3810(void) 209 3 +100c38f0 FUN_100c38f0 undefined FUN_100c38f0(void) 412 8 +100c3af0 FUN_100c3af0 undefined FUN_100c3af0(void) 363 8 +100c3cc0 FUN_100c3cc0 undefined FUN_100c3cc0(void) 415 7 +100c3ec0 FUN_100c3ec0 undefined FUN_100c3ec0(void) 360 7 +100c4090 FUN_100c4090 undefined FUN_100c4090(void) 404 8 +100c4280 FUN_100c4280 undefined FUN_100c4280(void) 350 8 +100c4440 FUN_100c4440 undefined FUN_100c4440(void) 454 6 +100c4670 FUN_100c4670 undefined FUN_100c4670(void) 349 5 +100c4830 FUN_100c4830 undefined FUN_100c4830(void) 410 8 +100c4a30 FUN_100c4a30 undefined FUN_100c4a30(void) 357 8 +100c4c00 FUN_100c4c00 undefined FUN_100c4c00(void) 420 9 +100c4e00 FUN_100c4e00 undefined FUN_100c4e00(void) 392 9 +100c4ff0 FUN_100c4ff0 undefined FUN_100c4ff0(void) 420 9 +100c51f0 FUN_100c51f0 undefined FUN_100c51f0(void) 389 9 +100c53e0 FUN_100c53e0 undefined FUN_100c53e0(void) 420 9 +100c55e0 FUN_100c55e0 undefined FUN_100c55e0(void) 392 9 +100c57d0 FUN_100c57d0 undefined FUN_100c57d0(void) 410 9 +100c59d0 FUN_100c59d0 undefined FUN_100c59d0(void) 475 9 +100c5c10 FUN_100c5c10 undefined FUN_100c5c10(void) 410 9 +100c5e10 FUN_100c5e10 undefined FUN_100c5e10(void) 410 9 +100c6010 FUN_100c6010 undefined FUN_100c6010(void) 410 9 +100c6210 FUN_100c6210 undefined FUN_100c6210(void) 410 9 +100c6410 FUN_100c6410 undefined FUN_100c6410(void) 410 9 +100c6610 FUN_100c6610 undefined FUN_100c6610(void) 410 9 +100c6810 FUN_100c6810 undefined FUN_100c6810(void) 410 9 +100c6a10 FUN_100c6a10 undefined FUN_100c6a10(void) 410 9 +100c6c10 FUN_100c6c10 undefined FUN_100c6c10(void) 410 9 +100c6e10 FUN_100c6e10 undefined FUN_100c6e10(void) 410 9 +100c7010 FUN_100c7010 undefined FUN_100c7010(void) 410 9 +100c7210 FUN_100c7210 undefined FUN_100c7210(void) 353 9 +100c73d0 FUN_100c73d0 undefined FUN_100c73d0(void) 356 8 +100c7590 FUN_100c7590 undefined FUN_100c7590(void) 356 9 +100c7750 FUN_100c7750 undefined FUN_100c7750(void) 356 9 +100c7910 FUN_100c7910 undefined FUN_100c7910(void) 359 9 +100c7ae0 FUN_100c7ae0 undefined FUN_100c7ae0(void) 359 9 +100c7cb0 FUN_100c7cb0 undefined FUN_100c7cb0(void) 356 9 +100c7e70 FUN_100c7e70 undefined FUN_100c7e70(void) 359 9 +100c8040 FUN_100c8040 undefined FUN_100c8040(void) 356 9 +100c8200 FUN_100c8200 undefined FUN_100c8200(void) 356 9 +100c83c0 FUN_100c83c0 undefined FUN_100c83c0(void) 359 9 +100c8590 FUN_100c8590 undefined FUN_100c8590(void) 359 9 +100c8760 FUN_100c8760 undefined FUN_100c8760(void) 356 9 +100c8920 FUN_100c8920 undefined FUN_100c8920(void) 474 7 +100c8b60 FUN_100c8b60 undefined FUN_100c8b60(void) 421 8 +100c8d70 FUN_100c8d70 undefined FUN_100c8d70(void) 421 8 +100c8f80 FUN_100c8f80 undefined FUN_100c8f80(void) 421 8 +100c9190 FUN_100c9190 undefined FUN_100c9190(void) 421 8 +100c93a0 FUN_100c93a0 undefined FUN_100c93a0(void) 421 8 +100c95b0 FUN_100c95b0 undefined FUN_100c95b0(void) 421 8 +100c97c0 FUN_100c97c0 undefined FUN_100c97c0(void) 421 8 +100c99d0 FUN_100c99d0 undefined FUN_100c99d0(void) 421 8 +100c9be0 FUN_100c9be0 undefined FUN_100c9be0(void) 421 8 +100c9df0 FUN_100c9df0 undefined FUN_100c9df0(void) 421 8 +100ca000 FUN_100ca000 undefined FUN_100ca000(void) 421 8 +100ca210 FUN_100ca210 undefined FUN_100ca210(void) 421 8 +100ca420 FUN_100ca420 undefined FUN_100ca420(void) 366 7 +100ca5f0 FUN_100ca5f0 undefined FUN_100ca5f0(void) 366 8 +100ca7c0 FUN_100ca7c0 undefined FUN_100ca7c0(void) 366 8 +100ca990 FUN_100ca990 undefined FUN_100ca990(void) 369 8 +100cab60 FUN_100cab60 undefined FUN_100cab60(void) 369 8 +100cad30 FUN_100cad30 undefined FUN_100cad30(void) 366 8 +100caf00 FUN_100caf00 undefined FUN_100caf00(void) 369 8 +100cb0d0 FUN_100cb0d0 undefined FUN_100cb0d0(void) 366 8 +100cb2a0 FUN_100cb2a0 undefined FUN_100cb2a0(void) 366 8 +100cb470 FUN_100cb470 undefined FUN_100cb470(void) 369 8 +100cb640 FUN_100cb640 undefined FUN_100cb640(void) 369 8 +100cb810 FUN_100cb810 undefined FUN_100cb810(void) 369 8 +100cb9e0 FUN_100cb9e0 undefined FUN_100cb9e0(void) 366 8 +100cbbb0 FUN_100cbbb0 undefined FUN_100cbbb0(void) 410 9 +100cbdb0 FUN_100cbdb0 undefined FUN_100cbdb0(void) 461 9 +100cbfe0 FUN_100cbfe0 undefined FUN_100cbfe0(void) 410 9 +100cc1e0 FUN_100cc1e0 undefined FUN_100cc1e0(void) 410 9 +100cc3e0 FUN_100cc3e0 undefined FUN_100cc3e0(void) 410 9 +100cc5e0 FUN_100cc5e0 undefined FUN_100cc5e0(void) 410 9 +100cc7e0 FUN_100cc7e0 undefined FUN_100cc7e0(void) 410 9 +100cc9e0 FUN_100cc9e0 undefined FUN_100cc9e0(void) 410 9 +100ccbe0 FUN_100ccbe0 undefined FUN_100ccbe0(void) 410 9 +100ccde0 FUN_100ccde0 undefined FUN_100ccde0(void) 410 9 +100ccfe0 FUN_100ccfe0 undefined FUN_100ccfe0(void) 410 9 +100cd1e0 FUN_100cd1e0 undefined FUN_100cd1e0(void) 410 9 +100cd3e0 FUN_100cd3e0 undefined FUN_100cd3e0(void) 410 9 +100cd5e0 FUN_100cd5e0 undefined FUN_100cd5e0(void) 353 9 +100cd7a0 FUN_100cd7a0 undefined FUN_100cd7a0(void) 356 8 +100cd960 FUN_100cd960 undefined FUN_100cd960(void) 356 9 +100cdb20 FUN_100cdb20 undefined FUN_100cdb20(void) 359 9 +100cdcf0 FUN_100cdcf0 undefined FUN_100cdcf0(void) 359 9 +100cdec0 FUN_100cdec0 undefined FUN_100cdec0(void) 356 9 +100ce080 FUN_100ce080 undefined FUN_100ce080(void) 359 9 +100ce250 FUN_100ce250 undefined FUN_100ce250(void) 356 9 +100ce410 FUN_100ce410 undefined FUN_100ce410(void) 356 9 +100ce5d0 FUN_100ce5d0 undefined FUN_100ce5d0(void) 359 9 +100ce7a0 FUN_100ce7a0 undefined FUN_100ce7a0(void) 359 9 +100ce970 FUN_100ce970 undefined FUN_100ce970(void) 359 9 +100ceb40 FUN_100ceb40 undefined FUN_100ceb40(void) 356 9 +100ced00 FUN_100ced00 undefined FUN_100ced00(void) 409 6 +100cef00 FUN_100cef00 undefined FUN_100cef00(void) 409 6 +100cf100 FUN_100cf100 undefined FUN_100cf100(void) 409 6 +100cf300 FUN_100cf300 undefined FUN_100cf300(void) 409 6 +100cf500 FUN_100cf500 undefined FUN_100cf500(void) 409 6 +100cf700 FUN_100cf700 undefined FUN_100cf700(void) 409 6 +100cf900 FUN_100cf900 undefined FUN_100cf900(void) 409 6 +100cfb00 FUN_100cfb00 undefined FUN_100cfb00(void) 409 6 +100cfd00 FUN_100cfd00 undefined FUN_100cfd00(void) 409 6 +100cff00 FUN_100cff00 undefined FUN_100cff00(void) 409 6 +100d0100 FUN_100d0100 undefined FUN_100d0100(void) 409 6 +100d0300 FUN_100d0300 undefined FUN_100d0300(void) 409 6 +100d0500 FUN_100d0500 undefined FUN_100d0500(void) 409 6 +100d0700 FUN_100d0700 undefined FUN_100d0700(void) 352 6 +100d08c0 FUN_100d08c0 undefined FUN_100d08c0(void) 355 6 +100d0a80 FUN_100d0a80 undefined FUN_100d0a80(void) 355 6 +100d0c40 FUN_100d0c40 undefined FUN_100d0c40(void) 358 6 +100d0e10 FUN_100d0e10 undefined FUN_100d0e10(void) 358 6 +100d0fe0 FUN_100d0fe0 undefined FUN_100d0fe0(void) 355 6 +100d11a0 FUN_100d11a0 undefined FUN_100d11a0(void) 358 6 +100d1370 FUN_100d1370 undefined FUN_100d1370(void) 355 6 +100d1530 FUN_100d1530 undefined FUN_100d1530(void) 355 6 +100d16f0 FUN_100d16f0 undefined FUN_100d16f0(void) 358 6 +100d18c0 FUN_100d18c0 undefined FUN_100d18c0(void) 358 6 +100d1a90 FUN_100d1a90 undefined FUN_100d1a90(void) 358 6 +100d1c60 FUN_100d1c60 undefined FUN_100d1c60(void) 355 6 +100d1e20 FUN_100d1e20 undefined FUN_100d1e20(void) 410 9 +100d2020 FUN_100d2020 undefined FUN_100d2020(void) 461 9 +100d2250 FUN_100d2250 undefined FUN_100d2250(void) 410 9 +100d2450 FUN_100d2450 undefined FUN_100d2450(void) 410 9 +100d2650 FUN_100d2650 undefined FUN_100d2650(void) 410 9 +100d2850 FUN_100d2850 undefined FUN_100d2850(void) 410 9 +100d2a50 FUN_100d2a50 undefined FUN_100d2a50(void) 410 9 +100d2c50 FUN_100d2c50 undefined FUN_100d2c50(void) 410 9 +100d2e50 FUN_100d2e50 undefined FUN_100d2e50(void) 410 9 +100d3050 FUN_100d3050 undefined FUN_100d3050(void) 410 9 +100d3250 FUN_100d3250 undefined FUN_100d3250(void) 410 9 +100d3450 FUN_100d3450 undefined FUN_100d3450(void) 410 9 +100d3650 FUN_100d3650 undefined FUN_100d3650(void) 410 9 +100d3850 FUN_100d3850 undefined FUN_100d3850(void) 353 9 +100d3a10 FUN_100d3a10 undefined FUN_100d3a10(void) 356 8 +100d3bd0 FUN_100d3bd0 undefined FUN_100d3bd0(void) 356 9 +100d3d90 FUN_100d3d90 undefined FUN_100d3d90(void) 359 9 +100d3f60 FUN_100d3f60 undefined FUN_100d3f60(void) 359 9 +100d4130 FUN_100d4130 undefined FUN_100d4130(void) 356 9 +100d42f0 FUN_100d42f0 undefined FUN_100d42f0(void) 359 9 +100d44c0 FUN_100d44c0 undefined FUN_100d44c0(void) 356 9 +100d4680 FUN_100d4680 undefined FUN_100d4680(void) 356 9 +100d4840 FUN_100d4840 undefined FUN_100d4840(void) 359 9 +100d4a10 FUN_100d4a10 undefined FUN_100d4a10(void) 359 9 +100d4be0 FUN_100d4be0 undefined FUN_100d4be0(void) 359 9 +100d4db0 FUN_100d4db0 undefined FUN_100d4db0(void) 356 9 +100d4f70 FUN_100d4f70 undefined FUN_100d4f70(void) 420 9 +100d5170 FUN_100d5170 undefined FUN_100d5170(void) 485 9 +100d53c0 FUN_100d53c0 undefined FUN_100d53c0(void) 420 9 +100d55c0 FUN_100d55c0 undefined FUN_100d55c0(void) 420 9 +100d57c0 FUN_100d57c0 undefined FUN_100d57c0(void) 420 9 +100d59c0 FUN_100d59c0 undefined FUN_100d59c0(void) 420 9 +100d5bc0 FUN_100d5bc0 undefined FUN_100d5bc0(void) 420 9 +100d5dc0 FUN_100d5dc0 undefined FUN_100d5dc0(void) 420 9 +100d5fc0 FUN_100d5fc0 undefined FUN_100d5fc0(void) 420 9 +100d61c0 FUN_100d61c0 undefined FUN_100d61c0(void) 420 9 +100d63c0 FUN_100d63c0 undefined FUN_100d63c0(void) 420 9 +100d65c0 FUN_100d65c0 undefined FUN_100d65c0(void) 420 9 +100d67c0 FUN_100d67c0 undefined FUN_100d67c0(void) 420 9 +100d69c0 FUN_100d69c0 undefined FUN_100d69c0(void) 386 9 +100d6ba0 FUN_100d6ba0 undefined FUN_100d6ba0(void) 389 8 +100d6d90 FUN_100d6d90 undefined FUN_100d6d90(void) 389 9 +100d6f80 FUN_100d6f80 undefined FUN_100d6f80(void) 389 9 +100d7170 FUN_100d7170 undefined FUN_100d7170(void) 392 9 +100d7360 FUN_100d7360 undefined FUN_100d7360(void) 389 9 +100d7550 FUN_100d7550 undefined FUN_100d7550(void) 392 9 +100d7740 FUN_100d7740 undefined FUN_100d7740(void) 389 9 +100d7930 FUN_100d7930 undefined FUN_100d7930(void) 389 9 +100d7b20 FUN_100d7b20 undefined FUN_100d7b20(void) 392 9 +100d7d10 FUN_100d7d10 undefined FUN_100d7d10(void) 392 9 +100d7f00 FUN_100d7f00 undefined FUN_100d7f00(void) 392 9 +100d80f0 FUN_100d80f0 undefined FUN_100d80f0(void) 389 9 +100d82e0 FUN_100d82e0 undefined FUN_100d82e0(void) 420 9 +100d84e0 FUN_100d84e0 undefined FUN_100d84e0(void) 485 9 +100d8730 FUN_100d8730 undefined FUN_100d8730(void) 420 9 +100d8930 FUN_100d8930 undefined FUN_100d8930(void) 420 9 +100d8b30 FUN_100d8b30 undefined FUN_100d8b30(void) 420 9 +100d8d30 FUN_100d8d30 undefined FUN_100d8d30(void) 420 9 +100d8f30 FUN_100d8f30 undefined FUN_100d8f30(void) 420 9 +100d9130 FUN_100d9130 undefined FUN_100d9130(void) 420 9 +100d9330 FUN_100d9330 undefined FUN_100d9330(void) 420 9 +100d9530 FUN_100d9530 undefined FUN_100d9530(void) 420 9 +100d9730 FUN_100d9730 undefined FUN_100d9730(void) 420 9 +100d9930 FUN_100d9930 undefined FUN_100d9930(void) 420 9 +100d9b30 FUN_100d9b30 undefined FUN_100d9b30(void) 420 9 +100d9d30 FUN_100d9d30 undefined FUN_100d9d30(void) 386 9 +100d9f10 FUN_100d9f10 undefined FUN_100d9f10(void) 389 8 +100da100 FUN_100da100 undefined FUN_100da100(void) 389 9 +100da2f0 FUN_100da2f0 undefined FUN_100da2f0(void) 389 9 +100da4e0 FUN_100da4e0 undefined FUN_100da4e0(void) 392 9 +100da6d0 FUN_100da6d0 undefined FUN_100da6d0(void) 392 9 +100da8c0 FUN_100da8c0 undefined FUN_100da8c0(void) 389 9 +100daab0 FUN_100daab0 undefined FUN_100daab0(void) 392 9 +100daca0 FUN_100daca0 undefined FUN_100daca0(void) 389 9 +100dae90 FUN_100dae90 undefined FUN_100dae90(void) 389 9 +100db080 FUN_100db080 undefined FUN_100db080(void) 392 9 +100db270 FUN_100db270 undefined FUN_100db270(void) 392 9 +100db460 FUN_100db460 undefined FUN_100db460(void) 392 9 +100db650 FUN_100db650 undefined FUN_100db650(void) 190 4 +100db6df Catch@100db6df undefined Catch@100db6df(void) 21 2 +100db730 FUN_100db730 undefined FUN_100db730(void) 190 4 +100db7bf Catch@100db7bf undefined Catch@100db7bf(void) 21 2 +100db810 FUN_100db810 undefined FUN_100db810(void) 100 1 +100db880 FUN_100db880 undefined FUN_100db880(void) 98 0 +100db8f0 FUN_100db8f0 undefined FUN_100db8f0(void) 69 2 +100db940 FUN_100db940 undefined FUN_100db940(void) 100 2 +100db9b0 FUN_100db9b0 undefined FUN_100db9b0(void) 65 1 +100dba00 FUN_100dba00 undefined FUN_100dba00(void) 93 2 +100dba60 FUN_100dba60 undefined FUN_100dba60(void) 93 2 +100dbac0 FUN_100dbac0 undefined FUN_100dbac0(void) 199 1 CoCreateInstance +100dbb90 FUN_100dbb90 undefined FUN_100dbb90(void) 38 2 +100dbbc0 FUN_100dbbc0 undefined FUN_100dbbc0(void) 38 2 +100dbbf0 FUN_100dbbf0 undefined FUN_100dbbf0(void) 421 5 +100dbda0 FUN_100dbda0 undefined FUN_100dbda0(void) 411 3 SysFreeString +100dbf60 FUN_100dbf60 undefined FUN_100dbf60(void) 322 2 +100dc0c0 FUN_100dc0c0 undefined FUN_100dc0c0(void) 270 2 +100dc1f0 FUN_100dc1f0 undefined FUN_100dc1f0(void) 270 2 +100dc320 FUN_100dc320 undefined FUN_100dc320(void) 270 2 +100dc450 FUN_100dc450 undefined FUN_100dc450(void) 271 3 +100dc580 FUN_100dc580 undefined FUN_100dc580(void) 271 3 +100dc6b0 FUN_100dc6b0 undefined FUN_100dc6b0(void) 19 1 +100dc6d0 FUN_100dc6d0 undefined FUN_100dc6d0(void) 116 1 +100dc750 FUN_100dc750 undefined FUN_100dc750(void) 542 7 SysFreeString +100dc970 FUN_100dc970 undefined FUN_100dc970(void) 95 2 +100dc9d0 FUN_100dc9d0 undefined FUN_100dc9d0(void) 65 2 +100dca20 FUN_100dca20 undefined FUN_100dca20(void) 82 3 +100dca80 FUN_100dca80 undefined FUN_100dca80(void) 132 1 +100dcb10 FUN_100dcb10 undefined FUN_100dcb10(void) 131 2 memmove +100dcba0 FUN_100dcba0 undefined FUN_100dcba0(void) 131 2 memmove +100dcc30 FUN_100dcc30 undefined FUN_100dcc30(void) 330 10 SysAllocString;SysFreeString +100dcd80 FUN_100dcd80 undefined FUN_100dcd80(void) 40 2 +100dcdb0 FUN_100dcdb0 undefined FUN_100dcdb0(void) 116 1 +100dce30 FUN_100dce30 undefined FUN_100dce30(void) 131 2 SysFreeString +100dcec0 FUN_100dcec0 undefined FUN_100dcec0(void) 64 1 +100dcf00 FUN_100dcf00 undefined FUN_100dcf00(void) 40 1 +100dcf30 FUN_100dcf30 undefined FUN_100dcf30(void) 40 1 +100dcf60 FUN_100dcf60 undefined FUN_100dcf60(void) 40 1 +100dcf90 FUN_100dcf90 undefined FUN_100dcf90(void) 149 4 SysFreeString +100dd030 FUN_100dd030 undefined FUN_100dd030(void) 149 4 SysFreeString +100dd0d0 FUN_100dd0d0 undefined FUN_100dd0d0(void) 116 1 +100dd150 FUN_100dd150 undefined FUN_100dd150(void) 82 3 +100dd1b0 FUN_100dd1b0 undefined FUN_100dd1b0(void) 44 1 +100dd1e0 FUN_100dd1e0 undefined FUN_100dd1e0(void) 21 1 +100dd200 FUN_100dd200 undefined FUN_100dd200(void) 123 1 +100dd280 FUN_100dd280 undefined FUN_100dd280(void) 557 3 +100dd4b0 FUN_100dd4b0 undefined FUN_100dd4b0(void) 410 9 +100dd6b0 FUN_100dd6b0 undefined FUN_100dd6b0(void) 356 9 +100dd870 FUN_100dd870 undefined FUN_100dd870(void) 421 8 +100dda80 FUN_100dda80 undefined FUN_100dda80(void) 366 8 +100ddc50 FUN_100ddc50 undefined FUN_100ddc50(void) 410 9 +100dde50 FUN_100dde50 undefined FUN_100dde50(void) 356 9 +100de010 FUN_100de010 undefined FUN_100de010(void) 409 6 +100de210 FUN_100de210 undefined FUN_100de210(void) 355 6 +100de3d0 FUN_100de3d0 undefined FUN_100de3d0(void) 410 9 +100de5d0 FUN_100de5d0 undefined FUN_100de5d0(void) 356 9 +100de790 FUN_100de790 undefined FUN_100de790(void) 420 9 +100de990 FUN_100de990 undefined FUN_100de990(void) 389 9 +100deb80 FUN_100deb80 undefined FUN_100deb80(void) 420 9 +100ded80 FUN_100ded80 undefined FUN_100ded80(void) 389 9 +100def70 FUN_100def70 undefined FUN_100def70(void) 113 1 +100deff0 FUN_100deff0 undefined FUN_100deff0(void) 90 1 +100df050 FUN_100df050 undefined FUN_100df050(void) 324 6 +100df1a0 FUN_100df1a0 undefined FUN_100df1a0(void) 383 7 +100df320 FUN_100df320 undefined FUN_100df320(void) 226 4 +100df410 FUN_100df410 undefined FUN_100df410(void) 526 15 +100df670 FUN_100df670 undefined FUN_100df670(void) 544 15 +100df8e0 FUN_100df8e0 undefined FUN_100df8e0(void) 526 15 +100dfb40 FUN_100dfb40 undefined FUN_100dfb40(void) 544 15 +100dfdb0 FUN_100dfdb0 undefined FUN_100dfdb0(void) 526 15 +100e0010 FUN_100e0010 undefined FUN_100e0010(void) 544 15 +100e0280 FUN_100e0280 undefined FUN_100e0280(void) 526 15 +100e04e0 FUN_100e04e0 undefined FUN_100e04e0(void) 544 15 +100e0750 FUN_100e0750 undefined FUN_100e0750(void) 526 15 +100e09b0 FUN_100e09b0 undefined FUN_100e09b0(void) 544 15 +100e0c20 FUN_100e0c20 undefined FUN_100e0c20(void) 526 15 +100e0e80 FUN_100e0e80 undefined FUN_100e0e80(void) 544 15 +100e10f0 FUN_100e10f0 undefined FUN_100e10f0(void) 526 15 +100e1350 FUN_100e1350 undefined FUN_100e1350(void) 544 15 +100e15c0 FUN_100e15c0 undefined FUN_100e15c0(void) 634 2 +100e1840 FUN_100e1840 undefined FUN_100e1840(void) 111 1 +100e18b0 FUN_100e18b0 undefined FUN_100e18b0(void) 108 3 +100e1920 FUN_100e1920 undefined FUN_100e1920(void) 1029 18 +100e1d30 FUN_100e1d30 undefined FUN_100e1d30(void) 56 2 SysAllocString +100e1d70 FUN_100e1d70 undefined FUN_100e1d70(void) 133 5 +100e1e00 FUN_100e1e00 undefined FUN_100e1e00(void) 385 4 +100e1f90 FUN_100e1f90 undefined FUN_100e1f90(void) 173 1 +100e2040 FUN_100e2040 undefined FUN_100e2040(void) 124 1 +100e20c0 FUN_100e20c0 undefined FUN_100e20c0(void) 87 1 +100e2150 FUN_100e2150 undefined FUN_100e2150(void) 89 2 +100e21b0 FUN_100e21b0 undefined FUN_100e21b0(void) 182 2 +100e2270 FUN_100e2270 undefined FUN_100e2270(void) 448 3 SysAllocString +100e2430 FUN_100e2430 undefined FUN_100e2430(void) 389 8 +100e25c0 FUN_100e25c0 undefined FUN_100e25c0(void) 594 12 SysFreeString +100e2820 FUN_100e2820 undefined FUN_100e2820(void) 240 4 SysAllocString;SysFreeString +100e2920 FUN_100e2920 undefined FUN_100e2920(void) 269 6 SysFreeString +100e2a30 FUN_100e2a30 undefined FUN_100e2a30(void) 122 1 +100e2ab0 FUN_100e2ab0 undefined FUN_100e2ab0(void) 87 1 +100e2b10 FUN_100e2b10 undefined FUN_100e2b10(void) 87 1 +100e2b70 FUN_100e2b70 undefined FUN_100e2b70(void) 190 4 +100e2bff Catch@100e2bff undefined Catch@100e2bff(void) 21 2 +100e2c50 FUN_100e2c50 undefined FUN_100e2c50(void) 87 1 +100e2cb0 FUN_100e2cb0 undefined FUN_100e2cb0(void) 99 1 +100e2d20 FUN_100e2d20 undefined FUN_100e2d20(void) 38 2 +100e2d50 FUN_100e2d50 undefined FUN_100e2d50(void) 97 1 +100e2dc0 FUN_100e2dc0 undefined FUN_100e2dc0(void) 97 1 +100e2e30 FUN_100e2e30 undefined FUN_100e2e30(void) 190 4 +100e2ebf Catch@100e2ebf undefined Catch@100e2ebf(void) 21 2 +100e2f10 FUN_100e2f10 undefined FUN_100e2f10(void) 41 2 +100e2f40 FUN_100e2f40 undefined FUN_100e2f40(void) 53 1 +100e2f80 FUN_100e2f80 undefined FUN_100e2f80(void) 210 1 +100e3060 FUN_100e3060 undefined FUN_100e3060(void) 30 1 +100e3080 FUN_100e3080 undefined FUN_100e3080(void) 2701 29 SysFreeString +100e3b10 FUN_100e3b10 undefined FUN_100e3b10(void) 716 14 SysFreeString +100e3de0 FUN_100e3de0 undefined FUN_100e3de0(void) 359 8 +100e3f50 FUN_100e3f50 undefined FUN_100e3f50(void) 1703 30 SysAllocString;SysFreeString +100e4600 FUN_100e4600 undefined FUN_100e4600(void) 359 8 +100e4770 FUN_100e4770 undefined FUN_100e4770(void) 355 6 SysFreeString +100e48e0 FUN_100e48e0 undefined FUN_100e48e0(void) 45 3 SysAllocString +100e4910 FUN_100e4910 undefined FUN_100e4910(void) 197 4 +100e49d5 Catch@100e49d5 undefined Catch@100e49d5(void) 94 4 +100e4a4a Catch@100e4a4a undefined Catch@100e4a4a(void) 22 0 +100e4a62 Catch@100e4a62 undefined Catch@100e4a62(void) 115 6 +100e4ada Catch@100e4ada undefined Catch@100e4ada(void) 73 3 +100e4b30 FUN_100e4b30 undefined FUN_100e4b30(void) 250 7 +100e4c2a Catch@100e4c2a undefined Catch@100e4c2a(void) 94 4 +100e4c9f Catch@100e4c9f undefined Catch@100e4c9f(void) 22 0 +100e4cb7 Catch@100e4cb7 undefined Catch@100e4cb7(void) 115 6 +100e4d2f Catch@100e4d2f undefined Catch@100e4d2f(void) 73 3 +100e4d80 FUN_100e4d80 undefined FUN_100e4d80(void) 1154 19 +100e5202 Catch@100e5202 undefined Catch@100e5202(void) 94 4 +100e5277 Catch@100e5277 undefined Catch@100e5277(void) 22 0 +100e528f Catch@100e528f undefined Catch@100e528f(void) 115 6 +100e5307 Catch@100e5307 undefined Catch@100e5307(void) 73 3 +100e5350 FUN_100e5350 undefined FUN_100e5350(void) 308 8 +100e5484 Catch@100e5484 undefined Catch@100e5484(void) 94 4 +100e54f9 Catch@100e54f9 undefined Catch@100e54f9(void) 22 0 +100e5511 Catch@100e5511 undefined Catch@100e5511(void) 115 6 +100e5589 Catch@100e5589 undefined Catch@100e5589(void) 73 3 +100e55e0 FUN_100e55e0 undefined FUN_100e55e0(void) 292 7 +100e5704 Catch@100e5704 undefined Catch@100e5704(void) 94 4 +100e5779 Catch@100e5779 undefined Catch@100e5779(void) 22 0 +100e5791 Catch@100e5791 undefined Catch@100e5791(void) 115 6 +100e5809 Catch@100e5809 undefined Catch@100e5809(void) 73 3 +100e5860 FUN_100e5860 undefined FUN_100e5860(void) 284 8 +100e597c Catch@100e597c undefined Catch@100e597c(void) 94 4 +100e59f1 Catch@100e59f1 undefined Catch@100e59f1(void) 22 0 +100e5a09 Catch@100e5a09 undefined Catch@100e5a09(void) 115 6 +100e5a81 Catch@100e5a81 undefined Catch@100e5a81(void) 73 3 +100e5ad0 FUN_100e5ad0 undefined FUN_100e5ad0(void) 1027 19 SysFreeString +100e5ed3 Catch@100e5ed3 undefined Catch@100e5ed3(void) 94 4 +100e5f48 Catch@100e5f48 undefined Catch@100e5f48(void) 22 0 +100e5f60 Catch@100e5f60 undefined Catch@100e5f60(void) 121 6 +100e5fde Catch@100e5fde undefined Catch@100e5fde(void) 79 3 +100e6030 FUN_100e6030 undefined FUN_100e6030(void) 134 3 +100e60b6 Catch@100e60b6 undefined Catch@100e60b6(void) 94 4 +100e612b Catch@100e612b undefined Catch@100e612b(void) 22 0 +100e6143 Catch@100e6143 undefined Catch@100e6143(void) 115 6 +100e61bb Catch@100e61bb undefined Catch@100e61bb(void) 73 3 +100e6210 FUN_100e6210 undefined FUN_100e6210(void) 664 13 +100e64a8 Catch@100e64a8 undefined Catch@100e64a8(void) 106 4 +100e6518 FUN_100e6518 undefined FUN_100e6518(void) 30 1 +100e6536 Catch@100e6536 undefined Catch@100e6536(void) 28 0 +100e6554 Catch@100e6554 undefined Catch@100e6554(void) 133 6 +100e65de Catch@100e65de undefined Catch@100e65de(void) 82 3 +100e6630 FUN_100e6630 undefined FUN_100e6630(void) 508 8 +100e682c Catch@100e682c undefined Catch@100e682c(void) 94 4 +100e68a1 Catch@100e68a1 undefined Catch@100e68a1(void) 22 0 +100e68b9 Catch@100e68b9 undefined Catch@100e68b9(void) 115 6 +100e6931 Catch@100e6931 undefined Catch@100e6931(void) 73 3 +100e6980 FUN_100e6980 undefined FUN_100e6980(void) 623 13 +100e6bef Catch@100e6bef undefined Catch@100e6bef(void) 106 4 +100e6c5f FUN_100e6c5f undefined FUN_100e6c5f(void) 30 1 +100e6c7d Catch@100e6c7d undefined Catch@100e6c7d(void) 28 0 +100e6c9b Catch@100e6c9b undefined Catch@100e6c9b(void) 133 6 +100e6d25 Catch@100e6d25 undefined Catch@100e6d25(void) 82 3 +100e6d80 FUN_100e6d80 undefined FUN_100e6d80(void) 738 16 +100e7062 Catch@100e7062 undefined Catch@100e7062(void) 106 4 +100e70d2 FUN_100e70d2 undefined FUN_100e70d2(void) 30 1 +100e70f0 Catch@100e70f0 undefined Catch@100e70f0(void) 28 0 +100e710e Catch@100e710e undefined Catch@100e710e(void) 133 6 +100e7198 Catch@100e7198 undefined Catch@100e7198(void) 82 3 +100e71f0 FUN_100e71f0 undefined FUN_100e71f0(void) 709 15 SysAllocString;SysFreeString +100e74b5 Catch@100e74b5 undefined Catch@100e74b5(void) 106 4 +100e7525 FUN_100e7525 undefined FUN_100e7525(void) 30 1 +100e7543 Catch@100e7543 undefined Catch@100e7543(void) 28 0 +100e7561 Catch@100e7561 undefined Catch@100e7561(void) 133 6 +100e75eb Catch@100e75eb undefined Catch@100e75eb(void) 82 3 +100e7640 FUN_100e7640 undefined FUN_100e7640(void) 781 15 SysAllocString;SysFreeString +100e794d Catch@100e794d undefined Catch@100e794d(void) 106 4 +100e79bd FUN_100e79bd undefined FUN_100e79bd(void) 30 1 +100e79db Catch@100e79db undefined Catch@100e79db(void) 28 0 +100e79f9 Catch@100e79f9 undefined Catch@100e79f9(void) 133 6 +100e7a83 Catch@100e7a83 undefined Catch@100e7a83(void) 82 3 +100e7ae0 FUN_100e7ae0 undefined FUN_100e7ae0(void) 778 15 SysAllocString;SysFreeString +100e7dea Catch@100e7dea undefined Catch@100e7dea(void) 106 4 +100e7e5a FUN_100e7e5a undefined FUN_100e7e5a(void) 30 1 +100e7e78 Catch@100e7e78 undefined Catch@100e7e78(void) 28 0 +100e7e96 Catch@100e7e96 undefined Catch@100e7e96(void) 133 6 +100e7f20 Catch@100e7f20 undefined Catch@100e7f20(void) 82 3 +100e7f80 FUN_100e7f80 undefined FUN_100e7f80(void) 780 15 SysAllocString;SysFreeString +100e828c Catch@100e828c undefined Catch@100e828c(void) 106 4 +100e82fc FUN_100e82fc undefined FUN_100e82fc(void) 30 1 +100e831a Catch@100e831a undefined Catch@100e831a(void) 28 0 +100e8338 Catch@100e8338 undefined Catch@100e8338(void) 133 6 +100e83c2 Catch@100e83c2 undefined Catch@100e83c2(void) 82 3 +100e8420 FUN_100e8420 undefined FUN_100e8420(void) 711 15 SysAllocString;SysFreeString +100e86e7 Catch@100e86e7 undefined Catch@100e86e7(void) 106 4 +100e8757 FUN_100e8757 undefined FUN_100e8757(void) 30 1 +100e8775 Catch@100e8775 undefined Catch@100e8775(void) 28 0 +100e8793 Catch@100e8793 undefined Catch@100e8793(void) 133 6 +100e881d Catch@100e881d undefined Catch@100e881d(void) 82 3 +100e8870 FUN_100e8870 undefined FUN_100e8870(void) 137 3 +100e88f9 Catch@100e88f9 undefined Catch@100e88f9(void) 94 4 +100e896e Catch@100e896e undefined Catch@100e896e(void) 22 0 +100e8986 Catch@100e8986 undefined Catch@100e8986(void) 115 6 +100e89fe Catch@100e89fe undefined Catch@100e89fe(void) 73 3 +100e8a50 FUN_100e8a50 undefined FUN_100e8a50(void) 892 24 +100e8dcc Catch@100e8dcc undefined Catch@100e8dcc(void) 97 4 +100e8e30 FUN_100e8e30 undefined FUN_100e8e30(void) 30 1 +100e8e4e Catch@100e8e4e undefined Catch@100e8e4e(void) 25 0 +100e8e69 Catch@100e8e69 undefined Catch@100e8e69(void) 118 6 +100e8ee4 Catch@100e8ee4 undefined Catch@100e8ee4(void) 73 3 +100e8f30 FUN_100e8f30 undefined FUN_100e8f30(void) 833 19 +100e9271 Catch@100e9271 undefined Catch@100e9271(void) 94 4 +100e92e6 Catch@100e92e6 undefined Catch@100e92e6(void) 22 0 +100e92fe Catch@100e92fe undefined Catch@100e92fe(void) 115 6 +100e9376 Catch@100e9376 undefined Catch@100e9376(void) 73 3 +100e93c0 FUN_100e93c0 undefined FUN_100e93c0(void) 133 3 +100e9445 Catch@100e9445 undefined Catch@100e9445(void) 94 4 +100e94ba Catch@100e94ba undefined Catch@100e94ba(void) 22 0 +100e94d2 Catch@100e94d2 undefined Catch@100e94d2(void) 115 6 +100e954a Catch@100e954a undefined Catch@100e954a(void) 73 3 +100e95a0 FUN_100e95a0 undefined FUN_100e95a0(void) 269 7 +100e96ad Catch@100e96ad undefined Catch@100e96ad(void) 94 4 +100e9722 Catch@100e9722 undefined Catch@100e9722(void) 22 0 +100e973a Catch@100e973a undefined Catch@100e973a(void) 115 6 +100e97b2 Catch@100e97b2 undefined Catch@100e97b2(void) 73 3 +100e9800 FUN_100e9800 undefined FUN_100e9800(void) 277 5 +100e9920 FUN_100e9920 undefined FUN_100e9920(void) 527 12 +100e9b2f Catch@100e9b2f undefined Catch@100e9b2f(void) 94 4 +100e9b90 FUN_100e9b90 undefined FUN_100e9b90(void) 30 1 +100e9bae Catch@100e9bae undefined Catch@100e9bae(void) 22 0 +100e9bc6 Catch@100e9bc6 undefined Catch@100e9bc6(void) 115 6 +100e9c3e Catch@100e9c3e undefined Catch@100e9c3e(void) 73 3 +100e9c90 FUN_100e9c90 undefined FUN_100e9c90(void) 339 8 +100e9de3 Catch@100e9de3 undefined Catch@100e9de3(void) 94 4 +100e9e58 Catch@100e9e58 undefined Catch@100e9e58(void) 22 0 +100e9e70 Catch@100e9e70 undefined Catch@100e9e70(void) 115 6 +100e9ee8 Catch@100e9ee8 undefined Catch@100e9ee8(void) 73 3 +100e9f40 FUN_100e9f40 undefined FUN_100e9f40(void) 337 8 +100ea091 Catch@100ea091 undefined Catch@100ea091(void) 94 4 +100ea106 Catch@100ea106 undefined Catch@100ea106(void) 22 0 +100ea11e Catch@100ea11e undefined Catch@100ea11e(void) 115 6 +100ea196 Catch@100ea196 undefined Catch@100ea196(void) 73 3 +100ea1e0 FUN_100ea1e0 undefined FUN_100ea1e0(void) 141 3 +100ea26d Catch@100ea26d undefined Catch@100ea26d(void) 94 4 +100ea2e2 Catch@100ea2e2 undefined Catch@100ea2e2(void) 22 0 +100ea2fa Catch@100ea2fa undefined Catch@100ea2fa(void) 115 6 +100ea372 Catch@100ea372 undefined Catch@100ea372(void) 73 3 +100ea3c0 FUN_100ea3c0 undefined FUN_100ea3c0(void) 143 3 +100ea44f Catch@100ea44f undefined Catch@100ea44f(void) 94 4 +100ea4c4 Catch@100ea4c4 undefined Catch@100ea4c4(void) 22 0 +100ea4dc Catch@100ea4dc undefined Catch@100ea4dc(void) 115 6 +100ea554 Catch@100ea554 undefined Catch@100ea554(void) 73 3 +100ea5a0 FUN_100ea5a0 undefined FUN_100ea5a0(void) 143 3 +100ea62f Catch@100ea62f undefined Catch@100ea62f(void) 94 4 +100ea6a4 Catch@100ea6a4 undefined Catch@100ea6a4(void) 22 0 +100ea6bc Catch@100ea6bc undefined Catch@100ea6bc(void) 115 6 +100ea734 Catch@100ea734 undefined Catch@100ea734(void) 73 3 +100ea780 FUN_100ea780 undefined FUN_100ea780(void) 1123 26 SysAllocString;SysFreeString +100eabf0 FUN_100eabf0 undefined FUN_100eabf0(void) 1375 32 SysAllocString;SysFreeString +100eb150 FUN_100eb150 undefined FUN_100eb150(void) 392 8 +100eb2d8 Catch@100eb2d8 undefined Catch@100eb2d8(void) 94 4 +100eb34d Catch@100eb34d undefined Catch@100eb34d(void) 22 0 +100eb365 Catch@100eb365 undefined Catch@100eb365(void) 115 6 +100eb3dd Catch@100eb3dd undefined Catch@100eb3dd(void) 73 3 +100eb430 FUN_100eb430 undefined FUN_100eb430(void) 474 10 +100eb60a Catch@100eb60a undefined Catch@100eb60a(void) 94 4 +100eb67f Catch@100eb67f undefined Catch@100eb67f(void) 22 0 +100eb697 Catch@100eb697 undefined Catch@100eb697(void) 115 6 +100eb70f Catch@100eb70f undefined Catch@100eb70f(void) 73 3 +100eb760 FUN_100eb760 undefined FUN_100eb760(void) 311 8 +100eb897 Catch@100eb897 undefined Catch@100eb897(void) 94 4 +100eb90c Catch@100eb90c undefined Catch@100eb90c(void) 22 0 +100eb924 Catch@100eb924 undefined Catch@100eb924(void) 115 6 +100eb99c Catch@100eb99c undefined Catch@100eb99c(void) 73 3 +100eb9f0 FUN_100eb9f0 undefined FUN_100eb9f0(void) 110 2 +100eba5e Catch@100eba5e undefined Catch@100eba5e(void) 94 4 +100ebad3 Catch@100ebad3 undefined Catch@100ebad3(void) 22 0 +100ebaeb Catch@100ebaeb undefined Catch@100ebaeb(void) 118 6 +100ebb66 Catch@100ebb66 undefined Catch@100ebb66(void) 76 3 +100ebbc0 FUN_100ebbc0 undefined FUN_100ebbc0(void) 264 8 +100ebcc8 Catch@100ebcc8 undefined Catch@100ebcc8(void) 94 4 +100ebd3d Catch@100ebd3d undefined Catch@100ebd3d(void) 22 0 +100ebd55 Catch@100ebd55 undefined Catch@100ebd55(void) 115 6 +100ebdcd Catch@100ebdcd undefined Catch@100ebdcd(void) 73 3 +100ebe20 FUN_100ebe20 undefined FUN_100ebe20(void) 236 2 +100ebf0c Catch@100ebf0c undefined Catch@100ebf0c(void) 94 4 +100ebf81 Catch@100ebf81 undefined Catch@100ebf81(void) 22 0 +100ebf99 Catch@100ebf99 undefined Catch@100ebf99(void) 115 6 +100ec011 Catch@100ec011 undefined Catch@100ec011(void) 73 3 +100ec060 FUN_100ec060 undefined FUN_100ec060(void) 315 8 +100ec19b Catch@100ec19b undefined Catch@100ec19b(void) 94 4 +100ec210 Catch@100ec210 undefined Catch@100ec210(void) 22 0 +100ec228 Catch@100ec228 undefined Catch@100ec228(void) 115 6 +100ec2a0 Catch@100ec2a0 undefined Catch@100ec2a0(void) 73 3 +100ec2f0 FUN_100ec2f0 undefined FUN_100ec2f0(void) 315 8 +100ec42b Catch@100ec42b undefined Catch@100ec42b(void) 94 4 +100ec4a0 Catch@100ec4a0 undefined Catch@100ec4a0(void) 22 0 +100ec4b8 Catch@100ec4b8 undefined Catch@100ec4b8(void) 115 6 +100ec530 Catch@100ec530 undefined Catch@100ec530(void) 73 3 +100ec580 FUN_100ec580 undefined FUN_100ec580(void) 1389 26 +100ecaed Catch@100ecaed undefined Catch@100ecaed(void) 106 4 +100ecb5d FUN_100ecb5d undefined FUN_100ecb5d(void) 30 1 +100ecb7b Catch@100ecb7b undefined Catch@100ecb7b(void) 28 0 +100ecb99 Catch@100ecb99 undefined Catch@100ecb99(void) 127 6 +100ecc1d Catch@100ecc1d undefined Catch@100ecc1d(void) 76 3 +100ecc70 FUN_100ecc70 undefined FUN_100ecc70(void) 316 7 +100ecdac Catch@100ecdac undefined Catch@100ecdac(void) 94 4 +100ece21 Catch@100ece21 undefined Catch@100ece21(void) 22 0 +100ece39 Catch@100ece39 undefined Catch@100ece39(void) 115 6 +100eceb1 Catch@100eceb1 undefined Catch@100eceb1(void) 73 3 +100ecf00 FUN_100ecf00 undefined FUN_100ecf00(void) 350 8 +100ed05e Catch@100ed05e undefined Catch@100ed05e(void) 94 4 +100ed0d3 Catch@100ed0d3 undefined Catch@100ed0d3(void) 22 0 +100ed0eb Catch@100ed0eb undefined Catch@100ed0eb(void) 115 6 +100ed163 Catch@100ed163 undefined Catch@100ed163(void) 73 3 +100ed1b0 FUN_100ed1b0 undefined FUN_100ed1b0(void) 350 8 +100ed30e Catch@100ed30e undefined Catch@100ed30e(void) 94 4 +100ed383 Catch@100ed383 undefined Catch@100ed383(void) 22 0 +100ed39b Catch@100ed39b undefined Catch@100ed39b(void) 115 6 +100ed413 Catch@100ed413 undefined Catch@100ed413(void) 73 3 +100ed460 FUN_100ed460 undefined FUN_100ed460(void) 219 6 +100ed53b Catch@100ed53b undefined Catch@100ed53b(void) 94 4 +100ed5b0 Catch@100ed5b0 undefined Catch@100ed5b0(void) 22 0 +100ed5c8 Catch@100ed5c8 undefined Catch@100ed5c8(void) 115 6 +100ed640 Catch@100ed640 undefined Catch@100ed640(void) 73 3 +100ed690 FUN_100ed690 undefined FUN_100ed690(void) 308 8 +100ed7c4 Catch@100ed7c4 undefined Catch@100ed7c4(void) 94 4 +100ed839 Catch@100ed839 undefined Catch@100ed839(void) 22 0 +100ed851 Catch@100ed851 undefined Catch@100ed851(void) 115 6 +100ed8c9 Catch@100ed8c9 undefined Catch@100ed8c9(void) 73 3 +100ed920 FUN_100ed920 undefined FUN_100ed920(void) 289 7 +100eda41 Catch@100eda41 undefined Catch@100eda41(void) 94 4 +100edab6 Catch@100edab6 undefined Catch@100edab6(void) 22 0 +100edace Catch@100edace undefined Catch@100edace(void) 115 6 +100edb46 Catch@100edb46 undefined Catch@100edb46(void) 73 3 +100edb90 FUN_100edb90 undefined FUN_100edb90(void) 771 18 +100ede93 Catch@100ede93 undefined Catch@100ede93(void) 94 4 +100edf08 Catch@100edf08 undefined Catch@100edf08(void) 22 0 +100edf20 Catch@100edf20 undefined Catch@100edf20(void) 115 6 +100edf98 Catch@100edf98 undefined Catch@100edf98(void) 73 3 +100edff0 FUN_100edff0 undefined FUN_100edff0(void) 283 8 +100ee10b Catch@100ee10b undefined Catch@100ee10b(void) 94 4 +100ee180 Catch@100ee180 undefined Catch@100ee180(void) 22 0 +100ee198 Catch@100ee198 undefined Catch@100ee198(void) 115 6 +100ee210 Catch@100ee210 undefined Catch@100ee210(void) 73 3 +100ee260 FUN_100ee260 undefined FUN_100ee260(void) 1169 18 +100ee6f1 Catch@100ee6f1 undefined Catch@100ee6f1(void) 94 4 +100ee766 Catch@100ee766 undefined Catch@100ee766(void) 22 0 +100ee77e Catch@100ee77e undefined Catch@100ee77e(void) 115 6 +100ee7f6 Catch@100ee7f6 undefined Catch@100ee7f6(void) 73 3 +100ee840 FUN_100ee840 undefined FUN_100ee840(void) 326 8 +100ee986 Catch@100ee986 undefined Catch@100ee986(void) 94 4 +100ee9fb Catch@100ee9fb undefined Catch@100ee9fb(void) 22 0 +100eea13 Catch@100eea13 undefined Catch@100eea13(void) 115 6 +100eea8b Catch@100eea8b undefined Catch@100eea8b(void) 73 3 +100eeae0 FUN_100eeae0 undefined FUN_100eeae0(void) 1687 24 +100ef177 Catch@100ef177 undefined Catch@100ef177(void) 106 4 +100ef1e7 FUN_100ef1e7 undefined FUN_100ef1e7(void) 30 1 +100ef205 Catch@100ef205 undefined Catch@100ef205(void) 28 0 +100ef223 Catch@100ef223 undefined Catch@100ef223(void) 133 6 +100ef2ad Catch@100ef2ad undefined Catch@100ef2ad(void) 82 3 +100ef300 FUN_100ef300 undefined FUN_100ef300(void) 782 17 +100ef60e Catch@100ef60e undefined Catch@100ef60e(void) 106 4 +100ef67e FUN_100ef67e undefined FUN_100ef67e(void) 30 1 +100ef69c Catch@100ef69c undefined Catch@100ef69c(void) 28 0 +100ef6ba Catch@100ef6ba undefined Catch@100ef6ba(void) 133 6 +100ef744 Catch@100ef744 undefined Catch@100ef744(void) 82 3 +100ef7a0 FUN_100ef7a0 undefined FUN_100ef7a0(void) 695 15 SysAllocString;SysFreeString +100efa57 Catch@100efa57 undefined Catch@100efa57(void) 106 4 +100efac7 FUN_100efac7 undefined FUN_100efac7(void) 30 1 +100efae5 Catch@100efae5 undefined Catch@100efae5(void) 28 0 +100efb03 Catch@100efb03 undefined Catch@100efb03(void) 133 6 +100efb8d Catch@100efb8d undefined Catch@100efb8d(void) 82 3 +100efbe0 FUN_100efbe0 undefined FUN_100efbe0(void) 697 15 SysAllocString;SysFreeString +100efe99 Catch@100efe99 undefined Catch@100efe99(void) 106 4 +100eff09 FUN_100eff09 undefined FUN_100eff09(void) 30 1 +100eff27 Catch@100eff27 undefined Catch@100eff27(void) 28 0 +100eff45 Catch@100eff45 undefined Catch@100eff45(void) 133 6 +100effcf Catch@100effcf undefined Catch@100effcf(void) 82 3 +100f0030 FUN_100f0030 undefined FUN_100f0030(void) 328 8 +100f0178 Catch@100f0178 undefined Catch@100f0178(void) 94 4 +100f01ed Catch@100f01ed undefined Catch@100f01ed(void) 22 0 +100f0205 Catch@100f0205 undefined Catch@100f0205(void) 115 6 +100f027d Catch@100f027d undefined Catch@100f027d(void) 73 3 +100f02d0 FUN_100f02d0 undefined FUN_100f02d0(void) 268 7 +100f03dc Catch@100f03dc undefined Catch@100f03dc(void) 94 4 +100f0451 Catch@100f0451 undefined Catch@100f0451(void) 22 0 +100f0469 Catch@100f0469 undefined Catch@100f0469(void) 115 6 +100f04e1 Catch@100f04e1 undefined Catch@100f04e1(void) 73 3 +100f0530 FUN_100f0530 undefined FUN_100f0530(void) 343 8 +100f0687 Catch@100f0687 undefined Catch@100f0687(void) 94 4 +100f06fc Catch@100f06fc undefined Catch@100f06fc(void) 22 0 +100f0714 Catch@100f0714 undefined Catch@100f0714(void) 115 6 +100f078c Catch@100f078c undefined Catch@100f078c(void) 73 3 +100f07e0 FUN_100f07e0 undefined FUN_100f07e0(void) 328 8 +100f0928 Catch@100f0928 undefined Catch@100f0928(void) 94 4 +100f099d Catch@100f099d undefined Catch@100f099d(void) 22 0 +100f09b5 Catch@100f09b5 undefined Catch@100f09b5(void) 115 6 +100f0a2d Catch@100f0a2d undefined Catch@100f0a2d(void) 73 3 +100f0a80 FUN_100f0a80 undefined FUN_100f0a80(void) 480 8 +100f0c60 Catch@100f0c60 undefined Catch@100f0c60(void) 94 4 +100f0cd5 Catch@100f0cd5 undefined Catch@100f0cd5(void) 22 0 +100f0ced Catch@100f0ced undefined Catch@100f0ced(void) 115 6 +100f0d65 Catch@100f0d65 undefined Catch@100f0d65(void) 73 3 +100f0db0 FUN_100f0db0 undefined FUN_100f0db0(void) 336 8 +100f0f00 Catch@100f0f00 undefined Catch@100f0f00(void) 94 4 +100f0f75 Catch@100f0f75 undefined Catch@100f0f75(void) 22 0 +100f0f8d Catch@100f0f8d undefined Catch@100f0f8d(void) 115 6 +100f1005 Catch@100f1005 undefined Catch@100f1005(void) 73 3 +100f1050 FUN_100f1050 undefined FUN_100f1050(void) 550 12 +100f1276 Catch@100f1276 undefined Catch@100f1276(void) 94 4 +100f12d7 FUN_100f12d7 undefined FUN_100f12d7(void) 30 1 +100f12f5 Catch@100f12f5 undefined Catch@100f12f5(void) 22 0 +100f130d Catch@100f130d undefined Catch@100f130d(void) 115 6 +100f1385 Catch@100f1385 undefined Catch@100f1385(void) 73 3 +100f13d0 FUN_100f13d0 undefined FUN_100f13d0(void) 975 24 +100f179f Catch@100f179f undefined Catch@100f179f(void) 97 4 +100f1803 FUN_100f1803 undefined FUN_100f1803(void) 30 1 +100f1821 Catch@100f1821 undefined Catch@100f1821(void) 25 0 +100f183c Catch@100f183c undefined Catch@100f183c(void) 118 6 +100f18b7 Catch@100f18b7 undefined Catch@100f18b7(void) 73 3 +100f1900 FUN_100f1900 undefined FUN_100f1900(void) 1473 26 +100f1ec1 Catch@100f1ec1 undefined Catch@100f1ec1(void) 106 4 +100f1f31 FUN_100f1f31 undefined FUN_100f1f31(void) 30 1 +100f1f4f Catch@100f1f4f undefined Catch@100f1f4f(void) 28 0 +100f1f6d Catch@100f1f6d undefined Catch@100f1f6d(void) 127 6 +100f1ff1 Catch@100f1ff1 undefined Catch@100f1ff1(void) 76 3 +100f2040 FUN_100f2040 undefined FUN_100f2040(void) 1226 13 +100f2540 FUN_100f2540 undefined FUN_100f2540(void) 1226 13 +100f2a40 FUN_100f2a40 undefined FUN_100f2a40(void) 1226 13 +100f2f40 FUN_100f2f40 undefined FUN_100f2f40(void) 1226 13 +100f3440 FUN_100f3440 undefined FUN_100f3440(void) 1226 13 +100f3940 FUN_100f3940 undefined FUN_100f3940(void) 38 2 +100f3970 FUN_100f3970 undefined FUN_100f3970(void) 1226 13 +100f3e70 FUN_100f3e70 undefined FUN_100f3e70(void) 1226 13 +100f4370 FUN_100f4370 undefined FUN_100f4370(void) 1226 13 +100f4870 FUN_100f4870 undefined FUN_100f4870(void) 170 4 +100f4920 FUN_100f4920 undefined FUN_100f4920(void) 172 4 +100f49d0 FUN_100f49d0 undefined FUN_100f49d0(void) 179 5 memcpy_s +100f4a90 FUN_100f4a90 undefined FUN_100f4a90(void) 164 4 +100f4b40 FUN_100f4b40 undefined FUN_100f4b40(void) 179 5 memcpy_s +100f4c00 FUN_100f4c00 undefined FUN_100f4c00(void) 2769 46 CoCreateInstance;SysAllocString;SysFreeString +100f4ecd Catch@100f4ecd undefined Catch@100f4ecd(void) 73 0 +100f5739 Catch@100f5739 undefined Catch@100f5739(void) 106 4 +100f57a9 FUN_100f57a9 undefined FUN_100f57a9(void) 30 1 +100f57c7 Catch@100f57c7 undefined Catch@100f57c7(void) 28 0 +100f57e5 Catch@100f57e5 undefined Catch@100f57e5(void) 133 6 +100f586f Catch@100f586f undefined Catch@100f586f(void) 82 3 +100f58d0 FUN_100f58d0 undefined FUN_100f58d0(void) 170 4 +100f5980 FUN_100f5980 undefined FUN_100f5980(void) 172 4 +100f5a30 FUN_100f5a30 undefined FUN_100f5a30(void) 179 5 memcpy_s +100f5af0 FUN_100f5af0 undefined FUN_100f5af0(void) 164 4 +100f5ba0 FUN_100f5ba0 undefined FUN_100f5ba0(void) 179 5 memcpy_s +100f5c60 FUN_100f5c60 undefined FUN_100f5c60(void) 320 8 SysAllocString;SysFreeString +100f5db0 FUN_100f5db0 undefined FUN_100f5db0(void) 314 8 SysAllocString;SysFreeString +100f5ef0 FUN_100f5ef0 undefined FUN_100f5ef0(void) 320 8 SysAllocString;SysFreeString +100f6040 FUN_100f6040 undefined FUN_100f6040(void) 170 4 +100f60f0 FUN_100f60f0 undefined FUN_100f60f0(void) 170 4 +100f61a0 FUN_100f61a0 undefined FUN_100f61a0(void) 177 5 memcpy_s +100f6260 FUN_100f6260 undefined FUN_100f6260(void) 162 4 +100f6310 FUN_100f6310 undefined FUN_100f6310(void) 179 5 memcpy_s +100f63d0 FUN_100f63d0 undefined FUN_100f63d0(void) 320 8 SysAllocString;SysFreeString +100f6520 FUN_100f6520 undefined FUN_100f6520(void) 314 8 SysAllocString;SysFreeString +100f6660 FUN_100f6660 undefined FUN_100f6660(void) 320 8 SysAllocString;SysFreeString +100f67b0 FUN_100f67b0 undefined FUN_100f67b0(void) 170 4 +100f6860 FUN_100f6860 undefined FUN_100f6860(void) 170 4 +100f6910 FUN_100f6910 undefined FUN_100f6910(void) 177 5 memcpy_s +100f69d0 FUN_100f69d0 undefined FUN_100f69d0(void) 162 4 +100f6a80 FUN_100f6a80 undefined FUN_100f6a80(void) 179 5 memcpy_s +100f6b60 FUN_100f6b60 undefined FUN_100f6b60(void) 13 1 +100f6b70 FUN_100f6b70 undefined FUN_100f6b70(void) 26 1 +100f6bc0 FUN_100f6bc0 undefined FUN_100f6bc0(void) 34 0 +100f6bf0 FUN_100f6bf0 undefined FUN_100f6bf0(void) 31 0 +100f6c10 FUN_100f6c10 undefined FUN_100f6c10(void) 72 0 +100f6c60 FUN_100f6c60 undefined FUN_100f6c60(void) 40 0 +100f6c90 FUN_100f6c90 undefined FUN_100f6c90(void) 127 0 +100f6d10 FUN_100f6d10 undefined FUN_100f6d10(void) 56 0 +100f6d50 FUN_100f6d50 undefined FUN_100f6d50(void) 17 0 +100f6d70 FUN_100f6d70 undefined FUN_100f6d70(void) 6 0 +100f6d80 FUN_100f6d80 undefined FUN_100f6d80(void) 14 0 +100f6d90 FUN_100f6d90 undefined FUN_100f6d90(void) 10 1 +100f6da0 FUN_100f6da0 undefined FUN_100f6da0(void) 31 0 +100f6dc0 FUN_100f6dc0 undefined FUN_100f6dc0(void) 74 0 +100f6e40 FUN_100f6e40 undefined FUN_100f6e40(void) 16 0 +100f6e50 FUN_100f6e50 undefined FUN_100f6e50(void) 119 1 memset +100f6ed0 FUN_100f6ed0 undefined FUN_100f6ed0(void) 26 0 +100f6ef0 FUN_100f6ef0 undefined FUN_100f6ef0(void) 39 1 +100f6f20 FUN_100f6f20 undefined FUN_100f6f20(void) 34 0 +100f6f80 FUN_100f6f80 undefined FUN_100f6f80(void) 34 0 +100f6fe0 FUN_100f6fe0 undefined FUN_100f6fe0(void) 34 0 +100f7040 FUN_100f7040 undefined FUN_100f7040(void) 16 0 +100f7050 FUN_100f7050 undefined FUN_100f7050(void) 5 0 +100f7060 FUN_100f7060 undefined FUN_100f7060(void) 267 2 +100f7190 FUN_100f7190 undefined FUN_100f7190(void) 69 1 SysFreeString +100f71e0 FUN_100f71e0 undefined FUN_100f71e0(void) 20 0 +100f7200 FUN_100f7200 undefined FUN_100f7200(void) 28 0 +100f7230 FUN_100f7230 undefined FUN_100f7230(void) 92 1 +100f7290 FUN_100f7290 undefined FUN_100f7290(void) 14 0 +100f72a0 FUN_100f72a0 undefined FUN_100f72a0(void) 93 1 +100f7300 FUN_100f7300 undefined FUN_100f7300(void) 43 1 +100f7330 FUN_100f7330 undefined FUN_100f7330(void) 423 0 +100f74e0 FUN_100f74e0 undefined FUN_100f74e0(void) 88 2 memcpy +100f7540 FUN_100f7540 undefined FUN_100f7540(void) 40 0 +100f7620 FUN_100f7620 undefined FUN_100f7620(void) 31 1 CoCreateInstance +100f7660 FUN_100f7660 undefined FUN_100f7660(void) 15 0 +100f7680 FUN_100f7680 undefined FUN_100f7680(void) 15 0 +100f76c0 FUN_100f76c0 undefined FUN_100f76c0(void) 15 0 +100f76d0 FUN_100f76d0 undefined FUN_100f76d0(void) 15 0 +100f76f0 FUN_100f76f0 undefined FUN_100f76f0(void) 31 1 CoCreateInstance +100f7710 FUN_100f7710 undefined FUN_100f7710(void) 30 0 +100f7750 FUN_100f7750 undefined FUN_100f7750(void) 8 0 +100f7760 FUN_100f7760 undefined FUN_100f7760(void) 19 0 +100f7790 FUN_100f7790 undefined FUN_100f7790(void) 23 1 +100f77b0 FUN_100f77b0 undefined FUN_100f77b0(void) 30 0 +100f7810 FUN_100f7810 undefined FUN_100f7810(void) 20 0 +100f7840 FUN_100f7840 undefined FUN_100f7840(void) 101 3 SysAllocString;SysFreeString +100f78b0 FUN_100f78b0 undefined FUN_100f78b0(void) 80 2 SysFreeString +100f7900 FUN_100f7900 undefined FUN_100f7900(void) 52 1 +100f7940 FUN_100f7940 undefined FUN_100f7940(void) 47 1 +100f7970 FUN_100f7970 undefined FUN_100f7970(void) 49 1 +100f79b0 FUN_100f79b0 undefined FUN_100f79b0(void) 47 1 +100f79e0 FUN_100f79e0 undefined FUN_100f79e0(void) 62 1 +100f7a30 FUN_100f7a30 undefined FUN_100f7a30(void) 17 0 +100f7a50 FUN_100f7a50 undefined FUN_100f7a50(void) 30 0 +100f7ac0 FUN_100f7ac0 undefined FUN_100f7ac0(void) 127 4 memcpy_s +100f7b40 FUN_100f7b40 undefined FUN_100f7b40(void) 73 0 +100f7bd0 FUN_100f7bd0 undefined FUN_100f7bd0(void) 11 0 +100f7be0 FUN_100f7be0 undefined FUN_100f7be0(void) 11 0 +100f7bf0 FUN_100f7bf0 undefined FUN_100f7bf0(void) 19 1 +100f7cb0 FUN_100f7cb0 undefined FUN_100f7cb0(void) 19 1 +100f7cd0 FUN_100f7cd0 undefined FUN_100f7cd0(void) 14 0 +100f7df0 FUN_100f7df0 undefined FUN_100f7df0(void) 19 1 +100f7e10 FUN_100f7e10 undefined FUN_100f7e10(void) 14 0 +100f7e30 FUN_100f7e30 undefined FUN_100f7e30(void) 21 0 +100f7e50 FUN_100f7e50 undefined FUN_100f7e50(void) 10 0 +100f7e80 FUN_100f7e80 undefined FUN_100f7e80(void) 14 0 +100f7e90 FUN_100f7e90 undefined FUN_100f7e90(void) 10 0 +100f7eb0 FUN_100f7eb0 undefined FUN_100f7eb0(void) 10 0 +100f7ed0 FUN_100f7ed0 undefined FUN_100f7ed0(void) 8 0 +100f7ef0 FUN_100f7ef0 undefined FUN_100f7ef0(void) 31 0 +100f7f10 FUN_100f7f10 undefined FUN_100f7f10(void) 31 0 +100f7f30 FUN_100f7f30 undefined FUN_100f7f30(void) 31 0 +100f7f50 FUN_100f7f50 undefined FUN_100f7f50(void) 31 0 +100f7f70 FUN_100f7f70 undefined FUN_100f7f70(void) 31 0 +100f7f90 FUN_100f7f90 undefined FUN_100f7f90(void) 31 0 +100f7fb0 FUN_100f7fb0 undefined FUN_100f7fb0(void) 8 0 +100f7fc0 FUN_100f7fc0 undefined FUN_100f7fc0(void) 8 0 +100f7fe0 FUN_100f7fe0 undefined FUN_100f7fe0(void) 8 0 +100f7ff0 FUN_100f7ff0 undefined FUN_100f7ff0(void) 8 0 +100f8000 FUN_100f8000 undefined FUN_100f8000(void) 8 0 +100f8010 FUN_100f8010 undefined FUN_100f8010(void) 8 0 +100f8030 FUN_100f8030 undefined FUN_100f8030(void) 8 0 +100f8040 FUN_100f8040 undefined FUN_100f8040(void) 8 0 +100f8050 FUN_100f8050 undefined FUN_100f8050(void) 8 0 +100f8060 FUN_100f8060 undefined FUN_100f8060(void) 8 0 +100f8080 FUN_100f8080 undefined FUN_100f8080(void) 8 0 +100f8090 FUN_100f8090 undefined FUN_100f8090(void) 8 0 +100f80b0 FUN_100f80b0 undefined FUN_100f80b0(void) 8 0 +100f80c0 FUN_100f80c0 undefined FUN_100f80c0(void) 8 0 +100f80d0 FUN_100f80d0 undefined FUN_100f80d0(void) 8 0 +100f80e0 FUN_100f80e0 undefined FUN_100f80e0(void) 8 0 +100f8110 FUN_100f8110 undefined FUN_100f8110(void) 146 3 +100f81b0 FUN_100f81b0 undefined FUN_100f81b0(void) 8 0 +100f81c0 FUN_100f81c0 undefined FUN_100f81c0(void) 8 0 +100f81d0 FUN_100f81d0 undefined FUN_100f81d0(void) 8 0 +100f81e0 FUN_100f81e0 undefined FUN_100f81e0(void) 140 3 +100f8280 FUN_100f8280 undefined FUN_100f8280(void) 144 3 +100f8320 FUN_100f8320 undefined FUN_100f8320(void) 8 0 +100f8350 FUN_100f8350 undefined FUN_100f8350(void) 146 3 +100f83f0 FUN_100f83f0 undefined FUN_100f83f0(void) 144 3 +100f8480 FUN_100f8480 undefined FUN_100f8480(void) 90 0 +100f84e0 FUN_100f84e0 undefined FUN_100f84e0(void) 84 0 +100f8560 FUN_100f8560 undefined FUN_100f8560(void) 14 0 +100f8570 FUN_100f8570 undefined FUN_100f8570(void) 15 0 +100f8590 FUN_100f8590 undefined FUN_100f8590(void) 84 0 +100f8600 FUN_100f8600 undefined FUN_100f8600(void) 84 0 +100f8690 FUN_100f8690 undefined FUN_100f8690(void) 84 0 +100f8700 FUN_100f8700 undefined FUN_100f8700(void) 84 0 +100f8760 FUN_100f8760 undefined FUN_100f8760(void) 10 0 +100f8770 FUN_100f8770 undefined FUN_100f8770(void) 10 0 +100f8780 FUN_100f8780 undefined FUN_100f8780(void) 8 0 +100f8790 FUN_100f8790 undefined FUN_100f8790(void) 8 0 +100f87a0 FUN_100f87a0 undefined FUN_100f87a0(void) 8 0 +100f87b0 FUN_100f87b0 undefined FUN_100f87b0(void) 8 0 +100f87c0 FUN_100f87c0 undefined FUN_100f87c0(void) 8 0 +100f87d0 FUN_100f87d0 undefined FUN_100f87d0(void) 8 0 +100f87e0 FUN_100f87e0 undefined FUN_100f87e0(void) 8 0 +100f87f0 FUN_100f87f0 undefined FUN_100f87f0(void) 8 0 +100f8800 FUN_100f8800 undefined FUN_100f8800(void) 8 0 +100f8810 FUN_100f8810 undefined FUN_100f8810(void) 8 0 +100f8820 FUN_100f8820 undefined FUN_100f8820(void) 8 0 +100f8830 FUN_100f8830 undefined FUN_100f8830(void) 8 0 +100f8840 FUN_100f8840 undefined FUN_100f8840(void) 8 0 +100f8850 FUN_100f8850 undefined FUN_100f8850(void) 8 0 +100f8860 FUN_100f8860 undefined FUN_100f8860(void) 8 0 +100f8870 FUN_100f8870 undefined FUN_100f8870(void) 8 0 +100f8880 FUN_100f8880 undefined FUN_100f8880(void) 8 0 +100f8890 FUN_100f8890 undefined FUN_100f8890(void) 83 0 +100f88f0 FUN_100f88f0 undefined FUN_100f88f0(void) 8 0 +100f8900 FUN_100f8900 undefined FUN_100f8900(void) 8 0 +100f8910 FUN_100f8910 undefined FUN_100f8910(void) 8 0 +100f8920 FUN_100f8920 undefined FUN_100f8920(void) 8 0 +100f8930 FUN_100f8930 undefined FUN_100f8930(void) 8 0 +100f8940 FUN_100f8940 undefined FUN_100f8940(void) 24 0 +100f8960 FUN_100f8960 undefined FUN_100f8960(void) 8 0 +100f8970 FUN_100f8970 undefined FUN_100f8970(void) 11 0 +100f8980 FUN_100f8980 undefined FUN_100f8980(void) 8 0 +100f8990 FUN_100f8990 undefined FUN_100f8990(void) 24 0 +100f89b0 FUN_100f89b0 undefined FUN_100f89b0(void) 11 0 +100f89d0 FUN_100f89d0 undefined FUN_100f89d0(void) 91 0 +100f8a40 FUN_100f8a40 undefined FUN_100f8a40(void) 8 0 +100f8a50 FUN_100f8a50 undefined FUN_100f8a50(void) 8 0 +100f8a60 FUN_100f8a60 undefined FUN_100f8a60(void) 8 0 +100f8a70 FUN_100f8a70 undefined FUN_100f8a70(void) 8 0 +100f8a80 FUN_100f8a80 undefined FUN_100f8a80(void) 8 0 +100f8a90 FUN_100f8a90 undefined FUN_100f8a90(void) 84 0 +100f8af0 FUN_100f8af0 undefined FUN_100f8af0(void) 8 0 +100f8b00 FUN_100f8b00 undefined FUN_100f8b00(void) 8 0 +100f8b10 FUN_100f8b10 undefined FUN_100f8b10(void) 8 0 +100f8b20 FUN_100f8b20 undefined FUN_100f8b20(void) 8 0 +100f8b30 FUN_100f8b30 undefined FUN_100f8b30(void) 8 0 +100f8b40 FUN_100f8b40 undefined FUN_100f8b40(void) 8 0 +100f8b50 FUN_100f8b50 undefined FUN_100f8b50(void) 8 0 +100f8b60 FUN_100f8b60 undefined FUN_100f8b60(void) 8 0 +100f8b80 FUN_100f8b80 undefined FUN_100f8b80(void) 30 0 +100f8ba0 FUN_100f8ba0 undefined FUN_100f8ba0(void) 45 0 +100f8bd0 FUN_100f8bd0 undefined FUN_100f8bd0(void) 8 0 +100f8be0 FUN_100f8be0 undefined FUN_100f8be0(void) 8 0 +100f8bf0 FUN_100f8bf0 undefined FUN_100f8bf0(void) 8 0 +100f8c30 FUN_100f8c30 undefined FUN_100f8c30(void) 42 1 memmove +100f8c60 FUN_100f8c60 undefined FUN_100f8c60(void) 24 0 +100f8c80 FUN_100f8c80 undefined FUN_100f8c80(void) 8 0 +100f8c90 FUN_100f8c90 undefined FUN_100f8c90(void) 24 0 +100f8cb0 FUN_100f8cb0 undefined FUN_100f8cb0(void) 8 0 +100f8cc0 FUN_100f8cc0 undefined FUN_100f8cc0(void) 24 0 +100f8ce0 FUN_100f8ce0 undefined FUN_100f8ce0(void) 8 0 +100f8cf0 FUN_100f8cf0 undefined FUN_100f8cf0(void) 24 0 +100f8d10 FUN_100f8d10 undefined FUN_100f8d10(void) 8 0 +100f8d20 FUN_100f8d20 undefined FUN_100f8d20(void) 24 0 +100f8d40 FUN_100f8d40 undefined FUN_100f8d40(void) 8 0 +100f8d50 FUN_100f8d50 undefined FUN_100f8d50(void) 24 0 +100f8d70 FUN_100f8d70 undefined FUN_100f8d70(void) 8 0 +100f8d80 FUN_100f8d80 undefined FUN_100f8d80(void) 24 0 +100f8db0 FUN_100f8db0 undefined FUN_100f8db0(void) 8 0 +100f8dc0 FUN_100f8dc0 undefined FUN_100f8dc0(void) 83 0 +100f8e20 FUN_100f8e20 undefined FUN_100f8e20(void) 8 0 +100f8e40 FUN_100f8e40 undefined FUN_100f8e40(void) 11 0 +100f8e50 FUN_100f8e50 undefined FUN_100f8e50(void) 8 0 +100f8e60 FUN_100f8e60 undefined FUN_100f8e60(void) 8 0 +100f8e70 FUN_100f8e70 undefined FUN_100f8e70(void) 24 0 +100f8e90 FUN_100f8e90 undefined FUN_100f8e90(void) 8 0 +100f8ea0 FUN_100f8ea0 undefined FUN_100f8ea0(void) 8 0 +100f8eb0 FUN_100f8eb0 undefined FUN_100f8eb0(void) 32 0 +100f8ed0 FUN_100f8ed0 undefined FUN_100f8ed0(void) 8 0 +100f8ee0 FUN_100f8ee0 undefined FUN_100f8ee0(void) 30 0 +100f8f00 FUN_100f8f00 undefined FUN_100f8f00(void) 45 0 +100f8f30 FUN_100f8f30 undefined FUN_100f8f30(void) 142 1 +100f8fd0 FUN_100f8fd0 undefined FUN_100f8fd0(void) 41 1 memmove +100f9000 FUN_100f9000 undefined FUN_100f9000(void) 69 1 SysFreeString +100f9050 FUN_100f9050 undefined FUN_100f9050(void) 31 0 +100f9070 FUN_100f9070 undefined FUN_100f9070(void) 21 0 +100f90a0 FUN_100f90a0 undefined FUN_100f90a0(void) 74 0 +100f90f0 FUN_100f90f0 undefined FUN_100f90f0(void) 74 0 +100f9140 FUN_100f9140 undefined FUN_100f9140(void) 74 0 +100f9190 FUN_100f9190 undefined FUN_100f9190(void) 90 0 +100f91f0 FUN_100f91f0 undefined FUN_100f91f0(void) 19 0 +100f9250 FUN_100f9250 undefined FUN_100f9250(void) 17 0 +100f9280 FUN_100f9280 undefined FUN_100f9280(void) 68 0 +100f92e0 FUN_100f92e0 undefined FUN_100f92e0(void) 10 1 +100f9320 FUN_100f9320 undefined FUN_100f9320(void) 11 0 +100f9350 FUN_100f9350 undefined FUN_100f9350(void) 14 0 +100f9380 FUN_100f9380 undefined FUN_100f9380(void) 19 0 +100f93a0 FUN_100f93a0 undefined FUN_100f93a0(void) 11 0 +100f93c0 FUN_100f93c0 undefined FUN_100f93c0(void) 11 0 +100f93e0 FUN_100f93e0 undefined FUN_100f93e0(void) 11 0 +100f93f0 FUN_100f93f0 undefined FUN_100f93f0(void) 11 0 +100f9400 FUN_100f9400 undefined FUN_100f9400(void) 35 1 +100f9430 FUN_100f9430 undefined FUN_100f9430(void) 11 0 +100f9460 FUN_100f9460 undefined FUN_100f9460(void) 11 0 +100f9480 FUN_100f9480 undefined FUN_100f9480(void) 68 0 +100f94d0 FUN_100f94d0 undefined FUN_100f94d0(void) 68 0 +100f9560 FUN_100f9560 undefined FUN_100f9560(void) 14 0 +100f9580 FUN_100f9580 undefined FUN_100f9580(void) 15 0 +100f95a0 FUN_100f95a0 undefined FUN_100f95a0(void) 45 0 +100f95d0 FUN_100f95d0 undefined FUN_100f95d0(void) 42 1 +100f9610 FUN_100f9610 undefined FUN_100f9610(void) 21 1 +100f9630 FUN_100f9630 undefined FUN_100f9630(void) 14 0 +100f9640 FUN_100f9640 undefined FUN_100f9640(void) 10 0 +100f9650 FUN_100f9650 undefined FUN_100f9650(void) 156 0 +100f9700 FUN_100f9700 undefined FUN_100f9700(void) 59 0 +100f9740 FUN_100f9740 undefined FUN_100f9740(void) 44 0 +100f9770 FUN_100f9770 undefined FUN_100f9770(void) 10 0 +100f9780 FUN_100f9780 undefined FUN_100f9780(void) 44 0 +100f97b0 FUN_100f97b0 undefined FUN_100f97b0(void) 10 0 +100f97c0 FUN_100f97c0 undefined FUN_100f97c0(void) 66 0 +100f9810 FUN_100f9810 undefined FUN_100f9810(void) 81 0 +100f9870 FUN_100f9870 undefined FUN_100f9870(void) 65 0 +100f98c0 FUN_100f98c0 undefined FUN_100f98c0(void) 65 0 +100f9920 FUN_100f9920 undefined FUN_100f9920(void) 45 0 +100f9960 FUN_100f9960 undefined FUN_100f9960(void) 11 0 +100f9970 FUN_100f9970 undefined FUN_100f9970(void) 21 1 +100f9990 FUN_100f9990 undefined FUN_100f9990(void) 21 1 +100f99b0 FUN_100f99b0 undefined FUN_100f99b0(void) 11 0 +100f99d0 FUN_100f99d0 undefined FUN_100f99d0(void) 21 1 +100f99f0 FUN_100f99f0 undefined FUN_100f99f0(void) 21 1 +100f9a10 FUN_100f9a10 undefined FUN_100f9a10(void) 88 0 +100f9a70 FUN_100f9a70 undefined FUN_100f9a70(void) 21 0 +100f9a90 FUN_100f9a90 undefined FUN_100f9a90(void) 81 0 +100f9af0 FUN_100f9af0 undefined FUN_100f9af0(void) 21 0 +100f9b10 FUN_100f9b10 undefined FUN_100f9b10(void) 21 0 +100f9b30 FUN_100f9b30 undefined FUN_100f9b30(void) 21 0 +100f9b50 FUN_100f9b50 undefined FUN_100f9b50(void) 24 0 +100f9b70 FUN_100f9b70 undefined FUN_100f9b70(void) 24 0 +100f9ba0 FUN_100f9ba0 undefined FUN_100f9ba0(void) 93 0 +100f9c10 FUN_100f9c10 undefined FUN_100f9c10(void) 86 0 +100f9c70 FUN_100f9c70 undefined FUN_100f9c70(void) 30 0 +100f9c90 FUN_100f9c90 undefined FUN_100f9c90(void) 12 1 +100f9ca0 FUN_100f9ca0 undefined FUN_100f9ca0(void) 17 0 +100f9ce0 FUN_100f9ce0 undefined FUN_100f9ce0(void) 12 1 +100f9d00 FUN_100f9d00 undefined FUN_100f9d00(void) 12 1 +100f9d20 FUN_100f9d20 undefined FUN_100f9d20(void) 24 0 +100f9d60 FUN_100f9d60 undefined FUN_100f9d60(void) 24 0 +100f9d80 FUN_100f9d80 undefined FUN_100f9d80(void) 24 0 +100f9da0 FUN_100f9da0 undefined FUN_100f9da0(void) 24 0 +100f9dc0 FUN_100f9dc0 undefined FUN_100f9dc0(void) 12 1 +100f9de0 FUN_100f9de0 undefined FUN_100f9de0(void) 24 0 +100f9e00 FUN_100f9e00 undefined FUN_100f9e00(void) 12 1 +100f9e10 FUN_100f9e10 undefined FUN_100f9e10(void) 24 0 +100f9e30 FUN_100f9e30 undefined FUN_100f9e30(void) 24 0 +100f9e50 FUN_100f9e50 undefined FUN_100f9e50(void) 82 2 +100f9eb0 FUN_100f9eb0 undefined FUN_100f9eb0(void) 84 0 +100f9f10 FUN_100f9f10 undefined FUN_100f9f10(void) 84 0 +100f9f70 FUN_100f9f70 undefined FUN_100f9f70(void) 30 0 +100f9f90 FUN_100f9f90 undefined FUN_100f9f90(void) 45 0 +100f9fc0 FUN_100f9fc0 undefined FUN_100f9fc0(void) 8 0 +100f9fd0 _Uninitialized_move<> undefined _Uninitialized_move<>(void) 45 0 +100fa020 FUN_100fa020 undefined FUN_100fa020(void) 42 1 memmove +100fa050 FUN_100fa050 undefined FUN_100fa050(void) 24 0 +100fa070 FUN_100fa070 undefined FUN_100fa070(void) 24 0 +100fa090 FUN_100fa090 undefined FUN_100fa090(void) 24 0 +100fa0b0 FUN_100fa0b0 undefined FUN_100fa0b0(void) 24 0 +100fa0d0 FUN_100fa0d0 undefined FUN_100fa0d0(void) 24 0 +100fa0f0 FUN_100fa0f0 undefined FUN_100fa0f0(void) 24 0 +100fa110 FUN_100fa110 undefined FUN_100fa110(void) 24 0 +100fa140 FUN_100fa140 undefined FUN_100fa140(void) 21 0 +100fa160 FUN_100fa160 undefined FUN_100fa160(void) 142 3 +100fa1f0 FUN_100fa1f0 undefined FUN_100fa1f0(void) 142 3 +100fa280 FUN_100fa280 undefined FUN_100fa280(void) 142 3 +100fa310 FUN_100fa310 undefined FUN_100fa310(void) 81 0 +100fa380 FUN_100fa380 undefined FUN_100fa380(void) 24 0 +100fa3a0 FUN_100fa3a0 undefined FUN_100fa3a0(void) 30 0 +100fa3c0 FUN_100fa3c0 undefined FUN_100fa3c0(void) 28 0 +100fa3e0 FUN_100fa3e0 undefined FUN_100fa3e0(void) 45 0 +100fa410 FUN_100fa410 undefined FUN_100fa410(void) 21 0 +100fa430 FUN_100fa430 undefined FUN_100fa430(void) 167 2 +100fa4e0 FUN_100fa4e0 undefined FUN_100fa4e0(void) 41 1 memmove +100fa510 FUN_100fa510 undefined FUN_100fa510(void) 43 1 +100fa550 FUN_100fa550 undefined FUN_100fa550(void) 74 0 +100fa5a0 FUN_100fa5a0 undefined FUN_100fa5a0(void) 74 0 +100fa620 FUN_100fa620 undefined FUN_100fa620(void) 18 0 +100fa650 FUN_100fa650 undefined FUN_100fa650(void) 12 1 +100fa660 FUN_100fa660 undefined FUN_100fa660(void) 23 1 +100fa690 FUN_100fa690 undefined FUN_100fa690(void) 14 0 +100fa6a0 FUN_100fa6a0 undefined FUN_100fa6a0(void) 15 0 +100fa6c0 FUN_100fa6c0 undefined FUN_100fa6c0(void) 19 0 +100fa6e0 FUN_100fa6e0 undefined FUN_100fa6e0(void) 19 0 +100fa710 FUN_100fa710 undefined FUN_100fa710(void) 12 1 +100fa760 FUN_100fa760 undefined FUN_100fa760(void) 101 0 +100fa7d0 FUN_100fa7d0 undefined FUN_100fa7d0(void) 101 0 +100fa880 FUN_100fa880 undefined FUN_100fa880(void) 14 0 +100fa890 FUN_100fa890 undefined FUN_100fa890(void) 15 0 +100fa8b0 FUN_100fa8b0 undefined FUN_100fa8b0(void) 145 3 +100fa950 FUN_100fa950 undefined FUN_100fa950(void) 14 0 +100fa960 FUN_100fa960 undefined FUN_100fa960(void) 12 1 +100fa970 FUN_100fa970 undefined FUN_100fa970(void) 12 1 +100fa980 FUN_100fa980 undefined FUN_100fa980(void) 12 1 +100fa990 FUN_100fa990 undefined FUN_100fa990(void) 12 1 +100fa9a0 FUN_100fa9a0 undefined FUN_100fa9a0(void) 44 0 +100fa9d0 FUN_100fa9d0 undefined FUN_100fa9d0(void) 129 0 +100faa60 FUN_100faa60 undefined FUN_100faa60(void) 65 0 +100faab0 FUN_100faab0 undefined FUN_100faab0(void) 129 0 +100fab40 FUN_100fab40 undefined FUN_100fab40(void) 44 0 +100fab70 FUN_100fab70 undefined FUN_100fab70(void) 81 0 +100fabd0 FUN_100fabd0 undefined FUN_100fabd0(void) 167 3 +100fac90 FUN_100fac90 undefined FUN_100fac90(void) 29 0 +100facb0 FUN_100facb0 undefined FUN_100facb0(void) 44 0 +100face0 FUN_100face0 undefined FUN_100face0(void) 84 0 +100fad40 _Uninitialized_move<> undefined _Uninitialized_move<>(void) 45 0 +100fada0 FUN_100fada0 undefined FUN_100fada0(void) 91 0 +100fae00 FUN_100fae00 undefined FUN_100fae00(void) 44 1 memmove +100fae30 FUN_100fae30 undefined FUN_100fae30(void) 30 0 +100fae50 FUN_100fae50 undefined FUN_100fae50(void) 17 0 +100fae70 FUN_100fae70 undefined FUN_100fae70(void) 546 2 +100fb0a0 FUN_100fb0a0 undefined FUN_100fb0a0(void) 12 1 +100fb0b0 FUN_100fb0b0 undefined FUN_100fb0b0(void) 12 1 +100fb0c0 FUN_100fb0c0 undefined FUN_100fb0c0(void) 24 0 +100fb0e0 FUN_100fb0e0 undefined FUN_100fb0e0(void) 24 0 +100fb100 FUN_100fb100 undefined FUN_100fb100(void) 24 0 +100fb120 FUN_100fb120 undefined FUN_100fb120(void) 24 0 +100fb140 FUN_100fb140 undefined FUN_100fb140(void) 12 1 +100fb150 FUN_100fb150 undefined FUN_100fb150(void) 546 2 +100fb380 FUN_100fb380 undefined FUN_100fb380(void) 24 0 +100fb3a0 FUN_100fb3a0 undefined FUN_100fb3a0(void) 12 1 +100fb3b0 FUN_100fb3b0 undefined FUN_100fb3b0(void) 24 0 +100fb3d0 FUN_100fb3d0 undefined FUN_100fb3d0(void) 24 0 +100fb3f0 FUN_100fb3f0 undefined FUN_100fb3f0(void) 12 1 +100fb400 FUN_100fb400 undefined FUN_100fb400(void) 12 1 +100fb410 FUN_100fb410 undefined FUN_100fb410(void) 190 4 +100fb49f Catch@100fb49f undefined Catch@100fb49f(void) 21 2 +100fb4f0 FUN_100fb4f0 undefined FUN_100fb4f0(void) 101 0 +100fb560 FUN_100fb560 undefined FUN_100fb560(void) 101 0 +100fb5e0 FUN_100fb5e0 undefined FUN_100fb5e0(void) 142 3 +100fb670 FUN_100fb670 undefined FUN_100fb670(void) 142 3 +100fb700 FUN_100fb700 undefined FUN_100fb700(void) 142 3 +100fb790 FUN_100fb790 undefined FUN_100fb790(void) 142 3 +100fb820 FUN_100fb820 undefined FUN_100fb820(void) 97 0 +100fb890 FUN_100fb890 undefined FUN_100fb890(void) 95 0 +100fb8f0 FUN_100fb8f0 undefined FUN_100fb8f0(void) 112 0 +100fb960 FUN_100fb960 undefined FUN_100fb960(void) 21 0 +100fb980 FUN_100fb980 undefined FUN_100fb980(void) 231 2 +100fba70 FUN_100fba70 undefined FUN_100fba70(void) 280 2 memmove +100fbb90 FUN_100fbb90 undefined FUN_100fbb90(void) 124 1 +100fbc0c Catch@100fbc0c undefined Catch@100fbc0c(void) 9 1 +100fbc20 FUN_100fbc20 undefined FUN_100fbc20(void) 244 1 +100fbd20 FUN_100fbd20 undefined FUN_100fbd20(void) 50 1 +100fbd60 FUN_100fbd60 undefined FUN_100fbd60(void) 106 3 +100fbdd0 FUN_100fbdd0 undefined FUN_100fbdd0(void) 117 3 SysAllocStringByteLen +100fbe50 FUN_100fbe50 undefined FUN_100fbe50(void) 259 3 +100fbf60 FUN_100fbf60 undefined FUN_100fbf60(void) 153 3 +100fc000 FUN_100fc000 undefined FUN_100fc000(void) 16 0 +100fc010 FUN_100fc010 undefined FUN_100fc010(void) 14 0 +100fc020 FUN_100fc020 undefined FUN_100fc020(void) 23 1 +100fc040 FUN_100fc040 undefined FUN_100fc040(void) 23 1 +100fc060 FUN_100fc060 undefined FUN_100fc060(void) 23 1 +100fc080 FUN_100fc080 undefined FUN_100fc080(void) 23 1 +100fc0a0 FUN_100fc0a0 undefined FUN_100fc0a0(void) 23 1 +100fc0c0 FUN_100fc0c0 undefined FUN_100fc0c0(void) 49 0 +100fc100 FUN_100fc100 undefined FUN_100fc100(void) 24 1 +100fc120 FUN_100fc120 undefined FUN_100fc120(void) 23 1 +100fc140 FUN_100fc140 undefined FUN_100fc140(void) 49 0 +100fc180 FUN_100fc180 undefined FUN_100fc180(void) 23 1 +100fc1a0 FUN_100fc1a0 undefined FUN_100fc1a0(void) 24 1 +100fc1c0 FUN_100fc1c0 undefined FUN_100fc1c0(void) 49 0 +100fc200 FUN_100fc200 undefined FUN_100fc200(void) 23 1 +100fc220 FUN_100fc220 undefined FUN_100fc220(void) 49 0 +100fc260 FUN_100fc260 undefined FUN_100fc260(void) 23 1 +100fc280 FUN_100fc280 undefined FUN_100fc280(void) 23 1 +100fc2a0 FUN_100fc2a0 undefined FUN_100fc2a0(void) 23 1 +100fc2c0 FUN_100fc2c0 undefined FUN_100fc2c0(void) 12 1 +100fc2d0 FUN_100fc2d0 undefined FUN_100fc2d0(void) 177 3 +100fc390 FUN_100fc390 undefined FUN_100fc390(void) 23 1 +100fc3b0 FUN_100fc3b0 undefined FUN_100fc3b0(void) 12 1 +100fc3c0 FUN_100fc3c0 undefined FUN_100fc3c0(void) 47 2 +100fc3f0 FUN_100fc3f0 undefined FUN_100fc3f0(void) 122 3 memcpy_s +100fc470 FUN_100fc470 undefined FUN_100fc470(void) 52 1 +100fc4b0 FUN_100fc4b0 undefined FUN_100fc4b0(void) 186 4 +100fc533 Catch@100fc533 undefined Catch@100fc533(void) 21 2 +100fc580 FUN_100fc580 undefined FUN_100fc580(void) 191 5 +100fc63f Catch@100fc63f undefined Catch@100fc63f(void) 21 2 +100fc660 FUN_100fc660 undefined FUN_100fc660(void) 29 0 +100fc680 FUN_100fc680 undefined FUN_100fc680(void) 32 1 +100fc6a0 FUN_100fc6a0 undefined FUN_100fc6a0(void) 32 1 +100fc6c0 FUN_100fc6c0 undefined FUN_100fc6c0(void) 209 3 +100fc7a0 FUN_100fc7a0 undefined FUN_100fc7a0(void) 268 3 +100fc8b0 FUN_100fc8b0 undefined FUN_100fc8b0(void) 546 2 +100fcae0 FUN_100fcae0 undefined FUN_100fcae0(void) 12 1 +100fcaf0 FUN_100fcaf0 undefined FUN_100fcaf0(void) 546 2 +100fcd20 FUN_100fcd20 undefined FUN_100fcd20(void) 12 1 +100fcd30 FUN_100fcd30 undefined FUN_100fcd30(void) 95 0 +100fcd90 FUN_100fcd90 undefined FUN_100fcd90(void) 93 0 +100fcdf0 FUN_100fcdf0 undefined FUN_100fcdf0(void) 110 0 +100fce60 FUN_100fce60 undefined FUN_100fce60(void) 41 1 +100fce90 FUN_100fce90 undefined FUN_100fce90(void) 27 1 +100fceb0 FUN_100fceb0 undefined FUN_100fceb0(void) 121 1 +100fcf29 Catch@100fcf29 undefined Catch@100fcf29(void) 9 1 +100fcf40 FUN_100fcf40 undefined FUN_100fcf40(void) 36 1 +100fcf70 FUN_100fcf70 undefined FUN_100fcf70(void) 167 1 +100fd020 FUN_100fd020 undefined FUN_100fd020(void) 50 1 +100fd060 FUN_100fd060 undefined FUN_100fd060(void) 150 7 SysAllocStringByteLen +100fd100 FUN_100fd100 undefined FUN_100fd100(void) 26 1 +100fd120 FUN_100fd120 undefined FUN_100fd120(void) 116 2 +100fd1a0 FUN_100fd1a0 undefined FUN_100fd1a0(void) 89 1 +100fd200 FUN_100fd200 undefined FUN_100fd200(void) 477 8 SysFreeString +100fd36f Catch@100fd36f undefined Catch@100fd36f(void) 13 0 +100fd400 FUN_100fd400 undefined FUN_100fd400(void) 493 8 SysFreeString +100fd57e Catch@100fd57e undefined Catch@100fd57e(void) 13 0 +100fd610 FUN_100fd610 undefined FUN_100fd610(void) 98 0 +100fd680 FUN_100fd680 undefined FUN_100fd680(void) 83 2 +100fd6e0 FUN_100fd6e0 undefined FUN_100fd6e0(void) 98 0 +100fd750 FUN_100fd750 undefined FUN_100fd750(void) 83 1 +100fd7b0 FUN_100fd7b0 undefined FUN_100fd7b0(void) 98 0 +100fd820 FUN_100fd820 undefined FUN_100fd820(void) 91 1 +100fd880 FUN_100fd880 undefined FUN_100fd880(void) 98 0 +100fd8f0 FUN_100fd8f0 undefined FUN_100fd8f0(void) 104 1 +100fd960 FUN_100fd960 undefined FUN_100fd960(void) 83 1 +100fd9c0 FUN_100fd9c0 undefined FUN_100fd9c0(void) 104 1 +100fda30 FUN_100fda30 undefined FUN_100fda30(void) 23 1 +100fda50 FUN_100fda50 undefined FUN_100fda50(void) 83 1 +100fdab0 FUN_100fdab0 undefined FUN_100fdab0(void) 23 1 +100fdad0 FUN_100fdad0 undefined FUN_100fdad0(void) 47 2 +100fdb00 FUN_100fdb00 undefined FUN_100fdb00(void) 72 2 +100fdb50 FUN_100fdb50 undefined FUN_100fdb50(void) 52 1 +100fdb90 FUN_100fdb90 undefined FUN_100fdb90(void) 174 5 +100fdc40 FUN_100fdc40 undefined FUN_100fdc40(void) 93 2 +100fdca0 FUN_100fdca0 undefined FUN_100fdca0(void) 38 2 +100fdcd0 FUN_100fdcd0 undefined FUN_100fdcd0(void) 268 3 +100fdde0 FUN_100fdde0 undefined FUN_100fdde0(void) 377 3 +100fdf60 FUN_100fdf60 undefined FUN_100fdf60(void) 58 2 +100fdfa0 FUN_100fdfa0 undefined FUN_100fdfa0(void) 190 4 +100fe02f Catch@100fe02f undefined Catch@100fe02f(void) 21 2 +100fe080 FUN_100fe080 undefined FUN_100fe080(void) 190 4 +100fe10f Catch@100fe10f undefined Catch@100fe10f(void) 21 2 +100fe160 FUN_100fe160 undefined FUN_100fe160(void) 190 4 +100fe1ef Catch@100fe1ef undefined Catch@100fe1ef(void) 21 2 +100fe240 FUN_100fe240 undefined FUN_100fe240(void) 38 1 +100fe270 FUN_100fe270 undefined FUN_100fe270(void) 35 1 +100fe2a0 FUN_100fe2a0 undefined FUN_100fe2a0(void) 878 2 +100fe610 FUN_100fe610 undefined FUN_100fe610(void) 80 1 +100fe660 FUN_100fe660 undefined FUN_100fe660(void) 124 1 +100fe6e0 FUN_100fe6e0 undefined FUN_100fe6e0(void) 36 1 +100fe710 FUN_100fe710 undefined FUN_100fe710(void) 36 1 +100fe740 FUN_100fe740 undefined FUN_100fe740(void) 34 0 +100fe770 FUN_100fe770 undefined FUN_100fe770(void) 160 3 +100fe810 Catch@100fe810 undefined Catch@100fe810(void) 23 0 +100fe839 FUN_100fe839 undefined FUN_100fe839(void) 789 8 +100feb50 FUN_100feb50 undefined FUN_100feb50(void) 413 10 SysFreeString +100fecf0 FUN_100fecf0 undefined FUN_100fecf0(void) 117 1 +100fed70 FUN_100fed70 undefined FUN_100fed70(void) 69 2 +100fedc0 FUN_100fedc0 undefined FUN_100fedc0(void) 173 1 +100fee70 FUN_100fee70 undefined FUN_100fee70(void) 38 2 +100feea0 FUN_100feea0 undefined FUN_100feea0(void) 38 2 +100feed0 FUN_100feed0 undefined FUN_100feed0(void) 38 2 +100fef00 FUN_100fef00 undefined FUN_100fef00(void) 37 1 +100fef30 FUN_100fef30 undefined FUN_100fef30(void) 222 5 +100ff010 FUN_100ff010 undefined FUN_100ff010(void) 25 1 +100ff030 FUN_100ff030 undefined FUN_100ff030(void) 155 1 +100ff0d0 FUN_100ff0d0 undefined FUN_100ff0d0(void) 112 1 +100ff140 FUN_100ff140 undefined FUN_100ff140(void) 51 1 +100ff180 FUN_100ff180 undefined FUN_100ff180(void) 51 1 +100ff1c0 FUN_100ff1c0 undefined FUN_100ff1c0(void) 57 1 +100ff200 FUN_100ff200 undefined FUN_100ff200(void) 104 2 +100ff270 FUN_100ff270 undefined FUN_100ff270(void) 428 7 +100ff420 FUN_100ff420 undefined FUN_100ff420(void) 107 1 +100ff490 FUN_100ff490 undefined FUN_100ff490(void) 107 1 +100ff500 FUN_100ff500 undefined FUN_100ff500(void) 87 2 +100ff560 FUN_100ff560 undefined FUN_100ff560(void) 87 2 +100ff5c0 FUN_100ff5c0 undefined FUN_100ff5c0(void) 112 1 +100ff630 FUN_100ff630 undefined FUN_100ff630(void) 54 1 +100ff670 FUN_100ff670 undefined FUN_100ff670(void) 118 1 +100ff6f0 FUN_100ff6f0 undefined FUN_100ff6f0(void) 262 5 memset +100ff800 FUN_100ff800 undefined FUN_100ff800(void) 82 3 +100ff860 FUN_100ff860 undefined FUN_100ff860(void) 82 3 +100ff8c0 FUN_100ff8c0 undefined FUN_100ff8c0(void) 78 0 +100ff910 FUN_100ff910 undefined FUN_100ff910(void) 189 5 +100ff9cd Catch@100ff9cd undefined Catch@100ff9cd(void) 21 2 +100ff9f0 FUN_100ff9f0 undefined FUN_100ff9f0(void) 179 3 +100ffaa3 Catch@100ffaa3 undefined Catch@100ffaa3(void) 17 2 +100ffac0 FUN_100ffac0 undefined FUN_100ffac0(void) 230 5 +100ffbb0 FUN_100ffbb0 undefined FUN_100ffbb0(void) 212 2 +100ffc90 FUN_100ffc90 undefined FUN_100ffc90(void) 716 21 SysFreeString +100fff60 FUN_100fff60 undefined FUN_100fff60(void) 66 0 +100fffb0 FUN_100fffb0 undefined FUN_100fffb0(void) 93 2 +10100010 FUN_10100010 undefined FUN_10100010(void) 33 1 +10100040 FUN_10100040 undefined FUN_10100040(void) 77 1 +10100090 FUN_10100090 undefined FUN_10100090(void) 77 1 +101000e0 FUN_101000e0 undefined FUN_101000e0(void) 72 0 +10100130 FUN_10100130 undefined FUN_10100130(void) 99 0 +101001a0 FUN_101001a0 undefined FUN_101001a0(void) 114 2 +10100220 FUN_10100220 undefined FUN_10100220(void) 167 1 +101002d0 FUN_101002d0 undefined FUN_101002d0(void) 175 3 +10100380 FUN_10100380 undefined FUN_10100380(void) 220 5 SysAllocStringLen;SysFreeString +10100460 FUN_10100460 undefined FUN_10100460(void) 86 3 +101004c0 FUN_101004c0 undefined FUN_101004c0(void) 43 1 +101004f0 FUN_101004f0 undefined FUN_101004f0(void) 43 1 +10100520 FUN_10100520 undefined FUN_10100520(void) 43 1 +10100550 FUN_10100550 undefined FUN_10100550(void) 43 1 +10100580 FUN_10100580 undefined FUN_10100580(void) 52 1 +101005c0 FUN_101005c0 undefined FUN_101005c0(void) 52 1 +10100600 FUN_10100600 undefined FUN_10100600(void) 51 1 +10100640 FUN_10100640 undefined FUN_10100640(void) 52 1 +10100680 FUN_10100680 undefined FUN_10100680(void) 43 1 +101006b0 FUN_101006b0 undefined FUN_101006b0(void) 43 1 +101006e0 FUN_101006e0 undefined FUN_101006e0(void) 43 1 +10100710 FUN_10100710 undefined FUN_10100710(void) 43 1 +10100740 FUN_10100740 undefined FUN_10100740(void) 43 1 +10100770 FUN_10100770 undefined FUN_10100770(void) 102 1 +101007e0 FUN_101007e0 undefined FUN_101007e0(void) 199 4 memcpy_s +101008b0 FUN_101008b0 undefined FUN_101008b0(void) 43 1 +101008e0 FUN_101008e0 undefined FUN_101008e0(void) 43 1 +10100910 FUN_10100910 undefined FUN_10100910(void) 43 1 +10100940 FUN_10100940 undefined FUN_10100940(void) 85 1 +101009a0 FUN_101009a0 undefined FUN_101009a0(void) 86 1 +10100a00 FUN_10100a00 undefined FUN_10100a00(void) 102 1 +10100a70 FUN_10100a70 undefined FUN_10100a70(void) 85 1 +10100ad0 FUN_10100ad0 undefined FUN_10100ad0(void) 115 1 +10100b50 FUN_10100b50 undefined FUN_10100b50(void) 102 1 +10100bc0 FUN_10100bc0 undefined FUN_10100bc0(void) 140 1 +10100c50 FUN_10100c50 undefined FUN_10100c50(void) 140 1 +10100ce0 FUN_10100ce0 undefined FUN_10100ce0(void) 90 1 +10100d40 FUN_10100d40 undefined FUN_10100d40(void) 96 1 +10100da0 FUN_10100da0 undefined FUN_10100da0(void) 125 3 SysFreeString +10100e20 FUN_10100e20 undefined FUN_10100e20(void) 52 1 +10100e60 FUN_10100e60 undefined FUN_10100e60(void) 73 1 +10100eb0 FUN_10100eb0 undefined FUN_10100eb0(void) 71 1 +10100f00 FUN_10100f00 undefined FUN_10100f00(void) 100 1 +10100f70 FUN_10100f70 undefined FUN_10100f70(void) 63 1 +10100fb0 FUN_10100fb0 undefined FUN_10100fb0(void) 44 1 +10100fe0 FUN_10100fe0 undefined FUN_10100fe0(void) 45 1 +10101010 FUN_10101010 undefined FUN_10101010(void) 40 1 +10101040 FUN_10101040 undefined FUN_10101040(void) 150 2 +101010e0 FUN_101010e0 undefined FUN_101010e0(void) 93 2 CoCreateInstance +10101140 FUN_10101140 undefined FUN_10101140(void) 65 2 +10101190 FUN_10101190 undefined FUN_10101190(void) 234 6 +10101280 FUN_10101280 undefined FUN_10101280(void) 212 2 +10101360 FUN_10101360 undefined FUN_10101360(void) 1047 7 SysFreeString +10101780 FUN_10101780 undefined FUN_10101780(void) 153 3 +10101820 FUN_10101820 undefined FUN_10101820(void) 114 2 +101018a0 FUN_101018a0 undefined FUN_101018a0(void) 4765 33 CoCreateInstance;SysAllocString;SysFreeString;memcpy +10102bc0 FUN_10102bc0 undefined FUN_10102bc0(void) 73 1 +10102c10 FUN_10102c10 undefined FUN_10102c10(void) 88 3 +10102c70 FUN_10102c70 undefined FUN_10102c70(void) 99 2 SysAllocStringByteLen +10102ce0 FUN_10102ce0 undefined FUN_10102ce0(void) 61 2 SysFreeString +10102d20 FUN_10102d20 undefined FUN_10102d20(void) 51 1 +10102d60 FUN_10102d60 undefined FUN_10102d60(void) 53 1 +10102da0 FUN_10102da0 undefined FUN_10102da0(void) 53 1 +10102de0 FUN_10102de0 undefined FUN_10102de0(void) 176 2 +10102e90 FUN_10102e90 undefined FUN_10102e90(void) 176 2 +10102f40 FUN_10102f40 undefined FUN_10102f40(void) 176 2 +10102ff0 FUN_10102ff0 undefined FUN_10102ff0(void) 176 2 +101030a0 FUN_101030a0 undefined FUN_101030a0(void) 176 2 +10103150 FUN_10103150 undefined FUN_10103150(void) 176 2 +10103200 FUN_10103200 undefined FUN_10103200(void) 154 3 +101032a0 FUN_101032a0 undefined FUN_101032a0(void) 83 1 +10103300 FUN_10103300 undefined FUN_10103300(void) 88 1 +10103360 FUN_10103360 undefined FUN_10103360(void) 102 1 +101033d0 FUN_101033d0 undefined FUN_101033d0(void) 105 1 +10103440 FUN_10103440 undefined FUN_10103440(void) 115 1 +101034c0 FUN_101034c0 undefined FUN_101034c0(void) 105 1 +10103530 FUN_10103530 undefined FUN_10103530(void) 83 1 +10103590 FUN_10103590 undefined FUN_10103590(void) 115 1 +10103610 FUN_10103610 undefined FUN_10103610(void) 157 3 +101036b0 FUN_101036b0 undefined FUN_101036b0(void) 102 1 +10103720 FUN_10103720 undefined FUN_10103720(void) 105 1 +10103790 FUN_10103790 undefined FUN_10103790(void) 25 1 +101037b0 FUN_101037b0 undefined FUN_101037b0(void) 661 9 SysFreeString +10103a70 FUN_10103a70 undefined FUN_10103a70(void) 222 3 CoCreateInstance +10103b50 FUN_10103b50 undefined FUN_10103b50(void) 65 1 +10103ba0 FUN_10103ba0 undefined FUN_10103ba0(void) 2461 20 SysFreeString +10104467 Catch@10104467 undefined Catch@10104467(void) 84 1 +10104600 FUN_10104600 undefined FUN_10104600(void) 103 1 +10104670 FUN_10104670 undefined FUN_10104670(void) 262 1 +10104780 FUN_10104780 undefined FUN_10104780(void) 115 1 +10104800 FUN_10104800 undefined FUN_10104800(void) 112 1 +10104870 FUN_10104870 undefined FUN_10104870(void) 86 1 +101048d0 FUN_101048d0 undefined FUN_101048d0(void) 105 1 +10104940 FUN_10104940 undefined FUN_10104940(void) 105 1 +101049b0 FUN_101049b0 undefined FUN_101049b0(void) 127 1 +10104a30 FUN_10104a30 undefined FUN_10104a30(void) 114 1 +10104ab0 FUN_10104ab0 undefined FUN_10104ab0(void) 134 3 +10104b40 FUN_10104b40 undefined FUN_10104b40(void) 105 1 +10104bb0 FUN_10104bb0 undefined FUN_10104bb0(void) 301 4 +10104cf0 FUN_10104cf0 undefined FUN_10104cf0(void) 166 1 +10104da0 FUN_10104da0 undefined FUN_10104da0(void) 233 2 +10104e90 FUN_10104e90 undefined FUN_10104e90(void) 747 4 SysFreeString +10105180 FUN_10105180 undefined FUN_10105180(void) 115 1 +10105200 FUN_10105200 undefined FUN_10105200(void) 117 1 +10105280 FUN_10105280 undefined FUN_10105280(void) 125 1 +10105300 FUN_10105300 undefined FUN_10105300(void) 114 1 +10105380 FUN_10105380 undefined FUN_10105380(void) 136 3 +10105410 FUN_10105410 undefined FUN_10105410(void) 117 1 +10105490 FUN_10105490 undefined FUN_10105490(void) 648 3 +10105720 FUN_10105720 undefined FUN_10105720(void) 190 4 +101057af Catch@101057af undefined Catch@101057af(void) 21 2 +10105800 FUN_10105800 undefined FUN_10105800(void) 190 4 +1010588f Catch@1010588f undefined Catch@1010588f(void) 21 2 +101058e0 FUN_101058e0 undefined FUN_101058e0(void) 115 1 +10105960 FUN_10105960 undefined FUN_10105960(void) 134 3 +101059f0 FUN_101059f0 undefined FUN_101059f0(void) 556 22 +10105c1c Catch@10105c1c undefined Catch@10105c1c(void) 94 4 +10105c91 Catch@10105c91 undefined Catch@10105c91(void) 22 0 +10105ca9 Catch@10105ca9 undefined Catch@10105ca9(void) 115 6 +10105d21 Catch@10105d21 undefined Catch@10105d21(void) 73 3 +10105d70 FUN_10105d70 undefined FUN_10105d70(void) 148 3 +10105e04 Catch@10105e04 undefined Catch@10105e04(void) 94 4 +10105e79 Catch@10105e79 undefined Catch@10105e79(void) 22 0 +10105e91 Catch@10105e91 undefined Catch@10105e91(void) 115 6 +10105f09 Catch@10105f09 undefined Catch@10105f09(void) 73 3 +10105f60 FUN_10105f60 undefined FUN_10105f60(void) 280 7 +10106078 Catch@10106078 undefined Catch@10106078(void) 94 4 +101060ed Catch@101060ed undefined Catch@101060ed(void) 22 0 +10106105 Catch@10106105 undefined Catch@10106105(void) 115 6 +1010617d Catch@1010617d undefined Catch@1010617d(void) 73 3 +101061d0 FUN_101061d0 undefined FUN_101061d0(void) 140 3 +1010625c Catch@1010625c undefined Catch@1010625c(void) 94 4 +101062d1 Catch@101062d1 undefined Catch@101062d1(void) 22 0 +101062e9 Catch@101062e9 undefined Catch@101062e9(void) 115 6 +10106361 Catch@10106361 undefined Catch@10106361(void) 73 3 +101063b0 FUN_101063b0 undefined FUN_101063b0(void) 140 3 +1010643c Catch@1010643c undefined Catch@1010643c(void) 94 4 +101064b1 Catch@101064b1 undefined Catch@101064b1(void) 22 0 +101064c9 Catch@101064c9 undefined Catch@101064c9(void) 115 6 +10106541 Catch@10106541 undefined Catch@10106541(void) 73 3 +10106590 FUN_10106590 undefined FUN_10106590(void) 136 3 +10106618 Catch@10106618 undefined Catch@10106618(void) 94 4 +1010668d Catch@1010668d undefined Catch@1010668d(void) 22 0 +101066a5 Catch@101066a5 undefined Catch@101066a5(void) 115 6 +1010671d Catch@1010671d undefined Catch@1010671d(void) 73 3 +10106770 FUN_10106770 undefined FUN_10106770(void) 131 3 +101067f3 Catch@101067f3 undefined Catch@101067f3(void) 94 4 +10106868 Catch@10106868 undefined Catch@10106868(void) 22 0 +10106880 Catch@10106880 undefined Catch@10106880(void) 115 6 +101068f8 Catch@101068f8 undefined Catch@101068f8(void) 73 3 +10106950 FUN_10106950 undefined FUN_10106950(void) 127 3 +101069cf Catch@101069cf undefined Catch@101069cf(void) 94 4 +10106a44 Catch@10106a44 undefined Catch@10106a44(void) 22 0 +10106a5c Catch@10106a5c undefined Catch@10106a5c(void) 115 6 +10106ad4 Catch@10106ad4 undefined Catch@10106ad4(void) 73 3 +10106b20 FUN_10106b20 undefined FUN_10106b20(void) 226 4 +10106c10 FUN_10106c10 undefined FUN_10106c10(void) 642 3 +10106ea0 FUN_10106ea0 undefined FUN_10106ea0(void) 190 4 +10106f2f Catch@10106f2f undefined Catch@10106f2f(void) 21 2 +10106f80 FUN_10106f80 undefined FUN_10106f80(void) 150 3 +10107020 FUN_10107020 undefined FUN_10107020(void) 121 1 +10107099 Catch@10107099 undefined Catch@10107099(void) 39 2 +101070d0 FUN_101070d0 undefined FUN_101070d0(void) 38 2 +10107100 FUN_10107100 undefined FUN_10107100(void) 32 1 +10107120 FUN_10107120 undefined FUN_10107120(void) 378 4 +101072a0 FUN_101072a0 undefined FUN_101072a0(void) 610 3 +10107510 FUN_10107510 undefined FUN_10107510(void) 38 1 +10107540 FUN_10107540 undefined FUN_10107540(void) 220 3 +1010761c Catch@1010761c undefined Catch@1010761c(void) 13 0 +10107632 FUN_10107632 undefined FUN_10107632(void) 240 5 +10107730 FUN_10107730 undefined FUN_10107730(void) 150 1 +101077d0 FUN_101077d0 undefined FUN_101077d0(void) 166 3 +10107880 FUN_10107880 undefined FUN_10107880(void) 8094 59 CoCreateInstance;SysAllocString;SysFreeString +10109840 FUN_10109840 undefined FUN_10109840(void) 31 1 +10109860 FUN_10109860 undefined FUN_10109860(void) 91 2 +101098c0 FUN_101098c0 undefined FUN_101098c0(void) 38 2 +101098f0 FUN_101098f0 undefined FUN_101098f0(void) 37 1 +10109920 FUN_10109920 undefined FUN_10109920(void) 589 5 +10109b70 FUN_10109b70 undefined FUN_10109b70(void) 74 3 +10109bc0 FUN_10109bc0 undefined FUN_10109bc0(void) 251 6 +10109cbb Catch@10109cbb undefined Catch@10109cbb(void) 21 2 +10109ce0 FUN_10109ce0 undefined FUN_10109ce0(void) 255 5 +10109de0 FUN_10109de0 undefined FUN_10109de0(void) 93 2 +10109e40 FUN_10109e40 undefined FUN_10109e40(void) 38 2 +10109e70 FUN_10109e70 undefined FUN_10109e70(void) 74 3 +10109ec0 FUN_10109ec0 undefined FUN_10109ec0(void) 121 2 +10109f40 FUN_10109f40 undefined FUN_10109f40(void) 51 1 +10109f80 FUN_10109f80 undefined FUN_10109f80(void) 91 2 +10109fe0 FUN_10109fe0 undefined FUN_10109fe0(void) 189 2 +1010a0a0 FUN_1010a0a0 undefined FUN_1010a0a0(void) 51 1 +1010a0e0 FUN_1010a0e0 undefined FUN_1010a0e0(void) 255 5 +1010a1e0 FUN_1010a1e0 undefined FUN_1010a1e0(void) 93 2 +1010a240 FUN_1010a240 undefined FUN_1010a240(void) 917 17 +1010a5e0 FUN_1010a5e0 undefined FUN_1010a5e0(void) 581 9 memset +1010a830 FUN_1010a830 undefined FUN_1010a830(void) 1041 15 +1010ab91 Catch@1010ab91 undefined Catch@1010ab91(void) 13 0 +1010ac80 FUN_1010ac80 undefined FUN_1010ac80(void) 51 1 +1010acc0 FUN_1010acc0 undefined FUN_1010acc0(void) 51 1 +1010ad00 FUN_1010ad00 undefined FUN_1010ad00(void) 1930 35 memset +1010b4b0 FUN_1010b4b0 undefined FUN_1010b4b0(void) 779 17 memcpy_s +1010b7c0 FUN_1010b7c0 undefined FUN_1010b7c0(void) 462 12 SysFreeString +1010b990 FUN_1010b990 undefined FUN_1010b990(void) 894 9 +1010bd10 FUN_1010bd10 undefined FUN_1010bd10(void) 5922 45 SysFreeString +1010d4a0 FUN_1010d4a0 undefined FUN_1010d4a0(void) 1265 13 memset +1010d9a0 FUN_1010d9a0 undefined FUN_1010d9a0(void) 496 12 +1010db90 FUN_1010db90 undefined FUN_1010db90(void) 181 2 SysFreeString +1010dc50 FUN_1010dc50 undefined FUN_1010dc50(void) 33 2 +1010dc80 FUN_1010dc80 undefined FUN_1010dc80(void) 429 11 +1010de30 FUN_1010de30 undefined FUN_1010de30(void) 441 10 SysFreeString +1010dff0 FUN_1010dff0 undefined FUN_1010dff0(void) 91 2 +1010e050 FUN_1010e050 undefined FUN_1010e050(void) 255 5 +1010e150 FUN_1010e150 undefined FUN_1010e150(void) 93 2 +1010e1b0 FUN_1010e1b0 undefined FUN_1010e1b0(void) 51 1 +1010e1f0 FUN_1010e1f0 undefined FUN_1010e1f0(void) 51 1 +1010e230 FUN_1010e230 undefined FUN_1010e230(void) 471 7 memcpy_s +1010e410 FUN_1010e410 undefined FUN_1010e410(void) 69 2 +1010e460 FUN_1010e460 undefined FUN_1010e460(void) 153 3 +1010e500 FUN_1010e500 undefined FUN_1010e500(void) 33 2 +1010e530 FUN_1010e530 undefined FUN_1010e530(void) 507 11 +1010e730 FUN_1010e730 undefined FUN_1010e730(void) 1395 36 +1010eca3 Catch@1010eca3 undefined Catch@1010eca3(void) 94 4 +1010ed18 Catch@1010ed18 undefined Catch@1010ed18(void) 22 0 +1010ed30 Catch@1010ed30 undefined Catch@1010ed30(void) 115 6 +1010eda8 Catch@1010eda8 undefined Catch@1010eda8(void) 73 3 +1010ee00 FUN_1010ee00 undefined FUN_1010ee00(void) 4911 77 SysFreeString;memset +1010f32f Catch@1010f32f undefined Catch@1010f32f(void) 13 0 +1010f4b2 Catch@1010f4b2 undefined Catch@1010f4b2(void) 13 0 +10110942 Catch@10110942 undefined Catch@10110942(void) 56 0 +10110986 FUN_10110986 undefined FUN_10110986(void) 1663 29 SysFreeString +10111180 FUN_10111180 undefined FUN_10111180(void) 90 1 +101111e0 FUN_101111e0 undefined FUN_101111e0(void) 143 3 +1011126f Catch@1011126f undefined Catch@1011126f(void) 13 0 +10111288 FUN_10111288 undefined FUN_10111288(void) 1064 26 +10112046 FUN_10112046 undefined FUN_10112046(void) 238 4 SysFreeString +101121e0 FUN_101121e0 undefined FUN_101121e0(void) 1263 12 memset +101126d0 FUN_101126d0 undefined FUN_101126d0(void) 255 6 +101127cf Catch@101127cf undefined Catch@101127cf(void) 94 4 +10112844 Catch@10112844 undefined Catch@10112844(void) 22 0 +1011285c Catch@1011285c undefined Catch@1011285c(void) 115 6 +101128d4 Catch@101128d4 undefined Catch@101128d4(void) 73 3 +10112920 FUN_10112920 undefined FUN_10112920(void) 32 0 +10112940 FUN_10112940 undefined FUN_10112940(void) 7 0 +10112950 FUN_10112950 undefined FUN_10112950(void) 34 1 +10112990 FUN_10112990 undefined FUN_10112990(void) 4 0 +101129a0 FUN_101129a0 undefined FUN_101129a0(void) 22 0 +101129c0 FUN_101129c0 undefined FUN_101129c0(void) 31 0 +101129e0 FUN_101129e0 undefined FUN_101129e0(void) 17 0 +10112a00 FUN_10112a00 undefined FUN_10112a00(void) 209 5 SysAllocStringLen;SysFreeString +10112ae0 FUN_10112ae0 undefined FUN_10112ae0(void) 98 2 +10112b50 FUN_10112b50 undefined FUN_10112b50(void) 89 0 +10112bb0 FUN_10112bb0 undefined FUN_10112bb0(void) 72 0 +10112c00 FUN_10112c00 undefined FUN_10112c00(void) 45 0 +10112c30 FUN_10112c30 undefined FUN_10112c30(void) 16 0 +10112c40 FUN_10112c40 undefined FUN_10112c40(void) 95 1 +10112ca0 FUN_10112ca0 undefined FUN_10112ca0(void) 37 0 +10112cd0 FUN_10112cd0 undefined FUN_10112cd0(void) 121 2 +10112d50 FUN_10112d50 undefined FUN_10112d50(void) 17 0 +10112d70 FUN_10112d70 undefined FUN_10112d70(void) 15 0 +10112d80 FUN_10112d80 undefined FUN_10112d80(void) 26 1 +10112da0 FUN_10112da0 undefined FUN_10112da0(void) 377 2 SysFreeString +10112f20 FUN_10112f20 undefined FUN_10112f20(void) 276 5 SysAllocStringByteLen;SysFreeString +10113040 FUN_10113040 undefined FUN_10113040(void) 33 2 +10113070 FUN_10113070 undefined FUN_10113070(void) 188 6 +10113130 FUN_10113130 undefined FUN_10113130(void) 160 3 +101131d0 FUN_101131d0 undefined FUN_101131d0(void) 337 6 SysFreeString +10113330 FUN_10113330 undefined FUN_10113330(void) 68 2 +10113380 FUN_10113380 undefined FUN_10113380(void) 23 1 +101133a0 FUN_101133a0 undefined FUN_101133a0(void) 23 1 +101133d0 FUN_101133d0 undefined FUN_101133d0(void) 1322 18 SysAllocString;SysFreeString +10113900 FUN_10113900 undefined FUN_10113900(void) 179 2 CoCreateInstance +101139c0 FUN_101139c0 undefined FUN_101139c0(void) 335 4 +10113b10 FUN_10113b10 undefined FUN_10113b10(void) 549 7 SysFreeString +10113d40 FUN_10113d40 undefined FUN_10113d40(void) 2004 42 SysAllocString;SysFreeString +10114520 FUN_10114520 undefined FUN_10114520(void) 89 1 +10114580 FUN_10114580 undefined FUN_10114580(void) 157 4 +10114620 FUN_10114620 undefined FUN_10114620(void) 286 6 +10114740 FUN_10114740 undefined FUN_10114740(void) 835 17 SysFreeString +10114a90 FUN_10114a90 undefined FUN_10114a90(void) 2824 49 +101155a0 FUN_101155a0 undefined FUN_101155a0(void) 961 18 +10115970 FUN_10115970 undefined FUN_10115970(void) 26 1 +10115990 FUN_10115990 undefined FUN_10115990(void) 108 0 +10115a00 FUN_10115a00 undefined FUN_10115a00(void) 59 0 +10115a40 FUN_10115a40 undefined FUN_10115a40(void) 126 0 +10115ac0 FUN_10115ac0 undefined FUN_10115ac0(void) 32 0 +10115b10 FUN_10115b10 undefined FUN_10115b10(void) 36 0 +10115b40 FUN_10115b40 undefined FUN_10115b40(void) 40 0 +10115b70 FUN_10115b70 undefined FUN_10115b70(void) 69 1 +10115bc0 FUN_10115bc0 undefined FUN_10115bc0(void) 68 0 +10115c10 FUN_10115c10 undefined FUN_10115c10(void) 40 0 +10115c40 FUN_10115c40 undefined FUN_10115c40(void) 137 0 +10115ce0 FUN_10115ce0 undefined FUN_10115ce0(void) 78 0 +10115d30 FUN_10115d30 undefined FUN_10115d30(void) 28 0 +10115d50 FUN_10115d50 undefined FUN_10115d50(void) 175 0 +10115e00 FUN_10115e00 undefined FUN_10115e00(void) 60 0 +10115e40 FUN_10115e40 undefined FUN_10115e40(void) 71 1 +10115e90 FUN_10115e90 undefined FUN_10115e90(void) 13 0 +10115ea0 FUN_10115ea0 undefined FUN_10115ea0(void) 69 1 +10115ef0 FUN_10115ef0 undefined FUN_10115ef0(void) 66 0 +10115f40 FUN_10115f40 undefined FUN_10115f40(void) 155 0 +10115fe0 FUN_10115fe0 undefined FUN_10115fe0(void) 13 0 +10115ff0 FUN_10115ff0 undefined FUN_10115ff0(void) 69 1 +10116040 FUN_10116040 undefined FUN_10116040(void) 66 0 +10116090 FUN_10116090 undefined FUN_10116090(void) 4 0 +101160d0 FUN_101160d0 undefined FUN_101160d0(void) 23 1 +10116130 FUN_10116130 undefined FUN_10116130(void) 75 1 +10116180 FUN_10116180 undefined FUN_10116180(void) 23 1 +101161a0 FUN_101161a0 undefined FUN_101161a0(void) 77 1 +10116240 FUN_10116240 undefined FUN_10116240(void) 19 0 +10116260 FUN_10116260 undefined FUN_10116260(void) 10 0 +10116270 FUN_10116270 undefined FUN_10116270(void) 8 0 +10116290 FUN_10116290 undefined FUN_10116290(void) 8 0 +101162d0 FUN_101162d0 undefined FUN_101162d0(void) 8 0 +101162e0 FUN_101162e0 undefined FUN_101162e0(void) 65 0 +10116330 FUN_10116330 undefined FUN_10116330(void) 8 0 +10116340 FUN_10116340 undefined FUN_10116340(void) 8 0 +10116350 FUN_10116350 undefined FUN_10116350(void) 8 0 +10116390 FUN_10116390 undefined FUN_10116390(void) 8 0 +101163a0 FUN_101163a0 undefined FUN_101163a0(void) 114 0 +10116480 FUN_10116480 undefined FUN_10116480(void) 8 0 +10116490 FUN_10116490 undefined FUN_10116490(void) 8 0 +101164a0 FUN_101164a0 undefined FUN_101164a0(void) 8 0 +101164b0 FUN_101164b0 undefined FUN_101164b0(void) 8 0 +101164c0 FUN_101164c0 undefined FUN_101164c0(void) 8 0 +101164d0 FUN_101164d0 undefined FUN_101164d0(void) 8 0 +101164e0 FUN_101164e0 undefined FUN_101164e0(void) 8 0 +101164f0 FUN_101164f0 undefined FUN_101164f0(void) 8 0 +10116500 FUN_10116500 undefined FUN_10116500(void) 8 0 +10116510 FUN_10116510 undefined FUN_10116510(void) 8 0 +10116520 FUN_10116520 undefined FUN_10116520(void) 8 0 +10116530 FUN_10116530 undefined FUN_10116530(void) 8 0 +10116550 FUN_10116550 undefined FUN_10116550(void) 140 3 +101165f0 FUN_101165f0 undefined FUN_101165f0(void) 143 3 +10116690 FUN_10116690 undefined FUN_10116690(void) 144 3 +10116730 FUN_10116730 undefined FUN_10116730(void) 146 3 +101167d0 FUN_101167d0 undefined FUN_101167d0(void) 84 0 +10116830 FUN_10116830 undefined FUN_10116830(void) 84 0 +10116890 FUN_10116890 undefined FUN_10116890(void) 84 0 +101168f0 FUN_101168f0 undefined FUN_101168f0(void) 24 0 +10116910 FUN_10116910 undefined FUN_10116910(void) 84 0 +10116970 FUN_10116970 undefined FUN_10116970(void) 84 0 +101169e0 FUN_101169e0 undefined FUN_101169e0(void) 84 0 +10116ad0 FUN_10116ad0 undefined FUN_10116ad0(void) 84 0 +10116b30 FUN_10116b30 undefined FUN_10116b30(void) 84 0 +10116b90 FUN_10116b90 undefined FUN_10116b90(void) 8 0 +10116ba0 FUN_10116ba0 undefined FUN_10116ba0(void) 8 0 +10116bb0 FUN_10116bb0 undefined FUN_10116bb0(void) 8 0 +10116bc0 FUN_10116bc0 undefined FUN_10116bc0(void) 8 0 +10116bd0 FUN_10116bd0 undefined FUN_10116bd0(void) 8 0 +10116be0 FUN_10116be0 undefined FUN_10116be0(void) 8 0 +10116bf0 FUN_10116bf0 undefined FUN_10116bf0(void) 8 0 +10116c00 FUN_10116c00 undefined FUN_10116c00(void) 8 0 +10116c10 FUN_10116c10 undefined FUN_10116c10(void) 8 0 +10116c20 FUN_10116c20 undefined FUN_10116c20(void) 8 0 +10116c30 FUN_10116c30 undefined FUN_10116c30(void) 8 0 +10116c40 FUN_10116c40 undefined FUN_10116c40(void) 8 0 +10116c50 FUN_10116c50 undefined FUN_10116c50(void) 8 0 +10116c60 FUN_10116c60 undefined FUN_10116c60(void) 8 0 +10116c70 FUN_10116c70 undefined FUN_10116c70(void) 8 0 +10116c80 FUN_10116c80 undefined FUN_10116c80(void) 8 0 +10116c90 FUN_10116c90 undefined FUN_10116c90(void) 8 0 +10116ca0 FUN_10116ca0 undefined FUN_10116ca0(void) 8 0 +10116cb0 FUN_10116cb0 undefined FUN_10116cb0(void) 8 0 +10116cc0 FUN_10116cc0 undefined FUN_10116cc0(void) 8 0 +10116cd0 FUN_10116cd0 undefined FUN_10116cd0(void) 8 0 +10116ce0 FUN_10116ce0 undefined FUN_10116ce0(void) 24 0 +10116d00 FUN_10116d00 undefined FUN_10116d00(void) 8 0 +10116d10 FUN_10116d10 undefined FUN_10116d10(void) 24 0 +10116d30 FUN_10116d30 undefined FUN_10116d30(void) 8 0 +10116d40 FUN_10116d40 undefined FUN_10116d40(void) 24 0 +10116d60 FUN_10116d60 undefined FUN_10116d60(void) 8 0 +10116d70 FUN_10116d70 undefined FUN_10116d70(void) 24 0 +10116d90 FUN_10116d90 undefined FUN_10116d90(void) 8 0 +10116da0 FUN_10116da0 undefined FUN_10116da0(void) 24 0 +10116dc0 FUN_10116dc0 undefined FUN_10116dc0(void) 8 0 +10116dd0 FUN_10116dd0 undefined FUN_10116dd0(void) 24 0 +10116df0 FUN_10116df0 undefined FUN_10116df0(void) 24 0 +10116e10 FUN_10116e10 undefined FUN_10116e10(void) 8 0 +10116e20 FUN_10116e20 undefined FUN_10116e20(void) 8 0 +10116e30 FUN_10116e30 undefined FUN_10116e30(void) 8 0 +10116e40 FUN_10116e40 undefined FUN_10116e40(void) 96 0 +10116ea0 FUN_10116ea0 undefined FUN_10116ea0(void) 8 0 +10116eb0 FUN_10116eb0 undefined FUN_10116eb0(void) 8 0 +10116ec0 FUN_10116ec0 undefined FUN_10116ec0(void) 8 0 +10116ed0 FUN_10116ed0 undefined FUN_10116ed0(void) 8 0 +10116ee0 FUN_10116ee0 undefined FUN_10116ee0(void) 8 0 +10116ef0 FUN_10116ef0 undefined FUN_10116ef0(void) 8 0 +10116f00 FUN_10116f00 undefined FUN_10116f00(void) 8 0 +10116f10 FUN_10116f10 undefined FUN_10116f10(void) 8 0 +10116f20 FUN_10116f20 undefined FUN_10116f20(void) 8 0 +10116f30 FUN_10116f30 undefined FUN_10116f30(void) 8 0 +10116f40 FUN_10116f40 undefined FUN_10116f40(void) 84 0 +10116fb0 FUN_10116fb0 undefined FUN_10116fb0(void) 24 0 +10116fd0 FUN_10116fd0 undefined FUN_10116fd0(void) 90 0 +10117030 FUN_10117030 undefined FUN_10117030(void) 8 0 +10117040 FUN_10117040 undefined FUN_10117040(void) 24 0 +10117060 FUN_10117060 undefined FUN_10117060(void) 8 0 +10117070 FUN_10117070 undefined FUN_10117070(void) 24 0 +10117090 FUN_10117090 undefined FUN_10117090(void) 8 0 +101170a0 FUN_101170a0 undefined FUN_101170a0(void) 24 0 +101170c0 FUN_101170c0 undefined FUN_101170c0(void) 24 0 +101170e0 FUN_101170e0 undefined FUN_101170e0(void) 24 0 +10117100 FUN_10117100 undefined FUN_10117100(void) 8 0 +10117110 FUN_10117110 undefined FUN_10117110(void) 24 0 +10117130 FUN_10117130 undefined FUN_10117130(void) 24 0 +10117150 FUN_10117150 undefined FUN_10117150(void) 24 0 +10117170 FUN_10117170 undefined FUN_10117170(void) 24 0 +10117190 FUN_10117190 undefined FUN_10117190(void) 8 0 +101171a0 FUN_101171a0 undefined FUN_101171a0(void) 90 0 +10117200 FUN_10117200 undefined FUN_10117200(void) 90 0 +10117260 FUN_10117260 undefined FUN_10117260(void) 101 0 +101172d0 FUN_101172d0 undefined FUN_101172d0(void) 10 0 +101172e0 FUN_101172e0 undefined FUN_101172e0(void) 10 0 +101172f0 FUN_101172f0 undefined FUN_101172f0(void) 10 0 +10117310 FUN_10117310 undefined FUN_10117310(void) 90 0 +10117370 FUN_10117370 undefined FUN_10117370(void) 8 0 +10117380 FUN_10117380 undefined FUN_10117380(void) 24 0 +101173a0 FUN_101173a0 undefined FUN_101173a0(void) 90 0 +10117400 FUN_10117400 undefined FUN_10117400(void) 8 0 +10117410 FUN_10117410 undefined FUN_10117410(void) 8 0 +10117420 FUN_10117420 undefined FUN_10117420(void) 8 0 +10117430 FUN_10117430 undefined FUN_10117430(void) 8 0 +10117440 FUN_10117440 undefined FUN_10117440(void) 8 0 +10117460 FUN_10117460 undefined FUN_10117460(void) 18 0 +10117480 FUN_10117480 undefined FUN_10117480(void) 60 0 +101174c0 FUN_101174c0 undefined FUN_101174c0(void) 24 0 +101174e0 FUN_101174e0 undefined FUN_101174e0(void) 24 0 +10117500 FUN_10117500 undefined FUN_10117500(void) 8 0 +10117510 FUN_10117510 undefined FUN_10117510(void) 84 0 +10117570 FUN_10117570 undefined FUN_10117570(void) 19 0 +10117590 FUN_10117590 undefined FUN_10117590(void) 89 1 +101175f0 FUN_101175f0 undefined FUN_101175f0(void) 89 1 +10117680 FUN_10117680 undefined FUN_10117680(void) 29 1 +101176d0 FUN_101176d0 undefined FUN_101176d0(void) 22 0 +10117700 FUN_10117700 undefined FUN_10117700(void) 19 0 +10117720 FUN_10117720 undefined FUN_10117720(void) 11 0 +10117730 FUN_10117730 undefined FUN_10117730(void) 11 0 +10117740 FUN_10117740 undefined FUN_10117740(void) 90 0 +101177a0 FUN_101177a0 undefined FUN_101177a0(void) 11 0 +101177b0 FUN_101177b0 undefined FUN_101177b0(void) 11 0 +101177c0 FUN_101177c0 undefined FUN_101177c0(void) 11 0 +101177d0 FUN_101177d0 undefined FUN_101177d0(void) 11 0 +101177e0 FUN_101177e0 undefined FUN_101177e0(void) 21 0 +10117800 FUN_10117800 undefined FUN_10117800(void) 11 0 +10117810 FUN_10117810 undefined FUN_10117810(void) 11 0 +10117880 FUN_10117880 undefined FUN_10117880(void) 155 0 +10117920 FUN_10117920 undefined FUN_10117920(void) 112 0 +10117990 FUN_10117990 undefined FUN_10117990(void) 104 0 +10117a00 FUN_10117a00 undefined FUN_10117a00(void) 106 1 +10117a70 FUN_10117a70 undefined FUN_10117a70(void) 44 0 +10117aa0 FUN_10117aa0 undefined FUN_10117aa0(void) 11 0 +10117ab0 FUN_10117ab0 undefined FUN_10117ab0(void) 11 0 +10117ac0 FUN_10117ac0 undefined FUN_10117ac0(void) 12 1 +10117ae0 FUN_10117ae0 undefined FUN_10117ae0(void) 42 0 +10117b20 FUN_10117b20 undefined FUN_10117b20(void) 21 1 +10117b50 FUN_10117b50 undefined FUN_10117b50(void) 21 1 +10117b80 FUN_10117b80 undefined FUN_10117b80(void) 21 1 +10117bb0 FUN_10117bb0 undefined FUN_10117bb0(void) 21 1 +10117bd0 FUN_10117bd0 undefined FUN_10117bd0(void) 24 0 +10117bf0 FUN_10117bf0 undefined FUN_10117bf0(void) 84 0 +10117c60 FUN_10117c60 undefined FUN_10117c60(void) 24 0 +10117c80 FUN_10117c80 undefined FUN_10117c80(void) 24 0 +10117ca0 FUN_10117ca0 undefined FUN_10117ca0(void) 24 0 +10117cc0 FUN_10117cc0 undefined FUN_10117cc0(void) 24 0 +10117ce0 FUN_10117ce0 undefined FUN_10117ce0(void) 24 0 +10117d00 FUN_10117d00 undefined FUN_10117d00(void) 24 0 +10117d20 FUN_10117d20 undefined FUN_10117d20(void) 24 0 +10117d40 FUN_10117d40 undefined FUN_10117d40(void) 142 3 +10117dd0 FUN_10117dd0 undefined FUN_10117dd0(void) 98 0 +10117e40 FUN_10117e40 undefined FUN_10117e40(void) 11 0 +10117e50 FUN_10117e50 undefined FUN_10117e50(void) 12 1 +10117e60 FUN_10117e60 undefined FUN_10117e60(void) 12 1 +10117e70 FUN_10117e70 undefined FUN_10117e70(void) 12 1 +10117e80 FUN_10117e80 undefined FUN_10117e80(void) 24 0 +10117ea0 FUN_10117ea0 undefined FUN_10117ea0(void) 12 1 +10117eb0 FUN_10117eb0 undefined FUN_10117eb0(void) 60 0 +10117ef0 FUN_10117ef0 undefined FUN_10117ef0(void) 12 1 +10117f10 FUN_10117f10 undefined FUN_10117f10(void) 12 1 +10117fb0 FUN_10117fb0 undefined FUN_10117fb0(void) 24 0 +10117fd0 FUN_10117fd0 undefined FUN_10117fd0(void) 24 0 +10117ff0 FUN_10117ff0 undefined FUN_10117ff0(void) 24 0 +10118010 FUN_10118010 undefined FUN_10118010(void) 24 0 +10118030 FUN_10118030 undefined FUN_10118030(void) 24 0 +10118050 FUN_10118050 undefined FUN_10118050(void) 12 1 +10118060 FUN_10118060 undefined FUN_10118060(void) 24 0 +10118080 FUN_10118080 undefined FUN_10118080(void) 12 1 +10118090 FUN_10118090 undefined FUN_10118090(void) 24 0 +101180b0 FUN_101180b0 undefined FUN_101180b0(void) 12 1 +101180c0 FUN_101180c0 undefined FUN_101180c0(void) 24 0 +101180e0 FUN_101180e0 undefined FUN_101180e0(void) 24 0 +10118100 FUN_10118100 undefined FUN_10118100(void) 101 0 +10118170 FUN_10118170 undefined FUN_10118170(void) 101 0 +101181e0 FUN_101181e0 undefined FUN_101181e0(void) 88 0 +10118240 FUN_10118240 undefined FUN_10118240(void) 24 0 +10118260 FUN_10118260 undefined FUN_10118260(void) 24 0 +10118280 FUN_10118280 undefined FUN_10118280(void) 24 0 +101182a0 FUN_101182a0 undefined FUN_101182a0(void) 24 0 +101182c0 FUN_101182c0 undefined FUN_101182c0(void) 24 0 +101182e0 FUN_101182e0 undefined FUN_101182e0(void) 24 0 +10118300 FUN_10118300 undefined FUN_10118300(void) 24 0 +10118320 FUN_10118320 undefined FUN_10118320(void) 24 0 +10118340 FUN_10118340 undefined FUN_10118340(void) 24 0 +10118360 FUN_10118360 undefined FUN_10118360(void) 142 3 +101183f0 FUN_101183f0 undefined FUN_101183f0(void) 142 3 +10118480 FUN_10118480 undefined FUN_10118480(void) 142 3 +10118510 FUN_10118510 undefined FUN_10118510(void) 148 3 +101185b0 FUN_101185b0 undefined FUN_101185b0(void) 142 3 +10118640 FUN_10118640 undefined FUN_10118640(void) 142 3 +101186d0 FUN_101186d0 undefined FUN_101186d0(void) 142 3 +10118760 FUN_10118760 undefined FUN_10118760(void) 142 3 +101187f0 FUN_101187f0 undefined FUN_101187f0(void) 12 1 +10118810 FUN_10118810 undefined FUN_10118810(void) 24 0 +10118830 FUN_10118830 undefined FUN_10118830(void) 88 0 +10118890 FUN_10118890 undefined FUN_10118890(void) 88 0 +101188f0 FUN_101188f0 undefined FUN_101188f0(void) 88 0 +10118950 FUN_10118950 undefined FUN_10118950(void) 99 0 +101189c0 FUN_101189c0 undefined FUN_101189c0(void) 24 0 +101189e0 FUN_101189e0 undefined FUN_101189e0(void) 142 3 +10118a70 FUN_10118a70 undefined FUN_10118a70(void) 16 0 +10118a80 FUN_10118a80 undefined FUN_10118a80(void) 14 0 +10118a90 FUN_10118a90 undefined FUN_10118a90(void) 88 0 +10118af0 FUN_10118af0 undefined FUN_10118af0(void) 42 0 +10118b20 FUN_10118b20 undefined FUN_10118b20(void) 58 0 +10118b60 FUN_10118b60 undefined FUN_10118b60(void) 22 0 +10118b80 FUN_10118b80 undefined FUN_10118b80(void) 22 0 +10118ba0 FUN_10118ba0 undefined FUN_10118ba0(void) 42 0 +10118bd0 FUN_10118bd0 undefined FUN_10118bd0(void) 163 2 CoCreateInstance +10118c80 FUN_10118c80 undefined FUN_10118c80(void) 24 0 +10118ca0 FUN_10118ca0 undefined FUN_10118ca0(void) 83 1 +10118d00 FUN_10118d00 undefined FUN_10118d00(void) 83 1 +10118d70 FUN_10118d70 undefined FUN_10118d70(void) 68 0 +10118df0 FUN_10118df0 undefined FUN_10118df0(void) 18 0 +10118e20 FUN_10118e20 undefined FUN_10118e20(void) 23 1 +10118e40 FUN_10118e40 undefined FUN_10118e40(void) 23 1 +10118e60 FUN_10118e60 undefined FUN_10118e60(void) 49 0 +10118ea0 FUN_10118ea0 undefined FUN_10118ea0(void) 81 0 +10118f00 FUN_10118f00 undefined FUN_10118f00(void) 81 0 +10118f60 FUN_10118f60 undefined FUN_10118f60(void) 12 1 +10118f80 FUN_10118f80 undefined FUN_10118f80(void) 42 0 +10118fb0 FUN_10118fb0 undefined FUN_10118fb0(void) 167 3 +10119060 FUN_10119060 undefined FUN_10119060(void) 167 3 +10119110 FUN_10119110 undefined FUN_10119110(void) 129 0 +101191a0 FUN_101191a0 undefined FUN_101191a0(void) 44 0 +101191d0 FUN_101191d0 undefined FUN_101191d0(void) 167 3 +10119280 FUN_10119280 undefined FUN_10119280(void) 167 3 +10119330 FUN_10119330 undefined FUN_10119330(void) 298 0 +10119460 FUN_10119460 undefined FUN_10119460(void) 247 1 +10119560 FUN_10119560 undefined FUN_10119560(void) 173 1 +10119610 FUN_10119610 undefined FUN_10119610(void) 64 1 +10119650 FUN_10119650 undefined FUN_10119650(void) 268 1 +10119760 FUN_10119760 undefined FUN_10119760(void) 111 1 +101197d0 FUN_101197d0 undefined FUN_101197d0(void) 65 0 +10119820 FUN_10119820 undefined FUN_10119820(void) 520 1 +10119a30 FUN_10119a30 undefined FUN_10119a30(void) 243 0 +10119b30 FUN_10119b30 undefined FUN_10119b30(void) 24 0 +10119b50 FUN_10119b50 undefined FUN_10119b50(void) 12 1 +10119b60 FUN_10119b60 undefined FUN_10119b60(void) 142 3 +10119bf0 FUN_10119bf0 undefined FUN_10119bf0(void) 23 0 +10119c10 FUN_10119c10 undefined FUN_10119c10(void) 32 1 +10119c30 FUN_10119c30 undefined FUN_10119c30(void) 32 1 +10119c50 FUN_10119c50 undefined FUN_10119c50(void) 190 4 +10119cdf Catch@10119cdf undefined Catch@10119cdf(void) 21 2 +10119d30 FUN_10119d30 undefined FUN_10119d30(void) 96 0 +10119d90 FUN_10119d90 undefined FUN_10119d90(void) 60 0 +10119dd0 FUN_10119dd0 undefined FUN_10119dd0(void) 546 2 +1011a000 FUN_1011a000 undefined FUN_1011a000(void) 546 2 +1011a230 FUN_1011a230 undefined FUN_1011a230(void) 546 2 +1011a460 FUN_1011a460 undefined FUN_1011a460(void) 546 2 +1011a690 FUN_1011a690 undefined FUN_1011a690(void) 546 2 +1011a8c0 FUN_1011a8c0 undefined FUN_1011a8c0(void) 546 2 +1011aaf0 FUN_1011aaf0 undefined FUN_1011aaf0(void) 24 0 +1011ab10 FUN_1011ab10 undefined FUN_1011ab10(void) 24 0 +1011ab30 FUN_1011ab30 undefined FUN_1011ab30(void) 24 0 +1011ab50 FUN_1011ab50 undefined FUN_1011ab50(void) 24 0 +1011ab70 FUN_1011ab70 undefined FUN_1011ab70(void) 24 0 +1011ab90 FUN_1011ab90 undefined FUN_1011ab90(void) 12 1 +1011aba0 FUN_1011aba0 undefined FUN_1011aba0(void) 24 0 +1011abc0 FUN_1011abc0 undefined FUN_1011abc0(void) 12 1 +1011abd0 FUN_1011abd0 undefined FUN_1011abd0(void) 24 0 +1011abf0 FUN_1011abf0 undefined FUN_1011abf0(void) 24 0 +1011ac10 FUN_1011ac10 undefined FUN_1011ac10(void) 190 4 +1011ac9f Catch@1011ac9f undefined Catch@1011ac9f(void) 21 2 +1011acf0 FUN_1011acf0 undefined FUN_1011acf0(void) 190 4 +1011ad7f Catch@1011ad7f undefined Catch@1011ad7f(void) 21 2 +1011add0 FUN_1011add0 undefined FUN_1011add0(void) 190 4 +1011ae5f Catch@1011ae5f undefined Catch@1011ae5f(void) 21 2 +1011aeb0 FUN_1011aeb0 undefined FUN_1011aeb0(void) 190 4 +1011af3f Catch@1011af3f undefined Catch@1011af3f(void) 21 2 +1011af90 FUN_1011af90 undefined FUN_1011af90(void) 101 0 +1011b000 FUN_1011b000 undefined FUN_1011b000(void) 128 0 +1011b090 FUN_1011b090 undefined FUN_1011b090(void) 101 0 +1011b100 FUN_1011b100 undefined FUN_1011b100(void) 101 0 +1011b170 FUN_1011b170 undefined FUN_1011b170(void) 546 2 +1011b3a0 FUN_1011b3a0 undefined FUN_1011b3a0(void) 24 0 +1011b3c0 FUN_1011b3c0 undefined FUN_1011b3c0(void) 190 4 +1011b44f Catch@1011b44f undefined Catch@1011b44f(void) 21 2 +1011b4a0 FUN_1011b4a0 undefined FUN_1011b4a0(void) 125 0 +1011b520 FUN_1011b520 undefined FUN_1011b520(void) 89 0 +1011b580 FUN_1011b580 undefined FUN_1011b580(void) 42 0 +1011b5b0 FUN_1011b5b0 undefined FUN_1011b5b0(void) 15 0 +1011b5c0 FUN_1011b5c0 undefined FUN_1011b5c0(void) 89 0 +1011b620 FUN_1011b620 undefined FUN_1011b620(void) 42 0 +1011b650 FUN_1011b650 undefined FUN_1011b650(void) 83 2 +1011b6b0 FUN_1011b6b0 undefined FUN_1011b6b0(void) 128 1 +1011b730 FUN_1011b730 undefined FUN_1011b730(void) 16 0 +1011b740 FUN_1011b740 undefined FUN_1011b740(void) 98 0 +1011b7b0 FUN_1011b7b0 undefined FUN_1011b7b0(void) 23 1 +1011b7d0 FUN_1011b7d0 undefined FUN_1011b7d0(void) 23 1 +1011b7f0 FUN_1011b7f0 undefined FUN_1011b7f0(void) 23 1 +1011b820 FUN_1011b820 undefined FUN_1011b820(void) 177 3 +1011b8e0 FUN_1011b8e0 undefined FUN_1011b8e0(void) 177 3 +1011b9a0 FUN_1011b9a0 undefined FUN_1011b9a0(void) 177 3 +1011ba60 FUN_1011ba60 undefined FUN_1011ba60(void) 49 0 +1011baa0 FUN_1011baa0 undefined FUN_1011baa0(void) 24 1 +1011bac0 FUN_1011bac0 undefined FUN_1011bac0(void) 177 3 +1011bb80 FUN_1011bb80 undefined FUN_1011bb80(void) 23 1 +1011bba0 FUN_1011bba0 undefined FUN_1011bba0(void) 24 1 +1011bbc0 FUN_1011bbc0 undefined FUN_1011bbc0(void) 23 1 +1011bbe0 FUN_1011bbe0 undefined FUN_1011bbe0(void) 24 1 +1011bc00 FUN_1011bc00 undefined FUN_1011bc00(void) 67 1 +1011bc50 FUN_1011bc50 undefined FUN_1011bc50(void) 24 1 +1011bc70 FUN_1011bc70 undefined FUN_1011bc70(void) 23 1 +1011bc90 FUN_1011bc90 undefined FUN_1011bc90(void) 24 1 +1011bcb0 FUN_1011bcb0 undefined FUN_1011bcb0(void) 23 1 +1011bcd0 FUN_1011bcd0 undefined FUN_1011bcd0(void) 23 1 +1011bcf0 FUN_1011bcf0 undefined FUN_1011bcf0(void) 24 1 +1011bd10 FUN_1011bd10 undefined FUN_1011bd10(void) 546 2 +1011bf40 FUN_1011bf40 undefined FUN_1011bf40(void) 190 4 +1011bfcf Catch@1011bfcf undefined Catch@1011bfcf(void) 21 2 +1011c020 FUN_1011c020 undefined FUN_1011c020(void) 59 0 +1011c060 FUN_1011c060 undefined FUN_1011c060(void) 32 1 +1011c080 FUN_1011c080 undefined FUN_1011c080(void) 32 1 +1011c0a0 FUN_1011c0a0 undefined FUN_1011c0a0(void) 32 1 +1011c0c0 FUN_1011c0c0 undefined FUN_1011c0c0(void) 32 1 +1011c0e0 FUN_1011c0e0 undefined FUN_1011c0e0(void) 483 4 +1011c2d0 FUN_1011c2d0 undefined FUN_1011c2d0(void) 209 3 +1011c3b0 FUN_1011c3b0 undefined FUN_1011c3b0(void) 399 4 +1011c540 FUN_1011c540 undefined FUN_1011c540(void) 254 4 +1011c640 FUN_1011c640 undefined FUN_1011c640(void) 416 4 +1011c7e0 FUN_1011c7e0 undefined FUN_1011c7e0(void) 209 3 +1011c8c0 FUN_1011c8c0 undefined FUN_1011c8c0(void) 236 1 +1011c9b0 FUN_1011c9b0 undefined FUN_1011c9b0(void) 123 0 +1011ca30 FUN_1011ca30 undefined FUN_1011ca30(void) 87 0 +1011ca90 FUN_1011ca90 undefined FUN_1011ca90(void) 107 0 +1011cb00 FUN_1011cb00 undefined FUN_1011cb00(void) 87 0 +1011cb60 FUN_1011cb60 undefined FUN_1011cb60(void) 58 1 +1011cba0 FUN_1011cba0 undefined FUN_1011cba0(void) 107 0 +1011cc10 FUN_1011cc10 undefined FUN_1011cc10(void) 26 1 +1011cc30 FUN_1011cc30 undefined FUN_1011cc30(void) 162 2 +1011cce0 FUN_1011cce0 undefined FUN_1011cce0(void) 215 2 +1011cdc0 FUN_1011cdc0 undefined FUN_1011cdc0(void) 98 0 +1011ce30 FUN_1011ce30 undefined FUN_1011ce30(void) 115 1 +1011ceb0 FUN_1011ceb0 undefined FUN_1011ceb0(void) 115 2 +1011cf30 FUN_1011cf30 undefined FUN_1011cf30(void) 129 1 +1011cfc0 FUN_1011cfc0 undefined FUN_1011cfc0(void) 120 2 +1011d040 FUN_1011d040 undefined FUN_1011d040(void) 83 1 +1011d0a0 FUN_1011d0a0 undefined FUN_1011d0a0(void) 83 2 +1011d100 FUN_1011d100 undefined FUN_1011d100(void) 44 2 +1011d130 FUN_1011d130 undefined FUN_1011d130(void) 165 2 +1011d1d5 Catch@1011d1d5 undefined Catch@1011d1d5(void) 21 2 +1011d1f0 FUN_1011d1f0 undefined FUN_1011d1f0(void) 38 2 +1011d220 FUN_1011d220 undefined FUN_1011d220(void) 38 2 +1011d250 FUN_1011d250 undefined FUN_1011d250(void) 38 2 +1011d280 FUN_1011d280 undefined FUN_1011d280(void) 38 2 +1011d2b0 FUN_1011d2b0 undefined FUN_1011d2b0(void) 339 4 +1011d410 FUN_1011d410 undefined FUN_1011d410(void) 38 2 +1011d440 FUN_1011d440 undefined FUN_1011d440(void) 190 4 +1011d4cf Catch@1011d4cf undefined Catch@1011d4cf(void) 21 2 +1011d520 FUN_1011d520 undefined FUN_1011d520(void) 190 4 +1011d5af Catch@1011d5af undefined Catch@1011d5af(void) 21 2 +1011d600 FUN_1011d600 undefined FUN_1011d600(void) 105 0 +1011d670 FUN_1011d670 undefined FUN_1011d670(void) 190 4 +1011d6ff Catch@1011d6ff undefined Catch@1011d6ff(void) 21 2 +1011d750 FUN_1011d750 undefined FUN_1011d750(void) 121 1 +1011d7c9 Catch@1011d7c9 undefined Catch@1011d7c9(void) 45 2 +1011d800 FUN_1011d800 undefined FUN_1011d800(void) 105 0 +1011d870 FUN_1011d870 undefined FUN_1011d870(void) 137 1 +1011d900 FUN_1011d900 undefined FUN_1011d900(void) 82 3 +1011d960 FUN_1011d960 undefined FUN_1011d960(void) 351 3 +1011dad0 FUN_1011dad0 undefined FUN_1011dad0(void) 119 1 +1011db50 FUN_1011db50 undefined FUN_1011db50(void) 47 2 +1011db80 FUN_1011db80 undefined FUN_1011db80(void) 38 2 +1011dbb0 FUN_1011dbb0 undefined FUN_1011dbb0(void) 38 2 +1011dbe0 FUN_1011dbe0 undefined FUN_1011dbe0(void) 190 4 +1011dc6f Catch@1011dc6f undefined Catch@1011dc6f(void) 21 2 +1011dcc0 FUN_1011dcc0 undefined FUN_1011dcc0(void) 165 2 +1011dd65 Catch@1011dd65 undefined Catch@1011dd65(void) 21 2 +1011dd80 FUN_1011dd80 undefined FUN_1011dd80(void) 28 1 +1011dda0 FUN_1011dda0 undefined FUN_1011dda0(void) 190 4 +1011de2f Catch@1011de2f undefined Catch@1011de2f(void) 21 2 +1011de80 FUN_1011de80 undefined FUN_1011de80(void) 285 5 +1011dfa0 FUN_1011dfa0 undefined FUN_1011dfa0(void) 435 3 +1011e160 FUN_1011e160 undefined FUN_1011e160(void) 13 0 +1011e170 FUN_1011e170 undefined FUN_1011e170(void) 66 0 +1011e1d0 FUN_1011e1d0 undefined FUN_1011e1d0(void) 89 1 +1011e230 FUN_1011e230 undefined FUN_1011e230(void) 12 1 +1011e240 FUN_1011e240 undefined FUN_1011e240(void) 23 1 +1011e260 FUN_1011e260 undefined FUN_1011e260(void) 129 1 +1011e2f0 FUN_1011e2f0 undefined FUN_1011e2f0(void) 82 3 +1011e350 FUN_1011e350 undefined FUN_1011e350(void) 82 3 +1011e3b0 FUN_1011e3b0 undefined FUN_1011e3b0(void) 82 3 +1011e410 FUN_1011e410 undefined FUN_1011e410(void) 82 3 +1011e470 FUN_1011e470 undefined FUN_1011e470(void) 26 1 +1011e490 FUN_1011e490 undefined FUN_1011e490(void) 40 2 +1011e4c0 FUN_1011e4c0 undefined FUN_1011e4c0(void) 184 4 +1011e549 Catch@1011e549 undefined Catch@1011e549(void) 17 2 +1011e590 FUN_1011e590 undefined FUN_1011e590(void) 119 1 +1011e610 FUN_1011e610 undefined FUN_1011e610(void) 165 2 +1011e6b5 Catch@1011e6b5 undefined Catch@1011e6b5(void) 21 2 +1011e6d0 FUN_1011e6d0 undefined FUN_1011e6d0(void) 575 10 +1011e910 FUN_1011e910 undefined FUN_1011e910(void) 175 3 +1011e9c0 FUN_1011e9c0 undefined FUN_1011e9c0(void) 144 2 +1011ea50 FUN_1011ea50 undefined FUN_1011ea50(void) 195 4 +1011eae4 Catch@1011eae4 undefined Catch@1011eae4(void) 28 2 +1011eb30 FUN_1011eb30 undefined FUN_1011eb30(void) 195 4 +1011ebc4 Catch@1011ebc4 undefined Catch@1011ebc4(void) 28 2 +1011ec10 FUN_1011ec10 undefined FUN_1011ec10(void) 119 1 +1011ec90 FUN_1011ec90 undefined FUN_1011ec90(void) 68 1 +1011ece0 FUN_1011ece0 undefined FUN_1011ece0(void) 175 3 +1011ed90 FUN_1011ed90 undefined FUN_1011ed90(void) 77 1 +1011ede0 FUN_1011ede0 undefined FUN_1011ede0(void) 175 3 +1011ee90 FUN_1011ee90 undefined FUN_1011ee90(void) 43 1 +1011eec0 FUN_1011eec0 undefined FUN_1011eec0(void) 77 1 +1011ef10 FUN_1011ef10 undefined FUN_1011ef10(void) 127 1 +1011ef90 FUN_1011ef90 undefined FUN_1011ef90(void) 195 4 +1011f024 Catch@1011f024 undefined Catch@1011f024(void) 28 2 +1011f070 FUN_1011f070 undefined FUN_1011f070(void) 138 1 +1011f100 FUN_1011f100 undefined FUN_1011f100(void) 580 3 +1011f350 FUN_1011f350 undefined FUN_1011f350(void) 164 3 +1011f400 FUN_1011f400 undefined FUN_1011f400(void) 212 3 +1011f4e0 FUN_1011f4e0 undefined FUN_1011f4e0(void) 68 1 +1011f530 FUN_1011f530 undefined FUN_1011f530(void) 746 13 SysFreeString +1011f820 FUN_1011f820 undefined FUN_1011f820(void) 138 1 +1011f8b0 FUN_1011f8b0 undefined FUN_1011f8b0(void) 77 1 +1011f900 FUN_1011f900 undefined FUN_1011f900(void) 138 1 +1011f990 FUN_1011f990 undefined FUN_1011f990(void) 48 1 +1011f9c0 FUN_1011f9c0 undefined FUN_1011f9c0(void) 1724 29 +10120080 FUN_10120080 undefined FUN_10120080(void) 2402 22 SysFreeString +101209f0 FUN_101209f0 undefined FUN_101209f0(void) 1663 15 +10121080 FUN_10121080 undefined FUN_10121080(void) 713 14 +10121350 FUN_10121350 undefined FUN_10121350(void) 566 14 +10121590 FUN_10121590 undefined FUN_10121590(void) 138 1 +10121620 FUN_10121620 undefined FUN_10121620(void) 333 3 +10121770 FUN_10121770 undefined FUN_10121770(void) 190 4 +101217ff Catch@101217ff undefined Catch@101217ff(void) 21 2 +10121850 FUN_10121850 undefined FUN_10121850(void) 105 1 +101218c0 FUN_101218c0 undefined FUN_101218c0(void) 349 9 +10121a20 FUN_10121a20 undefined FUN_10121a20(void) 958 15 +10121de0 FUN_10121de0 undefined FUN_10121de0(void) 642 3 +10122070 FUN_10122070 undefined FUN_10122070(void) 190 4 +101220ff Catch@101220ff undefined Catch@101220ff(void) 21 2 +10122150 FUN_10122150 undefined FUN_10122150(void) 105 1 +101221c0 FUN_101221c0 undefined FUN_101221c0(void) 105 1 +10122230 FUN_10122230 undefined FUN_10122230(void) 446 5 +101223f0 FUN_101223f0 undefined FUN_101223f0(void) 105 1 +10122460 FUN_10122460 undefined FUN_10122460(void) 165 2 +10122505 Catch@10122505 undefined Catch@10122505(void) 21 2 +10122520 FUN_10122520 undefined FUN_10122520(void) 117 1 +101225a0 FUN_101225a0 undefined FUN_101225a0(void) 115 1 +10122620 FUN_10122620 undefined FUN_10122620(void) 38 2 +10122650 FUN_10122650 undefined FUN_10122650(void) 582 4 +101228a0 FUN_101228a0 undefined FUN_101228a0(void) 115 1 +10122920 FUN_10122920 undefined FUN_10122920(void) 119 1 +101229a0 FUN_101229a0 undefined FUN_101229a0(void) 544 4 +10122bc0 FUN_10122bc0 undefined FUN_10122bc0(void) 196 4 +10122c55 Catch@10122c55 undefined Catch@10122c55(void) 21 2 +10122ca0 FUN_10122ca0 undefined FUN_10122ca0(void) 610 12 +10122f10 FUN_10122f10 undefined FUN_10122f10(void) 38 2 +10122f40 FUN_10122f40 undefined FUN_10122f40(void) 195 4 +10122fd4 Catch@10122fd4 undefined Catch@10122fd4(void) 28 2 +10123020 FUN_10123020 undefined FUN_10123020(void) 936 20 +101233d0 FUN_101233d0 undefined FUN_101233d0(void) 77 1 +10123420 FUN_10123420 undefined FUN_10123420(void) 175 3 +101234d0 FUN_101234d0 undefined FUN_101234d0(void) 82 3 +10123530 FUN_10123530 undefined FUN_10123530(void) 121 1 +101235b0 FUN_101235b0 undefined FUN_101235b0(void) 213 3 +10123690 FUN_10123690 undefined FUN_10123690(void) 374 9 +10123806 Catch@10123806 undefined Catch@10123806(void) 84 4 +10123860 FUN_10123860 undefined FUN_10123860(void) 154 3 +10123900 FUN_10123900 undefined FUN_10123900(void) 2440 35 SysFreeString +10124288 Catch@10124288 undefined Catch@10124288(void) 141 4 +10124320 FUN_10124320 undefined FUN_10124320(void) 132 1 +101243b0 thunk_FUN_10123860 undefined thunk_FUN_10123860(void) 5 0 +101243c0 FUN_101243c0 undefined FUN_101243c0(void) 132 1 +10124450 FUN_10124450 undefined FUN_10124450(void) 557 3 +10124680 FUN_10124680 undefined FUN_10124680(void) 190 4 +1012470f Catch@1012470f undefined Catch@1012470f(void) 21 2 +10124760 FUN_10124760 undefined FUN_10124760(void) 226 4 +10124850 FUN_10124850 undefined FUN_10124850(void) 2265 30 +10125129 Catch@10125129 undefined Catch@10125129(void) 86 4 +10125180 FUN_10125180 undefined FUN_10125180(void) 2468 30 +10125b30 FUN_10125b30 undefined FUN_10125b30(void) 3015 29 +10126710 FUN_10126710 undefined FUN_10126710(void) 842 14 +10126a60 FUN_10126a60 undefined FUN_10126a60(void) 1164 25 +10126ef0 FUN_10126ef0 undefined FUN_10126ef0(void) 167 3 +10126fa0 FUN_10126fa0 undefined FUN_10126fa0(void) 1840 29 +101276e0 FUN_101276e0 undefined FUN_101276e0(void) 1661 21 +10127b9f Catch@10127b9f undefined Catch@10127b9f(void) 87 4 +10127dd0 FUN_10127dd0 undefined FUN_10127dd0(void) 1757 28 +101284ad Catch@101284ad undefined Catch@101284ad(void) 87 4 +10128510 FUN_10128510 undefined FUN_10128510(void) 365 8 +10128680 FUN_10128680 undefined FUN_10128680(void) 359 7 +101287f0 FUN_101287f0 undefined FUN_101287f0(void) 38 2 +10128820 FUN_10128820 undefined FUN_10128820(void) 5848 67 SysFreeString +10129ef8 Catch@10129ef8 undefined Catch@10129ef8(void) 310 4 +10129fae FUN_10129fae undefined FUN_10129fae(void) 30 1 +1012a070 FUN_1012a070 undefined FUN_1012a070(void) 1102 20 +1012a4d0 FUN_1012a4d0 undefined FUN_1012a4d0(void) 22 0 +1012a4f0 FUN_1012a4f0 undefined FUN_1012a4f0(void) 48 1 +1012a520 FUN_1012a520 undefined FUN_1012a520(void) 27 1 +1012a540 FUN_1012a540 undefined FUN_1012a540(void) 12 0 +1012a550 FUN_1012a550 undefined FUN_1012a550(void) 82 1 +1012a5b0 FUN_1012a5b0 undefined FUN_1012a5b0(void) 20 0 +1012a5d0 FUN_1012a5d0 undefined FUN_1012a5d0(void) 32 0 +1012a5f0 FUN_1012a5f0 undefined FUN_1012a5f0(void) 44 0 +1012a620 FUN_1012a620 undefined FUN_1012a620(void) 39 1 +1012a650 FUN_1012a650 undefined FUN_1012a650(void) 62 0 +1012a690 FUN_1012a690 undefined FUN_1012a690(void) 20 0 +1012a6c0 FUN_1012a6c0 undefined FUN_1012a6c0(void) 55 1 +1012a700 FUN_1012a700 undefined FUN_1012a700(void) 34 0 +1012a730 FUN_1012a730 undefined FUN_1012a730(void) 47 0 +1012a780 FUN_1012a780 undefined FUN_1012a780(void) 5 0 +1012a790 FUN_1012a790 undefined FUN_1012a790(void) 5 0 +1012a7a0 FUN_1012a7a0 undefined FUN_1012a7a0(void) 5 0 +1012a7b0 FUN_1012a7b0 undefined FUN_1012a7b0(void) 32 0 +1012a7d0 FUN_1012a7d0 undefined FUN_1012a7d0(void) 34 0 +1012a800 FUN_1012a800 undefined FUN_1012a800(void) 14 0 +1012a810 FUN_1012a810 undefined FUN_1012a810(void) 35 0 +1012a880 FUN_1012a880 undefined FUN_1012a880(void) 15 0 +1012a8b0 FUN_1012a8b0 undefined FUN_1012a8b0(void) 22 0 +1012a970 FUN_1012a970 undefined FUN_1012a970(void) 8 0 +1012aa10 FUN_1012aa10 undefined FUN_1012aa10(void) 10 0 +1012aa70 FUN_1012aa70 undefined FUN_1012aa70(void) 8 0 +1012aa80 FUN_1012aa80 undefined FUN_1012aa80(void) 8 0 +1012aa90 FUN_1012aa90 undefined FUN_1012aa90(void) 8 0 +1012aab0 FUN_1012aab0 undefined FUN_1012aab0(void) 8 0 +1012aac0 FUN_1012aac0 undefined FUN_1012aac0(void) 8 0 +1012aae0 FUN_1012aae0 undefined FUN_1012aae0(void) 8 0 +1012aaf0 FUN_1012aaf0 undefined FUN_1012aaf0(void) 8 0 +1012ab10 FUN_1012ab10 undefined FUN_1012ab10(void) 146 3 +1012abc0 FUN_1012abc0 undefined FUN_1012abc0(void) 140 3 +1012ac50 FUN_1012ac50 undefined FUN_1012ac50(void) 8 0 +1012ac70 FUN_1012ac70 undefined FUN_1012ac70(void) 144 3 +1012ad10 FUN_1012ad10 undefined FUN_1012ad10(void) 140 3 +1012adb0 FUN_1012adb0 undefined FUN_1012adb0(void) 152 3 +1012ae60 FUN_1012ae60 undefined FUN_1012ae60(void) 140 3 +1012af10 FUN_1012af10 undefined FUN_1012af10(void) 140 3 +1012afa0 FUN_1012afa0 undefined FUN_1012afa0(void) 8 0 +1012afb0 FUN_1012afb0 undefined FUN_1012afb0(void) 36 0 +1012afe0 FUN_1012afe0 undefined FUN_1012afe0(void) 8 0 +1012aff0 FUN_1012aff0 undefined FUN_1012aff0(void) 48 0 +1012b030 FUN_1012b030 undefined FUN_1012b030(void) 84 0 +1012b090 FUN_1012b090 undefined FUN_1012b090(void) 84 0 +1012b0f0 FUN_1012b0f0 undefined FUN_1012b0f0(void) 84 0 +1012b190 FUN_1012b190 undefined FUN_1012b190(void) 84 0 +1012b1f0 FUN_1012b1f0 undefined FUN_1012b1f0(void) 8 0 +1012b200 FUN_1012b200 undefined FUN_1012b200(void) 8 0 +1012b210 FUN_1012b210 undefined FUN_1012b210(void) 8 0 +1012b220 FUN_1012b220 undefined FUN_1012b220(void) 8 0 +1012b230 FUN_1012b230 undefined FUN_1012b230(void) 8 0 +1012b240 FUN_1012b240 undefined FUN_1012b240(void) 60 0 +1012b280 FUN_1012b280 undefined FUN_1012b280(void) 8 0 +1012b290 FUN_1012b290 undefined FUN_1012b290(void) 8 0 +1012b2a0 FUN_1012b2a0 undefined FUN_1012b2a0(void) 8 0 +1012b2b0 FUN_1012b2b0 undefined FUN_1012b2b0(void) 8 0 +1012b2c0 FUN_1012b2c0 undefined FUN_1012b2c0(void) 102 0 +1012b330 FUN_1012b330 undefined FUN_1012b330(void) 8 0 +1012b340 FUN_1012b340 undefined FUN_1012b340(void) 8 0 +1012b350 FUN_1012b350 undefined FUN_1012b350(void) 8 0 +1012b360 FUN_1012b360 undefined FUN_1012b360(void) 8 0 +1012b370 FUN_1012b370 undefined FUN_1012b370(void) 14 0 +1012b380 FUN_1012b380 undefined FUN_1012b380(void) 14 0 +1012b390 FUN_1012b390 undefined FUN_1012b390(void) 14 0 +1012b3b0 FUN_1012b3b0 undefined FUN_1012b3b0(void) 19 0 +1012b3f0 FUN_1012b3f0 undefined FUN_1012b3f0(void) 19 0 +1012b410 FUN_1012b410 undefined FUN_1012b410(void) 14 0 +1012b420 FUN_1012b420 undefined FUN_1012b420(void) 8 0 +1012b430 FUN_1012b430 undefined FUN_1012b430(void) 8 0 +1012b440 FUN_1012b440 undefined FUN_1012b440(void) 8 0 +1012b450 FUN_1012b450 undefined FUN_1012b450(void) 8 0 +1012b460 FUN_1012b460 undefined FUN_1012b460(void) 8 0 +1012b470 FUN_1012b470 undefined FUN_1012b470(void) 8 0 +1012b480 FUN_1012b480 undefined FUN_1012b480(void) 101 0 +1012b4f0 FUN_1012b4f0 undefined FUN_1012b4f0(void) 90 0 +1012b550 FUN_1012b550 undefined FUN_1012b550(void) 90 0 +1012b5b0 FUN_1012b5b0 undefined FUN_1012b5b0(void) 101 0 +1012b620 FUN_1012b620 undefined FUN_1012b620(void) 90 0 +1012b680 FUN_1012b680 undefined FUN_1012b680(void) 8 0 +1012b690 FUN_1012b690 undefined FUN_1012b690(void) 8 0 +1012b6a0 FUN_1012b6a0 undefined FUN_1012b6a0(void) 8 0 +1012b6b0 FUN_1012b6b0 undefined FUN_1012b6b0(void) 21 0 +1012b6e0 FUN_1012b6e0 undefined FUN_1012b6e0(void) 74 0 +1012b760 FUN_1012b760 undefined FUN_1012b760(void) 29 1 +1012b780 FUN_1012b780 undefined FUN_1012b780(void) 11 0 +1012b790 FUN_1012b790 undefined FUN_1012b790(void) 11 0 +1012b7a0 FUN_1012b7a0 undefined FUN_1012b7a0(void) 18 0 +1012b7c0 FUN_1012b7c0 undefined FUN_1012b7c0(void) 18 0 +1012b7e0 FUN_1012b7e0 undefined FUN_1012b7e0(void) 68 0 +1012b830 FUN_1012b830 undefined FUN_1012b830(void) 45 0 +1012b870 FUN_1012b870 undefined FUN_1012b870(void) 21 1 +1012b8a0 FUN_1012b8a0 undefined FUN_1012b8a0(void) 21 1 +1012b8c0 FUN_1012b8c0 undefined FUN_1012b8c0(void) 10 0 +1012b8e0 FUN_1012b8e0 undefined FUN_1012b8e0(void) 21 1 +1012b910 FUN_1012b910 undefined FUN_1012b910(void) 21 1 +1012b940 FUN_1012b940 undefined FUN_1012b940(void) 21 1 +1012b980 FUN_1012b980 undefined FUN_1012b980(void) 21 1 +1012b9b0 FUN_1012b9b0 undefined FUN_1012b9b0(void) 21 1 +1012b9d0 FUN_1012b9d0 undefined FUN_1012b9d0(void) 60 0 +1012ba10 FUN_1012ba10 undefined FUN_1012ba10(void) 21 0 +1012ba30 FUN_1012ba30 undefined FUN_1012ba30(void) 21 0 +1012ba50 FUN_1012ba50 undefined FUN_1012ba50(void) 104 0 +1012bad0 FUN_1012bad0 undefined FUN_1012bad0(void) 11 0 +1012bae0 FUN_1012bae0 undefined FUN_1012bae0(void) 11 0 +1012baf0 FUN_1012baf0 undefined FUN_1012baf0(void) 12 1 +1012bb00 FUN_1012bb00 undefined FUN_1012bb00(void) 12 1 +1012bb10 FUN_1012bb10 undefined FUN_1012bb10(void) 12 1 +1012bb60 FUN_1012bb60 undefined FUN_1012bb60(void) 12 1 +1012bb70 FUN_1012bb70 undefined FUN_1012bb70(void) 24 0 +1012bb90 FUN_1012bb90 undefined FUN_1012bb90(void) 24 0 +1012bbb0 FUN_1012bbb0 undefined FUN_1012bbb0(void) 24 0 +1012bbd0 FUN_1012bbd0 undefined FUN_1012bbd0(void) 24 0 +1012bbf0 FUN_1012bbf0 undefined FUN_1012bbf0(void) 13 0 +1012bc00 FUN_1012bc00 undefined FUN_1012bc00(void) 13 0 +1012bc10 FUN_1012bc10 undefined FUN_1012bc10(void) 13 0 +1012bc30 FUN_1012bc30 undefined FUN_1012bc30(void) 142 3 +1012bcc0 FUN_1012bcc0 undefined FUN_1012bcc0(void) 142 3 +1012bd50 FUN_1012bd50 undefined FUN_1012bd50(void) 142 3 +1012bde0 FUN_1012bde0 undefined FUN_1012bde0(void) 142 3 +1012be70 FUN_1012be70 undefined FUN_1012be70(void) 19 0 +1012be90 FUN_1012be90 undefined FUN_1012be90(void) 14 0 +1012bea0 FUN_1012bea0 undefined FUN_1012bea0(void) 19 0 +1012bee0 FUN_1012bee0 undefined FUN_1012bee0(void) 99 0 +1012bf50 FUN_1012bf50 undefined FUN_1012bf50(void) 88 0 +1012bfb0 FUN_1012bfb0 undefined FUN_1012bfb0(void) 88 0 +1012c010 FUN_1012c010 undefined FUN_1012c010(void) 99 0 +1012c080 FUN_1012c080 undefined FUN_1012c080(void) 88 0 +1012c0e0 FUN_1012c0e0 undefined FUN_1012c0e0(void) 24 0 +1012c100 FUN_1012c100 undefined FUN_1012c100(void) 24 0 +1012c120 FUN_1012c120 undefined FUN_1012c120(void) 24 0 +1012c140 FUN_1012c140 undefined FUN_1012c140(void) 24 0 +1012c160 FUN_1012c160 undefined FUN_1012c160(void) 60 0 +1012c1a0 FUN_1012c1a0 undefined FUN_1012c1a0(void) 74 0 +1012c1f0 FUN_1012c1f0 undefined FUN_1012c1f0(void) 87 0 +1012c250 FUN_1012c250 undefined FUN_1012c250(void) 101 0 +1012c2c0 FUN_1012c2c0 undefined FUN_1012c2c0(void) 50 0 +1012c300 FUN_1012c300 undefined FUN_1012c300(void) 145 3 +1012c3a0 FUN_1012c3a0 undefined FUN_1012c3a0(void) 145 3 +1012c440 FUN_1012c440 undefined FUN_1012c440(void) 145 3 +1012c4e0 FUN_1012c4e0 undefined FUN_1012c4e0(void) 167 3 +1012c590 FUN_1012c590 undefined FUN_1012c590(void) 65 0 +1012c5e0 FUN_1012c5e0 undefined FUN_1012c5e0(void) 167 3 +1012c690 FUN_1012c690 undefined FUN_1012c690(void) 42 1 +1012c6c0 FUN_1012c6c0 undefined FUN_1012c6c0(void) 167 3 +1012c770 FUN_1012c770 undefined FUN_1012c770(void) 167 3 +1012c820 FUN_1012c820 undefined FUN_1012c820(void) 120 1 +1012c8b0 FUN_1012c8b0 undefined FUN_1012c8b0(void) 102 0 +1012c920 FUN_1012c920 undefined FUN_1012c920(void) 42 1 +1012c950 FUN_1012c950 undefined FUN_1012c950(void) 546 2 +1012cb80 FUN_1012cb80 undefined FUN_1012cb80(void) 546 2 +1012cdb0 FUN_1012cdb0 undefined FUN_1012cdb0(void) 546 2 +1012cfe0 FUN_1012cfe0 undefined FUN_1012cfe0(void) 546 2 +1012d210 FUN_1012d210 undefined FUN_1012d210(void) 12 1 +1012d220 FUN_1012d220 undefined FUN_1012d220(void) 24 0 +1012d240 FUN_1012d240 undefined FUN_1012d240(void) 24 0 +1012d260 FUN_1012d260 undefined FUN_1012d260(void) 24 0 +1012d280 FUN_1012d280 undefined FUN_1012d280(void) 24 0 +1012d2a0 FUN_1012d2a0 undefined FUN_1012d2a0(void) 190 4 +1012d32f Catch@1012d32f undefined Catch@1012d32f(void) 21 2 +1012d380 FUN_1012d380 undefined FUN_1012d380(void) 190 4 +1012d40f Catch@1012d40f undefined Catch@1012d40f(void) 21 2 +1012d460 FUN_1012d460 undefined FUN_1012d460(void) 190 4 +1012d4ef Catch@1012d4ef undefined Catch@1012d4ef(void) 21 2 +1012d540 FUN_1012d540 undefined FUN_1012d540(void) 13 0 +1012d550 FUN_1012d550 undefined FUN_1012d550(void) 54 0 +1012d590 FUN_1012d590 undefined FUN_1012d590(void) 129 0 +1012d620 FUN_1012d620 undefined FUN_1012d620(void) 186 4 +1012d6a3 Catch@1012d6a3 undefined Catch@1012d6a3(void) 21 2 +1012d6f0 FUN_1012d6f0 undefined FUN_1012d6f0(void) 186 4 +1012d773 Catch@1012d773 undefined Catch@1012d773(void) 21 2 +1012d7c0 FUN_1012d7c0 undefined FUN_1012d7c0(void) 24 0 +1012d7e0 FUN_1012d7e0 undefined FUN_1012d7e0(void) 24 0 +1012d800 FUN_1012d800 undefined FUN_1012d800(void) 24 0 +1012d820 FUN_1012d820 undefined FUN_1012d820(void) 24 0 +1012d840 FUN_1012d840 undefined FUN_1012d840(void) 60 0 +1012d880 FUN_1012d880 undefined FUN_1012d880(void) 100 0 +1012d8f0 FUN_1012d8f0 undefined FUN_1012d8f0(void) 153 3 +1012d990 FUN_1012d990 undefined FUN_1012d990(void) 153 3 +1012da30 FUN_1012da30 undefined FUN_1012da30(void) 153 3 +1012dad0 FUN_1012dad0 undefined FUN_1012dad0(void) 177 3 +1012db90 FUN_1012db90 undefined FUN_1012db90(void) 177 3 +1012dc50 FUN_1012dc50 undefined FUN_1012dc50(void) 23 1 +1012dc70 FUN_1012dc70 undefined FUN_1012dc70(void) 15 0 +1012dc80 FUN_1012dc80 undefined FUN_1012dc80(void) 15 0 +1012dc90 FUN_1012dc90 undefined FUN_1012dc90(void) 177 3 +1012dd50 FUN_1012dd50 undefined FUN_1012dd50(void) 177 3 +1012de10 FUN_1012de10 undefined FUN_1012de10(void) 186 4 +1012de93 Catch@1012de93 undefined Catch@1012de93(void) 21 2 +1012dee0 FUN_1012dee0 undefined FUN_1012dee0(void) 51 0 +1012df20 FUN_1012df20 undefined FUN_1012df20(void) 39 1 +1012df50 FUN_1012df50 undefined FUN_1012df50(void) 72 2 +1012dfa0 FUN_1012dfa0 undefined FUN_1012dfa0(void) 72 2 +1012dff0 FUN_1012dff0 undefined FUN_1012dff0(void) 217 3 +1012e0d0 FUN_1012e0d0 undefined FUN_1012e0d0(void) 268 3 +1012e1e0 FUN_1012e1e0 undefined FUN_1012e1e0(void) 234 3 +1012e2d0 FUN_1012e2d0 undefined FUN_1012e2d0(void) 282 3 +1012e3f0 FUN_1012e3f0 undefined FUN_1012e3f0(void) 83 2 +1012e450 FUN_1012e450 undefined FUN_1012e450(void) 125 0 +1012e4d0 FUN_1012e4d0 undefined FUN_1012e4d0(void) 83 1 +1012e530 FUN_1012e530 undefined FUN_1012e530(void) 69 2 +1012e580 FUN_1012e580 undefined FUN_1012e580(void) 58 1 +1012e5c0 FUN_1012e5c0 undefined FUN_1012e5c0(void) 69 2 +1012e610 FUN_1012e610 undefined FUN_1012e610(void) 58 1 +1012e650 FUN_1012e650 undefined FUN_1012e650(void) 72 2 +1012e6a0 FUN_1012e6a0 undefined FUN_1012e6a0(void) 104 2 +1012e710 FUN_1012e710 undefined FUN_1012e710(void) 38 2 +1012e740 FUN_1012e740 undefined FUN_1012e740(void) 38 2 +1012e770 FUN_1012e770 undefined FUN_1012e770(void) 38 2 +1012e7a0 FUN_1012e7a0 undefined FUN_1012e7a0(void) 79 2 +1012e7f0 FUN_1012e7f0 undefined FUN_1012e7f0(void) 123 0 +1012e870 FUN_1012e870 undefined FUN_1012e870(void) 215 2 +1012e950 FUN_1012e950 undefined FUN_1012e950(void) 167 3 +1012ea00 FUN_1012ea00 undefined FUN_1012ea00(void) 153 3 +1012eaa0 FUN_1012eaa0 undefined FUN_1012eaa0(void) 340 8 +1012ec00 FUN_1012ec00 undefined FUN_1012ec00(void) 324 4 +1012ed50 FUN_1012ed50 undefined FUN_1012ed50(void) 439 4 +1012ef10 FUN_1012ef10 undefined FUN_1012ef10(void) 128 1 +1012ef90 FUN_1012ef90 undefined FUN_1012ef90(void) 69 2 +1012efe0 FUN_1012efe0 undefined FUN_1012efe0(void) 32 1 +1012f000 FUN_1012f000 undefined FUN_1012f000(void) 58 2 +1012f040 FUN_1012f040 undefined FUN_1012f040(void) 190 4 +1012f0cf Catch@1012f0cf undefined Catch@1012f0cf(void) 21 2 +1012f160 FUN_1012f160 undefined FUN_1012f160(void) 255 6 +1012f260 FUN_1012f260 undefined FUN_1012f260(void) 42 1 +1012f290 FUN_1012f290 undefined FUN_1012f290(void) 114 2 +1012f310 FUN_1012f310 undefined FUN_1012f310(void) 222 5 +1012f3f0 FUN_1012f3f0 undefined FUN_1012f3f0(void) 60 2 +1012f430 FUN_1012f430 undefined FUN_1012f430(void) 222 2 +1012f520 FUN_1012f520 undefined FUN_1012f520(void) 38 2 +1012f550 FUN_1012f550 undefined FUN_1012f550(void) 583 7 +1012f7a0 FUN_1012f7a0 undefined FUN_1012f7a0(void) 161 5 +1012f850 FUN_1012f850 undefined FUN_1012f850(void) 738 12 +1012fb40 FUN_1012fb40 undefined FUN_1012fb40(void) 598 13 +1012fda0 FUN_1012fda0 undefined FUN_1012fda0(void) 54 1 +1012fde0 FUN_1012fde0 undefined FUN_1012fde0(void) 51 1 +1012fe20 FUN_1012fe20 undefined FUN_1012fe20(void) 5390 28 +10131370 FUN_10131370 undefined FUN_10131370(void) 698 16 +10131630 FUN_10131630 undefined FUN_10131630(void) 175 3 +101316e0 FUN_101316e0 undefined FUN_101316e0(void) 175 3 +10131790 FUN_10131790 undefined FUN_10131790(void) 175 3 +10131840 FUN_10131840 undefined FUN_10131840(void) 175 3 +101318f0 FUN_101318f0 undefined FUN_101318f0(void) 51 1 +10131930 FUN_10131930 undefined FUN_10131930(void) 236 5 +10131a20 FUN_10131a20 undefined FUN_10131a20(void) 1287 9 +10131f30 FUN_10131f30 undefined FUN_10131f30(void) 6386 33 CoCreateInstance +10133840 FUN_10133840 undefined FUN_10133840(void) 1125 17 +10133cb0 FUN_10133cb0 undefined FUN_10133cb0(void) 931 16 +10134060 FUN_10134060 undefined FUN_10134060(void) 687 9 +10134310 FUN_10134310 undefined FUN_10134310(void) 691 21 CoCreateInstance +101345d0 FUN_101345d0 undefined FUN_101345d0(void) 170 4 +10134680 FUN_10134680 undefined FUN_10134680(void) 26 1 +101346a0 FUN_101346a0 undefined FUN_101346a0(void) 13 0 +101346d0 FUN_101346d0 undefined FUN_101346d0(void) 21 0 +101346f0 FUN_101346f0 undefined FUN_101346f0(void) 17 0 +10134730 FUN_10134730 undefined FUN_10134730(void) 75 0 +10134780 FUN_10134780 undefined FUN_10134780(void) 73 0 +101347d0 FUN_101347d0 undefined FUN_101347d0(void) 57 0 +10134810 FUN_10134810 undefined FUN_10134810(void) 89 0 +10134870 FUN_10134870 undefined FUN_10134870(void) 72 0 +101348c0 FUN_101348c0 undefined FUN_101348c0(void) 45 0 +101348f0 FUN_101348f0 undefined FUN_101348f0(void) 19 0 +10134910 FUN_10134910 undefined FUN_10134910(void) 95 1 +10134970 FUN_10134970 undefined FUN_10134970(void) 21 0 +10134990 FUN_10134990 undefined FUN_10134990(void) 50 0 +101349d0 FUN_101349d0 undefined FUN_101349d0(void) 32 1 +101349f0 FUN_101349f0 undefined FUN_101349f0(void) 21 0 +10134a10 FUN_10134a10 undefined FUN_10134a10(void) 150 2 +10134af0 FUN_10134af0 undefined FUN_10134af0(void) 20 1 +10134b10 FUN_10134b10 undefined FUN_10134b10(void) 11 0 +10134b20 FUN_10134b20 undefined FUN_10134b20(void) 9 0 +10134b30 FUN_10134b30 undefined FUN_10134b30(void) 48 0 +10134bd0 FUN_10134bd0 undefined FUN_10134bd0(void) 45 1 +10134c00 FUN_10134c00 undefined FUN_10134c00(void) 14 0 +10134c10 FUN_10134c10 undefined FUN_10134c10(void) 17 0 +10134c30 Attach void Attach(CComBSTR * this, wchar_t * param_1) 31 1 SysFreeString +10134c60 FUN_10134c60 undefined FUN_10134c60(void) 47 1 +10134c90 FUN_10134c90 undefined FUN_10134c90(void) 34 1 +10134cc0 FUN_10134cc0 undefined FUN_10134cc0(void) 8 0 +10134ce0 FUN_10134ce0 undefined FUN_10134ce0(void) 8 0 +10134d00 FUN_10134d00 undefined FUN_10134d00(void) 150 3 +10134db0 FUN_10134db0 undefined FUN_10134db0(void) 84 0 +10134e10 FUN_10134e10 undefined FUN_10134e10(void) 84 0 +10134eb0 FUN_10134eb0 undefined FUN_10134eb0(void) 84 0 +10134f10 FUN_10134f10 undefined FUN_10134f10(void) 84 0 +10134f70 FUN_10134f70 undefined FUN_10134f70(void) 8 0 +10134f80 FUN_10134f80 undefined FUN_10134f80(void) 8 0 +10134f90 FUN_10134f90 undefined FUN_10134f90(void) 8 0 +10134fa0 FUN_10134fa0 undefined FUN_10134fa0(void) 8 0 +10134fb0 FUN_10134fb0 undefined FUN_10134fb0(void) 8 0 +10134fc0 FUN_10134fc0 undefined FUN_10134fc0(void) 8 0 +10134fd0 FUN_10134fd0 undefined FUN_10134fd0(void) 8 0 +10134fe0 FUN_10134fe0 undefined FUN_10134fe0(void) 8 0 +10134ff0 FUN_10134ff0 undefined FUN_10134ff0(void) 8 0 +10135000 FUN_10135000 undefined FUN_10135000(void) 8 0 +10135010 FUN_10135010 undefined FUN_10135010(void) 8 0 +10135020 FUN_10135020 undefined FUN_10135020(void) 24 0 +10135040 FUN_10135040 undefined FUN_10135040(void) 8 0 +10135050 FUN_10135050 undefined FUN_10135050(void) 24 0 +10135070 FUN_10135070 undefined FUN_10135070(void) 24 0 +10135090 FUN_10135090 undefined FUN_10135090(void) 8 0 +101350a0 FUN_101350a0 undefined FUN_101350a0(void) 8 0 +101350b0 FUN_101350b0 undefined FUN_101350b0(void) 8 0 +101350c0 FUN_101350c0 undefined FUN_101350c0(void) 8 0 +101350d0 FUN_101350d0 undefined FUN_101350d0(void) 8 0 +10135110 FUN_10135110 undefined FUN_10135110(void) 30 0 +10135130 FUN_10135130 undefined FUN_10135130(void) 24 0 +10135150 FUN_10135150 undefined FUN_10135150(void) 24 0 +10135170 FUN_10135170 undefined FUN_10135170(void) 8 0 +10135180 FUN_10135180 undefined FUN_10135180(void) 24 0 +101351a0 FUN_101351a0 undefined FUN_101351a0(void) 8 0 +101351b0 FUN_101351b0 undefined FUN_101351b0(void) 24 0 +101351d0 FUN_101351d0 undefined FUN_101351d0(void) 24 0 +101351f0 FUN_101351f0 undefined FUN_101351f0(void) 90 0 +10135250 FUN_10135250 undefined FUN_10135250(void) 10 0 +10135260 FUN_10135260 undefined FUN_10135260(void) 10 0 +10135270 FUN_10135270 undefined FUN_10135270(void) 83 0 +101352d0 FUN_101352d0 undefined FUN_101352d0(void) 8 0 +101352e0 FUN_101352e0 undefined FUN_101352e0(void) 8 0 +10135300 FUN_10135300 undefined FUN_10135300(void) 8 0 +10135310 FUN_10135310 undefined FUN_10135310(void) 30 0 +10135330 FUN_10135330 undefined FUN_10135330(void) 8 0 +10135340 FUN_10135340 undefined FUN_10135340(void) 36 0 +10135370 FUN_10135370 undefined FUN_10135370(void) 27 0 +10135390 FUN_10135390 undefined FUN_10135390(void) 10 0 +101353b0 FUN_101353b0 undefined FUN_101353b0(void) 303 6 SysFreeString +101354e0 FUN_101354e0 undefined FUN_101354e0(void) 135 0 +10135570 FUN_10135570 undefined FUN_10135570(void) 13 0 +10135580 FUN_10135580 undefined FUN_10135580(void) 87 0 +101355e0 FUN_101355e0 undefined FUN_101355e0(void) 17 0 +10135600 FUN_10135600 undefined FUN_10135600(void) 14 0 +10135610 FUN_10135610 undefined FUN_10135610(void) 11 0 +10135630 FUN_10135630 undefined FUN_10135630(void) 21 1 +10135650 FUN_10135650 undefined FUN_10135650(void) 24 0 +10135670 FUN_10135670 undefined FUN_10135670(void) 24 0 +10135690 FUN_10135690 undefined FUN_10135690(void) 24 0 +101356b0 FUN_101356b0 undefined FUN_101356b0(void) 19 0 +101356d0 FUN_101356d0 undefined FUN_101356d0(void) 12 1 +101356e0 FUN_101356e0 undefined FUN_101356e0(void) 12 1 +10135700 FUN_10135700 undefined FUN_10135700(void) 24 0 +10135760 FUN_10135760 undefined FUN_10135760(void) 12 1 +10135770 FUN_10135770 undefined FUN_10135770(void) 24 0 +10135790 FUN_10135790 undefined FUN_10135790(void) 24 0 +101357b0 FUN_101357b0 undefined FUN_101357b0(void) 12 1 +101357c0 FUN_101357c0 undefined FUN_101357c0(void) 24 0 +101357e0 FUN_101357e0 undefined FUN_101357e0(void) 24 0 +10135800 FUN_10135800 undefined FUN_10135800(void) 84 0 +10135860 FUN_10135860 undefined FUN_10135860(void) 8 0 +10135870 FUN_10135870 undefined FUN_10135870(void) 30 0 +10135890 FUN_10135890 undefined FUN_10135890(void) 405 6 SysFreeString +10135a30 FUN_10135a30 undefined FUN_10135a30(void) 101 0 +10135aa0 FUN_10135aa0 undefined FUN_10135aa0(void) 24 0 +10135ac0 FUN_10135ac0 undefined FUN_10135ac0(void) 24 0 +10135ae0 FUN_10135ae0 undefined FUN_10135ae0(void) 24 0 +10135b00 FUN_10135b00 undefined FUN_10135b00(void) 24 0 +10135b20 FUN_10135b20 undefined FUN_10135b20(void) 24 0 +10135b40 FUN_10135b40 undefined FUN_10135b40(void) 142 3 +10135bd0 FUN_10135bd0 undefined FUN_10135bd0(void) 142 3 +10135c80 FUN_10135c80 undefined FUN_10135c80(void) 81 0 +10135ce0 FUN_10135ce0 undefined FUN_10135ce0(void) 88 0 +10135d50 FUN_10135d50 undefined FUN_10135d50(void) 21 0 +10135d70 FUN_10135d70 undefined FUN_10135d70(void) 28 0 +10135da0 FUN_10135da0 undefined FUN_10135da0(void) 68 1 +10135df0 FUN_10135df0 undefined FUN_10135df0(void) 160 0 +10135e90 FUN_10135e90 undefined FUN_10135e90(void) 154 1 +10135f30 FUN_10135f30 undefined FUN_10135f30(void) 20 0 +10135f50 FUN_10135f50 undefined FUN_10135f50(void) 43 0 +10135f80 FUN_10135f80 undefined FUN_10135f80(void) 48 1 +10135fb0 FUN_10135fb0 undefined FUN_10135fb0(void) 24 1 +10135fd0 FUN_10135fd0 undefined FUN_10135fd0(void) 167 3 +10136080 FUN_10136080 undefined FUN_10136080(void) 129 0 +10136110 FUN_10136110 undefined FUN_10136110(void) 73 1 +10136160 FUN_10136160 undefined FUN_10136160(void) 29 0 +10136180 FUN_10136180 undefined FUN_10136180(void) 23 1 +101361a0 FUN_101361a0 undefined FUN_101361a0(void) 32 1 +101361c0 FUN_101361c0 undefined FUN_101361c0(void) 19 0 +101361e0 FUN_101361e0 undefined FUN_101361e0(void) 546 2 +10136410 FUN_10136410 undefined FUN_10136410(void) 24 0 +10136430 FUN_10136430 undefined FUN_10136430(void) 546 2 +10136660 FUN_10136660 undefined FUN_10136660(void) 546 2 +10136890 FUN_10136890 undefined FUN_10136890(void) 12 1 +101368a0 FUN_101368a0 undefined FUN_101368a0(void) 24 0 +101368c0 FUN_101368c0 undefined FUN_101368c0(void) 24 0 +101368e0 FUN_101368e0 undefined FUN_101368e0(void) 12 1 +101368f0 FUN_101368f0 undefined FUN_101368f0(void) 24 0 +10136910 FUN_10136910 undefined FUN_10136910(void) 24 0 +10136930 FUN_10136930 undefined FUN_10136930(void) 12 1 +10136940 FUN_10136940 undefined FUN_10136940(void) 73 1 +10136990 FUN_10136990 undefined FUN_10136990(void) 190 4 +10136a1f Catch@10136a1f undefined Catch@10136a1f(void) 21 2 +10136a70 FUN_10136a70 undefined FUN_10136a70(void) 101 0 +10136ae0 FUN_10136ae0 undefined FUN_10136ae0(void) 101 0 +10136b50 FUN_10136b50 undefined FUN_10136b50(void) 142 3 +10136be0 FUN_10136be0 undefined FUN_10136be0(void) 142 3 +10136c70 FUN_10136c70 undefined FUN_10136c70(void) 142 3 +10136d00 FUN_10136d00 undefined FUN_10136d00(void) 95 0 +10136d70 FUN_10136d70 undefined FUN_10136d70(void) 160 0 +10136e10 FUN_10136e10 undefined FUN_10136e10(void) 160 0 +10136eb0 FUN_10136eb0 undefined FUN_10136eb0(void) 68 1 +10136f00 FUN_10136f00 undefined FUN_10136f00(void) 177 3 +10136fc0 FUN_10136fc0 undefined FUN_10136fc0(void) 24 1 +10136fe0 FUN_10136fe0 undefined FUN_10136fe0(void) 23 1 +10137000 FUN_10137000 undefined FUN_10137000(void) 129 0 +10137090 FUN_10137090 undefined FUN_10137090(void) 51 1 +101370d0 FUN_101370d0 undefined FUN_101370d0(void) 32 1 +101370f0 FUN_101370f0 undefined FUN_101370f0(void) 32 1 +10137110 FUN_10137110 undefined FUN_10137110(void) 209 3 +101371f0 FUN_101371f0 undefined FUN_101371f0(void) 209 3 +101372d0 FUN_101372d0 undefined FUN_101372d0(void) 234 4 +101373c0 FUN_101373c0 undefined FUN_101373c0(void) 12 1 +101373d0 FUN_101373d0 undefined FUN_101373d0(void) 190 4 +1013745f Catch@1013745f undefined Catch@1013745f(void) 21 2 +101374b0 FUN_101374b0 undefined FUN_101374b0(void) 93 0 +10137510 FUN_10137510 undefined FUN_10137510(void) 31 0 +10137530 FUN_10137530 undefined FUN_10137530(void) 51 1 memcpy +10137570 FUN_10137570 undefined FUN_10137570(void) 221 2 +10137650 FUN_10137650 undefined FUN_10137650(void) 26 1 +10137670 FUN_10137670 undefined FUN_10137670(void) 308 2 +101377b0 FUN_101377b0 undefined FUN_101377b0(void) 67 1 +10137800 FUN_10137800 undefined FUN_10137800(void) 33 1 +10137830 FUN_10137830 undefined FUN_10137830(void) 86 2 +10137890 FUN_10137890 undefined FUN_10137890(void) 24 1 +101378b0 FUN_101378b0 undefined FUN_101378b0(void) 162 1 +10137960 FUN_10137960 undefined FUN_10137960(void) 38 2 +10137990 FUN_10137990 undefined FUN_10137990(void) 38 2 +101379c0 FUN_101379c0 undefined FUN_101379c0(void) 190 4 +10137a4f Catch@10137a4f undefined Catch@10137a4f(void) 21 2 +10137aa0 FUN_10137aa0 undefined FUN_10137aa0(void) 58 2 +10137ae0 FUN_10137ae0 undefined FUN_10137ae0(void) 242 3 memcpy_s +10137be0 FUN_10137be0 undefined FUN_10137be0(void) 284 2 +10137d10 FUN_10137d10 undefined FUN_10137d10(void) 316 7 +10137e4c Catch@10137e4c undefined Catch@10137e4c(void) 13 0 +10137e5c FUN_10137e5c undefined FUN_10137e5c(void) 72 1 +10137eb0 FUN_10137eb0 undefined FUN_10137eb0(void) 299 3 +10137fe0 FUN_10137fe0 undefined FUN_10137fe0(void) 354 3 +10138180 FUN_10138180 undefined FUN_10138180(void) 361 8 SysFreeString +101382f0 FUN_101382f0 undefined FUN_101382f0(void) 181 5 +101383b0 FUN_101383b0 undefined FUN_101383b0(void) 12 1 +101383c0 FUN_101383c0 undefined FUN_101383c0(void) 85 3 +10138420 FUN_10138420 undefined FUN_10138420(void) 144 5 +101384b0 FUN_101384b0 undefined FUN_101384b0(void) 148 4 +10138550 FUN_10138550 undefined FUN_10138550(void) 24 1 +10138570 FUN_10138570 undefined FUN_10138570(void) 38 2 +101385a0 FUN_101385a0 undefined FUN_101385a0(void) 222 5 +10138680 FUN_10138680 undefined FUN_10138680(void) 344 2 +10138810 FUN_10138810 undefined FUN_10138810(void) 134 1 +101388a0 FUN_101388a0 undefined FUN_101388a0(void) 86 2 +10138900 FUN_10138900 undefined FUN_10138900(void) 83 2 +10138960 FUN_10138960 undefined FUN_10138960(void) 83 2 +101389c0 FUN_101389c0 undefined FUN_101389c0(void) 808 14 +10138cf0 FUN_10138cf0 undefined FUN_10138cf0(void) 215 3 +10138dd0 FUN_10138dd0 undefined FUN_10138dd0(void) 584 10 +10139014 Catch@10139014 undefined Catch@10139014(void) 13 0 +1013902d FUN_1013902d undefined FUN_1013902d(void) 654 17 +101392c0 FUN_101392c0 undefined FUN_101392c0(void) 359 8 SysFreeString +10139430 FUN_10139430 undefined FUN_10139430(void) 753 10 +10139730 FUN_10139730 undefined FUN_10139730(void) 2056 20 +10139979 Catch@10139979 undefined Catch@10139979(void) 142 4 +10139a19 FUN_10139a19 undefined FUN_10139a19(void) 441 10 +1013a1a0 FUN_1013a1a0 undefined FUN_1013a1a0(void) 82 3 +1013a200 FUN_1013a200 undefined FUN_1013a200(void) 82 3 +1013a260 FUN_1013a260 undefined FUN_1013a260(void) 319 8 +1013a3a0 FUN_1013a3a0 undefined FUN_1013a3a0(void) 1964 10 +1013ab50 FUN_1013ab50 undefined FUN_1013ab50(void) 610 3 +1013adc0 FUN_1013adc0 undefined FUN_1013adc0(void) 77 1 +1013ae10 FUN_1013ae10 undefined FUN_1013ae10(void) 114 2 +1013ae90 FUN_1013ae90 undefined FUN_1013ae90(void) 175 3 +1013af40 FUN_1013af40 undefined FUN_1013af40(void) 52 1 +1013af80 FUN_1013af80 undefined FUN_1013af80(void) 261 4 +1013b090 FUN_1013b090 undefined FUN_1013b090(void) 90 1 +1013b0f0 FUN_1013b0f0 undefined FUN_1013b0f0(void) 90 1 +1013b150 FUN_1013b150 undefined FUN_1013b150(void) 114 2 +1013b1d0 FUN_1013b1d0 undefined FUN_1013b1d0(void) 998 14 SysAllocString;SysFreeString +1013b5c0 FUN_1013b5c0 undefined FUN_1013b5c0(void) 1087 15 SysAllocString;SysFreeString +1013ba00 FUN_1013ba00 undefined FUN_1013ba00(void) 1059 11 +1013be30 FUN_1013be30 undefined FUN_1013be30(void) 90 1 +1013be90 FUN_1013be90 undefined FUN_1013be90(void) 90 1 +1013bef0 FUN_1013bef0 undefined FUN_1013bef0(void) 1933 23 CoCreateInstance;SysAllocString;SysFreeString +1013c680 FUN_1013c680 undefined FUN_1013c680(void) 15 0 +1013c690 FUN_1013c690 undefined FUN_1013c690(void) 39 0 +1013c6c0 FUN_1013c6c0 undefined FUN_1013c6c0(void) 89 1 +1013c720 FUN_1013c720 undefined FUN_1013c720(void) 1001 16 +1013cb10 FUN_1013cb10 undefined FUN_1013cb10(void) 1542 19 +1013d120 FUN_1013d120 undefined FUN_1013d120(void) 531 12 SysFreeString +1013d340 FUN_1013d340 undefined FUN_1013d340(void) 100 1 +1013d3b0 FUN_1013d3b0 undefined FUN_1013d3b0(void) 102 1 +1013d420 FUN_1013d420 undefined FUN_1013d420(void) 1309 20 +1013d940 FUN_1013d940 undefined FUN_1013d940(void) 82 3 +1013d9a0 FUN_1013d9a0 undefined FUN_1013d9a0(void) 102 1 +1013da10 FUN_1013da10 undefined FUN_1013da10(void) 426 13 +1013dbc0 FUN_1013dbc0 undefined FUN_1013dbc0(void) 1375 20 SysFreeString +1013e120 FUN_1013e120 undefined FUN_1013e120(void) 1146 17 +1013e5a0 FUN_1013e5a0 undefined FUN_1013e5a0(void) 588 9 +1013e7f0 FUN_1013e7f0 undefined FUN_1013e7f0(void) 350 7 +1013e950 FUN_1013e950 undefined FUN_1013e950(void) 190 4 +1013e9df Catch@1013e9df undefined Catch@1013e9df(void) 21 2 +1013ea30 FUN_1013ea30 undefined FUN_1013ea30(void) 365 6 memcpy;memcpy_s +1013eba0 FUN_1013eba0 undefined FUN_1013eba0(void) 33 2 +1013ebd0 FUN_1013ebd0 undefined FUN_1013ebd0(void) 396 9 +1013ed5c Catch@1013ed5c undefined Catch@1013ed5c(void) 13 0 +1013ed6f FUN_1013ed6f undefined FUN_1013ed6f(void) 200 4 +1013ee37 Catch@1013ee37 undefined Catch@1013ee37(void) 205 5 +1013ef07 FUN_1013ef07 undefined FUN_1013ef07(void) 392 8 +1013f05b Catch@1013f05b undefined Catch@1013f05b(void) 93 1 +1013f160 FUN_1013f160 undefined FUN_1013f160(void) 87 1 +1013f1c0 FUN_1013f1c0 undefined FUN_1013f1c0(void) 87 1 +1013f220 FUN_1013f220 undefined FUN_1013f220(void) 1196 20 SysFreeString +1013f4a0 Catch@1013f4a0 undefined Catch@1013f4a0(void) 13 0 +1013f4b0 FUN_1013f4b0 undefined FUN_1013f4b0(void) 113 2 +1013f750 FUN_1013f750 undefined FUN_1013f750(void) 1013 14 +1013fb45 Catch@1013fb45 undefined Catch@1013fb45(void) 13 0 +1013fb5e FUN_1013fb5e undefined FUN_1013fb5e(void) 175 4 +1013fc0d Catch@1013fc0d undefined Catch@1013fc0d(void) 13 0 +1013fc26 FUN_1013fc26 undefined FUN_1013fc26(void) 757 13 +1013ff20 FUN_1013ff20 undefined FUN_1013ff20(void) 187 5 +1013ffe0 FUN_1013ffe0 undefined FUN_1013ffe0(void) 505 8 +101401e0 FUN_101401e0 undefined FUN_101401e0(void) 423 8 +10140390 FUN_10140390 undefined FUN_10140390(void) 187 5 +10140450 FUN_10140450 undefined FUN_10140450(void) 564 13 SysFreeString +10140690 FUN_10140690 undefined FUN_10140690(void) 642 3 +10140920 FUN_10140920 undefined FUN_10140920(void) 87 1 +10140980 FUN_10140980 undefined FUN_10140980(void) 87 1 +101409e0 FUN_101409e0 undefined FUN_101409e0(void) 608 12 +10140c40 FUN_10140c40 undefined FUN_10140c40(void) 806 18 +10140f70 FUN_10140f70 undefined FUN_10140f70(void) 97 1 +10140fe0 FUN_10140fe0 undefined FUN_10140fe0(void) 226 4 +101410d0 FUN_101410d0 undefined FUN_101410d0(void) 99 1 +10141140 FUN_10141140 undefined FUN_10141140(void) 38 2 +10141170 FUN_10141170 undefined FUN_10141170(void) 97 1 +101411e0 FUN_101411e0 undefined FUN_101411e0(void) 190 4 +1014126f Catch@1014126f undefined Catch@1014126f(void) 21 2 +101412c0 FUN_101412c0 undefined FUN_101412c0(void) 38 2 +101412f0 FUN_101412f0 undefined FUN_101412f0(void) 646 17 +10141580 FUN_10141580 undefined FUN_10141580(void) 161 4 +10141630 FUN_10141630 undefined FUN_10141630(void) 410 13 +101417d0 FUN_101417d0 undefined FUN_101417d0(void) 989 16 +10141bb0 FUN_10141bb0 undefined FUN_10141bb0(void) 427 11 +10141d60 FUN_10141d60 undefined FUN_10141d60(void) 1131 16 +101421d0 FUN_101421d0 undefined FUN_101421d0(void) 1030 26 SysFreeString +101425e0 FUN_101425e0 undefined FUN_101425e0(void) 513 12 +101427f0 FUN_101427f0 undefined FUN_101427f0(void) 693 10 +10142ab0 FUN_10142ab0 undefined FUN_10142ab0(void) 740 11 +10142da0 FUN_10142da0 undefined FUN_10142da0(void) 689 11 +10143060 FUN_10143060 undefined FUN_10143060(void) 5574 51 +10144630 FUN_10144630 undefined FUN_10144630(void) 3332 51 SysAllocString;SysFreeString +101452ab Catch@101452ab undefined Catch@101452ab(void) 13 0 +101452be FUN_101452be undefined FUN_101452be(void) 134 4 +10145344 Catch@10145344 undefined Catch@10145344(void) 13 0 +10145357 FUN_10145357 undefined FUN_10145357(void) 3053 55 SysFreeString +10145fcd Catch@10145fcd undefined Catch@10145fcd(void) 13 0 +10145fe0 FUN_10145fe0 undefined FUN_10145fe0(void) 1801 31 SysFreeString +101466f0 FUN_101466f0 undefined FUN_101466f0(void) 2200 31 +10146f90 FUN_10146f90 undefined FUN_10146f90(void) 1437 17 +10147530 FUN_10147530 undefined FUN_10147530(void) 69 1 +10147580 FUN_10147580 undefined FUN_10147580(void) 905 16 +10147960 FUN_10147960 undefined FUN_10147960(void) 10 0 +10147970 FUN_10147970 undefined FUN_10147970(void) 48 0 +101479a0 FUN_101479a0 undefined FUN_101479a0(void) 41 1 SysFreeString +101479d0 FUN_101479d0 undefined FUN_101479d0(void) 33 1 +10147a00 FUN_10147a00 undefined FUN_10147a00(void) 46 0 +10147a30 FUN_10147a30 undefined FUN_10147a30(void) 96 1 +10147a90 FUN_10147a90 undefined FUN_10147a90(void) 153 0 +10147b30 FUN_10147b30 undefined FUN_10147b30(void) 90 1 SysFreeString +10147b90 FUN_10147b90 undefined FUN_10147b90(void) 69 1 SysFreeString +10147be0 FUN_10147be0 undefined FUN_10147be0(void) 90 1 SysFreeString +10147c40 FUN_10147c40 undefined FUN_10147c40(void) 34 1 +10147ca0 FUN_10147ca0 undefined FUN_10147ca0(void) 19 0 +10147cc0 FUN_10147cc0 undefined FUN_10147cc0(void) 19 0 +10147ce0 FUN_10147ce0 undefined FUN_10147ce0(void) 15 0 +10147d00 FUN_10147d00 undefined FUN_10147d00(void) 15 0 +10147d20 FUN_10147d20 undefined FUN_10147d20(void) 15 0 +10147d40 FUN_10147d40 undefined FUN_10147d40(void) 15 0 +10147d70 FUN_10147d70 undefined FUN_10147d70(void) 36 1 +10147db0 FUN_10147db0 undefined FUN_10147db0(void) 102 1 +10147e40 FUN_10147e40 undefined FUN_10147e40(void) 17 0 +10147e60 FUN_10147e60 undefined FUN_10147e60(void) 17 0 +10147e80 FUN_10147e80 undefined FUN_10147e80(void) 11 0 +10147ea0 FUN_10147ea0 undefined FUN_10147ea0(void) 19 1 +10147ec0 FUN_10147ec0 undefined FUN_10147ec0(void) 11 0 +10147ee0 FUN_10147ee0 undefined FUN_10147ee0(void) 19 1 +10147f60 FUN_10147f60 undefined FUN_10147f60(void) 11 0 +10147f70 FUN_10147f70 undefined FUN_10147f70(void) 11 0 +10147f80 FUN_10147f80 undefined FUN_10147f80(void) 8 0 +10147f90 FUN_10147f90 undefined FUN_10147f90(void) 11 0 +10147fa0 FUN_10147fa0 undefined FUN_10147fa0(void) 11 0 +10147fb0 FUN_10147fb0 undefined FUN_10147fb0(void) 11 0 +10147fc0 FUN_10147fc0 undefined FUN_10147fc0(void) 11 0 +10147fd0 FUN_10147fd0 undefined FUN_10147fd0(void) 8 0 +10147fe0 FUN_10147fe0 undefined FUN_10147fe0(void) 11 0 +10147ff0 FUN_10147ff0 undefined FUN_10147ff0(void) 11 0 +10148000 FUN_10148000 undefined FUN_10148000(void) 19 0 +10148020 FUN_10148020 undefined FUN_10148020(void) 14 0 +10148030 FUN_10148030 undefined FUN_10148030(void) 19 0 +10148050 FUN_10148050 undefined FUN_10148050(void) 14 0 +10148070 FUN_10148070 undefined FUN_10148070(void) 29 0 +10148090 FUN_10148090 undefined FUN_10148090(void) 28 0 +101480d0 FUN_101480d0 undefined FUN_101480d0(void) 29 0 +101480f0 FUN_101480f0 undefined FUN_101480f0(void) 28 0 +10148120 FUN_10148120 undefined FUN_10148120(void) 72 0 +10148170 FUN_10148170 undefined FUN_10148170(void) 72 0 +101481c0 FUN_101481c0 undefined FUN_101481c0(void) 8 0 +101481d0 FUN_101481d0 undefined FUN_101481d0(void) 8 0 +101481e0 FUN_101481e0 undefined FUN_101481e0(void) 8 0 +10148200 FUN_10148200 undefined FUN_10148200(void) 146 3 +101482a0 FUN_101482a0 undefined FUN_101482a0(void) 8 0 +101482c0 FUN_101482c0 undefined FUN_101482c0(void) 144 3 +10148370 FUN_10148370 undefined FUN_10148370(void) 84 0 +101483d0 FUN_101483d0 undefined FUN_101483d0(void) 84 0 +10148430 FUN_10148430 undefined FUN_10148430(void) 8 0 +10148440 FUN_10148440 undefined FUN_10148440(void) 8 0 +10148450 FUN_10148450 undefined FUN_10148450(void) 8 0 +10148460 FUN_10148460 undefined FUN_10148460(void) 8 0 +10148470 FUN_10148470 undefined FUN_10148470(void) 8 0 +10148480 FUN_10148480 undefined FUN_10148480(void) 8 0 +10148490 FUN_10148490 undefined FUN_10148490(void) 8 0 +101484a0 FUN_101484a0 undefined FUN_101484a0(void) 8 0 +101484b0 FUN_101484b0 undefined FUN_101484b0(void) 8 0 +101484c0 FUN_101484c0 undefined FUN_101484c0(void) 8 0 +101484d0 FUN_101484d0 undefined FUN_101484d0(void) 8 0 +101484e0 FUN_101484e0 undefined FUN_101484e0(void) 8 0 +101484f0 FUN_101484f0 undefined FUN_101484f0(void) 8 0 +10148500 FUN_10148500 undefined FUN_10148500(void) 8 0 +10148510 FUN_10148510 undefined FUN_10148510(void) 244 3 SysAllocStringLen;SysFreeString +10148610 FUN_10148610 undefined FUN_10148610(void) 69 1 SysFreeString +10148660 FUN_10148660 undefined FUN_10148660(void) 90 1 SysFreeString +101486c0 FUN_101486c0 undefined FUN_101486c0(void) 74 0 +10148710 FUN_10148710 undefined FUN_10148710(void) 74 0 +10148760 FUN_10148760 undefined FUN_10148760(void) 74 0 +101487b0 FUN_101487b0 undefined FUN_101487b0(void) 74 0 +10148800 FUN_10148800 undefined FUN_10148800(void) 17 0 +10148820 FUN_10148820 undefined FUN_10148820(void) 17 0 +10148840 FUN_10148840 undefined FUN_10148840(void) 11 1 +10148850 FUN_10148850 undefined FUN_10148850(void) 11 0 +10148860 FUN_10148860 undefined FUN_10148860(void) 11 1 +10148870 FUN_10148870 undefined FUN_10148870(void) 11 0 +101488a0 FUN_101488a0 undefined FUN_101488a0(void) 68 0 +101488f0 FUN_101488f0 undefined FUN_101488f0(void) 68 0 +10148940 FUN_10148940 undefined FUN_10148940(void) 68 0 +10148990 FUN_10148990 undefined FUN_10148990(void) 68 0 +101489e0 FUN_101489e0 undefined FUN_101489e0(void) 14 0 +101489f0 FUN_101489f0 undefined FUN_101489f0(void) 14 0 +10148a30 FUN_10148a30 undefined FUN_10148a30(void) 21 1 +10148a80 FUN_10148a80 undefined FUN_10148a80(void) 21 1 +10148aa0 FUN_10148aa0 undefined FUN_10148aa0(void) 83 0 +10148b00 FUN_10148b00 undefined FUN_10148b00(void) 87 0 +10148b60 FUN_10148b60 undefined FUN_10148b60(void) 83 0 +10148bc0 FUN_10148bc0 undefined FUN_10148bc0(void) 87 0 +10148c20 FUN_10148c20 undefined FUN_10148c20(void) 12 1 +10148c30 FUN_10148c30 undefined FUN_10148c30(void) 12 1 +10148c60 FUN_10148c60 undefined FUN_10148c60(void) 12 1 +10148c70 FUN_10148c70 undefined FUN_10148c70(void) 24 0 +10148c90 FUN_10148c90 undefined FUN_10148c90(void) 12 1 +10148ca0 FUN_10148ca0 undefined FUN_10148ca0(void) 24 0 +10148cc0 FUN_10148cc0 undefined FUN_10148cc0(void) 119 2 SysAllocString +10148d40 FUN_10148d40 undefined FUN_10148d40(void) 92 2 SysFreeString +10148da0 FUN_10148da0 undefined FUN_10148da0(void) 109 2 SysFreeString +10148e10 FUN_10148e10 undefined FUN_10148e10(void) 142 3 +10148ea0 FUN_10148ea0 undefined FUN_10148ea0(void) 142 3 +10148f30 FUN_10148f30 undefined FUN_10148f30(void) 24 0 +10148f50 FUN_10148f50 undefined FUN_10148f50(void) 24 0 +10148f70 FUN_10148f70 undefined FUN_10148f70(void) 176 3 SysAllocStringByteLen +10149020 FUN_10149020 undefined FUN_10149020(void) 298 7 SysAllocString;SysAllocStringByteLen;SysFreeString +10149150 FUN_10149150 undefined FUN_10149150(void) 74 0 +101491a0 FUN_101491a0 undefined FUN_101491a0(void) 74 0 +101491f0 FUN_101491f0 undefined FUN_101491f0(void) 74 0 +10149240 FUN_10149240 undefined FUN_10149240(void) 74 0 +101492b0 FUN_101492b0 undefined FUN_101492b0(void) 101 0 +10149320 FUN_10149320 undefined FUN_10149320(void) 101 0 +10149390 FUN_10149390 undefined FUN_10149390(void) 101 0 +10149400 FUN_10149400 undefined FUN_10149400(void) 101 0 +10149470 FUN_10149470 undefined FUN_10149470(void) 14 0 +10149480 FUN_10149480 undefined FUN_10149480(void) 14 0 +10149490 FUN_10149490 undefined FUN_10149490(void) 17 0 +101494b0 FUN_101494b0 undefined FUN_101494b0(void) 70 1 +10149500 FUN_10149500 undefined FUN_10149500(void) 167 3 +101495b0 FUN_101495b0 undefined FUN_101495b0(void) 17 0 +101495d0 FUN_101495d0 undefined FUN_101495d0(void) 122 1 +10149650 FUN_10149650 undefined FUN_10149650(void) 167 3 +10149700 FUN_10149700 undefined FUN_10149700(void) 23 1 +10149720 FUN_10149720 undefined FUN_10149720(void) 23 1 +10149740 FUN_10149740 undefined FUN_10149740(void) 119 2 SysAllocString +101497c0 FUN_101497c0 undefined FUN_101497c0(void) 12 1 +101497d0 FUN_101497d0 undefined FUN_101497d0(void) 24 0 +101497f0 FUN_101497f0 undefined FUN_101497f0(void) 12 1 +10149800 FUN_10149800 undefined FUN_10149800(void) 24 0 +10149820 FUN_10149820 undefined FUN_10149820(void) 24 0 +10149840 FUN_10149840 undefined FUN_10149840(void) 68 1 SysFreeString +10149890 FUN_10149890 undefined FUN_10149890(void) 24 0 +101498b0 FUN_101498b0 undefined FUN_101498b0(void) 87 1 SysFreeString +10149910 FUN_10149910 undefined FUN_10149910(void) 176 3 SysAllocStringByteLen +101499c0 FUN_101499c0 undefined FUN_101499c0(void) 134 3 SysAllocStringByteLen +10149a50 FUN_10149a50 undefined FUN_10149a50(void) 104 1 +10149ac0 FUN_10149ac0 undefined FUN_10149ac0(void) 15 0 +10149ad0 FUN_10149ad0 undefined FUN_10149ad0(void) 15 0 +10149ae0 FUN_10149ae0 undefined FUN_10149ae0(void) 177 3 +10149ba0 FUN_10149ba0 undefined FUN_10149ba0(void) 23 1 +10149bc0 FUN_10149bc0 undefined FUN_10149bc0(void) 177 3 +10149c80 FUN_10149c80 undefined FUN_10149c80(void) 23 1 +10149ca0 FUN_10149ca0 undefined FUN_10149ca0(void) 70 1 SysFreeString +10149cf0 FUN_10149cf0 undefined FUN_10149cf0(void) 89 1 SysFreeString +10149d50 FUN_10149d50 undefined FUN_10149d50(void) 104 1 +10149dc0 FUN_10149dc0 undefined FUN_10149dc0(void) 132 3 SysAllocStringByteLen +10149e50 FUN_10149e50 undefined FUN_10149e50(void) 104 1 +10149ec0 FUN_10149ec0 undefined FUN_10149ec0(void) 90 2 +10149f20 FUN_10149f20 undefined FUN_10149f20(void) 83 2 +10149f80 FUN_10149f80 undefined FUN_10149f80(void) 239 5 SysFreeString +1014a070 FUN_1014a070 undefined FUN_1014a070(void) 104 1 +1014a0e0 FUN_1014a0e0 undefined FUN_1014a0e0(void) 68 1 SysFreeString +1014a130 FUN_1014a130 undefined FUN_1014a130(void) 87 1 SysFreeString +1014a190 FUN_1014a190 undefined FUN_1014a190(void) 610 3 SysFreeString +1014a400 FUN_1014a400 undefined FUN_1014a400(void) 626 3 SysFreeString +1014a680 FUN_1014a680 undefined FUN_1014a680(void) 143 3 SysAllocStringByteLen +1014a710 FUN_1014a710 undefined FUN_1014a710(void) 117 1 +1014a790 FUN_1014a790 undefined FUN_1014a790(void) 1347 7 SysFreeString +1014ace0 FUN_1014ace0 undefined FUN_1014ace0(void) 1317 17 SysAllocString;SysAllocStringByteLen;SysFreeString +1014b210 FUN_1014b210 undefined FUN_1014b210(void) 1335 16 SysAllocString;SysFreeString +1014b750 FUN_1014b750 undefined FUN_1014b750(void) 657 8 SysFreeString +1014b9f0 FUN_1014b9f0 undefined FUN_1014b9f0(void) 672 8 SysFreeString +1014bc90 FUN_1014bc90 undefined FUN_1014bc90(void) 122 3 SysFreeString +1014bd10 FUN_1014bd10 undefined FUN_1014bd10(void) 142 3 SysFreeString +1014bda0 FUN_1014bda0 undefined FUN_1014bda0(void) 311 5 SysFreeString +1014bee0 FUN_1014bee0 undefined FUN_1014bee0(void) 461 6 SysFreeString +1014c0b0 FUN_1014c0b0 undefined FUN_1014c0b0(void) 21 1 +1014c0d0 FUN_1014c0d0 undefined FUN_1014c0d0(void) 115 1 +1014c150 FUN_1014c150 undefined FUN_1014c150(void) 43 1 +1014c180 FUN_1014c180 undefined FUN_1014c180(void) 43 1 +1014c1b0 FUN_1014c1b0 undefined FUN_1014c1b0(void) 190 4 +1014c23f Catch@1014c23f undefined Catch@1014c23f(void) 21 2 +1014c290 FUN_1014c290 undefined FUN_1014c290(void) 190 4 +1014c31f Catch@1014c31f undefined Catch@1014c31f(void) 21 2 +1014c370 FUN_1014c370 undefined FUN_1014c370(void) 187 2 +1014c430 FUN_1014c430 undefined FUN_1014c430(void) 187 2 +1014c4f0 FUN_1014c4f0 undefined FUN_1014c4f0(void) 38 2 +1014c520 FUN_1014c520 undefined FUN_1014c520(void) 38 2 +1014c550 FUN_1014c550 undefined FUN_1014c550(void) 24 1 +1014c570 FUN_1014c570 undefined FUN_1014c570(void) 24 1 +1014c590 FUN_1014c590 undefined FUN_1014c590(void) 60 2 SysAllocStringLen +1014c5d0 FUN_1014c5d0 undefined FUN_1014c5d0(void) 126 2 SysAllocStringLen +1014c650 FUN_1014c650 undefined FUN_1014c650(void) 74 3 SysFreeString +1014c6a0 FUN_1014c6a0 undefined FUN_1014c6a0(void) 78 3 SysFreeString +1014c6f0 FUN_1014c6f0 undefined FUN_1014c6f0(void) 103 2 +1014c760 FUN_1014c760 undefined FUN_1014c760(void) 103 2 +1014c7d0 FUN_1014c7d0 undefined FUN_1014c7d0(void) 682 13 SysAllocString;SysFreeString +1014ca80 FUN_1014ca80 undefined FUN_1014ca80(void) 637 7 SysFreeString +1014cd00 FUN_1014cd00 undefined FUN_1014cd00(void) 103 2 +1014cd70 FUN_1014cd70 undefined FUN_1014cd70(void) 103 2 +1014cde0 FUN_1014cde0 undefined FUN_1014cde0(void) 175 3 +1014ce90 FUN_1014ce90 undefined FUN_1014ce90(void) 175 3 +1014cf40 FUN_1014cf40 undefined FUN_1014cf40(void) 4266 45 SysAllocString;SysAllocStringByteLen;SysAllocStringLen;SysFreeString +1014e000 FUN_1014e000 undefined FUN_1014e000(void) 2920 50 SysAllocString;SysFreeString +1014eb71 Catch@1014eb71 undefined Catch@1014eb71(void) 106 4 +1014ebe1 FUN_1014ebe1 undefined FUN_1014ebe1(void) 30 1 +1014ebff Catch@1014ebff undefined Catch@1014ebff(void) 28 0 +1014ec1d Catch@1014ec1d undefined Catch@1014ec1d(void) 127 6 +1014eca1 Catch@1014eca1 undefined Catch@1014eca1(void) 76 3 +1014ecf0 FUN_1014ecf0 undefined FUN_1014ecf0(void) 132 6 +1014ed80 FUN_1014ed80 undefined FUN_1014ed80(void) 413 10 SysFreeString +1014ef1d Catch@1014ef1d undefined Catch@1014ef1d(void) 68 3 +1014ef80 FUN_1014ef80 undefined FUN_1014ef80(void) 1 0 +1014ef90 FUN_1014ef90 undefined FUN_1014ef90(void) 23 1 +1014efb0 FUN_1014efb0 undefined FUN_1014efb0(void) 83 1 +1014f010 FUN_1014f010 undefined FUN_1014f010(void) 69 1 SysFreeString +1014f070 FUN_1014f070 undefined FUN_1014f070(void) 33 1 +1014f0a0 operator[] ushort * operator[](CSimpleArray_> * this, int param_1) 42 1 +1014f0d0 FUN_1014f0d0 undefined FUN_1014f0d0(void) 145 4 +1014f170 FUN_1014f170 undefined FUN_1014f170(void) 159 4 SysFreeString +1014f438 VarBstrCat HRESULT VarBstrCat(BSTR bstrLeft, BSTR bstrRight, LPBSTR pbstrResult) 6 0 +1014f46e VarBstrCmp HRESULT VarBstrCmp(BSTR bstrLeft, BSTR bstrRight, LCID lcid, ULONG dwFlags) 6 0 +1014f4c1 FUN_1014f4c1 undefined FUN_1014f4c1(void) 18 0 +1014f4d3 FUN_1014f4d3 undefined FUN_1014f4d3(void) 10 0 +1014f4dd FUN_1014f4dd undefined FUN_1014f4dd(void) 31 1 +1014f4fc memmove_s void memmove_s(void * param_1, uint param_2, void * param_3, uint param_4) 33 2 memmove_s +1014f51d RemoveAt int RemoveAt(CSimpleArray_> * this, int param_1) 72 1 memmove_s +1014f565 FUN_1014f565 undefined FUN_1014f565(void) 44 1 +1014f591 FUN_1014f591 undefined FUN_1014f591(void) 28 0 +1014f5b2 FUN_1014f5b2 undefined FUN_1014f5b2(void) 37 1 memset +1014f5df FUN_1014f5df undefined FUN_1014f5df(void) 24 2 +1014f5f7 RemoveResourceInstance bool RemoveResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 105 4 +1014f660 GetHInstanceAt HINSTANCE__ * GetHInstanceAt(CAtlBaseModule * this, int param_1) 93 3 +1014f6bd Add int Add(CSimpleArray_> * this, HINSTANCE__ * * param_1) 124 2 +1014f739 FUN_1014f739 undefined FUN_1014f739(void) 64 2 +1014f779 AddResourceInstance bool AddResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 53 3 +1014f7ae FUN_1014f7ae undefined FUN_1014f7ae(void) 68 1 +1014f7f2 FUN_1014f7f2 undefined FUN_1014f7f2(void) 25 1 memset +1014f80c FUN_1014f80c undefined FUN_1014f80c(void) 65 2 +1014f860 FUN_1014f860 undefined FUN_1014f860(void) 17 0 +1014f880 _com_issue_error void _com_issue_error(long param_1) 21 1 +1014f8a0 _com_issue_errorex void _com_issue_errorex(long param_1, IUnknown * param_2, _GUID * param_3) 117 2 +1014f920 _com_dispatch_method long _com_dispatch_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 71 2 +1014f970 _com_dispatch_propget long _com_dispatch_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +1014f9a0 _com_dispatch_propput long _com_dispatch_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 99 2 +1014fa10 FUN_1014fa10 undefined FUN_1014fa10(void) 26 0 +1014fa30 _variant_t undefined _variant_t(_variant_t * this, long param_1, ushort param_2) 110 1 +1014fab0 ConvertStringToBSTR undefined ConvertStringToBSTR(void) 352 9 SysAllocString +1014fc30 FUN_1014fc30 undefined FUN_1014fc30(void) 271 5 +1014fced Catch_All@1014fced undefined Catch_All@1014fced(void) 13 0 +1014fd50 FUN_1014fd50 undefined FUN_1014fd50(void) 48 1 +1014fd90 _com_invoke_helper long _com_invoke_helper(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, char * param_7, IErrorInfo * * param_8) 1166 8 VariantChangeType;VariantClear;VariantInit;memset +10150360 _com_dispatch_raw_method long _com_dispatch_raw_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 72 2 +101503b0 _com_dispatch_raw_propget long _com_dispatch_raw_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +101503e0 _com_dispatch_raw_propput long _com_dispatch_raw_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 100 2 +10150450 FUN_10150450 undefined FUN_10150450(void) 40 0 +10150480 _com_handle_excepinfo long _com_handle_excepinfo(tagEXCEPINFO * param_1, IErrorInfo * * param_2) 260 2 SysFreeString +10150584 FUN_10150584 undefined FUN_10150584(void) 11 1 +101505ac ~_Fac_node void ~_Fac_node(_Fac_node * this) 22 1 +101505c2 `scalar_deleting_destructor' void * `scalar_deleting_destructor'(_Fac_node * this, uint param_1) 33 2 +101505e3 Facet_Register undefined Facet_Register(void) 42 1 +1015065d FUN_1015065d undefined FUN_1015065d(void) 80 6 +10150732 _Lock void _Lock(basic_streambuf_> * this) 6 0 +10150738 _Unlock void _Unlock(basic_streambuf_> * this) 6 0 +1015073e showmanyc __int64 showmanyc(basic_streambuf_> * this) 6 0 +10150744 uflow ushort uflow(basic_streambuf_> * this) 6 0 +1015074a xsgetn __int64 xsgetn(basic_streambuf_> * this, ushort * param_1, __int64 param_2) 6 0 +10150750 xsputn __int64 xsputn(basic_streambuf_> * this, ushort * param_1, __int64 param_2) 6 0 +10150756 setbuf basic_streambuf_> * setbuf(basic_streambuf_> * this, ushort * param_1, __int64 param_2) 6 0 +1015075c sync int sync(basic_streambuf_> * this) 6 0 +10150762 imbue void imbue(basic_streambuf_> * this, locale * param_1) 6 0 +101507da pbackfail ushort pbackfail(basic_streambuf_> * this, ushort param_1) 6 0 +101507e0 underflow ushort underflow(basic_streambuf_> * this) 6 0 +101507e6 seekoff fpos seekoff(basic_streambuf_> * this, __int64 param_1, int param_2, int param_3) 6 0 +101507ec seekpos fpos seekpos(basic_streambuf_> * this, fpos param_1, int param_2) 6 0 +10150882 VerQueryValueW BOOL VerQueryValueW(LPCVOID pBlock, LPCWSTR lpSubBlock, LPVOID * lplpBuffer, PUINT puLen) 6 0 +10150888 GetFileVersionInfoW BOOL GetFileVersionInfoW(LPCWSTR lptstrFilename, DWORD dwHandle, DWORD dwLen, LPVOID lpData) 6 0 +1015088e GetFileVersionInfoSizeW DWORD GetFileVersionInfoSizeW(LPCWSTR lptstrFilename, LPDWORD lpdwHandle) 6 0 +10150894 operator_delete void operator_delete(void * param_1) 6 0 +101508a0 memcpy void * memcpy(void * _Dst, void * _Src, size_t _Size) 6 0 +101508ac free void free(void * _Memory) 6 0 +101508b2 _CxxThrowException void _CxxThrowException(void * pExceptionObject, ThrowInfo * pThrowInfo) 6 0 +101508c3 FID_conflict:`vector_deleting_destructor' undefined FID_conflict:`vector_deleting_destructor'(void) 76 3 +10150920 purecall undefined purecall(void) 6 0 +10150926 operator_delete[] void operator_delete[](void * param_1) 6 0 +10150932 __security_check_cookie undefined __security_check_cookie(void) 15 1 +10150948 operator_new void * operator_new(uint param_1) 6 0 +10150960 what char * what(exception * this) 6 0 +10150966 memset void * memset(void * _Dst, int _Val, size_t _Size) 6 0 +101509b4 _recalloc void * _recalloc(void * _Memory, size_t _Count, size_t _Size) 6 0 +101509d0 __alloca_probe undefined __alloca_probe(void) 43 0 +101509fb __onexit undefined __onexit(void) 152 8 +10150a93 FUN_10150a93 undefined FUN_10150a93(void) 9 1 +10150a9c _atexit int _atexit(_func_4879 * param_1) 23 1 +10150ac0 malloc void * malloc(size_t _Size) 6 0 +10150b20 __alloca_probe_16 undefined __alloca_probe_16(void) 22 1 +10150b36 __alloca_probe_8 undefined __alloca_probe_8(void) 22 1 +10150b60 __allmul undefined __allmul(void) 52 0 +10150ba0 __alldiv undefined __alldiv(void) 170 0 +10150c86 __ArrayUnwind void __ArrayUnwind(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 50 2 +10150ce4 `eh_vector_destructor_iterator' void `eh_vector_destructor_iterator'(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 75 3 +10150d2f FUN_10150d2f undefined FUN_10150d2f(void) 24 1 +10150d9c __CRT_INIT@12 undefined __CRT_INIT@12(void) 522 10 +10150fa6 ___DllMainCRTStartup undefined ___DllMainCRTStartup(void) 240 5 +101510b1 FUN_101510b1 undefined FUN_101510b1(void) 11 0 +101510bc entry undefined entry(void) 35 2 +101510e0 memmove_s errno_t memmove_s(void * _Dst, rsize_t _DstSize, void * _Src, rsize_t _MaxCount) 6 0 +101510e6 FUN_101510e6 undefined FUN_101510e6(void) 51 0 +101511be __EH_epilog3 undefined __EH_epilog3(void) 20 0 +101511f0 ___report_gsfailure void ___report_gsfailure(void) 262 6 +101512f6 _unlock void _unlock(int _File) 6 0 +101512fc __dllonexit undefined __dllonexit(void) 6 0 +10151302 _lock void _lock(int _File) 6 0 +10151310 __SEH_prolog4 undefined __SEH_prolog4(void) 69 0 +10151355 __SEH_epilog4 undefined __SEH_epilog4(void) 20 0 +1015136a except_handler4_common undefined except_handler4_common(void) 6 0 +101513e0 __ValidateImageBase BOOL __ValidateImageBase(PBYTE pImageBase) 53 0 +10151420 __FindPESection PIMAGE_SECTION_HEADER __FindPESection(PBYTE pImageBase, DWORD_PTR rva) 68 0 +10151470 __IsNonwritableInCurrentImage BOOL __IsNonwritableInCurrentImage(PBYTE pTarget) 166 2 +1015152c initterm undefined initterm(void) 6 0 +10151532 initterm_e undefined initterm_e(void) 6 0 +10151538 _amsg_exit void _amsg_exit(int param_1) 6 0 +10151544 ___security_init_cookie void ___security_init_cookie(void) 155 5 +101515e0 _type_info_dtor_internal_method void _type_info_dtor_internal_method(type_info * this) 6 0 +101515e6 _crt_debugger_hook void _crt_debugger_hook(int param_1) 6 0 +10151640 Unwind@10151640 undefined Unwind@10151640(void) 9 0 +10151670 Unwind@10151670 undefined Unwind@10151670(void) 9 0 +101516a0 Unwind@101516a0 undefined Unwind@101516a0(void) 9 0 +101516d0 Unwind@101516d0 undefined Unwind@101516d0(void) 8 1 +10151700 Unwind@10151700 undefined Unwind@10151700(void) 8 1 +10151730 Unwind@10151730 undefined Unwind@10151730(void) 8 1 +10151760 Unwind@10151760 undefined Unwind@10151760(void) 8 1 +10151790 Unwind@10151790 undefined Unwind@10151790(void) 8 1 +10151798 Unwind@10151798 undefined Unwind@10151798(void) 8 1 +101517c0 Unwind@101517c0 undefined Unwind@101517c0(void) 8 1 +101517c8 Unwind@101517c8 undefined Unwind@101517c8(void) 8 1 +101517d0 Unwind@101517d0 undefined Unwind@101517d0(void) 8 1 +101517d8 Unwind@101517d8 undefined Unwind@101517d8(void) 8 1 +101517e0 Unwind@101517e0 undefined Unwind@101517e0(void) 8 1 +10151810 Unwind@10151810 undefined Unwind@10151810(void) 8 1 +10151840 Unwind@10151840 undefined Unwind@10151840(void) 9 0 +10151870 Unwind@10151870 undefined Unwind@10151870(void) 9 0 +101518a0 Unwind@101518a0 undefined Unwind@101518a0(void) 9 0 +101518d0 Unwind@101518d0 undefined Unwind@101518d0(void) 9 0 +10151900 Unwind@10151900 undefined Unwind@10151900(void) 17 1 +10151930 Unwind@10151930 undefined Unwind@10151930(void) 17 1 +10151960 Unwind@10151960 undefined Unwind@10151960(void) 9 0 +10151990 Unwind@10151990 undefined Unwind@10151990(void) 9 0 +101519c0 Unwind@101519c0 undefined Unwind@101519c0(void) 9 0 +101519f0 Unwind@101519f0 undefined Unwind@101519f0(void) 9 0 +10151a20 Unwind@10151a20 undefined Unwind@10151a20(void) 9 0 +10151a50 Unwind@10151a50 undefined Unwind@10151a50(void) 9 0 +10151a80 Unwind@10151a80 undefined Unwind@10151a80(void) 9 0 +10151ab0 Unwind@10151ab0 undefined Unwind@10151ab0(void) 9 0 +10151ae0 Unwind@10151ae0 undefined Unwind@10151ae0(void) 9 0 +10151b10 Unwind@10151b10 undefined Unwind@10151b10(void) 9 0 +10151b40 Unwind@10151b40 undefined Unwind@10151b40(void) 9 0 +10151b70 Unwind@10151b70 undefined Unwind@10151b70(void) 9 0 +10151ba0 Unwind@10151ba0 undefined Unwind@10151ba0(void) 9 0 +10151bd0 Unwind@10151bd0 undefined Unwind@10151bd0(void) 9 0 +10151c00 Unwind@10151c00 undefined Unwind@10151c00(void) 9 0 +10151c30 Unwind@10151c30 undefined Unwind@10151c30(void) 9 0 +10151c60 Unwind@10151c60 undefined Unwind@10151c60(void) 9 0 +10151c90 Unwind@10151c90 undefined Unwind@10151c90(void) 9 0 +10151cc0 Unwind@10151cc0 undefined Unwind@10151cc0(void) 9 0 +10151cf0 Unwind@10151cf0 undefined Unwind@10151cf0(void) 9 0 +10151d20 Unwind@10151d20 undefined Unwind@10151d20(void) 9 0 +10151d50 Unwind@10151d50 undefined Unwind@10151d50(void) 9 0 +10151d80 Unwind@10151d80 undefined Unwind@10151d80(void) 9 0 +10151db0 Unwind@10151db0 undefined Unwind@10151db0(void) 9 0 +10151de0 Unwind@10151de0 undefined Unwind@10151de0(void) 9 0 +10151e10 Unwind@10151e10 undefined Unwind@10151e10(void) 9 0 +10151e40 Unwind@10151e40 undefined Unwind@10151e40(void) 9 0 +10151e70 Unwind@10151e70 undefined Unwind@10151e70(void) 9 0 +10151ea0 Unwind@10151ea0 undefined Unwind@10151ea0(void) 9 0 +10151ed0 Unwind@10151ed0 undefined Unwind@10151ed0(void) 9 0 +10151f00 Unwind@10151f00 undefined Unwind@10151f00(void) 9 0 +10151f30 Unwind@10151f30 undefined Unwind@10151f30(void) 9 0 +10151f60 Unwind@10151f60 undefined Unwind@10151f60(void) 9 0 +10151f90 Unwind@10151f90 undefined Unwind@10151f90(void) 9 0 +10151fc0 Unwind@10151fc0 undefined Unwind@10151fc0(void) 9 0 +10151ff0 Unwind@10151ff0 undefined Unwind@10151ff0(void) 9 0 +10152020 Unwind@10152020 undefined Unwind@10152020(void) 9 0 +10152050 Unwind@10152050 undefined Unwind@10152050(void) 9 0 +10152080 Unwind@10152080 undefined Unwind@10152080(void) 9 0 +101520b0 Unwind@101520b0 undefined Unwind@101520b0(void) 9 0 +101520e0 Unwind@101520e0 undefined Unwind@101520e0(void) 9 0 +10152110 Unwind@10152110 undefined Unwind@10152110(void) 9 0 +10152140 Unwind@10152140 undefined Unwind@10152140(void) 9 0 +10152170 Unwind@10152170 undefined Unwind@10152170(void) 9 0 +101521a0 Unwind@101521a0 undefined Unwind@101521a0(void) 9 0 +101521d0 Unwind@101521d0 undefined Unwind@101521d0(void) 9 0 +10152200 Unwind@10152200 undefined Unwind@10152200(void) 9 0 +10152230 Unwind@10152230 undefined Unwind@10152230(void) 9 0 +10152260 Unwind@10152260 undefined Unwind@10152260(void) 9 0 +10152290 Unwind@10152290 undefined Unwind@10152290(void) 9 0 +101522c0 Unwind@101522c0 undefined Unwind@101522c0(void) 9 0 +101522f0 Unwind@101522f0 undefined Unwind@101522f0(void) 9 0 +10152320 Unwind@10152320 undefined Unwind@10152320(void) 9 0 +10152350 Unwind@10152350 undefined Unwind@10152350(void) 9 0 +10152380 Unwind@10152380 undefined Unwind@10152380(void) 9 0 +101523b0 Unwind@101523b0 undefined Unwind@101523b0(void) 9 0 +101523e0 Unwind@101523e0 undefined Unwind@101523e0(void) 9 0 +10152410 Unwind@10152410 undefined Unwind@10152410(void) 9 0 +10152440 Unwind@10152440 undefined Unwind@10152440(void) 9 0 +10152470 Unwind@10152470 undefined Unwind@10152470(void) 9 0 +101524a0 Unwind@101524a0 undefined Unwind@101524a0(void) 9 0 +101524d0 Unwind@101524d0 undefined Unwind@101524d0(void) 9 0 +10152500 Unwind@10152500 undefined Unwind@10152500(void) 9 0 +10152530 Unwind@10152530 undefined Unwind@10152530(void) 9 0 +10152560 Unwind@10152560 undefined Unwind@10152560(void) 9 0 +10152590 Unwind@10152590 undefined Unwind@10152590(void) 8 1 +101525c0 Unwind@101525c0 undefined Unwind@101525c0(void) 17 1 +101525f0 Unwind@101525f0 undefined Unwind@101525f0(void) 17 1 +10152620 Unwind@10152620 undefined Unwind@10152620(void) 17 1 +10152650 Unwind@10152650 undefined Unwind@10152650(void) 17 1 +10152680 Unwind@10152680 undefined Unwind@10152680(void) 17 1 +101526b0 Unwind@101526b0 undefined Unwind@101526b0(void) 17 1 +101526e0 Unwind@101526e0 undefined Unwind@101526e0(void) 8 1 +10152710 Unwind@10152710 undefined Unwind@10152710(void) 17 1 +10152740 Unwind@10152740 undefined Unwind@10152740(void) 17 1 +10152770 Unwind@10152770 undefined Unwind@10152770(void) 17 1 +101527a0 Unwind@101527a0 undefined Unwind@101527a0(void) 17 1 +101527d0 Unwind@101527d0 undefined Unwind@101527d0(void) 17 1 +10152800 Unwind@10152800 undefined Unwind@10152800(void) 17 1 +10152830 Unwind@10152830 undefined Unwind@10152830(void) 8 1 +10152860 Unwind@10152860 undefined Unwind@10152860(void) 8 1 +10152890 Unwind@10152890 undefined Unwind@10152890(void) 8 1 +101528c0 Unwind@101528c0 undefined Unwind@101528c0(void) 8 1 +101528f0 Unwind@101528f0 undefined Unwind@101528f0(void) 8 1 +10152920 Unwind@10152920 undefined Unwind@10152920(void) 8 1 +10152950 Unwind@10152950 undefined Unwind@10152950(void) 8 1 +10152980 Unwind@10152980 undefined Unwind@10152980(void) 8 1 +101529b0 Unwind@101529b0 undefined Unwind@101529b0(void) 8 1 +101529e0 Unwind@101529e0 undefined Unwind@101529e0(void) 8 1 +10152a10 Unwind@10152a10 undefined Unwind@10152a10(void) 8 1 +10152a40 Unwind@10152a40 undefined Unwind@10152a40(void) 8 1 +10152a70 Unwind@10152a70 undefined Unwind@10152a70(void) 8 1 +10152aa0 Unwind@10152aa0 undefined Unwind@10152aa0(void) 8 1 +10152ad0 Unwind@10152ad0 undefined Unwind@10152ad0(void) 8 1 +10152b00 Unwind@10152b00 undefined Unwind@10152b00(void) 25 1 +10152b40 Unwind@10152b40 undefined Unwind@10152b40(void) 8 1 +10152b70 Unwind@10152b70 undefined Unwind@10152b70(void) 8 1 +10152ba0 Unwind@10152ba0 undefined Unwind@10152ba0(void) 11 1 +10152bd0 Unwind@10152bd0 undefined Unwind@10152bd0(void) 11 1 +10152c00 Unwind@10152c00 undefined Unwind@10152c00(void) 11 1 +10152c30 Unwind@10152c30 undefined Unwind@10152c30(void) 8 1 +10152c60 Unwind@10152c60 undefined Unwind@10152c60(void) 8 1 +10152c68 Unwind@10152c68 undefined Unwind@10152c68(void) 11 1 +10152c73 Unwind@10152c73 undefined Unwind@10152c73(void) 8 1 +10152ca0 Unwind@10152ca0 undefined Unwind@10152ca0(void) 8 1 +10152cd0 Unwind@10152cd0 undefined Unwind@10152cd0(void) 8 1 +10152d00 Unwind@10152d00 undefined Unwind@10152d00(void) 8 1 +10152d30 Unwind@10152d30 undefined Unwind@10152d30(void) 8 1 +10152d60 Unwind@10152d60 undefined Unwind@10152d60(void) 8 1 +10152d90 Unwind@10152d90 undefined Unwind@10152d90(void) 8 1 +10152dc0 Unwind@10152dc0 undefined Unwind@10152dc0(void) 8 1 +10152df0 Unwind@10152df0 undefined Unwind@10152df0(void) 8 1 +10152e20 Unwind@10152e20 undefined Unwind@10152e20(void) 8 1 +10152e50 Unwind@10152e50 undefined Unwind@10152e50(void) 8 1 +10152e80 Unwind@10152e80 undefined Unwind@10152e80(void) 8 1 +10152eb0 Unwind@10152eb0 undefined Unwind@10152eb0(void) 8 1 +10152ee0 Unwind@10152ee0 undefined Unwind@10152ee0(void) 8 1 +10152ee8 Unwind@10152ee8 undefined Unwind@10152ee8(void) 8 1 +10152ef0 Unwind@10152ef0 undefined Unwind@10152ef0(void) 8 1 +10152f20 Unwind@10152f20 undefined Unwind@10152f20(void) 8 1 +10152f50 Unwind@10152f50 undefined Unwind@10152f50(void) 8 1 +10152f80 Unwind@10152f80 undefined Unwind@10152f80(void) 8 1 +10152fb0 Unwind@10152fb0 undefined Unwind@10152fb0(void) 8 1 +10152fe0 Unwind@10152fe0 undefined Unwind@10152fe0(void) 8 1 +10153010 Unwind@10153010 undefined Unwind@10153010(void) 8 1 +10153040 Unwind@10153040 undefined Unwind@10153040(void) 8 1 +10153070 Unwind@10153070 undefined Unwind@10153070(void) 8 1 +101530a0 Unwind@101530a0 undefined Unwind@101530a0(void) 8 1 +101530d0 Unwind@101530d0 undefined Unwind@101530d0(void) 8 1 +10153100 Unwind@10153100 undefined Unwind@10153100(void) 8 1 +10153130 Unwind@10153130 undefined Unwind@10153130(void) 8 1 +10153160 Unwind@10153160 undefined Unwind@10153160(void) 8 1 +10153190 Unwind@10153190 undefined Unwind@10153190(void) 8 1 +101531c0 Unwind@101531c0 undefined Unwind@101531c0(void) 8 1 +101531f0 Unwind@101531f0 undefined Unwind@101531f0(void) 8 1 +10153220 Unwind@10153220 undefined Unwind@10153220(void) 8 1 +10153250 Unwind@10153250 undefined Unwind@10153250(void) 8 1 +10153280 Unwind@10153280 undefined Unwind@10153280(void) 8 1 +101532b0 Unwind@101532b0 undefined Unwind@101532b0(void) 11 1 +101532bb Unwind@101532bb undefined Unwind@101532bb(void) 11 1 +101532f0 Unwind@101532f0 undefined Unwind@101532f0(void) 8 1 +10153320 Unwind@10153320 undefined Unwind@10153320(void) 8 1 +10153350 Unwind@10153350 undefined Unwind@10153350(void) 8 1 +10153380 Unwind@10153380 undefined Unwind@10153380(void) 8 1 +101533b0 Unwind@101533b0 undefined Unwind@101533b0(void) 8 1 +101533e0 Unwind@101533e0 undefined Unwind@101533e0(void) 8 1 +10153410 Unwind@10153410 undefined Unwind@10153410(void) 8 1 +10153440 Unwind@10153440 undefined Unwind@10153440(void) 8 1 +10153470 Unwind@10153470 undefined Unwind@10153470(void) 8 1 +101534a0 Unwind@101534a0 undefined Unwind@101534a0(void) 8 1 +101534d0 Unwind@101534d0 undefined Unwind@101534d0(void) 8 1 +10153500 Unwind@10153500 undefined Unwind@10153500(void) 8 1 +10153530 Unwind@10153530 undefined Unwind@10153530(void) 8 1 +10153560 Unwind@10153560 undefined Unwind@10153560(void) 8 1 +10153590 Unwind@10153590 undefined Unwind@10153590(void) 8 1 +101535c0 Unwind@101535c0 undefined Unwind@101535c0(void) 8 1 +101535f0 Unwind@101535f0 undefined Unwind@101535f0(void) 8 1 +10153620 Unwind@10153620 undefined Unwind@10153620(void) 8 1 +10153650 Unwind@10153650 undefined Unwind@10153650(void) 8 1 +10153680 Unwind@10153680 undefined Unwind@10153680(void) 8 1 +101536b0 Unwind@101536b0 undefined Unwind@101536b0(void) 8 1 +101536e0 Unwind@101536e0 undefined Unwind@101536e0(void) 9 0 +10153710 Unwind@10153710 undefined Unwind@10153710(void) 8 1 +10153740 Unwind@10153740 undefined Unwind@10153740(void) 9 0 +10153770 Unwind@10153770 undefined Unwind@10153770(void) 8 1 +101537a0 Unwind@101537a0 undefined Unwind@101537a0(void) 8 1 +101537d0 Unwind@101537d0 undefined Unwind@101537d0(void) 8 1 +10153800 Unwind@10153800 undefined Unwind@10153800(void) 8 1 +10153830 Unwind@10153830 undefined Unwind@10153830(void) 8 1 +10153860 Unwind@10153860 undefined Unwind@10153860(void) 8 1 +10153890 Unwind@10153890 undefined Unwind@10153890(void) 8 1 +101538e0 Unwind@101538e0 undefined Unwind@101538e0(void) 8 1 +10153910 Unwind@10153910 undefined Unwind@10153910(void) 8 1 +10153918 Unwind@10153918 undefined Unwind@10153918(void) 8 1 +10153940 Unwind@10153940 undefined Unwind@10153940(void) 17 1 +10153970 Unwind@10153970 undefined Unwind@10153970(void) 17 1 +101539a0 Unwind@101539a0 undefined Unwind@101539a0(void) 17 1 +101539d0 Unwind@101539d0 undefined Unwind@101539d0(void) 9 0 +10153a00 Unwind@10153a00 undefined Unwind@10153a00(void) 8 1 +10153a08 Unwind@10153a08 undefined Unwind@10153a08(void) 8 1 +10153a10 Unwind@10153a10 undefined Unwind@10153a10(void) 8 1 +10153a40 Unwind@10153a40 undefined Unwind@10153a40(void) 8 1 +10153a48 Unwind@10153a48 undefined Unwind@10153a48(void) 8 1 +10153a70 Unwind@10153a70 undefined Unwind@10153a70(void) 17 1 +10153aa0 Unwind@10153aa0 undefined Unwind@10153aa0(void) 8 1 +10153ad0 Unwind@10153ad0 undefined Unwind@10153ad0(void) 9 0 +10153b00 Unwind@10153b00 undefined Unwind@10153b00(void) 17 1 +10153b30 Unwind@10153b30 undefined Unwind@10153b30(void) 17 1 +10153b60 Unwind@10153b60 undefined Unwind@10153b60(void) 17 1 +10153b90 Unwind@10153b90 undefined Unwind@10153b90(void) 17 1 +10153bc0 Unwind@10153bc0 undefined Unwind@10153bc0(void) 17 1 +10153bf0 Unwind@10153bf0 undefined Unwind@10153bf0(void) 8 1 +10153c20 Unwind@10153c20 undefined Unwind@10153c20(void) 9 0 +10153c50 Unwind@10153c50 undefined Unwind@10153c50(void) 8 1 +10153c58 Unwind@10153c58 undefined Unwind@10153c58(void) 8 1 +10153c60 Unwind@10153c60 undefined Unwind@10153c60(void) 8 1 +10153c90 Unwind@10153c90 undefined Unwind@10153c90(void) 8 1 +10153c98 Unwind@10153c98 undefined Unwind@10153c98(void) 8 1 +10153ca0 Unwind@10153ca0 undefined Unwind@10153ca0(void) 8 1 +10153ca8 Unwind@10153ca8 undefined Unwind@10153ca8(void) 8 1 +10153cd0 Unwind@10153cd0 undefined Unwind@10153cd0(void) 8 1 +10153cd8 Unwind@10153cd8 undefined Unwind@10153cd8(void) 8 1 +10153ce0 Unwind@10153ce0 undefined Unwind@10153ce0(void) 8 1 +10153d10 Unwind@10153d10 undefined Unwind@10153d10(void) 8 1 +10153d18 Unwind@10153d18 undefined Unwind@10153d18(void) 8 1 +10153d20 Unwind@10153d20 undefined Unwind@10153d20(void) 8 1 +10153d28 Unwind@10153d28 undefined Unwind@10153d28(void) 8 1 +10153d50 Unwind@10153d50 undefined Unwind@10153d50(void) 11 1 +10153d5b Unwind@10153d5b undefined Unwind@10153d5b(void) 11 1 +10153d66 Unwind@10153d66 undefined Unwind@10153d66(void) 11 1 +10153d71 Unwind@10153d71 undefined Unwind@10153d71(void) 8 1 +10153da0 Unwind@10153da0 undefined Unwind@10153da0(void) 9 0 +10153dd0 Unwind@10153dd0 undefined Unwind@10153dd0(void) 9 0 +10153e00 Unwind@10153e00 undefined Unwind@10153e00(void) 9 0 +10153e30 Unwind@10153e30 undefined Unwind@10153e30(void) 9 0 +10153e60 Unwind@10153e60 undefined Unwind@10153e60(void) 9 0 +10153e90 Unwind@10153e90 undefined Unwind@10153e90(void) 9 0 +10153ec0 Unwind@10153ec0 undefined Unwind@10153ec0(void) 9 0 +10153ef0 Unwind@10153ef0 undefined Unwind@10153ef0(void) 9 0 +10153f20 Unwind@10153f20 undefined Unwind@10153f20(void) 9 0 +10153f50 Unwind@10153f50 undefined Unwind@10153f50(void) 9 0 +10153f80 Unwind@10153f80 undefined Unwind@10153f80(void) 9 0 +10153fb0 Unwind@10153fb0 undefined Unwind@10153fb0(void) 9 0 +10153fe0 Unwind@10153fe0 undefined Unwind@10153fe0(void) 9 0 +10154010 Unwind@10154010 undefined Unwind@10154010(void) 9 0 +10154040 Unwind@10154040 undefined Unwind@10154040(void) 9 0 +10154070 Unwind@10154070 undefined Unwind@10154070(void) 9 0 +101540a0 Unwind@101540a0 undefined Unwind@101540a0(void) 9 0 +101540d0 Unwind@101540d0 undefined Unwind@101540d0(void) 9 0 +10154100 Unwind@10154100 undefined Unwind@10154100(void) 9 0 +10154130 Unwind@10154130 undefined Unwind@10154130(void) 9 0 +10154160 Unwind@10154160 undefined Unwind@10154160(void) 9 0 +10154190 Unwind@10154190 undefined Unwind@10154190(void) 17 1 +101541c0 Unwind@101541c0 undefined Unwind@101541c0(void) 17 1 +101541f0 Unwind@101541f0 undefined Unwind@101541f0(void) 17 1 +10154220 Unwind@10154220 undefined Unwind@10154220(void) 17 1 +10154250 Unwind@10154250 undefined Unwind@10154250(void) 17 1 +10154280 Unwind@10154280 undefined Unwind@10154280(void) 17 1 +101542b0 Unwind@101542b0 undefined Unwind@101542b0(void) 9 0 +101542e0 Unwind@101542e0 undefined Unwind@101542e0(void) 8 1 +10154310 Unwind@10154310 undefined Unwind@10154310(void) 9 0 +10154340 Unwind@10154340 undefined Unwind@10154340(void) 17 1 +10154370 Unwind@10154370 undefined Unwind@10154370(void) 17 1 +101543a0 Unwind@101543a0 undefined Unwind@101543a0(void) 8 1 +101543d0 Unwind@101543d0 undefined Unwind@101543d0(void) 8 1 +101543d8 Unwind@101543d8 undefined Unwind@101543d8(void) 8 1 +10154400 Unwind@10154400 undefined Unwind@10154400(void) 8 1 +10154408 Unwind@10154408 undefined Unwind@10154408(void) 11 1 +10154413 Unwind@10154413 undefined Unwind@10154413(void) 8 1 +10154440 Unwind@10154440 undefined Unwind@10154440(void) 8 1 +10154470 Unwind@10154470 undefined Unwind@10154470(void) 8 1 +101544a0 Unwind@101544a0 undefined Unwind@101544a0(void) 8 1 +101544a8 Unwind@101544a8 undefined Unwind@101544a8(void) 8 1 +101544b0 Unwind@101544b0 undefined Unwind@101544b0(void) 8 1 +101544b8 Unwind@101544b8 undefined Unwind@101544b8(void) 8 1 +101544c0 Unwind@101544c0 undefined Unwind@101544c0(void) 8 1 +101544c8 Unwind@101544c8 undefined Unwind@101544c8(void) 8 1 +101544f0 Unwind@101544f0 undefined Unwind@101544f0(void) 8 1 +101544f8 Unwind@101544f8 undefined Unwind@101544f8(void) 11 1 +10154503 Unwind@10154503 undefined Unwind@10154503(void) 11 1 +1015450e Unwind@1015450e undefined Unwind@1015450e(void) 11 1 +10154519 Unwind@10154519 undefined Unwind@10154519(void) 11 1 +10154524 Unwind@10154524 undefined Unwind@10154524(void) 8 1 +10154550 Unwind@10154550 undefined Unwind@10154550(void) 8 1 +10154558 Unwind@10154558 undefined Unwind@10154558(void) 8 1 +10154560 Unwind@10154560 undefined Unwind@10154560(void) 11 1 +1015456b Unwind@1015456b undefined Unwind@1015456b(void) 11 1 +10154576 Unwind@10154576 undefined Unwind@10154576(void) 11 1 +10154581 Unwind@10154581 undefined Unwind@10154581(void) 11 1 +1015458c Unwind@1015458c undefined Unwind@1015458c(void) 8 1 +101545b0 Unwind@101545b0 undefined Unwind@101545b0(void) 8 1 +101545e0 Unwind@101545e0 undefined Unwind@101545e0(void) 8 1 +101545e8 Unwind@101545e8 undefined Unwind@101545e8(void) 8 1 +101545f0 Unwind@101545f0 undefined Unwind@101545f0(void) 8 1 +10154620 Unwind@10154620 undefined Unwind@10154620(void) 8 1 +10154628 Unwind@10154628 undefined Unwind@10154628(void) 8 1 +10154630 Unwind@10154630 undefined Unwind@10154630(void) 8 1 +10154660 Unwind@10154660 undefined Unwind@10154660(void) 8 1 +10154668 Unwind@10154668 undefined Unwind@10154668(void) 8 1 +10154670 Unwind@10154670 undefined Unwind@10154670(void) 11 1 +1015467b Unwind@1015467b undefined Unwind@1015467b(void) 11 1 +10154686 Unwind@10154686 undefined Unwind@10154686(void) 11 1 +10154691 Unwind@10154691 undefined Unwind@10154691(void) 11 1 +1015469c Unwind@1015469c undefined Unwind@1015469c(void) 8 1 +101546c0 Unwind@101546c0 undefined Unwind@101546c0(void) 8 1 +101546c8 Unwind@101546c8 undefined Unwind@101546c8(void) 8 1 +101546f0 Unwind@101546f0 undefined Unwind@101546f0(void) 8 1 +101546f8 Unwind@101546f8 undefined Unwind@101546f8(void) 8 1 +10154700 Unwind@10154700 undefined Unwind@10154700(void) 11 1 +10154730 Unwind@10154730 undefined Unwind@10154730(void) 8 1 +10154738 Unwind@10154738 undefined Unwind@10154738(void) 8 1 +10154740 Unwind@10154740 undefined Unwind@10154740(void) 8 1 +10154748 Unwind@10154748 undefined Unwind@10154748(void) 11 1 +10154753 Unwind@10154753 undefined Unwind@10154753(void) 8 1 +1015475b Unwind@1015475b undefined Unwind@1015475b(void) 11 1 +10154790 Unwind@10154790 undefined Unwind@10154790(void) 8 1 +10154798 Unwind@10154798 undefined Unwind@10154798(void) 11 1 +101547a3 Unwind@101547a3 undefined Unwind@101547a3(void) 11 1 +101547ae Unwind@101547ae undefined Unwind@101547ae(void) 8 1 +101547b6 Unwind@101547b6 undefined Unwind@101547b6(void) 8 1 +101547be Unwind@101547be undefined Unwind@101547be(void) 8 1 +101547f0 Unwind@101547f0 undefined Unwind@101547f0(void) 8 1 +10154820 Unwind@10154820 undefined Unwind@10154820(void) 8 1 +10154828 Unwind@10154828 undefined Unwind@10154828(void) 8 1 +10154850 Unwind@10154850 undefined Unwind@10154850(void) 8 1 +10154858 Unwind@10154858 undefined Unwind@10154858(void) 8 1 +10154880 Unwind@10154880 undefined Unwind@10154880(void) 8 1 +10154888 Unwind@10154888 undefined Unwind@10154888(void) 8 1 +101548b0 Unwind@101548b0 undefined Unwind@101548b0(void) 8 1 +101548b8 Unwind@101548b8 undefined Unwind@101548b8(void) 8 1 +101548e0 Unwind@101548e0 undefined Unwind@101548e0(void) 8 1 +101548e8 Unwind@101548e8 undefined Unwind@101548e8(void) 8 1 +10154910 Unwind@10154910 undefined Unwind@10154910(void) 8 1 +10154918 Unwind@10154918 undefined Unwind@10154918(void) 8 1 +10154940 Unwind@10154940 undefined Unwind@10154940(void) 14 0 +10154970 Unwind@10154970 undefined Unwind@10154970(void) 8 1 +10154978 Unwind@10154978 undefined Unwind@10154978(void) 8 1 +101549a0 Unwind@101549a0 undefined Unwind@101549a0(void) 8 1 +101549a8 Unwind@101549a8 undefined Unwind@101549a8(void) 8 1 +101549d0 Unwind@101549d0 undefined Unwind@101549d0(void) 8 1 +101549d8 Unwind@101549d8 undefined Unwind@101549d8(void) 8 1 +10154a00 Unwind@10154a00 undefined Unwind@10154a00(void) 8 1 +10154a08 Unwind@10154a08 undefined Unwind@10154a08(void) 8 1 +10154a30 Unwind@10154a30 undefined Unwind@10154a30(void) 8 1 +10154a38 Unwind@10154a38 undefined Unwind@10154a38(void) 8 1 +10154a60 Unwind@10154a60 undefined Unwind@10154a60(void) 8 1 +10154a90 Unwind@10154a90 undefined Unwind@10154a90(void) 11 1 +10154ad0 Unwind@10154ad0 undefined Unwind@10154ad0(void) 8 1 +10154ad8 Unwind@10154ad8 undefined Unwind@10154ad8(void) 8 1 +10154b00 Unwind@10154b00 undefined Unwind@10154b00(void) 8 1 +10154b08 Unwind@10154b08 undefined Unwind@10154b08(void) 8 1 +10154b10 Unwind@10154b10 undefined Unwind@10154b10(void) 8 1 +10154b40 Unwind@10154b40 undefined Unwind@10154b40(void) 8 1 +10154b48 Unwind@10154b48 undefined Unwind@10154b48(void) 8 1 +10154b70 Unwind@10154b70 undefined Unwind@10154b70(void) 8 1 +10154b78 Unwind@10154b78 undefined Unwind@10154b78(void) 8 1 +10154ba0 Unwind@10154ba0 undefined Unwind@10154ba0(void) 8 1 +10154ba8 Unwind@10154ba8 undefined Unwind@10154ba8(void) 8 1 +10154bd0 Unwind@10154bd0 undefined Unwind@10154bd0(void) 8 1 +10154bd8 Unwind@10154bd8 undefined Unwind@10154bd8(void) 8 1 +10154c00 Unwind@10154c00 undefined Unwind@10154c00(void) 8 1 +10154c08 Unwind@10154c08 undefined Unwind@10154c08(void) 8 1 +10154c30 Unwind@10154c30 undefined Unwind@10154c30(void) 9 0 +10154c60 Unwind@10154c60 undefined Unwind@10154c60(void) 9 0 +10154c90 Unwind@10154c90 undefined Unwind@10154c90(void) 9 0 +10154cc0 Unwind@10154cc0 undefined Unwind@10154cc0(void) 8 1 +10154cc8 Unwind@10154cc8 undefined Unwind@10154cc8(void) 8 1 +10154cf0 Unwind@10154cf0 undefined Unwind@10154cf0(void) 9 0 +10154d20 Unwind@10154d20 undefined Unwind@10154d20(void) 8 1 +10154d28 Unwind@10154d28 undefined Unwind@10154d28(void) 8 1 +10154d50 Unwind@10154d50 undefined Unwind@10154d50(void) 8 1 +10154d58 Unwind@10154d58 undefined Unwind@10154d58(void) 8 1 +10154d80 Unwind@10154d80 undefined Unwind@10154d80(void) 9 0 +10154db0 Unwind@10154db0 undefined Unwind@10154db0(void) 12 0 +10154dbc Unwind@10154dbc undefined Unwind@10154dbc(void) 11 1 +10154dc7 Unwind@10154dc7 undefined Unwind@10154dc7(void) 9 0 +10154df0 Unwind@10154df0 undefined Unwind@10154df0(void) 9 0 +10154df9 Unwind@10154df9 undefined Unwind@10154df9(void) 11 1 +10154e20 Unwind@10154e20 undefined Unwind@10154e20(void) 9 0 +10154e29 Unwind@10154e29 undefined Unwind@10154e29(void) 11 1 +10154e50 Unwind@10154e50 undefined Unwind@10154e50(void) 9 0 +10154e80 Unwind@10154e80 undefined Unwind@10154e80(void) 9 0 +10154e89 Unwind@10154e89 undefined Unwind@10154e89(void) 11 1 +10154eb0 Unwind@10154eb0 undefined Unwind@10154eb0(void) 9 0 +10154eb9 Unwind@10154eb9 undefined Unwind@10154eb9(void) 11 1 +10154ee0 Unwind@10154ee0 undefined Unwind@10154ee0(void) 9 0 +10154f10 Unwind@10154f10 undefined Unwind@10154f10(void) 9 0 +10154f40 Unwind@10154f40 undefined Unwind@10154f40(void) 9 0 +10154f70 Unwind@10154f70 undefined Unwind@10154f70(void) 9 0 +10154fa0 Unwind@10154fa0 undefined Unwind@10154fa0(void) 9 0 +10154fd0 Unwind@10154fd0 undefined Unwind@10154fd0(void) 17 1 +10155000 Unwind@10155000 undefined Unwind@10155000(void) 9 0 +10155030 Unwind@10155030 undefined Unwind@10155030(void) 9 0 +10155060 Unwind@10155060 undefined Unwind@10155060(void) 9 0 +10155090 Unwind@10155090 undefined Unwind@10155090(void) 9 0 +101550c0 Unwind@101550c0 undefined Unwind@101550c0(void) 9 0 +101550f0 Unwind@101550f0 undefined Unwind@101550f0(void) 17 1 +10155120 Unwind@10155120 undefined Unwind@10155120(void) 9 0 +10155150 Unwind@10155150 undefined Unwind@10155150(void) 9 0 +10155180 Unwind@10155180 undefined Unwind@10155180(void) 9 0 +101551b0 Unwind@101551b0 undefined Unwind@101551b0(void) 9 0 +101551e0 Unwind@101551e0 undefined Unwind@101551e0(void) 9 0 +10155210 Unwind@10155210 undefined Unwind@10155210(void) 9 0 +10155240 Unwind@10155240 undefined Unwind@10155240(void) 9 0 +10155270 Unwind@10155270 undefined Unwind@10155270(void) 9 0 +101552a0 Unwind@101552a0 undefined Unwind@101552a0(void) 9 0 +101552d0 Unwind@101552d0 undefined Unwind@101552d0(void) 9 0 +10155300 Unwind@10155300 undefined Unwind@10155300(void) 9 0 +10155330 Unwind@10155330 undefined Unwind@10155330(void) 9 0 +10155360 Unwind@10155360 undefined Unwind@10155360(void) 9 0 +10155390 Unwind@10155390 undefined Unwind@10155390(void) 9 0 +101553c0 Unwind@101553c0 undefined Unwind@101553c0(void) 9 0 +101553f0 Unwind@101553f0 undefined Unwind@101553f0(void) 9 0 +10155420 Unwind@10155420 undefined Unwind@10155420(void) 9 0 +10155450 Unwind@10155450 undefined Unwind@10155450(void) 9 0 +10155480 Unwind@10155480 undefined Unwind@10155480(void) 9 0 +101554b0 Unwind@101554b0 undefined Unwind@101554b0(void) 9 0 +101554e0 Unwind@101554e0 undefined Unwind@101554e0(void) 9 0 +10155510 Unwind@10155510 undefined Unwind@10155510(void) 9 0 +10155540 Unwind@10155540 undefined Unwind@10155540(void) 9 0 +10155570 Unwind@10155570 undefined Unwind@10155570(void) 9 0 +101555a0 Unwind@101555a0 undefined Unwind@101555a0(void) 9 0 +101555d0 Unwind@101555d0 undefined Unwind@101555d0(void) 9 0 +10155600 Unwind@10155600 undefined Unwind@10155600(void) 9 0 +10155630 Unwind@10155630 undefined Unwind@10155630(void) 9 0 +10155660 Unwind@10155660 undefined Unwind@10155660(void) 9 0 +10155690 Unwind@10155690 undefined Unwind@10155690(void) 9 0 +101556c0 Unwind@101556c0 undefined Unwind@101556c0(void) 9 0 +101556f0 Unwind@101556f0 undefined Unwind@101556f0(void) 9 0 +10155720 Unwind@10155720 undefined Unwind@10155720(void) 9 0 +10155750 Unwind@10155750 undefined Unwind@10155750(void) 9 0 +10155780 Unwind@10155780 undefined Unwind@10155780(void) 9 0 +101557b0 Unwind@101557b0 undefined Unwind@101557b0(void) 9 0 +101557e0 Unwind@101557e0 undefined Unwind@101557e0(void) 9 0 +10155810 Unwind@10155810 undefined Unwind@10155810(void) 9 0 +10155840 Unwind@10155840 undefined Unwind@10155840(void) 9 0 +10155870 Unwind@10155870 undefined Unwind@10155870(void) 9 0 +101558a0 Unwind@101558a0 undefined Unwind@101558a0(void) 9 0 +101558d0 Unwind@101558d0 undefined Unwind@101558d0(void) 9 0 +10155900 Unwind@10155900 undefined Unwind@10155900(void) 9 0 +10155950 Unwind@10155950 undefined Unwind@10155950(void) 8 1 +10155958 Unwind@10155958 undefined Unwind@10155958(void) 8 1 +10155960 Unwind@10155960 undefined Unwind@10155960(void) 8 1 +10155968 Unwind@10155968 undefined Unwind@10155968(void) 8 1 +10155970 Unwind@10155970 undefined Unwind@10155970(void) 8 1 +101559a0 Unwind@101559a0 undefined Unwind@101559a0(void) 8 1 +101559a8 Unwind@101559a8 undefined Unwind@101559a8(void) 8 1 +101559b0 Unwind@101559b0 undefined Unwind@101559b0(void) 8 1 +101559e0 Unwind@101559e0 undefined Unwind@101559e0(void) 8 1 +101559e8 Unwind@101559e8 undefined Unwind@101559e8(void) 8 1 +101559f0 Unwind@101559f0 undefined Unwind@101559f0(void) 8 1 +101559f8 Unwind@101559f8 undefined Unwind@101559f8(void) 8 1 +10155a40 Unwind@10155a40 undefined Unwind@10155a40(void) 8 1 +10155a48 Unwind@10155a48 undefined Unwind@10155a48(void) 8 1 +10155a50 Unwind@10155a50 undefined Unwind@10155a50(void) 8 1 +10155a58 Unwind@10155a58 undefined Unwind@10155a58(void) 8 1 +10155a60 Unwind@10155a60 undefined Unwind@10155a60(void) 8 1 +10155a90 Unwind@10155a90 undefined Unwind@10155a90(void) 8 1 +10155a98 Unwind@10155a98 undefined Unwind@10155a98(void) 8 1 +10155aa0 Unwind@10155aa0 undefined Unwind@10155aa0(void) 8 1 +10155ad0 Unwind@10155ad0 undefined Unwind@10155ad0(void) 17 1 +10155b00 Unwind@10155b00 undefined Unwind@10155b00(void) 17 1 +10155b30 Unwind@10155b30 undefined Unwind@10155b30(void) 17 1 +10155b60 Unwind@10155b60 undefined Unwind@10155b60(void) 17 1 +10155b90 Unwind@10155b90 undefined Unwind@10155b90(void) 17 1 +10155bc0 Unwind@10155bc0 undefined Unwind@10155bc0(void) 9 0 +10155bf0 Unwind@10155bf0 undefined Unwind@10155bf0(void) 9 0 +10155c20 Unwind@10155c20 undefined Unwind@10155c20(void) 9 0 +10155c50 Unwind@10155c50 undefined Unwind@10155c50(void) 9 0 +10155c80 Unwind@10155c80 undefined Unwind@10155c80(void) 9 0 +10155cb0 Unwind@10155cb0 undefined Unwind@10155cb0(void) 9 0 +10155ce0 Unwind@10155ce0 undefined Unwind@10155ce0(void) 9 0 +10155d10 Unwind@10155d10 undefined Unwind@10155d10(void) 11 1 +10155d1b Unwind@10155d1b undefined Unwind@10155d1b(void) 11 1 +10155d26 Unwind@10155d26 undefined Unwind@10155d26(void) 11 1 +10155d31 Unwind@10155d31 undefined Unwind@10155d31(void) 11 1 +10155d3c Unwind@10155d3c undefined Unwind@10155d3c(void) 8 1 +10155d60 Unwind@10155d60 undefined Unwind@10155d60(void) 8 1 +10155d90 Unwind@10155d90 undefined Unwind@10155d90(void) 8 1 +10155dc0 Unwind@10155dc0 undefined Unwind@10155dc0(void) 11 1 +10155df0 Unwind@10155df0 undefined Unwind@10155df0(void) 17 1 +10155e40 Unwind@10155e40 undefined Unwind@10155e40(void) 8 1 +10155e70 Unwind@10155e70 undefined Unwind@10155e70(void) 17 1 +10155ea0 Unwind@10155ea0 undefined Unwind@10155ea0(void) 17 1 +10155ed0 Unwind@10155ed0 undefined Unwind@10155ed0(void) 17 1 +10155f00 Unwind@10155f00 undefined Unwind@10155f00(void) 17 1 +10155f30 Unwind@10155f30 undefined Unwind@10155f30(void) 17 1 +10155f60 Unwind@10155f60 undefined Unwind@10155f60(void) 17 1 +10155f90 Unwind@10155f90 undefined Unwind@10155f90(void) 9 0 +10155fc0 Unwind@10155fc0 undefined Unwind@10155fc0(void) 8 1 +10155fc8 Unwind@10155fc8 undefined Unwind@10155fc8(void) 11 1 +10155fd3 Unwind@10155fd3 undefined Unwind@10155fd3(void) 11 1 +10155fde Unwind@10155fde undefined Unwind@10155fde(void) 11 1 +10155fe9 Unwind@10155fe9 undefined Unwind@10155fe9(void) 11 1 +10155ff4 Unwind@10155ff4 undefined Unwind@10155ff4(void) 8 1 +10156020 Unwind@10156020 undefined Unwind@10156020(void) 8 1 +10156028 Unwind@10156028 undefined Unwind@10156028(void) 11 1 +10156050 Unwind@10156050 undefined Unwind@10156050(void) 8 1 +10156080 Unwind@10156080 undefined Unwind@10156080(void) 8 1 +10156088 Unwind@10156088 undefined Unwind@10156088(void) 8 1 +10156090 Unwind@10156090 undefined Unwind@10156090(void) 11 1 +1015609b Unwind@1015609b undefined Unwind@1015609b(void) 8 1 +101560a3 Unwind@101560a3 undefined Unwind@101560a3(void) 8 1 +101560ab Unwind@101560ab undefined Unwind@101560ab(void) 11 1 +101560e0 Unwind@101560e0 undefined Unwind@101560e0(void) 8 1 +10156110 Unwind@10156110 undefined Unwind@10156110(void) 8 1 +10156118 Unwind@10156118 undefined Unwind@10156118(void) 11 1 +10156123 Unwind@10156123 undefined Unwind@10156123(void) 11 1 +1015612e Unwind@1015612e undefined Unwind@1015612e(void) 8 1 +10156136 Unwind@10156136 undefined Unwind@10156136(void) 8 1 +1015613e Unwind@1015613e undefined Unwind@1015613e(void) 8 1 +10156170 Unwind@10156170 undefined Unwind@10156170(void) 8 1 +10156178 Unwind@10156178 undefined Unwind@10156178(void) 11 1 +10156183 Unwind@10156183 undefined Unwind@10156183(void) 11 1 +1015618e Unwind@1015618e undefined Unwind@1015618e(void) 8 1 +10156196 Unwind@10156196 undefined Unwind@10156196(void) 8 1 +1015619e Unwind@1015619e undefined Unwind@1015619e(void) 8 1 +101561d0 Unwind@101561d0 undefined Unwind@101561d0(void) 8 1 +10156200 Unwind@10156200 undefined Unwind@10156200(void) 8 1 +10156208 Unwind@10156208 undefined Unwind@10156208(void) 8 1 +10156230 Unwind@10156230 undefined Unwind@10156230(void) 8 1 +10156238 Unwind@10156238 undefined Unwind@10156238(void) 8 1 +10156260 Unwind@10156260 undefined Unwind@10156260(void) 14 0 +10156290 Unwind@10156290 undefined Unwind@10156290(void) 14 0 +1015629e Unwind@1015629e undefined Unwind@1015629e(void) 14 0 +101562ac Unwind@101562ac undefined Unwind@101562ac(void) 25 1 +101562c5 Unwind@101562c5 undefined Unwind@101562c5(void) 25 1 +101562de Unwind@101562de undefined Unwind@101562de(void) 14 0 +101562ec Unwind@101562ec undefined Unwind@101562ec(void) 14 0 +101562fa Unwind@101562fa undefined Unwind@101562fa(void) 14 0 +10156330 Unwind@10156330 undefined Unwind@10156330(void) 14 0 +1015633e Unwind@1015633e undefined Unwind@1015633e(void) 14 0 +1015634c Unwind@1015634c undefined Unwind@1015634c(void) 14 0 +10156380 Unwind@10156380 undefined Unwind@10156380(void) 11 1 +101563b0 Unwind@101563b0 undefined Unwind@101563b0(void) 11 1 +101563bb Unwind@101563bb undefined Unwind@101563bb(void) 11 1 +101563c6 Unwind@101563c6 undefined Unwind@101563c6(void) 11 1 +101563d1 Unwind@101563d1 undefined Unwind@101563d1(void) 11 1 +101563dc Unwind@101563dc undefined Unwind@101563dc(void) 11 1 +10156410 Unwind@10156410 undefined Unwind@10156410(void) 14 0 +1015641e Unwind@1015641e undefined Unwind@1015641e(void) 14 0 +1015642c Unwind@1015642c undefined Unwind@1015642c(void) 14 0 +10156460 Unwind@10156460 undefined Unwind@10156460(void) 8 1 +10156468 Unwind@10156468 undefined Unwind@10156468(void) 8 1 +10156470 Unwind@10156470 undefined Unwind@10156470(void) 8 1 +10156478 Unwind@10156478 undefined Unwind@10156478(void) 8 1 +10156480 Unwind@10156480 undefined Unwind@10156480(void) 8 1 +10156488 Unwind@10156488 undefined Unwind@10156488(void) 8 1 +10156490 Unwind@10156490 undefined Unwind@10156490(void) 8 1 +10156498 Unwind@10156498 undefined Unwind@10156498(void) 14 0 +101564a6 Unwind@101564a6 undefined Unwind@101564a6(void) 14 0 +101564b4 Unwind@101564b4 undefined Unwind@101564b4(void) 8 1 +101564e0 Unwind@101564e0 undefined Unwind@101564e0(void) 11 1 +101564eb Unwind@101564eb undefined Unwind@101564eb(void) 11 1 +101564f6 Unwind@101564f6 undefined Unwind@101564f6(void) 11 1 +10156501 Unwind@10156501 undefined Unwind@10156501(void) 11 1 +1015650c Unwind@1015650c undefined Unwind@1015650c(void) 11 1 +10156517 Unwind@10156517 undefined Unwind@10156517(void) 11 1 +10156522 Unwind@10156522 undefined Unwind@10156522(void) 11 1 +1015652d Unwind@1015652d undefined Unwind@1015652d(void) 11 1 +10156538 Unwind@10156538 undefined Unwind@10156538(void) 11 1 +10156543 Unwind@10156543 undefined Unwind@10156543(void) 11 1 +1015654e Unwind@1015654e undefined Unwind@1015654e(void) 11 1 +10156559 Unwind@10156559 undefined Unwind@10156559(void) 11 1 +10156564 Unwind@10156564 undefined Unwind@10156564(void) 11 1 +1015656f Unwind@1015656f undefined Unwind@1015656f(void) 11 1 +1015657a Unwind@1015657a undefined Unwind@1015657a(void) 11 1 +10156585 Unwind@10156585 undefined Unwind@10156585(void) 11 1 +10156590 Unwind@10156590 undefined Unwind@10156590(void) 11 1 +1015659b Unwind@1015659b undefined Unwind@1015659b(void) 11 1 +101565a6 Unwind@101565a6 undefined Unwind@101565a6(void) 11 1 +101565e0 Unwind@101565e0 undefined Unwind@101565e0(void) 11 1 +101565eb Unwind@101565eb undefined Unwind@101565eb(void) 11 1 +101565f6 Unwind@101565f6 undefined Unwind@101565f6(void) 11 1 +10156601 Unwind@10156601 undefined Unwind@10156601(void) 8 1 +10156640 Unwind@10156640 undefined Unwind@10156640(void) 8 1 +10156648 Unwind@10156648 undefined Unwind@10156648(void) 25 1 +10156680 Unwind@10156680 undefined Unwind@10156680(void) 8 1 +101566b0 Unwind@101566b0 undefined Unwind@101566b0(void) 14 0 +101566be Unwind@101566be undefined Unwind@101566be(void) 14 0 +101566cc Unwind@101566cc undefined Unwind@101566cc(void) 14 0 +101566da Unwind@101566da undefined Unwind@101566da(void) 14 0 +10156710 Unwind@10156710 undefined Unwind@10156710(void) 8 1 +10156718 Unwind@10156718 undefined Unwind@10156718(void) 9 0 +10156740 Unwind@10156740 undefined Unwind@10156740(void) 12 0 +1015674c Unwind@1015674c undefined Unwind@1015674c(void) 11 1 +10156757 Unwind@10156757 undefined Unwind@10156757(void) 9 0 +10156780 Unwind@10156780 undefined Unwind@10156780(void) 8 1 +10156788 Unwind@10156788 undefined Unwind@10156788(void) 25 1 +101567c0 Unwind@101567c0 undefined Unwind@101567c0(void) 8 1 +101567f0 Unwind@101567f0 undefined Unwind@101567f0(void) 14 0 +101567fe Unwind@101567fe undefined Unwind@101567fe(void) 14 0 +10156830 Unwind@10156830 undefined Unwind@10156830(void) 8 1 +10156838 Unwind@10156838 undefined Unwind@10156838(void) 9 0 +10156860 Unwind@10156860 undefined Unwind@10156860(void) 8 1 +10156868 Unwind@10156868 undefined Unwind@10156868(void) 9 0 +10156890 Unwind@10156890 undefined Unwind@10156890(void) 8 1 +10156898 Unwind@10156898 undefined Unwind@10156898(void) 9 0 +101568c0 Unwind@101568c0 undefined Unwind@101568c0(void) 8 1 +101568c8 Unwind@101568c8 undefined Unwind@101568c8(void) 9 0 +101568f0 Unwind@101568f0 undefined Unwind@101568f0(void) 9 0 +101568f9 Unwind@101568f9 undefined Unwind@101568f9(void) 11 1 +10156920 Unwind@10156920 undefined Unwind@10156920(void) 9 0 +10156929 Unwind@10156929 undefined Unwind@10156929(void) 11 1 +10156950 Unwind@10156950 undefined Unwind@10156950(void) 11 1 +1015695b Unwind@1015695b undefined Unwind@1015695b(void) 9 0 +10156964 Unwind@10156964 undefined Unwind@10156964(void) 11 1 +1015696f Unwind@1015696f undefined Unwind@1015696f(void) 11 1 +1015697a Unwind@1015697a undefined Unwind@1015697a(void) 11 1 +101569a0 Unwind@101569a0 undefined Unwind@101569a0(void) 8 1 +101569a8 Unwind@101569a8 undefined Unwind@101569a8(void) 9 0 +101569d0 Unwind@101569d0 undefined Unwind@101569d0(void) 8 1 +101569d8 Unwind@101569d8 undefined Unwind@101569d8(void) 9 0 +10156a00 Unwind@10156a00 undefined Unwind@10156a00(void) 8 1 +10156a30 Unwind@10156a30 undefined Unwind@10156a30(void) 8 1 +10156a38 Unwind@10156a38 undefined Unwind@10156a38(void) 9 0 +10156a60 Unwind@10156a60 undefined Unwind@10156a60(void) 8 1 +10156a68 Unwind@10156a68 undefined Unwind@10156a68(void) 9 0 +10156a90 Unwind@10156a90 undefined Unwind@10156a90(void) 8 1 +10156a98 Unwind@10156a98 undefined Unwind@10156a98(void) 9 0 +10156ac0 Unwind@10156ac0 undefined Unwind@10156ac0(void) 8 1 +10156ac8 Unwind@10156ac8 undefined Unwind@10156ac8(void) 9 0 +10156af0 Unwind@10156af0 undefined Unwind@10156af0(void) 8 1 +10156af8 Unwind@10156af8 undefined Unwind@10156af8(void) 9 0 +10156b20 Unwind@10156b20 undefined Unwind@10156b20(void) 8 1 +10156b28 Unwind@10156b28 undefined Unwind@10156b28(void) 9 0 +10156b50 Unwind@10156b50 undefined Unwind@10156b50(void) 9 0 +10156b80 Unwind@10156b80 undefined Unwind@10156b80(void) 8 1 +10156b88 Unwind@10156b88 undefined Unwind@10156b88(void) 9 0 +10156bb0 Unwind@10156bb0 undefined Unwind@10156bb0(void) 8 1 +10156bb8 Unwind@10156bb8 undefined Unwind@10156bb8(void) 9 0 +10156be0 Unwind@10156be0 undefined Unwind@10156be0(void) 8 1 +10156be8 Unwind@10156be8 undefined Unwind@10156be8(void) 9 0 +10156c10 Unwind@10156c10 undefined Unwind@10156c10(void) 8 1 +10156c18 Unwind@10156c18 undefined Unwind@10156c18(void) 9 0 +10156c40 Unwind@10156c40 undefined Unwind@10156c40(void) 8 1 +10156c48 Unwind@10156c48 undefined Unwind@10156c48(void) 9 0 +10156c70 Unwind@10156c70 undefined Unwind@10156c70(void) 8 1 +10156c78 Unwind@10156c78 undefined Unwind@10156c78(void) 9 0 +10156ca0 Unwind@10156ca0 undefined Unwind@10156ca0(void) 8 1 +10156ca8 Unwind@10156ca8 undefined Unwind@10156ca8(void) 9 0 +10156cd0 Unwind@10156cd0 undefined Unwind@10156cd0(void) 8 1 +10156cd8 Unwind@10156cd8 undefined Unwind@10156cd8(void) 9 0 +10156d00 Unwind@10156d00 undefined Unwind@10156d00(void) 8 1 +10156d08 Unwind@10156d08 undefined Unwind@10156d08(void) 9 0 +10156d30 Unwind@10156d30 undefined Unwind@10156d30(void) 8 1 +10156d38 Unwind@10156d38 undefined Unwind@10156d38(void) 9 0 +10156d60 Unwind@10156d60 undefined Unwind@10156d60(void) 8 1 +10156d68 Unwind@10156d68 undefined Unwind@10156d68(void) 9 0 +10156d90 Unwind@10156d90 undefined Unwind@10156d90(void) 8 1 +10156d98 Unwind@10156d98 undefined Unwind@10156d98(void) 9 0 +10156dc0 Unwind@10156dc0 undefined Unwind@10156dc0(void) 8 1 +10156dc8 Unwind@10156dc8 undefined Unwind@10156dc8(void) 9 0 +10156df0 Unwind@10156df0 undefined Unwind@10156df0(void) 8 1 +10156df8 Unwind@10156df8 undefined Unwind@10156df8(void) 9 0 +10156e20 Unwind@10156e20 undefined Unwind@10156e20(void) 29 0 +10156e3d Unwind@10156e3d undefined Unwind@10156e3d(void) 12 0 +10156e49 Unwind@10156e49 undefined Unwind@10156e49(void) 9 0 +10156e52 Unwind@10156e52 undefined Unwind@10156e52(void) 11 1 +10156e80 Unwind@10156e80 undefined Unwind@10156e80(void) 8 1 +10156e88 Unwind@10156e88 undefined Unwind@10156e88(void) 9 0 +10156eb0 Unwind@10156eb0 undefined Unwind@10156eb0(void) 8 1 +10156eb8 Unwind@10156eb8 undefined Unwind@10156eb8(void) 9 0 +10156ee0 Unwind@10156ee0 undefined Unwind@10156ee0(void) 8 1 +10156ee8 Unwind@10156ee8 undefined Unwind@10156ee8(void) 9 0 +10156f10 Unwind@10156f10 undefined Unwind@10156f10(void) 8 1 +10156f18 Unwind@10156f18 undefined Unwind@10156f18(void) 9 0 +10156f40 Unwind@10156f40 undefined Unwind@10156f40(void) 8 1 +10156f48 Unwind@10156f48 undefined Unwind@10156f48(void) 9 0 +10156f70 Unwind@10156f70 undefined Unwind@10156f70(void) 9 0 +10156f79 Unwind@10156f79 undefined Unwind@10156f79(void) 11 1 +10156fa0 Unwind@10156fa0 undefined Unwind@10156fa0(void) 9 0 +10156fa9 Unwind@10156fa9 undefined Unwind@10156fa9(void) 11 1 +10156fd0 Unwind@10156fd0 undefined Unwind@10156fd0(void) 8 1 +10156fd8 Unwind@10156fd8 undefined Unwind@10156fd8(void) 9 0 +10157000 Unwind@10157000 undefined Unwind@10157000(void) 8 1 +10157008 Unwind@10157008 undefined Unwind@10157008(void) 9 0 +10157030 Unwind@10157030 undefined Unwind@10157030(void) 8 1 +10157038 Unwind@10157038 undefined Unwind@10157038(void) 9 0 +10157060 Unwind@10157060 undefined Unwind@10157060(void) 8 1 +10157068 Unwind@10157068 undefined Unwind@10157068(void) 9 0 +10157090 Unwind@10157090 undefined Unwind@10157090(void) 8 1 +10157098 Unwind@10157098 undefined Unwind@10157098(void) 9 0 +101570c0 Unwind@101570c0 undefined Unwind@101570c0(void) 8 1 +101570c8 Unwind@101570c8 undefined Unwind@101570c8(void) 9 0 +101570f0 Unwind@101570f0 undefined Unwind@101570f0(void) 8 1 +101570f8 Unwind@101570f8 undefined Unwind@101570f8(void) 9 0 +10157120 Unwind@10157120 undefined Unwind@10157120(void) 8 1 +10157128 Unwind@10157128 undefined Unwind@10157128(void) 9 0 +10157150 Unwind@10157150 undefined Unwind@10157150(void) 8 1 +10157158 Unwind@10157158 undefined Unwind@10157158(void) 9 0 +10157180 Unwind@10157180 undefined Unwind@10157180(void) 8 1 +10157188 Unwind@10157188 undefined Unwind@10157188(void) 9 0 +101571b0 Unwind@101571b0 undefined Unwind@101571b0(void) 8 1 +101571b8 Unwind@101571b8 undefined Unwind@101571b8(void) 9 0 +101571e0 Unwind@101571e0 undefined Unwind@101571e0(void) 9 0 +101571e9 Unwind@101571e9 undefined Unwind@101571e9(void) 17 1 +101571fa Unwind@101571fa undefined Unwind@101571fa(void) 9 0 +10157220 Unwind@10157220 undefined Unwind@10157220(void) 9 0 +10157250 Unwind@10157250 undefined Unwind@10157250(void) 8 1 +10157258 Unwind@10157258 undefined Unwind@10157258(void) 9 0 +10157280 Unwind@10157280 undefined Unwind@10157280(void) 8 1 +10157288 Unwind@10157288 undefined Unwind@10157288(void) 9 0 +101572b0 Unwind@101572b0 undefined Unwind@101572b0(void) 8 1 +101572b8 Unwind@101572b8 undefined Unwind@101572b8(void) 9 0 +101572e0 Unwind@101572e0 undefined Unwind@101572e0(void) 8 1 +101572e8 Unwind@101572e8 undefined Unwind@101572e8(void) 9 0 +10157310 Unwind@10157310 undefined Unwind@10157310(void) 8 1 +10157318 Unwind@10157318 undefined Unwind@10157318(void) 9 0 +10157340 Unwind@10157340 undefined Unwind@10157340(void) 8 1 +10157348 Unwind@10157348 undefined Unwind@10157348(void) 9 0 +10157370 Unwind@10157370 undefined Unwind@10157370(void) 8 1 +10157378 Unwind@10157378 undefined Unwind@10157378(void) 9 0 +101573a0 Unwind@101573a0 undefined Unwind@101573a0(void) 8 1 +101573a8 Unwind@101573a8 undefined Unwind@101573a8(void) 9 0 +101573d0 Unwind@101573d0 undefined Unwind@101573d0(void) 8 1 +101573d8 Unwind@101573d8 undefined Unwind@101573d8(void) 9 0 +10157400 Unwind@10157400 undefined Unwind@10157400(void) 8 1 +10157408 Unwind@10157408 undefined Unwind@10157408(void) 9 0 +10157430 Unwind@10157430 undefined Unwind@10157430(void) 8 1 +10157438 Unwind@10157438 undefined Unwind@10157438(void) 9 0 +10157460 Unwind@10157460 undefined Unwind@10157460(void) 8 1 +10157468 Unwind@10157468 undefined Unwind@10157468(void) 9 0 +10157490 Unwind@10157490 undefined Unwind@10157490(void) 8 1 +10157498 Unwind@10157498 undefined Unwind@10157498(void) 9 0 +101574c0 Unwind@101574c0 undefined Unwind@101574c0(void) 8 1 +101574c8 Unwind@101574c8 undefined Unwind@101574c8(void) 9 0 +101574f0 Unwind@101574f0 undefined Unwind@101574f0(void) 8 1 +101574f8 Unwind@101574f8 undefined Unwind@101574f8(void) 9 0 +10157540 Unwind@10157540 undefined Unwind@10157540(void) 9 0 +10157590 Unwind@10157590 undefined Unwind@10157590(void) 9 0 +101575c0 Unwind@101575c0 undefined Unwind@101575c0(void) 9 0 +101575f0 Unwind@101575f0 undefined Unwind@101575f0(void) 9 0 +101575f9 Unwind@101575f9 undefined Unwind@101575f9(void) 17 1 +1015760a Unwind@1015760a undefined Unwind@1015760a(void) 9 0 +10157630 Unwind@10157630 undefined Unwind@10157630(void) 8 1 +10157638 Unwind@10157638 undefined Unwind@10157638(void) 25 1 +10157670 Unwind@10157670 undefined Unwind@10157670(void) 8 1 +10157678 Unwind@10157678 undefined Unwind@10157678(void) 25 1 +101576d0 Unwind@101576d0 undefined Unwind@101576d0(void) 8 1 +101576d8 Unwind@101576d8 undefined Unwind@101576d8(void) 11 1 +101576e3 Unwind@101576e3 undefined Unwind@101576e3(void) 11 1 +101576ee Unwind@101576ee undefined Unwind@101576ee(void) 11 1 +101576f9 Unwind@101576f9 undefined Unwind@101576f9(void) 11 1 +10157704 Unwind@10157704 undefined Unwind@10157704(void) 8 1 +10157730 Unwind@10157730 undefined Unwind@10157730(void) 8 1 +10157738 Unwind@10157738 undefined Unwind@10157738(void) 8 1 +10157760 Unwind@10157760 undefined Unwind@10157760(void) 8 1 +10157768 Unwind@10157768 undefined Unwind@10157768(void) 8 1 +10157790 Unwind@10157790 undefined Unwind@10157790(void) 8 1 +10157798 Unwind@10157798 undefined Unwind@10157798(void) 11 1 +101577c0 Unwind@101577c0 undefined Unwind@101577c0(void) 17 1 +101577f0 Unwind@101577f0 undefined Unwind@101577f0(void) 17 1 +10157820 Unwind@10157820 undefined Unwind@10157820(void) 17 1 +10157850 Unwind@10157850 undefined Unwind@10157850(void) 17 1 +10157880 Unwind@10157880 undefined Unwind@10157880(void) 17 1 +101578b0 Unwind@101578b0 undefined Unwind@101578b0(void) 17 1 +101578e0 Unwind@101578e0 undefined Unwind@101578e0(void) 17 1 +10157910 Unwind@10157910 undefined Unwind@10157910(void) 17 1 +10157940 Unwind@10157940 undefined Unwind@10157940(void) 17 1 +10157970 Unwind@10157970 undefined Unwind@10157970(void) 17 1 +101579a0 Unwind@101579a0 undefined Unwind@101579a0(void) 17 1 +101579d0 Unwind@101579d0 undefined Unwind@101579d0(void) 17 1 +10157a00 Unwind@10157a00 undefined Unwind@10157a00(void) 17 1 +10157a30 Unwind@10157a30 undefined Unwind@10157a30(void) 17 1 +10157a60 Unwind@10157a60 undefined Unwind@10157a60(void) 8 1 +10157a90 Unwind@10157a90 undefined Unwind@10157a90(void) 8 1 +10157a98 Unwind@10157a98 undefined Unwind@10157a98(void) 8 1 +10157ac0 Unwind@10157ac0 undefined Unwind@10157ac0(void) 8 1 +10157ac8 Unwind@10157ac8 undefined Unwind@10157ac8(void) 8 1 +10157ad0 Unwind@10157ad0 undefined Unwind@10157ad0(void) 8 1 +10157b00 Unwind@10157b00 undefined Unwind@10157b00(void) 14 0 +10157b0e Unwind@10157b0e undefined Unwind@10157b0e(void) 14 0 +10157b50 Unwind@10157b50 undefined Unwind@10157b50(void) 14 0 +10157b5e Unwind@10157b5e undefined Unwind@10157b5e(void) 14 0 +10157b6c Unwind@10157b6c undefined Unwind@10157b6c(void) 14 0 +10157b7a Unwind@10157b7a undefined Unwind@10157b7a(void) 14 0 +10157b88 Unwind@10157b88 undefined Unwind@10157b88(void) 14 0 +10157b96 Unwind@10157b96 undefined Unwind@10157b96(void) 14 0 +10157bc0 Unwind@10157bc0 undefined Unwind@10157bc0(void) 14 0 +10157bce Unwind@10157bce undefined Unwind@10157bce(void) 14 0 +10157bdc Unwind@10157bdc undefined Unwind@10157bdc(void) 14 0 +10157bea Unwind@10157bea undefined Unwind@10157bea(void) 14 0 +10157bf8 Unwind@10157bf8 undefined Unwind@10157bf8(void) 14 0 +10157c06 Unwind@10157c06 undefined Unwind@10157c06(void) 14 0 +10157c40 Unwind@10157c40 undefined Unwind@10157c40(void) 14 0 +10157c4e Unwind@10157c4e undefined Unwind@10157c4e(void) 14 0 +10157c5c Unwind@10157c5c undefined Unwind@10157c5c(void) 14 0 +10157c6a Unwind@10157c6a undefined Unwind@10157c6a(void) 14 0 +10157c78 Unwind@10157c78 undefined Unwind@10157c78(void) 14 0 +10157cb0 Unwind@10157cb0 undefined Unwind@10157cb0(void) 14 0 +10157cbe Unwind@10157cbe undefined Unwind@10157cbe(void) 14 0 +10157ccc Unwind@10157ccc undefined Unwind@10157ccc(void) 14 0 +10157cda Unwind@10157cda undefined Unwind@10157cda(void) 14 0 +10157ce8 Unwind@10157ce8 undefined Unwind@10157ce8(void) 14 0 +10157cf6 Unwind@10157cf6 undefined Unwind@10157cf6(void) 14 0 +10157d04 Unwind@10157d04 undefined Unwind@10157d04(void) 14 0 +10157d40 Unwind@10157d40 undefined Unwind@10157d40(void) 14 0 +10157d4e Unwind@10157d4e undefined Unwind@10157d4e(void) 14 0 +10157d5c Unwind@10157d5c undefined Unwind@10157d5c(void) 14 0 +10157d6a Unwind@10157d6a undefined Unwind@10157d6a(void) 14 0 +10157d78 Unwind@10157d78 undefined Unwind@10157d78(void) 14 0 +10157d86 Unwind@10157d86 undefined Unwind@10157d86(void) 14 0 +10157d94 Unwind@10157d94 undefined Unwind@10157d94(void) 14 0 +10157dc0 Unwind@10157dc0 undefined Unwind@10157dc0(void) 11 1 +10157df0 Unwind@10157df0 undefined Unwind@10157df0(void) 8 1 +10157df8 Unwind@10157df8 undefined Unwind@10157df8(void) 8 1 +10157e00 Unwind@10157e00 undefined Unwind@10157e00(void) 8 1 +10157e08 Unwind@10157e08 undefined Unwind@10157e08(void) 14 0 +10157e16 Unwind@10157e16 undefined Unwind@10157e16(void) 14 0 +10157e24 Unwind@10157e24 undefined Unwind@10157e24(void) 14 0 +10157e50 Unwind@10157e50 undefined Unwind@10157e50(void) 14 0 +10157e5e Unwind@10157e5e undefined Unwind@10157e5e(void) 14 0 +10157e90 Unwind@10157e90 undefined Unwind@10157e90(void) 9 0 +10157e99 Unwind@10157e99 undefined Unwind@10157e99(void) 11 1 +10157ec0 Unwind@10157ec0 undefined Unwind@10157ec0(void) 14 0 +10157ef0 Unwind@10157ef0 undefined Unwind@10157ef0(void) 8 1 +10157f20 Unwind@10157f20 undefined Unwind@10157f20(void) 8 1 +10157f50 Unwind@10157f50 undefined Unwind@10157f50(void) 9 0 +10157f59 Unwind@10157f59 undefined Unwind@10157f59(void) 17 1 +10157f6a Unwind@10157f6a undefined Unwind@10157f6a(void) 8 1 +10157f72 Unwind@10157f72 undefined Unwind@10157f72(void) 9 0 +10157fa0 Unwind@10157fa0 undefined Unwind@10157fa0(void) 17 1 +10157fb1 Unwind@10157fb1 undefined Unwind@10157fb1(void) 9 0 +10157fe0 Unwind@10157fe0 undefined Unwind@10157fe0(void) 8 1 +10158010 Unwind@10158010 undefined Unwind@10158010(void) 9 0 +10158019 Unwind@10158019 undefined Unwind@10158019(void) 17 1 +1015802a Unwind@1015802a undefined Unwind@1015802a(void) 8 1 +10158032 Unwind@10158032 undefined Unwind@10158032(void) 9 0 +10158060 Unwind@10158060 undefined Unwind@10158060(void) 17 1 +10158071 Unwind@10158071 undefined Unwind@10158071(void) 9 0 +101580a0 Unwind@101580a0 undefined Unwind@101580a0(void) 9 0 +101580a8 Unwind@101580a8 undefined Unwind@101580a8(void) 8 0 +101580b0 Unwind@101580b0 undefined Unwind@101580b0(void) 8 0 +101580e0 Unwind@101580e0 undefined Unwind@101580e0(void) 8 0 +101580e8 Unwind@101580e8 undefined Unwind@101580e8(void) 8 0 +101580f0 Unwind@101580f0 undefined Unwind@101580f0(void) 8 0 +10158120 Unwind@10158120 undefined Unwind@10158120(void) 25 1 +10158160 Unwind@10158160 undefined Unwind@10158160(void) 9 0 +10158190 Unwind@10158190 undefined Unwind@10158190(void) 9 0 +101581c0 Unwind@101581c0 undefined Unwind@101581c0(void) 9 0 +101581f0 Unwind@101581f0 undefined Unwind@101581f0(void) 9 0 +10158220 Unwind@10158220 undefined Unwind@10158220(void) 9 0 +10158250 Unwind@10158250 undefined Unwind@10158250(void) 9 0 +10158280 Unwind@10158280 undefined Unwind@10158280(void) 17 1 +101582b0 Unwind@101582b0 undefined Unwind@101582b0(void) 8 1 +101582b8 Unwind@101582b8 undefined Unwind@101582b8(void) 11 1 +101582c3 Unwind@101582c3 undefined Unwind@101582c3(void) 11 1 +101582ce Unwind@101582ce undefined Unwind@101582ce(void) 11 1 +101582d9 Unwind@101582d9 undefined Unwind@101582d9(void) 11 1 +101582e4 Unwind@101582e4 undefined Unwind@101582e4(void) 8 1 +10158310 Unwind@10158310 undefined Unwind@10158310(void) 8 1 +10158318 Unwind@10158318 undefined Unwind@10158318(void) 8 1 +10158340 Unwind@10158340 undefined Unwind@10158340(void) 8 1 +10158348 Unwind@10158348 undefined Unwind@10158348(void) 8 1 +10158350 Unwind@10158350 undefined Unwind@10158350(void) 8 1 +10158380 Unwind@10158380 undefined Unwind@10158380(void) 8 1 +10158388 Unwind@10158388 undefined Unwind@10158388(void) 8 1 +101583b0 Unwind@101583b0 undefined Unwind@101583b0(void) 8 1 +101583b8 Unwind@101583b8 undefined Unwind@101583b8(void) 11 1 +101583e0 Unwind@101583e0 undefined Unwind@101583e0(void) 17 1 +10158410 Unwind@10158410 undefined Unwind@10158410(void) 17 1 +10158440 Unwind@10158440 undefined Unwind@10158440(void) 17 1 +10158470 Unwind@10158470 undefined Unwind@10158470(void) 17 1 +101584a0 Unwind@101584a0 undefined Unwind@101584a0(void) 17 1 +101584d0 Unwind@101584d0 undefined Unwind@101584d0(void) 17 1 +10158500 Unwind@10158500 undefined Unwind@10158500(void) 17 1 +10158550 Unwind@10158550 undefined Unwind@10158550(void) 8 1 +10158580 Unwind@10158580 undefined Unwind@10158580(void) 8 1 +101585b0 Unwind@101585b0 undefined Unwind@101585b0(void) 8 1 +101585b8 Unwind@101585b8 undefined Unwind@101585b8(void) 8 1 +101585c0 Unwind@101585c0 undefined Unwind@101585c0(void) 11 1 +101585cb Unwind@101585cb undefined Unwind@101585cb(void) 11 1 +101585d6 Unwind@101585d6 undefined Unwind@101585d6(void) 11 1 +101585e1 Unwind@101585e1 undefined Unwind@101585e1(void) 11 1 +101585ec Unwind@101585ec undefined Unwind@101585ec(void) 8 1 +10158610 Unwind@10158610 undefined Unwind@10158610(void) 11 1 +1015861b Unwind@1015861b undefined Unwind@1015861b(void) 25 1 +10158650 Unwind@10158650 undefined Unwind@10158650(void) 11 1 +1015865b Unwind@1015865b undefined Unwind@1015865b(void) 25 1 +10158690 Unwind@10158690 undefined Unwind@10158690(void) 8 1 +101586c0 Unwind@101586c0 undefined Unwind@101586c0(void) 8 1 +101586f0 Unwind@101586f0 undefined Unwind@101586f0(void) 8 1 +10158720 Unwind@10158720 undefined Unwind@10158720(void) 8 1 +10158750 Unwind@10158750 undefined Unwind@10158750(void) 8 1 +10158780 Unwind@10158780 undefined Unwind@10158780(void) 11 1 +1015878b Unwind@1015878b undefined Unwind@1015878b(void) 14 0 +10158799 Unwind@10158799 undefined Unwind@10158799(void) 14 0 +101587a7 Unwind@101587a7 undefined Unwind@101587a7(void) 14 0 +101587b5 Unwind@101587b5 undefined Unwind@101587b5(void) 14 0 +101587c3 Unwind@101587c3 undefined Unwind@101587c3(void) 14 0 +101587d1 Unwind@101587d1 undefined Unwind@101587d1(void) 14 0 +101587df Unwind@101587df undefined Unwind@101587df(void) 14 0 +10158820 Unwind@10158820 undefined Unwind@10158820(void) 14 0 +1015882e Unwind@1015882e undefined Unwind@1015882e(void) 14 0 +1015883c Unwind@1015883c undefined Unwind@1015883c(void) 14 0 +1015884a Unwind@1015884a undefined Unwind@1015884a(void) 14 0 +10158858 Unwind@10158858 undefined Unwind@10158858(void) 14 0 +10158866 Unwind@10158866 undefined Unwind@10158866(void) 14 0 +10158874 Unwind@10158874 undefined Unwind@10158874(void) 14 0 +10158882 Unwind@10158882 undefined Unwind@10158882(void) 14 0 +10158890 Unwind@10158890 undefined Unwind@10158890(void) 14 0 +1015889e Unwind@1015889e undefined Unwind@1015889e(void) 11 1 +101588a9 Unwind@101588a9 undefined Unwind@101588a9(void) 14 0 +101588b7 Unwind@101588b7 undefined Unwind@101588b7(void) 14 0 +101588f0 Unwind@101588f0 undefined Unwind@101588f0(void) 8 1 +10158920 Unwind@10158920 undefined Unwind@10158920(void) 8 1 +10158950 Unwind@10158950 undefined Unwind@10158950(void) 14 0 +1015895e Unwind@1015895e undefined Unwind@1015895e(void) 14 0 +10158990 Unwind@10158990 undefined Unwind@10158990(void) 11 1 +101589d0 Unwind@101589d0 undefined Unwind@101589d0(void) 8 1 +101589d8 Unwind@101589d8 undefined Unwind@101589d8(void) 8 1 +101589e0 Unwind@101589e0 undefined Unwind@101589e0(void) 11 1 +101589eb Unwind@101589eb undefined Unwind@101589eb(void) 11 1 +101589f6 Unwind@101589f6 undefined Unwind@101589f6(void) 11 1 +10158a01 Unwind@10158a01 undefined Unwind@10158a01(void) 11 1 +10158a30 Unwind@10158a30 undefined Unwind@10158a30(void) 11 1 +10158a60 Unwind@10158a60 undefined Unwind@10158a60(void) 14 0 +10158a6e Unwind@10158a6e undefined Unwind@10158a6e(void) 14 0 +10158a7c Unwind@10158a7c undefined Unwind@10158a7c(void) 14 0 +10158ab0 Unwind@10158ab0 undefined Unwind@10158ab0(void) 11 1 +10158abb Unwind@10158abb undefined Unwind@10158abb(void) 11 1 +10158af0 Unwind@10158af0 undefined Unwind@10158af0(void) 14 0 +10158afe Unwind@10158afe undefined Unwind@10158afe(void) 14 0 +10158b0c Unwind@10158b0c undefined Unwind@10158b0c(void) 14 0 +10158b1a Unwind@10158b1a undefined Unwind@10158b1a(void) 14 0 +10158b28 Unwind@10158b28 undefined Unwind@10158b28(void) 14 0 +10158b36 Unwind@10158b36 undefined Unwind@10158b36(void) 14 0 +10158b70 Unwind@10158b70 undefined Unwind@10158b70(void) 11 1 +10158b7b Unwind@10158b7b undefined Unwind@10158b7b(void) 11 1 +10158bb0 Unwind@10158bb0 undefined Unwind@10158bb0(void) 17 1 +10158bc1 Unwind@10158bc1 undefined Unwind@10158bc1(void) 17 1 +10158bf0 Unwind@10158bf0 undefined Unwind@10158bf0(void) 11 1 +10158bfb Unwind@10158bfb undefined Unwind@10158bfb(void) 11 1 +10158c30 Unwind@10158c30 undefined Unwind@10158c30(void) 8 1 +10158c60 Unwind@10158c60 undefined Unwind@10158c60(void) 8 1 +10158c90 Unwind@10158c90 undefined Unwind@10158c90(void) 8 1 +10158cc0 Unwind@10158cc0 undefined Unwind@10158cc0(void) 8 1 +10158cf0 Unwind@10158cf0 undefined Unwind@10158cf0(void) 8 1 +10158d20 Unwind@10158d20 undefined Unwind@10158d20(void) 8 1 +10158d28 Unwind@10158d28 undefined Unwind@10158d28(void) 9 0 +10158d50 Unwind@10158d50 undefined Unwind@10158d50(void) 8 1 +10158d58 Unwind@10158d58 undefined Unwind@10158d58(void) 11 1 +10158d80 Unwind@10158d80 undefined Unwind@10158d80(void) 8 1 +10158d88 Unwind@10158d88 undefined Unwind@10158d88(void) 11 1 +10158db0 Unwind@10158db0 undefined Unwind@10158db0(void) 8 1 +10158de0 Unwind@10158de0 undefined Unwind@10158de0(void) 8 1 +10158de8 Unwind@10158de8 undefined Unwind@10158de8(void) 11 1 +10158e10 Unwind@10158e10 undefined Unwind@10158e10(void) 8 1 +10158e18 Unwind@10158e18 undefined Unwind@10158e18(void) 11 1 +10158e40 Unwind@10158e40 undefined Unwind@10158e40(void) 8 1 +10158e70 Unwind@10158e70 undefined Unwind@10158e70(void) 8 1 +10158ea0 Unwind@10158ea0 undefined Unwind@10158ea0(void) 8 1 +10158ed0 Unwind@10158ed0 undefined Unwind@10158ed0(void) 8 1 +10158f00 Unwind@10158f00 undefined Unwind@10158f00(void) 8 1 +10158f30 Unwind@10158f30 undefined Unwind@10158f30(void) 8 1 +10158f60 Unwind@10158f60 undefined Unwind@10158f60(void) 8 1 +10158f90 Unwind@10158f90 undefined Unwind@10158f90(void) 8 1 +10158fc0 Unwind@10158fc0 undefined Unwind@10158fc0(void) 8 1 +10158fc8 Unwind@10158fc8 undefined Unwind@10158fc8(void) 9 0 +10158ff0 Unwind@10158ff0 undefined Unwind@10158ff0(void) 8 1 +10159020 Unwind@10159020 undefined Unwind@10159020(void) 8 1 +10159050 Unwind@10159050 undefined Unwind@10159050(void) 8 1 +10159080 Unwind@10159080 undefined Unwind@10159080(void) 9 0 +10159089 Unwind@10159089 undefined Unwind@10159089(void) 17 1 +1015909a Unwind@1015909a undefined Unwind@1015909a(void) 8 1 +101590a2 Unwind@101590a2 undefined Unwind@101590a2(void) 8 1 +101590aa Unwind@101590aa undefined Unwind@101590aa(void) 9 0 +101590d0 Unwind@101590d0 undefined Unwind@101590d0(void) 8 1 +101590d8 Unwind@101590d8 undefined Unwind@101590d8(void) 8 1 +10159100 Unwind@10159100 undefined Unwind@10159100(void) 9 0 +10159108 Unwind@10159108 undefined Unwind@10159108(void) 8 0 +10159110 Unwind@10159110 undefined Unwind@10159110(void) 8 0 +10159118 Unwind@10159118 undefined Unwind@10159118(void) 8 0 +10159120 Unwind@10159120 undefined Unwind@10159120(void) 8 0 +10159128 Unwind@10159128 undefined Unwind@10159128(void) 8 0 +10159130 Unwind@10159130 undefined Unwind@10159130(void) 8 0 +10159138 Unwind@10159138 undefined Unwind@10159138(void) 8 0 +10159160 Unwind@10159160 undefined Unwind@10159160(void) 8 1 +10159168 Unwind@10159168 undefined Unwind@10159168(void) 9 0 +10159190 Unwind@10159190 undefined Unwind@10159190(void) 8 1 +10159198 Unwind@10159198 undefined Unwind@10159198(void) 8 1 +101591a0 Unwind@101591a0 undefined Unwind@101591a0(void) 8 1 +101591a8 Unwind@101591a8 undefined Unwind@101591a8(void) 8 1 +101591b0 Unwind@101591b0 undefined Unwind@101591b0(void) 8 1 +101591b8 Unwind@101591b8 undefined Unwind@101591b8(void) 8 1 +101591c0 Unwind@101591c0 undefined Unwind@101591c0(void) 8 1 +101591c8 Unwind@101591c8 undefined Unwind@101591c8(void) 8 1 +101591d0 Unwind@101591d0 undefined Unwind@101591d0(void) 8 1 +10159200 Unwind@10159200 undefined Unwind@10159200(void) 8 1 +10159208 Unwind@10159208 undefined Unwind@10159208(void) 8 1 +10159210 Unwind@10159210 undefined Unwind@10159210(void) 8 1 +10159260 Unwind@10159260 undefined Unwind@10159260(void) 9 0 +10159290 Unwind@10159290 undefined Unwind@10159290(void) 8 1 +10159298 Unwind@10159298 undefined Unwind@10159298(void) 8 1 +101592c0 Unwind@101592c0 undefined Unwind@101592c0(void) 9 0 +101592f0 Unwind@101592f0 undefined Unwind@101592f0(void) 9 0 +10159320 Unwind@10159320 undefined Unwind@10159320(void) 9 0 +10159350 Unwind@10159350 undefined Unwind@10159350(void) 9 0 +10159380 Unwind@10159380 undefined Unwind@10159380(void) 9 0 +101593b0 Unwind@101593b0 undefined Unwind@101593b0(void) 8 1 +101593b8 Unwind@101593b8 undefined Unwind@101593b8(void) 11 1 +101593c3 Unwind@101593c3 undefined Unwind@101593c3(void) 11 1 +101593ce Unwind@101593ce undefined Unwind@101593ce(void) 11 1 +101593d9 Unwind@101593d9 undefined Unwind@101593d9(void) 11 1 +101593e4 Unwind@101593e4 undefined Unwind@101593e4(void) 8 1 +10159410 Unwind@10159410 undefined Unwind@10159410(void) 8 1 +10159418 Unwind@10159418 undefined Unwind@10159418(void) 8 1 +10159440 Unwind@10159440 undefined Unwind@10159440(void) 8 1 +10159448 Unwind@10159448 undefined Unwind@10159448(void) 8 1 +10159450 Unwind@10159450 undefined Unwind@10159450(void) 8 1 +10159480 Unwind@10159480 undefined Unwind@10159480(void) 8 1 +10159488 Unwind@10159488 undefined Unwind@10159488(void) 8 1 +101594b0 Unwind@101594b0 undefined Unwind@101594b0(void) 8 1 +101594b8 Unwind@101594b8 undefined Unwind@101594b8(void) 11 1 +101594e0 Unwind@101594e0 undefined Unwind@101594e0(void) 9 0 +10159510 Unwind@10159510 undefined Unwind@10159510(void) 9 0 +10159540 Unwind@10159540 undefined Unwind@10159540(void) 8 1 +10159548 Unwind@10159548 undefined Unwind@10159548(void) 9 0 +10159570 Unwind@10159570 undefined Unwind@10159570(void) 8 1 +10159578 Unwind@10159578 undefined Unwind@10159578(void) 8 1 +101595a0 Unwind@101595a0 undefined Unwind@101595a0(void) 8 1 +101595a8 Unwind@101595a8 undefined Unwind@101595a8(void) 8 1 +101595b0 Unwind@101595b0 undefined Unwind@101595b0(void) 11 1 +101595bb Unwind@101595bb undefined Unwind@101595bb(void) 11 1 +101595c6 Unwind@101595c6 undefined Unwind@101595c6(void) 11 1 +101595d1 Unwind@101595d1 undefined Unwind@101595d1(void) 11 1 +10159600 Unwind@10159600 undefined Unwind@10159600(void) 8 1 +10159608 Unwind@10159608 undefined Unwind@10159608(void) 8 1 +10159610 Unwind@10159610 undefined Unwind@10159610(void) 8 1 +10159618 Unwind@10159618 undefined Unwind@10159618(void) 8 1 +10159620 Unwind@10159620 undefined Unwind@10159620(void) 8 1 +10159628 Unwind@10159628 undefined Unwind@10159628(void) 8 1 +10159630 Unwind@10159630 undefined Unwind@10159630(void) 8 1 +10159638 Unwind@10159638 undefined Unwind@10159638(void) 8 1 +10159640 Unwind@10159640 undefined Unwind@10159640(void) 8 1 +10159648 Unwind@10159648 undefined Unwind@10159648(void) 8 1 +10159650 Unwind@10159650 undefined Unwind@10159650(void) 8 1 +10159658 Unwind@10159658 undefined Unwind@10159658(void) 8 1 +10159680 Unwind@10159680 undefined Unwind@10159680(void) 8 1 +10159688 Unwind@10159688 undefined Unwind@10159688(void) 8 1 +10159690 Unwind@10159690 undefined Unwind@10159690(void) 8 1 +10159698 Unwind@10159698 undefined Unwind@10159698(void) 8 1 +101596a0 Unwind@101596a0 undefined Unwind@101596a0(void) 8 1 +101596a8 Unwind@101596a8 undefined Unwind@101596a8(void) 8 1 +101596b0 Unwind@101596b0 undefined Unwind@101596b0(void) 8 1 +101596b8 Unwind@101596b8 undefined Unwind@101596b8(void) 8 1 +101596c0 Unwind@101596c0 undefined Unwind@101596c0(void) 8 1 +101596c8 Unwind@101596c8 undefined Unwind@101596c8(void) 8 1 +101596f0 Unwind@101596f0 undefined Unwind@101596f0(void) 8 1 +101596f8 Unwind@101596f8 undefined Unwind@101596f8(void) 8 1 +10159700 Unwind@10159700 undefined Unwind@10159700(void) 8 1 +10159730 Unwind@10159730 undefined Unwind@10159730(void) 25 1 +10159770 Unwind@10159770 undefined Unwind@10159770(void) 8 1 +10159778 Unwind@10159778 undefined Unwind@10159778(void) 8 1 +10159780 Unwind@10159780 undefined Unwind@10159780(void) 9 0 +101597b0 Unwind@101597b0 undefined Unwind@101597b0(void) 8 1 +101597e0 Unwind@101597e0 undefined Unwind@101597e0(void) 11 1 +101597eb Unwind@101597eb undefined Unwind@101597eb(void) 8 1 +10159810 Unwind@10159810 undefined Unwind@10159810(void) 8 1 +10159818 Unwind@10159818 undefined Unwind@10159818(void) 8 1 +10159820 Unwind@10159820 undefined Unwind@10159820(void) 11 1 +1015982b Unwind@1015982b undefined Unwind@1015982b(void) 8 1 +10159833 Unwind@10159833 undefined Unwind@10159833(void) 11 1 +1015983e Unwind@1015983e undefined Unwind@1015983e(void) 9 0 +10159847 Unwind@10159847 undefined Unwind@10159847(void) 9 0 +10159870 Unwind@10159870 undefined Unwind@10159870(void) 8 1 +10159878 Unwind@10159878 undefined Unwind@10159878(void) 11 1 +10159883 Unwind@10159883 undefined Unwind@10159883(void) 11 1 +1015988e Unwind@1015988e undefined Unwind@1015988e(void) 8 1 +10159896 Unwind@10159896 undefined Unwind@10159896(void) 8 1 +101598c0 Unwind@101598c0 undefined Unwind@101598c0(void) 8 1 +101598c8 Unwind@101598c8 undefined Unwind@101598c8(void) 8 1 +101598f0 Unwind@101598f0 undefined Unwind@101598f0(void) 8 1 +101598f8 Unwind@101598f8 undefined Unwind@101598f8(void) 8 1 +10159900 Unwind@10159900 undefined Unwind@10159900(void) 8 1 +10159908 Unwind@10159908 undefined Unwind@10159908(void) 11 1 +10159913 Unwind@10159913 undefined Unwind@10159913(void) 8 1 +1015991b Unwind@1015991b undefined Unwind@1015991b(void) 11 1 +10159926 Unwind@10159926 undefined Unwind@10159926(void) 9 0 +10159950 Unwind@10159950 undefined Unwind@10159950(void) 9 0 +10159959 Unwind@10159959 undefined Unwind@10159959(void) 17 1 +1015996a Unwind@1015996a undefined Unwind@1015996a(void) 8 1 +10159972 Unwind@10159972 undefined Unwind@10159972(void) 8 1 +1015997a Unwind@1015997a undefined Unwind@1015997a(void) 9 0 +101599a0 Unwind@101599a0 undefined Unwind@101599a0(void) 8 1 +101599a8 Unwind@101599a8 undefined Unwind@101599a8(void) 8 1 +101599b0 Unwind@101599b0 undefined Unwind@101599b0(void) 9 0 +101599e0 Unwind@101599e0 undefined Unwind@101599e0(void) 8 1 +101599e8 Unwind@101599e8 undefined Unwind@101599e8(void) 8 1 +10159a10 Unwind@10159a10 undefined Unwind@10159a10(void) 8 1 +10159a18 Unwind@10159a18 undefined Unwind@10159a18(void) 8 1 +10159a40 Unwind@10159a40 undefined Unwind@10159a40(void) 8 1 +10159a48 Unwind@10159a48 undefined Unwind@10159a48(void) 8 1 +10159a70 Unwind@10159a70 undefined Unwind@10159a70(void) 11 1 +10159ab0 Unwind@10159ab0 undefined Unwind@10159ab0(void) 14 0 +10159abe Unwind@10159abe undefined Unwind@10159abe(void) 14 0 +10159acc Unwind@10159acc undefined Unwind@10159acc(void) 14 0 +10159ada Unwind@10159ada undefined Unwind@10159ada(void) 14 0 +10159ae8 Unwind@10159ae8 undefined Unwind@10159ae8(void) 14 0 +10159af6 Unwind@10159af6 undefined Unwind@10159af6(void) 14 0 +10159b04 Unwind@10159b04 undefined Unwind@10159b04(void) 14 0 +10159b40 Unwind@10159b40 undefined Unwind@10159b40(void) 11 1 +10159b4b Unwind@10159b4b undefined Unwind@10159b4b(void) 14 0 +10159b59 Unwind@10159b59 undefined Unwind@10159b59(void) 14 0 +10159b67 Unwind@10159b67 undefined Unwind@10159b67(void) 14 0 +10159b75 Unwind@10159b75 undefined Unwind@10159b75(void) 14 0 +10159b83 Unwind@10159b83 undefined Unwind@10159b83(void) 14 0 +10159b91 Unwind@10159b91 undefined Unwind@10159b91(void) 14 0 +10159b9f Unwind@10159b9f undefined Unwind@10159b9f(void) 14 0 +10159bad Unwind@10159bad undefined Unwind@10159bad(void) 14 0 +10159bbb Unwind@10159bbb undefined Unwind@10159bbb(void) 14 0 +10159bc9 Unwind@10159bc9 undefined Unwind@10159bc9(void) 14 0 +10159bd7 Unwind@10159bd7 undefined Unwind@10159bd7(void) 14 0 +10159be5 Unwind@10159be5 undefined Unwind@10159be5(void) 14 0 +10159bf3 Unwind@10159bf3 undefined Unwind@10159bf3(void) 14 0 +10159c01 Unwind@10159c01 undefined Unwind@10159c01(void) 14 0 +10159c0f Unwind@10159c0f undefined Unwind@10159c0f(void) 11 1 +10159c1a Unwind@10159c1a undefined Unwind@10159c1a(void) 14 0 +10159c28 Unwind@10159c28 undefined Unwind@10159c28(void) 14 0 +10159c36 Unwind@10159c36 undefined Unwind@10159c36(void) 14 0 +10159c44 Unwind@10159c44 undefined Unwind@10159c44(void) 14 0 +10159c52 Unwind@10159c52 undefined Unwind@10159c52(void) 11 1 +10159c5d Unwind@10159c5d undefined Unwind@10159c5d(void) 11 1 +10159c68 Unwind@10159c68 undefined Unwind@10159c68(void) 11 1 +10159c73 Unwind@10159c73 undefined Unwind@10159c73(void) 11 1 +10159c7e Unwind@10159c7e undefined Unwind@10159c7e(void) 11 1 +10159c89 Unwind@10159c89 undefined Unwind@10159c89(void) 14 0 +10159c97 Unwind@10159c97 undefined Unwind@10159c97(void) 14 0 +10159ca5 Unwind@10159ca5 undefined Unwind@10159ca5(void) 14 0 +10159cb3 Unwind@10159cb3 undefined Unwind@10159cb3(void) 14 0 +10159cc1 Unwind@10159cc1 undefined Unwind@10159cc1(void) 14 0 +10159ccf Unwind@10159ccf undefined Unwind@10159ccf(void) 11 1 +10159cda Unwind@10159cda undefined Unwind@10159cda(void) 14 0 +10159ce8 Unwind@10159ce8 undefined Unwind@10159ce8(void) 14 0 +10159cf6 Unwind@10159cf6 undefined Unwind@10159cf6(void) 14 0 +10159d04 Unwind@10159d04 undefined Unwind@10159d04(void) 14 0 +10159d40 Unwind@10159d40 undefined Unwind@10159d40(void) 14 0 +10159d4e Unwind@10159d4e undefined Unwind@10159d4e(void) 14 0 +10159d5c Unwind@10159d5c undefined Unwind@10159d5c(void) 14 0 +10159d6a Unwind@10159d6a undefined Unwind@10159d6a(void) 14 0 +10159d78 Unwind@10159d78 undefined Unwind@10159d78(void) 14 0 +10159d86 Unwind@10159d86 undefined Unwind@10159d86(void) 14 0 +10159dc0 Unwind@10159dc0 undefined Unwind@10159dc0(void) 14 0 +10159dce Unwind@10159dce undefined Unwind@10159dce(void) 14 0 +10159ddc Unwind@10159ddc undefined Unwind@10159ddc(void) 14 0 +10159dea Unwind@10159dea undefined Unwind@10159dea(void) 14 0 +10159df8 Unwind@10159df8 undefined Unwind@10159df8(void) 14 0 +10159e06 Unwind@10159e06 undefined Unwind@10159e06(void) 14 0 +10159e14 Unwind@10159e14 undefined Unwind@10159e14(void) 14 0 +10159e22 Unwind@10159e22 undefined Unwind@10159e22(void) 14 0 +10159e30 Unwind@10159e30 undefined Unwind@10159e30(void) 14 0 +10159e3e Unwind@10159e3e undefined Unwind@10159e3e(void) 14 0 +10159e4c Unwind@10159e4c undefined Unwind@10159e4c(void) 14 0 +10159e5a Unwind@10159e5a undefined Unwind@10159e5a(void) 14 0 +10159e68 Unwind@10159e68 undefined Unwind@10159e68(void) 14 0 +10159e76 Unwind@10159e76 undefined Unwind@10159e76(void) 14 0 +10159e84 Unwind@10159e84 undefined Unwind@10159e84(void) 14 0 +10159e92 Unwind@10159e92 undefined Unwind@10159e92(void) 14 0 +10159ea0 Unwind@10159ea0 undefined Unwind@10159ea0(void) 14 0 +10159eae Unwind@10159eae undefined Unwind@10159eae(void) 14 0 +10159ebc Unwind@10159ebc undefined Unwind@10159ebc(void) 14 0 +10159eca Unwind@10159eca undefined Unwind@10159eca(void) 14 0 +10159ed8 Unwind@10159ed8 undefined Unwind@10159ed8(void) 14 0 +10159ee6 Unwind@10159ee6 undefined Unwind@10159ee6(void) 14 0 +10159ef4 Unwind@10159ef4 undefined Unwind@10159ef4(void) 14 0 +10159f30 Unwind@10159f30 undefined Unwind@10159f30(void) 14 0 +10159f3e Unwind@10159f3e undefined Unwind@10159f3e(void) 14 0 +10159f4c Unwind@10159f4c undefined Unwind@10159f4c(void) 14 0 +10159f5a Unwind@10159f5a undefined Unwind@10159f5a(void) 14 0 +10159f68 Unwind@10159f68 undefined Unwind@10159f68(void) 14 0 +10159f76 Unwind@10159f76 undefined Unwind@10159f76(void) 14 0 +10159f84 Unwind@10159f84 undefined Unwind@10159f84(void) 14 0 +10159f92 Unwind@10159f92 undefined Unwind@10159f92(void) 14 0 +10159fa0 Unwind@10159fa0 undefined Unwind@10159fa0(void) 14 0 +10159fae Unwind@10159fae undefined Unwind@10159fae(void) 14 0 +10159fbc Unwind@10159fbc undefined Unwind@10159fbc(void) 14 0 +10159fca Unwind@10159fca undefined Unwind@10159fca(void) 14 0 +10159fd8 Unwind@10159fd8 undefined Unwind@10159fd8(void) 14 0 +10159fe6 Unwind@10159fe6 undefined Unwind@10159fe6(void) 14 0 +10159ff4 Unwind@10159ff4 undefined Unwind@10159ff4(void) 14 0 +1015a002 Unwind@1015a002 undefined Unwind@1015a002(void) 14 0 +1015a040 Unwind@1015a040 undefined Unwind@1015a040(void) 11 1 +1015a04b Unwind@1015a04b undefined Unwind@1015a04b(void) 14 0 +1015a059 Unwind@1015a059 undefined Unwind@1015a059(void) 14 0 +1015a067 Unwind@1015a067 undefined Unwind@1015a067(void) 14 0 +1015a075 Unwind@1015a075 undefined Unwind@1015a075(void) 14 0 +1015a083 Unwind@1015a083 undefined Unwind@1015a083(void) 14 0 +1015a091 Unwind@1015a091 undefined Unwind@1015a091(void) 14 0 +1015a09f Unwind@1015a09f undefined Unwind@1015a09f(void) 14 0 +1015a0ad Unwind@1015a0ad undefined Unwind@1015a0ad(void) 14 0 +1015a0bb Unwind@1015a0bb undefined Unwind@1015a0bb(void) 14 0 +1015a0c9 Unwind@1015a0c9 undefined Unwind@1015a0c9(void) 14 0 +1015a0d7 Unwind@1015a0d7 undefined Unwind@1015a0d7(void) 14 0 +1015a0e5 Unwind@1015a0e5 undefined Unwind@1015a0e5(void) 14 0 +1015a0f3 Unwind@1015a0f3 undefined Unwind@1015a0f3(void) 14 0 +1015a101 Unwind@1015a101 undefined Unwind@1015a101(void) 11 1 +1015a10c Unwind@1015a10c undefined Unwind@1015a10c(void) 11 1 +1015a117 Unwind@1015a117 undefined Unwind@1015a117(void) 11 1 +1015a122 Unwind@1015a122 undefined Unwind@1015a122(void) 11 1 +1015a12d Unwind@1015a12d undefined Unwind@1015a12d(void) 11 1 +1015a138 Unwind@1015a138 undefined Unwind@1015a138(void) 14 0 +1015a146 Unwind@1015a146 undefined Unwind@1015a146(void) 14 0 +1015a154 Unwind@1015a154 undefined Unwind@1015a154(void) 14 0 +1015a162 Unwind@1015a162 undefined Unwind@1015a162(void) 14 0 +1015a170 Unwind@1015a170 undefined Unwind@1015a170(void) 11 1 +1015a17b Unwind@1015a17b undefined Unwind@1015a17b(void) 14 0 +1015a1c0 Unwind@1015a1c0 undefined Unwind@1015a1c0(void) 11 1 +1015a200 Unwind@1015a200 undefined Unwind@1015a200(void) 11 1 +1015a230 Unwind@1015a230 undefined Unwind@1015a230(void) 11 1 +1015a260 Unwind@1015a260 undefined Unwind@1015a260(void) 11 1 +1015a290 Unwind@1015a290 undefined Unwind@1015a290(void) 11 1 +1015a2c0 Unwind@1015a2c0 undefined Unwind@1015a2c0(void) 34 1 +1015a310 Unwind@1015a310 undefined Unwind@1015a310(void) 8 1 +1015a318 Unwind@1015a318 undefined Unwind@1015a318(void) 11 1 +1015a323 Unwind@1015a323 undefined Unwind@1015a323(void) 11 1 +1015a32e Unwind@1015a32e undefined Unwind@1015a32e(void) 8 1 +1015a336 Unwind@1015a336 undefined Unwind@1015a336(void) 8 1 +1015a33e Unwind@1015a33e undefined Unwind@1015a33e(void) 8 1 +1015a370 Unwind@1015a370 undefined Unwind@1015a370(void) 11 1 +1015a3a0 Unwind@1015a3a0 undefined Unwind@1015a3a0(void) 8 1 +1015a3d0 Unwind@1015a3d0 undefined Unwind@1015a3d0(void) 8 1 +1015a3d8 Unwind@1015a3d8 undefined Unwind@1015a3d8(void) 8 1 +1015a3e0 Unwind@1015a3e0 undefined Unwind@1015a3e0(void) 8 1 +1015a3e8 Unwind@1015a3e8 undefined Unwind@1015a3e8(void) 8 1 +1015a3f0 Unwind@1015a3f0 undefined Unwind@1015a3f0(void) 9 0 +1015a420 Unwind@1015a420 undefined Unwind@1015a420(void) 8 1 +1015a428 Unwind@1015a428 undefined Unwind@1015a428(void) 8 1 +1015a430 Unwind@1015a430 undefined Unwind@1015a430(void) 8 1 +1015a438 Unwind@1015a438 undefined Unwind@1015a438(void) 8 1 +1015a440 Unwind@1015a440 undefined Unwind@1015a440(void) 8 1 +1015a448 Unwind@1015a448 undefined Unwind@1015a448(void) 8 1 +1015a450 Unwind@1015a450 undefined Unwind@1015a450(void) 8 1 +1015a458 Unwind@1015a458 undefined Unwind@1015a458(void) 8 1 +1015a460 Unwind@1015a460 undefined Unwind@1015a460(void) 8 1 +1015a468 Unwind@1015a468 undefined Unwind@1015a468(void) 8 1 +1015a470 Unwind@1015a470 undefined Unwind@1015a470(void) 8 1 +1015a478 Unwind@1015a478 undefined Unwind@1015a478(void) 11 1 +1015a4a0 Unwind@1015a4a0 undefined Unwind@1015a4a0(void) 8 1 +1015a4a8 Unwind@1015a4a8 undefined Unwind@1015a4a8(void) 8 1 +1015a4b0 Unwind@1015a4b0 undefined Unwind@1015a4b0(void) 9 0 +1015a4e0 Unwind@1015a4e0 undefined Unwind@1015a4e0(void) 8 1 +1015a510 Unwind@1015a510 undefined Unwind@1015a510(void) 8 1 +1015a518 Unwind@1015a518 undefined Unwind@1015a518(void) 8 1 +1015a520 Unwind@1015a520 undefined Unwind@1015a520(void) 9 0 +1015a550 Unwind@1015a550 undefined Unwind@1015a550(void) 9 0 +1015a559 Unwind@1015a559 undefined Unwind@1015a559(void) 17 1 +1015a56a Unwind@1015a56a undefined Unwind@1015a56a(void) 8 1 +1015a572 Unwind@1015a572 undefined Unwind@1015a572(void) 8 1 +1015a57a Unwind@1015a57a undefined Unwind@1015a57a(void) 11 1 +1015a585 Unwind@1015a585 undefined Unwind@1015a585(void) 9 0 +1015a5b0 Unwind@1015a5b0 undefined Unwind@1015a5b0(void) 8 1 +1015a5e0 Unwind@1015a5e0 undefined Unwind@1015a5e0(void) 8 0 +1015a5e8 Unwind@1015a5e8 undefined Unwind@1015a5e8(void) 8 0 +1015a610 Unwind@1015a610 undefined Unwind@1015a610(void) 8 1 +1015a640 Unwind@1015a640 undefined Unwind@1015a640(void) 8 1 +1015a648 Unwind@1015a648 undefined Unwind@1015a648(void) 8 1 +1015a650 Unwind@1015a650 undefined Unwind@1015a650(void) 9 0 +1015a680 Unwind@1015a680 undefined Unwind@1015a680(void) 8 1 +1015a6b0 Unwind@1015a6b0 undefined Unwind@1015a6b0(void) 8 1 +1015a6b8 Unwind@1015a6b8 undefined Unwind@1015a6b8(void) 8 1 +1015a6c0 Unwind@1015a6c0 undefined Unwind@1015a6c0(void) 9 0 +1015a6f0 Unwind@1015a6f0 undefined Unwind@1015a6f0(void) 25 1 +1015a730 Unwind@1015a730 undefined Unwind@1015a730(void) 8 1 +1015a738 Unwind@1015a738 undefined Unwind@1015a738(void) 25 1 +1015a751 Unwind@1015a751 undefined Unwind@1015a751(void) 8 1 +1015a759 Unwind@1015a759 undefined Unwind@1015a759(void) 8 1 +1015a7b0 Unwind@1015a7b0 undefined Unwind@1015a7b0(void) 25 1 +1015a7f0 Unwind@1015a7f0 undefined Unwind@1015a7f0(void) 25 1 +1015a850 Unwind@1015a850 undefined Unwind@1015a850(void) 8 1 +1015a858 Unwind@1015a858 undefined Unwind@1015a858(void) 8 1 +1015a860 Unwind@1015a860 undefined Unwind@1015a860(void) 8 1 +1015a890 Unwind@1015a890 undefined Unwind@1015a890(void) 8 1 +1015a898 Unwind@1015a898 undefined Unwind@1015a898(void) 11 1 +1015a8a3 Unwind@1015a8a3 undefined Unwind@1015a8a3(void) 8 1 +1015a8ab Unwind@1015a8ab undefined Unwind@1015a8ab(void) 8 1 +1015a8d0 Unwind@1015a8d0 undefined Unwind@1015a8d0(void) 8 1 +1015a8d8 Unwind@1015a8d8 undefined Unwind@1015a8d8(void) 11 1 +1015a8e3 Unwind@1015a8e3 undefined Unwind@1015a8e3(void) 11 1 +1015a8ee Unwind@1015a8ee undefined Unwind@1015a8ee(void) 11 1 +1015a8f9 Unwind@1015a8f9 undefined Unwind@1015a8f9(void) 11 1 +1015a904 Unwind@1015a904 undefined Unwind@1015a904(void) 8 1 +1015a930 Unwind@1015a930 undefined Unwind@1015a930(void) 8 1 +1015a938 Unwind@1015a938 undefined Unwind@1015a938(void) 8 1 +1015a960 Unwind@1015a960 undefined Unwind@1015a960(void) 8 1 +1015a968 Unwind@1015a968 undefined Unwind@1015a968(void) 8 1 +1015a970 Unwind@1015a970 undefined Unwind@1015a970(void) 8 1 +1015a9a0 Unwind@1015a9a0 undefined Unwind@1015a9a0(void) 8 1 +1015a9a8 Unwind@1015a9a8 undefined Unwind@1015a9a8(void) 8 1 +1015a9d0 Unwind@1015a9d0 undefined Unwind@1015a9d0(void) 8 1 +1015a9d8 Unwind@1015a9d8 undefined Unwind@1015a9d8(void) 11 1 +1015aa00 Unwind@1015aa00 undefined Unwind@1015aa00(void) 11 1 +1015aa50 Unwind@1015aa50 undefined Unwind@1015aa50(void) 8 1 +1015aa58 Unwind@1015aa58 undefined Unwind@1015aa58(void) 11 1 +1015aa80 Unwind@1015aa80 undefined Unwind@1015aa80(void) 8 1 +1015aa88 Unwind@1015aa88 undefined Unwind@1015aa88(void) 9 0 +1015aab0 Unwind@1015aab0 undefined Unwind@1015aab0(void) 8 1 +1015aab8 Unwind@1015aab8 undefined Unwind@1015aab8(void) 8 1 +1015aac0 Unwind@1015aac0 undefined Unwind@1015aac0(void) 8 1 +1015aaf0 Unwind@1015aaf0 undefined Unwind@1015aaf0(void) 8 1 +1015aaf8 Unwind@1015aaf8 undefined Unwind@1015aaf8(void) 11 1 +1015ab20 Unwind@1015ab20 undefined Unwind@1015ab20(void) 31 1 +1015ab3f Unwind@1015ab3f undefined Unwind@1015ab3f(void) 8 1 +1015ab47 Unwind@1015ab47 undefined Unwind@1015ab47(void) 8 1 +1015ab80 Unwind@1015ab80 undefined Unwind@1015ab80(void) 8 1 +1015ab88 Unwind@1015ab88 undefined Unwind@1015ab88(void) 8 1 +1015abb0 Unwind@1015abb0 undefined Unwind@1015abb0(void) 11 1 +1015abbb Unwind@1015abbb undefined Unwind@1015abbb(void) 8 1 +1015abc3 Unwind@1015abc3 undefined Unwind@1015abc3(void) 8 1 +1015abcb Unwind@1015abcb undefined Unwind@1015abcb(void) 9 0 +1015abf0 Unwind@1015abf0 undefined Unwind@1015abf0(void) 8 1 +1015abf8 Unwind@1015abf8 undefined Unwind@1015abf8(void) 11 1 +1015ac20 Unwind@1015ac20 undefined Unwind@1015ac20(void) 8 1 +1015ac28 Unwind@1015ac28 undefined Unwind@1015ac28(void) 11 1 +1015ac33 Unwind@1015ac33 undefined Unwind@1015ac33(void) 11 1 +1015ac3e Unwind@1015ac3e undefined Unwind@1015ac3e(void) 8 1 +1015ac46 Unwind@1015ac46 undefined Unwind@1015ac46(void) 8 1 +1015ac4e Unwind@1015ac4e undefined Unwind@1015ac4e(void) 9 0 +1015ac80 Unwind@1015ac80 undefined Unwind@1015ac80(void) 8 1 +1015ac88 Unwind@1015ac88 undefined Unwind@1015ac88(void) 8 1 +1015ac90 Unwind@1015ac90 undefined Unwind@1015ac90(void) 8 1 +1015ac98 Unwind@1015ac98 undefined Unwind@1015ac98(void) 9 0 +1015acc0 Unwind@1015acc0 undefined Unwind@1015acc0(void) 8 1 +1015acc8 Unwind@1015acc8 undefined Unwind@1015acc8(void) 8 1 +1015acd0 Unwind@1015acd0 undefined Unwind@1015acd0(void) 8 1 +1015ad00 Unwind@1015ad00 undefined Unwind@1015ad00(void) 8 1 +1015ad08 Unwind@1015ad08 undefined Unwind@1015ad08(void) 8 1 +1015ad30 Unwind@1015ad30 undefined Unwind@1015ad30(void) 8 1 +1015ad38 Unwind@1015ad38 undefined Unwind@1015ad38(void) 8 1 +1015ad60 Unwind@1015ad60 undefined Unwind@1015ad60(void) 8 1 +1015ad68 Unwind@1015ad68 undefined Unwind@1015ad68(void) 8 1 +1015ad90 Unwind@1015ad90 undefined Unwind@1015ad90(void) 14 0 +1015ad9e Unwind@1015ad9e undefined Unwind@1015ad9e(void) 8 1 +1015ada6 Unwind@1015ada6 undefined Unwind@1015ada6(void) 14 0 +1015adb4 Unwind@1015adb4 undefined Unwind@1015adb4(void) 14 0 +1015adc2 Unwind@1015adc2 undefined Unwind@1015adc2(void) 14 0 +1015add0 Unwind@1015add0 undefined Unwind@1015add0(void) 14 0 +1015adde Unwind@1015adde undefined Unwind@1015adde(void) 14 0 +1015adec Unwind@1015adec undefined Unwind@1015adec(void) 14 0 +1015adfa Unwind@1015adfa undefined Unwind@1015adfa(void) 14 0 +1015ae08 Unwind@1015ae08 undefined Unwind@1015ae08(void) 14 0 +1015ae16 Unwind@1015ae16 undefined Unwind@1015ae16(void) 14 0 +1015ae24 Unwind@1015ae24 undefined Unwind@1015ae24(void) 14 0 +1015ae32 Unwind@1015ae32 undefined Unwind@1015ae32(void) 14 0 +1015ae40 Unwind@1015ae40 undefined Unwind@1015ae40(void) 14 0 +1015ae4e Unwind@1015ae4e undefined Unwind@1015ae4e(void) 14 0 +1015ae5c Unwind@1015ae5c undefined Unwind@1015ae5c(void) 14 0 +1015ae6a Unwind@1015ae6a undefined Unwind@1015ae6a(void) 14 0 +1015ae78 Unwind@1015ae78 undefined Unwind@1015ae78(void) 14 0 +1015ae86 Unwind@1015ae86 undefined Unwind@1015ae86(void) 14 0 +1015ae94 Unwind@1015ae94 undefined Unwind@1015ae94(void) 14 0 +1015aea2 Unwind@1015aea2 undefined Unwind@1015aea2(void) 14 0 +1015aeb0 Unwind@1015aeb0 undefined Unwind@1015aeb0(void) 14 0 +1015aebe Unwind@1015aebe undefined Unwind@1015aebe(void) 14 0 +1015aecc Unwind@1015aecc undefined Unwind@1015aecc(void) 14 0 +1015aeda Unwind@1015aeda undefined Unwind@1015aeda(void) 14 0 +1015aee8 Unwind@1015aee8 undefined Unwind@1015aee8(void) 14 0 +1015aef6 Unwind@1015aef6 undefined Unwind@1015aef6(void) 14 0 +1015af04 Unwind@1015af04 undefined Unwind@1015af04(void) 14 0 +1015af12 Unwind@1015af12 undefined Unwind@1015af12(void) 14 0 +1015af20 Unwind@1015af20 undefined Unwind@1015af20(void) 14 0 +1015af60 Unwind@1015af60 undefined Unwind@1015af60(void) 14 0 +1015af6e Unwind@1015af6e undefined Unwind@1015af6e(void) 14 0 +1015af7c Unwind@1015af7c undefined Unwind@1015af7c(void) 14 0 +1015af8a Unwind@1015af8a undefined Unwind@1015af8a(void) 14 0 +1015af98 Unwind@1015af98 undefined Unwind@1015af98(void) 14 0 +1015afa6 Unwind@1015afa6 undefined Unwind@1015afa6(void) 14 0 +1015afb4 Unwind@1015afb4 undefined Unwind@1015afb4(void) 14 0 +1015afc2 Unwind@1015afc2 undefined Unwind@1015afc2(void) 14 0 +1015afd0 Unwind@1015afd0 undefined Unwind@1015afd0(void) 14 0 +1015afde Unwind@1015afde undefined Unwind@1015afde(void) 14 0 +1015afec Unwind@1015afec undefined Unwind@1015afec(void) 14 0 +1015affa Unwind@1015affa undefined Unwind@1015affa(void) 14 0 +1015b008 Unwind@1015b008 undefined Unwind@1015b008(void) 14 0 +1015b016 Unwind@1015b016 undefined Unwind@1015b016(void) 8 1 +1015b01e Unwind@1015b01e undefined Unwind@1015b01e(void) 14 0 +1015b02c Unwind@1015b02c undefined Unwind@1015b02c(void) 14 0 +1015b03a Unwind@1015b03a undefined Unwind@1015b03a(void) 14 0 +1015b048 Unwind@1015b048 undefined Unwind@1015b048(void) 14 0 +1015b056 Unwind@1015b056 undefined Unwind@1015b056(void) 8 1 +1015b05e Unwind@1015b05e undefined Unwind@1015b05e(void) 14 0 +1015b06c Unwind@1015b06c undefined Unwind@1015b06c(void) 14 0 +1015b07a Unwind@1015b07a undefined Unwind@1015b07a(void) 14 0 +1015b088 Unwind@1015b088 undefined Unwind@1015b088(void) 14 0 +1015b096 Unwind@1015b096 undefined Unwind@1015b096(void) 14 0 +1015b0a4 Unwind@1015b0a4 undefined Unwind@1015b0a4(void) 14 0 +1015b0b2 Unwind@1015b0b2 undefined Unwind@1015b0b2(void) 14 0 +1015b0c0 Unwind@1015b0c0 undefined Unwind@1015b0c0(void) 14 0 +1015b0ce Unwind@1015b0ce undefined Unwind@1015b0ce(void) 14 0 +1015b0dc Unwind@1015b0dc undefined Unwind@1015b0dc(void) 14 0 +1015b0ea Unwind@1015b0ea undefined Unwind@1015b0ea(void) 14 0 +1015b0f8 Unwind@1015b0f8 undefined Unwind@1015b0f8(void) 14 0 +1015b106 Unwind@1015b106 undefined Unwind@1015b106(void) 14 0 +1015b114 Unwind@1015b114 undefined Unwind@1015b114(void) 8 1 +1015b11c Unwind@1015b11c undefined Unwind@1015b11c(void) 14 0 +1015b12a Unwind@1015b12a undefined Unwind@1015b12a(void) 14 0 +1015b138 Unwind@1015b138 undefined Unwind@1015b138(void) 14 0 +1015b146 Unwind@1015b146 undefined Unwind@1015b146(void) 8 1 +1015b14e Unwind@1015b14e undefined Unwind@1015b14e(void) 14 0 +1015b15c Unwind@1015b15c undefined Unwind@1015b15c(void) 14 0 +1015b16a Unwind@1015b16a undefined Unwind@1015b16a(void) 8 1 +1015b172 Unwind@1015b172 undefined Unwind@1015b172(void) 14 0 +1015b180 Unwind@1015b180 undefined Unwind@1015b180(void) 14 0 +1015b18e Unwind@1015b18e undefined Unwind@1015b18e(void) 14 0 +1015b19c Unwind@1015b19c undefined Unwind@1015b19c(void) 8 1 +1015b1a4 Unwind@1015b1a4 undefined Unwind@1015b1a4(void) 14 0 +1015b1b2 Unwind@1015b1b2 undefined Unwind@1015b1b2(void) 14 0 +1015b1c0 Unwind@1015b1c0 undefined Unwind@1015b1c0(void) 14 0 +1015b1ce Unwind@1015b1ce undefined Unwind@1015b1ce(void) 14 0 +1015b1dc Unwind@1015b1dc undefined Unwind@1015b1dc(void) 14 0 +1015b210 Unwind@1015b210 undefined Unwind@1015b210(void) 8 1 +1015b218 Unwind@1015b218 undefined Unwind@1015b218(void) 11 1 +1015b240 Unwind@1015b240 undefined Unwind@1015b240(void) 8 1 +1015b270 Unwind@1015b270 undefined Unwind@1015b270(void) 8 1 +1015b2a0 Unwind@1015b2a0 undefined Unwind@1015b2a0(void) 8 1 +1015b2d0 Unwind@1015b2d0 undefined Unwind@1015b2d0(void) 8 1 +1015b300 Unwind@1015b300 undefined Unwind@1015b300(void) 8 1 +1015b330 Unwind@1015b330 undefined Unwind@1015b330(void) 8 1 +1015b360 Unwind@1015b360 undefined Unwind@1015b360(void) 8 1 +1015b368 Unwind@1015b368 undefined Unwind@1015b368(void) 8 1 +1015b370 Unwind@1015b370 undefined Unwind@1015b370(void) 9 0 +1015b3a0 Unwind@1015b3a0 undefined Unwind@1015b3a0(void) 8 1 +1015b3d0 Unwind@1015b3d0 undefined Unwind@1015b3d0(void) 8 1 +1015b400 Unwind@1015b400 undefined Unwind@1015b400(void) 8 1 +1015b430 Unwind@1015b430 undefined Unwind@1015b430(void) 8 1 +1015b460 Unwind@1015b460 undefined Unwind@1015b460(void) 8 1 +1015b490 Unwind@1015b490 undefined Unwind@1015b490(void) 8 1 +1015b4c0 Unwind@1015b4c0 undefined Unwind@1015b4c0(void) 8 1 +1015b4f0 Unwind@1015b4f0 undefined Unwind@1015b4f0(void) 8 1 +1015b520 Unwind@1015b520 undefined Unwind@1015b520(void) 8 1 +1015b528 Unwind@1015b528 undefined Unwind@1015b528(void) 8 1 +1015b550 Unwind@1015b550 undefined Unwind@1015b550(void) 8 1 +1015b580 Unwind@1015b580 undefined Unwind@1015b580(void) 8 1 +1015b5b0 Unwind@1015b5b0 undefined Unwind@1015b5b0(void) 8 1 +1015b5e0 Unwind@1015b5e0 undefined Unwind@1015b5e0(void) 8 1 +1015b610 Unwind@1015b610 undefined Unwind@1015b610(void) 8 1 +1015b640 Unwind@1015b640 undefined Unwind@1015b640(void) 8 1 +1015b670 Unwind@1015b670 undefined Unwind@1015b670(void) 8 1 +1015b6a0 Unwind@1015b6a0 undefined Unwind@1015b6a0(void) 8 1 +1015b6d0 Unwind@1015b6d0 undefined Unwind@1015b6d0(void) 8 1 +1015b6d8 Unwind@1015b6d8 undefined Unwind@1015b6d8(void) 8 1 +1015b6e0 Unwind@1015b6e0 undefined Unwind@1015b6e0(void) 9 0 +1015b710 Unwind@1015b710 undefined Unwind@1015b710(void) 8 1 +1015b718 Unwind@1015b718 undefined Unwind@1015b718(void) 8 1 +1015b720 Unwind@1015b720 undefined Unwind@1015b720(void) 9 0 +1015b750 Unwind@1015b750 undefined Unwind@1015b750(void) 8 1 +1015b780 Unwind@1015b780 undefined Unwind@1015b780(void) 8 1 +1015b7b0 Unwind@1015b7b0 undefined Unwind@1015b7b0(void) 8 1 +1015b7e0 Unwind@1015b7e0 undefined Unwind@1015b7e0(void) 8 1 +1015b810 Unwind@1015b810 undefined Unwind@1015b810(void) 8 1 +1015b840 Unwind@1015b840 undefined Unwind@1015b840(void) 8 1 +1015b848 Unwind@1015b848 undefined Unwind@1015b848(void) 8 1 +1015b850 Unwind@1015b850 undefined Unwind@1015b850(void) 9 0 +1015b880 Unwind@1015b880 undefined Unwind@1015b880(void) 8 1 +1015b8b0 Unwind@1015b8b0 undefined Unwind@1015b8b0(void) 8 1 +1015b8e0 Unwind@1015b8e0 undefined Unwind@1015b8e0(void) 8 1 +1015b910 Unwind@1015b910 undefined Unwind@1015b910(void) 8 1 +1015b940 Unwind@1015b940 undefined Unwind@1015b940(void) 8 1 +1015b970 Unwind@1015b970 undefined Unwind@1015b970(void) 25 1 +1015b9b0 Unwind@1015b9b0 undefined Unwind@1015b9b0(void) 8 1 +1015b9b8 Unwind@1015b9b8 undefined Unwind@1015b9b8(void) 8 1 +1015b9c0 Unwind@1015b9c0 undefined Unwind@1015b9c0(void) 8 1 +1015b9f0 Unwind@1015b9f0 undefined Unwind@1015b9f0(void) 8 1 +1015b9f8 Unwind@1015b9f8 undefined Unwind@1015b9f8(void) 11 1 +1015ba03 Unwind@1015ba03 undefined Unwind@1015ba03(void) 11 1 +1015ba0e Unwind@1015ba0e undefined Unwind@1015ba0e(void) 11 1 +1015ba19 Unwind@1015ba19 undefined Unwind@1015ba19(void) 11 1 +1015ba24 Unwind@1015ba24 undefined Unwind@1015ba24(void) 8 1 +1015ba50 Unwind@1015ba50 undefined Unwind@1015ba50(void) 8 1 +1015ba58 Unwind@1015ba58 undefined Unwind@1015ba58(void) 8 1 +1015ba80 Unwind@1015ba80 undefined Unwind@1015ba80(void) 8 1 +1015ba88 Unwind@1015ba88 undefined Unwind@1015ba88(void) 8 1 +1015bab0 Unwind@1015bab0 undefined Unwind@1015bab0(void) 8 1 +1015bab8 Unwind@1015bab8 undefined Unwind@1015bab8(void) 11 1 +1015bae0 Unwind@1015bae0 undefined Unwind@1015bae0(void) 8 1 +1015bb10 Unwind@1015bb10 undefined Unwind@1015bb10(void) 8 1 +1015bb18 Unwind@1015bb18 undefined Unwind@1015bb18(void) 8 1 +1015bb20 Unwind@1015bb20 undefined Unwind@1015bb20(void) 8 1 +1015bb50 Unwind@1015bb50 undefined Unwind@1015bb50(void) 8 1 +1015bb58 Unwind@1015bb58 undefined Unwind@1015bb58(void) 11 1 +1015bb63 Unwind@1015bb63 undefined Unwind@1015bb63(void) 8 1 +1015bb90 Unwind@1015bb90 undefined Unwind@1015bb90(void) 8 1 +1015bbc0 Unwind@1015bbc0 undefined Unwind@1015bbc0(void) 8 1 +1015bbc8 Unwind@1015bbc8 undefined Unwind@1015bbc8(void) 11 1 +1015bbf0 Unwind@1015bbf0 undefined Unwind@1015bbf0(void) 8 1 +1015bc20 Unwind@1015bc20 undefined Unwind@1015bc20(void) 8 1 +1015bc50 Unwind@1015bc50 undefined Unwind@1015bc50(void) 8 1 +1015bc58 Unwind@1015bc58 undefined Unwind@1015bc58(void) 8 1 +1015bc60 Unwind@1015bc60 undefined Unwind@1015bc60(void) 11 1 +1015bc6b Unwind@1015bc6b undefined Unwind@1015bc6b(void) 8 1 +1015bc73 Unwind@1015bc73 undefined Unwind@1015bc73(void) 11 1 +1015bca0 Unwind@1015bca0 undefined Unwind@1015bca0(void) 17 1 +1015bcb1 Unwind@1015bcb1 undefined Unwind@1015bcb1(void) 8 1 +1015bcb9 Unwind@1015bcb9 undefined Unwind@1015bcb9(void) 8 1 +1015bcc1 Unwind@1015bcc1 undefined Unwind@1015bcc1(void) 8 1 +1015bcf0 Unwind@1015bcf0 undefined Unwind@1015bcf0(void) 8 1 +1015bd20 Unwind@1015bd20 undefined Unwind@1015bd20(void) 8 1 +1015bd28 Unwind@1015bd28 undefined Unwind@1015bd28(void) 9 0 +1015bd50 Unwind@1015bd50 undefined Unwind@1015bd50(void) 8 1 +1015bd80 Unwind@1015bd80 undefined Unwind@1015bd80(void) 8 1 +1015bd88 Unwind@1015bd88 undefined Unwind@1015bd88(void) 11 1 +1015bd93 Unwind@1015bd93 undefined Unwind@1015bd93(void) 8 1 +1015bdc0 Unwind@1015bdc0 undefined Unwind@1015bdc0(void) 11 1 +1015bdf0 Unwind@1015bdf0 undefined Unwind@1015bdf0(void) 8 1 +1015bdf8 Unwind@1015bdf8 undefined Unwind@1015bdf8(void) 8 1 +1015be20 Unwind@1015be20 undefined Unwind@1015be20(void) 35 0 +1015be43 Unwind@1015be43 undefined Unwind@1015be43(void) 12 0 +1015be4f Unwind@1015be4f undefined Unwind@1015be4f(void) 12 0 +1015be5b Unwind@1015be5b undefined Unwind@1015be5b(void) 11 1 +1015be66 Unwind@1015be66 undefined Unwind@1015be66(void) 11 1 +1015be71 Unwind@1015be71 undefined Unwind@1015be71(void) 34 1 +1015be93 Unwind@1015be93 undefined Unwind@1015be93(void) 15 0 +1015bea2 Unwind@1015bea2 undefined Unwind@1015bea2(void) 14 1 +1015beb0 Unwind@1015beb0 undefined Unwind@1015beb0(void) 12 0 +1015bef0 Unwind@1015bef0 undefined Unwind@1015bef0(void) 8 1 +1015bef8 Unwind@1015bef8 undefined Unwind@1015bef8(void) 8 1 +1015bf20 Unwind@1015bf20 undefined Unwind@1015bf20(void) 8 1 +1015bf28 Unwind@1015bf28 undefined Unwind@1015bf28(void) 8 1 +1015bf50 Unwind@1015bf50 undefined Unwind@1015bf50(void) 8 1 +1015bf58 Unwind@1015bf58 undefined Unwind@1015bf58(void) 8 1 +1015bf80 Unwind@1015bf80 undefined Unwind@1015bf80(void) 8 1 +1015bf88 Unwind@1015bf88 undefined Unwind@1015bf88(void) 8 1 +1015bfb0 Unwind@1015bfb0 undefined Unwind@1015bfb0(void) 8 1 +1015bfb8 Unwind@1015bfb8 undefined Unwind@1015bfb8(void) 8 1 +1015bfc0 Unwind@1015bfc0 undefined Unwind@1015bfc0(void) 8 1 +1015bff0 Unwind@1015bff0 undefined Unwind@1015bff0(void) 26 0 +1015c00a Unwind@1015c00a undefined Unwind@1015c00a(void) 12 0 +1015c016 Unwind@1015c016 undefined Unwind@1015c016(void) 9 0 +1015c01f Unwind@1015c01f undefined Unwind@1015c01f(void) 11 1 +1015c02a Unwind@1015c02a undefined Unwind@1015c02a(void) 11 1 +1015c035 Unwind@1015c035 undefined Unwind@1015c035(void) 25 1 +1015c080 Unwind@1015c080 undefined Unwind@1015c080(void) 8 1 +1015c088 Unwind@1015c088 undefined Unwind@1015c088(void) 8 1 +1015c0b0 Unwind@1015c0b0 undefined Unwind@1015c0b0(void) 8 1 +1015c0b8 Unwind@1015c0b8 undefined Unwind@1015c0b8(void) 8 1 +1015c0e0 Unwind@1015c0e0 undefined Unwind@1015c0e0(void) 8 1 +1015c0e8 Unwind@1015c0e8 undefined Unwind@1015c0e8(void) 8 1 +1015c110 Unwind@1015c110 undefined Unwind@1015c110(void) 8 1 +1015c118 Unwind@1015c118 undefined Unwind@1015c118(void) 8 1 +1015c140 Unwind@1015c140 undefined Unwind@1015c140(void) 8 1 +1015c148 Unwind@1015c148 undefined Unwind@1015c148(void) 8 1 +1015c170 Unwind@1015c170 undefined Unwind@1015c170(void) 8 1 +1015c178 Unwind@1015c178 undefined Unwind@1015c178(void) 8 1 +1015c1a0 Unwind@1015c1a0 undefined Unwind@1015c1a0(void) 8 1 +1015c1a8 Unwind@1015c1a8 undefined Unwind@1015c1a8(void) 8 1 +1015c1d0 Unwind@1015c1d0 undefined Unwind@1015c1d0(void) 8 1 +1015c200 Unwind@1015c200 undefined Unwind@1015c200(void) 8 1 +1015c208 Unwind@1015c208 undefined Unwind@1015c208(void) 8 1 +1015c230 Unwind@1015c230 undefined Unwind@1015c230(void) 8 1 +1015c238 Unwind@1015c238 undefined Unwind@1015c238(void) 8 1 +1015c240 Unwind@1015c240 undefined Unwind@1015c240(void) 8 1 +1015c248 Unwind@1015c248 undefined Unwind@1015c248(void) 8 1 +1015c280 Unwind@1015c280 undefined Unwind@1015c280(void) 8 1 +1015c288 Unwind@1015c288 undefined Unwind@1015c288(void) 8 1 +1015c2b0 Unwind@1015c2b0 undefined Unwind@1015c2b0(void) 8 1 +1015c2b8 Unwind@1015c2b8 undefined Unwind@1015c2b8(void) 8 1 +1015c2e0 Unwind@1015c2e0 undefined Unwind@1015c2e0(void) 8 1 +1015c2e8 Unwind@1015c2e8 undefined Unwind@1015c2e8(void) 8 1 +1015c2f0 Unwind@1015c2f0 undefined Unwind@1015c2f0(void) 8 1 +1015c2f8 Unwind@1015c2f8 undefined Unwind@1015c2f8(void) 9 0 +1015c320 Unwind@1015c320 undefined Unwind@1015c320(void) 8 1 +1015c328 Unwind@1015c328 undefined Unwind@1015c328(void) 8 1 +1015c350 Unwind@1015c350 undefined Unwind@1015c350(void) 8 1 +1015c358 Unwind@1015c358 undefined Unwind@1015c358(void) 8 1 +1015c380 Unwind@1015c380 undefined Unwind@1015c380(void) 8 1 +1015c388 Unwind@1015c388 undefined Unwind@1015c388(void) 8 1 +1015c3b0 Unwind@1015c3b0 undefined Unwind@1015c3b0(void) 8 1 +1015c3b8 Unwind@1015c3b8 undefined Unwind@1015c3b8(void) 8 1 +1015c3e0 Unwind@1015c3e0 undefined Unwind@1015c3e0(void) 8 1 +1015c3e8 Unwind@1015c3e8 undefined Unwind@1015c3e8(void) 8 1 +1015c410 Unwind@1015c410 undefined Unwind@1015c410(void) 8 1 +1015c418 Unwind@1015c418 undefined Unwind@1015c418(void) 8 1 +1015c440 Unwind@1015c440 undefined Unwind@1015c440(void) 8 1 +1015c448 Unwind@1015c448 undefined Unwind@1015c448(void) 8 1 +1015c470 Unwind@1015c470 undefined Unwind@1015c470(void) 8 1 +1015c478 Unwind@1015c478 undefined Unwind@1015c478(void) 8 1 +1015c4a0 Unwind@1015c4a0 undefined Unwind@1015c4a0(void) 8 1 +1015c4a8 Unwind@1015c4a8 undefined Unwind@1015c4a8(void) 8 1 +1015c4d0 Unwind@1015c4d0 undefined Unwind@1015c4d0(void) 8 1 +1015c4d8 Unwind@1015c4d8 undefined Unwind@1015c4d8(void) 8 1 +1015c500 Unwind@1015c500 undefined Unwind@1015c500(void) 8 1 +1015c508 Unwind@1015c508 undefined Unwind@1015c508(void) 8 1 +1015c530 Unwind@1015c530 undefined Unwind@1015c530(void) 8 1 +1015c538 Unwind@1015c538 undefined Unwind@1015c538(void) 8 1 +1015c560 Unwind@1015c560 undefined Unwind@1015c560(void) 8 1 +1015c568 Unwind@1015c568 undefined Unwind@1015c568(void) 8 1 +1015c590 Unwind@1015c590 undefined Unwind@1015c590(void) 8 1 +1015c598 Unwind@1015c598 undefined Unwind@1015c598(void) 8 1 +1015c5c0 Unwind@1015c5c0 undefined Unwind@1015c5c0(void) 8 1 +1015c5c8 Unwind@1015c5c8 undefined Unwind@1015c5c8(void) 11 1 +1015c5d3 Unwind@1015c5d3 undefined Unwind@1015c5d3(void) 11 1 +1015c5de Unwind@1015c5de undefined Unwind@1015c5de(void) 8 1 +1015c5e6 Unwind@1015c5e6 undefined Unwind@1015c5e6(void) 8 1 +1015c5ee Unwind@1015c5ee undefined Unwind@1015c5ee(void) 8 1 +1015c620 Unwind@1015c620 undefined Unwind@1015c620(void) 14 0 +1015c62e Unwind@1015c62e undefined Unwind@1015c62e(void) 14 0 +1015c63c Unwind@1015c63c undefined Unwind@1015c63c(void) 14 0 +1015c64a Unwind@1015c64a undefined Unwind@1015c64a(void) 14 0 +1015c658 Unwind@1015c658 undefined Unwind@1015c658(void) 14 0 +1015c666 Unwind@1015c666 undefined Unwind@1015c666(void) 14 0 +1015c674 Unwind@1015c674 undefined Unwind@1015c674(void) 14 0 +1015c682 Unwind@1015c682 undefined Unwind@1015c682(void) 14 0 +1015c690 Unwind@1015c690 undefined Unwind@1015c690(void) 14 0 +1015c69e Unwind@1015c69e undefined Unwind@1015c69e(void) 14 0 +1015c6ac Unwind@1015c6ac undefined Unwind@1015c6ac(void) 14 0 +1015c6ba Unwind@1015c6ba undefined Unwind@1015c6ba(void) 14 0 +1015c6c8 Unwind@1015c6c8 undefined Unwind@1015c6c8(void) 14 0 +1015c6d6 Unwind@1015c6d6 undefined Unwind@1015c6d6(void) 8 1 +1015c6de Unwind@1015c6de undefined Unwind@1015c6de(void) 14 0 +1015c6ec Unwind@1015c6ec undefined Unwind@1015c6ec(void) 14 0 +1015c6fa Unwind@1015c6fa undefined Unwind@1015c6fa(void) 8 1 +1015c702 Unwind@1015c702 undefined Unwind@1015c702(void) 14 0 +1015c710 Unwind@1015c710 undefined Unwind@1015c710(void) 14 0 +1015c71e Unwind@1015c71e undefined Unwind@1015c71e(void) 14 0 +1015c72c Unwind@1015c72c undefined Unwind@1015c72c(void) 14 0 +1015c73a Unwind@1015c73a undefined Unwind@1015c73a(void) 14 0 +1015c748 Unwind@1015c748 undefined Unwind@1015c748(void) 14 0 +1015c780 Unwind@1015c780 undefined Unwind@1015c780(void) 14 0 +1015c78e Unwind@1015c78e undefined Unwind@1015c78e(void) 14 0 +1015c79c Unwind@1015c79c undefined Unwind@1015c79c(void) 14 0 +1015c7aa Unwind@1015c7aa undefined Unwind@1015c7aa(void) 14 0 +1015c7b8 Unwind@1015c7b8 undefined Unwind@1015c7b8(void) 14 0 +1015c7c6 Unwind@1015c7c6 undefined Unwind@1015c7c6(void) 14 0 +1015c7d4 Unwind@1015c7d4 undefined Unwind@1015c7d4(void) 14 0 +1015c7e2 Unwind@1015c7e2 undefined Unwind@1015c7e2(void) 8 1 +1015c7ea Unwind@1015c7ea undefined Unwind@1015c7ea(void) 14 0 +1015c820 Unwind@1015c820 undefined Unwind@1015c820(void) 8 1 +1015c828 Unwind@1015c828 undefined Unwind@1015c828(void) 8 1 +1015c850 Unwind@1015c850 undefined Unwind@1015c850(void) 11 1 +1015c85b Unwind@1015c85b undefined Unwind@1015c85b(void) 8 1 +1015c863 Unwind@1015c863 undefined Unwind@1015c863(void) 8 1 +1015c890 Unwind@1015c890 undefined Unwind@1015c890(void) 25 1 +1015c8d0 Unwind@1015c8d0 undefined Unwind@1015c8d0(void) 8 1 +1015c8d8 Unwind@1015c8d8 undefined Unwind@1015c8d8(void) 8 1 +1015c8e0 Unwind@1015c8e0 undefined Unwind@1015c8e0(void) 8 1 +1015c910 Unwind@1015c910 undefined Unwind@1015c910(void) 11 1 +1015c91b Unwind@1015c91b undefined Unwind@1015c91b(void) 8 1 +1015c923 Unwind@1015c923 undefined Unwind@1015c923(void) 8 1 +1015c92b Unwind@1015c92b undefined Unwind@1015c92b(void) 8 1 +1015c950 Unwind@1015c950 undefined Unwind@1015c950(void) 11 1 +1015c95b Unwind@1015c95b undefined Unwind@1015c95b(void) 8 1 +1015c963 Unwind@1015c963 undefined Unwind@1015c963(void) 8 1 +1015c96b Unwind@1015c96b undefined Unwind@1015c96b(void) 8 1 +1015c990 Unwind@1015c990 undefined Unwind@1015c990(void) 8 1 +1015c998 Unwind@1015c998 undefined Unwind@1015c998(void) 8 1 +1015c9c0 Unwind@1015c9c0 undefined Unwind@1015c9c0(void) 8 1 +1015c9c8 Unwind@1015c9c8 undefined Unwind@1015c9c8(void) 8 1 +1015c9d0 Unwind@1015c9d0 undefined Unwind@1015c9d0(void) 9 0 +1015ca00 Unwind@1015ca00 undefined Unwind@1015ca00(void) 8 1 +1015ca08 Unwind@1015ca08 undefined Unwind@1015ca08(void) 8 1 +1015ca10 Unwind@1015ca10 undefined Unwind@1015ca10(void) 9 0 +1015ca40 Unwind@1015ca40 undefined Unwind@1015ca40(void) 8 1 +1015ca48 Unwind@1015ca48 undefined Unwind@1015ca48(void) 8 1 +1015ca50 Unwind@1015ca50 undefined Unwind@1015ca50(void) 9 0 +1015ca80 Unwind@1015ca80 undefined Unwind@1015ca80(void) 11 1 +1015ca8b Unwind@1015ca8b undefined Unwind@1015ca8b(void) 11 1 +1015ca96 Unwind@1015ca96 undefined Unwind@1015ca96(void) 35 0 +1015cab9 Unwind@1015cab9 undefined Unwind@1015cab9(void) 12 0 +1015cac5 Unwind@1015cac5 undefined Unwind@1015cac5(void) 12 0 +1015cad1 Unwind@1015cad1 undefined Unwind@1015cad1(void) 11 1 +1015cadc Unwind@1015cadc undefined Unwind@1015cadc(void) 11 1 +1015cae7 Unwind@1015cae7 undefined Unwind@1015cae7(void) 11 1 +1015caf2 Unwind@1015caf2 undefined Unwind@1015caf2(void) 11 1 +1015cafd Unwind@1015cafd undefined Unwind@1015cafd(void) 11 1 +1015cb08 Unwind@1015cb08 undefined Unwind@1015cb08(void) 11 1 +1015cb13 Unwind@1015cb13 undefined Unwind@1015cb13(void) 11 1 +1015cb1e Unwind@1015cb1e undefined Unwind@1015cb1e(void) 11 1 +1015cb29 Unwind@1015cb29 undefined Unwind@1015cb29(void) 11 1 +1015cb34 Unwind@1015cb34 undefined Unwind@1015cb34(void) 11 1 +1015cb3f Unwind@1015cb3f undefined Unwind@1015cb3f(void) 11 1 +1015cb4a Unwind@1015cb4a undefined Unwind@1015cb4a(void) 11 1 +1015cb55 Unwind@1015cb55 undefined Unwind@1015cb55(void) 11 1 +1015cb60 Unwind@1015cb60 undefined Unwind@1015cb60(void) 34 1 +1015cb82 Unwind@1015cb82 undefined Unwind@1015cb82(void) 15 0 +1015cb91 Unwind@1015cb91 undefined Unwind@1015cb91(void) 14 1 +1015cb9f Unwind@1015cb9f undefined Unwind@1015cb9f(void) 12 0 +1015cbe0 Unwind@1015cbe0 undefined Unwind@1015cbe0(void) 25 1 +1015cc20 Unwind@1015cc20 undefined Unwind@1015cc20(void) 8 1 +1015cc28 Unwind@1015cc28 undefined Unwind@1015cc28(void) 8 1 +1015cc30 Unwind@1015cc30 undefined Unwind@1015cc30(void) 8 1 +1015cc38 Unwind@1015cc38 undefined Unwind@1015cc38(void) 25 1 +1015cc70 Unwind@1015cc70 undefined Unwind@1015cc70(void) 8 1 +1015cc78 Unwind@1015cc78 undefined Unwind@1015cc78(void) 8 1 +1015cc80 Unwind@1015cc80 undefined Unwind@1015cc80(void) 8 1 +1015cc88 Unwind@1015cc88 undefined Unwind@1015cc88(void) 11 1 +1015cc93 Unwind@1015cc93 undefined Unwind@1015cc93(void) 25 1 +1015ccac Unwind@1015ccac undefined Unwind@1015ccac(void) 8 1 +1015ccb4 Unwind@1015ccb4 undefined Unwind@1015ccb4(void) 8 1 +1015cce0 Unwind@1015cce0 undefined Unwind@1015cce0(void) 8 1 +1015cce8 Unwind@1015cce8 undefined Unwind@1015cce8(void) 8 1 +1015ccf0 Unwind@1015ccf0 undefined Unwind@1015ccf0(void) 9 0 +1015cd20 Unwind@1015cd20 undefined Unwind@1015cd20(void) 8 1 +1015cd28 Unwind@1015cd28 undefined Unwind@1015cd28(void) 8 1 +1015cd30 Unwind@1015cd30 undefined Unwind@1015cd30(void) 9 0 +1015cd60 Unwind@1015cd60 undefined Unwind@1015cd60(void) 8 1 +1015cd68 Unwind@1015cd68 undefined Unwind@1015cd68(void) 8 1 +1015cd70 Unwind@1015cd70 undefined Unwind@1015cd70(void) 9 0 +1015cda0 Unwind@1015cda0 undefined Unwind@1015cda0(void) 8 1 +1015cda8 Unwind@1015cda8 undefined Unwind@1015cda8(void) 8 1 +1015cdb0 Unwind@1015cdb0 undefined Unwind@1015cdb0(void) 9 0 +1015cde0 Unwind@1015cde0 undefined Unwind@1015cde0(void) 8 1 +1015cde8 Unwind@1015cde8 undefined Unwind@1015cde8(void) 8 1 +1015cdf0 Unwind@1015cdf0 undefined Unwind@1015cdf0(void) 9 0 +1015ce20 Unwind@1015ce20 undefined Unwind@1015ce20(void) 8 1 +1015ce28 Unwind@1015ce28 undefined Unwind@1015ce28(void) 8 1 +1015ce30 Unwind@1015ce30 undefined Unwind@1015ce30(void) 9 0 +1015ce60 Unwind@1015ce60 undefined Unwind@1015ce60(void) 8 1 +1015ce68 Unwind@1015ce68 undefined Unwind@1015ce68(void) 8 1 +1015ce70 Unwind@1015ce70 undefined Unwind@1015ce70(void) 9 0 +1015cea0 Unwind@1015cea0 undefined Unwind@1015cea0(void) 8 1 +1015cea8 Unwind@1015cea8 undefined Unwind@1015cea8(void) 8 1 +1015ceb0 Unwind@1015ceb0 undefined Unwind@1015ceb0(void) 9 0 +1015cee0 Unwind@1015cee0 undefined Unwind@1015cee0(void) 8 1 +1015cee8 Unwind@1015cee8 undefined Unwind@1015cee8(void) 8 1 +1015cef0 Unwind@1015cef0 undefined Unwind@1015cef0(void) 9 0 +1015cf20 Unwind@1015cf20 undefined Unwind@1015cf20(void) 8 1 +1015cf28 Unwind@1015cf28 undefined Unwind@1015cf28(void) 8 1 +1015cf30 Unwind@1015cf30 undefined Unwind@1015cf30(void) 9 0 +1015cf60 Unwind@1015cf60 undefined Unwind@1015cf60(void) 8 1 +1015cf68 Unwind@1015cf68 undefined Unwind@1015cf68(void) 8 1 +1015cf70 Unwind@1015cf70 undefined Unwind@1015cf70(void) 9 0 +1015cfa0 Unwind@1015cfa0 undefined Unwind@1015cfa0(void) 8 1 +1015cfa8 Unwind@1015cfa8 undefined Unwind@1015cfa8(void) 8 1 +1015cfb0 Unwind@1015cfb0 undefined Unwind@1015cfb0(void) 9 0 +1015cfe0 Unwind@1015cfe0 undefined Unwind@1015cfe0(void) 8 1 +1015cfe8 Unwind@1015cfe8 undefined Unwind@1015cfe8(void) 8 1 +1015cff0 Unwind@1015cff0 undefined Unwind@1015cff0(void) 9 0 +1015d020 Unwind@1015d020 undefined Unwind@1015d020(void) 8 1 +1015d028 Unwind@1015d028 undefined Unwind@1015d028(void) 8 1 +1015d030 Unwind@1015d030 undefined Unwind@1015d030(void) 9 0 +1015d060 Unwind@1015d060 undefined Unwind@1015d060(void) 8 1 +1015d068 Unwind@1015d068 undefined Unwind@1015d068(void) 8 1 +1015d070 Unwind@1015d070 undefined Unwind@1015d070(void) 9 0 +1015d0a0 Unwind@1015d0a0 undefined Unwind@1015d0a0(void) 8 1 +1015d0a8 Unwind@1015d0a8 undefined Unwind@1015d0a8(void) 8 1 +1015d0b0 Unwind@1015d0b0 undefined Unwind@1015d0b0(void) 9 0 +1015d0e0 Unwind@1015d0e0 undefined Unwind@1015d0e0(void) 8 1 +1015d0e8 Unwind@1015d0e8 undefined Unwind@1015d0e8(void) 8 1 +1015d0f0 Unwind@1015d0f0 undefined Unwind@1015d0f0(void) 9 0 +1015d120 Unwind@1015d120 undefined Unwind@1015d120(void) 8 1 +1015d128 Unwind@1015d128 undefined Unwind@1015d128(void) 8 1 +1015d130 Unwind@1015d130 undefined Unwind@1015d130(void) 9 0 +1015d160 Unwind@1015d160 undefined Unwind@1015d160(void) 8 1 +1015d168 Unwind@1015d168 undefined Unwind@1015d168(void) 8 1 +1015d170 Unwind@1015d170 undefined Unwind@1015d170(void) 9 0 +1015d1a0 Unwind@1015d1a0 undefined Unwind@1015d1a0(void) 8 1 +1015d1a8 Unwind@1015d1a8 undefined Unwind@1015d1a8(void) 8 1 +1015d1b0 Unwind@1015d1b0 undefined Unwind@1015d1b0(void) 9 0 +1015d1e0 Unwind@1015d1e0 undefined Unwind@1015d1e0(void) 8 1 +1015d1e8 Unwind@1015d1e8 undefined Unwind@1015d1e8(void) 8 1 +1015d1f0 Unwind@1015d1f0 undefined Unwind@1015d1f0(void) 9 0 +1015d220 Unwind@1015d220 undefined Unwind@1015d220(void) 8 1 +1015d228 Unwind@1015d228 undefined Unwind@1015d228(void) 8 1 +1015d230 Unwind@1015d230 undefined Unwind@1015d230(void) 9 0 +1015d260 Unwind@1015d260 undefined Unwind@1015d260(void) 17 1 +1015d271 Unwind@1015d271 undefined Unwind@1015d271(void) 17 1 +1015d2a0 Unwind@1015d2a0 undefined Unwind@1015d2a0(void) 8 1 +1015d2a8 Unwind@1015d2a8 undefined Unwind@1015d2a8(void) 8 1 +1015d2b0 Unwind@1015d2b0 undefined Unwind@1015d2b0(void) 8 1 +1015d2e0 Unwind@1015d2e0 undefined Unwind@1015d2e0(void) 8 1 +1015d2e8 Unwind@1015d2e8 undefined Unwind@1015d2e8(void) 11 1 +1015d2f3 Unwind@1015d2f3 undefined Unwind@1015d2f3(void) 11 1 +1015d2fe Unwind@1015d2fe undefined Unwind@1015d2fe(void) 11 1 +1015d309 Unwind@1015d309 undefined Unwind@1015d309(void) 11 1 +1015d314 Unwind@1015d314 undefined Unwind@1015d314(void) 8 1 +1015d340 Unwind@1015d340 undefined Unwind@1015d340(void) 8 1 +1015d348 Unwind@1015d348 undefined Unwind@1015d348(void) 8 1 +1015d370 Unwind@1015d370 undefined Unwind@1015d370(void) 8 1 +1015d378 Unwind@1015d378 undefined Unwind@1015d378(void) 8 1 +1015d380 Unwind@1015d380 undefined Unwind@1015d380(void) 8 1 +1015d3b0 Unwind@1015d3b0 undefined Unwind@1015d3b0(void) 8 1 +1015d3b8 Unwind@1015d3b8 undefined Unwind@1015d3b8(void) 8 1 +1015d3e0 Unwind@1015d3e0 undefined Unwind@1015d3e0(void) 8 1 +1015d3e8 Unwind@1015d3e8 undefined Unwind@1015d3e8(void) 11 1 +1015d410 Unwind@1015d410 undefined Unwind@1015d410(void) 8 1 +1015d418 Unwind@1015d418 undefined Unwind@1015d418(void) 11 1 +1015d423 Unwind@1015d423 undefined Unwind@1015d423(void) 11 1 +1015d42e Unwind@1015d42e undefined Unwind@1015d42e(void) 11 1 +1015d439 Unwind@1015d439 undefined Unwind@1015d439(void) 11 1 +1015d444 Unwind@1015d444 undefined Unwind@1015d444(void) 8 1 +1015d470 Unwind@1015d470 undefined Unwind@1015d470(void) 8 1 +1015d478 Unwind@1015d478 undefined Unwind@1015d478(void) 8 1 +1015d4a0 Unwind@1015d4a0 undefined Unwind@1015d4a0(void) 8 1 +1015d4a8 Unwind@1015d4a8 undefined Unwind@1015d4a8(void) 8 1 +1015d4d0 Unwind@1015d4d0 undefined Unwind@1015d4d0(void) 8 1 +1015d4d8 Unwind@1015d4d8 undefined Unwind@1015d4d8(void) 11 1 +1015d4e3 Unwind@1015d4e3 undefined Unwind@1015d4e3(void) 8 1 +1015d4eb Unwind@1015d4eb undefined Unwind@1015d4eb(void) 11 1 +1015d4f6 Unwind@1015d4f6 undefined Unwind@1015d4f6(void) 8 1 +1015d520 Unwind@1015d520 undefined Unwind@1015d520(void) 8 1 +1015d528 Unwind@1015d528 undefined Unwind@1015d528(void) 8 1 +1015d530 Unwind@1015d530 undefined Unwind@1015d530(void) 8 1 +1015d538 Unwind@1015d538 undefined Unwind@1015d538(void) 8 1 +1015d540 Unwind@1015d540 undefined Unwind@1015d540(void) 8 1 +1015d548 Unwind@1015d548 undefined Unwind@1015d548(void) 8 1 +1015d550 Unwind@1015d550 undefined Unwind@1015d550(void) 8 1 +1015d558 Unwind@1015d558 undefined Unwind@1015d558(void) 8 1 +1015d560 Unwind@1015d560 undefined Unwind@1015d560(void) 8 1 +1015d568 Unwind@1015d568 undefined Unwind@1015d568(void) 8 1 +1015d570 Unwind@1015d570 undefined Unwind@1015d570(void) 8 1 +1015d5a0 Unwind@1015d5a0 undefined Unwind@1015d5a0(void) 8 1 +1015d5d0 Unwind@1015d5d0 undefined Unwind@1015d5d0(void) 8 1 +1015d5d8 Unwind@1015d5d8 undefined Unwind@1015d5d8(void) 11 1 +1015d600 Unwind@1015d600 undefined Unwind@1015d600(void) 11 1 +1015d60b Unwind@1015d60b undefined Unwind@1015d60b(void) 8 1 +1015d613 Unwind@1015d613 undefined Unwind@1015d613(void) 8 1 +1015d640 Unwind@1015d640 undefined Unwind@1015d640(void) 11 1 +1015d64b Unwind@1015d64b undefined Unwind@1015d64b(void) 11 1 +1015d656 Unwind@1015d656 undefined Unwind@1015d656(void) 14 1 +1015d664 Unwind@1015d664 undefined Unwind@1015d664(void) 14 1 +1015d672 Unwind@1015d672 undefined Unwind@1015d672(void) 8 1 +1015d67a Unwind@1015d67a undefined Unwind@1015d67a(void) 8 1 +1015d682 Unwind@1015d682 undefined Unwind@1015d682(void) 8 1 +1015d68a Unwind@1015d68a undefined Unwind@1015d68a(void) 8 1 +1015d692 Unwind@1015d692 undefined Unwind@1015d692(void) 8 1 +1015d69a Unwind@1015d69a undefined Unwind@1015d69a(void) 8 1 +1015d6c0 Unwind@1015d6c0 undefined Unwind@1015d6c0(void) 11 1 +1015d6cb Unwind@1015d6cb undefined Unwind@1015d6cb(void) 8 1 +1015d6f0 Unwind@1015d6f0 undefined Unwind@1015d6f0(void) 8 1 +1015d6f8 Unwind@1015d6f8 undefined Unwind@1015d6f8(void) 8 1 +1015d720 Unwind@1015d720 undefined Unwind@1015d720(void) 8 1 +1015d728 Unwind@1015d728 undefined Unwind@1015d728(void) 8 1 +1015d750 Unwind@1015d750 undefined Unwind@1015d750(void) 8 1 +1015d758 Unwind@1015d758 undefined Unwind@1015d758(void) 9 0 +1015d780 Unwind@1015d780 undefined Unwind@1015d780(void) 17 1 +1015d791 Unwind@1015d791 undefined Unwind@1015d791(void) 8 1 +1015d799 Unwind@1015d799 undefined Unwind@1015d799(void) 8 1 +1015d7a1 Unwind@1015d7a1 undefined Unwind@1015d7a1(void) 8 1 +1015d7d0 Unwind@1015d7d0 undefined Unwind@1015d7d0(void) 8 1 +1015d7d8 Unwind@1015d7d8 undefined Unwind@1015d7d8(void) 11 1 +1015d800 Unwind@1015d800 undefined Unwind@1015d800(void) 11 1 +1015d830 Unwind@1015d830 undefined Unwind@1015d830(void) 8 1 +1015d860 Unwind@1015d860 undefined Unwind@1015d860(void) 8 1 +1015d868 Unwind@1015d868 undefined Unwind@1015d868(void) 8 1 +1015d890 Unwind@1015d890 undefined Unwind@1015d890(void) 17 1 +1015d8a1 Unwind@1015d8a1 undefined Unwind@1015d8a1(void) 8 1 +1015d8a9 Unwind@1015d8a9 undefined Unwind@1015d8a9(void) 11 1 +1015d8b4 Unwind@1015d8b4 undefined Unwind@1015d8b4(void) 8 1 +1015d8e0 Unwind@1015d8e0 undefined Unwind@1015d8e0(void) 11 1 +1015d8eb Unwind@1015d8eb undefined Unwind@1015d8eb(void) 8 1 +1015d910 Unwind@1015d910 undefined Unwind@1015d910(void) 8 1 +1015d918 Unwind@1015d918 undefined Unwind@1015d918(void) 11 1 +1015d940 Unwind@1015d940 undefined Unwind@1015d940(void) 8 1 +1015d948 Unwind@1015d948 undefined Unwind@1015d948(void) 8 1 +1015d950 Unwind@1015d950 undefined Unwind@1015d950(void) 11 1 +1015d95b Unwind@1015d95b undefined Unwind@1015d95b(void) 8 1 +1015d963 Unwind@1015d963 undefined Unwind@1015d963(void) 8 1 +1015d96b Unwind@1015d96b undefined Unwind@1015d96b(void) 11 1 +1015d976 Unwind@1015d976 undefined Unwind@1015d976(void) 9 0 +1015d9a0 Unwind@1015d9a0 undefined Unwind@1015d9a0(void) 8 1 +1015d9a8 Unwind@1015d9a8 undefined Unwind@1015d9a8(void) 8 1 +1015d9b0 Unwind@1015d9b0 undefined Unwind@1015d9b0(void) 11 1 +1015d9bb Unwind@1015d9bb undefined Unwind@1015d9bb(void) 8 1 +1015d9c3 Unwind@1015d9c3 undefined Unwind@1015d9c3(void) 8 1 +1015d9cb Unwind@1015d9cb undefined Unwind@1015d9cb(void) 11 1 +1015d9d6 Unwind@1015d9d6 undefined Unwind@1015d9d6(void) 9 0 +1015da00 Unwind@1015da00 undefined Unwind@1015da00(void) 14 0 +1015da0e Unwind@1015da0e undefined Unwind@1015da0e(void) 8 1 +1015da40 Unwind@1015da40 undefined Unwind@1015da40(void) 8 1 +1015da48 Unwind@1015da48 undefined Unwind@1015da48(void) 8 1 +1015da50 Unwind@1015da50 undefined Unwind@1015da50(void) 8 1 +1015da58 Unwind@1015da58 undefined Unwind@1015da58(void) 8 1 +1015da60 Unwind@1015da60 undefined Unwind@1015da60(void) 8 1 +1015da68 Unwind@1015da68 undefined Unwind@1015da68(void) 8 1 +1015da70 Unwind@1015da70 undefined Unwind@1015da70(void) 8 1 +1015da78 Unwind@1015da78 undefined Unwind@1015da78(void) 8 1 +1015da80 Unwind@1015da80 undefined Unwind@1015da80(void) 8 1 +1015da88 Unwind@1015da88 undefined Unwind@1015da88(void) 8 1 +1015dab0 Unwind@1015dab0 undefined Unwind@1015dab0(void) 8 1 +1015dab8 Unwind@1015dab8 undefined Unwind@1015dab8(void) 8 1 +1015dac0 Unwind@1015dac0 undefined Unwind@1015dac0(void) 11 1 +1015dacb Unwind@1015dacb undefined Unwind@1015dacb(void) 11 1 +1015dad6 Unwind@1015dad6 undefined Unwind@1015dad6(void) 11 1 +1015dae1 Unwind@1015dae1 undefined Unwind@1015dae1(void) 11 1 +1015db10 Unwind@1015db10 undefined Unwind@1015db10(void) 8 1 +1015db18 Unwind@1015db18 undefined Unwind@1015db18(void) 8 1 +1015db20 Unwind@1015db20 undefined Unwind@1015db20(void) 8 1 +1015db28 Unwind@1015db28 undefined Unwind@1015db28(void) 8 1 +1015db30 Unwind@1015db30 undefined Unwind@1015db30(void) 8 1 +1015db60 Unwind@1015db60 undefined Unwind@1015db60(void) 8 1 +1015db68 Unwind@1015db68 undefined Unwind@1015db68(void) 8 1 +1015db70 Unwind@1015db70 undefined Unwind@1015db70(void) 8 1 +1015db78 Unwind@1015db78 undefined Unwind@1015db78(void) 8 1 +1015db80 Unwind@1015db80 undefined Unwind@1015db80(void) 8 1 +1015dbb0 Unwind@1015dbb0 undefined Unwind@1015dbb0(void) 8 1 +1015dbb8 Unwind@1015dbb8 undefined Unwind@1015dbb8(void) 8 1 +1015dbc0 Unwind@1015dbc0 undefined Unwind@1015dbc0(void) 8 1 +1015dbc8 Unwind@1015dbc8 undefined Unwind@1015dbc8(void) 8 1 +1015dbd0 Unwind@1015dbd0 undefined Unwind@1015dbd0(void) 8 1 +1015dc00 Unwind@1015dc00 undefined Unwind@1015dc00(void) 8 1 +1015dc08 Unwind@1015dc08 undefined Unwind@1015dc08(void) 8 1 +1015dc10 Unwind@1015dc10 undefined Unwind@1015dc10(void) 8 1 +1015dc18 Unwind@1015dc18 undefined Unwind@1015dc18(void) 8 1 +1015dc20 Unwind@1015dc20 undefined Unwind@1015dc20(void) 8 1 +1015dc50 Unwind@1015dc50 undefined Unwind@1015dc50(void) 8 1 +1015dc58 Unwind@1015dc58 undefined Unwind@1015dc58(void) 8 1 +1015dc60 Unwind@1015dc60 undefined Unwind@1015dc60(void) 8 1 +1015dc68 Unwind@1015dc68 undefined Unwind@1015dc68(void) 8 1 +1015dc70 Unwind@1015dc70 undefined Unwind@1015dc70(void) 8 1 +1015dca0 Unwind@1015dca0 undefined Unwind@1015dca0(void) 8 1 +1015dca8 Unwind@1015dca8 undefined Unwind@1015dca8(void) 8 1 +1015dcb0 Unwind@1015dcb0 undefined Unwind@1015dcb0(void) 8 1 +1015dcb8 Unwind@1015dcb8 undefined Unwind@1015dcb8(void) 8 1 +1015dcc0 Unwind@1015dcc0 undefined Unwind@1015dcc0(void) 8 1 +1015dcf0 Unwind@1015dcf0 undefined Unwind@1015dcf0(void) 8 1 +1015dcf8 Unwind@1015dcf8 undefined Unwind@1015dcf8(void) 8 1 +1015dd00 Unwind@1015dd00 undefined Unwind@1015dd00(void) 8 1 +1015dd08 Unwind@1015dd08 undefined Unwind@1015dd08(void) 8 1 +1015dd10 Unwind@1015dd10 undefined Unwind@1015dd10(void) 8 1 +1015dd40 Unwind@1015dd40 undefined Unwind@1015dd40(void) 8 1 +1015dd48 Unwind@1015dd48 undefined Unwind@1015dd48(void) 8 1 +1015dd50 Unwind@1015dd50 undefined Unwind@1015dd50(void) 8 1 +1015dd58 Unwind@1015dd58 undefined Unwind@1015dd58(void) 8 1 +1015dd60 Unwind@1015dd60 undefined Unwind@1015dd60(void) 14 0 +1015dd6e Unwind@1015dd6e undefined Unwind@1015dd6e(void) 14 0 +1015dd7c Unwind@1015dd7c undefined Unwind@1015dd7c(void) 8 1 +1015dda0 Unwind@1015dda0 undefined Unwind@1015dda0(void) 8 1 +1015dda8 Unwind@1015dda8 undefined Unwind@1015dda8(void) 11 1 +1015ddd0 Unwind@1015ddd0 undefined Unwind@1015ddd0(void) 8 1 +1015ddd8 Unwind@1015ddd8 undefined Unwind@1015ddd8(void) 8 1 +1015dde0 Unwind@1015dde0 undefined Unwind@1015dde0(void) 8 1 +1015dde8 Unwind@1015dde8 undefined Unwind@1015dde8(void) 8 1 +1015de10 Unwind@1015de10 undefined Unwind@1015de10(void) 8 1 +1015de18 Unwind@1015de18 undefined Unwind@1015de18(void) 8 1 +1015de20 Unwind@1015de20 undefined Unwind@1015de20(void) 8 1 +1015de28 Unwind@1015de28 undefined Unwind@1015de28(void) 8 1 +1015de50 Unwind@1015de50 undefined Unwind@1015de50(void) 8 1 +1015de58 Unwind@1015de58 undefined Unwind@1015de58(void) 8 1 +1015de60 Unwind@1015de60 undefined Unwind@1015de60(void) 8 1 +1015de68 Unwind@1015de68 undefined Unwind@1015de68(void) 8 1 +1015de70 Unwind@1015de70 undefined Unwind@1015de70(void) 8 1 +1015de78 Unwind@1015de78 undefined Unwind@1015de78(void) 8 1 +1015dea0 Unwind@1015dea0 undefined Unwind@1015dea0(void) 8 1 +1015dea8 Unwind@1015dea8 undefined Unwind@1015dea8(void) 8 1 +1015deb0 Unwind@1015deb0 undefined Unwind@1015deb0(void) 8 1 +1015deb8 Unwind@1015deb8 undefined Unwind@1015deb8(void) 8 1 +1015dec0 Unwind@1015dec0 undefined Unwind@1015dec0(void) 14 0 +1015dece Unwind@1015dece undefined Unwind@1015dece(void) 14 0 +1015dedc Unwind@1015dedc undefined Unwind@1015dedc(void) 8 1 +1015dee4 Unwind@1015dee4 undefined Unwind@1015dee4(void) 14 0 +1015df20 Unwind@1015df20 undefined Unwind@1015df20(void) 11 1 +1015df2b Unwind@1015df2b undefined Unwind@1015df2b(void) 11 1 +1015df36 Unwind@1015df36 undefined Unwind@1015df36(void) 11 1 +1015df41 Unwind@1015df41 undefined Unwind@1015df41(void) 11 1 +1015df4c Unwind@1015df4c undefined Unwind@1015df4c(void) 11 1 +1015df57 Unwind@1015df57 undefined Unwind@1015df57(void) 11 1 +1015df62 Unwind@1015df62 undefined Unwind@1015df62(void) 11 1 +1015df6d Unwind@1015df6d undefined Unwind@1015df6d(void) 11 1 +1015df78 Unwind@1015df78 undefined Unwind@1015df78(void) 14 1 +1015df86 Unwind@1015df86 undefined Unwind@1015df86(void) 14 1 +1015df94 Unwind@1015df94 undefined Unwind@1015df94(void) 14 1 +1015dfa2 Unwind@1015dfa2 undefined Unwind@1015dfa2(void) 14 1 +1015dfb0 Unwind@1015dfb0 undefined Unwind@1015dfb0(void) 14 1 +1015dfbe Unwind@1015dfbe undefined Unwind@1015dfbe(void) 14 1 +1015dfcc Unwind@1015dfcc undefined Unwind@1015dfcc(void) 8 1 +1015dfd4 Unwind@1015dfd4 undefined Unwind@1015dfd4(void) 11 1 +1015dfdf Unwind@1015dfdf undefined Unwind@1015dfdf(void) 8 1 +1015dfe7 Unwind@1015dfe7 undefined Unwind@1015dfe7(void) 8 1 +1015dfef Unwind@1015dfef undefined Unwind@1015dfef(void) 8 1 +1015dff7 Unwind@1015dff7 undefined Unwind@1015dff7(void) 8 1 +1015dfff Unwind@1015dfff undefined Unwind@1015dfff(void) 8 1 +1015e007 Unwind@1015e007 undefined Unwind@1015e007(void) 8 1 +1015e00f Unwind@1015e00f undefined Unwind@1015e00f(void) 8 1 +1015e017 Unwind@1015e017 undefined Unwind@1015e017(void) 8 1 +1015e01f Unwind@1015e01f undefined Unwind@1015e01f(void) 8 1 +1015e027 Unwind@1015e027 undefined Unwind@1015e027(void) 8 1 +1015e02f Unwind@1015e02f undefined Unwind@1015e02f(void) 8 1 +1015e037 Unwind@1015e037 undefined Unwind@1015e037(void) 8 1 +1015e03f Unwind@1015e03f undefined Unwind@1015e03f(void) 8 1 +1015e047 Unwind@1015e047 undefined Unwind@1015e047(void) 8 1 +1015e04f Unwind@1015e04f undefined Unwind@1015e04f(void) 8 1 +1015e057 Unwind@1015e057 undefined Unwind@1015e057(void) 8 1 +1015e05f Unwind@1015e05f undefined Unwind@1015e05f(void) 8 1 +1015e090 Unwind@1015e090 undefined Unwind@1015e090(void) 8 1 +1015e0c0 Unwind@1015e0c0 undefined Unwind@1015e0c0(void) 8 1 +1015e0c8 Unwind@1015e0c8 undefined Unwind@1015e0c8(void) 8 1 +1015e0d0 Unwind@1015e0d0 undefined Unwind@1015e0d0(void) 8 1 +1015e100 Unwind@1015e100 undefined Unwind@1015e100(void) 8 1 +1015e108 Unwind@1015e108 undefined Unwind@1015e108(void) 8 1 +1015e110 Unwind@1015e110 undefined Unwind@1015e110(void) 8 1 +1015e118 Unwind@1015e118 undefined Unwind@1015e118(void) 8 1 +1015e120 Unwind@1015e120 undefined Unwind@1015e120(void) 14 0 +1015e12e Unwind@1015e12e undefined Unwind@1015e12e(void) 14 0 +1015e13c Unwind@1015e13c undefined Unwind@1015e13c(void) 8 1 +1015e160 Unwind@1015e160 undefined Unwind@1015e160(void) 8 1 +1015e190 Unwind@1015e190 undefined Unwind@1015e190(void) 8 1 +1015e198 Unwind@1015e198 undefined Unwind@1015e198(void) 8 1 +1015e1c0 Unwind@1015e1c0 undefined Unwind@1015e1c0(void) 8 1 +1015e1c8 Unwind@1015e1c8 undefined Unwind@1015e1c8(void) 8 1 +1015e1f0 Unwind@1015e1f0 undefined Unwind@1015e1f0(void) 8 1 +1015e1f8 Unwind@1015e1f8 undefined Unwind@1015e1f8(void) 8 1 +1015e200 Unwind@1015e200 undefined Unwind@1015e200(void) 8 1 +1015e208 Unwind@1015e208 undefined Unwind@1015e208(void) 9 0 +1015e230 Unwind@1015e230 undefined Unwind@1015e230(void) 8 1 +1015e238 Unwind@1015e238 undefined Unwind@1015e238(void) 11 1 +1015e243 Unwind@1015e243 undefined Unwind@1015e243(void) 8 1 +1015e270 Unwind@1015e270 undefined Unwind@1015e270(void) 8 1 +1015e278 Unwind@1015e278 undefined Unwind@1015e278(void) 8 1 +1015e280 Unwind@1015e280 undefined Unwind@1015e280(void) 8 1 +1015e288 Unwind@1015e288 undefined Unwind@1015e288(void) 9 0 +1015e2b0 Unwind@1015e2b0 undefined Unwind@1015e2b0(void) 8 1 +1015e2e0 Unwind@1015e2e0 undefined Unwind@1015e2e0(void) 8 1 +1015e2e8 Unwind@1015e2e8 undefined Unwind@1015e2e8(void) 8 1 +1015e2f0 Unwind@1015e2f0 undefined Unwind@1015e2f0(void) 8 1 +1015e2f8 Unwind@1015e2f8 undefined Unwind@1015e2f8(void) 9 0 +1015e320 Unwind@1015e320 undefined Unwind@1015e320(void) 8 1 +1015e328 Unwind@1015e328 undefined Unwind@1015e328(void) 8 1 +1015e330 Unwind@1015e330 undefined Unwind@1015e330(void) 8 1 +1015e360 Unwind@1015e360 undefined Unwind@1015e360(void) 8 1 +1015e368 Unwind@1015e368 undefined Unwind@1015e368(void) 8 1 +1015e370 Unwind@1015e370 undefined Unwind@1015e370(void) 8 1 +1015e378 Unwind@1015e378 undefined Unwind@1015e378(void) 9 0 +1015e3a0 Unwind@1015e3a0 undefined Unwind@1015e3a0(void) 8 1 +1015e3a8 Unwind@1015e3a8 undefined Unwind@1015e3a8(void) 8 1 +1015e3b0 Unwind@1015e3b0 undefined Unwind@1015e3b0(void) 8 1 +1015e3e0 Unwind@1015e3e0 undefined Unwind@1015e3e0(void) 8 1 +1015e3e8 Unwind@1015e3e8 undefined Unwind@1015e3e8(void) 8 1 +1015e3f0 Unwind@1015e3f0 undefined Unwind@1015e3f0(void) 8 1 +1015e3f8 Unwind@1015e3f8 undefined Unwind@1015e3f8(void) 9 0 +1015e420 Unwind@1015e420 undefined Unwind@1015e420(void) 8 1 +1015e428 Unwind@1015e428 undefined Unwind@1015e428(void) 8 1 +1015e430 Unwind@1015e430 undefined Unwind@1015e430(void) 8 1 +1015e438 Unwind@1015e438 undefined Unwind@1015e438(void) 9 0 +1015e460 Unwind@1015e460 undefined Unwind@1015e460(void) 8 1 +1015e468 Unwind@1015e468 undefined Unwind@1015e468(void) 8 1 +1015e470 Unwind@1015e470 undefined Unwind@1015e470(void) 8 1 +1015e4a0 Unwind@1015e4a0 undefined Unwind@1015e4a0(void) 14 0 +1015e4ae Unwind@1015e4ae undefined Unwind@1015e4ae(void) 14 0 +1015e4bc Unwind@1015e4bc undefined Unwind@1015e4bc(void) 14 0 +1015e4ca Unwind@1015e4ca undefined Unwind@1015e4ca(void) 14 0 +1015e4d8 Unwind@1015e4d8 undefined Unwind@1015e4d8(void) 14 0 +1015e510 Unwind@1015e510 undefined Unwind@1015e510(void) 14 0 +1015e51e Unwind@1015e51e undefined Unwind@1015e51e(void) 14 0 +1015e52c Unwind@1015e52c undefined Unwind@1015e52c(void) 14 0 +1015e53a Unwind@1015e53a undefined Unwind@1015e53a(void) 14 0 +1015e548 Unwind@1015e548 undefined Unwind@1015e548(void) 14 0 +1015e556 Unwind@1015e556 undefined Unwind@1015e556(void) 11 1 +1015e561 Unwind@1015e561 undefined Unwind@1015e561(void) 14 0 +1015e56f Unwind@1015e56f undefined Unwind@1015e56f(void) 14 0 +1015e57d Unwind@1015e57d undefined Unwind@1015e57d(void) 14 0 +1015e58b Unwind@1015e58b undefined Unwind@1015e58b(void) 14 0 +1015e599 Unwind@1015e599 undefined Unwind@1015e599(void) 14 0 +1015e5a7 Unwind@1015e5a7 undefined Unwind@1015e5a7(void) 14 0 +1015e5b5 Unwind@1015e5b5 undefined Unwind@1015e5b5(void) 14 0 +1015e5c3 Unwind@1015e5c3 undefined Unwind@1015e5c3(void) 14 0 +1015e5d1 Unwind@1015e5d1 undefined Unwind@1015e5d1(void) 14 0 +1015e5df Unwind@1015e5df undefined Unwind@1015e5df(void) 14 0 +1015e5ed Unwind@1015e5ed undefined Unwind@1015e5ed(void) 14 0 +1015e5fb Unwind@1015e5fb undefined Unwind@1015e5fb(void) 14 0 +1015e609 Unwind@1015e609 undefined Unwind@1015e609(void) 14 0 +1015e617 Unwind@1015e617 undefined Unwind@1015e617(void) 14 0 +1015e625 Unwind@1015e625 undefined Unwind@1015e625(void) 14 0 +1015e633 Unwind@1015e633 undefined Unwind@1015e633(void) 14 0 +1015e670 Unwind@1015e670 undefined Unwind@1015e670(void) 11 1 +1015e6b0 Unwind@1015e6b0 undefined Unwind@1015e6b0(void) 8 1 +1015e6b8 Unwind@1015e6b8 undefined Unwind@1015e6b8(void) 11 1 +1015e6c3 Unwind@1015e6c3 undefined Unwind@1015e6c3(void) 8 1 +1015e6cb Unwind@1015e6cb undefined Unwind@1015e6cb(void) 8 1 +1015e6f0 Unwind@1015e6f0 undefined Unwind@1015e6f0(void) 8 1 +1015e6f8 Unwind@1015e6f8 undefined Unwind@1015e6f8(void) 8 1 +1015e730 Unwind@1015e730 undefined Unwind@1015e730(void) 8 1 +1015e738 Unwind@1015e738 undefined Unwind@1015e738(void) 8 1 +1015e770 Unwind@1015e770 undefined Unwind@1015e770(void) 14 0 +1015e77e Unwind@1015e77e undefined Unwind@1015e77e(void) 14 0 +1015e78c Unwind@1015e78c undefined Unwind@1015e78c(void) 8 1 +1015e794 Unwind@1015e794 undefined Unwind@1015e794(void) 14 0 +1015e7d0 Unwind@1015e7d0 undefined Unwind@1015e7d0(void) 8 1 +1015e7d8 Unwind@1015e7d8 undefined Unwind@1015e7d8(void) 11 1 +1015e7e3 Unwind@1015e7e3 undefined Unwind@1015e7e3(void) 8 1 +1015e7eb Unwind@1015e7eb undefined Unwind@1015e7eb(void) 8 1 +1015e7f3 Unwind@1015e7f3 undefined Unwind@1015e7f3(void) 8 1 +1015e820 Unwind@1015e820 undefined Unwind@1015e820(void) 8 1 +1015e828 Unwind@1015e828 undefined Unwind@1015e828(void) 11 1 +1015e833 Unwind@1015e833 undefined Unwind@1015e833(void) 8 1 +1015e83b Unwind@1015e83b undefined Unwind@1015e83b(void) 8 1 +1015e843 Unwind@1015e843 undefined Unwind@1015e843(void) 8 1 +1015e870 Unwind@1015e870 undefined Unwind@1015e870(void) 8 1 +1015e878 Unwind@1015e878 undefined Unwind@1015e878(void) 8 1 +1015e880 Unwind@1015e880 undefined Unwind@1015e880(void) 8 1 +1015e888 Unwind@1015e888 undefined Unwind@1015e888(void) 9 0 +1015e8b0 Unwind@1015e8b0 undefined Unwind@1015e8b0(void) 8 1 +1015e8b8 Unwind@1015e8b8 undefined Unwind@1015e8b8(void) 8 1 +1015e8c0 Unwind@1015e8c0 undefined Unwind@1015e8c0(void) 8 1 +1015e8f0 Unwind@1015e8f0 undefined Unwind@1015e8f0(void) 8 1 +1015e8f8 Unwind@1015e8f8 undefined Unwind@1015e8f8(void) 8 1 +1015e900 Unwind@1015e900 undefined Unwind@1015e900(void) 11 1 +1015e90b Unwind@1015e90b undefined Unwind@1015e90b(void) 8 1 +1015e913 Unwind@1015e913 undefined Unwind@1015e913(void) 8 1 +1015e91b Unwind@1015e91b undefined Unwind@1015e91b(void) 8 1 +1015e923 Unwind@1015e923 undefined Unwind@1015e923(void) 8 1 +1015e960 Unwind@1015e960 undefined Unwind@1015e960(void) 8 1 +1015e990 Unwind@1015e990 undefined Unwind@1015e990(void) 8 1 +1015e9c0 Unwind@1015e9c0 undefined Unwind@1015e9c0(void) 8 1 +1015e9f0 Unwind@1015e9f0 undefined Unwind@1015e9f0(void) 8 1 +1015ea20 Unwind@1015ea20 undefined Unwind@1015ea20(void) 9 0 +1015ea50 Unwind@1015ea50 undefined Unwind@1015ea50(void) 8 1 +1015ea58 Unwind@1015ea58 undefined Unwind@1015ea58(void) 11 1 +1015ea63 Unwind@1015ea63 undefined Unwind@1015ea63(void) 8 1 +1015ea90 Unwind@1015ea90 undefined Unwind@1015ea90(void) 11 1 +1015ea9b Unwind@1015ea9b undefined Unwind@1015ea9b(void) 8 1 +1015eac0 Unwind@1015eac0 undefined Unwind@1015eac0(void) 8 1 +1015eac8 Unwind@1015eac8 undefined Unwind@1015eac8(void) 11 1 +1015eaf0 Unwind@1015eaf0 undefined Unwind@1015eaf0(void) 8 1 +1015eaf8 Unwind@1015eaf8 undefined Unwind@1015eaf8(void) 11 1 +1015eb03 Unwind@1015eb03 undefined Unwind@1015eb03(void) 8 1 +1015eb0b Unwind@1015eb0b undefined Unwind@1015eb0b(void) 8 1 +1015eb13 Unwind@1015eb13 undefined Unwind@1015eb13(void) 8 1 +1015eb40 Unwind@1015eb40 undefined Unwind@1015eb40(void) 8 1 +1015eb48 Unwind@1015eb48 undefined Unwind@1015eb48(void) 11 1 +1015eb53 Unwind@1015eb53 undefined Unwind@1015eb53(void) 8 1 +1015eb5b Unwind@1015eb5b undefined Unwind@1015eb5b(void) 8 1 +1015eb80 Unwind@1015eb80 undefined Unwind@1015eb80(void) 11 1 +1015ebb0 Unwind@1015ebb0 undefined Unwind@1015ebb0(void) 11 1 +1015ebbb Unwind@1015ebbb undefined Unwind@1015ebbb(void) 8 1 +1015ebc3 Unwind@1015ebc3 undefined Unwind@1015ebc3(void) 11 1 +1015ebce Unwind@1015ebce undefined Unwind@1015ebce(void) 8 1 +1015ec00 Unwind@1015ec00 undefined Unwind@1015ec00(void) 11 1 +1015ec0b Unwind@1015ec0b undefined Unwind@1015ec0b(void) 11 1 +1015ec16 Unwind@1015ec16 undefined Unwind@1015ec16(void) 8 1 +1015ec40 Unwind@1015ec40 undefined Unwind@1015ec40(void) 11 1 +1015ec4b Unwind@1015ec4b undefined Unwind@1015ec4b(void) 8 1 +1015ec53 Unwind@1015ec53 undefined Unwind@1015ec53(void) 8 1 +1015ec80 Unwind@1015ec80 undefined Unwind@1015ec80(void) 11 1 +1015ec8b Unwind@1015ec8b undefined Unwind@1015ec8b(void) 8 1 +1015ec93 Unwind@1015ec93 undefined Unwind@1015ec93(void) 8 1 +1015ecc0 Unwind@1015ecc0 undefined Unwind@1015ecc0(void) 8 1 +1015ecf0 Unwind@1015ecf0 undefined Unwind@1015ecf0(void) 8 1 +1015ecf8 Unwind@1015ecf8 undefined Unwind@1015ecf8(void) 8 1 +1015ed00 Unwind@1015ed00 undefined Unwind@1015ed00(void) 11 1 +1015ed0b Unwind@1015ed0b undefined Unwind@1015ed0b(void) 8 1 +1015ed13 Unwind@1015ed13 undefined Unwind@1015ed13(void) 11 1 +1015ed40 Unwind@1015ed40 undefined Unwind@1015ed40(void) 17 1 +1015ed51 Unwind@1015ed51 undefined Unwind@1015ed51(void) 8 1 +1015ed59 Unwind@1015ed59 undefined Unwind@1015ed59(void) 11 1 +1015ed64 Unwind@1015ed64 undefined Unwind@1015ed64(void) 8 1 +1015ed90 Unwind@1015ed90 undefined Unwind@1015ed90(void) 17 1 +1015eda1 Unwind@1015eda1 undefined Unwind@1015eda1(void) 11 1 +1015edac Unwind@1015edac undefined Unwind@1015edac(void) 8 1 +1015edd0 Unwind@1015edd0 undefined Unwind@1015edd0(void) 11 1 +1015eddb Unwind@1015eddb undefined Unwind@1015eddb(void) 8 1 +1015ede3 Unwind@1015ede3 undefined Unwind@1015ede3(void) 8 1 +1015ee10 Unwind@1015ee10 undefined Unwind@1015ee10(void) 8 1 +1015ee18 Unwind@1015ee18 undefined Unwind@1015ee18(void) 11 1 +1015ee23 Unwind@1015ee23 undefined Unwind@1015ee23(void) 8 1 +1015ee50 Unwind@1015ee50 undefined Unwind@1015ee50(void) 35 0 +1015ee73 Unwind@1015ee73 undefined Unwind@1015ee73(void) 12 0 +1015ee7f Unwind@1015ee7f undefined Unwind@1015ee7f(void) 12 0 +1015ee8b Unwind@1015ee8b undefined Unwind@1015ee8b(void) 11 1 +1015ee96 Unwind@1015ee96 undefined Unwind@1015ee96(void) 11 1 +1015eea1 Unwind@1015eea1 undefined Unwind@1015eea1(void) 34 1 +1015eec3 Unwind@1015eec3 undefined Unwind@1015eec3(void) 15 0 +1015eed2 Unwind@1015eed2 undefined Unwind@1015eed2(void) 14 1 +1015eee0 Unwind@1015eee0 undefined Unwind@1015eee0(void) 12 0 +1015ef20 Unwind@1015ef20 undefined Unwind@1015ef20(void) 8 1 +1015ef50 Unwind@1015ef50 undefined Unwind@1015ef50(void) 8 1 +1015ef58 Unwind@1015ef58 undefined Unwind@1015ef58(void) 8 1 +1015ef80 Unwind@1015ef80 undefined Unwind@1015ef80(void) 14 0 +1015ef8e Unwind@1015ef8e undefined Unwind@1015ef8e(void) 14 0 +1015ef9c Unwind@1015ef9c undefined Unwind@1015ef9c(void) 8 1 +1015efa4 Unwind@1015efa4 undefined Unwind@1015efa4(void) 14 0 +1015efb2 Unwind@1015efb2 undefined Unwind@1015efb2(void) 14 0 +1015eff0 Unwind@1015eff0 undefined Unwind@1015eff0(void) 8 1 +1015eff8 Unwind@1015eff8 undefined Unwind@1015eff8(void) 14 0 +1015f006 Unwind@1015f006 undefined Unwind@1015f006(void) 8 1 +1015f00e Unwind@1015f00e undefined Unwind@1015f00e(void) 8 1 +1015f016 Unwind@1015f016 undefined Unwind@1015f016(void) 8 1 +1015f01e Unwind@1015f01e undefined Unwind@1015f01e(void) 8 1 +1015f026 Unwind@1015f026 undefined Unwind@1015f026(void) 8 1 +1015f02e Unwind@1015f02e undefined Unwind@1015f02e(void) 8 1 +1015f060 Unwind@1015f060 undefined Unwind@1015f060(void) 8 1 +1015f068 Unwind@1015f068 undefined Unwind@1015f068(void) 8 1 +1015f070 Unwind@1015f070 undefined Unwind@1015f070(void) 8 1 +1015f078 Unwind@1015f078 undefined Unwind@1015f078(void) 8 1 +1015f080 Unwind@1015f080 undefined Unwind@1015f080(void) 8 1 +1015f088 Unwind@1015f088 undefined Unwind@1015f088(void) 8 1 +1015f090 Unwind@1015f090 undefined Unwind@1015f090(void) 8 1 +1015f098 Unwind@1015f098 undefined Unwind@1015f098(void) 8 1 +1015f0a0 Unwind@1015f0a0 undefined Unwind@1015f0a0(void) 8 1 +1015f0a8 Unwind@1015f0a8 undefined Unwind@1015f0a8(void) 8 1 +1015f0b0 Unwind@1015f0b0 undefined Unwind@1015f0b0(void) 8 1 +1015f0b8 Unwind@1015f0b8 undefined Unwind@1015f0b8(void) 8 1 +1015f0f0 Unwind@1015f0f0 undefined Unwind@1015f0f0(void) 11 1 +1015f0fb Unwind@1015f0fb undefined Unwind@1015f0fb(void) 11 1 +1015f106 Unwind@1015f106 undefined Unwind@1015f106(void) 11 1 +1015f111 Unwind@1015f111 undefined Unwind@1015f111(void) 11 1 +1015f11c Unwind@1015f11c undefined Unwind@1015f11c(void) 11 1 +1015f127 Unwind@1015f127 undefined Unwind@1015f127(void) 11 1 +1015f160 Unwind@1015f160 undefined Unwind@1015f160(void) 14 0 +1015f16e Unwind@1015f16e undefined Unwind@1015f16e(void) 14 0 +1015f17c Unwind@1015f17c undefined Unwind@1015f17c(void) 11 1 +1015f187 Unwind@1015f187 undefined Unwind@1015f187(void) 11 1 +1015f192 Unwind@1015f192 undefined Unwind@1015f192(void) 11 1 +1015f19d Unwind@1015f19d undefined Unwind@1015f19d(void) 11 1 +1015f1a8 Unwind@1015f1a8 undefined Unwind@1015f1a8(void) 11 1 +1015f1b3 Unwind@1015f1b3 undefined Unwind@1015f1b3(void) 11 1 +1015f1be Unwind@1015f1be undefined Unwind@1015f1be(void) 34 1 +1015f1e0 Unwind@1015f1e0 undefined Unwind@1015f1e0(void) 34 1 +1015f250 Unwind@1015f250 undefined Unwind@1015f250(void) 8 1 +1015f258 Unwind@1015f258 undefined Unwind@1015f258(void) 11 1 +1015f263 Unwind@1015f263 undefined Unwind@1015f263(void) 8 1 +1015f26b Unwind@1015f26b undefined Unwind@1015f26b(void) 25 1 +1015f2a0 Unwind@1015f2a0 undefined Unwind@1015f2a0(void) 11 1 +1015f2ab Unwind@1015f2ab undefined Unwind@1015f2ab(void) 8 1 +1015f2b3 Unwind@1015f2b3 undefined Unwind@1015f2b3(void) 25 1 +1015f2f0 Unwind@1015f2f0 undefined Unwind@1015f2f0(void) 8 1 +1015f320 Unwind@1015f320 undefined Unwind@1015f320(void) 8 1 +1015f328 Unwind@1015f328 undefined Unwind@1015f328(void) 11 1 +1015f350 Unwind@1015f350 undefined Unwind@1015f350(void) 8 1 +1015f358 Unwind@1015f358 undefined Unwind@1015f358(void) 11 1 +1015f363 Unwind@1015f363 undefined Unwind@1015f363(void) 8 1 +1015f36b Unwind@1015f36b undefined Unwind@1015f36b(void) 8 1 +1015f373 Unwind@1015f373 undefined Unwind@1015f373(void) 8 1 +1015f3a0 Unwind@1015f3a0 undefined Unwind@1015f3a0(void) 8 1 +1015f3a8 Unwind@1015f3a8 undefined Unwind@1015f3a8(void) 8 1 +1015f3d0 Unwind@1015f3d0 undefined Unwind@1015f3d0(void) 8 1 +1015f3d8 Unwind@1015f3d8 undefined Unwind@1015f3d8(void) 11 1 +1015f3e3 Unwind@1015f3e3 undefined Unwind@1015f3e3(void) 8 1 +1015f3eb Unwind@1015f3eb undefined Unwind@1015f3eb(void) 8 1 +1015f410 Unwind@1015f410 undefined Unwind@1015f410(void) 8 1 +1015f418 Unwind@1015f418 undefined Unwind@1015f418(void) 11 1 +1015f440 Unwind@1015f440 undefined Unwind@1015f440(void) 8 1 +1015f470 Unwind@1015f470 undefined Unwind@1015f470(void) 8 1 +1015f478 Unwind@1015f478 undefined Unwind@1015f478(void) 11 1 +1015f483 Unwind@1015f483 undefined Unwind@1015f483(void) 11 1 +1015f48e Unwind@1015f48e undefined Unwind@1015f48e(void) 8 1 +1015f4c0 Unwind@1015f4c0 undefined Unwind@1015f4c0(void) 8 1 +1015f4c8 Unwind@1015f4c8 undefined Unwind@1015f4c8(void) 11 1 +1015f4d3 Unwind@1015f4d3 undefined Unwind@1015f4d3(void) 8 1 +1015f4db Unwind@1015f4db undefined Unwind@1015f4db(void) 8 1 +1015f500 Unwind@1015f500 undefined Unwind@1015f500(void) 8 1 +1015f508 Unwind@1015f508 undefined Unwind@1015f508(void) 11 1 +1015f513 Unwind@1015f513 undefined Unwind@1015f513(void) 8 1 +1015f51b Unwind@1015f51b undefined Unwind@1015f51b(void) 8 1 +1015f540 Unwind@1015f540 undefined Unwind@1015f540(void) 8 1 +1015f570 Unwind@1015f570 undefined Unwind@1015f570(void) 9 0 +1015f5a0 Unwind@1015f5a0 undefined Unwind@1015f5a0(void) 17 1 +1015f5b1 Unwind@1015f5b1 undefined Unwind@1015f5b1(void) 11 1 +1015f5bc Unwind@1015f5bc undefined Unwind@1015f5bc(void) 8 1 +1015f5e0 Unwind@1015f5e0 undefined Unwind@1015f5e0(void) 8 1 +1015f5e8 Unwind@1015f5e8 undefined Unwind@1015f5e8(void) 8 1 +1015f5f0 Unwind@1015f5f0 undefined Unwind@1015f5f0(void) 11 1 +1015f620 Unwind@1015f620 undefined Unwind@1015f620(void) 17 1 +1015f650 Unwind@1015f650 undefined Unwind@1015f650(void) 17 1 +1015f661 Unwind@1015f661 undefined Unwind@1015f661(void) 8 1 +1015f669 Unwind@1015f669 undefined Unwind@1015f669(void) 11 1 +1015f674 Unwind@1015f674 undefined Unwind@1015f674(void) 8 1 +1015f6a0 Unwind@1015f6a0 undefined Unwind@1015f6a0(void) 11 1 +1015f6ab Unwind@1015f6ab undefined Unwind@1015f6ab(void) 8 1 +1015f6b3 Unwind@1015f6b3 undefined Unwind@1015f6b3(void) 8 1 +1015f6e0 Unwind@1015f6e0 undefined Unwind@1015f6e0(void) 8 1 +1015f6e8 Unwind@1015f6e8 undefined Unwind@1015f6e8(void) 8 1 +1015f6f0 Unwind@1015f6f0 undefined Unwind@1015f6f0(void) 11 1 +1015f720 Unwind@1015f720 undefined Unwind@1015f720(void) 8 1 +1015f728 Unwind@1015f728 undefined Unwind@1015f728(void) 8 1 +1015f730 Unwind@1015f730 undefined Unwind@1015f730(void) 11 1 +1015f760 Unwind@1015f760 undefined Unwind@1015f760(void) 8 1 +1015f768 Unwind@1015f768 undefined Unwind@1015f768(void) 8 1 +1015f770 Unwind@1015f770 undefined Unwind@1015f770(void) 11 1 +1015f7a0 Unwind@1015f7a0 undefined Unwind@1015f7a0(void) 8 1 +1015f7a8 Unwind@1015f7a8 undefined Unwind@1015f7a8(void) 8 1 +1015f7e0 Unwind@1015f7e0 undefined Unwind@1015f7e0(void) 8 1 +1015f7e8 Unwind@1015f7e8 undefined Unwind@1015f7e8(void) 8 1 +1015f7f0 Unwind@1015f7f0 undefined Unwind@1015f7f0(void) 8 1 +1015f7f8 Unwind@1015f7f8 undefined Unwind@1015f7f8(void) 14 0 +1015f806 Unwind@1015f806 undefined Unwind@1015f806(void) 14 0 +1015f814 Unwind@1015f814 undefined Unwind@1015f814(void) 14 0 +1015f822 Unwind@1015f822 undefined Unwind@1015f822(void) 14 0 +1015f850 Unwind@1015f850 undefined Unwind@1015f850(void) 8 1 +1015f880 Unwind@1015f880 undefined Unwind@1015f880(void) 8 1 +1015f888 Unwind@1015f888 undefined Unwind@1015f888(void) 8 1 +1015f890 Unwind@1015f890 undefined Unwind@1015f890(void) 11 1 +1015f89b Unwind@1015f89b undefined Unwind@1015f89b(void) 8 1 +1015f8a3 Unwind@1015f8a3 undefined Unwind@1015f8a3(void) 8 1 +1015f8d0 Unwind@1015f8d0 undefined Unwind@1015f8d0(void) 8 1 +1015f8d8 Unwind@1015f8d8 undefined Unwind@1015f8d8(void) 8 1 +1015f8e0 Unwind@1015f8e0 undefined Unwind@1015f8e0(void) 11 1 +1015f8eb Unwind@1015f8eb undefined Unwind@1015f8eb(void) 8 1 +1015f8f3 Unwind@1015f8f3 undefined Unwind@1015f8f3(void) 8 1 +1015f920 Unwind@1015f920 undefined Unwind@1015f920(void) 8 1 +1015f928 Unwind@1015f928 undefined Unwind@1015f928(void) 11 1 +1015f950 Unwind@1015f950 undefined Unwind@1015f950(void) 8 1 +1015f958 Unwind@1015f958 undefined Unwind@1015f958(void) 11 1 +1015f963 Unwind@1015f963 undefined Unwind@1015f963(void) 8 1 +1015f96b Unwind@1015f96b undefined Unwind@1015f96b(void) 8 1 +1015f973 Unwind@1015f973 undefined Unwind@1015f973(void) 8 1 +1015f9a0 Unwind@1015f9a0 undefined Unwind@1015f9a0(void) 8 1 +1015f9a8 Unwind@1015f9a8 undefined Unwind@1015f9a8(void) 11 1 +1015f9d0 Unwind@1015f9d0 undefined Unwind@1015f9d0(void) 9 0 +1015fa00 Unwind@1015fa00 undefined Unwind@1015fa00(void) 8 1 +1015fa08 Unwind@1015fa08 undefined Unwind@1015fa08(void) 8 1 +1015fa10 Unwind@1015fa10 undefined Unwind@1015fa10(void) 11 1 +1015fa40 Unwind@1015fa40 undefined Unwind@1015fa40(void) 8 1 +1015fa48 Unwind@1015fa48 undefined Unwind@1015fa48(void) 8 1 +1015fa50 Unwind@1015fa50 undefined Unwind@1015fa50(void) 11 1 +1015fa5b Unwind@1015fa5b undefined Unwind@1015fa5b(void) 8 1 +1015fa80 Unwind@1015fa80 undefined Unwind@1015fa80(void) 8 1 +1015fa88 Unwind@1015fa88 undefined Unwind@1015fa88(void) 11 1 +1015fa93 Unwind@1015fa93 undefined Unwind@1015fa93(void) 8 1 +1015fa9b Unwind@1015fa9b undefined Unwind@1015fa9b(void) 8 1 +1015fac0 Unwind@1015fac0 undefined Unwind@1015fac0(void) 8 1 +1015fac8 Unwind@1015fac8 undefined Unwind@1015fac8(void) 11 1 +1015faf0 Unwind@1015faf0 undefined Unwind@1015faf0(void) 8 1 +1015fb20 Unwind@1015fb20 undefined Unwind@1015fb20(void) 8 1 +1015fb28 Unwind@1015fb28 undefined Unwind@1015fb28(void) 11 1 +1015fb33 Unwind@1015fb33 undefined Unwind@1015fb33(void) 11 1 +1015fb3e Unwind@1015fb3e undefined Unwind@1015fb3e(void) 8 1 +1015fb70 Unwind@1015fb70 undefined Unwind@1015fb70(void) 8 1 +1015fb78 Unwind@1015fb78 undefined Unwind@1015fb78(void) 11 1 +1015fb83 Unwind@1015fb83 undefined Unwind@1015fb83(void) 8 1 +1015fb8b Unwind@1015fb8b undefined Unwind@1015fb8b(void) 8 1 +1015fbb0 Unwind@1015fbb0 undefined Unwind@1015fbb0(void) 8 1 +1015fbb8 Unwind@1015fbb8 undefined Unwind@1015fbb8(void) 11 1 +1015fbc3 Unwind@1015fbc3 undefined Unwind@1015fbc3(void) 8 1 +1015fbcb Unwind@1015fbcb undefined Unwind@1015fbcb(void) 8 1 +1015fbf0 Unwind@1015fbf0 undefined Unwind@1015fbf0(void) 8 1 +1015fc20 Unwind@1015fc20 undefined Unwind@1015fc20(void) 17 1 +1015fc31 Unwind@1015fc31 undefined Unwind@1015fc31(void) 8 1 +1015fc39 Unwind@1015fc39 undefined Unwind@1015fc39(void) 11 1 +1015fc44 Unwind@1015fc44 undefined Unwind@1015fc44(void) 8 1 +1015fc70 Unwind@1015fc70 undefined Unwind@1015fc70(void) 17 1 +1015fcc0 Unwind@1015fcc0 undefined Unwind@1015fcc0(void) 11 1 +1015fccb Unwind@1015fccb undefined Unwind@1015fccb(void) 8 1 +1015fcd3 Unwind@1015fcd3 undefined Unwind@1015fcd3(void) 8 1 +1015fd00 Unwind@1015fd00 undefined Unwind@1015fd00(void) 8 1 +1015fd08 Unwind@1015fd08 undefined Unwind@1015fd08(void) 8 1 +1015fd10 Unwind@1015fd10 undefined Unwind@1015fd10(void) 11 1 +1015fd1b Unwind@1015fd1b undefined Unwind@1015fd1b(void) 8 1 +1015fd40 Unwind@1015fd40 undefined Unwind@1015fd40(void) 8 1 +1015fd48 Unwind@1015fd48 undefined Unwind@1015fd48(void) 8 1 +1015fd50 Unwind@1015fd50 undefined Unwind@1015fd50(void) 11 1 +1015fd5b Unwind@1015fd5b undefined Unwind@1015fd5b(void) 8 1 +1015fd80 Unwind@1015fd80 undefined Unwind@1015fd80(void) 8 1 +1015fd88 Unwind@1015fd88 undefined Unwind@1015fd88(void) 8 1 +1015fd90 Unwind@1015fd90 undefined Unwind@1015fd90(void) 11 1 +1015fd9b Unwind@1015fd9b undefined Unwind@1015fd9b(void) 8 1 +1015fdc0 Unwind@1015fdc0 undefined Unwind@1015fdc0(void) 8 1 +1015fdc8 Unwind@1015fdc8 undefined Unwind@1015fdc8(void) 8 1 +1015fdf0 Unwind@1015fdf0 undefined Unwind@1015fdf0(void) 8 1 +1015fdf8 Unwind@1015fdf8 undefined Unwind@1015fdf8(void) 11 1 +1015fe03 Unwind@1015fe03 undefined Unwind@1015fe03(void) 8 1 +1015fe0b Unwind@1015fe0b undefined Unwind@1015fe0b(void) 8 1 +1015fe13 Unwind@1015fe13 undefined Unwind@1015fe13(void) 11 1 +1015fe1e Unwind@1015fe1e undefined Unwind@1015fe1e(void) 11 1 +1015fe29 Unwind@1015fe29 undefined Unwind@1015fe29(void) 11 1 +1015fe34 Unwind@1015fe34 undefined Unwind@1015fe34(void) 11 1 +1015fe3f Unwind@1015fe3f undefined Unwind@1015fe3f(void) 8 1 +1015fe47 Unwind@1015fe47 undefined Unwind@1015fe47(void) 8 1 +1015fe4f Unwind@1015fe4f undefined Unwind@1015fe4f(void) 8 1 +1015fe57 Unwind@1015fe57 undefined Unwind@1015fe57(void) 11 1 +1015fe62 Unwind@1015fe62 undefined Unwind@1015fe62(void) 11 1 +1015fe6d Unwind@1015fe6d undefined Unwind@1015fe6d(void) 11 1 +1015fe78 Unwind@1015fe78 undefined Unwind@1015fe78(void) 11 1 +1015fe83 Unwind@1015fe83 undefined Unwind@1015fe83(void) 8 1 +1015feb0 Unwind@1015feb0 undefined Unwind@1015feb0(void) 8 1 +1015feb8 Unwind@1015feb8 undefined Unwind@1015feb8(void) 8 1 +1015fec0 Unwind@1015fec0 undefined Unwind@1015fec0(void) 8 1 +1015fec8 Unwind@1015fec8 undefined Unwind@1015fec8(void) 14 0 +1015fed6 Unwind@1015fed6 undefined Unwind@1015fed6(void) 14 0 +1015fee4 Unwind@1015fee4 undefined Unwind@1015fee4(void) 8 1 +1015feec Unwind@1015feec undefined Unwind@1015feec(void) 8 1 +1015fef4 Unwind@1015fef4 undefined Unwind@1015fef4(void) 8 1 +1015fefc Unwind@1015fefc undefined Unwind@1015fefc(void) 8 1 +1015ff04 Unwind@1015ff04 undefined Unwind@1015ff04(void) 8 1 +1015ff0c Unwind@1015ff0c undefined Unwind@1015ff0c(void) 8 1 +1015ff30 Unwind@1015ff30 undefined Unwind@1015ff30(void) 8 1 +1015ff38 Unwind@1015ff38 undefined Unwind@1015ff38(void) 8 1 +1015ff40 Unwind@1015ff40 undefined Unwind@1015ff40(void) 11 1 +1015ff4b Unwind@1015ff4b undefined Unwind@1015ff4b(void) 8 1 +1015ff53 Unwind@1015ff53 undefined Unwind@1015ff53(void) 34 1 +1015ff75 Unwind@1015ff75 undefined Unwind@1015ff75(void) 34 1 +1015ff97 Unwind@1015ff97 undefined Unwind@1015ff97(void) 31 1 +1015ffb6 Unwind@1015ffb6 undefined Unwind@1015ffb6(void) 34 1 +1015ffd8 Unwind@1015ffd8 undefined Unwind@1015ffd8(void) 11 1 +1015ffe3 Unwind@1015ffe3 undefined Unwind@1015ffe3(void) 11 1 +1015ffee Unwind@1015ffee undefined Unwind@1015ffee(void) 8 1 +1015fff6 Unwind@1015fff6 undefined Unwind@1015fff6(void) 11 1 +10160001 Unwind@10160001 undefined Unwind@10160001(void) 8 1 +10160040 Unwind@10160040 undefined Unwind@10160040(void) 8 1 +10160070 Unwind@10160070 undefined Unwind@10160070(void) 8 1 +101600a0 Unwind@101600a0 undefined Unwind@101600a0(void) 8 1 +101600a8 Unwind@101600a8 undefined Unwind@101600a8(void) 8 1 +101600b0 Unwind@101600b0 undefined Unwind@101600b0(void) 8 1 +101600e0 Unwind@101600e0 undefined Unwind@101600e0(void) 8 1 +101600e8 Unwind@101600e8 undefined Unwind@101600e8(void) 8 1 +101600f0 Unwind@101600f0 undefined Unwind@101600f0(void) 9 0 +10160120 Unwind@10160120 undefined Unwind@10160120(void) 8 1 +10160150 Unwind@10160150 undefined Unwind@10160150(void) 8 1 +10160158 Unwind@10160158 undefined Unwind@10160158(void) 11 1 +10160180 Unwind@10160180 undefined Unwind@10160180(void) 8 1 +101601b0 Unwind@101601b0 undefined Unwind@101601b0(void) 8 1 +101601b8 Unwind@101601b8 undefined Unwind@101601b8(void) 8 1 +101601c0 Unwind@101601c0 undefined Unwind@101601c0(void) 8 1 +101601c8 Unwind@101601c8 undefined Unwind@101601c8(void) 8 1 +101601d0 Unwind@101601d0 undefined Unwind@101601d0(void) 11 1 +101601db Unwind@101601db undefined Unwind@101601db(void) 8 1 +101601e3 Unwind@101601e3 undefined Unwind@101601e3(void) 8 1 +101601eb Unwind@101601eb undefined Unwind@101601eb(void) 8 1 +101601f3 Unwind@101601f3 undefined Unwind@101601f3(void) 8 1 +101601fb Unwind@101601fb undefined Unwind@101601fb(void) 8 1 +10160203 Unwind@10160203 undefined Unwind@10160203(void) 8 1 +1016020b Unwind@1016020b undefined Unwind@1016020b(void) 8 1 +10160213 Unwind@10160213 undefined Unwind@10160213(void) 8 1 +1016021b Unwind@1016021b undefined Unwind@1016021b(void) 8 1 +10160240 Unwind@10160240 undefined Unwind@10160240(void) 8 1 +10160248 Unwind@10160248 undefined Unwind@10160248(void) 11 1 +10160270 Unwind@10160270 undefined Unwind@10160270(void) 8 1 +10160278 Unwind@10160278 undefined Unwind@10160278(void) 8 1 +10160280 Unwind@10160280 undefined Unwind@10160280(void) 11 1 +1016028b Unwind@1016028b undefined Unwind@1016028b(void) 8 1 +101602b0 Unwind@101602b0 undefined Unwind@101602b0(void) 8 1 +101602b8 Unwind@101602b8 undefined Unwind@101602b8(void) 8 1 +101602c0 Unwind@101602c0 undefined Unwind@101602c0(void) 11 1 +101602cb Unwind@101602cb undefined Unwind@101602cb(void) 8 1 +101602d3 Unwind@101602d3 undefined Unwind@101602d3(void) 25 1 +10160310 Unwind@10160310 undefined Unwind@10160310(void) 8 1 +10160318 Unwind@10160318 undefined Unwind@10160318(void) 11 1 +10160323 Unwind@10160323 undefined Unwind@10160323(void) 8 1 +1016032b Unwind@1016032b undefined Unwind@1016032b(void) 8 1 +10160333 Unwind@10160333 undefined Unwind@10160333(void) 8 1 +10160360 Unwind@10160360 undefined Unwind@10160360(void) 8 1 +10160368 Unwind@10160368 undefined Unwind@10160368(void) 11 1 +10160390 Unwind@10160390 undefined Unwind@10160390(void) 8 1 +10160398 Unwind@10160398 undefined Unwind@10160398(void) 11 1 +101603a3 Unwind@101603a3 undefined Unwind@101603a3(void) 8 1 +101603ab Unwind@101603ab undefined Unwind@101603ab(void) 8 1 +101603d0 Unwind@101603d0 undefined Unwind@101603d0(void) 8 1 +101603d8 Unwind@101603d8 undefined Unwind@101603d8(void) 11 1 +101603e3 Unwind@101603e3 undefined Unwind@101603e3(void) 8 1 +101603eb Unwind@101603eb undefined Unwind@101603eb(void) 8 1 +101603f3 Unwind@101603f3 undefined Unwind@101603f3(void) 8 1 +10160420 Unwind@10160420 undefined Unwind@10160420(void) 9 0 +10160450 Unwind@10160450 undefined Unwind@10160450(void) 8 1 +10160480 Unwind@10160480 undefined Unwind@10160480(void) 8 1 +10160488 Unwind@10160488 undefined Unwind@10160488(void) 11 1 +10160493 Unwind@10160493 undefined Unwind@10160493(void) 11 1 +1016049e Unwind@1016049e undefined Unwind@1016049e(void) 8 1 +101604a6 Unwind@101604a6 undefined Unwind@101604a6(void) 8 1 +101604ae Unwind@101604ae undefined Unwind@101604ae(void) 8 1 +101604e0 Unwind@101604e0 undefined Unwind@101604e0(void) 8 1 +101604e8 Unwind@101604e8 undefined Unwind@101604e8(void) 11 1 +10160510 Unwind@10160510 undefined Unwind@10160510(void) 8 1 +10160540 Unwind@10160540 undefined Unwind@10160540(void) 8 1 +10160548 Unwind@10160548 undefined Unwind@10160548(void) 11 1 +10160553 Unwind@10160553 undefined Unwind@10160553(void) 11 1 +1016055e Unwind@1016055e undefined Unwind@1016055e(void) 8 1 +10160590 Unwind@10160590 undefined Unwind@10160590(void) 8 1 +10160598 Unwind@10160598 undefined Unwind@10160598(void) 11 1 +101605a3 Unwind@101605a3 undefined Unwind@101605a3(void) 8 1 +101605ab Unwind@101605ab undefined Unwind@101605ab(void) 8 1 +101605d0 Unwind@101605d0 undefined Unwind@101605d0(void) 8 1 +101605d8 Unwind@101605d8 undefined Unwind@101605d8(void) 11 1 +101605e3 Unwind@101605e3 undefined Unwind@101605e3(void) 8 1 +101605eb Unwind@101605eb undefined Unwind@101605eb(void) 8 1 +10160610 Unwind@10160610 undefined Unwind@10160610(void) 8 1 +10160618 Unwind@10160618 undefined Unwind@10160618(void) 8 1 +10160620 Unwind@10160620 undefined Unwind@10160620(void) 8 1 +10160650 Unwind@10160650 undefined Unwind@10160650(void) 11 1 +1016065b Unwind@1016065b undefined Unwind@1016065b(void) 8 1 +10160663 Unwind@10160663 undefined Unwind@10160663(void) 8 1 +10160690 Unwind@10160690 undefined Unwind@10160690(void) 17 1 +101606a1 Unwind@101606a1 undefined Unwind@101606a1(void) 8 1 +101606a9 Unwind@101606a9 undefined Unwind@101606a9(void) 8 1 +101606b1 Unwind@101606b1 undefined Unwind@101606b1(void) 11 1 +101606bc Unwind@101606bc undefined Unwind@101606bc(void) 8 1 +101606e0 Unwind@101606e0 undefined Unwind@101606e0(void) 17 1 +101606f1 Unwind@101606f1 undefined Unwind@101606f1(void) 8 1 +101606f9 Unwind@101606f9 undefined Unwind@101606f9(void) 8 1 +10160701 Unwind@10160701 undefined Unwind@10160701(void) 11 1 +1016070c Unwind@1016070c undefined Unwind@1016070c(void) 8 1 +10160730 Unwind@10160730 undefined Unwind@10160730(void) 17 1 +10160741 Unwind@10160741 undefined Unwind@10160741(void) 8 1 +10160749 Unwind@10160749 undefined Unwind@10160749(void) 8 1 +10160751 Unwind@10160751 undefined Unwind@10160751(void) 11 1 +1016075c Unwind@1016075c undefined Unwind@1016075c(void) 8 1 +10160780 Unwind@10160780 undefined Unwind@10160780(void) 8 1 +10160788 Unwind@10160788 undefined Unwind@10160788(void) 8 1 +101607b0 Unwind@101607b0 undefined Unwind@101607b0(void) 8 1 +101607b8 Unwind@101607b8 undefined Unwind@101607b8(void) 8 1 +101607e0 Unwind@101607e0 undefined Unwind@101607e0(void) 8 1 +101607e8 Unwind@101607e8 undefined Unwind@101607e8(void) 8 1 +10160810 Unwind@10160810 undefined Unwind@10160810(void) 8 1 +10160818 Unwind@10160818 undefined Unwind@10160818(void) 11 1 +10160823 Unwind@10160823 undefined Unwind@10160823(void) 11 1 +1016082e Unwind@1016082e undefined Unwind@1016082e(void) 11 1 +10160839 Unwind@10160839 undefined Unwind@10160839(void) 8 1 +10160841 Unwind@10160841 undefined Unwind@10160841(void) 8 1 +10160849 Unwind@10160849 undefined Unwind@10160849(void) 8 1 +10160851 Unwind@10160851 undefined Unwind@10160851(void) 8 1 +10160880 Unwind@10160880 undefined Unwind@10160880(void) 8 1 +10160888 Unwind@10160888 undefined Unwind@10160888(void) 8 1 +10160890 Unwind@10160890 undefined Unwind@10160890(void) 8 1 +101608c0 Unwind@101608c0 undefined Unwind@101608c0(void) 8 1 +101608c8 Unwind@101608c8 undefined Unwind@101608c8(void) 8 1 +101608f0 Unwind@101608f0 undefined Unwind@101608f0(void) 8 1 +101608f8 Unwind@101608f8 undefined Unwind@101608f8(void) 8 1 +10160900 Unwind@10160900 undefined Unwind@10160900(void) 8 1 +10160908 Unwind@10160908 undefined Unwind@10160908(void) 8 1 +10160910 Unwind@10160910 undefined Unwind@10160910(void) 8 1 +10160918 Unwind@10160918 undefined Unwind@10160918(void) 8 1 +10160920 Unwind@10160920 undefined Unwind@10160920(void) 8 1 +10160928 Unwind@10160928 undefined Unwind@10160928(void) 8 1 +10160930 Unwind@10160930 undefined Unwind@10160930(void) 8 1 +10160938 Unwind@10160938 undefined Unwind@10160938(void) 8 1 +10160940 Unwind@10160940 undefined Unwind@10160940(void) 8 1 +10160970 Unwind@10160970 undefined Unwind@10160970(void) 8 1 +10160978 Unwind@10160978 undefined Unwind@10160978(void) 8 1 +10160980 Unwind@10160980 undefined Unwind@10160980(void) 8 1 +10160988 Unwind@10160988 undefined Unwind@10160988(void) 8 1 +10160990 Unwind@10160990 undefined Unwind@10160990(void) 8 1 +101609c0 Unwind@101609c0 undefined Unwind@101609c0(void) 8 1 +101609c8 Unwind@101609c8 undefined Unwind@101609c8(void) 8 1 +101609d0 Unwind@101609d0 undefined Unwind@101609d0(void) 8 1 +101609d8 Unwind@101609d8 undefined Unwind@101609d8(void) 8 1 +101609e0 Unwind@101609e0 undefined Unwind@101609e0(void) 8 1 +101609e8 Unwind@101609e8 undefined Unwind@101609e8(void) 8 1 +101609f0 Unwind@101609f0 undefined Unwind@101609f0(void) 8 1 +101609f8 Unwind@101609f8 undefined Unwind@101609f8(void) 8 1 +10160a00 Unwind@10160a00 undefined Unwind@10160a00(void) 8 1 +10160a30 Unwind@10160a30 undefined Unwind@10160a30(void) 8 1 +10160a38 Unwind@10160a38 undefined Unwind@10160a38(void) 8 1 +10160a40 Unwind@10160a40 undefined Unwind@10160a40(void) 8 1 +10160a48 Unwind@10160a48 undefined Unwind@10160a48(void) 8 1 +10160a50 Unwind@10160a50 undefined Unwind@10160a50(void) 8 1 +10160a58 Unwind@10160a58 undefined Unwind@10160a58(void) 8 1 +10160a60 Unwind@10160a60 undefined Unwind@10160a60(void) 8 1 +10160a68 Unwind@10160a68 undefined Unwind@10160a68(void) 8 1 +10160a70 Unwind@10160a70 undefined Unwind@10160a70(void) 8 1 +10160aa0 Unwind@10160aa0 undefined Unwind@10160aa0(void) 8 1 +10160aa8 Unwind@10160aa8 undefined Unwind@10160aa8(void) 8 1 +10160ab0 Unwind@10160ab0 undefined Unwind@10160ab0(void) 8 1 +10160ab8 Unwind@10160ab8 undefined Unwind@10160ab8(void) 8 1 +10160ac0 Unwind@10160ac0 undefined Unwind@10160ac0(void) 8 1 +10160af0 Unwind@10160af0 undefined Unwind@10160af0(void) 8 1 +10160af8 Unwind@10160af8 undefined Unwind@10160af8(void) 8 1 +10160b00 Unwind@10160b00 undefined Unwind@10160b00(void) 8 1 +10160b08 Unwind@10160b08 undefined Unwind@10160b08(void) 8 1 +10160b10 Unwind@10160b10 undefined Unwind@10160b10(void) 8 1 +10160b40 Unwind@10160b40 undefined Unwind@10160b40(void) 8 1 +10160b48 Unwind@10160b48 undefined Unwind@10160b48(void) 8 1 +10160b50 Unwind@10160b50 undefined Unwind@10160b50(void) 8 1 +10160b58 Unwind@10160b58 undefined Unwind@10160b58(void) 8 1 +10160b60 Unwind@10160b60 undefined Unwind@10160b60(void) 8 1 +10160b68 Unwind@10160b68 undefined Unwind@10160b68(void) 8 1 +10160b70 Unwind@10160b70 undefined Unwind@10160b70(void) 8 1 +10160ba0 Unwind@10160ba0 undefined Unwind@10160ba0(void) 8 1 +10160ba8 Unwind@10160ba8 undefined Unwind@10160ba8(void) 8 1 +10160bb0 Unwind@10160bb0 undefined Unwind@10160bb0(void) 8 1 +10160bb8 Unwind@10160bb8 undefined Unwind@10160bb8(void) 8 1 +10160bc0 Unwind@10160bc0 undefined Unwind@10160bc0(void) 8 1 +10160bc8 Unwind@10160bc8 undefined Unwind@10160bc8(void) 8 1 +10160bf0 Unwind@10160bf0 undefined Unwind@10160bf0(void) 8 1 +10160bf8 Unwind@10160bf8 undefined Unwind@10160bf8(void) 8 1 +10160c00 Unwind@10160c00 undefined Unwind@10160c00(void) 8 1 +10160c08 Unwind@10160c08 undefined Unwind@10160c08(void) 8 1 +10160c10 Unwind@10160c10 undefined Unwind@10160c10(void) 8 1 +10160c40 Unwind@10160c40 undefined Unwind@10160c40(void) 8 1 +10160c48 Unwind@10160c48 undefined Unwind@10160c48(void) 8 1 +10160c50 Unwind@10160c50 undefined Unwind@10160c50(void) 8 1 +10160c58 Unwind@10160c58 undefined Unwind@10160c58(void) 8 1 +10160c60 Unwind@10160c60 undefined Unwind@10160c60(void) 8 1 +10160c90 Unwind@10160c90 undefined Unwind@10160c90(void) 8 1 +10160c98 Unwind@10160c98 undefined Unwind@10160c98(void) 8 1 +10160ca0 Unwind@10160ca0 undefined Unwind@10160ca0(void) 8 1 +10160ca8 Unwind@10160ca8 undefined Unwind@10160ca8(void) 8 1 +10160cb0 Unwind@10160cb0 undefined Unwind@10160cb0(void) 8 1 +10160ce0 Unwind@10160ce0 undefined Unwind@10160ce0(void) 8 1 +10160ce8 Unwind@10160ce8 undefined Unwind@10160ce8(void) 8 1 +10160cf0 Unwind@10160cf0 undefined Unwind@10160cf0(void) 8 1 +10160cf8 Unwind@10160cf8 undefined Unwind@10160cf8(void) 8 1 +10160d00 Unwind@10160d00 undefined Unwind@10160d00(void) 8 1 +10160d30 Unwind@10160d30 undefined Unwind@10160d30(void) 8 1 +10160d38 Unwind@10160d38 undefined Unwind@10160d38(void) 11 1 +10160d43 Unwind@10160d43 undefined Unwind@10160d43(void) 8 1 +10160d4b Unwind@10160d4b undefined Unwind@10160d4b(void) 8 1 +10160d53 Unwind@10160d53 undefined Unwind@10160d53(void) 8 1 +10160d5b Unwind@10160d5b undefined Unwind@10160d5b(void) 8 1 +10160d63 Unwind@10160d63 undefined Unwind@10160d63(void) 8 1 +10160d6b Unwind@10160d6b undefined Unwind@10160d6b(void) 8 1 +10160d73 Unwind@10160d73 undefined Unwind@10160d73(void) 8 1 +10160db0 Unwind@10160db0 undefined Unwind@10160db0(void) 8 1 +10160db8 Unwind@10160db8 undefined Unwind@10160db8(void) 8 1 +10160dc0 Unwind@10160dc0 undefined Unwind@10160dc0(void) 8 1 +10160dc8 Unwind@10160dc8 undefined Unwind@10160dc8(void) 8 1 +10160dd0 Unwind@10160dd0 undefined Unwind@10160dd0(void) 8 1 +10160e00 Unwind@10160e00 undefined Unwind@10160e00(void) 8 1 +10160e08 Unwind@10160e08 undefined Unwind@10160e08(void) 8 1 +10160e10 Unwind@10160e10 undefined Unwind@10160e10(void) 8 1 +10160e18 Unwind@10160e18 undefined Unwind@10160e18(void) 8 1 +10160e20 Unwind@10160e20 undefined Unwind@10160e20(void) 8 1 +10160e50 Unwind@10160e50 undefined Unwind@10160e50(void) 8 1 +10160e58 Unwind@10160e58 undefined Unwind@10160e58(void) 8 1 +10160e60 Unwind@10160e60 undefined Unwind@10160e60(void) 8 1 +10160e68 Unwind@10160e68 undefined Unwind@10160e68(void) 8 1 +10160e70 Unwind@10160e70 undefined Unwind@10160e70(void) 8 1 +10160ea0 Unwind@10160ea0 undefined Unwind@10160ea0(void) 8 1 +10160ea8 Unwind@10160ea8 undefined Unwind@10160ea8(void) 8 1 +10160eb0 Unwind@10160eb0 undefined Unwind@10160eb0(void) 8 1 +10160eb8 Unwind@10160eb8 undefined Unwind@10160eb8(void) 8 1 +10160ec0 Unwind@10160ec0 undefined Unwind@10160ec0(void) 8 1 +10160ef0 Unwind@10160ef0 undefined Unwind@10160ef0(void) 8 1 +10160ef8 Unwind@10160ef8 undefined Unwind@10160ef8(void) 8 1 +10160f00 Unwind@10160f00 undefined Unwind@10160f00(void) 8 1 +10160f08 Unwind@10160f08 undefined Unwind@10160f08(void) 8 1 +10160f10 Unwind@10160f10 undefined Unwind@10160f10(void) 8 1 +10160f18 Unwind@10160f18 undefined Unwind@10160f18(void) 8 1 +10160f50 Unwind@10160f50 undefined Unwind@10160f50(void) 8 1 +10160f58 Unwind@10160f58 undefined Unwind@10160f58(void) 8 1 +10160f60 Unwind@10160f60 undefined Unwind@10160f60(void) 8 1 +10160f68 Unwind@10160f68 undefined Unwind@10160f68(void) 8 1 +10160f70 Unwind@10160f70 undefined Unwind@10160f70(void) 8 1 +10160f78 Unwind@10160f78 undefined Unwind@10160f78(void) 8 1 +10160fb0 Unwind@10160fb0 undefined Unwind@10160fb0(void) 8 1 +10160fb8 Unwind@10160fb8 undefined Unwind@10160fb8(void) 8 1 +10160fc0 Unwind@10160fc0 undefined Unwind@10160fc0(void) 8 1 +10160fc8 Unwind@10160fc8 undefined Unwind@10160fc8(void) 8 1 +10160fd0 Unwind@10160fd0 undefined Unwind@10160fd0(void) 8 1 +10160fd8 Unwind@10160fd8 undefined Unwind@10160fd8(void) 8 1 +10161010 Unwind@10161010 undefined Unwind@10161010(void) 8 1 +10161018 Unwind@10161018 undefined Unwind@10161018(void) 8 1 +10161020 Unwind@10161020 undefined Unwind@10161020(void) 8 1 +10161028 Unwind@10161028 undefined Unwind@10161028(void) 8 1 +10161030 Unwind@10161030 undefined Unwind@10161030(void) 8 1 +10161060 Unwind@10161060 undefined Unwind@10161060(void) 8 1 +10161068 Unwind@10161068 undefined Unwind@10161068(void) 8 1 +10161070 Unwind@10161070 undefined Unwind@10161070(void) 8 1 +10161078 Unwind@10161078 undefined Unwind@10161078(void) 8 1 +10161080 Unwind@10161080 undefined Unwind@10161080(void) 8 1 +101610b0 Unwind@101610b0 undefined Unwind@101610b0(void) 12 0 +101610bc Unwind@101610bc undefined Unwind@101610bc(void) 23 1 +101610d3 Unwind@101610d3 undefined Unwind@101610d3(void) 11 1 +101610de Unwind@101610de undefined Unwind@101610de(void) 11 1 +101610e9 Unwind@101610e9 undefined Unwind@101610e9(void) 11 1 +101610f4 Unwind@101610f4 undefined Unwind@101610f4(void) 14 1 +10161102 Unwind@10161102 undefined Unwind@10161102(void) 11 0 +1016110d Unwind@1016110d undefined Unwind@1016110d(void) 11 1 +10161118 Unwind@10161118 undefined Unwind@10161118(void) 11 1 +10161123 Unwind@10161123 undefined Unwind@10161123(void) 11 0 +1016112e Unwind@1016112e undefined Unwind@1016112e(void) 11 1 +10161139 Unwind@10161139 undefined Unwind@10161139(void) 11 1 +10161144 Unwind@10161144 undefined Unwind@10161144(void) 11 0 +1016114f Unwind@1016114f undefined Unwind@1016114f(void) 11 1 +1016115a Unwind@1016115a undefined Unwind@1016115a(void) 11 1 +10161165 Unwind@10161165 undefined Unwind@10161165(void) 11 0 +10161170 Unwind@10161170 undefined Unwind@10161170(void) 11 1 +1016117b Unwind@1016117b undefined Unwind@1016117b(void) 14 1 +10161189 Unwind@10161189 undefined Unwind@10161189(void) 11 0 +10161194 Unwind@10161194 undefined Unwind@10161194(void) 11 0 +1016119f Unwind@1016119f undefined Unwind@1016119f(void) 11 1 +101611aa Unwind@101611aa undefined Unwind@101611aa(void) 11 0 +101611b5 Unwind@101611b5 undefined Unwind@101611b5(void) 11 1 +101611c0 Unwind@101611c0 undefined Unwind@101611c0(void) 11 0 +101611cb Unwind@101611cb undefined Unwind@101611cb(void) 11 1 +101611d6 Unwind@101611d6 undefined Unwind@101611d6(void) 11 0 +101611e1 Unwind@101611e1 undefined Unwind@101611e1(void) 11 1 +101611ec Unwind@101611ec undefined Unwind@101611ec(void) 11 0 +101611f7 Unwind@101611f7 undefined Unwind@101611f7(void) 11 1 +10161202 Unwind@10161202 undefined Unwind@10161202(void) 11 1 +1016120d Unwind@1016120d undefined Unwind@1016120d(void) 12 0 +10161219 Unwind@10161219 undefined Unwind@10161219(void) 12 0 +10161250 Unwind@10161250 undefined Unwind@10161250(void) 8 1 +10161258 Unwind@10161258 undefined Unwind@10161258(void) 8 1 +10161260 Unwind@10161260 undefined Unwind@10161260(void) 8 1 +10161268 Unwind@10161268 undefined Unwind@10161268(void) 8 1 +10161270 Unwind@10161270 undefined Unwind@10161270(void) 8 1 +101612a0 Unwind@101612a0 undefined Unwind@101612a0(void) 8 1 +101612a8 Unwind@101612a8 undefined Unwind@101612a8(void) 8 1 +101612b0 Unwind@101612b0 undefined Unwind@101612b0(void) 8 1 +101612b8 Unwind@101612b8 undefined Unwind@101612b8(void) 8 1 +101612c0 Unwind@101612c0 undefined Unwind@101612c0(void) 8 1 +101612f0 Unwind@101612f0 undefined Unwind@101612f0(void) 8 1 +101612f8 Unwind@101612f8 undefined Unwind@101612f8(void) 8 1 +10161300 Unwind@10161300 undefined Unwind@10161300(void) 8 1 +10161308 Unwind@10161308 undefined Unwind@10161308(void) 8 1 +10161310 Unwind@10161310 undefined Unwind@10161310(void) 8 1 +10161340 Unwind@10161340 undefined Unwind@10161340(void) 8 1 +10161348 Unwind@10161348 undefined Unwind@10161348(void) 8 1 +10161350 Unwind@10161350 undefined Unwind@10161350(void) 8 1 +10161358 Unwind@10161358 undefined Unwind@10161358(void) 8 1 +10161360 Unwind@10161360 undefined Unwind@10161360(void) 8 1 +10161390 Unwind@10161390 undefined Unwind@10161390(void) 8 1 +10161398 Unwind@10161398 undefined Unwind@10161398(void) 8 1 +101613a0 Unwind@101613a0 undefined Unwind@101613a0(void) 8 1 +101613a8 Unwind@101613a8 undefined Unwind@101613a8(void) 8 1 +101613b0 Unwind@101613b0 undefined Unwind@101613b0(void) 8 1 +101613e0 Unwind@101613e0 undefined Unwind@101613e0(void) 8 1 +101613e8 Unwind@101613e8 undefined Unwind@101613e8(void) 8 1 +101613f0 Unwind@101613f0 undefined Unwind@101613f0(void) 8 1 +101613f8 Unwind@101613f8 undefined Unwind@101613f8(void) 8 1 +10161400 Unwind@10161400 undefined Unwind@10161400(void) 8 1 +10161408 Unwind@10161408 undefined Unwind@10161408(void) 8 1 +10161410 Unwind@10161410 undefined Unwind@10161410(void) 8 1 +10161440 Unwind@10161440 undefined Unwind@10161440(void) 8 1 +10161448 Unwind@10161448 undefined Unwind@10161448(void) 8 1 +10161450 Unwind@10161450 undefined Unwind@10161450(void) 8 1 +10161458 Unwind@10161458 undefined Unwind@10161458(void) 8 1 +10161460 Unwind@10161460 undefined Unwind@10161460(void) 8 1 +10161490 Unwind@10161490 undefined Unwind@10161490(void) 8 1 +10161498 Unwind@10161498 undefined Unwind@10161498(void) 8 1 +101614a0 Unwind@101614a0 undefined Unwind@101614a0(void) 8 1 +101614a8 Unwind@101614a8 undefined Unwind@101614a8(void) 8 1 +101614b0 Unwind@101614b0 undefined Unwind@101614b0(void) 8 1 +101614e0 Unwind@101614e0 undefined Unwind@101614e0(void) 8 1 +101614e8 Unwind@101614e8 undefined Unwind@101614e8(void) 8 1 +101614f0 Unwind@101614f0 undefined Unwind@101614f0(void) 8 1 +101614f8 Unwind@101614f8 undefined Unwind@101614f8(void) 8 1 +10161500 Unwind@10161500 undefined Unwind@10161500(void) 8 1 +10161530 Unwind@10161530 undefined Unwind@10161530(void) 11 1 +1016153b Unwind@1016153b undefined Unwind@1016153b(void) 8 1 +10161570 Unwind@10161570 undefined Unwind@10161570(void) 11 1 +1016157b Unwind@1016157b undefined Unwind@1016157b(void) 11 1 +101615b0 Unwind@101615b0 undefined Unwind@101615b0(void) 8 1 +101615b8 Unwind@101615b8 undefined Unwind@101615b8(void) 8 1 +101615c0 Unwind@101615c0 undefined Unwind@101615c0(void) 8 1 +101615c8 Unwind@101615c8 undefined Unwind@101615c8(void) 8 1 +101615d0 Unwind@101615d0 undefined Unwind@101615d0(void) 8 1 +10161600 Unwind@10161600 undefined Unwind@10161600(void) 8 1 +10161608 Unwind@10161608 undefined Unwind@10161608(void) 8 1 +10161610 Unwind@10161610 undefined Unwind@10161610(void) 8 1 +10161618 Unwind@10161618 undefined Unwind@10161618(void) 8 1 +10161620 Unwind@10161620 undefined Unwind@10161620(void) 8 1 +10161650 Unwind@10161650 undefined Unwind@10161650(void) 8 1 +10161658 Unwind@10161658 undefined Unwind@10161658(void) 8 1 +10161690 Unwind@10161690 undefined Unwind@10161690(void) 14 0 +1016169e Unwind@1016169e undefined Unwind@1016169e(void) 8 1 +101616a6 Unwind@101616a6 undefined Unwind@101616a6(void) 8 1 +101616ae Unwind@101616ae undefined Unwind@101616ae(void) 8 1 +101616b6 Unwind@101616b6 undefined Unwind@101616b6(void) 8 1 +101616be Unwind@101616be undefined Unwind@101616be(void) 8 1 +101616c6 Unwind@101616c6 undefined Unwind@101616c6(void) 8 1 +101616ce Unwind@101616ce undefined Unwind@101616ce(void) 8 1 +101616d6 Unwind@101616d6 undefined Unwind@101616d6(void) 9 0 +10161700 Unwind@10161700 undefined Unwind@10161700(void) 8 1 +10161708 Unwind@10161708 undefined Unwind@10161708(void) 8 1 +10161710 Unwind@10161710 undefined Unwind@10161710(void) 8 1 +10161718 Unwind@10161718 undefined Unwind@10161718(void) 8 1 +10161750 Unwind@10161750 undefined Unwind@10161750(void) 8 1 +10161758 Unwind@10161758 undefined Unwind@10161758(void) 8 1 +10161760 Unwind@10161760 undefined Unwind@10161760(void) 9 0 +10161790 Unwind@10161790 undefined Unwind@10161790(void) 8 1 +10161798 Unwind@10161798 undefined Unwind@10161798(void) 8 1 +101617a0 Unwind@101617a0 undefined Unwind@101617a0(void) 9 0 +101617d0 Unwind@101617d0 undefined Unwind@101617d0(void) 8 1 +101617d8 Unwind@101617d8 undefined Unwind@101617d8(void) 8 1 +101617e0 Unwind@101617e0 undefined Unwind@101617e0(void) 9 0 +10161810 Unwind@10161810 undefined Unwind@10161810(void) 8 1 +10161818 Unwind@10161818 undefined Unwind@10161818(void) 11 1 +10161823 Unwind@10161823 undefined Unwind@10161823(void) 8 1 +1016182b Unwind@1016182b undefined Unwind@1016182b(void) 8 1 +10161833 Unwind@10161833 undefined Unwind@10161833(void) 8 1 +10161860 Unwind@10161860 undefined Unwind@10161860(void) 8 1 +10161868 Unwind@10161868 undefined Unwind@10161868(void) 8 1 +10161870 Unwind@10161870 undefined Unwind@10161870(void) 9 0 +101618a0 Unwind@101618a0 undefined Unwind@101618a0(void) 8 1 +101618a8 Unwind@101618a8 undefined Unwind@101618a8(void) 11 1 +101618b3 Unwind@101618b3 undefined Unwind@101618b3(void) 8 1 +101618bb Unwind@101618bb undefined Unwind@101618bb(void) 8 1 +101618c3 Unwind@101618c3 undefined Unwind@101618c3(void) 8 1 +101618f0 Unwind@101618f0 undefined Unwind@101618f0(void) 8 1 +101618f8 Unwind@101618f8 undefined Unwind@101618f8(void) 8 1 +10161900 Unwind@10161900 undefined Unwind@10161900(void) 8 1 +10161908 Unwind@10161908 undefined Unwind@10161908(void) 8 1 +10161910 Unwind@10161910 undefined Unwind@10161910(void) 11 1 +1016191b Unwind@1016191b undefined Unwind@1016191b(void) 11 1 +10161926 Unwind@10161926 undefined Unwind@10161926(void) 11 1 +10161931 Unwind@10161931 undefined Unwind@10161931(void) 11 1 +1016193c Unwind@1016193c undefined Unwind@1016193c(void) 11 1 +10161947 Unwind@10161947 undefined Unwind@10161947(void) 11 1 +10161952 Unwind@10161952 undefined Unwind@10161952(void) 11 1 +1016195d Unwind@1016195d undefined Unwind@1016195d(void) 11 1 +10161968 Unwind@10161968 undefined Unwind@10161968(void) 11 1 +10161973 Unwind@10161973 undefined Unwind@10161973(void) 11 1 +1016197e Unwind@1016197e undefined Unwind@1016197e(void) 11 1 +10161989 Unwind@10161989 undefined Unwind@10161989(void) 11 1 +10161994 Unwind@10161994 undefined Unwind@10161994(void) 11 1 +1016199f Unwind@1016199f undefined Unwind@1016199f(void) 11 1 +101619aa Unwind@101619aa undefined Unwind@101619aa(void) 11 1 +101619b5 Unwind@101619b5 undefined Unwind@101619b5(void) 11 1 +101619c0 Unwind@101619c0 undefined Unwind@101619c0(void) 11 1 +101619cb Unwind@101619cb undefined Unwind@101619cb(void) 11 1 +101619d6 Unwind@101619d6 undefined Unwind@101619d6(void) 11 1 +101619e1 Unwind@101619e1 undefined Unwind@101619e1(void) 11 1 +101619ec Unwind@101619ec undefined Unwind@101619ec(void) 11 1 +101619f7 Unwind@101619f7 undefined Unwind@101619f7(void) 11 1 +10161a02 Unwind@10161a02 undefined Unwind@10161a02(void) 8 1 +10161a0a Unwind@10161a0a undefined Unwind@10161a0a(void) 11 1 +10161a15 Unwind@10161a15 undefined Unwind@10161a15(void) 11 1 +10161a20 Unwind@10161a20 undefined Unwind@10161a20(void) 11 1 +10161a2b Unwind@10161a2b undefined Unwind@10161a2b(void) 11 1 +10161a36 Unwind@10161a36 undefined Unwind@10161a36(void) 11 1 +10161a41 Unwind@10161a41 undefined Unwind@10161a41(void) 11 1 +10161a4c Unwind@10161a4c undefined Unwind@10161a4c(void) 11 1 +10161a57 Unwind@10161a57 undefined Unwind@10161a57(void) 11 1 +10161a62 Unwind@10161a62 undefined Unwind@10161a62(void) 11 1 +10161a6d Unwind@10161a6d undefined Unwind@10161a6d(void) 11 1 +10161a78 Unwind@10161a78 undefined Unwind@10161a78(void) 11 1 +10161ab0 Unwind@10161ab0 undefined Unwind@10161ab0(void) 8 1 +10161ab8 Unwind@10161ab8 undefined Unwind@10161ab8(void) 11 1 +10161ac3 Unwind@10161ac3 undefined Unwind@10161ac3(void) 8 1 +10161acb Unwind@10161acb undefined Unwind@10161acb(void) 8 1 +10161af0 Unwind@10161af0 undefined Unwind@10161af0(void) 8 1 +10161af8 Unwind@10161af8 undefined Unwind@10161af8(void) 11 1 +10161b20 Unwind@10161b20 undefined Unwind@10161b20(void) 8 1 +10161b50 Unwind@10161b50 undefined Unwind@10161b50(void) 8 1 +10161b58 Unwind@10161b58 undefined Unwind@10161b58(void) 11 1 +10161b63 Unwind@10161b63 undefined Unwind@10161b63(void) 11 1 +10161b6e Unwind@10161b6e undefined Unwind@10161b6e(void) 8 1 +10161ba0 Unwind@10161ba0 undefined Unwind@10161ba0(void) 8 1 +10161ba8 Unwind@10161ba8 undefined Unwind@10161ba8(void) 11 1 +10161bb3 Unwind@10161bb3 undefined Unwind@10161bb3(void) 8 1 +10161bbb Unwind@10161bbb undefined Unwind@10161bbb(void) 8 1 +10161be0 Unwind@10161be0 undefined Unwind@10161be0(void) 8 1 +10161be8 Unwind@10161be8 undefined Unwind@10161be8(void) 11 1 +10161bf3 Unwind@10161bf3 undefined Unwind@10161bf3(void) 8 1 +10161bfb Unwind@10161bfb undefined Unwind@10161bfb(void) 8 1 +10161c20 Unwind@10161c20 undefined Unwind@10161c20(void) 8 1 +10161c28 Unwind@10161c28 undefined Unwind@10161c28(void) 11 1 +10161c33 Unwind@10161c33 undefined Unwind@10161c33(void) 8 1 +10161c3b Unwind@10161c3b undefined Unwind@10161c3b(void) 8 1 +10161c60 Unwind@10161c60 undefined Unwind@10161c60(void) 8 1 +10161c68 Unwind@10161c68 undefined Unwind@10161c68(void) 11 1 +10161c73 Unwind@10161c73 undefined Unwind@10161c73(void) 8 1 +10161c7b Unwind@10161c7b undefined Unwind@10161c7b(void) 8 1 +10161c83 Unwind@10161c83 undefined Unwind@10161c83(void) 8 1 +10161c8b Unwind@10161c8b undefined Unwind@10161c8b(void) 8 1 +10161cb0 Unwind@10161cb0 undefined Unwind@10161cb0(void) 17 1 +10161cc1 Unwind@10161cc1 undefined Unwind@10161cc1(void) 8 1 +10161cc9 Unwind@10161cc9 undefined Unwind@10161cc9(void) 8 1 +10161cd1 Unwind@10161cd1 undefined Unwind@10161cd1(void) 11 1 +10161cdc Unwind@10161cdc undefined Unwind@10161cdc(void) 8 1 +10161d00 Unwind@10161d00 undefined Unwind@10161d00(void) 17 1 +10161d11 Unwind@10161d11 undefined Unwind@10161d11(void) 8 1 +10161d19 Unwind@10161d19 undefined Unwind@10161d19(void) 8 1 +10161d21 Unwind@10161d21 undefined Unwind@10161d21(void) 11 1 +10161d2c Unwind@10161d2c undefined Unwind@10161d2c(void) 8 1 +10161d50 Unwind@10161d50 undefined Unwind@10161d50(void) 11 1 +10161d5b Unwind@10161d5b undefined Unwind@10161d5b(void) 8 1 +10161d63 Unwind@10161d63 undefined Unwind@10161d63(void) 8 1 +10161d90 Unwind@10161d90 undefined Unwind@10161d90(void) 17 1 +10161da1 Unwind@10161da1 undefined Unwind@10161da1(void) 8 1 +10161da9 Unwind@10161da9 undefined Unwind@10161da9(void) 8 1 +10161db1 Unwind@10161db1 undefined Unwind@10161db1(void) 11 1 +10161dbc Unwind@10161dbc undefined Unwind@10161dbc(void) 8 1 +10161de0 Unwind@10161de0 undefined Unwind@10161de0(void) 11 1 +10161deb Unwind@10161deb undefined Unwind@10161deb(void) 11 1 +10161df6 Unwind@10161df6 undefined Unwind@10161df6(void) 8 1 +10161dfe Unwind@10161dfe undefined Unwind@10161dfe(void) 11 1 +10161e09 Unwind@10161e09 undefined Unwind@10161e09(void) 11 1 +10161e14 Unwind@10161e14 undefined Unwind@10161e14(void) 8 1 +10161e1c Unwind@10161e1c undefined Unwind@10161e1c(void) 8 1 +10161e24 Unwind@10161e24 undefined Unwind@10161e24(void) 14 1 +10161e32 Unwind@10161e32 undefined Unwind@10161e32(void) 8 1 +10161e3a Unwind@10161e3a undefined Unwind@10161e3a(void) 8 1 +10161e42 Unwind@10161e42 undefined Unwind@10161e42(void) 14 1 +10161e50 Unwind@10161e50 undefined Unwind@10161e50(void) 8 1 +10161e58 Unwind@10161e58 undefined Unwind@10161e58(void) 14 1 +10161e66 Unwind@10161e66 undefined Unwind@10161e66(void) 8 1 +10161e6e Unwind@10161e6e undefined Unwind@10161e6e(void) 8 1 +10161e76 Unwind@10161e76 undefined Unwind@10161e76(void) 8 1 +10161e7e Unwind@10161e7e undefined Unwind@10161e7e(void) 9 0 +10161e87 Unwind@10161e87 undefined Unwind@10161e87(void) 9 0 +10161eb0 Unwind@10161eb0 undefined Unwind@10161eb0(void) 8 1 +10161eb8 Unwind@10161eb8 undefined Unwind@10161eb8(void) 8 1 +10161ec0 Unwind@10161ec0 undefined Unwind@10161ec0(void) 11 1 +10161ecb Unwind@10161ecb undefined Unwind@10161ecb(void) 8 1 +10161ed3 Unwind@10161ed3 undefined Unwind@10161ed3(void) 11 1 +10161ede Unwind@10161ede undefined Unwind@10161ede(void) 8 1 +10161ee6 Unwind@10161ee6 undefined Unwind@10161ee6(void) 8 1 +10161eee Unwind@10161eee undefined Unwind@10161eee(void) 11 1 +10161ef9 Unwind@10161ef9 undefined Unwind@10161ef9(void) 9 0 +10161f02 Unwind@10161f02 undefined Unwind@10161f02(void) 9 0 +10161f0b Unwind@10161f0b undefined Unwind@10161f0b(void) 9 0 +10161f30 Unwind@10161f30 undefined Unwind@10161f30(void) 8 1 +10161f38 Unwind@10161f38 undefined Unwind@10161f38(void) 8 1 +10161f70 Unwind@10161f70 undefined Unwind@10161f70(void) 8 1 +10161f78 Unwind@10161f78 undefined Unwind@10161f78(void) 11 1 +10161f83 Unwind@10161f83 undefined Unwind@10161f83(void) 11 1 +10161f8e Unwind@10161f8e undefined Unwind@10161f8e(void) 11 1 +10161f99 Unwind@10161f99 undefined Unwind@10161f99(void) 11 1 +10161fa4 Unwind@10161fa4 undefined Unwind@10161fa4(void) 11 1 +10161faf Unwind@10161faf undefined Unwind@10161faf(void) 11 1 +10161fba Unwind@10161fba undefined Unwind@10161fba(void) 11 1 +10161fc5 Unwind@10161fc5 undefined Unwind@10161fc5(void) 11 1 +10161fd0 Unwind@10161fd0 undefined Unwind@10161fd0(void) 11 1 +10161fdb Unwind@10161fdb undefined Unwind@10161fdb(void) 14 1 +10161fe9 Unwind@10161fe9 undefined Unwind@10161fe9(void) 11 1 +10161ff4 Unwind@10161ff4 undefined Unwind@10161ff4(void) 11 1 +10161fff Unwind@10161fff undefined Unwind@10161fff(void) 11 1 +1016200a Unwind@1016200a undefined Unwind@1016200a(void) 8 1 +10162040 Unwind@10162040 undefined Unwind@10162040(void) 14 0 +1016204e Unwind@1016204e undefined Unwind@1016204e(void) 8 1 +10162056 Unwind@10162056 undefined Unwind@10162056(void) 8 1 +1016205e Unwind@1016205e undefined Unwind@1016205e(void) 8 1 +10162066 Unwind@10162066 undefined Unwind@10162066(void) 8 1 +1016206e Unwind@1016206e undefined Unwind@1016206e(void) 8 1 +10162076 Unwind@10162076 undefined Unwind@10162076(void) 8 1 +1016207e Unwind@1016207e undefined Unwind@1016207e(void) 8 1 +10162086 Unwind@10162086 undefined Unwind@10162086(void) 8 1 +1016208e Unwind@1016208e undefined Unwind@1016208e(void) 8 1 +10162096 Unwind@10162096 undefined Unwind@10162096(void) 8 1 +1016209e Unwind@1016209e undefined Unwind@1016209e(void) 8 1 +101620a6 Unwind@101620a6 undefined Unwind@101620a6(void) 8 1 +101620ae Unwind@101620ae undefined Unwind@101620ae(void) 8 1 +101620b6 Unwind@101620b6 undefined Unwind@101620b6(void) 8 1 +101620be Unwind@101620be undefined Unwind@101620be(void) 8 1 +101620c6 Unwind@101620c6 undefined Unwind@101620c6(void) 8 1 +101620ce Unwind@101620ce undefined Unwind@101620ce(void) 8 1 +101620d6 Unwind@101620d6 undefined Unwind@101620d6(void) 8 1 +101620de Unwind@101620de undefined Unwind@101620de(void) 8 1 +10162110 Unwind@10162110 undefined Unwind@10162110(void) 8 1 +10162140 Unwind@10162140 undefined Unwind@10162140(void) 8 1 +10162148 Unwind@10162148 undefined Unwind@10162148(void) 11 1 +10162153 Unwind@10162153 undefined Unwind@10162153(void) 8 1 +1016215b Unwind@1016215b undefined Unwind@1016215b(void) 8 1 +10162180 Unwind@10162180 undefined Unwind@10162180(void) 8 1 +10162188 Unwind@10162188 undefined Unwind@10162188(void) 11 1 +10162193 Unwind@10162193 undefined Unwind@10162193(void) 8 1 +1016219b Unwind@1016219b undefined Unwind@1016219b(void) 8 1 +101621c0 Unwind@101621c0 undefined Unwind@101621c0(void) 8 1 +101621f0 Unwind@101621f0 undefined Unwind@101621f0(void) 8 1 +101621f8 Unwind@101621f8 undefined Unwind@101621f8(void) 11 1 +10162220 Unwind@10162220 undefined Unwind@10162220(void) 8 1 +10162228 Unwind@10162228 undefined Unwind@10162228(void) 11 1 +10162233 Unwind@10162233 undefined Unwind@10162233(void) 11 1 +1016223e Unwind@1016223e undefined Unwind@1016223e(void) 8 1 +10162270 Unwind@10162270 undefined Unwind@10162270(void) 8 1 +10162278 Unwind@10162278 undefined Unwind@10162278(void) 11 1 +10162283 Unwind@10162283 undefined Unwind@10162283(void) 8 1 +1016228b Unwind@1016228b undefined Unwind@1016228b(void) 8 1 +101622b0 Unwind@101622b0 undefined Unwind@101622b0(void) 8 1 +101622b8 Unwind@101622b8 undefined Unwind@101622b8(void) 11 1 +101622c3 Unwind@101622c3 undefined Unwind@101622c3(void) 8 1 +101622cb Unwind@101622cb undefined Unwind@101622cb(void) 8 1 +101622f0 Unwind@101622f0 undefined Unwind@101622f0(void) 8 1 +10162320 Unwind@10162320 undefined Unwind@10162320(void) 8 1 +10162350 Unwind@10162350 undefined Unwind@10162350(void) 9 0 +10162380 Unwind@10162380 undefined Unwind@10162380(void) 9 0 +101623b0 Unwind@101623b0 undefined Unwind@101623b0(void) 8 1 +101623e0 Unwind@101623e0 undefined Unwind@101623e0(void) 11 1 +101623eb Unwind@101623eb undefined Unwind@101623eb(void) 8 1 +101623f3 Unwind@101623f3 undefined Unwind@101623f3(void) 8 1 +10162420 Unwind@10162420 undefined Unwind@10162420(void) 11 1 +1016242b Unwind@1016242b undefined Unwind@1016242b(void) 8 1 +10162433 Unwind@10162433 undefined Unwind@10162433(void) 8 1 +10162460 Unwind@10162460 undefined Unwind@10162460(void) 9 0 +10162490 Unwind@10162490 undefined Unwind@10162490(void) 8 1 +10162498 Unwind@10162498 undefined Unwind@10162498(void) 8 1 +101624c0 Unwind@101624c0 undefined Unwind@101624c0(void) 11 1 +10162500 Unwind@10162500 undefined Unwind@10162500(void) 8 1 +10162508 Unwind@10162508 undefined Unwind@10162508(void) 8 1 +10162510 Unwind@10162510 undefined Unwind@10162510(void) 8 1 +10162518 Unwind@10162518 undefined Unwind@10162518(void) 11 1 +10162550 Unwind@10162550 undefined Unwind@10162550(void) 11 1 +1016255b Unwind@1016255b undefined Unwind@1016255b(void) 11 1 +10162566 Unwind@10162566 undefined Unwind@10162566(void) 11 1 +10162571 Unwind@10162571 undefined Unwind@10162571(void) 14 1 +1016257f Unwind@1016257f undefined Unwind@1016257f(void) 14 1 +1016258d Unwind@1016258d undefined Unwind@1016258d(void) 14 1 +1016259b Unwind@1016259b undefined Unwind@1016259b(void) 11 1 +101625a6 Unwind@101625a6 undefined Unwind@101625a6(void) 8 1 +101625ae Unwind@101625ae undefined Unwind@101625ae(void) 11 1 +101625b9 Unwind@101625b9 undefined Unwind@101625b9(void) 11 1 +101625f0 Unwind@101625f0 undefined Unwind@101625f0(void) 8 1 +101625f8 Unwind@101625f8 undefined Unwind@101625f8(void) 8 1 +10162600 Unwind@10162600 undefined Unwind@10162600(void) 9 0 +10162630 Unwind@10162630 undefined Unwind@10162630(void) 8 1 +10162638 Unwind@10162638 undefined Unwind@10162638(void) 11 1 +10162643 Unwind@10162643 undefined Unwind@10162643(void) 8 1 +1016264b Unwind@1016264b undefined Unwind@1016264b(void) 11 1 +10162656 Unwind@10162656 undefined Unwind@10162656(void) 8 1 +101626a0 Unwind@101626a0 undefined Unwind@101626a0(void) 8 1 +101626a8 Unwind@101626a8 undefined Unwind@101626a8(void) 11 1 +101626d0 Unwind@101626d0 undefined Unwind@101626d0(void) 8 1 +101626d8 Unwind@101626d8 undefined Unwind@101626d8(void) 11 1 +101626e3 Unwind@101626e3 undefined Unwind@101626e3(void) 11 1 +101626ee Unwind@101626ee undefined Unwind@101626ee(void) 8 1 +10162720 Unwind@10162720 undefined Unwind@10162720(void) 8 1 +10162728 Unwind@10162728 undefined Unwind@10162728(void) 11 1 +10162733 Unwind@10162733 undefined Unwind@10162733(void) 8 1 +1016273b Unwind@1016273b undefined Unwind@1016273b(void) 8 1 +10162760 Unwind@10162760 undefined Unwind@10162760(void) 8 1 +10162768 Unwind@10162768 undefined Unwind@10162768(void) 11 1 +10162773 Unwind@10162773 undefined Unwind@10162773(void) 8 1 +1016277b Unwind@1016277b undefined Unwind@1016277b(void) 8 1 +101627a0 Unwind@101627a0 undefined Unwind@101627a0(void) 8 1 +101627a8 Unwind@101627a8 undefined Unwind@101627a8(void) 11 1 +101627d0 Unwind@101627d0 undefined Unwind@101627d0(void) 8 1 +101627d8 Unwind@101627d8 undefined Unwind@101627d8(void) 11 1 +101627e3 Unwind@101627e3 undefined Unwind@101627e3(void) 8 1 +101627eb Unwind@101627eb undefined Unwind@101627eb(void) 11 1 +101627f6 Unwind@101627f6 undefined Unwind@101627f6(void) 8 1 +10162820 Unwind@10162820 undefined Unwind@10162820(void) 8 1 +10162828 Unwind@10162828 undefined Unwind@10162828(void) 11 1 +10162833 Unwind@10162833 undefined Unwind@10162833(void) 11 1 +1016283e Unwind@1016283e undefined Unwind@1016283e(void) 8 1 +10162870 Unwind@10162870 undefined Unwind@10162870(void) 8 1 +10162878 Unwind@10162878 undefined Unwind@10162878(void) 11 1 +10162883 Unwind@10162883 undefined Unwind@10162883(void) 8 1 +1016288b Unwind@1016288b undefined Unwind@1016288b(void) 8 1 +101628b0 Unwind@101628b0 undefined Unwind@101628b0(void) 8 1 +101628b8 Unwind@101628b8 undefined Unwind@101628b8(void) 11 1 +101628c3 Unwind@101628c3 undefined Unwind@101628c3(void) 8 1 +101628cb Unwind@101628cb undefined Unwind@101628cb(void) 8 1 +10162910 Unwind@10162910 undefined Unwind@10162910(void) 8 1 +10162960 Unwind@10162960 undefined Unwind@10162960(void) 8 1 +10162968 Unwind@10162968 undefined Unwind@10162968(void) 11 1 +10162973 Unwind@10162973 undefined Unwind@10162973(void) 8 1 +1016297b Unwind@1016297b undefined Unwind@1016297b(void) 8 1 +10162983 Unwind@10162983 undefined Unwind@10162983(void) 11 1 +1016298e Unwind@1016298e undefined Unwind@1016298e(void) 9 0 +101629c0 Unwind@101629c0 undefined Unwind@101629c0(void) 8 1 +101629c8 Unwind@101629c8 undefined Unwind@101629c8(void) 11 1 +101629d3 Unwind@101629d3 undefined Unwind@101629d3(void) 11 1 +101629de Unwind@101629de undefined Unwind@101629de(void) 8 1 +101629e6 Unwind@101629e6 undefined Unwind@101629e6(void) 8 1 +10162a10 Unwind@10162a10 undefined Unwind@10162a10(void) 8 1 +10162a18 Unwind@10162a18 undefined Unwind@10162a18(void) 8 1 +10162a20 Unwind@10162a20 undefined Unwind@10162a20(void) 8 1 +10162a28 Unwind@10162a28 undefined Unwind@10162a28(void) 8 1 +10162a30 Unwind@10162a30 undefined Unwind@10162a30(void) 8 1 +10162a38 Unwind@10162a38 undefined Unwind@10162a38(void) 8 1 +10162a40 Unwind@10162a40 undefined Unwind@10162a40(void) 8 1 +10162a48 Unwind@10162a48 undefined Unwind@10162a48(void) 8 1 +10162a50 Unwind@10162a50 undefined Unwind@10162a50(void) 8 1 +10162a58 Unwind@10162a58 undefined Unwind@10162a58(void) 8 1 +10162a60 Unwind@10162a60 undefined Unwind@10162a60(void) 9 0 +10162a90 Unwind@10162a90 undefined Unwind@10162a90(void) 8 1 +10162a98 Unwind@10162a98 undefined Unwind@10162a98(void) 8 1 +10162aa0 Unwind@10162aa0 undefined Unwind@10162aa0(void) 8 1 +10162aa8 Unwind@10162aa8 undefined Unwind@10162aa8(void) 8 1 +10162ab0 Unwind@10162ab0 undefined Unwind@10162ab0(void) 8 1 +10162ab8 Unwind@10162ab8 undefined Unwind@10162ab8(void) 8 1 +10162ac0 Unwind@10162ac0 undefined Unwind@10162ac0(void) 8 1 +10162ac8 Unwind@10162ac8 undefined Unwind@10162ac8(void) 8 1 +10162ad0 Unwind@10162ad0 undefined Unwind@10162ad0(void) 8 1 +10162ad8 Unwind@10162ad8 undefined Unwind@10162ad8(void) 8 1 +10162ae0 Unwind@10162ae0 undefined Unwind@10162ae0(void) 9 0 +10162b10 Unwind@10162b10 undefined Unwind@10162b10(void) 8 1 +10162b18 Unwind@10162b18 undefined Unwind@10162b18(void) 8 1 +10162b20 Unwind@10162b20 undefined Unwind@10162b20(void) 8 1 +10162b28 Unwind@10162b28 undefined Unwind@10162b28(void) 8 1 +10162b30 Unwind@10162b30 undefined Unwind@10162b30(void) 8 1 +10162b38 Unwind@10162b38 undefined Unwind@10162b38(void) 8 1 +10162b40 Unwind@10162b40 undefined Unwind@10162b40(void) 8 1 +10162b48 Unwind@10162b48 undefined Unwind@10162b48(void) 8 1 +10162b50 Unwind@10162b50 undefined Unwind@10162b50(void) 8 1 +10162b58 Unwind@10162b58 undefined Unwind@10162b58(void) 8 1 +10162b60 Unwind@10162b60 undefined Unwind@10162b60(void) 8 1 +10162b68 Unwind@10162b68 undefined Unwind@10162b68(void) 8 1 +10162b70 Unwind@10162b70 undefined Unwind@10162b70(void) 8 1 +10162b78 Unwind@10162b78 undefined Unwind@10162b78(void) 8 1 +10162b80 Unwind@10162b80 undefined Unwind@10162b80(void) 8 1 +10162b88 Unwind@10162b88 undefined Unwind@10162b88(void) 8 1 +10162b90 Unwind@10162b90 undefined Unwind@10162b90(void) 8 1 +10162b98 Unwind@10162b98 undefined Unwind@10162b98(void) 9 0 +10162bc0 Unwind@10162bc0 undefined Unwind@10162bc0(void) 8 1 +10162bc8 Unwind@10162bc8 undefined Unwind@10162bc8(void) 8 1 +10162bd0 Unwind@10162bd0 undefined Unwind@10162bd0(void) 8 1 +10162bd8 Unwind@10162bd8 undefined Unwind@10162bd8(void) 8 1 +10162be0 Unwind@10162be0 undefined Unwind@10162be0(void) 8 1 +10162be8 Unwind@10162be8 undefined Unwind@10162be8(void) 8 1 +10162bf0 Unwind@10162bf0 undefined Unwind@10162bf0(void) 8 1 +10162bf8 Unwind@10162bf8 undefined Unwind@10162bf8(void) 8 1 +10162c00 Unwind@10162c00 undefined Unwind@10162c00(void) 8 1 +10162c08 Unwind@10162c08 undefined Unwind@10162c08(void) 8 1 +10162c10 Unwind@10162c10 undefined Unwind@10162c10(void) 8 1 +10162c18 Unwind@10162c18 undefined Unwind@10162c18(void) 8 1 +10162c20 Unwind@10162c20 undefined Unwind@10162c20(void) 8 1 +10162c28 Unwind@10162c28 undefined Unwind@10162c28(void) 9 0 +10162c50 Unwind@10162c50 undefined Unwind@10162c50(void) 8 1 +10162c80 Unwind@10162c80 undefined Unwind@10162c80(void) 8 1 +10162cb0 Unwind@10162cb0 undefined Unwind@10162cb0(void) 8 1 +10162cb8 Unwind@10162cb8 undefined Unwind@10162cb8(void) 8 1 +10162ce0 Unwind@10162ce0 undefined Unwind@10162ce0(void) 8 1 +10162ce8 Unwind@10162ce8 undefined Unwind@10162ce8(void) 11 1 +10162cf3 Unwind@10162cf3 undefined Unwind@10162cf3(void) 8 1 +10162cfb Unwind@10162cfb undefined Unwind@10162cfb(void) 8 1 +10162d20 Unwind@10162d20 undefined Unwind@10162d20(void) 11 1 +10162d2b Unwind@10162d2b undefined Unwind@10162d2b(void) 11 1 +10162d36 Unwind@10162d36 undefined Unwind@10162d36(void) 11 1 +10162d41 Unwind@10162d41 undefined Unwind@10162d41(void) 11 1 +10162d80 Unwind@10162d80 undefined Unwind@10162d80(void) 11 1 +10162d8b Unwind@10162d8b undefined Unwind@10162d8b(void) 11 1 +10162dc0 Unwind@10162dc0 undefined Unwind@10162dc0(void) 11 1 +10162dcb Unwind@10162dcb undefined Unwind@10162dcb(void) 11 1 +10162e00 Unwind@10162e00 undefined Unwind@10162e00(void) 11 1 +10162e0b Unwind@10162e0b undefined Unwind@10162e0b(void) 11 1 +10162e40 Unwind@10162e40 undefined Unwind@10162e40(void) 8 1 +10162e48 Unwind@10162e48 undefined Unwind@10162e48(void) 8 1 +10162e50 Unwind@10162e50 undefined Unwind@10162e50(void) 9 0 +10162e80 Unwind@10162e80 undefined Unwind@10162e80(void) 8 1 +10162eb0 Unwind@10162eb0 undefined Unwind@10162eb0(void) 8 1 +10162ee0 Unwind@10162ee0 undefined Unwind@10162ee0(void) 8 1 +10162ee8 Unwind@10162ee8 undefined Unwind@10162ee8(void) 9 0 +10162f10 Unwind@10162f10 undefined Unwind@10162f10(void) 8 1 +10162f18 Unwind@10162f18 undefined Unwind@10162f18(void) 8 1 +10162f20 Unwind@10162f20 undefined Unwind@10162f20(void) 8 1 +10162f28 Unwind@10162f28 undefined Unwind@10162f28(void) 11 1 +10162f33 Unwind@10162f33 undefined Unwind@10162f33(void) 9 0 +10162f60 Unwind@10162f60 undefined Unwind@10162f60(void) 8 1 +10162f68 Unwind@10162f68 undefined Unwind@10162f68(void) 11 1 +10162f73 Unwind@10162f73 undefined Unwind@10162f73(void) 8 1 +10162f7b Unwind@10162f7b undefined Unwind@10162f7b(void) 8 1 +10162fa0 Unwind@10162fa0 undefined Unwind@10162fa0(void) 8 1 +10162fa8 Unwind@10162fa8 undefined Unwind@10162fa8(void) 8 1 +10162fd0 Unwind@10162fd0 undefined Unwind@10162fd0(void) 11 1 +10162fdb Unwind@10162fdb undefined Unwind@10162fdb(void) 8 1 +10162fe3 Unwind@10162fe3 undefined Unwind@10162fe3(void) 8 1 +10162feb Unwind@10162feb undefined Unwind@10162feb(void) 8 1 +10162ff3 Unwind@10162ff3 undefined Unwind@10162ff3(void) 11 1 +10162ffe Unwind@10162ffe undefined Unwind@10162ffe(void) 11 1 +10163009 Unwind@10163009 undefined Unwind@10163009(void) 11 1 +10163014 Unwind@10163014 undefined Unwind@10163014(void) 11 1 +1016301f Unwind@1016301f undefined Unwind@1016301f(void) 8 1 +10163027 Unwind@10163027 undefined Unwind@10163027(void) 8 1 +10163060 Unwind@10163060 undefined Unwind@10163060(void) 8 1 +10163068 Unwind@10163068 undefined Unwind@10163068(void) 8 1 +10163070 Unwind@10163070 undefined Unwind@10163070(void) 8 1 +10163078 Unwind@10163078 undefined Unwind@10163078(void) 8 1 +10163080 Unwind@10163080 undefined Unwind@10163080(void) 8 1 +101630b0 Unwind@101630b0 undefined Unwind@101630b0(void) 8 1 +101630b8 Unwind@101630b8 undefined Unwind@101630b8(void) 8 1 +101630c0 Unwind@101630c0 undefined Unwind@101630c0(void) 8 1 +101630c8 Unwind@101630c8 undefined Unwind@101630c8(void) 8 1 +101630d0 Unwind@101630d0 undefined Unwind@101630d0(void) 8 1 +10163100 Unwind@10163100 undefined Unwind@10163100(void) 8 1 +10163108 Unwind@10163108 undefined Unwind@10163108(void) 8 1 +10163110 Unwind@10163110 undefined Unwind@10163110(void) 8 1 +10163118 Unwind@10163118 undefined Unwind@10163118(void) 8 1 +10163120 Unwind@10163120 undefined Unwind@10163120(void) 8 1 +10163128 Unwind@10163128 undefined Unwind@10163128(void) 8 1 +10163130 Unwind@10163130 undefined Unwind@10163130(void) 8 1 +10163138 Unwind@10163138 undefined Unwind@10163138(void) 8 1 +10163140 Unwind@10163140 undefined Unwind@10163140(void) 8 1 +10163148 Unwind@10163148 undefined Unwind@10163148(void) 8 1 +10163150 Unwind@10163150 undefined Unwind@10163150(void) 8 1 +10163158 Unwind@10163158 undefined Unwind@10163158(void) 8 1 +10163160 Unwind@10163160 undefined Unwind@10163160(void) 8 1 +10163190 Unwind@10163190 undefined Unwind@10163190(void) 8 1 +10163198 Unwind@10163198 undefined Unwind@10163198(void) 8 1 +101631a0 Unwind@101631a0 undefined Unwind@101631a0(void) 8 1 +101631d0 Unwind@101631d0 undefined Unwind@101631d0(void) 11 1 +101631db Unwind@101631db undefined Unwind@101631db(void) 8 1 +101631e3 Unwind@101631e3 undefined Unwind@101631e3(void) 8 1 +101631eb Unwind@101631eb undefined Unwind@101631eb(void) 8 1 +10163210 Unwind@10163210 undefined Unwind@10163210(void) 11 1 +1016321b Unwind@1016321b undefined Unwind@1016321b(void) 8 1 +10163223 Unwind@10163223 undefined Unwind@10163223(void) 8 1 +1016322b Unwind@1016322b undefined Unwind@1016322b(void) 8 1 +10163250 Unwind@10163250 undefined Unwind@10163250(void) 8 1 +10163258 Unwind@10163258 undefined Unwind@10163258(void) 8 1 +10163260 Unwind@10163260 undefined Unwind@10163260(void) 9 0 +10163290 Unwind@10163290 undefined Unwind@10163290(void) 8 1 +101632c0 Unwind@101632c0 undefined Unwind@101632c0(void) 8 1 +101632f0 Unwind@101632f0 undefined Unwind@101632f0(void) 8 1 +10163320 Unwind@10163320 undefined Unwind@10163320(void) 8 1 +10163350 Unwind@10163350 undefined Unwind@10163350(void) 8 1 +10163358 Unwind@10163358 undefined Unwind@10163358(void) 8 1 +10163360 Unwind@10163360 undefined Unwind@10163360(void) 8 1 +10163368 Unwind@10163368 undefined Unwind@10163368(void) 9 0 +10163390 Unwind@10163390 undefined Unwind@10163390(void) 8 1 +10163398 Unwind@10163398 undefined Unwind@10163398(void) 8 1 +101633c0 Unwind@101633c0 undefined Unwind@101633c0(void) 8 1 +101633c8 Unwind@101633c8 undefined Unwind@101633c8(void) 8 1 +101633d0 Unwind@101633d0 undefined Unwind@101633d0(void) 8 1 +101633d8 Unwind@101633d8 undefined Unwind@101633d8(void) 8 1 +101633e0 Unwind@101633e0 undefined Unwind@101633e0(void) 8 1 +101633e8 Unwind@101633e8 undefined Unwind@101633e8(void) 8 1 +10163410 Unwind@10163410 undefined Unwind@10163410(void) 11 1 +1016341b Unwind@1016341b undefined Unwind@1016341b(void) 11 1 +10163426 Unwind@10163426 undefined Unwind@10163426(void) 11 1 +10163431 Unwind@10163431 undefined Unwind@10163431(void) 11 1 +1016343c Unwind@1016343c undefined Unwind@1016343c(void) 11 1 +10163447 Unwind@10163447 undefined Unwind@10163447(void) 11 1 +10163480 Unwind@10163480 undefined Unwind@10163480(void) 8 1 +10163488 Unwind@10163488 undefined Unwind@10163488(void) 11 1 +10163493 Unwind@10163493 undefined Unwind@10163493(void) 8 1 +1016349b Unwind@1016349b undefined Unwind@1016349b(void) 8 1 +101634a3 Unwind@101634a3 undefined Unwind@101634a3(void) 8 1 +101634d0 Unwind@101634d0 undefined Unwind@101634d0(void) 8 1 +101634d8 Unwind@101634d8 undefined Unwind@101634d8(void) 11 1 +101634e3 Unwind@101634e3 undefined Unwind@101634e3(void) 8 1 +101634eb Unwind@101634eb undefined Unwind@101634eb(void) 8 1 +101634f3 Unwind@101634f3 undefined Unwind@101634f3(void) 8 1 +10163520 Unwind@10163520 undefined Unwind@10163520(void) 8 1 +10163550 Unwind@10163550 undefined Unwind@10163550(void) 8 1 +10163580 Unwind@10163580 undefined Unwind@10163580(void) 8 1 +101635b0 Unwind@101635b0 undefined Unwind@101635b0(void) 8 1 +101635e0 Unwind@101635e0 undefined Unwind@101635e0(void) 8 1 +101635e8 Unwind@101635e8 undefined Unwind@101635e8(void) 8 1 +101635f0 Unwind@101635f0 undefined Unwind@101635f0(void) 9 0 +10163620 Unwind@10163620 undefined Unwind@10163620(void) 8 1 +10163650 Unwind@10163650 undefined Unwind@10163650(void) 8 1 +10163658 Unwind@10163658 undefined Unwind@10163658(void) 8 1 +10163660 Unwind@10163660 undefined Unwind@10163660(void) 11 1 +1016366b Unwind@1016366b undefined Unwind@1016366b(void) 8 1 +10163673 Unwind@10163673 undefined Unwind@10163673(void) 8 1 +1016367b Unwind@1016367b undefined Unwind@1016367b(void) 8 1 +10163683 Unwind@10163683 undefined Unwind@10163683(void) 8 1 +101636b0 Unwind@101636b0 undefined Unwind@101636b0(void) 8 1 +101636b8 Unwind@101636b8 undefined Unwind@101636b8(void) 8 1 +101636c0 Unwind@101636c0 undefined Unwind@101636c0(void) 11 1 +101636cb Unwind@101636cb undefined Unwind@101636cb(void) 8 1 +101636d3 Unwind@101636d3 undefined Unwind@101636d3(void) 8 1 +101636db Unwind@101636db undefined Unwind@101636db(void) 8 1 +101636e3 Unwind@101636e3 undefined Unwind@101636e3(void) 8 1 +10163710 Unwind@10163710 undefined Unwind@10163710(void) 8 1 +10163718 Unwind@10163718 undefined Unwind@10163718(void) 8 1 +10163740 Unwind@10163740 undefined Unwind@10163740(void) 8 1 +10163748 Unwind@10163748 undefined Unwind@10163748(void) 11 1 +10163753 Unwind@10163753 undefined Unwind@10163753(void) 8 1 +1016375b Unwind@1016375b undefined Unwind@1016375b(void) 8 1 +10163763 Unwind@10163763 undefined Unwind@10163763(void) 8 1 +10163790 Unwind@10163790 undefined Unwind@10163790(void) 8 1 +10163798 Unwind@10163798 undefined Unwind@10163798(void) 8 1 +101637c0 Unwind@101637c0 undefined Unwind@101637c0(void) 8 1 +101637c8 Unwind@101637c8 undefined Unwind@101637c8(void) 8 1 +101637d0 Unwind@101637d0 undefined Unwind@101637d0(void) 11 1 +10163800 Unwind@10163800 undefined Unwind@10163800(void) 8 1 +10163808 Unwind@10163808 undefined Unwind@10163808(void) 8 1 +10163810 Unwind@10163810 undefined Unwind@10163810(void) 11 1 +10163840 Unwind@10163840 undefined Unwind@10163840(void) 8 1 +10163848 Unwind@10163848 undefined Unwind@10163848(void) 8 1 +10163850 Unwind@10163850 undefined Unwind@10163850(void) 11 1 +10163880 Unwind@10163880 undefined Unwind@10163880(void) 8 1 +10163888 Unwind@10163888 undefined Unwind@10163888(void) 8 1 +10163890 Unwind@10163890 undefined Unwind@10163890(void) 11 1 +101638c0 Unwind@101638c0 undefined Unwind@101638c0(void) 8 1 +101638c8 Unwind@101638c8 undefined Unwind@101638c8(void) 8 1 +101638f0 Unwind@101638f0 undefined Unwind@101638f0(void) 8 1 +101638f8 Unwind@101638f8 undefined Unwind@101638f8(void) 8 1 +10163920 Unwind@10163920 undefined Unwind@10163920(void) 8 1 +10163928 Unwind@10163928 undefined Unwind@10163928(void) 8 1 +10163950 Unwind@10163950 undefined Unwind@10163950(void) 8 1 +10163958 Unwind@10163958 undefined Unwind@10163958(void) 8 1 +10163980 Unwind@10163980 undefined Unwind@10163980(void) 8 1 +10163988 Unwind@10163988 undefined Unwind@10163988(void) 8 1 +101639b0 Unwind@101639b0 undefined Unwind@101639b0(void) 8 1 +101639b8 Unwind@101639b8 undefined Unwind@101639b8(void) 8 1 +101639c0 Unwind@101639c0 undefined Unwind@101639c0(void) 9 0 +101639f0 Unwind@101639f0 undefined Unwind@101639f0(void) 8 1 +101639f8 Unwind@101639f8 undefined Unwind@101639f8(void) 8 1 +10163a00 Unwind@10163a00 undefined Unwind@10163a00(void) 9 0 +10163a30 Unwind@10163a30 undefined Unwind@10163a30(void) 8 1 +10163a38 Unwind@10163a38 undefined Unwind@10163a38(void) 8 1 +10163a40 Unwind@10163a40 undefined Unwind@10163a40(void) 9 0 +10163a70 Unwind@10163a70 undefined Unwind@10163a70(void) 8 1 +10163a78 Unwind@10163a78 undefined Unwind@10163a78(void) 8 1 +10163a80 Unwind@10163a80 undefined Unwind@10163a80(void) 9 0 +10163ab0 Unwind@10163ab0 undefined Unwind@10163ab0(void) 8 1 +10163ab8 Unwind@10163ab8 undefined Unwind@10163ab8(void) 8 1 +10163ac0 Unwind@10163ac0 undefined Unwind@10163ac0(void) 9 0 +10163af0 Unwind@10163af0 undefined Unwind@10163af0(void) 8 1 +10163af8 Unwind@10163af8 undefined Unwind@10163af8(void) 8 1 +10163b00 Unwind@10163b00 undefined Unwind@10163b00(void) 11 1 +10163b30 Unwind@10163b30 undefined Unwind@10163b30(void) 8 1 +10163b38 Unwind@10163b38 undefined Unwind@10163b38(void) 8 1 +10163b40 Unwind@10163b40 undefined Unwind@10163b40(void) 11 1 +10163b4b Unwind@10163b4b undefined Unwind@10163b4b(void) 8 1 +10163b70 Unwind@10163b70 undefined Unwind@10163b70(void) 8 1 +10163b78 Unwind@10163b78 undefined Unwind@10163b78(void) 11 1 +10163b83 Unwind@10163b83 undefined Unwind@10163b83(void) 8 1 +10163b8b Unwind@10163b8b undefined Unwind@10163b8b(void) 8 1 +10163b93 Unwind@10163b93 undefined Unwind@10163b93(void) 8 1 +10163bc0 Unwind@10163bc0 undefined Unwind@10163bc0(void) 8 1 +10163bc8 Unwind@10163bc8 undefined Unwind@10163bc8(void) 11 1 +10163bd3 Unwind@10163bd3 undefined Unwind@10163bd3(void) 8 1 +10163bdb Unwind@10163bdb undefined Unwind@10163bdb(void) 8 1 +10163be3 Unwind@10163be3 undefined Unwind@10163be3(void) 8 1 +10163c10 Unwind@10163c10 undefined Unwind@10163c10(void) 8 1 +10163c18 Unwind@10163c18 undefined Unwind@10163c18(void) 8 1 +10163c20 Unwind@10163c20 undefined Unwind@10163c20(void) 11 1 +10163c2b Unwind@10163c2b undefined Unwind@10163c2b(void) 8 1 +10163c50 Unwind@10163c50 undefined Unwind@10163c50(void) 8 1 +10163c58 Unwind@10163c58 undefined Unwind@10163c58(void) 8 1 +10163c60 Unwind@10163c60 undefined Unwind@10163c60(void) 11 1 +10163c6b Unwind@10163c6b undefined Unwind@10163c6b(void) 8 1 +10163c90 Unwind@10163c90 undefined Unwind@10163c90(void) 8 1 +10163c98 Unwind@10163c98 undefined Unwind@10163c98(void) 8 1 +10163ca0 Unwind@10163ca0 undefined Unwind@10163ca0(void) 11 1 +10163cab Unwind@10163cab undefined Unwind@10163cab(void) 8 1 +10163cd0 Unwind@10163cd0 undefined Unwind@10163cd0(void) 8 1 +10163cd8 Unwind@10163cd8 undefined Unwind@10163cd8(void) 8 1 +10163ce0 Unwind@10163ce0 undefined Unwind@10163ce0(void) 8 1 +10163ce8 Unwind@10163ce8 undefined Unwind@10163ce8(void) 9 0 +10163d10 Unwind@10163d10 undefined Unwind@10163d10(void) 8 1 +10163d18 Unwind@10163d18 undefined Unwind@10163d18(void) 8 1 +10163d20 Unwind@10163d20 undefined Unwind@10163d20(void) 8 1 +10163d50 Unwind@10163d50 undefined Unwind@10163d50(void) 8 1 +10163d58 Unwind@10163d58 undefined Unwind@10163d58(void) 8 1 +10163d60 Unwind@10163d60 undefined Unwind@10163d60(void) 8 1 +10163d68 Unwind@10163d68 undefined Unwind@10163d68(void) 9 0 +10163d90 Unwind@10163d90 undefined Unwind@10163d90(void) 8 1 +10163d98 Unwind@10163d98 undefined Unwind@10163d98(void) 8 1 +10163da0 Unwind@10163da0 undefined Unwind@10163da0(void) 8 1 +10163dd0 Unwind@10163dd0 undefined Unwind@10163dd0(void) 8 1 +10163dd8 Unwind@10163dd8 undefined Unwind@10163dd8(void) 8 1 +10163de0 Unwind@10163de0 undefined Unwind@10163de0(void) 11 1 +10163deb Unwind@10163deb undefined Unwind@10163deb(void) 8 1 +10163e10 Unwind@10163e10 undefined Unwind@10163e10(void) 8 1 +10163e18 Unwind@10163e18 undefined Unwind@10163e18(void) 8 1 +10163e20 Unwind@10163e20 undefined Unwind@10163e20(void) 11 1 +10163e2b Unwind@10163e2b undefined Unwind@10163e2b(void) 8 1 +10163e33 Unwind@10163e33 undefined Unwind@10163e33(void) 25 1 +10163e70 Unwind@10163e70 undefined Unwind@10163e70(void) 8 1 +10163e78 Unwind@10163e78 undefined Unwind@10163e78(void) 11 1 +10163e83 Unwind@10163e83 undefined Unwind@10163e83(void) 8 1 +10163e8b Unwind@10163e8b undefined Unwind@10163e8b(void) 8 1 +10163e93 Unwind@10163e93 undefined Unwind@10163e93(void) 8 1 +10163ec0 Unwind@10163ec0 undefined Unwind@10163ec0(void) 8 1 +10163ec8 Unwind@10163ec8 undefined Unwind@10163ec8(void) 11 1 +10163ed3 Unwind@10163ed3 undefined Unwind@10163ed3(void) 8 1 +10163edb Unwind@10163edb undefined Unwind@10163edb(void) 8 1 +10163ee3 Unwind@10163ee3 undefined Unwind@10163ee3(void) 8 1 +10163f10 Unwind@10163f10 undefined Unwind@10163f10(void) 17 1 +10163f21 Unwind@10163f21 undefined Unwind@10163f21(void) 8 1 +10163f29 Unwind@10163f29 undefined Unwind@10163f29(void) 8 1 +10163f31 Unwind@10163f31 undefined Unwind@10163f31(void) 11 1 +10163f3c Unwind@10163f3c undefined Unwind@10163f3c(void) 8 1 +10163f60 Unwind@10163f60 undefined Unwind@10163f60(void) 17 1 +10163f71 Unwind@10163f71 undefined Unwind@10163f71(void) 8 1 +10163f79 Unwind@10163f79 undefined Unwind@10163f79(void) 8 1 +10163f81 Unwind@10163f81 undefined Unwind@10163f81(void) 11 1 +10163f8c Unwind@10163f8c undefined Unwind@10163f8c(void) 8 1 +10163fb0 Unwind@10163fb0 undefined Unwind@10163fb0(void) 17 1 +10163fc1 Unwind@10163fc1 undefined Unwind@10163fc1(void) 8 1 +10163fc9 Unwind@10163fc9 undefined Unwind@10163fc9(void) 8 1 +10163fd1 Unwind@10163fd1 undefined Unwind@10163fd1(void) 11 1 +10163fdc Unwind@10163fdc undefined Unwind@10163fdc(void) 8 1 +10164000 Unwind@10164000 undefined Unwind@10164000(void) 8 1 +10164008 Unwind@10164008 undefined Unwind@10164008(void) 11 1 +10164013 Unwind@10164013 undefined Unwind@10164013(void) 8 1 +1016401b Unwind@1016401b undefined Unwind@1016401b(void) 8 1 +10164023 Unwind@10164023 undefined Unwind@10164023(void) 8 1 +10164050 Unwind@10164050 undefined Unwind@10164050(void) 8 1 +10164058 Unwind@10164058 undefined Unwind@10164058(void) 11 1 +10164063 Unwind@10164063 undefined Unwind@10164063(void) 8 1 +1016406b Unwind@1016406b undefined Unwind@1016406b(void) 8 1 +10164073 Unwind@10164073 undefined Unwind@10164073(void) 8 1 +101640a0 Unwind@101640a0 undefined Unwind@101640a0(void) 8 1 +101640a8 Unwind@101640a8 undefined Unwind@101640a8(void) 11 1 +101640b3 Unwind@101640b3 undefined Unwind@101640b3(void) 8 1 +101640bb Unwind@101640bb undefined Unwind@101640bb(void) 8 1 +101640c3 Unwind@101640c3 undefined Unwind@101640c3(void) 8 1 +101640f0 Unwind@101640f0 undefined Unwind@101640f0(void) 17 1 +10164101 Unwind@10164101 undefined Unwind@10164101(void) 8 1 +10164109 Unwind@10164109 undefined Unwind@10164109(void) 8 1 +10164111 Unwind@10164111 undefined Unwind@10164111(void) 11 1 +1016411c Unwind@1016411c undefined Unwind@1016411c(void) 8 1 +10164140 Unwind@10164140 undefined Unwind@10164140(void) 17 1 +10164151 Unwind@10164151 undefined Unwind@10164151(void) 8 1 +10164159 Unwind@10164159 undefined Unwind@10164159(void) 8 1 +10164161 Unwind@10164161 undefined Unwind@10164161(void) 11 1 +1016416c Unwind@1016416c undefined Unwind@1016416c(void) 8 1 +10164190 Unwind@10164190 undefined Unwind@10164190(void) 17 1 +101641a1 Unwind@101641a1 undefined Unwind@101641a1(void) 8 1 +101641a9 Unwind@101641a9 undefined Unwind@101641a9(void) 8 1 +101641b1 Unwind@101641b1 undefined Unwind@101641b1(void) 11 1 +101641bc Unwind@101641bc undefined Unwind@101641bc(void) 8 1 +101641e0 Unwind@101641e0 undefined Unwind@101641e0(void) 8 1 +10164210 Unwind@10164210 undefined Unwind@10164210(void) 8 1 +10164218 Unwind@10164218 undefined Unwind@10164218(void) 11 1 +10164223 Unwind@10164223 undefined Unwind@10164223(void) 8 1 +1016422b Unwind@1016422b undefined Unwind@1016422b(void) 8 1 +10164233 Unwind@10164233 undefined Unwind@10164233(void) 8 1 +10164260 Unwind@10164260 undefined Unwind@10164260(void) 8 1 +10164268 Unwind@10164268 undefined Unwind@10164268(void) 11 1 +10164273 Unwind@10164273 undefined Unwind@10164273(void) 8 1 +1016427b Unwind@1016427b undefined Unwind@1016427b(void) 8 1 +10164283 Unwind@10164283 undefined Unwind@10164283(void) 8 1 +101642b0 Unwind@101642b0 undefined Unwind@101642b0(void) 8 1 +101642b8 Unwind@101642b8 undefined Unwind@101642b8(void) 11 1 +101642c3 Unwind@101642c3 undefined Unwind@101642c3(void) 8 1 +101642cb Unwind@101642cb undefined Unwind@101642cb(void) 8 1 +101642d3 Unwind@101642d3 undefined Unwind@101642d3(void) 8 1 +10164300 Unwind@10164300 undefined Unwind@10164300(void) 9 0 +10164330 Unwind@10164330 undefined Unwind@10164330(void) 9 0 +10164360 Unwind@10164360 undefined Unwind@10164360(void) 9 0 +10164390 Unwind@10164390 undefined Unwind@10164390(void) 8 1 +10164398 Unwind@10164398 undefined Unwind@10164398(void) 8 1 +101643c0 Unwind@101643c0 undefined Unwind@101643c0(void) 8 1 +101643c8 Unwind@101643c8 undefined Unwind@101643c8(void) 11 1 +101643d3 Unwind@101643d3 undefined Unwind@101643d3(void) 11 1 +101643de Unwind@101643de undefined Unwind@101643de(void) 8 1 +101643e6 Unwind@101643e6 undefined Unwind@101643e6(void) 8 1 +101643ee Unwind@101643ee undefined Unwind@101643ee(void) 8 1 +101643f6 Unwind@101643f6 undefined Unwind@101643f6(void) 8 1 +101643fe Unwind@101643fe undefined Unwind@101643fe(void) 8 1 +10164430 Unwind@10164430 undefined Unwind@10164430(void) 8 1 +10164438 Unwind@10164438 undefined Unwind@10164438(void) 8 1 +10164440 Unwind@10164440 undefined Unwind@10164440(void) 9 0 +10164470 Unwind@10164470 undefined Unwind@10164470(void) 8 1 +10164478 Unwind@10164478 undefined Unwind@10164478(void) 11 1 +10164483 Unwind@10164483 undefined Unwind@10164483(void) 8 1 +1016448b Unwind@1016448b undefined Unwind@1016448b(void) 8 1 +10164493 Unwind@10164493 undefined Unwind@10164493(void) 8 1 +101644e0 Unwind@101644e0 undefined Unwind@101644e0(void) 8 1 +101644e8 Unwind@101644e8 undefined Unwind@101644e8(void) 8 1 +101644f0 Unwind@101644f0 undefined Unwind@101644f0(void) 8 1 +101644f8 Unwind@101644f8 undefined Unwind@101644f8(void) 8 1 +10164500 Unwind@10164500 undefined Unwind@10164500(void) 11 1 +1016450b Unwind@1016450b undefined Unwind@1016450b(void) 8 1 +10164513 Unwind@10164513 undefined Unwind@10164513(void) 8 1 +1016451b Unwind@1016451b undefined Unwind@1016451b(void) 11 1 +10164526 Unwind@10164526 undefined Unwind@10164526(void) 9 0 +1016452f Unwind@1016452f undefined Unwind@1016452f(void) 9 0 +10164560 Unwind@10164560 undefined Unwind@10164560(void) 8 1 +10164568 Unwind@10164568 undefined Unwind@10164568(void) 8 1 +10164570 Unwind@10164570 undefined Unwind@10164570(void) 8 1 +10164578 Unwind@10164578 undefined Unwind@10164578(void) 8 1 +10164580 Unwind@10164580 undefined Unwind@10164580(void) 8 1 +10164588 Unwind@10164588 undefined Unwind@10164588(void) 8 1 +10164590 Unwind@10164590 undefined Unwind@10164590(void) 8 1 +10164598 Unwind@10164598 undefined Unwind@10164598(void) 8 1 +101645a0 Unwind@101645a0 undefined Unwind@101645a0(void) 8 1 +101645a8 Unwind@101645a8 undefined Unwind@101645a8(void) 8 1 +101645b0 Unwind@101645b0 undefined Unwind@101645b0(void) 8 1 +101645b8 Unwind@101645b8 undefined Unwind@101645b8(void) 8 1 +101645c0 Unwind@101645c0 undefined Unwind@101645c0(void) 8 1 +101645c8 Unwind@101645c8 undefined Unwind@101645c8(void) 8 1 +101645d0 Unwind@101645d0 undefined Unwind@101645d0(void) 8 1 +101645d8 Unwind@101645d8 undefined Unwind@101645d8(void) 8 1 +101645e0 Unwind@101645e0 undefined Unwind@101645e0(void) 8 1 +101645e8 Unwind@101645e8 undefined Unwind@101645e8(void) 9 0 +10164610 Unwind@10164610 undefined Unwind@10164610(void) 8 1 +10164618 Unwind@10164618 undefined Unwind@10164618(void) 8 1 +10164620 Unwind@10164620 undefined Unwind@10164620(void) 8 1 +10164628 Unwind@10164628 undefined Unwind@10164628(void) 8 1 +10164630 Unwind@10164630 undefined Unwind@10164630(void) 8 1 +10164638 Unwind@10164638 undefined Unwind@10164638(void) 8 1 +10164640 Unwind@10164640 undefined Unwind@10164640(void) 8 1 +10164648 Unwind@10164648 undefined Unwind@10164648(void) 8 1 +10164650 Unwind@10164650 undefined Unwind@10164650(void) 8 1 +10164658 Unwind@10164658 undefined Unwind@10164658(void) 8 1 +10164660 Unwind@10164660 undefined Unwind@10164660(void) 8 1 +10164668 Unwind@10164668 undefined Unwind@10164668(void) 8 1 +10164670 Unwind@10164670 undefined Unwind@10164670(void) 8 1 +10164678 Unwind@10164678 undefined Unwind@10164678(void) 9 0 +101646a0 Unwind@101646a0 undefined Unwind@101646a0(void) 8 1 +101646a8 Unwind@101646a8 undefined Unwind@101646a8(void) 11 1 +101646b3 Unwind@101646b3 undefined Unwind@101646b3(void) 8 1 +101646bb Unwind@101646bb undefined Unwind@101646bb(void) 8 1 +101646c3 Unwind@101646c3 undefined Unwind@101646c3(void) 8 1 +101646f0 Unwind@101646f0 undefined Unwind@101646f0(void) 8 1 +101646f8 Unwind@101646f8 undefined Unwind@101646f8(void) 11 1 +10164703 Unwind@10164703 undefined Unwind@10164703(void) 8 1 +1016470b Unwind@1016470b undefined Unwind@1016470b(void) 8 1 +10164713 Unwind@10164713 undefined Unwind@10164713(void) 8 1 +10164740 Unwind@10164740 undefined Unwind@10164740(void) 8 1 +10164748 Unwind@10164748 undefined Unwind@10164748(void) 9 0 +10164770 Unwind@10164770 undefined Unwind@10164770(void) 8 1 +101647a0 Unwind@101647a0 undefined Unwind@101647a0(void) 8 1 +101647d0 Unwind@101647d0 undefined Unwind@101647d0(void) 8 1 +101647d8 Unwind@101647d8 undefined Unwind@101647d8(void) 8 1 +10164800 Unwind@10164800 undefined Unwind@10164800(void) 8 1 +10164808 Unwind@10164808 undefined Unwind@10164808(void) 8 1 +10164810 Unwind@10164810 undefined Unwind@10164810(void) 8 1 +10164840 Unwind@10164840 undefined Unwind@10164840(void) 11 1 +1016484b Unwind@1016484b undefined Unwind@1016484b(void) 8 1 +10164853 Unwind@10164853 undefined Unwind@10164853(void) 8 1 +1016485b Unwind@1016485b undefined Unwind@1016485b(void) 8 1 +10164880 Unwind@10164880 undefined Unwind@10164880(void) 8 1 +10164888 Unwind@10164888 undefined Unwind@10164888(void) 8 1 +10164890 Unwind@10164890 undefined Unwind@10164890(void) 9 0 +101648c0 Unwind@101648c0 undefined Unwind@101648c0(void) 8 1 +101648c8 Unwind@101648c8 undefined Unwind@101648c8(void) 8 1 +101648f0 Unwind@101648f0 undefined Unwind@101648f0(void) 11 1 +101648fb Unwind@101648fb undefined Unwind@101648fb(void) 8 1 +10164903 Unwind@10164903 undefined Unwind@10164903(void) 8 1 +1016490b Unwind@1016490b undefined Unwind@1016490b(void) 8 1 +10164930 Unwind@10164930 undefined Unwind@10164930(void) 8 1 +10164938 Unwind@10164938 undefined Unwind@10164938(void) 8 1 +10164940 Unwind@10164940 undefined Unwind@10164940(void) 11 1 +10164970 Unwind@10164970 undefined Unwind@10164970(void) 8 1 +10164978 Unwind@10164978 undefined Unwind@10164978(void) 8 1 +10164980 Unwind@10164980 undefined Unwind@10164980(void) 8 1 +10164988 Unwind@10164988 undefined Unwind@10164988(void) 9 0 +101649b0 Unwind@101649b0 undefined Unwind@101649b0(void) 8 1 +101649b8 Unwind@101649b8 undefined Unwind@101649b8(void) 11 1 +101649c3 Unwind@101649c3 undefined Unwind@101649c3(void) 8 1 +101649cb Unwind@101649cb undefined Unwind@101649cb(void) 8 1 +101649d3 Unwind@101649d3 undefined Unwind@101649d3(void) 8 1 +10164a00 Unwind@10164a00 undefined Unwind@10164a00(void) 8 1 +10164a30 Unwind@10164a30 undefined Unwind@10164a30(void) 8 1 +10164a38 Unwind@10164a38 undefined Unwind@10164a38(void) 8 1 +10164a40 Unwind@10164a40 undefined Unwind@10164a40(void) 11 1 +10164a70 Unwind@10164a70 undefined Unwind@10164a70(void) 8 1 +10164a78 Unwind@10164a78 undefined Unwind@10164a78(void) 11 1 +10164a83 Unwind@10164a83 undefined Unwind@10164a83(void) 8 1 +10164a8b Unwind@10164a8b undefined Unwind@10164a8b(void) 8 1 +10164a93 Unwind@10164a93 undefined Unwind@10164a93(void) 8 1 +10164ac0 Unwind@10164ac0 undefined Unwind@10164ac0(void) 8 1 +10164ac8 Unwind@10164ac8 undefined Unwind@10164ac8(void) 8 1 +10164ad0 Unwind@10164ad0 undefined Unwind@10164ad0(void) 11 1 +10164adb Unwind@10164adb undefined Unwind@10164adb(void) 8 1 +10164b00 Unwind@10164b00 undefined Unwind@10164b00(void) 8 1 +10164b08 Unwind@10164b08 undefined Unwind@10164b08(void) 8 1 +10164b30 Unwind@10164b30 undefined Unwind@10164b30(void) 11 1 +10164b3b Unwind@10164b3b undefined Unwind@10164b3b(void) 11 1 +10164b46 Unwind@10164b46 undefined Unwind@10164b46(void) 11 1 +10164b51 Unwind@10164b51 undefined Unwind@10164b51(void) 11 1 +10164b5c Unwind@10164b5c undefined Unwind@10164b5c(void) 11 1 +10164b67 Unwind@10164b67 undefined Unwind@10164b67(void) 11 1 +10164b72 Unwind@10164b72 undefined Unwind@10164b72(void) 11 1 +10164b7d Unwind@10164b7d undefined Unwind@10164b7d(void) 8 1 +10164b85 Unwind@10164b85 undefined Unwind@10164b85(void) 8 1 +10164b8d Unwind@10164b8d undefined Unwind@10164b8d(void) 8 1 +10164b95 Unwind@10164b95 undefined Unwind@10164b95(void) 8 1 +10164b9d Unwind@10164b9d undefined Unwind@10164b9d(void) 8 1 +10164ba5 Unwind@10164ba5 undefined Unwind@10164ba5(void) 8 1 +10164bad Unwind@10164bad undefined Unwind@10164bad(void) 8 1 +10164bb5 Unwind@10164bb5 undefined Unwind@10164bb5(void) 8 1 +10164bbd Unwind@10164bbd undefined Unwind@10164bbd(void) 8 1 +10164bc5 Unwind@10164bc5 undefined Unwind@10164bc5(void) 8 1 +10164bcd Unwind@10164bcd undefined Unwind@10164bcd(void) 8 1 +10164bd5 Unwind@10164bd5 undefined Unwind@10164bd5(void) 8 1 +10164c00 Unwind@10164c00 undefined Unwind@10164c00(void) 8 1 +10164c08 Unwind@10164c08 undefined Unwind@10164c08(void) 8 1 +10164c10 Unwind@10164c10 undefined Unwind@10164c10(void) 9 0 +10164c40 Unwind@10164c40 undefined Unwind@10164c40(void) 8 1 +10164c48 Unwind@10164c48 undefined Unwind@10164c48(void) 8 1 +10164c50 Unwind@10164c50 undefined Unwind@10164c50(void) 11 1 +10164c5b Unwind@10164c5b undefined Unwind@10164c5b(void) 8 1 +10164c80 Unwind@10164c80 undefined Unwind@10164c80(void) 8 1 +10164c88 Unwind@10164c88 undefined Unwind@10164c88(void) 11 1 +10164c93 Unwind@10164c93 undefined Unwind@10164c93(void) 8 1 +10164c9b Unwind@10164c9b undefined Unwind@10164c9b(void) 8 1 +10164ca3 Unwind@10164ca3 undefined Unwind@10164ca3(void) 8 1 +10164cd0 Unwind@10164cd0 undefined Unwind@10164cd0(void) 17 1 +10164ce1 Unwind@10164ce1 undefined Unwind@10164ce1(void) 8 1 +10164ce9 Unwind@10164ce9 undefined Unwind@10164ce9(void) 8 1 +10164cf1 Unwind@10164cf1 undefined Unwind@10164cf1(void) 11 1 +10164cfc Unwind@10164cfc undefined Unwind@10164cfc(void) 8 1 +10164d20 Unwind@10164d20 undefined Unwind@10164d20(void) 8 1 +10164d28 Unwind@10164d28 undefined Unwind@10164d28(void) 8 1 +10164d30 Unwind@10164d30 undefined Unwind@10164d30(void) 11 1 +10164d3b Unwind@10164d3b undefined Unwind@10164d3b(void) 8 1 +10164d43 Unwind@10164d43 undefined Unwind@10164d43(void) 8 1 +10164d4b Unwind@10164d4b undefined Unwind@10164d4b(void) 11 1 +10164d56 Unwind@10164d56 undefined Unwind@10164d56(void) 8 1 +10164d5e Unwind@10164d5e undefined Unwind@10164d5e(void) 8 1 +10164d66 Unwind@10164d66 undefined Unwind@10164d66(void) 11 1 +10164d71 Unwind@10164d71 undefined Unwind@10164d71(void) 8 1 +10164d79 Unwind@10164d79 undefined Unwind@10164d79(void) 8 1 +10164d81 Unwind@10164d81 undefined Unwind@10164d81(void) 11 1 +10164d8c Unwind@10164d8c undefined Unwind@10164d8c(void) 8 1 +10164d94 Unwind@10164d94 undefined Unwind@10164d94(void) 8 1 +10164d9c Unwind@10164d9c undefined Unwind@10164d9c(void) 11 1 +10164da7 Unwind@10164da7 undefined Unwind@10164da7(void) 8 1 +10164daf Unwind@10164daf undefined Unwind@10164daf(void) 8 1 +10164db7 Unwind@10164db7 undefined Unwind@10164db7(void) 11 1 +10164dc2 Unwind@10164dc2 undefined Unwind@10164dc2(void) 11 1 +10164dcd Unwind@10164dcd undefined Unwind@10164dcd(void) 9 0 +10164dd6 Unwind@10164dd6 undefined Unwind@10164dd6(void) 9 0 +10164ddf Unwind@10164ddf undefined Unwind@10164ddf(void) 9 0 +10164de8 Unwind@10164de8 undefined Unwind@10164de8(void) 9 0 +10164df1 Unwind@10164df1 undefined Unwind@10164df1(void) 9 0 +10164dfa Unwind@10164dfa undefined Unwind@10164dfa(void) 9 0 +10164e20 Unwind@10164e20 undefined Unwind@10164e20(void) 8 1 +10164e28 Unwind@10164e28 undefined Unwind@10164e28(void) 8 1 +10164e30 Unwind@10164e30 undefined Unwind@10164e30(void) 11 1 +10164e3b Unwind@10164e3b undefined Unwind@10164e3b(void) 8 1 +10164e43 Unwind@10164e43 undefined Unwind@10164e43(void) 25 1 +10164e80 Unwind@10164e80 undefined Unwind@10164e80(void) 8 1 +10164e88 Unwind@10164e88 undefined Unwind@10164e88(void) 11 1 +10164e93 Unwind@10164e93 undefined Unwind@10164e93(void) 8 1 +10164e9b Unwind@10164e9b undefined Unwind@10164e9b(void) 8 1 +10164ea3 Unwind@10164ea3 undefined Unwind@10164ea3(void) 8 1 +10164ed0 Unwind@10164ed0 undefined Unwind@10164ed0(void) 17 1 +10164ee1 Unwind@10164ee1 undefined Unwind@10164ee1(void) 8 1 +10164ee9 Unwind@10164ee9 undefined Unwind@10164ee9(void) 8 1 +10164ef1 Unwind@10164ef1 undefined Unwind@10164ef1(void) 11 1 +10164efc Unwind@10164efc undefined Unwind@10164efc(void) 8 1 +10164f20 Unwind@10164f20 undefined Unwind@10164f20(void) 8 1 +10164f28 Unwind@10164f28 undefined Unwind@10164f28(void) 11 1 +10164f33 Unwind@10164f33 undefined Unwind@10164f33(void) 8 1 +10164f3b Unwind@10164f3b undefined Unwind@10164f3b(void) 8 1 +10164f43 Unwind@10164f43 undefined Unwind@10164f43(void) 8 1 +10164f70 Unwind@10164f70 undefined Unwind@10164f70(void) 9 0 +10164fa0 Unwind@10164fa0 undefined Unwind@10164fa0(void) 8 1 +10164fa8 Unwind@10164fa8 undefined Unwind@10164fa8(void) 11 1 +10164fb3 Unwind@10164fb3 undefined Unwind@10164fb3(void) 8 1 +10164fbb Unwind@10164fbb undefined Unwind@10164fbb(void) 8 1 +10164fc3 Unwind@10164fc3 undefined Unwind@10164fc3(void) 8 1 +10164ff0 Unwind@10164ff0 undefined Unwind@10164ff0(void) 8 1 +10164ff8 Unwind@10164ff8 undefined Unwind@10164ff8(void) 11 1 +10165003 Unwind@10165003 undefined Unwind@10165003(void) 8 1 +1016500b Unwind@1016500b undefined Unwind@1016500b(void) 8 1 +10165013 Unwind@10165013 undefined Unwind@10165013(void) 8 1 +10165040 Unwind@10165040 undefined Unwind@10165040(void) 8 1 +10165048 Unwind@10165048 undefined Unwind@10165048(void) 11 1 +10165053 Unwind@10165053 undefined Unwind@10165053(void) 8 1 +1016505b Unwind@1016505b undefined Unwind@1016505b(void) 8 1 +10165063 Unwind@10165063 undefined Unwind@10165063(void) 8 1 +10165090 Unwind@10165090 undefined Unwind@10165090(void) 8 1 +10165098 Unwind@10165098 undefined Unwind@10165098(void) 11 1 +101650a3 Unwind@101650a3 undefined Unwind@101650a3(void) 8 1 +101650ab Unwind@101650ab undefined Unwind@101650ab(void) 8 1 +101650b3 Unwind@101650b3 undefined Unwind@101650b3(void) 8 1 +101650e0 Unwind@101650e0 undefined Unwind@101650e0(void) 8 1 +101650e8 Unwind@101650e8 undefined Unwind@101650e8(void) 8 1 +101650f0 Unwind@101650f0 undefined Unwind@101650f0(void) 8 1 +101650f8 Unwind@101650f8 undefined Unwind@101650f8(void) 8 1 +10165100 Unwind@10165100 undefined Unwind@10165100(void) 8 1 +10165108 Unwind@10165108 undefined Unwind@10165108(void) 8 1 +10165110 Unwind@10165110 undefined Unwind@10165110(void) 8 1 +10165118 Unwind@10165118 undefined Unwind@10165118(void) 8 1 +10165120 Unwind@10165120 undefined Unwind@10165120(void) 8 1 +10165128 Unwind@10165128 undefined Unwind@10165128(void) 8 1 +10165130 Unwind@10165130 undefined Unwind@10165130(void) 8 1 +10165138 Unwind@10165138 undefined Unwind@10165138(void) 8 1 +10165140 Unwind@10165140 undefined Unwind@10165140(void) 8 1 +10165148 Unwind@10165148 undefined Unwind@10165148(void) 9 0 +10165170 Unwind@10165170 undefined Unwind@10165170(void) 8 1 +101651a0 Unwind@101651a0 undefined Unwind@101651a0(void) 8 1 +101651a8 Unwind@101651a8 undefined Unwind@101651a8(void) 8 1 +101651d0 Unwind@101651d0 undefined Unwind@101651d0(void) 8 1 +101651d8 Unwind@101651d8 undefined Unwind@101651d8(void) 8 1 +101651e0 Unwind@101651e0 undefined Unwind@101651e0(void) 9 0 +10165210 Unwind@10165210 undefined Unwind@10165210(void) 8 1 +10165218 Unwind@10165218 undefined Unwind@10165218(void) 8 1 +10165220 Unwind@10165220 undefined Unwind@10165220(void) 11 1 +1016522b Unwind@1016522b undefined Unwind@1016522b(void) 9 0 +10165250 Unwind@10165250 undefined Unwind@10165250(void) 11 1 +1016525b Unwind@1016525b undefined Unwind@1016525b(void) 8 1 +10165263 Unwind@10165263 undefined Unwind@10165263(void) 8 1 +10165290 Unwind@10165290 undefined Unwind@10165290(void) 14 1 +1016529e Unwind@1016529e undefined Unwind@1016529e(void) 14 1 +101652ac Unwind@101652ac undefined Unwind@101652ac(void) 14 1 +101652ba Unwind@101652ba undefined Unwind@101652ba(void) 14 1 +101652c8 Unwind@101652c8 undefined Unwind@101652c8(void) 14 1 +101652d6 Unwind@101652d6 undefined Unwind@101652d6(void) 14 1 +101652e4 Unwind@101652e4 undefined Unwind@101652e4(void) 14 1 +101652f2 Unwind@101652f2 undefined Unwind@101652f2(void) 14 1 +10165300 Unwind@10165300 undefined Unwind@10165300(void) 14 1 +1016530e Unwind@1016530e undefined Unwind@1016530e(void) 14 1 +1016531c Unwind@1016531c undefined Unwind@1016531c(void) 14 1 +1016532a Unwind@1016532a undefined Unwind@1016532a(void) 14 1 +10165338 Unwind@10165338 undefined Unwind@10165338(void) 14 1 +10165346 Unwind@10165346 undefined Unwind@10165346(void) 14 1 +10165354 Unwind@10165354 undefined Unwind@10165354(void) 14 1 +10165362 Unwind@10165362 undefined Unwind@10165362(void) 14 1 +10165370 Unwind@10165370 undefined Unwind@10165370(void) 14 1 +1016537e Unwind@1016537e undefined Unwind@1016537e(void) 14 1 +1016538c Unwind@1016538c undefined Unwind@1016538c(void) 14 1 +1016539a Unwind@1016539a undefined Unwind@1016539a(void) 14 1 +101653a8 Unwind@101653a8 undefined Unwind@101653a8(void) 14 1 +101653b6 Unwind@101653b6 undefined Unwind@101653b6(void) 14 1 +101653c4 Unwind@101653c4 undefined Unwind@101653c4(void) 14 1 +101653d2 Unwind@101653d2 undefined Unwind@101653d2(void) 14 1 +101653e0 Unwind@101653e0 undefined Unwind@101653e0(void) 14 1 +101653ee Unwind@101653ee undefined Unwind@101653ee(void) 14 1 +101653fc Unwind@101653fc undefined Unwind@101653fc(void) 14 1 +1016540a Unwind@1016540a undefined Unwind@1016540a(void) 14 1 +10165418 Unwind@10165418 undefined Unwind@10165418(void) 14 1 +10165426 Unwind@10165426 undefined Unwind@10165426(void) 14 1 +10165434 Unwind@10165434 undefined Unwind@10165434(void) 14 1 +10165442 Unwind@10165442 undefined Unwind@10165442(void) 14 1 +10165450 Unwind@10165450 undefined Unwind@10165450(void) 14 1 +1016545e Unwind@1016545e undefined Unwind@1016545e(void) 14 1 +1016546c Unwind@1016546c undefined Unwind@1016546c(void) 14 1 +1016547a Unwind@1016547a undefined Unwind@1016547a(void) 14 1 +10165488 Unwind@10165488 undefined Unwind@10165488(void) 14 1 +10165496 Unwind@10165496 undefined Unwind@10165496(void) 14 1 +101654a4 Unwind@101654a4 undefined Unwind@101654a4(void) 14 1 +101654b2 Unwind@101654b2 undefined Unwind@101654b2(void) 14 1 +101654c0 Unwind@101654c0 undefined Unwind@101654c0(void) 14 1 +101654ce Unwind@101654ce undefined Unwind@101654ce(void) 14 1 +101654dc Unwind@101654dc undefined Unwind@101654dc(void) 14 1 +101654ea Unwind@101654ea undefined Unwind@101654ea(void) 14 1 +101654f8 Unwind@101654f8 undefined Unwind@101654f8(void) 14 1 +10165506 Unwind@10165506 undefined Unwind@10165506(void) 14 1 +10165514 Unwind@10165514 undefined Unwind@10165514(void) 14 1 +10165522 Unwind@10165522 undefined Unwind@10165522(void) 14 1 +10165530 Unwind@10165530 undefined Unwind@10165530(void) 14 1 +1016553e Unwind@1016553e undefined Unwind@1016553e(void) 14 1 +1016554c Unwind@1016554c undefined Unwind@1016554c(void) 14 1 +1016555a Unwind@1016555a undefined Unwind@1016555a(void) 14 1 +10165568 Unwind@10165568 undefined Unwind@10165568(void) 14 1 +10165576 Unwind@10165576 undefined Unwind@10165576(void) 14 1 +10165584 Unwind@10165584 undefined Unwind@10165584(void) 14 1 +10165592 Unwind@10165592 undefined Unwind@10165592(void) 14 1 +101655a0 Unwind@101655a0 undefined Unwind@101655a0(void) 14 1 +101655ae Unwind@101655ae undefined Unwind@101655ae(void) 14 1 +101655bc Unwind@101655bc undefined Unwind@101655bc(void) 14 1 +101655ca Unwind@101655ca undefined Unwind@101655ca(void) 14 1 +101655d8 Unwind@101655d8 undefined Unwind@101655d8(void) 14 1 +101655e6 Unwind@101655e6 undefined Unwind@101655e6(void) 14 1 +101655f4 Unwind@101655f4 undefined Unwind@101655f4(void) 14 1 +10165602 Unwind@10165602 undefined Unwind@10165602(void) 14 1 +10165610 Unwind@10165610 undefined Unwind@10165610(void) 14 0 +1016561e Unwind@1016561e undefined Unwind@1016561e(void) 14 0 +1016562c Unwind@1016562c undefined Unwind@1016562c(void) 14 0 +1016563a Unwind@1016563a undefined Unwind@1016563a(void) 8 1 +10165642 Unwind@10165642 undefined Unwind@10165642(void) 14 0 +10165650 Unwind@10165650 undefined Unwind@10165650(void) 14 0 +1016565e Unwind@1016565e undefined Unwind@1016565e(void) 8 1 +10165666 Unwind@10165666 undefined Unwind@10165666(void) 14 0 +10165674 Unwind@10165674 undefined Unwind@10165674(void) 14 0 +10165682 Unwind@10165682 undefined Unwind@10165682(void) 14 0 +10165690 Unwind@10165690 undefined Unwind@10165690(void) 14 0 +1016569e Unwind@1016569e undefined Unwind@1016569e(void) 14 0 +101656ac Unwind@101656ac undefined Unwind@101656ac(void) 8 1 +101656b4 Unwind@101656b4 undefined Unwind@101656b4(void) 8 1 +101656bc Unwind@101656bc undefined Unwind@101656bc(void) 8 1 +101656c4 Unwind@101656c4 undefined Unwind@101656c4(void) 8 1 +101656cc Unwind@101656cc undefined Unwind@101656cc(void) 8 1 +101656d4 Unwind@101656d4 undefined Unwind@101656d4(void) 8 1 +101656dc Unwind@101656dc undefined Unwind@101656dc(void) 8 1 +101656e4 Unwind@101656e4 undefined Unwind@101656e4(void) 8 1 +101656ec Unwind@101656ec undefined Unwind@101656ec(void) 8 1 +101656f4 Unwind@101656f4 undefined Unwind@101656f4(void) 8 1 +101656fc Unwind@101656fc undefined Unwind@101656fc(void) 8 1 +10165704 Unwind@10165704 undefined Unwind@10165704(void) 8 1 +1016570c Unwind@1016570c undefined Unwind@1016570c(void) 8 1 +10165714 Unwind@10165714 undefined Unwind@10165714(void) 8 1 +1016571c Unwind@1016571c undefined Unwind@1016571c(void) 8 1 +10165724 Unwind@10165724 undefined Unwind@10165724(void) 8 1 +1016572c Unwind@1016572c undefined Unwind@1016572c(void) 8 1 +10165734 Unwind@10165734 undefined Unwind@10165734(void) 8 1 +1016573c Unwind@1016573c undefined Unwind@1016573c(void) 8 1 +10165744 Unwind@10165744 undefined Unwind@10165744(void) 8 1 +1016574c Unwind@1016574c undefined Unwind@1016574c(void) 8 1 +10165754 Unwind@10165754 undefined Unwind@10165754(void) 8 1 +1016575c Unwind@1016575c undefined Unwind@1016575c(void) 8 1 +10165764 Unwind@10165764 undefined Unwind@10165764(void) 8 1 +1016576c Unwind@1016576c undefined Unwind@1016576c(void) 8 1 +10165774 Unwind@10165774 undefined Unwind@10165774(void) 8 1 +1016577c Unwind@1016577c undefined Unwind@1016577c(void) 8 1 +10165784 Unwind@10165784 undefined Unwind@10165784(void) 8 1 +1016578c Unwind@1016578c undefined Unwind@1016578c(void) 8 1 +10165794 Unwind@10165794 undefined Unwind@10165794(void) 8 1 +1016579c Unwind@1016579c undefined Unwind@1016579c(void) 11 1 +101657a7 Unwind@101657a7 undefined Unwind@101657a7(void) 8 1 +101657af Unwind@101657af undefined Unwind@101657af(void) 8 1 +101657b7 Unwind@101657b7 undefined Unwind@101657b7(void) 8 1 +101657bf Unwind@101657bf undefined Unwind@101657bf(void) 8 1 +101657c7 Unwind@101657c7 undefined Unwind@101657c7(void) 8 1 +101657cf Unwind@101657cf undefined Unwind@101657cf(void) 8 1 +101657d7 Unwind@101657d7 undefined Unwind@101657d7(void) 8 1 +101657df Unwind@101657df undefined Unwind@101657df(void) 11 1 +101657ea Unwind@101657ea undefined Unwind@101657ea(void) 8 1 +101657f2 Unwind@101657f2 undefined Unwind@101657f2(void) 8 1 +101657fa Unwind@101657fa undefined Unwind@101657fa(void) 8 1 +10165802 Unwind@10165802 undefined Unwind@10165802(void) 8 1 +1016580a Unwind@1016580a undefined Unwind@1016580a(void) 8 1 +10165812 Unwind@10165812 undefined Unwind@10165812(void) 8 1 +1016581a Unwind@1016581a undefined Unwind@1016581a(void) 11 1 +10165825 Unwind@10165825 undefined Unwind@10165825(void) 8 1 +1016582d Unwind@1016582d undefined Unwind@1016582d(void) 8 1 +10165835 Unwind@10165835 undefined Unwind@10165835(void) 9 0 +1016583e Unwind@1016583e undefined Unwind@1016583e(void) 8 1 +10165846 Unwind@10165846 undefined Unwind@10165846(void) 8 1 +1016584e Unwind@1016584e undefined Unwind@1016584e(void) 8 1 +10165856 Unwind@10165856 undefined Unwind@10165856(void) 8 1 +1016585e Unwind@1016585e undefined Unwind@1016585e(void) 8 1 +10165866 Unwind@10165866 undefined Unwind@10165866(void) 8 1 +1016586e Unwind@1016586e undefined Unwind@1016586e(void) 8 1 +10165876 Unwind@10165876 undefined Unwind@10165876(void) 11 1 +10165881 Unwind@10165881 undefined Unwind@10165881(void) 11 1 +1016588c Unwind@1016588c undefined Unwind@1016588c(void) 8 1 +10165894 Unwind@10165894 undefined Unwind@10165894(void) 8 1 +1016589c Unwind@1016589c undefined Unwind@1016589c(void) 8 1 +101658a4 Unwind@101658a4 undefined Unwind@101658a4(void) 8 1 +101658ac Unwind@101658ac undefined Unwind@101658ac(void) 8 1 +101658b4 Unwind@101658b4 undefined Unwind@101658b4(void) 8 1 +101658bc Unwind@101658bc undefined Unwind@101658bc(void) 8 1 +101658c4 Unwind@101658c4 undefined Unwind@101658c4(void) 8 1 +101658cc Unwind@101658cc undefined Unwind@101658cc(void) 8 1 +101658d4 Unwind@101658d4 undefined Unwind@101658d4(void) 8 1 +101658dc Unwind@101658dc undefined Unwind@101658dc(void) 8 1 +101658e4 Unwind@101658e4 undefined Unwind@101658e4(void) 8 1 +101658ec Unwind@101658ec undefined Unwind@101658ec(void) 9 0 +101658f5 Unwind@101658f5 undefined Unwind@101658f5(void) 8 1 +101658fd Unwind@101658fd undefined Unwind@101658fd(void) 8 1 +10165905 Unwind@10165905 undefined Unwind@10165905(void) 8 1 +1016590d Unwind@1016590d undefined Unwind@1016590d(void) 8 1 +10165915 Unwind@10165915 undefined Unwind@10165915(void) 8 1 +1016591d Unwind@1016591d undefined Unwind@1016591d(void) 8 1 +10165925 Unwind@10165925 undefined Unwind@10165925(void) 8 1 +1016592d Unwind@1016592d undefined Unwind@1016592d(void) 8 1 +10165935 Unwind@10165935 undefined Unwind@10165935(void) 8 1 +1016593d Unwind@1016593d undefined Unwind@1016593d(void) 8 1 +10165945 Unwind@10165945 undefined Unwind@10165945(void) 8 1 +1016594d Unwind@1016594d undefined Unwind@1016594d(void) 8 1 +10165955 Unwind@10165955 undefined Unwind@10165955(void) 8 1 +1016595d Unwind@1016595d undefined Unwind@1016595d(void) 8 1 +10165965 Unwind@10165965 undefined Unwind@10165965(void) 8 1 +1016596d Unwind@1016596d undefined Unwind@1016596d(void) 8 1 +10165975 Unwind@10165975 undefined Unwind@10165975(void) 8 1 +1016597d Unwind@1016597d undefined Unwind@1016597d(void) 8 1 +10165985 Unwind@10165985 undefined Unwind@10165985(void) 8 1 +1016598d Unwind@1016598d undefined Unwind@1016598d(void) 8 1 +10165995 Unwind@10165995 undefined Unwind@10165995(void) 8 1 +1016599d Unwind@1016599d undefined Unwind@1016599d(void) 8 1 +101659a5 Unwind@101659a5 undefined Unwind@101659a5(void) 8 1 +101659ad Unwind@101659ad undefined Unwind@101659ad(void) 8 1 +101659b5 Unwind@101659b5 undefined Unwind@101659b5(void) 8 1 +101659bd Unwind@101659bd undefined Unwind@101659bd(void) 11 1 +101659c8 Unwind@101659c8 undefined Unwind@101659c8(void) 8 1 +101659d0 Unwind@101659d0 undefined Unwind@101659d0(void) 8 1 +101659d8 Unwind@101659d8 undefined Unwind@101659d8(void) 11 1 +101659e3 Unwind@101659e3 undefined Unwind@101659e3(void) 8 1 +101659eb Unwind@101659eb undefined Unwind@101659eb(void) 8 1 +101659f3 Unwind@101659f3 undefined Unwind@101659f3(void) 8 1 +101659fb Unwind@101659fb undefined Unwind@101659fb(void) 8 1 +10165a03 Unwind@10165a03 undefined Unwind@10165a03(void) 8 1 +10165a0b Unwind@10165a0b undefined Unwind@10165a0b(void) 8 1 +10165a30 Unwind@10165a30 undefined Unwind@10165a30(void) 17 1 +10165a41 Unwind@10165a41 undefined Unwind@10165a41(void) 11 1 +10165a4c Unwind@10165a4c undefined Unwind@10165a4c(void) 11 1 +10165a57 Unwind@10165a57 undefined Unwind@10165a57(void) 17 1 +10165a68 Unwind@10165a68 undefined Unwind@10165a68(void) 11 1 +10165a73 Unwind@10165a73 undefined Unwind@10165a73(void) 11 1 +10165a7e Unwind@10165a7e undefined Unwind@10165a7e(void) 17 1 +10165a8f Unwind@10165a8f undefined Unwind@10165a8f(void) 11 1 +10165a9a Unwind@10165a9a undefined Unwind@10165a9a(void) 11 1 +10165aa5 Unwind@10165aa5 undefined Unwind@10165aa5(void) 14 1 +10165ab3 Unwind@10165ab3 undefined Unwind@10165ab3(void) 17 1 +10165ac4 Unwind@10165ac4 undefined Unwind@10165ac4(void) 11 1 +10165acf Unwind@10165acf undefined Unwind@10165acf(void) 11 1 +10165ada Unwind@10165ada undefined Unwind@10165ada(void) 14 1 +10165ae8 Unwind@10165ae8 undefined Unwind@10165ae8(void) 17 1 +10165af9 Unwind@10165af9 undefined Unwind@10165af9(void) 11 1 +10165b04 Unwind@10165b04 undefined Unwind@10165b04(void) 11 1 +10165b0f Unwind@10165b0f undefined Unwind@10165b0f(void) 17 1 +10165b20 Unwind@10165b20 undefined Unwind@10165b20(void) 11 1 +10165b2b Unwind@10165b2b undefined Unwind@10165b2b(void) 11 1 +10165b36 Unwind@10165b36 undefined Unwind@10165b36(void) 17 1 +10165b47 Unwind@10165b47 undefined Unwind@10165b47(void) 11 1 +10165b52 Unwind@10165b52 undefined Unwind@10165b52(void) 11 1 +10165b5d Unwind@10165b5d undefined Unwind@10165b5d(void) 11 1 +10165b68 Unwind@10165b68 undefined Unwind@10165b68(void) 17 1 +10165b79 Unwind@10165b79 undefined Unwind@10165b79(void) 11 1 +10165b84 Unwind@10165b84 undefined Unwind@10165b84(void) 11 1 +10165b8f Unwind@10165b8f undefined Unwind@10165b8f(void) 17 1 +10165ba0 Unwind@10165ba0 undefined Unwind@10165ba0(void) 11 1 +10165bab Unwind@10165bab undefined Unwind@10165bab(void) 11 1 +10165bb6 Unwind@10165bb6 undefined Unwind@10165bb6(void) 11 1 +10165bc1 Unwind@10165bc1 undefined Unwind@10165bc1(void) 17 1 +10165bd2 Unwind@10165bd2 undefined Unwind@10165bd2(void) 17 1 +10165be3 Unwind@10165be3 undefined Unwind@10165be3(void) 11 1 +10165bee Unwind@10165bee undefined Unwind@10165bee(void) 11 1 +10165bf9 Unwind@10165bf9 undefined Unwind@10165bf9(void) 11 1 +10165c04 Unwind@10165c04 undefined Unwind@10165c04(void) 17 1 +10165c15 Unwind@10165c15 undefined Unwind@10165c15(void) 11 1 +10165c20 Unwind@10165c20 undefined Unwind@10165c20(void) 11 1 +10165c2b Unwind@10165c2b undefined Unwind@10165c2b(void) 11 1 +10165c36 Unwind@10165c36 undefined Unwind@10165c36(void) 17 1 +10165c47 Unwind@10165c47 undefined Unwind@10165c47(void) 11 1 +10165c52 Unwind@10165c52 undefined Unwind@10165c52(void) 11 1 +10165c5d Unwind@10165c5d undefined Unwind@10165c5d(void) 11 1 +10165c68 Unwind@10165c68 undefined Unwind@10165c68(void) 17 1 +10165c79 Unwind@10165c79 undefined Unwind@10165c79(void) 11 1 +10165c84 Unwind@10165c84 undefined Unwind@10165c84(void) 11 1 +10165c8f Unwind@10165c8f undefined Unwind@10165c8f(void) 17 1 +10165ca0 Unwind@10165ca0 undefined Unwind@10165ca0(void) 11 1 +10165cab Unwind@10165cab undefined Unwind@10165cab(void) 11 1 +10165cb6 Unwind@10165cb6 undefined Unwind@10165cb6(void) 17 1 +10165cc7 Unwind@10165cc7 undefined Unwind@10165cc7(void) 11 1 +10165cd2 Unwind@10165cd2 undefined Unwind@10165cd2(void) 17 1 +10165ce3 Unwind@10165ce3 undefined Unwind@10165ce3(void) 11 1 +10165cee Unwind@10165cee undefined Unwind@10165cee(void) 11 1 +10165cf9 Unwind@10165cf9 undefined Unwind@10165cf9(void) 17 1 +10165d0a Unwind@10165d0a undefined Unwind@10165d0a(void) 12 0 +10165d16 Unwind@10165d16 undefined Unwind@10165d16(void) 23 1 +10165d2d Unwind@10165d2d undefined Unwind@10165d2d(void) 11 1 +10165d38 Unwind@10165d38 undefined Unwind@10165d38(void) 11 1 +10165d43 Unwind@10165d43 undefined Unwind@10165d43(void) 17 1 +10165d54 Unwind@10165d54 undefined Unwind@10165d54(void) 11 1 +10165d5f Unwind@10165d5f undefined Unwind@10165d5f(void) 11 1 +10165d6a Unwind@10165d6a undefined Unwind@10165d6a(void) 17 1 +10165d7b Unwind@10165d7b undefined Unwind@10165d7b(void) 11 1 +10165d86 Unwind@10165d86 undefined Unwind@10165d86(void) 17 1 +10165d97 Unwind@10165d97 undefined Unwind@10165d97(void) 11 1 +10165da2 Unwind@10165da2 undefined Unwind@10165da2(void) 11 1 +10165dad Unwind@10165dad undefined Unwind@10165dad(void) 17 1 +10165dbe Unwind@10165dbe undefined Unwind@10165dbe(void) 11 1 +10165dc9 Unwind@10165dc9 undefined Unwind@10165dc9(void) 11 1 +10165dd4 Unwind@10165dd4 undefined Unwind@10165dd4(void) 17 1 +10165de5 Unwind@10165de5 undefined Unwind@10165de5(void) 11 1 +10165df0 Unwind@10165df0 undefined Unwind@10165df0(void) 11 1 +10165dfb Unwind@10165dfb undefined Unwind@10165dfb(void) 11 1 +10165e06 Unwind@10165e06 undefined Unwind@10165e06(void) 14 1 +10165e14 Unwind@10165e14 undefined Unwind@10165e14(void) 11 1 +10165e1f Unwind@10165e1f undefined Unwind@10165e1f(void) 14 1 +10165e2d Unwind@10165e2d undefined Unwind@10165e2d(void) 17 1 +10165e3e Unwind@10165e3e undefined Unwind@10165e3e(void) 11 1 +10165e49 Unwind@10165e49 undefined Unwind@10165e49(void) 11 1 +10165e54 Unwind@10165e54 undefined Unwind@10165e54(void) 11 1 +10165e5f Unwind@10165e5f undefined Unwind@10165e5f(void) 17 1 +10165e70 Unwind@10165e70 undefined Unwind@10165e70(void) 11 1 +10165e7b Unwind@10165e7b undefined Unwind@10165e7b(void) 11 1 +10165e86 Unwind@10165e86 undefined Unwind@10165e86(void) 11 1 +10165e91 Unwind@10165e91 undefined Unwind@10165e91(void) 17 1 +10165ea2 Unwind@10165ea2 undefined Unwind@10165ea2(void) 17 1 +10165eb3 Unwind@10165eb3 undefined Unwind@10165eb3(void) 17 1 +10165ec4 Unwind@10165ec4 undefined Unwind@10165ec4(void) 17 1 +10165ed5 Unwind@10165ed5 undefined Unwind@10165ed5(void) 11 1 +10165ee0 Unwind@10165ee0 undefined Unwind@10165ee0(void) 11 1 +10165eeb Unwind@10165eeb undefined Unwind@10165eeb(void) 17 1 +10165efc Unwind@10165efc undefined Unwind@10165efc(void) 11 1 +10165f07 Unwind@10165f07 undefined Unwind@10165f07(void) 11 1 +10165f12 Unwind@10165f12 undefined Unwind@10165f12(void) 17 1 +10165f23 Unwind@10165f23 undefined Unwind@10165f23(void) 17 1 +10165f34 Unwind@10165f34 undefined Unwind@10165f34(void) 17 1 +10165f45 Unwind@10165f45 undefined Unwind@10165f45(void) 11 1 +10165f50 Unwind@10165f50 undefined Unwind@10165f50(void) 17 1 +10165f61 Unwind@10165f61 undefined Unwind@10165f61(void) 17 1 +10165f72 Unwind@10165f72 undefined Unwind@10165f72(void) 17 1 +10165f83 Unwind@10165f83 undefined Unwind@10165f83(void) 17 1 +10165f94 Unwind@10165f94 undefined Unwind@10165f94(void) 17 1 +10165fa5 Unwind@10165fa5 undefined Unwind@10165fa5(void) 17 1 +10165fb6 Unwind@10165fb6 undefined Unwind@10165fb6(void) 17 1 +10165fc7 Unwind@10165fc7 undefined Unwind@10165fc7(void) 17 1 +10165fd8 Unwind@10165fd8 undefined Unwind@10165fd8(void) 17 1 +10165fe9 Unwind@10165fe9 undefined Unwind@10165fe9(void) 17 1 +10165ffa Unwind@10165ffa undefined Unwind@10165ffa(void) 17 1 +1016600b Unwind@1016600b undefined Unwind@1016600b(void) 11 1 +10166016 Unwind@10166016 undefined Unwind@10166016(void) 17 1 +10166027 Unwind@10166027 undefined Unwind@10166027(void) 17 1 +10166038 Unwind@10166038 undefined Unwind@10166038(void) 17 1 +10166049 Unwind@10166049 undefined Unwind@10166049(void) 17 1 +1016605a Unwind@1016605a undefined Unwind@1016605a(void) 17 1 +1016606b Unwind@1016606b undefined Unwind@1016606b(void) 11 1 +10166076 Unwind@10166076 undefined Unwind@10166076(void) 17 1 +10166087 Unwind@10166087 undefined Unwind@10166087(void) 17 1 +10166098 Unwind@10166098 undefined Unwind@10166098(void) 11 1 +101660a3 Unwind@101660a3 undefined Unwind@101660a3(void) 17 1 +101660b4 Unwind@101660b4 undefined Unwind@101660b4(void) 17 1 +101660c5 Unwind@101660c5 undefined Unwind@101660c5(void) 11 1 +101660d0 Unwind@101660d0 undefined Unwind@101660d0(void) 17 1 +101660e1 Unwind@101660e1 undefined Unwind@101660e1(void) 17 1 +101660f2 Unwind@101660f2 undefined Unwind@101660f2(void) 17 1 +10166103 Unwind@10166103 undefined Unwind@10166103(void) 17 1 +10166114 Unwind@10166114 undefined Unwind@10166114(void) 17 1 +10166125 Unwind@10166125 undefined Unwind@10166125(void) 17 1 +10166136 Unwind@10166136 undefined Unwind@10166136(void) 11 1 +10166141 Unwind@10166141 undefined Unwind@10166141(void) 17 1 +10166152 Unwind@10166152 undefined Unwind@10166152(void) 17 1 +10166163 Unwind@10166163 undefined Unwind@10166163(void) 17 1 +10166174 Unwind@10166174 undefined Unwind@10166174(void) 17 1 +10166185 Unwind@10166185 undefined Unwind@10166185(void) 17 1 +10166196 Unwind@10166196 undefined Unwind@10166196(void) 11 1 +101661a1 Unwind@101661a1 undefined Unwind@101661a1(void) 11 1 +101661ac Unwind@101661ac undefined Unwind@101661ac(void) 11 1 +101661b7 Unwind@101661b7 undefined Unwind@101661b7(void) 12 0 +101661c3 Unwind@101661c3 undefined Unwind@101661c3(void) 12 0 +101661cf Unwind@101661cf undefined Unwind@101661cf(void) 12 0 +101661db Unwind@101661db undefined Unwind@101661db(void) 12 0 +101661e7 Unwind@101661e7 undefined Unwind@101661e7(void) 12 0 +101661f3 Unwind@101661f3 undefined Unwind@101661f3(void) 12 0 +101661ff Unwind@101661ff undefined Unwind@101661ff(void) 12 0 +1016620b Unwind@1016620b undefined Unwind@1016620b(void) 12 0 +10166217 Unwind@10166217 undefined Unwind@10166217(void) 12 0 +10166223 Unwind@10166223 undefined Unwind@10166223(void) 12 0 +1016622f Unwind@1016622f undefined Unwind@1016622f(void) 12 0 +1016623b Unwind@1016623b undefined Unwind@1016623b(void) 12 0 +10166247 Unwind@10166247 undefined Unwind@10166247(void) 12 0 +10166253 Unwind@10166253 undefined Unwind@10166253(void) 12 0 +1016625f Unwind@1016625f undefined Unwind@1016625f(void) 12 0 +1016626b Unwind@1016626b undefined Unwind@1016626b(void) 12 0 +10166277 Unwind@10166277 undefined Unwind@10166277(void) 12 0 +10166283 Unwind@10166283 undefined Unwind@10166283(void) 12 0 +1016628f Unwind@1016628f undefined Unwind@1016628f(void) 12 0 +1016629b Unwind@1016629b undefined Unwind@1016629b(void) 12 0 +101662a7 Unwind@101662a7 undefined Unwind@101662a7(void) 12 0 +101662b3 Unwind@101662b3 undefined Unwind@101662b3(void) 12 0 +101662bf Unwind@101662bf undefined Unwind@101662bf(void) 12 0 +101662cb Unwind@101662cb undefined Unwind@101662cb(void) 12 0 +101662d7 Unwind@101662d7 undefined Unwind@101662d7(void) 12 0 +101662e3 Unwind@101662e3 undefined Unwind@101662e3(void) 12 0 +10166320 Unwind@10166320 undefined Unwind@10166320(void) 10 1 +10166350 Unwind@10166350 undefined Unwind@10166350(void) 10 1 +1016635a Unwind@1016635a undefined Unwind@1016635a(void) 10 1 +10166364 Unwind@10166364 undefined Unwind@10166364(void) 9 0 +10166390 Unwind@10166390 undefined Unwind@10166390(void) 10 1 +1016639a Unwind@1016639a undefined Unwind@1016639a(void) 10 1 +101663a4 Unwind@101663a4 undefined Unwind@101663a4(void) 10 1 +101663d0 Unwind@101663d0 undefined Unwind@101663d0(void) 10 1 +10166400 Unwind@10166400 undefined Unwind@10166400(void) 10 1 +1016640a Unwind@1016640a undefined Unwind@1016640a(void) 10 1 +10166414 Unwind@10166414 undefined Unwind@10166414(void) 10 1 +10166440 Unwind@10166440 undefined Unwind@10166440(void) 10 1 +1016644a Unwind@1016644a undefined Unwind@1016644a(void) 10 1 +10166470 Unwind@10166470 undefined Unwind@10166470(void) 8 1 +10166478 Unwind@10166478 undefined Unwind@10166478(void) 8 1 +10166480 Unwind@10166480 undefined Unwind@10166480(void) 8 1 +10166488 Unwind@10166488 undefined Unwind@10166488(void) 14 0 +10166496 Unwind@10166496 undefined Unwind@10166496(void) 14 0 +101664a4 Unwind@101664a4 undefined Unwind@101664a4(void) 14 0 +101664b2 Unwind@101664b2 undefined Unwind@101664b2(void) 14 0 +101664c0 Unwind@101664c0 undefined Unwind@101664c0(void) 14 0 +101664ce Unwind@101664ce undefined Unwind@101664ce(void) 14 0 +101664dc Unwind@101664dc undefined Unwind@101664dc(void) 14 0 +101664ea Unwind@101664ea undefined Unwind@101664ea(void) 14 0 +101664f8 Unwind@101664f8 undefined Unwind@101664f8(void) 14 0 +10166506 Unwind@10166506 undefined Unwind@10166506(void) 14 0 +10166514 Unwind@10166514 undefined Unwind@10166514(void) 14 0 +10166522 Unwind@10166522 undefined Unwind@10166522(void) 14 0 +10166530 Unwind@10166530 undefined Unwind@10166530(void) 8 1 +10166560 Unwind@10166560 undefined Unwind@10166560(void) 8 1 +10166568 Unwind@10166568 undefined Unwind@10166568(void) 8 1 +10166570 Unwind@10166570 undefined Unwind@10166570(void) 8 1 +10166578 Unwind@10166578 undefined Unwind@10166578(void) 8 1 +10166580 Unwind@10166580 undefined Unwind@10166580(void) 8 1 +10166588 Unwind@10166588 undefined Unwind@10166588(void) 8 1 +10166590 Unwind@10166590 undefined Unwind@10166590(void) 8 1 +10166598 Unwind@10166598 undefined Unwind@10166598(void) 8 1 +101665a0 Unwind@101665a0 undefined Unwind@101665a0(void) 8 1 +101665a8 Unwind@101665a8 undefined Unwind@101665a8(void) 8 1 +101665b0 Unwind@101665b0 undefined Unwind@101665b0(void) 8 1 +101665b8 Unwind@101665b8 undefined Unwind@101665b8(void) 8 1 +101665c0 Unwind@101665c0 undefined Unwind@101665c0(void) 8 1 +101665c8 Unwind@101665c8 undefined Unwind@101665c8(void) 8 1 +101665d0 Unwind@101665d0 undefined Unwind@101665d0(void) 8 1 +101665d8 Unwind@101665d8 undefined Unwind@101665d8(void) 8 1 +101665e0 Unwind@101665e0 undefined Unwind@101665e0(void) 8 1 +101665e8 Unwind@101665e8 undefined Unwind@101665e8(void) 8 1 +101665f0 Unwind@101665f0 undefined Unwind@101665f0(void) 8 1 +10166620 Unwind@10166620 undefined Unwind@10166620(void) 11 1 +10166650 Unwind@10166650 undefined Unwind@10166650(void) 11 1 +10166680 Unwind@10166680 undefined Unwind@10166680(void) 9 0 +101666b0 Unwind@101666b0 undefined Unwind@101666b0(void) 11 1 +101666e0 Unwind@101666e0 undefined Unwind@101666e0(void) 8 1 +10166710 Unwind@10166710 undefined Unwind@10166710(void) 11 1 +10166740 Unwind@10166740 undefined Unwind@10166740(void) 11 1 +10166770 Unwind@10166770 undefined Unwind@10166770(void) 17 1 +101667a0 Unwind@101667a0 undefined Unwind@101667a0(void) 17 1 +101667d0 Unwind@101667d0 undefined Unwind@101667d0(void) 17 1 +10166800 Unwind@10166800 undefined Unwind@10166800(void) 11 1 +10166830 Unwind@10166830 undefined Unwind@10166830(void) 17 1 +10166860 Unwind@10166860 undefined Unwind@10166860(void) 14 0 +1016686e Unwind@1016686e undefined Unwind@1016686e(void) 14 0 +101668a0 Unwind@101668a0 undefined Unwind@101668a0(void) 17 1 +101668d0 Unwind@101668d0 undefined Unwind@101668d0(void) 17 1 +10166900 Unwind@10166900 undefined Unwind@10166900(void) 11 1 +10166930 Unwind@10166930 undefined Unwind@10166930(void) 17 1 +10166960 Unwind@10166960 undefined Unwind@10166960(void) 11 1 +101669b0 Unwind@101669b0 undefined Unwind@101669b0(void) 11 1 +101669bb Unwind@101669bb undefined Unwind@101669bb(void) 11 1 +101669c6 Unwind@101669c6 undefined Unwind@101669c6(void) 11 1 +101669d1 Unwind@101669d1 undefined Unwind@101669d1(void) 11 1 +10166a10 Unwind@10166a10 undefined Unwind@10166a10(void) 11 1 +10166a40 Unwind@10166a40 undefined Unwind@10166a40(void) 11 1 +10166a90 Unwind@10166a90 undefined Unwind@10166a90(void) 8 1 +10166ac0 Unwind@10166ac0 undefined Unwind@10166ac0(void) 8 1 +10166af0 Unwind@10166af0 undefined Unwind@10166af0(void) 17 1 +10166b01 Unwind@10166b01 undefined Unwind@10166b01(void) 17 1 +10166b30 Unwind@10166b30 undefined Unwind@10166b30(void) 8 1 +10166b38 Unwind@10166b38 undefined Unwind@10166b38(void) 8 1 +10166b40 Unwind@10166b40 undefined Unwind@10166b40(void) 8 1 +10166b70 Unwind@10166b70 undefined Unwind@10166b70(void) 8 1 +10166b78 Unwind@10166b78 undefined Unwind@10166b78(void) 8 1 +10166b80 Unwind@10166b80 undefined Unwind@10166b80(void) 14 1 +10166b8e Unwind@10166b8e undefined Unwind@10166b8e(void) 11 1 +10166b99 Unwind@10166b99 undefined Unwind@10166b99(void) 11 1 +10166ba4 Unwind@10166ba4 undefined Unwind@10166ba4(void) 11 1 +10166baf Unwind@10166baf undefined Unwind@10166baf(void) 8 1 +10166bb7 Unwind@10166bb7 undefined Unwind@10166bb7(void) 8 1 +10166bbf Unwind@10166bbf undefined Unwind@10166bbf(void) 8 1 +10166bf0 Unwind@10166bf0 undefined Unwind@10166bf0(void) 11 1 +10166bfb Unwind@10166bfb undefined Unwind@10166bfb(void) 11 1 +10166c06 Unwind@10166c06 undefined Unwind@10166c06(void) 11 1 +10166c11 Unwind@10166c11 undefined Unwind@10166c11(void) 11 1 +10166c1c Unwind@10166c1c undefined Unwind@10166c1c(void) 11 1 +10166c27 Unwind@10166c27 undefined Unwind@10166c27(void) 11 1 +10166c32 Unwind@10166c32 undefined Unwind@10166c32(void) 11 1 +10166c3d Unwind@10166c3d undefined Unwind@10166c3d(void) 11 1 +10166c48 Unwind@10166c48 undefined Unwind@10166c48(void) 11 1 +10166c53 Unwind@10166c53 undefined Unwind@10166c53(void) 11 1 +10166c5e Unwind@10166c5e undefined Unwind@10166c5e(void) 11 1 +10166c69 Unwind@10166c69 undefined Unwind@10166c69(void) 11 1 +10166c74 Unwind@10166c74 undefined Unwind@10166c74(void) 11 1 +10166c7f Unwind@10166c7f undefined Unwind@10166c7f(void) 11 1 +10166c8a Unwind@10166c8a undefined Unwind@10166c8a(void) 11 1 +10166c95 Unwind@10166c95 undefined Unwind@10166c95(void) 11 1 +10166cd0 Unwind@10166cd0 undefined Unwind@10166cd0(void) 8 1 +10166cd8 Unwind@10166cd8 undefined Unwind@10166cd8(void) 11 1 +10166ce3 Unwind@10166ce3 undefined Unwind@10166ce3(void) 8 1 +10166ceb Unwind@10166ceb undefined Unwind@10166ceb(void) 8 1 +10166cf3 Unwind@10166cf3 undefined Unwind@10166cf3(void) 8 1 +10166cfb Unwind@10166cfb undefined Unwind@10166cfb(void) 8 1 +10166d03 Unwind@10166d03 undefined Unwind@10166d03(void) 8 1 +10166d0b Unwind@10166d0b undefined Unwind@10166d0b(void) 8 1 +10166d13 Unwind@10166d13 undefined Unwind@10166d13(void) 8 1 +10166d1b Unwind@10166d1b undefined Unwind@10166d1b(void) 11 1 +10166d26 Unwind@10166d26 undefined Unwind@10166d26(void) 11 1 +10166d31 Unwind@10166d31 undefined Unwind@10166d31(void) 8 1 +10166d39 Unwind@10166d39 undefined Unwind@10166d39(void) 8 1 +10166d41 Unwind@10166d41 undefined Unwind@10166d41(void) 8 1 +10166d49 Unwind@10166d49 undefined Unwind@10166d49(void) 8 1 +10166d51 Unwind@10166d51 undefined Unwind@10166d51(void) 8 1 +10166d59 Unwind@10166d59 undefined Unwind@10166d59(void) 8 1 +10166d61 Unwind@10166d61 undefined Unwind@10166d61(void) 11 1 +10166da0 Unwind@10166da0 undefined Unwind@10166da0(void) 14 0 +10166de0 Unwind@10166de0 undefined Unwind@10166de0(void) 17 1 +10166e10 Unwind@10166e10 undefined Unwind@10166e10(void) 17 1 +10166e40 Unwind@10166e40 undefined Unwind@10166e40(void) 9 0 +10166e70 Unwind@10166e70 undefined Unwind@10166e70(void) 8 1 +10166e78 Unwind@10166e78 undefined Unwind@10166e78(void) 8 1 +10166e80 Unwind@10166e80 undefined Unwind@10166e80(void) 11 1 +10166e8b Unwind@10166e8b undefined Unwind@10166e8b(void) 11 1 +10166e96 Unwind@10166e96 undefined Unwind@10166e96(void) 11 1 +10166ea1 Unwind@10166ea1 undefined Unwind@10166ea1(void) 11 1 +10166eac Unwind@10166eac undefined Unwind@10166eac(void) 8 1 +10166ed0 Unwind@10166ed0 undefined Unwind@10166ed0(void) 17 1 +10166f00 Unwind@10166f00 undefined Unwind@10166f00(void) 8 1 +10166f08 Unwind@10166f08 undefined Unwind@10166f08(void) 8 1 +10166f10 Unwind@10166f10 undefined Unwind@10166f10(void) 11 1 +10166f1b Unwind@10166f1b undefined Unwind@10166f1b(void) 11 1 +10166f26 Unwind@10166f26 undefined Unwind@10166f26(void) 11 1 +10166f31 Unwind@10166f31 undefined Unwind@10166f31(void) 11 1 +10166f60 Unwind@10166f60 undefined Unwind@10166f60(void) 8 1 +10166f68 Unwind@10166f68 undefined Unwind@10166f68(void) 8 1 +10166f70 Unwind@10166f70 undefined Unwind@10166f70(void) 11 1 +10166f7b Unwind@10166f7b undefined Unwind@10166f7b(void) 11 1 +10166f86 Unwind@10166f86 undefined Unwind@10166f86(void) 11 1 +10166f91 Unwind@10166f91 undefined Unwind@10166f91(void) 11 1 +10166f9c Unwind@10166f9c undefined Unwind@10166f9c(void) 8 1 +10166fc0 Unwind@10166fc0 undefined Unwind@10166fc0(void) 9 0 +10166ff0 Unwind@10166ff0 undefined Unwind@10166ff0(void) 17 1 +10167020 Unwind@10167020 undefined Unwind@10167020(void) 8 1 +10167050 Unwind@10167050 undefined Unwind@10167050(void) 17 1 +10167080 Unwind@10167080 undefined Unwind@10167080(void) 8 1 +101670b0 Unwind@101670b0 undefined Unwind@101670b0(void) 9 0 +101670e0 Unwind@101670e0 undefined Unwind@101670e0(void) 8 1 +101670e8 Unwind@101670e8 undefined Unwind@101670e8(void) 8 1 +10167110 Unwind@10167110 undefined Unwind@10167110(void) 8 1 +10167118 Unwind@10167118 undefined Unwind@10167118(void) 8 1 +10167120 Unwind@10167120 undefined Unwind@10167120(void) 8 1 +10167128 Unwind@10167128 undefined Unwind@10167128(void) 8 1 +10167130 Unwind@10167130 undefined Unwind@10167130(void) 8 1 +10167138 Unwind@10167138 undefined Unwind@10167138(void) 8 1 +10167140 Unwind@10167140 undefined Unwind@10167140(void) 8 1 +10167148 Unwind@10167148 undefined Unwind@10167148(void) 8 1 +10167150 Unwind@10167150 undefined Unwind@10167150(void) 8 1 +10167180 Unwind@10167180 undefined Unwind@10167180(void) 8 1 +101671b0 Unwind@101671b0 undefined Unwind@101671b0(void) 8 1 +101671e0 Unwind@101671e0 undefined Unwind@101671e0(void) 8 1 +10167210 Unwind@10167210 undefined Unwind@10167210(void) 17 1 +10167221 Unwind@10167221 undefined Unwind@10167221(void) 8 1 +10167229 Unwind@10167229 undefined Unwind@10167229(void) 8 1 +10167250 Unwind@10167250 undefined Unwind@10167250(void) 8 1 +10167258 Unwind@10167258 undefined Unwind@10167258(void) 8 1 +10167280 Unwind@10167280 undefined Unwind@10167280(void) 8 1 +10167288 Unwind@10167288 undefined Unwind@10167288(void) 8 1 +101672b0 Unwind@101672b0 undefined Unwind@101672b0(void) 17 1 +101672c1 Unwind@101672c1 undefined Unwind@101672c1(void) 8 1 +101672c9 Unwind@101672c9 undefined Unwind@101672c9(void) 8 1 +101672f0 Unwind@101672f0 undefined Unwind@101672f0(void) 8 1 +101672f8 Unwind@101672f8 undefined Unwind@101672f8(void) 8 1 +10167320 Unwind@10167320 undefined Unwind@10167320(void) 9 0 +10167350 Unwind@10167350 undefined Unwind@10167350(void) 8 1 +10167358 Unwind@10167358 undefined Unwind@10167358(void) 14 1 +10167366 Unwind@10167366 undefined Unwind@10167366(void) 8 1 +1016736e Unwind@1016736e undefined Unwind@1016736e(void) 8 1 +10167376 Unwind@10167376 undefined Unwind@10167376(void) 8 1 +1016737e Unwind@1016737e undefined Unwind@1016737e(void) 8 1 +10167386 Unwind@10167386 undefined Unwind@10167386(void) 8 1 +1016738e Unwind@1016738e undefined Unwind@1016738e(void) 8 1 +101673c0 Unwind@101673c0 undefined Unwind@101673c0(void) 11 1 +101673cb Unwind@101673cb undefined Unwind@101673cb(void) 11 1 +101673d6 Unwind@101673d6 undefined Unwind@101673d6(void) 11 1 +101673e1 Unwind@101673e1 undefined Unwind@101673e1(void) 11 1 +101673ec Unwind@101673ec undefined Unwind@101673ec(void) 14 1 +101673fa Unwind@101673fa undefined Unwind@101673fa(void) 11 1 +10167430 Unwind@10167430 undefined Unwind@10167430(void) 8 1 +10167438 Unwind@10167438 undefined Unwind@10167438(void) 8 1 +10167440 Unwind@10167440 undefined Unwind@10167440(void) 8 1 +10167448 Unwind@10167448 undefined Unwind@10167448(void) 8 1 +10167450 Unwind@10167450 undefined Unwind@10167450(void) 8 1 +10167458 Unwind@10167458 undefined Unwind@10167458(void) 8 1 +10167460 Unwind@10167460 undefined Unwind@10167460(void) 8 1 +10167468 Unwind@10167468 undefined Unwind@10167468(void) 8 1 +10167470 Unwind@10167470 undefined Unwind@10167470(void) 8 1 +101674a0 Unwind@101674a0 undefined Unwind@101674a0(void) 8 1 +101674d0 Unwind@101674d0 undefined Unwind@101674d0(void) 17 1 +10167500 Unwind@10167500 undefined Unwind@10167500(void) 17 1 +10167530 Unwind@10167530 undefined Unwind@10167530(void) 8 1 +10167560 Unwind@10167560 undefined Unwind@10167560(void) 17 1 +10167590 Unwind@10167590 undefined Unwind@10167590(void) 17 1 +101675c0 Unwind@101675c0 undefined Unwind@101675c0(void) 8 1 +101675c8 Unwind@101675c8 undefined Unwind@101675c8(void) 8 1 +101675d0 Unwind@101675d0 undefined Unwind@101675d0(void) 11 1 +101675db Unwind@101675db undefined Unwind@101675db(void) 11 1 +101675e6 Unwind@101675e6 undefined Unwind@101675e6(void) 11 1 +101675f1 Unwind@101675f1 undefined Unwind@101675f1(void) 11 1 +10167620 Unwind@10167620 undefined Unwind@10167620(void) 9 0 +10167650 Unwind@10167650 undefined Unwind@10167650(void) 9 0 +10167680 Unwind@10167680 undefined Unwind@10167680(void) 11 1 +101676c0 Unwind@101676c0 undefined Unwind@101676c0(void) 14 0 +101676ce Unwind@101676ce undefined Unwind@101676ce(void) 11 1 +10167710 Unwind@10167710 undefined Unwind@10167710(void) 14 0 +1016771e Unwind@1016771e undefined Unwind@1016771e(void) 14 0 +1016772c Unwind@1016772c undefined Unwind@1016772c(void) 14 0 +1016773a Unwind@1016773a undefined Unwind@1016773a(void) 14 0 +10167770 Unwind@10167770 undefined Unwind@10167770(void) 8 1 +10167778 Unwind@10167778 undefined Unwind@10167778(void) 8 1 +10167780 Unwind@10167780 undefined Unwind@10167780(void) 8 1 +10167788 Unwind@10167788 undefined Unwind@10167788(void) 8 1 +10167790 Unwind@10167790 undefined Unwind@10167790(void) 8 1 +101677c0 Unwind@101677c0 undefined Unwind@101677c0(void) 8 1 +101677c8 Unwind@101677c8 undefined Unwind@101677c8(void) 8 1 +101677d0 Unwind@101677d0 undefined Unwind@101677d0(void) 11 1 +101677db Unwind@101677db undefined Unwind@101677db(void) 11 1 +101677e6 Unwind@101677e6 undefined Unwind@101677e6(void) 11 1 +101677f1 Unwind@101677f1 undefined Unwind@101677f1(void) 11 1 +101677fc Unwind@101677fc undefined Unwind@101677fc(void) 11 1 +10167807 Unwind@10167807 undefined Unwind@10167807(void) 11 1 +10167812 Unwind@10167812 undefined Unwind@10167812(void) 11 1 +1016781d Unwind@1016781d undefined Unwind@1016781d(void) 11 1 +10167828 Unwind@10167828 undefined Unwind@10167828(void) 11 1 +10167833 Unwind@10167833 undefined Unwind@10167833(void) 11 1 +1016783e Unwind@1016783e undefined Unwind@1016783e(void) 11 1 +10167849 Unwind@10167849 undefined Unwind@10167849(void) 11 1 +10167854 Unwind@10167854 undefined Unwind@10167854(void) 11 1 +1016785f Unwind@1016785f undefined Unwind@1016785f(void) 11 1 +1016786a Unwind@1016786a undefined Unwind@1016786a(void) 11 1 +10167875 Unwind@10167875 undefined Unwind@10167875(void) 11 1 +10167880 Unwind@10167880 undefined Unwind@10167880(void) 11 1 +1016788b Unwind@1016788b undefined Unwind@1016788b(void) 11 1 +10167896 Unwind@10167896 undefined Unwind@10167896(void) 11 1 +101678a1 Unwind@101678a1 undefined Unwind@101678a1(void) 11 1 +101678ac Unwind@101678ac undefined Unwind@101678ac(void) 11 1 +101678b7 Unwind@101678b7 undefined Unwind@101678b7(void) 11 1 +101678c2 Unwind@101678c2 undefined Unwind@101678c2(void) 11 1 +101678cd Unwind@101678cd undefined Unwind@101678cd(void) 11 1 +101678d8 Unwind@101678d8 undefined Unwind@101678d8(void) 11 1 +101678e3 Unwind@101678e3 undefined Unwind@101678e3(void) 11 1 +101678ee Unwind@101678ee undefined Unwind@101678ee(void) 11 1 +101678f9 Unwind@101678f9 undefined Unwind@101678f9(void) 11 1 +10167904 Unwind@10167904 undefined Unwind@10167904(void) 11 1 +1016790f Unwind@1016790f undefined Unwind@1016790f(void) 11 1 +1016791a Unwind@1016791a undefined Unwind@1016791a(void) 11 1 +10167925 Unwind@10167925 undefined Unwind@10167925(void) 11 1 +10167930 Unwind@10167930 undefined Unwind@10167930(void) 11 1 +1016793b Unwind@1016793b undefined Unwind@1016793b(void) 11 1 +10167946 Unwind@10167946 undefined Unwind@10167946(void) 11 1 +10167951 Unwind@10167951 undefined Unwind@10167951(void) 11 1 +1016795c Unwind@1016795c undefined Unwind@1016795c(void) 11 1 +10167967 Unwind@10167967 undefined Unwind@10167967(void) 11 1 +10167972 Unwind@10167972 undefined Unwind@10167972(void) 11 1 +1016797d Unwind@1016797d undefined Unwind@1016797d(void) 11 1 +10167988 Unwind@10167988 undefined Unwind@10167988(void) 11 1 +10167993 Unwind@10167993 undefined Unwind@10167993(void) 11 1 +1016799e Unwind@1016799e undefined Unwind@1016799e(void) 11 1 +101679a9 Unwind@101679a9 undefined Unwind@101679a9(void) 11 1 +101679b4 Unwind@101679b4 undefined Unwind@101679b4(void) 11 1 +101679bf Unwind@101679bf undefined Unwind@101679bf(void) 11 1 +101679ca Unwind@101679ca undefined Unwind@101679ca(void) 11 1 +101679d5 Unwind@101679d5 undefined Unwind@101679d5(void) 11 1 +101679e0 Unwind@101679e0 undefined Unwind@101679e0(void) 11 1 +101679eb Unwind@101679eb undefined Unwind@101679eb(void) 11 1 +101679f6 Unwind@101679f6 undefined Unwind@101679f6(void) 11 1 +10167a01 Unwind@10167a01 undefined Unwind@10167a01(void) 11 1 +10167a0c Unwind@10167a0c undefined Unwind@10167a0c(void) 11 1 +10167a17 Unwind@10167a17 undefined Unwind@10167a17(void) 11 1 +10167a22 Unwind@10167a22 undefined Unwind@10167a22(void) 11 1 +10167a2d Unwind@10167a2d undefined Unwind@10167a2d(void) 11 1 +10167a38 Unwind@10167a38 undefined Unwind@10167a38(void) 11 1 +10167a43 Unwind@10167a43 undefined Unwind@10167a43(void) 11 1 +10167a4e Unwind@10167a4e undefined Unwind@10167a4e(void) 11 1 +10167a59 Unwind@10167a59 undefined Unwind@10167a59(void) 11 1 +10167a64 Unwind@10167a64 undefined Unwind@10167a64(void) 11 1 +10167a6f Unwind@10167a6f undefined Unwind@10167a6f(void) 11 1 +10167a7a Unwind@10167a7a undefined Unwind@10167a7a(void) 11 1 +10167a85 Unwind@10167a85 undefined Unwind@10167a85(void) 11 1 +10167a90 Unwind@10167a90 undefined Unwind@10167a90(void) 11 1 +10167a9b Unwind@10167a9b undefined Unwind@10167a9b(void) 11 1 +10167aa6 Unwind@10167aa6 undefined Unwind@10167aa6(void) 11 1 +10167ab1 Unwind@10167ab1 undefined Unwind@10167ab1(void) 11 1 +10167abc Unwind@10167abc undefined Unwind@10167abc(void) 11 1 +10167af0 Unwind@10167af0 undefined Unwind@10167af0(void) 11 1 +10167b30 Unwind@10167b30 undefined Unwind@10167b30(void) 8 1 +10167b60 Unwind@10167b60 undefined Unwind@10167b60(void) 8 1 +10167b90 Unwind@10167b90 undefined Unwind@10167b90(void) 14 0 +10167bd0 Unwind@10167bd0 undefined Unwind@10167bd0(void) 11 1 +10167bdb Unwind@10167bdb undefined Unwind@10167bdb(void) 11 1 +10167be6 Unwind@10167be6 undefined Unwind@10167be6(void) 11 1 +10167bf1 Unwind@10167bf1 undefined Unwind@10167bf1(void) 11 1 +10167bfc Unwind@10167bfc undefined Unwind@10167bfc(void) 11 1 +10167c07 Unwind@10167c07 undefined Unwind@10167c07(void) 11 1 +10167c40 Unwind@10167c40 undefined Unwind@10167c40(void) 11 1 +10167c4b Unwind@10167c4b undefined Unwind@10167c4b(void) 11 1 +10167c56 Unwind@10167c56 undefined Unwind@10167c56(void) 11 1 +10167c61 Unwind@10167c61 undefined Unwind@10167c61(void) 11 1 +10167c6c Unwind@10167c6c undefined Unwind@10167c6c(void) 11 1 +10167c77 Unwind@10167c77 undefined Unwind@10167c77(void) 11 1 +10167cb0 Unwind@10167cb0 undefined Unwind@10167cb0(void) 8 1 +10167ce0 Unwind@10167ce0 undefined Unwind@10167ce0(void) 8 1 +10167d10 Unwind@10167d10 undefined Unwind@10167d10(void) 8 1 +10167d40 Unwind@10167d40 undefined Unwind@10167d40(void) 8 1 +10167d70 Unwind@10167d70 undefined Unwind@10167d70(void) 8 1 +10167da0 Unwind@10167da0 undefined Unwind@10167da0(void) 8 1 +10167da8 Unwind@10167da8 undefined Unwind@10167da8(void) 8 1 +10167db0 Unwind@10167db0 undefined Unwind@10167db0(void) 11 1 +10167dbb Unwind@10167dbb undefined Unwind@10167dbb(void) 8 1 +10167dc3 Unwind@10167dc3 undefined Unwind@10167dc3(void) 11 1 +10167dce Unwind@10167dce undefined Unwind@10167dce(void) 11 1 +10167dd9 Unwind@10167dd9 undefined Unwind@10167dd9(void) 11 1 +10167de4 Unwind@10167de4 undefined Unwind@10167de4(void) 11 1 +10167def Unwind@10167def undefined Unwind@10167def(void) 8 1 +10167df7 Unwind@10167df7 undefined Unwind@10167df7(void) 8 1 +10167dff Unwind@10167dff undefined Unwind@10167dff(void) 11 1 +10167e40 Unwind@10167e40 undefined Unwind@10167e40(void) 9 0 +10167e70 Unwind@10167e70 undefined Unwind@10167e70(void) 8 1 +10167e78 Unwind@10167e78 undefined Unwind@10167e78(void) 8 1 +10167e80 Unwind@10167e80 undefined Unwind@10167e80(void) 8 1 +10167eb0 Unwind@10167eb0 undefined Unwind@10167eb0(void) 8 1 +10167eb8 Unwind@10167eb8 undefined Unwind@10167eb8(void) 8 1 +10167ee0 Unwind@10167ee0 undefined Unwind@10167ee0(void) 8 1 +10167ee8 Unwind@10167ee8 undefined Unwind@10167ee8(void) 8 1 +10167f10 Unwind@10167f10 undefined Unwind@10167f10(void) 8 1 +10167f18 Unwind@10167f18 undefined Unwind@10167f18(void) 8 1 +10167f20 Unwind@10167f20 undefined Unwind@10167f20(void) 8 1 +10167f50 Unwind@10167f50 undefined Unwind@10167f50(void) 8 1 +10167f58 Unwind@10167f58 undefined Unwind@10167f58(void) 8 1 +10167f60 Unwind@10167f60 undefined Unwind@10167f60(void) 8 1 +10167f90 Unwind@10167f90 undefined Unwind@10167f90(void) 8 1 +10167f98 Unwind@10167f98 undefined Unwind@10167f98(void) 8 1 +10167fc0 Unwind@10167fc0 undefined Unwind@10167fc0(void) 17 1 +10167fd1 Unwind@10167fd1 undefined Unwind@10167fd1(void) 8 1 +10167fd9 Unwind@10167fd9 undefined Unwind@10167fd9(void) 8 1 +10167fe1 Unwind@10167fe1 undefined Unwind@10167fe1(void) 8 1 +10168010 Unwind@10168010 undefined Unwind@10168010(void) 8 1 +10168018 Unwind@10168018 undefined Unwind@10168018(void) 8 1 +10168020 Unwind@10168020 undefined Unwind@10168020(void) 8 1 +10168028 Unwind@10168028 undefined Unwind@10168028(void) 8 1 +10168030 Unwind@10168030 undefined Unwind@10168030(void) 8 1 +10168038 Unwind@10168038 undefined Unwind@10168038(void) 8 1 +10168040 Unwind@10168040 undefined Unwind@10168040(void) 8 1 +10168048 Unwind@10168048 undefined Unwind@10168048(void) 8 1 +10168080 Unwind@10168080 undefined Unwind@10168080(void) 8 1 +10168088 Unwind@10168088 undefined Unwind@10168088(void) 8 1 +10168090 Unwind@10168090 undefined Unwind@10168090(void) 8 1 +10168098 Unwind@10168098 undefined Unwind@10168098(void) 8 1 +101680d0 Unwind@101680d0 undefined Unwind@101680d0(void) 17 1 +101680e1 Unwind@101680e1 undefined Unwind@101680e1(void) 8 1 +101680e9 Unwind@101680e9 undefined Unwind@101680e9(void) 8 1 +101680f1 Unwind@101680f1 undefined Unwind@101680f1(void) 8 1 +10168120 Unwind@10168120 undefined Unwind@10168120(void) 8 1 +10168128 Unwind@10168128 undefined Unwind@10168128(void) 8 1 +10168130 Unwind@10168130 undefined Unwind@10168130(void) 8 1 +10168138 Unwind@10168138 undefined Unwind@10168138(void) 8 1 +10168140 Unwind@10168140 undefined Unwind@10168140(void) 8 1 +10168148 Unwind@10168148 undefined Unwind@10168148(void) 11 1 +10168153 Unwind@10168153 undefined Unwind@10168153(void) 8 1 +1016815b Unwind@1016815b undefined Unwind@1016815b(void) 8 1 +10168163 Unwind@10168163 undefined Unwind@10168163(void) 8 1 +1016816b Unwind@1016816b undefined Unwind@1016816b(void) 8 1 +10168173 Unwind@10168173 undefined Unwind@10168173(void) 8 1 +1016817b Unwind@1016817b undefined Unwind@1016817b(void) 8 1 +10168183 Unwind@10168183 undefined Unwind@10168183(void) 8 1 +101681c0 Unwind@101681c0 undefined Unwind@101681c0(void) 9 0 +10168210 Unwind@10168210 undefined Unwind@10168210(void) 8 1 +10168218 Unwind@10168218 undefined Unwind@10168218(void) 9 0 +10168240 Unwind@10168240 undefined Unwind@10168240(void) 8 1 +10168270 Unwind@10168270 undefined Unwind@10168270(void) 8 1 +10168278 Unwind@10168278 undefined Unwind@10168278(void) 8 1 +10168280 Unwind@10168280 undefined Unwind@10168280(void) 8 1 +10168288 Unwind@10168288 undefined Unwind@10168288(void) 9 0 +101682b0 Unwind@101682b0 undefined Unwind@101682b0(void) 8 1 +101682b8 Unwind@101682b8 undefined Unwind@101682b8(void) 8 1 +101682e0 Unwind@101682e0 undefined Unwind@101682e0(void) 8 1 +101682e8 Unwind@101682e8 undefined Unwind@101682e8(void) 8 1 +101682f0 Unwind@101682f0 undefined Unwind@101682f0(void) 8 1 +101682f8 Unwind@101682f8 undefined Unwind@101682f8(void) 8 1 +10168300 Unwind@10168300 undefined Unwind@10168300(void) 11 1 +10168330 Unwind@10168330 undefined Unwind@10168330(void) 8 1 +10168338 Unwind@10168338 undefined Unwind@10168338(void) 8 1 +10168340 Unwind@10168340 undefined Unwind@10168340(void) 8 1 +10168348 Unwind@10168348 undefined Unwind@10168348(void) 8 1 +10168350 Unwind@10168350 undefined Unwind@10168350(void) 11 1 +10168380 Unwind@10168380 undefined Unwind@10168380(void) 8 1 +10168388 Unwind@10168388 undefined Unwind@10168388(void) 8 1 +10168390 Unwind@10168390 undefined Unwind@10168390(void) 8 1 +10168398 Unwind@10168398 undefined Unwind@10168398(void) 8 1 +101683a0 Unwind@101683a0 undefined Unwind@101683a0(void) 11 1 +101683ab Unwind@101683ab undefined Unwind@101683ab(void) 8 1 +101683d0 Unwind@101683d0 undefined Unwind@101683d0(void) 8 1 +101683d8 Unwind@101683d8 undefined Unwind@101683d8(void) 8 1 +101683e0 Unwind@101683e0 undefined Unwind@101683e0(void) 8 1 +101683e8 Unwind@101683e8 undefined Unwind@101683e8(void) 8 1 +101683f0 Unwind@101683f0 undefined Unwind@101683f0(void) 11 1 +101683fb Unwind@101683fb undefined Unwind@101683fb(void) 8 1 +10168420 Unwind@10168420 undefined Unwind@10168420(void) 17 1 +10168431 Unwind@10168431 undefined Unwind@10168431(void) 8 1 +10168439 Unwind@10168439 undefined Unwind@10168439(void) 8 1 +10168441 Unwind@10168441 undefined Unwind@10168441(void) 8 1 +10168449 Unwind@10168449 undefined Unwind@10168449(void) 8 1 +10168451 Unwind@10168451 undefined Unwind@10168451(void) 11 1 +1016845c Unwind@1016845c undefined Unwind@1016845c(void) 8 1 +10168480 Unwind@10168480 undefined Unwind@10168480(void) 8 1 +101684b0 Unwind@101684b0 undefined Unwind@101684b0(void) 17 1 +101684c1 Unwind@101684c1 undefined Unwind@101684c1(void) 8 1 +101684c9 Unwind@101684c9 undefined Unwind@101684c9(void) 8 1 +101684d1 Unwind@101684d1 undefined Unwind@101684d1(void) 8 1 +101684d9 Unwind@101684d9 undefined Unwind@101684d9(void) 8 1 +101684e1 Unwind@101684e1 undefined Unwind@101684e1(void) 11 1 +101684ec Unwind@101684ec undefined Unwind@101684ec(void) 8 1 +10168510 Unwind@10168510 undefined Unwind@10168510(void) 8 1 +10168518 Unwind@10168518 undefined Unwind@10168518(void) 8 1 +10168520 Unwind@10168520 undefined Unwind@10168520(void) 8 1 +10168528 Unwind@10168528 undefined Unwind@10168528(void) 8 1 +10168530 Unwind@10168530 undefined Unwind@10168530(void) 8 1 +10168538 Unwind@10168538 undefined Unwind@10168538(void) 8 1 +10168540 Unwind@10168540 undefined Unwind@10168540(void) 8 1 +10168548 Unwind@10168548 undefined Unwind@10168548(void) 8 1 +10168550 Unwind@10168550 undefined Unwind@10168550(void) 8 1 +10168580 Unwind@10168580 undefined Unwind@10168580(void) 9 0 +101685b0 Unwind@101685b0 undefined Unwind@101685b0(void) 11 1 +101685bb Unwind@101685bb undefined Unwind@101685bb(void) 11 1 +101685c6 Unwind@101685c6 undefined Unwind@101685c6(void) 11 1 +101685d1 Unwind@101685d1 undefined Unwind@101685d1(void) 11 1 +101685dc Unwind@101685dc undefined Unwind@101685dc(void) 11 1 +101685e7 Unwind@101685e7 undefined Unwind@101685e7(void) 8 1 +101685ef Unwind@101685ef undefined Unwind@101685ef(void) 8 1 +101685f7 Unwind@101685f7 undefined Unwind@101685f7(void) 8 1 +101685ff Unwind@101685ff undefined Unwind@101685ff(void) 11 1 +1016860a Unwind@1016860a undefined Unwind@1016860a(void) 11 1 +10168615 Unwind@10168615 undefined Unwind@10168615(void) 11 1 +10168620 Unwind@10168620 undefined Unwind@10168620(void) 11 1 +1016862b Unwind@1016862b undefined Unwind@1016862b(void) 11 1 +10168636 Unwind@10168636 undefined Unwind@10168636(void) 11 1 +10168641 Unwind@10168641 undefined Unwind@10168641(void) 11 1 +1016864c Unwind@1016864c undefined Unwind@1016864c(void) 11 1 +10168657 Unwind@10168657 undefined Unwind@10168657(void) 8 1 +1016865f Unwind@1016865f undefined Unwind@1016865f(void) 11 1 +1016866a Unwind@1016866a undefined Unwind@1016866a(void) 11 1 +10168675 Unwind@10168675 undefined Unwind@10168675(void) 11 1 +10168680 Unwind@10168680 undefined Unwind@10168680(void) 11 1 +1016868b Unwind@1016868b undefined Unwind@1016868b(void) 11 1 +10168696 Unwind@10168696 undefined Unwind@10168696(void) 11 1 +101686a1 Unwind@101686a1 undefined Unwind@101686a1(void) 11 1 +101686ac Unwind@101686ac undefined Unwind@101686ac(void) 11 1 +101686b7 Unwind@101686b7 undefined Unwind@101686b7(void) 11 1 +101686c2 Unwind@101686c2 undefined Unwind@101686c2(void) 11 1 +101686cd Unwind@101686cd undefined Unwind@101686cd(void) 11 1 +101686d8 Unwind@101686d8 undefined Unwind@101686d8(void) 11 1 +101686e3 Unwind@101686e3 undefined Unwind@101686e3(void) 12 0 +10168720 Unwind@10168720 undefined Unwind@10168720(void) 11 1 +10168760 Unwind@10168760 undefined Unwind@10168760(void) 8 1 +10168790 Unwind@10168790 undefined Unwind@10168790(void) 8 1 +10168798 Unwind@10168798 undefined Unwind@10168798(void) 8 1 +101687c0 Unwind@101687c0 undefined Unwind@101687c0(void) 8 1 +101687f0 Unwind@101687f0 undefined Unwind@101687f0(void) 8 1 +10168820 Unwind@10168820 undefined Unwind@10168820(void) 8 1 +10168850 Unwind@10168850 undefined Unwind@10168850(void) 8 1 +10168880 Unwind@10168880 undefined Unwind@10168880(void) 8 1 +101688b0 Unwind@101688b0 undefined Unwind@101688b0(void) 8 1 +101688e0 Unwind@101688e0 undefined Unwind@101688e0(void) 8 1 +10168910 Unwind@10168910 undefined Unwind@10168910(void) 9 0 +10168940 Unwind@10168940 undefined Unwind@10168940(void) 17 1 +10168970 Unwind@10168970 undefined Unwind@10168970(void) 8 1 +101689a0 Unwind@101689a0 undefined Unwind@101689a0(void) 8 1 +101689d0 Unwind@101689d0 undefined Unwind@101689d0(void) 8 1 +10168a20 Unwind@10168a20 undefined Unwind@10168a20(void) 8 1 +10168a28 Unwind@10168a28 undefined Unwind@10168a28(void) 11 1 +10168a50 Unwind@10168a50 undefined Unwind@10168a50(void) 8 1 +10168a58 Unwind@10168a58 undefined Unwind@10168a58(void) 11 1 +10168a80 Unwind@10168a80 undefined Unwind@10168a80(void) 11 1 +10168a8b Unwind@10168a8b undefined Unwind@10168a8b(void) 8 1 +10168ab0 Unwind@10168ab0 undefined Unwind@10168ab0(void) 11 1 +10168abb Unwind@10168abb undefined Unwind@10168abb(void) 8 1 +10168ae0 Unwind@10168ae0 undefined Unwind@10168ae0(void) 8 1 +10168b10 Unwind@10168b10 undefined Unwind@10168b10(void) 8 1 +10168b40 Unwind@10168b40 undefined Unwind@10168b40(void) 8 1 +10168b70 Unwind@10168b70 undefined Unwind@10168b70(void) 11 1 +10168b7b Unwind@10168b7b undefined Unwind@10168b7b(void) 8 1 +10168ba0 Unwind@10168ba0 undefined Unwind@10168ba0(void) 17 1 +10168bd0 Unwind@10168bd0 undefined Unwind@10168bd0(void) 8 1 +10168bd8 Unwind@10168bd8 undefined Unwind@10168bd8(void) 8 1 +10168be0 Unwind@10168be0 undefined Unwind@10168be0(void) 8 1 +10168be8 Unwind@10168be8 undefined Unwind@10168be8(void) 8 1 +10168bf0 Unwind@10168bf0 undefined Unwind@10168bf0(void) 8 1 +10168c20 Unwind@10168c20 undefined Unwind@10168c20(void) 8 1 +10168c28 Unwind@10168c28 undefined Unwind@10168c28(void) 8 1 +10168c50 Unwind@10168c50 undefined Unwind@10168c50(void) 8 1 +10168c58 Unwind@10168c58 undefined Unwind@10168c58(void) 8 1 +10168c80 Unwind@10168c80 undefined Unwind@10168c80(void) 8 1 +10168c88 Unwind@10168c88 undefined Unwind@10168c88(void) 8 1 +10168cb0 Unwind@10168cb0 undefined Unwind@10168cb0(void) 8 1 +10168cb8 Unwind@10168cb8 undefined Unwind@10168cb8(void) 8 1 +10168cc0 Unwind@10168cc0 undefined Unwind@10168cc0(void) 8 1 +10168cc8 Unwind@10168cc8 undefined Unwind@10168cc8(void) 8 1 +10168cd0 Unwind@10168cd0 undefined Unwind@10168cd0(void) 8 1 +10168d00 Unwind@10168d00 undefined Unwind@10168d00(void) 11 1 +10168d0b Unwind@10168d0b undefined Unwind@10168d0b(void) 11 1 +10168d16 Unwind@10168d16 undefined Unwind@10168d16(void) 11 1 +10168d21 Unwind@10168d21 undefined Unwind@10168d21(void) 11 1 +10168d2c Unwind@10168d2c undefined Unwind@10168d2c(void) 11 1 +10168d37 Unwind@10168d37 undefined Unwind@10168d37(void) 11 1 +10168d70 Unwind@10168d70 undefined Unwind@10168d70(void) 8 1 +10168da0 Unwind@10168da0 undefined Unwind@10168da0(void) 8 1 +10168da8 Unwind@10168da8 undefined Unwind@10168da8(void) 8 1 +10168dd0 Unwind@10168dd0 undefined Unwind@10168dd0(void) 11 1 +10168ddb Unwind@10168ddb undefined Unwind@10168ddb(void) 11 1 +10168de6 Unwind@10168de6 undefined Unwind@10168de6(void) 8 1 +10168e10 Unwind@10168e10 undefined Unwind@10168e10(void) 11 1 +10168e1b Unwind@10168e1b undefined Unwind@10168e1b(void) 11 1 +10168e26 Unwind@10168e26 undefined Unwind@10168e26(void) 8 1 +10168e50 Unwind@10168e50 undefined Unwind@10168e50(void) 11 1 +10168e80 Unwind@10168e80 undefined Unwind@10168e80(void) 8 1 +10168e88 Unwind@10168e88 undefined Unwind@10168e88(void) 11 1 +10168e93 Unwind@10168e93 undefined Unwind@10168e93(void) 11 1 +10168e9e Unwind@10168e9e undefined Unwind@10168e9e(void) 8 1 +10168ed0 Unwind@10168ed0 undefined Unwind@10168ed0(void) 8 1 +10168ed8 Unwind@10168ed8 undefined Unwind@10168ed8(void) 11 1 +10168ee3 Unwind@10168ee3 undefined Unwind@10168ee3(void) 11 1 +10168f10 Unwind@10168f10 undefined Unwind@10168f10(void) 9 0 +10168f40 Unwind@10168f40 undefined Unwind@10168f40(void) 9 0 +10168f70 Unwind@10168f70 undefined Unwind@10168f70(void) 8 1 +10168fa0 Unwind@10168fa0 undefined Unwind@10168fa0(void) 8 1 +10168fd0 Unwind@10168fd0 undefined Unwind@10168fd0(void) 8 1 +10168fd8 Unwind@10168fd8 undefined Unwind@10168fd8(void) 9 0 +10169000 Unwind@10169000 undefined Unwind@10169000(void) 8 1 +10169008 Unwind@10169008 undefined Unwind@10169008(void) 11 1 +10169013 Unwind@10169013 undefined Unwind@10169013(void) 11 1 +1016901e Unwind@1016901e undefined Unwind@1016901e(void) 8 1 +10169050 Unwind@10169050 undefined Unwind@10169050(void) 8 1 +10169058 Unwind@10169058 undefined Unwind@10169058(void) 11 1 +10169063 Unwind@10169063 undefined Unwind@10169063(void) 11 1 +1016906e Unwind@1016906e undefined Unwind@1016906e(void) 8 1 +101690a0 Unwind@101690a0 undefined Unwind@101690a0(void) 8 1 +101690a8 Unwind@101690a8 undefined Unwind@101690a8(void) 11 1 +101690b3 Unwind@101690b3 undefined Unwind@101690b3(void) 11 1 +101690be Unwind@101690be undefined Unwind@101690be(void) 8 1 +10169130 Unwind@10169130 undefined Unwind@10169130(void) 8 1 +10169138 Unwind@10169138 undefined Unwind@10169138(void) 11 1 +10169143 Unwind@10169143 undefined Unwind@10169143(void) 11 1 +1016914e Unwind@1016914e undefined Unwind@1016914e(void) 8 1 +10169180 Unwind@10169180 undefined Unwind@10169180(void) 8 1 +10169188 Unwind@10169188 undefined Unwind@10169188(void) 11 1 +10169193 Unwind@10169193 undefined Unwind@10169193(void) 11 1 +1016919e Unwind@1016919e undefined Unwind@1016919e(void) 8 1 +101691d0 Unwind@101691d0 undefined Unwind@101691d0(void) 9 0 +10169200 Unwind@10169200 undefined Unwind@10169200(void) 11 1 +10169230 Unwind@10169230 undefined Unwind@10169230(void) 8 1 +10169238 Unwind@10169238 undefined Unwind@10169238(void) 11 1 +10169243 Unwind@10169243 undefined Unwind@10169243(void) 11 1 +1016924e Unwind@1016924e undefined Unwind@1016924e(void) 8 1 +10169256 Unwind@10169256 undefined Unwind@10169256(void) 8 1 +10169280 Unwind@10169280 undefined Unwind@10169280(void) 8 1 +10169288 Unwind@10169288 undefined Unwind@10169288(void) 8 1 +10169290 Unwind@10169290 undefined Unwind@10169290(void) 11 1 +1016929b Unwind@1016929b undefined Unwind@1016929b(void) 11 1 +101692a6 Unwind@101692a6 undefined Unwind@101692a6(void) 8 1 +101692d0 Unwind@101692d0 undefined Unwind@101692d0(void) 8 1 +101692d8 Unwind@101692d8 undefined Unwind@101692d8(void) 8 1 +101692e0 Unwind@101692e0 undefined Unwind@101692e0(void) 11 1 +101692eb Unwind@101692eb undefined Unwind@101692eb(void) 11 1 +101692f6 Unwind@101692f6 undefined Unwind@101692f6(void) 8 1 +10169320 Unwind@10169320 undefined Unwind@10169320(void) 11 1 +10169350 Unwind@10169350 undefined Unwind@10169350(void) 11 1 +10169380 Unwind@10169380 undefined Unwind@10169380(void) 11 1 +101693b0 Unwind@101693b0 undefined Unwind@101693b0(void) 29 0 +101693cd Unwind@101693cd undefined Unwind@101693cd(void) 12 0 +101693d9 Unwind@101693d9 undefined Unwind@101693d9(void) 11 1 +10169400 Unwind@10169400 undefined Unwind@10169400(void) 11 1 +1016940b Unwind@1016940b undefined Unwind@1016940b(void) 14 0 +10169419 Unwind@10169419 undefined Unwind@10169419(void) 11 1 +10169424 Unwind@10169424 undefined Unwind@10169424(void) 14 0 +10169432 Unwind@10169432 undefined Unwind@10169432(void) 11 1 +1016943d Unwind@1016943d undefined Unwind@1016943d(void) 14 0 +1016944b Unwind@1016944b undefined Unwind@1016944b(void) 11 1 +10169456 Unwind@10169456 undefined Unwind@10169456(void) 14 0 +10169464 Unwind@10169464 undefined Unwind@10169464(void) 11 1 +1016946f Unwind@1016946f undefined Unwind@1016946f(void) 14 0 +1016947d Unwind@1016947d undefined Unwind@1016947d(void) 11 1 +10169488 Unwind@10169488 undefined Unwind@10169488(void) 14 0 +10169496 Unwind@10169496 undefined Unwind@10169496(void) 11 1 +101694a1 Unwind@101694a1 undefined Unwind@101694a1(void) 14 0 +101694af Unwind@101694af undefined Unwind@101694af(void) 11 1 +101694ba Unwind@101694ba undefined Unwind@101694ba(void) 14 0 +101694c8 Unwind@101694c8 undefined Unwind@101694c8(void) 11 1 +101694d3 Unwind@101694d3 undefined Unwind@101694d3(void) 14 0 +101694e1 Unwind@101694e1 undefined Unwind@101694e1(void) 11 1 +101694ec Unwind@101694ec undefined Unwind@101694ec(void) 14 0 +101694fa Unwind@101694fa undefined Unwind@101694fa(void) 11 1 +10169505 Unwind@10169505 undefined Unwind@10169505(void) 14 0 +10169513 Unwind@10169513 undefined Unwind@10169513(void) 11 1 +1016951e Unwind@1016951e undefined Unwind@1016951e(void) 14 0 +1016952c Unwind@1016952c undefined Unwind@1016952c(void) 11 1 +10169537 Unwind@10169537 undefined Unwind@10169537(void) 14 0 +10169545 Unwind@10169545 undefined Unwind@10169545(void) 11 1 +10169550 Unwind@10169550 undefined Unwind@10169550(void) 14 0 +1016955e Unwind@1016955e undefined Unwind@1016955e(void) 11 1 +10169569 Unwind@10169569 undefined Unwind@10169569(void) 14 0 +10169577 Unwind@10169577 undefined Unwind@10169577(void) 11 1 +10169582 Unwind@10169582 undefined Unwind@10169582(void) 14 0 +10169590 Unwind@10169590 undefined Unwind@10169590(void) 11 1 +1016959b Unwind@1016959b undefined Unwind@1016959b(void) 14 0 +101695a9 Unwind@101695a9 undefined Unwind@101695a9(void) 11 1 +101695b4 Unwind@101695b4 undefined Unwind@101695b4(void) 14 0 +101695c2 Unwind@101695c2 undefined Unwind@101695c2(void) 11 1 +101695cd Unwind@101695cd undefined Unwind@101695cd(void) 14 0 +101695db Unwind@101695db undefined Unwind@101695db(void) 11 1 +101695e6 Unwind@101695e6 undefined Unwind@101695e6(void) 14 0 +101695f4 Unwind@101695f4 undefined Unwind@101695f4(void) 11 1 +101695ff Unwind@101695ff undefined Unwind@101695ff(void) 14 0 +1016960d Unwind@1016960d undefined Unwind@1016960d(void) 11 1 +10169618 Unwind@10169618 undefined Unwind@10169618(void) 14 0 +10169650 Unwind@10169650 undefined Unwind@10169650(void) 11 1 +10169680 Unwind@10169680 undefined Unwind@10169680(void) 8 1 +10169688 Unwind@10169688 undefined Unwind@10169688(void) 11 1 +101696b0 Unwind@101696b0 undefined Unwind@101696b0(void) 8 1 +101696e0 Unwind@101696e0 undefined Unwind@101696e0(void) 12 0 +101696ec Unwind@101696ec undefined Unwind@101696ec(void) 11 1 +10169720 Unwind@10169720 undefined Unwind@10169720(void) 8 1 +10169728 Unwind@10169728 undefined Unwind@10169728(void) 8 1 +10169750 Unwind@10169750 undefined Unwind@10169750(void) 8 1 +10169758 Unwind@10169758 undefined Unwind@10169758(void) 8 1 +10169760 Unwind@10169760 undefined Unwind@10169760(void) 9 0 +10169790 Unwind@10169790 undefined Unwind@10169790(void) 10 1 +1016979a Unwind@1016979a undefined Unwind@1016979a(void) 10 1 +101697a4 Unwind@101697a4 undefined Unwind@101697a4(void) 9 0 +101697d0 Unwind@101697d0 undefined Unwind@101697d0(void) 10 1 +101697da Unwind@101697da undefined Unwind@101697da(void) 10 1 +10169800 Unwind@10169800 undefined Unwind@10169800(void) 10 1 +1016980a Unwind@1016980a undefined Unwind@1016980a(void) 10 1 +10169830 Unwind@10169830 undefined Unwind@10169830(void) 10 1 +1016983a Unwind@1016983a undefined Unwind@1016983a(void) 10 1 +10169860 Unwind@10169860 undefined Unwind@10169860(void) 17 1 +10169890 Unwind@10169890 undefined Unwind@10169890(void) 8 1 +101698c0 Unwind@101698c0 undefined Unwind@101698c0(void) 8 1 +101698f0 Unwind@101698f0 undefined Unwind@101698f0(void) 17 1 +10169920 Unwind@10169920 undefined Unwind@10169920(void) 8 1 +10169928 Unwind@10169928 undefined Unwind@10169928(void) 25 1 +10169960 Unwind@10169960 undefined Unwind@10169960(void) 9 0 +10169990 Unwind@10169990 undefined Unwind@10169990(void) 9 0 +101699c0 Unwind@101699c0 undefined Unwind@101699c0(void) 17 1 +101699f0 Unwind@101699f0 undefined Unwind@101699f0(void) 8 1 +101699f8 Unwind@101699f8 undefined Unwind@101699f8(void) 8 1 +10169a00 Unwind@10169a00 undefined Unwind@10169a00(void) 8 1 +10169a08 Unwind@10169a08 undefined Unwind@10169a08(void) 8 1 +10169a10 Unwind@10169a10 undefined Unwind@10169a10(void) 8 1 +10169a18 Unwind@10169a18 undefined Unwind@10169a18(void) 11 1 +10169a23 Unwind@10169a23 undefined Unwind@10169a23(void) 11 1 +10169a2e Unwind@10169a2e undefined Unwind@10169a2e(void) 11 1 +10169a39 Unwind@10169a39 undefined Unwind@10169a39(void) 11 1 +10169a60 Unwind@10169a60 undefined Unwind@10169a60(void) 9 0 +10169a90 Unwind@10169a90 undefined Unwind@10169a90(void) 17 1 +10169ac0 Unwind@10169ac0 undefined Unwind@10169ac0(void) 9 0 +10169af0 Unwind@10169af0 undefined Unwind@10169af0(void) 8 1 +10169af8 Unwind@10169af8 undefined Unwind@10169af8(void) 11 1 +10169b03 Unwind@10169b03 undefined Unwind@10169b03(void) 8 1 +10169b0b Unwind@10169b0b undefined Unwind@10169b0b(void) 11 1 +10169b16 Unwind@10169b16 undefined Unwind@10169b16(void) 11 1 +10169b21 Unwind@10169b21 undefined Unwind@10169b21(void) 11 1 +10169b2c Unwind@10169b2c undefined Unwind@10169b2c(void) 11 1 +10169b37 Unwind@10169b37 undefined Unwind@10169b37(void) 8 1 +10169b60 Unwind@10169b60 undefined Unwind@10169b60(void) 11 1 +10169b6b Unwind@10169b6b undefined Unwind@10169b6b(void) 11 1 +10169ba0 Unwind@10169ba0 undefined Unwind@10169ba0(void) 11 1 +10169bab Unwind@10169bab undefined Unwind@10169bab(void) 11 1 +10169bb6 Unwind@10169bb6 undefined Unwind@10169bb6(void) 11 1 +10169bc1 Unwind@10169bc1 undefined Unwind@10169bc1(void) 14 1 +10169bcf Unwind@10169bcf undefined Unwind@10169bcf(void) 14 1 +10169bdd Unwind@10169bdd undefined Unwind@10169bdd(void) 14 1 +10169beb Unwind@10169beb undefined Unwind@10169beb(void) 14 1 +10169bf9 Unwind@10169bf9 undefined Unwind@10169bf9(void) 14 1 +10169c30 Unwind@10169c30 undefined Unwind@10169c30(void) 11 1 +10169c3b Unwind@10169c3b undefined Unwind@10169c3b(void) 11 1 +10169c46 Unwind@10169c46 undefined Unwind@10169c46(void) 11 1 +10169c51 Unwind@10169c51 undefined Unwind@10169c51(void) 14 1 +10169c5f Unwind@10169c5f undefined Unwind@10169c5f(void) 14 1 +10169c6d Unwind@10169c6d undefined Unwind@10169c6d(void) 14 1 +10169c7b Unwind@10169c7b undefined Unwind@10169c7b(void) 14 1 +10169c89 Unwind@10169c89 undefined Unwind@10169c89(void) 14 1 +10169cc0 Unwind@10169cc0 undefined Unwind@10169cc0(void) 11 1 +10169ccb Unwind@10169ccb undefined Unwind@10169ccb(void) 11 1 +10169cd6 Unwind@10169cd6 undefined Unwind@10169cd6(void) 11 1 +10169ce1 Unwind@10169ce1 undefined Unwind@10169ce1(void) 11 1 +10169cec Unwind@10169cec undefined Unwind@10169cec(void) 11 1 +10169cf7 Unwind@10169cf7 undefined Unwind@10169cf7(void) 11 1 +10169d02 Unwind@10169d02 undefined Unwind@10169d02(void) 34 1 +10169d50 Unwind@10169d50 undefined Unwind@10169d50(void) 34 1 +10169d72 Unwind@10169d72 undefined Unwind@10169d72(void) 11 1 +10169d7d Unwind@10169d7d undefined Unwind@10169d7d(void) 11 1 +10169d88 Unwind@10169d88 undefined Unwind@10169d88(void) 11 1 +10169d93 Unwind@10169d93 undefined Unwind@10169d93(void) 11 1 +10169d9e Unwind@10169d9e undefined Unwind@10169d9e(void) 11 1 +10169da9 Unwind@10169da9 undefined Unwind@10169da9(void) 11 1 +10169db4 Unwind@10169db4 undefined Unwind@10169db4(void) 34 1 +10169e00 Unwind@10169e00 undefined Unwind@10169e00(void) 8 1 +10169e30 Unwind@10169e30 undefined Unwind@10169e30(void) 8 1 +10169e60 Unwind@10169e60 undefined Unwind@10169e60(void) 8 1 +10169e90 Unwind@10169e90 undefined Unwind@10169e90(void) 8 1 +10169ec0 Unwind@10169ec0 undefined Unwind@10169ec0(void) 8 1 +10169ef0 Unwind@10169ef0 undefined Unwind@10169ef0(void) 9 0 +10169f20 Unwind@10169f20 undefined Unwind@10169f20(void) 9 0 +10169f50 Unwind@10169f50 undefined Unwind@10169f50(void) 8 1 +10169f80 Unwind@10169f80 undefined Unwind@10169f80(void) 8 1 +10169fb0 Unwind@10169fb0 undefined Unwind@10169fb0(void) 8 1 +10169fe0 Unwind@10169fe0 undefined Unwind@10169fe0(void) 8 1 +1016a010 Unwind@1016a010 undefined Unwind@1016a010(void) 8 1 +1016a040 Unwind@1016a040 undefined Unwind@1016a040(void) 8 1 +1016a070 Unwind@1016a070 undefined Unwind@1016a070(void) 8 1 +1016a0a0 Unwind@1016a0a0 undefined Unwind@1016a0a0(void) 8 1 +1016a0d0 Unwind@1016a0d0 undefined Unwind@1016a0d0(void) 8 1 +1016a100 Unwind@1016a100 undefined Unwind@1016a100(void) 8 1 +1016a130 Unwind@1016a130 undefined Unwind@1016a130(void) 8 1 +1016a160 Unwind@1016a160 undefined Unwind@1016a160(void) 8 1 +1016a190 Unwind@1016a190 undefined Unwind@1016a190(void) 8 1 +1016a1c0 Unwind@1016a1c0 undefined Unwind@1016a1c0(void) 8 1 +1016a1f0 Unwind@1016a1f0 undefined Unwind@1016a1f0(void) 8 1 +1016a220 Unwind@1016a220 undefined Unwind@1016a220(void) 8 1 +1016a250 Unwind@1016a250 undefined Unwind@1016a250(void) 8 1 +1016a280 Unwind@1016a280 undefined Unwind@1016a280(void) 8 1 +1016a2b0 Unwind@1016a2b0 undefined Unwind@1016a2b0(void) 8 1 +1016a2e0 Unwind@1016a2e0 undefined Unwind@1016a2e0(void) 8 1 +1016a310 Unwind@1016a310 undefined Unwind@1016a310(void) 8 1 +1016a340 Unwind@1016a340 undefined Unwind@1016a340(void) 8 1 +1016a370 Unwind@1016a370 undefined Unwind@1016a370(void) 8 1 +1016a3a0 Unwind@1016a3a0 undefined Unwind@1016a3a0(void) 8 1 +1016a3d0 Unwind@1016a3d0 undefined Unwind@1016a3d0(void) 8 1 +1016a400 Unwind@1016a400 undefined Unwind@1016a400(void) 8 1 +1016a430 Unwind@1016a430 undefined Unwind@1016a430(void) 8 1 +1016a460 Unwind@1016a460 undefined Unwind@1016a460(void) 8 1 +1016a490 Unwind@1016a490 undefined Unwind@1016a490(void) 8 1 +1016a4c0 Unwind@1016a4c0 undefined Unwind@1016a4c0(void) 8 1 +1016a4f0 Unwind@1016a4f0 undefined Unwind@1016a4f0(void) 8 1 +1016a520 Unwind@1016a520 undefined Unwind@1016a520(void) 8 1 +1016a550 Unwind@1016a550 undefined Unwind@1016a550(void) 8 1 +1016a580 Unwind@1016a580 undefined Unwind@1016a580(void) 8 1 +1016a5b0 Unwind@1016a5b0 undefined Unwind@1016a5b0(void) 8 1 +1016a5e0 Unwind@1016a5e0 undefined Unwind@1016a5e0(void) 8 1 +1016a610 Unwind@1016a610 undefined Unwind@1016a610(void) 8 1 +1016a640 Unwind@1016a640 undefined Unwind@1016a640(void) 8 1 +1016a670 Unwind@1016a670 undefined Unwind@1016a670(void) 8 1 +1016a6a0 Unwind@1016a6a0 undefined Unwind@1016a6a0(void) 8 1 +1016a6d0 Unwind@1016a6d0 undefined Unwind@1016a6d0(void) 8 1 +1016a700 Unwind@1016a700 undefined Unwind@1016a700(void) 8 1 +1016a730 Unwind@1016a730 undefined Unwind@1016a730(void) 8 1 +1016a760 Unwind@1016a760 undefined Unwind@1016a760(void) 8 1 +1016a790 Unwind@1016a790 undefined Unwind@1016a790(void) 8 1 +1016a7c0 Unwind@1016a7c0 undefined Unwind@1016a7c0(void) 8 1 +1016a7f0 Unwind@1016a7f0 undefined Unwind@1016a7f0(void) 8 1 +1016a820 Unwind@1016a820 undefined Unwind@1016a820(void) 8 1 +1016a850 Unwind@1016a850 undefined Unwind@1016a850(void) 8 1 +1016a880 Unwind@1016a880 undefined Unwind@1016a880(void) 8 1 +1016a8b0 Unwind@1016a8b0 undefined Unwind@1016a8b0(void) 8 1 +1016a8e0 Unwind@1016a8e0 undefined Unwind@1016a8e0(void) 8 1 +1016a910 Unwind@1016a910 undefined Unwind@1016a910(void) 17 1 +1016a940 Unwind@1016a940 undefined Unwind@1016a940(void) 17 1 +1016a970 Unwind@1016a970 undefined Unwind@1016a970(void) 17 1 +1016a9a0 Unwind@1016a9a0 undefined Unwind@1016a9a0(void) 8 1 +1016a9d0 Unwind@1016a9d0 undefined Unwind@1016a9d0(void) 8 1 +1016aa00 Unwind@1016aa00 undefined Unwind@1016aa00(void) 8 1 +1016aa30 Unwind@1016aa30 undefined Unwind@1016aa30(void) 8 1 +1016aa60 Unwind@1016aa60 undefined Unwind@1016aa60(void) 11 1 +1016aa6b Unwind@1016aa6b undefined Unwind@1016aa6b(void) 11 1 +1016aa76 Unwind@1016aa76 undefined Unwind@1016aa76(void) 11 1 +1016aa81 Unwind@1016aa81 undefined Unwind@1016aa81(void) 11 1 +1016aa8c Unwind@1016aa8c undefined Unwind@1016aa8c(void) 8 1 +1016aab0 Unwind@1016aab0 undefined Unwind@1016aab0(void) 8 1 +1016aae0 Unwind@1016aae0 undefined Unwind@1016aae0(void) 8 1 +1016ab10 Unwind@1016ab10 undefined Unwind@1016ab10(void) 8 1 +1016ab40 Unwind@1016ab40 undefined Unwind@1016ab40(void) 8 1 +1016ab70 Unwind@1016ab70 undefined Unwind@1016ab70(void) 8 1 +1016aba0 Unwind@1016aba0 undefined Unwind@1016aba0(void) 8 1 +1016abd0 Unwind@1016abd0 undefined Unwind@1016abd0(void) 8 1 +1016ac00 Unwind@1016ac00 undefined Unwind@1016ac00(void) 8 1 +1016ac30 Unwind@1016ac30 undefined Unwind@1016ac30(void) 8 1 +1016ac60 Unwind@1016ac60 undefined Unwind@1016ac60(void) 8 1 +1016ac90 Unwind@1016ac90 undefined Unwind@1016ac90(void) 8 1 +1016acc0 Unwind@1016acc0 undefined Unwind@1016acc0(void) 8 1 +1016acf0 Unwind@1016acf0 undefined Unwind@1016acf0(void) 8 1 +1016ad20 Unwind@1016ad20 undefined Unwind@1016ad20(void) 8 1 +1016ad50 Unwind@1016ad50 undefined Unwind@1016ad50(void) 8 1 +1016ad80 Unwind@1016ad80 undefined Unwind@1016ad80(void) 8 1 +1016adb0 Unwind@1016adb0 undefined Unwind@1016adb0(void) 8 1 +1016ade0 Unwind@1016ade0 undefined Unwind@1016ade0(void) 8 1 +1016ae10 Unwind@1016ae10 undefined Unwind@1016ae10(void) 8 1 +1016ae40 Unwind@1016ae40 undefined Unwind@1016ae40(void) 8 1 +1016ae70 Unwind@1016ae70 undefined Unwind@1016ae70(void) 8 1 +1016aea0 Unwind@1016aea0 undefined Unwind@1016aea0(void) 8 1 +1016aed0 Unwind@1016aed0 undefined Unwind@1016aed0(void) 8 1 +1016af00 Unwind@1016af00 undefined Unwind@1016af00(void) 8 1 +1016af30 Unwind@1016af30 undefined Unwind@1016af30(void) 8 1 +1016af60 Unwind@1016af60 undefined Unwind@1016af60(void) 8 1 +1016af90 Unwind@1016af90 undefined Unwind@1016af90(void) 8 1 +1016afc0 Unwind@1016afc0 undefined Unwind@1016afc0(void) 8 1 +1016aff0 Unwind@1016aff0 undefined Unwind@1016aff0(void) 8 1 +1016b020 Unwind@1016b020 undefined Unwind@1016b020(void) 8 1 +1016b050 Unwind@1016b050 undefined Unwind@1016b050(void) 8 1 +1016b080 Unwind@1016b080 undefined Unwind@1016b080(void) 8 1 +1016b0b0 Unwind@1016b0b0 undefined Unwind@1016b0b0(void) 8 1 +1016b0e0 Unwind@1016b0e0 undefined Unwind@1016b0e0(void) 8 1 +1016b110 Unwind@1016b110 undefined Unwind@1016b110(void) 8 1 +1016b140 Unwind@1016b140 undefined Unwind@1016b140(void) 8 1 +1016b170 Unwind@1016b170 undefined Unwind@1016b170(void) 8 1 +1016b1a0 Unwind@1016b1a0 undefined Unwind@1016b1a0(void) 8 1 +1016b1d0 Unwind@1016b1d0 undefined Unwind@1016b1d0(void) 8 1 +1016b200 Unwind@1016b200 undefined Unwind@1016b200(void) 8 1 +1016b230 Unwind@1016b230 undefined Unwind@1016b230(void) 9 0 +1016b260 Unwind@1016b260 undefined Unwind@1016b260(void) 9 0 +1016b290 Unwind@1016b290 undefined Unwind@1016b290(void) 17 1 +1016b2c0 Unwind@1016b2c0 undefined Unwind@1016b2c0(void) 17 1 +1016b2f0 Unwind@1016b2f0 undefined Unwind@1016b2f0(void) 17 1 +1016b320 Unwind@1016b320 undefined Unwind@1016b320(void) 8 1 +1016b328 Unwind@1016b328 undefined Unwind@1016b328(void) 11 1 +1016b333 Unwind@1016b333 undefined Unwind@1016b333(void) 11 1 +1016b33e Unwind@1016b33e undefined Unwind@1016b33e(void) 11 1 +1016b370 Unwind@1016b370 undefined Unwind@1016b370(void) 8 1 +1016b378 Unwind@1016b378 undefined Unwind@1016b378(void) 8 1 +1016b3a0 Unwind@1016b3a0 undefined Unwind@1016b3a0(void) 8 1 +1016b3a8 Unwind@1016b3a8 undefined Unwind@1016b3a8(void) 8 1 +1016b3d0 Unwind@1016b3d0 undefined Unwind@1016b3d0(void) 8 1 +1016b3d8 Unwind@1016b3d8 undefined Unwind@1016b3d8(void) 8 1 +1016b3e0 Unwind@1016b3e0 undefined Unwind@1016b3e0(void) 11 1 +1016b410 Unwind@1016b410 undefined Unwind@1016b410(void) 8 1 +1016b418 Unwind@1016b418 undefined Unwind@1016b418(void) 11 1 +1016b423 Unwind@1016b423 undefined Unwind@1016b423(void) 8 1 +1016b450 Unwind@1016b450 undefined Unwind@1016b450(void) 8 1 +1016b458 Unwind@1016b458 undefined Unwind@1016b458(void) 11 1 +1016b463 Unwind@1016b463 undefined Unwind@1016b463(void) 8 1 +1016b490 Unwind@1016b490 undefined Unwind@1016b490(void) 11 1 +1016b49b Unwind@1016b49b undefined Unwind@1016b49b(void) 11 1 +1016b4a6 Unwind@1016b4a6 undefined Unwind@1016b4a6(void) 11 1 +1016b4b1 Unwind@1016b4b1 undefined Unwind@1016b4b1(void) 11 1 +1016b4bc Unwind@1016b4bc undefined Unwind@1016b4bc(void) 11 1 +1016b4c7 Unwind@1016b4c7 undefined Unwind@1016b4c7(void) 8 1 +1016b4cf Unwind@1016b4cf undefined Unwind@1016b4cf(void) 8 1 +1016b4d7 Unwind@1016b4d7 undefined Unwind@1016b4d7(void) 8 1 +1016b4df Unwind@1016b4df undefined Unwind@1016b4df(void) 8 1 +1016b510 Unwind@1016b510 undefined Unwind@1016b510(void) 8 1 +1016b540 Unwind@1016b540 undefined Unwind@1016b540(void) 8 1 +1016b548 Unwind@1016b548 undefined Unwind@1016b548(void) 11 1 +1016b553 Unwind@1016b553 undefined Unwind@1016b553(void) 11 1 +1016b55e Unwind@1016b55e undefined Unwind@1016b55e(void) 11 1 +1016b569 Unwind@1016b569 undefined Unwind@1016b569(void) 11 1 +1016b574 Unwind@1016b574 undefined Unwind@1016b574(void) 8 1 +1016b5a0 Unwind@1016b5a0 undefined Unwind@1016b5a0(void) 8 1 +1016b5d0 Unwind@1016b5d0 undefined Unwind@1016b5d0(void) 8 1 +1016b600 Unwind@1016b600 undefined Unwind@1016b600(void) 8 1 +1016b630 Unwind@1016b630 undefined Unwind@1016b630(void) 8 1 +1016b660 Unwind@1016b660 undefined Unwind@1016b660(void) 8 1 +1016b690 Unwind@1016b690 undefined Unwind@1016b690(void) 8 1 +1016b6c0 Unwind@1016b6c0 undefined Unwind@1016b6c0(void) 8 1 +1016b6f0 Unwind@1016b6f0 undefined Unwind@1016b6f0(void) 8 1 +1016b720 Unwind@1016b720 undefined Unwind@1016b720(void) 8 1 +1016b750 Unwind@1016b750 undefined Unwind@1016b750(void) 8 1 +1016b780 Unwind@1016b780 undefined Unwind@1016b780(void) 8 1 +1016b7b0 Unwind@1016b7b0 undefined Unwind@1016b7b0(void) 8 1 +1016b7e0 Unwind@1016b7e0 undefined Unwind@1016b7e0(void) 8 1 +1016b810 Unwind@1016b810 undefined Unwind@1016b810(void) 8 1 +1016b840 Unwind@1016b840 undefined Unwind@1016b840(void) 8 1 +1016b870 Unwind@1016b870 undefined Unwind@1016b870(void) 8 1 +1016b8a0 Unwind@1016b8a0 undefined Unwind@1016b8a0(void) 8 1 +1016b8d0 Unwind@1016b8d0 undefined Unwind@1016b8d0(void) 8 1 +1016b900 Unwind@1016b900 undefined Unwind@1016b900(void) 8 1 +1016b930 Unwind@1016b930 undefined Unwind@1016b930(void) 8 1 +1016b960 Unwind@1016b960 undefined Unwind@1016b960(void) 8 1 +1016b990 Unwind@1016b990 undefined Unwind@1016b990(void) 8 1 +1016b9c0 Unwind@1016b9c0 undefined Unwind@1016b9c0(void) 8 1 +1016b9f0 Unwind@1016b9f0 undefined Unwind@1016b9f0(void) 8 1 +1016ba20 Unwind@1016ba20 undefined Unwind@1016ba20(void) 8 1 +1016ba50 Unwind@1016ba50 undefined Unwind@1016ba50(void) 8 1 +1016ba80 Unwind@1016ba80 undefined Unwind@1016ba80(void) 8 1 +1016bab0 Unwind@1016bab0 undefined Unwind@1016bab0(void) 8 1 +1016bae0 Unwind@1016bae0 undefined Unwind@1016bae0(void) 8 1 +1016bb10 Unwind@1016bb10 undefined Unwind@1016bb10(void) 8 1 +1016bb40 Unwind@1016bb40 undefined Unwind@1016bb40(void) 8 1 +1016bb70 Unwind@1016bb70 undefined Unwind@1016bb70(void) 8 1 +1016bba0 Unwind@1016bba0 undefined Unwind@1016bba0(void) 8 1 +1016bbd0 Unwind@1016bbd0 undefined Unwind@1016bbd0(void) 8 1 +1016bc00 Unwind@1016bc00 undefined Unwind@1016bc00(void) 8 1 +1016bc30 Unwind@1016bc30 undefined Unwind@1016bc30(void) 8 1 +1016bc60 Unwind@1016bc60 undefined Unwind@1016bc60(void) 8 1 +1016bc90 Unwind@1016bc90 undefined Unwind@1016bc90(void) 8 1 +1016bcc0 Unwind@1016bcc0 undefined Unwind@1016bcc0(void) 8 1 +1016bcf0 Unwind@1016bcf0 undefined Unwind@1016bcf0(void) 8 1 +1016bd20 Unwind@1016bd20 undefined Unwind@1016bd20(void) 8 1 +1016bd50 Unwind@1016bd50 undefined Unwind@1016bd50(void) 8 1 +1016bd80 Unwind@1016bd80 undefined Unwind@1016bd80(void) 8 1 +1016bdb0 Unwind@1016bdb0 undefined Unwind@1016bdb0(void) 8 1 +1016bde0 Unwind@1016bde0 undefined Unwind@1016bde0(void) 8 1 +1016be10 Unwind@1016be10 undefined Unwind@1016be10(void) 8 1 +1016be40 Unwind@1016be40 undefined Unwind@1016be40(void) 8 1 +1016be70 Unwind@1016be70 undefined Unwind@1016be70(void) 8 1 +1016bea0 Unwind@1016bea0 undefined Unwind@1016bea0(void) 8 1 +1016bed0 Unwind@1016bed0 undefined Unwind@1016bed0(void) 8 1 +1016bf00 Unwind@1016bf00 undefined Unwind@1016bf00(void) 8 1 +1016bf30 Unwind@1016bf30 undefined Unwind@1016bf30(void) 8 1 +1016bf60 Unwind@1016bf60 undefined Unwind@1016bf60(void) 8 1 +1016bf90 Unwind@1016bf90 undefined Unwind@1016bf90(void) 8 1 +1016bfc0 Unwind@1016bfc0 undefined Unwind@1016bfc0(void) 8 1 +1016bff0 Unwind@1016bff0 undefined Unwind@1016bff0(void) 8 1 +1016c020 Unwind@1016c020 undefined Unwind@1016c020(void) 8 1 +1016c050 Unwind@1016c050 undefined Unwind@1016c050(void) 8 1 +1016c080 Unwind@1016c080 undefined Unwind@1016c080(void) 8 1 +1016c0b0 Unwind@1016c0b0 undefined Unwind@1016c0b0(void) 8 1 +1016c0e0 Unwind@1016c0e0 undefined Unwind@1016c0e0(void) 8 1 +1016c110 Unwind@1016c110 undefined Unwind@1016c110(void) 8 1 +1016c140 Unwind@1016c140 undefined Unwind@1016c140(void) 8 1 +1016c170 Unwind@1016c170 undefined Unwind@1016c170(void) 8 1 +1016c1a0 Unwind@1016c1a0 undefined Unwind@1016c1a0(void) 8 1 +1016c1d0 Unwind@1016c1d0 undefined Unwind@1016c1d0(void) 8 1 +1016c200 Unwind@1016c200 undefined Unwind@1016c200(void) 8 1 +1016c230 Unwind@1016c230 undefined Unwind@1016c230(void) 8 1 +1016c260 Unwind@1016c260 undefined Unwind@1016c260(void) 8 1 +1016c290 Unwind@1016c290 undefined Unwind@1016c290(void) 8 1 +1016c2c0 Unwind@1016c2c0 undefined Unwind@1016c2c0(void) 8 1 +1016c2f0 Unwind@1016c2f0 undefined Unwind@1016c2f0(void) 8 1 +1016c320 Unwind@1016c320 undefined Unwind@1016c320(void) 8 1 +1016c350 Unwind@1016c350 undefined Unwind@1016c350(void) 8 1 +1016c380 Unwind@1016c380 undefined Unwind@1016c380(void) 8 1 +1016c3b0 Unwind@1016c3b0 undefined Unwind@1016c3b0(void) 8 1 +1016c3e0 Unwind@1016c3e0 undefined Unwind@1016c3e0(void) 8 1 +1016c410 Unwind@1016c410 undefined Unwind@1016c410(void) 8 1 +1016c440 Unwind@1016c440 undefined Unwind@1016c440(void) 8 1 +1016c470 Unwind@1016c470 undefined Unwind@1016c470(void) 8 1 +1016c4a0 Unwind@1016c4a0 undefined Unwind@1016c4a0(void) 8 1 +1016c4d0 Unwind@1016c4d0 undefined Unwind@1016c4d0(void) 8 1 +1016c500 Unwind@1016c500 undefined Unwind@1016c500(void) 8 1 +1016c530 Unwind@1016c530 undefined Unwind@1016c530(void) 8 1 +1016c560 Unwind@1016c560 undefined Unwind@1016c560(void) 8 1 +1016c590 Unwind@1016c590 undefined Unwind@1016c590(void) 8 1 +1016c5c0 Unwind@1016c5c0 undefined Unwind@1016c5c0(void) 8 1 +1016c5f0 Unwind@1016c5f0 undefined Unwind@1016c5f0(void) 8 1 +1016c620 Unwind@1016c620 undefined Unwind@1016c620(void) 8 1 +1016c650 Unwind@1016c650 undefined Unwind@1016c650(void) 8 1 +1016c680 Unwind@1016c680 undefined Unwind@1016c680(void) 8 1 +1016c6b0 Unwind@1016c6b0 undefined Unwind@1016c6b0(void) 8 1 +1016c6e0 Unwind@1016c6e0 undefined Unwind@1016c6e0(void) 8 1 +1016c710 Unwind@1016c710 undefined Unwind@1016c710(void) 8 1 +1016c740 Unwind@1016c740 undefined Unwind@1016c740(void) 8 1 +1016c770 Unwind@1016c770 undefined Unwind@1016c770(void) 8 1 +1016c7a0 Unwind@1016c7a0 undefined Unwind@1016c7a0(void) 8 1 +1016c7d0 Unwind@1016c7d0 undefined Unwind@1016c7d0(void) 8 1 +1016c800 Unwind@1016c800 undefined Unwind@1016c800(void) 8 1 +1016c830 Unwind@1016c830 undefined Unwind@1016c830(void) 8 1 +1016c860 Unwind@1016c860 undefined Unwind@1016c860(void) 8 1 +1016c890 Unwind@1016c890 undefined Unwind@1016c890(void) 8 1 +1016c8c0 Unwind@1016c8c0 undefined Unwind@1016c8c0(void) 8 1 +1016c8f0 Unwind@1016c8f0 undefined Unwind@1016c8f0(void) 8 1 +1016c920 Unwind@1016c920 undefined Unwind@1016c920(void) 8 1 +1016c950 Unwind@1016c950 undefined Unwind@1016c950(void) 8 1 +1016c980 Unwind@1016c980 undefined Unwind@1016c980(void) 8 1 +1016c9b0 Unwind@1016c9b0 undefined Unwind@1016c9b0(void) 8 1 +1016c9e0 Unwind@1016c9e0 undefined Unwind@1016c9e0(void) 8 1 +1016ca10 Unwind@1016ca10 undefined Unwind@1016ca10(void) 8 1 +1016ca40 Unwind@1016ca40 undefined Unwind@1016ca40(void) 8 1 +1016ca70 Unwind@1016ca70 undefined Unwind@1016ca70(void) 8 1 +1016caa0 Unwind@1016caa0 undefined Unwind@1016caa0(void) 8 1 +1016cad0 Unwind@1016cad0 undefined Unwind@1016cad0(void) 8 1 +1016cb00 Unwind@1016cb00 undefined Unwind@1016cb00(void) 8 1 +1016cb30 Unwind@1016cb30 undefined Unwind@1016cb30(void) 8 1 +1016cb60 Unwind@1016cb60 undefined Unwind@1016cb60(void) 8 1 +1016cb90 Unwind@1016cb90 undefined Unwind@1016cb90(void) 8 1 +1016cbc0 Unwind@1016cbc0 undefined Unwind@1016cbc0(void) 8 1 +1016cbf0 Unwind@1016cbf0 undefined Unwind@1016cbf0(void) 8 1 +1016cc20 Unwind@1016cc20 undefined Unwind@1016cc20(void) 9 0 +1016cc50 Unwind@1016cc50 undefined Unwind@1016cc50(void) 8 1 +1016cc80 Unwind@1016cc80 undefined Unwind@1016cc80(void) 8 1 +1016ccb0 Unwind@1016ccb0 undefined Unwind@1016ccb0(void) 8 1 +1016cce0 Unwind@1016cce0 undefined Unwind@1016cce0(void) 8 1 +1016cd10 Unwind@1016cd10 undefined Unwind@1016cd10(void) 8 1 +1016cd40 Unwind@1016cd40 undefined Unwind@1016cd40(void) 8 1 +1016cd70 Unwind@1016cd70 undefined Unwind@1016cd70(void) 8 1 +1016cda0 Unwind@1016cda0 undefined Unwind@1016cda0(void) 8 1 +1016cdd0 Unwind@1016cdd0 undefined Unwind@1016cdd0(void) 8 1 +1016ce00 Unwind@1016ce00 undefined Unwind@1016ce00(void) 8 1 +1016ce30 Unwind@1016ce30 undefined Unwind@1016ce30(void) 8 1 +1016ce60 Unwind@1016ce60 undefined Unwind@1016ce60(void) 8 1 +1016ce90 Unwind@1016ce90 undefined Unwind@1016ce90(void) 8 1 +1016cec0 Unwind@1016cec0 undefined Unwind@1016cec0(void) 8 1 +1016cef0 Unwind@1016cef0 undefined Unwind@1016cef0(void) 8 1 +1016cf20 Unwind@1016cf20 undefined Unwind@1016cf20(void) 9 0 +1016cf50 Unwind@1016cf50 undefined Unwind@1016cf50(void) 9 0 +1016cf80 Unwind@1016cf80 undefined Unwind@1016cf80(void) 8 1 +1016cff0 Unwind@1016cff0 undefined Unwind@1016cff0(void) 9 0 +1016d020 Unwind@1016d020 undefined Unwind@1016d020(void) 9 0 +1016d050 Unwind@1016d050 undefined Unwind@1016d050(void) 8 1 +1016d058 Unwind@1016d058 undefined Unwind@1016d058(void) 8 1 +1016d080 Unwind@1016d080 undefined Unwind@1016d080(void) 8 1 +1016d088 Unwind@1016d088 undefined Unwind@1016d088(void) 8 1 +1016d090 Unwind@1016d090 undefined Unwind@1016d090(void) 8 1 +1016d0c0 Unwind@1016d0c0 undefined Unwind@1016d0c0(void) 8 1 +1016d0f0 Unwind@1016d0f0 undefined Unwind@1016d0f0(void) 8 1 +1016d120 Unwind@1016d120 undefined Unwind@1016d120(void) 11 1 +1016d160 Unwind@1016d160 undefined Unwind@1016d160(void) 11 1 +1016d16b Unwind@1016d16b undefined Unwind@1016d16b(void) 11 1 +1016d1a0 Unwind@1016d1a0 undefined Unwind@1016d1a0(void) 8 1 +1016d1a8 Unwind@1016d1a8 undefined Unwind@1016d1a8(void) 8 1 +1016d1d0 Unwind@1016d1d0 undefined Unwind@1016d1d0(void) 8 1 +1016d200 Unwind@1016d200 undefined Unwind@1016d200(void) 8 1 +1016d230 Unwind@1016d230 undefined Unwind@1016d230(void) 8 1 +1016d260 Unwind@1016d260 undefined Unwind@1016d260(void) 8 1 +1016d268 Unwind@1016d268 undefined Unwind@1016d268(void) 8 1 +1016d270 Unwind@1016d270 undefined Unwind@1016d270(void) 25 1 +1016d2b0 Unwind@1016d2b0 undefined Unwind@1016d2b0(void) 8 1 +1016d2e0 Unwind@1016d2e0 undefined Unwind@1016d2e0(void) 8 0 +1016d310 Unwind@1016d310 undefined Unwind@1016d310(void) 8 1 +1016d318 Unwind@1016d318 undefined Unwind@1016d318(void) 8 1 +1016d340 Unwind@1016d340 undefined Unwind@1016d340(void) 8 1 +1016d348 Unwind@1016d348 undefined Unwind@1016d348(void) 8 1 +1016d370 Unwind@1016d370 undefined Unwind@1016d370(void) 11 1 +1016d3a0 Unwind@1016d3a0 undefined Unwind@1016d3a0(void) 8 1 +1016d3a8 Unwind@1016d3a8 undefined Unwind@1016d3a8(void) 8 1 +1016d3d0 Unwind@1016d3d0 undefined Unwind@1016d3d0(void) 8 1 +1016d3d8 Unwind@1016d3d8 undefined Unwind@1016d3d8(void) 11 1 +1016d3e3 Unwind@1016d3e3 undefined Unwind@1016d3e3(void) 11 1 +1016d3ee Unwind@1016d3ee undefined Unwind@1016d3ee(void) 11 1 +1016d420 Unwind@1016d420 undefined Unwind@1016d420(void) 17 1 +1016d431 Unwind@1016d431 undefined Unwind@1016d431(void) 8 1 +1016d439 Unwind@1016d439 undefined Unwind@1016d439(void) 8 1 +1016d460 Unwind@1016d460 undefined Unwind@1016d460(void) 11 1 +1016d490 Unwind@1016d490 undefined Unwind@1016d490(void) 8 1 +1016d498 Unwind@1016d498 undefined Unwind@1016d498(void) 8 1 +1016d4a0 Unwind@1016d4a0 undefined Unwind@1016d4a0(void) 8 1 +1016d4a8 Unwind@1016d4a8 undefined Unwind@1016d4a8(void) 8 1 +1016d4b0 Unwind@1016d4b0 undefined Unwind@1016d4b0(void) 8 1 +1016d4e0 Unwind@1016d4e0 undefined Unwind@1016d4e0(void) 8 1 +1016d4e8 Unwind@1016d4e8 undefined Unwind@1016d4e8(void) 11 1 +1016d4f3 Unwind@1016d4f3 undefined Unwind@1016d4f3(void) 8 1 +1016d4fb Unwind@1016d4fb undefined Unwind@1016d4fb(void) 11 1 +1016d506 Unwind@1016d506 undefined Unwind@1016d506(void) 8 1 +1016d50e Unwind@1016d50e undefined Unwind@1016d50e(void) 8 1 +1016d516 Unwind@1016d516 undefined Unwind@1016d516(void) 11 1 +1016d521 Unwind@1016d521 undefined Unwind@1016d521(void) 11 1 +1016d52c Unwind@1016d52c undefined Unwind@1016d52c(void) 11 1 +1016d560 Unwind@1016d560 undefined Unwind@1016d560(void) 25 1 +1016d579 Unwind@1016d579 undefined Unwind@1016d579(void) 8 1 +1016d581 Unwind@1016d581 undefined Unwind@1016d581(void) 8 1 +1016d5b0 Unwind@1016d5b0 undefined Unwind@1016d5b0(void) 8 1 +1016d5e0 Unwind@1016d5e0 undefined Unwind@1016d5e0(void) 8 1 +1016d610 Unwind@1016d610 undefined Unwind@1016d610(void) 8 1 +1016d618 Unwind@1016d618 undefined Unwind@1016d618(void) 8 1 +1016d650 Unwind@1016d650 undefined Unwind@1016d650(void) 17 1 +1016d661 Unwind@1016d661 undefined Unwind@1016d661(void) 8 1 +1016d669 Unwind@1016d669 undefined Unwind@1016d669(void) 8 1 +1016d690 Unwind@1016d690 undefined Unwind@1016d690(void) 11 1 +1016d6c0 Unwind@1016d6c0 undefined Unwind@1016d6c0(void) 11 1 +1016d6cb Unwind@1016d6cb undefined Unwind@1016d6cb(void) 8 1 +1016d6f0 Unwind@1016d6f0 undefined Unwind@1016d6f0(void) 9 0 +1016d720 Unwind@1016d720 undefined Unwind@1016d720(void) 11 1 +1016d72b Unwind@1016d72b undefined Unwind@1016d72b(void) 8 1 +1016d750 Unwind@1016d750 undefined Unwind@1016d750(void) 17 1 +1016d761 Unwind@1016d761 undefined Unwind@1016d761(void) 11 1 +1016d76c Unwind@1016d76c undefined Unwind@1016d76c(void) 8 1 +1016d790 Unwind@1016d790 undefined Unwind@1016d790(void) 11 1 +1016d79b Unwind@1016d79b undefined Unwind@1016d79b(void) 8 1 +1016d7a3 Unwind@1016d7a3 undefined Unwind@1016d7a3(void) 25 1 +1016d7e0 Unwind@1016d7e0 undefined Unwind@1016d7e0(void) 17 1 +1016d7f1 Unwind@1016d7f1 undefined Unwind@1016d7f1(void) 11 1 +1016d7fc Unwind@1016d7fc undefined Unwind@1016d7fc(void) 8 1 +1016d820 Unwind@1016d820 undefined Unwind@1016d820(void) 9 0 +1016d850 Unwind@1016d850 undefined Unwind@1016d850(void) 8 1 +1016d858 Unwind@1016d858 undefined Unwind@1016d858(void) 8 1 +1016d860 Unwind@1016d860 undefined Unwind@1016d860(void) 14 1 +1016d86e Unwind@1016d86e undefined Unwind@1016d86e(void) 14 1 +1016d87c Unwind@1016d87c undefined Unwind@1016d87c(void) 14 1 +1016d88a Unwind@1016d88a undefined Unwind@1016d88a(void) 14 1 +1016d898 Unwind@1016d898 undefined Unwind@1016d898(void) 14 1 +1016d8a6 Unwind@1016d8a6 undefined Unwind@1016d8a6(void) 14 1 +1016d8b4 Unwind@1016d8b4 undefined Unwind@1016d8b4(void) 11 1 +1016d8bf Unwind@1016d8bf undefined Unwind@1016d8bf(void) 11 1 +1016d8ca Unwind@1016d8ca undefined Unwind@1016d8ca(void) 11 1 +1016d900 Unwind@1016d900 undefined Unwind@1016d900(void) 11 1 +1016d90b Unwind@1016d90b undefined Unwind@1016d90b(void) 11 1 +1016d916 Unwind@1016d916 undefined Unwind@1016d916(void) 11 1 +1016d921 Unwind@1016d921 undefined Unwind@1016d921(void) 14 1 +1016d92f Unwind@1016d92f undefined Unwind@1016d92f(void) 14 1 +1016d93d Unwind@1016d93d undefined Unwind@1016d93d(void) 14 1 +1016d94b Unwind@1016d94b undefined Unwind@1016d94b(void) 8 1 +1016d953 Unwind@1016d953 undefined Unwind@1016d953(void) 8 1 +1016d95b Unwind@1016d95b undefined Unwind@1016d95b(void) 11 1 +1016d966 Unwind@1016d966 undefined Unwind@1016d966(void) 11 1 +1016d971 Unwind@1016d971 undefined Unwind@1016d971(void) 11 1 +1016d97c Unwind@1016d97c undefined Unwind@1016d97c(void) 11 1 +1016d987 Unwind@1016d987 undefined Unwind@1016d987(void) 8 1 +1016d98f Unwind@1016d98f undefined Unwind@1016d98f(void) 8 1 +1016d997 Unwind@1016d997 undefined Unwind@1016d997(void) 8 1 +1016d99f Unwind@1016d99f undefined Unwind@1016d99f(void) 8 1 +1016d9a7 Unwind@1016d9a7 undefined Unwind@1016d9a7(void) 8 1 +1016d9af Unwind@1016d9af undefined Unwind@1016d9af(void) 8 1 +1016d9b7 Unwind@1016d9b7 undefined Unwind@1016d9b7(void) 11 1 +1016d9c2 Unwind@1016d9c2 undefined Unwind@1016d9c2(void) 11 1 +1016d9cd Unwind@1016d9cd undefined Unwind@1016d9cd(void) 8 1 +1016d9d5 Unwind@1016d9d5 undefined Unwind@1016d9d5(void) 8 1 +1016d9dd Unwind@1016d9dd undefined Unwind@1016d9dd(void) 9 0 +1016d9e6 Unwind@1016d9e6 undefined Unwind@1016d9e6(void) 11 1 +1016d9f1 Unwind@1016d9f1 undefined Unwind@1016d9f1(void) 8 1 +1016d9f9 Unwind@1016d9f9 undefined Unwind@1016d9f9(void) 8 1 +1016da01 Unwind@1016da01 undefined Unwind@1016da01(void) 9 0 +1016da30 Unwind@1016da30 undefined Unwind@1016da30(void) 11 1 +1016da3b Unwind@1016da3b undefined Unwind@1016da3b(void) 11 1 +1016da46 Unwind@1016da46 undefined Unwind@1016da46(void) 11 1 +1016da51 Unwind@1016da51 undefined Unwind@1016da51(void) 11 1 +1016da5c Unwind@1016da5c undefined Unwind@1016da5c(void) 11 1 +1016da67 Unwind@1016da67 undefined Unwind@1016da67(void) 14 1 +1016da75 Unwind@1016da75 undefined Unwind@1016da75(void) 11 1 +1016da80 Unwind@1016da80 undefined Unwind@1016da80(void) 11 1 +1016dac0 Unwind@1016dac0 undefined Unwind@1016dac0(void) 8 1 +1016dac8 Unwind@1016dac8 undefined Unwind@1016dac8(void) 8 1 +1016dad0 Unwind@1016dad0 undefined Unwind@1016dad0(void) 8 1 +1016dad8 Unwind@1016dad8 undefined Unwind@1016dad8(void) 8 1 +1016db00 Unwind@1016db00 undefined Unwind@1016db00(void) 8 1 +1016db08 Unwind@1016db08 undefined Unwind@1016db08(void) 8 1 +1016db10 Unwind@1016db10 undefined Unwind@1016db10(void) 8 1 +1016db18 Unwind@1016db18 undefined Unwind@1016db18(void) 8 1 +1016db20 Unwind@1016db20 undefined Unwind@1016db20(void) 8 1 +1016db50 Unwind@1016db50 undefined Unwind@1016db50(void) 8 1 +1016db58 Unwind@1016db58 undefined Unwind@1016db58(void) 8 1 +1016db60 Unwind@1016db60 undefined Unwind@1016db60(void) 8 1 +1016db68 Unwind@1016db68 undefined Unwind@1016db68(void) 8 1 +1016db70 Unwind@1016db70 undefined Unwind@1016db70(void) 8 1 +1016dba0 Unwind@1016dba0 undefined Unwind@1016dba0(void) 8 1 +1016dba8 Unwind@1016dba8 undefined Unwind@1016dba8(void) 8 1 +1016dbb0 Unwind@1016dbb0 undefined Unwind@1016dbb0(void) 11 1 +1016dbbb Unwind@1016dbbb undefined Unwind@1016dbbb(void) 8 1 +1016dbc3 Unwind@1016dbc3 undefined Unwind@1016dbc3(void) 8 1 +1016dbcb Unwind@1016dbcb undefined Unwind@1016dbcb(void) 11 1 +1016dbd6 Unwind@1016dbd6 undefined Unwind@1016dbd6(void) 8 1 +1016dbde Unwind@1016dbde undefined Unwind@1016dbde(void) 8 1 +1016dbe6 Unwind@1016dbe6 undefined Unwind@1016dbe6(void) 8 1 +1016dbee Unwind@1016dbee undefined Unwind@1016dbee(void) 8 1 +1016dbf6 Unwind@1016dbf6 undefined Unwind@1016dbf6(void) 8 1 +1016dbfe Unwind@1016dbfe undefined Unwind@1016dbfe(void) 8 1 +1016dc06 Unwind@1016dc06 undefined Unwind@1016dc06(void) 8 1 +1016dc30 Unwind@1016dc30 undefined Unwind@1016dc30(void) 8 1 +1016dc38 Unwind@1016dc38 undefined Unwind@1016dc38(void) 8 1 +1016dc40 Unwind@1016dc40 undefined Unwind@1016dc40(void) 8 1 +1016dc48 Unwind@1016dc48 undefined Unwind@1016dc48(void) 8 1 +1016dc50 Unwind@1016dc50 undefined Unwind@1016dc50(void) 8 1 +1016dc80 Unwind@1016dc80 undefined Unwind@1016dc80(void) 8 1 +1016dc88 Unwind@1016dc88 undefined Unwind@1016dc88(void) 8 1 +1016dc90 Unwind@1016dc90 undefined Unwind@1016dc90(void) 8 1 +1016dc98 Unwind@1016dc98 undefined Unwind@1016dc98(void) 8 1 +1016dca0 Unwind@1016dca0 undefined Unwind@1016dca0(void) 8 1 +1016dcd0 Unwind@1016dcd0 undefined Unwind@1016dcd0(void) 8 1 +1016dcd8 Unwind@1016dcd8 undefined Unwind@1016dcd8(void) 8 1 +1016dce0 Unwind@1016dce0 undefined Unwind@1016dce0(void) 8 1 +1016dce8 Unwind@1016dce8 undefined Unwind@1016dce8(void) 8 1 +1016dcf0 Unwind@1016dcf0 undefined Unwind@1016dcf0(void) 8 1 +1016dd20 Unwind@1016dd20 undefined Unwind@1016dd20(void) 8 1 +1016dd28 Unwind@1016dd28 undefined Unwind@1016dd28(void) 8 1 +1016dd30 Unwind@1016dd30 undefined Unwind@1016dd30(void) 8 1 +1016dd38 Unwind@1016dd38 undefined Unwind@1016dd38(void) 11 1 +1016dd43 Unwind@1016dd43 undefined Unwind@1016dd43(void) 11 1 +1016dd4e Unwind@1016dd4e undefined Unwind@1016dd4e(void) 8 1 +1016dd56 Unwind@1016dd56 undefined Unwind@1016dd56(void) 8 1 +1016dd5e Unwind@1016dd5e undefined Unwind@1016dd5e(void) 8 1 +1016dd66 Unwind@1016dd66 undefined Unwind@1016dd66(void) 8 1 +1016dd6e Unwind@1016dd6e undefined Unwind@1016dd6e(void) 8 1 +1016dd76 Unwind@1016dd76 undefined Unwind@1016dd76(void) 11 1 +1016dd81 Unwind@1016dd81 undefined Unwind@1016dd81(void) 11 1 +1016ddb0 Unwind@1016ddb0 undefined Unwind@1016ddb0(void) 8 1 +1016ddb8 Unwind@1016ddb8 undefined Unwind@1016ddb8(void) 8 1 +1016ddc0 Unwind@1016ddc0 undefined Unwind@1016ddc0(void) 8 1 +1016ddc8 Unwind@1016ddc8 undefined Unwind@1016ddc8(void) 8 1 +1016ddd0 Unwind@1016ddd0 undefined Unwind@1016ddd0(void) 8 1 +1016de00 Unwind@1016de00 undefined Unwind@1016de00(void) 11 1 +1016de0b Unwind@1016de0b undefined Unwind@1016de0b(void) 11 1 +1016de16 Unwind@1016de16 undefined Unwind@1016de16(void) 11 1 +1016de21 Unwind@1016de21 undefined Unwind@1016de21(void) 11 1 +1016de2c Unwind@1016de2c undefined Unwind@1016de2c(void) 11 1 +1016de60 Unwind@1016de60 undefined Unwind@1016de60(void) 8 1 +1016de68 Unwind@1016de68 undefined Unwind@1016de68(void) 8 1 +1016de70 Unwind@1016de70 undefined Unwind@1016de70(void) 8 1 +1016de78 Unwind@1016de78 undefined Unwind@1016de78(void) 8 1 +1016de80 Unwind@1016de80 undefined Unwind@1016de80(void) 8 1 +1016deb0 Unwind@1016deb0 undefined Unwind@1016deb0(void) 11 1 +1016debb Unwind@1016debb undefined Unwind@1016debb(void) 11 1 +1016dec6 Unwind@1016dec6 undefined Unwind@1016dec6(void) 11 1 +1016ded1 Unwind@1016ded1 undefined Unwind@1016ded1(void) 11 1 +1016dedc Unwind@1016dedc undefined Unwind@1016dedc(void) 11 1 +1016df10 Unwind@1016df10 undefined Unwind@1016df10(void) 11 1 +1016df1b Unwind@1016df1b undefined Unwind@1016df1b(void) 11 1 +1016df26 Unwind@1016df26 undefined Unwind@1016df26(void) 11 1 +1016df31 Unwind@1016df31 undefined Unwind@1016df31(void) 11 1 +1016df3c Unwind@1016df3c undefined Unwind@1016df3c(void) 11 1 +1016df47 Unwind@1016df47 undefined Unwind@1016df47(void) 11 1 +1016df52 Unwind@1016df52 undefined Unwind@1016df52(void) 11 1 +1016df90 Unwind@1016df90 undefined Unwind@1016df90(void) 11 1 +1016df9b Unwind@1016df9b undefined Unwind@1016df9b(void) 11 1 +1016dfa6 Unwind@1016dfa6 undefined Unwind@1016dfa6(void) 11 1 +1016dfb1 Unwind@1016dfb1 undefined Unwind@1016dfb1(void) 11 1 +1016dfbc Unwind@1016dfbc undefined Unwind@1016dfbc(void) 11 1 +1016dfc7 Unwind@1016dfc7 undefined Unwind@1016dfc7(void) 11 1 +1016e000 Unwind@1016e000 undefined Unwind@1016e000(void) 11 1 +1016e00b Unwind@1016e00b undefined Unwind@1016e00b(void) 11 1 +1016e016 Unwind@1016e016 undefined Unwind@1016e016(void) 11 1 +1016e021 Unwind@1016e021 undefined Unwind@1016e021(void) 11 1 +1016e02c Unwind@1016e02c undefined Unwind@1016e02c(void) 11 1 +1016e037 Unwind@1016e037 undefined Unwind@1016e037(void) 11 1 +1016e042 Unwind@1016e042 undefined Unwind@1016e042(void) 11 1 +1016e080 Unwind@1016e080 undefined Unwind@1016e080(void) 11 1 +1016e08b Unwind@1016e08b undefined Unwind@1016e08b(void) 11 1 +1016e096 Unwind@1016e096 undefined Unwind@1016e096(void) 11 1 +1016e0a1 Unwind@1016e0a1 undefined Unwind@1016e0a1(void) 11 1 +1016e0ac Unwind@1016e0ac undefined Unwind@1016e0ac(void) 11 1 +1016e0b7 Unwind@1016e0b7 undefined Unwind@1016e0b7(void) 11 1 +1016e0c2 Unwind@1016e0c2 undefined Unwind@1016e0c2(void) 11 1 +1016e100 Unwind@1016e100 undefined Unwind@1016e100(void) 11 1 +1016e10b Unwind@1016e10b undefined Unwind@1016e10b(void) 11 1 +1016e116 Unwind@1016e116 undefined Unwind@1016e116(void) 11 1 +1016e121 Unwind@1016e121 undefined Unwind@1016e121(void) 11 1 +1016e12c Unwind@1016e12c undefined Unwind@1016e12c(void) 11 1 +1016e137 Unwind@1016e137 undefined Unwind@1016e137(void) 11 1 +1016e142 Unwind@1016e142 undefined Unwind@1016e142(void) 11 1 +1016e180 Unwind@1016e180 undefined Unwind@1016e180(void) 11 1 +1016e18b Unwind@1016e18b undefined Unwind@1016e18b(void) 11 1 +1016e196 Unwind@1016e196 undefined Unwind@1016e196(void) 11 1 +1016e1a1 Unwind@1016e1a1 undefined Unwind@1016e1a1(void) 11 1 +1016e1ac Unwind@1016e1ac undefined Unwind@1016e1ac(void) 11 1 +1016e1b7 Unwind@1016e1b7 undefined Unwind@1016e1b7(void) 11 1 +1016e1f0 Unwind@1016e1f0 undefined Unwind@1016e1f0(void) 8 1 +1016e1f8 Unwind@1016e1f8 undefined Unwind@1016e1f8(void) 8 1 +1016e200 Unwind@1016e200 undefined Unwind@1016e200(void) 8 1 +1016e208 Unwind@1016e208 undefined Unwind@1016e208(void) 8 1 +1016e210 Unwind@1016e210 undefined Unwind@1016e210(void) 8 1 +1016e240 Unwind@1016e240 undefined Unwind@1016e240(void) 8 1 +1016e248 Unwind@1016e248 undefined Unwind@1016e248(void) 8 1 +1016e250 Unwind@1016e250 undefined Unwind@1016e250(void) 11 1 +1016e25b Unwind@1016e25b undefined Unwind@1016e25b(void) 8 1 +1016e263 Unwind@1016e263 undefined Unwind@1016e263(void) 8 1 +1016e26b Unwind@1016e26b undefined Unwind@1016e26b(void) 8 1 +1016e273 Unwind@1016e273 undefined Unwind@1016e273(void) 8 1 +1016e27b Unwind@1016e27b undefined Unwind@1016e27b(void) 8 1 +1016e283 Unwind@1016e283 undefined Unwind@1016e283(void) 8 1 +1016e28b Unwind@1016e28b undefined Unwind@1016e28b(void) 8 1 +1016e293 Unwind@1016e293 undefined Unwind@1016e293(void) 8 1 +1016e2d0 Unwind@1016e2d0 undefined Unwind@1016e2d0(void) 8 1 +1016e2d8 Unwind@1016e2d8 undefined Unwind@1016e2d8(void) 11 1 +1016e2e3 Unwind@1016e2e3 undefined Unwind@1016e2e3(void) 8 1 +1016e2eb Unwind@1016e2eb undefined Unwind@1016e2eb(void) 8 1 +1016e2f3 Unwind@1016e2f3 undefined Unwind@1016e2f3(void) 8 1 +1016e2fb Unwind@1016e2fb undefined Unwind@1016e2fb(void) 8 1 +1016e320 Unwind@1016e320 undefined Unwind@1016e320(void) 8 1 +1016e328 Unwind@1016e328 undefined Unwind@1016e328(void) 8 1 +1016e330 Unwind@1016e330 undefined Unwind@1016e330(void) 8 1 +1016e338 Unwind@1016e338 undefined Unwind@1016e338(void) 8 1 +1016e340 Unwind@1016e340 undefined Unwind@1016e340(void) 8 1 +1016e370 Unwind@1016e370 undefined Unwind@1016e370(void) 8 1 +1016e378 Unwind@1016e378 undefined Unwind@1016e378(void) 8 1 +1016e380 Unwind@1016e380 undefined Unwind@1016e380(void) 8 1 +1016e388 Unwind@1016e388 undefined Unwind@1016e388(void) 8 1 +1016e390 Unwind@1016e390 undefined Unwind@1016e390(void) 8 1 +1016e3c0 Unwind@1016e3c0 undefined Unwind@1016e3c0(void) 8 1 +1016e3c8 Unwind@1016e3c8 undefined Unwind@1016e3c8(void) 8 1 +1016e3d0 Unwind@1016e3d0 undefined Unwind@1016e3d0(void) 8 1 +1016e3d8 Unwind@1016e3d8 undefined Unwind@1016e3d8(void) 8 1 +1016e3e0 Unwind@1016e3e0 undefined Unwind@1016e3e0(void) 8 1 +1016e3e8 Unwind@1016e3e8 undefined Unwind@1016e3e8(void) 8 1 +1016e420 Unwind@1016e420 undefined Unwind@1016e420(void) 8 1 +1016e428 Unwind@1016e428 undefined Unwind@1016e428(void) 8 1 +1016e430 Unwind@1016e430 undefined Unwind@1016e430(void) 8 1 +1016e438 Unwind@1016e438 undefined Unwind@1016e438(void) 8 1 +1016e440 Unwind@1016e440 undefined Unwind@1016e440(void) 8 1 +1016e470 Unwind@1016e470 undefined Unwind@1016e470(void) 8 1 +1016e478 Unwind@1016e478 undefined Unwind@1016e478(void) 8 1 +1016e480 Unwind@1016e480 undefined Unwind@1016e480(void) 8 1 +1016e488 Unwind@1016e488 undefined Unwind@1016e488(void) 8 1 +1016e490 Unwind@1016e490 undefined Unwind@1016e490(void) 8 1 +1016e4c0 Unwind@1016e4c0 undefined Unwind@1016e4c0(void) 8 1 +1016e4c8 Unwind@1016e4c8 undefined Unwind@1016e4c8(void) 8 1 +1016e4d0 Unwind@1016e4d0 undefined Unwind@1016e4d0(void) 8 1 +1016e4d8 Unwind@1016e4d8 undefined Unwind@1016e4d8(void) 8 1 +1016e4e0 Unwind@1016e4e0 undefined Unwind@1016e4e0(void) 8 1 +1016e510 Unwind@1016e510 undefined Unwind@1016e510(void) 8 1 +1016e518 Unwind@1016e518 undefined Unwind@1016e518(void) 8 1 +1016e520 Unwind@1016e520 undefined Unwind@1016e520(void) 8 1 +1016e528 Unwind@1016e528 undefined Unwind@1016e528(void) 8 1 +1016e530 Unwind@1016e530 undefined Unwind@1016e530(void) 8 1 +1016e560 Unwind@1016e560 undefined Unwind@1016e560(void) 8 1 +1016e568 Unwind@1016e568 undefined Unwind@1016e568(void) 8 1 +1016e570 Unwind@1016e570 undefined Unwind@1016e570(void) 8 1 +1016e578 Unwind@1016e578 undefined Unwind@1016e578(void) 8 1 +1016e580 Unwind@1016e580 undefined Unwind@1016e580(void) 8 1 +1016e5b0 Unwind@1016e5b0 undefined Unwind@1016e5b0(void) 8 1 +1016e5b8 Unwind@1016e5b8 undefined Unwind@1016e5b8(void) 8 1 +1016e5c0 Unwind@1016e5c0 undefined Unwind@1016e5c0(void) 8 1 +1016e5c8 Unwind@1016e5c8 undefined Unwind@1016e5c8(void) 11 1 +1016e5d3 Unwind@1016e5d3 undefined Unwind@1016e5d3(void) 11 1 +1016e610 Unwind@1016e610 undefined Unwind@1016e610(void) 8 1 +1016e618 Unwind@1016e618 undefined Unwind@1016e618(void) 8 1 +1016e620 Unwind@1016e620 undefined Unwind@1016e620(void) 8 1 +1016e628 Unwind@1016e628 undefined Unwind@1016e628(void) 8 1 +1016e630 Unwind@1016e630 undefined Unwind@1016e630(void) 8 1 +1016e638 Unwind@1016e638 undefined Unwind@1016e638(void) 11 1 +1016e643 Unwind@1016e643 undefined Unwind@1016e643(void) 8 1 +1016e670 Unwind@1016e670 undefined Unwind@1016e670(void) 8 1 +1016e678 Unwind@1016e678 undefined Unwind@1016e678(void) 8 1 +1016e680 Unwind@1016e680 undefined Unwind@1016e680(void) 8 1 +1016e688 Unwind@1016e688 undefined Unwind@1016e688(void) 8 1 +1016e690 Unwind@1016e690 undefined Unwind@1016e690(void) 8 1 +1016e6c0 Unwind@1016e6c0 undefined Unwind@1016e6c0(void) 8 1 +1016e6c8 Unwind@1016e6c8 undefined Unwind@1016e6c8(void) 8 1 +1016e6d0 Unwind@1016e6d0 undefined Unwind@1016e6d0(void) 8 1 +1016e6d8 Unwind@1016e6d8 undefined Unwind@1016e6d8(void) 8 1 +1016e6e0 Unwind@1016e6e0 undefined Unwind@1016e6e0(void) 8 1 +1016e710 Unwind@1016e710 undefined Unwind@1016e710(void) 8 1 +1016e718 Unwind@1016e718 undefined Unwind@1016e718(void) 8 1 +1016e720 Unwind@1016e720 undefined Unwind@1016e720(void) 8 1 +1016e728 Unwind@1016e728 undefined Unwind@1016e728(void) 8 1 +1016e730 Unwind@1016e730 undefined Unwind@1016e730(void) 8 1 +1016e760 Unwind@1016e760 undefined Unwind@1016e760(void) 8 1 +1016e768 Unwind@1016e768 undefined Unwind@1016e768(void) 8 1 +1016e770 Unwind@1016e770 undefined Unwind@1016e770(void) 8 1 +1016e778 Unwind@1016e778 undefined Unwind@1016e778(void) 8 1 +1016e7a0 Unwind@1016e7a0 undefined Unwind@1016e7a0(void) 8 1 +1016e7a8 Unwind@1016e7a8 undefined Unwind@1016e7a8(void) 8 1 +1016e7b0 Unwind@1016e7b0 undefined Unwind@1016e7b0(void) 8 1 +1016e7b8 Unwind@1016e7b8 undefined Unwind@1016e7b8(void) 8 1 +1016e7c0 Unwind@1016e7c0 undefined Unwind@1016e7c0(void) 8 1 +1016e7f0 Unwind@1016e7f0 undefined Unwind@1016e7f0(void) 8 1 +1016e7f8 Unwind@1016e7f8 undefined Unwind@1016e7f8(void) 8 1 +1016e800 Unwind@1016e800 undefined Unwind@1016e800(void) 8 1 +1016e808 Unwind@1016e808 undefined Unwind@1016e808(void) 8 1 +1016e810 Unwind@1016e810 undefined Unwind@1016e810(void) 8 1 +1016e840 Unwind@1016e840 undefined Unwind@1016e840(void) 8 1 +1016e848 Unwind@1016e848 undefined Unwind@1016e848(void) 8 1 +1016e850 Unwind@1016e850 undefined Unwind@1016e850(void) 8 1 +1016e858 Unwind@1016e858 undefined Unwind@1016e858(void) 8 1 +1016e860 Unwind@1016e860 undefined Unwind@1016e860(void) 8 1 +1016e890 Unwind@1016e890 undefined Unwind@1016e890(void) 8 1 +1016e898 Unwind@1016e898 undefined Unwind@1016e898(void) 8 1 +1016e8a0 Unwind@1016e8a0 undefined Unwind@1016e8a0(void) 8 1 +1016e8a8 Unwind@1016e8a8 undefined Unwind@1016e8a8(void) 8 1 +1016e8b0 Unwind@1016e8b0 undefined Unwind@1016e8b0(void) 8 1 +1016e8e0 Unwind@1016e8e0 undefined Unwind@1016e8e0(void) 11 1 +1016e8eb Unwind@1016e8eb undefined Unwind@1016e8eb(void) 11 1 +1016e8f6 Unwind@1016e8f6 undefined Unwind@1016e8f6(void) 11 1 +1016e901 Unwind@1016e901 undefined Unwind@1016e901(void) 11 1 +1016e90c Unwind@1016e90c undefined Unwind@1016e90c(void) 11 1 +1016e917 Unwind@1016e917 undefined Unwind@1016e917(void) 11 1 +1016e922 Unwind@1016e922 undefined Unwind@1016e922(void) 11 1 +1016e92d Unwind@1016e92d undefined Unwind@1016e92d(void) 11 1 +1016e938 Unwind@1016e938 undefined Unwind@1016e938(void) 11 1 +1016e943 Unwind@1016e943 undefined Unwind@1016e943(void) 8 1 +1016e94b Unwind@1016e94b undefined Unwind@1016e94b(void) 8 1 +1016e980 Unwind@1016e980 undefined Unwind@1016e980(void) 8 1 +1016e988 Unwind@1016e988 undefined Unwind@1016e988(void) 8 1 +1016e990 Unwind@1016e990 undefined Unwind@1016e990(void) 8 1 +1016e998 Unwind@1016e998 undefined Unwind@1016e998(void) 8 1 +1016e9a0 Unwind@1016e9a0 undefined Unwind@1016e9a0(void) 8 1 +1016e9d0 Unwind@1016e9d0 undefined Unwind@1016e9d0(void) 8 1 +1016e9d8 Unwind@1016e9d8 undefined Unwind@1016e9d8(void) 8 1 +1016e9e0 Unwind@1016e9e0 undefined Unwind@1016e9e0(void) 8 1 +1016e9e8 Unwind@1016e9e8 undefined Unwind@1016e9e8(void) 8 1 +1016e9f0 Unwind@1016e9f0 undefined Unwind@1016e9f0(void) 8 1 +1016ea20 Unwind@1016ea20 undefined Unwind@1016ea20(void) 8 1 +1016ea28 Unwind@1016ea28 undefined Unwind@1016ea28(void) 8 1 +1016ea30 Unwind@1016ea30 undefined Unwind@1016ea30(void) 8 1 +1016ea38 Unwind@1016ea38 undefined Unwind@1016ea38(void) 8 1 +1016ea40 Unwind@1016ea40 undefined Unwind@1016ea40(void) 8 1 +1016ea70 Unwind@1016ea70 undefined Unwind@1016ea70(void) 8 1 +1016ea78 Unwind@1016ea78 undefined Unwind@1016ea78(void) 8 1 +1016ea80 Unwind@1016ea80 undefined Unwind@1016ea80(void) 8 1 +1016ea88 Unwind@1016ea88 undefined Unwind@1016ea88(void) 8 1 +1016ea90 Unwind@1016ea90 undefined Unwind@1016ea90(void) 8 1 +1016eac0 Unwind@1016eac0 undefined Unwind@1016eac0(void) 8 1 +1016eac8 Unwind@1016eac8 undefined Unwind@1016eac8(void) 8 1 +1016ead0 Unwind@1016ead0 undefined Unwind@1016ead0(void) 8 1 +1016ead8 Unwind@1016ead8 undefined Unwind@1016ead8(void) 8 1 +1016eae0 Unwind@1016eae0 undefined Unwind@1016eae0(void) 8 1 +1016eb10 Unwind@1016eb10 undefined Unwind@1016eb10(void) 8 1 +1016eb18 Unwind@1016eb18 undefined Unwind@1016eb18(void) 8 1 +1016eb20 Unwind@1016eb20 undefined Unwind@1016eb20(void) 8 1 +1016eb28 Unwind@1016eb28 undefined Unwind@1016eb28(void) 8 1 +1016eb30 Unwind@1016eb30 undefined Unwind@1016eb30(void) 8 1 +1016eb60 Unwind@1016eb60 undefined Unwind@1016eb60(void) 8 1 +1016eb68 Unwind@1016eb68 undefined Unwind@1016eb68(void) 8 1 +1016eb70 Unwind@1016eb70 undefined Unwind@1016eb70(void) 8 1 +1016eb78 Unwind@1016eb78 undefined Unwind@1016eb78(void) 8 1 +1016eb80 Unwind@1016eb80 undefined Unwind@1016eb80(void) 8 1 +1016eb88 Unwind@1016eb88 undefined Unwind@1016eb88(void) 8 1 +1016eb90 Unwind@1016eb90 undefined Unwind@1016eb90(void) 8 1 +1016eb98 Unwind@1016eb98 undefined Unwind@1016eb98(void) 8 1 +1016eba0 Unwind@1016eba0 undefined Unwind@1016eba0(void) 8 1 +1016eba8 Unwind@1016eba8 undefined Unwind@1016eba8(void) 8 1 +1016ebd0 Unwind@1016ebd0 undefined Unwind@1016ebd0(void) 8 1 +1016ebd8 Unwind@1016ebd8 undefined Unwind@1016ebd8(void) 8 1 +1016ebe0 Unwind@1016ebe0 undefined Unwind@1016ebe0(void) 8 1 +1016ebe8 Unwind@1016ebe8 undefined Unwind@1016ebe8(void) 8 1 +1016ebf0 Unwind@1016ebf0 undefined Unwind@1016ebf0(void) 8 1 +1016ec20 Unwind@1016ec20 undefined Unwind@1016ec20(void) 8 1 +1016ec28 Unwind@1016ec28 undefined Unwind@1016ec28(void) 8 1 +1016ec30 Unwind@1016ec30 undefined Unwind@1016ec30(void) 11 1 +1016ec3b Unwind@1016ec3b undefined Unwind@1016ec3b(void) 11 1 +1016ec46 Unwind@1016ec46 undefined Unwind@1016ec46(void) 11 1 +1016ec51 Unwind@1016ec51 undefined Unwind@1016ec51(void) 11 1 +1016ec5c Unwind@1016ec5c undefined Unwind@1016ec5c(void) 8 1 +1016ec64 Unwind@1016ec64 undefined Unwind@1016ec64(void) 8 1 +1016ec6c Unwind@1016ec6c undefined Unwind@1016ec6c(void) 8 1 +1016ec74 Unwind@1016ec74 undefined Unwind@1016ec74(void) 8 1 +1016ec7c Unwind@1016ec7c undefined Unwind@1016ec7c(void) 8 1 +1016ec84 Unwind@1016ec84 undefined Unwind@1016ec84(void) 8 1 +1016ecb0 Unwind@1016ecb0 undefined Unwind@1016ecb0(void) 8 1 +1016ecb8 Unwind@1016ecb8 undefined Unwind@1016ecb8(void) 8 1 +1016ecc0 Unwind@1016ecc0 undefined Unwind@1016ecc0(void) 8 1 +1016ecc8 Unwind@1016ecc8 undefined Unwind@1016ecc8(void) 8 1 +1016ecd0 Unwind@1016ecd0 undefined Unwind@1016ecd0(void) 8 1 +1016ed00 Unwind@1016ed00 undefined Unwind@1016ed00(void) 11 1 +1016ed0b Unwind@1016ed0b undefined Unwind@1016ed0b(void) 11 1 +1016ed16 Unwind@1016ed16 undefined Unwind@1016ed16(void) 14 1 +1016ed24 Unwind@1016ed24 undefined Unwind@1016ed24(void) 14 1 +1016ed32 Unwind@1016ed32 undefined Unwind@1016ed32(void) 14 1 +1016ed40 Unwind@1016ed40 undefined Unwind@1016ed40(void) 14 1 +1016ed4e Unwind@1016ed4e undefined Unwind@1016ed4e(void) 11 1 +1016ed59 Unwind@1016ed59 undefined Unwind@1016ed59(void) 11 1 +1016ed64 Unwind@1016ed64 undefined Unwind@1016ed64(void) 11 1 +1016ed6f Unwind@1016ed6f undefined Unwind@1016ed6f(void) 11 1 +1016edb0 Unwind@1016edb0 undefined Unwind@1016edb0(void) 11 1 +1016edbb Unwind@1016edbb undefined Unwind@1016edbb(void) 11 1 +1016edc6 Unwind@1016edc6 undefined Unwind@1016edc6(void) 11 1 +1016edd1 Unwind@1016edd1 undefined Unwind@1016edd1(void) 11 1 +1016eddc Unwind@1016eddc undefined Unwind@1016eddc(void) 11 1 +1016ede7 Unwind@1016ede7 undefined Unwind@1016ede7(void) 11 1 +1016edf2 Unwind@1016edf2 undefined Unwind@1016edf2(void) 11 1 +1016ee30 Unwind@1016ee30 undefined Unwind@1016ee30(void) 11 1 +1016ee3b Unwind@1016ee3b undefined Unwind@1016ee3b(void) 11 1 +1016ee46 Unwind@1016ee46 undefined Unwind@1016ee46(void) 11 1 +1016ee51 Unwind@1016ee51 undefined Unwind@1016ee51(void) 11 1 +1016ee5c Unwind@1016ee5c undefined Unwind@1016ee5c(void) 11 1 +1016ee67 Unwind@1016ee67 undefined Unwind@1016ee67(void) 11 1 +1016eea0 Unwind@1016eea0 undefined Unwind@1016eea0(void) 11 1 +1016eeab Unwind@1016eeab undefined Unwind@1016eeab(void) 11 1 +1016eeb6 Unwind@1016eeb6 undefined Unwind@1016eeb6(void) 11 1 +1016eec1 Unwind@1016eec1 undefined Unwind@1016eec1(void) 11 1 +1016eecc Unwind@1016eecc undefined Unwind@1016eecc(void) 11 1 +1016eed7 Unwind@1016eed7 undefined Unwind@1016eed7(void) 11 1 +1016ef10 Unwind@1016ef10 undefined Unwind@1016ef10(void) 8 1 +1016ef18 Unwind@1016ef18 undefined Unwind@1016ef18(void) 8 1 +1016ef20 Unwind@1016ef20 undefined Unwind@1016ef20(void) 8 1 +1016ef28 Unwind@1016ef28 undefined Unwind@1016ef28(void) 8 1 +1016ef30 Unwind@1016ef30 undefined Unwind@1016ef30(void) 8 1 +1016ef60 Unwind@1016ef60 undefined Unwind@1016ef60(void) 8 1 +1016ef68 Unwind@1016ef68 undefined Unwind@1016ef68(void) 8 1 +1016ef70 Unwind@1016ef70 undefined Unwind@1016ef70(void) 8 1 +1016ef78 Unwind@1016ef78 undefined Unwind@1016ef78(void) 8 1 +1016ef80 Unwind@1016ef80 undefined Unwind@1016ef80(void) 8 1 +1016efb0 Unwind@1016efb0 undefined Unwind@1016efb0(void) 8 1 +1016efb8 Unwind@1016efb8 undefined Unwind@1016efb8(void) 8 1 +1016efc0 Unwind@1016efc0 undefined Unwind@1016efc0(void) 8 1 +1016efc8 Unwind@1016efc8 undefined Unwind@1016efc8(void) 8 1 +1016efd0 Unwind@1016efd0 undefined Unwind@1016efd0(void) 8 1 +1016f000 Unwind@1016f000 undefined Unwind@1016f000(void) 8 1 +1016f008 Unwind@1016f008 undefined Unwind@1016f008(void) 8 1 +1016f010 Unwind@1016f010 undefined Unwind@1016f010(void) 8 1 +1016f018 Unwind@1016f018 undefined Unwind@1016f018(void) 8 1 +1016f020 Unwind@1016f020 undefined Unwind@1016f020(void) 8 1 +1016f050 Unwind@1016f050 undefined Unwind@1016f050(void) 8 1 +1016f058 Unwind@1016f058 undefined Unwind@1016f058(void) 8 1 +1016f060 Unwind@1016f060 undefined Unwind@1016f060(void) 8 1 +1016f068 Unwind@1016f068 undefined Unwind@1016f068(void) 8 1 +1016f070 Unwind@1016f070 undefined Unwind@1016f070(void) 8 1 +1016f0a0 Unwind@1016f0a0 undefined Unwind@1016f0a0(void) 8 1 +1016f0a8 Unwind@1016f0a8 undefined Unwind@1016f0a8(void) 8 1 +1016f0b0 Unwind@1016f0b0 undefined Unwind@1016f0b0(void) 8 1 +1016f0b8 Unwind@1016f0b8 undefined Unwind@1016f0b8(void) 8 1 +1016f0c0 Unwind@1016f0c0 undefined Unwind@1016f0c0(void) 8 1 +1016f0f0 Unwind@1016f0f0 undefined Unwind@1016f0f0(void) 8 1 +1016f0f8 Unwind@1016f0f8 undefined Unwind@1016f0f8(void) 8 1 +1016f100 Unwind@1016f100 undefined Unwind@1016f100(void) 8 1 +1016f108 Unwind@1016f108 undefined Unwind@1016f108(void) 8 1 +1016f110 Unwind@1016f110 undefined Unwind@1016f110(void) 8 1 +1016f118 Unwind@1016f118 undefined Unwind@1016f118(void) 8 1 +1016f150 Unwind@1016f150 undefined Unwind@1016f150(void) 8 1 +1016f158 Unwind@1016f158 undefined Unwind@1016f158(void) 8 1 +1016f160 Unwind@1016f160 undefined Unwind@1016f160(void) 11 1 +1016f16b Unwind@1016f16b undefined Unwind@1016f16b(void) 8 1 +1016f173 Unwind@1016f173 undefined Unwind@1016f173(void) 8 1 +1016f17b Unwind@1016f17b undefined Unwind@1016f17b(void) 8 1 +1016f183 Unwind@1016f183 undefined Unwind@1016f183(void) 8 1 +1016f18b Unwind@1016f18b undefined Unwind@1016f18b(void) 8 1 +1016f193 Unwind@1016f193 undefined Unwind@1016f193(void) 8 1 +1016f19b Unwind@1016f19b undefined Unwind@1016f19b(void) 8 1 +1016f1a3 Unwind@1016f1a3 undefined Unwind@1016f1a3(void) 8 1 +1016f1e0 Unwind@1016f1e0 undefined Unwind@1016f1e0(void) 11 1 +1016f1eb Unwind@1016f1eb undefined Unwind@1016f1eb(void) 11 1 +1016f1f6 Unwind@1016f1f6 undefined Unwind@1016f1f6(void) 11 1 +1016f201 Unwind@1016f201 undefined Unwind@1016f201(void) 11 1 +1016f20c Unwind@1016f20c undefined Unwind@1016f20c(void) 11 1 +1016f217 Unwind@1016f217 undefined Unwind@1016f217(void) 11 1 +1016f222 Unwind@1016f222 undefined Unwind@1016f222(void) 11 1 +1016f22d Unwind@1016f22d undefined Unwind@1016f22d(void) 11 1 +1016f238 Unwind@1016f238 undefined Unwind@1016f238(void) 11 1 +1016f243 Unwind@1016f243 undefined Unwind@1016f243(void) 8 1 +1016f24b Unwind@1016f24b undefined Unwind@1016f24b(void) 8 1 +1016f280 Unwind@1016f280 undefined Unwind@1016f280(void) 8 1 +1016f2b0 Unwind@1016f2b0 undefined Unwind@1016f2b0(void) 8 1 +1016f2e0 Unwind@1016f2e0 undefined Unwind@1016f2e0(void) 8 1 +1016f310 Unwind@1016f310 undefined Unwind@1016f310(void) 8 1 +1016f340 Unwind@1016f340 undefined Unwind@1016f340(void) 8 1 +1016f370 Unwind@1016f370 undefined Unwind@1016f370(void) 8 1 +1016f3a0 Unwind@1016f3a0 undefined Unwind@1016f3a0(void) 8 1 +1016f3d0 Unwind@1016f3d0 undefined Unwind@1016f3d0(void) 8 1 +1016f400 Unwind@1016f400 undefined Unwind@1016f400(void) 11 1 +1016f40b Unwind@1016f40b undefined Unwind@1016f40b(void) 11 1 +1016f416 Unwind@1016f416 undefined Unwind@1016f416(void) 11 1 +1016f421 Unwind@1016f421 undefined Unwind@1016f421(void) 8 1 +1016f429 Unwind@1016f429 undefined Unwind@1016f429(void) 8 1 +1016f431 Unwind@1016f431 undefined Unwind@1016f431(void) 11 1 +1016f43c Unwind@1016f43c undefined Unwind@1016f43c(void) 11 1 +1016f447 Unwind@1016f447 undefined Unwind@1016f447(void) 11 1 +1016f452 Unwind@1016f452 undefined Unwind@1016f452(void) 11 1 +1016f45d Unwind@1016f45d undefined Unwind@1016f45d(void) 11 1 +1016f468 Unwind@1016f468 undefined Unwind@1016f468(void) 11 1 +1016f473 Unwind@1016f473 undefined Unwind@1016f473(void) 11 1 +1016f47e Unwind@1016f47e undefined Unwind@1016f47e(void) 11 1 +1016f489 Unwind@1016f489 undefined Unwind@1016f489(void) 14 1 +1016f497 Unwind@1016f497 undefined Unwind@1016f497(void) 11 1 +1016f4a2 Unwind@1016f4a2 undefined Unwind@1016f4a2(void) 11 1 +1016f4ad Unwind@1016f4ad undefined Unwind@1016f4ad(void) 11 1 +1016f4b8 Unwind@1016f4b8 undefined Unwind@1016f4b8(void) 11 1 +1016f4c3 Unwind@1016f4c3 undefined Unwind@1016f4c3(void) 11 1 +1016f4ce Unwind@1016f4ce undefined Unwind@1016f4ce(void) 11 1 +1016f4d9 Unwind@1016f4d9 undefined Unwind@1016f4d9(void) 11 1 +1016f4e4 Unwind@1016f4e4 undefined Unwind@1016f4e4(void) 11 1 +1016f520 Unwind@1016f520 undefined Unwind@1016f520(void) 8 1 +1016f528 Unwind@1016f528 undefined Unwind@1016f528(void) 8 1 +1016f530 Unwind@1016f530 undefined Unwind@1016f530(void) 8 1 +1016f538 Unwind@1016f538 undefined Unwind@1016f538(void) 8 1 +1016f540 Unwind@1016f540 undefined Unwind@1016f540(void) 8 1 +1016f570 Unwind@1016f570 undefined Unwind@1016f570(void) 8 1 +1016f578 Unwind@1016f578 undefined Unwind@1016f578(void) 8 1 +1016f580 Unwind@1016f580 undefined Unwind@1016f580(void) 8 1 +1016f588 Unwind@1016f588 undefined Unwind@1016f588(void) 8 1 +1016f590 Unwind@1016f590 undefined Unwind@1016f590(void) 8 1 +1016f5c0 Unwind@1016f5c0 undefined Unwind@1016f5c0(void) 8 1 +1016f5c8 Unwind@1016f5c8 undefined Unwind@1016f5c8(void) 8 1 +1016f5d0 Unwind@1016f5d0 undefined Unwind@1016f5d0(void) 8 1 +1016f5d8 Unwind@1016f5d8 undefined Unwind@1016f5d8(void) 8 1 +1016f5e0 Unwind@1016f5e0 undefined Unwind@1016f5e0(void) 8 1 +1016f610 Unwind@1016f610 undefined Unwind@1016f610(void) 8 1 +1016f618 Unwind@1016f618 undefined Unwind@1016f618(void) 8 1 +1016f620 Unwind@1016f620 undefined Unwind@1016f620(void) 8 1 +1016f628 Unwind@1016f628 undefined Unwind@1016f628(void) 8 1 +1016f630 Unwind@1016f630 undefined Unwind@1016f630(void) 8 1 +1016f660 Unwind@1016f660 undefined Unwind@1016f660(void) 8 1 +1016f668 Unwind@1016f668 undefined Unwind@1016f668(void) 8 1 +1016f670 Unwind@1016f670 undefined Unwind@1016f670(void) 8 1 +1016f678 Unwind@1016f678 undefined Unwind@1016f678(void) 8 1 +1016f680 Unwind@1016f680 undefined Unwind@1016f680(void) 8 1 +1016f6b0 Unwind@1016f6b0 undefined Unwind@1016f6b0(void) 8 1 +1016f6b8 Unwind@1016f6b8 undefined Unwind@1016f6b8(void) 8 1 +1016f6c0 Unwind@1016f6c0 undefined Unwind@1016f6c0(void) 8 1 +1016f6c8 Unwind@1016f6c8 undefined Unwind@1016f6c8(void) 8 1 +1016f6d0 Unwind@1016f6d0 undefined Unwind@1016f6d0(void) 8 1 +1016f700 Unwind@1016f700 undefined Unwind@1016f700(void) 8 1 +1016f730 Unwind@1016f730 undefined Unwind@1016f730(void) 14 0 +1016f73e Unwind@1016f73e undefined Unwind@1016f73e(void) 14 0 +1016f770 Unwind@1016f770 undefined Unwind@1016f770(void) 8 1 +1016f7a0 Unwind@1016f7a0 undefined Unwind@1016f7a0(void) 9 0 +1016f7d0 Unwind@1016f7d0 undefined Unwind@1016f7d0(void) 9 0 +1016f800 Unwind@1016f800 undefined Unwind@1016f800(void) 9 0 +1016f830 Unwind@1016f830 undefined Unwind@1016f830(void) 9 0 +1016f860 Unwind@1016f860 undefined Unwind@1016f860(void) 9 0 +1016f890 Unwind@1016f890 undefined Unwind@1016f890(void) 17 1 +1016f8c0 Unwind@1016f8c0 undefined Unwind@1016f8c0(void) 17 1 +1016f8f0 Unwind@1016f8f0 undefined Unwind@1016f8f0(void) 17 1 +1016f920 Unwind@1016f920 undefined Unwind@1016f920(void) 17 1 +1016f950 Unwind@1016f950 undefined Unwind@1016f950(void) 17 1 +1016f980 Unwind@1016f980 undefined Unwind@1016f980(void) 8 1 +1016f9b0 Unwind@1016f9b0 undefined Unwind@1016f9b0(void) 8 1 +1016f9e0 Unwind@1016f9e0 undefined Unwind@1016f9e0(void) 8 1 +1016fa10 Unwind@1016fa10 undefined Unwind@1016fa10(void) 8 1 +1016fa40 Unwind@1016fa40 undefined Unwind@1016fa40(void) 8 1 +1016fa70 Unwind@1016fa70 undefined Unwind@1016fa70(void) 8 1 +1016faa0 Unwind@1016faa0 undefined Unwind@1016faa0(void) 8 1 +1016fad0 Unwind@1016fad0 undefined Unwind@1016fad0(void) 8 1 +1016fb00 Unwind@1016fb00 undefined Unwind@1016fb00(void) 17 1 +1016fb30 Unwind@1016fb30 undefined Unwind@1016fb30(void) 17 1 +1016fb60 Unwind@1016fb60 undefined Unwind@1016fb60(void) 17 1 +1016fb90 Unwind@1016fb90 undefined Unwind@1016fb90(void) 17 1 +1016fbc0 Unwind@1016fbc0 undefined Unwind@1016fbc0(void) 9 0 +1016fbf0 Unwind@1016fbf0 undefined Unwind@1016fbf0(void) 9 0 +1016fc20 Unwind@1016fc20 undefined Unwind@1016fc20(void) 9 0 +1016fc50 Unwind@1016fc50 undefined Unwind@1016fc50(void) 17 1 +1016fc80 Unwind@1016fc80 undefined Unwind@1016fc80(void) 8 1 +1016fc88 Unwind@1016fc88 undefined Unwind@1016fc88(void) 8 1 +1016fcb0 Unwind@1016fcb0 undefined Unwind@1016fcb0(void) 8 1 +1016fcb8 Unwind@1016fcb8 undefined Unwind@1016fcb8(void) 8 1 +1016fce0 Unwind@1016fce0 undefined Unwind@1016fce0(void) 8 1 +1016fce8 Unwind@1016fce8 undefined Unwind@1016fce8(void) 8 1 +1016fd10 Unwind@1016fd10 undefined Unwind@1016fd10(void) 8 1 +1016fd18 Unwind@1016fd18 undefined Unwind@1016fd18(void) 8 1 +1016fd40 Unwind@1016fd40 undefined Unwind@1016fd40(void) 9 0 +1016fd70 Unwind@1016fd70 undefined Unwind@1016fd70(void) 9 0 +1016fda0 Unwind@1016fda0 undefined Unwind@1016fda0(void) 17 1 +1016fdd0 Unwind@1016fdd0 undefined Unwind@1016fdd0(void) 17 1 +1016fe00 Unwind@1016fe00 undefined Unwind@1016fe00(void) 9 0 +1016fe30 Unwind@1016fe30 undefined Unwind@1016fe30(void) 9 0 +1016fe60 Unwind@1016fe60 undefined Unwind@1016fe60(void) 9 0 +1016fe90 Unwind@1016fe90 undefined Unwind@1016fe90(void) 9 0 +1016fec0 Unwind@1016fec0 undefined Unwind@1016fec0(void) 9 0 +1016fef0 Unwind@1016fef0 undefined Unwind@1016fef0(void) 17 1 +1016ff20 Unwind@1016ff20 undefined Unwind@1016ff20(void) 17 1 +1016ff50 Unwind@1016ff50 undefined Unwind@1016ff50(void) 17 1 +1016ffa0 Unwind@1016ffa0 undefined Unwind@1016ffa0(void) 8 1 +1016ffd0 Unwind@1016ffd0 undefined Unwind@1016ffd0(void) 8 1 +10170000 Unwind@10170000 undefined Unwind@10170000(void) 14 0 +10170030 Unwind@10170030 undefined Unwind@10170030(void) 8 1 +10170038 Unwind@10170038 undefined Unwind@10170038(void) 9 0 +10170060 Unwind@10170060 undefined Unwind@10170060(void) 8 1 +10170068 Unwind@10170068 undefined Unwind@10170068(void) 9 0 +10170090 Unwind@10170090 undefined Unwind@10170090(void) 9 0 +101700e0 Unwind@101700e0 undefined Unwind@101700e0(void) 17 1 +10170110 Unwind@10170110 undefined Unwind@10170110(void) 17 1 +10170140 Unwind@10170140 undefined Unwind@10170140(void) 17 1 +10170190 Unwind@10170190 undefined Unwind@10170190(void) 8 1 +10170198 Unwind@10170198 undefined Unwind@10170198(void) 8 1 +101701a0 Unwind@101701a0 undefined Unwind@101701a0(void) 8 1 +101701d0 Unwind@101701d0 undefined Unwind@101701d0(void) 8 1 +101701d8 Unwind@101701d8 undefined Unwind@101701d8(void) 8 1 +10170210 Unwind@10170210 undefined Unwind@10170210(void) 8 1 +10170218 Unwind@10170218 undefined Unwind@10170218(void) 8 1 +10170250 Unwind@10170250 undefined Unwind@10170250(void) 9 0 +10170280 Unwind@10170280 undefined Unwind@10170280(void) 9 0 +101702b0 Unwind@101702b0 undefined Unwind@101702b0(void) 9 0 +10170310 Unwind@10170310 undefined Unwind@10170310(void) 8 1 +10170340 Unwind@10170340 undefined Unwind@10170340(void) 8 1 +10170370 Unwind@10170370 undefined Unwind@10170370(void) 17 1 +10170381 Unwind@10170381 undefined Unwind@10170381(void) 17 1 +101703b0 Unwind@101703b0 undefined Unwind@101703b0(void) 8 1 +101703b8 Unwind@101703b8 undefined Unwind@101703b8(void) 9 0 +101703e0 Unwind@101703e0 undefined Unwind@101703e0(void) 8 1 +101703e8 Unwind@101703e8 undefined Unwind@101703e8(void) 8 1 +101703f0 Unwind@101703f0 undefined Unwind@101703f0(void) 8 1 +101703f8 Unwind@101703f8 undefined Unwind@101703f8(void) 9 0 +10170420 Unwind@10170420 undefined Unwind@10170420(void) 8 1 +10170490 Unwind@10170490 undefined Unwind@10170490(void) 8 1 +10170498 Unwind@10170498 undefined Unwind@10170498(void) 8 1 +101704a0 Unwind@101704a0 undefined Unwind@101704a0(void) 8 1 +101704d0 Unwind@101704d0 undefined Unwind@101704d0(void) 9 0 +101704d9 Unwind@101704d9 undefined Unwind@101704d9(void) 17 1 +101704ea Unwind@101704ea undefined Unwind@101704ea(void) 8 1 +101704f2 Unwind@101704f2 undefined Unwind@101704f2(void) 8 1 +101704fa Unwind@101704fa undefined Unwind@101704fa(void) 8 1 +10170502 Unwind@10170502 undefined Unwind@10170502(void) 8 1 +1017050a Unwind@1017050a undefined Unwind@1017050a(void) 8 1 +10170512 Unwind@10170512 undefined Unwind@10170512(void) 8 0 +1017051a Unwind@1017051a undefined Unwind@1017051a(void) 8 1 +10170522 Unwind@10170522 undefined Unwind@10170522(void) 8 1 +1017052a Unwind@1017052a undefined Unwind@1017052a(void) 9 0 +10170533 Unwind@10170533 undefined Unwind@10170533(void) 9 0 +10170570 Unwind@10170570 undefined Unwind@10170570(void) 8 1 +101705a0 Unwind@101705a0 undefined Unwind@101705a0(void) 8 1 +101705d0 Unwind@101705d0 undefined Unwind@101705d0(void) 8 1 +10170600 Unwind@10170600 undefined Unwind@10170600(void) 8 1 +10170608 Unwind@10170608 undefined Unwind@10170608(void) 11 1 +10170630 Unwind@10170630 undefined Unwind@10170630(void) 11 1 +1017063b Unwind@1017063b undefined Unwind@1017063b(void) 8 1 +10170643 Unwind@10170643 undefined Unwind@10170643(void) 8 1 +10170670 Unwind@10170670 undefined Unwind@10170670(void) 17 1 +10170681 Unwind@10170681 undefined Unwind@10170681(void) 17 1 +101706b0 Unwind@101706b0 undefined Unwind@101706b0(void) 8 1 +101706b8 Unwind@101706b8 undefined Unwind@101706b8(void) 8 1 +101706c0 Unwind@101706c0 undefined Unwind@101706c0(void) 9 0 +101706f0 Unwind@101706f0 undefined Unwind@101706f0(void) 8 1 +10170720 Unwind@10170720 undefined Unwind@10170720(void) 8 1 +10170728 Unwind@10170728 undefined Unwind@10170728(void) 11 1 +10170750 Unwind@10170750 undefined Unwind@10170750(void) 8 1 +10170758 Unwind@10170758 undefined Unwind@10170758(void) 8 1 +10170760 Unwind@10170760 undefined Unwind@10170760(void) 11 1 +10170790 Unwind@10170790 undefined Unwind@10170790(void) 17 1 +101707c0 Unwind@101707c0 undefined Unwind@101707c0(void) 17 1 +101707f0 Unwind@101707f0 undefined Unwind@101707f0(void) 8 1 +101707f8 Unwind@101707f8 undefined Unwind@101707f8(void) 11 1 +10170820 Unwind@10170820 undefined Unwind@10170820(void) 17 1 +10170850 Unwind@10170850 undefined Unwind@10170850(void) 8 1 +10170858 Unwind@10170858 undefined Unwind@10170858(void) 11 1 +10170863 Unwind@10170863 undefined Unwind@10170863(void) 11 1 +10170890 Unwind@10170890 undefined Unwind@10170890(void) 8 1 +10170898 Unwind@10170898 undefined Unwind@10170898(void) 11 1 +101708c0 Unwind@101708c0 undefined Unwind@101708c0(void) 8 1 +101708c8 Unwind@101708c8 undefined Unwind@101708c8(void) 8 1 +101708d0 Unwind@101708d0 undefined Unwind@101708d0(void) 11 1 +10170900 Unwind@10170900 undefined Unwind@10170900(void) 11 1 +10170930 Unwind@10170930 undefined Unwind@10170930(void) 8 1 +10170938 Unwind@10170938 undefined Unwind@10170938(void) 8 1 +10170940 Unwind@10170940 undefined Unwind@10170940(void) 8 1 +10170970 Unwind@10170970 undefined Unwind@10170970(void) 14 0 +1017097e Unwind@1017097e undefined Unwind@1017097e(void) 14 0 +1017098c Unwind@1017098c undefined Unwind@1017098c(void) 14 0 +1017099a Unwind@1017099a undefined Unwind@1017099a(void) 14 0 +101709a8 Unwind@101709a8 undefined Unwind@101709a8(void) 14 0 +101709b6 Unwind@101709b6 undefined Unwind@101709b6(void) 14 0 +101709c4 Unwind@101709c4 undefined Unwind@101709c4(void) 14 0 +101709d2 Unwind@101709d2 undefined Unwind@101709d2(void) 14 0 +101709e0 Unwind@101709e0 undefined Unwind@101709e0(void) 14 0 +10170a20 Unwind@10170a20 undefined Unwind@10170a20(void) 11 1 +10170a2b Unwind@10170a2b undefined Unwind@10170a2b(void) 8 1 +10170a33 Unwind@10170a33 undefined Unwind@10170a33(void) 11 1 +10170a3e Unwind@10170a3e undefined Unwind@10170a3e(void) 8 1 +10170a70 Unwind@10170a70 undefined Unwind@10170a70(void) 8 1 +10170a78 Unwind@10170a78 undefined Unwind@10170a78(void) 11 1 +10170a83 Unwind@10170a83 undefined Unwind@10170a83(void) 8 1 +10170a8b Unwind@10170a8b undefined Unwind@10170a8b(void) 8 1 +10170ab0 Unwind@10170ab0 undefined Unwind@10170ab0(void) 11 1 +10170abb Unwind@10170abb undefined Unwind@10170abb(void) 11 1 +10170ac6 Unwind@10170ac6 undefined Unwind@10170ac6(void) 11 1 +10170ad1 Unwind@10170ad1 undefined Unwind@10170ad1(void) 11 1 +10170adc Unwind@10170adc undefined Unwind@10170adc(void) 11 1 +10170ae7 Unwind@10170ae7 undefined Unwind@10170ae7(void) 11 1 +10170af2 Unwind@10170af2 undefined Unwind@10170af2(void) 11 1 +10170afd Unwind@10170afd undefined Unwind@10170afd(void) 11 1 +10170b08 Unwind@10170b08 undefined Unwind@10170b08(void) 11 1 +10170b13 Unwind@10170b13 undefined Unwind@10170b13(void) 11 1 +10170b1e Unwind@10170b1e undefined Unwind@10170b1e(void) 11 1 +10170b29 Unwind@10170b29 undefined Unwind@10170b29(void) 11 1 +10170b34 Unwind@10170b34 undefined Unwind@10170b34(void) 11 1 +10170b3f Unwind@10170b3f undefined Unwind@10170b3f(void) 11 1 +10170b4a Unwind@10170b4a undefined Unwind@10170b4a(void) 11 1 +10170b55 Unwind@10170b55 undefined Unwind@10170b55(void) 11 1 +10170b60 Unwind@10170b60 undefined Unwind@10170b60(void) 11 1 +10170b6b Unwind@10170b6b undefined Unwind@10170b6b(void) 11 1 +10170b76 Unwind@10170b76 undefined Unwind@10170b76(void) 11 1 +10170bb0 Unwind@10170bb0 undefined Unwind@10170bb0(void) 17 1 +10170be0 Unwind@10170be0 undefined Unwind@10170be0(void) 17 1 +10170c10 Unwind@10170c10 undefined Unwind@10170c10(void) 8 1 +10170c18 Unwind@10170c18 undefined Unwind@10170c18(void) 11 1 +10170c23 Unwind@10170c23 undefined Unwind@10170c23(void) 8 1 +10170c50 Unwind@10170c50 undefined Unwind@10170c50(void) 11 1 +10170c80 Unwind@10170c80 undefined Unwind@10170c80(void) 8 1 +10170c88 Unwind@10170c88 undefined Unwind@10170c88(void) 11 1 +10170c93 Unwind@10170c93 undefined Unwind@10170c93(void) 11 1 +10170cc0 Unwind@10170cc0 undefined Unwind@10170cc0(void) 11 1 +10170cf0 Unwind@10170cf0 undefined Unwind@10170cf0(void) 17 1 +10170d20 Unwind@10170d20 undefined Unwind@10170d20(void) 8 1 +10170d28 Unwind@10170d28 undefined Unwind@10170d28(void) 11 1 +10170d33 Unwind@10170d33 undefined Unwind@10170d33(void) 11 1 +10170d3e Unwind@10170d3e undefined Unwind@10170d3e(void) 8 1 +10170d70 Unwind@10170d70 undefined Unwind@10170d70(void) 8 1 +10170d78 Unwind@10170d78 undefined Unwind@10170d78(void) 11 1 +10170d83 Unwind@10170d83 undefined Unwind@10170d83(void) 8 1 +10170db0 Unwind@10170db0 undefined Unwind@10170db0(void) 8 1 +10170db8 Unwind@10170db8 undefined Unwind@10170db8(void) 11 1 +10170dc3 Unwind@10170dc3 undefined Unwind@10170dc3(void) 8 1 +10170df0 Unwind@10170df0 undefined Unwind@10170df0(void) 11 1 +10170e20 Unwind@10170e20 undefined Unwind@10170e20(void) 8 1 +10170e50 Unwind@10170e50 undefined Unwind@10170e50(void) 8 1 +10170e58 Unwind@10170e58 undefined Unwind@10170e58(void) 25 1 +10170e90 Unwind@10170e90 undefined Unwind@10170e90(void) 8 1 +10170ec0 Unwind@10170ec0 undefined Unwind@10170ec0(void) 8 1 +10170ec8 Unwind@10170ec8 undefined Unwind@10170ec8(void) 8 1 +10170ed0 Unwind@10170ed0 undefined Unwind@10170ed0(void) 8 1 +10170ed8 Unwind@10170ed8 undefined Unwind@10170ed8(void) 8 1 +10170ee0 Unwind@10170ee0 undefined Unwind@10170ee0(void) 8 1 +10170f30 Unwind@10170f30 undefined Unwind@10170f30(void) 8 1 +10170f38 Unwind@10170f38 undefined Unwind@10170f38(void) 11 1 +10170f43 Unwind@10170f43 undefined Unwind@10170f43(void) 11 1 +10170f4e Unwind@10170f4e undefined Unwind@10170f4e(void) 8 1 +10170f80 Unwind@10170f80 undefined Unwind@10170f80(void) 8 1 +10170f88 Unwind@10170f88 undefined Unwind@10170f88(void) 11 1 +10170f93 Unwind@10170f93 undefined Unwind@10170f93(void) 8 1 +10170f9b Unwind@10170f9b undefined Unwind@10170f9b(void) 25 1 +10170fd0 Unwind@10170fd0 undefined Unwind@10170fd0(void) 17 1 +10171000 Unwind@10171000 undefined Unwind@10171000(void) 11 1 +1017100b Unwind@1017100b undefined Unwind@1017100b(void) 8 1 +10171030 Unwind@10171030 undefined Unwind@10171030(void) 11 1 +1017103b Unwind@1017103b undefined Unwind@1017103b(void) 8 1 +10171060 Unwind@10171060 undefined Unwind@10171060(void) 17 1 +10171071 Unwind@10171071 undefined Unwind@10171071(void) 8 1 +10171079 Unwind@10171079 undefined Unwind@10171079(void) 11 1 +10171084 Unwind@10171084 undefined Unwind@10171084(void) 11 1 +1017108f Unwind@1017108f undefined Unwind@1017108f(void) 8 1 +101710c0 Unwind@101710c0 undefined Unwind@101710c0(void) 17 1 +101710d1 Unwind@101710d1 undefined Unwind@101710d1(void) 8 1 +101710d9 Unwind@101710d9 undefined Unwind@101710d9(void) 11 1 +101710e4 Unwind@101710e4 undefined Unwind@101710e4(void) 8 1 +10171110 Unwind@10171110 undefined Unwind@10171110(void) 8 1 +10171118 Unwind@10171118 undefined Unwind@10171118(void) 11 1 +10171123 Unwind@10171123 undefined Unwind@10171123(void) 8 1 +10171150 Unwind@10171150 undefined Unwind@10171150(void) 11 1 +1017115b Unwind@1017115b undefined Unwind@1017115b(void) 8 1 +10171180 Unwind@10171180 undefined Unwind@10171180(void) 8 1 +101711d0 Unwind@101711d0 undefined Unwind@101711d0(void) 11 1 +101711db Unwind@101711db undefined Unwind@101711db(void) 8 1 +101711e3 Unwind@101711e3 undefined Unwind@101711e3(void) 25 1 +10171220 Unwind@10171220 undefined Unwind@10171220(void) 11 1 +1017122b Unwind@1017122b undefined Unwind@1017122b(void) 8 1 +10171233 Unwind@10171233 undefined Unwind@10171233(void) 25 1 +10171270 Unwind@10171270 undefined Unwind@10171270(void) 17 1 +10171281 Unwind@10171281 undefined Unwind@10171281(void) 8 1 +10171289 Unwind@10171289 undefined Unwind@10171289(void) 11 1 +10171294 Unwind@10171294 undefined Unwind@10171294(void) 11 1 +1017129f Unwind@1017129f undefined Unwind@1017129f(void) 8 1 +101712d0 Unwind@101712d0 undefined Unwind@101712d0(void) 17 1 +101712e1 Unwind@101712e1 undefined Unwind@101712e1(void) 8 1 +101712e9 Unwind@101712e9 undefined Unwind@101712e9(void) 11 1 +101712f4 Unwind@101712f4 undefined Unwind@101712f4(void) 8 1 +10171320 Unwind@10171320 undefined Unwind@10171320(void) 8 1 +10171328 Unwind@10171328 undefined Unwind@10171328(void) 11 1 +10171333 Unwind@10171333 undefined Unwind@10171333(void) 8 1 +10171360 Unwind@10171360 undefined Unwind@10171360(void) 17 1 +10171371 Unwind@10171371 undefined Unwind@10171371(void) 11 1 +1017137c Unwind@1017137c undefined Unwind@1017137c(void) 8 1 +101713a0 Unwind@101713a0 undefined Unwind@101713a0(void) 8 1 +101713a8 Unwind@101713a8 undefined Unwind@101713a8(void) 11 1 +101713b3 Unwind@101713b3 undefined Unwind@101713b3(void) 11 1 +101713be Unwind@101713be undefined Unwind@101713be(void) 8 1 +101713f0 Unwind@101713f0 undefined Unwind@101713f0(void) 9 0 +10171420 Unwind@10171420 undefined Unwind@10171420(void) 9 0 +10171450 Unwind@10171450 undefined Unwind@10171450(void) 17 1 +10171461 Unwind@10171461 undefined Unwind@10171461(void) 11 1 +1017146c Unwind@1017146c undefined Unwind@1017146c(void) 8 1 +10171490 Unwind@10171490 undefined Unwind@10171490(void) 8 1 +10171498 Unwind@10171498 undefined Unwind@10171498(void) 11 1 +101714a3 Unwind@101714a3 undefined Unwind@101714a3(void) 8 1 +101714d0 Unwind@101714d0 undefined Unwind@101714d0(void) 8 1 +101714d8 Unwind@101714d8 undefined Unwind@101714d8(void) 8 1 +101714e0 Unwind@101714e0 undefined Unwind@101714e0(void) 8 1 +101714e8 Unwind@101714e8 undefined Unwind@101714e8(void) 8 1 +101714f0 Unwind@101714f0 undefined Unwind@101714f0(void) 8 1 +101714f8 Unwind@101714f8 undefined Unwind@101714f8(void) 8 1 +10171520 Unwind@10171520 undefined Unwind@10171520(void) 8 1 +10171528 Unwind@10171528 undefined Unwind@10171528(void) 8 1 +10171530 Unwind@10171530 undefined Unwind@10171530(void) 8 1 +10171538 Unwind@10171538 undefined Unwind@10171538(void) 8 1 +10171540 Unwind@10171540 undefined Unwind@10171540(void) 8 1 +10171570 Unwind@10171570 undefined Unwind@10171570(void) 8 1 +10171578 Unwind@10171578 undefined Unwind@10171578(void) 8 1 +10171580 Unwind@10171580 undefined Unwind@10171580(void) 8 1 +10171588 Unwind@10171588 undefined Unwind@10171588(void) 8 1 +10171590 Unwind@10171590 undefined Unwind@10171590(void) 8 1 +10171598 Unwind@10171598 undefined Unwind@10171598(void) 8 1 +101715c0 Unwind@101715c0 undefined Unwind@101715c0(void) 8 1 +101715c8 Unwind@101715c8 undefined Unwind@101715c8(void) 8 1 +101715d0 Unwind@101715d0 undefined Unwind@101715d0(void) 8 1 +101715d8 Unwind@101715d8 undefined Unwind@101715d8(void) 8 1 +101715e0 Unwind@101715e0 undefined Unwind@101715e0(void) 8 1 +10171610 Unwind@10171610 undefined Unwind@10171610(void) 8 1 +10171618 Unwind@10171618 undefined Unwind@10171618(void) 8 1 +10171620 Unwind@10171620 undefined Unwind@10171620(void) 8 1 +10171628 Unwind@10171628 undefined Unwind@10171628(void) 8 1 +10171630 Unwind@10171630 undefined Unwind@10171630(void) 8 1 +10171660 Unwind@10171660 undefined Unwind@10171660(void) 8 1 +10171668 Unwind@10171668 undefined Unwind@10171668(void) 8 1 +10171670 Unwind@10171670 undefined Unwind@10171670(void) 8 1 +10171678 Unwind@10171678 undefined Unwind@10171678(void) 8 1 +10171680 Unwind@10171680 undefined Unwind@10171680(void) 8 1 +101716b0 Unwind@101716b0 undefined Unwind@101716b0(void) 8 1 +101716b8 Unwind@101716b8 undefined Unwind@101716b8(void) 8 1 +101716c0 Unwind@101716c0 undefined Unwind@101716c0(void) 8 1 +101716c8 Unwind@101716c8 undefined Unwind@101716c8(void) 8 1 +101716d0 Unwind@101716d0 undefined Unwind@101716d0(void) 8 1 +10171700 Unwind@10171700 undefined Unwind@10171700(void) 8 1 +10171708 Unwind@10171708 undefined Unwind@10171708(void) 8 1 +10171710 Unwind@10171710 undefined Unwind@10171710(void) 8 1 +10171718 Unwind@10171718 undefined Unwind@10171718(void) 8 1 +10171720 Unwind@10171720 undefined Unwind@10171720(void) 8 1 +10171750 Unwind@10171750 undefined Unwind@10171750(void) 8 1 +10171758 Unwind@10171758 undefined Unwind@10171758(void) 11 1 +10171763 Unwind@10171763 undefined Unwind@10171763(void) 8 1 +1017176b Unwind@1017176b undefined Unwind@1017176b(void) 8 1 +10171790 Unwind@10171790 undefined Unwind@10171790(void) 9 0 +101717c0 Unwind@101717c0 undefined Unwind@101717c0(void) 8 1 +101717c8 Unwind@101717c8 undefined Unwind@101717c8(void) 11 1 +101717d3 Unwind@101717d3 undefined Unwind@101717d3(void) 8 1 +10171820 Unwind@10171820 undefined Unwind@10171820(void) 8 1 +10171880 Unwind@10171880 undefined Unwind@10171880(void) 8 1 +10171888 Unwind@10171888 undefined Unwind@10171888(void) 11 1 +10171893 Unwind@10171893 undefined Unwind@10171893(void) 11 1 +1017189e Unwind@1017189e undefined Unwind@1017189e(void) 11 1 +101718a9 Unwind@101718a9 undefined Unwind@101718a9(void) 14 1 +101718b7 Unwind@101718b7 undefined Unwind@101718b7(void) 11 1 +101718c2 Unwind@101718c2 undefined Unwind@101718c2(void) 14 0 +101718d0 Unwind@101718d0 undefined Unwind@101718d0(void) 14 0 +101718de Unwind@101718de undefined Unwind@101718de(void) 14 0 +101718ec Unwind@101718ec undefined Unwind@101718ec(void) 11 1 +101718f7 Unwind@101718f7 undefined Unwind@101718f7(void) 8 1 +101718ff Unwind@101718ff undefined Unwind@101718ff(void) 14 1 +1017190d Unwind@1017190d undefined Unwind@1017190d(void) 11 1 +10171918 Unwind@10171918 undefined Unwind@10171918(void) 8 1 +10171920 Unwind@10171920 undefined Unwind@10171920(void) 8 1 +10171928 Unwind@10171928 undefined Unwind@10171928(void) 14 0 +10171936 Unwind@10171936 undefined Unwind@10171936(void) 14 0 +10171944 Unwind@10171944 undefined Unwind@10171944(void) 8 1 +1017194c Unwind@1017194c undefined Unwind@1017194c(void) 8 1 +10171954 Unwind@10171954 undefined Unwind@10171954(void) 14 0 +10171962 Unwind@10171962 undefined Unwind@10171962(void) 14 0 +10171970 Unwind@10171970 undefined Unwind@10171970(void) 14 0 +101719b0 Unwind@101719b0 undefined Unwind@101719b0(void) 8 1 +10171a00 Unwind@10171a00 undefined Unwind@10171a00(void) 8 1 +10171a08 Unwind@10171a08 undefined Unwind@10171a08(void) 9 0 +10171a30 Unwind@10171a30 undefined Unwind@10171a30(void) 17 1 +10171a41 Unwind@10171a41 undefined Unwind@10171a41(void) 17 1 +10171a70 Unwind@10171a70 undefined Unwind@10171a70(void) 8 1 +10171a78 Unwind@10171a78 undefined Unwind@10171a78(void) 9 0 +10171aa0 Unwind@10171aa0 undefined Unwind@10171aa0(void) 8 1 +10171aa8 Unwind@10171aa8 undefined Unwind@10171aa8(void) 8 1 +10171ab0 Unwind@10171ab0 undefined Unwind@10171ab0(void) 8 1 +10171ab8 Unwind@10171ab8 undefined Unwind@10171ab8(void) 8 1 +10171ac0 Unwind@10171ac0 undefined Unwind@10171ac0(void) 8 1 +10171ac8 Unwind@10171ac8 undefined Unwind@10171ac8(void) 8 1 +10171ad0 Unwind@10171ad0 undefined Unwind@10171ad0(void) 8 1 +10171ad8 Unwind@10171ad8 undefined Unwind@10171ad8(void) 8 1 +10171ae0 Unwind@10171ae0 undefined Unwind@10171ae0(void) 14 0 +10171aee Unwind@10171aee undefined Unwind@10171aee(void) 14 0 +10171afc Unwind@10171afc undefined Unwind@10171afc(void) 14 0 +10171b30 Unwind@10171b30 undefined Unwind@10171b30(void) 8 1 +10171b60 Unwind@10171b60 undefined Unwind@10171b60(void) 8 1 +10171b68 Unwind@10171b68 undefined Unwind@10171b68(void) 8 1 +10171b70 Unwind@10171b70 undefined Unwind@10171b70(void) 8 1 +10171b78 Unwind@10171b78 undefined Unwind@10171b78(void) 8 1 +10171b80 Unwind@10171b80 undefined Unwind@10171b80(void) 8 1 +10171b88 Unwind@10171b88 undefined Unwind@10171b88(void) 8 1 +10171b90 Unwind@10171b90 undefined Unwind@10171b90(void) 8 1 +10171b98 Unwind@10171b98 undefined Unwind@10171b98(void) 8 1 +10171ba0 Unwind@10171ba0 undefined Unwind@10171ba0(void) 8 1 +10171ba8 Unwind@10171ba8 undefined Unwind@10171ba8(void) 8 1 +10171bb0 Unwind@10171bb0 undefined Unwind@10171bb0(void) 8 1 +10171bb8 Unwind@10171bb8 undefined Unwind@10171bb8(void) 9 0 +10171be0 Unwind@10171be0 undefined Unwind@10171be0(void) 8 1 +10171be8 Unwind@10171be8 undefined Unwind@10171be8(void) 11 1 +10171bf3 Unwind@10171bf3 undefined Unwind@10171bf3(void) 11 1 +10171bfe Unwind@10171bfe undefined Unwind@10171bfe(void) 11 1 +10171c09 Unwind@10171c09 undefined Unwind@10171c09(void) 8 1 +10171c11 Unwind@10171c11 undefined Unwind@10171c11(void) 8 1 +10171c19 Unwind@10171c19 undefined Unwind@10171c19(void) 8 1 +10171c21 Unwind@10171c21 undefined Unwind@10171c21(void) 8 1 +10171c29 Unwind@10171c29 undefined Unwind@10171c29(void) 11 1 +10171c34 Unwind@10171c34 undefined Unwind@10171c34(void) 11 1 +10171c3f Unwind@10171c3f undefined Unwind@10171c3f(void) 11 1 +10171c4a Unwind@10171c4a undefined Unwind@10171c4a(void) 11 1 +10171c55 Unwind@10171c55 undefined Unwind@10171c55(void) 11 1 +10171c60 Unwind@10171c60 undefined Unwind@10171c60(void) 8 1 +10171c68 Unwind@10171c68 undefined Unwind@10171c68(void) 14 0 +10171c76 Unwind@10171c76 undefined Unwind@10171c76(void) 8 1 +10171c7e Unwind@10171c7e undefined Unwind@10171c7e(void) 8 1 +10171c86 Unwind@10171c86 undefined Unwind@10171c86(void) 8 1 +10171c8e Unwind@10171c8e undefined Unwind@10171c8e(void) 8 1 +10171c96 Unwind@10171c96 undefined Unwind@10171c96(void) 11 1 +10171ca1 Unwind@10171ca1 undefined Unwind@10171ca1(void) 8 1 +10171ca9 Unwind@10171ca9 undefined Unwind@10171ca9(void) 8 1 +10171cb1 Unwind@10171cb1 undefined Unwind@10171cb1(void) 8 1 +10171cb9 Unwind@10171cb9 undefined Unwind@10171cb9(void) 8 1 +10171cc1 Unwind@10171cc1 undefined Unwind@10171cc1(void) 8 1 +10171cc9 Unwind@10171cc9 undefined Unwind@10171cc9(void) 11 1 +10171cd4 Unwind@10171cd4 undefined Unwind@10171cd4(void) 8 1 +10171cdc Unwind@10171cdc undefined Unwind@10171cdc(void) 8 1 +10171ce4 Unwind@10171ce4 undefined Unwind@10171ce4(void) 8 1 +10171cec Unwind@10171cec undefined Unwind@10171cec(void) 8 1 +10171cf4 Unwind@10171cf4 undefined Unwind@10171cf4(void) 8 1 +10171cfc Unwind@10171cfc undefined Unwind@10171cfc(void) 8 1 +10171d04 Unwind@10171d04 undefined Unwind@10171d04(void) 12 0 +10171d30 Unwind@10171d30 undefined Unwind@10171d30(void) 11 1 +10171d70 Unwind@10171d70 undefined Unwind@10171d70(void) 11 1 +10171db0 Unwind@10171db0 undefined Unwind@10171db0(void) 11 1 +10171dbb Unwind@10171dbb undefined Unwind@10171dbb(void) 11 1 +10171df0 Unwind@10171df0 undefined Unwind@10171df0(void) 8 1 +10171df8 Unwind@10171df8 undefined Unwind@10171df8(void) 8 1 +10171e00 Unwind@10171e00 undefined Unwind@10171e00(void) 8 1 +10171e08 Unwind@10171e08 undefined Unwind@10171e08(void) 8 1 +10171e30 Unwind@10171e30 undefined Unwind@10171e30(void) 11 1 +10171e3b Unwind@10171e3b undefined Unwind@10171e3b(void) 11 1 +10171e46 Unwind@10171e46 undefined Unwind@10171e46(void) 11 1 +10171e51 Unwind@10171e51 undefined Unwind@10171e51(void) 14 1 +10171e5f Unwind@10171e5f undefined Unwind@10171e5f(void) 14 1 +10171e6d Unwind@10171e6d undefined Unwind@10171e6d(void) 14 1 +10171e7b Unwind@10171e7b undefined Unwind@10171e7b(void) 14 1 +10171e89 Unwind@10171e89 undefined Unwind@10171e89(void) 14 1 +10171e97 Unwind@10171e97 undefined Unwind@10171e97(void) 14 1 +10171ed0 Unwind@10171ed0 undefined Unwind@10171ed0(void) 8 1 +10171ed8 Unwind@10171ed8 undefined Unwind@10171ed8(void) 11 1 +10171ee3 Unwind@10171ee3 undefined Unwind@10171ee3(void) 11 1 +10171eee Unwind@10171eee undefined Unwind@10171eee(void) 8 1 +10171ef6 Unwind@10171ef6 undefined Unwind@10171ef6(void) 11 1 +10171f01 Unwind@10171f01 undefined Unwind@10171f01(void) 11 1 +10171f0c Unwind@10171f0c undefined Unwind@10171f0c(void) 11 1 +10171f17 Unwind@10171f17 undefined Unwind@10171f17(void) 11 1 +10171f22 Unwind@10171f22 undefined Unwind@10171f22(void) 8 1 +10171f50 Unwind@10171f50 undefined Unwind@10171f50(void) 8 1 +10171f58 Unwind@10171f58 undefined Unwind@10171f58(void) 8 1 +10171f60 Unwind@10171f60 undefined Unwind@10171f60(void) 8 1 +10171f68 Unwind@10171f68 undefined Unwind@10171f68(void) 8 1 +10171f70 Unwind@10171f70 undefined Unwind@10171f70(void) 8 1 +10171f78 Unwind@10171f78 undefined Unwind@10171f78(void) 8 1 +10171f80 Unwind@10171f80 undefined Unwind@10171f80(void) 8 1 +10171f88 Unwind@10171f88 undefined Unwind@10171f88(void) 8 1 +10171f90 Unwind@10171f90 undefined Unwind@10171f90(void) 8 1 +10171f98 Unwind@10171f98 undefined Unwind@10171f98(void) 8 1 +10171fa0 Unwind@10171fa0 undefined Unwind@10171fa0(void) 8 1 +10171fa8 Unwind@10171fa8 undefined Unwind@10171fa8(void) 8 1 +10171fb0 Unwind@10171fb0 undefined Unwind@10171fb0(void) 8 1 +10171fe0 Unwind@10171fe0 undefined Unwind@10171fe0(void) 8 1 +10171fe8 Unwind@10171fe8 undefined Unwind@10171fe8(void) 9 0 +10172010 Unwind@10172010 undefined Unwind@10172010(void) 8 1 +10172018 Unwind@10172018 undefined Unwind@10172018(void) 8 1 +10172020 Unwind@10172020 undefined Unwind@10172020(void) 8 1 +10172028 Unwind@10172028 undefined Unwind@10172028(void) 11 1 +10172033 Unwind@10172033 undefined Unwind@10172033(void) 11 1 +1017203e Unwind@1017203e undefined Unwind@1017203e(void) 9 0 +10172070 Unwind@10172070 undefined Unwind@10172070(void) 8 1 +10172078 Unwind@10172078 undefined Unwind@10172078(void) 11 1 +10172083 Unwind@10172083 undefined Unwind@10172083(void) 11 1 +1017208e Unwind@1017208e undefined Unwind@1017208e(void) 8 1 +10172096 Unwind@10172096 undefined Unwind@10172096(void) 8 1 +101720c0 Unwind@101720c0 undefined Unwind@101720c0(void) 8 1 +101720c8 Unwind@101720c8 undefined Unwind@101720c8(void) 11 1 +101720f0 Unwind@101720f0 undefined Unwind@101720f0(void) 8 1 +101720f8 Unwind@101720f8 undefined Unwind@101720f8(void) 8 1 +10172100 Unwind@10172100 undefined Unwind@10172100(void) 8 1 +10172108 Unwind@10172108 undefined Unwind@10172108(void) 11 1 +10172113 Unwind@10172113 undefined Unwind@10172113(void) 11 1 +1017211e Unwind@1017211e undefined Unwind@1017211e(void) 11 1 +10172129 Unwind@10172129 undefined Unwind@10172129(void) 8 1 +10172131 Unwind@10172131 undefined Unwind@10172131(void) 8 1 +10172139 Unwind@10172139 undefined Unwind@10172139(void) 11 1 +10172144 Unwind@10172144 undefined Unwind@10172144(void) 8 1 +1017214c Unwind@1017214c undefined Unwind@1017214c(void) 8 1 +10172154 Unwind@10172154 undefined Unwind@10172154(void) 8 1 +1017215c Unwind@1017215c undefined Unwind@1017215c(void) 8 1 +10172190 Unwind@10172190 undefined Unwind@10172190(void) 11 1 +1017219b Unwind@1017219b undefined Unwind@1017219b(void) 11 1 +101721a6 Unwind@101721a6 undefined Unwind@101721a6(void) 11 1 +101721b1 Unwind@101721b1 undefined Unwind@101721b1(void) 11 1 +101721bc Unwind@101721bc undefined Unwind@101721bc(void) 11 1 +101721c7 Unwind@101721c7 undefined Unwind@101721c7(void) 11 1 +101721d2 Unwind@101721d2 undefined Unwind@101721d2(void) 11 1 +101721dd Unwind@101721dd undefined Unwind@101721dd(void) 11 1 +101721e8 Unwind@101721e8 undefined Unwind@101721e8(void) 8 1 +101721f0 Unwind@101721f0 undefined Unwind@101721f0(void) 8 1 +101721f8 Unwind@101721f8 undefined Unwind@101721f8(void) 8 1 +10172200 Unwind@10172200 undefined Unwind@10172200(void) 14 1 +1017220e Unwind@1017220e undefined Unwind@1017220e(void) 8 1 +10172216 Unwind@10172216 undefined Unwind@10172216(void) 11 1 +10172221 Unwind@10172221 undefined Unwind@10172221(void) 11 1 +1017222c Unwind@1017222c undefined Unwind@1017222c(void) 11 1 +10172237 Unwind@10172237 undefined Unwind@10172237(void) 11 1 +10172242 Unwind@10172242 undefined Unwind@10172242(void) 11 1 +1017224d Unwind@1017224d undefined Unwind@1017224d(void) 11 1 +10172258 Unwind@10172258 undefined Unwind@10172258(void) 11 1 +10172263 Unwind@10172263 undefined Unwind@10172263(void) 11 1 +1017226e Unwind@1017226e undefined Unwind@1017226e(void) 11 1 +10172279 Unwind@10172279 undefined Unwind@10172279(void) 11 1 +10172284 Unwind@10172284 undefined Unwind@10172284(void) 11 1 +1017228f Unwind@1017228f undefined Unwind@1017228f(void) 11 1 +1017229a Unwind@1017229a undefined Unwind@1017229a(void) 8 1 +101722a2 Unwind@101722a2 undefined Unwind@101722a2(void) 11 1 +101722ad Unwind@101722ad undefined Unwind@101722ad(void) 11 1 +101722b8 Unwind@101722b8 undefined Unwind@101722b8(void) 11 1 +101722c3 Unwind@101722c3 undefined Unwind@101722c3(void) 11 1 +101722ce Unwind@101722ce undefined Unwind@101722ce(void) 11 1 +101722d9 Unwind@101722d9 undefined Unwind@101722d9(void) 11 1 +101722e4 Unwind@101722e4 undefined Unwind@101722e4(void) 8 1 +101722ec Unwind@101722ec undefined Unwind@101722ec(void) 11 1 +101722f7 Unwind@101722f7 undefined Unwind@101722f7(void) 11 1 +10172330 Unwind@10172330 undefined Unwind@10172330(void) 8 1 +10172338 Unwind@10172338 undefined Unwind@10172338(void) 8 1 +10172360 Unwind@10172360 undefined Unwind@10172360(void) 8 1 +10172368 Unwind@10172368 undefined Unwind@10172368(void) 8 1 +10172370 Unwind@10172370 undefined Unwind@10172370(void) 8 1 +10172378 Unwind@10172378 undefined Unwind@10172378(void) 8 1 +10172380 Unwind@10172380 undefined Unwind@10172380(void) 8 1 +101723b0 Unwind@101723b0 undefined Unwind@101723b0(void) 8 1 +101723e0 Unwind@101723e0 undefined Unwind@101723e0(void) 8 1 +10172410 Unwind@10172410 undefined Unwind@10172410(void) 8 1 +10172440 Unwind@10172440 undefined Unwind@10172440(void) 8 1 +10172470 Unwind@10172470 undefined Unwind@10172470(void) 11 1 +101724a0 Unwind@101724a0 undefined Unwind@101724a0(void) 8 1 +101724a8 Unwind@101724a8 undefined Unwind@101724a8(void) 11 1 +101724b3 Unwind@101724b3 undefined Unwind@101724b3(void) 11 1 +101724be Unwind@101724be undefined Unwind@101724be(void) 11 1 +101724c9 Unwind@101724c9 undefined Unwind@101724c9(void) 11 1 +101724d4 Unwind@101724d4 undefined Unwind@101724d4(void) 11 1 +101724df Unwind@101724df undefined Unwind@101724df(void) 14 1 +101724ed Unwind@101724ed undefined Unwind@101724ed(void) 14 1 +101724fb Unwind@101724fb undefined Unwind@101724fb(void) 8 1 +10172503 Unwind@10172503 undefined Unwind@10172503(void) 8 1 +1017250b Unwind@1017250b undefined Unwind@1017250b(void) 11 1 +10172516 Unwind@10172516 undefined Unwind@10172516(void) 11 1 +10172521 Unwind@10172521 undefined Unwind@10172521(void) 11 1 +1017252c Unwind@1017252c undefined Unwind@1017252c(void) 11 1 +10172537 Unwind@10172537 undefined Unwind@10172537(void) 8 1 +10172560 Unwind@10172560 undefined Unwind@10172560(void) 8 1 +10172590 Unwind@10172590 undefined Unwind@10172590(void) 8 1 +10172598 Unwind@10172598 undefined Unwind@10172598(void) 8 1 +101725a0 Unwind@101725a0 undefined Unwind@101725a0(void) 8 1 +101725a8 Unwind@101725a8 undefined Unwind@101725a8(void) 8 1 +101725b0 Unwind@101725b0 undefined Unwind@101725b0(void) 8 1 +101725b8 Unwind@101725b8 undefined Unwind@101725b8(void) 8 1 +101725f0 Unwind@101725f0 undefined Unwind@101725f0(void) 8 1 +101725f8 Unwind@101725f8 undefined Unwind@101725f8(void) 8 1 +10172600 Unwind@10172600 undefined Unwind@10172600(void) 11 1 +1017260b Unwind@1017260b undefined Unwind@1017260b(void) 11 1 +10172616 Unwind@10172616 undefined Unwind@10172616(void) 11 1 +10172621 Unwind@10172621 undefined Unwind@10172621(void) 11 1 +10172650 Unwind@10172650 undefined Unwind@10172650(void) 8 1 +10172658 Unwind@10172658 undefined Unwind@10172658(void) 11 1 +10172663 Unwind@10172663 undefined Unwind@10172663(void) 11 1 +1017266e Unwind@1017266e undefined Unwind@1017266e(void) 11 1 +10172679 Unwind@10172679 undefined Unwind@10172679(void) 8 1 +10172681 Unwind@10172681 undefined Unwind@10172681(void) 11 1 +1017268c Unwind@1017268c undefined Unwind@1017268c(void) 11 1 +10172697 Unwind@10172697 undefined Unwind@10172697(void) 14 1 +101726a5 Unwind@101726a5 undefined Unwind@101726a5(void) 14 1 +101726d0 Unwind@101726d0 undefined Unwind@101726d0(void) 8 1 +101726d8 Unwind@101726d8 undefined Unwind@101726d8(void) 11 1 +101726e3 Unwind@101726e3 undefined Unwind@101726e3(void) 11 1 +101726ee Unwind@101726ee undefined Unwind@101726ee(void) 8 1 +101726f6 Unwind@101726f6 undefined Unwind@101726f6(void) 8 1 +101726fe Unwind@101726fe undefined Unwind@101726fe(void) 11 1 +10172709 Unwind@10172709 undefined Unwind@10172709(void) 11 1 +10172714 Unwind@10172714 undefined Unwind@10172714(void) 11 1 +1017271f Unwind@1017271f undefined Unwind@1017271f(void) 11 1 +1017272a Unwind@1017272a undefined Unwind@1017272a(void) 11 1 +10172735 Unwind@10172735 undefined Unwind@10172735(void) 8 1 +1017273d Unwind@1017273d undefined Unwind@1017273d(void) 11 1 +10172748 Unwind@10172748 undefined Unwind@10172748(void) 11 1 +10172753 Unwind@10172753 undefined Unwind@10172753(void) 14 1 +10172761 Unwind@10172761 undefined Unwind@10172761(void) 14 1 +10172790 Unwind@10172790 undefined Unwind@10172790(void) 8 1 +10172798 Unwind@10172798 undefined Unwind@10172798(void) 8 1 +101727a0 Unwind@101727a0 undefined Unwind@101727a0(void) 11 1 +101727ab Unwind@101727ab undefined Unwind@101727ab(void) 8 1 +101727b3 Unwind@101727b3 undefined Unwind@101727b3(void) 8 1 +101727bb Unwind@101727bb undefined Unwind@101727bb(void) 8 1 +101727c3 Unwind@101727c3 undefined Unwind@101727c3(void) 14 1 +101727d1 Unwind@101727d1 undefined Unwind@101727d1(void) 11 1 +101727dc Unwind@101727dc undefined Unwind@101727dc(void) 11 1 +10172810 Unwind@10172810 undefined Unwind@10172810(void) 25 1 +10172850 Unwind@10172850 undefined Unwind@10172850(void) 11 1 +1017285b Unwind@1017285b undefined Unwind@1017285b(void) 11 1 +10172890 Unwind@10172890 undefined Unwind@10172890(void) 8 1 +10172898 Unwind@10172898 undefined Unwind@10172898(void) 8 1 +101728a0 Unwind@101728a0 undefined Unwind@101728a0(void) 11 1 +101728ab Unwind@101728ab undefined Unwind@101728ab(void) 8 1 +101728b3 Unwind@101728b3 undefined Unwind@101728b3(void) 8 1 +101728bb Unwind@101728bb undefined Unwind@101728bb(void) 8 1 +101728c3 Unwind@101728c3 undefined Unwind@101728c3(void) 8 1 +101728cb Unwind@101728cb undefined Unwind@101728cb(void) 8 1 +101728d3 Unwind@101728d3 undefined Unwind@101728d3(void) 8 1 +101728db Unwind@101728db undefined Unwind@101728db(void) 8 1 +10172910 Unwind@10172910 undefined Unwind@10172910(void) 11 1 +1017291b Unwind@1017291b undefined Unwind@1017291b(void) 11 1 +10172926 Unwind@10172926 undefined Unwind@10172926(void) 11 1 +10172931 Unwind@10172931 undefined Unwind@10172931(void) 11 1 +1017293c Unwind@1017293c undefined Unwind@1017293c(void) 14 1 +1017294a Unwind@1017294a undefined Unwind@1017294a(void) 11 1 +10172955 Unwind@10172955 undefined Unwind@10172955(void) 14 1 +10172963 Unwind@10172963 undefined Unwind@10172963(void) 11 1 +1017296e Unwind@1017296e undefined Unwind@1017296e(void) 11 1 +10172979 Unwind@10172979 undefined Unwind@10172979(void) 11 1 +10172984 Unwind@10172984 undefined Unwind@10172984(void) 11 1 +1017298f Unwind@1017298f undefined Unwind@1017298f(void) 11 1 +1017299a Unwind@1017299a undefined Unwind@1017299a(void) 11 1 +101729d0 Unwind@101729d0 undefined Unwind@101729d0(void) 11 1 +10172a10 Unwind@10172a10 undefined Unwind@10172a10(void) 8 1 +10172a40 Unwind@10172a40 undefined Unwind@10172a40(void) 8 1 +10172a70 Unwind@10172a70 undefined Unwind@10172a70(void) 8 1 +10172aa0 Unwind@10172aa0 undefined Unwind@10172aa0(void) 8 1 +10172ad0 Unwind@10172ad0 undefined Unwind@10172ad0(void) 9 0 +10172b00 Unwind@10172b00 undefined Unwind@10172b00(void) 9 0 +10172b30 Unwind@10172b30 undefined Unwind@10172b30(void) 9 0 +10172b60 Unwind@10172b60 undefined Unwind@10172b60(void) 9 0 +10172b90 Unwind@10172b90 undefined Unwind@10172b90(void) 17 1 +10172bc0 Unwind@10172bc0 undefined Unwind@10172bc0(void) 17 1 +10172bf0 Unwind@10172bf0 undefined Unwind@10172bf0(void) 17 1 +10172c20 Unwind@10172c20 undefined Unwind@10172c20(void) 17 1 +10172c50 Unwind@10172c50 undefined Unwind@10172c50(void) 17 1 +10172c80 Unwind@10172c80 undefined Unwind@10172c80(void) 17 1 +10172cb0 Unwind@10172cb0 undefined Unwind@10172cb0(void) 17 1 +10172ce0 Unwind@10172ce0 undefined Unwind@10172ce0(void) 8 1 +10172d10 Unwind@10172d10 undefined Unwind@10172d10(void) 8 1 +10172d40 Unwind@10172d40 undefined Unwind@10172d40(void) 9 0 +10172d70 Unwind@10172d70 undefined Unwind@10172d70(void) 17 1 +10172da0 Unwind@10172da0 undefined Unwind@10172da0(void) 17 1 +10172dd0 Unwind@10172dd0 undefined Unwind@10172dd0(void) 9 0 +10172e00 Unwind@10172e00 undefined Unwind@10172e00(void) 9 0 +10172e30 Unwind@10172e30 undefined Unwind@10172e30(void) 9 0 +10172e60 Unwind@10172e60 undefined Unwind@10172e60(void) 9 0 +10172e90 Unwind@10172e90 undefined Unwind@10172e90(void) 9 0 +10172ec0 Unwind@10172ec0 undefined Unwind@10172ec0(void) 9 0 +10172ef0 Unwind@10172ef0 undefined Unwind@10172ef0(void) 9 0 +10172f20 Unwind@10172f20 undefined Unwind@10172f20(void) 9 0 +10172f50 Unwind@10172f50 undefined Unwind@10172f50(void) 17 1 +10172f80 Unwind@10172f80 undefined Unwind@10172f80(void) 17 1 +10172fb0 Unwind@10172fb0 undefined Unwind@10172fb0(void) 17 1 +10172fe0 Unwind@10172fe0 undefined Unwind@10172fe0(void) 17 1 +10173010 Unwind@10173010 undefined Unwind@10173010(void) 9 0 +10173040 Unwind@10173040 undefined Unwind@10173040(void) 17 1 +10173070 Unwind@10173070 undefined Unwind@10173070(void) 8 1 +10173078 Unwind@10173078 undefined Unwind@10173078(void) 25 1 +101730c0 Unwind@101730c0 undefined Unwind@101730c0(void) 8 1 +101730f0 Unwind@101730f0 undefined Unwind@101730f0(void) 8 1 +101730f8 Unwind@101730f8 undefined Unwind@101730f8(void) 8 1 +10173120 Unwind@10173120 undefined Unwind@10173120(void) 8 1 +10173128 Unwind@10173128 undefined Unwind@10173128(void) 8 1 +10173150 Unwind@10173150 undefined Unwind@10173150(void) 9 0 +10173180 Unwind@10173180 undefined Unwind@10173180(void) 9 0 +101731b0 Unwind@101731b0 undefined Unwind@101731b0(void) 9 0 +101731e0 Unwind@101731e0 undefined Unwind@101731e0(void) 9 0 +10173210 Unwind@10173210 undefined Unwind@10173210(void) 9 0 +10173240 Unwind@10173240 undefined Unwind@10173240(void) 9 0 +10173270 Unwind@10173270 undefined Unwind@10173270(void) 17 1 +101732a0 Unwind@101732a0 undefined Unwind@101732a0(void) 9 0 +101732d0 Unwind@101732d0 undefined Unwind@101732d0(void) 9 0 +10173300 Unwind@10173300 undefined Unwind@10173300(void) 9 0 +10173330 Unwind@10173330 undefined Unwind@10173330(void) 9 0 +10173360 Unwind@10173360 undefined Unwind@10173360(void) 9 0 +10173390 Unwind@10173390 undefined Unwind@10173390(void) 17 1 +101733c0 Unwind@101733c0 undefined Unwind@101733c0(void) 17 1 +101733f0 Unwind@101733f0 undefined Unwind@101733f0(void) 17 1 +10173420 Unwind@10173420 undefined Unwind@10173420(void) 8 1 +10173428 Unwind@10173428 undefined Unwind@10173428(void) 9 0 +10173450 Unwind@10173450 undefined Unwind@10173450(void) 8 1 +10173458 Unwind@10173458 undefined Unwind@10173458(void) 9 0 +10173480 Unwind@10173480 undefined Unwind@10173480(void) 8 1 +10173488 Unwind@10173488 undefined Unwind@10173488(void) 9 0 +101734b0 Unwind@101734b0 undefined Unwind@101734b0(void) 8 1 +101734b8 Unwind@101734b8 undefined Unwind@101734b8(void) 9 0 +101734e0 Unwind@101734e0 undefined Unwind@101734e0(void) 9 0 +10173510 Unwind@10173510 undefined Unwind@10173510(void) 17 1 +10173540 Unwind@10173540 undefined Unwind@10173540(void) 17 1 +10173570 Unwind@10173570 undefined Unwind@10173570(void) 17 1 +101735a0 Unwind@101735a0 undefined Unwind@101735a0(void) 17 1 +101735d0 Unwind@101735d0 undefined Unwind@101735d0(void) 17 1 +10173600 Unwind@10173600 undefined Unwind@10173600(void) 8 1 +10173650 Unwind@10173650 undefined Unwind@10173650(void) 9 0 +10173680 Unwind@10173680 undefined Unwind@10173680(void) 9 0 +101736b0 Unwind@101736b0 undefined Unwind@101736b0(void) 17 1 +101736e0 Unwind@101736e0 undefined Unwind@101736e0(void) 9 0 +10173730 Unwind@10173730 undefined Unwind@10173730(void) 17 1 +10173760 Unwind@10173760 undefined Unwind@10173760(void) 9 0 +101737b0 Unwind@101737b0 undefined Unwind@101737b0(void) 9 0 +101737e0 Unwind@101737e0 undefined Unwind@101737e0(void) 8 1 +10173810 Unwind@10173810 undefined Unwind@10173810(void) 8 1 +10173840 Unwind@10173840 undefined Unwind@10173840(void) 8 1 +10173870 Unwind@10173870 undefined Unwind@10173870(void) 8 1 +10173878 Unwind@10173878 undefined Unwind@10173878(void) 9 0 +101738c0 Unwind@101738c0 undefined Unwind@101738c0(void) 8 1 +101738c8 Unwind@101738c8 undefined Unwind@101738c8(void) 8 1 +101738d0 Unwind@101738d0 undefined Unwind@101738d0(void) 9 0 +10173900 Unwind@10173900 undefined Unwind@10173900(void) 8 1 +10173908 Unwind@10173908 undefined Unwind@10173908(void) 9 0 +10173930 Unwind@10173930 undefined Unwind@10173930(void) 8 1 +10173938 Unwind@10173938 undefined Unwind@10173938(void) 9 0 +10173960 Unwind@10173960 undefined Unwind@10173960(void) 11 1 +10173990 Unwind@10173990 undefined Unwind@10173990(void) 8 1 +10173998 Unwind@10173998 undefined Unwind@10173998(void) 8 1 +101739a0 Unwind@101739a0 undefined Unwind@101739a0(void) 9 0 +101739d0 Unwind@101739d0 undefined Unwind@101739d0(void) 8 1 +10173a00 Unwind@10173a00 undefined Unwind@10173a00(void) 8 1 +10173a08 Unwind@10173a08 undefined Unwind@10173a08(void) 8 1 +10173a10 Unwind@10173a10 undefined Unwind@10173a10(void) 9 0 +10173a40 Unwind@10173a40 undefined Unwind@10173a40(void) 8 1 +10173a70 Unwind@10173a70 undefined Unwind@10173a70(void) 8 1 +10173a78 Unwind@10173a78 undefined Unwind@10173a78(void) 11 1 +10173aa0 Unwind@10173aa0 undefined Unwind@10173aa0(void) 8 1 +10173aa8 Unwind@10173aa8 undefined Unwind@10173aa8(void) 9 0 +10173ad0 Unwind@10173ad0 undefined Unwind@10173ad0(void) 17 1 +10173ae1 Unwind@10173ae1 undefined Unwind@10173ae1(void) 8 1 +10173ae9 Unwind@10173ae9 undefined Unwind@10173ae9(void) 11 1 +10173b10 Unwind@10173b10 undefined Unwind@10173b10(void) 8 1 +10173b18 Unwind@10173b18 undefined Unwind@10173b18(void) 8 1 +10173b20 Unwind@10173b20 undefined Unwind@10173b20(void) 11 1 +10173b2b Unwind@10173b2b undefined Unwind@10173b2b(void) 8 1 +10173b33 Unwind@10173b33 undefined Unwind@10173b33(void) 11 1 +10173b3e Unwind@10173b3e undefined Unwind@10173b3e(void) 8 1 +10173b46 Unwind@10173b46 undefined Unwind@10173b46(void) 14 1 +10173b54 Unwind@10173b54 undefined Unwind@10173b54(void) 8 1 +10173b5c Unwind@10173b5c undefined Unwind@10173b5c(void) 8 1 +10173b64 Unwind@10173b64 undefined Unwind@10173b64(void) 14 1 +10173b72 Unwind@10173b72 undefined Unwind@10173b72(void) 9 0 +10173b7b Unwind@10173b7b undefined Unwind@10173b7b(void) 9 0 +10173b84 Unwind@10173b84 undefined Unwind@10173b84(void) 9 0 +10173b8d Unwind@10173b8d undefined Unwind@10173b8d(void) 9 0 +10173bc0 Unwind@10173bc0 undefined Unwind@10173bc0(void) 8 1 +10173bf0 Unwind@10173bf0 undefined Unwind@10173bf0(void) 8 1 +10173bf8 Unwind@10173bf8 undefined Unwind@10173bf8(void) 8 1 +10173c00 Unwind@10173c00 undefined Unwind@10173c00(void) 11 1 +10173c0b Unwind@10173c0b undefined Unwind@10173c0b(void) 9 0 +10173c30 Unwind@10173c30 undefined Unwind@10173c30(void) 8 1 +10173c38 Unwind@10173c38 undefined Unwind@10173c38(void) 11 1 +10173c60 Unwind@10173c60 undefined Unwind@10173c60(void) 8 1 +10173c68 Unwind@10173c68 undefined Unwind@10173c68(void) 8 1 +10173c70 Unwind@10173c70 undefined Unwind@10173c70(void) 8 1 +10173c78 Unwind@10173c78 undefined Unwind@10173c78(void) 8 1 +10173c80 Unwind@10173c80 undefined Unwind@10173c80(void) 8 1 +10173c88 Unwind@10173c88 undefined Unwind@10173c88(void) 8 1 +10173cc0 Unwind@10173cc0 undefined Unwind@10173cc0(void) 17 1 +10173cd1 Unwind@10173cd1 undefined Unwind@10173cd1(void) 8 1 +10173cd9 Unwind@10173cd9 undefined Unwind@10173cd9(void) 11 1 +10173d00 Unwind@10173d00 undefined Unwind@10173d00(void) 8 1 +10173d30 Unwind@10173d30 undefined Unwind@10173d30(void) 17 1 +10173d41 Unwind@10173d41 undefined Unwind@10173d41(void) 8 1 +10173d49 Unwind@10173d49 undefined Unwind@10173d49(void) 11 1 +10173d70 Unwind@10173d70 undefined Unwind@10173d70(void) 14 0 +10173d7e Unwind@10173d7e undefined Unwind@10173d7e(void) 14 1 +10173d8c Unwind@10173d8c undefined Unwind@10173d8c(void) 8 1 +10173d94 Unwind@10173d94 undefined Unwind@10173d94(void) 14 1 +10173da2 Unwind@10173da2 undefined Unwind@10173da2(void) 8 1 +10173daa Unwind@10173daa undefined Unwind@10173daa(void) 8 1 +10173db2 Unwind@10173db2 undefined Unwind@10173db2(void) 11 1 +10173dbd Unwind@10173dbd undefined Unwind@10173dbd(void) 11 1 +10173df0 Unwind@10173df0 undefined Unwind@10173df0(void) 8 1 +10173df8 Unwind@10173df8 undefined Unwind@10173df8(void) 8 1 +10173e00 Unwind@10173e00 undefined Unwind@10173e00(void) 11 1 +10173e0b Unwind@10173e0b undefined Unwind@10173e0b(void) 8 1 +10173e13 Unwind@10173e13 undefined Unwind@10173e13(void) 8 1 +10173e1b Unwind@10173e1b undefined Unwind@10173e1b(void) 8 1 +10173e23 Unwind@10173e23 undefined Unwind@10173e23(void) 8 1 +10173e2b Unwind@10173e2b undefined Unwind@10173e2b(void) 8 1 +10173e33 Unwind@10173e33 undefined Unwind@10173e33(void) 8 1 +10173e3b Unwind@10173e3b undefined Unwind@10173e3b(void) 11 1 +10173e46 Unwind@10173e46 undefined Unwind@10173e46(void) 8 1 +10173e4e Unwind@10173e4e undefined Unwind@10173e4e(void) 11 1 +10173e90 Unwind@10173e90 undefined Unwind@10173e90(void) 8 1 +10173e98 Unwind@10173e98 undefined Unwind@10173e98(void) 11 1 +10173ea3 Unwind@10173ea3 undefined Unwind@10173ea3(void) 8 1 +10173eab Unwind@10173eab undefined Unwind@10173eab(void) 11 1 +10173ee0 Unwind@10173ee0 undefined Unwind@10173ee0(void) 8 1 +10173ee8 Unwind@10173ee8 undefined Unwind@10173ee8(void) 11 1 +10173f10 Unwind@10173f10 undefined Unwind@10173f10(void) 8 1 +10173f18 Unwind@10173f18 undefined Unwind@10173f18(void) 11 1 +10173f40 Unwind@10173f40 undefined Unwind@10173f40(void) 17 1 +10173f51 Unwind@10173f51 undefined Unwind@10173f51(void) 8 1 +10173f59 Unwind@10173f59 undefined Unwind@10173f59(void) 11 1 +10173f80 Unwind@10173f80 undefined Unwind@10173f80(void) 8 1 +10173f88 Unwind@10173f88 undefined Unwind@10173f88(void) 11 1 +10173f93 Unwind@10173f93 undefined Unwind@10173f93(void) 11 1 +10173f9e Unwind@10173f9e undefined Unwind@10173f9e(void) 14 1 +10173fac Unwind@10173fac undefined Unwind@10173fac(void) 8 1 +10173fb4 Unwind@10173fb4 undefined Unwind@10173fb4(void) 14 1 +10173fe0 Unwind@10173fe0 undefined Unwind@10173fe0(void) 9 0 +10174010 Unwind@10174010 undefined Unwind@10174010(void) 11 1 +10174040 Unwind@10174040 undefined Unwind@10174040(void) 14 0 +10174080 Unwind@10174080 undefined Unwind@10174080(void) 11 1 +1017408b Unwind@1017408b undefined Unwind@1017408b(void) 8 1 +10174093 Unwind@10174093 undefined Unwind@10174093(void) 8 1 +101740c0 Unwind@101740c0 undefined Unwind@101740c0(void) 9 0 +101740f0 Unwind@101740f0 undefined Unwind@101740f0(void) 11 1 +10174120 Unwind@10174120 undefined Unwind@10174120(void) 11 1 +1017412b Unwind@1017412b undefined Unwind@1017412b(void) 8 1 +10174150 Unwind@10174150 undefined Unwind@10174150(void) 11 1 +1017415b Unwind@1017415b undefined Unwind@1017415b(void) 8 1 +101741a0 Unwind@101741a0 undefined Unwind@101741a0(void) 17 1 +101741b1 Unwind@101741b1 undefined Unwind@101741b1(void) 11 1 +101741bc Unwind@101741bc undefined Unwind@101741bc(void) 8 1 +101741e0 Unwind@101741e0 undefined Unwind@101741e0(void) 11 1 +101741eb Unwind@101741eb undefined Unwind@101741eb(void) 8 1 +101741f3 Unwind@101741f3 undefined Unwind@101741f3(void) 25 1 +10174230 Unwind@10174230 undefined Unwind@10174230(void) 8 1 +10174238 Unwind@10174238 undefined Unwind@10174238(void) 11 1 +10174260 Unwind@10174260 undefined Unwind@10174260(void) 17 1 +10174271 Unwind@10174271 undefined Unwind@10174271(void) 11 1 +1017427c Unwind@1017427c undefined Unwind@1017427c(void) 8 1 +101742a0 Unwind@101742a0 undefined Unwind@101742a0(void) 8 1 +101742a8 Unwind@101742a8 undefined Unwind@101742a8(void) 11 1 +101742d0 Unwind@101742d0 undefined Unwind@101742d0(void) 9 0 +10174300 Unwind@10174300 undefined Unwind@10174300(void) 8 1 +10174308 Unwind@10174308 undefined Unwind@10174308(void) 9 0 +10174330 Unwind@10174330 undefined Unwind@10174330(void) 14 0 +1017433e Unwind@1017433e undefined Unwind@1017433e(void) 11 1 +10174349 Unwind@10174349 undefined Unwind@10174349(void) 11 1 +10174354 Unwind@10174354 undefined Unwind@10174354(void) 11 1 +1017435f Unwind@1017435f undefined Unwind@1017435f(void) 11 1 +101743a0 Unwind@101743a0 undefined Unwind@101743a0(void) 8 1 +101743d0 Unwind@101743d0 undefined Unwind@101743d0(void) 8 1 +101743d8 Unwind@101743d8 undefined Unwind@101743d8(void) 8 1 +101743e0 Unwind@101743e0 undefined Unwind@101743e0(void) 9 0 +10174410 Unwind@10174410 undefined Unwind@10174410(void) 8 1 +10174418 Unwind@10174418 undefined Unwind@10174418(void) 8 1 +10174420 Unwind@10174420 undefined Unwind@10174420(void) 8 1 +10174428 Unwind@10174428 undefined Unwind@10174428(void) 11 1 +10174450 Unwind@10174450 undefined Unwind@10174450(void) 8 1 +10174458 Unwind@10174458 undefined Unwind@10174458(void) 8 1 +10174460 Unwind@10174460 undefined Unwind@10174460(void) 8 1 +10174468 Unwind@10174468 undefined Unwind@10174468(void) 8 1 +10174470 Unwind@10174470 undefined Unwind@10174470(void) 11 1 +1017447b Unwind@1017447b undefined Unwind@1017447b(void) 9 0 +101744a0 Unwind@101744a0 undefined Unwind@101744a0(void) 8 1 +101744a8 Unwind@101744a8 undefined Unwind@101744a8(void) 8 1 +101744b0 Unwind@101744b0 undefined Unwind@101744b0(void) 8 1 +101744b8 Unwind@101744b8 undefined Unwind@101744b8(void) 8 1 +101744c0 Unwind@101744c0 undefined Unwind@101744c0(void) 8 1 +101744c8 Unwind@101744c8 undefined Unwind@101744c8(void) 8 1 +101744f0 Unwind@101744f0 undefined Unwind@101744f0(void) 8 1 +101744f8 Unwind@101744f8 undefined Unwind@101744f8(void) 8 1 +10174500 Unwind@10174500 undefined Unwind@10174500(void) 8 1 +10174508 Unwind@10174508 undefined Unwind@10174508(void) 11 1 +10174513 Unwind@10174513 undefined Unwind@10174513(void) 11 1 +1017451e Unwind@1017451e undefined Unwind@1017451e(void) 8 1 +10174526 Unwind@10174526 undefined Unwind@10174526(void) 8 1 +1017452e Unwind@1017452e undefined Unwind@1017452e(void) 8 1 +10174536 Unwind@10174536 undefined Unwind@10174536(void) 11 1 +10174541 Unwind@10174541 undefined Unwind@10174541(void) 11 1 +1017454c Unwind@1017454c undefined Unwind@1017454c(void) 11 1 +10174557 Unwind@10174557 undefined Unwind@10174557(void) 11 1 +10174562 Unwind@10174562 undefined Unwind@10174562(void) 8 1 +1017456a Unwind@1017456a undefined Unwind@1017456a(void) 11 1 +10174575 Unwind@10174575 undefined Unwind@10174575(void) 11 1 +10174580 Unwind@10174580 undefined Unwind@10174580(void) 11 1 +1017458b Unwind@1017458b undefined Unwind@1017458b(void) 11 1 +10174596 Unwind@10174596 undefined Unwind@10174596(void) 11 1 +101745a1 Unwind@101745a1 undefined Unwind@101745a1(void) 11 1 +101745ac Unwind@101745ac undefined Unwind@101745ac(void) 11 1 +101745b7 Unwind@101745b7 undefined Unwind@101745b7(void) 11 1 +101745f0 Unwind@101745f0 undefined Unwind@101745f0(void) 17 1 +10174601 Unwind@10174601 undefined Unwind@10174601(void) 8 1 +10174609 Unwind@10174609 undefined Unwind@10174609(void) 8 1 +10174611 Unwind@10174611 undefined Unwind@10174611(void) 8 1 +10174619 Unwind@10174619 undefined Unwind@10174619(void) 11 1 +10174640 Unwind@10174640 undefined Unwind@10174640(void) 17 1 +10174651 Unwind@10174651 undefined Unwind@10174651(void) 8 1 +10174659 Unwind@10174659 undefined Unwind@10174659(void) 8 1 +10174661 Unwind@10174661 undefined Unwind@10174661(void) 8 1 +10174669 Unwind@10174669 undefined Unwind@10174669(void) 11 1 +10174690 Unwind@10174690 undefined Unwind@10174690(void) 9 0 +101746c0 Unwind@101746c0 undefined Unwind@101746c0(void) 8 1 +101746c8 Unwind@101746c8 undefined Unwind@101746c8(void) 8 1 +101746d0 Unwind@101746d0 undefined Unwind@101746d0(void) 8 1 +101746d8 Unwind@101746d8 undefined Unwind@101746d8(void) 11 1 +101746e3 Unwind@101746e3 undefined Unwind@101746e3(void) 11 1 +101746ee Unwind@101746ee undefined Unwind@101746ee(void) 8 1 +101746f6 Unwind@101746f6 undefined Unwind@101746f6(void) 8 1 +101746fe Unwind@101746fe undefined Unwind@101746fe(void) 8 1 +10174706 Unwind@10174706 undefined Unwind@10174706(void) 11 1 +10174711 Unwind@10174711 undefined Unwind@10174711(void) 11 1 +10174750 Unwind@10174750 undefined Unwind@10174750(void) 14 0 +1017475e Unwind@1017475e undefined Unwind@1017475e(void) 14 0 +101747a0 Unwind@101747a0 undefined Unwind@101747a0(void) 14 0 +101747ae Unwind@101747ae undefined Unwind@101747ae(void) 14 0 +101747bc Unwind@101747bc undefined Unwind@101747bc(void) 14 0 +10174800 Unwind@10174800 undefined Unwind@10174800(void) 8 1 +10174808 Unwind@10174808 undefined Unwind@10174808(void) 8 1 +10174830 Unwind@10174830 undefined Unwind@10174830(void) 8 1 +10174838 Unwind@10174838 undefined Unwind@10174838(void) 8 1 +10174840 Unwind@10174840 undefined Unwind@10174840(void) 8 1 +10174848 Unwind@10174848 undefined Unwind@10174848(void) 11 1 +10174853 Unwind@10174853 undefined Unwind@10174853(void) 11 1 +1017485e Unwind@1017485e undefined Unwind@1017485e(void) 8 1 +10174866 Unwind@10174866 undefined Unwind@10174866(void) 14 0 +101748a0 Unwind@101748a0 undefined Unwind@101748a0(void) 11 1 +101748ab Unwind@101748ab undefined Unwind@101748ab(void) 11 1 +101748b6 Unwind@101748b6 undefined Unwind@101748b6(void) 11 1 +101748c1 Unwind@101748c1 undefined Unwind@101748c1(void) 11 1 +10174900 Unwind@10174900 undefined Unwind@10174900(void) 8 1 +10174908 Unwind@10174908 undefined Unwind@10174908(void) 8 1 +10174910 Unwind@10174910 undefined Unwind@10174910(void) 8 1 +10174918 Unwind@10174918 undefined Unwind@10174918(void) 11 1 +10174923 Unwind@10174923 undefined Unwind@10174923(void) 11 1 +1017492e Unwind@1017492e undefined Unwind@1017492e(void) 8 1 +10174936 Unwind@10174936 undefined Unwind@10174936(void) 8 1 +1017493e Unwind@1017493e undefined Unwind@1017493e(void) 8 1 +10174946 Unwind@10174946 undefined Unwind@10174946(void) 11 1 +10174951 Unwind@10174951 undefined Unwind@10174951(void) 11 1 +10174990 Unwind@10174990 undefined Unwind@10174990(void) 11 1 +1017499b Unwind@1017499b undefined Unwind@1017499b(void) 11 1 +101749a6 Unwind@101749a6 undefined Unwind@101749a6(void) 11 1 +101749b1 Unwind@101749b1 undefined Unwind@101749b1(void) 14 0 +101749bf Unwind@101749bf undefined Unwind@101749bf(void) 11 1 +101749ca Unwind@101749ca undefined Unwind@101749ca(void) 11 1 +101749d5 Unwind@101749d5 undefined Unwind@101749d5(void) 11 1 +101749e0 Unwind@101749e0 undefined Unwind@101749e0(void) 11 1 +101749eb Unwind@101749eb undefined Unwind@101749eb(void) 11 1 +101749f6 Unwind@101749f6 undefined Unwind@101749f6(void) 11 1 +10174a01 Unwind@10174a01 undefined Unwind@10174a01(void) 11 1 +10174a0c Unwind@10174a0c undefined Unwind@10174a0c(void) 11 1 +10174a17 Unwind@10174a17 undefined Unwind@10174a17(void) 11 1 +10174a22 Unwind@10174a22 undefined Unwind@10174a22(void) 11 1 +10174a2d Unwind@10174a2d undefined Unwind@10174a2d(void) 11 1 +10174a38 Unwind@10174a38 undefined Unwind@10174a38(void) 11 1 +10174a43 Unwind@10174a43 undefined Unwind@10174a43(void) 11 1 +10174a4e Unwind@10174a4e undefined Unwind@10174a4e(void) 8 1 +10174a56 Unwind@10174a56 undefined Unwind@10174a56(void) 11 1 +10174a61 Unwind@10174a61 undefined Unwind@10174a61(void) 11 1 +10174aa0 Unwind@10174aa0 undefined Unwind@10174aa0(void) 8 1 +10174aa8 Unwind@10174aa8 undefined Unwind@10174aa8(void) 8 1 +10174ab0 Unwind@10174ab0 undefined Unwind@10174ab0(void) 8 1 +10174ab8 Unwind@10174ab8 undefined Unwind@10174ab8(void) 8 1 +10174ac0 Unwind@10174ac0 undefined Unwind@10174ac0(void) 8 1 +10174ac8 Unwind@10174ac8 undefined Unwind@10174ac8(void) 8 1 +10174ad0 Unwind@10174ad0 undefined Unwind@10174ad0(void) 9 0 +10174b00 Unwind@10174b00 undefined Unwind@10174b00(void) 9 0 +10174b30 Unwind@10174b30 undefined Unwind@10174b30(void) 9 0 +10174b60 Unwind@10174b60 undefined Unwind@10174b60(void) 9 0 +10174b90 Unwind@10174b90 undefined Unwind@10174b90(void) 9 0 +10174bc0 Unwind@10174bc0 undefined Unwind@10174bc0(void) 9 0 +10174bf0 Unwind@10174bf0 undefined Unwind@10174bf0(void) 9 0 +10174c20 Unwind@10174c20 undefined Unwind@10174c20(void) 9 0 +10174c50 Unwind@10174c50 undefined Unwind@10174c50(void) 17 1 +10174c80 Unwind@10174c80 undefined Unwind@10174c80(void) 17 1 +10174cb0 Unwind@10174cb0 undefined Unwind@10174cb0(void) 17 1 +10174ce0 Unwind@10174ce0 undefined Unwind@10174ce0(void) 17 1 +10174d10 Unwind@10174d10 undefined Unwind@10174d10(void) 17 1 +10174d40 Unwind@10174d40 undefined Unwind@10174d40(void) 17 1 +10174d70 Unwind@10174d70 undefined Unwind@10174d70(void) 8 1 +10174da0 Unwind@10174da0 undefined Unwind@10174da0(void) 8 1 +10174dd0 Unwind@10174dd0 undefined Unwind@10174dd0(void) 17 1 +10174e00 Unwind@10174e00 undefined Unwind@10174e00(void) 9 0 +10174e30 Unwind@10174e30 undefined Unwind@10174e30(void) 9 0 +10174e60 Unwind@10174e60 undefined Unwind@10174e60(void) 9 0 +10174e90 Unwind@10174e90 undefined Unwind@10174e90(void) 9 0 +10174ec0 Unwind@10174ec0 undefined Unwind@10174ec0(void) 17 1 +10174ef0 Unwind@10174ef0 undefined Unwind@10174ef0(void) 17 1 +10174f20 Unwind@10174f20 undefined Unwind@10174f20(void) 17 1 +10174f50 Unwind@10174f50 undefined Unwind@10174f50(void) 17 1 +10174f80 Unwind@10174f80 undefined Unwind@10174f80(void) 17 1 +10174fb0 Unwind@10174fb0 undefined Unwind@10174fb0(void) 8 1 +10174fb8 Unwind@10174fb8 undefined Unwind@10174fb8(void) 8 1 +10174fe0 Unwind@10174fe0 undefined Unwind@10174fe0(void) 11 1 +10174feb Unwind@10174feb undefined Unwind@10174feb(void) 11 1 +10175020 Unwind@10175020 undefined Unwind@10175020(void) 8 1 +10175028 Unwind@10175028 undefined Unwind@10175028(void) 8 1 +10175050 Unwind@10175050 undefined Unwind@10175050(void) 9 0 +10175080 Unwind@10175080 undefined Unwind@10175080(void) 9 0 +101750b0 Unwind@101750b0 undefined Unwind@101750b0(void) 9 0 +101750e0 Unwind@101750e0 undefined Unwind@101750e0(void) 9 0 +10175110 Unwind@10175110 undefined Unwind@10175110(void) 9 0 +10175140 Unwind@10175140 undefined Unwind@10175140(void) 9 0 +10175170 Unwind@10175170 undefined Unwind@10175170(void) 9 0 +101751a0 Unwind@101751a0 undefined Unwind@101751a0(void) 17 1 +101751d0 Unwind@101751d0 undefined Unwind@101751d0(void) 9 0 +10175200 Unwind@10175200 undefined Unwind@10175200(void) 9 0 +10175230 Unwind@10175230 undefined Unwind@10175230(void) 9 0 +10175260 Unwind@10175260 undefined Unwind@10175260(void) 9 0 +10175290 Unwind@10175290 undefined Unwind@10175290(void) 9 0 +101752c0 Unwind@101752c0 undefined Unwind@101752c0(void) 8 1 +101752c8 Unwind@101752c8 undefined Unwind@101752c8(void) 9 0 +101752f0 Unwind@101752f0 undefined Unwind@101752f0(void) 8 1 +101752f8 Unwind@101752f8 undefined Unwind@101752f8(void) 9 0 +10175320 Unwind@10175320 undefined Unwind@10175320(void) 8 1 +10175328 Unwind@10175328 undefined Unwind@10175328(void) 9 0 +10175350 Unwind@10175350 undefined Unwind@10175350(void) 8 1 +10175358 Unwind@10175358 undefined Unwind@10175358(void) 9 0 +10175380 Unwind@10175380 undefined Unwind@10175380(void) 8 1 +10175388 Unwind@10175388 undefined Unwind@10175388(void) 9 0 +101753b0 Unwind@101753b0 undefined Unwind@101753b0(void) 8 1 +101753b8 Unwind@101753b8 undefined Unwind@101753b8(void) 9 0 +101753e0 Unwind@101753e0 undefined Unwind@101753e0(void) 8 1 +101753e8 Unwind@101753e8 undefined Unwind@101753e8(void) 9 0 +10175410 Unwind@10175410 undefined Unwind@10175410(void) 9 0 +10175440 Unwind@10175440 undefined Unwind@10175440(void) 17 1 +10175470 Unwind@10175470 undefined Unwind@10175470(void) 17 1 +101754a0 Unwind@101754a0 undefined Unwind@101754a0(void) 8 1 +101754d0 Unwind@101754d0 undefined Unwind@101754d0(void) 8 1 +10175500 Unwind@10175500 undefined Unwind@10175500(void) 9 0 +10175530 Unwind@10175530 undefined Unwind@10175530(void) 8 1 +10175538 Unwind@10175538 undefined Unwind@10175538(void) 9 0 +10175560 Unwind@10175560 undefined Unwind@10175560(void) 25 1 +101755a0 Unwind@101755a0 undefined Unwind@101755a0(void) 34 1 +101755f0 Unwind@101755f0 undefined Unwind@101755f0(void) 8 1 +101755f8 Unwind@101755f8 undefined Unwind@101755f8(void) 8 1 +10175630 Unwind@10175630 undefined Unwind@10175630(void) 8 1 +10175660 Unwind@10175660 undefined Unwind@10175660(void) 11 1 +1017566b Unwind@1017566b undefined Unwind@1017566b(void) 14 0 +10175679 Unwind@10175679 undefined Unwind@10175679(void) 14 0 +10175687 Unwind@10175687 undefined Unwind@10175687(void) 14 0 +10175695 Unwind@10175695 undefined Unwind@10175695(void) 14 0 +101756a3 Unwind@101756a3 undefined Unwind@101756a3(void) 8 1 +101756ab Unwind@101756ab undefined Unwind@101756ab(void) 14 0 +101756b9 Unwind@101756b9 undefined Unwind@101756b9(void) 8 1 +101756c1 Unwind@101756c1 undefined Unwind@101756c1(void) 14 0 +101756cf Unwind@101756cf undefined Unwind@101756cf(void) 14 0 +101756dd Unwind@101756dd undefined Unwind@101756dd(void) 11 1 +101756e8 Unwind@101756e8 undefined Unwind@101756e8(void) 11 1 +101756f3 Unwind@101756f3 undefined Unwind@101756f3(void) 14 0 +10175701 Unwind@10175701 undefined Unwind@10175701(void) 14 0 +1017570f Unwind@1017570f undefined Unwind@1017570f(void) 8 1 +10175717 Unwind@10175717 undefined Unwind@10175717(void) 11 1 +10175722 Unwind@10175722 undefined Unwind@10175722(void) 14 0 +10175730 Unwind@10175730 undefined Unwind@10175730(void) 8 1 +10175738 Unwind@10175738 undefined Unwind@10175738(void) 14 0 +10175770 Unwind@10175770 undefined Unwind@10175770(void) 8 1 +10175778 Unwind@10175778 undefined Unwind@10175778(void) 8 1 +10175780 Unwind@10175780 undefined Unwind@10175780(void) 14 0 +1017578e Unwind@1017578e undefined Unwind@1017578e(void) 14 0 +1017579c Unwind@1017579c undefined Unwind@1017579c(void) 8 1 +101757d0 Unwind@101757d0 undefined Unwind@101757d0(void) 8 1 +101757d8 Unwind@101757d8 undefined Unwind@101757d8(void) 8 1 +101757e0 Unwind@101757e0 undefined Unwind@101757e0(void) 9 0 +10175810 Unwind@10175810 undefined Unwind@10175810(void) 8 1 +10175818 Unwind@10175818 undefined Unwind@10175818(void) 8 1 +10175820 Unwind@10175820 undefined Unwind@10175820(void) 9 0 +10175850 Unwind@10175850 undefined Unwind@10175850(void) 8 1 +10175858 Unwind@10175858 undefined Unwind@10175858(void) 8 1 +10175860 Unwind@10175860 undefined Unwind@10175860(void) 9 0 +10175890 Unwind@10175890 undefined Unwind@10175890(void) 8 1 +10175898 Unwind@10175898 undefined Unwind@10175898(void) 8 1 +101758a0 Unwind@101758a0 undefined Unwind@101758a0(void) 9 0 +101758d0 Unwind@101758d0 undefined Unwind@101758d0(void) 8 1 +101758d8 Unwind@101758d8 undefined Unwind@101758d8(void) 8 1 +101758e0 Unwind@101758e0 undefined Unwind@101758e0(void) 8 1 +101758e8 Unwind@101758e8 undefined Unwind@101758e8(void) 8 1 +10175910 Unwind@10175910 undefined Unwind@10175910(void) 11 1 +1017591b Unwind@1017591b undefined Unwind@1017591b(void) 11 1 +10175926 Unwind@10175926 undefined Unwind@10175926(void) 11 1 +10175931 Unwind@10175931 undefined Unwind@10175931(void) 8 1 +10175939 Unwind@10175939 undefined Unwind@10175939(void) 11 1 +10175944 Unwind@10175944 undefined Unwind@10175944(void) 11 1 +1017594f Unwind@1017594f undefined Unwind@1017594f(void) 8 1 +10175957 Unwind@10175957 undefined Unwind@10175957(void) 11 1 +10175962 Unwind@10175962 undefined Unwind@10175962(void) 8 1 +1017596a Unwind@1017596a undefined Unwind@1017596a(void) 11 1 +10175975 Unwind@10175975 undefined Unwind@10175975(void) 8 1 +1017597d Unwind@1017597d undefined Unwind@1017597d(void) 11 1 +10175988 Unwind@10175988 undefined Unwind@10175988(void) 8 1 +10175990 Unwind@10175990 undefined Unwind@10175990(void) 8 1 +10175998 Unwind@10175998 undefined Unwind@10175998(void) 11 1 +101759a3 Unwind@101759a3 undefined Unwind@101759a3(void) 8 1 +101759ab Unwind@101759ab undefined Unwind@101759ab(void) 8 1 +101759b3 Unwind@101759b3 undefined Unwind@101759b3(void) 11 1 +101759be Unwind@101759be undefined Unwind@101759be(void) 8 1 +101759c6 Unwind@101759c6 undefined Unwind@101759c6(void) 8 1 +101759ce Unwind@101759ce undefined Unwind@101759ce(void) 14 1 +101759dc Unwind@101759dc undefined Unwind@101759dc(void) 8 1 +101759e4 Unwind@101759e4 undefined Unwind@101759e4(void) 8 1 +101759ec Unwind@101759ec undefined Unwind@101759ec(void) 14 1 +101759fa Unwind@101759fa undefined Unwind@101759fa(void) 8 1 +10175a02 Unwind@10175a02 undefined Unwind@10175a02(void) 8 1 +10175a0a Unwind@10175a0a undefined Unwind@10175a0a(void) 14 1 +10175a18 Unwind@10175a18 undefined Unwind@10175a18(void) 8 1 +10175a20 Unwind@10175a20 undefined Unwind@10175a20(void) 8 1 +10175a28 Unwind@10175a28 undefined Unwind@10175a28(void) 14 1 +10175a36 Unwind@10175a36 undefined Unwind@10175a36(void) 8 1 +10175a3e Unwind@10175a3e undefined Unwind@10175a3e(void) 14 1 +10175a4c Unwind@10175a4c undefined Unwind@10175a4c(void) 8 1 +10175a54 Unwind@10175a54 undefined Unwind@10175a54(void) 11 1 +10175a5f Unwind@10175a5f undefined Unwind@10175a5f(void) 14 1 +10175a6d Unwind@10175a6d undefined Unwind@10175a6d(void) 9 0 +10175a76 Unwind@10175a76 undefined Unwind@10175a76(void) 9 0 +10175a7f Unwind@10175a7f undefined Unwind@10175a7f(void) 9 0 +10175a88 Unwind@10175a88 undefined Unwind@10175a88(void) 9 0 +10175a91 Unwind@10175a91 undefined Unwind@10175a91(void) 9 0 +10175a9a Unwind@10175a9a undefined Unwind@10175a9a(void) 9 0 +10175aa3 Unwind@10175aa3 undefined Unwind@10175aa3(void) 9 0 +10175aac Unwind@10175aac undefined Unwind@10175aac(void) 9 0 +10175ab5 Unwind@10175ab5 undefined Unwind@10175ab5(void) 9 0 +10175abe Unwind@10175abe undefined Unwind@10175abe(void) 9 0 +10175af0 Unwind@10175af0 undefined Unwind@10175af0(void) 11 1 +10175afb Unwind@10175afb undefined Unwind@10175afb(void) 11 1 +10175b06 Unwind@10175b06 undefined Unwind@10175b06(void) 11 1 +10175b11 Unwind@10175b11 undefined Unwind@10175b11(void) 11 1 +10175b1c Unwind@10175b1c undefined Unwind@10175b1c(void) 11 1 +10175b27 Unwind@10175b27 undefined Unwind@10175b27(void) 11 1 +10175b32 Unwind@10175b32 undefined Unwind@10175b32(void) 11 1 +10175b3d Unwind@10175b3d undefined Unwind@10175b3d(void) 11 1 +10175b48 Unwind@10175b48 undefined Unwind@10175b48(void) 11 1 +10175b53 Unwind@10175b53 undefined Unwind@10175b53(void) 11 1 +10175b5e Unwind@10175b5e undefined Unwind@10175b5e(void) 11 1 +10175b69 Unwind@10175b69 undefined Unwind@10175b69(void) 11 1 +10175b74 Unwind@10175b74 undefined Unwind@10175b74(void) 11 1 +10175b7f Unwind@10175b7f undefined Unwind@10175b7f(void) 14 0 +10175b8d Unwind@10175b8d undefined Unwind@10175b8d(void) 11 1 +10175b98 Unwind@10175b98 undefined Unwind@10175b98(void) 14 0 +10175ba6 Unwind@10175ba6 undefined Unwind@10175ba6(void) 11 1 +10175bb1 Unwind@10175bb1 undefined Unwind@10175bb1(void) 14 0 +10175bbf Unwind@10175bbf undefined Unwind@10175bbf(void) 14 0 +10175bcd Unwind@10175bcd undefined Unwind@10175bcd(void) 14 0 +10175bdb Unwind@10175bdb undefined Unwind@10175bdb(void) 11 1 +10175be6 Unwind@10175be6 undefined Unwind@10175be6(void) 14 0 +10175bf4 Unwind@10175bf4 undefined Unwind@10175bf4(void) 8 1 +10175bfc Unwind@10175bfc undefined Unwind@10175bfc(void) 8 1 +10175c04 Unwind@10175c04 undefined Unwind@10175c04(void) 8 1 +10175c0c Unwind@10175c0c undefined Unwind@10175c0c(void) 8 1 +10175c14 Unwind@10175c14 undefined Unwind@10175c14(void) 11 1 +10175c1f Unwind@10175c1f undefined Unwind@10175c1f(void) 11 1 +10175c2a Unwind@10175c2a undefined Unwind@10175c2a(void) 11 1 +10175c35 Unwind@10175c35 undefined Unwind@10175c35(void) 11 1 +10175c40 Unwind@10175c40 undefined Unwind@10175c40(void) 11 1 +10175c4b Unwind@10175c4b undefined Unwind@10175c4b(void) 14 0 +10175c59 Unwind@10175c59 undefined Unwind@10175c59(void) 14 0 +10175c67 Unwind@10175c67 undefined Unwind@10175c67(void) 11 1 +10175c72 Unwind@10175c72 undefined Unwind@10175c72(void) 11 1 +10175c7d Unwind@10175c7d undefined Unwind@10175c7d(void) 11 1 +10175c88 Unwind@10175c88 undefined Unwind@10175c88(void) 11 1 +10175c93 Unwind@10175c93 undefined Unwind@10175c93(void) 11 1 +10175c9e Unwind@10175c9e undefined Unwind@10175c9e(void) 11 1 +10175ca9 Unwind@10175ca9 undefined Unwind@10175ca9(void) 11 1 +10175cb4 Unwind@10175cb4 undefined Unwind@10175cb4(void) 12 0 +10175cc0 Unwind@10175cc0 undefined Unwind@10175cc0(void) 12 0 +10175ccc Unwind@10175ccc undefined Unwind@10175ccc(void) 12 0 +10175d00 Unwind@10175d00 undefined Unwind@10175d00(void) 8 1 +10175d08 Unwind@10175d08 undefined Unwind@10175d08(void) 8 1 +10175d10 Unwind@10175d10 undefined Unwind@10175d10(void) 11 1 +10175d1b Unwind@10175d1b undefined Unwind@10175d1b(void) 8 1 +10175d23 Unwind@10175d23 undefined Unwind@10175d23(void) 8 1 +10175d50 Unwind@10175d50 undefined Unwind@10175d50(void) 14 0 +10175d5e Unwind@10175d5e undefined Unwind@10175d5e(void) 14 0 +10175d6c Unwind@10175d6c undefined Unwind@10175d6c(void) 8 1 +10175d74 Unwind@10175d74 undefined Unwind@10175d74(void) 8 1 +10175d7c Unwind@10175d7c undefined Unwind@10175d7c(void) 8 1 +10175db0 Unwind@10175db0 undefined Unwind@10175db0(void) 8 1 +10175db8 Unwind@10175db8 undefined Unwind@10175db8(void) 8 1 +10175dc0 Unwind@10175dc0 undefined Unwind@10175dc0(void) 8 1 +10175df0 Unwind@10175df0 undefined Unwind@10175df0(void) 8 1 +10175df8 Unwind@10175df8 undefined Unwind@10175df8(void) 14 0 +10175e06 Unwind@10175e06 undefined Unwind@10175e06(void) 14 0 +10175e14 Unwind@10175e14 undefined Unwind@10175e14(void) 14 0 +10175e40 Unwind@10175e40 undefined Unwind@10175e40(void) 8 1 +10175e70 Unwind@10175e70 undefined Unwind@10175e70(void) 8 1 +10175ea0 Unwind@10175ea0 undefined Unwind@10175ea0(void) 8 1 +10175ed0 Unwind@10175ed0 undefined Unwind@10175ed0(void) 9 0 +10175f00 Unwind@10175f00 undefined Unwind@10175f00(void) 17 1 +10175f30 Unwind@10175f30 undefined Unwind@10175f30(void) 17 1 +10175f60 Unwind@10175f60 undefined Unwind@10175f60(void) 8 1 +10175f90 Unwind@10175f90 undefined Unwind@10175f90(void) 8 1 +10175f98 Unwind@10175f98 undefined Unwind@10175f98(void) 11 1 +10175fa3 Unwind@10175fa3 undefined Unwind@10175fa3(void) 8 1 +10175fd0 Unwind@10175fd0 undefined Unwind@10175fd0(void) 8 1 +10176000 Unwind@10176000 undefined Unwind@10176000(void) 8 1 +10176008 Unwind@10176008 undefined Unwind@10176008(void) 8 1 +10176030 Unwind@10176030 undefined Unwind@10176030(void) 9 0 +10176060 Unwind@10176060 undefined Unwind@10176060(void) 9 0 +10176090 Unwind@10176090 undefined Unwind@10176090(void) 17 1 +101760c0 Unwind@101760c0 undefined Unwind@101760c0(void) 17 1 +101760f0 Unwind@101760f0 undefined Unwind@101760f0(void) 11 1 +10176120 Unwind@10176120 undefined Unwind@10176120(void) 8 1 +10176128 Unwind@10176128 undefined Unwind@10176128(void) 8 1 +10176130 Unwind@10176130 undefined Unwind@10176130(void) 11 1 +10176160 Unwind@10176160 undefined Unwind@10176160(void) 8 1 +10176168 Unwind@10176168 undefined Unwind@10176168(void) 11 1 +10176173 Unwind@10176173 undefined Unwind@10176173(void) 8 1 +101761a0 Unwind@101761a0 undefined Unwind@101761a0(void) 9 0 +101761d0 Unwind@101761d0 undefined Unwind@101761d0(void) 9 0 +10176200 Unwind@10176200 undefined Unwind@10176200(void) 9 0 +10176230 Unwind@10176230 undefined Unwind@10176230(void) 9 0 +10176260 Unwind@10176260 undefined Unwind@10176260(void) 9 0 +10176290 Unwind@10176290 undefined Unwind@10176290(void) 17 1 +101762c0 Unwind@101762c0 undefined Unwind@101762c0(void) 8 1 +101762c8 Unwind@101762c8 undefined Unwind@101762c8(void) 8 1 +101762d0 Unwind@101762d0 undefined Unwind@101762d0(void) 8 1 +101762d8 Unwind@101762d8 undefined Unwind@101762d8(void) 8 1 +101762e0 Unwind@101762e0 undefined Unwind@101762e0(void) 8 1 +10176310 Unwind@10176310 undefined Unwind@10176310(void) 8 1 +10176318 Unwind@10176318 undefined Unwind@10176318(void) 8 1 +10176320 Unwind@10176320 undefined Unwind@10176320(void) 8 1 +10176328 Unwind@10176328 undefined Unwind@10176328(void) 8 1 +10176330 Unwind@10176330 undefined Unwind@10176330(void) 8 1 +10176360 Unwind@10176360 undefined Unwind@10176360(void) 8 1 +10176368 Unwind@10176368 undefined Unwind@10176368(void) 11 1 +10176390 Unwind@10176390 undefined Unwind@10176390(void) 8 1 +10176398 Unwind@10176398 undefined Unwind@10176398(void) 9 0 +101763c0 Unwind@101763c0 undefined Unwind@101763c0(void) 9 0 +101763f0 Unwind@101763f0 undefined Unwind@101763f0(void) 17 1 +10176420 Unwind@10176420 undefined Unwind@10176420(void) 8 1 +10176428 Unwind@10176428 undefined Unwind@10176428(void) 8 1 +10176430 Unwind@10176430 undefined Unwind@10176430(void) 11 1 +10176460 Unwind@10176460 undefined Unwind@10176460(void) 9 0 +101764b0 Unwind@101764b0 undefined Unwind@101764b0(void) 8 1 +101764e0 Unwind@101764e0 undefined Unwind@101764e0(void) 8 1 +101764e8 Unwind@101764e8 undefined Unwind@101764e8(void) 9 0 +10176510 Unwind@10176510 undefined Unwind@10176510(void) 25 1 +10176550 Unwind@10176550 undefined Unwind@10176550(void) 8 1 +10176558 Unwind@10176558 undefined Unwind@10176558(void) 8 1 +10176560 Unwind@10176560 undefined Unwind@10176560(void) 8 1 +10176590 Unwind@10176590 undefined Unwind@10176590(void) 8 1 +101765c0 Unwind@101765c0 undefined Unwind@101765c0(void) 8 1 +101765c8 Unwind@101765c8 undefined Unwind@101765c8(void) 8 1 +101765d0 Unwind@101765d0 undefined Unwind@101765d0(void) 8 1 +101765d8 Unwind@101765d8 undefined Unwind@101765d8(void) 8 1 +101765e0 Unwind@101765e0 undefined Unwind@101765e0(void) 8 1 +101765e8 Unwind@101765e8 undefined Unwind@101765e8(void) 11 1 +101765f3 Unwind@101765f3 undefined Unwind@101765f3(void) 8 1 +10176620 Unwind@10176620 undefined Unwind@10176620(void) 8 1 +10176628 Unwind@10176628 undefined Unwind@10176628(void) 8 1 +10176630 Unwind@10176630 undefined Unwind@10176630(void) 8 1 +10176638 Unwind@10176638 undefined Unwind@10176638(void) 8 1 +10176640 Unwind@10176640 undefined Unwind@10176640(void) 8 1 +10176648 Unwind@10176648 undefined Unwind@10176648(void) 8 1 +10176650 Unwind@10176650 undefined Unwind@10176650(void) 8 1 +10176658 Unwind@10176658 undefined Unwind@10176658(void) 8 1 +10176660 Unwind@10176660 undefined Unwind@10176660(void) 8 1 +10176668 Unwind@10176668 undefined Unwind@10176668(void) 8 1 +10176670 Unwind@10176670 undefined Unwind@10176670(void) 8 1 +10176678 Unwind@10176678 undefined Unwind@10176678(void) 8 1 +10176680 Unwind@10176680 undefined Unwind@10176680(void) 8 1 +10176688 Unwind@10176688 undefined Unwind@10176688(void) 8 1 +101766c0 Unwind@101766c0 undefined Unwind@101766c0(void) 8 1 +101766f0 Unwind@101766f0 undefined Unwind@101766f0(void) 8 1 +10176720 Unwind@10176720 undefined Unwind@10176720(void) 11 1 +1017672b Unwind@1017672b undefined Unwind@1017672b(void) 11 1 +10176736 Unwind@10176736 undefined Unwind@10176736(void) 11 1 +10176741 Unwind@10176741 undefined Unwind@10176741(void) 11 1 +1017674c Unwind@1017674c undefined Unwind@1017674c(void) 11 1 +10176757 Unwind@10176757 undefined Unwind@10176757(void) 11 1 +10176790 Unwind@10176790 undefined Unwind@10176790(void) 14 1 +101767d0 Unwind@101767d0 undefined Unwind@101767d0(void) 8 1 +101767d8 Unwind@101767d8 undefined Unwind@101767d8(void) 11 1 +10176800 Unwind@10176800 undefined Unwind@10176800(void) 8 1 +10176830 Unwind@10176830 undefined Unwind@10176830(void) 11 1 +1017683b Unwind@1017683b undefined Unwind@1017683b(void) 8 1 +10176843 Unwind@10176843 undefined Unwind@10176843(void) 8 1 +10176870 Unwind@10176870 undefined Unwind@10176870(void) 8 1 +10176878 Unwind@10176878 undefined Unwind@10176878(void) 8 1 +10176880 Unwind@10176880 undefined Unwind@10176880(void) 9 0 +101768b0 Unwind@101768b0 undefined Unwind@101768b0(void) 8 1 +101768b8 Unwind@101768b8 undefined Unwind@101768b8(void) 11 1 +101768e0 Unwind@101768e0 undefined Unwind@101768e0(void) 8 1 +101768e8 Unwind@101768e8 undefined Unwind@101768e8(void) 11 1 +10176910 Unwind@10176910 undefined Unwind@10176910(void) 8 1 +10176918 Unwind@10176918 undefined Unwind@10176918(void) 11 1 +10176940 Unwind@10176940 undefined Unwind@10176940(void) 8 1 +10176948 Unwind@10176948 undefined Unwind@10176948(void) 11 1 +10176953 Unwind@10176953 undefined Unwind@10176953(void) 8 1 +1017695b Unwind@1017695b undefined Unwind@1017695b(void) 8 1 +10176980 Unwind@10176980 undefined Unwind@10176980(void) 11 1 +1017698b Unwind@1017698b undefined Unwind@1017698b(void) 11 1 +101769c0 Unwind@101769c0 undefined Unwind@101769c0(void) 8 1 +101769c8 Unwind@101769c8 undefined Unwind@101769c8(void) 8 1 +101769d0 Unwind@101769d0 undefined Unwind@101769d0(void) 8 1 +101769d8 Unwind@101769d8 undefined Unwind@101769d8(void) 8 1 +10176a10 Unwind@10176a10 undefined Unwind@10176a10(void) 8 1 +10176a18 Unwind@10176a18 undefined Unwind@10176a18(void) 11 1 +10176a23 Unwind@10176a23 undefined Unwind@10176a23(void) 8 1 +10176a50 Unwind@10176a50 undefined Unwind@10176a50(void) 8 1 +10176a58 Unwind@10176a58 undefined Unwind@10176a58(void) 11 1 +10176a63 Unwind@10176a63 undefined Unwind@10176a63(void) 8 1 +10176a90 Unwind@10176a90 undefined Unwind@10176a90(void) 8 1 +10176a98 Unwind@10176a98 undefined Unwind@10176a98(void) 11 1 +10176aa3 Unwind@10176aa3 undefined Unwind@10176aa3(void) 14 1 +10176ab1 Unwind@10176ab1 undefined Unwind@10176ab1(void) 14 1 +10176abf Unwind@10176abf undefined Unwind@10176abf(void) 14 1 +10176acd Unwind@10176acd undefined Unwind@10176acd(void) 14 1 +10176adb Unwind@10176adb undefined Unwind@10176adb(void) 14 1 +10176ae9 Unwind@10176ae9 undefined Unwind@10176ae9(void) 14 1 +10176af7 Unwind@10176af7 undefined Unwind@10176af7(void) 14 1 +10176b05 Unwind@10176b05 undefined Unwind@10176b05(void) 14 1 +10176b13 Unwind@10176b13 undefined Unwind@10176b13(void) 8 1 +10176b1b Unwind@10176b1b undefined Unwind@10176b1b(void) 14 1 +10176b29 Unwind@10176b29 undefined Unwind@10176b29(void) 14 1 +10176b37 Unwind@10176b37 undefined Unwind@10176b37(void) 8 1 +10176b3f Unwind@10176b3f undefined Unwind@10176b3f(void) 8 1 +10176b47 Unwind@10176b47 undefined Unwind@10176b47(void) 8 1 +10176b4f Unwind@10176b4f undefined Unwind@10176b4f(void) 8 1 +10176b57 Unwind@10176b57 undefined Unwind@10176b57(void) 8 1 +10176b5f Unwind@10176b5f undefined Unwind@10176b5f(void) 8 1 +10176b67 Unwind@10176b67 undefined Unwind@10176b67(void) 8 1 +10176ba0 Unwind@10176ba0 undefined Unwind@10176ba0(void) 25 1 +10176be0 Unwind@10176be0 undefined Unwind@10176be0(void) 8 1 +10176c10 Unwind@10176c10 undefined Unwind@10176c10(void) 8 1 +10176c18 Unwind@10176c18 undefined Unwind@10176c18(void) 11 1 +10176c23 Unwind@10176c23 undefined Unwind@10176c23(void) 8 1 +10176c2b Unwind@10176c2b undefined Unwind@10176c2b(void) 8 1 +10176c33 Unwind@10176c33 undefined Unwind@10176c33(void) 11 1 +10176c70 Unwind@10176c70 undefined Unwind@10176c70(void) 8 1 +10176c78 Unwind@10176c78 undefined Unwind@10176c78(void) 8 1 +10176c80 Unwind@10176c80 undefined Unwind@10176c80(void) 8 1 +10176c88 Unwind@10176c88 undefined Unwind@10176c88(void) 8 1 +10176c90 Unwind@10176c90 undefined Unwind@10176c90(void) 8 1 +10176c98 Unwind@10176c98 undefined Unwind@10176c98(void) 8 1 +10176ca0 Unwind@10176ca0 undefined Unwind@10176ca0(void) 8 1 +10176cd0 Unwind@10176cd0 undefined Unwind@10176cd0(void) 8 1 +10176cd8 Unwind@10176cd8 undefined Unwind@10176cd8(void) 11 1 +10176ce3 Unwind@10176ce3 undefined Unwind@10176ce3(void) 8 1 +10176ceb Unwind@10176ceb undefined Unwind@10176ceb(void) 25 1 +10176d20 Unwind@10176d20 undefined Unwind@10176d20(void) 17 1 +10176d31 Unwind@10176d31 undefined Unwind@10176d31(void) 8 1 +10176d39 Unwind@10176d39 undefined Unwind@10176d39(void) 11 1 +10176d44 Unwind@10176d44 undefined Unwind@10176d44(void) 8 1 +10176d70 Unwind@10176d70 undefined Unwind@10176d70(void) 8 1 +10176d78 Unwind@10176d78 undefined Unwind@10176d78(void) 11 1 +10176d83 Unwind@10176d83 undefined Unwind@10176d83(void) 8 1 +10176d8b Unwind@10176d8b undefined Unwind@10176d8b(void) 8 1 +10176d93 Unwind@10176d93 undefined Unwind@10176d93(void) 11 1 +10176dc0 Unwind@10176dc0 undefined Unwind@10176dc0(void) 17 1 +10176dd1 Unwind@10176dd1 undefined Unwind@10176dd1(void) 8 1 +10176dd9 Unwind@10176dd9 undefined Unwind@10176dd9(void) 11 1 +10176de4 Unwind@10176de4 undefined Unwind@10176de4(void) 8 1 +10176e10 Unwind@10176e10 undefined Unwind@10176e10(void) 11 1 +10176e1b Unwind@10176e1b undefined Unwind@10176e1b(void) 11 1 +10176e26 Unwind@10176e26 undefined Unwind@10176e26(void) 11 1 +10176e60 Unwind@10176e60 undefined Unwind@10176e60(void) 8 1 +10176e68 Unwind@10176e68 undefined Unwind@10176e68(void) 11 1 +10176e73 Unwind@10176e73 undefined Unwind@10176e73(void) 14 1 +10176e81 Unwind@10176e81 undefined Unwind@10176e81(void) 14 1 +10176e8f Unwind@10176e8f undefined Unwind@10176e8f(void) 14 1 +10176e9d Unwind@10176e9d undefined Unwind@10176e9d(void) 14 1 +10176eab Unwind@10176eab undefined Unwind@10176eab(void) 14 1 +10176eb9 Unwind@10176eb9 undefined Unwind@10176eb9(void) 14 1 +10176ec7 Unwind@10176ec7 undefined Unwind@10176ec7(void) 14 1 +10176ed5 Unwind@10176ed5 undefined Unwind@10176ed5(void) 14 1 +10176ee3 Unwind@10176ee3 undefined Unwind@10176ee3(void) 14 1 +10176ef1 Unwind@10176ef1 undefined Unwind@10176ef1(void) 14 1 +10176eff Unwind@10176eff undefined Unwind@10176eff(void) 8 1 +10176f30 Unwind@10176f30 undefined Unwind@10176f30(void) 14 0 +10176f3e Unwind@10176f3e undefined Unwind@10176f3e(void) 14 0 +10176f4c Unwind@10176f4c undefined Unwind@10176f4c(void) 14 0 +10176f5a Unwind@10176f5a undefined Unwind@10176f5a(void) 14 0 +10176f68 Unwind@10176f68 undefined Unwind@10176f68(void) 14 0 +10176f76 Unwind@10176f76 undefined Unwind@10176f76(void) 14 0 +10176f84 Unwind@10176f84 undefined Unwind@10176f84(void) 11 1 +10176f8f Unwind@10176f8f undefined Unwind@10176f8f(void) 11 1 +10176f9a Unwind@10176f9a undefined Unwind@10176f9a(void) 11 1 +10176fd0 Unwind@10176fd0 undefined Unwind@10176fd0(void) 9 0 +10177000 Unwind@10177000 undefined Unwind@10177000(void) 8 1 +10177008 Unwind@10177008 undefined Unwind@10177008(void) 8 1 +10177010 Unwind@10177010 undefined Unwind@10177010(void) 11 1 +10177070 Unwind@10177070 undefined Unwind@10177070(void) 11 1 +101770a0 Unwind@101770a0 undefined Unwind@101770a0(void) 11 1 +101770d0 Unwind@101770d0 undefined Unwind@101770d0(void) 8 1 +101770d8 Unwind@101770d8 undefined Unwind@101770d8(void) 8 1 +101770e0 Unwind@101770e0 undefined Unwind@101770e0(void) 8 1 +101770e8 Unwind@101770e8 undefined Unwind@101770e8(void) 8 1 +101770f0 Unwind@101770f0 undefined Unwind@101770f0(void) 8 1 +101770f8 Unwind@101770f8 undefined Unwind@101770f8(void) 8 1 +10177100 Unwind@10177100 undefined Unwind@10177100(void) 8 1 +10177108 Unwind@10177108 undefined Unwind@10177108(void) 8 1 +10177110 Unwind@10177110 undefined Unwind@10177110(void) 8 1 +10177118 Unwind@10177118 undefined Unwind@10177118(void) 8 1 +10177120 Unwind@10177120 undefined Unwind@10177120(void) 8 1 +10177150 Unwind@10177150 undefined Unwind@10177150(void) 8 1 +10177180 Unwind@10177180 undefined Unwind@10177180(void) 8 1 +10177188 Unwind@10177188 undefined Unwind@10177188(void) 8 1 +10177190 Unwind@10177190 undefined Unwind@10177190(void) 8 1 +10177198 Unwind@10177198 undefined Unwind@10177198(void) 8 1 +101771c0 Unwind@101771c0 undefined Unwind@101771c0(void) 8 1 +101771c8 Unwind@101771c8 undefined Unwind@101771c8(void) 11 1 +101771d3 Unwind@101771d3 undefined Unwind@101771d3(void) 8 1 +101771db Unwind@101771db undefined Unwind@101771db(void) 8 1 +10177200 Unwind@10177200 undefined Unwind@10177200(void) 11 1 +1017720b Unwind@1017720b undefined Unwind@1017720b(void) 8 1 +10177230 Unwind@10177230 undefined Unwind@10177230(void) 11 1 +1017723b Unwind@1017723b undefined Unwind@1017723b(void) 8 1 +10177260 Unwind@10177260 undefined Unwind@10177260(void) 8 1 +10177268 Unwind@10177268 undefined Unwind@10177268(void) 11 1 +101772a0 Unwind@101772a0 undefined Unwind@101772a0(void) 8 1 +101772a8 Unwind@101772a8 undefined Unwind@101772a8(void) 8 1 +101772b0 Unwind@101772b0 undefined Unwind@101772b0(void) 8 1 +101772b8 Unwind@101772b8 undefined Unwind@101772b8(void) 11 1 +101772f0 Unwind@101772f0 undefined Unwind@101772f0(void) 11 1 +101772fb Unwind@101772fb undefined Unwind@101772fb(void) 8 1 +10177303 Unwind@10177303 undefined Unwind@10177303(void) 25 1 +10177340 Unwind@10177340 undefined Unwind@10177340(void) 17 1 +10177351 Unwind@10177351 undefined Unwind@10177351(void) 11 1 +1017735c Unwind@1017735c undefined Unwind@1017735c(void) 8 1 +10177380 Unwind@10177380 undefined Unwind@10177380(void) 17 1 +10177391 Unwind@10177391 undefined Unwind@10177391(void) 11 1 +1017739c Unwind@1017739c undefined Unwind@1017739c(void) 8 1 +101773c0 Unwind@101773c0 undefined Unwind@101773c0(void) 9 0 +101773f0 Unwind@101773f0 undefined Unwind@101773f0(void) 8 1 +101773f8 Unwind@101773f8 undefined Unwind@101773f8(void) 11 1 +10177403 Unwind@10177403 undefined Unwind@10177403(void) 11 1 +1017740e Unwind@1017740e undefined Unwind@1017740e(void) 11 1 +10177440 Unwind@10177440 undefined Unwind@10177440(void) 8 1 +10177448 Unwind@10177448 undefined Unwind@10177448(void) 11 1 +10177453 Unwind@10177453 undefined Unwind@10177453(void) 11 1 +1017745e Unwind@1017745e undefined Unwind@1017745e(void) 11 1 +10177490 Unwind@10177490 undefined Unwind@10177490(void) 8 1 +10177498 Unwind@10177498 undefined Unwind@10177498(void) 8 1 +101774a0 Unwind@101774a0 undefined Unwind@101774a0(void) 8 1 +101774d0 Unwind@101774d0 undefined Unwind@101774d0(void) 8 1 +10177500 Unwind@10177500 undefined Unwind@10177500(void) 8 1 +10177508 Unwind@10177508 undefined Unwind@10177508(void) 8 1 +10177510 Unwind@10177510 undefined Unwind@10177510(void) 8 1 +10177540 Unwind@10177540 undefined Unwind@10177540(void) 8 1 +10177548 Unwind@10177548 undefined Unwind@10177548(void) 8 1 +10177550 Unwind@10177550 undefined Unwind@10177550(void) 8 1 +10177580 Unwind@10177580 undefined Unwind@10177580(void) 8 1 +10177588 Unwind@10177588 undefined Unwind@10177588(void) 8 1 +10177590 Unwind@10177590 undefined Unwind@10177590(void) 8 1 +101775c0 Unwind@101775c0 undefined Unwind@101775c0(void) 11 1 +101775cb Unwind@101775cb undefined Unwind@101775cb(void) 11 1 +101775d6 Unwind@101775d6 undefined Unwind@101775d6(void) 11 1 +101775e1 Unwind@101775e1 undefined Unwind@101775e1(void) 14 1 +101775ef Unwind@101775ef undefined Unwind@101775ef(void) 8 1 +101775f7 Unwind@101775f7 undefined Unwind@101775f7(void) 8 1 +101775ff Unwind@101775ff undefined Unwind@101775ff(void) 14 1 +1017760d Unwind@1017760d undefined Unwind@1017760d(void) 11 1 +10177618 Unwind@10177618 undefined Unwind@10177618(void) 11 1 +10177623 Unwind@10177623 undefined Unwind@10177623(void) 11 1 +1017762e Unwind@1017762e undefined Unwind@1017762e(void) 11 1 +10177670 Unwind@10177670 undefined Unwind@10177670(void) 11 1 +1017767b Unwind@1017767b undefined Unwind@1017767b(void) 11 1 +10177686 Unwind@10177686 undefined Unwind@10177686(void) 11 1 +10177691 Unwind@10177691 undefined Unwind@10177691(void) 11 1 +1017769c Unwind@1017769c undefined Unwind@1017769c(void) 8 1 +101776a4 Unwind@101776a4 undefined Unwind@101776a4(void) 8 1 +101776ac Unwind@101776ac undefined Unwind@101776ac(void) 8 1 +101776b4 Unwind@101776b4 undefined Unwind@101776b4(void) 11 1 +101776bf Unwind@101776bf undefined Unwind@101776bf(void) 11 1 +101776ca Unwind@101776ca undefined Unwind@101776ca(void) 11 1 +101776d5 Unwind@101776d5 undefined Unwind@101776d5(void) 8 1 +101776dd Unwind@101776dd undefined Unwind@101776dd(void) 11 1 +101776e8 Unwind@101776e8 undefined Unwind@101776e8(void) 11 1 +101776f3 Unwind@101776f3 undefined Unwind@101776f3(void) 11 1 +101776fe Unwind@101776fe undefined Unwind@101776fe(void) 11 1 +10177709 Unwind@10177709 undefined Unwind@10177709(void) 11 1 +10177714 Unwind@10177714 undefined Unwind@10177714(void) 11 1 +1017771f Unwind@1017771f undefined Unwind@1017771f(void) 11 1 +1017772a Unwind@1017772a undefined Unwind@1017772a(void) 11 1 +10177735 Unwind@10177735 undefined Unwind@10177735(void) 8 1 +1017773d Unwind@1017773d undefined Unwind@1017773d(void) 11 1 +10177748 Unwind@10177748 undefined Unwind@10177748(void) 11 1 +10177753 Unwind@10177753 undefined Unwind@10177753(void) 11 1 +1017775e Unwind@1017775e undefined Unwind@1017775e(void) 8 1 +10177766 Unwind@10177766 undefined Unwind@10177766(void) 11 1 +10177771 Unwind@10177771 undefined Unwind@10177771(void) 11 1 +1017777c Unwind@1017777c undefined Unwind@1017777c(void) 11 1 +10177787 Unwind@10177787 undefined Unwind@10177787(void) 14 1 +10177795 Unwind@10177795 undefined Unwind@10177795(void) 11 1 +101777a0 Unwind@101777a0 undefined Unwind@101777a0(void) 11 1 +101777ab Unwind@101777ab undefined Unwind@101777ab(void) 11 1 +101777b6 Unwind@101777b6 undefined Unwind@101777b6(void) 14 1 +101777c4 Unwind@101777c4 undefined Unwind@101777c4(void) 11 1 +101777cf Unwind@101777cf undefined Unwind@101777cf(void) 11 1 +101777da Unwind@101777da undefined Unwind@101777da(void) 11 1 +101777e5 Unwind@101777e5 undefined Unwind@101777e5(void) 11 1 +101777f0 Unwind@101777f0 undefined Unwind@101777f0(void) 11 1 +10177830 Unwind@10177830 undefined Unwind@10177830(void) 11 1 +1017783b Unwind@1017783b undefined Unwind@1017783b(void) 14 1 +10177880 Unwind@10177880 undefined Unwind@10177880(void) 8 1 +10177888 Unwind@10177888 undefined Unwind@10177888(void) 8 1 +10177890 Unwind@10177890 undefined Unwind@10177890(void) 8 1 +10177898 Unwind@10177898 undefined Unwind@10177898(void) 8 1 +101778a0 Unwind@101778a0 undefined Unwind@101778a0(void) 8 1 +101778a8 Unwind@101778a8 undefined Unwind@101778a8(void) 8 1 +101778b0 Unwind@101778b0 undefined Unwind@101778b0(void) 14 0 +101778be Unwind@101778be undefined Unwind@101778be(void) 14 0 +101778cc Unwind@101778cc undefined Unwind@101778cc(void) 8 1 +10177900 Unwind@10177900 undefined Unwind@10177900(void) 14 0 +1017790e Unwind@1017790e undefined Unwind@1017790e(void) 14 0 +1017791c Unwind@1017791c undefined Unwind@1017791c(void) 8 1 +10177924 Unwind@10177924 undefined Unwind@10177924(void) 8 1 +1017792c Unwind@1017792c undefined Unwind@1017792c(void) 14 1 +10177970 Unwind@10177970 undefined Unwind@10177970(void) 10 1 +101779a0 Unwind@101779a0 undefined Unwind@101779a0(void) 10 1 +101779d0 Unwind@101779d0 undefined Unwind@101779d0(void) 8 1 +101779d8 Unwind@101779d8 undefined Unwind@101779d8(void) 11 1 +10177a00 Unwind@10177a00 undefined Unwind@10177a00(void) 8 1 +10177a30 Unwind@10177a30 undefined Unwind@10177a30(void) 8 1 +10177a38 Unwind@10177a38 undefined Unwind@10177a38(void) 8 1 +10177a40 Unwind@10177a40 undefined Unwind@10177a40(void) 11 1 +10177a70 Unwind@10177a70 undefined Unwind@10177a70(void) 9 0 +10177aa0 Unwind@10177aa0 undefined Unwind@10177aa0(void) 9 0 +10177ad0 Unwind@10177ad0 undefined Unwind@10177ad0(void) 8 1 +10177b00 Unwind@10177b00 undefined Unwind@10177b00(void) 8 1 +10177b08 Unwind@10177b08 undefined Unwind@10177b08(void) 8 1 +10177b30 Unwind@10177b30 undefined Unwind@10177b30(void) 8 1 +10177b38 Unwind@10177b38 undefined Unwind@10177b38(void) 8 1 +10177b40 Unwind@10177b40 undefined Unwind@10177b40(void) 8 1 +10177b48 Unwind@10177b48 undefined Unwind@10177b48(void) 11 1 +10177b70 Unwind@10177b70 undefined Unwind@10177b70(void) 8 1 +10177ba0 Unwind@10177ba0 undefined Unwind@10177ba0(void) 8 1 +10177bd0 Unwind@10177bd0 undefined Unwind@10177bd0(void) 8 1 +10177c00 Unwind@10177c00 undefined Unwind@10177c00(void) 8 1 +10177c30 Unwind@10177c30 undefined Unwind@10177c30(void) 8 1 +10177c60 Unwind@10177c60 undefined Unwind@10177c60(void) 8 1 +10177c90 Unwind@10177c90 undefined Unwind@10177c90(void) 8 1 +10177cc0 Unwind@10177cc0 undefined Unwind@10177cc0(void) 8 1 +10177cf0 Unwind@10177cf0 undefined Unwind@10177cf0(void) 8 1 +10177d20 Unwind@10177d20 undefined Unwind@10177d20(void) 8 1 +10177d28 Unwind@10177d28 undefined Unwind@10177d28(void) 8 1 +10177d50 Unwind@10177d50 undefined Unwind@10177d50(void) 8 1 +10177d58 Unwind@10177d58 undefined Unwind@10177d58(void) 8 1 +10177d60 Unwind@10177d60 undefined Unwind@10177d60(void) 8 1 +10177d68 Unwind@10177d68 undefined Unwind@10177d68(void) 11 1 +10177d90 Unwind@10177d90 undefined Unwind@10177d90(void) 9 0 +10177dc0 Unwind@10177dc0 undefined Unwind@10177dc0(void) 9 0 +10177df0 Unwind@10177df0 undefined Unwind@10177df0(void) 8 1 +10177df8 Unwind@10177df8 undefined Unwind@10177df8(void) 11 1 +10177e20 Unwind@10177e20 undefined Unwind@10177e20(void) 8 1 +10177e50 Unwind@10177e50 undefined Unwind@10177e50(void) 8 1 +10177e58 Unwind@10177e58 undefined Unwind@10177e58(void) 8 1 +10177e80 Unwind@10177e80 undefined Unwind@10177e80(void) 8 1 +10177e88 Unwind@10177e88 undefined Unwind@10177e88(void) 8 1 +10177eb0 Unwind@10177eb0 undefined Unwind@10177eb0(void) 8 1 +10177eb8 Unwind@10177eb8 undefined Unwind@10177eb8(void) 8 1 +10177ee0 Unwind@10177ee0 undefined Unwind@10177ee0(void) 8 1 +10177ee8 Unwind@10177ee8 undefined Unwind@10177ee8(void) 8 1 +10177f10 Unwind@10177f10 undefined Unwind@10177f10(void) 8 1 +10177f18 Unwind@10177f18 undefined Unwind@10177f18(void) 8 1 +10177f40 Unwind@10177f40 undefined Unwind@10177f40(void) 8 1 +10177f48 Unwind@10177f48 undefined Unwind@10177f48(void) 8 1 +10177f70 Unwind@10177f70 undefined Unwind@10177f70(void) 8 1 +10177f78 Unwind@10177f78 undefined Unwind@10177f78(void) 8 1 +10177fa0 Unwind@10177fa0 undefined Unwind@10177fa0(void) 8 1 +10177fa8 Unwind@10177fa8 undefined Unwind@10177fa8(void) 8 1 +10177fd0 Unwind@10177fd0 undefined Unwind@10177fd0(void) 9 0 +10178000 Unwind@10178000 undefined Unwind@10178000(void) 9 0 +10178030 Unwind@10178030 undefined Unwind@10178030(void) 8 1 +10178038 Unwind@10178038 undefined Unwind@10178038(void) 8 1 +10178060 Unwind@10178060 undefined Unwind@10178060(void) 8 1 +10178068 Unwind@10178068 undefined Unwind@10178068(void) 8 1 +10178090 Unwind@10178090 undefined Unwind@10178090(void) 8 1 +10178098 Unwind@10178098 undefined Unwind@10178098(void) 8 1 +101780a0 Unwind@101780a0 undefined Unwind@101780a0(void) 8 1 +101780a8 Unwind@101780a8 undefined Unwind@101780a8(void) 11 1 +101780d0 Unwind@101780d0 undefined Unwind@101780d0(void) 8 1 +101780d8 Unwind@101780d8 undefined Unwind@101780d8(void) 11 1 +10178100 Unwind@10178100 undefined Unwind@10178100(void) 8 1 +10178130 Unwind@10178130 undefined Unwind@10178130(void) 8 1 +10178160 Unwind@10178160 undefined Unwind@10178160(void) 8 1 +10178168 Unwind@10178168 undefined Unwind@10178168(void) 9 0 +10178190 Unwind@10178190 undefined Unwind@10178190(void) 8 1 +10178198 Unwind@10178198 undefined Unwind@10178198(void) 9 0 +101781c0 Unwind@101781c0 undefined Unwind@101781c0(void) 8 1 +101781c8 Unwind@101781c8 undefined Unwind@101781c8(void) 8 1 +101781f0 Unwind@101781f0 undefined Unwind@101781f0(void) 8 1 +101781f8 Unwind@101781f8 undefined Unwind@101781f8(void) 8 1 +10178200 Unwind@10178200 undefined Unwind@10178200(void) 8 1 +10178208 Unwind@10178208 undefined Unwind@10178208(void) 11 1 +10178230 Unwind@10178230 undefined Unwind@10178230(void) 8 1 +10178260 Unwind@10178260 undefined Unwind@10178260(void) 8 1 +10178268 Unwind@10178268 undefined Unwind@10178268(void) 8 1 +10178290 Unwind@10178290 undefined Unwind@10178290(void) 8 1 +10178298 Unwind@10178298 undefined Unwind@10178298(void) 8 1 +101782c0 Unwind@101782c0 undefined Unwind@101782c0(void) 8 1 +101782f0 Unwind@101782f0 undefined Unwind@101782f0(void) 8 1 +101782f8 Unwind@101782f8 undefined Unwind@101782f8(void) 8 1 +10178320 Unwind@10178320 undefined Unwind@10178320(void) 8 1 +10178328 Unwind@10178328 undefined Unwind@10178328(void) 8 1 +10178350 Unwind@10178350 undefined Unwind@10178350(void) 8 1 +10178358 Unwind@10178358 undefined Unwind@10178358(void) 8 1 +10178360 Unwind@10178360 undefined Unwind@10178360(void) 8 1 +10178368 Unwind@10178368 undefined Unwind@10178368(void) 11 1 +10178390 Unwind@10178390 undefined Unwind@10178390(void) 8 1 +10178398 Unwind@10178398 undefined Unwind@10178398(void) 8 1 +101783c0 Unwind@101783c0 undefined Unwind@101783c0(void) 8 1 +101783c8 Unwind@101783c8 undefined Unwind@101783c8(void) 8 1 +101783d0 Unwind@101783d0 undefined Unwind@101783d0(void) 8 1 +101783d8 Unwind@101783d8 undefined Unwind@101783d8(void) 11 1 +10178400 Unwind@10178400 undefined Unwind@10178400(void) 17 1 +10178411 Unwind@10178411 undefined Unwind@10178411(void) 8 1 +10178419 Unwind@10178419 undefined Unwind@10178419(void) 8 1 +10178440 Unwind@10178440 undefined Unwind@10178440(void) 17 1 +10178451 Unwind@10178451 undefined Unwind@10178451(void) 8 1 +10178459 Unwind@10178459 undefined Unwind@10178459(void) 8 1 +10178480 Unwind@10178480 undefined Unwind@10178480(void) 8 1 +10178488 Unwind@10178488 undefined Unwind@10178488(void) 8 1 +10178490 Unwind@10178490 undefined Unwind@10178490(void) 8 1 +10178498 Unwind@10178498 undefined Unwind@10178498(void) 8 1 +101784a0 Unwind@101784a0 undefined Unwind@101784a0(void) 8 1 +101784a8 Unwind@101784a8 undefined Unwind@101784a8(void) 8 1 +101784b0 Unwind@101784b0 undefined Unwind@101784b0(void) 8 1 +101784b8 Unwind@101784b8 undefined Unwind@101784b8(void) 8 1 +101784c0 Unwind@101784c0 undefined Unwind@101784c0(void) 8 1 +101784f0 Unwind@101784f0 undefined Unwind@101784f0(void) 14 0 +101784fe Unwind@101784fe undefined Unwind@101784fe(void) 14 0 +1017850c Unwind@1017850c undefined Unwind@1017850c(void) 14 0 +1017851a Unwind@1017851a undefined Unwind@1017851a(void) 14 0 +10178528 Unwind@10178528 undefined Unwind@10178528(void) 14 0 +10178536 Unwind@10178536 undefined Unwind@10178536(void) 14 0 +10178544 Unwind@10178544 undefined Unwind@10178544(void) 14 0 +10178552 Unwind@10178552 undefined Unwind@10178552(void) 14 0 +10178580 Unwind@10178580 undefined Unwind@10178580(void) 8 1 +10178588 Unwind@10178588 undefined Unwind@10178588(void) 8 1 +101785b0 Unwind@101785b0 undefined Unwind@101785b0(void) 8 1 +101785b8 Unwind@101785b8 undefined Unwind@101785b8(void) 8 1 +101785c0 Unwind@101785c0 undefined Unwind@101785c0(void) 8 1 +101785c8 Unwind@101785c8 undefined Unwind@101785c8(void) 11 1 +101785f0 Unwind@101785f0 undefined Unwind@101785f0(void) 8 1 +101785f8 Unwind@101785f8 undefined Unwind@101785f8(void) 8 1 +10178620 Unwind@10178620 undefined Unwind@10178620(void) 8 1 +10178628 Unwind@10178628 undefined Unwind@10178628(void) 8 1 +10178630 Unwind@10178630 undefined Unwind@10178630(void) 8 1 +10178638 Unwind@10178638 undefined Unwind@10178638(void) 11 1 +10178660 Unwind@10178660 undefined Unwind@10178660(void) 8 1 +10178668 Unwind@10178668 undefined Unwind@10178668(void) 8 1 +10178690 Unwind@10178690 undefined Unwind@10178690(void) 8 1 +10178698 Unwind@10178698 undefined Unwind@10178698(void) 8 1 +101786a0 Unwind@101786a0 undefined Unwind@101786a0(void) 8 1 +101786a8 Unwind@101786a8 undefined Unwind@101786a8(void) 11 1 +101786d0 Unwind@101786d0 undefined Unwind@101786d0(void) 17 1 +101786e1 Unwind@101786e1 undefined Unwind@101786e1(void) 8 1 +101786e9 Unwind@101786e9 undefined Unwind@101786e9(void) 8 1 +10178710 Unwind@10178710 undefined Unwind@10178710(void) 9 0 +10178740 Unwind@10178740 undefined Unwind@10178740(void) 9 0 +10178770 Unwind@10178770 undefined Unwind@10178770(void) 25 1 +101787b0 Unwind@101787b0 undefined Unwind@101787b0(void) 8 1 +101787e0 Unwind@101787e0 undefined Unwind@101787e0(void) 8 1 +10178810 Unwind@10178810 undefined Unwind@10178810(void) 11 1 +1017881b Unwind@1017881b undefined Unwind@1017881b(void) 11 1 +10178826 Unwind@10178826 undefined Unwind@10178826(void) 11 1 +10178831 Unwind@10178831 undefined Unwind@10178831(void) 11 1 +1017883c Unwind@1017883c undefined Unwind@1017883c(void) 11 1 +10178870 Unwind@10178870 undefined Unwind@10178870(void) 8 1 +10178878 Unwind@10178878 undefined Unwind@10178878(void) 8 1 +101788b0 Unwind@101788b0 undefined Unwind@101788b0(void) 8 1 +101788b8 Unwind@101788b8 undefined Unwind@101788b8(void) 8 1 +101788e0 Unwind@101788e0 undefined Unwind@101788e0(void) 8 1 +101788e8 Unwind@101788e8 undefined Unwind@101788e8(void) 8 1 +10178910 Unwind@10178910 undefined Unwind@10178910(void) 8 1 +10178918 Unwind@10178918 undefined Unwind@10178918(void) 8 1 +10178920 Unwind@10178920 undefined Unwind@10178920(void) 9 0 +10178950 Unwind@10178950 undefined Unwind@10178950(void) 8 1 +10178958 Unwind@10178958 undefined Unwind@10178958(void) 8 1 +10178960 Unwind@10178960 undefined Unwind@10178960(void) 9 0 +10178990 Unwind@10178990 undefined Unwind@10178990(void) 8 1 +10178998 Unwind@10178998 undefined Unwind@10178998(void) 8 1 +101789a0 Unwind@101789a0 undefined Unwind@101789a0(void) 8 1 +101789a8 Unwind@101789a8 undefined Unwind@101789a8(void) 8 1 +101789b0 Unwind@101789b0 undefined Unwind@101789b0(void) 8 1 +101789b8 Unwind@101789b8 undefined Unwind@101789b8(void) 8 1 +101789c0 Unwind@101789c0 undefined Unwind@101789c0(void) 8 1 +101789c8 Unwind@101789c8 undefined Unwind@101789c8(void) 8 1 +101789d0 Unwind@101789d0 undefined Unwind@101789d0(void) 8 1 +101789d8 Unwind@101789d8 undefined Unwind@101789d8(void) 8 1 +101789e0 Unwind@101789e0 undefined Unwind@101789e0(void) 8 1 +101789e8 Unwind@101789e8 undefined Unwind@101789e8(void) 8 1 +101789f0 Unwind@101789f0 undefined Unwind@101789f0(void) 14 0 +101789fe Unwind@101789fe undefined Unwind@101789fe(void) 11 1 +10178a09 Unwind@10178a09 undefined Unwind@10178a09(void) 8 1 +10178a11 Unwind@10178a11 undefined Unwind@10178a11(void) 11 1 +10178a1c Unwind@10178a1c undefined Unwind@10178a1c(void) 11 1 +10178a27 Unwind@10178a27 undefined Unwind@10178a27(void) 11 1 +10178a32 Unwind@10178a32 undefined Unwind@10178a32(void) 11 1 +10178a3d Unwind@10178a3d undefined Unwind@10178a3d(void) 11 1 +10178a48 Unwind@10178a48 undefined Unwind@10178a48(void) 11 1 +10178a53 Unwind@10178a53 undefined Unwind@10178a53(void) 8 1 +10178a5b Unwind@10178a5b undefined Unwind@10178a5b(void) 8 1 +10178a63 Unwind@10178a63 undefined Unwind@10178a63(void) 11 1 +10178a6e Unwind@10178a6e undefined Unwind@10178a6e(void) 11 1 +10178a79 Unwind@10178a79 undefined Unwind@10178a79(void) 11 1 +10178a84 Unwind@10178a84 undefined Unwind@10178a84(void) 11 1 +10178a8f Unwind@10178a8f undefined Unwind@10178a8f(void) 11 1 +10178a9a Unwind@10178a9a undefined Unwind@10178a9a(void) 8 1 +10178aa2 Unwind@10178aa2 undefined Unwind@10178aa2(void) 8 1 +10178aaa Unwind@10178aaa undefined Unwind@10178aaa(void) 8 1 +10178ab2 Unwind@10178ab2 undefined Unwind@10178ab2(void) 11 1 +10178abd Unwind@10178abd undefined Unwind@10178abd(void) 11 1 +10178ac8 Unwind@10178ac8 undefined Unwind@10178ac8(void) 11 1 +10178ad3 Unwind@10178ad3 undefined Unwind@10178ad3(void) 11 1 +10178ade Unwind@10178ade undefined Unwind@10178ade(void) 11 1 +10178ae9 Unwind@10178ae9 undefined Unwind@10178ae9(void) 11 1 +10178af4 Unwind@10178af4 undefined Unwind@10178af4(void) 11 1 +10178aff Unwind@10178aff undefined Unwind@10178aff(void) 11 1 +10178b0a Unwind@10178b0a undefined Unwind@10178b0a(void) 11 1 +10178b15 Unwind@10178b15 undefined Unwind@10178b15(void) 11 1 +10178b20 Unwind@10178b20 undefined Unwind@10178b20(void) 11 1 +10178b2b Unwind@10178b2b undefined Unwind@10178b2b(void) 11 1 +10178b36 Unwind@10178b36 undefined Unwind@10178b36(void) 11 1 +10178b41 Unwind@10178b41 undefined Unwind@10178b41(void) 11 1 +10178b4c Unwind@10178b4c undefined Unwind@10178b4c(void) 8 1 +10178b54 Unwind@10178b54 undefined Unwind@10178b54(void) 8 1 +10178b5c Unwind@10178b5c undefined Unwind@10178b5c(void) 8 1 +10178b64 Unwind@10178b64 undefined Unwind@10178b64(void) 14 0 +10178b72 Unwind@10178b72 undefined Unwind@10178b72(void) 8 1 +10178b7a Unwind@10178b7a undefined Unwind@10178b7a(void) 8 1 +10178b82 Unwind@10178b82 undefined Unwind@10178b82(void) 8 1 +10178b8a Unwind@10178b8a undefined Unwind@10178b8a(void) 8 1 +10178b92 Unwind@10178b92 undefined Unwind@10178b92(void) 12 0 +10178b9e Unwind@10178b9e undefined Unwind@10178b9e(void) 12 0 +10178bd0 Unwind@10178bd0 undefined Unwind@10178bd0(void) 11 1 +10178bdb Unwind@10178bdb undefined Unwind@10178bdb(void) 8 1 +10178be3 Unwind@10178be3 undefined Unwind@10178be3(void) 11 1 +10178bee Unwind@10178bee undefined Unwind@10178bee(void) 11 1 +10178bf9 Unwind@10178bf9 undefined Unwind@10178bf9(void) 11 1 +10178c04 Unwind@10178c04 undefined Unwind@10178c04(void) 11 1 +10178c0f Unwind@10178c0f undefined Unwind@10178c0f(void) 11 1 +10178c1a Unwind@10178c1a undefined Unwind@10178c1a(void) 11 1 +10178c25 Unwind@10178c25 undefined Unwind@10178c25(void) 11 1 +10178c30 Unwind@10178c30 undefined Unwind@10178c30(void) 11 1 +10178c3b Unwind@10178c3b undefined Unwind@10178c3b(void) 11 1 +10178c46 Unwind@10178c46 undefined Unwind@10178c46(void) 11 1 +10178c51 Unwind@10178c51 undefined Unwind@10178c51(void) 11 1 +10178c5c Unwind@10178c5c undefined Unwind@10178c5c(void) 11 1 +10178c67 Unwind@10178c67 undefined Unwind@10178c67(void) 11 1 +10178c72 Unwind@10178c72 undefined Unwind@10178c72(void) 11 1 +10178c7d Unwind@10178c7d undefined Unwind@10178c7d(void) 11 1 +10178c88 Unwind@10178c88 undefined Unwind@10178c88(void) 11 1 +10178c93 Unwind@10178c93 undefined Unwind@10178c93(void) 11 1 +10178c9e Unwind@10178c9e undefined Unwind@10178c9e(void) 11 1 +10178ca9 Unwind@10178ca9 undefined Unwind@10178ca9(void) 11 1 +10178cb4 Unwind@10178cb4 undefined Unwind@10178cb4(void) 11 1 +10178cbf Unwind@10178cbf undefined Unwind@10178cbf(void) 8 1 +10178cc7 Unwind@10178cc7 undefined Unwind@10178cc7(void) 8 1 +10178d00 Unwind@10178d00 undefined Unwind@10178d00(void) 8 1 +10178d08 Unwind@10178d08 undefined Unwind@10178d08(void) 8 1 +10178d40 Unwind@10178d40 undefined Unwind@10178d40(void) 8 1 +10178d70 Unwind@10178d70 undefined Unwind@10178d70(void) 8 1 +10178dbb Unwind@10178dbb undefined Unwind@10178dbb(void) 9 0 +10178ddf Unwind@10178ddf undefined Unwind@10178ddf(void) 9 0 +10178e30 FUN_10178e30 undefined FUN_10178e30(void) 69 1 +10178ec0 FUN_10178ec0 undefined FUN_10178ec0(void) 184 4 +10178fc0 FUN_10178fc0 undefined FUN_10178fc0(void) 106 3 SysAllocString +10179090 FUN_10179090 undefined FUN_10179090(void) 184 4 +101791b0 FUN_101791b0 undefined FUN_101791b0(void) 106 2 +10179220 FUN_10179220 undefined FUN_10179220(void) 69 1 +101792c0 FUN_101792c0 undefined FUN_101792c0(void) 12 1 +101792d0 FUN_101792d0 undefined FUN_101792d0(void) 12 1 +101792e0 FUN_101792e0 undefined FUN_101792e0(void) 67 2 memset +10179330 FUN_10179330 undefined FUN_10179330(void) 17 1 +10179350 FUN_10179350 undefined FUN_10179350(void) 73 0 +101793a0 FUN_101793a0 undefined FUN_101793a0(void) 92 1 SysFreeString +10179400 FUN_10179400 undefined FUN_10179400(void) 102 2 +10179470 FUN_10179470 undefined FUN_10179470(void) 13 1 SysFreeString +10179480 FUN_10179480 undefined FUN_10179480(void) 13 1 SysFreeString +10179490 FUN_10179490 undefined FUN_10179490(void) 12 1 +101794a0 FUN_101794a0 undefined FUN_101794a0(void) 28 0 +101794c0 FUN_101794c0 undefined FUN_101794c0(void) 17 1 +101794e0 FUN_101794e0 undefined FUN_101794e0(void) 143 2 +10179570 FUN_10179570 undefined FUN_10179570(void) 53 1 +101795b0 FUN_101795b0 undefined FUN_101795b0(void) 102 2 +10179620 FUN_10179620 undefined FUN_10179620(void) 73 0 +10179669 FUN_10179669 undefined FUN_10179669(void) 10 1 +10179673 FUN_10179673 undefined FUN_10179673(void) 10 1 +10179680 FUN_10179680 undefined FUN_10179680(void) 12 1 VariantClear +1017968c FUN_1017968c undefined FUN_1017968c(void) 10 1 diff --git a/analysis/ghidra/exports/Lmx.dll.ghidra.md b/analysis/ghidra/exports/Lmx.dll.ghidra.md new file mode 100644 index 0000000..0c4892f --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.ghidra.md @@ -0,0 +1,9316 @@ +# Lmx.dll + +## Program + +- Language: `x86:LE:32:default` +- Compiler spec: `windows` +- Image base: `10000000` +- Executable format: `Portable Executable (PE)` + +## Memory Blocks + +| Name | Start | End | Size | R | W | X | +| --- | ---: | ---: | ---: | :---: | :---: | :---: | +| `Headers` | `10000000` | `100003ff` | 1024 | Y | | | +| `.text` | `10001000` | `101797ff` | 1542144 | Y | | Y | +| `.rdata` | `1017a000` | `101d39ff` | 367104 | Y | | | +| `.data` | `101d4000` | `101d9027` | 20520 | Y | Y | | +| `.rsrc` | `101da000` | `102251ff` | 307712 | Y | | | +| `.reloc` | `10226000` | `1023ddff` | 97792 | Y | | | +| `tdb` | `ffdff000` | `ffdfffff` | 4096 | Y | Y | | + +## External Imports + +- `ADVAPI32.DLL::CreateWellKnownSid` +- `ADVAPI32.DLL::FreeSid` +- `ADVAPI32.DLL::RegCloseKey` +- `ADVAPI32.DLL::RegCreateKeyExW` +- `ADVAPI32.DLL::RegNotifyChangeKeyValue` +- `ADVAPI32.DLL::RegOpenKeyExW` +- `ADVAPI32.DLL::RegQueryValueExW` +- `ADVAPI32.DLL::RegSetValueExW` +- `ADVAPI32.DLL::SetEntriesInAclW` +- `ADVAPI32.DLL::SetNamedSecurityInfoW` +- `ATL100.DLL::AtlCallTermFunc` +- `ATL100.DLL::AtlComModuleGetClassObject` +- `ATL100.DLL::AtlComPtrAssign` +- `ATL100.DLL::AtlComQIPtrAssign` +- `ATL100.DLL::AtlCreateRegistrar` +- `ATL100.DLL::AtlGetPerUserRegistration` +- `ATL100.DLL::AtlInternalQueryInterface` +- `ATL100.DLL::AtlLoadTypeLib` +- `ATL100.DLL::AtlRegisterClassCategoriesHelper` +- `ATL100.DLL::AtlUpdateRegistryFromResourceD` +- `DBGHELP.DLL::MiniDumpWriteDump` +- `KERNEL32.DLL::CloseHandle` +- `KERNEL32.DLL::CompareFileTime` +- `KERNEL32.DLL::CreateDirectoryW` +- `KERNEL32.DLL::CreateEventW` +- `KERNEL32.DLL::CreateFileW` +- `KERNEL32.DLL::CreateMutexW` +- `KERNEL32.DLL::CreateThread` +- `KERNEL32.DLL::DecodePointer` +- `KERNEL32.DLL::DeleteCriticalSection` +- `KERNEL32.DLL::DeleteFileW` +- `KERNEL32.DLL::DisableThreadLibraryCalls` +- `KERNEL32.DLL::EncodePointer` +- `KERNEL32.DLL::EnterCriticalSection` +- `KERNEL32.DLL::FileTimeToLocalFileTime` +- `KERNEL32.DLL::FileTimeToSystemTime` +- `KERNEL32.DLL::FindClose` +- `KERNEL32.DLL::FindFirstFileW` +- `KERNEL32.DLL::FindNextFileW` +- `KERNEL32.DLL::FormatMessageW` +- `KERNEL32.DLL::FreeLibrary` +- `KERNEL32.DLL::GetComputerNameW` +- `KERNEL32.DLL::GetCurrentProcess` +- `KERNEL32.DLL::GetCurrentProcessId` +- `KERNEL32.DLL::GetCurrentThreadId` +- `KERNEL32.DLL::GetDateFormatW` +- `KERNEL32.DLL::GetFileSize` +- `KERNEL32.DLL::GetFileTime` +- `KERNEL32.DLL::GetLastError` +- `KERNEL32.DLL::GetLocalTime` +- `KERNEL32.DLL::GetModuleFileNameW` +- `KERNEL32.DLL::GetModuleHandleW` +- `KERNEL32.DLL::GetProcAddress` +- `KERNEL32.DLL::GetSystemDirectoryW` +- `KERNEL32.DLL::GetSystemTime` +- `KERNEL32.DLL::GetSystemTimeAsFileTime` +- `KERNEL32.DLL::GetTickCount` +- `KERNEL32.DLL::GetTimeFormatW` +- `KERNEL32.DLL::GetWindowsDirectoryW` +- `KERNEL32.DLL::InitializeCriticalSectionAndSpinCount` +- `KERNEL32.DLL::InterlockedCompareExchange` +- `KERNEL32.DLL::InterlockedDecrement` +- `KERNEL32.DLL::InterlockedExchange` +- `KERNEL32.DLL::InterlockedIncrement` +- `KERNEL32.DLL::IsDebuggerPresent` +- `KERNEL32.DLL::LeaveCriticalSection` +- `KERNEL32.DLL::LoadLibraryExW` +- `KERNEL32.DLL::LocalAlloc` +- `KERNEL32.DLL::LocalFree` +- `KERNEL32.DLL::MultiByteToWideChar` +- `KERNEL32.DLL::OutputDebugStringW` +- `KERNEL32.DLL::QueryPerformanceCounter` +- `KERNEL32.DLL::RaiseException` +- `KERNEL32.DLL::ReadFile` +- `KERNEL32.DLL::ReleaseMutex` +- `KERNEL32.DLL::SetEndOfFile` +- `KERNEL32.DLL::SetEvent` +- `KERNEL32.DLL::SetFilePointer` +- `KERNEL32.DLL::SetFilePointerEx` +- `KERNEL32.DLL::SetUnhandledExceptionFilter` +- `KERNEL32.DLL::Sleep` +- `KERNEL32.DLL::SystemTimeToFileTime` +- `KERNEL32.DLL::SystemTimeToTzSpecificLocalTime` +- `KERNEL32.DLL::TerminateProcess` +- `KERNEL32.DLL::UnhandledExceptionFilter` +- `KERNEL32.DLL::WaitForSingleObject` +- `KERNEL32.DLL::WideCharToMultiByte` +- `KERNEL32.DLL::WriteFile` +- `KERNEL32.DLL::lstrcatW` +- `KERNEL32.DLL::lstrlenA` +- `KERNEL32.DLL::lstrlenW` +- `MSVCP100.DLL::std::_BADOFF` +- `MSVCP100.DLL::std::_Container_base0::_Orphan_all` +- `MSVCP100.DLL::std::_Container_base0::_Swap_all` +- `MSVCP100.DLL::std::_Container_base12::_Container_base12` +- `MSVCP100.DLL::std::_Container_base12::_Orphan_all` +- `MSVCP100.DLL::std::_Container_base12::~_Container_base12` +- `MSVCP100.DLL::std::_Lockit::_Lockit` +- `MSVCP100.DLL::std::_Lockit::~_Lockit` +- `MSVCP100.DLL::std::_Xlength_error` +- `MSVCP100.DLL::std::_Xout_of_range` +- `MSVCP100.DLL::std::basic_ios_>::basic_ios_>` +- `MSVCP100.DLL::std::basic_ios_>::fill` +- `MSVCP100.DLL::std::basic_ios_>::rdbuf` +- `MSVCP100.DLL::std::basic_ios_>::rdbuf` +- `MSVCP100.DLL::std::basic_ios_>::setstate` +- `MSVCP100.DLL::std::basic_ios_>::tie` +- `MSVCP100.DLL::std::basic_ios_>::~basic_ios_>` +- `MSVCP100.DLL::std::basic_iostream_>::basic_iostream_>` +- `MSVCP100.DLL::std::basic_iostream_>::~basic_iostream_>` +- `MSVCP100.DLL::std::basic_ostream_>::_Osfx` +- `MSVCP100.DLL::std::basic_ostream_>::basic_ostream_>` +- `MSVCP100.DLL::std::basic_ostream_>::flush` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::~basic_ostream_>` +- `MSVCP100.DLL::std::basic_streambuf_>::_Lock` +- `MSVCP100.DLL::std::basic_streambuf_>::_Pninc` +- `MSVCP100.DLL::std::basic_streambuf_>::_Unlock` +- `MSVCP100.DLL::std::basic_streambuf_>::basic_streambuf_>` +- `MSVCP100.DLL::std::basic_streambuf_>::eback` +- `MSVCP100.DLL::std::basic_streambuf_>::egptr` +- `MSVCP100.DLL::std::basic_streambuf_>::epptr` +- `MSVCP100.DLL::std::basic_streambuf_>::gbump` +- `MSVCP100.DLL::std::basic_streambuf_>::gptr` +- `MSVCP100.DLL::std::basic_streambuf_>::imbue` +- `MSVCP100.DLL::std::basic_streambuf_>::pbackfail` +- `MSVCP100.DLL::std::basic_streambuf_>::pbase` +- `MSVCP100.DLL::std::basic_streambuf_>::pbump` +- `MSVCP100.DLL::std::basic_streambuf_>::pptr` +- `MSVCP100.DLL::std::basic_streambuf_>::seekoff` +- `MSVCP100.DLL::std::basic_streambuf_>::seekpos` +- `MSVCP100.DLL::std::basic_streambuf_>::setbuf` +- `MSVCP100.DLL::std::basic_streambuf_>::setg` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::showmanyc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputn` +- `MSVCP100.DLL::std::basic_streambuf_>::sync` +- `MSVCP100.DLL::std::basic_streambuf_>::uflow` +- `MSVCP100.DLL::std::basic_streambuf_>::underflow` +- `MSVCP100.DLL::std::basic_streambuf_>::xsgetn` +- `MSVCP100.DLL::std::basic_streambuf_>::xsputn` +- `MSVCP100.DLL::std::basic_streambuf_>::~basic_streambuf_>` +- `MSVCP100.DLL::std::ctype::_Getcat` +- `MSVCP100.DLL::std::ctype::id` +- `MSVCP100.DLL::std::ctype::widen` +- `MSVCP100.DLL::std::endl` +- `MSVCP100.DLL::std::ends` +- `MSVCP100.DLL::std::ios_base::flags` +- `MSVCP100.DLL::std::ios_base::getloc` +- `MSVCP100.DLL::std::ios_base::good` +- `MSVCP100.DLL::std::ios_base::operator_void*` +- `MSVCP100.DLL::std::ios_base::setf` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::locale::_Getgloballocale` +- `MSVCP100.DLL::std::locale::facet::_Decref` +- `MSVCP100.DLL::std::locale::facet::_Incref` +- `MSVCP100.DLL::std::locale::id::operator_unsigned_int` +- `MSVCP100.DLL::std::uncaught_exception` +- `MSVCR100.DLL::_CxxThrowException` +- `MSVCR100.DLL::__CppXcptFilter` +- `MSVCR100.DLL::__CxxFrameHandler3` +- `MSVCR100.DLL::__clean_type_info_names_internal` +- `MSVCR100.DLL::__dllonexit` +- `MSVCR100.DLL::_amsg_exit` +- `MSVCR100.DLL::_crt_debugger_hook` +- `MSVCR100.DLL::_lock` +- `MSVCR100.DLL::_ltow_s` +- `MSVCR100.DLL::_makepath_s` +- `MSVCR100.DLL::_malloc_crt` +- `MSVCR100.DLL::_onexit` +- `MSVCR100.DLL::_recalloc` +- `MSVCR100.DLL::_set_se_translator` +- `MSVCR100.DLL::_snwprintf` +- `MSVCR100.DLL::_snwprintf_s` +- `MSVCR100.DLL::_splitpath_s` +- `MSVCR100.DLL::_unlock` +- `MSVCR100.DLL::_vsnwprintf_s` +- `MSVCR100.DLL::_wcsicmp` +- `MSVCR100.DLL::_wcsnicmp` +- `MSVCR100.DLL::_wsplitpath_s` +- `MSVCR100.DLL::_wtoi` +- `MSVCR100.DLL::calloc` +- `MSVCR100.DLL::encoded_null` +- `MSVCR100.DLL::except_handler4_common` +- `MSVCR100.DLL::free` +- `MSVCR100.DLL::initterm` +- `MSVCR100.DLL::initterm_e` +- `MSVCR100.DLL::isdigit` +- `MSVCR100.DLL::isspace` +- `MSVCR100.DLL::iswdigit` +- `MSVCR100.DLL::malloc` +- `MSVCR100.DLL::memcpy` +- `MSVCR100.DLL::memcpy_s` +- `MSVCR100.DLL::memmove` +- `MSVCR100.DLL::memmove_s` +- `MSVCR100.DLL::memset` +- `MSVCR100.DLL::operator_delete` +- `MSVCR100.DLL::operator_delete[]` +- `MSVCR100.DLL::operator_new` +- `MSVCR100.DLL::purecall` +- `MSVCR100.DLL::realloc` +- `MSVCR100.DLL::std::bad_cast::bad_cast` +- `MSVCR100.DLL::std::bad_cast::bad_cast` +- `MSVCR100.DLL::std::bad_cast::~bad_cast` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::what` +- `MSVCR100.DLL::std::exception::~exception` +- `MSVCR100.DLL::strrchr` +- `MSVCR100.DLL::swprintf_s` +- `MSVCR100.DLL::swscanf_s` +- `MSVCR100.DLL::terminate` +- `MSVCR100.DLL::tolower` +- `MSVCR100.DLL::toupper` +- `MSVCR100.DLL::towupper` +- `MSVCR100.DLL::type_info::_type_info_dtor_internal_method` +- `MSVCR100.DLL::wcscat_s` +- `MSVCR100.DLL::wcschr` +- `MSVCR100.DLL::wcscpy_s` +- `MSVCR100.DLL::wcsncat_s` +- `MSVCR100.DLL::wcsncpy` +- `MSVCR100.DLL::wcsncpy_s` +- `MSVCR100.DLL::wcsnlen` +- `MSVCR100.DLL::wcsrchr` +- `MSVCR100.DLL::wcsstr` +- `OLE32.DLL::CoCreateGuid` +- `OLE32.DLL::CoCreateInstance` +- `OLE32.DLL::CoFileTimeNow` +- `OLE32.DLL::CoGetClassObject` +- `OLE32.DLL::CoInitializeEx` +- `OLE32.DLL::CoTaskMemAlloc` +- `OLE32.DLL::CoTaskMemFree` +- `OLE32.DLL::CoTaskMemRealloc` +- `OLE32.DLL::CoUninitialize` +- `OLE32.DLL::StringFromGUID2` +- `OLEAUT32.DLL::CreateErrorInfo` +- `OLEAUT32.DLL::GetErrorInfo` +- `OLEAUT32.DLL::RegisterTypeLib` +- `OLEAUT32.DLL::SetErrorInfo` +- `OLEAUT32.DLL::SysAllocString` +- `OLEAUT32.DLL::SysAllocStringByteLen` +- `OLEAUT32.DLL::SysAllocStringLen` +- `OLEAUT32.DLL::SysFreeString` +- `OLEAUT32.DLL::SysStringByteLen` +- `OLEAUT32.DLL::SysStringLen` +- `OLEAUT32.DLL::UnRegisterTypeLib` +- `OLEAUT32.DLL::VarBstrCat` +- `OLEAUT32.DLL::VarBstrCmp` +- `OLEAUT32.DLL::VariantChangeType` +- `OLEAUT32.DLL::VariantClear` +- `OLEAUT32.DLL::VariantInit` +- `SHELL32.DLL::SHGetFolderPathW` +- `SHLWAPI.DLL::PathAppendW` +- `SHLWAPI.DLL::PathRemoveFileSpecW` +- `USER32.DLL::CharLowerBuffW` +- `USER32.DLL::CharNextW` +- `USER32.DLL::DispatchMessageW` +- `USER32.DLL::MsgWaitForMultipleObjectsEx` +- `USER32.DLL::PeekMessageW` +- `USER32.DLL::TranslateMessage` +- `USER32.DLL::UnregisterClassW` +- `USER32.DLL::wsprintfW` +- `VERSION.DLL::GetFileVersionInfoSizeW` +- `VERSION.DLL::GetFileVersionInfoW` +- `VERSION.DLL::VerQueryValueW` + +## Exports and Globals + +| Name | Address | Function | +| --- | ---: | --- | +| `_wmemchr` | `10001240` | `_wmemchr` | +| `AtlMultiply<>` | `10001320` | `AtlMultiply<>` | +| `?Attach@CComBSTR@ATL@@QAEXPA_W@Z` | `10001a40` | `Attach` | +| `??0_com_error@@QAE@JPAUIErrorInfo@@_N@Z` | `10002db0` | `_com_error` | +| `??0_com_error@@QAE@ABV0@@Z` | `10002df0` | `_com_error` | +| `??1_com_error@@UAE@XZ` | `10002e30` | `~_com_error` | +| `AtlAdd<>` | `10008290` | `AtlAdd<>` | +| `??_G_com_error@@UAEPAXI@Z` | `100157a0` | `\`scalar_deleting_destructor'` | +| `Catch@10019f3e` | `10019f3e` | `Catch@10019f3e` | +| `Catch@10019fd1` | `10019fd1` | `Catch@10019fd1` | +| `Catch@1001a2b8` | `1001a2b8` | `Catch@1001a2b8` | +| `Catch@1001de1e` | `1001de1e` | `Catch@1001de1e` | +| `Catch@1001e055` | `1001e055` | `Catch@1001e055` | +| `Catch@10022770` | `10022770` | `Catch@10022770` | +| `Catch@10022788` | `10022788` | `Catch@10022788` | +| `Catch@10022a01` | `10022a01` | `Catch@10022a01` | +| `Catch@10029010` | `10029010` | `Catch@10029010` | +| `Catch@10029047` | `10029047` | `Catch@10029047` | +| `Catch@10029350` | `10029350` | `Catch@10029350` | +| `Catch@10029387` | `10029387` | `Catch@10029387` | +| `Catch@1002c6ff` | `1002c6ff` | `Catch@1002c6ff` | +| `Catch@1002c7df` | `1002c7df` | `Catch@1002c7df` | +| `Catch@1002c8bf` | `1002c8bf` | `Catch@1002c8bf` | +| `Catch@1002ce1f` | `1002ce1f` | `Catch@1002ce1f` | +| `Catch@1002ceff` | `1002ceff` | `Catch@1002ceff` | +| `Catch@1002cfdf` | `1002cfdf` | `Catch@1002cfdf` | +| `Catch@1002d0bf` | `1002d0bf` | `Catch@1002d0bf` | +| `Catch@1002d879` | `1002d879` | `Catch@1002d879` | +| `Catch@1002de03` | `1002de03` | `Catch@1002de03` | +| `Catch@1002f01e` | `1002f01e` | `Catch@1002f01e` | +| `Catch@100366cd` | `100366cd` | `Catch@100366cd` | +| `Catch@10036963` | `10036963` | `Catch@10036963` | +| `Catch@10036a5f` | `10036a5f` | `Catch@10036a5f` | +| `Catch@10036c93` | `10036c93` | `Catch@10036c93` | +| `Catch@10038a5f` | `10038a5f` | `Catch@10038a5f` | +| `Catch@1003d8c6` | `1003d8c6` | `Catch@1003d8c6` | +| `Catch@1004374f` | `1004374f` | `Catch@1004374f` | +| `Catch@1004382f` | `1004382f` | `Catch@1004382f` | +| `Catch@1004390f` | `1004390f` | `Catch@1004390f` | +| `Catch@100439ef` | `100439ef` | `Catch@100439ef` | +| `Catch@10043acf` | `10043acf` | `Catch@10043acf` | +| `Catch@10043baf` | `10043baf` | `Catch@10043baf` | +| `Catch@100445e9` | `100445e9` | `Catch@100445e9` | +| `Catch@1004b33f` | `1004b33f` | `Catch@1004b33f` | +| `Catch@1004b58f` | `1004b58f` | `Catch@1004b58f` | +| `Catch@1004b6ef` | `1004b6ef` | `Catch@1004b6ef` | +| `Catch@1004b7cf` | `1004b7cf` | `Catch@1004b7cf` | +| `Catch@1004b8af` | `1004b8af` | `Catch@1004b8af` | +| `Catch@1004b98f` | `1004b98f` | `Catch@1004b98f` | +| `Catch@1004ba6f` | `1004ba6f` | `Catch@1004ba6f` | +| `Catch@1004becf` | `1004becf` | `Catch@1004becf` | +| `Catch@1004bfaf` | `1004bfaf` | `Catch@1004bfaf` | +| `Catch@1005346b` | `1005346b` | `Catch@1005346b` | +| `Catch@10053795` | `10053795` | `Catch@10053795` | +| `Catch@10053eb5` | `10053eb5` | `Catch@10053eb5` | +| `Catch@10053fc9` | `10053fc9` | `Catch@10053fc9` | +| `Catch@10058ac4` | `10058ac4` | `Catch@10058ac4` | +| `Catch@1005eca4` | `1005eca4` | `Catch@1005eca4` | +| `Catch@1006423f` | `1006423f` | `Catch@1006423f` | +| `Catch@10065ea9` | `10065ea9` | `Catch@10065ea9` | +| `Catch@10066ce0` | `10066ce0` | `Catch@10066ce0` | +| `Catch@100676ef` | `100676ef` | `Catch@100676ef` | +| `Catch@10068c4f` | `10068c4f` | `Catch@10068c4f` | +| `Catch@100694f9` | `100694f9` | `Catch@100694f9` | +| `Catch@1006a46a` | `1006a46a` | `Catch@1006a46a` | +| `Catch@1006b85c` | `1006b85c` | `Catch@1006b85c` | +| `Catch@1006b8fa` | `1006b8fa` | `Catch@1006b8fa` | +| `Catch@1006b931` | `1006b931` | `Catch@1006b931` | +| `Catch@1006b9ad` | `1006b9ad` | `Catch@1006b9ad` | +| `Catch@1006c24f` | `1006c24f` | `Catch@1006c24f` | +| `Catch@1006c32c` | `1006c32c` | `Catch@1006c32c` | +| `Catch@1006ce99` | `1006ce99` | `Catch@1006ce99` | +| `Catch@1006cf0e` | `1006cf0e` | `Catch@1006cf0e` | +| `Catch@1006cf26` | `1006cf26` | `Catch@1006cf26` | +| `Catch@1006cf9e` | `1006cf9e` | `Catch@1006cf9e` | +| `Catch@1006d125` | `1006d125` | `Catch@1006d125` | +| `Catch@1006d19a` | `1006d19a` | `Catch@1006d19a` | +| `Catch@1006d1b2` | `1006d1b2` | `Catch@1006d1b2` | +| `Catch@1006d22a` | `1006d22a` | `Catch@1006d22a` | +| `Catch@1006d47a` | `1006d47a` | `Catch@1006d47a` | +| `Catch@1006d4f9` | `1006d4f9` | `Catch@1006d4f9` | +| `Catch@1006d511` | `1006d511` | `Catch@1006d511` | +| `Catch@1006d589` | `1006d589` | `Catch@1006d589` | +| `Catch@1006d7ca` | `1006d7ca` | `Catch@1006d7ca` | +| `Catch@1006d849` | `1006d849` | `Catch@1006d849` | +| `Catch@1006d861` | `1006d861` | `Catch@1006d861` | +| `Catch@1006d8d9` | `1006d8d9` | `Catch@1006d8d9` | +| `Catch@1006d9e7` | `1006d9e7` | `Catch@1006d9e7` | +| `Catch@1006da5c` | `1006da5c` | `Catch@1006da5c` | +| `Catch@1006da74` | `1006da74` | `Catch@1006da74` | +| `Catch@1006daec` | `1006daec` | `Catch@1006daec` | +| `Catch@1006dbe0` | `1006dbe0` | `Catch@1006dbe0` | +| `Catch@1006dc55` | `1006dc55` | `Catch@1006dc55` | +| `Catch@1006dc6d` | `1006dc6d` | `Catch@1006dc6d` | +| `Catch@1006dce5` | `1006dce5` | `Catch@1006dce5` | +| `Catch@1006dec0` | `1006dec0` | `Catch@1006dec0` | +| `Catch@1006df3f` | `1006df3f` | `Catch@1006df3f` | +| `Catch@1006df57` | `1006df57` | `Catch@1006df57` | +| `Catch@1006dfcf` | `1006dfcf` | `Catch@1006dfcf` | +| `Catch@1006e10e` | `1006e10e` | `Catch@1006e10e` | +| `Catch@1006e149` | `1006e149` | `Catch@1006e149` | +| `Catch@1006e1be` | `1006e1be` | `Catch@1006e1be` | +| `Catch@1006e1d6` | `1006e1d6` | `Catch@1006e1d6` | +| `Catch@1006e24e` | `1006e24e` | `Catch@1006e24e` | +| `Catch@1006e3a2` | `1006e3a2` | `Catch@1006e3a2` | +| `Catch@1006e417` | `1006e417` | `Catch@1006e417` | +| `Catch@1006e42f` | `1006e42f` | `Catch@1006e42f` | +| `Catch@1006e4a7` | `1006e4a7` | `Catch@1006e4a7` | +| `Catch@1006e58f` | `1006e58f` | `Catch@1006e58f` | +| `Catch@1006e604` | `1006e604` | `Catch@1006e604` | +| `Catch@1006e61c` | `1006e61c` | `Catch@1006e61c` | +| `Catch@1006e694` | `1006e694` | `Catch@1006e694` | +| `Catch@1006e774` | `1006e774` | `Catch@1006e774` | +| `Catch@1006e7e9` | `1006e7e9` | `Catch@1006e7e9` | +| `Catch@1006e801` | `1006e801` | `Catch@1006e801` | +| `Catch@1006e879` | `1006e879` | `Catch@1006e879` | +| `Catch@1006e958` | `1006e958` | `Catch@1006e958` | +| `Catch@1006e9cd` | `1006e9cd` | `Catch@1006e9cd` | +| `Catch@1006e9e5` | `1006e9e5` | `Catch@1006e9e5` | +| `Catch@1006ea5d` | `1006ea5d` | `Catch@1006ea5d` | +| `Catch@1006ed04` | `1006ed04` | `Catch@1006ed04` | +| `Catch@1006ed86` | `1006ed86` | `Catch@1006ed86` | +| `Catch@1006eda1` | `1006eda1` | `Catch@1006eda1` | +| `Catch@1006ee1c` | `1006ee1c` | `Catch@1006ee1c` | +| `Catch@1006ef11` | `1006ef11` | `Catch@1006ef11` | +| `Catch@1006ef86` | `1006ef86` | `Catch@1006ef86` | +| `Catch@1006ef9e` | `1006ef9e` | `Catch@1006ef9e` | +| `Catch@1006f016` | `1006f016` | `Catch@1006f016` | +| `Catch@1006f101` | `1006f101` | `Catch@1006f101` | +| `Catch@1006f176` | `1006f176` | `Catch@1006f176` | +| `Catch@1006f18e` | `1006f18e` | `Catch@1006f18e` | +| `Catch@1006f206` | `1006f206` | `Catch@1006f206` | +| `Catch@1006f2e3` | `1006f2e3` | `Catch@1006f2e3` | +| `Catch@1006f358` | `1006f358` | `Catch@1006f358` | +| `Catch@1006f370` | `1006f370` | `Catch@1006f370` | +| `Catch@1006f3e8` | `1006f3e8` | `Catch@1006f3e8` | +| `Catch@1006f4d8` | `1006f4d8` | `Catch@1006f4d8` | +| `Catch@1006f54d` | `1006f54d` | `Catch@1006f54d` | +| `Catch@1006f565` | `1006f565` | `Catch@1006f565` | +| `Catch@1006f5dd` | `1006f5dd` | `Catch@1006f5dd` | +| `Catch@1006f7a5` | `1006f7a5` | `Catch@1006f7a5` | +| `Catch@1006f824` | `1006f824` | `Catch@1006f824` | +| `Catch@1006f83c` | `1006f83c` | `Catch@1006f83c` | +| `Catch@1006f8b4` | `1006f8b4` | `Catch@1006f8b4` | +| `Catch@1006fa75` | `1006fa75` | `Catch@1006fa75` | +| `Catch@1006faf4` | `1006faf4` | `Catch@1006faf4` | +| `Catch@1006fb0c` | `1006fb0c` | `Catch@1006fb0c` | +| `Catch@1006fb84` | `1006fb84` | `Catch@1006fb84` | +| `Catch@1006fd62` | `1006fd62` | `Catch@1006fd62` | +| `Catch@1006fde1` | `1006fde1` | `Catch@1006fde1` | +| `Catch@1006fdf9` | `1006fdf9` | `Catch@1006fdf9` | +| `Catch@1006fe71` | `1006fe71` | `Catch@1006fe71` | +| `Catch@1006ffc1` | `1006ffc1` | `Catch@1006ffc1` | +| `Catch@10070036` | `10070036` | `Catch@10070036` | +| `Catch@1007004e` | `1007004e` | `Catch@1007004e` | +| `Catch@100700c6` | `100700c6` | `Catch@100700c6` | +| `Catch@10070211` | `10070211` | `Catch@10070211` | +| `Catch@10070286` | `10070286` | `Catch@10070286` | +| `Catch@1007029e` | `1007029e` | `Catch@1007029e` | +| `Catch@10070316` | `10070316` | `Catch@10070316` | +| `Catch@10071499` | `10071499` | `Catch@10071499` | +| `Catch@1007150e` | `1007150e` | `Catch@1007150e` | +| `Catch@10071526` | `10071526` | `Catch@10071526` | +| `Catch@1007159e` | `1007159e` | `Catch@1007159e` | +| `Catch@1007169a` | `1007169a` | `Catch@1007169a` | +| `Catch@1007170f` | `1007170f` | `Catch@1007170f` | +| `Catch@10071727` | `10071727` | `Catch@10071727` | +| `Catch@1007179f` | `1007179f` | `Catch@1007179f` | +| `Catch@10071874` | `10071874` | `Catch@10071874` | +| `Catch@100718e9` | `100718e9` | `Catch@100718e9` | +| `Catch@10071901` | `10071901` | `Catch@10071901` | +| `Catch@10071979` | `10071979` | `Catch@10071979` | +| `Catch@10071a8f` | `10071a8f` | `Catch@10071a8f` | +| `Catch@10071b04` | `10071b04` | `Catch@10071b04` | +| `Catch@10071b1c` | `10071b1c` | `Catch@10071b1c` | +| `Catch@10071b94` | `10071b94` | `Catch@10071b94` | +| `Catch@10071c73` | `10071c73` | `Catch@10071c73` | +| `Catch@10071ce8` | `10071ce8` | `Catch@10071ce8` | +| `Catch@10071d00` | `10071d00` | `Catch@10071d00` | +| `Catch@10071d78` | `10071d78` | `Catch@10071d78` | +| `Catch@10071eb2` | `10071eb2` | `Catch@10071eb2` | +| `Catch@10071f31` | `10071f31` | `Catch@10071f31` | +| `Catch@10071f49` | `10071f49` | `Catch@10071f49` | +| `Catch@10071fc1` | `10071fc1` | `Catch@10071fc1` | +| `Catch@100720c9` | `100720c9` | `Catch@100720c9` | +| `Catch@1007213e` | `1007213e` | `Catch@1007213e` | +| `Catch@10072156` | `10072156` | `Catch@10072156` | +| `Catch@100721ce` | `100721ce` | `Catch@100721ce` | +| `Catch@100722ea` | `100722ea` | `Catch@100722ea` | +| `Catch@1007235f` | `1007235f` | `Catch@1007235f` | +| `Catch@10072377` | `10072377` | `Catch@10072377` | +| `Catch@100723ef` | `100723ef` | `Catch@100723ef` | +| `Catch@100724cf` | `100724cf` | `Catch@100724cf` | +| `Catch@10072544` | `10072544` | `Catch@10072544` | +| `Catch@1007255c` | `1007255c` | `Catch@1007255c` | +| `Catch@100725d4` | `100725d4` | `Catch@100725d4` | +| `Catch@10072a3b` | `10072a3b` | `Catch@10072a3b` | +| `Catch@10072ab0` | `10072ab0` | `Catch@10072ab0` | +| `Catch@10072ac8` | `10072ac8` | `Catch@10072ac8` | +| `Catch@10072b40` | `10072b40` | `Catch@10072b40` | +| `Catch@10072c98` | `10072c98` | `Catch@10072c98` | +| `Catch@10072d0d` | `10072d0d` | `Catch@10072d0d` | +| `Catch@10072d25` | `10072d25` | `Catch@10072d25` | +| `Catch@10072d9d` | `10072d9d` | `Catch@10072d9d` | +| `Catch@1007712f` | `1007712f` | `Catch@1007712f` | +| `Catch@1007720f` | `1007720f` | `Catch@1007720f` | +| `Catch@100776af` | `100776af` | `Catch@100776af` | +| `Catch@1007896b` | `1007896b` | `Catch@1007896b` | +| `Catch@100799c7` | `100799c7` | `Catch@100799c7` | +| `Catch@10079b55` | `10079b55` | `Catch@10079b55` | +| `Catch@1007afe1` | `1007afe1` | `Catch@1007afe1` | +| `Catch@1007b52d` | `1007b52d` | `Catch@1007b52d` | +| `Catch@1007c8f4` | `1007c8f4` | `Catch@1007c8f4` | +| `Catch@1007ce44` | `1007ce44` | `Catch@1007ce44` | +| `Catch@1007cec2` | `1007cec2` | `Catch@1007cec2` | +| `Catch@1007cf50` | `1007cf50` | `Catch@1007cf50` | +| `Catch@1007cf6e` | `1007cf6e` | `Catch@1007cf6e` | +| `Catch@1007cff2` | `1007cff2` | `Catch@1007cff2` | +| `Catch@1007d0fa` | `1007d0fa` | `Catch@1007d0fa` | +| `Catch@1007d16f` | `1007d16f` | `Catch@1007d16f` | +| `Catch@1007d187` | `1007d187` | `Catch@1007d187` | +| `Catch@1007d1ff` | `1007d1ff` | `Catch@1007d1ff` | +| `Catch@1007d306` | `1007d306` | `Catch@1007d306` | +| `Catch@1007d37b` | `1007d37b` | `Catch@1007d37b` | +| `Catch@1007d393` | `1007d393` | `Catch@1007d393` | +| `Catch@1007d40b` | `1007d40b` | `Catch@1007d40b` | +| `Catch@1007deaf` | `1007deaf` | `Catch@1007deaf` | +| `Catch@1007df24` | `1007df24` | `Catch@1007df24` | +| `Catch@1007df3c` | `1007df3c` | `Catch@1007df3c` | +| `Catch@1007dfb4` | `1007dfb4` | `Catch@1007dfb4` | +| `Catch@1007e23f` | `1007e23f` | `Catch@1007e23f` | +| `Catch@1007e2cd` | `1007e2cd` | `Catch@1007e2cd` | +| `Catch@1007e2eb` | `1007e2eb` | `Catch@1007e2eb` | +| `Catch@1007e375` | `1007e375` | `Catch@1007e375` | +| `Catch@1008084f` | `1008084f` | `Catch@1008084f` | +| `Catch@1008092f` | `1008092f` | `Catch@1008092f` | +| `Catch@10080a0f` | `10080a0f` | `Catch@10080a0f` | +| `Catch@10080e75` | `10080e75` | `Catch@10080e75` | +| `Catch@100818c4` | `100818c4` | `Catch@100818c4` | +| `Catch@10082a8f` | `10082a8f` | `Catch@10082a8f` | +| `Catch@10088fe9` | `10088fe9` | `Catch@10088fe9` | +| `Catch@100895bf` | `100895bf` | `Catch@100895bf` | +| `Catch@1008bb13` | `1008bb13` | `Catch@1008bb13` | +| `Catch@1008c053` | `1008c053` | `Catch@1008c053` | +| `Catch@1008d24f` | `1008d24f` | `Catch@1008d24f` | +| `Catch@1008e8c3` | `1008e8c3` | `Catch@1008e8c3` | +| `Catch@1008e993` | `1008e993` | `Catch@1008e993` | +| `Catch@1009289c` | `1009289c` | `Catch@1009289c` | +| `Catch@10092e99` | `10092e99` | `Catch@10092e99` | +| `Catch@10093461` | `10093461` | `Catch@10093461` | +| `Catch@1009592f` | `1009592f` | `Catch@1009592f` | +| `Catch@10095a25` | `10095a25` | `Catch@10095a25` | +| `Catch@10095b54` | `10095b54` | `Catch@10095b54` | +| `Catch@1009659f` | `1009659f` | `Catch@1009659f` | +| `Catch@10098757` | `10098757` | `Catch@10098757` | +| `??0?$CComCritSecLock@VCComCriticalSection@ATL@@@ATL@@QAE@AAVCComCriticalSection@1@_N@Z` | `10098db0` | `CComCritSecLock` | +| `Catch@10099c04` | `10099c04` | `Catch@10099c04` | +| `Catch@1009abf4` | `1009abf4` | `Catch@1009abf4` | +| `Catch@1009ace4` | `1009ace4` | `Catch@1009ace4` | +| `Catch@1009b58f` | `1009b58f` | `Catch@1009b58f` | +| `Ordinal_2` | `1009b7e0` | `DllRegisterServer` | +| `DllRegisterServer` | `1009b7e0` | `DllRegisterServer` | +| `Ordinal_3` | `1009b7f0` | `DllUnregisterServer` | +| `DllUnregisterServer` | `1009b7f0` | `DllUnregisterServer` | +| `Catch@1009b893` | `1009b893` | `Catch@1009b893` | +| `Catch@1009bc11` | `1009bc11` | `Catch@1009bc11` | +| `Catch@1009bd01` | `1009bd01` | `Catch@1009bd01` | +| `Catch@1009c0c3` | `1009c0c3` | `Catch@1009c0c3` | +| `Ordinal_1` | `1009cf90` | `DllGetClassObject` | +| `DllGetClassObject` | `1009cf90` | `DllGetClassObject` | +| `Catch@1009e5af` | `1009e5af` | `Catch@1009e5af` | +| `Catch@1009e73f` | `1009e73f` | `Catch@1009e73f` | +| `Catch@100c2423` | `100c2423` | `Catch@100c2423` | +| `Catch@100c35bf` | `100c35bf` | `Catch@100c35bf` | +| `Catch@100c369f` | `100c369f` | `Catch@100c369f` | +| `Catch@100db6df` | `100db6df` | `Catch@100db6df` | +| `Catch@100db7bf` | `100db7bf` | `Catch@100db7bf` | +| `Catch@100e2bff` | `100e2bff` | `Catch@100e2bff` | +| `Catch@100e2ebf` | `100e2ebf` | `Catch@100e2ebf` | +| `Catch@100e49d5` | `100e49d5` | `Catch@100e49d5` | +| `Catch@100e4a4a` | `100e4a4a` | `Catch@100e4a4a` | +| `Catch@100e4a62` | `100e4a62` | `Catch@100e4a62` | +| `Catch@100e4ada` | `100e4ada` | `Catch@100e4ada` | +| `Catch@100e4c2a` | `100e4c2a` | `Catch@100e4c2a` | +| `Catch@100e4c9f` | `100e4c9f` | `Catch@100e4c9f` | +| `Catch@100e4cb7` | `100e4cb7` | `Catch@100e4cb7` | +| `Catch@100e4d2f` | `100e4d2f` | `Catch@100e4d2f` | +| `Catch@100e5202` | `100e5202` | `Catch@100e5202` | +| `Catch@100e5277` | `100e5277` | `Catch@100e5277` | +| `Catch@100e528f` | `100e528f` | `Catch@100e528f` | +| `Catch@100e5307` | `100e5307` | `Catch@100e5307` | +| `Catch@100e5484` | `100e5484` | `Catch@100e5484` | +| `Catch@100e54f9` | `100e54f9` | `Catch@100e54f9` | +| `Catch@100e5511` | `100e5511` | `Catch@100e5511` | +| `Catch@100e5589` | `100e5589` | `Catch@100e5589` | +| `Catch@100e5704` | `100e5704` | `Catch@100e5704` | +| `Catch@100e5779` | `100e5779` | `Catch@100e5779` | +| `Catch@100e5791` | `100e5791` | `Catch@100e5791` | +| `Catch@100e5809` | `100e5809` | `Catch@100e5809` | +| `Catch@100e597c` | `100e597c` | `Catch@100e597c` | +| `Catch@100e59f1` | `100e59f1` | `Catch@100e59f1` | +| `Catch@100e5a09` | `100e5a09` | `Catch@100e5a09` | +| `Catch@100e5a81` | `100e5a81` | `Catch@100e5a81` | +| `Catch@100e5ed3` | `100e5ed3` | `Catch@100e5ed3` | +| `Catch@100e5f48` | `100e5f48` | `Catch@100e5f48` | +| `Catch@100e5f60` | `100e5f60` | `Catch@100e5f60` | +| `Catch@100e5fde` | `100e5fde` | `Catch@100e5fde` | +| `Catch@100e60b6` | `100e60b6` | `Catch@100e60b6` | +| `Catch@100e612b` | `100e612b` | `Catch@100e612b` | +| `Catch@100e6143` | `100e6143` | `Catch@100e6143` | +| `Catch@100e61bb` | `100e61bb` | `Catch@100e61bb` | +| `Catch@100e64a8` | `100e64a8` | `Catch@100e64a8` | +| `Catch@100e6536` | `100e6536` | `Catch@100e6536` | +| `Catch@100e6554` | `100e6554` | `Catch@100e6554` | +| `Catch@100e65de` | `100e65de` | `Catch@100e65de` | +| `Catch@100e682c` | `100e682c` | `Catch@100e682c` | +| `Catch@100e68a1` | `100e68a1` | `Catch@100e68a1` | +| `Catch@100e68b9` | `100e68b9` | `Catch@100e68b9` | +| `Catch@100e6931` | `100e6931` | `Catch@100e6931` | +| `Catch@100e6bef` | `100e6bef` | `Catch@100e6bef` | +| `Catch@100e6c7d` | `100e6c7d` | `Catch@100e6c7d` | +| `Catch@100e6c9b` | `100e6c9b` | `Catch@100e6c9b` | +| `Catch@100e6d25` | `100e6d25` | `Catch@100e6d25` | +| `Catch@100e7062` | `100e7062` | `Catch@100e7062` | +| `Catch@100e70f0` | `100e70f0` | `Catch@100e70f0` | +| `Catch@100e710e` | `100e710e` | `Catch@100e710e` | +| `Catch@100e7198` | `100e7198` | `Catch@100e7198` | +| `Catch@100e74b5` | `100e74b5` | `Catch@100e74b5` | +| `Catch@100e7543` | `100e7543` | `Catch@100e7543` | +| `Catch@100e7561` | `100e7561` | `Catch@100e7561` | +| `Catch@100e75eb` | `100e75eb` | `Catch@100e75eb` | +| `Catch@100e794d` | `100e794d` | `Catch@100e794d` | +| `Catch@100e79db` | `100e79db` | `Catch@100e79db` | +| `Catch@100e79f9` | `100e79f9` | `Catch@100e79f9` | +| `Catch@100e7a83` | `100e7a83` | `Catch@100e7a83` | +| `Catch@100e7dea` | `100e7dea` | `Catch@100e7dea` | +| `Catch@100e7e78` | `100e7e78` | `Catch@100e7e78` | +| `Catch@100e7e96` | `100e7e96` | `Catch@100e7e96` | +| `Catch@100e7f20` | `100e7f20` | `Catch@100e7f20` | +| `Catch@100e828c` | `100e828c` | `Catch@100e828c` | +| `Catch@100e831a` | `100e831a` | `Catch@100e831a` | +| `Catch@100e8338` | `100e8338` | `Catch@100e8338` | +| `Catch@100e83c2` | `100e83c2` | `Catch@100e83c2` | +| `Catch@100e86e7` | `100e86e7` | `Catch@100e86e7` | +| `Catch@100e8775` | `100e8775` | `Catch@100e8775` | +| `Catch@100e8793` | `100e8793` | `Catch@100e8793` | +| `Catch@100e881d` | `100e881d` | `Catch@100e881d` | +| `Catch@100e88f9` | `100e88f9` | `Catch@100e88f9` | +| `Catch@100e896e` | `100e896e` | `Catch@100e896e` | +| `Catch@100e8986` | `100e8986` | `Catch@100e8986` | +| `Catch@100e89fe` | `100e89fe` | `Catch@100e89fe` | +| `Catch@100e8dcc` | `100e8dcc` | `Catch@100e8dcc` | +| `Catch@100e8e4e` | `100e8e4e` | `Catch@100e8e4e` | +| `Catch@100e8e69` | `100e8e69` | `Catch@100e8e69` | +| `Catch@100e8ee4` | `100e8ee4` | `Catch@100e8ee4` | +| `Catch@100e9271` | `100e9271` | `Catch@100e9271` | +| `Catch@100e92e6` | `100e92e6` | `Catch@100e92e6` | +| `Catch@100e92fe` | `100e92fe` | `Catch@100e92fe` | +| `Catch@100e9376` | `100e9376` | `Catch@100e9376` | +| `Catch@100e9445` | `100e9445` | `Catch@100e9445` | +| `Catch@100e94ba` | `100e94ba` | `Catch@100e94ba` | +| `Catch@100e94d2` | `100e94d2` | `Catch@100e94d2` | +| `Catch@100e954a` | `100e954a` | `Catch@100e954a` | +| `Catch@100e96ad` | `100e96ad` | `Catch@100e96ad` | +| `Catch@100e9722` | `100e9722` | `Catch@100e9722` | +| `Catch@100e973a` | `100e973a` | `Catch@100e973a` | +| `Catch@100e97b2` | `100e97b2` | `Catch@100e97b2` | +| `Catch@100e9b2f` | `100e9b2f` | `Catch@100e9b2f` | +| `Catch@100e9bae` | `100e9bae` | `Catch@100e9bae` | +| `Catch@100e9bc6` | `100e9bc6` | `Catch@100e9bc6` | +| `Catch@100e9c3e` | `100e9c3e` | `Catch@100e9c3e` | +| `Catch@100e9de3` | `100e9de3` | `Catch@100e9de3` | +| `Catch@100e9e58` | `100e9e58` | `Catch@100e9e58` | +| `Catch@100e9e70` | `100e9e70` | `Catch@100e9e70` | +| `Catch@100e9ee8` | `100e9ee8` | `Catch@100e9ee8` | +| `Catch@100ea091` | `100ea091` | `Catch@100ea091` | +| `Catch@100ea106` | `100ea106` | `Catch@100ea106` | +| `Catch@100ea11e` | `100ea11e` | `Catch@100ea11e` | +| `Catch@100ea196` | `100ea196` | `Catch@100ea196` | +| `Catch@100ea26d` | `100ea26d` | `Catch@100ea26d` | +| `Catch@100ea2e2` | `100ea2e2` | `Catch@100ea2e2` | +| `Catch@100ea2fa` | `100ea2fa` | `Catch@100ea2fa` | +| `Catch@100ea372` | `100ea372` | `Catch@100ea372` | +| `Catch@100ea44f` | `100ea44f` | `Catch@100ea44f` | +| `Catch@100ea4c4` | `100ea4c4` | `Catch@100ea4c4` | +| `Catch@100ea4dc` | `100ea4dc` | `Catch@100ea4dc` | +| `Catch@100ea554` | `100ea554` | `Catch@100ea554` | +| `Catch@100ea62f` | `100ea62f` | `Catch@100ea62f` | +| `Catch@100ea6a4` | `100ea6a4` | `Catch@100ea6a4` | +| `Catch@100ea6bc` | `100ea6bc` | `Catch@100ea6bc` | +| `Catch@100ea734` | `100ea734` | `Catch@100ea734` | +| `Catch@100eb2d8` | `100eb2d8` | `Catch@100eb2d8` | +| `Catch@100eb34d` | `100eb34d` | `Catch@100eb34d` | +| `Catch@100eb365` | `100eb365` | `Catch@100eb365` | +| `Catch@100eb3dd` | `100eb3dd` | `Catch@100eb3dd` | +| `Catch@100eb60a` | `100eb60a` | `Catch@100eb60a` | +| `Catch@100eb67f` | `100eb67f` | `Catch@100eb67f` | +| `Catch@100eb697` | `100eb697` | `Catch@100eb697` | +| `Catch@100eb70f` | `100eb70f` | `Catch@100eb70f` | +| `Catch@100eb897` | `100eb897` | `Catch@100eb897` | +| `Catch@100eb90c` | `100eb90c` | `Catch@100eb90c` | +| `Catch@100eb924` | `100eb924` | `Catch@100eb924` | +| `Catch@100eb99c` | `100eb99c` | `Catch@100eb99c` | +| `Catch@100eba5e` | `100eba5e` | `Catch@100eba5e` | +| `Catch@100ebad3` | `100ebad3` | `Catch@100ebad3` | +| `Catch@100ebaeb` | `100ebaeb` | `Catch@100ebaeb` | +| `Catch@100ebb66` | `100ebb66` | `Catch@100ebb66` | +| `Catch@100ebcc8` | `100ebcc8` | `Catch@100ebcc8` | +| `Catch@100ebd3d` | `100ebd3d` | `Catch@100ebd3d` | +| `Catch@100ebd55` | `100ebd55` | `Catch@100ebd55` | +| `Catch@100ebdcd` | `100ebdcd` | `Catch@100ebdcd` | +| `Catch@100ebf0c` | `100ebf0c` | `Catch@100ebf0c` | +| `Catch@100ebf81` | `100ebf81` | `Catch@100ebf81` | +| `Catch@100ebf99` | `100ebf99` | `Catch@100ebf99` | +| `Catch@100ec011` | `100ec011` | `Catch@100ec011` | +| `Catch@100ec19b` | `100ec19b` | `Catch@100ec19b` | +| `Catch@100ec210` | `100ec210` | `Catch@100ec210` | +| `Catch@100ec228` | `100ec228` | `Catch@100ec228` | +| `Catch@100ec2a0` | `100ec2a0` | `Catch@100ec2a0` | +| `Catch@100ec42b` | `100ec42b` | `Catch@100ec42b` | +| `Catch@100ec4a0` | `100ec4a0` | `Catch@100ec4a0` | +| `Catch@100ec4b8` | `100ec4b8` | `Catch@100ec4b8` | +| `Catch@100ec530` | `100ec530` | `Catch@100ec530` | +| `Catch@100ecaed` | `100ecaed` | `Catch@100ecaed` | +| `Catch@100ecb7b` | `100ecb7b` | `Catch@100ecb7b` | +| `Catch@100ecb99` | `100ecb99` | `Catch@100ecb99` | +| `Catch@100ecc1d` | `100ecc1d` | `Catch@100ecc1d` | +| `Catch@100ecdac` | `100ecdac` | `Catch@100ecdac` | +| `Catch@100ece21` | `100ece21` | `Catch@100ece21` | +| `Catch@100ece39` | `100ece39` | `Catch@100ece39` | +| `Catch@100eceb1` | `100eceb1` | `Catch@100eceb1` | +| `Catch@100ed05e` | `100ed05e` | `Catch@100ed05e` | +| `Catch@100ed0d3` | `100ed0d3` | `Catch@100ed0d3` | +| `Catch@100ed0eb` | `100ed0eb` | `Catch@100ed0eb` | +| `Catch@100ed163` | `100ed163` | `Catch@100ed163` | +| `Catch@100ed30e` | `100ed30e` | `Catch@100ed30e` | +| `Catch@100ed383` | `100ed383` | `Catch@100ed383` | +| `Catch@100ed39b` | `100ed39b` | `Catch@100ed39b` | +| `Catch@100ed413` | `100ed413` | `Catch@100ed413` | +| `Catch@100ed53b` | `100ed53b` | `Catch@100ed53b` | +| `Catch@100ed5b0` | `100ed5b0` | `Catch@100ed5b0` | +| `Catch@100ed5c8` | `100ed5c8` | `Catch@100ed5c8` | +| `Catch@100ed640` | `100ed640` | `Catch@100ed640` | +| `Catch@100ed7c4` | `100ed7c4` | `Catch@100ed7c4` | +| `Catch@100ed839` | `100ed839` | `Catch@100ed839` | +| `Catch@100ed851` | `100ed851` | `Catch@100ed851` | +| `Catch@100ed8c9` | `100ed8c9` | `Catch@100ed8c9` | +| `Catch@100eda41` | `100eda41` | `Catch@100eda41` | +| `Catch@100edab6` | `100edab6` | `Catch@100edab6` | +| `Catch@100edace` | `100edace` | `Catch@100edace` | +| `Catch@100edb46` | `100edb46` | `Catch@100edb46` | +| `Catch@100ede93` | `100ede93` | `Catch@100ede93` | +| `Catch@100edf08` | `100edf08` | `Catch@100edf08` | +| `Catch@100edf20` | `100edf20` | `Catch@100edf20` | +| `Catch@100edf98` | `100edf98` | `Catch@100edf98` | +| `Catch@100ee10b` | `100ee10b` | `Catch@100ee10b` | +| `Catch@100ee180` | `100ee180` | `Catch@100ee180` | +| `Catch@100ee198` | `100ee198` | `Catch@100ee198` | +| `Catch@100ee210` | `100ee210` | `Catch@100ee210` | +| `Catch@100ee6f1` | `100ee6f1` | `Catch@100ee6f1` | +| `Catch@100ee766` | `100ee766` | `Catch@100ee766` | +| `Catch@100ee77e` | `100ee77e` | `Catch@100ee77e` | +| `Catch@100ee7f6` | `100ee7f6` | `Catch@100ee7f6` | +| `Catch@100ee986` | `100ee986` | `Catch@100ee986` | +| `Catch@100ee9fb` | `100ee9fb` | `Catch@100ee9fb` | +| `Catch@100eea13` | `100eea13` | `Catch@100eea13` | +| `Catch@100eea8b` | `100eea8b` | `Catch@100eea8b` | +| `Catch@100ef177` | `100ef177` | `Catch@100ef177` | +| `Catch@100ef205` | `100ef205` | `Catch@100ef205` | +| `Catch@100ef223` | `100ef223` | `Catch@100ef223` | +| `Catch@100ef2ad` | `100ef2ad` | `Catch@100ef2ad` | +| `Catch@100ef60e` | `100ef60e` | `Catch@100ef60e` | +| `Catch@100ef69c` | `100ef69c` | `Catch@100ef69c` | +| `Catch@100ef6ba` | `100ef6ba` | `Catch@100ef6ba` | +| `Catch@100ef744` | `100ef744` | `Catch@100ef744` | +| `Catch@100efa57` | `100efa57` | `Catch@100efa57` | +| `Catch@100efae5` | `100efae5` | `Catch@100efae5` | +| `Catch@100efb03` | `100efb03` | `Catch@100efb03` | +| `Catch@100efb8d` | `100efb8d` | `Catch@100efb8d` | +| `Catch@100efe99` | `100efe99` | `Catch@100efe99` | +| `Catch@100eff27` | `100eff27` | `Catch@100eff27` | +| `Catch@100eff45` | `100eff45` | `Catch@100eff45` | +| `Catch@100effcf` | `100effcf` | `Catch@100effcf` | +| `Catch@100f0178` | `100f0178` | `Catch@100f0178` | +| `Catch@100f01ed` | `100f01ed` | `Catch@100f01ed` | +| `Catch@100f0205` | `100f0205` | `Catch@100f0205` | +| `Catch@100f027d` | `100f027d` | `Catch@100f027d` | +| `Catch@100f03dc` | `100f03dc` | `Catch@100f03dc` | +| `Catch@100f0451` | `100f0451` | `Catch@100f0451` | +| `Catch@100f0469` | `100f0469` | `Catch@100f0469` | +| `Catch@100f04e1` | `100f04e1` | `Catch@100f04e1` | +| `Catch@100f0687` | `100f0687` | `Catch@100f0687` | +| `Catch@100f06fc` | `100f06fc` | `Catch@100f06fc` | +| `Catch@100f0714` | `100f0714` | `Catch@100f0714` | +| `Catch@100f078c` | `100f078c` | `Catch@100f078c` | +| `Catch@100f0928` | `100f0928` | `Catch@100f0928` | +| `Catch@100f099d` | `100f099d` | `Catch@100f099d` | +| `Catch@100f09b5` | `100f09b5` | `Catch@100f09b5` | +| `Catch@100f0a2d` | `100f0a2d` | `Catch@100f0a2d` | +| `Catch@100f0c60` | `100f0c60` | `Catch@100f0c60` | +| `Catch@100f0cd5` | `100f0cd5` | `Catch@100f0cd5` | +| `Catch@100f0ced` | `100f0ced` | `Catch@100f0ced` | +| `Catch@100f0d65` | `100f0d65` | `Catch@100f0d65` | +| `Catch@100f0f00` | `100f0f00` | `Catch@100f0f00` | +| `Catch@100f0f75` | `100f0f75` | `Catch@100f0f75` | +| `Catch@100f0f8d` | `100f0f8d` | `Catch@100f0f8d` | +| `Catch@100f1005` | `100f1005` | `Catch@100f1005` | +| `Catch@100f1276` | `100f1276` | `Catch@100f1276` | +| `Catch@100f12f5` | `100f12f5` | `Catch@100f12f5` | +| `Catch@100f130d` | `100f130d` | `Catch@100f130d` | +| `Catch@100f1385` | `100f1385` | `Catch@100f1385` | +| `Catch@100f179f` | `100f179f` | `Catch@100f179f` | +| `Catch@100f1821` | `100f1821` | `Catch@100f1821` | +| `Catch@100f183c` | `100f183c` | `Catch@100f183c` | +| `Catch@100f18b7` | `100f18b7` | `Catch@100f18b7` | +| `Catch@100f1ec1` | `100f1ec1` | `Catch@100f1ec1` | +| `Catch@100f1f4f` | `100f1f4f` | `Catch@100f1f4f` | +| `Catch@100f1f6d` | `100f1f6d` | `Catch@100f1f6d` | +| `Catch@100f1ff1` | `100f1ff1` | `Catch@100f1ff1` | +| `Catch@100f4ecd` | `100f4ecd` | `Catch@100f4ecd` | +| `Catch@100f5739` | `100f5739` | `Catch@100f5739` | +| `Catch@100f57c7` | `100f57c7` | `Catch@100f57c7` | +| `Catch@100f57e5` | `100f57e5` | `Catch@100f57e5` | +| `Catch@100f586f` | `100f586f` | `Catch@100f586f` | +| `_Uninitialized_move<>` | `100f9fd0` | `_Uninitialized_move<>` | +| `_Uninitialized_move<>` | `100fad40` | `_Uninitialized_move<>` | +| `Catch@100fb49f` | `100fb49f` | `Catch@100fb49f` | +| `Catch@100fbc0c` | `100fbc0c` | `Catch@100fbc0c` | +| `Catch@100fc533` | `100fc533` | `Catch@100fc533` | +| `Catch@100fc63f` | `100fc63f` | `Catch@100fc63f` | +| `Catch@100fcf29` | `100fcf29` | `Catch@100fcf29` | +| `Catch@100fd36f` | `100fd36f` | `Catch@100fd36f` | +| `Catch@100fd57e` | `100fd57e` | `Catch@100fd57e` | +| `Catch@100fe02f` | `100fe02f` | `Catch@100fe02f` | +| `Catch@100fe10f` | `100fe10f` | `Catch@100fe10f` | +| `Catch@100fe1ef` | `100fe1ef` | `Catch@100fe1ef` | +| `Catch@100fe810` | `100fe810` | `Catch@100fe810` | +| `Catch@100ff9cd` | `100ff9cd` | `Catch@100ff9cd` | +| `Catch@100ffaa3` | `100ffaa3` | `Catch@100ffaa3` | +| `Catch@10104467` | `10104467` | `Catch@10104467` | +| `Catch@101057af` | `101057af` | `Catch@101057af` | +| `Catch@1010588f` | `1010588f` | `Catch@1010588f` | +| `Catch@10105c1c` | `10105c1c` | `Catch@10105c1c` | +| `Catch@10105c91` | `10105c91` | `Catch@10105c91` | +| `Catch@10105ca9` | `10105ca9` | `Catch@10105ca9` | +| `Catch@10105d21` | `10105d21` | `Catch@10105d21` | +| `Catch@10105e04` | `10105e04` | `Catch@10105e04` | +| `Catch@10105e79` | `10105e79` | `Catch@10105e79` | +| `Catch@10105e91` | `10105e91` | `Catch@10105e91` | +| `Catch@10105f09` | `10105f09` | `Catch@10105f09` | +| `Catch@10106078` | `10106078` | `Catch@10106078` | +| `Catch@101060ed` | `101060ed` | `Catch@101060ed` | +| `Catch@10106105` | `10106105` | `Catch@10106105` | +| `Catch@1010617d` | `1010617d` | `Catch@1010617d` | +| `Catch@1010625c` | `1010625c` | `Catch@1010625c` | +| `Catch@101062d1` | `101062d1` | `Catch@101062d1` | +| `Catch@101062e9` | `101062e9` | `Catch@101062e9` | +| `Catch@10106361` | `10106361` | `Catch@10106361` | +| `Catch@1010643c` | `1010643c` | `Catch@1010643c` | +| `Catch@101064b1` | `101064b1` | `Catch@101064b1` | +| `Catch@101064c9` | `101064c9` | `Catch@101064c9` | +| `Catch@10106541` | `10106541` | `Catch@10106541` | +| `Catch@10106618` | `10106618` | `Catch@10106618` | +| `Catch@1010668d` | `1010668d` | `Catch@1010668d` | +| `Catch@101066a5` | `101066a5` | `Catch@101066a5` | +| `Catch@1010671d` | `1010671d` | `Catch@1010671d` | +| `Catch@101067f3` | `101067f3` | `Catch@101067f3` | +| `Catch@10106868` | `10106868` | `Catch@10106868` | +| `Catch@10106880` | `10106880` | `Catch@10106880` | +| `Catch@101068f8` | `101068f8` | `Catch@101068f8` | +| `Catch@101069cf` | `101069cf` | `Catch@101069cf` | +| `Catch@10106a44` | `10106a44` | `Catch@10106a44` | +| `Catch@10106a5c` | `10106a5c` | `Catch@10106a5c` | +| `Catch@10106ad4` | `10106ad4` | `Catch@10106ad4` | +| `Catch@10106f2f` | `10106f2f` | `Catch@10106f2f` | +| `Catch@10107099` | `10107099` | `Catch@10107099` | +| `Catch@1010761c` | `1010761c` | `Catch@1010761c` | +| `Catch@10109cbb` | `10109cbb` | `Catch@10109cbb` | +| `Catch@1010ab91` | `1010ab91` | `Catch@1010ab91` | +| `Catch@1010eca3` | `1010eca3` | `Catch@1010eca3` | +| `Catch@1010ed18` | `1010ed18` | `Catch@1010ed18` | +| `Catch@1010ed30` | `1010ed30` | `Catch@1010ed30` | +| `Catch@1010eda8` | `1010eda8` | `Catch@1010eda8` | +| `Catch@1010f32f` | `1010f32f` | `Catch@1010f32f` | +| `Catch@1010f4b2` | `1010f4b2` | `Catch@1010f4b2` | +| `Catch@10110942` | `10110942` | `Catch@10110942` | +| `Catch@1011126f` | `1011126f` | `Catch@1011126f` | +| `Catch@101127cf` | `101127cf` | `Catch@101127cf` | +| `Catch@10112844` | `10112844` | `Catch@10112844` | +| `Catch@1011285c` | `1011285c` | `Catch@1011285c` | +| `Catch@101128d4` | `101128d4` | `Catch@101128d4` | +| `Catch@10119cdf` | `10119cdf` | `Catch@10119cdf` | +| `Catch@1011ac9f` | `1011ac9f` | `Catch@1011ac9f` | +| `Catch@1011ad7f` | `1011ad7f` | `Catch@1011ad7f` | +| `Catch@1011ae5f` | `1011ae5f` | `Catch@1011ae5f` | +| `Catch@1011af3f` | `1011af3f` | `Catch@1011af3f` | +| `Catch@1011b44f` | `1011b44f` | `Catch@1011b44f` | +| `Catch@1011bfcf` | `1011bfcf` | `Catch@1011bfcf` | +| `Catch@1011d1d5` | `1011d1d5` | `Catch@1011d1d5` | +| `Catch@1011d4cf` | `1011d4cf` | `Catch@1011d4cf` | +| `Catch@1011d5af` | `1011d5af` | `Catch@1011d5af` | +| `Catch@1011d6ff` | `1011d6ff` | `Catch@1011d6ff` | +| `Catch@1011d7c9` | `1011d7c9` | `Catch@1011d7c9` | +| `Catch@1011dc6f` | `1011dc6f` | `Catch@1011dc6f` | +| `Catch@1011dd65` | `1011dd65` | `Catch@1011dd65` | +| `Catch@1011de2f` | `1011de2f` | `Catch@1011de2f` | +| `Catch@1011e549` | `1011e549` | `Catch@1011e549` | +| `Catch@1011e6b5` | `1011e6b5` | `Catch@1011e6b5` | +| `Catch@1011eae4` | `1011eae4` | `Catch@1011eae4` | +| `Catch@1011ebc4` | `1011ebc4` | `Catch@1011ebc4` | +| `Catch@1011f024` | `1011f024` | `Catch@1011f024` | +| `Catch@101217ff` | `101217ff` | `Catch@101217ff` | +| `Catch@101220ff` | `101220ff` | `Catch@101220ff` | +| `Catch@10122505` | `10122505` | `Catch@10122505` | +| `Catch@10122c55` | `10122c55` | `Catch@10122c55` | +| `Catch@10122fd4` | `10122fd4` | `Catch@10122fd4` | +| `Catch@10123806` | `10123806` | `Catch@10123806` | +| `Catch@10124288` | `10124288` | `Catch@10124288` | +| `thunk_FUN_10123860` | `101243b0` | `thunk_FUN_10123860` | +| `Catch@1012470f` | `1012470f` | `Catch@1012470f` | +| `Catch@10125129` | `10125129` | `Catch@10125129` | +| `Catch@10127b9f` | `10127b9f` | `Catch@10127b9f` | +| `Catch@101284ad` | `101284ad` | `Catch@101284ad` | +| `Catch@10129ef8` | `10129ef8` | `Catch@10129ef8` | +| `Catch@1012d32f` | `1012d32f` | `Catch@1012d32f` | +| `Catch@1012d40f` | `1012d40f` | `Catch@1012d40f` | +| `Catch@1012d4ef` | `1012d4ef` | `Catch@1012d4ef` | +| `Catch@1012d6a3` | `1012d6a3` | `Catch@1012d6a3` | +| `Catch@1012d773` | `1012d773` | `Catch@1012d773` | +| `Catch@1012de93` | `1012de93` | `Catch@1012de93` | +| `Catch@1012f0cf` | `1012f0cf` | `Catch@1012f0cf` | +| `?Attach@CComBSTR@ATL@@QAEXPA_W@Z` | `10134c30` | `Attach` | +| `Catch@10136a1f` | `10136a1f` | `Catch@10136a1f` | +| `Catch@1013745f` | `1013745f` | `Catch@1013745f` | +| `Catch@10137a4f` | `10137a4f` | `Catch@10137a4f` | +| `Catch@10137e4c` | `10137e4c` | `Catch@10137e4c` | +| `Catch@10139014` | `10139014` | `Catch@10139014` | +| `Catch@10139979` | `10139979` | `Catch@10139979` | +| `Catch@1013e9df` | `1013e9df` | `Catch@1013e9df` | +| `Catch@1013ed5c` | `1013ed5c` | `Catch@1013ed5c` | +| `Catch@1013ee37` | `1013ee37` | `Catch@1013ee37` | +| `Catch@1013f05b` | `1013f05b` | `Catch@1013f05b` | +| `Catch@1013f4a0` | `1013f4a0` | `Catch@1013f4a0` | +| `Catch@1013fb45` | `1013fb45` | `Catch@1013fb45` | +| `Catch@1013fc0d` | `1013fc0d` | `Catch@1013fc0d` | +| `Catch@1014126f` | `1014126f` | `Catch@1014126f` | +| `Catch@101452ab` | `101452ab` | `Catch@101452ab` | +| `Catch@10145344` | `10145344` | `Catch@10145344` | +| `Catch@10145fcd` | `10145fcd` | `Catch@10145fcd` | +| `Catch@1014c23f` | `1014c23f` | `Catch@1014c23f` | +| `Catch@1014c31f` | `1014c31f` | `Catch@1014c31f` | +| `Catch@1014eb71` | `1014eb71` | `Catch@1014eb71` | +| `Catch@1014ebff` | `1014ebff` | `Catch@1014ebff` | +| `Catch@1014ec1d` | `1014ec1d` | `Catch@1014ec1d` | +| `Catch@1014eca1` | `1014eca1` | `Catch@1014eca1` | +| `Catch@1014ef1d` | `1014ef1d` | `Catch@1014ef1d` | +| `??A?$CSimpleArray@GV?$CSimpleArrayEqualHelper@G@ATL@@@ATL@@QAEAAGH@Z` | `1014f0a0` | `operator[]` | +| `VarBstrCat` | `1014f438` | `VarBstrCat` | +| `VarBstrCmp` | `1014f46e` | `VarBstrCmp` | +| `?memmove_s@Checked@ATL@@YAXPAXIPBXI@Z` | `1014f4fc` | `memmove_s` | +| `?RemoveAt@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHH@Z` | `1014f51d` | `RemoveAt` | +| `?RemoveResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `1014f5f7` | `RemoveResourceInstance` | +| `?GetHInstanceAt@CAtlBaseModule@ATL@@QAEPAUHINSTANCE__@@H@Z` | `1014f660` | `GetHInstanceAt` | +| `?Add@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHABQAUHINSTANCE__@@@Z` | `1014f6bd` | `Add` | +| `?AddResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `1014f779` | `AddResourceInstance` | +| `_com_issue_error` | `1014f880` | `_com_issue_error` | +| `?_com_issue_error@@YGXJ@Z` | `1014f880` | `_com_issue_error` | +| `_com_issue_errorex` | `1014f8a0` | `_com_issue_errorex` | +| `?_com_issue_errorex@@YGXJPAUIUnknown@@ABU_GUID@@@Z` | `1014f8a0` | `_com_issue_errorex` | +| `_com_dispatch_method` | `1014f920` | `_com_dispatch_method` | +| `?_com_dispatch_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `1014f920` | `_com_dispatch_method` | +| `_com_dispatch_propget` | `1014f970` | `_com_dispatch_propget` | +| `?_com_dispatch_propget@@YGJPAUIDispatch@@JGPAX@Z` | `1014f970` | `_com_dispatch_propget` | +| `_com_dispatch_propput` | `1014f9a0` | `_com_dispatch_propput` | +| `?_com_dispatch_propput@@YAJPAUIDispatch@@JGZZ` | `1014f9a0` | `_com_dispatch_propput` | +| `??0_variant_t@@QAE@JG@Z` | `1014fa30` | `_variant_t` | +| `ConvertStringToBSTR` | `1014fab0` | `ConvertStringToBSTR` | +| `Catch_All@1014fced` | `1014fced` | `Catch_All@1014fced` | +| `_com_invoke_helper` | `1014fd90` | `_com_invoke_helper` | +| `?_com_invoke_helper@@YAJPAUIDispatch@@JGGPAXPBGPADPAPAUIErrorInfo@@@Z` | `1014fd90` | `_com_invoke_helper` | +| `_com_dispatch_raw_method` | `10150360` | `_com_dispatch_raw_method` | +| `?_com_dispatch_raw_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `10150360` | `_com_dispatch_raw_method` | +| `_com_dispatch_raw_propget` | `101503b0` | `_com_dispatch_raw_propget` | +| `?_com_dispatch_raw_propget@@YGJPAUIDispatch@@JGPAX@Z` | `101503b0` | `_com_dispatch_raw_propget` | +| `_com_dispatch_raw_propput` | `101503e0` | `_com_dispatch_raw_propput` | +| `?_com_dispatch_raw_propput@@YAJPAUIDispatch@@JGZZ` | `101503e0` | `_com_dispatch_raw_propput` | +| `_com_handle_excepinfo` | `10150480` | `_com_handle_excepinfo` | +| `?_com_handle_excepinfo@@YGJAAUtagEXCEPINFO@@PAPAUIErrorInfo@@@Z` | `10150480` | `_com_handle_excepinfo` | +| `??1_Fac_node@std@@QAE@XZ` | `101505ac` | `~_Fac_node` | +| `??_G_Fac_node@std@@QAEPAXI@Z` | `101505c2` | `\`scalar_deleting_destructor'` | +| `Facet_Register` | `101505e3` | `Facet_Register` | +| `_Lock` | `10150732` | `_Lock` | +| `_Unlock` | `10150738` | `_Unlock` | +| `showmanyc` | `1015073e` | `showmanyc` | +| `uflow` | `10150744` | `uflow` | +| `xsgetn` | `1015074a` | `xsgetn` | +| `xsputn` | `10150750` | `xsputn` | +| `setbuf` | `10150756` | `setbuf` | +| `sync` | `1015075c` | `sync` | +| `imbue` | `10150762` | `imbue` | +| `pbackfail` | `101507da` | `pbackfail` | +| `underflow` | `101507e0` | `underflow` | +| `seekoff` | `101507e6` | `seekoff` | +| `seekpos` | `101507ec` | `seekpos` | +| `VerQueryValueW` | `10150882` | `VerQueryValueW` | +| `GetFileVersionInfoW` | `10150888` | `GetFileVersionInfoW` | +| `GetFileVersionInfoSizeW` | `1015088e` | `GetFileVersionInfoSizeW` | +| `operator_delete` | `10150894` | `operator_delete` | +| `memcpy` | `101508a0` | `memcpy` | +| `free` | `101508ac` | `free` | +| `_CxxThrowException` | `101508b2` | `_CxxThrowException` | +| `FID_conflict:\`vector_deleting_destructor'` | `101508c3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Etype_info@@UAEPAXI@Z` | `101508c3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_ECDaoRelationFieldInfo@@UAEPAXI@Z` | `101508c3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Elogic_error@@UAEPAXI@Z` | `101508c3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@std@@UAEPAXI@Z` | `101508c3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@@UAEPAXI@Z` | `101508c3` | `FID_conflict:\`vector_deleting_destructor'` | +| `purecall` | `10150920` | `purecall` | +| `operator_delete[]` | `10150926` | `operator_delete[]` | +| `__security_check_cookie` | `10150932` | `__security_check_cookie` | +| `@__security_check_cookie@4` | `10150932` | `__security_check_cookie` | +| `operator_new` | `10150948` | `operator_new` | +| `what` | `10150960` | `what` | +| `memset` | `10150966` | `memset` | +| `_recalloc` | `101509b4` | `_recalloc` | +| `__alloca_probe` | `101509d0` | `__alloca_probe` | +| `__chkstk` | `101509d0` | `__alloca_probe` | +| `__onexit` | `101509fb` | `__onexit` | +| `_atexit` | `10150a9c` | `_atexit` | +| `malloc` | `10150ac0` | `malloc` | +| `__alloca_probe_16` | `10150b20` | `__alloca_probe_16` | +| `__alloca_probe_8` | `10150b36` | `__alloca_probe_8` | +| `__allmul` | `10150b60` | `__allmul` | +| `__alldiv` | `10150ba0` | `__alldiv` | +| `__ArrayUnwind` | `10150c86` | `__ArrayUnwind` | +| `?__ArrayUnwind@@YGXPAXIHP6EX0@Z@Z` | `10150c86` | `__ArrayUnwind` | +| `\`eh_vector_destructor_iterator'` | `10150ce4` | `\`eh_vector_destructor_iterator'` | +| `??_M@YGXPAXIHP6EX0@Z@Z` | `10150ce4` | `\`eh_vector_destructor_iterator'` | +| `__CRT_INIT@12` | `10150d9c` | `__CRT_INIT@12` | +| `___DllMainCRTStartup` | `10150fa6` | `___DllMainCRTStartup` | +| `entry` | `101510bc` | `entry` | +| `memmove_s` | `101510e0` | `memmove_s` | +| `__EH_epilog3` | `101511be` | `__EH_epilog3` | +| `___report_gsfailure` | `101511f0` | `___report_gsfailure` | +| `_unlock` | `101512f6` | `_unlock` | +| `__dllonexit` | `101512fc` | `__dllonexit` | +| `_lock` | `10151302` | `_lock` | +| `__SEH_prolog4` | `10151310` | `__SEH_prolog4` | +| `__SEH_epilog4` | `10151355` | `__SEH_epilog4` | +| `except_handler4_common` | `1015136a` | `except_handler4_common` | +| `__ValidateImageBase` | `101513e0` | `__ValidateImageBase` | +| `__FindPESection` | `10151420` | `__FindPESection` | +| `__IsNonwritableInCurrentImage` | `10151470` | `__IsNonwritableInCurrentImage` | +| `initterm` | `1015152c` | `initterm` | +| `initterm_e` | `10151532` | `initterm_e` | +| `_amsg_exit` | `10151538` | `_amsg_exit` | +| `___security_init_cookie` | `10151544` | `___security_init_cookie` | +| `_type_info_dtor_internal_method` | `101515e0` | `_type_info_dtor_internal_method` | +| `_crt_debugger_hook` | `101515e6` | `_crt_debugger_hook` | +| `Unwind@10151640` | `10151640` | `Unwind@10151640` | +| `Unwind@10151670` | `10151670` | `Unwind@10151670` | +| `Unwind@101516a0` | `101516a0` | `Unwind@101516a0` | +| `Unwind@101516d0` | `101516d0` | `Unwind@101516d0` | +| `Unwind@10151700` | `10151700` | `Unwind@10151700` | +| `Unwind@10151730` | `10151730` | `Unwind@10151730` | +| `Unwind@10151760` | `10151760` | `Unwind@10151760` | +| `Unwind@10151790` | `10151790` | `Unwind@10151790` | +| `Unwind@10151798` | `10151798` | `Unwind@10151798` | +| `Unwind@101517c0` | `101517c0` | `Unwind@101517c0` | +| `Unwind@101517c8` | `101517c8` | `Unwind@101517c8` | +| `Unwind@101517d0` | `101517d0` | `Unwind@101517d0` | +| `Unwind@101517d8` | `101517d8` | `Unwind@101517d8` | +| `Unwind@101517e0` | `101517e0` | `Unwind@101517e0` | +| `Unwind@10151810` | `10151810` | `Unwind@10151810` | +| `Unwind@10151840` | `10151840` | `Unwind@10151840` | +| `Unwind@10151870` | `10151870` | `Unwind@10151870` | +| `Unwind@101518a0` | `101518a0` | `Unwind@101518a0` | +| `Unwind@101518d0` | `101518d0` | `Unwind@101518d0` | +| `Unwind@10151900` | `10151900` | `Unwind@10151900` | +| `Unwind@10151930` | `10151930` | `Unwind@10151930` | +| `Unwind@10151960` | `10151960` | `Unwind@10151960` | +| `Unwind@10151990` | `10151990` | `Unwind@10151990` | +| `Unwind@101519c0` | `101519c0` | `Unwind@101519c0` | +| `Unwind@101519f0` | `101519f0` | `Unwind@101519f0` | +| `Unwind@10151a20` | `10151a20` | `Unwind@10151a20` | +| `Unwind@10151a50` | `10151a50` | `Unwind@10151a50` | +| `Unwind@10151a80` | `10151a80` | `Unwind@10151a80` | +| `Unwind@10151ab0` | `10151ab0` | `Unwind@10151ab0` | +| `Unwind@10151ae0` | `10151ae0` | `Unwind@10151ae0` | +| `Unwind@10151b10` | `10151b10` | `Unwind@10151b10` | +| `Unwind@10151b40` | `10151b40` | `Unwind@10151b40` | +| `Unwind@10151b70` | `10151b70` | `Unwind@10151b70` | +| `Unwind@10151ba0` | `10151ba0` | `Unwind@10151ba0` | +| `Unwind@10151bd0` | `10151bd0` | `Unwind@10151bd0` | +| `Unwind@10151c00` | `10151c00` | `Unwind@10151c00` | +| `Unwind@10151c30` | `10151c30` | `Unwind@10151c30` | +| `Unwind@10151c60` | `10151c60` | `Unwind@10151c60` | +| `Unwind@10151c90` | `10151c90` | `Unwind@10151c90` | +| `Unwind@10151cc0` | `10151cc0` | `Unwind@10151cc0` | +| `Unwind@10151cf0` | `10151cf0` | `Unwind@10151cf0` | +| `Unwind@10151d20` | `10151d20` | `Unwind@10151d20` | +| `Unwind@10151d50` | `10151d50` | `Unwind@10151d50` | +| `Unwind@10151d80` | `10151d80` | `Unwind@10151d80` | +| `Unwind@10151db0` | `10151db0` | `Unwind@10151db0` | +| `Unwind@10151de0` | `10151de0` | `Unwind@10151de0` | +| `Unwind@10151e10` | `10151e10` | `Unwind@10151e10` | +| `Unwind@10151e40` | `10151e40` | `Unwind@10151e40` | +| `Unwind@10151e70` | `10151e70` | `Unwind@10151e70` | +| `Unwind@10151ea0` | `10151ea0` | `Unwind@10151ea0` | +| `Unwind@10151ed0` | `10151ed0` | `Unwind@10151ed0` | +| `Unwind@10151f00` | `10151f00` | `Unwind@10151f00` | +| `Unwind@10151f30` | `10151f30` | `Unwind@10151f30` | +| `Unwind@10151f60` | `10151f60` | `Unwind@10151f60` | +| `Unwind@10151f90` | `10151f90` | `Unwind@10151f90` | +| `Unwind@10151fc0` | `10151fc0` | `Unwind@10151fc0` | +| `Unwind@10151ff0` | `10151ff0` | `Unwind@10151ff0` | +| `Unwind@10152020` | `10152020` | `Unwind@10152020` | +| `Unwind@10152050` | `10152050` | `Unwind@10152050` | +| `Unwind@10152080` | `10152080` | `Unwind@10152080` | +| `Unwind@101520b0` | `101520b0` | `Unwind@101520b0` | +| `Unwind@101520e0` | `101520e0` | `Unwind@101520e0` | +| `Unwind@10152110` | `10152110` | `Unwind@10152110` | +| `Unwind@10152140` | `10152140` | `Unwind@10152140` | +| `Unwind@10152170` | `10152170` | `Unwind@10152170` | +| `Unwind@101521a0` | `101521a0` | `Unwind@101521a0` | +| `Unwind@101521d0` | `101521d0` | `Unwind@101521d0` | +| `Unwind@10152200` | `10152200` | `Unwind@10152200` | +| `Unwind@10152230` | `10152230` | `Unwind@10152230` | +| `Unwind@10152260` | `10152260` | `Unwind@10152260` | +| `Unwind@10152290` | `10152290` | `Unwind@10152290` | +| `Unwind@101522c0` | `101522c0` | `Unwind@101522c0` | +| `Unwind@101522f0` | `101522f0` | `Unwind@101522f0` | +| `Unwind@10152320` | `10152320` | `Unwind@10152320` | +| `Unwind@10152350` | `10152350` | `Unwind@10152350` | +| `Unwind@10152380` | `10152380` | `Unwind@10152380` | +| `Unwind@101523b0` | `101523b0` | `Unwind@101523b0` | +| `Unwind@101523e0` | `101523e0` | `Unwind@101523e0` | +| `Unwind@10152410` | `10152410` | `Unwind@10152410` | +| `Unwind@10152440` | `10152440` | `Unwind@10152440` | +| `Unwind@10152470` | `10152470` | `Unwind@10152470` | +| `Unwind@101524a0` | `101524a0` | `Unwind@101524a0` | +| `Unwind@101524d0` | `101524d0` | `Unwind@101524d0` | +| `Unwind@10152500` | `10152500` | `Unwind@10152500` | +| `Unwind@10152530` | `10152530` | `Unwind@10152530` | +| `Unwind@10152560` | `10152560` | `Unwind@10152560` | +| `Unwind@10152590` | `10152590` | `Unwind@10152590` | +| `Unwind@101525c0` | `101525c0` | `Unwind@101525c0` | +| `Unwind@101525f0` | `101525f0` | `Unwind@101525f0` | +| `Unwind@10152620` | `10152620` | `Unwind@10152620` | +| `Unwind@10152650` | `10152650` | `Unwind@10152650` | +| `Unwind@10152680` | `10152680` | `Unwind@10152680` | +| `Unwind@101526b0` | `101526b0` | `Unwind@101526b0` | +| `Unwind@101526e0` | `101526e0` | `Unwind@101526e0` | +| `Unwind@10152710` | `10152710` | `Unwind@10152710` | +| `Unwind@10152740` | `10152740` | `Unwind@10152740` | +| `Unwind@10152770` | `10152770` | `Unwind@10152770` | +| `Unwind@101527a0` | `101527a0` | `Unwind@101527a0` | +| `Unwind@101527d0` | `101527d0` | `Unwind@101527d0` | +| `Unwind@10152800` | `10152800` | `Unwind@10152800` | +| `Unwind@10152830` | `10152830` | `Unwind@10152830` | +| `Unwind@10152860` | `10152860` | `Unwind@10152860` | +| `Unwind@10152890` | `10152890` | `Unwind@10152890` | +| `Unwind@101528c0` | `101528c0` | `Unwind@101528c0` | +| `Unwind@101528f0` | `101528f0` | `Unwind@101528f0` | +| `Unwind@10152920` | `10152920` | `Unwind@10152920` | +| `Unwind@10152950` | `10152950` | `Unwind@10152950` | +| `Unwind@10152980` | `10152980` | `Unwind@10152980` | +| `Unwind@101529b0` | `101529b0` | `Unwind@101529b0` | +| `Unwind@101529e0` | `101529e0` | `Unwind@101529e0` | +| `Unwind@10152a10` | `10152a10` | `Unwind@10152a10` | +| `Unwind@10152a40` | `10152a40` | `Unwind@10152a40` | +| `Unwind@10152a70` | `10152a70` | `Unwind@10152a70` | +| `Unwind@10152aa0` | `10152aa0` | `Unwind@10152aa0` | +| `Unwind@10152ad0` | `10152ad0` | `Unwind@10152ad0` | +| `Unwind@10152b00` | `10152b00` | `Unwind@10152b00` | +| `Unwind@10152b40` | `10152b40` | `Unwind@10152b40` | +| `Unwind@10152b70` | `10152b70` | `Unwind@10152b70` | +| `Unwind@10152ba0` | `10152ba0` | `Unwind@10152ba0` | +| `Unwind@10152bd0` | `10152bd0` | `Unwind@10152bd0` | +| `Unwind@10152c00` | `10152c00` | `Unwind@10152c00` | +| `Unwind@10152c30` | `10152c30` | `Unwind@10152c30` | +| `Unwind@10152c60` | `10152c60` | `Unwind@10152c60` | +| `Unwind@10152c68` | `10152c68` | `Unwind@10152c68` | +| `Unwind@10152c73` | `10152c73` | `Unwind@10152c73` | +| `Unwind@10152ca0` | `10152ca0` | `Unwind@10152ca0` | +| `Unwind@10152cd0` | `10152cd0` | `Unwind@10152cd0` | +| `Unwind@10152d00` | `10152d00` | `Unwind@10152d00` | +| `Unwind@10152d30` | `10152d30` | `Unwind@10152d30` | +| `Unwind@10152d60` | `10152d60` | `Unwind@10152d60` | +| `Unwind@10152d90` | `10152d90` | `Unwind@10152d90` | +| `Unwind@10152dc0` | `10152dc0` | `Unwind@10152dc0` | +| `Unwind@10152df0` | `10152df0` | `Unwind@10152df0` | +| `Unwind@10152e20` | `10152e20` | `Unwind@10152e20` | +| `Unwind@10152e50` | `10152e50` | `Unwind@10152e50` | +| `Unwind@10152e80` | `10152e80` | `Unwind@10152e80` | +| `Unwind@10152eb0` | `10152eb0` | `Unwind@10152eb0` | +| `Unwind@10152ee0` | `10152ee0` | `Unwind@10152ee0` | +| `Unwind@10152ee8` | `10152ee8` | `Unwind@10152ee8` | +| `Unwind@10152ef0` | `10152ef0` | `Unwind@10152ef0` | +| `Unwind@10152f20` | `10152f20` | `Unwind@10152f20` | +| `Unwind@10152f50` | `10152f50` | `Unwind@10152f50` | +| `Unwind@10152f80` | `10152f80` | `Unwind@10152f80` | +| `Unwind@10152fb0` | `10152fb0` | `Unwind@10152fb0` | +| `Unwind@10152fe0` | `10152fe0` | `Unwind@10152fe0` | +| `Unwind@10153010` | `10153010` | `Unwind@10153010` | +| `Unwind@10153040` | `10153040` | `Unwind@10153040` | +| `Unwind@10153070` | `10153070` | `Unwind@10153070` | +| `Unwind@101530a0` | `101530a0` | `Unwind@101530a0` | +| `Unwind@101530d0` | `101530d0` | `Unwind@101530d0` | +| `Unwind@10153100` | `10153100` | `Unwind@10153100` | +| `Unwind@10153130` | `10153130` | `Unwind@10153130` | +| `Unwind@10153160` | `10153160` | `Unwind@10153160` | +| `Unwind@10153190` | `10153190` | `Unwind@10153190` | +| `Unwind@101531c0` | `101531c0` | `Unwind@101531c0` | +| `Unwind@101531f0` | `101531f0` | `Unwind@101531f0` | +| `Unwind@10153220` | `10153220` | `Unwind@10153220` | +| `Unwind@10153250` | `10153250` | `Unwind@10153250` | +| `Unwind@10153280` | `10153280` | `Unwind@10153280` | +| `Unwind@101532b0` | `101532b0` | `Unwind@101532b0` | +| `Unwind@101532bb` | `101532bb` | `Unwind@101532bb` | +| `Unwind@101532f0` | `101532f0` | `Unwind@101532f0` | +| `Unwind@10153320` | `10153320` | `Unwind@10153320` | +| `Unwind@10153350` | `10153350` | `Unwind@10153350` | +| `Unwind@10153380` | `10153380` | `Unwind@10153380` | +| `Unwind@101533b0` | `101533b0` | `Unwind@101533b0` | +| `Unwind@101533e0` | `101533e0` | `Unwind@101533e0` | +| `Unwind@10153410` | `10153410` | `Unwind@10153410` | +| `Unwind@10153440` | `10153440` | `Unwind@10153440` | +| `Unwind@10153470` | `10153470` | `Unwind@10153470` | +| `Unwind@101534a0` | `101534a0` | `Unwind@101534a0` | +| `Unwind@101534d0` | `101534d0` | `Unwind@101534d0` | +| `Unwind@10153500` | `10153500` | `Unwind@10153500` | +| `Unwind@10153530` | `10153530` | `Unwind@10153530` | +| `Unwind@10153560` | `10153560` | `Unwind@10153560` | +| `Unwind@10153590` | `10153590` | `Unwind@10153590` | +| `Unwind@101535c0` | `101535c0` | `Unwind@101535c0` | +| `Unwind@101535f0` | `101535f0` | `Unwind@101535f0` | +| `Unwind@10153620` | `10153620` | `Unwind@10153620` | +| `Unwind@10153650` | `10153650` | `Unwind@10153650` | +| `Unwind@10153680` | `10153680` | `Unwind@10153680` | +| `Unwind@101536b0` | `101536b0` | `Unwind@101536b0` | +| `Unwind@101536e0` | `101536e0` | `Unwind@101536e0` | +| `Unwind@10153710` | `10153710` | `Unwind@10153710` | +| `Unwind@10153740` | `10153740` | `Unwind@10153740` | +| `Unwind@10153770` | `10153770` | `Unwind@10153770` | +| `Unwind@101537a0` | `101537a0` | `Unwind@101537a0` | +| `Unwind@101537d0` | `101537d0` | `Unwind@101537d0` | +| `Unwind@10153800` | `10153800` | `Unwind@10153800` | +| `Unwind@10153830` | `10153830` | `Unwind@10153830` | +| `Unwind@10153860` | `10153860` | `Unwind@10153860` | +| `Unwind@10153890` | `10153890` | `Unwind@10153890` | +| `Unwind@101538e0` | `101538e0` | `Unwind@101538e0` | +| `Unwind@10153910` | `10153910` | `Unwind@10153910` | +| `Unwind@10153918` | `10153918` | `Unwind@10153918` | +| `Unwind@10153940` | `10153940` | `Unwind@10153940` | +| `Unwind@10153970` | `10153970` | `Unwind@10153970` | +| `Unwind@101539a0` | `101539a0` | `Unwind@101539a0` | +| `Unwind@101539d0` | `101539d0` | `Unwind@101539d0` | +| `Unwind@10153a00` | `10153a00` | `Unwind@10153a00` | +| `Unwind@10153a08` | `10153a08` | `Unwind@10153a08` | +| `Unwind@10153a10` | `10153a10` | `Unwind@10153a10` | +| `Unwind@10153a40` | `10153a40` | `Unwind@10153a40` | +| `Unwind@10153a48` | `10153a48` | `Unwind@10153a48` | +| `Unwind@10153a70` | `10153a70` | `Unwind@10153a70` | +| `Unwind@10153aa0` | `10153aa0` | `Unwind@10153aa0` | +| `Unwind@10153ad0` | `10153ad0` | `Unwind@10153ad0` | +| `Unwind@10153b00` | `10153b00` | `Unwind@10153b00` | +| `Unwind@10153b30` | `10153b30` | `Unwind@10153b30` | +| `Unwind@10153b60` | `10153b60` | `Unwind@10153b60` | +| `Unwind@10153b90` | `10153b90` | `Unwind@10153b90` | +| `Unwind@10153bc0` | `10153bc0` | `Unwind@10153bc0` | +| `Unwind@10153bf0` | `10153bf0` | `Unwind@10153bf0` | +| `Unwind@10153c20` | `10153c20` | `Unwind@10153c20` | +| `Unwind@10153c50` | `10153c50` | `Unwind@10153c50` | +| `Unwind@10153c58` | `10153c58` | `Unwind@10153c58` | +| `Unwind@10153c60` | `10153c60` | `Unwind@10153c60` | +| `Unwind@10153c90` | `10153c90` | `Unwind@10153c90` | +| `Unwind@10153c98` | `10153c98` | `Unwind@10153c98` | +| `Unwind@10153ca0` | `10153ca0` | `Unwind@10153ca0` | +| `Unwind@10153ca8` | `10153ca8` | `Unwind@10153ca8` | +| `Unwind@10153cd0` | `10153cd0` | `Unwind@10153cd0` | +| `Unwind@10153cd8` | `10153cd8` | `Unwind@10153cd8` | +| `Unwind@10153ce0` | `10153ce0` | `Unwind@10153ce0` | +| `Unwind@10153d10` | `10153d10` | `Unwind@10153d10` | +| `Unwind@10153d18` | `10153d18` | `Unwind@10153d18` | +| `Unwind@10153d20` | `10153d20` | `Unwind@10153d20` | +| `Unwind@10153d28` | `10153d28` | `Unwind@10153d28` | +| `Unwind@10153d50` | `10153d50` | `Unwind@10153d50` | +| `Unwind@10153d5b` | `10153d5b` | `Unwind@10153d5b` | +| `Unwind@10153d66` | `10153d66` | `Unwind@10153d66` | +| `Unwind@10153d71` | `10153d71` | `Unwind@10153d71` | +| `Unwind@10153da0` | `10153da0` | `Unwind@10153da0` | +| `Unwind@10153dd0` | `10153dd0` | `Unwind@10153dd0` | +| `Unwind@10153e00` | `10153e00` | `Unwind@10153e00` | +| `Unwind@10153e30` | `10153e30` | `Unwind@10153e30` | +| `Unwind@10153e60` | `10153e60` | `Unwind@10153e60` | +| `Unwind@10153e90` | `10153e90` | `Unwind@10153e90` | +| `Unwind@10153ec0` | `10153ec0` | `Unwind@10153ec0` | +| `Unwind@10153ef0` | `10153ef0` | `Unwind@10153ef0` | +| `Unwind@10153f20` | `10153f20` | `Unwind@10153f20` | +| `Unwind@10153f50` | `10153f50` | `Unwind@10153f50` | +| `Unwind@10153f80` | `10153f80` | `Unwind@10153f80` | +| `Unwind@10153fb0` | `10153fb0` | `Unwind@10153fb0` | +| `Unwind@10153fe0` | `10153fe0` | `Unwind@10153fe0` | +| `Unwind@10154010` | `10154010` | `Unwind@10154010` | +| `Unwind@10154040` | `10154040` | `Unwind@10154040` | +| `Unwind@10154070` | `10154070` | `Unwind@10154070` | +| `Unwind@101540a0` | `101540a0` | `Unwind@101540a0` | +| `Unwind@101540d0` | `101540d0` | `Unwind@101540d0` | +| `Unwind@10154100` | `10154100` | `Unwind@10154100` | +| `Unwind@10154130` | `10154130` | `Unwind@10154130` | +| `Unwind@10154160` | `10154160` | `Unwind@10154160` | +| `Unwind@10154190` | `10154190` | `Unwind@10154190` | +| `Unwind@101541c0` | `101541c0` | `Unwind@101541c0` | +| `Unwind@101541f0` | `101541f0` | `Unwind@101541f0` | +| `Unwind@10154220` | `10154220` | `Unwind@10154220` | +| `Unwind@10154250` | `10154250` | `Unwind@10154250` | +| `Unwind@10154280` | `10154280` | `Unwind@10154280` | +| `Unwind@101542b0` | `101542b0` | `Unwind@101542b0` | +| `Unwind@101542e0` | `101542e0` | `Unwind@101542e0` | +| `Unwind@10154310` | `10154310` | `Unwind@10154310` | +| `Unwind@10154340` | `10154340` | `Unwind@10154340` | +| `Unwind@10154370` | `10154370` | `Unwind@10154370` | +| `Unwind@101543a0` | `101543a0` | `Unwind@101543a0` | +| `Unwind@101543d0` | `101543d0` | `Unwind@101543d0` | +| `Unwind@101543d8` | `101543d8` | `Unwind@101543d8` | +| `Unwind@10154400` | `10154400` | `Unwind@10154400` | +| `Unwind@10154408` | `10154408` | `Unwind@10154408` | +| `Unwind@10154413` | `10154413` | `Unwind@10154413` | +| `Unwind@10154440` | `10154440` | `Unwind@10154440` | +| `Unwind@10154470` | `10154470` | `Unwind@10154470` | +| `Unwind@101544a0` | `101544a0` | `Unwind@101544a0` | +| `Unwind@101544a8` | `101544a8` | `Unwind@101544a8` | +| `Unwind@101544b0` | `101544b0` | `Unwind@101544b0` | +| `Unwind@101544b8` | `101544b8` | `Unwind@101544b8` | +| `Unwind@101544c0` | `101544c0` | `Unwind@101544c0` | +| `Unwind@101544c8` | `101544c8` | `Unwind@101544c8` | +| `Unwind@101544f0` | `101544f0` | `Unwind@101544f0` | +| `Unwind@101544f8` | `101544f8` | `Unwind@101544f8` | +| `Unwind@10154503` | `10154503` | `Unwind@10154503` | +| `Unwind@1015450e` | `1015450e` | `Unwind@1015450e` | +| `Unwind@10154519` | `10154519` | `Unwind@10154519` | +| `Unwind@10154524` | `10154524` | `Unwind@10154524` | +| `Unwind@10154550` | `10154550` | `Unwind@10154550` | +| `Unwind@10154558` | `10154558` | `Unwind@10154558` | +| `Unwind@10154560` | `10154560` | `Unwind@10154560` | +| `Unwind@1015456b` | `1015456b` | `Unwind@1015456b` | +| `Unwind@10154576` | `10154576` | `Unwind@10154576` | +| `Unwind@10154581` | `10154581` | `Unwind@10154581` | +| `Unwind@1015458c` | `1015458c` | `Unwind@1015458c` | +| `Unwind@101545b0` | `101545b0` | `Unwind@101545b0` | +| `Unwind@101545e0` | `101545e0` | `Unwind@101545e0` | +| `Unwind@101545e8` | `101545e8` | `Unwind@101545e8` | +| `Unwind@101545f0` | `101545f0` | `Unwind@101545f0` | +| `Unwind@10154620` | `10154620` | `Unwind@10154620` | +| `Unwind@10154628` | `10154628` | `Unwind@10154628` | +| `Unwind@10154630` | `10154630` | `Unwind@10154630` | +| `Unwind@10154660` | `10154660` | `Unwind@10154660` | +| `Unwind@10154668` | `10154668` | `Unwind@10154668` | +| `Unwind@10154670` | `10154670` | `Unwind@10154670` | +| `Unwind@1015467b` | `1015467b` | `Unwind@1015467b` | +| `Unwind@10154686` | `10154686` | `Unwind@10154686` | +| `Unwind@10154691` | `10154691` | `Unwind@10154691` | +| `Unwind@1015469c` | `1015469c` | `Unwind@1015469c` | +| `Unwind@101546c0` | `101546c0` | `Unwind@101546c0` | +| `Unwind@101546c8` | `101546c8` | `Unwind@101546c8` | +| `Unwind@101546f0` | `101546f0` | `Unwind@101546f0` | +| `Unwind@101546f8` | `101546f8` | `Unwind@101546f8` | +| `Unwind@10154700` | `10154700` | `Unwind@10154700` | +| `Unwind@10154730` | `10154730` | `Unwind@10154730` | +| `Unwind@10154738` | `10154738` | `Unwind@10154738` | +| `Unwind@10154740` | `10154740` | `Unwind@10154740` | +| `Unwind@10154748` | `10154748` | `Unwind@10154748` | +| `Unwind@10154753` | `10154753` | `Unwind@10154753` | +| `Unwind@1015475b` | `1015475b` | `Unwind@1015475b` | +| `Unwind@10154790` | `10154790` | `Unwind@10154790` | +| `Unwind@10154798` | `10154798` | `Unwind@10154798` | +| `Unwind@101547a3` | `101547a3` | `Unwind@101547a3` | +| `Unwind@101547ae` | `101547ae` | `Unwind@101547ae` | +| `Unwind@101547b6` | `101547b6` | `Unwind@101547b6` | +| `Unwind@101547be` | `101547be` | `Unwind@101547be` | +| `Unwind@101547f0` | `101547f0` | `Unwind@101547f0` | +| `Unwind@10154820` | `10154820` | `Unwind@10154820` | +| `Unwind@10154828` | `10154828` | `Unwind@10154828` | +| `Unwind@10154850` | `10154850` | `Unwind@10154850` | +| `Unwind@10154858` | `10154858` | `Unwind@10154858` | +| `Unwind@10154880` | `10154880` | `Unwind@10154880` | +| `Unwind@10154888` | `10154888` | `Unwind@10154888` | +| `Unwind@101548b0` | `101548b0` | `Unwind@101548b0` | +| `Unwind@101548b8` | `101548b8` | `Unwind@101548b8` | +| `Unwind@101548e0` | `101548e0` | `Unwind@101548e0` | +| `Unwind@101548e8` | `101548e8` | `Unwind@101548e8` | +| `Unwind@10154910` | `10154910` | `Unwind@10154910` | +| `Unwind@10154918` | `10154918` | `Unwind@10154918` | +| `Unwind@10154940` | `10154940` | `Unwind@10154940` | +| `Unwind@10154970` | `10154970` | `Unwind@10154970` | +| `Unwind@10154978` | `10154978` | `Unwind@10154978` | +| `Unwind@101549a0` | `101549a0` | `Unwind@101549a0` | +| `Unwind@101549a8` | `101549a8` | `Unwind@101549a8` | +| `Unwind@101549d0` | `101549d0` | `Unwind@101549d0` | +| `Unwind@101549d8` | `101549d8` | `Unwind@101549d8` | +| `Unwind@10154a00` | `10154a00` | `Unwind@10154a00` | +| `Unwind@10154a08` | `10154a08` | `Unwind@10154a08` | +| `Unwind@10154a30` | `10154a30` | `Unwind@10154a30` | +| `Unwind@10154a38` | `10154a38` | `Unwind@10154a38` | +| `Unwind@10154a60` | `10154a60` | `Unwind@10154a60` | +| `Unwind@10154a90` | `10154a90` | `Unwind@10154a90` | +| `Unwind@10154ad0` | `10154ad0` | `Unwind@10154ad0` | +| `Unwind@10154ad8` | `10154ad8` | `Unwind@10154ad8` | +| `Unwind@10154b00` | `10154b00` | `Unwind@10154b00` | +| `Unwind@10154b08` | `10154b08` | `Unwind@10154b08` | +| `Unwind@10154b10` | `10154b10` | `Unwind@10154b10` | +| `Unwind@10154b40` | `10154b40` | `Unwind@10154b40` | +| `Unwind@10154b48` | `10154b48` | `Unwind@10154b48` | +| `Unwind@10154b70` | `10154b70` | `Unwind@10154b70` | +| `Unwind@10154b78` | `10154b78` | `Unwind@10154b78` | +| `Unwind@10154ba0` | `10154ba0` | `Unwind@10154ba0` | +| `Unwind@10154ba8` | `10154ba8` | `Unwind@10154ba8` | +| `Unwind@10154bd0` | `10154bd0` | `Unwind@10154bd0` | +| `Unwind@10154bd8` | `10154bd8` | `Unwind@10154bd8` | +| `Unwind@10154c00` | `10154c00` | `Unwind@10154c00` | +| `Unwind@10154c08` | `10154c08` | `Unwind@10154c08` | +| `Unwind@10154c30` | `10154c30` | `Unwind@10154c30` | +| `Unwind@10154c60` | `10154c60` | `Unwind@10154c60` | +| `Unwind@10154c90` | `10154c90` | `Unwind@10154c90` | +| `Unwind@10154cc0` | `10154cc0` | `Unwind@10154cc0` | +| `Unwind@10154cc8` | `10154cc8` | `Unwind@10154cc8` | +| `Unwind@10154cf0` | `10154cf0` | `Unwind@10154cf0` | +| `Unwind@10154d20` | `10154d20` | `Unwind@10154d20` | +| `Unwind@10154d28` | `10154d28` | `Unwind@10154d28` | +| `Unwind@10154d50` | `10154d50` | `Unwind@10154d50` | +| `Unwind@10154d58` | `10154d58` | `Unwind@10154d58` | +| `Unwind@10154d80` | `10154d80` | `Unwind@10154d80` | +| `Unwind@10154db0` | `10154db0` | `Unwind@10154db0` | +| `Unwind@10154dbc` | `10154dbc` | `Unwind@10154dbc` | +| `Unwind@10154dc7` | `10154dc7` | `Unwind@10154dc7` | +| `Unwind@10154df0` | `10154df0` | `Unwind@10154df0` | +| `Unwind@10154df9` | `10154df9` | `Unwind@10154df9` | +| `Unwind@10154e20` | `10154e20` | `Unwind@10154e20` | +| `Unwind@10154e29` | `10154e29` | `Unwind@10154e29` | +| `Unwind@10154e50` | `10154e50` | `Unwind@10154e50` | +| `Unwind@10154e80` | `10154e80` | `Unwind@10154e80` | +| `Unwind@10154e89` | `10154e89` | `Unwind@10154e89` | +| `Unwind@10154eb0` | `10154eb0` | `Unwind@10154eb0` | +| `Unwind@10154eb9` | `10154eb9` | `Unwind@10154eb9` | +| `Unwind@10154ee0` | `10154ee0` | `Unwind@10154ee0` | +| `Unwind@10154f10` | `10154f10` | `Unwind@10154f10` | +| `Unwind@10154f40` | `10154f40` | `Unwind@10154f40` | +| `Unwind@10154f70` | `10154f70` | `Unwind@10154f70` | +| `Unwind@10154fa0` | `10154fa0` | `Unwind@10154fa0` | +| `Unwind@10154fd0` | `10154fd0` | `Unwind@10154fd0` | +| `Unwind@10155000` | `10155000` | `Unwind@10155000` | +| `Unwind@10155030` | `10155030` | `Unwind@10155030` | +| `Unwind@10155060` | `10155060` | `Unwind@10155060` | +| `Unwind@10155090` | `10155090` | `Unwind@10155090` | +| `Unwind@101550c0` | `101550c0` | `Unwind@101550c0` | +| `Unwind@101550f0` | `101550f0` | `Unwind@101550f0` | +| `Unwind@10155120` | `10155120` | `Unwind@10155120` | +| `Unwind@10155150` | `10155150` | `Unwind@10155150` | +| `Unwind@10155180` | `10155180` | `Unwind@10155180` | +| `Unwind@101551b0` | `101551b0` | `Unwind@101551b0` | +| `Unwind@101551e0` | `101551e0` | `Unwind@101551e0` | +| `Unwind@10155210` | `10155210` | `Unwind@10155210` | +| `Unwind@10155240` | `10155240` | `Unwind@10155240` | +| `Unwind@10155270` | `10155270` | `Unwind@10155270` | +| `Unwind@101552a0` | `101552a0` | `Unwind@101552a0` | +| `Unwind@101552d0` | `101552d0` | `Unwind@101552d0` | +| `Unwind@10155300` | `10155300` | `Unwind@10155300` | +| `Unwind@10155330` | `10155330` | `Unwind@10155330` | +| `Unwind@10155360` | `10155360` | `Unwind@10155360` | +| `Unwind@10155390` | `10155390` | `Unwind@10155390` | +| `Unwind@101553c0` | `101553c0` | `Unwind@101553c0` | +| `Unwind@101553f0` | `101553f0` | `Unwind@101553f0` | +| `Unwind@10155420` | `10155420` | `Unwind@10155420` | +| `Unwind@10155450` | `10155450` | `Unwind@10155450` | +| `Unwind@10155480` | `10155480` | `Unwind@10155480` | +| `Unwind@101554b0` | `101554b0` | `Unwind@101554b0` | +| `Unwind@101554e0` | `101554e0` | `Unwind@101554e0` | +| `Unwind@10155510` | `10155510` | `Unwind@10155510` | +| `Unwind@10155540` | `10155540` | `Unwind@10155540` | +| `Unwind@10155570` | `10155570` | `Unwind@10155570` | +| `Unwind@101555a0` | `101555a0` | `Unwind@101555a0` | +| `Unwind@101555d0` | `101555d0` | `Unwind@101555d0` | +| `Unwind@10155600` | `10155600` | `Unwind@10155600` | +| `Unwind@10155630` | `10155630` | `Unwind@10155630` | +| `Unwind@10155660` | `10155660` | `Unwind@10155660` | +| `Unwind@10155690` | `10155690` | `Unwind@10155690` | +| `Unwind@101556c0` | `101556c0` | `Unwind@101556c0` | +| `Unwind@101556f0` | `101556f0` | `Unwind@101556f0` | +| `Unwind@10155720` | `10155720` | `Unwind@10155720` | +| `Unwind@10155750` | `10155750` | `Unwind@10155750` | +| `Unwind@10155780` | `10155780` | `Unwind@10155780` | +| `Unwind@101557b0` | `101557b0` | `Unwind@101557b0` | +| `Unwind@101557e0` | `101557e0` | `Unwind@101557e0` | +| `Unwind@10155810` | `10155810` | `Unwind@10155810` | +| `Unwind@10155840` | `10155840` | `Unwind@10155840` | +| `Unwind@10155870` | `10155870` | `Unwind@10155870` | +| `Unwind@101558a0` | `101558a0` | `Unwind@101558a0` | +| `Unwind@101558d0` | `101558d0` | `Unwind@101558d0` | +| `Unwind@10155900` | `10155900` | `Unwind@10155900` | +| `Unwind@10155950` | `10155950` | `Unwind@10155950` | +| `Unwind@10155958` | `10155958` | `Unwind@10155958` | +| `Unwind@10155960` | `10155960` | `Unwind@10155960` | +| `Unwind@10155968` | `10155968` | `Unwind@10155968` | +| `Unwind@10155970` | `10155970` | `Unwind@10155970` | +| `Unwind@101559a0` | `101559a0` | `Unwind@101559a0` | +| `Unwind@101559a8` | `101559a8` | `Unwind@101559a8` | +| `Unwind@101559b0` | `101559b0` | `Unwind@101559b0` | +| `Unwind@101559e0` | `101559e0` | `Unwind@101559e0` | +| `Unwind@101559e8` | `101559e8` | `Unwind@101559e8` | +| `Unwind@101559f0` | `101559f0` | `Unwind@101559f0` | +| `Unwind@101559f8` | `101559f8` | `Unwind@101559f8` | +| `Unwind@10155a40` | `10155a40` | `Unwind@10155a40` | +| `Unwind@10155a48` | `10155a48` | `Unwind@10155a48` | +| `Unwind@10155a50` | `10155a50` | `Unwind@10155a50` | +| `Unwind@10155a58` | `10155a58` | `Unwind@10155a58` | +| `Unwind@10155a60` | `10155a60` | `Unwind@10155a60` | +| `Unwind@10155a90` | `10155a90` | `Unwind@10155a90` | +| `Unwind@10155a98` | `10155a98` | `Unwind@10155a98` | +| `Unwind@10155aa0` | `10155aa0` | `Unwind@10155aa0` | +| `Unwind@10155ad0` | `10155ad0` | `Unwind@10155ad0` | +| `Unwind@10155b00` | `10155b00` | `Unwind@10155b00` | +| `Unwind@10155b30` | `10155b30` | `Unwind@10155b30` | +| `Unwind@10155b60` | `10155b60` | `Unwind@10155b60` | +| `Unwind@10155b90` | `10155b90` | `Unwind@10155b90` | +| `Unwind@10155bc0` | `10155bc0` | `Unwind@10155bc0` | +| `Unwind@10155bf0` | `10155bf0` | `Unwind@10155bf0` | +| `Unwind@10155c20` | `10155c20` | `Unwind@10155c20` | +| `Unwind@10155c50` | `10155c50` | `Unwind@10155c50` | +| `Unwind@10155c80` | `10155c80` | `Unwind@10155c80` | +| `Unwind@10155cb0` | `10155cb0` | `Unwind@10155cb0` | +| `Unwind@10155ce0` | `10155ce0` | `Unwind@10155ce0` | +| `Unwind@10155d10` | `10155d10` | `Unwind@10155d10` | +| `Unwind@10155d1b` | `10155d1b` | `Unwind@10155d1b` | +| `Unwind@10155d26` | `10155d26` | `Unwind@10155d26` | +| `Unwind@10155d31` | `10155d31` | `Unwind@10155d31` | +| `Unwind@10155d3c` | `10155d3c` | `Unwind@10155d3c` | +| `Unwind@10155d60` | `10155d60` | `Unwind@10155d60` | +| `Unwind@10155d90` | `10155d90` | `Unwind@10155d90` | +| `Unwind@10155dc0` | `10155dc0` | `Unwind@10155dc0` | +| `Unwind@10155df0` | `10155df0` | `Unwind@10155df0` | +| `Unwind@10155e40` | `10155e40` | `Unwind@10155e40` | +| `Unwind@10155e70` | `10155e70` | `Unwind@10155e70` | +| `Unwind@10155ea0` | `10155ea0` | `Unwind@10155ea0` | +| `Unwind@10155ed0` | `10155ed0` | `Unwind@10155ed0` | +| `Unwind@10155f00` | `10155f00` | `Unwind@10155f00` | +| `Unwind@10155f30` | `10155f30` | `Unwind@10155f30` | +| `Unwind@10155f60` | `10155f60` | `Unwind@10155f60` | +| `Unwind@10155f90` | `10155f90` | `Unwind@10155f90` | +| `Unwind@10155fc0` | `10155fc0` | `Unwind@10155fc0` | +| `Unwind@10155fc8` | `10155fc8` | `Unwind@10155fc8` | +| `Unwind@10155fd3` | `10155fd3` | `Unwind@10155fd3` | +| `Unwind@10155fde` | `10155fde` | `Unwind@10155fde` | +| `Unwind@10155fe9` | `10155fe9` | `Unwind@10155fe9` | +| `Unwind@10155ff4` | `10155ff4` | `Unwind@10155ff4` | +| `Unwind@10156020` | `10156020` | `Unwind@10156020` | +| `Unwind@10156028` | `10156028` | `Unwind@10156028` | +| `Unwind@10156050` | `10156050` | `Unwind@10156050` | +| `Unwind@10156080` | `10156080` | `Unwind@10156080` | +| `Unwind@10156088` | `10156088` | `Unwind@10156088` | +| `Unwind@10156090` | `10156090` | `Unwind@10156090` | +| `Unwind@1015609b` | `1015609b` | `Unwind@1015609b` | +| `Unwind@101560a3` | `101560a3` | `Unwind@101560a3` | +| `Unwind@101560ab` | `101560ab` | `Unwind@101560ab` | +| `Unwind@101560e0` | `101560e0` | `Unwind@101560e0` | +| `Unwind@10156110` | `10156110` | `Unwind@10156110` | +| `Unwind@10156118` | `10156118` | `Unwind@10156118` | +| `Unwind@10156123` | `10156123` | `Unwind@10156123` | +| `Unwind@1015612e` | `1015612e` | `Unwind@1015612e` | +| `Unwind@10156136` | `10156136` | `Unwind@10156136` | +| `Unwind@1015613e` | `1015613e` | `Unwind@1015613e` | +| `Unwind@10156170` | `10156170` | `Unwind@10156170` | +| `Unwind@10156178` | `10156178` | `Unwind@10156178` | +| `Unwind@10156183` | `10156183` | `Unwind@10156183` | +| `Unwind@1015618e` | `1015618e` | `Unwind@1015618e` | +| `Unwind@10156196` | `10156196` | `Unwind@10156196` | +| `Unwind@1015619e` | `1015619e` | `Unwind@1015619e` | +| `Unwind@101561d0` | `101561d0` | `Unwind@101561d0` | +| `Unwind@10156200` | `10156200` | `Unwind@10156200` | +| `Unwind@10156208` | `10156208` | `Unwind@10156208` | +| `Unwind@10156230` | `10156230` | `Unwind@10156230` | +| `Unwind@10156238` | `10156238` | `Unwind@10156238` | +| `Unwind@10156260` | `10156260` | `Unwind@10156260` | +| `Unwind@10156290` | `10156290` | `Unwind@10156290` | +| `Unwind@1015629e` | `1015629e` | `Unwind@1015629e` | +| `Unwind@101562ac` | `101562ac` | `Unwind@101562ac` | +| `Unwind@101562c5` | `101562c5` | `Unwind@101562c5` | +| `Unwind@101562de` | `101562de` | `Unwind@101562de` | +| `Unwind@101562ec` | `101562ec` | `Unwind@101562ec` | +| `Unwind@101562fa` | `101562fa` | `Unwind@101562fa` | +| `Unwind@10156330` | `10156330` | `Unwind@10156330` | +| `Unwind@1015633e` | `1015633e` | `Unwind@1015633e` | +| `Unwind@1015634c` | `1015634c` | `Unwind@1015634c` | +| `Unwind@10156380` | `10156380` | `Unwind@10156380` | +| `Unwind@101563b0` | `101563b0` | `Unwind@101563b0` | +| `Unwind@101563bb` | `101563bb` | `Unwind@101563bb` | +| `Unwind@101563c6` | `101563c6` | `Unwind@101563c6` | +| `Unwind@101563d1` | `101563d1` | `Unwind@101563d1` | +| `Unwind@101563dc` | `101563dc` | `Unwind@101563dc` | +| `Unwind@10156410` | `10156410` | `Unwind@10156410` | +| `Unwind@1015641e` | `1015641e` | `Unwind@1015641e` | +| `Unwind@1015642c` | `1015642c` | `Unwind@1015642c` | +| `Unwind@10156460` | `10156460` | `Unwind@10156460` | +| `Unwind@10156468` | `10156468` | `Unwind@10156468` | +| `Unwind@10156470` | `10156470` | `Unwind@10156470` | +| `Unwind@10156478` | `10156478` | `Unwind@10156478` | +| `Unwind@10156480` | `10156480` | `Unwind@10156480` | +| `Unwind@10156488` | `10156488` | `Unwind@10156488` | +| `Unwind@10156490` | `10156490` | `Unwind@10156490` | +| `Unwind@10156498` | `10156498` | `Unwind@10156498` | +| `Unwind@101564a6` | `101564a6` | `Unwind@101564a6` | +| `Unwind@101564b4` | `101564b4` | `Unwind@101564b4` | +| `Unwind@101564e0` | `101564e0` | `Unwind@101564e0` | +| `Unwind@101564eb` | `101564eb` | `Unwind@101564eb` | +| `Unwind@101564f6` | `101564f6` | `Unwind@101564f6` | +| `Unwind@10156501` | `10156501` | `Unwind@10156501` | +| `Unwind@1015650c` | `1015650c` | `Unwind@1015650c` | +| `Unwind@10156517` | `10156517` | `Unwind@10156517` | +| `Unwind@10156522` | `10156522` | `Unwind@10156522` | +| `Unwind@1015652d` | `1015652d` | `Unwind@1015652d` | +| `Unwind@10156538` | `10156538` | `Unwind@10156538` | +| `Unwind@10156543` | `10156543` | `Unwind@10156543` | +| `Unwind@1015654e` | `1015654e` | `Unwind@1015654e` | +| `Unwind@10156559` | `10156559` | `Unwind@10156559` | +| `Unwind@10156564` | `10156564` | `Unwind@10156564` | +| `Unwind@1015656f` | `1015656f` | `Unwind@1015656f` | +| `Unwind@1015657a` | `1015657a` | `Unwind@1015657a` | +| `Unwind@10156585` | `10156585` | `Unwind@10156585` | +| `Unwind@10156590` | `10156590` | `Unwind@10156590` | +| `Unwind@1015659b` | `1015659b` | `Unwind@1015659b` | +| `Unwind@101565a6` | `101565a6` | `Unwind@101565a6` | +| `Unwind@101565e0` | `101565e0` | `Unwind@101565e0` | +| `Unwind@101565eb` | `101565eb` | `Unwind@101565eb` | +| `Unwind@101565f6` | `101565f6` | `Unwind@101565f6` | +| `Unwind@10156601` | `10156601` | `Unwind@10156601` | +| `Unwind@10156640` | `10156640` | `Unwind@10156640` | +| `Unwind@10156648` | `10156648` | `Unwind@10156648` | +| `Unwind@10156680` | `10156680` | `Unwind@10156680` | +| `Unwind@101566b0` | `101566b0` | `Unwind@101566b0` | +| `Unwind@101566be` | `101566be` | `Unwind@101566be` | +| `Unwind@101566cc` | `101566cc` | `Unwind@101566cc` | +| `Unwind@101566da` | `101566da` | `Unwind@101566da` | +| `Unwind@10156710` | `10156710` | `Unwind@10156710` | +| `Unwind@10156718` | `10156718` | `Unwind@10156718` | +| `Unwind@10156740` | `10156740` | `Unwind@10156740` | +| `Unwind@1015674c` | `1015674c` | `Unwind@1015674c` | +| `Unwind@10156757` | `10156757` | `Unwind@10156757` | +| `Unwind@10156780` | `10156780` | `Unwind@10156780` | +| `Unwind@10156788` | `10156788` | `Unwind@10156788` | +| `Unwind@101567c0` | `101567c0` | `Unwind@101567c0` | +| `Unwind@101567f0` | `101567f0` | `Unwind@101567f0` | +| `Unwind@101567fe` | `101567fe` | `Unwind@101567fe` | +| `Unwind@10156830` | `10156830` | `Unwind@10156830` | +| `Unwind@10156838` | `10156838` | `Unwind@10156838` | +| `Unwind@10156860` | `10156860` | `Unwind@10156860` | +| `Unwind@10156868` | `10156868` | `Unwind@10156868` | +| `Unwind@10156890` | `10156890` | `Unwind@10156890` | +| `Unwind@10156898` | `10156898` | `Unwind@10156898` | +| `Unwind@101568c0` | `101568c0` | `Unwind@101568c0` | +| `Unwind@101568c8` | `101568c8` | `Unwind@101568c8` | +| `Unwind@101568f0` | `101568f0` | `Unwind@101568f0` | +| `Unwind@101568f9` | `101568f9` | `Unwind@101568f9` | +| `Unwind@10156920` | `10156920` | `Unwind@10156920` | +| `Unwind@10156929` | `10156929` | `Unwind@10156929` | +| `Unwind@10156950` | `10156950` | `Unwind@10156950` | +| `Unwind@1015695b` | `1015695b` | `Unwind@1015695b` | +| `Unwind@10156964` | `10156964` | `Unwind@10156964` | +| `Unwind@1015696f` | `1015696f` | `Unwind@1015696f` | +| `Unwind@1015697a` | `1015697a` | `Unwind@1015697a` | +| `Unwind@101569a0` | `101569a0` | `Unwind@101569a0` | +| `Unwind@101569a8` | `101569a8` | `Unwind@101569a8` | +| `Unwind@101569d0` | `101569d0` | `Unwind@101569d0` | +| `Unwind@101569d8` | `101569d8` | `Unwind@101569d8` | +| `Unwind@10156a00` | `10156a00` | `Unwind@10156a00` | +| `Unwind@10156a30` | `10156a30` | `Unwind@10156a30` | +| `Unwind@10156a38` | `10156a38` | `Unwind@10156a38` | +| `Unwind@10156a60` | `10156a60` | `Unwind@10156a60` | +| `Unwind@10156a68` | `10156a68` | `Unwind@10156a68` | +| `Unwind@10156a90` | `10156a90` | `Unwind@10156a90` | +| `Unwind@10156a98` | `10156a98` | `Unwind@10156a98` | +| `Unwind@10156ac0` | `10156ac0` | `Unwind@10156ac0` | +| `Unwind@10156ac8` | `10156ac8` | `Unwind@10156ac8` | +| `Unwind@10156af0` | `10156af0` | `Unwind@10156af0` | +| `Unwind@10156af8` | `10156af8` | `Unwind@10156af8` | +| `Unwind@10156b20` | `10156b20` | `Unwind@10156b20` | +| `Unwind@10156b28` | `10156b28` | `Unwind@10156b28` | +| `Unwind@10156b50` | `10156b50` | `Unwind@10156b50` | +| `Unwind@10156b80` | `10156b80` | `Unwind@10156b80` | +| `Unwind@10156b88` | `10156b88` | `Unwind@10156b88` | +| `Unwind@10156bb0` | `10156bb0` | `Unwind@10156bb0` | +| `Unwind@10156bb8` | `10156bb8` | `Unwind@10156bb8` | +| `Unwind@10156be0` | `10156be0` | `Unwind@10156be0` | +| `Unwind@10156be8` | `10156be8` | `Unwind@10156be8` | +| `Unwind@10156c10` | `10156c10` | `Unwind@10156c10` | +| `Unwind@10156c18` | `10156c18` | `Unwind@10156c18` | +| `Unwind@10156c40` | `10156c40` | `Unwind@10156c40` | +| `Unwind@10156c48` | `10156c48` | `Unwind@10156c48` | +| `Unwind@10156c70` | `10156c70` | `Unwind@10156c70` | +| `Unwind@10156c78` | `10156c78` | `Unwind@10156c78` | +| `Unwind@10156ca0` | `10156ca0` | `Unwind@10156ca0` | +| `Unwind@10156ca8` | `10156ca8` | `Unwind@10156ca8` | +| `Unwind@10156cd0` | `10156cd0` | `Unwind@10156cd0` | +| `Unwind@10156cd8` | `10156cd8` | `Unwind@10156cd8` | +| `Unwind@10156d00` | `10156d00` | `Unwind@10156d00` | +| `Unwind@10156d08` | `10156d08` | `Unwind@10156d08` | +| `Unwind@10156d30` | `10156d30` | `Unwind@10156d30` | +| `Unwind@10156d38` | `10156d38` | `Unwind@10156d38` | +| `Unwind@10156d60` | `10156d60` | `Unwind@10156d60` | +| `Unwind@10156d68` | `10156d68` | `Unwind@10156d68` | +| `Unwind@10156d90` | `10156d90` | `Unwind@10156d90` | +| `Unwind@10156d98` | `10156d98` | `Unwind@10156d98` | +| `Unwind@10156dc0` | `10156dc0` | `Unwind@10156dc0` | +| `Unwind@10156dc8` | `10156dc8` | `Unwind@10156dc8` | +| `Unwind@10156df0` | `10156df0` | `Unwind@10156df0` | +| `Unwind@10156df8` | `10156df8` | `Unwind@10156df8` | +| `Unwind@10156e20` | `10156e20` | `Unwind@10156e20` | +| `Unwind@10156e3d` | `10156e3d` | `Unwind@10156e3d` | +| `Unwind@10156e49` | `10156e49` | `Unwind@10156e49` | +| `Unwind@10156e52` | `10156e52` | `Unwind@10156e52` | +| `Unwind@10156e80` | `10156e80` | `Unwind@10156e80` | +| `Unwind@10156e88` | `10156e88` | `Unwind@10156e88` | +| `Unwind@10156eb0` | `10156eb0` | `Unwind@10156eb0` | +| `Unwind@10156eb8` | `10156eb8` | `Unwind@10156eb8` | +| `Unwind@10156ee0` | `10156ee0` | `Unwind@10156ee0` | +| `Unwind@10156ee8` | `10156ee8` | `Unwind@10156ee8` | +| `Unwind@10156f10` | `10156f10` | `Unwind@10156f10` | +| `Unwind@10156f18` | `10156f18` | `Unwind@10156f18` | +| `Unwind@10156f40` | `10156f40` | `Unwind@10156f40` | +| `Unwind@10156f48` | `10156f48` | `Unwind@10156f48` | +| `Unwind@10156f70` | `10156f70` | `Unwind@10156f70` | +| `Unwind@10156f79` | `10156f79` | `Unwind@10156f79` | +| `Unwind@10156fa0` | `10156fa0` | `Unwind@10156fa0` | +| `Unwind@10156fa9` | `10156fa9` | `Unwind@10156fa9` | +| `Unwind@10156fd0` | `10156fd0` | `Unwind@10156fd0` | +| `Unwind@10156fd8` | `10156fd8` | `Unwind@10156fd8` | +| `Unwind@10157000` | `10157000` | `Unwind@10157000` | +| `Unwind@10157008` | `10157008` | `Unwind@10157008` | +| `Unwind@10157030` | `10157030` | `Unwind@10157030` | +| `Unwind@10157038` | `10157038` | `Unwind@10157038` | +| `Unwind@10157060` | `10157060` | `Unwind@10157060` | +| `Unwind@10157068` | `10157068` | `Unwind@10157068` | +| `Unwind@10157090` | `10157090` | `Unwind@10157090` | +| `Unwind@10157098` | `10157098` | `Unwind@10157098` | +| `Unwind@101570c0` | `101570c0` | `Unwind@101570c0` | +| `Unwind@101570c8` | `101570c8` | `Unwind@101570c8` | +| `Unwind@101570f0` | `101570f0` | `Unwind@101570f0` | +| `Unwind@101570f8` | `101570f8` | `Unwind@101570f8` | +| `Unwind@10157120` | `10157120` | `Unwind@10157120` | +| `Unwind@10157128` | `10157128` | `Unwind@10157128` | +| `Unwind@10157150` | `10157150` | `Unwind@10157150` | +| `Unwind@10157158` | `10157158` | `Unwind@10157158` | +| `Unwind@10157180` | `10157180` | `Unwind@10157180` | +| `Unwind@10157188` | `10157188` | `Unwind@10157188` | +| `Unwind@101571b0` | `101571b0` | `Unwind@101571b0` | +| `Unwind@101571b8` | `101571b8` | `Unwind@101571b8` | +| `Unwind@101571e0` | `101571e0` | `Unwind@101571e0` | +| `Unwind@101571e9` | `101571e9` | `Unwind@101571e9` | +| `Unwind@101571fa` | `101571fa` | `Unwind@101571fa` | +| `Unwind@10157220` | `10157220` | `Unwind@10157220` | +| `Unwind@10157250` | `10157250` | `Unwind@10157250` | +| `Unwind@10157258` | `10157258` | `Unwind@10157258` | +| `Unwind@10157280` | `10157280` | `Unwind@10157280` | +| `Unwind@10157288` | `10157288` | `Unwind@10157288` | +| `Unwind@101572b0` | `101572b0` | `Unwind@101572b0` | +| `Unwind@101572b8` | `101572b8` | `Unwind@101572b8` | +| `Unwind@101572e0` | `101572e0` | `Unwind@101572e0` | +| `Unwind@101572e8` | `101572e8` | `Unwind@101572e8` | +| `Unwind@10157310` | `10157310` | `Unwind@10157310` | +| `Unwind@10157318` | `10157318` | `Unwind@10157318` | +| `Unwind@10157340` | `10157340` | `Unwind@10157340` | +| `Unwind@10157348` | `10157348` | `Unwind@10157348` | +| `Unwind@10157370` | `10157370` | `Unwind@10157370` | +| `Unwind@10157378` | `10157378` | `Unwind@10157378` | +| `Unwind@101573a0` | `101573a0` | `Unwind@101573a0` | +| `Unwind@101573a8` | `101573a8` | `Unwind@101573a8` | +| `Unwind@101573d0` | `101573d0` | `Unwind@101573d0` | +| `Unwind@101573d8` | `101573d8` | `Unwind@101573d8` | +| `Unwind@10157400` | `10157400` | `Unwind@10157400` | +| `Unwind@10157408` | `10157408` | `Unwind@10157408` | +| `Unwind@10157430` | `10157430` | `Unwind@10157430` | +| `Unwind@10157438` | `10157438` | `Unwind@10157438` | +| `Unwind@10157460` | `10157460` | `Unwind@10157460` | +| `Unwind@10157468` | `10157468` | `Unwind@10157468` | +| `Unwind@10157490` | `10157490` | `Unwind@10157490` | +| `Unwind@10157498` | `10157498` | `Unwind@10157498` | +| `Unwind@101574c0` | `101574c0` | `Unwind@101574c0` | +| `Unwind@101574c8` | `101574c8` | `Unwind@101574c8` | +| `Unwind@101574f0` | `101574f0` | `Unwind@101574f0` | +| `Unwind@101574f8` | `101574f8` | `Unwind@101574f8` | +| `Unwind@10157540` | `10157540` | `Unwind@10157540` | +| `Unwind@10157590` | `10157590` | `Unwind@10157590` | +| `Unwind@101575c0` | `101575c0` | `Unwind@101575c0` | +| `Unwind@101575f0` | `101575f0` | `Unwind@101575f0` | +| `Unwind@101575f9` | `101575f9` | `Unwind@101575f9` | +| `Unwind@1015760a` | `1015760a` | `Unwind@1015760a` | +| `Unwind@10157630` | `10157630` | `Unwind@10157630` | +| `Unwind@10157638` | `10157638` | `Unwind@10157638` | +| `Unwind@10157670` | `10157670` | `Unwind@10157670` | +| `Unwind@10157678` | `10157678` | `Unwind@10157678` | +| `Unwind@101576d0` | `101576d0` | `Unwind@101576d0` | +| `Unwind@101576d8` | `101576d8` | `Unwind@101576d8` | +| `Unwind@101576e3` | `101576e3` | `Unwind@101576e3` | +| `Unwind@101576ee` | `101576ee` | `Unwind@101576ee` | +| `Unwind@101576f9` | `101576f9` | `Unwind@101576f9` | +| `Unwind@10157704` | `10157704` | `Unwind@10157704` | +| `Unwind@10157730` | `10157730` | `Unwind@10157730` | +| `Unwind@10157738` | `10157738` | `Unwind@10157738` | +| `Unwind@10157760` | `10157760` | `Unwind@10157760` | +| `Unwind@10157768` | `10157768` | `Unwind@10157768` | +| `Unwind@10157790` | `10157790` | `Unwind@10157790` | +| `Unwind@10157798` | `10157798` | `Unwind@10157798` | +| `Unwind@101577c0` | `101577c0` | `Unwind@101577c0` | +| `Unwind@101577f0` | `101577f0` | `Unwind@101577f0` | +| `Unwind@10157820` | `10157820` | `Unwind@10157820` | +| `Unwind@10157850` | `10157850` | `Unwind@10157850` | +| `Unwind@10157880` | `10157880` | `Unwind@10157880` | +| `Unwind@101578b0` | `101578b0` | `Unwind@101578b0` | +| `Unwind@101578e0` | `101578e0` | `Unwind@101578e0` | +| `Unwind@10157910` | `10157910` | `Unwind@10157910` | +| `Unwind@10157940` | `10157940` | `Unwind@10157940` | +| `Unwind@10157970` | `10157970` | `Unwind@10157970` | +| `Unwind@101579a0` | `101579a0` | `Unwind@101579a0` | +| `Unwind@101579d0` | `101579d0` | `Unwind@101579d0` | +| `Unwind@10157a00` | `10157a00` | `Unwind@10157a00` | +| `Unwind@10157a30` | `10157a30` | `Unwind@10157a30` | +| `Unwind@10157a60` | `10157a60` | `Unwind@10157a60` | +| `Unwind@10157a90` | `10157a90` | `Unwind@10157a90` | +| `Unwind@10157a98` | `10157a98` | `Unwind@10157a98` | +| `Unwind@10157ac0` | `10157ac0` | `Unwind@10157ac0` | +| `Unwind@10157ac8` | `10157ac8` | `Unwind@10157ac8` | +| `Unwind@10157ad0` | `10157ad0` | `Unwind@10157ad0` | +| `Unwind@10157b00` | `10157b00` | `Unwind@10157b00` | +| `Unwind@10157b0e` | `10157b0e` | `Unwind@10157b0e` | +| `Unwind@10157b50` | `10157b50` | `Unwind@10157b50` | +| `Unwind@10157b5e` | `10157b5e` | `Unwind@10157b5e` | +| `Unwind@10157b6c` | `10157b6c` | `Unwind@10157b6c` | +| `Unwind@10157b7a` | `10157b7a` | `Unwind@10157b7a` | +| `Unwind@10157b88` | `10157b88` | `Unwind@10157b88` | +| `Unwind@10157b96` | `10157b96` | `Unwind@10157b96` | +| `Unwind@10157bc0` | `10157bc0` | `Unwind@10157bc0` | +| `Unwind@10157bce` | `10157bce` | `Unwind@10157bce` | +| `Unwind@10157bdc` | `10157bdc` | `Unwind@10157bdc` | +| `Unwind@10157bea` | `10157bea` | `Unwind@10157bea` | +| `Unwind@10157bf8` | `10157bf8` | `Unwind@10157bf8` | +| `Unwind@10157c06` | `10157c06` | `Unwind@10157c06` | +| `Unwind@10157c40` | `10157c40` | `Unwind@10157c40` | +| `Unwind@10157c4e` | `10157c4e` | `Unwind@10157c4e` | +| `Unwind@10157c5c` | `10157c5c` | `Unwind@10157c5c` | +| `Unwind@10157c6a` | `10157c6a` | `Unwind@10157c6a` | +| `Unwind@10157c78` | `10157c78` | `Unwind@10157c78` | +| `Unwind@10157cb0` | `10157cb0` | `Unwind@10157cb0` | +| `Unwind@10157cbe` | `10157cbe` | `Unwind@10157cbe` | +| `Unwind@10157ccc` | `10157ccc` | `Unwind@10157ccc` | +| `Unwind@10157cda` | `10157cda` | `Unwind@10157cda` | +| `Unwind@10157ce8` | `10157ce8` | `Unwind@10157ce8` | +| `Unwind@10157cf6` | `10157cf6` | `Unwind@10157cf6` | +| `Unwind@10157d04` | `10157d04` | `Unwind@10157d04` | +| `Unwind@10157d40` | `10157d40` | `Unwind@10157d40` | +| `Unwind@10157d4e` | `10157d4e` | `Unwind@10157d4e` | +| `Unwind@10157d5c` | `10157d5c` | `Unwind@10157d5c` | +| `Unwind@10157d6a` | `10157d6a` | `Unwind@10157d6a` | +| `Unwind@10157d78` | `10157d78` | `Unwind@10157d78` | +| `Unwind@10157d86` | `10157d86` | `Unwind@10157d86` | +| `Unwind@10157d94` | `10157d94` | `Unwind@10157d94` | +| `Unwind@10157dc0` | `10157dc0` | `Unwind@10157dc0` | +| `Unwind@10157df0` | `10157df0` | `Unwind@10157df0` | +| `Unwind@10157df8` | `10157df8` | `Unwind@10157df8` | +| `Unwind@10157e00` | `10157e00` | `Unwind@10157e00` | +| `Unwind@10157e08` | `10157e08` | `Unwind@10157e08` | +| `Unwind@10157e16` | `10157e16` | `Unwind@10157e16` | +| `Unwind@10157e24` | `10157e24` | `Unwind@10157e24` | +| `Unwind@10157e50` | `10157e50` | `Unwind@10157e50` | +| `Unwind@10157e5e` | `10157e5e` | `Unwind@10157e5e` | +| `Unwind@10157e90` | `10157e90` | `Unwind@10157e90` | +| `Unwind@10157e99` | `10157e99` | `Unwind@10157e99` | +| `Unwind@10157ec0` | `10157ec0` | `Unwind@10157ec0` | +| `Unwind@10157ef0` | `10157ef0` | `Unwind@10157ef0` | +| `Unwind@10157f20` | `10157f20` | `Unwind@10157f20` | +| `Unwind@10157f50` | `10157f50` | `Unwind@10157f50` | +| `Unwind@10157f59` | `10157f59` | `Unwind@10157f59` | +| `Unwind@10157f6a` | `10157f6a` | `Unwind@10157f6a` | +| `Unwind@10157f72` | `10157f72` | `Unwind@10157f72` | +| `Unwind@10157fa0` | `10157fa0` | `Unwind@10157fa0` | +| `Unwind@10157fb1` | `10157fb1` | `Unwind@10157fb1` | +| `Unwind@10157fe0` | `10157fe0` | `Unwind@10157fe0` | +| `Unwind@10158010` | `10158010` | `Unwind@10158010` | +| `Unwind@10158019` | `10158019` | `Unwind@10158019` | +| `Unwind@1015802a` | `1015802a` | `Unwind@1015802a` | +| `Unwind@10158032` | `10158032` | `Unwind@10158032` | +| `Unwind@10158060` | `10158060` | `Unwind@10158060` | +| `Unwind@10158071` | `10158071` | `Unwind@10158071` | +| `Unwind@101580a0` | `101580a0` | `Unwind@101580a0` | +| `Unwind@101580a8` | `101580a8` | `Unwind@101580a8` | +| `Unwind@101580b0` | `101580b0` | `Unwind@101580b0` | +| `Unwind@101580e0` | `101580e0` | `Unwind@101580e0` | +| `Unwind@101580e8` | `101580e8` | `Unwind@101580e8` | +| `Unwind@101580f0` | `101580f0` | `Unwind@101580f0` | +| `Unwind@10158120` | `10158120` | `Unwind@10158120` | +| `Unwind@10158160` | `10158160` | `Unwind@10158160` | +| `Unwind@10158190` | `10158190` | `Unwind@10158190` | +| `Unwind@101581c0` | `101581c0` | `Unwind@101581c0` | +| `Unwind@101581f0` | `101581f0` | `Unwind@101581f0` | +| `Unwind@10158220` | `10158220` | `Unwind@10158220` | +| `Unwind@10158250` | `10158250` | `Unwind@10158250` | +| `Unwind@10158280` | `10158280` | `Unwind@10158280` | +| `Unwind@101582b0` | `101582b0` | `Unwind@101582b0` | +| `Unwind@101582b8` | `101582b8` | `Unwind@101582b8` | +| `Unwind@101582c3` | `101582c3` | `Unwind@101582c3` | +| `Unwind@101582ce` | `101582ce` | `Unwind@101582ce` | +| `Unwind@101582d9` | `101582d9` | `Unwind@101582d9` | +| `Unwind@101582e4` | `101582e4` | `Unwind@101582e4` | +| `Unwind@10158310` | `10158310` | `Unwind@10158310` | +| `Unwind@10158318` | `10158318` | `Unwind@10158318` | +| `Unwind@10158340` | `10158340` | `Unwind@10158340` | +| `Unwind@10158348` | `10158348` | `Unwind@10158348` | +| `Unwind@10158350` | `10158350` | `Unwind@10158350` | +| `Unwind@10158380` | `10158380` | `Unwind@10158380` | +| `Unwind@10158388` | `10158388` | `Unwind@10158388` | +| `Unwind@101583b0` | `101583b0` | `Unwind@101583b0` | +| `Unwind@101583b8` | `101583b8` | `Unwind@101583b8` | +| `Unwind@101583e0` | `101583e0` | `Unwind@101583e0` | +| `Unwind@10158410` | `10158410` | `Unwind@10158410` | +| `Unwind@10158440` | `10158440` | `Unwind@10158440` | +| `Unwind@10158470` | `10158470` | `Unwind@10158470` | +| `Unwind@101584a0` | `101584a0` | `Unwind@101584a0` | +| `Unwind@101584d0` | `101584d0` | `Unwind@101584d0` | +| `Unwind@10158500` | `10158500` | `Unwind@10158500` | +| `Unwind@10158550` | `10158550` | `Unwind@10158550` | +| `Unwind@10158580` | `10158580` | `Unwind@10158580` | +| `Unwind@101585b0` | `101585b0` | `Unwind@101585b0` | +| `Unwind@101585b8` | `101585b8` | `Unwind@101585b8` | +| `Unwind@101585c0` | `101585c0` | `Unwind@101585c0` | +| `Unwind@101585cb` | `101585cb` | `Unwind@101585cb` | +| `Unwind@101585d6` | `101585d6` | `Unwind@101585d6` | +| `Unwind@101585e1` | `101585e1` | `Unwind@101585e1` | +| `Unwind@101585ec` | `101585ec` | `Unwind@101585ec` | +| `Unwind@10158610` | `10158610` | `Unwind@10158610` | +| `Unwind@1015861b` | `1015861b` | `Unwind@1015861b` | +| `Unwind@10158650` | `10158650` | `Unwind@10158650` | +| `Unwind@1015865b` | `1015865b` | `Unwind@1015865b` | +| `Unwind@10158690` | `10158690` | `Unwind@10158690` | +| `Unwind@101586c0` | `101586c0` | `Unwind@101586c0` | +| `Unwind@101586f0` | `101586f0` | `Unwind@101586f0` | +| `Unwind@10158720` | `10158720` | `Unwind@10158720` | +| `Unwind@10158750` | `10158750` | `Unwind@10158750` | +| `Unwind@10158780` | `10158780` | `Unwind@10158780` | +| `Unwind@1015878b` | `1015878b` | `Unwind@1015878b` | +| `Unwind@10158799` | `10158799` | `Unwind@10158799` | +| `Unwind@101587a7` | `101587a7` | `Unwind@101587a7` | +| `Unwind@101587b5` | `101587b5` | `Unwind@101587b5` | +| `Unwind@101587c3` | `101587c3` | `Unwind@101587c3` | +| `Unwind@101587d1` | `101587d1` | `Unwind@101587d1` | +| `Unwind@101587df` | `101587df` | `Unwind@101587df` | +| `Unwind@10158820` | `10158820` | `Unwind@10158820` | +| `Unwind@1015882e` | `1015882e` | `Unwind@1015882e` | +| `Unwind@1015883c` | `1015883c` | `Unwind@1015883c` | +| `Unwind@1015884a` | `1015884a` | `Unwind@1015884a` | +| `Unwind@10158858` | `10158858` | `Unwind@10158858` | +| `Unwind@10158866` | `10158866` | `Unwind@10158866` | +| `Unwind@10158874` | `10158874` | `Unwind@10158874` | +| `Unwind@10158882` | `10158882` | `Unwind@10158882` | +| `Unwind@10158890` | `10158890` | `Unwind@10158890` | +| `Unwind@1015889e` | `1015889e` | `Unwind@1015889e` | +| `Unwind@101588a9` | `101588a9` | `Unwind@101588a9` | +| `Unwind@101588b7` | `101588b7` | `Unwind@101588b7` | +| `Unwind@101588f0` | `101588f0` | `Unwind@101588f0` | +| `Unwind@10158920` | `10158920` | `Unwind@10158920` | +| `Unwind@10158950` | `10158950` | `Unwind@10158950` | +| `Unwind@1015895e` | `1015895e` | `Unwind@1015895e` | +| `Unwind@10158990` | `10158990` | `Unwind@10158990` | +| `Unwind@101589d0` | `101589d0` | `Unwind@101589d0` | +| `Unwind@101589d8` | `101589d8` | `Unwind@101589d8` | +| `Unwind@101589e0` | `101589e0` | `Unwind@101589e0` | +| `Unwind@101589eb` | `101589eb` | `Unwind@101589eb` | +| `Unwind@101589f6` | `101589f6` | `Unwind@101589f6` | +| `Unwind@10158a01` | `10158a01` | `Unwind@10158a01` | +| `Unwind@10158a30` | `10158a30` | `Unwind@10158a30` | +| `Unwind@10158a60` | `10158a60` | `Unwind@10158a60` | +| `Unwind@10158a6e` | `10158a6e` | `Unwind@10158a6e` | +| `Unwind@10158a7c` | `10158a7c` | `Unwind@10158a7c` | +| `Unwind@10158ab0` | `10158ab0` | `Unwind@10158ab0` | +| `Unwind@10158abb` | `10158abb` | `Unwind@10158abb` | +| `Unwind@10158af0` | `10158af0` | `Unwind@10158af0` | +| `Unwind@10158afe` | `10158afe` | `Unwind@10158afe` | +| `Unwind@10158b0c` | `10158b0c` | `Unwind@10158b0c` | +| `Unwind@10158b1a` | `10158b1a` | `Unwind@10158b1a` | +| `Unwind@10158b28` | `10158b28` | `Unwind@10158b28` | +| `Unwind@10158b36` | `10158b36` | `Unwind@10158b36` | +| `Unwind@10158b70` | `10158b70` | `Unwind@10158b70` | +| `Unwind@10158b7b` | `10158b7b` | `Unwind@10158b7b` | +| `Unwind@10158bb0` | `10158bb0` | `Unwind@10158bb0` | +| `Unwind@10158bc1` | `10158bc1` | `Unwind@10158bc1` | +| `Unwind@10158bf0` | `10158bf0` | `Unwind@10158bf0` | +| `Unwind@10158bfb` | `10158bfb` | `Unwind@10158bfb` | +| `Unwind@10158c30` | `10158c30` | `Unwind@10158c30` | +| `Unwind@10158c60` | `10158c60` | `Unwind@10158c60` | +| `Unwind@10158c90` | `10158c90` | `Unwind@10158c90` | +| `Unwind@10158cc0` | `10158cc0` | `Unwind@10158cc0` | +| `Unwind@10158cf0` | `10158cf0` | `Unwind@10158cf0` | +| `Unwind@10158d20` | `10158d20` | `Unwind@10158d20` | +| `Unwind@10158d28` | `10158d28` | `Unwind@10158d28` | +| `Unwind@10158d50` | `10158d50` | `Unwind@10158d50` | +| `Unwind@10158d58` | `10158d58` | `Unwind@10158d58` | +| `Unwind@10158d80` | `10158d80` | `Unwind@10158d80` | +| `Unwind@10158d88` | `10158d88` | `Unwind@10158d88` | +| `Unwind@10158db0` | `10158db0` | `Unwind@10158db0` | +| `Unwind@10158de0` | `10158de0` | `Unwind@10158de0` | +| `Unwind@10158de8` | `10158de8` | `Unwind@10158de8` | +| `Unwind@10158e10` | `10158e10` | `Unwind@10158e10` | +| `Unwind@10158e18` | `10158e18` | `Unwind@10158e18` | +| `Unwind@10158e40` | `10158e40` | `Unwind@10158e40` | +| `Unwind@10158e70` | `10158e70` | `Unwind@10158e70` | +| `Unwind@10158ea0` | `10158ea0` | `Unwind@10158ea0` | +| `Unwind@10158ed0` | `10158ed0` | `Unwind@10158ed0` | +| `Unwind@10158f00` | `10158f00` | `Unwind@10158f00` | +| `Unwind@10158f30` | `10158f30` | `Unwind@10158f30` | +| `Unwind@10158f60` | `10158f60` | `Unwind@10158f60` | +| `Unwind@10158f90` | `10158f90` | `Unwind@10158f90` | +| `Unwind@10158fc0` | `10158fc0` | `Unwind@10158fc0` | +| `Unwind@10158fc8` | `10158fc8` | `Unwind@10158fc8` | +| `Unwind@10158ff0` | `10158ff0` | `Unwind@10158ff0` | +| `Unwind@10159020` | `10159020` | `Unwind@10159020` | +| `Unwind@10159050` | `10159050` | `Unwind@10159050` | +| `Unwind@10159080` | `10159080` | `Unwind@10159080` | +| `Unwind@10159089` | `10159089` | `Unwind@10159089` | +| `Unwind@1015909a` | `1015909a` | `Unwind@1015909a` | +| `Unwind@101590a2` | `101590a2` | `Unwind@101590a2` | +| `Unwind@101590aa` | `101590aa` | `Unwind@101590aa` | +| `Unwind@101590d0` | `101590d0` | `Unwind@101590d0` | +| `Unwind@101590d8` | `101590d8` | `Unwind@101590d8` | +| `Unwind@10159100` | `10159100` | `Unwind@10159100` | +| `Unwind@10159108` | `10159108` | `Unwind@10159108` | +| `Unwind@10159110` | `10159110` | `Unwind@10159110` | +| `Unwind@10159118` | `10159118` | `Unwind@10159118` | +| `Unwind@10159120` | `10159120` | `Unwind@10159120` | +| `Unwind@10159128` | `10159128` | `Unwind@10159128` | +| `Unwind@10159130` | `10159130` | `Unwind@10159130` | +| `Unwind@10159138` | `10159138` | `Unwind@10159138` | +| `Unwind@10159160` | `10159160` | `Unwind@10159160` | +| `Unwind@10159168` | `10159168` | `Unwind@10159168` | +| `Unwind@10159190` | `10159190` | `Unwind@10159190` | +| `Unwind@10159198` | `10159198` | `Unwind@10159198` | +| `Unwind@101591a0` | `101591a0` | `Unwind@101591a0` | +| `Unwind@101591a8` | `101591a8` | `Unwind@101591a8` | +| `Unwind@101591b0` | `101591b0` | `Unwind@101591b0` | +| `Unwind@101591b8` | `101591b8` | `Unwind@101591b8` | +| `Unwind@101591c0` | `101591c0` | `Unwind@101591c0` | +| `Unwind@101591c8` | `101591c8` | `Unwind@101591c8` | +| `Unwind@101591d0` | `101591d0` | `Unwind@101591d0` | +| `Unwind@10159200` | `10159200` | `Unwind@10159200` | +| `Unwind@10159208` | `10159208` | `Unwind@10159208` | +| `Unwind@10159210` | `10159210` | `Unwind@10159210` | +| `Unwind@10159260` | `10159260` | `Unwind@10159260` | +| `Unwind@10159290` | `10159290` | `Unwind@10159290` | +| `Unwind@10159298` | `10159298` | `Unwind@10159298` | +| `Unwind@101592c0` | `101592c0` | `Unwind@101592c0` | +| `Unwind@101592f0` | `101592f0` | `Unwind@101592f0` | +| `Unwind@10159320` | `10159320` | `Unwind@10159320` | +| `Unwind@10159350` | `10159350` | `Unwind@10159350` | +| `Unwind@10159380` | `10159380` | `Unwind@10159380` | +| `Unwind@101593b0` | `101593b0` | `Unwind@101593b0` | +| `Unwind@101593b8` | `101593b8` | `Unwind@101593b8` | +| `Unwind@101593c3` | `101593c3` | `Unwind@101593c3` | +| `Unwind@101593ce` | `101593ce` | `Unwind@101593ce` | +| `Unwind@101593d9` | `101593d9` | `Unwind@101593d9` | +| `Unwind@101593e4` | `101593e4` | `Unwind@101593e4` | +| `Unwind@10159410` | `10159410` | `Unwind@10159410` | +| `Unwind@10159418` | `10159418` | `Unwind@10159418` | +| `Unwind@10159440` | `10159440` | `Unwind@10159440` | +| `Unwind@10159448` | `10159448` | `Unwind@10159448` | +| `Unwind@10159450` | `10159450` | `Unwind@10159450` | +| `Unwind@10159480` | `10159480` | `Unwind@10159480` | +| `Unwind@10159488` | `10159488` | `Unwind@10159488` | +| `Unwind@101594b0` | `101594b0` | `Unwind@101594b0` | +| `Unwind@101594b8` | `101594b8` | `Unwind@101594b8` | +| `Unwind@101594e0` | `101594e0` | `Unwind@101594e0` | +| `Unwind@10159510` | `10159510` | `Unwind@10159510` | +| `Unwind@10159540` | `10159540` | `Unwind@10159540` | +| `Unwind@10159548` | `10159548` | `Unwind@10159548` | +| `Unwind@10159570` | `10159570` | `Unwind@10159570` | +| `Unwind@10159578` | `10159578` | `Unwind@10159578` | +| `Unwind@101595a0` | `101595a0` | `Unwind@101595a0` | +| `Unwind@101595a8` | `101595a8` | `Unwind@101595a8` | +| `Unwind@101595b0` | `101595b0` | `Unwind@101595b0` | +| `Unwind@101595bb` | `101595bb` | `Unwind@101595bb` | +| `Unwind@101595c6` | `101595c6` | `Unwind@101595c6` | +| `Unwind@101595d1` | `101595d1` | `Unwind@101595d1` | +| `Unwind@10159600` | `10159600` | `Unwind@10159600` | +| `Unwind@10159608` | `10159608` | `Unwind@10159608` | +| `Unwind@10159610` | `10159610` | `Unwind@10159610` | +| `Unwind@10159618` | `10159618` | `Unwind@10159618` | +| `Unwind@10159620` | `10159620` | `Unwind@10159620` | +| `Unwind@10159628` | `10159628` | `Unwind@10159628` | +| `Unwind@10159630` | `10159630` | `Unwind@10159630` | +| `Unwind@10159638` | `10159638` | `Unwind@10159638` | +| `Unwind@10159640` | `10159640` | `Unwind@10159640` | +| `Unwind@10159648` | `10159648` | `Unwind@10159648` | +| `Unwind@10159650` | `10159650` | `Unwind@10159650` | +| `Unwind@10159658` | `10159658` | `Unwind@10159658` | +| `Unwind@10159680` | `10159680` | `Unwind@10159680` | +| `Unwind@10159688` | `10159688` | `Unwind@10159688` | +| `Unwind@10159690` | `10159690` | `Unwind@10159690` | +| `Unwind@10159698` | `10159698` | `Unwind@10159698` | +| `Unwind@101596a0` | `101596a0` | `Unwind@101596a0` | +| `Unwind@101596a8` | `101596a8` | `Unwind@101596a8` | +| `Unwind@101596b0` | `101596b0` | `Unwind@101596b0` | +| `Unwind@101596b8` | `101596b8` | `Unwind@101596b8` | +| `Unwind@101596c0` | `101596c0` | `Unwind@101596c0` | +| `Unwind@101596c8` | `101596c8` | `Unwind@101596c8` | +| `Unwind@101596f0` | `101596f0` | `Unwind@101596f0` | +| `Unwind@101596f8` | `101596f8` | `Unwind@101596f8` | +| `Unwind@10159700` | `10159700` | `Unwind@10159700` | +| `Unwind@10159730` | `10159730` | `Unwind@10159730` | +| `Unwind@10159770` | `10159770` | `Unwind@10159770` | +| `Unwind@10159778` | `10159778` | `Unwind@10159778` | +| `Unwind@10159780` | `10159780` | `Unwind@10159780` | +| `Unwind@101597b0` | `101597b0` | `Unwind@101597b0` | +| `Unwind@101597e0` | `101597e0` | `Unwind@101597e0` | +| `Unwind@101597eb` | `101597eb` | `Unwind@101597eb` | +| `Unwind@10159810` | `10159810` | `Unwind@10159810` | +| `Unwind@10159818` | `10159818` | `Unwind@10159818` | +| `Unwind@10159820` | `10159820` | `Unwind@10159820` | +| `Unwind@1015982b` | `1015982b` | `Unwind@1015982b` | +| `Unwind@10159833` | `10159833` | `Unwind@10159833` | +| `Unwind@1015983e` | `1015983e` | `Unwind@1015983e` | +| `Unwind@10159847` | `10159847` | `Unwind@10159847` | +| `Unwind@10159870` | `10159870` | `Unwind@10159870` | +| `Unwind@10159878` | `10159878` | `Unwind@10159878` | +| `Unwind@10159883` | `10159883` | `Unwind@10159883` | +| `Unwind@1015988e` | `1015988e` | `Unwind@1015988e` | +| `Unwind@10159896` | `10159896` | `Unwind@10159896` | +| `Unwind@101598c0` | `101598c0` | `Unwind@101598c0` | +| `Unwind@101598c8` | `101598c8` | `Unwind@101598c8` | +| `Unwind@101598f0` | `101598f0` | `Unwind@101598f0` | +| `Unwind@101598f8` | `101598f8` | `Unwind@101598f8` | +| `Unwind@10159900` | `10159900` | `Unwind@10159900` | +| `Unwind@10159908` | `10159908` | `Unwind@10159908` | +| `Unwind@10159913` | `10159913` | `Unwind@10159913` | +| `Unwind@1015991b` | `1015991b` | `Unwind@1015991b` | +| `Unwind@10159926` | `10159926` | `Unwind@10159926` | +| `Unwind@10159950` | `10159950` | `Unwind@10159950` | +| `Unwind@10159959` | `10159959` | `Unwind@10159959` | +| `Unwind@1015996a` | `1015996a` | `Unwind@1015996a` | +| `Unwind@10159972` | `10159972` | `Unwind@10159972` | +| `Unwind@1015997a` | `1015997a` | `Unwind@1015997a` | +| `Unwind@101599a0` | `101599a0` | `Unwind@101599a0` | +| `Unwind@101599a8` | `101599a8` | `Unwind@101599a8` | +| `Unwind@101599b0` | `101599b0` | `Unwind@101599b0` | +| `Unwind@101599e0` | `101599e0` | `Unwind@101599e0` | +| `Unwind@101599e8` | `101599e8` | `Unwind@101599e8` | +| `Unwind@10159a10` | `10159a10` | `Unwind@10159a10` | +| `Unwind@10159a18` | `10159a18` | `Unwind@10159a18` | +| `Unwind@10159a40` | `10159a40` | `Unwind@10159a40` | +| `Unwind@10159a48` | `10159a48` | `Unwind@10159a48` | +| `Unwind@10159a70` | `10159a70` | `Unwind@10159a70` | +| `Unwind@10159ab0` | `10159ab0` | `Unwind@10159ab0` | +| `Unwind@10159abe` | `10159abe` | `Unwind@10159abe` | +| `Unwind@10159acc` | `10159acc` | `Unwind@10159acc` | +| `Unwind@10159ada` | `10159ada` | `Unwind@10159ada` | +| `Unwind@10159ae8` | `10159ae8` | `Unwind@10159ae8` | +| `Unwind@10159af6` | `10159af6` | `Unwind@10159af6` | +| `Unwind@10159b04` | `10159b04` | `Unwind@10159b04` | +| `Unwind@10159b40` | `10159b40` | `Unwind@10159b40` | +| `Unwind@10159b4b` | `10159b4b` | `Unwind@10159b4b` | +| `Unwind@10159b59` | `10159b59` | `Unwind@10159b59` | +| `Unwind@10159b67` | `10159b67` | `Unwind@10159b67` | +| `Unwind@10159b75` | `10159b75` | `Unwind@10159b75` | +| `Unwind@10159b83` | `10159b83` | `Unwind@10159b83` | +| `Unwind@10159b91` | `10159b91` | `Unwind@10159b91` | +| `Unwind@10159b9f` | `10159b9f` | `Unwind@10159b9f` | +| `Unwind@10159bad` | `10159bad` | `Unwind@10159bad` | +| `Unwind@10159bbb` | `10159bbb` | `Unwind@10159bbb` | +| `Unwind@10159bc9` | `10159bc9` | `Unwind@10159bc9` | +| `Unwind@10159bd7` | `10159bd7` | `Unwind@10159bd7` | +| `Unwind@10159be5` | `10159be5` | `Unwind@10159be5` | +| `Unwind@10159bf3` | `10159bf3` | `Unwind@10159bf3` | +| `Unwind@10159c01` | `10159c01` | `Unwind@10159c01` | +| `Unwind@10159c0f` | `10159c0f` | `Unwind@10159c0f` | +| `Unwind@10159c1a` | `10159c1a` | `Unwind@10159c1a` | +| `Unwind@10159c28` | `10159c28` | `Unwind@10159c28` | +| `Unwind@10159c36` | `10159c36` | `Unwind@10159c36` | +| `Unwind@10159c44` | `10159c44` | `Unwind@10159c44` | +| `Unwind@10159c52` | `10159c52` | `Unwind@10159c52` | +| `Unwind@10159c5d` | `10159c5d` | `Unwind@10159c5d` | +| `Unwind@10159c68` | `10159c68` | `Unwind@10159c68` | +| `Unwind@10159c73` | `10159c73` | `Unwind@10159c73` | +| `Unwind@10159c7e` | `10159c7e` | `Unwind@10159c7e` | +| `Unwind@10159c89` | `10159c89` | `Unwind@10159c89` | +| `Unwind@10159c97` | `10159c97` | `Unwind@10159c97` | +| `Unwind@10159ca5` | `10159ca5` | `Unwind@10159ca5` | +| `Unwind@10159cb3` | `10159cb3` | `Unwind@10159cb3` | +| `Unwind@10159cc1` | `10159cc1` | `Unwind@10159cc1` | +| `Unwind@10159ccf` | `10159ccf` | `Unwind@10159ccf` | +| `Unwind@10159cda` | `10159cda` | `Unwind@10159cda` | +| `Unwind@10159ce8` | `10159ce8` | `Unwind@10159ce8` | +| `Unwind@10159cf6` | `10159cf6` | `Unwind@10159cf6` | +| `Unwind@10159d04` | `10159d04` | `Unwind@10159d04` | +| `Unwind@10159d40` | `10159d40` | `Unwind@10159d40` | +| `Unwind@10159d4e` | `10159d4e` | `Unwind@10159d4e` | +| `Unwind@10159d5c` | `10159d5c` | `Unwind@10159d5c` | +| `Unwind@10159d6a` | `10159d6a` | `Unwind@10159d6a` | +| `Unwind@10159d78` | `10159d78` | `Unwind@10159d78` | +| `Unwind@10159d86` | `10159d86` | `Unwind@10159d86` | +| `Unwind@10159dc0` | `10159dc0` | `Unwind@10159dc0` | +| `Unwind@10159dce` | `10159dce` | `Unwind@10159dce` | +| `Unwind@10159ddc` | `10159ddc` | `Unwind@10159ddc` | +| `Unwind@10159dea` | `10159dea` | `Unwind@10159dea` | +| `Unwind@10159df8` | `10159df8` | `Unwind@10159df8` | +| `Unwind@10159e06` | `10159e06` | `Unwind@10159e06` | +| `Unwind@10159e14` | `10159e14` | `Unwind@10159e14` | +| `Unwind@10159e22` | `10159e22` | `Unwind@10159e22` | +| `Unwind@10159e30` | `10159e30` | `Unwind@10159e30` | +| `Unwind@10159e3e` | `10159e3e` | `Unwind@10159e3e` | +| `Unwind@10159e4c` | `10159e4c` | `Unwind@10159e4c` | +| `Unwind@10159e5a` | `10159e5a` | `Unwind@10159e5a` | +| `Unwind@10159e68` | `10159e68` | `Unwind@10159e68` | +| `Unwind@10159e76` | `10159e76` | `Unwind@10159e76` | +| `Unwind@10159e84` | `10159e84` | `Unwind@10159e84` | +| `Unwind@10159e92` | `10159e92` | `Unwind@10159e92` | +| `Unwind@10159ea0` | `10159ea0` | `Unwind@10159ea0` | +| `Unwind@10159eae` | `10159eae` | `Unwind@10159eae` | +| `Unwind@10159ebc` | `10159ebc` | `Unwind@10159ebc` | +| `Unwind@10159eca` | `10159eca` | `Unwind@10159eca` | +| `Unwind@10159ed8` | `10159ed8` | `Unwind@10159ed8` | +| `Unwind@10159ee6` | `10159ee6` | `Unwind@10159ee6` | +| `Unwind@10159ef4` | `10159ef4` | `Unwind@10159ef4` | +| `Unwind@10159f30` | `10159f30` | `Unwind@10159f30` | +| `Unwind@10159f3e` | `10159f3e` | `Unwind@10159f3e` | +| `Unwind@10159f4c` | `10159f4c` | `Unwind@10159f4c` | +| `Unwind@10159f5a` | `10159f5a` | `Unwind@10159f5a` | +| `Unwind@10159f68` | `10159f68` | `Unwind@10159f68` | +| `Unwind@10159f76` | `10159f76` | `Unwind@10159f76` | +| `Unwind@10159f84` | `10159f84` | `Unwind@10159f84` | +| `Unwind@10159f92` | `10159f92` | `Unwind@10159f92` | +| `Unwind@10159fa0` | `10159fa0` | `Unwind@10159fa0` | +| `Unwind@10159fae` | `10159fae` | `Unwind@10159fae` | +| `Unwind@10159fbc` | `10159fbc` | `Unwind@10159fbc` | +| `Unwind@10159fca` | `10159fca` | `Unwind@10159fca` | +| `Unwind@10159fd8` | `10159fd8` | `Unwind@10159fd8` | +| `Unwind@10159fe6` | `10159fe6` | `Unwind@10159fe6` | +| `Unwind@10159ff4` | `10159ff4` | `Unwind@10159ff4` | +| `Unwind@1015a002` | `1015a002` | `Unwind@1015a002` | +| `Unwind@1015a040` | `1015a040` | `Unwind@1015a040` | +| `Unwind@1015a04b` | `1015a04b` | `Unwind@1015a04b` | +| `Unwind@1015a059` | `1015a059` | `Unwind@1015a059` | +| `Unwind@1015a067` | `1015a067` | `Unwind@1015a067` | +| `Unwind@1015a075` | `1015a075` | `Unwind@1015a075` | +| `Unwind@1015a083` | `1015a083` | `Unwind@1015a083` | +| `Unwind@1015a091` | `1015a091` | `Unwind@1015a091` | +| `Unwind@1015a09f` | `1015a09f` | `Unwind@1015a09f` | +| `Unwind@1015a0ad` | `1015a0ad` | `Unwind@1015a0ad` | +| `Unwind@1015a0bb` | `1015a0bb` | `Unwind@1015a0bb` | +| `Unwind@1015a0c9` | `1015a0c9` | `Unwind@1015a0c9` | +| `Unwind@1015a0d7` | `1015a0d7` | `Unwind@1015a0d7` | +| `Unwind@1015a0e5` | `1015a0e5` | `Unwind@1015a0e5` | +| `Unwind@1015a0f3` | `1015a0f3` | `Unwind@1015a0f3` | +| `Unwind@1015a101` | `1015a101` | `Unwind@1015a101` | +| `Unwind@1015a10c` | `1015a10c` | `Unwind@1015a10c` | +| `Unwind@1015a117` | `1015a117` | `Unwind@1015a117` | +| `Unwind@1015a122` | `1015a122` | `Unwind@1015a122` | +| `Unwind@1015a12d` | `1015a12d` | `Unwind@1015a12d` | +| `Unwind@1015a138` | `1015a138` | `Unwind@1015a138` | +| `Unwind@1015a146` | `1015a146` | `Unwind@1015a146` | +| `Unwind@1015a154` | `1015a154` | `Unwind@1015a154` | +| `Unwind@1015a162` | `1015a162` | `Unwind@1015a162` | +| `Unwind@1015a170` | `1015a170` | `Unwind@1015a170` | +| `Unwind@1015a17b` | `1015a17b` | `Unwind@1015a17b` | +| `Unwind@1015a1c0` | `1015a1c0` | `Unwind@1015a1c0` | +| `Unwind@1015a200` | `1015a200` | `Unwind@1015a200` | +| `Unwind@1015a230` | `1015a230` | `Unwind@1015a230` | +| `Unwind@1015a260` | `1015a260` | `Unwind@1015a260` | +| `Unwind@1015a290` | `1015a290` | `Unwind@1015a290` | +| `Unwind@1015a2c0` | `1015a2c0` | `Unwind@1015a2c0` | +| `Unwind@1015a310` | `1015a310` | `Unwind@1015a310` | +| `Unwind@1015a318` | `1015a318` | `Unwind@1015a318` | +| `Unwind@1015a323` | `1015a323` | `Unwind@1015a323` | +| `Unwind@1015a32e` | `1015a32e` | `Unwind@1015a32e` | +| `Unwind@1015a336` | `1015a336` | `Unwind@1015a336` | +| `Unwind@1015a33e` | `1015a33e` | `Unwind@1015a33e` | +| `Unwind@1015a370` | `1015a370` | `Unwind@1015a370` | +| `Unwind@1015a3a0` | `1015a3a0` | `Unwind@1015a3a0` | +| `Unwind@1015a3d0` | `1015a3d0` | `Unwind@1015a3d0` | +| `Unwind@1015a3d8` | `1015a3d8` | `Unwind@1015a3d8` | +| `Unwind@1015a3e0` | `1015a3e0` | `Unwind@1015a3e0` | +| `Unwind@1015a3e8` | `1015a3e8` | `Unwind@1015a3e8` | +| `Unwind@1015a3f0` | `1015a3f0` | `Unwind@1015a3f0` | +| `Unwind@1015a420` | `1015a420` | `Unwind@1015a420` | +| `Unwind@1015a428` | `1015a428` | `Unwind@1015a428` | +| `Unwind@1015a430` | `1015a430` | `Unwind@1015a430` | +| `Unwind@1015a438` | `1015a438` | `Unwind@1015a438` | +| `Unwind@1015a440` | `1015a440` | `Unwind@1015a440` | +| `Unwind@1015a448` | `1015a448` | `Unwind@1015a448` | +| `Unwind@1015a450` | `1015a450` | `Unwind@1015a450` | +| `Unwind@1015a458` | `1015a458` | `Unwind@1015a458` | +| `Unwind@1015a460` | `1015a460` | `Unwind@1015a460` | +| `Unwind@1015a468` | `1015a468` | `Unwind@1015a468` | +| `Unwind@1015a470` | `1015a470` | `Unwind@1015a470` | +| `Unwind@1015a478` | `1015a478` | `Unwind@1015a478` | +| `Unwind@1015a4a0` | `1015a4a0` | `Unwind@1015a4a0` | +| `Unwind@1015a4a8` | `1015a4a8` | `Unwind@1015a4a8` | +| `Unwind@1015a4b0` | `1015a4b0` | `Unwind@1015a4b0` | +| `Unwind@1015a4e0` | `1015a4e0` | `Unwind@1015a4e0` | +| `Unwind@1015a510` | `1015a510` | `Unwind@1015a510` | +| `Unwind@1015a518` | `1015a518` | `Unwind@1015a518` | +| `Unwind@1015a520` | `1015a520` | `Unwind@1015a520` | +| `Unwind@1015a550` | `1015a550` | `Unwind@1015a550` | +| `Unwind@1015a559` | `1015a559` | `Unwind@1015a559` | +| `Unwind@1015a56a` | `1015a56a` | `Unwind@1015a56a` | +| `Unwind@1015a572` | `1015a572` | `Unwind@1015a572` | +| `Unwind@1015a57a` | `1015a57a` | `Unwind@1015a57a` | +| `Unwind@1015a585` | `1015a585` | `Unwind@1015a585` | +| `Unwind@1015a5b0` | `1015a5b0` | `Unwind@1015a5b0` | +| `Unwind@1015a5e0` | `1015a5e0` | `Unwind@1015a5e0` | +| `Unwind@1015a5e8` | `1015a5e8` | `Unwind@1015a5e8` | +| `Unwind@1015a610` | `1015a610` | `Unwind@1015a610` | +| `Unwind@1015a640` | `1015a640` | `Unwind@1015a640` | +| `Unwind@1015a648` | `1015a648` | `Unwind@1015a648` | +| `Unwind@1015a650` | `1015a650` | `Unwind@1015a650` | +| `Unwind@1015a680` | `1015a680` | `Unwind@1015a680` | +| `Unwind@1015a6b0` | `1015a6b0` | `Unwind@1015a6b0` | +| `Unwind@1015a6b8` | `1015a6b8` | `Unwind@1015a6b8` | +| `Unwind@1015a6c0` | `1015a6c0` | `Unwind@1015a6c0` | +| `Unwind@1015a6f0` | `1015a6f0` | `Unwind@1015a6f0` | +| `Unwind@1015a730` | `1015a730` | `Unwind@1015a730` | +| `Unwind@1015a738` | `1015a738` | `Unwind@1015a738` | +| `Unwind@1015a751` | `1015a751` | `Unwind@1015a751` | +| `Unwind@1015a759` | `1015a759` | `Unwind@1015a759` | +| `Unwind@1015a7b0` | `1015a7b0` | `Unwind@1015a7b0` | +| `Unwind@1015a7f0` | `1015a7f0` | `Unwind@1015a7f0` | +| `Unwind@1015a850` | `1015a850` | `Unwind@1015a850` | +| `Unwind@1015a858` | `1015a858` | `Unwind@1015a858` | +| `Unwind@1015a860` | `1015a860` | `Unwind@1015a860` | +| `Unwind@1015a890` | `1015a890` | `Unwind@1015a890` | +| `Unwind@1015a898` | `1015a898` | `Unwind@1015a898` | +| `Unwind@1015a8a3` | `1015a8a3` | `Unwind@1015a8a3` | +| `Unwind@1015a8ab` | `1015a8ab` | `Unwind@1015a8ab` | +| `Unwind@1015a8d0` | `1015a8d0` | `Unwind@1015a8d0` | +| `Unwind@1015a8d8` | `1015a8d8` | `Unwind@1015a8d8` | +| `Unwind@1015a8e3` | `1015a8e3` | `Unwind@1015a8e3` | +| `Unwind@1015a8ee` | `1015a8ee` | `Unwind@1015a8ee` | +| `Unwind@1015a8f9` | `1015a8f9` | `Unwind@1015a8f9` | +| `Unwind@1015a904` | `1015a904` | `Unwind@1015a904` | +| `Unwind@1015a930` | `1015a930` | `Unwind@1015a930` | +| `Unwind@1015a938` | `1015a938` | `Unwind@1015a938` | +| `Unwind@1015a960` | `1015a960` | `Unwind@1015a960` | +| `Unwind@1015a968` | `1015a968` | `Unwind@1015a968` | +| `Unwind@1015a970` | `1015a970` | `Unwind@1015a970` | +| `Unwind@1015a9a0` | `1015a9a0` | `Unwind@1015a9a0` | +| `Unwind@1015a9a8` | `1015a9a8` | `Unwind@1015a9a8` | +| `Unwind@1015a9d0` | `1015a9d0` | `Unwind@1015a9d0` | +| `Unwind@1015a9d8` | `1015a9d8` | `Unwind@1015a9d8` | +| `Unwind@1015aa00` | `1015aa00` | `Unwind@1015aa00` | +| `Unwind@1015aa50` | `1015aa50` | `Unwind@1015aa50` | +| `Unwind@1015aa58` | `1015aa58` | `Unwind@1015aa58` | +| `Unwind@1015aa80` | `1015aa80` | `Unwind@1015aa80` | +| `Unwind@1015aa88` | `1015aa88` | `Unwind@1015aa88` | +| `Unwind@1015aab0` | `1015aab0` | `Unwind@1015aab0` | +| `Unwind@1015aab8` | `1015aab8` | `Unwind@1015aab8` | +| `Unwind@1015aac0` | `1015aac0` | `Unwind@1015aac0` | +| `Unwind@1015aaf0` | `1015aaf0` | `Unwind@1015aaf0` | +| `Unwind@1015aaf8` | `1015aaf8` | `Unwind@1015aaf8` | +| `Unwind@1015ab20` | `1015ab20` | `Unwind@1015ab20` | +| `Unwind@1015ab3f` | `1015ab3f` | `Unwind@1015ab3f` | +| `Unwind@1015ab47` | `1015ab47` | `Unwind@1015ab47` | +| `Unwind@1015ab80` | `1015ab80` | `Unwind@1015ab80` | +| `Unwind@1015ab88` | `1015ab88` | `Unwind@1015ab88` | +| `Unwind@1015abb0` | `1015abb0` | `Unwind@1015abb0` | +| `Unwind@1015abbb` | `1015abbb` | `Unwind@1015abbb` | +| `Unwind@1015abc3` | `1015abc3` | `Unwind@1015abc3` | +| `Unwind@1015abcb` | `1015abcb` | `Unwind@1015abcb` | +| `Unwind@1015abf0` | `1015abf0` | `Unwind@1015abf0` | +| `Unwind@1015abf8` | `1015abf8` | `Unwind@1015abf8` | +| `Unwind@1015ac20` | `1015ac20` | `Unwind@1015ac20` | +| `Unwind@1015ac28` | `1015ac28` | `Unwind@1015ac28` | +| `Unwind@1015ac33` | `1015ac33` | `Unwind@1015ac33` | +| `Unwind@1015ac3e` | `1015ac3e` | `Unwind@1015ac3e` | +| `Unwind@1015ac46` | `1015ac46` | `Unwind@1015ac46` | +| `Unwind@1015ac4e` | `1015ac4e` | `Unwind@1015ac4e` | +| `Unwind@1015ac80` | `1015ac80` | `Unwind@1015ac80` | +| `Unwind@1015ac88` | `1015ac88` | `Unwind@1015ac88` | +| `Unwind@1015ac90` | `1015ac90` | `Unwind@1015ac90` | +| `Unwind@1015ac98` | `1015ac98` | `Unwind@1015ac98` | +| `Unwind@1015acc0` | `1015acc0` | `Unwind@1015acc0` | +| `Unwind@1015acc8` | `1015acc8` | `Unwind@1015acc8` | +| `Unwind@1015acd0` | `1015acd0` | `Unwind@1015acd0` | +| `Unwind@1015ad00` | `1015ad00` | `Unwind@1015ad00` | +| `Unwind@1015ad08` | `1015ad08` | `Unwind@1015ad08` | +| `Unwind@1015ad30` | `1015ad30` | `Unwind@1015ad30` | +| `Unwind@1015ad38` | `1015ad38` | `Unwind@1015ad38` | +| `Unwind@1015ad60` | `1015ad60` | `Unwind@1015ad60` | +| `Unwind@1015ad68` | `1015ad68` | `Unwind@1015ad68` | +| `Unwind@1015ad90` | `1015ad90` | `Unwind@1015ad90` | +| `Unwind@1015ad9e` | `1015ad9e` | `Unwind@1015ad9e` | +| `Unwind@1015ada6` | `1015ada6` | `Unwind@1015ada6` | +| `Unwind@1015adb4` | `1015adb4` | `Unwind@1015adb4` | +| `Unwind@1015adc2` | `1015adc2` | `Unwind@1015adc2` | +| `Unwind@1015add0` | `1015add0` | `Unwind@1015add0` | +| `Unwind@1015adde` | `1015adde` | `Unwind@1015adde` | +| `Unwind@1015adec` | `1015adec` | `Unwind@1015adec` | +| `Unwind@1015adfa` | `1015adfa` | `Unwind@1015adfa` | +| `Unwind@1015ae08` | `1015ae08` | `Unwind@1015ae08` | +| `Unwind@1015ae16` | `1015ae16` | `Unwind@1015ae16` | +| `Unwind@1015ae24` | `1015ae24` | `Unwind@1015ae24` | +| `Unwind@1015ae32` | `1015ae32` | `Unwind@1015ae32` | +| `Unwind@1015ae40` | `1015ae40` | `Unwind@1015ae40` | +| `Unwind@1015ae4e` | `1015ae4e` | `Unwind@1015ae4e` | +| `Unwind@1015ae5c` | `1015ae5c` | `Unwind@1015ae5c` | +| `Unwind@1015ae6a` | `1015ae6a` | `Unwind@1015ae6a` | +| `Unwind@1015ae78` | `1015ae78` | `Unwind@1015ae78` | +| `Unwind@1015ae86` | `1015ae86` | `Unwind@1015ae86` | +| `Unwind@1015ae94` | `1015ae94` | `Unwind@1015ae94` | +| `Unwind@1015aea2` | `1015aea2` | `Unwind@1015aea2` | +| `Unwind@1015aeb0` | `1015aeb0` | `Unwind@1015aeb0` | +| `Unwind@1015aebe` | `1015aebe` | `Unwind@1015aebe` | +| `Unwind@1015aecc` | `1015aecc` | `Unwind@1015aecc` | +| `Unwind@1015aeda` | `1015aeda` | `Unwind@1015aeda` | +| `Unwind@1015aee8` | `1015aee8` | `Unwind@1015aee8` | +| `Unwind@1015aef6` | `1015aef6` | `Unwind@1015aef6` | +| `Unwind@1015af04` | `1015af04` | `Unwind@1015af04` | +| `Unwind@1015af12` | `1015af12` | `Unwind@1015af12` | +| `Unwind@1015af20` | `1015af20` | `Unwind@1015af20` | +| `Unwind@1015af60` | `1015af60` | `Unwind@1015af60` | +| `Unwind@1015af6e` | `1015af6e` | `Unwind@1015af6e` | +| `Unwind@1015af7c` | `1015af7c` | `Unwind@1015af7c` | +| `Unwind@1015af8a` | `1015af8a` | `Unwind@1015af8a` | +| `Unwind@1015af98` | `1015af98` | `Unwind@1015af98` | +| `Unwind@1015afa6` | `1015afa6` | `Unwind@1015afa6` | +| `Unwind@1015afb4` | `1015afb4` | `Unwind@1015afb4` | +| `Unwind@1015afc2` | `1015afc2` | `Unwind@1015afc2` | +| `Unwind@1015afd0` | `1015afd0` | `Unwind@1015afd0` | +| `Unwind@1015afde` | `1015afde` | `Unwind@1015afde` | +| `Unwind@1015afec` | `1015afec` | `Unwind@1015afec` | +| `Unwind@1015affa` | `1015affa` | `Unwind@1015affa` | +| `Unwind@1015b008` | `1015b008` | `Unwind@1015b008` | +| `Unwind@1015b016` | `1015b016` | `Unwind@1015b016` | +| `Unwind@1015b01e` | `1015b01e` | `Unwind@1015b01e` | +| `Unwind@1015b02c` | `1015b02c` | `Unwind@1015b02c` | +| `Unwind@1015b03a` | `1015b03a` | `Unwind@1015b03a` | +| `Unwind@1015b048` | `1015b048` | `Unwind@1015b048` | +| `Unwind@1015b056` | `1015b056` | `Unwind@1015b056` | +| `Unwind@1015b05e` | `1015b05e` | `Unwind@1015b05e` | +| `Unwind@1015b06c` | `1015b06c` | `Unwind@1015b06c` | +| `Unwind@1015b07a` | `1015b07a` | `Unwind@1015b07a` | +| `Unwind@1015b088` | `1015b088` | `Unwind@1015b088` | +| `Unwind@1015b096` | `1015b096` | `Unwind@1015b096` | +| `Unwind@1015b0a4` | `1015b0a4` | `Unwind@1015b0a4` | +| `Unwind@1015b0b2` | `1015b0b2` | `Unwind@1015b0b2` | +| `Unwind@1015b0c0` | `1015b0c0` | `Unwind@1015b0c0` | +| `Unwind@1015b0ce` | `1015b0ce` | `Unwind@1015b0ce` | +| `Unwind@1015b0dc` | `1015b0dc` | `Unwind@1015b0dc` | +| `Unwind@1015b0ea` | `1015b0ea` | `Unwind@1015b0ea` | +| `Unwind@1015b0f8` | `1015b0f8` | `Unwind@1015b0f8` | +| `Unwind@1015b106` | `1015b106` | `Unwind@1015b106` | +| `Unwind@1015b114` | `1015b114` | `Unwind@1015b114` | +| `Unwind@1015b11c` | `1015b11c` | `Unwind@1015b11c` | +| `Unwind@1015b12a` | `1015b12a` | `Unwind@1015b12a` | +| `Unwind@1015b138` | `1015b138` | `Unwind@1015b138` | +| `Unwind@1015b146` | `1015b146` | `Unwind@1015b146` | +| `Unwind@1015b14e` | `1015b14e` | `Unwind@1015b14e` | +| `Unwind@1015b15c` | `1015b15c` | `Unwind@1015b15c` | +| `Unwind@1015b16a` | `1015b16a` | `Unwind@1015b16a` | +| `Unwind@1015b172` | `1015b172` | `Unwind@1015b172` | +| `Unwind@1015b180` | `1015b180` | `Unwind@1015b180` | +| `Unwind@1015b18e` | `1015b18e` | `Unwind@1015b18e` | +| `Unwind@1015b19c` | `1015b19c` | `Unwind@1015b19c` | +| `Unwind@1015b1a4` | `1015b1a4` | `Unwind@1015b1a4` | +| `Unwind@1015b1b2` | `1015b1b2` | `Unwind@1015b1b2` | +| `Unwind@1015b1c0` | `1015b1c0` | `Unwind@1015b1c0` | +| `Unwind@1015b1ce` | `1015b1ce` | `Unwind@1015b1ce` | +| `Unwind@1015b1dc` | `1015b1dc` | `Unwind@1015b1dc` | +| `Unwind@1015b210` | `1015b210` | `Unwind@1015b210` | +| `Unwind@1015b218` | `1015b218` | `Unwind@1015b218` | +| `Unwind@1015b240` | `1015b240` | `Unwind@1015b240` | +| `Unwind@1015b270` | `1015b270` | `Unwind@1015b270` | +| `Unwind@1015b2a0` | `1015b2a0` | `Unwind@1015b2a0` | +| `Unwind@1015b2d0` | `1015b2d0` | `Unwind@1015b2d0` | +| `Unwind@1015b300` | `1015b300` | `Unwind@1015b300` | +| `Unwind@1015b330` | `1015b330` | `Unwind@1015b330` | +| `Unwind@1015b360` | `1015b360` | `Unwind@1015b360` | +| `Unwind@1015b368` | `1015b368` | `Unwind@1015b368` | +| `Unwind@1015b370` | `1015b370` | `Unwind@1015b370` | +| `Unwind@1015b3a0` | `1015b3a0` | `Unwind@1015b3a0` | +| `Unwind@1015b3d0` | `1015b3d0` | `Unwind@1015b3d0` | +| `Unwind@1015b400` | `1015b400` | `Unwind@1015b400` | +| `Unwind@1015b430` | `1015b430` | `Unwind@1015b430` | +| `Unwind@1015b460` | `1015b460` | `Unwind@1015b460` | +| `Unwind@1015b490` | `1015b490` | `Unwind@1015b490` | +| `Unwind@1015b4c0` | `1015b4c0` | `Unwind@1015b4c0` | +| `Unwind@1015b4f0` | `1015b4f0` | `Unwind@1015b4f0` | +| `Unwind@1015b520` | `1015b520` | `Unwind@1015b520` | +| `Unwind@1015b528` | `1015b528` | `Unwind@1015b528` | +| `Unwind@1015b550` | `1015b550` | `Unwind@1015b550` | +| `Unwind@1015b580` | `1015b580` | `Unwind@1015b580` | +| `Unwind@1015b5b0` | `1015b5b0` | `Unwind@1015b5b0` | +| `Unwind@1015b5e0` | `1015b5e0` | `Unwind@1015b5e0` | +| `Unwind@1015b610` | `1015b610` | `Unwind@1015b610` | +| `Unwind@1015b640` | `1015b640` | `Unwind@1015b640` | +| `Unwind@1015b670` | `1015b670` | `Unwind@1015b670` | +| `Unwind@1015b6a0` | `1015b6a0` | `Unwind@1015b6a0` | +| `Unwind@1015b6d0` | `1015b6d0` | `Unwind@1015b6d0` | +| `Unwind@1015b6d8` | `1015b6d8` | `Unwind@1015b6d8` | +| `Unwind@1015b6e0` | `1015b6e0` | `Unwind@1015b6e0` | +| `Unwind@1015b710` | `1015b710` | `Unwind@1015b710` | +| `Unwind@1015b718` | `1015b718` | `Unwind@1015b718` | +| `Unwind@1015b720` | `1015b720` | `Unwind@1015b720` | +| `Unwind@1015b750` | `1015b750` | `Unwind@1015b750` | +| `Unwind@1015b780` | `1015b780` | `Unwind@1015b780` | +| `Unwind@1015b7b0` | `1015b7b0` | `Unwind@1015b7b0` | +| `Unwind@1015b7e0` | `1015b7e0` | `Unwind@1015b7e0` | +| `Unwind@1015b810` | `1015b810` | `Unwind@1015b810` | +| `Unwind@1015b840` | `1015b840` | `Unwind@1015b840` | +| `Unwind@1015b848` | `1015b848` | `Unwind@1015b848` | +| `Unwind@1015b850` | `1015b850` | `Unwind@1015b850` | +| `Unwind@1015b880` | `1015b880` | `Unwind@1015b880` | +| `Unwind@1015b8b0` | `1015b8b0` | `Unwind@1015b8b0` | +| `Unwind@1015b8e0` | `1015b8e0` | `Unwind@1015b8e0` | +| `Unwind@1015b910` | `1015b910` | `Unwind@1015b910` | +| `Unwind@1015b940` | `1015b940` | `Unwind@1015b940` | +| `Unwind@1015b970` | `1015b970` | `Unwind@1015b970` | +| `Unwind@1015b9b0` | `1015b9b0` | `Unwind@1015b9b0` | +| `Unwind@1015b9b8` | `1015b9b8` | `Unwind@1015b9b8` | +| `Unwind@1015b9c0` | `1015b9c0` | `Unwind@1015b9c0` | +| `Unwind@1015b9f0` | `1015b9f0` | `Unwind@1015b9f0` | +| `Unwind@1015b9f8` | `1015b9f8` | `Unwind@1015b9f8` | +| `Unwind@1015ba03` | `1015ba03` | `Unwind@1015ba03` | +| `Unwind@1015ba0e` | `1015ba0e` | `Unwind@1015ba0e` | +| `Unwind@1015ba19` | `1015ba19` | `Unwind@1015ba19` | +| `Unwind@1015ba24` | `1015ba24` | `Unwind@1015ba24` | +| `Unwind@1015ba50` | `1015ba50` | `Unwind@1015ba50` | +| `Unwind@1015ba58` | `1015ba58` | `Unwind@1015ba58` | +| `Unwind@1015ba80` | `1015ba80` | `Unwind@1015ba80` | +| `Unwind@1015ba88` | `1015ba88` | `Unwind@1015ba88` | +| `Unwind@1015bab0` | `1015bab0` | `Unwind@1015bab0` | +| `Unwind@1015bab8` | `1015bab8` | `Unwind@1015bab8` | +| `Unwind@1015bae0` | `1015bae0` | `Unwind@1015bae0` | +| `Unwind@1015bb10` | `1015bb10` | `Unwind@1015bb10` | +| `Unwind@1015bb18` | `1015bb18` | `Unwind@1015bb18` | +| `Unwind@1015bb20` | `1015bb20` | `Unwind@1015bb20` | +| `Unwind@1015bb50` | `1015bb50` | `Unwind@1015bb50` | +| `Unwind@1015bb58` | `1015bb58` | `Unwind@1015bb58` | +| `Unwind@1015bb63` | `1015bb63` | `Unwind@1015bb63` | +| `Unwind@1015bb90` | `1015bb90` | `Unwind@1015bb90` | +| `Unwind@1015bbc0` | `1015bbc0` | `Unwind@1015bbc0` | +| `Unwind@1015bbc8` | `1015bbc8` | `Unwind@1015bbc8` | +| `Unwind@1015bbf0` | `1015bbf0` | `Unwind@1015bbf0` | +| `Unwind@1015bc20` | `1015bc20` | `Unwind@1015bc20` | +| `Unwind@1015bc50` | `1015bc50` | `Unwind@1015bc50` | +| `Unwind@1015bc58` | `1015bc58` | `Unwind@1015bc58` | +| `Unwind@1015bc60` | `1015bc60` | `Unwind@1015bc60` | +| `Unwind@1015bc6b` | `1015bc6b` | `Unwind@1015bc6b` | +| `Unwind@1015bc73` | `1015bc73` | `Unwind@1015bc73` | +| `Unwind@1015bca0` | `1015bca0` | `Unwind@1015bca0` | +| `Unwind@1015bcb1` | `1015bcb1` | `Unwind@1015bcb1` | +| `Unwind@1015bcb9` | `1015bcb9` | `Unwind@1015bcb9` | +| `Unwind@1015bcc1` | `1015bcc1` | `Unwind@1015bcc1` | +| `Unwind@1015bcf0` | `1015bcf0` | `Unwind@1015bcf0` | +| `Unwind@1015bd20` | `1015bd20` | `Unwind@1015bd20` | +| `Unwind@1015bd28` | `1015bd28` | `Unwind@1015bd28` | +| `Unwind@1015bd50` | `1015bd50` | `Unwind@1015bd50` | +| `Unwind@1015bd80` | `1015bd80` | `Unwind@1015bd80` | +| `Unwind@1015bd88` | `1015bd88` | `Unwind@1015bd88` | +| `Unwind@1015bd93` | `1015bd93` | `Unwind@1015bd93` | +| `Unwind@1015bdc0` | `1015bdc0` | `Unwind@1015bdc0` | +| `Unwind@1015bdf0` | `1015bdf0` | `Unwind@1015bdf0` | +| `Unwind@1015bdf8` | `1015bdf8` | `Unwind@1015bdf8` | +| `Unwind@1015be20` | `1015be20` | `Unwind@1015be20` | +| `Unwind@1015be43` | `1015be43` | `Unwind@1015be43` | +| `Unwind@1015be4f` | `1015be4f` | `Unwind@1015be4f` | +| `Unwind@1015be5b` | `1015be5b` | `Unwind@1015be5b` | +| `Unwind@1015be66` | `1015be66` | `Unwind@1015be66` | +| `Unwind@1015be71` | `1015be71` | `Unwind@1015be71` | +| `Unwind@1015be93` | `1015be93` | `Unwind@1015be93` | +| `Unwind@1015bea2` | `1015bea2` | `Unwind@1015bea2` | +| `Unwind@1015beb0` | `1015beb0` | `Unwind@1015beb0` | +| `Unwind@1015bef0` | `1015bef0` | `Unwind@1015bef0` | +| `Unwind@1015bef8` | `1015bef8` | `Unwind@1015bef8` | +| `Unwind@1015bf20` | `1015bf20` | `Unwind@1015bf20` | +| `Unwind@1015bf28` | `1015bf28` | `Unwind@1015bf28` | +| `Unwind@1015bf50` | `1015bf50` | `Unwind@1015bf50` | +| `Unwind@1015bf58` | `1015bf58` | `Unwind@1015bf58` | +| `Unwind@1015bf80` | `1015bf80` | `Unwind@1015bf80` | +| `Unwind@1015bf88` | `1015bf88` | `Unwind@1015bf88` | +| `Unwind@1015bfb0` | `1015bfb0` | `Unwind@1015bfb0` | +| `Unwind@1015bfb8` | `1015bfb8` | `Unwind@1015bfb8` | +| `Unwind@1015bfc0` | `1015bfc0` | `Unwind@1015bfc0` | +| `Unwind@1015bff0` | `1015bff0` | `Unwind@1015bff0` | +| `Unwind@1015c00a` | `1015c00a` | `Unwind@1015c00a` | +| `Unwind@1015c016` | `1015c016` | `Unwind@1015c016` | +| `Unwind@1015c01f` | `1015c01f` | `Unwind@1015c01f` | +| `Unwind@1015c02a` | `1015c02a` | `Unwind@1015c02a` | +| `Unwind@1015c035` | `1015c035` | `Unwind@1015c035` | +| `Unwind@1015c080` | `1015c080` | `Unwind@1015c080` | +| `Unwind@1015c088` | `1015c088` | `Unwind@1015c088` | +| `Unwind@1015c0b0` | `1015c0b0` | `Unwind@1015c0b0` | +| `Unwind@1015c0b8` | `1015c0b8` | `Unwind@1015c0b8` | +| `Unwind@1015c0e0` | `1015c0e0` | `Unwind@1015c0e0` | +| `Unwind@1015c0e8` | `1015c0e8` | `Unwind@1015c0e8` | +| `Unwind@1015c110` | `1015c110` | `Unwind@1015c110` | +| `Unwind@1015c118` | `1015c118` | `Unwind@1015c118` | +| `Unwind@1015c140` | `1015c140` | `Unwind@1015c140` | +| `Unwind@1015c148` | `1015c148` | `Unwind@1015c148` | +| `Unwind@1015c170` | `1015c170` | `Unwind@1015c170` | +| `Unwind@1015c178` | `1015c178` | `Unwind@1015c178` | +| `Unwind@1015c1a0` | `1015c1a0` | `Unwind@1015c1a0` | +| `Unwind@1015c1a8` | `1015c1a8` | `Unwind@1015c1a8` | +| `Unwind@1015c1d0` | `1015c1d0` | `Unwind@1015c1d0` | +| `Unwind@1015c200` | `1015c200` | `Unwind@1015c200` | +| `Unwind@1015c208` | `1015c208` | `Unwind@1015c208` | +| `Unwind@1015c230` | `1015c230` | `Unwind@1015c230` | +| `Unwind@1015c238` | `1015c238` | `Unwind@1015c238` | +| `Unwind@1015c240` | `1015c240` | `Unwind@1015c240` | +| `Unwind@1015c248` | `1015c248` | `Unwind@1015c248` | +| `Unwind@1015c280` | `1015c280` | `Unwind@1015c280` | +| `Unwind@1015c288` | `1015c288` | `Unwind@1015c288` | +| `Unwind@1015c2b0` | `1015c2b0` | `Unwind@1015c2b0` | +| `Unwind@1015c2b8` | `1015c2b8` | `Unwind@1015c2b8` | +| `Unwind@1015c2e0` | `1015c2e0` | `Unwind@1015c2e0` | +| `Unwind@1015c2e8` | `1015c2e8` | `Unwind@1015c2e8` | +| `Unwind@1015c2f0` | `1015c2f0` | `Unwind@1015c2f0` | +| `Unwind@1015c2f8` | `1015c2f8` | `Unwind@1015c2f8` | +| `Unwind@1015c320` | `1015c320` | `Unwind@1015c320` | +| `Unwind@1015c328` | `1015c328` | `Unwind@1015c328` | +| `Unwind@1015c350` | `1015c350` | `Unwind@1015c350` | +| `Unwind@1015c358` | `1015c358` | `Unwind@1015c358` | +| `Unwind@1015c380` | `1015c380` | `Unwind@1015c380` | +| `Unwind@1015c388` | `1015c388` | `Unwind@1015c388` | +| `Unwind@1015c3b0` | `1015c3b0` | `Unwind@1015c3b0` | +| `Unwind@1015c3b8` | `1015c3b8` | `Unwind@1015c3b8` | +| `Unwind@1015c3e0` | `1015c3e0` | `Unwind@1015c3e0` | +| `Unwind@1015c3e8` | `1015c3e8` | `Unwind@1015c3e8` | +| `Unwind@1015c410` | `1015c410` | `Unwind@1015c410` | +| `Unwind@1015c418` | `1015c418` | `Unwind@1015c418` | +| `Unwind@1015c440` | `1015c440` | `Unwind@1015c440` | +| `Unwind@1015c448` | `1015c448` | `Unwind@1015c448` | +| `Unwind@1015c470` | `1015c470` | `Unwind@1015c470` | +| `Unwind@1015c478` | `1015c478` | `Unwind@1015c478` | +| `Unwind@1015c4a0` | `1015c4a0` | `Unwind@1015c4a0` | +| `Unwind@1015c4a8` | `1015c4a8` | `Unwind@1015c4a8` | +| `Unwind@1015c4d0` | `1015c4d0` | `Unwind@1015c4d0` | +| `Unwind@1015c4d8` | `1015c4d8` | `Unwind@1015c4d8` | +| `Unwind@1015c500` | `1015c500` | `Unwind@1015c500` | +| `Unwind@1015c508` | `1015c508` | `Unwind@1015c508` | +| `Unwind@1015c530` | `1015c530` | `Unwind@1015c530` | +| `Unwind@1015c538` | `1015c538` | `Unwind@1015c538` | +| `Unwind@1015c560` | `1015c560` | `Unwind@1015c560` | +| `Unwind@1015c568` | `1015c568` | `Unwind@1015c568` | +| `Unwind@1015c590` | `1015c590` | `Unwind@1015c590` | +| `Unwind@1015c598` | `1015c598` | `Unwind@1015c598` | +| `Unwind@1015c5c0` | `1015c5c0` | `Unwind@1015c5c0` | +| `Unwind@1015c5c8` | `1015c5c8` | `Unwind@1015c5c8` | +| `Unwind@1015c5d3` | `1015c5d3` | `Unwind@1015c5d3` | +| `Unwind@1015c5de` | `1015c5de` | `Unwind@1015c5de` | +| `Unwind@1015c5e6` | `1015c5e6` | `Unwind@1015c5e6` | +| `Unwind@1015c5ee` | `1015c5ee` | `Unwind@1015c5ee` | +| `Unwind@1015c620` | `1015c620` | `Unwind@1015c620` | +| `Unwind@1015c62e` | `1015c62e` | `Unwind@1015c62e` | +| `Unwind@1015c63c` | `1015c63c` | `Unwind@1015c63c` | +| `Unwind@1015c64a` | `1015c64a` | `Unwind@1015c64a` | +| `Unwind@1015c658` | `1015c658` | `Unwind@1015c658` | +| `Unwind@1015c666` | `1015c666` | `Unwind@1015c666` | +| `Unwind@1015c674` | `1015c674` | `Unwind@1015c674` | +| `Unwind@1015c682` | `1015c682` | `Unwind@1015c682` | +| `Unwind@1015c690` | `1015c690` | `Unwind@1015c690` | +| `Unwind@1015c69e` | `1015c69e` | `Unwind@1015c69e` | +| `Unwind@1015c6ac` | `1015c6ac` | `Unwind@1015c6ac` | +| `Unwind@1015c6ba` | `1015c6ba` | `Unwind@1015c6ba` | +| `Unwind@1015c6c8` | `1015c6c8` | `Unwind@1015c6c8` | +| `Unwind@1015c6d6` | `1015c6d6` | `Unwind@1015c6d6` | +| `Unwind@1015c6de` | `1015c6de` | `Unwind@1015c6de` | +| `Unwind@1015c6ec` | `1015c6ec` | `Unwind@1015c6ec` | +| `Unwind@1015c6fa` | `1015c6fa` | `Unwind@1015c6fa` | +| `Unwind@1015c702` | `1015c702` | `Unwind@1015c702` | +| `Unwind@1015c710` | `1015c710` | `Unwind@1015c710` | +| `Unwind@1015c71e` | `1015c71e` | `Unwind@1015c71e` | +| `Unwind@1015c72c` | `1015c72c` | `Unwind@1015c72c` | +| `Unwind@1015c73a` | `1015c73a` | `Unwind@1015c73a` | +| `Unwind@1015c748` | `1015c748` | `Unwind@1015c748` | +| `Unwind@1015c780` | `1015c780` | `Unwind@1015c780` | +| `Unwind@1015c78e` | `1015c78e` | `Unwind@1015c78e` | +| `Unwind@1015c79c` | `1015c79c` | `Unwind@1015c79c` | +| `Unwind@1015c7aa` | `1015c7aa` | `Unwind@1015c7aa` | +| `Unwind@1015c7b8` | `1015c7b8` | `Unwind@1015c7b8` | +| `Unwind@1015c7c6` | `1015c7c6` | `Unwind@1015c7c6` | +| `Unwind@1015c7d4` | `1015c7d4` | `Unwind@1015c7d4` | +| `Unwind@1015c7e2` | `1015c7e2` | `Unwind@1015c7e2` | +| `Unwind@1015c7ea` | `1015c7ea` | `Unwind@1015c7ea` | +| `Unwind@1015c820` | `1015c820` | `Unwind@1015c820` | +| `Unwind@1015c828` | `1015c828` | `Unwind@1015c828` | +| `Unwind@1015c850` | `1015c850` | `Unwind@1015c850` | +| `Unwind@1015c85b` | `1015c85b` | `Unwind@1015c85b` | +| `Unwind@1015c863` | `1015c863` | `Unwind@1015c863` | +| `Unwind@1015c890` | `1015c890` | `Unwind@1015c890` | +| `Unwind@1015c8d0` | `1015c8d0` | `Unwind@1015c8d0` | +| `Unwind@1015c8d8` | `1015c8d8` | `Unwind@1015c8d8` | +| `Unwind@1015c8e0` | `1015c8e0` | `Unwind@1015c8e0` | +| `Unwind@1015c910` | `1015c910` | `Unwind@1015c910` | +| `Unwind@1015c91b` | `1015c91b` | `Unwind@1015c91b` | +| `Unwind@1015c923` | `1015c923` | `Unwind@1015c923` | +| `Unwind@1015c92b` | `1015c92b` | `Unwind@1015c92b` | +| `Unwind@1015c950` | `1015c950` | `Unwind@1015c950` | +| `Unwind@1015c95b` | `1015c95b` | `Unwind@1015c95b` | +| `Unwind@1015c963` | `1015c963` | `Unwind@1015c963` | +| `Unwind@1015c96b` | `1015c96b` | `Unwind@1015c96b` | +| `Unwind@1015c990` | `1015c990` | `Unwind@1015c990` | +| `Unwind@1015c998` | `1015c998` | `Unwind@1015c998` | +| `Unwind@1015c9c0` | `1015c9c0` | `Unwind@1015c9c0` | +| `Unwind@1015c9c8` | `1015c9c8` | `Unwind@1015c9c8` | +| `Unwind@1015c9d0` | `1015c9d0` | `Unwind@1015c9d0` | +| `Unwind@1015ca00` | `1015ca00` | `Unwind@1015ca00` | +| `Unwind@1015ca08` | `1015ca08` | `Unwind@1015ca08` | +| `Unwind@1015ca10` | `1015ca10` | `Unwind@1015ca10` | +| `Unwind@1015ca40` | `1015ca40` | `Unwind@1015ca40` | +| `Unwind@1015ca48` | `1015ca48` | `Unwind@1015ca48` | +| `Unwind@1015ca50` | `1015ca50` | `Unwind@1015ca50` | +| `Unwind@1015ca80` | `1015ca80` | `Unwind@1015ca80` | +| `Unwind@1015ca8b` | `1015ca8b` | `Unwind@1015ca8b` | +| `Unwind@1015ca96` | `1015ca96` | `Unwind@1015ca96` | +| `Unwind@1015cab9` | `1015cab9` | `Unwind@1015cab9` | +| `Unwind@1015cac5` | `1015cac5` | `Unwind@1015cac5` | +| `Unwind@1015cad1` | `1015cad1` | `Unwind@1015cad1` | +| `Unwind@1015cadc` | `1015cadc` | `Unwind@1015cadc` | +| `Unwind@1015cae7` | `1015cae7` | `Unwind@1015cae7` | +| `Unwind@1015caf2` | `1015caf2` | `Unwind@1015caf2` | +| `Unwind@1015cafd` | `1015cafd` | `Unwind@1015cafd` | +| `Unwind@1015cb08` | `1015cb08` | `Unwind@1015cb08` | +| `Unwind@1015cb13` | `1015cb13` | `Unwind@1015cb13` | +| `Unwind@1015cb1e` | `1015cb1e` | `Unwind@1015cb1e` | +| `Unwind@1015cb29` | `1015cb29` | `Unwind@1015cb29` | +| `Unwind@1015cb34` | `1015cb34` | `Unwind@1015cb34` | +| `Unwind@1015cb3f` | `1015cb3f` | `Unwind@1015cb3f` | +| `Unwind@1015cb4a` | `1015cb4a` | `Unwind@1015cb4a` | +| `Unwind@1015cb55` | `1015cb55` | `Unwind@1015cb55` | +| `Unwind@1015cb60` | `1015cb60` | `Unwind@1015cb60` | +| `Unwind@1015cb82` | `1015cb82` | `Unwind@1015cb82` | +| `Unwind@1015cb91` | `1015cb91` | `Unwind@1015cb91` | +| `Unwind@1015cb9f` | `1015cb9f` | `Unwind@1015cb9f` | +| `Unwind@1015cbe0` | `1015cbe0` | `Unwind@1015cbe0` | +| `Unwind@1015cc20` | `1015cc20` | `Unwind@1015cc20` | +| `Unwind@1015cc28` | `1015cc28` | `Unwind@1015cc28` | +| `Unwind@1015cc30` | `1015cc30` | `Unwind@1015cc30` | +| `Unwind@1015cc38` | `1015cc38` | `Unwind@1015cc38` | +| `Unwind@1015cc70` | `1015cc70` | `Unwind@1015cc70` | +| `Unwind@1015cc78` | `1015cc78` | `Unwind@1015cc78` | +| `Unwind@1015cc80` | `1015cc80` | `Unwind@1015cc80` | +| `Unwind@1015cc88` | `1015cc88` | `Unwind@1015cc88` | +| `Unwind@1015cc93` | `1015cc93` | `Unwind@1015cc93` | +| `Unwind@1015ccac` | `1015ccac` | `Unwind@1015ccac` | +| `Unwind@1015ccb4` | `1015ccb4` | `Unwind@1015ccb4` | +| `Unwind@1015cce0` | `1015cce0` | `Unwind@1015cce0` | +| `Unwind@1015cce8` | `1015cce8` | `Unwind@1015cce8` | +| `Unwind@1015ccf0` | `1015ccf0` | `Unwind@1015ccf0` | +| `Unwind@1015cd20` | `1015cd20` | `Unwind@1015cd20` | +| `Unwind@1015cd28` | `1015cd28` | `Unwind@1015cd28` | +| `Unwind@1015cd30` | `1015cd30` | `Unwind@1015cd30` | +| `Unwind@1015cd60` | `1015cd60` | `Unwind@1015cd60` | +| `Unwind@1015cd68` | `1015cd68` | `Unwind@1015cd68` | +| `Unwind@1015cd70` | `1015cd70` | `Unwind@1015cd70` | +| `Unwind@1015cda0` | `1015cda0` | `Unwind@1015cda0` | +| `Unwind@1015cda8` | `1015cda8` | `Unwind@1015cda8` | +| `Unwind@1015cdb0` | `1015cdb0` | `Unwind@1015cdb0` | +| `Unwind@1015cde0` | `1015cde0` | `Unwind@1015cde0` | +| `Unwind@1015cde8` | `1015cde8` | `Unwind@1015cde8` | +| `Unwind@1015cdf0` | `1015cdf0` | `Unwind@1015cdf0` | +| `Unwind@1015ce20` | `1015ce20` | `Unwind@1015ce20` | +| `Unwind@1015ce28` | `1015ce28` | `Unwind@1015ce28` | +| `Unwind@1015ce30` | `1015ce30` | `Unwind@1015ce30` | +| `Unwind@1015ce60` | `1015ce60` | `Unwind@1015ce60` | +| `Unwind@1015ce68` | `1015ce68` | `Unwind@1015ce68` | +| `Unwind@1015ce70` | `1015ce70` | `Unwind@1015ce70` | +| `Unwind@1015cea0` | `1015cea0` | `Unwind@1015cea0` | +| `Unwind@1015cea8` | `1015cea8` | `Unwind@1015cea8` | +| `Unwind@1015ceb0` | `1015ceb0` | `Unwind@1015ceb0` | +| `Unwind@1015cee0` | `1015cee0` | `Unwind@1015cee0` | +| `Unwind@1015cee8` | `1015cee8` | `Unwind@1015cee8` | +| `Unwind@1015cef0` | `1015cef0` | `Unwind@1015cef0` | +| `Unwind@1015cf20` | `1015cf20` | `Unwind@1015cf20` | +| `Unwind@1015cf28` | `1015cf28` | `Unwind@1015cf28` | +| `Unwind@1015cf30` | `1015cf30` | `Unwind@1015cf30` | +| `Unwind@1015cf60` | `1015cf60` | `Unwind@1015cf60` | +| `Unwind@1015cf68` | `1015cf68` | `Unwind@1015cf68` | +| `Unwind@1015cf70` | `1015cf70` | `Unwind@1015cf70` | +| `Unwind@1015cfa0` | `1015cfa0` | `Unwind@1015cfa0` | +| `Unwind@1015cfa8` | `1015cfa8` | `Unwind@1015cfa8` | +| `Unwind@1015cfb0` | `1015cfb0` | `Unwind@1015cfb0` | +| `Unwind@1015cfe0` | `1015cfe0` | `Unwind@1015cfe0` | +| `Unwind@1015cfe8` | `1015cfe8` | `Unwind@1015cfe8` | +| `Unwind@1015cff0` | `1015cff0` | `Unwind@1015cff0` | +| `Unwind@1015d020` | `1015d020` | `Unwind@1015d020` | +| `Unwind@1015d028` | `1015d028` | `Unwind@1015d028` | +| `Unwind@1015d030` | `1015d030` | `Unwind@1015d030` | +| `Unwind@1015d060` | `1015d060` | `Unwind@1015d060` | +| `Unwind@1015d068` | `1015d068` | `Unwind@1015d068` | +| `Unwind@1015d070` | `1015d070` | `Unwind@1015d070` | +| `Unwind@1015d0a0` | `1015d0a0` | `Unwind@1015d0a0` | +| `Unwind@1015d0a8` | `1015d0a8` | `Unwind@1015d0a8` | +| `Unwind@1015d0b0` | `1015d0b0` | `Unwind@1015d0b0` | +| `Unwind@1015d0e0` | `1015d0e0` | `Unwind@1015d0e0` | +| `Unwind@1015d0e8` | `1015d0e8` | `Unwind@1015d0e8` | +| `Unwind@1015d0f0` | `1015d0f0` | `Unwind@1015d0f0` | +| `Unwind@1015d120` | `1015d120` | `Unwind@1015d120` | +| `Unwind@1015d128` | `1015d128` | `Unwind@1015d128` | +| `Unwind@1015d130` | `1015d130` | `Unwind@1015d130` | +| `Unwind@1015d160` | `1015d160` | `Unwind@1015d160` | +| `Unwind@1015d168` | `1015d168` | `Unwind@1015d168` | +| `Unwind@1015d170` | `1015d170` | `Unwind@1015d170` | +| `Unwind@1015d1a0` | `1015d1a0` | `Unwind@1015d1a0` | +| `Unwind@1015d1a8` | `1015d1a8` | `Unwind@1015d1a8` | +| `Unwind@1015d1b0` | `1015d1b0` | `Unwind@1015d1b0` | +| `Unwind@1015d1e0` | `1015d1e0` | `Unwind@1015d1e0` | +| `Unwind@1015d1e8` | `1015d1e8` | `Unwind@1015d1e8` | +| `Unwind@1015d1f0` | `1015d1f0` | `Unwind@1015d1f0` | +| `Unwind@1015d220` | `1015d220` | `Unwind@1015d220` | +| `Unwind@1015d228` | `1015d228` | `Unwind@1015d228` | +| `Unwind@1015d230` | `1015d230` | `Unwind@1015d230` | +| `Unwind@1015d260` | `1015d260` | `Unwind@1015d260` | +| `Unwind@1015d271` | `1015d271` | `Unwind@1015d271` | +| `Unwind@1015d2a0` | `1015d2a0` | `Unwind@1015d2a0` | +| `Unwind@1015d2a8` | `1015d2a8` | `Unwind@1015d2a8` | +| `Unwind@1015d2b0` | `1015d2b0` | `Unwind@1015d2b0` | +| `Unwind@1015d2e0` | `1015d2e0` | `Unwind@1015d2e0` | +| `Unwind@1015d2e8` | `1015d2e8` | `Unwind@1015d2e8` | +| `Unwind@1015d2f3` | `1015d2f3` | `Unwind@1015d2f3` | +| `Unwind@1015d2fe` | `1015d2fe` | `Unwind@1015d2fe` | +| `Unwind@1015d309` | `1015d309` | `Unwind@1015d309` | +| `Unwind@1015d314` | `1015d314` | `Unwind@1015d314` | +| `Unwind@1015d340` | `1015d340` | `Unwind@1015d340` | +| `Unwind@1015d348` | `1015d348` | `Unwind@1015d348` | +| `Unwind@1015d370` | `1015d370` | `Unwind@1015d370` | +| `Unwind@1015d378` | `1015d378` | `Unwind@1015d378` | +| `Unwind@1015d380` | `1015d380` | `Unwind@1015d380` | +| `Unwind@1015d3b0` | `1015d3b0` | `Unwind@1015d3b0` | +| `Unwind@1015d3b8` | `1015d3b8` | `Unwind@1015d3b8` | +| `Unwind@1015d3e0` | `1015d3e0` | `Unwind@1015d3e0` | +| `Unwind@1015d3e8` | `1015d3e8` | `Unwind@1015d3e8` | +| `Unwind@1015d410` | `1015d410` | `Unwind@1015d410` | +| `Unwind@1015d418` | `1015d418` | `Unwind@1015d418` | +| `Unwind@1015d423` | `1015d423` | `Unwind@1015d423` | +| `Unwind@1015d42e` | `1015d42e` | `Unwind@1015d42e` | +| `Unwind@1015d439` | `1015d439` | `Unwind@1015d439` | +| `Unwind@1015d444` | `1015d444` | `Unwind@1015d444` | +| `Unwind@1015d470` | `1015d470` | `Unwind@1015d470` | +| `Unwind@1015d478` | `1015d478` | `Unwind@1015d478` | +| `Unwind@1015d4a0` | `1015d4a0` | `Unwind@1015d4a0` | +| `Unwind@1015d4a8` | `1015d4a8` | `Unwind@1015d4a8` | +| `Unwind@1015d4d0` | `1015d4d0` | `Unwind@1015d4d0` | +| `Unwind@1015d4d8` | `1015d4d8` | `Unwind@1015d4d8` | +| `Unwind@1015d4e3` | `1015d4e3` | `Unwind@1015d4e3` | +| `Unwind@1015d4eb` | `1015d4eb` | `Unwind@1015d4eb` | +| `Unwind@1015d4f6` | `1015d4f6` | `Unwind@1015d4f6` | +| `Unwind@1015d520` | `1015d520` | `Unwind@1015d520` | +| `Unwind@1015d528` | `1015d528` | `Unwind@1015d528` | +| `Unwind@1015d530` | `1015d530` | `Unwind@1015d530` | +| `Unwind@1015d538` | `1015d538` | `Unwind@1015d538` | +| `Unwind@1015d540` | `1015d540` | `Unwind@1015d540` | +| `Unwind@1015d548` | `1015d548` | `Unwind@1015d548` | +| `Unwind@1015d550` | `1015d550` | `Unwind@1015d550` | +| `Unwind@1015d558` | `1015d558` | `Unwind@1015d558` | +| `Unwind@1015d560` | `1015d560` | `Unwind@1015d560` | +| `Unwind@1015d568` | `1015d568` | `Unwind@1015d568` | +| `Unwind@1015d570` | `1015d570` | `Unwind@1015d570` | +| `Unwind@1015d5a0` | `1015d5a0` | `Unwind@1015d5a0` | +| `Unwind@1015d5d0` | `1015d5d0` | `Unwind@1015d5d0` | +| `Unwind@1015d5d8` | `1015d5d8` | `Unwind@1015d5d8` | +| `Unwind@1015d600` | `1015d600` | `Unwind@1015d600` | +| `Unwind@1015d60b` | `1015d60b` | `Unwind@1015d60b` | +| `Unwind@1015d613` | `1015d613` | `Unwind@1015d613` | +| `Unwind@1015d640` | `1015d640` | `Unwind@1015d640` | +| `Unwind@1015d64b` | `1015d64b` | `Unwind@1015d64b` | +| `Unwind@1015d656` | `1015d656` | `Unwind@1015d656` | +| `Unwind@1015d664` | `1015d664` | `Unwind@1015d664` | +| `Unwind@1015d672` | `1015d672` | `Unwind@1015d672` | +| `Unwind@1015d67a` | `1015d67a` | `Unwind@1015d67a` | +| `Unwind@1015d682` | `1015d682` | `Unwind@1015d682` | +| `Unwind@1015d68a` | `1015d68a` | `Unwind@1015d68a` | +| `Unwind@1015d692` | `1015d692` | `Unwind@1015d692` | +| `Unwind@1015d69a` | `1015d69a` | `Unwind@1015d69a` | +| `Unwind@1015d6c0` | `1015d6c0` | `Unwind@1015d6c0` | +| `Unwind@1015d6cb` | `1015d6cb` | `Unwind@1015d6cb` | +| `Unwind@1015d6f0` | `1015d6f0` | `Unwind@1015d6f0` | +| `Unwind@1015d6f8` | `1015d6f8` | `Unwind@1015d6f8` | +| `Unwind@1015d720` | `1015d720` | `Unwind@1015d720` | +| `Unwind@1015d728` | `1015d728` | `Unwind@1015d728` | +| `Unwind@1015d750` | `1015d750` | `Unwind@1015d750` | +| `Unwind@1015d758` | `1015d758` | `Unwind@1015d758` | +| `Unwind@1015d780` | `1015d780` | `Unwind@1015d780` | +| `Unwind@1015d791` | `1015d791` | `Unwind@1015d791` | +| `Unwind@1015d799` | `1015d799` | `Unwind@1015d799` | +| `Unwind@1015d7a1` | `1015d7a1` | `Unwind@1015d7a1` | +| `Unwind@1015d7d0` | `1015d7d0` | `Unwind@1015d7d0` | +| `Unwind@1015d7d8` | `1015d7d8` | `Unwind@1015d7d8` | +| `Unwind@1015d800` | `1015d800` | `Unwind@1015d800` | +| `Unwind@1015d830` | `1015d830` | `Unwind@1015d830` | +| `Unwind@1015d860` | `1015d860` | `Unwind@1015d860` | +| `Unwind@1015d868` | `1015d868` | `Unwind@1015d868` | +| `Unwind@1015d890` | `1015d890` | `Unwind@1015d890` | +| `Unwind@1015d8a1` | `1015d8a1` | `Unwind@1015d8a1` | +| `Unwind@1015d8a9` | `1015d8a9` | `Unwind@1015d8a9` | +| `Unwind@1015d8b4` | `1015d8b4` | `Unwind@1015d8b4` | +| `Unwind@1015d8e0` | `1015d8e0` | `Unwind@1015d8e0` | +| `Unwind@1015d8eb` | `1015d8eb` | `Unwind@1015d8eb` | +| `Unwind@1015d910` | `1015d910` | `Unwind@1015d910` | +| `Unwind@1015d918` | `1015d918` | `Unwind@1015d918` | +| `Unwind@1015d940` | `1015d940` | `Unwind@1015d940` | +| `Unwind@1015d948` | `1015d948` | `Unwind@1015d948` | +| `Unwind@1015d950` | `1015d950` | `Unwind@1015d950` | +| `Unwind@1015d95b` | `1015d95b` | `Unwind@1015d95b` | +| `Unwind@1015d963` | `1015d963` | `Unwind@1015d963` | +| `Unwind@1015d96b` | `1015d96b` | `Unwind@1015d96b` | +| `Unwind@1015d976` | `1015d976` | `Unwind@1015d976` | +| `Unwind@1015d9a0` | `1015d9a0` | `Unwind@1015d9a0` | +| `Unwind@1015d9a8` | `1015d9a8` | `Unwind@1015d9a8` | +| `Unwind@1015d9b0` | `1015d9b0` | `Unwind@1015d9b0` | +| `Unwind@1015d9bb` | `1015d9bb` | `Unwind@1015d9bb` | +| `Unwind@1015d9c3` | `1015d9c3` | `Unwind@1015d9c3` | +| `Unwind@1015d9cb` | `1015d9cb` | `Unwind@1015d9cb` | +| `Unwind@1015d9d6` | `1015d9d6` | `Unwind@1015d9d6` | +| `Unwind@1015da00` | `1015da00` | `Unwind@1015da00` | +| `Unwind@1015da0e` | `1015da0e` | `Unwind@1015da0e` | +| `Unwind@1015da40` | `1015da40` | `Unwind@1015da40` | +| `Unwind@1015da48` | `1015da48` | `Unwind@1015da48` | +| `Unwind@1015da50` | `1015da50` | `Unwind@1015da50` | +| `Unwind@1015da58` | `1015da58` | `Unwind@1015da58` | +| `Unwind@1015da60` | `1015da60` | `Unwind@1015da60` | +| `Unwind@1015da68` | `1015da68` | `Unwind@1015da68` | +| `Unwind@1015da70` | `1015da70` | `Unwind@1015da70` | +| `Unwind@1015da78` | `1015da78` | `Unwind@1015da78` | +| `Unwind@1015da80` | `1015da80` | `Unwind@1015da80` | +| `Unwind@1015da88` | `1015da88` | `Unwind@1015da88` | +| `Unwind@1015dab0` | `1015dab0` | `Unwind@1015dab0` | +| `Unwind@1015dab8` | `1015dab8` | `Unwind@1015dab8` | +| `Unwind@1015dac0` | `1015dac0` | `Unwind@1015dac0` | +| `Unwind@1015dacb` | `1015dacb` | `Unwind@1015dacb` | +| `Unwind@1015dad6` | `1015dad6` | `Unwind@1015dad6` | +| `Unwind@1015dae1` | `1015dae1` | `Unwind@1015dae1` | +| `Unwind@1015db10` | `1015db10` | `Unwind@1015db10` | +| `Unwind@1015db18` | `1015db18` | `Unwind@1015db18` | +| `Unwind@1015db20` | `1015db20` | `Unwind@1015db20` | +| `Unwind@1015db28` | `1015db28` | `Unwind@1015db28` | +| `Unwind@1015db30` | `1015db30` | `Unwind@1015db30` | +| `Unwind@1015db60` | `1015db60` | `Unwind@1015db60` | +| `Unwind@1015db68` | `1015db68` | `Unwind@1015db68` | +| `Unwind@1015db70` | `1015db70` | `Unwind@1015db70` | +| `Unwind@1015db78` | `1015db78` | `Unwind@1015db78` | +| `Unwind@1015db80` | `1015db80` | `Unwind@1015db80` | +| `Unwind@1015dbb0` | `1015dbb0` | `Unwind@1015dbb0` | +| `Unwind@1015dbb8` | `1015dbb8` | `Unwind@1015dbb8` | +| `Unwind@1015dbc0` | `1015dbc0` | `Unwind@1015dbc0` | +| `Unwind@1015dbc8` | `1015dbc8` | `Unwind@1015dbc8` | +| `Unwind@1015dbd0` | `1015dbd0` | `Unwind@1015dbd0` | +| `Unwind@1015dc00` | `1015dc00` | `Unwind@1015dc00` | +| `Unwind@1015dc08` | `1015dc08` | `Unwind@1015dc08` | +| `Unwind@1015dc10` | `1015dc10` | `Unwind@1015dc10` | +| `Unwind@1015dc18` | `1015dc18` | `Unwind@1015dc18` | +| `Unwind@1015dc20` | `1015dc20` | `Unwind@1015dc20` | +| `Unwind@1015dc50` | `1015dc50` | `Unwind@1015dc50` | +| `Unwind@1015dc58` | `1015dc58` | `Unwind@1015dc58` | +| `Unwind@1015dc60` | `1015dc60` | `Unwind@1015dc60` | +| `Unwind@1015dc68` | `1015dc68` | `Unwind@1015dc68` | +| `Unwind@1015dc70` | `1015dc70` | `Unwind@1015dc70` | +| `Unwind@1015dca0` | `1015dca0` | `Unwind@1015dca0` | +| `Unwind@1015dca8` | `1015dca8` | `Unwind@1015dca8` | +| `Unwind@1015dcb0` | `1015dcb0` | `Unwind@1015dcb0` | +| `Unwind@1015dcb8` | `1015dcb8` | `Unwind@1015dcb8` | +| `Unwind@1015dcc0` | `1015dcc0` | `Unwind@1015dcc0` | +| `Unwind@1015dcf0` | `1015dcf0` | `Unwind@1015dcf0` | +| `Unwind@1015dcf8` | `1015dcf8` | `Unwind@1015dcf8` | +| `Unwind@1015dd00` | `1015dd00` | `Unwind@1015dd00` | +| `Unwind@1015dd08` | `1015dd08` | `Unwind@1015dd08` | +| `Unwind@1015dd10` | `1015dd10` | `Unwind@1015dd10` | +| `Unwind@1015dd40` | `1015dd40` | `Unwind@1015dd40` | +| `Unwind@1015dd48` | `1015dd48` | `Unwind@1015dd48` | +| `Unwind@1015dd50` | `1015dd50` | `Unwind@1015dd50` | +| `Unwind@1015dd58` | `1015dd58` | `Unwind@1015dd58` | +| `Unwind@1015dd60` | `1015dd60` | `Unwind@1015dd60` | +| `Unwind@1015dd6e` | `1015dd6e` | `Unwind@1015dd6e` | +| `Unwind@1015dd7c` | `1015dd7c` | `Unwind@1015dd7c` | +| `Unwind@1015dda0` | `1015dda0` | `Unwind@1015dda0` | +| `Unwind@1015dda8` | `1015dda8` | `Unwind@1015dda8` | +| `Unwind@1015ddd0` | `1015ddd0` | `Unwind@1015ddd0` | +| `Unwind@1015ddd8` | `1015ddd8` | `Unwind@1015ddd8` | +| `Unwind@1015dde0` | `1015dde0` | `Unwind@1015dde0` | +| `Unwind@1015dde8` | `1015dde8` | `Unwind@1015dde8` | +| `Unwind@1015de10` | `1015de10` | `Unwind@1015de10` | +| `Unwind@1015de18` | `1015de18` | `Unwind@1015de18` | +| `Unwind@1015de20` | `1015de20` | `Unwind@1015de20` | +| `Unwind@1015de28` | `1015de28` | `Unwind@1015de28` | +| `Unwind@1015de50` | `1015de50` | `Unwind@1015de50` | +| `Unwind@1015de58` | `1015de58` | `Unwind@1015de58` | +| `Unwind@1015de60` | `1015de60` | `Unwind@1015de60` | +| `Unwind@1015de68` | `1015de68` | `Unwind@1015de68` | +| `Unwind@1015de70` | `1015de70` | `Unwind@1015de70` | +| `Unwind@1015de78` | `1015de78` | `Unwind@1015de78` | +| `Unwind@1015dea0` | `1015dea0` | `Unwind@1015dea0` | +| `Unwind@1015dea8` | `1015dea8` | `Unwind@1015dea8` | +| `Unwind@1015deb0` | `1015deb0` | `Unwind@1015deb0` | +| `Unwind@1015deb8` | `1015deb8` | `Unwind@1015deb8` | +| `Unwind@1015dec0` | `1015dec0` | `Unwind@1015dec0` | +| `Unwind@1015dece` | `1015dece` | `Unwind@1015dece` | +| `Unwind@1015dedc` | `1015dedc` | `Unwind@1015dedc` | +| `Unwind@1015dee4` | `1015dee4` | `Unwind@1015dee4` | +| `Unwind@1015df20` | `1015df20` | `Unwind@1015df20` | +| `Unwind@1015df2b` | `1015df2b` | `Unwind@1015df2b` | +| `Unwind@1015df36` | `1015df36` | `Unwind@1015df36` | +| `Unwind@1015df41` | `1015df41` | `Unwind@1015df41` | +| `Unwind@1015df4c` | `1015df4c` | `Unwind@1015df4c` | +| `Unwind@1015df57` | `1015df57` | `Unwind@1015df57` | +| `Unwind@1015df62` | `1015df62` | `Unwind@1015df62` | +| `Unwind@1015df6d` | `1015df6d` | `Unwind@1015df6d` | +| `Unwind@1015df78` | `1015df78` | `Unwind@1015df78` | +| `Unwind@1015df86` | `1015df86` | `Unwind@1015df86` | +| `Unwind@1015df94` | `1015df94` | `Unwind@1015df94` | +| `Unwind@1015dfa2` | `1015dfa2` | `Unwind@1015dfa2` | +| `Unwind@1015dfb0` | `1015dfb0` | `Unwind@1015dfb0` | +| `Unwind@1015dfbe` | `1015dfbe` | `Unwind@1015dfbe` | +| `Unwind@1015dfcc` | `1015dfcc` | `Unwind@1015dfcc` | +| `Unwind@1015dfd4` | `1015dfd4` | `Unwind@1015dfd4` | +| `Unwind@1015dfdf` | `1015dfdf` | `Unwind@1015dfdf` | +| `Unwind@1015dfe7` | `1015dfe7` | `Unwind@1015dfe7` | +| `Unwind@1015dfef` | `1015dfef` | `Unwind@1015dfef` | +| `Unwind@1015dff7` | `1015dff7` | `Unwind@1015dff7` | +| `Unwind@1015dfff` | `1015dfff` | `Unwind@1015dfff` | +| `Unwind@1015e007` | `1015e007` | `Unwind@1015e007` | +| `Unwind@1015e00f` | `1015e00f` | `Unwind@1015e00f` | +| `Unwind@1015e017` | `1015e017` | `Unwind@1015e017` | +| `Unwind@1015e01f` | `1015e01f` | `Unwind@1015e01f` | +| `Unwind@1015e027` | `1015e027` | `Unwind@1015e027` | +| `Unwind@1015e02f` | `1015e02f` | `Unwind@1015e02f` | +| `Unwind@1015e037` | `1015e037` | `Unwind@1015e037` | +| `Unwind@1015e03f` | `1015e03f` | `Unwind@1015e03f` | +| `Unwind@1015e047` | `1015e047` | `Unwind@1015e047` | +| `Unwind@1015e04f` | `1015e04f` | `Unwind@1015e04f` | +| `Unwind@1015e057` | `1015e057` | `Unwind@1015e057` | +| `Unwind@1015e05f` | `1015e05f` | `Unwind@1015e05f` | +| `Unwind@1015e090` | `1015e090` | `Unwind@1015e090` | +| `Unwind@1015e0c0` | `1015e0c0` | `Unwind@1015e0c0` | +| `Unwind@1015e0c8` | `1015e0c8` | `Unwind@1015e0c8` | +| `Unwind@1015e0d0` | `1015e0d0` | `Unwind@1015e0d0` | +| `Unwind@1015e100` | `1015e100` | `Unwind@1015e100` | +| `Unwind@1015e108` | `1015e108` | `Unwind@1015e108` | +| `Unwind@1015e110` | `1015e110` | `Unwind@1015e110` | +| `Unwind@1015e118` | `1015e118` | `Unwind@1015e118` | +| `Unwind@1015e120` | `1015e120` | `Unwind@1015e120` | +| `Unwind@1015e12e` | `1015e12e` | `Unwind@1015e12e` | +| `Unwind@1015e13c` | `1015e13c` | `Unwind@1015e13c` | +| `Unwind@1015e160` | `1015e160` | `Unwind@1015e160` | +| `Unwind@1015e190` | `1015e190` | `Unwind@1015e190` | +| `Unwind@1015e198` | `1015e198` | `Unwind@1015e198` | +| `Unwind@1015e1c0` | `1015e1c0` | `Unwind@1015e1c0` | +| `Unwind@1015e1c8` | `1015e1c8` | `Unwind@1015e1c8` | +| `Unwind@1015e1f0` | `1015e1f0` | `Unwind@1015e1f0` | +| `Unwind@1015e1f8` | `1015e1f8` | `Unwind@1015e1f8` | +| `Unwind@1015e200` | `1015e200` | `Unwind@1015e200` | +| `Unwind@1015e208` | `1015e208` | `Unwind@1015e208` | +| `Unwind@1015e230` | `1015e230` | `Unwind@1015e230` | +| `Unwind@1015e238` | `1015e238` | `Unwind@1015e238` | +| `Unwind@1015e243` | `1015e243` | `Unwind@1015e243` | +| `Unwind@1015e270` | `1015e270` | `Unwind@1015e270` | +| `Unwind@1015e278` | `1015e278` | `Unwind@1015e278` | +| `Unwind@1015e280` | `1015e280` | `Unwind@1015e280` | +| `Unwind@1015e288` | `1015e288` | `Unwind@1015e288` | +| `Unwind@1015e2b0` | `1015e2b0` | `Unwind@1015e2b0` | +| `Unwind@1015e2e0` | `1015e2e0` | `Unwind@1015e2e0` | +| `Unwind@1015e2e8` | `1015e2e8` | `Unwind@1015e2e8` | +| `Unwind@1015e2f0` | `1015e2f0` | `Unwind@1015e2f0` | +| `Unwind@1015e2f8` | `1015e2f8` | `Unwind@1015e2f8` | +| `Unwind@1015e320` | `1015e320` | `Unwind@1015e320` | +| `Unwind@1015e328` | `1015e328` | `Unwind@1015e328` | +| `Unwind@1015e330` | `1015e330` | `Unwind@1015e330` | +| `Unwind@1015e360` | `1015e360` | `Unwind@1015e360` | +| `Unwind@1015e368` | `1015e368` | `Unwind@1015e368` | +| `Unwind@1015e370` | `1015e370` | `Unwind@1015e370` | +| `Unwind@1015e378` | `1015e378` | `Unwind@1015e378` | +| `Unwind@1015e3a0` | `1015e3a0` | `Unwind@1015e3a0` | +| `Unwind@1015e3a8` | `1015e3a8` | `Unwind@1015e3a8` | +| `Unwind@1015e3b0` | `1015e3b0` | `Unwind@1015e3b0` | +| `Unwind@1015e3e0` | `1015e3e0` | `Unwind@1015e3e0` | +| `Unwind@1015e3e8` | `1015e3e8` | `Unwind@1015e3e8` | +| `Unwind@1015e3f0` | `1015e3f0` | `Unwind@1015e3f0` | +| `Unwind@1015e3f8` | `1015e3f8` | `Unwind@1015e3f8` | +| `Unwind@1015e420` | `1015e420` | `Unwind@1015e420` | +| `Unwind@1015e428` | `1015e428` | `Unwind@1015e428` | +| `Unwind@1015e430` | `1015e430` | `Unwind@1015e430` | +| `Unwind@1015e438` | `1015e438` | `Unwind@1015e438` | +| `Unwind@1015e460` | `1015e460` | `Unwind@1015e460` | +| `Unwind@1015e468` | `1015e468` | `Unwind@1015e468` | +| `Unwind@1015e470` | `1015e470` | `Unwind@1015e470` | +| `Unwind@1015e4a0` | `1015e4a0` | `Unwind@1015e4a0` | +| `Unwind@1015e4ae` | `1015e4ae` | `Unwind@1015e4ae` | +| `Unwind@1015e4bc` | `1015e4bc` | `Unwind@1015e4bc` | +| `Unwind@1015e4ca` | `1015e4ca` | `Unwind@1015e4ca` | +| `Unwind@1015e4d8` | `1015e4d8` | `Unwind@1015e4d8` | +| `Unwind@1015e510` | `1015e510` | `Unwind@1015e510` | +| `Unwind@1015e51e` | `1015e51e` | `Unwind@1015e51e` | +| `Unwind@1015e52c` | `1015e52c` | `Unwind@1015e52c` | +| `Unwind@1015e53a` | `1015e53a` | `Unwind@1015e53a` | +| `Unwind@1015e548` | `1015e548` | `Unwind@1015e548` | +| `Unwind@1015e556` | `1015e556` | `Unwind@1015e556` | +| `Unwind@1015e561` | `1015e561` | `Unwind@1015e561` | +| `Unwind@1015e56f` | `1015e56f` | `Unwind@1015e56f` | +| `Unwind@1015e57d` | `1015e57d` | `Unwind@1015e57d` | +| `Unwind@1015e58b` | `1015e58b` | `Unwind@1015e58b` | +| `Unwind@1015e599` | `1015e599` | `Unwind@1015e599` | +| `Unwind@1015e5a7` | `1015e5a7` | `Unwind@1015e5a7` | +| `Unwind@1015e5b5` | `1015e5b5` | `Unwind@1015e5b5` | +| `Unwind@1015e5c3` | `1015e5c3` | `Unwind@1015e5c3` | +| `Unwind@1015e5d1` | `1015e5d1` | `Unwind@1015e5d1` | +| `Unwind@1015e5df` | `1015e5df` | `Unwind@1015e5df` | +| `Unwind@1015e5ed` | `1015e5ed` | `Unwind@1015e5ed` | +| `Unwind@1015e5fb` | `1015e5fb` | `Unwind@1015e5fb` | +| `Unwind@1015e609` | `1015e609` | `Unwind@1015e609` | +| `Unwind@1015e617` | `1015e617` | `Unwind@1015e617` | +| `Unwind@1015e625` | `1015e625` | `Unwind@1015e625` | +| `Unwind@1015e633` | `1015e633` | `Unwind@1015e633` | +| `Unwind@1015e670` | `1015e670` | `Unwind@1015e670` | +| `Unwind@1015e6b0` | `1015e6b0` | `Unwind@1015e6b0` | +| `Unwind@1015e6b8` | `1015e6b8` | `Unwind@1015e6b8` | +| `Unwind@1015e6c3` | `1015e6c3` | `Unwind@1015e6c3` | +| `Unwind@1015e6cb` | `1015e6cb` | `Unwind@1015e6cb` | +| `Unwind@1015e6f0` | `1015e6f0` | `Unwind@1015e6f0` | +| `Unwind@1015e6f8` | `1015e6f8` | `Unwind@1015e6f8` | +| `Unwind@1015e730` | `1015e730` | `Unwind@1015e730` | +| `Unwind@1015e738` | `1015e738` | `Unwind@1015e738` | +| `Unwind@1015e770` | `1015e770` | `Unwind@1015e770` | +| `Unwind@1015e77e` | `1015e77e` | `Unwind@1015e77e` | +| `Unwind@1015e78c` | `1015e78c` | `Unwind@1015e78c` | +| `Unwind@1015e794` | `1015e794` | `Unwind@1015e794` | +| `Unwind@1015e7d0` | `1015e7d0` | `Unwind@1015e7d0` | +| `Unwind@1015e7d8` | `1015e7d8` | `Unwind@1015e7d8` | +| `Unwind@1015e7e3` | `1015e7e3` | `Unwind@1015e7e3` | +| `Unwind@1015e7eb` | `1015e7eb` | `Unwind@1015e7eb` | +| `Unwind@1015e7f3` | `1015e7f3` | `Unwind@1015e7f3` | +| `Unwind@1015e820` | `1015e820` | `Unwind@1015e820` | +| `Unwind@1015e828` | `1015e828` | `Unwind@1015e828` | +| `Unwind@1015e833` | `1015e833` | `Unwind@1015e833` | +| `Unwind@1015e83b` | `1015e83b` | `Unwind@1015e83b` | +| `Unwind@1015e843` | `1015e843` | `Unwind@1015e843` | +| `Unwind@1015e870` | `1015e870` | `Unwind@1015e870` | +| `Unwind@1015e878` | `1015e878` | `Unwind@1015e878` | +| `Unwind@1015e880` | `1015e880` | `Unwind@1015e880` | +| `Unwind@1015e888` | `1015e888` | `Unwind@1015e888` | +| `Unwind@1015e8b0` | `1015e8b0` | `Unwind@1015e8b0` | +| `Unwind@1015e8b8` | `1015e8b8` | `Unwind@1015e8b8` | +| `Unwind@1015e8c0` | `1015e8c0` | `Unwind@1015e8c0` | +| `Unwind@1015e8f0` | `1015e8f0` | `Unwind@1015e8f0` | +| `Unwind@1015e8f8` | `1015e8f8` | `Unwind@1015e8f8` | +| `Unwind@1015e900` | `1015e900` | `Unwind@1015e900` | +| `Unwind@1015e90b` | `1015e90b` | `Unwind@1015e90b` | +| `Unwind@1015e913` | `1015e913` | `Unwind@1015e913` | +| `Unwind@1015e91b` | `1015e91b` | `Unwind@1015e91b` | +| `Unwind@1015e923` | `1015e923` | `Unwind@1015e923` | +| `Unwind@1015e960` | `1015e960` | `Unwind@1015e960` | +| `Unwind@1015e990` | `1015e990` | `Unwind@1015e990` | +| `Unwind@1015e9c0` | `1015e9c0` | `Unwind@1015e9c0` | +| `Unwind@1015e9f0` | `1015e9f0` | `Unwind@1015e9f0` | +| `Unwind@1015ea20` | `1015ea20` | `Unwind@1015ea20` | +| `Unwind@1015ea50` | `1015ea50` | `Unwind@1015ea50` | +| `Unwind@1015ea58` | `1015ea58` | `Unwind@1015ea58` | +| `Unwind@1015ea63` | `1015ea63` | `Unwind@1015ea63` | +| `Unwind@1015ea90` | `1015ea90` | `Unwind@1015ea90` | +| `Unwind@1015ea9b` | `1015ea9b` | `Unwind@1015ea9b` | +| `Unwind@1015eac0` | `1015eac0` | `Unwind@1015eac0` | +| `Unwind@1015eac8` | `1015eac8` | `Unwind@1015eac8` | +| `Unwind@1015eaf0` | `1015eaf0` | `Unwind@1015eaf0` | +| `Unwind@1015eaf8` | `1015eaf8` | `Unwind@1015eaf8` | +| `Unwind@1015eb03` | `1015eb03` | `Unwind@1015eb03` | +| `Unwind@1015eb0b` | `1015eb0b` | `Unwind@1015eb0b` | +| `Unwind@1015eb13` | `1015eb13` | `Unwind@1015eb13` | +| `Unwind@1015eb40` | `1015eb40` | `Unwind@1015eb40` | +| `Unwind@1015eb48` | `1015eb48` | `Unwind@1015eb48` | +| `Unwind@1015eb53` | `1015eb53` | `Unwind@1015eb53` | +| `Unwind@1015eb5b` | `1015eb5b` | `Unwind@1015eb5b` | +| `Unwind@1015eb80` | `1015eb80` | `Unwind@1015eb80` | +| `Unwind@1015ebb0` | `1015ebb0` | `Unwind@1015ebb0` | +| `Unwind@1015ebbb` | `1015ebbb` | `Unwind@1015ebbb` | +| `Unwind@1015ebc3` | `1015ebc3` | `Unwind@1015ebc3` | +| `Unwind@1015ebce` | `1015ebce` | `Unwind@1015ebce` | +| `Unwind@1015ec00` | `1015ec00` | `Unwind@1015ec00` | +| `Unwind@1015ec0b` | `1015ec0b` | `Unwind@1015ec0b` | +| `Unwind@1015ec16` | `1015ec16` | `Unwind@1015ec16` | +| `Unwind@1015ec40` | `1015ec40` | `Unwind@1015ec40` | +| `Unwind@1015ec4b` | `1015ec4b` | `Unwind@1015ec4b` | +| `Unwind@1015ec53` | `1015ec53` | `Unwind@1015ec53` | +| `Unwind@1015ec80` | `1015ec80` | `Unwind@1015ec80` | +| `Unwind@1015ec8b` | `1015ec8b` | `Unwind@1015ec8b` | +| `Unwind@1015ec93` | `1015ec93` | `Unwind@1015ec93` | +| `Unwind@1015ecc0` | `1015ecc0` | `Unwind@1015ecc0` | +| `Unwind@1015ecf0` | `1015ecf0` | `Unwind@1015ecf0` | +| `Unwind@1015ecf8` | `1015ecf8` | `Unwind@1015ecf8` | +| `Unwind@1015ed00` | `1015ed00` | `Unwind@1015ed00` | +| `Unwind@1015ed0b` | `1015ed0b` | `Unwind@1015ed0b` | +| `Unwind@1015ed13` | `1015ed13` | `Unwind@1015ed13` | +| `Unwind@1015ed40` | `1015ed40` | `Unwind@1015ed40` | +| `Unwind@1015ed51` | `1015ed51` | `Unwind@1015ed51` | +| `Unwind@1015ed59` | `1015ed59` | `Unwind@1015ed59` | +| `Unwind@1015ed64` | `1015ed64` | `Unwind@1015ed64` | +| `Unwind@1015ed90` | `1015ed90` | `Unwind@1015ed90` | +| `Unwind@1015eda1` | `1015eda1` | `Unwind@1015eda1` | +| `Unwind@1015edac` | `1015edac` | `Unwind@1015edac` | +| `Unwind@1015edd0` | `1015edd0` | `Unwind@1015edd0` | +| `Unwind@1015eddb` | `1015eddb` | `Unwind@1015eddb` | +| `Unwind@1015ede3` | `1015ede3` | `Unwind@1015ede3` | +| `Unwind@1015ee10` | `1015ee10` | `Unwind@1015ee10` | +| `Unwind@1015ee18` | `1015ee18` | `Unwind@1015ee18` | +| `Unwind@1015ee23` | `1015ee23` | `Unwind@1015ee23` | +| `Unwind@1015ee50` | `1015ee50` | `Unwind@1015ee50` | +| `Unwind@1015ee73` | `1015ee73` | `Unwind@1015ee73` | +| `Unwind@1015ee7f` | `1015ee7f` | `Unwind@1015ee7f` | +| `Unwind@1015ee8b` | `1015ee8b` | `Unwind@1015ee8b` | +| `Unwind@1015ee96` | `1015ee96` | `Unwind@1015ee96` | +| `Unwind@1015eea1` | `1015eea1` | `Unwind@1015eea1` | +| `Unwind@1015eec3` | `1015eec3` | `Unwind@1015eec3` | +| `Unwind@1015eed2` | `1015eed2` | `Unwind@1015eed2` | +| `Unwind@1015eee0` | `1015eee0` | `Unwind@1015eee0` | +| `Unwind@1015ef20` | `1015ef20` | `Unwind@1015ef20` | +| `Unwind@1015ef50` | `1015ef50` | `Unwind@1015ef50` | +| `Unwind@1015ef58` | `1015ef58` | `Unwind@1015ef58` | +| `Unwind@1015ef80` | `1015ef80` | `Unwind@1015ef80` | +| `Unwind@1015ef8e` | `1015ef8e` | `Unwind@1015ef8e` | +| `Unwind@1015ef9c` | `1015ef9c` | `Unwind@1015ef9c` | +| `Unwind@1015efa4` | `1015efa4` | `Unwind@1015efa4` | +| `Unwind@1015efb2` | `1015efb2` | `Unwind@1015efb2` | +| `Unwind@1015eff0` | `1015eff0` | `Unwind@1015eff0` | +| `Unwind@1015eff8` | `1015eff8` | `Unwind@1015eff8` | +| `Unwind@1015f006` | `1015f006` | `Unwind@1015f006` | +| `Unwind@1015f00e` | `1015f00e` | `Unwind@1015f00e` | +| `Unwind@1015f016` | `1015f016` | `Unwind@1015f016` | +| `Unwind@1015f01e` | `1015f01e` | `Unwind@1015f01e` | +| `Unwind@1015f026` | `1015f026` | `Unwind@1015f026` | +| `Unwind@1015f02e` | `1015f02e` | `Unwind@1015f02e` | +| `Unwind@1015f060` | `1015f060` | `Unwind@1015f060` | +| `Unwind@1015f068` | `1015f068` | `Unwind@1015f068` | +| `Unwind@1015f070` | `1015f070` | `Unwind@1015f070` | +| `Unwind@1015f078` | `1015f078` | `Unwind@1015f078` | +| `Unwind@1015f080` | `1015f080` | `Unwind@1015f080` | +| `Unwind@1015f088` | `1015f088` | `Unwind@1015f088` | +| `Unwind@1015f090` | `1015f090` | `Unwind@1015f090` | +| `Unwind@1015f098` | `1015f098` | `Unwind@1015f098` | +| `Unwind@1015f0a0` | `1015f0a0` | `Unwind@1015f0a0` | +| `Unwind@1015f0a8` | `1015f0a8` | `Unwind@1015f0a8` | +| `Unwind@1015f0b0` | `1015f0b0` | `Unwind@1015f0b0` | +| `Unwind@1015f0b8` | `1015f0b8` | `Unwind@1015f0b8` | +| `Unwind@1015f0f0` | `1015f0f0` | `Unwind@1015f0f0` | +| `Unwind@1015f0fb` | `1015f0fb` | `Unwind@1015f0fb` | +| `Unwind@1015f106` | `1015f106` | `Unwind@1015f106` | +| `Unwind@1015f111` | `1015f111` | `Unwind@1015f111` | +| `Unwind@1015f11c` | `1015f11c` | `Unwind@1015f11c` | +| `Unwind@1015f127` | `1015f127` | `Unwind@1015f127` | +| `Unwind@1015f160` | `1015f160` | `Unwind@1015f160` | +| `Unwind@1015f16e` | `1015f16e` | `Unwind@1015f16e` | +| `Unwind@1015f17c` | `1015f17c` | `Unwind@1015f17c` | +| `Unwind@1015f187` | `1015f187` | `Unwind@1015f187` | +| `Unwind@1015f192` | `1015f192` | `Unwind@1015f192` | +| `Unwind@1015f19d` | `1015f19d` | `Unwind@1015f19d` | +| `Unwind@1015f1a8` | `1015f1a8` | `Unwind@1015f1a8` | +| `Unwind@1015f1b3` | `1015f1b3` | `Unwind@1015f1b3` | +| `Unwind@1015f1be` | `1015f1be` | `Unwind@1015f1be` | +| `Unwind@1015f1e0` | `1015f1e0` | `Unwind@1015f1e0` | +| `Unwind@1015f250` | `1015f250` | `Unwind@1015f250` | +| `Unwind@1015f258` | `1015f258` | `Unwind@1015f258` | +| `Unwind@1015f263` | `1015f263` | `Unwind@1015f263` | +| `Unwind@1015f26b` | `1015f26b` | `Unwind@1015f26b` | +| `Unwind@1015f2a0` | `1015f2a0` | `Unwind@1015f2a0` | +| `Unwind@1015f2ab` | `1015f2ab` | `Unwind@1015f2ab` | +| `Unwind@1015f2b3` | `1015f2b3` | `Unwind@1015f2b3` | +| `Unwind@1015f2f0` | `1015f2f0` | `Unwind@1015f2f0` | +| `Unwind@1015f320` | `1015f320` | `Unwind@1015f320` | +| `Unwind@1015f328` | `1015f328` | `Unwind@1015f328` | +| `Unwind@1015f350` | `1015f350` | `Unwind@1015f350` | +| `Unwind@1015f358` | `1015f358` | `Unwind@1015f358` | +| `Unwind@1015f363` | `1015f363` | `Unwind@1015f363` | +| `Unwind@1015f36b` | `1015f36b` | `Unwind@1015f36b` | +| `Unwind@1015f373` | `1015f373` | `Unwind@1015f373` | +| `Unwind@1015f3a0` | `1015f3a0` | `Unwind@1015f3a0` | +| `Unwind@1015f3a8` | `1015f3a8` | `Unwind@1015f3a8` | +| `Unwind@1015f3d0` | `1015f3d0` | `Unwind@1015f3d0` | +| `Unwind@1015f3d8` | `1015f3d8` | `Unwind@1015f3d8` | +| `Unwind@1015f3e3` | `1015f3e3` | `Unwind@1015f3e3` | +| `Unwind@1015f3eb` | `1015f3eb` | `Unwind@1015f3eb` | +| `Unwind@1015f410` | `1015f410` | `Unwind@1015f410` | +| `Unwind@1015f418` | `1015f418` | `Unwind@1015f418` | +| `Unwind@1015f440` | `1015f440` | `Unwind@1015f440` | +| `Unwind@1015f470` | `1015f470` | `Unwind@1015f470` | +| `Unwind@1015f478` | `1015f478` | `Unwind@1015f478` | +| `Unwind@1015f483` | `1015f483` | `Unwind@1015f483` | +| `Unwind@1015f48e` | `1015f48e` | `Unwind@1015f48e` | +| `Unwind@1015f4c0` | `1015f4c0` | `Unwind@1015f4c0` | +| `Unwind@1015f4c8` | `1015f4c8` | `Unwind@1015f4c8` | +| `Unwind@1015f4d3` | `1015f4d3` | `Unwind@1015f4d3` | +| `Unwind@1015f4db` | `1015f4db` | `Unwind@1015f4db` | +| `Unwind@1015f500` | `1015f500` | `Unwind@1015f500` | +| `Unwind@1015f508` | `1015f508` | `Unwind@1015f508` | +| `Unwind@1015f513` | `1015f513` | `Unwind@1015f513` | +| `Unwind@1015f51b` | `1015f51b` | `Unwind@1015f51b` | +| `Unwind@1015f540` | `1015f540` | `Unwind@1015f540` | +| `Unwind@1015f570` | `1015f570` | `Unwind@1015f570` | +| `Unwind@1015f5a0` | `1015f5a0` | `Unwind@1015f5a0` | +| `Unwind@1015f5b1` | `1015f5b1` | `Unwind@1015f5b1` | +| `Unwind@1015f5bc` | `1015f5bc` | `Unwind@1015f5bc` | +| `Unwind@1015f5e0` | `1015f5e0` | `Unwind@1015f5e0` | +| `Unwind@1015f5e8` | `1015f5e8` | `Unwind@1015f5e8` | +| `Unwind@1015f5f0` | `1015f5f0` | `Unwind@1015f5f0` | +| `Unwind@1015f620` | `1015f620` | `Unwind@1015f620` | +| `Unwind@1015f650` | `1015f650` | `Unwind@1015f650` | +| `Unwind@1015f661` | `1015f661` | `Unwind@1015f661` | +| `Unwind@1015f669` | `1015f669` | `Unwind@1015f669` | +| `Unwind@1015f674` | `1015f674` | `Unwind@1015f674` | +| `Unwind@1015f6a0` | `1015f6a0` | `Unwind@1015f6a0` | +| `Unwind@1015f6ab` | `1015f6ab` | `Unwind@1015f6ab` | +| `Unwind@1015f6b3` | `1015f6b3` | `Unwind@1015f6b3` | +| `Unwind@1015f6e0` | `1015f6e0` | `Unwind@1015f6e0` | +| `Unwind@1015f6e8` | `1015f6e8` | `Unwind@1015f6e8` | +| `Unwind@1015f6f0` | `1015f6f0` | `Unwind@1015f6f0` | +| `Unwind@1015f720` | `1015f720` | `Unwind@1015f720` | +| `Unwind@1015f728` | `1015f728` | `Unwind@1015f728` | +| `Unwind@1015f730` | `1015f730` | `Unwind@1015f730` | +| `Unwind@1015f760` | `1015f760` | `Unwind@1015f760` | +| `Unwind@1015f768` | `1015f768` | `Unwind@1015f768` | +| `Unwind@1015f770` | `1015f770` | `Unwind@1015f770` | +| `Unwind@1015f7a0` | `1015f7a0` | `Unwind@1015f7a0` | +| `Unwind@1015f7a8` | `1015f7a8` | `Unwind@1015f7a8` | +| `Unwind@1015f7e0` | `1015f7e0` | `Unwind@1015f7e0` | +| `Unwind@1015f7e8` | `1015f7e8` | `Unwind@1015f7e8` | +| `Unwind@1015f7f0` | `1015f7f0` | `Unwind@1015f7f0` | +| `Unwind@1015f7f8` | `1015f7f8` | `Unwind@1015f7f8` | +| `Unwind@1015f806` | `1015f806` | `Unwind@1015f806` | +| `Unwind@1015f814` | `1015f814` | `Unwind@1015f814` | +| `Unwind@1015f822` | `1015f822` | `Unwind@1015f822` | +| `Unwind@1015f850` | `1015f850` | `Unwind@1015f850` | +| `Unwind@1015f880` | `1015f880` | `Unwind@1015f880` | +| `Unwind@1015f888` | `1015f888` | `Unwind@1015f888` | +| `Unwind@1015f890` | `1015f890` | `Unwind@1015f890` | +| `Unwind@1015f89b` | `1015f89b` | `Unwind@1015f89b` | +| `Unwind@1015f8a3` | `1015f8a3` | `Unwind@1015f8a3` | +| `Unwind@1015f8d0` | `1015f8d0` | `Unwind@1015f8d0` | +| `Unwind@1015f8d8` | `1015f8d8` | `Unwind@1015f8d8` | +| `Unwind@1015f8e0` | `1015f8e0` | `Unwind@1015f8e0` | +| `Unwind@1015f8eb` | `1015f8eb` | `Unwind@1015f8eb` | +| `Unwind@1015f8f3` | `1015f8f3` | `Unwind@1015f8f3` | +| `Unwind@1015f920` | `1015f920` | `Unwind@1015f920` | +| `Unwind@1015f928` | `1015f928` | `Unwind@1015f928` | +| `Unwind@1015f950` | `1015f950` | `Unwind@1015f950` | +| `Unwind@1015f958` | `1015f958` | `Unwind@1015f958` | +| `Unwind@1015f963` | `1015f963` | `Unwind@1015f963` | +| `Unwind@1015f96b` | `1015f96b` | `Unwind@1015f96b` | +| `Unwind@1015f973` | `1015f973` | `Unwind@1015f973` | +| `Unwind@1015f9a0` | `1015f9a0` | `Unwind@1015f9a0` | +| `Unwind@1015f9a8` | `1015f9a8` | `Unwind@1015f9a8` | +| `Unwind@1015f9d0` | `1015f9d0` | `Unwind@1015f9d0` | +| `Unwind@1015fa00` | `1015fa00` | `Unwind@1015fa00` | +| `Unwind@1015fa08` | `1015fa08` | `Unwind@1015fa08` | +| `Unwind@1015fa10` | `1015fa10` | `Unwind@1015fa10` | +| `Unwind@1015fa40` | `1015fa40` | `Unwind@1015fa40` | +| `Unwind@1015fa48` | `1015fa48` | `Unwind@1015fa48` | +| `Unwind@1015fa50` | `1015fa50` | `Unwind@1015fa50` | +| `Unwind@1015fa5b` | `1015fa5b` | `Unwind@1015fa5b` | +| `Unwind@1015fa80` | `1015fa80` | `Unwind@1015fa80` | +| `Unwind@1015fa88` | `1015fa88` | `Unwind@1015fa88` | +| `Unwind@1015fa93` | `1015fa93` | `Unwind@1015fa93` | +| `Unwind@1015fa9b` | `1015fa9b` | `Unwind@1015fa9b` | +| `Unwind@1015fac0` | `1015fac0` | `Unwind@1015fac0` | +| `Unwind@1015fac8` | `1015fac8` | `Unwind@1015fac8` | +| `Unwind@1015faf0` | `1015faf0` | `Unwind@1015faf0` | +| `Unwind@1015fb20` | `1015fb20` | `Unwind@1015fb20` | +| `Unwind@1015fb28` | `1015fb28` | `Unwind@1015fb28` | +| `Unwind@1015fb33` | `1015fb33` | `Unwind@1015fb33` | +| `Unwind@1015fb3e` | `1015fb3e` | `Unwind@1015fb3e` | +| `Unwind@1015fb70` | `1015fb70` | `Unwind@1015fb70` | +| `Unwind@1015fb78` | `1015fb78` | `Unwind@1015fb78` | +| `Unwind@1015fb83` | `1015fb83` | `Unwind@1015fb83` | +| `Unwind@1015fb8b` | `1015fb8b` | `Unwind@1015fb8b` | +| `Unwind@1015fbb0` | `1015fbb0` | `Unwind@1015fbb0` | +| `Unwind@1015fbb8` | `1015fbb8` | `Unwind@1015fbb8` | +| `Unwind@1015fbc3` | `1015fbc3` | `Unwind@1015fbc3` | +| `Unwind@1015fbcb` | `1015fbcb` | `Unwind@1015fbcb` | +| `Unwind@1015fbf0` | `1015fbf0` | `Unwind@1015fbf0` | +| `Unwind@1015fc20` | `1015fc20` | `Unwind@1015fc20` | +| `Unwind@1015fc31` | `1015fc31` | `Unwind@1015fc31` | +| `Unwind@1015fc39` | `1015fc39` | `Unwind@1015fc39` | +| `Unwind@1015fc44` | `1015fc44` | `Unwind@1015fc44` | +| `Unwind@1015fc70` | `1015fc70` | `Unwind@1015fc70` | +| `Unwind@1015fcc0` | `1015fcc0` | `Unwind@1015fcc0` | +| `Unwind@1015fccb` | `1015fccb` | `Unwind@1015fccb` | +| `Unwind@1015fcd3` | `1015fcd3` | `Unwind@1015fcd3` | +| `Unwind@1015fd00` | `1015fd00` | `Unwind@1015fd00` | +| `Unwind@1015fd08` | `1015fd08` | `Unwind@1015fd08` | +| `Unwind@1015fd10` | `1015fd10` | `Unwind@1015fd10` | +| `Unwind@1015fd1b` | `1015fd1b` | `Unwind@1015fd1b` | +| `Unwind@1015fd40` | `1015fd40` | `Unwind@1015fd40` | +| `Unwind@1015fd48` | `1015fd48` | `Unwind@1015fd48` | +| `Unwind@1015fd50` | `1015fd50` | `Unwind@1015fd50` | +| `Unwind@1015fd5b` | `1015fd5b` | `Unwind@1015fd5b` | +| `Unwind@1015fd80` | `1015fd80` | `Unwind@1015fd80` | +| `Unwind@1015fd88` | `1015fd88` | `Unwind@1015fd88` | +| `Unwind@1015fd90` | `1015fd90` | `Unwind@1015fd90` | +| `Unwind@1015fd9b` | `1015fd9b` | `Unwind@1015fd9b` | +| `Unwind@1015fdc0` | `1015fdc0` | `Unwind@1015fdc0` | +| `Unwind@1015fdc8` | `1015fdc8` | `Unwind@1015fdc8` | +| `Unwind@1015fdf0` | `1015fdf0` | `Unwind@1015fdf0` | +| `Unwind@1015fdf8` | `1015fdf8` | `Unwind@1015fdf8` | +| `Unwind@1015fe03` | `1015fe03` | `Unwind@1015fe03` | +| `Unwind@1015fe0b` | `1015fe0b` | `Unwind@1015fe0b` | +| `Unwind@1015fe13` | `1015fe13` | `Unwind@1015fe13` | +| `Unwind@1015fe1e` | `1015fe1e` | `Unwind@1015fe1e` | +| `Unwind@1015fe29` | `1015fe29` | `Unwind@1015fe29` | +| `Unwind@1015fe34` | `1015fe34` | `Unwind@1015fe34` | +| `Unwind@1015fe3f` | `1015fe3f` | `Unwind@1015fe3f` | +| `Unwind@1015fe47` | `1015fe47` | `Unwind@1015fe47` | +| `Unwind@1015fe4f` | `1015fe4f` | `Unwind@1015fe4f` | +| `Unwind@1015fe57` | `1015fe57` | `Unwind@1015fe57` | +| `Unwind@1015fe62` | `1015fe62` | `Unwind@1015fe62` | +| `Unwind@1015fe6d` | `1015fe6d` | `Unwind@1015fe6d` | +| `Unwind@1015fe78` | `1015fe78` | `Unwind@1015fe78` | +| `Unwind@1015fe83` | `1015fe83` | `Unwind@1015fe83` | +| `Unwind@1015feb0` | `1015feb0` | `Unwind@1015feb0` | +| `Unwind@1015feb8` | `1015feb8` | `Unwind@1015feb8` | +| `Unwind@1015fec0` | `1015fec0` | `Unwind@1015fec0` | +| `Unwind@1015fec8` | `1015fec8` | `Unwind@1015fec8` | +| `Unwind@1015fed6` | `1015fed6` | `Unwind@1015fed6` | +| `Unwind@1015fee4` | `1015fee4` | `Unwind@1015fee4` | +| `Unwind@1015feec` | `1015feec` | `Unwind@1015feec` | +| `Unwind@1015fef4` | `1015fef4` | `Unwind@1015fef4` | +| `Unwind@1015fefc` | `1015fefc` | `Unwind@1015fefc` | +| `Unwind@1015ff04` | `1015ff04` | `Unwind@1015ff04` | +| `Unwind@1015ff0c` | `1015ff0c` | `Unwind@1015ff0c` | +| `Unwind@1015ff30` | `1015ff30` | `Unwind@1015ff30` | +| `Unwind@1015ff38` | `1015ff38` | `Unwind@1015ff38` | +| `Unwind@1015ff40` | `1015ff40` | `Unwind@1015ff40` | +| `Unwind@1015ff4b` | `1015ff4b` | `Unwind@1015ff4b` | +| `Unwind@1015ff53` | `1015ff53` | `Unwind@1015ff53` | +| `Unwind@1015ff75` | `1015ff75` | `Unwind@1015ff75` | +| `Unwind@1015ff97` | `1015ff97` | `Unwind@1015ff97` | +| `Unwind@1015ffb6` | `1015ffb6` | `Unwind@1015ffb6` | +| `Unwind@1015ffd8` | `1015ffd8` | `Unwind@1015ffd8` | +| `Unwind@1015ffe3` | `1015ffe3` | `Unwind@1015ffe3` | +| `Unwind@1015ffee` | `1015ffee` | `Unwind@1015ffee` | +| `Unwind@1015fff6` | `1015fff6` | `Unwind@1015fff6` | +| `Unwind@10160001` | `10160001` | `Unwind@10160001` | +| `Unwind@10160040` | `10160040` | `Unwind@10160040` | +| `Unwind@10160070` | `10160070` | `Unwind@10160070` | +| `Unwind@101600a0` | `101600a0` | `Unwind@101600a0` | +| `Unwind@101600a8` | `101600a8` | `Unwind@101600a8` | +| `Unwind@101600b0` | `101600b0` | `Unwind@101600b0` | +| `Unwind@101600e0` | `101600e0` | `Unwind@101600e0` | +| `Unwind@101600e8` | `101600e8` | `Unwind@101600e8` | +| `Unwind@101600f0` | `101600f0` | `Unwind@101600f0` | +| `Unwind@10160120` | `10160120` | `Unwind@10160120` | +| `Unwind@10160150` | `10160150` | `Unwind@10160150` | +| `Unwind@10160158` | `10160158` | `Unwind@10160158` | +| `Unwind@10160180` | `10160180` | `Unwind@10160180` | +| `Unwind@101601b0` | `101601b0` | `Unwind@101601b0` | +| `Unwind@101601b8` | `101601b8` | `Unwind@101601b8` | +| `Unwind@101601c0` | `101601c0` | `Unwind@101601c0` | +| `Unwind@101601c8` | `101601c8` | `Unwind@101601c8` | +| `Unwind@101601d0` | `101601d0` | `Unwind@101601d0` | +| `Unwind@101601db` | `101601db` | `Unwind@101601db` | +| `Unwind@101601e3` | `101601e3` | `Unwind@101601e3` | +| `Unwind@101601eb` | `101601eb` | `Unwind@101601eb` | +| `Unwind@101601f3` | `101601f3` | `Unwind@101601f3` | +| `Unwind@101601fb` | `101601fb` | `Unwind@101601fb` | +| `Unwind@10160203` | `10160203` | `Unwind@10160203` | +| `Unwind@1016020b` | `1016020b` | `Unwind@1016020b` | +| `Unwind@10160213` | `10160213` | `Unwind@10160213` | +| `Unwind@1016021b` | `1016021b` | `Unwind@1016021b` | +| `Unwind@10160240` | `10160240` | `Unwind@10160240` | +| `Unwind@10160248` | `10160248` | `Unwind@10160248` | +| `Unwind@10160270` | `10160270` | `Unwind@10160270` | +| `Unwind@10160278` | `10160278` | `Unwind@10160278` | +| `Unwind@10160280` | `10160280` | `Unwind@10160280` | +| `Unwind@1016028b` | `1016028b` | `Unwind@1016028b` | +| `Unwind@101602b0` | `101602b0` | `Unwind@101602b0` | +| `Unwind@101602b8` | `101602b8` | `Unwind@101602b8` | +| `Unwind@101602c0` | `101602c0` | `Unwind@101602c0` | +| `Unwind@101602cb` | `101602cb` | `Unwind@101602cb` | +| `Unwind@101602d3` | `101602d3` | `Unwind@101602d3` | +| `Unwind@10160310` | `10160310` | `Unwind@10160310` | +| `Unwind@10160318` | `10160318` | `Unwind@10160318` | +| `Unwind@10160323` | `10160323` | `Unwind@10160323` | +| `Unwind@1016032b` | `1016032b` | `Unwind@1016032b` | +| `Unwind@10160333` | `10160333` | `Unwind@10160333` | +| `Unwind@10160360` | `10160360` | `Unwind@10160360` | +| `Unwind@10160368` | `10160368` | `Unwind@10160368` | +| `Unwind@10160390` | `10160390` | `Unwind@10160390` | +| `Unwind@10160398` | `10160398` | `Unwind@10160398` | +| `Unwind@101603a3` | `101603a3` | `Unwind@101603a3` | +| `Unwind@101603ab` | `101603ab` | `Unwind@101603ab` | +| `Unwind@101603d0` | `101603d0` | `Unwind@101603d0` | +| `Unwind@101603d8` | `101603d8` | `Unwind@101603d8` | +| `Unwind@101603e3` | `101603e3` | `Unwind@101603e3` | +| `Unwind@101603eb` | `101603eb` | `Unwind@101603eb` | +| `Unwind@101603f3` | `101603f3` | `Unwind@101603f3` | +| `Unwind@10160420` | `10160420` | `Unwind@10160420` | +| `Unwind@10160450` | `10160450` | `Unwind@10160450` | +| `Unwind@10160480` | `10160480` | `Unwind@10160480` | +| `Unwind@10160488` | `10160488` | `Unwind@10160488` | +| `Unwind@10160493` | `10160493` | `Unwind@10160493` | +| `Unwind@1016049e` | `1016049e` | `Unwind@1016049e` | +| `Unwind@101604a6` | `101604a6` | `Unwind@101604a6` | +| `Unwind@101604ae` | `101604ae` | `Unwind@101604ae` | +| `Unwind@101604e0` | `101604e0` | `Unwind@101604e0` | +| `Unwind@101604e8` | `101604e8` | `Unwind@101604e8` | +| `Unwind@10160510` | `10160510` | `Unwind@10160510` | +| `Unwind@10160540` | `10160540` | `Unwind@10160540` | +| `Unwind@10160548` | `10160548` | `Unwind@10160548` | +| `Unwind@10160553` | `10160553` | `Unwind@10160553` | +| `Unwind@1016055e` | `1016055e` | `Unwind@1016055e` | +| `Unwind@10160590` | `10160590` | `Unwind@10160590` | +| `Unwind@10160598` | `10160598` | `Unwind@10160598` | +| `Unwind@101605a3` | `101605a3` | `Unwind@101605a3` | +| `Unwind@101605ab` | `101605ab` | `Unwind@101605ab` | +| `Unwind@101605d0` | `101605d0` | `Unwind@101605d0` | +| `Unwind@101605d8` | `101605d8` | `Unwind@101605d8` | +| `Unwind@101605e3` | `101605e3` | `Unwind@101605e3` | +| `Unwind@101605eb` | `101605eb` | `Unwind@101605eb` | +| `Unwind@10160610` | `10160610` | `Unwind@10160610` | +| `Unwind@10160618` | `10160618` | `Unwind@10160618` | +| `Unwind@10160620` | `10160620` | `Unwind@10160620` | +| `Unwind@10160650` | `10160650` | `Unwind@10160650` | +| `Unwind@1016065b` | `1016065b` | `Unwind@1016065b` | +| `Unwind@10160663` | `10160663` | `Unwind@10160663` | +| `Unwind@10160690` | `10160690` | `Unwind@10160690` | +| `Unwind@101606a1` | `101606a1` | `Unwind@101606a1` | +| `Unwind@101606a9` | `101606a9` | `Unwind@101606a9` | +| `Unwind@101606b1` | `101606b1` | `Unwind@101606b1` | +| `Unwind@101606bc` | `101606bc` | `Unwind@101606bc` | +| `Unwind@101606e0` | `101606e0` | `Unwind@101606e0` | +| `Unwind@101606f1` | `101606f1` | `Unwind@101606f1` | +| `Unwind@101606f9` | `101606f9` | `Unwind@101606f9` | +| `Unwind@10160701` | `10160701` | `Unwind@10160701` | +| `Unwind@1016070c` | `1016070c` | `Unwind@1016070c` | +| `Unwind@10160730` | `10160730` | `Unwind@10160730` | +| `Unwind@10160741` | `10160741` | `Unwind@10160741` | +| `Unwind@10160749` | `10160749` | `Unwind@10160749` | +| `Unwind@10160751` | `10160751` | `Unwind@10160751` | +| `Unwind@1016075c` | `1016075c` | `Unwind@1016075c` | +| `Unwind@10160780` | `10160780` | `Unwind@10160780` | +| `Unwind@10160788` | `10160788` | `Unwind@10160788` | +| `Unwind@101607b0` | `101607b0` | `Unwind@101607b0` | +| `Unwind@101607b8` | `101607b8` | `Unwind@101607b8` | +| `Unwind@101607e0` | `101607e0` | `Unwind@101607e0` | +| `Unwind@101607e8` | `101607e8` | `Unwind@101607e8` | +| `Unwind@10160810` | `10160810` | `Unwind@10160810` | +| `Unwind@10160818` | `10160818` | `Unwind@10160818` | +| `Unwind@10160823` | `10160823` | `Unwind@10160823` | +| `Unwind@1016082e` | `1016082e` | `Unwind@1016082e` | +| `Unwind@10160839` | `10160839` | `Unwind@10160839` | +| `Unwind@10160841` | `10160841` | `Unwind@10160841` | +| `Unwind@10160849` | `10160849` | `Unwind@10160849` | +| `Unwind@10160851` | `10160851` | `Unwind@10160851` | +| `Unwind@10160880` | `10160880` | `Unwind@10160880` | +| `Unwind@10160888` | `10160888` | `Unwind@10160888` | +| `Unwind@10160890` | `10160890` | `Unwind@10160890` | +| `Unwind@101608c0` | `101608c0` | `Unwind@101608c0` | +| `Unwind@101608c8` | `101608c8` | `Unwind@101608c8` | +| `Unwind@101608f0` | `101608f0` | `Unwind@101608f0` | +| `Unwind@101608f8` | `101608f8` | `Unwind@101608f8` | +| `Unwind@10160900` | `10160900` | `Unwind@10160900` | +| `Unwind@10160908` | `10160908` | `Unwind@10160908` | +| `Unwind@10160910` | `10160910` | `Unwind@10160910` | +| `Unwind@10160918` | `10160918` | `Unwind@10160918` | +| `Unwind@10160920` | `10160920` | `Unwind@10160920` | +| `Unwind@10160928` | `10160928` | `Unwind@10160928` | +| `Unwind@10160930` | `10160930` | `Unwind@10160930` | +| `Unwind@10160938` | `10160938` | `Unwind@10160938` | +| `Unwind@10160940` | `10160940` | `Unwind@10160940` | +| `Unwind@10160970` | `10160970` | `Unwind@10160970` | +| `Unwind@10160978` | `10160978` | `Unwind@10160978` | +| `Unwind@10160980` | `10160980` | `Unwind@10160980` | +| `Unwind@10160988` | `10160988` | `Unwind@10160988` | +| `Unwind@10160990` | `10160990` | `Unwind@10160990` | +| `Unwind@101609c0` | `101609c0` | `Unwind@101609c0` | +| `Unwind@101609c8` | `101609c8` | `Unwind@101609c8` | +| `Unwind@101609d0` | `101609d0` | `Unwind@101609d0` | +| `Unwind@101609d8` | `101609d8` | `Unwind@101609d8` | +| `Unwind@101609e0` | `101609e0` | `Unwind@101609e0` | +| `Unwind@101609e8` | `101609e8` | `Unwind@101609e8` | +| `Unwind@101609f0` | `101609f0` | `Unwind@101609f0` | +| `Unwind@101609f8` | `101609f8` | `Unwind@101609f8` | +| `Unwind@10160a00` | `10160a00` | `Unwind@10160a00` | +| `Unwind@10160a30` | `10160a30` | `Unwind@10160a30` | +| `Unwind@10160a38` | `10160a38` | `Unwind@10160a38` | +| `Unwind@10160a40` | `10160a40` | `Unwind@10160a40` | +| `Unwind@10160a48` | `10160a48` | `Unwind@10160a48` | +| `Unwind@10160a50` | `10160a50` | `Unwind@10160a50` | +| `Unwind@10160a58` | `10160a58` | `Unwind@10160a58` | +| `Unwind@10160a60` | `10160a60` | `Unwind@10160a60` | +| `Unwind@10160a68` | `10160a68` | `Unwind@10160a68` | +| `Unwind@10160a70` | `10160a70` | `Unwind@10160a70` | +| `Unwind@10160aa0` | `10160aa0` | `Unwind@10160aa0` | +| `Unwind@10160aa8` | `10160aa8` | `Unwind@10160aa8` | +| `Unwind@10160ab0` | `10160ab0` | `Unwind@10160ab0` | +| `Unwind@10160ab8` | `10160ab8` | `Unwind@10160ab8` | +| `Unwind@10160ac0` | `10160ac0` | `Unwind@10160ac0` | +| `Unwind@10160af0` | `10160af0` | `Unwind@10160af0` | +| `Unwind@10160af8` | `10160af8` | `Unwind@10160af8` | +| `Unwind@10160b00` | `10160b00` | `Unwind@10160b00` | +| `Unwind@10160b08` | `10160b08` | `Unwind@10160b08` | +| `Unwind@10160b10` | `10160b10` | `Unwind@10160b10` | +| `Unwind@10160b40` | `10160b40` | `Unwind@10160b40` | +| `Unwind@10160b48` | `10160b48` | `Unwind@10160b48` | +| `Unwind@10160b50` | `10160b50` | `Unwind@10160b50` | +| `Unwind@10160b58` | `10160b58` | `Unwind@10160b58` | +| `Unwind@10160b60` | `10160b60` | `Unwind@10160b60` | +| `Unwind@10160b68` | `10160b68` | `Unwind@10160b68` | +| `Unwind@10160b70` | `10160b70` | `Unwind@10160b70` | +| `Unwind@10160ba0` | `10160ba0` | `Unwind@10160ba0` | +| `Unwind@10160ba8` | `10160ba8` | `Unwind@10160ba8` | +| `Unwind@10160bb0` | `10160bb0` | `Unwind@10160bb0` | +| `Unwind@10160bb8` | `10160bb8` | `Unwind@10160bb8` | +| `Unwind@10160bc0` | `10160bc0` | `Unwind@10160bc0` | +| `Unwind@10160bc8` | `10160bc8` | `Unwind@10160bc8` | +| `Unwind@10160bf0` | `10160bf0` | `Unwind@10160bf0` | +| `Unwind@10160bf8` | `10160bf8` | `Unwind@10160bf8` | +| `Unwind@10160c00` | `10160c00` | `Unwind@10160c00` | +| `Unwind@10160c08` | `10160c08` | `Unwind@10160c08` | +| `Unwind@10160c10` | `10160c10` | `Unwind@10160c10` | +| `Unwind@10160c40` | `10160c40` | `Unwind@10160c40` | +| `Unwind@10160c48` | `10160c48` | `Unwind@10160c48` | +| `Unwind@10160c50` | `10160c50` | `Unwind@10160c50` | +| `Unwind@10160c58` | `10160c58` | `Unwind@10160c58` | +| `Unwind@10160c60` | `10160c60` | `Unwind@10160c60` | +| `Unwind@10160c90` | `10160c90` | `Unwind@10160c90` | +| `Unwind@10160c98` | `10160c98` | `Unwind@10160c98` | +| `Unwind@10160ca0` | `10160ca0` | `Unwind@10160ca0` | +| `Unwind@10160ca8` | `10160ca8` | `Unwind@10160ca8` | +| `Unwind@10160cb0` | `10160cb0` | `Unwind@10160cb0` | +| `Unwind@10160ce0` | `10160ce0` | `Unwind@10160ce0` | +| `Unwind@10160ce8` | `10160ce8` | `Unwind@10160ce8` | +| `Unwind@10160cf0` | `10160cf0` | `Unwind@10160cf0` | +| `Unwind@10160cf8` | `10160cf8` | `Unwind@10160cf8` | +| `Unwind@10160d00` | `10160d00` | `Unwind@10160d00` | +| `Unwind@10160d30` | `10160d30` | `Unwind@10160d30` | +| `Unwind@10160d38` | `10160d38` | `Unwind@10160d38` | +| `Unwind@10160d43` | `10160d43` | `Unwind@10160d43` | +| `Unwind@10160d4b` | `10160d4b` | `Unwind@10160d4b` | +| `Unwind@10160d53` | `10160d53` | `Unwind@10160d53` | +| `Unwind@10160d5b` | `10160d5b` | `Unwind@10160d5b` | +| `Unwind@10160d63` | `10160d63` | `Unwind@10160d63` | +| `Unwind@10160d6b` | `10160d6b` | `Unwind@10160d6b` | +| `Unwind@10160d73` | `10160d73` | `Unwind@10160d73` | +| `Unwind@10160db0` | `10160db0` | `Unwind@10160db0` | +| `Unwind@10160db8` | `10160db8` | `Unwind@10160db8` | +| `Unwind@10160dc0` | `10160dc0` | `Unwind@10160dc0` | +| `Unwind@10160dc8` | `10160dc8` | `Unwind@10160dc8` | +| `Unwind@10160dd0` | `10160dd0` | `Unwind@10160dd0` | +| `Unwind@10160e00` | `10160e00` | `Unwind@10160e00` | +| `Unwind@10160e08` | `10160e08` | `Unwind@10160e08` | +| `Unwind@10160e10` | `10160e10` | `Unwind@10160e10` | +| `Unwind@10160e18` | `10160e18` | `Unwind@10160e18` | +| `Unwind@10160e20` | `10160e20` | `Unwind@10160e20` | +| `Unwind@10160e50` | `10160e50` | `Unwind@10160e50` | +| `Unwind@10160e58` | `10160e58` | `Unwind@10160e58` | +| `Unwind@10160e60` | `10160e60` | `Unwind@10160e60` | +| `Unwind@10160e68` | `10160e68` | `Unwind@10160e68` | +| `Unwind@10160e70` | `10160e70` | `Unwind@10160e70` | +| `Unwind@10160ea0` | `10160ea0` | `Unwind@10160ea0` | +| `Unwind@10160ea8` | `10160ea8` | `Unwind@10160ea8` | +| `Unwind@10160eb0` | `10160eb0` | `Unwind@10160eb0` | +| `Unwind@10160eb8` | `10160eb8` | `Unwind@10160eb8` | +| `Unwind@10160ec0` | `10160ec0` | `Unwind@10160ec0` | +| `Unwind@10160ef0` | `10160ef0` | `Unwind@10160ef0` | +| `Unwind@10160ef8` | `10160ef8` | `Unwind@10160ef8` | +| `Unwind@10160f00` | `10160f00` | `Unwind@10160f00` | +| `Unwind@10160f08` | `10160f08` | `Unwind@10160f08` | +| `Unwind@10160f10` | `10160f10` | `Unwind@10160f10` | +| `Unwind@10160f18` | `10160f18` | `Unwind@10160f18` | +| `Unwind@10160f50` | `10160f50` | `Unwind@10160f50` | +| `Unwind@10160f58` | `10160f58` | `Unwind@10160f58` | +| `Unwind@10160f60` | `10160f60` | `Unwind@10160f60` | +| `Unwind@10160f68` | `10160f68` | `Unwind@10160f68` | +| `Unwind@10160f70` | `10160f70` | `Unwind@10160f70` | +| `Unwind@10160f78` | `10160f78` | `Unwind@10160f78` | +| `Unwind@10160fb0` | `10160fb0` | `Unwind@10160fb0` | +| `Unwind@10160fb8` | `10160fb8` | `Unwind@10160fb8` | +| `Unwind@10160fc0` | `10160fc0` | `Unwind@10160fc0` | +| `Unwind@10160fc8` | `10160fc8` | `Unwind@10160fc8` | +| `Unwind@10160fd0` | `10160fd0` | `Unwind@10160fd0` | +| `Unwind@10160fd8` | `10160fd8` | `Unwind@10160fd8` | +| `Unwind@10161010` | `10161010` | `Unwind@10161010` | +| `Unwind@10161018` | `10161018` | `Unwind@10161018` | +| `Unwind@10161020` | `10161020` | `Unwind@10161020` | +| `Unwind@10161028` | `10161028` | `Unwind@10161028` | +| `Unwind@10161030` | `10161030` | `Unwind@10161030` | +| `Unwind@10161060` | `10161060` | `Unwind@10161060` | +| `Unwind@10161068` | `10161068` | `Unwind@10161068` | +| `Unwind@10161070` | `10161070` | `Unwind@10161070` | +| `Unwind@10161078` | `10161078` | `Unwind@10161078` | +| `Unwind@10161080` | `10161080` | `Unwind@10161080` | +| `Unwind@101610b0` | `101610b0` | `Unwind@101610b0` | +| `Unwind@101610bc` | `101610bc` | `Unwind@101610bc` | +| `Unwind@101610d3` | `101610d3` | `Unwind@101610d3` | +| `Unwind@101610de` | `101610de` | `Unwind@101610de` | +| `Unwind@101610e9` | `101610e9` | `Unwind@101610e9` | +| `Unwind@101610f4` | `101610f4` | `Unwind@101610f4` | +| `Unwind@10161102` | `10161102` | `Unwind@10161102` | +| `Unwind@1016110d` | `1016110d` | `Unwind@1016110d` | +| `Unwind@10161118` | `10161118` | `Unwind@10161118` | +| `Unwind@10161123` | `10161123` | `Unwind@10161123` | +| `Unwind@1016112e` | `1016112e` | `Unwind@1016112e` | +| `Unwind@10161139` | `10161139` | `Unwind@10161139` | +| `Unwind@10161144` | `10161144` | `Unwind@10161144` | +| `Unwind@1016114f` | `1016114f` | `Unwind@1016114f` | +| `Unwind@1016115a` | `1016115a` | `Unwind@1016115a` | +| `Unwind@10161165` | `10161165` | `Unwind@10161165` | +| `Unwind@10161170` | `10161170` | `Unwind@10161170` | +| `Unwind@1016117b` | `1016117b` | `Unwind@1016117b` | +| `Unwind@10161189` | `10161189` | `Unwind@10161189` | +| `Unwind@10161194` | `10161194` | `Unwind@10161194` | +| `Unwind@1016119f` | `1016119f` | `Unwind@1016119f` | +| `Unwind@101611aa` | `101611aa` | `Unwind@101611aa` | +| `Unwind@101611b5` | `101611b5` | `Unwind@101611b5` | +| `Unwind@101611c0` | `101611c0` | `Unwind@101611c0` | +| `Unwind@101611cb` | `101611cb` | `Unwind@101611cb` | +| `Unwind@101611d6` | `101611d6` | `Unwind@101611d6` | +| `Unwind@101611e1` | `101611e1` | `Unwind@101611e1` | +| `Unwind@101611ec` | `101611ec` | `Unwind@101611ec` | +| `Unwind@101611f7` | `101611f7` | `Unwind@101611f7` | +| `Unwind@10161202` | `10161202` | `Unwind@10161202` | +| `Unwind@1016120d` | `1016120d` | `Unwind@1016120d` | +| `Unwind@10161219` | `10161219` | `Unwind@10161219` | +| `Unwind@10161250` | `10161250` | `Unwind@10161250` | +| `Unwind@10161258` | `10161258` | `Unwind@10161258` | +| `Unwind@10161260` | `10161260` | `Unwind@10161260` | +| `Unwind@10161268` | `10161268` | `Unwind@10161268` | +| `Unwind@10161270` | `10161270` | `Unwind@10161270` | +| `Unwind@101612a0` | `101612a0` | `Unwind@101612a0` | +| `Unwind@101612a8` | `101612a8` | `Unwind@101612a8` | +| `Unwind@101612b0` | `101612b0` | `Unwind@101612b0` | +| `Unwind@101612b8` | `101612b8` | `Unwind@101612b8` | +| `Unwind@101612c0` | `101612c0` | `Unwind@101612c0` | +| `Unwind@101612f0` | `101612f0` | `Unwind@101612f0` | +| `Unwind@101612f8` | `101612f8` | `Unwind@101612f8` | +| `Unwind@10161300` | `10161300` | `Unwind@10161300` | +| `Unwind@10161308` | `10161308` | `Unwind@10161308` | +| `Unwind@10161310` | `10161310` | `Unwind@10161310` | +| `Unwind@10161340` | `10161340` | `Unwind@10161340` | +| `Unwind@10161348` | `10161348` | `Unwind@10161348` | +| `Unwind@10161350` | `10161350` | `Unwind@10161350` | +| `Unwind@10161358` | `10161358` | `Unwind@10161358` | +| `Unwind@10161360` | `10161360` | `Unwind@10161360` | +| `Unwind@10161390` | `10161390` | `Unwind@10161390` | +| `Unwind@10161398` | `10161398` | `Unwind@10161398` | +| `Unwind@101613a0` | `101613a0` | `Unwind@101613a0` | +| `Unwind@101613a8` | `101613a8` | `Unwind@101613a8` | +| `Unwind@101613b0` | `101613b0` | `Unwind@101613b0` | +| `Unwind@101613e0` | `101613e0` | `Unwind@101613e0` | +| `Unwind@101613e8` | `101613e8` | `Unwind@101613e8` | +| `Unwind@101613f0` | `101613f0` | `Unwind@101613f0` | +| `Unwind@101613f8` | `101613f8` | `Unwind@101613f8` | +| `Unwind@10161400` | `10161400` | `Unwind@10161400` | +| `Unwind@10161408` | `10161408` | `Unwind@10161408` | +| `Unwind@10161410` | `10161410` | `Unwind@10161410` | +| `Unwind@10161440` | `10161440` | `Unwind@10161440` | +| `Unwind@10161448` | `10161448` | `Unwind@10161448` | +| `Unwind@10161450` | `10161450` | `Unwind@10161450` | +| `Unwind@10161458` | `10161458` | `Unwind@10161458` | +| `Unwind@10161460` | `10161460` | `Unwind@10161460` | +| `Unwind@10161490` | `10161490` | `Unwind@10161490` | +| `Unwind@10161498` | `10161498` | `Unwind@10161498` | +| `Unwind@101614a0` | `101614a0` | `Unwind@101614a0` | +| `Unwind@101614a8` | `101614a8` | `Unwind@101614a8` | +| `Unwind@101614b0` | `101614b0` | `Unwind@101614b0` | +| `Unwind@101614e0` | `101614e0` | `Unwind@101614e0` | +| `Unwind@101614e8` | `101614e8` | `Unwind@101614e8` | +| `Unwind@101614f0` | `101614f0` | `Unwind@101614f0` | +| `Unwind@101614f8` | `101614f8` | `Unwind@101614f8` | +| `Unwind@10161500` | `10161500` | `Unwind@10161500` | +| `Unwind@10161530` | `10161530` | `Unwind@10161530` | +| `Unwind@1016153b` | `1016153b` | `Unwind@1016153b` | +| `Unwind@10161570` | `10161570` | `Unwind@10161570` | +| `Unwind@1016157b` | `1016157b` | `Unwind@1016157b` | +| `Unwind@101615b0` | `101615b0` | `Unwind@101615b0` | +| `Unwind@101615b8` | `101615b8` | `Unwind@101615b8` | +| `Unwind@101615c0` | `101615c0` | `Unwind@101615c0` | +| `Unwind@101615c8` | `101615c8` | `Unwind@101615c8` | +| `Unwind@101615d0` | `101615d0` | `Unwind@101615d0` | +| `Unwind@10161600` | `10161600` | `Unwind@10161600` | +| `Unwind@10161608` | `10161608` | `Unwind@10161608` | +| `Unwind@10161610` | `10161610` | `Unwind@10161610` | +| `Unwind@10161618` | `10161618` | `Unwind@10161618` | +| `Unwind@10161620` | `10161620` | `Unwind@10161620` | +| `Unwind@10161650` | `10161650` | `Unwind@10161650` | +| `Unwind@10161658` | `10161658` | `Unwind@10161658` | +| `Unwind@10161690` | `10161690` | `Unwind@10161690` | +| `Unwind@1016169e` | `1016169e` | `Unwind@1016169e` | +| `Unwind@101616a6` | `101616a6` | `Unwind@101616a6` | +| `Unwind@101616ae` | `101616ae` | `Unwind@101616ae` | +| `Unwind@101616b6` | `101616b6` | `Unwind@101616b6` | +| `Unwind@101616be` | `101616be` | `Unwind@101616be` | +| `Unwind@101616c6` | `101616c6` | `Unwind@101616c6` | +| `Unwind@101616ce` | `101616ce` | `Unwind@101616ce` | +| `Unwind@101616d6` | `101616d6` | `Unwind@101616d6` | +| `Unwind@10161700` | `10161700` | `Unwind@10161700` | +| `Unwind@10161708` | `10161708` | `Unwind@10161708` | +| `Unwind@10161710` | `10161710` | `Unwind@10161710` | +| `Unwind@10161718` | `10161718` | `Unwind@10161718` | +| `Unwind@10161750` | `10161750` | `Unwind@10161750` | +| `Unwind@10161758` | `10161758` | `Unwind@10161758` | +| `Unwind@10161760` | `10161760` | `Unwind@10161760` | +| `Unwind@10161790` | `10161790` | `Unwind@10161790` | +| `Unwind@10161798` | `10161798` | `Unwind@10161798` | +| `Unwind@101617a0` | `101617a0` | `Unwind@101617a0` | +| `Unwind@101617d0` | `101617d0` | `Unwind@101617d0` | +| `Unwind@101617d8` | `101617d8` | `Unwind@101617d8` | +| `Unwind@101617e0` | `101617e0` | `Unwind@101617e0` | +| `Unwind@10161810` | `10161810` | `Unwind@10161810` | +| `Unwind@10161818` | `10161818` | `Unwind@10161818` | +| `Unwind@10161823` | `10161823` | `Unwind@10161823` | +| `Unwind@1016182b` | `1016182b` | `Unwind@1016182b` | +| `Unwind@10161833` | `10161833` | `Unwind@10161833` | +| `Unwind@10161860` | `10161860` | `Unwind@10161860` | +| `Unwind@10161868` | `10161868` | `Unwind@10161868` | +| `Unwind@10161870` | `10161870` | `Unwind@10161870` | +| `Unwind@101618a0` | `101618a0` | `Unwind@101618a0` | +| `Unwind@101618a8` | `101618a8` | `Unwind@101618a8` | +| `Unwind@101618b3` | `101618b3` | `Unwind@101618b3` | +| `Unwind@101618bb` | `101618bb` | `Unwind@101618bb` | +| `Unwind@101618c3` | `101618c3` | `Unwind@101618c3` | +| `Unwind@101618f0` | `101618f0` | `Unwind@101618f0` | +| `Unwind@101618f8` | `101618f8` | `Unwind@101618f8` | +| `Unwind@10161900` | `10161900` | `Unwind@10161900` | +| `Unwind@10161908` | `10161908` | `Unwind@10161908` | +| `Unwind@10161910` | `10161910` | `Unwind@10161910` | +| `Unwind@1016191b` | `1016191b` | `Unwind@1016191b` | +| `Unwind@10161926` | `10161926` | `Unwind@10161926` | +| `Unwind@10161931` | `10161931` | `Unwind@10161931` | +| `Unwind@1016193c` | `1016193c` | `Unwind@1016193c` | +| `Unwind@10161947` | `10161947` | `Unwind@10161947` | +| `Unwind@10161952` | `10161952` | `Unwind@10161952` | +| `Unwind@1016195d` | `1016195d` | `Unwind@1016195d` | +| `Unwind@10161968` | `10161968` | `Unwind@10161968` | +| `Unwind@10161973` | `10161973` | `Unwind@10161973` | +| `Unwind@1016197e` | `1016197e` | `Unwind@1016197e` | +| `Unwind@10161989` | `10161989` | `Unwind@10161989` | +| `Unwind@10161994` | `10161994` | `Unwind@10161994` | +| `Unwind@1016199f` | `1016199f` | `Unwind@1016199f` | +| `Unwind@101619aa` | `101619aa` | `Unwind@101619aa` | +| `Unwind@101619b5` | `101619b5` | `Unwind@101619b5` | +| `Unwind@101619c0` | `101619c0` | `Unwind@101619c0` | +| `Unwind@101619cb` | `101619cb` | `Unwind@101619cb` | +| `Unwind@101619d6` | `101619d6` | `Unwind@101619d6` | +| `Unwind@101619e1` | `101619e1` | `Unwind@101619e1` | +| `Unwind@101619ec` | `101619ec` | `Unwind@101619ec` | +| `Unwind@101619f7` | `101619f7` | `Unwind@101619f7` | +| `Unwind@10161a02` | `10161a02` | `Unwind@10161a02` | +| `Unwind@10161a0a` | `10161a0a` | `Unwind@10161a0a` | +| `Unwind@10161a15` | `10161a15` | `Unwind@10161a15` | +| `Unwind@10161a20` | `10161a20` | `Unwind@10161a20` | +| `Unwind@10161a2b` | `10161a2b` | `Unwind@10161a2b` | +| `Unwind@10161a36` | `10161a36` | `Unwind@10161a36` | +| `Unwind@10161a41` | `10161a41` | `Unwind@10161a41` | +| `Unwind@10161a4c` | `10161a4c` | `Unwind@10161a4c` | +| `Unwind@10161a57` | `10161a57` | `Unwind@10161a57` | +| `Unwind@10161a62` | `10161a62` | `Unwind@10161a62` | +| `Unwind@10161a6d` | `10161a6d` | `Unwind@10161a6d` | +| `Unwind@10161a78` | `10161a78` | `Unwind@10161a78` | +| `Unwind@10161ab0` | `10161ab0` | `Unwind@10161ab0` | +| `Unwind@10161ab8` | `10161ab8` | `Unwind@10161ab8` | +| `Unwind@10161ac3` | `10161ac3` | `Unwind@10161ac3` | +| `Unwind@10161acb` | `10161acb` | `Unwind@10161acb` | +| `Unwind@10161af0` | `10161af0` | `Unwind@10161af0` | +| `Unwind@10161af8` | `10161af8` | `Unwind@10161af8` | +| `Unwind@10161b20` | `10161b20` | `Unwind@10161b20` | +| `Unwind@10161b50` | `10161b50` | `Unwind@10161b50` | +| `Unwind@10161b58` | `10161b58` | `Unwind@10161b58` | +| `Unwind@10161b63` | `10161b63` | `Unwind@10161b63` | +| `Unwind@10161b6e` | `10161b6e` | `Unwind@10161b6e` | +| `Unwind@10161ba0` | `10161ba0` | `Unwind@10161ba0` | +| `Unwind@10161ba8` | `10161ba8` | `Unwind@10161ba8` | +| `Unwind@10161bb3` | `10161bb3` | `Unwind@10161bb3` | +| `Unwind@10161bbb` | `10161bbb` | `Unwind@10161bbb` | +| `Unwind@10161be0` | `10161be0` | `Unwind@10161be0` | +| `Unwind@10161be8` | `10161be8` | `Unwind@10161be8` | +| `Unwind@10161bf3` | `10161bf3` | `Unwind@10161bf3` | +| `Unwind@10161bfb` | `10161bfb` | `Unwind@10161bfb` | +| `Unwind@10161c20` | `10161c20` | `Unwind@10161c20` | +| `Unwind@10161c28` | `10161c28` | `Unwind@10161c28` | +| `Unwind@10161c33` | `10161c33` | `Unwind@10161c33` | +| `Unwind@10161c3b` | `10161c3b` | `Unwind@10161c3b` | +| `Unwind@10161c60` | `10161c60` | `Unwind@10161c60` | +| `Unwind@10161c68` | `10161c68` | `Unwind@10161c68` | +| `Unwind@10161c73` | `10161c73` | `Unwind@10161c73` | +| `Unwind@10161c7b` | `10161c7b` | `Unwind@10161c7b` | +| `Unwind@10161c83` | `10161c83` | `Unwind@10161c83` | +| `Unwind@10161c8b` | `10161c8b` | `Unwind@10161c8b` | +| `Unwind@10161cb0` | `10161cb0` | `Unwind@10161cb0` | +| `Unwind@10161cc1` | `10161cc1` | `Unwind@10161cc1` | +| `Unwind@10161cc9` | `10161cc9` | `Unwind@10161cc9` | +| `Unwind@10161cd1` | `10161cd1` | `Unwind@10161cd1` | +| `Unwind@10161cdc` | `10161cdc` | `Unwind@10161cdc` | +| `Unwind@10161d00` | `10161d00` | `Unwind@10161d00` | +| `Unwind@10161d11` | `10161d11` | `Unwind@10161d11` | +| `Unwind@10161d19` | `10161d19` | `Unwind@10161d19` | +| `Unwind@10161d21` | `10161d21` | `Unwind@10161d21` | +| `Unwind@10161d2c` | `10161d2c` | `Unwind@10161d2c` | +| `Unwind@10161d50` | `10161d50` | `Unwind@10161d50` | +| `Unwind@10161d5b` | `10161d5b` | `Unwind@10161d5b` | +| `Unwind@10161d63` | `10161d63` | `Unwind@10161d63` | +| `Unwind@10161d90` | `10161d90` | `Unwind@10161d90` | +| `Unwind@10161da1` | `10161da1` | `Unwind@10161da1` | +| `Unwind@10161da9` | `10161da9` | `Unwind@10161da9` | +| `Unwind@10161db1` | `10161db1` | `Unwind@10161db1` | +| `Unwind@10161dbc` | `10161dbc` | `Unwind@10161dbc` | +| `Unwind@10161de0` | `10161de0` | `Unwind@10161de0` | +| `Unwind@10161deb` | `10161deb` | `Unwind@10161deb` | +| `Unwind@10161df6` | `10161df6` | `Unwind@10161df6` | +| `Unwind@10161dfe` | `10161dfe` | `Unwind@10161dfe` | +| `Unwind@10161e09` | `10161e09` | `Unwind@10161e09` | +| `Unwind@10161e14` | `10161e14` | `Unwind@10161e14` | +| `Unwind@10161e1c` | `10161e1c` | `Unwind@10161e1c` | +| `Unwind@10161e24` | `10161e24` | `Unwind@10161e24` | +| `Unwind@10161e32` | `10161e32` | `Unwind@10161e32` | +| `Unwind@10161e3a` | `10161e3a` | `Unwind@10161e3a` | +| `Unwind@10161e42` | `10161e42` | `Unwind@10161e42` | +| `Unwind@10161e50` | `10161e50` | `Unwind@10161e50` | +| `Unwind@10161e58` | `10161e58` | `Unwind@10161e58` | +| `Unwind@10161e66` | `10161e66` | `Unwind@10161e66` | +| `Unwind@10161e6e` | `10161e6e` | `Unwind@10161e6e` | +| `Unwind@10161e76` | `10161e76` | `Unwind@10161e76` | +| `Unwind@10161e7e` | `10161e7e` | `Unwind@10161e7e` | +| `Unwind@10161e87` | `10161e87` | `Unwind@10161e87` | +| `Unwind@10161eb0` | `10161eb0` | `Unwind@10161eb0` | +| `Unwind@10161eb8` | `10161eb8` | `Unwind@10161eb8` | +| `Unwind@10161ec0` | `10161ec0` | `Unwind@10161ec0` | +| `Unwind@10161ecb` | `10161ecb` | `Unwind@10161ecb` | +| `Unwind@10161ed3` | `10161ed3` | `Unwind@10161ed3` | +| `Unwind@10161ede` | `10161ede` | `Unwind@10161ede` | +| `Unwind@10161ee6` | `10161ee6` | `Unwind@10161ee6` | +| `Unwind@10161eee` | `10161eee` | `Unwind@10161eee` | +| `Unwind@10161ef9` | `10161ef9` | `Unwind@10161ef9` | +| `Unwind@10161f02` | `10161f02` | `Unwind@10161f02` | +| `Unwind@10161f0b` | `10161f0b` | `Unwind@10161f0b` | +| `Unwind@10161f30` | `10161f30` | `Unwind@10161f30` | +| `Unwind@10161f38` | `10161f38` | `Unwind@10161f38` | +| `Unwind@10161f70` | `10161f70` | `Unwind@10161f70` | +| `Unwind@10161f78` | `10161f78` | `Unwind@10161f78` | +| `Unwind@10161f83` | `10161f83` | `Unwind@10161f83` | +| `Unwind@10161f8e` | `10161f8e` | `Unwind@10161f8e` | +| `Unwind@10161f99` | `10161f99` | `Unwind@10161f99` | +| `Unwind@10161fa4` | `10161fa4` | `Unwind@10161fa4` | +| `Unwind@10161faf` | `10161faf` | `Unwind@10161faf` | +| `Unwind@10161fba` | `10161fba` | `Unwind@10161fba` | +| `Unwind@10161fc5` | `10161fc5` | `Unwind@10161fc5` | +| `Unwind@10161fd0` | `10161fd0` | `Unwind@10161fd0` | +| `Unwind@10161fdb` | `10161fdb` | `Unwind@10161fdb` | +| `Unwind@10161fe9` | `10161fe9` | `Unwind@10161fe9` | +| `Unwind@10161ff4` | `10161ff4` | `Unwind@10161ff4` | +| `Unwind@10161fff` | `10161fff` | `Unwind@10161fff` | +| `Unwind@1016200a` | `1016200a` | `Unwind@1016200a` | +| `Unwind@10162040` | `10162040` | `Unwind@10162040` | +| `Unwind@1016204e` | `1016204e` | `Unwind@1016204e` | +| `Unwind@10162056` | `10162056` | `Unwind@10162056` | +| `Unwind@1016205e` | `1016205e` | `Unwind@1016205e` | +| `Unwind@10162066` | `10162066` | `Unwind@10162066` | +| `Unwind@1016206e` | `1016206e` | `Unwind@1016206e` | +| `Unwind@10162076` | `10162076` | `Unwind@10162076` | +| `Unwind@1016207e` | `1016207e` | `Unwind@1016207e` | +| `Unwind@10162086` | `10162086` | `Unwind@10162086` | +| `Unwind@1016208e` | `1016208e` | `Unwind@1016208e` | +| `Unwind@10162096` | `10162096` | `Unwind@10162096` | +| `Unwind@1016209e` | `1016209e` | `Unwind@1016209e` | +| `Unwind@101620a6` | `101620a6` | `Unwind@101620a6` | +| `Unwind@101620ae` | `101620ae` | `Unwind@101620ae` | +| `Unwind@101620b6` | `101620b6` | `Unwind@101620b6` | +| `Unwind@101620be` | `101620be` | `Unwind@101620be` | +| `Unwind@101620c6` | `101620c6` | `Unwind@101620c6` | +| `Unwind@101620ce` | `101620ce` | `Unwind@101620ce` | +| `Unwind@101620d6` | `101620d6` | `Unwind@101620d6` | +| `Unwind@101620de` | `101620de` | `Unwind@101620de` | +| `Unwind@10162110` | `10162110` | `Unwind@10162110` | +| `Unwind@10162140` | `10162140` | `Unwind@10162140` | +| `Unwind@10162148` | `10162148` | `Unwind@10162148` | +| `Unwind@10162153` | `10162153` | `Unwind@10162153` | +| `Unwind@1016215b` | `1016215b` | `Unwind@1016215b` | +| `Unwind@10162180` | `10162180` | `Unwind@10162180` | +| `Unwind@10162188` | `10162188` | `Unwind@10162188` | +| `Unwind@10162193` | `10162193` | `Unwind@10162193` | +| `Unwind@1016219b` | `1016219b` | `Unwind@1016219b` | +| `Unwind@101621c0` | `101621c0` | `Unwind@101621c0` | +| `Unwind@101621f0` | `101621f0` | `Unwind@101621f0` | +| `Unwind@101621f8` | `101621f8` | `Unwind@101621f8` | +| `Unwind@10162220` | `10162220` | `Unwind@10162220` | +| `Unwind@10162228` | `10162228` | `Unwind@10162228` | +| `Unwind@10162233` | `10162233` | `Unwind@10162233` | +| `Unwind@1016223e` | `1016223e` | `Unwind@1016223e` | +| `Unwind@10162270` | `10162270` | `Unwind@10162270` | +| `Unwind@10162278` | `10162278` | `Unwind@10162278` | +| `Unwind@10162283` | `10162283` | `Unwind@10162283` | +| `Unwind@1016228b` | `1016228b` | `Unwind@1016228b` | +| `Unwind@101622b0` | `101622b0` | `Unwind@101622b0` | +| `Unwind@101622b8` | `101622b8` | `Unwind@101622b8` | +| `Unwind@101622c3` | `101622c3` | `Unwind@101622c3` | +| `Unwind@101622cb` | `101622cb` | `Unwind@101622cb` | +| `Unwind@101622f0` | `101622f0` | `Unwind@101622f0` | +| `Unwind@10162320` | `10162320` | `Unwind@10162320` | +| `Unwind@10162350` | `10162350` | `Unwind@10162350` | +| `Unwind@10162380` | `10162380` | `Unwind@10162380` | +| `Unwind@101623b0` | `101623b0` | `Unwind@101623b0` | +| `Unwind@101623e0` | `101623e0` | `Unwind@101623e0` | +| `Unwind@101623eb` | `101623eb` | `Unwind@101623eb` | +| `Unwind@101623f3` | `101623f3` | `Unwind@101623f3` | +| `Unwind@10162420` | `10162420` | `Unwind@10162420` | +| `Unwind@1016242b` | `1016242b` | `Unwind@1016242b` | +| `Unwind@10162433` | `10162433` | `Unwind@10162433` | +| `Unwind@10162460` | `10162460` | `Unwind@10162460` | +| `Unwind@10162490` | `10162490` | `Unwind@10162490` | +| `Unwind@10162498` | `10162498` | `Unwind@10162498` | +| `Unwind@101624c0` | `101624c0` | `Unwind@101624c0` | +| `Unwind@10162500` | `10162500` | `Unwind@10162500` | +| `Unwind@10162508` | `10162508` | `Unwind@10162508` | +| `Unwind@10162510` | `10162510` | `Unwind@10162510` | +| `Unwind@10162518` | `10162518` | `Unwind@10162518` | +| `Unwind@10162550` | `10162550` | `Unwind@10162550` | +| `Unwind@1016255b` | `1016255b` | `Unwind@1016255b` | +| `Unwind@10162566` | `10162566` | `Unwind@10162566` | +| `Unwind@10162571` | `10162571` | `Unwind@10162571` | +| `Unwind@1016257f` | `1016257f` | `Unwind@1016257f` | +| `Unwind@1016258d` | `1016258d` | `Unwind@1016258d` | +| `Unwind@1016259b` | `1016259b` | `Unwind@1016259b` | +| `Unwind@101625a6` | `101625a6` | `Unwind@101625a6` | +| `Unwind@101625ae` | `101625ae` | `Unwind@101625ae` | +| `Unwind@101625b9` | `101625b9` | `Unwind@101625b9` | +| `Unwind@101625f0` | `101625f0` | `Unwind@101625f0` | +| `Unwind@101625f8` | `101625f8` | `Unwind@101625f8` | +| `Unwind@10162600` | `10162600` | `Unwind@10162600` | +| `Unwind@10162630` | `10162630` | `Unwind@10162630` | +| `Unwind@10162638` | `10162638` | `Unwind@10162638` | +| `Unwind@10162643` | `10162643` | `Unwind@10162643` | +| `Unwind@1016264b` | `1016264b` | `Unwind@1016264b` | +| `Unwind@10162656` | `10162656` | `Unwind@10162656` | +| `Unwind@101626a0` | `101626a0` | `Unwind@101626a0` | +| `Unwind@101626a8` | `101626a8` | `Unwind@101626a8` | +| `Unwind@101626d0` | `101626d0` | `Unwind@101626d0` | +| `Unwind@101626d8` | `101626d8` | `Unwind@101626d8` | +| `Unwind@101626e3` | `101626e3` | `Unwind@101626e3` | +| `Unwind@101626ee` | `101626ee` | `Unwind@101626ee` | +| `Unwind@10162720` | `10162720` | `Unwind@10162720` | +| `Unwind@10162728` | `10162728` | `Unwind@10162728` | +| `Unwind@10162733` | `10162733` | `Unwind@10162733` | +| `Unwind@1016273b` | `1016273b` | `Unwind@1016273b` | +| `Unwind@10162760` | `10162760` | `Unwind@10162760` | +| `Unwind@10162768` | `10162768` | `Unwind@10162768` | +| `Unwind@10162773` | `10162773` | `Unwind@10162773` | +| `Unwind@1016277b` | `1016277b` | `Unwind@1016277b` | +| `Unwind@101627a0` | `101627a0` | `Unwind@101627a0` | +| `Unwind@101627a8` | `101627a8` | `Unwind@101627a8` | +| `Unwind@101627d0` | `101627d0` | `Unwind@101627d0` | +| `Unwind@101627d8` | `101627d8` | `Unwind@101627d8` | +| `Unwind@101627e3` | `101627e3` | `Unwind@101627e3` | +| `Unwind@101627eb` | `101627eb` | `Unwind@101627eb` | +| `Unwind@101627f6` | `101627f6` | `Unwind@101627f6` | +| `Unwind@10162820` | `10162820` | `Unwind@10162820` | +| `Unwind@10162828` | `10162828` | `Unwind@10162828` | +| `Unwind@10162833` | `10162833` | `Unwind@10162833` | +| `Unwind@1016283e` | `1016283e` | `Unwind@1016283e` | +| `Unwind@10162870` | `10162870` | `Unwind@10162870` | +| `Unwind@10162878` | `10162878` | `Unwind@10162878` | +| `Unwind@10162883` | `10162883` | `Unwind@10162883` | +| `Unwind@1016288b` | `1016288b` | `Unwind@1016288b` | +| `Unwind@101628b0` | `101628b0` | `Unwind@101628b0` | +| `Unwind@101628b8` | `101628b8` | `Unwind@101628b8` | +| `Unwind@101628c3` | `101628c3` | `Unwind@101628c3` | +| `Unwind@101628cb` | `101628cb` | `Unwind@101628cb` | +| `Unwind@10162910` | `10162910` | `Unwind@10162910` | +| `Unwind@10162960` | `10162960` | `Unwind@10162960` | +| `Unwind@10162968` | `10162968` | `Unwind@10162968` | +| `Unwind@10162973` | `10162973` | `Unwind@10162973` | +| `Unwind@1016297b` | `1016297b` | `Unwind@1016297b` | +| `Unwind@10162983` | `10162983` | `Unwind@10162983` | +| `Unwind@1016298e` | `1016298e` | `Unwind@1016298e` | +| `Unwind@101629c0` | `101629c0` | `Unwind@101629c0` | +| `Unwind@101629c8` | `101629c8` | `Unwind@101629c8` | +| `Unwind@101629d3` | `101629d3` | `Unwind@101629d3` | +| `Unwind@101629de` | `101629de` | `Unwind@101629de` | +| `Unwind@101629e6` | `101629e6` | `Unwind@101629e6` | +| `Unwind@10162a10` | `10162a10` | `Unwind@10162a10` | +| `Unwind@10162a18` | `10162a18` | `Unwind@10162a18` | +| `Unwind@10162a20` | `10162a20` | `Unwind@10162a20` | +| `Unwind@10162a28` | `10162a28` | `Unwind@10162a28` | +| `Unwind@10162a30` | `10162a30` | `Unwind@10162a30` | +| `Unwind@10162a38` | `10162a38` | `Unwind@10162a38` | +| `Unwind@10162a40` | `10162a40` | `Unwind@10162a40` | +| `Unwind@10162a48` | `10162a48` | `Unwind@10162a48` | +| `Unwind@10162a50` | `10162a50` | `Unwind@10162a50` | +| `Unwind@10162a58` | `10162a58` | `Unwind@10162a58` | +| `Unwind@10162a60` | `10162a60` | `Unwind@10162a60` | +| `Unwind@10162a90` | `10162a90` | `Unwind@10162a90` | +| `Unwind@10162a98` | `10162a98` | `Unwind@10162a98` | +| `Unwind@10162aa0` | `10162aa0` | `Unwind@10162aa0` | +| `Unwind@10162aa8` | `10162aa8` | `Unwind@10162aa8` | +| `Unwind@10162ab0` | `10162ab0` | `Unwind@10162ab0` | +| `Unwind@10162ab8` | `10162ab8` | `Unwind@10162ab8` | +| `Unwind@10162ac0` | `10162ac0` | `Unwind@10162ac0` | +| `Unwind@10162ac8` | `10162ac8` | `Unwind@10162ac8` | +| `Unwind@10162ad0` | `10162ad0` | `Unwind@10162ad0` | +| `Unwind@10162ad8` | `10162ad8` | `Unwind@10162ad8` | +| `Unwind@10162ae0` | `10162ae0` | `Unwind@10162ae0` | +| `Unwind@10162b10` | `10162b10` | `Unwind@10162b10` | +| `Unwind@10162b18` | `10162b18` | `Unwind@10162b18` | +| `Unwind@10162b20` | `10162b20` | `Unwind@10162b20` | +| `Unwind@10162b28` | `10162b28` | `Unwind@10162b28` | +| `Unwind@10162b30` | `10162b30` | `Unwind@10162b30` | +| `Unwind@10162b38` | `10162b38` | `Unwind@10162b38` | +| `Unwind@10162b40` | `10162b40` | `Unwind@10162b40` | +| `Unwind@10162b48` | `10162b48` | `Unwind@10162b48` | +| `Unwind@10162b50` | `10162b50` | `Unwind@10162b50` | +| `Unwind@10162b58` | `10162b58` | `Unwind@10162b58` | +| `Unwind@10162b60` | `10162b60` | `Unwind@10162b60` | +| `Unwind@10162b68` | `10162b68` | `Unwind@10162b68` | +| `Unwind@10162b70` | `10162b70` | `Unwind@10162b70` | +| `Unwind@10162b78` | `10162b78` | `Unwind@10162b78` | +| `Unwind@10162b80` | `10162b80` | `Unwind@10162b80` | +| `Unwind@10162b88` | `10162b88` | `Unwind@10162b88` | +| `Unwind@10162b90` | `10162b90` | `Unwind@10162b90` | +| `Unwind@10162b98` | `10162b98` | `Unwind@10162b98` | +| `Unwind@10162bc0` | `10162bc0` | `Unwind@10162bc0` | +| `Unwind@10162bc8` | `10162bc8` | `Unwind@10162bc8` | +| `Unwind@10162bd0` | `10162bd0` | `Unwind@10162bd0` | +| `Unwind@10162bd8` | `10162bd8` | `Unwind@10162bd8` | +| `Unwind@10162be0` | `10162be0` | `Unwind@10162be0` | +| `Unwind@10162be8` | `10162be8` | `Unwind@10162be8` | +| `Unwind@10162bf0` | `10162bf0` | `Unwind@10162bf0` | +| `Unwind@10162bf8` | `10162bf8` | `Unwind@10162bf8` | +| `Unwind@10162c00` | `10162c00` | `Unwind@10162c00` | +| `Unwind@10162c08` | `10162c08` | `Unwind@10162c08` | +| `Unwind@10162c10` | `10162c10` | `Unwind@10162c10` | +| `Unwind@10162c18` | `10162c18` | `Unwind@10162c18` | +| `Unwind@10162c20` | `10162c20` | `Unwind@10162c20` | +| `Unwind@10162c28` | `10162c28` | `Unwind@10162c28` | +| `Unwind@10162c50` | `10162c50` | `Unwind@10162c50` | +| `Unwind@10162c80` | `10162c80` | `Unwind@10162c80` | +| `Unwind@10162cb0` | `10162cb0` | `Unwind@10162cb0` | +| `Unwind@10162cb8` | `10162cb8` | `Unwind@10162cb8` | +| `Unwind@10162ce0` | `10162ce0` | `Unwind@10162ce0` | +| `Unwind@10162ce8` | `10162ce8` | `Unwind@10162ce8` | +| `Unwind@10162cf3` | `10162cf3` | `Unwind@10162cf3` | +| `Unwind@10162cfb` | `10162cfb` | `Unwind@10162cfb` | +| `Unwind@10162d20` | `10162d20` | `Unwind@10162d20` | +| `Unwind@10162d2b` | `10162d2b` | `Unwind@10162d2b` | +| `Unwind@10162d36` | `10162d36` | `Unwind@10162d36` | +| `Unwind@10162d41` | `10162d41` | `Unwind@10162d41` | +| `Unwind@10162d80` | `10162d80` | `Unwind@10162d80` | +| `Unwind@10162d8b` | `10162d8b` | `Unwind@10162d8b` | +| `Unwind@10162dc0` | `10162dc0` | `Unwind@10162dc0` | +| `Unwind@10162dcb` | `10162dcb` | `Unwind@10162dcb` | +| `Unwind@10162e00` | `10162e00` | `Unwind@10162e00` | +| `Unwind@10162e0b` | `10162e0b` | `Unwind@10162e0b` | +| `Unwind@10162e40` | `10162e40` | `Unwind@10162e40` | +| `Unwind@10162e48` | `10162e48` | `Unwind@10162e48` | +| `Unwind@10162e50` | `10162e50` | `Unwind@10162e50` | +| `Unwind@10162e80` | `10162e80` | `Unwind@10162e80` | +| `Unwind@10162eb0` | `10162eb0` | `Unwind@10162eb0` | +| `Unwind@10162ee0` | `10162ee0` | `Unwind@10162ee0` | +| `Unwind@10162ee8` | `10162ee8` | `Unwind@10162ee8` | +| `Unwind@10162f10` | `10162f10` | `Unwind@10162f10` | +| `Unwind@10162f18` | `10162f18` | `Unwind@10162f18` | +| `Unwind@10162f20` | `10162f20` | `Unwind@10162f20` | +| `Unwind@10162f28` | `10162f28` | `Unwind@10162f28` | +| `Unwind@10162f33` | `10162f33` | `Unwind@10162f33` | +| `Unwind@10162f60` | `10162f60` | `Unwind@10162f60` | +| `Unwind@10162f68` | `10162f68` | `Unwind@10162f68` | +| `Unwind@10162f73` | `10162f73` | `Unwind@10162f73` | +| `Unwind@10162f7b` | `10162f7b` | `Unwind@10162f7b` | +| `Unwind@10162fa0` | `10162fa0` | `Unwind@10162fa0` | +| `Unwind@10162fa8` | `10162fa8` | `Unwind@10162fa8` | +| `Unwind@10162fd0` | `10162fd0` | `Unwind@10162fd0` | +| `Unwind@10162fdb` | `10162fdb` | `Unwind@10162fdb` | +| `Unwind@10162fe3` | `10162fe3` | `Unwind@10162fe3` | +| `Unwind@10162feb` | `10162feb` | `Unwind@10162feb` | +| `Unwind@10162ff3` | `10162ff3` | `Unwind@10162ff3` | +| `Unwind@10162ffe` | `10162ffe` | `Unwind@10162ffe` | +| `Unwind@10163009` | `10163009` | `Unwind@10163009` | +| `Unwind@10163014` | `10163014` | `Unwind@10163014` | +| `Unwind@1016301f` | `1016301f` | `Unwind@1016301f` | +| `Unwind@10163027` | `10163027` | `Unwind@10163027` | +| `Unwind@10163060` | `10163060` | `Unwind@10163060` | +| `Unwind@10163068` | `10163068` | `Unwind@10163068` | +| `Unwind@10163070` | `10163070` | `Unwind@10163070` | +| `Unwind@10163078` | `10163078` | `Unwind@10163078` | +| `Unwind@10163080` | `10163080` | `Unwind@10163080` | +| `Unwind@101630b0` | `101630b0` | `Unwind@101630b0` | +| `Unwind@101630b8` | `101630b8` | `Unwind@101630b8` | +| `Unwind@101630c0` | `101630c0` | `Unwind@101630c0` | +| `Unwind@101630c8` | `101630c8` | `Unwind@101630c8` | +| `Unwind@101630d0` | `101630d0` | `Unwind@101630d0` | +| `Unwind@10163100` | `10163100` | `Unwind@10163100` | +| `Unwind@10163108` | `10163108` | `Unwind@10163108` | +| `Unwind@10163110` | `10163110` | `Unwind@10163110` | +| `Unwind@10163118` | `10163118` | `Unwind@10163118` | +| `Unwind@10163120` | `10163120` | `Unwind@10163120` | +| `Unwind@10163128` | `10163128` | `Unwind@10163128` | +| `Unwind@10163130` | `10163130` | `Unwind@10163130` | +| `Unwind@10163138` | `10163138` | `Unwind@10163138` | +| `Unwind@10163140` | `10163140` | `Unwind@10163140` | +| `Unwind@10163148` | `10163148` | `Unwind@10163148` | +| `Unwind@10163150` | `10163150` | `Unwind@10163150` | +| `Unwind@10163158` | `10163158` | `Unwind@10163158` | +| `Unwind@10163160` | `10163160` | `Unwind@10163160` | +| `Unwind@10163190` | `10163190` | `Unwind@10163190` | +| `Unwind@10163198` | `10163198` | `Unwind@10163198` | +| `Unwind@101631a0` | `101631a0` | `Unwind@101631a0` | +| `Unwind@101631d0` | `101631d0` | `Unwind@101631d0` | +| `Unwind@101631db` | `101631db` | `Unwind@101631db` | +| `Unwind@101631e3` | `101631e3` | `Unwind@101631e3` | +| `Unwind@101631eb` | `101631eb` | `Unwind@101631eb` | +| `Unwind@10163210` | `10163210` | `Unwind@10163210` | +| `Unwind@1016321b` | `1016321b` | `Unwind@1016321b` | +| `Unwind@10163223` | `10163223` | `Unwind@10163223` | +| `Unwind@1016322b` | `1016322b` | `Unwind@1016322b` | +| `Unwind@10163250` | `10163250` | `Unwind@10163250` | +| `Unwind@10163258` | `10163258` | `Unwind@10163258` | +| `Unwind@10163260` | `10163260` | `Unwind@10163260` | +| `Unwind@10163290` | `10163290` | `Unwind@10163290` | +| `Unwind@101632c0` | `101632c0` | `Unwind@101632c0` | +| `Unwind@101632f0` | `101632f0` | `Unwind@101632f0` | +| `Unwind@10163320` | `10163320` | `Unwind@10163320` | +| `Unwind@10163350` | `10163350` | `Unwind@10163350` | +| `Unwind@10163358` | `10163358` | `Unwind@10163358` | +| `Unwind@10163360` | `10163360` | `Unwind@10163360` | +| `Unwind@10163368` | `10163368` | `Unwind@10163368` | +| `Unwind@10163390` | `10163390` | `Unwind@10163390` | +| `Unwind@10163398` | `10163398` | `Unwind@10163398` | +| `Unwind@101633c0` | `101633c0` | `Unwind@101633c0` | +| `Unwind@101633c8` | `101633c8` | `Unwind@101633c8` | +| `Unwind@101633d0` | `101633d0` | `Unwind@101633d0` | +| `Unwind@101633d8` | `101633d8` | `Unwind@101633d8` | +| `Unwind@101633e0` | `101633e0` | `Unwind@101633e0` | +| `Unwind@101633e8` | `101633e8` | `Unwind@101633e8` | +| `Unwind@10163410` | `10163410` | `Unwind@10163410` | +| `Unwind@1016341b` | `1016341b` | `Unwind@1016341b` | +| `Unwind@10163426` | `10163426` | `Unwind@10163426` | +| `Unwind@10163431` | `10163431` | `Unwind@10163431` | +| `Unwind@1016343c` | `1016343c` | `Unwind@1016343c` | +| `Unwind@10163447` | `10163447` | `Unwind@10163447` | +| `Unwind@10163480` | `10163480` | `Unwind@10163480` | +| `Unwind@10163488` | `10163488` | `Unwind@10163488` | +| `Unwind@10163493` | `10163493` | `Unwind@10163493` | +| `Unwind@1016349b` | `1016349b` | `Unwind@1016349b` | +| `Unwind@101634a3` | `101634a3` | `Unwind@101634a3` | +| `Unwind@101634d0` | `101634d0` | `Unwind@101634d0` | +| `Unwind@101634d8` | `101634d8` | `Unwind@101634d8` | +| `Unwind@101634e3` | `101634e3` | `Unwind@101634e3` | +| `Unwind@101634eb` | `101634eb` | `Unwind@101634eb` | +| `Unwind@101634f3` | `101634f3` | `Unwind@101634f3` | +| `Unwind@10163520` | `10163520` | `Unwind@10163520` | +| `Unwind@10163550` | `10163550` | `Unwind@10163550` | +| `Unwind@10163580` | `10163580` | `Unwind@10163580` | +| `Unwind@101635b0` | `101635b0` | `Unwind@101635b0` | +| `Unwind@101635e0` | `101635e0` | `Unwind@101635e0` | +| `Unwind@101635e8` | `101635e8` | `Unwind@101635e8` | +| `Unwind@101635f0` | `101635f0` | `Unwind@101635f0` | +| `Unwind@10163620` | `10163620` | `Unwind@10163620` | +| `Unwind@10163650` | `10163650` | `Unwind@10163650` | +| `Unwind@10163658` | `10163658` | `Unwind@10163658` | +| `Unwind@10163660` | `10163660` | `Unwind@10163660` | +| `Unwind@1016366b` | `1016366b` | `Unwind@1016366b` | +| `Unwind@10163673` | `10163673` | `Unwind@10163673` | +| `Unwind@1016367b` | `1016367b` | `Unwind@1016367b` | +| `Unwind@10163683` | `10163683` | `Unwind@10163683` | +| `Unwind@101636b0` | `101636b0` | `Unwind@101636b0` | +| `Unwind@101636b8` | `101636b8` | `Unwind@101636b8` | +| `Unwind@101636c0` | `101636c0` | `Unwind@101636c0` | +| `Unwind@101636cb` | `101636cb` | `Unwind@101636cb` | +| `Unwind@101636d3` | `101636d3` | `Unwind@101636d3` | +| `Unwind@101636db` | `101636db` | `Unwind@101636db` | +| `Unwind@101636e3` | `101636e3` | `Unwind@101636e3` | +| `Unwind@10163710` | `10163710` | `Unwind@10163710` | +| `Unwind@10163718` | `10163718` | `Unwind@10163718` | +| `Unwind@10163740` | `10163740` | `Unwind@10163740` | +| `Unwind@10163748` | `10163748` | `Unwind@10163748` | +| `Unwind@10163753` | `10163753` | `Unwind@10163753` | +| `Unwind@1016375b` | `1016375b` | `Unwind@1016375b` | +| `Unwind@10163763` | `10163763` | `Unwind@10163763` | +| `Unwind@10163790` | `10163790` | `Unwind@10163790` | +| `Unwind@10163798` | `10163798` | `Unwind@10163798` | +| `Unwind@101637c0` | `101637c0` | `Unwind@101637c0` | +| `Unwind@101637c8` | `101637c8` | `Unwind@101637c8` | +| `Unwind@101637d0` | `101637d0` | `Unwind@101637d0` | +| `Unwind@10163800` | `10163800` | `Unwind@10163800` | +| `Unwind@10163808` | `10163808` | `Unwind@10163808` | +| `Unwind@10163810` | `10163810` | `Unwind@10163810` | +| `Unwind@10163840` | `10163840` | `Unwind@10163840` | +| `Unwind@10163848` | `10163848` | `Unwind@10163848` | +| `Unwind@10163850` | `10163850` | `Unwind@10163850` | +| `Unwind@10163880` | `10163880` | `Unwind@10163880` | +| `Unwind@10163888` | `10163888` | `Unwind@10163888` | +| `Unwind@10163890` | `10163890` | `Unwind@10163890` | +| `Unwind@101638c0` | `101638c0` | `Unwind@101638c0` | +| `Unwind@101638c8` | `101638c8` | `Unwind@101638c8` | +| `Unwind@101638f0` | `101638f0` | `Unwind@101638f0` | +| `Unwind@101638f8` | `101638f8` | `Unwind@101638f8` | +| `Unwind@10163920` | `10163920` | `Unwind@10163920` | +| `Unwind@10163928` | `10163928` | `Unwind@10163928` | +| `Unwind@10163950` | `10163950` | `Unwind@10163950` | +| `Unwind@10163958` | `10163958` | `Unwind@10163958` | +| `Unwind@10163980` | `10163980` | `Unwind@10163980` | +| `Unwind@10163988` | `10163988` | `Unwind@10163988` | +| `Unwind@101639b0` | `101639b0` | `Unwind@101639b0` | +| `Unwind@101639b8` | `101639b8` | `Unwind@101639b8` | +| `Unwind@101639c0` | `101639c0` | `Unwind@101639c0` | +| `Unwind@101639f0` | `101639f0` | `Unwind@101639f0` | +| `Unwind@101639f8` | `101639f8` | `Unwind@101639f8` | +| `Unwind@10163a00` | `10163a00` | `Unwind@10163a00` | +| `Unwind@10163a30` | `10163a30` | `Unwind@10163a30` | +| `Unwind@10163a38` | `10163a38` | `Unwind@10163a38` | +| `Unwind@10163a40` | `10163a40` | `Unwind@10163a40` | +| `Unwind@10163a70` | `10163a70` | `Unwind@10163a70` | +| `Unwind@10163a78` | `10163a78` | `Unwind@10163a78` | +| `Unwind@10163a80` | `10163a80` | `Unwind@10163a80` | +| `Unwind@10163ab0` | `10163ab0` | `Unwind@10163ab0` | +| `Unwind@10163ab8` | `10163ab8` | `Unwind@10163ab8` | +| `Unwind@10163ac0` | `10163ac0` | `Unwind@10163ac0` | +| `Unwind@10163af0` | `10163af0` | `Unwind@10163af0` | +| `Unwind@10163af8` | `10163af8` | `Unwind@10163af8` | +| `Unwind@10163b00` | `10163b00` | `Unwind@10163b00` | +| `Unwind@10163b30` | `10163b30` | `Unwind@10163b30` | +| `Unwind@10163b38` | `10163b38` | `Unwind@10163b38` | +| `Unwind@10163b40` | `10163b40` | `Unwind@10163b40` | +| `Unwind@10163b4b` | `10163b4b` | `Unwind@10163b4b` | +| `Unwind@10163b70` | `10163b70` | `Unwind@10163b70` | +| `Unwind@10163b78` | `10163b78` | `Unwind@10163b78` | +| `Unwind@10163b83` | `10163b83` | `Unwind@10163b83` | +| `Unwind@10163b8b` | `10163b8b` | `Unwind@10163b8b` | +| `Unwind@10163b93` | `10163b93` | `Unwind@10163b93` | +| `Unwind@10163bc0` | `10163bc0` | `Unwind@10163bc0` | +| `Unwind@10163bc8` | `10163bc8` | `Unwind@10163bc8` | +| `Unwind@10163bd3` | `10163bd3` | `Unwind@10163bd3` | +| `Unwind@10163bdb` | `10163bdb` | `Unwind@10163bdb` | +| `Unwind@10163be3` | `10163be3` | `Unwind@10163be3` | +| `Unwind@10163c10` | `10163c10` | `Unwind@10163c10` | +| `Unwind@10163c18` | `10163c18` | `Unwind@10163c18` | +| `Unwind@10163c20` | `10163c20` | `Unwind@10163c20` | +| `Unwind@10163c2b` | `10163c2b` | `Unwind@10163c2b` | +| `Unwind@10163c50` | `10163c50` | `Unwind@10163c50` | +| `Unwind@10163c58` | `10163c58` | `Unwind@10163c58` | +| `Unwind@10163c60` | `10163c60` | `Unwind@10163c60` | +| `Unwind@10163c6b` | `10163c6b` | `Unwind@10163c6b` | +| `Unwind@10163c90` | `10163c90` | `Unwind@10163c90` | +| `Unwind@10163c98` | `10163c98` | `Unwind@10163c98` | +| `Unwind@10163ca0` | `10163ca0` | `Unwind@10163ca0` | +| `Unwind@10163cab` | `10163cab` | `Unwind@10163cab` | +| `Unwind@10163cd0` | `10163cd0` | `Unwind@10163cd0` | +| `Unwind@10163cd8` | `10163cd8` | `Unwind@10163cd8` | +| `Unwind@10163ce0` | `10163ce0` | `Unwind@10163ce0` | +| `Unwind@10163ce8` | `10163ce8` | `Unwind@10163ce8` | +| `Unwind@10163d10` | `10163d10` | `Unwind@10163d10` | +| `Unwind@10163d18` | `10163d18` | `Unwind@10163d18` | +| `Unwind@10163d20` | `10163d20` | `Unwind@10163d20` | +| `Unwind@10163d50` | `10163d50` | `Unwind@10163d50` | +| `Unwind@10163d58` | `10163d58` | `Unwind@10163d58` | +| `Unwind@10163d60` | `10163d60` | `Unwind@10163d60` | +| `Unwind@10163d68` | `10163d68` | `Unwind@10163d68` | +| `Unwind@10163d90` | `10163d90` | `Unwind@10163d90` | +| `Unwind@10163d98` | `10163d98` | `Unwind@10163d98` | +| `Unwind@10163da0` | `10163da0` | `Unwind@10163da0` | +| `Unwind@10163dd0` | `10163dd0` | `Unwind@10163dd0` | +| `Unwind@10163dd8` | `10163dd8` | `Unwind@10163dd8` | +| `Unwind@10163de0` | `10163de0` | `Unwind@10163de0` | +| `Unwind@10163deb` | `10163deb` | `Unwind@10163deb` | +| `Unwind@10163e10` | `10163e10` | `Unwind@10163e10` | +| `Unwind@10163e18` | `10163e18` | `Unwind@10163e18` | +| `Unwind@10163e20` | `10163e20` | `Unwind@10163e20` | +| `Unwind@10163e2b` | `10163e2b` | `Unwind@10163e2b` | +| `Unwind@10163e33` | `10163e33` | `Unwind@10163e33` | +| `Unwind@10163e70` | `10163e70` | `Unwind@10163e70` | +| `Unwind@10163e78` | `10163e78` | `Unwind@10163e78` | +| `Unwind@10163e83` | `10163e83` | `Unwind@10163e83` | +| `Unwind@10163e8b` | `10163e8b` | `Unwind@10163e8b` | +| `Unwind@10163e93` | `10163e93` | `Unwind@10163e93` | +| `Unwind@10163ec0` | `10163ec0` | `Unwind@10163ec0` | +| `Unwind@10163ec8` | `10163ec8` | `Unwind@10163ec8` | +| `Unwind@10163ed3` | `10163ed3` | `Unwind@10163ed3` | +| `Unwind@10163edb` | `10163edb` | `Unwind@10163edb` | +| `Unwind@10163ee3` | `10163ee3` | `Unwind@10163ee3` | +| `Unwind@10163f10` | `10163f10` | `Unwind@10163f10` | +| `Unwind@10163f21` | `10163f21` | `Unwind@10163f21` | +| `Unwind@10163f29` | `10163f29` | `Unwind@10163f29` | +| `Unwind@10163f31` | `10163f31` | `Unwind@10163f31` | +| `Unwind@10163f3c` | `10163f3c` | `Unwind@10163f3c` | +| `Unwind@10163f60` | `10163f60` | `Unwind@10163f60` | +| `Unwind@10163f71` | `10163f71` | `Unwind@10163f71` | +| `Unwind@10163f79` | `10163f79` | `Unwind@10163f79` | +| `Unwind@10163f81` | `10163f81` | `Unwind@10163f81` | +| `Unwind@10163f8c` | `10163f8c` | `Unwind@10163f8c` | +| `Unwind@10163fb0` | `10163fb0` | `Unwind@10163fb0` | +| `Unwind@10163fc1` | `10163fc1` | `Unwind@10163fc1` | +| `Unwind@10163fc9` | `10163fc9` | `Unwind@10163fc9` | +| `Unwind@10163fd1` | `10163fd1` | `Unwind@10163fd1` | +| `Unwind@10163fdc` | `10163fdc` | `Unwind@10163fdc` | +| `Unwind@10164000` | `10164000` | `Unwind@10164000` | +| `Unwind@10164008` | `10164008` | `Unwind@10164008` | +| `Unwind@10164013` | `10164013` | `Unwind@10164013` | +| `Unwind@1016401b` | `1016401b` | `Unwind@1016401b` | +| `Unwind@10164023` | `10164023` | `Unwind@10164023` | +| `Unwind@10164050` | `10164050` | `Unwind@10164050` | +| `Unwind@10164058` | `10164058` | `Unwind@10164058` | +| `Unwind@10164063` | `10164063` | `Unwind@10164063` | +| `Unwind@1016406b` | `1016406b` | `Unwind@1016406b` | +| `Unwind@10164073` | `10164073` | `Unwind@10164073` | +| `Unwind@101640a0` | `101640a0` | `Unwind@101640a0` | +| `Unwind@101640a8` | `101640a8` | `Unwind@101640a8` | +| `Unwind@101640b3` | `101640b3` | `Unwind@101640b3` | +| `Unwind@101640bb` | `101640bb` | `Unwind@101640bb` | +| `Unwind@101640c3` | `101640c3` | `Unwind@101640c3` | +| `Unwind@101640f0` | `101640f0` | `Unwind@101640f0` | +| `Unwind@10164101` | `10164101` | `Unwind@10164101` | +| `Unwind@10164109` | `10164109` | `Unwind@10164109` | +| `Unwind@10164111` | `10164111` | `Unwind@10164111` | +| `Unwind@1016411c` | `1016411c` | `Unwind@1016411c` | +| `Unwind@10164140` | `10164140` | `Unwind@10164140` | +| `Unwind@10164151` | `10164151` | `Unwind@10164151` | +| `Unwind@10164159` | `10164159` | `Unwind@10164159` | +| `Unwind@10164161` | `10164161` | `Unwind@10164161` | +| `Unwind@1016416c` | `1016416c` | `Unwind@1016416c` | +| `Unwind@10164190` | `10164190` | `Unwind@10164190` | +| `Unwind@101641a1` | `101641a1` | `Unwind@101641a1` | +| `Unwind@101641a9` | `101641a9` | `Unwind@101641a9` | +| `Unwind@101641b1` | `101641b1` | `Unwind@101641b1` | +| `Unwind@101641bc` | `101641bc` | `Unwind@101641bc` | +| `Unwind@101641e0` | `101641e0` | `Unwind@101641e0` | +| `Unwind@10164210` | `10164210` | `Unwind@10164210` | +| `Unwind@10164218` | `10164218` | `Unwind@10164218` | +| `Unwind@10164223` | `10164223` | `Unwind@10164223` | +| `Unwind@1016422b` | `1016422b` | `Unwind@1016422b` | +| `Unwind@10164233` | `10164233` | `Unwind@10164233` | +| `Unwind@10164260` | `10164260` | `Unwind@10164260` | +| `Unwind@10164268` | `10164268` | `Unwind@10164268` | +| `Unwind@10164273` | `10164273` | `Unwind@10164273` | +| `Unwind@1016427b` | `1016427b` | `Unwind@1016427b` | +| `Unwind@10164283` | `10164283` | `Unwind@10164283` | +| `Unwind@101642b0` | `101642b0` | `Unwind@101642b0` | +| `Unwind@101642b8` | `101642b8` | `Unwind@101642b8` | +| `Unwind@101642c3` | `101642c3` | `Unwind@101642c3` | +| `Unwind@101642cb` | `101642cb` | `Unwind@101642cb` | +| `Unwind@101642d3` | `101642d3` | `Unwind@101642d3` | +| `Unwind@10164300` | `10164300` | `Unwind@10164300` | +| `Unwind@10164330` | `10164330` | `Unwind@10164330` | +| `Unwind@10164360` | `10164360` | `Unwind@10164360` | +| `Unwind@10164390` | `10164390` | `Unwind@10164390` | +| `Unwind@10164398` | `10164398` | `Unwind@10164398` | +| `Unwind@101643c0` | `101643c0` | `Unwind@101643c0` | +| `Unwind@101643c8` | `101643c8` | `Unwind@101643c8` | +| `Unwind@101643d3` | `101643d3` | `Unwind@101643d3` | +| `Unwind@101643de` | `101643de` | `Unwind@101643de` | +| `Unwind@101643e6` | `101643e6` | `Unwind@101643e6` | +| `Unwind@101643ee` | `101643ee` | `Unwind@101643ee` | +| `Unwind@101643f6` | `101643f6` | `Unwind@101643f6` | +| `Unwind@101643fe` | `101643fe` | `Unwind@101643fe` | +| `Unwind@10164430` | `10164430` | `Unwind@10164430` | +| `Unwind@10164438` | `10164438` | `Unwind@10164438` | +| `Unwind@10164440` | `10164440` | `Unwind@10164440` | +| `Unwind@10164470` | `10164470` | `Unwind@10164470` | +| `Unwind@10164478` | `10164478` | `Unwind@10164478` | +| `Unwind@10164483` | `10164483` | `Unwind@10164483` | +| `Unwind@1016448b` | `1016448b` | `Unwind@1016448b` | +| `Unwind@10164493` | `10164493` | `Unwind@10164493` | +| `Unwind@101644e0` | `101644e0` | `Unwind@101644e0` | +| `Unwind@101644e8` | `101644e8` | `Unwind@101644e8` | +| `Unwind@101644f0` | `101644f0` | `Unwind@101644f0` | +| `Unwind@101644f8` | `101644f8` | `Unwind@101644f8` | +| `Unwind@10164500` | `10164500` | `Unwind@10164500` | +| `Unwind@1016450b` | `1016450b` | `Unwind@1016450b` | +| `Unwind@10164513` | `10164513` | `Unwind@10164513` | +| `Unwind@1016451b` | `1016451b` | `Unwind@1016451b` | +| `Unwind@10164526` | `10164526` | `Unwind@10164526` | +| `Unwind@1016452f` | `1016452f` | `Unwind@1016452f` | +| `Unwind@10164560` | `10164560` | `Unwind@10164560` | +| `Unwind@10164568` | `10164568` | `Unwind@10164568` | +| `Unwind@10164570` | `10164570` | `Unwind@10164570` | +| `Unwind@10164578` | `10164578` | `Unwind@10164578` | +| `Unwind@10164580` | `10164580` | `Unwind@10164580` | +| `Unwind@10164588` | `10164588` | `Unwind@10164588` | +| `Unwind@10164590` | `10164590` | `Unwind@10164590` | +| `Unwind@10164598` | `10164598` | `Unwind@10164598` | +| `Unwind@101645a0` | `101645a0` | `Unwind@101645a0` | +| `Unwind@101645a8` | `101645a8` | `Unwind@101645a8` | +| `Unwind@101645b0` | `101645b0` | `Unwind@101645b0` | +| `Unwind@101645b8` | `101645b8` | `Unwind@101645b8` | +| `Unwind@101645c0` | `101645c0` | `Unwind@101645c0` | +| `Unwind@101645c8` | `101645c8` | `Unwind@101645c8` | +| `Unwind@101645d0` | `101645d0` | `Unwind@101645d0` | +| `Unwind@101645d8` | `101645d8` | `Unwind@101645d8` | +| `Unwind@101645e0` | `101645e0` | `Unwind@101645e0` | +| `Unwind@101645e8` | `101645e8` | `Unwind@101645e8` | +| `Unwind@10164610` | `10164610` | `Unwind@10164610` | +| `Unwind@10164618` | `10164618` | `Unwind@10164618` | +| `Unwind@10164620` | `10164620` | `Unwind@10164620` | +| `Unwind@10164628` | `10164628` | `Unwind@10164628` | +| `Unwind@10164630` | `10164630` | `Unwind@10164630` | +| `Unwind@10164638` | `10164638` | `Unwind@10164638` | +| `Unwind@10164640` | `10164640` | `Unwind@10164640` | +| `Unwind@10164648` | `10164648` | `Unwind@10164648` | +| `Unwind@10164650` | `10164650` | `Unwind@10164650` | +| `Unwind@10164658` | `10164658` | `Unwind@10164658` | +| `Unwind@10164660` | `10164660` | `Unwind@10164660` | +| `Unwind@10164668` | `10164668` | `Unwind@10164668` | +| `Unwind@10164670` | `10164670` | `Unwind@10164670` | +| `Unwind@10164678` | `10164678` | `Unwind@10164678` | +| `Unwind@101646a0` | `101646a0` | `Unwind@101646a0` | +| `Unwind@101646a8` | `101646a8` | `Unwind@101646a8` | +| `Unwind@101646b3` | `101646b3` | `Unwind@101646b3` | +| `Unwind@101646bb` | `101646bb` | `Unwind@101646bb` | +| `Unwind@101646c3` | `101646c3` | `Unwind@101646c3` | +| `Unwind@101646f0` | `101646f0` | `Unwind@101646f0` | +| `Unwind@101646f8` | `101646f8` | `Unwind@101646f8` | +| `Unwind@10164703` | `10164703` | `Unwind@10164703` | +| `Unwind@1016470b` | `1016470b` | `Unwind@1016470b` | +| `Unwind@10164713` | `10164713` | `Unwind@10164713` | +| `Unwind@10164740` | `10164740` | `Unwind@10164740` | +| `Unwind@10164748` | `10164748` | `Unwind@10164748` | +| `Unwind@10164770` | `10164770` | `Unwind@10164770` | +| `Unwind@101647a0` | `101647a0` | `Unwind@101647a0` | +| `Unwind@101647d0` | `101647d0` | `Unwind@101647d0` | +| `Unwind@101647d8` | `101647d8` | `Unwind@101647d8` | +| `Unwind@10164800` | `10164800` | `Unwind@10164800` | +| `Unwind@10164808` | `10164808` | `Unwind@10164808` | +| `Unwind@10164810` | `10164810` | `Unwind@10164810` | +| `Unwind@10164840` | `10164840` | `Unwind@10164840` | +| `Unwind@1016484b` | `1016484b` | `Unwind@1016484b` | +| `Unwind@10164853` | `10164853` | `Unwind@10164853` | +| `Unwind@1016485b` | `1016485b` | `Unwind@1016485b` | +| `Unwind@10164880` | `10164880` | `Unwind@10164880` | +| `Unwind@10164888` | `10164888` | `Unwind@10164888` | +| `Unwind@10164890` | `10164890` | `Unwind@10164890` | +| `Unwind@101648c0` | `101648c0` | `Unwind@101648c0` | +| `Unwind@101648c8` | `101648c8` | `Unwind@101648c8` | +| `Unwind@101648f0` | `101648f0` | `Unwind@101648f0` | +| `Unwind@101648fb` | `101648fb` | `Unwind@101648fb` | +| `Unwind@10164903` | `10164903` | `Unwind@10164903` | +| `Unwind@1016490b` | `1016490b` | `Unwind@1016490b` | +| `Unwind@10164930` | `10164930` | `Unwind@10164930` | +| `Unwind@10164938` | `10164938` | `Unwind@10164938` | +| `Unwind@10164940` | `10164940` | `Unwind@10164940` | +| `Unwind@10164970` | `10164970` | `Unwind@10164970` | +| `Unwind@10164978` | `10164978` | `Unwind@10164978` | +| `Unwind@10164980` | `10164980` | `Unwind@10164980` | +| `Unwind@10164988` | `10164988` | `Unwind@10164988` | +| `Unwind@101649b0` | `101649b0` | `Unwind@101649b0` | +| `Unwind@101649b8` | `101649b8` | `Unwind@101649b8` | +| `Unwind@101649c3` | `101649c3` | `Unwind@101649c3` | +| `Unwind@101649cb` | `101649cb` | `Unwind@101649cb` | +| `Unwind@101649d3` | `101649d3` | `Unwind@101649d3` | +| `Unwind@10164a00` | `10164a00` | `Unwind@10164a00` | +| `Unwind@10164a30` | `10164a30` | `Unwind@10164a30` | +| `Unwind@10164a38` | `10164a38` | `Unwind@10164a38` | +| `Unwind@10164a40` | `10164a40` | `Unwind@10164a40` | +| `Unwind@10164a70` | `10164a70` | `Unwind@10164a70` | +| `Unwind@10164a78` | `10164a78` | `Unwind@10164a78` | +| `Unwind@10164a83` | `10164a83` | `Unwind@10164a83` | +| `Unwind@10164a8b` | `10164a8b` | `Unwind@10164a8b` | +| `Unwind@10164a93` | `10164a93` | `Unwind@10164a93` | +| `Unwind@10164ac0` | `10164ac0` | `Unwind@10164ac0` | +| `Unwind@10164ac8` | `10164ac8` | `Unwind@10164ac8` | +| `Unwind@10164ad0` | `10164ad0` | `Unwind@10164ad0` | +| `Unwind@10164adb` | `10164adb` | `Unwind@10164adb` | +| `Unwind@10164b00` | `10164b00` | `Unwind@10164b00` | +| `Unwind@10164b08` | `10164b08` | `Unwind@10164b08` | +| `Unwind@10164b30` | `10164b30` | `Unwind@10164b30` | +| `Unwind@10164b3b` | `10164b3b` | `Unwind@10164b3b` | +| `Unwind@10164b46` | `10164b46` | `Unwind@10164b46` | +| `Unwind@10164b51` | `10164b51` | `Unwind@10164b51` | +| `Unwind@10164b5c` | `10164b5c` | `Unwind@10164b5c` | +| `Unwind@10164b67` | `10164b67` | `Unwind@10164b67` | +| `Unwind@10164b72` | `10164b72` | `Unwind@10164b72` | +| `Unwind@10164b7d` | `10164b7d` | `Unwind@10164b7d` | +| `Unwind@10164b85` | `10164b85` | `Unwind@10164b85` | +| `Unwind@10164b8d` | `10164b8d` | `Unwind@10164b8d` | +| `Unwind@10164b95` | `10164b95` | `Unwind@10164b95` | +| `Unwind@10164b9d` | `10164b9d` | `Unwind@10164b9d` | +| `Unwind@10164ba5` | `10164ba5` | `Unwind@10164ba5` | +| `Unwind@10164bad` | `10164bad` | `Unwind@10164bad` | +| `Unwind@10164bb5` | `10164bb5` | `Unwind@10164bb5` | +| `Unwind@10164bbd` | `10164bbd` | `Unwind@10164bbd` | +| `Unwind@10164bc5` | `10164bc5` | `Unwind@10164bc5` | +| `Unwind@10164bcd` | `10164bcd` | `Unwind@10164bcd` | +| `Unwind@10164bd5` | `10164bd5` | `Unwind@10164bd5` | +| `Unwind@10164c00` | `10164c00` | `Unwind@10164c00` | +| `Unwind@10164c08` | `10164c08` | `Unwind@10164c08` | +| `Unwind@10164c10` | `10164c10` | `Unwind@10164c10` | +| `Unwind@10164c40` | `10164c40` | `Unwind@10164c40` | +| `Unwind@10164c48` | `10164c48` | `Unwind@10164c48` | +| `Unwind@10164c50` | `10164c50` | `Unwind@10164c50` | +| `Unwind@10164c5b` | `10164c5b` | `Unwind@10164c5b` | +| `Unwind@10164c80` | `10164c80` | `Unwind@10164c80` | +| `Unwind@10164c88` | `10164c88` | `Unwind@10164c88` | +| `Unwind@10164c93` | `10164c93` | `Unwind@10164c93` | +| `Unwind@10164c9b` | `10164c9b` | `Unwind@10164c9b` | +| `Unwind@10164ca3` | `10164ca3` | `Unwind@10164ca3` | +| `Unwind@10164cd0` | `10164cd0` | `Unwind@10164cd0` | +| `Unwind@10164ce1` | `10164ce1` | `Unwind@10164ce1` | +| `Unwind@10164ce9` | `10164ce9` | `Unwind@10164ce9` | +| `Unwind@10164cf1` | `10164cf1` | `Unwind@10164cf1` | +| `Unwind@10164cfc` | `10164cfc` | `Unwind@10164cfc` | +| `Unwind@10164d20` | `10164d20` | `Unwind@10164d20` | +| `Unwind@10164d28` | `10164d28` | `Unwind@10164d28` | +| `Unwind@10164d30` | `10164d30` | `Unwind@10164d30` | +| `Unwind@10164d3b` | `10164d3b` | `Unwind@10164d3b` | +| `Unwind@10164d43` | `10164d43` | `Unwind@10164d43` | +| `Unwind@10164d4b` | `10164d4b` | `Unwind@10164d4b` | +| `Unwind@10164d56` | `10164d56` | `Unwind@10164d56` | +| `Unwind@10164d5e` | `10164d5e` | `Unwind@10164d5e` | +| `Unwind@10164d66` | `10164d66` | `Unwind@10164d66` | +| `Unwind@10164d71` | `10164d71` | `Unwind@10164d71` | +| `Unwind@10164d79` | `10164d79` | `Unwind@10164d79` | +| `Unwind@10164d81` | `10164d81` | `Unwind@10164d81` | +| `Unwind@10164d8c` | `10164d8c` | `Unwind@10164d8c` | +| `Unwind@10164d94` | `10164d94` | `Unwind@10164d94` | +| `Unwind@10164d9c` | `10164d9c` | `Unwind@10164d9c` | +| `Unwind@10164da7` | `10164da7` | `Unwind@10164da7` | +| `Unwind@10164daf` | `10164daf` | `Unwind@10164daf` | +| `Unwind@10164db7` | `10164db7` | `Unwind@10164db7` | +| `Unwind@10164dc2` | `10164dc2` | `Unwind@10164dc2` | +| `Unwind@10164dcd` | `10164dcd` | `Unwind@10164dcd` | +| `Unwind@10164dd6` | `10164dd6` | `Unwind@10164dd6` | +| `Unwind@10164ddf` | `10164ddf` | `Unwind@10164ddf` | +| `Unwind@10164de8` | `10164de8` | `Unwind@10164de8` | +| `Unwind@10164df1` | `10164df1` | `Unwind@10164df1` | +| `Unwind@10164dfa` | `10164dfa` | `Unwind@10164dfa` | +| `Unwind@10164e20` | `10164e20` | `Unwind@10164e20` | +| `Unwind@10164e28` | `10164e28` | `Unwind@10164e28` | +| `Unwind@10164e30` | `10164e30` | `Unwind@10164e30` | +| `Unwind@10164e3b` | `10164e3b` | `Unwind@10164e3b` | +| `Unwind@10164e43` | `10164e43` | `Unwind@10164e43` | +| `Unwind@10164e80` | `10164e80` | `Unwind@10164e80` | +| `Unwind@10164e88` | `10164e88` | `Unwind@10164e88` | +| `Unwind@10164e93` | `10164e93` | `Unwind@10164e93` | +| `Unwind@10164e9b` | `10164e9b` | `Unwind@10164e9b` | +| `Unwind@10164ea3` | `10164ea3` | `Unwind@10164ea3` | +| `Unwind@10164ed0` | `10164ed0` | `Unwind@10164ed0` | +| `Unwind@10164ee1` | `10164ee1` | `Unwind@10164ee1` | +| `Unwind@10164ee9` | `10164ee9` | `Unwind@10164ee9` | +| `Unwind@10164ef1` | `10164ef1` | `Unwind@10164ef1` | +| `Unwind@10164efc` | `10164efc` | `Unwind@10164efc` | +| `Unwind@10164f20` | `10164f20` | `Unwind@10164f20` | +| `Unwind@10164f28` | `10164f28` | `Unwind@10164f28` | +| `Unwind@10164f33` | `10164f33` | `Unwind@10164f33` | +| `Unwind@10164f3b` | `10164f3b` | `Unwind@10164f3b` | +| `Unwind@10164f43` | `10164f43` | `Unwind@10164f43` | +| `Unwind@10164f70` | `10164f70` | `Unwind@10164f70` | +| `Unwind@10164fa0` | `10164fa0` | `Unwind@10164fa0` | +| `Unwind@10164fa8` | `10164fa8` | `Unwind@10164fa8` | +| `Unwind@10164fb3` | `10164fb3` | `Unwind@10164fb3` | +| `Unwind@10164fbb` | `10164fbb` | `Unwind@10164fbb` | +| `Unwind@10164fc3` | `10164fc3` | `Unwind@10164fc3` | +| `Unwind@10164ff0` | `10164ff0` | `Unwind@10164ff0` | +| `Unwind@10164ff8` | `10164ff8` | `Unwind@10164ff8` | +| `Unwind@10165003` | `10165003` | `Unwind@10165003` | +| `Unwind@1016500b` | `1016500b` | `Unwind@1016500b` | +| `Unwind@10165013` | `10165013` | `Unwind@10165013` | +| `Unwind@10165040` | `10165040` | `Unwind@10165040` | +| `Unwind@10165048` | `10165048` | `Unwind@10165048` | +| `Unwind@10165053` | `10165053` | `Unwind@10165053` | +| `Unwind@1016505b` | `1016505b` | `Unwind@1016505b` | +| `Unwind@10165063` | `10165063` | `Unwind@10165063` | +| `Unwind@10165090` | `10165090` | `Unwind@10165090` | +| `Unwind@10165098` | `10165098` | `Unwind@10165098` | +| `Unwind@101650a3` | `101650a3` | `Unwind@101650a3` | +| `Unwind@101650ab` | `101650ab` | `Unwind@101650ab` | +| `Unwind@101650b3` | `101650b3` | `Unwind@101650b3` | +| `Unwind@101650e0` | `101650e0` | `Unwind@101650e0` | +| `Unwind@101650e8` | `101650e8` | `Unwind@101650e8` | +| `Unwind@101650f0` | `101650f0` | `Unwind@101650f0` | +| `Unwind@101650f8` | `101650f8` | `Unwind@101650f8` | +| `Unwind@10165100` | `10165100` | `Unwind@10165100` | +| `Unwind@10165108` | `10165108` | `Unwind@10165108` | +| `Unwind@10165110` | `10165110` | `Unwind@10165110` | +| `Unwind@10165118` | `10165118` | `Unwind@10165118` | +| `Unwind@10165120` | `10165120` | `Unwind@10165120` | +| `Unwind@10165128` | `10165128` | `Unwind@10165128` | +| `Unwind@10165130` | `10165130` | `Unwind@10165130` | +| `Unwind@10165138` | `10165138` | `Unwind@10165138` | +| `Unwind@10165140` | `10165140` | `Unwind@10165140` | +| `Unwind@10165148` | `10165148` | `Unwind@10165148` | +| `Unwind@10165170` | `10165170` | `Unwind@10165170` | +| `Unwind@101651a0` | `101651a0` | `Unwind@101651a0` | +| `Unwind@101651a8` | `101651a8` | `Unwind@101651a8` | +| `Unwind@101651d0` | `101651d0` | `Unwind@101651d0` | +| `Unwind@101651d8` | `101651d8` | `Unwind@101651d8` | +| `Unwind@101651e0` | `101651e0` | `Unwind@101651e0` | +| `Unwind@10165210` | `10165210` | `Unwind@10165210` | +| `Unwind@10165218` | `10165218` | `Unwind@10165218` | +| `Unwind@10165220` | `10165220` | `Unwind@10165220` | +| `Unwind@1016522b` | `1016522b` | `Unwind@1016522b` | +| `Unwind@10165250` | `10165250` | `Unwind@10165250` | +| `Unwind@1016525b` | `1016525b` | `Unwind@1016525b` | +| `Unwind@10165263` | `10165263` | `Unwind@10165263` | +| `Unwind@10165290` | `10165290` | `Unwind@10165290` | +| `Unwind@1016529e` | `1016529e` | `Unwind@1016529e` | +| `Unwind@101652ac` | `101652ac` | `Unwind@101652ac` | +| `Unwind@101652ba` | `101652ba` | `Unwind@101652ba` | +| `Unwind@101652c8` | `101652c8` | `Unwind@101652c8` | +| `Unwind@101652d6` | `101652d6` | `Unwind@101652d6` | +| `Unwind@101652e4` | `101652e4` | `Unwind@101652e4` | +| `Unwind@101652f2` | `101652f2` | `Unwind@101652f2` | +| `Unwind@10165300` | `10165300` | `Unwind@10165300` | +| `Unwind@1016530e` | `1016530e` | `Unwind@1016530e` | +| `Unwind@1016531c` | `1016531c` | `Unwind@1016531c` | +| `Unwind@1016532a` | `1016532a` | `Unwind@1016532a` | +| `Unwind@10165338` | `10165338` | `Unwind@10165338` | +| `Unwind@10165346` | `10165346` | `Unwind@10165346` | +| `Unwind@10165354` | `10165354` | `Unwind@10165354` | +| `Unwind@10165362` | `10165362` | `Unwind@10165362` | +| `Unwind@10165370` | `10165370` | `Unwind@10165370` | +| `Unwind@1016537e` | `1016537e` | `Unwind@1016537e` | +| `Unwind@1016538c` | `1016538c` | `Unwind@1016538c` | +| `Unwind@1016539a` | `1016539a` | `Unwind@1016539a` | +| `Unwind@101653a8` | `101653a8` | `Unwind@101653a8` | +| `Unwind@101653b6` | `101653b6` | `Unwind@101653b6` | +| `Unwind@101653c4` | `101653c4` | `Unwind@101653c4` | +| `Unwind@101653d2` | `101653d2` | `Unwind@101653d2` | +| `Unwind@101653e0` | `101653e0` | `Unwind@101653e0` | +| `Unwind@101653ee` | `101653ee` | `Unwind@101653ee` | +| `Unwind@101653fc` | `101653fc` | `Unwind@101653fc` | +| `Unwind@1016540a` | `1016540a` | `Unwind@1016540a` | +| `Unwind@10165418` | `10165418` | `Unwind@10165418` | +| `Unwind@10165426` | `10165426` | `Unwind@10165426` | +| `Unwind@10165434` | `10165434` | `Unwind@10165434` | +| `Unwind@10165442` | `10165442` | `Unwind@10165442` | +| `Unwind@10165450` | `10165450` | `Unwind@10165450` | +| `Unwind@1016545e` | `1016545e` | `Unwind@1016545e` | +| `Unwind@1016546c` | `1016546c` | `Unwind@1016546c` | +| `Unwind@1016547a` | `1016547a` | `Unwind@1016547a` | +| `Unwind@10165488` | `10165488` | `Unwind@10165488` | +| `Unwind@10165496` | `10165496` | `Unwind@10165496` | +| `Unwind@101654a4` | `101654a4` | `Unwind@101654a4` | +| `Unwind@101654b2` | `101654b2` | `Unwind@101654b2` | +| `Unwind@101654c0` | `101654c0` | `Unwind@101654c0` | +| `Unwind@101654ce` | `101654ce` | `Unwind@101654ce` | +| `Unwind@101654dc` | `101654dc` | `Unwind@101654dc` | +| `Unwind@101654ea` | `101654ea` | `Unwind@101654ea` | +| `Unwind@101654f8` | `101654f8` | `Unwind@101654f8` | +| `Unwind@10165506` | `10165506` | `Unwind@10165506` | +| `Unwind@10165514` | `10165514` | `Unwind@10165514` | +| `Unwind@10165522` | `10165522` | `Unwind@10165522` | +| `Unwind@10165530` | `10165530` | `Unwind@10165530` | +| `Unwind@1016553e` | `1016553e` | `Unwind@1016553e` | +| `Unwind@1016554c` | `1016554c` | `Unwind@1016554c` | +| `Unwind@1016555a` | `1016555a` | `Unwind@1016555a` | +| `Unwind@10165568` | `10165568` | `Unwind@10165568` | +| `Unwind@10165576` | `10165576` | `Unwind@10165576` | +| `Unwind@10165584` | `10165584` | `Unwind@10165584` | +| `Unwind@10165592` | `10165592` | `Unwind@10165592` | +| `Unwind@101655a0` | `101655a0` | `Unwind@101655a0` | +| `Unwind@101655ae` | `101655ae` | `Unwind@101655ae` | +| `Unwind@101655bc` | `101655bc` | `Unwind@101655bc` | +| `Unwind@101655ca` | `101655ca` | `Unwind@101655ca` | +| `Unwind@101655d8` | `101655d8` | `Unwind@101655d8` | +| `Unwind@101655e6` | `101655e6` | `Unwind@101655e6` | +| `Unwind@101655f4` | `101655f4` | `Unwind@101655f4` | +| `Unwind@10165602` | `10165602` | `Unwind@10165602` | +| `Unwind@10165610` | `10165610` | `Unwind@10165610` | +| `Unwind@1016561e` | `1016561e` | `Unwind@1016561e` | +| `Unwind@1016562c` | `1016562c` | `Unwind@1016562c` | +| `Unwind@1016563a` | `1016563a` | `Unwind@1016563a` | +| `Unwind@10165642` | `10165642` | `Unwind@10165642` | +| `Unwind@10165650` | `10165650` | `Unwind@10165650` | +| `Unwind@1016565e` | `1016565e` | `Unwind@1016565e` | +| `Unwind@10165666` | `10165666` | `Unwind@10165666` | +| `Unwind@10165674` | `10165674` | `Unwind@10165674` | +| `Unwind@10165682` | `10165682` | `Unwind@10165682` | +| `Unwind@10165690` | `10165690` | `Unwind@10165690` | +| `Unwind@1016569e` | `1016569e` | `Unwind@1016569e` | +| `Unwind@101656ac` | `101656ac` | `Unwind@101656ac` | +| `Unwind@101656b4` | `101656b4` | `Unwind@101656b4` | +| `Unwind@101656bc` | `101656bc` | `Unwind@101656bc` | +| `Unwind@101656c4` | `101656c4` | `Unwind@101656c4` | +| `Unwind@101656cc` | `101656cc` | `Unwind@101656cc` | +| `Unwind@101656d4` | `101656d4` | `Unwind@101656d4` | +| `Unwind@101656dc` | `101656dc` | `Unwind@101656dc` | +| `Unwind@101656e4` | `101656e4` | `Unwind@101656e4` | +| `Unwind@101656ec` | `101656ec` | `Unwind@101656ec` | +| `Unwind@101656f4` | `101656f4` | `Unwind@101656f4` | +| `Unwind@101656fc` | `101656fc` | `Unwind@101656fc` | +| `Unwind@10165704` | `10165704` | `Unwind@10165704` | +| `Unwind@1016570c` | `1016570c` | `Unwind@1016570c` | +| `Unwind@10165714` | `10165714` | `Unwind@10165714` | +| `Unwind@1016571c` | `1016571c` | `Unwind@1016571c` | +| `Unwind@10165724` | `10165724` | `Unwind@10165724` | +| `Unwind@1016572c` | `1016572c` | `Unwind@1016572c` | +| `Unwind@10165734` | `10165734` | `Unwind@10165734` | +| `Unwind@1016573c` | `1016573c` | `Unwind@1016573c` | +| `Unwind@10165744` | `10165744` | `Unwind@10165744` | +| `Unwind@1016574c` | `1016574c` | `Unwind@1016574c` | +| `Unwind@10165754` | `10165754` | `Unwind@10165754` | +| `Unwind@1016575c` | `1016575c` | `Unwind@1016575c` | +| `Unwind@10165764` | `10165764` | `Unwind@10165764` | +| `Unwind@1016576c` | `1016576c` | `Unwind@1016576c` | +| `Unwind@10165774` | `10165774` | `Unwind@10165774` | +| `Unwind@1016577c` | `1016577c` | `Unwind@1016577c` | +| `Unwind@10165784` | `10165784` | `Unwind@10165784` | +| `Unwind@1016578c` | `1016578c` | `Unwind@1016578c` | +| `Unwind@10165794` | `10165794` | `Unwind@10165794` | +| `Unwind@1016579c` | `1016579c` | `Unwind@1016579c` | +| `Unwind@101657a7` | `101657a7` | `Unwind@101657a7` | +| `Unwind@101657af` | `101657af` | `Unwind@101657af` | +| `Unwind@101657b7` | `101657b7` | `Unwind@101657b7` | +| `Unwind@101657bf` | `101657bf` | `Unwind@101657bf` | +| `Unwind@101657c7` | `101657c7` | `Unwind@101657c7` | +| `Unwind@101657cf` | `101657cf` | `Unwind@101657cf` | +| `Unwind@101657d7` | `101657d7` | `Unwind@101657d7` | +| `Unwind@101657df` | `101657df` | `Unwind@101657df` | +| `Unwind@101657ea` | `101657ea` | `Unwind@101657ea` | +| `Unwind@101657f2` | `101657f2` | `Unwind@101657f2` | +| `Unwind@101657fa` | `101657fa` | `Unwind@101657fa` | +| `Unwind@10165802` | `10165802` | `Unwind@10165802` | +| `Unwind@1016580a` | `1016580a` | `Unwind@1016580a` | +| `Unwind@10165812` | `10165812` | `Unwind@10165812` | +| `Unwind@1016581a` | `1016581a` | `Unwind@1016581a` | +| `Unwind@10165825` | `10165825` | `Unwind@10165825` | +| `Unwind@1016582d` | `1016582d` | `Unwind@1016582d` | +| `Unwind@10165835` | `10165835` | `Unwind@10165835` | +| `Unwind@1016583e` | `1016583e` | `Unwind@1016583e` | +| `Unwind@10165846` | `10165846` | `Unwind@10165846` | +| `Unwind@1016584e` | `1016584e` | `Unwind@1016584e` | +| `Unwind@10165856` | `10165856` | `Unwind@10165856` | +| `Unwind@1016585e` | `1016585e` | `Unwind@1016585e` | +| `Unwind@10165866` | `10165866` | `Unwind@10165866` | +| `Unwind@1016586e` | `1016586e` | `Unwind@1016586e` | +| `Unwind@10165876` | `10165876` | `Unwind@10165876` | +| `Unwind@10165881` | `10165881` | `Unwind@10165881` | +| `Unwind@1016588c` | `1016588c` | `Unwind@1016588c` | +| `Unwind@10165894` | `10165894` | `Unwind@10165894` | +| `Unwind@1016589c` | `1016589c` | `Unwind@1016589c` | +| `Unwind@101658a4` | `101658a4` | `Unwind@101658a4` | +| `Unwind@101658ac` | `101658ac` | `Unwind@101658ac` | +| `Unwind@101658b4` | `101658b4` | `Unwind@101658b4` | +| `Unwind@101658bc` | `101658bc` | `Unwind@101658bc` | +| `Unwind@101658c4` | `101658c4` | `Unwind@101658c4` | +| `Unwind@101658cc` | `101658cc` | `Unwind@101658cc` | +| `Unwind@101658d4` | `101658d4` | `Unwind@101658d4` | +| `Unwind@101658dc` | `101658dc` | `Unwind@101658dc` | +| `Unwind@101658e4` | `101658e4` | `Unwind@101658e4` | +| `Unwind@101658ec` | `101658ec` | `Unwind@101658ec` | +| `Unwind@101658f5` | `101658f5` | `Unwind@101658f5` | +| `Unwind@101658fd` | `101658fd` | `Unwind@101658fd` | +| `Unwind@10165905` | `10165905` | `Unwind@10165905` | +| `Unwind@1016590d` | `1016590d` | `Unwind@1016590d` | +| `Unwind@10165915` | `10165915` | `Unwind@10165915` | +| `Unwind@1016591d` | `1016591d` | `Unwind@1016591d` | +| `Unwind@10165925` | `10165925` | `Unwind@10165925` | +| `Unwind@1016592d` | `1016592d` | `Unwind@1016592d` | +| `Unwind@10165935` | `10165935` | `Unwind@10165935` | +| `Unwind@1016593d` | `1016593d` | `Unwind@1016593d` | +| `Unwind@10165945` | `10165945` | `Unwind@10165945` | +| `Unwind@1016594d` | `1016594d` | `Unwind@1016594d` | +| `Unwind@10165955` | `10165955` | `Unwind@10165955` | +| `Unwind@1016595d` | `1016595d` | `Unwind@1016595d` | +| `Unwind@10165965` | `10165965` | `Unwind@10165965` | +| `Unwind@1016596d` | `1016596d` | `Unwind@1016596d` | +| `Unwind@10165975` | `10165975` | `Unwind@10165975` | +| `Unwind@1016597d` | `1016597d` | `Unwind@1016597d` | +| `Unwind@10165985` | `10165985` | `Unwind@10165985` | +| `Unwind@1016598d` | `1016598d` | `Unwind@1016598d` | +| `Unwind@10165995` | `10165995` | `Unwind@10165995` | +| `Unwind@1016599d` | `1016599d` | `Unwind@1016599d` | +| `Unwind@101659a5` | `101659a5` | `Unwind@101659a5` | +| `Unwind@101659ad` | `101659ad` | `Unwind@101659ad` | +| `Unwind@101659b5` | `101659b5` | `Unwind@101659b5` | +| `Unwind@101659bd` | `101659bd` | `Unwind@101659bd` | +| `Unwind@101659c8` | `101659c8` | `Unwind@101659c8` | +| `Unwind@101659d0` | `101659d0` | `Unwind@101659d0` | +| `Unwind@101659d8` | `101659d8` | `Unwind@101659d8` | +| `Unwind@101659e3` | `101659e3` | `Unwind@101659e3` | +| `Unwind@101659eb` | `101659eb` | `Unwind@101659eb` | +| `Unwind@101659f3` | `101659f3` | `Unwind@101659f3` | +| `Unwind@101659fb` | `101659fb` | `Unwind@101659fb` | +| `Unwind@10165a03` | `10165a03` | `Unwind@10165a03` | +| `Unwind@10165a0b` | `10165a0b` | `Unwind@10165a0b` | +| `Unwind@10165a30` | `10165a30` | `Unwind@10165a30` | +| `Unwind@10165a41` | `10165a41` | `Unwind@10165a41` | +| `Unwind@10165a4c` | `10165a4c` | `Unwind@10165a4c` | +| `Unwind@10165a57` | `10165a57` | `Unwind@10165a57` | +| `Unwind@10165a68` | `10165a68` | `Unwind@10165a68` | +| `Unwind@10165a73` | `10165a73` | `Unwind@10165a73` | +| `Unwind@10165a7e` | `10165a7e` | `Unwind@10165a7e` | +| `Unwind@10165a8f` | `10165a8f` | `Unwind@10165a8f` | +| `Unwind@10165a9a` | `10165a9a` | `Unwind@10165a9a` | +| `Unwind@10165aa5` | `10165aa5` | `Unwind@10165aa5` | +| `Unwind@10165ab3` | `10165ab3` | `Unwind@10165ab3` | +| `Unwind@10165ac4` | `10165ac4` | `Unwind@10165ac4` | +| `Unwind@10165acf` | `10165acf` | `Unwind@10165acf` | +| `Unwind@10165ada` | `10165ada` | `Unwind@10165ada` | +| `Unwind@10165ae8` | `10165ae8` | `Unwind@10165ae8` | +| `Unwind@10165af9` | `10165af9` | `Unwind@10165af9` | +| `Unwind@10165b04` | `10165b04` | `Unwind@10165b04` | +| `Unwind@10165b0f` | `10165b0f` | `Unwind@10165b0f` | +| `Unwind@10165b20` | `10165b20` | `Unwind@10165b20` | +| `Unwind@10165b2b` | `10165b2b` | `Unwind@10165b2b` | +| `Unwind@10165b36` | `10165b36` | `Unwind@10165b36` | +| `Unwind@10165b47` | `10165b47` | `Unwind@10165b47` | +| `Unwind@10165b52` | `10165b52` | `Unwind@10165b52` | +| `Unwind@10165b5d` | `10165b5d` | `Unwind@10165b5d` | +| `Unwind@10165b68` | `10165b68` | `Unwind@10165b68` | +| `Unwind@10165b79` | `10165b79` | `Unwind@10165b79` | +| `Unwind@10165b84` | `10165b84` | `Unwind@10165b84` | +| `Unwind@10165b8f` | `10165b8f` | `Unwind@10165b8f` | +| `Unwind@10165ba0` | `10165ba0` | `Unwind@10165ba0` | +| `Unwind@10165bab` | `10165bab` | `Unwind@10165bab` | +| `Unwind@10165bb6` | `10165bb6` | `Unwind@10165bb6` | +| `Unwind@10165bc1` | `10165bc1` | `Unwind@10165bc1` | +| `Unwind@10165bd2` | `10165bd2` | `Unwind@10165bd2` | +| `Unwind@10165be3` | `10165be3` | `Unwind@10165be3` | +| `Unwind@10165bee` | `10165bee` | `Unwind@10165bee` | +| `Unwind@10165bf9` | `10165bf9` | `Unwind@10165bf9` | +| `Unwind@10165c04` | `10165c04` | `Unwind@10165c04` | +| `Unwind@10165c15` | `10165c15` | `Unwind@10165c15` | +| `Unwind@10165c20` | `10165c20` | `Unwind@10165c20` | +| `Unwind@10165c2b` | `10165c2b` | `Unwind@10165c2b` | +| `Unwind@10165c36` | `10165c36` | `Unwind@10165c36` | +| `Unwind@10165c47` | `10165c47` | `Unwind@10165c47` | +| `Unwind@10165c52` | `10165c52` | `Unwind@10165c52` | +| `Unwind@10165c5d` | `10165c5d` | `Unwind@10165c5d` | +| `Unwind@10165c68` | `10165c68` | `Unwind@10165c68` | +| `Unwind@10165c79` | `10165c79` | `Unwind@10165c79` | +| `Unwind@10165c84` | `10165c84` | `Unwind@10165c84` | +| `Unwind@10165c8f` | `10165c8f` | `Unwind@10165c8f` | +| `Unwind@10165ca0` | `10165ca0` | `Unwind@10165ca0` | +| `Unwind@10165cab` | `10165cab` | `Unwind@10165cab` | +| `Unwind@10165cb6` | `10165cb6` | `Unwind@10165cb6` | +| `Unwind@10165cc7` | `10165cc7` | `Unwind@10165cc7` | +| `Unwind@10165cd2` | `10165cd2` | `Unwind@10165cd2` | +| `Unwind@10165ce3` | `10165ce3` | `Unwind@10165ce3` | +| `Unwind@10165cee` | `10165cee` | `Unwind@10165cee` | +| `Unwind@10165cf9` | `10165cf9` | `Unwind@10165cf9` | +| `Unwind@10165d0a` | `10165d0a` | `Unwind@10165d0a` | +| `Unwind@10165d16` | `10165d16` | `Unwind@10165d16` | +| `Unwind@10165d2d` | `10165d2d` | `Unwind@10165d2d` | +| `Unwind@10165d38` | `10165d38` | `Unwind@10165d38` | +| `Unwind@10165d43` | `10165d43` | `Unwind@10165d43` | +| `Unwind@10165d54` | `10165d54` | `Unwind@10165d54` | +| `Unwind@10165d5f` | `10165d5f` | `Unwind@10165d5f` | +| `Unwind@10165d6a` | `10165d6a` | `Unwind@10165d6a` | +| `Unwind@10165d7b` | `10165d7b` | `Unwind@10165d7b` | +| `Unwind@10165d86` | `10165d86` | `Unwind@10165d86` | +| `Unwind@10165d97` | `10165d97` | `Unwind@10165d97` | +| `Unwind@10165da2` | `10165da2` | `Unwind@10165da2` | +| `Unwind@10165dad` | `10165dad` | `Unwind@10165dad` | +| `Unwind@10165dbe` | `10165dbe` | `Unwind@10165dbe` | +| `Unwind@10165dc9` | `10165dc9` | `Unwind@10165dc9` | +| `Unwind@10165dd4` | `10165dd4` | `Unwind@10165dd4` | +| `Unwind@10165de5` | `10165de5` | `Unwind@10165de5` | +| `Unwind@10165df0` | `10165df0` | `Unwind@10165df0` | +| `Unwind@10165dfb` | `10165dfb` | `Unwind@10165dfb` | +| `Unwind@10165e06` | `10165e06` | `Unwind@10165e06` | +| `Unwind@10165e14` | `10165e14` | `Unwind@10165e14` | +| `Unwind@10165e1f` | `10165e1f` | `Unwind@10165e1f` | +| `Unwind@10165e2d` | `10165e2d` | `Unwind@10165e2d` | +| `Unwind@10165e3e` | `10165e3e` | `Unwind@10165e3e` | +| `Unwind@10165e49` | `10165e49` | `Unwind@10165e49` | +| `Unwind@10165e54` | `10165e54` | `Unwind@10165e54` | +| `Unwind@10165e5f` | `10165e5f` | `Unwind@10165e5f` | +| `Unwind@10165e70` | `10165e70` | `Unwind@10165e70` | +| `Unwind@10165e7b` | `10165e7b` | `Unwind@10165e7b` | +| `Unwind@10165e86` | `10165e86` | `Unwind@10165e86` | +| `Unwind@10165e91` | `10165e91` | `Unwind@10165e91` | +| `Unwind@10165ea2` | `10165ea2` | `Unwind@10165ea2` | +| `Unwind@10165eb3` | `10165eb3` | `Unwind@10165eb3` | +| `Unwind@10165ec4` | `10165ec4` | `Unwind@10165ec4` | +| `Unwind@10165ed5` | `10165ed5` | `Unwind@10165ed5` | +| `Unwind@10165ee0` | `10165ee0` | `Unwind@10165ee0` | +| `Unwind@10165eeb` | `10165eeb` | `Unwind@10165eeb` | +| `Unwind@10165efc` | `10165efc` | `Unwind@10165efc` | +| `Unwind@10165f07` | `10165f07` | `Unwind@10165f07` | +| `Unwind@10165f12` | `10165f12` | `Unwind@10165f12` | +| `Unwind@10165f23` | `10165f23` | `Unwind@10165f23` | +| `Unwind@10165f34` | `10165f34` | `Unwind@10165f34` | +| `Unwind@10165f45` | `10165f45` | `Unwind@10165f45` | +| `Unwind@10165f50` | `10165f50` | `Unwind@10165f50` | +| `Unwind@10165f61` | `10165f61` | `Unwind@10165f61` | +| `Unwind@10165f72` | `10165f72` | `Unwind@10165f72` | +| `Unwind@10165f83` | `10165f83` | `Unwind@10165f83` | +| `Unwind@10165f94` | `10165f94` | `Unwind@10165f94` | +| `Unwind@10165fa5` | `10165fa5` | `Unwind@10165fa5` | +| `Unwind@10165fb6` | `10165fb6` | `Unwind@10165fb6` | +| `Unwind@10165fc7` | `10165fc7` | `Unwind@10165fc7` | +| `Unwind@10165fd8` | `10165fd8` | `Unwind@10165fd8` | +| `Unwind@10165fe9` | `10165fe9` | `Unwind@10165fe9` | +| `Unwind@10165ffa` | `10165ffa` | `Unwind@10165ffa` | +| `Unwind@1016600b` | `1016600b` | `Unwind@1016600b` | +| `Unwind@10166016` | `10166016` | `Unwind@10166016` | +| `Unwind@10166027` | `10166027` | `Unwind@10166027` | +| `Unwind@10166038` | `10166038` | `Unwind@10166038` | +| `Unwind@10166049` | `10166049` | `Unwind@10166049` | +| `Unwind@1016605a` | `1016605a` | `Unwind@1016605a` | +| `Unwind@1016606b` | `1016606b` | `Unwind@1016606b` | +| `Unwind@10166076` | `10166076` | `Unwind@10166076` | +| `Unwind@10166087` | `10166087` | `Unwind@10166087` | +| `Unwind@10166098` | `10166098` | `Unwind@10166098` | +| `Unwind@101660a3` | `101660a3` | `Unwind@101660a3` | +| `Unwind@101660b4` | `101660b4` | `Unwind@101660b4` | +| `Unwind@101660c5` | `101660c5` | `Unwind@101660c5` | +| `Unwind@101660d0` | `101660d0` | `Unwind@101660d0` | +| `Unwind@101660e1` | `101660e1` | `Unwind@101660e1` | +| `Unwind@101660f2` | `101660f2` | `Unwind@101660f2` | +| `Unwind@10166103` | `10166103` | `Unwind@10166103` | +| `Unwind@10166114` | `10166114` | `Unwind@10166114` | +| `Unwind@10166125` | `10166125` | `Unwind@10166125` | +| `Unwind@10166136` | `10166136` | `Unwind@10166136` | +| `Unwind@10166141` | `10166141` | `Unwind@10166141` | +| `Unwind@10166152` | `10166152` | `Unwind@10166152` | +| `Unwind@10166163` | `10166163` | `Unwind@10166163` | +| `Unwind@10166174` | `10166174` | `Unwind@10166174` | +| `Unwind@10166185` | `10166185` | `Unwind@10166185` | +| `Unwind@10166196` | `10166196` | `Unwind@10166196` | +| `Unwind@101661a1` | `101661a1` | `Unwind@101661a1` | +| `Unwind@101661ac` | `101661ac` | `Unwind@101661ac` | +| `Unwind@101661b7` | `101661b7` | `Unwind@101661b7` | +| `Unwind@101661c3` | `101661c3` | `Unwind@101661c3` | +| `Unwind@101661cf` | `101661cf` | `Unwind@101661cf` | +| `Unwind@101661db` | `101661db` | `Unwind@101661db` | +| `Unwind@101661e7` | `101661e7` | `Unwind@101661e7` | +| `Unwind@101661f3` | `101661f3` | `Unwind@101661f3` | +| `Unwind@101661ff` | `101661ff` | `Unwind@101661ff` | +| `Unwind@1016620b` | `1016620b` | `Unwind@1016620b` | +| `Unwind@10166217` | `10166217` | `Unwind@10166217` | +| `Unwind@10166223` | `10166223` | `Unwind@10166223` | +| `Unwind@1016622f` | `1016622f` | `Unwind@1016622f` | +| `Unwind@1016623b` | `1016623b` | `Unwind@1016623b` | +| `Unwind@10166247` | `10166247` | `Unwind@10166247` | +| `Unwind@10166253` | `10166253` | `Unwind@10166253` | +| `Unwind@1016625f` | `1016625f` | `Unwind@1016625f` | +| `Unwind@1016626b` | `1016626b` | `Unwind@1016626b` | +| `Unwind@10166277` | `10166277` | `Unwind@10166277` | +| `Unwind@10166283` | `10166283` | `Unwind@10166283` | +| `Unwind@1016628f` | `1016628f` | `Unwind@1016628f` | +| `Unwind@1016629b` | `1016629b` | `Unwind@1016629b` | +| `Unwind@101662a7` | `101662a7` | `Unwind@101662a7` | +| `Unwind@101662b3` | `101662b3` | `Unwind@101662b3` | +| `Unwind@101662bf` | `101662bf` | `Unwind@101662bf` | +| `Unwind@101662cb` | `101662cb` | `Unwind@101662cb` | +| `Unwind@101662d7` | `101662d7` | `Unwind@101662d7` | +| `Unwind@101662e3` | `101662e3` | `Unwind@101662e3` | +| `Unwind@10166320` | `10166320` | `Unwind@10166320` | +| `Unwind@10166350` | `10166350` | `Unwind@10166350` | +| `Unwind@1016635a` | `1016635a` | `Unwind@1016635a` | +| `Unwind@10166364` | `10166364` | `Unwind@10166364` | +| `Unwind@10166390` | `10166390` | `Unwind@10166390` | +| `Unwind@1016639a` | `1016639a` | `Unwind@1016639a` | +| `Unwind@101663a4` | `101663a4` | `Unwind@101663a4` | +| `Unwind@101663d0` | `101663d0` | `Unwind@101663d0` | +| `Unwind@10166400` | `10166400` | `Unwind@10166400` | +| `Unwind@1016640a` | `1016640a` | `Unwind@1016640a` | +| `Unwind@10166414` | `10166414` | `Unwind@10166414` | +| `Unwind@10166440` | `10166440` | `Unwind@10166440` | +| `Unwind@1016644a` | `1016644a` | `Unwind@1016644a` | +| `Unwind@10166470` | `10166470` | `Unwind@10166470` | +| `Unwind@10166478` | `10166478` | `Unwind@10166478` | +| `Unwind@10166480` | `10166480` | `Unwind@10166480` | +| `Unwind@10166488` | `10166488` | `Unwind@10166488` | +| `Unwind@10166496` | `10166496` | `Unwind@10166496` | +| `Unwind@101664a4` | `101664a4` | `Unwind@101664a4` | +| `Unwind@101664b2` | `101664b2` | `Unwind@101664b2` | +| `Unwind@101664c0` | `101664c0` | `Unwind@101664c0` | +| `Unwind@101664ce` | `101664ce` | `Unwind@101664ce` | +| `Unwind@101664dc` | `101664dc` | `Unwind@101664dc` | +| `Unwind@101664ea` | `101664ea` | `Unwind@101664ea` | +| `Unwind@101664f8` | `101664f8` | `Unwind@101664f8` | +| `Unwind@10166506` | `10166506` | `Unwind@10166506` | +| `Unwind@10166514` | `10166514` | `Unwind@10166514` | +| `Unwind@10166522` | `10166522` | `Unwind@10166522` | +| `Unwind@10166530` | `10166530` | `Unwind@10166530` | +| `Unwind@10166560` | `10166560` | `Unwind@10166560` | +| `Unwind@10166568` | `10166568` | `Unwind@10166568` | +| `Unwind@10166570` | `10166570` | `Unwind@10166570` | +| `Unwind@10166578` | `10166578` | `Unwind@10166578` | +| `Unwind@10166580` | `10166580` | `Unwind@10166580` | +| `Unwind@10166588` | `10166588` | `Unwind@10166588` | +| `Unwind@10166590` | `10166590` | `Unwind@10166590` | +| `Unwind@10166598` | `10166598` | `Unwind@10166598` | +| `Unwind@101665a0` | `101665a0` | `Unwind@101665a0` | +| `Unwind@101665a8` | `101665a8` | `Unwind@101665a8` | +| `Unwind@101665b0` | `101665b0` | `Unwind@101665b0` | +| `Unwind@101665b8` | `101665b8` | `Unwind@101665b8` | +| `Unwind@101665c0` | `101665c0` | `Unwind@101665c0` | +| `Unwind@101665c8` | `101665c8` | `Unwind@101665c8` | +| `Unwind@101665d0` | `101665d0` | `Unwind@101665d0` | +| `Unwind@101665d8` | `101665d8` | `Unwind@101665d8` | +| `Unwind@101665e0` | `101665e0` | `Unwind@101665e0` | +| `Unwind@101665e8` | `101665e8` | `Unwind@101665e8` | +| `Unwind@101665f0` | `101665f0` | `Unwind@101665f0` | +| `Unwind@10166620` | `10166620` | `Unwind@10166620` | +| `Unwind@10166650` | `10166650` | `Unwind@10166650` | +| `Unwind@10166680` | `10166680` | `Unwind@10166680` | +| `Unwind@101666b0` | `101666b0` | `Unwind@101666b0` | +| `Unwind@101666e0` | `101666e0` | `Unwind@101666e0` | +| `Unwind@10166710` | `10166710` | `Unwind@10166710` | +| `Unwind@10166740` | `10166740` | `Unwind@10166740` | +| `Unwind@10166770` | `10166770` | `Unwind@10166770` | +| `Unwind@101667a0` | `101667a0` | `Unwind@101667a0` | +| `Unwind@101667d0` | `101667d0` | `Unwind@101667d0` | +| `Unwind@10166800` | `10166800` | `Unwind@10166800` | +| `Unwind@10166830` | `10166830` | `Unwind@10166830` | +| `Unwind@10166860` | `10166860` | `Unwind@10166860` | +| `Unwind@1016686e` | `1016686e` | `Unwind@1016686e` | +| `Unwind@101668a0` | `101668a0` | `Unwind@101668a0` | +| `Unwind@101668d0` | `101668d0` | `Unwind@101668d0` | +| `Unwind@10166900` | `10166900` | `Unwind@10166900` | +| `Unwind@10166930` | `10166930` | `Unwind@10166930` | +| `Unwind@10166960` | `10166960` | `Unwind@10166960` | +| `Unwind@101669b0` | `101669b0` | `Unwind@101669b0` | +| `Unwind@101669bb` | `101669bb` | `Unwind@101669bb` | +| `Unwind@101669c6` | `101669c6` | `Unwind@101669c6` | +| `Unwind@101669d1` | `101669d1` | `Unwind@101669d1` | +| `Unwind@10166a10` | `10166a10` | `Unwind@10166a10` | +| `Unwind@10166a40` | `10166a40` | `Unwind@10166a40` | +| `Unwind@10166a90` | `10166a90` | `Unwind@10166a90` | +| `Unwind@10166ac0` | `10166ac0` | `Unwind@10166ac0` | +| `Unwind@10166af0` | `10166af0` | `Unwind@10166af0` | +| `Unwind@10166b01` | `10166b01` | `Unwind@10166b01` | +| `Unwind@10166b30` | `10166b30` | `Unwind@10166b30` | +| `Unwind@10166b38` | `10166b38` | `Unwind@10166b38` | +| `Unwind@10166b40` | `10166b40` | `Unwind@10166b40` | +| `Unwind@10166b70` | `10166b70` | `Unwind@10166b70` | +| `Unwind@10166b78` | `10166b78` | `Unwind@10166b78` | +| `Unwind@10166b80` | `10166b80` | `Unwind@10166b80` | +| `Unwind@10166b8e` | `10166b8e` | `Unwind@10166b8e` | +| `Unwind@10166b99` | `10166b99` | `Unwind@10166b99` | +| `Unwind@10166ba4` | `10166ba4` | `Unwind@10166ba4` | +| `Unwind@10166baf` | `10166baf` | `Unwind@10166baf` | +| `Unwind@10166bb7` | `10166bb7` | `Unwind@10166bb7` | +| `Unwind@10166bbf` | `10166bbf` | `Unwind@10166bbf` | +| `Unwind@10166bf0` | `10166bf0` | `Unwind@10166bf0` | +| `Unwind@10166bfb` | `10166bfb` | `Unwind@10166bfb` | +| `Unwind@10166c06` | `10166c06` | `Unwind@10166c06` | +| `Unwind@10166c11` | `10166c11` | `Unwind@10166c11` | +| `Unwind@10166c1c` | `10166c1c` | `Unwind@10166c1c` | +| `Unwind@10166c27` | `10166c27` | `Unwind@10166c27` | +| `Unwind@10166c32` | `10166c32` | `Unwind@10166c32` | +| `Unwind@10166c3d` | `10166c3d` | `Unwind@10166c3d` | +| `Unwind@10166c48` | `10166c48` | `Unwind@10166c48` | +| `Unwind@10166c53` | `10166c53` | `Unwind@10166c53` | +| `Unwind@10166c5e` | `10166c5e` | `Unwind@10166c5e` | +| `Unwind@10166c69` | `10166c69` | `Unwind@10166c69` | +| `Unwind@10166c74` | `10166c74` | `Unwind@10166c74` | +| `Unwind@10166c7f` | `10166c7f` | `Unwind@10166c7f` | +| `Unwind@10166c8a` | `10166c8a` | `Unwind@10166c8a` | +| `Unwind@10166c95` | `10166c95` | `Unwind@10166c95` | +| `Unwind@10166cd0` | `10166cd0` | `Unwind@10166cd0` | +| `Unwind@10166cd8` | `10166cd8` | `Unwind@10166cd8` | +| `Unwind@10166ce3` | `10166ce3` | `Unwind@10166ce3` | +| `Unwind@10166ceb` | `10166ceb` | `Unwind@10166ceb` | +| `Unwind@10166cf3` | `10166cf3` | `Unwind@10166cf3` | +| `Unwind@10166cfb` | `10166cfb` | `Unwind@10166cfb` | +| `Unwind@10166d03` | `10166d03` | `Unwind@10166d03` | +| `Unwind@10166d0b` | `10166d0b` | `Unwind@10166d0b` | +| `Unwind@10166d13` | `10166d13` | `Unwind@10166d13` | +| `Unwind@10166d1b` | `10166d1b` | `Unwind@10166d1b` | +| `Unwind@10166d26` | `10166d26` | `Unwind@10166d26` | +| `Unwind@10166d31` | `10166d31` | `Unwind@10166d31` | +| `Unwind@10166d39` | `10166d39` | `Unwind@10166d39` | +| `Unwind@10166d41` | `10166d41` | `Unwind@10166d41` | +| `Unwind@10166d49` | `10166d49` | `Unwind@10166d49` | +| `Unwind@10166d51` | `10166d51` | `Unwind@10166d51` | +| `Unwind@10166d59` | `10166d59` | `Unwind@10166d59` | +| `Unwind@10166d61` | `10166d61` | `Unwind@10166d61` | +| `Unwind@10166da0` | `10166da0` | `Unwind@10166da0` | +| `Unwind@10166de0` | `10166de0` | `Unwind@10166de0` | +| `Unwind@10166e10` | `10166e10` | `Unwind@10166e10` | +| `Unwind@10166e40` | `10166e40` | `Unwind@10166e40` | +| `Unwind@10166e70` | `10166e70` | `Unwind@10166e70` | +| `Unwind@10166e78` | `10166e78` | `Unwind@10166e78` | +| `Unwind@10166e80` | `10166e80` | `Unwind@10166e80` | +| `Unwind@10166e8b` | `10166e8b` | `Unwind@10166e8b` | +| `Unwind@10166e96` | `10166e96` | `Unwind@10166e96` | +| `Unwind@10166ea1` | `10166ea1` | `Unwind@10166ea1` | +| `Unwind@10166eac` | `10166eac` | `Unwind@10166eac` | +| `Unwind@10166ed0` | `10166ed0` | `Unwind@10166ed0` | +| `Unwind@10166f00` | `10166f00` | `Unwind@10166f00` | +| `Unwind@10166f08` | `10166f08` | `Unwind@10166f08` | +| `Unwind@10166f10` | `10166f10` | `Unwind@10166f10` | +| `Unwind@10166f1b` | `10166f1b` | `Unwind@10166f1b` | +| `Unwind@10166f26` | `10166f26` | `Unwind@10166f26` | +| `Unwind@10166f31` | `10166f31` | `Unwind@10166f31` | +| `Unwind@10166f60` | `10166f60` | `Unwind@10166f60` | +| `Unwind@10166f68` | `10166f68` | `Unwind@10166f68` | +| `Unwind@10166f70` | `10166f70` | `Unwind@10166f70` | +| `Unwind@10166f7b` | `10166f7b` | `Unwind@10166f7b` | +| `Unwind@10166f86` | `10166f86` | `Unwind@10166f86` | +| `Unwind@10166f91` | `10166f91` | `Unwind@10166f91` | +| `Unwind@10166f9c` | `10166f9c` | `Unwind@10166f9c` | +| `Unwind@10166fc0` | `10166fc0` | `Unwind@10166fc0` | +| `Unwind@10166ff0` | `10166ff0` | `Unwind@10166ff0` | +| `Unwind@10167020` | `10167020` | `Unwind@10167020` | +| `Unwind@10167050` | `10167050` | `Unwind@10167050` | +| `Unwind@10167080` | `10167080` | `Unwind@10167080` | +| `Unwind@101670b0` | `101670b0` | `Unwind@101670b0` | +| `Unwind@101670e0` | `101670e0` | `Unwind@101670e0` | +| `Unwind@101670e8` | `101670e8` | `Unwind@101670e8` | +| `Unwind@10167110` | `10167110` | `Unwind@10167110` | +| `Unwind@10167118` | `10167118` | `Unwind@10167118` | +| `Unwind@10167120` | `10167120` | `Unwind@10167120` | +| `Unwind@10167128` | `10167128` | `Unwind@10167128` | +| `Unwind@10167130` | `10167130` | `Unwind@10167130` | +| `Unwind@10167138` | `10167138` | `Unwind@10167138` | +| `Unwind@10167140` | `10167140` | `Unwind@10167140` | +| `Unwind@10167148` | `10167148` | `Unwind@10167148` | +| `Unwind@10167150` | `10167150` | `Unwind@10167150` | +| `Unwind@10167180` | `10167180` | `Unwind@10167180` | +| `Unwind@101671b0` | `101671b0` | `Unwind@101671b0` | +| `Unwind@101671e0` | `101671e0` | `Unwind@101671e0` | +| `Unwind@10167210` | `10167210` | `Unwind@10167210` | +| `Unwind@10167221` | `10167221` | `Unwind@10167221` | +| `Unwind@10167229` | `10167229` | `Unwind@10167229` | +| `Unwind@10167250` | `10167250` | `Unwind@10167250` | +| `Unwind@10167258` | `10167258` | `Unwind@10167258` | +| `Unwind@10167280` | `10167280` | `Unwind@10167280` | +| `Unwind@10167288` | `10167288` | `Unwind@10167288` | +| `Unwind@101672b0` | `101672b0` | `Unwind@101672b0` | +| `Unwind@101672c1` | `101672c1` | `Unwind@101672c1` | +| `Unwind@101672c9` | `101672c9` | `Unwind@101672c9` | +| `Unwind@101672f0` | `101672f0` | `Unwind@101672f0` | +| `Unwind@101672f8` | `101672f8` | `Unwind@101672f8` | +| `Unwind@10167320` | `10167320` | `Unwind@10167320` | +| `Unwind@10167350` | `10167350` | `Unwind@10167350` | +| `Unwind@10167358` | `10167358` | `Unwind@10167358` | +| `Unwind@10167366` | `10167366` | `Unwind@10167366` | +| `Unwind@1016736e` | `1016736e` | `Unwind@1016736e` | +| `Unwind@10167376` | `10167376` | `Unwind@10167376` | +| `Unwind@1016737e` | `1016737e` | `Unwind@1016737e` | +| `Unwind@10167386` | `10167386` | `Unwind@10167386` | +| `Unwind@1016738e` | `1016738e` | `Unwind@1016738e` | +| `Unwind@101673c0` | `101673c0` | `Unwind@101673c0` | +| `Unwind@101673cb` | `101673cb` | `Unwind@101673cb` | +| `Unwind@101673d6` | `101673d6` | `Unwind@101673d6` | +| `Unwind@101673e1` | `101673e1` | `Unwind@101673e1` | +| `Unwind@101673ec` | `101673ec` | `Unwind@101673ec` | +| `Unwind@101673fa` | `101673fa` | `Unwind@101673fa` | +| `Unwind@10167430` | `10167430` | `Unwind@10167430` | +| `Unwind@10167438` | `10167438` | `Unwind@10167438` | +| `Unwind@10167440` | `10167440` | `Unwind@10167440` | +| `Unwind@10167448` | `10167448` | `Unwind@10167448` | +| `Unwind@10167450` | `10167450` | `Unwind@10167450` | +| `Unwind@10167458` | `10167458` | `Unwind@10167458` | +| `Unwind@10167460` | `10167460` | `Unwind@10167460` | +| `Unwind@10167468` | `10167468` | `Unwind@10167468` | +| `Unwind@10167470` | `10167470` | `Unwind@10167470` | +| `Unwind@101674a0` | `101674a0` | `Unwind@101674a0` | +| `Unwind@101674d0` | `101674d0` | `Unwind@101674d0` | +| `Unwind@10167500` | `10167500` | `Unwind@10167500` | +| `Unwind@10167530` | `10167530` | `Unwind@10167530` | +| `Unwind@10167560` | `10167560` | `Unwind@10167560` | +| `Unwind@10167590` | `10167590` | `Unwind@10167590` | +| `Unwind@101675c0` | `101675c0` | `Unwind@101675c0` | +| `Unwind@101675c8` | `101675c8` | `Unwind@101675c8` | +| `Unwind@101675d0` | `101675d0` | `Unwind@101675d0` | +| `Unwind@101675db` | `101675db` | `Unwind@101675db` | +| `Unwind@101675e6` | `101675e6` | `Unwind@101675e6` | +| `Unwind@101675f1` | `101675f1` | `Unwind@101675f1` | +| `Unwind@10167620` | `10167620` | `Unwind@10167620` | +| `Unwind@10167650` | `10167650` | `Unwind@10167650` | +| `Unwind@10167680` | `10167680` | `Unwind@10167680` | +| `Unwind@101676c0` | `101676c0` | `Unwind@101676c0` | +| `Unwind@101676ce` | `101676ce` | `Unwind@101676ce` | +| `Unwind@10167710` | `10167710` | `Unwind@10167710` | +| `Unwind@1016771e` | `1016771e` | `Unwind@1016771e` | +| `Unwind@1016772c` | `1016772c` | `Unwind@1016772c` | +| `Unwind@1016773a` | `1016773a` | `Unwind@1016773a` | +| `Unwind@10167770` | `10167770` | `Unwind@10167770` | +| `Unwind@10167778` | `10167778` | `Unwind@10167778` | +| `Unwind@10167780` | `10167780` | `Unwind@10167780` | +| `Unwind@10167788` | `10167788` | `Unwind@10167788` | +| `Unwind@10167790` | `10167790` | `Unwind@10167790` | +| `Unwind@101677c0` | `101677c0` | `Unwind@101677c0` | +| `Unwind@101677c8` | `101677c8` | `Unwind@101677c8` | +| `Unwind@101677d0` | `101677d0` | `Unwind@101677d0` | +| `Unwind@101677db` | `101677db` | `Unwind@101677db` | +| `Unwind@101677e6` | `101677e6` | `Unwind@101677e6` | +| `Unwind@101677f1` | `101677f1` | `Unwind@101677f1` | +| `Unwind@101677fc` | `101677fc` | `Unwind@101677fc` | +| `Unwind@10167807` | `10167807` | `Unwind@10167807` | +| `Unwind@10167812` | `10167812` | `Unwind@10167812` | +| `Unwind@1016781d` | `1016781d` | `Unwind@1016781d` | +| `Unwind@10167828` | `10167828` | `Unwind@10167828` | +| `Unwind@10167833` | `10167833` | `Unwind@10167833` | +| `Unwind@1016783e` | `1016783e` | `Unwind@1016783e` | +| `Unwind@10167849` | `10167849` | `Unwind@10167849` | +| `Unwind@10167854` | `10167854` | `Unwind@10167854` | +| `Unwind@1016785f` | `1016785f` | `Unwind@1016785f` | +| `Unwind@1016786a` | `1016786a` | `Unwind@1016786a` | +| `Unwind@10167875` | `10167875` | `Unwind@10167875` | +| `Unwind@10167880` | `10167880` | `Unwind@10167880` | +| `Unwind@1016788b` | `1016788b` | `Unwind@1016788b` | +| `Unwind@10167896` | `10167896` | `Unwind@10167896` | +| `Unwind@101678a1` | `101678a1` | `Unwind@101678a1` | +| `Unwind@101678ac` | `101678ac` | `Unwind@101678ac` | +| `Unwind@101678b7` | `101678b7` | `Unwind@101678b7` | +| `Unwind@101678c2` | `101678c2` | `Unwind@101678c2` | +| `Unwind@101678cd` | `101678cd` | `Unwind@101678cd` | +| `Unwind@101678d8` | `101678d8` | `Unwind@101678d8` | +| `Unwind@101678e3` | `101678e3` | `Unwind@101678e3` | +| `Unwind@101678ee` | `101678ee` | `Unwind@101678ee` | +| `Unwind@101678f9` | `101678f9` | `Unwind@101678f9` | +| `Unwind@10167904` | `10167904` | `Unwind@10167904` | +| `Unwind@1016790f` | `1016790f` | `Unwind@1016790f` | +| `Unwind@1016791a` | `1016791a` | `Unwind@1016791a` | +| `Unwind@10167925` | `10167925` | `Unwind@10167925` | +| `Unwind@10167930` | `10167930` | `Unwind@10167930` | +| `Unwind@1016793b` | `1016793b` | `Unwind@1016793b` | +| `Unwind@10167946` | `10167946` | `Unwind@10167946` | +| `Unwind@10167951` | `10167951` | `Unwind@10167951` | +| `Unwind@1016795c` | `1016795c` | `Unwind@1016795c` | +| `Unwind@10167967` | `10167967` | `Unwind@10167967` | +| `Unwind@10167972` | `10167972` | `Unwind@10167972` | +| `Unwind@1016797d` | `1016797d` | `Unwind@1016797d` | +| `Unwind@10167988` | `10167988` | `Unwind@10167988` | +| `Unwind@10167993` | `10167993` | `Unwind@10167993` | +| `Unwind@1016799e` | `1016799e` | `Unwind@1016799e` | +| `Unwind@101679a9` | `101679a9` | `Unwind@101679a9` | +| `Unwind@101679b4` | `101679b4` | `Unwind@101679b4` | +| `Unwind@101679bf` | `101679bf` | `Unwind@101679bf` | +| `Unwind@101679ca` | `101679ca` | `Unwind@101679ca` | +| `Unwind@101679d5` | `101679d5` | `Unwind@101679d5` | +| `Unwind@101679e0` | `101679e0` | `Unwind@101679e0` | +| `Unwind@101679eb` | `101679eb` | `Unwind@101679eb` | +| `Unwind@101679f6` | `101679f6` | `Unwind@101679f6` | +| `Unwind@10167a01` | `10167a01` | `Unwind@10167a01` | +| `Unwind@10167a0c` | `10167a0c` | `Unwind@10167a0c` | +| `Unwind@10167a17` | `10167a17` | `Unwind@10167a17` | +| `Unwind@10167a22` | `10167a22` | `Unwind@10167a22` | +| `Unwind@10167a2d` | `10167a2d` | `Unwind@10167a2d` | +| `Unwind@10167a38` | `10167a38` | `Unwind@10167a38` | +| `Unwind@10167a43` | `10167a43` | `Unwind@10167a43` | +| `Unwind@10167a4e` | `10167a4e` | `Unwind@10167a4e` | +| `Unwind@10167a59` | `10167a59` | `Unwind@10167a59` | +| `Unwind@10167a64` | `10167a64` | `Unwind@10167a64` | +| `Unwind@10167a6f` | `10167a6f` | `Unwind@10167a6f` | +| `Unwind@10167a7a` | `10167a7a` | `Unwind@10167a7a` | +| `Unwind@10167a85` | `10167a85` | `Unwind@10167a85` | +| `Unwind@10167a90` | `10167a90` | `Unwind@10167a90` | +| `Unwind@10167a9b` | `10167a9b` | `Unwind@10167a9b` | +| `Unwind@10167aa6` | `10167aa6` | `Unwind@10167aa6` | +| `Unwind@10167ab1` | `10167ab1` | `Unwind@10167ab1` | +| `Unwind@10167abc` | `10167abc` | `Unwind@10167abc` | +| `Unwind@10167af0` | `10167af0` | `Unwind@10167af0` | +| `Unwind@10167b30` | `10167b30` | `Unwind@10167b30` | +| `Unwind@10167b60` | `10167b60` | `Unwind@10167b60` | +| `Unwind@10167b90` | `10167b90` | `Unwind@10167b90` | +| `Unwind@10167bd0` | `10167bd0` | `Unwind@10167bd0` | +| `Unwind@10167bdb` | `10167bdb` | `Unwind@10167bdb` | +| `Unwind@10167be6` | `10167be6` | `Unwind@10167be6` | +| `Unwind@10167bf1` | `10167bf1` | `Unwind@10167bf1` | +| `Unwind@10167bfc` | `10167bfc` | `Unwind@10167bfc` | +| `Unwind@10167c07` | `10167c07` | `Unwind@10167c07` | +| `Unwind@10167c40` | `10167c40` | `Unwind@10167c40` | +| `Unwind@10167c4b` | `10167c4b` | `Unwind@10167c4b` | +| `Unwind@10167c56` | `10167c56` | `Unwind@10167c56` | +| `Unwind@10167c61` | `10167c61` | `Unwind@10167c61` | +| `Unwind@10167c6c` | `10167c6c` | `Unwind@10167c6c` | +| `Unwind@10167c77` | `10167c77` | `Unwind@10167c77` | +| `Unwind@10167cb0` | `10167cb0` | `Unwind@10167cb0` | +| `Unwind@10167ce0` | `10167ce0` | `Unwind@10167ce0` | +| `Unwind@10167d10` | `10167d10` | `Unwind@10167d10` | +| `Unwind@10167d40` | `10167d40` | `Unwind@10167d40` | +| `Unwind@10167d70` | `10167d70` | `Unwind@10167d70` | +| `Unwind@10167da0` | `10167da0` | `Unwind@10167da0` | +| `Unwind@10167da8` | `10167da8` | `Unwind@10167da8` | +| `Unwind@10167db0` | `10167db0` | `Unwind@10167db0` | +| `Unwind@10167dbb` | `10167dbb` | `Unwind@10167dbb` | +| `Unwind@10167dc3` | `10167dc3` | `Unwind@10167dc3` | +| `Unwind@10167dce` | `10167dce` | `Unwind@10167dce` | +| `Unwind@10167dd9` | `10167dd9` | `Unwind@10167dd9` | +| `Unwind@10167de4` | `10167de4` | `Unwind@10167de4` | +| `Unwind@10167def` | `10167def` | `Unwind@10167def` | +| `Unwind@10167df7` | `10167df7` | `Unwind@10167df7` | +| `Unwind@10167dff` | `10167dff` | `Unwind@10167dff` | +| `Unwind@10167e40` | `10167e40` | `Unwind@10167e40` | +| `Unwind@10167e70` | `10167e70` | `Unwind@10167e70` | +| `Unwind@10167e78` | `10167e78` | `Unwind@10167e78` | +| `Unwind@10167e80` | `10167e80` | `Unwind@10167e80` | +| `Unwind@10167eb0` | `10167eb0` | `Unwind@10167eb0` | +| `Unwind@10167eb8` | `10167eb8` | `Unwind@10167eb8` | +| `Unwind@10167ee0` | `10167ee0` | `Unwind@10167ee0` | +| `Unwind@10167ee8` | `10167ee8` | `Unwind@10167ee8` | +| `Unwind@10167f10` | `10167f10` | `Unwind@10167f10` | +| `Unwind@10167f18` | `10167f18` | `Unwind@10167f18` | +| `Unwind@10167f20` | `10167f20` | `Unwind@10167f20` | +| `Unwind@10167f50` | `10167f50` | `Unwind@10167f50` | +| `Unwind@10167f58` | `10167f58` | `Unwind@10167f58` | +| `Unwind@10167f60` | `10167f60` | `Unwind@10167f60` | +| `Unwind@10167f90` | `10167f90` | `Unwind@10167f90` | +| `Unwind@10167f98` | `10167f98` | `Unwind@10167f98` | +| `Unwind@10167fc0` | `10167fc0` | `Unwind@10167fc0` | +| `Unwind@10167fd1` | `10167fd1` | `Unwind@10167fd1` | +| `Unwind@10167fd9` | `10167fd9` | `Unwind@10167fd9` | +| `Unwind@10167fe1` | `10167fe1` | `Unwind@10167fe1` | +| `Unwind@10168010` | `10168010` | `Unwind@10168010` | +| `Unwind@10168018` | `10168018` | `Unwind@10168018` | +| `Unwind@10168020` | `10168020` | `Unwind@10168020` | +| `Unwind@10168028` | `10168028` | `Unwind@10168028` | +| `Unwind@10168030` | `10168030` | `Unwind@10168030` | +| `Unwind@10168038` | `10168038` | `Unwind@10168038` | +| `Unwind@10168040` | `10168040` | `Unwind@10168040` | +| `Unwind@10168048` | `10168048` | `Unwind@10168048` | +| `Unwind@10168080` | `10168080` | `Unwind@10168080` | +| `Unwind@10168088` | `10168088` | `Unwind@10168088` | +| `Unwind@10168090` | `10168090` | `Unwind@10168090` | +| `Unwind@10168098` | `10168098` | `Unwind@10168098` | +| `Unwind@101680d0` | `101680d0` | `Unwind@101680d0` | +| `Unwind@101680e1` | `101680e1` | `Unwind@101680e1` | +| `Unwind@101680e9` | `101680e9` | `Unwind@101680e9` | +| `Unwind@101680f1` | `101680f1` | `Unwind@101680f1` | +| `Unwind@10168120` | `10168120` | `Unwind@10168120` | +| `Unwind@10168128` | `10168128` | `Unwind@10168128` | +| `Unwind@10168130` | `10168130` | `Unwind@10168130` | +| `Unwind@10168138` | `10168138` | `Unwind@10168138` | +| `Unwind@10168140` | `10168140` | `Unwind@10168140` | +| `Unwind@10168148` | `10168148` | `Unwind@10168148` | +| `Unwind@10168153` | `10168153` | `Unwind@10168153` | +| `Unwind@1016815b` | `1016815b` | `Unwind@1016815b` | +| `Unwind@10168163` | `10168163` | `Unwind@10168163` | +| `Unwind@1016816b` | `1016816b` | `Unwind@1016816b` | +| `Unwind@10168173` | `10168173` | `Unwind@10168173` | +| `Unwind@1016817b` | `1016817b` | `Unwind@1016817b` | +| `Unwind@10168183` | `10168183` | `Unwind@10168183` | +| `Unwind@101681c0` | `101681c0` | `Unwind@101681c0` | +| `Unwind@10168210` | `10168210` | `Unwind@10168210` | +| `Unwind@10168218` | `10168218` | `Unwind@10168218` | +| `Unwind@10168240` | `10168240` | `Unwind@10168240` | +| `Unwind@10168270` | `10168270` | `Unwind@10168270` | +| `Unwind@10168278` | `10168278` | `Unwind@10168278` | +| `Unwind@10168280` | `10168280` | `Unwind@10168280` | +| `Unwind@10168288` | `10168288` | `Unwind@10168288` | +| `Unwind@101682b0` | `101682b0` | `Unwind@101682b0` | +| `Unwind@101682b8` | `101682b8` | `Unwind@101682b8` | +| `Unwind@101682e0` | `101682e0` | `Unwind@101682e0` | +| `Unwind@101682e8` | `101682e8` | `Unwind@101682e8` | +| `Unwind@101682f0` | `101682f0` | `Unwind@101682f0` | +| `Unwind@101682f8` | `101682f8` | `Unwind@101682f8` | +| `Unwind@10168300` | `10168300` | `Unwind@10168300` | +| `Unwind@10168330` | `10168330` | `Unwind@10168330` | +| `Unwind@10168338` | `10168338` | `Unwind@10168338` | +| `Unwind@10168340` | `10168340` | `Unwind@10168340` | +| `Unwind@10168348` | `10168348` | `Unwind@10168348` | +| `Unwind@10168350` | `10168350` | `Unwind@10168350` | +| `Unwind@10168380` | `10168380` | `Unwind@10168380` | +| `Unwind@10168388` | `10168388` | `Unwind@10168388` | +| `Unwind@10168390` | `10168390` | `Unwind@10168390` | +| `Unwind@10168398` | `10168398` | `Unwind@10168398` | +| `Unwind@101683a0` | `101683a0` | `Unwind@101683a0` | +| `Unwind@101683ab` | `101683ab` | `Unwind@101683ab` | +| `Unwind@101683d0` | `101683d0` | `Unwind@101683d0` | +| `Unwind@101683d8` | `101683d8` | `Unwind@101683d8` | +| `Unwind@101683e0` | `101683e0` | `Unwind@101683e0` | +| `Unwind@101683e8` | `101683e8` | `Unwind@101683e8` | +| `Unwind@101683f0` | `101683f0` | `Unwind@101683f0` | +| `Unwind@101683fb` | `101683fb` | `Unwind@101683fb` | +| `Unwind@10168420` | `10168420` | `Unwind@10168420` | +| `Unwind@10168431` | `10168431` | `Unwind@10168431` | +| `Unwind@10168439` | `10168439` | `Unwind@10168439` | +| `Unwind@10168441` | `10168441` | `Unwind@10168441` | +| `Unwind@10168449` | `10168449` | `Unwind@10168449` | +| `Unwind@10168451` | `10168451` | `Unwind@10168451` | +| `Unwind@1016845c` | `1016845c` | `Unwind@1016845c` | +| `Unwind@10168480` | `10168480` | `Unwind@10168480` | +| `Unwind@101684b0` | `101684b0` | `Unwind@101684b0` | +| `Unwind@101684c1` | `101684c1` | `Unwind@101684c1` | +| `Unwind@101684c9` | `101684c9` | `Unwind@101684c9` | +| `Unwind@101684d1` | `101684d1` | `Unwind@101684d1` | +| `Unwind@101684d9` | `101684d9` | `Unwind@101684d9` | +| `Unwind@101684e1` | `101684e1` | `Unwind@101684e1` | +| `Unwind@101684ec` | `101684ec` | `Unwind@101684ec` | +| `Unwind@10168510` | `10168510` | `Unwind@10168510` | +| `Unwind@10168518` | `10168518` | `Unwind@10168518` | +| `Unwind@10168520` | `10168520` | `Unwind@10168520` | +| `Unwind@10168528` | `10168528` | `Unwind@10168528` | +| `Unwind@10168530` | `10168530` | `Unwind@10168530` | +| `Unwind@10168538` | `10168538` | `Unwind@10168538` | +| `Unwind@10168540` | `10168540` | `Unwind@10168540` | +| `Unwind@10168548` | `10168548` | `Unwind@10168548` | +| `Unwind@10168550` | `10168550` | `Unwind@10168550` | +| `Unwind@10168580` | `10168580` | `Unwind@10168580` | +| `Unwind@101685b0` | `101685b0` | `Unwind@101685b0` | +| `Unwind@101685bb` | `101685bb` | `Unwind@101685bb` | +| `Unwind@101685c6` | `101685c6` | `Unwind@101685c6` | +| `Unwind@101685d1` | `101685d1` | `Unwind@101685d1` | +| `Unwind@101685dc` | `101685dc` | `Unwind@101685dc` | +| `Unwind@101685e7` | `101685e7` | `Unwind@101685e7` | +| `Unwind@101685ef` | `101685ef` | `Unwind@101685ef` | +| `Unwind@101685f7` | `101685f7` | `Unwind@101685f7` | +| `Unwind@101685ff` | `101685ff` | `Unwind@101685ff` | +| `Unwind@1016860a` | `1016860a` | `Unwind@1016860a` | +| `Unwind@10168615` | `10168615` | `Unwind@10168615` | +| `Unwind@10168620` | `10168620` | `Unwind@10168620` | +| `Unwind@1016862b` | `1016862b` | `Unwind@1016862b` | +| `Unwind@10168636` | `10168636` | `Unwind@10168636` | +| `Unwind@10168641` | `10168641` | `Unwind@10168641` | +| `Unwind@1016864c` | `1016864c` | `Unwind@1016864c` | +| `Unwind@10168657` | `10168657` | `Unwind@10168657` | +| `Unwind@1016865f` | `1016865f` | `Unwind@1016865f` | +| `Unwind@1016866a` | `1016866a` | `Unwind@1016866a` | +| `Unwind@10168675` | `10168675` | `Unwind@10168675` | +| `Unwind@10168680` | `10168680` | `Unwind@10168680` | +| `Unwind@1016868b` | `1016868b` | `Unwind@1016868b` | +| `Unwind@10168696` | `10168696` | `Unwind@10168696` | +| `Unwind@101686a1` | `101686a1` | `Unwind@101686a1` | +| `Unwind@101686ac` | `101686ac` | `Unwind@101686ac` | +| `Unwind@101686b7` | `101686b7` | `Unwind@101686b7` | +| `Unwind@101686c2` | `101686c2` | `Unwind@101686c2` | +| `Unwind@101686cd` | `101686cd` | `Unwind@101686cd` | +| `Unwind@101686d8` | `101686d8` | `Unwind@101686d8` | +| `Unwind@101686e3` | `101686e3` | `Unwind@101686e3` | +| `Unwind@10168720` | `10168720` | `Unwind@10168720` | +| `Unwind@10168760` | `10168760` | `Unwind@10168760` | +| `Unwind@10168790` | `10168790` | `Unwind@10168790` | +| `Unwind@10168798` | `10168798` | `Unwind@10168798` | +| `Unwind@101687c0` | `101687c0` | `Unwind@101687c0` | +| `Unwind@101687f0` | `101687f0` | `Unwind@101687f0` | +| `Unwind@10168820` | `10168820` | `Unwind@10168820` | +| `Unwind@10168850` | `10168850` | `Unwind@10168850` | +| `Unwind@10168880` | `10168880` | `Unwind@10168880` | +| `Unwind@101688b0` | `101688b0` | `Unwind@101688b0` | +| `Unwind@101688e0` | `101688e0` | `Unwind@101688e0` | +| `Unwind@10168910` | `10168910` | `Unwind@10168910` | +| `Unwind@10168940` | `10168940` | `Unwind@10168940` | +| `Unwind@10168970` | `10168970` | `Unwind@10168970` | +| `Unwind@101689a0` | `101689a0` | `Unwind@101689a0` | +| `Unwind@101689d0` | `101689d0` | `Unwind@101689d0` | +| `Unwind@10168a20` | `10168a20` | `Unwind@10168a20` | +| `Unwind@10168a28` | `10168a28` | `Unwind@10168a28` | +| `Unwind@10168a50` | `10168a50` | `Unwind@10168a50` | +| `Unwind@10168a58` | `10168a58` | `Unwind@10168a58` | +| `Unwind@10168a80` | `10168a80` | `Unwind@10168a80` | +| `Unwind@10168a8b` | `10168a8b` | `Unwind@10168a8b` | +| `Unwind@10168ab0` | `10168ab0` | `Unwind@10168ab0` | +| `Unwind@10168abb` | `10168abb` | `Unwind@10168abb` | +| `Unwind@10168ae0` | `10168ae0` | `Unwind@10168ae0` | +| `Unwind@10168b10` | `10168b10` | `Unwind@10168b10` | +| `Unwind@10168b40` | `10168b40` | `Unwind@10168b40` | +| `Unwind@10168b70` | `10168b70` | `Unwind@10168b70` | +| `Unwind@10168b7b` | `10168b7b` | `Unwind@10168b7b` | +| `Unwind@10168ba0` | `10168ba0` | `Unwind@10168ba0` | +| `Unwind@10168bd0` | `10168bd0` | `Unwind@10168bd0` | +| `Unwind@10168bd8` | `10168bd8` | `Unwind@10168bd8` | +| `Unwind@10168be0` | `10168be0` | `Unwind@10168be0` | +| `Unwind@10168be8` | `10168be8` | `Unwind@10168be8` | +| `Unwind@10168bf0` | `10168bf0` | `Unwind@10168bf0` | +| `Unwind@10168c20` | `10168c20` | `Unwind@10168c20` | +| `Unwind@10168c28` | `10168c28` | `Unwind@10168c28` | +| `Unwind@10168c50` | `10168c50` | `Unwind@10168c50` | +| `Unwind@10168c58` | `10168c58` | `Unwind@10168c58` | +| `Unwind@10168c80` | `10168c80` | `Unwind@10168c80` | +| `Unwind@10168c88` | `10168c88` | `Unwind@10168c88` | +| `Unwind@10168cb0` | `10168cb0` | `Unwind@10168cb0` | +| `Unwind@10168cb8` | `10168cb8` | `Unwind@10168cb8` | +| `Unwind@10168cc0` | `10168cc0` | `Unwind@10168cc0` | +| `Unwind@10168cc8` | `10168cc8` | `Unwind@10168cc8` | +| `Unwind@10168cd0` | `10168cd0` | `Unwind@10168cd0` | +| `Unwind@10168d00` | `10168d00` | `Unwind@10168d00` | +| `Unwind@10168d0b` | `10168d0b` | `Unwind@10168d0b` | +| `Unwind@10168d16` | `10168d16` | `Unwind@10168d16` | +| `Unwind@10168d21` | `10168d21` | `Unwind@10168d21` | +| `Unwind@10168d2c` | `10168d2c` | `Unwind@10168d2c` | +| `Unwind@10168d37` | `10168d37` | `Unwind@10168d37` | +| `Unwind@10168d70` | `10168d70` | `Unwind@10168d70` | +| `Unwind@10168da0` | `10168da0` | `Unwind@10168da0` | +| `Unwind@10168da8` | `10168da8` | `Unwind@10168da8` | +| `Unwind@10168dd0` | `10168dd0` | `Unwind@10168dd0` | +| `Unwind@10168ddb` | `10168ddb` | `Unwind@10168ddb` | +| `Unwind@10168de6` | `10168de6` | `Unwind@10168de6` | +| `Unwind@10168e10` | `10168e10` | `Unwind@10168e10` | +| `Unwind@10168e1b` | `10168e1b` | `Unwind@10168e1b` | +| `Unwind@10168e26` | `10168e26` | `Unwind@10168e26` | +| `Unwind@10168e50` | `10168e50` | `Unwind@10168e50` | +| `Unwind@10168e80` | `10168e80` | `Unwind@10168e80` | +| `Unwind@10168e88` | `10168e88` | `Unwind@10168e88` | +| `Unwind@10168e93` | `10168e93` | `Unwind@10168e93` | +| `Unwind@10168e9e` | `10168e9e` | `Unwind@10168e9e` | +| `Unwind@10168ed0` | `10168ed0` | `Unwind@10168ed0` | +| `Unwind@10168ed8` | `10168ed8` | `Unwind@10168ed8` | +| `Unwind@10168ee3` | `10168ee3` | `Unwind@10168ee3` | +| `Unwind@10168f10` | `10168f10` | `Unwind@10168f10` | +| `Unwind@10168f40` | `10168f40` | `Unwind@10168f40` | +| `Unwind@10168f70` | `10168f70` | `Unwind@10168f70` | +| `Unwind@10168fa0` | `10168fa0` | `Unwind@10168fa0` | +| `Unwind@10168fd0` | `10168fd0` | `Unwind@10168fd0` | +| `Unwind@10168fd8` | `10168fd8` | `Unwind@10168fd8` | +| `Unwind@10169000` | `10169000` | `Unwind@10169000` | +| `Unwind@10169008` | `10169008` | `Unwind@10169008` | +| `Unwind@10169013` | `10169013` | `Unwind@10169013` | +| `Unwind@1016901e` | `1016901e` | `Unwind@1016901e` | +| `Unwind@10169050` | `10169050` | `Unwind@10169050` | +| `Unwind@10169058` | `10169058` | `Unwind@10169058` | +| `Unwind@10169063` | `10169063` | `Unwind@10169063` | +| `Unwind@1016906e` | `1016906e` | `Unwind@1016906e` | +| `Unwind@101690a0` | `101690a0` | `Unwind@101690a0` | +| `Unwind@101690a8` | `101690a8` | `Unwind@101690a8` | +| `Unwind@101690b3` | `101690b3` | `Unwind@101690b3` | +| `Unwind@101690be` | `101690be` | `Unwind@101690be` | +| `Unwind@10169130` | `10169130` | `Unwind@10169130` | +| `Unwind@10169138` | `10169138` | `Unwind@10169138` | +| `Unwind@10169143` | `10169143` | `Unwind@10169143` | +| `Unwind@1016914e` | `1016914e` | `Unwind@1016914e` | +| `Unwind@10169180` | `10169180` | `Unwind@10169180` | +| `Unwind@10169188` | `10169188` | `Unwind@10169188` | +| `Unwind@10169193` | `10169193` | `Unwind@10169193` | +| `Unwind@1016919e` | `1016919e` | `Unwind@1016919e` | +| `Unwind@101691d0` | `101691d0` | `Unwind@101691d0` | +| `Unwind@10169200` | `10169200` | `Unwind@10169200` | +| `Unwind@10169230` | `10169230` | `Unwind@10169230` | +| `Unwind@10169238` | `10169238` | `Unwind@10169238` | +| `Unwind@10169243` | `10169243` | `Unwind@10169243` | +| `Unwind@1016924e` | `1016924e` | `Unwind@1016924e` | +| `Unwind@10169256` | `10169256` | `Unwind@10169256` | +| `Unwind@10169280` | `10169280` | `Unwind@10169280` | +| `Unwind@10169288` | `10169288` | `Unwind@10169288` | +| `Unwind@10169290` | `10169290` | `Unwind@10169290` | +| `Unwind@1016929b` | `1016929b` | `Unwind@1016929b` | +| `Unwind@101692a6` | `101692a6` | `Unwind@101692a6` | +| `Unwind@101692d0` | `101692d0` | `Unwind@101692d0` | +| `Unwind@101692d8` | `101692d8` | `Unwind@101692d8` | +| `Unwind@101692e0` | `101692e0` | `Unwind@101692e0` | +| `Unwind@101692eb` | `101692eb` | `Unwind@101692eb` | +| `Unwind@101692f6` | `101692f6` | `Unwind@101692f6` | +| `Unwind@10169320` | `10169320` | `Unwind@10169320` | +| `Unwind@10169350` | `10169350` | `Unwind@10169350` | +| `Unwind@10169380` | `10169380` | `Unwind@10169380` | +| `Unwind@101693b0` | `101693b0` | `Unwind@101693b0` | +| `Unwind@101693cd` | `101693cd` | `Unwind@101693cd` | +| `Unwind@101693d9` | `101693d9` | `Unwind@101693d9` | +| `Unwind@10169400` | `10169400` | `Unwind@10169400` | +| `Unwind@1016940b` | `1016940b` | `Unwind@1016940b` | +| `Unwind@10169419` | `10169419` | `Unwind@10169419` | +| `Unwind@10169424` | `10169424` | `Unwind@10169424` | +| `Unwind@10169432` | `10169432` | `Unwind@10169432` | +| `Unwind@1016943d` | `1016943d` | `Unwind@1016943d` | +| `Unwind@1016944b` | `1016944b` | `Unwind@1016944b` | +| `Unwind@10169456` | `10169456` | `Unwind@10169456` | +| `Unwind@10169464` | `10169464` | `Unwind@10169464` | +| `Unwind@1016946f` | `1016946f` | `Unwind@1016946f` | +| `Unwind@1016947d` | `1016947d` | `Unwind@1016947d` | +| `Unwind@10169488` | `10169488` | `Unwind@10169488` | +| `Unwind@10169496` | `10169496` | `Unwind@10169496` | +| `Unwind@101694a1` | `101694a1` | `Unwind@101694a1` | +| `Unwind@101694af` | `101694af` | `Unwind@101694af` | +| `Unwind@101694ba` | `101694ba` | `Unwind@101694ba` | +| `Unwind@101694c8` | `101694c8` | `Unwind@101694c8` | +| `Unwind@101694d3` | `101694d3` | `Unwind@101694d3` | +| `Unwind@101694e1` | `101694e1` | `Unwind@101694e1` | +| `Unwind@101694ec` | `101694ec` | `Unwind@101694ec` | +| `Unwind@101694fa` | `101694fa` | `Unwind@101694fa` | +| `Unwind@10169505` | `10169505` | `Unwind@10169505` | +| `Unwind@10169513` | `10169513` | `Unwind@10169513` | +| `Unwind@1016951e` | `1016951e` | `Unwind@1016951e` | +| `Unwind@1016952c` | `1016952c` | `Unwind@1016952c` | +| `Unwind@10169537` | `10169537` | `Unwind@10169537` | +| `Unwind@10169545` | `10169545` | `Unwind@10169545` | +| `Unwind@10169550` | `10169550` | `Unwind@10169550` | +| `Unwind@1016955e` | `1016955e` | `Unwind@1016955e` | +| `Unwind@10169569` | `10169569` | `Unwind@10169569` | +| `Unwind@10169577` | `10169577` | `Unwind@10169577` | +| `Unwind@10169582` | `10169582` | `Unwind@10169582` | +| `Unwind@10169590` | `10169590` | `Unwind@10169590` | +| `Unwind@1016959b` | `1016959b` | `Unwind@1016959b` | +| `Unwind@101695a9` | `101695a9` | `Unwind@101695a9` | +| `Unwind@101695b4` | `101695b4` | `Unwind@101695b4` | +| `Unwind@101695c2` | `101695c2` | `Unwind@101695c2` | +| `Unwind@101695cd` | `101695cd` | `Unwind@101695cd` | +| `Unwind@101695db` | `101695db` | `Unwind@101695db` | +| `Unwind@101695e6` | `101695e6` | `Unwind@101695e6` | +| `Unwind@101695f4` | `101695f4` | `Unwind@101695f4` | +| `Unwind@101695ff` | `101695ff` | `Unwind@101695ff` | +| `Unwind@1016960d` | `1016960d` | `Unwind@1016960d` | +| `Unwind@10169618` | `10169618` | `Unwind@10169618` | +| `Unwind@10169650` | `10169650` | `Unwind@10169650` | +| `Unwind@10169680` | `10169680` | `Unwind@10169680` | +| `Unwind@10169688` | `10169688` | `Unwind@10169688` | +| `Unwind@101696b0` | `101696b0` | `Unwind@101696b0` | +| `Unwind@101696e0` | `101696e0` | `Unwind@101696e0` | +| `Unwind@101696ec` | `101696ec` | `Unwind@101696ec` | +| `Unwind@10169720` | `10169720` | `Unwind@10169720` | +| `Unwind@10169728` | `10169728` | `Unwind@10169728` | +| `Unwind@10169750` | `10169750` | `Unwind@10169750` | +| `Unwind@10169758` | `10169758` | `Unwind@10169758` | +| `Unwind@10169760` | `10169760` | `Unwind@10169760` | +| `Unwind@10169790` | `10169790` | `Unwind@10169790` | +| `Unwind@1016979a` | `1016979a` | `Unwind@1016979a` | +| `Unwind@101697a4` | `101697a4` | `Unwind@101697a4` | +| `Unwind@101697d0` | `101697d0` | `Unwind@101697d0` | +| `Unwind@101697da` | `101697da` | `Unwind@101697da` | +| `Unwind@10169800` | `10169800` | `Unwind@10169800` | +| `Unwind@1016980a` | `1016980a` | `Unwind@1016980a` | +| `Unwind@10169830` | `10169830` | `Unwind@10169830` | +| `Unwind@1016983a` | `1016983a` | `Unwind@1016983a` | +| `Unwind@10169860` | `10169860` | `Unwind@10169860` | +| `Unwind@10169890` | `10169890` | `Unwind@10169890` | +| `Unwind@101698c0` | `101698c0` | `Unwind@101698c0` | +| `Unwind@101698f0` | `101698f0` | `Unwind@101698f0` | +| `Unwind@10169920` | `10169920` | `Unwind@10169920` | +| `Unwind@10169928` | `10169928` | `Unwind@10169928` | +| `Unwind@10169960` | `10169960` | `Unwind@10169960` | +| `Unwind@10169990` | `10169990` | `Unwind@10169990` | +| `Unwind@101699c0` | `101699c0` | `Unwind@101699c0` | +| `Unwind@101699f0` | `101699f0` | `Unwind@101699f0` | +| `Unwind@101699f8` | `101699f8` | `Unwind@101699f8` | +| `Unwind@10169a00` | `10169a00` | `Unwind@10169a00` | +| `Unwind@10169a08` | `10169a08` | `Unwind@10169a08` | +| `Unwind@10169a10` | `10169a10` | `Unwind@10169a10` | +| `Unwind@10169a18` | `10169a18` | `Unwind@10169a18` | +| `Unwind@10169a23` | `10169a23` | `Unwind@10169a23` | +| `Unwind@10169a2e` | `10169a2e` | `Unwind@10169a2e` | +| `Unwind@10169a39` | `10169a39` | `Unwind@10169a39` | +| `Unwind@10169a60` | `10169a60` | `Unwind@10169a60` | +| `Unwind@10169a90` | `10169a90` | `Unwind@10169a90` | +| `Unwind@10169ac0` | `10169ac0` | `Unwind@10169ac0` | +| `Unwind@10169af0` | `10169af0` | `Unwind@10169af0` | +| `Unwind@10169af8` | `10169af8` | `Unwind@10169af8` | +| `Unwind@10169b03` | `10169b03` | `Unwind@10169b03` | +| `Unwind@10169b0b` | `10169b0b` | `Unwind@10169b0b` | +| `Unwind@10169b16` | `10169b16` | `Unwind@10169b16` | +| `Unwind@10169b21` | `10169b21` | `Unwind@10169b21` | +| `Unwind@10169b2c` | `10169b2c` | `Unwind@10169b2c` | +| `Unwind@10169b37` | `10169b37` | `Unwind@10169b37` | +| `Unwind@10169b60` | `10169b60` | `Unwind@10169b60` | +| `Unwind@10169b6b` | `10169b6b` | `Unwind@10169b6b` | +| `Unwind@10169ba0` | `10169ba0` | `Unwind@10169ba0` | +| `Unwind@10169bab` | `10169bab` | `Unwind@10169bab` | +| `Unwind@10169bb6` | `10169bb6` | `Unwind@10169bb6` | +| `Unwind@10169bc1` | `10169bc1` | `Unwind@10169bc1` | +| `Unwind@10169bcf` | `10169bcf` | `Unwind@10169bcf` | +| `Unwind@10169bdd` | `10169bdd` | `Unwind@10169bdd` | +| `Unwind@10169beb` | `10169beb` | `Unwind@10169beb` | +| `Unwind@10169bf9` | `10169bf9` | `Unwind@10169bf9` | +| `Unwind@10169c30` | `10169c30` | `Unwind@10169c30` | +| `Unwind@10169c3b` | `10169c3b` | `Unwind@10169c3b` | +| `Unwind@10169c46` | `10169c46` | `Unwind@10169c46` | +| `Unwind@10169c51` | `10169c51` | `Unwind@10169c51` | +| `Unwind@10169c5f` | `10169c5f` | `Unwind@10169c5f` | +| `Unwind@10169c6d` | `10169c6d` | `Unwind@10169c6d` | +| `Unwind@10169c7b` | `10169c7b` | `Unwind@10169c7b` | +| `Unwind@10169c89` | `10169c89` | `Unwind@10169c89` | +| `Unwind@10169cc0` | `10169cc0` | `Unwind@10169cc0` | +| `Unwind@10169ccb` | `10169ccb` | `Unwind@10169ccb` | +| `Unwind@10169cd6` | `10169cd6` | `Unwind@10169cd6` | +| `Unwind@10169ce1` | `10169ce1` | `Unwind@10169ce1` | +| `Unwind@10169cec` | `10169cec` | `Unwind@10169cec` | +| `Unwind@10169cf7` | `10169cf7` | `Unwind@10169cf7` | +| `Unwind@10169d02` | `10169d02` | `Unwind@10169d02` | +| `Unwind@10169d50` | `10169d50` | `Unwind@10169d50` | +| `Unwind@10169d72` | `10169d72` | `Unwind@10169d72` | +| `Unwind@10169d7d` | `10169d7d` | `Unwind@10169d7d` | +| `Unwind@10169d88` | `10169d88` | `Unwind@10169d88` | +| `Unwind@10169d93` | `10169d93` | `Unwind@10169d93` | +| `Unwind@10169d9e` | `10169d9e` | `Unwind@10169d9e` | +| `Unwind@10169da9` | `10169da9` | `Unwind@10169da9` | +| `Unwind@10169db4` | `10169db4` | `Unwind@10169db4` | +| `Unwind@10169e00` | `10169e00` | `Unwind@10169e00` | +| `Unwind@10169e30` | `10169e30` | `Unwind@10169e30` | +| `Unwind@10169e60` | `10169e60` | `Unwind@10169e60` | +| `Unwind@10169e90` | `10169e90` | `Unwind@10169e90` | +| `Unwind@10169ec0` | `10169ec0` | `Unwind@10169ec0` | +| `Unwind@10169ef0` | `10169ef0` | `Unwind@10169ef0` | +| `Unwind@10169f20` | `10169f20` | `Unwind@10169f20` | +| `Unwind@10169f50` | `10169f50` | `Unwind@10169f50` | +| `Unwind@10169f80` | `10169f80` | `Unwind@10169f80` | +| `Unwind@10169fb0` | `10169fb0` | `Unwind@10169fb0` | +| `Unwind@10169fe0` | `10169fe0` | `Unwind@10169fe0` | +| `Unwind@1016a010` | `1016a010` | `Unwind@1016a010` | +| `Unwind@1016a040` | `1016a040` | `Unwind@1016a040` | +| `Unwind@1016a070` | `1016a070` | `Unwind@1016a070` | +| `Unwind@1016a0a0` | `1016a0a0` | `Unwind@1016a0a0` | +| `Unwind@1016a0d0` | `1016a0d0` | `Unwind@1016a0d0` | +| `Unwind@1016a100` | `1016a100` | `Unwind@1016a100` | +| `Unwind@1016a130` | `1016a130` | `Unwind@1016a130` | +| `Unwind@1016a160` | `1016a160` | `Unwind@1016a160` | +| `Unwind@1016a190` | `1016a190` | `Unwind@1016a190` | +| `Unwind@1016a1c0` | `1016a1c0` | `Unwind@1016a1c0` | +| `Unwind@1016a1f0` | `1016a1f0` | `Unwind@1016a1f0` | +| `Unwind@1016a220` | `1016a220` | `Unwind@1016a220` | +| `Unwind@1016a250` | `1016a250` | `Unwind@1016a250` | +| `Unwind@1016a280` | `1016a280` | `Unwind@1016a280` | +| `Unwind@1016a2b0` | `1016a2b0` | `Unwind@1016a2b0` | +| `Unwind@1016a2e0` | `1016a2e0` | `Unwind@1016a2e0` | +| `Unwind@1016a310` | `1016a310` | `Unwind@1016a310` | +| `Unwind@1016a340` | `1016a340` | `Unwind@1016a340` | +| `Unwind@1016a370` | `1016a370` | `Unwind@1016a370` | +| `Unwind@1016a3a0` | `1016a3a0` | `Unwind@1016a3a0` | +| `Unwind@1016a3d0` | `1016a3d0` | `Unwind@1016a3d0` | +| `Unwind@1016a400` | `1016a400` | `Unwind@1016a400` | +| `Unwind@1016a430` | `1016a430` | `Unwind@1016a430` | +| `Unwind@1016a460` | `1016a460` | `Unwind@1016a460` | +| `Unwind@1016a490` | `1016a490` | `Unwind@1016a490` | +| `Unwind@1016a4c0` | `1016a4c0` | `Unwind@1016a4c0` | +| `Unwind@1016a4f0` | `1016a4f0` | `Unwind@1016a4f0` | +| `Unwind@1016a520` | `1016a520` | `Unwind@1016a520` | +| `Unwind@1016a550` | `1016a550` | `Unwind@1016a550` | +| `Unwind@1016a580` | `1016a580` | `Unwind@1016a580` | +| `Unwind@1016a5b0` | `1016a5b0` | `Unwind@1016a5b0` | +| `Unwind@1016a5e0` | `1016a5e0` | `Unwind@1016a5e0` | +| `Unwind@1016a610` | `1016a610` | `Unwind@1016a610` | +| `Unwind@1016a640` | `1016a640` | `Unwind@1016a640` | +| `Unwind@1016a670` | `1016a670` | `Unwind@1016a670` | +| `Unwind@1016a6a0` | `1016a6a0` | `Unwind@1016a6a0` | +| `Unwind@1016a6d0` | `1016a6d0` | `Unwind@1016a6d0` | +| `Unwind@1016a700` | `1016a700` | `Unwind@1016a700` | +| `Unwind@1016a730` | `1016a730` | `Unwind@1016a730` | +| `Unwind@1016a760` | `1016a760` | `Unwind@1016a760` | +| `Unwind@1016a790` | `1016a790` | `Unwind@1016a790` | +| `Unwind@1016a7c0` | `1016a7c0` | `Unwind@1016a7c0` | +| `Unwind@1016a7f0` | `1016a7f0` | `Unwind@1016a7f0` | +| `Unwind@1016a820` | `1016a820` | `Unwind@1016a820` | +| `Unwind@1016a850` | `1016a850` | `Unwind@1016a850` | +| `Unwind@1016a880` | `1016a880` | `Unwind@1016a880` | +| `Unwind@1016a8b0` | `1016a8b0` | `Unwind@1016a8b0` | +| `Unwind@1016a8e0` | `1016a8e0` | `Unwind@1016a8e0` | +| `Unwind@1016a910` | `1016a910` | `Unwind@1016a910` | +| `Unwind@1016a940` | `1016a940` | `Unwind@1016a940` | +| `Unwind@1016a970` | `1016a970` | `Unwind@1016a970` | +| `Unwind@1016a9a0` | `1016a9a0` | `Unwind@1016a9a0` | +| `Unwind@1016a9d0` | `1016a9d0` | `Unwind@1016a9d0` | +| `Unwind@1016aa00` | `1016aa00` | `Unwind@1016aa00` | +| `Unwind@1016aa30` | `1016aa30` | `Unwind@1016aa30` | +| `Unwind@1016aa60` | `1016aa60` | `Unwind@1016aa60` | +| `Unwind@1016aa6b` | `1016aa6b` | `Unwind@1016aa6b` | +| `Unwind@1016aa76` | `1016aa76` | `Unwind@1016aa76` | +| `Unwind@1016aa81` | `1016aa81` | `Unwind@1016aa81` | +| `Unwind@1016aa8c` | `1016aa8c` | `Unwind@1016aa8c` | +| `Unwind@1016aab0` | `1016aab0` | `Unwind@1016aab0` | +| `Unwind@1016aae0` | `1016aae0` | `Unwind@1016aae0` | +| `Unwind@1016ab10` | `1016ab10` | `Unwind@1016ab10` | +| `Unwind@1016ab40` | `1016ab40` | `Unwind@1016ab40` | +| `Unwind@1016ab70` | `1016ab70` | `Unwind@1016ab70` | +| `Unwind@1016aba0` | `1016aba0` | `Unwind@1016aba0` | +| `Unwind@1016abd0` | `1016abd0` | `Unwind@1016abd0` | +| `Unwind@1016ac00` | `1016ac00` | `Unwind@1016ac00` | +| `Unwind@1016ac30` | `1016ac30` | `Unwind@1016ac30` | +| `Unwind@1016ac60` | `1016ac60` | `Unwind@1016ac60` | +| `Unwind@1016ac90` | `1016ac90` | `Unwind@1016ac90` | +| `Unwind@1016acc0` | `1016acc0` | `Unwind@1016acc0` | +| `Unwind@1016acf0` | `1016acf0` | `Unwind@1016acf0` | +| `Unwind@1016ad20` | `1016ad20` | `Unwind@1016ad20` | +| `Unwind@1016ad50` | `1016ad50` | `Unwind@1016ad50` | +| `Unwind@1016ad80` | `1016ad80` | `Unwind@1016ad80` | +| `Unwind@1016adb0` | `1016adb0` | `Unwind@1016adb0` | +| `Unwind@1016ade0` | `1016ade0` | `Unwind@1016ade0` | +| `Unwind@1016ae10` | `1016ae10` | `Unwind@1016ae10` | +| `Unwind@1016ae40` | `1016ae40` | `Unwind@1016ae40` | +| `Unwind@1016ae70` | `1016ae70` | `Unwind@1016ae70` | +| `Unwind@1016aea0` | `1016aea0` | `Unwind@1016aea0` | +| `Unwind@1016aed0` | `1016aed0` | `Unwind@1016aed0` | +| `Unwind@1016af00` | `1016af00` | `Unwind@1016af00` | +| `Unwind@1016af30` | `1016af30` | `Unwind@1016af30` | +| `Unwind@1016af60` | `1016af60` | `Unwind@1016af60` | +| `Unwind@1016af90` | `1016af90` | `Unwind@1016af90` | +| `Unwind@1016afc0` | `1016afc0` | `Unwind@1016afc0` | +| `Unwind@1016aff0` | `1016aff0` | `Unwind@1016aff0` | +| `Unwind@1016b020` | `1016b020` | `Unwind@1016b020` | +| `Unwind@1016b050` | `1016b050` | `Unwind@1016b050` | +| `Unwind@1016b080` | `1016b080` | `Unwind@1016b080` | +| `Unwind@1016b0b0` | `1016b0b0` | `Unwind@1016b0b0` | +| `Unwind@1016b0e0` | `1016b0e0` | `Unwind@1016b0e0` | +| `Unwind@1016b110` | `1016b110` | `Unwind@1016b110` | +| `Unwind@1016b140` | `1016b140` | `Unwind@1016b140` | +| `Unwind@1016b170` | `1016b170` | `Unwind@1016b170` | +| `Unwind@1016b1a0` | `1016b1a0` | `Unwind@1016b1a0` | +| `Unwind@1016b1d0` | `1016b1d0` | `Unwind@1016b1d0` | +| `Unwind@1016b200` | `1016b200` | `Unwind@1016b200` | +| `Unwind@1016b230` | `1016b230` | `Unwind@1016b230` | +| `Unwind@1016b260` | `1016b260` | `Unwind@1016b260` | +| `Unwind@1016b290` | `1016b290` | `Unwind@1016b290` | +| `Unwind@1016b2c0` | `1016b2c0` | `Unwind@1016b2c0` | +| `Unwind@1016b2f0` | `1016b2f0` | `Unwind@1016b2f0` | +| `Unwind@1016b320` | `1016b320` | `Unwind@1016b320` | +| `Unwind@1016b328` | `1016b328` | `Unwind@1016b328` | +| `Unwind@1016b333` | `1016b333` | `Unwind@1016b333` | +| `Unwind@1016b33e` | `1016b33e` | `Unwind@1016b33e` | +| `Unwind@1016b370` | `1016b370` | `Unwind@1016b370` | +| `Unwind@1016b378` | `1016b378` | `Unwind@1016b378` | +| `Unwind@1016b3a0` | `1016b3a0` | `Unwind@1016b3a0` | +| `Unwind@1016b3a8` | `1016b3a8` | `Unwind@1016b3a8` | +| `Unwind@1016b3d0` | `1016b3d0` | `Unwind@1016b3d0` | +| `Unwind@1016b3d8` | `1016b3d8` | `Unwind@1016b3d8` | +| `Unwind@1016b3e0` | `1016b3e0` | `Unwind@1016b3e0` | +| `Unwind@1016b410` | `1016b410` | `Unwind@1016b410` | +| `Unwind@1016b418` | `1016b418` | `Unwind@1016b418` | +| `Unwind@1016b423` | `1016b423` | `Unwind@1016b423` | +| `Unwind@1016b450` | `1016b450` | `Unwind@1016b450` | +| `Unwind@1016b458` | `1016b458` | `Unwind@1016b458` | +| `Unwind@1016b463` | `1016b463` | `Unwind@1016b463` | +| `Unwind@1016b490` | `1016b490` | `Unwind@1016b490` | +| `Unwind@1016b49b` | `1016b49b` | `Unwind@1016b49b` | +| `Unwind@1016b4a6` | `1016b4a6` | `Unwind@1016b4a6` | +| `Unwind@1016b4b1` | `1016b4b1` | `Unwind@1016b4b1` | +| `Unwind@1016b4bc` | `1016b4bc` | `Unwind@1016b4bc` | +| `Unwind@1016b4c7` | `1016b4c7` | `Unwind@1016b4c7` | +| `Unwind@1016b4cf` | `1016b4cf` | `Unwind@1016b4cf` | +| `Unwind@1016b4d7` | `1016b4d7` | `Unwind@1016b4d7` | +| `Unwind@1016b4df` | `1016b4df` | `Unwind@1016b4df` | +| `Unwind@1016b510` | `1016b510` | `Unwind@1016b510` | +| `Unwind@1016b540` | `1016b540` | `Unwind@1016b540` | +| `Unwind@1016b548` | `1016b548` | `Unwind@1016b548` | +| `Unwind@1016b553` | `1016b553` | `Unwind@1016b553` | +| `Unwind@1016b55e` | `1016b55e` | `Unwind@1016b55e` | +| `Unwind@1016b569` | `1016b569` | `Unwind@1016b569` | +| `Unwind@1016b574` | `1016b574` | `Unwind@1016b574` | +| `Unwind@1016b5a0` | `1016b5a0` | `Unwind@1016b5a0` | +| `Unwind@1016b5d0` | `1016b5d0` | `Unwind@1016b5d0` | +| `Unwind@1016b600` | `1016b600` | `Unwind@1016b600` | +| `Unwind@1016b630` | `1016b630` | `Unwind@1016b630` | +| `Unwind@1016b660` | `1016b660` | `Unwind@1016b660` | +| `Unwind@1016b690` | `1016b690` | `Unwind@1016b690` | +| `Unwind@1016b6c0` | `1016b6c0` | `Unwind@1016b6c0` | +| `Unwind@1016b6f0` | `1016b6f0` | `Unwind@1016b6f0` | +| `Unwind@1016b720` | `1016b720` | `Unwind@1016b720` | +| `Unwind@1016b750` | `1016b750` | `Unwind@1016b750` | +| `Unwind@1016b780` | `1016b780` | `Unwind@1016b780` | +| `Unwind@1016b7b0` | `1016b7b0` | `Unwind@1016b7b0` | +| `Unwind@1016b7e0` | `1016b7e0` | `Unwind@1016b7e0` | +| `Unwind@1016b810` | `1016b810` | `Unwind@1016b810` | +| `Unwind@1016b840` | `1016b840` | `Unwind@1016b840` | +| `Unwind@1016b870` | `1016b870` | `Unwind@1016b870` | +| `Unwind@1016b8a0` | `1016b8a0` | `Unwind@1016b8a0` | +| `Unwind@1016b8d0` | `1016b8d0` | `Unwind@1016b8d0` | +| `Unwind@1016b900` | `1016b900` | `Unwind@1016b900` | +| `Unwind@1016b930` | `1016b930` | `Unwind@1016b930` | +| `Unwind@1016b960` | `1016b960` | `Unwind@1016b960` | +| `Unwind@1016b990` | `1016b990` | `Unwind@1016b990` | +| `Unwind@1016b9c0` | `1016b9c0` | `Unwind@1016b9c0` | +| `Unwind@1016b9f0` | `1016b9f0` | `Unwind@1016b9f0` | +| `Unwind@1016ba20` | `1016ba20` | `Unwind@1016ba20` | +| `Unwind@1016ba50` | `1016ba50` | `Unwind@1016ba50` | +| `Unwind@1016ba80` | `1016ba80` | `Unwind@1016ba80` | +| `Unwind@1016bab0` | `1016bab0` | `Unwind@1016bab0` | +| `Unwind@1016bae0` | `1016bae0` | `Unwind@1016bae0` | +| `Unwind@1016bb10` | `1016bb10` | `Unwind@1016bb10` | +| `Unwind@1016bb40` | `1016bb40` | `Unwind@1016bb40` | +| `Unwind@1016bb70` | `1016bb70` | `Unwind@1016bb70` | +| `Unwind@1016bba0` | `1016bba0` | `Unwind@1016bba0` | +| `Unwind@1016bbd0` | `1016bbd0` | `Unwind@1016bbd0` | +| `Unwind@1016bc00` | `1016bc00` | `Unwind@1016bc00` | +| `Unwind@1016bc30` | `1016bc30` | `Unwind@1016bc30` | +| `Unwind@1016bc60` | `1016bc60` | `Unwind@1016bc60` | +| `Unwind@1016bc90` | `1016bc90` | `Unwind@1016bc90` | +| `Unwind@1016bcc0` | `1016bcc0` | `Unwind@1016bcc0` | +| `Unwind@1016bcf0` | `1016bcf0` | `Unwind@1016bcf0` | +| `Unwind@1016bd20` | `1016bd20` | `Unwind@1016bd20` | +| `Unwind@1016bd50` | `1016bd50` | `Unwind@1016bd50` | +| `Unwind@1016bd80` | `1016bd80` | `Unwind@1016bd80` | +| `Unwind@1016bdb0` | `1016bdb0` | `Unwind@1016bdb0` | +| `Unwind@1016bde0` | `1016bde0` | `Unwind@1016bde0` | +| `Unwind@1016be10` | `1016be10` | `Unwind@1016be10` | +| `Unwind@1016be40` | `1016be40` | `Unwind@1016be40` | +| `Unwind@1016be70` | `1016be70` | `Unwind@1016be70` | +| `Unwind@1016bea0` | `1016bea0` | `Unwind@1016bea0` | +| `Unwind@1016bed0` | `1016bed0` | `Unwind@1016bed0` | +| `Unwind@1016bf00` | `1016bf00` | `Unwind@1016bf00` | +| `Unwind@1016bf30` | `1016bf30` | `Unwind@1016bf30` | +| `Unwind@1016bf60` | `1016bf60` | `Unwind@1016bf60` | +| `Unwind@1016bf90` | `1016bf90` | `Unwind@1016bf90` | +| `Unwind@1016bfc0` | `1016bfc0` | `Unwind@1016bfc0` | +| `Unwind@1016bff0` | `1016bff0` | `Unwind@1016bff0` | +| `Unwind@1016c020` | `1016c020` | `Unwind@1016c020` | +| `Unwind@1016c050` | `1016c050` | `Unwind@1016c050` | +| `Unwind@1016c080` | `1016c080` | `Unwind@1016c080` | +| `Unwind@1016c0b0` | `1016c0b0` | `Unwind@1016c0b0` | +| `Unwind@1016c0e0` | `1016c0e0` | `Unwind@1016c0e0` | +| `Unwind@1016c110` | `1016c110` | `Unwind@1016c110` | +| `Unwind@1016c140` | `1016c140` | `Unwind@1016c140` | +| `Unwind@1016c170` | `1016c170` | `Unwind@1016c170` | +| `Unwind@1016c1a0` | `1016c1a0` | `Unwind@1016c1a0` | +| `Unwind@1016c1d0` | `1016c1d0` | `Unwind@1016c1d0` | +| `Unwind@1016c200` | `1016c200` | `Unwind@1016c200` | +| `Unwind@1016c230` | `1016c230` | `Unwind@1016c230` | +| `Unwind@1016c260` | `1016c260` | `Unwind@1016c260` | +| `Unwind@1016c290` | `1016c290` | `Unwind@1016c290` | +| `Unwind@1016c2c0` | `1016c2c0` | `Unwind@1016c2c0` | +| `Unwind@1016c2f0` | `1016c2f0` | `Unwind@1016c2f0` | +| `Unwind@1016c320` | `1016c320` | `Unwind@1016c320` | +| `Unwind@1016c350` | `1016c350` | `Unwind@1016c350` | +| `Unwind@1016c380` | `1016c380` | `Unwind@1016c380` | +| `Unwind@1016c3b0` | `1016c3b0` | `Unwind@1016c3b0` | +| `Unwind@1016c3e0` | `1016c3e0` | `Unwind@1016c3e0` | +| `Unwind@1016c410` | `1016c410` | `Unwind@1016c410` | +| `Unwind@1016c440` | `1016c440` | `Unwind@1016c440` | +| `Unwind@1016c470` | `1016c470` | `Unwind@1016c470` | +| `Unwind@1016c4a0` | `1016c4a0` | `Unwind@1016c4a0` | +| `Unwind@1016c4d0` | `1016c4d0` | `Unwind@1016c4d0` | +| `Unwind@1016c500` | `1016c500` | `Unwind@1016c500` | +| `Unwind@1016c530` | `1016c530` | `Unwind@1016c530` | +| `Unwind@1016c560` | `1016c560` | `Unwind@1016c560` | +| `Unwind@1016c590` | `1016c590` | `Unwind@1016c590` | +| `Unwind@1016c5c0` | `1016c5c0` | `Unwind@1016c5c0` | +| `Unwind@1016c5f0` | `1016c5f0` | `Unwind@1016c5f0` | +| `Unwind@1016c620` | `1016c620` | `Unwind@1016c620` | +| `Unwind@1016c650` | `1016c650` | `Unwind@1016c650` | +| `Unwind@1016c680` | `1016c680` | `Unwind@1016c680` | +| `Unwind@1016c6b0` | `1016c6b0` | `Unwind@1016c6b0` | +| `Unwind@1016c6e0` | `1016c6e0` | `Unwind@1016c6e0` | +| `Unwind@1016c710` | `1016c710` | `Unwind@1016c710` | +| `Unwind@1016c740` | `1016c740` | `Unwind@1016c740` | +| `Unwind@1016c770` | `1016c770` | `Unwind@1016c770` | +| `Unwind@1016c7a0` | `1016c7a0` | `Unwind@1016c7a0` | +| `Unwind@1016c7d0` | `1016c7d0` | `Unwind@1016c7d0` | +| `Unwind@1016c800` | `1016c800` | `Unwind@1016c800` | +| `Unwind@1016c830` | `1016c830` | `Unwind@1016c830` | +| `Unwind@1016c860` | `1016c860` | `Unwind@1016c860` | +| `Unwind@1016c890` | `1016c890` | `Unwind@1016c890` | +| `Unwind@1016c8c0` | `1016c8c0` | `Unwind@1016c8c0` | +| `Unwind@1016c8f0` | `1016c8f0` | `Unwind@1016c8f0` | +| `Unwind@1016c920` | `1016c920` | `Unwind@1016c920` | +| `Unwind@1016c950` | `1016c950` | `Unwind@1016c950` | +| `Unwind@1016c980` | `1016c980` | `Unwind@1016c980` | +| `Unwind@1016c9b0` | `1016c9b0` | `Unwind@1016c9b0` | +| `Unwind@1016c9e0` | `1016c9e0` | `Unwind@1016c9e0` | +| `Unwind@1016ca10` | `1016ca10` | `Unwind@1016ca10` | +| `Unwind@1016ca40` | `1016ca40` | `Unwind@1016ca40` | +| `Unwind@1016ca70` | `1016ca70` | `Unwind@1016ca70` | +| `Unwind@1016caa0` | `1016caa0` | `Unwind@1016caa0` | +| `Unwind@1016cad0` | `1016cad0` | `Unwind@1016cad0` | +| `Unwind@1016cb00` | `1016cb00` | `Unwind@1016cb00` | +| `Unwind@1016cb30` | `1016cb30` | `Unwind@1016cb30` | +| `Unwind@1016cb60` | `1016cb60` | `Unwind@1016cb60` | +| `Unwind@1016cb90` | `1016cb90` | `Unwind@1016cb90` | +| `Unwind@1016cbc0` | `1016cbc0` | `Unwind@1016cbc0` | +| `Unwind@1016cbf0` | `1016cbf0` | `Unwind@1016cbf0` | +| `Unwind@1016cc20` | `1016cc20` | `Unwind@1016cc20` | +| `Unwind@1016cc50` | `1016cc50` | `Unwind@1016cc50` | +| `Unwind@1016cc80` | `1016cc80` | `Unwind@1016cc80` | +| `Unwind@1016ccb0` | `1016ccb0` | `Unwind@1016ccb0` | +| `Unwind@1016cce0` | `1016cce0` | `Unwind@1016cce0` | +| `Unwind@1016cd10` | `1016cd10` | `Unwind@1016cd10` | +| `Unwind@1016cd40` | `1016cd40` | `Unwind@1016cd40` | +| `Unwind@1016cd70` | `1016cd70` | `Unwind@1016cd70` | +| `Unwind@1016cda0` | `1016cda0` | `Unwind@1016cda0` | +| `Unwind@1016cdd0` | `1016cdd0` | `Unwind@1016cdd0` | +| `Unwind@1016ce00` | `1016ce00` | `Unwind@1016ce00` | +| `Unwind@1016ce30` | `1016ce30` | `Unwind@1016ce30` | +| `Unwind@1016ce60` | `1016ce60` | `Unwind@1016ce60` | +| `Unwind@1016ce90` | `1016ce90` | `Unwind@1016ce90` | +| `Unwind@1016cec0` | `1016cec0` | `Unwind@1016cec0` | +| `Unwind@1016cef0` | `1016cef0` | `Unwind@1016cef0` | +| `Unwind@1016cf20` | `1016cf20` | `Unwind@1016cf20` | +| `Unwind@1016cf50` | `1016cf50` | `Unwind@1016cf50` | +| `Unwind@1016cf80` | `1016cf80` | `Unwind@1016cf80` | +| `Unwind@1016cff0` | `1016cff0` | `Unwind@1016cff0` | +| `Unwind@1016d020` | `1016d020` | `Unwind@1016d020` | +| `Unwind@1016d050` | `1016d050` | `Unwind@1016d050` | +| `Unwind@1016d058` | `1016d058` | `Unwind@1016d058` | +| `Unwind@1016d080` | `1016d080` | `Unwind@1016d080` | +| `Unwind@1016d088` | `1016d088` | `Unwind@1016d088` | +| `Unwind@1016d090` | `1016d090` | `Unwind@1016d090` | +| `Unwind@1016d0c0` | `1016d0c0` | `Unwind@1016d0c0` | +| `Unwind@1016d0f0` | `1016d0f0` | `Unwind@1016d0f0` | +| `Unwind@1016d120` | `1016d120` | `Unwind@1016d120` | +| `Unwind@1016d160` | `1016d160` | `Unwind@1016d160` | +| `Unwind@1016d16b` | `1016d16b` | `Unwind@1016d16b` | +| `Unwind@1016d1a0` | `1016d1a0` | `Unwind@1016d1a0` | +| `Unwind@1016d1a8` | `1016d1a8` | `Unwind@1016d1a8` | +| `Unwind@1016d1d0` | `1016d1d0` | `Unwind@1016d1d0` | +| `Unwind@1016d200` | `1016d200` | `Unwind@1016d200` | +| `Unwind@1016d230` | `1016d230` | `Unwind@1016d230` | +| `Unwind@1016d260` | `1016d260` | `Unwind@1016d260` | +| `Unwind@1016d268` | `1016d268` | `Unwind@1016d268` | +| `Unwind@1016d270` | `1016d270` | `Unwind@1016d270` | +| `Unwind@1016d2b0` | `1016d2b0` | `Unwind@1016d2b0` | +| `Unwind@1016d2e0` | `1016d2e0` | `Unwind@1016d2e0` | +| `Unwind@1016d310` | `1016d310` | `Unwind@1016d310` | +| `Unwind@1016d318` | `1016d318` | `Unwind@1016d318` | +| `Unwind@1016d340` | `1016d340` | `Unwind@1016d340` | +| `Unwind@1016d348` | `1016d348` | `Unwind@1016d348` | +| `Unwind@1016d370` | `1016d370` | `Unwind@1016d370` | +| `Unwind@1016d3a0` | `1016d3a0` | `Unwind@1016d3a0` | +| `Unwind@1016d3a8` | `1016d3a8` | `Unwind@1016d3a8` | +| `Unwind@1016d3d0` | `1016d3d0` | `Unwind@1016d3d0` | +| `Unwind@1016d3d8` | `1016d3d8` | `Unwind@1016d3d8` | +| `Unwind@1016d3e3` | `1016d3e3` | `Unwind@1016d3e3` | +| `Unwind@1016d3ee` | `1016d3ee` | `Unwind@1016d3ee` | +| `Unwind@1016d420` | `1016d420` | `Unwind@1016d420` | +| `Unwind@1016d431` | `1016d431` | `Unwind@1016d431` | +| `Unwind@1016d439` | `1016d439` | `Unwind@1016d439` | +| `Unwind@1016d460` | `1016d460` | `Unwind@1016d460` | +| `Unwind@1016d490` | `1016d490` | `Unwind@1016d490` | +| `Unwind@1016d498` | `1016d498` | `Unwind@1016d498` | +| `Unwind@1016d4a0` | `1016d4a0` | `Unwind@1016d4a0` | +| `Unwind@1016d4a8` | `1016d4a8` | `Unwind@1016d4a8` | +| `Unwind@1016d4b0` | `1016d4b0` | `Unwind@1016d4b0` | +| `Unwind@1016d4e0` | `1016d4e0` | `Unwind@1016d4e0` | +| `Unwind@1016d4e8` | `1016d4e8` | `Unwind@1016d4e8` | +| `Unwind@1016d4f3` | `1016d4f3` | `Unwind@1016d4f3` | +| `Unwind@1016d4fb` | `1016d4fb` | `Unwind@1016d4fb` | +| `Unwind@1016d506` | `1016d506` | `Unwind@1016d506` | +| `Unwind@1016d50e` | `1016d50e` | `Unwind@1016d50e` | +| `Unwind@1016d516` | `1016d516` | `Unwind@1016d516` | +| `Unwind@1016d521` | `1016d521` | `Unwind@1016d521` | +| `Unwind@1016d52c` | `1016d52c` | `Unwind@1016d52c` | +| `Unwind@1016d560` | `1016d560` | `Unwind@1016d560` | +| `Unwind@1016d579` | `1016d579` | `Unwind@1016d579` | +| `Unwind@1016d581` | `1016d581` | `Unwind@1016d581` | +| `Unwind@1016d5b0` | `1016d5b0` | `Unwind@1016d5b0` | +| `Unwind@1016d5e0` | `1016d5e0` | `Unwind@1016d5e0` | +| `Unwind@1016d610` | `1016d610` | `Unwind@1016d610` | +| `Unwind@1016d618` | `1016d618` | `Unwind@1016d618` | +| `Unwind@1016d650` | `1016d650` | `Unwind@1016d650` | +| `Unwind@1016d661` | `1016d661` | `Unwind@1016d661` | +| `Unwind@1016d669` | `1016d669` | `Unwind@1016d669` | +| `Unwind@1016d690` | `1016d690` | `Unwind@1016d690` | +| `Unwind@1016d6c0` | `1016d6c0` | `Unwind@1016d6c0` | +| `Unwind@1016d6cb` | `1016d6cb` | `Unwind@1016d6cb` | +| `Unwind@1016d6f0` | `1016d6f0` | `Unwind@1016d6f0` | +| `Unwind@1016d720` | `1016d720` | `Unwind@1016d720` | +| `Unwind@1016d72b` | `1016d72b` | `Unwind@1016d72b` | +| `Unwind@1016d750` | `1016d750` | `Unwind@1016d750` | +| `Unwind@1016d761` | `1016d761` | `Unwind@1016d761` | +| `Unwind@1016d76c` | `1016d76c` | `Unwind@1016d76c` | +| `Unwind@1016d790` | `1016d790` | `Unwind@1016d790` | +| `Unwind@1016d79b` | `1016d79b` | `Unwind@1016d79b` | +| `Unwind@1016d7a3` | `1016d7a3` | `Unwind@1016d7a3` | +| `Unwind@1016d7e0` | `1016d7e0` | `Unwind@1016d7e0` | +| `Unwind@1016d7f1` | `1016d7f1` | `Unwind@1016d7f1` | +| `Unwind@1016d7fc` | `1016d7fc` | `Unwind@1016d7fc` | +| `Unwind@1016d820` | `1016d820` | `Unwind@1016d820` | +| `Unwind@1016d850` | `1016d850` | `Unwind@1016d850` | +| `Unwind@1016d858` | `1016d858` | `Unwind@1016d858` | +| `Unwind@1016d860` | `1016d860` | `Unwind@1016d860` | +| `Unwind@1016d86e` | `1016d86e` | `Unwind@1016d86e` | +| `Unwind@1016d87c` | `1016d87c` | `Unwind@1016d87c` | +| `Unwind@1016d88a` | `1016d88a` | `Unwind@1016d88a` | +| `Unwind@1016d898` | `1016d898` | `Unwind@1016d898` | +| `Unwind@1016d8a6` | `1016d8a6` | `Unwind@1016d8a6` | +| `Unwind@1016d8b4` | `1016d8b4` | `Unwind@1016d8b4` | +| `Unwind@1016d8bf` | `1016d8bf` | `Unwind@1016d8bf` | +| `Unwind@1016d8ca` | `1016d8ca` | `Unwind@1016d8ca` | +| `Unwind@1016d900` | `1016d900` | `Unwind@1016d900` | +| `Unwind@1016d90b` | `1016d90b` | `Unwind@1016d90b` | +| `Unwind@1016d916` | `1016d916` | `Unwind@1016d916` | +| `Unwind@1016d921` | `1016d921` | `Unwind@1016d921` | +| `Unwind@1016d92f` | `1016d92f` | `Unwind@1016d92f` | +| `Unwind@1016d93d` | `1016d93d` | `Unwind@1016d93d` | +| `Unwind@1016d94b` | `1016d94b` | `Unwind@1016d94b` | +| `Unwind@1016d953` | `1016d953` | `Unwind@1016d953` | +| `Unwind@1016d95b` | `1016d95b` | `Unwind@1016d95b` | +| `Unwind@1016d966` | `1016d966` | `Unwind@1016d966` | +| `Unwind@1016d971` | `1016d971` | `Unwind@1016d971` | +| `Unwind@1016d97c` | `1016d97c` | `Unwind@1016d97c` | +| `Unwind@1016d987` | `1016d987` | `Unwind@1016d987` | +| `Unwind@1016d98f` | `1016d98f` | `Unwind@1016d98f` | +| `Unwind@1016d997` | `1016d997` | `Unwind@1016d997` | +| `Unwind@1016d99f` | `1016d99f` | `Unwind@1016d99f` | +| `Unwind@1016d9a7` | `1016d9a7` | `Unwind@1016d9a7` | +| `Unwind@1016d9af` | `1016d9af` | `Unwind@1016d9af` | +| `Unwind@1016d9b7` | `1016d9b7` | `Unwind@1016d9b7` | +| `Unwind@1016d9c2` | `1016d9c2` | `Unwind@1016d9c2` | +| `Unwind@1016d9cd` | `1016d9cd` | `Unwind@1016d9cd` | +| `Unwind@1016d9d5` | `1016d9d5` | `Unwind@1016d9d5` | +| `Unwind@1016d9dd` | `1016d9dd` | `Unwind@1016d9dd` | +| `Unwind@1016d9e6` | `1016d9e6` | `Unwind@1016d9e6` | +| `Unwind@1016d9f1` | `1016d9f1` | `Unwind@1016d9f1` | +| `Unwind@1016d9f9` | `1016d9f9` | `Unwind@1016d9f9` | +| `Unwind@1016da01` | `1016da01` | `Unwind@1016da01` | +| `Unwind@1016da30` | `1016da30` | `Unwind@1016da30` | +| `Unwind@1016da3b` | `1016da3b` | `Unwind@1016da3b` | +| `Unwind@1016da46` | `1016da46` | `Unwind@1016da46` | +| `Unwind@1016da51` | `1016da51` | `Unwind@1016da51` | +| `Unwind@1016da5c` | `1016da5c` | `Unwind@1016da5c` | +| `Unwind@1016da67` | `1016da67` | `Unwind@1016da67` | +| `Unwind@1016da75` | `1016da75` | `Unwind@1016da75` | +| `Unwind@1016da80` | `1016da80` | `Unwind@1016da80` | +| `Unwind@1016dac0` | `1016dac0` | `Unwind@1016dac0` | +| `Unwind@1016dac8` | `1016dac8` | `Unwind@1016dac8` | +| `Unwind@1016dad0` | `1016dad0` | `Unwind@1016dad0` | +| `Unwind@1016dad8` | `1016dad8` | `Unwind@1016dad8` | +| `Unwind@1016db00` | `1016db00` | `Unwind@1016db00` | +| `Unwind@1016db08` | `1016db08` | `Unwind@1016db08` | +| `Unwind@1016db10` | `1016db10` | `Unwind@1016db10` | +| `Unwind@1016db18` | `1016db18` | `Unwind@1016db18` | +| `Unwind@1016db20` | `1016db20` | `Unwind@1016db20` | +| `Unwind@1016db50` | `1016db50` | `Unwind@1016db50` | +| `Unwind@1016db58` | `1016db58` | `Unwind@1016db58` | +| `Unwind@1016db60` | `1016db60` | `Unwind@1016db60` | +| `Unwind@1016db68` | `1016db68` | `Unwind@1016db68` | +| `Unwind@1016db70` | `1016db70` | `Unwind@1016db70` | +| `Unwind@1016dba0` | `1016dba0` | `Unwind@1016dba0` | +| `Unwind@1016dba8` | `1016dba8` | `Unwind@1016dba8` | +| `Unwind@1016dbb0` | `1016dbb0` | `Unwind@1016dbb0` | +| `Unwind@1016dbbb` | `1016dbbb` | `Unwind@1016dbbb` | +| `Unwind@1016dbc3` | `1016dbc3` | `Unwind@1016dbc3` | +| `Unwind@1016dbcb` | `1016dbcb` | `Unwind@1016dbcb` | +| `Unwind@1016dbd6` | `1016dbd6` | `Unwind@1016dbd6` | +| `Unwind@1016dbde` | `1016dbde` | `Unwind@1016dbde` | +| `Unwind@1016dbe6` | `1016dbe6` | `Unwind@1016dbe6` | +| `Unwind@1016dbee` | `1016dbee` | `Unwind@1016dbee` | +| `Unwind@1016dbf6` | `1016dbf6` | `Unwind@1016dbf6` | +| `Unwind@1016dbfe` | `1016dbfe` | `Unwind@1016dbfe` | +| `Unwind@1016dc06` | `1016dc06` | `Unwind@1016dc06` | +| `Unwind@1016dc30` | `1016dc30` | `Unwind@1016dc30` | +| `Unwind@1016dc38` | `1016dc38` | `Unwind@1016dc38` | +| `Unwind@1016dc40` | `1016dc40` | `Unwind@1016dc40` | +| `Unwind@1016dc48` | `1016dc48` | `Unwind@1016dc48` | +| `Unwind@1016dc50` | `1016dc50` | `Unwind@1016dc50` | +| `Unwind@1016dc80` | `1016dc80` | `Unwind@1016dc80` | +| `Unwind@1016dc88` | `1016dc88` | `Unwind@1016dc88` | +| `Unwind@1016dc90` | `1016dc90` | `Unwind@1016dc90` | +| `Unwind@1016dc98` | `1016dc98` | `Unwind@1016dc98` | +| `Unwind@1016dca0` | `1016dca0` | `Unwind@1016dca0` | +| `Unwind@1016dcd0` | `1016dcd0` | `Unwind@1016dcd0` | +| `Unwind@1016dcd8` | `1016dcd8` | `Unwind@1016dcd8` | +| `Unwind@1016dce0` | `1016dce0` | `Unwind@1016dce0` | +| `Unwind@1016dce8` | `1016dce8` | `Unwind@1016dce8` | +| `Unwind@1016dcf0` | `1016dcf0` | `Unwind@1016dcf0` | +| `Unwind@1016dd20` | `1016dd20` | `Unwind@1016dd20` | +| `Unwind@1016dd28` | `1016dd28` | `Unwind@1016dd28` | +| `Unwind@1016dd30` | `1016dd30` | `Unwind@1016dd30` | +| `Unwind@1016dd38` | `1016dd38` | `Unwind@1016dd38` | +| `Unwind@1016dd43` | `1016dd43` | `Unwind@1016dd43` | +| `Unwind@1016dd4e` | `1016dd4e` | `Unwind@1016dd4e` | +| `Unwind@1016dd56` | `1016dd56` | `Unwind@1016dd56` | +| `Unwind@1016dd5e` | `1016dd5e` | `Unwind@1016dd5e` | +| `Unwind@1016dd66` | `1016dd66` | `Unwind@1016dd66` | +| `Unwind@1016dd6e` | `1016dd6e` | `Unwind@1016dd6e` | +| `Unwind@1016dd76` | `1016dd76` | `Unwind@1016dd76` | +| `Unwind@1016dd81` | `1016dd81` | `Unwind@1016dd81` | +| `Unwind@1016ddb0` | `1016ddb0` | `Unwind@1016ddb0` | +| `Unwind@1016ddb8` | `1016ddb8` | `Unwind@1016ddb8` | +| `Unwind@1016ddc0` | `1016ddc0` | `Unwind@1016ddc0` | +| `Unwind@1016ddc8` | `1016ddc8` | `Unwind@1016ddc8` | +| `Unwind@1016ddd0` | `1016ddd0` | `Unwind@1016ddd0` | +| `Unwind@1016de00` | `1016de00` | `Unwind@1016de00` | +| `Unwind@1016de0b` | `1016de0b` | `Unwind@1016de0b` | +| `Unwind@1016de16` | `1016de16` | `Unwind@1016de16` | +| `Unwind@1016de21` | `1016de21` | `Unwind@1016de21` | +| `Unwind@1016de2c` | `1016de2c` | `Unwind@1016de2c` | +| `Unwind@1016de60` | `1016de60` | `Unwind@1016de60` | +| `Unwind@1016de68` | `1016de68` | `Unwind@1016de68` | +| `Unwind@1016de70` | `1016de70` | `Unwind@1016de70` | +| `Unwind@1016de78` | `1016de78` | `Unwind@1016de78` | +| `Unwind@1016de80` | `1016de80` | `Unwind@1016de80` | +| `Unwind@1016deb0` | `1016deb0` | `Unwind@1016deb0` | +| `Unwind@1016debb` | `1016debb` | `Unwind@1016debb` | +| `Unwind@1016dec6` | `1016dec6` | `Unwind@1016dec6` | +| `Unwind@1016ded1` | `1016ded1` | `Unwind@1016ded1` | +| `Unwind@1016dedc` | `1016dedc` | `Unwind@1016dedc` | +| `Unwind@1016df10` | `1016df10` | `Unwind@1016df10` | +| `Unwind@1016df1b` | `1016df1b` | `Unwind@1016df1b` | +| `Unwind@1016df26` | `1016df26` | `Unwind@1016df26` | +| `Unwind@1016df31` | `1016df31` | `Unwind@1016df31` | +| `Unwind@1016df3c` | `1016df3c` | `Unwind@1016df3c` | +| `Unwind@1016df47` | `1016df47` | `Unwind@1016df47` | +| `Unwind@1016df52` | `1016df52` | `Unwind@1016df52` | +| `Unwind@1016df90` | `1016df90` | `Unwind@1016df90` | +| `Unwind@1016df9b` | `1016df9b` | `Unwind@1016df9b` | +| `Unwind@1016dfa6` | `1016dfa6` | `Unwind@1016dfa6` | +| `Unwind@1016dfb1` | `1016dfb1` | `Unwind@1016dfb1` | +| `Unwind@1016dfbc` | `1016dfbc` | `Unwind@1016dfbc` | +| `Unwind@1016dfc7` | `1016dfc7` | `Unwind@1016dfc7` | +| `Unwind@1016e000` | `1016e000` | `Unwind@1016e000` | +| `Unwind@1016e00b` | `1016e00b` | `Unwind@1016e00b` | +| `Unwind@1016e016` | `1016e016` | `Unwind@1016e016` | +| `Unwind@1016e021` | `1016e021` | `Unwind@1016e021` | +| `Unwind@1016e02c` | `1016e02c` | `Unwind@1016e02c` | +| `Unwind@1016e037` | `1016e037` | `Unwind@1016e037` | +| `Unwind@1016e042` | `1016e042` | `Unwind@1016e042` | +| `Unwind@1016e080` | `1016e080` | `Unwind@1016e080` | +| `Unwind@1016e08b` | `1016e08b` | `Unwind@1016e08b` | +| `Unwind@1016e096` | `1016e096` | `Unwind@1016e096` | +| `Unwind@1016e0a1` | `1016e0a1` | `Unwind@1016e0a1` | +| `Unwind@1016e0ac` | `1016e0ac` | `Unwind@1016e0ac` | +| `Unwind@1016e0b7` | `1016e0b7` | `Unwind@1016e0b7` | +| `Unwind@1016e0c2` | `1016e0c2` | `Unwind@1016e0c2` | +| `Unwind@1016e100` | `1016e100` | `Unwind@1016e100` | +| `Unwind@1016e10b` | `1016e10b` | `Unwind@1016e10b` | +| `Unwind@1016e116` | `1016e116` | `Unwind@1016e116` | +| `Unwind@1016e121` | `1016e121` | `Unwind@1016e121` | +| `Unwind@1016e12c` | `1016e12c` | `Unwind@1016e12c` | +| `Unwind@1016e137` | `1016e137` | `Unwind@1016e137` | +| `Unwind@1016e142` | `1016e142` | `Unwind@1016e142` | +| `Unwind@1016e180` | `1016e180` | `Unwind@1016e180` | +| `Unwind@1016e18b` | `1016e18b` | `Unwind@1016e18b` | +| `Unwind@1016e196` | `1016e196` | `Unwind@1016e196` | +| `Unwind@1016e1a1` | `1016e1a1` | `Unwind@1016e1a1` | +| `Unwind@1016e1ac` | `1016e1ac` | `Unwind@1016e1ac` | +| `Unwind@1016e1b7` | `1016e1b7` | `Unwind@1016e1b7` | +| `Unwind@1016e1f0` | `1016e1f0` | `Unwind@1016e1f0` | +| `Unwind@1016e1f8` | `1016e1f8` | `Unwind@1016e1f8` | +| `Unwind@1016e200` | `1016e200` | `Unwind@1016e200` | +| `Unwind@1016e208` | `1016e208` | `Unwind@1016e208` | +| `Unwind@1016e210` | `1016e210` | `Unwind@1016e210` | +| `Unwind@1016e240` | `1016e240` | `Unwind@1016e240` | +| `Unwind@1016e248` | `1016e248` | `Unwind@1016e248` | +| `Unwind@1016e250` | `1016e250` | `Unwind@1016e250` | +| `Unwind@1016e25b` | `1016e25b` | `Unwind@1016e25b` | +| `Unwind@1016e263` | `1016e263` | `Unwind@1016e263` | +| `Unwind@1016e26b` | `1016e26b` | `Unwind@1016e26b` | +| `Unwind@1016e273` | `1016e273` | `Unwind@1016e273` | +| `Unwind@1016e27b` | `1016e27b` | `Unwind@1016e27b` | +| `Unwind@1016e283` | `1016e283` | `Unwind@1016e283` | +| `Unwind@1016e28b` | `1016e28b` | `Unwind@1016e28b` | +| `Unwind@1016e293` | `1016e293` | `Unwind@1016e293` | +| `Unwind@1016e2d0` | `1016e2d0` | `Unwind@1016e2d0` | +| `Unwind@1016e2d8` | `1016e2d8` | `Unwind@1016e2d8` | +| `Unwind@1016e2e3` | `1016e2e3` | `Unwind@1016e2e3` | +| `Unwind@1016e2eb` | `1016e2eb` | `Unwind@1016e2eb` | +| `Unwind@1016e2f3` | `1016e2f3` | `Unwind@1016e2f3` | +| `Unwind@1016e2fb` | `1016e2fb` | `Unwind@1016e2fb` | +| `Unwind@1016e320` | `1016e320` | `Unwind@1016e320` | +| `Unwind@1016e328` | `1016e328` | `Unwind@1016e328` | +| `Unwind@1016e330` | `1016e330` | `Unwind@1016e330` | +| `Unwind@1016e338` | `1016e338` | `Unwind@1016e338` | +| `Unwind@1016e340` | `1016e340` | `Unwind@1016e340` | +| `Unwind@1016e370` | `1016e370` | `Unwind@1016e370` | +| `Unwind@1016e378` | `1016e378` | `Unwind@1016e378` | +| `Unwind@1016e380` | `1016e380` | `Unwind@1016e380` | +| `Unwind@1016e388` | `1016e388` | `Unwind@1016e388` | +| `Unwind@1016e390` | `1016e390` | `Unwind@1016e390` | +| `Unwind@1016e3c0` | `1016e3c0` | `Unwind@1016e3c0` | +| `Unwind@1016e3c8` | `1016e3c8` | `Unwind@1016e3c8` | +| `Unwind@1016e3d0` | `1016e3d0` | `Unwind@1016e3d0` | +| `Unwind@1016e3d8` | `1016e3d8` | `Unwind@1016e3d8` | +| `Unwind@1016e3e0` | `1016e3e0` | `Unwind@1016e3e0` | +| `Unwind@1016e3e8` | `1016e3e8` | `Unwind@1016e3e8` | +| `Unwind@1016e420` | `1016e420` | `Unwind@1016e420` | +| `Unwind@1016e428` | `1016e428` | `Unwind@1016e428` | +| `Unwind@1016e430` | `1016e430` | `Unwind@1016e430` | +| `Unwind@1016e438` | `1016e438` | `Unwind@1016e438` | +| `Unwind@1016e440` | `1016e440` | `Unwind@1016e440` | +| `Unwind@1016e470` | `1016e470` | `Unwind@1016e470` | +| `Unwind@1016e478` | `1016e478` | `Unwind@1016e478` | +| `Unwind@1016e480` | `1016e480` | `Unwind@1016e480` | +| `Unwind@1016e488` | `1016e488` | `Unwind@1016e488` | +| `Unwind@1016e490` | `1016e490` | `Unwind@1016e490` | +| `Unwind@1016e4c0` | `1016e4c0` | `Unwind@1016e4c0` | +| `Unwind@1016e4c8` | `1016e4c8` | `Unwind@1016e4c8` | +| `Unwind@1016e4d0` | `1016e4d0` | `Unwind@1016e4d0` | +| `Unwind@1016e4d8` | `1016e4d8` | `Unwind@1016e4d8` | +| `Unwind@1016e4e0` | `1016e4e0` | `Unwind@1016e4e0` | +| `Unwind@1016e510` | `1016e510` | `Unwind@1016e510` | +| `Unwind@1016e518` | `1016e518` | `Unwind@1016e518` | +| `Unwind@1016e520` | `1016e520` | `Unwind@1016e520` | +| `Unwind@1016e528` | `1016e528` | `Unwind@1016e528` | +| `Unwind@1016e530` | `1016e530` | `Unwind@1016e530` | +| `Unwind@1016e560` | `1016e560` | `Unwind@1016e560` | +| `Unwind@1016e568` | `1016e568` | `Unwind@1016e568` | +| `Unwind@1016e570` | `1016e570` | `Unwind@1016e570` | +| `Unwind@1016e578` | `1016e578` | `Unwind@1016e578` | +| `Unwind@1016e580` | `1016e580` | `Unwind@1016e580` | +| `Unwind@1016e5b0` | `1016e5b0` | `Unwind@1016e5b0` | +| `Unwind@1016e5b8` | `1016e5b8` | `Unwind@1016e5b8` | +| `Unwind@1016e5c0` | `1016e5c0` | `Unwind@1016e5c0` | +| `Unwind@1016e5c8` | `1016e5c8` | `Unwind@1016e5c8` | +| `Unwind@1016e5d3` | `1016e5d3` | `Unwind@1016e5d3` | +| `Unwind@1016e610` | `1016e610` | `Unwind@1016e610` | +| `Unwind@1016e618` | `1016e618` | `Unwind@1016e618` | +| `Unwind@1016e620` | `1016e620` | `Unwind@1016e620` | +| `Unwind@1016e628` | `1016e628` | `Unwind@1016e628` | +| `Unwind@1016e630` | `1016e630` | `Unwind@1016e630` | +| `Unwind@1016e638` | `1016e638` | `Unwind@1016e638` | +| `Unwind@1016e643` | `1016e643` | `Unwind@1016e643` | +| `Unwind@1016e670` | `1016e670` | `Unwind@1016e670` | +| `Unwind@1016e678` | `1016e678` | `Unwind@1016e678` | +| `Unwind@1016e680` | `1016e680` | `Unwind@1016e680` | +| `Unwind@1016e688` | `1016e688` | `Unwind@1016e688` | +| `Unwind@1016e690` | `1016e690` | `Unwind@1016e690` | +| `Unwind@1016e6c0` | `1016e6c0` | `Unwind@1016e6c0` | +| `Unwind@1016e6c8` | `1016e6c8` | `Unwind@1016e6c8` | +| `Unwind@1016e6d0` | `1016e6d0` | `Unwind@1016e6d0` | +| `Unwind@1016e6d8` | `1016e6d8` | `Unwind@1016e6d8` | +| `Unwind@1016e6e0` | `1016e6e0` | `Unwind@1016e6e0` | +| `Unwind@1016e710` | `1016e710` | `Unwind@1016e710` | +| `Unwind@1016e718` | `1016e718` | `Unwind@1016e718` | +| `Unwind@1016e720` | `1016e720` | `Unwind@1016e720` | +| `Unwind@1016e728` | `1016e728` | `Unwind@1016e728` | +| `Unwind@1016e730` | `1016e730` | `Unwind@1016e730` | +| `Unwind@1016e760` | `1016e760` | `Unwind@1016e760` | +| `Unwind@1016e768` | `1016e768` | `Unwind@1016e768` | +| `Unwind@1016e770` | `1016e770` | `Unwind@1016e770` | +| `Unwind@1016e778` | `1016e778` | `Unwind@1016e778` | +| `Unwind@1016e7a0` | `1016e7a0` | `Unwind@1016e7a0` | +| `Unwind@1016e7a8` | `1016e7a8` | `Unwind@1016e7a8` | +| `Unwind@1016e7b0` | `1016e7b0` | `Unwind@1016e7b0` | +| `Unwind@1016e7b8` | `1016e7b8` | `Unwind@1016e7b8` | +| `Unwind@1016e7c0` | `1016e7c0` | `Unwind@1016e7c0` | +| `Unwind@1016e7f0` | `1016e7f0` | `Unwind@1016e7f0` | +| `Unwind@1016e7f8` | `1016e7f8` | `Unwind@1016e7f8` | +| `Unwind@1016e800` | `1016e800` | `Unwind@1016e800` | +| `Unwind@1016e808` | `1016e808` | `Unwind@1016e808` | +| `Unwind@1016e810` | `1016e810` | `Unwind@1016e810` | +| `Unwind@1016e840` | `1016e840` | `Unwind@1016e840` | +| `Unwind@1016e848` | `1016e848` | `Unwind@1016e848` | +| `Unwind@1016e850` | `1016e850` | `Unwind@1016e850` | +| `Unwind@1016e858` | `1016e858` | `Unwind@1016e858` | +| `Unwind@1016e860` | `1016e860` | `Unwind@1016e860` | +| `Unwind@1016e890` | `1016e890` | `Unwind@1016e890` | +| `Unwind@1016e898` | `1016e898` | `Unwind@1016e898` | +| `Unwind@1016e8a0` | `1016e8a0` | `Unwind@1016e8a0` | +| `Unwind@1016e8a8` | `1016e8a8` | `Unwind@1016e8a8` | +| `Unwind@1016e8b0` | `1016e8b0` | `Unwind@1016e8b0` | +| `Unwind@1016e8e0` | `1016e8e0` | `Unwind@1016e8e0` | +| `Unwind@1016e8eb` | `1016e8eb` | `Unwind@1016e8eb` | +| `Unwind@1016e8f6` | `1016e8f6` | `Unwind@1016e8f6` | +| `Unwind@1016e901` | `1016e901` | `Unwind@1016e901` | +| `Unwind@1016e90c` | `1016e90c` | `Unwind@1016e90c` | +| `Unwind@1016e917` | `1016e917` | `Unwind@1016e917` | +| `Unwind@1016e922` | `1016e922` | `Unwind@1016e922` | +| `Unwind@1016e92d` | `1016e92d` | `Unwind@1016e92d` | +| `Unwind@1016e938` | `1016e938` | `Unwind@1016e938` | +| `Unwind@1016e943` | `1016e943` | `Unwind@1016e943` | +| `Unwind@1016e94b` | `1016e94b` | `Unwind@1016e94b` | +| `Unwind@1016e980` | `1016e980` | `Unwind@1016e980` | +| `Unwind@1016e988` | `1016e988` | `Unwind@1016e988` | +| `Unwind@1016e990` | `1016e990` | `Unwind@1016e990` | +| `Unwind@1016e998` | `1016e998` | `Unwind@1016e998` | +| `Unwind@1016e9a0` | `1016e9a0` | `Unwind@1016e9a0` | +| `Unwind@1016e9d0` | `1016e9d0` | `Unwind@1016e9d0` | +| `Unwind@1016e9d8` | `1016e9d8` | `Unwind@1016e9d8` | +| `Unwind@1016e9e0` | `1016e9e0` | `Unwind@1016e9e0` | +| `Unwind@1016e9e8` | `1016e9e8` | `Unwind@1016e9e8` | +| `Unwind@1016e9f0` | `1016e9f0` | `Unwind@1016e9f0` | +| `Unwind@1016ea20` | `1016ea20` | `Unwind@1016ea20` | +| `Unwind@1016ea28` | `1016ea28` | `Unwind@1016ea28` | +| `Unwind@1016ea30` | `1016ea30` | `Unwind@1016ea30` | +| `Unwind@1016ea38` | `1016ea38` | `Unwind@1016ea38` | +| `Unwind@1016ea40` | `1016ea40` | `Unwind@1016ea40` | +| `Unwind@1016ea70` | `1016ea70` | `Unwind@1016ea70` | +| `Unwind@1016ea78` | `1016ea78` | `Unwind@1016ea78` | +| `Unwind@1016ea80` | `1016ea80` | `Unwind@1016ea80` | +| `Unwind@1016ea88` | `1016ea88` | `Unwind@1016ea88` | +| `Unwind@1016ea90` | `1016ea90` | `Unwind@1016ea90` | +| `Unwind@1016eac0` | `1016eac0` | `Unwind@1016eac0` | +| `Unwind@1016eac8` | `1016eac8` | `Unwind@1016eac8` | +| `Unwind@1016ead0` | `1016ead0` | `Unwind@1016ead0` | +| `Unwind@1016ead8` | `1016ead8` | `Unwind@1016ead8` | +| `Unwind@1016eae0` | `1016eae0` | `Unwind@1016eae0` | +| `Unwind@1016eb10` | `1016eb10` | `Unwind@1016eb10` | +| `Unwind@1016eb18` | `1016eb18` | `Unwind@1016eb18` | +| `Unwind@1016eb20` | `1016eb20` | `Unwind@1016eb20` | +| `Unwind@1016eb28` | `1016eb28` | `Unwind@1016eb28` | +| `Unwind@1016eb30` | `1016eb30` | `Unwind@1016eb30` | +| `Unwind@1016eb60` | `1016eb60` | `Unwind@1016eb60` | +| `Unwind@1016eb68` | `1016eb68` | `Unwind@1016eb68` | +| `Unwind@1016eb70` | `1016eb70` | `Unwind@1016eb70` | +| `Unwind@1016eb78` | `1016eb78` | `Unwind@1016eb78` | +| `Unwind@1016eb80` | `1016eb80` | `Unwind@1016eb80` | +| `Unwind@1016eb88` | `1016eb88` | `Unwind@1016eb88` | +| `Unwind@1016eb90` | `1016eb90` | `Unwind@1016eb90` | +| `Unwind@1016eb98` | `1016eb98` | `Unwind@1016eb98` | +| `Unwind@1016eba0` | `1016eba0` | `Unwind@1016eba0` | +| `Unwind@1016eba8` | `1016eba8` | `Unwind@1016eba8` | +| `Unwind@1016ebd0` | `1016ebd0` | `Unwind@1016ebd0` | +| `Unwind@1016ebd8` | `1016ebd8` | `Unwind@1016ebd8` | +| `Unwind@1016ebe0` | `1016ebe0` | `Unwind@1016ebe0` | +| `Unwind@1016ebe8` | `1016ebe8` | `Unwind@1016ebe8` | +| `Unwind@1016ebf0` | `1016ebf0` | `Unwind@1016ebf0` | +| `Unwind@1016ec20` | `1016ec20` | `Unwind@1016ec20` | +| `Unwind@1016ec28` | `1016ec28` | `Unwind@1016ec28` | +| `Unwind@1016ec30` | `1016ec30` | `Unwind@1016ec30` | +| `Unwind@1016ec3b` | `1016ec3b` | `Unwind@1016ec3b` | +| `Unwind@1016ec46` | `1016ec46` | `Unwind@1016ec46` | +| `Unwind@1016ec51` | `1016ec51` | `Unwind@1016ec51` | +| `Unwind@1016ec5c` | `1016ec5c` | `Unwind@1016ec5c` | +| `Unwind@1016ec64` | `1016ec64` | `Unwind@1016ec64` | +| `Unwind@1016ec6c` | `1016ec6c` | `Unwind@1016ec6c` | +| `Unwind@1016ec74` | `1016ec74` | `Unwind@1016ec74` | +| `Unwind@1016ec7c` | `1016ec7c` | `Unwind@1016ec7c` | +| `Unwind@1016ec84` | `1016ec84` | `Unwind@1016ec84` | +| `Unwind@1016ecb0` | `1016ecb0` | `Unwind@1016ecb0` | +| `Unwind@1016ecb8` | `1016ecb8` | `Unwind@1016ecb8` | +| `Unwind@1016ecc0` | `1016ecc0` | `Unwind@1016ecc0` | +| `Unwind@1016ecc8` | `1016ecc8` | `Unwind@1016ecc8` | +| `Unwind@1016ecd0` | `1016ecd0` | `Unwind@1016ecd0` | +| `Unwind@1016ed00` | `1016ed00` | `Unwind@1016ed00` | +| `Unwind@1016ed0b` | `1016ed0b` | `Unwind@1016ed0b` | +| `Unwind@1016ed16` | `1016ed16` | `Unwind@1016ed16` | +| `Unwind@1016ed24` | `1016ed24` | `Unwind@1016ed24` | +| `Unwind@1016ed32` | `1016ed32` | `Unwind@1016ed32` | +| `Unwind@1016ed40` | `1016ed40` | `Unwind@1016ed40` | +| `Unwind@1016ed4e` | `1016ed4e` | `Unwind@1016ed4e` | +| `Unwind@1016ed59` | `1016ed59` | `Unwind@1016ed59` | +| `Unwind@1016ed64` | `1016ed64` | `Unwind@1016ed64` | +| `Unwind@1016ed6f` | `1016ed6f` | `Unwind@1016ed6f` | +| `Unwind@1016edb0` | `1016edb0` | `Unwind@1016edb0` | +| `Unwind@1016edbb` | `1016edbb` | `Unwind@1016edbb` | +| `Unwind@1016edc6` | `1016edc6` | `Unwind@1016edc6` | +| `Unwind@1016edd1` | `1016edd1` | `Unwind@1016edd1` | +| `Unwind@1016eddc` | `1016eddc` | `Unwind@1016eddc` | +| `Unwind@1016ede7` | `1016ede7` | `Unwind@1016ede7` | +| `Unwind@1016edf2` | `1016edf2` | `Unwind@1016edf2` | +| `Unwind@1016ee30` | `1016ee30` | `Unwind@1016ee30` | +| `Unwind@1016ee3b` | `1016ee3b` | `Unwind@1016ee3b` | +| `Unwind@1016ee46` | `1016ee46` | `Unwind@1016ee46` | +| `Unwind@1016ee51` | `1016ee51` | `Unwind@1016ee51` | +| `Unwind@1016ee5c` | `1016ee5c` | `Unwind@1016ee5c` | +| `Unwind@1016ee67` | `1016ee67` | `Unwind@1016ee67` | +| `Unwind@1016eea0` | `1016eea0` | `Unwind@1016eea0` | +| `Unwind@1016eeab` | `1016eeab` | `Unwind@1016eeab` | +| `Unwind@1016eeb6` | `1016eeb6` | `Unwind@1016eeb6` | +| `Unwind@1016eec1` | `1016eec1` | `Unwind@1016eec1` | +| `Unwind@1016eecc` | `1016eecc` | `Unwind@1016eecc` | +| `Unwind@1016eed7` | `1016eed7` | `Unwind@1016eed7` | +| `Unwind@1016ef10` | `1016ef10` | `Unwind@1016ef10` | +| `Unwind@1016ef18` | `1016ef18` | `Unwind@1016ef18` | +| `Unwind@1016ef20` | `1016ef20` | `Unwind@1016ef20` | +| `Unwind@1016ef28` | `1016ef28` | `Unwind@1016ef28` | +| `Unwind@1016ef30` | `1016ef30` | `Unwind@1016ef30` | +| `Unwind@1016ef60` | `1016ef60` | `Unwind@1016ef60` | +| `Unwind@1016ef68` | `1016ef68` | `Unwind@1016ef68` | +| `Unwind@1016ef70` | `1016ef70` | `Unwind@1016ef70` | +| `Unwind@1016ef78` | `1016ef78` | `Unwind@1016ef78` | +| `Unwind@1016ef80` | `1016ef80` | `Unwind@1016ef80` | +| `Unwind@1016efb0` | `1016efb0` | `Unwind@1016efb0` | +| `Unwind@1016efb8` | `1016efb8` | `Unwind@1016efb8` | +| `Unwind@1016efc0` | `1016efc0` | `Unwind@1016efc0` | +| `Unwind@1016efc8` | `1016efc8` | `Unwind@1016efc8` | +| `Unwind@1016efd0` | `1016efd0` | `Unwind@1016efd0` | +| `Unwind@1016f000` | `1016f000` | `Unwind@1016f000` | +| `Unwind@1016f008` | `1016f008` | `Unwind@1016f008` | +| `Unwind@1016f010` | `1016f010` | `Unwind@1016f010` | +| `Unwind@1016f018` | `1016f018` | `Unwind@1016f018` | +| `Unwind@1016f020` | `1016f020` | `Unwind@1016f020` | +| `Unwind@1016f050` | `1016f050` | `Unwind@1016f050` | +| `Unwind@1016f058` | `1016f058` | `Unwind@1016f058` | +| `Unwind@1016f060` | `1016f060` | `Unwind@1016f060` | +| `Unwind@1016f068` | `1016f068` | `Unwind@1016f068` | +| `Unwind@1016f070` | `1016f070` | `Unwind@1016f070` | +| `Unwind@1016f0a0` | `1016f0a0` | `Unwind@1016f0a0` | +| `Unwind@1016f0a8` | `1016f0a8` | `Unwind@1016f0a8` | +| `Unwind@1016f0b0` | `1016f0b0` | `Unwind@1016f0b0` | +| `Unwind@1016f0b8` | `1016f0b8` | `Unwind@1016f0b8` | +| `Unwind@1016f0c0` | `1016f0c0` | `Unwind@1016f0c0` | +| `Unwind@1016f0f0` | `1016f0f0` | `Unwind@1016f0f0` | +| `Unwind@1016f0f8` | `1016f0f8` | `Unwind@1016f0f8` | +| `Unwind@1016f100` | `1016f100` | `Unwind@1016f100` | +| `Unwind@1016f108` | `1016f108` | `Unwind@1016f108` | +| `Unwind@1016f110` | `1016f110` | `Unwind@1016f110` | +| `Unwind@1016f118` | `1016f118` | `Unwind@1016f118` | +| `Unwind@1016f150` | `1016f150` | `Unwind@1016f150` | +| `Unwind@1016f158` | `1016f158` | `Unwind@1016f158` | +| `Unwind@1016f160` | `1016f160` | `Unwind@1016f160` | +| `Unwind@1016f16b` | `1016f16b` | `Unwind@1016f16b` | +| `Unwind@1016f173` | `1016f173` | `Unwind@1016f173` | +| `Unwind@1016f17b` | `1016f17b` | `Unwind@1016f17b` | +| `Unwind@1016f183` | `1016f183` | `Unwind@1016f183` | +| `Unwind@1016f18b` | `1016f18b` | `Unwind@1016f18b` | +| `Unwind@1016f193` | `1016f193` | `Unwind@1016f193` | +| `Unwind@1016f19b` | `1016f19b` | `Unwind@1016f19b` | +| `Unwind@1016f1a3` | `1016f1a3` | `Unwind@1016f1a3` | +| `Unwind@1016f1e0` | `1016f1e0` | `Unwind@1016f1e0` | +| `Unwind@1016f1eb` | `1016f1eb` | `Unwind@1016f1eb` | +| `Unwind@1016f1f6` | `1016f1f6` | `Unwind@1016f1f6` | +| `Unwind@1016f201` | `1016f201` | `Unwind@1016f201` | +| `Unwind@1016f20c` | `1016f20c` | `Unwind@1016f20c` | +| `Unwind@1016f217` | `1016f217` | `Unwind@1016f217` | +| `Unwind@1016f222` | `1016f222` | `Unwind@1016f222` | +| `Unwind@1016f22d` | `1016f22d` | `Unwind@1016f22d` | +| `Unwind@1016f238` | `1016f238` | `Unwind@1016f238` | +| `Unwind@1016f243` | `1016f243` | `Unwind@1016f243` | +| `Unwind@1016f24b` | `1016f24b` | `Unwind@1016f24b` | +| `Unwind@1016f280` | `1016f280` | `Unwind@1016f280` | +| `Unwind@1016f2b0` | `1016f2b0` | `Unwind@1016f2b0` | +| `Unwind@1016f2e0` | `1016f2e0` | `Unwind@1016f2e0` | +| `Unwind@1016f310` | `1016f310` | `Unwind@1016f310` | +| `Unwind@1016f340` | `1016f340` | `Unwind@1016f340` | +| `Unwind@1016f370` | `1016f370` | `Unwind@1016f370` | +| `Unwind@1016f3a0` | `1016f3a0` | `Unwind@1016f3a0` | +| `Unwind@1016f3d0` | `1016f3d0` | `Unwind@1016f3d0` | +| `Unwind@1016f400` | `1016f400` | `Unwind@1016f400` | +| `Unwind@1016f40b` | `1016f40b` | `Unwind@1016f40b` | +| `Unwind@1016f416` | `1016f416` | `Unwind@1016f416` | +| `Unwind@1016f421` | `1016f421` | `Unwind@1016f421` | +| `Unwind@1016f429` | `1016f429` | `Unwind@1016f429` | +| `Unwind@1016f431` | `1016f431` | `Unwind@1016f431` | +| `Unwind@1016f43c` | `1016f43c` | `Unwind@1016f43c` | +| `Unwind@1016f447` | `1016f447` | `Unwind@1016f447` | +| `Unwind@1016f452` | `1016f452` | `Unwind@1016f452` | +| `Unwind@1016f45d` | `1016f45d` | `Unwind@1016f45d` | +| `Unwind@1016f468` | `1016f468` | `Unwind@1016f468` | +| `Unwind@1016f473` | `1016f473` | `Unwind@1016f473` | +| `Unwind@1016f47e` | `1016f47e` | `Unwind@1016f47e` | +| `Unwind@1016f489` | `1016f489` | `Unwind@1016f489` | +| `Unwind@1016f497` | `1016f497` | `Unwind@1016f497` | +| `Unwind@1016f4a2` | `1016f4a2` | `Unwind@1016f4a2` | +| `Unwind@1016f4ad` | `1016f4ad` | `Unwind@1016f4ad` | +| `Unwind@1016f4b8` | `1016f4b8` | `Unwind@1016f4b8` | +| `Unwind@1016f4c3` | `1016f4c3` | `Unwind@1016f4c3` | +| `Unwind@1016f4ce` | `1016f4ce` | `Unwind@1016f4ce` | +| `Unwind@1016f4d9` | `1016f4d9` | `Unwind@1016f4d9` | +| `Unwind@1016f4e4` | `1016f4e4` | `Unwind@1016f4e4` | +| `Unwind@1016f520` | `1016f520` | `Unwind@1016f520` | +| `Unwind@1016f528` | `1016f528` | `Unwind@1016f528` | +| `Unwind@1016f530` | `1016f530` | `Unwind@1016f530` | +| `Unwind@1016f538` | `1016f538` | `Unwind@1016f538` | +| `Unwind@1016f540` | `1016f540` | `Unwind@1016f540` | +| `Unwind@1016f570` | `1016f570` | `Unwind@1016f570` | +| `Unwind@1016f578` | `1016f578` | `Unwind@1016f578` | +| `Unwind@1016f580` | `1016f580` | `Unwind@1016f580` | +| `Unwind@1016f588` | `1016f588` | `Unwind@1016f588` | +| `Unwind@1016f590` | `1016f590` | `Unwind@1016f590` | +| `Unwind@1016f5c0` | `1016f5c0` | `Unwind@1016f5c0` | +| `Unwind@1016f5c8` | `1016f5c8` | `Unwind@1016f5c8` | +| `Unwind@1016f5d0` | `1016f5d0` | `Unwind@1016f5d0` | +| `Unwind@1016f5d8` | `1016f5d8` | `Unwind@1016f5d8` | +| `Unwind@1016f5e0` | `1016f5e0` | `Unwind@1016f5e0` | +| `Unwind@1016f610` | `1016f610` | `Unwind@1016f610` | +| `Unwind@1016f618` | `1016f618` | `Unwind@1016f618` | +| `Unwind@1016f620` | `1016f620` | `Unwind@1016f620` | +| `Unwind@1016f628` | `1016f628` | `Unwind@1016f628` | +| `Unwind@1016f630` | `1016f630` | `Unwind@1016f630` | +| `Unwind@1016f660` | `1016f660` | `Unwind@1016f660` | +| `Unwind@1016f668` | `1016f668` | `Unwind@1016f668` | +| `Unwind@1016f670` | `1016f670` | `Unwind@1016f670` | +| `Unwind@1016f678` | `1016f678` | `Unwind@1016f678` | +| `Unwind@1016f680` | `1016f680` | `Unwind@1016f680` | +| `Unwind@1016f6b0` | `1016f6b0` | `Unwind@1016f6b0` | +| `Unwind@1016f6b8` | `1016f6b8` | `Unwind@1016f6b8` | +| `Unwind@1016f6c0` | `1016f6c0` | `Unwind@1016f6c0` | +| `Unwind@1016f6c8` | `1016f6c8` | `Unwind@1016f6c8` | +| `Unwind@1016f6d0` | `1016f6d0` | `Unwind@1016f6d0` | +| `Unwind@1016f700` | `1016f700` | `Unwind@1016f700` | +| `Unwind@1016f730` | `1016f730` | `Unwind@1016f730` | +| `Unwind@1016f73e` | `1016f73e` | `Unwind@1016f73e` | +| `Unwind@1016f770` | `1016f770` | `Unwind@1016f770` | +| `Unwind@1016f7a0` | `1016f7a0` | `Unwind@1016f7a0` | +| `Unwind@1016f7d0` | `1016f7d0` | `Unwind@1016f7d0` | +| `Unwind@1016f800` | `1016f800` | `Unwind@1016f800` | +| `Unwind@1016f830` | `1016f830` | `Unwind@1016f830` | +| `Unwind@1016f860` | `1016f860` | `Unwind@1016f860` | +| `Unwind@1016f890` | `1016f890` | `Unwind@1016f890` | +| `Unwind@1016f8c0` | `1016f8c0` | `Unwind@1016f8c0` | +| `Unwind@1016f8f0` | `1016f8f0` | `Unwind@1016f8f0` | +| `Unwind@1016f920` | `1016f920` | `Unwind@1016f920` | +| `Unwind@1016f950` | `1016f950` | `Unwind@1016f950` | +| `Unwind@1016f980` | `1016f980` | `Unwind@1016f980` | +| `Unwind@1016f9b0` | `1016f9b0` | `Unwind@1016f9b0` | +| `Unwind@1016f9e0` | `1016f9e0` | `Unwind@1016f9e0` | +| `Unwind@1016fa10` | `1016fa10` | `Unwind@1016fa10` | +| `Unwind@1016fa40` | `1016fa40` | `Unwind@1016fa40` | +| `Unwind@1016fa70` | `1016fa70` | `Unwind@1016fa70` | +| `Unwind@1016faa0` | `1016faa0` | `Unwind@1016faa0` | +| `Unwind@1016fad0` | `1016fad0` | `Unwind@1016fad0` | +| `Unwind@1016fb00` | `1016fb00` | `Unwind@1016fb00` | +| `Unwind@1016fb30` | `1016fb30` | `Unwind@1016fb30` | +| `Unwind@1016fb60` | `1016fb60` | `Unwind@1016fb60` | +| `Unwind@1016fb90` | `1016fb90` | `Unwind@1016fb90` | +| `Unwind@1016fbc0` | `1016fbc0` | `Unwind@1016fbc0` | +| `Unwind@1016fbf0` | `1016fbf0` | `Unwind@1016fbf0` | +| `Unwind@1016fc20` | `1016fc20` | `Unwind@1016fc20` | +| `Unwind@1016fc50` | `1016fc50` | `Unwind@1016fc50` | +| `Unwind@1016fc80` | `1016fc80` | `Unwind@1016fc80` | +| `Unwind@1016fc88` | `1016fc88` | `Unwind@1016fc88` | +| `Unwind@1016fcb0` | `1016fcb0` | `Unwind@1016fcb0` | +| `Unwind@1016fcb8` | `1016fcb8` | `Unwind@1016fcb8` | +| `Unwind@1016fce0` | `1016fce0` | `Unwind@1016fce0` | +| `Unwind@1016fce8` | `1016fce8` | `Unwind@1016fce8` | +| `Unwind@1016fd10` | `1016fd10` | `Unwind@1016fd10` | +| `Unwind@1016fd18` | `1016fd18` | `Unwind@1016fd18` | +| `Unwind@1016fd40` | `1016fd40` | `Unwind@1016fd40` | +| `Unwind@1016fd70` | `1016fd70` | `Unwind@1016fd70` | +| `Unwind@1016fda0` | `1016fda0` | `Unwind@1016fda0` | +| `Unwind@1016fdd0` | `1016fdd0` | `Unwind@1016fdd0` | +| `Unwind@1016fe00` | `1016fe00` | `Unwind@1016fe00` | +| `Unwind@1016fe30` | `1016fe30` | `Unwind@1016fe30` | +| `Unwind@1016fe60` | `1016fe60` | `Unwind@1016fe60` | +| `Unwind@1016fe90` | `1016fe90` | `Unwind@1016fe90` | +| `Unwind@1016fec0` | `1016fec0` | `Unwind@1016fec0` | +| `Unwind@1016fef0` | `1016fef0` | `Unwind@1016fef0` | +| `Unwind@1016ff20` | `1016ff20` | `Unwind@1016ff20` | +| `Unwind@1016ff50` | `1016ff50` | `Unwind@1016ff50` | +| `Unwind@1016ffa0` | `1016ffa0` | `Unwind@1016ffa0` | +| `Unwind@1016ffd0` | `1016ffd0` | `Unwind@1016ffd0` | +| `Unwind@10170000` | `10170000` | `Unwind@10170000` | +| `Unwind@10170030` | `10170030` | `Unwind@10170030` | +| `Unwind@10170038` | `10170038` | `Unwind@10170038` | +| `Unwind@10170060` | `10170060` | `Unwind@10170060` | +| `Unwind@10170068` | `10170068` | `Unwind@10170068` | +| `Unwind@10170090` | `10170090` | `Unwind@10170090` | +| `Unwind@101700e0` | `101700e0` | `Unwind@101700e0` | +| `Unwind@10170110` | `10170110` | `Unwind@10170110` | +| `Unwind@10170140` | `10170140` | `Unwind@10170140` | +| `Unwind@10170190` | `10170190` | `Unwind@10170190` | +| `Unwind@10170198` | `10170198` | `Unwind@10170198` | +| `Unwind@101701a0` | `101701a0` | `Unwind@101701a0` | +| `Unwind@101701d0` | `101701d0` | `Unwind@101701d0` | +| `Unwind@101701d8` | `101701d8` | `Unwind@101701d8` | +| `Unwind@10170210` | `10170210` | `Unwind@10170210` | +| `Unwind@10170218` | `10170218` | `Unwind@10170218` | +| `Unwind@10170250` | `10170250` | `Unwind@10170250` | +| `Unwind@10170280` | `10170280` | `Unwind@10170280` | +| `Unwind@101702b0` | `101702b0` | `Unwind@101702b0` | +| `Unwind@10170310` | `10170310` | `Unwind@10170310` | +| `Unwind@10170340` | `10170340` | `Unwind@10170340` | +| `Unwind@10170370` | `10170370` | `Unwind@10170370` | +| `Unwind@10170381` | `10170381` | `Unwind@10170381` | +| `Unwind@101703b0` | `101703b0` | `Unwind@101703b0` | +| `Unwind@101703b8` | `101703b8` | `Unwind@101703b8` | +| `Unwind@101703e0` | `101703e0` | `Unwind@101703e0` | +| `Unwind@101703e8` | `101703e8` | `Unwind@101703e8` | +| `Unwind@101703f0` | `101703f0` | `Unwind@101703f0` | +| `Unwind@101703f8` | `101703f8` | `Unwind@101703f8` | +| `Unwind@10170420` | `10170420` | `Unwind@10170420` | +| `Unwind@10170490` | `10170490` | `Unwind@10170490` | +| `Unwind@10170498` | `10170498` | `Unwind@10170498` | +| `Unwind@101704a0` | `101704a0` | `Unwind@101704a0` | +| `Unwind@101704d0` | `101704d0` | `Unwind@101704d0` | +| `Unwind@101704d9` | `101704d9` | `Unwind@101704d9` | +| `Unwind@101704ea` | `101704ea` | `Unwind@101704ea` | +| `Unwind@101704f2` | `101704f2` | `Unwind@101704f2` | +| `Unwind@101704fa` | `101704fa` | `Unwind@101704fa` | +| `Unwind@10170502` | `10170502` | `Unwind@10170502` | +| `Unwind@1017050a` | `1017050a` | `Unwind@1017050a` | +| `Unwind@10170512` | `10170512` | `Unwind@10170512` | +| `Unwind@1017051a` | `1017051a` | `Unwind@1017051a` | +| `Unwind@10170522` | `10170522` | `Unwind@10170522` | +| `Unwind@1017052a` | `1017052a` | `Unwind@1017052a` | +| `Unwind@10170533` | `10170533` | `Unwind@10170533` | +| `Unwind@10170570` | `10170570` | `Unwind@10170570` | +| `Unwind@101705a0` | `101705a0` | `Unwind@101705a0` | +| `Unwind@101705d0` | `101705d0` | `Unwind@101705d0` | +| `Unwind@10170600` | `10170600` | `Unwind@10170600` | +| `Unwind@10170608` | `10170608` | `Unwind@10170608` | +| `Unwind@10170630` | `10170630` | `Unwind@10170630` | +| `Unwind@1017063b` | `1017063b` | `Unwind@1017063b` | +| `Unwind@10170643` | `10170643` | `Unwind@10170643` | +| `Unwind@10170670` | `10170670` | `Unwind@10170670` | +| `Unwind@10170681` | `10170681` | `Unwind@10170681` | +| `Unwind@101706b0` | `101706b0` | `Unwind@101706b0` | +| `Unwind@101706b8` | `101706b8` | `Unwind@101706b8` | +| `Unwind@101706c0` | `101706c0` | `Unwind@101706c0` | +| `Unwind@101706f0` | `101706f0` | `Unwind@101706f0` | +| `Unwind@10170720` | `10170720` | `Unwind@10170720` | +| `Unwind@10170728` | `10170728` | `Unwind@10170728` | +| `Unwind@10170750` | `10170750` | `Unwind@10170750` | +| `Unwind@10170758` | `10170758` | `Unwind@10170758` | +| `Unwind@10170760` | `10170760` | `Unwind@10170760` | +| `Unwind@10170790` | `10170790` | `Unwind@10170790` | +| `Unwind@101707c0` | `101707c0` | `Unwind@101707c0` | +| `Unwind@101707f0` | `101707f0` | `Unwind@101707f0` | +| `Unwind@101707f8` | `101707f8` | `Unwind@101707f8` | +| `Unwind@10170820` | `10170820` | `Unwind@10170820` | +| `Unwind@10170850` | `10170850` | `Unwind@10170850` | +| `Unwind@10170858` | `10170858` | `Unwind@10170858` | +| `Unwind@10170863` | `10170863` | `Unwind@10170863` | +| `Unwind@10170890` | `10170890` | `Unwind@10170890` | +| `Unwind@10170898` | `10170898` | `Unwind@10170898` | +| `Unwind@101708c0` | `101708c0` | `Unwind@101708c0` | +| `Unwind@101708c8` | `101708c8` | `Unwind@101708c8` | +| `Unwind@101708d0` | `101708d0` | `Unwind@101708d0` | +| `Unwind@10170900` | `10170900` | `Unwind@10170900` | +| `Unwind@10170930` | `10170930` | `Unwind@10170930` | +| `Unwind@10170938` | `10170938` | `Unwind@10170938` | +| `Unwind@10170940` | `10170940` | `Unwind@10170940` | +| `Unwind@10170970` | `10170970` | `Unwind@10170970` | +| `Unwind@1017097e` | `1017097e` | `Unwind@1017097e` | +| `Unwind@1017098c` | `1017098c` | `Unwind@1017098c` | +| `Unwind@1017099a` | `1017099a` | `Unwind@1017099a` | +| `Unwind@101709a8` | `101709a8` | `Unwind@101709a8` | +| `Unwind@101709b6` | `101709b6` | `Unwind@101709b6` | +| `Unwind@101709c4` | `101709c4` | `Unwind@101709c4` | +| `Unwind@101709d2` | `101709d2` | `Unwind@101709d2` | +| `Unwind@101709e0` | `101709e0` | `Unwind@101709e0` | +| `Unwind@10170a20` | `10170a20` | `Unwind@10170a20` | +| `Unwind@10170a2b` | `10170a2b` | `Unwind@10170a2b` | +| `Unwind@10170a33` | `10170a33` | `Unwind@10170a33` | +| `Unwind@10170a3e` | `10170a3e` | `Unwind@10170a3e` | +| `Unwind@10170a70` | `10170a70` | `Unwind@10170a70` | +| `Unwind@10170a78` | `10170a78` | `Unwind@10170a78` | +| `Unwind@10170a83` | `10170a83` | `Unwind@10170a83` | +| `Unwind@10170a8b` | `10170a8b` | `Unwind@10170a8b` | +| `Unwind@10170ab0` | `10170ab0` | `Unwind@10170ab0` | +| `Unwind@10170abb` | `10170abb` | `Unwind@10170abb` | +| `Unwind@10170ac6` | `10170ac6` | `Unwind@10170ac6` | +| `Unwind@10170ad1` | `10170ad1` | `Unwind@10170ad1` | +| `Unwind@10170adc` | `10170adc` | `Unwind@10170adc` | +| `Unwind@10170ae7` | `10170ae7` | `Unwind@10170ae7` | +| `Unwind@10170af2` | `10170af2` | `Unwind@10170af2` | +| `Unwind@10170afd` | `10170afd` | `Unwind@10170afd` | +| `Unwind@10170b08` | `10170b08` | `Unwind@10170b08` | +| `Unwind@10170b13` | `10170b13` | `Unwind@10170b13` | +| `Unwind@10170b1e` | `10170b1e` | `Unwind@10170b1e` | +| `Unwind@10170b29` | `10170b29` | `Unwind@10170b29` | +| `Unwind@10170b34` | `10170b34` | `Unwind@10170b34` | +| `Unwind@10170b3f` | `10170b3f` | `Unwind@10170b3f` | +| `Unwind@10170b4a` | `10170b4a` | `Unwind@10170b4a` | +| `Unwind@10170b55` | `10170b55` | `Unwind@10170b55` | +| `Unwind@10170b60` | `10170b60` | `Unwind@10170b60` | +| `Unwind@10170b6b` | `10170b6b` | `Unwind@10170b6b` | +| `Unwind@10170b76` | `10170b76` | `Unwind@10170b76` | +| `Unwind@10170bb0` | `10170bb0` | `Unwind@10170bb0` | +| `Unwind@10170be0` | `10170be0` | `Unwind@10170be0` | +| `Unwind@10170c10` | `10170c10` | `Unwind@10170c10` | +| `Unwind@10170c18` | `10170c18` | `Unwind@10170c18` | +| `Unwind@10170c23` | `10170c23` | `Unwind@10170c23` | +| `Unwind@10170c50` | `10170c50` | `Unwind@10170c50` | +| `Unwind@10170c80` | `10170c80` | `Unwind@10170c80` | +| `Unwind@10170c88` | `10170c88` | `Unwind@10170c88` | +| `Unwind@10170c93` | `10170c93` | `Unwind@10170c93` | +| `Unwind@10170cc0` | `10170cc0` | `Unwind@10170cc0` | +| `Unwind@10170cf0` | `10170cf0` | `Unwind@10170cf0` | +| `Unwind@10170d20` | `10170d20` | `Unwind@10170d20` | +| `Unwind@10170d28` | `10170d28` | `Unwind@10170d28` | +| `Unwind@10170d33` | `10170d33` | `Unwind@10170d33` | +| `Unwind@10170d3e` | `10170d3e` | `Unwind@10170d3e` | +| `Unwind@10170d70` | `10170d70` | `Unwind@10170d70` | +| `Unwind@10170d78` | `10170d78` | `Unwind@10170d78` | +| `Unwind@10170d83` | `10170d83` | `Unwind@10170d83` | +| `Unwind@10170db0` | `10170db0` | `Unwind@10170db0` | +| `Unwind@10170db8` | `10170db8` | `Unwind@10170db8` | +| `Unwind@10170dc3` | `10170dc3` | `Unwind@10170dc3` | +| `Unwind@10170df0` | `10170df0` | `Unwind@10170df0` | +| `Unwind@10170e20` | `10170e20` | `Unwind@10170e20` | +| `Unwind@10170e50` | `10170e50` | `Unwind@10170e50` | +| `Unwind@10170e58` | `10170e58` | `Unwind@10170e58` | +| `Unwind@10170e90` | `10170e90` | `Unwind@10170e90` | +| `Unwind@10170ec0` | `10170ec0` | `Unwind@10170ec0` | +| `Unwind@10170ec8` | `10170ec8` | `Unwind@10170ec8` | +| `Unwind@10170ed0` | `10170ed0` | `Unwind@10170ed0` | +| `Unwind@10170ed8` | `10170ed8` | `Unwind@10170ed8` | +| `Unwind@10170ee0` | `10170ee0` | `Unwind@10170ee0` | +| `Unwind@10170f30` | `10170f30` | `Unwind@10170f30` | +| `Unwind@10170f38` | `10170f38` | `Unwind@10170f38` | +| `Unwind@10170f43` | `10170f43` | `Unwind@10170f43` | +| `Unwind@10170f4e` | `10170f4e` | `Unwind@10170f4e` | +| `Unwind@10170f80` | `10170f80` | `Unwind@10170f80` | +| `Unwind@10170f88` | `10170f88` | `Unwind@10170f88` | +| `Unwind@10170f93` | `10170f93` | `Unwind@10170f93` | +| `Unwind@10170f9b` | `10170f9b` | `Unwind@10170f9b` | +| `Unwind@10170fd0` | `10170fd0` | `Unwind@10170fd0` | +| `Unwind@10171000` | `10171000` | `Unwind@10171000` | +| `Unwind@1017100b` | `1017100b` | `Unwind@1017100b` | +| `Unwind@10171030` | `10171030` | `Unwind@10171030` | +| `Unwind@1017103b` | `1017103b` | `Unwind@1017103b` | +| `Unwind@10171060` | `10171060` | `Unwind@10171060` | +| `Unwind@10171071` | `10171071` | `Unwind@10171071` | +| `Unwind@10171079` | `10171079` | `Unwind@10171079` | +| `Unwind@10171084` | `10171084` | `Unwind@10171084` | +| `Unwind@1017108f` | `1017108f` | `Unwind@1017108f` | +| `Unwind@101710c0` | `101710c0` | `Unwind@101710c0` | +| `Unwind@101710d1` | `101710d1` | `Unwind@101710d1` | +| `Unwind@101710d9` | `101710d9` | `Unwind@101710d9` | +| `Unwind@101710e4` | `101710e4` | `Unwind@101710e4` | +| `Unwind@10171110` | `10171110` | `Unwind@10171110` | +| `Unwind@10171118` | `10171118` | `Unwind@10171118` | +| `Unwind@10171123` | `10171123` | `Unwind@10171123` | +| `Unwind@10171150` | `10171150` | `Unwind@10171150` | +| `Unwind@1017115b` | `1017115b` | `Unwind@1017115b` | +| `Unwind@10171180` | `10171180` | `Unwind@10171180` | +| `Unwind@101711d0` | `101711d0` | `Unwind@101711d0` | +| `Unwind@101711db` | `101711db` | `Unwind@101711db` | +| `Unwind@101711e3` | `101711e3` | `Unwind@101711e3` | +| `Unwind@10171220` | `10171220` | `Unwind@10171220` | +| `Unwind@1017122b` | `1017122b` | `Unwind@1017122b` | +| `Unwind@10171233` | `10171233` | `Unwind@10171233` | +| `Unwind@10171270` | `10171270` | `Unwind@10171270` | +| `Unwind@10171281` | `10171281` | `Unwind@10171281` | +| `Unwind@10171289` | `10171289` | `Unwind@10171289` | +| `Unwind@10171294` | `10171294` | `Unwind@10171294` | +| `Unwind@1017129f` | `1017129f` | `Unwind@1017129f` | +| `Unwind@101712d0` | `101712d0` | `Unwind@101712d0` | +| `Unwind@101712e1` | `101712e1` | `Unwind@101712e1` | +| `Unwind@101712e9` | `101712e9` | `Unwind@101712e9` | +| `Unwind@101712f4` | `101712f4` | `Unwind@101712f4` | +| `Unwind@10171320` | `10171320` | `Unwind@10171320` | +| `Unwind@10171328` | `10171328` | `Unwind@10171328` | +| `Unwind@10171333` | `10171333` | `Unwind@10171333` | +| `Unwind@10171360` | `10171360` | `Unwind@10171360` | +| `Unwind@10171371` | `10171371` | `Unwind@10171371` | +| `Unwind@1017137c` | `1017137c` | `Unwind@1017137c` | +| `Unwind@101713a0` | `101713a0` | `Unwind@101713a0` | +| `Unwind@101713a8` | `101713a8` | `Unwind@101713a8` | +| `Unwind@101713b3` | `101713b3` | `Unwind@101713b3` | +| `Unwind@101713be` | `101713be` | `Unwind@101713be` | +| `Unwind@101713f0` | `101713f0` | `Unwind@101713f0` | +| `Unwind@10171420` | `10171420` | `Unwind@10171420` | +| `Unwind@10171450` | `10171450` | `Unwind@10171450` | +| `Unwind@10171461` | `10171461` | `Unwind@10171461` | +| `Unwind@1017146c` | `1017146c` | `Unwind@1017146c` | +| `Unwind@10171490` | `10171490` | `Unwind@10171490` | +| `Unwind@10171498` | `10171498` | `Unwind@10171498` | +| `Unwind@101714a3` | `101714a3` | `Unwind@101714a3` | +| `Unwind@101714d0` | `101714d0` | `Unwind@101714d0` | +| `Unwind@101714d8` | `101714d8` | `Unwind@101714d8` | +| `Unwind@101714e0` | `101714e0` | `Unwind@101714e0` | +| `Unwind@101714e8` | `101714e8` | `Unwind@101714e8` | +| `Unwind@101714f0` | `101714f0` | `Unwind@101714f0` | +| `Unwind@101714f8` | `101714f8` | `Unwind@101714f8` | +| `Unwind@10171520` | `10171520` | `Unwind@10171520` | +| `Unwind@10171528` | `10171528` | `Unwind@10171528` | +| `Unwind@10171530` | `10171530` | `Unwind@10171530` | +| `Unwind@10171538` | `10171538` | `Unwind@10171538` | +| `Unwind@10171540` | `10171540` | `Unwind@10171540` | +| `Unwind@10171570` | `10171570` | `Unwind@10171570` | +| `Unwind@10171578` | `10171578` | `Unwind@10171578` | +| `Unwind@10171580` | `10171580` | `Unwind@10171580` | +| `Unwind@10171588` | `10171588` | `Unwind@10171588` | +| `Unwind@10171590` | `10171590` | `Unwind@10171590` | +| `Unwind@10171598` | `10171598` | `Unwind@10171598` | +| `Unwind@101715c0` | `101715c0` | `Unwind@101715c0` | +| `Unwind@101715c8` | `101715c8` | `Unwind@101715c8` | +| `Unwind@101715d0` | `101715d0` | `Unwind@101715d0` | +| `Unwind@101715d8` | `101715d8` | `Unwind@101715d8` | +| `Unwind@101715e0` | `101715e0` | `Unwind@101715e0` | +| `Unwind@10171610` | `10171610` | `Unwind@10171610` | +| `Unwind@10171618` | `10171618` | `Unwind@10171618` | +| `Unwind@10171620` | `10171620` | `Unwind@10171620` | +| `Unwind@10171628` | `10171628` | `Unwind@10171628` | +| `Unwind@10171630` | `10171630` | `Unwind@10171630` | +| `Unwind@10171660` | `10171660` | `Unwind@10171660` | +| `Unwind@10171668` | `10171668` | `Unwind@10171668` | +| `Unwind@10171670` | `10171670` | `Unwind@10171670` | +| `Unwind@10171678` | `10171678` | `Unwind@10171678` | +| `Unwind@10171680` | `10171680` | `Unwind@10171680` | +| `Unwind@101716b0` | `101716b0` | `Unwind@101716b0` | +| `Unwind@101716b8` | `101716b8` | `Unwind@101716b8` | +| `Unwind@101716c0` | `101716c0` | `Unwind@101716c0` | +| `Unwind@101716c8` | `101716c8` | `Unwind@101716c8` | +| `Unwind@101716d0` | `101716d0` | `Unwind@101716d0` | +| `Unwind@10171700` | `10171700` | `Unwind@10171700` | +| `Unwind@10171708` | `10171708` | `Unwind@10171708` | +| `Unwind@10171710` | `10171710` | `Unwind@10171710` | +| `Unwind@10171718` | `10171718` | `Unwind@10171718` | +| `Unwind@10171720` | `10171720` | `Unwind@10171720` | +| `Unwind@10171750` | `10171750` | `Unwind@10171750` | +| `Unwind@10171758` | `10171758` | `Unwind@10171758` | +| `Unwind@10171763` | `10171763` | `Unwind@10171763` | +| `Unwind@1017176b` | `1017176b` | `Unwind@1017176b` | +| `Unwind@10171790` | `10171790` | `Unwind@10171790` | +| `Unwind@101717c0` | `101717c0` | `Unwind@101717c0` | +| `Unwind@101717c8` | `101717c8` | `Unwind@101717c8` | +| `Unwind@101717d3` | `101717d3` | `Unwind@101717d3` | +| `Unwind@10171820` | `10171820` | `Unwind@10171820` | +| `Unwind@10171880` | `10171880` | `Unwind@10171880` | +| `Unwind@10171888` | `10171888` | `Unwind@10171888` | +| `Unwind@10171893` | `10171893` | `Unwind@10171893` | +| `Unwind@1017189e` | `1017189e` | `Unwind@1017189e` | +| `Unwind@101718a9` | `101718a9` | `Unwind@101718a9` | +| `Unwind@101718b7` | `101718b7` | `Unwind@101718b7` | +| `Unwind@101718c2` | `101718c2` | `Unwind@101718c2` | +| `Unwind@101718d0` | `101718d0` | `Unwind@101718d0` | +| `Unwind@101718de` | `101718de` | `Unwind@101718de` | +| `Unwind@101718ec` | `101718ec` | `Unwind@101718ec` | +| `Unwind@101718f7` | `101718f7` | `Unwind@101718f7` | +| `Unwind@101718ff` | `101718ff` | `Unwind@101718ff` | +| `Unwind@1017190d` | `1017190d` | `Unwind@1017190d` | +| `Unwind@10171918` | `10171918` | `Unwind@10171918` | +| `Unwind@10171920` | `10171920` | `Unwind@10171920` | +| `Unwind@10171928` | `10171928` | `Unwind@10171928` | +| `Unwind@10171936` | `10171936` | `Unwind@10171936` | +| `Unwind@10171944` | `10171944` | `Unwind@10171944` | +| `Unwind@1017194c` | `1017194c` | `Unwind@1017194c` | +| `Unwind@10171954` | `10171954` | `Unwind@10171954` | +| `Unwind@10171962` | `10171962` | `Unwind@10171962` | +| `Unwind@10171970` | `10171970` | `Unwind@10171970` | +| `Unwind@101719b0` | `101719b0` | `Unwind@101719b0` | +| `Unwind@10171a00` | `10171a00` | `Unwind@10171a00` | +| `Unwind@10171a08` | `10171a08` | `Unwind@10171a08` | +| `Unwind@10171a30` | `10171a30` | `Unwind@10171a30` | +| `Unwind@10171a41` | `10171a41` | `Unwind@10171a41` | +| `Unwind@10171a70` | `10171a70` | `Unwind@10171a70` | +| `Unwind@10171a78` | `10171a78` | `Unwind@10171a78` | +| `Unwind@10171aa0` | `10171aa0` | `Unwind@10171aa0` | +| `Unwind@10171aa8` | `10171aa8` | `Unwind@10171aa8` | +| `Unwind@10171ab0` | `10171ab0` | `Unwind@10171ab0` | +| `Unwind@10171ab8` | `10171ab8` | `Unwind@10171ab8` | +| `Unwind@10171ac0` | `10171ac0` | `Unwind@10171ac0` | +| `Unwind@10171ac8` | `10171ac8` | `Unwind@10171ac8` | +| `Unwind@10171ad0` | `10171ad0` | `Unwind@10171ad0` | +| `Unwind@10171ad8` | `10171ad8` | `Unwind@10171ad8` | +| `Unwind@10171ae0` | `10171ae0` | `Unwind@10171ae0` | +| `Unwind@10171aee` | `10171aee` | `Unwind@10171aee` | +| `Unwind@10171afc` | `10171afc` | `Unwind@10171afc` | +| `Unwind@10171b30` | `10171b30` | `Unwind@10171b30` | +| `Unwind@10171b60` | `10171b60` | `Unwind@10171b60` | +| `Unwind@10171b68` | `10171b68` | `Unwind@10171b68` | +| `Unwind@10171b70` | `10171b70` | `Unwind@10171b70` | +| `Unwind@10171b78` | `10171b78` | `Unwind@10171b78` | +| `Unwind@10171b80` | `10171b80` | `Unwind@10171b80` | +| `Unwind@10171b88` | `10171b88` | `Unwind@10171b88` | +| `Unwind@10171b90` | `10171b90` | `Unwind@10171b90` | +| `Unwind@10171b98` | `10171b98` | `Unwind@10171b98` | +| `Unwind@10171ba0` | `10171ba0` | `Unwind@10171ba0` | +| `Unwind@10171ba8` | `10171ba8` | `Unwind@10171ba8` | +| `Unwind@10171bb0` | `10171bb0` | `Unwind@10171bb0` | +| `Unwind@10171bb8` | `10171bb8` | `Unwind@10171bb8` | +| `Unwind@10171be0` | `10171be0` | `Unwind@10171be0` | +| `Unwind@10171be8` | `10171be8` | `Unwind@10171be8` | +| `Unwind@10171bf3` | `10171bf3` | `Unwind@10171bf3` | +| `Unwind@10171bfe` | `10171bfe` | `Unwind@10171bfe` | +| `Unwind@10171c09` | `10171c09` | `Unwind@10171c09` | +| `Unwind@10171c11` | `10171c11` | `Unwind@10171c11` | +| `Unwind@10171c19` | `10171c19` | `Unwind@10171c19` | +| `Unwind@10171c21` | `10171c21` | `Unwind@10171c21` | +| `Unwind@10171c29` | `10171c29` | `Unwind@10171c29` | +| `Unwind@10171c34` | `10171c34` | `Unwind@10171c34` | +| `Unwind@10171c3f` | `10171c3f` | `Unwind@10171c3f` | +| `Unwind@10171c4a` | `10171c4a` | `Unwind@10171c4a` | +| `Unwind@10171c55` | `10171c55` | `Unwind@10171c55` | +| `Unwind@10171c60` | `10171c60` | `Unwind@10171c60` | +| `Unwind@10171c68` | `10171c68` | `Unwind@10171c68` | +| `Unwind@10171c76` | `10171c76` | `Unwind@10171c76` | +| `Unwind@10171c7e` | `10171c7e` | `Unwind@10171c7e` | +| `Unwind@10171c86` | `10171c86` | `Unwind@10171c86` | +| `Unwind@10171c8e` | `10171c8e` | `Unwind@10171c8e` | +| `Unwind@10171c96` | `10171c96` | `Unwind@10171c96` | +| `Unwind@10171ca1` | `10171ca1` | `Unwind@10171ca1` | +| `Unwind@10171ca9` | `10171ca9` | `Unwind@10171ca9` | +| `Unwind@10171cb1` | `10171cb1` | `Unwind@10171cb1` | +| `Unwind@10171cb9` | `10171cb9` | `Unwind@10171cb9` | +| `Unwind@10171cc1` | `10171cc1` | `Unwind@10171cc1` | +| `Unwind@10171cc9` | `10171cc9` | `Unwind@10171cc9` | +| `Unwind@10171cd4` | `10171cd4` | `Unwind@10171cd4` | +| `Unwind@10171cdc` | `10171cdc` | `Unwind@10171cdc` | +| `Unwind@10171ce4` | `10171ce4` | `Unwind@10171ce4` | +| `Unwind@10171cec` | `10171cec` | `Unwind@10171cec` | +| `Unwind@10171cf4` | `10171cf4` | `Unwind@10171cf4` | +| `Unwind@10171cfc` | `10171cfc` | `Unwind@10171cfc` | +| `Unwind@10171d04` | `10171d04` | `Unwind@10171d04` | +| `Unwind@10171d30` | `10171d30` | `Unwind@10171d30` | +| `Unwind@10171d70` | `10171d70` | `Unwind@10171d70` | +| `Unwind@10171db0` | `10171db0` | `Unwind@10171db0` | +| `Unwind@10171dbb` | `10171dbb` | `Unwind@10171dbb` | +| `Unwind@10171df0` | `10171df0` | `Unwind@10171df0` | +| `Unwind@10171df8` | `10171df8` | `Unwind@10171df8` | +| `Unwind@10171e00` | `10171e00` | `Unwind@10171e00` | +| `Unwind@10171e08` | `10171e08` | `Unwind@10171e08` | +| `Unwind@10171e30` | `10171e30` | `Unwind@10171e30` | +| `Unwind@10171e3b` | `10171e3b` | `Unwind@10171e3b` | +| `Unwind@10171e46` | `10171e46` | `Unwind@10171e46` | +| `Unwind@10171e51` | `10171e51` | `Unwind@10171e51` | +| `Unwind@10171e5f` | `10171e5f` | `Unwind@10171e5f` | +| `Unwind@10171e6d` | `10171e6d` | `Unwind@10171e6d` | +| `Unwind@10171e7b` | `10171e7b` | `Unwind@10171e7b` | +| `Unwind@10171e89` | `10171e89` | `Unwind@10171e89` | +| `Unwind@10171e97` | `10171e97` | `Unwind@10171e97` | +| `Unwind@10171ed0` | `10171ed0` | `Unwind@10171ed0` | +| `Unwind@10171ed8` | `10171ed8` | `Unwind@10171ed8` | +| `Unwind@10171ee3` | `10171ee3` | `Unwind@10171ee3` | +| `Unwind@10171eee` | `10171eee` | `Unwind@10171eee` | +| `Unwind@10171ef6` | `10171ef6` | `Unwind@10171ef6` | +| `Unwind@10171f01` | `10171f01` | `Unwind@10171f01` | +| `Unwind@10171f0c` | `10171f0c` | `Unwind@10171f0c` | +| `Unwind@10171f17` | `10171f17` | `Unwind@10171f17` | +| `Unwind@10171f22` | `10171f22` | `Unwind@10171f22` | +| `Unwind@10171f50` | `10171f50` | `Unwind@10171f50` | +| `Unwind@10171f58` | `10171f58` | `Unwind@10171f58` | +| `Unwind@10171f60` | `10171f60` | `Unwind@10171f60` | +| `Unwind@10171f68` | `10171f68` | `Unwind@10171f68` | +| `Unwind@10171f70` | `10171f70` | `Unwind@10171f70` | +| `Unwind@10171f78` | `10171f78` | `Unwind@10171f78` | +| `Unwind@10171f80` | `10171f80` | `Unwind@10171f80` | +| `Unwind@10171f88` | `10171f88` | `Unwind@10171f88` | +| `Unwind@10171f90` | `10171f90` | `Unwind@10171f90` | +| `Unwind@10171f98` | `10171f98` | `Unwind@10171f98` | +| `Unwind@10171fa0` | `10171fa0` | `Unwind@10171fa0` | +| `Unwind@10171fa8` | `10171fa8` | `Unwind@10171fa8` | +| `Unwind@10171fb0` | `10171fb0` | `Unwind@10171fb0` | +| `Unwind@10171fe0` | `10171fe0` | `Unwind@10171fe0` | +| `Unwind@10171fe8` | `10171fe8` | `Unwind@10171fe8` | +| `Unwind@10172010` | `10172010` | `Unwind@10172010` | +| `Unwind@10172018` | `10172018` | `Unwind@10172018` | +| `Unwind@10172020` | `10172020` | `Unwind@10172020` | +| `Unwind@10172028` | `10172028` | `Unwind@10172028` | +| `Unwind@10172033` | `10172033` | `Unwind@10172033` | +| `Unwind@1017203e` | `1017203e` | `Unwind@1017203e` | +| `Unwind@10172070` | `10172070` | `Unwind@10172070` | +| `Unwind@10172078` | `10172078` | `Unwind@10172078` | +| `Unwind@10172083` | `10172083` | `Unwind@10172083` | +| `Unwind@1017208e` | `1017208e` | `Unwind@1017208e` | +| `Unwind@10172096` | `10172096` | `Unwind@10172096` | +| `Unwind@101720c0` | `101720c0` | `Unwind@101720c0` | +| `Unwind@101720c8` | `101720c8` | `Unwind@101720c8` | +| `Unwind@101720f0` | `101720f0` | `Unwind@101720f0` | +| `Unwind@101720f8` | `101720f8` | `Unwind@101720f8` | +| `Unwind@10172100` | `10172100` | `Unwind@10172100` | +| `Unwind@10172108` | `10172108` | `Unwind@10172108` | +| `Unwind@10172113` | `10172113` | `Unwind@10172113` | +| `Unwind@1017211e` | `1017211e` | `Unwind@1017211e` | +| `Unwind@10172129` | `10172129` | `Unwind@10172129` | +| `Unwind@10172131` | `10172131` | `Unwind@10172131` | +| `Unwind@10172139` | `10172139` | `Unwind@10172139` | +| `Unwind@10172144` | `10172144` | `Unwind@10172144` | +| `Unwind@1017214c` | `1017214c` | `Unwind@1017214c` | +| `Unwind@10172154` | `10172154` | `Unwind@10172154` | +| `Unwind@1017215c` | `1017215c` | `Unwind@1017215c` | +| `Unwind@10172190` | `10172190` | `Unwind@10172190` | +| `Unwind@1017219b` | `1017219b` | `Unwind@1017219b` | +| `Unwind@101721a6` | `101721a6` | `Unwind@101721a6` | +| `Unwind@101721b1` | `101721b1` | `Unwind@101721b1` | +| `Unwind@101721bc` | `101721bc` | `Unwind@101721bc` | +| `Unwind@101721c7` | `101721c7` | `Unwind@101721c7` | +| `Unwind@101721d2` | `101721d2` | `Unwind@101721d2` | +| `Unwind@101721dd` | `101721dd` | `Unwind@101721dd` | +| `Unwind@101721e8` | `101721e8` | `Unwind@101721e8` | +| `Unwind@101721f0` | `101721f0` | `Unwind@101721f0` | +| `Unwind@101721f8` | `101721f8` | `Unwind@101721f8` | +| `Unwind@10172200` | `10172200` | `Unwind@10172200` | +| `Unwind@1017220e` | `1017220e` | `Unwind@1017220e` | +| `Unwind@10172216` | `10172216` | `Unwind@10172216` | +| `Unwind@10172221` | `10172221` | `Unwind@10172221` | +| `Unwind@1017222c` | `1017222c` | `Unwind@1017222c` | +| `Unwind@10172237` | `10172237` | `Unwind@10172237` | +| `Unwind@10172242` | `10172242` | `Unwind@10172242` | +| `Unwind@1017224d` | `1017224d` | `Unwind@1017224d` | +| `Unwind@10172258` | `10172258` | `Unwind@10172258` | +| `Unwind@10172263` | `10172263` | `Unwind@10172263` | +| `Unwind@1017226e` | `1017226e` | `Unwind@1017226e` | +| `Unwind@10172279` | `10172279` | `Unwind@10172279` | +| `Unwind@10172284` | `10172284` | `Unwind@10172284` | +| `Unwind@1017228f` | `1017228f` | `Unwind@1017228f` | +| `Unwind@1017229a` | `1017229a` | `Unwind@1017229a` | +| `Unwind@101722a2` | `101722a2` | `Unwind@101722a2` | +| `Unwind@101722ad` | `101722ad` | `Unwind@101722ad` | +| `Unwind@101722b8` | `101722b8` | `Unwind@101722b8` | +| `Unwind@101722c3` | `101722c3` | `Unwind@101722c3` | +| `Unwind@101722ce` | `101722ce` | `Unwind@101722ce` | +| `Unwind@101722d9` | `101722d9` | `Unwind@101722d9` | +| `Unwind@101722e4` | `101722e4` | `Unwind@101722e4` | +| `Unwind@101722ec` | `101722ec` | `Unwind@101722ec` | +| `Unwind@101722f7` | `101722f7` | `Unwind@101722f7` | +| `Unwind@10172330` | `10172330` | `Unwind@10172330` | +| `Unwind@10172338` | `10172338` | `Unwind@10172338` | +| `Unwind@10172360` | `10172360` | `Unwind@10172360` | +| `Unwind@10172368` | `10172368` | `Unwind@10172368` | +| `Unwind@10172370` | `10172370` | `Unwind@10172370` | +| `Unwind@10172378` | `10172378` | `Unwind@10172378` | +| `Unwind@10172380` | `10172380` | `Unwind@10172380` | +| `Unwind@101723b0` | `101723b0` | `Unwind@101723b0` | +| `Unwind@101723e0` | `101723e0` | `Unwind@101723e0` | +| `Unwind@10172410` | `10172410` | `Unwind@10172410` | +| `Unwind@10172440` | `10172440` | `Unwind@10172440` | +| `Unwind@10172470` | `10172470` | `Unwind@10172470` | +| `Unwind@101724a0` | `101724a0` | `Unwind@101724a0` | +| `Unwind@101724a8` | `101724a8` | `Unwind@101724a8` | +| `Unwind@101724b3` | `101724b3` | `Unwind@101724b3` | +| `Unwind@101724be` | `101724be` | `Unwind@101724be` | +| `Unwind@101724c9` | `101724c9` | `Unwind@101724c9` | +| `Unwind@101724d4` | `101724d4` | `Unwind@101724d4` | +| `Unwind@101724df` | `101724df` | `Unwind@101724df` | +| `Unwind@101724ed` | `101724ed` | `Unwind@101724ed` | +| `Unwind@101724fb` | `101724fb` | `Unwind@101724fb` | +| `Unwind@10172503` | `10172503` | `Unwind@10172503` | +| `Unwind@1017250b` | `1017250b` | `Unwind@1017250b` | +| `Unwind@10172516` | `10172516` | `Unwind@10172516` | +| `Unwind@10172521` | `10172521` | `Unwind@10172521` | +| `Unwind@1017252c` | `1017252c` | `Unwind@1017252c` | +| `Unwind@10172537` | `10172537` | `Unwind@10172537` | +| `Unwind@10172560` | `10172560` | `Unwind@10172560` | +| `Unwind@10172590` | `10172590` | `Unwind@10172590` | +| `Unwind@10172598` | `10172598` | `Unwind@10172598` | +| `Unwind@101725a0` | `101725a0` | `Unwind@101725a0` | +| `Unwind@101725a8` | `101725a8` | `Unwind@101725a8` | +| `Unwind@101725b0` | `101725b0` | `Unwind@101725b0` | +| `Unwind@101725b8` | `101725b8` | `Unwind@101725b8` | +| `Unwind@101725f0` | `101725f0` | `Unwind@101725f0` | +| `Unwind@101725f8` | `101725f8` | `Unwind@101725f8` | +| `Unwind@10172600` | `10172600` | `Unwind@10172600` | +| `Unwind@1017260b` | `1017260b` | `Unwind@1017260b` | +| `Unwind@10172616` | `10172616` | `Unwind@10172616` | +| `Unwind@10172621` | `10172621` | `Unwind@10172621` | +| `Unwind@10172650` | `10172650` | `Unwind@10172650` | +| `Unwind@10172658` | `10172658` | `Unwind@10172658` | +| `Unwind@10172663` | `10172663` | `Unwind@10172663` | +| `Unwind@1017266e` | `1017266e` | `Unwind@1017266e` | +| `Unwind@10172679` | `10172679` | `Unwind@10172679` | +| `Unwind@10172681` | `10172681` | `Unwind@10172681` | +| `Unwind@1017268c` | `1017268c` | `Unwind@1017268c` | +| `Unwind@10172697` | `10172697` | `Unwind@10172697` | +| `Unwind@101726a5` | `101726a5` | `Unwind@101726a5` | +| `Unwind@101726d0` | `101726d0` | `Unwind@101726d0` | +| `Unwind@101726d8` | `101726d8` | `Unwind@101726d8` | +| `Unwind@101726e3` | `101726e3` | `Unwind@101726e3` | +| `Unwind@101726ee` | `101726ee` | `Unwind@101726ee` | +| `Unwind@101726f6` | `101726f6` | `Unwind@101726f6` | +| `Unwind@101726fe` | `101726fe` | `Unwind@101726fe` | +| `Unwind@10172709` | `10172709` | `Unwind@10172709` | +| `Unwind@10172714` | `10172714` | `Unwind@10172714` | +| `Unwind@1017271f` | `1017271f` | `Unwind@1017271f` | +| `Unwind@1017272a` | `1017272a` | `Unwind@1017272a` | +| `Unwind@10172735` | `10172735` | `Unwind@10172735` | +| `Unwind@1017273d` | `1017273d` | `Unwind@1017273d` | +| `Unwind@10172748` | `10172748` | `Unwind@10172748` | +| `Unwind@10172753` | `10172753` | `Unwind@10172753` | +| `Unwind@10172761` | `10172761` | `Unwind@10172761` | +| `Unwind@10172790` | `10172790` | `Unwind@10172790` | +| `Unwind@10172798` | `10172798` | `Unwind@10172798` | +| `Unwind@101727a0` | `101727a0` | `Unwind@101727a0` | +| `Unwind@101727ab` | `101727ab` | `Unwind@101727ab` | +| `Unwind@101727b3` | `101727b3` | `Unwind@101727b3` | +| `Unwind@101727bb` | `101727bb` | `Unwind@101727bb` | +| `Unwind@101727c3` | `101727c3` | `Unwind@101727c3` | +| `Unwind@101727d1` | `101727d1` | `Unwind@101727d1` | +| `Unwind@101727dc` | `101727dc` | `Unwind@101727dc` | +| `Unwind@10172810` | `10172810` | `Unwind@10172810` | +| `Unwind@10172850` | `10172850` | `Unwind@10172850` | +| `Unwind@1017285b` | `1017285b` | `Unwind@1017285b` | +| `Unwind@10172890` | `10172890` | `Unwind@10172890` | +| `Unwind@10172898` | `10172898` | `Unwind@10172898` | +| `Unwind@101728a0` | `101728a0` | `Unwind@101728a0` | +| `Unwind@101728ab` | `101728ab` | `Unwind@101728ab` | +| `Unwind@101728b3` | `101728b3` | `Unwind@101728b3` | +| `Unwind@101728bb` | `101728bb` | `Unwind@101728bb` | +| `Unwind@101728c3` | `101728c3` | `Unwind@101728c3` | +| `Unwind@101728cb` | `101728cb` | `Unwind@101728cb` | +| `Unwind@101728d3` | `101728d3` | `Unwind@101728d3` | +| `Unwind@101728db` | `101728db` | `Unwind@101728db` | +| `Unwind@10172910` | `10172910` | `Unwind@10172910` | +| `Unwind@1017291b` | `1017291b` | `Unwind@1017291b` | +| `Unwind@10172926` | `10172926` | `Unwind@10172926` | +| `Unwind@10172931` | `10172931` | `Unwind@10172931` | +| `Unwind@1017293c` | `1017293c` | `Unwind@1017293c` | +| `Unwind@1017294a` | `1017294a` | `Unwind@1017294a` | +| `Unwind@10172955` | `10172955` | `Unwind@10172955` | +| `Unwind@10172963` | `10172963` | `Unwind@10172963` | +| `Unwind@1017296e` | `1017296e` | `Unwind@1017296e` | +| `Unwind@10172979` | `10172979` | `Unwind@10172979` | +| `Unwind@10172984` | `10172984` | `Unwind@10172984` | +| `Unwind@1017298f` | `1017298f` | `Unwind@1017298f` | +| `Unwind@1017299a` | `1017299a` | `Unwind@1017299a` | +| `Unwind@101729d0` | `101729d0` | `Unwind@101729d0` | +| `Unwind@10172a10` | `10172a10` | `Unwind@10172a10` | +| `Unwind@10172a40` | `10172a40` | `Unwind@10172a40` | +| `Unwind@10172a70` | `10172a70` | `Unwind@10172a70` | +| `Unwind@10172aa0` | `10172aa0` | `Unwind@10172aa0` | +| `Unwind@10172ad0` | `10172ad0` | `Unwind@10172ad0` | +| `Unwind@10172b00` | `10172b00` | `Unwind@10172b00` | +| `Unwind@10172b30` | `10172b30` | `Unwind@10172b30` | +| `Unwind@10172b60` | `10172b60` | `Unwind@10172b60` | +| `Unwind@10172b90` | `10172b90` | `Unwind@10172b90` | +| `Unwind@10172bc0` | `10172bc0` | `Unwind@10172bc0` | +| `Unwind@10172bf0` | `10172bf0` | `Unwind@10172bf0` | +| `Unwind@10172c20` | `10172c20` | `Unwind@10172c20` | +| `Unwind@10172c50` | `10172c50` | `Unwind@10172c50` | +| `Unwind@10172c80` | `10172c80` | `Unwind@10172c80` | +| `Unwind@10172cb0` | `10172cb0` | `Unwind@10172cb0` | +| `Unwind@10172ce0` | `10172ce0` | `Unwind@10172ce0` | +| `Unwind@10172d10` | `10172d10` | `Unwind@10172d10` | +| `Unwind@10172d40` | `10172d40` | `Unwind@10172d40` | +| `Unwind@10172d70` | `10172d70` | `Unwind@10172d70` | +| `Unwind@10172da0` | `10172da0` | `Unwind@10172da0` | +| `Unwind@10172dd0` | `10172dd0` | `Unwind@10172dd0` | +| `Unwind@10172e00` | `10172e00` | `Unwind@10172e00` | +| `Unwind@10172e30` | `10172e30` | `Unwind@10172e30` | +| `Unwind@10172e60` | `10172e60` | `Unwind@10172e60` | +| `Unwind@10172e90` | `10172e90` | `Unwind@10172e90` | +| `Unwind@10172ec0` | `10172ec0` | `Unwind@10172ec0` | +| `Unwind@10172ef0` | `10172ef0` | `Unwind@10172ef0` | +| `Unwind@10172f20` | `10172f20` | `Unwind@10172f20` | +| `Unwind@10172f50` | `10172f50` | `Unwind@10172f50` | +| `Unwind@10172f80` | `10172f80` | `Unwind@10172f80` | +| `Unwind@10172fb0` | `10172fb0` | `Unwind@10172fb0` | +| `Unwind@10172fe0` | `10172fe0` | `Unwind@10172fe0` | +| `Unwind@10173010` | `10173010` | `Unwind@10173010` | +| `Unwind@10173040` | `10173040` | `Unwind@10173040` | +| `Unwind@10173070` | `10173070` | `Unwind@10173070` | +| `Unwind@10173078` | `10173078` | `Unwind@10173078` | +| `Unwind@101730c0` | `101730c0` | `Unwind@101730c0` | +| `Unwind@101730f0` | `101730f0` | `Unwind@101730f0` | +| `Unwind@101730f8` | `101730f8` | `Unwind@101730f8` | +| `Unwind@10173120` | `10173120` | `Unwind@10173120` | +| `Unwind@10173128` | `10173128` | `Unwind@10173128` | +| `Unwind@10173150` | `10173150` | `Unwind@10173150` | +| `Unwind@10173180` | `10173180` | `Unwind@10173180` | +| `Unwind@101731b0` | `101731b0` | `Unwind@101731b0` | +| `Unwind@101731e0` | `101731e0` | `Unwind@101731e0` | +| `Unwind@10173210` | `10173210` | `Unwind@10173210` | +| `Unwind@10173240` | `10173240` | `Unwind@10173240` | +| `Unwind@10173270` | `10173270` | `Unwind@10173270` | +| `Unwind@101732a0` | `101732a0` | `Unwind@101732a0` | +| `Unwind@101732d0` | `101732d0` | `Unwind@101732d0` | +| `Unwind@10173300` | `10173300` | `Unwind@10173300` | +| `Unwind@10173330` | `10173330` | `Unwind@10173330` | +| `Unwind@10173360` | `10173360` | `Unwind@10173360` | +| `Unwind@10173390` | `10173390` | `Unwind@10173390` | +| `Unwind@101733c0` | `101733c0` | `Unwind@101733c0` | +| `Unwind@101733f0` | `101733f0` | `Unwind@101733f0` | +| `Unwind@10173420` | `10173420` | `Unwind@10173420` | +| `Unwind@10173428` | `10173428` | `Unwind@10173428` | +| `Unwind@10173450` | `10173450` | `Unwind@10173450` | +| `Unwind@10173458` | `10173458` | `Unwind@10173458` | +| `Unwind@10173480` | `10173480` | `Unwind@10173480` | +| `Unwind@10173488` | `10173488` | `Unwind@10173488` | +| `Unwind@101734b0` | `101734b0` | `Unwind@101734b0` | +| `Unwind@101734b8` | `101734b8` | `Unwind@101734b8` | +| `Unwind@101734e0` | `101734e0` | `Unwind@101734e0` | +| `Unwind@10173510` | `10173510` | `Unwind@10173510` | +| `Unwind@10173540` | `10173540` | `Unwind@10173540` | +| `Unwind@10173570` | `10173570` | `Unwind@10173570` | +| `Unwind@101735a0` | `101735a0` | `Unwind@101735a0` | +| `Unwind@101735d0` | `101735d0` | `Unwind@101735d0` | +| `Unwind@10173600` | `10173600` | `Unwind@10173600` | +| `Unwind@10173650` | `10173650` | `Unwind@10173650` | +| `Unwind@10173680` | `10173680` | `Unwind@10173680` | +| `Unwind@101736b0` | `101736b0` | `Unwind@101736b0` | +| `Unwind@101736e0` | `101736e0` | `Unwind@101736e0` | +| `Unwind@10173730` | `10173730` | `Unwind@10173730` | +| `Unwind@10173760` | `10173760` | `Unwind@10173760` | +| `Unwind@101737b0` | `101737b0` | `Unwind@101737b0` | +| `Unwind@101737e0` | `101737e0` | `Unwind@101737e0` | +| `Unwind@10173810` | `10173810` | `Unwind@10173810` | +| `Unwind@10173840` | `10173840` | `Unwind@10173840` | +| `Unwind@10173870` | `10173870` | `Unwind@10173870` | +| `Unwind@10173878` | `10173878` | `Unwind@10173878` | +| `Unwind@101738c0` | `101738c0` | `Unwind@101738c0` | +| `Unwind@101738c8` | `101738c8` | `Unwind@101738c8` | +| `Unwind@101738d0` | `101738d0` | `Unwind@101738d0` | +| `Unwind@10173900` | `10173900` | `Unwind@10173900` | +| `Unwind@10173908` | `10173908` | `Unwind@10173908` | +| `Unwind@10173930` | `10173930` | `Unwind@10173930` | +| `Unwind@10173938` | `10173938` | `Unwind@10173938` | +| `Unwind@10173960` | `10173960` | `Unwind@10173960` | +| `Unwind@10173990` | `10173990` | `Unwind@10173990` | +| `Unwind@10173998` | `10173998` | `Unwind@10173998` | +| `Unwind@101739a0` | `101739a0` | `Unwind@101739a0` | +| `Unwind@101739d0` | `101739d0` | `Unwind@101739d0` | +| `Unwind@10173a00` | `10173a00` | `Unwind@10173a00` | +| `Unwind@10173a08` | `10173a08` | `Unwind@10173a08` | +| `Unwind@10173a10` | `10173a10` | `Unwind@10173a10` | +| `Unwind@10173a40` | `10173a40` | `Unwind@10173a40` | +| `Unwind@10173a70` | `10173a70` | `Unwind@10173a70` | +| `Unwind@10173a78` | `10173a78` | `Unwind@10173a78` | +| `Unwind@10173aa0` | `10173aa0` | `Unwind@10173aa0` | +| `Unwind@10173aa8` | `10173aa8` | `Unwind@10173aa8` | +| `Unwind@10173ad0` | `10173ad0` | `Unwind@10173ad0` | +| `Unwind@10173ae1` | `10173ae1` | `Unwind@10173ae1` | +| `Unwind@10173ae9` | `10173ae9` | `Unwind@10173ae9` | +| `Unwind@10173b10` | `10173b10` | `Unwind@10173b10` | +| `Unwind@10173b18` | `10173b18` | `Unwind@10173b18` | +| `Unwind@10173b20` | `10173b20` | `Unwind@10173b20` | +| `Unwind@10173b2b` | `10173b2b` | `Unwind@10173b2b` | +| `Unwind@10173b33` | `10173b33` | `Unwind@10173b33` | +| `Unwind@10173b3e` | `10173b3e` | `Unwind@10173b3e` | +| `Unwind@10173b46` | `10173b46` | `Unwind@10173b46` | +| `Unwind@10173b54` | `10173b54` | `Unwind@10173b54` | +| `Unwind@10173b5c` | `10173b5c` | `Unwind@10173b5c` | +| `Unwind@10173b64` | `10173b64` | `Unwind@10173b64` | +| `Unwind@10173b72` | `10173b72` | `Unwind@10173b72` | +| `Unwind@10173b7b` | `10173b7b` | `Unwind@10173b7b` | +| `Unwind@10173b84` | `10173b84` | `Unwind@10173b84` | +| `Unwind@10173b8d` | `10173b8d` | `Unwind@10173b8d` | +| `Unwind@10173bc0` | `10173bc0` | `Unwind@10173bc0` | +| `Unwind@10173bf0` | `10173bf0` | `Unwind@10173bf0` | +| `Unwind@10173bf8` | `10173bf8` | `Unwind@10173bf8` | +| `Unwind@10173c00` | `10173c00` | `Unwind@10173c00` | +| `Unwind@10173c0b` | `10173c0b` | `Unwind@10173c0b` | +| `Unwind@10173c30` | `10173c30` | `Unwind@10173c30` | +| `Unwind@10173c38` | `10173c38` | `Unwind@10173c38` | +| `Unwind@10173c60` | `10173c60` | `Unwind@10173c60` | +| `Unwind@10173c68` | `10173c68` | `Unwind@10173c68` | +| `Unwind@10173c70` | `10173c70` | `Unwind@10173c70` | +| `Unwind@10173c78` | `10173c78` | `Unwind@10173c78` | +| `Unwind@10173c80` | `10173c80` | `Unwind@10173c80` | +| `Unwind@10173c88` | `10173c88` | `Unwind@10173c88` | +| `Unwind@10173cc0` | `10173cc0` | `Unwind@10173cc0` | +| `Unwind@10173cd1` | `10173cd1` | `Unwind@10173cd1` | +| `Unwind@10173cd9` | `10173cd9` | `Unwind@10173cd9` | +| `Unwind@10173d00` | `10173d00` | `Unwind@10173d00` | +| `Unwind@10173d30` | `10173d30` | `Unwind@10173d30` | +| `Unwind@10173d41` | `10173d41` | `Unwind@10173d41` | +| `Unwind@10173d49` | `10173d49` | `Unwind@10173d49` | +| `Unwind@10173d70` | `10173d70` | `Unwind@10173d70` | +| `Unwind@10173d7e` | `10173d7e` | `Unwind@10173d7e` | +| `Unwind@10173d8c` | `10173d8c` | `Unwind@10173d8c` | +| `Unwind@10173d94` | `10173d94` | `Unwind@10173d94` | +| `Unwind@10173da2` | `10173da2` | `Unwind@10173da2` | +| `Unwind@10173daa` | `10173daa` | `Unwind@10173daa` | +| `Unwind@10173db2` | `10173db2` | `Unwind@10173db2` | +| `Unwind@10173dbd` | `10173dbd` | `Unwind@10173dbd` | +| `Unwind@10173df0` | `10173df0` | `Unwind@10173df0` | +| `Unwind@10173df8` | `10173df8` | `Unwind@10173df8` | +| `Unwind@10173e00` | `10173e00` | `Unwind@10173e00` | +| `Unwind@10173e0b` | `10173e0b` | `Unwind@10173e0b` | +| `Unwind@10173e13` | `10173e13` | `Unwind@10173e13` | +| `Unwind@10173e1b` | `10173e1b` | `Unwind@10173e1b` | +| `Unwind@10173e23` | `10173e23` | `Unwind@10173e23` | +| `Unwind@10173e2b` | `10173e2b` | `Unwind@10173e2b` | +| `Unwind@10173e33` | `10173e33` | `Unwind@10173e33` | +| `Unwind@10173e3b` | `10173e3b` | `Unwind@10173e3b` | +| `Unwind@10173e46` | `10173e46` | `Unwind@10173e46` | +| `Unwind@10173e4e` | `10173e4e` | `Unwind@10173e4e` | +| `Unwind@10173e90` | `10173e90` | `Unwind@10173e90` | +| `Unwind@10173e98` | `10173e98` | `Unwind@10173e98` | +| `Unwind@10173ea3` | `10173ea3` | `Unwind@10173ea3` | +| `Unwind@10173eab` | `10173eab` | `Unwind@10173eab` | +| `Unwind@10173ee0` | `10173ee0` | `Unwind@10173ee0` | +| `Unwind@10173ee8` | `10173ee8` | `Unwind@10173ee8` | +| `Unwind@10173f10` | `10173f10` | `Unwind@10173f10` | +| `Unwind@10173f18` | `10173f18` | `Unwind@10173f18` | +| `Unwind@10173f40` | `10173f40` | `Unwind@10173f40` | +| `Unwind@10173f51` | `10173f51` | `Unwind@10173f51` | +| `Unwind@10173f59` | `10173f59` | `Unwind@10173f59` | +| `Unwind@10173f80` | `10173f80` | `Unwind@10173f80` | +| `Unwind@10173f88` | `10173f88` | `Unwind@10173f88` | +| `Unwind@10173f93` | `10173f93` | `Unwind@10173f93` | +| `Unwind@10173f9e` | `10173f9e` | `Unwind@10173f9e` | +| `Unwind@10173fac` | `10173fac` | `Unwind@10173fac` | +| `Unwind@10173fb4` | `10173fb4` | `Unwind@10173fb4` | +| `Unwind@10173fe0` | `10173fe0` | `Unwind@10173fe0` | +| `Unwind@10174010` | `10174010` | `Unwind@10174010` | +| `Unwind@10174040` | `10174040` | `Unwind@10174040` | +| `Unwind@10174080` | `10174080` | `Unwind@10174080` | +| `Unwind@1017408b` | `1017408b` | `Unwind@1017408b` | +| `Unwind@10174093` | `10174093` | `Unwind@10174093` | +| `Unwind@101740c0` | `101740c0` | `Unwind@101740c0` | +| `Unwind@101740f0` | `101740f0` | `Unwind@101740f0` | +| `Unwind@10174120` | `10174120` | `Unwind@10174120` | +| `Unwind@1017412b` | `1017412b` | `Unwind@1017412b` | +| `Unwind@10174150` | `10174150` | `Unwind@10174150` | +| `Unwind@1017415b` | `1017415b` | `Unwind@1017415b` | +| `Unwind@101741a0` | `101741a0` | `Unwind@101741a0` | +| `Unwind@101741b1` | `101741b1` | `Unwind@101741b1` | +| `Unwind@101741bc` | `101741bc` | `Unwind@101741bc` | +| `Unwind@101741e0` | `101741e0` | `Unwind@101741e0` | +| `Unwind@101741eb` | `101741eb` | `Unwind@101741eb` | +| `Unwind@101741f3` | `101741f3` | `Unwind@101741f3` | +| `Unwind@10174230` | `10174230` | `Unwind@10174230` | +| `Unwind@10174238` | `10174238` | `Unwind@10174238` | +| `Unwind@10174260` | `10174260` | `Unwind@10174260` | +| `Unwind@10174271` | `10174271` | `Unwind@10174271` | +| `Unwind@1017427c` | `1017427c` | `Unwind@1017427c` | +| `Unwind@101742a0` | `101742a0` | `Unwind@101742a0` | +| `Unwind@101742a8` | `101742a8` | `Unwind@101742a8` | +| `Unwind@101742d0` | `101742d0` | `Unwind@101742d0` | +| `Unwind@10174300` | `10174300` | `Unwind@10174300` | +| `Unwind@10174308` | `10174308` | `Unwind@10174308` | +| `Unwind@10174330` | `10174330` | `Unwind@10174330` | +| `Unwind@1017433e` | `1017433e` | `Unwind@1017433e` | +| `Unwind@10174349` | `10174349` | `Unwind@10174349` | +| `Unwind@10174354` | `10174354` | `Unwind@10174354` | +| `Unwind@1017435f` | `1017435f` | `Unwind@1017435f` | +| `Unwind@101743a0` | `101743a0` | `Unwind@101743a0` | +| `Unwind@101743d0` | `101743d0` | `Unwind@101743d0` | +| `Unwind@101743d8` | `101743d8` | `Unwind@101743d8` | +| `Unwind@101743e0` | `101743e0` | `Unwind@101743e0` | +| `Unwind@10174410` | `10174410` | `Unwind@10174410` | +| `Unwind@10174418` | `10174418` | `Unwind@10174418` | +| `Unwind@10174420` | `10174420` | `Unwind@10174420` | +| `Unwind@10174428` | `10174428` | `Unwind@10174428` | +| `Unwind@10174450` | `10174450` | `Unwind@10174450` | +| `Unwind@10174458` | `10174458` | `Unwind@10174458` | +| `Unwind@10174460` | `10174460` | `Unwind@10174460` | +| `Unwind@10174468` | `10174468` | `Unwind@10174468` | +| `Unwind@10174470` | `10174470` | `Unwind@10174470` | +| `Unwind@1017447b` | `1017447b` | `Unwind@1017447b` | +| `Unwind@101744a0` | `101744a0` | `Unwind@101744a0` | +| `Unwind@101744a8` | `101744a8` | `Unwind@101744a8` | +| `Unwind@101744b0` | `101744b0` | `Unwind@101744b0` | +| `Unwind@101744b8` | `101744b8` | `Unwind@101744b8` | +| `Unwind@101744c0` | `101744c0` | `Unwind@101744c0` | +| `Unwind@101744c8` | `101744c8` | `Unwind@101744c8` | +| `Unwind@101744f0` | `101744f0` | `Unwind@101744f0` | +| `Unwind@101744f8` | `101744f8` | `Unwind@101744f8` | +| `Unwind@10174500` | `10174500` | `Unwind@10174500` | +| `Unwind@10174508` | `10174508` | `Unwind@10174508` | +| `Unwind@10174513` | `10174513` | `Unwind@10174513` | +| `Unwind@1017451e` | `1017451e` | `Unwind@1017451e` | +| `Unwind@10174526` | `10174526` | `Unwind@10174526` | +| `Unwind@1017452e` | `1017452e` | `Unwind@1017452e` | +| `Unwind@10174536` | `10174536` | `Unwind@10174536` | +| `Unwind@10174541` | `10174541` | `Unwind@10174541` | +| `Unwind@1017454c` | `1017454c` | `Unwind@1017454c` | +| `Unwind@10174557` | `10174557` | `Unwind@10174557` | +| `Unwind@10174562` | `10174562` | `Unwind@10174562` | +| `Unwind@1017456a` | `1017456a` | `Unwind@1017456a` | +| `Unwind@10174575` | `10174575` | `Unwind@10174575` | +| `Unwind@10174580` | `10174580` | `Unwind@10174580` | +| `Unwind@1017458b` | `1017458b` | `Unwind@1017458b` | +| `Unwind@10174596` | `10174596` | `Unwind@10174596` | +| `Unwind@101745a1` | `101745a1` | `Unwind@101745a1` | +| `Unwind@101745ac` | `101745ac` | `Unwind@101745ac` | +| `Unwind@101745b7` | `101745b7` | `Unwind@101745b7` | +| `Unwind@101745f0` | `101745f0` | `Unwind@101745f0` | +| `Unwind@10174601` | `10174601` | `Unwind@10174601` | +| `Unwind@10174609` | `10174609` | `Unwind@10174609` | +| `Unwind@10174611` | `10174611` | `Unwind@10174611` | +| `Unwind@10174619` | `10174619` | `Unwind@10174619` | +| `Unwind@10174640` | `10174640` | `Unwind@10174640` | +| `Unwind@10174651` | `10174651` | `Unwind@10174651` | +| `Unwind@10174659` | `10174659` | `Unwind@10174659` | +| `Unwind@10174661` | `10174661` | `Unwind@10174661` | +| `Unwind@10174669` | `10174669` | `Unwind@10174669` | +| `Unwind@10174690` | `10174690` | `Unwind@10174690` | +| `Unwind@101746c0` | `101746c0` | `Unwind@101746c0` | +| `Unwind@101746c8` | `101746c8` | `Unwind@101746c8` | +| `Unwind@101746d0` | `101746d0` | `Unwind@101746d0` | +| `Unwind@101746d8` | `101746d8` | `Unwind@101746d8` | +| `Unwind@101746e3` | `101746e3` | `Unwind@101746e3` | +| `Unwind@101746ee` | `101746ee` | `Unwind@101746ee` | +| `Unwind@101746f6` | `101746f6` | `Unwind@101746f6` | +| `Unwind@101746fe` | `101746fe` | `Unwind@101746fe` | +| `Unwind@10174706` | `10174706` | `Unwind@10174706` | +| `Unwind@10174711` | `10174711` | `Unwind@10174711` | +| `Unwind@10174750` | `10174750` | `Unwind@10174750` | +| `Unwind@1017475e` | `1017475e` | `Unwind@1017475e` | +| `Unwind@101747a0` | `101747a0` | `Unwind@101747a0` | +| `Unwind@101747ae` | `101747ae` | `Unwind@101747ae` | +| `Unwind@101747bc` | `101747bc` | `Unwind@101747bc` | +| `Unwind@10174800` | `10174800` | `Unwind@10174800` | +| `Unwind@10174808` | `10174808` | `Unwind@10174808` | +| `Unwind@10174830` | `10174830` | `Unwind@10174830` | +| `Unwind@10174838` | `10174838` | `Unwind@10174838` | +| `Unwind@10174840` | `10174840` | `Unwind@10174840` | +| `Unwind@10174848` | `10174848` | `Unwind@10174848` | +| `Unwind@10174853` | `10174853` | `Unwind@10174853` | +| `Unwind@1017485e` | `1017485e` | `Unwind@1017485e` | +| `Unwind@10174866` | `10174866` | `Unwind@10174866` | +| `Unwind@101748a0` | `101748a0` | `Unwind@101748a0` | +| `Unwind@101748ab` | `101748ab` | `Unwind@101748ab` | +| `Unwind@101748b6` | `101748b6` | `Unwind@101748b6` | +| `Unwind@101748c1` | `101748c1` | `Unwind@101748c1` | +| `Unwind@10174900` | `10174900` | `Unwind@10174900` | +| `Unwind@10174908` | `10174908` | `Unwind@10174908` | +| `Unwind@10174910` | `10174910` | `Unwind@10174910` | +| `Unwind@10174918` | `10174918` | `Unwind@10174918` | +| `Unwind@10174923` | `10174923` | `Unwind@10174923` | +| `Unwind@1017492e` | `1017492e` | `Unwind@1017492e` | +| `Unwind@10174936` | `10174936` | `Unwind@10174936` | +| `Unwind@1017493e` | `1017493e` | `Unwind@1017493e` | +| `Unwind@10174946` | `10174946` | `Unwind@10174946` | +| `Unwind@10174951` | `10174951` | `Unwind@10174951` | +| `Unwind@10174990` | `10174990` | `Unwind@10174990` | +| `Unwind@1017499b` | `1017499b` | `Unwind@1017499b` | +| `Unwind@101749a6` | `101749a6` | `Unwind@101749a6` | +| `Unwind@101749b1` | `101749b1` | `Unwind@101749b1` | +| `Unwind@101749bf` | `101749bf` | `Unwind@101749bf` | +| `Unwind@101749ca` | `101749ca` | `Unwind@101749ca` | +| `Unwind@101749d5` | `101749d5` | `Unwind@101749d5` | +| `Unwind@101749e0` | `101749e0` | `Unwind@101749e0` | +| `Unwind@101749eb` | `101749eb` | `Unwind@101749eb` | +| `Unwind@101749f6` | `101749f6` | `Unwind@101749f6` | +| `Unwind@10174a01` | `10174a01` | `Unwind@10174a01` | +| `Unwind@10174a0c` | `10174a0c` | `Unwind@10174a0c` | +| `Unwind@10174a17` | `10174a17` | `Unwind@10174a17` | +| `Unwind@10174a22` | `10174a22` | `Unwind@10174a22` | +| `Unwind@10174a2d` | `10174a2d` | `Unwind@10174a2d` | +| `Unwind@10174a38` | `10174a38` | `Unwind@10174a38` | +| `Unwind@10174a43` | `10174a43` | `Unwind@10174a43` | +| `Unwind@10174a4e` | `10174a4e` | `Unwind@10174a4e` | +| `Unwind@10174a56` | `10174a56` | `Unwind@10174a56` | +| `Unwind@10174a61` | `10174a61` | `Unwind@10174a61` | +| `Unwind@10174aa0` | `10174aa0` | `Unwind@10174aa0` | +| `Unwind@10174aa8` | `10174aa8` | `Unwind@10174aa8` | +| `Unwind@10174ab0` | `10174ab0` | `Unwind@10174ab0` | +| `Unwind@10174ab8` | `10174ab8` | `Unwind@10174ab8` | +| `Unwind@10174ac0` | `10174ac0` | `Unwind@10174ac0` | +| `Unwind@10174ac8` | `10174ac8` | `Unwind@10174ac8` | +| `Unwind@10174ad0` | `10174ad0` | `Unwind@10174ad0` | +| `Unwind@10174b00` | `10174b00` | `Unwind@10174b00` | +| `Unwind@10174b30` | `10174b30` | `Unwind@10174b30` | +| `Unwind@10174b60` | `10174b60` | `Unwind@10174b60` | +| `Unwind@10174b90` | `10174b90` | `Unwind@10174b90` | +| `Unwind@10174bc0` | `10174bc0` | `Unwind@10174bc0` | +| `Unwind@10174bf0` | `10174bf0` | `Unwind@10174bf0` | +| `Unwind@10174c20` | `10174c20` | `Unwind@10174c20` | +| `Unwind@10174c50` | `10174c50` | `Unwind@10174c50` | +| `Unwind@10174c80` | `10174c80` | `Unwind@10174c80` | +| `Unwind@10174cb0` | `10174cb0` | `Unwind@10174cb0` | +| `Unwind@10174ce0` | `10174ce0` | `Unwind@10174ce0` | +| `Unwind@10174d10` | `10174d10` | `Unwind@10174d10` | +| `Unwind@10174d40` | `10174d40` | `Unwind@10174d40` | +| `Unwind@10174d70` | `10174d70` | `Unwind@10174d70` | +| `Unwind@10174da0` | `10174da0` | `Unwind@10174da0` | +| `Unwind@10174dd0` | `10174dd0` | `Unwind@10174dd0` | +| `Unwind@10174e00` | `10174e00` | `Unwind@10174e00` | +| `Unwind@10174e30` | `10174e30` | `Unwind@10174e30` | +| `Unwind@10174e60` | `10174e60` | `Unwind@10174e60` | +| `Unwind@10174e90` | `10174e90` | `Unwind@10174e90` | +| `Unwind@10174ec0` | `10174ec0` | `Unwind@10174ec0` | +| `Unwind@10174ef0` | `10174ef0` | `Unwind@10174ef0` | +| `Unwind@10174f20` | `10174f20` | `Unwind@10174f20` | +| `Unwind@10174f50` | `10174f50` | `Unwind@10174f50` | +| `Unwind@10174f80` | `10174f80` | `Unwind@10174f80` | +| `Unwind@10174fb0` | `10174fb0` | `Unwind@10174fb0` | +| `Unwind@10174fb8` | `10174fb8` | `Unwind@10174fb8` | +| `Unwind@10174fe0` | `10174fe0` | `Unwind@10174fe0` | +| `Unwind@10174feb` | `10174feb` | `Unwind@10174feb` | +| `Unwind@10175020` | `10175020` | `Unwind@10175020` | +| `Unwind@10175028` | `10175028` | `Unwind@10175028` | +| `Unwind@10175050` | `10175050` | `Unwind@10175050` | +| `Unwind@10175080` | `10175080` | `Unwind@10175080` | +| `Unwind@101750b0` | `101750b0` | `Unwind@101750b0` | +| `Unwind@101750e0` | `101750e0` | `Unwind@101750e0` | +| `Unwind@10175110` | `10175110` | `Unwind@10175110` | +| `Unwind@10175140` | `10175140` | `Unwind@10175140` | +| `Unwind@10175170` | `10175170` | `Unwind@10175170` | +| `Unwind@101751a0` | `101751a0` | `Unwind@101751a0` | +| `Unwind@101751d0` | `101751d0` | `Unwind@101751d0` | +| `Unwind@10175200` | `10175200` | `Unwind@10175200` | +| `Unwind@10175230` | `10175230` | `Unwind@10175230` | +| `Unwind@10175260` | `10175260` | `Unwind@10175260` | +| `Unwind@10175290` | `10175290` | `Unwind@10175290` | +| `Unwind@101752c0` | `101752c0` | `Unwind@101752c0` | +| `Unwind@101752c8` | `101752c8` | `Unwind@101752c8` | +| `Unwind@101752f0` | `101752f0` | `Unwind@101752f0` | +| `Unwind@101752f8` | `101752f8` | `Unwind@101752f8` | +| `Unwind@10175320` | `10175320` | `Unwind@10175320` | +| `Unwind@10175328` | `10175328` | `Unwind@10175328` | +| `Unwind@10175350` | `10175350` | `Unwind@10175350` | +| `Unwind@10175358` | `10175358` | `Unwind@10175358` | +| `Unwind@10175380` | `10175380` | `Unwind@10175380` | +| `Unwind@10175388` | `10175388` | `Unwind@10175388` | +| `Unwind@101753b0` | `101753b0` | `Unwind@101753b0` | +| `Unwind@101753b8` | `101753b8` | `Unwind@101753b8` | +| `Unwind@101753e0` | `101753e0` | `Unwind@101753e0` | +| `Unwind@101753e8` | `101753e8` | `Unwind@101753e8` | +| `Unwind@10175410` | `10175410` | `Unwind@10175410` | +| `Unwind@10175440` | `10175440` | `Unwind@10175440` | +| `Unwind@10175470` | `10175470` | `Unwind@10175470` | +| `Unwind@101754a0` | `101754a0` | `Unwind@101754a0` | +| `Unwind@101754d0` | `101754d0` | `Unwind@101754d0` | +| `Unwind@10175500` | `10175500` | `Unwind@10175500` | +| `Unwind@10175530` | `10175530` | `Unwind@10175530` | +| `Unwind@10175538` | `10175538` | `Unwind@10175538` | +| `Unwind@10175560` | `10175560` | `Unwind@10175560` | +| `Unwind@101755a0` | `101755a0` | `Unwind@101755a0` | +| `Unwind@101755f0` | `101755f0` | `Unwind@101755f0` | +| `Unwind@101755f8` | `101755f8` | `Unwind@101755f8` | +| `Unwind@10175630` | `10175630` | `Unwind@10175630` | +| `Unwind@10175660` | `10175660` | `Unwind@10175660` | +| `Unwind@1017566b` | `1017566b` | `Unwind@1017566b` | +| `Unwind@10175679` | `10175679` | `Unwind@10175679` | +| `Unwind@10175687` | `10175687` | `Unwind@10175687` | +| `Unwind@10175695` | `10175695` | `Unwind@10175695` | +| `Unwind@101756a3` | `101756a3` | `Unwind@101756a3` | +| `Unwind@101756ab` | `101756ab` | `Unwind@101756ab` | +| `Unwind@101756b9` | `101756b9` | `Unwind@101756b9` | +| `Unwind@101756c1` | `101756c1` | `Unwind@101756c1` | +| `Unwind@101756cf` | `101756cf` | `Unwind@101756cf` | +| `Unwind@101756dd` | `101756dd` | `Unwind@101756dd` | +| `Unwind@101756e8` | `101756e8` | `Unwind@101756e8` | +| `Unwind@101756f3` | `101756f3` | `Unwind@101756f3` | +| `Unwind@10175701` | `10175701` | `Unwind@10175701` | +| `Unwind@1017570f` | `1017570f` | `Unwind@1017570f` | +| `Unwind@10175717` | `10175717` | `Unwind@10175717` | +| `Unwind@10175722` | `10175722` | `Unwind@10175722` | +| `Unwind@10175730` | `10175730` | `Unwind@10175730` | +| `Unwind@10175738` | `10175738` | `Unwind@10175738` | +| `Unwind@10175770` | `10175770` | `Unwind@10175770` | +| `Unwind@10175778` | `10175778` | `Unwind@10175778` | +| `Unwind@10175780` | `10175780` | `Unwind@10175780` | +| `Unwind@1017578e` | `1017578e` | `Unwind@1017578e` | +| `Unwind@1017579c` | `1017579c` | `Unwind@1017579c` | +| `Unwind@101757d0` | `101757d0` | `Unwind@101757d0` | +| `Unwind@101757d8` | `101757d8` | `Unwind@101757d8` | +| `Unwind@101757e0` | `101757e0` | `Unwind@101757e0` | +| `Unwind@10175810` | `10175810` | `Unwind@10175810` | +| `Unwind@10175818` | `10175818` | `Unwind@10175818` | +| `Unwind@10175820` | `10175820` | `Unwind@10175820` | +| `Unwind@10175850` | `10175850` | `Unwind@10175850` | +| `Unwind@10175858` | `10175858` | `Unwind@10175858` | +| `Unwind@10175860` | `10175860` | `Unwind@10175860` | +| `Unwind@10175890` | `10175890` | `Unwind@10175890` | +| `Unwind@10175898` | `10175898` | `Unwind@10175898` | +| `Unwind@101758a0` | `101758a0` | `Unwind@101758a0` | +| `Unwind@101758d0` | `101758d0` | `Unwind@101758d0` | +| `Unwind@101758d8` | `101758d8` | `Unwind@101758d8` | +| `Unwind@101758e0` | `101758e0` | `Unwind@101758e0` | +| `Unwind@101758e8` | `101758e8` | `Unwind@101758e8` | +| `Unwind@10175910` | `10175910` | `Unwind@10175910` | +| `Unwind@1017591b` | `1017591b` | `Unwind@1017591b` | +| `Unwind@10175926` | `10175926` | `Unwind@10175926` | +| `Unwind@10175931` | `10175931` | `Unwind@10175931` | +| `Unwind@10175939` | `10175939` | `Unwind@10175939` | +| `Unwind@10175944` | `10175944` | `Unwind@10175944` | +| `Unwind@1017594f` | `1017594f` | `Unwind@1017594f` | +| `Unwind@10175957` | `10175957` | `Unwind@10175957` | +| `Unwind@10175962` | `10175962` | `Unwind@10175962` | +| `Unwind@1017596a` | `1017596a` | `Unwind@1017596a` | +| `Unwind@10175975` | `10175975` | `Unwind@10175975` | +| `Unwind@1017597d` | `1017597d` | `Unwind@1017597d` | +| `Unwind@10175988` | `10175988` | `Unwind@10175988` | +| `Unwind@10175990` | `10175990` | `Unwind@10175990` | +| `Unwind@10175998` | `10175998` | `Unwind@10175998` | +| `Unwind@101759a3` | `101759a3` | `Unwind@101759a3` | +| `Unwind@101759ab` | `101759ab` | `Unwind@101759ab` | +| `Unwind@101759b3` | `101759b3` | `Unwind@101759b3` | +| `Unwind@101759be` | `101759be` | `Unwind@101759be` | +| `Unwind@101759c6` | `101759c6` | `Unwind@101759c6` | +| `Unwind@101759ce` | `101759ce` | `Unwind@101759ce` | +| `Unwind@101759dc` | `101759dc` | `Unwind@101759dc` | +| `Unwind@101759e4` | `101759e4` | `Unwind@101759e4` | +| `Unwind@101759ec` | `101759ec` | `Unwind@101759ec` | +| `Unwind@101759fa` | `101759fa` | `Unwind@101759fa` | +| `Unwind@10175a02` | `10175a02` | `Unwind@10175a02` | +| `Unwind@10175a0a` | `10175a0a` | `Unwind@10175a0a` | +| `Unwind@10175a18` | `10175a18` | `Unwind@10175a18` | +| `Unwind@10175a20` | `10175a20` | `Unwind@10175a20` | +| `Unwind@10175a28` | `10175a28` | `Unwind@10175a28` | +| `Unwind@10175a36` | `10175a36` | `Unwind@10175a36` | +| `Unwind@10175a3e` | `10175a3e` | `Unwind@10175a3e` | +| `Unwind@10175a4c` | `10175a4c` | `Unwind@10175a4c` | +| `Unwind@10175a54` | `10175a54` | `Unwind@10175a54` | +| `Unwind@10175a5f` | `10175a5f` | `Unwind@10175a5f` | +| `Unwind@10175a6d` | `10175a6d` | `Unwind@10175a6d` | +| `Unwind@10175a76` | `10175a76` | `Unwind@10175a76` | +| `Unwind@10175a7f` | `10175a7f` | `Unwind@10175a7f` | +| `Unwind@10175a88` | `10175a88` | `Unwind@10175a88` | +| `Unwind@10175a91` | `10175a91` | `Unwind@10175a91` | +| `Unwind@10175a9a` | `10175a9a` | `Unwind@10175a9a` | +| `Unwind@10175aa3` | `10175aa3` | `Unwind@10175aa3` | +| `Unwind@10175aac` | `10175aac` | `Unwind@10175aac` | +| `Unwind@10175ab5` | `10175ab5` | `Unwind@10175ab5` | +| `Unwind@10175abe` | `10175abe` | `Unwind@10175abe` | +| `Unwind@10175af0` | `10175af0` | `Unwind@10175af0` | +| `Unwind@10175afb` | `10175afb` | `Unwind@10175afb` | +| `Unwind@10175b06` | `10175b06` | `Unwind@10175b06` | +| `Unwind@10175b11` | `10175b11` | `Unwind@10175b11` | +| `Unwind@10175b1c` | `10175b1c` | `Unwind@10175b1c` | +| `Unwind@10175b27` | `10175b27` | `Unwind@10175b27` | +| `Unwind@10175b32` | `10175b32` | `Unwind@10175b32` | +| `Unwind@10175b3d` | `10175b3d` | `Unwind@10175b3d` | +| `Unwind@10175b48` | `10175b48` | `Unwind@10175b48` | +| `Unwind@10175b53` | `10175b53` | `Unwind@10175b53` | +| `Unwind@10175b5e` | `10175b5e` | `Unwind@10175b5e` | +| `Unwind@10175b69` | `10175b69` | `Unwind@10175b69` | +| `Unwind@10175b74` | `10175b74` | `Unwind@10175b74` | +| `Unwind@10175b7f` | `10175b7f` | `Unwind@10175b7f` | +| `Unwind@10175b8d` | `10175b8d` | `Unwind@10175b8d` | +| `Unwind@10175b98` | `10175b98` | `Unwind@10175b98` | +| `Unwind@10175ba6` | `10175ba6` | `Unwind@10175ba6` | +| `Unwind@10175bb1` | `10175bb1` | `Unwind@10175bb1` | +| `Unwind@10175bbf` | `10175bbf` | `Unwind@10175bbf` | +| `Unwind@10175bcd` | `10175bcd` | `Unwind@10175bcd` | +| `Unwind@10175bdb` | `10175bdb` | `Unwind@10175bdb` | +| `Unwind@10175be6` | `10175be6` | `Unwind@10175be6` | +| `Unwind@10175bf4` | `10175bf4` | `Unwind@10175bf4` | +| `Unwind@10175bfc` | `10175bfc` | `Unwind@10175bfc` | +| `Unwind@10175c04` | `10175c04` | `Unwind@10175c04` | +| `Unwind@10175c0c` | `10175c0c` | `Unwind@10175c0c` | +| `Unwind@10175c14` | `10175c14` | `Unwind@10175c14` | +| `Unwind@10175c1f` | `10175c1f` | `Unwind@10175c1f` | +| `Unwind@10175c2a` | `10175c2a` | `Unwind@10175c2a` | +| `Unwind@10175c35` | `10175c35` | `Unwind@10175c35` | +| `Unwind@10175c40` | `10175c40` | `Unwind@10175c40` | +| `Unwind@10175c4b` | `10175c4b` | `Unwind@10175c4b` | +| `Unwind@10175c59` | `10175c59` | `Unwind@10175c59` | +| `Unwind@10175c67` | `10175c67` | `Unwind@10175c67` | +| `Unwind@10175c72` | `10175c72` | `Unwind@10175c72` | +| `Unwind@10175c7d` | `10175c7d` | `Unwind@10175c7d` | +| `Unwind@10175c88` | `10175c88` | `Unwind@10175c88` | +| `Unwind@10175c93` | `10175c93` | `Unwind@10175c93` | +| `Unwind@10175c9e` | `10175c9e` | `Unwind@10175c9e` | +| `Unwind@10175ca9` | `10175ca9` | `Unwind@10175ca9` | +| `Unwind@10175cb4` | `10175cb4` | `Unwind@10175cb4` | +| `Unwind@10175cc0` | `10175cc0` | `Unwind@10175cc0` | +| `Unwind@10175ccc` | `10175ccc` | `Unwind@10175ccc` | +| `Unwind@10175d00` | `10175d00` | `Unwind@10175d00` | +| `Unwind@10175d08` | `10175d08` | `Unwind@10175d08` | +| `Unwind@10175d10` | `10175d10` | `Unwind@10175d10` | +| `Unwind@10175d1b` | `10175d1b` | `Unwind@10175d1b` | +| `Unwind@10175d23` | `10175d23` | `Unwind@10175d23` | +| `Unwind@10175d50` | `10175d50` | `Unwind@10175d50` | +| `Unwind@10175d5e` | `10175d5e` | `Unwind@10175d5e` | +| `Unwind@10175d6c` | `10175d6c` | `Unwind@10175d6c` | +| `Unwind@10175d74` | `10175d74` | `Unwind@10175d74` | +| `Unwind@10175d7c` | `10175d7c` | `Unwind@10175d7c` | +| `Unwind@10175db0` | `10175db0` | `Unwind@10175db0` | +| `Unwind@10175db8` | `10175db8` | `Unwind@10175db8` | +| `Unwind@10175dc0` | `10175dc0` | `Unwind@10175dc0` | +| `Unwind@10175df0` | `10175df0` | `Unwind@10175df0` | +| `Unwind@10175df8` | `10175df8` | `Unwind@10175df8` | +| `Unwind@10175e06` | `10175e06` | `Unwind@10175e06` | +| `Unwind@10175e14` | `10175e14` | `Unwind@10175e14` | +| `Unwind@10175e40` | `10175e40` | `Unwind@10175e40` | +| `Unwind@10175e70` | `10175e70` | `Unwind@10175e70` | +| `Unwind@10175ea0` | `10175ea0` | `Unwind@10175ea0` | +| `Unwind@10175ed0` | `10175ed0` | `Unwind@10175ed0` | +| `Unwind@10175f00` | `10175f00` | `Unwind@10175f00` | +| `Unwind@10175f30` | `10175f30` | `Unwind@10175f30` | +| `Unwind@10175f60` | `10175f60` | `Unwind@10175f60` | +| `Unwind@10175f90` | `10175f90` | `Unwind@10175f90` | +| `Unwind@10175f98` | `10175f98` | `Unwind@10175f98` | +| `Unwind@10175fa3` | `10175fa3` | `Unwind@10175fa3` | +| `Unwind@10175fd0` | `10175fd0` | `Unwind@10175fd0` | +| `Unwind@10176000` | `10176000` | `Unwind@10176000` | +| `Unwind@10176008` | `10176008` | `Unwind@10176008` | +| `Unwind@10176030` | `10176030` | `Unwind@10176030` | +| `Unwind@10176060` | `10176060` | `Unwind@10176060` | +| `Unwind@10176090` | `10176090` | `Unwind@10176090` | +| `Unwind@101760c0` | `101760c0` | `Unwind@101760c0` | +| `Unwind@101760f0` | `101760f0` | `Unwind@101760f0` | +| `Unwind@10176120` | `10176120` | `Unwind@10176120` | +| `Unwind@10176128` | `10176128` | `Unwind@10176128` | +| `Unwind@10176130` | `10176130` | `Unwind@10176130` | +| `Unwind@10176160` | `10176160` | `Unwind@10176160` | +| `Unwind@10176168` | `10176168` | `Unwind@10176168` | +| `Unwind@10176173` | `10176173` | `Unwind@10176173` | +| `Unwind@101761a0` | `101761a0` | `Unwind@101761a0` | +| `Unwind@101761d0` | `101761d0` | `Unwind@101761d0` | +| `Unwind@10176200` | `10176200` | `Unwind@10176200` | +| `Unwind@10176230` | `10176230` | `Unwind@10176230` | +| `Unwind@10176260` | `10176260` | `Unwind@10176260` | +| `Unwind@10176290` | `10176290` | `Unwind@10176290` | +| `Unwind@101762c0` | `101762c0` | `Unwind@101762c0` | +| `Unwind@101762c8` | `101762c8` | `Unwind@101762c8` | +| `Unwind@101762d0` | `101762d0` | `Unwind@101762d0` | +| `Unwind@101762d8` | `101762d8` | `Unwind@101762d8` | +| `Unwind@101762e0` | `101762e0` | `Unwind@101762e0` | +| `Unwind@10176310` | `10176310` | `Unwind@10176310` | +| `Unwind@10176318` | `10176318` | `Unwind@10176318` | +| `Unwind@10176320` | `10176320` | `Unwind@10176320` | +| `Unwind@10176328` | `10176328` | `Unwind@10176328` | +| `Unwind@10176330` | `10176330` | `Unwind@10176330` | +| `Unwind@10176360` | `10176360` | `Unwind@10176360` | +| `Unwind@10176368` | `10176368` | `Unwind@10176368` | +| `Unwind@10176390` | `10176390` | `Unwind@10176390` | +| `Unwind@10176398` | `10176398` | `Unwind@10176398` | +| `Unwind@101763c0` | `101763c0` | `Unwind@101763c0` | +| `Unwind@101763f0` | `101763f0` | `Unwind@101763f0` | +| `Unwind@10176420` | `10176420` | `Unwind@10176420` | +| `Unwind@10176428` | `10176428` | `Unwind@10176428` | +| `Unwind@10176430` | `10176430` | `Unwind@10176430` | +| `Unwind@10176460` | `10176460` | `Unwind@10176460` | +| `Unwind@101764b0` | `101764b0` | `Unwind@101764b0` | +| `Unwind@101764e0` | `101764e0` | `Unwind@101764e0` | +| `Unwind@101764e8` | `101764e8` | `Unwind@101764e8` | +| `Unwind@10176510` | `10176510` | `Unwind@10176510` | +| `Unwind@10176550` | `10176550` | `Unwind@10176550` | +| `Unwind@10176558` | `10176558` | `Unwind@10176558` | +| `Unwind@10176560` | `10176560` | `Unwind@10176560` | +| `Unwind@10176590` | `10176590` | `Unwind@10176590` | +| `Unwind@101765c0` | `101765c0` | `Unwind@101765c0` | +| `Unwind@101765c8` | `101765c8` | `Unwind@101765c8` | +| `Unwind@101765d0` | `101765d0` | `Unwind@101765d0` | +| `Unwind@101765d8` | `101765d8` | `Unwind@101765d8` | +| `Unwind@101765e0` | `101765e0` | `Unwind@101765e0` | +| `Unwind@101765e8` | `101765e8` | `Unwind@101765e8` | +| `Unwind@101765f3` | `101765f3` | `Unwind@101765f3` | +| `Unwind@10176620` | `10176620` | `Unwind@10176620` | +| `Unwind@10176628` | `10176628` | `Unwind@10176628` | +| `Unwind@10176630` | `10176630` | `Unwind@10176630` | +| `Unwind@10176638` | `10176638` | `Unwind@10176638` | +| `Unwind@10176640` | `10176640` | `Unwind@10176640` | +| `Unwind@10176648` | `10176648` | `Unwind@10176648` | +| `Unwind@10176650` | `10176650` | `Unwind@10176650` | +| `Unwind@10176658` | `10176658` | `Unwind@10176658` | +| `Unwind@10176660` | `10176660` | `Unwind@10176660` | +| `Unwind@10176668` | `10176668` | `Unwind@10176668` | +| `Unwind@10176670` | `10176670` | `Unwind@10176670` | +| `Unwind@10176678` | `10176678` | `Unwind@10176678` | +| `Unwind@10176680` | `10176680` | `Unwind@10176680` | +| `Unwind@10176688` | `10176688` | `Unwind@10176688` | +| `Unwind@101766c0` | `101766c0` | `Unwind@101766c0` | +| `Unwind@101766f0` | `101766f0` | `Unwind@101766f0` | +| `Unwind@10176720` | `10176720` | `Unwind@10176720` | +| `Unwind@1017672b` | `1017672b` | `Unwind@1017672b` | +| `Unwind@10176736` | `10176736` | `Unwind@10176736` | +| `Unwind@10176741` | `10176741` | `Unwind@10176741` | +| `Unwind@1017674c` | `1017674c` | `Unwind@1017674c` | +| `Unwind@10176757` | `10176757` | `Unwind@10176757` | +| `Unwind@10176790` | `10176790` | `Unwind@10176790` | +| `Unwind@101767d0` | `101767d0` | `Unwind@101767d0` | +| `Unwind@101767d8` | `101767d8` | `Unwind@101767d8` | +| `Unwind@10176800` | `10176800` | `Unwind@10176800` | +| `Unwind@10176830` | `10176830` | `Unwind@10176830` | +| `Unwind@1017683b` | `1017683b` | `Unwind@1017683b` | +| `Unwind@10176843` | `10176843` | `Unwind@10176843` | +| `Unwind@10176870` | `10176870` | `Unwind@10176870` | +| `Unwind@10176878` | `10176878` | `Unwind@10176878` | +| `Unwind@10176880` | `10176880` | `Unwind@10176880` | +| `Unwind@101768b0` | `101768b0` | `Unwind@101768b0` | +| `Unwind@101768b8` | `101768b8` | `Unwind@101768b8` | +| `Unwind@101768e0` | `101768e0` | `Unwind@101768e0` | +| `Unwind@101768e8` | `101768e8` | `Unwind@101768e8` | +| `Unwind@10176910` | `10176910` | `Unwind@10176910` | +| `Unwind@10176918` | `10176918` | `Unwind@10176918` | +| `Unwind@10176940` | `10176940` | `Unwind@10176940` | +| `Unwind@10176948` | `10176948` | `Unwind@10176948` | +| `Unwind@10176953` | `10176953` | `Unwind@10176953` | +| `Unwind@1017695b` | `1017695b` | `Unwind@1017695b` | +| `Unwind@10176980` | `10176980` | `Unwind@10176980` | +| `Unwind@1017698b` | `1017698b` | `Unwind@1017698b` | +| `Unwind@101769c0` | `101769c0` | `Unwind@101769c0` | +| `Unwind@101769c8` | `101769c8` | `Unwind@101769c8` | +| `Unwind@101769d0` | `101769d0` | `Unwind@101769d0` | +| `Unwind@101769d8` | `101769d8` | `Unwind@101769d8` | +| `Unwind@10176a10` | `10176a10` | `Unwind@10176a10` | +| `Unwind@10176a18` | `10176a18` | `Unwind@10176a18` | +| `Unwind@10176a23` | `10176a23` | `Unwind@10176a23` | +| `Unwind@10176a50` | `10176a50` | `Unwind@10176a50` | +| `Unwind@10176a58` | `10176a58` | `Unwind@10176a58` | +| `Unwind@10176a63` | `10176a63` | `Unwind@10176a63` | +| `Unwind@10176a90` | `10176a90` | `Unwind@10176a90` | +| `Unwind@10176a98` | `10176a98` | `Unwind@10176a98` | +| `Unwind@10176aa3` | `10176aa3` | `Unwind@10176aa3` | +| `Unwind@10176ab1` | `10176ab1` | `Unwind@10176ab1` | +| `Unwind@10176abf` | `10176abf` | `Unwind@10176abf` | +| `Unwind@10176acd` | `10176acd` | `Unwind@10176acd` | +| `Unwind@10176adb` | `10176adb` | `Unwind@10176adb` | +| `Unwind@10176ae9` | `10176ae9` | `Unwind@10176ae9` | +| `Unwind@10176af7` | `10176af7` | `Unwind@10176af7` | +| `Unwind@10176b05` | `10176b05` | `Unwind@10176b05` | +| `Unwind@10176b13` | `10176b13` | `Unwind@10176b13` | +| `Unwind@10176b1b` | `10176b1b` | `Unwind@10176b1b` | +| `Unwind@10176b29` | `10176b29` | `Unwind@10176b29` | +| `Unwind@10176b37` | `10176b37` | `Unwind@10176b37` | +| `Unwind@10176b3f` | `10176b3f` | `Unwind@10176b3f` | +| `Unwind@10176b47` | `10176b47` | `Unwind@10176b47` | +| `Unwind@10176b4f` | `10176b4f` | `Unwind@10176b4f` | +| `Unwind@10176b57` | `10176b57` | `Unwind@10176b57` | +| `Unwind@10176b5f` | `10176b5f` | `Unwind@10176b5f` | +| `Unwind@10176b67` | `10176b67` | `Unwind@10176b67` | +| `Unwind@10176ba0` | `10176ba0` | `Unwind@10176ba0` | +| `Unwind@10176be0` | `10176be0` | `Unwind@10176be0` | +| `Unwind@10176c10` | `10176c10` | `Unwind@10176c10` | +| `Unwind@10176c18` | `10176c18` | `Unwind@10176c18` | +| `Unwind@10176c23` | `10176c23` | `Unwind@10176c23` | +| `Unwind@10176c2b` | `10176c2b` | `Unwind@10176c2b` | +| `Unwind@10176c33` | `10176c33` | `Unwind@10176c33` | +| `Unwind@10176c70` | `10176c70` | `Unwind@10176c70` | +| `Unwind@10176c78` | `10176c78` | `Unwind@10176c78` | +| `Unwind@10176c80` | `10176c80` | `Unwind@10176c80` | +| `Unwind@10176c88` | `10176c88` | `Unwind@10176c88` | +| `Unwind@10176c90` | `10176c90` | `Unwind@10176c90` | +| `Unwind@10176c98` | `10176c98` | `Unwind@10176c98` | +| `Unwind@10176ca0` | `10176ca0` | `Unwind@10176ca0` | +| `Unwind@10176cd0` | `10176cd0` | `Unwind@10176cd0` | +| `Unwind@10176cd8` | `10176cd8` | `Unwind@10176cd8` | +| `Unwind@10176ce3` | `10176ce3` | `Unwind@10176ce3` | +| `Unwind@10176ceb` | `10176ceb` | `Unwind@10176ceb` | +| `Unwind@10176d20` | `10176d20` | `Unwind@10176d20` | +| `Unwind@10176d31` | `10176d31` | `Unwind@10176d31` | +| `Unwind@10176d39` | `10176d39` | `Unwind@10176d39` | +| `Unwind@10176d44` | `10176d44` | `Unwind@10176d44` | +| `Unwind@10176d70` | `10176d70` | `Unwind@10176d70` | +| `Unwind@10176d78` | `10176d78` | `Unwind@10176d78` | +| `Unwind@10176d83` | `10176d83` | `Unwind@10176d83` | +| `Unwind@10176d8b` | `10176d8b` | `Unwind@10176d8b` | +| `Unwind@10176d93` | `10176d93` | `Unwind@10176d93` | +| `Unwind@10176dc0` | `10176dc0` | `Unwind@10176dc0` | +| `Unwind@10176dd1` | `10176dd1` | `Unwind@10176dd1` | +| `Unwind@10176dd9` | `10176dd9` | `Unwind@10176dd9` | +| `Unwind@10176de4` | `10176de4` | `Unwind@10176de4` | +| `Unwind@10176e10` | `10176e10` | `Unwind@10176e10` | +| `Unwind@10176e1b` | `10176e1b` | `Unwind@10176e1b` | +| `Unwind@10176e26` | `10176e26` | `Unwind@10176e26` | +| `Unwind@10176e60` | `10176e60` | `Unwind@10176e60` | +| `Unwind@10176e68` | `10176e68` | `Unwind@10176e68` | +| `Unwind@10176e73` | `10176e73` | `Unwind@10176e73` | +| `Unwind@10176e81` | `10176e81` | `Unwind@10176e81` | +| `Unwind@10176e8f` | `10176e8f` | `Unwind@10176e8f` | +| `Unwind@10176e9d` | `10176e9d` | `Unwind@10176e9d` | +| `Unwind@10176eab` | `10176eab` | `Unwind@10176eab` | +| `Unwind@10176eb9` | `10176eb9` | `Unwind@10176eb9` | +| `Unwind@10176ec7` | `10176ec7` | `Unwind@10176ec7` | +| `Unwind@10176ed5` | `10176ed5` | `Unwind@10176ed5` | +| `Unwind@10176ee3` | `10176ee3` | `Unwind@10176ee3` | +| `Unwind@10176ef1` | `10176ef1` | `Unwind@10176ef1` | +| `Unwind@10176eff` | `10176eff` | `Unwind@10176eff` | +| `Unwind@10176f30` | `10176f30` | `Unwind@10176f30` | +| `Unwind@10176f3e` | `10176f3e` | `Unwind@10176f3e` | +| `Unwind@10176f4c` | `10176f4c` | `Unwind@10176f4c` | +| `Unwind@10176f5a` | `10176f5a` | `Unwind@10176f5a` | +| `Unwind@10176f68` | `10176f68` | `Unwind@10176f68` | +| `Unwind@10176f76` | `10176f76` | `Unwind@10176f76` | +| `Unwind@10176f84` | `10176f84` | `Unwind@10176f84` | +| `Unwind@10176f8f` | `10176f8f` | `Unwind@10176f8f` | +| `Unwind@10176f9a` | `10176f9a` | `Unwind@10176f9a` | +| `Unwind@10176fd0` | `10176fd0` | `Unwind@10176fd0` | +| `Unwind@10177000` | `10177000` | `Unwind@10177000` | +| `Unwind@10177008` | `10177008` | `Unwind@10177008` | +| `Unwind@10177010` | `10177010` | `Unwind@10177010` | +| `Unwind@10177070` | `10177070` | `Unwind@10177070` | +| `Unwind@101770a0` | `101770a0` | `Unwind@101770a0` | +| `Unwind@101770d0` | `101770d0` | `Unwind@101770d0` | +| `Unwind@101770d8` | `101770d8` | `Unwind@101770d8` | +| `Unwind@101770e0` | `101770e0` | `Unwind@101770e0` | +| `Unwind@101770e8` | `101770e8` | `Unwind@101770e8` | +| `Unwind@101770f0` | `101770f0` | `Unwind@101770f0` | +| `Unwind@101770f8` | `101770f8` | `Unwind@101770f8` | +| `Unwind@10177100` | `10177100` | `Unwind@10177100` | +| `Unwind@10177108` | `10177108` | `Unwind@10177108` | +| `Unwind@10177110` | `10177110` | `Unwind@10177110` | +| `Unwind@10177118` | `10177118` | `Unwind@10177118` | +| `Unwind@10177120` | `10177120` | `Unwind@10177120` | +| `Unwind@10177150` | `10177150` | `Unwind@10177150` | +| `Unwind@10177180` | `10177180` | `Unwind@10177180` | +| `Unwind@10177188` | `10177188` | `Unwind@10177188` | +| `Unwind@10177190` | `10177190` | `Unwind@10177190` | +| `Unwind@10177198` | `10177198` | `Unwind@10177198` | +| `Unwind@101771c0` | `101771c0` | `Unwind@101771c0` | +| `Unwind@101771c8` | `101771c8` | `Unwind@101771c8` | +| `Unwind@101771d3` | `101771d3` | `Unwind@101771d3` | +| `Unwind@101771db` | `101771db` | `Unwind@101771db` | +| `Unwind@10177200` | `10177200` | `Unwind@10177200` | +| `Unwind@1017720b` | `1017720b` | `Unwind@1017720b` | +| `Unwind@10177230` | `10177230` | `Unwind@10177230` | +| `Unwind@1017723b` | `1017723b` | `Unwind@1017723b` | +| `Unwind@10177260` | `10177260` | `Unwind@10177260` | +| `Unwind@10177268` | `10177268` | `Unwind@10177268` | +| `Unwind@101772a0` | `101772a0` | `Unwind@101772a0` | +| `Unwind@101772a8` | `101772a8` | `Unwind@101772a8` | +| `Unwind@101772b0` | `101772b0` | `Unwind@101772b0` | +| `Unwind@101772b8` | `101772b8` | `Unwind@101772b8` | +| `Unwind@101772f0` | `101772f0` | `Unwind@101772f0` | +| `Unwind@101772fb` | `101772fb` | `Unwind@101772fb` | +| `Unwind@10177303` | `10177303` | `Unwind@10177303` | +| `Unwind@10177340` | `10177340` | `Unwind@10177340` | +| `Unwind@10177351` | `10177351` | `Unwind@10177351` | +| `Unwind@1017735c` | `1017735c` | `Unwind@1017735c` | +| `Unwind@10177380` | `10177380` | `Unwind@10177380` | +| `Unwind@10177391` | `10177391` | `Unwind@10177391` | +| `Unwind@1017739c` | `1017739c` | `Unwind@1017739c` | +| `Unwind@101773c0` | `101773c0` | `Unwind@101773c0` | +| `Unwind@101773f0` | `101773f0` | `Unwind@101773f0` | +| `Unwind@101773f8` | `101773f8` | `Unwind@101773f8` | +| `Unwind@10177403` | `10177403` | `Unwind@10177403` | +| `Unwind@1017740e` | `1017740e` | `Unwind@1017740e` | +| `Unwind@10177440` | `10177440` | `Unwind@10177440` | +| `Unwind@10177448` | `10177448` | `Unwind@10177448` | +| `Unwind@10177453` | `10177453` | `Unwind@10177453` | +| `Unwind@1017745e` | `1017745e` | `Unwind@1017745e` | +| `Unwind@10177490` | `10177490` | `Unwind@10177490` | +| `Unwind@10177498` | `10177498` | `Unwind@10177498` | +| `Unwind@101774a0` | `101774a0` | `Unwind@101774a0` | +| `Unwind@101774d0` | `101774d0` | `Unwind@101774d0` | +| `Unwind@10177500` | `10177500` | `Unwind@10177500` | +| `Unwind@10177508` | `10177508` | `Unwind@10177508` | +| `Unwind@10177510` | `10177510` | `Unwind@10177510` | +| `Unwind@10177540` | `10177540` | `Unwind@10177540` | +| `Unwind@10177548` | `10177548` | `Unwind@10177548` | +| `Unwind@10177550` | `10177550` | `Unwind@10177550` | +| `Unwind@10177580` | `10177580` | `Unwind@10177580` | +| `Unwind@10177588` | `10177588` | `Unwind@10177588` | +| `Unwind@10177590` | `10177590` | `Unwind@10177590` | +| `Unwind@101775c0` | `101775c0` | `Unwind@101775c0` | +| `Unwind@101775cb` | `101775cb` | `Unwind@101775cb` | +| `Unwind@101775d6` | `101775d6` | `Unwind@101775d6` | +| `Unwind@101775e1` | `101775e1` | `Unwind@101775e1` | +| `Unwind@101775ef` | `101775ef` | `Unwind@101775ef` | +| `Unwind@101775f7` | `101775f7` | `Unwind@101775f7` | +| `Unwind@101775ff` | `101775ff` | `Unwind@101775ff` | +| `Unwind@1017760d` | `1017760d` | `Unwind@1017760d` | +| `Unwind@10177618` | `10177618` | `Unwind@10177618` | +| `Unwind@10177623` | `10177623` | `Unwind@10177623` | +| `Unwind@1017762e` | `1017762e` | `Unwind@1017762e` | +| `Unwind@10177670` | `10177670` | `Unwind@10177670` | +| `Unwind@1017767b` | `1017767b` | `Unwind@1017767b` | +| `Unwind@10177686` | `10177686` | `Unwind@10177686` | +| `Unwind@10177691` | `10177691` | `Unwind@10177691` | +| `Unwind@1017769c` | `1017769c` | `Unwind@1017769c` | +| `Unwind@101776a4` | `101776a4` | `Unwind@101776a4` | +| `Unwind@101776ac` | `101776ac` | `Unwind@101776ac` | +| `Unwind@101776b4` | `101776b4` | `Unwind@101776b4` | +| `Unwind@101776bf` | `101776bf` | `Unwind@101776bf` | +| `Unwind@101776ca` | `101776ca` | `Unwind@101776ca` | +| `Unwind@101776d5` | `101776d5` | `Unwind@101776d5` | +| `Unwind@101776dd` | `101776dd` | `Unwind@101776dd` | +| `Unwind@101776e8` | `101776e8` | `Unwind@101776e8` | +| `Unwind@101776f3` | `101776f3` | `Unwind@101776f3` | +| `Unwind@101776fe` | `101776fe` | `Unwind@101776fe` | +| `Unwind@10177709` | `10177709` | `Unwind@10177709` | +| `Unwind@10177714` | `10177714` | `Unwind@10177714` | +| `Unwind@1017771f` | `1017771f` | `Unwind@1017771f` | +| `Unwind@1017772a` | `1017772a` | `Unwind@1017772a` | +| `Unwind@10177735` | `10177735` | `Unwind@10177735` | +| `Unwind@1017773d` | `1017773d` | `Unwind@1017773d` | +| `Unwind@10177748` | `10177748` | `Unwind@10177748` | +| `Unwind@10177753` | `10177753` | `Unwind@10177753` | +| `Unwind@1017775e` | `1017775e` | `Unwind@1017775e` | +| `Unwind@10177766` | `10177766` | `Unwind@10177766` | +| `Unwind@10177771` | `10177771` | `Unwind@10177771` | +| `Unwind@1017777c` | `1017777c` | `Unwind@1017777c` | +| `Unwind@10177787` | `10177787` | `Unwind@10177787` | +| `Unwind@10177795` | `10177795` | `Unwind@10177795` | +| `Unwind@101777a0` | `101777a0` | `Unwind@101777a0` | +| `Unwind@101777ab` | `101777ab` | `Unwind@101777ab` | +| `Unwind@101777b6` | `101777b6` | `Unwind@101777b6` | +| `Unwind@101777c4` | `101777c4` | `Unwind@101777c4` | +| `Unwind@101777cf` | `101777cf` | `Unwind@101777cf` | +| `Unwind@101777da` | `101777da` | `Unwind@101777da` | +| `Unwind@101777e5` | `101777e5` | `Unwind@101777e5` | +| `Unwind@101777f0` | `101777f0` | `Unwind@101777f0` | +| `Unwind@10177830` | `10177830` | `Unwind@10177830` | +| `Unwind@1017783b` | `1017783b` | `Unwind@1017783b` | +| `Unwind@10177880` | `10177880` | `Unwind@10177880` | +| `Unwind@10177888` | `10177888` | `Unwind@10177888` | +| `Unwind@10177890` | `10177890` | `Unwind@10177890` | +| `Unwind@10177898` | `10177898` | `Unwind@10177898` | +| `Unwind@101778a0` | `101778a0` | `Unwind@101778a0` | +| `Unwind@101778a8` | `101778a8` | `Unwind@101778a8` | +| `Unwind@101778b0` | `101778b0` | `Unwind@101778b0` | +| `Unwind@101778be` | `101778be` | `Unwind@101778be` | +| `Unwind@101778cc` | `101778cc` | `Unwind@101778cc` | +| `Unwind@10177900` | `10177900` | `Unwind@10177900` | +| `Unwind@1017790e` | `1017790e` | `Unwind@1017790e` | +| `Unwind@1017791c` | `1017791c` | `Unwind@1017791c` | +| `Unwind@10177924` | `10177924` | `Unwind@10177924` | +| `Unwind@1017792c` | `1017792c` | `Unwind@1017792c` | +| `Unwind@10177970` | `10177970` | `Unwind@10177970` | +| `Unwind@101779a0` | `101779a0` | `Unwind@101779a0` | +| `Unwind@101779d0` | `101779d0` | `Unwind@101779d0` | +| `Unwind@101779d8` | `101779d8` | `Unwind@101779d8` | +| `Unwind@10177a00` | `10177a00` | `Unwind@10177a00` | +| `Unwind@10177a30` | `10177a30` | `Unwind@10177a30` | +| `Unwind@10177a38` | `10177a38` | `Unwind@10177a38` | +| `Unwind@10177a40` | `10177a40` | `Unwind@10177a40` | +| `Unwind@10177a70` | `10177a70` | `Unwind@10177a70` | +| `Unwind@10177aa0` | `10177aa0` | `Unwind@10177aa0` | +| `Unwind@10177ad0` | `10177ad0` | `Unwind@10177ad0` | +| `Unwind@10177b00` | `10177b00` | `Unwind@10177b00` | +| `Unwind@10177b08` | `10177b08` | `Unwind@10177b08` | +| `Unwind@10177b30` | `10177b30` | `Unwind@10177b30` | +| `Unwind@10177b38` | `10177b38` | `Unwind@10177b38` | +| `Unwind@10177b40` | `10177b40` | `Unwind@10177b40` | +| `Unwind@10177b48` | `10177b48` | `Unwind@10177b48` | +| `Unwind@10177b70` | `10177b70` | `Unwind@10177b70` | +| `Unwind@10177ba0` | `10177ba0` | `Unwind@10177ba0` | +| `Unwind@10177bd0` | `10177bd0` | `Unwind@10177bd0` | +| `Unwind@10177c00` | `10177c00` | `Unwind@10177c00` | +| `Unwind@10177c30` | `10177c30` | `Unwind@10177c30` | +| `Unwind@10177c60` | `10177c60` | `Unwind@10177c60` | +| `Unwind@10177c90` | `10177c90` | `Unwind@10177c90` | +| `Unwind@10177cc0` | `10177cc0` | `Unwind@10177cc0` | +| `Unwind@10177cf0` | `10177cf0` | `Unwind@10177cf0` | +| `Unwind@10177d20` | `10177d20` | `Unwind@10177d20` | +| `Unwind@10177d28` | `10177d28` | `Unwind@10177d28` | +| `Unwind@10177d50` | `10177d50` | `Unwind@10177d50` | +| `Unwind@10177d58` | `10177d58` | `Unwind@10177d58` | +| `Unwind@10177d60` | `10177d60` | `Unwind@10177d60` | +| `Unwind@10177d68` | `10177d68` | `Unwind@10177d68` | +| `Unwind@10177d90` | `10177d90` | `Unwind@10177d90` | +| `Unwind@10177dc0` | `10177dc0` | `Unwind@10177dc0` | +| `Unwind@10177df0` | `10177df0` | `Unwind@10177df0` | +| `Unwind@10177df8` | `10177df8` | `Unwind@10177df8` | +| `Unwind@10177e20` | `10177e20` | `Unwind@10177e20` | +| `Unwind@10177e50` | `10177e50` | `Unwind@10177e50` | +| `Unwind@10177e58` | `10177e58` | `Unwind@10177e58` | +| `Unwind@10177e80` | `10177e80` | `Unwind@10177e80` | +| `Unwind@10177e88` | `10177e88` | `Unwind@10177e88` | +| `Unwind@10177eb0` | `10177eb0` | `Unwind@10177eb0` | +| `Unwind@10177eb8` | `10177eb8` | `Unwind@10177eb8` | +| `Unwind@10177ee0` | `10177ee0` | `Unwind@10177ee0` | +| `Unwind@10177ee8` | `10177ee8` | `Unwind@10177ee8` | +| `Unwind@10177f10` | `10177f10` | `Unwind@10177f10` | +| `Unwind@10177f18` | `10177f18` | `Unwind@10177f18` | +| `Unwind@10177f40` | `10177f40` | `Unwind@10177f40` | +| `Unwind@10177f48` | `10177f48` | `Unwind@10177f48` | +| `Unwind@10177f70` | `10177f70` | `Unwind@10177f70` | +| `Unwind@10177f78` | `10177f78` | `Unwind@10177f78` | +| `Unwind@10177fa0` | `10177fa0` | `Unwind@10177fa0` | +| `Unwind@10177fa8` | `10177fa8` | `Unwind@10177fa8` | +| `Unwind@10177fd0` | `10177fd0` | `Unwind@10177fd0` | +| `Unwind@10178000` | `10178000` | `Unwind@10178000` | +| `Unwind@10178030` | `10178030` | `Unwind@10178030` | +| `Unwind@10178038` | `10178038` | `Unwind@10178038` | +| `Unwind@10178060` | `10178060` | `Unwind@10178060` | +| `Unwind@10178068` | `10178068` | `Unwind@10178068` | +| `Unwind@10178090` | `10178090` | `Unwind@10178090` | +| `Unwind@10178098` | `10178098` | `Unwind@10178098` | +| `Unwind@101780a0` | `101780a0` | `Unwind@101780a0` | +| `Unwind@101780a8` | `101780a8` | `Unwind@101780a8` | +| `Unwind@101780d0` | `101780d0` | `Unwind@101780d0` | +| `Unwind@101780d8` | `101780d8` | `Unwind@101780d8` | +| `Unwind@10178100` | `10178100` | `Unwind@10178100` | +| `Unwind@10178130` | `10178130` | `Unwind@10178130` | +| `Unwind@10178160` | `10178160` | `Unwind@10178160` | +| `Unwind@10178168` | `10178168` | `Unwind@10178168` | +| `Unwind@10178190` | `10178190` | `Unwind@10178190` | +| `Unwind@10178198` | `10178198` | `Unwind@10178198` | +| `Unwind@101781c0` | `101781c0` | `Unwind@101781c0` | +| `Unwind@101781c8` | `101781c8` | `Unwind@101781c8` | +| `Unwind@101781f0` | `101781f0` | `Unwind@101781f0` | +| `Unwind@101781f8` | `101781f8` | `Unwind@101781f8` | +| `Unwind@10178200` | `10178200` | `Unwind@10178200` | +| `Unwind@10178208` | `10178208` | `Unwind@10178208` | +| `Unwind@10178230` | `10178230` | `Unwind@10178230` | +| `Unwind@10178260` | `10178260` | `Unwind@10178260` | +| `Unwind@10178268` | `10178268` | `Unwind@10178268` | +| `Unwind@10178290` | `10178290` | `Unwind@10178290` | +| `Unwind@10178298` | `10178298` | `Unwind@10178298` | +| `Unwind@101782c0` | `101782c0` | `Unwind@101782c0` | +| `Unwind@101782f0` | `101782f0` | `Unwind@101782f0` | +| `Unwind@101782f8` | `101782f8` | `Unwind@101782f8` | +| `Unwind@10178320` | `10178320` | `Unwind@10178320` | +| `Unwind@10178328` | `10178328` | `Unwind@10178328` | +| `Unwind@10178350` | `10178350` | `Unwind@10178350` | +| `Unwind@10178358` | `10178358` | `Unwind@10178358` | +| `Unwind@10178360` | `10178360` | `Unwind@10178360` | +| `Unwind@10178368` | `10178368` | `Unwind@10178368` | +| `Unwind@10178390` | `10178390` | `Unwind@10178390` | +| `Unwind@10178398` | `10178398` | `Unwind@10178398` | +| `Unwind@101783c0` | `101783c0` | `Unwind@101783c0` | +| `Unwind@101783c8` | `101783c8` | `Unwind@101783c8` | +| `Unwind@101783d0` | `101783d0` | `Unwind@101783d0` | +| `Unwind@101783d8` | `101783d8` | `Unwind@101783d8` | +| `Unwind@10178400` | `10178400` | `Unwind@10178400` | +| `Unwind@10178411` | `10178411` | `Unwind@10178411` | +| `Unwind@10178419` | `10178419` | `Unwind@10178419` | +| `Unwind@10178440` | `10178440` | `Unwind@10178440` | +| `Unwind@10178451` | `10178451` | `Unwind@10178451` | +| `Unwind@10178459` | `10178459` | `Unwind@10178459` | +| `Unwind@10178480` | `10178480` | `Unwind@10178480` | +| `Unwind@10178488` | `10178488` | `Unwind@10178488` | +| `Unwind@10178490` | `10178490` | `Unwind@10178490` | +| `Unwind@10178498` | `10178498` | `Unwind@10178498` | +| `Unwind@101784a0` | `101784a0` | `Unwind@101784a0` | +| `Unwind@101784a8` | `101784a8` | `Unwind@101784a8` | +| `Unwind@101784b0` | `101784b0` | `Unwind@101784b0` | +| `Unwind@101784b8` | `101784b8` | `Unwind@101784b8` | +| `Unwind@101784c0` | `101784c0` | `Unwind@101784c0` | +| `Unwind@101784f0` | `101784f0` | `Unwind@101784f0` | +| `Unwind@101784fe` | `101784fe` | `Unwind@101784fe` | +| `Unwind@1017850c` | `1017850c` | `Unwind@1017850c` | +| `Unwind@1017851a` | `1017851a` | `Unwind@1017851a` | +| `Unwind@10178528` | `10178528` | `Unwind@10178528` | +| `Unwind@10178536` | `10178536` | `Unwind@10178536` | +| `Unwind@10178544` | `10178544` | `Unwind@10178544` | +| `Unwind@10178552` | `10178552` | `Unwind@10178552` | +| `Unwind@10178580` | `10178580` | `Unwind@10178580` | +| `Unwind@10178588` | `10178588` | `Unwind@10178588` | +| `Unwind@101785b0` | `101785b0` | `Unwind@101785b0` | +| `Unwind@101785b8` | `101785b8` | `Unwind@101785b8` | +| `Unwind@101785c0` | `101785c0` | `Unwind@101785c0` | +| `Unwind@101785c8` | `101785c8` | `Unwind@101785c8` | +| `Unwind@101785f0` | `101785f0` | `Unwind@101785f0` | +| `Unwind@101785f8` | `101785f8` | `Unwind@101785f8` | +| `Unwind@10178620` | `10178620` | `Unwind@10178620` | +| `Unwind@10178628` | `10178628` | `Unwind@10178628` | +| `Unwind@10178630` | `10178630` | `Unwind@10178630` | +| `Unwind@10178638` | `10178638` | `Unwind@10178638` | +| `Unwind@10178660` | `10178660` | `Unwind@10178660` | +| `Unwind@10178668` | `10178668` | `Unwind@10178668` | +| `Unwind@10178690` | `10178690` | `Unwind@10178690` | +| `Unwind@10178698` | `10178698` | `Unwind@10178698` | +| `Unwind@101786a0` | `101786a0` | `Unwind@101786a0` | +| `Unwind@101786a8` | `101786a8` | `Unwind@101786a8` | +| `Unwind@101786d0` | `101786d0` | `Unwind@101786d0` | +| `Unwind@101786e1` | `101786e1` | `Unwind@101786e1` | +| `Unwind@101786e9` | `101786e9` | `Unwind@101786e9` | +| `Unwind@10178710` | `10178710` | `Unwind@10178710` | +| `Unwind@10178740` | `10178740` | `Unwind@10178740` | +| `Unwind@10178770` | `10178770` | `Unwind@10178770` | +| `Unwind@101787b0` | `101787b0` | `Unwind@101787b0` | +| `Unwind@101787e0` | `101787e0` | `Unwind@101787e0` | +| `Unwind@10178810` | `10178810` | `Unwind@10178810` | +| `Unwind@1017881b` | `1017881b` | `Unwind@1017881b` | +| `Unwind@10178826` | `10178826` | `Unwind@10178826` | +| `Unwind@10178831` | `10178831` | `Unwind@10178831` | +| `Unwind@1017883c` | `1017883c` | `Unwind@1017883c` | +| `Unwind@10178870` | `10178870` | `Unwind@10178870` | +| `Unwind@10178878` | `10178878` | `Unwind@10178878` | +| `Unwind@101788b0` | `101788b0` | `Unwind@101788b0` | +| `Unwind@101788b8` | `101788b8` | `Unwind@101788b8` | +| `Unwind@101788e0` | `101788e0` | `Unwind@101788e0` | +| `Unwind@101788e8` | `101788e8` | `Unwind@101788e8` | +| `Unwind@10178910` | `10178910` | `Unwind@10178910` | +| `Unwind@10178918` | `10178918` | `Unwind@10178918` | +| `Unwind@10178920` | `10178920` | `Unwind@10178920` | +| `Unwind@10178950` | `10178950` | `Unwind@10178950` | +| `Unwind@10178958` | `10178958` | `Unwind@10178958` | +| `Unwind@10178960` | `10178960` | `Unwind@10178960` | +| `Unwind@10178990` | `10178990` | `Unwind@10178990` | +| `Unwind@10178998` | `10178998` | `Unwind@10178998` | +| `Unwind@101789a0` | `101789a0` | `Unwind@101789a0` | +| `Unwind@101789a8` | `101789a8` | `Unwind@101789a8` | +| `Unwind@101789b0` | `101789b0` | `Unwind@101789b0` | +| `Unwind@101789b8` | `101789b8` | `Unwind@101789b8` | +| `Unwind@101789c0` | `101789c0` | `Unwind@101789c0` | +| `Unwind@101789c8` | `101789c8` | `Unwind@101789c8` | +| `Unwind@101789d0` | `101789d0` | `Unwind@101789d0` | +| `Unwind@101789d8` | `101789d8` | `Unwind@101789d8` | +| `Unwind@101789e0` | `101789e0` | `Unwind@101789e0` | +| `Unwind@101789e8` | `101789e8` | `Unwind@101789e8` | +| `Unwind@101789f0` | `101789f0` | `Unwind@101789f0` | +| `Unwind@101789fe` | `101789fe` | `Unwind@101789fe` | +| `Unwind@10178a09` | `10178a09` | `Unwind@10178a09` | +| `Unwind@10178a11` | `10178a11` | `Unwind@10178a11` | +| `Unwind@10178a1c` | `10178a1c` | `Unwind@10178a1c` | +| `Unwind@10178a27` | `10178a27` | `Unwind@10178a27` | +| `Unwind@10178a32` | `10178a32` | `Unwind@10178a32` | +| `Unwind@10178a3d` | `10178a3d` | `Unwind@10178a3d` | +| `Unwind@10178a48` | `10178a48` | `Unwind@10178a48` | +| `Unwind@10178a53` | `10178a53` | `Unwind@10178a53` | +| `Unwind@10178a5b` | `10178a5b` | `Unwind@10178a5b` | +| `Unwind@10178a63` | `10178a63` | `Unwind@10178a63` | +| `Unwind@10178a6e` | `10178a6e` | `Unwind@10178a6e` | +| `Unwind@10178a79` | `10178a79` | `Unwind@10178a79` | +| `Unwind@10178a84` | `10178a84` | `Unwind@10178a84` | +| `Unwind@10178a8f` | `10178a8f` | `Unwind@10178a8f` | +| `Unwind@10178a9a` | `10178a9a` | `Unwind@10178a9a` | +| `Unwind@10178aa2` | `10178aa2` | `Unwind@10178aa2` | +| `Unwind@10178aaa` | `10178aaa` | `Unwind@10178aaa` | +| `Unwind@10178ab2` | `10178ab2` | `Unwind@10178ab2` | +| `Unwind@10178abd` | `10178abd` | `Unwind@10178abd` | +| `Unwind@10178ac8` | `10178ac8` | `Unwind@10178ac8` | +| `Unwind@10178ad3` | `10178ad3` | `Unwind@10178ad3` | +| `Unwind@10178ade` | `10178ade` | `Unwind@10178ade` | +| `Unwind@10178ae9` | `10178ae9` | `Unwind@10178ae9` | +| `Unwind@10178af4` | `10178af4` | `Unwind@10178af4` | +| `Unwind@10178aff` | `10178aff` | `Unwind@10178aff` | +| `Unwind@10178b0a` | `10178b0a` | `Unwind@10178b0a` | +| `Unwind@10178b15` | `10178b15` | `Unwind@10178b15` | +| `Unwind@10178b20` | `10178b20` | `Unwind@10178b20` | +| `Unwind@10178b2b` | `10178b2b` | `Unwind@10178b2b` | +| `Unwind@10178b36` | `10178b36` | `Unwind@10178b36` | +| `Unwind@10178b41` | `10178b41` | `Unwind@10178b41` | +| `Unwind@10178b4c` | `10178b4c` | `Unwind@10178b4c` | +| `Unwind@10178b54` | `10178b54` | `Unwind@10178b54` | +| `Unwind@10178b5c` | `10178b5c` | `Unwind@10178b5c` | +| `Unwind@10178b64` | `10178b64` | `Unwind@10178b64` | +| `Unwind@10178b72` | `10178b72` | `Unwind@10178b72` | +| `Unwind@10178b7a` | `10178b7a` | `Unwind@10178b7a` | +| `Unwind@10178b82` | `10178b82` | `Unwind@10178b82` | +| `Unwind@10178b8a` | `10178b8a` | `Unwind@10178b8a` | +| `Unwind@10178b92` | `10178b92` | `Unwind@10178b92` | +| `Unwind@10178b9e` | `10178b9e` | `Unwind@10178b9e` | +| `Unwind@10178bd0` | `10178bd0` | `Unwind@10178bd0` | +| `Unwind@10178bdb` | `10178bdb` | `Unwind@10178bdb` | +| `Unwind@10178be3` | `10178be3` | `Unwind@10178be3` | +| `Unwind@10178bee` | `10178bee` | `Unwind@10178bee` | +| `Unwind@10178bf9` | `10178bf9` | `Unwind@10178bf9` | +| `Unwind@10178c04` | `10178c04` | `Unwind@10178c04` | +| `Unwind@10178c0f` | `10178c0f` | `Unwind@10178c0f` | +| `Unwind@10178c1a` | `10178c1a` | `Unwind@10178c1a` | +| `Unwind@10178c25` | `10178c25` | `Unwind@10178c25` | +| `Unwind@10178c30` | `10178c30` | `Unwind@10178c30` | +| `Unwind@10178c3b` | `10178c3b` | `Unwind@10178c3b` | +| `Unwind@10178c46` | `10178c46` | `Unwind@10178c46` | +| `Unwind@10178c51` | `10178c51` | `Unwind@10178c51` | +| `Unwind@10178c5c` | `10178c5c` | `Unwind@10178c5c` | +| `Unwind@10178c67` | `10178c67` | `Unwind@10178c67` | +| `Unwind@10178c72` | `10178c72` | `Unwind@10178c72` | +| `Unwind@10178c7d` | `10178c7d` | `Unwind@10178c7d` | +| `Unwind@10178c88` | `10178c88` | `Unwind@10178c88` | +| `Unwind@10178c93` | `10178c93` | `Unwind@10178c93` | +| `Unwind@10178c9e` | `10178c9e` | `Unwind@10178c9e` | +| `Unwind@10178ca9` | `10178ca9` | `Unwind@10178ca9` | +| `Unwind@10178cb4` | `10178cb4` | `Unwind@10178cb4` | +| `Unwind@10178cbf` | `10178cbf` | `Unwind@10178cbf` | +| `Unwind@10178cc7` | `10178cc7` | `Unwind@10178cc7` | +| `Unwind@10178d00` | `10178d00` | `Unwind@10178d00` | +| `Unwind@10178d08` | `10178d08` | `Unwind@10178d08` | +| `Unwind@10178d40` | `10178d40` | `Unwind@10178d40` | +| `Unwind@10178d70` | `10178d70` | `Unwind@10178d70` | +| `Unwind@10178dbb` | `10178dbb` | `Unwind@10178dbb` | +| `Unwind@10178ddf` | `10178ddf` | `Unwind@10178ddf` | +| `Rsrc_REGISTRY_69_409` | `101da1fc` | `` | +| `Rsrc_REGISTRY_6a_409` | `101da470` | `` | +| `Rsrc_REGISTRY_6b_409` | `101da6e4` | `` | +| `Rsrc_TYPELIB_1_409` | `101da980` | `` | +| `Rsrc_StringTable_7_409` | `10224c08` | `` | +| `Rsrc_Version_1_409` | `10224c70` | `` | +| `Rsrc_Manifest_2_409` | `10225020` | `` | +| `ExceptionList` | `ffdff000` | `` | +| `StackBase` | `ffdff004` | `` | +| `StackLimit` | `ffdff008` | `` | +| `SubSystemTib` | `ffdff00c` | `` | +| `FiberData` | `ffdff010` | `` | +| `ArbitraryUserPointer` | `ffdff014` | `` | +| `Self` | `ffdff018` | `` | +| `EnvironmentPointer` | `ffdff01c` | `` | +| `ClientId` | `ffdff020` | `` | +| `ActiveRpcHandle` | `ffdff028` | `` | +| `ThreadLocalStoragePointer` | `ffdff02c` | `` | +| `ProcessEnvironmentBlock` | `ffdff030` | `` | +| `LastErrorValue` | `ffdff034` | `` | +| `CountOfOwnedCriticalSections` | `ffdff038` | `` | +| `CsrClientThread` | `ffdff03c` | `` | +| `Win32ThreadInfo` | `ffdff040` | `` | +| `User32Reserved` | `ffdff044` | `` | +| `UserReserved` | `ffdff0ac` | `` | +| `WOW32Reserved` | `ffdff0c0` | `` | +| `CurrentLocale` | `ffdff0c4` | `` | +| `FpSoftwareStatusRegister` | `ffdff0c8` | `` | +| `SystemReserved1` | `ffdff0cc` | `` | +| `ExceptionCode` | `ffdff1a4` | `` | +| `ActivationContextStackPointer` | `ffdff1a8` | `` | +| `SpareBytes` | `ffdff1ac` | `` | +| `TxFsContext` | `ffdff1d0` | `` | +| `GdiTebBatch` | `ffdff1d4` | `` | +| `RealClientId` | `ffdff6b4` | `` | +| `GdiCachedProcessHandle` | `ffdff6bc` | `` | +| `GdiClientPID` | `ffdff6c0` | `` | +| `GdiCLientTID` | `ffdff6c4` | `` | +| `GdiThreadLocalInfo` | `ffdff6c8` | `` | +| `Win32ClientInfo` | `ffdff6cc` | `` | +| `glDispatchTable` | `ffdff7c4` | `` | +| `glReserved1` | `ffdffb68` | `` | +| `glReserved2` | `ffdffbdc` | `` | +| `glSectionInfo` | `ffdffbe0` | `` | +| `glSection` | `ffdffbe4` | `` | +| `glTable` | `ffdffbe8` | `` | +| `glCurrentRC` | `ffdffbec` | `` | +| `glContext` | `ffdffbf0` | `` | +| `LastStatusValue` | `ffdffbf4` | `` | +| `StaticUnicodeBuffer` | `ffdffc00` | `` | +| `DeallocationStack` | `ffdffe0c` | `` | +| `TlsSlots` | `ffdffe10` | `` | +| `TlsLinks.Flink` | `ffdfff10` | `` | +| `TlsLinks.Blink` | `ffdfff14` | `` | +| `Vdm` | `ffdfff18` | `` | +| `ReservedForNtRpc` | `ffdfff1c` | `` | +| `DbgSsReserved` | `ffdfff20` | `` | +| `HardErrorMode` | `ffdfff28` | `` | +| `Instrumentation` | `ffdfff2c` | `` | +| `ActivityId` | `ffdfff50` | `` | +| `SubProcessTag` | `ffdfff60` | `` | +| `EtwLocalData` | `ffdfff64` | `` | +| `EtwTraceData` | `ffdfff68` | `` | +| `WinSockData` | `ffdfff6c` | `` | +| `GdiBatchCount` | `ffdfff70` | `` | +| `IdealProcessorValue` | `ffdfff74` | `` | +| `GuaranteedStackBytes` | `ffdfff78` | `` | +| `ReservedForPerf` | `ffdfff7c` | `` | +| `ReservedForOle` | `ffdfff80` | `` | +| `WaitingOnLoaderLock` | `ffdfff84` | `` | +| `SavedPriorityState` | `ffdfff88` | `` | +| `SoftPatchPtr1` | `ffdfff8c` | `` | +| `ThreadPoolData` | `ffdfff90` | `` | +| `TlsExpansionSlots` | `ffdfff94` | `` | +| `MuiGeneration` | `ffdfff98` | `` | +| `IsImpersonating` | `ffdfff9c` | `` | +| `NlsCache` | `ffdfffa0` | `` | +| `pShimData` | `ffdfffa4` | `` | +| `HeapVirtualAffinity` | `ffdfffa8` | `` | +| `CurrentTransactionHandle` | `ffdfffac` | `` | +| `ActiveFrame` | `ffdfffb0` | `` | +| `FlsData` | `ffdfffb4` | `` | +| `PreferredLanguages` | `ffdfffb8` | `` | +| `UserPrefLanguages` | `ffdfffbc` | `` | +| `MergedPrefLanguages` | `ffdfffc0` | `` | +| `MuiImpersonation` | `ffdfffc4` | `` | +| `CrossTebFlags` | `ffdfffc8` | `` | +| `SameTebFlags` | `ffdfffca` | `` | +| `TxnScopeEnterCallback` | `ffdfffcc` | `` | +| `TxnScopeExitCallback` | `ffdfffd0` | `` | +| `TxnScopeContext` | `ffdfffd4` | `` | +| `LockCount` | `ffdfffd8` | `` | +| `ResourceRetValue` | `ffdfffe0` | `` | + +## Interesting Strings and Referencing Functions + +| Address | String | Referencing Functions | +| ---: | --- | --- | +| `1017a5a4` | `e:\\bldsrc\\6\\s\\src\\lmx\\Reference.h` | `FUN_10075d80@10075d80\`, \`FUN_10146f90@10146f90\`, \`FUN_10146f90@10146f90` | +| `1017a8c8` | `PreboundReferenceCacheDisabled` | `FUN_10003b80@10003b80` | +| `1017a9bc` | `` | `FUN_10003e60@10003e60` | +| `1017ae28` | `MxSecurityViewOnly` | `FUN_100043d0@100043d0` | +| `1017ae50` | `MxSecurityConfigure` | `FUN_100043d0@100043d0` | +| `1017ae78` | `MxSecurityTune` | `FUN_100043d0@100043d0` | +| `1017ae98` | `MxSecurityVerifiedWrite` | `FUN_100043d0@100043d0` | +| `1017aec8` | `MxSecuritySecuredWrite` | `FUN_100043d0@100043d0` | +| `1017aef8` | `MxSecurityOperate` | `FUN_100043d0@100043d0` | +| `1017af1c` | `MxSecurityFreeAccess` | `FUN_100043d0@100043d0` | +| `1017b320` | `SOFTWARE\\ArchestrA\\Framework\\Nmx` | `FUN_100156b0@100156b0\`, \`FUN_10046350@10046350\`, \`FUN_10046350@10046350\`, \`FUN_10046350@10046350\`, \`FUN_10046560@10046560` | +| `1017b3e8` | `SOFTWARE\\ArchestrA\\Framework\\Lmx` | `FUN_10015cb0@10015cb0\`, \`FUN_10096ce0@10096ce0` | +| `1017ba50` | `BindReferencesTimer` | `FUN_1002e860@1002e860` | +| `1017c250` | `PreboundReference cache limit read from registry is %d entries.` | `FUN_1002f550@1002f550` | +| `1017c2d0` | `PreboundReferenceCacheLimit` | `FUN_1002f550@1002f550` | +| `1017c548` | `DATA TYPE VALUE ` | `FUN_1002fbc0@1002fbc0` | +| `1017c600` | `DATA TYPE VALUE <%s>` | `FUN_1002fbc0@1002fbc0` | +| `1017da00` | ` preboundReferenceTable[%d].status %s` | `FUN_1003f8e0@1003f8e0` | +| `1017da60` | ` preboundReferenceTable[%d].mxReference %s` | `FUN_1003f8e0@1003f8e0` | +| `1017dac0` | ` preboundReferenceTable[%d].referenceString %s` | `FUN_1003f8e0@1003f8e0` | +| `1017db20` | ` preboundReferenceTable[%d].refCount %d` | `FUN_1003f8e0@1003f8e0` | +| `1017db80` | ` preboundReferenceTable[%d].this %x` | `FUN_1003f8e0@1003f8e0` | +| `1017dbe0` | `AccessManager::DumpState - preboundReferenceTable.size %d` | `FUN_1003f8e0@1003f8e0` | +| `1017dc58` | ` preboundreferences[%d] %x` | `FUN_1003fca0@1003fca0` | +| `1017dc98` | ` connections[%d].preboundReferences.size %d` | `FUN_1003fca0@1003fca0` | +| `1017eaf0` | `AccessManager::GetMaxMessagesBeforeFoldingValue - unable to create Nmx key - using default value of ` | `FUN_10046350@10046350` | +| `1017f5d8` | `e:\\bldsrc\\6\\s\\src\\lmx\\IMxReferencePtr2.h` | `FUN_1004c220@1004c220\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c320@1004c320\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1004c6f0@1004c6f0\`, \`FUN_1005f390@1005f390\`, \`FUN_1005f390@1005f390\`, \`FUN_1005f390@1005f390` | +| `1017f7a8` | `e:\\bldsrc\\6\\s\\src\\lmx\\MxCallback.h` | `FUN_1004cef0@1004cef0` | +| `1017f7cc` | `e:\\bldsrc\\6\\s\\src\\lmx\\AccessManager.h` | `FUN_1004d0d0@1004d0d0\`, \`FUN_10061500@10061500\`, \`FUN_10061500@10061500\`, \`FUN_10061500@10061500\`, \`FUN_10061500@10061500\`, \`FUN_10069720@10069720\`, \`FUN_10069720@10069720` | +| `1017f7f8` | `E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\EngineServicesCommon\\NmxControl.h` | `FUN_1004d1d0@1004d1d0\`, \`FUN_1004d1d0@1004d1d0\`, \`FUN_1004d260@1004d260\`, \`FUN_1004d260@1004d260\`, \`FUN_1004d260@1004d260\`, \`FUN_100566c0@100566c0\`, \`FUN_100566c0@100566c0` | +| `101811f8` | `AccessManager::DumpState referenceResolver.pendingBindRequestTimeouts %d` | `FUN_1004f880@1004f880` | +| `101815e8` | `AccessManager::DumpState referenceResolver.successfullBindResponses %d` | `FUN_1004f880@1004f880` | +| `10181690` | `AccessManager::DumpState referenceResolver.bindResponseFailures %d` | `FUN_1004f880@1004f880` | +| `10181738` | `AccessManager::DumpState referenceResolver.unboundReferencesPendingDbUpdate %d` | `FUN_1004f880@1004f880` | +| `10181980` | ` clientBindRequests.boundReferencesPendingResponse[%d].guid %d` | `FUN_10050060@10050060` | +| `10181a20` | ` clientBindRequests.boundReferencesPendingResponse[%d].correlationId %d` | `FUN_10050060@10050060` | +| `10181ac0` | ` clientBindRequests.boundReferencesPendingResponse[%d].engine %s` | `FUN_10050060@10050060` | +| `10181b60` | `AccessManager::DumpState - clientBindRequests.boundReferencesPendingResponse.size %d` | `FUN_10050060@10050060` | +| `10181c10` | ` clientBindRequests.bindRequests[%d].reasonForRebind %s` | `FUN_10050060@10050060` | +| `10181c88` | ` clientBindRequests.bindRequests[%d].ref %s` | `FUN_10050060@10050060` | +| `10181d00` | ` clientBindRequests.bindRequests[%d].guid %s` | `FUN_10050060@10050060` | +| `10181d78` | ` clientBindRequests.bindRequests[%d].correlationId %d` | `FUN_10050060@10050060` | +| `10181df0` | ` clientBindRequests.bindRequests[%d].engine %s` | `FUN_10050060@10050060` | +| `10182060` | `AccessManager::DumpState - bindReferencesRejected %d` | `FUN_10050060@10050060` | +| `10182108` | `AccessManager::DumpState - clientBindRequests.bindRequests.size %d` | `FUN_10050060@10050060` | +| `10186294` | `E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h` | `FUN_1005f4f0@1005f4f0\`, \`FUN_1005f590@1005f590\`, \`FUN_1005f5e0@1005f5e0\`, \`FUN_1005f610@1005f610\`, \`FUN_1005f660@1005f660\`, \`FUN_1005f6b0@1005f6b0\`, \`FUN_1005f700@1005f700\`, \`FUN_1005f730@1005f730\`, \`FUN_1005f7e0@1005f7e0\`, \`FUN_1005f880@1005f880\`, \`FUN_1005f930@1005f930\`, \`FUN_1005faf0@1005faf0\`, \`FUN_1005fba0@1005fba0\`, \`FUN_1005fc50@1005fc50\`, \`FUN_10060a20@10060a20\`, \`FUN_10060a20@10060a20\`, \`FUN_10060a20@10060a20\`, \`FUN_10060a20@10060a20\`, \`FUN_10064a00@10064a00\`, \`FUN_10064a00@10064a00\`, \`FUN_10064a00@10064a00\`, \`FUN_10064a00@10064a00\`, \`FUN_10065630@10065630\`, \`FUN_10069720@10069720\`, \`FUN_10072df0@10072df0\`, \`FUN_10072df0@10072df0\`, \`FUN_10072df0@10072df0\`, \`FUN_10072df0@10072df0\`, \`FUN_10075d80@10075d80\`, \`FUN_1008fc40@1008fc40\`, \`FUN_1008fc70@1008fc70\`, \`FUN_1008fca0@1008fca0\`, \`FUN_1008fd50@1008fd50\`, \`FUN_1008fd50@1008fd50\`, \`FUN_1008fd50@1008fd50\`, \`FUN_1008fd50@1008fd50\`, \`FUN_100ea780@100ea780\`, \`FUN_100ea780@100ea780\`, \`FUN_100eabf0@100eabf0\`, \`FUN_100eabf0@100eabf0\`, \`FUN_10101360@10101360\`, \`FUN_101133d0@101133d0\`, \`FUN_101133d0@101133d0\`, \`FUN_10113900@10113900\`, \`FUN_10113900@10113900\`, \`FUN_10113b10@10113b10\`, \`FUN_10113b10@10113b10\`, \`FUN_10113d40@10113d40\`, \`FUN_10114740@10114740\`, \`FUN_10114740@10114740\`, \`FUN_10114740@10114740\`, \`FUN_10114740@10114740\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90` | +| `101862c8` | `E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\CBootstrapController.h` | `FUN_1005fd60@1005fd60\`, \`FUN_1005fd90@1005fd90\`, \`FUN_1005fef0@1005fef0\`, \`FUN_1005ff70@1005ff70\`, \`FUN_100600f0@100600f0\`, \`FUN_10060240@10060240\`, \`FUN_10060240@10060240\`, \`FUN_100603d0@100603d0\`, \`FUN_100603d0@100603d0\`, \`FUN_10131930@10131930\`, \`FUN_10131a20@10131a20` | +| `101863c0` | `Lmx::CBootstrapController::GetPlatformMappingTableTimeStamp called %s` | `FUN_100603d0@100603d0` | +| `101864f8` | `e:\\bldsrc\\6\\s\\src\\lmx\\CNmxAdapter.h` | `FUN_10060d50@10060d50\`, \`FUN_10060d50@10060d50\`, \`FUN_10060d50@10060d50\`, \`FUN_10060d50@10060d50\`, \`FUN_10060e50@10060e50\`, \`FUN_10060ed0@10060ed0\`, \`FUN_10100e60@10100e60\`, \`FUN_10100eb0@10100eb0\`, \`FUN_10100f00@10100f00\`, \`FUN_10100f70@10100f70\`, \`FUN_10100fb0@10100fb0\`, \`FUN_10100fe0@10100fe0\`, \`FUN_10101010@10101010\`, \`FUN_1010d4a0@1010d4a0\`, \`FUN_101121e0@101121e0\`, \`FUN_101121e0@101121e0` | +| `1018652c` | `E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\CPlatformInfoServer.h` | `FUN_10060f10@10060f10\`, \`FUN_10060f40@10060f40\`, \`FUN_100610a0@100610a0\`, \`FUN_10084b90@10084b90` | +| `101874e0` | `AccessManager::BindReferences()` | `FUN_10065350@10065350\`, \`FUN_10065350@10065350\`, \`FUN_10065350@10065350` | +| `10187eac` | `e:\\bldsrc\\6\\s\\src\\lmx\\stdafx.h` | `Catch@1006b85c@1006b85c\`, \`Catch@1006b931@1006b931\`, \`Catch@1006b9ad@1006b9ad\`, \`FUN_1006b8bd@1006b8bd` | +| `10187f84` | `LMX shutting down.` | `FUN_1006cff0@1006cff0` | +| `10187fb0` | `NmxAdapter is already shut down` | `FUN_1006cff0@1006cff0` | +| `1018a140` | `LMX starting up.` | `FUN_10084b90@10084b90` | +| `1018a168` | `{40} Starting LMX #%d at [%p], Version %s, Signature %s, Location %s` | `FUN_10084b90@10084b90` | +| `1018a244` | `lmx.dll` | `FUN_10084b90@10084b90` | +| `1018a254` | `Lmx.aaDCT` | `FUN_10178fc0@10178fc0` | +| `1018a2e8` | `LMX client's ` | `` | +| `1018a578` | `NmxSupport-ConvertASBValueToMxValue: itemDataUpdate.Value.Length %d ` | `FUN_10086cf0@10086cf0` | +| `1018ac78` | ` - failed to find correlationId in boundReferencesPendingResponse` | `FUN_1008c120@1008c120` | +| `1018b228` | `CReferenceStringResolutionService::ProcessPendingClientRequests - bindRequests queue size ` | `FUN_1008d760@1008d760` | +| `1018b490` | `CReferenceStringResolver::ProcessPendingGRReferenceBindRequests - following reference not bound withing ` | `FUN_1008f310@1008f310` | +| `1018c1c8` | `*** LMX *** Engine '%s' [%d.%d.1] Reference Count Map of size %d to file "%s" (Dumping references of type '%s', filtered attribute '%s')` | `FUN_100928d0@100928d0` | +| `1018c470` | `*** LMX *** Engine '%s' [%d.%d.1] Side Count Map of size %d to file "%s" (Dumping references of type '%s', filtered attribute '%s')` | `FUN_10092f10@10092f10` | +| `1018c5b8` | `E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h` | `FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093b50@10093b50\`, \`FUN_10093e10@10093e10\`, \`FUN_10093e10@10093e10\`, \`FUN_10093e90@10093e90\`, \`FUN_10093e90@10093e90` | +| `1018de24` | `PreboundReference` | `FUN_1009c560@1009c560` | +| `1018de8c` | `NmxMessages` | `FUN_1009c560@1009c560` | +| `1018eef8` | `MxNmxControlMsg` | `FUN_100a68d0@100a68d0` | +| `1018f2a8` | `DemandReadCallback::CancelWithStatus - Calling OnGetAttributeResult with status ` | `FUN_100dc750@100dc750` | +| `1018f350` | `DemandReadCallback::CancelWithStatus - status ` | `FUN_100dc750@100dc750` | +| `1018f3c4` | `e:\\bldsrc\\6\\s\\src\\lmx\\PreboundReference.h` | `FUN_100dd0d0@100dd0d0\`, \`FUN_100dd0d0@100dd0d0\`, \`FUN_100e18b0@100e18b0` | +| `1018f3f0` | `MxConnection::UnregisterPreboundReference - EXIT hResult ` | `FUN_100df1a0@100df1a0` | +| `1018f478` | `MxConnection::UnregisterPreboundReference - ENTER preboundRefHandle ` | `FUN_100df1a0@100df1a0` | +| `1018f508` | `MxConnection::UserRegisterPreboundReference - EXIT pMxReferenceHandle ` | `FUN_100e1920@100e1920` | +| `1018f598` | `MxConnection::UserRegisterPreboundReference - ENTER preboundHandle ` | `FUN_100e1920@100e1920` | +| `1018f890` | `e:\\bldsrc\\6\\s\\src\\lmx\\CReferenceStringParser.h` | `FUN_100e2150@100e2150\`, \`FUN_100e2150@100e2150\`, \`FUN_100e21b0@100e21b0\`, \`FUN_100e21b0@100e21b0` | +| `10190ea8` | `MxConnection::PrebindReference - EXIT *preboundRefHandle ` | `FUN_100ea780@100ea780` | +| `10190f20` | `MxConnection::PrebindReference - ENTER referenceString ` | `FUN_100ea780@100ea780` | +| `10190f90` | `MxConnection::PrebindReference - ENTER referenceString '` | `FUN_100ea780@100ea780` | +| `10191038` | `MxConnection::PrebindReferenceEx - EXIT * preboundRefHandle ` | `FUN_100eabf0@100eabf0` | +| `101910b8` | `MxConnection::PrebindReferenceEx - ENTER referenceString ` | `FUN_100eabf0@100eabf0` | +| `101912d8` | `MxConnection::SuspendReference - Invalid hRef ` | `FUN_100ec060@100ec060` | +| `10192f38` | `PutRequest returned %08X - priority %d galaxy %d platform %d engine %d fastStream.index %d fastStream.size %d fastStream.capacity %d` | `FUN_100fbe50@100fbe50` | +| `101932b4` | `NmxSupport.cpp` | `Catch@10105c1c@10105c1c\`, \`Catch@10105ca9@10105ca9\`, \`Catch@10105d21@10105d21\`, \`Catch@10105e04@10105e04\`, \`Catch@10105e91@10105e91\`, \`Catch@10105f09@10105f09\`, \`Catch@10106078@10106078\`, \`Catch@10106105@10106105\`, \`Catch@1010617d@1010617d\`, \`Catch@1010625c@1010625c\`, \`Catch@101062e9@101062e9\`, \`Catch@10106361@10106361\`, \`Catch@1010643c@1010643c\`, \`Catch@101064c9@101064c9\`, \`Catch@10106541@10106541\`, \`Catch@10106618@10106618\`, \`Catch@101066a5@101066a5\`, \`Catch@1010671d@1010671d\`, \`Catch@101067f3@101067f3\`, \`Catch@10106880@10106880\`, \`Catch@101068f8@101068f8\`, \`Catch@101069cf@101069cf\`, \`Catch@10106a5c@10106a5c\`, \`Catch@10106ad4@10106ad4\`, \`Catch@1010eca3@1010eca3\`, \`Catch@1010ed30@1010ed30\`, \`Catch@1010eda8@1010eda8\`, \`Catch@101127cf@101127cf\`, \`Catch@1011285c@1011285c\`, \`Catch@101128d4@101128d4\`, \`FUN_100fe839@100fe839\`, \`FUN_100fe839@100fe839\`, \`FUN_101018a0@101018a0\`, \`FUN_10103ba0@10103ba0\`, \`FUN_101059f0@101059f0\`, \`FUN_10105d70@10105d70\`, \`FUN_10105f60@10105f60\`, \`FUN_101061d0@101061d0\`, \`FUN_101063b0@101063b0\`, \`FUN_10106590@10106590\`, \`FUN_10106770@10106770\`, \`FUN_10106950@10106950\`, \`FUN_10107632@10107632\`, \`FUN_10107632@10107632\`, \`FUN_10107880@10107880\`, \`FUN_10107880@10107880\`, \`FUN_10107880@10107880\`, \`FUN_10107880@10107880\`, \`FUN_1010b7c0@1010b7c0\`, \`FUN_1010e730@1010e730\`, \`FUN_10110986@10110986\`, \`FUN_10110986@10110986\`, \`FUN_10110986@10110986\`, \`FUN_10111288@10111288\`, \`FUN_10111288@10111288\`, \`FUN_10111288@10111288\`, \`FUN_10111288@10111288\`, \`FUN_101126d0@101126d0` | +| `10193384` | `e:\\bldsrc\\6\\s\\src\\lmx\\TestMessages.h` | `FUN_100ff030@100ff030\`, \`FUN_100ff030@100ff030\`, \`FUN_100ff030@100ff030\`, \`FUN_100ff0d0@100ff0d0\`, \`FUN_100ff0d0@100ff0d0\`, \`FUN_100ff140@100ff140\`, \`FUN_100ff180@100ff180\`, \`FUN_100ff1c0@100ff1c0\`, \`FUN_100ff200@100ff200\`, \`FUN_100ff200@100ff200` | +| `101933b0` | `E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\NmxControl.h` | `FUN_100ff5c0@100ff5c0\`, \`FUN_100ff5c0@100ff5c0\`, \`FUN_100ff630@100ff630\`, \`FUN_100ff670@100ff670\`, \`FUN_100ff670@100ff670` | +| `10193420` | `e:\\bldsrc\\6\\s\\src\\lmx\\CDictionary.h` | `FUN_101010e0@101010e0\`, \`FUN_101010e0@101010e0\`, \`FUN_10101140@10101140\`, \`FUN_10107880@10107880\`, \`FUN_10107880@10107880\`, \`FUN_10107880@10107880` | +| `10193698` | ` remotePlatformResolvers.sendResultsRetryCount %d` | `FUN_10101360@10101360` | +| `10193ebc` | `Sending buffer data index ` | `FUN_10107880@10107880` | +| `10194978` | ` - NmxRequestBuffer::CancelRequests exit. NmxRequestBuffer size %d` | `FUN_1010a240@1010a240` | +| `10194c10` | `PutRequest ` | `FUN_1010ad00@1010ad00` | +| `10194c78` | ` - directly to NMX` | `FUN_1010ad00@1010ad00\`, \`FUN_1010ad00@1010ad00` | +| `10194ca0` | `AccessManager::submitNmxRequest - clientId %d operationType %d correlationId %d pReference %x` | `FUN_1010ad00@1010ad00` | +| `10194ee0` | `ScanOnDemandCallback::OperationComplete - Send retry limit reached for ` | `FUN_1010b990@1010b990` | +| `10195108` | `AccessManager::ProcessNmxResponse - will SKIP referenceWentBad call` | `FUN_1010bd10@1010bd10` | +| `101951f0` | `AccessManager::ProcessNmxResponse - failed to find local platform resolver ` | `FUN_1010bd10@1010bd10` | +| `10195288` | `AccessManager::ProcessNmxResponse - calling local platform resolver ` | `FUN_1010bd10@1010bd10` | +| `10195314` | `GetResponse ` | `FUN_1010bd10@1010bd10\`, \`FUN_1010bd10@1010bd10\`, \`FUN_1010bd10@1010bd10` | +| `10195350` | ` AccessManager::ProcessNmxResponses received message block (` | `FUN_1010d4a0@1010d4a0` | +| `10195498` | `RemotePlatformResolver::OperationComplete - Send retry count for MxResolveOffPlatformResults message to requesterEngine g %d p %d e %d` | `FUN_1010dc80@1010dc80` | +| `10195838` | ` AccessManager::ProcessOutputsEx unable to send message block (priority ` | `FUN_1010e730@1010e730` | +| `10195a30` | `AccessManager::ProcessNmxRequest - MxCancelSubscription failed to remove subscription cacheIndex ` | `FUN_1010ee00@1010ee00` | +| `10195c60` | `Engine %s dumping ClientBindRequestInfo` | `` | +| `10195d48` | `Engine %s dumping PreboundReferenceTable` | `` | +| `101960f8` | `AccessManager::ProcessNmxRequest - MxResolveOnPlatformResults failed to find reference ` | `FUN_1010ee00@1010ee00` | +| `101961a8` | `AccessManager::ProcessNmxRequest - canceling subscription cacheIndex ` | `FUN_1010ee00@1010ee00` | +| `10196320` | ` AccessManager::ProcessNmxRequests received message block (` | `FUN_101121e0@101121e0` | +| `10196428` | `PreboundReference - resolver shortcut is disabled.` | `FUN_10113070@10113070` | +| `101964c0` | `Software\\ArchestrA\\Framework\\Lmx` | `FUN_10113070@10113070` | +| `10196508` | `PreboundReference::ParseNamespaceReference - namespace [` | `FUN_101133d0@101133d0\`, \`FUN_101133d0@101133d0` | +| `101965b0` | `PreboundReference::Resolve - EXIT` | `FUN_10113d40@10113d40` | +| `101965f8` | `PreboundReference::Resolve() - GetPlatformNameFromId returned a NULL platform name for id %d` | `FUN_10113d40@10113d40` | +| `101966b4` | `preboundreference.cpp` | `FUN_10113d40@10113d40\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90\`, \`FUN_10114a90@10114a90\`, \`FUN_101155a0@101155a0\`, \`FUN_101155a0@101155a0\`, \`FUN_101155a0@101155a0\`, \`FUN_101155a0@101155a0\`, \`FUN_101155a0@101155a0\`, \`FUN_101155a0@101155a0` | +| `101966d0` | `PreboundReference::Resolve - Found mxReference ` | `FUN_10113d40@10113d40` | +| `10196760` | `PreboundReference::Resolve() - Correcting context info for ref string ` | `FUN_10113d40@10113d40` | +| `10196830` | `PreboundReference::Resolve - ENTER mxReference ` | `FUN_10113d40@10113d40` | +| `10196890` | `PreboundReference::Resolve - referenceString ` | `FUN_10113d40@10113d40` | +| `10196910` | `PreboundReference::ReferenceWentBad - EXIT` | `FUN_10114740@10114740` | +| `10196968` | `PreboundReference::ReferenceWentBad - ENTER` | `FUN_10114740@10114740` | +| `101969c0` | `PreboundReference::OnSetAttributeResult - EXIT status ` | `FUN_10114a90@10114a90` | +| `10196a30` | `PreboundReference - attempting local platform <` | `FUN_10114a90@10114a90` | +| `10196ab0` | `PreboundReference::OnSetAttributeResult unable to crreate CPreboundReferenceAdapter for ref %s` | `FUN_10114a90@10114a90` | +| `10196b70` | `PreboundReference::OnSetAttributeResult - ENTER correlationId ` | `FUN_10114a90@10114a90` | +| `10196c98` | `PreboundReference - local platform resolution - failed.` | `FUN_101155a0@101155a0` | +| `10196d50` | `PreboundReference - local platform resolution - success.` | `FUN_101155a0@101155a0` | +| `10196dc8` | `PreboundReference::OnPlatformResolveReferenceResults` | `FUN_101155a0@101155a0` | +| `10197178` | ` Resending attribute with cache index ` | `FUN_1011f530@1011f530` | +| `10198c14` | `Sending SubscriberRemoved to ` | `FUN_10126710@10126710` | +| `10198ee0` | `Resending ` | `FUN_10126a60@10126a60` | +| `1019a51c` | `e:\\bldsrc\\6\\s\\src\\lmx\\RedundancyStatusMonitor.h` | `FUN_1012f160@1012f160\`, \`FUN_1012f160@1012f160\`, \`FUN_1012f160@1012f160\`, \`FUN_101345d0@101345d0\`, \`FUN_101345d0@101345d0` | +| `1019c734` | `waitingForPreboundResolution` | `FUN_10138680@10138680` | +| `1019e038` | `Reference::sendSubscriptionRequest2 sending MxSubscribeSuspended` | `FUN_1013cb10@1013cb10` | +| `1019e178` | `Reference::sendNestedSubscriptionRequest sending MxSubscribeSuspended` | `FUN_1013d420@1013d420` | +| `1019f190` | `Reference::InitializeWithPreboundReference - EXIT rc ` | `FUN_10141bb0@10141bb0` | +| `1019f200` | `Reference::InitializeWithPreboundReference - ENTER pReference ` | `FUN_10141bb0@10141bb0` | +| `1019f280` | `Reference::PreboundReferenceResolved - EXIT rc ` | `FUN_10141d60@10141d60` | +| `1019f2e0` | `Reference::PreboundReferenceResolved - ENTER status ` | `FUN_10141d60@10141d60` | +| `1019f608` | `Reference::ReRouteSubscription - Sending nested subscribe to the new target engine.` | `FUN_101425e0@101425e0` | +| `1019fb18` | ` Bad MxStatus while resolving GetTagNameString info on remote engine - sending request to GR` | `FUN_10143060@10143060` | +| `1019fd68` | ` Unable to resolve GetTagNameString info on remote engine - sending request to GR` | `FUN_10143060@10143060` | +| `101d38f6` | `Lmx.DLL` | `` | +| `101d59b8` | `.?AVDemandReadCallback@@` | `` | +| `101d5b2c` | `.?AVCPreboundReferenceAdapter@@` | `` | +| `101d5b54` | `.?AVPreboundReference@@` | `` | +| `10224da0` | `Lmx_v0165` | `` | +| `10224ddc` | `Lmx Module` | `` | +| `10224fcc` | `LMX.DLL` | `` | + +## Interesting API Callers + +| Caller | Entry | Call Targets | +| --- | ---: | --- | +| `FUN_100012a0` | `100012a0` | `memcpy` | +| `FUN_100012c0` | `100012c0` | `memmove` | +| `FUN_100014c0` | `100014c0` | `memcpy_s` | +| `Attach` | `10001a40` | `SysFreeString` | +| `FUN_10001a70` | `10001a70` | `SysFreeString` | +| `FUN_10001aa0` | `10001aa0` | `SysFreeString` | +| `FUN_10001b40` | `10001b40` | `SysFreeString` | +| `FUN_10001dc0` | `10001dc0` | `SysFreeString` | +| `FUN_10002c10` | `10002c10` | `SysAllocString` | +| `FUN_10002c50` | `10002c50` | `SysAllocStringByteLen` | +| `FUN_10002cf0` | `10002cf0` | `SysFreeString` | +| `FUN_10003100` | `10003100` | `memcpy` | +| `FUN_10003150` | `10003150` | `memmove` | +| `FUN_100038f0` | `100038f0` | `SysFreeString` | +| `FUN_100039a0` | `100039a0` | `SysFreeString` | +| `FUN_10003a90` | `10003a90` | `memset` | +| `FUN_10003cd0` | `10003cd0` | `memset` | +| `FUN_10003f30` | `10003f30` | `CoCreateInstance` | +| `FUN_100040a0` | `100040a0` | `memset` | +| `FUN_10004320` | `10004320` | `CoCreateInstance` | +| `FUN_100046e0` | `100046e0` | `CoCreateInstance` | +| `FUN_100047d0` | `100047d0` | `memset` | +| `FUN_10004850` | `10004850` | `memset` | +| `FUN_100048f0` | `100048f0` | `memset` | +| `FUN_10004970` | `10004970` | `memset` | +| `FUN_10004b80` | `10004b80` | `SysFreeString` | +| `FUN_10004ea0` | `10004ea0` | `SysFreeString` | +| `FUN_10004ef0` | `10004ef0` | `SysFreeString` | +| `FUN_10005120` | `10005120` | `CoGetClassObject` | +| `FUN_10005170` | `10005170` | `CoGetClassObject` | +| `FUN_10005220` | `10005220` | `SysFreeString` | +| `FUN_10005280` | `10005280` | `CoGetClassObject` | +| `FUN_10005330` | `10005330` | `CoGetClassObject` | +| `FUN_10005420` | `10005420` | `CoGetClassObject` | +| `FUN_100054b0` | `100054b0` | `CoGetClassObject` | +| `FUN_10005550` | `10005550` | `CoGetClassObject` | +| `FUN_10005620` | `10005620` | `SysFreeString` | +| `FUN_100059f0` | `100059f0` | `memcpy_s` | +| `FUN_10005a80` | `10005a80` | `memcpy_s` | +| `FUN_10005cc0` | `10005cc0` | `CoCreateInstance` | +| `FUN_10005d20` | `10005d20` | `CoCreateInstance` | +| `FUN_10006940` | `10006940` | `CoCreateInstance` | +| `FUN_10010f20` | `10010f20` | `SysFreeString` | +| `FUN_10012310` | `10012310` | `memmove` | +| `FUN_100123b0` | `100123b0` | `memmove` | +| `FUN_100125e0` | `100125e0` | `memmove` | +| `FUN_10012e10` | `10012e10` | `CoCreateInstance` | +| `FUN_100134b0` | `100134b0` | `memmove` | +| `FUN_10014180` | `10014180` | `memmove` | +| `FUN_10014440` | `10014440` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10014620` | `10014620` | `SysAllocStringLen` | +| `FUN_10014660` | `10014660` | `SysAllocStringLen` | +| `FUN_100146b0` | `100146b0` | `SysAllocString` | +| `FUN_100146e0` | `100146e0` | `SysAllocString` | +| `FUN_10014740` | `10014740` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10014780` | `10014780` | `SysAllocStringByteLen` | +| `FUN_10014840` | `10014840` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_100149c0` | `100149c0` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10014cb0` | `10014cb0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10014f70` | `10014f70` | `SysFreeString` | +| `FUN_100151f0` | `100151f0` | `SysAllocString` | +| `FUN_100152a0` | `100152a0` | `SysAllocStringByteLen` | +| `FUN_100153d0` | `100153d0` | `SysFreeString` | +| `FUN_10015470` | `10015470` | `SysFreeString` | +| `FUN_10015b40` | `10015b40` | `SysFreeString` | +| `FUN_10015c70` | `10015c70` | `memset` | +| `FUN_10015df0` | `10015df0` | `SysFreeString` | +| `FUN_10016910` | `10016910` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FUN_10016dd0` | `10016dd0` | `SysFreeString` | +| `FUN_10016ef0` | `10016ef0` | `CoGetClassObject` | +| `FUN_10018e20` | `10018e20` | `memcpy` | +| `FUN_10019ba0` | `10019ba0` | `memcpy` | +| `FUN_10019f70` | `10019f70` | `memcpy` | +| `FUN_1001e230` | `1001e230` | `memmove` | +| `FUN_1001e2a0` | `1001e2a0` | `memmove` | +| `FUN_1001e3d0` | `1001e3d0` | `memmove` | +| `FUN_1001f1f0` | `1001f1f0` | `CoCreateInstance` | +| `FUN_1001f2b0` | `1001f2b0` | `CoCreateInstance` | +| `FUN_1001f2e0` | `1001f2e0` | `CoCreateInstance` | +| `FUN_1001f3d0` | `1001f3d0` | `CoCreateInstance` | +| `FUN_1001f490` | `1001f490` | `CoCreateInstance` | +| `FUN_1001f4c0` | `1001f4c0` | `CoCreateInstance` | +| `FUN_1001f800` | `1001f800` | `memmove` | +| `FUN_1001fb60` | `1001fb60` | `SysFreeString` | +| `FUN_100212c0` | `100212c0` | `memmove` | +| `FUN_100214a0` | `100214a0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10021780` | `10021780` | `SysFreeString` | +| `FUN_10021830` | `10021830` | `SysAllocStringByteLen` | +| `FUN_10021870` | `10021870` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10021cc0` | `10021cc0` | `SysFreeString` | +| `FUN_10021d90` | `10021d90` | `SysFreeString` | +| `FUN_10021ef0` | `10021ef0` | `CoGetClassObject\`, \`SysFreeString` | +| `FUN_10022060` | `10022060` | `CoGetClassObject\`, \`SysFreeString` | +| `FUN_100222c0` | `100222c0` | `SysFreeString` | +| `FUN_100224d0` | `100224d0` | `SysAllocString` | +| `FUN_10022580` | `10022580` | `SysFreeString` | +| `FUN_10023440` | `10023440` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10023670` | `10023670` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10023ab0` | `10023ab0` | `AtlInternalQueryInterface` | +| `FUN_10023af0` | `10023af0` | `AtlInternalQueryInterface` | +| `FUN_100243f0` | `100243f0` | `memmove` | +| `FUN_10024ac0` | `10024ac0` | `memcpy` | +| `FUN_100256c0` | `100256c0` | `memcpy` | +| `FUN_100260d0` | `100260d0` | `memcpy` | +| `FUN_10029070` | `10029070` | `CoCreateInstance` | +| `FUN_10029160` | `10029160` | `CoCreateInstance` | +| `FUN_100293b0` | `100293b0` | `CoCreateInstance` | +| `FUN_100294a0` | `100294a0` | `CoCreateInstance` | +| `FUN_100298f0` | `100298f0` | `memmove` | +| `FUN_10029cb0` | `10029cb0` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_1002d260` | `1002d260` | `SysFreeString` | +| `FUN_1002d8b0` | `1002d8b0` | `SysAllocStringByteLen` | +| `FUN_1002dbb0` | `1002dbb0` | `memmove` | +| `FUN_1002e170` | `1002e170` | `SysFreeString` | +| `FUN_1002e440` | `1002e440` | `SysFreeString` | +| `FUN_1002e640` | `1002e640` | `SysFreeString` | +| `FUN_1002e760` | `1002e760` | `SysFreeString` | +| `FUN_1002e940` | `1002e940` | `SysAllocString\`, \`SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_1002edc0` | `1002edc0` | `SysFreeString` | +| `FUN_1002f5f0` | `1002f5f0` | `SysFreeString` | +| `FUN_1002fbc0` | `1002fbc0` | `SysFreeString` | +| `FUN_100300d0` | `100300d0` | `memset` | +| `FUN_10032de0` | `10032de0` | `memmove` | +| `FUN_100347c0` | `100347c0` | `memcpy` | +| `FUN_10035060` | `10035060` | `memmove` | +| `FUN_100362c0` | `100362c0` | `memcpy` | +| `FUN_100363d0` | `100363d0` | `memcpy` | +| `FUN_10038ad0` | `10038ad0` | `memmove` | +| `FUN_1003d920` | `1003d920` | `SysFreeString` | +| `FUN_1003ed90` | `1003ed90` | `SysFreeString` | +| `FUN_100401f0` | `100401f0` | `SysFreeString` | +| `FUN_10040a10` | `10040a10` | `SysFreeString` | +| `FUN_10040b00` | `10040b00` | `SysFreeString` | +| `FUN_10041ba0` | `10041ba0` | `memcpy` | +| `FUN_10043cd0` | `10043cd0` | `SysFreeString` | +| `FUN_100447a0` | `100447a0` | `SysFreeString` | +| `FUN_100448e0` | `100448e0` | `SysFreeString` | +| `FUN_10044930` | `10044930` | `SysFreeString` | +| `FUN_100455f0` | `100455f0` | `SysFreeString` | +| `FUN_10045aa0` | `10045aa0` | `CoGetClassObject\`, \`SysFreeString` | +| `FUN_10046a50` | `10046a50` | `SysFreeString` | +| `FUN_10047260` | `10047260` | `SysFreeString` | +| `FUN_10047fe0` | `10047fe0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10048870` | `10048870` | `SysFreeString` | +| `FUN_10049600` | `10049600` | `memmove` | +| `FUN_1004bac0` | `1004bac0` | `SysFreeString` | +| `FUN_1004c220` | `1004c220` | `CoCreateInstance` | +| `FUN_1004c320` | `1004c320` | `SysFreeString` | +| `FUN_1004d0d0` | `1004d0d0` | `SysFreeString` | +| `FUN_1004d5c0` | `1004d5c0` | `memset` | +| `FUN_1004d6f0` | `1004d6f0` | `SysAllocStringByteLen` | +| `FUN_1004e990` | `1004e990` | `CoGetClassObject\`, \`SysFreeString` | +| `FUN_10050690` | `10050690` | `SysFreeString` | +| `FUN_10051ed0` | `10051ed0` | `CoCreateInstance` | +| `FUN_100521a0` | `100521a0` | `SysAllocStringByteLen` | +| `FUN_10053960` | `10053960` | `SysFreeString` | +| `FUN_10053a10` | `10053a10` | `SysFreeString` | +| `FUN_10054120` | `10054120` | `SysAllocString\`, \`SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10058190` | `10058190` | `SysFreeString` | +| `FUN_1005a180` | `1005a180` | `SysFreeString` | +| `FUN_1005b570` | `1005b570` | `SysFreeString` | +| `FUN_1005bde0` | `1005bde0` | `SysFreeString` | +| `FUN_1005c250` | `1005c250` | `SysAllocString` | +| `FUN_1005c2c0` | `1005c2c0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1005c310` | `1005c310` | `SysAllocStringLen\`, \`SysFreeString\`, \`memcpy_s` | +| `FUN_1005d510` | `1005d510` | `SysFreeString` | +| `FUN_1005e070` | `1005e070` | `SysFreeString` | +| `FUN_1005f130` | `1005f130` | `SysAllocString` | +| `FUN_1005f4f0` | `1005f4f0` | `CoCreateInstance` | +| `FUN_1005f590` | `1005f590` | `SysFreeString` | +| `FUN_1005f610` | `1005f610` | `SysFreeString` | +| `FUN_1005f660` | `1005f660` | `SysFreeString` | +| `FUN_1005f6b0` | `1005f6b0` | `SysFreeString` | +| `FUN_1005ff70` | `1005ff70` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100600f0` | `100600f0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10060240` | `10060240` | `memmove` | +| `FUN_10060690` | `10060690` | `SysFreeString` | +| `FUN_10060a20` | `10060a20` | `SysFreeString` | +| `FUN_10060d50` | `10060d50` | `CoCreateInstance` | +| `FUN_10061af0` | `10061af0` | `memmove` | +| `FUN_10061ef0` | `10061ef0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10063ff0` | `10063ff0` | `AtlInternalQueryInterface` | +| `FUN_10064010` | `10064010` | `AtlInternalQueryInterface` | +| `FUN_10064770` | `10064770` | `SysAllocStringByteLen` | +| `FUN_10064a00` | `10064a00` | `SysFreeString` | +| `FUN_10064e80` | `10064e80` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10065160` | `10065160` | `SysFreeString` | +| `FUN_10065ad0` | `10065ad0` | `CoCreateInstance\`, \`SysFreeString` | +| `FUN_10065cc0` | `10065cc0` | `SysFreeString` | +| `FUN_10065f70` | `10065f70` | `SysAllocString\`, \`SysAllocStringByteLen\`, \`SysFreeString\`, \`memset` | +| `FUN_10066fc0` | `10066fc0` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10067aa0` | `10067aa0` | `SysFreeString` | +| `FUN_100683e0` | `100683e0` | `SysFreeString` | +| `FUN_10068510` | `10068510` | `SysFreeString` | +| `FUN_10069720` | `10069720` | `CoCreateInstance\`, \`SysFreeString` | +| `FUN_10069950` | `10069950` | `SysFreeString` | +| `FUN_10069c30` | `10069c30` | `SysFreeString` | +| `FUN_1006b760` | `1006b760` | `SysAllocString` | +| `FUN_1006b8bd` | `1006b8bd` | `SysFreeString` | +| `FUN_1006c380` | `1006c380` | `SysFreeString` | +| `FUN_1006cbc0` | `1006cbc0` | `CoCreateInstance` | +| `FUN_1006eab0` | `1006eab0` | `SysFreeString` | +| `FUN_1006f440` | `1006f440` | `SysAllocString` | +| `FUN_1006f630` | `1006f630` | `SysAllocString` | +| `FUN_1006f900` | `1006f900` | `SysAllocString` | +| `FUN_1006fbd0` | `1006fbd0` | `SysAllocString` | +| `FUN_1006fec0` | `1006fec0` | `SysAllocString` | +| `FUN_10070110` | `10070110` | `SysAllocString` | +| `FUN_10070360` | `10070360` | `SysFreeString` | +| `FUN_100719d0` | `100719d0` | `SysAllocString` | +| `FUN_10072df0` | `10072df0` | `SysFreeString` | +| `FUN_10073b80` | `10073b80` | `SysFreeString` | +| `FUN_10075010` | `10075010` | `CoCreateInstance` | +| `FUN_100757b0` | `100757b0` | `SysFreeString` | +| `FUN_10075d80` | `10075d80` | `CoCreateInstance\`, \`SysFreeString` | +| `FUN_10076fc0` | `10076fc0` | `AtlInternalQueryInterface` | +| `FUN_10076fe0` | `10076fe0` | `AtlInternalQueryInterface` | +| `FUN_1007aab0` | `1007aab0` | `SysFreeString` | +| `FUN_1007b1a0` | `1007b1a0` | `SysFreeString` | +| `FUN_1007b620` | `1007b620` | `SysFreeString` | +| `FUN_1007bae0` | `1007bae0` | `SysFreeString` | +| `FUN_1007d460` | `1007d460` | `CoCreateInstance\`, \`SysAllocString\`, \`SysFreeString` | +| `FUN_1007dcc0` | `1007dcc0` | `SysFreeString` | +| `FUN_1007e000` | `1007e000` | `SysFreeString` | +| `FUN_10080e90` | `10080e90` | `CoCreateInstance` | +| `FUN_10082170` | `10082170` | `SysFreeString` | +| `FUN_100839f0` | `100839f0` | `SysFreeString` | +| `FUN_10084b90` | `10084b90` | `CoCreateInstance\`, \`SysFreeString` | +| `FUN_100860c0` | `100860c0` | `SysFreeString` | +| `FUN_10086390` | `10086390` | `SysFreeString` | +| `FUN_10086830` | `10086830` | `CoGetClassObject` | +| `FUN_100868c0` | `100868c0` | `CoGetClassObject` | +| `FUN_10086950` | `10086950` | `CoGetClassObject` | +| `FUN_100869e0` | `100869e0` | `CoGetClassObject` | +| `FUN_10086a70` | `10086a70` | `CoGetClassObject` | +| `FUN_10086b10` | `10086b10` | `CoGetClassObject` | +| `FUN_10086bb0` | `10086bb0` | `CoGetClassObject` | +| `FUN_10086c50` | `10086c50` | `CoGetClassObject` | +| `FUN_10086cf0` | `10086cf0` | `SysFreeString\`, \`memcpy\`, \`memset` | +| `FUN_10087e10` | `10087e10` | `CoCreateInstance` | +| `FUN_10088030` | `10088030` | `SysFreeString` | +| `FUN_100881d0` | `100881d0` | `SysFreeString` | +| `FUN_10088230` | `10088230` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100882f0` | `100882f0` | `memcpy` | +| `FUN_100884c0` | `100884c0` | `SysAllocStringByteLen` | +| `FUN_10088590` | `10088590` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10088640` | `10088640` | `SysFreeString` | +| `FUN_100887d0` | `100887d0` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_100888a0` | `100888a0` | `SysFreeString` | +| `FUN_10088da0` | `10088da0` | `SysFreeString` | +| `FUN_10088f10` | `10088f10` | `SysFreeString` | +| `FUN_10089020` | `10089020` | `CoCreateInstance` | +| `FUN_10089300` | `10089300` | `SysFreeString` | +| `FUN_100893a0` | `100893a0` | `SysFreeString` | +| `FUN_10089870` | `10089870` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10089cb0` | `10089cb0` | `memmove` | +| `FUN_1008a190` | `1008a190` | `SysFreeString` | +| `FUN_1008a7a0` | `1008a7a0` | `SysFreeString` | +| `FUN_1008ad90` | `1008ad90` | `memset` | +| `FUN_1008b620` | `1008b620` | `SysFreeString` | +| `FUN_1008b870` | `1008b870` | `SysAllocStringByteLen` | +| `FUN_1008b9a0` | `1008b9a0` | `SysFreeString` | +| `FUN_1008c3d0` | `1008c3d0` | `SysFreeString` | +| `FUN_1008c670` | `1008c670` | `SysFreeString` | +| `FUN_1008c850` | `1008c850` | `SysFreeString` | +| `FUN_1008d2a0` | `1008d2a0` | `SysFreeString` | +| `FUN_1008d760` | `1008d760` | `SysFreeString` | +| `FUN_1008ddd0` | `1008ddd0` | `SysFreeString` | +| `FUN_1008dfc0` | `1008dfc0` | `SysFreeString` | +| `FUN_1008ebf0` | `1008ebf0` | `SysFreeString` | +| `FUN_1008edb0` | `1008edb0` | `CoGetClassObject\`, \`SysFreeString` | +| `FUN_1008fb20` | `1008fb20` | `SysAllocStringByteLen` | +| `FUN_1008fbb0` | `1008fbb0` | `SysFreeString` | +| `FUN_1008fd50` | `1008fd50` | `CoGetClassObject\`, \`SysAllocString\`, \`SysFreeString` | +| `FUN_10091ed0` | `10091ed0` | `SysFreeString` | +| `FUN_100923e0` | `100923e0` | `SysFreeString` | +| `FUN_10092510` | `10092510` | `SysFreeString` | +| `FUN_100928d0` | `100928d0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10092f10` | `10092f10` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100934d0` | `100934d0` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10093800` | `10093800` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10093aa0` | `10093aa0` | `memcpy_s` | +| `FUN_10093b50` | `10093b50` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10093f00` | `10093f00` | `SysFreeString` | +| `FUN_10094400` | `10094400` | `SysFreeString` | +| `FUN_100953f0` | `100953f0` | `SysFreeString` | +| `FUN_10096620` | `10096620` | `SysFreeString` | +| `FUN_10096f60` | `10096f60` | `SysFreeString` | +| `FUN_10096ff0` | `10096ff0` | `SysFreeString` | +| `FUN_100974d0` | `100974d0` | `CoGetClassObject` | +| `FUN_10098610` | `10098610` | `AtlInternalQueryInterface` | +| `FUN_10098830` | `10098830` | `AtlInternalQueryInterface` | +| `FUN_100989d0` | `100989d0` | `AtlInternalQueryInterface` | +| `FUN_10099090` | `10099090` | `CoCreateInstance` | +| `FUN_10099270` | `10099270` | `SysFreeString` | +| `FUN_100993a0` | `100993a0` | `SysFreeString` | +| `FUN_100997c0` | `100997c0` | `CoGetClassObject\`, \`SysFreeString` | +| `FUN_10099e80` | `10099e80` | `AtlInternalQueryInterface` | +| `FUN_10099ec0` | `10099ec0` | `AtlInternalQueryInterface` | +| `FUN_1009a010` | `1009a010` | `AtlInternalQueryInterface` | +| `FUN_1009a030` | `1009a030` | `AtlInternalQueryInterface` | +| `FUN_1009a990` | `1009a990` | `AtlInternalQueryInterface` | +| `FUN_1009aa30` | `1009aa30` | `AtlInternalQueryInterface` | +| `FUN_1009af00` | `1009af00` | `AtlInternalQueryInterface` | +| `FUN_1009b060` | `1009b060` | `AtlInternalQueryInterface` | +| `FUN_1009b760` | `1009b760` | `memcpy` | +| `FUN_1009ba40` | `1009ba40` | `AtlInternalQueryInterface` | +| `FUN_1009bdd0` | `1009bdd0` | `memset` | +| `FUN_1009d620` | `1009d620` | `SysFreeString` | +| `FUN_1009e1b0` | `1009e1b0` | `SysFreeString` | +| `FUN_1009e790` | `1009e790` | `SysFreeString` | +| `FUN_1009ea80` | `1009ea80` | `SysFreeString` | +| `FUN_1009f8a0` | `1009f8a0` | `SysFreeString` | +| `FUN_100a0140` | `100a0140` | `memset` | +| `FUN_100a0c70` | `100a0c70` | `memcpy_s` | +| `FUN_100a0cf0` | `100a0cf0` | `memcpy_s` | +| `FUN_100a2e10` | `100a2e10` | `memmove` | +| `FUN_100a2e40` | `100a2e40` | `memmove` | +| `FUN_100a35f0` | `100a35f0` | `SysFreeString` | +| `FUN_100a3680` | `100a3680` | `SysFreeString` | +| `FUN_100a3710` | `100a3710` | `SysFreeString` | +| `FUN_100a3850` | `100a3850` | `SysFreeString` | +| `FUN_100a38e0` | `100a38e0` | `SysFreeString` | +| `FUN_100a3970` | `100a3970` | `SysFreeString` | +| `FUN_100a3aa0` | `100a3aa0` | `SysFreeString` | +| `FUN_100a3b30` | `100a3b30` | `SysFreeString` | +| `FUN_100a3bc0` | `100a3bc0` | `SysFreeString` | +| `FUN_100a3cf0` | `100a3cf0` | `SysFreeString` | +| `FUN_100a3d80` | `100a3d80` | `SysFreeString` | +| `FUN_100a3e10` | `100a3e10` | `SysFreeString` | +| `FUN_100a3f20` | `100a3f20` | `SysFreeString` | +| `FUN_100a3fb0` | `100a3fb0` | `SysFreeString` | +| `FUN_100a4040` | `100a4040` | `SysFreeString` | +| `FUN_100a4150` | `100a4150` | `SysFreeString` | +| `FUN_100a41e0` | `100a41e0` | `SysFreeString` | +| `FUN_100a4270` | `100a4270` | `SysFreeString` | +| `FUN_100a4380` | `100a4380` | `SysFreeString` | +| `FUN_100a4410` | `100a4410` | `SysFreeString` | +| `FUN_100a44a0` | `100a44a0` | `SysFreeString` | +| `FUN_100a45d0` | `100a45d0` | `SysFreeString` | +| `FUN_100a4660` | `100a4660` | `SysFreeString` | +| `FUN_100a46f0` | `100a46f0` | `SysFreeString` | +| `FUN_100a4820` | `100a4820` | `SysFreeString` | +| `FUN_100a48b0` | `100a48b0` | `SysFreeString` | +| `FUN_100a4940` | `100a4940` | `SysFreeString` | +| `FUN_100a4a70` | `100a4a70` | `SysFreeString` | +| `FUN_100a4b00` | `100a4b00` | `SysFreeString` | +| `FUN_100a4b90` | `100a4b90` | `SysFreeString` | +| `FUN_100a4cc0` | `100a4cc0` | `SysFreeString` | +| `FUN_100a4d50` | `100a4d50` | `SysFreeString` | +| `FUN_100a4de0` | `100a4de0` | `SysFreeString` | +| `FUN_100a4ef0` | `100a4ef0` | `SysFreeString` | +| `FUN_100a4f80` | `100a4f80` | `SysFreeString` | +| `FUN_100a5010` | `100a5010` | `SysFreeString` | +| `FUN_100a5120` | `100a5120` | `SysFreeString` | +| `FUN_100a51b0` | `100a51b0` | `SysFreeString` | +| `FUN_100a5240` | `100a5240` | `SysFreeString` | +| `FUN_100a5350` | `100a5350` | `SysFreeString` | +| `FUN_100a53e0` | `100a53e0` | `SysFreeString` | +| `FUN_100a5470` | `100a5470` | `SysFreeString` | +| `FUN_100a55f0` | `100a55f0` | `SysFreeString` | +| `FUN_100a5680` | `100a5680` | `SysFreeString` | +| `FUN_100a5710` | `100a5710` | `SysFreeString` | +| `FUN_100a5840` | `100a5840` | `SysFreeString` | +| `FUN_100a58d0` | `100a58d0` | `SysFreeString` | +| `FUN_100a5960` | `100a5960` | `SysFreeString` | +| `FUN_100a5aa0` | `100a5aa0` | `SysFreeString` | +| `FUN_100a5b30` | `100a5b30` | `SysFreeString` | +| `FUN_100a5bc0` | `100a5bc0` | `SysFreeString` | +| `FUN_100a5d30` | `100a5d30` | `memmove` | +| `FUN_100a5d60` | `100a5d60` | `memmove` | +| `FUN_100a6130` | `100a6130` | `SysFreeString` | +| `FUN_100a6300` | `100a6300` | `SysFreeString` | +| `FUN_100a6c20` | `100a6c20` | `memmove` | +| `FUN_100a6c50` | `100a6c50` | `memmove` | +| `FUN_100a6e70` | `100a6e70` | `memmove` | +| `FUN_100a6ea0` | `100a6ea0` | `memmove` | +| `FUN_100a6f50` | `100a6f50` | `SysFreeString` | +| `FUN_100a7090` | `100a7090` | `SysFreeString` | +| `FUN_100a7130` | `100a7130` | `SysFreeString` | +| `FUN_100a71d0` | `100a71d0` | `SysFreeString` | +| `FUN_100a7260` | `100a7260` | `SysFreeString` | +| `FUN_100a7300` | `100a7300` | `SysFreeString` | +| `FUN_100a7390` | `100a7390` | `SysFreeString` | +| `FUN_100a7420` | `100a7420` | `SysFreeString` | +| `FUN_100a7950` | `100a7950` | `SysFreeString` | +| `FUN_100a79f0` | `100a79f0` | `SysFreeString` | +| `FUN_100a7aa0` | `100a7aa0` | `SysFreeString` | +| `FUN_100a7b40` | `100a7b40` | `SysFreeString` | +| `FUN_100a7be0` | `100a7be0` | `SysFreeString` | +| `FUN_100a7c80` | `100a7c80` | `SysFreeString` | +| `FUN_100a7d20` | `100a7d20` | `SysFreeString` | +| `FUN_100a7dd0` | `100a7dd0` | `SysFreeString` | +| `FUN_100a7e70` | `100a7e70` | `SysFreeString` | +| `FUN_100a7f10` | `100a7f10` | `SysFreeString` | +| `FUN_100a7fb0` | `100a7fb0` | `SysFreeString` | +| `FUN_100a8040` | `100a8040` | `SysFreeString` | +| `FUN_100a8110` | `100a8110` | `SysFreeString` | +| `FUN_100a81a0` | `100a81a0` | `SysFreeString` | +| `FUN_100a8830` | `100a8830` | `SysFreeString` | +| `FUN_100a88d0` | `100a88d0` | `SysFreeString` | +| `FUN_100a89b0` | `100a89b0` | `SysFreeString` | +| `FUN_100a8a60` | `100a8a60` | `SysFreeString` | +| `FUN_100a8b10` | `100a8b10` | `SysFreeString` | +| `FUN_100a8bc0` | `100a8bc0` | `SysFreeString` | +| `FUN_100a8c60` | `100a8c60` | `SysFreeString` | +| `FUN_100a8d40` | `100a8d40` | `SysFreeString` | +| `FUN_100a8df0` | `100a8df0` | `SysFreeString` | +| `FUN_100a8ea0` | `100a8ea0` | `SysFreeString` | +| `FUN_100a94e0` | `100a94e0` | `SysFreeString` | +| `FUN_100a95d0` | `100a95d0` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_100a9770` | `100a9770` | `SysFreeString` | +| `FUN_100a9ad0` | `100a9ad0` | `memmove` | +| `FUN_100a9b00` | `100a9b00` | `memmove` | +| `FUN_100aa040` | `100aa040` | `SysFreeString` | +| `FUN_100aa180` | `100aa180` | `SysFreeString` | +| `FUN_100aa220` | `100aa220` | `SysFreeString` | +| `FUN_100aa2b0` | `100aa2b0` | `SysFreeString` | +| `FUN_100aa350` | `100aa350` | `SysFreeString` | +| `FUN_100aa490` | `100aa490` | `SysFreeString` | +| `FUN_100aa530` | `100aa530` | `SysFreeString` | +| `FUN_100aa5c0` | `100aa5c0` | `SysFreeString` | +| `FUN_100abcd0` | `100abcd0` | `SysFreeString` | +| `FUN_100abe10` | `100abe10` | `SysFreeString` | +| `FUN_100abeb0` | `100abeb0` | `SysFreeString` | +| `FUN_100abf40` | `100abf40` | `SysFreeString` | +| `FUN_100abfe0` | `100abfe0` | `SysFreeString` | +| `FUN_100ac120` | `100ac120` | `SysFreeString` | +| `FUN_100ac1c0` | `100ac1c0` | `SysFreeString` | +| `FUN_100ac250` | `100ac250` | `SysFreeString` | +| `FUN_100ac330` | `100ac330` | `SysFreeString` | +| `FUN_100ac470` | `100ac470` | `SysFreeString` | +| `FUN_100ac510` | `100ac510` | `SysFreeString` | +| `FUN_100ac5a0` | `100ac5a0` | `SysFreeString` | +| `FUN_100ac640` | `100ac640` | `SysFreeString` | +| `FUN_100ac780` | `100ac780` | `SysFreeString` | +| `FUN_100ac820` | `100ac820` | `SysFreeString` | +| `FUN_100ac8b0` | `100ac8b0` | `SysFreeString` | +| `FUN_100ac950` | `100ac950` | `SysFreeString` | +| `FUN_100aca90` | `100aca90` | `SysFreeString` | +| `FUN_100acb30` | `100acb30` | `SysFreeString` | +| `FUN_100acbc0` | `100acbc0` | `SysFreeString` | +| `FUN_100acc60` | `100acc60` | `SysFreeString` | +| `FUN_100acda0` | `100acda0` | `SysFreeString` | +| `FUN_100ace40` | `100ace40` | `SysFreeString` | +| `FUN_100aced0` | `100aced0` | `SysFreeString` | +| `FUN_100acf70` | `100acf70` | `SysFreeString` | +| `FUN_100ad0b0` | `100ad0b0` | `SysFreeString` | +| `FUN_100ad150` | `100ad150` | `SysFreeString` | +| `FUN_100ad1e0` | `100ad1e0` | `SysFreeString` | +| `FUN_100ad280` | `100ad280` | `SysFreeString` | +| `FUN_100ad3c0` | `100ad3c0` | `SysFreeString` | +| `FUN_100ad460` | `100ad460` | `SysFreeString` | +| `FUN_100ad4f0` | `100ad4f0` | `SysFreeString` | +| `FUN_100ad590` | `100ad590` | `SysFreeString` | +| `FUN_100ad6d0` | `100ad6d0` | `SysFreeString` | +| `FUN_100ad770` | `100ad770` | `SysFreeString` | +| `FUN_100ad800` | `100ad800` | `SysFreeString` | +| `FUN_100ad8a0` | `100ad8a0` | `SysFreeString` | +| `FUN_100ad9e0` | `100ad9e0` | `SysFreeString` | +| `FUN_100ada80` | `100ada80` | `SysFreeString` | +| `FUN_100adb10` | `100adb10` | `SysFreeString` | +| `FUN_100adbb0` | `100adbb0` | `SysFreeString` | +| `FUN_100adcf0` | `100adcf0` | `SysFreeString` | +| `FUN_100add90` | `100add90` | `SysFreeString` | +| `FUN_100ade20` | `100ade20` | `SysFreeString` | +| `FUN_100adec0` | `100adec0` | `SysFreeString` | +| `FUN_100ae000` | `100ae000` | `SysFreeString` | +| `FUN_100ae0a0` | `100ae0a0` | `SysFreeString` | +| `FUN_100ae130` | `100ae130` | `SysFreeString` | +| `FUN_100ae1d0` | `100ae1d0` | `SysFreeString` | +| `FUN_100ae310` | `100ae310` | `SysFreeString` | +| `FUN_100ae3b0` | `100ae3b0` | `SysFreeString` | +| `FUN_100ae440` | `100ae440` | `SysFreeString` | +| `FUN_100ae4e0` | `100ae4e0` | `SysFreeString` | +| `FUN_100ae620` | `100ae620` | `SysFreeString` | +| `FUN_100ae6c0` | `100ae6c0` | `SysFreeString` | +| `FUN_100ae750` | `100ae750` | `SysFreeString` | +| `FUN_100ae7f0` | `100ae7f0` | `SysFreeString` | +| `FUN_100ae930` | `100ae930` | `SysFreeString` | +| `FUN_100ae9d0` | `100ae9d0` | `SysFreeString` | +| `FUN_100aea60` | `100aea60` | `SysFreeString` | +| `FUN_100aeb00` | `100aeb00` | `SysFreeString` | +| `FUN_100aec40` | `100aec40` | `SysFreeString` | +| `FUN_100aece0` | `100aece0` | `SysFreeString` | +| `FUN_100aed70` | `100aed70` | `SysFreeString` | +| `FUN_100aee10` | `100aee10` | `SysFreeString` | +| `FUN_100aef50` | `100aef50` | `SysFreeString` | +| `FUN_100aeff0` | `100aeff0` | `SysFreeString` | +| `FUN_100af080` | `100af080` | `SysFreeString` | +| `FUN_100af120` | `100af120` | `SysFreeString` | +| `FUN_100af260` | `100af260` | `SysFreeString` | +| `FUN_100af300` | `100af300` | `SysFreeString` | +| `FUN_100af390` | `100af390` | `SysFreeString` | +| `FUN_100af430` | `100af430` | `SysFreeString` | +| `FUN_100af570` | `100af570` | `SysFreeString` | +| `FUN_100af610` | `100af610` | `SysFreeString` | +| `FUN_100af6a0` | `100af6a0` | `SysFreeString` | +| `FUN_100af740` | `100af740` | `SysFreeString` | +| `FUN_100af880` | `100af880` | `SysFreeString` | +| `FUN_100af920` | `100af920` | `SysFreeString` | +| `FUN_100af9b0` | `100af9b0` | `SysFreeString` | +| `FUN_100afa50` | `100afa50` | `SysFreeString` | +| `FUN_100afb90` | `100afb90` | `SysFreeString` | +| `FUN_100afc30` | `100afc30` | `SysFreeString` | +| `FUN_100afcc0` | `100afcc0` | `SysFreeString` | +| `FUN_100afd60` | `100afd60` | `SysFreeString` | +| `FUN_100afea0` | `100afea0` | `SysFreeString` | +| `FUN_100aff40` | `100aff40` | `SysFreeString` | +| `FUN_100affd0` | `100affd0` | `SysFreeString` | +| `FUN_100b0070` | `100b0070` | `SysFreeString` | +| `FUN_100b01b0` | `100b01b0` | `SysFreeString` | +| `FUN_100b0250` | `100b0250` | `SysFreeString` | +| `FUN_100b02e0` | `100b02e0` | `SysFreeString` | +| `FUN_100b0380` | `100b0380` | `SysFreeString` | +| `FUN_100b04c0` | `100b04c0` | `SysFreeString` | +| `FUN_100b0560` | `100b0560` | `SysFreeString` | +| `FUN_100b05f0` | `100b05f0` | `SysFreeString` | +| `FUN_100b0690` | `100b0690` | `SysFreeString` | +| `FUN_100b07d0` | `100b07d0` | `SysFreeString` | +| `FUN_100b0870` | `100b0870` | `SysFreeString` | +| `FUN_100b0900` | `100b0900` | `SysFreeString` | +| `FUN_100b09a0` | `100b09a0` | `SysFreeString` | +| `FUN_100b0ae0` | `100b0ae0` | `SysFreeString` | +| `FUN_100b0b80` | `100b0b80` | `SysFreeString` | +| `FUN_100b0c10` | `100b0c10` | `SysFreeString` | +| `FUN_100b0cb0` | `100b0cb0` | `SysFreeString` | +| `FUN_100b0df0` | `100b0df0` | `SysFreeString` | +| `FUN_100b0e90` | `100b0e90` | `SysFreeString` | +| `FUN_100b0f20` | `100b0f20` | `SysFreeString` | +| `FUN_100b0fc0` | `100b0fc0` | `SysFreeString` | +| `FUN_100b1100` | `100b1100` | `SysFreeString` | +| `FUN_100b11a0` | `100b11a0` | `SysFreeString` | +| `FUN_100b1230` | `100b1230` | `SysFreeString` | +| `FUN_100c2470` | `100c2470` | `SysFreeString` | +| `FUN_100c2510` | `100c2510` | `SysFreeString` | +| `FUN_100c25b0` | `100c25b0` | `SysFreeString` | +| `FUN_100c2640` | `100c2640` | `SysFreeString` | +| `FUN_100c26d0` | `100c26d0` | `SysFreeString` | +| `FUN_100c2760` | `100c2760` | `SysFreeString` | +| `FUN_100c27f0` | `100c27f0` | `SysFreeString` | +| `FUN_100c2cd0` | `100c2cd0` | `SysFreeString` | +| `FUN_100c2d70` | `100c2d70` | `SysFreeString` | +| `FUN_100c2e10` | `100c2e10` | `SysFreeString` | +| `FUN_100c2eb0` | `100c2eb0` | `SysFreeString` | +| `FUN_100c2f50` | `100c2f50` | `SysFreeString` | +| `FUN_100c2ff0` | `100c2ff0` | `SysFreeString` | +| `FUN_100c3090` | `100c3090` | `SysFreeString` | +| `FUN_100c3130` | `100c3130` | `SysFreeString` | +| `FUN_100c3380` | `100c3380` | `memmove` | +| `FUN_100c3440` | `100c3440` | `memmove` | +| `FUN_100dbac0` | `100dbac0` | `CoCreateInstance` | +| `FUN_100dbda0` | `100dbda0` | `SysFreeString` | +| `FUN_100dc750` | `100dc750` | `SysFreeString` | +| `FUN_100dcb10` | `100dcb10` | `memmove` | +| `FUN_100dcba0` | `100dcba0` | `memmove` | +| `FUN_100dcc30` | `100dcc30` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100dce30` | `100dce30` | `SysFreeString` | +| `FUN_100dcf90` | `100dcf90` | `SysFreeString` | +| `FUN_100dd030` | `100dd030` | `SysFreeString` | +| `FUN_100e1d30` | `100e1d30` | `SysAllocString` | +| `FUN_100e2270` | `100e2270` | `SysAllocString` | +| `FUN_100e25c0` | `100e25c0` | `SysFreeString` | +| `FUN_100e2820` | `100e2820` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100e2920` | `100e2920` | `SysFreeString` | +| `FUN_100e3080` | `100e3080` | `SysFreeString` | +| `FUN_100e3b10` | `100e3b10` | `SysFreeString` | +| `FUN_100e3f50` | `100e3f50` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100e4770` | `100e4770` | `SysFreeString` | +| `FUN_100e48e0` | `100e48e0` | `SysAllocString` | +| `FUN_100e5ad0` | `100e5ad0` | `SysFreeString` | +| `FUN_100e71f0` | `100e71f0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100e7640` | `100e7640` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100e7ae0` | `100e7ae0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100e7f80` | `100e7f80` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100e8420` | `100e8420` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100ea780` | `100ea780` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100eabf0` | `100eabf0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100ef7a0` | `100ef7a0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100efbe0` | `100efbe0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f49d0` | `100f49d0` | `memcpy_s` | +| `FUN_100f4b40` | `100f4b40` | `memcpy_s` | +| `FUN_100f4c00` | `100f4c00` | `CoCreateInstance\`, \`SysAllocString\`, \`SysFreeString` | +| `FUN_100f5a30` | `100f5a30` | `memcpy_s` | +| `FUN_100f5ba0` | `100f5ba0` | `memcpy_s` | +| `FUN_100f5c60` | `100f5c60` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f5db0` | `100f5db0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f5ef0` | `100f5ef0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f61a0` | `100f61a0` | `memcpy_s` | +| `FUN_100f6310` | `100f6310` | `memcpy_s` | +| `FUN_100f63d0` | `100f63d0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f6520` | `100f6520` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f6660` | `100f6660` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f6910` | `100f6910` | `memcpy_s` | +| `FUN_100f6a80` | `100f6a80` | `memcpy_s` | +| `FUN_100f6e50` | `100f6e50` | `memset` | +| `FUN_100f7190` | `100f7190` | `SysFreeString` | +| `FUN_100f74e0` | `100f74e0` | `memcpy` | +| `FUN_100f7620` | `100f7620` | `CoCreateInstance` | +| `FUN_100f76f0` | `100f76f0` | `CoCreateInstance` | +| `FUN_100f7840` | `100f7840` | `SysAllocString\`, \`SysFreeString` | +| `FUN_100f78b0` | `100f78b0` | `SysFreeString` | +| `FUN_100f7ac0` | `100f7ac0` | `memcpy_s` | +| `FUN_100f8c30` | `100f8c30` | `memmove` | +| `FUN_100f8fd0` | `100f8fd0` | `memmove` | +| `FUN_100f9000` | `100f9000` | `SysFreeString` | +| `FUN_100fa020` | `100fa020` | `memmove` | +| `FUN_100fa4e0` | `100fa4e0` | `memmove` | +| `FUN_100fae00` | `100fae00` | `memmove` | +| `FUN_100fba70` | `100fba70` | `memmove` | +| `FUN_100fbdd0` | `100fbdd0` | `SysAllocStringByteLen` | +| `FUN_100fc3f0` | `100fc3f0` | `memcpy_s` | +| `FUN_100fd060` | `100fd060` | `SysAllocStringByteLen` | +| `FUN_100fd200` | `100fd200` | `SysFreeString` | +| `FUN_100fd400` | `100fd400` | `SysFreeString` | +| `FUN_100feb50` | `100feb50` | `SysFreeString` | +| `FUN_100ff6f0` | `100ff6f0` | `memset` | +| `FUN_100ffc90` | `100ffc90` | `SysFreeString` | +| `FUN_10100380` | `10100380` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_101007e0` | `101007e0` | `memcpy_s` | +| `FUN_10100da0` | `10100da0` | `SysFreeString` | +| `FUN_101010e0` | `101010e0` | `CoCreateInstance` | +| `FUN_10101360` | `10101360` | `SysFreeString` | +| `FUN_101018a0` | `101018a0` | `CoCreateInstance\`, \`SysAllocString\`, \`SysFreeString\`, \`memcpy` | +| `FUN_10102c70` | `10102c70` | `SysAllocStringByteLen` | +| `FUN_10102ce0` | `10102ce0` | `SysFreeString` | +| `FUN_101037b0` | `101037b0` | `SysFreeString` | +| `FUN_10103a70` | `10103a70` | `CoCreateInstance` | +| `FUN_10103ba0` | `10103ba0` | `SysFreeString` | +| `FUN_10104e90` | `10104e90` | `SysFreeString` | +| `FUN_10107880` | `10107880` | `CoCreateInstance\`, \`SysAllocString\`, \`SysFreeString` | +| `FUN_1010a5e0` | `1010a5e0` | `memset` | +| `FUN_1010ad00` | `1010ad00` | `memset` | +| `FUN_1010b4b0` | `1010b4b0` | `memcpy_s` | +| `FUN_1010b7c0` | `1010b7c0` | `SysFreeString` | +| `FUN_1010bd10` | `1010bd10` | `SysFreeString` | +| `FUN_1010d4a0` | `1010d4a0` | `memset` | +| `FUN_1010db90` | `1010db90` | `SysFreeString` | +| `FUN_1010de30` | `1010de30` | `SysFreeString` | +| `FUN_1010e230` | `1010e230` | `memcpy_s` | +| `FUN_1010ee00` | `1010ee00` | `SysFreeString\`, \`memset` | +| `FUN_10110986` | `10110986` | `SysFreeString` | +| `FUN_10112046` | `10112046` | `SysFreeString` | +| `FUN_101121e0` | `101121e0` | `memset` | +| `FUN_10112a00` | `10112a00` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10112da0` | `10112da0` | `SysFreeString` | +| `FUN_10112f20` | `10112f20` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_101131d0` | `101131d0` | `SysFreeString` | +| `FUN_101133d0` | `101133d0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10113900` | `10113900` | `CoCreateInstance` | +| `FUN_10113b10` | `10113b10` | `SysFreeString` | +| `FUN_10113d40` | `10113d40` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10114740` | `10114740` | `SysFreeString` | +| `FUN_10118bd0` | `10118bd0` | `CoCreateInstance` | +| `FUN_1011f530` | `1011f530` | `SysFreeString` | +| `FUN_10120080` | `10120080` | `SysFreeString` | +| `FUN_10123900` | `10123900` | `SysFreeString` | +| `FUN_10128820` | `10128820` | `SysFreeString` | +| `FUN_10131f30` | `10131f30` | `CoCreateInstance` | +| `FUN_10134310` | `10134310` | `CoCreateInstance` | +| `Attach` | `10134c30` | `SysFreeString` | +| `FUN_101353b0` | `101353b0` | `SysFreeString` | +| `FUN_10135890` | `10135890` | `SysFreeString` | +| `FUN_10137530` | `10137530` | `memcpy` | +| `FUN_10137ae0` | `10137ae0` | `memcpy_s` | +| `FUN_10138180` | `10138180` | `SysFreeString` | +| `FUN_101392c0` | `101392c0` | `SysFreeString` | +| `FUN_1013b1d0` | `1013b1d0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1013b5c0` | `1013b5c0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1013bef0` | `1013bef0` | `CoCreateInstance\`, \`SysAllocString\`, \`SysFreeString` | +| `FUN_1013d120` | `1013d120` | `SysFreeString` | +| `FUN_1013dbc0` | `1013dbc0` | `SysFreeString` | +| `FUN_1013ea30` | `1013ea30` | `memcpy\`, \`memcpy_s` | +| `FUN_1013f220` | `1013f220` | `SysFreeString` | +| `FUN_10140450` | `10140450` | `SysFreeString` | +| `FUN_101421d0` | `101421d0` | `SysFreeString` | +| `FUN_10144630` | `10144630` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10145357` | `10145357` | `SysFreeString` | +| `FUN_10145fe0` | `10145fe0` | `SysFreeString` | +| `FUN_101479a0` | `101479a0` | `SysFreeString` | +| `FUN_10147b30` | `10147b30` | `SysFreeString` | +| `FUN_10147b90` | `10147b90` | `SysFreeString` | +| `FUN_10147be0` | `10147be0` | `SysFreeString` | +| `FUN_10148510` | `10148510` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10148610` | `10148610` | `SysFreeString` | +| `FUN_10148660` | `10148660` | `SysFreeString` | +| `FUN_10148cc0` | `10148cc0` | `SysAllocString` | +| `FUN_10148d40` | `10148d40` | `SysFreeString` | +| `FUN_10148da0` | `10148da0` | `SysFreeString` | +| `FUN_10148f70` | `10148f70` | `SysAllocStringByteLen` | +| `FUN_10149020` | `10149020` | `SysAllocString\`, \`SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_10149740` | `10149740` | `SysAllocString` | +| `FUN_10149840` | `10149840` | `SysFreeString` | +| `FUN_101498b0` | `101498b0` | `SysFreeString` | +| `FUN_10149910` | `10149910` | `SysAllocStringByteLen` | +| `FUN_101499c0` | `101499c0` | `SysAllocStringByteLen` | +| `FUN_10149ca0` | `10149ca0` | `SysFreeString` | +| `FUN_10149cf0` | `10149cf0` | `SysFreeString` | +| `FUN_10149dc0` | `10149dc0` | `SysAllocStringByteLen` | +| `FUN_10149f80` | `10149f80` | `SysFreeString` | +| `FUN_1014a0e0` | `1014a0e0` | `SysFreeString` | +| `FUN_1014a130` | `1014a130` | `SysFreeString` | +| `FUN_1014a190` | `1014a190` | `SysFreeString` | +| `FUN_1014a400` | `1014a400` | `SysFreeString` | +| `FUN_1014a680` | `1014a680` | `SysAllocStringByteLen` | +| `FUN_1014a790` | `1014a790` | `SysFreeString` | +| `FUN_1014ace0` | `1014ace0` | `SysAllocString\`, \`SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_1014b210` | `1014b210` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1014b750` | `1014b750` | `SysFreeString` | +| `FUN_1014b9f0` | `1014b9f0` | `SysFreeString` | +| `FUN_1014bc90` | `1014bc90` | `SysFreeString` | +| `FUN_1014bd10` | `1014bd10` | `SysFreeString` | +| `FUN_1014bda0` | `1014bda0` | `SysFreeString` | +| `FUN_1014bee0` | `1014bee0` | `SysFreeString` | +| `FUN_1014c590` | `1014c590` | `SysAllocStringLen` | +| `FUN_1014c5d0` | `1014c5d0` | `SysAllocStringLen` | +| `FUN_1014c650` | `1014c650` | `SysFreeString` | +| `FUN_1014c6a0` | `1014c6a0` | `SysFreeString` | +| `FUN_1014c7d0` | `1014c7d0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1014ca80` | `1014ca80` | `SysFreeString` | +| `FUN_1014cf40` | `1014cf40` | `SysAllocString\`, \`SysAllocStringByteLen\`, \`SysAllocStringLen\`, \`SysFreeString` | +| `FUN_1014e000` | `1014e000` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1014ed80` | `1014ed80` | `SysFreeString` | +| `FUN_1014f010` | `1014f010` | `SysFreeString` | +| `FUN_1014f170` | `1014f170` | `SysFreeString` | +| `memmove_s` | `1014f4fc` | `memmove_s` | +| `RemoveAt` | `1014f51d` | `memmove_s` | +| `FUN_1014f5b2` | `1014f5b2` | `memset` | +| `FUN_1014f7f2` | `1014f7f2` | `memset` | +| `ConvertStringToBSTR` | `1014fab0` | `SysAllocString` | +| `_com_invoke_helper` | `1014fd90` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit\`, \`memset` | +| `_com_handle_excepinfo` | `10150480` | `SysFreeString` | +| `FUN_10178fc0` | `10178fc0` | `SysAllocString` | +| `FUN_101792e0` | `101792e0` | `memset` | +| `FUN_101793a0` | `101793a0` | `SysFreeString` | +| `FUN_10179470` | `10179470` | `SysFreeString` | +| `FUN_10179480` | `10179480` | `SysFreeString` | +| `FUN_10179680` | `10179680` | `VariantClear` | + diff --git a/analysis/ghidra/exports/Lmx.dll.prebound-decompile.md b/analysis/ghidra/exports/Lmx.dll.prebound-decompile.md new file mode 100644 index 0000000..09c8d1b --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.prebound-decompile.md @@ -0,0 +1,1987 @@ +# Lmx.dll selected decompile + +## FUN_100ea780 at 100ea780 + +Signature: `undefined FUN_100ea780(void)` + +```c + +void FUN_100ea780(int param_1,OLECHAR *param_2,long *param_3) + +{ + int *piVar1; + BSTR pOVar2; + char cVar3; + undefined1 uVar4; + undefined4 uVar5; + basic_ostream_> *pbVar6; + undefined4 *puVar7; + int iVar8; + int iVar9; + uint *puVar10; + UINT UVar11; + undefined4 *puVar12; + long lVar13; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var14; + long local_44; + int local_40; + BSTR local_3c; + undefined4 *local_34; + BSTR local_30; + int local_2c; + uint local_14; + void *local_10; + undefined1 *puStack_c; + int local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_1016e5de; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_2c = param_1; + local_44 = -0x7fffbffb; + if (DAT_101d6458 == '\0') { +LAB_100ea902: + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + p_Var14 = endl_exref; + uVar5 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::PrebindReference - ENTER referenceString "); + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(uVar5); + std::basic_ostream_>::operator<< + (pbVar6,p_Var14); + } + local_34 = operator_new(0xb4); + local_8 = 4; + if (local_34 == (void *)0x0) { + puVar7 = (undefined4 *)0x0; + } + else { + puVar7 = (undefined4 *)FUN_101139c0(); + } + local_8 = 0xffffffff; + local_34 = puVar7; + } + else { + cVar3 = FUN_10096c70(); + if (cVar3 == '\0') goto LAB_100ea902; + if (param_2 == (OLECHAR *)0x0) { + local_30 = (BSTR)0x0; + } + else { + local_30 = SysAllocString(param_2); + if (local_30 == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(0x8007000e,0); + } + } + pOVar2 = local_30; + local_3c = (BSTR)0x0; + local_8._0_1_ = 1; + local_8._1_3_ = 0; + local_34 = (undefined4 *)&stack0xffffff8c; + FUN_1008fb20(); + local_8 = CONCAT31(local_8._1_3_,1); + FUN_10096f60(); + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + p_Var14 = endl_exref; + uVar5 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::PrebindReference - ENTER referenceString \'",param_2, + L"\' Substituted String \'",local_3c); + uVar5 = FUN_1001a0e0(uVar5); + uVar5 = FUN_1001a0e0(uVar5); + uVar5 = FUN_1001a0e0(uVar5); + pbVar6 = (basic_ostream_> *) + FUN_1001dc00(uVar5); + std::basic_ostream_>::operator<< + (pbVar6,p_Var14); + } + local_34 = operator_new(0xb4); + local_8._0_1_ = 3; + if (local_34 == (void *)0x0) { + puVar7 = (undefined4 *)0x0; + } + else { + puVar7 = (undefined4 *)FUN_101139c0(); + } + local_8 = (uint)local_8._1_3_ << 8; + local_34 = puVar7; + SysFreeString(local_3c); + local_8 = 0xffffffff; + SysFreeString(pOVar2); + } + cVar3 = FUN_10048d60(puVar7 != (undefined4 *)0x0); + if (cVar3 == '\0') goto LAB_100eab0d; + FUN_100db730(); + FUN_100c3730(&local_40); + if ((char)local_3c == '\0') { + if (puVar7 != (undefined4 *)0x0) { + (**(code **)*puVar7)(); + } + puVar7 = *(undefined4 **)(local_40 + 0xc); + goto LAB_100eab0d; + } + FUN_1005f590(); + puVar12 = (undefined4 *)(local_2c + 0x9c); + iVar8 = (**(code **)(**(int **)(local_2c + 0x9c) + 0x24))(); + if (iVar8 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar8,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x45); + } + uVar5 = FUN_1005f6b0(); + piVar1 = (int *)*puVar12; + iVar9 = (**(code **)(*piVar1 + 0x44))(piVar1,uVar5); + iVar8 = local_2c; + if (iVar9 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar9,0); + } + local_34 = puVar12; + FUN_1006b120(); + pOVar2 = local_30; + if (local_30 != *(BSTR *)(*(int *)(iVar8 + 0x1c) + 400)) { + puVar10 = (uint *)FUN_1005f730(); + if (((((char)*puVar10 != '\0') && (*puVar10 >> 0x10 != 0)) && ((short)puVar10[1] != 0)) && + ((puVar10[1] >> 0x10 != 0 && ((short)(puVar10[2] >> 0x10) != 0)))) { + if ((BSTR)puVar7[0x2b] != (BSTR)0x0) { + UVar11 = SysStringLen((BSTR)puVar7[0x2b]); + if (UVar11 != 0) goto LAB_100eab04; + } + FUN_1003ec10(); + FUN_101129c0(3); + puVar12 = (undefined4 *)FUN_10001920(); + iVar8 = *(int *)(pOVar2 + 6); + *(undefined4 *)(iVar8 + 0x14) = *puVar12; + *(undefined4 *)(iVar8 + 0x18) = puVar12[1]; + } + } +LAB_100eab04: + piVar1 = (int *)(*(int *)(local_40 + 0xc) + 0x14); + *piVar1 = *piVar1 + 1; +LAB_100eab0d: + cVar3 = FUN_10048d60(puVar7 != (undefined4 *)0x0); + if (cVar3 != '\0') { + uVar4 = FUN_100e18b0(puVar7,param_3); + cVar3 = FUN_10048d60(uVar4); + if (cVar3 != '\0') { + FUN_10113d40(); + local_44 = 0; + } + } + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + lVar13 = *param_3; + p_Var14 = endl_exref; + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::PrebindReference - EXIT *preboundRefHandle ",lVar13, + L" hResult "); + pbVar6 = std::basic_ostream_>::operator<< + (pbVar6,lVar13); + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(pbVar6); + pbVar6 = std::basic_ostream_>::operator<< + (pbVar6,local_44); + std::basic_ostream_>::operator<< + (pbVar6,p_Var14); + } + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_100eabf0 at 100eabf0 + +Signature: `undefined FUN_100eabf0(void)` + +```c + +void FUN_100eabf0(int param_1,int *param_2,long *param_3) + +{ + int *piVar1; + char cVar2; + undefined1 uVar3; + void *pvVar4; + BSTR pOVar5; + undefined4 uVar6; + basic_ostream_> *pbVar7; + int iVar8; + int iVar9; + UINT UVar10; + OLECHAR *psz; + undefined4 *puVar11; + BSTR pOVar12; + long lVar13; + long lVar14; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var15; + undefined4 uVar16; + char *pcVar17; + undefined1 local_74 [4]; + BSTR local_70; + long *local_6c; + int local_68; + long local_64; + BSTR local_60; + BSTR local_5c; + BSTR local_58; + char local_51; + undefined1 local_50 [20]; + int *local_3c; + undefined4 local_38; + undefined4 local_34; + undefined4 local_30; + undefined4 local_2c; + undefined1 local_28; + byte bStack_27; + undefined2 uStack_26; + undefined2 uStack_24; + undefined2 uStack_22; + undefined2 uStack_20; + undefined2 uStack_1e; + undefined2 local_1c; + undefined2 uStack_1a; + char local_18; + undefined1 uStack_17; + undefined2 uStack_16; + uint local_14; + void *local_10; + undefined1 *puStack_c; + int local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_1016e64b; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_68 = param_1; + local_6c = param_3; + local_64 = -0x7fffbffb; + if (param_2 == (int *)0x0) { + local_64 = -0x7ff8ffa9; + goto LAB_100eb12e; + } + if (DAT_101d6458 != '\0') { + local_5c = (BSTR)0x0; + local_70 = (BSTR)0x0; + local_60 = (BSTR)0x0; + local_8._1_3_ = 0; + local_58 = (BSTR)0x0; + local_8._0_1_ = 3; + (**(code **)(*param_2 + 0x20))(param_2,&local_5c,local_14); + (**(code **)(*param_2 + 0x40))(param_2,&local_70); + cVar2 = FUN_10096ff0(&local_5c,&local_70,&local_60,&local_58); + if (cVar2 != '\0') { + FUN_1005f4f0(); + local_8 = CONCAT31(local_8._1_3_,4); + FUN_1003ec10(param_2); + FUN_1005f730(local_50); + (**(code **)(*local_3c + 0x24))(local_3c,local_60); + (**(code **)(*local_3c + 0x44))(local_3c,local_58); + FUN_1005f7e0(local_50); + param_2 = local_3c; + if (local_3c != (int *)0x0) { + (**(code **)(*local_3c + 4))(local_3c); + } + local_8._0_1_ = 3; + FUN_10021cc0(); + } + local_8._0_1_ = 2; + SysFreeString(local_58); + local_8._0_1_ = 1; + SysFreeString(local_60); + local_8 = (uint)local_8._1_3_ << 8; + SysFreeString(local_70); + local_8 = 0xffffffff; + SysFreeString(local_5c); + } + pvVar4 = operator_new(0xb4); + local_18 = (char)pvVar4; + uStack_17 = (undefined1)((uint)pvVar4 >> 8); + uStack_16 = (undefined2)((uint)pvVar4 >> 0x10); + local_8 = 5; + if (pvVar4 == (void *)0x0) { + pOVar5 = (BSTR)0x0; + } + else { + pOVar5 = (BSTR)FUN_10113b10(param_2,*(undefined4 *)(param_1 + 0x1c)); + } + local_8 = 0xffffffff; + local_5c = pOVar5; + cVar2 = FUN_10048d60(pOVar5 != (BSTR)0x0,0x837,"MxConnection.cpp"); + if (cVar2 != '\0') { + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var15 = endl_exref; + uVar6 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::PrebindReferenceEx - ENTER referenceString ",pOVar5 + 0xc + ," contextString ",pOVar5 + 0x1a); + uVar6 = FUN_1001dec0(uVar6); + uVar6 = FUN_1001dc00(uVar6); + pbVar7 = (basic_ostream_> *) + FUN_1001dec0(uVar6); + std::basic_ostream_>::operator<< + (pbVar7,p_Var15); + } + uVar16 = 0; + uVar6 = FUN_100db730(&local_5c); + FUN_100c3730(&local_1c,uVar6,uVar16); + if (local_18 == '\0') { + if (pOVar5 != (BSTR)0x0) { + (*(code *)**(undefined4 **)pOVar5)(1); + } + pOVar5 = *(BSTR *)(CONCAT22(uStack_1a,local_1c) + 0xc); + } + else { + uVar6 = FUN_1005f590(); + iVar8 = (**(code **)(**(int **)(param_1 + 0x9c) + 0x24))(*(int **)(param_1 + 0x9c),uVar6); + if (iVar8 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar8,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x45); + } + uVar6 = FUN_1005f6b0(); + piVar1 = *(int **)(param_1 + 0x9c); + iVar9 = (**(code **)(*piVar1 + 0x44))(piVar1,uVar6); + iVar8 = local_68; + if (iVar9 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar9,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x75); + } + local_70 = (BSTR)(param_1 + 0x9c); + FUN_1006b120(&local_60,&local_70); + pOVar12 = local_60; + if (local_60 != *(BSTR *)(*(int *)(iVar8 + 0x1c) + 400)) { + if (*(BSTR *)(pOVar5 + 0x56) != (BSTR)0x0) { + UVar10 = SysStringLen(*(BSTR *)(pOVar5 + 0x56)); + if (UVar10 != 0) goto LAB_100eaf01; + } + FUN_1003ec10(**(undefined4 **)(pOVar12 + 6)); + FUN_101129c0(3,"MxConnection.cpp",0x857); + puVar11 = (undefined4 *)FUN_10001920(local_74); + iVar8 = *(int *)(pOVar12 + 6); + *(undefined4 *)(iVar8 + 0x14) = *puVar11; + *(undefined4 *)(iVar8 + 0x18) = puVar11[1]; + } +LAB_100eaf01: + piVar1 = (int *)(*(int *)(CONCAT22(uStack_1a,local_1c) + 0xc) + 0x14); + *piVar1 = *piVar1 + 1; + pOVar5 = local_5c; + } + } + cVar2 = FUN_10048d60(pOVar5 != (BSTR)0x0,0x860,"MxConnection.cpp"); + if (cVar2 != '\0') { + pcVar17 = "MxConnection.cpp"; + uVar6 = 0x867; + uVar3 = FUN_100e18b0(pOVar5,local_6c); + cVar2 = FUN_10048d60(uVar3,uVar6,pcVar17); + if (cVar2 != '\0') { + psz = pOVar5 + 0xc; + local_51 = '\0'; + if (7 < *(uint *)(pOVar5 + 0x16)) { + psz = *(OLECHAR **)psz; + } + if (psz == (OLECHAR *)0x0) { + local_58 = (BSTR)0x0; + } + else { + local_58 = SysAllocString(psz); + if (local_58 == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + local_8 = 6; + uStack_1e = 0; + local_1c = 0; + uStack_26 = 0; + uStack_24 = 0; + uStack_22 = 0; + uStack_20 = 0; + local_34 = 0; + uStack_1a = 0; + local_18 = '\0'; + uStack_17 = 0; + uStack_16 = 0; + local_38 = 0; + local_28 = 0; + local_3c = (int *)((uint)bStack_27 << 8); + local_30 = 0; + local_2c = 0; + if (local_58 == (BSTR)0x0) { +LAB_100eafe4: + pOVar12 = local_58; + puVar11 = (undefined4 *)FUN_1005f730(local_50); + uVar6 = *puVar11; + local_28 = (undefined1)uVar6; + bStack_27 = (byte)((uint)uVar6 >> 8); + uStack_26 = (undefined2)((uint)uVar6 >> 0x10); + uStack_24 = (undefined2)puVar11[1]; + uStack_22 = (undefined2)((uint)puVar11[1] >> 0x10); + uVar6 = puVar11[4]; + uStack_20 = (undefined2)puVar11[2]; + uStack_1e = (undefined2)((uint)puVar11[2] >> 0x10); + local_1c = (undefined2)puVar11[3]; + uStack_1a = (undefined2)((uint)puVar11[3] >> 0x10); + local_18 = (char)uVar6; + uStack_17 = (undefined1)((uint)uVar6 >> 8); + uStack_16 = (undefined2)((uint)uVar6 >> 0x10); + cVar2 = FUN_10005710(); + if (cVar2 == '\0') { + FUN_1005f7e0(&local_3c); + FUN_10113d40(); + puVar11 = (undefined4 *)FUN_1005f730(local_50); + uVar6 = *puVar11; + local_28 = (undefined1)uVar6; + bStack_27 = (byte)((uint)uVar6 >> 8); + uStack_26 = (undefined2)((uint)uVar6 >> 0x10); + uStack_24 = (undefined2)puVar11[1]; + uStack_22 = (undefined2)((uint)puVar11[1] >> 0x10); + uVar6 = puVar11[4]; + uStack_20 = (undefined2)puVar11[2]; + uStack_1e = (undefined2)((uint)puVar11[2] >> 0x10); + local_1c = (undefined2)puVar11[3]; + uStack_1a = (undefined2)((uint)puVar11[3] >> 0x10); + local_18 = (char)uVar6; + uStack_17 = (undefined1)((uint)uVar6 >> 8); + uStack_16 = (undefined2)((uint)uVar6 >> 0x10); + cVar2 = FUN_10005710(); + if (cVar2 != '\0') { + uStack_24 = 0xffff; + uStack_20 = 0; + uStack_1e = 0; + local_1c = 0; + uStack_1a = 0; + local_18 = '\0'; + uStack_17 = 0; + FUN_10050df0(&uStack_24,pOVar5); + } + } + } + else { + FUN_100e25c0(&local_58,&local_3c,0xffffffff,*local_6c,&local_51); + if (local_51 == '\0') goto LAB_100eafe4; + *(undefined1 *)(pOVar5 + 0x58) = 1; + pOVar12 = local_58; + } + local_64 = 0; + local_8 = 0xffffffff; + SysFreeString(pOVar12); + } + } + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + lVar13 = *local_6c; + lVar14 = local_64; + p_Var15 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::PrebindReferenceEx - EXIT * preboundRefHandle ",lVar13, + L" hResult "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,lVar13); + pbVar7 = (basic_ostream_> *) + FUN_1001a0e0(pbVar7); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,lVar14); + std::basic_ostream_>::operator<< + (pbVar7,p_Var15); + } +LAB_100eb12e: + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_100e1920 at 100e1920 + +Signature: `undefined FUN_100e1920(void)` + +```c + +long FUN_100e1920(int param_1,long param_2,undefined4 param_3,int *param_4,uint *param_5) + +{ + int iVar1; + char cVar2; + undefined1 uVar3; + basic_ostream_> *pbVar4; + int *piVar5; + uint uVar6; + int *piVar7; + int iVar8; + long lVar9; + int *piVar10; + undefined4 uVar11; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var12; + char *pcVar13; + byte bStack_2b; + long local_18; + int local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_1016d37b; + local_10 = ExceptionList; + ExceptionList = &local_10; + piVar7 = (int *)0x0; + local_18 = -0x7fffbffb; + local_14 = 0; + cVar2 = FUN_100408d0(DAT_101d60b8 ^ (uint)&stack0xfffffffc); + piVar5 = param_4; + if (cVar2 != '\0') { + lVar9 = param_2; + piVar10 = param_4; + p_Var12 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::UserRegisterPreboundReference - ENTER preboundHandle ", + param_2,L" userData "); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar9); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(pbVar4); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,(long)piVar10); + std::basic_ostream_>::operator<< + (pbVar4,p_Var12); + } + pcVar13 = "MxConnection.cpp"; + uVar11 = 0x8cb; + uVar3 = FUN_100dd0d0(param_2,&local_14); + cVar2 = FUN_10048d60(uVar3,uVar11,pcVar13); + if (cVar2 == '\0') goto LAB_100e1c98; + param_4 = operator_new(0x1e8); + iVar8 = local_14; + local_8 = 0; + if (param_4 != (void *)0x0) { + piVar7 = (int *)FUN_1013bef0(*(undefined4 *)(param_1 + 0x2c),*(undefined4 *)(local_14 + 0x50),1, + param_3,piVar5,0,(uint)bStack_2b << 8,0,0,0,0,0, + *(undefined4 *)(local_14 + 0xac)); + } + local_8 = 0xffffffff; + param_4 = piVar7; + cVar2 = FUN_10048d60(piVar7 != (int *)0x0,0x8d2,"MxConnection.cpp"); + if (cVar2 != '\0') { + iVar8 = *(int *)(param_1 + 0x2c); + piVar5 = (int *)FUN_100dca80(¶m_3,¶m_4); + iVar1 = *piVar5; + if (iVar1 == *(int *)(iVar8 + 0x168)) { + uVar11 = FUN_1002d030(¶m_4); + FUN_100dbbf0(¶m_4,iVar1,uVar11); + cVar2 = FUN_10048d60(param_4 != *(int **)(iVar8 + 0x168),0x8e1,"MxConnection.cpp"); + iVar8 = local_14; + if (cVar2 == '\0') { + if (piVar7 != (int *)0x0) { + (**(code **)*piVar7)(1); + } + piVar7 = (int *)0x0; + local_18 = -0x7ff8fff2; + iVar8 = local_14; + } + } + else { + if (piVar7 != (int *)0x0) { + (**(code **)*piVar7)(1); + } + piVar7 = *(int **)(iVar1 + 0xc); + iVar8 = local_14; + } + } + cVar2 = FUN_10048d60(piVar7 != (int *)0x0,0x8fb,"MxConnection.cpp"); + if (cVar2 == '\0') goto LAB_100e1c98; + uVar6 = FUN_10056e00(); + cVar2 = FUN_10048d60(0 < (int)uVar6,0x904,"MxConnection.cpp"); + if (cVar2 == '\0') goto LAB_100e1c98; + param_4 = (int *)(param_1 + 0x4c); + if ((uint)(*(int *)(param_1 + 0x50) - *(int *)(param_1 + 0x4c) >> 2) <= uVar6) { + FUN_100dcba0(uVar6 + 100); + } + cVar2 = FUN_10048d60(uVar6 < (uint)(param_4[1] - *param_4 >> 2),0x910,"MxConnection.cpp"); + if (cVar2 == '\0') goto LAB_100e1c98; + iVar1 = *(int *)(iVar8 + 0xa8); + if (((iVar1 == 1) || (iVar1 == 2)) || (*(char *)(iVar8 + 0xb0) != '\0')) { + *(undefined1 *)(iVar8 + 0xb0) = 0; + cVar2 = FUN_1009f9a0(); + if (cVar2 == '\0') { + uVar11 = *(undefined4 *)(iVar8 + 0x50); + uVar3 = *(undefined1 *)(iVar8 + 0x10); +LAB_100e1c66: + FUN_10141bb0(uVar3,uVar11); + goto LAB_100e1c6d; + } + FUN_101392c0(9,"MxConnection.cpp",0x91e); + pcVar13 = "MxConnection.cpp"; + uVar11 = 0x91f; + uVar3 = FUN_1005afb0(iVar8,piVar7); + FUN_10048d60(uVar3,uVar11,pcVar13); + } + else if (iVar1 == 4) { +LAB_100e1c6d: + FUN_10144630(); + } + else if (iVar1 == 3) { + pcVar13 = "MxConnection.cpp"; + uVar11 = 0x936; + uVar3 = FUN_10141bb0(*(undefined1 *)(iVar8 + 0x10),*(undefined4 *)(iVar8 + 0x50)); + FUN_10048d60(uVar3,uVar11,pcVar13); + } + else { + cVar2 = FUN_1009f9c0(); + if (cVar2 != '\0') { + uVar11 = *(undefined4 *)(iVar8 + 0x50); + uVar3 = *(undefined1 *)(iVar8 + 0x10); + goto LAB_100e1c66; + } + } + *(int **)(*param_4 + uVar6 * 4) = piVar7; + *param_5 = uVar6; + piVar7[0x42] = piVar7[0x42] + 1; + (**(code **)piVar7[1])(); + local_18 = 0; +LAB_100e1c98: + cVar2 = FUN_100408d0(); + if (cVar2 == '\0') { + ExceptionList = local_10; + return local_18; + } + uVar6 = *param_5; + lVar9 = local_18; + p_Var12 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::UserRegisterPreboundReference - EXIT pMxReferenceHandle ", + uVar6,L" hResult "); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,uVar6); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(pbVar4); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar9); + std::basic_ostream_>::operator<< + (pbVar4,p_Var12); + ExceptionList = local_10; + return local_18; +} + + +``` + +## FUN_100df1a0 at 100df1a0 + +Signature: `undefined FUN_100df1a0(void)` + +```c + +long FUN_100df1a0(int param_1,int param_2) + +{ + int iVar1; + char cVar2; + basic_ostream_> *pbVar3; + int *piVar4; + undefined4 uVar5; + undefined4 *puVar6; + long lVar7; + int iVar8; + long lVar9; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var10; + undefined4 *local_c; + long local_8; + + puVar6 = (undefined4 *)0x0; + local_8 = -0x7ff8ffa9; + local_c = (undefined4 *)0x0; + cVar2 = FUN_100408d0(); + iVar1 = param_2; + if (cVar2 != '\0') { + iVar8 = param_2; + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::UnregisterPreboundReference - ENTER preboundRefHandle "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,iVar8); + std::basic_ostream_>::operator<< + (pbVar3,p_Var10); + } + iVar8 = *(int *)(param_1 + 0x4c); + uVar5 = 0; + if ((iVar1 < *(int *)(param_1 + 0x50) - iVar8 >> 2) && (*(int *)(iVar8 + iVar1 * 4) != 0)) { + puVar6 = *(undefined4 **)(iVar8 + iVar1 * 4); + piVar4 = puVar6 + 5; + *piVar4 = *piVar4 + -1; + if (*piVar4 == 0) { + (**(code **)*puVar6)(1); + } + puVar6 = *(undefined4 **)(*(int *)(param_1 + 0x4c) + iVar1 * 4); + *(undefined4 *)(*(int *)(param_1 + 0x4c) + iVar1 * 4) = 0; + param_2 = iVar1; + local_c = puVar6; + FUN_100421a0(¶m_2); + uVar5 = 1; + } + cVar2 = FUN_10048d60(uVar5,0x8a2,"MxConnection.cpp"); + lVar7 = local_8; + if (cVar2 != '\0') { + if (puVar6[5] == 1) { + piVar4 = (int *)FUN_100484c0(¶m_2,&local_c); + iVar1 = *piVar4; + cVar2 = FUN_10048d60(iVar1 != *(int *)(*(int *)(param_1 + 0x1c) + 0x180),0x8ad, + "MxConnection.cpp"); + lVar7 = local_8; + if (cVar2 != '\0') { + FUN_100382e0(¶m_2,iVar1); + piVar4 = puVar6 + 5; + *piVar4 = *piVar4 + -1; + if (*piVar4 == 0) { + (**(code **)*puVar6)(1); + } + lVar7 = 0; + } + } + else { + local_8 = 0; + lVar7 = local_8; + } + } + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + lVar9 = lVar7; + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x14), + L"MxConnection::UnregisterPreboundReference - EXIT hResult "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,lVar9); + std::basic_ostream_>::operator<< + (pbVar3,p_Var10); + } + return lVar7; +} + + +``` + +## FUN_10113d40 at 10113d40 + +Signature: `undefined FUN_10113d40(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __fastcall FUN_10113d40(int param_1) + +{ + char cVar1; + uint uVar2; + undefined4 uVar3; + basic_ostream_> *pbVar4; + UINT UVar5; + char *pcVar6; + OLECHAR *psz; + int iVar7; + undefined4 *puVar8; + wchar_t *pwVar9; + int *piVar10; + DWORD DVar11; + wchar_t *pwVar12; + int iVar13; + undefined4 ****ppppuVar14; + int *piVar15; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var16; + wchar_t **ppwVar17; + undefined4 uVar18; + undefined4 local_1410; + undefined4 local_140c; + BSTR local_1408; + wchar_t *local_1404; + byte local_13fe; + byte local_13fd [5001]; + void *local_74 [4]; + undefined4 local_64; + uint local_60; + undefined4 ***local_58 [4]; + undefined4 local_48; + uint local_44; + undefined1 local_3c [4]; + undefined4 local_38; + BSTR local_2c; + undefined4 local_28; + undefined2 local_24; + short sStack_22; + undefined2 local_20; + undefined2 uStack_1e; + undefined4 local_1c; + undefined4 local_18; + uint local_14; + void *local_10; + undefined1 *puStack_c; + int local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_101727e7; + local_10 = ExceptionList; + uVar2 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_14 = uVar2; + cVar1 = FUN_100408d0(uVar2); + if (cVar1 != '\0') { + p_Var16 = endl_exref; + uVar3 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x20), + L"PreboundReference::Resolve - referenceString ",param_1 + 0x18, + L" contextString ",param_1 + 0x34); + uVar3 = FUN_1001dec0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + pbVar4 = (basic_ostream_> *) + FUN_1001dec0(uVar3); + std::basic_ostream_>::operator<< + (pbVar4,p_Var16); + } + cVar1 = FUN_100408d0(uVar2); + if (cVar1 != '\0') { + uVar3 = FUN_1002f5f0(*(undefined4 *)(param_1 + 0x50)); + p_Var16 = endl_exref; + uVar3 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x20), + L"PreboundReference::Resolve - ENTER mxReference ",uVar3); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar3); + std::basic_ostream_>::operator<< + (pbVar4,p_Var16); + } + if ((*(BSTR *)(param_1 + 0xac) == (BSTR)0x0) || + (UVar5 = SysStringLen(*(BSTR *)(param_1 + 0xac)), UVar5 == 0)) { + pcVar6 = (char *)FUN_1005f730(&local_28); + if (*pcVar6 == '\0') { + local_13fe = local_13fe & 0xfe; + local_44 = 7; + local_48 = 0; + local_58[0] = (undefined4 ***)((uint)local_58[0] & 0xffff0000); + local_60 = 7; + local_64 = 0; + local_74[0] = (void *)((uint)local_74[0] & 0xffff0000); + local_8._1_3_ = 0; + local_8._0_1_ = 1; + psz = (OLECHAR *)(param_1 + 0x18); + local_1410 = 0; + local_140c = 0; + if (7 < *(uint *)(param_1 + 0x2c)) { + psz = *(OLECHAR **)psz; + } + if (psz == (OLECHAR *)0x0) { + local_1404 = (wchar_t *)0x0; + } + else { + local_1404 = SysAllocString(psz); + if (local_1404 == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + pwVar12 = local_1404; + local_8._0_1_ = 2; + local_13fd[0] = 0; + iVar7 = _wcsnicmp(local_1404,L"MyPlatform.",0xb); + if ((iVar7 == 0) && (*(int *)(param_1 + 0x44) == 0)) { + FUN_1005fef0(); + local_8._0_1_ = 3; + uVar3 = FUN_1005ff70(); + FUN_1005f700(uVar3); + uVar3 = FUN_1005f6b0(); + FUN_10014740(uVar3); + local_8._0_1_ = 4; + SysFreeString(local_2c); + local_8._0_1_ = 2; + FUN_10028fc0(); + pwVar12 = local_1404; + } + else { + cVar1 = FUN_10134a10(pwVar12); + if ((cVar1 != '\0') && + (((*(int *)(param_1 + 0x44) != 0 && (iVar7 = _wcsnicmp(pwVar12,L"MyArea.",7), iVar7 != 0) + ) && (iVar7 = _wcsnicmp(pwVar12,L"MyContainer.",0xc), iVar7 != 0)))) { + piVar10 = (int *)(param_1 + 0x34); + local_13fd[0] = 1; + if (7 < *(uint *)(param_1 + 0x48)) { + piVar10 = (int *)*piVar10; + } + FUN_10014740(piVar10); + pwVar12 = local_1404; + } + } + puVar8 = (undefined4 *)FUN_1005f730(local_3c); + local_28 = *puVar8; + local_24 = (undefined2)puVar8[1]; + sStack_22 = (short)((uint)puVar8[1] >> 0x10); + local_20 = (undefined2)puVar8[2]; + uStack_1e = (undefined2)((uint)puVar8[2] >> 0x10); + local_1c = puVar8[3]; + local_18 = puVar8[4]; + *(undefined1 *)(param_1 + 0x10) = 0; + cVar1 = FUN_10089cb0(pwVar12,&local_28,&local_1408,&local_13fe,local_58,local_74,&local_1410,1 + ); + if (cVar1 != '\0') { + pwVar9 = (wchar_t *)(param_1 + 0x18); + if (7 < *(uint *)(param_1 + 0x2c)) { + pwVar9 = *(wchar_t **)pwVar9; + } + iVar7 = _wcsnicmp(pwVar9,L"MyHost.",7); + if ((iVar7 != 0) || (sStack_22 != 1)) { + *(undefined1 *)(param_1 + 0x10) = 1; + ppppuVar14 = (undefined4 ****)local_58[0]; + if (local_44 < 8) { + ppppuVar14 = local_58; + } + iVar7 = (**(code **)(**(int **)(param_1 + 0x50) + 0x2c)) + (*(int **)(param_1 + 0x50),ppppuVar14); + if (iVar7 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar7,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x55); + } + if (local_13fd[0] != 0) { + pwVar9 = (wchar_t *)(param_1 + 0x18); + if (7 < *(uint *)(param_1 + 0x2c)) { + pwVar9 = *(wchar_t **)pwVar9; + } + iVar7 = _wcsnicmp(pwVar9,L"MyEngine.",9); + if (iVar7 == 0) { + cVar1 = FUN_100408d0(); + if (cVar1 != '\0') { + piVar10 = (int *)(param_1 + 0x34); + if (7 < *(uint *)(param_1 + 0x48)) { + piVar10 = (int *)*piVar10; + } + piVar15 = (int *)(param_1 + 0x18); + if (7 < *(uint *)(param_1 + 0x2c)) { + piVar15 = (int *)*piVar15; + } + p_Var16 = endl_exref; + uVar3 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x20), + L"PreboundReference::Resolve() - Correcting context info for ref string " + ,piVar15,L" Context ",piVar10); + uVar3 = FUN_1001a0e0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar3); + std::basic_ostream_>:: + operator<<(pbVar4,p_Var16); + } + sStack_22 = 1; + local_20 = 0; + FUN_1008fc40(0); + FUN_1008fc70(0); + } + } + uVar3 = FUN_1008f8b0(local_3c,local_28,CONCAT22(sStack_22,local_24), + CONCAT22(uStack_1e,local_20),local_1c,local_18,local_1408); + FUN_1005f7e0(uVar3); + FUN_1005f930(&local_1408); + local_13fd[0] = local_13fe & 1; + FUN_1008fca0(local_13fd); + cVar1 = FUN_10113130(); + if (cVar1 != '\0') { + local_8._0_1_ = 1; + SysFreeString(pwVar12); + local_8 = (uint)local_8._1_3_ << 8; + FUN_10024360(); + local_8 = 0xffffffff; + FUN_10024360(); + goto LAB_101144f6; + } + cVar1 = FUN_100408d0(); + if (cVar1 != '\0') { + uVar3 = FUN_1002f5f0(*(undefined4 *)(param_1 + 0x50)); + p_Var16 = endl_exref; + uVar3 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x20), + L"PreboundReference::Resolve - Found mxReference ",uVar3, + L" in object handle cache"); + uVar3 = FUN_1001a0e0(uVar3); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar3); + std::basic_ostream_>::operator<< + (pbVar4,p_Var16); + } + } + } + local_8._0_1_ = 1; + SysFreeString(pwVar12); + local_8 = (uint)local_8._1_3_ << 8; + if (7 < local_60) { + operator_delete(local_74[0]); + } + local_60 = 7; + local_64 = 0; + local_74[0] = (void *)((uint)local_74[0] & 0xffff0000); + local_8 = 0xffffffff; + if (7 < local_44) { + operator_delete(local_58[0]); + } + local_48 = 0; + local_44 = 7; + local_58[0] = (undefined4 ***)((uint)local_58[0] & 0xffff0000); + } + pcVar6 = (char *)FUN_1005f730(&local_28); + if (*pcVar6 == '\0') { + local_1404 = operator_new(8); + if (local_1404 == (BSTR)0x0) { + local_1408 = (BSTR)0x0; + } + else { + *(undefined ***)local_1404 = CRefAdapter::vftable; + *(undefined ***)local_1404 = CPreboundReferenceAdapter::vftable; + *(int *)(local_1404 + 2) = param_1; + local_1408 = local_1404; + } + local_8 = 0xffffffff; + cVar1 = FUN_10048d60(local_1408 != (BSTR)0x0,0xbe,"preboundreference.cpp"); + if (cVar1 != '\0') { + *(int *)(param_1 + 0x14) = *(int *)(param_1 + 0x14) + 1; + *(undefined4 *)(param_1 + 0xa8) = 1; + DVar11 = GetTickCount(); + local_38 = CONCAT22(local_38._2_2_,0xffff); + local_2c = (BSTR)((uint)local_2c & 0xffff0000); + FUN_1008f150(local_1408,0,0,0,0,local_38,1,0,local_2c,0,DVar11); + } + } + else { + iVar7 = FUN_1005f730(&local_28); + if (*(short *)(iVar7 + 10) == 0) { + pwVar12 = (wchar_t *)(param_1 + 0x18); + if (7 < *(uint *)(param_1 + 0x2c)) { + pwVar12 = *(wchar_t **)pwVar12; + } + iVar7 = _wcsnicmp(pwVar12,L"MyPlatform.",0xb); + if ((iVar7 == 0) && (iVar7 = FUN_1005f730(&local_28), *(short *)(iVar7 + 4) != 1)) { + local_1404 = (BSTR)0x0; + local_8 = 8; + ppwVar17 = &local_1404; + iVar7 = FUN_1005f730(local_3c); + FUN_10015b40(*(undefined2 *)(iVar7 + 2),ppwVar17); + UVar5 = SysStringLen(local_1404); + if (UVar5 == 0) { + iVar7 = FUN_10022ff0(); + if ((*(int *)(iVar7 + 0xac) == 0) && (iVar13 = FUN_1002f080(), iVar13 == 0)) { + uVar3 = 0; + } + else { + uVar3 = *(undefined4 *)(iVar7 + 0xac); + } + uVar18 = 0; + FUN_10022ff0(uVar3,0); + cVar1 = FUN_10022ba0(uVar3,uVar18); + if (cVar1 != '\0') { + iVar7 = FUN_1005f730(local_3c); + uVar3 = FUN_10022ff0(L"PreboundReference::Resolve() - GetPlatformNameFromId returned a NULL platform name for id %d" + ,*(undefined2 *)(iVar7 + 2)); + FUN_10022cb0(uVar3); + } + } + puVar8 = (undefined4 *)FUN_1005f730(local_3c); + local_28 = *puVar8; + local_20 = (undefined2)puVar8[2]; + uStack_1e = (undefined2)((uint)puVar8[2] >> 0x10); + local_1c = puVar8[3]; + local_18 = puVar8[4]; + local_24 = 1; + sStack_22 = 1; + FUN_1005f7e0(&local_28); + uVar3 = FUN_1005f6b0(); + FUN_10049370(uVar3); + FUN_1005f700(local_1404); + SysFreeString(local_1404); + local_1404 = (BSTR)0x0; + *(undefined1 *)(param_1 + 0x6c) = 1; + local_8 = 0xffffffff; + SysFreeString((BSTR)0x0); + } + FUN_101131d0(); + } + } + cVar1 = FUN_100408d0(); + if (cVar1 != '\0') { + p_Var16 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x20), + L"PreboundReference::Resolve - EXIT"); + std::basic_ostream_>::operator<< + (pbVar4,p_Var16); + } + } +LAB_101144f6: + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_101155a0 at 101155a0 + +Signature: `undefined FUN_101155a0(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __thiscall FUN_101155a0(undefined4 *param_1,undefined4 param_2) + +{ + int *piVar1; + char cVar2; + uint uVar3; + undefined4 uVar4; + int iVar5; + char *pcVar6; + basic_ostream_> *pbVar7; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var8; + undefined1 *local_145c; + undefined1 local_1458; + byte bStack_1457; + undefined2 uStack_1456; + undefined2 local_1454; + undefined2 uStack_1452; + undefined2 uStack_1450; + undefined2 local_144e; + undefined2 uStack_144c; + undefined2 uStack_144a; + undefined2 local_1448; + ushort uStack_1446; + char local_1441; + undefined1 local_b8 [144]; + int local_28; + undefined4 local_24; + undefined4 local_20; + undefined4 local_1c; + undefined4 local_18; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_101729db; + local_10 = ExceptionList; + uVar3 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_14 = uVar3; + FUN_1003ec10(param_2); + local_1441 = param_1[0x29] == 1; + cVar2 = FUN_100408d0(uVar3); + if (cVar2 != '\0') { + uVar4 = FUN_1002f5f0(param_2); + uVar4 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L"PreboundReference::OnPlatformResolveReferenceResults",uVar4); + FUN_1001a0e0(uVar4); + } + iVar5 = FUN_1005f730(&local_28); + if (*(short *)(iVar5 + 10) == 0) { + local_1454 = 0xffff; + local_1448 = 2; + param_1[0x2a] = 0; + param_1[0x23] = CONCAT22(uStack_1452,0xffff); + param_1[0x24] = 3; + param_1[0x25] = 0; + param_1[0x26] = CONCAT22(uStack_1446,2); + pcVar6 = strrchr("preboundreference.cpp",0x5c); + if (pcVar6 == (char *)0x0) { + pcVar6 = "preboundreference.cpp"; + } + else { + pcVar6 = pcVar6 + 1; + } + FUN_10112a00(pcVar6); + param_1[0x28] = 0x327; + if (local_1441 == '\0') { + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L"Local platform failed to resolve reference - starting over."); + } + } + else { + param_1[0x29] = 2; + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var8 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x1c), + L"PreboundReference - local platform resolution - failed."); + std::basic_ostream_>::operator<< + (pbVar7,p_Var8); + } + } + local_144e = 0; + uStack_144c = 0; + uStack_1452 = 0; + uStack_1450 = 0; + local_20 = 0; + uStack_1456 = 0; + local_1454 = 0; + uStack_144a = 0; + local_1448 = 0; + uStack_1446 = 0; + local_24 = 0; + local_1458 = 0; + local_28 = (uint)bStack_1457 << 8; + local_1c = 0; + local_18 = 0; + FUN_1005f7e0(&local_28); + } + else { + FUN_1004c220(); + local_8 = 0; + FUN_1004c320(param_1[0x14]); + local_145c = local_b8; + FUN_10073b80(&local_145c,0); + param_1[0x2a] = 3; + param_1[0x29] = 0; + FUN_10114620(); + local_1454 = 0xffff; + local_1448 = 0; + param_1[0x23] = CONCAT22(uStack_1452,0xffff); + param_1[0x24] = 0; + param_1[0x25] = 0; + param_1[0x26] = (uint)uStack_1446 << 0x10; + pcVar6 = strrchr("preboundreference.cpp",0x5c); + if (pcVar6 == (char *)0x0) { + pcVar6 = "preboundreference.cpp"; + } + else { + pcVar6 = pcVar6 + 1; + } + FUN_10112a00(pcVar6); + param_1[0x28] = 0x314; + if (param_1[0x29] == 1) { + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var8 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x1c), + L"PreboundReference - local platform resolution - success."); + std::basic_ostream_>::operator<< + (pbVar7,p_Var8); + } + } + else { + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L"Local platform resolved reference."); + } + } + iVar5 = FUN_1005f730(&local_28); + FUN_10040470(*(undefined2 *)(iVar5 + 2)); + local_8 = 0xffffffff; + FUN_1002e080(); + } + (**(code **)(param_1[1] + 4))(); + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + std::basic_ostream_>::operator<< + (*(basic_ostream_> **) + (DAT_101d6474 + 0x38),endl_exref); + } + if ((param_1[0x2a] != 1) && (param_1[0x2a] != 2)) { + FUN_10050df0(param_1 + 0x23,param_1); + } + if (local_1441 != '\0') { + piVar1 = param_1 + 5; + *piVar1 = *piVar1 + -1; + if (*piVar1 == 0) { + (**(code **)*param_1)(1); + } + } + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10114a90 at 10114a90 + +Signature: `undefined FUN_10114a90(void)` + +```c + +void __thiscall +FUN_10114a90(undefined4 *param_1,int param_2,int *param_3,ushort param_4,undefined4 param_5, + void *param_6,short *param_7) + +{ + char cVar1; + uint uVar2; + undefined4 uVar3; + basic_ostream_> *pbVar4; + int iVar5; + undefined4 *puVar6; + wchar_t *pwVar7; + wchar_t *pwVar8; + size_t _MaxCount; + DWORD DVar9; + int iVar10; + int *piVar11; + undefined2 uVar12; + wchar_t _Ch; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var13; + undefined4 uVar14; + undefined1 local_ba4 [20]; + undefined1 local_b90 [20]; + undefined4 local_b7c; + undefined4 local_b74; + void *local_b70; + short *local_b6c; + undefined4 *local_b68; + int *local_b64; + char local_b5e; + char local_b5d; + undefined4 *local_b5c [391]; + wchar_t local_540 [520]; + undefined1 local_130 [20]; + undefined1 local_11c [20]; + undefined1 local_108 [60]; + undefined1 local_cc [20]; + undefined4 local_b8 [36]; + undefined4 local_28; + undefined4 local_24; + undefined4 local_20; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_101729a5; + local_10 = ExceptionList; + uVar2 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_b5c[0] = (undefined4 *)(uint)param_4; + local_b74 = param_5; + local_b70 = param_6; + local_b6c = param_7; + local_14 = uVar2; + cVar1 = FUN_100408d0(uVar2); + if (cVar1 != '\0') { + local_20 = *(undefined4 *)(local_b6c + 2); + swprintf_s(local_540,0x104,L"", + (int)(short)*(undefined4 *)local_b6c,local_20,*(undefined4 *)(local_b6c + 4), + (int)local_b6c[6]); + local_b64 = (int *)FUN_10004010(local_b74,local_b70); + local_b5c[0] = (undefined4 *)FUN_100040a0(local_b5c[0]); + uVar3 = FUN_100300d0(param_3); + iVar5 = param_2; + p_Var13 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x20), + L"PreboundReference::OnSetAttributeResult - ENTER correlationId ",param_2, + L" pValue ",uVar3,L" quality ",local_b5c[0],L" timestamp ",local_b64, + L" mxStatus ",local_540); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,iVar5); + uVar3 = FUN_1001a0e0(pbVar4); + uVar3 = FUN_1001a0e0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar3); + std::basic_ostream_>::operator<< + (pbVar4,p_Var13); + } + if (param_2 == 0) { + if (*local_b6c == -1) { + iVar5 = (**(code **)(*param_3 + 0x60))(param_3,&local_b68); + iVar5 = FUN_10048e60(iVar5 == 0,iVar5,300,"preboundreference.cpp"); + if (iVar5 == 0) goto LAB_1011543c; + if (local_b68 != (undefined4 *)0x0) { + local_b64 = (int *)0x0; + local_8 = 1; + uVar12 = 0x1011; + iVar5 = (**(code **)(*param_3 + 0x80))(param_3,&local_b64); + if (iVar5 == 0) { + FUN_1008e710(local_b64); + local_8._0_1_ = 2; + FUN_10112f20(local_b90); + local_8._0_1_ = 1; + FUN_10021cc0(); + FUN_1005f730(&local_28); + uVar3 = CONCAT22(uVar12,(undefined2)local_20); + cVar1 = FUN_100057b0(local_28,local_24,uVar3,0x138,"preboundreference.cpp"); + uVar12 = (undefined2)((uint)uVar3 >> 0x10); + if (cVar1 != '\0') { + FUN_1004c220(); + local_8._0_1_ = 3; + FUN_1004c320(param_1[0x14]); + local_b5c[0] = local_b8; + uVar12 = 0x1011; + FUN_10073b80(local_b5c,0); + iVar5 = FUN_1005f730(local_130); + FUN_10040470(*(undefined2 *)(iVar5 + 2)); + local_8._0_1_ = 1; + FUN_1002e080(); + } + cVar1 = FUN_100057b0(local_28,local_24,CONCAT22(uVar12,(undefined2)local_20),0x144, + "preboundreference.cpp"); + if (cVar1 == '\0') { + param_1[0x2a] = 4; + } + else { + iVar5 = FUN_1005f730(local_11c); + if (*(short *)(iVar5 + 10) == 0) { + FUN_101131d0(); + } + else { + param_1[0x2a] = 3; + param_1[0x29] = 0; + FUN_10114620(); + } + } + } + local_8 = 0xffffffff; + if (local_b64 != (int *)0x0) { + (**(code **)(*local_b64 + 8))(local_b64); + } + goto LAB_1011543c; + } + } + else if (((DAT_101d8c40 == 2) && (param_1[0x29] == 0)) && + (*(ushort *)(param_1[0x19] + 0x2ac) - 0x7c17 < 0x3e9)) { + cVar1 = FUN_100408d0(uVar2); + if (cVar1 != '\0') { + uVar3 = FUN_10003fc0(*(undefined4 *)local_b6c,*(undefined4 *)(local_b6c + 2), + *(undefined4 *)(local_b6c + 4),*(undefined4 *)(local_b6c + 6)); + p_Var13 = endl_exref; + uVar3 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x1c), + L"PreboundReference - attempting local platform <",param_1 + 6, + L"> - status ",uVar3); + uVar3 = FUN_1001dec0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar3); + std::basic_ostream_>::operator<< + (pbVar4,p_Var13); + } + param_1[5] = param_1[5] + 1; + param_1[0x2a] = 1; + param_1[0x29] = 1; + FUN_10112cd0(); + goto LAB_1011543c; + } +LAB_10115432: + param_1[0x2a] = 4; + goto LAB_1011543c; + } + if (param_2 != 1) goto LAB_1011543c; + param_1[0x2a] = 6; + if (*local_b6c != -1) { + if (*(char *)(param_1 + 0x1b) != '\0') { + if ((uint)param_1[0x21] < 8) { + puVar6 = param_1 + 0x1c; + } + else { + puVar6 = (undefined4 *)param_1[0x1c]; + } + iVar5 = (**(code **)(*(int *)param_1[0x14] + 0x44))((int *)param_1[0x14],puVar6); + if (iVar5 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar5,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x75); + } + *(undefined1 *)(param_1 + 0x1b) = 0; + } + if (*(int *)(local_b6c + 2) == 3) { +LAB_1011502e: + param_1[0x2a] = 6; + goto LAB_1011543c; + } + if ((*(int *)(local_b6c + 2) == 4) && (local_b6c[6] == 0x1f42)) { + local_b70 = operator_new(8); + local_8 = 0xb; + if (local_b70 == (void *)0x0) { + local_b5c[0] = (undefined4 *)0x0; + } + else { + local_b5c[0] = (undefined4 *)FUN_10112b50(param_1); + } + local_8 = 0xffffffff; + cVar1 = FUN_10048d60(local_b5c[0] != (undefined4 *)0x0,0x23b,"preboundreference.cpp"); + if (cVar1 != '\0') { + uVar3 = FUN_10016fd0(); + FUN_1005f7e0(uVar3); + FUN_1004c220(); + local_8 = 0xc; + FUN_1004c320(param_1[0x14]); + local_b68 = local_b8; + FUN_10073b80(&local_b68,0); + param_1[5] = param_1[5] + 1; + param_1[0x2a] = 1; + DVar9 = GetTickCount(); + FUN_1008f150(local_b5c[0],0,0,0,0,*(undefined4 *)local_b6c,*(undefined4 *)(local_b6c + 2), + *(undefined4 *)(local_b6c + 4),*(undefined4 *)(local_b6c + 6),0,DVar9); + local_8 = 0xffffffff; + FUN_1002e080(); + } + goto LAB_1011543c; + } + goto LAB_10115432; + } + iVar5 = (**(code **)(*param_3 + 0x60))(param_3,&local_b68); + iVar5 = FUN_10048e60(iVar5 == 0,iVar5,0x19d,"preboundreference.cpp"); + if (iVar5 == 0) goto LAB_1011543c; + if (local_b68 == (undefined4 *)0x0) goto LAB_1011502e; + local_b64 = (int *)0x0; + local_8 = 6; + uVar12 = 0x1011; + iVar5 = (**(code **)(*param_3 + 0x80))(param_3,&local_b64); + if (iVar5 == 0) { + FUN_1008e710(local_b64); + local_8._0_1_ = 7; + FUN_10112f20(local_ba4); + local_8 = CONCAT31(local_8._1_3_,6); + FUN_10021cc0(); + if (*(char *)(param_1 + 0x1b) != '\0') { + piVar11 = param_1 + 0x1c; + if (7 < (uint)param_1[0x21]) { + piVar11 = (int *)*piVar11; + } + FUN_1005f700(piVar11); + *(undefined1 *)(param_1 + 0x1b) = 0; + } + iVar5 = FUN_1005f730(local_108); + if (*(short *)(iVar5 + 10) == 0) { + local_b5d = '\0'; + local_b5e = '\0'; + puVar6 = (undefined4 *)FUN_1005f730(local_cc); + cVar1 = FUN_100057b0(*puVar6,puVar6[1],CONCAT22(uVar12,*(undefined2 *)(puVar6 + 2)),0x1c1, + "preboundreference.cpp"); + if (cVar1 == '\0') { + if (*(char *)(param_1 + 4) != '\0') { + FUN_1004c220(); + local_8._0_1_ = 8; + FUN_1004c320(param_1[0x14]); + local_b5c[0] = local_b8; + FUN_10073b80(local_b5c,0); + local_8 = CONCAT31(local_8._1_3_,6); + FUN_1002e080(); + } + local_b5e = '\x01'; + } + else { + pwVar7 = (wchar_t *)FUN_1005f590(); + cVar1 = FUN_10134a10(pwVar7); + if (cVar1 == '\0') { + pwVar8 = wcschr(pwVar7,L'.'); + if ((pwVar8 != (wchar_t *)0x0) && + (_MaxCount = (int)pwVar8 - (int)pwVar7 >> 1, _MaxCount != 0)) { + pwVar8 = (wchar_t *)FUN_1005f610(); + iVar5 = _wcsnicmp(pwVar7,pwVar8,_MaxCount); + if (iVar5 == 0) { + _Ch = L'.'; + pwVar7 = (wchar_t *)FUN_1005f660(); + pwVar7 = wcschr(pwVar7,_Ch); + if (pwVar7 == (wchar_t *)0x0) goto LAB_10114e2f; + } + local_b5d = '\x01'; + } + } + } +LAB_10114e2f: + if ((*(char *)(param_1 + 4) == '\0') || ((local_b5d == '\0' && (local_b5e == '\0')))) { + param_1[0x2a] = 4; + } + else { + local_b70 = operator_new(8); + local_8._0_1_ = 9; + if (local_b70 == (void *)0x0) { + local_b5c[0] = (undefined4 *)0x0; + } + else { + local_b5c[0] = (undefined4 *)FUN_10112b50(param_1); + } + local_8 = CONCAT31(local_8._1_3_,6); + cVar1 = FUN_10048d60(local_b5c[0] != (undefined4 *)0x0,0x1ee,"preboundreference.cpp"); + if (cVar1 == '\0') { + param_1[0x2a] = 4; + iVar5 = FUN_10022ff0(); + if (*(int *)(iVar5 + 0xac) == 0) { + iVar10 = FUN_1002f080(); + if (iVar10 != 0) goto LAB_10114f66; + uVar3 = 0; + } + else { +LAB_10114f66: + uVar3 = *(undefined4 *)(iVar5 + 0xac); + } + uVar14 = 0; + FUN_10022ff0(uVar3,0); + cVar1 = FUN_10022ba0(uVar3,uVar14); + if (cVar1 != '\0') { + uVar3 = FUN_1005f590(); + uVar3 = FUN_10022ff0(L"PreboundReference::OnSetAttributeResult unable to crreate CPreboundReferenceAdapter for ref %s" + ,uVar3); + FUN_10022cb0(uVar3); + } + } + else { + *(undefined1 *)(param_1 + 4) = 0; + uVar3 = FUN_10016fd0(); + FUN_1005f7e0(uVar3); + FUN_1008fc40(&DAT_1017a514); + FUN_1008fc70(&DAT_1017a514); + param_1[5] = param_1[5] + 1; + param_1[0x2a] = 1; + DVar9 = GetTickCount(); + local_b70 = (void *)CONCAT22(local_b70._2_2_,0x1f42); + local_b7c = (uint)local_b7c._2_2_ << 0x10; + FUN_1008f150(local_b5c[0],0,0,0,0,local_b7c,4,0,local_b70,0,DVar9); + } + } + } + else { + param_1[0x2a] = 3; + param_1[0x29] = 0; + FUN_10114620(); + } + } + local_8 = 0xffffffff; + if (local_b64 != (int *)0x0) { + (**(code **)(*local_b64 + 8))(local_b64); + } +LAB_1011543c: + if (*(char *)(param_1 + 0x1b) != '\0') { + if ((uint)param_1[0x21] < 8) { + puVar6 = param_1 + 0x1c; + } + else { + puVar6 = (undefined4 *)param_1[0x1c]; + } + iVar5 = (**(code **)(*(int *)param_1[0x14] + 0x44))((int *)param_1[0x14],puVar6); + if (iVar5 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar5,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x75); + } + *(undefined1 *)(param_1 + 0x1b) = 0; + } + if ((param_1[0x2a] != 1) && (param_1[0x2a] != 2)) { + FUN_10050df0(local_b6c,param_1); + } + piVar11 = param_1 + 5; + *piVar11 = *piVar11 + -1; + if (*piVar11 == 0) { + (**(code **)*param_1)(1); + } + local_b5c[0] = (undefined4 *)param_1[0x2a]; + if (param_1[5] == 1) { + local_b68 = param_1; + piVar11 = (int *)FUN_100484c0(&local_b70,&local_b68); + iVar5 = *piVar11; + cVar1 = FUN_10048d60(iVar5 != *(int *)(param_1[0x19] + 0x180),0x273,"preboundreference.cpp"); + if (cVar1 != '\0') { + FUN_100382e0(&local_b70,iVar5); + piVar11 = param_1 + 5; + *piVar11 = *piVar11 + -1; + if (*piVar11 == 0) { + (**(code **)*param_1)(1); + } + } + } + cVar1 = FUN_100408d0(); + if (cVar1 != '\0') { + uVar3 = FUN_10001e20(local_b5c); + p_Var13 = endl_exref; + uVar3 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x20), + L"PreboundReference::OnSetAttributeResult - EXIT status ",uVar3); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar3); + std::basic_ostream_>::operator<< + (pbVar4,p_Var13); + } + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10141bb0 at 10141bb0 + +Signature: `undefined FUN_10141bb0(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __thiscall FUN_10141bb0(int param_1,undefined1 param_2,undefined4 param_3) + +{ + int iVar1; + char cVar2; + uint uVar3; + undefined4 uVar4; + basic_ostream_> *pbVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + bool local_1394; + + uVar3 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + local_1394 = false; + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + uVar4 = FUN_1002f5f0(param_3); + p_Var6 = endl_exref; + uVar4 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::InitializeWithPreboundReference - ENTER pReference ",uVar4); + pbVar5 = (basic_ostream_> *) + FUN_1001a0e0(uVar4); + std::basic_ostream_>::operator<< + (pbVar5,p_Var6); + } + iVar1 = *(int *)(param_1 + 0xa4); + if (((((iVar1 == 1) || (iVar1 == 2)) || (iVar1 == 6)) || ((iVar1 == 8 || (iVar1 == 10)))) || + (iVar1 == 0xb)) { + local_1394 = true; + } + else { + FUN_1004c320(param_3); + *(undefined1 *)(param_1 + 0x154) = param_2; + if ((((char)*(uint *)(param_1 + 0x1c) != '\0') && (*(uint *)(param_1 + 0x1c) >> 0x10 != 0)) && + (((short)*(uint *)(param_1 + 0x20) != 0 && + ((*(uint *)(param_1 + 0x20) >> 0x10 != 0 && (*(short *)(param_1 + 0x26) != 0)))))) { + cVar2 = FUN_10001360(); + if (cVar2 == '\0') { + FUN_101392c0(3,"Reference.cpp",0xca3); + FUN_10141580(); + } + else { + FUN_101392c0(8,"Reference.cpp",0xc99); + FUN_10133cb0(param_1 + 4,param_1 + 0xc,0); + } + local_1394 = true; + } + } + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var6 = endl_exref; + pbVar5 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::InitializeWithPreboundReference - EXIT rc "); + pbVar5 = std::basic_ostream_>::operator<< + (pbVar5,local_1394); + std::basic_ostream_>::operator<< + (pbVar5,p_Var6); + } + __security_check_cookie(uVar3 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10141d60 at 10141d60 + +Signature: `undefined FUN_10141d60(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __thiscall FUN_10141d60(int param_1,int *param_2,int param_3) + +{ + uint uVar1; + uint uVar2; + int *piVar3; + char cVar4; + undefined4 uVar5; + basic_ostream_> *pbVar6; + UINT UVar7; + int iVar8; + int iVar9; + int iVar10; + int iVar11; + bool bVar12; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var13; + int local_15b0; + undefined1 local_15ac; + byte bStack_15ab; + undefined2 uStack_15aa; + undefined2 local_15a8; + ushort uStack_15a6; + undefined2 local_15a4; + undefined2 uStack_15a2; + short local_15a0; + undefined2 uStack_159e; + undefined2 local_159c; + undefined2 uStack_159a; + wchar_t local_210 [260]; + uint local_8; + + local_8 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + local_15b0 = param_3; + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + uVar5 = FUN_1002f5f0(param_3); + swprintf_s(local_210,0x104,L"", + (int)(short)*param_2,param_2[1],param_2[2],(int)(short)param_2[3]); + p_Var13 = endl_exref; + uVar5 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::PreboundReferenceResolved - ENTER status ",local_210, + L" pReference ",uVar5); + uVar5 = FUN_1001a0e0(uVar5); + uVar5 = FUN_1001a0e0(uVar5); + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(uVar5); + std::basic_ostream_>::operator<< + (pbVar6,p_Var13); + param_3 = local_15b0; + } + if ((short)*param_2 == -1) { + if (*(BSTR *)(param_1 + 0x16c) != (BSTR)0x0) { + UVar7 = SysStringLen(*(BSTR *)(param_1 + 0x16c)); + if (UVar7 != 0) goto LAB_10142175; + } + FUN_1004c320(param_3); + uVar1 = *(uint *)(param_1 + 0x1c); + uVar2 = *(uint *)(param_1 + 0x20); + local_159c = *(undefined2 *)(param_1 + 0x24); + local_15a4 = (undefined2)uVar1; + uStack_15a2 = (undefined2)(uVar1 >> 0x10); + local_15a0 = (short)uVar2; + uStack_159e = (undefined2)(uVar2 >> 0x10); + if (((((char)uVar1 == '\0') || (uVar1 >> 0x10 == 0)) || (local_15a0 == 0)) || + ((uVar2 >> 0x10 == 0 || (*(short *)(param_1 + 0x26) == 0)))) { + FUN_101392c0(4,"Reference.cpp",0xccc); + local_15a8 = 0; + local_159c = 6; + FUN_10100da0((uint)uStack_15a6 << 0x10,4,0,CONCAT22(uStack_159a,6),"Reference.cpp",0xcce); + uStack_15aa = 0; + local_15a8 = 0; + uStack_15a2 = 0; + local_15a0 = 0; + uStack_15a6 = 0; + local_15a4 = 0; + uStack_159e = 0; + local_159c = 0; + uStack_159a = 0; + local_15ac = 0; + *(uint *)(param_1 + 0x1c) = (uint)bStack_15ab << 8; + *(undefined4 *)(param_1 + 0x20) = 0; + *(undefined4 *)(param_1 + 0x24) = 0; + *(undefined4 *)(param_1 + 0x28) = 0; + *(undefined4 *)(param_1 + 0x2c) = 0; + local_15b0 = param_1 + 0x10; + FUN_10073b80(&local_15b0,0); + FUN_10138180("Reference.cpp",0xcd6); + piVar3 = *(int **)(param_1 + 0x1a8); + if ((piVar3 != (int *)0x0) && (*(char *)(param_1 + 0x1bc) != '\0')) { + if (*(int *)(param_1 + 0x108) == 0) { + DAT_101d8c50 = DAT_101d8c50 + 1; + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + iVar11 = 0xce2; + p_Var13 = endl_exref; + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x40), + L"no outstanding references refering to this reference callback will not be called line " + ,0xce2,L" file ","Reference.cpp"); + pbVar6 = std::basic_ostream_>:: + operator<<(pbVar6,iVar11); + uVar5 = FUN_1001a0e0(pbVar6); + pbVar6 = (basic_ostream_> *) + FUN_1001dc00(uVar5); + std::basic_ostream_>::operator<< + (pbVar6,p_Var13); + } + } + else if (*(char *)(param_1 + 0x156) == '\0') { + (**(code **)(*piVar3 + 0xc))(piVar3,*(undefined4 *)(param_1 + 0x1ac)); + } + } + } + else { + FUN_101392c0(3,"Reference.cpp",0xcc3); + FUN_10040470(*(undefined2 *)(param_1 + 0x1e)); + FUN_10141580(); + } + } + else { + if (param_2[1] == 3) { + FUN_101392c0(5,"Reference.cpp",0xcf3); + uVar5 = 0xcf4; + local_15a8 = 0; + iVar11 = (uint)uStack_15a6 << 0x10; + iVar9 = 0; + local_159c = 7; + iVar10 = 3; + iVar8 = CONCAT22(uStack_159a,7); + } + else { + FUN_101392c0(0,"Reference.cpp",0xcfb); + iVar11 = *param_2; + iVar10 = param_2[1]; + uVar5 = 0xcfc; + iVar9 = param_2[2]; + iVar8 = param_2[3]; + } + FUN_10100da0(iVar11,iVar10,iVar9,iVar8,"Reference.cpp",uVar5); + uStack_15aa = 0; + local_15a8 = 0; + uStack_15a2 = 0; + local_15a0 = 0; + uStack_15a6 = 0; + local_15a4 = 0; + uStack_159e = 0; + local_159c = 0; + uStack_159a = 0; + local_15ac = 0; + *(uint *)(param_1 + 0x1c) = (uint)bStack_15ab << 8; + *(undefined4 *)(param_1 + 0x20) = 0; + *(undefined4 *)(param_1 + 0x24) = 0; + local_15b0 = param_1 + 0x10; + *(undefined4 *)(param_1 + 0x28) = 0; + *(undefined4 *)(param_1 + 0x2c) = 0; + FUN_10073b80(&local_15b0,0); + FUN_10138180("Reference.cpp",0xd07); + } +LAB_10142175: + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + bVar12 = true; + p_Var13 = endl_exref; + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::PreboundReferenceResolved - EXIT rc "); + pbVar6 = std::basic_ostream_>::operator<< + (pbVar6,bVar12); + std::basic_ostream_>::operator<< + (pbVar6,p_Var13); + } + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + diff --git a/analysis/ghidra/exports/Lmx.dll.prebound-helpers-decompile.md b/analysis/ghidra/exports/Lmx.dll.prebound-helpers-decompile.md new file mode 100644 index 0000000..8ee5b8f --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.prebound-helpers-decompile.md @@ -0,0 +1,1030 @@ +# Lmx.dll selected decompile + +## FUN_101139c0 at 101139c0 + +Signature: `undefined FUN_101139c0(void)` + +```c + +undefined4 * __thiscall FUN_101139c0(undefined4 *param_1,short *param_2,undefined4 param_3) + +{ + short sVar1; + uint uVar2; + short *psVar3; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puStack_c = &LAB_101726b3; + local_10 = ExceptionList; + uVar2 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + *param_1 = MxConnectionCallback::vftable; + local_8 = 0; + param_1[1] = CReferenceToResolve::vftable; + *(undefined1 *)(param_1 + 2) = 0; + param_1[3] = RedundancyResolutionStatusCallback::vftable; + *param_1 = PreboundReference::vftable; + param_1[1] = PreboundReference::vftable; + param_1[3] = PreboundReference::vftable; + *(undefined1 *)(param_1 + 4) = 0; + param_1[5] = 0; + param_1[0xb] = 7; + param_1[10] = 0; + *(undefined2 *)(param_1 + 6) = 0; + psVar3 = param_2; + do { + sVar1 = *psVar3; + psVar3 = psVar3 + 1; + } while (sVar1 != 0); + FUN_100363d0(param_2,(int)psVar3 - (int)(param_2 + 1) >> 1); + local_8._1_3_ = (undefined3)((uint)local_8 >> 8); + param_1[0x12] = 7; + param_1[0x11] = 0; + *(undefined2 *)(param_1 + 0xd) = 0; + local_8._0_1_ = 2; + FUN_10113900(param_2); + param_1[0x19] = param_3; + param_1[0x1a] = 0; + *(undefined1 *)(param_1 + 0x1b) = 0; + param_1[0x21] = 7; + param_1[0x20] = 0; + *(undefined2 *)(param_1 + 0x1c) = 0; + param_1[0x27] = 0; + param_1[0x2a] = 0; + param_1[0x2b] = 0; + local_8 = CONCAT31(local_8._1_3_,8); + *(undefined1 *)(param_1 + 0x2c) = 0; + param_1[0x29] = 0; + if (DAT_101d8c40 == 0) { + FUN_10113070(uVar2); + } + FUN_101133d0(); + (**(code **)(*(int *)param_1[0x19] + 4))((int *)param_1[0x19]); + ExceptionList = local_10; + return param_1; +} + + +``` + +## FUN_10113130 at 10113130 + +Signature: `undefined FUN_10113130(void)` + +```c + +void FUN_10113130(void) + +{ + int iVar1; + short *psVar2; + undefined1 local_24 [4]; + undefined1 local_20 [4]; + undefined1 local_1c [20]; + uint local_8; + + local_8 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + iVar1 = FUN_1005f730(local_1c); + if (*(short *)(iVar1 + 2) != 0) { + iVar1 = FUN_1005f730(local_1c); + if (*(short *)(iVar1 + 4) != 0) { + iVar1 = FUN_1005f730(local_1c); + if (*(short *)(iVar1 + 4) == 1) { + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; + } + } + } + psVar2 = (short *)FUN_1005f880(local_24); + if (*psVar2 != 0) { + iVar1 = FUN_1005f880(local_20); + if (*(short *)(iVar1 + 2) != 0) { + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; + } + } + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_101131d0 at 101131d0 + +Signature: `undefined FUN_101131d0(void)` + +```c + +void __fastcall FUN_101131d0(int param_1) + +{ + byte bVar1; + undefined4 uVar2; + undefined4 *puVar3; + int *local_58; + BSTR local_54; + undefined1 local_50 [20]; + undefined4 local_3c; + undefined4 local_38; + undefined4 local_34; + undefined4 local_30; + undefined4 local_2c; + undefined1 local_28; + undefined1 uStack_27; + undefined2 uStack_26; + undefined2 uStack_24; + undefined2 uStack_22; + undefined2 uStack_20; + undefined4 local_1e; + undefined2 local_1a; + undefined4 local_18; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10172568; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + uStack_26 = 0; + uStack_24 = 0; + uStack_22 = 0; + uStack_20 = 0; + local_18 = 0; + local_28 = 0; + local_1e = 0x710065; + local_1a = 10; + puVar3 = (undefined4 *)FUN_1005f730(local_50); + uVar2 = *puVar3; + local_28 = (undefined1)uVar2; + uStack_27 = (undefined1)((uint)uVar2 >> 8); + uStack_26 = (undefined2)((uint)uVar2 >> 0x10); + uStack_24 = (undefined2)puVar3[1]; + *(int *)(param_1 + 0x14) = *(int *)(param_1 + 0x14) + 1; + uStack_22 = 1; + uStack_20 = 0; + *(undefined4 *)(param_1 + 0xa8) = 2; + puVar3 = (undefined4 *)FUN_1005f730(local_50); + local_3c = *puVar3; + local_38 = puVar3[1]; + local_30 = puVar3[3]; + bVar1 = *(byte *)(param_1 + 0x10); + local_2c = puVar3[4]; + local_34 = CONCAT22(((ushort)bVar1 - (ushort)bVar1) - (ushort)(bVar1 != 0),(short)puVar3[2]); + FUN_1005f7e0(&local_3c); + puVar3 = (undefined4 *)FUN_100054b0(*(undefined4 *)(param_1 + 0x50)); + local_8 = 0; + FUN_1006e2a0(0,&local_28,0,1,2,*puVar3,param_1,0,0,0,0,1,0,0,0,0,0,1,0,0); + local_8 = 0xffffffff; + if (local_58 != (int *)0x0) { + (**(code **)(*local_58 + 8))(local_58); + } + SysFreeString(local_54); + local_34 = local_34 & 0xffff; + FUN_1005f7e0(&local_3c); + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10114620 at 10114620 + +Signature: `undefined FUN_10114620(void)` + +```c + +void __fastcall FUN_10114620(int param_1) + +{ + char cVar1; + undefined4 uVar2; + undefined4 uVar3; + undefined1 local_18 [4]; + void *local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10172866; + local_10 = ExceptionList; + ExceptionList = &local_10; + if (*(char *)(*(int *)(param_1 + 100) + 0x6dc) != '\0') { + cVar1 = FUN_1005faf0(DAT_101d60b8 ^ (uint)&stack0xfffffffc); + if (cVar1 == '\0') { + local_14 = operator_new(0x1c); + local_8 = 0; + if (local_14 == (void *)0x0) { + local_14 = (void *)0x0; + } + else { + local_14 = (void *)FUN_10060b80(); + } + local_8 = 0xffffffff; + FUN_1003ec10(*(undefined4 *)(param_1 + 0x50)); + uVar3 = 0; + uVar2 = FUN_1002c750(&local_14); + FUN_10066e70(local_18,uVar2,uVar3); + local_14 = operator_new(0x1c); + local_8 = 1; + if (local_14 == (void *)0x0) { + local_14 = (void *)0x0; + } + else { + local_14 = (void *)FUN_10060b80(); + } + local_8 = 0xffffffff; + FUN_1003ec10(*(undefined4 *)(param_1 + 0x50)); + uVar3 = 0; + uVar2 = FUN_1002c750(&local_14); + FUN_10066e70(local_18,uVar2,uVar3); + *(undefined1 *)(*(int *)(param_1 + 100) + 0x6dd) = 1; + } + } + ExceptionList = local_10; + return; +} + + +``` + +## FUN_10089cb0 at 10089cb0 + +Signature: `undefined FUN_10089cb0(void)` + +```c + +void __thiscall +FUN_10089cb0(int param_1,short *param_2,undefined4 *param_3,undefined4 *param_4,undefined1 *param_5, + undefined4 param_6,undefined4 param_7,undefined4 *param_8,char param_9) + +{ + short sVar1; + short *psVar2; + wchar_t *pwVar3; + short ****ppppsVar4; + wchar_t *pwVar5; + int iVar6; + wchar_t **ppwVar7; + int iVar8; + short ****ppppsVar9; + short *psVar10; + undefined4 uVar11; + wchar_t *pwVar12; + wchar_t *local_bc; + undefined1 *local_b8; + undefined4 local_b4; + undefined4 *local_b0; + short *local_ac; + uint local_a8; + uint local_a4; + wchar_t local_a0; + undefined4 *local_9c; + wchar_t *local_98; + undefined4 local_94; + int local_90; + wchar_t *local_8c; + undefined1 local_85; + undefined1 local_84 [28]; + undefined2 local_68; + undefined4 local_58; + undefined4 local_54; + void *local_4c [4]; + short **local_3c; + uint local_38; + short ***local_30 [4]; + short **local_20; + short **local_1c; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10166bc7; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_9c = param_3; + local_b4 = param_6; + local_b8 = param_5; + local_30[0] = (short ***)((uint)local_30[0] & 0xffff0000); + local_94 = param_7; + local_ac = param_2; + local_b0 = param_8; + local_85 = 0; + local_1c = (short **)0x7; + local_20 = (short **)0x0; + psVar2 = param_2; + do { + sVar1 = *psVar2; + psVar2 = psVar2 + 1; + } while (sVar1 != 0); + FUN_100363d0(param_2,(int)psVar2 - (int)(param_2 + 1) >> 1); + local_54 = 7; + local_58 = 0; + local_68 = 0; + local_8._0_1_ = 1; + local_8._1_3_ = 0; + if (*(char *)(param_1 + 0x41) == '\0') { + local_90 = param_1 + 0x44; +LAB_10089db7: + ppppsVar9 = (short ****)local_30[0]; + if (local_1c < (short ***)0x8) { + ppppsVar9 = local_30; + } + pwVar3 = operator_new(0x20); + local_8c = pwVar3; + if (pwVar3 == (wchar_t *)0x0) { + pwVar3 = (wchar_t *)0x0; + } + else { + pwVar3[10] = L'\a'; + pwVar3[0xb] = L'\0'; + pwVar3[8] = L'\0'; + pwVar3[9] = L'\0'; + *pwVar3 = L'\0'; + pwVar3[0xe] = L'\x01'; + pwVar3[0xf] = L'\0'; + } + local_8._0_1_ = 1; + local_98 = pwVar3; + ppppsVar4 = ppppsVar9; + do { + sVar1 = *(short *)ppppsVar4; + ppppsVar4 = (short ****)((int)ppppsVar4 + 2); + } while (sVar1 != 0); + FUN_100363d0(ppppsVar9,(int)ppppsVar4 - (int)((int)ppppsVar9 + 2) >> 1); + iVar8 = local_90; + local_8 = CONCAT31(local_8._1_3_,4); + local_8c = (wchar_t *)FUN_10026930(&local_98); + if (local_8c == *(wchar_t **)(iVar8 + 4)) { +LAB_10089e7c: + local_bc = *(wchar_t **)(iVar8 + 4); + ppwVar7 = &local_bc; + } + else { + pwVar5 = *(wchar_t **)(local_8c + 6); + if (7 < *(uint *)(pwVar5 + 10)) { + pwVar5 = *(wchar_t **)pwVar5; + } + pwVar12 = pwVar3; + if (7 < *(uint *)(pwVar3 + 10)) { + pwVar12 = *(wchar_t **)pwVar3; + } + iVar6 = _wcsicmp(pwVar12,pwVar5); + if (iVar6 < 0) goto LAB_10089e7c; + ppwVar7 = &local_8c; + } + pwVar5 = *ppwVar7; + local_8._0_1_ = 1; + if (pwVar3 != (wchar_t *)0x0) { + pwVar12 = pwVar3 + 0xe; + *(int *)pwVar12 = *(int *)pwVar12 + -1; + if (*(int *)pwVar12 == 0) { + local_8._0_1_ = 1; + local_8c = pwVar3; + if (7 < *(uint *)(pwVar3 + 10)) { + operator_delete(*(void **)pwVar3); + } + pwVar3[10] = L'\a'; + pwVar3[0xb] = L'\0'; + pwVar3[8] = L'\0'; + pwVar3[9] = L'\0'; + *pwVar3 = L'\0'; + operator_delete(pwVar3); + } + local_98 = (wchar_t *)0x0; + } + if (pwVar5 == *(wchar_t **)(param_1 + 0x48)) { + local_8c = (wchar_t *)0x2e; + iVar8 = FUN_10011180(&local_8c,0xffffffff,1); + if (iVar8 == -1) goto LAB_1008a0f4; + ppppsVar9 = (short ****)FUN_10043140(local_4c,0,iVar8); + local_8._0_1_ = 8; + if (local_30 != ppppsVar9) { + if ((short ***)0x7 < local_1c) { + operator_delete(local_30[0]); + } + local_1c = (short **)0x7; + local_20 = (short **)0x0; + local_30[0] = (short ***)((uint)local_30[0] & 0xffff0000); + if (ppppsVar9[5] < (short ***)0x8) { + memmove(local_30,ppppsVar9,((int)ppppsVar9[4] + 1) * 2); + } + else { + local_30[0] = *ppppsVar9; + *ppppsVar9 = (short ***)0x0; + } + local_20 = (short **)ppppsVar9[4]; + local_1c = (short **)ppppsVar9[5]; + ppppsVar9[5] = (short ***)0x7; + ppppsVar9[4] = (short ***)0x0; + *(undefined2 *)ppppsVar9 = 0; + } + local_8._0_1_ = 1; + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = (short **)0x0; + local_4c[0] = (void *)((uint)local_4c[0] & 0xffff0000); + goto LAB_10089db7; + } + local_a8 = *(uint *)(pwVar5 + 10); + local_a4 = *(uint *)(pwVar5 + 0xc); + local_a0 = pwVar5[0xe]; + if (((((char)local_a8 == '\0') || (local_a8 >> 0x10 == 0)) || ((short)local_a4 == 0)) || + (local_a4 >> 0x10 == 0)) { + if (param_9 != '\0') { + FUN_10068510(&local_94,pwVar5); + } + local_85 = 0; + } + else { + FUN_10049320(local_ac); + local_8._0_1_ = 6; + psVar2 = *(short **)(pwVar5 + 8); + psVar10 = psVar2; + do { + sVar1 = *psVar10; + psVar10 = psVar10 + 1; + } while (sVar1 != 0); + FUN_100363d0(psVar2,(int)psVar10 - (int)(psVar2 + 1) >> 1); + *local_9c = *(undefined4 *)(pwVar5 + 10); + local_9c[1] = *(undefined4 *)(pwVar5 + 0xc); + *(wchar_t *)(local_9c + 2) = pwVar5[0xe]; + *param_4 = *(undefined4 *)(pwVar5 + 0xf); + *local_b8 = (char)pwVar5[0x11]; + *local_b0 = *(undefined4 *)(pwVar5 + 0x14); + local_b0[1] = *(undefined4 *)(pwVar5 + 0x16); + if (local_20 != local_3c) { + uVar11 = FUN_10043140(local_84,(int)local_20 + 1,0xffffffff); + local_8._0_1_ = 7; + FUN_10049600(uVar11); + local_8._0_1_ = 6; + FUN_10024360(); + } + local_85 = 1; + local_8 = CONCAT31(local_8._1_3_,1); + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = (short **)0x0; + local_4c[0] = (void *)((uint)local_4c[0] & 0xffff0000); + } +LAB_1008a0f4: + local_54 = 7; + local_58 = 0; + local_68 = 0; + local_8 = 0xffffffff; + if ((short ***)0x7 < local_1c) { + operator_delete(local_30[0]); + } + } + else { + local_54 = 7; + local_58 = 0; + local_68 = 0; + local_8 = 0xffffffff; + if ((short ***)0x7 < local_1c) { + operator_delete(local_30[0]); + } + } + local_30[0] = (short ***)((uint)local_30[0] & 0xffff0000); + local_20 = (short **)0x0; + local_1c = (short **)0x7; + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_1008f150 at 1008f150 + +Signature: `undefined FUN_1008f150(void)` + +```c + +void __thiscall +FUN_1008f150(int param_1,int *param_2,undefined4 param_3,undefined4 param_4,undefined4 param_5, + undefined4 param_6,undefined4 param_7,undefined4 param_8,undefined4 param_9, + undefined4 param_10,undefined4 param_11) + +{ + int iVar1; + char cVar2; + undefined4 uVar3; + undefined4 uVar4; + basic_ostream_> *pbVar5; + int iVar6; + int *piVar7; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var8; + int *local_258; + undefined4 local_254; + ulong local_250; + ushort local_24c; + ushort uStack_24a; + uchar local_248 [4]; + uchar local_244 [4]; + undefined4 local_240; + undefined4 local_23c; + undefined4 local_238; + undefined4 local_234; + undefined4 local_230; + undefined4 local_22c; + undefined4 local_228; + undefined4 local_224; + GUID local_220 [33]; + uint local_8; + + local_8 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + CoCreateGuid(local_220); + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + uVar3 = FUN_10047fe0(local_220[0].Data1,local_220[0]._4_4_,local_220[0].Data4._0_4_, + local_220[0].Data4._4_4_); + p_Var8 = endl_exref; + uVar4 = (**(code **)(*param_2 + 8))(); + piVar7 = param_2; + pbVar5 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L"CReferenceStringResolver::ResolveReference - reference ",param_2, + L" guid ",uVar3,L" ref ",uVar4); + pbVar5 = std::basic_ostream_>::operator<< + (pbVar5,piVar7); + uVar3 = FUN_1001a0e0(pbVar5); + uVar3 = FUN_1001a0e0(uVar3); + uVar3 = FUN_1001a0e0(uVar3); + pbVar5 = (basic_ostream_> *) + FUN_1001a0e0(uVar3); + std::basic_ostream_>::operator<< + (pbVar5,p_Var8); + } + local_250 = local_220[0].Data1; + local_24c = local_220[0].Data2; + uStack_24a = local_220[0].Data3; + local_244[0] = local_220[0].Data4[4]; + local_244[1] = local_220[0].Data4[5]; + local_244[2] = local_220[0].Data4[6]; + local_244[3] = local_220[0].Data4[7]; + local_254 = param_11; + local_240 = param_7; + local_238 = param_9; + local_248[0] = local_220[0].Data4[0]; + local_248[1] = local_220[0].Data4[1]; + local_248[2] = local_220[0].Data4[2]; + local_248[3] = local_220[0].Data4[3]; + local_234 = param_10; + local_258 = param_2; + iVar1 = *(int *)(param_1 + 0x24); + local_22c = param_4; + local_23c = param_8; + local_228 = param_5; + local_230 = param_3; + local_224 = param_6; + iVar6 = FUN_1008e910(iVar1,*(undefined4 *)(iVar1 + 4),&local_258); + if (*(int *)(param_1 + 0x28) == 0x4924923) { + /* WARNING: Subroutine does not return */ + std::_Xlength_error("list too long"); + } + *(int *)(param_1 + 0x28) = *(int *)(param_1 + 0x28) + 1; + *(int *)(iVar1 + 4) = iVar6; + **(int **)(iVar6 + 4) = iVar6; + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_1008f8b0 at 1008f8b0 + +Signature: `undefined FUN_1008f8b0(void)` + +```c + +void __thiscall +FUN_1008f8b0(void *param_1,undefined4 *param_2,undefined4 param_3,uint param_4,undefined4 param_5, + undefined4 param_6,undefined4 param_7,uint param_8) + +{ + undefined2 uVar1; + uint uVar2; + char cVar3; + ushort uVar4; + uint uVar5; + uint uVar6; + uint uVar7; + undefined4 uVar8; + undefined4 uVar9; + basic_ostream_> *pbVar10; + bool bVar11; + wchar_t *pwVar12; + wchar_t *pwVar13; + wchar_t *pwVar14; + undefined *puVar15; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var16; + ushort local_fc8; + short sStack_fc6; + undefined2 uStack_fc4; + undefined4 local_fc0; + undefined4 local_fbc; + + uVar5 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + local_fbc = param_4; + uVar2 = local_fbc; + local_fc8 = (ushort)param_8; + sStack_fc6 = (short)(param_8 >> 0x10); + uVar4 = (ushort)((uint)param_3 >> 0x10); + if ((((uVar4 != 0) && (local_fbc._0_2_ = (short)param_4, (short)local_fbc != 0)) && + (uVar4 != *(ushort *)((int)param_1 + 0x2ae))) && + ((local_fc8 == *(ushort *)((int)param_1 + 0x2ae) && + (sStack_fc6 == *(short *)((int)param_1 + 0x2ac))))) { + uVar6 = FUN_1008f0f0(); + uVar7 = FUN_1008f120(); + if ((uVar4 == uVar7) && (((param_4 & 0xffff) == uVar6 || (uVar6 == 0xffffffff)))) { + uVar1 = *(undefined2 *)((int)param_1 + 0x2ae); + local_fc0 = CONCAT22(uVar1,(short)param_3); + bVar11 = (short)local_fbc != 1; + local_fbc = uVar2; + if (bVar11) { + local_fbc = CONCAT22((short)(param_4 >> 0x10),*(undefined2 *)((int)param_1 + 0x2ac)); + } + cVar3 = FUN_100408d0(); + param_3 = local_fc0; + uVar2 = local_fbc; + if (cVar3 != '\0') { + uVar8 = FUN_10022ff0(L"AccessManager::FixUpMxHandle - object partner redirected to " + ,uVar4,param_4 & 0xffff,param_8 & 0xffff,sStack_fc6,uVar1, + local_fbc & 0xffff); + FUN_10022d50(uVar8); + } + } + } + local_fbc = uVar2; + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + uVar9 = FUN_100041f0(param_3,local_fbc,param_5,param_6,param_7); + uVar8 = CONCAT22(uStack_fc4,sStack_fc6); + puVar15 = &DAT_1017ef50; + pwVar14 = L" engine "; + pwVar13 = L" partner_>:: + operator<<(*(basic_ostream_> ** + )(DAT_101d6474 + 0x38),param_1); + uVar8 = FUN_1001a0e0(pbVar10,pwVar12,uVar9,pwVar13,param_8,pwVar14,uVar8,puVar15); + uVar8 = FUN_1001a0e0(uVar8); + FUN_1001a0e0(uVar8); + uVar8 = FUN_10022870(); + FUN_1001a0e0(uVar8); + uVar8 = FUN_10022870(); + pbVar10 = (basic_ostream_> *) + FUN_1001a0e0(uVar8); + std::basic_ostream_>::operator<< + (pbVar10,p_Var16); + } + *param_2 = param_3; + param_2[1] = local_fbc; + param_2[2] = param_5; + param_2[3] = param_6; + param_2[4] = param_7; + __security_check_cookie(uVar5 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10112a00 at 10112a00 + +Signature: `undefined FUN_10112a00(void)` + +```c + +undefined4 * __thiscall FUN_10112a00(undefined4 *param_1,LPCSTR param_2) + +{ + uint uVar1; + int cchWideChar; + int iVar2; + BSTR lpWideCharStr; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_101723b8; + local_10 = ExceptionList; + uVar1 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + SysFreeString((BSTR)*param_1); + lpWideCharStr = (BSTR)0x0; + if (param_2 != (LPCSTR)0x0) { + local_8 = 0; + cchWideChar = MultiByteToWideChar(3,0,param_2,-1,(LPWSTR)0x0,0); + lpWideCharStr = SysAllocStringLen((OLECHAR *)0x0,cchWideChar - 1); + if ((lpWideCharStr == (BSTR)0x0) || + (iVar2 = MultiByteToWideChar(3,0,param_2,-1,lpWideCharStr,cchWideChar), iVar2 == cchWideChar) + ) { + local_8 = 0xffffffff; + FUN_10006040(uVar1); + } + else { + SysFreeString(lpWideCharStr); + local_8 = 0xffffffff; + FUN_10006040(); + lpWideCharStr = (BSTR)0x0; + } + } + *param_1 = lpWideCharStr; + if ((lpWideCharStr == (BSTR)0x0) && (param_2 != (LPCSTR)0x0)) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + ExceptionList = local_10; + return param_1; +} + + +``` + +## FUN_10112cd0 at 10112cd0 + +Signature: `undefined FUN_10112cd0(void)` + +```c + +void __fastcall FUN_10112cd0(int param_1) + +{ + uint uVar1; + void *pvVar2; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_1017247b; + local_10 = ExceptionList; + uVar1 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + pvVar2 = operator_new(0x38); + local_8 = 0; + if (pvVar2 != (void *)0x0) { + FUN_1009f240(*(undefined4 *)(param_1 + 0x50),*(undefined2 *)(*(int *)(param_1 + 100) + 0x2ac), + param_1,*(int *)(param_1 + 100)); + } + local_8 = 0xffffffff; + (*(code *)**(undefined4 **)(param_1 + 4))(uVar1); + ExceptionList = local_10; + return; +} + + +``` + +## FUN_10112f20 at 10112f20 + +Signature: `undefined FUN_10112f20(void)` + +```c + +int * __thiscall FUN_10112f20(int *param_1,int *param_2) + +{ + UINT UVar1; + BSTR pOVar2; + + if (*param_1 != *param_2) { + AtlComPtrAssign(param_1,*param_2); + } + if ((BSTR)param_1[1] != (BSTR)param_2[1]) { + SysFreeString((BSTR)param_1[1]); + pOVar2 = (BSTR)0x0; + if ((BSTR)param_2[1] != (BSTR)0x0) { + UVar1 = SysStringByteLen((BSTR)param_2[1]); + pOVar2 = SysAllocStringByteLen((LPCSTR)param_2[1],UVar1); + } + param_1[1] = (int)pOVar2; + if ((param_2[1] != 0) && (pOVar2 == (BSTR)0x0)) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + if ((BSTR)param_1[2] != (BSTR)param_2[2]) { + SysFreeString((BSTR)param_1[2]); + pOVar2 = (BSTR)0x0; + if ((BSTR)param_2[2] != (BSTR)0x0) { + UVar1 = SysStringByteLen((BSTR)param_2[2]); + pOVar2 = SysAllocStringByteLen((LPCSTR)param_2[2],UVar1); + } + param_1[2] = (int)pOVar2; + if ((param_2[2] != 0) && (pOVar2 == (BSTR)0x0)) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + if ((BSTR)param_1[3] != (BSTR)param_2[3]) { + SysFreeString((BSTR)param_1[3]); + pOVar2 = (BSTR)0x0; + if ((BSTR)param_2[3] != (BSTR)0x0) { + UVar1 = SysStringByteLen((BSTR)param_2[3]); + pOVar2 = SysAllocStringByteLen((LPCSTR)param_2[3],UVar1); + } + param_1[3] = (int)pOVar2; + if ((param_2[3] != 0) && (pOVar2 == (BSTR)0x0)) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + if ((BSTR)param_1[4] != (BSTR)param_2[4]) { + SysFreeString((BSTR)param_1[4]); + pOVar2 = (BSTR)0x0; + if ((BSTR)param_2[4] != (BSTR)0x0) { + UVar1 = SysStringByteLen((BSTR)param_2[4]); + pOVar2 = SysAllocStringByteLen((LPCSTR)param_2[4],UVar1); + } + param_1[4] = (int)pOVar2; + if ((param_2[4] != 0) && (pOVar2 == (BSTR)0x0)) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + return param_1; +} + + +``` + +## FUN_10050df0 at 10050df0 + +Signature: `undefined FUN_10050df0(void)` + +```c + +void __thiscall FUN_10050df0(int param_1,undefined4 param_2,int param_3) + +{ + char cVar1; + int *piVar2; + int *piVar3; + int *piVar4; + int *local_10; + int *local_c; + int local_8; + + local_8 = param_1; + FUN_10035620(&local_10,¶m_3); + piVar3 = local_10; + if (local_10 != local_c) { + do { + FUN_10141d60(param_2,*(undefined4 *)(param_3 + 0x50)); + if (*(char *)((int)piVar3 + 0x15) == '\0') { + piVar4 = (int *)piVar3[2]; + if (*(char *)((int)piVar4 + 0x15) == '\0') { + cVar1 = *(char *)(*piVar4 + 0x15); + piVar3 = piVar4; + piVar4 = (int *)*piVar4; + while (cVar1 == '\0') { + cVar1 = *(char *)(*piVar4 + 0x15); + piVar3 = piVar4; + piVar4 = (int *)*piVar4; + } + } + else { + cVar1 = *(char *)(piVar3[1] + 0x15); + piVar2 = (int *)piVar3[1]; + piVar4 = piVar3; + while ((piVar3 = piVar2, cVar1 == '\0' && (piVar4 == (int *)piVar3[2]))) { + cVar1 = *(char *)(piVar3[1] + 0x15); + piVar2 = (int *)piVar3[1]; + piVar4 = piVar3; + } + } + } + piVar4 = local_10; + } while (piVar3 != local_c); + while (piVar4 != local_c) { + (**(code **)(*(int *)(piVar4[4] + 4) + 4))(); + if (*(char *)((int)piVar4 + 0x15) == '\0') { + piVar3 = (int *)piVar4[2]; + if (*(char *)((int)piVar3 + 0x15) == '\0') { + cVar1 = *(char *)(*piVar3 + 0x15); + piVar4 = piVar3; + piVar3 = (int *)*piVar3; + while (cVar1 == '\0') { + cVar1 = *(char *)(*piVar3 + 0x15); + piVar4 = piVar3; + piVar3 = (int *)*piVar3; + } + } + else { + cVar1 = *(char *)(piVar4[1] + 0x15); + piVar2 = (int *)piVar4[1]; + piVar3 = piVar4; + while ((piVar4 = piVar2, cVar1 == '\0' && (piVar3 == (int *)piVar4[2]))) { + cVar1 = *(char *)(piVar4[1] + 0x15); + piVar2 = (int *)piVar4[1]; + piVar3 = piVar4; + } + } + } + } + } + FUN_10048fe0(&local_c,local_10,local_c); + piVar3 = (int *)**(int **)(param_1 + 0x680); + if (piVar3 != *(int **)(param_1 + 0x680)) { + do { + if (piVar3[2] == param_3) { + if (piVar3[3] != 0) { + FUN_100e3de0(param_3,param_2,piVar3 + 2); + } + piVar4 = (int *)*piVar3; + param_1 = local_8; + if (piVar3 != *(int **)(local_8 + 0x680)) { + *(int **)piVar3[1] = piVar4; + *(int *)(*piVar3 + 4) = piVar3[1]; + operator_delete(piVar3); + *(int *)(local_8 + 0x684) = *(int *)(local_8 + 0x684) + -1; + param_1 = local_8; + } + } + else { + piVar4 = (int *)*piVar3; + } + piVar3 = piVar4; + } while (piVar4 != *(int **)(param_1 + 0x680)); + } + return; +} + + +``` + +## FUN_1005f730 at 1005f730 + +Signature: `undefined FUN_1005f730(void)` + +```c + +undefined1 * __thiscall FUN_1005f730(int *param_1,int *param_2) + +{ + undefined4 *puVar1; + undefined1 *puVar2; + uint uVar3; + int iVar4; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puVar2 = (undefined1 *)param_2; + puStack_c = &LAB_1015db38; + local_10 = ExceptionList; + uVar3 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + *(undefined1 *)param_2 = 0; + *(undefined4 *)((int)param_2 + 2) = 0; + *(undefined4 *)((int)param_2 + 6) = 0; + *(undefined4 *)((int)param_2 + 10) = 0; + *(undefined4 *)((int)param_2 + 0xe) = 0; + *(undefined2 *)((int)param_2 + 0x12) = 0; + puVar1 = (undefined4 *)*param_1; + param_2 = (int *)0x0; + local_8 = 1; + if (puVar1 != (undefined4 *)0x0) { + (**(code **)*puVar1)(puVar1,&DAT_1017b690,¶m_2,uVar3); + } + local_8 = 2; + iVar4 = (**(code **)(*param_2 + 0xc))(param_2,puVar2); + if (iVar4 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar4,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x7f); + } + local_8 = 0xffffffff; + if (param_2 != (int *)0x0) { + (**(code **)(*param_2 + 8))(param_2); + } + ExceptionList = local_10; + return puVar2; +} + + +``` + diff --git a/analysis/ghidra/exports/Lmx.dll.reference-parser-helpers-decompile.md b/analysis/ghidra/exports/Lmx.dll.reference-parser-helpers-decompile.md new file mode 100644 index 0000000..6c3fae4 --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.reference-parser-helpers-decompile.md @@ -0,0 +1,1238 @@ +# Lmx.dll selected decompile + +## FUN_100054b0 at 100054b0 + +Signature: `undefined FUN_100054b0(void)` + +```c + +int * __thiscall FUN_100054b0(int *param_1,undefined4 param_2) + +{ + int *piVar1; + HRESULT HVar2; + int *local_8; + + *param_1 = 0; + param_1[1] = 0; + local_8 = param_1; + if (DAT_101d6470 == (int *)0x0) { + local_8 = DAT_101d6470; + HVar2 = CoGetClassObject((IID *)&DAT_1017b1c0,0x17,(LPVOID)0x0,(IID *)&DAT_1017b1d0,&local_8); + if (HVar2 < 0) { + param_2 = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(¶m_2,(ThrowInfo *)&DAT_101a8794); + } + DAT_101d6470 = local_8; + } + (**(code **)(*DAT_101d6470 + 0x14))(DAT_101d6470,param_1,0); + piVar1 = (int *)*param_1; + if (piVar1 == (int *)0x0) { + param_2 = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(¶m_2,(ThrowInfo *)&DAT_101a8794); + } + (**(code **)(*piVar1 + 0x44))(piVar1,param_2); + return param_1; +} + + +``` + +## FUN_1000df40 at 1000df40 + +Signature: `undefined FUN_1000df40(void)` + +```c + +bool FUN_1000df40(int *param_1,undefined4 param_2) + +{ + int iVar1; + undefined4 local_8; + + local_8 = 0; + iVar1 = (**(code **)(*param_1 + 0x10))(param_1,param_2,4,&local_8); + return iVar1 == 0; +} + + +``` + +## FUN_10089cb0 at 10089cb0 + +Signature: `undefined FUN_10089cb0(void)` + +```c + +void __thiscall +FUN_10089cb0(int param_1,short *param_2,undefined4 *param_3,undefined4 *param_4,undefined1 *param_5, + undefined4 param_6,undefined4 param_7,undefined4 *param_8,char param_9) + +{ + short sVar1; + short *psVar2; + wchar_t *pwVar3; + short ****ppppsVar4; + wchar_t *pwVar5; + int iVar6; + wchar_t **ppwVar7; + int iVar8; + short ****ppppsVar9; + short *psVar10; + undefined4 uVar11; + wchar_t *pwVar12; + wchar_t *local_bc; + undefined1 *local_b8; + undefined4 local_b4; + undefined4 *local_b0; + short *local_ac; + uint local_a8; + uint local_a4; + wchar_t local_a0; + undefined4 *local_9c; + wchar_t *local_98; + undefined4 local_94; + int local_90; + wchar_t *local_8c; + undefined1 local_85; + undefined1 local_84 [28]; + undefined2 local_68; + undefined4 local_58; + undefined4 local_54; + void *local_4c [4]; + short **local_3c; + uint local_38; + short ***local_30 [4]; + short **local_20; + short **local_1c; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10166bc7; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_9c = param_3; + local_b4 = param_6; + local_b8 = param_5; + local_30[0] = (short ***)((uint)local_30[0] & 0xffff0000); + local_94 = param_7; + local_ac = param_2; + local_b0 = param_8; + local_85 = 0; + local_1c = (short **)0x7; + local_20 = (short **)0x0; + psVar2 = param_2; + do { + sVar1 = *psVar2; + psVar2 = psVar2 + 1; + } while (sVar1 != 0); + FUN_100363d0(param_2,(int)psVar2 - (int)(param_2 + 1) >> 1); + local_54 = 7; + local_58 = 0; + local_68 = 0; + local_8._0_1_ = 1; + local_8._1_3_ = 0; + if (*(char *)(param_1 + 0x41) == '\0') { + local_90 = param_1 + 0x44; +LAB_10089db7: + ppppsVar9 = (short ****)local_30[0]; + if (local_1c < (short ***)0x8) { + ppppsVar9 = local_30; + } + pwVar3 = operator_new(0x20); + local_8c = pwVar3; + if (pwVar3 == (wchar_t *)0x0) { + pwVar3 = (wchar_t *)0x0; + } + else { + pwVar3[10] = L'\a'; + pwVar3[0xb] = L'\0'; + pwVar3[8] = L'\0'; + pwVar3[9] = L'\0'; + *pwVar3 = L'\0'; + pwVar3[0xe] = L'\x01'; + pwVar3[0xf] = L'\0'; + } + local_8._0_1_ = 1; + local_98 = pwVar3; + ppppsVar4 = ppppsVar9; + do { + sVar1 = *(short *)ppppsVar4; + ppppsVar4 = (short ****)((int)ppppsVar4 + 2); + } while (sVar1 != 0); + FUN_100363d0(ppppsVar9,(int)ppppsVar4 - (int)((int)ppppsVar9 + 2) >> 1); + iVar8 = local_90; + local_8 = CONCAT31(local_8._1_3_,4); + local_8c = (wchar_t *)FUN_10026930(&local_98); + if (local_8c == *(wchar_t **)(iVar8 + 4)) { +LAB_10089e7c: + local_bc = *(wchar_t **)(iVar8 + 4); + ppwVar7 = &local_bc; + } + else { + pwVar5 = *(wchar_t **)(local_8c + 6); + if (7 < *(uint *)(pwVar5 + 10)) { + pwVar5 = *(wchar_t **)pwVar5; + } + pwVar12 = pwVar3; + if (7 < *(uint *)(pwVar3 + 10)) { + pwVar12 = *(wchar_t **)pwVar3; + } + iVar6 = _wcsicmp(pwVar12,pwVar5); + if (iVar6 < 0) goto LAB_10089e7c; + ppwVar7 = &local_8c; + } + pwVar5 = *ppwVar7; + local_8._0_1_ = 1; + if (pwVar3 != (wchar_t *)0x0) { + pwVar12 = pwVar3 + 0xe; + *(int *)pwVar12 = *(int *)pwVar12 + -1; + if (*(int *)pwVar12 == 0) { + local_8._0_1_ = 1; + local_8c = pwVar3; + if (7 < *(uint *)(pwVar3 + 10)) { + operator_delete(*(void **)pwVar3); + } + pwVar3[10] = L'\a'; + pwVar3[0xb] = L'\0'; + pwVar3[8] = L'\0'; + pwVar3[9] = L'\0'; + *pwVar3 = L'\0'; + operator_delete(pwVar3); + } + local_98 = (wchar_t *)0x0; + } + if (pwVar5 == *(wchar_t **)(param_1 + 0x48)) { + local_8c = (wchar_t *)0x2e; + iVar8 = FUN_10011180(&local_8c,0xffffffff,1); + if (iVar8 == -1) goto LAB_1008a0f4; + ppppsVar9 = (short ****)FUN_10043140(local_4c,0,iVar8); + local_8._0_1_ = 8; + if (local_30 != ppppsVar9) { + if ((short ***)0x7 < local_1c) { + operator_delete(local_30[0]); + } + local_1c = (short **)0x7; + local_20 = (short **)0x0; + local_30[0] = (short ***)((uint)local_30[0] & 0xffff0000); + if (ppppsVar9[5] < (short ***)0x8) { + memmove(local_30,ppppsVar9,((int)ppppsVar9[4] + 1) * 2); + } + else { + local_30[0] = *ppppsVar9; + *ppppsVar9 = (short ***)0x0; + } + local_20 = (short **)ppppsVar9[4]; + local_1c = (short **)ppppsVar9[5]; + ppppsVar9[5] = (short ***)0x7; + ppppsVar9[4] = (short ***)0x0; + *(undefined2 *)ppppsVar9 = 0; + } + local_8._0_1_ = 1; + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = (short **)0x0; + local_4c[0] = (void *)((uint)local_4c[0] & 0xffff0000); + goto LAB_10089db7; + } + local_a8 = *(uint *)(pwVar5 + 10); + local_a4 = *(uint *)(pwVar5 + 0xc); + local_a0 = pwVar5[0xe]; + if (((((char)local_a8 == '\0') || (local_a8 >> 0x10 == 0)) || ((short)local_a4 == 0)) || + (local_a4 >> 0x10 == 0)) { + if (param_9 != '\0') { + FUN_10068510(&local_94,pwVar5); + } + local_85 = 0; + } + else { + FUN_10049320(local_ac); + local_8._0_1_ = 6; + psVar2 = *(short **)(pwVar5 + 8); + psVar10 = psVar2; + do { + sVar1 = *psVar10; + psVar10 = psVar10 + 1; + } while (sVar1 != 0); + FUN_100363d0(psVar2,(int)psVar10 - (int)(psVar2 + 1) >> 1); + *local_9c = *(undefined4 *)(pwVar5 + 10); + local_9c[1] = *(undefined4 *)(pwVar5 + 0xc); + *(wchar_t *)(local_9c + 2) = pwVar5[0xe]; + *param_4 = *(undefined4 *)(pwVar5 + 0xf); + *local_b8 = (char)pwVar5[0x11]; + *local_b0 = *(undefined4 *)(pwVar5 + 0x14); + local_b0[1] = *(undefined4 *)(pwVar5 + 0x16); + if (local_20 != local_3c) { + uVar11 = FUN_10043140(local_84,(int)local_20 + 1,0xffffffff); + local_8._0_1_ = 7; + FUN_10049600(uVar11); + local_8._0_1_ = 6; + FUN_10024360(); + } + local_85 = 1; + local_8 = CONCAT31(local_8._1_3_,1); + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = (short **)0x0; + local_4c[0] = (void *)((uint)local_4c[0] & 0xffff0000); + } +LAB_1008a0f4: + local_54 = 7; + local_58 = 0; + local_68 = 0; + local_8 = 0xffffffff; + if ((short ***)0x7 < local_1c) { + operator_delete(local_30[0]); + } + } + else { + local_54 = 7; + local_58 = 0; + local_68 = 0; + local_8 = 0xffffffff; + if ((short ***)0x7 < local_1c) { + operator_delete(local_30[0]); + } + } + local_30[0] = (short ***)((uint)local_30[0] & 0xffff0000); + local_20 = (short **)0x0; + local_1c = (short **)0x7; + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_1008af90 at 1008af90 + +Signature: `undefined FUN_1008af90(void)` + +```c + +undefined4 +FUN_1008af90(FILETIME *param_1,FILETIME *param_2,short *param_3,uint *param_4,uint *param_5) + +{ + short sVar1; + LONG LVar2; + FILETIME local_c; + + if ((*param_3 == 0) && (*(int *)(param_3 + 2) == 4)) { + sVar1 = param_3[6]; + if ((sVar1 == 3) || ((sVar1 == 4 || (sVar1 == 8)))) { + local_c.dwLowDateTime = 0; + local_c.dwHighDateTime = 0; + LVar2 = CompareFileTime(param_1,&local_c); + if (LVar2 != 1) { + return 1; + } + if ((int)param_4[1] < (int)param_1->dwHighDateTime) { + return 1; + } + if (((int)param_4[1] <= (int)param_1->dwHighDateTime) && (*param_4 < param_1->dwLowDateTime)) + { + return 1; + } + return 0; + } + if (sVar1 != 6) { + return 1; + } + local_c.dwLowDateTime = 0; + local_c.dwHighDateTime = 0; + LVar2 = CompareFileTime(param_2,&local_c); + if (LVar2 == 1) { + if ((int)param_2->dwHighDateTime < (int)param_5[1]) { + return 0; + } + if (((int)param_2->dwHighDateTime <= (int)param_5[1]) && (param_2->dwLowDateTime <= *param_5)) + { + return 0; + } + } + if (((int)param_1->dwHighDateTime <= (int)param_4[1]) && + (((int)param_1->dwHighDateTime < (int)param_4[1] || (param_1->dwLowDateTime <= *param_4)))) { + return 0; + } + } + return 1; +} + + +``` + +## FUN_1008c670 at 1008c670 + +Signature: `undefined FUN_1008c670(void)` + +```c + +void FUN_1008c670(undefined4 *param_1,void **param_2) + +{ + int iVar1; + HRESULT HVar2; + void **ppvVar3; + undefined1 local_58 [8]; + BSTR local_50; + IID local_4c; + void *local_3c [4]; + undefined4 local_2c; + undefined4 local_28; + undefined2 local_24; + undefined4 local_20; + undefined4 local_1c; + undefined2 local_18; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10167188; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_4c.Data2 = 10; + local_4c.Data3 = 0; + local_1c = 10; + local_4c.Data1._0_1_ = 'd'; + local_4c.Data1._1_1_ = '\0'; + local_4c.Data1._2_1_ = 0xa5; + local_4c.Data1._3_1_ = '\0'; + local_20 = 0xa50064; + local_18 = 0; + FUN_10005170(local_14); + local_8 = 0; + ppvVar3 = param_2; + iVar1 = (**(code **)((int)*param_2 + 0x20)) + (param_2,0,&local_20,local_58._4_4_,local_4c.Data4 + 4,local_3c); + iVar1 = FUN_10048e60(iVar1 == 0,iVar1,0x14a,"CReferenceStringResolutionService.cpp"); + if (((iVar1 != 0) && (local_4c.Data4._4_2_ == 0xc0)) && ((short)local_3c[0] != 0)) { + HVar2 = (*(*(IUnknownVtbl **)local_58._4_4_)[0xc].QueryInterface) + ((IUnknown *)local_58._4_4_,(IID *)local_58,ppvVar3); + if (HVar2 < 0) { + _com_issue_errorex(HVar2,(IUnknown *)local_58._4_4_,(_GUID *)&DAT_1017ae18); + } + local_4c.Data1._0_1_ = local_58[0]; + local_4c.Data1._1_1_ = local_58[1]; + local_4c.Data1._2_1_ = 'j'; + local_4c.Data1._3_1_ = '\0'; + local_4c.Data2 = 10; + local_2c = CONCAT22(0x6a,local_58._0_2_); + local_4c.Data3 = 0; + local_28 = 10; + ppvVar3 = local_3c; + local_24 = 0; + iVar1 = (**(code **)((int)*param_2 + 0x20)) + (param_2,0,&local_2c,local_58._4_4_,local_4c.Data4 + 4); + iVar1 = FUN_10048e60(iVar1 == 0,iVar1,0x150,"CReferenceStringResolutionService.cpp"); + if (((iVar1 != 0) && (local_4c.Data4._4_2_ == 0xc0)) && ((short)local_3c[0] != 0)) { + local_4c.Data1._0_1_ = '\0'; + local_4c.Data1._1_1_ = '\0'; + local_4c.Data1._2_1_ = '\0'; + local_4c.Data1._3_1_ = '\0'; + local_4c.Data2 = 0; + local_4c.Data3 = 0; + HVar2 = (*(*(IUnknownVtbl **)local_58._4_4_)[10].QueryInterface) + ((IUnknown *)local_58._4_4_,&local_4c,ppvVar3); + iVar1 = FUN_10048e60(HVar2 == 0,HVar2,0x156,"CReferenceStringResolutionService.cpp"); + if (iVar1 != 0) { + *param_1 = CONCAT22(local_4c.Data1._2_2_,(undefined2)local_4c.Data1); + param_1[1] = CONCAT22(local_4c.Data3,local_4c.Data2); + local_8 = 0xffffffff; + FUN_10005220(); + goto LAB_1008c82d; + } + } + } + *param_1 = 0; + param_1[1] = 0; + local_8 = 0xffffffff; + if ((IUnknown *)local_58._4_4_ != (IUnknown *)0x0) { + (*(*(IUnknownVtbl **)local_58._4_4_)->Release)((IUnknown *)local_58._4_4_); + } + SysFreeString(local_50); +LAB_1008c82d: + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_1008c850 at 1008c850 + +Signature: `undefined FUN_1008c850(void)` + +```c + +void FUN_1008c850(undefined4 *param_1,void **param_2) + +{ + int iVar1; + HRESULT HVar2; + void **ppvVar3; + undefined1 local_58 [8]; + BSTR local_50; + IID local_4c; + void *local_3c [4]; + undefined4 local_2c; + undefined4 local_28; + undefined2 local_24; + undefined4 local_20; + undefined4 local_1c; + undefined2 local_18; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_101671b8; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_4c.Data2 = 10; + local_4c.Data3 = 0; + local_1c = 10; + local_4c.Data1._0_1_ = 'd'; + local_4c.Data1._1_1_ = '\0'; + local_4c.Data1._2_1_ = 0xa5; + local_4c.Data1._3_1_ = '\0'; + local_20 = 0xa50064; + local_18 = 0; + FUN_10005170(local_14); + local_8 = 0; + ppvVar3 = param_2; + iVar1 = (**(code **)((int)*param_2 + 0x20)) + (param_2,0,&local_20,local_58._4_4_,local_4c.Data4 + 4,local_3c); + iVar1 = FUN_10048e60(iVar1 == 0,iVar1,0x16c,"CReferenceStringResolutionService.cpp"); + if (((iVar1 != 0) && (local_4c.Data4._4_2_ == 0xc0)) && ((short)local_3c[0] != 0)) { + HVar2 = (*(*(IUnknownVtbl **)local_58._4_4_)[0xc].QueryInterface) + ((IUnknown *)local_58._4_4_,(IID *)local_58,ppvVar3); + if (HVar2 < 0) { + _com_issue_errorex(HVar2,(IUnknown *)local_58._4_4_,(_GUID *)&DAT_1017ae18); + } + local_4c.Data1._0_1_ = local_58[0]; + local_4c.Data1._1_1_ = local_58[1]; + local_4c.Data1._2_1_ = 'k'; + local_4c.Data1._3_1_ = '\0'; + local_4c.Data2 = 10; + local_2c = CONCAT22(0x6b,local_58._0_2_); + local_4c.Data3 = 0; + local_28 = 10; + ppvVar3 = local_3c; + local_24 = 0; + iVar1 = (**(code **)((int)*param_2 + 0x20)) + (param_2,0,&local_2c,local_58._4_4_,local_4c.Data4 + 4); + iVar1 = FUN_10048e60(iVar1 == 0,iVar1,0x172,"CReferenceStringResolutionService.cpp"); + if (((iVar1 != 0) && (local_4c.Data4._4_2_ == 0xc0)) && ((short)local_3c[0] != 0)) { + local_4c.Data1._0_1_ = '\0'; + local_4c.Data1._1_1_ = '\0'; + local_4c.Data1._2_1_ = '\0'; + local_4c.Data1._3_1_ = '\0'; + local_4c.Data2 = 0; + local_4c.Data3 = 0; + HVar2 = (*(*(IUnknownVtbl **)local_58._4_4_)[10].QueryInterface) + ((IUnknown *)local_58._4_4_,&local_4c,ppvVar3); + iVar1 = FUN_10048e60(HVar2 == 0,HVar2,0x178,"CReferenceStringResolutionService.cpp"); + if (iVar1 != 0) { + *param_1 = CONCAT22(local_4c.Data1._2_2_,(undefined2)local_4c.Data1); + param_1[1] = CONCAT22(local_4c.Data3,local_4c.Data2); + local_8 = 0xffffffff; + FUN_10005220(); + goto LAB_1008ca0d; + } + } + } + *param_1 = 0; + param_1[1] = 0; + local_8 = 0xffffffff; + if ((IUnknown *)local_58._4_4_ != (IUnknown *)0x0) { + (*(*(IUnknownVtbl **)local_58._4_4_)->Release)((IUnknown *)local_58._4_4_); + } + SysFreeString(local_50); +LAB_1008ca0d: + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_1008fb20 at 1008fb20 + +Signature: `undefined FUN_1008fb20(void)` + +```c + +void __fastcall FUN_1008fb20(undefined4 *param_1) + +{ + char cVar1; + UINT len; + BSTR pOVar2; + int iVar3; + int iVar4; + undefined4 uVar5; + undefined4 uVar6; + + if ((BSTR)*param_1 == (BSTR)0x0) { + return; + } + len = SysStringByteLen((BSTR)*param_1); + pOVar2 = SysAllocStringByteLen((LPCSTR)*param_1,len); + if (pOVar2 != (BSTR)0x0) { + return; + } + iVar3 = FUN_10022ff0(); + if (*(int *)(iVar3 + 0xac) == 0) { + iVar4 = FUN_1002f080(); + if (iVar4 == 0) { + uVar5 = 0; + goto LAB_1008fb68; + } + } + uVar5 = *(undefined4 *)(iVar3 + 0xac); +LAB_1008fb68: + uVar6 = 0; + FUN_10022ff0(uVar5,0); + cVar1 = FUN_10022ba0(uVar5,uVar6); + if (cVar1 != '\0') { + uVar5 = FUN_10022ff0(L"Fail to allocate %ld bytes in AAComBSTR::Copy()",len); + FUN_10022cb0(uVar5); + } + /* WARNING: Subroutine does not return */ + FUN_1005bf30(0x8007000e,0, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\MagellanPublic\\Includes\\ClassUtilities\\AAComBSTR.h" + ,0x8b); +} + + +``` + +## FUN_100934d0 at 100934d0 + +Signature: `undefined FUN_100934d0(void)` + +```c + +int __thiscall FUN_100934d0(undefined4 *param_1,int *param_2) + +{ + int *piVar1; + int iVar2; + BSTR pOVar3; + undefined4 local_18; + undefined4 local_14; + int local_10; + uint local_c; + UINT local_8; + + piVar1 = param_2; + if (param_2 == (int *)0x0) { + return -0x7ff8ffa9; + } + SysFreeString((BSTR)*param_1); + *param_1 = 0; + local_10 = (**(code **)(*piVar1 + 0x14))(piVar1,0,0,1,&local_18); + local_8 = 0; + local_c = 0; + iVar2 = (**(code **)(*piVar1 + 0xc))(piVar1,&local_c,4,&local_8); + if (iVar2 < 0) goto LAB_100935e9; + if (local_8 != 4) { + iVar2 = -0x7fffbffb; + goto LAB_100935e9; + } + if (local_c != 0) { + if (local_c < 2) { + iVar2 = -0x7fffbffb; + goto LAB_100935e9; + } + if (0x100000 < local_c) { + iVar2 = -0x7ff8fffb; + goto LAB_100935e9; + } + local_c = local_c - 2; + pOVar3 = SysAllocStringByteLen((LPCSTR)0x0,local_c); + *param_1 = pOVar3; + if (pOVar3 == (BSTR)0x0) { + iVar2 = -0x7ff8fff2; + goto LAB_100935e9; + } + iVar2 = (**(code **)(*piVar1 + 0xc))(piVar1,pOVar3,local_c,&local_8); + if (-1 < iVar2) { + if (local_8 == local_c) { + iVar2 = (**(code **)(*piVar1 + 0xc))(piVar1,¶m_2,2,&local_8); + if (iVar2 < 0) goto LAB_100935d6; + if ((local_8 == 2) && ((short)param_2 == 0)) { + return iVar2; + } + } + iVar2 = -0x7fffbffb; + } +LAB_100935d6: + SysFreeString((BSTR)*param_1); + *param_1 = 0; + } + if (-1 < iVar2) { + return iVar2; + } +LAB_100935e9: + if (-1 < local_10) { + (**(code **)(*piVar1 + 0x14))(piVar1,local_18,local_14,0,0); + } + return iVar2; +} + + +``` + +## FUN_10093680 at 10093680 + +Signature: `undefined FUN_10093680(void)` + +```c + +bool FUN_10093680(int *param_1,undefined4 param_2) + +{ + int iVar1; + undefined4 local_8; + + local_8 = 0; + iVar1 = (**(code **)(*param_1 + 0x10))(param_1,param_2,0x10,&local_8); + return iVar1 == 0; +} + + +``` + +## FUN_10093780 at 10093780 + +Signature: `undefined FUN_10093780(void)` + +```c + +int __thiscall FUN_10093780(undefined4 *param_1,int *param_2) + +{ + int *piVar1; + int iVar2; + UINT UVar3; + undefined4 *local_8; + + piVar1 = param_2; + if (param_2 == (int *)0x0) { + return -0x7ff8ffa9; + } + iVar2 = 4; + local_8 = param_1; + if ((BSTR)*param_1 != (BSTR)0x0) { + UVar3 = SysStringByteLen((BSTR)*param_1); + iVar2 = UVar3 + 6; + } + param_2 = (int *)(iVar2 + -4); + iVar2 = (**(code **)(*piVar1 + 0x10))(piVar1,¶m_2,4,&local_8); + if (-1 < iVar2) { + if (param_2 == (int *)0x0) { + return 0; + } + iVar2 = (**(code **)(*piVar1 + 0x10))(piVar1,*param_1,param_2,&local_8); + } + return iVar2; +} + + +``` + +## FUN_10093800 at 10093800 + +Signature: `undefined FUN_10093800(void)` + +```c + +bool FUN_10093800(undefined4 param_1,OLECHAR *param_2) + +{ + int iVar1; + BSTR bstrString; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10167cb8; + local_10 = ExceptionList; + ExceptionList = &local_10; + if (param_2 == (OLECHAR *)0x0) { + bstrString = (BSTR)0x0; + } + else { + bstrString = SysAllocString(param_2); + if (bstrString == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + local_8 = 0; + iVar1 = FUN_10093780(param_1); + local_8 = 0xffffffff; + SysFreeString(bstrString); + ExceptionList = local_10; + return iVar1 == 0; +} + + +``` + +## FUN_1005f700 at 1005f700 + +Signature: `undefined FUN_1005f700(void)` + +```c + +void __thiscall FUN_1005f700(undefined4 *param_1,undefined4 param_2) + +{ + int iVar1; + + iVar1 = (**(code **)(*(int *)*param_1 + 0x44))((int *)*param_1,param_2); + if (iVar1 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar1,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x75); + } + return; +} + + +``` + +## FUN_1005f730 at 1005f730 + +Signature: `undefined FUN_1005f730(void)` + +```c + +undefined1 * __thiscall FUN_1005f730(int *param_1,int *param_2) + +{ + undefined4 *puVar1; + undefined1 *puVar2; + uint uVar3; + int iVar4; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puVar2 = (undefined1 *)param_2; + puStack_c = &LAB_1015db38; + local_10 = ExceptionList; + uVar3 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + *(undefined1 *)param_2 = 0; + *(undefined4 *)((int)param_2 + 2) = 0; + *(undefined4 *)((int)param_2 + 6) = 0; + *(undefined4 *)((int)param_2 + 10) = 0; + *(undefined4 *)((int)param_2 + 0xe) = 0; + *(undefined2 *)((int)param_2 + 0x12) = 0; + puVar1 = (undefined4 *)*param_1; + param_2 = (int *)0x0; + local_8 = 1; + if (puVar1 != (undefined4 *)0x0) { + (**(code **)*puVar1)(puVar1,&DAT_1017b690,¶m_2,uVar3); + } + local_8 = 2; + iVar4 = (**(code **)(*param_2 + 0xc))(param_2,puVar2); + if (iVar4 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar4,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x7f); + } + local_8 = 0xffffffff; + if (param_2 != (int *)0x0) { + (**(code **)(*param_2 + 8))(param_2); + } + ExceptionList = local_10; + return puVar2; +} + + +``` + +## FUN_1008f8b0 at 1008f8b0 + +Signature: `undefined FUN_1008f8b0(void)` + +```c + +void __thiscall +FUN_1008f8b0(void *param_1,undefined4 *param_2,undefined4 param_3,uint param_4,undefined4 param_5, + undefined4 param_6,undefined4 param_7,uint param_8) + +{ + undefined2 uVar1; + uint uVar2; + char cVar3; + ushort uVar4; + uint uVar5; + uint uVar6; + uint uVar7; + undefined4 uVar8; + undefined4 uVar9; + basic_ostream_> *pbVar10; + bool bVar11; + wchar_t *pwVar12; + wchar_t *pwVar13; + wchar_t *pwVar14; + undefined *puVar15; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var16; + ushort local_fc8; + short sStack_fc6; + undefined2 uStack_fc4; + undefined4 local_fc0; + undefined4 local_fbc; + + uVar5 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + local_fbc = param_4; + uVar2 = local_fbc; + local_fc8 = (ushort)param_8; + sStack_fc6 = (short)(param_8 >> 0x10); + uVar4 = (ushort)((uint)param_3 >> 0x10); + if ((((uVar4 != 0) && (local_fbc._0_2_ = (short)param_4, (short)local_fbc != 0)) && + (uVar4 != *(ushort *)((int)param_1 + 0x2ae))) && + ((local_fc8 == *(ushort *)((int)param_1 + 0x2ae) && + (sStack_fc6 == *(short *)((int)param_1 + 0x2ac))))) { + uVar6 = FUN_1008f0f0(); + uVar7 = FUN_1008f120(); + if ((uVar4 == uVar7) && (((param_4 & 0xffff) == uVar6 || (uVar6 == 0xffffffff)))) { + uVar1 = *(undefined2 *)((int)param_1 + 0x2ae); + local_fc0 = CONCAT22(uVar1,(short)param_3); + bVar11 = (short)local_fbc != 1; + local_fbc = uVar2; + if (bVar11) { + local_fbc = CONCAT22((short)(param_4 >> 0x10),*(undefined2 *)((int)param_1 + 0x2ac)); + } + cVar3 = FUN_100408d0(); + param_3 = local_fc0; + uVar2 = local_fbc; + if (cVar3 != '\0') { + uVar8 = FUN_10022ff0(L"AccessManager::FixUpMxHandle - object partner redirected to " + ,uVar4,param_4 & 0xffff,param_8 & 0xffff,sStack_fc6,uVar1, + local_fbc & 0xffff); + FUN_10022d50(uVar8); + } + } + } + local_fbc = uVar2; + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + uVar9 = FUN_100041f0(param_3,local_fbc,param_5,param_6,param_7); + uVar8 = CONCAT22(uStack_fc4,sStack_fc6); + puVar15 = &DAT_1017ef50; + pwVar14 = L" engine "; + pwVar13 = L" partner_>:: + operator<<(*(basic_ostream_> ** + )(DAT_101d6474 + 0x38),param_1); + uVar8 = FUN_1001a0e0(pbVar10,pwVar12,uVar9,pwVar13,param_8,pwVar14,uVar8,puVar15); + uVar8 = FUN_1001a0e0(uVar8); + FUN_1001a0e0(uVar8); + uVar8 = FUN_10022870(); + FUN_1001a0e0(uVar8); + uVar8 = FUN_10022870(); + pbVar10 = (basic_ostream_> *) + FUN_1001a0e0(uVar8); + std::basic_ostream_>::operator<< + (pbVar10,p_Var16); + } + *param_2 = param_3; + param_2[1] = local_fbc; + param_2[2] = param_5; + param_2[3] = param_6; + param_2[4] = param_7; + __security_check_cookie(uVar5 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10141bb0 at 10141bb0 + +Signature: `undefined FUN_10141bb0(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __thiscall FUN_10141bb0(int param_1,undefined1 param_2,undefined4 param_3) + +{ + int iVar1; + char cVar2; + uint uVar3; + undefined4 uVar4; + basic_ostream_> *pbVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + bool local_1394; + + uVar3 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + local_1394 = false; + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + uVar4 = FUN_1002f5f0(param_3); + p_Var6 = endl_exref; + uVar4 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::InitializeWithPreboundReference - ENTER pReference ",uVar4); + pbVar5 = (basic_ostream_> *) + FUN_1001a0e0(uVar4); + std::basic_ostream_>::operator<< + (pbVar5,p_Var6); + } + iVar1 = *(int *)(param_1 + 0xa4); + if (((((iVar1 == 1) || (iVar1 == 2)) || (iVar1 == 6)) || ((iVar1 == 8 || (iVar1 == 10)))) || + (iVar1 == 0xb)) { + local_1394 = true; + } + else { + FUN_1004c320(param_3); + *(undefined1 *)(param_1 + 0x154) = param_2; + if ((((char)*(uint *)(param_1 + 0x1c) != '\0') && (*(uint *)(param_1 + 0x1c) >> 0x10 != 0)) && + (((short)*(uint *)(param_1 + 0x20) != 0 && + ((*(uint *)(param_1 + 0x20) >> 0x10 != 0 && (*(short *)(param_1 + 0x26) != 0)))))) { + cVar2 = FUN_10001360(); + if (cVar2 == '\0') { + FUN_101392c0(3,"Reference.cpp",0xca3); + FUN_10141580(); + } + else { + FUN_101392c0(8,"Reference.cpp",0xc99); + FUN_10133cb0(param_1 + 4,param_1 + 0xc,0); + } + local_1394 = true; + } + } + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var6 = endl_exref; + pbVar5 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::InitializeWithPreboundReference - EXIT rc "); + pbVar5 = std::basic_ostream_>::operator<< + (pbVar5,local_1394); + std::basic_ostream_>::operator<< + (pbVar5,p_Var6); + } + __security_check_cookie(uVar3 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10141d60 at 10141d60 + +Signature: `undefined FUN_10141d60(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __thiscall FUN_10141d60(int param_1,int *param_2,int param_3) + +{ + uint uVar1; + uint uVar2; + int *piVar3; + char cVar4; + undefined4 uVar5; + basic_ostream_> *pbVar6; + UINT UVar7; + int iVar8; + int iVar9; + int iVar10; + int iVar11; + bool bVar12; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var13; + int local_15b0; + undefined1 local_15ac; + byte bStack_15ab; + undefined2 uStack_15aa; + undefined2 local_15a8; + ushort uStack_15a6; + undefined2 local_15a4; + undefined2 uStack_15a2; + short local_15a0; + undefined2 uStack_159e; + undefined2 local_159c; + undefined2 uStack_159a; + wchar_t local_210 [260]; + uint local_8; + + local_8 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + local_15b0 = param_3; + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + uVar5 = FUN_1002f5f0(param_3); + swprintf_s(local_210,0x104,L"", + (int)(short)*param_2,param_2[1],param_2[2],(int)(short)param_2[3]); + p_Var13 = endl_exref; + uVar5 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::PreboundReferenceResolved - ENTER status ",local_210, + L" pReference ",uVar5); + uVar5 = FUN_1001a0e0(uVar5); + uVar5 = FUN_1001a0e0(uVar5); + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(uVar5); + std::basic_ostream_>::operator<< + (pbVar6,p_Var13); + param_3 = local_15b0; + } + if ((short)*param_2 == -1) { + if (*(BSTR *)(param_1 + 0x16c) != (BSTR)0x0) { + UVar7 = SysStringLen(*(BSTR *)(param_1 + 0x16c)); + if (UVar7 != 0) goto LAB_10142175; + } + FUN_1004c320(param_3); + uVar1 = *(uint *)(param_1 + 0x1c); + uVar2 = *(uint *)(param_1 + 0x20); + local_159c = *(undefined2 *)(param_1 + 0x24); + local_15a4 = (undefined2)uVar1; + uStack_15a2 = (undefined2)(uVar1 >> 0x10); + local_15a0 = (short)uVar2; + uStack_159e = (undefined2)(uVar2 >> 0x10); + if (((((char)uVar1 == '\0') || (uVar1 >> 0x10 == 0)) || (local_15a0 == 0)) || + ((uVar2 >> 0x10 == 0 || (*(short *)(param_1 + 0x26) == 0)))) { + FUN_101392c0(4,"Reference.cpp",0xccc); + local_15a8 = 0; + local_159c = 6; + FUN_10100da0((uint)uStack_15a6 << 0x10,4,0,CONCAT22(uStack_159a,6),"Reference.cpp",0xcce); + uStack_15aa = 0; + local_15a8 = 0; + uStack_15a2 = 0; + local_15a0 = 0; + uStack_15a6 = 0; + local_15a4 = 0; + uStack_159e = 0; + local_159c = 0; + uStack_159a = 0; + local_15ac = 0; + *(uint *)(param_1 + 0x1c) = (uint)bStack_15ab << 8; + *(undefined4 *)(param_1 + 0x20) = 0; + *(undefined4 *)(param_1 + 0x24) = 0; + *(undefined4 *)(param_1 + 0x28) = 0; + *(undefined4 *)(param_1 + 0x2c) = 0; + local_15b0 = param_1 + 0x10; + FUN_10073b80(&local_15b0,0); + FUN_10138180("Reference.cpp",0xcd6); + piVar3 = *(int **)(param_1 + 0x1a8); + if ((piVar3 != (int *)0x0) && (*(char *)(param_1 + 0x1bc) != '\0')) { + if (*(int *)(param_1 + 0x108) == 0) { + DAT_101d8c50 = DAT_101d8c50 + 1; + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + iVar11 = 0xce2; + p_Var13 = endl_exref; + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x40), + L"no outstanding references refering to this reference callback will not be called line " + ,0xce2,L" file ","Reference.cpp"); + pbVar6 = std::basic_ostream_>:: + operator<<(pbVar6,iVar11); + uVar5 = FUN_1001a0e0(pbVar6); + pbVar6 = (basic_ostream_> *) + FUN_1001dc00(uVar5); + std::basic_ostream_>::operator<< + (pbVar6,p_Var13); + } + } + else if (*(char *)(param_1 + 0x156) == '\0') { + (**(code **)(*piVar3 + 0xc))(piVar3,*(undefined4 *)(param_1 + 0x1ac)); + } + } + } + else { + FUN_101392c0(3,"Reference.cpp",0xcc3); + FUN_10040470(*(undefined2 *)(param_1 + 0x1e)); + FUN_10141580(); + } + } + else { + if (param_2[1] == 3) { + FUN_101392c0(5,"Reference.cpp",0xcf3); + uVar5 = 0xcf4; + local_15a8 = 0; + iVar11 = (uint)uStack_15a6 << 0x10; + iVar9 = 0; + local_159c = 7; + iVar10 = 3; + iVar8 = CONCAT22(uStack_159a,7); + } + else { + FUN_101392c0(0,"Reference.cpp",0xcfb); + iVar11 = *param_2; + iVar10 = param_2[1]; + uVar5 = 0xcfc; + iVar9 = param_2[2]; + iVar8 = param_2[3]; + } + FUN_10100da0(iVar11,iVar10,iVar9,iVar8,"Reference.cpp",uVar5); + uStack_15aa = 0; + local_15a8 = 0; + uStack_15a2 = 0; + local_15a0 = 0; + uStack_15a6 = 0; + local_15a4 = 0; + uStack_159e = 0; + local_159c = 0; + uStack_159a = 0; + local_15ac = 0; + *(uint *)(param_1 + 0x1c) = (uint)bStack_15ab << 8; + *(undefined4 *)(param_1 + 0x20) = 0; + *(undefined4 *)(param_1 + 0x24) = 0; + local_15b0 = param_1 + 0x10; + *(undefined4 *)(param_1 + 0x28) = 0; + *(undefined4 *)(param_1 + 0x2c) = 0; + FUN_10073b80(&local_15b0,0); + FUN_10138180("Reference.cpp",0xd07); + } +LAB_10142175: + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + bVar12 = true; + p_Var13 = endl_exref; + pbVar6 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x34), + L"Reference::PreboundReferenceResolved - EXIT rc "); + pbVar6 = std::basic_ostream_>::operator<< + (pbVar6,bVar12); + std::basic_ostream_>::operator<< + (pbVar6,p_Var13); + } + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + diff --git a/analysis/ghidra/exports/Lmx.dll.reference-resolver-decompile.md b/analysis/ghidra/exports/Lmx.dll.reference-resolver-decompile.md new file mode 100644 index 0000000..176a967 --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.reference-resolver-decompile.md @@ -0,0 +1,2968 @@ +# Lmx.dll selected decompile + +## FUN_1008c120 at 1008c120 + +Signature: `undefined FUN_1008c120(void)` + +```c + +void __thiscall FUN_1008c120(int param_1,int param_2,short *param_3) + +{ + int *piVar1; + char cVar2; + basic_ostream_> *pbVar3; + undefined4 uVar4; + int iVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + wchar_t local_210 [260]; + uint local_8; + + local_8 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + for (piVar1 = (int *)**(int **)(param_1 + 0x1c); + (piVar1 != *(int **)(param_1 + 0x1c) && (param_2 != piVar1[2])); piVar1 = (int *)*piVar1) { + } + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + swprintf_s(local_210,0x104,L"", + (int)(short)*(undefined4 *)param_3,*(undefined4 *)(param_3 + 2), + *(undefined4 *)(param_3 + 4),(int)param_3[6]); + p_Var6 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L"CReferenceStringResolutionService::OperationComplete - correlationId ", + param_2,L" status ",local_210); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,param_2); + uVar4 = FUN_1001a0e0(pbVar3); + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(uVar4); + std::basic_ostream_>::operator<< + (pbVar3,p_Var6); + } + if (piVar1 == *(int **)(param_1 + 0x1c)) { + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var6 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - failed to find correlationId in boundReferencesPendingResponse" + ); + std::basic_ostream_>::operator<< + (pbVar3,p_Var6); + } + } + else { + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var6 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - rcvd valid response" + ); + std::basic_ostream_>::operator<< + (pbVar3,p_Var6); + } + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + uVar4 = FUN_10047fe0(piVar1[7],piVar1[8],piVar1[9],piVar1[10]); + iVar5 = piVar1[6]; + p_Var6 = endl_exref; + uVar4 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - client engine ", + piVar1 + 3,L" client corelation id ",iVar5,L" guid ",uVar4); + uVar4 = FUN_1001db00(uVar4); + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(uVar4); + pbVar3 = std::basic_ostream_>:: + operator<<(pbVar3,iVar5); + uVar4 = FUN_1001a0e0(pbVar3); + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(uVar4); + std::basic_ostream_>::operator<< + (pbVar3,p_Var6); + } + if ((*param_3 == 0) && (*(int *)(param_3 + 2) == 3)) { + *(int *)(param_1 + 0x48) = *(int *)(param_1 + 0x48) + 1; + cVar2 = FUN_100408d0(); + if (cVar2 != '\0') { + p_Var6 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - resubmitting bind response" + ); + std::basic_ostream_>::operator<< + (pbVar3,p_Var6); + } + FUN_1010ad00(0,piVar1 + 3,0x11,piVar1[0xb],0,2,param_1,piVar1[2],0,0,0); + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; + } + if ((int *)piVar1[0xb] != (int *)0x0) { + (**(code **)(*(int *)piVar1[0xb] + 0x38))(1); + } + if (piVar1 != *(int **)(param_1 + 0x1c)) { + *(int *)piVar1[1] = *piVar1; + *(int *)(*piVar1 + 4) = piVar1[1]; + operator_delete(piVar1); + *(int *)(param_1 + 0x20) = *(int *)(param_1 + 0x20) + -1; + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; + } + } + __security_check_cookie(local_8 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_1008d760 at 1008d760 + +Signature: `undefined FUN_1008d760(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __fastcall FUN_1008d760(int param_1) + +{ + int iVar1; + int *piVar2; + char cVar3; + basic_ostream_> *pbVar4; + int iVar5; + undefined4 uVar6; + undefined4 *puVar7; + uint uVar8; + undefined1 *puVar9; + int *piVar10; + undefined4 *puVar11; + long lVar12; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var13; + undefined4 local_1c48; + undefined4 local_1c44 [9]; + undefined1 local_1c20 [4]; + undefined1 local_1c1c [8]; + int *local_1c14; + BSTR local_1c10; + undefined1 local_1c0c [8]; + undefined4 local_1c04; + undefined4 local_1c00; + void *local_1bf8; + int local_1bf4; + int local_1bf0; + int *local_1bec; + BSTR local_1be8; + int local_1be4; + int *local_1be0; + char local_1bd9; + undefined4 local_1bd8; + undefined4 local_1bd4; + undefined4 local_1bd0; + undefined4 local_1bcc; + undefined4 local_20; + undefined4 local_1c; + undefined2 local_18; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puStack_c = &LAB_10167405; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_1be4 = 0; + local_1be0 = (int *)0x0; + local_8 = 1; + local_1bf4 = param_1; + if (*(int *)(param_1 + 0x14) != 0) { + cVar3 = FUN_100408d0(local_14); + if (cVar3 != '\0') { + uVar8 = *(uint *)(param_1 + 0x14); + p_Var13 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L"CReferenceStringResolutionService::ProcessPendingClientRequests - bindRequests queue size " + ); + pbVar4 = std::basic_ostream_>:: + operator<<(pbVar4,uVar8); + std::basic_ostream_>::operator<< + (pbVar4,p_Var13); + } + iVar5 = (**(code **)(**(int **)(param_1 + 0xc) + 0x1c))(*(int **)(param_1 + 0xc),1,&local_1be0); + iVar5 = FUN_10048e60(iVar5 == 0,iVar5,0x5f,"CReferenceStringResolutionService.cpp"); + if (iVar5 != 0) { + local_1bf0 = 0; + iVar5 = (**(code **)(*local_1be0 + 0x54))(local_1be0,&local_1bf0); + iVar5 = FUN_10048e60(iVar5 == 0,iVar5,0x65,"CReferenceStringResolutionService.cpp"); + if ((iVar5 != 0) && (4 < local_1bf0)) { + FUN_1008c670(local_1c0c,local_1be0); + FUN_1008c850(local_1c1c,local_1be0); + piVar10 = (int *)**(int **)(param_1 + 0x10); + if (piVar10 != *(int **)(param_1 + 0x10)) { + do { + if (99 < local_1be4) break; + FUN_10005170(); + local_8 = CONCAT31(local_8._1_3_,2); + local_1bd9 = '\0'; + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + p_Var13 = endl_exref; + uVar6 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L"request - source ", + piVar10[2] + 0x14); + pbVar4 = (basic_ostream_> *) + FUN_1001db00(uVar6); + std::basic_ostream_>:: + operator<<(pbVar4,p_Var13); + } + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + lVar12 = *(long *)(piVar10[2] + 0x30); + p_Var13 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - corelationId ") + ; + pbVar4 = std::basic_ostream_>:: + operator<<(pbVar4,lVar12); + std::basic_ostream_>:: + operator<<(pbVar4,p_Var13); + } + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + iVar5 = piVar10[2]; + uVar6 = FUN_10047fe0(*(undefined4 *)(iVar5 + 0x20),*(undefined4 *)(iVar5 + 0x24), + *(undefined4 *)(iVar5 + 0x28),*(undefined4 *)(iVar5 + 0x2c)); + p_Var13 = endl_exref; + uVar6 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - guid ",uVar6); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar6); + std::basic_ostream_>:: + operator<<(pbVar4,p_Var13); + } + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + uVar6 = FUN_1002f5f0(*(undefined4 *)piVar10[2]); + p_Var13 = endl_exref; + uVar6 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - ref ",uVar6); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar6); + std::basic_ostream_>:: + operator<<(pbVar4,p_Var13); + } + cVar3 = FUN_1008af90(local_1c0c,local_1c1c,piVar10[2] + 0x34,piVar10[2] + 0x44, + piVar10[2] + 0x4c); + piVar2 = local_1be0; + if (cVar3 == '\0') { + *(int *)(param_1 + 0x44) = *(int *)(param_1 + 0x44) + 1; + } + else { + local_1c00 = 10; + local_18 = 0; + local_1c04 = 0x640064; + local_1c = 10; + local_20 = 0x640064; + puVar7 = (undefined4 *)FUN_100054b0(*(undefined4 *)piVar10[2]); + local_8._0_1_ = 3; + (**(code **)(*piVar2 + 0x24))(piVar2,&local_20,*puVar7,local_1bec,&local_1bd8); + local_8 = CONCAT31(local_8._1_3_,2); + if (local_1c14 != (int *)0x0) { + (**(code **)(*local_1c14 + 8))(local_1c14); + } + SysFreeString(local_1c10); + if ((short)local_1bd8 == 0) { + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + uVar6 = FUN_10003fc0(local_1bd8,local_1bd4,local_1bd0,local_1bcc); + p_Var13 = endl_exref; + uVar6 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - bind reference failed ",uVar6); + pbVar4 = (basic_ostream_> * + )FUN_1001a0e0(uVar6); + std::basic_ostream_>:: + operator<<(pbVar4,p_Var13); + } + *(int *)(param_1 + 0x40) = *(int *)(param_1 + 0x40) + 1; + } + else { + local_1bd9 = '\x01'; + } + } + local_1bf8 = operator_new(0x14); + local_8._0_1_ = 4; + if (local_1bf8 == (void *)0x0) { + iVar5 = 0; + } + else { + iVar5 = FUN_10031c20(8); + } + local_8 = CONCAT31(local_8._1_3_,2); + cVar3 = FUN_10048d60(iVar5 != 0,0x8d,"CReferenceStringResolutionService.cpp"); + if (cVar3 == '\0') { + piVar10 = (int *)*piVar10; + } + else { + cVar3 = FUN_100408d0(); + if (cVar3 != '\0') { + uVar6 = FUN_100300d0(local_1bec); + p_Var13 = endl_exref; + uVar6 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - bound ref ", + uVar6); + pbVar4 = (basic_ostream_> *) + FUN_1001a0e0(uVar6); + std::basic_ostream_>:: + operator<<(pbVar4,p_Var13); + } + FUN_10060d10(0x11,iVar5); + uVar8 = FUN_10003390(0x11); + local_1bf8 = (void *)(uVar8 & 0xffff); + FUN_10063d90(&local_1bf8,iVar5); + FUN_1008cfd0(piVar10[2] + 0x30,iVar5); + FUN_1005e4c0(piVar10[2] + 0x20,iVar5); + if (local_1bd9 == '\0') { + FUN_1005e3f0(piVar10[2] + 0x44,iVar5); + puVar9 = (undefined1 *)(piVar10[2] + 0x4c); + } + else { + FUN_1005e3f0(local_1c0c,iVar5); + puVar9 = local_1c1c; + } + FUN_1005e3f0(puVar9,iVar5); + FUN_1008d000(&local_1bd9,iVar5); + (**(code **)(*local_1bec + 0x18))(local_1bec,iVar5,1); + *(int *)(param_1 + 8) = *(int *)(param_1 + 8) + 1; + FUN_1010ad00(0,piVar10[2] + 0x14,0x11,iVar5,0,2,param_1,*(undefined4 *)(param_1 + 8),0 + ,0,0); + iVar1 = piVar10[2]; + puVar7 = (undefined4 *) + FUN_1008af30(iVar5,piVar10[2] + 0x14,*(undefined4 *)(piVar10[2] + 0x30), + *(undefined4 *)(iVar1 + 0x20),*(undefined4 *)(iVar1 + 0x24), + *(undefined4 *)(iVar1 + 0x28),*(undefined4 *)(iVar1 + 0x2c)); + local_1c48 = *(undefined4 *)(param_1 + 8); + puVar11 = local_1c44; + for (iVar5 = 9; param_1 = local_1bf4, iVar5 != 0; iVar5 = iVar5 + -1) { + *puVar11 = *puVar7; + puVar7 = puVar7 + 1; + puVar11 = puVar11 + 1; + } + FUN_1008cb90(&local_1c48); + if (piVar10[2] != 0) { + FUN_1008b9a0(1); + } + puVar7 = (undefined4 *)FUN_1008bd20(local_1c20,piVar10); + piVar10 = (int *)*puVar7; + } + local_8 = CONCAT31(local_8._1_3_,1); + if (local_1bec != (int *)0x0) { + (**(code **)(*local_1bec + 8))(local_1bec); + } + SysFreeString(local_1be8); + local_1be4 = local_1be4 + 1; + } while (piVar10 != *(undefined4 **)(param_1 + 0x10)); + } + } + } + } + local_8 = 0xffffffff; + if (local_1be0 != (int *)0x0) { + (**(code **)(*local_1be0 + 8))(local_1be0); + } + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_1008f310 at 1008f310 + +Signature: `undefined FUN_1008f310(void)` + +```c + +void __fastcall FUN_1008f310(int param_1) + +{ + int iVar1; + int iVar2; + int iVar3; + int iVar4; + int iVar5; + int iVar6; + int iVar7; + int iVar8; + int iVar9; + char cVar10; + uint uVar11; + DWORD DVar12; + basic_ostream_> *pbVar13; + undefined4 uVar14; + int *piVar15; + int *piVar16; + long lVar17; + int iVar18; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var19; + uint uVar20; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10167748; + local_10 = ExceptionList; + uVar11 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + piVar15 = (int *)**(int **)(param_1 + 0x18); + uVar20 = uVar11; + if (piVar15 != *(int **)(param_1 + 0x18)) { + do { + DVar12 = GetTickCount(); + if (DVar12 - piVar15[0x11] < 60000) { + piVar16 = (int *)*piVar15; + } + else { + piVar15[0x11] = DVar12; + iVar1 = piVar15[0xd]; + iVar2 = piVar15[3]; + iVar3 = piVar15[0xe]; + iVar4 = piVar15[0x10]; + iVar5 = piVar15[0xf]; + iVar6 = piVar15[0xb]; + iVar7 = piVar15[9]; + iVar8 = piVar15[10]; + iVar9 = piVar15[0xc]; + *(int *)(param_1 + 0x50) = *(int *)(param_1 + 0x50) + 1; + iVar18 = *(int *)(DAT_101d6474 + 0x38); + if (*(int *)(iVar18 + 4) == 0) { +LAB_1008f47a: + cVar10 = '\0'; + } + else { + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 0; + FUN_10003a90(uVar20); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + uVar14 = *(undefined4 *)(iVar18 + 4); + if (DAT_101d6374 == -1) { + if (DAT_101d6370 == 0) { + FUN_10015ea0(); + if (DAT_101d6370 != 0) goto LAB_1008f434; + } + else { +LAB_1008f434: + if (DAT_101d640c != (code *)0x0) { + (*DAT_101d640c)(&DAT_101d6374); + } + } + if (DAT_101d6374 == -1) goto LAB_1008f47a; + FUN_10003d20(); + } + if (DAT_101d6414 == (code *)0x0) goto LAB_1008f47a; + cVar10 = (*DAT_101d6414)(DAT_101d6374,uVar14,0); + if (cVar10 == '\0') goto LAB_1008f47a; + cVar10 = '\x01'; + } + if (*(char *)(iVar18 + 8) != cVar10) { + *(char *)(iVar18 + 8) = cVar10; + FUN_100312d0(); + } + if (*(char *)(iVar18 + 8) != '\0') { + lVar17 = 60000; + p_Var19 = endl_exref; + pbVar13 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L"CReferenceStringResolver::ProcessPendingGRReferenceBindRequests - following reference not bound withing " + ,60000,&DAT_1018b564); + pbVar13 = std::basic_ostream_>:: + operator<<(pbVar13,lVar17); + pbVar13 = (basic_ostream_> *) + FUN_1001a0e0(pbVar13); + std::basic_ostream_>::operator<< + (pbVar13,p_Var19); + } + iVar18 = *(int *)(DAT_101d6474 + 0x38); + if (*(int *)(iVar18 + 4) == 0) { +LAB_1008f587: + cVar10 = '\0'; + } + else { + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 1; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + uVar14 = *(undefined4 *)(iVar18 + 4); + if (DAT_101d6374 == -1) { + if (DAT_101d6370 == 0) { + FUN_10015ea0(); + if (DAT_101d6370 != 0) goto LAB_1008f541; + } + else { +LAB_1008f541: + if (DAT_101d640c != (code *)0x0) { + (*DAT_101d640c)(&DAT_101d6374); + } + } + if (DAT_101d6374 == -1) goto LAB_1008f587; + FUN_10003d20(); + } + if (DAT_101d6414 == (code *)0x0) goto LAB_1008f587; + cVar10 = (*DAT_101d6414)(DAT_101d6374,uVar14,0); + if (cVar10 == '\0') goto LAB_1008f587; + cVar10 = '\x01'; + } + if (*(char *)(iVar18 + 8) != cVar10) { + *(char *)(iVar18 + 8) = cVar10; + FUN_100312d0(); + } + if (*(char *)(iVar18 + 8) != '\0') { + p_Var19 = endl_exref; + uVar14 = (**(code **)(*(int *)piVar15[3] + 8))(); + uVar14 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - ref ",uVar14); + pbVar13 = (basic_ostream_> *) + FUN_1001a0e0(uVar14); + std::basic_ostream_>::operator<< + (pbVar13,p_Var19); + } + iVar18 = *(int *)(DAT_101d6474 + 0x38); + if (*(int *)(iVar18 + 4) == 0) { +LAB_1008f68d: + cVar10 = '\0'; + } + else { + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 2; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + uVar14 = *(undefined4 *)(iVar18 + 4); + if (DAT_101d6374 == -1) { + if (DAT_101d6370 == 0) { + FUN_10015ea0(); + if (DAT_101d6370 != 0) goto LAB_1008f647; + } + else { +LAB_1008f647: + if (DAT_101d640c != (code *)0x0) { + (*DAT_101d640c)(&DAT_101d6374); + } + } + if (DAT_101d6374 == -1) goto LAB_1008f68d; + FUN_10003d20(); + } + if (DAT_101d6414 == (code *)0x0) goto LAB_1008f68d; + cVar10 = (*DAT_101d6414)(DAT_101d6374,uVar14,0); + if (cVar10 == '\0') goto LAB_1008f68d; + cVar10 = '\x01'; + } + if (*(char *)(iVar18 + 8) != cVar10) { + *(char *)(iVar18 + 8) = cVar10; + FUN_100312d0(); + } + if (*(char *)(iVar18 + 8) != '\0') { + uVar14 = FUN_10047fe0(piVar15[5],piVar15[6],piVar15[7],piVar15[8]); + p_Var19 = endl_exref; + uVar14 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - guid ",uVar14); + pbVar13 = (basic_ostream_> *) + FUN_1001a0e0(uVar14); + std::basic_ostream_>::operator<< + (pbVar13,p_Var19); + } + iVar18 = *(int *)(DAT_101d6474 + 0x38); + if (*(int *)(iVar18 + 4) == 0) { +LAB_1008f7b0: + cVar10 = '\0'; + } + else { + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 3; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + uVar14 = *(undefined4 *)(iVar18 + 4); + if (DAT_101d6374 == -1) { + if (DAT_101d6370 == 0) { + FUN_10015ea0(); + if (DAT_101d6370 != 0) goto LAB_1008f76a; + } + else { +LAB_1008f76a: + if (DAT_101d640c != (code *)0x0) { + (*DAT_101d640c)(&DAT_101d6374); + } + } + if (DAT_101d6374 == -1) goto LAB_1008f7b0; + FUN_10003d20(); + } + if (DAT_101d6414 == (code *)0x0) goto LAB_1008f7b0; + cVar10 = (*DAT_101d6414)(DAT_101d6374,uVar14,0); + if (cVar10 == '\0') goto LAB_1008f7b0; + cVar10 = '\x01'; + } + if (*(char *)(iVar18 + 8) != cVar10) { + *(char *)(iVar18 + 8) = cVar10; + FUN_100312d0(); + } + if (*(char *)(iVar18 + 8) != '\0') { + iVar18 = piVar15[2]; + p_Var19 = endl_exref; + pbVar13 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - correlation Id "); + pbVar13 = std::basic_ostream_>:: + operator<<(pbVar13,iVar18); + std::basic_ostream_>::operator<< + (pbVar13,p_Var19); + } + piVar16 = (int *)*piVar15; + if (piVar15 != *(int **)(param_1 + 0x18)) { + *(int **)piVar15[1] = piVar16; + *(int *)(*piVar15 + 4) = piVar15[1]; + operator_delete(piVar15); + *(int *)(param_1 + 0x1c) = *(int *)(param_1 + 0x1c) + -1; + } + *(int *)(param_1 + 8) = *(int *)(param_1 + 8) + -1; + DVar12 = GetTickCount(); + FUN_1008f150(iVar2,iVar1,iVar3,iVar5,iVar4,iVar7,iVar8,iVar6,iVar9,0,DVar12); + } + piVar15 = piVar16; + } while (piVar16 != *(int **)(param_1 + 0x18)); + } + ExceptionList = local_10; + __security_check_cookie(uVar11 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10093b50 at 10093b50 + +Signature: `undefined FUN_10093b50(void)` + +```c + +void __thiscall +FUN_10093b50(int *param_1,undefined4 param_2,undefined4 param_3,undefined4 param_4, + undefined4 param_5,undefined4 param_6,undefined4 param_7,undefined4 param_8, + undefined4 param_9,undefined4 param_10,OLECHAR *param_11,undefined4 param_12, + undefined4 param_13,undefined4 param_14,undefined4 param_15,undefined4 param_16) + +{ + OLECHAR *psz; + undefined4 uVar1; + undefined4 uVar2; + undefined4 uVar3; + undefined4 uVar4; + BSTR bstrString; + char cVar5; + undefined1 uVar6; + int iVar7; + undefined4 uVar8; + undefined4 uVar9; + undefined4 uVar10; + char *pcVar11; + BSTR local_28; + undefined4 local_24; + undefined4 local_20; + undefined4 local_1c; + undefined4 local_18; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + uVar4 = param_16; + uVar3 = param_15; + uVar2 = param_14; + uVar1 = param_13; + uVar9 = param_12; + psz = param_11; + uVar10 = param_8; + local_8 = 0xffffffff; + puStack_c = &LAB_10167d48; + local_10 = ExceptionList; + local_14 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_24 = param_4; + local_1c = param_6; + local_18 = param_7; + local_20 = param_5; + local_28 = (BSTR)0x0; + iVar7 = (**(code **)(*param_1 + 0x10))(param_1,¶m_9,4,&local_28,local_14); + cVar5 = FUN_10048d60(iVar7 == 0,0x3e, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ); + if (cVar5 != '\0') { + local_28 = (BSTR)0x0; + iVar7 = (**(code **)(*param_1 + 0x10))(param_1,¶m_10,4,&local_28); + cVar5 = FUN_10048d60(iVar7 == 0,0x3f, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ); + if (cVar5 != '\0') { + if (psz == (OLECHAR *)0x0) { + local_28 = (BSTR)0x0; + } + else { + local_28 = SysAllocString(psz); + if (local_28 == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_100013e0(0x8007000e); + } + } + bstrString = local_28; + local_8 = 0; + iVar7 = FUN_10093780(param_1); + local_8 = 0xffffffff; + SysFreeString(bstrString); + cVar5 = FUN_10048d60(iVar7 == 0,0x40, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar8 = 0x41; + uVar6 = FUN_10093800(param_1,uVar9); + cVar5 = FUN_10048d60(uVar6,uVar8,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar9 = 0x42; + uVar6 = FUN_10093800(param_1,uVar1); + cVar5 = FUN_10048d60(uVar6,uVar9,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar9 = 0x43; + uVar6 = FUN_10093800(param_1,uVar2); + cVar5 = FUN_10048d60(uVar6,uVar9,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar9 = 0x44; + uVar6 = FUN_10093800(param_1,uVar3); + cVar5 = FUN_10048d60(uVar6,uVar9,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar9 = 0x45; + uVar6 = FUN_10093800(param_1,uVar4); + cVar5 = FUN_10048d60(uVar6,uVar9,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar9 = 0x46; + uVar6 = FUN_10093800(param_1,uVar10); + cVar5 = FUN_10048d60(uVar6,uVar9,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar10 = 0x47; + uVar6 = FUN_10093680(param_1,&local_24); + cVar5 = FUN_10048d60(uVar6,uVar10,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar10 = 0x48; + uVar6 = FUN_1000df40(param_1,¶m_3); + cVar5 = FUN_10048d60(uVar6,uVar10,pcVar11); + if (cVar5 != '\0') { + pcVar11 = + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ; + uVar10 = 0x49; + uVar6 = FUN_1000df40(param_1,¶m_2); + cVar5 = FUN_10048d60(uVar6,uVar10,pcVar11); + if (cVar5 != '\0') { + param_1[5] = param_1[5] + 1; + } + } + } + } + } + } + } + } + } + } + } + } + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10093e10 at 10093e10 + +Signature: `undefined FUN_10093e10(void)` + +```c + +bool __thiscall FUN_10093e10(int *param_1,int *param_2) + +{ + code *pcVar1; + int iVar2; + int iVar3; + undefined4 local_8; + + iVar3 = param_1[1]; + pcVar1 = *(code **)(*param_1 + 0x10); + param_1[1] = 0; + local_8 = 0; + iVar2 = (*pcVar1)(param_1,param_1 + 5,4,&local_8); + FUN_10048d60(iVar2 == 0,0x5b, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ); + iVar3 = (**(code **)(*param_2 + 0x58))(param_2,0x56,iVar3,param_1[2]); + FUN_10048e60(iVar3 == 0,iVar3,0x5d, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ); + return iVar3 == 0; +} + + +``` + +## FUN_10093e90 at 10093e90 + +Signature: `undefined FUN_10093e90(void)` + +```c + +undefined4 __thiscall FUN_10093e90(int *param_1,undefined4 param_2,undefined4 param_3) + +{ + char cVar1; + int iVar2; + + iVar2 = FUN_100934d0(param_1); + cVar1 = FUN_10048d60(iVar2 == 0,0xb5, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ); + if (cVar1 != '\0') { + iVar2 = (**(code **)(*param_1 + 0xc))(param_1,param_3,4,0); + cVar1 = FUN_10048d60(iVar2 == 0,0xb6, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\engineservicescommon\\lmx\\CObjectInformation.h" + ); + if (cVar1 != '\0') { + return 1; + } + } + return 0; +} + + +``` + +## FUN_1008e910 at 1008e910 + +Signature: `undefined FUN_1008e910(void)` + +```c + +undefined4 * __thiscall +FUN_1008e910(int param_1,char *param_2,undefined4 param_3,undefined4 param_4) + +{ + undefined4 *puVar1; + uint uStack_34; + undefined **local_24 [3]; + undefined4 *local_18; + undefined1 *local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10167659; + local_10 = ExceptionList; + uStack_34 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + local_14 = (undefined1 *)&uStack_34; + ExceptionList = &local_10; + puVar1 = operator_new(0x40); + local_18 = puVar1; + if (puVar1 != (undefined4 *)0x0) { + local_8 = 1; + *puVar1 = param_2; + puVar1[1] = param_3; + FUN_1008e6b0(param_1 + 9,puVar1 + 2,param_4); + ExceptionList = local_10; + return puVar1; + } + param_2 = (char *)0x0; + std::exception::exception((exception *)local_24,¶m_2); + local_24[0] = std::bad_alloc::vftable; + local_8 = 0xffffffff; + /* WARNING: Subroutine does not return */ + _CxxThrowException(local_24,(ThrowInfo *)&DAT_101a8848); +} + + +``` + +## FUN_1008f0f0 at 1008f0f0 + +Signature: `undefined FUN_1008f0f0(void)` + +```c + +undefined4 __fastcall FUN_1008f0f0(int param_1) + +{ + if (*(int *)(param_1 + 0x248) < 1) { + FUN_1004d0d0(param_1 + 0x244,(undefined4 *)(param_1 + 0x248)); + } + return *(undefined4 *)(param_1 + 0x248); +} + + +``` + +## FUN_1008f120 at 1008f120 + +Signature: `undefined FUN_1008f120(void)` + +```c + +undefined4 __fastcall FUN_1008f120(int param_1) + +{ + if (*(int *)(param_1 + 0x244) < 1) { + FUN_1004d0d0((undefined4 *)(param_1 + 0x244),param_1 + 0x248); + } + return *(undefined4 *)(param_1 + 0x244); +} + + +``` + +## FUN_1008fc40 at 1008fc40 + +Signature: `undefined FUN_1008fc40(void)` + +```c + +void __thiscall FUN_1008fc40(undefined4 *param_1,undefined4 param_2) + +{ + int iVar1; + + iVar1 = (**(code **)(*(int *)*param_1 + 0x2c))((int *)*param_1,param_2); + if (iVar1 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar1,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x55); + } + return; +} + + +``` + +## FUN_1008fc70 at 1008fc70 + +Signature: `undefined FUN_1008fc70(void)` + +```c + +void __thiscall FUN_1008fc70(undefined4 *param_1,undefined4 param_2) + +{ + int iVar1; + + iVar1 = (**(code **)(*(int *)*param_1 + 0x34))((int *)*param_1,param_2); + if (iVar1 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar1,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x65); + } + return; +} + + +``` + +## FUN_1008fca0 at 1008fca0 + +Signature: `undefined FUN_1008fca0(void)` + +```c + +void __thiscall FUN_1008fca0(int *param_1,int *param_2) + +{ + undefined4 *puVar1; + int iVar2; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puStack_c = &LAB_10167798; + local_10 = ExceptionList; + ExceptionList = &local_10; + local_14 = -(uint)(*(char *)param_2 != '\0') & 0xffff; + puVar1 = (undefined4 *)*param_1; + param_2 = (int *)0x0; + local_8 = 1; + if (puVar1 != (undefined4 *)0x0) { + (**(code **)*puVar1)(puVar1,&DAT_1017b948,¶m_2,DAT_101d60b8 ^ (uint)&stack0xfffffffc); + } + local_8 = 2; + iVar2 = (**(code **)(*param_2 + 0x20))(param_2,&local_14); + if (iVar2 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar2,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0xf1); + } + local_8 = 0xffffffff; + if (param_2 != (int *)0x0) { + (**(code **)(*param_2 + 8))(param_2); + } + ExceptionList = local_10; + return; +} + + +``` + +## FUN_1008fd50 at 1008fd50 + +Signature: `undefined FUN_1008fd50(void)` + +```c + +/* WARNING: Function: __alloca_probe replaced with injection: alloca_probe */ + +void __fastcall FUN_1008fd50(int param_1) + +{ + int iVar1; + int *piVar2; + int iVar3; + char cVar4; + byte bVar5; + uint uVar6; + undefined4 uVar7; + UINT UVar8; + wchar_t *pwVar9; + int iVar10; + OLECHAR *psz; + uint uVar11; + basic_ostream_> *pbVar12; + undefined4 ****ppppuVar13; + undefined4 *puVar14; + DWORD DVar15; + LONG LVar16; + HRESULT HVar17; + undefined2 *puVar18; + int *piVar19; + int iVar20; + code *pcVar21; + int *piVar22; + int *piVar23; + undefined1 uVar24; + uint uVar25; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var26; + short sVar27; + wchar_t *pwVar28; + size_t sVar29; + int local_1868; + int local_1864 [14]; + DWORD local_182c; + int *local_1828; + undefined4 local_1824; + undefined4 local_1820; + undefined4 local_181c; + undefined4 local_1818; + undefined4 local_1814; + undefined4 local_1810; + undefined4 local_180c; + int *local_1808; + undefined4 local_1804; + undefined4 local_1800; + undefined4 local_17fc; + undefined4 local_17f8; + FILETIME local_17f4; + int *local_17ec; + BSTR local_17e8; + int *local_17e4; + BSTR local_17e0; + int *local_17dc; + BSTR local_17d8; + FILETIME local_17d4; + int *local_17cc; + BSTR local_17c8; + int *local_17c4; + BSTR local_17c0; + FILETIME local_17bc; + int *local_17b4; + BSTR local_17b0; + undefined4 local_17ac; + undefined4 local_17a8; + undefined4 local_17a4; + undefined4 local_17a0; + undefined4 local_179c; + undefined4 local_1798; + undefined4 local_1794; + undefined4 local_1790; + undefined1 local_178c; + undefined4 local_178a; + undefined2 local_1786; + undefined2 uStack_1784; + undefined2 local_1782; + undefined2 uStack_1780; + undefined2 local_177e; + undefined2 uStack_177c; + undefined2 local_177a; + undefined4 local_1778; + short local_1774 [2]; + short local_1770 [2]; + int *local_176c; + int *local_1768; + undefined4 local_1764; + int *local_1760; + int *local_175c; + BSTR local_1758; + int *local_1754; + BSTR local_1750; + int *local_174c; + BSTR local_1748; + int *local_1744; + int *local_1740; + int *local_173c; + int *local_1738; + uint local_1734; + uint local_1730; + FILETIME local_172c; + undefined **local_1724; + undefined4 local_1720; + void *local_171c; + undefined4 local_1718; + undefined4 local_1714; + undefined4 *local_1710; + int *local_170c; + BSTR local_1708; + int *local_1704; + BSTR local_1700; + FILETIME local_16fc; + int *local_16f4; + BSTR local_16f0; + BSTR local_16ec; + BSTR local_16e8; + byte local_16e1; + int *local_16e0; + byte local_16d9; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *local_16d8; + int *local_16d4; + int local_16d0; + short local_16cc [2]; + int local_16c8; + undefined4 local_16c4; + short local_16c0; + short local_16bc [2]; + int local_16b8; + undefined4 local_16b4; + short local_16b0; + byte local_16ac; + undefined1 uStack_16ab; + undefined2 uStack_16aa; + undefined2 uStack_16a8; + short sStack_16a6; + undefined2 uStack_16a4; + undefined2 uStack_16a2; + wchar_t local_318 [260]; + undefined1 local_110 [20]; + void *local_fc [4]; + undefined4 local_ec; + uint local_e8; + void *local_e0 [4]; + undefined4 local_d0; + uint local_cc; + void *local_c4 [4]; + undefined4 local_b4; + uint local_b0; + void *local_a8 [4]; + undefined4 local_98; + uint local_94; + undefined2 local_8c [2]; + undefined4 local_88; + undefined4 local_84; + undefined2 local_80; + undefined2 local_7c [2]; + undefined4 local_78; + undefined4 local_74; + undefined2 local_70; + undefined2 local_6c [2]; + undefined4 local_68; + undefined4 local_64; + undefined2 local_60; + undefined2 local_5c [2]; + undefined4 local_58; + undefined4 local_54; + undefined2 local_50; + undefined4 ***local_4c [4]; + undefined4 local_3c; + uint local_38; + undefined4 local_30; + undefined4 local_20; + uint local_1c; + uint local_14; + void *local_10; + undefined1 *puStack_c; + int local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10167ac7; + local_10 = ExceptionList; + uVar6 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_16d0 = param_1; + local_14 = uVar6; + if (((*(int *)(param_1 + 8) < 100) && (*(int *)(param_1 + 0x28) != 0)) && + (local_16e0 = (int *)**(int **)(param_1 + 0x24), local_16e0 != *(int **)(param_1 + 0x24))) { + do { + piVar23 = local_16e0; + if (99 < *(int *)(local_16d0 + 8)) break; + local_1c = 7; + local_20 = 0; + local_30 = (undefined4 *)((uint)local_30 & 0xffff0000); + local_38 = 7; + local_3c = 0; + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + local_8._0_1_ = 1; + local_8._1_3_ = 0; + local_16e1 = local_16e1 & 0xfe; + local_17ac = 0; + local_17a8 = 0; + piVar22 = local_16e0 + 2; + (**(code **)(*(int *)local_16e0[2] + 0x10))(0,uVar6); + local_16f0 = (BSTR)0x0; + local_16e8 = (BSTR)0x0; + local_16f4 = (int *)0x0; + local_8 = CONCAT31(local_8._1_3_,5); + (**(code **)(*(int *)*piVar22 + 4))(&local_16f4); + iVar10 = *local_16f4; + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)local_16f4; + uVar7 = FUN_10030d80(); + (**(code **)(iVar10 + 0x40))(local_16d8,uVar7); + uVar7 = (**(code **)(*(int *)*piVar22 + 8))(); + cVar4 = FUN_10134a10(uVar7); + if (((cVar4 == '\0') || (local_16e8 == (BSTR)0x0)) || + (UVar8 = SysStringLen(local_16e8), UVar8 == 0)) { +LAB_1008fee4: + psz = (OLECHAR *)(**(code **)(*(int *)*piVar22 + 8))(); + if (psz != (OLECHAR *)0x0) { + SysFreeString((BSTR)0x0); + local_16f0 = SysAllocString(psz); + if (local_16f0 == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(0x8007000e,0, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\MagellanPublic\\Includes\\ClassUtilities\\AAComBSTR.h" + ,0xec); + } + } + } + else { + sVar29 = 7; + pwVar28 = L"MyArea."; + pwVar9 = (wchar_t *)(**(code **)(*(int *)*piVar22 + 8))(); + iVar10 = _wcsnicmp(pwVar9,pwVar28,sVar29); + if (iVar10 == 0) goto LAB_1008fee4; + sVar29 = 0xc; + pwVar28 = L"MyContainer."; + pwVar9 = (wchar_t *)(**(code **)(*(int *)*piVar22 + 8))(); + iVar10 = _wcsnicmp(pwVar9,pwVar28,sVar29); + if (iVar10 == 0) goto LAB_1008fee4; + if (local_16e8 != (BSTR)0x0) { + SysFreeString((BSTR)0x0); + local_16f0 = (BSTR)FUN_1008fb20(); + } + } + piVar2 = local_16e0; + if (((local_16e0[9] == 4) && ((short)local_16e0[0xb] == 0x1f42)) || + ((cVar4 = FUN_10089cb0(local_16f0,&local_16ac,&local_1764,&local_16e1,&local_30,local_4c, + &local_17ac,1), cVar4 == '\0' || (local_16ac == 0)))) { +LAB_10090433: + if ((piVar23[9] == 4) && + (((sVar27 = (short)piVar23[0xb], sVar27 == 8 || (sVar27 == 4)) || (sVar27 == 3)))) { + if (((*(int *)(local_16d0 + 0x10) != -1) || (*(int *)(local_16d0 + 0xc) != -1)) && + (DVar15 = GetTickCount(), 44999 < DVar15 - *(int *)(local_16d0 + 0x14))) { + *(DWORD *)(local_16d0 + 0x14) = DVar15; + *(undefined4 *)(local_16d0 + 0xc) = 0xffffffff; + *(undefined4 *)(local_16d0 + 0x10) = 0xffffffff; + } + LVar16 = CompareFileTime((FILETIME *)(piVar23 + 0xc),(FILETIME *)(local_16d0 + 0xc)); + if (LVar16 != 1) goto LAB_100904ae; + local_1710 = (undefined4 *)*piVar22; + *(int *)(local_16d0 + 0x54) = *(int *)(local_16d0 + 0x54) + 1; + piVar22 = (int *)*piVar22; + puVar14 = (undefined4 *)FUN_10005170(); + local_8._0_1_ = 0x45; + local_5c[0] = 0; + local_50 = 10000; + local_58 = 5; + local_54 = 0; + (**(code **)(*piVar22 + 0xc))(0,*puVar14,0xffffffff,DAT_101d6504,DAT_101d6508,local_5c,0); + local_8 = CONCAT31(local_8._1_3_,5); + if (local_17e4 != (int *)0x0) { + (**(code **)(*local_17e4 + 8))(local_17e4); + } + SysFreeString(local_17e0); + iVar10 = local_16d0; + local_16d4 = (int *)*piVar2; + if (piVar2 != *(int **)(local_16d0 + 0x24)) { + *(int **)piVar2[1] = local_16d4; + *(int *)(*piVar2 + 4) = piVar2[1]; + operator_delete(piVar2); + *(int *)(iVar10 + 0x28) = *(int *)(iVar10 + 0x28) + -1; + } + local_16e0 = local_16d4; + if (local_1710 != (undefined4 *)0x0) { + (**(code **)*local_1710)(1); + } + local_8._0_1_ = 3; + pcVar21 = SysFreeString_exref; + if (local_16f4 != (int *)0x0) { + (**(code **)(*local_16f4 + 8))(local_16f4); + pcVar21 = SysFreeString_exref; + } +LAB_10091cf8: + local_8._0_1_ = 2; + (*pcVar21)(local_16e8); + local_8._0_1_ = 1; + (*pcVar21)(local_16f0); + local_8 = (uint)local_8._1_3_ << 8; + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = 0; + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + local_8 = 0xffffffff; + if (7 < local_1c) { + operator_delete(local_30); + } + goto LAB_10091d53; + } +LAB_100904ae: + local_16fc.dwLowDateTime = 0; + local_16fc.dwHighDateTime = 0; + local_172c.dwLowDateTime = 0; + local_172c.dwHighDateTime = 0; + local_1730 = local_1730 & 0xffffff00; + local_1734 = local_1734 & 0xffffff00; + if (*(int *)(*(int *)(local_16d0 + 0x30) + 0x5e4) == 0) { +LAB_1009148b: + local_1738 = (int *)0x0; + local_8._0_1_ = 0x30; + (**(code **)(*(int *)*piVar22 + 4))(&local_1738); + local_1724 = FastStream::vftable; + local_1720 = 0; + local_1718 = 8; + local_1714 = 0; + local_171c = malloc(8); + if (local_171c == (void *)0x0) { + local_1718 = 0; + local_17a4 = 0x8007000e; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_17a4,(ThrowInfo *)&DAT_101a8794); + } + local_8._0_1_ = 0x31; + local_1808 = local_1738; + if (local_1738 != (int *)0x0) { + (**(code **)(*local_1738 + 4))(local_1738); + } + local_1804 = 0; + local_1800 = 0; + local_17fc = 0; + local_17f8 = 0; + local_8 = CONCAT31(local_8._1_3_,0x38); + *(int *)(local_16d0 + 4) = *(int *)(local_16d0 + 4) + 1; + local_16d4 = (int *)(local_16d0 + 4); + local_16d9 = 0x10; + iVar10 = (*(code *)local_1724[4])(&local_1724,&local_16d9,1,0); + if (iVar10 < 0) goto LAB_10091e8e; + uVar11 = FUN_10003390(0x10); + local_1710 = (undefined4 *)(uVar11 & 0xffff); + iVar10 = (*(code *)local_1724[4])(&local_1724,&local_1710,2,0); + if (((iVar10 < 0) || + (iVar10 = (*(code *)local_1724[4])(&local_1724,local_16d4,4,0), iVar10 < 0)) || + (iVar10 = (*(code *)local_1724[4])(&local_1724,piVar2 + 4,0x10,0), iVar10 < 0)) + goto LAB_10091e8e; + if ((char)local_1730 == '\0') { +LAB_10091659: + piVar19 = piVar2 + 8; + } + else { + local_17d4.dwLowDateTime = 0; + local_17d4.dwHighDateTime = 0; + LVar16 = CompareFileTime(&local_16fc,&local_17d4); + if (LVar16 == 1) { + if (((int)local_16fc.dwHighDateTime < piVar2[0xd]) || + (((int)local_16fc.dwHighDateTime <= piVar2[0xd] && + (local_16fc.dwLowDateTime <= (uint)piVar2[0xc])))) goto LAB_10091659; + } + local_8c[0] = 0xffff; + local_88 = 0; + local_84 = 1; + local_80 = 0; + piVar19 = (int *)local_8c; + } + iVar10 = (*(code *)local_1724[4])(&local_1724,piVar19,0x10,0); + if (((iVar10 < 0) || + (iVar10 = (*(code *)local_1724[4])(&local_1724,piVar2 + 0xc,8,0), iVar10 < 0)) || + (iVar10 = (*(code *)local_1724[4])(&local_1724,piVar2 + 0xe,8,0), piVar2 = local_1808, + iVar10 < 0)) { +LAB_10091e8e: + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar10,0, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\MagellanPublic\\Includes\\BaseRuntimeComponentServer\\LoadSave.h" + ,0x19); + } + (**(code **)(*local_1808 + 0x18))(local_1808,&local_1724,0); + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + iVar10 = *local_16d4; + p_Var26 = endl_exref; + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - correlationId ") + ; + pbVar12 = std::basic_ostream_>:: + operator<<(pbVar12,iVar10); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + uVar7 = FUN_10047fe0(piVar23[4],piVar23[5],piVar23[6],piVar23[7]); + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - guid ",uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + uVar7 = FUN_1002f5f0(piVar2); + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - ref ",uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + uVar11 = local_1730; + uVar25 = local_1734; + p_Var26 = endl_exref; + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - timeOfLastDeployIsValid ",local_1730, + L" timeOfLastConfigChangeIsValid "); + uVar24 = (undefined1)uVar25; + pbVar12 = std::basic_ostream_>:: + operator<<(pbVar12,SUB41(uVar11,0)); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(pbVar12); + pbVar12 = std::basic_ostream_>:: + operator<<(pbVar12,(bool)uVar24); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + puVar14 = (undefined4 *) + FUN_10054120(local_c4,local_16fc.dwLowDateTime,local_16fc.dwHighDateTime); + local_8._0_1_ = 0x39; + if (7 < (uint)puVar14[5]) { + puVar14 = (undefined4 *)*puVar14; + } + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - subscribedLastDeploy ",puVar14); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + local_8 = CONCAT31(local_8._1_3_,0x38); + if (7 < local_b0) { + operator_delete(local_c4[0]); + } + local_b0 = 7; + local_b4 = 0; + local_c4[0] = (void *)((uint)local_c4[0] & 0xffff0000); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + puVar14 = (undefined4 *) + FUN_10054120(local_fc,local_172c.dwLowDateTime,local_172c.dwHighDateTime); + local_8._0_1_ = 0x3a; + if (7 < (uint)puVar14[5]) { + puVar14 = (undefined4 *)*puVar14; + } + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - subscribedLastCfgChange ",puVar14); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + local_8 = CONCAT31(local_8._1_3_,0x38); + if (7 < local_e8) { + operator_delete(local_fc[0]); + } + local_e8 = 7; + local_ec = 0; + local_fc[0] = (void *)((uint)local_fc[0] & 0xffff0000); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + puVar14 = (undefined4 *)FUN_10054120(local_e0,piVar23[0xc],piVar23[0xd]); + local_8._0_1_ = 0x3b; + if (7 < (uint)puVar14[5]) { + puVar14 = (undefined4 *)*puVar14; + } + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - it -> lastDeploymentChange ",puVar14); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + local_8 = CONCAT31(local_8._1_3_,0x38); + if (7 < local_cc) { + operator_delete(local_e0[0]); + } + local_cc = 7; + local_d0 = 0; + local_e0[0] = (void *)((uint)local_e0[0] & 0xffff0000); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + puVar14 = (undefined4 *)FUN_10054120(local_a8,piVar23[0xe],piVar23[0xf]); + local_8._0_1_ = 0x3c; + if (7 < (uint)puVar14[5]) { + puVar14 = (undefined4 *)*puVar14; + } + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - it -> lastConfigChange ",puVar14); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + local_8 = CONCAT31(local_8._1_3_,0x38); + if (7 < local_94) { + operator_delete(local_a8[0]); + } + local_94 = 7; + local_98 = 0; + local_a8[0] = (void *)((uint)local_a8[0] & 0xffff0000); + } + piVar23 = local_16d4; + local_1814 = 1; + local_1810 = 1; + local_180c = 1; + FUN_1010ad00(0,&local_1814,0x10,&local_1724,0,2,local_16d0,*local_16d4,0,0,0); + local_1868 = *piVar23; + piVar23 = local_1864; + for (iVar10 = 0xe; iVar10 != 0; iVar10 = iVar10 + -1) { + *piVar23 = *piVar22; + piVar22 = piVar22 + 1; + piVar23 = piVar23 + 1; + } + local_182c = GetTickCount(); + iVar3 = local_16d0; + iVar10 = *(int *)(local_16d0 + 0x18); + iVar20 = FUN_1008e840(iVar10,*(undefined4 *)(iVar10 + 4),&local_1868); + iVar1 = *(int *)(iVar3 + 0x1c); + if (iVar1 == 0x3fffffe) { + /* WARNING: Subroutine does not return */ + std::_Xlength_error("list too long"); + } + *(int *)(iVar3 + 0x1c) = iVar1 + 1; + *(int *)(iVar10 + 4) = iVar20; + **(int **)(iVar20 + 4) = iVar20; + piVar23 = (int *)*local_16e0; + if (local_16e0 != *(int **)(local_16d0 + 0x24)) { + *(int **)local_16e0[1] = piVar23; + *(int *)(*local_16e0 + 4) = local_16e0[1]; + operator_delete(local_16e0); + *(int *)(local_16d0 + 0x28) = *(int *)(local_16d0 + 0x28) + -1; + } + *(int *)(local_16d0 + 8) = *(int *)(local_16d0 + 8) + 1; + pcVar21 = SysFreeString_exref; + local_8._0_1_ = 0x40; + local_16e0 = piVar23; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 0x3f; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 0x3e; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 0x3d; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 0x31; + (**(code **)(*local_1808 + 8))(local_1808); + local_8._0_1_ = 0x30; + local_1724 = FastStream::vftable; + if (local_171c != (void *)0x0) { + free(local_171c); + } + local_8._0_1_ = 5; + if (local_1738 != (int *)0x0) { + (**(code **)(*local_1738 + 8))(local_1738); + } +LAB_10091415: + local_8._0_1_ = 3; + if (local_16f4 != (int *)0x0) { + (**(code **)(*local_16f4 + 8))(local_16f4); + } + goto LAB_10091cf8; + } + FUN_10005170(); + local_8._0_1_ = 0x22; + FUN_10005170(); + local_16ec = (BSTR)0x0; + local_8 = CONCAT31(local_8._1_3_,0x24); + SysFreeString((BSTR)0x0); + local_16ec = (BSTR)0x0; + local_16d8 = *(_func_basic_ostream_>_ptr_basic_ostream_>_ptr + **)(*(int *)(local_16d0 + 0x30) + 0x5e4); + if (local_170c != (int *)0x0) { + (**(code **)(*local_170c + 8))(local_170c); + local_170c = (int *)0x0; + } + iVar10 = (**(code **)(*(int *)local_16d8 + 0x14)) + (local_16d8,*(undefined4 *)(*(int *)(local_16d0 + 0x30) + 0x5ac), + local_1774,local_16cc,&local_16ec,&local_170c); + if (iVar10 < 0) { + if (local_16cc[0] != 0) goto LAB_1009081b; +LAB_1009089a: + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + swprintf_s(local_318,0x104,L"", + (int)local_16cc[0],local_16c8,local_16c4,(int)local_16c0); + p_Var26 = endl_exref; + sVar27 = local_1774[0]; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - value of m_hRefGRTimeOfLastDeploy can\'t be used status " + ,local_318,L" quality "); + uVar7 = FUN_1001a0e0(uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + pbVar12 = std::basic_ostream_>:: + operator<<(pbVar12,sVar27); +LAB_10090933: + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } +LAB_1009093b: + SysFreeString(local_16ec); + local_16ec = (BSTR)0x0; + local_16d8 = *(_func_basic_ostream_>_ptr_basic_ostream_>_ptr + **)(*(int *)(local_16d0 + 0x30) + 0x5e4); + if (local_1704 != (int *)0x0) { + (**(code **)(*local_1704 + 8))(local_1704); + local_1704 = (int *)0x0; + } + iVar10 = (**(code **)(*(int *)local_16d8 + 0x14)) + (local_16d8,*(undefined4 *)(*(int *)(local_16d0 + 0x30) + 0x5b0), + local_1770,local_16bc,&local_16ec,&local_1704); + if (iVar10 < 0) { + if (local_16bc[0] != 0) goto LAB_10090c4b; +LAB_10090cca: + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + swprintf_s(local_318,0x104,L"", + (int)local_16bc[0],local_16b8,local_16b4,(int)local_16b0); + p_Var26 = endl_exref; + sVar27 = local_1770[0]; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - value of m_hRefGRTimeOfLastConfigChange can\'t be used status " + ,local_318,L" quality "); + uVar7 = FUN_1001a0e0(uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + pbVar12 = std::basic_ostream_> + ::operator<<(pbVar12,sVar27); +LAB_10090d63: + std::basic_ostream_>:: + operator<<(pbVar12,p_Var26); + } + } + else { + if (local_16bc[0] == 0) { + if (local_16b8 == 1) goto LAB_10090cca; + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + swprintf_s(local_318,0x104,L"", + (int)local_16bc[0],local_16b8,local_16b4,(int)local_16b0); + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - status of GR subscription is ",local_318, + L" calling OnSetAttributeResult directly "); + uVar7 = FUN_1001a0e0(uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>:: + operator<<(pbVar12,p_Var26); + } + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)*piVar22; + local_1754 = (int *)0x0; + local_1750 = (BSTR)0x0; + if (DAT_101d6470 == (int *)0x0) { + local_1760 = (int *)0x0; + HVar17 = CoGetClassObject((IID *)&DAT_1017b1c0,0x17,(LPVOID)0x0,(IID *)&DAT_1017b1d0 + ,&local_1760); + if (HVar17 < 0) { + local_1794 = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_1794,(ThrowInfo *)&DAT_101a8794); + } + DAT_101d6470 = local_1760; + } + (**(code **)(*DAT_101d6470 + 0xc))(DAT_101d6470,&local_1754); + if (local_1754 == (int *)0x0) { + local_1790 = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_1790,(ThrowInfo *)&DAT_101a8794); + } + local_8._0_1_ = 0x27; + (**(code **)(*(int *)local_16d8 + 0xc)) + (0,local_1754,0xffffffff,DAT_101d6504,DAT_101d6508,local_16bc,0); + local_8 = CONCAT31(local_8._1_3_,0x24); + if (local_1754 != (int *)0x0) { + (**(code **)(*local_1754 + 8))(local_1754); + } + SysFreeString(local_1750); + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)*piVar22; + piVar23 = (int *)*piVar2; + if (piVar2 != *(int **)(local_16d0 + 0x24)) { + *(int **)piVar2[1] = piVar23; + *(int *)(*piVar2 + 4) = piVar2[1]; + operator_delete(piVar2); + *(int *)(local_16d0 + 0x28) = *(int *)(local_16d0 + 0x28) + -1; + } + local_16e0 = piVar23; + if (local_16d8 != + (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)0x0) { + (*(code *)**(undefined4 **)local_16d8)(1); + } + local_8._0_1_ = 0x23; + SysFreeString(local_16ec); + local_8._0_1_ = 0x22; + if (local_1704 != (int *)0x0) { + (**(code **)(*local_1704 + 8))(local_1704); + } + SysFreeString(local_1700); + local_8._0_1_ = 5; + if (local_170c != (int *)0x0) { + (**(code **)(*local_170c + 8))(local_170c); + } + SysFreeString(local_1708); + local_8._0_1_ = 3; + if (local_16f4 != (int *)0x0) { + (**(code **)(*local_16f4 + 8))(local_16f4); + } + local_8._0_1_ = 2; + SysFreeString(local_16e8); + local_8._0_1_ = 1; + SysFreeString(local_16f0); + local_8 = (uint)local_8._1_3_ << 8; + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = 0; + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + local_8 = 0xffffffff; + if (local_1c < 8) goto LAB_10090804; + operator_delete(local_30); + local_30 = (undefined4 *)((uint)local_30 & 0xffff0000); + goto LAB_10091d59; + } +LAB_10090c4b: + if (local_1770[0] != 0xc0) goto LAB_10090cca; + local_16d4 = (int *)(**(code **)(*local_1704 + 0x78))(local_1704,&local_172c); + if (local_16d4 == (int *)0x0) { + local_1734 = CONCAT31(local_1734._1_3_,1); + } + else { + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + piVar19 = local_16d4; + p_Var26 = endl_exref; + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - failed to extract time from value2 hr "); + pbVar12 = std:: + basic_ostream_>:: + operator<<(pbVar12,(long)piVar19); + goto LAB_10090d63; + } + } + } + if (((char)local_1730 == '\0') || ((char)local_1734 == '\0')) { +LAB_10091434: + local_8._0_1_ = 0x23; + SysFreeString(local_16ec); + local_8._0_1_ = 0x22; + if (local_1704 != (int *)0x0) { + (**(code **)(*local_1704 + 8))(local_1704); + } + SysFreeString(local_1700); + local_8 = CONCAT31(local_8._1_3_,5); + if (local_170c != (int *)0x0) { + (**(code **)(*local_170c + 8))(local_170c); + } + SysFreeString(local_1708); + goto LAB_1009148b; + } + if ((piVar2[0xd] < (int)local_16fc.dwHighDateTime) || + ((piVar2[0xd] <= (int)local_16fc.dwHighDateTime && + ((uint)piVar2[0xc] < local_16fc.dwLowDateTime)))) { + local_16d4 = (int *)0x0; + } + else { + local_16d4 = (int *)0x1; + } + local_17bc.dwLowDateTime = 0; + local_17bc.dwHighDateTime = 0; + LVar16 = CompareFileTime(&local_16fc,&local_17bc); + local_16d9 = LVar16 == 1 & (byte)local_16d4; + if ((short)piVar2[8] != 0) goto LAB_10091434; + if ((piVar2[9] != 4) || + ((((sVar27 = (short)piVar2[0xb], sVar27 != 3 && (sVar27 != 4)) && (sVar27 != 8)) || + (local_16d9 == 0)))) { + if ((((short)piVar2[8] == 0) && (piVar2[9] == 4)) && ((short)piVar2[0xb] == 6)) { + local_17f4.dwLowDateTime = 0; + local_17f4.dwHighDateTime = 0; + LVar16 = CompareFileTime(&local_172c,&local_17f4); + if (LVar16 == 1) { + if ((((int)local_172c.dwHighDateTime <= piVar2[0xf]) && + (((int)local_172c.dwHighDateTime < piVar2[0xf] || + (local_172c.dwLowDateTime <= (uint)piVar2[0xe])))) && (local_16d9 != 0)) + goto LAB_10090e81; + } + } + goto LAB_10091434; + } +LAB_10090e81: + local_1710 = (undefined4 *)*piVar22; + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + p_Var26 = endl_exref; + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L"CReferenceStringResolver::ProcessUnresolvedReferences - No resolve attempt sent to the GR: " + ); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + swprintf_s(local_318,0x104,L"", + (int)(short)piVar2[8],piVar2[9],piVar2[10],(int)(short)piVar2[0xb]); + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - reasonForRebind: ", + local_318); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + local_16d4 = (int *)FUN_10005330(piVar23[0xc],piVar23[0xd]); + local_8._0_1_ = 0x29; + local_16e0 = (int *)FUN_10005330(local_16fc.dwLowDateTime,local_16fc.dwHighDateTime); + local_8 = CONCAT31(local_8._1_3_,0x2a); + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)(local_16d4 + 1); + SysFreeString((BSTR)local_16d4[1]); + p_Var26 = local_16d8; + iVar10 = (**(code **)(*(int *)*local_16d4 + 0x74))((int *)*local_16d4); + if (iVar10 < 0) { + _com_issue_errorex(iVar10,(IUnknown *)*local_16d4,(_GUID *)&DAT_1017ae18); + } + local_16d4 = *(int **)local_16d8; + if (local_16d4 == (int *)0x0) { + local_16d4 = (int *)&DAT_1017a514; + } + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)(local_16e0 + 1); + SysFreeString((BSTR)local_16e0[1]); + iVar10 = (**(code **)(*(int *)*local_16e0 + 0x74))((int *)*local_16e0,local_16d8); + if (iVar10 < 0) { + _com_issue_errorex(iVar10,(IUnknown *)*local_16e0,(_GUID *)&DAT_1017ae18); + } + puVar18 = *(undefined2 **)local_16d8; + if (puVar18 == (undefined2 *)0x0) { + puVar18 = &DAT_1017a514; + } + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - subscribedLastDeploy ",puVar18, + L" it->lastDeploymentChange ",local_16d4,endl_exref); + uVar7 = FUN_1001a0e0(uVar7); + uVar7 = FUN_1001a0e0(uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + local_8._0_1_ = 0x29; + if (local_17cc != (int *)0x0) { + (**(code **)(*local_17cc + 8))(local_17cc); + } + SysFreeString(local_17c8); + local_8 = CONCAT31(local_8._1_3_,0x24); + if (local_17ec != (int *)0x0) { + (**(code **)(*local_17ec + 8))(local_17ec); + } + SysFreeString(local_17e8); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + local_16d4 = (int *)FUN_10005330(piVar23[0xe],piVar23[0xf]); + local_8._0_1_ = 0x2b; + local_16e0 = (int *)FUN_10005330(local_172c.dwLowDateTime,local_172c.dwHighDateTime); + local_8 = CONCAT31(local_8._1_3_,0x2c); + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)(local_16d4 + 1); + SysFreeString((BSTR)local_16d4[1]); + p_Var26 = local_16d8; + iVar10 = (**(code **)(*(int *)*local_16d4 + 0x74))((int *)*local_16d4); + if (iVar10 < 0) { + _com_issue_errorex(iVar10,(IUnknown *)*local_16d4,(_GUID *)&DAT_1017ae18); + } + local_16d4 = *(int **)local_16d8; + if (local_16d4 == (int *)0x0) { + local_16d4 = (int *)&DAT_1017a514; + } + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)(local_16e0 + 1); + SysFreeString((BSTR)local_16e0[1]); + iVar10 = (**(code **)(*(int *)*local_16e0 + 0x74))((int *)*local_16e0,local_16d8); + if (iVar10 < 0) { + _com_issue_errorex(iVar10,(IUnknown *)*local_16e0,(_GUID *)&DAT_1017ae18); + } + puVar18 = *(undefined2 **)local_16d8; + if (puVar18 == (undefined2 *)0x0) { + puVar18 = &DAT_1017a514; + } + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - subscribedLastCfgChange ",puVar18, + L" it->lastConfigChange ",local_16d4,endl_exref); + uVar7 = FUN_1001a0e0(uVar7); + uVar7 = FUN_1001a0e0(uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + local_8._0_1_ = 0x2b; + if (local_17b4 != (int *)0x0) { + (**(code **)(*local_17b4 + 8))(local_17b4); + } + SysFreeString(local_17b0); + local_8 = CONCAT31(local_8._1_3_,0x24); + if (local_17c4 != (int *)0x0) { + (**(code **)(*local_17c4 + 8))(local_17c4); + } + SysFreeString(local_17c0); + } + *(int *)(local_16d0 + 0x54) = *(int *)(local_16d0 + 0x54) + 1; + piVar2[3] = 1; + DVar15 = GetTickCount(); + *(DWORD *)(local_16d0 + 0x14) = DVar15; + *(DWORD *)(local_16d0 + 0xc) = local_16fc.dwLowDateTime; + *(DWORD *)(local_16d0 + 0x10) = local_16fc.dwHighDateTime; + piVar22 = (int *)*piVar22; + local_175c = (int *)0x0; + local_1758 = (BSTR)0x0; + if (DAT_101d6470 == (int *)0x0) { + local_176c = (int *)0x0; + HVar17 = CoGetClassObject((IID *)&DAT_1017b1c0,0x17,(LPVOID)0x0,(IID *)&DAT_1017b1d0, + &local_176c); + if (HVar17 < 0) { + local_179c = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_179c,(ThrowInfo *)&DAT_101a8794); + } + DAT_101d6470 = local_176c; + } + (**(code **)(*DAT_101d6470 + 0xc))(DAT_101d6470,&local_175c); + if (local_175c == (int *)0x0) { + local_1778 = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_1778,(ThrowInfo *)&DAT_101a8794); + } + local_8._0_1_ = 0x2d; + local_6c[0] = 0; + local_60 = 10000; + local_68 = 5; + local_64 = 0; + (**(code **)(*piVar22 + 0xc)) + (0,local_175c,0xffffffff,DAT_101d6504,DAT_101d6508,local_6c,0); + local_8 = CONCAT31(local_8._1_3_,0x24); + if (local_175c != (int *)0x0) { + (**(code **)(*local_175c + 8))(local_175c); + } + SysFreeString(local_1758); + iVar10 = local_16d0; + local_16d4 = (int *)*piVar2; + if (piVar2 != *(int **)(local_16d0 + 0x24)) { + *(int **)piVar2[1] = local_16d4; + *(int *)(*piVar2 + 4) = piVar2[1]; + operator_delete(piVar2); + *(int *)(iVar10 + 0x28) = *(int *)(iVar10 + 0x28) + -1; + } + local_16e0 = local_16d4; + if (local_1710 != (undefined4 *)0x0) { + (**(code **)*local_1710)(1); + } + pcVar21 = SysFreeString_exref; + local_8._0_1_ = 0x23; + SysFreeString(local_16ec); + local_8._0_1_ = 0x22; + if (local_1704 != (int *)0x0) { + (**(code **)(*local_1704 + 8))(local_1704); + } + SysFreeString(local_1700); + local_8._0_1_ = 5; + if (local_170c != (int *)0x0) { + (**(code **)(*local_170c + 8))(local_170c); + } + SysFreeString(local_1708); + goto LAB_10091415; + } + if (local_16cc[0] != 0) { +LAB_1009081b: + if (local_1774[0] != 0xc0) goto LAB_1009089a; + local_16d4 = (int *)(**(code **)(*local_170c + 0x78))(local_170c,&local_16fc); + if (local_16d4 == (int *)0x0) { + local_1730 = CONCAT31(local_1730._1_3_,1); + } + else { + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + piVar19 = local_16d4; + p_Var26 = endl_exref; + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - failed to extract time from value hr "); + pbVar12 = std::basic_ostream_> + ::operator<<(pbVar12,(long)piVar19); + goto LAB_10090933; + } + } + goto LAB_1009093b; + } + if (local_16c8 == 1) goto LAB_1009089a; + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + swprintf_s(local_318,0x104,L"", + (int)local_16cc[0],local_16c8,local_16c4,(int)local_16c0); + p_Var26 = endl_exref; + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38), + L" - status of GR subscription is ",local_318, + L" calling OnSetAttributeResult directly "); + uVar7 = FUN_1001a0e0(uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)*piVar22; + local_174c = (int *)0x0; + local_1748 = (BSTR)0x0; + if (DAT_101d6470 == (int *)0x0) { + local_1768 = (int *)0x0; + HVar17 = CoGetClassObject((IID *)&DAT_1017b1c0,0x17,(LPVOID)0x0,(IID *)&DAT_1017b1d0, + &local_1768); + if (HVar17 < 0) { + local_1798 = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_1798,(ThrowInfo *)&DAT_101a8794); + } + DAT_101d6470 = local_1768; + } + (**(code **)(*DAT_101d6470 + 0xc))(DAT_101d6470,&local_174c); + if (local_174c == (int *)0x0) { + local_17a0 = 0x80004005; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_17a0,(ThrowInfo *)&DAT_101a8794); + } + local_8._0_1_ = 0x25; + (**(code **)(*(int *)local_16d8 + 0xc)) + (0,local_174c,0xffffffff,DAT_101d6504,DAT_101d6508,local_16cc,0); + local_8 = CONCAT31(local_8._1_3_,0x24); + if (local_174c != (int *)0x0) { + (**(code **)(*local_174c + 8))(local_174c); + } + SysFreeString(local_1748); + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)*piVar22; + piVar23 = (int *)*piVar2; + if (piVar2 != *(int **)(local_16d0 + 0x24)) { + *(int **)piVar2[1] = piVar23; + *(int *)(*piVar2 + 4) = piVar2[1]; + operator_delete(piVar2); + *(int *)(local_16d0 + 0x28) = *(int *)(local_16d0 + 0x28) + -1; + } + local_16e0 = piVar23; + if (local_16d8 != + (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)0x0) { + (*(code *)**(undefined4 **)local_16d8)(1); + } + local_8._0_1_ = 0x23; + SysFreeString(local_16ec); + local_8._0_1_ = 0x22; + if (local_1704 != (int *)0x0) { + (**(code **)(*local_1704 + 8))(local_1704); + } + SysFreeString(local_1700); + local_8._0_1_ = 5; + if (local_170c != (int *)0x0) { + (**(code **)(*local_170c + 8))(local_170c); + } + SysFreeString(local_1708); + local_8._0_1_ = 3; + if (local_16f4 != (int *)0x0) { + (**(code **)(*local_16f4 + 8))(local_16f4); + } + local_8._0_1_ = 2; + SysFreeString(local_16e8); + local_8._0_1_ = 1; + SysFreeString(local_16f0); + local_8 = (uint)local_8._1_3_ << 8; + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = 0; + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + local_8 = 0xffffffff; + if (7 < local_1c) { + operator_delete(local_30); + } +LAB_10090804: + local_30 = (undefined4 *)((uint)local_30 & 0xffff0000); + } + else { + sVar29 = 7; + pwVar28 = L"MyHost."; + pwVar9 = (wchar_t *)(**(code **)(*(int *)*piVar22 + 8))(); + iVar10 = _wcsnicmp(pwVar9,pwVar28,sVar29); + if ((iVar10 == 0) && (sStack_16a6 == 1)) goto LAB_10090433; + local_1744 = (int *)0x0; + local_8 = CONCAT31(local_8._1_3_,7); + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + bVar5 = local_16e1 & 1; + uVar11 = (uint)local_16ac; + p_Var26 = endl_exref; + uVar7 = (**(code **)(*(int *)*piVar22 + 8)) + (L" bound from cache g ",uVar11,&DAT_1018bdac, + CONCAT22(uStack_16a8,uStack_16aa),&DAT_101850ec, + CONCAT22(sStack_16a6,uStack_16a8),&DAT_1018bdb4, + CONCAT22(uStack_16a4,sStack_16a6),&DAT_1018bdbc, + CONCAT22(uStack_16a2,uStack_16a4),L" di "); + uVar7 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x38),L" - ref ",uVar7); + uVar7 = FUN_1001a0e0(uVar7); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + pbVar12 = std::basic_ostream_>:: + operator<<(pbVar12,uVar11); + FUN_1001a0e0(pbVar12); + uVar7 = FUN_10022870(); + FUN_1001a0e0(uVar7); + uVar7 = FUN_10022870(); + FUN_1001a0e0(uVar7); + uVar7 = FUN_10022870(); + FUN_1001a0e0(uVar7); + uVar7 = FUN_10022870(); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar7); + pbVar12 = std::basic_ostream_>:: + operator<<(pbVar12,(bool)bVar5); + std::basic_ostream_>::operator<< + (pbVar12,p_Var26); + } + *(int *)(local_16d0 + 0x58) = *(int *)(local_16d0 + 0x58) + 1; + (**(code **)(*(int *)*piVar22 + 4))(&local_1744); + (**(code **)(*(int *)*piVar22 + 0x10))(1); + piVar23 = local_1744; + local_178c = 0; + local_178a = 0; + local_1786 = 0; + uStack_1784 = 0; + local_1782 = 0; + uStack_1780 = 0; + local_177e = 0; + uStack_177c = 0; + local_177a = 0; + local_1828 = local_1744; + if (local_1744 != (int *)0x0) { + (**(code **)(*local_1744 + 4))(local_1744); + } + local_1824 = 0; + local_1820 = 0; + local_181c = 0; + local_8._1_3_ = (uint3)((uint)local_8 >> 8); + local_1818 = 0; + local_8._0_1_ = 0xe; + local_7c[0] = 0xffff; + local_78 = 0; + local_74 = 1; + local_70 = 0; + puVar14 = local_30; + if (local_1c < 8) { + puVar14 = &local_30; + } + iVar10 = (**(code **)(*piVar23 + 0x2c))(piVar23,puVar14); + if (iVar10 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar10,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x55); + } + ppppuVar13 = (undefined4 ****)local_4c[0]; + if (local_38 < 8) { + ppppuVar13 = local_4c; + } + iVar10 = (**(code **)(*piVar23 + 0x34))(piVar23,ppppuVar13); + if (iVar10 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar10,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x65); + } + uStack_1784 = uStack_16a4; + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)FUN_1008f8b0(local_110, + CONCAT22(uStack_16aa,CONCAT11(uStack_16ab,local_16ac)), + CONCAT22(sStack_16a6,uStack_16a8), + CONCAT22(local_1782,uStack_16a4), + CONCAT22(local_177e,uStack_1780), + CONCAT22(local_177a,uStack_177c),local_1764); + local_1740 = (int *)0x0; + local_8._0_1_ = 0x10; + (**(code **)*piVar23)(piVar23,&DAT_1017b690,&local_1740); + local_8._0_1_ = 0x11; + iVar10 = (**(code **)(*local_1740 + 0x10))(local_1740,local_16d8); + if (iVar10 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar10,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x85); + } + local_8._0_1_ = 0xe; + if (local_1740 != (int *)0x0) { + (**(code **)(*local_1740 + 8))(local_1740); + } + local_173c = (int *)0x0; + local_8._0_1_ = 0x15; + (**(code **)*piVar23)(piVar23,&DAT_1017b938,&local_173c); + local_8._0_1_ = 0x16; + iVar10 = (**(code **)(*local_173c + 0x18))(local_173c,&local_1764); + if (iVar10 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar10,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x94); + } + local_8._0_1_ = 0xe; + if (local_173c != (int *)0x0) { + (**(code **)(*local_173c + 8))(local_173c); + } + local_16d9 = local_16e1 & 1; + FUN_1008fca0(&local_16d9); + local_16d4 = (int *)*piVar22; + puVar14 = (undefined4 *)FUN_100054b0(piVar23); + local_8._0_1_ = 0x19; + (**(code **)(*local_16d4 + 0xc))(0,*puVar14,0xffffffff,DAT_101d6504,DAT_101d6508,local_7c,0) + ; + local_8 = CONCAT31(local_8._1_3_,0xe); + if (local_17dc != (int *)0x0) { + (**(code **)(*local_17dc + 8))(local_17dc); + } + SysFreeString(local_17d8); + local_16d8 = (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)*piVar22; + piVar22 = (int *)*local_16e0; + if (local_16e0 != *(int **)(local_16d0 + 0x24)) { + *(int **)local_16e0[1] = piVar22; + *(int *)(*local_16e0 + 4) = local_16e0[1]; + operator_delete(local_16e0); + *(int *)(local_16d0 + 0x28) = *(int *)(local_16d0 + 0x28) + -1; + } + local_16e0 = piVar22; + if (local_16d8 != + (_func_basic_ostream_>_ptr_basic_ostream_>_ptr + *)0x0) { + (*(code *)**(undefined4 **)local_16d8)(1); + } + local_8._0_1_ = 0x1d; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 0x1c; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 0x1b; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 0x1a; + SysFreeString((BSTR)0x0); + local_8._0_1_ = 7; + (**(code **)(*piVar23 + 8))(piVar23); + local_8._0_1_ = 5; + if (local_1744 != (int *)0x0) { + (**(code **)(*local_1744 + 8))(local_1744); + } + local_8._0_1_ = 3; + if (local_16f4 != (int *)0x0) { + (**(code **)(*local_16f4 + 8))(local_16f4); + } + local_8._0_1_ = 2; + SysFreeString(local_16e8); + local_8._0_1_ = 1; + SysFreeString(local_16f0); + local_8 = (uint)local_8._1_3_ << 8; + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = 0; + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + local_8 = 0xffffffff; + if (7 < local_1c) { + operator_delete(local_30); + } +LAB_10091d53: + local_30 = (undefined4 *)((uint)local_30._2_2_ << 0x10); + } +LAB_10091d59: + local_1c = 7; + local_20 = 0; + } while (local_16e0 != *(int **)(local_16d0 + 0x24)); + } + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10101360 at 10101360 + +Signature: `undefined FUN_10101360(void)` + +```c + +void __fastcall FUN_10101360(int param_1) + +{ + undefined4 *puVar1; + char cVar2; + undefined4 uVar3; + int *piVar4; + int *piVar5; + uint uVar6; + int iVar7; + int *piVar8; + undefined2 *puVar9; + int local_220; + wchar_t local_21c [260]; + uint local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puStack_c = &LAB_101709ee; + local_10 = ExceptionList; + uVar6 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + uVar3 = *(undefined4 *)(param_1 + 0x3fc); + local_14 = uVar6; + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 0; + FUN_10003a90(uVar6); + _atexit(FUN_101792e0); + } + local_8 = 0xffffffff; + FUN_10022d50(&DAT_101d6370,L"AccessManager::DumpState - remotePlatformResolvers.size %d",uVar3); + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 1; + FUN_10003a90(uVar6); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,L" remotePlatformResolvers.sendResultsRetryCount %d", + *(undefined4 *)(param_1 + 0x404)); + piVar8 = (int *)**(int **)(param_1 + 0x3f8); + local_220 = 0; + if (piVar8 != *(int **)(param_1 + 0x3f8)) { + do { + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 2; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,L" remotePlatformResolvers[%d].this %x",local_220, + piVar8[3]); + iVar7 = piVar8[3]; + SysFreeString(*(BSTR *)(iVar7 + 8)); + *(undefined4 *)(iVar7 + 8) = 0; + iVar7 = (**(code **)(**(int **)(iVar7 + 4) + 0x20)) + (*(int **)(iVar7 + 4),(undefined4 *)(iVar7 + 8)); + if (iVar7 < 0) { +LAB_10101768: + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar7,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x3f); + } + iVar7 = piVar8[3]; + puVar1 = (undefined4 *)(iVar7 + 8); + SysFreeString(*(BSTR *)(iVar7 + 8)); + *puVar1 = 0; + iVar7 = (**(code **)(**(int **)(iVar7 + 4) + 0x20))(*(int **)(iVar7 + 4),puVar1); + if (iVar7 < 0) goto LAB_10101768; + puVar9 = (undefined2 *)*puVar1; + if (puVar9 == (undefined2 *)0x0) { + puVar9 = &DAT_1017a514; + } + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 3; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,L" remotePlatformResolvers[%d].mxReference %s",local_220,puVar9 + ); + iVar7 = piVar8[3]; + _snwprintf_s(local_21c,0x104,0xffffffff,L"", + *(undefined4 *)(iVar7 + 0x18),*(undefined4 *)(iVar7 + 0x1c), + *(undefined4 *)(iVar7 + 0x20)); + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 4; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,L" remotePlatformResolvers[%d].requesterEngine %s",local_220, + local_21c); + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 5; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,L" remotePlatformResolvers[%d].requesterData %x",local_220, + *(undefined4 *)(piVar8[3] + 0x24)); + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 6; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,L" remotePlatformResolvers[%d].currentEngineId %x",local_220, + *(undefined4 *)(piVar8[3] + 0x2c)); + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 7; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,L" remotePlatformResolvers[%d].retryCount %d",local_220, + *(undefined4 *)(piVar8[3] + 0x44)); + if (*(char *)((int)piVar8 + 0x11) == '\0') { + piVar4 = (int *)piVar8[2]; + if (*(char *)((int)piVar4 + 0x11) == '\0') { + cVar2 = *(char *)(*piVar4 + 0x11); + piVar8 = piVar4; + piVar4 = (int *)*piVar4; + while (cVar2 == '\0') { + cVar2 = *(char *)(*piVar4 + 0x11); + piVar8 = piVar4; + piVar4 = (int *)*piVar4; + } + } + else { + cVar2 = *(char *)(piVar8[1] + 0x11); + piVar5 = (int *)piVar8[1]; + piVar4 = piVar8; + while ((piVar8 = piVar5, cVar2 == '\0' && (piVar4 == (int *)piVar8[2]))) { + cVar2 = *(char *)(piVar8[1] + 0x11); + piVar5 = (int *)piVar8[1]; + piVar4 = piVar8; + } + } + } + local_220 = local_220 + 1; + } while (piVar8 != *(int **)(param_1 + 0x3f8)); + } + if ((DAT_101d6444 & 1) == 0) { + DAT_101d6444 = DAT_101d6444 | 1; + local_8 = 8; + FUN_10003a90(); + _atexit(FUN_101792e0); + local_8 = 0xffffffff; + } + FUN_10022d50(&DAT_101d6370,&DAT_1017a514); + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_101133d0 at 101133d0 + +Signature: `undefined FUN_101133d0(void)` + +```c + +void __fastcall FUN_101133d0(int param_1) + +{ + undefined4 *puVar1; + short sVar2; + int *piVar3; + char cVar4; + uint uVar5; + BSTR pOVar6; + int iVar7; + int iVar8; + wchar_t *pwVar9; + undefined4 uVar10; + undefined4 uVar11; + basic_ostream_> *pbVar12; + short *psVar13; + wchar_t ****ppppwVar14; + undefined4 ****ppppuVar15; + short *psVar16; + undefined4 *puVar17; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var18; + undefined4 ***local_84 [5]; + uint local_70; + undefined4 local_68; + undefined4 local_58; + uint local_54; + undefined4 ***local_4c [4]; + undefined4 local_3c; + uint local_38; + wchar_t ***local_30 [4]; + undefined4 local_20; + uint local_1c; + uint local_14; + void *local_10; + undefined1 *puStack_c; + uint local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_101725c0; + local_10 = ExceptionList; + uVar5 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + puVar1 = (undefined4 *)(param_1 + 0xac); + local_14 = uVar5; + if (*(BSTR *)(param_1 + 0xac) != L"") { + SysFreeString(*(BSTR *)(param_1 + 0xac)); + pOVar6 = SysAllocString(L""); + *puVar1 = pOVar6; + if (pOVar6 == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(0x8007000e,0, + "E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\MagellanPublic\\Includes\\ClassUtilities\\AAComBSTR.h" + ,0xec); + } + } + puVar17 = (undefined4 *)(param_1 + 0x54); + SysFreeString(*(BSTR *)(param_1 + 0x54)); + *puVar17 = 0; + piVar3 = *(int **)(param_1 + 0x50); + iVar7 = (**(code **)(*piVar3 + 0x20))(piVar3,puVar17,uVar5); + if (iVar7 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar7,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x3f); + } + psVar16 = (short *)*puVar17; + if (psVar16 == (short *)0x0) { + psVar16 = &DAT_1017a514; + } + local_54 = 7; + local_58 = 0; + local_68 = (void *)((uint)local_68._2_2_ << 0x10); + psVar13 = psVar16; + do { + sVar2 = *psVar13; + psVar13 = psVar13 + 1; + } while (sVar2 != 0); + FUN_100363d0(psVar16,(int)psVar13 - (int)(psVar16 + 1) >> 1); + local_8 = 0; + iVar7 = FUN_100110c0(&DAT_101851e8,0,1); + if (iVar7 == -1) { + if (*(int *)(param_1 + 0x44) == 0) goto LAB_101138b3; + psVar13 = (short *)FUN_1005f6b0(); + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + local_38 = 7; + local_3c = 0; + psVar16 = psVar13; + do { + sVar2 = *psVar16; + psVar16 = psVar16 + 1; + } while (sVar2 != 0); + FUN_100363d0(psVar13,(int)psVar16 - (int)(psVar13 + 1) >> 1); + local_8._0_1_ = 3; + iVar7 = FUN_100110c0(&DAT_101851e8,0,1); + if (iVar7 != -1) { + FUN_10043140(local_30,0,iVar7); + local_8 = CONCAT31(local_8._1_3_,4); + iVar8 = FUN_100a6690(L"0123456789",0,10); + if ((iVar8 != 0) && (iVar8 = FUN_100110c0(&DAT_1017b6e0,0,1), iVar8 == -1)) { + iVar8 = *(int *)(param_1 + 100); + if (*(char *)(iVar8 + 0x618) == '\0') { + pwVar9 = (wchar_t *)(iVar8 + 0x5fc); + if (7 < *(uint *)(iVar8 + 0x610)) { + pwVar9 = *(wchar_t **)pwVar9; + } + ppppwVar14 = (wchar_t ****)local_30[0]; + if (local_1c < 8) { + ppppwVar14 = local_30; + } + iVar8 = _wcsicmp((wchar_t *)ppppwVar14,pwVar9); + if (iVar8 != 0) goto LAB_10113776; + } + else { +LAB_10113776: + ppppwVar14 = (wchar_t ****)local_30[0]; + if (local_1c < 8) { + ppppwVar14 = local_30; + } + FUN_1005c2c0(ppppwVar14); + } + FUN_10043140(local_84,iVar7 + 1,0xffffffff); + local_8._0_1_ = 5; + if (local_70 < 8) { + local_84[0] = local_84; + } + FUN_1005f700(local_84[0]); + local_8 = CONCAT31(local_8._1_3_,4); + FUN_10024360(); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + uVar11 = *puVar1; + p_Var18 = endl_exref; + uVar10 = FUN_1005f6b0(&DAT_101965a8); + uVar10 = FUN_1005f590(L"] context [",uVar10); + uVar11 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x50), + L"PreboundReference::ParseNamespaceReference - namespace [",uVar11, + L"] item [",uVar10); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar11); + std::basic_ostream_>::operator<< + (pbVar12,p_Var18); + } + local_8._0_1_ = 3; + if (7 < local_1c) { + operator_delete(local_30[0]); + } + local_1c = 7; + local_20 = 0; + local_30[0] = (wchar_t ***)((uint)local_30[0] & 0xffff0000); + } + local_8 = (uint)local_8._1_3_ << 8; + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = 0; + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + goto LAB_101138b3; + } + FUN_10043140(local_30,0,iVar7); + local_8 = CONCAT31(local_8._1_3_,1); + iVar8 = FUN_100a6690(L"0123456789",0,10); + if ((iVar8 != 0) && (iVar8 = FUN_100110c0(&DAT_1017b6e0,0,1), iVar8 == -1)) { + iVar8 = *(int *)(param_1 + 100); + if (*(char *)(iVar8 + 0x618) == '\0') { + pwVar9 = (wchar_t *)(iVar8 + 0x5fc); + if (7 < *(uint *)(iVar8 + 0x610)) { + pwVar9 = *(wchar_t **)pwVar9; + } + ppppwVar14 = (wchar_t ****)local_30[0]; + if (local_1c < 8) { + ppppwVar14 = local_30; + } + iVar8 = _wcsicmp((wchar_t *)ppppwVar14,pwVar9); + if (iVar8 != 0) goto LAB_10113551; + } + else { +LAB_10113551: + ppppwVar14 = (wchar_t ****)local_30[0]; + if (local_1c < 8) { + ppppwVar14 = local_30; + } + FUN_1005c2c0(ppppwVar14); + } + FUN_10043140(local_4c,iVar7 + 1,0xffffffff); + local_8._0_1_ = 2; + ppppuVar15 = (undefined4 ****)local_4c[0]; + if (local_38 < 8) { + ppppuVar15 = local_4c; + } + piVar3 = *(int **)(param_1 + 0x50); + iVar7 = (**(code **)(*piVar3 + 0x24))(piVar3,ppppuVar15); + if (iVar7 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar7,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x45); + } + local_8 = CONCAT31(local_8._1_3_,1); + if (7 < local_38) { + operator_delete(local_4c[0]); + } + local_38 = 7; + local_3c = 0; + local_4c[0] = (undefined4 ***)((uint)local_4c[0] & 0xffff0000); + } + cVar4 = FUN_100408d0(); + if (cVar4 != '\0') { + uVar11 = *puVar1; + p_Var18 = endl_exref; + uVar10 = FUN_1005f6b0(&DAT_101965a8); + uVar10 = FUN_1005f590(L"] context [",uVar10); + uVar11 = FUN_1001a0e0(*(undefined4 *)(DAT_101d6474 + 0x50), + L"PreboundReference::ParseNamespaceReference - namespace [",uVar11, + L"] item [",uVar10); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + uVar11 = FUN_1001a0e0(uVar11); + pbVar12 = (basic_ostream_> *) + FUN_1001a0e0(uVar11); + std::basic_ostream_>::operator<< + (pbVar12,p_Var18); + } + local_8 = local_8 & 0xffffff00; + if (7 < local_1c) { + operator_delete(local_30[0]); + } + local_1c = 7; + local_20 = 0; + local_30[0] = (wchar_t ***)((uint)local_30[0] & 0xffff0000); +LAB_101138b3: + local_8 = 0xffffffff; + if (7 < local_54) { + operator_delete(local_68); + } + local_54 = 7; + local_58 = 0; + local_68 = (void *)((uint)local_68 & 0xffff0000); + ExceptionList = local_10; + __security_check_cookie(local_14 ^ (uint)&stack0xfffffffc); + return; +} + + +``` + +## FUN_10113900 at 10113900 + +Signature: `undefined FUN_10113900(void)` + +```c + +LPVOID * __thiscall FUN_10113900(LPVOID *param_1,undefined4 param_2) + +{ + uint uVar1; + HRESULT HVar2; + int iVar3; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puStack_c = &LAB_1017262c; + local_10 = ExceptionList; + uVar1 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + *param_1 = (LPVOID)0x0; + param_1[1] = (LPVOID)0x0; + param_1[2] = (LPVOID)0x0; + param_1[3] = (LPVOID)0x0; + param_1[4] = (LPVOID)0x0; + local_8 = 5; + HVar2 = CoCreateInstance((IID *)&DAT_1017f604,(LPUNKNOWN)0x0,0x17,(IID *)&DAT_1017b260,param_1); + if (HVar2 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(HVar2,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x2d); + } + iVar3 = (**(code **)(*(int *)*param_1 + 0x24))(*param_1,param_2,uVar1); + if (iVar3 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar3,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x45); + } + ExceptionList = local_10; + return param_1; +} + + +``` + +## FUN_10113b10 at 10113b10 + +Signature: `undefined FUN_10113b10(void)` + +```c + +undefined4 * __thiscall FUN_10113b10(undefined4 *param_1,int *param_2,undefined4 param_3) + +{ + undefined4 *puVar1; + short sVar2; + char cVar3; + uint uVar4; + int iVar5; + short *psVar6; + short *psVar7; + undefined2 *puVar8; + void *local_10; + undefined1 *puStack_c; + undefined1 local_8; + undefined3 uStack_7; + + puStack_c = &LAB_1017276f; + local_10 = ExceptionList; + uVar4 = DAT_101d60b8 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + *param_1 = MxConnectionCallback::vftable; + param_1[1] = CReferenceToResolve::vftable; + *(undefined1 *)(param_1 + 2) = 0; + param_1[3] = RedundancyResolutionStatusCallback::vftable; + *param_1 = PreboundReference::vftable; + param_1[1] = PreboundReference::vftable; + param_1[3] = PreboundReference::vftable; + *(undefined1 *)(param_1 + 4) = 0; + param_1[5] = 0; + param_1[0xb] = 7; + param_1[10] = 0; + *(undefined2 *)(param_1 + 6) = 0; + param_1[0x12] = 7; + param_1[0x11] = 0; + *(undefined2 *)(param_1 + 0xd) = 0; + uStack_7 = 0; + local_8 = 2; + param_1[0x14] = param_2; + if (param_2 != (int *)0x0) { + (**(code **)(*param_2 + 4))(param_2,uVar4); + } + param_1[0x15] = 0; + param_1[0x16] = 0; + param_1[0x17] = 0; + param_1[0x18] = 0; + param_1[0x19] = param_3; + param_1[0x1a] = 0; + *(undefined1 *)(param_1 + 0x1b) = 0; + param_1[0x21] = 7; + param_1[0x20] = 0; + *(undefined2 *)(param_1 + 0x1c) = 0; + param_1[0x27] = 0; + param_1[0x2a] = 0; + param_1[0x2b] = 0; + _local_8 = CONCAT31(uStack_7,0xe); + *(undefined1 *)(param_1 + 0x2c) = 0; + param_1[0x29] = 0; + if (DAT_101d8c40 == 0) { + FUN_10113070(); + } + if (param_2 != (int *)0x0) { + puVar1 = param_1 + 0x15; + SysFreeString((BSTR)param_1[0x15]); + *puVar1 = 0; + iVar5 = (**(code **)(*(int *)param_1[0x14] + 0x20))((int *)param_1[0x14],puVar1); + if (iVar5 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar5,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x3f); + } + psVar7 = (short *)*puVar1; + if (psVar7 == (short *)0x0) { + psVar7 = &DAT_1017a514; + } + psVar6 = psVar7; + do { + sVar2 = *psVar6; + psVar6 = psVar6 + 1; + } while (sVar2 != 0); + FUN_100363d0(psVar7,(int)psVar6 - (int)(psVar7 + 1) >> 1); + puVar1 = param_1 + 0x15; + SysFreeString((BSTR)param_1[0x15]); + *puVar1 = 0; + iVar5 = (**(code **)(*(int *)param_1[0x14] + 0x20))((int *)param_1[0x14],puVar1); + if (iVar5 < 0) { + /* WARNING: Subroutine does not return */ + FUN_1005bf30(iVar5,0,"E:\\BldSrc\\6\\s\\ExtInterfaces\\Lmx\\IMxReferencePtr.h",0x3f); + } + puVar8 = (undefined2 *)*puVar1; + if (puVar8 == (undefined2 *)0x0) { + puVar8 = &DAT_1017a514; + } + cVar3 = FUN_10134a10(puVar8); + if (cVar3 != '\0') { + psVar6 = (short *)FUN_1005f6b0(); + psVar7 = psVar6; + do { + sVar2 = *psVar7; + psVar7 = psVar7 + 1; + } while (sVar2 != 0); + FUN_100363d0(psVar6,(int)psVar7 - (int)(psVar6 + 1) >> 1); + } + } + FUN_101133d0(); + (**(code **)(*(int *)param_1[0x19] + 4))((int *)param_1[0x19]); + ExceptionList = local_10; + return param_1; +} + + +``` + diff --git a/analysis/ghidra/exports/Lmx.dll.string-refs.tsv b/analysis/ghidra/exports/Lmx.dll.string-refs.tsv new file mode 100644 index 0000000..3c8917b --- /dev/null +++ b/analysis/ghidra/exports/Lmx.dll.string-refs.tsv @@ -0,0 +1,393 @@ +string_address string_value ref_from ref_function +1017a5a4 e:\bldsrc\6\s\src\lmx\Reference.h 101474f2 FUN_10146f90@10146f90 +1017a5a4 e:\bldsrc\6\s\src\lmx\Reference.h 101472bd FUN_10146f90@10146f90 +1017a5a4 e:\bldsrc\6\s\src\lmx\Reference.h 100761e5 FUN_10075d80@10075d80 +1017a8c8 PreboundReferenceCacheDisabled 10003bc0 FUN_10003b80@10003b80 +1017a9bc 10003eb4 FUN_10003e60@10003e60 +1017ae28 MxSecurityViewOnly 1000449c FUN_100043d0@100043d0 +1017ae50 MxSecurityConfigure 10004483 FUN_100043d0@100043d0 +1017ae78 MxSecurityTune 1000446a FUN_100043d0@100043d0 +1017ae98 MxSecurityVerifiedWrite 10004451 FUN_100043d0@100043d0 +1017aec8 MxSecuritySecuredWrite 10004438 FUN_100043d0@100043d0 +1017aef8 MxSecurityOperate 1000441f FUN_100043d0@100043d0 +1017af1c MxSecurityFreeAccess 10004406 FUN_100043d0@100043d0 +1017b320 SOFTWARE\ArchestrA\Framework\Nmx 10046392 FUN_10046350@10046350 +1017b320 SOFTWARE\ArchestrA\Framework\Nmx 100463f5 FUN_10046350@10046350 +1017b320 SOFTWARE\ArchestrA\Framework\Nmx 10046423 FUN_10046350@10046350 +1017b320 SOFTWARE\ArchestrA\Framework\Nmx 100465a7 FUN_10046560@10046560 +1017b320 SOFTWARE\ArchestrA\Framework\Nmx 100156ef FUN_100156b0@100156b0 +1017b3e8 SOFTWARE\ArchestrA\Framework\Lmx 10096d26 FUN_10096ce0@10096ce0 +1017b3e8 SOFTWARE\ArchestrA\Framework\Lmx 10015cf7 FUN_10015cb0@10015cb0 +1017ba50 BindReferencesTimer 1002e8c3 FUN_1002e860@1002e860 +1017c250 PreboundReference cache limit read from registry is %d entries. 1002f5b5 FUN_1002f550@1002f550 +1017c2d0 PreboundReferenceCacheLimit 1002f590 FUN_1002f550@1002f550 +1017c548 DATA TYPE VALUE 1002ffe7 FUN_1002fbc0@1002fbc0 +1017c600 DATA TYPE VALUE <%s> 1002ffdf FUN_1002fbc0@1002fbc0 +1017da00 preboundReferenceTable[%d].status %s 1003fbb0 FUN_1003f8e0@1003f8e0 +1017da60 preboundReferenceTable[%d].mxReference %s 1003fab5 FUN_1003f8e0@1003f8e0 +1017dac0 preboundReferenceTable[%d].referenceString %s 1003fa58 FUN_1003f8e0@1003f8e0 +1017db20 preboundReferenceTable[%d].refCount %d 1003f9fe FUN_1003f8e0@1003f8e0 +1017db80 preboundReferenceTable[%d].this %x 1003f9b0 FUN_1003f8e0@1003f8e0 +1017dbe0 AccessManager::DumpState - preboundReferenceTable.size %d 1003f954 FUN_1003f8e0@1003f8e0 +1017dc58 preboundreferences[%d] %x 1003ff08 FUN_1003fca0@1003fca0 +1017dc98 connections[%d].preboundReferences.size %d 1003fe99 FUN_1003fca0@1003fca0 +1017eaf0 AccessManager::GetMaxMessagesBeforeFoldingValue - unable to create Nmx key - using default value of 10046487 FUN_10046350@10046350 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1005f3e4 FUN_1005f390@1005f390 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1005f43e FUN_1005f390@1005f390 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1005f48a FUN_1005f390@1005f390 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c2ef FUN_1004c220@1004c220 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c371 FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c3d7 FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c44d FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c485 FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c4f3 FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c54f FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c599 FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c5ed FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c628 FUN_1004c320@1004c320 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c740 FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c776 FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c7ac FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c803 FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c842 FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c890 FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c8eb FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c919 FUN_1004c6f0@1004c6f0 +1017f5d8 e:\bldsrc\6\s\src\lmx\IMxReferencePtr2.h 1004c94f FUN_1004c6f0@1004c6f0 +1017f7a8 e:\bldsrc\6\s\src\lmx\MxCallback.h 1004cf2f FUN_1004cef0@1004cef0 +1017f7cc e:\bldsrc\6\s\src\lmx\AccessManager.h 100615ff FUN_10061500@10061500 +1017f7cc e:\bldsrc\6\s\src\lmx\AccessManager.h 1006162a FUN_10061500@10061500 +1017f7cc e:\bldsrc\6\s\src\lmx\AccessManager.h 1006164b FUN_10061500@10061500 +1017f7cc e:\bldsrc\6\s\src\lmx\AccessManager.h 10061668 FUN_10061500@10061500 +1017f7cc e:\bldsrc\6\s\src\lmx\AccessManager.h 1006976d FUN_10069720@10069720 +1017f7cc e:\bldsrc\6\s\src\lmx\AccessManager.h 1006979a FUN_10069720@10069720 +1017f7cc e:\bldsrc\6\s\src\lmx\AccessManager.h 1004d17d FUN_1004d0d0@1004d0d0 +1017f7f8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 100567b9 FUN_100566c0@100566c0 +1017f7f8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 100567ed FUN_100566c0@100566c0 +1017f7f8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 1004d1f8 FUN_1004d1d0@1004d1d0 +1017f7f8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 1004d22c FUN_1004d1d0@1004d1d0 +1017f7f8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 1004d292 FUN_1004d260@1004d260 +1017f7f8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 1004d2c6 FUN_1004d260@1004d260 +1017f7f8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 1004d2fa FUN_1004d260@1004d260 +101811f8 AccessManager::DumpState referenceResolver.pendingBindRequestTimeouts %d 1004fc13 FUN_1004f880@1004f880 +101815e8 AccessManager::DumpState referenceResolver.successfullBindResponses %d 1004fa5d FUN_1004f880@1004f880 +10181690 AccessManager::DumpState referenceResolver.bindResponseFailures %d 1004fa14 FUN_1004f880@1004f880 +10181738 AccessManager::DumpState referenceResolver.unboundReferencesPendingDbUpdate %d 1004f9cb FUN_1004f880@1004f880 +10181980 clientBindRequests.boundReferencesPendingResponse[%d].guid %d 10050603 FUN_10050060@10050060 +10181a20 clientBindRequests.boundReferencesPendingResponse[%d].correlationId %d 10050597 FUN_10050060@10050060 +10181ac0 clientBindRequests.boundReferencesPendingResponse[%d].engine %s 1005054f FUN_10050060@10050060 +10181b60 AccessManager::DumpState - clientBindRequests.boundReferencesPendingResponse.size %d 100504c8 FUN_10050060@10050060 +10181c10 clientBindRequests.bindRequests[%d].reasonForRebind %s 1005041c FUN_10050060@10050060 +10181c88 clientBindRequests.bindRequests[%d].ref %s 1005039f FUN_10050060@10050060 +10181d00 clientBindRequests.bindRequests[%d].guid %s 10050343 FUN_10050060@10050060 +10181d78 clientBindRequests.bindRequests[%d].correlationId %d 100502d4 FUN_10050060@10050060 +10181df0 clientBindRequests.bindRequests[%d].engine %s 10050289 FUN_10050060@10050060 +10182060 AccessManager::DumpState - bindReferencesRejected %d 10050124 FUN_10050060@10050060 +10182108 AccessManager::DumpState - clientBindRequests.bindRequests.size %d 100500da FUN_10050060@10050060 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 100eae52 FUN_100eabf0@100eabf0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 100eae78 FUN_100eabf0@100eabf0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10072e85 FUN_10072df0@10072df0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10072eae FUN_10072df0@10072df0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10072eda FUN_10072df0@10072df0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10072f03 FUN_10072df0@10072df0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 100eaa08 FUN_100ea780@100ea780 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 100eaa2e FUN_100ea780@100ea780 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1011396b FUN_10113900@10113900 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1011398b FUN_10113900@10113900 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10113c61 FUN_10113b10@10113b10 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10113cba FUN_10113b10@10113b10 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10114046 FUN_10113d40@10113d40 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10113472 FUN_101133d0@101133d0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1011359e FUN_101133d0@101133d0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10060a55 FUN_10060a20@10060a20 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10060a98 FUN_10060a20@10060a20 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10060ae5 FUN_10060a20@10060a20 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10060b1c FUN_10060a20@10060a20 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1010176a FUN_10101360@10101360 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1006992e FUN_10069720@10069720 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f8ea FUN_1005f880@1005f880 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f996 FUN_1005f930@1005f930 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005fb5f FUN_1005faf0@1005faf0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005fc0f FUN_1005fba0@1005fba0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005fcbf FUN_1005fc50@1005fc50 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1008fc57 FUN_1008fc40@1008fc40 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1008fc87 FUN_1008fc70@1008fc70 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1008fd16 FUN_1008fca0@1008fca0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10091dbf FUN_1008fd50@1008fd50 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10091dae FUN_1008fd50@1008fd50 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10091d9d FUN_1008fd50@1008fd50 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10091d8f FUN_1008fd50@1008fd50 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f55b FUN_1005f4f0@1005f4f0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f5b8 FUN_1005f590@1005f590 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f5f7 FUN_1005f5e0@1005f5e0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f638 FUN_1005f610@1005f610 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f688 FUN_1005f660@1005f660 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f6d8 FUN_1005f6b0@1005f6b0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f717 FUN_1005f700@1005f700 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f7a8 FUN_1005f730@1005f730 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1005f846 FUN_1005f7e0@1005f7e0 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10064b32 FUN_10064a00@10064a00 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10064b74 FUN_10064a00@10064a00 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10064bb6 FUN_10064a00@10064a00 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10064bf8 FUN_10064a00@10064a00 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10115465 FUN_10114a90@10114a90 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1011500f FUN_10114a90@10114a90 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10114854 FUN_10114740@10114740 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1011487e FUN_10114740@10114740 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 101148b0 FUN_10114740@10114740 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 101148dc FUN_10114740@10114740 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 1007632e FUN_10075d80@10075d80 +10186294 E:\BldSrc\6\s\ExtInterfaces\Lmx\IMxReferencePtr.h 10065abe FUN_10065630@10065630 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 1006019d FUN_100600f0@100600f0 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 100602d5 FUN_10060240@10060240 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 1006036b FUN_10060240@10060240 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 1006046b FUN_100603d0@100603d0 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 100604b6 FUN_100603d0@100603d0 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 101319c2 FUN_10131930@10131930 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 10131d28 FUN_10131a20@10131a20 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 1005fd7f FUN_1005fd60@1005fd60 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 1005feb8 FUN_1005fd90@1005fd90 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 1005ff41 FUN_1005fef0@1005fef0 +101862c8 E:\BldSrc\6\s\ExtInterfaces\Lmx\CBootstrapController.h 1006000b FUN_1005ff70@1005ff70 +101863c0 Lmx::CBootstrapController::GetPlatformMappingTableTimeStamp called %s 1006061b FUN_100603d0@100603d0 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10112263 FUN_101121e0@101121e0 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 1011264b FUN_101121e0@101121e0 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10060dab FUN_10060d50@10060d50 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10060dd1 FUN_10060d50@10060d50 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10060df4 FUN_10060d50@10060d50 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10060e1a FUN_10060d50@10060d50 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10060ebf FUN_10060e50@10060e50 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10100e98 FUN_10100e60@10100e60 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10100ee6 FUN_10100eb0@10100eb0 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10060ef8 FUN_10060ed0@10060ed0 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10100f3d FUN_10100f00@10100f00 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10100f97 FUN_10100f70@10100f70 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10100fcb FUN_10100fb0@10100fb0 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10100ffc FUN_10100fe0@10100fe0 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 10101027 FUN_10101010@10101010 +101864f8 e:\bldsrc\6\s\src\lmx\CNmxAdapter.h 1010d50e FUN_1010d4a0@1010d4a0 +1018652c E:\BldSrc\6\s\ExtInterfaces\Lmx\CPlatformInfoServer.h 10060f2f FUN_10060f10@10060f10 +1018652c E:\BldSrc\6\s\ExtInterfaces\Lmx\CPlatformInfoServer.h 10061068 FUN_10060f40@10060f40 +1018652c E:\BldSrc\6\s\ExtInterfaces\Lmx\CPlatformInfoServer.h 100610ea FUN_100610a0@100610a0 +1018652c E:\BldSrc\6\s\ExtInterfaces\Lmx\CPlatformInfoServer.h 100853e8 FUN_10084b90@10084b90 +101874e0 AccessManager::BindReferences() 10065476 FUN_10065350@10065350 +101874e0 AccessManager::BindReferences() 10065541 FUN_10065350@10065350 +101874e0 AccessManager::BindReferences() 100655fa FUN_10065350@10065350 +10187eac e:\bldsrc\6\s\src\lmx\stdafx.h 1006b861 Catch@1006b85c@1006b85c +10187eac e:\bldsrc\6\s\src\lmx\stdafx.h 1006b8eb FUN_1006b8bd@1006b8bd +10187eac e:\bldsrc\6\s\src\lmx\stdafx.h 1006b936 Catch@1006b931@1006b931 +10187eac e:\bldsrc\6\s\src\lmx\stdafx.h 1006b9b2 Catch@1006b9ad@1006b9ad +10187f84 LMX shutting down. 1006d0c4 FUN_1006cff0@1006cff0 +10187fb0 NmxAdapter is already shut down 1006d073 FUN_1006cff0@1006cff0 +1018a140 LMX starting up. 100858dd FUN_10084b90@10084b90 +1018a168 {40} Starting LMX #%d at [%p], Version %s, Signature %s, Location %s 10085833 FUN_10084b90@10084b90 +1018a244 lmx.dll 10085757 FUN_10084b90@10084b90 +1018a254 Lmx.aaDCT 10178fe9 FUN_10178fc0@10178fc0 +1018a578 NmxSupport-ConvertASBValueToMxValue: itemDataUpdate.Value.Length %d 10087b51 FUN_10086cf0@10086cf0 +1018ac78 - failed to find correlationId in boundReferencesPendingResponse 1008c3a2 FUN_1008c120@1008c120 +1018b228 CReferenceStringResolutionService::ProcessPendingClientRequests - bindRequests queue size 1008d7dd FUN_1008d760@1008d760 +1018b490 CReferenceStringResolver::ProcessPendingGRReferenceBindRequests - following reference not bound withing 1008f4aa FUN_1008f310@1008f310 +1018c1c8 *** LMX *** Engine '%s' [%d.%d.1] Reference Count Map of size %d to file "%s" (Dumping references of type '%s', filtered attribute '%s') 10092a85 FUN_100928d0@100928d0 +1018c470 *** LMX *** Engine '%s' [%d.%d.1] Side Count Map of size %d to file "%s" (Dumping references of type '%s', filtered attribute '%s') 1009309c FUN_10092f10@10092f10 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093bda FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093c0e FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093c52 FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093c70 FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093c97 FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093cbe FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093ce5 FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093d0c FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093d33 FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093d57 FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093d7a FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093d9d FUN_10093b50@10093b50 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093e42 FUN_10093e10@10093e10 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093e6b FUN_10093e10@10093e10 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093ea6 FUN_10093e90@10093e90 +1018c5b8 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\lmx\CObjectInformation.h 10093ed4 FUN_10093e90@10093e90 +1018de24 PreboundReference 1009c91c FUN_1009c560@1009c560 +1018de8c NmxMessages 1009c7de FUN_1009c560@1009c560 +1018eef8 MxNmxControlMsg 100a69d1 FUN_100a68d0@100a68d0 +1018f2a8 DemandReadCallback::CancelWithStatus - Calling OnGetAttributeResult with status 100dc8d2 FUN_100dc750@100dc750 +1018f350 DemandReadCallback::CancelWithStatus - status 100dc7e7 FUN_100dc750@100dc750 +1018f3c4 e:\bldsrc\6\s\src\lmx\PreboundReference.h 100e18e9 FUN_100e18b0@100e18b0 +1018f3c4 e:\bldsrc\6\s\src\lmx\PreboundReference.h 100dd0ec FUN_100dd0d0@100dd0d0 +1018f3c4 e:\bldsrc\6\s\src\lmx\PreboundReference.h 100dd10e FUN_100dd0d0@100dd0d0 +1018f3f0 MxConnection::UnregisterPreboundReference - EXIT hResult 100df2f6 FUN_100df1a0@100df1a0 +1018f478 MxConnection::UnregisterPreboundReference - ENTER preboundRefHandle 100df1da FUN_100df1a0@100df1a0 +1018f508 MxConnection::UserRegisterPreboundReference - EXIT pMxReferenceHandle 100e1cc9 FUN_100e1920@100e1920 +1018f598 MxConnection::UserRegisterPreboundReference - ENTER preboundHandle 100e1982 FUN_100e1920@100e1920 +1018f890 e:\bldsrc\6\s\src\lmx\CReferenceStringParser.h 100e216e FUN_100e2150@100e2150 +1018f890 e:\bldsrc\6\s\src\lmx\CReferenceStringParser.h 100e2198 FUN_100e2150@100e2150 +1018f890 e:\bldsrc\6\s\src\lmx\CReferenceStringParser.h 100e220a FUN_100e21b0@100e21b0 +1018f890 e:\bldsrc\6\s\src\lmx\CReferenceStringParser.h 100e2231 FUN_100e21b0@100e21b0 +10190ea8 MxConnection::PrebindReference - EXIT *preboundRefHandle 100eab93 FUN_100ea780@100ea780 +10190f20 MxConnection::PrebindReference - ENTER referenceString 100ea924 FUN_100ea780@100ea780 +10190f90 MxConnection::PrebindReference - ENTER referenceString ' 100ea84c FUN_100ea780@100ea780 +10191038 MxConnection::PrebindReferenceEx - EXIT * preboundRefHandle 100eb0f6 FUN_100eabf0@100eabf0 +101910b8 MxConnection::PrebindReferenceEx - ENTER referenceString 100eadbb FUN_100eabf0@100eabf0 +101912d8 MxConnection::SuspendReference - Invalid hRef 100ec0d4 FUN_100ec060@100ec060 +10192f38 PutRequest returned %08X - priority %d galaxy %d platform %d engine %d fastStream.index %d fastStream.size %d fastStream.capacity %d 100fbf15 FUN_100fbe50@100fbe50 +101932b4 NmxSupport.cpp 10112861 Catch@1011285c@1011285c +101932b4 NmxSupport.cpp 101128d9 Catch@101128d4@101128d4 +101932b4 NmxSupport.cpp 10112707 FUN_101126d0@101126d0 +101932b4 NmxSupport.cpp 101127d4 Catch@101127cf@101127cf +101932b4 NmxSupport.cpp 101044d2 FUN_10103ba0@10103ba0 +101932b4 NmxSupport.cpp 1010b88e FUN_1010b7c0@1010b7c0 +101932b4 NmxSupport.cpp 101109b3 FUN_10110986@10110986 +101932b4 NmxSupport.cpp 10110a52 FUN_10110986@10110986 +101932b4 NmxSupport.cpp 10110f65 FUN_10110986@10110986 +101932b4 NmxSupport.cpp 10101904 FUN_101018a0@101018a0 +101932b4 NmxSupport.cpp 101112a5 FUN_10111288@10111288 +101932b4 NmxSupport.cpp 101112dc FUN_10111288@10111288 +101932b4 NmxSupport.cpp 10111501 FUN_10111288@10111288 +101932b4 NmxSupport.cpp 1011153b FUN_10111288@10111288 +101932b4 NmxSupport.cpp 100fe847 FUN_100fe839@100fe839 +101932b4 NmxSupport.cpp 100fe87b FUN_100fe839@100fe839 +101932b4 NmxSupport.cpp 10106885 Catch@10106880@10106880 +101932b4 NmxSupport.cpp 101068fd Catch@101068f8@101068f8 +101932b4 NmxSupport.cpp 10106987 FUN_10106950@10106950 +101932b4 NmxSupport.cpp 101069d4 Catch@101069cf@101069cf +101932b4 NmxSupport.cpp 10106a61 Catch@10106a5c@10106a5c +101932b4 NmxSupport.cpp 10106ad9 Catch@10106ad4@10106ad4 +101932b4 NmxSupport.cpp 1010eca8 Catch@1010eca3@1010eca3 +101932b4 NmxSupport.cpp 1010ed35 Catch@1010ed30@1010ed30 +101932b4 NmxSupport.cpp 1010edad Catch@1010eda8@1010eda8 +101932b4 NmxSupport.cpp 1010607d Catch@10106078@10106078 +101932b4 NmxSupport.cpp 1010610a Catch@10106105@10106105 +101932b4 NmxSupport.cpp 10106182 Catch@1010617d@1010617d +101932b4 NmxSupport.cpp 10106207 FUN_101061d0@101061d0 +101932b4 NmxSupport.cpp 10106261 Catch@1010625c@1010625c +101932b4 NmxSupport.cpp 101062ee Catch@101062e9@101062e9 +101932b4 NmxSupport.cpp 10106366 Catch@10106361@10106361 +101932b4 NmxSupport.cpp 101063e7 FUN_101063b0@101063b0 +101932b4 NmxSupport.cpp 10106441 Catch@1010643c@1010643c +101932b4 NmxSupport.cpp 101064ce Catch@101064c9@101064c9 +101932b4 NmxSupport.cpp 10106546 Catch@10106541@10106541 +101932b4 NmxSupport.cpp 101065c7 FUN_10106590@10106590 +101932b4 NmxSupport.cpp 1010661d Catch@10106618@10106618 +101932b4 NmxSupport.cpp 101066aa Catch@101066a5@101066a5 +101932b4 NmxSupport.cpp 10106722 Catch@1010671d@1010671d +101932b4 NmxSupport.cpp 1010e76a FUN_1010e730@1010e730 +101932b4 NmxSupport.cpp 101067a7 FUN_10106770@10106770 +101932b4 NmxSupport.cpp 101067f8 Catch@101067f3@101067f3 +101932b4 NmxSupport.cpp 10108c9e FUN_10107880@10107880 +101932b4 NmxSupport.cpp 10108844 FUN_10107880@10107880 +101932b4 NmxSupport.cpp 10108a46 FUN_10107880@10107880 +101932b4 NmxSupport.cpp 10108bf9 FUN_10107880@10107880 +101932b4 NmxSupport.cpp 10107663 FUN_10107632@10107632 +101932b4 NmxSupport.cpp 10107691 FUN_10107632@10107632 +101932b4 NmxSupport.cpp 10105a27 FUN_101059f0@101059f0 +101932b4 NmxSupport.cpp 10105c21 Catch@10105c1c@10105c1c +101932b4 NmxSupport.cpp 10105cae Catch@10105ca9@10105ca9 +101932b4 NmxSupport.cpp 10105d26 Catch@10105d21@10105d21 +101932b4 NmxSupport.cpp 10105da7 FUN_10105d70@10105d70 +101932b4 NmxSupport.cpp 10105e09 Catch@10105e04@10105e04 +101932b4 NmxSupport.cpp 10105e96 Catch@10105e91@10105e91 +101932b4 NmxSupport.cpp 10105f0e Catch@10105f09@10105f09 +101932b4 NmxSupport.cpp 10105f97 FUN_10105f60@10105f60 +101932b4 NmxSupport.cpp 1010fbf0 +101932b4 NmxSupport.cpp 1010fc22 +101932b4 NmxSupport.cpp 1010fca7 +101932b4 NmxSupport.cpp 1010fd64 +101932b4 NmxSupport.cpp 101100c5 +101932b4 NmxSupport.cpp 1011012c +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff04e FUN_100ff030@100ff030 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff079 FUN_100ff030@100ff030 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff0a4 FUN_100ff030@100ff030 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff0ee FUN_100ff0d0@100ff0d0 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff119 FUN_100ff0d0@100ff0d0 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff15a FUN_100ff140@100ff140 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff19a FUN_100ff180@100ff180 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff1dd FUN_100ff1c0@100ff1c0 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff217 FUN_100ff200@100ff200 +10193384 e:\bldsrc\6\s\src\lmx\TestMessages.h 100ff24a FUN_100ff200@100ff200 +101933b0 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\NmxControl.h 100ff5de FUN_100ff5c0@100ff5c0 +101933b0 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\NmxControl.h 100ff609 FUN_100ff5c0@100ff5c0 +101933b0 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\NmxControl.h 100ff64d FUN_100ff630@100ff630 +101933b0 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\NmxControl.h 100ff68e FUN_100ff670@100ff670 +101933b0 E:\BldSrc\6\s\sharedcomponents\internal\RTCommon\Includes\engineservicescommon\NmxControl.h 100ff6bc FUN_100ff670@100ff670 +10193420 e:\bldsrc\6\s\src\lmx\CDictionary.h 10101103 FUN_101010e0@101010e0 +10193420 e:\bldsrc\6\s\src\lmx\CDictionary.h 1010112e FUN_101010e0@101010e0 +10193420 e:\bldsrc\6\s\src\lmx\CDictionary.h 1010116e FUN_10101140@10101140 +10193420 e:\bldsrc\6\s\src\lmx\CDictionary.h 10109640 FUN_10107880@10107880 +10193420 e:\bldsrc\6\s\src\lmx\CDictionary.h 10109632 FUN_10107880@10107880 +10193420 e:\bldsrc\6\s\src\lmx\CDictionary.h 10109624 FUN_10107880@10107880 +10193698 remotePlatformResolvers.sendResultsRetryCount %d 1010141e FUN_10101360@10101360 +10193ebc Sending buffer data index 10108a09 FUN_10107880@10107880 +10194978 - NmxRequestBuffer::CancelRequests exit. NmxRequestBuffer size %d 1010a574 FUN_1010a240@1010a240 +10194c10 PutRequest 1010b24a FUN_1010ad00@1010ad00 +10194c78 - directly to NMX 1010b227 FUN_1010ad00@1010ad00 +10194c78 - directly to NMX 1010b211 FUN_1010ad00@1010ad00 +10194ca0 AccessManager::submitNmxRequest - clientId %d operationType %d correlationId %d pReference %x 1010b086 FUN_1010ad00@1010ad00 +10194ee0 ScanOnDemandCallback::OperationComplete - Send retry limit reached for 1010bb1c FUN_1010b990@1010b990 +10195108 AccessManager::ProcessNmxResponse - will SKIP referenceWentBad call 1010cfd3 FUN_1010bd10@1010bd10 +101951f0 AccessManager::ProcessNmxResponse - failed to find local platform resolver 1010c0c9 FUN_1010bd10@1010bd10 +10195288 AccessManager::ProcessNmxResponse - calling local platform resolver 1010c04f FUN_1010bd10@1010bd10 +10195314 GetResponse 1010be53 FUN_1010bd10@1010bd10 +10195314 GetResponse 1010c3bd FUN_1010bd10@1010bd10 +10195314 GetResponse 1010c972 FUN_1010bd10@1010bd10 +10195350 AccessManager::ProcessNmxResponses received message block ( 1010d564 FUN_1010d4a0@1010d4a0 +10195498 RemotePlatformResolver::OperationComplete - Send retry count for MxResolveOffPlatformResults message to requesterEngine g %d p %d e %d 1010ddfa FUN_1010dc80@1010dc80 +10195838 AccessManager::ProcessOutputsEx unable to send message block (priority 1010e9d3 FUN_1010e730@1010e730 +10195a30 AccessManager::ProcessNmxRequest - MxCancelSubscription failed to remove subscription cacheIndex 101104c8 FUN_1010ee00@1010ee00 +10195c60 Engine %s dumping ClientBindRequestInfo 1011028a +10195d48 Engine %s dumping PreboundReferenceTable 101101a9 +101960f8 AccessManager::ProcessNmxRequest - MxResolveOnPlatformResults failed to find reference 1010f85e FUN_1010ee00@1010ee00 +101961a8 AccessManager::ProcessNmxRequest - canceling subscription cacheIndex 1010f669 FUN_1010ee00@1010ee00 +101961a8 AccessManager::ProcessNmxRequest - canceling subscription cacheIndex 10111c88 +101961a8 AccessManager::ProcessNmxRequest - canceling subscription cacheIndex 10111ef4 +10196320 AccessManager::ProcessNmxRequests received message block ( 101122cf FUN_101121e0@101121e0 +10196428 PreboundReference - resolver shortcut is disabled. 10113104 FUN_10113070@10113070 +101964c0 Software\ArchestrA\Framework\Lmx 10113081 FUN_10113070@10113070 +10196508 PreboundReference::ParseNamespaceReference - namespace [ 10113624 FUN_101133d0@101133d0 +10196508 PreboundReference::ParseNamespaceReference - namespace [ 1011381b FUN_101133d0@101133d0 +101965b0 PreboundReference::Resolve - EXIT 101144e0 FUN_10113d40@10113d40 +101965f8 PreboundReference::Resolve() - GetPlatformNameFromId returned a NULL platform name for id %d 1011441e FUN_10113d40@10113d40 +101966b4 preboundreference.cpp 101142ce FUN_10113d40@10113d40 +101966b4 preboundreference.cpp 10114c60 FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 10114d42 FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 10114e84 FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 101154e4 FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 10115090 FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 10115196 FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 10115230 FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 101152ce FUN_10114a90@10114a90 +101966b4 preboundreference.cpp 101156cd FUN_101155a0@101155a0 +101966b4 preboundreference.cpp 101156ea FUN_101155a0@101155a0 +101966b4 preboundreference.cpp 101157d7 FUN_101155a0@101155a0 +101966b4 preboundreference.cpp 101157f4 FUN_101155a0@101155a0 +101966b4 preboundreference.cpp 101156e5 FUN_101155a0@101155a0 +101966b4 preboundreference.cpp 101157ef FUN_101155a0@101155a0 +101966d0 PreboundReference::Resolve - Found mxReference 101141e9 FUN_10113d40@10113d40 +10196760 PreboundReference::Resolve() - Correcting context info for ref string 101140c5 FUN_10113d40@10113d40 +10196830 PreboundReference::Resolve - ENTER mxReference 10113e04 FUN_10113d40@10113d40 +10196890 PreboundReference::Resolve - referenceString 10113da1 FUN_10113d40@10113d40 +10196910 PreboundReference::ReferenceWentBad - EXIT 10114a51 FUN_10114740@10114740 +10196968 PreboundReference::ReferenceWentBad - ENTER 1011478e FUN_10114740@10114740 +101969c0 PreboundReference::OnSetAttributeResult - EXIT status 1011555b FUN_10114a90@10114a90 +10196a30 PreboundReference - attempting local platform < 101153e4 FUN_10114a90@10114a90 +10196ab0 PreboundReference::OnSetAttributeResult unable to crreate CPreboundReferenceAdapter for ref %s 10114f88 FUN_10114a90@10114a90 +10196b70 PreboundReference::OnSetAttributeResult - ENTER correlationId 10114bb8 FUN_10114a90@10114a90 +10196c98 PreboundReference - local platform resolution - failed. 1011583e FUN_101155a0@101155a0 +10196d50 PreboundReference - local platform resolution - success. 1011572a FUN_101155a0@101155a0 +10196dc8 PreboundReference::OnPlatformResolveReferenceResults 10115615 FUN_101155a0@101155a0 +10197178 Resending attribute with cache index 1011f640 FUN_1011f530@1011f530 +10198c14 Sending SubscriberRemoved to 10126940 FUN_10126710@10126710 +10198ee0 Resending 10126c38 FUN_10126a60@10126a60 +1019a51c e:\bldsrc\6\s\src\lmx\RedundancyStatusMonitor.h 1012f1a7 FUN_1012f160@1012f160 +1019a51c e:\bldsrc\6\s\src\lmx\RedundancyStatusMonitor.h 1012f1db FUN_1012f160@1012f160 +1019a51c e:\bldsrc\6\s\src\lmx\RedundancyStatusMonitor.h 1012f1f9 FUN_1012f160@1012f160 +1019a51c e:\bldsrc\6\s\src\lmx\RedundancyStatusMonitor.h 10134609 FUN_101345d0@101345d0 +1019a51c e:\bldsrc\6\s\src\lmx\RedundancyStatusMonitor.h 10134651 FUN_101345d0@101345d0 +1019c734 waitingForPreboundResolution 1013876b FUN_10138680@10138680 +1019e038 Reference::sendSubscriptionRequest2 sending MxSubscribeSuspended 1013cfe7 FUN_1013cb10@1013cb10 +1019e178 Reference::sendNestedSubscriptionRequest sending MxSubscribeSuspended 1013d819 FUN_1013d420@1013d420 +1019f190 Reference::InitializeWithPreboundReference - EXIT rc 10141d27 FUN_10141bb0@10141bb0 +1019f200 Reference::InitializeWithPreboundReference - ENTER pReference 10141c03 FUN_10141bb0@10141bb0 +1019f280 Reference::PreboundReferenceResolved - EXIT rc 10142198 FUN_10141d60@10141d60 +1019f2e0 Reference::PreboundReferenceResolved - ENTER status 10141df3 FUN_10141d60@10141d60 +1019f608 Reference::ReRouteSubscription - Sending nested subscribe to the new target engine. 1014279e FUN_101425e0@101425e0 +1019fb18 Bad MxStatus while resolving GetTagNameString info on remote engine - sending request to GR 10143b41 FUN_10143060@10143060 +1019fd68 Unable to resolve GetTagNameString info on remote engine - sending request to GR 101435c6 FUN_10143060@10143060 +101d38f6 Lmx.DLL 101d38bc diff --git a/analysis/ghidra/exports/LmxProxy.dll.auth-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.auth-decompile.md new file mode 100644 index 0000000..84f2b1b --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.auth-decompile.md @@ -0,0 +1,324 @@ +# LmxProxy.dll selected decompile + +## FUN_1001399f at 1001399f + +Signature: `undefined __stdcall FUN_1001399f(int param_1, long param_2, wchar_t * param_3, undefined4 param_4, long * param_5)` + +```c + +/* WARNING: Function: __EH_prolog3_catch_GS replaced with injection: EH_prolog3 */ + +void FUN_1001399f(int param_1,long param_2,wchar_t *param_3,undefined4 param_4,long *param_5) + +{ + long *plVar1; + basic_ostream_> bVar2; + basic_ostream_> *pbVar3; + int *piVar4; + int iVar5; + wchar_t *pwVar6; + wchar_t *pwVar7; + long lVar8; + char cVar9; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var10; + undefined4 local_6c; + undefined4 local_68; + undefined4 uStack_64; + undefined4 uStack_60; + undefined4 uStack_5c; + undefined1 local_54 [8]; + undefined4 local_4c; + undefined4 local_48; + int local_44; + long local_40 [2]; + BSTR local_38; + int *local_34; + long *local_30; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_2c; + undefined4 local_28; + undefined4 uStack_24; + undefined4 uStack_20; + undefined4 uStack_1c; + int local_8; + undefined4 uStack_4; + + uStack_4 = 100; + local_40[0] = param_2; + local_48 = param_4; + local_30 = param_5; + local_8 = 0; + FUN_10011b07(&local_2c); + local_34 = (int *)0x0; + local_38 = (BSTR)0x0; + local_8 = CONCAT31((int3)((uint)local_8 >> 8),4); + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (param_5 == (long *)0x0) { + if (bVar2 != (basic_ostream_>)0x0) { + pwVar7 = L" UserID ptr NULL - returning E_POINTER HRESULT"; + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AuthenticateUser - Server Handle: "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,param_2); + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar7); + std::basic_ostream_>::operator<<(pbVar3,p_Var10); + } + local_8._0_1_ = 3; + SysFreeString(local_38); + local_8._0_1_ = 1; + if (local_34 != (int *)0x0) { + (**(code **)(*local_34 + 8))(local_34); + } + local_8 = (uint)local_8._1_3_ << 8; + _set_se_translator(local_2c); + FUN_10013cbd(); + return; + } + if (bVar2 != (basic_ostream_>)0x0) { + pwVar6 = L" User name "; + pwVar7 = param_3; + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AuthenticateUser - Server Handle: "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,param_2); + piVar4 = (int *)FUN_10002dbf((int *)pbVar3,pwVar6); + pbVar3 = (basic_ostream_> *)FUN_10002dbf(piVar4,pwVar7) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var10); + } + FUN_1000f663((void *)(param_1 + 0x24),&local_44,local_40); + if (local_44 != *(int *)(param_1 + 0x28)) { + (**(code **)(**(int **)(local_44 + 0x2c) + 0x20)) + (*(int **)(local_44 + 0x2c),&DAT_1001b5c0,local_40); + iVar5 = (**(code **)(**(int **)(local_44 + 0x2c) + 0xc)) + (*(int **)(local_44 + 0x2c),&DAT_1001b5c0,&DAT_1001b5c0,param_3,local_48,0,0, + local_54,&local_38,&local_34); + if ((-1 < iVar5) && (local_34 != (int *)0x0)) { + iVar5 = (**(code **)(*local_34 + 0xc))(local_34,&local_28); + iVar5 = FUN_1000f8d9((undefined4 *)(uint)(iVar5 == 0),iVar5,0x390,"LMXProxyServer.cpp"); + if (iVar5 != 0) { + *(int *)(local_44 + 0x18) = *(int *)(local_44 + 0x18) + 1; + local_6c = *(undefined4 *)(local_44 + 0x18); + local_68 = local_28; + uStack_64 = uStack_24; + uStack_60 = uStack_20; + uStack_5c = uStack_1c; + cVar9 = '\0'; + piVar4 = (int *)FUN_1000f475((void *)(local_44 + 0x4c),&local_6c); + FUN_1000f3c6((void *)(local_44 + 0x4c),&local_4c,piVar4,cVar9); + plVar1 = local_30; + *local_30 = *(long *)(local_44 + 0x18); + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + lVar8 = *plVar1; + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AuthenticateUser - returning HRESULT S_OK UserId " + ); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,lVar8); + std::basic_ostream_>::operator<<(pbVar3,p_Var10); + } + local_8._0_1_ = 3; + SysFreeString(local_38); + local_8._0_1_ = 1; + if (local_34 != (int *)0x0) { + (**(code **)(*local_34 + 8))(local_34); + } + local_8 = (uint)local_8._1_3_ << 8; + _set_se_translator(local_2c); + FUN_10013cbd(); + return; + } + } + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AuthenticateUser - returning HRESULT E_INVALIDARG"); + std::basic_ostream_>::operator<<(pbVar3,p_Var10); + } + local_8._0_1_ = 3; + SysFreeString(local_38); + local_8._0_1_ = 1; + if (local_34 != (int *)0x0) { + (**(code **)(*local_34 + 8))(local_34); + } + local_8 = (uint)local_8._1_3_ << 8; + _set_se_translator(local_2c); + FUN_10013cbd(); + return; +} + + +``` + +## FUN_10014572 at 10014572 + +Signature: `undefined __stdcall FUN_10014572(int param_1, long param_2, OLECHAR * param_3, long * param_4)` + +```c + +/* WARNING: Function: __EH_prolog3_catch_GS replaced with injection: EH_prolog3 */ + +void FUN_10014572(int param_1,long param_2,OLECHAR *param_3,long *param_4) + +{ + long *plVar1; + basic_ostream_> bVar2; + basic_ostream_> *pbVar3; + BSTR lpsz; + int *piVar4; + wchar_t *pwVar5; + long lVar6; + char cVar7; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var8; + undefined4 local_60; + ulong local_5c; + ushort uStack_58; + ushort uStack_56; + uchar auStack_54 [4]; + uchar auStack_50 [12]; + undefined4 local_44; + int local_40; + long local_3c; + long *local_38; + BSTR local_30; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_2c; + CLSID local_28 [2]; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x58; + local_3c = param_2; + local_38 = param_4; + local_8 = 0; + FUN_10011b07(&local_2c); + local_8 = CONCAT31(local_8._1_3_,1); + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (param_4 == (long *)0x0) { + if (bVar2 == (basic_ostream_>)0x0) goto LAB_100145ea; + pwVar5 = L" UserID ptr NULL - returning E_POINTER HRESULT"; + } + else { + if (param_3 != (OLECHAR *)0x0) { + if (bVar2 != (basic_ostream_>)0x0) { + p_Var8 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::ArchestrAUserToId - Server Handle: "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,param_2); + std::basic_ostream_>::operator<<(pbVar3,p_Var8); + } + local_28[0].Data1 = DAT_100201f8; + local_28[0].Data2 = (ushort)DAT_100201fc; + local_28[0].Data3 = DAT_100201fc._2_2_; + local_28[0].Data4[0] = (uchar)DAT_10020200; + local_28[0].Data4[1] = DAT_10020200._1_1_; + local_28[0].Data4[2] = DAT_10020200._2_1_; + local_28[0].Data4[3] = DAT_10020200._3_1_; + local_28[0].Data4[4] = (uchar)DAT_10020204; + local_28[0].Data4[5] = DAT_10020204._1_1_; + local_28[0].Data4[6] = DAT_10020204._2_1_; + local_28[0].Data4[7] = DAT_10020204._3_1_; + lpsz = SysAllocString(param_3); + local_30 = lpsz; + if (lpsz == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_1000134e(0x8007000e); + } + local_8 = CONCAT31(local_8._1_3_,2); + CLSIDFromString(lpsz,local_28); + FUN_1000f663((void *)(param_1 + 0x24),&local_40,&local_3c); + if (local_40 != *(int *)(param_1 + 0x28)) { + *(int *)(local_40 + 0x18) = *(int *)(local_40 + 0x18) + 1; + local_60 = *(undefined4 *)(local_40 + 0x18); + local_5c = local_28[0].Data1; + uStack_58 = local_28[0].Data2; + uStack_56 = local_28[0].Data3; + auStack_54[0] = local_28[0].Data4[0]; + auStack_54[1] = local_28[0].Data4[1]; + auStack_54[2] = local_28[0].Data4[2]; + auStack_54[3] = local_28[0].Data4[3]; + auStack_50[0] = local_28[0].Data4[4]; + auStack_50[1] = local_28[0].Data4[5]; + auStack_50[2] = local_28[0].Data4[6]; + auStack_50[3] = local_28[0].Data4[7]; + cVar7 = '\0'; + piVar4 = (int *)FUN_1000f475((void *)(local_40 + 0x4c),&local_60); + FUN_1000f3c6((void *)(local_40 + 0x4c),&local_44,piVar4,cVar7); + plVar1 = local_38; + *local_38 = *(long *)(local_40 + 0x18); + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + lVar6 = *plVar1; + p_Var8 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::ArchestrAUserToId - returning HRESULT S_OK, UserId " + ); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,lVar6); + std::basic_ostream_>::operator<<(pbVar3,p_Var8); + } + local_8._0_1_ = 1; + SysFreeString(local_30); + local_8 = (uint)local_8._1_3_ << 8; + _set_se_translator(local_2c); + FUN_100147ea(); + return; + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var8 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::ArchestrAUserToId - returning HRESULT E_INVALIDARG for invalid Server Handle" + ); + std::basic_ostream_>::operator<<(pbVar3,p_Var8); + } + local_8._0_1_ = 1; + SysFreeString(lpsz); + local_8 = (uint)local_8._1_3_ << 8; + _set_se_translator(local_2c); + FUN_100147ea(); + return; + } + if (bVar2 == (basic_ostream_>)0x0) goto LAB_100145ea; + pwVar5 = L" UserGuidAsString ptr NULL - returning E_POINTER HRESULT"; + } + p_Var8 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::ArchestrAUserToId - Server Handle: "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,param_2) + ; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar5); + std::basic_ostream_>::operator<<(pbVar3,p_Var8); +LAB_100145ea: + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_2c); + FUN_100147ea(); + return; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.buffered-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.buffered-decompile.md new file mode 100644 index 0000000..ee6cfc6 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.buffered-decompile.md @@ -0,0 +1,366 @@ +# LmxProxy.dll selected decompile + +## FUN_1001121d at 1001121d + +Signature: `int __stdcall FUN_1001121d(int * param_1, int param_2, BSTR param_3, undefined4 param_4, int * param_5)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +int FUN_1001121d(int *param_1,int param_2,BSTR param_3,undefined4 param_4,int *param_5) + +{ + int *this; + int *piVar1; + char cVar2; + basic_ostream_> bVar3; + undefined1 uVar4; + undefined *puVar5; + int iVar6; + int *piVar7; + basic_ostream_> *pbVar8; + int *piVar9; + rsize_t rVar10; + int iVar11; + uint uVar12; + BSTR pOVar13; + undefined4 uVar14; + wchar_t *pwVar15; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var16; + + piVar7 = param_1; + this = param_1 + -2; + cVar2 = FUN_1000d2d6((int)this); + piVar1 = param_5; + if (cVar2 == '\0') { + uVar14 = 0; + uVar12 = 1; + puVar5 = FUN_10003248(); + iVar6 = FUN_10003897(puVar5,uVar12); + puVar5 = FUN_10003248(); + uVar12 = FUN_1000305b(puVar5,iVar6,uVar14); + if ((char)uVar12 != '\0') { + pwVar15 = + L"Failed to retrieve information from the MXAccess_Runtime license. Either MXAccess_Runtime license is not available or expired." + ; + piVar7 = (int *)FUN_10003248(); + FUN_100030ef(piVar7,pwVar15); + } + bVar3 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar3 != (basic_ostream_>)0x0) { + pwVar15 = L" No Valid License found - returning E_ACCESSDENIED HRESULT"; + p_Var16 = endl_exref; + uVar4 = FUN_1000d2d6((int)this); + pbVar8 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddBufferedItem - Valid License: "); + pbVar8 = std::basic_ostream_>::operator<< + (pbVar8,(bool)uVar4); + pbVar8 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar8,pwVar15); + std::basic_ostream_>::operator<<(pbVar8,p_Var16); + } + iVar6 = -0x7ff8fffb; + } + else if (param_3 == (BSTR)0x0) { + bVar3 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar3 != (basic_ostream_>)0x0) { + pwVar15 = L" Item name NULL - returning E_INVALIDARG HRESULT"; + iVar6 = param_2; + p_Var16 = endl_exref; + pbVar8 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddBufferedItem - Server Handle: "); + pbVar8 = std::basic_ostream_>::operator<< + (pbVar8,iVar6); + pbVar8 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar8,pwVar15); + std::basic_ostream_>::operator<<(pbVar8,p_Var16); + } + iVar6 = -0x7ff8ffa9; + } + else { + bVar3 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (piVar1 == (int *)0x0) { + if (bVar3 != (basic_ostream_>)0x0) { + pwVar15 = L" Item handle is NULL - returning E_POINTER HRESULT"; + iVar6 = param_2; + p_Var16 = endl_exref; + pbVar8 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddBufferedItem - Server Handle: "); + pbVar8 = std::basic_ostream_>::operator<< + (pbVar8,iVar6); + pbVar8 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar8,pwVar15); + std::basic_ostream_>::operator<<(pbVar8,p_Var16); + } + iVar6 = -0x7fffbffd; + } + else { + if (bVar3 != (basic_ostream_>)0x0) { + pwVar15 = L" Item name: "; + iVar6 = param_2; + pOVar13 = param_3; + p_Var16 = endl_exref; + pbVar8 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddBufferedItem - Server Handle: "); + pbVar8 = std::basic_ostream_>::operator<< + (pbVar8,iVar6); + piVar9 = (int *)FUN_10002dbf((int *)pbVar8,pwVar15); + pbVar8 = (basic_ostream_> *) + FUN_10002dbf(piVar9,pOVar13); + std::basic_ostream_>::operator<<(pbVar8,p_Var16); + } + param_3 = SysAllocString(param_3); + if (param_3 == (BSTR)0x0) { + FUN_10005da7(0x8007000e,(OLECHAR *)0x0, + "D:\\BldSrc\\6\\s\\SharedComponents\\Internal\\MagellanPublic\\Includes\\ClassUtilities\\AAComBSTR.h" + ,0xc5); + } + rVar10 = lstrlenW(L".property(buffer)"); + FUN_10010a84(¶m_3,L".property(buffer)",rVar10); + iVar6 = (**(code **)(*piVar7 + 0x44))(piVar7,param_2,param_3,param_4,piVar1); + if (-1 < iVar6) { + param_1 = (int *)0x0; + bVar3 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar3 != (basic_ostream_>)0x0) { + iVar6 = *piVar1; + pwVar15 = L" Item Handle "; + iVar11 = param_2; + p_Var16 = endl_exref; + pbVar8 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddBufferedItem - Server Handle "); + pbVar8 = std::basic_ostream_>::operator<< + (pbVar8,iVar11); + pbVar8 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar8,pwVar15); + pbVar8 = std::basic_ostream_>::operator<< + (pbVar8,iVar6); + std::basic_ostream_>::operator<<(pbVar8,p_Var16); + } + iVar6 = FUN_1000fa3b(this,param_2,*piVar1,¶m_2,(int *)¶m_1); + if (-1 < iVar6) { + *(undefined1 *)(param_1 + 10) = 1; + } + } + SysFreeString(param_3); + } + } + return iVar6; +} + + +``` + +## FUN_100163c0 at 100163c0 + +Signature: `undefined __thiscall FUN_100163c0(void * this, long param_1, long param_2, undefined4 param_3)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +void __thiscall FUN_100163c0(void *this,long param_1,long param_2,undefined4 param_3) + +{ + basic_ostream_> bVar1; + undefined4 *puVar2; + int *piVar3; + basic_ostream_> *pbVar4; + undefined4 *this_00; + undefined4 in_stack_00000040; + long lVar5; + wchar_t *pwVar6; + long lVar7; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var8; + undefined4 *local_30; + undefined4 local_2c; + undefined4 local_28; + undefined4 local_24; + int *local_20; + int local_1c; + void *local_18; + int local_14; + undefined4 local_8; + undefined4 uStack_4; + + uStack_4 = 0x20; + local_8 = 0x100163cc; + puVar2 = (undefined4 *)FUN_100170a4(0x74); + if (puVar2 == (undefined4 *)0x0) { + this_00 = (undefined4 *)0x0; + } + else { + this_00 = puVar2 + 1; + *puVar2 = 7; + _eh_vector_constructor_iterator_(this_00,0x10,7,FUN_10001517,FUN_10001f45); + } + local_1c = *(int *)((int)this + 8); + local_14 = 0; + if (0 < local_1c) { + local_18 = (void *)((int)this + 4); + do { + piVar3 = (int *)FUN_10007d02(local_18,local_14); + local_20 = piVar3; + if (piVar3 != (int *)0x0) { + (**(code **)(*piVar3 + 4))(piVar3); + } + local_8 = 1; + if (piVar3 != (int *)0x0) { + FUN_10015d08(this_00 + 0x18,param_1); + FUN_10015d08(this_00 + 0x14,param_2); + FUN_10015d08(this_00 + 0x10,param_3); + if ((CComVariant *)(this_00 + 0xc) != (CComVariant *)&stack0x00000010) { + ATL::CComVariant::InternalCopy + ((CComVariant *)(this_00 + 0xc),(tagVARIANT *)&stack0x00000010); + } + if ((CComVariant *)(this_00 + 8) != (CComVariant *)&stack0x00000020) { + ATL::CComVariant::InternalCopy + ((CComVariant *)(this_00 + 8),(tagVARIANT *)&stack0x00000020); + } + if ((CComVariant *)(this_00 + 4) != (CComVariant *)&stack0x00000030) { + ATL::CComVariant::InternalCopy + ((CComVariant *)(this_00 + 4),(tagVARIANT *)&stack0x00000030); + } + *(undefined2 *)this_00 = 0x6024; + this_00[2] = in_stack_00000040; + local_2c = 0; + local_28 = 7; + local_24 = 0; + local_30 = this_00; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0x10)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar6 = L" Item Handle "; + lVar5 = param_1; + lVar7 = param_2; + p_Var8 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0x10), + L"CProxy_ILMXProxyServerEvents2::Fire_OnBufferedDataChange firing event - Server Handle " + ); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar5); + pbVar4 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar4,pwVar6); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar7); + std::basic_ostream_>::operator<<(pbVar4,p_Var8); + } + (**(code **)(*piVar3 + 0x18))(piVar3,1,&DAT_100201f8,0x400,1,&local_30,0,0,0); + } + local_8 = 0xffffffff; + if (piVar3 != (int *)0x0) { + (**(code **)(*piVar3 + 8))(piVar3); + } + local_14 = local_14 + 1; + } while (local_14 < local_1c); + } + if (this_00 != (undefined4 *)0x0) { + FUN_10015d66(this_00,3); + } + return; +} + + +``` + +## FUN_1000fc80 at 1000fc80 + +Signature: `undefined4 __stdcall FUN_1000fc80(int param_1, long param_2, int param_3)` + +```c + +undefined4 FUN_1000fc80(int param_1,long param_2,int param_3) + +{ + int iVar1; + basic_ostream_> bVar2; + basic_ostream_> *pbVar3; + undefined4 uVar4; + int *piVar5; + int iVar6; + long lVar7; + wchar_t *pwVar8; + wchar_t *pwVar9; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var10; + + iVar6 = param_3; + if (param_3 < 1) { + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::SetBufferedUpdateInterval - returning E_INVALIDARG"); + std::basic_ostream_>::operator<<(pbVar3,p_Var10); + } + uVar4 = 0x80070057; + } + else { + piVar5 = (int *)FUN_1000f663((void *)(param_1 + 0x24),¶m_3,¶m_2); + iVar1 = *piVar5; + if (iVar1 == *(int *)(param_1 + 0x28)) { + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + pwVar8 = L" not found."; + lVar7 = param_2; + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::SetBufferedUpdateInterval - hLMXServer "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,lVar7); + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar8); + std::basic_ostream_>::operator<<(pbVar3,p_Var10); + } + uVar4 = 0x80070057; + } + else { + *(int *)(iVar1 + 0x5c) = (iVar6 + 99) / 100; + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + iVar6 = *(int *)(iVar1 + 0x5c) * 100; + pwVar9 = L" msec."; + pwVar8 = L" setting buffered update interval to "; + lVar7 = param_2; + p_Var10 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::SetBufferedUpdateInterval - hLMXServer "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,lVar7); + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar8); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,iVar6); + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar9); + std::basic_ostream_>::operator<<(pbVar3,p_Var10); + } + uVar4 = 0; + } + } + return uVar4; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.buffered-event-caller-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.buffered-event-caller-decompile.md new file mode 100644 index 0000000..ed59c54 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.buffered-event-caller-decompile.md @@ -0,0 +1,273 @@ +# LmxProxy.dll selected decompile + +## FUN_1001657f at 1001657f + +Signature: `undefined __stdcall FUN_1001657f(uint param_1, undefined4 param_2)` + +```c + +/* WARNING: Function: __EH_prolog3_catch_GS replaced with injection: EH_prolog3 */ + +void FUN_1001657f(uint param_1,undefined4 param_2) + +{ + DWORD DVar1; + basic_ostream_> bVar2; + undefined *puVar3; + int iVar4; + int *piVar5; + DWORD DVar6; + undefined4 *puVar7; + HRESULT HVar8; + basic_ostream_> *pbVar9; + uint uVar10; + undefined4 uVar11; + wchar_t *pwVar12; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var13; + void **in_stack_ffffff1c; + undefined1 local_d4 [36]; + VARIANTARG local_b0; + _union_2683 local_a0; + VARIANTARG local_90; + VARIANTARG local_80; + int *local_70 [2]; + DWORD local_68; + undefined *local_64; + IUnknown *local_60 [2]; + BSTR local_58; + uint local_54; + int *local_50 [2]; + SAFEARRAY *local_48; + undefined1 local_44 [4]; + FILETIME local_40; + undefined2 local_38 [8]; + undefined1 local_28 [32]; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0xc4; + local_54 = param_1; + local_68 = 0; + local_64 = (undefined *)0x0; + local_58 = (BSTR)0x0; + local_8 = 0; + FUN_1000107a((int *)local_50); + local_8 = CONCAT31(local_8._1_3_,1); + uVar11 = 0; + uVar10 = 3; + puVar3 = FUN_10003248(); + iVar4 = FUN_10003897(puVar3,uVar10); + puVar3 = FUN_10003248(); + uVar10 = FUN_1000305b(puVar3,iVar4,uVar11); + if ((char)uVar10 != '\0') { + pwVar12 = L"OnDataChange callback received"; + piVar5 = (int *)FUN_10003248(); + FUN_100031b7(piVar5,pwVar12); + } + if (DAT_10029594 == 0) { + local_8 = local_8 & 0xffffff00; + FUN_1000111b((int *)local_50); + local_8 = 0xffffffff; + SysFreeString(local_58); + } + else { + DVar6 = GetCurrentThreadId(); + if (DVar6 == DAT_10029594) { + iVar4 = *(int *)(param_1 + 8); + FUN_1000f663((void *)(iVar4 + 0x2c),&local_40.dwHighDateTime,(int *)(param_1 + 0xc)); + DVar6 = local_40.dwHighDateTime; + if ((((undefined *)local_40.dwHighDateTime != *(undefined **)(iVar4 + 0x30)) && + (FUN_1000f5ef((undefined *)(local_40.dwHighDateTime + 0x3c),&local_40.dwHighDateTime, + (int *)(param_1 + 0x10)), DVar1 = local_40.dwHighDateTime, + (undefined *)local_40.dwHighDateTime != *(undefined **)(DVar6 + 0x40))) && + (*(char *)(local_40.dwHighDateTime + 0x1c) != '\0')) { + if (*(char *)(local_40.dwHighDateTime + 0x1f) == '\0') { + if (*(char *)(local_40.dwHighDateTime + 0x1e) == '\0') { + local_40.dwHighDateTime = 0; + local_28._0_4_ = (uint)(ushort)local_28._2_2_ << 0x10; + local_28._4_4_ = 0; + local_28._8_4_ = 0; + local_28._12_4_ = (undefined *)0x0; + (**(code **)(**(int **)(DVar6 + 0x24) + 0x60)) + (*(int **)(DVar6 + 0x24),*(undefined4 *)(DVar1 + 0x18), + &local_40.dwHighDateTime,local_28); + if ((local_28._0_2_ == 0xffff) && (local_28._4_4_ == 0)) { + *(undefined1 *)(DVar1 + 0x1e) = 1; + *(byte *)(DVar1 + 0x1d) = (byte)(local_40.dwHighDateTime >> 1) & 1; + } + } + piVar5 = *(int **)(DVar6 + 0x24); + if (local_50[0] != (int *)0x0) { + (**(code **)(*local_50[0] + 8))(local_50[0]); + local_50[0] = (int *)0x0; + } + iVar4 = (**(code **)(*piVar5 + 0x50)) + (piVar5,*(undefined4 *)(DVar1 + 0x18),local_44,&local_68,local_38, + &local_58,local_50); + } + else { + if (*(char *)(local_40.dwHighDateTime + 0x1e) == '\0') { + local_40.dwHighDateTime = 0; + local_28._0_4_ = (uint)(ushort)local_28._2_2_ << 0x10; + local_28._4_4_ = 0; + local_28._8_4_ = 0; + local_28._12_4_ = (undefined *)0x0; + (**(code **)(**(int **)(DVar6 + 0x30) + 0x28)) + (*(int **)(DVar6 + 0x30),*(undefined4 *)(DVar1 + 0x18), + &local_40.dwHighDateTime,local_28); + if ((local_28._0_2_ == 0xffff) && (local_28._4_4_ == 0)) { + *(undefined1 *)(DVar1 + 0x1e) = 1; + *(byte *)(DVar1 + 0x1d) = (byte)(local_40.dwHighDateTime >> 1) & 1; + } + } + piVar5 = *(int **)(DVar6 + 0x30); + if (local_50[0] != (int *)0x0) { + (**(code **)(*local_50[0] + 8))(local_50[0]); + local_50[0] = (int *)0x0; + } + iVar4 = (**(code **)(*piVar5 + 0x20)) + (piVar5,*(undefined4 *)(DVar1 + 0x18),local_44,&local_68,local_38, + local_50); + } + iVar4 = FUN_1000f8d9((undefined4 *)(uint)(iVar4 == 0),iVar4,0x6d,"MxCallback.cpp"); + if (iVar4 != 0) { + if (*(char *)(DVar1 + 0x28) == '\0') { + FUN_1000107a((int *)local_60); + local_8 = CONCAT31(local_8._1_3_,4); + if (*(char *)(DVar1 + 0x1d) == '\0') { + local_40.dwLowDateTime = 0; + local_40.dwHighDateTime = 0; + CoFileTimeNow(&local_40); + local_28._8_4_ = local_40.dwLowDateTime; + local_28._12_4_ = local_40.dwHighDateTime; + } + else { + local_28._8_4_ = local_68; + local_28._12_4_ = local_64; + } + HVar8 = (*local_60[0]->lpVtbl[5].QueryInterface) + (local_60[0],(IID *)(local_28 + 8),in_stack_ffffff1c); + if (HVar8 < 0) { + _com_issue_errorex(HVar8,local_60[0],(_GUID *)&DAT_1001b590); + } + puVar3 = FUN_100012e6(local_60); + FUN_10001269(local_70,puVar3); + local_8._0_1_ = 5; + FUN_100060a2((CComVariant *)&local_b0,local_70[0],0x40); + local_8._0_1_ = 6; + FUN_100060a2((CComVariant *)&local_a0.n2,local_50[0],0); + local_8._0_1_ = 7; + HVar8 = FUN_10003f60(&local_48,local_38,1); + if (HVar8 < 0) { + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 8)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var13 = endl_exref; + pbVar9 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 8), + L"CUserConnectionCallback::OnDataChange - Create MxStatus SafeArray failed. hr = " + ); + pbVar9 = std::basic_ostream_>::operator<< + (pbVar9,HVar8); + std::basic_ostream_>::operator<< + (pbVar9,p_Var13); + } + } + else { + local_8 = CONCAT31(local_8._1_3_,8); + FUN_10015f72((void *)(*(int *)(local_54 + 8) + 0xc),*(long *)(local_54 + 0xc), + *(long *)(local_54 + 0x10),local_a0._0_4_); + local_8._0_1_ = 7; + local_8._1_3_ = 0; + HVar8 = SafeArrayDestroy(local_48); + if (HVar8 != 0) { + pwVar12 = + L"CUserConnectionCallback::OnDataChange - SafeArrayDestroy failed - hr %08X"; + piVar5 = (int *)FUN_10003248(); + FUN_1000308b(piVar5,pwVar12); + } + } + local_8._0_1_ = 6; + VariantClear((VARIANTARG *)&local_a0.n2); + local_8._0_1_ = 5; + VariantClear(&local_b0); + local_8._0_1_ = 4; + FUN_1000111b((int *)local_70); + local_8 = CONCAT31(local_8._1_3_,1); + FUN_1000111b((int *)local_60); + } + else { + VariantInit(&local_80); + local_8._0_1_ = 10; + VariantInit(&local_90); + local_8._0_1_ = 0xb; + VariantInit((VARIANTARG *)local_28); + local_8._0_1_ = 0xc; + local_40.dwHighDateTime = 0; + FUN_100069ad(local_50[0],(ushort *)&local_80,(undefined2 *)&local_90, + (undefined2 *)local_28,(BSTR)&local_40.dwHighDateTime); + HVar8 = FUN_10003f60(&local_48,local_38,1); + if (HVar8 < 0) { + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 8)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var13 = endl_exref; + pbVar9 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 8), + L"CUserConnectionCallback::OnDataChange - Create MxStatus SafeArray failed on Buffered Data callback. hr = " + ); + pbVar9 = std::basic_ostream_>::operator<< + (pbVar9,HVar8); + std::basic_ostream_>::operator<< + (pbVar9,p_Var13); + } + } + else { + local_8 = CONCAT31(local_8._1_3_,0xd); + FUN_100163c0((void *)(*(int *)(local_54 + 8) + 0x18),*(long *)(local_54 + 0xc), + *(long *)(local_54 + 0x10),local_40.dwHighDateTime); + local_8._0_1_ = 0xc; + local_8._1_3_ = 0; + HVar8 = SafeArrayDestroy(local_48); + if (HVar8 != 0) { + pwVar12 = + L"CUserConnectionCallback::OnDataChange - SafeArrayDestroy failed - hr %08X"; + piVar5 = (int *)FUN_10003248(); + FUN_1000308b(piVar5,pwVar12); + } + } + local_8._0_1_ = 0xb; + VariantClear((VARIANTARG *)local_28); + local_8._0_1_ = 10; + VariantClear(&local_90); + local_8 = CONCAT31(local_8._1_3_,1); + VariantClear(&local_80); + } + } + } + } + else { + local_40.dwHighDateTime = (DWORD)&DAT_100295bc; + EnterCriticalSection((LPCRITICAL_SECTION)&DAT_100295bc); + local_8._0_1_ = 2; + puVar7 = FUN_10015e06(local_d4,(int *)(-(uint)(param_1 != 4) & param_1),param_2); + local_8._0_1_ = 3; + FUN_1001654d(&DAT_100295b0,DAT_100295b0,puVar7); + local_8._0_1_ = 2; + FUN_1000d639((int)local_d4); + local_8 = CONCAT31(local_8._1_3_,1); + LeaveCriticalSection((LPCRITICAL_SECTION)&DAT_100295bc); + } + local_8 = local_8 & 0xffffff00; + FUN_1000111b((int *)local_50); + local_8 = 0xffffffff; + SysFreeString(local_58); + } + FUN_10017482(); + return; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.buffered-event-xrefs.md b/analysis/ghidra/exports/LmxProxy.dll.buffered-event-xrefs.md new file mode 100644 index 0000000..ed03b67 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.buffered-event-xrefs.md @@ -0,0 +1,10 @@ +# LmxProxy.dll xrefs + +## 0x100163c0 at 100163c0 + +Target function: `FUN_100163c0` + +| From | Ref type | Caller function | +| --- | --- | --- | +| `10016ad8` | `UNCONDITIONAL_CALL` | `FUN_1001657f` | + diff --git a/analysis/ghidra/exports/LmxProxy.dll.buffered-value-conversion-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.buffered-value-conversion-decompile.md new file mode 100644 index 0000000..2e87a5d --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.buffered-value-conversion-decompile.md @@ -0,0 +1,311 @@ +# LmxProxy.dll selected decompile + +## FUN_100069ad at 100069ad + +Signature: `undefined __cdecl FUN_100069ad(int * param_1, ushort * param_2, undefined2 * param_3, undefined2 * param_4, BSTR param_5)` + +```c + +/* WARNING: Function: __EH_prolog3_GS replaced with injection: EH_prolog3 */ + +void __cdecl +FUN_100069ad(int *param_1,ushort *param_2,undefined2 *param_3,undefined2 *param_4,BSTR param_5) + +{ + ULONG UVar1; + uint uVar2; + int *piVar3; + undefined1 *pv; + wchar_t *pwVar4; + undefined1 local_bc [8]; + undefined1 local_b4 [8]; + undefined1 local_ac [8]; + SAFEARRAYBOUND local_a4; + SAFEARRAYBOUND local_9c; + SAFEARRAYBOUND local_94; + undefined1 local_8c [4]; + undefined1 local_88 [4]; + uint local_84; + ushort *local_80; + undefined2 *local_7c; + undefined2 *local_78; + uint local_74; + int local_70; + uint local_6c; + int local_68; + int local_64; + BSTR local_60; + undefined4 local_5c; + undefined4 local_58; + char local_51; + SAFEARRAY *local_50; + SAFEARRAY *local_4c; + SAFEARRAY *local_48; + uint local_44; + undefined4 local_40; + LONG local_3c; + LPVOID local_38 [12]; + int local_8; + undefined4 uStack_4; + + uStack_4 = 0xac; + local_8 = 0x100069bc; + local_80 = param_2; + local_7c = param_3; + local_78 = param_4; + local_60 = param_5; + local_68 = 0; + local_64 = 0; + local_6c = 0; + local_70 = 0; + uVar2 = (**(code **)(*param_1 + 0x60))(param_1,&local_68); + if ((int)uVar2 < 0) { + FUN_10005da7(uVar2,(OLECHAR *)0x0,"Conversions.cpp",0x4ae); + } + if (((local_68 != 0xe) || + ((**(code **)(*param_1 + 0x94))(param_1,&local_64,&local_6c,&local_70), local_64 != 0x1a93996) + ) || (UVar1 = *(ULONG *)(local_70 + 4), UVar1 == 0)) goto LAB_10006eb3; + uVar2 = (uint)*(byte *)(local_70 + 1); + *(uint *)local_60 = uVar2; + local_84 = uVar2; + FUN_100068e0(local_38,0x1a93996,local_6c,local_70); + local_8 = 0; + local_94.lLbound = 0; + local_9c.lLbound = 0; + local_a4.lLbound = 0; + local_a4.cElements = UVar1; + local_9c.cElements = UVar1; + local_94.cElements = UVar1; + if (uVar2 == 1) { + local_44 = 0xb; +LAB_10006b07: + local_48 = SafeArrayCreate((VARTYPE)local_44,1,&local_94); + if (local_48 == (SAFEARRAY *)0x0) { + pwVar4 = L"Unable to create Value SafeArray of type %d - numVtqs %d!"; + piVar3 = (int *)FUN_10003248(); + FUN_1000308b(piVar3,pwVar4); + } + else { + local_4c = SafeArrayCreate(2,1,&local_9c); + if (local_4c == (SAFEARRAY *)0x0) { + pwVar4 = L"Unable to create Quality SafeArray - numVtqs %d!"; + piVar3 = (int *)FUN_10003248(); + FUN_1000308b(piVar3,pwVar4); + } + else { + local_50 = SafeArrayCreate(0x15,1,&local_a4); + if (local_50 != (SAFEARRAY *)0x0) { + if ((short)local_44 == 8) { + local_48->fFeatures = local_48->fFeatures | 0x100; + } + else { + local_48->fFeatures = 0; + } + uVar2 = local_44 & 0xffff; + local_5c = 0; + local_58 = 0; + local_40 = 0; + local_3c = 0; + if (uVar2 == 3) { + local_3c = 0; + if (0 < (int)UVar1) { + do { + FUN_10006801(local_38,local_8c,&local_5c,&local_40,2); + SafeArrayPutElement(local_48,&local_3c,local_8c); + SafeArrayPutElement(local_50,&local_3c,&local_5c); + SafeArrayPutElement(local_4c,&local_3c,&local_40); + local_3c = local_3c + 1; + } while (local_3c < (int)UVar1); + } + } + else if (uVar2 == 4) { + local_3c = 0; + if (0 < (int)UVar1) { + do { + FUN_10006801(local_38,local_88,&local_5c,&local_40,3); + SafeArrayPutElement(local_48,&local_3c,local_88); + SafeArrayPutElement(local_50,&local_3c,&local_5c); + SafeArrayPutElement(local_4c,&local_3c,&local_40); + local_3c = local_3c + 1; + } while (local_3c < (int)UVar1); + } + } + else if (uVar2 == 5) { + local_3c = 0; + if (0 < (int)UVar1) { + do { + FUN_1000684f(local_38,local_b4,&local_5c,&local_40,4); + SafeArrayPutElement(local_48,&local_3c,local_b4); + SafeArrayPutElement(local_50,&local_3c,&local_5c); + SafeArrayPutElement(local_4c,&local_3c,&local_40); + local_3c = local_3c + 1; + } while (local_3c < (int)UVar1); + } + } + else if (uVar2 == 8) { + local_3c = 0; + if (0 < (int)UVar1) { + do { + local_60 = (BSTR)0x0; + local_8._0_1_ = 9; + FUN_10006962(local_38,&local_60,&local_5c,&local_40); + SafeArrayPutElement(local_48,&local_3c,local_60); + SafeArrayPutElement(local_50,&local_3c,&local_5c); + SafeArrayPutElement(local_4c,&local_3c,&local_40); + local_8 = (uint)local_8._1_3_ << 8; + SysFreeString(local_60); + local_3c = local_3c + 1; + } while (local_3c < (int)UVar1); + } + } + else if (uVar2 == 0xb) { + local_3c = 0; + if (0 < (int)UVar1) { + do { + FUN_100067b3(local_38,&local_51,&local_5c,&local_40,1); + local_74 = (local_51 == '\0') - 1 & 0xffff; + SafeArrayPutElement(local_48,&local_3c,&local_74); + SafeArrayPutElement(local_50,&local_3c,&local_5c); + SafeArrayPutElement(local_4c,&local_3c,&local_40); + local_3c = local_3c + 1; + } while (local_3c < (int)UVar1); + } + } + else if ((uVar2 == 0x15) && (local_3c = 0, 0 < (int)UVar1)) { + do { + if (local_84 == 7) { + FUN_1000684f(local_38,local_bc,&local_5c,&local_40,7); + pv = local_bc; + } + else { + FUN_1000684f(local_38,local_ac,&local_5c,&local_40,6); + pv = local_ac; + } + SafeArrayPutElement(local_48,&local_3c,pv); + SafeArrayPutElement(local_50,&local_3c,&local_5c); + SafeArrayPutElement(local_4c,&local_3c,&local_40); + local_3c = local_3c + 1; + } while (local_3c < (int)UVar1); + } + *local_80 = (ushort)local_44 | 0x2000; + *(SAFEARRAY **)(local_80 + 4) = local_48; + *local_78 = 0x2015; + *(SAFEARRAY **)(local_78 + 4) = local_50; + *local_7c = 0x2002; + *(SAFEARRAY **)(local_7c + 4) = local_4c; + local_8 = 0xffffffff; + if (local_38[0] != (LPVOID)0x0) { + CoTaskMemFree(local_38[0]); + local_38[0] = (LPVOID)0x0; + } + goto LAB_10006eb3; + } + pwVar4 = L"Unable to create Time SafeArray - numVtqs %d!"; + piVar3 = (int *)FUN_10003248(); + FUN_1000308b(piVar3,pwVar4); + } + } + } + else { + if (uVar2 == 2) { + local_44 = 3; + goto LAB_10006b07; + } + if (uVar2 == 3) { + local_44 = 4; + goto LAB_10006b07; + } + if (uVar2 == 4) { + local_44 = 5; + goto LAB_10006b07; + } + if (uVar2 == 5) { + local_44 = 8; + goto LAB_10006b07; + } + if ((5 < uVar2) && (uVar2 < 8)) { + local_44 = 0x15; + goto LAB_10006b07; + } + pwVar4 = L"BufferedMxVal2VarArray invalid data type %d"; + piVar3 = (int *)FUN_10003248(); + FUN_1000308b(piVar3,pwVar4); + } + local_8 = 0xffffffff; + if (local_38[0] != (LPVOID)0x0) { + CoTaskMemFree(local_38[0]); + local_38[0] = (LPVOID)0x0; + } +LAB_10006eb3: + FUN_10017473(); + return; +} + + +``` + +## FUN_10003f60 at 10003f60 + +Signature: `HRESULT __cdecl FUN_10003f60(undefined4 * param_1, undefined2 * param_2, ULONG param_3)` + +```c + +HRESULT __cdecl FUN_10003f60(undefined4 *param_1,undefined2 *param_2,ULONG param_3) + +{ + basic_ostream_> bVar1; + HRESULT HVar2; + basic_ostream_> *pbVar3; + SAFEARRAY *pSVar4; + HRESULT HVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + SAFEARRAYBOUND local_18; + LONG local_10; + IRecordInfo *local_c; + undefined2 *local_8; + + local_c = (IRecordInfo *)0x0; + HVar2 = GetRecordInfoFromGuids((GUID *)&DAT_1001c2d0,1,0,0,(GUID *)&DAT_1001b530,&local_c); + if (HVar2 < 0) { + if ((HVar2 != -0x7ffd7fe3) && + (bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 4)), + bVar1 != (basic_ostream_>)0x0)) { + HVar5 = HVar2; + p_Var6 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 4),L"GetRecordInfoFromGuids failed - hr = "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,HVar5); + std::basic_ostream_>::operator<<(pbVar3,p_Var6); + } + } + else { + local_18.lLbound = 0; + local_18.cElements = param_3; + pSVar4 = SafeArrayCreateEx(0x24,1,&local_18,local_c); + *param_1 = pSVar4; + (*local_c->lpVtbl->Release)(local_c); + if ((SAFEARRAY *)*param_1 == (SAFEARRAY *)0x0) { + HVar2 = -0x7fffbffb; + } + else { + HVar2 = SafeArrayGetLBound((SAFEARRAY *)*param_1,1,&local_10); + if ((-1 < HVar2) && (HVar2 = SafeArrayAccessData((SAFEARRAY *)*param_1,&local_8), -1 < HVar2)) + { + *local_8 = *param_2; + *(undefined4 *)(local_8 + 2) = *(undefined4 *)(param_2 + 2); + *(undefined4 *)(local_8 + 4) = *(undefined4 *)(param_2 + 4); + local_8[6] = param_2[6]; + SafeArrayUnaccessData((SAFEARRAY *)*param_1); + HVar2 = 0; + } + } + } + return HVar2; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.call-refs.tsv b/analysis/ghidra/exports/LmxProxy.dll.call-refs.tsv new file mode 100644 index 0000000..4c02838 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.call-refs.tsv @@ -0,0 +1,227 @@ +caller_entry caller_name call_address target +1000103c FUN_1000103c 10001062 CoGetClassObject +100010bf FUN_100010bf 100010df SysFreeString +100010bf FUN_100010bf 1000110a SysAllocString +1000111b FUN_1000111b 1000112d SysFreeString +100012e6 FUN_100012e6 100012ef SysFreeString +100013b9 FUN_100013b9 100013c8 memcpy_s +1000150e FUN_1000150e 10001510 SysFreeString +10001517 FUN_10001517 1000151b VariantInit +10001525 InternalCopy 1000152f VariantCopy +100015aa FUN_100015aa 10001655 memset +1000174a FUN_1000174a 10001778 memset +10001885 FUN_10001885 10001899 SysAllocString +100018bb FUN_100018bb 100018e3 SysAllocStringByteLen +10001903 FUN_10001903 1000190d SysFreeString +10001923 FUN_10001923 1000192a VariantInit +10001923 FUN_10001923 10001934 VariantCopy +1000194b FUN_1000194b 10001968 VariantChangeType +10001d80 FUN_10001d80 10001dbe SysAllocStringLen +10001d80 FUN_10001d80 10001ddf SysFreeString +10001e0a Copy 10001e1f SysAllocStringByteLen +10001e27 FUN_10001e27 10001eb1 SysAllocStringLen +10001e27 FUN_10001e27 10001f02 SysFreeString +10001f45 FUN_10001f45 10001f46 VariantClear +10001f4d FUN_10001f4d 10001f55 VariantClear +10001fad FUN_10001fad 10001fed SysFreeString +100023f0 FUN_100023f0 10002416 VariantClear +10002439 FUN_10002439 1000244d VariantClear +10002470 FUN_10002470 1000247d VariantClear +100024a8 FUN_100024a8 100024af VariantClear +100024a8 FUN_100024a8 100024d9 SysAllocString +100024ed FUN_100024ed 100024fc VariantClear +10002b22 FID_conflict:_Tidy 10002b45 memcpy +10002d5c FUN_10002d5c 10002d77 memcpy +100032de FUN_100032de 10003333 memmove +1000339c FUN_1000339c 100034ad memcpy +100035e7 FID_conflict:_Chassign 1000361a _wmemset +10003cbd FUN_10003cbd 10003d33 memcpy +10003d59 FID_conflict:assign 10003db1 memcpy +10003e37 FUN_10003e37 10003e73 memcpy_s +10003f60 FUN_10003f60 10003feb SafeArrayCreateEx +10003f60 FUN_10003f60 10004013 SafeArrayGetLBound +10003f60 FUN_10003f60 10004023 SafeArrayAccessData +10003f60 FUN_10003f60 10004058 SafeArrayUnaccessData +1000411e FUN_1000411e 10004146 VariantInit +1000411e FUN_1000411e 1000416d VariantClear +100043c4 FUN_100043c4 100043eb memmove +10004419 FUN_10004419 10004485 SafeArrayGetDim +10004419 FUN_10004419 10004509 SafeArrayAccessData +10004419 FUN_10004419 10004571 SafeArrayUnaccessData +10004419 FUN_10004419 10004581 SafeArrayAccessData +10004419 FUN_10004419 100045f2 SafeArrayAccessData +10004419 FUN_10004419 10004660 SafeArrayAccessData +10004419 FUN_10004419 1000470c SafeArrayAccessData +10004419 FUN_10004419 1000472d VariantInit +10004419 FUN_10004419 10004756 VariantChangeType +10004794 FUN_10004794 1000480e VariantClear +10004794 FUN_10004794 10004823 SafeArrayUnaccessData +100048df FUN_100048df 10004878 VariantInit +100048df FUN_100048df 100048a1 VariantChangeType +100048df FUN_100048df 10004959 VariantClear +10004a70 FUN_10004a70 10004a0a VariantInit +10004a70 FUN_10004a70 10004a32 VariantChangeType +10004a70 FUN_10004a70 10004aea VariantClear +10004c31 FUN_10004c31 10004bbf VariantInit +10004c31 FUN_10004c31 10004bf3 VariantChangeType +10004c31 FUN_10004c31 10004cab VariantClear +100051dc FUN_100051dc 10005176 VariantInit +100051dc FUN_100051dc 1000519e VariantChangeType +100051dc FUN_100051dc 10005256 VariantClear +10005491 FUN_10005491 10005639 VariantClear +10005dd6 FUN_10005dd6 10005deb VariantInit +10005dd6 FUN_10005dd6 10005f0f SafeArrayCreate +10005dd6 FUN_10005dd6 10005fc4 SafeArrayPutElement +10005dd6 FUN_10005dd6 10005fce VariantClear +10005dd6 FUN_10005dd6 10006068 VariantClear +100060a2 FUN_100060a2 100060d3 VariantInit +100060a2 FUN_100060a2 1000613e VariantClear +100060a2 FUN_100060a2 100061ae VariantClear +100060a2 FUN_100060a2 100061bc VariantChangeType +100060a2 FUN_100060a2 10006216 VariantClear +100060a2 FUN_100060a2 100062bf VariantClear +100060a2 FUN_100060a2 10006379 VariantClear +100060a2 FUN_100060a2 10006386 SysFreeString +100060a2 FUN_100060a2 1000659c SafeArrayAccessData +100060a2 FUN_100060a2 100065fe SafeArrayUnaccessData +100060a2 FUN_100060a2 10006637 VariantInit +100060a2 FUN_100060a2 100066a2 VariantChangeType +100060a2 FUN_100060a2 100066ca VariantClear +1000689d FUN_1000689d 100068c8 SysAllocStringByteLen +100068e0 FUN_100068e0 10006909 memset +100069ad FUN_100069ad 10006b19 SafeArrayCreate +100069ad FUN_100069ad 10006b48 SafeArrayCreate +100069ad FUN_100069ad 10006b75 SafeArrayCreate +100069ad FUN_100069ad 10006c50 SafeArrayPutElement +100069ad FUN_100069ad 10006c5d SafeArrayPutElement +100069ad FUN_100069ad 10006c6a SafeArrayPutElement +100069ad FUN_100069ad 10006cba SafeArrayPutElement +100069ad FUN_100069ad 10006cc7 SafeArrayPutElement +100069ad FUN_100069ad 10006cd4 SafeArrayPutElement +100069ad FUN_100069ad 10006d19 SafeArrayPutElement +100069ad FUN_100069ad 10006d26 SafeArrayPutElement +100069ad FUN_100069ad 10006d33 SafeArrayPutElement +100069ad FUN_100069ad 10006d3b SysFreeString +100069ad FUN_100069ad 10006d86 SafeArrayPutElement +100069ad FUN_100069ad 10006d93 SafeArrayPutElement +100069ad FUN_100069ad 10006da0 SafeArrayPutElement +100069ad FUN_100069ad 10006de7 SafeArrayPutElement +100069ad FUN_100069ad 10006df4 SafeArrayPutElement +100069ad FUN_100069ad 10006e01 SafeArrayPutElement +100069ad FUN_100069ad 10006e41 SafeArrayPutElement +100069ad FUN_100069ad 10006e4e SafeArrayPutElement +100069ad FUN_100069ad 10006e5b SafeArrayPutElement +10006f68 FUN_10006f68 10006f85 memcpy_s +10007044 FUN_10007044 1000705a memset +1000728f Attach 100072a0 SysFreeString +10007481 FUN_10007481 1000748c memset +10007d60 FUN_10007d60 10007d6f memset +10007d60 FUN_10007d60 10007dc8 memset +100082c6 QueryInterface 100082d7 AtlInternalQueryInterface +10008354 FUN_10008354 10008391 AtlInternalQueryInterface +10008723 FUN_10008723 10008728 QueryInterface +1000874b FUN_1000874b 10008750 QueryInterface +100087d7 FUN_100087d7 10008988 SysAllocString +10008abb FUN_10008abb 10008b46 SysFreeString +10008fd9 FUN_10008fd9 10009004 CoCreateInstance +100095b6 FUN_100095b6 10009611 CoCreateInstance +100098d4 FUN_100098d4 10009994 SysFreeString +100099a4 FUN_100099a4 10009ace SysFreeString +100099a4 FUN_100099a4 10009aed SysFreeString +100099a4 FUN_100099a4 10009b3b SysFreeString +100099a4 FUN_100099a4 10009b5e SysFreeString +1000a081 QueryInterface 1000a092 AtlInternalQueryInterface +1000a642 FUN_1000a642 1000a671 memset +1000b3b3 QueryInterface 1000b3c4 AtlInternalQueryInterface +1000b57f QueryInterface 1000b590 AtlInternalQueryInterface +1000bc0c FUN_1000bc0c 1000bc68 FindResourceW +1000bf4f FUN_1000bf4f 1000bfbb AtlInternalQueryInterface +1000bfd9 FUN_1000bfd9 1000c0c9 AtlInternalQueryInterface +1000c0ec FUN_1000c0ec 1000c1dc AtlInternalQueryInterface +1000ca30 FUN_1000ca30 1000ca38 memset +1000ca95 FUN_1000ca95 1000cac4 SysFreeString +1000ce59 FUN_1000ce59 1000ce76 memset +1000ce59 FUN_1000ce59 1000cea5 memset +1000ced2 FUN_1000ced2 1000cef2 memset +1000ced2 FUN_1000ced2 1000cf21 memset +1000cf4e FUN_1000cf4e 1000cf6e memset +1000cf4e FUN_1000cf4e 1000cf9d memset +1000cfca FUN_1000cfca 1000cfee memset +1000d144 FUN_1000d144 1000d159 SysFreeString +1000d263 FUN_1000d263 1000d271 SysFreeString +1000d263 FUN_1000d263 1000d280 SysAllocString +1000d2ee FUN_1000d2ee 1000d33c SysFreeString +1000d36d FUN_1000d36d 1000d3f5 VariantChangeType +1000d36d FUN_1000d36d 1000d46e VariantChangeType +1000d36d FUN_1000d36d 1000d488 VariantClear +1000d4d1 FUN_1000d4d1 1000d528 VariantClear +1000d4d1 FUN_1000d4d1 1000d53e VariantChangeType +1000d4d1 FUN_1000d4d1 1000d596 VariantChangeType +1000dadd FUN_1000dadd 1000db3e memset +1000dadd FUN_1000dadd 1000db78 SysAllocString +1000dadd FUN_1000dadd 1000dba2 SysFreeString +1000dc80 FUN_1000dc80 1000dc91 SysFreeString +1000dcbb FUN_1000dcbb 1000dd10 SysAllocString +1000e281 FUN_1000e281 1000e2ec SysFreeString +1000e3b2 FUN_1000e3b2 1000e478 SysFreeString +1000e4bf FUN_1000e4bf 1000e554 memmove +1000e4bf FUN_1000e4bf 1000e591 memmove +1000e4bf FUN_1000e4bf 1000e5bf memcpy +1000e686 QueryInterface 1000e697 AtlInternalQueryInterface +1000e6bf FUN_1000e6bf 1000e6c4 QueryInterface +1000efbf FUN_1000efbf 1000f03e memcpy +1000f0af FUN_1000f0af 1000f0fc CreateClientConnection +1000f52e FUN_1000f52e 1000f5aa memcpy +1000fb71 FUN_1000fb71 1000fba4 CoCreateInstance +10010a84 FUN_10010a84 10010ab6 SysAllocStringLen +10010a84 FUN_10010a84 10010aea memcpy_s +10010a84 FUN_10010a84 10010b10 SysFreeString +10010b1f FUN_10010b1f 10010b3d memset +10010b1f FUN_10010b1f 10010be8 SysAllocString +10010b1f FUN_10010b1f 10010c01 SysAllocString +10010b1f FUN_10010b1f 10010c1a SysAllocString +10010b1f FUN_10010b1f 10010c33 SysAllocString +10010b1f FUN_10010b1f 10010cb2 SysFreeString +10010b1f FUN_10010b1f 10010cc1 SysAllocString +10010b1f FUN_10010b1f 10010d3f SysFreeString +1001121d FUN_1001121d 100113cd SysAllocString +1001121d FUN_1001121d 100114a0 SysFreeString +1001150e FUN_1001150e 100115a3 memset +1001150e FUN_1001150e 10011616 SysAllocString +1001150e FUN_1001150e 10011863 SysAllocString +1001150e FUN_1001150e 100118cf SysFreeString +1001150e FUN_1001150e 100118ee SysFreeString +1001150e FUN_1001150e 1001197c SysFreeString +1001150e FUN_1001150e 10011987 SysFreeString +1001150e FUN_1001150e 1001198e SysFreeString +10011f9e FUN_10011f9e 100121af CoCreateInstance +1001399f FUN_1001399f 10013a38 SysFreeString +1001399f FUN_1001399f 10013bbd SysFreeString +1001399f FUN_1001399f 10013c27 SysFreeString +10014572 FUN_10014572 10014653 SysAllocString +10014572 FUN_10014572 10014716 SysFreeString +10014572 FUN_10014572 10014769 SysFreeString +10014a4f FUN_10014a4f 10014b4e SysFreeString +1001556f FUN_1001556f 1001570f CoCreateInstance +1001556f FUN_1001556f 10015746 SysFreeString +1001556f FUN_1001556f 10015765 SysAllocString +1001556f FUN_1001556f 100157a5 CoCreateInstance +10015d08 FUN_10015d08 10015d15 VariantClear +10015d66 FUN_10015d66 10015d98 VariantClear +1001657f FUN_1001657f 100165fe SysFreeString +1001657f FUN_1001657f 10016689 SysFreeString +1001657f FUN_1001657f 100168f2 VariantClear +1001657f FUN_1001657f 100168ff VariantClear +1001657f FUN_1001657f 10016969 SafeArrayDestroy +1001657f FUN_1001657f 100169dc VariantInit +1001657f FUN_1001657f 100169e9 VariantInit +1001657f FUN_1001657f 100169f3 VariantInit +1001657f FUN_1001657f 10016a79 VariantClear +1001657f FUN_1001657f 10016a86 VariantClear +1001657f FUN_1001657f 10016a90 VariantClear +1001657f FUN_1001657f 10016ae7 SafeArrayDestroy +10016d1a FUN_10016d1a 10016d23 SafeArrayDestroy +10016f2e FUN_10016f2e 10016f3b memset +10016fef FUN_10016fef 10016ffc memset +10017150 ConvertStringToBSTR 10017281 SysAllocString +1001ab90 FUN_1001ab90 1001ab95 VariantClear diff --git a/analysis/ghidra/exports/LmxProxy.dll.event-callers-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.event-callers-decompile.md new file mode 100644 index 0000000..6e8714c --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.event-callers-decompile.md @@ -0,0 +1,204 @@ +# LmxProxy.dll selected decompile + +## FUN_10016b50 at 10016b50 + +Signature: `HRESULT __stdcall FUN_10016b50(uint param_1, undefined4 param_2, undefined4 * param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +HRESULT FUN_10016b50(uint param_1,undefined4 param_2,undefined4 *param_3) + +{ + uint uVar1; + basic_ostream_> bVar2; + undefined *puVar3; + int iVar4; + int *piVar5; + DWORD DVar6; + undefined4 *puVar7; + HRESULT HVar8; + basic_ostream_> *pbVar9; + uint uVar10; + HRESULT HVar11; + undefined4 uVar12; + wchar_t *pwVar13; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var14; + undefined1 local_40 [36]; + undefined *local_1c; + undefined4 local_18 [4]; + int local_8; + undefined4 uStack_4; + + uStack_4 = 0x30; + local_8 = 0x10016b5c; + local_18[0] = 0; + uVar12 = 0; + uVar10 = 3; + puVar3 = FUN_10003248(); + iVar4 = FUN_10003897(puVar3,uVar10); + puVar3 = FUN_10003248(); + uVar10 = FUN_1000305b(puVar3,iVar4,uVar12); + if ((char)uVar10 != '\0') { + pwVar13 = L"OnSetAttributeResult callback received"; + piVar5 = (int *)FUN_10003248(); + FUN_100031b7(piVar5,pwVar13); + } + if (DAT_10029594 != 0) { + DVar6 = GetCurrentThreadId(); + uVar10 = param_1; + if (DVar6 == DAT_10029594) { + piVar5 = (int *)(param_1 + 0xc); + iVar4 = *(int *)(param_1 + 8); + FUN_1000f663((void *)(iVar4 + 0x2c),¶m_1,piVar5); + uVar1 = param_1; + if ((param_1 == *(uint *)(iVar4 + 0x30)) || + (FUN_1000f5ef((void *)(param_1 + 0x3c),¶m_1,(int *)(uVar10 + 0x10)), + param_1 == *(uint *)(uVar1 + 0x40))) { + return -0x7fffbffb; + } + HVar8 = FUN_10003f60(local_18,(undefined2 *)param_3,1); + if (-1 < HVar8) { + local_8 = 2; + FUN_1001611f((void *)(*(int *)(uVar10 + 8) + 0xc),*piVar5,*(long *)(uVar10 + 0x10),local_18) + ; + local_8 = 0xffffffff; + HVar8 = FUN_10016d1a(); + return HVar8; + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 8)); + if (bVar2 == (basic_ostream_>)0x0) { + return HVar8; + } + HVar11 = HVar8; + p_Var14 = endl_exref; + pbVar9 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 8), + L"CUserConnectionCallback::OnSetAttributeResult - Create MxStatus SafeArray failed. hr = " + ); + pbVar9 = std::basic_ostream_>::operator<< + (pbVar9,HVar11); + std::basic_ostream_>::operator<<(pbVar9,p_Var14); + return HVar8; + } + local_1c = &DAT_100295bc; + EnterCriticalSection((LPCRITICAL_SECTION)&DAT_100295bc); + local_8 = 0; + puVar7 = FUN_10015db2(local_40,(int *)(-(uint)(param_1 != 4) & param_1),*param_3,param_3[1], + param_3[2],param_3[3],param_2); + local_8._0_1_ = 1; + FUN_1001654d(&DAT_100295b0,DAT_100295b0,puVar7); + local_8 = (uint)local_8._1_3_ << 8; + FUN_1000d639((int)local_40); + local_8 = 0xffffffff; + LeaveCriticalSection((LPCRITICAL_SECTION)&DAT_100295bc); + } + return 0; +} + + +``` + +## FUN_10016d4b at 10016d4b + +Signature: `HRESULT __stdcall FUN_10016d4b(int * param_1, undefined4 param_2, undefined4 * param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +HRESULT FUN_10016d4b(int *param_1,undefined4 param_2,undefined4 *param_3) + +{ + int *piVar1; + int *piVar2; + basic_ostream_> bVar3; + undefined *puVar4; + int iVar5; + int *piVar6; + DWORD DVar7; + undefined4 *puVar8; + HRESULT HVar9; + basic_ostream_> *pbVar10; + uint uVar11; + undefined4 uVar12; + wchar_t *pwVar13; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var14; + undefined1 local_40 [36]; + undefined *local_1c; + undefined4 local_18 [4]; + int local_8; + undefined4 uStack_4; + + uStack_4 = 0x30; + local_8 = 0x10016d57; + uVar12 = 0; + uVar11 = 3; + puVar4 = FUN_10003248(); + iVar5 = FUN_10003897(puVar4,uVar11); + puVar4 = FUN_10003248(); + uVar11 = FUN_1000305b(puVar4,iVar5,uVar12); + if ((char)uVar11 != '\0') { + pwVar13 = L"OperationComplete callback received"; + piVar6 = (int *)FUN_10003248(); + FUN_100031b7(piVar6,pwVar13); + } + if (DAT_10029594 != 0) { + DVar7 = GetCurrentThreadId(); + piVar6 = param_1; + if (DVar7 == DAT_10029594) { + piVar1 = param_1 + 4; + iVar5 = param_1[3]; + FUN_1000f663((void *)(iVar5 + 0x2c),¶m_1,piVar1); + piVar2 = param_1; + if ((param_1 == *(int **)(iVar5 + 0x30)) || + (FUN_1000f5ef(param_1 + 0xf,¶m_1,piVar6 + 5), param_1 == (int *)piVar2[0x10])) { + return -0x7fffbffb; + } + HVar9 = FUN_10003f60(local_18,(undefined2 *)param_3,1); + if (-1 < HVar9) { + local_8 = 2; + FUN_10016271((void *)(piVar6[3] + 0xc),*piVar1,piVar6[5],local_18); + local_8 = 0xffffffff; + HVar9 = FUN_10016f05(); + return HVar9; + } + bVar3 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 8)); + if (bVar3 == (basic_ostream_>)0x0) { + return HVar9; + } + p_Var14 = endl_exref; + pbVar10 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 8), + L"CUserConnectionCallback::CUserConnectionCallback::OperationComplete - Create MxStatus SafeArray failed. hr = " + ); + pbVar10 = std::basic_ostream_>::operator<< + (pbVar10,HVar9); + std::basic_ostream_>::operator<<(pbVar10,p_Var14); + HVar9 = FUN_10016f05(); + return HVar9; + } + local_1c = &DAT_100295bc; + EnterCriticalSection((LPCRITICAL_SECTION)&DAT_100295bc); + local_8 = 0; + puVar8 = FUN_10015e4e(local_40,param_1,*param_3,param_3[1],param_3[2],param_3[3],param_2); + local_8._0_1_ = 1; + FUN_1001654d(&DAT_100295b0,DAT_100295b0,puVar8); + local_8 = (uint)local_8._1_3_ << 8; + FUN_1000d639((int)local_40); + local_8 = 0xffffffff; + LeaveCriticalSection((LPCRITICAL_SECTION)&DAT_100295bc); + } + return 0; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.event-xrefs.md b/analysis/ghidra/exports/LmxProxy.dll.event-xrefs.md new file mode 100644 index 0000000..9a15a5e --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.event-xrefs.md @@ -0,0 +1,18 @@ +# LmxProxy.dll xrefs + +## 0x1001611f at 1001611f + +Target function: `FUN_1001611f` + +| From | Ref type | Caller function | +| --- | --- | --- | +| `10016cc8` | `UNCONDITIONAL_CALL` | `FUN_10016b50` | + +## 0x10016271 at 10016271 + +Target function: `FUN_10016271` + +| From | Ref type | Caller function | +| --- | --- | --- | +| `10016eb3` | `UNCONDITIONAL_CALL` | `FUN_10016d4b` | + diff --git a/analysis/ghidra/exports/LmxProxy.dll.events-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.events-decompile.md new file mode 100644 index 0000000..e98795b --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.events-decompile.md @@ -0,0 +1,236 @@ +# LmxProxy.dll selected decompile + +## FUN_1001611f at 1001611f + +Signature: `undefined __thiscall FUN_1001611f(void * this, long param_1, long param_2, undefined4 param_3)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +void __thiscall FUN_1001611f(void *this,long param_1,long param_2,undefined4 param_3) + +{ + basic_ostream_> bVar1; + undefined4 *puVar2; + int *piVar3; + basic_ostream_> *pbVar4; + undefined4 *this_00; + long lVar5; + wchar_t *pwVar6; + long lVar7; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var8; + undefined4 *local_30; + undefined4 local_2c; + undefined4 local_28; + undefined4 local_24; + int *local_20; + int local_1c; + void *local_18; + int local_14; + undefined4 local_8; + undefined4 uStack_4; + + uStack_4 = 0x20; + local_8 = 0x1001612b; + puVar2 = (undefined4 *)FUN_100170a4(0x34); + if (puVar2 == (undefined4 *)0x0) { + this_00 = (undefined4 *)0x0; + } + else { + this_00 = puVar2 + 1; + *puVar2 = 3; + _eh_vector_constructor_iterator_(this_00,0x10,3,FUN_10001517,FUN_10001f45); + } + local_1c = *(int *)((int)this + 8); + local_14 = 0; + if (0 < local_1c) { + local_18 = (void *)((int)this + 4); + do { + piVar3 = (int *)FUN_10007d02(local_18,local_14); + local_20 = piVar3; + if (piVar3 != (int *)0x0) { + (**(code **)(*piVar3 + 4))(piVar3); + } + local_8 = 1; + if (piVar3 != (int *)0x0) { + FUN_10015d08(this_00 + 8,param_1); + FUN_10015d08(this_00 + 4,param_2); + *(undefined2 *)this_00 = 0x6024; + this_00[2] = param_3; + local_2c = 0; + local_28 = 3; + local_24 = 0; + local_30 = this_00; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar6 = L" Item Handle "; + lVar5 = param_1; + lVar7 = param_2; + p_Var8 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CProxy_ILMXProxyServerEvents::Fire_OnWriteComplete firing event - Server Handle " + ); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar5); + pbVar4 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar4,pwVar6); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar7); + std::basic_ostream_>::operator<<(pbVar4,p_Var8); + } + (**(code **)(*piVar3 + 0x18))(piVar3,2,&DAT_100201f8,0x400,1,&local_30,0,0,0); + } + local_8 = 0xffffffff; + if (piVar3 != (int *)0x0) { + (**(code **)(*piVar3 + 8))(piVar3); + } + local_14 = local_14 + 1; + } while (local_14 < local_1c); + } + if (this_00 != (undefined4 *)0x0) { + FUN_10015d66(this_00,3); + } + return; +} + + +``` + +## FUN_10016271 at 10016271 + +Signature: `undefined __thiscall FUN_10016271(void * this, long param_1, long param_2, undefined4 param_3)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +void __thiscall FUN_10016271(void *this,long param_1,long param_2,undefined4 param_3) + +{ + basic_ostream_> bVar1; + undefined4 *puVar2; + int *piVar3; + basic_ostream_> *pbVar4; + undefined4 *this_00; + long lVar5; + wchar_t *pwVar6; + long lVar7; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var8; + undefined4 *local_30; + undefined4 local_2c; + undefined4 local_28; + undefined4 local_24; + int *local_20; + int local_1c; + void *local_18; + int local_14; + undefined4 local_8; + undefined4 uStack_4; + + uStack_4 = 0x20; + local_8 = 0x1001627d; + puVar2 = (undefined4 *)FUN_100170a4(0x34); + if (puVar2 == (undefined4 *)0x0) { + this_00 = (undefined4 *)0x0; + } + else { + this_00 = puVar2 + 1; + *puVar2 = 3; + _eh_vector_constructor_iterator_(this_00,0x10,3,FUN_10001517,FUN_10001f45); + } + local_1c = *(int *)((int)this + 8); + local_14 = 0; + if (0 < local_1c) { + local_18 = (void *)((int)this + 4); + do { + piVar3 = (int *)FUN_10007d02(local_18,local_14); + local_20 = piVar3; + if (piVar3 != (int *)0x0) { + (**(code **)(*piVar3 + 4))(piVar3); + } + local_8 = 1; + if (piVar3 != (int *)0x0) { + FUN_10015d08(this_00 + 8,param_1); + FUN_10015d08(this_00 + 4,param_2); + local_2c = 0; + local_24 = 0; + *(undefined2 *)this_00 = 0x6024; + this_00[2] = param_3; + local_28 = 3; + local_30 = this_00; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar6 = L" Item Handle "; + lVar5 = param_1; + lVar7 = param_2; + p_Var8 = endl_exref; + pbVar4 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CProxy_ILMXProxyServerEvents::Fire_OperationComplete firing event - Server Handle " + ); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar5); + pbVar4 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar4,pwVar6); + pbVar4 = std::basic_ostream_>::operator<< + (pbVar4,lVar7); + std::basic_ostream_>::operator<<(pbVar4,p_Var8); + } + (**(code **)(*piVar3 + 0x18))(piVar3,3,&DAT_100201f8,0x400,1,&local_30,0,0,0); + } + local_8 = 0xffffffff; + if (piVar3 != (int *)0x0) { + (**(code **)(*piVar3 + 8))(piVar3); + } + local_14 = local_14 + 1; + } while (local_14 < local_1c); + } + if (this_00 != (undefined4 *)0x0) { + FUN_10015d66(this_00,3); + } + return; +} + + +``` + +## Catch@10016cd3 at 10016cd3 + +Signature: `undefined * __cdecl Catch@10016cd3(void)` + +```c + +undefined * __cdecl Catch_10016cd3(void) + +{ + basic_ostream_> bVar1; + basic_ostream_> *this; + int unaff_EBP; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var2; + + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 4)); + if (bVar1 != (basic_ostream_>)0x0) { + p_Var2 = endl_exref; + this = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 4), + L"Fire_OnWriteComplete - threw an unknown exception"); + std::basic_ostream_>::operator<<(this,p_Var2); + } + *(undefined4 *)(unaff_EBP + 8) = 0x80004005; + *(undefined4 *)(unaff_EBP + -4) = 0xffffffff; + return &DAT_10016d17; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.functions.tsv b/analysis/ghidra/exports/LmxProxy.dll.functions.tsv new file mode 100644 index 0000000..9ad3704 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.functions.tsv @@ -0,0 +1,1506 @@ +entry name signature body_size call_count interesting_calls +10001000 FUN_10001000 undefined FUN_10001000(void * this, int param_1) 28 1 +1000101c FUN_1000101c undefined FUN_1000101c(int * param_1) 32 1 +1000103c FUN_1000103c undefined4 FUN_1000103c(void) 62 1 CoGetClassObject +1000107a FUN_1000107a int * FUN_1000107a(int * param_1) 68 3 +100010bf FUN_100010bf int * FUN_100010bf(void * this, int * param_1) 92 3 SysAllocString;SysFreeString +1000111b FUN_1000111b undefined FUN_1000111b(int * param_1) 26 1 SysFreeString +10001135 FUN_10001135 int * FUN_10001135(void * this, undefined4 param_1) 79 3 +10001185 FUN_10001185 int * FUN_10001185(void * this, undefined4 param_1) 72 3 +100011ce FUN_100011ce int * FUN_100011ce(void * this, undefined4 param_1) 76 3 +1000121b FUN_1000121b int * FUN_1000121b(void * this, undefined4 param_1, undefined4 param_2) 77 3 +10001269 FUN_10001269 int * FUN_10001269(void * this, undefined4 param_1) 72 3 +100012b2 FUN_100012b2 int FUN_100012b2(ushort * param_1, ushort * param_2, int param_3) 52 0 +100012e6 FUN_100012e6 undefined * FUN_100012e6(undefined4 * param_1) 48 2 SysFreeString +10001316 AtlA2WHelper wchar_t * AtlA2WHelper(wchar_t * param_1, char * param_2, int param_3, uint param_4) 56 1 +1000134e FUN_1000134e undefined FUN_1000134e(undefined4 param_1) 23 1 +10001366 FUN_10001366 undefined FUN_10001366(void) 26 2 +10001381 AtlCrtErrorCheck int AtlCrtErrorCheck(int param_1) 56 1 +100013b9 FUN_100013b9 undefined FUN_100013b9(void * param_1, rsize_t param_2, void * param_3, rsize_t param_4) 32 2 memcpy_s +100013df FUN_100013df undefined4 FUN_100013df(ushort param_1, ushort param_2, ushort param_3, ushort param_4, ushort param_5, ushort param_6, double * param_7) 303 0 +1000150e FUN_1000150e undefined FUN_1000150e(undefined4 * param_1) 9 1 SysFreeString +10001517 FUN_10001517 VARIANTARG * FUN_10001517(VARIANTARG * param_1) 14 1 VariantInit +10001525 InternalCopy void InternalCopy(CComVariant * this, tagVARIANT * param_1) 40 2 VariantCopy +10001572 FUN_10001572 exception * FUN_10001572(void * this, byte param_1) 56 4 +100015aa FUN_100015aa undefined4 * FUN_100015aa(undefined4 * param_1) 183 1 memset +10001661 FUN_10001661 undefined FUN_10001661(void * this, undefined4 param_1) 37 1 +10001686 FUN_10001686 undefined4 FUN_10001686(undefined4 * param_1) 196 1 +1000174a FUN_1000174a undefined4 FUN_1000174a(int * param_1) 58 2 memset +10001784 FUN_10001784 undefined FUN_10001784(void * param_1) 168 7 +1000182c FUN_1000182c undefined1 FUN_1000182c(HKEY param_1, LPCWSTR param_2, LPBYTE param_3) 89 3 +10001885 FUN_10001885 undefined4 * FUN_10001885(void * this, OLECHAR * param_1) 54 2 SysAllocString +100018bb FUN_100018bb undefined4 * FUN_100018bb(void * this, BSTR param_1, char param_2) 72 3 SysAllocStringByteLen +10001903 FUN_10001903 undefined FUN_10001903(undefined4 * param_1) 32 2 SysFreeString +10001923 FUN_10001923 VARIANTARG * FUN_10001923(void * this, VARIANTARG * param_1) 40 3 VariantCopy;VariantInit +1000194b FUN_1000194b undefined FUN_1000194b(void * this, VARTYPE param_1, VARIANTARG * param_2) 49 2 VariantChangeType +1000197c FUN_1000197c undefined4 * FUN_1000197c(void * this, undefined4 param_1, int * param_2, char param_3) 51 0 +100019af FUN_100019af undefined4 * FUN_100019af(void * this, int param_1) 48 0 +100019df FUN_100019df undefined FUN_100019df(undefined4 * param_1) 38 1 +10001a05 FUN_10001a05 undefined4 FUN_10001a05(int param_1) 23 0 +10001a1c FUN_10001a1c uint FUN_10001a1c(int param_1) 34 0 +10001a3e FUN_10001a3e ios_base * FUN_10001a3e(ios_base * param_1) 27 1 +10001a59 FUN_10001a59 ios_base * FUN_10001a59(ios_base * param_1) 27 1 +10001a74 FUN_10001a74 undefined FUN_10001a74(int * param_1) 26 1 +10001a8e FUN_10001a8e undefined FUN_10001a8e(basic_streambuf_> * param_1) 92 7 +10001aea FID_conflict:_Inside uint FID_conflict:_Inside(void * this, undefined4 * param_1) 60 0 +10001b26 FUN_10001b26 uint FUN_10001b26(byte param_1) 44 0 +10001b52 FUN_10001b52 int * FUN_10001b52(void * this, int * param_1) 57 1 +10001b8b FUN_10001b8b undefined FUN_10001b8b(int * param_1) 47 1 +10001bba AtlAdd long AtlAdd(ulong * param_1, ulong param_2, ulong param_3) 36 0 +10001bde FUN_10001bde void * FUN_10001bde(char * param_1) 95 5 +10001c3d FUN_10001c3d undefined FUN_10001c3d(int * param_1, size_t param_2, void * param_3, int param_4) 110 4 +10001cdd FUN_10001cdd uint FUN_10001cdd(void * this, uint param_1, uint param_2, ushort * param_3, uint param_4) 100 2 +10001d41 FUN_10001d41 undefined FUN_10001d41(void * this, undefined4 param_1, int param_2) 63 4 +10001d80 FUN_10001d80 BSTR FUN_10001d80(LPCSTR param_1, int param_2) 138 6 SysAllocStringLen;SysFreeString +10001e0a Copy wchar_t * Copy(CComBSTR * this) 29 2 SysAllocStringByteLen +10001e27 FUN_10001e27 long FUN_10001e27(void * this, void * param_1, ulong param_2) 236 6 SysAllocStringLen;SysFreeString +10001f13 CComBSTR undefined CComBSTR(CComBSTR * this, char * param_1) 50 2 +10001f45 FUN_10001f45 undefined FUN_10001f45(VARIANTARG * param_1) 8 1 VariantClear +10001f4d FUN_10001f4d VARIANTARG * FUN_10001f4d(void * this, CComBSTR * param_1) 75 3 VariantClear +10001f98 FUN_10001f98 undefined FUN_10001f98(undefined4 * param_1) 21 1 +10001fad FUN_10001fad int * FUN_10001fad(void * this, byte param_1) 93 6 SysFreeString +1000200a FUN_1000200a undefined FUN_1000200a(int * param_1) 756 8 +100022fe FUN_100022fe undefined4 FUN_100022fe(int * param_1) 62 2 +1000233c FUN_1000233c undefined4 * FUN_1000233c(void * this, OLECHAR * param_1) 77 5 +10002389 FUN_10002389 undefined4 * FUN_10002389(void * this, BSTR param_1, char param_2) 80 5 +100023d9 FUN_100023d9 UINT FUN_100023d9(int * param_1) 23 1 +100023f0 FUN_100023f0 VARIANTARG * FUN_100023f0(void * this, int param_1) 73 2 VariantClear +10002439 FUN_10002439 VARIANTARG * FUN_10002439(void * this, _union_2685 param_1) 55 2 VariantClear +10002470 FUN_10002470 VARIANTARG * FUN_10002470(void * this, undefined4 * param_1) 56 2 VariantClear +100024a8 FUN_100024a8 VARIANTARG * FUN_100024a8(void * this, OLECHAR * param_1) 69 3 SysAllocString;VariantClear +100024ed FUN_100024ed VARIANTARG * FUN_100024ed(void * this, undefined4 * param_1) 55 2 VariantClear +10002524 FUN_10002524 undefined4 * FUN_10002524(void * this, byte param_1) 31 2 +10002543 FUN_10002543 undefined4 FUN_10002543(int param_1) 170 5 +100025ed FUN_100025ed undefined FUN_100025ed(basic_streambuf_> * param_1) 50 4 +1000261f FUN_1000261f wchar_t FUN_1000261f(basic_streambuf_> * param_1) 170 5 +100026c9 FUN_100026c9 wchar_t FUN_100026c9(void * this, wchar_t param_1) 120 3 +10002741 FUN_10002741 undefined FUN_10002741(void * this, uint * param_1, uint param_2, uint param_3, int param_4, byte param_5) 552 8 +10002969 FUN_10002969 undefined FUN_10002969(void * this, uint * param_1, uint param_2, int param_3, uint param_4) 392 8 +10002af1 FUN_10002af1 undefined FUN_10002af1(undefined4 * param_1) 18 1 +10002b03 FUN_10002b03 basic_streambuf_> * FUN_10002b03(void * this, byte param_1) 31 2 +10002b22 FID_conflict:_Tidy undefined FID_conflict:_Tidy(void * this, char param_1, int param_2) 73 2 memcpy +10002b6b Init void Init(CA2WEX<128> * this, char * param_1, uint param_2) 177 5 +10002c1c FUN_10002c1c void * FUN_10002c1c(void * this, int * param_1) 115 6 +10002c8f FUN_10002c8f undefined FUN_10002c8f(int * param_1) 56 5 +10002cc7 FUN_10002cc7 undefined FUN_10002cc7(void * this, uint param_1) 103 3 +10002d2e Catch@10002d2e undefined * Catch@10002d2e(void) 40 1 +10002d5c FUN_10002d5c undefined FUN_10002d5c(void) 78 3 memcpy +10002daa Catch@10002daa undefined Catch@10002daa(void) 20 2 +10002dbf FUN_10002dbf undefined FUN_10002dbf(int * param_1, wchar_t * param_2) 410 10 +10002f59 Catch@10002f59 undefined * Catch@10002f59(void) 30 1 +10002f7a FUN_10002f7a undefined FUN_10002f7a(void) 38 3 +10002fa0 FUN_10002fa0 undefined FUN_10002fa0(void * this, wchar_t * param_1) 37 2 +10002fc5 FUN_10002fc5 undefined FUN_10002fc5(undefined4 * param_1) 43 3 +10002ff0 CComBSTR undefined CComBSTR(CComBSTR * this, CComBSTR * param_1) 46 2 +1000301e FUN_1000301e undefined FUN_1000301e(undefined4 * param_1) 30 3 +1000303c FUN_1000303c undefined4 FUN_1000303c(int * param_1) 31 1 +1000305b FUN_1000305b uint FUN_1000305b(void * this, undefined4 param_1, undefined4 param_2) 48 1 +1000308b FUN_1000308b undefined FUN_1000308b(int * param_1, wchar_t * param_2) 100 4 +100030ef FUN_100030ef undefined FUN_100030ef(int * param_1, wchar_t * param_2) 100 4 +10003153 FUN_10003153 undefined FUN_10003153(int * param_1, wchar_t * param_2) 100 4 +100031b7 FUN_100031b7 undefined FUN_100031b7(int * param_1, wchar_t * param_2) 100 4 +1000321b FUN_1000321b undefined4 FUN_1000321b(void * this, undefined4 param_1, undefined4 param_2) 45 1 +10003248 FUN_10003248 undefined * FUN_10003248(void) 67 4 +1000328b FUN_1000328b undefined4 FUN_1000328b(int param_1) 73 4 +100032d4 ~basic_string<> undefined ~basic_string<>(void * param_1) 10 1 +100032de FUN_100032de undefined4 * FUN_100032de(void * this, uint param_1, uint param_2) 129 2 memmove +1000335f FUN_1000335f undefined FUN_1000335f(int param_1) 61 4 +1000339c FUN_1000339c wchar_t FUN_1000339c(void * this, wchar_t param_1) 475 11 memcpy +10003577 FUN_10003577 basic_streambuf_> * FUN_10003577(void * this, undefined4 param_1) 70 3 +100035bd _wmemset wchar_t * _wmemset(wchar_t * _S, wchar_t _C, size_t _N) 42 0 +100035e7 FID_conflict:_Chassign undefined FID_conflict:_Chassign(void * this, int param_1, size_t param_2, wchar_t param_3) 63 1 _wmemset +10003626 FUN_10003626 basic_streambuf_> * FUN_10003626(void * this, undefined4 param_1) 70 3 +1000366c FUN_1000366c undefined FUN_1000366c(basic_streambuf_> * param_1) 51 4 +1000369f FUN_1000369f basic_streambuf_> * FUN_1000369f(void * this, byte param_1) 64 4 +100036df FUN_100036df bool FUN_100036df(void * this, uint param_1, char param_2) 106 3 +10003749 FUN_10003749 bool FUN_10003749(void * param_1, void * param_2) 26 1 +10003763 FUN_10003763 undefined4 FUN_10003763(int * param_1, void * param_2, undefined4 * param_3) 101 1 +100037c8 FUN_100037c8 undefined4 FUN_100037c8(void) 8 0 +100037d0 FUN_100037d0 undefined4 FUN_100037d0(void) 8 0 +100037d8 FUN_100037d8 undefined4 FUN_100037d8(void) 8 0 +100037e0 FUN_100037e0 undefined4 FUN_100037e0(void) 8 0 +100037e8 FUN_100037e8 undefined4 FUN_100037e8(void) 8 0 +100037f0 FUN_100037f0 CComBSTR * FUN_100037f0(void * this, LPCWSTR param_1) 65 5 +10003857 FUN_10003857 undefined4 FUN_10003857(int * param_1) 64 1 +10003897 FUN_10003897 int FUN_10003897(void * this, uint param_1) 44 1 +100038c3 FUN_100038c3 LONG FUN_100038c3(undefined4 * param_1) 43 3 +100038ee FUN_100038ee undefined FUN_100038ee(uint param_1) 154 5 +10003988 FUN_10003988 undefined FUN_10003988(int param_1) 20 1 +1000399c FUN_1000399c basic_streambuf_> * FUN_1000399c(void * this, undefined4 param_1, undefined4 param_2) 76 3 +100039e8 FUN_100039e8 undefined FUN_100039e8(int * param_1, undefined4 param_2, wchar_t * param_3) 112 4 +10003a58 FUN_10003a58 undefined FUN_10003a58(basic_streambuf_> * param_1) 51 4 +10003a8b FUN_10003a8b undefined FUN_10003a8b(basic_ostream_> * param_1) 287 12 +10003baa FUN_10003baa basic_iostream_> * FUN_10003baa(void * this, byte param_1, int param_2) 111 5 +10003c19 FUN_10003c19 void * FUN_10003c19(void * this, byte param_1) 34 2 +10003c3b FUN_10003c3b basic_streambuf_> * FUN_10003c3b(void * this, byte param_1) 31 2 +10003c5a FUN_10003c5a undefined4 * FUN_10003c5a(void * this, uint param_1, wchar_t param_2) 99 3 +10003cbd FUN_10003cbd undefined4 * FUN_10003cbd(void * this, undefined4 * param_1, uint param_2, uint param_3) 156 4 memcpy +10003d59 FID_conflict:assign undefined4 * FID_conflict:assign(void * this, undefined4 * param_1, uint param_2) 126 4 memcpy +10003dd7 FUN_10003dd7 undefined4 FUN_10003dd7(int param_1, uint param_2, int param_3, int param_4, uint * param_5) 96 0 +10003e37 FUN_10003e37 uint FUN_10003e37(int param_1, void * param_2, rsize_t param_3, rsize_t * param_4) 113 1 memcpy_s +10003ea8 FUN_10003ea8 undefined FUN_10003ea8(LPCWSTR param_1) 57 4 +10003ee2 FUN_10003ee2 basic_streambuf_> * FUN_10003ee2(void * this, byte param_1) 31 2 +10003f01 FUN_10003f01 basic_ostream_> FUN_10003f01(basic_ostream_> * param_1) 55 3 +10003f38 basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1, uint param_2) 40 1 +10003f60 FUN_10003f60 HRESULT FUN_10003f60(undefined4 * param_1, undefined2 * param_2) 259 8 SafeArrayAccessData;SafeArrayCreateEx;SafeArrayGetLBound;SafeArrayUnaccessData +10004063 FUN_10004063 undefined FUN_10004063(undefined4 * param_1) 19 1 +10004076 FUN_10004076 int * FUN_10004076(void * this, int * param_1) 54 2 +100040ac FUN_100040ac int * FUN_100040ac(void * this, OLECHAR * param_1) 114 6 +1000411e FUN_1000411e undefined4 * FUN_1000411e(void * this, VARIANTARG * param_1) 95 6 VariantClear;VariantInit +1000417d FUN_1000417d void * FUN_1000417d(void * this, void * param_1) 71 3 +100041c4 FUN_100041c4 void * FUN_100041c4(void * this, void * param_1) 71 3 +1000420b FUN_1000420b undefined4 * FUN_1000420b(void * this, undefined4 param_1, int * param_2, OLECHAR * param_3, undefined4 param_4, undefined4 param_5) 81 4 +1000425c FUN_1000425c undefined FUN_1000425c(undefined4 * param_1) 54 4 +100042e8 FUN_100042e8 undefined2 * FUN_100042e8(void * this, wchar_t * param_1) 50 2 +1000431a FUN_1000431a undefined4 FUN_1000431a(void * this, wchar_t param_1) 85 4 +1000436f FUN_1000436f undefined4 FUN_1000436f(void * this, wchar_t param_1) 85 4 +100043c4 FUN_100043c4 undefined4 * FUN_100043c4(void * this, undefined4 * param_1) 85 2 memmove +10004419 FUN_10004419 undefined FUN_10004419(int * param_1, uint param_2, undefined4 param_3, SAFEARRAY * param_4) 845 21 SafeArrayAccessData;SafeArrayGetDim;SafeArrayUnaccessData;VariantChangeType;VariantInit +10004766 Catch@10004766 undefined * Catch@10004766(void) 44 3 +10004794 FUN_10004794 undefined FUN_10004794(void) 154 8 SafeArrayUnaccessData;VariantClear +100048b1 Catch@100048b1 undefined * Catch@100048b1(void) 44 3 +100048df FUN_100048df undefined FUN_100048df(void) 208 10 VariantChangeType;VariantClear;VariantInit +10004a42 Catch@10004a42 undefined * Catch@10004a42(void) 44 3 +10004a70 FUN_10004a70 undefined FUN_10004a70(void) 211 10 VariantChangeType;VariantClear;VariantInit +10004c03 Catch@10004c03 undefined * Catch@10004c03(void) 44 3 +10004c31 FUN_10004c31 undefined FUN_10004c31(void) 223 10 VariantChangeType;VariantClear;VariantInit +100051ae Catch@100051ae undefined * Catch@100051ae(void) 44 3 +100051dc FUN_100051dc undefined FUN_100051dc(void) 305 14 VariantChangeType;VariantClear;VariantInit +100053c0 Catch@100053c0 undefined * Catch@100053c0(void) 31 2 +10005491 FUN_10005491 int * FUN_10005491(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5) 439 14 VariantClear +1000568b FUN_1000568b undefined4 * FUN_1000568b(void * this, byte param_1) 31 2 +100056aa FUN_100056aa undefined4 FUN_100056aa(void * this, wchar_t param_1) 117 6 +1000571f basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1) 37 1 +10005744 FUN_10005744 undefined FUN_10005744(void * this, void * param_1) 269 9 +10005851 FUN_10005851 void * FUN_10005851(void * this, void * param_1) 49 3 +10005882 FUN_10005882 undefined FUN_10005882(void * this, void * param_1, int param_2, char * param_3, int param_4) 1138 21 +10005cf4 FUN_10005cf4 void * FUN_10005cf4(void * param_1, uint param_2, int param_3, OLECHAR * param_4, undefined4 param_5, undefined4 param_6) 179 7 +10005da7 FUN_10005da7 undefined FUN_10005da7(uint param_1, OLECHAR * param_2, undefined4 param_3, undefined4 param_4) 46 2 +10005dd6 FUN_10005dd6 CComVariant * FUN_10005dd6(CComVariant * param_1, uint param_2) 672 17 SafeArrayCreate;SafeArrayPutElement;VariantClear;VariantInit +100060a2 FUN_100060a2 undefined FUN_100060a2(CComVariant * param_1, int * param_2, ushort param_3) 1590 27 SafeArrayAccessData;SafeArrayUnaccessData;SysFreeString;VariantChangeType;VariantClear;VariantInit +10006713 FUN_10006713 undefined FUN_10006713(undefined4 param_1, int * param_2) 40 1 +1000673b FUN_1000673b undefined FUN_1000673b(undefined4 param_1, int * param_2) 40 1 +10006763 FUN_10006763 undefined FUN_10006763(undefined4 param_1, int * param_2) 40 1 +1000678b FUN_1000678b undefined FUN_1000678b(undefined4 param_1, int * param_2) 40 1 +100067b3 FUN_100067b3 undefined4 FUN_100067b3(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, uint param_4) 78 4 +10006801 FUN_10006801 undefined4 FUN_10006801(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, uint param_4) 78 4 +1000684f FUN_1000684f undefined4 FUN_1000684f(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, uint param_4) 78 3 +1000689d FUN_1000689d undefined FUN_1000689d(undefined4 * param_1, int * param_2) 67 2 SysAllocStringByteLen +100068e0 FUN_100068e0 undefined4 * FUN_100068e0(void * this, int param_1, uint param_2, undefined4 param_3) 129 5 memset +10006962 FUN_10006962 undefined4 FUN_10006962(void * this, undefined4 * param_1, undefined4 param_2, undefined4 param_3) 75 4 +100069ad FUN_100069ad undefined FUN_100069ad(int * param_1, ushort * param_2, undefined2 * param_3, undefined2 * param_4, BSTR param_5) 1292 14 SafeArrayCreate;SafeArrayPutElement;SysFreeString +10006eb9 _InlineIsEqualGUID undefined4 _InlineIsEqualGUID(int * param_1, int * param_2) 48 0 +10006ee9 AtlMultiply long AtlMultiply(ulong * param_1, ulong param_2, ulong param_3) 34 0 +10006f0b AtlCoTaskMemCAlloc void * AtlCoTaskMemCAlloc(ulong param_1, ulong param_2) 45 2 +10006f38 FUN_10006f38 LPVOID FUN_10006f38(LPVOID param_1, ulong param_2, ulong param_3) 48 2 +10006f68 FUN_10006f68 bool FUN_10006f68(void * param_1, int param_2, LPCWSTR param_3) 45 2 memcpy_s +10006f95 FUN_10006f95 undefined FUN_10006f95(wchar_t * param_1, rsize_t param_2, wchar_t * param_3) 29 2 +10006fb2 Init long Init(CComCriticalSection * this) 41 2 +10006fdb FUN_10006fdb undefined FUN_10006fdb(LPCRITICAL_SECTION param_1) 18 1 +10006fed FUN_10006fed DWORD FUN_10006fed(void) 21 1 +10007002 FUN_10007002 uint FUN_10007002(uint param_1) 22 0 +10007018 FUN_10007018 undefined FUN_10007018(void) 23 0 +1000702f FUN_1000702f undefined FUN_1000702f(int param_1) 21 1 +10007044 FUN_10007044 void * FUN_10007044(void * param_1) 46 3 memset +10007072 FID_conflict:RegOpenKeyExA LSTATUS FID_conflict:RegOpenKeyExA(HKEY hKey, LPCSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult) 87 2 +100070c9 FID_conflict:RegCreateKeyExW LSTATUS FID_conflict:RegCreateKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD Reserved, LPWSTR lpClass, DWORD dwOptions, REGSAM samDesired, LPSECURITY_ATTRIBUTES lpSecurityAttributes, PHKEY phkResult, LPDWORD lpdwDisposition) 99 2 +1000712c FID_conflict:RegDeleteKeyA LSTATUS FID_conflict:RegDeleteKeyA(HKEY hKey, LPCSTR lpSubKey) 82 2 +1000717e FUN_1000717e undefined4 FUN_1000717e(int param_1) 4 0 +10007182 FUN_10007182 undefined FUN_10007182(short * param_1, int param_2, short * param_3) 78 0 +100071d0 FUN_100071d0 undefined4 * FUN_100071d0(undefined4 * param_1) 85 3 +10007225 FUN_10007225 int * FUN_10007225(int * param_1, int * param_2) 51 0 +10007258 AtlComQIPtrAssign IUnknown * AtlComQIPtrAssign(IUnknown * * param_1, IUnknown * param_2, _GUID * param_3) 55 0 +1000728f Attach void Attach(CComBSTR * this, wchar_t * param_1) 31 1 SysFreeString +100072ae FUN_100072ae undefined * FUN_100072ae(undefined4 * param_1) 87 2 +10007305 FUN_10007305 undefined FUN_10007305(int param_1, int * param_2, int * param_3) 165 3 +100073aa FUN_100073aa undefined4 FUN_100073aa(undefined4 param_1, undefined4 * param_2) 29 0 +100073c7 FUN_100073c7 undefined4 FUN_100073c7(undefined4 param_1, undefined4 * param_2) 36 0 +100073eb FUN_100073eb undefined FUN_100073eb(int param_1, undefined4 param_2) 34 0 +1000740d FUN_1000740d undefined4 FUN_1000740d(undefined4 param_1, undefined4 * param_2) 36 0 +10007431 FUN_10007431 undefined FUN_10007431(int param_1, undefined4 param_2) 34 0 +10007453 InlineIsEqualUnknown int InlineIsEqualUnknown(_GUID * param_1) 46 0 +10007481 FUN_10007481 int FUN_10007481(int param_1) 23 1 memset +10007498 FUN_10007498 undefined FUN_10007498(int param_1) 30 3 +100074b6 DeleteSubKey undefined DeleteSubKey(void * this, LPCWSTR param_1) 112 4 +10007526 Close long Close(CRegKey * this) 27 1 +10007541 Create undefined Create(void * this, HKEY param_1, LPCWSTR param_2, LPWSTR param_3, DWORD param_4, uint param_5, LPSECURITY_ATTRIBUTES param_6, undefined4 * param_7) 104 3 +100075a9 Open undefined Open(void * this, HKEY param_1, LPCWSTR param_2, uint param_3) 79 3 +100075f8 FUN_100075f8 undefined4 * FUN_100075f8(void * this, undefined4 param_1) 80 3 +10007648 SetStringValue long SetStringValue(CRegKey * this, wchar_t * param_1, wchar_t * param_2, ulong param_3) 55 2 +1000767f FUN_1000767f LSTATUS FUN_1000767f(void * this, LPCWSTR param_1, LPCWSTR param_2) 67 2 +100076c2 FUN_100076c2 undefined4 FUN_100076c2(undefined4 * param_1) 32 1 +100076e2 FUN_100076e2 undefined4 * FUN_100076e2(void * this, ulong param_1) 54 1 +10007718 FUN_10007718 undefined FUN_10007718(int param_1) 10 1 +10007722 FUN_10007722 undefined4 FUN_10007722(void * this, void * param_1, int param_2) 142 2 +100077b0 FUN_100077b0 undefined4 FUN_100077b0(undefined4 param_1, undefined2 * param_2) 168 3 +10007858 FUN_10007858 int FUN_10007858(ushort param_1) 54 0 +1000788e FUN_1000788e undefined4 FUN_1000788e(LPCWSTR param_1) 46 1 +100078bc FUN_100078bc LPCWSTR FUN_100078bc(LPCWSTR param_1, WCHAR param_2) 45 1 +100078e9 FUN_100078e9 undefined4 FUN_100078e9(ushort param_1) 38 0 +1000790f FUN_1000790f undefined FUN_1000790f(undefined4 * param_1) 34 2 +10007931 FUN_10007931 undefined4 FUN_10007931(void * this, undefined2 * param_1) 278 4 +10007a47 FUN_10007a47 undefined4 FUN_10007a47(LPCWSTR param_1) 47 1 +10007a76 FUN_10007a76 bool FUN_10007a76(HKEY param_1) 53 1 +10007aab FUN_10007aab undefined4 FUN_10007aab(int * param_1, int * param_2) 45 1 +10007ad8 FUN_10007ad8 undefined FUN_10007ad8(void * this, short * param_1) 101 4 +10007b3d FUN_10007b3d undefined4 FUN_10007b3d(undefined1 * param_1) 31 0 +10007b5c FUN_10007b5c undefined4 FUN_10007b5c(void * this, int * param_1, undefined4 param_2, undefined4 * param_3) 94 0 +10007bba AtlInternalQueryInterface long AtlInternalQueryInterface(void * param_1, _ATL_INTMAP_ENTRY * param_2, _GUID * param_3, void * * param_4) 161 2 +10007c5b FUN_10007c5b undefined FUN_10007c5b(int param_1) 67 2 +10007ccd FUN_10007ccd undefined4 FUN_10007ccd(int * param_1, int * param_2) 53 1 +10007d02 FUN_10007d02 undefined4 FUN_10007d02(void * this, int param_1) 28 0 +10007d1e FUN_10007d1e int FUN_10007d1e(void * this, int param_1) 51 3 +10007d51 Catch@10007d51 undefined * Catch@10007d51(void) 10 0 +10007d60 FUN_10007d60 int FUN_10007d60(void) 148 3 memset +10007df4 FUN_10007df4 undefined4 FUN_10007df4(void * this, uint param_1) 42 0 +10007e1e FUN_10007e1e undefined FUN_10007e1e(int * param_1) 104 0 +10007e86 FUN_10007e86 undefined FUN_10007e86(undefined4 * param_1) 45 1 +10007eb3 FUN_10007eb3 undefined1 * FUN_10007eb3(LPCRITICAL_SECTION param_1) 42 3 +10007edd FUN_10007edd int FUN_10007edd(void * this, undefined4 * param_1) 55 1 +10007f14 FUN_10007f14 undefined FUN_10007f14(undefined4 * param_1) 10 1 +10007f1e FUN_10007f1e undefined FUN_10007f1e(void * this, size_t param_1) 37 2 +10007f43 AtlAddThrow<> ulong AtlAddThrow<>(ulong param_1, ulong param_2) 37 2 +10007f68 AtlMultiplyThrow uint AtlMultiplyThrow(uint param_1, uint param_2) 37 2 +10007f8d FUN_10007f8d undefined FUN_10007f8d(void) 1 0 +10007f8e FUN_10007f8e undefined FUN_10007f8e(int * param_1) 70 0 +10007fd4 FUN_10007fd4 void * FUN_10007fd4(char * param_1) 95 5 +10008033 FUN_10008033 undefined FUN_10008033(undefined4 * param_1, undefined4 * param_2) 45 2 +10008060 _AtlVerifyStackAvailable bool _AtlVerifyStackAvailable(ulong param_1) 85 4 +100080d6 DllCanUnloadNow HRESULT DllCanUnloadNow(void) 12 0 +100080e2 FUN_100080e2 undefined4 FUN_100080e2(int * param_1, _GUID * param_2, undefined4 * param_3) 77 2 +1000812f FUN_1000812f undefined4 FUN_1000812f(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 80 4 +1000817f Catch@1000817f undefined * Catch@1000817f(void) 10 0 +1000818c FUN_1000818c undefined4 FUN_1000818c(void) 48 1 +100081bc FUN_100081bc int FUN_100081bc(int param_1) 65 2 +100081fd FUN_100081fd undefined FUN_100081fd(int param_1) 57 2 +10008236 FUN_10008236 undefined FUN_10008236(int param_1) 5 0 +1000823b FUN_1000823b undefined FUN_1000823b(undefined4 * param_1) 90 3 +10008295 FUN_10008295 undefined4 FUN_10008295(int param_1) 16 0 +100082a5 Release ulong Release(void) 33 0 +100082c6 QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +100082e0 FUN_100082e0 undefined4 * FUN_100082e0(void * this, undefined4 param_1) 67 3 +10008323 FUN_10008323 undefined4 FUN_10008323(int param_1) 16 0 +10008333 Release ulong Release(void) 33 0 +10008354 FUN_10008354 long FUN_10008354(int * param_1, _GUID * param_2, void * * param_3) 76 2 AtlInternalQueryInterface +100083a0 FUN_100083a0 undefined FUN_100083a0(int param_1) 19 0 +100083b3 FUN_100083b3 undefined FUN_100083b3(int param_1) 19 0 +100083c6 FUN_100083c6 undefined FUN_100083c6(int param_1, undefined4 param_2, undefined4 param_3) 24 0 +100083de FUN_100083de undefined4 * FUN_100083de(void * this, byte param_1) 31 2 +100083fd FUN_100083fd undefined FUN_100083fd(int param_1) 30 3 +1000841b Close long Close(CRegKey * this) 5 0 +10008420 FUN_10008420 undefined FUN_10008420(void * this, LPCWSTR param_1) 229 7 +10008505 FUN_10008505 undefined4 FUN_10008505(int * param_1) 87 3 +1000855c FUN_1000855c undefined4 FUN_1000855c(void * this, LPCWSTR param_1) 71 5 +100085a3 FUN_100085a3 undefined FUN_100085a3(int * param_1, undefined4 * param_2, int * param_3) 160 2 +10008643 FUN_10008643 undefined FUN_10008643(int param_1) 18 1 +10008655 FUN_10008655 undefined FUN_10008655(int param_1) 93 3 +100086b2 FUN_100086b2 undefined FUN_100086b2(int param_1) 93 3 +1000870f FUN_1000870f undefined FUN_1000870f(int param_1) 10 1 +10008719 FUN_10008719 undefined FUN_10008719(int param_1) 10 1 +10008723 FUN_10008723 undefined FUN_10008723(int param_1, void * * param_2) 10 1 QueryInterface +1000872d FUN_1000872d undefined FUN_1000872d(int param_1) 10 1 +10008737 FUN_10008737 undefined FUN_10008737(int param_1) 10 1 +10008741 FUN_10008741 undefined FUN_10008741(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +1000874b FUN_1000874b undefined FUN_1000874b(int param_1, void * * param_2) 10 1 QueryInterface +10008755 FUN_10008755 undefined FUN_10008755(int param_1) 10 1 +1000875f FUN_1000875f undefined FUN_1000875f(void) 10 1 +10008769 FUN_10008769 undefined FUN_10008769(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +10008773 FUN_10008773 undefined FUN_10008773(int param_1) 10 1 +1000877d FUN_1000877d undefined FUN_1000877d(int param_1) 10 1 +10008787 FUN_10008787 undefined FUN_10008787(int param_1) 10 1 +10008791 FUN_10008791 undefined FUN_10008791(void) 10 1 +1000879b FUN_1000879b undefined FUN_1000879b(int param_1) 10 1 +100087a5 FUN_100087a5 undefined FUN_100087a5(void) 10 1 +100087af FUN_100087af undefined FUN_100087af(int param_1) 10 1 +100087b9 FUN_100087b9 undefined FUN_100087b9(int param_1) 10 1 +100087c3 FUN_100087c3 undefined FUN_100087c3(void) 10 1 +100087cd FUN_100087cd undefined FUN_100087cd(int param_1) 10 1 +100087d7 FUN_100087d7 undefined FUN_100087d7(HMODULE param_1, LPCWSTR param_2, undefined4 * param_3, ITypeLib * * param_4) 482 12 SysAllocString +100089b9 FUN_100089b9 undefined FUN_100089b9(int param_1) 82 1 +10008a0b FUN_10008a0b undefined4 FUN_10008a0b(void * this, BSTR param_1) 160 4 +10008aab Catch@10008aab undefined * Catch@10008aab(void) 10 0 +10008abb FUN_10008abb undefined4 FUN_10008abb(void) 184 4 SysFreeString +10008b73 FUN_10008b73 undefined FUN_10008b73(int param_1) 51 1 +10008ba6 FUN_10008ba6 int FUN_10008ba6(int * param_1, int * param_2) 52 0 +10008bda GetUnknown IUnknown * GetUnknown(ulong param_1) 33 1 +10008bfb FUN_10008bfb undefined4 * FUN_10008bfb(void * this, ulong param_1) 44 2 +10008c27 thunk_FUN_10007e86 undefined thunk_FUN_10007e86(undefined4 * param_1) 5 0 +10008c2c FUN_10008c2c undefined FUN_10008c2c(undefined4 * param_1) 16 1 +10008c3c FUN_10008c3c undefined FUN_10008c3c(int * param_1) 13 1 +10008c49 FUN_10008c49 undefined FUN_10008c49(int param_1) 33 3 +10008c6a FUN_10008c6a undefined FUN_10008c6a(void * this, int param_1, undefined4 * param_2, undefined4 * param_3) 84 2 +10008cbe FUN_10008cbe undefined FUN_10008cbe(int * param_1) 59 0 +10008cf9 FUN_10008cf9 undefined FUN_10008cf9(undefined4 * param_1) 23 1 +10008d10 FUN_10008d10 bool FUN_10008d10(void * this, undefined4 * param_1) 139 2 +10008d9b FUN_10008d9b undefined FUN_10008d9b(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +10008dae FUN_10008dae undefined4 FUN_10008dae(HMODULE param_1, int param_2) 97 5 +10008e0f FUN_10008e0f undefined4 FUN_10008e0f(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 90 4 +10008e69 Catch@10008e69 undefined * Catch@10008e69(void) 10 0 +10008e76 FUN_10008e76 undefined4 FUN_10008e76(void) 42 1 +10008ea0 FUN_10008ea0 undefined FUN_10008ea0(int param_1) 30 3 +10008ebe FUN_10008ebe undefined4 * FUN_10008ebe(undefined4 * param_1) 59 3 +10008ef9 FUN_10008ef9 undefined4 FUN_10008ef9(int param_1, int param_2, _GUID * param_3, undefined4 * param_4) 62 1 +10008f37 FUN_10008f37 undefined4 FUN_10008f37(undefined4 param_1, int param_2) 31 0 +10008f56 FUN_10008f56 int FUN_10008f56(int param_1) 55 1 +10008f8d FUN_10008f8d undefined4 * FUN_10008f8d(undefined4 * param_1) 53 3 +10008fc2 FUN_10008fc2 undefined FUN_10008fc2(int param_1) 11 1 +10008fcd FUN_10008fcd undefined FUN_10008fcd(int param_1) 11 1 +10008fd9 FUN_10008fd9 HRESULT FUN_10008fd9(void * this, undefined4 * param_1) 76 1 CoCreateInstance +10009025 FUN_10009025 undefined4 FUN_10009025(void) 8 0 +1000902d FUN_1000902d undefined FUN_1000902d(int * param_1) 26 0 +10009047 FUN_10009047 undefined FUN_10009047(undefined4 * param_1) 70 3 +1000908d FUN_1000908d undefined4 * FUN_1000908d(void * this, byte param_1) 31 2 +100090ac FUN_100090ac undefined4 * FUN_100090ac(void * this, byte param_1) 55 4 +100090e3 FUN_100090e3 undefined FUN_100090e3(int * param_1) 42 4 +1000910d FUN_1000910d undefined FUN_1000910d(undefined4 * param_1) 52 4 +10009141 FUN_10009141 undefined4 FUN_10009141(void) 6 0 +10009147 FUN_10009147 undefined4 FUN_10009147(void) 5 0 +1000914c FUN_1000914c undefined4 * FUN_1000914c(void * this, byte param_1) 31 2 +1000916b FUN_1000916b int FUN_1000916b(int param_1, uint param_2) 70 2 +100091b1 FUN_100091b1 undefined4 FUN_100091b1(int param_1) 65 2 +100091f2 FUN_100091f2 undefined FUN_100091f2(void * this, LPCWSTR param_1, int * param_2) 621 15 +1000945f FUN_1000945f undefined FUN_1000945f(int param_1) 30 3 +1000947d FUN_1000947d undefined FUN_1000947d(int param_1) 56 2 +100094b5 FUN_100094b5 undefined4 FUN_100094b5(void * this, int param_1, int param_2, int * param_3, int param_4) 72 3 +100094fd Catch@100094fd undefined * Catch@100094fd(void) 10 0 +1000950d FUN_1000950d undefined4 FUN_1000950d(void) 160 4 +100095b6 FUN_100095b6 undefined FUN_100095b6(GUID * param_1, int * param_2, int param_3) 798 13 CoCreateInstance +100098d4 FUN_100098d4 int FUN_100098d4(TLIBATTR * param_1, LPCWSTR param_2) 208 8 SysFreeString +100099a4 FUN_100099a4 undefined FUN_100099a4(HMODULE param_1, LPCWSTR param_2) 458 12 SysFreeString +10009b6e FUN_10009b6e int FUN_10009b6e(int param_1, int param_2, void * param_3) 134 3 +10009bf4 FUN_10009bf4 int FUN_10009bf4(int param_1, int param_2, void * param_3) 135 3 +10009c7b FUN_10009c7b int * FUN_10009c7b(int * param_1, int * param_2, undefined4 param_3, int * param_4) 235 5 +10009d66 FUN_10009d66 undefined4 FUN_10009d66(int param_1) 53 3 +10009d9b Catch@10009d9b undefined * Catch@10009d9b(void) 10 0 +10009dab FUN_10009dab undefined4 FUN_10009dab(void) 91 3 +10009e06 FUN_10009e06 undefined FUN_10009e06(undefined4 * param_1) 49 3 +10009e37 FUN_10009e37 undefined4 * FUN_10009e37(void * this, byte param_1) 31 2 +10009e56 FUN_10009e56 undefined FUN_10009e56(void) 60 3 +10009e92 FUN_10009e92 undefined4 FUN_10009e92(void * this, undefined4 * param_1, undefined4 * param_2) 87 2 +10009ee9 Allocate int Allocate(void * this, uint param_1) 47 2 +10009f18 Allocate int Allocate(void * this, uint param_1) 47 2 +10009f47 Allocate int Allocate(void * this, uint param_1) 47 2 +10009f76 FUN_10009f76 IUnknown * FUN_10009f76(void * this, undefined4 * param_1) 45 2 +10009fa3 FUN_10009fa3 undefined FUN_10009fa3(int param_1) 39 1 +10009fca FUN_10009fca undefined FUN_10009fca(int param_1, undefined4 param_2, undefined4 * param_3) 32 2 +10009fea FUN_10009fea undefined4 * FUN_10009fea(undefined4 * param_1) 46 3 +1000a018 FUN_1000a018 LONG FUN_1000a018(int param_1) 42 1 +1000a042 FUN_1000a042 LONG FUN_1000a042(int * param_1) 63 1 +1000a081 QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +1000a09b FUN_1000a09b undefined FUN_1000a09b(undefined4 * param_1) 47 3 +1000a0ca FUN_1000a0ca int FUN_1000a0ca(int param_1) 42 3 +1000a0f4 FUN_1000a0f4 undefined4 * FUN_1000a0f4(void * this, byte param_1) 31 2 +1000a113 FUN_1000a113 undefined4 FUN_1000a113(LPCWSTR param_1, int param_2) 90 4 +1000a16d Catch@1000a16d undefined * Catch@1000a16d(void) 10 0 +1000a179 FUN_1000a179 undefined FUN_1000a179(void) 66 3 +1000a1bb Catch@1000a1bb undefined * Catch@1000a1bb(void) 13 0 +1000a1ca FUN_1000a1ca bool FUN_1000a1ca(void) 146 4 +1000a25e FUN_1000a25e int FUN_1000a25e(undefined4 param_1, LPCWSTR param_2, int param_3) 91 4 +1000a2b9 FUN_1000a2b9 undefined4 FUN_1000a2b9(void * this, int param_1, int param_2, int * param_3, int param_4) 72 3 +1000a301 Catch@1000a301 undefined * Catch@1000a301(void) 10 0 +1000a311 FUN_1000a311 undefined4 FUN_1000a311(void) 160 4 +1000a3ba FUN_1000a3ba undefined FUN_1000a3ba(void * this, CRegKey * param_1, wchar_t * param_2, undefined2 * param_3) 277 7 +1000a4cf Catch@1000a4cf undefined * Catch@1000a4cf(void) 10 0 +1000a4db FUN_1000a4db undefined FUN_1000a4db(void) 158 3 +1000a627 Catch@1000a627 undefined * Catch@1000a627(void) 13 0 +1000a642 FUN_1000a642 undefined FUN_1000a642(void) 260 7 memset +1000a74f FUN_1000a74f int FUN_1000a74f(int param_1) 42 3 +1000a779 FUN_1000a779 undefined FUN_1000a779(void * this, LPCWSTR param_1, HKEY param_2, int param_3, int param_4) 1687 20 +1000ae10 FUN_1000ae10 int * FUN_1000ae10(void * this, int * param_1, undefined4 param_2, int * param_3) 204 6 +1000aedc FUN_1000aedc undefined FUN_1000aedc(void * this, LCID param_1) 589 12 +1000b129 FUN_1000b129 undefined FUN_1000b129(int param_1, void * param_2) 46 1 +1000b157 FUN_1000b157 undefined FUN_1000b157(int param_1, void * param_2) 38 1 +1000b17d FUN_1000b17d int FUN_1000b17d(void * this, undefined4 * param_1) 61 4 +1000b1ba Catch@1000b1ba undefined Catch@1000b1ba(void) 18 2 +1000b22b Catch@1000b22b undefined1 * Catch@1000b22b(void) 10 0 +1000b27d FUN_1000b27d undefined4 * FUN_1000b27d(undefined4 * param_1) 57 3 +1000b2b6 FUN_1000b2b6 undefined4 FUN_1000b2b6(int param_1) 18 0 +1000b2c8 FUN_1000b2c8 bool FUN_1000b2c8(int param_1, uint param_2) 45 0 +1000b2f5 FUN_1000b2f5 uint FUN_1000b2f5(int param_1, uint param_2, int * param_3, uint * param_4) 190 1 +1000b3b3 QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +1000b3cd FUN_1000b3cd undefined FUN_1000b3cd(undefined4 * param_1) 62 3 +1000b40b FUN_1000b40b undefined4 * FUN_1000b40b(void * this, byte param_1) 31 2 +1000b42a FUN_1000b42a undefined4 * FUN_1000b42a(undefined4 * param_1) 57 3 +1000b463 FUN_1000b463 bool FUN_1000b463(int param_1, uint param_2) 45 0 +1000b490 FUN_1000b490 undefined4 FUN_1000b490(int param_1) 16 0 +1000b4a0 Release ulong Release(void) 33 0 +1000b4c1 FUN_1000b4c1 uint FUN_1000b4c1(int param_1, uint param_2, int * param_3, uint * param_4) 190 1 +1000b57f QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +1000b599 FUN_1000b599 undefined FUN_1000b599(undefined4 * param_1) 62 3 +1000b5d7 FUN_1000b5d7 undefined4 * FUN_1000b5d7(void * this, byte param_1) 31 2 +1000b5f6 FUN_1000b5f6 undefined FUN_1000b5f6(void * this, LPCWSTR param_1, int param_2) 311 8 +1000b72d FUN_1000b72d undefined4 FUN_1000b72d(undefined4 * param_1) 76 4 +1000b779 Catch@1000b779 undefined * Catch@1000b779(void) 10 0 +1000b788 FUN_1000b788 undefined4 FUN_1000b788(void) 23 1 +1000b79f FUN_1000b79f undefined4 FUN_1000b79f(undefined4 * param_1) 76 4 +1000b7eb Catch@1000b7eb undefined * Catch@1000b7eb(void) 10 0 +1000b7fa FUN_1000b7fa undefined4 FUN_1000b7fa(void) 23 1 +1000b811 FUN_1000b811 int FUN_1000b811(void * this, int param_1, void * param_2) 111 3 +1000b880 FUN_1000b880 int FUN_1000b880(void * this, int param_1, void * param_2) 111 3 +1000b8ef FUN_1000b8ef undefined4 FUN_1000b8ef(void * this, LCID param_1, undefined4 * param_2) 64 1 +1000b92f FUN_1000b92f undefined4 FUN_1000b92f(void * this, undefined4 param_1, undefined4 * param_2, int param_3, LCID param_4, undefined4 * param_5) 161 3 +1000b9d0 FUN_1000b9d0 undefined FUN_1000b9d0(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, LCID param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8, undefined4 param_9) 67 1 +1000ba13 DllRegisterServer undefined DllRegisterServer(void) 15 1 +1000ba22 DllUnregisterServer undefined DllUnregisterServer(void) 15 1 +1000ba31 FUN_1000ba31 undefined FUN_1000ba31(undefined4 param_1, undefined4 * param_2) 74 4 +1000ba7b Catch@1000ba7b undefined * Catch@1000ba7b(void) 10 0 +1000ba8a FUN_1000ba8a undefined FUN_1000ba8a(void) 304 8 +1000bbba FUN_1000bbba undefined4 FUN_1000bbba(undefined4 param_1, int param_2, LCID param_3, undefined4 * param_4) 36 1 +1000bbde FUN_1000bbde undefined FUN_1000bbde(undefined4 param_1, undefined4 param_2, undefined4 * param_3, int param_4, LCID param_5, undefined4 * param_6) 32 1 +1000bbfe FUN_1000bbfe undefined FUN_1000bbfe(undefined4 param_1, undefined4 param_2, undefined4 param_3, LCID param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8, undefined4 param_9) 14 1 +1000bc0c FUN_1000bc0c undefined FUN_1000bc0c(LPCWSTR param_1, LPCWSTR param_2, LPCWSTR param_3) 197 8 FindResourceW +1000bcd1 Catch@1000bcd1 undefined * Catch@1000bcd1(void) 13 0 +1000bce6 FUN_1000bce6 undefined FUN_1000bce6(void) 138 6 +1000bd70 FUN_1000bd70 undefined4 FUN_1000bd70(undefined4 param_1, LPCWSTR param_2, ushort param_3, LPCWSTR param_4) 65 4 +1000bdb1 FUN_1000bdb1 undefined4 FUN_1000bdb1(undefined4 param_1, LPCWSTR param_2, LPCWSTR param_3, LPCWSTR param_4) 92 4 +1000be0d FUN_1000be0d undefined4 FUN_1000be0d(undefined4 param_1, LPCWSTR param_2, ushort param_3, LPCWSTR param_4) 64 4 +1000be4d FUN_1000be4d undefined4 FUN_1000be4d(undefined4 param_1, LPCWSTR param_2, LPCWSTR param_3, LPCWSTR param_4) 91 4 +1000bea8 FUN_1000bea8 long FUN_1000bea8(int param_1, undefined4 * param_2) 144 5 +1000befe Catch@1000befe undefined4 Catch@1000befe(void) 10 0 +1000bf42 Catch@1000bf42 undefined * Catch@1000bf42(void) 10 0 +1000bf4f FUN_1000bf4f long FUN_1000bf4f(void) 138 4 AtlInternalQueryInterface +1000bfd9 FUN_1000bfd9 int FUN_1000bfd9(int * param_1, void * * param_2) 275 5 AtlInternalQueryInterface +1000c0ec FUN_1000c0ec int FUN_1000c0ec(int * param_1, void * * param_2) 275 5 AtlInternalQueryInterface +1000c1ff FUN_1000c1ff undefined FUN_1000c1ff(int * param_1, LPCWSTR param_2, int param_3, undefined4 * param_4) 515 13 +1000c402 FUN_1000c402 undefined FUN_1000c402(int * param_1, ushort param_2, int param_3, undefined4 * param_4) 503 13 +1000c5f9 FUN_1000c5f9 undefined FUN_1000c5f9(int * param_1, LPCWSTR param_2, int param_3, undefined4 * param_4) 9 1 +1000c602 FUN_1000c602 undefined FUN_1000c602(int * param_1, ushort param_2, int param_3, undefined4 * param_4) 9 1 +1000c60b FUN_1000c60b basic_ostream_> * FUN_1000c60b(void * this, undefined4 param_1, wchar_t * param_2, basic_ostream_> * param_3) 209 10 +1000c6dc FUN_1000c6dc undefined FUN_1000c6dc(int param_1, int param_2, int * param_3) 35 1 +1000c6ff FUN_1000c6ff undefined4 * FUN_1000c6ff(undefined4 * param_1) 282 5 +1000c819 FUN_1000c819 undefined FUN_1000c819(void) 66 4 +1000c85b FUN_1000c85b undefined FUN_1000c85b(int param_1) 24 1 +1000c873 DllGetClassObject HRESULT DllGetClassObject(IID * rclsid, IID * riid, LPVOID * ppv) 66 4 +1000c8b5 FUN_1000c8b5 undefined FUN_1000c8b5(void * param_1) 58 4 +1000c8ef FUN_1000c8ef undefined FUN_1000c8ef(int param_1) 140 7 +1000c97b FUN_1000c97b undefined FUN_1000c97b(int param_1) 20 1 +1000c98f FUN_1000c98f int FUN_1000c98f(int param_1) 44 3 +1000c9bb FUN_1000c9bb void * FUN_1000c9bb(void * this, byte param_1) 34 2 +1000c9dd FUN_1000c9dd int * FUN_1000c9dd(int * param_1) 82 3 +1000ca30 FUN_1000ca30 CComCriticalSection * FUN_1000ca30(CComCriticalSection * param_1) 37 3 memset +1000ca55 FUN_1000ca55 undefined FUN_1000ca55(undefined4 * param_1) 27 2 +1000ca70 operator== bool operator==(CComBSTR * this, CComBSTR * param_1) 32 1 +1000ca90 FUN_1000ca90 undefined FUN_1000ca90(undefined4 * param_1) 5 0 +1000ca95 FUN_1000ca95 HRESULT FUN_1000ca95(void * this, BSTR param_1) 66 3 SysFreeString +1000cad7 FUN_1000cad7 undefined FUN_1000cad7(undefined4 * param_1) 9 1 +1000cae0 FUN_1000cae0 undefined4 FUN_1000cae0(undefined4 param_1, void * param_2) 44 1 +1000cb0c QueryDWORDValue uint QueryDWORDValue(void * this, LPCWSTR param_1, LPBYTE param_2) 56 1 +1000cb44 QueryStringValue long QueryStringValue(CRegKey * this, wchar_t * param_1, wchar_t * param_2, ulong * param_3) 111 1 +1000cbb3 FUN_1000cbb3 undefined FUN_1000cbb3(int * param_1) 16 0 +1000cbc3 FUN_1000cbc3 undefined FUN_1000cbc3(int * param_1) 13 0 +1000cbd0 FUN_1000cbd0 undefined FUN_1000cbd0(int * param_1) 59 0 +1000cc0b FUN_1000cc0b undefined FUN_1000cc0b(int * param_1) 59 0 +1000cc46 FUN_1000cc46 undefined FUN_1000cc46(int * param_1) 59 0 +1000cc81 FUN_1000cc81 undefined FUN_1000cc81(undefined4 * param_1) 16 1 +1000cc91 FUN_1000cc91 undefined FUN_1000cc91(int param_1) 86 3 +1000cce7 FUN_1000cce7 undefined FUN_1000cce7(int * param_1) 70 0 +1000cd2d FUN_1000cd2d undefined FUN_1000cd2d(int * param_1) 70 0 +1000cd73 FUN_1000cd73 undefined FUN_1000cd73(int * param_1) 70 0 +1000cdb9 FUN_1000cdb9 undefined4 * FUN_1000cdb9(void * this, LPCSTR param_1) 34 1 +1000cddb FUN_1000cddb undefined4 FUN_1000cddb(HKEY param_1, LPCWSTR param_2, LPCWSTR param_3, int param_4, LPBYTE param_5) 126 3 +1000ce59 FUN_1000ce59 uint FUN_1000ce59(LPBYTE param_1, int param_2) 121 2 memset +1000ced2 FUN_1000ced2 uint FUN_1000ced2(LPBYTE param_1, int param_2) 124 2 memset +1000cf4e FUN_1000cf4e uint FUN_1000cf4e(LPBYTE param_1, int param_2) 124 2 memset +1000cfca FUN_1000cfca undefined1 FUN_1000cfca(int param_1, LPWSTR param_2, UINT param_3) 186 9 memset +1000d084 FUN_1000d084 undefined FUN_1000d084(int param_1, LPCWSTR param_2, char param_3, DWORD * param_4) 192 5 +1000d144 FUN_1000d144 undefined FUN_1000d144(undefined4 * param_1) 33 3 SysFreeString +1000d165 FUN_1000d165 undefined FUN_1000d165(LPCWSTR param_1) 97 3 +1000d1c6 FUN_1000d1c6 undefined FUN_1000d1c6(undefined4 * param_1) 10 1 +1000d1d0 FUN_1000d1d0 void * FUN_1000d1d0(char * param_1) 98 5 +1000d232 FUN_1000d232 undefined1 * FUN_1000d232(undefined4 * param_1, undefined4 * param_2) 49 2 +1000d263 FUN_1000d263 undefined4 * FUN_1000d263(void * this, OLECHAR * param_1) 61 3 SysAllocString;SysFreeString +1000d2a0 FUN_1000d2a0 undefined FUN_1000d2a0(undefined4 * param_1) 24 2 +1000d2b8 FUN_1000d2b8 undefined FUN_1000d2b8(int param_1) 30 3 +1000d2d6 FUN_1000d2d6 undefined1 FUN_1000d2d6(int param_1) 24 0 +1000d2ee FUN_1000d2ee undefined FUN_1000d2ee(undefined4 * param_1) 90 3 SysFreeString +1000d348 FUN_1000d348 undefined FUN_1000d348(int * param_1) 37 2 +1000d36d FUN_1000d36d undefined FUN_1000d36d(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 297 7 VariantChangeType;VariantClear +1000d4d1 FUN_1000d4d1 undefined FUN_1000d4d1(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 260 8 VariantChangeType;VariantClear +1000d5d5 FUN_1000d5d5 undefined FUN_1000d5d5(void * this, int param_1) 100 0 +1000d639 FUN_1000d639 undefined FUN_1000d639(int param_1) 75 2 +1000d684 FUN_1000d684 int * FUN_1000d684(void * this, int * param_1) 48 2 +1000d6b4 FUN_1000d6b4 undefined FUN_1000d6b4(void * this, int * param_1) 71 0 +1000d6fb FUN_1000d6fb undefined FUN_1000d6fb(void * this, int * param_1) 71 0 +1000d742 FUN_1000d742 undefined FUN_1000d742(int param_1) 10 1 +1000d74c FUN_1000d74c undefined FUN_1000d74c(undefined4 * param_1) 9 1 +1000d755 FUN_1000d755 undefined4 * FUN_1000d755(void * this, int * param_1) 44 0 +1000d781 FUN_1000d781 undefined4 * FUN_1000d781(void * this, int * param_1) 44 0 +1000d7ad FUN_1000d7ad undefined FUN_1000d7ad(void * this, int * param_1) 71 0 +1000d7f4 FUN_1000d7f4 undefined FUN_1000d7f4(void * this, int param_1) 69 0 +1000d839 FUN_1000d839 undefined FUN_1000d839(void * this, int * param_1) 71 0 +1000d880 FUN_1000d880 void * FUN_1000d880(char * param_1) 95 5 +1000d8df FUN_1000d8df void * FUN_1000d8df(char * param_1) 95 5 +1000d93e FUN_1000d93e void * FUN_1000d93e(char * param_1) 95 5 +1000d99d FUN_1000d99d void * FUN_1000d99d(char * param_1) 95 5 +1000d9fc FUN_1000d9fc undefined FUN_1000d9fc(int param_1) 33 3 +1000da1d FUN_1000da1d undefined4 * FUN_1000da1d(void * this, LPCSTR param_1) 77 5 +1000da6a FUN_1000da6a undefined4 FUN_1000da6a(LPCWSTR param_1, LPCWSTR param_2, undefined4 * param_3) 115 5 +1000dadd FUN_1000dadd undefined FUN_1000dadd(LPCWSTR param_1, wchar_t * param_2, undefined4 * param_3) 247 9 SysAllocString;SysFreeString;memset +1000dbd4 FUN_1000dbd4 undefined FUN_1000dbd4(LPCWSTR param_1) 75 3 +1000dc1f FUN_1000dc1f uint FUN_1000dc1f(void * this, uint param_1) 49 0 +1000dc50 FUN_1000dc50 undefined1 * FUN_1000dc50(undefined4 * param_1, undefined4 * param_2) 48 2 +1000dc80 FUN_1000dc80 undefined4 * FUN_1000dc80(void * this, CComBSTR * param_1) 59 3 SysFreeString +1000dcbb FUN_1000dcbb undefined4 * FUN_1000dcbb(void * this, OLECHAR * param_1, undefined4 param_2) 107 4 SysAllocString +1000dd27 FUN_1000dd27 void * FUN_1000dd27(void * this, LPCWSTR param_1) 43 3 +1000dd52 FUN_1000dd52 undefined FUN_1000dd52(int param_1) 33 3 +1000dd73 FUN_1000dd73 undefined FUN_1000dd73(int * param_1) 37 2 +1000dd98 FUN_1000dd98 undefined4 * FUN_1000dd98(void * this, undefined4 * param_1) 95 3 +1000ddf7 FUN_1000ddf7 undefined4 * FUN_1000ddf7(void * this, undefined4 * param_1) 59 2 +1000de32 FUN_1000de32 undefined4 * FUN_1000de32(void * this, undefined4 * param_1) 59 2 +1000de6d FUN_1000de6d undefined4 * FUN_1000de6d(void * this, undefined4 * param_1) 59 2 +1000dea8 FUN_1000dea8 undefined FUN_1000dea8(void * this, int param_1) 69 0 +1000deed FUN_1000deed undefined FUN_1000deed(void * this, int param_1) 69 0 +1000df32 FUN_1000df32 undefined FUN_1000df32(void * this, int * param_1, uint * param_2) 123 0 +1000dfad FUN_1000dfad undefined4 * FUN_1000dfad(void * this, uint * param_1) 44 0 +1000dfd9 FUN_1000dfd9 undefined4 * FUN_1000dfd9(void * this, int * param_1) 44 0 +1000e005 FUN_1000e005 undefined FUN_1000e005(void * this, int param_1) 69 0 +1000e04a FUN_1000e04a undefined FUN_1000e04a(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +1000e173 FUN_1000e173 undefined FUN_1000e173(int param_1, int param_2, int * param_3) 35 1 +1000e196 FUN_1000e196 undefined FUN_1000e196(int param_1) 39 1 +1000e1bd FUN_1000e1bd undefined FUN_1000e1bd(int param_1) 39 1 +1000e1e4 FUN_1000e1e4 undefined FUN_1000e1e4(int param_1) 39 1 +1000e20b FUN_1000e20b CComBSTR * FUN_1000e20b(void * this, CComBSTR * param_1) 118 4 +1000e281 FUN_1000e281 undefined FUN_1000e281(void * param_1) 119 6 SysFreeString +1000e2f8 FUN_1000e2f8 uint FUN_1000e2f8(void) 43 1 +1000e323 FUN_1000e323 uint FUN_1000e323(void) 43 1 +1000e34e FUN_1000e34e undefined4 FUN_1000e34e(void) 59 1 +1000e389 FUN_1000e389 undefined4 FUN_1000e389(void) 41 1 +1000e3b2 FUN_1000e3b2 undefined FUN_1000e3b2(void * this, undefined4 param_1, undefined4 * param_2) 212 8 SysFreeString +1000e486 FUN_1000e486 undefined FUN_1000e486(void * this, uint param_1) 57 1 +1000e4bf FUN_1000e4bf undefined4 * FUN_1000e4bf(void * this, uint param_1, undefined4 * param_2, uint param_3, uint param_4) 308 5 memcpy;memmove +1000e5f4 FUN_1000e5f4 undefined FUN_1000e5f4(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +1000e607 FUN_1000e607 undefined4 * FUN_1000e607(undefined4 * param_1) 47 0 +1000e636 FUN_1000e636 undefined FUN_1000e636(undefined4 * param_1) 31 0 +1000e655 FUN_1000e655 undefined4 FUN_1000e655(int param_1) 16 0 +1000e665 Release ulong Release(void) 33 0 +1000e686 QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +1000e6a0 FUN_1000e6a0 undefined4 * FUN_1000e6a0(void * this, byte param_1) 31 2 +1000e6bf FUN_1000e6bf undefined FUN_1000e6bf(int param_1, void * * param_2) 10 1 QueryInterface +1000e6c9 FUN_1000e6c9 undefined FUN_1000e6c9(void) 10 1 +1000e6d3 FUN_1000e6d3 undefined FUN_1000e6d3(int param_1) 10 1 +1000e6dd FUN_1000e6dd int * FUN_1000e6dd(int * param_1) 33 1 +1000e6fe FUN_1000e6fe undefined FUN_1000e6fe(void * this, undefined4 * param_1, int * param_2) 587 5 +1000e949 FUN_1000e949 int FUN_1000e949(int param_1) 55 1 +1000e980 FUN_1000e980 int FUN_1000e980(int param_1) 55 1 +1000e9b7 FUN_1000e9b7 undefined FUN_1000e9b7(void * this, int * param_1, int * param_2) 123 0 +1000ea32 FUN_1000ea32 int FUN_1000ea32(int param_1) 55 1 +1000ea69 FUN_1000ea69 undefined FUN_1000ea69(int * param_1) 53 2 +1000ea9e FUN_1000ea9e undefined FUN_1000ea9e(void * this, undefined4 * param_1, int * param_2) 587 5 +1000ece9 FUN_1000ece9 undefined FUN_1000ece9(int * param_1) 53 2 +1000ed1e FUN_1000ed1e undefined FUN_1000ed1e(void * this, undefined4 * param_1, int * param_2, char param_3) 174 3 +1000edcc FUN_1000edcc undefined FUN_1000edcc(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +1000eef5 FUN_1000eef5 void * FUN_1000eef5(void * this, byte param_1) 52 4 +1000ef29 FUN_1000ef29 undefined4 * FUN_1000ef29(void * this, undefined4 * param_1, CComBSTR * param_2) 49 3 +1000ef5a FUN_1000ef5a void * FUN_1000ef5a(void * this, undefined4 * param_1) 46 3 +1000ef88 FUN_1000ef88 undefined FUN_1000ef88(undefined4 * param_1, undefined4 * param_2) 55 2 +1000efbf FUN_1000efbf undefined4 * FUN_1000efbf(void * this, undefined4 * param_1, uint param_2, uint param_3) 165 4 memcpy +1000f064 FUN_1000f064 undefined4 * FUN_1000f064(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 65 3 +1000f0a5 Catch@1000f0a5 undefined Catch@1000f0a5(void) 9 1 +1000f0af FUN_1000f0af char FUN_1000f0af(undefined4 * param_1) 272 12 CreateClientConnection +1000f1bf FUN_1000f1bf undefined FUN_1000f1bf(undefined4 * param_1) 173 7 +1000f26c FUN_1000f26c undefined FUN_1000f26c(undefined4 * param_1) 210 7 +1000f33e FUN_1000f33e undefined FUN_1000f33e(void * this, undefined4 * param_1, uint * param_2) 58 1 +1000f378 FUN_1000f378 undefined FUN_1000f378(int param_1) 39 1 +1000f39f FUN_1000f39f undefined FUN_1000f39f(int param_1) 39 1 +1000f3c6 FUN_1000f3c6 undefined FUN_1000f3c6(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +1000f475 FUN_1000f475 int FUN_1000f475(void * this, undefined4 * param_1) 61 4 +1000f4b2 Catch@1000f4b2 undefined Catch@1000f4b2(void) 18 2 +1000f4c5 FUN_1000f4c5 undefined1 * FUN_1000f4c5(void * param_1, undefined4 * param_2) 46 3 +1000f4f3 FUN_1000f4f3 undefined FUN_1000f4f3(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +1000f506 basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1) 40 1 +1000f52e FUN_1000f52e undefined4 * FUN_1000f52e(void * this, undefined4 * param_1, uint param_2) 162 5 memcpy +1000f5d0 _Uninitialized_move<> undefined _Uninitialized_move<>(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 31 1 +1000f5ef FUN_1000f5ef undefined FUN_1000f5ef(void * this, undefined4 * param_1, int * param_2) 58 1 +1000f629 FUN_1000f629 undefined FUN_1000f629(void * this, undefined4 * param_1, int * param_2) 58 1 +1000f663 FUN_1000f663 undefined FUN_1000f663(void * this, undefined4 * param_1, int * param_2) 58 1 +1000f69d FUN_1000f69d undefined FUN_1000f69d(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +1000f6f0 FUN_1000f6f0 undefined FUN_1000f6f0(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +1000f743 FUN_1000f743 void * FUN_1000f743(void * param_1, undefined4 * param_2, CComBSTR * param_3) 50 3 +1000f775 FUN_1000f775 undefined FUN_1000f775(undefined4 param_1, int param_2) 33 3 +1000f796 FUN_1000f796 undefined FUN_1000f796(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +1000f7a9 FUN_1000f7a9 undefined FUN_1000f7a9(undefined4 * param_1) 46 1 +1000f7d7 FUN_1000f7d7 undefined4 * FUN_1000f7d7(void * this, int param_1) 63 3 +1000f816 FUN_1000f816 undefined4 FUN_1000f816(undefined4 * param_1, undefined4 param_2, LPCSTR param_3) 195 8 +1000f8d9 FUN_1000f8d9 undefined4 FUN_1000f8d9(undefined4 * param_1, undefined4 param_2, undefined4 param_3, LPCSTR param_4) 193 7 +1000f99a FUN_1000f99a undefined FUN_1000f99a(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +1000f9b6 FUN_1000f9b6 int FUN_1000f9b6(undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5) 133 4 +1000fa3b FUN_1000fa3b undefined4 FUN_1000fa3b(void * this, int param_1, int param_2, int * param_3, int * param_4) 199 5 +1000fb02 FUN_1000fb02 undefined4 FUN_1000fb02(void * this, int param_1, int param_2, int * param_3, int * param_4) 111 4 +1000fb71 FUN_1000fb71 undefined1 FUN_1000fb71(void) 271 8 CoCreateInstance +1000fc80 FUN_1000fc80 undefined4 FUN_1000fc80(_func_basic_ostream_>_ptr_basic_ostream_>_ptr * param_1, int param_2, int param_3) 306 4 +1000fdb2 FUN_1000fdb2 int FUN_1000fdb2(void * this, uint * param_1) 70 3 +1000fdf8 FUN_1000fdf8 undefined FUN_1000fdf8(void * this, int * param_1, int * param_2) 70 2 +1000fe3e FUN_1000fe3e undefined FUN_1000fe3e(int * param_1) 55 2 +1000fe75 FUN_1000fe75 undefined FUN_1000fe75(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 308 5 +1000ffa9 FUN_1000ffa9 int FUN_1000ffa9(void * this, undefined4 * param_1) 61 4 +1000ffe6 Catch@1000ffe6 undefined Catch@1000ffe6(void) 18 2 +1000fff9 FUN_1000fff9 undefined4 * FUN_1000fff9(void * this, undefined4 * param_1, undefined4 param_2) 112 4 +10010069 Catch@10010069 undefined Catch@10010069(void) 20 2 +1001007e FUN_1001007e undefined FUN_1001007e(_Container_base0 * param_1) 35 2 +100100a1 FUN_100100a1 undefined FUN_100100a1(void * this, char * param_1) 172 7 +1001014d Catch@1001014d undefined Catch@1001014d(void) 18 2 +10010160 FUN_10010160 void * FUN_10010160(void * param_1, undefined4 * param_2, void * param_3) 62 4 +1001019e FUN_1001019e undefined2 * FUN_1001019e(undefined2 * param_1, undefined4 * param_2, undefined4 * param_3) 100 4 +10010202 FUN_10010202 undefined FUN_10010202(void * this, undefined4 * param_1, int * param_2) 597 6 +10010457 FUN_10010457 undefined FUN_10010457(void * param_1) 58 4 +10010491 FUN_10010491 undefined FUN_10010491(int * param_1) 64 3 +100104d1 FUN_100104d1 undefined FUN_100104d1(void * this, undefined4 * param_1, int * param_2, char param_3) 182 4 +10010587 FUN_10010587 undefined FUN_10010587(void * this, int param_1) 97 1 +100105e8 FUN_100105e8 undefined4 * FUN_100105e8(void * this, undefined4 * param_1, undefined4 param_2) 112 4 +10010658 Catch@10010658 undefined Catch@10010658(void) 20 2 +1001066d thunk_FUN_1001007e undefined thunk_FUN_1001007e(_Container_base0 * param_1) 5 0 +10010672 FUN_10010672 undefined FUN_10010672(void * this, int param_1) 88 3 +100106ca FUN_100106ca undefined FUN_100106ca(void * this, int param_1) 53 2 +100106ff FUN_100106ff undefined FUN_100106ff(UINT_PTR param_1) 171 4 +100107aa FUN_100107aa undefined FUN_100107aa(void * param_1) 30 3 +100107c8 FUN_100107c8 undefined FUN_100107c8(void) 186 7 +10010882 FUN_10010882 int FUN_10010882(int param_1) 44 3 +100108ae FUN_100108ae undefined FUN_100108ae(int param_1) 39 1 +100108d5 FUN_100108d5 void * FUN_100108d5(void * this, int param_1) 65 4 +10010916 Catch@10010916 undefined Catch@10010916(void) 28 2 +10010933 FUN_10010933 undefined FUN_10010933(void * this, int param_1) 97 1 +10010994 FUN_10010994 void * FUN_10010994(void * param_1, void * param_2, char * param_3, int param_4) 55 3 +100109cb FUN_100109cb void * FUN_100109cb(void * param_1, int param_2, char * param_3, int param_4) 74 5 +10010a15 FUN_10010a15 undefined FUN_10010a15(void * this, undefined4 * param_1) 111 3 +10010a84 FUN_10010a84 undefined FUN_10010a84(void * this, wchar_t * param_1, rsize_t param_2) 155 6 SysAllocStringLen;SysFreeString;memcpy_s +10010b1f FUN_10010b1f undefined FUN_10010b1f(void) 557 17 SysAllocString;SysFreeString;memset +10010e32 FUN_10010e32 undefined FUN_10010e32(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +10010e85 FUN_10010e85 undefined FUN_10010e85(void) 768 20 +10011185 FUN_10011185 undefined4 * FUN_10011185(undefined4 * param_1) 152 8 +1001121d FUN_1001121d int FUN_1001121d(int * param_1, int param_2, BSTR param_3, void * param_4, int * param_5) 659 16 SysAllocString;SysFreeString +100114b0 FUN_100114b0 void * FUN_100114b0(void * this, int param_1) 65 4 +100114f1 Catch@100114f1 undefined Catch@100114f1(void) 28 2 +1001150e FUN_1001150e undefined FUN_1001150e(void * this, undefined4 param_1, int * param_2, undefined1 * param_3) 1164 35 SysAllocString;SysFreeString;memset +1001199a FUN_1001199a undefined FUN_1001199a(void * param_1) 58 4 +10011abd FUN_10011abd undefined FUN_10011abd(void * param_1) 30 3 +10011adb FUN_10011adb int FUN_10011adb(int param_1) 44 3 +10011b07 FUN_10011b07 undefined4 * FUN_10011b07(undefined4 * param_1) 76 4 +10011b53 FUN_10011b53 undefined FUN_10011b53(void * param_1) 30 3 +10011b71 FUN_10011b71 int FUN_10011b71(int param_1, int param_2, OLECHAR * param_3, int * param_4) 750 18 +10011e5f Catch@10011e5f undefined * Catch@10011e5f(void) 99 4 +10011ec4 Catch@10011ec4 undefined * Catch@10011ec4(void) 19 0 +10011edc Catch@10011edc undefined * Catch@10011edc(void) 119 6 +10011f58 Catch@10011f58 undefined4 Catch@10011f58(void) 70 3 +10011f9e FUN_10011f9e undefined FUN_10011f9e(int * param_1, int * param_2, OLECHAR * param_3, undefined4 param_4, int * param_5) 872 20 CoCreateInstance +10012306 Catch@10012306 undefined * Catch@10012306(void) 100 4 +1001236d FUN_1001236d undefined FUN_1001236d(void) 8 1 +10012375 Catch@10012375 undefined * Catch@10012375(void) 19 0 +1001238a Catch@1001238a undefined * Catch@1001238a(void) 120 6 +10012407 Catch@10012407 undefined * Catch@10012407(void) 70 3 +1001244d FUN_1001244d undefined FUN_1001244d(int param_1, int param_2, int param_3) 257 10 +1001254e Catch@1001254e undefined * Catch@1001254e(void) 99 4 +100125b4 FUN_100125b4 undefined FUN_100125b4(void) 8 1 +100125bc Catch@100125bc undefined * Catch@100125bc(void) 19 0 +100125d1 Catch@100125d1 undefined * Catch@100125d1(void) 119 6 +1001264d Catch@1001264d undefined * Catch@1001264d(void) 70 3 +10012693 FUN_10012693 undefined FUN_10012693(int param_1, int param_2, int param_3) 373 10 +10012808 Catch@10012808 undefined * Catch@10012808(void) 99 4 +1001286e FUN_1001286e undefined FUN_1001286e(void) 8 1 +10012876 Catch@10012876 undefined * Catch@10012876(void) 19 0 +1001288b Catch@1001288b undefined * Catch@1001288b(void) 119 6 +10012907 Catch@10012907 undefined * Catch@10012907(void) 70 3 +1001294d FUN_1001294d undefined FUN_1001294d(int param_1, LPCRITICAL_SECTION param_2, int param_3) 376 13 +10012ac5 Catch@10012ac5 undefined * Catch@10012ac5(void) 100 4 +10012b2c FUN_10012b2c undefined FUN_10012b2c(void) 8 1 +10012b34 Catch@10012b34 undefined * Catch@10012b34(void) 19 0 +10012b49 Catch@10012b49 undefined * Catch@10012b49(void) 120 6 +10012bc6 Catch@10012bc6 undefined * Catch@10012bc6(void) 70 3 +10012c0c FUN_10012c0c undefined FUN_10012c0c(int param_1, undefined4 * param_2, long param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined1 * param_8) 467 11 +10012ddf Catch@10012ddf undefined * Catch@10012ddf(void) 99 4 +10012e45 FUN_10012e45 undefined FUN_10012e45(void) 8 1 +10012e4d Catch@10012e4d undefined * Catch@10012e4d(void) 19 0 +10012e62 Catch@10012e62 undefined * Catch@10012e62(void) 119 6 +10012ede Catch@10012ede undefined * Catch@10012ede(void) 70 3 +10012f24 FUN_10012f24 undefined FUN_10012f24(int param_1, uint param_2, _func_basic_ostream_>_ptr_basic_ostream_>_ptr * param_3, int param_4, undefined1 * param_5, undefined4 param_6, undefined4 param_7) 535 11 +1001313b Catch@1001313b undefined * Catch@1001313b(void) 99 4 +100131a1 FUN_100131a1 undefined FUN_100131a1(void) 8 1 +100131a9 Catch@100131a9 undefined * Catch@100131a9(void) 19 0 +100131be Catch@100131be undefined * Catch@100131be(void) 119 6 +1001323a Catch@1001323a undefined * Catch@1001323a(void) 70 3 +10013280 FUN_10013280 undefined FUN_10013280(int param_1, undefined4 * param_2, long param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8, undefined4 param_9, undefined4 param_10, undefined4 param_11, undefined1 * param_12) 569 12 +100134b9 Catch@100134b9 undefined * Catch@100134b9(void) 99 4 +1001351f FUN_1001351f undefined FUN_1001351f(void) 8 1 +10013527 Catch@10013527 undefined * Catch@10013527(void) 19 0 +1001353c Catch@1001353c undefined * Catch@1001353c(void) 119 6 +100135b8 Catch@100135b8 undefined * Catch@100135b8(void) 70 3 +100135fe FUN_100135fe undefined FUN_100135fe(int param_1, uint param_2, long param_3, int param_4, undefined1 * param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8, undefined4 param_9, uint param_10, ULONG param_11, undefined4 param_12, undefined4 param_13) 604 12 +1001385a Catch@1001385a undefined * Catch@1001385a(void) 99 4 +100138c0 FUN_100138c0 undefined FUN_100138c0(void) 8 1 +100138c8 Catch@100138c8 undefined * Catch@100138c8(void) 19 0 +100138dd Catch@100138dd undefined * Catch@100138dd(void) 119 6 +10013959 Catch@10013959 undefined * Catch@10013959(void) 70 3 +1001399f FUN_1001399f undefined FUN_1001399f(int param_1, int param_2, long param_3, undefined4 param_4, undefined4 * param_5) 696 12 SysFreeString +10013c57 Catch@10013c57 undefined * Catch@10013c57(void) 99 4 +10013cbd FUN_10013cbd undefined FUN_10013cbd(void) 8 1 +10013cc5 Catch@10013cc5 undefined * Catch@10013cc5(void) 19 0 +10013cda Catch@10013cda undefined * Catch@10013cda(void) 119 6 +10013d56 Catch@10013d56 undefined * Catch@10013d56(void) 70 3 +10013d9c FUN_10013d9c undefined FUN_10013d9c(int param_1, int param_2, int * param_3, undefined4 param_4) 327 11 +10013ee3 Catch@10013ee3 undefined * Catch@10013ee3(void) 99 4 +10013f49 FUN_10013f49 undefined FUN_10013f49(void) 8 1 +10013f51 Catch@10013f51 undefined * Catch@10013f51(void) 19 0 +10013f66 Catch@10013f66 undefined * Catch@10013f66(void) 119 6 +10013fe2 Catch@10013fe2 undefined * Catch@10013fe2(void) 70 3 +10014028 FUN_10014028 undefined FUN_10014028(int param_1, int param_2, int * param_3, undefined4 param_4) 327 11 +1001416f Catch@1001416f undefined * Catch@1001416f(void) 99 4 +100141d5 FUN_100141d5 undefined FUN_100141d5(void) 8 1 +100141dd Catch@100141dd undefined * Catch@100141dd(void) 19 0 +100141f2 Catch@100141f2 undefined * Catch@100141f2(void) 119 6 +1001426e Catch@1001426e undefined * Catch@1001426e(void) 70 3 +100142b4 FUN_100142b4 undefined FUN_100142b4(int param_1, int param_2, int param_3) 377 10 +1001442d Catch@1001442d undefined * Catch@1001442d(void) 99 4 +10014493 FUN_10014493 undefined FUN_10014493(void) 8 1 +1001449b Catch@1001449b undefined * Catch@1001449b(void) 19 0 +100144b0 Catch@100144b0 undefined * Catch@100144b0(void) 119 6 +1001452c Catch@1001452c undefined * Catch@1001452c(void) 70 3 +10014572 FUN_10014572 undefined FUN_10014572(int param_1, int param_2, OLECHAR * param_3, undefined4 * param_4) 530 14 SysAllocString;SysFreeString +10014784 Catch@10014784 undefined * Catch@10014784(void) 99 4 +100147ea FUN_100147ea undefined FUN_100147ea(void) 8 1 +100147f2 Catch@100147f2 undefined * Catch@100147f2(void) 19 0 +10014807 Catch@10014807 undefined * Catch@10014807(void) 119 6 +10014883 Catch@10014883 undefined * Catch@10014883(void) 70 3 +100148c9 FUN_100148c9 CComBSTR * FUN_100148c9(void * this, CComBSTR * param_1) 224 6 +100149a9 FUN_100149a9 undefined4 * FUN_100149a9(undefined4 * param_1) 166 4 +10014a4f FUN_10014a4f undefined FUN_10014a4f(undefined4 * param_1) 267 6 SysFreeString +10014b5a FUN_10014b5a undefined FUN_10014b5a(int param_1) 33 3 +10014b7b FUN_10014b7b undefined4 * FUN_10014b7b(void * this, undefined4 * param_1, CComBSTR * param_2) 49 3 +10014bac FUN_10014bac undefined FUN_10014bac(int param_1) 33 3 +10014bcd FUN_10014bcd void * FUN_10014bcd(void * this, undefined4 * param_1) 46 3 +10014bfb FUN_10014bfb void * FUN_10014bfb(void * param_1, undefined4 * param_2, CComBSTR * param_3) 50 3 +10014c2d FUN_10014c2d void * FUN_10014c2d(void * this, byte param_1) 52 4 +10014c61 FUN_10014c61 undefined1 * FUN_10014c61(void * param_1, undefined4 * param_2) 46 3 +10014c8f FUN_10014c8f undefined FUN_10014c8f(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +10014ca2 FUN_10014ca2 int FUN_10014ca2(void * this, undefined4 * param_1) 61 4 +10014cdf Catch@10014cdf undefined Catch@10014cdf(void) 18 2 +10014cf2 FUN_10014cf2 undefined FUN_10014cf2(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 308 5 +10014e26 FUN_10014e26 undefined FUN_10014e26(void * this, undefined4 * param_1, int * param_2) 597 6 +1001507b FUN_1001507b undefined FUN_1001507b(int * param_1) 64 3 +100150bb FUN_100150bb undefined FUN_100150bb(void * this, undefined4 * param_1, int * param_2, char param_3) 182 4 +10015171 FUN_10015171 undefined FUN_10015171(int param_1, int * param_2) 297 14 +1001529a Catch@1001529a undefined * Catch@1001529a(void) 99 4 +10015300 FUN_10015300 undefined FUN_10015300(void) 8 1 +10015308 Catch@10015308 undefined * Catch@10015308(void) 19 0 +1001531d Catch@1001531d undefined * Catch@1001531d(void) 119 6 +10015399 Catch@10015399 undefined * Catch@10015399(void) 70 3 +100153df FUN_100153df undefined FUN_100153df(int param_1) 39 1 +10015406 FUN_10015406 undefined FUN_10015406(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +10015459 FUN_10015459 undefined FUN_10015459(void * param_1) 58 4 +10015493 FUN_10015493 int FUN_10015493(void * this, int * param_1) 70 3 +100154d9 FUN_100154d9 undefined FUN_100154d9(void * param_1) 30 3 +100154f7 FUN_100154f7 undefined FUN_100154f7(int param_1) 120 7 +1001556f FUN_1001556f undefined FUN_1001556f(int * param_1, OLECHAR * param_2, int * param_3) 1383 31 CoCreateInstance;SysAllocString;SysFreeString +10015ad6 Catch@10015ad6 undefined * Catch@10015ad6(void) 99 4 +10015b3c FUN_10015b3c undefined FUN_10015b3c(void) 8 1 +10015b44 Catch@10015b44 undefined * Catch@10015b44(void) 19 0 +10015b59 Catch@10015b59 undefined * Catch@10015b59(void) 119 6 +10015bd5 Catch@10015bd5 undefined * Catch@10015bd5(void) 70 3 +10015c1b FUN_10015c1b int FUN_10015c1b(int param_1) 44 3 +10015c47 FUN_10015c47 int FUN_10015c47(int param_1) 165 6 +10015cec FUN_10015cec undefined FUN_10015cec(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5) 28 0 +10015d08 FUN_10015d08 VARIANTARG * FUN_10015d08(void * this, undefined4 param_1) 48 2 VariantClear +10015d38 FUN_10015d38 undefined4 * FUN_10015d38(void * this, int * param_1) 46 2 +10015d66 FUN_10015d66 VARIANTARG * FUN_10015d66(void * this, byte param_1) 76 4 VariantClear +10015db2 FUN_10015db2 undefined4 * FUN_10015db2(void * this, int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6) 84 3 +10015e06 FUN_10015e06 undefined4 * FUN_10015e06(void * this, int * param_1, undefined4 param_2) 72 3 +10015e4e FUN_10015e4e undefined4 * FUN_10015e4e(void * this, int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6) 88 3 +10015ea6 FUN_10015ea6 undefined FUN_10015ea6(void * this, uint param_1) 42 1 +10015ed0 FUN_10015ed0 undefined4 * FUN_10015ed0(void * param_1, undefined4 * param_2) 46 3 +10015efe FUN_10015efe undefined FUN_10015efe(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +10015f11 FUN_10015f11 undefined4 * FUN_10015f11(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +10015f5f Catch@10015f5f undefined Catch@10015f5f(void) 18 2 +10015f72 FUN_10015f72 undefined FUN_10015f72(void * this, undefined4 param_1, long param_2, long param_3) 429 11 +1001611f FUN_1001611f undefined FUN_1001611f(void * this, undefined4 param_1, long param_2, undefined4 param_3) 338 10 +10016271 FUN_10016271 undefined FUN_10016271(void * this, undefined4 param_1, long param_2, undefined4 param_3) 335 10 +100163c0 FUN_100163c0 undefined FUN_100163c0(void * this, undefined4 param_1, long param_2, undefined4 param_3) 397 11 +1001654d FUN_1001654d undefined FUN_1001654d(void * this, int param_1, undefined4 * param_2) 50 2 +1001657f FUN_1001657f undefined FUN_1001657f(uint param_1, undefined4 param_2) 1361 34 SafeArrayDestroy;SysFreeString;VariantClear;VariantInit +10016992 Catch@10016992 undefined4 Catch@10016992(_func_basic_ostream_>_ptr_basic_ostream_>_ptr * param_1) 64 3 +10016b10 Catch@10016b10 undefined4 Catch@10016b10(_func_basic_ostream_>_ptr_basic_ostream_>_ptr * param_1) 64 3 +10016b50 FUN_10016b50 HRESULT FUN_10016b50(uint param_1, undefined4 param_2, undefined4 * param_3) 387 19 +10016cd3 Catch@10016cd3 undefined * Catch@10016cd3(_func_basic_ostream_>_ptr_basic_ostream_>_ptr * param_1) 68 3 +10016d1a FUN_10016d1a undefined FUN_10016d1a(void) 49 4 SafeArrayDestroy +10016d4b FUN_10016d4b HRESULT FUN_10016d4b(int * param_1, undefined4 param_2, undefined4 * param_3) 371 19 +10016ebe Catch@10016ebe undefined * Catch@10016ebe(_func_basic_ostream_>_ptr_basic_ostream_>_ptr * param_1) 68 3 +10016f05 FUN_10016f05 undefined FUN_10016f05(void) 10 1 +10016f0f FUN_10016f0f undefined FUN_10016f0f(undefined4 * param_1) 31 1 +10016f2e FUN_10016f2e int FUN_10016f2e(int param_1) 37 1 memset +10016f53 FUN_10016f53 undefined FUN_10016f53(int param_1) 24 2 +10016f6b FUN_10016f6b undefined4 * FUN_10016f6b(undefined4 * param_1) 64 2 +10016fab FUN_10016fab undefined FUN_10016fab(int * param_1) 68 1 +10016fef FUN_10016fef int FUN_10016fef(int param_1) 25 1 memset +10017008 FUN_10017008 undefined4 * FUN_10017008(undefined4 * param_1) 65 2 +1001704a VarBstrCmp HRESULT VarBstrCmp(BSTR bstrLeft, BSTR bstrRight, LCID lcid, ULONG dwFlags) 6 0 +10017050 VarBstrCat HRESULT VarBstrCat(BSTR bstrLeft, BSTR bstrRight, LPBSTR pbstrResult) 6 0 +10017056 _Lock void _Lock(basic_streambuf_> * this) 6 0 +1001705c _Unlock void _Unlock(basic_streambuf_> * this) 6 0 +10017062 showmanyc __int64 showmanyc(basic_streambuf_> * this) 6 0 +10017068 uflow ushort uflow(basic_streambuf_> * this) 6 0 +1001706e xsgetn __int64 xsgetn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10017074 xsputn __int64 xsputn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +1001707a setbuf basic_streambuf_> * setbuf(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10017080 sync int sync(basic_streambuf_> * this) 6 0 +10017086 imbue void imbue(basic_streambuf_> * this, locale * param_1) 6 0 +1001708c pbackfail ushort pbackfail(basic_streambuf_> * this, ushort param_1) 6 0 +10017092 underflow ushort underflow(basic_streambuf_> * this) 6 0 +10017098 seekoff fpos seekoff(basic_streambuf_> * this, __int64 param_1, int param_2, int param_3) 6 0 +1001709e seekpos fpos seekpos(basic_streambuf_> * this, fpos param_1, int param_2) 6 0 +100170a4 FUN_100170a4 undefined FUN_100170a4(uint param_1) 11 1 +100170b0 _com_issue_error void _com_issue_error(long param_1) 21 1 +100170d0 _com_issue_errorex void _com_issue_errorex(long param_1, IUnknown * param_2, _GUID * param_3) 117 2 +10017150 ConvertStringToBSTR undefined ConvertStringToBSTR(LPCSTR param_1) 352 9 SysAllocString +100172d0 FUN_100172d0 undefined FUN_100172d0(undefined4 param_1, undefined4 param_2) 48 1 +10017308 operator_delete void operator_delete(void * param_1) 6 0 +1001730e _CxxThrowException void _CxxThrowException(void * pExceptionObject, ThrowInfo * pThrowInfo) 6 0 +10017314 FID_conflict:`vector_deleting_destructor' type_info * FID_conflict:`vector_deleting_destructor'(void * this, byte param_1) 76 3 +10017360 memcpy void * memcpy(void * _Dst, void * _Src, size_t _Size) 6 0 +10017366 free void free(void * _Memory) 6 0 +1001736c memset void * memset(void * _Dst, int _Val, size_t _Size) 6 0 +10017372 __CxxFrameHandler3 undefined __CxxFrameHandler3(void) 6 0 +10017378 __security_check_cookie undefined __security_check_cookie(int param_1) 15 1 +10017387 __EH_prolog3 undefined __EH_prolog3(int param_1) 51 0 +100173ba __EH_prolog3_catch undefined __EH_prolog3_catch(int param_1) 54 0 +100173f0 __EH_prolog3_GS undefined __EH_prolog3_GS(int param_1) 54 0 +10017426 __EH_prolog3_catch_GS undefined __EH_prolog3_catch_GS(int param_1) 57 0 +1001745f __EH_epilog3 undefined __EH_epilog3(void) 20 0 +10017473 FUN_10017473 undefined FUN_10017473(void) 15 2 +10017482 FUN_10017482 undefined FUN_10017482(void) 15 2 +10017492 what char * what(exception * this) 6 0 +10017498 operator_new void * operator_new(uint param_1) 6 0 +1001749e operator_delete[] void operator_delete[](void * param_1) 6 0 +100174aa __ArrayUnwind void __ArrayUnwind(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 50 2 +10017508 `eh_vector_destructor_iterator' void `eh_vector_destructor_iterator'(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 75 3 +10017553 FUN_10017553 undefined FUN_10017553(void) 24 1 +10017570 __alloca_probe undefined __alloca_probe(void) 43 0 +1001759b __onexit _onexit_t __onexit(_onexit_t param_1) 152 8 +10017633 FUN_10017633 undefined FUN_10017633(void) 9 1 +1001763c _atexit int _atexit(_func_4879 * param_1) 23 1 +10017654 memcmp int memcmp(void * _Buf1, void * _Buf2, size_t _Size) 6 0 +10017660 __alloca_probe_16 uint __alloca_probe_16(void) 22 1 +10017676 __alloca_probe_8 uint __alloca_probe_8(void) 22 1 +1001768c malloc void * malloc(size_t _Size) 6 0 +100176a0 __SEH_prolog4_GS undefined __SEH_prolog4_GS(undefined4 param_1, int param_2) 72 0 +100176e8 FUN_100176e8 undefined FUN_100176e8(void) 15 2 +100176f7 FUN_100176f7 undefined FUN_100176f7(undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 37 1 +1001771c `eh_vector_constructor_iterator' void `eh_vector_constructor_iterator'(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4, _func_void_void_ptr * param_5) 77 3 +10017769 FUN_10017769 undefined FUN_10017769(void) 24 1 +10017782 purecall undefined purecall(void) 6 0 +100177d6 __CRT_INIT@12 undefined4 __CRT_INIT@12(int * param_1, int * param_2, int * param_3) 522 10 +100179e0 ___DllMainCRTStartup int ___DllMainCRTStartup(int * param_1, int * param_2, HMODULE param_3) 240 5 +10017aeb FUN_10017aeb undefined FUN_10017aeb(void) 11 0 +10017af6 entry undefined entry(HMODULE param_1, int * param_2, int * param_3) 35 2 +10017b19 ___report_gsfailure void ___report_gsfailure(void) 262 6 +10017c30 __SEH_prolog4 undefined __SEH_prolog4(undefined4 param_1, int param_2) 69 0 +10017c75 __SEH_epilog4 undefined __SEH_epilog4(void) 20 0 +10017c8a _unlock void _unlock(int _File) 6 0 +10017c90 __dllonexit undefined __dllonexit(void) 6 0 +10017c96 _lock void _lock(int _File) 6 0 +10017c9c except_handler4_common undefined except_handler4_common(void) 6 0 +10017d00 __ValidateImageBase BOOL __ValidateImageBase(PBYTE pImageBase) 53 0 +10017d40 __FindPESection PIMAGE_SECTION_HEADER __FindPESection(PBYTE pImageBase, DWORD_PTR rva) 68 0 +10017d90 __IsNonwritableInCurrentImage BOOL __IsNonwritableInCurrentImage(PBYTE pTarget) 166 2 +10017e4c initterm undefined initterm(void) 6 0 +10017e52 initterm_e undefined initterm_e(void) 6 0 +10017e58 _amsg_exit void _amsg_exit(int param_1) 6 0 +10017e64 ___security_init_cookie void ___security_init_cookie(void) 155 5 +10017f00 _type_info_dtor_internal_method void _type_info_dtor_internal_method(type_info * this) 6 0 +10017f06 _crt_debugger_hook void _crt_debugger_hook(int param_1) 6 0 +10017f20 Unwind@10017f20 undefined Unwind@10017f20(void) 9 0 +10017f44 Unwind@10017f44 undefined Unwind@10017f44(void) 8 1 +10017f67 Unwind@10017f67 undefined Unwind@10017f67(void) 8 1 +10017f8a Unwind@10017f8a undefined Unwind@10017f8a(void) 10 1 +10017faf Unwind@10017faf undefined Unwind@10017faf(void) 8 1 +10017fed Unwind@10017fed undefined Unwind@10017fed(void) 8 1 +10018010 Unwind@10018010 undefined Unwind@10018010(void) 8 1 +10018033 Unwind@10018033 undefined Unwind@10018033(void) 8 1 +10018056 Unwind@10018056 undefined Unwind@10018056(void) 14 0 +1001807f Unwind@1001807f undefined Unwind@1001807f(void) 12 0 +1001808b Unwind@1001808b undefined Unwind@1001808b(void) 11 1 +100180b1 Unwind@100180b1 undefined Unwind@100180b1(void) 9 0 +100180ba Unwind@100180ba undefined Unwind@100180ba(void) 11 1 +100180e0 Unwind@100180e0 undefined Unwind@100180e0(void) 9 0 +10018104 Unwind@10018104 undefined Unwind@10018104(void) 9 0 +1001810d Unwind@1001810d undefined Unwind@1001810d(void) 11 1 +10018133 Unwind@10018133 undefined Unwind@10018133(void) 10 1 +1001813d Unwind@1001813d undefined Unwind@1001813d(void) 10 1 +10018147 Unwind@10018147 undefined Unwind@10018147(void) 10 1 +1001816c Unwind@1001816c undefined Unwind@1001816c(void) 29 0 +10018189 Unwind@10018189 undefined Unwind@10018189(void) 12 0 +10018195 Unwind@10018195 undefined Unwind@10018195(void) 11 1 +100181bb Unwind@100181bb undefined Unwind@100181bb(void) 8 1 +100181c3 Unwind@100181c3 undefined Unwind@100181c3(void) 8 1 +100181e6 Unwind@100181e6 undefined Unwind@100181e6(void) 8 1 +10018209 Unwind@10018209 undefined Unwind@10018209(void) 25 1 +1001823d Unwind@1001823d undefined Unwind@1001823d(void) 8 1 +10018245 Unwind@10018245 undefined Unwind@10018245(void) 11 1 +1001826b Unwind@1001826b undefined Unwind@1001826b(void) 8 1 +10018273 Unwind@10018273 undefined Unwind@10018273(void) 25 1 +1001828c Unwind@1001828c undefined Unwind@1001828c(void) 8 1 +10018294 Unwind@10018294 undefined Unwind@10018294(void) 8 1 +1001829c Unwind@1001829c undefined Unwind@1001829c(void) 8 1 +100182a4 Unwind@100182a4 undefined Unwind@100182a4(void) 8 1 +100182ac Unwind@100182ac undefined Unwind@100182ac(void) 8 1 +100182b4 Unwind@100182b4 undefined Unwind@100182b4(void) 8 1 +100182bc Unwind@100182bc undefined Unwind@100182bc(void) 8 1 +100182c4 Unwind@100182c4 undefined Unwind@100182c4(void) 8 1 +100182cc Unwind@100182cc undefined Unwind@100182cc(void) 8 1 +100182d4 Unwind@100182d4 undefined Unwind@100182d4(void) 8 1 +100182dc Unwind@100182dc undefined Unwind@100182dc(void) 8 1 +100182e4 Unwind@100182e4 undefined Unwind@100182e4(void) 8 1 +100182ec Unwind@100182ec undefined Unwind@100182ec(void) 8 1 +100182f4 Unwind@100182f4 undefined Unwind@100182f4(void) 8 1 +100182fc Unwind@100182fc undefined Unwind@100182fc(void) 8 1 +10018304 Unwind@10018304 undefined Unwind@10018304(void) 8 1 +1001830c Unwind@1001830c undefined Unwind@1001830c(void) 8 1 +10018314 Unwind@10018314 undefined Unwind@10018314(void) 8 1 +1001831c Unwind@1001831c undefined Unwind@1001831c(void) 8 1 +10018324 Unwind@10018324 undefined Unwind@10018324(void) 8 1 +1001832c Unwind@1001832c undefined Unwind@1001832c(void) 8 1 +10018334 Unwind@10018334 undefined Unwind@10018334(void) 8 1 +1001833c Unwind@1001833c undefined Unwind@1001833c(void) 8 1 +10018344 Unwind@10018344 undefined Unwind@10018344(void) 8 1 +1001834c Unwind@1001834c undefined Unwind@1001834c(void) 8 1 +10018354 Unwind@10018354 undefined Unwind@10018354(void) 8 1 +1001835c Unwind@1001835c undefined Unwind@1001835c(void) 8 1 +10018364 Unwind@10018364 undefined Unwind@10018364(void) 8 1 +1001836c Unwind@1001836c undefined Unwind@1001836c(void) 8 1 +10018374 Unwind@10018374 undefined Unwind@10018374(void) 8 1 +1001837c Unwind@1001837c undefined Unwind@1001837c(void) 8 1 +10018384 Unwind@10018384 undefined Unwind@10018384(void) 8 1 +1001838c Unwind@1001838c undefined Unwind@1001838c(void) 8 1 +10018394 Unwind@10018394 undefined Unwind@10018394(void) 8 1 +1001839c Unwind@1001839c undefined Unwind@1001839c(void) 8 1 +100183a4 Unwind@100183a4 undefined Unwind@100183a4(void) 8 1 +100183ac Unwind@100183ac undefined Unwind@100183ac(void) 8 1 +100183b4 Unwind@100183b4 undefined Unwind@100183b4(void) 8 1 +100183bc Unwind@100183bc undefined Unwind@100183bc(void) 8 1 +100183c4 Unwind@100183c4 undefined Unwind@100183c4(void) 8 1 +100183cc Unwind@100183cc undefined Unwind@100183cc(void) 8 1 +100183d4 Unwind@100183d4 undefined Unwind@100183d4(void) 8 1 +100183dc Unwind@100183dc undefined Unwind@100183dc(void) 8 1 +100183e4 Unwind@100183e4 undefined Unwind@100183e4(void) 8 1 +100183ec Unwind@100183ec undefined Unwind@100183ec(void) 8 1 +100183f4 Unwind@100183f4 undefined Unwind@100183f4(void) 8 1 +100183fc Unwind@100183fc undefined Unwind@100183fc(void) 8 1 +10018404 Unwind@10018404 undefined Unwind@10018404(void) 8 1 +1001840c Unwind@1001840c undefined Unwind@1001840c(void) 8 1 +10018414 Unwind@10018414 undefined Unwind@10018414(void) 8 1 +1001841c Unwind@1001841c undefined Unwind@1001841c(void) 8 1 +10018424 Unwind@10018424 undefined Unwind@10018424(void) 8 1 +1001842c Unwind@1001842c undefined Unwind@1001842c(void) 8 1 +10018434 Unwind@10018434 undefined Unwind@10018434(void) 8 1 +1001843c Unwind@1001843c undefined Unwind@1001843c(void) 8 1 +10018444 Unwind@10018444 undefined Unwind@10018444(void) 8 1 +1001844c Unwind@1001844c undefined Unwind@1001844c(void) 8 1 +10018479 Unwind@10018479 undefined Unwind@10018479(void) 25 1 +10018492 Unwind@10018492 undefined Unwind@10018492(void) 8 1 +1001849a Unwind@1001849a undefined Unwind@1001849a(void) 8 1 +100184a2 Unwind@100184a2 undefined Unwind@100184a2(void) 8 1 +100184c5 Unwind@100184c5 undefined Unwind@100184c5(void) 8 1 +100184cd Unwind@100184cd undefined Unwind@100184cd(void) 25 1 +100184e6 Unwind@100184e6 undefined Unwind@100184e6(void) 8 1 +100184ee Unwind@100184ee undefined Unwind@100184ee(void) 8 1 +1001851b Unwind@1001851b undefined Unwind@1001851b(void) 25 1 +1001854f Unwind@1001854f undefined Unwind@1001854f(void) 11 1 +1001855a Unwind@1001855a undefined Unwind@1001855a(void) 11 1 +10018565 Unwind@10018565 undefined Unwind@10018565(void) 11 1 +10018570 Unwind@10018570 undefined Unwind@10018570(void) 11 1 +1001857b Unwind@1001857b undefined Unwind@1001857b(void) 11 1 +10018586 Unwind@10018586 undefined Unwind@10018586(void) 11 1 +10018591 Unwind@10018591 undefined Unwind@10018591(void) 11 1 +1001859c Unwind@1001859c undefined Unwind@1001859c(void) 11 1 +100185a7 Unwind@100185a7 undefined Unwind@100185a7(void) 34 1 +100185f1 Unwind@100185f1 undefined Unwind@100185f1(void) 8 1 +100185f9 Unwind@100185f9 undefined Unwind@100185f9(void) 8 1 +10018601 Unwind@10018601 undefined Unwind@10018601(void) 25 1 +1001861a Unwind@1001861a undefined Unwind@1001861a(void) 8 1 +10018622 Unwind@10018622 undefined Unwind@10018622(void) 8 1 +10018645 Unwind@10018645 undefined Unwind@10018645(void) 8 1 +1001864d Unwind@1001864d undefined Unwind@1001864d(void) 25 1 +10018666 Unwind@10018666 undefined Unwind@10018666(void) 8 1 +1001866e Unwind@1001866e undefined Unwind@1001866e(void) 8 1 +10018691 Unwind@10018691 undefined Unwind@10018691(void) 8 1 +10018699 Unwind@10018699 undefined Unwind@10018699(void) 25 1 +100186b2 Unwind@100186b2 undefined Unwind@100186b2(void) 11 1 +100186bd Unwind@100186bd undefined Unwind@100186bd(void) 11 1 +100186c8 Unwind@100186c8 undefined Unwind@100186c8(void) 11 1 +100186d3 Unwind@100186d3 undefined Unwind@100186d3(void) 11 1 +100186de Unwind@100186de undefined Unwind@100186de(void) 11 1 +100186e9 Unwind@100186e9 undefined Unwind@100186e9(void) 8 1 +100186f1 Unwind@100186f1 undefined Unwind@100186f1(void) 11 1 +100186fc Unwind@100186fc undefined Unwind@100186fc(void) 8 1 +10018704 Unwind@10018704 undefined Unwind@10018704(void) 11 1 +10018737 Unwind@10018737 undefined Unwind@10018737(void) 8 1 +1001873f Unwind@1001873f undefined Unwind@1001873f(void) 8 1 +10018762 Unwind@10018762 undefined Unwind@10018762(void) 8 1 +1001876a Unwind@1001876a undefined Unwind@1001876a(void) 8 1 +10018772 Unwind@10018772 undefined Unwind@10018772(void) 8 1 +1001877a Unwind@1001877a undefined Unwind@1001877a(void) 8 1 +10018782 Unwind@10018782 undefined Unwind@10018782(void) 8 1 +1001878a Unwind@1001878a undefined Unwind@1001878a(void) 8 1 +10018792 Unwind@10018792 undefined Unwind@10018792(void) 8 1 +1001879a Unwind@1001879a undefined Unwind@1001879a(void) 8 1 +100187a2 Unwind@100187a2 undefined Unwind@100187a2(void) 8 1 +100187aa Unwind@100187aa undefined Unwind@100187aa(void) 8 1 +100187b2 Unwind@100187b2 undefined Unwind@100187b2(void) 8 1 +100187ba Unwind@100187ba undefined Unwind@100187ba(void) 8 1 +100187ea Unwind@100187ea undefined Unwind@100187ea(void) 14 0 +10018813 Unwind@10018813 undefined Unwind@10018813(void) 8 1 +10018836 Unwind@10018836 undefined Unwind@10018836(void) 14 0 +1001887a Unwind@1001887a undefined Unwind@1001887a(void) 8 1 +100188b8 Unwind@100188b8 undefined Unwind@100188b8(void) 11 1 +100188de Unwind@100188de undefined Unwind@100188de(void) 8 1 +10018901 Unwind@10018901 undefined Unwind@10018901(void) 11 1 +10018934 Unwind@10018934 undefined Unwind@10018934(void) 11 1 +1001893f Unwind@1001893f undefined Unwind@1001893f(void) 8 1 +10018962 Unwind@10018962 undefined Unwind@10018962(void) 11 1 +10018995 Unwind@10018995 undefined Unwind@10018995(void) 10 1 +1001899f Unwind@1001899f undefined Unwind@1001899f(void) 8 1 +100189c2 Unwind@100189c2 undefined Unwind@100189c2(void) 11 1 +100189e8 Unwind@100189e8 undefined Unwind@100189e8(void) 23 1 +100189ff Unwind@100189ff undefined Unwind@100189ff(void) 24 1 +10018a32 Unwind@10018a32 undefined Unwind@10018a32(void) 8 1 +10018a3a Unwind@10018a3a undefined Unwind@10018a3a(void) 8 1 +10018a42 Unwind@10018a42 undefined Unwind@10018a42(void) 8 1 +10018a4a Unwind@10018a4a undefined Unwind@10018a4a(void) 8 1 +10018a52 Unwind@10018a52 undefined Unwind@10018a52(void) 8 1 +10018a5a Unwind@10018a5a undefined Unwind@10018a5a(void) 8 1 +10018a7d Unwind@10018a7d undefined Unwind@10018a7d(void) 10 1 +10018aa2 Unwind@10018aa2 undefined Unwind@10018aa2(void) 11 1 +10018aad Unwind@10018aad undefined Unwind@10018aad(void) 11 1 +10018ad3 Unwind@10018ad3 undefined Unwind@10018ad3(void) 8 1 +10018adb Unwind@10018adb undefined Unwind@10018adb(void) 8 1 +10018afe Unwind@10018afe undefined Unwind@10018afe(void) 11 1 +10018b09 Unwind@10018b09 undefined Unwind@10018b09(void) 8 1 +10018b2c Unwind@10018b2c undefined Unwind@10018b2c(void) 8 1 +10018b34 Unwind@10018b34 undefined Unwind@10018b34(void) 8 1 +10018b57 Unwind@10018b57 undefined Unwind@10018b57(void) 8 1 +10018b7a Unwind@10018b7a undefined Unwind@10018b7a(void) 11 1 +10018ba0 Unwind@10018ba0 undefined Unwind@10018ba0(void) 8 1 +10018bcd Unwind@10018bcd undefined Unwind@10018bcd(void) 8 1 +10018bf0 Unwind@10018bf0 undefined Unwind@10018bf0(void) 8 1 +10018bf8 Unwind@10018bf8 undefined Unwind@10018bf8(void) 11 1 +10018c39 Unwind@10018c39 undefined Unwind@10018c39(void) 11 1 +10018c44 Unwind@10018c44 undefined Unwind@10018c44(void) 11 1 +10018c4f Unwind@10018c4f undefined Unwind@10018c4f(void) 11 1 +10018c5a Unwind@10018c5a undefined Unwind@10018c5a(void) 11 1 +10018c65 Unwind@10018c65 undefined Unwind@10018c65(void) 11 1 +10018c70 Unwind@10018c70 undefined Unwind@10018c70(void) 11 1 +10018c7b Unwind@10018c7b undefined Unwind@10018c7b(void) 11 1 +10018c86 Unwind@10018c86 undefined Unwind@10018c86(void) 11 1 +10018c91 Unwind@10018c91 undefined Unwind@10018c91(void) 11 1 +10018c9c Unwind@10018c9c undefined Unwind@10018c9c(void) 11 1 +10018ccf Unwind@10018ccf undefined Unwind@10018ccf(void) 8 1 +10018cd7 Unwind@10018cd7 undefined Unwind@10018cd7(void) 8 1 +10018cdf Unwind@10018cdf undefined Unwind@10018cdf(void) 8 1 +10018ce7 Unwind@10018ce7 undefined Unwind@10018ce7(void) 8 1 +10018cef Unwind@10018cef undefined Unwind@10018cef(void) 8 1 +10018d12 Unwind@10018d12 undefined Unwind@10018d12(void) 11 1 +10018d1d Unwind@10018d1d undefined Unwind@10018d1d(void) 11 1 +10018d28 Unwind@10018d28 undefined Unwind@10018d28(void) 11 1 +10018d33 Unwind@10018d33 undefined Unwind@10018d33(void) 11 1 +10018d3e Unwind@10018d3e undefined Unwind@10018d3e(void) 11 1 +10018d49 Unwind@10018d49 undefined Unwind@10018d49(void) 11 1 +10018d7c Unwind@10018d7c undefined Unwind@10018d7c(void) 8 1 +10018d9f Unwind@10018d9f undefined Unwind@10018d9f(void) 8 1 +10018dc2 Unwind@10018dc2 undefined Unwind@10018dc2(void) 11 1 +10018dcd Unwind@10018dcd undefined Unwind@10018dcd(void) 11 1 +10018df3 Unwind@10018df3 undefined Unwind@10018df3(void) 8 1 +10018e16 Unwind@10018e16 undefined Unwind@10018e16(void) 8 1 +10018e39 Unwind@10018e39 undefined Unwind@10018e39(void) 8 1 +10018e41 Unwind@10018e41 undefined Unwind@10018e41(void) 8 1 +10018e7f Unwind@10018e7f undefined Unwind@10018e7f(void) 11 1 +10018e8a Unwind@10018e8a undefined Unwind@10018e8a(void) 11 1 +10018e95 Unwind@10018e95 undefined Unwind@10018e95(void) 11 1 +10018ec8 Unwind@10018ec8 undefined Unwind@10018ec8(void) 11 1 +10018ed3 Unwind@10018ed3 undefined Unwind@10018ed3(void) 11 1 +10018ede Unwind@10018ede undefined Unwind@10018ede(void) 11 1 +10018ee9 Unwind@10018ee9 undefined Unwind@10018ee9(void) 11 1 +10018ef4 Unwind@10018ef4 undefined Unwind@10018ef4(void) 11 1 +10018f27 Unwind@10018f27 undefined Unwind@10018f27(void) 8 1 +10018f4a Unwind@10018f4a undefined Unwind@10018f4a(void) 11 1 +10018f55 Unwind@10018f55 undefined Unwind@10018f55(void) 11 1 +10018f60 Unwind@10018f60 undefined Unwind@10018f60(void) 11 1 +10018f6b Unwind@10018f6b undefined Unwind@10018f6b(void) 11 1 +10018f76 Unwind@10018f76 undefined Unwind@10018f76(void) 11 1 +10018f81 Unwind@10018f81 undefined Unwind@10018f81(void) 11 1 +10018f8c Unwind@10018f8c undefined Unwind@10018f8c(void) 11 1 +10018f97 Unwind@10018f97 undefined Unwind@10018f97(void) 11 1 +10018fa2 Unwind@10018fa2 undefined Unwind@10018fa2(void) 11 1 +10018fad Unwind@10018fad undefined Unwind@10018fad(void) 11 1 +10018fb8 Unwind@10018fb8 undefined Unwind@10018fb8(void) 11 1 +10019009 Unwind@10019009 undefined Unwind@10019009(void) 10 1 +1001902e Unwind@1001902e undefined Unwind@1001902e(void) 8 1 +10019051 Unwind@10019051 undefined Unwind@10019051(void) 8 1 +10019059 Unwind@10019059 undefined Unwind@10019059(void) 8 1 +1001907c Unwind@1001907c undefined Unwind@1001907c(void) 8 1 +1001909f Unwind@1001909f undefined Unwind@1001909f(void) 8 1 +100190a7 Unwind@100190a7 undefined Unwind@100190a7(void) 8 1 +10019100 Unwind@10019100 undefined Unwind@10019100(void) 8 1 +1001912d Unwind@1001912d undefined Unwind@1001912d(void) 11 1 +10019138 Unwind@10019138 undefined Unwind@10019138(void) 11 1 +1001916b Unwind@1001916b undefined Unwind@1001916b(void) 8 1 +100191a9 Unwind@100191a9 undefined Unwind@100191a9(void) 8 1 +100191b1 Unwind@100191b1 undefined Unwind@100191b1(void) 25 1 +100191ca Unwind@100191ca undefined Unwind@100191ca(void) 8 1 +100191d2 Unwind@100191d2 undefined Unwind@100191d2(void) 25 1 +100191eb Unwind@100191eb undefined Unwind@100191eb(void) 8 1 +100191f3 Unwind@100191f3 undefined Unwind@100191f3(void) 8 1 +10019216 Unwind@10019216 undefined Unwind@10019216(void) 11 1 +10019221 Unwind@10019221 undefined Unwind@10019221(void) 11 1 +1001922c Unwind@1001922c undefined Unwind@1001922c(void) 11 1 +10019237 Unwind@10019237 undefined Unwind@10019237(void) 11 1 +1001926a Unwind@1001926a undefined Unwind@1001926a(void) 11 1 +10019275 Unwind@10019275 undefined Unwind@10019275(void) 11 1 +10019280 Unwind@10019280 undefined Unwind@10019280(void) 11 1 +1001928b Unwind@1001928b undefined Unwind@1001928b(void) 11 1 +100192be Unwind@100192be undefined Unwind@100192be(void) 29 0 +100192db Unwind@100192db undefined Unwind@100192db(void) 12 0 +100192e7 Unwind@100192e7 undefined Unwind@100192e7(void) 11 1 +1001930d Unwind@1001930d undefined Unwind@1001930d(void) 10 1 +10019317 Unwind@10019317 undefined Unwind@10019317(void) 10 1 +10019321 Unwind@10019321 undefined Unwind@10019321(void) 10 1 +1001932b Unwind@1001932b undefined Unwind@1001932b(void) 10 1 +10019335 Unwind@10019335 undefined Unwind@10019335(void) 10 1 +1001935a Unwind@1001935a undefined Unwind@1001935a(void) 12 0 +10019366 Unwind@10019366 undefined Unwind@10019366(void) 11 1 +1001938c Unwind@1001938c undefined Unwind@1001938c(void) 8 1 +10019394 Unwind@10019394 undefined Unwind@10019394(void) 8 1 +100193b7 Unwind@100193b7 undefined Unwind@100193b7(void) 10 1 +100193c1 Unwind@100193c1 undefined Unwind@100193c1(void) 10 1 +100193e6 Unwind@100193e6 undefined Unwind@100193e6(void) 10 1 +1001940b Unwind@1001940b undefined Unwind@1001940b(void) 11 1 +10019431 Unwind@10019431 undefined Unwind@10019431(void) 8 1 +10019454 Unwind@10019454 undefined Unwind@10019454(void) 8 1 +10019477 Unwind@10019477 undefined Unwind@10019477(void) 8 1 +1001947f Unwind@1001947f undefined Unwind@1001947f(void) 11 1 +1001948a Unwind@1001948a undefined Unwind@1001948a(void) 11 1 +10019495 Unwind@10019495 undefined Unwind@10019495(void) 8 1 +1001949d Unwind@1001949d undefined Unwind@1001949d(void) 8 1 +100194c0 Unwind@100194c0 undefined Unwind@100194c0(void) 8 1 +100194c8 Unwind@100194c8 undefined Unwind@100194c8(void) 8 1 +100194d0 Unwind@100194d0 undefined Unwind@100194d0(void) 8 1 +100194f3 Unwind@100194f3 undefined Unwind@100194f3(void) 8 1 +100194fb Unwind@100194fb undefined Unwind@100194fb(void) 8 1 +10019503 Unwind@10019503 undefined Unwind@10019503(void) 8 1 +10019526 Unwind@10019526 undefined Unwind@10019526(void) 11 1 +10019531 Unwind@10019531 undefined Unwind@10019531(void) 11 1 +1001953c Unwind@1001953c undefined Unwind@1001953c(void) 8 1 +10019544 Unwind@10019544 undefined Unwind@10019544(void) 8 1 +10019567 Unwind@10019567 undefined Unwind@10019567(void) 9 0 +1001958b Unwind@1001958b undefined Unwind@1001958b(void) 11 1 +100195b1 Unwind@100195b1 undefined Unwind@100195b1(void) 8 1 +100195d4 Unwind@100195d4 undefined Unwind@100195d4(void) 11 1 +100195df Unwind@100195df undefined Unwind@100195df(void) 11 1 +10019612 Unwind@10019612 undefined Unwind@10019612(void) 8 1 +1001961a Unwind@1001961a undefined Unwind@1001961a(void) 8 1 +10019622 Unwind@10019622 undefined Unwind@10019622(void) 11 1 +1001962d Unwind@1001962d undefined Unwind@1001962d(void) 8 1 +10019635 Unwind@10019635 undefined Unwind@10019635(void) 11 1 +1001965b Unwind@1001965b undefined Unwind@1001965b(void) 8 1 +10019663 Unwind@10019663 undefined Unwind@10019663(void) 11 1 +10019689 Unwind@10019689 undefined Unwind@10019689(void) 8 1 +10019691 Unwind@10019691 undefined Unwind@10019691(void) 8 1 +100196b4 Unwind@100196b4 undefined Unwind@100196b4(void) 11 1 +100196bf Unwind@100196bf undefined Unwind@100196bf(void) 11 1 +100196e5 Unwind@100196e5 undefined Unwind@100196e5(void) 8 1 +100196ed Unwind@100196ed undefined Unwind@100196ed(void) 8 1 +10019710 Unwind@10019710 undefined Unwind@10019710(void) 8 1 +10019718 Unwind@10019718 undefined Unwind@10019718(void) 11 1 +10019723 Unwind@10019723 undefined Unwind@10019723(void) 11 1 +10019749 Unwind@10019749 undefined Unwind@10019749(void) 8 1 +1001976c Unwind@1001976c undefined Unwind@1001976c(void) 11 1 +1001979f Unwind@1001979f undefined Unwind@1001979f(void) 8 1 +100197dd Unwind@100197dd undefined Unwind@100197dd(void) 10 1 +1001981d Unwind@1001981d undefined Unwind@1001981d(void) 8 1 +10019825 Unwind@10019825 undefined Unwind@10019825(void) 25 1 +10019859 Unwind@10019859 undefined Unwind@10019859(void) 11 1 +1001987f Unwind@1001987f undefined Unwind@1001987f(void) 8 1 +1001990e Unwind@1001990e undefined Unwind@1001990e(void) 8 1 +10019931 Unwind@10019931 undefined Unwind@10019931(void) 8 1 +10019939 Unwind@10019939 undefined Unwind@10019939(void) 8 1 +10019966 Unwind@10019966 undefined Unwind@10019966(void) 8 1 +1001996e Unwind@1001996e undefined Unwind@1001996e(void) 8 1 +10019991 Unwind@10019991 undefined Unwind@10019991(void) 8 1 +100199b4 Unwind@100199b4 undefined Unwind@100199b4(void) 25 1 +100199e8 Unwind@100199e8 undefined Unwind@100199e8(void) 8 1 +100199f0 Unwind@100199f0 undefined Unwind@100199f0(void) 25 1 +10019a24 Unwind@10019a24 undefined Unwind@10019a24(void) 11 1 +10019a2f Unwind@10019a2f undefined Unwind@10019a2f(void) 11 1 +10019a3a Unwind@10019a3a undefined Unwind@10019a3a(void) 11 1 +10019a45 Unwind@10019a45 undefined Unwind@10019a45(void) 11 1 +10019a50 Unwind@10019a50 undefined Unwind@10019a50(void) 11 1 +10019a5b Unwind@10019a5b undefined Unwind@10019a5b(void) 22 1 +10019a99 Unwind@10019a99 undefined Unwind@10019a99(void) 8 1 +10019aa1 Unwind@10019aa1 undefined Unwind@10019aa1(void) 8 1 +10019aa9 Unwind@10019aa9 undefined Unwind@10019aa9(void) 8 1 +10019ab1 Unwind@10019ab1 undefined Unwind@10019ab1(void) 8 1 +10019ab9 Unwind@10019ab9 undefined Unwind@10019ab9(void) 8 1 +10019ac1 Unwind@10019ac1 undefined Unwind@10019ac1(void) 8 1 +10019ac9 Unwind@10019ac9 undefined Unwind@10019ac9(void) 8 1 +10019aec Unwind@10019aec undefined Unwind@10019aec(void) 8 1 +10019af4 Unwind@10019af4 undefined Unwind@10019af4(void) 8 1 +10019afc Unwind@10019afc undefined Unwind@10019afc(void) 11 1 +10019b07 Unwind@10019b07 undefined Unwind@10019b07(void) 8 1 +10019b0f Unwind@10019b0f undefined Unwind@10019b0f(void) 8 1 +10019b17 Unwind@10019b17 undefined Unwind@10019b17(void) 8 1 +10019b1f Unwind@10019b1f undefined Unwind@10019b1f(void) 8 1 +10019b4f Unwind@10019b4f undefined Unwind@10019b4f(void) 8 1 +10019b72 Unwind@10019b72 undefined Unwind@10019b72(void) 8 1 +10019b95 Unwind@10019b95 undefined Unwind@10019b95(void) 11 1 +10019ba0 Unwind@10019ba0 undefined Unwind@10019ba0(void) 11 1 +10019bab Unwind@10019bab undefined Unwind@10019bab(void) 11 1 +10019bb6 Unwind@10019bb6 undefined Unwind@10019bb6(void) 11 1 +10019bc1 Unwind@10019bc1 undefined Unwind@10019bc1(void) 11 1 +10019bcc Unwind@10019bcc undefined Unwind@10019bcc(void) 11 1 +10019bd7 Unwind@10019bd7 undefined Unwind@10019bd7(void) 34 1 +10019bf9 Unwind@10019bf9 undefined Unwind@10019bf9(void) 34 1 +10019c43 Unwind@10019c43 undefined Unwind@10019c43(void) 8 1 +10019c4b Unwind@10019c4b undefined Unwind@10019c4b(void) 8 1 +10019c53 Unwind@10019c53 undefined Unwind@10019c53(void) 8 1 +10019c76 Unwind@10019c76 undefined Unwind@10019c76(void) 8 1 +10019c99 Unwind@10019c99 undefined Unwind@10019c99(void) 8 1 +10019ca1 Unwind@10019ca1 undefined Unwind@10019ca1(void) 8 1 +10019cc4 Unwind@10019cc4 undefined Unwind@10019cc4(void) 8 1 +10019ccc Unwind@10019ccc undefined Unwind@10019ccc(void) 8 1 +10019cd4 Unwind@10019cd4 undefined Unwind@10019cd4(void) 8 1 +10019cf7 Unwind@10019cf7 undefined Unwind@10019cf7(void) 8 1 +10019cff Unwind@10019cff undefined Unwind@10019cff(void) 8 1 +10019d22 Unwind@10019d22 undefined Unwind@10019d22(void) 8 1 +10019d2a Unwind@10019d2a undefined Unwind@10019d2a(void) 8 1 +10019d32 Unwind@10019d32 undefined Unwind@10019d32(void) 8 1 +10019d3a Unwind@10019d3a undefined Unwind@10019d3a(void) 8 1 +10019d42 Unwind@10019d42 undefined Unwind@10019d42(void) 8 1 +10019d4a Unwind@10019d4a undefined Unwind@10019d4a(void) 8 1 +10019d52 Unwind@10019d52 undefined Unwind@10019d52(void) 8 1 +10019d5a Unwind@10019d5a undefined Unwind@10019d5a(void) 8 1 +10019d62 Unwind@10019d62 undefined Unwind@10019d62(void) 8 1 +10019d85 Unwind@10019d85 undefined Unwind@10019d85(void) 8 1 +10019d8d Unwind@10019d8d undefined Unwind@10019d8d(void) 8 1 +10019d95 Unwind@10019d95 undefined Unwind@10019d95(void) 8 1 +10019d9d Unwind@10019d9d undefined Unwind@10019d9d(void) 8 1 +10019da5 Unwind@10019da5 undefined Unwind@10019da5(void) 8 1 +10019dad Unwind@10019dad undefined Unwind@10019dad(void) 8 1 +10019db5 Unwind@10019db5 undefined Unwind@10019db5(void) 8 1 +10019dbd Unwind@10019dbd undefined Unwind@10019dbd(void) 8 1 +10019dc5 Unwind@10019dc5 undefined Unwind@10019dc5(void) 8 1 +10019dcd Unwind@10019dcd undefined Unwind@10019dcd(void) 8 1 +10019dd5 Unwind@10019dd5 undefined Unwind@10019dd5(void) 8 1 +10019ddd Unwind@10019ddd undefined Unwind@10019ddd(void) 8 1 +10019de5 Unwind@10019de5 undefined Unwind@10019de5(void) 8 1 +10019ded Unwind@10019ded undefined Unwind@10019ded(void) 8 1 +10019df5 Unwind@10019df5 undefined Unwind@10019df5(void) 8 1 +10019e18 Unwind@10019e18 undefined Unwind@10019e18(void) 8 1 +10019e20 Unwind@10019e20 undefined Unwind@10019e20(void) 8 1 +10019e28 Unwind@10019e28 undefined Unwind@10019e28(void) 8 1 +10019e30 Unwind@10019e30 undefined Unwind@10019e30(void) 8 1 +10019e38 Unwind@10019e38 undefined Unwind@10019e38(void) 8 1 +10019e5b Unwind@10019e5b undefined Unwind@10019e5b(void) 8 1 +10019e63 Unwind@10019e63 undefined Unwind@10019e63(void) 8 1 +10019e6b Unwind@10019e6b undefined Unwind@10019e6b(void) 8 1 +10019e73 Unwind@10019e73 undefined Unwind@10019e73(void) 8 1 +10019e7b Unwind@10019e7b undefined Unwind@10019e7b(void) 8 1 +10019e9e Unwind@10019e9e undefined Unwind@10019e9e(void) 8 1 +10019ea6 Unwind@10019ea6 undefined Unwind@10019ea6(void) 8 1 +10019eae Unwind@10019eae undefined Unwind@10019eae(void) 8 1 +10019eb6 Unwind@10019eb6 undefined Unwind@10019eb6(void) 8 1 +10019ebe Unwind@10019ebe undefined Unwind@10019ebe(void) 8 1 +10019ec6 Unwind@10019ec6 undefined Unwind@10019ec6(void) 8 1 +10019ee9 Unwind@10019ee9 undefined Unwind@10019ee9(void) 8 1 +10019ef1 Unwind@10019ef1 undefined Unwind@10019ef1(void) 8 1 +10019ef9 Unwind@10019ef9 undefined Unwind@10019ef9(void) 8 1 +10019f01 Unwind@10019f01 undefined Unwind@10019f01(void) 8 1 +10019f09 Unwind@10019f09 undefined Unwind@10019f09(void) 8 1 +10019f11 Unwind@10019f11 undefined Unwind@10019f11(void) 8 1 +10019f3e Unwind@10019f3e undefined Unwind@10019f3e(void) 8 1 +10019f46 Unwind@10019f46 undefined Unwind@10019f46(void) 8 1 +10019f4e Unwind@10019f4e undefined Unwind@10019f4e(void) 8 1 +10019f56 Unwind@10019f56 undefined Unwind@10019f56(void) 8 1 +10019f5e Unwind@10019f5e undefined Unwind@10019f5e(void) 8 1 +10019f66 Unwind@10019f66 undefined Unwind@10019f66(void) 8 1 +10019f93 Unwind@10019f93 undefined Unwind@10019f93(void) 8 1 +10019f9b Unwind@10019f9b undefined Unwind@10019f9b(void) 8 1 +10019fa3 Unwind@10019fa3 undefined Unwind@10019fa3(void) 8 1 +10019fab Unwind@10019fab undefined Unwind@10019fab(void) 8 1 +10019fb3 Unwind@10019fb3 undefined Unwind@10019fb3(void) 8 1 +10019fbb Unwind@10019fbb undefined Unwind@10019fbb(void) 8 1 +10019fc3 Unwind@10019fc3 undefined Unwind@10019fc3(void) 8 1 +10019ff3 Unwind@10019ff3 undefined Unwind@10019ff3(void) 8 1 +10019ffb Unwind@10019ffb undefined Unwind@10019ffb(void) 8 1 +1001a003 Unwind@1001a003 undefined Unwind@1001a003(void) 8 1 +1001a00b Unwind@1001a00b undefined Unwind@1001a00b(void) 8 1 +1001a013 Unwind@1001a013 undefined Unwind@1001a013(void) 8 1 +1001a01b Unwind@1001a01b undefined Unwind@1001a01b(void) 8 1 +1001a023 Unwind@1001a023 undefined Unwind@1001a023(void) 8 1 +1001a050 Unwind@1001a050 undefined Unwind@1001a050(void) 8 1 +1001a058 Unwind@1001a058 undefined Unwind@1001a058(void) 8 1 +1001a060 Unwind@1001a060 undefined Unwind@1001a060(void) 8 1 +1001a068 Unwind@1001a068 undefined Unwind@1001a068(void) 8 1 +1001a070 Unwind@1001a070 undefined Unwind@1001a070(void) 8 1 +1001a078 Unwind@1001a078 undefined Unwind@1001a078(void) 8 1 +1001a080 Unwind@1001a080 undefined Unwind@1001a080(void) 8 1 +1001a088 Unwind@1001a088 undefined Unwind@1001a088(void) 8 1 +1001a090 Unwind@1001a090 undefined Unwind@1001a090(void) 8 1 +1001a098 Unwind@1001a098 undefined Unwind@1001a098(void) 8 1 +1001a0a0 Unwind@1001a0a0 undefined Unwind@1001a0a0(void) 8 1 +1001a0cd Unwind@1001a0cd undefined Unwind@1001a0cd(void) 8 1 +1001a0d5 Unwind@1001a0d5 undefined Unwind@1001a0d5(void) 8 1 +1001a0dd Unwind@1001a0dd undefined Unwind@1001a0dd(void) 8 1 +1001a0e5 Unwind@1001a0e5 undefined Unwind@1001a0e5(void) 8 1 +1001a0ed Unwind@1001a0ed undefined Unwind@1001a0ed(void) 8 1 +1001a0f5 Unwind@1001a0f5 undefined Unwind@1001a0f5(void) 8 1 +1001a0fd Unwind@1001a0fd undefined Unwind@1001a0fd(void) 8 1 +1001a105 Unwind@1001a105 undefined Unwind@1001a105(void) 8 1 +1001a128 Unwind@1001a128 undefined Unwind@1001a128(void) 8 1 +1001a130 Unwind@1001a130 undefined Unwind@1001a130(void) 8 1 +1001a138 Unwind@1001a138 undefined Unwind@1001a138(void) 8 1 +1001a140 Unwind@1001a140 undefined Unwind@1001a140(void) 8 1 +1001a148 Unwind@1001a148 undefined Unwind@1001a148(void) 8 1 +1001a150 Unwind@1001a150 undefined Unwind@1001a150(void) 8 1 +1001a158 Unwind@1001a158 undefined Unwind@1001a158(void) 8 1 +1001a160 Unwind@1001a160 undefined Unwind@1001a160(void) 8 1 +1001a183 Unwind@1001a183 undefined Unwind@1001a183(void) 8 1 +1001a18b Unwind@1001a18b undefined Unwind@1001a18b(void) 8 1 +1001a193 Unwind@1001a193 undefined Unwind@1001a193(void) 8 1 +1001a19b Unwind@1001a19b undefined Unwind@1001a19b(void) 8 1 +1001a1a3 Unwind@1001a1a3 undefined Unwind@1001a1a3(void) 8 1 +1001a1c6 Unwind@1001a1c6 undefined Unwind@1001a1c6(void) 8 1 +1001a1ce Unwind@1001a1ce undefined Unwind@1001a1ce(void) 8 1 +1001a1d6 Unwind@1001a1d6 undefined Unwind@1001a1d6(void) 8 1 +1001a1de Unwind@1001a1de undefined Unwind@1001a1de(void) 8 1 +1001a1e6 Unwind@1001a1e6 undefined Unwind@1001a1e6(void) 8 1 +1001a1ee Unwind@1001a1ee undefined Unwind@1001a1ee(void) 8 1 +1001a21b Unwind@1001a21b undefined Unwind@1001a21b(void) 8 1 +1001a223 Unwind@1001a223 undefined Unwind@1001a223(void) 11 1 +1001a22e Unwind@1001a22e undefined Unwind@1001a22e(void) 11 1 +1001a239 Unwind@1001a239 undefined Unwind@1001a239(void) 11 1 +1001a244 Unwind@1001a244 undefined Unwind@1001a244(void) 11 1 +1001a24f Unwind@1001a24f undefined Unwind@1001a24f(void) 11 1 +1001a25a Unwind@1001a25a undefined Unwind@1001a25a(void) 11 1 +1001a265 Unwind@1001a265 undefined Unwind@1001a265(void) 11 1 +1001a270 Unwind@1001a270 undefined Unwind@1001a270(void) 8 1 +1001a278 Unwind@1001a278 undefined Unwind@1001a278(void) 8 1 +1001a280 Unwind@1001a280 undefined Unwind@1001a280(void) 11 1 +1001a28b Unwind@1001a28b undefined Unwind@1001a28b(void) 8 1 +1001a293 Unwind@1001a293 undefined Unwind@1001a293(void) 11 1 +1001a2b9 Unwind@1001a2b9 undefined Unwind@1001a2b9(void) 8 1 +1001a2c1 Unwind@1001a2c1 undefined Unwind@1001a2c1(void) 8 1 +1001a2c9 Unwind@1001a2c9 undefined Unwind@1001a2c9(void) 11 1 +1001a2d4 Unwind@1001a2d4 undefined Unwind@1001a2d4(void) 8 1 +1001a2dc Unwind@1001a2dc undefined Unwind@1001a2dc(void) 11 1 +1001a2e7 Unwind@1001a2e7 undefined Unwind@1001a2e7(void) 8 1 +1001a2ef Unwind@1001a2ef undefined Unwind@1001a2ef(void) 11 1 +1001a2fa Unwind@1001a2fa undefined Unwind@1001a2fa(void) 8 1 +1001a302 Unwind@1001a302 undefined Unwind@1001a302(void) 11 1 +1001a30d Unwind@1001a30d undefined Unwind@1001a30d(void) 8 1 +1001a315 Unwind@1001a315 undefined Unwind@1001a315(void) 11 1 +1001a320 Unwind@1001a320 undefined Unwind@1001a320(void) 8 1 +1001a328 Unwind@1001a328 undefined Unwind@1001a328(void) 11 1 +1001a333 Unwind@1001a333 undefined Unwind@1001a333(void) 8 1 +1001a33b Unwind@1001a33b undefined Unwind@1001a33b(void) 11 1 +1001a346 Unwind@1001a346 undefined Unwind@1001a346(void) 8 1 +1001a34e Unwind@1001a34e undefined Unwind@1001a34e(void) 11 1 +1001a359 Unwind@1001a359 undefined Unwind@1001a359(void) 11 1 +1001a37f Unwind@1001a37f undefined Unwind@1001a37f(void) 8 1 +1001a387 Unwind@1001a387 undefined Unwind@1001a387(void) 11 1 +1001a392 Unwind@1001a392 undefined Unwind@1001a392(void) 11 1 +1001a39d Unwind@1001a39d undefined Unwind@1001a39d(void) 11 1 +1001a3a8 Unwind@1001a3a8 undefined Unwind@1001a3a8(void) 11 1 +1001a3b3 Unwind@1001a3b3 undefined Unwind@1001a3b3(void) 11 1 +1001a3be Unwind@1001a3be undefined Unwind@1001a3be(void) 11 1 +1001a3c9 Unwind@1001a3c9 undefined Unwind@1001a3c9(void) 11 1 +1001a3d4 Unwind@1001a3d4 undefined Unwind@1001a3d4(void) 11 1 +1001a3df Unwind@1001a3df undefined Unwind@1001a3df(void) 11 1 +1001a3ea Unwind@1001a3ea undefined Unwind@1001a3ea(void) 8 1 +1001a3f2 Unwind@1001a3f2 undefined Unwind@1001a3f2(void) 8 1 +1001a3fa Unwind@1001a3fa undefined Unwind@1001a3fa(void) 8 1 +1001a402 Unwind@1001a402 undefined Unwind@1001a402(void) 8 1 +1001a40a Unwind@1001a40a undefined Unwind@1001a40a(void) 8 1 +1001a412 Unwind@1001a412 undefined Unwind@1001a412(void) 8 1 +1001a41a Unwind@1001a41a undefined Unwind@1001a41a(void) 8 1 +1001a422 Unwind@1001a422 undefined Unwind@1001a422(void) 8 1 +1001a42a Unwind@1001a42a undefined Unwind@1001a42a(void) 8 1 +1001a432 Unwind@1001a432 undefined Unwind@1001a432(void) 8 1 +1001a455 Unwind@1001a455 undefined Unwind@1001a455(void) 11 1 +1001a47b Unwind@1001a47b undefined Unwind@1001a47b(void) 8 1 +1001a483 Unwind@1001a483 undefined Unwind@1001a483(void) 11 1 +1001a4a9 Unwind@1001a4a9 undefined Unwind@1001a4a9(void) 8 1 +1001a4cc Unwind@1001a4cc undefined Unwind@1001a4cc(void) 8 1 +1001a4d4 Unwind@1001a4d4 undefined Unwind@1001a4d4(void) 25 1 +1001a508 Unwind@1001a508 undefined Unwind@1001a508(void) 14 1 +1001a54c Unwind@1001a54c undefined Unwind@1001a54c(void) 8 1 +1001a554 Unwind@1001a554 undefined Unwind@1001a554(void) 8 1 +1001a55c Unwind@1001a55c undefined Unwind@1001a55c(void) 8 1 +1001a564 Unwind@1001a564 undefined Unwind@1001a564(void) 8 1 +1001a56c Unwind@1001a56c undefined Unwind@1001a56c(void) 8 1 +1001a58f Unwind@1001a58f undefined Unwind@1001a58f(void) 8 1 +1001a5b2 Unwind@1001a5b2 undefined Unwind@1001a5b2(void) 8 1 +1001a5d5 Unwind@1001a5d5 undefined Unwind@1001a5d5(void) 11 1 +1001a5e0 Unwind@1001a5e0 undefined Unwind@1001a5e0(void) 11 1 +1001a5eb Unwind@1001a5eb undefined Unwind@1001a5eb(void) 11 1 +1001a5f6 Unwind@1001a5f6 undefined Unwind@1001a5f6(void) 11 1 +1001a601 Unwind@1001a601 undefined Unwind@1001a601(void) 8 1 +1001a609 Unwind@1001a609 undefined Unwind@1001a609(void) 8 1 +1001a611 Unwind@1001a611 undefined Unwind@1001a611(void) 8 1 +1001a634 Unwind@1001a634 undefined Unwind@1001a634(void) 8 1 +1001a63c Unwind@1001a63c undefined Unwind@1001a63c(void) 8 1 +1001a644 Unwind@1001a644 undefined Unwind@1001a644(void) 11 1 +1001a64f Unwind@1001a64f undefined Unwind@1001a64f(void) 11 1 +1001a65a Unwind@1001a65a undefined Unwind@1001a65a(void) 11 1 +1001a665 Unwind@1001a665 undefined Unwind@1001a665(void) 11 1 +1001a670 Unwind@1001a670 undefined Unwind@1001a670(void) 8 1 +1001a678 Unwind@1001a678 undefined Unwind@1001a678(void) 8 1 +1001a680 Unwind@1001a680 undefined Unwind@1001a680(void) 8 1 +1001a688 Unwind@1001a688 undefined Unwind@1001a688(void) 8 1 +1001a690 Unwind@1001a690 undefined Unwind@1001a690(void) 8 1 +1001a698 Unwind@1001a698 undefined Unwind@1001a698(void) 8 1 +1001a6a0 Unwind@1001a6a0 undefined Unwind@1001a6a0(void) 8 1 +1001a6c6 Unwind@1001a6c6 undefined Unwind@1001a6c6(void) 8 1 +1001a6ce Unwind@1001a6ce undefined Unwind@1001a6ce(void) 8 1 +1001a6f1 Unwind@1001a6f1 undefined Unwind@1001a6f1(void) 11 1 +1001a6fc Unwind@1001a6fc undefined Unwind@1001a6fc(void) 8 1 +1001a704 Unwind@1001a704 undefined Unwind@1001a704(void) 11 1 +1001a70f Unwind@1001a70f undefined Unwind@1001a70f(void) 11 1 +1001a71a Unwind@1001a71a undefined Unwind@1001a71a(void) 8 1 +1001a722 Unwind@1001a722 undefined Unwind@1001a722(void) 11 1 +1001a72d Unwind@1001a72d undefined Unwind@1001a72d(void) 11 1 +1001a738 Unwind@1001a738 undefined Unwind@1001a738(void) 11 1 +1001a743 Unwind@1001a743 undefined Unwind@1001a743(void) 10 1 +1001a768 Unwind@1001a768 undefined Unwind@1001a768(void) 10 1 +1001a78d Unwind@1001a78d undefined Unwind@1001a78d(void) 10 1 +1001a7b2 Unwind@1001a7b2 undefined Unwind@1001a7b2(void) 10 1 +1001a7d7 Unwind@1001a7d7 undefined Unwind@1001a7d7(void) 8 1 +1001a7fa Unwind@1001a7fa undefined Unwind@1001a7fa(void) 11 1 +1001a805 Unwind@1001a805 undefined Unwind@1001a805(void) 8 1 +1001a80d Unwind@1001a80d undefined Unwind@1001a80d(void) 11 1 +1001a833 Unwind@1001a833 undefined Unwind@1001a833(void) 8 1 +1001a83b Unwind@1001a83b undefined Unwind@1001a83b(void) 11 1 +1001a846 Unwind@1001a846 undefined Unwind@1001a846(void) 11 1 +1001a887 Unwind@1001a887 undefined Unwind@1001a887(void) 8 1 +1001a88f Unwind@1001a88f undefined Unwind@1001a88f(void) 8 1 +1001a897 Unwind@1001a897 undefined Unwind@1001a897(void) 8 1 +1001a8ba Unwind@1001a8ba undefined Unwind@1001a8ba(void) 8 1 +1001a8c2 Unwind@1001a8c2 undefined Unwind@1001a8c2(void) 8 1 +1001a8ca Unwind@1001a8ca undefined Unwind@1001a8ca(void) 8 1 +1001a8d2 Unwind@1001a8d2 undefined Unwind@1001a8d2(void) 11 1 +1001a8dd Unwind@1001a8dd undefined Unwind@1001a8dd(void) 8 1 +1001a8e5 Unwind@1001a8e5 undefined Unwind@1001a8e5(void) 8 1 +1001a8ed Unwind@1001a8ed undefined Unwind@1001a8ed(void) 11 1 +1001a8f8 Unwind@1001a8f8 undefined Unwind@1001a8f8(void) 11 1 +1001a903 Unwind@1001a903 undefined Unwind@1001a903(void) 8 1 +1001a90b Unwind@1001a90b undefined Unwind@1001a90b(void) 11 1 +1001a916 Unwind@1001a916 undefined Unwind@1001a916(void) 8 1 +1001a946 Unwind@1001a946 undefined Unwind@1001a946(void) 8 1 +1001a94e Unwind@1001a94e undefined Unwind@1001a94e(void) 8 1 +1001a971 Unwind@1001a971 undefined Unwind@1001a971(void) 8 1 +1001a979 Unwind@1001a979 undefined Unwind@1001a979(void) 8 1 +1001aaaa thunk_FUN_10007018 undefined thunk_FUN_10007018(void) 5 1 +1001aaaf FUN_1001aaaf undefined FUN_1001aaaf(void) 17 1 +1001aac0 FUN_1001aac0 undefined FUN_1001aac0(void) 42 3 +1001aaea FUN_1001aaea undefined FUN_1001aaea(void) 15 1 +1001aaf9 FUN_1001aaf9 undefined FUN_1001aaf9(void) 32 3 +1001ab19 FUN_1001ab19 undefined FUN_1001ab19(void) 12 1 +1001ab25 FUN_1001ab25 undefined FUN_1001ab25(void) 32 3 +1001ab45 FUN_1001ab45 undefined FUN_1001ab45(void) 48 4 +1001ab75 FUN_1001ab75 undefined FUN_1001ab75(void) 10 1 +1001ab7f FUN_1001ab7f undefined FUN_1001ab7f(void) 10 1 +1001ab90 FUN_1001ab90 undefined FUN_1001ab90(void) 12 1 VariantClear diff --git a/analysis/ghidra/exports/LmxProxy.dll.ghidra.md b/analysis/ghidra/exports/LmxProxy.dll.ghidra.md new file mode 100644 index 0000000..432cc20 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.ghidra.md @@ -0,0 +1,1404 @@ +# LmxProxy.dll + +## Program + +- Language: `x86:LE:32:default` +- Compiler spec: `windows` +- Image base: `10000000` +- Executable format: `Portable Executable (PE)` + +## Memory Blocks + +| Name | Start | End | Size | R | W | X | +| --- | ---: | ---: | ---: | :---: | :---: | :---: | +| `Headers` | `10000000` | `100003ff` | 1024 | Y | | | +| `.text` | `10001000` | `1001abff` | 105472 | Y | | Y | +| `.rdata` | `1001b000` | `10027dff` | 52736 | Y | | | +| `.data` | `10028000` | `1002997f` | 6528 | Y | Y | | +| `.rsrc` | `1002a000` | `100383ff` | 58368 | Y | | | +| `.reloc` | `10039000` | `1003c1ff` | 12800 | Y | | | +| `tdb` | `ffdff000` | `ffdfffff` | 4096 | Y | Y | | + +## External Imports + +- `ADVAPI32.DLL::RegCloseKey` +- `ADVAPI32.DLL::RegCreateKeyExW` +- `ADVAPI32.DLL::RegDeleteKeyW` +- `ADVAPI32.DLL::RegDeleteValueW` +- `ADVAPI32.DLL::RegEnumKeyExW` +- `ADVAPI32.DLL::RegNotifyChangeKeyValue` +- `ADVAPI32.DLL::RegOpenKeyExW` +- `ADVAPI32.DLL::RegQueryInfoKeyW` +- `ADVAPI32.DLL::RegQueryValueExW` +- `ADVAPI32.DLL::RegSetValueExW` +- `DBGHELP.DLL::MiniDumpWriteDump` +- `KERNEL32.DLL::CloseHandle` +- `KERNEL32.DLL::CreateDirectoryW` +- `KERNEL32.DLL::CreateEventW` +- `KERNEL32.DLL::CreateFileW` +- `KERNEL32.DLL::DecodePointer` +- `KERNEL32.DLL::DeleteCriticalSection` +- `KERNEL32.DLL::DeleteFileW` +- `KERNEL32.DLL::DisableThreadLibraryCalls` +- `KERNEL32.DLL::EncodePointer` +- `KERNEL32.DLL::EnterCriticalSection` +- `KERNEL32.DLL::FileTimeToSystemTime` +- `KERNEL32.DLL::FindClose` +- `KERNEL32.DLL::FindFirstFileW` +- `KERNEL32.DLL::FindNextFileW` +- `KERNEL32.DLL::FindResourceW` +- `KERNEL32.DLL::FormatMessageW` +- `KERNEL32.DLL::FreeLibrary` +- `KERNEL32.DLL::GetCurrentProcess` +- `KERNEL32.DLL::GetCurrentProcessId` +- `KERNEL32.DLL::GetCurrentThreadId` +- `KERNEL32.DLL::GetLastError` +- `KERNEL32.DLL::GetLocalTime` +- `KERNEL32.DLL::GetModuleFileNameW` +- `KERNEL32.DLL::GetModuleHandleW` +- `KERNEL32.DLL::GetProcAddress` +- `KERNEL32.DLL::GetSystemDirectoryW` +- `KERNEL32.DLL::GetSystemTimeAsFileTime` +- `KERNEL32.DLL::GetTickCount` +- `KERNEL32.DLL::GetUserDefaultLCID` +- `KERNEL32.DLL::GetWindowsDirectoryW` +- `KERNEL32.DLL::InitializeCriticalSectionAndSpinCount` +- `KERNEL32.DLL::InterlockedCompareExchange` +- `KERNEL32.DLL::InterlockedDecrement` +- `KERNEL32.DLL::InterlockedExchange` +- `KERNEL32.DLL::InterlockedIncrement` +- `KERNEL32.DLL::IsDebuggerPresent` +- `KERNEL32.DLL::LeaveCriticalSection` +- `KERNEL32.DLL::LoadLibraryExW` +- `KERNEL32.DLL::LoadResource` +- `KERNEL32.DLL::LocalAlloc` +- `KERNEL32.DLL::LocalFree` +- `KERNEL32.DLL::MultiByteToWideChar` +- `KERNEL32.DLL::QueryPerformanceCounter` +- `KERNEL32.DLL::RaiseException` +- `KERNEL32.DLL::SetUnhandledExceptionFilter` +- `KERNEL32.DLL::SizeofResource` +- `KERNEL32.DLL::Sleep` +- `KERNEL32.DLL::SystemTimeToTzSpecificLocalTime` +- `KERNEL32.DLL::TerminateProcess` +- `KERNEL32.DLL::UnhandledExceptionFilter` +- `KERNEL32.DLL::lstrcmpiW` +- `KERNEL32.DLL::lstrlenA` +- `KERNEL32.DLL::lstrlenW` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::AcquireLicense` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::AddLicenseRequestInfo` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::CreateClientConnection` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::GetDeviceIdentity` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::GetLicenseAcquisitionError` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::LoadLibraries` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::NativeExport_CppCliWrapper_LicApiClient` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::ReleaseLicense` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::ResetLicenseRequestInfo` +- `LICAPINATIVEWRAPPER.DLL::NativeExport_CppCliWrapper_LicApiClient::~NativeExport_CppCliWrapper_LicApiClient` +- `MSVCP100.DLL::std::_BADOFF` +- `MSVCP100.DLL::std::_Container_base0::_Orphan_all` +- `MSVCP100.DLL::std::_Xlength_error` +- `MSVCP100.DLL::std::_Xout_of_range` +- `MSVCP100.DLL::std::basic_ios_>::basic_ios_>` +- `MSVCP100.DLL::std::basic_ios_>::fill` +- `MSVCP100.DLL::std::basic_ios_>::rdbuf` +- `MSVCP100.DLL::std::basic_ios_>::rdbuf` +- `MSVCP100.DLL::std::basic_ios_>::setstate` +- `MSVCP100.DLL::std::basic_ios_>::tie` +- `MSVCP100.DLL::std::basic_ios_>::~basic_ios_>` +- `MSVCP100.DLL::std::basic_iostream_>::basic_iostream_>` +- `MSVCP100.DLL::std::basic_iostream_>::~basic_iostream_>` +- `MSVCP100.DLL::std::basic_ostream_>::_Osfx` +- `MSVCP100.DLL::std::basic_ostream_>::basic_ostream_>` +- `MSVCP100.DLL::std::basic_ostream_>::flush` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::~basic_ostream_>` +- `MSVCP100.DLL::std::basic_streambuf_>::_Lock` +- `MSVCP100.DLL::std::basic_streambuf_>::_Pninc` +- `MSVCP100.DLL::std::basic_streambuf_>::_Unlock` +- `MSVCP100.DLL::std::basic_streambuf_>::basic_streambuf_>` +- `MSVCP100.DLL::std::basic_streambuf_>::eback` +- `MSVCP100.DLL::std::basic_streambuf_>::egptr` +- `MSVCP100.DLL::std::basic_streambuf_>::epptr` +- `MSVCP100.DLL::std::basic_streambuf_>::gbump` +- `MSVCP100.DLL::std::basic_streambuf_>::gptr` +- `MSVCP100.DLL::std::basic_streambuf_>::imbue` +- `MSVCP100.DLL::std::basic_streambuf_>::pbackfail` +- `MSVCP100.DLL::std::basic_streambuf_>::pbase` +- `MSVCP100.DLL::std::basic_streambuf_>::pbump` +- `MSVCP100.DLL::std::basic_streambuf_>::pptr` +- `MSVCP100.DLL::std::basic_streambuf_>::seekoff` +- `MSVCP100.DLL::std::basic_streambuf_>::seekpos` +- `MSVCP100.DLL::std::basic_streambuf_>::setbuf` +- `MSVCP100.DLL::std::basic_streambuf_>::setg` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::showmanyc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputn` +- `MSVCP100.DLL::std::basic_streambuf_>::sync` +- `MSVCP100.DLL::std::basic_streambuf_>::uflow` +- `MSVCP100.DLL::std::basic_streambuf_>::underflow` +- `MSVCP100.DLL::std::basic_streambuf_>::xsgetn` +- `MSVCP100.DLL::std::basic_streambuf_>::xsputn` +- `MSVCP100.DLL::std::basic_streambuf_>::~basic_streambuf_>` +- `MSVCP100.DLL::std::endl` +- `MSVCP100.DLL::std::ends` +- `MSVCP100.DLL::std::ios_base::flags` +- `MSVCP100.DLL::std::ios_base::good` +- `MSVCP100.DLL::std::ios_base::setf` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::uncaught_exception` +- `MSVCR100.DLL::_CxxThrowException` +- `MSVCR100.DLL::__CppXcptFilter` +- `MSVCR100.DLL::__CxxFrameHandler3` +- `MSVCR100.DLL::__clean_type_info_names_internal` +- `MSVCR100.DLL::__dllonexit` +- `MSVCR100.DLL::_amsg_exit` +- `MSVCR100.DLL::_crt_debugger_hook` +- `MSVCR100.DLL::_lock` +- `MSVCR100.DLL::_makepath_s` +- `MSVCR100.DLL::_malloc_crt` +- `MSVCR100.DLL::_onexit` +- `MSVCR100.DLL::_recalloc` +- `MSVCR100.DLL::_resetstkoflw` +- `MSVCR100.DLL::_set_se_translator` +- `MSVCR100.DLL::_snwprintf_s` +- `MSVCR100.DLL::_splitpath_s` +- `MSVCR100.DLL::_unlock` +- `MSVCR100.DLL::_vsnwprintf_s` +- `MSVCR100.DLL::_wsplitpath_s` +- `MSVCR100.DLL::calloc` +- `MSVCR100.DLL::encoded_null` +- `MSVCR100.DLL::except_handler4_common` +- `MSVCR100.DLL::free` +- `MSVCR100.DLL::initterm` +- `MSVCR100.DLL::initterm_e` +- `MSVCR100.DLL::malloc` +- `MSVCR100.DLL::memcmp` +- `MSVCR100.DLL::memcpy` +- `MSVCR100.DLL::memcpy_s` +- `MSVCR100.DLL::memmove` +- `MSVCR100.DLL::memset` +- `MSVCR100.DLL::operator_delete` +- `MSVCR100.DLL::operator_delete[]` +- `MSVCR100.DLL::operator_new` +- `MSVCR100.DLL::purecall` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::what` +- `MSVCR100.DLL::std::exception::~exception` +- `MSVCR100.DLL::swprintf_s` +- `MSVCR100.DLL::terminate` +- `MSVCR100.DLL::type_info::_type_info_dtor_internal_method` +- `MSVCR100.DLL::wcscat_s` +- `MSVCR100.DLL::wcscmp` +- `MSVCR100.DLL::wcscpy_s` +- `MSVCR100.DLL::wcslen` +- `MSVCR100.DLL::wcsncpy_s` +- `MSVCR100.DLL::wcsrchr` +- `MSVCR100.DLL::wcsstr` +- `OLE32.DLL::CLSIDFromString` +- `OLE32.DLL::CoCreateInstance` +- `OLE32.DLL::CoFileTimeNow` +- `OLE32.DLL::CoGetClassObject` +- `OLE32.DLL::CoTaskMemAlloc` +- `OLE32.DLL::CoTaskMemFree` +- `OLE32.DLL::CoTaskMemRealloc` +- `OLE32.DLL::StringFromGUID2` +- `OLEAUT32.DLL::GetErrorInfo` +- `OLEAUT32.DLL::GetRecordInfoFromGuids` +- `OLEAUT32.DLL::LoadRegTypeLib` +- `OLEAUT32.DLL::LoadTypeLib` +- `OLEAUT32.DLL::RegisterTypeLib` +- `OLEAUT32.DLL::SafeArrayAccessData` +- `OLEAUT32.DLL::SafeArrayCreate` +- `OLEAUT32.DLL::SafeArrayCreateEx` +- `OLEAUT32.DLL::SafeArrayDestroy` +- `OLEAUT32.DLL::SafeArrayGetDim` +- `OLEAUT32.DLL::SafeArrayGetLBound` +- `OLEAUT32.DLL::SafeArrayPutElement` +- `OLEAUT32.DLL::SafeArrayUnaccessData` +- `OLEAUT32.DLL::SetErrorInfo` +- `OLEAUT32.DLL::SysAllocString` +- `OLEAUT32.DLL::SysAllocStringByteLen` +- `OLEAUT32.DLL::SysAllocStringLen` +- `OLEAUT32.DLL::SysFreeString` +- `OLEAUT32.DLL::SysStringByteLen` +- `OLEAUT32.DLL::SysStringLen` +- `OLEAUT32.DLL::UnRegisterTypeLib` +- `OLEAUT32.DLL::VarBstrCat` +- `OLEAUT32.DLL::VarBstrCmp` +- `OLEAUT32.DLL::VarUI4FromStr` +- `OLEAUT32.DLL::VariantChangeType` +- `OLEAUT32.DLL::VariantClear` +- `OLEAUT32.DLL::VariantCopy` +- `OLEAUT32.DLL::VariantInit` +- `SHLWAPI.DLL::PathAppendW` +- `SHLWAPI.DLL::PathRemoveFileSpecW` +- `USER32.DLL::CharNextW` +- `USER32.DLL::CharUpperBuffW` +- `USER32.DLL::CreateWindowExW` +- `USER32.DLL::DestroyWindow` +- `USER32.DLL::KillTimer` +- `USER32.DLL::SetTimer` +- `USER32.DLL::ShowWindow` + +## Exports and Globals + +| Name | Address | Function | +| --- | ---: | --- | +| `AtlA2WHelper` | `10001316` | `AtlA2WHelper` | +| `?AtlA2WHelper@@YGPA_WPA_WPBDHI@Z` | `10001316` | `AtlA2WHelper` | +| `?AtlCrtErrorCheck@ATL@@YAHH@Z` | `10001381` | `AtlCrtErrorCheck` | +| `?InternalCopy@CComVariant@ATL@@QAEXPBUtagVARIANT@@@Z` | `10001525` | `InternalCopy` | +| `FID_conflict:_Inside` | `10001aea` | `FID_conflict:_Inside` | +| `?_Inside@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE_NPBG@Z` | `10001aea` | `FID_conflict:_Inside` | +| `?_Inside@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE_NPB_W@Z` | `10001aea` | `FID_conflict:_Inside` | +| `??$AtlAdd@K@ATL@@YAJPAKKK@Z` | `10001bba` | `AtlAdd` | +| `?Copy@CComBSTR@ATL@@QBEPA_WXZ` | `10001e0a` | `Copy` | +| `??0CComBSTR@ATL@@QAE@PBD@Z` | `10001f13` | `CComBSTR` | +| `FID_conflict:_Tidy` | `10002b22` | `FID_conflict:_Tidy` | +| `?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEX_NI@Z` | `10002b22` | `FID_conflict:_Tidy` | +| `?_Tidy@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEX_NI@Z` | `10002b22` | `FID_conflict:_Tidy` | +| `?Init@?$CA2WEX@$0IA@@ATL@@AAEXPBDI@Z` | `10002b6b` | `Init` | +| `Catch@10002d2e` | `10002d2e` | `Catch@10002d2e` | +| `Catch@10002daa` | `10002daa` | `Catch@10002daa` | +| `Catch@10002f59` | `10002f59` | `Catch@10002f59` | +| `??0CComBSTR@ATL@@QAE@ABV01@@Z` | `10002ff0` | `CComBSTR` | +| `~basic_string<>` | `100032d4` | `~basic_string<>` | +| `_wmemset` | `100035bd` | `_wmemset` | +| `FID_conflict:_Chassign` | `100035e7` | `FID_conflict:_Chassign` | +| `?_Chassign@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEXII_W@Z` | `100035e7` | `FID_conflict:_Chassign` | +| `?_Chassign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEXIIG@Z` | `100035e7` | `FID_conflict:_Chassign` | +| `FID_conflict:assign` | `10003d59` | `FID_conflict:assign` | +| `?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@PBGI@Z` | `10003d59` | `FID_conflict:assign` | +| `?assign@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEAAV12@PB_WI@Z` | `10003d59` | `FID_conflict:assign` | +| `basic_string<>` | `10003f38` | `basic_string<>` | +| `Catch@10004766` | `10004766` | `Catch@10004766` | +| `Catch@100048b1` | `100048b1` | `Catch@100048b1` | +| `Catch@10004a42` | `10004a42` | `Catch@10004a42` | +| `Catch@10004c03` | `10004c03` | `Catch@10004c03` | +| `Catch@100051ae` | `100051ae` | `Catch@100051ae` | +| `Catch@100053c0` | `100053c0` | `Catch@100053c0` | +| `basic_string<>` | `1000571f` | `basic_string<>` | +| `_InlineIsEqualGUID` | `10006eb9` | `_InlineIsEqualGUID` | +| `??$AtlMultiply@K@ATL@@YAJPAKKK@Z` | `10006ee9` | `AtlMultiply` | +| `?AtlCoTaskMemCAlloc@ATL@@YAPAXKK@Z` | `10006f0b` | `AtlCoTaskMemCAlloc` | +| `?Init@CComCriticalSection@ATL@@QAEJXZ` | `10006fb2` | `Init` | +| `FID_conflict:RegOpenKeyExA` | `10007072` | `FID_conflict:RegOpenKeyExA` | +| `?RegOpenKeyExW@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PB_WKKPAPAU3@@Z` | `10007072` | `FID_conflict:RegOpenKeyExA` | +| `?RegOpenKeyExA@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PBDKKPAPAU3@@Z` | `10007072` | `FID_conflict:RegOpenKeyExA` | +| `FID_conflict:RegCreateKeyExW` | `100070c9` | `FID_conflict:RegCreateKeyExW` | +| `?RegCreateKeyExA@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PBDKPADKKQAU_SECURITY_ATTRIBUTES@@PAPAU3@PAK@Z` | `100070c9` | `FID_conflict:RegCreateKeyExW` | +| `?RegCreateKeyExW@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PB_WKPA_WKKQAU_SECURITY_ATTRIBUTES@@PAPAU3@PAK@Z` | `100070c9` | `FID_conflict:RegCreateKeyExW` | +| `FID_conflict:RegDeleteKeyA` | `1000712c` | `FID_conflict:RegDeleteKeyA` | +| `?RegDeleteKeyW@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PB_W@Z` | `1000712c` | `FID_conflict:RegDeleteKeyA` | +| `?RegDeleteKeyA@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PBD@Z` | `1000712c` | `FID_conflict:RegDeleteKeyA` | +| `?AtlComQIPtrAssign@ATL@@YGPAUIUnknown@@PAPAU2@PAU2@ABU_GUID@@@Z` | `10007258` | `AtlComQIPtrAssign` | +| `?Attach@CComBSTR@ATL@@QAEXPA_W@Z` | `1000728f` | `Attach` | +| `?InlineIsEqualUnknown@ATL@@YGHABU_GUID@@@Z` | `10007453` | `InlineIsEqualUnknown` | +| `DeleteSubKey` | `100074b6` | `DeleteSubKey` | +| `?Close@CRegKey@ATL@@QAEJXZ` | `10007526` | `Close` | +| `Create` | `10007541` | `Create` | +| `Open` | `100075a9` | `Open` | +| `?SetStringValue@CRegKey@ATL@@QAEJPB_W0K@Z` | `10007648` | `SetStringValue` | +| `?AtlInternalQueryInterface@ATL@@YGJPAXPBU_ATL_INTMAP_ENTRY@1@ABU_GUID@@PAPAX@Z` | `10007bba` | `AtlInternalQueryInterface` | +| `Catch@10007d51` | `10007d51` | `Catch@10007d51` | +| `AtlAddThrow<>` | `10007f43` | `AtlAddThrow<>` | +| `??$AtlMultiplyThrow@I@ATL@@YAIII@Z` | `10007f68` | `AtlMultiplyThrow` | +| `?_AtlVerifyStackAvailable@_ATL_SAFE_ALLOCA_IMPL@ATL@@YA_NK@Z` | `10008060` | `_AtlVerifyStackAvailable` | +| `Ordinal_1` | `100080d6` | `DllCanUnloadNow` | +| `DllCanUnloadNow` | `100080d6` | `DllCanUnloadNow` | +| `Catch@1000817f` | `1000817f` | `Catch@1000817f` | +| `?Release@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGKXZ` | `100082a5` | `Release` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `100082c6` | `QueryInterface` | +| `?Release@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGKXZ` | `10008333` | `Release` | +| `Close` | `1000841b` | `Close` | +| `Catch@10008aab` | `10008aab` | `Catch@10008aab` | +| `?GetUnknown@CComDynamicUnkArray@ATL@@QAGPAUIUnknown@@K@Z` | `10008bda` | `GetUnknown` | +| `thunk_FUN_10007e86` | `10008c27` | `thunk_FUN_10007e86` | +| `Catch@10008e69` | `10008e69` | `Catch@10008e69` | +| `Catch@100094fd` | `100094fd` | `Catch@100094fd` | +| `Catch@10009d9b` | `10009d9b` | `Catch@10009d9b` | +| `Allocate` | `10009ee9` | `Allocate` | +| `Allocate` | `10009f18` | `Allocate` | +| `Allocate` | `10009f47` | `Allocate` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `1000a081` | `QueryInterface` | +| `Catch@1000a16d` | `1000a16d` | `Catch@1000a16d` | +| `Catch@1000a1bb` | `1000a1bb` | `Catch@1000a1bb` | +| `Catch@1000a301` | `1000a301` | `Catch@1000a301` | +| `Catch@1000a4cf` | `1000a4cf` | `Catch@1000a4cf` | +| `Catch@1000a627` | `1000a627` | `Catch@1000a627` | +| `Catch@1000b1ba` | `1000b1ba` | `Catch@1000b1ba` | +| `Catch@1000b22b` | `1000b22b` | `Catch@1000b22b` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `1000b3b3` | `QueryInterface` | +| `?Release@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGKXZ` | `1000b4a0` | `Release` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `1000b57f` | `QueryInterface` | +| `Catch@1000b779` | `1000b779` | `Catch@1000b779` | +| `Catch@1000b7eb` | `1000b7eb` | `Catch@1000b7eb` | +| `Ordinal_3` | `1000ba13` | `DllRegisterServer` | +| `DllRegisterServer` | `1000ba13` | `DllRegisterServer` | +| `Ordinal_4` | `1000ba22` | `DllUnregisterServer` | +| `DllUnregisterServer` | `1000ba22` | `DllUnregisterServer` | +| `Catch@1000ba7b` | `1000ba7b` | `Catch@1000ba7b` | +| `Catch@1000bcd1` | `1000bcd1` | `Catch@1000bcd1` | +| `Catch@1000befe` | `1000befe` | `Catch@1000befe` | +| `Catch@1000bf42` | `1000bf42` | `Catch@1000bf42` | +| `Ordinal_2` | `1000c873` | `DllGetClassObject` | +| `DllGetClassObject` | `1000c873` | `DllGetClassObject` | +| `??8CComBSTR@ATL@@QBE_NABV01@@Z` | `1000ca70` | `operator==` | +| `QueryDWORDValue` | `1000cb0c` | `QueryDWORDValue` | +| `?QueryStringValue@CRegKey@ATL@@QAEJPB_WPA_WPAK@Z` | `1000cb44` | `QueryStringValue` | +| `?Release@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGKXZ` | `1000e665` | `Release` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `1000e686` | `QueryInterface` | +| `Catch@1000f0a5` | `1000f0a5` | `Catch@1000f0a5` | +| `Catch@1000f4b2` | `1000f4b2` | `Catch@1000f4b2` | +| `basic_string<>` | `1000f506` | `basic_string<>` | +| `_Uninitialized_move<>` | `1000f5d0` | `_Uninitialized_move<>` | +| `Catch@1000ffe6` | `1000ffe6` | `Catch@1000ffe6` | +| `Catch@10010069` | `10010069` | `Catch@10010069` | +| `Catch@1001014d` | `1001014d` | `Catch@1001014d` | +| `Catch@10010658` | `10010658` | `Catch@10010658` | +| `thunk_FUN_1001007e` | `1001066d` | `thunk_FUN_1001007e` | +| `Catch@10010916` | `10010916` | `Catch@10010916` | +| `Catch@100114f1` | `100114f1` | `Catch@100114f1` | +| `Catch@10011e5f` | `10011e5f` | `Catch@10011e5f` | +| `Catch@10011ec4` | `10011ec4` | `Catch@10011ec4` | +| `Catch@10011edc` | `10011edc` | `Catch@10011edc` | +| `Catch@10011f58` | `10011f58` | `Catch@10011f58` | +| `Catch@10012306` | `10012306` | `Catch@10012306` | +| `Catch@10012375` | `10012375` | `Catch@10012375` | +| `Catch@1001238a` | `1001238a` | `Catch@1001238a` | +| `Catch@10012407` | `10012407` | `Catch@10012407` | +| `Catch@1001254e` | `1001254e` | `Catch@1001254e` | +| `Catch@100125bc` | `100125bc` | `Catch@100125bc` | +| `Catch@100125d1` | `100125d1` | `Catch@100125d1` | +| `Catch@1001264d` | `1001264d` | `Catch@1001264d` | +| `Catch@10012808` | `10012808` | `Catch@10012808` | +| `Catch@10012876` | `10012876` | `Catch@10012876` | +| `Catch@1001288b` | `1001288b` | `Catch@1001288b` | +| `Catch@10012907` | `10012907` | `Catch@10012907` | +| `Catch@10012ac5` | `10012ac5` | `Catch@10012ac5` | +| `Catch@10012b34` | `10012b34` | `Catch@10012b34` | +| `Catch@10012b49` | `10012b49` | `Catch@10012b49` | +| `Catch@10012bc6` | `10012bc6` | `Catch@10012bc6` | +| `Catch@10012ddf` | `10012ddf` | `Catch@10012ddf` | +| `Catch@10012e4d` | `10012e4d` | `Catch@10012e4d` | +| `Catch@10012e62` | `10012e62` | `Catch@10012e62` | +| `Catch@10012ede` | `10012ede` | `Catch@10012ede` | +| `Catch@1001313b` | `1001313b` | `Catch@1001313b` | +| `Catch@100131a9` | `100131a9` | `Catch@100131a9` | +| `Catch@100131be` | `100131be` | `Catch@100131be` | +| `Catch@1001323a` | `1001323a` | `Catch@1001323a` | +| `Catch@100134b9` | `100134b9` | `Catch@100134b9` | +| `Catch@10013527` | `10013527` | `Catch@10013527` | +| `Catch@1001353c` | `1001353c` | `Catch@1001353c` | +| `Catch@100135b8` | `100135b8` | `Catch@100135b8` | +| `Catch@1001385a` | `1001385a` | `Catch@1001385a` | +| `Catch@100138c8` | `100138c8` | `Catch@100138c8` | +| `Catch@100138dd` | `100138dd` | `Catch@100138dd` | +| `Catch@10013959` | `10013959` | `Catch@10013959` | +| `Catch@10013c57` | `10013c57` | `Catch@10013c57` | +| `Catch@10013cc5` | `10013cc5` | `Catch@10013cc5` | +| `Catch@10013cda` | `10013cda` | `Catch@10013cda` | +| `Catch@10013d56` | `10013d56` | `Catch@10013d56` | +| `Catch@10013ee3` | `10013ee3` | `Catch@10013ee3` | +| `Catch@10013f51` | `10013f51` | `Catch@10013f51` | +| `Catch@10013f66` | `10013f66` | `Catch@10013f66` | +| `Catch@10013fe2` | `10013fe2` | `Catch@10013fe2` | +| `Catch@1001416f` | `1001416f` | `Catch@1001416f` | +| `Catch@100141dd` | `100141dd` | `Catch@100141dd` | +| `Catch@100141f2` | `100141f2` | `Catch@100141f2` | +| `Catch@1001426e` | `1001426e` | `Catch@1001426e` | +| `Catch@1001442d` | `1001442d` | `Catch@1001442d` | +| `Catch@1001449b` | `1001449b` | `Catch@1001449b` | +| `Catch@100144b0` | `100144b0` | `Catch@100144b0` | +| `Catch@1001452c` | `1001452c` | `Catch@1001452c` | +| `Catch@10014784` | `10014784` | `Catch@10014784` | +| `Catch@100147f2` | `100147f2` | `Catch@100147f2` | +| `Catch@10014807` | `10014807` | `Catch@10014807` | +| `Catch@10014883` | `10014883` | `Catch@10014883` | +| `Catch@10014cdf` | `10014cdf` | `Catch@10014cdf` | +| `Catch@1001529a` | `1001529a` | `Catch@1001529a` | +| `Catch@10015308` | `10015308` | `Catch@10015308` | +| `Catch@1001531d` | `1001531d` | `Catch@1001531d` | +| `Catch@10015399` | `10015399` | `Catch@10015399` | +| `Catch@10015ad6` | `10015ad6` | `Catch@10015ad6` | +| `Catch@10015b44` | `10015b44` | `Catch@10015b44` | +| `Catch@10015b59` | `10015b59` | `Catch@10015b59` | +| `Catch@10015bd5` | `10015bd5` | `Catch@10015bd5` | +| `Catch@10015f5f` | `10015f5f` | `Catch@10015f5f` | +| `Catch@10016992` | `10016992` | `Catch@10016992` | +| `Catch@10016b10` | `10016b10` | `Catch@10016b10` | +| `Catch@10016cd3` | `10016cd3` | `Catch@10016cd3` | +| `Catch@10016ebe` | `10016ebe` | `Catch@10016ebe` | +| `VarBstrCmp` | `1001704a` | `VarBstrCmp` | +| `VarBstrCat` | `10017050` | `VarBstrCat` | +| `_Lock` | `10017056` | `_Lock` | +| `_Unlock` | `1001705c` | `_Unlock` | +| `showmanyc` | `10017062` | `showmanyc` | +| `uflow` | `10017068` | `uflow` | +| `xsgetn` | `1001706e` | `xsgetn` | +| `xsputn` | `10017074` | `xsputn` | +| `setbuf` | `1001707a` | `setbuf` | +| `sync` | `10017080` | `sync` | +| `imbue` | `10017086` | `imbue` | +| `pbackfail` | `1001708c` | `pbackfail` | +| `underflow` | `10017092` | `underflow` | +| `seekoff` | `10017098` | `seekoff` | +| `seekpos` | `1001709e` | `seekpos` | +| `_com_issue_error` | `100170b0` | `_com_issue_error` | +| `?_com_issue_error@@YGXJ@Z` | `100170b0` | `_com_issue_error` | +| `_com_issue_errorex` | `100170d0` | `_com_issue_errorex` | +| `?_com_issue_errorex@@YGXJPAUIUnknown@@ABU_GUID@@@Z` | `100170d0` | `_com_issue_errorex` | +| `ConvertStringToBSTR` | `10017150` | `ConvertStringToBSTR` | +| `operator_delete` | `10017308` | `operator_delete` | +| `_CxxThrowException` | `1001730e` | `_CxxThrowException` | +| `FID_conflict:\`vector_deleting_destructor'` | `10017314` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Etype_info@@UAEPAXI@Z` | `10017314` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_ECDaoRelationFieldInfo@@UAEPAXI@Z` | `10017314` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Elogic_error@@UAEPAXI@Z` | `10017314` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@std@@UAEPAXI@Z` | `10017314` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@@UAEPAXI@Z` | `10017314` | `FID_conflict:\`vector_deleting_destructor'` | +| `memcpy` | `10017360` | `memcpy` | +| `free` | `10017366` | `free` | +| `memset` | `1001736c` | `memset` | +| `__CxxFrameHandler3` | `10017372` | `__CxxFrameHandler3` | +| `__security_check_cookie` | `10017378` | `__security_check_cookie` | +| `@__security_check_cookie@4` | `10017378` | `__security_check_cookie` | +| `__EH_prolog3` | `10017387` | `__EH_prolog3` | +| `__EH_prolog3_catch` | `100173ba` | `__EH_prolog3_catch` | +| `__EH_prolog3_GS` | `100173f0` | `__EH_prolog3_GS` | +| `__EH_prolog3_catch_GS` | `10017426` | `__EH_prolog3_catch_GS` | +| `__EH_epilog3` | `1001745f` | `__EH_epilog3` | +| `what` | `10017492` | `what` | +| `operator_new` | `10017498` | `operator_new` | +| `operator_delete[]` | `1001749e` | `operator_delete[]` | +| `__ArrayUnwind` | `100174aa` | `__ArrayUnwind` | +| `?__ArrayUnwind@@YGXPAXIHP6EX0@Z@Z` | `100174aa` | `__ArrayUnwind` | +| `\`eh_vector_destructor_iterator'` | `10017508` | `\`eh_vector_destructor_iterator'` | +| `??_M@YGXPAXIHP6EX0@Z@Z` | `10017508` | `\`eh_vector_destructor_iterator'` | +| `__alloca_probe` | `10017570` | `__alloca_probe` | +| `__chkstk` | `10017570` | `__alloca_probe` | +| `__onexit` | `1001759b` | `__onexit` | +| `_atexit` | `1001763c` | `_atexit` | +| `memcmp` | `10017654` | `memcmp` | +| `__alloca_probe_16` | `10017660` | `__alloca_probe_16` | +| `__alloca_probe_8` | `10017676` | `__alloca_probe_8` | +| `malloc` | `1001768c` | `malloc` | +| `__SEH_prolog4_GS` | `100176a0` | `__SEH_prolog4_GS` | +| `\`eh_vector_constructor_iterator'` | `1001771c` | `\`eh_vector_constructor_iterator'` | +| `??_L@YGXPAXIHP6EX0@Z1@Z` | `1001771c` | `\`eh_vector_constructor_iterator'` | +| `purecall` | `10017782` | `purecall` | +| `__CRT_INIT@12` | `100177d6` | `__CRT_INIT@12` | +| `___DllMainCRTStartup` | `100179e0` | `___DllMainCRTStartup` | +| `entry` | `10017af6` | `entry` | +| `___report_gsfailure` | `10017b19` | `___report_gsfailure` | +| `__SEH_prolog4` | `10017c30` | `__SEH_prolog4` | +| `__SEH_epilog4` | `10017c75` | `__SEH_epilog4` | +| `_unlock` | `10017c8a` | `_unlock` | +| `__dllonexit` | `10017c90` | `__dllonexit` | +| `_lock` | `10017c96` | `_lock` | +| `except_handler4_common` | `10017c9c` | `except_handler4_common` | +| `__ValidateImageBase` | `10017d00` | `__ValidateImageBase` | +| `__FindPESection` | `10017d40` | `__FindPESection` | +| `__IsNonwritableInCurrentImage` | `10017d90` | `__IsNonwritableInCurrentImage` | +| `initterm` | `10017e4c` | `initterm` | +| `initterm_e` | `10017e52` | `initterm_e` | +| `_amsg_exit` | `10017e58` | `_amsg_exit` | +| `___security_init_cookie` | `10017e64` | `___security_init_cookie` | +| `_type_info_dtor_internal_method` | `10017f00` | `_type_info_dtor_internal_method` | +| `_crt_debugger_hook` | `10017f06` | `_crt_debugger_hook` | +| `Unwind@10017f20` | `10017f20` | `Unwind@10017f20` | +| `Unwind@10017f44` | `10017f44` | `Unwind@10017f44` | +| `Unwind@10017f67` | `10017f67` | `Unwind@10017f67` | +| `Unwind@10017f8a` | `10017f8a` | `Unwind@10017f8a` | +| `Unwind@10017faf` | `10017faf` | `Unwind@10017faf` | +| `Unwind@10017fed` | `10017fed` | `Unwind@10017fed` | +| `Unwind@10018010` | `10018010` | `Unwind@10018010` | +| `Unwind@10018033` | `10018033` | `Unwind@10018033` | +| `Unwind@10018056` | `10018056` | `Unwind@10018056` | +| `Unwind@1001807f` | `1001807f` | `Unwind@1001807f` | +| `Unwind@1001808b` | `1001808b` | `Unwind@1001808b` | +| `Unwind@100180b1` | `100180b1` | `Unwind@100180b1` | +| `Unwind@100180ba` | `100180ba` | `Unwind@100180ba` | +| `Unwind@100180e0` | `100180e0` | `Unwind@100180e0` | +| `Unwind@10018104` | `10018104` | `Unwind@10018104` | +| `Unwind@1001810d` | `1001810d` | `Unwind@1001810d` | +| `Unwind@10018133` | `10018133` | `Unwind@10018133` | +| `Unwind@1001813d` | `1001813d` | `Unwind@1001813d` | +| `Unwind@10018147` | `10018147` | `Unwind@10018147` | +| `Unwind@1001816c` | `1001816c` | `Unwind@1001816c` | +| `Unwind@10018189` | `10018189` | `Unwind@10018189` | +| `Unwind@10018195` | `10018195` | `Unwind@10018195` | +| `Unwind@100181bb` | `100181bb` | `Unwind@100181bb` | +| `Unwind@100181c3` | `100181c3` | `Unwind@100181c3` | +| `Unwind@100181e6` | `100181e6` | `Unwind@100181e6` | +| `Unwind@10018209` | `10018209` | `Unwind@10018209` | +| `Unwind@1001823d` | `1001823d` | `Unwind@1001823d` | +| `Unwind@10018245` | `10018245` | `Unwind@10018245` | +| `Unwind@1001826b` | `1001826b` | `Unwind@1001826b` | +| `Unwind@10018273` | `10018273` | `Unwind@10018273` | +| `Unwind@1001828c` | `1001828c` | `Unwind@1001828c` | +| `Unwind@10018294` | `10018294` | `Unwind@10018294` | +| `Unwind@1001829c` | `1001829c` | `Unwind@1001829c` | +| `Unwind@100182a4` | `100182a4` | `Unwind@100182a4` | +| `Unwind@100182ac` | `100182ac` | `Unwind@100182ac` | +| `Unwind@100182b4` | `100182b4` | `Unwind@100182b4` | +| `Unwind@100182bc` | `100182bc` | `Unwind@100182bc` | +| `Unwind@100182c4` | `100182c4` | `Unwind@100182c4` | +| `Unwind@100182cc` | `100182cc` | `Unwind@100182cc` | +| `Unwind@100182d4` | `100182d4` | `Unwind@100182d4` | +| `Unwind@100182dc` | `100182dc` | `Unwind@100182dc` | +| `Unwind@100182e4` | `100182e4` | `Unwind@100182e4` | +| `Unwind@100182ec` | `100182ec` | `Unwind@100182ec` | +| `Unwind@100182f4` | `100182f4` | `Unwind@100182f4` | +| `Unwind@100182fc` | `100182fc` | `Unwind@100182fc` | +| `Unwind@10018304` | `10018304` | `Unwind@10018304` | +| `Unwind@1001830c` | `1001830c` | `Unwind@1001830c` | +| `Unwind@10018314` | `10018314` | `Unwind@10018314` | +| `Unwind@1001831c` | `1001831c` | `Unwind@1001831c` | +| `Unwind@10018324` | `10018324` | `Unwind@10018324` | +| `Unwind@1001832c` | `1001832c` | `Unwind@1001832c` | +| `Unwind@10018334` | `10018334` | `Unwind@10018334` | +| `Unwind@1001833c` | `1001833c` | `Unwind@1001833c` | +| `Unwind@10018344` | `10018344` | `Unwind@10018344` | +| `Unwind@1001834c` | `1001834c` | `Unwind@1001834c` | +| `Unwind@10018354` | `10018354` | `Unwind@10018354` | +| `Unwind@1001835c` | `1001835c` | `Unwind@1001835c` | +| `Unwind@10018364` | `10018364` | `Unwind@10018364` | +| `Unwind@1001836c` | `1001836c` | `Unwind@1001836c` | +| `Unwind@10018374` | `10018374` | `Unwind@10018374` | +| `Unwind@1001837c` | `1001837c` | `Unwind@1001837c` | +| `Unwind@10018384` | `10018384` | `Unwind@10018384` | +| `Unwind@1001838c` | `1001838c` | `Unwind@1001838c` | +| `Unwind@10018394` | `10018394` | `Unwind@10018394` | +| `Unwind@1001839c` | `1001839c` | `Unwind@1001839c` | +| `Unwind@100183a4` | `100183a4` | `Unwind@100183a4` | +| `Unwind@100183ac` | `100183ac` | `Unwind@100183ac` | +| `Unwind@100183b4` | `100183b4` | `Unwind@100183b4` | +| `Unwind@100183bc` | `100183bc` | `Unwind@100183bc` | +| `Unwind@100183c4` | `100183c4` | `Unwind@100183c4` | +| `Unwind@100183cc` | `100183cc` | `Unwind@100183cc` | +| `Unwind@100183d4` | `100183d4` | `Unwind@100183d4` | +| `Unwind@100183dc` | `100183dc` | `Unwind@100183dc` | +| `Unwind@100183e4` | `100183e4` | `Unwind@100183e4` | +| `Unwind@100183ec` | `100183ec` | `Unwind@100183ec` | +| `Unwind@100183f4` | `100183f4` | `Unwind@100183f4` | +| `Unwind@100183fc` | `100183fc` | `Unwind@100183fc` | +| `Unwind@10018404` | `10018404` | `Unwind@10018404` | +| `Unwind@1001840c` | `1001840c` | `Unwind@1001840c` | +| `Unwind@10018414` | `10018414` | `Unwind@10018414` | +| `Unwind@1001841c` | `1001841c` | `Unwind@1001841c` | +| `Unwind@10018424` | `10018424` | `Unwind@10018424` | +| `Unwind@1001842c` | `1001842c` | `Unwind@1001842c` | +| `Unwind@10018434` | `10018434` | `Unwind@10018434` | +| `Unwind@1001843c` | `1001843c` | `Unwind@1001843c` | +| `Unwind@10018444` | `10018444` | `Unwind@10018444` | +| `Unwind@1001844c` | `1001844c` | `Unwind@1001844c` | +| `Unwind@10018479` | `10018479` | `Unwind@10018479` | +| `Unwind@10018492` | `10018492` | `Unwind@10018492` | +| `Unwind@1001849a` | `1001849a` | `Unwind@1001849a` | +| `Unwind@100184a2` | `100184a2` | `Unwind@100184a2` | +| `Unwind@100184c5` | `100184c5` | `Unwind@100184c5` | +| `Unwind@100184cd` | `100184cd` | `Unwind@100184cd` | +| `Unwind@100184e6` | `100184e6` | `Unwind@100184e6` | +| `Unwind@100184ee` | `100184ee` | `Unwind@100184ee` | +| `Unwind@1001851b` | `1001851b` | `Unwind@1001851b` | +| `Unwind@1001854f` | `1001854f` | `Unwind@1001854f` | +| `Unwind@1001855a` | `1001855a` | `Unwind@1001855a` | +| `Unwind@10018565` | `10018565` | `Unwind@10018565` | +| `Unwind@10018570` | `10018570` | `Unwind@10018570` | +| `Unwind@1001857b` | `1001857b` | `Unwind@1001857b` | +| `Unwind@10018586` | `10018586` | `Unwind@10018586` | +| `Unwind@10018591` | `10018591` | `Unwind@10018591` | +| `Unwind@1001859c` | `1001859c` | `Unwind@1001859c` | +| `Unwind@100185a7` | `100185a7` | `Unwind@100185a7` | +| `Unwind@100185f1` | `100185f1` | `Unwind@100185f1` | +| `Unwind@100185f9` | `100185f9` | `Unwind@100185f9` | +| `Unwind@10018601` | `10018601` | `Unwind@10018601` | +| `Unwind@1001861a` | `1001861a` | `Unwind@1001861a` | +| `Unwind@10018622` | `10018622` | `Unwind@10018622` | +| `Unwind@10018645` | `10018645` | `Unwind@10018645` | +| `Unwind@1001864d` | `1001864d` | `Unwind@1001864d` | +| `Unwind@10018666` | `10018666` | `Unwind@10018666` | +| `Unwind@1001866e` | `1001866e` | `Unwind@1001866e` | +| `Unwind@10018691` | `10018691` | `Unwind@10018691` | +| `Unwind@10018699` | `10018699` | `Unwind@10018699` | +| `Unwind@100186b2` | `100186b2` | `Unwind@100186b2` | +| `Unwind@100186bd` | `100186bd` | `Unwind@100186bd` | +| `Unwind@100186c8` | `100186c8` | `Unwind@100186c8` | +| `Unwind@100186d3` | `100186d3` | `Unwind@100186d3` | +| `Unwind@100186de` | `100186de` | `Unwind@100186de` | +| `Unwind@100186e9` | `100186e9` | `Unwind@100186e9` | +| `Unwind@100186f1` | `100186f1` | `Unwind@100186f1` | +| `Unwind@100186fc` | `100186fc` | `Unwind@100186fc` | +| `Unwind@10018704` | `10018704` | `Unwind@10018704` | +| `Unwind@10018737` | `10018737` | `Unwind@10018737` | +| `Unwind@1001873f` | `1001873f` | `Unwind@1001873f` | +| `Unwind@10018762` | `10018762` | `Unwind@10018762` | +| `Unwind@1001876a` | `1001876a` | `Unwind@1001876a` | +| `Unwind@10018772` | `10018772` | `Unwind@10018772` | +| `Unwind@1001877a` | `1001877a` | `Unwind@1001877a` | +| `Unwind@10018782` | `10018782` | `Unwind@10018782` | +| `Unwind@1001878a` | `1001878a` | `Unwind@1001878a` | +| `Unwind@10018792` | `10018792` | `Unwind@10018792` | +| `Unwind@1001879a` | `1001879a` | `Unwind@1001879a` | +| `Unwind@100187a2` | `100187a2` | `Unwind@100187a2` | +| `Unwind@100187aa` | `100187aa` | `Unwind@100187aa` | +| `Unwind@100187b2` | `100187b2` | `Unwind@100187b2` | +| `Unwind@100187ba` | `100187ba` | `Unwind@100187ba` | +| `Unwind@100187ea` | `100187ea` | `Unwind@100187ea` | +| `Unwind@10018813` | `10018813` | `Unwind@10018813` | +| `Unwind@10018836` | `10018836` | `Unwind@10018836` | +| `Unwind@1001887a` | `1001887a` | `Unwind@1001887a` | +| `Unwind@100188b8` | `100188b8` | `Unwind@100188b8` | +| `Unwind@100188de` | `100188de` | `Unwind@100188de` | +| `Unwind@10018901` | `10018901` | `Unwind@10018901` | +| `Unwind@10018934` | `10018934` | `Unwind@10018934` | +| `Unwind@1001893f` | `1001893f` | `Unwind@1001893f` | +| `Unwind@10018962` | `10018962` | `Unwind@10018962` | +| `Unwind@10018995` | `10018995` | `Unwind@10018995` | +| `Unwind@1001899f` | `1001899f` | `Unwind@1001899f` | +| `Unwind@100189c2` | `100189c2` | `Unwind@100189c2` | +| `Unwind@100189e8` | `100189e8` | `Unwind@100189e8` | +| `Unwind@100189ff` | `100189ff` | `Unwind@100189ff` | +| `Unwind@10018a32` | `10018a32` | `Unwind@10018a32` | +| `Unwind@10018a3a` | `10018a3a` | `Unwind@10018a3a` | +| `Unwind@10018a42` | `10018a42` | `Unwind@10018a42` | +| `Unwind@10018a4a` | `10018a4a` | `Unwind@10018a4a` | +| `Unwind@10018a52` | `10018a52` | `Unwind@10018a52` | +| `Unwind@10018a5a` | `10018a5a` | `Unwind@10018a5a` | +| `Unwind@10018a7d` | `10018a7d` | `Unwind@10018a7d` | +| `Unwind@10018aa2` | `10018aa2` | `Unwind@10018aa2` | +| `Unwind@10018aad` | `10018aad` | `Unwind@10018aad` | +| `Unwind@10018ad3` | `10018ad3` | `Unwind@10018ad3` | +| `Unwind@10018adb` | `10018adb` | `Unwind@10018adb` | +| `Unwind@10018afe` | `10018afe` | `Unwind@10018afe` | +| `Unwind@10018b09` | `10018b09` | `Unwind@10018b09` | +| `Unwind@10018b2c` | `10018b2c` | `Unwind@10018b2c` | +| `Unwind@10018b34` | `10018b34` | `Unwind@10018b34` | +| `Unwind@10018b57` | `10018b57` | `Unwind@10018b57` | +| `Unwind@10018b7a` | `10018b7a` | `Unwind@10018b7a` | +| `Unwind@10018ba0` | `10018ba0` | `Unwind@10018ba0` | +| `Unwind@10018bcd` | `10018bcd` | `Unwind@10018bcd` | +| `Unwind@10018bf0` | `10018bf0` | `Unwind@10018bf0` | +| `Unwind@10018bf8` | `10018bf8` | `Unwind@10018bf8` | +| `Unwind@10018c39` | `10018c39` | `Unwind@10018c39` | +| `Unwind@10018c44` | `10018c44` | `Unwind@10018c44` | +| `Unwind@10018c4f` | `10018c4f` | `Unwind@10018c4f` | +| `Unwind@10018c5a` | `10018c5a` | `Unwind@10018c5a` | +| `Unwind@10018c65` | `10018c65` | `Unwind@10018c65` | +| `Unwind@10018c70` | `10018c70` | `Unwind@10018c70` | +| `Unwind@10018c7b` | `10018c7b` | `Unwind@10018c7b` | +| `Unwind@10018c86` | `10018c86` | `Unwind@10018c86` | +| `Unwind@10018c91` | `10018c91` | `Unwind@10018c91` | +| `Unwind@10018c9c` | `10018c9c` | `Unwind@10018c9c` | +| `Unwind@10018ccf` | `10018ccf` | `Unwind@10018ccf` | +| `Unwind@10018cd7` | `10018cd7` | `Unwind@10018cd7` | +| `Unwind@10018cdf` | `10018cdf` | `Unwind@10018cdf` | +| `Unwind@10018ce7` | `10018ce7` | `Unwind@10018ce7` | +| `Unwind@10018cef` | `10018cef` | `Unwind@10018cef` | +| `Unwind@10018d12` | `10018d12` | `Unwind@10018d12` | +| `Unwind@10018d1d` | `10018d1d` | `Unwind@10018d1d` | +| `Unwind@10018d28` | `10018d28` | `Unwind@10018d28` | +| `Unwind@10018d33` | `10018d33` | `Unwind@10018d33` | +| `Unwind@10018d3e` | `10018d3e` | `Unwind@10018d3e` | +| `Unwind@10018d49` | `10018d49` | `Unwind@10018d49` | +| `Unwind@10018d7c` | `10018d7c` | `Unwind@10018d7c` | +| `Unwind@10018d9f` | `10018d9f` | `Unwind@10018d9f` | +| `Unwind@10018dc2` | `10018dc2` | `Unwind@10018dc2` | +| `Unwind@10018dcd` | `10018dcd` | `Unwind@10018dcd` | +| `Unwind@10018df3` | `10018df3` | `Unwind@10018df3` | +| `Unwind@10018e16` | `10018e16` | `Unwind@10018e16` | +| `Unwind@10018e39` | `10018e39` | `Unwind@10018e39` | +| `Unwind@10018e41` | `10018e41` | `Unwind@10018e41` | +| `Unwind@10018e7f` | `10018e7f` | `Unwind@10018e7f` | +| `Unwind@10018e8a` | `10018e8a` | `Unwind@10018e8a` | +| `Unwind@10018e95` | `10018e95` | `Unwind@10018e95` | +| `Unwind@10018ec8` | `10018ec8` | `Unwind@10018ec8` | +| `Unwind@10018ed3` | `10018ed3` | `Unwind@10018ed3` | +| `Unwind@10018ede` | `10018ede` | `Unwind@10018ede` | +| `Unwind@10018ee9` | `10018ee9` | `Unwind@10018ee9` | +| `Unwind@10018ef4` | `10018ef4` | `Unwind@10018ef4` | +| `Unwind@10018f27` | `10018f27` | `Unwind@10018f27` | +| `Unwind@10018f4a` | `10018f4a` | `Unwind@10018f4a` | +| `Unwind@10018f55` | `10018f55` | `Unwind@10018f55` | +| `Unwind@10018f60` | `10018f60` | `Unwind@10018f60` | +| `Unwind@10018f6b` | `10018f6b` | `Unwind@10018f6b` | +| `Unwind@10018f76` | `10018f76` | `Unwind@10018f76` | +| `Unwind@10018f81` | `10018f81` | `Unwind@10018f81` | +| `Unwind@10018f8c` | `10018f8c` | `Unwind@10018f8c` | +| `Unwind@10018f97` | `10018f97` | `Unwind@10018f97` | +| `Unwind@10018fa2` | `10018fa2` | `Unwind@10018fa2` | +| `Unwind@10018fad` | `10018fad` | `Unwind@10018fad` | +| `Unwind@10018fb8` | `10018fb8` | `Unwind@10018fb8` | +| `Unwind@10019009` | `10019009` | `Unwind@10019009` | +| `Unwind@1001902e` | `1001902e` | `Unwind@1001902e` | +| `Unwind@10019051` | `10019051` | `Unwind@10019051` | +| `Unwind@10019059` | `10019059` | `Unwind@10019059` | +| `Unwind@1001907c` | `1001907c` | `Unwind@1001907c` | +| `Unwind@1001909f` | `1001909f` | `Unwind@1001909f` | +| `Unwind@100190a7` | `100190a7` | `Unwind@100190a7` | +| `Unwind@10019100` | `10019100` | `Unwind@10019100` | +| `Unwind@1001912d` | `1001912d` | `Unwind@1001912d` | +| `Unwind@10019138` | `10019138` | `Unwind@10019138` | +| `Unwind@1001916b` | `1001916b` | `Unwind@1001916b` | +| `Unwind@100191a9` | `100191a9` | `Unwind@100191a9` | +| `Unwind@100191b1` | `100191b1` | `Unwind@100191b1` | +| `Unwind@100191ca` | `100191ca` | `Unwind@100191ca` | +| `Unwind@100191d2` | `100191d2` | `Unwind@100191d2` | +| `Unwind@100191eb` | `100191eb` | `Unwind@100191eb` | +| `Unwind@100191f3` | `100191f3` | `Unwind@100191f3` | +| `Unwind@10019216` | `10019216` | `Unwind@10019216` | +| `Unwind@10019221` | `10019221` | `Unwind@10019221` | +| `Unwind@1001922c` | `1001922c` | `Unwind@1001922c` | +| `Unwind@10019237` | `10019237` | `Unwind@10019237` | +| `Unwind@1001926a` | `1001926a` | `Unwind@1001926a` | +| `Unwind@10019275` | `10019275` | `Unwind@10019275` | +| `Unwind@10019280` | `10019280` | `Unwind@10019280` | +| `Unwind@1001928b` | `1001928b` | `Unwind@1001928b` | +| `Unwind@100192be` | `100192be` | `Unwind@100192be` | +| `Unwind@100192db` | `100192db` | `Unwind@100192db` | +| `Unwind@100192e7` | `100192e7` | `Unwind@100192e7` | +| `Unwind@1001930d` | `1001930d` | `Unwind@1001930d` | +| `Unwind@10019317` | `10019317` | `Unwind@10019317` | +| `Unwind@10019321` | `10019321` | `Unwind@10019321` | +| `Unwind@1001932b` | `1001932b` | `Unwind@1001932b` | +| `Unwind@10019335` | `10019335` | `Unwind@10019335` | +| `Unwind@1001935a` | `1001935a` | `Unwind@1001935a` | +| `Unwind@10019366` | `10019366` | `Unwind@10019366` | +| `Unwind@1001938c` | `1001938c` | `Unwind@1001938c` | +| `Unwind@10019394` | `10019394` | `Unwind@10019394` | +| `Unwind@100193b7` | `100193b7` | `Unwind@100193b7` | +| `Unwind@100193c1` | `100193c1` | `Unwind@100193c1` | +| `Unwind@100193e6` | `100193e6` | `Unwind@100193e6` | +| `Unwind@1001940b` | `1001940b` | `Unwind@1001940b` | +| `Unwind@10019431` | `10019431` | `Unwind@10019431` | +| `Unwind@10019454` | `10019454` | `Unwind@10019454` | +| `Unwind@10019477` | `10019477` | `Unwind@10019477` | +| `Unwind@1001947f` | `1001947f` | `Unwind@1001947f` | +| `Unwind@1001948a` | `1001948a` | `Unwind@1001948a` | +| `Unwind@10019495` | `10019495` | `Unwind@10019495` | +| `Unwind@1001949d` | `1001949d` | `Unwind@1001949d` | +| `Unwind@100194c0` | `100194c0` | `Unwind@100194c0` | +| `Unwind@100194c8` | `100194c8` | `Unwind@100194c8` | +| `Unwind@100194d0` | `100194d0` | `Unwind@100194d0` | +| `Unwind@100194f3` | `100194f3` | `Unwind@100194f3` | +| `Unwind@100194fb` | `100194fb` | `Unwind@100194fb` | +| `Unwind@10019503` | `10019503` | `Unwind@10019503` | +| `Unwind@10019526` | `10019526` | `Unwind@10019526` | +| `Unwind@10019531` | `10019531` | `Unwind@10019531` | +| `Unwind@1001953c` | `1001953c` | `Unwind@1001953c` | +| `Unwind@10019544` | `10019544` | `Unwind@10019544` | +| `Unwind@10019567` | `10019567` | `Unwind@10019567` | +| `Unwind@1001958b` | `1001958b` | `Unwind@1001958b` | +| `Unwind@100195b1` | `100195b1` | `Unwind@100195b1` | +| `Unwind@100195d4` | `100195d4` | `Unwind@100195d4` | +| `Unwind@100195df` | `100195df` | `Unwind@100195df` | +| `Unwind@10019612` | `10019612` | `Unwind@10019612` | +| `Unwind@1001961a` | `1001961a` | `Unwind@1001961a` | +| `Unwind@10019622` | `10019622` | `Unwind@10019622` | +| `Unwind@1001962d` | `1001962d` | `Unwind@1001962d` | +| `Unwind@10019635` | `10019635` | `Unwind@10019635` | +| `Unwind@1001965b` | `1001965b` | `Unwind@1001965b` | +| `Unwind@10019663` | `10019663` | `Unwind@10019663` | +| `Unwind@10019689` | `10019689` | `Unwind@10019689` | +| `Unwind@10019691` | `10019691` | `Unwind@10019691` | +| `Unwind@100196b4` | `100196b4` | `Unwind@100196b4` | +| `Unwind@100196bf` | `100196bf` | `Unwind@100196bf` | +| `Unwind@100196e5` | `100196e5` | `Unwind@100196e5` | +| `Unwind@100196ed` | `100196ed` | `Unwind@100196ed` | +| `Unwind@10019710` | `10019710` | `Unwind@10019710` | +| `Unwind@10019718` | `10019718` | `Unwind@10019718` | +| `Unwind@10019723` | `10019723` | `Unwind@10019723` | +| `Unwind@10019749` | `10019749` | `Unwind@10019749` | +| `Unwind@1001976c` | `1001976c` | `Unwind@1001976c` | +| `Unwind@1001979f` | `1001979f` | `Unwind@1001979f` | +| `Unwind@100197dd` | `100197dd` | `Unwind@100197dd` | +| `Unwind@1001981d` | `1001981d` | `Unwind@1001981d` | +| `Unwind@10019825` | `10019825` | `Unwind@10019825` | +| `Unwind@10019859` | `10019859` | `Unwind@10019859` | +| `Unwind@1001987f` | `1001987f` | `Unwind@1001987f` | +| `Unwind@1001990e` | `1001990e` | `Unwind@1001990e` | +| `Unwind@10019931` | `10019931` | `Unwind@10019931` | +| `Unwind@10019939` | `10019939` | `Unwind@10019939` | +| `Unwind@10019966` | `10019966` | `Unwind@10019966` | +| `Unwind@1001996e` | `1001996e` | `Unwind@1001996e` | +| `Unwind@10019991` | `10019991` | `Unwind@10019991` | +| `Unwind@100199b4` | `100199b4` | `Unwind@100199b4` | +| `Unwind@100199e8` | `100199e8` | `Unwind@100199e8` | +| `Unwind@100199f0` | `100199f0` | `Unwind@100199f0` | +| `Unwind@10019a24` | `10019a24` | `Unwind@10019a24` | +| `Unwind@10019a2f` | `10019a2f` | `Unwind@10019a2f` | +| `Unwind@10019a3a` | `10019a3a` | `Unwind@10019a3a` | +| `Unwind@10019a45` | `10019a45` | `Unwind@10019a45` | +| `Unwind@10019a50` | `10019a50` | `Unwind@10019a50` | +| `Unwind@10019a5b` | `10019a5b` | `Unwind@10019a5b` | +| `Unwind@10019a99` | `10019a99` | `Unwind@10019a99` | +| `Unwind@10019aa1` | `10019aa1` | `Unwind@10019aa1` | +| `Unwind@10019aa9` | `10019aa9` | `Unwind@10019aa9` | +| `Unwind@10019ab1` | `10019ab1` | `Unwind@10019ab1` | +| `Unwind@10019ab9` | `10019ab9` | `Unwind@10019ab9` | +| `Unwind@10019ac1` | `10019ac1` | `Unwind@10019ac1` | +| `Unwind@10019ac9` | `10019ac9` | `Unwind@10019ac9` | +| `Unwind@10019aec` | `10019aec` | `Unwind@10019aec` | +| `Unwind@10019af4` | `10019af4` | `Unwind@10019af4` | +| `Unwind@10019afc` | `10019afc` | `Unwind@10019afc` | +| `Unwind@10019b07` | `10019b07` | `Unwind@10019b07` | +| `Unwind@10019b0f` | `10019b0f` | `Unwind@10019b0f` | +| `Unwind@10019b17` | `10019b17` | `Unwind@10019b17` | +| `Unwind@10019b1f` | `10019b1f` | `Unwind@10019b1f` | +| `Unwind@10019b4f` | `10019b4f` | `Unwind@10019b4f` | +| `Unwind@10019b72` | `10019b72` | `Unwind@10019b72` | +| `Unwind@10019b95` | `10019b95` | `Unwind@10019b95` | +| `Unwind@10019ba0` | `10019ba0` | `Unwind@10019ba0` | +| `Unwind@10019bab` | `10019bab` | `Unwind@10019bab` | +| `Unwind@10019bb6` | `10019bb6` | `Unwind@10019bb6` | +| `Unwind@10019bc1` | `10019bc1` | `Unwind@10019bc1` | +| `Unwind@10019bcc` | `10019bcc` | `Unwind@10019bcc` | +| `Unwind@10019bd7` | `10019bd7` | `Unwind@10019bd7` | +| `Unwind@10019bf9` | `10019bf9` | `Unwind@10019bf9` | +| `Unwind@10019c43` | `10019c43` | `Unwind@10019c43` | +| `Unwind@10019c4b` | `10019c4b` | `Unwind@10019c4b` | +| `Unwind@10019c53` | `10019c53` | `Unwind@10019c53` | +| `Unwind@10019c76` | `10019c76` | `Unwind@10019c76` | +| `Unwind@10019c99` | `10019c99` | `Unwind@10019c99` | +| `Unwind@10019ca1` | `10019ca1` | `Unwind@10019ca1` | +| `Unwind@10019cc4` | `10019cc4` | `Unwind@10019cc4` | +| `Unwind@10019ccc` | `10019ccc` | `Unwind@10019ccc` | +| `Unwind@10019cd4` | `10019cd4` | `Unwind@10019cd4` | +| `Unwind@10019cf7` | `10019cf7` | `Unwind@10019cf7` | +| `Unwind@10019cff` | `10019cff` | `Unwind@10019cff` | +| `Unwind@10019d22` | `10019d22` | `Unwind@10019d22` | +| `Unwind@10019d2a` | `10019d2a` | `Unwind@10019d2a` | +| `Unwind@10019d32` | `10019d32` | `Unwind@10019d32` | +| `Unwind@10019d3a` | `10019d3a` | `Unwind@10019d3a` | +| `Unwind@10019d42` | `10019d42` | `Unwind@10019d42` | +| `Unwind@10019d4a` | `10019d4a` | `Unwind@10019d4a` | +| `Unwind@10019d52` | `10019d52` | `Unwind@10019d52` | +| `Unwind@10019d5a` | `10019d5a` | `Unwind@10019d5a` | +| `Unwind@10019d62` | `10019d62` | `Unwind@10019d62` | +| `Unwind@10019d85` | `10019d85` | `Unwind@10019d85` | +| `Unwind@10019d8d` | `10019d8d` | `Unwind@10019d8d` | +| `Unwind@10019d95` | `10019d95` | `Unwind@10019d95` | +| `Unwind@10019d9d` | `10019d9d` | `Unwind@10019d9d` | +| `Unwind@10019da5` | `10019da5` | `Unwind@10019da5` | +| `Unwind@10019dad` | `10019dad` | `Unwind@10019dad` | +| `Unwind@10019db5` | `10019db5` | `Unwind@10019db5` | +| `Unwind@10019dbd` | `10019dbd` | `Unwind@10019dbd` | +| `Unwind@10019dc5` | `10019dc5` | `Unwind@10019dc5` | +| `Unwind@10019dcd` | `10019dcd` | `Unwind@10019dcd` | +| `Unwind@10019dd5` | `10019dd5` | `Unwind@10019dd5` | +| `Unwind@10019ddd` | `10019ddd` | `Unwind@10019ddd` | +| `Unwind@10019de5` | `10019de5` | `Unwind@10019de5` | +| `Unwind@10019ded` | `10019ded` | `Unwind@10019ded` | +| `Unwind@10019df5` | `10019df5` | `Unwind@10019df5` | +| `Unwind@10019e18` | `10019e18` | `Unwind@10019e18` | +| `Unwind@10019e20` | `10019e20` | `Unwind@10019e20` | +| `Unwind@10019e28` | `10019e28` | `Unwind@10019e28` | +| `Unwind@10019e30` | `10019e30` | `Unwind@10019e30` | +| `Unwind@10019e38` | `10019e38` | `Unwind@10019e38` | +| `Unwind@10019e5b` | `10019e5b` | `Unwind@10019e5b` | +| `Unwind@10019e63` | `10019e63` | `Unwind@10019e63` | +| `Unwind@10019e6b` | `10019e6b` | `Unwind@10019e6b` | +| `Unwind@10019e73` | `10019e73` | `Unwind@10019e73` | +| `Unwind@10019e7b` | `10019e7b` | `Unwind@10019e7b` | +| `Unwind@10019e9e` | `10019e9e` | `Unwind@10019e9e` | +| `Unwind@10019ea6` | `10019ea6` | `Unwind@10019ea6` | +| `Unwind@10019eae` | `10019eae` | `Unwind@10019eae` | +| `Unwind@10019eb6` | `10019eb6` | `Unwind@10019eb6` | +| `Unwind@10019ebe` | `10019ebe` | `Unwind@10019ebe` | +| `Unwind@10019ec6` | `10019ec6` | `Unwind@10019ec6` | +| `Unwind@10019ee9` | `10019ee9` | `Unwind@10019ee9` | +| `Unwind@10019ef1` | `10019ef1` | `Unwind@10019ef1` | +| `Unwind@10019ef9` | `10019ef9` | `Unwind@10019ef9` | +| `Unwind@10019f01` | `10019f01` | `Unwind@10019f01` | +| `Unwind@10019f09` | `10019f09` | `Unwind@10019f09` | +| `Unwind@10019f11` | `10019f11` | `Unwind@10019f11` | +| `Unwind@10019f3e` | `10019f3e` | `Unwind@10019f3e` | +| `Unwind@10019f46` | `10019f46` | `Unwind@10019f46` | +| `Unwind@10019f4e` | `10019f4e` | `Unwind@10019f4e` | +| `Unwind@10019f56` | `10019f56` | `Unwind@10019f56` | +| `Unwind@10019f5e` | `10019f5e` | `Unwind@10019f5e` | +| `Unwind@10019f66` | `10019f66` | `Unwind@10019f66` | +| `Unwind@10019f93` | `10019f93` | `Unwind@10019f93` | +| `Unwind@10019f9b` | `10019f9b` | `Unwind@10019f9b` | +| `Unwind@10019fa3` | `10019fa3` | `Unwind@10019fa3` | +| `Unwind@10019fab` | `10019fab` | `Unwind@10019fab` | +| `Unwind@10019fb3` | `10019fb3` | `Unwind@10019fb3` | +| `Unwind@10019fbb` | `10019fbb` | `Unwind@10019fbb` | +| `Unwind@10019fc3` | `10019fc3` | `Unwind@10019fc3` | +| `Unwind@10019ff3` | `10019ff3` | `Unwind@10019ff3` | +| `Unwind@10019ffb` | `10019ffb` | `Unwind@10019ffb` | +| `Unwind@1001a003` | `1001a003` | `Unwind@1001a003` | +| `Unwind@1001a00b` | `1001a00b` | `Unwind@1001a00b` | +| `Unwind@1001a013` | `1001a013` | `Unwind@1001a013` | +| `Unwind@1001a01b` | `1001a01b` | `Unwind@1001a01b` | +| `Unwind@1001a023` | `1001a023` | `Unwind@1001a023` | +| `Unwind@1001a050` | `1001a050` | `Unwind@1001a050` | +| `Unwind@1001a058` | `1001a058` | `Unwind@1001a058` | +| `Unwind@1001a060` | `1001a060` | `Unwind@1001a060` | +| `Unwind@1001a068` | `1001a068` | `Unwind@1001a068` | +| `Unwind@1001a070` | `1001a070` | `Unwind@1001a070` | +| `Unwind@1001a078` | `1001a078` | `Unwind@1001a078` | +| `Unwind@1001a080` | `1001a080` | `Unwind@1001a080` | +| `Unwind@1001a088` | `1001a088` | `Unwind@1001a088` | +| `Unwind@1001a090` | `1001a090` | `Unwind@1001a090` | +| `Unwind@1001a098` | `1001a098` | `Unwind@1001a098` | +| `Unwind@1001a0a0` | `1001a0a0` | `Unwind@1001a0a0` | +| `Unwind@1001a0cd` | `1001a0cd` | `Unwind@1001a0cd` | +| `Unwind@1001a0d5` | `1001a0d5` | `Unwind@1001a0d5` | +| `Unwind@1001a0dd` | `1001a0dd` | `Unwind@1001a0dd` | +| `Unwind@1001a0e5` | `1001a0e5` | `Unwind@1001a0e5` | +| `Unwind@1001a0ed` | `1001a0ed` | `Unwind@1001a0ed` | +| `Unwind@1001a0f5` | `1001a0f5` | `Unwind@1001a0f5` | +| `Unwind@1001a0fd` | `1001a0fd` | `Unwind@1001a0fd` | +| `Unwind@1001a105` | `1001a105` | `Unwind@1001a105` | +| `Unwind@1001a128` | `1001a128` | `Unwind@1001a128` | +| `Unwind@1001a130` | `1001a130` | `Unwind@1001a130` | +| `Unwind@1001a138` | `1001a138` | `Unwind@1001a138` | +| `Unwind@1001a140` | `1001a140` | `Unwind@1001a140` | +| `Unwind@1001a148` | `1001a148` | `Unwind@1001a148` | +| `Unwind@1001a150` | `1001a150` | `Unwind@1001a150` | +| `Unwind@1001a158` | `1001a158` | `Unwind@1001a158` | +| `Unwind@1001a160` | `1001a160` | `Unwind@1001a160` | +| `Unwind@1001a183` | `1001a183` | `Unwind@1001a183` | +| `Unwind@1001a18b` | `1001a18b` | `Unwind@1001a18b` | +| `Unwind@1001a193` | `1001a193` | `Unwind@1001a193` | +| `Unwind@1001a19b` | `1001a19b` | `Unwind@1001a19b` | +| `Unwind@1001a1a3` | `1001a1a3` | `Unwind@1001a1a3` | +| `Unwind@1001a1c6` | `1001a1c6` | `Unwind@1001a1c6` | +| `Unwind@1001a1ce` | `1001a1ce` | `Unwind@1001a1ce` | +| `Unwind@1001a1d6` | `1001a1d6` | `Unwind@1001a1d6` | +| `Unwind@1001a1de` | `1001a1de` | `Unwind@1001a1de` | +| `Unwind@1001a1e6` | `1001a1e6` | `Unwind@1001a1e6` | +| `Unwind@1001a1ee` | `1001a1ee` | `Unwind@1001a1ee` | +| `Unwind@1001a21b` | `1001a21b` | `Unwind@1001a21b` | +| `Unwind@1001a223` | `1001a223` | `Unwind@1001a223` | +| `Unwind@1001a22e` | `1001a22e` | `Unwind@1001a22e` | +| `Unwind@1001a239` | `1001a239` | `Unwind@1001a239` | +| `Unwind@1001a244` | `1001a244` | `Unwind@1001a244` | +| `Unwind@1001a24f` | `1001a24f` | `Unwind@1001a24f` | +| `Unwind@1001a25a` | `1001a25a` | `Unwind@1001a25a` | +| `Unwind@1001a265` | `1001a265` | `Unwind@1001a265` | +| `Unwind@1001a270` | `1001a270` | `Unwind@1001a270` | +| `Unwind@1001a278` | `1001a278` | `Unwind@1001a278` | +| `Unwind@1001a280` | `1001a280` | `Unwind@1001a280` | +| `Unwind@1001a28b` | `1001a28b` | `Unwind@1001a28b` | +| `Unwind@1001a293` | `1001a293` | `Unwind@1001a293` | +| `Unwind@1001a2b9` | `1001a2b9` | `Unwind@1001a2b9` | +| `Unwind@1001a2c1` | `1001a2c1` | `Unwind@1001a2c1` | +| `Unwind@1001a2c9` | `1001a2c9` | `Unwind@1001a2c9` | +| `Unwind@1001a2d4` | `1001a2d4` | `Unwind@1001a2d4` | +| `Unwind@1001a2dc` | `1001a2dc` | `Unwind@1001a2dc` | +| `Unwind@1001a2e7` | `1001a2e7` | `Unwind@1001a2e7` | +| `Unwind@1001a2ef` | `1001a2ef` | `Unwind@1001a2ef` | +| `Unwind@1001a2fa` | `1001a2fa` | `Unwind@1001a2fa` | +| `Unwind@1001a302` | `1001a302` | `Unwind@1001a302` | +| `Unwind@1001a30d` | `1001a30d` | `Unwind@1001a30d` | +| `Unwind@1001a315` | `1001a315` | `Unwind@1001a315` | +| `Unwind@1001a320` | `1001a320` | `Unwind@1001a320` | +| `Unwind@1001a328` | `1001a328` | `Unwind@1001a328` | +| `Unwind@1001a333` | `1001a333` | `Unwind@1001a333` | +| `Unwind@1001a33b` | `1001a33b` | `Unwind@1001a33b` | +| `Unwind@1001a346` | `1001a346` | `Unwind@1001a346` | +| `Unwind@1001a34e` | `1001a34e` | `Unwind@1001a34e` | +| `Unwind@1001a359` | `1001a359` | `Unwind@1001a359` | +| `Unwind@1001a37f` | `1001a37f` | `Unwind@1001a37f` | +| `Unwind@1001a387` | `1001a387` | `Unwind@1001a387` | +| `Unwind@1001a392` | `1001a392` | `Unwind@1001a392` | +| `Unwind@1001a39d` | `1001a39d` | `Unwind@1001a39d` | +| `Unwind@1001a3a8` | `1001a3a8` | `Unwind@1001a3a8` | +| `Unwind@1001a3b3` | `1001a3b3` | `Unwind@1001a3b3` | +| `Unwind@1001a3be` | `1001a3be` | `Unwind@1001a3be` | +| `Unwind@1001a3c9` | `1001a3c9` | `Unwind@1001a3c9` | +| `Unwind@1001a3d4` | `1001a3d4` | `Unwind@1001a3d4` | +| `Unwind@1001a3df` | `1001a3df` | `Unwind@1001a3df` | +| `Unwind@1001a3ea` | `1001a3ea` | `Unwind@1001a3ea` | +| `Unwind@1001a3f2` | `1001a3f2` | `Unwind@1001a3f2` | +| `Unwind@1001a3fa` | `1001a3fa` | `Unwind@1001a3fa` | +| `Unwind@1001a402` | `1001a402` | `Unwind@1001a402` | +| `Unwind@1001a40a` | `1001a40a` | `Unwind@1001a40a` | +| `Unwind@1001a412` | `1001a412` | `Unwind@1001a412` | +| `Unwind@1001a41a` | `1001a41a` | `Unwind@1001a41a` | +| `Unwind@1001a422` | `1001a422` | `Unwind@1001a422` | +| `Unwind@1001a42a` | `1001a42a` | `Unwind@1001a42a` | +| `Unwind@1001a432` | `1001a432` | `Unwind@1001a432` | +| `Unwind@1001a455` | `1001a455` | `Unwind@1001a455` | +| `Unwind@1001a47b` | `1001a47b` | `Unwind@1001a47b` | +| `Unwind@1001a483` | `1001a483` | `Unwind@1001a483` | +| `Unwind@1001a4a9` | `1001a4a9` | `Unwind@1001a4a9` | +| `Unwind@1001a4cc` | `1001a4cc` | `Unwind@1001a4cc` | +| `Unwind@1001a4d4` | `1001a4d4` | `Unwind@1001a4d4` | +| `Unwind@1001a508` | `1001a508` | `Unwind@1001a508` | +| `Unwind@1001a54c` | `1001a54c` | `Unwind@1001a54c` | +| `Unwind@1001a554` | `1001a554` | `Unwind@1001a554` | +| `Unwind@1001a55c` | `1001a55c` | `Unwind@1001a55c` | +| `Unwind@1001a564` | `1001a564` | `Unwind@1001a564` | +| `Unwind@1001a56c` | `1001a56c` | `Unwind@1001a56c` | +| `Unwind@1001a58f` | `1001a58f` | `Unwind@1001a58f` | +| `Unwind@1001a5b2` | `1001a5b2` | `Unwind@1001a5b2` | +| `Unwind@1001a5d5` | `1001a5d5` | `Unwind@1001a5d5` | +| `Unwind@1001a5e0` | `1001a5e0` | `Unwind@1001a5e0` | +| `Unwind@1001a5eb` | `1001a5eb` | `Unwind@1001a5eb` | +| `Unwind@1001a5f6` | `1001a5f6` | `Unwind@1001a5f6` | +| `Unwind@1001a601` | `1001a601` | `Unwind@1001a601` | +| `Unwind@1001a609` | `1001a609` | `Unwind@1001a609` | +| `Unwind@1001a611` | `1001a611` | `Unwind@1001a611` | +| `Unwind@1001a634` | `1001a634` | `Unwind@1001a634` | +| `Unwind@1001a63c` | `1001a63c` | `Unwind@1001a63c` | +| `Unwind@1001a644` | `1001a644` | `Unwind@1001a644` | +| `Unwind@1001a64f` | `1001a64f` | `Unwind@1001a64f` | +| `Unwind@1001a65a` | `1001a65a` | `Unwind@1001a65a` | +| `Unwind@1001a665` | `1001a665` | `Unwind@1001a665` | +| `Unwind@1001a670` | `1001a670` | `Unwind@1001a670` | +| `Unwind@1001a678` | `1001a678` | `Unwind@1001a678` | +| `Unwind@1001a680` | `1001a680` | `Unwind@1001a680` | +| `Unwind@1001a688` | `1001a688` | `Unwind@1001a688` | +| `Unwind@1001a690` | `1001a690` | `Unwind@1001a690` | +| `Unwind@1001a698` | `1001a698` | `Unwind@1001a698` | +| `Unwind@1001a6a0` | `1001a6a0` | `Unwind@1001a6a0` | +| `Unwind@1001a6c6` | `1001a6c6` | `Unwind@1001a6c6` | +| `Unwind@1001a6ce` | `1001a6ce` | `Unwind@1001a6ce` | +| `Unwind@1001a6f1` | `1001a6f1` | `Unwind@1001a6f1` | +| `Unwind@1001a6fc` | `1001a6fc` | `Unwind@1001a6fc` | +| `Unwind@1001a704` | `1001a704` | `Unwind@1001a704` | +| `Unwind@1001a70f` | `1001a70f` | `Unwind@1001a70f` | +| `Unwind@1001a71a` | `1001a71a` | `Unwind@1001a71a` | +| `Unwind@1001a722` | `1001a722` | `Unwind@1001a722` | +| `Unwind@1001a72d` | `1001a72d` | `Unwind@1001a72d` | +| `Unwind@1001a738` | `1001a738` | `Unwind@1001a738` | +| `Unwind@1001a743` | `1001a743` | `Unwind@1001a743` | +| `Unwind@1001a768` | `1001a768` | `Unwind@1001a768` | +| `Unwind@1001a78d` | `1001a78d` | `Unwind@1001a78d` | +| `Unwind@1001a7b2` | `1001a7b2` | `Unwind@1001a7b2` | +| `Unwind@1001a7d7` | `1001a7d7` | `Unwind@1001a7d7` | +| `Unwind@1001a7fa` | `1001a7fa` | `Unwind@1001a7fa` | +| `Unwind@1001a805` | `1001a805` | `Unwind@1001a805` | +| `Unwind@1001a80d` | `1001a80d` | `Unwind@1001a80d` | +| `Unwind@1001a833` | `1001a833` | `Unwind@1001a833` | +| `Unwind@1001a83b` | `1001a83b` | `Unwind@1001a83b` | +| `Unwind@1001a846` | `1001a846` | `Unwind@1001a846` | +| `Unwind@1001a887` | `1001a887` | `Unwind@1001a887` | +| `Unwind@1001a88f` | `1001a88f` | `Unwind@1001a88f` | +| `Unwind@1001a897` | `1001a897` | `Unwind@1001a897` | +| `Unwind@1001a8ba` | `1001a8ba` | `Unwind@1001a8ba` | +| `Unwind@1001a8c2` | `1001a8c2` | `Unwind@1001a8c2` | +| `Unwind@1001a8ca` | `1001a8ca` | `Unwind@1001a8ca` | +| `Unwind@1001a8d2` | `1001a8d2` | `Unwind@1001a8d2` | +| `Unwind@1001a8dd` | `1001a8dd` | `Unwind@1001a8dd` | +| `Unwind@1001a8e5` | `1001a8e5` | `Unwind@1001a8e5` | +| `Unwind@1001a8ed` | `1001a8ed` | `Unwind@1001a8ed` | +| `Unwind@1001a8f8` | `1001a8f8` | `Unwind@1001a8f8` | +| `Unwind@1001a903` | `1001a903` | `Unwind@1001a903` | +| `Unwind@1001a90b` | `1001a90b` | `Unwind@1001a90b` | +| `Unwind@1001a916` | `1001a916` | `Unwind@1001a916` | +| `Unwind@1001a946` | `1001a946` | `Unwind@1001a946` | +| `Unwind@1001a94e` | `1001a94e` | `Unwind@1001a94e` | +| `Unwind@1001a971` | `1001a971` | `Unwind@1001a971` | +| `Unwind@1001a979` | `1001a979` | `Unwind@1001a979` | +| `thunk_FUN_10007018` | `1001aaaa` | `thunk_FUN_10007018` | +| `Rsrc_REGISTRY_65_409` | `1002a19c` | `` | +| `Rsrc_TYPELIB_1_409` | `1002a444` | `` | +| `Rsrc_StringTable_7_409` | `10037e10` | `` | +| `Rsrc_Version_1_409` | `10037e40` | `` | +| `Rsrc_Manifest_2_409` | `10038210` | `` | +| `ExceptionList` | `ffdff000` | `` | +| `StackBase` | `ffdff004` | `` | +| `StackLimit` | `ffdff008` | `` | +| `SubSystemTib` | `ffdff00c` | `` | +| `FiberData` | `ffdff010` | `` | +| `ArbitraryUserPointer` | `ffdff014` | `` | +| `Self` | `ffdff018` | `` | +| `EnvironmentPointer` | `ffdff01c` | `` | +| `ClientId` | `ffdff020` | `` | +| `ActiveRpcHandle` | `ffdff028` | `` | +| `ThreadLocalStoragePointer` | `ffdff02c` | `` | +| `ProcessEnvironmentBlock` | `ffdff030` | `` | +| `LastErrorValue` | `ffdff034` | `` | +| `CountOfOwnedCriticalSections` | `ffdff038` | `` | +| `CsrClientThread` | `ffdff03c` | `` | +| `Win32ThreadInfo` | `ffdff040` | `` | +| `User32Reserved` | `ffdff044` | `` | +| `UserReserved` | `ffdff0ac` | `` | +| `WOW32Reserved` | `ffdff0c0` | `` | +| `CurrentLocale` | `ffdff0c4` | `` | +| `FpSoftwareStatusRegister` | `ffdff0c8` | `` | +| `SystemReserved1` | `ffdff0cc` | `` | +| `ExceptionCode` | `ffdff1a4` | `` | +| `ActivationContextStackPointer` | `ffdff1a8` | `` | +| `SpareBytes` | `ffdff1ac` | `` | +| `TxFsContext` | `ffdff1d0` | `` | +| `GdiTebBatch` | `ffdff1d4` | `` | +| `RealClientId` | `ffdff6b4` | `` | +| `GdiCachedProcessHandle` | `ffdff6bc` | `` | +| `GdiClientPID` | `ffdff6c0` | `` | +| `GdiCLientTID` | `ffdff6c4` | `` | +| `GdiThreadLocalInfo` | `ffdff6c8` | `` | +| `Win32ClientInfo` | `ffdff6cc` | `` | +| `glDispatchTable` | `ffdff7c4` | `` | +| `glReserved1` | `ffdffb68` | `` | +| `glReserved2` | `ffdffbdc` | `` | +| `glSectionInfo` | `ffdffbe0` | `` | +| `glSection` | `ffdffbe4` | `` | +| `glTable` | `ffdffbe8` | `` | +| `glCurrentRC` | `ffdffbec` | `` | +| `glContext` | `ffdffbf0` | `` | +| `LastStatusValue` | `ffdffbf4` | `` | +| `StaticUnicodeBuffer` | `ffdffc00` | `` | +| `DeallocationStack` | `ffdffe0c` | `` | +| `TlsSlots` | `ffdffe10` | `` | +| `TlsLinks.Flink` | `ffdfff10` | `` | +| `TlsLinks.Blink` | `ffdfff14` | `` | +| `Vdm` | `ffdfff18` | `` | +| `ReservedForNtRpc` | `ffdfff1c` | `` | +| `DbgSsReserved` | `ffdfff20` | `` | +| `HardErrorMode` | `ffdfff28` | `` | +| `Instrumentation` | `ffdfff2c` | `` | +| `ActivityId` | `ffdfff50` | `` | +| `SubProcessTag` | `ffdfff60` | `` | +| `EtwLocalData` | `ffdfff64` | `` | +| `EtwTraceData` | `ffdfff68` | `` | +| `WinSockData` | `ffdfff6c` | `` | +| `GdiBatchCount` | `ffdfff70` | `` | +| `IdealProcessorValue` | `ffdfff74` | `` | +| `GuaranteedStackBytes` | `ffdfff78` | `` | +| `ReservedForPerf` | `ffdfff7c` | `` | +| `ReservedForOle` | `ffdfff80` | `` | +| `WaitingOnLoaderLock` | `ffdfff84` | `` | +| `SavedPriorityState` | `ffdfff88` | `` | +| `SoftPatchPtr1` | `ffdfff8c` | `` | +| `ThreadPoolData` | `ffdfff90` | `` | +| `TlsExpansionSlots` | `ffdfff94` | `` | +| `MuiGeneration` | `ffdfff98` | `` | +| `IsImpersonating` | `ffdfff9c` | `` | +| `NlsCache` | `ffdfffa0` | `` | +| `pShimData` | `ffdfffa4` | `` | +| `HeapVirtualAffinity` | `ffdfffa8` | `` | +| `CurrentTransactionHandle` | `ffdfffac` | `` | +| `ActiveFrame` | `ffdfffb0` | `` | +| `FlsData` | `ffdfffb4` | `` | +| `PreferredLanguages` | `ffdfffb8` | `` | +| `UserPrefLanguages` | `ffdfffbc` | `` | +| `MergedPrefLanguages` | `ffdfffc0` | `` | +| `MuiImpersonation` | `ffdfffc4` | `` | +| `CrossTebFlags` | `ffdfffc8` | `` | +| `SameTebFlags` | `ffdfffca` | `` | +| `TxnScopeEnterCallback` | `ffdfffcc` | `` | +| `TxnScopeExitCallback` | `ffdfffd0` | `` | +| `TxnScopeContext` | `ffdfffd4` | `` | +| `LockCount` | `ffdfffd8` | `` | +| `ResourceRetValue` | `ffdfffe0` | `` | + +## Interesting Strings and Referencing Functions + +| Address | String | Referencing Functions | +| ---: | --- | --- | +| `1001cef8` | `LmxProxy` | `DllGetClassObject@1000c873` | +| `1001d85c` | `d:\\bldsrc\\6\\s\\src\\lmxproxy\\mxcallback.h` | `FUN_1000f9b6@1000f9b6` | +| `1001d888` | `CLMXProxyServer::VerifyItemValid - hLMXServer ` | `FUN_1000fa3b@1000fa3b` | +| `1001d8e8` | `CLMXProxyServer::VerifyItemValid - hItem ` | `FUN_1000fa3b@1000fa3b` | +| `1001d958` | `CLMXProxyServer::VerifyAdvisedItem - returning E_INVALIDARG` | `FUN_1000fb02@1000fb02` | +| `1001d9d0` | `CLMXProxyServer::InitializeDefaultLocale set to ` | `FUN_1000fb71@1000fb71` | +| `1001da5c` | `LMXProxyServer.cpp` | `Catch@10011e5f@10011e5f\`, \`Catch@10011edc@10011edc\`, \`Catch@10011f58@10011f58\`, \`Catch@10012306@10012306\`, \`Catch@1001238a@1001238a\`, \`Catch@10012407@10012407\`, \`Catch@1001254e@1001254e\`, \`Catch@100125d1@100125d1\`, \`Catch@1001264d@1001264d\`, \`Catch@10012808@10012808\`, \`Catch@1001288b@1001288b\`, \`Catch@10012907@10012907\`, \`Catch@10012ac5@10012ac5\`, \`Catch@10012b49@10012b49\`, \`Catch@10012bc6@10012bc6\`, \`Catch@10012ddf@10012ddf\`, \`Catch@10012e62@10012e62\`, \`Catch@10012ede@10012ede\`, \`Catch@1001313b@1001313b\`, \`Catch@100131be@100131be\`, \`Catch@1001323a@1001323a\`, \`Catch@100134b9@100134b9\`, \`Catch@1001353c@1001353c\`, \`Catch@100135b8@100135b8\`, \`Catch@1001385a@1001385a\`, \`Catch@100138dd@100138dd\`, \`Catch@10013959@10013959\`, \`Catch@10013c57@10013c57\`, \`Catch@10013cda@10013cda\`, \`Catch@10013d56@10013d56\`, \`Catch@10013ee3@10013ee3\`, \`Catch@10013f66@10013f66\`, \`Catch@10013fe2@10013fe2\`, \`Catch@1001416f@1001416f\`, \`Catch@100141f2@100141f2\`, \`Catch@1001426e@1001426e\`, \`Catch@1001442d@1001442d\`, \`Catch@100144b0@100144b0\`, \`Catch@1001452c@1001452c\`, \`Catch@10014784@10014784\`, \`Catch@10014807@10014807\`, \`Catch@10014883@10014883\`, \`Catch@1001529a@1001529a\`, \`Catch@1001531d@1001531d\`, \`Catch@10015399@10015399\`, \`Catch@10015ad6@10015ad6\`, \`Catch@10015b59@10015b59\`, \`Catch@10015bd5@10015bd5\`, \`FUN_1000fb71@1000fb71\`, \`FUN_1000fb71@1000fb71\`, \`FUN_1000fb71@1000fb71\`, \`FUN_1000fb71@1000fb71\`, \`FUN_10012693@10012693\`, \`FUN_10012693@10012693\`, \`FUN_10012693@10012693\`, \`FUN_1001399f@1001399f\`, \`FUN_100142b4@100142b4\`, \`FUN_100142b4@100142b4\`, \`FUN_100142b4@100142b4\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f\`, \`FUN_1001556f@1001556f` | +| `1001dae0` | `CLMXProxyServer::SetBufferedUpdateInterval - hLMXServer ` | `FUN_1000fc80@1000fc80\`, \`FUN_1000fc80@1000fc80` | +| `1001db58` | `CLMXProxyServer::SetBufferedUpdateInterval - returning E_INVALIDARG` | `FUN_1000fc80@1000fc80` | +| `1001dce8` | `lmxproxy loaded by the Process ProcessName :%s` | `FUN_10010b1f@10010b1f` | +| `1001dee8` | `lmxproxy is loaded by internal Process and mxaccess licensing is not required` | `FUN_10011185@10011185` | +| `1001df88` | `CLMXProxyServer::AddBufferedItem - Server Handle ` | `FUN_1001121d@1001121d` | +| `1001e0b8` | `CLMXProxyServer::AddBufferedItem - Server Handle: ` | `FUN_1001121d@1001121d\`, \`FUN_1001121d@1001121d\`, \`FUN_1001121d@1001121d` | +| `1001e188` | `CLMXProxyServer::AddBufferedItem - Valid License: ` | `FUN_1001121d@1001121d` | +| `1001e6d0` | `CLMXProxyServer::AddItem - returning HRESULT ` | `FUN_10011b71@10011b71` | +| `1001e750` | `CLMXProxyServer::AddItem - Server Handle: ` | `FUN_10011b71@10011b71\`, \`FUN_10011b71@10011b71\`, \`FUN_10011b71@10011b71` | +| `1001e7a8` | `CLMXProxyServer::AddItem - Valid License: ` | `FUN_10011b71@10011b71` | +| `1001e800` | `CLMXProxyServer::AddItem2 - returning HRESULT ` | `FUN_10011f9e@10011f9e` | +| `1001e870` | `CLMXProxyServer::AddItem2 - Server Handle: ` | `FUN_10011f9e@10011f9e\`, \`FUN_10011f9e@10011f9e\`, \`FUN_10011f9e@10011f9e` | +| `1001e8c8` | `CLMXProxyServer::AddItem2 - Valid License: ` | `FUN_10011f9e@10011f9e` | +| `1001e920` | `CLMXProxyServer::RemoveItem - returning HRESULT ` | `FUN_1001244d@1001244d` | +| `1001e988` | `CLMXProxyServer::RemoveItem - Server Handle ` | `FUN_1001244d@1001244d` | +| `1001e9e8` | `CLMXProxyServer::Advise - returning HRESULT ` | `FUN_10012693@10012693` | +| `1001ea48` | `CLMXProxyServer::Advise - Server Handle ` | `FUN_10012693@10012693` | +| `1001eaa0` | `CLMXProxyServer::UnAdvise - returning HRESULT ` | `FUN_1001294d@1001294d` | +| `1001eb00` | `CLMXProxyServer::UnAdvise - Server Handle ` | `FUN_1001294d@1001294d` | +| `1001eb58` | `CLMXProxyServer::Write - returning HRESULT ` | `FUN_10012c0c@10012c0c\`, \`FUN_10013280@10013280` | +| `1001ebb0` | `CLMXProxyServer::Write - Server Handle ` | `FUN_10012c0c@10012c0c\`, \`FUN_10013280@10013280` | +| `1001ec38` | `CLMXProxyServer::WriteVerified - returning HRESULT ` | `FUN_10012f24@10012f24\`, \`FUN_100135fe@100135fe` | +| `1001eca0` | `CLMXProxyServer::WriteSecured - Server Handle ` | `FUN_10012f24@10012f24\`, \`FUN_100135fe@100135fe` | +| `1001ed80` | `CLMXProxyServer::AuthenticateUser - returning HRESULT E_INVALIDARG` | `FUN_1001399f@1001399f` | +| `1001ee08` | `CLMXProxyServer::AuthenticateUser - returning HRESULT S_OK UserId ` | `FUN_1001399f@1001399f` | +| `1001eeb0` | `CLMXProxyServer::AuthenticateUser - Server Handle: ` | `FUN_1001399f@1001399f\`, \`FUN_1001399f@1001399f` | +| `1001ef78` | `CLMXProxyServer::Suspend - returning HRESULT ` | `FUN_10013d9c@10013d9c` | +| `1001efd8` | `CLMXProxyServer::Suspend - Query for IMxScanOnDemand failed` | `FUN_10013d9c@10013d9c` | +| `1001f050` | `CLMXProxyServer::Suspend - Server Handle ` | `FUN_10013d9c@10013d9c` | +| `1001f0a8` | `CLMXProxyServer::Activate - returning HRESULT ` | `FUN_10014028@10014028` | +| `1001f108` | `CLMXProxyServer::Activate - Query for IMxScanOnDemand failed` | `FUN_10014028@10014028` | +| `1001f188` | `CLMXProxyServer::Activate - Server Handle ` | `FUN_10014028@10014028` | +| `1001f1e0` | `CLMXProxyServer::AdviseSupervisory - returning HRESULT ` | `FUN_100142b4@100142b4` | +| `1001f250` | `CLMXProxyServer::AdviseSupervisory - Server Handle ` | `FUN_100142b4@100142b4` | +| `1001f2b8` | `CLMXProxyServer::ArchestrAUserToId - returning HRESULT S_OK, UserId ` | `FUN_10014572@10014572` | +| `1001f348` | `CLMXProxyServer::ArchestrAUserToId - Server Handle: ` | `FUN_10014572@10014572\`, \`FUN_10014572@10014572` | +| `1001f3b8` | `CLMXProxyServer::ArchestrAUserToId - returning HRESULT E_INVALIDARG for invalid Server Handle` | `FUN_10014572@10014572` | +| `1001f4f0` | `CLMXProxyServer::Unregister - returning HRESULT ` | `FUN_10015171@10015171` | +| `1001f558` | `CLMXProxyServer::Unregister - Server Handle ` | `FUN_10015171@10015171` | +| `1001f5b8` | `CLMXProxyServer::Register - returning HRESULT ` | `FUN_1001556f@1001556f` | +| `1001f640` | `Multiple Threads calling CLMXProxyServer::Register() - not allowed.` | `FUN_1001556f@1001556f` | +| `1001f6e8` | `CLMXProxyServer::Register - Unregistering existing Client app` | `FUN_1001556f@1001556f` | +| `1001f768` | `CLMXProxyServer::Register - ClientName ` | `FUN_1001556f@1001556f` | +| `1001f7b8` | `CLMXProxyServer::Register - Client name NULL - returning E_POINTER HRESULT` | `FUN_1001556f@1001556f` | +| `1001f888` | `CProxy_ILMXProxyServerEvents::Fire_OnDataChange firing event - Server Handle ` | `FUN_10015f72@10015f72` | +| `1001f968` | `CProxy_ILMXProxyServerEvents::Fire_OnWriteComplete firing event - Server Handle ` | `FUN_1001611f@1001611f` | +| `1001fa10` | `CProxy_ILMXProxyServerEvents::Fire_OperationComplete firing event - Server Handle ` | `FUN_10016271@10016271` | +| `1001fab8` | `CProxy_ILMXProxyServerEvents2::Fire_OnBufferedDataChange firing event - Server Handle ` | `FUN_100163c0@100163c0` | +| `1001fc40` | `Fire_OnDataChange - threw an unknown exception` | `Catch@10016992@10016992\`, \`Catch@10016b10@10016b10` | +| `1001fed8` | `Fire_OnWriteComplete - threw an unknown exception` | `Catch@10016cd3@10016cd3` | +| `10026484` | `FindResourceW` | `` | +| `10027c40` | `LMXProxy.DLL` | `` | +| `10028538` | `.?AV?$CComObject@VCLMXProxyServer@@@ATL@@` | `` | +| `1002856c` | `.?AVCLMXProxyServer@@` | `` | +| `10028600` | `.?AV?$CComCoClass@VCLMXProxyServer@@$1?CLSID_LMXProxyServer@@3U_GUID@@B@ATL@@` | `` | +| `10028678` | `.?AV?$IConnectionPointContainerImpl@VCLMXProxyServer@@@ATL@@` | `` | +| `100286e8` | `.?AV?$IDispatchImpl@UILMXProxyServer5@@$1?IID_ILMXProxyServer5@@3U_GUID@@B$1?LIBID_LMXPROXYLib@@3U3@B$00$0A@VCComTypeInfoHolder@ATL@@@ATL@@` | `` | +| `1002877c` | `.?AUILMXProxyServer5@@` | `` | +| `1002879c` | `.?AUILMXProxyServer4@@` | `` | +| `100287bc` | `.?AUILMXProxyServer3@@` | `` | +| `100287dc` | `.?AUILMXProxyServer2@@` | `` | +| `100287fc` | `.?AUILMXProxyServer@@` | `` | +| `10028838` | `.?AV?$CProxy_ILMXProxyServerEvents@VCLMXProxyServer@@@@` | `` | +| `10028878` | `.?AV?$IConnectionPointImpl@VCLMXProxyServer@@$1?DIID__ILMXProxyServerEvents@@3U_GUID@@BVCComDynamicUnkArray@ATL@@@ATL@@` | `` | +| `100288f8` | `.?AV?$_ICPLocator@$1?DIID__ILMXProxyServerEvents@@3U_GUID@@B@ATL@@` | `` | +| `10028948` | `.?AV?$CProxy_ILMXProxyServerEvents2@VCLMXProxyServer@@@@` | `` | +| `10028990` | `.?AV?$IConnectionPointImpl@VCLMXProxyServer@@$1?DIID__ILMXProxyServerEvents2@@3U_GUID@@BVCComDynamicUnkArray@ATL@@@ATL@@` | `` | +| `10028a18` | `.?AV?$_ICPLocator@$1?DIID__ILMXProxyServerEvents2@@3U_GUID@@B@ATL@@` | `` | +| `10028a64` | `.?AV?$CComContainedObject@VCLMXProxyServer@@@ATL@@` | `` | +| `10028aa0` | `.?AV?$CComAggObject@VCLMXProxyServer@@@ATL@@` | `` | +| `10037e18` | `LMXProxy` | `` | +| `10037f70` | `LmxProxy_v0045` | `` | +| `10037fb8` | `LMXProxy Module` | `` | +| `100381b0` | `LMXProxy.DLL` | `` | + +## Interesting API Callers + +| Caller | Entry | Call Targets | +| --- | ---: | --- | +| `FUN_1000103c` | `1000103c` | `CoGetClassObject` | +| `FUN_100010bf` | `100010bf` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1000111b` | `1000111b` | `SysFreeString` | +| `FUN_100012e6` | `100012e6` | `SysFreeString` | +| `FUN_100013b9` | `100013b9` | `memcpy_s` | +| `FUN_1000150e` | `1000150e` | `SysFreeString` | +| `FUN_10001517` | `10001517` | `VariantInit` | +| `InternalCopy` | `10001525` | `VariantCopy` | +| `FUN_100015aa` | `100015aa` | `memset` | +| `FUN_1000174a` | `1000174a` | `memset` | +| `FUN_10001885` | `10001885` | `SysAllocString` | +| `FUN_100018bb` | `100018bb` | `SysAllocStringByteLen` | +| `FUN_10001903` | `10001903` | `SysFreeString` | +| `FUN_10001923` | `10001923` | `VariantCopy\`, \`VariantInit` | +| `FUN_1000194b` | `1000194b` | `VariantChangeType` | +| `FUN_10001d80` | `10001d80` | `SysAllocStringLen\`, \`SysFreeString` | +| `Copy` | `10001e0a` | `SysAllocStringByteLen` | +| `FUN_10001e27` | `10001e27` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10001f45` | `10001f45` | `VariantClear` | +| `FUN_10001f4d` | `10001f4d` | `VariantClear` | +| `FUN_10001fad` | `10001fad` | `SysFreeString` | +| `FUN_100023f0` | `100023f0` | `VariantClear` | +| `FUN_10002439` | `10002439` | `VariantClear` | +| `FUN_10002470` | `10002470` | `VariantClear` | +| `FUN_100024a8` | `100024a8` | `SysAllocString\`, \`VariantClear` | +| `FUN_100024ed` | `100024ed` | `VariantClear` | +| `FID_conflict:_Tidy` | `10002b22` | `memcpy` | +| `FUN_10002d5c` | `10002d5c` | `memcpy` | +| `FUN_100032de` | `100032de` | `memmove` | +| `FUN_1000339c` | `1000339c` | `memcpy` | +| `FID_conflict:_Chassign` | `100035e7` | `_wmemset` | +| `FUN_10003cbd` | `10003cbd` | `memcpy` | +| `FID_conflict:assign` | `10003d59` | `memcpy` | +| `FUN_10003e37` | `10003e37` | `memcpy_s` | +| `FUN_10003f60` | `10003f60` | `SafeArrayAccessData\`, \`SafeArrayCreateEx\`, \`SafeArrayGetLBound\`, \`SafeArrayUnaccessData` | +| `FUN_1000411e` | `1000411e` | `VariantClear\`, \`VariantInit` | +| `FUN_100043c4` | `100043c4` | `memmove` | +| `FUN_10004419` | `10004419` | `SafeArrayAccessData\`, \`SafeArrayGetDim\`, \`SafeArrayUnaccessData\`, \`VariantChangeType\`, \`VariantInit` | +| `FUN_10004794` | `10004794` | `SafeArrayUnaccessData\`, \`VariantClear` | +| `FUN_100048df` | `100048df` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit` | +| `FUN_10004a70` | `10004a70` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit` | +| `FUN_10004c31` | `10004c31` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit` | +| `FUN_100051dc` | `100051dc` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit` | +| `FUN_10005491` | `10005491` | `VariantClear` | +| `FUN_10005dd6` | `10005dd6` | `SafeArrayCreate\`, \`SafeArrayPutElement\`, \`VariantClear\`, \`VariantInit` | +| `FUN_100060a2` | `100060a2` | `SafeArrayAccessData\`, \`SafeArrayUnaccessData\`, \`SysFreeString\`, \`VariantChangeType\`, \`VariantClear\`, \`VariantInit` | +| `FUN_1000689d` | `1000689d` | `SysAllocStringByteLen` | +| `FUN_100068e0` | `100068e0` | `memset` | +| `FUN_100069ad` | `100069ad` | `SafeArrayCreate\`, \`SafeArrayPutElement\`, \`SysFreeString` | +| `FUN_10006f68` | `10006f68` | `memcpy_s` | +| `FUN_10007044` | `10007044` | `memset` | +| `Attach` | `1000728f` | `SysFreeString` | +| `FUN_10007481` | `10007481` | `memset` | +| `FUN_10007d60` | `10007d60` | `memset` | +| `QueryInterface` | `100082c6` | `AtlInternalQueryInterface` | +| `FUN_10008354` | `10008354` | `AtlInternalQueryInterface` | +| `FUN_10008723` | `10008723` | `QueryInterface` | +| `FUN_1000874b` | `1000874b` | `QueryInterface` | +| `FUN_100087d7` | `100087d7` | `SysAllocString` | +| `FUN_10008abb` | `10008abb` | `SysFreeString` | +| `FUN_10008fd9` | `10008fd9` | `CoCreateInstance` | +| `FUN_100095b6` | `100095b6` | `CoCreateInstance` | +| `FUN_100098d4` | `100098d4` | `SysFreeString` | +| `FUN_100099a4` | `100099a4` | `SysFreeString` | +| `QueryInterface` | `1000a081` | `AtlInternalQueryInterface` | +| `FUN_1000a642` | `1000a642` | `memset` | +| `QueryInterface` | `1000b3b3` | `AtlInternalQueryInterface` | +| `QueryInterface` | `1000b57f` | `AtlInternalQueryInterface` | +| `FUN_1000bc0c` | `1000bc0c` | `FindResourceW` | +| `FUN_1000bf4f` | `1000bf4f` | `AtlInternalQueryInterface` | +| `FUN_1000bfd9` | `1000bfd9` | `AtlInternalQueryInterface` | +| `FUN_1000c0ec` | `1000c0ec` | `AtlInternalQueryInterface` | +| `FUN_1000ca30` | `1000ca30` | `memset` | +| `FUN_1000ca95` | `1000ca95` | `SysFreeString` | +| `FUN_1000ce59` | `1000ce59` | `memset` | +| `FUN_1000ced2` | `1000ced2` | `memset` | +| `FUN_1000cf4e` | `1000cf4e` | `memset` | +| `FUN_1000cfca` | `1000cfca` | `memset` | +| `FUN_1000d144` | `1000d144` | `SysFreeString` | +| `FUN_1000d263` | `1000d263` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1000d2ee` | `1000d2ee` | `SysFreeString` | +| `FUN_1000d36d` | `1000d36d` | `VariantChangeType\`, \`VariantClear` | +| `FUN_1000d4d1` | `1000d4d1` | `VariantChangeType\`, \`VariantClear` | +| `FUN_1000dadd` | `1000dadd` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FUN_1000dc80` | `1000dc80` | `SysFreeString` | +| `FUN_1000dcbb` | `1000dcbb` | `SysAllocString` | +| `FUN_1000e281` | `1000e281` | `SysFreeString` | +| `FUN_1000e3b2` | `1000e3b2` | `SysFreeString` | +| `FUN_1000e4bf` | `1000e4bf` | `memcpy\`, \`memmove` | +| `QueryInterface` | `1000e686` | `AtlInternalQueryInterface` | +| `FUN_1000e6bf` | `1000e6bf` | `QueryInterface` | +| `FUN_1000efbf` | `1000efbf` | `memcpy` | +| `FUN_1000f0af` | `1000f0af` | `CreateClientConnection` | +| `FUN_1000f52e` | `1000f52e` | `memcpy` | +| `FUN_1000fb71` | `1000fb71` | `CoCreateInstance` | +| `FUN_10010a84` | `10010a84` | `SysAllocStringLen\`, \`SysFreeString\`, \`memcpy_s` | +| `FUN_10010b1f` | `10010b1f` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FUN_1001121d` | `1001121d` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1001150e` | `1001150e` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FUN_10011f9e` | `10011f9e` | `CoCreateInstance` | +| `FUN_1001399f` | `1001399f` | `SysFreeString` | +| `FUN_10014572` | `10014572` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10014a4f` | `10014a4f` | `SysFreeString` | +| `FUN_1001556f` | `1001556f` | `CoCreateInstance\`, \`SysAllocString\`, \`SysFreeString` | +| `FUN_10015d08` | `10015d08` | `VariantClear` | +| `FUN_10015d66` | `10015d66` | `VariantClear` | +| `FUN_1001657f` | `1001657f` | `SafeArrayDestroy\`, \`SysFreeString\`, \`VariantClear\`, \`VariantInit` | +| `FUN_10016d1a` | `10016d1a` | `SafeArrayDestroy` | +| `FUN_10016f2e` | `10016f2e` | `memset` | +| `FUN_10016fef` | `10016fef` | `memset` | +| `ConvertStringToBSTR` | `10017150` | `SysAllocString` | +| `FUN_1001ab90` | `1001ab90` | `VariantClear` | + diff --git a/analysis/ghidra/exports/LmxProxy.dll.item-helper-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.item-helper-decompile.md new file mode 100644 index 0000000..8ce46a0 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.item-helper-decompile.md @@ -0,0 +1,315 @@ +# LmxProxy.dll selected decompile + +## FUN_1000f663 at 1000f663 + +Signature: `undefined __thiscall FUN_1000f663(void * this, undefined4 * param_1, int * param_2)` + +```c + +void __thiscall FUN_1000f663(void *this,undefined4 *param_1,int *param_2) + +{ + int *piVar1; + int *piVar2; + int **ppiVar3; + int *local_8; + + piVar1 = param_2; + local_8 = this; + piVar2 = FUN_1000d781(this,param_2); + if ((piVar2 == *(int **)((int)this + 4)) || (*piVar1 < piVar2[3])) { + local_8 = *(int **)((int)this + 4); + ppiVar3 = &local_8; + } + else { + ppiVar3 = ¶m_2; + } + *param_1 = *ppiVar3; + return; +} + + +``` + +## FUN_1000fa3b at 1000fa3b + +Signature: `undefined4 __thiscall FUN_1000fa3b(void * this, int param_1, int param_2, int * param_3, int * param_4)` + +```c + +undefined4 __thiscall FUN_1000fa3b(void *this,int param_1,int param_2,int *param_3,int *param_4) + +{ + void *pvVar1; + basic_ostream_> bVar2; + basic_ostream_> *pbVar3; + wchar_t *pwVar4; + int iVar5; + wchar_t *pwVar6; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var7; + void *local_8; + + local_8 = this; + FUN_1000f663((void *)((int)this + 0x2c),&local_8,¶m_1); + pvVar1 = local_8; + if (local_8 == *(void **)((int)this + 0x30)) { + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 == (basic_ostream_>)0x0) { + return 0x80070057; + } + pwVar4 = L"CLMXProxyServer::VerifyItemValid - hLMXServer "; + iVar5 = param_1; + } + else { + *param_3 = (int)local_8 + 0x10; + FUN_1000f5ef((void *)((int)local_8 + 0x3c),¶m_1,¶m_2); + if (param_1 != *(int *)((int)pvVar1 + 0x40)) { + *param_4 = param_1; + return 0; + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 == (basic_ostream_>)0x0) { + return 0x80070057; + } + pwVar4 = L"CLMXProxyServer::VerifyItemValid - hItem "; + iVar5 = param_2; + } + pwVar6 = L" not found."; + p_Var7 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc),pwVar4); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar5); + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar6); + std::basic_ostream_>::operator<<(pbVar3,p_Var7); + return 0x80070057; +} + + +``` + +## FUN_1000f9b6 at 1000f9b6 + +Signature: `int __cdecl FUN_1000f9b6(undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5)` + +```c + +int __cdecl +FUN_1000f9b6(undefined4 param_1,undefined4 param_2,undefined4 param_3,undefined4 param_4, + undefined4 param_5) + +{ + undefined4 *puVar1; + undefined4 uVar2; + int iVar3; + + iVar3 = -0x7fffbffb; + puVar1 = operator_new(0x18); + if (puVar1 == (undefined4 *)0x0) { + puVar1 = (undefined4 *)0x0; + } + else { + puVar1 = FUN_1000e607(puVar1); + } + uVar2 = FUN_1000f816((undefined4 *)(uint)(puVar1 != (undefined4 *)0x0),0x46, + "d:\\bldsrc\\6\\s\\src\\lmxproxy\\mxcallback.h"); + if ((char)uVar2 != '\0') { + puVar1[3] = param_1; + puVar1[4] = param_2; + puVar1[5] = param_3; + iVar3 = (**(code **)*puVar1)(puVar1,&DAT_1001c3a0,param_4); + if ((iVar3 == 0) && (iVar3 = (**(code **)*puVar1)(puVar1,&DAT_1001c480,param_5), iVar3 == 0)) { + return 0; + } + operator_delete(puVar1); + } + return iVar3; +} + + +``` + +## FUN_1000fb02 at 1000fb02 + +Signature: `undefined4 __thiscall FUN_1000fb02(void * this, int param_1, int param_2, int * param_3, int * param_4)` + +```c + +undefined4 __thiscall FUN_1000fb02(void *this,int param_1,int param_2,int *param_3,int *param_4) + +{ + basic_ostream_> bVar1; + int iVar2; + undefined4 uVar3; + basic_ostream_> *this_00; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var4; + int local_8; + + local_8 = 0; + iVar2 = FUN_1000fa3b(this,param_1,param_2,param_3,&local_8); + if ((iVar2 < 0) || (*(char *)(local_8 + 0x1c) == '\0')) { + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + p_Var4 = endl_exref; + this_00 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::VerifyAdvisedItem - returning E_INVALIDARG"); + std::basic_ostream_>::operator<<(this_00,p_Var4); + } + uVar3 = 0x80070057; + } + else { + *param_4 = local_8 + 0x10; + uVar3 = 0; + } + return uVar3; +} + + +``` + +## FUN_1000f743 at 1000f743 + +Signature: `void * __cdecl FUN_1000f743(void * param_1, undefined4 * param_2, CComBSTR * param_3)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +void * __cdecl FUN_1000f743(void *param_1,undefined4 *param_2,CComBSTR *param_3) + +{ + FUN_1000ef29(param_1,param_2,param_3); + return param_1; +} + + +``` + +## FUN_1000ffa9 at 1000ffa9 + +Signature: `int __thiscall FUN_1000ffa9(void * this, undefined4 * param_1)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +int __thiscall FUN_1000ffa9(void *this,undefined4 *param_1) + +{ + int iVar1; + + iVar1 = FUN_1000e196((int)this); + FUN_1000f796((int)this + 0xd,(void *)(iVar1 + 0xc),param_1); + return iVar1; +} + + +``` + +## FUN_100104d1 at 100104d1 + +Signature: `undefined __thiscall FUN_100104d1(void * this, undefined4 * param_1, int * param_2, char param_3)` + +```c + +void __thiscall FUN_100104d1(void *this,undefined4 *param_1,int *param_2,char param_3) + +{ + int *piVar1; + int *piVar2; + undefined4 *puVar3; + int *piVar4; + bool local_8; + + piVar1 = *(int **)((int)this + 4); + local_8 = true; + piVar4 = piVar1; + if (*(char *)(piVar1[1] + 0x2d) == '\0') { + piVar2 = (int *)piVar1[1]; + do { + piVar4 = piVar2; + if (param_3 == '\0') { + local_8 = param_2[3] < piVar4[3]; + } + else { + local_8 = param_2[3] <= piVar4[3]; + } + if (local_8 == false) { + piVar2 = (int *)piVar4[2]; + } + else { + piVar2 = (int *)*piVar4; + } + } while (*(char *)((int)piVar2 + 0x2d) == '\0'); + } + _param_3 = piVar4; + if (local_8 != false) { + if (piVar4 == (int *)*piVar1) { + local_8 = true; + goto LAB_10010530; + } + FUN_1000cce7((int *)¶m_3); + } + piVar1 = _param_3; + if (param_2[3] <= _param_3[3]) { + FUN_1000eef5(param_2 + 3,0); + operator_delete(param_2); + *param_1 = piVar1; + *(undefined1 *)(param_1 + 1) = 0; + return; + } +LAB_10010530: + puVar3 = (undefined4 *)FUN_1000fe75(this,(undefined4 *)¶m_3,local_8,piVar4,param_2); + *param_1 = *puVar3; + *(undefined1 *)(param_1 + 1) = 1; + return; +} + + +``` + +## FUN_1000dcbb at 1000dcbb + +Signature: `void * __thiscall FUN_1000dcbb(void * this, OLECHAR * param_1, undefined4 param_2)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +void * __thiscall FUN_1000dcbb(void *this,OLECHAR *param_1,undefined4 param_2) + +{ + BSTR pOVar1; + + if (param_1 == (OLECHAR *)0x0) { + *(undefined4 *)this = 0; + } + else { + pOVar1 = SysAllocString(param_1); + *(BSTR *)this = pOVar1; + if (pOVar1 == (BSTR)0x0) { + /* WARNING: Subroutine does not return */ + FUN_1000134e(0x8007000e); + } + } + *(undefined4 *)((int)this + 4) = param_2; + *(undefined4 *)((int)this + 8) = 0; + *(undefined4 *)((int)this + 0xc) = 0; + *(undefined4 *)((int)this + 0x10) = 0; + *(undefined4 *)((int)this + 0x14) = 0; + *(undefined1 *)((int)this + 0x18) = 0; + return this; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.item-record-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.item-record-decompile.md new file mode 100644 index 0000000..289d000 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.item-record-decompile.md @@ -0,0 +1,306 @@ +# LmxProxy.dll selected decompile + +## FUN_1000ef29 at 1000ef29 + +Signature: `void * __thiscall FUN_1000ef29(void * this, undefined4 * param_1, CComBSTR * param_2)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +void * __thiscall FUN_1000ef29(void *this,undefined4 *param_1,CComBSTR *param_2) + +{ + *(undefined4 *)this = *param_1; + FUN_1000e20b((void *)((int)this + 4),param_2); + return this; +} + + +``` + +## FUN_1000f5ef at 1000f5ef + +Signature: `undefined __thiscall FUN_1000f5ef(void * this, undefined4 * param_1, int * param_2)` + +```c + +void __thiscall FUN_1000f5ef(void *this,undefined4 *param_1,int *param_2) + +{ + int *piVar1; + int *piVar2; + int **ppiVar3; + int *local_8; + + piVar1 = param_2; + local_8 = this; + piVar2 = FUN_1000d755(this,param_2); + if ((piVar2 == *(int **)((int)this + 4)) || (*piVar1 < piVar2[3])) { + local_8 = *(int **)((int)this + 4); + ppiVar3 = &local_8; + } + else { + ppiVar3 = ¶m_2; + } + *param_1 = *ppiVar3; + return; +} + + +``` + +## FUN_1000d781 at 1000d781 + +Signature: `undefined4 * __thiscall FUN_1000d781(void * this, int * param_1)` + +```c + +undefined4 * __thiscall FUN_1000d781(void *this,int *param_1) + +{ + undefined4 *puVar1; + undefined4 *puVar2; + undefined4 *puVar3; + + puVar2 = *(undefined4 **)((int)this + 4); + if (*(char *)((int)puVar2[1] + 0x65) == '\0') { + puVar1 = puVar2; + puVar3 = (undefined4 *)puVar2[1]; + do { + puVar2 = puVar3; + if ((int)puVar2[3] < *param_1) { + puVar3 = (undefined4 *)puVar2[2]; + puVar2 = puVar1; + } + else { + puVar3 = (undefined4 *)*puVar2; + } + puVar1 = puVar2; + } while (*(char *)((int)puVar3 + 0x65) == '\0'); + } + return puVar2; +} + + +``` + +## FUN_1000e607 at 1000e607 + +Signature: `undefined4 * __fastcall FUN_1000e607(undefined4 * param_1)` + +```c + +undefined4 * __fastcall FUN_1000e607(undefined4 *param_1) + +{ + param_1[2] = 0; + param_1[3] = 0; + param_1[4] = 0; + param_1[5] = 0; + *param_1 = ATL::CComObject::vftable; + param_1[1] = ATL::CComObject::vftable; + (**(code **)(*DAT_100293dc + 4))(); + return param_1; +} + + +``` + +## FUN_1000f816 at 1000f816 + +Signature: `undefined4 __cdecl FUN_1000f816(undefined4 * param_1, int param_2, LPCSTR param_3)` + +```c + +/* WARNING: Function: __EH_prolog3 replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +undefined4 __cdecl FUN_1000f816(undefined4 *param_1,int param_2,LPCSTR param_3) + +{ + basic_ostream_> bVar1; + basic_ostream_> *pbVar2; + undefined3 extraout_var; + int *piVar3; + DWORD DVar4; + undefined1 uVar5; + wchar_t *pwVar6; + int iVar7; + wchar_t *pwVar8; + wchar_t *pwVar9; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var10; + + pbVar2 = (basic_ostream_> *)&LAB_10019887; + uVar5 = 0; + if (param_1 == (undefined4 *)0x0) { + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 4)); + pbVar2 = (basic_ostream_> *) + CONCAT31(extraout_var,bVar1); + if (bVar1 != (basic_ostream_>)0x0) { + piVar3 = FUN_1000da1d(¶m_1,param_3); + if ((undefined4 *)*piVar3 == (undefined4 *)0x0) { + pwVar6 = (wchar_t *)0x0; + } + else { + pwVar6 = *(wchar_t **)*piVar3; + } + p_Var10 = endl_exref; + DVar4 = GetLastError(); + pwVar9 = L" LAST ERROR "; + pwVar8 = L" FILE "; + iVar7 = param_2; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 4),L"INVARIANT FAILED LINE "); + pbVar2 = std::basic_ostream_>::operator<< + (pbVar2,iVar7); + piVar3 = (int *)FUN_10002dbf((int *)pbVar2,pwVar8); + piVar3 = (int *)FUN_10002dbf(piVar3,pwVar6); + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(piVar3,pwVar9); + pbVar2 = std::basic_ostream_>::operator<< + (pbVar2,DVar4); + pbVar2 = std::basic_ostream_>::operator<< + (pbVar2,p_Var10); + if (param_1 != (undefined4 *)0x0) { + pbVar2 = (basic_ostream_> *)FUN_100038c3(param_1); + } + } + } + else { + uVar5 = 1; + } + return CONCAT31((int3)((uint)pbVar2 >> 8),uVar5); +} + + +``` + +## FUN_1000f796 at 1000f796 + +Signature: `undefined __cdecl FUN_1000f796(undefined4 param_1, void * param_2, undefined4 * param_3)` + +```c + +void __cdecl FUN_1000f796(undefined4 param_1,void *param_2,undefined4 *param_3) + +{ + FUN_1000f4c5(param_2,param_3); + return; +} + + +``` + +## FUN_1000e196 at 1000e196 + +Signature: `undefined __fastcall FUN_1000e196(int param_1)` + +```c + +void __fastcall FUN_1000e196(int param_1) + +{ + undefined4 *puVar1; + + puVar1 = FUN_1000d8df((char *)0x1); + *puVar1 = *(undefined4 *)(param_1 + 4); + puVar1[1] = *(undefined4 *)(param_1 + 4); + puVar1[2] = *(undefined4 *)(param_1 + 4); + *(undefined2 *)(puVar1 + 0xb) = 0; + return; +} + + +``` + +## FUN_1000fe75 at 1000fe75 + +Signature: `undefined __thiscall FUN_1000fe75(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4)` + +```c + +void __thiscall +FUN_1000fe75(void *this,undefined4 *param_1,char param_2,undefined4 *param_3,int *param_4) + +{ + int *piVar1; + int *piVar2; + int iVar3; + int *piVar4; + + if (0x7fffffd < *(uint *)((int)this + 8)) { + FUN_1000eef5(param_4 + 3,0); + operator_delete(param_4); + /* WARNING: Subroutine does not return */ + std::_Xlength_error("map/set too long"); + } + *(uint *)((int)this + 8) = *(uint *)((int)this + 8) + 1; + param_4[1] = (int)param_3; + if (param_3 == *(undefined4 **)((int)this + 4)) { + (*(undefined4 **)((int)this + 4))[1] = param_4; + **(undefined4 **)((int)this + 4) = param_4; + *(int **)(*(int *)((int)this + 4) + 8) = param_4; + } + else if (param_2 == '\0') { + param_3[2] = param_4; + if (param_3 == *(undefined4 **)(*(int *)((int)this + 4) + 8)) { + *(int **)(*(int *)((int)this + 4) + 8) = param_4; + } + } + else { + *param_3 = param_4; + if (param_3 == (undefined4 *)**(int **)((int)this + 4)) { + **(int **)((int)this + 4) = (int)param_4; + } + } + iVar3 = param_4[1]; + piVar4 = param_4; + do { + if (*(char *)(iVar3 + 0x2c) != '\0') { + *(undefined1 *)(*(int *)(*(int *)((int)this + 4) + 4) + 0x2c) = 1; + *param_1 = param_4; + return; + } + piVar1 = (int *)piVar4[1]; + piVar2 = (int *)piVar1[1]; + if (piVar1 == (int *)*piVar2) { + iVar3 = piVar2[2]; + if (*(char *)(iVar3 + 0x2c) == '\0') { +LAB_1000ff40: + *(undefined1 *)(piVar1 + 0xb) = 1; + *(undefined1 *)(iVar3 + 0x2c) = 1; + *(undefined1 *)(*(int *)(piVar4[1] + 4) + 0x2c) = 0; + piVar4 = *(int **)(piVar4[1] + 4); + } + else { + if (piVar4 == (int *)piVar1[2]) { + FUN_1000dea8(this,(int)piVar1); + piVar4 = piVar1; + } + *(undefined1 *)(piVar4[1] + 0x2c) = 1; + *(undefined1 *)(*(int *)(piVar4[1] + 4) + 0x2c) = 0; + FUN_1000d6b4(this,*(int **)(piVar4[1] + 4)); + } + } + else { + iVar3 = *piVar2; + if (*(char *)(iVar3 + 0x2c) == '\0') goto LAB_1000ff40; + if (piVar4 == (int *)*piVar1) { + FUN_1000d6b4(this,piVar1); + piVar4 = piVar1; + } + *(undefined1 *)(piVar4[1] + 0x2c) = 1; + *(undefined1 *)(*(int *)(piVar4[1] + 4) + 0x2c) = 0; + FUN_1000dea8(this,*(int *)(piVar4[1] + 4)); + } + iVar3 = piVar4[1]; + } while( true ); +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.ondatachange-callback-xrefs.md b/analysis/ghidra/exports/LmxProxy.dll.ondatachange-callback-xrefs.md new file mode 100644 index 0000000..857ca24 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.ondatachange-callback-xrefs.md @@ -0,0 +1,10 @@ +# LmxProxy.dll xrefs + +## 0x1001657f at 1001657f + +Target function: `FUN_1001657f` + +| From | Ref type | Caller function | +| --- | --- | --- | +| `1001d424` | `DATA` | `` | + diff --git a/analysis/ghidra/exports/LmxProxy.dll.operation-candidates-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.operation-candidates-decompile.md new file mode 100644 index 0000000..da50d19 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.operation-candidates-decompile.md @@ -0,0 +1,731 @@ +# LmxProxy.dll selected decompile + +## FUN_1001244d at 1001244d + +Signature: `undefined __stdcall FUN_1001244d(int param_1, int param_2, int param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_1001244d(int param_1,int param_2,int param_3) + +{ + int *piVar1; + basic_ostream_> bVar2; + basic_ostream_> *pbVar3; + int iVar4; + int iVar5; + wchar_t *pwVar6; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var7; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_20 [2]; + int *local_18 [4]; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x34; + local_8 = 0; + FUN_10011b07(local_20); + local_8 = CONCAT31(local_8._1_3_,1); + local_18[0] = (int *)0x0; + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + pwVar6 = L" Item Handle "; + iVar5 = param_2; + iVar4 = param_3; + p_Var7 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::RemoveItem - Server Handle "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar5) + ; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar6); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var7); + } + iVar4 = FUN_1000fa3b((void *)(param_1 + -8),param_2,param_3,¶m_3,(int *)local_18); + piVar1 = local_18[0]; + iVar5 = param_3; + if (-1 < iVar4) { + FUN_1000d5d5(local_18[0] + 4,param_3); + FUN_10010202((void *)(iVar5 + 0x2c),¶m_3,piVar1); + iVar4 = 0; + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var7 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::RemoveItem - returning HRESULT "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var7); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_20[0]); + FUN_100125b4(); + return; +} + + +``` + +## FUN_10013d9c at 10013d9c + +Signature: `undefined __stdcall FUN_10013d9c(int param_1, int param_2, int * param_3, undefined4 param_4)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_10013d9c(int param_1,int param_2,int *param_3,undefined4 param_4) + +{ + basic_ostream_> bVar1; + basic_ostream_> *pbVar2; + int *piVar3; + int iVar4; + wchar_t *pwVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_24 [2]; + int local_1c; + int local_18; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x38; + local_8 = 0; + FUN_10011b07(local_24); + local_8 = CONCAT31(local_8._1_3_,1); + local_18 = 0; + local_1c = 0; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar5 = L" Item Handle "; + iVar4 = param_2; + piVar3 = param_3; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc),L"CLMXProxyServer::Suspend - Server Handle " + ); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar2,pwVar5); + pbVar2 = std::basic_ostream_>::operator<< + (pbVar2,(long)piVar3); + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + local_18 = FUN_1000fb02((void *)(param_1 + -8),param_2,(int)param_3,(int *)¶m_3,&local_1c); + if (-1 < local_18) { + FUN_1000de6d(¶m_3,(undefined4 *)param_3[5]); + local_8 = CONCAT31(local_8._1_3_,2); + if (param_3 == (int *)0x0) { + pwVar5 = L"CLMXProxyServer::Suspend - Query for IMxScanOnDemand failed"; + piVar3 = (int *)FUN_10003248(); + FUN_1000308b(piVar3,pwVar5); + } + else { + local_18 = (**(code **)(*param_3 + 0xc)) + (param_3,*(undefined4 *)(local_1c + 8),*(undefined4 *)(local_1c + 0x14), + param_4); + } + local_8 = CONCAT31((int3)(local_8 >> 8),1); + if (param_3 != (int *)0x0) { + (**(code **)(*param_3 + 8))(param_3); + } + } + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + iVar4 = local_18; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::Suspend - returning HRESULT "); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_24[0]); + FUN_10013f49(); + return; +} + + +``` + +## FUN_10014028 at 10014028 + +Signature: `undefined __stdcall FUN_10014028(int param_1, int param_2, int * param_3, undefined4 param_4)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_10014028(int param_1,int param_2,int *param_3,undefined4 param_4) + +{ + basic_ostream_> bVar1; + basic_ostream_> *pbVar2; + int *piVar3; + int iVar4; + wchar_t *pwVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_24 [2]; + int local_1c; + int local_18; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x38; + local_8 = 0; + FUN_10011b07(local_24); + local_8 = CONCAT31(local_8._1_3_,1); + local_18 = 0; + local_1c = 0; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar5 = L" Item Handle "; + iVar4 = param_2; + piVar3 = param_3; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::Activate - Server Handle "); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar2,pwVar5); + pbVar2 = std::basic_ostream_>::operator<< + (pbVar2,(long)piVar3); + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + local_18 = FUN_1000fb02((void *)(param_1 + -8),param_2,(int)param_3,(int *)¶m_3,&local_1c); + if (-1 < local_18) { + FUN_1000de6d(¶m_3,(undefined4 *)param_3[5]); + local_8 = CONCAT31(local_8._1_3_,2); + if (param_3 == (int *)0x0) { + pwVar5 = L"CLMXProxyServer::Activate - Query for IMxScanOnDemand failed"; + piVar3 = (int *)FUN_10003248(); + FUN_1000308b(piVar3,pwVar5); + } + else { + local_18 = (**(code **)(*param_3 + 0x10)) + (param_3,*(undefined4 *)(local_1c + 8),*(undefined4 *)(local_1c + 0x14), + param_4); + } + local_8 = CONCAT31((int3)(local_8 >> 8),1); + if (param_3 != (int *)0x0) { + (**(code **)(*param_3 + 8))(param_3); + } + } + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + iVar4 = local_18; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::Activate - returning HRESULT "); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_24[0]); + FUN_100141d5(); + return; +} + + +``` + +## FUN_10011f9e at 10011f9e + +Signature: `undefined __stdcall FUN_10011f9e(int * param_1, int * param_2, OLECHAR * param_3, undefined4 param_4, int * param_5)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_10011f9e(int *param_1,int *param_2,OLECHAR *param_3,undefined4 param_4,int *param_5) + +{ + char cVar1; + basic_ostream_> bVar2; + undefined1 uVar3; + undefined *puVar4; + int iVar5; + int *piVar6; + basic_ostream_> *pbVar7; + CComBSTR *pCVar8; + undefined4 *puVar9; + int *piVar10; + HRESULT HVar11; + uint uVar12; + OLECHAR *pOVar13; + undefined4 uVar14; + wchar_t *pwVar15; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var16; + undefined1 local_70 [4]; + undefined4 local_6c [7]; + undefined4 local_50 [7]; + undefined4 local_34 [5]; + undefined4 local_20; + HRESULT local_1c; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_18 [4]; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x60; + local_8 = 0; + FUN_10011b07(local_18); + piVar10 = param_1; + local_8 = CONCAT31(local_8._1_3_,1); + cVar1 = FUN_1000d2d6((int)(param_1 + -2)); + if (cVar1 == '\0') { + uVar14 = 0; + uVar12 = 1; + puVar4 = FUN_10003248(); + iVar5 = FUN_10003897(puVar4,uVar12); + puVar4 = FUN_10003248(); + uVar12 = FUN_1000305b(puVar4,iVar5,uVar14); + if ((char)uVar12 != '\0') { + pwVar15 = + L"Failed to retrieve information from the MXAccess_Runtime license. Either MXAccess_Runtime license is not available or expired." + ; + piVar6 = (int *)FUN_10003248(); + FUN_100030ef(piVar6,pwVar15); + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" No Valid License found - returning E_ACCESSDENIED HRESULT"; + p_Var16 = endl_exref; + uVar3 = FUN_1000d2d6((int)(piVar10 + -2)); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem2 - Valid License: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,(bool)uVar3); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + FUN_1001236d(); + return; + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (param_3 == (OLECHAR *)0x0) { + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" Item name NULL - returning E_INVALIDARG HRESULT"; + piVar10 = param_2; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem2 - Server Handle: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,(long)piVar10); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + FUN_1001236d(); + return; + } + if (param_5 == (int *)0x0) { + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" Item handle is NULL - returning E_POINTER HRESULT"; + piVar10 = param_2; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem2 - Server Handle: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,(long)piVar10); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + FUN_1001236d(); + return; + } + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" Item name: "; + piVar6 = param_2; + pOVar13 = param_3; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem2 - Server Handle: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,(long)piVar6); + piVar6 = (int *)FUN_10002dbf((int *)pbVar7,pwVar15); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(piVar6,pOVar13); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_20 = 0; + piVar6 = (int *)FUN_1000f663(piVar10 + 9,¶m_1,(int *)¶m_2); + iVar5 = *piVar6; + if (iVar5 == piVar10[10]) { + local_1c = -0x7ff8ffa9; + } + else { + param_2 = (int *)0x0; + local_8._1_3_ = (undefined3)(local_8 >> 8); + local_8._0_1_ = 3; + local_1c = CoCreateInstance((IID *)&DAT_1001e860,(LPUNKNOWN)0x0,0x17,(IID *)&DAT_1001cf8c, + ¶m_2); + if (-1 < local_1c) { + FUN_1000ddf7(¶m_1,param_2); + local_8._0_1_ = 4; + (**(code **)(*param_2 + 0x24))(param_2,param_3); + (**(code **)(*param_2 + 0x44))(param_2,param_4); + local_1c = (**(code **)(**(int **)(iVar5 + 0x28) + 0x14)) + (*(int **)(iVar5 + 0x28),param_2,&local_20); + if (local_1c == 0) { + piVar10 = (int *)(iVar5 + 0x14); + *piVar10 = *piVar10 + 1; + *param_5 = *piVar10; + pCVar8 = FUN_1000dcbb(local_50,param_3,local_20); + local_8._0_1_ = 5; + puVar9 = FUN_1000f743(local_70,piVar10,pCVar8); + local_8._0_1_ = 6; + cVar1 = '\0'; + piVar10 = (int *)FUN_1000ffa9((void *)(iVar5 + 0x3c),puVar9); + FUN_100104d1((void *)(iVar5 + 0x3c),local_34,piVar10,cVar1); + local_8._0_1_ = 5; + FUN_1000d2ee(local_6c); + local_8._0_1_ = 4; + FUN_1000d2ee(local_50); + } + local_8._0_1_ = 3; + if (param_1 != (int *)0x0) { + (**(code **)(*param_1 + 8))(param_1); + } + } + local_8 = CONCAT31(local_8._1_3_,1); + if (param_2 != (int *)0x0) { + (**(code **)(*param_2 + 8))(param_2); + } + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + iVar5 = *param_5; + pwVar15 = L" Item Handle: "; + HVar11 = local_1c; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem2 - returning HRESULT "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,HVar11); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + pbVar7 = std::basic_ostream_>::operator<<(pbVar7,iVar5) + ; + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + FUN_1001236d(); + return; +} + + +``` + +## FUN_1001150e at 1001150e + +Signature: `undefined __thiscall FUN_1001150e(void * this, undefined4 param_1, int * param_2, undefined1 * param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_GS replaced with injection: EH_prolog3 */ +/* WARNING: Removing unreachable block (ram,0x100117e5) */ +/* WARNING: Removing unreachable block (ram,0x10011809) */ + +void __thiscall FUN_1001150e(void *this,undefined4 param_1,int *param_2,undefined1 *param_3) + +{ + bool bVar1; + undefined *puVar2; + int iVar3; + int *piVar4; + HRESULT HVar5; + size_t sVar6; + BSTR *ppOVar7; + code *pcVar8; + undefined1 auStack_4c8 [20]; + undefined4 uStack_4b4; + uint uVar9; + wchar_t *pwVar10; + undefined4 uVar11; + BSTR local_474; + undefined1 *local_470; + int *local_46c; + undefined4 local_468; + HMODULE local_464; + FARPROC local_460; + HANDLE local_45c; + int local_458; + BSTR local_454; + uint local_450; + LPCWSTR local_44c; + BSTR local_448; + undefined4 local_444 [7]; + WCHAR local_428 [528]; + int local_8; + undefined4 uStack_4; + + uStack_4 = 0x470; + local_8 = 0x1001151d; + local_468 = param_1; + local_46c = param_2; + local_450 = 0; + *param_3 = 0; + local_470 = param_3; + bVar1 = FUN_1000dbd4(*(LPCWSTR *)this); + if (!bVar1) { + uVar11 = 0; + uVar9 = 1; + puVar2 = FUN_10003248(); + iVar3 = FUN_10003897(puVar2,uVar9); + puVar2 = FUN_10003248(); + uVar9 = FUN_1000305b(puVar2,iVar3,uVar11); + if ((char)uVar9 != '\0') { + pwVar10 = L"Can not create dump under MinidumpDirectory %s."; + piVar4 = (int *)FUN_10003248(); + FUN_100030ef(piVar4,pwVar10); + } + goto LAB_10011990; + } + local_458 = 0; + local_8._0_1_ = 0; + local_8._1_3_ = 0; + memset(local_428,0,0x412); + GetModuleFileNameW((HMODULE)0x0,local_428,0x208); + pwVar10 = wcsrchr(local_428,L'\\'); + if (pwVar10 + 1 == (OLECHAR *)0x0) { + local_448 = (BSTR)0x0; +LAB_100115d9: + local_8._0_1_ = 1; + ATL::CComBSTR::CComBSTR((CComBSTR *)&local_44c,this); + local_8._0_1_ = 2; + FUN_1000dd27(&local_44c,L"\\"); + HVar5 = FUN_1000ca95(&local_44c,local_448); + if (HVar5 < 0) goto LAB_1001162b; + FUN_1000dd27(&local_44c,L"*.dmp"); + local_45c = (HANDLE)FUN_1000d165(local_44c); + local_454 = (BSTR)FUN_1000e389(); + if ((int)local_45c < (int)local_454) { +LAB_10011719: + local_454 = (BSTR)0x0; + local_464 = FUN_1000d084(5,L"dbghelp.dll",'\0',(DWORD *)&local_454); + if (local_464 == (HMODULE)0x0) { + uVar11 = 0; + uVar9 = 1; + puVar2 = FUN_10003248(); + iVar3 = FUN_10003897(puVar2,uVar9); + puVar2 = FUN_10003248(); + uVar9 = FUN_1000305b(puVar2,iVar3,uVar11); + pcVar8 = SysFreeString_exref; + if ((char)uVar9 != '\0') { + pwVar10 = L"Failed to load dbghelp.dll to generate minidump. Error code : %d"; + piVar4 = (int *)FUN_10003248(); + FUN_100030ef(piVar4,pwVar10); + pcVar8 = SysFreeString_exref; + } + } + else { + local_460 = GetProcAddress(local_464,"MiniDumpWriteDump"); + FUN_1000e3b2(this,local_448,&local_458); + if (local_458 == 0) { + local_454 = SysAllocString(L""); + if (local_454 == (BSTR)0x0) goto LAB_10011626; + ppOVar7 = &local_454; + local_8 = 7; + local_450 = 2; + } + else { + ppOVar7 = (BSTR *)ATL::CComBSTR::CComBSTR((CComBSTR *)&local_474,(CComBSTR *)&local_458); + local_8 = CONCAT31(local_8._1_3_,6); + local_450 = 1; + } + local_45c = CreateFileW(*ppOVar7,0xc0000000,0,(LPSECURITY_ATTRIBUTES)0x0,2,0x80,(HANDLE)0x0) + ; + pcVar8 = SysFreeString_exref; + local_8 = 6; + if ((local_450 & 2) != 0) { + local_450 = local_450 & 0xfffffffd; + SysFreeString(local_454); + } + local_8 = 2; + if ((local_450 & 1) != 0) { + local_450 = local_450 & 0xfffffffe; + SysFreeString(local_474); + } + GetCurrentThreadId(); + FUN_1000e34e(); + GetCurrentProcessId(); + GetCurrentProcess(); + (*local_460)(); + CloseHandle(local_45c); + FreeLibrary(local_464); + iVar3 = local_458; + *local_470 = 1; + local_458 = 0; + *local_46c = iVar3; + } + } + else { + uVar9 = FUN_1000e323(); + if ((char)uVar9 == '\0') { + uVar11 = 0; + uVar9 = 1; + puVar2 = FUN_10003248(); + iVar3 = FUN_10003897(puVar2,uVar9); + puVar2 = FUN_10003248(); + uVar9 = FUN_1000305b(puVar2,iVar3,uVar11); + pcVar8 = SysFreeString_exref; + if ((char)uVar9 != '\0') { + pwVar10 = + L"Too many dump files have been generated for %s. Maximum allowed per process is %d"; + piVar4 = (int *)FUN_10003248(); + FUN_100030ef(piVar4,pwVar10); + pcVar8 = SysFreeString_exref; + } + } + else { + FUN_100042e8(local_444,local_448); + local_8._0_1_ = 3; + sVar6 = wcslen(L"*.dmp"); + FUN_1000f52e(local_444,L"*.dmp",sVar6); + local_464 = (HMODULE)&stack0xfffffb54; + uStack_4b4 = 0x100116bd; + basic_string<>(&stack0xfffffb54,local_444); + local_8._0_1_ = 4; + local_460 = (FARPROC)auStack_4c8; + FUN_100042e8(auStack_4c8,*(wchar_t **)this); + local_8._0_1_ = 3; + iVar3 = FUN_10010e85(); + if (iVar3 != 0) { + local_8._0_1_ = 2; + FID_conflict__Tidy(local_444,'\x01',0); + goto LAB_10011719; + } + local_8._0_1_ = 2; + FID_conflict__Tidy(local_444,'\x01',0); + pcVar8 = SysFreeString_exref; + } + } + local_8._0_1_ = 1; + (*pcVar8)(); + local_8 = (uint)local_8._1_3_ << 8; + (*pcVar8)(); + local_8 = 0xffffffff; + (*pcVar8)(); +LAB_10011990: + FUN_10017473(); + return; + } + local_448 = SysAllocString(pwVar10 + 1); + if (local_448 != (BSTR)0x0) goto LAB_100115d9; +LAB_10011626: + HVar5 = -0x7ff8fff2; +LAB_1001162b: + /* WARNING: Subroutine does not return */ + FUN_1000134e(HVar5); +} + + +``` + +## Catch@1001288b at 1001288b + +Signature: `undefined * __stdcall Catch@1001288b(void)` + +```c + +undefined * Catch_1001288b(void) + +{ + int iVar1; + void *pvVar2; + undefined4 uVar3; + int unaff_EBP; + + iVar1 = *(int *)(unaff_EBP + -0x28); + FUN_100109cb((void *)(unaff_EBP + 0x10),iVar1,"LMXProxyServer.cpp",0x262); + *(undefined1 *)(unaff_EBP + -4) = 4; + FUN_100038ee(*(uint *)(iVar1 + 4)); + *(undefined1 *)(unaff_EBP + -4) = 2; + if (*(undefined4 **)(unaff_EBP + 0x10) != (undefined4 *)0x0) { + FUN_100038c3(*(undefined4 **)(unaff_EBP + 0x10)); + *(undefined4 *)(unaff_EBP + 0x10) = 0; + } + pvVar2 = FUN_1000f7d7((void *)(unaff_EBP + -0x44),iVar1); + *(undefined1 *)(unaff_EBP + -4) = 5; + uVar3 = FUN_1000328b((int)pvVar2); + *(undefined4 *)(unaff_EBP + 0x10) = uVar3; + *(undefined1 *)(unaff_EBP + -4) = 2; + FUN_1000425c((undefined4 *)(unaff_EBP + -0x44)); + *(undefined4 *)(unaff_EBP + -4) = 0xffffffff; + return &DAT_10012902; +} + + +``` + +## Catch@10012ac5 at 10012ac5 + +Signature: `undefined * __stdcall Catch@10012ac5(void)` + +```c + +undefined * Catch_10012ac5(void) + +{ + uint uVar1; + undefined4 uVar2; + int unaff_EBP; + + FUN_10010994((void *)(unaff_EBP + 0x10),*(void **)(unaff_EBP + -0x18),"LMXProxyServer.cpp",0x294); + *(undefined1 *)(unaff_EBP + -4) = 4; + uVar1 = FUN_1000328b(*(int *)(unaff_EBP + -0x18)); + FUN_100038ee(uVar1); + *(undefined1 *)(unaff_EBP + -4) = 3; + if (*(undefined4 **)(unaff_EBP + 0x10) != (undefined4 *)0x0) { + FUN_100038c3(*(undefined4 **)(unaff_EBP + 0x10)); + *(undefined4 *)(unaff_EBP + 0x10) = 0; + } + uVar2 = FUN_1000328b(*(int *)(unaff_EBP + -0x18)); + *(undefined4 *)(unaff_EBP + 0x10) = uVar2; + *(undefined4 *)(unaff_EBP + -4) = 0xffffffff; + return &DAT_10012b29; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.selected-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.selected-decompile.md new file mode 100644 index 0000000..f08070d --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.selected-decompile.md @@ -0,0 +1,551 @@ +# LmxProxy.dll selected decompile + +## FUN_10011b71 at 10011b71 + +Signature: `int __stdcall FUN_10011b71(int param_1, int param_2, OLECHAR * param_3, int * param_4)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ +/* WARNING: Function: __EH_epilog3 replaced with injection: EH_epilog3 */ + +int FUN_10011b71(int param_1,int param_2,OLECHAR *param_3,int *param_4) + +{ + char cVar1; + basic_ostream_> bVar2; + undefined1 uVar3; + undefined *puVar4; + int iVar5; + int *piVar6; + basic_ostream_> *pbVar7; + int *piVar8; + CComBSTR *pCVar9; + undefined4 *puVar10; + int iVar11; + uint uVar12; + OLECHAR *pOVar13; + undefined4 uVar14; + wchar_t *pwVar15; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var16; + undefined1 local_6c [4]; + undefined4 local_68 [7]; + undefined4 local_4c [7]; + undefined4 local_30 [5]; + undefined4 local_1c; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_18 [4]; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x5c; + local_8 = 0; + FUN_10011b07(local_18); + iVar11 = param_1; + local_8 = CONCAT31(local_8._1_3_,1); + cVar1 = FUN_1000d2d6(param_1 + -8); + piVar6 = param_4; + if (cVar1 == '\0') { + uVar14 = 0; + uVar12 = 1; + puVar4 = FUN_10003248(); + iVar5 = FUN_10003897(puVar4,uVar12); + puVar4 = FUN_10003248(); + uVar12 = FUN_1000305b(puVar4,iVar5,uVar14); + if ((char)uVar12 != '\0') { + pwVar15 = + L"Failed to retrieve information from the MXAccess_Runtime license. Either MXAccess_Runtime license is not available or expired." + ; + piVar6 = (int *)FUN_10003248(); + FUN_100030ef(piVar6,pwVar15); + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" No Valid License found - returning E_ACCESSDENIED HRESULT"; + p_Var16 = endl_exref; + uVar3 = FUN_1000d2d6(iVar11 + -8); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem - Valid License: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,(bool)uVar3); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + param_2 = -0x7ff8fffb; + } + else if (param_3 == (OLECHAR *)0x0) { + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" Item name NULL - returning E_INVALIDARG HRESULT"; + iVar11 = param_2; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem - Server Handle: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,iVar11); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + param_2 = -0x7ff8ffa9; + } + else { + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (piVar6 == (int *)0x0) { + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" Item handle is NULL - returning E_POINTER HRESULT"; + iVar11 = param_2; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem - Server Handle: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,iVar11); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + param_2 = -0x7fffbffd; + } + else { + if (bVar2 != (basic_ostream_>)0x0) { + pwVar15 = L" Item name: "; + iVar5 = param_2; + pOVar13 = param_3; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem - Server Handle: "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,iVar5); + piVar8 = (int *)FUN_10002dbf((int *)pbVar7,pwVar15); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(piVar8,pOVar13); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_1c = 0; + piVar8 = (int *)FUN_1000f663((void *)(iVar11 + 0x24),¶m_1,¶m_2); + iVar5 = *piVar8; + if (iVar5 == *(int *)(iVar11 + 0x28)) { + param_2 = -0x7ff8ffa9; + } + else { + param_2 = (**(code **)(**(int **)(iVar5 + 0x28) + 0xc)) + (*(int **)(iVar5 + 0x28),param_3,&local_1c); + if (param_2 == 0) { + piVar8 = (int *)(iVar5 + 0x14); + *piVar8 = *piVar8 + 1; + *piVar6 = *piVar8; + pCVar9 = FUN_1000dcbb(local_4c,param_3,local_1c); + local_8._0_1_ = 2; + puVar10 = FUN_1000f743(local_6c,piVar8,pCVar9); + local_8._0_1_ = 3; + cVar1 = '\0'; + piVar8 = (int *)FUN_1000ffa9((void *)(iVar5 + 0x3c),puVar10); + FUN_100104d1((void *)(iVar5 + 0x3c),local_30,piVar8,cVar1); + local_8._0_1_ = 2; + FUN_1000d2ee(local_68); + local_8 = CONCAT31(local_8._1_3_,1); + FUN_1000d2ee(local_4c); + } + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + iVar11 = *piVar6; + pwVar15 = L" Item Handle: "; + iVar5 = param_2; + p_Var16 = endl_exref; + pbVar7 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AddItem - returning HRESULT "); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,iVar5); + pbVar7 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar7,pwVar15); + pbVar7 = std::basic_ostream_>::operator<< + (pbVar7,iVar11); + std::basic_ostream_>::operator<<(pbVar7,p_Var16); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_18[0]); + } + } + return param_2; +} + + +``` + +## FUN_10012693 at 10012693 + +Signature: `undefined __stdcall FUN_10012693(int param_1, int param_2, int param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_10012693(int param_1,int param_2,int param_3) + +{ + basic_ostream_> bVar1; + basic_ostream_> *pbVar2; + int iVar3; + void *this; + int iVar4; + wchar_t *pwVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_24 [2]; + int local_1c; + int local_18; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x38; + local_8 = 0; + FUN_10011b07(local_24); + local_8 = CONCAT31(local_8._1_3_,1); + local_18 = 0; + local_1c = 0; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar5 = L" Item Handle "; + iVar4 = param_2; + iVar3 = param_3; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc),L"CLMXProxyServer::Advise - Server Handle ") + ; + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar2,pwVar5); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar3) + ; + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + this = (void *)(param_1 + -8); + local_18 = FUN_1000fa3b(this,param_2,param_3,¶m_1,&local_1c); + iVar4 = local_1c; + if (-1 < local_18) { + if (*(char *)(local_1c + 0x1c) == '\0') { + local_18 = FUN_1000f9b6(this,param_2,param_3,local_1c + 0x20,local_1c + 0x24); + iVar3 = FUN_1000f8d9((undefined4 *)(uint)(local_18 == 0),local_18,0x253,"LMXProxyServer.cpp"); + if (iVar3 != 0) { + local_18 = (**(code **)(**(int **)(param_1 + 0x14) + 0x20)) + (*(int **)(param_1 + 0x14),*(undefined4 *)(iVar4 + 0x14), + *(undefined4 *)(iVar4 + 0x20),param_3,iVar4 + 0x18); + iVar3 = FUN_1000f8d9((undefined4 *)(uint)(local_18 == 0),local_18,0x256,"LMXProxyServer.cpp" + ); + if (iVar3 != 0) { + *(undefined1 *)(iVar4 + 0x1c) = 1; + } + } + } + else { + local_18 = -0x7ff8ffa9; + } + } + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + iVar4 = local_18; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::Advise - returning HRESULT "); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_24[0]); + FUN_1001286e(); + return; +} + + +``` + +## FUN_100142b4 at 100142b4 + +Signature: `undefined __stdcall FUN_100142b4(int param_1, int param_2, int param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_100142b4(int param_1,int param_2,int param_3) + +{ + basic_ostream_> bVar1; + basic_ostream_> *pbVar2; + int iVar3; + void *this; + int iVar4; + wchar_t *pwVar5; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var6; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_24 [2]; + int local_1c; + int local_18; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x38; + local_8 = 0; + FUN_10011b07(local_24); + local_8 = CONCAT31(local_8._1_3_,1); + local_18 = 0; + local_1c = 0; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar5 = L" Item Handle "; + iVar4 = param_2; + iVar3 = param_3; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AdviseSupervisory - Server Handle "); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar2,pwVar5); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar3) + ; + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + this = (void *)(param_1 + -8); + local_18 = FUN_1000fa3b(this,param_2,param_3,¶m_1,&local_1c); + iVar4 = local_1c; + if (-1 < local_18) { + if (*(char *)(local_1c + 0x1c) == '\0') { + local_18 = FUN_1000f9b6(this,param_2,param_3,local_1c + 0x20,local_1c + 0x24); + iVar3 = FUN_1000f8d9((undefined4 *)(uint)(local_18 == 0),local_18,0x4d9,"LMXProxyServer.cpp"); + if (iVar3 != 0) { + local_18 = (**(code **)(**(int **)(param_1 + 0x24) + 0xc)) + (*(int **)(param_1 + 0x24),*(undefined4 *)(iVar4 + 0x14),0xffffffff, + *(undefined4 *)(iVar4 + 0x20),0,iVar4 + 0x18); + iVar3 = FUN_1000f8d9((undefined4 *)(uint)(local_18 == 0),local_18,0x4dc,"LMXProxyServer.cpp" + ); + if (iVar3 != 0) { + *(undefined1 *)(iVar4 + 0x1c) = 1; + *(undefined1 *)(iVar4 + 0x1f) = 1; + } + } + } + else { + local_18 = -0x7ff8ffa9; + } + } + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + iVar4 = local_18; + p_Var6 = endl_exref; + pbVar2 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::AdviseSupervisory - returning HRESULT "); + pbVar2 = std::basic_ostream_>::operator<<(pbVar2,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar2,p_Var6); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_24[0]); + FUN_10014493(); + return; +} + + +``` + +## FUN_1001244d at 1001244d + +Signature: `undefined __stdcall FUN_1001244d(int param_1, int param_2, int param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_1001244d(int param_1,int param_2,int param_3) + +{ + int *piVar1; + basic_ostream_> bVar2; + basic_ostream_> *pbVar3; + int iVar4; + int iVar5; + wchar_t *pwVar6; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var7; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_20 [2]; + int *local_18 [4]; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x34; + local_8 = 0; + FUN_10011b07(local_20); + local_8 = CONCAT31(local_8._1_3_,1); + local_18[0] = (int *)0x0; + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + pwVar6 = L" Item Handle "; + iVar5 = param_2; + iVar4 = param_3; + p_Var7 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::RemoveItem - Server Handle "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar5) + ; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar6); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var7); + } + iVar4 = FUN_1000fa3b((void *)(param_1 + -8),param_2,param_3,¶m_3,(int *)local_18); + piVar1 = local_18[0]; + iVar5 = param_3; + if (-1 < iVar4) { + FUN_1000d5d5(local_18[0] + 4,param_3); + FUN_10010202((void *)(iVar5 + 0x2c),¶m_3,piVar1); + iVar4 = 0; + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var7 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::RemoveItem - returning HRESULT "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var7); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_20[0]); + FUN_100125b4(); + return; +} + + +``` + +## FUN_1001294d at 1001294d + +Signature: `undefined __stdcall FUN_1001294d(int param_1, LPCRITICAL_SECTION param_2, int param_3)` + +```c + +/* WARNING: Function: __EH_prolog3_catch replaced with injection: EH_prolog3 */ + +void FUN_1001294d(int param_1,LPCRITICAL_SECTION param_2,int param_3) + +{ + basic_ostream_> bVar1; + bool bVar2; + basic_ostream_> *pbVar3; + int iVar4; + int *piVar5; + LPCRITICAL_SECTION p_Var6; + wchar_t *pwVar7; + int iVar8; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var9; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_24; + int *local_20; + int local_18 [4]; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x38; + local_8 = 0; + FUN_10011b07(&local_24); + local_8 = CONCAT31(local_8._1_3_,1); + local_18[0] = 0; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + pwVar7 = L" Item Handle "; + p_Var6 = param_2; + iVar8 = param_3; + p_Var9 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::UnAdvise - Server Handle "); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,(long)p_Var6); + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar7); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar8) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var9); + } + iVar4 = FUN_1000fb02((void *)(param_1 + -8),(int)param_2,param_3,¶m_3,local_18); + iVar8 = local_18[0]; + if (-1 < iVar4) { + if (*(char *)(local_18[0] + 0xf) == '\0') { + piVar5 = *(int **)(param_3 + 0x14); + } + else { + piVar5 = *(int **)(param_3 + 0x20); + } + param_3 = (**(code **)(*piVar5 + 0x10))(piVar5,*(undefined4 *)(local_18[0] + 8)); + *(undefined1 *)(iVar8 + 0xc) = 0; + *(undefined1 *)(iVar8 + 0xf) = 0; + *(undefined4 *)(iVar8 + 8) = 0; + param_2 = (LPCRITICAL_SECTION)&DAT_100295bc; + EnterCriticalSection((LPCRITICAL_SECTION)&DAT_100295bc); + local_8 = CONCAT31(local_8._1_3_,2); + for (piVar5 = (int *)*DAT_100295b0; local_20 = piVar5, piVar5 != DAT_100295b0; + piVar5 = (int *)*piVar5) { + bVar2 = FUN_10008d10(piVar5 + 3,*(undefined4 **)(iVar8 + 0x10)); + if (bVar2) { + FUN_1000fdf8(&DAT_100295b0,¶m_1,piVar5); + break; + } + } + local_8 = CONCAT31(local_8._1_3_,1); + LeaveCriticalSection(param_2); + FUN_1000cbb3((int *)(iVar8 + 0x10)); + FUN_1000cbb3((int *)(iVar8 + 0x14)); + iVar4 = param_3; + } + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + p_Var9 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::UnAdvise - returning HRESULT "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var9); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_24); + FUN_10012b2c(); + return; +} + + +``` + diff --git a/analysis/ghidra/exports/LmxProxy.dll.string-refs.tsv b/analysis/ghidra/exports/LmxProxy.dll.string-refs.tsv new file mode 100644 index 0000000..35b0c28 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.string-refs.tsv @@ -0,0 +1,143 @@ +string_address string_value ref_from ref_function +1001cef8 LmxProxy 1000c87f DllGetClassObject@1000c873 +1001d85c d:\bldsrc\6\s\src\lmxproxy\mxcallback.h 1000f9e2 FUN_1000f9b6@1000f9b6 +1001d888 CLMXProxyServer::VerifyItemValid - hLMXServer 1000face FUN_1000fa3b@1000fa3b +1001d8e8 CLMXProxyServer::VerifyItemValid - hItem 1000faa8 FUN_1000fa3b@1000fa3b +1001d958 CLMXProxyServer::VerifyAdvisedItem - returning E_INVALIDARG 1000fb51 FUN_1000fb02@1000fb02 +1001d9d0 CLMXProxyServer::InitializeDefaultLocale set to 1000fc40 FUN_1000fb71@1000fb71 +1001da5c LMXProxyServer.cpp 1001280d Catch@10012808@10012808 +1001da5c LMXProxyServer.cpp 1001480c Catch@10014807@10014807 +1001da5c LMXProxyServer.cpp 1001385f Catch@1001385a@1001385a +1001da5c LMXProxyServer.cpp 10012890 Catch@1001288b@1001288b +1001da5c LMXProxyServer.cpp 10014888 Catch@10014883@10014883 +1001da5c LMXProxyServer.cpp 100138e2 Catch@100138dd@100138dd +1001da5c LMXProxyServer.cpp 1001290c Catch@10012907@10012907 +1001da5c LMXProxyServer.cpp 10013140 Catch@1001313b@1001313b +1001da5c LMXProxyServer.cpp 1001395e Catch@10013959@10013959 +1001da5c LMXProxyServer.cpp 10014174 Catch@1001416f@1001416f +1001da5c LMXProxyServer.cpp 100131c3 Catch@100131be@100131be +1001da5c LMXProxyServer.cpp 100141f7 Catch@100141f2@100141f2 +1001da5c LMXProxyServer.cpp 1001323f Catch@1001323a@1001323a +1001da5c LMXProxyServer.cpp 10014273 Catch@1001426e@1001426e +1001da5c LMXProxyServer.cpp 1001529f Catch@1001529a@1001529a +1001da5c LMXProxyServer.cpp 10015adb Catch@10015ad6@10015ad6 +1001da5c LMXProxyServer.cpp 10012aca Catch@10012ac5@10012ac5 +1001da5c LMXProxyServer.cpp 10015322 Catch@1001531d@1001531d +1001da5c LMXProxyServer.cpp 1001230b Catch@10012306@10012306 +1001da5c LMXProxyServer.cpp 10015b5e Catch@10015b59@10015b59 +1001da5c LMXProxyServer.cpp 10012b4e Catch@10012b49@10012b49 +1001da5c LMXProxyServer.cpp 1001539e Catch@10015399@10015399 +1001da5c LMXProxyServer.cpp 1001238f Catch@1001238a@1001238a +1001da5c LMXProxyServer.cpp 10015bda Catch@10015bd5@10015bd5 +1001da5c LMXProxyServer.cpp 10012bcb Catch@10012bc6@10012bc6 +1001da5c LMXProxyServer.cpp 1001240c Catch@10012407@10012407 +1001da5c LMXProxyServer.cpp 10014432 Catch@1001442d@1001442d +1001da5c LMXProxyServer.cpp 10013c5c Catch@10013c57@10013c57 +1001da5c LMXProxyServer.cpp 100134be Catch@100134b9@100134b9 +1001da5c LMXProxyServer.cpp 100144b5 Catch@100144b0@100144b0 +1001da5c LMXProxyServer.cpp 10013cdf Catch@10013cda@10013cda +1001da5c LMXProxyServer.cpp 10013541 Catch@1001353c@1001353c +1001da5c LMXProxyServer.cpp 10014531 Catch@1001452c@1001452c +1001da5c LMXProxyServer.cpp 10013d5b Catch@10013d56@10013d56 +1001da5c LMXProxyServer.cpp 10012553 Catch@1001254e@1001254e +1001da5c LMXProxyServer.cpp 100135bd Catch@100135b8@100135b8 +1001da5c LMXProxyServer.cpp 10012de4 Catch@10012ddf@10012ddf +1001da5c LMXProxyServer.cpp 100125d6 Catch@100125d1@100125d1 +1001da5c LMXProxyServer.cpp 10011e64 Catch@10011e5f@10011e5f +1001da5c LMXProxyServer.cpp 10012652 Catch@1001264d@1001264d +1001da5c LMXProxyServer.cpp 10012e67 Catch@10012e62@10012e62 +1001da5c LMXProxyServer.cpp 10012ee3 Catch@10012ede@10012ede +1001da5c LMXProxyServer.cpp 10011ee1 Catch@10011edc@10011edc +1001da5c LMXProxyServer.cpp 10013ee8 Catch@10013ee3@10013ee3 +1001da5c LMXProxyServer.cpp 10011f5d Catch@10011f58@10011f58 +1001da5c LMXProxyServer.cpp 10013f6b Catch@10013f66@10013f66 +1001da5c LMXProxyServer.cpp 10014789 Catch@10014784@10014784 +1001da5c LMXProxyServer.cpp 10013fe7 Catch@10013fe2@10013fe2 +1001da5c LMXProxyServer.cpp 1000fbb6 FUN_1000fb71@1000fb71 +1001da5c LMXProxyServer.cpp 1000fbdb FUN_1000fb71@1000fb71 +1001da5c LMXProxyServer.cpp 1000fc00 FUN_1000fb71@1000fb71 +1001da5c LMXProxyServer.cpp 10015719 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 100157aa FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 100157d7 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 1001580c FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 10015846 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 10015879 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 100158ae FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 100158e1 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 10015914 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 10015958 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 100159c3 FUN_1001556f@1001556f +1001da5c LMXProxyServer.cpp 10013b20 FUN_1001399f@1001399f +1001da5c LMXProxyServer.cpp 1001275f FUN_10012693@10012693 +1001da5c LMXProxyServer.cpp 10012797 FUN_10012693@10012693 +1001da5c LMXProxyServer.cpp 10014380 FUN_100142b4@100142b4 +1001da5c LMXProxyServer.cpp 100143ba FUN_100142b4@100142b4 +1001da5c LMXProxyServer.cpp 1000fbb1 FUN_1000fb71@1000fb71 +1001da5c LMXProxyServer.cpp 1001275a FUN_10012693@10012693 +1001da5c LMXProxyServer.cpp 1001437b FUN_100142b4@100142b4 +1001da5c LMXProxyServer.cpp 10015714 FUN_1001556f@1001556f +1001dae0 CLMXProxyServer::SetBufferedUpdateInterval - hLMXServer 1000fd08 FUN_1000fc80@1000fc80 +1001dae0 CLMXProxyServer::SetBufferedUpdateInterval - hLMXServer 1000fd72 FUN_1000fc80@1000fc80 +1001db58 CLMXProxyServer::SetBufferedUpdateInterval - returning E_INVALIDARG 1000fca7 FUN_1000fc80@1000fc80 +1001dce8 lmxproxy loaded by the Process ProcessName :%s 10010bd0 FUN_10010b1f@10010b1f +1001dee8 lmxproxy is loaded by internal Process and mxaccess licensing is not required 100111c0 FUN_10011185@10011185 +1001df88 CLMXProxyServer::AddBufferedItem - Server Handle 10011448 FUN_1001121d@1001121d +1001e0b8 CLMXProxyServer::AddBufferedItem - Server Handle: 100112fc FUN_1001121d@1001121d +1001e0b8 CLMXProxyServer::AddBufferedItem - Server Handle: 10011350 FUN_1001121d@1001121d +1001e0b8 CLMXProxyServer::AddBufferedItem - Server Handle: 1001139b FUN_1001121d@1001121d +1001e188 CLMXProxyServer::AddBufferedItem - Valid License: 100112a0 FUN_1001121d@1001121d +1001e6d0 CLMXProxyServer::AddItem - returning HRESULT 10011e12 FUN_10011b71@10011b71 +1001e750 CLMXProxyServer::AddItem - Server Handle: 10011c63 FUN_10011b71@10011b71 +1001e750 CLMXProxyServer::AddItem - Server Handle: 10011cc5 FUN_10011b71@10011b71 +1001e750 CLMXProxyServer::AddItem - Server Handle: 10011d1e FUN_10011b71@10011b71 +1001e7a8 CLMXProxyServer::AddItem - Valid License: 10011bfb FUN_10011b71@10011b71 +1001e800 CLMXProxyServer::AddItem2 - returning HRESULT 100122c0 FUN_10011f9e@10011f9e +1001e870 CLMXProxyServer::AddItem2 - Server Handle: 1001208f FUN_10011f9e@10011f9e +1001e870 CLMXProxyServer::AddItem2 - Server Handle: 100120e9 FUN_10011f9e@10011f9e +1001e870 CLMXProxyServer::AddItem2 - Server Handle: 10012141 FUN_10011f9e@10011f9e +1001e8c8 CLMXProxyServer::AddItem2 - Valid License: 10012028 FUN_10011f9e@10011f9e +1001e920 CLMXProxyServer::RemoveItem - returning HRESULT 10012518 FUN_1001244d@1001244d +1001e988 CLMXProxyServer::RemoveItem - Server Handle 1001248f FUN_1001244d@1001244d +1001e9e8 CLMXProxyServer::Advise - returning HRESULT 100127d2 FUN_10012693@10012693 +1001ea48 CLMXProxyServer::Advise - Server Handle 100126d8 FUN_10012693@10012693 +1001eaa0 CLMXProxyServer::UnAdvise - returning HRESULT 10012a89 FUN_1001294d@1001294d +1001eb00 CLMXProxyServer::UnAdvise - Server Handle 1001298f FUN_1001294d@1001294d +1001eb58 CLMXProxyServer::Write - returning HRESULT 10012da9 FUN_10012c0c@10012c0c +1001eb58 CLMXProxyServer::Write - returning HRESULT 10013483 FUN_10013280@10013280 +1001ebb0 CLMXProxyServer::Write - Server Handle 10012c7d FUN_10012c0c@10012c0c +1001ebb0 CLMXProxyServer::Write - Server Handle 10013309 FUN_10013280@10013280 +1001ec38 CLMXProxyServer::WriteVerified - returning HRESULT 10013105 FUN_10012f24@10012f24 +1001ec38 CLMXProxyServer::WriteVerified - returning HRESULT 10013824 FUN_100135fe@100135fe +1001eca0 CLMXProxyServer::WriteSecured - Server Handle 10012fac FUN_10012f24@10012f24 +1001eca0 CLMXProxyServer::WriteSecured - Server Handle 10013697 FUN_100135fe@100135fe +1001ed80 CLMXProxyServer::AuthenticateUser - returning HRESULT E_INVALIDARG 10013c04 FUN_1001399f@1001399f +1001ee08 CLMXProxyServer::AuthenticateUser - returning HRESULT S_OK UserId 10013b92 FUN_1001399f@1001399f +1001eeb0 CLMXProxyServer::AuthenticateUser - Server Handle: 10013a05 FUN_1001399f@1001399f +1001eeb0 CLMXProxyServer::AuthenticateUser - Server Handle: 10013a7c FUN_1001399f@1001399f +1001ef78 CLMXProxyServer::Suspend - returning HRESULT 10013eac FUN_10013d9c@10013d9c +1001efd8 CLMXProxyServer::Suspend - Query for IMxScanOnDemand failed 10013e67 FUN_10013d9c@10013d9c +1001f050 CLMXProxyServer::Suspend - Server Handle 10013de2 FUN_10013d9c@10013d9c +1001f0a8 CLMXProxyServer::Activate - returning HRESULT 10014138 FUN_10014028@10014028 +1001f108 CLMXProxyServer::Activate - Query for IMxScanOnDemand failed 100140f3 FUN_10014028@10014028 +1001f188 CLMXProxyServer::Activate - Server Handle 1001406e FUN_10014028@10014028 +1001f1e0 CLMXProxyServer::AdviseSupervisory - returning HRESULT 100143f7 FUN_100142b4@100142b4 +1001f250 CLMXProxyServer::AdviseSupervisory - Server Handle 100142f9 FUN_100142b4@100142b4 +1001f2b8 CLMXProxyServer::ArchestrAUserToId - returning HRESULT S_OK, UserId 100146eb FUN_10014572@10014572 +1001f348 CLMXProxyServer::ArchestrAUserToId - Server Handle: 100145be FUN_10014572@10014572 +1001f348 CLMXProxyServer::ArchestrAUserToId - Server Handle: 10014622 FUN_10014572@10014572 +1001f3b8 CLMXProxyServer::ArchestrAUserToId - returning HRESULT E_INVALIDARG for invalid Server Handle 10014748 FUN_10014572@10014572 +1001f4f0 CLMXProxyServer::Unregister - returning HRESULT 10015263 FUN_10015171@10015171 +1001f558 CLMXProxyServer::Unregister - Server Handle 100151ab FUN_10015171@10015171 +1001f5b8 CLMXProxyServer::Register - returning HRESULT 10015a9d FUN_1001556f@1001556f +1001f640 Multiple Threads calling CLMXProxyServer::Register() - not allowed. 10015974 FUN_1001556f@1001556f +1001f6e8 CLMXProxyServer::Register - Unregistering existing Client app 1001565e FUN_1001556f@1001556f +1001f768 CLMXProxyServer::Register - ClientName 100155ec FUN_1001556f@1001556f +1001f7b8 CLMXProxyServer::Register - Client name NULL - returning E_POINTER HRESULT 100155ab FUN_1001556f@1001556f +1001f888 CProxy_ILMXProxyServerEvents::Fire_OnDataChange firing event - Server Handle 10016083 FUN_10015f72@10015f72 +1001f968 CProxy_ILMXProxyServerEvents::Fire_OnWriteComplete firing event - Server Handle 100161f5 FUN_1001611f@1001611f +1001fa10 CProxy_ILMXProxyServerEvents::Fire_OperationComplete firing event - Server Handle 10016344 FUN_10016271@10016271 +1001fab8 CProxy_ILMXProxyServerEvents2::Fire_OnBufferedDataChange firing event - Server Handle 100164d1 FUN_100163c0@100163c0 +1001fc40 Fire_OnDataChange - threw an unknown exception 100169a9 Catch@10016992@10016992 +1001fc40 Fire_OnDataChange - threw an unknown exception 10016b27 Catch@10016b10@10016b10 +1001fed8 Fire_OnWriteComplete - threw an unknown exception 10016cea Catch@10016cd3@10016cd3 +10027c40 LMXProxy.DLL 10027bfc diff --git a/analysis/ghidra/exports/LmxProxy.dll.write-secured-decompile.md b/analysis/ghidra/exports/LmxProxy.dll.write-secured-decompile.md new file mode 100644 index 0000000..8ea7ad3 --- /dev/null +++ b/analysis/ghidra/exports/LmxProxy.dll.write-secured-decompile.md @@ -0,0 +1,323 @@ +# LmxProxy.dll selected decompile + +## FUN_10012f24 at 10012f24 + +Signature: `undefined __stdcall FUN_10012f24(int param_1, uint param_2, long param_3, long param_4, undefined1 * param_5, uint param_6, ULONG param_7, undefined4 param_8, undefined4 param_9)` + +```c + +/* WARNING: Function: __EH_prolog3_catch_GS replaced with injection: EH_prolog3 */ + +void FUN_10012f24(int param_1,uint param_2,long param_3,long param_4,undefined1 *param_5, + uint param_6,ULONG param_7,undefined4 param_8,undefined4 param_9) + +{ + basic_ostream_> bVar1; + uint uVar2; + basic_ostream_> *pbVar3; + int iVar4; + uint uVar5; + wchar_t *pwVar6; + long lVar7; + wchar_t *pwVar8; + long lVar9; + wchar_t *pwVar10; + undefined1 *puVar11; + wchar_t *pwVar12; + undefined4 uVar13; + long *plVar14; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var15; + undefined1 **ppuVar16; + _union_2683 local_6c; + long local_50; + int local_4c; + undefined1 *local_48; + long local_44; + uint local_40; + int local_3c; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_38 [4]; + undefined4 local_28; + undefined4 uStack_24; + undefined4 uStack_20; + undefined4 uStack_1c; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x5c; + local_3c = param_1; + local_40 = param_2; + local_50 = param_3; + local_44 = param_4; + local_48 = param_5; + local_6c._0_4_ = param_6; + local_6c.decVal.Hi32 = param_7; + local_6c._8_4_ = param_8; + local_6c._12_4_ = param_9; + local_8 = 0; + FUN_10011b07(local_38); + local_8 = CONCAT31(local_8._1_3_,1); + local_4c = 0; + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + uVar2 = local_6c._0_4_ & 0xffff; + pwVar12 = L" Variant Type "; + pwVar10 = L" VerifierUserID "; + pwVar8 = L" CurrentUserID "; + pwVar6 = L" Item Handle "; + uVar5 = local_40; + lVar7 = local_50; + lVar9 = local_44; + puVar11 = local_48; + p_Var15 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::WriteSecured - Server Handle "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,uVar5) + ; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar6); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,lVar7) + ; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar8); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,lVar9) + ; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar10); + pbVar3 = std::basic_ostream_>::operator<< + (pbVar3,(long)puVar11); + pbVar3 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar3,pwVar12); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,uVar2) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var15); + } + uVar2 = local_40; + iVar4 = FUN_1000fb02((void *)(param_1 + -8),local_40,local_50,(int *)&local_40,&local_4c); + uVar5 = local_40; + if (-1 < iVar4) { + if (*(char *)(local_4c + 0xf) == '\0') { + FUN_1000f629((void *)(local_40 + 0x3c),&local_40,&local_44); + if (local_40 == *(uint *)(uVar5 + 0x40)) { + iVar4 = -0x7ff8ffa9; + } + else { + local_28 = DAT_100201f8; + uStack_24 = DAT_100201fc; + uStack_20 = DAT_10020200; + uStack_1c = DAT_10020204; + ppuVar16 = &local_48; + plVar14 = &local_44; + uVar13 = 0x10013078; + FUN_1000f629((void *)(uVar5 + 0x3c),plVar14,(int *)ppuVar16); + if (local_44 != *(int *)(uVar5 + 0x40)) { + local_28 = *(undefined4 *)(local_44 + 0x10); + uStack_24 = *(undefined4 *)(local_44 + 0x14); + uStack_20 = *(undefined4 *)(local_44 + 0x18); + uStack_1c = *(undefined4 *)(local_44 + 0x1c); + } + local_48 = &stack0xffffff74; + uVar2 = uVar2 & 0xffff0000; + ATL::CComVariant::InternalCopy((CComVariant *)&stack0xffffff74,(tagVARIANT *)&local_6c.n2); + local_8 = CONCAT31((int3)(local_8 >> 8),1); + FUN_1000d36d((void *)(local_3c + -8),uVar2,uVar13,plVar14,ppuVar16); + iVar4 = (**(code **)(**(int **)(uVar5 + 0x14) + 0x18)) + (*(int **)(uVar5 + 0x14),*(undefined4 *)(local_4c + 8), + *(undefined4 *)(local_3c + 0x34),local_40 + 0x10); + } + } + else { + iVar4 = -0x7fffbfdf; + } + } + bVar1 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar1 != (basic_ostream_>)0x0) { + p_Var15 = endl_exref; + pbVar3 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::WriteVerified - returning HRESULT "); + pbVar3 = std::basic_ostream_>::operator<<(pbVar3,iVar4) + ; + std::basic_ostream_>::operator<<(pbVar3,p_Var15); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_38[0]); + FUN_100131a1(); + return; +} + + +``` + +## FUN_100135fe at 100135fe + +Signature: `undefined __stdcall FUN_100135fe(int param_1, uint param_2, long param_3, long param_4, undefined1 * param_5, uint param_6, ULONG param_7, undefined4 param_8, undefined4 param_9, uint param_10, ULONG param_11, undefined4 param_12, undefined4 param_13)` + +```c + +/* WARNING: Function: __EH_prolog3_catch_GS replaced with injection: EH_prolog3 */ + +void FUN_100135fe(int param_1,uint param_2,long param_3,long param_4,undefined1 *param_5, + uint param_6,ULONG param_7,undefined4 param_8,undefined4 param_9,uint param_10, + ULONG param_11,undefined4 param_12,undefined4 param_13) + +{ + undefined4 *puVar1; + basic_ostream_> bVar2; + uint uVar3; + uint uVar4; + basic_ostream_> *pbVar5; + int iVar6; + uint uVar7; + wchar_t *pwVar8; + long lVar9; + wchar_t *pwVar10; + long lVar11; + wchar_t *pwVar12; + undefined1 *puVar13; + wchar_t *pwVar14; + wchar_t *pwVar15; + undefined4 uVar16; + long *plVar17; + _func_basic_ostream_>_ptr_basic_ostream_>_ptr + *p_Var18; + undefined1 **ppuVar19; + _union_2683 local_78; + _union_2683 local_68; + long local_4c; + undefined1 *local_48; + uint local_44; + long local_40; + _func_void_uint__EXCEPTION_POINTERS_ptr *local_3c; + int local_38 [4]; + undefined4 local_28; + undefined4 uStack_24; + undefined4 uStack_20; + undefined4 uStack_1c; + uint local_8; + undefined4 uStack_4; + + uStack_4 = 0x68; + local_44 = param_2; + local_40 = param_3; + local_4c = param_4; + local_48 = param_5; + local_68._0_4_ = param_6; + local_68.decVal.Hi32 = param_7; + local_68._8_4_ = param_8; + local_68._12_4_ = param_9; + local_78._0_4_ = param_10; + local_78.decVal.Hi32 = param_11; + local_78._8_4_ = param_12; + local_78._12_4_ = param_13; + local_8 = 0; + FUN_10011b07(&local_3c); + local_8 = CONCAT31(local_8._1_3_,1); + local_38[0] = 0; + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + uVar3 = local_78._0_4_ & 0xffff; + pwVar15 = L" Time Type "; + uVar4 = local_68._0_4_ & 0xffff; + pwVar14 = L" Variant Type "; + pwVar12 = L" VerifierUserID "; + pwVar10 = L" CurrentUserID "; + pwVar8 = L" Item Handle "; + uVar7 = local_44; + lVar9 = local_40; + lVar11 = local_4c; + puVar13 = local_48; + p_Var18 = endl_exref; + pbVar5 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::WriteSecured - Server Handle "); + pbVar5 = std::basic_ostream_>::operator<<(pbVar5,uVar7) + ; + pbVar5 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar5,pwVar8); + pbVar5 = std::basic_ostream_>::operator<<(pbVar5,lVar9) + ; + pbVar5 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar5,pwVar10); + pbVar5 = std::basic_ostream_>::operator<< + (pbVar5,lVar11); + pbVar5 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar5,pwVar12); + pbVar5 = std::basic_ostream_>::operator<< + (pbVar5,(long)puVar13); + pbVar5 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar5,pwVar14); + pbVar5 = std::basic_ostream_>::operator<<(pbVar5,uVar4) + ; + pbVar5 = (basic_ostream_> *) + FUN_10002dbf((int *)pbVar5,pwVar15); + pbVar5 = std::basic_ostream_>::operator<<(pbVar5,uVar3) + ; + std::basic_ostream_>::operator<<(pbVar5,p_Var18); + } + uVar7 = local_44; + iVar6 = FUN_1000fb02((void *)(param_1 + -8),local_44,local_40,&local_40,local_38); + lVar9 = local_40; + if (-1 < iVar6) { + FUN_1000f629((void *)(local_40 + 0x3c),&local_44,&local_4c); + if (local_44 == *(uint *)(lVar9 + 0x40)) { + iVar6 = -0x7ff8ffa9; + } + else { + local_28 = DAT_100201f8; + uStack_24 = DAT_100201fc; + uStack_20 = DAT_10020200; + uStack_1c = DAT_10020204; + ppuVar19 = &local_48; + plVar17 = &local_4c; + uVar16 = 0x10013769; + FUN_1000f629((void *)(local_40 + 0x3c),plVar17,(int *)ppuVar19); + if (local_4c != *(int *)(local_40 + 0x40)) { + local_28 = *(undefined4 *)(local_4c + 0x10); + uStack_24 = *(undefined4 *)(local_4c + 0x14); + uStack_20 = *(undefined4 *)(local_4c + 0x18); + uStack_1c = *(undefined4 *)(local_4c + 0x1c); + } + local_48 = &stack0xffffff68; + uVar7 = uVar7 & 0xffff0000; + ATL::CComVariant::InternalCopy((CComVariant *)&stack0xffffff68,(tagVARIANT *)&local_68.n2); + local_8._1_3_ = (undefined3)(local_8 >> 8); + local_8._0_1_ = 1; + FUN_1000d36d((void *)(param_1 + -8),uVar7,uVar16,plVar17,ppuVar19); + local_48 = &stack0xffffff68; + uVar7 = uVar7 & 0xffff0000; + ATL::CComVariant::InternalCopy((CComVariant *)&stack0xffffff68,(tagVARIANT *)&local_78.n2); + local_8 = CONCAT31(local_8._1_3_,1); + FUN_1000d4d1((void *)(param_1 + -8),uVar7,uVar16,plVar17,ppuVar19); + puVar1 = (undefined4 *)(local_38[0] + 8); + local_38[0] = *(int *)(param_1 + 0x34); + iVar6 = (**(code **)(**(int **)(local_40 + 0x14) + 0x58)) + (*(int **)(local_40 + 0x14),*puVar1,*(int *)(param_1 + 0x34),0, + *(undefined4 *)(param_1 + 0x3c),*(undefined4 *)(param_1 + 0x40), + local_44 + 0x10); + } + } + bVar2 = FUN_10003f01(*(basic_ostream_> **) + (DAT_100294e0 + 0xc)); + if (bVar2 != (basic_ostream_>)0x0) { + p_Var18 = endl_exref; + pbVar5 = (basic_ostream_> *) + FUN_10002dbf(*(int **)(DAT_100294e0 + 0xc), + L"CLMXProxyServer::WriteVerified - returning HRESULT "); + pbVar5 = std::basic_ostream_>::operator<<(pbVar5,iVar6) + ; + std::basic_ostream_>::operator<<(pbVar5,p_Var18); + } + local_8 = local_8 & 0xffffff00; + _set_se_translator(local_3c); + FUN_100138c0(); + return; +} + + +``` + diff --git a/analysis/ghidra/exports/NmxAdptr.dll.call-refs.tsv b/analysis/ghidra/exports/NmxAdptr.dll.call-refs.tsv new file mode 100644 index 0000000..d5f5444 --- /dev/null +++ b/analysis/ghidra/exports/NmxAdptr.dll.call-refs.tsv @@ -0,0 +1,206 @@ +caller_entry caller_name call_address target +100011cc FUN_100011cc 10001208 memcpy_s +1000123d FUN_1000123d 100012d6 memcpy_s +100012fa FUN_100012fa 10001309 memcpy +10001313 FUN_10001313 10001322 memmove +100014ea FUN_100014ea 1000150e memcpy +100015a0 FUN_100015a0 100015b2 memcpy +1000185b FUN_1000185b 1000186a memcpy_s +100018d7 FUN_100018d7 100018df memset +1000196f Attach 10001980 SysFreeString +1000199c FUN_1000199c 100019cb SysFreeString +100019ff FUN_100019ff 10001a01 SysFreeString +10001f72 FUN_10001f72 10001fa0 SysFreeString +10001f72 FUN_10001f72 10001fbf SysFreeString +10002019 FUN_10002019 100020c4 memset +100022fb FUN_100022fb 10002329 memset +100024cf FUN_100024cf 100024e3 SysAllocString +10002510 FUN_10002510 10002538 SysAllocStringByteLen +10002589 FUN_10002589 10002593 SysFreeString +10002ae0 FUN_10002ae0 10002aef memmove +10002afa assign 10002b06 _wmemset +100034da FUN_100034da 100034ec CoCreateInstance +100034fc FUN_100034fc 10003510 CoCreateInstance +10003552 FUN_10003552 10003566 CoCreateInstance +100035a8 FUN_100035a8 100035bc CoCreateInstance +1000385d FUN_1000385d 1000387a memset +1000385d FUN_1000385d 100038a9 memset +100038d6 FUN_100038d6 100038f6 memset +100038d6 FUN_100038d6 10003925 memset +10003952 FUN_10003952 10003972 memset +10003952 FUN_10003952 100039a1 memset +100039ce FUN_100039ce 100039f2 memset +10003b48 FUN_10003b48 10003b5d SysFreeString +10003db5 FID_conflict:_Chassign 10003de8 _wmemset +10004312 FUN_10004312 1000432b SysAllocString +10004342 FUN_10004342 10004350 SysFreeString +10004342 FUN_10004342 1000435f SysAllocString +1000437f Copy 10004394 SysAllocStringByteLen +100043bb FUN_100043bb 100043d1 SysFreeString +10004402 FUN_10004402 1000448c SysAllocStringLen +10004402 FUN_10004402 100044dd SysFreeString +10004513 FUN_10004513 10004533 SysFreeString +10004564 FUN_10004564 10004597 SysFreeString +1000575d FUN_1000575d 100057be memset +1000575d FUN_1000575d 100057f8 SysAllocString +1000575d FUN_1000575d 10005822 SysFreeString +10005ef6 FID_conflict:_Tidy 10005f19 memcpy +100060f9 FUN_100060f9 1000612a memcpy +1000621f FUN_1000621f 1000623a memcpy +100064d6 FUN_100064d6 10006531 memset +100065f7 FUN_100065f7 10006608 SysFreeString +100073fd FUN_100073fd 1000743d CoCreateInstance +1000757d FUN_1000757d 100075bd CoCreateInstance +100076fd FUN_100076fd 1000773d CoCreateInstance +10007a8b FUN_10007a8b 10007af6 SysFreeString +10007bbc FUN_10007bbc 10007c82 SysFreeString +10007cf6 FUN_10007cf6 10007d4b memmove +10007dc1 FUN_10007dc1 10007ed2 memcpy +100080ad FUN_100080ad 10008142 memmove +100080ad FUN_100080ad 1000817f memmove +100080ad FUN_100080ad 100081ad memcpy +10008f8e FUN_10008f8e 10008fd6 CoCreateInstance +100090f9 FUN_100090f9 10009141 CoCreateInstance +100092b8 FUN_100092b8 10009300 CoCreateInstance +10009999 FUN_10009999 10009a0f memcpy +10009a35 FUN_10009a35 10009ab4 memcpy +10009ada FID_conflict:assign 10009b32 memcpy +10009cd3 FUN_10009cd3 10009d87 memset +10009f00 FUN_10009f00 10009f3f SysAllocString +10009f00 FUN_10009f00 10009fcb SysFreeString +10009f00 FUN_10009f00 1000a00f SysFreeString +1000a24e FUN_1000a24e 1000a345 memcpy +1000a24e FUN_1000a24e 1000a354 memcpy +1000ad6c FUN_1000ad6c 1000ade8 memcpy +1000bc36 FUN_1000bc36 1000bc5d memmove +1000de2a FUN_1000de2a 1000dfae SysFreeString +1000de2a FUN_1000de2a 1000dfb4 SysFreeString +1000de2a FUN_1000de2a 1000e13e SysFreeString +1000de2a FUN_1000de2a 1000e144 SysFreeString +1000e15a FUN_1000e15a 1000e2b6 SysFreeString +1000e15a FUN_1000e15a 1000e2bb SysFreeString +1000eb60 FUN_1000eb60 1000ebf5 memset +1000eb60 FUN_1000eb60 1000ec68 SysAllocString +1000eb60 FUN_1000eb60 1000eeb5 SysAllocString +1000eb60 FUN_1000eb60 1000ef21 SysFreeString +1000eb60 FUN_1000eb60 1000ef40 SysFreeString +1000eb60 FUN_1000eb60 1000efce SysFreeString +1000eb60 FUN_1000eb60 1000efd9 SysFreeString +1000eb60 FUN_1000eb60 1000efe0 SysFreeString +1000fdc6 FUN_1000fdc6 1001015a SysAllocString +1000fdc6 FUN_1000fdc6 100101d4 SysFreeString +10010d37 FUN_10010d37 10010f25 memcpy +10010d37 FUN_10010d37 10010f3d memcpy +10010d37 FUN_10010d37 10011044 SysFreeString +10011054 FUN_10011054 10011110 SysFreeString +10011054 FUN_10011054 1001118c memcpy +10011054 FUN_10011054 1001119c memcpy +10011054 FUN_10011054 100112c9 SysFreeString +100112da FUN_100112da 10011308 memcpy +100112da FUN_100112da 10011497 memcpy +100112da FUN_100112da 100115b1 memcpy +100112da FUN_100112da 100116ff memcpy +10013338 FUN_10013338 10013600 SysFreeString +100136bf FUN_100136bf 100137ca memcpy +1001432c FUN_1001432c 1001439f InSendMessageEx +1001432c FUN_1001432c 1001456a memcpy +10015169 FUN_10015169 10015412 memcpy +10015169 FUN_10015169 10015427 memcpy +10015169 FUN_10015169 10015824 SysFreeString +100159c3 FUN_100159c3 10015b5f memcpy +100159c3 FUN_100159c3 10015b71 memcpy +100159c3 FUN_100159c3 10015bbf SysFreeString +100159c3 FUN_100159c3 10015c96 memcpy +100159c3 FUN_100159c3 10015ec7 SysFreeString +100160da FUN_100160da 10016267 memset +10016460 FUN_10016460 10016476 memset +100165da FUN_100165da 100165e5 memset +1001681b FUN_1001681b 10016853 memcpy +100168ed FUN_100168ed 10016944 memset +100168ed FUN_100168ed 1001695d memset +100168ed FUN_100168ed 10016971 memset +100168ed FUN_100168ed 10016985 memset +100168ed FUN_100168ed 10016999 memset +10016ec4 FUN_10016ec4 10016edb memset +100178e6 FUN_100178e6 100178f0 memset +100179fe FUN_100179fe 10017a24 memset +10017aa0 FUN_10017aa0 10017ac2 memset +10017b0b FUN_10017b0b 10017b29 memset +1001850f FUN_1001850f 1001853b memset +100185c2 FUN_100185c2 100185e7 memset +10018638 FUN_10018638 1001865a memset +10019140 FUN_10019140 1001916c memset +100191f3 FUN_100191f3 10019218 memset +10019269 FUN_10019269 10019287 memset +10019d83 FUN_10019d83 10019d8d memset +10019e9b FUN_10019e9b 10019ec1 memset +10019f3d FUN_10019f3d 10019f5f memset +10019fab FUN_10019fab 10019fc9 memset +1001a9ad FUN_1001a9ad 1001a9d9 memset +1001aa60 FUN_1001aa60 1001aa85 memset +1001aad6 FUN_1001aad6 1001aaf8 memset +1001b555 FUN_1001b555 1001b581 memset +1001b608 FUN_1001b608 1001b62d memset +1001b67e FUN_1001b67e 1001b69c memset +1001bbc5 FUN_1001bbc5 1001bbd4 AtlInternalQueryInterface +1001bca4 FUN_1001bca4 1001bcb5 AtlInternalQueryInterface +1001bce4 FUN_1001bce4 1001bcf3 AtlInternalQueryInterface +1001bd2e FUN_1001bd2e 1001bd3f AtlInternalQueryInterface +1001bead FUN_1001bead 1001bed8 CoCreateInstance +1001bfa4 FUN_1001bfa4 1001c066 SysFreeString +1001c076 FUN_1001c076 1001c1a2 SysFreeString +1001c076 FUN_1001c076 1001c1c1 SysFreeString +1001c076 FUN_1001c076 1001c20f SysFreeString +1001c076 FUN_1001c076 1001c232 SysFreeString +1001c46e FUN_1001c46e 1001c49e memset +1001c4fb FUN_1001c4fb 1001c52b memset +1001c582 FUN_1001c582 1001c5ea memset +1001c582 FUN_1001c582 1001c655 memset +1001c582 FUN_1001c582 1001c66e memset +1001c582 FUN_1001c582 1001c7e4 memset +1001c582 FUN_1001c582 1001c7fe memset +1001c582 FUN_1001c582 1001c969 memset +1001c582 FUN_1001c582 1001c983 memset +1001c582 FUN_1001c582 1001caf0 memset +1001c582 FUN_1001c582 1001cb0a memset +1001cc62 FUN_1001cc62 1001cced memset +1001cc62 FUN_1001cc62 1001cd58 memset +1001cc62 FUN_1001cc62 1001cd71 memset +1001cc62 FUN_1001cc62 1001ceee memset +1001cc62 FUN_1001cc62 1001cf08 memset +1001cc62 FUN_1001cc62 1001d067 memset +1001cc62 FUN_1001cc62 1001d081 memset +1001cc62 FUN_1001cc62 1001d1f4 memset +1001cc62 FUN_1001cc62 1001d20e memset +1001db5c FUN_1001db5c 1001db88 memset +1001dc0f FUN_1001dc0f 1001dc34 memset +1001dc85 FUN_1001dc85 1001dca7 memset +1001e43b FUN_1001e43b 1001e467 memset +1001e4ee FUN_1001e4ee 1001e513 memset +1001e564 FUN_1001e564 1001e586 memset +1001e7a8 FUN_1001e7a8 1001e7b7 AtlInternalQueryInterface +1001e82a FUN_1001e82a 1001e83b AtlInternalQueryInterface +1001eeb5 FUN_1001eeb5 1001ef14 memcpy +1001ef3d FUN_1001ef3d 1001ef86 memset +1001f4cd FUN_1001f4cd 1001f4fa memset +1001f5c1 FUN_1001f5c1 1001f73d closesocket +1001f5c1 FUN_1001f5c1 1001f7a1 memset +1001f5c1 FUN_1001f5c1 1001f845 memcpy +1001f5c1 FUN_1001f5c1 1001f8d7 memset +1001f5c1 FUN_1001f5c1 1001f95c sendto +1001f5c1 FUN_1001f5c1 1001f9df memset +1001f5c1 FUN_1001f5c1 1001fa37 recvfrom +1001f5c1 FUN_1001f5c1 1001fac5 closesocket +1002003c memmove_s 1002004d memmove_s +1002005d RemoveAt 1002008e memmove_s +100200f2 FUN_100200f2 100200ff memset +10020332 FUN_10020332 1002033f memset +100205b0 _com_invoke_helper 10020674 memset +100205b0 _com_invoke_helper 10020858 VariantInit +100205b0 _com_invoke_helper 100208be VariantClear +100205b0 _com_invoke_helper 10020926 VariantChangeType +100205b0 _com_invoke_helper 10020936 VariantClear +100205b0 _com_invoke_helper 10020a58 VariantClear +10020ca0 _com_handle_excepinfo 10020d5f SysFreeString +10020ca0 _com_handle_excepinfo 10020d69 SysFreeString +10020ca0 _com_handle_excepinfo 10020d73 SysFreeString diff --git a/analysis/ghidra/exports/NmxAdptr.dll.functions.tsv b/analysis/ghidra/exports/NmxAdptr.dll.functions.tsv new file mode 100644 index 0000000..1f6cc09 --- /dev/null +++ b/analysis/ghidra/exports/NmxAdptr.dll.functions.tsv @@ -0,0 +1,2485 @@ +entry name signature body_size call_count interesting_calls +10001000 FUN_10001000 undefined FUN_10001000(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3) 26 0 +1000101a FUN_1000101a undefined FUN_1000101a(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7) 40 0 +10001042 FUN_10001042 undefined FUN_10001042(wchar_t * param_1, wchar_t param_2) 10 0 +10001069 FUN_10001069 uint FUN_10001069(uint param_1) 22 0 +10001082 FUN_10001082 undefined FUN_10001082(undefined4 * param_1) 22 1 +10001098 _IsEqualGUID bool _IsEqualGUID(void * param_1, void * param_2) 26 1 +100010b2 FUN_100010b2 undefined FUN_100010b2(void * param_1, void * param_2) 9 1 +100010bb FUN_100010bb undefined4 FUN_100010bb(int * param_1, void * param_2, undefined4 * param_3) 101 1 +10001120 FUN_10001120 undefined4 FUN_10001120(void) 6 0 +10001126 FUN_10001126 undefined4 FUN_10001126(void) 6 0 +1000112c FUN_1000112c undefined4 FUN_1000112c(void) 8 0 +10001134 FUN_10001134 undefined4 FUN_10001134(void) 8 0 +1000113c FUN_1000113c undefined4 FUN_1000113c(void) 8 0 +10001144 FUN_10001144 undefined4 FUN_10001144(void) 8 0 +1000114c FUN_1000114c undefined4 FUN_1000114c(void) 8 0 +10001154 FUN_10001154 undefined4 FUN_10001154(void) 8 0 +1000115c FUN_1000115c undefined4 FUN_1000115c(void) 8 0 +10001164 FUN_10001164 undefined4 FUN_10001164(void) 8 0 +1000116c FUN_1000116c undefined4 FUN_1000116c(int param_1, uint param_2, int param_3, int param_4, uint * param_5) 96 0 +100011cc FUN_100011cc uint FUN_100011cc(int param_1, void * param_2, rsize_t param_3, rsize_t * param_4) 113 1 memcpy_s +1000123d FUN_1000123d uint FUN_1000123d(int param_1, void * param_2, rsize_t param_3, rsize_t * param_4) 189 2 memcpy_s +100012fa FUN_100012fa undefined FUN_100012fa(void * param_1, void * param_2, int param_3) 25 1 memcpy +10001313 FUN_10001313 undefined FUN_10001313(void * param_1, void * param_2, int param_3) 26 1 memmove +1000132d _wmemset wchar_t * _wmemset(wchar_t * _S, wchar_t _C, size_t _N) 42 0 +1000135f FUN_1000135f undefined4 * FUN_1000135f(void * this, byte param_1) 31 2 +1000137e FUN_1000137e undefined FUN_1000137e(void * this, char param_1, undefined4 param_2, undefined4 param_3, short param_4) 41 0 +100013a7 FUN_100013a7 undefined4 * FUN_100013a7(void * this, LPCWSTR param_1) 88 3 +100013ff FUN_100013ff undefined FUN_100013ff(undefined4 * param_1) 21 1 +10001414 FUN_10001414 undefined4 FUN_10001414(int param_1) 37 1 +10001448 FUN_10001448 undefined4 * FUN_10001448(void * this, byte param_1) 31 2 +10001467 AtlMultiply<> undefined4 AtlMultiply<>(undefined4 * param_1, uint param_2, uint param_3) 34 0 +10001489 FUN_10001489 undefined FUN_10001489(void * this, undefined4 param_1, undefined4 param_2) 24 0 +100014a1 FUN_100014a1 undefined4 FUN_100014a1(int * param_1) 38 1 +100014c7 FUN_100014c7 undefined FUN_100014c7(int * param_1) 35 1 +100014ea FUN_100014ea undefined4 * FUN_100014ea(void * this, void * param_1) 104 5 memcpy +10001552 FUN_10001552 undefined FUN_10001552(undefined4 * param_1) 60 2 +10001592 FUN_10001592 undefined FUN_10001592(LPCWSTR param_1) 14 1 +100015a0 FUN_100015a0 undefined FUN_100015a0(void * this, void * param_1) 30 1 memcpy +100015c5 FUN_100015c5 undefined4 FUN_100015c5(void * this, int * param_1) 32 0 +100015e5 FUN_100015e5 undefined4 * FUN_100015e5(void * this, byte param_1) 31 2 +10001604 FUN_10001604 wchar_t * FUN_10001604(void * this, undefined4 * param_1) 46 1 +10001635 FUN_10001635 undefined FUN_10001635(void * this, int param_1) 125 3 +100016b2 FUN_100016b2 undefined FUN_100016b2(void * this, int param_1) 153 3 +1000175e FUN_1000175e undefined FUN_1000175e(void * this, undefined1 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 32 0 +1000177e FUN_1000177e undefined FUN_1000177e(int param_1) 23 1 +100017a7 FUN_100017a7 undefined FUN_100017a7(void) 1 0 +100017a8 FUN_100017a8 undefined FUN_100017a8(void * this, undefined4 param_1) 14 0 +100017b6 FUN_100017b6 undefined FUN_100017b6(undefined4 param_1) 23 1 +100017ce FUN_100017ce undefined FUN_100017ce(void) 26 2 +100017e9 AtlCrtErrorCheck int AtlCrtErrorCheck(int param_1) 56 1 +1000182e FUN_1000182e undefined8 FUN_1000182e(uint param_1, int param_2, uint param_3) 45 0 +1000185b FUN_1000185b undefined FUN_1000185b(void * param_1, rsize_t param_2, void * param_3, rsize_t param_4) 32 2 memcpy_s +100018a4 Init long Init(CComCriticalSection * this) 41 2 +100018d7 FUN_100018d7 CComCriticalSection * FUN_100018d7(CComCriticalSection * param_1) 37 3 memset +100018fc FUN_100018fc undefined FUN_100018fc(LPCRITICAL_SECTION param_1) 8 1 +10001913 FUN_10001913 undefined FUN_10001913(int * param_1) 20 1 +10001927 FUN_10001927 undefined FUN_10001927(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 27 0 +10001948 FUN_10001948 undefined FUN_10001948(int * param_1, undefined4 param_2, undefined4 param_3) 24 0 +1000196f Attach void Attach(CComBSTR * this, wchar_t * param_1) 31 1 SysFreeString +1000199c FUN_1000199c HRESULT FUN_1000199c(void * this, BSTR param_1) 66 3 SysFreeString +100019de FUN_100019de void * FUN_100019de(void * this, undefined4 * param_1) 33 2 +100019ff FUN_100019ff undefined FUN_100019ff(undefined4 * param_1) 9 1 SysFreeString +10001a10 FUN_10001a10 undefined4 FUN_10001a10(void) 5 0 +10001a15 FUN_10001a15 undefined4 FUN_10001a15(void) 5 0 +10001a1a FUN_10001a1a undefined4 FUN_10001a1a(void) 5 0 +10001a1f FUN_10001a1f uint FUN_10001a1f(void * this, undefined2 * param_1, char param_2, undefined1 param_3, undefined1 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8, undefined4 param_9, undefined4 param_10, undefined4 param_11, undefined4 param_12) 120 0 +10001a97 FUN_10001a97 undefined FUN_10001a97(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8) 39 0 +10001abe FUN_10001abe undefined FUN_10001abe(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7) 36 0 +10001ae2 FUN_10001ae2 uint FUN_10001ae2(void * this, short param_1) 63 0 +10001b21 FUN_10001b21 undefined FUN_10001b21(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8) 39 0 +10001b48 FID_conflict:RegOpenKeyExA LSTATUS FID_conflict:RegOpenKeyExA(HKEY hKey, LPCSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult) 87 2 +10001b9f FUN_10001b9f undefined FUN_10001b9f(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5) 30 0 +10001bbd FUN_10001bbd undefined4 FUN_10001bbd(void) 5 0 +10001bc2 FUN_10001bc2 int FUN_10001bc2(int param_1, int param_2) 13 0 +10001bd5 FUN_10001bd5 undefined FUN_10001bd5(void * this, undefined4 param_1) 22 0 +10001beb Close long Close(CRegKey * this) 27 1 +10001c06 FUN_10001c06 undefined4 FUN_10001c06(void) 5 0 +10001c0b Open undefined Open(void * this, HKEY param_1, LPCWSTR param_2, uint param_3) 79 3 +10001c5a QueryDWORDValue uint QueryDWORDValue(void * this, LPCWSTR param_1, LPBYTE param_2) 56 1 +10001c92 QueryStringValue long QueryStringValue(CRegKey * this, wchar_t * param_1, wchar_t * param_2, ulong * param_3) 111 1 +10001d01 SetDWORDValue undefined SetDWORDValue(void * this, LPCWSTR param_1) 28 1 +10001d1d FUN_10001d1d undefined FUN_10001d1d(int * param_1) 16 0 +10001d56 FUN_10001d56 undefined FUN_10001d56(int * param_1) 13 0 +10001d74 FUN_10001d74 undefined FUN_10001d74(int * param_1) 16 0 +10001d85 FUN_10001d85 undefined FUN_10001d85(int * param_1) 13 0 +10001d95 FUN_10001d95 undefined FUN_10001d95(int * param_1) 13 0 +10001da5 FUN_10001da5 undefined FUN_10001da5(int * param_1) 13 0 +10001db5 FUN_10001db5 bool FUN_10001db5(void * this, int * param_1) 19 0 +10001dc8 FUN_10001dc8 undefined4 FUN_10001dc8(void * this, int * param_1) 19 0 +10001ddb FUN_10001ddb undefined FUN_10001ddb(int * param_1) 13 0 +10001df1 FUN_10001df1 int FUN_10001df1(int param_1) 11 0 +10001dfc FUN_10001dfc int FUN_10001dfc(int param_1) 11 0 +10001e07 FUN_10001e07 undefined4 FUN_10001e07(undefined4 param_1) 8 0 +10001e0f FUN_10001e0f int FUN_10001e0f(int param_1) 11 0 +10001e1a FUN_10001e1a int FUN_10001e1a(int param_1) 11 0 +10001e25 FUN_10001e25 int FUN_10001e25(int param_1) 11 0 +10001e30 FUN_10001e30 undefined FUN_10001e30(int param_1) 21 0 +10001e45 FUN_10001e45 undefined FUN_10001e45(int * param_1) 20 0 +10001e5c FUN_10001e5c undefined4 FUN_10001e5c(int * param_1, int * param_2) 22 0 +10001e72 FUN_10001e72 undefined FUN_10001e72(void * param_1) 16 1 +10001e82 FUN_10001e82 undefined4 FUN_10001e82(undefined4 param_1) 8 0 +10001e8d FUN_10001e8d bool FUN_10001e8d(void * this, int * param_1) 19 0 +10001ea0 FUN_10001ea0 int FUN_10001ea0(int param_1) 11 0 +10001eab FUN_10001eab int FUN_10001eab(int param_1) 11 0 +10001eb6 FUN_10001eb6 undefined4 FUN_10001eb6(undefined4 param_1) 8 0 +10001ebe FUN_10001ebe int FUN_10001ebe(int param_1) 11 0 +10001ec9 FUN_10001ec9 int FUN_10001ec9(int param_1) 11 0 +10001ed4 FUN_10001ed4 int FUN_10001ed4(int param_1) 11 0 +10001edf FUN_10001edf undefined FUN_10001edf(int param_1) 21 0 +10001ef4 FUN_10001ef4 undefined FUN_10001ef4(int * param_1) 20 0 +10001f0b FUN_10001f0b undefined4 FUN_10001f0b(uint * param_1, uint * param_2) 36 0 +10001f2f FUN_10001f2f undefined FUN_10001f2f(void * param_1) 16 1 +10001f3f FUN_10001f3f undefined4 FUN_10001f3f(undefined4 param_1) 8 0 +10001f47 FUN_10001f47 int FUN_10001f47(int param_1) 11 0 +10001f55 FUN_10001f55 undefined FUN_10001f55(void * param_1) 16 1 +10001f72 FUN_10001f72 undefined FUN_10001f72(int param_1) 85 4 SysFreeString +10001fca FUN_10001fca undefined4 FUN_10001fca(undefined4 param_1) 8 0 +10001fd2 FUN_10001fd2 int FUN_10001fd2(int param_1) 11 0 +10001fe0 FUN_10001fe0 undefined FUN_10001fe0(void * param_1) 16 1 +10001ff0 FUN_10001ff0 undefined4 FUN_10001ff0(undefined4 param_1) 8 0 +10001ff8 FUN_10001ff8 int FUN_10001ff8(int param_1) 11 0 +10002006 FUN_10002006 undefined FUN_10002006(void * param_1) 16 1 +10002019 FUN_10002019 undefined4 * FUN_10002019(undefined4 * param_1) 183 1 memset +100020d3 FUN_100020d3 undefined FUN_100020d3(void * this, undefined4 param_1) 37 1 +100020f8 FUN_100020f8 int FUN_100020f8(int param_1) 11 0 +10002103 FUN_10002103 int FUN_10002103(int param_1) 11 0 +1000210e FUN_1000210e undefined4 FUN_1000210e(undefined4 param_1) 8 0 +10002116 FUN_10002116 int FUN_10002116(int param_1) 11 0 +10002121 FUN_10002121 int FUN_10002121(int param_1) 11 0 +1000212c FUN_1000212c int FUN_1000212c(int param_1) 11 0 +10002137 FUN_10002137 undefined FUN_10002137(int param_1) 21 0 +1000214c FUN_1000214c undefined FUN_1000214c(int * param_1) 20 0 +10002163 FUN_10002163 undefined FUN_10002163(void * param_1) 16 1 +1000217c FUN_1000217c bool FUN_1000217c(void * this, int * param_1) 19 0 +10002192 FUN_10002192 bool FUN_10002192(void * this, int * param_1) 19 0 +100021a8 FUN_100021a8 bool FUN_100021a8(void * this, int * param_1) 19 0 +100021be FUN_100021be bool FUN_100021be(void * this, int * param_1) 19 0 +100021d4 FUN_100021d4 bool FUN_100021d4(void * this, int * param_1) 19 0 +100021f0 FUN_100021f0 bool FUN_100021f0(void * this, int * param_1) 19 0 +10002206 FUN_10002206 bool FUN_10002206(void * this, int * param_1) 19 0 +10002221 FUN_10002221 undefined4 FUN_10002221(undefined4 * param_1) 196 1 +100022e5 FUN_100022e5 int FUN_100022e5(int param_1) 11 0 +100022f0 FUN_100022f0 int FUN_100022f0(int param_1) 11 0 +100022fb FUN_100022fb undefined4 FUN_100022fb(int * param_1) 58 2 memset +1000233a FUN_1000233a undefined FUN_1000233a(void * param_1) 16 1 +1000234a FUN_1000234a undefined FUN_1000234a(void * param_1) 168 7 +100023fb FUN_100023fb undefined1 FUN_100023fb(HKEY param_1, LPCWSTR param_2, LPBYTE param_3) 89 3 +10002454 FUN_10002454 undefined FUN_10002454(void * this, undefined4 * param_1) 18 0 +10002469 FUN_10002469 undefined FUN_10002469(int param_1) 19 1 +10002487 FUN_10002487 int FUN_10002487(int param_1) 11 0 +10002497 FUN_10002497 undefined4 FUN_10002497(undefined4 param_1) 8 0 +1000249f FUN_1000249f int FUN_1000249f(int param_1) 11 0 +100024af FUN_100024af undefined FUN_100024af(void * param_1) 16 1 +100024bf FUN_100024bf int FUN_100024bf(int param_1) 11 0 +100024cf FUN_100024cf undefined4 * FUN_100024cf(void * this, OLECHAR * param_1) 54 2 SysAllocString +10002505 FUN_10002505 int FUN_10002505(int param_1) 11 0 +10002510 FUN_10002510 undefined4 * FUN_10002510(void * this, BSTR param_1, char param_2) 72 3 SysAllocStringByteLen +10002580 FUN_10002580 undefined FUN_10002580(uint param_1) 9 1 +10002589 FUN_10002589 undefined FUN_10002589(undefined4 * param_1) 32 2 SysFreeString +100025a9 FUN_100025a9 int FUN_100025a9(int param_1) 11 0 +100025b4 FUN_100025b4 undefined4 FUN_100025b4(undefined4 param_1) 8 0 +100025c1 FUN_100025c1 undefined FUN_100025c1(void * param_1) 16 1 +100025d6 FUN_100025d6 undefined FUN_100025d6(void * param_1) 16 1 +100025eb FUN_100025eb undefined4 FUN_100025eb(undefined4 param_1) 8 0 +100025f3 FUN_100025f3 int FUN_100025f3(int param_1) 11 0 +10002603 FUN_10002603 undefined FUN_10002603(void * param_1) 16 1 +10002619 FUN_10002619 undefined FUN_10002619(int * param_1) 59 0 +10002660 FUN_10002660 undefined FUN_10002660(int * param_1) 59 0 +1000269b FUN_1000269b undefined FUN_1000269b(int * param_1) 59 0 +10002715 FUN_10002715 int FUN_10002715(int param_1) 13 0 +10002722 FUN_10002722 int FUN_10002722(int param_1) 13 0 +1000272f FUN_1000272f int FUN_1000272f(int param_1) 11 0 +1000273a FUN_1000273a int FUN_1000273a(int param_1) 11 0 +10002745 FUN_10002745 int FUN_10002745(int param_1) 11 0 +10002750 FUN_10002750 int FUN_10002750(int param_1) 11 0 +1000275b FUN_1000275b undefined4 FUN_1000275b(undefined4 param_1) 8 0 +10002763 FUN_10002763 int FUN_10002763(int param_1) 11 0 +1000276e FUN_1000276e int FUN_1000276e(int param_1) 11 0 +10002779 FUN_10002779 undefined FUN_10002779(int param_1) 21 0 +1000278e FUN_1000278e undefined FUN_1000278e(int * param_1) 20 0 +100027a2 FUN_100027a2 undefined4 * FUN_100027a2(void * this, undefined4 param_1, int * param_2, char param_3) 51 0 +100027d5 FUN_100027d5 undefined4 * FUN_100027d5(void * this, int param_1) 48 0 +10002805 FUN_10002805 undefined FUN_10002805(undefined4 * param_1) 38 1 +1000282b FUN_1000282b undefined4 * FUN_1000282b(void * this, undefined4 * param_1) 33 2 +10002850 FUN_10002850 undefined4 FUN_10002850(int param_1) 23 0 +10002867 FUN_10002867 uint FUN_10002867(int param_1) 34 0 +10002889 FUN_10002889 undefined4 FUN_10002889(undefined4 param_1, undefined4 param_2) 8 0 +10002891 FUN_10002891 undefined FUN_10002891(void) 1 0 +10002892 FUN_10002892 int FUN_10002892(int param_1) 11 0 +1000289d FUN_1000289d int FUN_1000289d(int param_1) 11 0 +100028a8 FUN_100028a8 undefined4 FUN_100028a8(undefined4 param_1) 8 0 +100028b0 FUN_100028b0 int FUN_100028b0(int param_1) 11 0 +100028bb FUN_100028bb int FUN_100028bb(int param_1) 11 0 +100028c6 FUN_100028c6 int FUN_100028c6(int param_1) 11 0 +100028d1 FUN_100028d1 int FUN_100028d1(int param_1) 11 0 +100028dc FUN_100028dc bool FUN_100028dc(void * this, int * param_1) 19 0 +100028ef FUN_100028ef undefined4 FUN_100028ef(void * this, int * param_1) 19 0 +10002928 FUN_10002928 undefined FUN_10002928(int param_1) 24 0 +10002940 FUN_10002940 undefined FUN_10002940(int * param_1) 23 0 +100029bf FUN_100029bf exception * FUN_100029bf(void * this, byte param_1) 56 4 +10002a05 FUN_10002a05 undefined FUN_10002a05(void * this, int * param_1) 71 0 +10002a4c FUN_10002a4c undefined FUN_10002a4c(int param_1) 21 0 +10002a61 FUN_10002a61 undefined FUN_10002a61(int * param_1) 20 0 +10002a7f FUN_10002a7f undefined FUN_10002a7f(int * param_1) 59 0 +10002aba FUN_10002aba undefined FUN_10002aba(wchar_t * param_1) 10 0 +10002ae0 FUN_10002ae0 undefined FUN_10002ae0(void * param_1, void * param_2, int param_3) 26 1 memmove +10002afa assign undefined assign(wchar_t * param_1, size_t param_2, wchar_t param_3) 22 1 _wmemset +10002b10 FUN_10002b10 undefined FUN_10002b10(int * param_1) 59 0 +10002b4b FUN_10002b4b undefined FUN_10002b4b(undefined2 * param_1, undefined2 * param_2) 17 0 +10002b5c FUN_10002b5c undefined4 FUN_10002b5c(short * param_1, short * param_2) 22 0 +10002b78 FUN_10002b78 bool FUN_10002b78(int * param_1, undefined4 param_2) 35 0 +10002b9b FUN_10002b9b bool FUN_10002b9b(int * param_1, undefined4 param_2) 35 0 +10002bbe FUN_10002bbe bool FUN_10002bbe(int * param_1, undefined4 param_2) 35 0 +10002be1 FUN_10002be1 bool FUN_10002be1(int * param_1, undefined4 param_2) 35 0 +10002c04 FUN_10002c04 bool FUN_10002c04(int * param_1, undefined4 param_2) 35 0 +10002c39 FUN_10002c39 undefined4 FUN_10002c39(undefined4 param_1) 8 0 +10002c41 FUN_10002c41 undefined4 FUN_10002c41(undefined4 param_1) 8 0 +10002c49 FUN_10002c49 undefined4 FUN_10002c49(undefined4 param_1) 8 0 +10002c51 FUN_10002c51 undefined4 FUN_10002c51(undefined4 param_1) 8 0 +10002c59 FUN_10002c59 undefined4 FUN_10002c59(undefined4 param_1) 8 0 +10002c61 FUN_10002c61 undefined4 FUN_10002c61(undefined4 param_1) 8 0 +10002c69 FUN_10002c69 undefined4 FUN_10002c69(undefined4 param_1) 8 0 +10002c71 FUN_10002c71 undefined4 FUN_10002c71(undefined4 param_1) 8 0 +10002c79 FUN_10002c79 undefined4 FUN_10002c79(undefined4 param_1) 8 0 +10002c86 FUN_10002c86 void * FUN_10002c86(IMAGE_DOS_HEADER * param_1) 95 5 +10002ce5 FUN_10002ce5 undefined4 FUN_10002ce5(undefined4 param_1) 8 0 +10002cf2 FUN_10002cf2 void * FUN_10002cf2(char * param_1) 95 5 +10002d56 FUN_10002d56 void * FUN_10002d56(char * param_1) 95 5 +10002db8 FUN_10002db8 undefined4 FUN_10002db8(undefined4 param_1) 8 0 +10002dc5 FUN_10002dc5 void * FUN_10002dc5(char * param_1) 95 5 +10002e24 FUN_10002e24 undefined4 FUN_10002e24(undefined4 param_1) 8 0 +10002e31 FUN_10002e31 void * FUN_10002e31(char * param_1) 95 5 +10002e95 FUN_10002e95 void * FUN_10002e95(char * param_1) 95 5 +10002ef9 FUN_10002ef9 void * FUN_10002ef9(char * param_1) 95 5 +10002f58 FUN_10002f58 undefined4 FUN_10002f58(undefined4 param_1) 8 0 +10002f65 FUN_10002f65 void * FUN_10002f65(char * param_1) 98 5 +10002fcc FUN_10002fcc void * FUN_10002fcc(char * param_1) 95 5 +1000302b FUN_1000302b undefined4 FUN_1000302b(undefined4 param_1) 8 0 +10003038 FUN_10003038 void * FUN_10003038(char * param_1) 95 5 +1000309c FUN_1000309c void * FUN_1000309c(char * param_1) 95 5 +10003125 FUN_10003125 undefined FUN_10003125(int * param_1) 70 0 +10003189 FUN_10003189 undefined FUN_10003189(int * param_1) 70 0 +100031cf FUN_100031cf undefined FUN_100031cf(int * param_1) 70 0 +10003215 FUN_10003215 int * FUN_10003215(int * param_1) 74 1 +1000325f FUN_1000325f undefined FUN_1000325f(int * param_1) 70 0 +100032a5 FUN_100032a5 undefined4 FUN_100032a5(undefined4 param_1) 10 0 +100032af FUN_100032af undefined4 FUN_100032af(undefined4 param_1) 8 0 +100032b7 FUN_100032b7 undefined4 FUN_100032b7(undefined4 param_1) 8 0 +100032bf FUN_100032bf undefined4 FUN_100032bf(undefined4 param_1) 8 0 +100032c7 FUN_100032c7 undefined4 FUN_100032c7(undefined4 param_1) 8 0 +100032cf FUN_100032cf undefined4 FUN_100032cf(undefined4 param_1) 8 0 +100032d7 FUN_100032d7 undefined4 FUN_100032d7(undefined4 param_1) 8 0 +100032df FUN_100032df undefined4 FUN_100032df(undefined4 param_1) 8 0 +100032e7 FUN_100032e7 undefined4 FUN_100032e7(undefined4 param_1) 8 0 +100032ef FUN_100032ef undefined4 FUN_100032ef(undefined4 param_1) 8 0 +100032f7 FUN_100032f7 undefined4 FUN_100032f7(undefined4 param_1) 8 0 +100032ff FUN_100032ff undefined4 FUN_100032ff(undefined4 param_1) 8 0 +10003307 FUN_10003307 undefined4 FUN_10003307(undefined4 param_1) 8 0 +1000330f FUN_1000330f undefined4 FUN_1000330f(undefined4 param_1) 8 0 +10003317 FUN_10003317 undefined4 FUN_10003317(undefined4 param_1) 8 0 +1000331f FUN_1000331f undefined4 FUN_1000331f(undefined4 param_1) 8 0 +10003327 FUN_10003327 undefined4 FUN_10003327(undefined4 param_1) 8 0 +1000332f FUN_1000332f undefined4 FUN_1000332f(undefined4 param_1) 8 0 +10003337 FUN_10003337 undefined FUN_10003337(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +1000334f FUN_1000334f undefined4 FUN_1000334f(undefined4 param_1) 8 0 +10003357 FUN_10003357 undefined4 FUN_10003357(undefined4 param_1) 8 0 +1000335f FUN_1000335f undefined4 FUN_1000335f(undefined4 param_1) 8 0 +10003367 FUN_10003367 undefined FUN_10003367(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +10003380 FUN_10003380 undefined FUN_10003380(undefined4 * param_1, undefined4 * param_2) 52 2 +100033b5 FUN_100033b5 undefined FUN_100033b5(undefined4 * param_1, undefined4 * param_2) 46 2 +100033e5 FUN_100033e5 undefined FUN_100033e5(undefined4 * param_1, undefined4 * param_2) 46 2 +10003415 FUN_10003415 undefined4 FUN_10003415(undefined4 param_1) 8 0 +1000341e FUN_1000341e undefined4 FUN_1000341e(undefined4 param_1) 8 0 +10003426 FUN_10003426 undefined4 FUN_10003426(undefined4 param_1) 8 0 +1000342e FUN_1000342e undefined4 FUN_1000342e(undefined4 param_1) 8 0 +10003436 FUN_10003436 undefined4 FUN_10003436(undefined4 param_1) 8 0 +1000343e FUN_1000343e undefined4 FUN_1000343e(undefined4 param_1) 8 0 +10003446 FUN_10003446 undefined4 FUN_10003446(undefined4 param_1) 8 0 +1000344e FUN_1000344e undefined4 FUN_1000344e(undefined4 param_1) 8 0 +10003456 FUN_10003456 undefined4 FUN_10003456(undefined4 param_1) 8 0 +1000345e FUN_1000345e undefined FUN_1000345e(int param_1) 33 3 +100034c7 FUN_100034c7 undefined FUN_100034c7(int * param_1) 13 0 +100034da FUN_100034da undefined FUN_100034da(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 28 1 CoCreateInstance +100034fc FUN_100034fc undefined FUN_100034fc(LPVOID * param_1) 38 2 CoCreateInstance +10003522 FUN_10003522 undefined FUN_10003522(void * this, int * param_1, int * param_2) 48 0 +10003552 FUN_10003552 undefined FUN_10003552(LPVOID * param_1) 38 2 CoCreateInstance +10003578 FUN_10003578 undefined FUN_10003578(void * this, int * param_1, int * param_2) 48 0 +100035a8 FUN_100035a8 undefined FUN_100035a8(LPVOID * param_1) 38 2 CoCreateInstance +100035ce FUN_100035ce undefined FUN_100035ce(void * this, int * param_1, int * param_2) 48 0 +100035fe FUN_100035fe undefined FUN_100035fe(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +1000361c FUN_1000361c undefined4 FUN_1000361c(undefined4 param_1) 8 0 +10003624 FUN_10003624 undefined4 FUN_10003624(undefined4 param_1) 8 0 +1000362c FUN_1000362c undefined4 FUN_1000362c(undefined4 param_1) 8 0 +10003634 FUN_10003634 undefined FUN_10003634(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1000364c FUN_1000364c undefined FUN_1000364c(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10003664 FUN_10003664 undefined4 FUN_10003664(undefined4 param_1) 8 0 +1000366c FUN_1000366c undefined FUN_1000366c(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10003684 FUN_10003684 undefined FUN_10003684(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1000369c FUN_1000369c undefined4 FUN_1000369c(undefined4 param_1) 8 0 +100036a4 FUN_100036a4 undefined FUN_100036a4(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +100036bc FUN_100036bc undefined4 FUN_100036bc(undefined4 param_1) 8 0 +100036c4 FUN_100036c4 undefined1 * FUN_100036c4(undefined4 * param_1, undefined4 * param_2) 45 2 +100036f1 FUN_100036f1 undefined FUN_100036f1(undefined4 * param_1, undefined4 * param_2) 45 2 +1000371e FUN_1000371e undefined FUN_1000371e(undefined4 * param_1, undefined4 * param_2) 45 2 +1000374b FUN_1000374b undefined4 FUN_1000374b(undefined4 param_1) 8 0 +10003753 FUN_10003753 undefined4 FUN_10003753(undefined4 param_1) 8 0 +1000375b FUN_1000375b undefined4 FUN_1000375b(undefined4 param_1) 8 0 +10003763 FUN_10003763 undefined4 FUN_10003763(undefined4 param_1) 8 0 +1000376b FUN_1000376b undefined4 FUN_1000376b(undefined4 param_1) 8 0 +10003773 FUN_10003773 undefined4 FUN_10003773(undefined4 param_1) 8 0 +1000377b FUN_1000377b undefined FUN_1000377b(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +10003799 FUN_10003799 undefined4 FUN_10003799(undefined4 param_1) 8 0 +100037a1 FUN_100037a1 undefined4 FUN_100037a1(undefined4 param_1) 8 0 +100037a9 FUN_100037a9 ios_base * FUN_100037a9(ios_base * param_1) 27 1 +100037c4 FUN_100037c4 ios_base * FUN_100037c4(ios_base * param_1) 27 1 +100037df FUN_100037df undefined4 FUN_100037df(HKEY param_1, LPCWSTR param_2, LPCWSTR param_3, int param_4, LPBYTE param_5) 126 3 +1000385d FUN_1000385d uint FUN_1000385d(LPBYTE param_1, int param_2) 121 2 memset +100038d6 FUN_100038d6 uint FUN_100038d6(LPBYTE param_1, int param_2) 124 2 memset +10003952 FUN_10003952 uint FUN_10003952(LPBYTE param_1, int param_2) 124 2 memset +100039ce FUN_100039ce undefined1 FUN_100039ce(int param_1, LPWSTR param_2, UINT param_3) 186 9 memset +10003a88 FUN_10003a88 undefined FUN_10003a88(int param_1, LPCWSTR param_2, char param_3, DWORD * param_4) 192 5 +10003b48 FUN_10003b48 undefined FUN_10003b48(undefined4 * param_1) 33 3 SysFreeString +10003b69 FUN_10003b69 undefined FUN_10003b69(LPCWSTR param_1) 56 2 +10003ba1 FUN_10003ba1 undefined FUN_10003ba1(LPCWSTR param_1) 97 3 +10003c02 FUN_10003c02 undefined FUN_10003c02(undefined4 * param_1) 10 1 +10003c0c FUN_10003c0c undefined FUN_10003c0c(void) 24 0 +10003c24 FUN_10003c24 undefined4 FUN_10003c24(int param_1, undefined4 param_2, undefined4 param_3, int * param_4) 56 1 +10003c5c FUN_10003c5c undefined FUN_10003c5c(int * param_1) 13 0 +10003c6c FUN_10003c6c bool FUN_10003c6c(void * this, int param_1) 17 0 +10003c81 FUN_10003c81 int FUN_10003c81(void * this, int param_1) 18 0 +10003c96 FUN_10003c96 undefined FUN_10003c96(int * param_1) 13 0 +10003cb9 FUN_10003cb9 undefined FUN_10003cb9(void * this, int param_1) 28 0 +10003d08 FUN_10003d08 undefined FUN_10003d08(void * param_1) 16 1 +10003d18 FUN_10003d18 undefined4 FUN_10003d18(void * this, uint param_1) 26 0 +10003d3f FUN_10003d3f undefined FUN_10003d3f(basic_streambuf_> * param_1) 92 7 +10003dab FUN_10003dab undefined4 FUN_10003dab(undefined4 param_1) 10 0 +10003db5 FID_conflict:_Chassign undefined FID_conflict:_Chassign(void * this, int param_1, size_t param_2, wchar_t param_3) 63 1 _wmemset +10003df4 FID_conflict:_Inside uint FID_conflict:_Inside(void * this, undefined4 * param_1) 60 0 +10003e69 FUN_10003e69 undefined FUN_10003e69(void * param_1) 16 1 +10003e79 FUN_10003e79 uint FUN_10003e79(byte param_1) 44 0 +10003ea5 FUN_10003ea5 int * FUN_10003ea5(void * this, int * param_1) 57 1 +10003ede FUN_10003ede undefined FUN_10003ede(int * param_1) 47 1 +10003f19 AtlAdd<> undefined4 AtlAdd<>(int * param_1, int param_2, uint param_3) 36 0 +10003f3d FUN_10003f3d undefined FUN_10003f3d(char * param_1, char * param_2, char * param_3, char * param_4, char * param_5) 39 1 +10003f64 FUN_10003f64 undefined FUN_10003f64(char * param_1, char * param_2, char * param_3, char * param_4, char * param_5) 34 1 +10003f86 FUN_10003f86 undefined4 FUN_10003f86(undefined4 param_1) 8 0 +10003f8e FUN_10003f8e undefined4 FUN_10003f8e(undefined4 param_1) 8 0 +10003f96 FUN_10003f96 undefined4 FUN_10003f96(undefined4 param_1) 8 0 +10003f9e FUN_10003f9e undefined FUN_10003f9e(void * param_1, void * param_2) 21 1 +10003fb4 FUN_10003fb4 void * FUN_10003fb4(char * param_1) 95 5 +10004013 FUN_10004013 undefined FUN_10004013(int * param_1, size_t param_2, void * param_3, int param_4) 110 4 +10004081 FUN_10004081 void * FUN_10004081(char * param_1) 98 5 +10004115 FUN_10004115 undefined4 FUN_10004115(undefined4 param_1) 8 0 +1000411d FUN_1000411d undefined4 FUN_1000411d(undefined4 param_1) 8 0 +10004125 FUN_10004125 undefined1 * FUN_10004125(undefined4 * param_1, undefined4 * param_2) 48 2 +10004155 FUN_10004155 undefined4 FUN_10004155(undefined4 param_1) 8 0 +10004160 FUN_10004160 undefined1 FUN_10004160(undefined4 param_1) 9 0 +10004169 FUN_10004169 undefined1 * FUN_10004169(undefined4 * param_1, undefined4 * param_2) 49 2 +1000419e FUN_1000419e undefined4 FUN_1000419e(undefined4 param_1) 8 0 +100041a6 FUN_100041a6 undefined4 FUN_100041a6(void * this, int * param_1) 98 3 +10004208 FUN_10004208 undefined4 FUN_10004208(void * this, int * param_1) 146 4 +1000429d FUN_1000429d undefined4 * FUN_1000429d(void * this, LPCRITICAL_SECTION param_1) 25 1 +100042b6 FUN_100042b6 undefined FUN_100042b6(undefined4 * param_1) 9 1 +100042c8 FUN_100042c8 undefined FUN_100042c8(int * param_1) 37 2 +100042ed FUN_100042ed undefined FUN_100042ed(int * param_1) 37 2 +10004312 FUN_10004312 undefined4 * FUN_10004312(void * this, OLECHAR * param_1) 47 2 SysAllocString +10004342 FUN_10004342 undefined4 * FUN_10004342(void * this, OLECHAR * param_1) 61 3 SysAllocString;SysFreeString +1000437f Copy wchar_t * Copy(CComBSTR * this) 29 2 SysAllocStringByteLen +100043bb FUN_100043bb undefined FUN_100043bb(int param_1) 34 3 SysFreeString +100043dd FUN_100043dd undefined FUN_100043dd(int * param_1) 37 2 +10004402 FUN_10004402 int FUN_10004402(void * this, void * param_1, uint param_2) 236 6 SysAllocStringLen;SysFreeString +100044ee FUN_100044ee undefined FUN_100044ee(int * param_1) 37 2 +10004513 FUN_10004513 undefined FUN_10004513(int param_1) 44 3 SysFreeString +1000453f FUN_1000453f undefined FUN_1000453f(int * param_1) 37 2 +10004564 FUN_10004564 undefined4 FUN_10004564(undefined4 param_1, undefined4 * param_2) 67 4 SysFreeString +100045a7 FUN_100045a7 LSTATUS FUN_100045a7(undefined4 * param_1) 5 0 +100045ac FUN_100045ac undefined FUN_100045ac(int * param_1) 37 2 +100045d1 FUN_100045d1 undefined4 FUN_100045d1(void * this, int * param_1) 19 0 +100045f0 FUN_100045f0 undefined4 FUN_100045f0(void * this, int * param_1) 19 0 +10004603 FUN_10004603 undefined4 FUN_10004603(void * this, int * param_1) 19 0 +10004616 FUN_10004616 undefined4 FUN_10004616(void * this, int * param_1) 19 0 +10004629 FUN_10004629 undefined4 FUN_10004629(void * this, int * param_1) 19 0 +10004642 FUN_10004642 undefined4 FUN_10004642(void * this, int * param_1) 19 0 +10004655 FUN_10004655 undefined4 FUN_10004655(void * this, int * param_1) 19 0 +10004668 FUN_10004668 undefined4 FUN_10004668(void * this, int * param_1) 19 0 +1000468d FUN_1000468d undefined FUN_1000468d(void * this, int * param_1) 71 0 +100046d4 FUN_100046d4 undefined FUN_100046d4(int param_1) 10 1 +100046de FUN_100046de int FUN_100046de(int param_1) 11 0 +100046e9 FUN_100046e9 undefined FUN_100046e9(undefined4 * param_1) 9 1 +10004713 FUN_10004713 undefined FUN_10004713(void * this, int * param_1) 71 0 +1000475a FUN_1000475a undefined FUN_1000475a(int param_1) 10 1 +10004764 FUN_10004764 int FUN_10004764(int param_1) 11 0 +1000476f FUN_1000476f undefined FUN_1000476f(undefined4 * param_1) 9 1 +1000477c FUN_1000477c undefined FUN_1000477c(int param_1) 10 1 +10004786 FUN_10004786 int FUN_10004786(int param_1) 11 0 +10004791 FUN_10004791 undefined FUN_10004791(undefined4 * param_1) 9 1 +1000479a FUN_1000479a undefined FUN_1000479a(undefined4 * param_1) 9 1 +100047a3 FUN_100047a3 undefined FUN_100047a3(int param_1) 10 1 +100047ad FUN_100047ad int FUN_100047ad(int param_1) 11 0 +100047b8 FUN_100047b8 undefined FUN_100047b8(int param_1) 10 1 +100047c6 FUN_100047c6 undefined4 FUN_100047c6(int * param_1) 5 0 +100047d9 FUN_100047d9 undefined FUN_100047d9(void * this, int * param_1) 71 0 +10004820 FUN_10004820 undefined FUN_10004820(int param_1) 10 1 +1000482a FUN_1000482a undefined FUN_1000482a(undefined4 * param_1) 9 1 +10004851 FUN_10004851 int * FUN_10004851(int * param_1) 12 1 +10004869 FUN_10004869 int * FUN_10004869(int * param_1) 12 1 +10004875 FUN_10004875 int * FUN_10004875(int * param_1) 12 1 +100048b1 FUN_100048b1 undefined FUN_100048b1(void * this, undefined4 * param_1) 18 0 +100048d8 FUN_100048d8 undefined FUN_100048d8(void * this, undefined4 * param_1) 18 0 +100048ea FUN_100048ea undefined FUN_100048ea(int * param_1) 756 8 +10004bfc FUN_10004bfc undefined4 * FUN_10004bfc(void * this, int * param_1) 44 0 +10004c28 FUN_10004c28 undefined4 FUN_10004c28(int * param_1) 62 2 +10004c6b FUN_10004c6b undefined FUN_10004c6b(IMAGE_DOS_HEADER * param_1) 19 1 +10004c7e FUN_10004c7e undefined4 * FUN_10004c7e(void * this, uint * param_1) 60 1 +10004cba FUN_10004cba undefined4 * FUN_10004cba(void * this, OLECHAR * param_1) 77 5 +10004d07 FUN_10004d07 undefined4 * FUN_10004d07(void * this, BSTR param_1, char param_2) 80 5 +10004d5c FUN_10004d5c undefined FUN_10004d5c(char * param_1) 19 1 +10004d87 FUN_10004d87 UINT FUN_10004d87(int * param_1) 23 1 +10004da3 FUN_10004da3 undefined FUN_10004da3(char * param_1) 19 1 +10004dcc FUN_10004dcc undefined FUN_10004dcc(char * param_1) 19 1 +10004de9 FUN_10004de9 undefined FUN_10004de9(char * param_1) 19 1 +10004dfc FUN_10004dfc int * FUN_10004dfc(void * this, int * param_1) 23 1 +10004e13 FUN_10004e13 undefined FUN_10004e13(void * this, undefined4 param_1) 14 0 +10004e2d FUN_10004e2d undefined FUN_10004e2d(void * this, undefined4 * param_1) 18 0 +10004e44 FUN_10004e44 undefined FUN_10004e44(char * param_1) 19 1 +10004e5d FUN_10004e5d undefined FUN_10004e5d(void * this, undefined4 param_1) 14 0 +10004e70 FUN_10004e70 undefined FUN_10004e70(char * param_1) 19 1 +10004e95 FUN_10004e95 undefined FUN_10004e95(char * param_1) 19 1 +10004ec0 FUN_10004ec0 undefined FUN_10004ec0(void * this, int * param_1) 71 0 +10004f0c FUN_10004f0c undefined4 * FUN_10004f0c(void * this, byte param_1) 31 2 +10004f2b FUN_10004f2b undefined FUN_10004f2b(char * param_1) 19 1 +10004f48 FUN_10004f48 undefined4 FUN_10004f48(int param_1) 170 5 +10004ffb FUN_10004ffb undefined FUN_10004ffb(char * param_1) 19 1 +10005013 FUN_10005013 undefined FUN_10005013(char * param_1) 19 1 +10005026 FUN_10005026 undefined FUN_10005026(void * this, undefined4 param_1) 14 0 +10005034 FUN_10005034 int * FUN_10005034(void * this, int * param_1) 23 1 +1000504b FUN_1000504b undefined FUN_1000504b(void * this, undefined4 param_1) 14 0 +10005059 FUN_10005059 int * FUN_10005059(void * this, int * param_1) 23 1 +10005070 FUN_10005070 undefined FUN_10005070(void * this, undefined4 param_1) 14 0 +1000507e FUN_1000507e undefined FUN_1000507e(void * this, undefined4 param_1) 14 0 +1000508c FUN_1000508c undefined FUN_1000508c(void * this, undefined4 param_1) 14 0 +1000509a FUN_1000509a undefined FUN_1000509a(int * param_1) 71 0 +100050e1 FUN_100050e1 int * FUN_100050e1(int * param_1) 12 1 +100050ed FUN_100050ed undefined FUN_100050ed(void * this, undefined4 param_1) 14 0 +100050fb FUN_100050fb undefined FUN_100050fb(void * this, undefined4 param_1) 14 0 +10005109 FUN_10005109 undefined FUN_10005109(void * this, int param_1) 72 0 +10005151 FUN_10005151 undefined FUN_10005151(void * this, int * param_1) 74 0 +1000519b FUN_1000519b undefined FUN_1000519b(void * this, int param_1) 69 0 +100051e0 FUN_100051e0 int * FUN_100051e0(int * param_1) 12 1 +100051ec FUN_100051ec undefined FUN_100051ec(void * this, undefined4 param_1) 14 0 +100051fa FUN_100051fa undefined FUN_100051fa(void * this, undefined4 param_1) 14 0 +10005208 FUN_10005208 undefined FUN_10005208(undefined4 param_1, int * param_2, void * param_3) 50 2 +1000523a FUN_1000523a undefined FUN_1000523a(undefined1 * param_1, undefined1 * param_2) 21 0 +1000524f FUN_1000524f undefined FUN_1000524f(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +10005267 FUN_10005267 undefined FUN_10005267(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +10005282 FUN_10005282 undefined FUN_10005282(undefined4 * param_1, undefined4 * param_2) 20 1 +10005299 FUN_10005299 undefined FUN_10005299(undefined4 * param_1, undefined4 * param_2) 20 1 +100052b3 FUN_100052b3 undefined FUN_100052b3(undefined4 * param_1, undefined4 * param_2) 20 1 +100053b7 FUN_100053b7 int FUN_100053b7(int param_1) 11 0 +100053c2 FUN_100053c2 int * FUN_100053c2(int * param_1) 12 1 +100053ec FUN_100053ec int * FUN_100053ec(int * param_1) 12 1 +100053f8 FUN_100053f8 undefined FUN_100053f8(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10005410 FUN_10005410 int * FUN_10005410(int * param_1) 12 1 +1000541c FUN_1000541c int * FUN_1000541c(int * param_1) 12 1 +10005428 FUN_10005428 undefined FUN_10005428(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10005440 FUN_10005440 undefined FUN_10005440(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10005458 FUN_10005458 int * FUN_10005458(int * param_1) 12 1 +10005464 FUN_10005464 undefined FUN_10005464(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1000547c FUN_1000547c undefined FUN_1000547c(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10005494 FUN_10005494 undefined FUN_10005494(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +100054b2 FUN_100054b2 undefined FUN_100054b2(int param_1, int param_2, int * param_3) 35 1 +100054d5 FUN_100054d5 undefined FUN_100054d5(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +100054ed FUN_100054ed undefined FUN_100054ed(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10005505 FUN_10005505 undefined FUN_10005505(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1000551d FUN_1000551d undefined FUN_1000551d(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10005535 FUN_10005535 undefined FUN_10005535(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1000554d FUN_1000554d undefined FUN_1000554d(int * param_1) 37 2 +10005593 FUN_10005593 undefined FUN_10005593(int param_1) 39 1 +100055ba FUN_100055ba undefined FUN_100055ba(int param_1) 39 1 +100055e1 FUN_100055e1 undefined FUN_100055e1(int param_1) 42 1 +1000560b FUN_1000560b undefined FUN_1000560b(int param_1) 39 1 +10005632 FUN_10005632 undefined FUN_10005632(int param_1) 39 1 +10005677 FUN_10005677 undefined FUN_10005677(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +1000568a FUN_1000568a undefined FUN_1000568a(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +1000569d FUN_1000569d undefined FUN_1000569d(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +100056b0 FUN_100056b0 undefined FUN_100056b0(void * this, undefined4 * param_1) 28 0 +100056cc FUN_100056cc undefined FUN_100056cc(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +100056ea FUN_100056ea undefined4 FUN_100056ea(LPCWSTR param_1, LPCWSTR param_2, undefined4 * param_3) 115 5 +1000575d FUN_1000575d undefined FUN_1000575d(LPCWSTR param_1, wchar_t * param_2, undefined4 * param_3) 247 9 SysAllocString;SysFreeString;memset +10005854 FUN_10005854 undefined FUN_10005854(LPCWSTR param_1) 75 3 +1000589f FUN_1000589f undefined FUN_1000589f(int * param_1) 37 2 +100058e2 FUN_100058e2 bool FUN_100058e2(void * this, int param_1) 17 0 +100058f3 FUN_100058f3 int FUN_100058f3(void * this, int param_1) 23 0 +1000591c FUN_1000591c undefined FUN_1000591c(basic_streambuf_> * param_1) 50 4 +1000594e FUN_1000594e undefined4 FUN_1000594e(short * param_1, short * param_2) 22 0 +10005964 FUN_10005964 undefined2 FUN_10005964(undefined2 * param_1) 11 0 +1000596f FUN_1000596f undefined2 FUN_1000596f(undefined2 * param_1) 11 0 +1000597a FUN_1000597a wchar_t FUN_1000597a(basic_streambuf_> * param_1) 170 5 +10005a24 fpos undefined fpos(fpos * this, __int64 param_1) 31 0 +10005a4d FUN_10005a4d short FUN_10005a4d(short * param_1) 23 0 +10005a64 FUN_10005a64 wchar_t FUN_10005a64(void * this, wchar_t param_1) 120 3 +10005adc FUN_10005adc undefined FUN_10005adc(void * this, uint * param_1, uint param_2, uint param_3, int param_4, byte param_5) 552 8 +10005d04 FUN_10005d04 undefined FUN_10005d04(void * this, uint * param_1, uint param_2, int param_3, uint param_4) 392 8 +10005e8c FUN_10005e8c undefined FUN_10005e8c(undefined4 * param_1) 18 1 +10005ebc FUN_10005ebc basic_streambuf_> * FUN_10005ebc(void * this, byte param_1) 31 2 +10005edb FUN_10005edb undefined FUN_10005edb(void * this, int param_1) 27 0 +10005ef6 FID_conflict:_Tidy undefined FID_conflict:_Tidy(void * this, char param_1, int param_2) 73 2 memcpy +10005f44 FUN_10005f44 undefined FUN_10005f44(char * param_1) 19 1 +10005f66 Init void Init(CA2WEX<128> * this, char * param_1, uint param_2) 177 5 +10006017 FUN_10006017 void * FUN_10006017(void * this, int * param_1) 115 6 +1000608a FUN_1000608a undefined FUN_1000608a(int * param_1) 56 5 +100060c8 FUN_100060c8 uint FUN_100060c8(void * this, uint param_1) 49 0 +100060f9 FUN_100060f9 undefined FUN_100060f9(void * this, void * param_1, char * param_2, undefined4 param_3) 139 5 memcpy +1000618a FUN_1000618a undefined FUN_1000618a(void * this, uint param_1) 103 3 +100061f1 Catch@100061f1 undefined * Catch@100061f1(void) 40 1 +1000621f FUN_1000621f undefined FUN_1000621f(void) 78 3 memcpy +1000626d Catch@1000626d undefined Catch@1000626d(void) 20 2 +10006282 FUN_10006282 undefined FUN_10006282(char * param_1) 19 1 +10006295 FUN_10006295 undefined FUN_10006295(int * param_1, wchar_t * param_2) 410 10 +1000642f Catch@1000642f undefined * Catch@1000642f(void) 30 1 +10006450 FUN_10006450 undefined FUN_10006450(void) 38 3 +10006476 FUN_10006476 undefined FUN_10006476(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +1000648c FUN_1000648c undefined FUN_1000648c(undefined4 * param_1, undefined4 * param_2) 20 1 +100064a3 FUN_100064a3 undefined1 * FUN_100064a3(undefined4 * param_1, undefined4 * param_2) 48 2 +100064d6 FUN_100064d6 undefined FUN_100064d6(undefined4 param_1, undefined4 param_2) 203 7 memset +100065a4 FUN_100065a4 undefined FUN_100065a4(int * param_1) 37 2 +100065c9 CComBSTR undefined CComBSTR(CComBSTR * this, CComBSTR * param_1) 46 2 +100065f7 FUN_100065f7 undefined4 * FUN_100065f7(void * this, CComBSTR * param_1) 59 3 SysFreeString +10006632 FUN_10006632 undefined FUN_10006632(void * this, LPCWSTR param_1) 31 2 +10006651 FUN_10006651 void * FUN_10006651(void * this, LPCWSTR param_1) 43 3 +1000667c FUN_1000667c undefined4 * FUN_1000667c(void * this, undefined4 * param_1) 57 1 +100066b5 FUN_100066b5 undefined FUN_100066b5(int param_1) 30 3 +100066d3 FUN_100066d3 undefined FUN_100066d3(int * param_1) 37 2 +100066f8 FUN_100066f8 undefined FUN_100066f8(void * this, int param_1) 24 1 +10006716 FUN_10006716 undefined FUN_10006716(void * this, undefined4 * param_1) 18 0 +1000675e FUN_1000675e undefined FUN_1000675e(void * this, undefined4 * param_1) 18 0 +10006782 FUN_10006782 undefined FUN_10006782(void * this, undefined4 * param_1) 18 0 +100067a6 FUN_100067a6 undefined FUN_100067a6(void * this, undefined4 * param_1) 18 0 +100067d6 FUN_100067d6 undefined FUN_100067d6(void * this, int param_1) 69 0 +1000681b FUN_1000681b int * FUN_1000681b(int * param_1) 33 1 +1000683c FUN_1000683c undefined FUN_1000683c(void * this, int param_1) 69 0 +10006881 FUN_10006881 int * FUN_10006881(int * param_1) 33 1 +100068a2 FUN_100068a2 int * FUN_100068a2(int * param_1) 33 1 +100068c3 FUN_100068c3 int * FUN_100068c3(int * param_1) 33 1 +100068e4 FUN_100068e4 undefined FUN_100068e4(void * this, int param_1) 69 0 +10006929 FUN_10006929 undefined4 FUN_10006929(int * param_1) 31 1 +10006948 FUN_10006948 uint FUN_10006948(void * this, undefined4 param_1, undefined4 param_2) 48 1 +10006978 FUN_10006978 undefined FUN_10006978(int * param_1, wchar_t * param_2) 100 4 +100069dc FUN_100069dc undefined FUN_100069dc(int * param_1, wchar_t * param_2) 100 4 +10006a40 FUN_10006a40 undefined FUN_10006a40(int * param_1, wchar_t * param_2) 100 4 +10006aa4 FUN_10006aa4 undefined FUN_10006aa4(int * param_1, wchar_t * param_2) 100 4 +10006b08 FUN_10006b08 int * FUN_10006b08(int * param_1) 33 1 +10006b29 FUN_10006b29 undefined FUN_10006b29(int * param_1, wchar_t * param_2) 100 4 +10006b8d FUN_10006b8d int * FUN_10006b8d(int * param_1) 12 1 +10006b99 FUN_10006b99 int * FUN_10006b99(int * param_1) 12 1 +10006ba5 FUN_10006ba5 undefined FUN_10006ba5(int * param_1, wchar_t * param_2) 100 4 +10006c09 FUN_10006c09 undefined FUN_10006c09(void * this, undefined4 param_1) 14 0 +10006c17 FUN_10006c17 undefined FUN_10006c17(int * param_1, undefined4 param_2, wchar_t * param_3) 112 4 +10006c87 FUN_10006c87 undefined4 FUN_10006c87(void * this, undefined4 param_1, undefined4 param_2) 45 1 +10006cc0 FUN_10006cc0 int FUN_10006cc0(int param_1) 55 1 +10006cf7 FUN_10006cf7 undefined FUN_10006cf7(void * this, uint param_1) 42 1 +10006d21 FUN_10006d21 undefined FUN_10006d21(void * this, undefined4 param_1) 14 0 +10006d2f FUN_10006d2f undefined * FUN_10006d2f(void) 67 4 +10006d72 FUN_10006d72 int * FUN_10006d72(void * this, int * param_1) 34 1 +10006d94 FUN_10006d94 int FUN_10006d94(int param_1) 55 1 +10006dcb FUN_10006dcb undefined FUN_10006dcb(void * this, uint param_1) 42 1 +10006df5 FUN_10006df5 undefined4 * FUN_10006df5(void * this, uint * param_1) 63 1 +10006e34 FUN_10006e34 int FUN_10006e34(int param_1) 61 1 +10006e71 FUN_10006e71 undefined FUN_10006e71(void * this, uint param_1) 42 1 +10006e9b FUN_10006e9b undefined FUN_10006e9b(void * this, undefined4 * param_1) 17 0 +10006eac FUN_10006eac undefined4 * FUN_10006eac(void * this, byte param_1) 31 2 +10006ecb FUN_10006ecb undefined FUN_10006ecb(void * this, int * param_1, int * param_2) 123 0 +10006f46 FUN_10006f46 undefined4 * FUN_10006f46(void * this, int * param_1) 44 0 +10006f72 FUN_10006f72 int FUN_10006f72(int param_1) 55 1 +10006fa9 FUN_10006fa9 int FUN_10006fa9(int param_1) 55 1 +10006fe0 FUN_10006fe0 int FUN_10006fe0(int param_1) 55 1 +10007017 FUN_10007017 undefined FUN_10007017(void * this, undefined4 param_1) 14 0 +10007025 FUN_10007025 undefined FUN_10007025(void * this, undefined4 param_1) 14 0 +10007033 FUN_10007033 undefined FUN_10007033(void * this, undefined4 param_1) 14 0 +10007041 FUN_10007041 undefined FUN_10007041(void * this, undefined4 param_1) 14 0 +1000704f FUN_1000704f undefined FUN_1000704f(void * this, undefined4 param_1) 14 0 +1000705d FUN_1000705d int * FUN_1000705d(int * param_1) 12 1 +10007069 FUN_10007069 int * FUN_10007069(void * this, int * param_1) 23 1 +10007080 FUN_10007080 undefined FUN_10007080(void * this, undefined4 param_1) 14 0 +1000708e FUN_1000708e undefined FUN_1000708e(void * this, undefined4 param_1) 14 0 +1000709c FUN_1000709c undefined FUN_1000709c(void * this, int param_1) 69 0 +100070e1 FUN_100070e1 int * FUN_100070e1(void * this, int * param_1) 23 1 +100070f8 FUN_100070f8 int * FUN_100070f8(void * this, int * param_1) 23 1 +1000710f FUN_1000710f undefined FUN_1000710f(void * this, undefined4 param_1) 14 0 +1000711d FUN_1000711d undefined FUN_1000711d(void * this, undefined4 param_1) 14 0 +1000712b FUN_1000712b undefined FUN_1000712b(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 29 0 +1000714c FUN_1000714c undefined FUN_1000714c(int param_1, int param_2, int * param_3) 26 1 +10007168 FUN_10007168 undefined FUN_10007168(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 18 1 +1000717a FUN_1000717a undefined FUN_1000717a(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 18 1 +1000718c FUN_1000718c undefined FUN_1000718c(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 18 1 +1000719f FUN_1000719f undefined FUN_1000719f(void * this, uint param_1) 42 1 +100071c9 FUN_100071c9 undefined FUN_100071c9(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +100072f2 FUN_100072f2 int * FUN_100072f2(int * param_1) 12 1 +100072fe FUN_100072fe undefined FUN_100072fe(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10007316 FUN_10007316 int * FUN_10007316(int * param_1) 12 1 +10007322 FUN_10007322 int * FUN_10007322(int * param_1) 12 1 +1000732e FUN_1000732e undefined FUN_1000732e(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10007346 FUN_10007346 undefined FUN_10007346(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1000735e FUN_1000735e int * FUN_1000735e(int * param_1) 12 1 +1000736a FUN_1000736a undefined FUN_1000736a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10007382 FUN_10007382 undefined FUN_10007382(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1000739a FUN_1000739a undefined FUN_1000739a(void * this, int * param_1) 99 4 +100073fd FUN_100073fd undefined1 * FUN_100073fd(void * this, int param_1) 138 4 CoCreateInstance +10007487 FUN_10007487 undefined1 * FUN_10007487(int * param_1) 147 6 +1000751a FUN_1000751a undefined FUN_1000751a(void * this, int * param_1) 99 4 +1000757d FUN_1000757d undefined1 * FUN_1000757d(void * this, int param_1) 138 4 CoCreateInstance +10007607 FUN_10007607 undefined1 * FUN_10007607(int * param_1) 147 6 +1000769a FUN_1000769a undefined FUN_1000769a(void * this, int * param_1) 99 4 +100076fd FUN_100076fd undefined1 * FUN_100076fd(void * this, int param_1) 138 4 CoCreateInstance +10007787 FUN_10007787 undefined1 * FUN_10007787(int * param_1) 147 6 +1000781a FUN_1000781a int FUN_1000781a(void * this, undefined4 * param_1) 61 4 +10007857 Catch@10007857 undefined Catch@10007857(void) 18 2 +1000786a FUN_1000786a undefined FUN_1000786a(int param_1, int param_2, int * param_3) 35 1 +1000788d FUN_1000788d undefined4 * FUN_1000788d(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +100078db Catch@100078db undefined Catch@100078db(void) 18 2 +100078ee FUN_100078ee undefined4 * FUN_100078ee(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +1000793c Catch@1000793c undefined Catch@1000793c(void) 18 2 +1000794f FUN_1000794f undefined4 * FUN_1000794f(void * this, undefined4 * param_1) 75 3 +100079cb FUN_100079cb void * FUN_100079cb(void * this, byte param_1) 52 4 +100079ff FUN_100079ff undefined FUN_100079ff(undefined4 * param_1, undefined4 * param_2) 57 2 +10007a38 FUN_10007a38 undefined4 * FUN_10007a38(void * this, undefined4 * param_1, undefined4 * param_2) 55 3 +10007a6f FUN_10007a6f undefined FUN_10007a6f(void * this, undefined4 * param_1) 28 0 +10007a8b FUN_10007a8b undefined FUN_10007a8b(void * param_1) 119 6 SysFreeString +10007b02 FUN_10007b02 uint FUN_10007b02(void) 43 1 +10007b2d FUN_10007b2d uint FUN_10007b2d(void) 43 1 +10007b58 FUN_10007b58 undefined4 FUN_10007b58(void) 59 1 +10007b93 FUN_10007b93 undefined4 FUN_10007b93(void) 41 1 +10007bbc FUN_10007bbc undefined FUN_10007bbc(void * this, undefined4 param_1, undefined4 * param_2) 212 8 SysFreeString +10007c90 FUN_10007c90 undefined4 FUN_10007c90(int param_1) 73 4 +10007cec ~basic_string<> undefined ~basic_string<>(void * param_1) 10 1 +10007cf6 FUN_10007cf6 undefined4 * FUN_10007cf6(void * this, uint param_1, uint param_2) 129 2 memmove +10007d84 FUN_10007d84 undefined FUN_10007d84(int param_1) 61 4 +10007dc1 FUN_10007dc1 wchar_t FUN_10007dc1(void * this, wchar_t param_1) 475 11 memcpy +10007f9c CA2WEX<128> undefined CA2WEX<128>(CA2WEX<128> * this, char * param_1) 28 1 +10007fb8 FUN_10007fb8 basic_streambuf_> * FUN_10007fb8(void * this, byte param_1) 64 4 +10007ff8 FUN_10007ff8 bool FUN_10007ff8(void * this, uint param_1, char param_2) 106 3 +10008062 FUN_10008062 undefined FUN_10008062(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 18 1 +10008074 FUN_10008074 undefined FUN_10008074(void * this, uint param_1) 57 1 +100080ad FUN_100080ad undefined4 * FUN_100080ad(void * this, uint param_1, undefined4 * param_2, uint param_3, uint param_4) 308 5 memcpy;memmove +100081e3 FUN_100081e3 undefined FUN_100081e3(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +100081ff FUN_100081ff undefined4 FUN_100081ff(void) 8 0 +10008207 FUN_10008207 undefined4 FUN_10008207(void) 8 0 +1000820f FUN_1000820f undefined4 FUN_1000820f(void) 8 0 +10008217 FUN_10008217 undefined4 * FUN_10008217(void * this, size_t param_1) 72 2 +1000825f FUN_1000825f undefined FUN_1000825f(void * param_1) 34 3 +10008281 FUN_10008281 undefined4 FUN_10008281(void) 156 8 +1000831d FUN_1000831d undefined FUN_1000831d(int param_1) 306 9 +1000844f FUN_1000844f undefined4 FUN_1000844f(int param_1, int * param_2, int * param_3) 203 3 +1000851a FUN_1000851a undefined FUN_1000851a(void * param_1) 34 3 +1000853c FUN_1000853c int * FUN_1000853c(int * param_1) 40 3 +10008564 FUN_10008564 int * FUN_10008564(int * param_1) 40 3 +1000858c FUN_1000858c undefined FUN_1000858c(int * param_1) 41 1 +100085b5 FUN_100085b5 undefined FUN_100085b5(void * this, int * param_1) 65 1 +10008646 FUN_10008646 undefined FUN_10008646(void * this, undefined4 * param_1) 15 0 +10008655 FUN_10008655 int * FUN_10008655(int * param_1) 40 3 +1000867d FUN_1000867d int * FUN_1000867d(void * this, int * param_1) 23 1 +10008694 FUN_10008694 int * FUN_10008694(void * this, int * param_1) 23 1 +100086de FUN_100086de undefined FUN_100086de(int * param_1) 53 2 +10008713 FUN_10008713 undefined FUN_10008713(void * this, undefined4 param_1) 14 0 +100087ad FUN_100087ad undefined4 * FUN_100087ad(void * this, undefined4 * param_1, int * param_2) 22 1 +100087c3 FUN_100087c3 int * FUN_100087c3(void * this, int * param_1, int * param_2) 21 1 +10008832 FUN_10008832 undefined4 FUN_10008832(int * param_1) 64 1 +10008872 FUN_10008872 int FUN_10008872(void * this, uint param_1) 44 1 +1000889e FUN_1000889e undefined FUN_1000889e(void * this, undefined4 param_1) 14 0 +100088ac FUN_100088ac undefined FUN_100088ac(void * this, undefined4 param_1) 14 0 +100088ba FUN_100088ba undefined FUN_100088ba(void * this, undefined4 param_1) 14 0 +100088c8 FUN_100088c8 undefined FUN_100088c8(void * this, undefined4 param_1) 14 0 +100088d6 FUN_100088d6 undefined FUN_100088d6(void * this, undefined4 param_1) 14 0 +100088e4 FUN_100088e4 int * FUN_100088e4(int * param_1) 12 1 +100088f0 FUN_100088f0 undefined FUN_100088f0(void * this, undefined4 param_1) 14 0 +100088fe FUN_100088fe undefined FUN_100088fe(void * this, undefined4 param_1) 14 0 +1000890c FUN_1000890c undefined FUN_1000890c(undefined4 * param_1, undefined4 param_2) 15 0 +1000891b FUN_1000891b undefined FUN_1000891b(int * param_1) 41 1 +10008944 FUN_10008944 undefined4 * FUN_10008944(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +10008992 Catch@10008992 undefined Catch@10008992(void) 18 2 +100089a5 FUN_100089a5 undefined FUN_100089a5(void * this, int * param_1, uint * param_2) 167 1 +10008a4c FUN_10008a4c undefined4 * FUN_10008a4c(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +10008a9a Catch@10008a9a undefined Catch@10008a9a(void) 18 2 +10008aad FUN_10008aad undefined FUN_10008aad(int * param_1) 41 1 +10008ad6 FUN_10008ad6 undefined FUN_10008ad6(int * param_1) 41 1 +10008aff FUN_10008aff undefined4 * FUN_10008aff(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +10008b4d Catch@10008b4d undefined Catch@10008b4d(void) 18 2 +10008b60 FUN_10008b60 undefined FUN_10008b60(void * this, undefined4 * param_1, int * param_2) 587 5 +10008dab FUN_10008dab LONG FUN_10008dab(undefined4 * param_1) 43 3 +10008dd6 FUN_10008dd6 undefined FUN_10008dd6(void * this, undefined4 * param_1) 17 0 +10008de7 FUN_10008de7 undefined FUN_10008de7(int * param_1) 41 1 +10008e10 FUN_10008e10 undefined FUN_10008e10(void * this, undefined4 param_1) 14 0 +10008e1e FUN_10008e1e undefined FUN_10008e1e(int * param_1) 53 2 +10008e53 FUN_10008e53 undefined FUN_10008e53(void * this, undefined4 param_1) 14 0 +10008e61 FUN_10008e61 undefined FUN_10008e61(int * param_1) 31 3 +10008e80 Catch@10008e80 undefined * Catch@10008e80(void) 34 2 +10008ea4 Catch@10008ea4 undefined4 Catch@10008ea4(void) 10 0 +10008eb3 FUN_10008eb3 int * FUN_10008eb3(void * this, int * param_1) 51 3 +10008ee6 FUN_10008ee6 int * FUN_10008ee6(void * this, int * param_1) 84 5 +10008f3a FUN_10008f3a undefined4 FUN_10008f3a(void * param_1) 84 3 +10008f8e FUN_10008f8e HRESULT FUN_10008f8e(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 146 4 CoCreateInstance +10009020 FUN_10009020 undefined FUN_10009020(int * param_1) 31 3 +1000903f Catch@1000903f undefined * Catch@1000903f(void) 34 2 +10009063 Catch@10009063 undefined4 Catch@10009063(void) 10 0 +10009072 FUN_10009072 int * FUN_10009072(void * this, int * param_1) 51 3 +100090a5 FUN_100090a5 undefined4 FUN_100090a5(void * param_1) 84 3 +100090f9 FUN_100090f9 HRESULT FUN_100090f9(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 146 4 CoCreateInstance +1000918b FUN_1000918b undefined FUN_1000918b(int * param_1) 31 3 +100091aa Catch@100091aa undefined * Catch@100091aa(void) 34 2 +100091ce Catch@100091ce undefined4 Catch@100091ce(void) 10 0 +100091dd FUN_100091dd int * FUN_100091dd(void * this, int * param_1) 51 3 +10009210 FUN_10009210 int * FUN_10009210(void * this, int * param_1) 84 5 +10009264 FUN_10009264 undefined4 FUN_10009264(void * param_1) 84 3 +100092b8 FUN_100092b8 HRESULT FUN_100092b8(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 146 4 CoCreateInstance +1000934a FUN_1000934a undefined4 FUN_1000934a(void * this, int * param_1) 126 4 +100093c8 FUN_100093c8 undefined4 FUN_100093c8(void * this, int * param_1) 126 4 +10009446 FUN_10009446 undefined FUN_10009446(int param_1, int param_2, int * param_3) 26 1 +10009460 FUN_10009460 undefined FUN_10009460(void * this, int param_1, undefined4 * param_2) 50 2 +10009492 FUN_10009492 undefined FUN_10009492(void * this, int param_1, undefined4 * param_2) 50 2 +100094c4 FUN_100094c4 undefined FUN_100094c4(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +10009573 FUN_10009573 undefined FUN_10009573(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +1000969c FUN_1000969c undefined4 * FUN_1000969c(void * this, undefined4 * param_1, undefined4 * param_2) 55 3 +100096f1 FUN_100096f1 undefined FUN_100096f1(void * param_1) 15 1 +10009700 FUN_10009700 undefined FUN_10009700(void * param_1) 34 3 +10009722 FUN_10009722 undefined FUN_10009722(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +10009735 FUN_10009735 undefined FUN_10009735(undefined4 * param_1, undefined4 * param_2) 57 2 +1000976e FUN_1000976e void * FUN_1000976e(void * this, undefined4 * param_1) 46 3 +100097c5 FUN_100097c5 undefined FUN_100097c5(uint param_1) 204 6 +10009891 FUN_10009891 undefined FUN_10009891(int param_1) 20 1 +100098a5 FUN_100098a5 basic_iostream_> * FUN_100098a5(void * this, byte param_1, int param_2) 111 5 +10009914 FUN_10009914 void * FUN_10009914(void * this, byte param_1) 34 2 +10009936 FUN_10009936 undefined4 * FUN_10009936(void * this, uint param_1, wchar_t param_2) 99 3 +10009999 FUN_10009999 undefined4 * FUN_10009999(void * this, undefined4 * param_1, uint param_2, uint param_3) 156 4 memcpy +10009a35 FUN_10009a35 undefined4 * FUN_10009a35(void * this, undefined4 * param_1, uint param_2, uint param_3) 165 4 memcpy +10009ada FID_conflict:assign undefined4 * FID_conflict:assign(void * this, undefined4 * param_1, uint param_2) 126 4 memcpy +10009b58 FUN_10009b58 undefined FUN_10009b58(void * this, undefined4 * param_1) 19 1 +10009b6b FUN_10009b6b undefined FUN_10009b6b(void * this, uint param_1, undefined4 * param_2) 22 1 +10009b82 FUN_10009b82 undefined4 * FUN_10009b82(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 65 3 +10009bc3 Catch@10009bc3 undefined Catch@10009bc3(void) 9 1 +10009bcd FUN_10009bcd undefined FUN_10009bcd(int * param_1) 78 5 +10009c1b FUN_10009c1b undefined4 FUN_10009c1b(int param_1) 158 8 +10009cb9 Catch@10009cb9 undefined * Catch@10009cb9(void) 10 0 +10009cc6 FUN_10009cc6 undefined4 FUN_10009cc6(void) 13 1 +10009cd3 FUN_10009cd3 undefined4 FUN_10009cd3(int param_1) 196 10 memset +10009d97 Catch@10009d97 undefined * Catch@10009d97(void) 10 0 +10009da4 FUN_10009da4 undefined4 FUN_10009da4(void) 16 1 +10009db4 FUN_10009db4 undefined1 * FUN_10009db4(void * this, int param_1, char param_2) 253 6 +10009eb1 FUN_10009eb1 bool FUN_10009eb1(void * this, wchar_t * param_1) 79 4 +10009f00 FUN_10009f00 undefined4 FUN_10009f00(void * this, undefined4 param_1, OLECHAR * param_2, int * param_3) 287 9 SysAllocString;SysFreeString +1000a01f FUN_1000a01f undefined1 FUN_1000a01f(void * this, int * param_1) 365 9 +1000a18c FUN_1000a18c undefined4 FUN_1000a18c(void * this, void * param_1) 124 6 +1000a1fe Catch@1000a1fe undefined4 Catch@1000a1fe(void) 36 0 +1000a22c FUN_1000a22c undefined FUN_1000a22c(void * param_1) 34 3 +1000a24e FUN_1000a24e undefined FUN_1000a24e(undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 429 14 memcpy +1000a3fb FUN_1000a3fb undefined4 FUN_1000a3fb(int param_1) 115 6 +1000a46e Catch@1000a46e undefined4 Catch@1000a46e(void) 48 2 +1000a49e FUN_1000a49e undefined4 FUN_1000a49e(int param_1) 160 8 +1000a53e FUN_1000a53e undefined FUN_1000a53e(void * this, undefined4 * param_1) 17 0 +1000a54f FUN_1000a54f undefined FUN_1000a54f(void * this, undefined4 * param_1) 15 0 +1000a55e FUN_1000a55e undefined FUN_1000a55e(void * this, undefined4 * param_1, int * param_2) 587 5 +1000a7a9 FUN_1000a7a9 undefined FUN_1000a7a9(int param_1) 39 1 +1000a7d0 FUN_1000a7d0 undefined FUN_1000a7d0(void * this, undefined4 * param_1) 16 0 +1000a7e0 FUN_1000a7e0 undefined FUN_1000a7e0(void * this, undefined4 * param_1) 14 0 +1000a7ee FUN_1000a7ee undefined FUN_1000a7ee(void * this, undefined4 * param_1) 17 0 +1000a7ff FUN_1000a7ff undefined FUN_1000a7ff(void * this, undefined4 * param_1) 15 0 +1000a80e FUN_1000a80e undefined FUN_1000a80e(int * param_1) 44 4 +1000a83a FUN_1000a83a undefined FUN_1000a83a(void * this, undefined4 * param_1) 16 0 +1000a84a FUN_1000a84a undefined FUN_1000a84a(void * this, undefined4 * param_1) 14 0 +1000a858 FUN_1000a858 undefined FUN_1000a858(void * this, undefined4 * param_1) 17 0 +1000a869 FUN_1000a869 undefined FUN_1000a869(void * this, undefined4 * param_1) 15 0 +1000a878 FUN_1000a878 undefined FUN_1000a878(void * this, undefined4 * param_1) 16 0 +1000a888 FUN_1000a888 undefined FUN_1000a888(void * this, undefined4 * param_1) 14 0 +1000a89e FUN_1000a89e undefined FUN_1000a89e(void * this, undefined4 * param_1) 16 0 +1000a8ae FUN_1000a8ae undefined FUN_1000a8ae(void * this, undefined4 * param_1) 14 0 +1000a8c4 FUN_1000a8c4 undefined FUN_1000a8c4(void * this, undefined4 * param_1, int * param_2) 58 1 +1000a8fe FUN_1000a8fe undefined FUN_1000a8fe(void * this, undefined4 * param_1) 15 0 +1000a90d FUN_1000a90d int * FUN_1000a90d(void * this, int * param_1) 23 1 +1000a924 FUN_1000a924 undefined4 * FUN_1000a924(void * this, undefined4 * param_1, int * param_2) 22 1 +1000a93a FUN_1000a93a undefined FUN_1000a93a(void * this, int param_1, undefined4 * param_2) 50 2 +1000a96c FUN_1000a96c undefined FUN_1000a96c(void * this, int * param_1, int * param_2) 56 1 +1000a9a9 FUN_1000a9a9 undefined4 * FUN_1000a9a9(void * this, undefined4 * param_1, uint * param_2) 22 1 +1000a9bf FUN_1000a9bf int * FUN_1000a9bf(void * this, int * param_1, uint * param_2) 21 1 +1000a9d4 FUN_1000a9d4 undefined FUN_1000a9d4(void * this, int param_1, undefined4 * param_2) 50 2 +1000aa06 FUN_1000aa06 undefined4 * FUN_1000aa06(void * this, undefined4 * param_1, uint * param_2) 22 1 +1000aa1c FUN_1000aa1c undefined FUN_1000aa1c(undefined4 * param_1, undefined4 param_2) 15 0 +1000aa30 FUN_1000aa30 undefined FUN_1000aa30(undefined4 * param_1, undefined4 param_2) 15 0 +1000aa3f FUN_1000aa3f undefined FUN_1000aa3f(void * this, int param_1, undefined4 * param_2) 50 2 +1000aa76 FUN_1000aa76 undefined FUN_1000aa76(void * this, undefined4 * param_1) 16 0 +1000aa8b FUN_1000aa8b undefined FUN_1000aa8b(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +1000aade FUN_1000aade undefined FUN_1000aade(undefined4 * param_1) 19 1 +1000aaf1 FUN_1000aaf1 undefined FUN_1000aaf1(int param_1) 39 1 +1000ab18 FUN_1000ab18 undefined FUN_1000ab18(void * this, undefined4 * param_1) 17 0 +1000ab29 FUN_1000ab29 undefined FUN_1000ab29(void * this, undefined4 * param_1) 15 0 +1000ab38 FUN_1000ab38 undefined FUN_1000ab38(undefined4 * param_1, undefined4 param_2) 15 0 +1000ab7d FUN_1000ab7d undefined4 * FUN_1000ab7d(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +1000aba0 FUN_1000aba0 undefined FUN_1000aba0(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +1000ac6f FUN_1000ac6f undefined FUN_1000ac6f(void * param_1) 17 1 +1000ac80 FUN_1000ac80 int FUN_1000ac80(void * this, undefined4 * param_1) 61 4 +1000acbd Catch@1000acbd undefined Catch@1000acbd(void) 18 2 +1000acf2 FUN_1000acf2 undefined FUN_1000acf2(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +1000ad05 FUN_1000ad05 undefined1 * FUN_1000ad05(void * param_1, undefined4 * param_2) 46 3 +1000ad33 basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1) 40 1 +1000ad5b FUN_1000ad5b undefined FUN_1000ad5b(void * this, wchar_t param_1) 17 1 +1000ad6c FUN_1000ad6c undefined4 * FUN_1000ad6c(void * this, undefined4 * param_1, uint param_2) 162 5 memcpy +1000ae0e FUN_1000ae0e undefined FUN_1000ae0e(void * this, wchar_t * param_1) 32 2 +1000ae2e basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1, uint param_2) 40 1 +1000ae56 FUN_1000ae56 undefined FUN_1000ae56(void * this, undefined4 * param_1) 19 1 +1000ae69 FUN_1000ae69 undefined FUN_1000ae69(void * this, undefined4 * param_1) 19 1 +1000ae7d _Uninitialized_move<> undefined _Uninitialized_move<>(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 31 1 +1000ae9c FUN_1000ae9c undefined FUN_1000ae9c(int param_1) 142 3 +1000af2a FUN_1000af2a undefined2 * FUN_1000af2a(void * this, undefined4 * param_1) 64 3 +1000af6a FUN_1000af6a undefined4 FUN_1000af6a(void * this, undefined4 param_1, OLECHAR * param_2, int * param_3) 184 8 +1000b022 FUN_1000b022 undefined FUN_1000b022(int * param_1) 44 2 +1000b04e FUN_1000b04e undefined4 FUN_1000b04e(void * this, int param_1) 827 5 +1000b389 FUN_1000b389 undefined FUN_1000b389(int param_1) 104 4 +1000b3f1 FUN_1000b3f1 undefined FUN_1000b3f1(void * this, undefined4 * param_1, int * param_2) 58 1 +1000b42b FUN_1000b42b undefined FUN_1000b42b(int * param_1) 44 4 +1000b457 FUN_1000b457 undefined FUN_1000b457(undefined4 * param_1) 19 1 +1000b46a FUN_1000b46a undefined FUN_1000b46a(void * this, undefined4 * param_1) 18 1 +1000b47c FUN_1000b47c undefined FUN_1000b47c(void * this, undefined4 * param_1, uint * param_2) 68 2 +1000b4c0 FUN_1000b4c0 undefined FUN_1000b4c0(void * this, undefined4 * param_1) 18 1 +1000b4d2 FUN_1000b4d2 undefined FUN_1000b4d2(void * this, undefined4 * param_1, uint * param_2) 68 2 +1000b516 FUN_1000b516 undefined FUN_1000b516(void * this, undefined4 * param_1) 18 1 +1000b554 FUN_1000b554 undefined FUN_1000b554(void * this, int * param_1, int * param_2) 56 1 +1000b58c FUN_1000b58c undefined FUN_1000b58c(void * this, undefined4 * param_1) 18 1 +1000b5ca FUN_1000b5ca undefined FUN_1000b5ca(void * this, undefined4 * param_1) 18 1 +1000b5dc FUN_1000b5dc undefined FUN_1000b5dc(void * this, int * param_1, int * param_2) 56 1 +1000b614 FUN_1000b614 undefined FUN_1000b614(int * param_1) 44 4 +1000b648 FUN_1000b648 undefined FUN_1000b648(void * param_1) 22 1 +1000b65e FUN_1000b65e undefined FUN_1000b65e(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +1000b6b1 FUN_1000b6b1 undefined FUN_1000b6b1(void * param_1) 22 1 +1000b6c7 FUN_1000b6c7 undefined FUN_1000b6c7(void * this, int * param_1, int * param_2) 56 1 +1000b6ff FUN_1000b6ff undefined FUN_1000b6ff(undefined4 * param_1) 19 1 +1000b712 FUN_1000b712 int * FUN_1000b712(void * this, int * param_1) 54 2 +1000b748 FUN_1000b748 void * FUN_1000b748(void * this, void * param_1) 71 3 +1000b78f FUN_1000b78f void * FUN_1000b78f(void * this, void * param_1) 71 3 +1000b7d6 FUN_1000b7d6 undefined4 * FUN_1000b7d6(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +1000b817 FUN_1000b817 undefined FUN_1000b817(undefined4 param_1, void * param_2) 15 1 +1000b826 FUN_1000b826 undefined FUN_1000b826(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 320 7 +1000b966 FUN_1000b966 undefined FUN_1000b966(void * param_1, undefined4 * param_2) 52 4 +1000b99a FUN_1000b99a int FUN_1000b99a(void * this, undefined4 * param_1) 61 4 +1000b9d7 Catch@1000b9d7 undefined Catch@1000b9d7(void) 18 2 +1000b9ea FUN_1000b9ea void * FUN_1000b9ea(void * this, byte param_1) 53 4 +1000ba1f FUN_1000ba1f undefined FUN_1000ba1f(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +1000ba66 FUN_1000ba66 void * FUN_1000ba66(void * this, undefined4 * param_1, undefined4 * param_2) 52 3 +1000ba9a FUN_1000ba9a undefined FUN_1000ba9a(undefined4 * param_1) 46 1 +1000bac8 FUN_1000bac8 undefined4 * FUN_1000bac8(void * this, undefined4 param_1, int * param_2, OLECHAR * param_3, undefined4 param_4, undefined4 param_5) 81 4 +1000bb19 FUN_1000bb19 undefined4 * FUN_1000bb19(void * this, int param_1) 63 3 +1000bb58 FUN_1000bb58 undefined FUN_1000bb58(undefined4 * param_1) 54 4 +1000bbe4 FUN_1000bbe4 undefined2 * FUN_1000bbe4(void * this, wchar_t * param_1) 50 2 +1000bc16 FUN_1000bc16 undefined FUN_1000bc16(void * this, wchar_t * param_1) 32 2 +1000bc36 FUN_1000bc36 undefined4 * FUN_1000bc36(void * this, undefined4 * param_1) 93 2 memmove +1000bc93 FUN_1000bc93 undefined FUN_1000bc93(void * this, undefined4 * param_1) 19 1 +1000bca9 FUN_1000bca9 undefined FUN_1000bca9(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +1000bcc5 FUN_1000bcc5 undefined4 * FUN_1000bcc5(undefined4 * param_1) 51 3 +1000bcf8 FUN_1000bcf8 undefined FUN_1000bcf8(uint * param_1) 82 2 +1000bd4a FUN_1000bd4a void * FUN_1000bd4a(void * this, undefined4 * param_1) 48 2 +1000bd7a FUN_1000bd7a undefined FUN_1000bd7a(int param_1) 33 3 +1000bd9b FUN_1000bd9b int FUN_1000bd9b(void * this, uint param_1, int param_2, uint param_3, byte param_4) 97 1 +1000bdfc FUN_1000bdfc char FUN_1000bdfc(void * this, uint param_1, int param_2, uint param_3, byte param_4) 174 4 +1000beaa FUN_1000beaa undefined FUN_1000beaa(void * param_1) 58 4 +1000bee4 FUN_1000bee4 undefined FUN_1000bee4(void * this, undefined4 * param_1, int * param_2) 608 8 +1000c144 FUN_1000c144 undefined FUN_1000c144(undefined4 * param_1) 19 1 +1000c157 FUN_1000c157 undefined FUN_1000c157(undefined4 * param_1) 19 1 +1000c16a FUN_1000c16a undefined FUN_1000c16a(void * param_1) 58 4 +1000c1a4 FUN_1000c1a4 int FUN_1000c1a4(void * this, int * param_1) 70 3 +1000c1ea FUN_1000c1ea undefined FUN_1000c1ea(void * this, undefined4 * param_1, int * param_2) 597 6 +1000c43f FUN_1000c43f undefined FUN_1000c43f(undefined4 * param_1) 19 1 +1000c452 FUN_1000c452 undefined FUN_1000c452(int * param_1) 75 5 +1000c49d FUN_1000c49d undefined FUN_1000c49d(int * param_1) 64 3 +1000c4dd FUN_1000c4dd undefined FUN_1000c4dd(void * this, int * param_1, int * param_2, uint * param_3) 217 7 +1000c5b6 FUN_1000c5b6 undefined4 * FUN_1000c5b6(void * this, undefined4 * param_1, undefined4 param_2) 112 4 +1000c626 Catch@1000c626 undefined Catch@1000c626(void) 20 2 +1000c63b FUN_1000c63b int FUN_1000c63b(void * this, undefined4 * param_1) 61 4 +1000c678 Catch@1000c678 undefined Catch@1000c678(void) 18 2 +1000c6b4 FUN_1000c6b4 undefined FUN_1000c6b4(void * param_1) 15 1 +1000c6c3 FUN_1000c6c3 void * FUN_1000c6c3(void * this, undefined4 * param_1) 46 3 +1000c6f1 FUN_1000c6f1 undefined4 * FUN_1000c6f1(void * this, byte param_1) 31 2 +1000c710 basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1) 37 1 +1000c735 FUN_1000c735 undefined FUN_1000c735(_Container_base0 * param_1) 35 2 +1000c758 FUN_1000c758 undefined FUN_1000c758(void * this, void * param_1) 269 9 +1000c865 FUN_1000c865 undefined FUN_1000c865(void * this, char * param_1) 172 7 +1000c911 Catch@1000c911 undefined Catch@1000c911(void) 18 2 +1000c924 FUN_1000c924 void * FUN_1000c924(void * param_1, undefined4 * param_2, void * param_3) 62 4 +1000c962 FUN_1000c962 undefined2 * FUN_1000c962(undefined2 * param_1, undefined4 * param_2, undefined4 * param_3) 100 4 +1000c9c6 FUN_1000c9c6 undefined FUN_1000c9c6(void * param_1) 30 3 +1000ca2a FUN_1000ca2a undefined FUN_1000ca2a(void * this, undefined4 * param_1, int * param_2) 42 1 +1000cd34 FUN_1000cd34 undefined1 FUN_1000cd34(void * this, int * param_1, byte param_2, undefined4 * param_3, undefined2 * param_4) 1109 10 +1000d189 FUN_1000d189 undefined FUN_1000d189(void * param_1) 40 3 +1000d1b1 FUN_1000d1b1 undefined FUN_1000d1b1(int param_1) 33 3 +1000d1d2 FUN_1000d1d2 int FUN_1000d1d2(int param_1) 44 3 +1000d1fe FUN_1000d1fe undefined FUN_1000d1fe(int param_1) 39 1 +1000d251 FUN_1000d251 undefined FUN_1000d251(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +1000d2a4 FUN_1000d2a4 undefined FUN_1000d2a4(void * param_1) 22 1 +1000d2ba FUN_1000d2ba undefined FUN_1000d2ba(int param_1) 39 1 +1000d2e1 FUN_1000d2e1 int * FUN_1000d2e1(void * this, int * param_1, undefined4 * param_2) 35 2 +1000d336 FUN_1000d336 undefined FUN_1000d336(void * param_1) 17 1 +1000d347 FUN_1000d347 undefined FUN_1000d347(void * this, int param_1) 97 1 +1000d3a8 FUN_1000d3a8 undefined FUN_1000d3a8(int param_1) 33 3 +1000d3c9 FUN_1000d3c9 undefined1 * FUN_1000d3c9(void * param_1, undefined4 * param_2) 46 3 +1000d3f7 FUN_1000d3f7 undefined FUN_1000d3f7(_Container_base0 * param_1) 5 0 +1000d3fc FUN_1000d3fc void * FUN_1000d3fc(void * this, void * param_1) 49 3 +1000d42d FUN_1000d42d undefined FUN_1000d42d(void * this, int param_1) 88 3 +1000d4b4 FUN_1000d4b4 void * FUN_1000d4b4(void * param_1) 48 3 +1000d4e4 FUN_1000d4e4 undefined FUN_1000d4e4(int param_1) 33 3 +1000d505 FUN_1000d505 undefined FUN_1000d505(void * param_1) 58 4 +1000d53f FUN_1000d53f int FUN_1000d53f(void * this, uint * param_1) 70 3 +1000d585 FUN_1000d585 undefined FUN_1000d585(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +1000d5d8 FUN_1000d5d8 undefined FUN_1000d5d8(undefined4 param_1, void * param_2) 15 1 +1000d5e7 FUN_1000d5e7 undefined FUN_1000d5e7(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 308 5 +1000d71b FUN_1000d71b void * FUN_1000d71b(void * this, int param_1) 65 4 +1000d75c Catch@1000d75c undefined Catch@1000d75c(void) 28 2 +1000d79a FUN_1000d79a undefined FUN_1000d79a(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +1000d7ad FUN_1000d7ad undefined FUN_1000d7ad(void * this, void * param_1, int param_2, char * param_3, int param_4) 1138 21 +1000dc1f FUN_1000dc1f void * FUN_1000dc1f(void * param_1, void * param_2, char * param_3, int param_4) 55 3 +1000dc56 FUN_1000dc56 void * FUN_1000dc56(void * param_1, int param_2, char * param_3, int param_4) 74 5 +1000dca0 FUN_1000dca0 void * FUN_1000dca0(void * param_1, uint param_2, int param_3, OLECHAR * param_4, undefined4 param_5, undefined4 param_6) 179 7 +1000dd53 FUN_1000dd53 undefined FUN_1000dd53(uint param_1, OLECHAR * param_2, undefined4 param_3, undefined4 param_4) 46 2 +1000dd82 FUN_1000dd82 undefined FUN_1000dd82(uint param_1, OLECHAR * param_2, undefined4 param_3, undefined4 param_4) 27 1 +1000dd9d FUN_1000dd9d undefined FUN_1000dd9d(void * this, undefined4 * param_1) 111 3 +1000de0c FUN_1000de0c undefined FUN_1000de0c(void * param_1) 30 3 +1000de2a FUN_1000de2a undefined1 FUN_1000de2a(void * this, undefined4 param_1, undefined4 param_2, int * param_3) 816 18 SysFreeString +1000e15a FUN_1000e15a undefined4 FUN_1000e15a(void * param_1) 482 13 SysFreeString +1000e33c FUN_1000e33c int FUN_1000e33c(int param_1) 44 3 +1000e368 FUN_1000e368 undefined FUN_1000e368(void * param_1) 22 1 +1000e37e FUN_1000e37e undefined FUN_1000e37e(void * this, undefined4 * param_1, int * param_2) 597 6 +1000e5d3 FUN_1000e5d3 undefined FUN_1000e5d3(int * param_1) 64 3 +1000e613 FUN_1000e613 undefined FUN_1000e613(void * this, int * param_1, int * param_2, undefined4 * param_3) 207 5 +1000e708 FUN_1000e708 int FUN_1000e708(void * this, undefined4 * param_1) 61 4 +1000e745 Catch@1000e745 undefined Catch@1000e745(void) 18 2 +1000e758 FUN_1000e758 void * FUN_1000e758(void * this, byte param_1) 52 4 +1000e78c FUN_1000e78c undefined FUN_1000e78c(void) 768 20 +1000ea8c FUN_1000ea8c undefined FUN_1000ea8c(void * param_1) 58 4 +1000eac6 FUN_1000eac6 undefined FUN_1000eac6(int param_1) 39 1 +1000eaed FUN_1000eaed int * FUN_1000eaed(void * this, int * param_1, undefined4 * param_2) 35 2 +1000eb51 FUN_1000eb51 undefined FUN_1000eb51(void * param_1) 15 1 +1000eb60 FUN_1000eb60 undefined FUN_1000eb60(void * this, undefined4 param_1, int * param_2, undefined1 * param_3) 1164 35 SysAllocString;SysFreeString;memset +1000efec FUN_1000efec undefined FUN_1000efec(void * param_1) 30 3 +1000f162 FUN_1000f162 int FUN_1000f162(int param_1) 44 3 +1000f18e FUN_1000f18e undefined FUN_1000f18e(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +1000f1e1 FUN_1000f1e1 undefined FUN_1000f1e1(void * param_1) 17 1 +1000f1f2 FUN_1000f1f2 void * FUN_1000f1f2(void * this, void * param_1) 36 1 +1000f216 FUN_1000f216 undefined4 * FUN_1000f216(void * this, undefined4 * param_1, void * param_2) 70 3 +1000f25c FUN_1000f25c undefined4 FUN_1000f25c(void * this, undefined4 param_1, int * param_2, undefined1 * param_3) 49 2 +1000f376 FUN_1000f376 undefined FUN_1000f376(void * param_1) 22 1 +1000f38c FUN_1000f38c undefined FUN_1000f38c(undefined4 param_1, void * param_2) 15 1 +1000f39b FUN_1000f39b undefined FUN_1000f39b(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 341 5 +1000f4f0 FUN_1000f4f0 undefined4 * FUN_1000f4f0(void * this, undefined4 * param_1, void * param_2) 70 3 +1000f536 FUN_1000f536 void * FUN_1000f536(void * this, undefined4 * param_1) 46 3 +1000f564 FUN_1000f564 undefined4 * FUN_1000f564(undefined4 * param_1) 76 4 +1000f5b0 FUN_1000f5b0 undefined FUN_1000f5b0(void) 330 12 +1000f6fa Catch@1000f6fa undefined * Catch@1000f6fa(void) 96 5 +1000f75c Catch@1000f75c undefined * Catch@1000f75c(void) 49 3 +1000f792 Catch@1000f792 undefined * Catch@1000f792(void) 118 6 +1000f80d Catch@1000f80d undefined4 Catch@1000f80d(void) 66 3 +1000f84f FUN_1000f84f undefined FUN_1000f84f(int param_1) 452 13 +1000fa13 Catch@1000fa13 undefined * Catch@1000fa13(void) 99 5 +1000fa78 Catch@1000fa78 undefined * Catch@1000fa78(void) 49 3 +1000faae Catch@1000faae undefined * Catch@1000faae(void) 121 6 +1000fb2c Catch@1000fb2c undefined4 Catch@1000fb2c(void) 69 3 +1000fb71 FUN_1000fb71 undefined FUN_1000fb71(int param_1) 247 15 +1000fc68 Catch@1000fc68 undefined * Catch@1000fc68(void) 99 5 +1000fccd Catch@1000fccd undefined * Catch@1000fccd(void) 49 3 +1000fd03 Catch@1000fd03 undefined * Catch@1000fd03(void) 121 6 +1000fd81 Catch@1000fd81 undefined4 Catch@1000fd81(void) 69 3 +1000fdc6 FUN_1000fdc6 undefined FUN_1000fdc6(void * this, uint param_1, uint param_2, int * param_3, BSTR param_4) 1079 25 SysAllocString;SysFreeString +100101fd Catch@100101fd undefined1 * Catch@100101fd(void) 99 4 +10010277 Catch@10010277 undefined * Catch@10010277(void) 19 0 +1001028c Catch@1001028c undefined * Catch@1001028c(void) 119 6 +10010303 Catch@10010303 undefined * Catch@10010303(void) 70 3 +10010359 FUN_10010359 undefined FUN_10010359(void) 8 1 +10010361 FUN_10010361 undefined FUN_10010361(void * this, uint param_1, int param_2, uint param_3) 325 12 +100104a6 Catch@100104a6 undefined1 * Catch@100104a6(void) 99 4 +10010520 Catch@10010520 undefined * Catch@10010520(void) 19 0 +10010535 Catch@10010535 undefined * Catch@10010535(void) 119 6 +100105ac Catch@100105ac undefined * Catch@100105ac(void) 70 3 +10010602 FUN_10010602 undefined FUN_10010602(void) 8 1 +1001060a FUN_1001060a undefined FUN_1001060a(void) 42 4 +10010634 Catch@10010634 undefined * Catch@10010634(void) 99 4 +1001069a FUN_1001069a undefined FUN_1001069a(void) 8 1 +100106a2 Catch@100106a2 undefined * Catch@100106a2(void) 19 0 +100106b7 Catch@100106b7 undefined * Catch@100106b7(void) 119 6 +10010733 Catch@10010733 undefined * Catch@10010733(void) 70 3 +1001082b Catch@1001082b undefined * Catch@1001082b(void) 102 5 +10010896 Catch@10010896 undefined * Catch@10010896(void) 52 3 +100108cf Catch@100108cf undefined * Catch@100108cf(void) 124 6 +10010950 Catch@10010950 undefined1 * Catch@10010950(void) 70 3 +10010996 FUN_10010996 int FUN_10010996(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5) 579 17 +10010bd9 Catch@10010bd9 undefined * Catch@10010bd9(void) 99 5 +10010c3e Catch@10010c3e undefined * Catch@10010c3e(void) 49 3 +10010c74 Catch@10010c74 undefined * Catch@10010c74(void) 121 6 +10010cf2 Catch@10010cf2 undefined4 Catch@10010cf2(void) 69 3 +10010d37 FUN_10010d37 undefined FUN_10010d37(void * param_1, undefined1 param_2, uint param_3, uint param_4, int * param_5, int param_6, size_t param_7, void * param_8) 797 18 SysFreeString;memcpy +10011054 FUN_10011054 undefined FUN_10011054(void * this, uint param_1, uint param_2, uint param_3, undefined4 param_4, LPVOID param_5, void * param_6, undefined4 param_7) 646 17 SysFreeString;memcpy +100112da FUN_100112da undefined FUN_100112da(void * this, LPCRITICAL_SECTION param_1, void * param_2) 1205 20 memcpy +1001178f FUN_1001178f undefined FUN_1001178f(int * param_1) 147 7 +10011822 Catch@10011822 undefined * Catch@10011822(void) 99 4 +10011888 FUN_10011888 undefined FUN_10011888(void) 8 1 +10011890 Catch@10011890 undefined * Catch@10011890(void) 19 0 +100118a5 Catch@100118a5 undefined * Catch@100118a5(void) 119 6 +10011921 Catch@10011921 undefined * Catch@10011921(void) 70 3 +10011967 FUN_10011967 undefined FUN_10011967(int * param_1, int param_2) 181 6 +10011a1c Catch@10011a1c undefined * Catch@10011a1c(void) 100 4 +10011a83 FUN_10011a83 undefined FUN_10011a83(void) 8 1 +10011a8b Catch@10011a8b undefined * Catch@10011a8b(void) 19 0 +10011aa0 Catch@10011aa0 undefined * Catch@10011aa0(void) 120 6 +10011b1d Catch@10011b1d undefined * Catch@10011b1d(void) 70 3 +10011b63 FUN_10011b63 undefined FUN_10011b63(int * param_1) 144 6 +10011bf3 Catch@10011bf3 undefined * Catch@10011bf3(void) 99 4 +10011c59 FUN_10011c59 undefined FUN_10011c59(void) 8 1 +10011c61 Catch@10011c61 undefined * Catch@10011c61(void) 19 0 +10011c76 Catch@10011c76 undefined * Catch@10011c76(void) 119 6 +10011cf2 Catch@10011cf2 undefined * Catch@10011cf2(void) 70 3 +10011d3a FUN_10011d3a undefined4 FUN_10011d3a(int param_1) 415 17 +10011e87 Catch@10011e87 undefined1 * Catch@10011e87(void) 99 5 +10011f00 Catch@10011f00 undefined * Catch@10011f00(void) 49 3 +10011f33 Catch@10011f33 undefined * Catch@10011f33(void) 130 6 +10011fba Catch@10011fba undefined1 * Catch@10011fba(void) 75 3 +10012046 FUN_10012046 undefined FUN_10012046(void * param_1) 58 4 +10012080 FUN_10012080 undefined FUN_10012080(void * this, undefined4 * param_1, int * param_2) 748 7 +1001236c FUN_1001236c undefined FUN_1001236c(int * param_1) 70 3 +100123b2 FUN_100123b2 undefined FUN_100123b2(void * this, int * param_1, int * param_2, undefined4 * param_3) 210 5 +100124ad FUN_100124ad undefined1 * FUN_100124ad(void * param_1, undefined4 * param_2) 46 3 +100124db FUN_100124db undefined FUN_100124db(void * param_1) 30 3 +10012749 Catch@10012749 undefined1 * Catch@10012749(void) 100 4 +100127b8 Catch@100127b8 undefined * Catch@100127b8(void) 19 0 +100127cd Catch@100127cd undefined * Catch@100127cd(void) 120 6 +1001284a Catch@1001284a undefined1 * Catch@1001284a(void) 70 3 +10012bfd FUN_10012bfd undefined FUN_10012bfd(void * this, uint param_1, int param_2, uint param_3, undefined4 param_4) 401 12 +10012d8e FUN_10012d8e undefined4 FUN_10012d8e(int param_1, LPCRITICAL_SECTION param_2, void * param_3) 26 1 +10012da8 FUN_10012da8 undefined4 FUN_10012da8(void * this, int param_1) 316 16 +10012ee4 Catch@10012ee4 undefined * Catch@10012ee4(void) 99 5 +10012f49 Catch@10012f49 undefined * Catch@10012f49(void) 49 3 +10012f7f Catch@10012f7f undefined * Catch@10012f7f(void) 121 6 +10012ffd Catch@10012ffd undefined4 Catch@10012ffd(void) 69 3 +10013042 FUN_10013042 int FUN_10013042(int param_1) 44 3 +1001306e FUN_1001306e undefined FUN_1001306e(int param_1) 39 1 +10013095 FUN_10013095 void * FUN_10013095(void * param_1, undefined4 * param_2, void * param_3) 65 3 +100130d6 FUN_100130d6 undefined FUN_100130d6(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +100130e9 FUN_100130e9 undefined FUN_100130e9(void * this, int param_1, undefined4 param_2) 235 12 +100131d4 Catch@100131d4 undefined1 * Catch@100131d4(void) 99 4 +1001324e Catch@1001324e undefined * Catch@1001324e(void) 19 0 +10013263 Catch@10013263 undefined * Catch@10013263(void) 119 6 +100132da Catch@100132da undefined * Catch@100132da(void) 70 3 +10013330 FUN_10013330 undefined FUN_10013330(void) 8 1 +10013338 FUN_10013338 undefined FUN_10013338(void * param_1) 903 23 SysFreeString +100136bf FUN_100136bf undefined4 FUN_100136bf(void * param_1, byte param_2, uint * param_3, undefined4 * param_4, undefined4 * param_5, undefined4 * param_6, undefined4 * param_7, undefined4 * param_8, undefined2 * param_9) 644 16 memcpy +10013d35 Catch@10013d35 undefined1 * Catch@10013d35(void) 99 5 +10013df5 Catch@10013df5 undefined * Catch@10013df5(void) 49 3 +10013e2b Catch@10013e2b undefined * Catch@10013e2b(void) 121 6 +10013ea9 Catch@10013ea9 undefined1 * Catch@10013ea9(void) 69 3 +10013eee FUN_10013eee int FUN_10013eee(void * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 * param_5) 302 8 +1001401c FUN_1001401c undefined FUN_1001401c(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 459 11 +100141e7 Catch@100141e7 undefined * Catch@100141e7(void) 99 4 +1001424d FUN_1001424d undefined FUN_1001424d(void) 8 1 +10014255 Catch@10014255 undefined * Catch@10014255(void) 19 0 +1001426a Catch@1001426a undefined * Catch@1001426a(void) 119 6 +100142e6 Catch@100142e6 undefined * Catch@100142e6(void) 70 3 +1001432c FUN_1001432c undefined FUN_1001432c(int param_1, uint param_2, int param_3, uint param_4) 840 16 InSendMessageEx;memcpy +10014674 Catch@10014674 undefined * Catch@10014674(void) 99 4 +100146da FUN_100146da undefined FUN_100146da(void) 8 1 +100146e2 Catch@100146e2 undefined * Catch@100146e2(void) 19 0 +100146f7 Catch@100146f7 undefined * Catch@100146f7(void) 119 6 +10014773 Catch@10014773 undefined * Catch@10014773(void) 70 3 +100147b9 FUN_100147b9 undefined FUN_100147b9(int * param_1, undefined4 param_2, undefined4 param_3) 132 7 +1001483d Catch@1001483d undefined * Catch@1001483d(void) 99 4 +100148a3 FUN_100148a3 undefined FUN_100148a3(void) 8 1 +100148ab Catch@100148ab undefined * Catch@100148ab(void) 19 0 +100148c0 Catch@100148c0 undefined * Catch@100148c0(void) 119 6 +1001493c Catch@1001493c undefined * Catch@1001493c(void) 70 3 +10014982 FUN_10014982 undefined FUN_10014982(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +100149d5 FUN_100149d5 int FUN_100149d5(void * this, undefined4 * param_1) 61 4 +10014a12 Catch@10014a12 undefined Catch@10014a12(void) 18 2 +10014a25 FUN_10014a25 undefined FUN_10014a25(void * param_1) 22 1 +10014a3b FUN_10014a3b int * FUN_10014a3b(void * this, int * param_1, undefined4 * param_2) 35 2 +10014a5e FUN_10014a5e undefined FUN_10014a5e(void * this, int param_1) 281 11 +10014b77 FUN_10014b77 undefined FUN_10014b77(void * param_1) 58 4 +10014bb1 FUN_10014bb1 undefined FUN_10014bb1(void * param_1) 30 3 +10014bcf FUN_10014bcf undefined FUN_10014bcf(int param_1) 598 23 +10014e25 Catch@10014e25 undefined * Catch@10014e25(void) 103 5 +10014e91 FUN_10014e91 undefined FUN_10014e91(void) 469 14 +10015066 Catch@10015066 undefined * Catch@10015066(void) 52 3 +1001509f Catch@1001509f undefined * Catch@1001509f(void) 125 6 +10015121 Catch@10015121 undefined * Catch@10015121(void) 72 3 +10015169 FUN_10015169 undefined4 FUN_10015169(void * param_1, uint param_2, uint param_3, int * param_4, byte param_5, undefined1 param_6, size_t param_7, void * param_8, undefined4 * param_9) 1823 27 SysFreeString;memcpy +1001583f Catch@1001583f undefined * Catch@1001583f(void) 99 4 +100158aa Catch@100158aa undefined * Catch@100158aa(void) 19 0 +100158bd Catch@100158bd undefined * Catch@100158bd(void) 119 6 +10015934 Catch@10015934 undefined * Catch@10015934(void) 70 3 +100159c3 FUN_100159c3 undefined FUN_100159c3(int param_1, uint param_2, uint param_3, int * param_4, size_t param_5, void * param_6) 1386 23 SysFreeString;memcpy +10015f2d Catch@10015f2d undefined * Catch@10015f2d(void) 120 4 +10015fab FUN_10015fab undefined FUN_10015fab(void) 8 1 +10015fb3 Catch@10015fb3 undefined * Catch@10015fb3(void) 25 0 +10015fce Catch@10015fce undefined * Catch@10015fce(void) 140 6 +1001605f Catch@1001605f undefined * Catch@1001605f(void) 79 3 +100160ae FUN_100160ae int FUN_100160ae(int param_1) 44 3 +100160da FUN_100160da int FUN_100160da(int param_1) 689 16 memset +1001638b FUN_1001638b undefined FUN_1001638b(char * param_1, int param_2) 10 0 +10016395 FUN_10016395 undefined4 FUN_10016395(int * param_1, int * param_2) 48 0 +100163c5 FUN_100163c5 undefined FUN_100163c5(wchar_t * param_1, rsize_t param_2, wchar_t * param_3, rsize_t param_4) 32 2 +100163fd FUN_100163fd undefined FUN_100163fd(LPCRITICAL_SECTION param_1) 18 1 +1001640f FUN_1001640f undefined FUN_1001640f(CComCriticalSection * param_1) 18 1 +1001642b FUN_1001642b undefined FUN_1001642b(int param_1) 21 1 +10016440 FUN_10016440 undefined4 FUN_10016440(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 29 0 +10016460 FUN_10016460 void * FUN_10016460(void * param_1) 46 3 memset +1001648e FUN_1001648e undefined4 * FUN_1001648e(undefined4 * param_1) 85 3 +100164e3 FUN_100164e3 undefined4 FUN_100164e3(int param_1, undefined4 param_2) 21 0 +100164f8 FUN_100164f8 undefined FUN_100164f8(undefined4 * param_1) 95 4 +10016557 FUN_10016557 undefined4 * FUN_10016557(void * this, byte param_1) 31 2 +10016580 FUN_10016580 int FUN_10016580(int * param_1) 14 0 +1001658e FUN_1001658e int FUN_1001658e(int * param_1) 14 0 +1001659c FUN_1001659c undefined FUN_1001659c(int param_1) 58 2 +100165d6 FUN_100165d6 undefined4 FUN_100165d6(int param_1) 4 0 +100165da FUN_100165da int FUN_100165da(int param_1) 23 1 memset +10016631 FUN_10016631 undefined4 FUN_10016631(void * this, int * param_1, undefined4 param_2, undefined4 * param_3) 94 0 +1001668f FUN_1001668f undefined FUN_1001668f(int param_1) 82 1 +100166ea FUN_100166ea undefined FUN_100166ea(void) 10 0 +100166f9 FUN_100166f9 undefined4 FUN_100166f9(int param_1, undefined4 param_2, undefined4 param_3, int param_4) 36 0 +1001672d FUN_1001672d undefined FUN_1001672d(void * this, undefined4 param_1) 13 0 +1001673a FUN_1001673a undefined FUN_1001673a(void) 1 0 +1001673b FUN_1001673b undefined FUN_1001673b(undefined4 * param_1) 7 0 +10016742 FUN_10016742 undefined4 * FUN_10016742(void * this, byte param_1) 32 1 +10016765 FUN_10016765 undefined4 FUN_10016765(void * this, LPCVOID param_1, DWORD param_2) 75 4 +100167b0 FUN_100167b0 undefined4 FUN_100167b0(void) 107 4 +1001681b FUN_1001681b undefined4 FUN_1001681b(void * param_1, size_t param_2) 78 2 memcpy +10016869 FUN_10016869 undefined FUN_10016869(void) 94 5 +100168c7 FUN_100168c7 undefined FUN_100168c7(int * param_1) 38 0 +100168ed FUN_100168ed undefined FUN_100168ed(LPCSTR param_1, LPCSTR param_2, LPSTR param_3, size_t param_4) 605 11 memset +10016b4a FUN_10016b4a undefined FUN_10016b4a(FILE * param_1, undefined4 param_2) 256 1 +10016c4a FUN_10016c4a undefined FUN_10016c4a(undefined4 param_1, undefined4 param_2, undefined4 param_3, char * param_4) 143 4 +10016cd9 FUN_10016cd9 undefined FUN_10016cd9(int * param_1) 13 0 +10016cef FUN_10016cef undefined FUN_10016cef(int * param_1) 13 0 +10016d05 FUN_10016d05 undefined1 * FUN_10016d05(LPCRITICAL_SECTION param_1) 42 3 +10016d45 FUN_10016d45 undefined4 FUN_10016d45(undefined4 * param_1) 19 1 +10016d58 FUN_10016d58 undefined FUN_10016d58(char * param_1, char * param_2, rsize_t param_3) 28 1 +10016d74 FUN_10016d74 undefined FUN_10016d74(undefined4 * param_1) 17 1 +10016d93 DllCanUnloadNow HRESULT DllCanUnloadNow(void) 18 0 +10016dd8 FUN_10016dd8 int FUN_10016dd8(int param_1) 65 2 +10016e19 thunk_FUN_1001659c undefined thunk_FUN_1001659c(int param_1) 5 0 +10016e1e FUN_10016e1e undefined FUN_10016e1e(int * param_1) 37 2 +10016e43 FUN_10016e43 undefined FUN_10016e43(int param_1) 30 3 +10016e61 FUN_10016e61 undefined FUN_10016e61(int * param_1) 37 2 +10016e86 FUN_10016e86 undefined FUN_10016e86(undefined4 * param_1) 62 5 +10016ec4 FUN_10016ec4 undefined4 * FUN_10016ec4(void * this, LPCSTR param_1) 112 5 memset +10016f34 FUN_10016f34 undefined FUN_10016f34(void) 34 3 +10016f56 FUN_10016f56 char * FUN_10016f56(void * this, char * param_1) 33 1 +10016f77 FUN_10016f77 undefined FUN_10016f77(int * param_1) 30 3 +10016fb6 FUN_10016fb6 undefined FUN_10016fb6(int * param_1) 30 3 +10017052 FUN_10017052 undefined FUN_10017052(int param_1) 33 3 +100170a5 FUN_100170a5 undefined4 FUN_100170a5(LPCSTR param_1, int param_2) 25 1 +100170c0 FUN_100170c0 undefined FUN_100170c0(int param_1) 4 0 +100170c4 FUN_100170c4 undefined FUN_100170c4(int param_1) 4 0 +100170c8 FUN_100170c8 undefined4 FUN_100170c8(int param_1) 7 0 +100170cf FUN_100170cf int FUN_100170cf(int * param_1) 20 0 +10017113 FUN_10017113 undefined4 * FUN_10017113(void * this, byte param_1) 67 3 +10017156 FUN_10017156 undefined FUN_10017156(char * param_1, size_t param_2) 55 4 +1001718d FUN_1001718d undefined FUN_1001718d(char * param_1, char * param_2) 29 1 +100171aa FUN_100171aa undefined FUN_100171aa(undefined4 param_1, uint param_2) 256 3 +100172aa FUN_100172aa undefined FUN_100172aa(undefined4 param_1, undefined4 * param_2) 182 5 +10017360 FUN_10017360 undefined FUN_10017360(undefined4 * param_1) 138 4 +100173ea FUN_100173ea undefined FUN_100173ea(undefined4 param_1, char * param_2) 133 4 +100174a1 FUN_100174a1 undefined FUN_100174a1(int param_1) 4 0 +100174a5 FUN_100174a5 undefined FUN_100174a5(int param_1) 4 0 +100174a9 FUN_100174a9 undefined4 FUN_100174a9(int param_1) 7 0 +100174b0 FUN_100174b0 int FUN_100174b0(int * param_1) 20 0 +100174f4 FUN_100174f4 undefined4 * FUN_100174f4(void * this, byte param_1) 67 3 +10017537 FUN_10017537 undefined FUN_10017537(char * param_1, size_t param_2) 34 1 +10017559 FUN_10017559 undefined FUN_10017559(undefined4 param_1, uint param_2) 256 3 +10017659 FUN_10017659 undefined FUN_10017659(undefined4 param_1, undefined4 * param_2) 182 5 +1001770f FUN_1001770f undefined FUN_1001770f(undefined4 * param_1) 138 4 +10017799 FUN_10017799 undefined FUN_10017799(undefined4 param_1, char * param_2) 133 4 +10017850 FUN_10017850 undefined FUN_10017850(int param_1) 4 0 +10017854 FUN_10017854 undefined FUN_10017854(int param_1) 4 0 +10017858 FUN_10017858 undefined4 FUN_10017858(int param_1) 7 0 +1001785f FUN_1001785f int FUN_1001785f(int * param_1) 20 0 +100178a3 FUN_100178a3 undefined4 * FUN_100178a3(void * this, byte param_1) 67 3 +100178e6 FUN_100178e6 undefined4 FUN_100178e6(void * param_1) 24 1 memset +100178fe FUN_100178fe undefined FUN_100178fe(undefined4 param_1, uint param_2) 256 3 +100179fe FUN_100179fe undefined FUN_100179fe(undefined4 param_1, undefined4 * param_2) 162 5 memset +10017aa0 FUN_10017aa0 undefined FUN_10017aa0(undefined4 * param_1) 107 4 memset +10017b0b FUN_10017b0b undefined FUN_10017b0b(undefined4 param_1, char * param_2) 101 4 memset +10017b70 FUN_10017b70 undefined4 * FUN_10017b70(void * this, LPCSTR param_1) 76 3 +10017bbe FUN_10017bbe undefined FUN_10017bbe(int param_1) 7 0 +10017bc5 FUN_10017bc5 undefined FUN_10017bc5(int param_1) 7 0 +10017bcc FUN_10017bcc undefined4 FUN_10017bcc(int param_1) 13 0 +10017bd9 FUN_10017bd9 int FUN_10017bd9(int * param_1) 26 0 +10017bf3 FUN_10017bf3 undefined FUN_10017bf3(undefined4 * param_1) 71 3 +10017c3a FUN_10017c3a undefined FUN_10017c3a(void * this, undefined4 param_1, uint param_2) 295 3 +10017d61 FUN_10017d61 undefined FUN_10017d61(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +10017e2b FUN_10017e2b undefined FUN_10017e2b(void * this, undefined4 * param_1) 143 5 +10017eba FUN_10017eba undefined FUN_10017eba(int param_1, char * param_2) 143 5 +10017f49 FUN_10017f49 undefined4 * FUN_10017f49(void * this, LPCSTR param_1) 76 3 +10017f95 FUN_10017f95 undefined FUN_10017f95(int param_1) 7 0 +10017f9c FUN_10017f9c undefined FUN_10017f9c(int param_1) 7 0 +10017fa3 FUN_10017fa3 undefined4 FUN_10017fa3(int param_1) 13 0 +10017fb0 FUN_10017fb0 int FUN_10017fb0(int * param_1) 26 0 +10017fca FUN_10017fca undefined FUN_10017fca(undefined4 * param_1) 71 3 +10018011 FUN_10018011 undefined FUN_10018011(void * this, undefined4 param_1, uint param_2) 295 3 +10018138 FUN_10018138 undefined FUN_10018138(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +10018202 FUN_10018202 undefined FUN_10018202(void * this, undefined4 * param_1) 143 5 +10018291 FUN_10018291 undefined FUN_10018291(int param_1, char * param_2) 143 5 +10018320 FUN_10018320 undefined4 * FUN_10018320(void * this, LPCSTR param_1) 76 3 +1001836c FUN_1001836c undefined FUN_1001836c(int param_1) 7 0 +10018373 FUN_10018373 undefined FUN_10018373(int param_1) 7 0 +1001837a FUN_1001837a undefined4 FUN_1001837a(int param_1) 13 0 +10018387 FUN_10018387 int FUN_10018387(int * param_1) 26 0 +100183a1 FUN_100183a1 undefined FUN_100183a1(undefined4 * param_1) 71 3 +100183e8 FUN_100183e8 undefined FUN_100183e8(void * this, undefined4 param_1, uint param_2) 295 3 +1001850f FUN_1001850f undefined FUN_1001850f(void * this, undefined4 param_1, undefined4 * param_2) 179 6 memset +100185c2 FUN_100185c2 undefined FUN_100185c2(void * this, undefined4 * param_1) 118 5 memset +10018638 FUN_10018638 undefined FUN_10018638(int param_1, char * param_2) 113 5 memset +100186a9 FUN_100186a9 undefined4 * FUN_100186a9(void * this, char * param_1) 88 3 +10018701 FUN_10018701 undefined FUN_10018701(LPCSTR param_1) 139 4 +1001878c FUN_1001878c undefined FUN_1001878c(int param_1) 24 1 +100187a4 FUN_100187a4 undefined FUN_100187a4(int param_1) 17 1 +100187b5 FUN_100187b5 undefined4 FUN_100187b5(int param_1) 13 0 +100187c2 FUN_100187c2 int FUN_100187c2(int * param_1) 26 0 +100187dc FUN_100187dc undefined FUN_100187dc(undefined4 * param_1) 71 3 +10018823 FUN_10018823 undefined FUN_10018823(undefined4 param_1, uint param_2) 293 3 +10018948 FUN_10018948 undefined FUN_10018948(undefined4 param_1, undefined4 * param_2) 202 6 +10018a12 FUN_10018a12 undefined FUN_10018a12(undefined4 * param_1) 143 5 +10018aa1 FUN_10018aa1 undefined FUN_10018aa1(undefined4 param_1, char * param_2) 143 5 +10018b30 FUN_10018b30 undefined4 * FUN_10018b30(void * this, char * param_1) 88 3 +10018b88 FUN_10018b88 undefined FUN_10018b88(int param_1) 24 1 +10018ba0 FUN_10018ba0 undefined FUN_10018ba0(int param_1) 17 1 +10018bb1 FUN_10018bb1 undefined4 FUN_10018bb1(int param_1) 13 0 +10018bbe FUN_10018bbe int FUN_10018bbe(int * param_1) 26 0 +10018bd8 FUN_10018bd8 undefined FUN_10018bd8(undefined4 * param_1) 71 3 +10018c1f FUN_10018c1f undefined FUN_10018c1f(undefined4 param_1, uint param_2) 293 3 +10018d44 FUN_10018d44 undefined FUN_10018d44(undefined4 param_1, undefined4 * param_2) 202 6 +10018e0e FUN_10018e0e undefined FUN_10018e0e(undefined4 * param_1) 143 5 +10018e9d FUN_10018e9d undefined FUN_10018e9d(undefined4 param_1, char * param_2) 143 5 +10018f2c FUN_10018f2c undefined4 * FUN_10018f2c(void * this, char * param_1) 88 3 +10018f84 FUN_10018f84 undefined FUN_10018f84(int param_1) 24 1 +10018f9c FUN_10018f9c undefined FUN_10018f9c(int param_1) 17 1 +10018fad FUN_10018fad undefined4 FUN_10018fad(int param_1) 13 0 +10018fba FUN_10018fba int FUN_10018fba(int * param_1) 26 0 +10018fd4 FUN_10018fd4 undefined FUN_10018fd4(undefined4 * param_1) 71 3 +1001901b FUN_1001901b undefined FUN_1001901b(undefined4 param_1, uint param_2) 293 3 +10019140 FUN_10019140 undefined FUN_10019140(undefined4 param_1, undefined4 * param_2) 179 6 memset +100191f3 FUN_100191f3 undefined FUN_100191f3(undefined4 * param_1) 118 5 memset +10019269 FUN_10019269 undefined FUN_10019269(undefined4 param_1, char * param_2) 111 5 memset +100192d8 FUN_100192d8 undefined4 * FUN_100192d8(undefined4 * param_1) 74 3 +10019322 FUN_10019322 undefined FUN_10019322(char * param_1, char * param_2) 10 0 +1001932e FUN_1001932e undefined FUN_1001932e(int param_1) 7 0 +10019335 FUN_10019335 undefined FUN_10019335(int param_1) 7 0 +1001933c FUN_1001933c undefined4 FUN_1001933c(int param_1) 13 0 +10019349 FUN_10019349 int FUN_10019349(int * param_1) 26 0 +10019363 FUN_10019363 undefined FUN_10019363(undefined4 * param_1) 77 3 +100193b0 FUN_100193b0 undefined4 * FUN_100193b0(undefined4 * param_1) 74 3 +100193fa FUN_100193fa undefined FUN_100193fa(int param_1) 7 0 +10019401 FUN_10019401 undefined FUN_10019401(int param_1) 7 0 +10019408 FUN_10019408 undefined4 FUN_10019408(int param_1) 13 0 +10019415 FUN_10019415 int FUN_10019415(int * param_1) 26 0 +1001942f FUN_1001942f undefined FUN_1001942f(undefined4 * param_1) 77 3 +1001947c FUN_1001947c undefined4 * FUN_1001947c(undefined4 * param_1) 74 3 +100194c6 FUN_100194c6 undefined FUN_100194c6(int param_1) 7 0 +100194cd FUN_100194cd undefined FUN_100194cd(int param_1) 7 0 +100194d4 FUN_100194d4 undefined4 FUN_100194d4(int param_1) 13 0 +100194e1 FUN_100194e1 int FUN_100194e1(int * param_1) 26 0 +100194fb FUN_100194fb undefined FUN_100194fb(undefined4 * param_1) 77 3 +1001957a FUN_1001957a undefined FUN_1001957a(int param_1) 4 0 +1001957e FUN_1001957e undefined FUN_1001957e(int param_1) 4 0 +10019582 FUN_10019582 undefined4 FUN_10019582(int param_1) 7 0 +10019589 FUN_10019589 int FUN_10019589(int * param_1) 20 0 +100195cd FUN_100195cd undefined4 * FUN_100195cd(void * this, byte param_1) 67 3 +10019610 FUN_10019610 undefined FUN_10019610(char * param_1, size_t param_2) 55 4 +10019647 FUN_10019647 undefined FUN_10019647(undefined4 param_1, uint param_2) 256 3 +10019747 FUN_10019747 undefined FUN_10019747(undefined4 param_1, undefined4 * param_2) 182 5 +100197fd FUN_100197fd undefined FUN_100197fd(undefined4 * param_1) 138 4 +10019887 FUN_10019887 undefined FUN_10019887(undefined4 param_1, char * param_2) 133 4 +1001993e FUN_1001993e undefined FUN_1001993e(int param_1) 4 0 +10019942 FUN_10019942 undefined FUN_10019942(int param_1) 4 0 +10019946 FUN_10019946 undefined4 FUN_10019946(int param_1) 7 0 +1001994d FUN_1001994d int FUN_1001994d(int * param_1) 20 0 +10019991 FUN_10019991 undefined4 * FUN_10019991(void * this, byte param_1) 67 3 +100199d4 FUN_100199d4 undefined FUN_100199d4(char * param_1, size_t param_2) 34 1 +100199f6 FUN_100199f6 undefined FUN_100199f6(undefined4 param_1, uint param_2) 256 3 +10019af6 FUN_10019af6 undefined FUN_10019af6(undefined4 param_1, undefined4 * param_2) 182 5 +10019bac FUN_10019bac undefined FUN_10019bac(undefined4 * param_1) 138 4 +10019c36 FUN_10019c36 undefined FUN_10019c36(undefined4 param_1, char * param_2) 133 4 +10019ced FUN_10019ced undefined FUN_10019ced(int param_1) 4 0 +10019cf1 FUN_10019cf1 undefined FUN_10019cf1(int param_1) 4 0 +10019cf5 FUN_10019cf5 undefined4 FUN_10019cf5(int param_1) 7 0 +10019cfc FUN_10019cfc int FUN_10019cfc(int * param_1) 20 0 +10019d40 FUN_10019d40 undefined4 * FUN_10019d40(void * this, byte param_1) 67 3 +10019d83 FUN_10019d83 undefined4 FUN_10019d83(void * param_1) 24 1 memset +10019d9b FUN_10019d9b undefined FUN_10019d9b(undefined4 param_1, uint param_2) 256 3 +10019e9b FUN_10019e9b undefined FUN_10019e9b(undefined4 param_1, undefined4 * param_2) 162 5 memset +10019f3d FUN_10019f3d undefined FUN_10019f3d(undefined4 * param_1) 107 4 memset +10019fab FUN_10019fab undefined FUN_10019fab(undefined4 param_1, char * param_2) 101 4 memset +1001a010 FUN_1001a010 undefined4 * FUN_1001a010(void * this, LPCSTR param_1) 76 3 +1001a05c FUN_1001a05c undefined FUN_1001a05c(int param_1) 7 0 +1001a063 FUN_1001a063 undefined FUN_1001a063(int param_1) 7 0 +1001a06a FUN_1001a06a undefined4 FUN_1001a06a(int param_1) 13 0 +1001a077 FUN_1001a077 int FUN_1001a077(int * param_1) 26 0 +1001a091 FUN_1001a091 undefined FUN_1001a091(undefined4 * param_1) 71 3 +1001a0d8 FUN_1001a0d8 undefined FUN_1001a0d8(void * this, undefined4 param_1, uint param_2) 295 3 +1001a1ff FUN_1001a1ff undefined FUN_1001a1ff(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +1001a2c9 FUN_1001a2c9 undefined FUN_1001a2c9(void * this, undefined4 * param_1) 143 5 +1001a358 FUN_1001a358 undefined FUN_1001a358(int param_1, char * param_2) 143 5 +1001a3e7 FUN_1001a3e7 undefined4 * FUN_1001a3e7(void * this, LPCSTR param_1) 76 3 +1001a433 FUN_1001a433 undefined FUN_1001a433(int param_1) 7 0 +1001a43a FUN_1001a43a undefined FUN_1001a43a(int param_1) 7 0 +1001a441 FUN_1001a441 undefined4 FUN_1001a441(int param_1) 13 0 +1001a44e FUN_1001a44e int FUN_1001a44e(int * param_1) 26 0 +1001a468 FUN_1001a468 undefined FUN_1001a468(undefined4 * param_1) 71 3 +1001a4af FUN_1001a4af undefined FUN_1001a4af(void * this, undefined4 param_1, uint param_2) 295 3 +1001a5d6 FUN_1001a5d6 undefined FUN_1001a5d6(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +1001a6a0 FUN_1001a6a0 undefined FUN_1001a6a0(void * this, undefined4 * param_1) 143 5 +1001a72f FUN_1001a72f undefined FUN_1001a72f(int param_1, char * param_2) 143 5 +1001a7be FUN_1001a7be undefined4 * FUN_1001a7be(void * this, LPCSTR param_1) 76 3 +1001a80a FUN_1001a80a undefined FUN_1001a80a(int param_1) 7 0 +1001a811 FUN_1001a811 undefined FUN_1001a811(int param_1) 7 0 +1001a818 FUN_1001a818 undefined4 FUN_1001a818(int param_1) 13 0 +1001a825 FUN_1001a825 int FUN_1001a825(int * param_1) 26 0 +1001a83f FUN_1001a83f undefined FUN_1001a83f(undefined4 * param_1) 71 3 +1001a886 FUN_1001a886 undefined FUN_1001a886(void * this, undefined4 param_1, uint param_2) 295 3 +1001a9ad FUN_1001a9ad undefined FUN_1001a9ad(void * this, undefined4 param_1, undefined4 * param_2) 179 6 memset +1001aa60 FUN_1001aa60 undefined FUN_1001aa60(void * this, undefined4 * param_1) 118 5 memset +1001aad6 FUN_1001aad6 undefined FUN_1001aad6(int param_1, char * param_2) 113 5 memset +1001ab47 FUN_1001ab47 undefined4 * FUN_1001ab47(void * this, char * param_1) 88 3 +1001ab9f FUN_1001ab9f undefined FUN_1001ab9f(int param_1) 24 1 +1001abb7 FUN_1001abb7 undefined FUN_1001abb7(int param_1) 17 1 +1001abc8 FUN_1001abc8 undefined4 FUN_1001abc8(int param_1) 13 0 +1001abd5 FUN_1001abd5 int FUN_1001abd5(int * param_1) 26 0 +1001abef FUN_1001abef undefined FUN_1001abef(undefined4 * param_1) 71 3 +1001ac36 FUN_1001ac36 undefined FUN_1001ac36(undefined4 param_1, uint param_2) 293 3 +1001ad5b FUN_1001ad5b undefined FUN_1001ad5b(undefined4 param_1, undefined4 * param_2) 202 6 +1001ae25 FUN_1001ae25 undefined FUN_1001ae25(undefined4 * param_1) 143 5 +1001aeb4 FUN_1001aeb4 undefined FUN_1001aeb4(undefined4 param_1, char * param_2) 143 5 +1001af43 FUN_1001af43 undefined4 * FUN_1001af43(void * this, char * param_1) 88 3 +1001af9b FUN_1001af9b undefined FUN_1001af9b(int param_1) 24 1 +1001afb3 FUN_1001afb3 undefined FUN_1001afb3(int param_1) 17 1 +1001afc4 FUN_1001afc4 undefined4 FUN_1001afc4(int param_1) 13 0 +1001afd1 FUN_1001afd1 int FUN_1001afd1(int * param_1) 26 0 +1001afed FUN_1001afed undefined FUN_1001afed(undefined4 * param_1) 71 3 +1001b034 FUN_1001b034 undefined FUN_1001b034(undefined4 param_1, uint param_2) 293 3 +1001b159 FUN_1001b159 undefined FUN_1001b159(undefined4 param_1, undefined4 * param_2) 202 6 +1001b223 FUN_1001b223 undefined FUN_1001b223(undefined4 * param_1) 143 5 +1001b2b2 FUN_1001b2b2 undefined FUN_1001b2b2(undefined4 param_1, char * param_2) 143 5 +1001b341 FUN_1001b341 undefined4 * FUN_1001b341(void * this, char * param_1) 88 3 +1001b399 FUN_1001b399 undefined FUN_1001b399(int param_1) 24 1 +1001b3b1 FUN_1001b3b1 undefined FUN_1001b3b1(int param_1) 17 1 +1001b3c2 FUN_1001b3c2 undefined4 FUN_1001b3c2(int param_1) 13 0 +1001b3cf FUN_1001b3cf int FUN_1001b3cf(int * param_1) 26 0 +1001b3e9 FUN_1001b3e9 undefined FUN_1001b3e9(undefined4 * param_1) 71 3 +1001b430 FUN_1001b430 undefined FUN_1001b430(undefined4 param_1, uint param_2) 293 3 +1001b555 FUN_1001b555 undefined FUN_1001b555(undefined4 param_1, undefined4 * param_2) 179 6 memset +1001b608 FUN_1001b608 undefined FUN_1001b608(undefined4 * param_1) 118 5 memset +1001b67e FUN_1001b67e undefined FUN_1001b67e(undefined4 param_1, char * param_2) 111 5 memset +1001b6ed FUN_1001b6ed undefined4 * FUN_1001b6ed(undefined4 * param_1) 74 3 +1001b739 FUN_1001b739 undefined FUN_1001b739(int param_1) 7 0 +1001b740 FUN_1001b740 undefined FUN_1001b740(int param_1) 7 0 +1001b747 FUN_1001b747 undefined4 FUN_1001b747(int param_1) 13 0 +1001b754 FUN_1001b754 int FUN_1001b754(int * param_1) 26 0 +1001b76e FUN_1001b76e undefined FUN_1001b76e(undefined4 * param_1) 77 3 +1001b7bb FUN_1001b7bb undefined4 * FUN_1001b7bb(undefined4 * param_1) 74 3 +1001b805 FUN_1001b805 undefined FUN_1001b805(int param_1) 7 0 +1001b80c FUN_1001b80c undefined FUN_1001b80c(int param_1) 7 0 +1001b813 FUN_1001b813 undefined4 FUN_1001b813(int param_1) 13 0 +1001b820 FUN_1001b820 int FUN_1001b820(int * param_1) 26 0 +1001b83a FUN_1001b83a undefined FUN_1001b83a(undefined4 * param_1) 77 3 +1001b887 FUN_1001b887 undefined4 * FUN_1001b887(undefined4 * param_1) 74 3 +1001b8d1 FUN_1001b8d1 undefined FUN_1001b8d1(int param_1) 7 0 +1001b8d8 FUN_1001b8d8 undefined FUN_1001b8d8(int param_1) 7 0 +1001b8df FUN_1001b8df undefined4 FUN_1001b8df(int param_1) 13 0 +1001b8ec FUN_1001b8ec int FUN_1001b8ec(int * param_1) 26 0 +1001b906 FUN_1001b906 undefined FUN_1001b906(undefined4 * param_1) 77 3 +1001b953 FUN_1001b953 undefined4 * FUN_1001b953(void * this, byte param_1) 31 2 +1001b972 FUN_1001b972 undefined4 * FUN_1001b972(void * this, byte param_1) 31 2 +1001b991 FUN_1001b991 undefined4 * FUN_1001b991(void * this, byte param_1) 31 2 +1001b9b0 FUN_1001b9b0 undefined4 * FUN_1001b9b0(void * this, byte param_1) 31 2 +1001b9cf FUN_1001b9cf undefined4 * FUN_1001b9cf(void * this, byte param_1) 31 2 +1001b9ee FUN_1001b9ee undefined4 * FUN_1001b9ee(void * this, byte param_1) 31 2 +1001ba0d FUN_1001ba0d undefined4 * FUN_1001ba0d(void * this, byte param_1) 31 2 +1001ba2c FUN_1001ba2c undefined4 * FUN_1001ba2c(void * this, byte param_1) 31 2 +1001ba4b FUN_1001ba4b undefined4 * FUN_1001ba4b(void * this, byte param_1) 31 2 +1001ba6a FUN_1001ba6a undefined4 * FUN_1001ba6a(void * this, byte param_1) 31 2 +1001ba89 FUN_1001ba89 undefined4 * FUN_1001ba89(void * this, byte param_1) 31 2 +1001baa8 FUN_1001baa8 undefined4 * FUN_1001baa8(void * this, byte param_1) 31 2 +1001bac7 FUN_1001bac7 undefined4 * FUN_1001bac7(void * this, byte param_1) 31 2 +1001bae6 FUN_1001bae6 undefined4 * FUN_1001bae6(void * this, byte param_1) 31 2 +1001bb05 FUN_1001bb05 undefined4 * FUN_1001bb05(void * this, byte param_1) 31 2 +1001bb24 FUN_1001bb24 undefined4 * FUN_1001bb24(void * this, byte param_1) 31 2 +1001bb43 FUN_1001bb43 undefined4 * FUN_1001bb43(void * this, byte param_1) 31 2 +1001bb62 FUN_1001bb62 undefined4 * FUN_1001bb62(void * this, byte param_1) 31 2 +1001bb81 CComCritSecLock undefined CComCritSecLock(CComCritSecLock * this, CComCriticalSection * param_1, bool param_2) 39 1 +1001bba8 FUN_1001bba8 undefined FUN_1001bba8(undefined4 * param_1) 23 1 +1001bbc5 FUN_1001bbc5 undefined FUN_1001bbc5(void * this, undefined4 param_1, undefined4 param_2) 25 1 AtlInternalQueryInterface +1001bbde FUN_1001bbde undefined4 * FUN_1001bbde(undefined4 * param_1) 59 3 +1001bc19 InlineIsEqualUnknown int InlineIsEqualUnknown(_GUID * param_1) 46 0 +1001bc47 FUN_1001bc47 undefined4 FUN_1001bc47(int param_1, int param_2, _GUID * param_3, undefined4 * param_4) 62 1 +1001bc85 FUN_1001bc85 undefined4 FUN_1001bc85(undefined4 param_1, int param_2) 31 0 +1001bca4 FUN_1001bca4 undefined FUN_1001bca4(undefined4 param_1, undefined4 param_2, undefined4 param_3) 27 1 AtlInternalQueryInterface +1001bcbf FUN_1001bcbf undefined4 * FUN_1001bcbf(undefined4 * param_1) 31 1 +1001bce4 FUN_1001bce4 undefined FUN_1001bce4(void * this, undefined4 param_1, undefined4 param_2) 25 1 AtlInternalQueryInterface +1001bcfd FUN_1001bcfd undefined4 FUN_1001bcfd(int param_1) 16 0 +1001bd0d Release ulong Release(void) 33 0 +1001bd2e FUN_1001bd2e undefined FUN_1001bd2e(undefined4 param_1, undefined4 param_2, undefined4 param_3) 27 1 AtlInternalQueryInterface +1001bd49 FUN_1001bd49 undefined FUN_1001bd49(undefined4 * param_1) 29 1 +1001bd66 FUN_1001bd66 undefined4 * FUN_1001bd66(void * this, byte param_1) 31 2 +1001bd85 FUN_1001bd85 undefined FUN_1001bd85(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +1001bd8f FUN_1001bd8f undefined FUN_1001bd8f(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +1001bd99 FUN_1001bd99 undefined FUN_1001bd99(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +1001bda3 FUN_1001bda3 undefined FUN_1001bda3(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +1001bdad FUN_1001bdad int FUN_1001bdad(int * param_1, undefined4 param_2, undefined4 param_3, int * param_4) 143 4 +1001be3c FUN_1001be3c undefined4 * FUN_1001be3c(undefined4 * param_1) 53 3 +1001be71 FUN_1001be71 undefined FUN_1001be71(void * param_1) 10 0 +1001be83 FUN_1001be83 undefined FUN_1001be83(LONG * param_1) 10 0 +1001be97 FUN_1001be97 undefined FUN_1001be97(int param_1) 11 1 +1001bea2 FUN_1001bea2 undefined FUN_1001bea2(int param_1) 11 1 +1001bead FUN_1001bead HRESULT FUN_1001bead(void * this, undefined4 * param_1) 76 1 CoCreateInstance +1001bef9 FUN_1001bef9 undefined4 FUN_1001bef9(void) 8 0 +1001bf01 FUN_1001bf01 undefined4 FUN_1001bf01(void) 8 0 +1001bf0f FUN_1001bf0f undefined FUN_1001bf0f(int * param_1) 26 1 +1001bf2f FUN_1001bf2f undefined FUN_1001bf2f(int * param_1) 26 0 +1001bf6d FUN_1001bf6d undefined4 * FUN_1001bf6d(void * this, byte param_1) 55 4 +1001bfa4 FUN_1001bfa4 int FUN_1001bfa4(int param_1, uint param_2) 210 8 SysFreeString +1001c076 FUN_1001c076 undefined FUN_1001c076(undefined4 param_1, undefined4 param_2) 460 12 SysFreeString +1001c242 FUN_1001c242 int FUN_1001c242(int param_1, int param_2, void * param_3) 135 3 +1001c2c9 FUN_1001c2c9 int FUN_1001c2c9(int param_1, int param_2, void * param_3) 136 3 +1001c351 FUN_1001c351 int FUN_1001c351(void * this, int * param_1, undefined4 param_2, int * param_3) 205 6 +1001c41e FUN_1001c41e undefined FUN_1001c41e(undefined4 * param_1) 49 3 +1001c44f FUN_1001c44f undefined4 * FUN_1001c44f(void * this, byte param_1) 31 2 +1001c46e FUN_1001c46e undefined FUN_1001c46e(void * this, char * param_1, int param_2) 141 5 memset +1001c4fb FUN_1001c4fb undefined FUN_1001c4fb(void * this, char * param_1, int param_2) 135 5 memset +1001c582 FUN_1001c582 undefined FUN_1001c582(LPCSTR param_1, LPCSTR param_2, LPCSTR param_3, undefined4 * param_4) 1760 20 memset +1001cc62 FUN_1001cc62 undefined FUN_1001cc62(LPCSTR param_1, LPCSTR param_2, LPCSTR param_3, LPCSTR param_4, undefined4 * param_5, int * param_6) 1897 19 memset +1001d3cb FUN_1001d3cb undefined FUN_1001d3cb(char * param_1, undefined4 * param_2, int * param_3) 76 3 +1001d417 FUN_1001d417 undefined FUN_1001d417(void * this, undefined4 param_1, uint param_2) 295 3 +1001d53e FUN_1001d53e undefined FUN_1001d53e(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +1001d608 FUN_1001d608 undefined FUN_1001d608(void * this, undefined4 * param_1) 143 5 +1001d697 FUN_1001d697 undefined FUN_1001d697(int param_1, char * param_2) 143 5 +1001d726 FUN_1001d726 undefined FUN_1001d726(void * this, undefined4 param_1, uint param_2) 295 3 +1001d84d FUN_1001d84d undefined FUN_1001d84d(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +1001d917 FUN_1001d917 undefined FUN_1001d917(void * this, undefined4 * param_1) 143 5 +1001d9a6 FUN_1001d9a6 undefined FUN_1001d9a6(int param_1, char * param_2) 143 5 +1001da35 FUN_1001da35 undefined FUN_1001da35(void * this, undefined4 param_1, uint param_2) 295 3 +1001db5c FUN_1001db5c undefined FUN_1001db5c(void * this, undefined4 param_1, undefined4 * param_2) 179 6 memset +1001dc0f FUN_1001dc0f undefined FUN_1001dc0f(void * this, undefined4 * param_1) 118 5 memset +1001dc85 FUN_1001dc85 undefined FUN_1001dc85(int param_1, char * param_2) 113 5 memset +1001dcf6 FUN_1001dcf6 undefined FUN_1001dcf6(void * this, undefined4 param_1, uint param_2) 295 3 +1001de1d FUN_1001de1d undefined FUN_1001de1d(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +1001dee7 FUN_1001dee7 undefined FUN_1001dee7(void * this, undefined4 * param_1) 143 5 +1001df76 FUN_1001df76 undefined FUN_1001df76(int param_1, char * param_2) 143 5 +1001e005 FUN_1001e005 undefined FUN_1001e005(void * this, undefined4 param_1, uint param_2) 295 3 +1001e12c FUN_1001e12c undefined FUN_1001e12c(void * this, undefined4 param_1, undefined4 * param_2) 202 6 +1001e1f6 FUN_1001e1f6 undefined FUN_1001e1f6(void * this, undefined4 * param_1) 143 5 +1001e285 FUN_1001e285 undefined FUN_1001e285(int param_1, char * param_2) 143 5 +1001e314 FUN_1001e314 undefined FUN_1001e314(void * this, undefined4 param_1, uint param_2) 295 3 +1001e43b FUN_1001e43b undefined FUN_1001e43b(void * this, undefined4 param_1, undefined4 * param_2) 179 6 memset +1001e4ee FUN_1001e4ee undefined FUN_1001e4ee(void * this, undefined4 * param_1) 118 5 memset +1001e564 FUN_1001e564 undefined FUN_1001e564(int param_1, char * param_2) 113 5 memset +1001e5d5 FUN_1001e5d5 undefined4 FUN_1001e5d5(int param_1) 68 3 +1001e619 FUN_1001e619 undefined4 FUN_1001e619(int param_1) 68 3 +1001e66a DllGetClassObject HRESULT DllGetClassObject(IID * rclsid, IID * riid, LPVOID * ppv) 249 3 +1001e763 FUN_1001e763 undefined4 * FUN_1001e763(undefined4 * param_1) 46 3 +1001e7a8 FUN_1001e7a8 undefined FUN_1001e7a8(void * this, undefined4 param_1, undefined4 param_2) 25 1 AtlInternalQueryInterface +1001e7c1 FUN_1001e7c1 LONG FUN_1001e7c1(int param_1) 42 1 +1001e7eb FUN_1001e7eb LONG FUN_1001e7eb(int * param_1) 63 1 +1001e82a FUN_1001e82a undefined FUN_1001e82a(undefined4 param_1, undefined4 param_2, undefined4 param_3) 27 1 AtlInternalQueryInterface +1001e845 FUN_1001e845 undefined FUN_1001e845(undefined4 * param_1) 47 3 +1001e874 FUN_1001e874 int FUN_1001e874(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 87 4 +1001e8cb Catch@1001e8cb undefined * Catch@1001e8cb(void) 10 0 +1001e8db FUN_1001e8db int FUN_1001e8db(void) 73 4 +1001e924 FUN_1001e924 int FUN_1001e924(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 81 4 +1001e975 Catch@1001e975 undefined * Catch@1001e975(void) 10 0 +1001e985 FUN_1001e985 int FUN_1001e985(void) 65 2 +1001e9c6 FUN_1001e9c6 undefined4 * FUN_1001e9c6(void * this, byte param_1) 31 2 +1001e9e5 FUN_1001e9e5 undefined FUN_1001e9e5(int param_1) 15 1 +1001e9f4 FUN_1001e9f4 int FUN_1001e9f4(int * param_1) 42 1 +1001ea1e FUN_1001ea1e undefined FUN_1001ea1e(int param_1) 10 1 +1001ea28 FUN_1001ea28 undefined FUN_1001ea28(int param_1) 10 1 +1001ea32 FUN_1001ea32 undefined FUN_1001ea32(int param_1) 10 1 +1001ea3c FUN_1001ea3c undefined FUN_1001ea3c(int param_1) 10 1 +1001ea46 FUN_1001ea46 undefined FUN_1001ea46(int param_1) 10 1 +1001ea50 FUN_1001ea50 undefined FUN_1001ea50(int param_1) 10 1 +1001ea5a FUN_1001ea5a undefined FUN_1001ea5a(int param_1) 10 1 +1001ea64 FUN_1001ea64 undefined FUN_1001ea64(int param_1) 10 1 +1001ea6e FUN_1001ea6e undefined FUN_1001ea6e(void * this, int param_1, void * param_2) 19 1 +1001ea81 FUN_1001ea81 undefined FUN_1001ea81(void * this, int param_1, void * param_2) 19 1 +1001ea94 FUN_1001ea94 int FUN_1001ea94(int * param_1, int param_2, undefined4 param_3, int * param_4) 73 4 +1001eadd FUN_1001eadd undefined FUN_1001eadd(int * param_1, ushort param_2, undefined4 param_3, int * param_4) 26 1 +1001eaf7 FUN_1001eaf7 undefined FUN_1001eaf7(int * param_1, int param_2, undefined4 param_3, int * param_4) 9 1 +1001eb00 FUN_1001eb00 undefined FUN_1001eb00(int * param_1, ushort param_2, undefined4 param_3, int * param_4) 26 1 +1001eb1a FUN_1001eb1a undefined FUN_1001eb1a(char * param_1, undefined4 param_2, int * param_3) 62 1 +1001eb58 FUN_1001eb58 undefined FUN_1001eb58(int param_1, void * param_2) 46 1 +1001eb86 FUN_1001eb86 undefined FUN_1001eb86(int param_1, void * param_2) 38 1 +1001ebac FUN_1001ebac undefined FUN_1001ebac(undefined4 param_1) 24 1 +1001ebc4 FUN_1001ebc4 undefined FUN_1001ebc4(undefined4 param_1) 24 1 +1001ebdc FUN_1001ebdc undefined4 FUN_1001ebdc(HMODULE param_1, int param_2) 148 5 +1001ecce Catch@1001ecce undefined1 * Catch@1001ecce(void) 10 0 +1001ed20 FUN_1001ed20 int FUN_1001ed20(int param_1, undefined4 param_2, undefined4 * param_3) 49 1 +1001ed51 FUN_1001ed51 int FUN_1001ed51(int param_1, undefined4 param_2, undefined4 * param_3) 49 1 +1001ed82 FUN_1001ed82 int FUN_1001ed82(void * this, int param_1, void * param_2) 112 3 +1001edf2 FUN_1001edf2 int FUN_1001edf2(void * this, int param_1, void * param_2) 112 3 +1001ee62 FUN_1001ee62 undefined FUN_1001ee62(void * this, void * param_1) 17 1 +1001ee73 DllRegisterServer undefined DllRegisterServer(void) 15 1 +1001ee82 DllUnregisterServer undefined DllUnregisterServer(void) 15 1 +1001ee94 FUN_1001ee94 undefined FUN_1001ee94(int param_1) 22 0 +1001eeaa FUN_1001eeaa undefined FUN_1001eeaa(int param_1) 11 0 +1001eeb5 FUN_1001eeb5 undefined4 FUN_1001eeb5(void * this, void * param_1) 126 6 memcpy +1001ef33 Catch@1001ef33 undefined4 Catch@1001ef33(void) 10 0 +1001ef3d FUN_1001ef3d bool FUN_1001ef3d(int param_1) 94 6 memset +1001ef9b FUN_1001ef9b undefined FUN_1001ef9b(int param_1) 178 10 +1001f04d Catch@1001f04d undefined * Catch@1001f04d(void) 97 4 +1001f0b1 FUN_1001f0b1 undefined FUN_1001f0b1(void) 6 1 +1001f0b7 Catch@1001f0b7 undefined * Catch@1001f0b7(void) 19 0 +1001f0cc Catch@1001f0cc undefined * Catch@1001f0cc(void) 117 6 +1001f146 Catch@1001f146 undefined * Catch@1001f146(void) 67 3 +1001f189 FUN_1001f189 undefined FUN_1001f189(int param_1, void * param_2) 116 5 +1001f1fd Catch@1001f1fd undefined * Catch@1001f1fd(void) 97 4 +1001f261 FUN_1001f261 undefined FUN_1001f261(void) 8 1 +1001f269 Catch@1001f269 undefined * Catch@1001f269(void) 19 0 +1001f27e Catch@1001f27e undefined * Catch@1001f27e(void) 117 6 +1001f2f8 Catch@1001f2f8 undefined * Catch@1001f2f8(void) 67 3 +1001f33b FUN_1001f33b undefined FUN_1001f33b(int param_1) 86 5 +1001f391 Catch@1001f391 undefined * Catch@1001f391(void) 96 4 +1001f3f4 FUN_1001f3f4 undefined FUN_1001f3f4(void) 8 1 +1001f3fc Catch@1001f3fc undefined * Catch@1001f3fc(void) 19 0 +1001f411 Catch@1001f411 undefined * Catch@1001f411(void) 116 6 +1001f48a Catch@1001f48a undefined * Catch@1001f48a(void) 67 3 +1001f4cd FUN_1001f4cd undefined FUN_1001f4cd(undefined2 * param_1, int param_2) 56 2 memset +1001f505 FUN_1001f505 uint FUN_1001f505(ushort * param_1, int param_2) 79 0 +1001f554 FUN_1001f554 undefined4 FUN_1001f554(ushort * param_1) 53 1 +1001f589 AtlW2AHelper uint AtlW2AHelper(LPSTR param_1, LPCWSTR param_2, int param_3, UINT param_4) 56 1 +1001f5c1 FUN_1001f5c1 undefined FUN_1001f5c1(LPCWSTR param_1) 1522 31 closesocket;memcpy;memset;recvfrom;sendto +1001fbbc FUN_1001fbbc undefined FUN_1001fbbc(void) 1 0 +1001fbbd FUN_1001fbbd undefined FUN_1001fbbd(DWORD param_1, DWORD param_2) 21 1 +1001fc36 FUN_1001fc36 undefined FUN_1001fc36(undefined4 * param_1) 30 1 +1001fc54 operator[] ushort * operator[](CSimpleArray_> * this, int param_1) 42 1 +1001fc7e AtlWinModuleTerm long AtlWinModuleTerm(_ATL_WIN_MODULE70 * param_1, HINSTANCE__ * param_2) 116 4 +1001ff84 VarBstrCat HRESULT VarBstrCat(BSTR bstrLeft, BSTR bstrRight, LPBSTR pbstrResult) 6 0 +10020001 FUN_10020001 undefined FUN_10020001(void * this, undefined4 * param_1) 18 0 +10020013 FUN_10020013 undefined4 FUN_10020013(undefined4 param_1, undefined4 param_2) 10 0 +1002001d FUN_1002001d undefined FUN_1002001d(undefined4 * param_1) 31 1 +1002003c memmove_s void memmove_s(void * param_1, uint param_2, void * param_3, uint param_4) 33 2 memmove_s +1002005d RemoveAt int RemoveAt(CSimpleArray_> * this, int param_1) 72 1 memmove_s +100200a5 FUN_100200a5 int FUN_100200a5(void * this, int param_1) 44 1 +100200d1 FUN_100200d1 undefined FUN_100200d1(void * this, int param_1, undefined4 * param_2) 28 0 +100200f2 FUN_100200f2 int FUN_100200f2(int param_1) 37 1 memset +1002011f FUN_1002011f undefined FUN_1002011f(int param_1) 24 2 +10020137 RemoveResourceInstance bool RemoveResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 105 4 +100201a0 GetHInstanceAt HINSTANCE__ * GetHInstanceAt(CAtlBaseModule * this, int param_1) 93 3 +100201fd Add int Add(CSimpleArray_> * this, HINSTANCE__ * * param_1) 124 2 +10020279 FUN_10020279 undefined4 * FUN_10020279(undefined4 * param_1) 64 2 +100202b9 AddResourceInstance bool AddResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 53 3 +100202ee FUN_100202ee undefined FUN_100202ee(int * param_1) 68 1 +10020332 FUN_10020332 int FUN_10020332(int param_1) 25 1 memset +1002034c FUN_1002034c undefined4 * FUN_1002034c(undefined4 * param_1) 65 2 +100203a0 FUN_100203a0 undefined FUN_100203a0(undefined * param_1) 17 0 +100203c0 FUN_100203c0 undefined FUN_100203c0(undefined4 param_1) 21 1 +100203e0 _com_issue_errorex void _com_issue_errorex(long param_1, IUnknown * param_2, _GUID * param_3) 117 2 +10020460 _com_dispatch_method long _com_dispatch_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 71 2 +100204b0 _com_dispatch_propget long _com_dispatch_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +100204e0 _com_dispatch_propput long _com_dispatch_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 99 2 +10020550 FUN_10020550 undefined FUN_10020550(undefined4 param_1, undefined4 param_2) 48 1 +10020590 FUN_10020590 uint FUN_10020590(uint param_1) 26 0 +100205b0 _com_invoke_helper long _com_invoke_helper(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, char * param_7, IErrorInfo * * param_8) 1166 8 VariantChangeType;VariantClear;VariantInit;memset +10020b80 _com_dispatch_raw_method long _com_dispatch_raw_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 72 2 +10020bd0 _com_dispatch_raw_propget long _com_dispatch_raw_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +10020c00 _com_dispatch_raw_propput long _com_dispatch_raw_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 100 2 +10020c70 FUN_10020c70 int FUN_10020c70(ushort param_1) 40 0 +10020ca0 _com_handle_excepinfo long _com_handle_excepinfo(tagEXCEPINFO * param_1, IErrorInfo * * param_2) 260 2 SysFreeString +10020de6 _Lock void _Lock(basic_streambuf_> * this) 6 0 +10020dec _Unlock void _Unlock(basic_streambuf_> * this) 6 0 +10020df2 showmanyc __int64 showmanyc(basic_streambuf_> * this) 6 0 +10020df8 uflow ushort uflow(basic_streambuf_> * this) 6 0 +10020dfe xsgetn __int64 xsgetn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10020e04 xsputn __int64 xsputn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10020e0a setbuf basic_streambuf_> * setbuf(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10020e10 sync int sync(basic_streambuf_> * this) 6 0 +10020e16 imbue void imbue(basic_streambuf_> * this, locale * param_1) 6 0 +10020ec4 FUN_10020ec4 undefined FUN_10020ec4(uint param_1) 11 1 +10020ed6 operator_delete void operator_delete(void * param_1) 6 0 +10020ee2 free void free(void * _Memory) 6 0 +10020ef3 FID_conflict:`vector_deleting_destructor' type_info * FID_conflict:`vector_deleting_destructor'(void * this, byte param_1) 76 3 +10020f44 memcmp int memcmp(void * _Buf1, void * _Buf2, size_t _Size) 6 0 +10020f56 memcpy void * memcpy(void * _Dst, void * _Src, size_t _Size) 6 0 +10020f62 operator_new void * operator_new(uint param_1) 6 0 +10020f68 __CxxFrameHandler3 undefined __CxxFrameHandler3(void) 6 0 +10020f6e __security_check_cookie undefined __security_check_cookie(int param_1) 15 1 +10020f7d __EH_prolog3 undefined __EH_prolog3(int param_1) 51 0 +10020fb0 __EH_prolog3_catch undefined __EH_prolog3_catch(int param_1) 54 0 +10020fe8 __EH_prolog3_GS undefined __EH_prolog3_GS(int param_1) 54 0 +1002101e __EH_prolog3_catch_GS undefined __EH_prolog3_catch_GS(int param_1) 57 0 +10021057 __EH_epilog3 undefined __EH_epilog3(void) 20 0 +1002106b FUN_1002106b undefined FUN_1002106b(void) 15 2 +1002107a FUN_1002107a undefined FUN_1002107a(void) 15 2 +10021090 _CxxThrowException void _CxxThrowException(void * pExceptionObject, ThrowInfo * pThrowInfo) 6 0 +10021096 memset void * memset(void * _Dst, int _Val, size_t _Size) 6 0 +100210a8 operator_delete[] void operator_delete[](void * param_1) 6 0 +100210ba what char * what(exception * this) 6 0 +100210e4 _recalloc void * _recalloc(void * _Memory, size_t _Count, size_t _Size) 6 0 +10021110 __alloca_probe undefined __alloca_probe(void) 43 0 +1002113b __onexit _onexit_t __onexit(_onexit_t param_1) 152 8 +100211d3 FUN_100211d3 undefined FUN_100211d3(void) 9 1 +100211dc _atexit int _atexit(_func_4879 * param_1) 23 1 +10021200 __allshr undefined8 __allshr(byte param_1, int param_2) 33 0 +10021233 __ArrayUnwind void __ArrayUnwind(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 50 2 +10021291 `eh_vector_destructor_iterator' void `eh_vector_destructor_iterator'(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 75 3 +100212dc FUN_100212dc undefined FUN_100212dc(void) 24 1 +100212f4 `eh_vector_constructor_iterator' void `eh_vector_constructor_iterator'(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4, _func_void_void_ptr * param_5) 77 3 +10021341 FUN_10021341 undefined FUN_10021341(void) 24 1 +10021359 `eh_vector_copy_constructor_iterator' void `eh_vector_copy_constructor_iterator'(void * param_1, void * param_2, uint param_3, int param_4, _func_void_void_ptr_void_ptr * param_5, _func_void_void_ptr * param_6) 81 3 +100213aa FUN_100213aa undefined FUN_100213aa(void) 24 1 +100213ce purecall undefined purecall(void) 6 0 +100213f2 strlen size_t strlen(char * _Str) 6 0 +10021410 __alloca_probe_16 uint __alloca_probe_16(void) 22 1 +10021426 __alloca_probe_8 uint __alloca_probe_8(void) 22 1 +10021491 __CRT_INIT@12 undefined4 __CRT_INIT@12(int * param_1, int * param_2, int * param_3) 522 10 +1002169b ___DllMainCRTStartup int ___DllMainCRTStartup(int * param_1, int * param_2, HMODULE param_3) 240 5 +100217a6 FUN_100217a6 undefined FUN_100217a6(void) 11 0 +100217b1 entry undefined entry(HMODULE param_1, int * param_2, int * param_3) 35 2 +100217d4 memmove_s errno_t memmove_s(void * _Dst, rsize_t _DstSize, void * _Src, rsize_t _MaxCount) 6 0 +100217ff ___report_gsfailure void ___report_gsfailure(void) 262 6 +10021906 _unlock void _unlock(int _File) 6 0 +1002190c __dllonexit undefined __dllonexit(void) 6 0 +10021912 _lock void _lock(int _File) 6 0 +10021920 __SEH_prolog4 undefined __SEH_prolog4(undefined4 param_1, int param_2) 69 0 +10021965 __SEH_epilog4 undefined __SEH_epilog4(void) 20 0 +100219f0 __ValidateImageBase BOOL __ValidateImageBase(PBYTE pImageBase) 53 0 +10021a30 __FindPESection PIMAGE_SECTION_HEADER __FindPESection(PBYTE pImageBase, DWORD_PTR rva) 68 0 +10021a80 __IsNonwritableInCurrentImage BOOL __IsNonwritableInCurrentImage(PBYTE pTarget) 166 2 +10021b3c initterm undefined initterm(void) 6 0 +10021b42 initterm_e undefined initterm_e(void) 6 0 +10021b48 _amsg_exit void _amsg_exit(int param_1) 6 0 +10021b54 ___security_init_cookie void ___security_init_cookie(void) 155 5 +10021bf0 except_handler4_common undefined except_handler4_common(void) 6 0 +10021bf6 _type_info_dtor_internal_method void _type_info_dtor_internal_method(type_info * this) 6 0 +10021bfc _crt_debugger_hook void _crt_debugger_hook(int param_1) 6 0 +10021c5c Unwind@10021c5c undefined Unwind@10021c5c(void) 10 1 +10021c81 Unwind@10021c81 undefined Unwind@10021c81(void) 8 1 +10021c89 Unwind@10021c89 undefined Unwind@10021c89(void) 8 1 +10021cac Unwind@10021cac undefined Unwind@10021cac(void) 9 0 +10021cd0 Unwind@10021cd0 undefined Unwind@10021cd0(void) 9 0 +10021cf4 Unwind@10021cf4 undefined Unwind@10021cf4(void) 9 0 +10021d18 Unwind@10021d18 undefined Unwind@10021d18(void) 9 0 +10021d3c Unwind@10021d3c undefined Unwind@10021d3c(void) 9 0 +10021d60 Unwind@10021d60 undefined Unwind@10021d60(void) 9 0 +10021d84 Unwind@10021d84 undefined Unwind@10021d84(void) 9 0 +10021da8 Unwind@10021da8 undefined Unwind@10021da8(void) 9 0 +10021dcc Unwind@10021dcc undefined Unwind@10021dcc(void) 9 0 +10021df0 Unwind@10021df0 undefined Unwind@10021df0(void) 9 0 +10021e14 Unwind@10021e14 undefined Unwind@10021e14(void) 9 0 +10021e38 Unwind@10021e38 undefined Unwind@10021e38(void) 9 0 +10021e5c Unwind@10021e5c undefined Unwind@10021e5c(void) 9 0 +10021e80 Unwind@10021e80 undefined Unwind@10021e80(void) 9 0 +10021ea4 Unwind@10021ea4 undefined Unwind@10021ea4(void) 14 1 +10021ecd Unwind@10021ecd undefined Unwind@10021ecd(void) 14 1 +10021ef6 Unwind@10021ef6 undefined Unwind@10021ef6(void) 14 1 +10021f1f Unwind@10021f1f undefined Unwind@10021f1f(void) 11 1 +10021f45 Unwind@10021f45 undefined Unwind@10021f45(void) 14 1 +10021f6e Unwind@10021f6e undefined Unwind@10021f6e(void) 14 1 +10021f97 Unwind@10021f97 undefined Unwind@10021f97(void) 14 1 +10021fc0 Unwind@10021fc0 undefined Unwind@10021fc0(void) 8 1 +10021fe5 Unwind@10021fe5 undefined Unwind@10021fe5(void) 9 0 +10022009 Unwind@10022009 undefined Unwind@10022009(void) 9 0 +1002202d Unwind@1002202d undefined Unwind@1002202d(void) 9 0 +10022051 Unwind@10022051 undefined Unwind@10022051(void) 14 1 +1002207a Unwind@1002207a undefined Unwind@1002207a(void) 14 1 +100220a3 Unwind@100220a3 undefined Unwind@100220a3(void) 8 1 +100220c6 Unwind@100220c6 undefined Unwind@100220c6(void) 8 1 +100220e9 Unwind@100220e9 undefined Unwind@100220e9(void) 11 1 +1002210f Unwind@1002210f undefined Unwind@1002210f(void) 11 1 +10022135 Unwind@10022135 undefined Unwind@10022135(void) 8 1 +10022158 Unwind@10022158 undefined Unwind@10022158(void) 8 1 +1002217b Unwind@1002217b undefined Unwind@1002217b(void) 11 1 +10022186 Unwind@10022186 undefined Unwind@10022186(void) 11 1 +100221ac Unwind@100221ac undefined Unwind@100221ac(void) 8 1 +100221cf Unwind@100221cf undefined Unwind@100221cf(void) 8 1 +100221f2 Unwind@100221f2 undefined Unwind@100221f2(void) 8 1 +10022215 Unwind@10022215 undefined Unwind@10022215(void) 8 1 +10022238 Unwind@10022238 undefined Unwind@10022238(void) 8 1 +1002225b Unwind@1002225b undefined Unwind@1002225b(void) 10 1 +10022280 Unwind@10022280 undefined Unwind@10022280(void) 10 1 +100222a5 Unwind@100222a5 undefined Unwind@100222a5(void) 8 1 +100222c8 Unwind@100222c8 undefined Unwind@100222c8(void) 8 1 +100222eb Unwind@100222eb undefined Unwind@100222eb(void) 8 1 +1002230e Unwind@1002230e undefined Unwind@1002230e(void) 8 1 +10022331 Unwind@10022331 undefined Unwind@10022331(void) 8 1 +10022354 Unwind@10022354 undefined Unwind@10022354(void) 8 1 +10022377 Unwind@10022377 undefined Unwind@10022377(void) 8 1 +1002239a Unwind@1002239a undefined Unwind@1002239a(void) 8 1 +100223a2 Unwind@100223a2 undefined Unwind@100223a2(void) 11 1 +100223c8 Unwind@100223c8 undefined Unwind@100223c8(void) 8 1 +100223eb Unwind@100223eb undefined Unwind@100223eb(void) 8 1 +1002240e Unwind@1002240e undefined Unwind@1002240e(void) 11 1 +10022419 Unwind@10022419 undefined Unwind@10022419(void) 11 1 +1002244c Unwind@1002244c undefined Unwind@1002244c(void) 8 1 +1002246f Unwind@1002246f undefined Unwind@1002246f(void) 8 1 +10022492 Unwind@10022492 undefined Unwind@10022492(void) 9 0 +100224b6 Unwind@100224b6 undefined Unwind@100224b6(void) 8 1 +100224d9 Unwind@100224d9 undefined Unwind@100224d9(void) 8 1 +100224fc Unwind@100224fc undefined Unwind@100224fc(void) 8 1 +1002253a Unwind@1002253a undefined Unwind@1002253a(void) 8 1 +1002255d Unwind@1002255d undefined Unwind@1002255d(void) 14 1 +10022586 Unwind@10022586 undefined Unwind@10022586(void) 11 1 +100225b9 Unwind@100225b9 undefined Unwind@100225b9(void) 8 1 +100225c1 Unwind@100225c1 undefined Unwind@100225c1(void) 8 1 +100225e4 Unwind@100225e4 undefined Unwind@100225e4(void) 8 1 +10022607 Unwind@10022607 undefined Unwind@10022607(void) 8 1 +1002260f Unwind@1002260f undefined Unwind@1002260f(void) 8 1 +10022632 Unwind@10022632 undefined Unwind@10022632(void) 8 1 +1002263a Unwind@1002263a undefined Unwind@1002263a(void) 8 1 +1002265d Unwind@1002265d undefined Unwind@1002265d(void) 8 1 +10022665 Unwind@10022665 undefined Unwind@10022665(void) 8 1 +10022688 Unwind@10022688 undefined Unwind@10022688(void) 14 0 +100226b1 Unwind@100226b1 undefined Unwind@100226b1(void) 8 1 +100226b9 Unwind@100226b9 undefined Unwind@100226b9(void) 8 1 +100226c1 Unwind@100226c1 undefined Unwind@100226c1(void) 8 1 +100226e4 Unwind@100226e4 undefined Unwind@100226e4(void) 8 1 +100226ec Unwind@100226ec undefined Unwind@100226ec(void) 8 1 +100226f4 Unwind@100226f4 undefined Unwind@100226f4(void) 8 1 +10022717 Unwind@10022717 undefined Unwind@10022717(void) 8 1 +1002271f Unwind@1002271f undefined Unwind@1002271f(void) 8 1 +10022727 Unwind@10022727 undefined Unwind@10022727(void) 8 1 +1002272f Unwind@1002272f undefined Unwind@1002272f(void) 8 1 +10022752 Unwind@10022752 undefined Unwind@10022752(void) 8 1 +1002275a Unwind@1002275a undefined Unwind@1002275a(void) 8 1 +10022762 Unwind@10022762 undefined Unwind@10022762(void) 8 1 +10022785 Unwind@10022785 undefined Unwind@10022785(void) 8 1 +1002278d Unwind@1002278d undefined Unwind@1002278d(void) 8 1 +10022795 Unwind@10022795 undefined Unwind@10022795(void) 8 1 +100227b8 Unwind@100227b8 undefined Unwind@100227b8(void) 8 1 +100227c0 Unwind@100227c0 undefined Unwind@100227c0(void) 8 1 +100227c8 Unwind@100227c8 undefined Unwind@100227c8(void) 8 1 +100227d0 Unwind@100227d0 undefined Unwind@100227d0(void) 8 1 +100227f3 Unwind@100227f3 undefined Unwind@100227f3(void) 8 1 +100227fb Unwind@100227fb undefined Unwind@100227fb(void) 8 1 +10022803 Unwind@10022803 undefined Unwind@10022803(void) 8 1 +10022826 Unwind@10022826 undefined Unwind@10022826(void) 8 1 +1002282e Unwind@1002282e undefined Unwind@1002282e(void) 8 1 +10022836 Unwind@10022836 undefined Unwind@10022836(void) 8 1 +10022859 Unwind@10022859 undefined Unwind@10022859(void) 8 1 +10022861 Unwind@10022861 undefined Unwind@10022861(void) 8 1 +10022869 Unwind@10022869 undefined Unwind@10022869(void) 8 1 +10022871 Unwind@10022871 undefined Unwind@10022871(void) 8 1 +100228e5 Unwind@100228e5 undefined Unwind@100228e5(void) 11 1 +1002290b Unwind@1002290b undefined Unwind@1002290b(void) 8 1 +1002292e Unwind@1002292e undefined Unwind@1002292e(void) 8 1 +10022936 Unwind@10022936 undefined Unwind@10022936(void) 11 1 +1002295c Unwind@1002295c undefined Unwind@1002295c(void) 14 1 +10022985 Unwind@10022985 undefined Unwind@10022985(void) 11 1 +100229ab Unwind@100229ab undefined Unwind@100229ab(void) 8 1 +100229ce Unwind@100229ce undefined Unwind@100229ce(void) 11 1 +10022a01 Unwind@10022a01 undefined Unwind@10022a01(void) 8 1 +10022a09 Unwind@10022a09 undefined Unwind@10022a09(void) 8 1 +10022a11 Unwind@10022a11 undefined Unwind@10022a11(void) 8 1 +10022a34 Unwind@10022a34 undefined Unwind@10022a34(void) 12 0 +10022a40 Unwind@10022a40 undefined Unwind@10022a40(void) 11 1 +10022a66 Unwind@10022a66 undefined Unwind@10022a66(void) 9 0 +10022a8a Unwind@10022a8a undefined Unwind@10022a8a(void) 8 1 +10022aad Unwind@10022aad undefined Unwind@10022aad(void) 8 1 +10022ad0 Unwind@10022ad0 undefined Unwind@10022ad0(void) 8 1 +10022af3 Unwind@10022af3 undefined Unwind@10022af3(void) 8 1 +10022afb Unwind@10022afb undefined Unwind@10022afb(void) 8 1 +10022b1e Unwind@10022b1e undefined Unwind@10022b1e(void) 8 1 +10022b41 Unwind@10022b41 undefined Unwind@10022b41(void) 8 1 +10022b64 Unwind@10022b64 undefined Unwind@10022b64(void) 8 1 +10022b87 Unwind@10022b87 undefined Unwind@10022b87(void) 8 1 +10022baa Unwind@10022baa undefined Unwind@10022baa(void) 8 1 +10022bcd Unwind@10022bcd undefined Unwind@10022bcd(void) 8 1 +10022bf0 Unwind@10022bf0 undefined Unwind@10022bf0(void) 8 1 +10022c13 Unwind@10022c13 undefined Unwind@10022c13(void) 8 1 +10022c36 Unwind@10022c36 undefined Unwind@10022c36(void) 8 1 +10022c59 Unwind@10022c59 undefined Unwind@10022c59(void) 8 1 +10022c7c Unwind@10022c7c undefined Unwind@10022c7c(void) 8 1 +10022d0b Unwind@10022d0b undefined Unwind@10022d0b(void) 8 1 +10022d13 Unwind@10022d13 undefined Unwind@10022d13(void) 25 1 +10022d47 Unwind@10022d47 undefined Unwind@10022d47(void) 8 1 +10022d4f Unwind@10022d4f undefined Unwind@10022d4f(void) 8 1 +10022d57 Unwind@10022d57 undefined Unwind@10022d57(void) 8 1 +10022d7a Unwind@10022d7a undefined Unwind@10022d7a(void) 8 1 +10022d82 Unwind@10022d82 undefined Unwind@10022d82(void) 8 1 +10022d8a Unwind@10022d8a undefined Unwind@10022d8a(void) 8 1 +10022d92 Unwind@10022d92 undefined Unwind@10022d92(void) 8 1 +10022db5 Unwind@10022db5 undefined Unwind@10022db5(void) 8 1 +10022dbd Unwind@10022dbd undefined Unwind@10022dbd(void) 8 1 +10022dc5 Unwind@10022dc5 undefined Unwind@10022dc5(void) 8 1 +10022dcd Unwind@10022dcd undefined Unwind@10022dcd(void) 8 1 +10022dd5 Unwind@10022dd5 undefined Unwind@10022dd5(void) 8 1 +10022e13 Unwind@10022e13 undefined Unwind@10022e13(void) 8 1 +10022e1b Unwind@10022e1b undefined Unwind@10022e1b(void) 25 1 +10022e4f Unwind@10022e4f undefined Unwind@10022e4f(void) 8 1 +10022e57 Unwind@10022e57 undefined Unwind@10022e57(void) 8 1 +10022e5f Unwind@10022e5f undefined Unwind@10022e5f(void) 8 1 +10022e67 Unwind@10022e67 undefined Unwind@10022e67(void) 8 1 +10022e8a Unwind@10022e8a undefined Unwind@10022e8a(void) 8 1 +10022e92 Unwind@10022e92 undefined Unwind@10022e92(void) 8 1 +10022e9a Unwind@10022e9a undefined Unwind@10022e9a(void) 8 1 +10022ea2 Unwind@10022ea2 undefined Unwind@10022ea2(void) 8 1 +10022eaa Unwind@10022eaa undefined Unwind@10022eaa(void) 8 1 +10022ee8 Unwind@10022ee8 undefined Unwind@10022ee8(void) 8 1 +10022ef0 Unwind@10022ef0 undefined Unwind@10022ef0(void) 25 1 +10022f24 Unwind@10022f24 undefined Unwind@10022f24(void) 8 1 +10022f2c Unwind@10022f2c undefined Unwind@10022f2c(void) 8 1 +10022f34 Unwind@10022f34 undefined Unwind@10022f34(void) 8 1 +10022f57 Unwind@10022f57 undefined Unwind@10022f57(void) 8 1 +10022f5f Unwind@10022f5f undefined Unwind@10022f5f(void) 8 1 +10022f67 Unwind@10022f67 undefined Unwind@10022f67(void) 8 1 +10022f6f Unwind@10022f6f undefined Unwind@10022f6f(void) 8 1 +10022f92 Unwind@10022f92 undefined Unwind@10022f92(void) 8 1 +10022f9a Unwind@10022f9a undefined Unwind@10022f9a(void) 8 1 +10022fa2 Unwind@10022fa2 undefined Unwind@10022fa2(void) 8 1 +10022faa Unwind@10022faa undefined Unwind@10022faa(void) 8 1 +10022fb2 Unwind@10022fb2 undefined Unwind@10022fb2(void) 8 1 +10022fd5 Unwind@10022fd5 undefined Unwind@10022fd5(void) 8 1 +10022fdd Unwind@10022fdd undefined Unwind@10022fdd(void) 8 1 +10022fe5 Unwind@10022fe5 undefined Unwind@10022fe5(void) 8 1 +10022fed Unwind@10022fed undefined Unwind@10022fed(void) 8 1 +10023010 Unwind@10023010 undefined Unwind@10023010(void) 8 1 +10023018 Unwind@10023018 undefined Unwind@10023018(void) 8 1 +10023020 Unwind@10023020 undefined Unwind@10023020(void) 8 1 +10023028 Unwind@10023028 undefined Unwind@10023028(void) 8 1 +1002304b Unwind@1002304b undefined Unwind@1002304b(void) 11 1 +10023071 Unwind@10023071 undefined Unwind@10023071(void) 8 1 +10023094 Unwind@10023094 undefined Unwind@10023094(void) 8 1 +1002309c Unwind@1002309c undefined Unwind@1002309c(void) 8 1 +100230bf Unwind@100230bf undefined Unwind@100230bf(void) 14 1 +100230e8 Unwind@100230e8 undefined Unwind@100230e8(void) 8 1 +1002310b Unwind@1002310b undefined Unwind@1002310b(void) 8 1 +1002312e Unwind@1002312e undefined Unwind@1002312e(void) 29 0 +1002314b Unwind@1002314b undefined Unwind@1002314b(void) 12 0 +10023157 Unwind@10023157 undefined Unwind@10023157(void) 11 1 +10023198 Unwind@10023198 undefined Unwind@10023198(void) 8 1 +100231bb Unwind@100231bb undefined Unwind@100231bb(void) 8 1 +100231de Unwind@100231de undefined Unwind@100231de(void) 8 1 +10023201 Unwind@10023201 undefined Unwind@10023201(void) 8 1 +10023209 Unwind@10023209 undefined Unwind@10023209(void) 8 1 +1002322c Unwind@1002322c undefined Unwind@1002322c(void) 8 1 +10023234 Unwind@10023234 undefined Unwind@10023234(void) 8 1 +1002323c Unwind@1002323c undefined Unwind@1002323c(void) 8 1 +1002325f Unwind@1002325f undefined Unwind@1002325f(void) 8 1 +10023267 Unwind@10023267 undefined Unwind@10023267(void) 8 1 +1002328a Unwind@1002328a undefined Unwind@1002328a(void) 10 1 +100232af Unwind@100232af undefined Unwind@100232af(void) 8 1 +100232b7 Unwind@100232b7 undefined Unwind@100232b7(void) 8 1 +100232bf Unwind@100232bf undefined Unwind@100232bf(void) 8 1 +100232e2 Unwind@100232e2 undefined Unwind@100232e2(void) 8 1 +1002332d Unwind@1002332d undefined Unwind@1002332d(void) 8 1 +10023350 Unwind@10023350 undefined Unwind@10023350(void) 8 1 +10023373 Unwind@10023373 undefined Unwind@10023373(void) 8 1 +100233b1 Unwind@100233b1 undefined Unwind@100233b1(void) 8 1 +100233b9 Unwind@100233b9 undefined Unwind@100233b9(void) 8 1 +100233c1 Unwind@100233c1 undefined Unwind@100233c1(void) 8 1 +100233e4 Unwind@100233e4 undefined Unwind@100233e4(void) 14 1 +1002340d Unwind@1002340d undefined Unwind@1002340d(void) 8 1 +10023430 Unwind@10023430 undefined Unwind@10023430(void) 8 1 +10023453 Unwind@10023453 undefined Unwind@10023453(void) 8 1 +10023476 Unwind@10023476 undefined Unwind@10023476(void) 8 1 +10023499 Unwind@10023499 undefined Unwind@10023499(void) 8 1 +100234bc Unwind@100234bc undefined Unwind@100234bc(void) 25 1 +100234f0 Unwind@100234f0 undefined Unwind@100234f0(void) 25 1 +10023524 Unwind@10023524 undefined Unwind@10023524(void) 8 1 +10023547 Unwind@10023547 undefined Unwind@10023547(void) 8 1 +1002356a Unwind@1002356a undefined Unwind@1002356a(void) 8 1 +100235a8 Unwind@100235a8 undefined Unwind@100235a8(void) 8 1 +100235b0 Unwind@100235b0 undefined Unwind@100235b0(void) 8 1 +100235b8 Unwind@100235b8 undefined Unwind@100235b8(void) 8 1 +100235db Unwind@100235db undefined Unwind@100235db(void) 8 1 +100235fe Unwind@100235fe undefined Unwind@100235fe(void) 8 1 +10023621 Unwind@10023621 undefined Unwind@10023621(void) 8 1 +10023629 Unwind@10023629 undefined Unwind@10023629(void) 11 1 +1002364f Unwind@1002364f undefined Unwind@1002364f(void) 8 1 +10023657 Unwind@10023657 undefined Unwind@10023657(void) 11 1 +1002367d Unwind@1002367d undefined Unwind@1002367d(void) 8 1 +10023685 Unwind@10023685 undefined Unwind@10023685(void) 11 1 +100236ab Unwind@100236ab undefined Unwind@100236ab(void) 8 1 +100236b3 Unwind@100236b3 undefined Unwind@100236b3(void) 11 1 +100236d9 Unwind@100236d9 undefined Unwind@100236d9(void) 11 1 +100236ff Unwind@100236ff undefined Unwind@100236ff(void) 11 1 +10023725 Unwind@10023725 undefined Unwind@10023725(void) 8 1 +10023748 Unwind@10023748 undefined Unwind@10023748(void) 8 1 +1002376b Unwind@1002376b undefined Unwind@1002376b(void) 8 1 +1002378e Unwind@1002378e undefined Unwind@1002378e(void) 8 1 +100237b1 Unwind@100237b1 undefined Unwind@100237b1(void) 8 1 +1002380a Unwind@1002380a undefined Unwind@1002380a(void) 8 1 +1002382d Unwind@1002382d undefined Unwind@1002382d(void) 8 1 +10023850 Unwind@10023850 undefined Unwind@10023850(void) 8 1 +10023858 Unwind@10023858 undefined Unwind@10023858(void) 25 1 +10023871 Unwind@10023871 undefined Unwind@10023871(void) 8 1 +10023879 Unwind@10023879 undefined Unwind@10023879(void) 8 1 +100238c1 Unwind@100238c1 undefined Unwind@100238c1(void) 25 1 +100238f5 Unwind@100238f5 undefined Unwind@100238f5(void) 25 1 +10023929 Unwind@10023929 undefined Unwind@10023929(void) 8 1 +1002394c Unwind@1002394c undefined Unwind@1002394c(void) 11 1 +10023957 Unwind@10023957 undefined Unwind@10023957(void) 8 1 +1002397a Unwind@1002397a undefined Unwind@1002397a(void) 8 1 +1002399d Unwind@1002399d undefined Unwind@1002399d(void) 8 1 +100239a5 Unwind@100239a5 undefined Unwind@100239a5(void) 8 1 +100239c8 Unwind@100239c8 undefined Unwind@100239c8(void) 8 1 +100239eb Unwind@100239eb undefined Unwind@100239eb(void) 8 1 +10023a0e Unwind@10023a0e undefined Unwind@10023a0e(void) 18 1 +10023a3b Unwind@10023a3b undefined Unwind@10023a3b(void) 11 1 +10023a61 Unwind@10023a61 undefined Unwind@10023a61(void) 8 1 +10023a69 Unwind@10023a69 undefined Unwind@10023a69(void) 8 1 +10023a8c Unwind@10023a8c undefined Unwind@10023a8c(void) 8 1 +10023a94 Unwind@10023a94 undefined Unwind@10023a94(void) 8 1 +10023ab7 Unwind@10023ab7 undefined Unwind@10023ab7(void) 8 1 +10023abf Unwind@10023abf undefined Unwind@10023abf(void) 25 1 +10023af3 Unwind@10023af3 undefined Unwind@10023af3(void) 11 1 +10023b19 Unwind@10023b19 undefined Unwind@10023b19(void) 14 1 +10023b42 Unwind@10023b42 undefined Unwind@10023b42(void) 25 1 +10023b76 Unwind@10023b76 undefined Unwind@10023b76(void) 11 1 +10023b9c Unwind@10023b9c undefined Unwind@10023b9c(void) 18 1 +10023bc9 Unwind@10023bc9 undefined Unwind@10023bc9(void) 8 1 +10023bd1 Unwind@10023bd1 undefined Unwind@10023bd1(void) 11 1 +10023bf7 Unwind@10023bf7 undefined Unwind@10023bf7(void) 8 1 +10023c1a Unwind@10023c1a undefined Unwind@10023c1a(void) 8 1 +10023c3d Unwind@10023c3d undefined Unwind@10023c3d(void) 8 1 +10023c45 Unwind@10023c45 undefined Unwind@10023c45(void) 11 1 +10023c6b Unwind@10023c6b undefined Unwind@10023c6b(void) 11 1 +10023c76 Unwind@10023c76 undefined Unwind@10023c76(void) 11 1 +10023c81 Unwind@10023c81 undefined Unwind@10023c81(void) 11 1 +10023c8c Unwind@10023c8c undefined Unwind@10023c8c(void) 11 1 +10023c97 Unwind@10023c97 undefined Unwind@10023c97(void) 11 1 +10023ca2 Unwind@10023ca2 undefined Unwind@10023ca2(void) 11 1 +10023cad Unwind@10023cad undefined Unwind@10023cad(void) 11 1 +10023cb8 Unwind@10023cb8 undefined Unwind@10023cb8(void) 11 1 +10023cc3 Unwind@10023cc3 undefined Unwind@10023cc3(void) 34 1 +10023d0d Unwind@10023d0d undefined Unwind@10023d0d(void) 25 1 +10023d41 Unwind@10023d41 undefined Unwind@10023d41(void) 8 1 +10023d49 Unwind@10023d49 undefined Unwind@10023d49(void) 25 1 +10023d7d Unwind@10023d7d undefined Unwind@10023d7d(void) 8 1 +10023d85 Unwind@10023d85 undefined Unwind@10023d85(void) 8 1 +10023d8d Unwind@10023d8d undefined Unwind@10023d8d(void) 25 1 +10023da6 Unwind@10023da6 undefined Unwind@10023da6(void) 8 1 +10023dae Unwind@10023dae undefined Unwind@10023dae(void) 8 1 +10023dd1 Unwind@10023dd1 undefined Unwind@10023dd1(void) 8 1 +10023df4 Unwind@10023df4 undefined Unwind@10023df4(void) 8 1 +10023dfc Unwind@10023dfc undefined Unwind@10023dfc(void) 8 1 +10023e04 Unwind@10023e04 undefined Unwind@10023e04(void) 8 1 +10023e0c Unwind@10023e0c undefined Unwind@10023e0c(void) 8 1 +10023e14 Unwind@10023e14 undefined Unwind@10023e14(void) 8 1 +10023e1c Unwind@10023e1c undefined Unwind@10023e1c(void) 8 1 +10023e24 Unwind@10023e24 undefined Unwind@10023e24(void) 8 1 +10023e2c Unwind@10023e2c undefined Unwind@10023e2c(void) 8 1 +10023e34 Unwind@10023e34 undefined Unwind@10023e34(void) 8 1 +10023e3c Unwind@10023e3c undefined Unwind@10023e3c(void) 8 1 +10023e44 Unwind@10023e44 undefined Unwind@10023e44(void) 8 1 +10023e4c Unwind@10023e4c undefined Unwind@10023e4c(void) 8 1 +10023e54 Unwind@10023e54 undefined Unwind@10023e54(void) 8 1 +10023e5c Unwind@10023e5c undefined Unwind@10023e5c(void) 8 1 +10023e64 Unwind@10023e64 undefined Unwind@10023e64(void) 8 1 +10023e87 Unwind@10023e87 undefined Unwind@10023e87(void) 8 1 +10023e8f Unwind@10023e8f undefined Unwind@10023e8f(void) 8 1 +10023e97 Unwind@10023e97 undefined Unwind@10023e97(void) 8 1 +10023e9f Unwind@10023e9f undefined Unwind@10023e9f(void) 8 1 +10023ea7 Unwind@10023ea7 undefined Unwind@10023ea7(void) 8 1 +10023eaf Unwind@10023eaf undefined Unwind@10023eaf(void) 8 1 +10023ed2 Unwind@10023ed2 undefined Unwind@10023ed2(void) 8 1 +10023eda Unwind@10023eda undefined Unwind@10023eda(void) 8 1 +10023efd Unwind@10023efd undefined Unwind@10023efd(void) 8 1 +10023f3b Unwind@10023f3b undefined Unwind@10023f3b(void) 8 1 +10023f43 Unwind@10023f43 undefined Unwind@10023f43(void) 11 1 +10023f69 Unwind@10023f69 undefined Unwind@10023f69(void) 8 1 +10023f71 Unwind@10023f71 undefined Unwind@10023f71(void) 8 1 +10023f79 Unwind@10023f79 undefined Unwind@10023f79(void) 11 1 +10023f84 Unwind@10023f84 undefined Unwind@10023f84(void) 8 1 +10023f8c Unwind@10023f8c undefined Unwind@10023f8c(void) 8 1 +10023f94 Unwind@10023f94 undefined Unwind@10023f94(void) 8 1 +10023f9c Unwind@10023f9c undefined Unwind@10023f9c(void) 8 1 +10023fcc Unwind@10023fcc undefined Unwind@10023fcc(void) 8 1 +10023fef Unwind@10023fef undefined Unwind@10023fef(void) 8 1 +10023ff7 Unwind@10023ff7 undefined Unwind@10023ff7(void) 11 1 +1002401d Unwind@1002401d undefined Unwind@1002401d(void) 11 1 +10024028 Unwind@10024028 undefined Unwind@10024028(void) 11 1 +10024033 Unwind@10024033 undefined Unwind@10024033(void) 11 1 +1002403e Unwind@1002403e undefined Unwind@1002403e(void) 11 1 +10024049 Unwind@10024049 undefined Unwind@10024049(void) 11 1 +10024054 Unwind@10024054 undefined Unwind@10024054(void) 11 1 +1002405f Unwind@1002405f undefined Unwind@1002405f(void) 34 1 +10024081 Unwind@10024081 undefined Unwind@10024081(void) 34 1 +100240cb Unwind@100240cb undefined Unwind@100240cb(void) 8 1 +100240ee Unwind@100240ee undefined Unwind@100240ee(void) 8 1 +100240f6 Unwind@100240f6 undefined Unwind@100240f6(void) 8 1 +100240fe Unwind@100240fe undefined Unwind@100240fe(void) 11 1 +10024109 Unwind@10024109 undefined Unwind@10024109(void) 11 1 +10024114 Unwind@10024114 undefined Unwind@10024114(void) 11 1 +1002411f Unwind@1002411f undefined Unwind@1002411f(void) 11 1 +1002412a Unwind@1002412a undefined Unwind@1002412a(void) 8 1 +10024132 Unwind@10024132 undefined Unwind@10024132(void) 8 1 +1002413a Unwind@1002413a undefined Unwind@1002413a(void) 8 1 +1002416a Unwind@1002416a undefined Unwind@1002416a(void) 8 1 +10024172 Unwind@10024172 undefined Unwind@10024172(void) 8 1 +10024195 Unwind@10024195 undefined Unwind@10024195(void) 11 1 +100241bb Unwind@100241bb undefined Unwind@100241bb(void) 8 1 +100241c3 Unwind@100241c3 undefined Unwind@100241c3(void) 8 1 +100241cb Unwind@100241cb undefined Unwind@100241cb(void) 8 1 +100241ee Unwind@100241ee undefined Unwind@100241ee(void) 11 1 +10024214 Unwind@10024214 undefined Unwind@10024214(void) 8 1 +10024237 Unwind@10024237 undefined Unwind@10024237(void) 8 1 +1002423f Unwind@1002423f undefined Unwind@1002423f(void) 8 1 +10024247 Unwind@10024247 undefined Unwind@10024247(void) 8 1 +1002426a Unwind@1002426a undefined Unwind@1002426a(void) 8 1 +10024272 Unwind@10024272 undefined Unwind@10024272(void) 8 1 +1002427a Unwind@1002427a undefined Unwind@1002427a(void) 8 1 +10024282 Unwind@10024282 undefined Unwind@10024282(void) 8 1 +1002428a Unwind@1002428a undefined Unwind@1002428a(void) 8 1 +10024292 Unwind@10024292 undefined Unwind@10024292(void) 8 1 +1002429a Unwind@1002429a undefined Unwind@1002429a(void) 8 1 +100242a2 Unwind@100242a2 undefined Unwind@100242a2(void) 8 1 +100242c5 Unwind@100242c5 undefined Unwind@100242c5(void) 8 1 +100242cd Unwind@100242cd undefined Unwind@100242cd(void) 8 1 +100242d5 Unwind@100242d5 undefined Unwind@100242d5(void) 8 1 +100242dd Unwind@100242dd undefined Unwind@100242dd(void) 8 1 +100242e5 Unwind@100242e5 undefined Unwind@100242e5(void) 8 1 +100242ed Unwind@100242ed undefined Unwind@100242ed(void) 8 1 +100242f5 Unwind@100242f5 undefined Unwind@100242f5(void) 8 1 +100242fd Unwind@100242fd undefined Unwind@100242fd(void) 8 1 +10024320 Unwind@10024320 undefined Unwind@10024320(void) 8 1 +10024328 Unwind@10024328 undefined Unwind@10024328(void) 8 1 +10024330 Unwind@10024330 undefined Unwind@10024330(void) 8 1 +10024338 Unwind@10024338 undefined Unwind@10024338(void) 8 1 +10024340 Unwind@10024340 undefined Unwind@10024340(void) 8 1 +10024348 Unwind@10024348 undefined Unwind@10024348(void) 8 1 +10024350 Unwind@10024350 undefined Unwind@10024350(void) 8 1 +10024373 Unwind@10024373 undefined Unwind@10024373(void) 8 1 +1002437b Unwind@1002437b undefined Unwind@1002437b(void) 8 1 +10024383 Unwind@10024383 undefined Unwind@10024383(void) 8 1 +1002438b Unwind@1002438b undefined Unwind@1002438b(void) 8 1 +10024393 Unwind@10024393 undefined Unwind@10024393(void) 8 1 +1002439b Unwind@1002439b undefined Unwind@1002439b(void) 8 1 +100243a3 Unwind@100243a3 undefined Unwind@100243a3(void) 8 1 +100243ab Unwind@100243ab undefined Unwind@100243ab(void) 8 1 +100243b3 Unwind@100243b3 undefined Unwind@100243b3(void) 8 1 +100243bb Unwind@100243bb undefined Unwind@100243bb(void) 8 1 +100243c3 Unwind@100243c3 undefined Unwind@100243c3(void) 8 1 +100243cb Unwind@100243cb undefined Unwind@100243cb(void) 8 1 +100243d3 Unwind@100243d3 undefined Unwind@100243d3(void) 8 1 +100243db Unwind@100243db undefined Unwind@100243db(void) 8 1 +100243e3 Unwind@100243e3 undefined Unwind@100243e3(void) 8 1 +100243eb Unwind@100243eb undefined Unwind@100243eb(void) 8 1 +1002440e Unwind@1002440e undefined Unwind@1002440e(void) 8 1 +10024416 Unwind@10024416 undefined Unwind@10024416(void) 8 1 +1002441e Unwind@1002441e undefined Unwind@1002441e(void) 8 1 +10024426 Unwind@10024426 undefined Unwind@10024426(void) 8 1 +1002442e Unwind@1002442e undefined Unwind@1002442e(void) 8 1 +10024436 Unwind@10024436 undefined Unwind@10024436(void) 8 1 +10024459 Unwind@10024459 undefined Unwind@10024459(void) 8 1 +10024461 Unwind@10024461 undefined Unwind@10024461(void) 8 1 +10024469 Unwind@10024469 undefined Unwind@10024469(void) 8 1 +10024471 Unwind@10024471 undefined Unwind@10024471(void) 8 1 +10024479 Unwind@10024479 undefined Unwind@10024479(void) 8 1 +1002449c Unwind@1002449c undefined Unwind@1002449c(void) 8 1 +100244a4 Unwind@100244a4 undefined Unwind@100244a4(void) 8 1 +100244ac Unwind@100244ac undefined Unwind@100244ac(void) 8 1 +100244b4 Unwind@100244b4 undefined Unwind@100244b4(void) 8 1 +100244bc Unwind@100244bc undefined Unwind@100244bc(void) 8 1 +100244c4 Unwind@100244c4 undefined Unwind@100244c4(void) 8 1 +100244cc Unwind@100244cc undefined Unwind@100244cc(void) 8 1 +100244d4 Unwind@100244d4 undefined Unwind@100244d4(void) 8 1 +100244f7 Unwind@100244f7 undefined Unwind@100244f7(void) 8 1 +100244ff Unwind@100244ff undefined Unwind@100244ff(void) 8 1 +10024507 Unwind@10024507 undefined Unwind@10024507(void) 8 1 +1002450f Unwind@1002450f undefined Unwind@1002450f(void) 8 1 +10024517 Unwind@10024517 undefined Unwind@10024517(void) 8 1 +1002451f Unwind@1002451f undefined Unwind@1002451f(void) 8 1 +10024527 Unwind@10024527 undefined Unwind@10024527(void) 8 1 +1002452f Unwind@1002452f undefined Unwind@1002452f(void) 8 1 +10024537 Unwind@10024537 undefined Unwind@10024537(void) 8 1 +1002453f Unwind@1002453f undefined Unwind@1002453f(void) 8 1 +10024547 Unwind@10024547 undefined Unwind@10024547(void) 8 1 +1002454f Unwind@1002454f undefined Unwind@1002454f(void) 8 1 +10024557 Unwind@10024557 undefined Unwind@10024557(void) 8 1 +1002457a Unwind@1002457a undefined Unwind@1002457a(void) 11 1 +10024585 Unwind@10024585 undefined Unwind@10024585(void) 11 1 +10024590 Unwind@10024590 undefined Unwind@10024590(void) 11 1 +1002459b Unwind@1002459b undefined Unwind@1002459b(void) 11 1 +100245ce Unwind@100245ce undefined Unwind@100245ce(void) 11 1 +100245d9 Unwind@100245d9 undefined Unwind@100245d9(void) 11 1 +100245e4 Unwind@100245e4 undefined Unwind@100245e4(void) 11 1 +100245ef Unwind@100245ef undefined Unwind@100245ef(void) 11 1 +100245fa Unwind@100245fa undefined Unwind@100245fa(void) 11 1 +1002462d Unwind@1002462d undefined Unwind@1002462d(void) 11 1 +10024638 Unwind@10024638 undefined Unwind@10024638(void) 11 1 +1002466b Unwind@1002466b undefined Unwind@1002466b(void) 8 1 +10024673 Unwind@10024673 undefined Unwind@10024673(void) 8 1 +1002467b Unwind@1002467b undefined Unwind@1002467b(void) 8 1 +10024683 Unwind@10024683 undefined Unwind@10024683(void) 8 1 +1002468b Unwind@1002468b undefined Unwind@1002468b(void) 8 1 +10024693 Unwind@10024693 undefined Unwind@10024693(void) 8 1 +1002469b Unwind@1002469b undefined Unwind@1002469b(void) 8 1 +100246be Unwind@100246be undefined Unwind@100246be(void) 8 1 +100246c6 Unwind@100246c6 undefined Unwind@100246c6(void) 8 1 +100246ce Unwind@100246ce undefined Unwind@100246ce(void) 8 1 +100246d6 Unwind@100246d6 undefined Unwind@100246d6(void) 8 1 +100246de Unwind@100246de undefined Unwind@100246de(void) 8 1 +100246e6 Unwind@100246e6 undefined Unwind@100246e6(void) 8 1 +100246ee Unwind@100246ee undefined Unwind@100246ee(void) 8 1 +100246f6 Unwind@100246f6 undefined Unwind@100246f6(void) 8 1 +100246fe Unwind@100246fe undefined Unwind@100246fe(void) 8 1 +10024706 Unwind@10024706 undefined Unwind@10024706(void) 8 1 +10024729 Unwind@10024729 undefined Unwind@10024729(void) 8 1 +10024731 Unwind@10024731 undefined Unwind@10024731(void) 8 1 +10024739 Unwind@10024739 undefined Unwind@10024739(void) 8 1 +10024741 Unwind@10024741 undefined Unwind@10024741(void) 8 1 +10024749 Unwind@10024749 undefined Unwind@10024749(void) 8 1 +10024751 Unwind@10024751 undefined Unwind@10024751(void) 8 1 +10024759 Unwind@10024759 undefined Unwind@10024759(void) 8 1 +10024761 Unwind@10024761 undefined Unwind@10024761(void) 8 1 +10024769 Unwind@10024769 undefined Unwind@10024769(void) 8 1 +10024771 Unwind@10024771 undefined Unwind@10024771(void) 8 1 +10024794 Unwind@10024794 undefined Unwind@10024794(void) 8 1 +1002479c Unwind@1002479c undefined Unwind@1002479c(void) 8 1 +100247a4 Unwind@100247a4 undefined Unwind@100247a4(void) 8 1 +100247ac Unwind@100247ac undefined Unwind@100247ac(void) 8 1 +100247b4 Unwind@100247b4 undefined Unwind@100247b4(void) 8 1 +100247bc Unwind@100247bc undefined Unwind@100247bc(void) 8 1 +100247c4 Unwind@100247c4 undefined Unwind@100247c4(void) 8 1 +100247cc Unwind@100247cc undefined Unwind@100247cc(void) 11 1 +100247d7 Unwind@100247d7 undefined Unwind@100247d7(void) 11 1 +10024800 Unwind@10024800 undefined Unwind@10024800(void) 8 1 +10024823 Unwind@10024823 undefined Unwind@10024823(void) 8 1 +10024846 Unwind@10024846 undefined Unwind@10024846(void) 14 1 +1002486f Unwind@1002486f undefined Unwind@1002486f(void) 8 1 +10024892 Unwind@10024892 undefined Unwind@10024892(void) 8 1 +1002489a Unwind@1002489a undefined Unwind@1002489a(void) 8 1 +100248a2 Unwind@100248a2 undefined Unwind@100248a2(void) 8 1 +100248aa Unwind@100248aa undefined Unwind@100248aa(void) 8 1 +100248b2 Unwind@100248b2 undefined Unwind@100248b2(void) 8 1 +100248d5 Unwind@100248d5 undefined Unwind@100248d5(void) 8 1 +100248dd Unwind@100248dd undefined Unwind@100248dd(void) 8 1 +100248e5 Unwind@100248e5 undefined Unwind@100248e5(void) 8 1 +100248ed Unwind@100248ed undefined Unwind@100248ed(void) 8 1 +100248f5 Unwind@100248f5 undefined Unwind@100248f5(void) 8 1 +100248fd Unwind@100248fd undefined Unwind@100248fd(void) 8 1 +10024905 Unwind@10024905 undefined Unwind@10024905(void) 8 1 +1002490d Unwind@1002490d undefined Unwind@1002490d(void) 8 1 +10024930 Unwind@10024930 undefined Unwind@10024930(void) 8 1 +10024938 Unwind@10024938 undefined Unwind@10024938(void) 8 1 +10024940 Unwind@10024940 undefined Unwind@10024940(void) 8 1 +10024948 Unwind@10024948 undefined Unwind@10024948(void) 8 1 +10024950 Unwind@10024950 undefined Unwind@10024950(void) 8 1 +10024958 Unwind@10024958 undefined Unwind@10024958(void) 8 1 +10024960 Unwind@10024960 undefined Unwind@10024960(void) 8 1 +10024983 Unwind@10024983 undefined Unwind@10024983(void) 8 1 +1002498b Unwind@1002498b undefined Unwind@1002498b(void) 8 1 +100249ae Unwind@100249ae undefined Unwind@100249ae(void) 8 1 +100249b6 Unwind@100249b6 undefined Unwind@100249b6(void) 25 1 +100249ea Unwind@100249ea undefined Unwind@100249ea(void) 8 1 +100249f2 Unwind@100249f2 undefined Unwind@100249f2(void) 8 1 +100249fa Unwind@100249fa undefined Unwind@100249fa(void) 8 1 +10024a02 Unwind@10024a02 undefined Unwind@10024a02(void) 8 1 +10024a0a Unwind@10024a0a undefined Unwind@10024a0a(void) 8 1 +10024a12 Unwind@10024a12 undefined Unwind@10024a12(void) 8 1 +10024a35 Unwind@10024a35 undefined Unwind@10024a35(void) 11 1 +10024a40 Unwind@10024a40 undefined Unwind@10024a40(void) 11 1 +10024a4b Unwind@10024a4b undefined Unwind@10024a4b(void) 11 1 +10024a56 Unwind@10024a56 undefined Unwind@10024a56(void) 11 1 +10024a61 Unwind@10024a61 undefined Unwind@10024a61(void) 11 1 +10024a94 Unwind@10024a94 undefined Unwind@10024a94(void) 8 1 +10024a9c Unwind@10024a9c undefined Unwind@10024a9c(void) 8 1 +10024aa4 Unwind@10024aa4 undefined Unwind@10024aa4(void) 8 1 +10024aac Unwind@10024aac undefined Unwind@10024aac(void) 8 1 +10024ab4 Unwind@10024ab4 undefined Unwind@10024ab4(void) 8 1 +10024abc Unwind@10024abc undefined Unwind@10024abc(void) 8 1 +10024ac4 Unwind@10024ac4 undefined Unwind@10024ac4(void) 8 1 +10024ae7 Unwind@10024ae7 undefined Unwind@10024ae7(void) 8 1 +10024aef Unwind@10024aef undefined Unwind@10024aef(void) 8 1 +10024af7 Unwind@10024af7 undefined Unwind@10024af7(void) 8 1 +10024aff Unwind@10024aff undefined Unwind@10024aff(void) 8 1 +10024b07 Unwind@10024b07 undefined Unwind@10024b07(void) 8 1 +10024b0f Unwind@10024b0f undefined Unwind@10024b0f(void) 8 1 +10024b17 Unwind@10024b17 undefined Unwind@10024b17(void) 8 1 +10024b1f Unwind@10024b1f undefined Unwind@10024b1f(void) 8 1 +10024b27 Unwind@10024b27 undefined Unwind@10024b27(void) 8 1 +10024b4a Unwind@10024b4a undefined Unwind@10024b4a(void) 8 1 +10024b52 Unwind@10024b52 undefined Unwind@10024b52(void) 8 1 +10024b5a Unwind@10024b5a undefined Unwind@10024b5a(void) 8 1 +10024b62 Unwind@10024b62 undefined Unwind@10024b62(void) 8 1 +10024b6a Unwind@10024b6a undefined Unwind@10024b6a(void) 8 1 +10024b72 Unwind@10024b72 undefined Unwind@10024b72(void) 8 1 +10024b7a Unwind@10024b7a undefined Unwind@10024b7a(void) 8 1 +10024b82 Unwind@10024b82 undefined Unwind@10024b82(void) 8 1 +10024b8a Unwind@10024b8a undefined Unwind@10024b8a(void) 8 1 +10024bb7 Unwind@10024bb7 undefined Unwind@10024bb7(void) 8 1 +10024bbf Unwind@10024bbf undefined Unwind@10024bbf(void) 8 1 +10024bc7 Unwind@10024bc7 undefined Unwind@10024bc7(void) 8 1 +10024bcf Unwind@10024bcf undefined Unwind@10024bcf(void) 8 1 +10024bd7 Unwind@10024bd7 undefined Unwind@10024bd7(void) 8 1 +10024bdf Unwind@10024bdf undefined Unwind@10024bdf(void) 8 1 +10024be7 Unwind@10024be7 undefined Unwind@10024be7(void) 8 1 +10024c25 Unwind@10024c25 undefined Unwind@10024c25(void) 8 1 +10024c2d Unwind@10024c2d undefined Unwind@10024c2d(void) 11 1 +10024c38 Unwind@10024c38 undefined Unwind@10024c38(void) 11 1 +10024c43 Unwind@10024c43 undefined Unwind@10024c43(void) 11 1 +10024c4e Unwind@10024c4e undefined Unwind@10024c4e(void) 19 1 +10024c89 Unwind@10024c89 undefined Unwind@10024c89(void) 8 1 +10024cac Unwind@10024cac undefined Unwind@10024cac(void) 8 1 +10024ccf Unwind@10024ccf undefined Unwind@10024ccf(void) 11 1 +10024cda Unwind@10024cda undefined Unwind@10024cda(void) 11 1 +10024ce5 Unwind@10024ce5 undefined Unwind@10024ce5(void) 11 1 +10024cf0 Unwind@10024cf0 undefined Unwind@10024cf0(void) 11 1 +10024cfb Unwind@10024cfb undefined Unwind@10024cfb(void) 11 1 +10024d06 Unwind@10024d06 undefined Unwind@10024d06(void) 14 1 +10024d14 Unwind@10024d14 undefined Unwind@10024d14(void) 14 1 +10024d22 Unwind@10024d22 undefined Unwind@10024d22(void) 14 1 +10024d30 Unwind@10024d30 undefined Unwind@10024d30(void) 24 1 +10024d48 Unwind@10024d48 undefined Unwind@10024d48(void) 24 1 +10024d60 Unwind@10024d60 undefined Unwind@10024d60(void) 24 1 +10024d78 Unwind@10024d78 undefined Unwind@10024d78(void) 14 1 +10024d86 Unwind@10024d86 undefined Unwind@10024d86(void) 14 1 +10024d94 Unwind@10024d94 undefined Unwind@10024d94(void) 14 1 +10024da2 Unwind@10024da2 undefined Unwind@10024da2(void) 14 1 +10024db0 Unwind@10024db0 undefined Unwind@10024db0(void) 14 1 +10024dbe Unwind@10024dbe undefined Unwind@10024dbe(void) 14 1 +10024dcc Unwind@10024dcc undefined Unwind@10024dcc(void) 14 1 +10024dda Unwind@10024dda undefined Unwind@10024dda(void) 14 1 +10024de8 Unwind@10024de8 undefined Unwind@10024de8(void) 14 1 +10024df6 Unwind@10024df6 undefined Unwind@10024df6(void) 14 1 +10024e04 Unwind@10024e04 undefined Unwind@10024e04(void) 14 1 +10024e12 Unwind@10024e12 undefined Unwind@10024e12(void) 14 1 +10024e20 Unwind@10024e20 undefined Unwind@10024e20(void) 8 1 +10024e28 Unwind@10024e28 undefined Unwind@10024e28(void) 8 1 +10024e30 Unwind@10024e30 undefined Unwind@10024e30(void) 8 1 +10024e38 Unwind@10024e38 undefined Unwind@10024e38(void) 8 1 +10024e40 Unwind@10024e40 undefined Unwind@10024e40(void) 8 1 +10024e48 Unwind@10024e48 undefined Unwind@10024e48(void) 8 1 +10024e50 Unwind@10024e50 undefined Unwind@10024e50(void) 8 1 +10024e58 Unwind@10024e58 undefined Unwind@10024e58(void) 8 1 +10024e60 Unwind@10024e60 undefined Unwind@10024e60(void) 11 1 +10024e6b Unwind@10024e6b undefined Unwind@10024e6b(void) 11 1 +10024e76 Unwind@10024e76 undefined Unwind@10024e76(void) 11 1 +10024e81 Unwind@10024e81 undefined Unwind@10024e81(void) 11 1 +10024e8c Unwind@10024e8c undefined Unwind@10024e8c(void) 8 1 +10024e94 Unwind@10024e94 undefined Unwind@10024e94(void) 8 1 +10024e9c Unwind@10024e9c undefined Unwind@10024e9c(void) 8 1 +10024ea4 Unwind@10024ea4 undefined Unwind@10024ea4(void) 8 1 +10024eac Unwind@10024eac undefined Unwind@10024eac(void) 8 1 +10024eb4 Unwind@10024eb4 undefined Unwind@10024eb4(void) 8 1 +10024ed7 Unwind@10024ed7 undefined Unwind@10024ed7(void) 8 1 +10024edf Unwind@10024edf undefined Unwind@10024edf(void) 8 1 +10024ee7 Unwind@10024ee7 undefined Unwind@10024ee7(void) 8 1 +10024eef Unwind@10024eef undefined Unwind@10024eef(void) 8 1 +10024ef7 Unwind@10024ef7 undefined Unwind@10024ef7(void) 8 1 +10024eff Unwind@10024eff undefined Unwind@10024eff(void) 8 1 +10024f07 Unwind@10024f07 undefined Unwind@10024f07(void) 8 1 +10024f0f Unwind@10024f0f undefined Unwind@10024f0f(void) 8 1 +10024f32 Unwind@10024f32 undefined Unwind@10024f32(void) 11 1 +10024f3d Unwind@10024f3d undefined Unwind@10024f3d(void) 11 1 +10024f48 Unwind@10024f48 undefined Unwind@10024f48(void) 11 1 +10024f53 Unwind@10024f53 undefined Unwind@10024f53(void) 11 1 +10024f5e Unwind@10024f5e undefined Unwind@10024f5e(void) 11 1 +10024f69 Unwind@10024f69 undefined Unwind@10024f69(void) 11 1 +10024f74 Unwind@10024f74 undefined Unwind@10024f74(void) 11 1 +10024f7f Unwind@10024f7f undefined Unwind@10024f7f(void) 11 1 +10024f8a Unwind@10024f8a undefined Unwind@10024f8a(void) 11 1 +10024f95 Unwind@10024f95 undefined Unwind@10024f95(void) 11 1 +10024fc8 Unwind@10024fc8 undefined Unwind@10024fc8(void) 8 1 +10024fd0 Unwind@10024fd0 undefined Unwind@10024fd0(void) 8 1 +10024ff3 Unwind@10024ff3 undefined Unwind@10024ff3(void) 11 1 +10024ffe Unwind@10024ffe undefined Unwind@10024ffe(void) 11 1 +10025009 Unwind@10025009 undefined Unwind@10025009(void) 11 1 +10025014 Unwind@10025014 undefined Unwind@10025014(void) 11 1 +1002501f Unwind@1002501f undefined Unwind@1002501f(void) 11 1 +1002502a Unwind@1002502a undefined Unwind@1002502a(void) 14 1 +10025038 Unwind@10025038 undefined Unwind@10025038(void) 14 1 +10025046 Unwind@10025046 undefined Unwind@10025046(void) 14 1 +10025054 Unwind@10025054 undefined Unwind@10025054(void) 24 1 +1002506c Unwind@1002506c undefined Unwind@1002506c(void) 24 1 +10025084 Unwind@10025084 undefined Unwind@10025084(void) 24 1 +1002509c Unwind@1002509c undefined Unwind@1002509c(void) 14 1 +100250aa Unwind@100250aa undefined Unwind@100250aa(void) 14 1 +100250b8 Unwind@100250b8 undefined Unwind@100250b8(void) 14 1 +100250c6 Unwind@100250c6 undefined Unwind@100250c6(void) 14 1 +100250d4 Unwind@100250d4 undefined Unwind@100250d4(void) 14 1 +100250e2 Unwind@100250e2 undefined Unwind@100250e2(void) 14 1 +100250f0 Unwind@100250f0 undefined Unwind@100250f0(void) 14 1 +100250fe Unwind@100250fe undefined Unwind@100250fe(void) 14 1 +1002510c Unwind@1002510c undefined Unwind@1002510c(void) 14 1 +1002511a Unwind@1002511a undefined Unwind@1002511a(void) 14 1 +10025128 Unwind@10025128 undefined Unwind@10025128(void) 8 1 +10025130 Unwind@10025130 undefined Unwind@10025130(void) 8 1 +10025138 Unwind@10025138 undefined Unwind@10025138(void) 14 1 +10025146 Unwind@10025146 undefined Unwind@10025146(void) 8 1 +1002514e Unwind@1002514e undefined Unwind@1002514e(void) 14 1 +10025177 Unwind@10025177 undefined Unwind@10025177(void) 8 1 +1002519a Unwind@1002519a undefined Unwind@1002519a(void) 8 1 +100251bd Unwind@100251bd undefined Unwind@100251bd(void) 8 1 +100251e0 Unwind@100251e0 undefined Unwind@100251e0(void) 8 1 +10025203 Unwind@10025203 undefined Unwind@10025203(void) 11 1 +10025229 Unwind@10025229 undefined Unwind@10025229(void) 8 1 +1002524c Unwind@1002524c undefined Unwind@1002524c(void) 8 1 +1002526f Unwind@1002526f undefined Unwind@1002526f(void) 8 1 +10025292 Unwind@10025292 undefined Unwind@10025292(void) 8 1 +100252b5 Unwind@100252b5 undefined Unwind@100252b5(void) 8 1 +100252d8 Unwind@100252d8 undefined Unwind@100252d8(void) 8 1 +100252fb Unwind@100252fb undefined Unwind@100252fb(void) 8 1 +1002531e Unwind@1002531e undefined Unwind@1002531e(void) 8 1 +10025341 Unwind@10025341 undefined Unwind@10025341(void) 8 1 +10025364 Unwind@10025364 undefined Unwind@10025364(void) 8 1 +10025387 Unwind@10025387 undefined Unwind@10025387(void) 11 1 +100253ad Unwind@100253ad undefined Unwind@100253ad(void) 8 1 +100253d0 Unwind@100253d0 undefined Unwind@100253d0(void) 8 1 +100253f3 Unwind@100253f3 undefined Unwind@100253f3(void) 8 1 +10025416 Unwind@10025416 undefined Unwind@10025416(void) 8 1 +10025439 Unwind@10025439 undefined Unwind@10025439(void) 8 1 +1002545c Unwind@1002545c undefined Unwind@1002545c(void) 8 1 +1002547f Unwind@1002547f undefined Unwind@1002547f(void) 8 1 +100254a2 Unwind@100254a2 undefined Unwind@100254a2(void) 8 1 +100254c5 Unwind@100254c5 undefined Unwind@100254c5(void) 8 1 +100254e8 Unwind@100254e8 undefined Unwind@100254e8(void) 8 1 +100254f0 Unwind@100254f0 undefined Unwind@100254f0(void) 11 1 +10025516 Unwind@10025516 undefined Unwind@10025516(void) 8 1 +1002551e Unwind@1002551e undefined Unwind@1002551e(void) 11 1 +10025544 Unwind@10025544 undefined Unwind@10025544(void) 8 1 +1002554c Unwind@1002554c undefined Unwind@1002554c(void) 11 1 +10025572 Unwind@10025572 undefined Unwind@10025572(void) 8 1 +1002557a Unwind@1002557a undefined Unwind@1002557a(void) 11 1 +100255a0 Unwind@100255a0 undefined Unwind@100255a0(void) 8 1 +100255a8 Unwind@100255a8 undefined Unwind@100255a8(void) 11 1 +100255ce Unwind@100255ce undefined Unwind@100255ce(void) 8 1 +100255d6 Unwind@100255d6 undefined Unwind@100255d6(void) 11 1 +100255fc Unwind@100255fc undefined Unwind@100255fc(void) 8 1 +10025604 Unwind@10025604 undefined Unwind@10025604(void) 11 1 +1002562a Unwind@1002562a undefined Unwind@1002562a(void) 8 1 +10025632 Unwind@10025632 undefined Unwind@10025632(void) 11 1 +10025658 Unwind@10025658 undefined Unwind@10025658(void) 8 1 +10025660 Unwind@10025660 undefined Unwind@10025660(void) 11 1 +10025686 Unwind@10025686 undefined Unwind@10025686(void) 8 1 +1002568e Unwind@1002568e undefined Unwind@1002568e(void) 11 1 +100256b4 Unwind@100256b4 undefined Unwind@100256b4(void) 8 1 +100256bc Unwind@100256bc undefined Unwind@100256bc(void) 11 1 +100256e2 Unwind@100256e2 undefined Unwind@100256e2(void) 8 1 +100256ea Unwind@100256ea undefined Unwind@100256ea(void) 11 1 +10025710 Unwind@10025710 undefined Unwind@10025710(void) 8 1 +10025718 Unwind@10025718 undefined Unwind@10025718(void) 8 1 +10025720 Unwind@10025720 undefined Unwind@10025720(void) 11 1 +10025746 Unwind@10025746 undefined Unwind@10025746(void) 8 1 +1002574e Unwind@1002574e undefined Unwind@1002574e(void) 11 1 +10025759 Unwind@10025759 undefined Unwind@10025759(void) 8 1 +1002577c Unwind@1002577c undefined Unwind@1002577c(void) 8 1 +10025784 Unwind@10025784 undefined Unwind@10025784(void) 8 1 +1002578c Unwind@1002578c undefined Unwind@1002578c(void) 11 1 +100257b2 Unwind@100257b2 undefined Unwind@100257b2(void) 8 1 +100257ba Unwind@100257ba undefined Unwind@100257ba(void) 11 1 +100257c5 Unwind@100257c5 undefined Unwind@100257c5(void) 8 1 +100257e8 Unwind@100257e8 undefined Unwind@100257e8(void) 8 1 +100257f0 Unwind@100257f0 undefined Unwind@100257f0(void) 8 1 +100257f8 Unwind@100257f8 undefined Unwind@100257f8(void) 11 1 +1002581e Unwind@1002581e undefined Unwind@1002581e(void) 8 1 +10025826 Unwind@10025826 undefined Unwind@10025826(void) 11 1 +10025831 Unwind@10025831 undefined Unwind@10025831(void) 8 1 +10025854 Unwind@10025854 undefined Unwind@10025854(void) 8 1 +10025877 Unwind@10025877 undefined Unwind@10025877(void) 8 1 +1002589a Unwind@1002589a undefined Unwind@1002589a(void) 8 1 +100258bd Unwind@100258bd undefined Unwind@100258bd(void) 8 1 +100258e0 Unwind@100258e0 undefined Unwind@100258e0(void) 8 1 +10025903 Unwind@10025903 undefined Unwind@10025903(void) 8 1 +10025926 Unwind@10025926 undefined Unwind@10025926(void) 8 1 +10025949 Unwind@10025949 undefined Unwind@10025949(void) 8 1 +1002596c Unwind@1002596c undefined Unwind@1002596c(void) 8 1 +1002598f Unwind@1002598f undefined Unwind@1002598f(void) 8 1 +10025997 Unwind@10025997 undefined Unwind@10025997(void) 11 1 +100259bd Unwind@100259bd undefined Unwind@100259bd(void) 8 1 +100259c5 Unwind@100259c5 undefined Unwind@100259c5(void) 11 1 +100259eb Unwind@100259eb undefined Unwind@100259eb(void) 8 1 +100259f3 Unwind@100259f3 undefined Unwind@100259f3(void) 11 1 +10025a19 Unwind@10025a19 undefined Unwind@10025a19(void) 8 1 +10025a21 Unwind@10025a21 undefined Unwind@10025a21(void) 11 1 +10025a47 Unwind@10025a47 undefined Unwind@10025a47(void) 8 1 +10025a4f Unwind@10025a4f undefined Unwind@10025a4f(void) 11 1 +10025a75 Unwind@10025a75 undefined Unwind@10025a75(void) 8 1 +10025a7d Unwind@10025a7d undefined Unwind@10025a7d(void) 11 1 +10025aa3 Unwind@10025aa3 undefined Unwind@10025aa3(void) 8 1 +10025aab Unwind@10025aab undefined Unwind@10025aab(void) 11 1 +10025ad1 Unwind@10025ad1 undefined Unwind@10025ad1(void) 8 1 +10025ad9 Unwind@10025ad9 undefined Unwind@10025ad9(void) 11 1 +10025aff Unwind@10025aff undefined Unwind@10025aff(void) 8 1 +10025b07 Unwind@10025b07 undefined Unwind@10025b07(void) 11 1 +10025b2d Unwind@10025b2d undefined Unwind@10025b2d(void) 8 1 +10025b35 Unwind@10025b35 undefined Unwind@10025b35(void) 11 1 +10025b5b Unwind@10025b5b undefined Unwind@10025b5b(void) 8 1 +10025b63 Unwind@10025b63 undefined Unwind@10025b63(void) 11 1 +10025b89 Unwind@10025b89 undefined Unwind@10025b89(void) 8 1 +10025b91 Unwind@10025b91 undefined Unwind@10025b91(void) 11 1 +10025bb7 Unwind@10025bb7 undefined Unwind@10025bb7(void) 8 1 +10025bbf Unwind@10025bbf undefined Unwind@10025bbf(void) 8 1 +10025bc7 Unwind@10025bc7 undefined Unwind@10025bc7(void) 11 1 +10025bed Unwind@10025bed undefined Unwind@10025bed(void) 8 1 +10025bf5 Unwind@10025bf5 undefined Unwind@10025bf5(void) 11 1 +10025c00 Unwind@10025c00 undefined Unwind@10025c00(void) 8 1 +10025c23 Unwind@10025c23 undefined Unwind@10025c23(void) 8 1 +10025c2b Unwind@10025c2b undefined Unwind@10025c2b(void) 8 1 +10025c33 Unwind@10025c33 undefined Unwind@10025c33(void) 11 1 +10025c59 Unwind@10025c59 undefined Unwind@10025c59(void) 8 1 +10025c61 Unwind@10025c61 undefined Unwind@10025c61(void) 11 1 +10025c6c Unwind@10025c6c undefined Unwind@10025c6c(void) 8 1 +10025c8f Unwind@10025c8f undefined Unwind@10025c8f(void) 8 1 +10025c97 Unwind@10025c97 undefined Unwind@10025c97(void) 8 1 +10025c9f Unwind@10025c9f undefined Unwind@10025c9f(void) 11 1 +10025cc5 Unwind@10025cc5 undefined Unwind@10025cc5(void) 8 1 +10025ccd Unwind@10025ccd undefined Unwind@10025ccd(void) 11 1 +10025cd8 Unwind@10025cd8 undefined Unwind@10025cd8(void) 8 1 +10025cfb Unwind@10025cfb undefined Unwind@10025cfb(void) 11 1 +10025d06 Unwind@10025d06 undefined Unwind@10025d06(void) 11 1 +10025d2c Unwind@10025d2c undefined Unwind@10025d2c(void) 8 1 +10025d34 Unwind@10025d34 undefined Unwind@10025d34(void) 8 1 +10025d3c Unwind@10025d3c undefined Unwind@10025d3c(void) 8 1 +10025d44 Unwind@10025d44 undefined Unwind@10025d44(void) 8 1 +10025d4c Unwind@10025d4c undefined Unwind@10025d4c(void) 8 1 +10025d6f Unwind@10025d6f undefined Unwind@10025d6f(void) 8 1 +10025d77 Unwind@10025d77 undefined Unwind@10025d77(void) 8 1 +10025d9a Unwind@10025d9a undefined Unwind@10025d9a(void) 8 1 +10025da2 Unwind@10025da2 undefined Unwind@10025da2(void) 8 1 +10025dc5 Unwind@10025dc5 undefined Unwind@10025dc5(void) 8 1 +10025dcd Unwind@10025dcd undefined Unwind@10025dcd(void) 8 1 +10025df0 Unwind@10025df0 undefined Unwind@10025df0(void) 8 1 +10025df8 Unwind@10025df8 undefined Unwind@10025df8(void) 8 1 +10025e00 Unwind@10025e00 undefined Unwind@10025e00(void) 8 1 +10025e08 Unwind@10025e08 undefined Unwind@10025e08(void) 8 1 +10025e10 Unwind@10025e10 undefined Unwind@10025e10(void) 8 1 +10025e33 Unwind@10025e33 undefined Unwind@10025e33(void) 11 1 +10025e3e Unwind@10025e3e undefined Unwind@10025e3e(void) 11 1 +10025e49 Unwind@10025e49 undefined Unwind@10025e49(void) 11 1 +10025e54 Unwind@10025e54 undefined Unwind@10025e54(void) 11 1 +10025e5f Unwind@10025e5f undefined Unwind@10025e5f(void) 11 1 +10025e6a Unwind@10025e6a undefined Unwind@10025e6a(void) 11 1 +10025e9d Unwind@10025e9d undefined Unwind@10025e9d(void) 8 1 +10025ec0 Unwind@10025ec0 undefined Unwind@10025ec0(void) 11 1 +10025ecb Unwind@10025ecb undefined Unwind@10025ecb(void) 11 1 +10025ef1 Unwind@10025ef1 undefined Unwind@10025ef1(void) 13 1 +10025efe Unwind@10025efe undefined Unwind@10025efe(void) 11 1 +10025f09 Unwind@10025f09 undefined Unwind@10025f09(void) 13 1 +10025f16 Unwind@10025f16 undefined Unwind@10025f16(void) 11 1 +10025f21 Unwind@10025f21 undefined Unwind@10025f21(void) 13 1 +10025f2e Unwind@10025f2e undefined Unwind@10025f2e(void) 11 1 +10025f39 Unwind@10025f39 undefined Unwind@10025f39(void) 13 1 +10025f46 Unwind@10025f46 undefined Unwind@10025f46(void) 13 1 +10025f53 Unwind@10025f53 undefined Unwind@10025f53(void) 13 1 +10025f60 Unwind@10025f60 undefined Unwind@10025f60(void) 13 1 +10025f6d Unwind@10025f6d undefined Unwind@10025f6d(void) 13 1 +10025f7a Unwind@10025f7a undefined Unwind@10025f7a(void) 13 1 +10025f87 Unwind@10025f87 undefined Unwind@10025f87(void) 13 1 +10025f94 Unwind@10025f94 undefined Unwind@10025f94(void) 13 1 +10025fa1 Unwind@10025fa1 undefined Unwind@10025fa1(void) 13 1 +10025fd6 Unwind@10025fd6 undefined Unwind@10025fd6(void) 13 1 +10025fe3 Unwind@10025fe3 undefined Unwind@10025fe3(void) 11 1 +10025fee Unwind@10025fee undefined Unwind@10025fee(void) 13 1 +10025ffb Unwind@10025ffb undefined Unwind@10025ffb(void) 11 1 +10026006 Unwind@10026006 undefined Unwind@10026006(void) 13 1 +10026013 Unwind@10026013 undefined Unwind@10026013(void) 11 1 +1002601e Unwind@1002601e undefined Unwind@1002601e(void) 13 1 +1002602b Unwind@1002602b undefined Unwind@1002602b(void) 13 1 +10026038 Unwind@10026038 undefined Unwind@10026038(void) 13 1 +10026045 Unwind@10026045 undefined Unwind@10026045(void) 13 1 +10026052 Unwind@10026052 undefined Unwind@10026052(void) 13 1 +1002605f Unwind@1002605f undefined Unwind@1002605f(void) 13 1 +1002606c Unwind@1002606c undefined Unwind@1002606c(void) 13 1 +10026079 Unwind@10026079 undefined Unwind@10026079(void) 13 1 +10026086 Unwind@10026086 undefined Unwind@10026086(void) 13 1 +10026093 Unwind@10026093 undefined Unwind@10026093(void) 13 1 +100260c8 Unwind@100260c8 undefined Unwind@100260c8(void) 8 1 +100260eb Unwind@100260eb undefined Unwind@100260eb(void) 8 1 +10026144 Unwind@10026144 undefined Unwind@10026144(void) 8 1 +10026167 Unwind@10026167 undefined Unwind@10026167(void) 10 1 +1002618c Unwind@1002618c undefined Unwind@1002618c(void) 10 1 +10026196 Unwind@10026196 undefined Unwind@10026196(void) 10 1 +100261bb Unwind@100261bb undefined Unwind@100261bb(void) 8 1 +100261de Unwind@100261de undefined Unwind@100261de(void) 8 1 +10026201 Unwind@10026201 undefined Unwind@10026201(void) 8 1 +10026209 Unwind@10026209 undefined Unwind@10026209(void) 10 1 +10026213 Unwind@10026213 undefined Unwind@10026213(void) 8 1 +1002621b Unwind@1002621b undefined Unwind@1002621b(void) 8 1 +10026223 Unwind@10026223 undefined Unwind@10026223(void) 8 1 +1002622b Unwind@1002622b undefined Unwind@1002622b(void) 8 1 +1002624e Unwind@1002624e undefined Unwind@1002624e(void) 8 1 +10026256 Unwind@10026256 undefined Unwind@10026256(void) 8 1 +1002625e Unwind@1002625e undefined Unwind@1002625e(void) 8 1 +10026266 Unwind@10026266 undefined Unwind@10026266(void) 8 1 +1002626e Unwind@1002626e undefined Unwind@1002626e(void) 8 1 +10026291 Unwind@10026291 undefined Unwind@10026291(void) 8 1 +10026299 Unwind@10026299 undefined Unwind@10026299(void) 8 1 +100262a1 Unwind@100262a1 undefined Unwind@100262a1(void) 8 1 +100262a9 Unwind@100262a9 undefined Unwind@100262a9(void) 8 1 +100262b1 Unwind@100262b1 undefined Unwind@100262b1(void) 8 1 +100262d4 Unwind@100262d4 undefined Unwind@100262d4(void) 8 1 +100262f7 Unwind@100262f7 undefined Unwind@100262f7(void) 8 1 +10026366 FUN_10026366 undefined FUN_10026366(void) 42 3 +10026390 FUN_10026390 undefined FUN_10026390(void) 10 1 +1002639a FUN_1002639a undefined FUN_1002639a(void) 10 1 diff --git a/analysis/ghidra/exports/NmxAdptr.dll.ghidra.md b/analysis/ghidra/exports/NmxAdptr.dll.ghidra.md new file mode 100644 index 0000000..dc59d59 --- /dev/null +++ b/analysis/ghidra/exports/NmxAdptr.dll.ghidra.md @@ -0,0 +1,1765 @@ +# NmxAdptr.dll + +## Program + +- Language: `x86:LE:32:default` +- Compiler spec: `windows` +- Image base: `10000000` +- Executable format: `Portable Executable (PE)` + +## Memory Blocks + +| Name | Start | End | Size | R | W | X | +| --- | ---: | ---: | ---: | :---: | :---: | :---: | +| `Headers` | `10000000` | `100003ff` | 1024 | Y | | | +| `.text` | `10001000` | `100263ff` | 152576 | Y | | Y | +| `.rdata` | `10027000` | `1003a1ff` | 78336 | Y | | | +| `.data` | `1003b000` | `1003c6c7` | 5832 | Y | Y | | +| `.rsrc` | `1003d000` | `100585ff` | 112128 | Y | | | +| `.reloc` | `10059000` | `1005c5ff` | 13824 | Y | | | +| `tdb` | `ffdff000` | `ffdfffff` | 4096 | Y | Y | | + +## External Imports + +- `ADVAPI32.DLL::InitializeSecurityDescriptor` +- `ADVAPI32.DLL::RegCloseKey` +- `ADVAPI32.DLL::RegOpenKeyExW` +- `ADVAPI32.DLL::RegQueryValueExW` +- `ADVAPI32.DLL::RegSetValueExW` +- `ADVAPI32.DLL::SetSecurityDescriptorDacl` +- `ATL100.DLL::AtlCallTermFunc` +- `ATL100.DLL::AtlComModuleGetClassObject` +- `ATL100.DLL::AtlComPtrAssign` +- `ATL100.DLL::AtlCreateRegistrar` +- `ATL100.DLL::AtlGetPerUserRegistration` +- `ATL100.DLL::AtlInternalQueryInterface` +- `ATL100.DLL::AtlLoadTypeLib` +- `ATL100.DLL::AtlRegisterClassCategoriesHelper` +- `ATL100.DLL::AtlUpdateRegistryFromResourceD` +- `DBGHELP.DLL::MiniDumpWriteDump` +- `KERNEL32.DLL::CloseHandle` +- `KERNEL32.DLL::CreateDirectoryW` +- `KERNEL32.DLL::CreateEventW` +- `KERNEL32.DLL::CreateFileA` +- `KERNEL32.DLL::CreateFileMappingW` +- `KERNEL32.DLL::CreateFileW` +- `KERNEL32.DLL::CreateMutexW` +- `KERNEL32.DLL::CreateThread` +- `KERNEL32.DLL::DecodePointer` +- `KERNEL32.DLL::DeleteCriticalSection` +- `KERNEL32.DLL::DeleteFileW` +- `KERNEL32.DLL::DisableThreadLibraryCalls` +- `KERNEL32.DLL::EncodePointer` +- `KERNEL32.DLL::EnterCriticalSection` +- `KERNEL32.DLL::FindClose` +- `KERNEL32.DLL::FindFirstFileW` +- `KERNEL32.DLL::FindNextFileW` +- `KERNEL32.DLL::FlushFileBuffers` +- `KERNEL32.DLL::FormatMessageW` +- `KERNEL32.DLL::FreeLibrary` +- `KERNEL32.DLL::GetComputerNameW` +- `KERNEL32.DLL::GetCurrentProcess` +- `KERNEL32.DLL::GetCurrentProcessId` +- `KERNEL32.DLL::GetCurrentThreadId` +- `KERNEL32.DLL::GetFileAttributesW` +- `KERNEL32.DLL::GetLastError` +- `KERNEL32.DLL::GetLocalTime` +- `KERNEL32.DLL::GetModuleFileNameA` +- `KERNEL32.DLL::GetModuleFileNameW` +- `KERNEL32.DLL::GetModuleHandleW` +- `KERNEL32.DLL::GetPrivateProfileIntA` +- `KERNEL32.DLL::GetPrivateProfileStringA` +- `KERNEL32.DLL::GetProcAddress` +- `KERNEL32.DLL::GetProcessHeap` +- `KERNEL32.DLL::GetSystemDirectoryW` +- `KERNEL32.DLL::GetSystemTimeAsFileTime` +- `KERNEL32.DLL::GetTickCount` +- `KERNEL32.DLL::GetWindowsDirectoryW` +- `KERNEL32.DLL::HeapAlloc` +- `KERNEL32.DLL::HeapFree` +- `KERNEL32.DLL::InitializeCriticalSectionAndSpinCount` +- `KERNEL32.DLL::InterlockedCompareExchange` +- `KERNEL32.DLL::InterlockedDecrement` +- `KERNEL32.DLL::InterlockedExchange` +- `KERNEL32.DLL::InterlockedIncrement` +- `KERNEL32.DLL::IsDebuggerPresent` +- `KERNEL32.DLL::LeaveCriticalSection` +- `KERNEL32.DLL::LoadLibraryExW` +- `KERNEL32.DLL::LocalAlloc` +- `KERNEL32.DLL::LocalFree` +- `KERNEL32.DLL::MapViewOfFile` +- `KERNEL32.DLL::MultiByteToWideChar` +- `KERNEL32.DLL::OpenFileMappingW` +- `KERNEL32.DLL::OutputDebugStringA` +- `KERNEL32.DLL::OutputDebugStringW` +- `KERNEL32.DLL::QueryPerformanceCounter` +- `KERNEL32.DLL::RaiseException` +- `KERNEL32.DLL::ReleaseMutex` +- `KERNEL32.DLL::SetEvent` +- `KERNEL32.DLL::SetFilePointer` +- `KERNEL32.DLL::SetUnhandledExceptionFilter` +- `KERNEL32.DLL::Sleep` +- `KERNEL32.DLL::TerminateProcess` +- `KERNEL32.DLL::TerminateThread` +- `KERNEL32.DLL::UnhandledExceptionFilter` +- `KERNEL32.DLL::UnmapViewOfFile` +- `KERNEL32.DLL::WaitForMultipleObjects` +- `KERNEL32.DLL::WaitForSingleObject` +- `KERNEL32.DLL::WideCharToMultiByte` +- `KERNEL32.DLL::WriteFile` +- `KERNEL32.DLL::lstrlenA` +- `KERNEL32.DLL::lstrlenW` +- `MSVCP100.DLL::std::_BADOFF` +- `MSVCP100.DLL::std::_Container_base0::_Orphan_all` +- `MSVCP100.DLL::std::_Xlength_error` +- `MSVCP100.DLL::std::_Xout_of_range` +- `MSVCP100.DLL::std::basic_ios_>::basic_ios_>` +- `MSVCP100.DLL::std::basic_ios_>::fill` +- `MSVCP100.DLL::std::basic_ios_>::rdbuf` +- `MSVCP100.DLL::std::basic_ios_>::setstate` +- `MSVCP100.DLL::std::basic_ios_>::tie` +- `MSVCP100.DLL::std::basic_ios_>::~basic_ios_>` +- `MSVCP100.DLL::std::basic_iostream_>::basic_iostream_>` +- `MSVCP100.DLL::std::basic_iostream_>::~basic_iostream_>` +- `MSVCP100.DLL::std::basic_ostream_>::_Osfx` +- `MSVCP100.DLL::std::basic_ostream_>::flush` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_streambuf_>::_Lock` +- `MSVCP100.DLL::std::basic_streambuf_>::_Pninc` +- `MSVCP100.DLL::std::basic_streambuf_>::_Unlock` +- `MSVCP100.DLL::std::basic_streambuf_>::basic_streambuf_>` +- `MSVCP100.DLL::std::basic_streambuf_>::eback` +- `MSVCP100.DLL::std::basic_streambuf_>::egptr` +- `MSVCP100.DLL::std::basic_streambuf_>::epptr` +- `MSVCP100.DLL::std::basic_streambuf_>::gbump` +- `MSVCP100.DLL::std::basic_streambuf_>::gptr` +- `MSVCP100.DLL::std::basic_streambuf_>::imbue` +- `MSVCP100.DLL::std::basic_streambuf_>::pbase` +- `MSVCP100.DLL::std::basic_streambuf_>::pbump` +- `MSVCP100.DLL::std::basic_streambuf_>::pptr` +- `MSVCP100.DLL::std::basic_streambuf_>::setbuf` +- `MSVCP100.DLL::std::basic_streambuf_>::setg` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::showmanyc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputn` +- `MSVCP100.DLL::std::basic_streambuf_>::sync` +- `MSVCP100.DLL::std::basic_streambuf_>::uflow` +- `MSVCP100.DLL::std::basic_streambuf_>::xsgetn` +- `MSVCP100.DLL::std::basic_streambuf_>::xsputn` +- `MSVCP100.DLL::std::basic_streambuf_>::~basic_streambuf_>` +- `MSVCP100.DLL::std::ends` +- `MSVCP100.DLL::std::ios_base::flags` +- `MSVCP100.DLL::std::ios_base::good` +- `MSVCP100.DLL::std::ios_base::setf` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::uncaught_exception` +- `MSVCR100.DLL::_CxxThrowException` +- `MSVCR100.DLL::__CppXcptFilter` +- `MSVCR100.DLL::__CxxFrameHandler3` +- `MSVCR100.DLL::__clean_type_info_names_internal` +- `MSVCR100.DLL::__dllonexit` +- `MSVCR100.DLL::_amsg_exit` +- `MSVCR100.DLL::_crt_debugger_hook` +- `MSVCR100.DLL::_lock` +- `MSVCR100.DLL::_makepath_s` +- `MSVCR100.DLL::_malloc_crt` +- `MSVCR100.DLL::_onexit` +- `MSVCR100.DLL::_recalloc` +- `MSVCR100.DLL::_set_se_translator` +- `MSVCR100.DLL::_snprintf_s` +- `MSVCR100.DLL::_snwprintf_s` +- `MSVCR100.DLL::_splitpath_s` +- `MSVCR100.DLL::_stricmp` +- `MSVCR100.DLL::_unlock` +- `MSVCR100.DLL::_vsnwprintf_s` +- `MSVCR100.DLL::_wcsicmp` +- `MSVCR100.DLL::_wsplitpath_s` +- `MSVCR100.DLL::calloc` +- `MSVCR100.DLL::encoded_null` +- `MSVCR100.DLL::except_handler4_common` +- `MSVCR100.DLL::fclose` +- `MSVCR100.DLL::fopen_s` +- `MSVCR100.DLL::fprintf` +- `MSVCR100.DLL::free` +- `MSVCR100.DLL::initterm` +- `MSVCR100.DLL::initterm_e` +- `MSVCR100.DLL::malloc` +- `MSVCR100.DLL::memcmp` +- `MSVCR100.DLL::memcpy` +- `MSVCR100.DLL::memcpy_s` +- `MSVCR100.DLL::memmove` +- `MSVCR100.DLL::memmove_s` +- `MSVCR100.DLL::memset` +- `MSVCR100.DLL::operator_delete` +- `MSVCR100.DLL::operator_delete[]` +- `MSVCR100.DLL::operator_new` +- `MSVCR100.DLL::purecall` +- `MSVCR100.DLL::realloc` +- `MSVCR100.DLL::sprintf_s` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::what` +- `MSVCR100.DLL::std::exception::~exception` +- `MSVCR100.DLL::strlen` +- `MSVCR100.DLL::strncpy_s` +- `MSVCR100.DLL::strrchr` +- `MSVCR100.DLL::strstr` +- `MSVCR100.DLL::swprintf_s` +- `MSVCR100.DLL::terminate` +- `MSVCR100.DLL::type_info::_type_info_dtor_internal_method` +- `MSVCR100.DLL::vsprintf_s` +- `MSVCR100.DLL::wcscat_s` +- `MSVCR100.DLL::wcscmp` +- `MSVCR100.DLL::wcscpy_s` +- `MSVCR100.DLL::wcslen` +- `MSVCR100.DLL::wcsncpy_s` +- `MSVCR100.DLL::wcsrchr` +- `OLE32.DLL::CoCreateFreeThreadedMarshaler` +- `OLE32.DLL::CoCreateInstance` +- `OLE32.DLL::CoFileTimeNow` +- `OLE32.DLL::CoInitialize` +- `OLE32.DLL::CoTaskMemAlloc` +- `OLE32.DLL::CoTaskMemFree` +- `OLE32.DLL::CoTaskMemRealloc` +- `OLE32.DLL::CoUninitialize` +- `OLEAUT32.DLL::CreateErrorInfo` +- `OLEAUT32.DLL::GetErrorInfo` +- `OLEAUT32.DLL::RegisterTypeLib` +- `OLEAUT32.DLL::SetErrorInfo` +- `OLEAUT32.DLL::SysAllocString` +- `OLEAUT32.DLL::SysAllocStringByteLen` +- `OLEAUT32.DLL::SysAllocStringLen` +- `OLEAUT32.DLL::SysFreeString` +- `OLEAUT32.DLL::SysStringByteLen` +- `OLEAUT32.DLL::SysStringLen` +- `OLEAUT32.DLL::UnRegisterTypeLib` +- `OLEAUT32.DLL::VarBstrCat` +- `OLEAUT32.DLL::VariantChangeType` +- `OLEAUT32.DLL::VariantClear` +- `OLEAUT32.DLL::VariantInit` +- `SHLWAPI.DLL::PathAppendW` +- `SHLWAPI.DLL::PathRemoveFileSpecW` +- `USER32.DLL::CharNextW` +- `USER32.DLL::InSendMessageEx` +- `USER32.DLL::UnregisterClassW` +- `USER32.DLL::wsprintfA` +- `WS2_32.DLL::WSACleanup` +- `WS2_32.DLL::WSAGetLastError` +- `WS2_32.DLL::WSASocketW` +- `WS2_32.DLL::WSAStartup` +- `WS2_32.DLL::closesocket` +- `WS2_32.DLL::gethostbyname` +- `WS2_32.DLL::inet_addr` +- `WS2_32.DLL::inet_ntoa` +- `WS2_32.DLL::recvfrom` +- `WS2_32.DLL::select` +- `WS2_32.DLL::sendto` +- `WS2_32.DLL::setsockopt` + +## Exports and Globals + +| Name | Address | Function | +| --- | ---: | --- | +| `_IsEqualGUID` | `10001098` | `_IsEqualGUID` | +| `_wmemset` | `1000132d` | `_wmemset` | +| `AtlMultiply<>` | `10001467` | `AtlMultiply<>` | +| `?AtlCrtErrorCheck@ATL@@YAHH@Z` | `100017e9` | `AtlCrtErrorCheck` | +| `?Init@CComCriticalSection@ATL@@QAEJXZ` | `100018a4` | `Init` | +| `?Attach@CComBSTR@ATL@@QAEXPA_W@Z` | `1000196f` | `Attach` | +| `FID_conflict:RegOpenKeyExA` | `10001b48` | `FID_conflict:RegOpenKeyExA` | +| `?RegOpenKeyExW@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PB_WKKPAPAU3@@Z` | `10001b48` | `FID_conflict:RegOpenKeyExA` | +| `?RegOpenKeyExA@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PBDKKPAPAU3@@Z` | `10001b48` | `FID_conflict:RegOpenKeyExA` | +| `?Close@CRegKey@ATL@@QAEJXZ` | `10001beb` | `Close` | +| `Open` | `10001c0b` | `Open` | +| `QueryDWORDValue` | `10001c5a` | `QueryDWORDValue` | +| `?QueryStringValue@CRegKey@ATL@@QAEJPB_WPA_WPAK@Z` | `10001c92` | `QueryStringValue` | +| `SetDWORDValue` | `10001d01` | `SetDWORDValue` | +| `assign` | `10002afa` | `assign` | +| `FID_conflict:_Chassign` | `10003db5` | `FID_conflict:_Chassign` | +| `?_Chassign@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEXII_W@Z` | `10003db5` | `FID_conflict:_Chassign` | +| `?_Chassign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEXIIG@Z` | `10003db5` | `FID_conflict:_Chassign` | +| `FID_conflict:_Inside` | `10003df4` | `FID_conflict:_Inside` | +| `?_Inside@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE_NPBG@Z` | `10003df4` | `FID_conflict:_Inside` | +| `?_Inside@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE_NPB_W@Z` | `10003df4` | `FID_conflict:_Inside` | +| `AtlAdd<>` | `10003f19` | `AtlAdd<>` | +| `?Copy@CComBSTR@ATL@@QBEPA_WXZ` | `1000437f` | `Copy` | +| `??0?$fpos@H@std@@QAE@_J@Z` | `10005a24` | `fpos` | +| `FID_conflict:_Tidy` | `10005ef6` | `FID_conflict:_Tidy` | +| `?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEX_NI@Z` | `10005ef6` | `FID_conflict:_Tidy` | +| `?_Tidy@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEX_NI@Z` | `10005ef6` | `FID_conflict:_Tidy` | +| `?Init@?$CA2WEX@$0IA@@ATL@@AAEXPBDI@Z` | `10005f66` | `Init` | +| `Catch@100061f1` | `100061f1` | `Catch@100061f1` | +| `Catch@1000626d` | `1000626d` | `Catch@1000626d` | +| `Catch@1000642f` | `1000642f` | `Catch@1000642f` | +| `??0CComBSTR@ATL@@QAE@ABV01@@Z` | `100065c9` | `CComBSTR` | +| `Catch@10007857` | `10007857` | `Catch@10007857` | +| `Catch@100078db` | `100078db` | `Catch@100078db` | +| `Catch@1000793c` | `1000793c` | `Catch@1000793c` | +| `~basic_string<>` | `10007cec` | `~basic_string<>` | +| `??0?$CA2WEX@$0IA@@ATL@@QAE@PBD@Z` | `10007f9c` | `CA2WEX<128>` | +| `Catch@10008992` | `10008992` | `Catch@10008992` | +| `Catch@10008a9a` | `10008a9a` | `Catch@10008a9a` | +| `Catch@10008b4d` | `10008b4d` | `Catch@10008b4d` | +| `Catch@10008e80` | `10008e80` | `Catch@10008e80` | +| `Catch@10008ea4` | `10008ea4` | `Catch@10008ea4` | +| `Catch@1000903f` | `1000903f` | `Catch@1000903f` | +| `Catch@10009063` | `10009063` | `Catch@10009063` | +| `Catch@100091aa` | `100091aa` | `Catch@100091aa` | +| `Catch@100091ce` | `100091ce` | `Catch@100091ce` | +| `FID_conflict:assign` | `10009ada` | `FID_conflict:assign` | +| `?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@PBGI@Z` | `10009ada` | `FID_conflict:assign` | +| `?assign@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEAAV12@PB_WI@Z` | `10009ada` | `FID_conflict:assign` | +| `Catch@10009bc3` | `10009bc3` | `Catch@10009bc3` | +| `Catch@10009cb9` | `10009cb9` | `Catch@10009cb9` | +| `Catch@10009d97` | `10009d97` | `Catch@10009d97` | +| `Catch@1000a1fe` | `1000a1fe` | `Catch@1000a1fe` | +| `Catch@1000a46e` | `1000a46e` | `Catch@1000a46e` | +| `Catch@1000acbd` | `1000acbd` | `Catch@1000acbd` | +| `basic_string<>` | `1000ad33` | `basic_string<>` | +| `basic_string<>` | `1000ae2e` | `basic_string<>` | +| `_Uninitialized_move<>` | `1000ae7d` | `_Uninitialized_move<>` | +| `Catch@1000b9d7` | `1000b9d7` | `Catch@1000b9d7` | +| `Catch@1000c626` | `1000c626` | `Catch@1000c626` | +| `Catch@1000c678` | `1000c678` | `Catch@1000c678` | +| `basic_string<>` | `1000c710` | `basic_string<>` | +| `Catch@1000c911` | `1000c911` | `Catch@1000c911` | +| `Catch@1000d75c` | `1000d75c` | `Catch@1000d75c` | +| `Catch@1000e745` | `1000e745` | `Catch@1000e745` | +| `Catch@1000f6fa` | `1000f6fa` | `Catch@1000f6fa` | +| `Catch@1000f75c` | `1000f75c` | `Catch@1000f75c` | +| `Catch@1000f792` | `1000f792` | `Catch@1000f792` | +| `Catch@1000f80d` | `1000f80d` | `Catch@1000f80d` | +| `Catch@1000fa13` | `1000fa13` | `Catch@1000fa13` | +| `Catch@1000fa78` | `1000fa78` | `Catch@1000fa78` | +| `Catch@1000faae` | `1000faae` | `Catch@1000faae` | +| `Catch@1000fb2c` | `1000fb2c` | `Catch@1000fb2c` | +| `Catch@1000fc68` | `1000fc68` | `Catch@1000fc68` | +| `Catch@1000fccd` | `1000fccd` | `Catch@1000fccd` | +| `Catch@1000fd03` | `1000fd03` | `Catch@1000fd03` | +| `Catch@1000fd81` | `1000fd81` | `Catch@1000fd81` | +| `Catch@100101fd` | `100101fd` | `Catch@100101fd` | +| `Catch@10010277` | `10010277` | `Catch@10010277` | +| `Catch@1001028c` | `1001028c` | `Catch@1001028c` | +| `Catch@10010303` | `10010303` | `Catch@10010303` | +| `Catch@100104a6` | `100104a6` | `Catch@100104a6` | +| `Catch@10010520` | `10010520` | `Catch@10010520` | +| `Catch@10010535` | `10010535` | `Catch@10010535` | +| `Catch@100105ac` | `100105ac` | `Catch@100105ac` | +| `Catch@10010634` | `10010634` | `Catch@10010634` | +| `Catch@100106a2` | `100106a2` | `Catch@100106a2` | +| `Catch@100106b7` | `100106b7` | `Catch@100106b7` | +| `Catch@10010733` | `10010733` | `Catch@10010733` | +| `Catch@1001082b` | `1001082b` | `Catch@1001082b` | +| `Catch@10010896` | `10010896` | `Catch@10010896` | +| `Catch@100108cf` | `100108cf` | `Catch@100108cf` | +| `Catch@10010950` | `10010950` | `Catch@10010950` | +| `Catch@10010bd9` | `10010bd9` | `Catch@10010bd9` | +| `Catch@10010c3e` | `10010c3e` | `Catch@10010c3e` | +| `Catch@10010c74` | `10010c74` | `Catch@10010c74` | +| `Catch@10010cf2` | `10010cf2` | `Catch@10010cf2` | +| `Catch@10011822` | `10011822` | `Catch@10011822` | +| `Catch@10011890` | `10011890` | `Catch@10011890` | +| `Catch@100118a5` | `100118a5` | `Catch@100118a5` | +| `Catch@10011921` | `10011921` | `Catch@10011921` | +| `Catch@10011a1c` | `10011a1c` | `Catch@10011a1c` | +| `Catch@10011a8b` | `10011a8b` | `Catch@10011a8b` | +| `Catch@10011aa0` | `10011aa0` | `Catch@10011aa0` | +| `Catch@10011b1d` | `10011b1d` | `Catch@10011b1d` | +| `Catch@10011bf3` | `10011bf3` | `Catch@10011bf3` | +| `Catch@10011c61` | `10011c61` | `Catch@10011c61` | +| `Catch@10011c76` | `10011c76` | `Catch@10011c76` | +| `Catch@10011cf2` | `10011cf2` | `Catch@10011cf2` | +| `Catch@10011e87` | `10011e87` | `Catch@10011e87` | +| `Catch@10011f00` | `10011f00` | `Catch@10011f00` | +| `Catch@10011f33` | `10011f33` | `Catch@10011f33` | +| `Catch@10011fba` | `10011fba` | `Catch@10011fba` | +| `Catch@10012749` | `10012749` | `Catch@10012749` | +| `Catch@100127b8` | `100127b8` | `Catch@100127b8` | +| `Catch@100127cd` | `100127cd` | `Catch@100127cd` | +| `Catch@1001284a` | `1001284a` | `Catch@1001284a` | +| `Catch@10012ee4` | `10012ee4` | `Catch@10012ee4` | +| `Catch@10012f49` | `10012f49` | `Catch@10012f49` | +| `Catch@10012f7f` | `10012f7f` | `Catch@10012f7f` | +| `Catch@10012ffd` | `10012ffd` | `Catch@10012ffd` | +| `Catch@100131d4` | `100131d4` | `Catch@100131d4` | +| `Catch@1001324e` | `1001324e` | `Catch@1001324e` | +| `Catch@10013263` | `10013263` | `Catch@10013263` | +| `Catch@100132da` | `100132da` | `Catch@100132da` | +| `Catch@10013d35` | `10013d35` | `Catch@10013d35` | +| `Catch@10013df5` | `10013df5` | `Catch@10013df5` | +| `Catch@10013e2b` | `10013e2b` | `Catch@10013e2b` | +| `Catch@10013ea9` | `10013ea9` | `Catch@10013ea9` | +| `Catch@100141e7` | `100141e7` | `Catch@100141e7` | +| `Catch@10014255` | `10014255` | `Catch@10014255` | +| `Catch@1001426a` | `1001426a` | `Catch@1001426a` | +| `Catch@100142e6` | `100142e6` | `Catch@100142e6` | +| `Catch@10014674` | `10014674` | `Catch@10014674` | +| `Catch@100146e2` | `100146e2` | `Catch@100146e2` | +| `Catch@100146f7` | `100146f7` | `Catch@100146f7` | +| `Catch@10014773` | `10014773` | `Catch@10014773` | +| `Catch@1001483d` | `1001483d` | `Catch@1001483d` | +| `Catch@100148ab` | `100148ab` | `Catch@100148ab` | +| `Catch@100148c0` | `100148c0` | `Catch@100148c0` | +| `Catch@1001493c` | `1001493c` | `Catch@1001493c` | +| `Catch@10014a12` | `10014a12` | `Catch@10014a12` | +| `Catch@10014e25` | `10014e25` | `Catch@10014e25` | +| `Catch@10015066` | `10015066` | `Catch@10015066` | +| `Catch@1001509f` | `1001509f` | `Catch@1001509f` | +| `Catch@10015121` | `10015121` | `Catch@10015121` | +| `Catch@1001583f` | `1001583f` | `Catch@1001583f` | +| `Catch@100158aa` | `100158aa` | `Catch@100158aa` | +| `Catch@100158bd` | `100158bd` | `Catch@100158bd` | +| `Catch@10015934` | `10015934` | `Catch@10015934` | +| `Catch@10015f2d` | `10015f2d` | `Catch@10015f2d` | +| `Catch@10015fb3` | `10015fb3` | `Catch@10015fb3` | +| `Catch@10015fce` | `10015fce` | `Catch@10015fce` | +| `Catch@1001605f` | `1001605f` | `Catch@1001605f` | +| `Ordinal_1` | `10016d93` | `DllCanUnloadNow` | +| `DllCanUnloadNow` | `10016d93` | `DllCanUnloadNow` | +| `thunk_FUN_1001659c` | `10016e19` | `thunk_FUN_1001659c` | +| `??0?$CComCritSecLock@VCComCriticalSection@ATL@@@ATL@@QAE@AAVCComCriticalSection@1@_N@Z` | `1001bb81` | `CComCritSecLock` | +| `?InlineIsEqualUnknown@ATL@@YGHABU_GUID@@@Z` | `1001bc19` | `InlineIsEqualUnknown` | +| `?Release@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGKXZ` | `1001bd0d` | `Release` | +| `Ordinal_2` | `1001e66a` | `DllGetClassObject` | +| `DllGetClassObject` | `1001e66a` | `DllGetClassObject` | +| `Catch@1001e8cb` | `1001e8cb` | `Catch@1001e8cb` | +| `Catch@1001e975` | `1001e975` | `Catch@1001e975` | +| `Catch@1001ecce` | `1001ecce` | `Catch@1001ecce` | +| `Ordinal_3` | `1001ee73` | `DllRegisterServer` | +| `DllRegisterServer` | `1001ee73` | `DllRegisterServer` | +| `Ordinal_4` | `1001ee82` | `DllUnregisterServer` | +| `DllUnregisterServer` | `1001ee82` | `DllUnregisterServer` | +| `Catch@1001ef33` | `1001ef33` | `Catch@1001ef33` | +| `Catch@1001f04d` | `1001f04d` | `Catch@1001f04d` | +| `Catch@1001f0b7` | `1001f0b7` | `Catch@1001f0b7` | +| `Catch@1001f0cc` | `1001f0cc` | `Catch@1001f0cc` | +| `Catch@1001f146` | `1001f146` | `Catch@1001f146` | +| `Catch@1001f1fd` | `1001f1fd` | `Catch@1001f1fd` | +| `Catch@1001f269` | `1001f269` | `Catch@1001f269` | +| `Catch@1001f27e` | `1001f27e` | `Catch@1001f27e` | +| `Catch@1001f2f8` | `1001f2f8` | `Catch@1001f2f8` | +| `Catch@1001f391` | `1001f391` | `Catch@1001f391` | +| `Catch@1001f3fc` | `1001f3fc` | `Catch@1001f3fc` | +| `Catch@1001f411` | `1001f411` | `Catch@1001f411` | +| `Catch@1001f48a` | `1001f48a` | `Catch@1001f48a` | +| `AtlW2AHelper` | `1001f589` | `AtlW2AHelper` | +| `??A?$CSimpleArray@GV?$CSimpleArrayEqualHelper@G@ATL@@@ATL@@QAEAAGH@Z` | `1001fc54` | `operator[]` | +| `?AtlWinModuleTerm@ATL@@YGJPAU_ATL_WIN_MODULE70@1@PAUHINSTANCE__@@@Z` | `1001fc7e` | `AtlWinModuleTerm` | +| `VarBstrCat` | `1001ff84` | `VarBstrCat` | +| `?memmove_s@Checked@ATL@@YAXPAXIPBXI@Z` | `1002003c` | `memmove_s` | +| `?RemoveAt@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHH@Z` | `1002005d` | `RemoveAt` | +| `?RemoveResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `10020137` | `RemoveResourceInstance` | +| `?GetHInstanceAt@CAtlBaseModule@ATL@@QAEPAUHINSTANCE__@@H@Z` | `100201a0` | `GetHInstanceAt` | +| `?Add@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHABQAUHINSTANCE__@@@Z` | `100201fd` | `Add` | +| `?AddResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `100202b9` | `AddResourceInstance` | +| `_com_issue_errorex` | `100203e0` | `_com_issue_errorex` | +| `?_com_issue_errorex@@YGXJPAUIUnknown@@ABU_GUID@@@Z` | `100203e0` | `_com_issue_errorex` | +| `_com_dispatch_method` | `10020460` | `_com_dispatch_method` | +| `?_com_dispatch_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `10020460` | `_com_dispatch_method` | +| `_com_dispatch_propget` | `100204b0` | `_com_dispatch_propget` | +| `?_com_dispatch_propget@@YGJPAUIDispatch@@JGPAX@Z` | `100204b0` | `_com_dispatch_propget` | +| `_com_dispatch_propput` | `100204e0` | `_com_dispatch_propput` | +| `?_com_dispatch_propput@@YAJPAUIDispatch@@JGZZ` | `100204e0` | `_com_dispatch_propput` | +| `_com_invoke_helper` | `100205b0` | `_com_invoke_helper` | +| `?_com_invoke_helper@@YAJPAUIDispatch@@JGGPAXPBGPADPAPAUIErrorInfo@@@Z` | `100205b0` | `_com_invoke_helper` | +| `_com_dispatch_raw_method` | `10020b80` | `_com_dispatch_raw_method` | +| `?_com_dispatch_raw_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `10020b80` | `_com_dispatch_raw_method` | +| `_com_dispatch_raw_propget` | `10020bd0` | `_com_dispatch_raw_propget` | +| `?_com_dispatch_raw_propget@@YGJPAUIDispatch@@JGPAX@Z` | `10020bd0` | `_com_dispatch_raw_propget` | +| `_com_dispatch_raw_propput` | `10020c00` | `_com_dispatch_raw_propput` | +| `?_com_dispatch_raw_propput@@YAJPAUIDispatch@@JGZZ` | `10020c00` | `_com_dispatch_raw_propput` | +| `_com_handle_excepinfo` | `10020ca0` | `_com_handle_excepinfo` | +| `?_com_handle_excepinfo@@YGJAAUtagEXCEPINFO@@PAPAUIErrorInfo@@@Z` | `10020ca0` | `_com_handle_excepinfo` | +| `_Lock` | `10020de6` | `_Lock` | +| `_Unlock` | `10020dec` | `_Unlock` | +| `showmanyc` | `10020df2` | `showmanyc` | +| `uflow` | `10020df8` | `uflow` | +| `xsgetn` | `10020dfe` | `xsgetn` | +| `xsputn` | `10020e04` | `xsputn` | +| `setbuf` | `10020e0a` | `setbuf` | +| `sync` | `10020e10` | `sync` | +| `imbue` | `10020e16` | `imbue` | +| `operator_delete` | `10020ed6` | `operator_delete` | +| `free` | `10020ee2` | `free` | +| `FID_conflict:\`vector_deleting_destructor'` | `10020ef3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Etype_info@@UAEPAXI@Z` | `10020ef3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_ECDaoRelationFieldInfo@@UAEPAXI@Z` | `10020ef3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Elogic_error@@UAEPAXI@Z` | `10020ef3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@std@@UAEPAXI@Z` | `10020ef3` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@@UAEPAXI@Z` | `10020ef3` | `FID_conflict:\`vector_deleting_destructor'` | +| `memcmp` | `10020f44` | `memcmp` | +| `memcpy` | `10020f56` | `memcpy` | +| `operator_new` | `10020f62` | `operator_new` | +| `__CxxFrameHandler3` | `10020f68` | `__CxxFrameHandler3` | +| `__security_check_cookie` | `10020f6e` | `__security_check_cookie` | +| `@__security_check_cookie@4` | `10020f6e` | `__security_check_cookie` | +| `__EH_prolog3` | `10020f7d` | `__EH_prolog3` | +| `__EH_prolog3_catch` | `10020fb0` | `__EH_prolog3_catch` | +| `__EH_prolog3_GS` | `10020fe8` | `__EH_prolog3_GS` | +| `__EH_prolog3_catch_GS` | `1002101e` | `__EH_prolog3_catch_GS` | +| `__EH_epilog3` | `10021057` | `__EH_epilog3` | +| `_CxxThrowException` | `10021090` | `_CxxThrowException` | +| `memset` | `10021096` | `memset` | +| `operator_delete[]` | `100210a8` | `operator_delete[]` | +| `what` | `100210ba` | `what` | +| `_recalloc` | `100210e4` | `_recalloc` | +| `__alloca_probe` | `10021110` | `__alloca_probe` | +| `__chkstk` | `10021110` | `__alloca_probe` | +| `__onexit` | `1002113b` | `__onexit` | +| `_atexit` | `100211dc` | `_atexit` | +| `__allshr` | `10021200` | `__allshr` | +| `__ArrayUnwind` | `10021233` | `__ArrayUnwind` | +| `?__ArrayUnwind@@YGXPAXIHP6EX0@Z@Z` | `10021233` | `__ArrayUnwind` | +| `\`eh_vector_destructor_iterator'` | `10021291` | `\`eh_vector_destructor_iterator'` | +| `??_M@YGXPAXIHP6EX0@Z@Z` | `10021291` | `\`eh_vector_destructor_iterator'` | +| `\`eh_vector_constructor_iterator'` | `100212f4` | `\`eh_vector_constructor_iterator'` | +| `??_L@YGXPAXIHP6EX0@Z1@Z` | `100212f4` | `\`eh_vector_constructor_iterator'` | +| `\`eh_vector_copy_constructor_iterator'` | `10021359` | `\`eh_vector_copy_constructor_iterator'` | +| `??__C@YGXPAX0IHP6EX00@ZP6EX0@Z@Z` | `10021359` | `\`eh_vector_copy_constructor_iterator'` | +| `purecall` | `100213ce` | `purecall` | +| `strlen` | `100213f2` | `strlen` | +| `__alloca_probe_16` | `10021410` | `__alloca_probe_16` | +| `__alloca_probe_8` | `10021426` | `__alloca_probe_8` | +| `__CRT_INIT@12` | `10021491` | `__CRT_INIT@12` | +| `___DllMainCRTStartup` | `1002169b` | `___DllMainCRTStartup` | +| `entry` | `100217b1` | `entry` | +| `memmove_s` | `100217d4` | `memmove_s` | +| `___report_gsfailure` | `100217ff` | `___report_gsfailure` | +| `_unlock` | `10021906` | `_unlock` | +| `__dllonexit` | `1002190c` | `__dllonexit` | +| `_lock` | `10021912` | `_lock` | +| `__SEH_prolog4` | `10021920` | `__SEH_prolog4` | +| `__SEH_epilog4` | `10021965` | `__SEH_epilog4` | +| `__ValidateImageBase` | `100219f0` | `__ValidateImageBase` | +| `__FindPESection` | `10021a30` | `__FindPESection` | +| `__IsNonwritableInCurrentImage` | `10021a80` | `__IsNonwritableInCurrentImage` | +| `initterm` | `10021b3c` | `initterm` | +| `initterm_e` | `10021b42` | `initterm_e` | +| `_amsg_exit` | `10021b48` | `_amsg_exit` | +| `___security_init_cookie` | `10021b54` | `___security_init_cookie` | +| `except_handler4_common` | `10021bf0` | `except_handler4_common` | +| `_type_info_dtor_internal_method` | `10021bf6` | `_type_info_dtor_internal_method` | +| `_crt_debugger_hook` | `10021bfc` | `_crt_debugger_hook` | +| `Unwind@10021c5c` | `10021c5c` | `Unwind@10021c5c` | +| `Unwind@10021c81` | `10021c81` | `Unwind@10021c81` | +| `Unwind@10021c89` | `10021c89` | `Unwind@10021c89` | +| `Unwind@10021cac` | `10021cac` | `Unwind@10021cac` | +| `Unwind@10021cd0` | `10021cd0` | `Unwind@10021cd0` | +| `Unwind@10021cf4` | `10021cf4` | `Unwind@10021cf4` | +| `Unwind@10021d18` | `10021d18` | `Unwind@10021d18` | +| `Unwind@10021d3c` | `10021d3c` | `Unwind@10021d3c` | +| `Unwind@10021d60` | `10021d60` | `Unwind@10021d60` | +| `Unwind@10021d84` | `10021d84` | `Unwind@10021d84` | +| `Unwind@10021da8` | `10021da8` | `Unwind@10021da8` | +| `Unwind@10021dcc` | `10021dcc` | `Unwind@10021dcc` | +| `Unwind@10021df0` | `10021df0` | `Unwind@10021df0` | +| `Unwind@10021e14` | `10021e14` | `Unwind@10021e14` | +| `Unwind@10021e38` | `10021e38` | `Unwind@10021e38` | +| `Unwind@10021e5c` | `10021e5c` | `Unwind@10021e5c` | +| `Unwind@10021e80` | `10021e80` | `Unwind@10021e80` | +| `Unwind@10021ea4` | `10021ea4` | `Unwind@10021ea4` | +| `Unwind@10021ecd` | `10021ecd` | `Unwind@10021ecd` | +| `Unwind@10021ef6` | `10021ef6` | `Unwind@10021ef6` | +| `Unwind@10021f1f` | `10021f1f` | `Unwind@10021f1f` | +| `Unwind@10021f45` | `10021f45` | `Unwind@10021f45` | +| `Unwind@10021f6e` | `10021f6e` | `Unwind@10021f6e` | +| `Unwind@10021f97` | `10021f97` | `Unwind@10021f97` | +| `Unwind@10021fc0` | `10021fc0` | `Unwind@10021fc0` | +| `Unwind@10021fe5` | `10021fe5` | `Unwind@10021fe5` | +| `Unwind@10022009` | `10022009` | `Unwind@10022009` | +| `Unwind@1002202d` | `1002202d` | `Unwind@1002202d` | +| `Unwind@10022051` | `10022051` | `Unwind@10022051` | +| `Unwind@1002207a` | `1002207a` | `Unwind@1002207a` | +| `Unwind@100220a3` | `100220a3` | `Unwind@100220a3` | +| `Unwind@100220c6` | `100220c6` | `Unwind@100220c6` | +| `Unwind@100220e9` | `100220e9` | `Unwind@100220e9` | +| `Unwind@1002210f` | `1002210f` | `Unwind@1002210f` | +| `Unwind@10022135` | `10022135` | `Unwind@10022135` | +| `Unwind@10022158` | `10022158` | `Unwind@10022158` | +| `Unwind@1002217b` | `1002217b` | `Unwind@1002217b` | +| `Unwind@10022186` | `10022186` | `Unwind@10022186` | +| `Unwind@100221ac` | `100221ac` | `Unwind@100221ac` | +| `Unwind@100221cf` | `100221cf` | `Unwind@100221cf` | +| `Unwind@100221f2` | `100221f2` | `Unwind@100221f2` | +| `Unwind@10022215` | `10022215` | `Unwind@10022215` | +| `Unwind@10022238` | `10022238` | `Unwind@10022238` | +| `Unwind@1002225b` | `1002225b` | `Unwind@1002225b` | +| `Unwind@10022280` | `10022280` | `Unwind@10022280` | +| `Unwind@100222a5` | `100222a5` | `Unwind@100222a5` | +| `Unwind@100222c8` | `100222c8` | `Unwind@100222c8` | +| `Unwind@100222eb` | `100222eb` | `Unwind@100222eb` | +| `Unwind@1002230e` | `1002230e` | `Unwind@1002230e` | +| `Unwind@10022331` | `10022331` | `Unwind@10022331` | +| `Unwind@10022354` | `10022354` | `Unwind@10022354` | +| `Unwind@10022377` | `10022377` | `Unwind@10022377` | +| `Unwind@1002239a` | `1002239a` | `Unwind@1002239a` | +| `Unwind@100223a2` | `100223a2` | `Unwind@100223a2` | +| `Unwind@100223c8` | `100223c8` | `Unwind@100223c8` | +| `Unwind@100223eb` | `100223eb` | `Unwind@100223eb` | +| `Unwind@1002240e` | `1002240e` | `Unwind@1002240e` | +| `Unwind@10022419` | `10022419` | `Unwind@10022419` | +| `Unwind@1002244c` | `1002244c` | `Unwind@1002244c` | +| `Unwind@1002246f` | `1002246f` | `Unwind@1002246f` | +| `Unwind@10022492` | `10022492` | `Unwind@10022492` | +| `Unwind@100224b6` | `100224b6` | `Unwind@100224b6` | +| `Unwind@100224d9` | `100224d9` | `Unwind@100224d9` | +| `Unwind@100224fc` | `100224fc` | `Unwind@100224fc` | +| `Unwind@1002253a` | `1002253a` | `Unwind@1002253a` | +| `Unwind@1002255d` | `1002255d` | `Unwind@1002255d` | +| `Unwind@10022586` | `10022586` | `Unwind@10022586` | +| `Unwind@100225b9` | `100225b9` | `Unwind@100225b9` | +| `Unwind@100225c1` | `100225c1` | `Unwind@100225c1` | +| `Unwind@100225e4` | `100225e4` | `Unwind@100225e4` | +| `Unwind@10022607` | `10022607` | `Unwind@10022607` | +| `Unwind@1002260f` | `1002260f` | `Unwind@1002260f` | +| `Unwind@10022632` | `10022632` | `Unwind@10022632` | +| `Unwind@1002263a` | `1002263a` | `Unwind@1002263a` | +| `Unwind@1002265d` | `1002265d` | `Unwind@1002265d` | +| `Unwind@10022665` | `10022665` | `Unwind@10022665` | +| `Unwind@10022688` | `10022688` | `Unwind@10022688` | +| `Unwind@100226b1` | `100226b1` | `Unwind@100226b1` | +| `Unwind@100226b9` | `100226b9` | `Unwind@100226b9` | +| `Unwind@100226c1` | `100226c1` | `Unwind@100226c1` | +| `Unwind@100226e4` | `100226e4` | `Unwind@100226e4` | +| `Unwind@100226ec` | `100226ec` | `Unwind@100226ec` | +| `Unwind@100226f4` | `100226f4` | `Unwind@100226f4` | +| `Unwind@10022717` | `10022717` | `Unwind@10022717` | +| `Unwind@1002271f` | `1002271f` | `Unwind@1002271f` | +| `Unwind@10022727` | `10022727` | `Unwind@10022727` | +| `Unwind@1002272f` | `1002272f` | `Unwind@1002272f` | +| `Unwind@10022752` | `10022752` | `Unwind@10022752` | +| `Unwind@1002275a` | `1002275a` | `Unwind@1002275a` | +| `Unwind@10022762` | `10022762` | `Unwind@10022762` | +| `Unwind@10022785` | `10022785` | `Unwind@10022785` | +| `Unwind@1002278d` | `1002278d` | `Unwind@1002278d` | +| `Unwind@10022795` | `10022795` | `Unwind@10022795` | +| `Unwind@100227b8` | `100227b8` | `Unwind@100227b8` | +| `Unwind@100227c0` | `100227c0` | `Unwind@100227c0` | +| `Unwind@100227c8` | `100227c8` | `Unwind@100227c8` | +| `Unwind@100227d0` | `100227d0` | `Unwind@100227d0` | +| `Unwind@100227f3` | `100227f3` | `Unwind@100227f3` | +| `Unwind@100227fb` | `100227fb` | `Unwind@100227fb` | +| `Unwind@10022803` | `10022803` | `Unwind@10022803` | +| `Unwind@10022826` | `10022826` | `Unwind@10022826` | +| `Unwind@1002282e` | `1002282e` | `Unwind@1002282e` | +| `Unwind@10022836` | `10022836` | `Unwind@10022836` | +| `Unwind@10022859` | `10022859` | `Unwind@10022859` | +| `Unwind@10022861` | `10022861` | `Unwind@10022861` | +| `Unwind@10022869` | `10022869` | `Unwind@10022869` | +| `Unwind@10022871` | `10022871` | `Unwind@10022871` | +| `Unwind@100228e5` | `100228e5` | `Unwind@100228e5` | +| `Unwind@1002290b` | `1002290b` | `Unwind@1002290b` | +| `Unwind@1002292e` | `1002292e` | `Unwind@1002292e` | +| `Unwind@10022936` | `10022936` | `Unwind@10022936` | +| `Unwind@1002295c` | `1002295c` | `Unwind@1002295c` | +| `Unwind@10022985` | `10022985` | `Unwind@10022985` | +| `Unwind@100229ab` | `100229ab` | `Unwind@100229ab` | +| `Unwind@100229ce` | `100229ce` | `Unwind@100229ce` | +| `Unwind@10022a01` | `10022a01` | `Unwind@10022a01` | +| `Unwind@10022a09` | `10022a09` | `Unwind@10022a09` | +| `Unwind@10022a11` | `10022a11` | `Unwind@10022a11` | +| `Unwind@10022a34` | `10022a34` | `Unwind@10022a34` | +| `Unwind@10022a40` | `10022a40` | `Unwind@10022a40` | +| `Unwind@10022a66` | `10022a66` | `Unwind@10022a66` | +| `Unwind@10022a8a` | `10022a8a` | `Unwind@10022a8a` | +| `Unwind@10022aad` | `10022aad` | `Unwind@10022aad` | +| `Unwind@10022ad0` | `10022ad0` | `Unwind@10022ad0` | +| `Unwind@10022af3` | `10022af3` | `Unwind@10022af3` | +| `Unwind@10022afb` | `10022afb` | `Unwind@10022afb` | +| `Unwind@10022b1e` | `10022b1e` | `Unwind@10022b1e` | +| `Unwind@10022b41` | `10022b41` | `Unwind@10022b41` | +| `Unwind@10022b64` | `10022b64` | `Unwind@10022b64` | +| `Unwind@10022b87` | `10022b87` | `Unwind@10022b87` | +| `Unwind@10022baa` | `10022baa` | `Unwind@10022baa` | +| `Unwind@10022bcd` | `10022bcd` | `Unwind@10022bcd` | +| `Unwind@10022bf0` | `10022bf0` | `Unwind@10022bf0` | +| `Unwind@10022c13` | `10022c13` | `Unwind@10022c13` | +| `Unwind@10022c36` | `10022c36` | `Unwind@10022c36` | +| `Unwind@10022c59` | `10022c59` | `Unwind@10022c59` | +| `Unwind@10022c7c` | `10022c7c` | `Unwind@10022c7c` | +| `Unwind@10022d0b` | `10022d0b` | `Unwind@10022d0b` | +| `Unwind@10022d13` | `10022d13` | `Unwind@10022d13` | +| `Unwind@10022d47` | `10022d47` | `Unwind@10022d47` | +| `Unwind@10022d4f` | `10022d4f` | `Unwind@10022d4f` | +| `Unwind@10022d57` | `10022d57` | `Unwind@10022d57` | +| `Unwind@10022d7a` | `10022d7a` | `Unwind@10022d7a` | +| `Unwind@10022d82` | `10022d82` | `Unwind@10022d82` | +| `Unwind@10022d8a` | `10022d8a` | `Unwind@10022d8a` | +| `Unwind@10022d92` | `10022d92` | `Unwind@10022d92` | +| `Unwind@10022db5` | `10022db5` | `Unwind@10022db5` | +| `Unwind@10022dbd` | `10022dbd` | `Unwind@10022dbd` | +| `Unwind@10022dc5` | `10022dc5` | `Unwind@10022dc5` | +| `Unwind@10022dcd` | `10022dcd` | `Unwind@10022dcd` | +| `Unwind@10022dd5` | `10022dd5` | `Unwind@10022dd5` | +| `Unwind@10022e13` | `10022e13` | `Unwind@10022e13` | +| `Unwind@10022e1b` | `10022e1b` | `Unwind@10022e1b` | +| `Unwind@10022e4f` | `10022e4f` | `Unwind@10022e4f` | +| `Unwind@10022e57` | `10022e57` | `Unwind@10022e57` | +| `Unwind@10022e5f` | `10022e5f` | `Unwind@10022e5f` | +| `Unwind@10022e67` | `10022e67` | `Unwind@10022e67` | +| `Unwind@10022e8a` | `10022e8a` | `Unwind@10022e8a` | +| `Unwind@10022e92` | `10022e92` | `Unwind@10022e92` | +| `Unwind@10022e9a` | `10022e9a` | `Unwind@10022e9a` | +| `Unwind@10022ea2` | `10022ea2` | `Unwind@10022ea2` | +| `Unwind@10022eaa` | `10022eaa` | `Unwind@10022eaa` | +| `Unwind@10022ee8` | `10022ee8` | `Unwind@10022ee8` | +| `Unwind@10022ef0` | `10022ef0` | `Unwind@10022ef0` | +| `Unwind@10022f24` | `10022f24` | `Unwind@10022f24` | +| `Unwind@10022f2c` | `10022f2c` | `Unwind@10022f2c` | +| `Unwind@10022f34` | `10022f34` | `Unwind@10022f34` | +| `Unwind@10022f57` | `10022f57` | `Unwind@10022f57` | +| `Unwind@10022f5f` | `10022f5f` | `Unwind@10022f5f` | +| `Unwind@10022f67` | `10022f67` | `Unwind@10022f67` | +| `Unwind@10022f6f` | `10022f6f` | `Unwind@10022f6f` | +| `Unwind@10022f92` | `10022f92` | `Unwind@10022f92` | +| `Unwind@10022f9a` | `10022f9a` | `Unwind@10022f9a` | +| `Unwind@10022fa2` | `10022fa2` | `Unwind@10022fa2` | +| `Unwind@10022faa` | `10022faa` | `Unwind@10022faa` | +| `Unwind@10022fb2` | `10022fb2` | `Unwind@10022fb2` | +| `Unwind@10022fd5` | `10022fd5` | `Unwind@10022fd5` | +| `Unwind@10022fdd` | `10022fdd` | `Unwind@10022fdd` | +| `Unwind@10022fe5` | `10022fe5` | `Unwind@10022fe5` | +| `Unwind@10022fed` | `10022fed` | `Unwind@10022fed` | +| `Unwind@10023010` | `10023010` | `Unwind@10023010` | +| `Unwind@10023018` | `10023018` | `Unwind@10023018` | +| `Unwind@10023020` | `10023020` | `Unwind@10023020` | +| `Unwind@10023028` | `10023028` | `Unwind@10023028` | +| `Unwind@1002304b` | `1002304b` | `Unwind@1002304b` | +| `Unwind@10023071` | `10023071` | `Unwind@10023071` | +| `Unwind@10023094` | `10023094` | `Unwind@10023094` | +| `Unwind@1002309c` | `1002309c` | `Unwind@1002309c` | +| `Unwind@100230bf` | `100230bf` | `Unwind@100230bf` | +| `Unwind@100230e8` | `100230e8` | `Unwind@100230e8` | +| `Unwind@1002310b` | `1002310b` | `Unwind@1002310b` | +| `Unwind@1002312e` | `1002312e` | `Unwind@1002312e` | +| `Unwind@1002314b` | `1002314b` | `Unwind@1002314b` | +| `Unwind@10023157` | `10023157` | `Unwind@10023157` | +| `Unwind@10023198` | `10023198` | `Unwind@10023198` | +| `Unwind@100231bb` | `100231bb` | `Unwind@100231bb` | +| `Unwind@100231de` | `100231de` | `Unwind@100231de` | +| `Unwind@10023201` | `10023201` | `Unwind@10023201` | +| `Unwind@10023209` | `10023209` | `Unwind@10023209` | +| `Unwind@1002322c` | `1002322c` | `Unwind@1002322c` | +| `Unwind@10023234` | `10023234` | `Unwind@10023234` | +| `Unwind@1002323c` | `1002323c` | `Unwind@1002323c` | +| `Unwind@1002325f` | `1002325f` | `Unwind@1002325f` | +| `Unwind@10023267` | `10023267` | `Unwind@10023267` | +| `Unwind@1002328a` | `1002328a` | `Unwind@1002328a` | +| `Unwind@100232af` | `100232af` | `Unwind@100232af` | +| `Unwind@100232b7` | `100232b7` | `Unwind@100232b7` | +| `Unwind@100232bf` | `100232bf` | `Unwind@100232bf` | +| `Unwind@100232e2` | `100232e2` | `Unwind@100232e2` | +| `Unwind@1002332d` | `1002332d` | `Unwind@1002332d` | +| `Unwind@10023350` | `10023350` | `Unwind@10023350` | +| `Unwind@10023373` | `10023373` | `Unwind@10023373` | +| `Unwind@100233b1` | `100233b1` | `Unwind@100233b1` | +| `Unwind@100233b9` | `100233b9` | `Unwind@100233b9` | +| `Unwind@100233c1` | `100233c1` | `Unwind@100233c1` | +| `Unwind@100233e4` | `100233e4` | `Unwind@100233e4` | +| `Unwind@1002340d` | `1002340d` | `Unwind@1002340d` | +| `Unwind@10023430` | `10023430` | `Unwind@10023430` | +| `Unwind@10023453` | `10023453` | `Unwind@10023453` | +| `Unwind@10023476` | `10023476` | `Unwind@10023476` | +| `Unwind@10023499` | `10023499` | `Unwind@10023499` | +| `Unwind@100234bc` | `100234bc` | `Unwind@100234bc` | +| `Unwind@100234f0` | `100234f0` | `Unwind@100234f0` | +| `Unwind@10023524` | `10023524` | `Unwind@10023524` | +| `Unwind@10023547` | `10023547` | `Unwind@10023547` | +| `Unwind@1002356a` | `1002356a` | `Unwind@1002356a` | +| `Unwind@100235a8` | `100235a8` | `Unwind@100235a8` | +| `Unwind@100235b0` | `100235b0` | `Unwind@100235b0` | +| `Unwind@100235b8` | `100235b8` | `Unwind@100235b8` | +| `Unwind@100235db` | `100235db` | `Unwind@100235db` | +| `Unwind@100235fe` | `100235fe` | `Unwind@100235fe` | +| `Unwind@10023621` | `10023621` | `Unwind@10023621` | +| `Unwind@10023629` | `10023629` | `Unwind@10023629` | +| `Unwind@1002364f` | `1002364f` | `Unwind@1002364f` | +| `Unwind@10023657` | `10023657` | `Unwind@10023657` | +| `Unwind@1002367d` | `1002367d` | `Unwind@1002367d` | +| `Unwind@10023685` | `10023685` | `Unwind@10023685` | +| `Unwind@100236ab` | `100236ab` | `Unwind@100236ab` | +| `Unwind@100236b3` | `100236b3` | `Unwind@100236b3` | +| `Unwind@100236d9` | `100236d9` | `Unwind@100236d9` | +| `Unwind@100236ff` | `100236ff` | `Unwind@100236ff` | +| `Unwind@10023725` | `10023725` | `Unwind@10023725` | +| `Unwind@10023748` | `10023748` | `Unwind@10023748` | +| `Unwind@1002376b` | `1002376b` | `Unwind@1002376b` | +| `Unwind@1002378e` | `1002378e` | `Unwind@1002378e` | +| `Unwind@100237b1` | `100237b1` | `Unwind@100237b1` | +| `Unwind@1002380a` | `1002380a` | `Unwind@1002380a` | +| `Unwind@1002382d` | `1002382d` | `Unwind@1002382d` | +| `Unwind@10023850` | `10023850` | `Unwind@10023850` | +| `Unwind@10023858` | `10023858` | `Unwind@10023858` | +| `Unwind@10023871` | `10023871` | `Unwind@10023871` | +| `Unwind@10023879` | `10023879` | `Unwind@10023879` | +| `Unwind@100238c1` | `100238c1` | `Unwind@100238c1` | +| `Unwind@100238f5` | `100238f5` | `Unwind@100238f5` | +| `Unwind@10023929` | `10023929` | `Unwind@10023929` | +| `Unwind@1002394c` | `1002394c` | `Unwind@1002394c` | +| `Unwind@10023957` | `10023957` | `Unwind@10023957` | +| `Unwind@1002397a` | `1002397a` | `Unwind@1002397a` | +| `Unwind@1002399d` | `1002399d` | `Unwind@1002399d` | +| `Unwind@100239a5` | `100239a5` | `Unwind@100239a5` | +| `Unwind@100239c8` | `100239c8` | `Unwind@100239c8` | +| `Unwind@100239eb` | `100239eb` | `Unwind@100239eb` | +| `Unwind@10023a0e` | `10023a0e` | `Unwind@10023a0e` | +| `Unwind@10023a3b` | `10023a3b` | `Unwind@10023a3b` | +| `Unwind@10023a61` | `10023a61` | `Unwind@10023a61` | +| `Unwind@10023a69` | `10023a69` | `Unwind@10023a69` | +| `Unwind@10023a8c` | `10023a8c` | `Unwind@10023a8c` | +| `Unwind@10023a94` | `10023a94` | `Unwind@10023a94` | +| `Unwind@10023ab7` | `10023ab7` | `Unwind@10023ab7` | +| `Unwind@10023abf` | `10023abf` | `Unwind@10023abf` | +| `Unwind@10023af3` | `10023af3` | `Unwind@10023af3` | +| `Unwind@10023b19` | `10023b19` | `Unwind@10023b19` | +| `Unwind@10023b42` | `10023b42` | `Unwind@10023b42` | +| `Unwind@10023b76` | `10023b76` | `Unwind@10023b76` | +| `Unwind@10023b9c` | `10023b9c` | `Unwind@10023b9c` | +| `Unwind@10023bc9` | `10023bc9` | `Unwind@10023bc9` | +| `Unwind@10023bd1` | `10023bd1` | `Unwind@10023bd1` | +| `Unwind@10023bf7` | `10023bf7` | `Unwind@10023bf7` | +| `Unwind@10023c1a` | `10023c1a` | `Unwind@10023c1a` | +| `Unwind@10023c3d` | `10023c3d` | `Unwind@10023c3d` | +| `Unwind@10023c45` | `10023c45` | `Unwind@10023c45` | +| `Unwind@10023c6b` | `10023c6b` | `Unwind@10023c6b` | +| `Unwind@10023c76` | `10023c76` | `Unwind@10023c76` | +| `Unwind@10023c81` | `10023c81` | `Unwind@10023c81` | +| `Unwind@10023c8c` | `10023c8c` | `Unwind@10023c8c` | +| `Unwind@10023c97` | `10023c97` | `Unwind@10023c97` | +| `Unwind@10023ca2` | `10023ca2` | `Unwind@10023ca2` | +| `Unwind@10023cad` | `10023cad` | `Unwind@10023cad` | +| `Unwind@10023cb8` | `10023cb8` | `Unwind@10023cb8` | +| `Unwind@10023cc3` | `10023cc3` | `Unwind@10023cc3` | +| `Unwind@10023d0d` | `10023d0d` | `Unwind@10023d0d` | +| `Unwind@10023d41` | `10023d41` | `Unwind@10023d41` | +| `Unwind@10023d49` | `10023d49` | `Unwind@10023d49` | +| `Unwind@10023d7d` | `10023d7d` | `Unwind@10023d7d` | +| `Unwind@10023d85` | `10023d85` | `Unwind@10023d85` | +| `Unwind@10023d8d` | `10023d8d` | `Unwind@10023d8d` | +| `Unwind@10023da6` | `10023da6` | `Unwind@10023da6` | +| `Unwind@10023dae` | `10023dae` | `Unwind@10023dae` | +| `Unwind@10023dd1` | `10023dd1` | `Unwind@10023dd1` | +| `Unwind@10023df4` | `10023df4` | `Unwind@10023df4` | +| `Unwind@10023dfc` | `10023dfc` | `Unwind@10023dfc` | +| `Unwind@10023e04` | `10023e04` | `Unwind@10023e04` | +| `Unwind@10023e0c` | `10023e0c` | `Unwind@10023e0c` | +| `Unwind@10023e14` | `10023e14` | `Unwind@10023e14` | +| `Unwind@10023e1c` | `10023e1c` | `Unwind@10023e1c` | +| `Unwind@10023e24` | `10023e24` | `Unwind@10023e24` | +| `Unwind@10023e2c` | `10023e2c` | `Unwind@10023e2c` | +| `Unwind@10023e34` | `10023e34` | `Unwind@10023e34` | +| `Unwind@10023e3c` | `10023e3c` | `Unwind@10023e3c` | +| `Unwind@10023e44` | `10023e44` | `Unwind@10023e44` | +| `Unwind@10023e4c` | `10023e4c` | `Unwind@10023e4c` | +| `Unwind@10023e54` | `10023e54` | `Unwind@10023e54` | +| `Unwind@10023e5c` | `10023e5c` | `Unwind@10023e5c` | +| `Unwind@10023e64` | `10023e64` | `Unwind@10023e64` | +| `Unwind@10023e87` | `10023e87` | `Unwind@10023e87` | +| `Unwind@10023e8f` | `10023e8f` | `Unwind@10023e8f` | +| `Unwind@10023e97` | `10023e97` | `Unwind@10023e97` | +| `Unwind@10023e9f` | `10023e9f` | `Unwind@10023e9f` | +| `Unwind@10023ea7` | `10023ea7` | `Unwind@10023ea7` | +| `Unwind@10023eaf` | `10023eaf` | `Unwind@10023eaf` | +| `Unwind@10023ed2` | `10023ed2` | `Unwind@10023ed2` | +| `Unwind@10023eda` | `10023eda` | `Unwind@10023eda` | +| `Unwind@10023efd` | `10023efd` | `Unwind@10023efd` | +| `Unwind@10023f3b` | `10023f3b` | `Unwind@10023f3b` | +| `Unwind@10023f43` | `10023f43` | `Unwind@10023f43` | +| `Unwind@10023f69` | `10023f69` | `Unwind@10023f69` | +| `Unwind@10023f71` | `10023f71` | `Unwind@10023f71` | +| `Unwind@10023f79` | `10023f79` | `Unwind@10023f79` | +| `Unwind@10023f84` | `10023f84` | `Unwind@10023f84` | +| `Unwind@10023f8c` | `10023f8c` | `Unwind@10023f8c` | +| `Unwind@10023f94` | `10023f94` | `Unwind@10023f94` | +| `Unwind@10023f9c` | `10023f9c` | `Unwind@10023f9c` | +| `Unwind@10023fcc` | `10023fcc` | `Unwind@10023fcc` | +| `Unwind@10023fef` | `10023fef` | `Unwind@10023fef` | +| `Unwind@10023ff7` | `10023ff7` | `Unwind@10023ff7` | +| `Unwind@1002401d` | `1002401d` | `Unwind@1002401d` | +| `Unwind@10024028` | `10024028` | `Unwind@10024028` | +| `Unwind@10024033` | `10024033` | `Unwind@10024033` | +| `Unwind@1002403e` | `1002403e` | `Unwind@1002403e` | +| `Unwind@10024049` | `10024049` | `Unwind@10024049` | +| `Unwind@10024054` | `10024054` | `Unwind@10024054` | +| `Unwind@1002405f` | `1002405f` | `Unwind@1002405f` | +| `Unwind@10024081` | `10024081` | `Unwind@10024081` | +| `Unwind@100240cb` | `100240cb` | `Unwind@100240cb` | +| `Unwind@100240ee` | `100240ee` | `Unwind@100240ee` | +| `Unwind@100240f6` | `100240f6` | `Unwind@100240f6` | +| `Unwind@100240fe` | `100240fe` | `Unwind@100240fe` | +| `Unwind@10024109` | `10024109` | `Unwind@10024109` | +| `Unwind@10024114` | `10024114` | `Unwind@10024114` | +| `Unwind@1002411f` | `1002411f` | `Unwind@1002411f` | +| `Unwind@1002412a` | `1002412a` | `Unwind@1002412a` | +| `Unwind@10024132` | `10024132` | `Unwind@10024132` | +| `Unwind@1002413a` | `1002413a` | `Unwind@1002413a` | +| `Unwind@1002416a` | `1002416a` | `Unwind@1002416a` | +| `Unwind@10024172` | `10024172` | `Unwind@10024172` | +| `Unwind@10024195` | `10024195` | `Unwind@10024195` | +| `Unwind@100241bb` | `100241bb` | `Unwind@100241bb` | +| `Unwind@100241c3` | `100241c3` | `Unwind@100241c3` | +| `Unwind@100241cb` | `100241cb` | `Unwind@100241cb` | +| `Unwind@100241ee` | `100241ee` | `Unwind@100241ee` | +| `Unwind@10024214` | `10024214` | `Unwind@10024214` | +| `Unwind@10024237` | `10024237` | `Unwind@10024237` | +| `Unwind@1002423f` | `1002423f` | `Unwind@1002423f` | +| `Unwind@10024247` | `10024247` | `Unwind@10024247` | +| `Unwind@1002426a` | `1002426a` | `Unwind@1002426a` | +| `Unwind@10024272` | `10024272` | `Unwind@10024272` | +| `Unwind@1002427a` | `1002427a` | `Unwind@1002427a` | +| `Unwind@10024282` | `10024282` | `Unwind@10024282` | +| `Unwind@1002428a` | `1002428a` | `Unwind@1002428a` | +| `Unwind@10024292` | `10024292` | `Unwind@10024292` | +| `Unwind@1002429a` | `1002429a` | `Unwind@1002429a` | +| `Unwind@100242a2` | `100242a2` | `Unwind@100242a2` | +| `Unwind@100242c5` | `100242c5` | `Unwind@100242c5` | +| `Unwind@100242cd` | `100242cd` | `Unwind@100242cd` | +| `Unwind@100242d5` | `100242d5` | `Unwind@100242d5` | +| `Unwind@100242dd` | `100242dd` | `Unwind@100242dd` | +| `Unwind@100242e5` | `100242e5` | `Unwind@100242e5` | +| `Unwind@100242ed` | `100242ed` | `Unwind@100242ed` | +| `Unwind@100242f5` | `100242f5` | `Unwind@100242f5` | +| `Unwind@100242fd` | `100242fd` | `Unwind@100242fd` | +| `Unwind@10024320` | `10024320` | `Unwind@10024320` | +| `Unwind@10024328` | `10024328` | `Unwind@10024328` | +| `Unwind@10024330` | `10024330` | `Unwind@10024330` | +| `Unwind@10024338` | `10024338` | `Unwind@10024338` | +| `Unwind@10024340` | `10024340` | `Unwind@10024340` | +| `Unwind@10024348` | `10024348` | `Unwind@10024348` | +| `Unwind@10024350` | `10024350` | `Unwind@10024350` | +| `Unwind@10024373` | `10024373` | `Unwind@10024373` | +| `Unwind@1002437b` | `1002437b` | `Unwind@1002437b` | +| `Unwind@10024383` | `10024383` | `Unwind@10024383` | +| `Unwind@1002438b` | `1002438b` | `Unwind@1002438b` | +| `Unwind@10024393` | `10024393` | `Unwind@10024393` | +| `Unwind@1002439b` | `1002439b` | `Unwind@1002439b` | +| `Unwind@100243a3` | `100243a3` | `Unwind@100243a3` | +| `Unwind@100243ab` | `100243ab` | `Unwind@100243ab` | +| `Unwind@100243b3` | `100243b3` | `Unwind@100243b3` | +| `Unwind@100243bb` | `100243bb` | `Unwind@100243bb` | +| `Unwind@100243c3` | `100243c3` | `Unwind@100243c3` | +| `Unwind@100243cb` | `100243cb` | `Unwind@100243cb` | +| `Unwind@100243d3` | `100243d3` | `Unwind@100243d3` | +| `Unwind@100243db` | `100243db` | `Unwind@100243db` | +| `Unwind@100243e3` | `100243e3` | `Unwind@100243e3` | +| `Unwind@100243eb` | `100243eb` | `Unwind@100243eb` | +| `Unwind@1002440e` | `1002440e` | `Unwind@1002440e` | +| `Unwind@10024416` | `10024416` | `Unwind@10024416` | +| `Unwind@1002441e` | `1002441e` | `Unwind@1002441e` | +| `Unwind@10024426` | `10024426` | `Unwind@10024426` | +| `Unwind@1002442e` | `1002442e` | `Unwind@1002442e` | +| `Unwind@10024436` | `10024436` | `Unwind@10024436` | +| `Unwind@10024459` | `10024459` | `Unwind@10024459` | +| `Unwind@10024461` | `10024461` | `Unwind@10024461` | +| `Unwind@10024469` | `10024469` | `Unwind@10024469` | +| `Unwind@10024471` | `10024471` | `Unwind@10024471` | +| `Unwind@10024479` | `10024479` | `Unwind@10024479` | +| `Unwind@1002449c` | `1002449c` | `Unwind@1002449c` | +| `Unwind@100244a4` | `100244a4` | `Unwind@100244a4` | +| `Unwind@100244ac` | `100244ac` | `Unwind@100244ac` | +| `Unwind@100244b4` | `100244b4` | `Unwind@100244b4` | +| `Unwind@100244bc` | `100244bc` | `Unwind@100244bc` | +| `Unwind@100244c4` | `100244c4` | `Unwind@100244c4` | +| `Unwind@100244cc` | `100244cc` | `Unwind@100244cc` | +| `Unwind@100244d4` | `100244d4` | `Unwind@100244d4` | +| `Unwind@100244f7` | `100244f7` | `Unwind@100244f7` | +| `Unwind@100244ff` | `100244ff` | `Unwind@100244ff` | +| `Unwind@10024507` | `10024507` | `Unwind@10024507` | +| `Unwind@1002450f` | `1002450f` | `Unwind@1002450f` | +| `Unwind@10024517` | `10024517` | `Unwind@10024517` | +| `Unwind@1002451f` | `1002451f` | `Unwind@1002451f` | +| `Unwind@10024527` | `10024527` | `Unwind@10024527` | +| `Unwind@1002452f` | `1002452f` | `Unwind@1002452f` | +| `Unwind@10024537` | `10024537` | `Unwind@10024537` | +| `Unwind@1002453f` | `1002453f` | `Unwind@1002453f` | +| `Unwind@10024547` | `10024547` | `Unwind@10024547` | +| `Unwind@1002454f` | `1002454f` | `Unwind@1002454f` | +| `Unwind@10024557` | `10024557` | `Unwind@10024557` | +| `Unwind@1002457a` | `1002457a` | `Unwind@1002457a` | +| `Unwind@10024585` | `10024585` | `Unwind@10024585` | +| `Unwind@10024590` | `10024590` | `Unwind@10024590` | +| `Unwind@1002459b` | `1002459b` | `Unwind@1002459b` | +| `Unwind@100245ce` | `100245ce` | `Unwind@100245ce` | +| `Unwind@100245d9` | `100245d9` | `Unwind@100245d9` | +| `Unwind@100245e4` | `100245e4` | `Unwind@100245e4` | +| `Unwind@100245ef` | `100245ef` | `Unwind@100245ef` | +| `Unwind@100245fa` | `100245fa` | `Unwind@100245fa` | +| `Unwind@1002462d` | `1002462d` | `Unwind@1002462d` | +| `Unwind@10024638` | `10024638` | `Unwind@10024638` | +| `Unwind@1002466b` | `1002466b` | `Unwind@1002466b` | +| `Unwind@10024673` | `10024673` | `Unwind@10024673` | +| `Unwind@1002467b` | `1002467b` | `Unwind@1002467b` | +| `Unwind@10024683` | `10024683` | `Unwind@10024683` | +| `Unwind@1002468b` | `1002468b` | `Unwind@1002468b` | +| `Unwind@10024693` | `10024693` | `Unwind@10024693` | +| `Unwind@1002469b` | `1002469b` | `Unwind@1002469b` | +| `Unwind@100246be` | `100246be` | `Unwind@100246be` | +| `Unwind@100246c6` | `100246c6` | `Unwind@100246c6` | +| `Unwind@100246ce` | `100246ce` | `Unwind@100246ce` | +| `Unwind@100246d6` | `100246d6` | `Unwind@100246d6` | +| `Unwind@100246de` | `100246de` | `Unwind@100246de` | +| `Unwind@100246e6` | `100246e6` | `Unwind@100246e6` | +| `Unwind@100246ee` | `100246ee` | `Unwind@100246ee` | +| `Unwind@100246f6` | `100246f6` | `Unwind@100246f6` | +| `Unwind@100246fe` | `100246fe` | `Unwind@100246fe` | +| `Unwind@10024706` | `10024706` | `Unwind@10024706` | +| `Unwind@10024729` | `10024729` | `Unwind@10024729` | +| `Unwind@10024731` | `10024731` | `Unwind@10024731` | +| `Unwind@10024739` | `10024739` | `Unwind@10024739` | +| `Unwind@10024741` | `10024741` | `Unwind@10024741` | +| `Unwind@10024749` | `10024749` | `Unwind@10024749` | +| `Unwind@10024751` | `10024751` | `Unwind@10024751` | +| `Unwind@10024759` | `10024759` | `Unwind@10024759` | +| `Unwind@10024761` | `10024761` | `Unwind@10024761` | +| `Unwind@10024769` | `10024769` | `Unwind@10024769` | +| `Unwind@10024771` | `10024771` | `Unwind@10024771` | +| `Unwind@10024794` | `10024794` | `Unwind@10024794` | +| `Unwind@1002479c` | `1002479c` | `Unwind@1002479c` | +| `Unwind@100247a4` | `100247a4` | `Unwind@100247a4` | +| `Unwind@100247ac` | `100247ac` | `Unwind@100247ac` | +| `Unwind@100247b4` | `100247b4` | `Unwind@100247b4` | +| `Unwind@100247bc` | `100247bc` | `Unwind@100247bc` | +| `Unwind@100247c4` | `100247c4` | `Unwind@100247c4` | +| `Unwind@100247cc` | `100247cc` | `Unwind@100247cc` | +| `Unwind@100247d7` | `100247d7` | `Unwind@100247d7` | +| `Unwind@10024800` | `10024800` | `Unwind@10024800` | +| `Unwind@10024823` | `10024823` | `Unwind@10024823` | +| `Unwind@10024846` | `10024846` | `Unwind@10024846` | +| `Unwind@1002486f` | `1002486f` | `Unwind@1002486f` | +| `Unwind@10024892` | `10024892` | `Unwind@10024892` | +| `Unwind@1002489a` | `1002489a` | `Unwind@1002489a` | +| `Unwind@100248a2` | `100248a2` | `Unwind@100248a2` | +| `Unwind@100248aa` | `100248aa` | `Unwind@100248aa` | +| `Unwind@100248b2` | `100248b2` | `Unwind@100248b2` | +| `Unwind@100248d5` | `100248d5` | `Unwind@100248d5` | +| `Unwind@100248dd` | `100248dd` | `Unwind@100248dd` | +| `Unwind@100248e5` | `100248e5` | `Unwind@100248e5` | +| `Unwind@100248ed` | `100248ed` | `Unwind@100248ed` | +| `Unwind@100248f5` | `100248f5` | `Unwind@100248f5` | +| `Unwind@100248fd` | `100248fd` | `Unwind@100248fd` | +| `Unwind@10024905` | `10024905` | `Unwind@10024905` | +| `Unwind@1002490d` | `1002490d` | `Unwind@1002490d` | +| `Unwind@10024930` | `10024930` | `Unwind@10024930` | +| `Unwind@10024938` | `10024938` | `Unwind@10024938` | +| `Unwind@10024940` | `10024940` | `Unwind@10024940` | +| `Unwind@10024948` | `10024948` | `Unwind@10024948` | +| `Unwind@10024950` | `10024950` | `Unwind@10024950` | +| `Unwind@10024958` | `10024958` | `Unwind@10024958` | +| `Unwind@10024960` | `10024960` | `Unwind@10024960` | +| `Unwind@10024983` | `10024983` | `Unwind@10024983` | +| `Unwind@1002498b` | `1002498b` | `Unwind@1002498b` | +| `Unwind@100249ae` | `100249ae` | `Unwind@100249ae` | +| `Unwind@100249b6` | `100249b6` | `Unwind@100249b6` | +| `Unwind@100249ea` | `100249ea` | `Unwind@100249ea` | +| `Unwind@100249f2` | `100249f2` | `Unwind@100249f2` | +| `Unwind@100249fa` | `100249fa` | `Unwind@100249fa` | +| `Unwind@10024a02` | `10024a02` | `Unwind@10024a02` | +| `Unwind@10024a0a` | `10024a0a` | `Unwind@10024a0a` | +| `Unwind@10024a12` | `10024a12` | `Unwind@10024a12` | +| `Unwind@10024a35` | `10024a35` | `Unwind@10024a35` | +| `Unwind@10024a40` | `10024a40` | `Unwind@10024a40` | +| `Unwind@10024a4b` | `10024a4b` | `Unwind@10024a4b` | +| `Unwind@10024a56` | `10024a56` | `Unwind@10024a56` | +| `Unwind@10024a61` | `10024a61` | `Unwind@10024a61` | +| `Unwind@10024a94` | `10024a94` | `Unwind@10024a94` | +| `Unwind@10024a9c` | `10024a9c` | `Unwind@10024a9c` | +| `Unwind@10024aa4` | `10024aa4` | `Unwind@10024aa4` | +| `Unwind@10024aac` | `10024aac` | `Unwind@10024aac` | +| `Unwind@10024ab4` | `10024ab4` | `Unwind@10024ab4` | +| `Unwind@10024abc` | `10024abc` | `Unwind@10024abc` | +| `Unwind@10024ac4` | `10024ac4` | `Unwind@10024ac4` | +| `Unwind@10024ae7` | `10024ae7` | `Unwind@10024ae7` | +| `Unwind@10024aef` | `10024aef` | `Unwind@10024aef` | +| `Unwind@10024af7` | `10024af7` | `Unwind@10024af7` | +| `Unwind@10024aff` | `10024aff` | `Unwind@10024aff` | +| `Unwind@10024b07` | `10024b07` | `Unwind@10024b07` | +| `Unwind@10024b0f` | `10024b0f` | `Unwind@10024b0f` | +| `Unwind@10024b17` | `10024b17` | `Unwind@10024b17` | +| `Unwind@10024b1f` | `10024b1f` | `Unwind@10024b1f` | +| `Unwind@10024b27` | `10024b27` | `Unwind@10024b27` | +| `Unwind@10024b4a` | `10024b4a` | `Unwind@10024b4a` | +| `Unwind@10024b52` | `10024b52` | `Unwind@10024b52` | +| `Unwind@10024b5a` | `10024b5a` | `Unwind@10024b5a` | +| `Unwind@10024b62` | `10024b62` | `Unwind@10024b62` | +| `Unwind@10024b6a` | `10024b6a` | `Unwind@10024b6a` | +| `Unwind@10024b72` | `10024b72` | `Unwind@10024b72` | +| `Unwind@10024b7a` | `10024b7a` | `Unwind@10024b7a` | +| `Unwind@10024b82` | `10024b82` | `Unwind@10024b82` | +| `Unwind@10024b8a` | `10024b8a` | `Unwind@10024b8a` | +| `Unwind@10024bb7` | `10024bb7` | `Unwind@10024bb7` | +| `Unwind@10024bbf` | `10024bbf` | `Unwind@10024bbf` | +| `Unwind@10024bc7` | `10024bc7` | `Unwind@10024bc7` | +| `Unwind@10024bcf` | `10024bcf` | `Unwind@10024bcf` | +| `Unwind@10024bd7` | `10024bd7` | `Unwind@10024bd7` | +| `Unwind@10024bdf` | `10024bdf` | `Unwind@10024bdf` | +| `Unwind@10024be7` | `10024be7` | `Unwind@10024be7` | +| `Unwind@10024c25` | `10024c25` | `Unwind@10024c25` | +| `Unwind@10024c2d` | `10024c2d` | `Unwind@10024c2d` | +| `Unwind@10024c38` | `10024c38` | `Unwind@10024c38` | +| `Unwind@10024c43` | `10024c43` | `Unwind@10024c43` | +| `Unwind@10024c4e` | `10024c4e` | `Unwind@10024c4e` | +| `Unwind@10024c89` | `10024c89` | `Unwind@10024c89` | +| `Unwind@10024cac` | `10024cac` | `Unwind@10024cac` | +| `Unwind@10024ccf` | `10024ccf` | `Unwind@10024ccf` | +| `Unwind@10024cda` | `10024cda` | `Unwind@10024cda` | +| `Unwind@10024ce5` | `10024ce5` | `Unwind@10024ce5` | +| `Unwind@10024cf0` | `10024cf0` | `Unwind@10024cf0` | +| `Unwind@10024cfb` | `10024cfb` | `Unwind@10024cfb` | +| `Unwind@10024d06` | `10024d06` | `Unwind@10024d06` | +| `Unwind@10024d14` | `10024d14` | `Unwind@10024d14` | +| `Unwind@10024d22` | `10024d22` | `Unwind@10024d22` | +| `Unwind@10024d30` | `10024d30` | `Unwind@10024d30` | +| `Unwind@10024d48` | `10024d48` | `Unwind@10024d48` | +| `Unwind@10024d60` | `10024d60` | `Unwind@10024d60` | +| `Unwind@10024d78` | `10024d78` | `Unwind@10024d78` | +| `Unwind@10024d86` | `10024d86` | `Unwind@10024d86` | +| `Unwind@10024d94` | `10024d94` | `Unwind@10024d94` | +| `Unwind@10024da2` | `10024da2` | `Unwind@10024da2` | +| `Unwind@10024db0` | `10024db0` | `Unwind@10024db0` | +| `Unwind@10024dbe` | `10024dbe` | `Unwind@10024dbe` | +| `Unwind@10024dcc` | `10024dcc` | `Unwind@10024dcc` | +| `Unwind@10024dda` | `10024dda` | `Unwind@10024dda` | +| `Unwind@10024de8` | `10024de8` | `Unwind@10024de8` | +| `Unwind@10024df6` | `10024df6` | `Unwind@10024df6` | +| `Unwind@10024e04` | `10024e04` | `Unwind@10024e04` | +| `Unwind@10024e12` | `10024e12` | `Unwind@10024e12` | +| `Unwind@10024e20` | `10024e20` | `Unwind@10024e20` | +| `Unwind@10024e28` | `10024e28` | `Unwind@10024e28` | +| `Unwind@10024e30` | `10024e30` | `Unwind@10024e30` | +| `Unwind@10024e38` | `10024e38` | `Unwind@10024e38` | +| `Unwind@10024e40` | `10024e40` | `Unwind@10024e40` | +| `Unwind@10024e48` | `10024e48` | `Unwind@10024e48` | +| `Unwind@10024e50` | `10024e50` | `Unwind@10024e50` | +| `Unwind@10024e58` | `10024e58` | `Unwind@10024e58` | +| `Unwind@10024e60` | `10024e60` | `Unwind@10024e60` | +| `Unwind@10024e6b` | `10024e6b` | `Unwind@10024e6b` | +| `Unwind@10024e76` | `10024e76` | `Unwind@10024e76` | +| `Unwind@10024e81` | `10024e81` | `Unwind@10024e81` | +| `Unwind@10024e8c` | `10024e8c` | `Unwind@10024e8c` | +| `Unwind@10024e94` | `10024e94` | `Unwind@10024e94` | +| `Unwind@10024e9c` | `10024e9c` | `Unwind@10024e9c` | +| `Unwind@10024ea4` | `10024ea4` | `Unwind@10024ea4` | +| `Unwind@10024eac` | `10024eac` | `Unwind@10024eac` | +| `Unwind@10024eb4` | `10024eb4` | `Unwind@10024eb4` | +| `Unwind@10024ed7` | `10024ed7` | `Unwind@10024ed7` | +| `Unwind@10024edf` | `10024edf` | `Unwind@10024edf` | +| `Unwind@10024ee7` | `10024ee7` | `Unwind@10024ee7` | +| `Unwind@10024eef` | `10024eef` | `Unwind@10024eef` | +| `Unwind@10024ef7` | `10024ef7` | `Unwind@10024ef7` | +| `Unwind@10024eff` | `10024eff` | `Unwind@10024eff` | +| `Unwind@10024f07` | `10024f07` | `Unwind@10024f07` | +| `Unwind@10024f0f` | `10024f0f` | `Unwind@10024f0f` | +| `Unwind@10024f32` | `10024f32` | `Unwind@10024f32` | +| `Unwind@10024f3d` | `10024f3d` | `Unwind@10024f3d` | +| `Unwind@10024f48` | `10024f48` | `Unwind@10024f48` | +| `Unwind@10024f53` | `10024f53` | `Unwind@10024f53` | +| `Unwind@10024f5e` | `10024f5e` | `Unwind@10024f5e` | +| `Unwind@10024f69` | `10024f69` | `Unwind@10024f69` | +| `Unwind@10024f74` | `10024f74` | `Unwind@10024f74` | +| `Unwind@10024f7f` | `10024f7f` | `Unwind@10024f7f` | +| `Unwind@10024f8a` | `10024f8a` | `Unwind@10024f8a` | +| `Unwind@10024f95` | `10024f95` | `Unwind@10024f95` | +| `Unwind@10024fc8` | `10024fc8` | `Unwind@10024fc8` | +| `Unwind@10024fd0` | `10024fd0` | `Unwind@10024fd0` | +| `Unwind@10024ff3` | `10024ff3` | `Unwind@10024ff3` | +| `Unwind@10024ffe` | `10024ffe` | `Unwind@10024ffe` | +| `Unwind@10025009` | `10025009` | `Unwind@10025009` | +| `Unwind@10025014` | `10025014` | `Unwind@10025014` | +| `Unwind@1002501f` | `1002501f` | `Unwind@1002501f` | +| `Unwind@1002502a` | `1002502a` | `Unwind@1002502a` | +| `Unwind@10025038` | `10025038` | `Unwind@10025038` | +| `Unwind@10025046` | `10025046` | `Unwind@10025046` | +| `Unwind@10025054` | `10025054` | `Unwind@10025054` | +| `Unwind@1002506c` | `1002506c` | `Unwind@1002506c` | +| `Unwind@10025084` | `10025084` | `Unwind@10025084` | +| `Unwind@1002509c` | `1002509c` | `Unwind@1002509c` | +| `Unwind@100250aa` | `100250aa` | `Unwind@100250aa` | +| `Unwind@100250b8` | `100250b8` | `Unwind@100250b8` | +| `Unwind@100250c6` | `100250c6` | `Unwind@100250c6` | +| `Unwind@100250d4` | `100250d4` | `Unwind@100250d4` | +| `Unwind@100250e2` | `100250e2` | `Unwind@100250e2` | +| `Unwind@100250f0` | `100250f0` | `Unwind@100250f0` | +| `Unwind@100250fe` | `100250fe` | `Unwind@100250fe` | +| `Unwind@1002510c` | `1002510c` | `Unwind@1002510c` | +| `Unwind@1002511a` | `1002511a` | `Unwind@1002511a` | +| `Unwind@10025128` | `10025128` | `Unwind@10025128` | +| `Unwind@10025130` | `10025130` | `Unwind@10025130` | +| `Unwind@10025138` | `10025138` | `Unwind@10025138` | +| `Unwind@10025146` | `10025146` | `Unwind@10025146` | +| `Unwind@1002514e` | `1002514e` | `Unwind@1002514e` | +| `Unwind@10025177` | `10025177` | `Unwind@10025177` | +| `Unwind@1002519a` | `1002519a` | `Unwind@1002519a` | +| `Unwind@100251bd` | `100251bd` | `Unwind@100251bd` | +| `Unwind@100251e0` | `100251e0` | `Unwind@100251e0` | +| `Unwind@10025203` | `10025203` | `Unwind@10025203` | +| `Unwind@10025229` | `10025229` | `Unwind@10025229` | +| `Unwind@1002524c` | `1002524c` | `Unwind@1002524c` | +| `Unwind@1002526f` | `1002526f` | `Unwind@1002526f` | +| `Unwind@10025292` | `10025292` | `Unwind@10025292` | +| `Unwind@100252b5` | `100252b5` | `Unwind@100252b5` | +| `Unwind@100252d8` | `100252d8` | `Unwind@100252d8` | +| `Unwind@100252fb` | `100252fb` | `Unwind@100252fb` | +| `Unwind@1002531e` | `1002531e` | `Unwind@1002531e` | +| `Unwind@10025341` | `10025341` | `Unwind@10025341` | +| `Unwind@10025364` | `10025364` | `Unwind@10025364` | +| `Unwind@10025387` | `10025387` | `Unwind@10025387` | +| `Unwind@100253ad` | `100253ad` | `Unwind@100253ad` | +| `Unwind@100253d0` | `100253d0` | `Unwind@100253d0` | +| `Unwind@100253f3` | `100253f3` | `Unwind@100253f3` | +| `Unwind@10025416` | `10025416` | `Unwind@10025416` | +| `Unwind@10025439` | `10025439` | `Unwind@10025439` | +| `Unwind@1002545c` | `1002545c` | `Unwind@1002545c` | +| `Unwind@1002547f` | `1002547f` | `Unwind@1002547f` | +| `Unwind@100254a2` | `100254a2` | `Unwind@100254a2` | +| `Unwind@100254c5` | `100254c5` | `Unwind@100254c5` | +| `Unwind@100254e8` | `100254e8` | `Unwind@100254e8` | +| `Unwind@100254f0` | `100254f0` | `Unwind@100254f0` | +| `Unwind@10025516` | `10025516` | `Unwind@10025516` | +| `Unwind@1002551e` | `1002551e` | `Unwind@1002551e` | +| `Unwind@10025544` | `10025544` | `Unwind@10025544` | +| `Unwind@1002554c` | `1002554c` | `Unwind@1002554c` | +| `Unwind@10025572` | `10025572` | `Unwind@10025572` | +| `Unwind@1002557a` | `1002557a` | `Unwind@1002557a` | +| `Unwind@100255a0` | `100255a0` | `Unwind@100255a0` | +| `Unwind@100255a8` | `100255a8` | `Unwind@100255a8` | +| `Unwind@100255ce` | `100255ce` | `Unwind@100255ce` | +| `Unwind@100255d6` | `100255d6` | `Unwind@100255d6` | +| `Unwind@100255fc` | `100255fc` | `Unwind@100255fc` | +| `Unwind@10025604` | `10025604` | `Unwind@10025604` | +| `Unwind@1002562a` | `1002562a` | `Unwind@1002562a` | +| `Unwind@10025632` | `10025632` | `Unwind@10025632` | +| `Unwind@10025658` | `10025658` | `Unwind@10025658` | +| `Unwind@10025660` | `10025660` | `Unwind@10025660` | +| `Unwind@10025686` | `10025686` | `Unwind@10025686` | +| `Unwind@1002568e` | `1002568e` | `Unwind@1002568e` | +| `Unwind@100256b4` | `100256b4` | `Unwind@100256b4` | +| `Unwind@100256bc` | `100256bc` | `Unwind@100256bc` | +| `Unwind@100256e2` | `100256e2` | `Unwind@100256e2` | +| `Unwind@100256ea` | `100256ea` | `Unwind@100256ea` | +| `Unwind@10025710` | `10025710` | `Unwind@10025710` | +| `Unwind@10025718` | `10025718` | `Unwind@10025718` | +| `Unwind@10025720` | `10025720` | `Unwind@10025720` | +| `Unwind@10025746` | `10025746` | `Unwind@10025746` | +| `Unwind@1002574e` | `1002574e` | `Unwind@1002574e` | +| `Unwind@10025759` | `10025759` | `Unwind@10025759` | +| `Unwind@1002577c` | `1002577c` | `Unwind@1002577c` | +| `Unwind@10025784` | `10025784` | `Unwind@10025784` | +| `Unwind@1002578c` | `1002578c` | `Unwind@1002578c` | +| `Unwind@100257b2` | `100257b2` | `Unwind@100257b2` | +| `Unwind@100257ba` | `100257ba` | `Unwind@100257ba` | +| `Unwind@100257c5` | `100257c5` | `Unwind@100257c5` | +| `Unwind@100257e8` | `100257e8` | `Unwind@100257e8` | +| `Unwind@100257f0` | `100257f0` | `Unwind@100257f0` | +| `Unwind@100257f8` | `100257f8` | `Unwind@100257f8` | +| `Unwind@1002581e` | `1002581e` | `Unwind@1002581e` | +| `Unwind@10025826` | `10025826` | `Unwind@10025826` | +| `Unwind@10025831` | `10025831` | `Unwind@10025831` | +| `Unwind@10025854` | `10025854` | `Unwind@10025854` | +| `Unwind@10025877` | `10025877` | `Unwind@10025877` | +| `Unwind@1002589a` | `1002589a` | `Unwind@1002589a` | +| `Unwind@100258bd` | `100258bd` | `Unwind@100258bd` | +| `Unwind@100258e0` | `100258e0` | `Unwind@100258e0` | +| `Unwind@10025903` | `10025903` | `Unwind@10025903` | +| `Unwind@10025926` | `10025926` | `Unwind@10025926` | +| `Unwind@10025949` | `10025949` | `Unwind@10025949` | +| `Unwind@1002596c` | `1002596c` | `Unwind@1002596c` | +| `Unwind@1002598f` | `1002598f` | `Unwind@1002598f` | +| `Unwind@10025997` | `10025997` | `Unwind@10025997` | +| `Unwind@100259bd` | `100259bd` | `Unwind@100259bd` | +| `Unwind@100259c5` | `100259c5` | `Unwind@100259c5` | +| `Unwind@100259eb` | `100259eb` | `Unwind@100259eb` | +| `Unwind@100259f3` | `100259f3` | `Unwind@100259f3` | +| `Unwind@10025a19` | `10025a19` | `Unwind@10025a19` | +| `Unwind@10025a21` | `10025a21` | `Unwind@10025a21` | +| `Unwind@10025a47` | `10025a47` | `Unwind@10025a47` | +| `Unwind@10025a4f` | `10025a4f` | `Unwind@10025a4f` | +| `Unwind@10025a75` | `10025a75` | `Unwind@10025a75` | +| `Unwind@10025a7d` | `10025a7d` | `Unwind@10025a7d` | +| `Unwind@10025aa3` | `10025aa3` | `Unwind@10025aa3` | +| `Unwind@10025aab` | `10025aab` | `Unwind@10025aab` | +| `Unwind@10025ad1` | `10025ad1` | `Unwind@10025ad1` | +| `Unwind@10025ad9` | `10025ad9` | `Unwind@10025ad9` | +| `Unwind@10025aff` | `10025aff` | `Unwind@10025aff` | +| `Unwind@10025b07` | `10025b07` | `Unwind@10025b07` | +| `Unwind@10025b2d` | `10025b2d` | `Unwind@10025b2d` | +| `Unwind@10025b35` | `10025b35` | `Unwind@10025b35` | +| `Unwind@10025b5b` | `10025b5b` | `Unwind@10025b5b` | +| `Unwind@10025b63` | `10025b63` | `Unwind@10025b63` | +| `Unwind@10025b89` | `10025b89` | `Unwind@10025b89` | +| `Unwind@10025b91` | `10025b91` | `Unwind@10025b91` | +| `Unwind@10025bb7` | `10025bb7` | `Unwind@10025bb7` | +| `Unwind@10025bbf` | `10025bbf` | `Unwind@10025bbf` | +| `Unwind@10025bc7` | `10025bc7` | `Unwind@10025bc7` | +| `Unwind@10025bed` | `10025bed` | `Unwind@10025bed` | +| `Unwind@10025bf5` | `10025bf5` | `Unwind@10025bf5` | +| `Unwind@10025c00` | `10025c00` | `Unwind@10025c00` | +| `Unwind@10025c23` | `10025c23` | `Unwind@10025c23` | +| `Unwind@10025c2b` | `10025c2b` | `Unwind@10025c2b` | +| `Unwind@10025c33` | `10025c33` | `Unwind@10025c33` | +| `Unwind@10025c59` | `10025c59` | `Unwind@10025c59` | +| `Unwind@10025c61` | `10025c61` | `Unwind@10025c61` | +| `Unwind@10025c6c` | `10025c6c` | `Unwind@10025c6c` | +| `Unwind@10025c8f` | `10025c8f` | `Unwind@10025c8f` | +| `Unwind@10025c97` | `10025c97` | `Unwind@10025c97` | +| `Unwind@10025c9f` | `10025c9f` | `Unwind@10025c9f` | +| `Unwind@10025cc5` | `10025cc5` | `Unwind@10025cc5` | +| `Unwind@10025ccd` | `10025ccd` | `Unwind@10025ccd` | +| `Unwind@10025cd8` | `10025cd8` | `Unwind@10025cd8` | +| `Unwind@10025cfb` | `10025cfb` | `Unwind@10025cfb` | +| `Unwind@10025d06` | `10025d06` | `Unwind@10025d06` | +| `Unwind@10025d2c` | `10025d2c` | `Unwind@10025d2c` | +| `Unwind@10025d34` | `10025d34` | `Unwind@10025d34` | +| `Unwind@10025d3c` | `10025d3c` | `Unwind@10025d3c` | +| `Unwind@10025d44` | `10025d44` | `Unwind@10025d44` | +| `Unwind@10025d4c` | `10025d4c` | `Unwind@10025d4c` | +| `Unwind@10025d6f` | `10025d6f` | `Unwind@10025d6f` | +| `Unwind@10025d77` | `10025d77` | `Unwind@10025d77` | +| `Unwind@10025d9a` | `10025d9a` | `Unwind@10025d9a` | +| `Unwind@10025da2` | `10025da2` | `Unwind@10025da2` | +| `Unwind@10025dc5` | `10025dc5` | `Unwind@10025dc5` | +| `Unwind@10025dcd` | `10025dcd` | `Unwind@10025dcd` | +| `Unwind@10025df0` | `10025df0` | `Unwind@10025df0` | +| `Unwind@10025df8` | `10025df8` | `Unwind@10025df8` | +| `Unwind@10025e00` | `10025e00` | `Unwind@10025e00` | +| `Unwind@10025e08` | `10025e08` | `Unwind@10025e08` | +| `Unwind@10025e10` | `10025e10` | `Unwind@10025e10` | +| `Unwind@10025e33` | `10025e33` | `Unwind@10025e33` | +| `Unwind@10025e3e` | `10025e3e` | `Unwind@10025e3e` | +| `Unwind@10025e49` | `10025e49` | `Unwind@10025e49` | +| `Unwind@10025e54` | `10025e54` | `Unwind@10025e54` | +| `Unwind@10025e5f` | `10025e5f` | `Unwind@10025e5f` | +| `Unwind@10025e6a` | `10025e6a` | `Unwind@10025e6a` | +| `Unwind@10025e9d` | `10025e9d` | `Unwind@10025e9d` | +| `Unwind@10025ec0` | `10025ec0` | `Unwind@10025ec0` | +| `Unwind@10025ecb` | `10025ecb` | `Unwind@10025ecb` | +| `Unwind@10025ef1` | `10025ef1` | `Unwind@10025ef1` | +| `Unwind@10025efe` | `10025efe` | `Unwind@10025efe` | +| `Unwind@10025f09` | `10025f09` | `Unwind@10025f09` | +| `Unwind@10025f16` | `10025f16` | `Unwind@10025f16` | +| `Unwind@10025f21` | `10025f21` | `Unwind@10025f21` | +| `Unwind@10025f2e` | `10025f2e` | `Unwind@10025f2e` | +| `Unwind@10025f39` | `10025f39` | `Unwind@10025f39` | +| `Unwind@10025f46` | `10025f46` | `Unwind@10025f46` | +| `Unwind@10025f53` | `10025f53` | `Unwind@10025f53` | +| `Unwind@10025f60` | `10025f60` | `Unwind@10025f60` | +| `Unwind@10025f6d` | `10025f6d` | `Unwind@10025f6d` | +| `Unwind@10025f7a` | `10025f7a` | `Unwind@10025f7a` | +| `Unwind@10025f87` | `10025f87` | `Unwind@10025f87` | +| `Unwind@10025f94` | `10025f94` | `Unwind@10025f94` | +| `Unwind@10025fa1` | `10025fa1` | `Unwind@10025fa1` | +| `Unwind@10025fd6` | `10025fd6` | `Unwind@10025fd6` | +| `Unwind@10025fe3` | `10025fe3` | `Unwind@10025fe3` | +| `Unwind@10025fee` | `10025fee` | `Unwind@10025fee` | +| `Unwind@10025ffb` | `10025ffb` | `Unwind@10025ffb` | +| `Unwind@10026006` | `10026006` | `Unwind@10026006` | +| `Unwind@10026013` | `10026013` | `Unwind@10026013` | +| `Unwind@1002601e` | `1002601e` | `Unwind@1002601e` | +| `Unwind@1002602b` | `1002602b` | `Unwind@1002602b` | +| `Unwind@10026038` | `10026038` | `Unwind@10026038` | +| `Unwind@10026045` | `10026045` | `Unwind@10026045` | +| `Unwind@10026052` | `10026052` | `Unwind@10026052` | +| `Unwind@1002605f` | `1002605f` | `Unwind@1002605f` | +| `Unwind@1002606c` | `1002606c` | `Unwind@1002606c` | +| `Unwind@10026079` | `10026079` | `Unwind@10026079` | +| `Unwind@10026086` | `10026086` | `Unwind@10026086` | +| `Unwind@10026093` | `10026093` | `Unwind@10026093` | +| `Unwind@100260c8` | `100260c8` | `Unwind@100260c8` | +| `Unwind@100260eb` | `100260eb` | `Unwind@100260eb` | +| `Unwind@10026144` | `10026144` | `Unwind@10026144` | +| `Unwind@10026167` | `10026167` | `Unwind@10026167` | +| `Unwind@1002618c` | `1002618c` | `Unwind@1002618c` | +| `Unwind@10026196` | `10026196` | `Unwind@10026196` | +| `Unwind@100261bb` | `100261bb` | `Unwind@100261bb` | +| `Unwind@100261de` | `100261de` | `Unwind@100261de` | +| `Unwind@10026201` | `10026201` | `Unwind@10026201` | +| `Unwind@10026209` | `10026209` | `Unwind@10026209` | +| `Unwind@10026213` | `10026213` | `Unwind@10026213` | +| `Unwind@1002621b` | `1002621b` | `Unwind@1002621b` | +| `Unwind@10026223` | `10026223` | `Unwind@10026223` | +| `Unwind@1002622b` | `1002622b` | `Unwind@1002622b` | +| `Unwind@1002624e` | `1002624e` | `Unwind@1002624e` | +| `Unwind@10026256` | `10026256` | `Unwind@10026256` | +| `Unwind@1002625e` | `1002625e` | `Unwind@1002625e` | +| `Unwind@10026266` | `10026266` | `Unwind@10026266` | +| `Unwind@1002626e` | `1002626e` | `Unwind@1002626e` | +| `Unwind@10026291` | `10026291` | `Unwind@10026291` | +| `Unwind@10026299` | `10026299` | `Unwind@10026299` | +| `Unwind@100262a1` | `100262a1` | `Unwind@100262a1` | +| `Unwind@100262a9` | `100262a9` | `Unwind@100262a9` | +| `Unwind@100262b1` | `100262b1` | `Unwind@100262b1` | +| `Unwind@100262d4` | `100262d4` | `Unwind@100262d4` | +| `Unwind@100262f7` | `100262f7` | `Unwind@100262f7` | +| `Rsrc_REGISTRY_65_409` | `1003d1cc` | `` | +| `Rsrc_REGISTRY_66_409` | `1003d440` | `` | +| `Rsrc_TYPELIB_1_409` | `1003d6c4` | `` | +| `Rsrc_StringTable_7_409` | `10057fdc` | `` | +| `Rsrc_Version_1_409` | `1005800c` | `` | +| `Rsrc_Manifest_2_409` | `100583d0` | `` | +| `ExceptionList` | `ffdff000` | `` | +| `StackBase` | `ffdff004` | `` | +| `StackLimit` | `ffdff008` | `` | +| `SubSystemTib` | `ffdff00c` | `` | +| `FiberData` | `ffdff010` | `` | +| `ArbitraryUserPointer` | `ffdff014` | `` | +| `Self` | `ffdff018` | `` | +| `EnvironmentPointer` | `ffdff01c` | `` | +| `ClientId` | `ffdff020` | `` | +| `ActiveRpcHandle` | `ffdff028` | `` | +| `ThreadLocalStoragePointer` | `ffdff02c` | `` | +| `ProcessEnvironmentBlock` | `ffdff030` | `` | +| `LastErrorValue` | `ffdff034` | `` | +| `CountOfOwnedCriticalSections` | `ffdff038` | `` | +| `CsrClientThread` | `ffdff03c` | `` | +| `Win32ThreadInfo` | `ffdff040` | `` | +| `User32Reserved` | `ffdff044` | `` | +| `UserReserved` | `ffdff0ac` | `` | +| `WOW32Reserved` | `ffdff0c0` | `` | +| `CurrentLocale` | `ffdff0c4` | `` | +| `FpSoftwareStatusRegister` | `ffdff0c8` | `` | +| `SystemReserved1` | `ffdff0cc` | `` | +| `ExceptionCode` | `ffdff1a4` | `` | +| `ActivationContextStackPointer` | `ffdff1a8` | `` | +| `SpareBytes` | `ffdff1ac` | `` | +| `TxFsContext` | `ffdff1d0` | `` | +| `GdiTebBatch` | `ffdff1d4` | `` | +| `RealClientId` | `ffdff6b4` | `` | +| `GdiCachedProcessHandle` | `ffdff6bc` | `` | +| `GdiClientPID` | `ffdff6c0` | `` | +| `GdiCLientTID` | `ffdff6c4` | `` | +| `GdiThreadLocalInfo` | `ffdff6c8` | `` | +| `Win32ClientInfo` | `ffdff6cc` | `` | +| `glDispatchTable` | `ffdff7c4` | `` | +| `glReserved1` | `ffdffb68` | `` | +| `glReserved2` | `ffdffbdc` | `` | +| `glSectionInfo` | `ffdffbe0` | `` | +| `glSection` | `ffdffbe4` | `` | +| `glTable` | `ffdffbe8` | `` | +| `glCurrentRC` | `ffdffbec` | `` | +| `glContext` | `ffdffbf0` | `` | +| `LastStatusValue` | `ffdffbf4` | `` | +| `StaticUnicodeBuffer` | `ffdffc00` | `` | +| `DeallocationStack` | `ffdffe0c` | `` | +| `TlsSlots` | `ffdffe10` | `` | +| `TlsLinks.Flink` | `ffdfff10` | `` | +| `TlsLinks.Blink` | `ffdfff14` | `` | +| `Vdm` | `ffdfff18` | `` | +| `ReservedForNtRpc` | `ffdfff1c` | `` | +| `DbgSsReserved` | `ffdfff20` | `` | +| `HardErrorMode` | `ffdfff28` | `` | +| `Instrumentation` | `ffdfff2c` | `` | +| `ActivityId` | `ffdfff50` | `` | +| `SubProcessTag` | `ffdfff60` | `` | +| `EtwLocalData` | `ffdfff64` | `` | +| `EtwTraceData` | `ffdfff68` | `` | +| `WinSockData` | `ffdfff6c` | `` | +| `GdiBatchCount` | `ffdfff70` | `` | +| `IdealProcessorValue` | `ffdfff74` | `` | +| `GuaranteedStackBytes` | `ffdfff78` | `` | +| `ReservedForPerf` | `ffdfff7c` | `` | +| `ReservedForOle` | `ffdfff80` | `` | +| `WaitingOnLoaderLock` | `ffdfff84` | `` | +| `SavedPriorityState` | `ffdfff88` | `` | +| `SoftPatchPtr1` | `ffdfff8c` | `` | +| `ThreadPoolData` | `ffdfff90` | `` | +| `TlsExpansionSlots` | `ffdfff94` | `` | +| `MuiGeneration` | `ffdfff98` | `` | +| `IsImpersonating` | `ffdfff9c` | `` | +| `NlsCache` | `ffdfffa0` | `` | +| `pShimData` | `ffdfffa4` | `` | +| `HeapVirtualAffinity` | `ffdfffa8` | `` | +| `CurrentTransactionHandle` | `ffdfffac` | `` | +| `ActiveFrame` | `ffdfffb0` | `` | +| `FlsData` | `ffdfffb4` | `` | +| `PreferredLanguages` | `ffdfffb8` | `` | +| `UserPrefLanguages` | `ffdfffbc` | `` | +| `MergedPrefLanguages` | `ffdfffc0` | `` | +| `MuiImpersonation` | `ffdfffc4` | `` | +| `CrossTebFlags` | `ffdfffc8` | `` | +| `SameTebFlags` | `ffdfffca` | `` | +| `TxnScopeEnterCallback` | `ffdfffcc` | `` | +| `TxnScopeExitCallback` | `ffdfffd0` | `` | +| `TxnScopeContext` | `ffdfffd4` | `` | +| `LockCount` | `ffdfffd8` | `` | +| `ResourceRetValue` | `ffdfffe0` | `` | + +## Interesting Strings and Referencing Functions + +| Address | String | Referencing Functions | +| ---: | --- | --- | +| `100274a8` | `Global\\Nmx.Statistic.Lock` | `FUN_100014ea@100014ea` | +| `10027540` | `` | `FUN_10001635@10001635\`, \`FUN_100016b2@100016b2` | +| `10027620` | `` | `FUN_100016b2@100016b2` | +| `10027988` | `e:\\bldsrc\\6\\s\\src\\nmx\\nmxadptr\\..\\..\\..\\sharedcomponents\\internal\\RTCommon\\Includes\\EngineServicesCommon\\NmxControl.h` | `FUN_100041a6@100041a6\`, \`FUN_100041a6@100041a6\`, \`FUN_100041a6@100041a6\`, \`FUN_10004208@10004208\`, \`FUN_10004208@10004208\`, \`FUN_10004208@10004208\`, \`FUN_10004208@10004208` | +| `10027d10` | `SOFTWARE\\ArchestrA\\Framework\\Nmx` | `FUN_100064d6@100064d6\`, \`FUN_10008281@10008281\`, \`FUN_1000831d@1000831d\`, \`FUN_1000f5b0@1000f5b0\`, \`FUN_1000f84f@1000f84f` | +| `10027f70` | `The Nmx TimeOut is: %d ms` | `FUN_10008281@10008281` | +| `10027fb8` | `The m_NmxTimeToBeReceived timer is: %d seconds` | `FUN_1000831d@1000831d` | +| `10028018` | `The m_NmxTimeToReachQueue timer is: %d seconds` | `FUN_1000831d@1000831d` | +| `10028290` | `Global\\Nmx.Statistic` | `FUN_10009c1b@10009c1b\`, \`FUN_10009cd3@10009cd3` | +| `10028378` | `CNmxAdapter::GetAnonymousEngineID - *pEngineID %d ` | `FUN_1000a01f@1000a01f` | +| `100283ac` | `CNmxAdapter::GetAnonymousEngineID - *m_pListAnonymousID %d ` | `FUN_1000a01f@1000a01f` | +| `100283ec` | `CNmxAdapter::GetAnonymousEngineID - FAILED ` | `FUN_1000a01f@1000a01f` | +| `1002841c` | `CNmxAdapter::GetAnonymousEngineID - m_pNmxStats == NULL ` | `FUN_1000a01f@1000a01f` | +| `10028458` | `CNmxAdapter::GetAnonymousEngineID - ENTER ` | `FUN_1000a01f@1000a01f` | +| `10028488` | `CNmxAdapter::GenerateErrorRequest() exited.` | `FUN_1000a24e@1000a24e` | +| `100284e0` | `CNmxAdapter::GenerateErrorRequest - failed to allocate memory size %d` | `FUN_1000a24e@1000a24e` | +| `10028570` | `CNmxAdapter::GenerateErrorRequest() entered.` | `FUN_1000a24e@1000a24e` | +| `100285d0` | `CNmxAdapter::ClearStats m_pListAnonymousID is set to NULL` | `Catch@1000a46e@1000a46e` | +| `10028648` | `CNmxAdapter::ClearStats succeded` | `FUN_1000a3fb@1000a3fb` | +| `10028890` | `QueryInterface for INmxService2 failed with error 0x%x` | `FUN_1000af6a@1000af6a` | +| `10028900` | `NmxAdptr CoCreateInstance for NmxSvc returned error 0x%x` | `FUN_1000af6a@1000af6a` | +| `10028988` | `CNmxAdapter::ParseExtendedRequest - ENABLE_ENGINE_DIAGS on C%d P%d E%d` | `FUN_1000b04e@1000b04e` | +| `10028a18` | `CNmxAdapter::ParseExtendedRequest - DISABLE_ENGINE_DIAGS on C%d P%d E%d` | `FUN_1000b04e@1000b04e` | +| `10028aa8` | `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL1 on C%d P%d E%d` | `FUN_1000b04e@1000b04e` | +| `10028b30` | `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL2 on C%d P%d E%d` | `FUN_1000b04e@1000b04e` | +| `10028bb8` | `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL3 on C%d P%d E%d` | `FUN_1000b04e@1000b04e` | +| `10028c40` | `********** End of Nmx Dump **********` | `FUN_1000b04e@1000b04e` | +| `100291e8` | `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL4 on C%d P%d E%d` | `FUN_1000b04e@1000b04e` | +| `10029558` | `CNmxAdapter::GetPriorityRequest - Discarding expired %d byte message from P%d E%d (cookie %d). In total: %d messages %I64d bytes` | `FUN_1000cd34@1000cd34\`, \`FUN_1000cd34@1000cd34\`, \`FUN_1000cd34@1000cd34` | +| `10029790` | `CNmxAdapter::isEngineValid Unknown error from Bootstrap::GetPlatformIdentity(), hr = %x` | `FUN_1000de2a@1000de2a` | +| `10029840` | `NmxAdapter.cpp` | `Catch@1000f6fa@1000f6fa\`, \`Catch@1000f792@1000f792\`, \`Catch@1000f80d@1000f80d\`, \`Catch@1000fa13@1000fa13\`, \`Catch@1000faae@1000faae\`, \`Catch@1000fb2c@1000fb2c\`, \`Catch@1000fc68@1000fc68\`, \`Catch@1000fd03@1000fd03\`, \`Catch@1000fd81@1000fd81\`, \`Catch@100101fd@100101fd\`, \`Catch@1001028c@1001028c\`, \`Catch@10010303@10010303\`, \`Catch@100104a6@100104a6\`, \`Catch@10010535@10010535\`, \`Catch@100105ac@100105ac\`, \`Catch@10010634@10010634\`, \`Catch@100106b7@100106b7\`, \`Catch@10010733@10010733\`, \`Catch@1001082b@1001082b\`, \`Catch@100108cf@100108cf\`, \`Catch@10010950@10010950\`, \`Catch@10010bd9@10010bd9\`, \`Catch@10010c74@10010c74\`, \`Catch@10010cf2@10010cf2\`, \`Catch@10011822@10011822\`, \`Catch@100118a5@100118a5\`, \`Catch@10011921@10011921\`, \`Catch@10011a1c@10011a1c\`, \`Catch@10011aa0@10011aa0\`, \`Catch@10011b1d@10011b1d\`, \`Catch@10011bf3@10011bf3\`, \`Catch@10011c76@10011c76\`, \`Catch@10011cf2@10011cf2\`, \`Catch@10011e87@10011e87\`, \`Catch@10011f33@10011f33\`, \`Catch@10011fba@10011fba\`, \`Catch@10012749@10012749\`, \`Catch@100127cd@100127cd\`, \`Catch@1001284a@1001284a\`, \`Catch@10012ee4@10012ee4\`, \`Catch@10012f7f@10012f7f\`, \`Catch@10012ffd@10012ffd\`, \`Catch@100131d4@100131d4\`, \`Catch@10013263@10013263\`, \`Catch@100132da@100132da\`, \`Catch@10013d35@10013d35\`, \`Catch@10013e2b@10013e2b\`, \`Catch@10013ea9@10013ea9\`, \`Catch@100141e7@100141e7\`, \`Catch@1001426a@1001426a\`, \`Catch@100142e6@100142e6\`, \`Catch@10014674@10014674\`, \`Catch@100146f7@100146f7\`, \`Catch@10014773@10014773\`, \`Catch@1001483d@1001483d\`, \`Catch@100148c0@100148c0\`, \`Catch@1001493c@1001493c\`, \`Catch@10014e25@10014e25\`, \`Catch@1001509f@1001509f\`, \`Catch@10015121@10015121\`, \`Catch@1001583f@1001583f\`, \`Catch@100158bd@100158bd\`, \`Catch@10015934@10015934\`, \`Catch@10015f2d@10015f2d\`, \`Catch@10015fce@10015fce\`, \`Catch@1001605f@1001605f\`, \`FUN_1000de2a@1000de2a\`, \`FUN_1000e15a@1000e15a` | +| `10029d88` | `The maximum send packet size is %d bytes.` | `FUN_1000f5b0@1000f5b0` | +| `10029e20` | `MaxMSMQSendPacketSize` | `FUN_1000f5b0@1000f5b0` | +| `10029f58` | `CNmxAdapter::FinalRelease - exited` | `FUN_1000fb71@1000fb71` | +| `10029fa0` | `CNmxAdapter::FinalRelease - enter` | `FUN_1000fb71@1000fb71` | +| `1002a150` | `CNmxAdapter_%d::GetConnectionInfo - will connect to platform %d` | `FUN_1000fdc6@1000fdc6` | +| `1002a368` | `CNmxAdapter::TransferData FAILED. NmxSvc cannot be created` | `FUN_10010996@10010996` | +| `1002a3e0` | `Calling ReRegisterNmxSvc in TransferData because NmxSvc pointer is bad.` | `FUN_10010996@10010996` | +| `1002a470` | `CNmxAdapter::TransferData recreating NmxSvc` | `FUN_10010996@10010996` | +| `1002a4c8` | `CNmxAdapter::PutResponse - Adapter_%d Failed to put response to Platform %d, Engine %d. Cookie=%d. Error=%x` | `FUN_10010d37@10010d37` | +| `1002a5a0` | `CNmxAdapter::PutResponse - Adapter_%d PutResponse to Platform %d, Engine %d. Cookie=%d. Size = %d.` | `FUN_10010d37@10010d37` | +| `1002a668` | `CNmxAdapter::PutResponse - calling TransferData to platform %d dwSize %d message %S ` | `FUN_10010d37@10010d37` | +| `1002a840` | `CoTaskMemAlloc() failed in CNmxAdapter::PutBadVersionResponse()` | `FUN_10011054@10011054` | +| `1002a8c0` | `CNmxAdapter::PutBadVersionResponse - Adapter_%d Failed PutResponse to Platform %d, Engine %d. Cookie=%d. TransferData Error=%x` | `FUN_10011054@10011054` | +| `1002a9c0` | `CNmxAdapter::PutBadVersionResponse - Adapter_%d PutResponse to Platform %d, Engine %d. Cookie=%d. Size = %d.` | `FUN_10011054@10011054` | +| `1002aaa0` | `CNmxAdapter::PutBadVersionResponse - calling TransferData to platform %d engine %d dwSize %d message %S ` | `FUN_10011054@10011054` | +| `1002abb0` | `ProcessDataReceived - Invalid NMX_REQUEST version: %d` | `FUN_100112da@100112da` | +| `1002acc0` | `ProcessDataReceived - Invalid Command NMX_RESPONSE version: %d` | `FUN_100112da@100112da` | +| `1002ad40` | `ProcessDataReceived - Invalid version NMX_RESPONSE version: %d` | `FUN_100112da@100112da` | +| `1002ae78` | `ProcessDataReceived pktHeader.byType %d UNRECOGNIZED` | `FUN_100112da@100112da` | +| `1002aee8` | `NMX Header %s: buffer size pktHeader.dwDataSize %d doesn't match received message size of %d` | `FUN_100112da@100112da` | +| `1002b068` | `CNmxAdapter::SyncCallThreadFn exited` | `FUN_10011d3a@10011d3a` | +| `1002b0b8` | `SyncCallThreadFn called m_pNmxSvc->RemoveSubscriberEngine for platform %d, engine %d. Return error is 0x%x` | `FUN_10011d3a@10011d3a` | +| `1002b1e8` | `Adapter_%d couldn't Initialize NmxSvc.` | `` | +| `1002b318` | `CNmxAdapter::Initialize - GetAnonymousEngineID FAILED.` | `` | +| `1002b388` | `CNmxAdapter::InitializeAnonymous - EXIT` | `` | +| `1002b3d8` | `CNmxAdapter::Initialize - EXIT ` | `` | +| `1002b400` | `InitializeAnonymous() - InitNmxService failed.` | `` | +| `1002b460` | `CNmxAdapter::InitializeAnonymous - InitNmxStats FAILED` | `` | +| `1002b4d0` | `CNmxAdapter::InitializeAnonymous - InitNmxStats FAILED ` | `` | +| `1002b5a8` | `CNmxAdapter::InitializeAnonymous - ENTER pPlatformId %d pEngineId %d ` | `` | +| `1002b5f0` | `CNmxAdapter::CleanRequests - calling ProcessDataReceived to platform %d, engine %d, message %s ` | `FUN_10012bfd@10012bfd` | +| `1002b6b8` | `NmxSvc RPC_S_SERVER_UNAVAILABLE.` | `FUN_10012da8@10012da8` | +| `1002b788` | `TransferData to platform %d, engine %d failed in CheckTimeouts - hr = 0x%x` | `FUN_10013338@10013338` | +| `1002b820` | `CNmxAdapter::CheckTimeouts - calling TransferData to platform %d, engine %d, message %S ` | `FUN_10013338@10013338` | +| `1002b9b8` | `CoTaskMemAlloc() failed in CNmxAdapter::GetRequest()` | `FUN_100136bf@100136bf` | +| `1002bb90` | `CNmxAdapter::GetResponse - m_Id.EngineId %d got an exception` | `` | +| `1002bc10` | `CoTaskMemAlloc() failed in CNmxAdapter::GetResponse()` | `` | +| `1002bc80` | `Adapter_%d GetResponse from Platform %d Engine %d, Cookie=%d, Size=%d, RespCode=%x` | `` | +| `1002bd28` | `CNmxAdapter::GetResponse - m_Id.EngineId Platform %d Engine %d, *pdwRequestHandle %d *pdwSize %d *pdwResponseCode %x ` | `` | +| `1002bda0` | `CNmxAdapter::GetResponse - m_Id.EngineId %d from Platform %d Engine %d, Cookie=%d, Size=%d, RespCode=%x ` | `` | +| `1002bf28` | `CNmxAdapter::GetResponse - GetPacketsSentInfo return NULL ptr for C%d P%d E%d` | `` | +| `1002bfc8` | `CNmxAdapter::GetResponse - ENTER: found a response for Engine %d ` | `` | +| `1002c0b8` | `CNmxAdapter::GetPartnerVersion for platform lPlatformId %d, plVersion %d hr 0x%x` | `FUN_10013eee@10013eee` | +| `1002c160` | `CNmxAdapter::GetPartnerVersion NmxSvc pointer 0x%x, hr 0x%x` | `FUN_10013eee@10013eee` | +| `1002c1d8` | `CNmxAdapter::GetPartnerVersion NmxSvc pointer reinitialized 0x%x, hr 0x%x` | `FUN_10013eee@10013eee` | +| `1002c4b0` | `CNmxAdapter::RemoveSubscriberEngine SyncCallThreadFn was called. Return value is 0x%x.` | `FUN_1001432c@1001432c` | +| `1002c560` | `CNmxAdapter::RemoveSubscriberEngine SyncCallThreadFn timed out` | `FUN_1001432c@1001432c` | +| `1002c5e0` | `CNmxAdapter::RemoveSubscriberEngine is called, but current window procedure is processing a input-synchronous message.` | `FUN_1001432c@1001432c` | +| `1002c888` | `CNmxAdapter::~CNmxAdapter - exit` | `FUN_10014bcf@10014bcf` | +| `1002ca28` | `CNmxAdapter::~CNmxAdapter - enter` | `FUN_10014bcf@10014bcf` | +| `1002ca70` | `Adapter_%d CNmxAdapter::PutRequest received invalid pointer.` | `FUN_10015169@10015169` | +| `1002cb80` | `CNmxAdapter::PutRequest - FAILED (hr = %X). Sending from EngineId %d to dwPlatformId %d dwEngineId %d. *pdwRequestHandle %d.` | `FUN_10015169@10015169` | +| `1002ccf8` | `Adapter_%d PutRequest failed. Dest Platform=%d, Engine=%d. Cookie=%d.` | `FUN_10015169@10015169` | +| `1002cd88` | `CNmxAdapter::PutRequest - m_Id.EngineId %d successfully to Platform=%d, Engine=%d. Cookie=%d ` | `FUN_10015169@10015169` | +| `1002cde8` | `Adapter_%d PutRequest successfully to Platform=%d, Engine=%d. Cookie=%d.` | `FUN_10015169@10015169` | +| `1002cf28` | `Write buffer is not big enough to send the request. Buffer size %d, request size %d` | `FUN_10015169@10015169` | +| `1002d138` | `CNmxAdapter::PutRequest - ENTER m_Id.EngineId %d Destination: Platform %d, Engine %d. Size = %d ` | `FUN_10015169@10015169` | +| `1002d1a0` | `Adapter_%d Enter PutRequest. Destination: Platform %d, Engine %d. Size = %d` | `FUN_10015169@10015169\`, \`FUN_10015169@10015169` | +| `1002d238` | `Adapter_%d Enter PutRequest. Destination Platform %d Engine %d is OVERLOADED` | `FUN_10015169@10015169` | +| `1002d2d8` | `Adapter_%d CNmxAdapter::PutRequest received invalid argument. Size is %d` | `FUN_10015169@10015169` | +| `1002d370` | `CNmxAdapter::PutRequestEx - TransferData FAILED (hr = %X). Sending from EngineId %d to dwPlatformId %d dwEngineId %d.` | `FUN_100159c3@100159c3` | +| `1002d460` | `Adapter_%d PutRequestEx failed. Dest Platform=%d, Engine=%d.` | `FUN_100159c3@100159c3` | +| `1002d4e0` | `CNmxAdapter::PutRequestEx - m_Id.EngineId %d successfully put request to Platform=%d, Engine=%d. ` | `FUN_100159c3@100159c3` | +| `1002d548` | `Adapter_%d PutRequestEx successfully to Platform=%d, Engine=%d. ` | `FUN_100159c3@100159c3` | +| `1002d5d0` | `CNmxAdapter::PutRequestEx - calling TransferData to platform %d engine %d %x dwSize %d message %S ` | `FUN_100159c3@100159c3` | +| `1002d638` | `CoTaskMemAlloc() failed in CNmxAdapter::PutRequestEx()` | `FUN_100159c3@100159c3\`, \`FUN_100159c3@100159c3` | +| `1002d6a8` | `CNmxAdapter::PutRequestEx - ENTER m_Id.EngineId %d Destination: Platform %d, Engine %d. Size = %d ` | `FUN_100159c3@100159c3` | +| `1002d710` | `Adapter_%d Enter PutRequestEx. Destination: Platform %d, Engine %d. Size = %d` | `FUN_100159c3@100159c3` | +| `1002ec18` | `InternalAddRef() CNmxAdapter::%p refcount = %d ` | `FUN_1001e5d5@1001e5d5` | +| `1002ec80` | `InternalRelease() CNmxAdapter::%p refcount = %d ` | `FUN_1001e619@1001e619` | +| `1002ece4` | `NmxSubscriberEngine` | `DllGetClassObject@1001e66a` | +| `1002ed0c` | `NmxSvcConnection` | `DllGetClassObject@1001e66a` | +| `1002ed30` | `NmxSvcError` | `DllGetClassObject@1001e66a` | +| `1002ed48` | `NmxQueueError` | `DllGetClassObject@1001e66a` | +| `1002ed64` | `NmxQueueHandle` | `DllGetClassObject@1001e66a` | +| `1002ed84` | `NmxTimeOut` | `DllGetClassObject@1001e66a` | +| `1002ed9c` | `NmxRefCount` | `DllGetClassObject@1001e66a` | +| `1002edb4` | `NmxTrace` | `DllGetClassObject@1001e66a` | +| `1002ee0b` | `FC:\\nmxdebug.ini` | `` | +| `1002ee1c` | `C:\\nmx_objectdebug.ini` | `FUN_1001ebdc@1001ebdc` | +| `1002ee34` | `NmxStatistics.cpp` | `Catch@1001f04d@1001f04d\`, \`Catch@1001f0cc@1001f0cc\`, \`Catch@1001f146@1001f146\`, \`Catch@1001f1fd@1001f1fd\`, \`Catch@1001f27e@1001f27e\`, \`Catch@1001f2f8@1001f2f8\`, \`Catch@1001f391@1001f391\`, \`Catch@1001f411@1001f411\`, \`Catch@1001f48a@1001f48a` | +| `1002ee48` | `Failed to create share memory for NmxStatistics` | `FUN_1001ef9b@1001ef9b` | +| `1002ef18` | `Ping ERR -- 8 -- sendto failed: error = %d` | `FUN_1001f5c1@1001f5c1` | +| `1002ef70` | `Ping ERR -- 11 -- recvfrom failed: %d` | `FUN_1001f5c1@1001f5c1` | +| `1002f168` | `Ping ERROR -- 2 -- WSASocket failed: %d` | `FUN_1001f5c1@1001f5c1` | +| `1003883e` | `WSASocketW` | `` | +| `10038cf6` | `InSendMessageEx` | `` | +| `1003a040` | `NmxAdptr.DLL` | `` | +| `1003b104` | `.?AVCNmxAdptrStats@@` | `` | +| `1003b4b8` | `.?AV?$CComObject@VCNmxAdapter@@@ATL@@` | `` | +| `1003b4e8` | `.?AVCNmxAdapter@@` | `` | +| `1003b578` | `.?AV?$CComCoClass@VCNmxAdapter@@$1?CLSID_Nmx@@3U_GUID@@B@ATL@@` | `` | +| `1003b5c0` | `.?AUINmx4@@` | `` | +| `1003b5d4` | `.?AUINmx3@@` | `` | +| `1003b5e8` | `.?AUINmx@@` | `` | +| `1003b5fc` | `.?AUINmx2@@` | `` | +| `1003b610` | `.?AUINmxHeartbeat@@` | `` | +| `1003b62c` | `.?AUINmxSvcCallback@@` | `` | +| `1003b64c` | `.?AUINmxSvcStatistics@@` | `` | +| `1003beb4` | `.?AV?$CComObject@VCNmxStatistics@@@ATL@@` | `` | +| `1003bee8` | `.?AVCNmxStatistics@@` | `` | +| `1003bf08` | `.?AV?$CComCoClass@VCNmxStatistics@@$1?CLSID_NmxStatistics@@3U_GUID@@B@ATL@@` | `` | +| `1003bf5c` | `.?AUINmxStatistics@@` | `` | +| `10057fe4` | `NmxAdptr` | `` | +| `1005813c` | `Nmx_v0021` | `` | +| `10058178` | `NmxAdptr Module` | `` | +| `10058370` | `NmxAdptr.DLL` | `` | + +## Interesting API Callers + +| Caller | Entry | Call Targets | +| --- | ---: | --- | +| `FUN_100011cc` | `100011cc` | `memcpy_s` | +| `FUN_1000123d` | `1000123d` | `memcpy_s` | +| `FUN_100012fa` | `100012fa` | `memcpy` | +| `FUN_10001313` | `10001313` | `memmove` | +| `FUN_100014ea` | `100014ea` | `memcpy` | +| `FUN_100015a0` | `100015a0` | `memcpy` | +| `FUN_1000185b` | `1000185b` | `memcpy_s` | +| `FUN_100018d7` | `100018d7` | `memset` | +| `Attach` | `1000196f` | `SysFreeString` | +| `FUN_1000199c` | `1000199c` | `SysFreeString` | +| `FUN_100019ff` | `100019ff` | `SysFreeString` | +| `FUN_10001f72` | `10001f72` | `SysFreeString` | +| `FUN_10002019` | `10002019` | `memset` | +| `FUN_100022fb` | `100022fb` | `memset` | +| `FUN_100024cf` | `100024cf` | `SysAllocString` | +| `FUN_10002510` | `10002510` | `SysAllocStringByteLen` | +| `FUN_10002589` | `10002589` | `SysFreeString` | +| `FUN_10002ae0` | `10002ae0` | `memmove` | +| `assign` | `10002afa` | `_wmemset` | +| `FUN_100034da` | `100034da` | `CoCreateInstance` | +| `FUN_100034fc` | `100034fc` | `CoCreateInstance` | +| `FUN_10003552` | `10003552` | `CoCreateInstance` | +| `FUN_100035a8` | `100035a8` | `CoCreateInstance` | +| `FUN_1000385d` | `1000385d` | `memset` | +| `FUN_100038d6` | `100038d6` | `memset` | +| `FUN_10003952` | `10003952` | `memset` | +| `FUN_100039ce` | `100039ce` | `memset` | +| `FUN_10003b48` | `10003b48` | `SysFreeString` | +| `FID_conflict:_Chassign` | `10003db5` | `_wmemset` | +| `FUN_10004312` | `10004312` | `SysAllocString` | +| `FUN_10004342` | `10004342` | `SysAllocString\`, \`SysFreeString` | +| `Copy` | `1000437f` | `SysAllocStringByteLen` | +| `FUN_100043bb` | `100043bb` | `SysFreeString` | +| `FUN_10004402` | `10004402` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10004513` | `10004513` | `SysFreeString` | +| `FUN_10004564` | `10004564` | `SysFreeString` | +| `FUN_1000575d` | `1000575d` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FID_conflict:_Tidy` | `10005ef6` | `memcpy` | +| `FUN_100060f9` | `100060f9` | `memcpy` | +| `FUN_1000621f` | `1000621f` | `memcpy` | +| `FUN_100064d6` | `100064d6` | `memset` | +| `FUN_100065f7` | `100065f7` | `SysFreeString` | +| `FUN_100073fd` | `100073fd` | `CoCreateInstance` | +| `FUN_1000757d` | `1000757d` | `CoCreateInstance` | +| `FUN_100076fd` | `100076fd` | `CoCreateInstance` | +| `FUN_10007a8b` | `10007a8b` | `SysFreeString` | +| `FUN_10007bbc` | `10007bbc` | `SysFreeString` | +| `FUN_10007cf6` | `10007cf6` | `memmove` | +| `FUN_10007dc1` | `10007dc1` | `memcpy` | +| `FUN_100080ad` | `100080ad` | `memcpy\`, \`memmove` | +| `FUN_10008f8e` | `10008f8e` | `CoCreateInstance` | +| `FUN_100090f9` | `100090f9` | `CoCreateInstance` | +| `FUN_100092b8` | `100092b8` | `CoCreateInstance` | +| `FUN_10009999` | `10009999` | `memcpy` | +| `FUN_10009a35` | `10009a35` | `memcpy` | +| `FID_conflict:assign` | `10009ada` | `memcpy` | +| `FUN_10009cd3` | `10009cd3` | `memset` | +| `FUN_10009f00` | `10009f00` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1000a24e` | `1000a24e` | `memcpy` | +| `FUN_1000ad6c` | `1000ad6c` | `memcpy` | +| `FUN_1000bc36` | `1000bc36` | `memmove` | +| `FUN_1000de2a` | `1000de2a` | `SysFreeString` | +| `FUN_1000e15a` | `1000e15a` | `SysFreeString` | +| `FUN_1000eb60` | `1000eb60` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FUN_1000fdc6` | `1000fdc6` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10010d37` | `10010d37` | `SysFreeString\`, \`memcpy` | +| `FUN_10011054` | `10011054` | `SysFreeString\`, \`memcpy` | +| `FUN_100112da` | `100112da` | `memcpy` | +| `FUN_10013338` | `10013338` | `SysFreeString` | +| `FUN_100136bf` | `100136bf` | `memcpy` | +| `FUN_1001432c` | `1001432c` | `InSendMessageEx\`, \`memcpy` | +| `FUN_10015169` | `10015169` | `SysFreeString\`, \`memcpy` | +| `FUN_100159c3` | `100159c3` | `SysFreeString\`, \`memcpy` | +| `FUN_100160da` | `100160da` | `memset` | +| `FUN_10016460` | `10016460` | `memset` | +| `FUN_100165da` | `100165da` | `memset` | +| `FUN_1001681b` | `1001681b` | `memcpy` | +| `FUN_100168ed` | `100168ed` | `memset` | +| `FUN_10016ec4` | `10016ec4` | `memset` | +| `FUN_100178e6` | `100178e6` | `memset` | +| `FUN_100179fe` | `100179fe` | `memset` | +| `FUN_10017aa0` | `10017aa0` | `memset` | +| `FUN_10017b0b` | `10017b0b` | `memset` | +| `FUN_1001850f` | `1001850f` | `memset` | +| `FUN_100185c2` | `100185c2` | `memset` | +| `FUN_10018638` | `10018638` | `memset` | +| `FUN_10019140` | `10019140` | `memset` | +| `FUN_100191f3` | `100191f3` | `memset` | +| `FUN_10019269` | `10019269` | `memset` | +| `FUN_10019d83` | `10019d83` | `memset` | +| `FUN_10019e9b` | `10019e9b` | `memset` | +| `FUN_10019f3d` | `10019f3d` | `memset` | +| `FUN_10019fab` | `10019fab` | `memset` | +| `FUN_1001a9ad` | `1001a9ad` | `memset` | +| `FUN_1001aa60` | `1001aa60` | `memset` | +| `FUN_1001aad6` | `1001aad6` | `memset` | +| `FUN_1001b555` | `1001b555` | `memset` | +| `FUN_1001b608` | `1001b608` | `memset` | +| `FUN_1001b67e` | `1001b67e` | `memset` | +| `FUN_1001bbc5` | `1001bbc5` | `AtlInternalQueryInterface` | +| `FUN_1001bca4` | `1001bca4` | `AtlInternalQueryInterface` | +| `FUN_1001bce4` | `1001bce4` | `AtlInternalQueryInterface` | +| `FUN_1001bd2e` | `1001bd2e` | `AtlInternalQueryInterface` | +| `FUN_1001bead` | `1001bead` | `CoCreateInstance` | +| `FUN_1001bfa4` | `1001bfa4` | `SysFreeString` | +| `FUN_1001c076` | `1001c076` | `SysFreeString` | +| `FUN_1001c46e` | `1001c46e` | `memset` | +| `FUN_1001c4fb` | `1001c4fb` | `memset` | +| `FUN_1001c582` | `1001c582` | `memset` | +| `FUN_1001cc62` | `1001cc62` | `memset` | +| `FUN_1001db5c` | `1001db5c` | `memset` | +| `FUN_1001dc0f` | `1001dc0f` | `memset` | +| `FUN_1001dc85` | `1001dc85` | `memset` | +| `FUN_1001e43b` | `1001e43b` | `memset` | +| `FUN_1001e4ee` | `1001e4ee` | `memset` | +| `FUN_1001e564` | `1001e564` | `memset` | +| `FUN_1001e7a8` | `1001e7a8` | `AtlInternalQueryInterface` | +| `FUN_1001e82a` | `1001e82a` | `AtlInternalQueryInterface` | +| `FUN_1001eeb5` | `1001eeb5` | `memcpy` | +| `FUN_1001ef3d` | `1001ef3d` | `memset` | +| `FUN_1001f4cd` | `1001f4cd` | `memset` | +| `FUN_1001f5c1` | `1001f5c1` | `closesocket\`, \`memcpy\`, \`memset\`, \`recvfrom\`, \`sendto` | +| `memmove_s` | `1002003c` | `memmove_s` | +| `RemoveAt` | `1002005d` | `memmove_s` | +| `FUN_100200f2` | `100200f2` | `memset` | +| `FUN_10020332` | `10020332` | `memset` | +| `_com_invoke_helper` | `100205b0` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit\`, \`memset` | +| `_com_handle_excepinfo` | `10020ca0` | `SysFreeString` | + diff --git a/analysis/ghidra/exports/NmxAdptr.dll.string-refs.tsv b/analysis/ghidra/exports/NmxAdptr.dll.string-refs.tsv new file mode 100644 index 0000000..7f5d6db --- /dev/null +++ b/analysis/ghidra/exports/NmxAdptr.dll.string-refs.tsv @@ -0,0 +1,204 @@ +string_address string_value ref_from ref_function +100274a8 Global\Nmx.Statistic.Lock 1000152a FUN_100014ea@100014ea +10027540 10001689 FUN_10001635@10001635 +10027540 1000170a FUN_100016b2@100016b2 +10027620 10001723 FUN_100016b2@100016b2 +10027988 e:\bldsrc\6\s\src\nmx\nmxadptr\..\..\..\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 100041b6 FUN_100041a6@100041a6 +10027988 e:\bldsrc\6\s\src\nmx\nmxadptr\..\..\..\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 100041dd FUN_100041a6@100041a6 +10027988 e:\bldsrc\6\s\src\nmx\nmxadptr\..\..\..\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 1000421d FUN_10004208@10004208 +10027988 e:\bldsrc\6\s\src\nmx\nmxadptr\..\..\..\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 10004248 FUN_10004208@10004208 +10027988 e:\bldsrc\6\s\src\nmx\nmxadptr\..\..\..\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 1000426f FUN_10004208@10004208 +10027988 e:\bldsrc\6\s\src\nmx\nmxadptr\..\..\..\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 100041b1 FUN_100041a6@100041a6 +10027988 e:\bldsrc\6\s\src\nmx\nmxadptr\..\..\..\sharedcomponents\internal\RTCommon\Includes\EngineServicesCommon\NmxControl.h 10004218 FUN_10004208@10004208 +10027d10 SOFTWARE\ArchestrA\Framework\Nmx 100082a4 FUN_10008281@10008281 +10027d10 SOFTWARE\ArchestrA\Framework\Nmx 1000f8a5 FUN_1000f84f@1000f84f +10027d10 SOFTWARE\ArchestrA\Framework\Nmx 1000833e FUN_1000831d@1000831d +10027d10 SOFTWARE\ArchestrA\Framework\Nmx 10006504 FUN_100064d6@100064d6 +10027d10 SOFTWARE\ArchestrA\Framework\Nmx 1000f5ed FUN_1000f5b0@1000f5b0 +10027f70 The Nmx TimeOut is: %d ms 100082ed FUN_10008281@10008281 +10027fb8 The m_NmxTimeToBeReceived timer is: %d seconds 10008424 FUN_1000831d@1000831d +10028018 The m_NmxTimeToReachQueue timer is: %d seconds 100083ee FUN_1000831d@1000831d +10028290 Global\Nmx.Statistic 10009c71 FUN_10009c1b@10009c1b +10028290 Global\Nmx.Statistic 10009d4a FUN_10009cd3@10009cd3 +10028378 CNmxAdapter::GetAnonymousEngineID - *pEngineID %d 1000a171 FUN_1000a01f@1000a01f +100283ac CNmxAdapter::GetAnonymousEngineID - *m_pListAnonymousID %d 1000a15a FUN_1000a01f@1000a01f +100283ec CNmxAdapter::GetAnonymousEngineID - FAILED 1000a114 FUN_1000a01f@1000a01f +1002841c CNmxAdapter::GetAnonymousEngineID - m_pNmxStats == NULL 1000a067 FUN_1000a01f@1000a01f +10028458 CNmxAdapter::GetAnonymousEngineID - ENTER 1000a047 FUN_1000a01f@1000a01f +10028488 CNmxAdapter::GenerateErrorRequest() exited. 1000a3c7 FUN_1000a24e@1000a24e +100284e0 CNmxAdapter::GenerateErrorRequest - failed to allocate memory size %d 1000a394 FUN_1000a24e@1000a24e +10028570 CNmxAdapter::GenerateErrorRequest() entered. 1000a281 FUN_1000a24e@1000a24e +100285d0 CNmxAdapter::ClearStats m_pListAnonymousID is set to NULL 1000a482 Catch@1000a46e@1000a46e +10028648 CNmxAdapter::ClearStats succeded 1000a44f FUN_1000a3fb@1000a3fb +10028890 QueryInterface for INmxService2 failed with error 0x%x 1000aff8 FUN_1000af6a@1000af6a +10028900 NmxAdptr CoCreateInstance for NmxSvc returned error 0x%x 1000afc9 FUN_1000af6a@1000af6a +10028988 CNmxAdapter::ParseExtendedRequest - ENABLE_ENGINE_DIAGS on C%d P%d E%d 1000b368 FUN_1000b04e@1000b04e +10028a18 CNmxAdapter::ParseExtendedRequest - DISABLE_ENGINE_DIAGS on C%d P%d E%d 1000b33d FUN_1000b04e@1000b04e +10028aa8 CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL1 on C%d P%d E%d 1000b324 FUN_1000b04e@1000b04e +10028b30 CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL2 on C%d P%d E%d 1000b30b FUN_1000b04e@1000b04e +10028bb8 CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL3 on C%d P%d E%d 1000b2e4 FUN_1000b04e@1000b04e +10028c40 ********** End of Nmx Dump ********** 1000b2ba FUN_1000b04e@1000b04e +100291e8 CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL4 on C%d P%d E%d 1000b09a FUN_1000b04e@1000b04e +10029558 CNmxAdapter::GetPriorityRequest - Discarding expired %d byte message from P%d E%d (cookie %d). In total: %d messages %I64d bytes 1000ce29 FUN_1000cd34@1000cd34 +10029558 CNmxAdapter::GetPriorityRequest - Discarding expired %d byte message from P%d E%d (cookie %d). In total: %d messages %I64d bytes 1000cf68 FUN_1000cd34@1000cd34 +10029558 CNmxAdapter::GetPriorityRequest - Discarding expired %d byte message from P%d E%d (cookie %d). In total: %d messages %I64d bytes 1000d0bc FUN_1000cd34@1000cd34 +10029790 CNmxAdapter::isEngineValid Unknown error from Bootstrap::GetPlatformIdentity(), hr = %x 1000df8a FUN_1000de2a@1000de2a +10029840 NmxAdapter.cpp 1000f80f Catch@1000f80d@1000f80d +10029840 NmxAdapter.cpp 10015844 Catch@1001583f@1001583f +10029840 NmxAdapter.cpp 10014842 Catch@1001483d@1001483d +10029840 NmxAdapter.cpp 10010830 Catch@1001082b@1001082b +10029840 NmxAdapter.cpp 10011827 Catch@10011822@10011822 +10029840 NmxAdapter.cpp 1001284f Catch@1001284a@1001284a +10029840 NmxAdapter.cpp 100158c2 Catch@100158bd@100158bd +10029840 NmxAdapter.cpp 100118aa Catch@100118a5@100118a5 +10029840 NmxAdapter.cpp 100108d4 Catch@100108cf@100108cf +10029840 NmxAdapter.cpp 100148c5 Catch@100148c0@100148c0 +10029840 NmxAdapter.cpp 10014941 Catch@1001493c@1001493c +10029840 NmxAdapter.cpp 10015939 Catch@10015934@10015934 +10029840 NmxAdapter.cpp 10011926 Catch@10011921@10011921 +10029840 NmxAdapter.cpp 10010955 Catch@10010950@10010950 +10029840 NmxAdapter.cpp 10011a21 Catch@10011a1c@10011a1c +10029840 NmxAdapter.cpp 1000fa18 Catch@1000fa13@1000fa13 +10029840 NmxAdapter.cpp 1000fab3 Catch@1000faae@1000faae +10029840 NmxAdapter.cpp 10011aa5 Catch@10011aa0@10011aa0 +10029840 NmxAdapter.cpp 10011b22 Catch@10011b1d@10011b1d +10029840 NmxAdapter.cpp 1000fb31 Catch@1000fb2c@1000fb2c +10029840 NmxAdapter.cpp 10010bde Catch@10010bd9@10010bd9 +10029840 NmxAdapter.cpp 10011bf8 Catch@10011bf3@10011bf3 +10029840 NmxAdapter.cpp 10011c7b Catch@10011c76@10011c76 +10029840 NmxAdapter.cpp 10010c79 Catch@10010c74@10010c74 +10029840 NmxAdapter.cpp 1000fc6d Catch@1000fc68@1000fc68 +10029840 NmxAdapter.cpp 10010cf7 Catch@10010cf2@10010cf2 +10029840 NmxAdapter.cpp 10011cf7 Catch@10011cf2@10011cf2 +10029840 NmxAdapter.cpp 1000fd08 Catch@1000fd03@1000fd03 +10029840 NmxAdapter.cpp 10013d3a Catch@10013d35@10013d35 +10029840 NmxAdapter.cpp 1000fd86 Catch@1000fd81@1000fd81 +10029840 NmxAdapter.cpp 10013e30 Catch@10013e2b@10013e2b +10029840 NmxAdapter.cpp 10014e2a Catch@10014e25@10014e25 +10029840 NmxAdapter.cpp 10011e8c Catch@10011e87@10011e87 +10029840 NmxAdapter.cpp 10013eae Catch@10013ea9@10013ea9 +10029840 NmxAdapter.cpp 10012ee9 Catch@10012ee4@10012ee4 +10029840 NmxAdapter.cpp 10011f38 Catch@10011f33@10011f33 +10029840 NmxAdapter.cpp 10015f32 Catch@10015f2d@10015f2d +10029840 NmxAdapter.cpp 10012f84 Catch@10012f7f@10012f7f +10029840 NmxAdapter.cpp 10011fbf Catch@10011fba@10011fba +10029840 NmxAdapter.cpp 10015fd3 Catch@10015fce@10015fce +10029840 NmxAdapter.cpp 10013002 Catch@10012ffd@10012ffd +10029840 NmxAdapter.cpp 10016064 Catch@1001605f@1001605f +10029840 NmxAdapter.cpp 100150a4 Catch@1001509f@1001509f +10029840 NmxAdapter.cpp 10015126 Catch@10015121@10015121 +10029840 NmxAdapter.cpp 1000e1b6 FUN_1000e15a@1000e15a +10029840 NmxAdapter.cpp 100131d9 Catch@100131d4@100131d4 +10029840 NmxAdapter.cpp 10010202 Catch@100101fd@100101fd +10029840 NmxAdapter.cpp 100141ec Catch@100141e7@100141e7 +10029840 NmxAdapter.cpp 1001426f Catch@1001426a@1001426a +10029840 NmxAdapter.cpp 10013268 Catch@10013263@10013263 +10029840 NmxAdapter.cpp 10010291 Catch@1001028c@1001028c +10029840 NmxAdapter.cpp 100132df Catch@100132da@100132da +10029840 NmxAdapter.cpp 100142eb Catch@100142e6@100142e6 +10029840 NmxAdapter.cpp 10010308 Catch@10010303@10010303 +10029840 NmxAdapter.cpp 100104ab Catch@100104a6@100104a6 +10029840 NmxAdapter.cpp 1001053a Catch@10010535@10010535 +10029840 NmxAdapter.cpp 100105b1 Catch@100105ac@100105ac +10029840 NmxAdapter.cpp 10010639 Catch@10010634@10010634 +10029840 NmxAdapter.cpp 10014679 Catch@10014674@10014674 +10029840 NmxAdapter.cpp 100106bc Catch@100106b7@100106b7 +10029840 NmxAdapter.cpp 1000f6fc Catch@1000f6fa@1000f6fa +10029840 NmxAdapter.cpp 100146fc Catch@100146f7@100146f7 +10029840 NmxAdapter.cpp 10010738 Catch@10010733@10010733 +10029840 NmxAdapter.cpp 1001274e Catch@10012749@10012749 +10029840 NmxAdapter.cpp 10014778 Catch@10014773@10014773 +10029840 NmxAdapter.cpp 1000f794 Catch@1000f792@1000f792 +10029840 NmxAdapter.cpp 100127d2 Catch@100127cd@100127cd +10029840 NmxAdapter.cpp 1000dea1 FUN_1000de2a@1000de2a +10029840 NmxAdapter.cpp 1001295c +10029840 NmxAdapter.cpp 1001262a +10029d88 The maximum send packet size is %d bytes. 1000f674 FUN_1000f5b0@1000f5b0 +10029e20 MaxMSMQSendPacketSize 1000f607 FUN_1000f5b0@1000f5b0 +10029f58 CNmxAdapter::FinalRelease - exited 1000fc33 FUN_1000fb71@1000fb71 +10029fa0 CNmxAdapter::FinalRelease - enter 1000fbc1 FUN_1000fb71@1000fb71 +1002a150 CNmxAdapter_%d::GetConnectionInfo - will connect to platform %d 1000ff02 FUN_1000fdc6@1000fdc6 +1002a368 CNmxAdapter::TransferData FAILED. NmxSvc cannot be created 10010b9f FUN_10010996@10010996 +1002a3e0 Calling ReRegisterNmxSvc in TransferData because NmxSvc pointer is bad. 10010a9a FUN_10010996@10010996 +1002a470 CNmxAdapter::TransferData recreating NmxSvc 100109fc FUN_10010996@10010996 +1002a4c8 CNmxAdapter::PutResponse - Adapter_%d Failed to put response to Platform %d, Engine %d. Cookie=%d. Error=%x 10011021 FUN_10010d37@10010d37 +1002a5a0 CNmxAdapter::PutResponse - Adapter_%d PutResponse to Platform %d, Engine %d. Cookie=%d. Size = %d. 10010fa5 FUN_10010d37@10010d37 +1002a668 CNmxAdapter::PutResponse - calling TransferData to platform %d dwSize %d message %S 10010ee0 FUN_10010d37@10010d37 +1002a840 CoTaskMemAlloc() failed in CNmxAdapter::PutBadVersionResponse() 100112ad FUN_10011054@10011054 +1002a8c0 CNmxAdapter::PutBadVersionResponse - Adapter_%d Failed PutResponse to Platform %d, Engine %d. Cookie=%d. TransferData Error=%x 10011262 FUN_10011054@10011054 +1002a9c0 CNmxAdapter::PutBadVersionResponse - Adapter_%d PutResponse to Platform %d, Engine %d. Cookie=%d. Size = %d. 1001122d FUN_10011054@10011054 +1002aaa0 CNmxAdapter::PutBadVersionResponse - calling TransferData to platform %d engine %d dwSize %d message %S 100111c4 FUN_10011054@10011054 +1002abb0 ProcessDataReceived - Invalid NMX_REQUEST version: %d 100116ac FUN_100112da@100112da +1002acc0 ProcessDataReceived - Invalid Command NMX_RESPONSE version: %d 10011592 FUN_100112da@100112da +1002ad40 ProcessDataReceived - Invalid version NMX_RESPONSE version: %d 10011544 FUN_100112da@100112da +1002ae78 ProcessDataReceived pktHeader.byType %d UNRECOGNIZED 1001143a FUN_100112da@100112da +1002aee8 NMX Header %s: buffer size pktHeader.dwDataSize %d doesn't match received message size of %d 100113d8 FUN_100112da@100112da +1002b068 CNmxAdapter::SyncCallThreadFn exited 10012024 FUN_10011d3a@10011d3a +1002b0b8 SyncCallThreadFn called m_pNmxSvc->RemoveSubscriberEngine for platform %d, engine %d. Return error is 0x%x 10011e4a FUN_10011d3a@10011d3a +1002b1e8 Adapter_%d couldn't Initialize NmxSvc. 10012669 +1002b318 CNmxAdapter::Initialize - GetAnonymousEngineID FAILED. 10012bcc +1002b388 CNmxAdapter::InitializeAnonymous - EXIT 10012b8b +1002b3d8 CNmxAdapter::Initialize - EXIT 10012b60 +1002b400 InitializeAnonymous() - InitNmxService failed. 10012a92 +1002b460 CNmxAdapter::InitializeAnonymous - InitNmxStats FAILED 100129d3 +1002b4d0 CNmxAdapter::InitializeAnonymous - InitNmxStats FAILED 100129a8 +1002b5a8 CNmxAdapter::InitializeAnonymous - ENTER pPlatformId %d pEngineId %d 100128c7 +1002b5f0 CNmxAdapter::CleanRequests - calling ProcessDataReceived to platform %d, engine %d, message %s 10012cf4 FUN_10012bfd@10012bfd +1002b6b8 NmxSvc RPC_S_SERVER_UNAVAILABLE. 10012e44 FUN_10012da8@10012da8 +1002b788 TransferData to platform %d, engine %d failed in CheckTimeouts - hr = 0x%x 100135e3 FUN_10013338@10013338 +1002b820 CNmxAdapter::CheckTimeouts - calling TransferData to platform %d, engine %d, message %S 1001356c FUN_10013338@10013338 +1002b9b8 CoTaskMemAlloc() failed in CNmxAdapter::GetRequest() 10013920 FUN_100136bf@100136bf +1002bb90 CNmxAdapter::GetResponse - m_Id.EngineId %d got an exception 10013dc5 +1002c0b8 CNmxAdapter::GetPartnerVersion for platform lPlatformId %d, plVersion %d hr 0x%x 10014000 FUN_10013eee@10013eee +1002c160 CNmxAdapter::GetPartnerVersion NmxSvc pointer 0x%x, hr 0x%x 10013fc1 FUN_10013eee@10013eee +1002c1d8 CNmxAdapter::GetPartnerVersion NmxSvc pointer reinitialized 0x%x, hr 0x%x 10013f7c FUN_10013eee@10013eee +1002c4b0 CNmxAdapter::RemoveSubscriberEngine SyncCallThreadFn was called. Return value is 0x%x. 100145f4 FUN_1001432c@1001432c +1002c560 CNmxAdapter::RemoveSubscriberEngine SyncCallThreadFn timed out 100145b5 FUN_1001432c@1001432c +1002c5e0 CNmxAdapter::RemoveSubscriberEngine is called, but current window procedure is processing a input-synchronous message. 1001452e FUN_1001432c@1001432c +1002c888 CNmxAdapter::~CNmxAdapter - exit 10014dfc FUN_10014bcf@10014bcf +1002ca28 CNmxAdapter::~CNmxAdapter - enter 10014c2a FUN_10014bcf@10014bcf +1002ca70 Adapter_%d CNmxAdapter::PutRequest received invalid pointer. 100159a3 FUN_10015169@10015169 +1002cb80 CNmxAdapter::PutRequest - FAILED (hr = %X). Sending from EngineId %d to dwPlatformId %d dwEngineId %d. *pdwRequestHandle %d. 100157c0 FUN_10015169@10015169 +1002ccf8 Adapter_%d PutRequest failed. Dest Platform=%d, Engine=%d. Cookie=%d. 10015726 FUN_10015169@10015169 +1002cd88 CNmxAdapter::PutRequest - m_Id.EngineId %d successfully to Platform=%d, Engine=%d. Cookie=%d 100156ee FUN_10015169@10015169 +1002cde8 Adapter_%d PutRequest successfully to Platform=%d, Engine=%d. Cookie=%d. 100156ba FUN_10015169@10015169 +1002cf28 Write buffer is not big enough to send the request. Buffer size %d, request size %d 100154f0 FUN_10015169@10015169 +1002d138 CNmxAdapter::PutRequest - ENTER m_Id.EngineId %d Destination: Platform %d, Engine %d. Size = %d 10015292 FUN_10015169@10015169 +1002d1a0 Adapter_%d Enter PutRequest. Destination: Platform %d, Engine %d. Size = %d 100152cb FUN_10015169@10015169 +1002d1a0 Adapter_%d Enter PutRequest. Destination: Platform %d, Engine %d. Size = %d 10015265 FUN_10015169@10015169 +1002d238 Adapter_%d Enter PutRequest. Destination Platform %d Engine %d is OVERLOADED 1001522f FUN_10015169@10015169 +1002d2d8 Adapter_%d CNmxAdapter::PutRequest received invalid argument. Size is %d 100151ba FUN_10015169@10015169 +1002d370 CNmxAdapter::PutRequestEx - TransferData FAILED (hr = %X). Sending from EngineId %d to dwPlatformId %d dwEngineId %d. 10015e85 FUN_100159c3@100159c3 +1002d460 Adapter_%d PutRequestEx failed. Dest Platform=%d, Engine=%d. 10015dbd FUN_100159c3@100159c3 +1002d4e0 CNmxAdapter::PutRequestEx - m_Id.EngineId %d successfully put request to Platform=%d, Engine=%d. 10015d7a FUN_100159c3@100159c3 +1002d548 Adapter_%d PutRequestEx successfully to Platform=%d, Engine=%d. 10015d48 FUN_100159c3@100159c3 +1002d5d0 CNmxAdapter::PutRequestEx - calling TransferData to platform %d engine %d %x dwSize %d message %S 10015cc3 FUN_100159c3@100159c3 +1002d638 CoTaskMemAlloc() failed in CNmxAdapter::PutRequestEx() 10015b9f FUN_100159c3@100159c3 +1002d638 CoTaskMemAlloc() failed in CNmxAdapter::PutRequestEx() 10015f06 FUN_100159c3@100159c3 +1002d6a8 CNmxAdapter::PutRequestEx - ENTER m_Id.EngineId %d Destination: Platform %d, Engine %d. Size = %d 10015a74 FUN_100159c3@100159c3 +1002d710 Adapter_%d Enter PutRequestEx. Destination: Platform %d, Engine %d. Size = %d 10015a44 FUN_100159c3@100159c3 +1002ec18 InternalAddRef() CNmxAdapter::%p refcount = %d 1001e5fb FUN_1001e5d5@1001e5d5 +1002ec80 InternalRelease() CNmxAdapter::%p refcount = %d 1001e63f FUN_1001e619@1001e619 +1002ece4 NmxSubscriberEngine 1001e738 DllGetClassObject@1001e66a +1002ed0c NmxSvcConnection 1001e721 DllGetClassObject@1001e66a +1002ed30 NmxSvcError 1001e70a DllGetClassObject@1001e66a +1002ed48 NmxQueueError 1001e6f3 DllGetClassObject@1001e66a +1002ed64 NmxQueueHandle 1001e6dc DllGetClassObject@1001e66a +1002ed84 NmxTimeOut 1001e6c5 DllGetClassObject@1001e66a +1002ed9c NmxRefCount 1001e6ae DllGetClassObject@1001e66a +1002edb4 NmxTrace 1001e699 DllGetClassObject@1001e66a +1002ee1c C:\nmx_objectdebug.ini 1001ebea FUN_1001ebdc@1001ebdc +1002ee34 NmxStatistics.cpp 1001f04f Catch@1001f04d@1001f04d +1002ee34 NmxStatistics.cpp 1001f0ce Catch@1001f0cc@1001f0cc +1002ee34 NmxStatistics.cpp 1001f148 Catch@1001f146@1001f146 +1002ee34 NmxStatistics.cpp 1001f1ff Catch@1001f1fd@1001f1fd +1002ee34 NmxStatistics.cpp 1001f280 Catch@1001f27e@1001f27e +1002ee34 NmxStatistics.cpp 1001f2fa Catch@1001f2f8@1001f2f8 +1002ee34 NmxStatistics.cpp 1001f393 Catch@1001f391@1001f391 +1002ee34 NmxStatistics.cpp 1001f413 Catch@1001f411@1001f411 +1002ee34 NmxStatistics.cpp 1001f48c Catch@1001f48a@1001f48a +1002ee48 Failed to create share memory for NmxStatistics 1001f017 FUN_1001ef9b@1001ef9b +1002ef18 Ping ERR -- 8 -- sendto failed: error = %d 1001fb39 FUN_1001f5c1@1001f5c1 +1002ef70 Ping ERR -- 11 -- recvfrom failed: %d 1001fa84 FUN_1001f5c1@1001f5c1 +1002f168 Ping ERROR -- 2 -- WSASocket failed: %d 1001f6bf FUN_1001f5c1@1001f5c1 +1003a040 NmxAdptr.DLL 10039ffc diff --git a/analysis/ghidra/exports/NmxSvc.exe.call-refs.tsv b/analysis/ghidra/exports/NmxSvc.exe.call-refs.tsv new file mode 100644 index 0000000..c9378c9 --- /dev/null +++ b/analysis/ghidra/exports/NmxSvc.exe.call-refs.tsv @@ -0,0 +1,190 @@ +caller_entry caller_name call_address target +0040105a FUN_0040105a 00401069 memcpy +00401073 FUN_00401073 00401082 memmove +00401164 FUN_00401164 00401173 memcpy_s +004011bb FUN_004011bb 004011ea SysFreeString +0040121e FUN_0040121e 00401220 SysFreeString +004013cc FUN_004013cc 00401477 memset +0040156c FUN_0040156c 0040159a memset +004016ad FUN_004016ad 004016c1 SysAllocString +004016e3 FUN_004016e3 0040170b SysAllocStringByteLen +00401757 FUN_00401757 00401761 SysFreeString +004018f9 FUN_004018f9 00401908 memmove +00401913 assign 0040191f _wmemset +00401a08 FUN_00401a08 00401a25 memset +00401a08 FUN_00401a08 00401a54 memset +00401a81 FUN_00401a81 00401aa1 memset +00401a81 FUN_00401a81 00401ad0 memset +00401afd FUN_00401afd 00401b1d memset +00401afd FUN_00401afd 00401b4c memset +00401b79 FUN_00401b79 00401b9d memset +00401cf3 FUN_00401cf3 00401d08 SysFreeString +00401f21 FID_conflict:_Chassign 00401f54 _wmemset +004022e6 FUN_004022e6 004022ff SysAllocString +00402316 Copy 0040232b SysAllocStringByteLen +00402333 FUN_00402333 004023bd SysAllocStringLen +00402333 FUN_00402333 0040240e SysFreeString +00402a05 FUN_00402a05 00402a66 memset +00402a05 FUN_00402a05 00402aa0 SysAllocString +00402a05 FUN_00402a05 00402aca SysFreeString +00402ff7 FID_conflict:_Tidy 0040301a memcpy +004031df FUN_004031df 00403214 memcpy +0040331f FUN_0040331f 0040333a memcpy +004035ab FUN_004035ab 004035bc SysFreeString +004038c0 FUN_004038c0 0040392b SysFreeString +004039f1 FUN_004039f1 00403ab7 SysFreeString +00403b2b FUN_00403b2b 00403b80 memmove +00403bf6 FUN_00403bf6 00403cdd memcpy +00403ed8 FUN_00403ed8 00403f6d memmove +00403ed8 FUN_00403ed8 00403faa memmove +00403ed8 FUN_00403ed8 00403fd8 memcpy +004042ed FUN_004042ed 00404363 memcpy +00404389 FUN_00404389 00404408 memcpy +0040442e FID_conflict:assign 00404486 memcpy +0040456d FUN_0040456d 004045e9 memcpy +00404910 FUN_00404910 00404937 memmove +004055ef FUN_004055ef 00405684 memset +004055ef FUN_004055ef 004056f7 SysAllocString +004055ef FUN_004055ef 00405944 SysAllocString +004055ef FUN_004055ef 004059b0 SysFreeString +004055ef FUN_004055ef 004059cf SysFreeString +004055ef FUN_004055ef 00405a5d SysFreeString +004055ef FUN_004055ef 00405a68 SysFreeString +004055ef FUN_004055ef 00405a6f SysFreeString +00406af8 FUN_00406af8 00406b00 memset +00406b61 Attach 00406b72 SysFreeString +00406b80 FUN_00406b80 00406b85 SysFreeString +00406c6b FUN_00406c6b 00406c99 SysFreeString +00406c6b FUN_00406c6b 00406cb8 SysFreeString +00406cdc FUN_00406cdc 00406d0a SysFreeString +00406cdc FUN_00406cdc 00406d29 SysFreeString +00406e7e FUN_00406e7e 00406eba memcpy_s +00406eef FUN_00406eef 00406f88 memcpy_s +0040710e FUN_0040710e 0040713e memcpy_s +0040715b FUN_0040715b 00407196 memcpy_s +004075a9 FUN_004075a9 004075cd memcpy +0040764d FUN_0040764d 0040765f memcpy +0040791d FUN_0040791d 00407998 memcpy_s +00407c9a FUN_00407c9a 00407cac CoCreateInstance +00407cfc FUN_00407cfc 00407d0e CoCreateInstance +00407d89 FUN_00407d89 00407d9b CoCreateInstance +00407dc8 FUN_00407dc8 00407dda CoCreateInstance +00407e1c FUN_00407e1c 00407e2e CoCreateInstance +0040957a FUN_0040957a 00409593 memmove +00409907 FUN_00409907 00409919 CoCreateInstance +00409954 FUN_00409954 00409968 CoCreateInstance +00409a29 FUN_00409a29 00409a40 memmove +00409c9a FUN_00409c9a 00409ca8 SysFreeString +00409c9a FUN_00409c9a 00409cb7 SysAllocString +00409e36 FUN_00409e36 00409e8f memset +00409e36 FUN_00409e36 00409eec SysAllocString +0040b35e FUN_0040b35e 0040b39e CoCreateInstance +0040b3e8 FUN_0040b3e8 0040b3fc CoCreateInstance +0040b4d1 FUN_0040b4d1 0040b511 CoCreateInstance +0040b6e5 FUN_0040b6e5 0040b6fc memmove +0040c008 FUN_0040c008 0040c0d0 memcpy_s +0040c008 FUN_0040c008 0040c103 memset +0040c008 FUN_0040c008 0040c14f SysAllocString +0040df15 FUN_0040df15 0040dfda SysFreeString +0040e2dd FUN_0040e2dd 0040e4b3 SysAllocString +0040e2dd FUN_0040e2dd 0040e52f SysAllocString +0040e2dd FUN_0040e2dd 0040e553 SysFreeString +0040e2dd FUN_0040e2dd 0040e5a7 SysAllocString +0040e2dd FUN_0040e2dd 0040e5d7 SysFreeString +0040e2dd FUN_0040e2dd 0040e652 SysAllocString +0040e2dd FUN_0040e2dd 0040e67a SysFreeString +0040eccf FUN_0040eccf 0040ecf2 CoCreateInstance +0040efa5 FUN_0040efa5 0040f06f memcpy_s +0040efa5 FUN_0040efa5 0040f07e memcpy_s +004113b6 FUN_004113b6 004113cd memset +004113b6 FUN_004113b6 004113fe memset +0041141c FUN_0041141c 00411521 memcpy_s +004115f2 FUN_004115f2 00411873 SysAllocString +004115f2 FUN_004115f2 00411abc SysFreeString +004115f2 FUN_004115f2 00411ac5 SysFreeString +0041329c FUN_0041329c 0041331a memcpy_s +00413ce1 FUN_00413ce1 00413d36 memset +00413ce1 FUN_00413ce1 00413d8f memset +00414a22 FUN_00414a22 00414b3a SysFreeString +00414a22 FUN_00414a22 00414b43 SysFreeString +00414a22 FUN_00414a22 00414b4c SysFreeString +00414a22 FUN_00414a22 00414b55 SysFreeString +004154e3 FUN_004154e3 004155af memcpy_s +004167bd FUN_004167bd 004167f1 CoCreateInstance +00416969 FUN_00416969 004169b8 CoCreateInstance +00416be4 FUN_00416be4 00416c33 CoCreateInstance +004174ac FUN_004174ac 00417633 CoCreateInstance +004174ac FUN_004174ac 0041774e CoCreateInstance +004177eb FUN_004177eb 0041799c memcpy_s +0041807f FUN_0041807f 004180f5 memcpy_s +00418f8a FUN_00418f8a 0041902a SysFreeString +00418f8a FUN_00418f8a 00419033 SysFreeString +0041c23e FUN_0041c23e 0041c463 memset +0041c62b FUN_0041c62b 0041c780 memset +0041d49e FUN_0041d49e 0041d534 memcpy_s +0041d49e FUN_0041d49e 0041d54e memcpy_s +0041e0c0 FUN_0041e0c0 0041e1b4 memcpy_s +0041e0c0 FUN_0041e0c0 0041e1c3 memcpy_s +0041e279 FUN_0041e279 0041e36d memcpy_s +0041e279 FUN_0041e279 0041e37c memcpy_s +0041eea5 FUN_0041eea5 0041f105 memcpy_s +0041f885 FUN_0041f885 0041f948 CoCreateInstance +0041f885 FUN_0041f885 0041fa8a CoCreateInstance +004202f8 FUN_004202f8 0042047e memcpy +00422cac FUN_00422cac 00422cc9 memcpy_s +00422f90 FUN_00422f90 00422f9b memset +00423642 FUN_00423642 00423658 memset +004242b7 FUN_004242b7 00424468 SysAllocString +00424a7d FUN_00424a7d 00424a81 AtlInternalQueryInterface +00424b26 _InternalQueryInterface 00424b35 AtlInternalQueryInterface +00424b98 QueryInterface 00424ba9 AtlInternalQueryInterface +00424d7d FUN_00424d7d 00424d82 QueryInterface +00424d87 FUN_00424d87 00424d8c QueryInterface +00424d91 FUN_00424d91 00424d96 QueryInterface +00424d9b FUN_00424d9b 00424da0 QueryInterface +00424df1 FUN_00424df1 00424e1c CoCreateInstance +0042524e FUN_0042524e 004252a9 CoCreateInstance +0042556c FUN_0042556c 0042562c SysFreeString +0042563c FUN_0042563c 00425766 SysFreeString +0042563c FUN_0042563c 00425785 SysFreeString +0042563c FUN_0042563c 004257d3 SysFreeString +0042563c FUN_0042563c 004257f6 SysFreeString +00425c49 _InternalQueryInterface 00425c58 AtlInternalQueryInterface +00425c90 QueryInterface 00425ca1 AtlInternalQueryInterface +00425e52 _InternalQueryInterface 00425e61 AtlInternalQueryInterface +00425ec2 QueryInterface 00425ed3 AtlInternalQueryInterface +00425efb FUN_00425efb 00425f00 QueryInterface +00425f05 FUN_00425f05 00425f0a QueryInterface +00425f0f FUN_00425f0f 00425f14 QueryInterface +00425fc8 FUN_00425fc8 00426005 AtlInternalQueryInterface +004265f7 FUN_004265f7 00426626 memset +00427954 FUN_00427954 00427991 AtlInternalQueryInterface +00427ea4 FUN_00427ea4 00427f00 FindResourceW +00428795 FUN_00428795 004287a5 memset +004287af FUN_004287af 004287dc memset +0042883e FUN_0042883e 00428850 memset +00428a32 FUN_00428a32 00428a7c memset +00428a32 FUN_00428a32 00428a88 memset +00428a32 FUN_00428a32 00428a94 memset +00428a32 FUN_00428a32 00428bcc closesocket +00428a32 FUN_00428a32 00428c10 closesocket +00428a32 FUN_00428a32 00428c99 closesocket +00428a32 FUN_00428a32 00428dd1 memcpy_s +00428a32 FUN_00428a32 00428e3f memset +00428a32 FUN_00428a32 00428f2d sendto +00428a32 FUN_00428a32 0042901f memset +00428a32 FUN_00428a32 0042904e recvfrom +00428a32 FUN_00428a32 004292af closesocket +00429390 memmove_s 004293a1 memmove_s +004293d9 RemoveAt 0042940a memmove_s +004294b0 FUN_004294b0 004294bd memset +004296f0 FUN_004296f0 004296fd memset +00429ca0 _com_invoke_helper 00429d64 memset +00429ca0 _com_invoke_helper 00429f48 VariantInit +00429ca0 _com_invoke_helper 00429fae VariantClear +00429ca0 _com_invoke_helper 0042a016 VariantChangeType +00429ca0 _com_invoke_helper 0042a026 VariantClear +00429ca0 _com_invoke_helper 0042a148 VariantClear +0042a390 _com_handle_excepinfo 0042a44f SysFreeString +0042a390 _com_handle_excepinfo 0042a459 SysFreeString +0042a390 _com_handle_excepinfo 0042a463 SysFreeString diff --git a/analysis/ghidra/exports/NmxSvc.exe.functions.tsv b/analysis/ghidra/exports/NmxSvc.exe.functions.tsv new file mode 100644 index 0000000..9ccb674 --- /dev/null +++ b/analysis/ghidra/exports/NmxSvc.exe.functions.tsv @@ -0,0 +1,3073 @@ +entry name signature body_size call_count interesting_calls +00401000 FUN_00401000 undefined FUN_00401000(wchar_t * param_1, wchar_t param_2) 10 0 +0040100a _InlineIsEqualGUID undefined4 _InlineIsEqualGUID(int * param_1, int * param_2) 48 0 +0040103a FUN_0040103a uint FUN_0040103a(uint param_1) 22 0 +00401059 FUN_00401059 undefined FUN_00401059(void) 1 0 +0040105a FUN_0040105a undefined FUN_0040105a(void * param_1, void * param_2, int param_3) 25 1 memcpy +00401073 FUN_00401073 undefined FUN_00401073(void * param_1, void * param_2, int param_3) 26 1 memmove +0040108d _wmemset wchar_t * _wmemset(wchar_t * _S, wchar_t _C, size_t _N) 42 0 +004010b7 AtlMultiply<> undefined4 AtlMultiply<>(undefined4 * param_1, uint param_2, uint param_3) 34 0 +004010dd FUN_004010dd undefined FUN_004010dd(LPCWSTR param_1) 14 1 +004010eb FUN_004010eb undefined FUN_004010eb(void * this, undefined4 param_1) 14 0 +004010f9 FUN_004010f9 undefined FUN_004010f9(undefined4 param_1) 23 1 +00401111 FUN_00401111 undefined FUN_00401111(void) 26 2 +0040112c AtlCrtErrorCheck int AtlCrtErrorCheck(int param_1) 56 1 +00401164 FUN_00401164 undefined FUN_00401164(void * param_1, rsize_t param_2, void * param_3, rsize_t param_4) 32 2 memcpy_s +004011bb FUN_004011bb HRESULT FUN_004011bb(void * this, BSTR param_1) 66 3 SysFreeString +004011fd FUN_004011fd void * FUN_004011fd(void * this, undefined4 * param_1) 33 2 +0040121e FUN_0040121e undefined FUN_0040121e(undefined4 * param_1) 9 1 SysFreeString +00401227 FID_conflict:RegOpenKeyExA LSTATUS FID_conflict:RegOpenKeyExA(HKEY hKey, LPCSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult) 87 2 +00401284 FUN_00401284 undefined FUN_00401284(void * this, undefined4 param_1) 22 0 +0040129a Close long Close(CRegKey * this) 27 1 +004012b5 Open undefined Open(void * this, HKEY param_1, LPCWSTR param_2, uint param_3) 79 3 +00401304 QueryDWORDValue uint QueryDWORDValue(void * this, LPCWSTR param_1, LPBYTE param_2) 56 1 +0040133c QueryStringValue long QueryStringValue(CRegKey * this, wchar_t * param_1, wchar_t * param_2, ulong * param_3) 111 1 +004013cc FUN_004013cc undefined4 * FUN_004013cc(undefined4 * param_1) 183 1 memset +00401483 FUN_00401483 undefined FUN_00401483(void * this, undefined4 param_1) 37 1 +004014a8 FUN_004014a8 undefined4 FUN_004014a8(undefined4 * param_1) 196 1 +0040156c FUN_0040156c undefined4 FUN_0040156c(int * param_1) 58 2 memset +004015a6 FUN_004015a6 undefined FUN_004015a6(void * param_1) 168 7 +0040164e FUN_0040164e undefined1 FUN_0040164e(HKEY param_1, LPCWSTR param_2, LPBYTE param_3) 89 3 +004016ad FUN_004016ad undefined4 * FUN_004016ad(void * this, OLECHAR * param_1) 54 2 SysAllocString +004016e3 FUN_004016e3 undefined4 * FUN_004016e3(void * this, BSTR param_1, char param_2) 72 3 SysAllocStringByteLen +0040174e FUN_0040174e undefined FUN_0040174e(uint param_1) 9 1 +00401757 FUN_00401757 undefined FUN_00401757(undefined4 * param_1) 32 2 SysFreeString +00401777 FUN_00401777 undefined4 * FUN_00401777(void * this, undefined4 param_1, int * param_2, char param_3) 51 0 +004017aa FUN_004017aa undefined4 * FUN_004017aa(void * this, int param_1) 48 0 +004017da FUN_004017da undefined FUN_004017da(undefined4 * param_1) 38 1 +00401804 FUN_00401804 undefined4 FUN_00401804(int param_1) 23 0 +0040181b FUN_0040181b uint FUN_0040181b(int param_1) 34 0 +0040183d FUN_0040183d undefined4 FUN_0040183d(undefined4 param_1, undefined4 param_2) 8 0 +00401845 FUN_00401845 undefined FUN_00401845(void) 1 0 +0040189e FUN_0040189e exception * FUN_0040189e(void * this, byte param_1) 56 4 +004018d6 FUN_004018d6 undefined FUN_004018d6(wchar_t * param_1) 10 0 +004018f9 FUN_004018f9 undefined FUN_004018f9(void * param_1, void * param_2, int param_3) 26 1 memmove +00401913 assign undefined assign(wchar_t * param_1, size_t param_2, wchar_t param_3) 22 1 _wmemset +00401929 FUN_00401929 undefined FUN_00401929(undefined2 * param_1, undefined2 * param_2) 17 0 +0040193a FUN_0040193a undefined4 FUN_0040193a(short * param_1, short * param_2) 22 0 +00401956 FUN_00401956 undefined FUN_00401956(int param_1) 26 0 +00401970 FUN_00401970 undefined FUN_00401970(int param_1) 26 0 +0040198a FUN_0040198a undefined4 FUN_0040198a(HKEY param_1, LPCWSTR param_2, LPCWSTR param_3, int param_4, LPBYTE param_5) 126 3 +00401a08 FUN_00401a08 uint FUN_00401a08(LPBYTE param_1, int param_2) 121 2 memset +00401a81 FUN_00401a81 uint FUN_00401a81(LPBYTE param_1, int param_2) 124 2 memset +00401afd FUN_00401afd uint FUN_00401afd(LPBYTE param_1, int param_2) 124 2 memset +00401b79 FUN_00401b79 undefined1 FUN_00401b79(int param_1, LPWSTR param_2, UINT param_3) 186 9 memset +00401c33 FUN_00401c33 undefined FUN_00401c33(int param_1, LPCWSTR param_2, char param_3, DWORD * param_4) 192 5 +00401cf3 FUN_00401cf3 undefined FUN_00401cf3(undefined4 * param_1) 33 3 SysFreeString +00401d14 FUN_00401d14 undefined FUN_00401d14(LPCWSTR param_1) 56 2 +00401d4c FUN_00401d4c undefined FUN_00401d4c(LPCWSTR param_1) 97 3 +00401dad FUN_00401dad undefined FUN_00401dad(undefined4 * param_1) 10 1 +00401db7 FUN_00401db7 undefined4 * FUN_00401db7(void * this, LPCRITICAL_SECTION param_1) 25 1 +00401dd0 FUN_00401dd0 undefined FUN_00401dd0(undefined4 * param_1) 9 1 +00401ddd FUN_00401ddd undefined4 FUN_00401ddd(undefined4 param_1, int * param_2) 44 1 +00401e09 FUN_00401e09 undefined4 FUN_00401e09(void) 5 0 +00401e0e FUN_00401e0e undefined FUN_00401e0e(int * param_1) 13 0 +00401e31 FUN_00401e31 undefined FUN_00401e31(void * this, int param_1) 28 0 +00401e51 FUN_00401e51 int FUN_00401e51(void * this, int param_1) 18 0 +00401e99 FUN_00401e99 undefined FUN_00401e99(void * param_1) 16 1 +00401ea9 FUN_00401ea9 undefined4 FUN_00401ea9(void * this, uint param_1) 26 0 +00401ed0 FUN_00401ed0 undefined FUN_00401ed0(int param_1) 61 1 +00401f17 FUN_00401f17 undefined4 FUN_00401f17(undefined4 param_1) 10 0 +00401f21 FID_conflict:_Chassign undefined FID_conflict:_Chassign(void * this, int param_1, size_t param_2, wchar_t param_3) 63 1 _wmemset +00401f60 FID_conflict:_Inside uint FID_conflict:_Inside(void * this, undefined4 * param_1) 60 0 +00401fd5 FUN_00401fd5 undefined FUN_00401fd5(void * param_1) 16 1 +00401fe5 FUN_00401fe5 uint FUN_00401fe5(byte param_1) 44 0 +00402011 FUN_00402011 undefined4 * FUN_00402011(void * this, int * param_1) 38 0 +00402037 FUN_00402037 undefined FUN_00402037(int * param_1) 23 0 +0040205a AtlAdd<> undefined4 AtlAdd<>(int * param_1, int param_2, uint param_3) 36 0 +0040207e FUN_0040207e undefined FUN_0040207e(char * param_1, char * param_2, char * param_3, char * param_4, char * param_5) 39 1 +004020a5 FUN_004020a5 undefined FUN_004020a5(char * param_1, char * param_2, char * param_3, char * param_4, char * param_5) 34 1 +004020c7 FUN_004020c7 undefined4 FUN_004020c7(undefined4 param_1) 8 0 +004020cf FUN_004020cf undefined4 FUN_004020cf(undefined4 param_1) 8 0 +004020d7 FUN_004020d7 undefined4 FUN_004020d7(undefined4 param_1) 8 0 +004020df FUN_004020df undefined FUN_004020df(void * param_1, void * param_2) 21 1 +004020f4 FUN_004020f4 void * FUN_004020f4(char * param_1) 95 5 +00402153 FUN_00402153 undefined FUN_00402153(int * param_1, size_t param_2, void * param_3, int param_4) 110 4 +004021c1 FUN_004021c1 void * FUN_004021c1(char * param_1) 98 5 +00402255 FUN_00402255 undefined4 FUN_00402255(undefined4 param_1) 8 0 +0040225d FUN_0040225d undefined4 FUN_0040225d(undefined4 param_1) 8 0 +00402265 FUN_00402265 undefined1 * FUN_00402265(undefined4 * param_1, undefined4 * param_2) 48 2 +00402295 FUN_00402295 undefined4 FUN_00402295(undefined4 param_1) 8 0 +004022a0 FUN_004022a0 undefined1 FUN_004022a0(undefined4 param_1) 9 0 +004022a9 FUN_004022a9 undefined1 * FUN_004022a9(undefined4 * param_1, undefined4 * param_2) 49 2 +004022de FUN_004022de undefined4 FUN_004022de(undefined4 param_1) 8 0 +004022e6 FUN_004022e6 undefined4 * FUN_004022e6(void * this, OLECHAR * param_1) 47 2 SysAllocString +00402316 Copy wchar_t * Copy(CComBSTR * this) 29 2 SysAllocStringByteLen +00402333 FUN_00402333 int FUN_00402333(void * this, void * param_1, uint param_2) 236 6 SysAllocStringLen;SysFreeString +0040241f FUN_0040241f LSTATUS FUN_0040241f(undefined4 * param_1) 5 0 +00402481 FUN_00402481 undefined FUN_00402481(int * param_1) 37 2 +004024ab FUN_004024ab undefined FUN_004024ab(int * param_1) 756 8 +0040279f FUN_0040279f undefined4 FUN_0040279f(int * param_1) 62 2 +004027dd FUN_004027dd undefined4 * FUN_004027dd(void * this, OLECHAR * param_1) 77 5 +0040282a FUN_0040282a undefined4 * FUN_0040282a(void * this, BSTR param_1, char param_2) 80 5 +00402892 FUN_00402892 UINT FUN_00402892(int * param_1) 23 1 +004028bf FUN_004028bf undefined4 * FUN_004028bf(void * this, byte param_1) 31 2 +004028e8 FUN_004028e8 undefined4 FUN_004028e8(int param_1) 170 5 +00402992 FUN_00402992 undefined4 FUN_00402992(LPCWSTR param_1, LPCWSTR param_2, undefined4 * param_3) 115 5 +00402a05 FUN_00402a05 undefined FUN_00402a05(LPCWSTR param_1, wchar_t * param_2, undefined4 * param_3) 247 9 SysAllocString;SysFreeString;memset +00402afc FUN_00402afc undefined FUN_00402afc(LPCWSTR param_1) 75 3 +00402b65 FUN_00402b65 int FUN_00402b65(void * this, int param_1) 23 0 +00402b8e FUN_00402b8e undefined FUN_00402b8e(basic_streambuf_> * param_1) 50 4 +00402bc0 FUN_00402bc0 undefined4 FUN_00402bc0(short * param_1, short * param_2) 22 0 +00402bd6 FUN_00402bd6 undefined2 FUN_00402bd6(undefined2 * param_1) 11 0 +00402be1 FUN_00402be1 undefined2 FUN_00402be1(undefined2 * param_1) 11 0 +00402bec FUN_00402bec undefined4 FUN_00402bec(int param_1) 100 0 +00402c50 fpos undefined fpos(fpos * this, __int64 param_1) 31 0 +00402c79 FUN_00402c79 short FUN_00402c79(short * param_1) 23 0 +00402c90 FUN_00402c90 short FUN_00402c90(void * this, short param_1) 93 1 +00402ced FUN_00402ced undefined FUN_00402ced(void * this, uint * param_1, uint param_2, uint param_3, int param_4, uint param_5) 422 2 +00402e93 FUN_00402e93 undefined FUN_00402e93(void * this, uint * param_1, uint param_2, int param_3, uint param_4) 280 2 +00402fab FUN_00402fab undefined FUN_00402fab(undefined4 * param_1) 18 1 +00402fbd FUN_00402fbd basic_streambuf_> * FUN_00402fbd(void * this, byte param_1) 31 2 +00402fdc FUN_00402fdc undefined FUN_00402fdc(void * this, int param_1) 27 0 +00402ff7 FID_conflict:_Tidy undefined FID_conflict:_Tidy(void * this, char param_1, int param_2) 73 2 memcpy +00403045 FUN_00403045 undefined FUN_00403045(char * param_1) 19 1 +00403067 Init void Init(CA2WEX<128> * this, char * param_1, uint param_2) 177 5 +00403118 FUN_00403118 void * FUN_00403118(void * this, int * param_1) 88 4 +00403170 FUN_00403170 undefined FUN_00403170(int * param_1) 56 5 +004031ae FUN_004031ae uint FUN_004031ae(void * this, uint param_1) 49 0 +004031df FUN_004031df undefined FUN_004031df(void * this, void * param_1, char * param_2, undefined4 param_3) 165 2 memcpy +0040328a FUN_0040328a undefined FUN_0040328a(void * this, uint param_1) 103 3 +004032f1 Catch@004032f1 undefined * Catch@004032f1(void) 40 1 +0040331f FUN_0040331f undefined FUN_0040331f(void) 78 3 memcpy +0040336d Catch@0040336d undefined Catch@0040336d(void) 20 2 +00403382 FUN_00403382 undefined FUN_00403382(char * param_1) 19 1 +00403395 FUN_00403395 undefined FUN_00403395(int * param_1, wchar_t * param_2) 324 6 +004034d9 Catch@004034d9 undefined * Catch@004034d9(void) 30 1 +004034fa FUN_004034fa undefined FUN_004034fa(void) 38 3 +00403520 FUN_00403520 undefined FUN_00403520(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +00403536 FUN_00403536 undefined FUN_00403536(undefined4 * param_1, undefined4 * param_2) 20 1 +0040354d FUN_0040354d undefined1 * FUN_0040354d(undefined4 * param_1, undefined4 * param_2) 48 2 +0040357d CComBSTR undefined CComBSTR(CComBSTR * this, CComBSTR * param_1) 46 2 +004035ab FUN_004035ab undefined4 * FUN_004035ab(void * this, CComBSTR * param_1) 59 3 SysFreeString +004035e6 FUN_004035e6 undefined FUN_004035e6(void * this, LPCWSTR param_1) 31 2 +00403605 FUN_00403605 void * FUN_00403605(void * this, LPCWSTR param_1) 43 3 +00403630 FUN_00403630 undefined4 FUN_00403630(int * param_1) 31 1 +0040364f FUN_0040364f uint FUN_0040364f(void * this, undefined4 param_1, undefined4 param_2) 48 1 +0040367f FUN_0040367f undefined FUN_0040367f(int * param_1, wchar_t * param_2) 100 4 +004036e3 FUN_004036e3 undefined FUN_004036e3(int * param_1, wchar_t * param_2) 100 4 +00403747 FUN_00403747 undefined FUN_00403747(int * param_1, wchar_t * param_2) 100 4 +004037ab FUN_004037ab undefined FUN_004037ab(int * param_1, wchar_t * param_2) 100 4 +0040380f FUN_0040380f undefined4 FUN_0040380f(void * this, undefined4 param_1, undefined4 param_2) 45 1 +0040383c FUN_0040383c undefined * FUN_0040383c(void) 67 4 +0040387f FUN_0040387f int * FUN_0040387f(void * this, int * param_1) 34 1 +004038a1 FUN_004038a1 undefined4 * FUN_004038a1(void * this, byte param_1) 31 2 +004038c0 FUN_004038c0 undefined FUN_004038c0(void * param_1) 119 6 SysFreeString +00403937 FUN_00403937 uint FUN_00403937(void) 43 1 +00403962 FUN_00403962 uint FUN_00403962(void) 43 1 +0040398d FUN_0040398d undefined4 FUN_0040398d(void) 59 1 +004039c8 FUN_004039c8 undefined4 FUN_004039c8(void) 41 1 +004039f1 FUN_004039f1 undefined FUN_004039f1(void * this, undefined4 param_1, undefined4 * param_2) 212 8 SysFreeString +00403ac5 FUN_00403ac5 undefined4 FUN_00403ac5(int param_1) 73 4 +00403b21 ~basic_string<> undefined ~basic_string<>(void * param_1) 10 1 +00403b2b FUN_00403b2b undefined4 * FUN_00403b2b(void * this, uint param_1, uint param_2) 129 2 memmove +00403bb9 FUN_00403bb9 undefined FUN_00403bb9(int param_1) 61 4 +00403bf6 FUN_00403bf6 wchar_t FUN_00403bf6(void * this, wchar_t param_1) 465 4 memcpy +00403dc7 CA2WEX<128> undefined CA2WEX<128>(CA2WEX<128> * this, char * param_1) 28 1 +00403de3 FUN_00403de3 basic_streambuf_> * FUN_00403de3(void * this, byte param_1) 64 4 +00403e23 FUN_00403e23 bool FUN_00403e23(void * this, uint param_1, char param_2) 106 3 +00403e8d FUN_00403e8d undefined FUN_00403e8d(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 18 1 +00403e9f FUN_00403e9f undefined FUN_00403e9f(void * this, uint param_1) 57 1 +00403ed8 FUN_00403ed8 undefined4 * FUN_00403ed8(void * this, uint param_1, undefined4 * param_2, uint param_3, uint param_4) 308 5 memcpy;memmove +0040400e FUN_0040400e undefined FUN_0040400e(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +00404021 FUN_00404021 undefined4 FUN_00404021(int * param_1) 64 1 +00404061 FUN_00404061 int FUN_00404061(void * this, uint param_1) 44 1 +0040408d FUN_0040408d LONG FUN_0040408d(undefined4 * param_1) 43 3 +004040e1 FUN_004040e1 undefined FUN_004040e1(uint param_1) 204 6 +004041ad FUN_004041ad undefined FUN_004041ad(int param_1) 57 4 +004041e6 FUN_004041e6 basic_iostream_> * FUN_004041e6(void * this, byte param_1, int param_2) 130 4 +00404268 FUN_00404268 void * FUN_00404268(void * this, byte param_1) 34 2 +0040428a FUN_0040428a undefined4 * FUN_0040428a(void * this, uint param_1, wchar_t param_2) 99 3 +004042ed FUN_004042ed undefined4 * FUN_004042ed(void * this, undefined4 * param_1, uint param_2, uint param_3) 156 4 memcpy +00404389 FUN_00404389 undefined4 * FUN_00404389(void * this, undefined4 * param_1, uint param_2, uint param_3) 165 4 memcpy +0040442e FID_conflict:assign undefined4 * FID_conflict:assign(void * this, undefined4 * param_1, uint param_2) 126 4 memcpy +004044ac FUN_004044ac undefined FUN_004044ac(void * this, undefined4 * param_1) 19 1 +004044bf FUN_004044bf undefined FUN_004044bf(void * this, uint param_1, undefined4 * param_2) 22 1 +004044d6 FUN_004044d6 undefined4 * FUN_004044d6(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 65 3 +00404517 Catch@00404517 undefined Catch@00404517(void) 9 1 +00404521 FUN_00404521 undefined FUN_00404521(undefined4 * param_1) 19 1 +00404534 basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1) 40 1 +0040455c FUN_0040455c undefined FUN_0040455c(void * this, wchar_t param_1) 17 1 +0040456d FUN_0040456d undefined4 * FUN_0040456d(void * this, undefined4 * param_1, uint param_2) 162 5 memcpy +0040460f FUN_0040460f undefined FUN_0040460f(void * this, wchar_t * param_1) 32 2 +0040462f basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1, uint param_2) 40 1 +00404657 FUN_00404657 undefined FUN_00404657(void * this, undefined4 * param_1) 19 1 +0040466a FUN_0040466a undefined FUN_0040466a(void * this, undefined4 * param_1) 19 1 +0040467e _Uninitialized_move<> undefined _Uninitialized_move<>(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 31 1 +0040469d FUN_0040469d undefined FUN_0040469d(undefined4 * param_1) 19 1 +004046b0 FUN_004046b0 int * FUN_004046b0(void * this, int * param_1) 54 2 +004046e6 FUN_004046e6 void * FUN_004046e6(void * this, void * param_1) 71 3 +0040472d FUN_0040472d void * FUN_0040472d(void * this, void * param_1) 71 3 +00404774 FUN_00404774 undefined FUN_00404774(undefined4 * param_1) 46 1 +004047a2 FUN_004047a2 undefined4 * FUN_004047a2(void * this, undefined4 param_1, int * param_2, OLECHAR * param_3, undefined4 param_4, undefined4 param_5) 81 4 +004047f3 FUN_004047f3 undefined4 * FUN_004047f3(void * this, int param_1) 63 3 +00404832 FUN_00404832 undefined FUN_00404832(undefined4 * param_1) 54 4 +004048be FUN_004048be undefined2 * FUN_004048be(void * this, wchar_t * param_1) 50 2 +004048f0 FUN_004048f0 undefined FUN_004048f0(void * this, wchar_t * param_1) 32 2 +00404910 FUN_00404910 undefined4 * FUN_00404910(void * this, undefined4 * param_1) 93 2 memmove +0040496d FUN_0040496d undefined FUN_0040496d(void * this, undefined4 * param_1) 19 1 +00404983 FUN_00404983 undefined FUN_00404983(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +0040499f FUN_0040499f undefined4 * FUN_0040499f(void * this, byte param_1) 31 2 +004049be basic_string<> undefined2 * basic_string<>(void * this, undefined4 * param_1) 37 1 +004049e3 FUN_004049e3 undefined FUN_004049e3(undefined4 * param_1) 29 1 +00404a00 FUN_00404a00 undefined FUN_00404a00(void * this, void * param_1) 202 4 +00404aca FUN_00404aca undefined FUN_00404aca(void * this, char * param_1) 164 6 +00404b6e Catch@00404b6e undefined Catch@00404b6e(void) 18 2 +00404b81 FUN_00404b81 void * FUN_00404b81(void * param_1, undefined4 * param_2, void * param_3) 62 4 +00404bbf FUN_00404bbf undefined2 * FUN_00404bbf(undefined2 * param_1, undefined4 * param_2, undefined4 * param_3) 100 4 +00404c23 thunk_FUN_004049e3 undefined thunk_FUN_004049e3(undefined4 * param_1) 5 0 +00404c28 FUN_00404c28 void * FUN_00404c28(void * this, void * param_1) 49 3 +00404c59 FUN_00404c59 undefined FUN_00404c59(void * this, int param_1) 88 3 +00404cb1 FUN_00404cb1 undefined FUN_00404cb1(void * this, void * param_1, int param_2, char * param_3) 1126 20 +00405117 FUN_00405117 void * FUN_00405117(void * param_1, void * param_2, char * param_3) 55 3 +0040514e FUN_0040514e void * FUN_0040514e(void * param_1, int param_2, char * param_3) 74 5 +00405198 FUN_00405198 void * FUN_00405198(void * param_1, uint param_2, int param_3, OLECHAR * param_4, undefined4 param_5, undefined4 param_6) 179 7 +0040524b FUN_0040524b undefined FUN_0040524b(uint param_1, OLECHAR * param_2, undefined4 param_3, undefined4 param_4) 46 2 +0040527a FUN_0040527a undefined FUN_0040527a(void * this, undefined4 * param_1) 117 3 +004052ef FUN_004052ef undefined FUN_004052ef(void) 768 20 +004055ef FUN_004055ef undefined FUN_004055ef(void * this, undefined4 param_1, int * param_2, undefined1 * param_3) 1164 35 SysAllocString;SysFreeString;memset +00405a7b FUN_00405a7b undefined4 FUN_00405a7b(void * this, undefined4 param_1, int * param_2, undefined1 * param_3) 49 2 +00405b95 FUN_00405b95 undefined4 * FUN_00405b95(undefined4 * param_1) 76 4 +00405be1 FUN_00405be1 undefined FUN_00405be1(undefined4 param_1, int param_2, int param_3, undefined4 param_4, uint param_5, undefined4 * param_6) 208 11 +00405cb1 Catch@00405cb1 undefined * Catch@00405cb1(void) 97 4 +00405d15 FUN_00405d15 undefined FUN_00405d15(void) 8 1 +00405d1d Catch@00405d1d undefined * Catch@00405d1d(void) 19 0 +00405d32 Catch@00405d32 undefined * Catch@00405d32(void) 117 6 +00405dac Catch@00405dac undefined * Catch@00405dac(void) 67 3 +00405def FUN_00405def undefined FUN_00405def(uint param_1, PRTL_CRITICAL_SECTION_DEBUG param_2, uint param_3, int param_4) 224 11 +00405ecf Catch@00405ecf undefined * Catch@00405ecf(void) 97 4 +00405f33 FUN_00405f33 undefined FUN_00405f33(void) 8 1 +00405f3b Catch@00405f3b undefined * Catch@00405f3b(void) 19 0 +00405f50 Catch@00405f50 undefined * Catch@00405f50(void) 117 6 +00405fca Catch@00405fca undefined * Catch@00405fca(void) 67 3 +0040600d FUN_0040600d undefined FUN_0040600d(undefined4 param_1, undefined4 param_2) 200 11 +004060d5 Catch@004060d5 undefined * Catch@004060d5(void) 97 4 +00406139 FUN_00406139 undefined FUN_00406139(void) 8 1 +00406141 Catch@00406141 undefined * Catch@00406141(void) 19 0 +00406156 Catch@00406156 undefined * Catch@00406156(void) 117 6 +004061d0 Catch@004061d0 undefined * Catch@004061d0(void) 67 3 +00406213 FUN_00406213 undefined FUN_00406213(undefined4 param_1, undefined4 param_2, int param_3, undefined4 param_4, int param_5) 203 11 +004062de Catch@004062de undefined * Catch@004062de(void) 100 4 +00406345 FUN_00406345 undefined FUN_00406345(void) 8 1 +0040634d Catch@0040634d undefined * Catch@0040634d(void) 19 0 +00406362 Catch@00406362 undefined * Catch@00406362(void) 120 6 +004063df Catch@004063df undefined * Catch@004063df(void) 70 3 +00406425 FUN_00406425 undefined FUN_00406425(undefined4 param_1, undefined4 param_2, undefined4 param_3, int param_4, int param_5) 206 11 +004064f3 Catch@004064f3 undefined * Catch@004064f3(void) 100 4 +0040655a FUN_0040655a undefined FUN_0040655a(void) 8 1 +00406562 Catch@00406562 undefined * Catch@00406562(void) 19 0 +00406577 Catch@00406577 undefined * Catch@00406577(void) 120 6 +004065f4 Catch@004065f4 undefined * Catch@004065f4(void) 70 3 +0040663a FUN_0040663a undefined FUN_0040663a(undefined4 param_1, int param_2, undefined4 param_3, int param_4) 206 11 +00406708 Catch@00406708 undefined * Catch@00406708(void) 100 4 +0040676f FUN_0040676f undefined FUN_0040676f(void) 8 1 +00406777 Catch@00406777 undefined * Catch@00406777(void) 19 0 +0040678c Catch@0040678c undefined * Catch@0040678c(void) 120 6 +00406809 Catch@00406809 undefined * Catch@00406809(void) 70 3 +0040684f FUN_0040684f undefined FUN_0040684f(undefined4 param_1, int param_2) 199 11 +00406916 Catch@00406916 undefined * Catch@00406916(void) 100 4 +0040697d FUN_0040697d undefined FUN_0040697d(void) 8 1 +00406985 Catch@00406985 undefined * Catch@00406985(void) 19 0 +0040699a Catch@0040699a undefined * Catch@0040699a(void) 120 6 +00406a17 Catch@00406a17 undefined * Catch@00406a17(void) 70 3 +00406a5d FUN_00406a5d undefined1 * FUN_00406a5d(undefined1 * param_1, int param_2) 26 0 +00406a77 AtlW2AHelper uint AtlW2AHelper(LPSTR param_1, LPCWSTR param_2, int param_3, UINT param_4) 56 1 +00406aaf FUN_00406aaf undefined FUN_00406aaf(void) 1 0 +00406ac5 Init long Init(CComCriticalSection * this) 41 2 +00406af8 FUN_00406af8 CComCriticalSection * FUN_00406af8(CComCriticalSection * param_1) 37 3 memset +00406b1d FUN_00406b1d undefined FUN_00406b1d(LPCRITICAL_SECTION param_1) 8 1 +00406b25 FUN_00406b25 int * FUN_00406b25(int * param_1, int * param_2) 51 0 +00406b61 Attach void Attach(CComBSTR * this, wchar_t * param_1) 31 1 SysFreeString +00406b80 FUN_00406b80 undefined FUN_00406b80(undefined4 * param_1) 16 1 SysFreeString +00406b93 FUN_00406b93 undefined FUN_00406b93(int param_1) 19 1 +00406ba6 FUN_00406ba6 undefined4 * FUN_00406ba6(void * this, undefined4 * param_1) 33 2 +00406bca FUN_00406bca undefined FUN_00406bca(HANDLE param_1) 10 0 +00406bd4 FUN_00406bd4 undefined4 FUN_00406bd4(int param_1, undefined4 param_2, undefined4 param_3, int * param_4) 56 1 +00406c0c FUN_00406c0c undefined4 FUN_00406c0c(int param_1, undefined4 param_2, undefined4 param_3, int * param_4) 48 0 +00406c3c FUN_00406c3c undefined4 * FUN_00406c3c(void * this, LPCRITICAL_SECTION param_1) 25 1 +00406c55 FUN_00406c55 undefined FUN_00406c55(undefined4 * param_1) 9 1 +00406c6b FUN_00406c6b undefined FUN_00406c6b(int param_1) 85 4 SysFreeString +00406cdc FUN_00406cdc undefined FUN_00406cdc(int param_1) 85 4 SysFreeString +00406d34 FUN_00406d34 undefined FUN_00406d34(undefined4 * param_1) 22 1 +00406d4a _IsEqualGUID bool _IsEqualGUID(void * param_1, void * param_2) 26 1 +00406d64 FUN_00406d64 undefined FUN_00406d64(void * param_1, void * param_2) 9 1 +00406d6d FUN_00406d6d undefined4 FUN_00406d6d(int * param_1, void * param_2, undefined4 * param_3) 101 1 +00406dd2 FUN_00406dd2 undefined4 FUN_00406dd2(void) 6 0 +00406dd8 FUN_00406dd8 undefined4 FUN_00406dd8(void) 6 0 +00406dde FUN_00406dde undefined4 FUN_00406dde(void) 8 0 +00406de6 FUN_00406de6 undefined4 FUN_00406de6(void) 8 0 +00406dee FUN_00406dee undefined4 FUN_00406dee(void) 8 0 +00406df6 FUN_00406df6 undefined4 FUN_00406df6(void) 8 0 +00406dfe FUN_00406dfe undefined4 FUN_00406dfe(void) 8 0 +00406e06 FUN_00406e06 undefined4 FUN_00406e06(void) 8 0 +00406e0e FUN_00406e0e undefined4 FUN_00406e0e(void) 8 0 +00406e16 FUN_00406e16 undefined4 FUN_00406e16(void) 8 0 +00406e1e FUN_00406e1e undefined4 FUN_00406e1e(int param_1, uint param_2, int param_3, int param_4, uint * param_5) 96 0 +00406e7e FUN_00406e7e uint FUN_00406e7e(int param_1, void * param_2, rsize_t param_3, rsize_t * param_4) 113 1 memcpy_s +00406eef FUN_00406eef uint FUN_00406eef(int param_1, void * param_2, rsize_t param_3, rsize_t * param_4) 189 2 memcpy_s +00406fb4 FUN_00406fb4 undefined4 * FUN_00406fb4(void * this, byte param_1) 31 2 +00406fd3 FUN_00406fd3 undefined FUN_00406fd3(void * this, char param_1, undefined4 param_2, undefined4 param_3, short param_4) 41 0 +00406ffc FUN_00406ffc undefined FUN_00406ffc(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3) 26 0 +00407016 FUN_00407016 undefined FUN_00407016(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7) 40 0 +0040703e FUN_0040703e undefined FUN_0040703e(void * this, undefined2 param_1, undefined4 param_2) 29 0 +0040705b FUN_0040705b undefined FUN_0040705b(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 32 0 +0040707b FUN_0040707b undefined8 FUN_0040707b(uint param_1, int param_2) 23 0 +00407092 FUN_00407092 undefined FUN_00407092(void) 58 3 +004070cc FUN_004070cc undefined8 FUN_004070cc(uint param_1, int param_2, uint param_3, int param_4) 17 0 +004070e7 FUN_004070e7 undefined FUN_004070e7(void * this, undefined4 * param_1) 22 0 +0040710e FUN_0040710e undefined4 * FUN_0040710e(void * this, uint param_1, void * param_2) 77 2 memcpy_s +0040715b FUN_0040715b undefined4 * FUN_0040715b(void * this, int param_1) 85 2 memcpy_s +004071b0 FUN_004071b0 undefined FUN_004071b0(undefined4 * param_1) 27 1 +004071cb FUN_004071cb undefined4 * FUN_004071cb(void * this, byte param_1) 31 2 +004071ea FUN_004071ea undefined FUN_004071ea(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3) 26 0 +00407207 FUN_00407207 undefined FUN_00407207(LPFILETIME param_1, char param_2) 70 3 +0040724d FUN_0040724d undefined FUN_0040724d(void * this, undefined4 param_1, undefined4 param_2) 20 0 +0040726d FUN_0040726d undefined4 * FUN_0040726d(void * this, undefined4 param_1, uint param_2, void * param_3) 82 4 +004072bf FUN_004072bf undefined FUN_004072bf(void * this, undefined4 param_1) 95 4 +0040731e FUN_0040731e undefined4 * FUN_0040731e(void * this, int param_1) 85 4 +00407373 FUN_00407373 undefined FUN_00407373(undefined4 * param_1) 36 3 +00407397 FUN_00407397 undefined4 * FUN_00407397(void * this, byte param_1) 55 4 +004073e6 FUN_004073e6 undefined FUN_004073e6(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined2 param_5) 30 0 +00407420 FUN_00407420 undefined FUN_00407420(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined2 param_5, undefined2 param_6) 38 0 +0040744a FUN_0040744a uint FUN_0040744a(int param_1, uint param_2) 24 0 +00407462 FUN_00407462 HRESULT * FUN_00407462(void * this, DWORD param_1) 26 1 +0040747c FUN_0040747c undefined FUN_0040747c(int * param_1) 12 0 +00407488 FUN_00407488 undefined4 * FUN_00407488(void * this, LPCWSTR param_1) 88 3 +004074e0 FUN_004074e0 undefined FUN_004074e0(undefined4 * param_1) 21 1 +004074f5 FUN_004074f5 undefined4 FUN_004074f5(int param_1) 37 1 +00407529 FUN_00407529 undefined4 * FUN_00407529(void * this, byte param_1) 31 2 +00407548 FUN_00407548 undefined FUN_00407548(void * this, undefined4 param_1, undefined4 param_2) 24 0 +00407560 FUN_00407560 undefined4 FUN_00407560(int * param_1) 38 1 +00407586 FUN_00407586 undefined FUN_00407586(int * param_1) 35 1 +004075a9 FUN_004075a9 undefined4 * FUN_004075a9(void * this, void * param_1) 104 5 memcpy +00407611 FUN_00407611 undefined FUN_00407611(undefined4 * param_1) 60 2 +0040764d FUN_0040764d undefined FUN_0040764d(void * this, void * param_1) 30 1 memcpy +0040766b FUN_0040766b undefined4 * FUN_0040766b(void * this, byte param_1) 31 2 +0040768a FUN_0040768a undefined1 FUN_0040768a(LPCWSTR param_1, LPCWSTR param_2, LPBYTE param_3) 82 3 +004076dc FUN_004076dc undefined4 FUN_004076dc(LPCWSTR param_1, undefined4 param_2, BYTE * param_3, DWORD param_4) 77 3 +00407729 FUN_00407729 undefined FUN_00407729(undefined4 param_1, undefined4 param_2, undefined4 param_3) 293 9 +0040784e FUN_0040784e undefined4 FUN_0040784e(undefined2 * param_1, char param_2, undefined1 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8, undefined4 param_9, undefined4 param_10, undefined4 param_11) 105 0 +004078b7 FUN_004078b7 undefined FUN_004078b7(int param_1) 46 3 +004078e5 FUN_004078e5 undefined FUN_004078e5(int param_1) 56 3 +0040791d FUN_0040791d undefined4 FUN_0040791d(void * this, void * param_1) 145 1 memcpy_s +004079ae FUN_004079ae undefined FUN_004079ae(void * this, int param_1, int param_2) 156 0 +00407a4a FUN_00407a4a undefined FUN_00407a4a(void * this, int param_1) 155 0 +00407ae5 FUN_00407ae5 undefined FUN_00407ae5(int param_1) 34 0 +00407b07 FUN_00407b07 undefined FUN_00407b07(void * this, int param_1, int param_2) 140 0 +00407b93 FUN_00407b93 undefined FUN_00407b93(void * this, int param_1) 126 0 +00407c11 FUN_00407c11 undefined FUN_00407c11(int * param_1) 13 0 +00407c21 FUN_00407c21 undefined FUN_00407c21(void * this, int param_1) 28 0 +00407c77 FUN_00407c77 undefined FUN_00407c77(int * param_1) 13 0 +00407c9a FUN_00407c9a undefined FUN_00407c9a(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 28 1 CoCreateInstance +00407cb6 FUN_00407cb6 undefined FUN_00407cb6(int * param_1) 13 0 +00407cdc FUN_00407cdc undefined FUN_00407cdc(int * param_1) 13 0 +00407cfc FUN_00407cfc undefined FUN_00407cfc(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 28 1 CoCreateInstance +00407d18 FUN_00407d18 undefined FUN_00407d18(int * param_1) 13 0 +00407d3b FUN_00407d3b undefined FUN_00407d3b(int * param_1) 13 0 +00407d5e FUN_00407d5e undefined FUN_00407d5e(int * param_1) 13 0 +00407d89 FUN_00407d89 undefined FUN_00407d89(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 28 1 CoCreateInstance +00407da5 FUN_00407da5 undefined FUN_00407da5(int * param_1) 13 0 +00407dc8 FUN_00407dc8 undefined FUN_00407dc8(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 28 1 CoCreateInstance +00407de4 FUN_00407de4 undefined FUN_00407de4(void * this, undefined4 param_1, undefined4 param_2) 24 0 +00407dfc FUN_00407dfc undefined FUN_00407dfc(int * param_1) 13 0 +00407e0c FUN_00407e0c undefined FUN_00407e0c(int * param_1) 13 0 +00407e1c FUN_00407e1c undefined FUN_00407e1c(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 28 1 CoCreateInstance +00407e3c FUN_00407e3c undefined FUN_00407e3c(int * param_1) 13 0 +00407e60 FUN_00407e60 int FUN_00407e60(int param_1) 11 0 +00407e6b FUN_00407e6b int FUN_00407e6b(int param_1) 11 0 +00407e76 FUN_00407e76 undefined4 FUN_00407e76(undefined4 param_1) 8 0 +00407e7e FUN_00407e7e int FUN_00407e7e(int param_1) 11 0 +00407e89 FUN_00407e89 int FUN_00407e89(int param_1) 11 0 +00407e94 FUN_00407e94 int FUN_00407e94(int param_1) 11 0 +00407e9f FUN_00407e9f undefined FUN_00407e9f(int param_1) 21 0 +00407eb4 FUN_00407eb4 undefined FUN_00407eb4(int * param_1) 20 0 +00407ecb FUN_00407ecb undefined4 FUN_00407ecb(int * param_1, int * param_2) 22 0 +00407ee1 FUN_00407ee1 undefined FUN_00407ee1(void * param_1) 16 1 +00407ef1 FUN_00407ef1 undefined4 FUN_00407ef1(void * this, uint param_1) 26 0 +00407f1e FUN_00407f1e bool FUN_00407f1e(void * this, int * param_1) 19 0 +00407f37 FUN_00407f37 int FUN_00407f37(int param_1) 11 0 +00407f42 FUN_00407f42 int FUN_00407f42(int param_1) 11 0 +00407f4d FUN_00407f4d undefined4 FUN_00407f4d(undefined4 param_1) 8 0 +00407f55 FUN_00407f55 int FUN_00407f55(int param_1) 11 0 +00407f60 FUN_00407f60 int FUN_00407f60(int param_1) 11 0 +00407f6b FUN_00407f6b int FUN_00407f6b(int param_1) 11 0 +00407f76 FUN_00407f76 undefined FUN_00407f76(int param_1) 21 0 +00407f8b FUN_00407f8b undefined FUN_00407f8b(int * param_1) 20 0 +00407fa2 FUN_00407fa2 undefined4 FUN_00407fa2(uint * param_1, uint * param_2) 36 0 +00407fc6 FUN_00407fc6 undefined FUN_00407fc6(void * param_1) 16 1 +00407fe2 FUN_00407fe2 undefined4 FUN_00407fe2(void * this, uint param_1) 26 0 +00408003 FUN_00408003 undefined FUN_00408003(void * param_1) 16 1 +00408013 FUN_00408013 int FUN_00408013(int param_1) 11 0 +0040801e FUN_0040801e int FUN_0040801e(int param_1) 11 0 +00408029 FUN_00408029 undefined4 FUN_00408029(undefined4 param_1) 8 0 +00408031 FUN_00408031 int FUN_00408031(int param_1) 11 0 +0040803c FUN_0040803c int FUN_0040803c(int param_1) 11 0 +00408047 FUN_00408047 int FUN_00408047(int param_1) 11 0 +00408052 FUN_00408052 undefined FUN_00408052(int param_1) 21 0 +00408067 FUN_00408067 undefined FUN_00408067(int * param_1) 20 0 +0040807e FUN_0040807e undefined FUN_0040807e(void * param_1) 16 1 +0040808e FUN_0040808e int FUN_0040808e(int param_1) 11 0 +00408099 FUN_00408099 int FUN_00408099(int param_1) 11 0 +004080a4 FUN_004080a4 undefined4 FUN_004080a4(undefined4 param_1) 8 0 +004080ac FUN_004080ac int FUN_004080ac(int param_1) 11 0 +004080b7 FUN_004080b7 int FUN_004080b7(int param_1) 11 0 +004080c2 FUN_004080c2 int FUN_004080c2(int param_1) 11 0 +004080cd FUN_004080cd undefined FUN_004080cd(int param_1) 21 0 +004080e2 FUN_004080e2 undefined FUN_004080e2(int * param_1) 20 0 +004080f9 FUN_004080f9 undefined FUN_004080f9(void * param_1) 16 1 +00408109 FUN_00408109 int FUN_00408109(int param_1) 11 0 +00408114 FUN_00408114 int FUN_00408114(int param_1) 11 0 +0040811f FUN_0040811f undefined4 FUN_0040811f(undefined4 param_1) 8 0 +00408127 FUN_00408127 int FUN_00408127(int param_1) 11 0 +00408132 FUN_00408132 int FUN_00408132(int param_1) 11 0 +0040813d FUN_0040813d int FUN_0040813d(int param_1) 11 0 +00408148 FUN_00408148 undefined FUN_00408148(int param_1) 21 0 +0040815d FUN_0040815d undefined FUN_0040815d(int * param_1) 20 0 +00408174 FUN_00408174 undefined FUN_00408174(void * param_1) 16 1 +00408184 FUN_00408184 undefined4 FUN_00408184(undefined4 param_1) 8 0 +0040818f FUN_0040818f int FUN_0040818f(int param_1) 11 0 +0040819a FUN_0040819a int FUN_0040819a(int param_1) 11 0 +004081a5 FUN_004081a5 undefined4 FUN_004081a5(undefined4 param_1) 8 0 +004081ad FUN_004081ad int FUN_004081ad(int param_1) 11 0 +004081b8 FUN_004081b8 int FUN_004081b8(int param_1) 11 0 +004081c3 FUN_004081c3 int FUN_004081c3(int param_1) 11 0 +004081ce FUN_004081ce undefined FUN_004081ce(int param_1) 21 0 +004081e3 FUN_004081e3 undefined FUN_004081e3(int * param_1) 20 0 +004081fa FUN_004081fa undefined FUN_004081fa(void * param_1) 16 1 +0040820a FUN_0040820a undefined4 FUN_0040820a(undefined4 param_1) 8 0 +0040822d FUN_0040822d bool FUN_0040822d(void * this, int * param_1) 19 0 +00408246 FUN_00408246 bool FUN_00408246(void * this, int * param_1) 19 0 +00408262 FUN_00408262 bool FUN_00408262(void * this, int * param_1) 19 0 +0040827b FUN_0040827b bool FUN_0040827b(void * this, int * param_1) 19 0 +00408291 FUN_00408291 bool FUN_00408291(void * this, int * param_1) 19 0 +004082a4 FUN_004082a4 bool FUN_004082a4(void * this, int * param_1) 19 0 +004082ba FUN_004082ba bool FUN_004082ba(void * this, int * param_1) 19 0 +004082d0 FUN_004082d0 undefined4 FUN_004082d0(undefined4 param_1) 8 0 +004082db FUN_004082db bool FUN_004082db(void * this, int * param_1) 19 0 +004082f1 FUN_004082f1 bool FUN_004082f1(void * this, int * param_1) 19 0 +00408304 FUN_00408304 bool FUN_00408304(void * this, int * param_1) 19 0 +00408336 FUN_00408336 undefined FUN_00408336(void * param_1) 16 1 +00408346 FUN_00408346 undefined FUN_00408346(void * this, undefined4 param_1) 14 0 +00408366 FUN_00408366 undefined FUN_00408366(int * param_1) 59 0 +004083a1 FUN_004083a1 int FUN_004083a1(int param_1) 11 0 +004083ac FUN_004083ac undefined4 FUN_004083ac(undefined4 param_1) 8 0 +004083b4 FUN_004083b4 int FUN_004083b4(int param_1) 11 0 +004083bf FUN_004083bf int FUN_004083bf(int param_1) 11 0 +004083ca FUN_004083ca int FUN_004083ca(int param_1) 11 0 +004083da FUN_004083da undefined FUN_004083da(void * param_1) 16 1 +0040840f FUN_0040840f int FUN_0040840f(int param_1) 11 0 +0040841a FUN_0040841a int FUN_0040841a(int param_1) 11 0 +0040842a FUN_0040842a undefined FUN_0040842a(void * param_1) 16 1 +00408448 FUN_00408448 int FUN_00408448(int param_1) 11 0 +00408453 FUN_00408453 int FUN_00408453(int param_1) 11 0 +00408463 FUN_00408463 undefined FUN_00408463(void * param_1) 16 1 +00408485 FUN_00408485 bool FUN_00408485(void * this, int param_1) 17 0 +004084a2 FUN_004084a2 undefined FUN_004084a2(int * param_1) 59 0 +004084e3 FUN_004084e3 bool FUN_004084e3(void * this, int param_1) 17 0 +00408500 FUN_00408500 undefined FUN_00408500(int * param_1) 59 0 +00408544 FUN_00408544 undefined FUN_00408544(void * this, undefined4 * param_1) 18 0 +0040855f FUN_0040855f undefined FUN_0040855f(void * this, undefined4 param_1) 14 0 +00408585 FUN_00408585 undefined FUN_00408585(int * param_1) 59 0 +004085d8 FUN_004085d8 undefined FUN_004085d8(int * param_1) 59 0 +0040861f FUN_0040861f undefined FUN_0040861f(int * param_1) 59 0 +0040865a FUN_0040865a int FUN_0040865a(int param_1) 11 0 +0040866a FUN_0040866a undefined FUN_0040866a(void * param_1) 16 1 +0040868c FUN_0040868c undefined4 FUN_0040868c(undefined4 param_1) 8 0 +00408699 FUN_00408699 undefined FUN_00408699(void * param_1) 16 1 +004086c1 FUN_004086c1 bool FUN_004086c1(void * this, int * param_1) 19 0 +004086dd FUN_004086dd undefined FUN_004086dd(void * this, undefined4 param_1) 14 0 +004086eb FUN_004086eb int FUN_004086eb(int param_1) 11 0 +004086f6 FUN_004086f6 undefined FUN_004086f6(int param_1) 21 0 +0040870b FUN_0040870b undefined FUN_0040870b(int * param_1) 20 0 +0040871f FUN_0040871f undefined4 FUN_0040871f(undefined4 param_1) 10 0 +00408729 FUN_00408729 undefined4 FUN_00408729(undefined4 param_1) 10 0 +00408739 FUN_00408739 int FUN_00408739(int param_1) 11 0 +00408744 FUN_00408744 undefined FUN_00408744(void * this, undefined4 param_1) 14 0 +00408752 FUN_00408752 undefined FUN_00408752(void * this, undefined4 param_1) 14 0 +00408760 FUN_00408760 undefined FUN_00408760(void * this, undefined4 param_1) 14 0 +0040876e FUN_0040876e undefined FUN_0040876e(void * this, undefined4 param_1) 14 0 +0040877c FUN_0040877c undefined FUN_0040877c(void * this, undefined4 param_1) 14 0 +0040878a FUN_0040878a undefined FUN_0040878a(int * param_1) 59 0 +004087c8 FUN_004087c8 undefined FUN_004087c8(void * this, undefined4 param_1) 14 0 +004087d6 FUN_004087d6 undefined FUN_004087d6(void * this, undefined4 param_1) 14 0 +004087e4 FUN_004087e4 int FUN_004087e4(int param_1) 11 0 +004087ef FUN_004087ef undefined FUN_004087ef(void * this, undefined4 param_1) 14 0 +004087fd FUN_004087fd int FUN_004087fd(int param_1) 11 0 +00408808 FUN_00408808 int FUN_00408808(int param_1) 11 0 +00408813 FUN_00408813 int FUN_00408813(int param_1) 11 0 +0040881e FUN_0040881e int FUN_0040881e(int param_1) 11 0 +00408829 FUN_00408829 int FUN_00408829(int param_1) 11 0 +00408834 FUN_00408834 undefined FUN_00408834(void * this, undefined4 param_1) 14 0 +00408842 FUN_00408842 undefined FUN_00408842(void * this, undefined4 param_1) 14 0 +00408856 FUN_00408856 undefined4 FUN_00408856(void * this, int * param_1) 19 0 +00408898 FUN_00408898 int FUN_00408898(int param_1) 11 0 +004088a3 FUN_004088a3 int FUN_004088a3(int param_1) 11 0 +004088ae FUN_004088ae undefined4 FUN_004088ae(undefined4 param_1) 8 0 +004088b6 FUN_004088b6 int FUN_004088b6(int param_1) 11 0 +004088c1 FUN_004088c1 int FUN_004088c1(int param_1) 11 0 +004088cc FUN_004088cc undefined FUN_004088cc(int param_1) 21 0 +004088e1 FUN_004088e1 undefined FUN_004088e1(int * param_1) 20 0 +004088f5 FUN_004088f5 undefined FUN_004088f5(void * param_1) 16 1 +00408919 FUN_00408919 undefined FUN_00408919(void * this, int * param_1) 71 0 +00408960 FUN_00408960 undefined FUN_00408960(int param_1) 21 0 +00408975 FUN_00408975 undefined FUN_00408975(int * param_1) 20 0 +00408991 FUN_00408991 undefined FUN_00408991(void * this, undefined4 * param_1) 18 0 +004089a3 FUN_004089a3 undefined FUN_004089a3(void * this, undefined4 param_1) 14 0 +004089b1 FUN_004089b1 undefined FUN_004089b1(int * param_1) 59 0 +004089ec FUN_004089ec bool FUN_004089ec(int * param_1, undefined4 param_2) 35 0 +00408a0f FUN_00408a0f bool FUN_00408a0f(int * param_1, undefined4 param_2) 35 0 +00408a32 FUN_00408a32 bool FUN_00408a32(int * param_1, undefined4 param_2) 35 0 +00408a55 FUN_00408a55 bool FUN_00408a55(int * param_1, undefined4 param_2) 35 0 +00408a78 FUN_00408a78 bool FUN_00408a78(int * param_1, undefined4 param_2) 35 0 +00408aa1 FUN_00408aa1 undefined FUN_00408aa1(void * this, undefined4 param_1) 22 0 +00408ab7 FUN_00408ab7 undefined FUN_00408ab7(void * this, undefined4 param_1) 22 0 +00408acd FUN_00408acd undefined FUN_00408acd(void * this, undefined4 param_1) 22 0 +00408ae3 FUN_00408ae3 undefined FUN_00408ae3(wchar_t * param_1, wchar_t * param_2) 25 1 +00408afc FUN_00408afc undefined4 FUN_00408afc(undefined4 param_1) 8 0 +00408b04 FUN_00408b04 undefined4 FUN_00408b04(undefined4 param_1) 8 0 +00408b0c FUN_00408b0c undefined4 FUN_00408b0c(undefined4 param_1) 8 0 +00408b14 FUN_00408b14 undefined4 FUN_00408b14(undefined4 param_1) 8 0 +00408b1f FUN_00408b1f undefined4 FUN_00408b1f(undefined4 param_1) 8 0 +00408b27 FUN_00408b27 undefined4 FUN_00408b27(undefined4 param_1) 8 0 +00408b2f FUN_00408b2f undefined4 FUN_00408b2f(undefined4 param_1) 8 0 +00408b37 FUN_00408b37 undefined4 FUN_00408b37(undefined4 param_1) 8 0 +00408b3f FUN_00408b3f undefined4 FUN_00408b3f(undefined4 param_1) 8 0 +00408b4a FUN_00408b4a undefined4 FUN_00408b4a(undefined4 param_1) 8 0 +00408b52 FUN_00408b52 undefined4 FUN_00408b52(undefined4 param_1) 8 0 +00408b5a FUN_00408b5a undefined4 FUN_00408b5a(undefined4 param_1) 8 0 +00408b62 FUN_00408b62 undefined4 FUN_00408b62(undefined4 param_1) 8 0 +00408b6a FUN_00408b6a undefined4 FUN_00408b6a(undefined4 param_1) 8 0 +00408b75 FUN_00408b75 undefined4 FUN_00408b75(undefined4 param_1) 8 0 +00408b7d FUN_00408b7d undefined4 FUN_00408b7d(undefined4 param_1) 8 0 +00408b85 FUN_00408b85 undefined4 FUN_00408b85(undefined4 param_1) 8 0 +00408b8d FUN_00408b8d undefined4 FUN_00408b8d(undefined4 param_1) 8 0 +00408b95 FUN_00408b95 undefined4 FUN_00408b95(undefined4 param_1) 8 0 +00408b9d FUN_00408b9d undefined4 FUN_00408b9d(undefined4 param_1) 8 0 +00408ba5 FUN_00408ba5 undefined4 FUN_00408ba5(undefined4 param_1) 8 0 +00408bad FUN_00408bad undefined4 FUN_00408bad(undefined4 param_1) 8 0 +00408bb8 FUN_00408bb8 undefined4 FUN_00408bb8(undefined4 param_1) 8 0 +00408bc0 FUN_00408bc0 void * FUN_00408bc0(char * param_1) 95 5 +00408c1f FUN_00408c1f undefined4 FUN_00408c1f(undefined4 param_1) 8 0 +00408c2c FUN_00408c2c void * FUN_00408c2c(char * param_1) 95 5 +00408c8b FUN_00408c8b undefined4 FUN_00408c8b(undefined4 param_1) 8 0 +00408c98 FUN_00408c98 void * FUN_00408c98(char * param_1) 98 5 +00408cfa FUN_00408cfa undefined4 FUN_00408cfa(undefined4 param_1) 8 0 +00408d02 FUN_00408d02 undefined4 FUN_00408d02(undefined4 param_1) 8 0 +00408d0f FUN_00408d0f void * FUN_00408d0f(char * param_1) 95 5 +00408d6e FUN_00408d6e undefined4 FUN_00408d6e(undefined4 param_1) 8 0 +00408d76 FUN_00408d76 undefined4 FUN_00408d76(undefined4 param_1) 8 0 +00408d83 FUN_00408d83 void * FUN_00408d83(char * param_1) 95 5 +00408de2 FUN_00408de2 void * FUN_00408de2(char * param_1) 97 5 +00408e43 FUN_00408e43 undefined4 FUN_00408e43(undefined4 param_1) 8 0 +00408e50 FUN_00408e50 void * FUN_00408e50(char * param_1) 95 5 +00408eb7 FUN_00408eb7 void * FUN_00408eb7(char * param_1) 95 5 +00408f16 FUN_00408f16 undefined4 FUN_00408f16(undefined4 param_1) 8 0 +00408f23 FUN_00408f23 void * FUN_00408f23(char * param_1) 95 5 +00408f87 FUN_00408f87 void * FUN_00408f87(char * param_1) 95 5 +00408feb FUN_00408feb void * FUN_00408feb(char * param_1) 95 5 +0040904f FUN_0040904f void * FUN_0040904f(char * param_1) 95 5 +004090ae FUN_004090ae undefined4 FUN_004090ae(undefined4 param_1) 8 0 +004090b6 FUN_004090b6 undefined4 FUN_004090b6(undefined4 param_1) 8 0 +004090c3 FUN_004090c3 void * FUN_004090c3(char * param_1) 95 5 +00409122 FUN_00409122 undefined4 * FUN_00409122(void * param_1, int param_2) 46 3 +0040916b FUN_0040916b undefined FUN_0040916b(int * param_1) 13 0 +0040917f FUN_0040917f undefined FUN_0040917f(int param_1) 10 1 +0040919d FUN_0040919d undefined FUN_0040919d(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +004091b5 FUN_004091b5 undefined FUN_004091b5(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +004091cd FUN_004091cd undefined FUN_004091cd(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +004091eb FUN_004091eb undefined FUN_004091eb(int * param_1) 70 0 +00409237 FUN_00409237 undefined FUN_00409237(int * param_1) 70 0 +004092a7 FUN_004092a7 undefined FUN_004092a7(int * param_1) 70 0 +004092ed FUN_004092ed undefined FUN_004092ed(int * param_1) 70 0 +00409333 FUN_00409333 undefined FUN_00409333(int * param_1) 70 0 +00409379 FUN_00409379 undefined FUN_00409379(int * param_1) 70 0 +004093bf FUN_004093bf undefined FUN_004093bf(int * param_1) 70 0 +00409405 FUN_00409405 undefined FUN_00409405(int * param_1) 70 0 +00409451 FUN_00409451 undefined FUN_00409451(int * param_1) 70 0 +0040949c FUN_0040949c undefined4 FUN_0040949c(undefined4 param_1) 8 0 +004094a4 FUN_004094a4 undefined4 FUN_004094a4(undefined4 param_1) 8 0 +004094ac FUN_004094ac undefined4 FUN_004094ac(undefined4 param_1) 8 0 +004094b4 FUN_004094b4 undefined4 FUN_004094b4(undefined4 param_1) 8 0 +004094bc FUN_004094bc undefined4 FUN_004094bc(undefined4 param_1) 8 0 +004094c4 FUN_004094c4 undefined4 FUN_004094c4(undefined4 param_1) 8 0 +004094cc FUN_004094cc undefined4 FUN_004094cc(undefined4 param_1) 8 0 +004094d4 FUN_004094d4 undefined4 FUN_004094d4(undefined4 param_1) 8 0 +004094dc FUN_004094dc undefined4 FUN_004094dc(undefined4 param_1) 8 0 +004094e4 FUN_004094e4 undefined4 FUN_004094e4(undefined4 param_1) 8 0 +004094ec FUN_004094ec undefined4 FUN_004094ec(undefined4 param_1) 8 0 +004094f4 FUN_004094f4 undefined4 FUN_004094f4(undefined4 param_1) 8 0 +004094fc FUN_004094fc undefined4 FUN_004094fc(undefined4 param_1) 8 0 +00409504 FUN_00409504 undefined4 FUN_00409504(undefined4 param_1) 8 0 +0040950c FUN_0040950c undefined4 FUN_0040950c(undefined4 param_1) 8 0 +00409514 FUN_00409514 undefined4 FUN_00409514(undefined4 param_1) 8 0 +0040951c FUN_0040951c undefined4 FUN_0040951c(undefined4 param_1) 8 0 +00409524 FUN_00409524 undefined4 FUN_00409524(undefined4 param_1) 8 0 +0040952c FUN_0040952c undefined4 FUN_0040952c(undefined4 param_1) 8 0 +00409534 FUN_00409534 undefined4 FUN_00409534(undefined4 param_1) 8 0 +0040953c FUN_0040953c undefined FUN_0040953c(undefined4 * param_1, undefined4 * param_2) 45 2 +00409569 FUN_00409569 undefined4 FUN_00409569(undefined4 param_1) 8 0 +00409571 FUN_00409571 undefined1 FUN_00409571(undefined4 param_1) 9 0 +0040957a FUN_0040957a void * FUN_0040957a(void * param_1, int param_2, void * param_3) 41 1 memmove +004095a3 FUN_004095a3 undefined4 FUN_004095a3(undefined4 param_1) 8 0 +004095ab FUN_004095ab undefined4 FUN_004095ab(undefined4 param_1) 8 0 +004095b3 FUN_004095b3 undefined1 FUN_004095b3(undefined4 param_1) 9 0 +004095bc FUN_004095bc undefined4 FUN_004095bc(undefined4 param_1) 8 0 +004095c4 FUN_004095c4 undefined4 * FUN_004095c4(void * param_1, int param_2) 46 3 +004095f2 FUN_004095f2 undefined4 FUN_004095f2(undefined4 param_1) 8 0 +004095fa FUN_004095fa undefined4 FUN_004095fa(undefined4 param_1) 8 0 +00409602 FUN_00409602 undefined4 FUN_00409602(undefined4 param_1) 8 0 +0040960a FUN_0040960a undefined4 FUN_0040960a(undefined4 param_1) 8 0 +00409612 FUN_00409612 undefined4 FUN_00409612(undefined4 param_1) 8 0 +0040961a FUN_0040961a undefined4 FUN_0040961a(undefined4 param_1) 8 0 +00409622 FUN_00409622 undefined4 FUN_00409622(undefined4 param_1) 8 0 +0040962b FUN_0040962b undefined4 FUN_0040962b(undefined4 param_1) 8 0 +00409633 FUN_00409633 undefined4 FUN_00409633(undefined4 param_1) 8 0 +0040963b FUN_0040963b undefined4 FUN_0040963b(undefined4 param_1) 8 0 +00409643 FUN_00409643 undefined4 FUN_00409643(undefined4 param_1) 8 0 +0040964b FUN_0040964b undefined FUN_0040964b(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +00409663 FUN_00409663 undefined4 FUN_00409663(undefined4 param_1) 8 0 +0040966b FUN_0040966b undefined FUN_0040966b(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +00409683 FUN_00409683 undefined4 FUN_00409683(undefined4 param_1) 8 0 +0040968b FUN_0040968b undefined FUN_0040968b(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +004096a3 FUN_004096a3 undefined4 FUN_004096a3(undefined4 param_1) 8 0 +004096ab FUN_004096ab undefined FUN_004096ab(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +004096c3 FUN_004096c3 undefined4 FUN_004096c3(undefined4 param_1) 8 0 +004096cb FUN_004096cb undefined FUN_004096cb(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +004096e3 FUN_004096e3 undefined4 FUN_004096e3(undefined4 param_1) 8 0 +004096eb FUN_004096eb undefined4 FUN_004096eb(undefined4 param_1) 8 0 +004096f3 FUN_004096f3 undefined FUN_004096f3(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040970b FUN_0040970b undefined4 FUN_0040970b(undefined4 param_1) 8 0 +00409713 FUN_00409713 undefined4 FUN_00409713(undefined4 param_1) 8 0 +0040971b FUN_0040971b undefined4 FUN_0040971b(undefined4 param_1) 8 0 +00409723 FUN_00409723 undefined4 FUN_00409723(undefined4 param_1) 8 0 +0040972b FUN_0040972b undefined4 FUN_0040972b(undefined4 param_1) 8 0 +00409733 FUN_00409733 undefined4 FUN_00409733(undefined4 param_1) 8 0 +0040973b FUN_0040973b undefined4 FUN_0040973b(undefined4 param_1) 8 0 +00409743 FUN_00409743 undefined FUN_00409743(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040975c FUN_0040975c undefined FUN_0040975c(undefined4 * param_1, undefined4 * param_2) 46 2 +0040978b FUN_0040978b undefined4 * FUN_0040978b(void * param_1, int param_2) 47 3 +004097bc FUN_004097bc undefined FUN_004097bc(undefined4 * param_1, undefined4 * param_2) 46 2 +004097ec FUN_004097ec undefined4 FUN_004097ec(undefined4 param_1) 8 0 +004097f5 FUN_004097f5 undefined4 FUN_004097f5(undefined4 param_1) 8 0 +004097fd FUN_004097fd undefined4 FUN_004097fd(undefined4 param_1) 8 0 +00409805 FUN_00409805 undefined4 FUN_00409805(undefined4 param_1) 8 0 +0040980d FUN_0040980d undefined4 FUN_0040980d(undefined4 param_1) 8 0 +00409815 FUN_00409815 undefined4 FUN_00409815(undefined4 param_1) 8 0 +0040981d FUN_0040981d undefined4 FUN_0040981d(undefined4 param_1) 8 0 +00409825 FUN_00409825 undefined4 FUN_00409825(undefined4 param_1) 8 0 +0040982d FUN_0040982d undefined4 FUN_0040982d(undefined4 param_1) 8 0 +0040983a FUN_0040983a void * FUN_0040983a(char * param_1) 95 5 +00409899 FUN_00409899 undefined FUN_00409899(void * this, int param_1) 24 0 +004098b1 FUN_004098b1 undefined FUN_004098b1(int param_1) 46 3 +00409907 FUN_00409907 undefined FUN_00409907(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 28 1 CoCreateInstance +00409923 FUN_00409923 undefined FUN_00409923(void * this, undefined4 * param_1) 14 0 +00409931 FUN_00409931 undefined FUN_00409931(void * this, undefined4 * param_1) 15 0 +00409940 FUN_00409940 undefined4 FUN_00409940(undefined4 param_1) 10 0 +0040994a FUN_0040994a undefined4 FUN_0040994a(undefined4 param_1) 10 0 +00409954 FUN_00409954 undefined FUN_00409954(LPVOID * param_1) 38 2 CoCreateInstance +0040997a FUN_0040997a undefined FUN_0040997a(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +00409992 FUN_00409992 undefined FUN_00409992(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +004099aa FUN_004099aa undefined FUN_004099aa(void * this, undefined4 * param_1, undefined4 * param_2) 29 0 +004099c7 FUN_004099c7 undefined FUN_004099c7(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +004099e5 FUN_004099e5 undefined4 * FUN_004099e5(void * this, undefined4 * param_1, int param_2) 49 3 +00409a16 FUN_00409a16 undefined4 FUN_00409a16(undefined4 param_1) 8 0 +00409a1e FUN_00409a1e undefined4 FUN_00409a1e(undefined4 param_1) 8 0 +00409a29 FUN_00409a29 void * FUN_00409a29(void * param_1, int param_2, void * param_3) 37 1 memmove +00409a51 FUN_00409a51 undefined4 FUN_00409a51(undefined4 param_1) 8 0 +00409a59 FUN_00409a59 undefined FUN_00409a59(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409a71 FUN_00409a71 undefined FUN_00409a71(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409a89 FUN_00409a89 undefined FUN_00409a89(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409aa1 FUN_00409aa1 undefined4 FUN_00409aa1(undefined4 param_1) 8 0 +00409aa9 FUN_00409aa9 undefined FUN_00409aa9(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409ac1 FUN_00409ac1 undefined FUN_00409ac1(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409ad9 FUN_00409ad9 undefined FUN_00409ad9(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409af1 FUN_00409af1 undefined FUN_00409af1(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409b09 FUN_00409b09 undefined4 FUN_00409b09(undefined4 param_1) 8 0 +00409b11 FUN_00409b11 undefined FUN_00409b11(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409b29 FUN_00409b29 undefined FUN_00409b29(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +00409b44 FUN_00409b44 undefined FUN_00409b44(undefined4 * param_1) 14 0 +00409b52 FUN_00409b52 undefined1 FUN_00409b52(undefined4 param_1) 9 0 +00409b5b FUN_00409b5b undefined4 FUN_00409b5b(undefined4 param_1) 8 0 +00409b63 FUN_00409b63 undefined4 FUN_00409b63(undefined4 param_1) 8 0 +00409b6b FUN_00409b6b undefined4 FUN_00409b6b(undefined4 param_1) 8 0 +00409b73 FUN_00409b73 undefined4 FUN_00409b73(undefined4 param_1) 8 0 +00409b7b FUN_00409b7b undefined4 FUN_00409b7b(undefined4 param_1) 8 0 +00409b83 FUN_00409b83 undefined FUN_00409b83(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +00409b9b FUN_00409b9b undefined4 FUN_00409b9b(undefined4 param_1) 8 0 +00409ba3 FUN_00409ba3 undefined FUN_00409ba3(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +00409bbb FUN_00409bbb undefined4 FUN_00409bbb(undefined4 param_1) 8 0 +00409bc3 FUN_00409bc3 undefined FUN_00409bc3(void * this, undefined4 * param_1, undefined4 * param_2) 29 0 +00409be0 FUN_00409be0 undefined4 FUN_00409be0(undefined4 param_1) 8 0 +00409be8 FUN_00409be8 undefined FUN_00409be8(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +00409c06 FUN_00409c06 undefined4 FUN_00409c06(undefined4 param_1) 8 0 +00409c0e FUN_00409c0e undefined4 * FUN_00409c0e(void * this, undefined4 * param_1, int param_2) 49 3 +00409c3f FUN_00409c3f undefined FUN_00409c3f(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +00409c5d FUN_00409c5d undefined4 FUN_00409c5d(undefined4 param_1) 8 0 +00409c65 FUN_00409c65 undefined4 FUN_00409c65(undefined4 param_1) 8 0 +00409c6d FUN_00409c6d undefined4 FUN_00409c6d(undefined4 param_1) 8 0 +00409c75 FUN_00409c75 undefined FUN_00409c75(int * param_1) 37 2 +00409c9a FUN_00409c9a undefined4 * FUN_00409c9a(void * this, OLECHAR * param_1) 61 3 SysAllocString;SysFreeString +00409cda FUN_00409cda undefined4 FUN_00409cda(void * this, int * param_1) 98 3 +00409d3c FUN_00409d3c undefined4 FUN_00409d3c(void * this, int * param_1) 146 4 +00409dce FUN_00409dce undefined4 FUN_00409dce(void * this, int * param_1) 104 3 +00409e36 FUN_00409e36 undefined FUN_00409e36(undefined4 * param_1, FILETIME * param_2) 226 8 SysAllocString;memset +00409f18 FUN_00409f18 undefined FUN_00409f18(void * this, char param_1) 22 1 +00409f2e FUN_00409f2e undefined FUN_00409f2e(void * this, char param_1) 19 1 +00409fd2 FUN_00409fd2 undefined FUN_00409fd2(int * param_1) 37 2 +00409ff7 FUN_00409ff7 undefined FUN_00409ff7(int * param_1) 37 2 +0040a01c FUN_0040a01c undefined FUN_0040a01c(int * param_1) 37 2 +0040a041 FUN_0040a041 undefined FUN_0040a041(int * param_1) 37 2 +0040a066 FUN_0040a066 undefined FUN_0040a066(int * param_1) 37 2 +0040a08b FUN_0040a08b undefined FUN_0040a08b(int * param_1) 37 2 +0040a0b0 FUN_0040a0b0 undefined FUN_0040a0b0(int * param_1) 37 2 +0040a0d5 FUN_0040a0d5 undefined FUN_0040a0d5(int * param_1) 37 2 +0040a0fa FUN_0040a0fa undefined FUN_0040a0fa(int * param_1) 37 2 +0040a11f FUN_0040a11f undefined FUN_0040a11f(int param_1) 30 3 +0040a13d FUN_0040a13d undefined FUN_0040a13d(int * param_1) 37 2 +0040a162 FUN_0040a162 undefined FUN_0040a162(int * param_1) 37 2 +0040a1a5 FUN_0040a1a5 undefined FUN_0040a1a5(undefined4 * param_1) 14 1 +0040a1b3 FUN_0040a1b3 undefined4 * FUN_0040a1b3(void * this, undefined4 param_1) 31 1 +0040a1db FUN_0040a1db bool FUN_0040a1db(void * this, int * param_1) 19 0 +0040a1ee FUN_0040a1ee undefined4 FUN_0040a1ee(void * this, int * param_1) 19 0 +0040a201 FUN_0040a201 undefined4 FUN_0040a201(void * this, int * param_1) 19 0 +0040a28c FUN_0040a28c undefined4 FUN_0040a28c(void * this, int * param_1) 19 0 +0040a29f FUN_0040a29f undefined FUN_0040a29f(void * this, undefined4 * param_1) 22 0 +0040a2b5 FUN_0040a2b5 undefined4 FUN_0040a2b5(void * this, int * param_1) 19 0 +0040a2e6 FUN_0040a2e6 undefined4 FUN_0040a2e6(void * this, int * param_1) 19 0 +0040a2ff FUN_0040a2ff undefined4 FUN_0040a2ff(void * this, int * param_1) 19 0 +0040a312 FUN_0040a312 undefined FUN_0040a312(void * this, undefined4 * param_1) 22 0 +0040a328 FUN_0040a328 undefined4 FUN_0040a328(void * this, int * param_1) 19 0 +0040a33b FUN_0040a33b undefined4 FUN_0040a33b(void * this, int * param_1) 19 0 +0040a34e FUN_0040a34e undefined4 FUN_0040a34e(void * this, int * param_1) 19 0 +0040a39c FUN_0040a39c undefined4 FUN_0040a39c(void * this, int * param_1) 19 0 +0040a3af FUN_0040a3af undefined4 FUN_0040a3af(void * this, int * param_1) 19 0 +0040a3c2 FUN_0040a3c2 undefined FUN_0040a3c2(void * this, undefined4 * param_1) 22 0 +0040a3d8 FUN_0040a3d8 undefined4 FUN_0040a3d8(void * this, int * param_1) 19 0 +0040a3fd FUN_0040a3fd undefined FUN_0040a3fd(void * this, int * param_1) 71 0 +0040a444 FUN_0040a444 undefined FUN_0040a444(int param_1) 10 1 +0040a45d FUN_0040a45d undefined FUN_0040a45d(void * this, undefined4 param_1) 14 0 +0040a47d FUN_0040a47d int * FUN_0040a47d(int * param_1) 12 1 +0040a49b FUN_0040a49b undefined FUN_0040a49b(int param_1) 10 1 +0040a4b7 FUN_0040a4b7 undefined FUN_0040a4b7(void * this, int * param_1) 71 0 +0040a4fe FUN_0040a4fe undefined FUN_0040a4fe(int param_1) 10 1 +0040a508 FUN_0040a508 int FUN_0040a508(int param_1) 11 0 +0040a534 FUN_0040a534 undefined FUN_0040a534(void * this, int * param_1) 71 0 +0040a57b FUN_0040a57b undefined FUN_0040a57b(int param_1) 10 1 +0040a585 FUN_0040a585 int FUN_0040a585(int param_1) 11 0 +0040a5a2 FUN_0040a5a2 undefined FUN_0040a5a2(void * this, int * param_1) 71 0 +0040a5e9 FUN_0040a5e9 undefined FUN_0040a5e9(int param_1) 10 1 +0040a5f3 FUN_0040a5f3 int FUN_0040a5f3(int param_1) 11 0 +0040a610 FUN_0040a610 undefined FUN_0040a610(void * this, int * param_1) 71 0 +0040a657 FUN_0040a657 undefined FUN_0040a657(int param_1) 10 1 +0040a661 FUN_0040a661 int FUN_0040a661(int param_1) 11 0 +0040a66c FUN_0040a66c undefined FUN_0040a66c(undefined4 * param_1) 9 1 +0040a687 FUN_0040a687 undefined FUN_0040a687(void * this, int * param_1) 71 0 +0040a6ce FUN_0040a6ce undefined FUN_0040a6ce(int param_1) 10 1 +0040a6d8 FUN_0040a6d8 int FUN_0040a6d8(int param_1) 11 0 +0040a6e3 FUN_0040a6e3 undefined FUN_0040a6e3(undefined4 * param_1) 9 1 +0040a746 FUN_0040a746 bool FUN_0040a746(void * this, int param_1) 17 0 +0040a763 FUN_0040a763 int * FUN_0040a763(int * param_1) 12 1 +0040a7ba FUN_0040a7ba bool FUN_0040a7ba(void * this, int param_1) 17 0 +0040a7d7 FUN_0040a7d7 int * FUN_0040a7d7(int * param_1) 12 1 +0040a7f8 FUN_0040a7f8 undefined FUN_0040a7f8(void * this, undefined4 param_1) 14 0 +0040a80f FUN_0040a80f bool FUN_0040a80f(void * this, int * param_1) 19 0 +0040a82e FUN_0040a82e int * FUN_0040a82e(int * param_1) 12 1 +0040a852 FUN_0040a852 int * FUN_0040a852(int * param_1) 12 1 +0040a86a FUN_0040a86a int * FUN_0040a86a(int * param_1) 12 1 +0040a876 FUN_0040a876 undefined FUN_0040a876(undefined4 * param_1) 9 1 +0040a892 FUN_0040a892 undefined FUN_0040a892(int param_1) 10 1 +0040a8bd FUN_0040a8bd uint FUN_0040a8bd(void * this, uint param_1) 44 0 +0040a8e9 FUN_0040a8e9 undefined FUN_0040a8e9(void * this, undefined4 param_1) 14 0 +0040a8f7 FUN_0040a8f7 int * FUN_0040a8f7(void * this, int * param_1) 23 1 +0040a90e FUN_0040a90e undefined4 FUN_0040a90e(undefined4 param_1) 10 0 +0040a918 FUN_0040a918 undefined4 * FUN_0040a918(void * this, uint * param_1) 60 1 +0040a954 FUN_0040a954 undefined FUN_0040a954(undefined4 * param_1, undefined4 param_2) 15 0 +0040a969 FUN_0040a969 uint FUN_0040a969(void * this, uint param_1) 47 0 +0040a998 FUN_0040a998 undefined FUN_0040a998(char * param_1) 19 1 +0040a9ab FUN_0040a9ab undefined4 * FUN_0040a9ab(void * this, int * param_1) 44 0 +0040a9d7 FUN_0040a9d7 undefined4 * FUN_0040a9d7(void * this, int * param_1) 44 0 +0040aa03 FUN_0040aa03 undefined4 * FUN_0040aa03(void * this, int * param_1) 44 0 +0040aa34 FUN_0040aa34 undefined FUN_0040aa34(char * param_1) 19 1 +0040aa47 FUN_0040aa47 undefined4 * FUN_0040aa47(void * this, int * param_1) 44 0 +0040aa78 FUN_0040aa78 undefined FUN_0040aa78(char * param_1) 19 1 +0040aa8b FUN_0040aa8b int FUN_0040aa8b(int param_1) 11 0 +0040aa96 FUN_0040aa96 undefined FUN_0040aa96(void * this, undefined4 param_1) 14 0 +0040aaa4 FUN_0040aaa4 int * FUN_0040aaa4(void * this, int * param_1) 23 1 +0040aabb FUN_0040aabb undefined FUN_0040aabb(void * this, undefined4 param_1) 14 0 +0040aac9 FUN_0040aac9 int * FUN_0040aac9(void * this, int * param_1) 23 1 +0040aae0 FUN_0040aae0 undefined FUN_0040aae0(void * this, undefined4 param_1) 14 0 +0040aaee FUN_0040aaee undefined FUN_0040aaee(void * this, undefined4 param_1) 14 0 +0040aafc FUN_0040aafc undefined FUN_0040aafc(void * this, undefined4 param_1) 14 0 +0040ab0a FUN_0040ab0a int * FUN_0040ab0a(int * param_1) 12 1 +0040ab16 FUN_0040ab16 int * FUN_0040ab16(void * this, int * param_1) 23 1 +0040ab2d FUN_0040ab2d undefined FUN_0040ab2d(void * this, undefined4 param_1) 14 0 +0040ab3b FUN_0040ab3b int * FUN_0040ab3b(void * this, int * param_1) 23 1 +0040ab52 FUN_0040ab52 undefined FUN_0040ab52(void * this, undefined4 param_1) 14 0 +0040ab60 FUN_0040ab60 int * FUN_0040ab60(void * this, int * param_1) 23 1 +0040ab7c FUN_0040ab7c undefined FUN_0040ab7c(char * param_1) 19 1 +0040ab8f FUN_0040ab8f undefined FUN_0040ab8f(void * this, undefined4 param_1) 14 0 +0040aba3 FUN_0040aba3 undefined FUN_0040aba3(void * this, undefined4 param_1) 14 0 +0040abb7 FUN_0040abb7 undefined FUN_0040abb7(void * this, undefined4 param_1) 14 0 +0040abcb FUN_0040abcb int FUN_0040abcb(int param_1) 11 0 +0040abdb FUN_0040abdb undefined FUN_0040abdb(char * param_1) 19 1 +0040abee FUN_0040abee undefined FUN_0040abee(char * param_1) 19 1 +0040ac01 FUN_0040ac01 undefined FUN_0040ac01(void * this, int param_1) 69 0 +0040ac46 FUN_0040ac46 undefined FUN_0040ac46(void * this, int * param_1) 71 0 +0040ac8d FUN_0040ac8d int FUN_0040ac8d(int param_1) 11 0 +0040ac9d FUN_0040ac9d undefined FUN_0040ac9d(char * param_1) 19 1 +0040acb5 FUN_0040acb5 undefined FUN_0040acb5(char * param_1) 19 1 +0040accd FUN_0040accd undefined FUN_0040accd(char * param_1) 19 1 +0040ace5 FUN_0040ace5 undefined FUN_0040ace5(char * param_1) 19 1 +0040acfd FUN_0040acfd undefined FUN_0040acfd(char * param_1) 19 1 +0040ad1b FUN_0040ad1b undefined FUN_0040ad1b(char * param_1) 19 1 +0040ad34 FUN_0040ad34 int * FUN_0040ad34(void * this, int * param_1) 23 1 +0040ad56 FUN_0040ad56 undefined FUN_0040ad56(char * param_1) 19 1 +0040ad69 FUN_0040ad69 undefined FUN_0040ad69(int * param_1) 59 0 +0040ada4 FUN_0040ada4 undefined FUN_0040ada4(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040adce FUN_0040adce undefined FUN_0040adce(void * this, int * param_1) 71 0 +0040ae15 FUN_0040ae15 undefined FUN_0040ae15(void * this, int param_1) 69 0 +0040ae5a FUN_0040ae5a undefined FUN_0040ae5a(void * this, undefined4 param_1) 14 0 +0040ae68 FUN_0040ae68 int * FUN_0040ae68(int * param_1) 12 1 +0040ae74 FUN_0040ae74 undefined FUN_0040ae74(undefined4 param_1, int * param_2, void * param_3) 50 2 +0040aea6 FUN_0040aea6 undefined FUN_0040aea6(undefined4 param_1, int * param_2, void * param_3) 50 2 +0040aed8 FUN_0040aed8 undefined FUN_0040aed8(undefined1 * param_1, undefined1 * param_2) 21 0 +0040aeed FUN_0040aeed undefined FUN_0040aeed(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +0040af00 FUN_0040af00 undefined FUN_0040af00(void * param_1, int param_2, void * param_3) 26 1 +0040af1a FUN_0040af1a undefined FUN_0040af1a(undefined4 param_1, void * param_2, int param_3) 19 1 +0040af2d FUN_0040af2d undefined FUN_0040af2d(undefined4 * param_1, undefined4 * param_2) 21 0 +0040af42 FUN_0040af42 undefined FUN_0040af42(undefined4 * param_1, undefined4 * param_2) 21 0 +0040af57 FUN_0040af57 undefined FUN_0040af57(undefined4 * param_1, undefined4 * param_2) 21 0 +0040af6d FUN_0040af6d undefined FUN_0040af6d(undefined4 * param_1, undefined4 * param_2) 21 0 +0040af82 FUN_0040af82 undefined FUN_0040af82(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040af9a FUN_0040af9a undefined FUN_0040af9a(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040afb2 FUN_0040afb2 undefined FUN_0040afb2(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040afca FUN_0040afca undefined FUN_0040afca(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040afe2 FUN_0040afe2 undefined FUN_0040afe2(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040affa FUN_0040affa undefined FUN_0040affa(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040b012 FUN_0040b012 undefined FUN_0040b012(undefined4 param_1, void * param_2, int param_3) 19 1 +0040b025 FUN_0040b025 undefined FUN_0040b025(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040b03d FUN_0040b03d undefined FUN_0040b03d(int * param_1) 37 2 +0040b065 FUN_0040b065 undefined FUN_0040b065(undefined4 * param_1, undefined4 * param_2) 20 1 +0040b079 FUN_0040b079 undefined FUN_0040b079(int param_1) 39 1 +0040b0a3 FUN_0040b0a3 undefined FUN_0040b0a3(int param_1) 39 1 +0040b0ca FUN_0040b0ca undefined FUN_0040b0ca(void * param_1, int param_2) 20 1 +0040b0de FUN_0040b0de undefined FUN_0040b0de(int param_1) 39 1 +0040b10b FUN_0040b10b undefined FUN_0040b10b(undefined4 * param_1, undefined4 * param_2) 20 1 +0040b191 FUN_0040b191 undefined FUN_0040b191(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b1a9 FUN_0040b1a9 undefined FUN_0040b1a9(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b1c1 FUN_0040b1c1 int FUN_0040b1c1(int param_1) 11 0 +0040b1cc FUN_0040b1cc undefined FUN_0040b1cc(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +0040b1ea FUN_0040b1ea undefined FUN_0040b1ea(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b208 FUN_0040b208 int * FUN_0040b208(int * param_1) 12 1 +0040b21a FUN_0040b21a int * FUN_0040b21a(int * param_1) 12 1 +0040b250 FUN_0040b250 int * FUN_0040b250(int * param_1) 12 1 +0040b25c FUN_0040b25c int * FUN_0040b25c(int * param_1) 12 1 +0040b268 FUN_0040b268 undefined FUN_0040b268(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b280 FUN_0040b280 undefined FUN_0040b280(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b298 FUN_0040b298 int * FUN_0040b298(int * param_1) 12 1 +0040b2a4 FUN_0040b2a4 int * FUN_0040b2a4(int * param_1) 12 1 +0040b2b0 FUN_0040b2b0 undefined FUN_0040b2b0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b2c8 FUN_0040b2c8 int * FUN_0040b2c8(int * param_1) 12 1 +0040b2d4 FUN_0040b2d4 int * FUN_0040b2d4(int * param_1) 12 1 +0040b2e6 FUN_0040b2e6 int * FUN_0040b2e6(int * param_1) 12 1 +0040b2f2 FUN_0040b2f2 undefined FUN_0040b2f2(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b30a FUN_0040b30a undefined FUN_0040b30a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b322 FUN_0040b322 int * FUN_0040b322(int * param_1) 12 1 +0040b333 FUN_0040b333 undefined FUN_0040b333(char * param_1) 19 1 +0040b346 FUN_0040b346 undefined FUN_0040b346(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b35e FUN_0040b35e undefined1 * FUN_0040b35e(void * this, int param_1) 138 4 CoCreateInstance +0040b3e8 FUN_0040b3e8 undefined FUN_0040b3e8(LPVOID * param_1) 38 2 CoCreateInstance +0040b40e FUN_0040b40e undefined FUN_0040b40e(void * this, int * param_1, int * param_2) 48 0 +0040b43e FUN_0040b43e undefined1 * FUN_0040b43e(int * param_1) 147 6 +0040b4d1 FUN_0040b4d1 undefined1 * FUN_0040b4d1(void * this, int param_1) 138 4 CoCreateInstance +0040b55b FUN_0040b55b undefined1 * FUN_0040b55b(int * param_1) 147 6 +0040b5ee FUN_0040b5ee undefined FUN_0040b5ee(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040b606 FUN_0040b606 undefined FUN_0040b606(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040b61e FUN_0040b61e undefined FUN_0040b61e(void * this, undefined4 * param_1, undefined4 * param_2) 29 0 +0040b63b FUN_0040b63b undefined FUN_0040b63b(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +0040b682 FUN_0040b682 int FUN_0040b682(undefined4 * param_1, undefined4 * param_2, int param_3) 49 0 +0040b6b4 FUN_0040b6b4 int FUN_0040b6b4(undefined4 * param_1, undefined4 * param_2, int param_3) 49 0 +0040b6e5 FUN_0040b6e5 void * FUN_0040b6e5(void * param_1, int param_2, void * param_3) 37 1 memmove +0040b70a FUN_0040b70a undefined FUN_0040b70a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b722 FUN_0040b722 undefined FUN_0040b722(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b73a FUN_0040b73a undefined FUN_0040b73a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b752 FUN_0040b752 undefined FUN_0040b752(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b76a FUN_0040b76a undefined FUN_0040b76a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b782 FUN_0040b782 undefined FUN_0040b782(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b79a FUN_0040b79a undefined FUN_0040b79a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b7b2 FUN_0040b7b2 undefined FUN_0040b7b2(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b7ca FUN_0040b7ca undefined FUN_0040b7ca(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040b800 FUN_0040b800 undefined FUN_0040b800(int param_1) 39 1 +0040b827 FUN_0040b827 undefined FUN_0040b827(int param_1) 39 1 +0040b84e FUN_0040b84e undefined FUN_0040b84e(int param_1) 39 1 +0040b875 FUN_0040b875 undefined FUN_0040b875(int param_1) 39 1 +0040b89c FUN_0040b89c undefined FUN_0040b89c(int param_1) 39 1 +0040b8c3 FUN_0040b8c3 undefined FUN_0040b8c3(int param_1) 39 1 +0040b8ea FUN_0040b8ea int * FUN_0040b8ea(int * param_1) 12 1 +0040b8f6 FUN_0040b8f6 undefined FUN_0040b8f6(void * this, int * param_1, int * param_2) 48 0 +0040b926 FUN_0040b926 undefined FUN_0040b926(undefined4 * param_1) 16 0 +0040b936 FUN_0040b936 undefined FUN_0040b936(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040b94e FUN_0040b94e undefined FUN_0040b94e(void * this, undefined4 * param_1) 22 0 +0040b964 FUN_0040b964 undefined FUN_0040b964(void * this, undefined4 * param_1) 22 0 +0040b97a FUN_0040b97a undefined FUN_0040b97a(void * this, undefined4 * param_1) 29 0 +0040b997 FUN_0040b997 undefined FUN_0040b997(void * this, undefined4 * param_1) 28 0 +0040b9b3 FUN_0040b9b3 void * FUN_0040b9b3(void * this, undefined4 * param_1) 46 3 +0040b9e1 FUN_0040b9e1 undefined FUN_0040b9e1(void * this, undefined4 * param_1) 28 0 +0040b9fd FUN_0040b9fd undefined FUN_0040b9fd(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +0040ba1b FUN_0040ba1b undefined4 * FUN_0040ba1b(void * this, undefined4 * param_1, int param_2) 49 3 +0040ba4c FUN_0040ba4c undefined FUN_0040ba4c(int * param_1, wchar_t * param_2) 100 4 +0040bab0 FUN_0040bab0 undefined FUN_0040bab0(int * param_1, wchar_t * param_2) 100 4 +0040bb14 FUN_0040bb14 undefined FUN_0040bb14(int * param_1, wchar_t * param_2) 100 4 +0040bb78 FUN_0040bb78 undefined FUN_0040bb78(int * param_1, undefined4 param_2, wchar_t * param_3) 112 4 +0040bbf1 FUN_0040bbf1 undefined4 FUN_0040bbf1(void) 8 0 +0040bbf9 FUN_0040bbf9 undefined4 FUN_0040bbf9(void) 8 0 +0040bc01 FUN_0040bc01 undefined4 FUN_0040bc01(void) 8 0 +0040bc09 FUN_0040bc09 undefined4 * FUN_0040bc09(void * this, size_t param_1) 72 2 +0040bc51 FUN_0040bc51 undefined FUN_0040bc51(void) 34 2 +0040bc73 FUN_0040bc73 undefined FUN_0040bc73(int * param_1) 37 2 +0040bc98 FUN_0040bc98 undefined FUN_0040bc98(int * param_1) 37 2 +0040bcbd FUN_0040bcbd undefined FUN_0040bcbd(int * param_1) 37 2 +0040bce2 FUN_0040bce2 undefined4 FUN_0040bce2(void) 156 8 +0040bd7e FUN_0040bd7e longlong FUN_0040bd7e(void) 171 8 +0040be29 FUN_0040be29 bool FUN_0040be29(void) 147 8 +0040bebc FUN_0040bebc undefined4 FUN_0040bebc(void) 156 8 +0040bf58 FUN_0040bf58 undefined FUN_0040bf58(LPBYTE param_1, LPBYTE param_2) 176 8 +0040c008 FUN_0040c008 undefined FUN_0040c008(wchar_t * param_1, u_short param_2, undefined4 * param_3) 385 15 SysAllocString;memcpy_s;memset +0040c189 FUN_0040c189 undefined4 FUN_0040c189(void) 156 8 +0040c225 FUN_0040c225 uint FUN_0040c225(void) 157 8 +0040c2cf FUN_0040c2cf undefined FUN_0040c2cf(void * this, undefined4 * param_1) 14 0 +0040c2dd FUN_0040c2dd undefined FUN_0040c2dd(void * this, undefined4 * param_1) 15 0 +0040c2ec FUN_0040c2ec undefined FUN_0040c2ec(void * this, int * param_1) 19 0 +0040c318 FUN_0040c318 undefined FUN_0040c318(void * this, undefined4 * param_1) 14 0 +0040c326 FUN_0040c326 undefined FUN_0040c326(void * this, undefined4 * param_1) 15 0 +0040c38f FID_conflict:operator= undefined FID_conflict:operator=(void * this, int * param_1) 23 1 +0040c3b2 FUN_0040c3b2 undefined FUN_0040c3b2(void * this, undefined4 * param_1) 25 1 +0040c3e3 FUN_0040c3e3 undefined FUN_0040c3e3(void * this, undefined4 * param_1) 18 0 +0040c3f8 FUN_0040c3f8 undefined FUN_0040c3f8(void * this, int * param_1) 19 0 +0040c40b FUN_0040c40b undefined4 FUN_0040c40b(void * this, int * param_1) 19 0 +0040c454 FUN_0040c454 undefined FUN_0040c454(void * this, undefined4 * param_1) 18 0 +0040c478 FUN_0040c478 undefined FUN_0040c478(void * this, undefined4 * param_1) 18 0 +0040c48a FUN_0040c48a undefined FUN_0040c48a(void * this, int param_1) 69 0 +0040c4cf FUN_0040c4cf undefined FUN_0040c4cf(undefined4 * param_1, undefined4 param_2) 15 0 +0040c4e1 FUN_0040c4e1 undefined FUN_0040c4e1(undefined4 * param_1) 29 1 +0040c4fe FUN_0040c4fe undefined FUN_0040c4fe(void * this, undefined4 param_1) 14 0 +0040c50c FUN_0040c50c int * FUN_0040c50c(int * param_1) 12 1 +0040c518 FUN_0040c518 undefined FUN_0040c518(void * this, int param_1) 69 0 +0040c55d FUN_0040c55d undefined4 FUN_0040c55d(void * this, char * param_1) 77 2 +0040c5aa FUN_0040c5aa undefined FUN_0040c5aa(void * this, int param_1) 69 0 +0040c5ef FUN_0040c5ef undefined FUN_0040c5ef(void * this, int param_1) 69 0 +0040c634 FUN_0040c634 undefined FUN_0040c634(void * this, int param_1) 69 0 +0040c679 FUN_0040c679 int * FUN_0040c679(int * param_1) 33 1 +0040c69a FUN_0040c69a undefined FUN_0040c69a(void * this, int param_1) 69 0 +0040c6df FUN_0040c6df int * FUN_0040c6df(int * param_1) 33 1 +0040c700 FUN_0040c700 undefined FUN_0040c700(void * this, undefined4 param_1) 14 0 +0040c70e FUN_0040c70e int * FUN_0040c70e(int * param_1) 12 1 +0040c724 FUN_0040c724 undefined FUN_0040c724(void * this, undefined4 param_1) 14 0 +0040c732 FUN_0040c732 int * FUN_0040c732(int * param_1) 12 1 +0040c73e FUN_0040c73e undefined FUN_0040c73e(void * this, undefined4 param_1) 14 0 +0040c74c FUN_0040c74c undefined FUN_0040c74c(void * this, undefined4 param_1) 14 0 +0040c75a FUN_0040c75a int * FUN_0040c75a(int * param_1) 12 1 +0040c770 FUN_0040c770 undefined FUN_0040c770(void * this, undefined4 param_1) 14 0 +0040c77e FUN_0040c77e int * FUN_0040c77e(int * param_1) 12 1 +0040c78a FUN_0040c78a undefined FUN_0040c78a(void * this, undefined4 param_1) 14 0 +0040c798 FUN_0040c798 int * FUN_0040c798(int * param_1) 12 1 +0040c7a4 FUN_0040c7a4 undefined FUN_0040c7a4(void * this, undefined4 param_1) 14 0 +0040c7b2 FUN_0040c7b2 int * FUN_0040c7b2(int * param_1) 12 1 +0040c7be FUN_0040c7be int * FUN_0040c7be(int * param_1) 33 1 +0040c7df FUN_0040c7df undefined FUN_0040c7df(void * this, undefined4 param_1) 14 0 +0040c7f3 FUN_0040c7f3 undefined FUN_0040c7f3(void * this, undefined4 param_1) 14 0 +0040c811 FUN_0040c811 undefined FUN_0040c811(void * this, undefined4 param_1) 14 0 +0040c81f FUN_0040c81f undefined FUN_0040c81f(void * this, int * param_1, int * param_2) 123 0 +0040c89a FUN_0040c89a int FUN_0040c89a(int param_1) 55 1 +0040c8d1 FUN_0040c8d1 undefined FUN_0040c8d1(void * this, int * param_1, int * param_2) 123 0 +0040c94c FUN_0040c94c int FUN_0040c94c(int param_1) 55 1 +0040c983 FUN_0040c983 undefined FUN_0040c983(void * this, int * param_1, uint * param_2) 167 1 +0040ca2a FUN_0040ca2a int FUN_0040ca2a(int param_1) 55 1 +0040ca61 FUN_0040ca61 int FUN_0040ca61(int param_1) 55 1 +0040ca98 FUN_0040ca98 undefined FUN_0040ca98(void * this, int * param_1, int * param_2) 123 0 +0040cb13 FUN_0040cb13 int FUN_0040cb13(int param_1) 55 1 +0040cb4a FUN_0040cb4a undefined FUN_0040cb4a(void * this, int * param_1, int * param_2) 123 0 +0040cbc5 FUN_0040cbc5 int FUN_0040cbc5(int param_1) 55 1 +0040cbfc FUN_0040cbfc undefined FUN_0040cbfc(undefined4 * param_1, undefined4 param_2) 15 0 +0040cc0b FUN_0040cc0b undefined FUN_0040cc0b(void * this, uint param_1) 42 1 +0040cc35 FUN_0040cc35 undefined FUN_0040cc35(void * this, int * param_1, int * param_2) 123 0 +0040ccb0 FUN_0040ccb0 int FUN_0040ccb0(int param_1) 55 1 +0040cce7 FUN_0040cce7 undefined FUN_0040cce7(void * this, uint param_1) 42 1 +0040cd11 FUN_0040cd11 undefined FUN_0040cd11(void * this, uint param_1) 42 1 +0040cd3b FUN_0040cd3b int FUN_0040cd3b(int param_1) 55 1 +0040cd72 FUN_0040cd72 int * FUN_0040cd72(int * param_1) 12 1 +0040cd7e FUN_0040cd7e undefined FUN_0040cd7e(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +0040cd96 FUN_0040cd96 undefined FUN_0040cd96(void * this, int param_1, void * param_2, int param_3, int param_4, uint param_5) 96 1 +0040cdf6 FUN_0040cdf6 undefined4 * FUN_0040cdf6(void * this, int * param_1) 44 0 +0040ce22 FUN_0040ce22 int * FUN_0040ce22(void * this, int * param_1) 23 1 +0040ce39 FUN_0040ce39 int * FUN_0040ce39(void * this, int * param_1) 23 1 +0040ce50 FUN_0040ce50 undefined FUN_0040ce50(void * this, undefined4 param_1) 14 0 +0040ce5e FUN_0040ce5e undefined FUN_0040ce5e(undefined4 * param_1, undefined4 param_2) 15 0 +0040ce6d FUN_0040ce6d undefined FUN_0040ce6d(void * this, int param_1) 69 0 +0040ceb2 FUN_0040ceb2 undefined FUN_0040ceb2(int * param_1) 31 3 +0040ced1 Catch@0040ced1 undefined * Catch@0040ced1(void) 34 2 +0040cef5 Catch@0040cef5 undefined4 Catch@0040cef5(void) 10 0 +0040cf04 FUN_0040cf04 undefined FUN_0040cf04(void * this, int * param_1) 99 4 +0040cf67 FUN_0040cf67 undefined4 * FUN_0040cf67(void * this, int param_1) 24 1 +0040cf7f FUN_0040cf7f undefined FUN_0040cf7f(int * param_1) 31 3 +0040cf9e Catch@0040cf9e undefined * Catch@0040cf9e(void) 34 2 +0040cfc2 Catch@0040cfc2 undefined4 Catch@0040cfc2(void) 10 0 +0040cfcc FUN_0040cfcc undefined FUN_0040cfcc(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 23 0 +0040cfe3 FUN_0040cfe3 undefined FUN_0040cfe3(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 23 0 +0040cffa FUN_0040cffa undefined FUN_0040cffa(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 28 0 +0040d016 FUN_0040d016 undefined FUN_0040d016(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 29 0 +0040d033 FUN_0040d033 void * FUN_0040d033(void * param_1, undefined4 * param_2, int param_3) 50 3 +0040d066 FUN_0040d066 undefined FUN_0040d066(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 18 1 +0040d078 FUN_0040d078 undefined FUN_0040d078(undefined4 * param_1, undefined4 * param_2, int param_3) 26 1 +0040d092 FUN_0040d092 undefined FUN_0040d092(undefined4 param_1, void * param_2, int param_3) 18 1 +0040d0a8 FUN_0040d0a8 undefined FUN_0040d0a8(undefined4 * param_1, undefined4 * param_2, int param_3) 26 1 +0040d0c3 FUN_0040d0c3 undefined FUN_0040d0c3(void * param_1, int param_2, void * param_3) 28 1 +0040d0df FUN_0040d0df undefined FUN_0040d0df(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 18 1 +0040d0f3 FUN_0040d0f3 undefined FUN_0040d0f3(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +0040d111 FUN_0040d111 undefined FUN_0040d111(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +0040d23a FUN_0040d23a int * FUN_0040d23a(int * param_1) 12 1 +0040d246 FUN_0040d246 undefined FUN_0040d246(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +0040d36f FUN_0040d36f undefined FUN_0040d36f(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +0040d498 FUN_0040d498 undefined FUN_0040d498(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +0040d5c1 FUN_0040d5c1 undefined FUN_0040d5c1(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +0040d6ea FUN_0040d6ea int * FUN_0040d6ea(int * param_1) 12 1 +0040d6f6 FUN_0040d6f6 int * FUN_0040d6f6(int * param_1) 12 1 +0040d702 FUN_0040d702 undefined FUN_0040d702(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040d71a FUN_0040d71a undefined FUN_0040d71a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040d732 FUN_0040d732 int * FUN_0040d732(int * param_1) 12 1 +0040d73e FUN_0040d73e int * FUN_0040d73e(int * param_1) 12 1 +0040d74a FUN_0040d74a undefined FUN_0040d74a(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040d762 FUN_0040d762 int * FUN_0040d762(int * param_1) 12 1 +0040d76e FUN_0040d76e int * FUN_0040d76e(int * param_1) 12 1 +0040d77a FUN_0040d77a undefined FUN_0040d77a(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 297 4 +0040d8a3 FUN_0040d8a3 int * FUN_0040d8a3(int * param_1) 12 1 +0040d8af FUN_0040d8af undefined FUN_0040d8af(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040d8c7 FUN_0040d8c7 undefined FUN_0040d8c7(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040d8df FUN_0040d8df int FUN_0040d8df(int param_1) 55 1 +0040d916 FUN_0040d916 undefined FUN_0040d916(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +0040d92e FUN_0040d92e undefined FUN_0040d92e(void * this, int * param_1) 99 4 +0040d991 FUN_0040d991 undefined FUN_0040d991(int param_1, int param_2, int * param_3) 35 1 +0040d9b4 FUN_0040d9b4 undefined FUN_0040d9b4(int param_1, int param_2, int * param_3) 35 1 +0040d9d7 FUN_0040d9d7 undefined FUN_0040d9d7(int param_1, int param_2, int * param_3) 35 1 +0040d9fa FUN_0040d9fa undefined FUN_0040d9fa(int param_1, int param_2, int * param_3) 35 1 +0040da1d FUN_0040da1d undefined FUN_0040da1d(int param_1, int param_2, int * param_3) 35 1 +0040da40 FUN_0040da40 undefined FUN_0040da40(int param_1, int param_2, int * param_3) 35 1 +0040da63 FUN_0040da63 undefined FUN_0040da63(int param_1, int param_2, int * param_3) 35 1 +0040dab7 FUN_0040dab7 undefined4 * FUN_0040dab7(void * this, void * param_1) 77 4 +0040db04 FUN_0040db04 undefined FUN_0040db04(undefined4 param_1, undefined4 * param_2) 14 0 +0040db12 FUN_0040db12 void * FUN_0040db12(int param_1, int param_2, void * param_3, undefined4 param_4) 68 3 +0040db56 Catch@0040db56 undefined Catch@0040db56(void) 33 2 +0040db78 FUN_0040db78 undefined FUN_0040db78(undefined4 * param_1, undefined4 * param_2) 51 2 +0040dbab FUN_0040dbab undefined FUN_0040dbab(undefined4 * param_1, undefined4 * param_2) 51 2 +0040dbde FUN_0040dbde undefined FUN_0040dbde(undefined4 * param_1, undefined4 * param_2) 54 2 +0040dc14 FUN_0040dc14 undefined FUN_0040dc14(undefined4 * param_1, undefined4 * param_2) 57 2 +0040dc4d FUN_0040dc4d undefined1 * FUN_0040dc4d(void * param_1, undefined4 * param_2) 46 3 +0040dc7b FUN_0040dc7b undefined FUN_0040dc7b(undefined4 * param_1, undefined4 * param_2) 57 2 +0040dcb4 FUN_0040dcb4 undefined FUN_0040dcb4(void * this, undefined4 * param_1) 28 0 +0040dcd0 FUN_0040dcd0 void * FUN_0040dcd0(void * this, undefined4 * param_1) 46 3 +0040dcfe FUN_0040dcfe undefined FUN_0040dcfe(void * this, undefined4 * param_1) 22 0 +0040dd14 FUN_0040dd14 void * FUN_0040dd14(int param_1, int param_2, void * param_3, undefined4 param_4) 68 3 +0040dd58 Catch@0040dd58 undefined Catch@0040dd58(void) 33 2 +0040dd7a FUN_0040dd7a undefined FUN_0040dd7a(int param_1) 293 13 +0040de9f Catch@0040de9f undefined * Catch@0040de9f(void) 68 4 +0040deeb FUN_0040deeb undefined FUN_0040deeb(void) 42 3 +0040df15 FUN_0040df15 undefined FUN_0040df15(int param_1) 274 11 SysFreeString +0040e027 FUN_0040e027 undefined4 * FUN_0040e027(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, int param_4, undefined4 param_5) 80 3 +0040e077 FUN_0040e077 undefined FUN_0040e077(int * param_1) 78 5 +0040e0c5 FUN_0040e0c5 undefined4 FUN_0040e0c5(int param_1) 158 8 +0040e163 Catch@0040e163 undefined * Catch@0040e163(void) 10 0 +0040e170 FUN_0040e170 undefined4 FUN_0040e170(void) 13 1 +0040e17d FUN_0040e17d undefined FUN_0040e17d(int param_1) 181 7 +0040e232 Catch@0040e232 undefined4 Catch@0040e232(void) 10 0 +0040e2dd FUN_0040e2dd undefined FUN_0040e2dd(void * this, int * param_1) 954 13 SysAllocString;SysFreeString +0040ea34 FUN_0040ea34 undefined FUN_0040ea34(int param_1) 369 4 +0040eba5 FUN_0040eba5 undefined FUN_0040eba5(void) 298 8 +0040eccf FUN_0040eccf undefined1 FUN_0040eccf(int param_1) 165 7 CoCreateInstance +0040ed74 FUN_0040ed74 undefined4 FUN_0040ed74(int param_1) 378 8 +0040eeee FUN_0040eeee undefined4 FUN_0040eeee(void) 64 4 +0040ef2e FUN_0040ef2e undefined FUN_0040ef2e(int param_1) 33 3 +0040ef4f FUN_0040ef4f undefined FUN_0040ef4f(int param_1) 43 3 +0040ef7a FUN_0040ef7a undefined FUN_0040ef7a(int param_1) 43 3 +0040efa5 FUN_0040efa5 undefined FUN_0040efa5(undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7) 441 15 memcpy_s +0040f15e FUN_0040f15e undefined1 FUN_0040f15e(char * param_1) 291 9 +0040f281 FUN_0040f281 int * FUN_0040f281(void * this, int * param_1) 51 3 +0040f2b4 FUN_0040f2b4 undefined FUN_0040f2b4(void * this, undefined4 * param_1) 17 0 +0040f2c5 FUN_0040f2c5 undefined FUN_0040f2c5(void * this, undefined4 * param_1) 15 0 +0040f2d4 FUN_0040f2d4 undefined FUN_0040f2d4(void * this, undefined4 * param_1, int * param_2) 587 5 +0040f51f thunk_FUN_0040c4e1 undefined thunk_FUN_0040c4e1(undefined4 * param_1) 5 0 +0040f524 FUN_0040f524 undefined FUN_0040f524(void * this, undefined4 * param_1, void * param_2) 45 1 +0040f551 FUN_0040f551 int * FUN_0040f551(void * this, int * param_1) 23 1 +0040f568 FUN_0040f568 undefined FUN_0040f568(void * this, undefined4 * param_1) 17 0 +0040f579 FUN_0040f579 undefined FUN_0040f579(void * this, undefined4 * param_1) 15 0 +0040f588 FUN_0040f588 undefined FUN_0040f588(void * this, undefined4 * param_1) 17 0 +0040f599 FUN_0040f599 undefined FUN_0040f599(void * this, undefined4 * param_1) 15 0 +0040f5a8 FUN_0040f5a8 undefined FUN_0040f5a8(void * this, undefined4 * param_1) 17 0 +0040f5b9 FUN_0040f5b9 undefined FUN_0040f5b9(void * this, undefined4 * param_1) 15 0 +0040f5c8 FUN_0040f5c8 undefined FUN_0040f5c8(void * this, undefined4 * param_1) 17 0 +0040f5d9 FUN_0040f5d9 undefined FUN_0040f5d9(void * this, undefined4 * param_1) 15 0 +0040f5e8 FUN_0040f5e8 undefined FUN_0040f5e8(void * this, undefined4 * param_1, int * param_2) 587 5 +0040f833 FUN_0040f833 undefined FUN_0040f833(void * this, undefined4 * param_1) 17 0 +0040f844 FUN_0040f844 undefined FUN_0040f844(void * this, undefined4 * param_1) 15 0 +0040f853 FUN_0040f853 undefined FUN_0040f853(void * this, undefined4 * param_1, int * param_2) 587 5 +0040fa9e FUN_0040fa9e int * FUN_0040fa9e(int * param_1) 40 3 +0040fac6 FUN_0040fac6 undefined FUN_0040fac6(void * this, undefined4 * param_1) 16 0 +0040fad6 FUN_0040fad6 undefined FUN_0040fad6(void * this, undefined4 * param_1) 14 0 +0040faec FUN_0040faec undefined FUN_0040faec(void * this, undefined4 * param_1) 17 0 +0040fafd FUN_0040fafd undefined FUN_0040fafd(void * this, undefined4 * param_1) 15 0 +0040fb0c FUN_0040fb0c int * FUN_0040fb0c(int * param_1) 40 3 +0040fb34 FUN_0040fb34 undefined FUN_0040fb34(void * this, undefined4 * param_1) 16 0 +0040fb44 FUN_0040fb44 undefined FUN_0040fb44(void * this, undefined4 * param_1) 14 0 +0040fb52 FUN_0040fb52 int * FUN_0040fb52(void * this, int * param_1) 23 1 +0040fb73 FUN_0040fb73 int * FUN_0040fb73(void * this, int * param_1) 23 1 +0040fb8a FUN_0040fb8a int * FUN_0040fb8a(void * this, int * param_1) 23 1 +0040fbab FUN_0040fbab int * FUN_0040fbab(void * this, int * param_1) 23 1 +0040fbc2 FUN_0040fbc2 int * FUN_0040fbc2(void * this, int * param_1) 23 1 +0040fbd9 FUN_0040fbd9 int * FUN_0040fbd9(void * this, int * param_1) 23 1 +0040fc18 FUN_0040fc18 undefined FUN_0040fc18(void * this, undefined4 * param_1) 16 0 +0040fc28 FUN_0040fc28 undefined FUN_0040fc28(void * this, undefined4 * param_1) 14 0 +0040fc3c FUN_0040fc3c undefined FUN_0040fc3c(void * this, undefined4 * param_1) 17 0 +0040fc4d FUN_0040fc4d undefined FUN_0040fc4d(void * this, undefined4 * param_1) 15 0 +0040fc99 FUN_0040fc99 int * FUN_0040fc99(void * this, int * param_1, int * param_2) 21 1 +0040fcae FUN_0040fcae undefined FUN_0040fcae(int * param_1) 53 2 +0040fce3 FUN_0040fce3 undefined FUN_0040fce3(void * this, undefined4 * param_1, void * param_2, void * param_3) 48 1 +0040fd40 FUN_0040fd40 int * FUN_0040fd40(void * this, int * param_1, int * param_2) 21 1 +0040fd55 FUN_0040fd55 undefined FUN_0040fd55(int * param_1) 53 2 +0040fdb7 FUN_0040fdb7 undefined4 * FUN_0040fdb7(void * this, undefined4 * param_1, uint * param_2) 22 1 +0040fdcd FUN_0040fdcd int * FUN_0040fdcd(void * this, int * param_1, uint * param_2) 21 1 +0040fe0f FUN_0040fe0f undefined4 * FUN_0040fe0f(void * this, undefined4 * param_1, int * param_2) 22 1 +0040fe52 FUN_0040fe52 undefined4 * FUN_0040fe52(void * this, undefined4 * param_1, int * param_2) 22 1 +0040fe68 FUN_0040fe68 int * FUN_0040fe68(void * this, int * param_1, int * param_2) 21 1 +0040fe7d FUN_0040fe7d undefined FUN_0040fe7d(int * param_1) 53 2 +0040fedf FUN_0040fedf undefined4 * FUN_0040fedf(void * this, undefined4 * param_1, int * param_2) 22 1 +0040fef5 FUN_0040fef5 int * FUN_0040fef5(void * this, int * param_1, int * param_2) 21 1 +0040ff0a FUN_0040ff0a undefined FUN_0040ff0a(int * param_1) 53 2 +0040ff3f FUN_0040ff3f undefined FUN_0040ff3f(void * this, int * param_1, int * param_2) 56 1 +0040ffa4 FUN_0040ffa4 undefined4 * FUN_0040ffa4(void * this, undefined4 * param_1, int * param_2) 22 1 +0040ffba FUN_0040ffba int * FUN_0040ffba(void * this, int * param_1, int * param_2) 21 1 +0040fffc FUN_0040fffc int * FUN_0040fffc(int * param_1) 12 1 +00410008 FUN_00410008 undefined FUN_00410008(void * this, char * param_1) 131 6 +0041008b Catch@0041008b undefined Catch@0041008b(void) 18 2 +0041009e FUN_0041009e undefined FUN_0041009e(void * this, undefined4 * param_1, int * param_2) 587 5 +004102e9 FUN_004102e9 undefined FUN_004102e9(int * param_1) 41 1 +00410312 FUN_00410312 undefined4 * FUN_00410312(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +00410360 Catch@00410360 undefined Catch@00410360(void) 18 2 +00410373 FUN_00410373 undefined FUN_00410373(void * this, undefined4 * param_1) 15 0 +00410382 FUN_00410382 undefined4 * FUN_00410382(void * this, undefined4 * param_1, int * param_2) 22 1 +00410398 FUN_00410398 undefined FUN_00410398(void * this, undefined4 * param_1) 17 0 +004103a9 FUN_004103a9 undefined FUN_004103a9(void * this, undefined4 * param_1, int * param_2) 587 5 +004105f4 FUN_004105f4 undefined FUN_004105f4(void * this, int * param_1, int * param_2) 123 0 +0041066f FUN_0041066f undefined FUN_0041066f(void * this, undefined4 * param_1, int * param_2) 587 5 +004108ba FUN_004108ba undefined FUN_004108ba(int * param_1) 53 2 +004108ef FUN_004108ef undefined FUN_004108ef(int * param_1) 53 2 +00410924 FUN_00410924 int * FUN_00410924(void * this, int * param_1) 51 3 +00410957 FUN_00410957 int * FUN_00410957(void * this, int * param_1) 84 5 +004109ab FUN_004109ab undefined4 FUN_004109ab(void * param_1) 84 3 +00410a86 FUN_00410a86 undefined FUN_00410a86(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 29 0 +00410aa3 FUN_00410aa3 undefined FUN_00410aa3(int param_1, int param_2, int * param_3) 26 1 +00410abd FUN_00410abd undefined FUN_00410abd(int param_1, int param_2, int * param_3) 26 1 +00410ad7 FUN_00410ad7 undefined FUN_00410ad7(int param_1, int param_2, int * param_3) 26 1 +00410af1 FUN_00410af1 undefined FUN_00410af1(int param_1, int param_2, int * param_3) 26 1 +00410b0b FUN_00410b0b undefined FUN_00410b0b(int param_1, int param_2, int * param_3) 26 1 +00410b25 FUN_00410b25 undefined FUN_00410b25(int param_1, int param_2, int * param_3) 26 1 +00410b3f FUN_00410b3f undefined FUN_00410b3f(int param_1, int param_2, int * param_3) 26 1 +00410b59 FUN_00410b59 undefined FUN_00410b59(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +00410c08 FUN_00410c08 undefined FUN_00410c08(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +00410cb7 FUN_00410cb7 undefined FUN_00410cb7(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +00410d66 FUN_00410d66 undefined FUN_00410d66(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +00410e15 FUN_00410e15 undefined FUN_00410e15(void * this, int * param_1, int * param_2, undefined4 * param_3) 195 4 +00410f05 FUN_00410f05 undefined FUN_00410f05(void * this, undefined4 * param_1, int * param_2, char param_3) 175 3 +00410fb4 FUN_00410fb4 undefined FUN_00410fb4(undefined4 * param_1, undefined4 * param_2, undefined4 param_3) 31 1 +00410fd3 _Uninitialized_move<> undefined _Uninitialized_move<>(int param_1, int param_2, void * param_3, undefined4 param_4) 31 1 +00411010 FUN_00411010 undefined4 * FUN_00411010(void * this, undefined4 * param_1) 84 3 +00411064 FUN_00411064 undefined FUN_00411064(int param_1) 43 3 +0041108f FUN_0041108f undefined FUN_0041108f(int param_1) 43 3 +004110ba FUN_004110ba undefined FUN_004110ba(int param_1) 43 3 +004110e5 FUN_004110e5 undefined FUN_004110e5(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +004110f8 FUN_004110f8 undefined FUN_004110f8(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +0041110b FUN_0041110b undefined FUN_0041110b(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +0041111e FUN_0041111e undefined FUN_0041111e(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +00411131 FUN_00411131 undefined FUN_00411131(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +00411144 FUN_00411144 undefined FUN_00411144(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +00411157 FUN_00411157 undefined4 * FUN_00411157(void * this, undefined4 * param_1, undefined4 * param_2) 55 3 +0041118e FUN_0041118e undefined4 * FUN_0041118e(void * this, undefined4 * param_1, undefined4 * param_2) 49 3 +004111bf FUN_004111bf void * FUN_004111bf(int param_1, int param_2, void * param_3, undefined4 param_4) 68 3 +00411203 Catch@00411203 undefined Catch@00411203(void) 33 2 +00411225 FUN_00411225 undefined FUN_00411225(undefined4 * param_1, undefined4 * param_2) 57 2 +0041125e FUN_0041125e undefined1 * FUN_0041125e(void * param_1, undefined4 * param_2) 46 3 +0041128c FUN_0041128c undefined FUN_0041128c(undefined4 * param_1, undefined4 * param_2) 51 2 +004112bf FUN_004112bf undefined FUN_004112bf(int param_1, int param_2, void * param_3, undefined4 param_4) 29 1 +004112dc FUN_004112dc undefined4 * FUN_004112dc(void * this, undefined4 * param_1, undefined4 * param_2) 55 3 +00411313 FUN_00411313 undefined4 * FUN_00411313(void * this, undefined4 * param_1, undefined4 * param_2) 55 3 +0041134a FUN_0041134a undefined4 * FUN_0041134a(void * this, undefined4 * param_1, undefined4 * param_2) 49 3 +0041137b FUN_0041137b undefined4 FUN_0041137b(void * this, int param_1) 54 1 +004113b6 FUN_004113b6 undefined4 FUN_004113b6(int param_1) 102 3 memset +0041141c FUN_0041141c undefined FUN_0041141c(wchar_t * param_1, u_long * param_2) 470 15 memcpy_s +004115f2 FUN_004115f2 undefined FUN_004115f2(void * this, int param_1) 1401 21 SysAllocString;SysFreeString +00411b6b FUN_00411b6b undefined4 FUN_00411b6b(void * this, int param_1) 88 4 +00411bc3 FUN_00411bc3 undefined4 FUN_00411bc3(void * this, int param_1, undefined4 * param_2) 96 4 +00411c23 FUN_00411c23 undefined FUN_00411c23(int param_1) 30 3 +00411c41 FUN_00411c41 undefined FUN_00411c41(int param_1) 30 3 +00411c5f FUN_00411c5f undefined FUN_00411c5f(int param_1) 39 1 +00411c86 FUN_00411c86 undefined FUN_00411c86(undefined4 * param_1) 22 1 +00411c9c FUN_00411c9c undefined FUN_00411c9c(int param_1) 39 1 +00411cc3 FUN_00411cc3 undefined FUN_00411cc3(void * this, undefined4 * param_1, uint * param_2) 68 2 +00411d07 FUN_00411d07 undefined FUN_00411d07(void * this, undefined4 * param_1, int * param_2) 58 1 +00411d41 FUN_00411d41 undefined FUN_00411d41(int param_1) 39 1 +00411d68 FUN_00411d68 undefined FUN_00411d68(void * this, undefined4 * param_1, int * param_2) 58 1 +00411da2 FUN_00411da2 undefined FUN_00411da2(int param_1) 39 1 +00411dc9 FUN_00411dc9 undefined FUN_00411dc9(void * this, undefined4 * param_1, int * param_2) 58 1 +00411e03 FUN_00411e03 undefined FUN_00411e03(undefined4 * param_1) 19 1 +00411e16 FUN_00411e16 undefined FUN_00411e16(void * this, undefined4 * param_1, int * param_2) 58 1 +00411e50 FUN_00411e50 int * FUN_00411e50(void * this, int * param_1) 23 1 +00411e67 FUN_00411e67 undefined FUN_00411e67(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00411eba FUN_00411eba undefined FUN_00411eba(void * param_1) 22 1 +00411ed0 FUN_00411ed0 undefined FUN_00411ed0(void * this, int param_1) 75 3 +00411f1b FUN_00411f1b undefined FUN_00411f1b(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00411f6e FUN_00411f6e undefined FUN_00411f6e(void * param_1) 22 1 +00411f84 FUN_00411f84 undefined FUN_00411f84(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00411fd7 FUN_00411fd7 undefined FUN_00411fd7(void * param_1) 22 1 +00411fed FUN_00411fed undefined FUN_00411fed(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00412040 FUN_00412040 undefined FUN_00412040(void * param_1) 22 1 +00412056 FUN_00412056 undefined FUN_00412056(void * this, int param_1, undefined4 * param_2) 50 2 +0041208d FUN_0041208d int * FUN_0041208d(void * this, int * param_1, int * param_2) 21 1 +004120a2 FUN_004120a2 undefined FUN_004120a2(int param_1) 39 1 +004120c9 FUN_004120c9 undefined FUN_004120c9(int param_1) 39 1 +004120f0 FUN_004120f0 undefined FUN_004120f0(undefined4 * param_1, undefined4 * param_2, undefined4 param_3) 26 1 +0041210a FUN_0041210a undefined FUN_0041210a(void * this, int param_1, int param_2, void * param_3) 28 1 +00412146 FUN_00412146 undefined4 * FUN_00412146(void * this, undefined4 * param_1, int * param_2, int * param_3) 230 4 +0041222c FUN_0041222c int FUN_0041222c(void * this, undefined4 * param_1) 61 4 +00412269 Catch@00412269 undefined Catch@00412269(void) 18 2 +0041227c FUN_0041227c int FUN_0041227c(void * this, undefined4 * param_1) 61 4 +004122b9 Catch@004122b9 undefined Catch@004122b9(void) 18 2 +004122cc FUN_004122cc int FUN_004122cc(void * this, undefined4 * param_1) 61 4 +00412309 Catch@00412309 undefined Catch@00412309(void) 18 2 +0041231c FUN_0041231c int FUN_0041231c(void * this, undefined4 * param_1) 61 4 +00412359 Catch@00412359 undefined Catch@00412359(void) 18 2 +0041236c FUN_0041236c int FUN_0041236c(void * this, undefined4 * param_1) 61 4 +004123a9 Catch@004123a9 undefined Catch@004123a9(void) 18 2 +004123bc FUN_004123bc int FUN_004123bc(void * this, undefined4 * param_1) 61 4 +004123f9 Catch@004123f9 undefined Catch@004123f9(void) 18 2 +0041245e FUN_0041245e undefined FUN_0041245e(int param_1, int param_2, void * param_3, undefined4 param_4) 29 1 +0041247b FUN_0041247b undefined FUN_0041247b(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +0041248e FUN_0041248e undefined FUN_0041248e(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +004124a1 FUN_004124a1 undefined4 * FUN_004124a1(void * param_1, undefined4 * param_2) 47 3 +004124d0 FUN_004124d0 void * FUN_004124d0(void * this, byte param_1) 31 2 +0041252b FUN_0041252b undefined FUN_0041252b(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 19 1 +0041253e FUN_0041253e undefined FUN_0041253e(void * this, int param_1, int param_2, void * param_3) 31 1 +0041255d FUN_0041255d void * FUN_0041255d(void * this, undefined4 * param_1) 46 3 +0041258b FUN_0041258b void * FUN_0041258b(void * this, undefined4 * param_1) 46 3 +004125b9 FUN_004125b9 void * FUN_004125b9(void * this, undefined4 * param_1) 46 3 +004125e7 FUN_004125e7 undefined4 FUN_004125e7(int param_1) 237 11 +004126d4 Catch@004126d4 undefined4 Catch@004126d4(void) 68 4 +00412718 FUN_00412718 void * FUN_00412718(void * this, undefined4 * param_1) 48 2 +00412748 FUN_00412748 undefined4 FUN_00412748(void * this, int param_1, int param_2) 63 1 +00412787 FUN_00412787 undefined4 FUN_00412787(void * this, undefined4 param_1, undefined4 * param_2) 55 1 +004127be FUN_004127be bool FUN_004127be(int param_1) 40 1 +004127e6 FUN_004127e6 undefined4 FUN_004127e6(void * this, undefined4 param_1, undefined4 * param_2) 221 8 +004128c3 FUN_004128c3 undefined FUN_004128c3(void * param_1) 58 4 +004128fd FUN_004128fd int FUN_004128fd(void * this, int * param_1) 70 3 +00412943 FUN_00412943 undefined FUN_00412943(void * this, undefined4 * param_1) 102 3 +004129a9 FUN_004129a9 undefined FUN_004129a9(void * param_1) 58 4 +004129e3 FUN_004129e3 int FUN_004129e3(void * this, int * param_1) 70 3 +00412a29 FUN_00412a29 undefined FUN_00412a29(void * param_1) 58 4 +00412a63 FUN_00412a63 int FUN_00412a63(void * this, int * param_1) 70 3 +00412aa9 FUN_00412aa9 undefined FUN_00412aa9(void * param_1) 58 4 +00412ae3 FUN_00412ae3 int FUN_00412ae3(void * this, int * param_1) 70 3 +00412b29 FUN_00412b29 undefined FUN_00412b29(int * param_1) 44 4 +00412b55 FUN_00412b55 undefined FUN_00412b55(void * this, undefined4 * param_1) 18 1 +00412b67 FUN_00412b67 undefined FUN_00412b67(void * this, undefined4 * param_1, undefined4 * param_2) 28 1 +00412b83 FUN_00412b83 undefined FUN_00412b83(undefined4 * param_1) 53 2 +00412bb8 FUN_00412bb8 undefined FUN_00412bb8(void * this, char * param_1) 159 7 +00412c57 Catch@00412c57 undefined Catch@00412c57(void) 18 2 +00412c6a FUN_00412c6a undefined FUN_00412c6a(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00412cbd FUN_00412cbd undefined FUN_00412cbd(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00412d10 FUN_00412d10 undefined4 * FUN_00412d10(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +00412d33 FUN_00412d33 undefined4 * FUN_00412d33(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +00412d56 FUN_00412d56 undefined4 * FUN_00412d56(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +00412d79 FUN_00412d79 undefined4 * FUN_00412d79(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +00412d9c FUN_00412d9c int * FUN_00412d9c(void * this, int * param_1, undefined4 * param_2) 35 2 +00412dbf FUN_00412dbf void * FUN_00412dbf(void * param_1, undefined4 * param_2, undefined4 * param_3) 65 3 +00412e00 FUN_00412e00 void * FUN_00412e00(void * param_1, undefined4 * param_2, undefined4 * param_3) 50 3 +00412e32 FUN_00412e32 undefined FUN_00412e32(void * this, int param_1, int param_2, void * param_3) 31 1 +00412e51 FUN_00412e51 undefined FUN_00412e51(undefined4 param_1, int param_2) 30 3 +00412e6f FUN_00412e6f int FUN_00412e6f(void * this, undefined4 * param_1) 61 4 +00412eac Catch@00412eac undefined Catch@00412eac(void) 18 2 +00412ebf FUN_00412ebf int FUN_00412ebf(void * this, undefined4 * param_1) 61 4 +00412efc Catch@00412efc undefined Catch@00412efc(void) 18 2 +00412f0f FUN_00412f0f undefined FUN_00412f0f(void * param_1, undefined4 * param_2) 20 1 +00412f23 FUN_00412f23 undefined FUN_00412f23(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 312 5 +0041305b FUN_0041305b undefined FUN_0041305b(void * param_1) 22 1 +00413071 FUN_00413071 int FUN_00413071(void * this, undefined4 * param_1) 61 4 +004130ae Catch@004130ae undefined Catch@004130ae(void) 18 2 +004130c1 FUN_004130c1 undefined FUN_004130c1(int param_1) 12 1 +0041312f FUN_0041312f undefined4 * FUN_0041312f(void * this, int * param_1) 89 4 +00413188 Catch@00413188 undefined Catch@00413188(void) 17 2 +0041319a FUN_0041319a undefined1 * FUN_0041319a(void * param_1, undefined4 * param_2) 46 3 +004131c8 FUN_004131c8 undefined1 * FUN_004131c8(void * param_1, undefined4 * param_2) 46 3 +004131f6 FUN_004131f6 undefined1 * FUN_004131f6(void * param_1, undefined4 * param_2) 46 3 +00413224 FUN_00413224 undefined FUN_00413224(void * param_1) 30 3 +00413242 FUN_00413242 undefined FUN_00413242(void * param_1) 30 3 +00413260 FUN_00413260 undefined FUN_00413260(void * param_1) 30 3 +0041327e FUN_0041327e undefined FUN_0041327e(void * param_1) 30 3 +0041329c FUN_0041329c undefined FUN_0041329c(void * this, undefined4 param_1, uint param_2, void * param_3) 360 10 memcpy_s +00413404 FUN_00413404 undefined FUN_00413404(void * this, int param_1) 92 4 +00413460 FUN_00413460 bool FUN_00413460(void * this, int * param_1) 62 2 +0041349e FUN_0041349e undefined FUN_0041349e(void * this, undefined4 param_1, undefined4 param_2) 128 6 +0041351e FUN_0041351e undefined FUN_0041351e(void * this, int param_1) 91 5 +00413579 FUN_00413579 int FUN_00413579(int param_1) 44 3 +004135a5 FUN_004135a5 int FUN_004135a5(int param_1) 44 3 +004135d1 thunk_FUN_00412b83 undefined thunk_FUN_00412b83(undefined4 * param_1) 5 0 +004135d6 FUN_004135d6 undefined FUN_004135d6(void * this, undefined4 * param_1, int * param_2) 605 6 +00413833 FUN_00413833 int FUN_00413833(int param_1) 44 3 +0041385f FUN_0041385f int FUN_0041385f(int param_1) 44 3 +0041388b FUN_0041388b undefined FUN_0041388b(void * this, int * param_1, undefined4 * param_2, undefined4 * param_3) 68 2 +004138cf FUN_004138cf undefined FUN_004138cf(void * this, int param_1) 85 3 +00413924 FUN_00413924 undefined FUN_00413924(void * this, int * param_1) 68 3 +00413968 FUN_00413968 int FUN_00413968(void * this, int * param_1) 70 3 +004139ae FUN_004139ae undefined FUN_004139ae(void * param_1) 22 1 +004139c4 FUN_004139c4 undefined4 * FUN_004139c4(void * this, undefined4 * param_1, undefined4 param_2) 112 4 +00413a34 Catch@00413a34 undefined Catch@00413a34(void) 20 2 +00413a49 FUN_00413a49 undefined FUN_00413a49(void * this, uint param_1) 96 2 +00413aa9 FUN_00413aa9 undefined4 * FUN_00413aa9(void * this, undefined4 * param_1, undefined4 param_2) 112 4 +00413b19 Catch@00413b19 undefined Catch@00413b19(void) 20 2 +00413b2e FUN_00413b2e undefined4 * FUN_00413b2e(void * this, undefined4 * param_1, int * param_2, undefined4 * param_3) 36 2 +00413b52 FUN_00413b52 undefined FUN_00413b52(undefined4 param_1, void * param_2, undefined4 * param_3) 18 1 +00413b64 FUN_00413b64 undefined FUN_00413b64(void * this, undefined4 * param_1, int * param_2, char param_3) 191 4 +00413c23 FUN_00413c23 undefined FUN_00413c23(void * param_1) 58 4 +00413c5d FUN_00413c5d undefined FUN_00413c5d(int param_1) 15 1 +00413c6c FUN_00413c6c undefined FUN_00413c6c(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +00413cbb FUN_00413cbb undefined FUN_00413cbb(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +00413cce FUN_00413cce undefined FUN_00413cce(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +00413ce1 FUN_00413ce1 undefined FUN_00413ce1(void * this, undefined4 param_1, undefined4 param_2, int * param_3, undefined4 param_4, undefined4 param_5) 390 12 memset +00413e67 FUN_00413e67 undefined FUN_00413e67(int param_1) 208 12 +00413f37 FUN_00413f37 void * FUN_00413f37(void * this, byte param_1) 31 2 +00413f56 FUN_00413f56 undefined FUN_00413f56(void * this, int param_1) 51 2 +00413f89 FUN_00413f89 undefined4 FUN_00413f89(void * this, int param_1, undefined4 param_2, int param_3, uint param_4) 395 11 +00414114 FUN_00414114 undefined4 FUN_00414114(void * this, int param_1, undefined4 param_2, int param_3, uint param_4) 496 13 +00414304 FUN_00414304 undefined4 FUN_00414304(undefined4 param_1, int param_2, int param_3) 465 9 +004144d5 FUN_004144d5 undefined FUN_004144d5(void * this, uint param_1) 109 3 +00414542 FUN_00414542 undefined FUN_00414542(undefined4 * param_1) 22 1 +00414558 FUN_00414558 undefined FUN_00414558(void * param_1) 39 1 +0041457f FUN_0041457f undefined FUN_0041457f(int param_1) 106 7 +004145e9 FUN_004145e9 undefined FUN_004145e9(void * param_1) 58 4 +00414623 FUN_00414623 int * FUN_00414623(void * this, int * param_1) 79 3 +00414672 FUN_00414672 undefined FUN_00414672(void * this, int param_1) 97 1 +004146d3 FUN_004146d3 undefined FUN_004146d3(void * this, undefined4 * param_1) 51 1 +00414706 FUN_00414706 undefined FUN_00414706(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00414759 FUN_00414759 undefined FUN_00414759(void * this, int param_1) 97 1 +004147ba FUN_004147ba undefined4 * FUN_004147ba(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +00414808 Catch@00414808 undefined Catch@00414808(void) 18 2 +0041481b FUN_0041481b undefined4 * FUN_0041481b(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +0041483e FUN_0041483e undefined FUN_0041483e(undefined4 param_1, int param_2) 12 1 +0041484a FUN_0041484a int FUN_0041484a(void * this, undefined4 * param_1) 61 4 +00414887 Catch@00414887 undefined Catch@00414887(void) 18 2 +004148f8 FUN_004148f8 int FUN_004148f8(int param_1) 44 3 +00414924 FUN_00414924 int FUN_00414924(void * this, undefined4 * param_1) 61 4 +00414961 Catch@00414961 undefined Catch@00414961(void) 18 2 +00414974 FUN_00414974 int FUN_00414974(void * this, undefined4 * param_1) 61 4 +004149b1 Catch@004149b1 undefined Catch@004149b1(void) 18 2 +004149c4 FUN_004149c4 void * FUN_004149c4(void * this, int param_1) 65 4 +00414a05 Catch@00414a05 undefined Catch@00414a05(void) 28 2 +00414a22 FUN_00414a22 undefined FUN_00414a22(void * param_1) 315 10 SysFreeString +00414b9c FUN_00414b9c undefined FUN_00414b9c(int param_1) 407 9 +00414d33 FUN_00414d33 undefined FUN_00414d33(void * this, undefined4 param_1, uint param_2, void * param_3) 252 11 +00414e2f FUN_00414e2f undefined FUN_00414e2f(void * this, undefined4 param_1) 194 11 +00414ef1 FUN_00414ef1 undefined FUN_00414ef1(void * param_1) 30 3 +00414f0f FUN_00414f0f int * FUN_00414f0f(void * this, int * param_1) 285 6 +0041502c thunk_FUN_0041457f undefined thunk_FUN_0041457f(int param_1) 5 0 +0041505d FUN_0041505d void * FUN_0041505d(void * this, void * param_1) 47 2 +0041508c FUN_0041508c undefined4 * FUN_0041508c(void * this, undefined4 * param_1) 31 1 +004150ab FUN_004150ab void * FUN_004150ab(void * this, undefined4 * param_1) 21 1 +004150c0 FUN_004150c0 void * FUN_004150c0(void * this, void * param_1) 47 2 +004150ef FUN_004150ef undefined FUN_004150ef(void * param_1) 22 1 +00415140 Catch@00415140 undefined1 * Catch@00415140(void) 10 0 +0041514a FUN_0041514a undefined FUN_0041514a(void * this, int param_1, undefined4 * param_2) 50 2 +0041517c FUN_0041517c undefined FUN_0041517c(int * param_1) 55 2 +004151b3 FUN_004151b3 undefined FUN_004151b3(undefined4 param_1, int param_2) 30 3 +004151d1 FUN_004151d1 undefined FUN_004151d1(undefined4 param_1, int param_2) 30 3 +004151ef FUN_004151ef undefined FUN_004151ef(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 312 5 +00415327 FUN_00415327 undefined FUN_00415327(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 312 5 +00415485 FUN_00415485 void * FUN_00415485(void * this, int param_1) 65 4 +004154c6 Catch@004154c6 undefined Catch@004154c6(void) 28 2 +004154e3 FUN_004154e3 undefined FUN_004154e3(void * param_1) 637 15 memcpy_s +00415760 FUN_00415760 void * FUN_00415760(void * this, void * param_1) 21 1 +00415775 FUN_00415775 undefined FUN_00415775(void * this, undefined4 * param_1, int * param_2) 605 6 +004159d2 FUN_004159d2 undefined FUN_004159d2(void * this, undefined4 * param_1) 59 2 +00415a0d FUN_00415a0d void * FUN_00415a0d(void * this, void * param_1) 21 1 +00415a22 FUN_00415a22 undefined FUN_00415a22(void * param_1) 58 4 +00415a5c FUN_00415a5c undefined FUN_00415a5c(void * this, undefined4 * param_1, int * param_2) 605 6 +00415cb9 FUN_00415cb9 undefined FUN_00415cb9(void * this, UINT param_1) 82 5 +00415d0b FUN_00415d0b undefined FUN_00415d0b(void * this, undefined4 * param_1) 18 1 +00415d22 FUN_00415d22 undefined FUN_00415d22(void * this, int * param_1) 68 3 +00415d66 FUN_00415d66 undefined FUN_00415d66(void * this, int * param_1) 68 3 +00415daa FUN_00415daa undefined FUN_00415daa(void * this, int * param_1, int * param_2, undefined4 * param_3) 210 5 +00415e7c FUN_00415e7c undefined FUN_00415e7c(void * this, undefined4 * param_1, int * param_2, char param_3) 191 4 +00415f61 FUN_00415f61 undefined FUN_00415f61(void * param_1) 30 3 +00415f7f FUN_00415f7f undefined FUN_00415f7f(void * this, UINT param_1) 113 8 +00415ff0 FUN_00415ff0 int FUN_00415ff0(int param_1) 44 3 +0041601c FUN_0041601c undefined FUN_0041601c(int * param_1) 44 4 +00416048 FUN_00416048 undefined FUN_00416048(void * param_1) 39 1 +0041606f FUN_0041606f undefined FUN_0041606f(void * param_1) 39 1 +00416096 FUN_00416096 undefined FUN_00416096(void * this, void * param_1) 49 1 +004160c7 FUN_004160c7 undefined4 * FUN_004160c7(void * this, undefined4 * param_1, undefined4 param_2) 112 4 +00416137 Catch@00416137 undefined Catch@00416137(void) 20 2 +0041614c FUN_0041614c int * FUN_0041614c(void * this, int * param_1, undefined4 * param_2) 35 2 +0041616f FUN_0041616f undefined4 * FUN_0041616f(void * this, undefined4 * param_1, undefined4 * param_2) 35 2 +00416192 FUN_00416192 int FUN_00416192(void * this, int param_1, undefined4 param_2, uint param_3, int param_4, undefined4 param_5) 1096 19 +004165da FUN_004165da undefined FUN_004165da(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +0041662d FUN_0041662d undefined FUN_0041662d(void * param_1) 22 1 +00416643 FUN_00416643 undefined FUN_00416643(void * this, undefined4 * param_1, int * param_2, int * param_3) 83 3 +00416696 FUN_00416696 undefined FUN_00416696(void * param_1) 22 1 +004166e9 FUN_004166e9 void * FUN_004166e9(void * this, void * param_1) 21 1 +004166fe FUN_004166fe undefined FUN_004166fe(void * this, int param_1) 97 1 +0041675f FUN_0041675f void * FUN_0041675f(void * this, int param_1) 65 4 +004167a0 Catch@004167a0 undefined Catch@004167a0(void) 28 2 +004167bd FUN_004167bd undefined FUN_004167bd(int param_1) 105 7 CoCreateInstance +00416826 Catch@00416826 undefined * Catch@00416826(void) 99 4 +0041688c FUN_0041688c undefined FUN_0041688c(void) 6 1 +00416892 Catch@00416892 undefined * Catch@00416892(void) 19 0 +004168a7 Catch@004168a7 undefined * Catch@004168a7(void) 119 6 +00416923 Catch@00416923 undefined * Catch@00416923(void) 70 3 +00416969 FUN_00416969 undefined4 FUN_00416969(undefined4 param_1, undefined4 param_2, undefined4 param_3) 285 12 CoCreateInstance +00416a86 Catch@00416a86 undefined * Catch@00416a86(void) 99 5 +00416aeb Catch@00416aeb undefined * Catch@00416aeb(void) 49 3 +00416b21 Catch@00416b21 undefined * Catch@00416b21(void) 121 6 +00416b9f Catch@00416b9f undefined4 Catch@00416b9f(void) 69 3 +00416be4 FUN_00416be4 undefined4 FUN_00416be4(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3) 573 16 CoCreateInstance +00416e21 Catch@00416e21 undefined * Catch@00416e21(void) 99 5 +00416e86 Catch@00416e86 undefined * Catch@00416e86(void) 49 3 +00416ebc Catch@00416ebc undefined * Catch@00416ebc(void) 121 6 +00416f3a Catch@00416f3a undefined4 Catch@00416f3a(void) 69 3 +00416f7f FUN_00416f7f undefined FUN_00416f7f(undefined4 * param_1, undefined4 param_2, uint param_3, void * param_4, undefined4 param_5) 352 13 +004170df Catch@004170df undefined * Catch@004170df(void) 99 5 +00417144 Catch@00417144 undefined * Catch@00417144(void) 49 3 +0041717a Catch@0041717a undefined * Catch@0041717a(void) 121 6 +004171f8 Catch@004171f8 undefined4 Catch@004171f8(void) 69 3 +0041723d FUN_0041723d undefined FUN_0041723d(int param_1) 273 12 +0041734e Catch@0041734e undefined * Catch@0041734e(void) 99 5 +004173b3 Catch@004173b3 undefined * Catch@004173b3(void) 49 3 +004173e9 Catch@004173e9 undefined * Catch@004173e9(void) 121 6 +00417467 Catch@00417467 undefined4 Catch@00417467(void) 69 3 +004174ac FUN_004174ac undefined1 FUN_004174ac(void * this, undefined4 param_1, undefined4 param_2, int param_3) 831 12 CoCreateInstance +004177eb FUN_004177eb undefined FUN_004177eb(void * param_1) 634 21 memcpy_s +00417a65 Catch@00417a65 undefined * Catch@00417a65(void) 99 5 +00417aca Catch@00417aca undefined * Catch@00417aca(void) 49 3 +00417b00 Catch@00417b00 undefined * Catch@00417b00(void) 121 6 +00417b7e Catch@00417b7e undefined4 Catch@00417b7e(void) 69 3 +00417bc3 FUN_00417bc3 undefined4 FUN_00417bc3(undefined4 * param_1) 159 4 +00417c62 FUN_00417c62 bool FUN_00417c62(void * param_1) 165 10 +00417d07 Catch@00417d07 undefined * Catch@00417d07(void) 99 5 +00417d6c Catch@00417d6c undefined * Catch@00417d6c(void) 49 3 +00417da2 Catch@00417da2 undefined * Catch@00417da2(void) 121 6 +00417e20 Catch@00417e20 undefined4 Catch@00417e20(void) 69 3 +00417e65 FUN_00417e65 undefined4 FUN_00417e65(int param_1) 97 6 +00417ec6 FUN_00417ec6 undefined FUN_00417ec6(void * param_1) 58 4 +00417f00 FUN_00417f00 int FUN_00417f00(void * this, uint * param_1) 70 3 +00417f46 FUN_00417f46 undefined FUN_00417f46(void * param_1) 58 4 +00417f80 FUN_00417f80 int FUN_00417f80(void * this, int * param_1) 70 3 +00417fc6 FUN_00417fc6 void * FUN_00417fc6(void * this, void * param_1) 47 2 +00417ff5 FUN_00417ff5 undefined FUN_00417ff5(void * this, int param_1) 40 0 +00418043 FUN_00418043 undefined FUN_00418043(void * param_1) 30 3 +00418061 FUN_00418061 undefined FUN_00418061(void * param_1) 30 3 +0041807f FUN_0041807f undefined FUN_0041807f(void * this, int param_1, uint param_2, undefined4 * param_3, int param_4) 1365 28 memcpy_s +004185d4 Catch@004185d4 undefined * Catch@004185d4(void) 99 4 +0041863a FUN_0041863a undefined FUN_0041863a(void) 8 1 +00418642 Catch@00418642 undefined * Catch@00418642(void) 19 0 +00418657 Catch@00418657 undefined * Catch@00418657(void) 119 6 +004186d3 Catch@004186d3 undefined * Catch@004186d3(void) 70 3 +004187e2 Catch@004187e2 undefined1 * Catch@004187e2(void) 103 5 +0041885b Catch@0041885b undefined * Catch@0041885b(void) 52 3 +00418891 Catch@00418891 undefined * Catch@00418891(void) 134 6 +0041891c Catch@0041891c undefined1 * Catch@0041891c(void) 76 3 +004189b2 FUN_004189b2 undefined4 FUN_004189b2(void * this, int param_1) 262 11 +00418c46 FUN_00418c46 int FUN_00418c46(int param_1) 44 3 +00418c72 FUN_00418c72 void * FUN_00418c72(void * this, void * param_1) 21 1 +00418c87 FUN_00418c87 undefined FUN_00418c87(void * this, int param_1) 9 1 +00418c90 FUN_00418c90 int FUN_00418c90(int param_1) 44 3 +00418cbc FUN_00418cbc undefined4 * FUN_00418cbc(void * this, undefined4 * param_1) 285 7 +00418dd9 FUN_00418dd9 undefined4 * FUN_00418dd9(void * param_1, undefined4 * param_2) 46 3 +00418e07 FUN_00418e07 int FUN_00418e07(void * this, undefined4 param_1) 191 9 +00418ec6 FUN_00418ec6 undefined4 * FUN_00418ec6(void * this, undefined4 param_1, undefined4 param_2) 196 9 +00418f8a FUN_00418f8a undefined FUN_00418f8a(int param_1) 177 10 SysFreeString +0041903b FUN_0041903b void * FUN_0041903b(void * this, byte param_1) 31 2 +0041905a FUN_0041905a undefined FUN_0041905a(void * this, int param_1) 345 14 +004191b3 FUN_004191b3 undefined4 * FUN_004191b3(void * this, undefined4 * param_1) 240 5 +00419521 Catch@00419521 undefined * Catch@00419521(void) 105 5 +004195f4 Catch@004195f4 undefined * Catch@004195f4(void) 64 3 +00419639 Catch@00419639 undefined * Catch@00419639(void) 136 6 +004196c6 Catch@004196c6 undefined * Catch@004196c6(void) 81 3 +00419892 FUN_00419892 undefined4 * FUN_00419892(void * param_1, undefined4 * param_2) 47 3 +004198e2 FUN_004198e2 undefined FUN_004198e2(undefined4 param_1, void * param_2, undefined4 * param_3) 19 1 +004198f5 FUN_004198f5 undefined FUN_004198f5(int param_1) 668 28 +00419b91 Catch@00419b91 undefined * Catch@00419b91(void) 99 5 +00419bf6 Catch@00419bf6 undefined * Catch@00419bf6(void) 49 3 +00419c2c Catch@00419c2c undefined * Catch@00419c2c(void) 121 6 +00419caa Catch@00419caa undefined4 Catch@00419caa(void) 69 3 +00419cef FUN_00419cef undefined FUN_00419cef(void * param_1, undefined4 * param_2) 20 1 +00419d37 FUN_00419d37 undefined4 * FUN_00419d37(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +00419d85 Catch@00419d85 undefined Catch@00419d85(void) 18 2 +00419d98 FUN_00419d98 undefined FUN_00419d98(undefined4 param_1, void * param_2, undefined4 * param_3) 18 1 +00419dcb FUN_00419dcb undefined FUN_00419dcb(void * this, int param_1, undefined4 * param_2) 50 2 +00419dfd FUN_00419dfd undefined4 * FUN_00419dfd(void * this, undefined4 param_1, undefined4 param_2, undefined4 * param_3) 78 4 +00419e4b Catch@00419e4b undefined Catch@00419e4b(void) 18 2 +00419e81 FUN_00419e81 undefined FUN_00419e81(void * this, undefined4 * param_1, int param_2, undefined4 * param_3) 29 1 +00419e9e FUN_00419e9e undefined FUN_00419e9e(void * this, int param_1, undefined4 * param_2) 50 2 +00419ed0 FUN_00419ed0 undefined FUN_00419ed0(undefined4 param_1, int param_2) 33 3 +00419ef1 FUN_00419ef1 undefined FUN_00419ef1(void * this, undefined4 * param_1, int param_2, undefined4 * param_3) 29 1 +00419f0e FUN_00419f0e undefined FUN_00419f0e(void * this, undefined4 * param_1) 18 1 +00419f20 FUN_00419f20 undefined FUN_00419f20(int * param_1) 55 2 +00419f57 FUN_00419f57 undefined FUN_00419f57(void * this, int * param_1, int * param_2) 70 2 +00419f9d FUN_00419f9d undefined FUN_00419f9d(void * this, LPCRITICAL_SECTION param_1, undefined4 param_2) 675 19 +0041a240 FUN_0041a240 undefined4 FUN_0041a240(void * this, LPCRITICAL_SECTION param_1) 298 11 +0041a6d4 Catch@0041a6d4 undefined * Catch@0041a6d4(void) 102 5 +0041a73c Catch@0041a73c undefined * Catch@0041a73c(void) 52 3 +0041a775 Catch@0041a775 undefined * Catch@0041a775(void) 124 6 +0041a7f6 Catch@0041a7f6 undefined1 * Catch@0041a7f6(void) 72 3 +0041a843 FUN_0041a843 undefined FUN_0041a843(void * this, undefined4 * param_1, int * param_2, int * param_3) 67 2 +0041a886 FUN_0041a886 undefined FUN_0041a886(void * this, LPCRITICAL_SECTION param_1, undefined4 param_2, uint param_3, void * param_4, undefined4 param_5) 382 14 +0041aa04 Catch@0041aa04 undefined * Catch@0041aa04(void) 99 5 +0041aa69 Catch@0041aa69 undefined * Catch@0041aa69(void) 49 3 +0041aa9f Catch@0041aa9f undefined * Catch@0041aa9f(void) 121 6 +0041ab1d Catch@0041ab1d undefined4 Catch@0041ab1d(void) 69 3 +0041ab62 FUN_0041ab62 undefined FUN_0041ab62(void * param_1) 281 11 +0041ac7b FUN_0041ac7b undefined4 FUN_0041ac7b(void * this, int param_1) 183 4 +0041ad32 FUN_0041ad32 undefined4 FUN_0041ad32(void * this, LPCRITICAL_SECTION param_1) 180 4 +0041b54b Catch@0041b54b undefined * Catch@0041b54b(void) 102 5 +0041b5b3 Catch@0041b5b3 undefined * Catch@0041b5b3(void) 52 3 +0041b5ec Catch@0041b5ec undefined * Catch@0041b5ec(void) 124 6 +0041b66d Catch@0041b66d undefined1 * Catch@0041b66d(void) 72 3 +0041b7e2 Catch@0041b7e2 undefined * Catch@0041b7e2(void) 99 5 +0041b847 Catch@0041b847 undefined * Catch@0041b847(void) 49 3 +0041b87d Catch@0041b87d undefined * Catch@0041b87d(void) 121 6 +0041b8fb Catch@0041b8fb undefined1 * Catch@0041b8fb(void) 69 3 +0041b940 FUN_0041b940 undefined4 FUN_0041b940(void * this, undefined4 param_1) 240 7 +0041ba30 FUN_0041ba30 undefined4 FUN_0041ba30(void * this, undefined4 param_1) 99 5 +0041bcf7 Catch@0041bcf7 undefined1 * Catch@0041bcf7(void) 103 5 +0041bdb6 Catch@0041bdb6 undefined * Catch@0041bdb6(void) 52 3 +0041bdef Catch@0041bdef undefined * Catch@0041bdef(void) 125 6 +0041be71 Catch@0041be71 undefined1 * Catch@0041be71(void) 70 3 +0041beb7 FUN_0041beb7 undefined4 FUN_0041beb7(void * this, undefined4 * param_1) 590 19 +0041c105 FUN_0041c105 undefined FUN_0041c105(void * this, LPCRITICAL_SECTION param_1) 242 7 +0041c1f7 FUN_0041c1f7 undefined FUN_0041c1f7(int * param_1) 44 4 +0041c223 FUN_0041c223 undefined FUN_0041c223(void * this, int param_1, void * param_2, int param_3, int param_4, uint param_5) 27 1 +0041c23e FUN_0041c23e undefined4 * FUN_0041c23e(undefined4 * param_1) 576 18 memset +0041c47e FUN_0041c47e undefined FUN_0041c47e(undefined4 * param_1) 429 10 +0041c62b FUN_0041c62b undefined FUN_0041c62b(void * this, undefined4 param_1, int param_2, int param_3, int param_4) 1694 29 memset +0041ccc9 Catch@0041ccc9 undefined * Catch@0041ccc9(void) 121 4 +0041cd48 FUN_0041cd48 undefined FUN_0041cd48(void) 8 1 +0041cd50 Catch@0041cd50 undefined * Catch@0041cd50(void) 25 0 +0041cd6b Catch@0041cd6b undefined * Catch@0041cd6b(void) 141 6 +0041cdfd Catch@0041cdfd undefined * Catch@0041cdfd(void) 79 3 +0041ce4c FUN_0041ce4c undefined4 FUN_0041ce4c(void * this, int param_1, undefined4 param_2) 156 5 +0041cee8 FUN_0041cee8 undefined4 FUN_0041cee8(void * this, int param_1) 144 6 +0041cf78 FUN_0041cf78 undefined FUN_0041cf78(void * this, PRTL_CRITICAL_SECTION_DEBUG param_1, int param_2) 1318 29 +0041d49e FUN_0041d49e undefined FUN_0041d49e(void * this, undefined4 param_1, uint param_2, void * param_3) 818 13 memcpy_s +0041d7d0 FUN_0041d7d0 bool FUN_0041d7d0(void * this, LPCRITICAL_SECTION param_1) 152 6 +0041d868 FUN_0041d868 undefined FUN_0041d868(void * this, int param_1, int * param_2) 41 1 +0041d891 FUN_0041d891 undefined FUN_0041d891(void * this, int * param_1, undefined4 * param_2, int * param_3, int * param_4) 95 2 +0041d8f1 FUN_0041d8f1 undefined4 * FUN_0041d8f1(void * this, byte param_1) 31 2 +0041d910 FUN_0041d910 undefined FUN_0041d910(void * this, int param_1, int param_2, uint param_3, undefined4 * param_4, int param_5) 570 17 +0041db4a Catch@0041db4a undefined * Catch@0041db4a(void) 100 4 +0041dbb1 FUN_0041dbb1 undefined FUN_0041dbb1(void) 8 1 +0041dbb9 Catch@0041dbb9 undefined * Catch@0041dbb9(void) 19 0 +0041dbce Catch@0041dbce undefined * Catch@0041dbce(void) 120 6 +0041dc4b Catch@0041dc4b undefined * Catch@0041dc4b(void) 70 3 +0041dc91 FUN_0041dc91 undefined FUN_0041dc91(void * this, undefined4 * param_1) 36 0 +0041dcb5 FUN_0041dcb5 int FUN_0041dcb5(void * this, int param_1, int param_2, LPCRITICAL_SECTION param_3, uint param_4, undefined4 * param_5) 1035 21 +0041e0c0 FUN_0041e0c0 undefined FUN_0041e0c0(undefined4 param_1, undefined4 param_2, undefined4 param_3, int param_4, int param_5, LPCRITICAL_SECTION param_6, undefined4 param_7) 441 15 memcpy_s +0041e279 FUN_0041e279 undefined FUN_0041e279(undefined4 param_1, undefined4 param_2, undefined4 param_3, int param_4, int param_5, LPCRITICAL_SECTION param_6, undefined4 param_7) 441 15 memcpy_s +0041e432 FUN_0041e432 undefined FUN_0041e432(void * this, int * param_1, int param_2) 524 8 +0041e63e FUN_0041e63e undefined FUN_0041e63e(void * this, int param_1) 312 7 +0041e9cb Catch@0041e9cb undefined1 * Catch@0041e9cb(void) 103 5 +0041ea8a Catch@0041ea8a undefined * Catch@0041ea8a(void) 52 3 +0041eac3 Catch@0041eac3 undefined * Catch@0041eac3(void) 125 6 +0041eb45 Catch@0041eb45 undefined1 * Catch@0041eb45(void) 70 3 +0041eb8b FUN_0041eb8b undefined FUN_0041eb8b(void * this, LPCRITICAL_SECTION param_1, int param_2, int param_3, uint * param_4) 469 13 +0041ed60 Catch@0041ed60 undefined * Catch@0041ed60(void) 99 4 +0041edc6 FUN_0041edc6 undefined FUN_0041edc6(void) 8 1 +0041edce Catch@0041edce undefined * Catch@0041edce(void) 19 0 +0041ede3 Catch@0041ede3 undefined * Catch@0041ede3(void) 119 6 +0041ee5f Catch@0041ee5f undefined * Catch@0041ee5f(void) 70 3 +0041eea5 FUN_0041eea5 undefined FUN_0041eea5(int * param_1) 1702 25 memcpy_s +0041f54b Catch@0041f54b undefined * Catch@0041f54b(void) 108 4 +0041f5ba FUN_0041f5ba undefined FUN_0041f5ba(void) 6 1 +0041f5c0 Catch@0041f5c0 undefined * Catch@0041f5c0(void) 22 0 +0041f5d8 Catch@0041f5d8 undefined * Catch@0041f5d8(void) 122 6 +0041f657 Catch@0041f657 undefined * Catch@0041f657(void) 70 3 +0041f69d FUN_0041f69d undefined4 FUN_0041f69d(int * param_1) 32 3 +0041f6bd FUN_0041f6bd undefined1 FUN_0041f6bd(void * this, int param_1) 456 10 +0041f885 FUN_0041f885 undefined FUN_0041f885(void * param_1) 1592 24 CoCreateInstance +0041febd Catch@0041febd undefined * Catch@0041febd(void) 121 4 +0041ff3c FUN_0041ff3c undefined FUN_0041ff3c(void) 6 1 +0041ff42 Catch@0041ff42 undefined * Catch@0041ff42(void) 25 0 +0041ff5d Catch@0041ff5d undefined * Catch@0041ff5d(void) 141 6 +0041ffef Catch@0041ffef undefined * Catch@0041ffef(void) 79 3 +0042003e FUN_0042003e undefined4 FUN_0042003e(void * this, int param_1, undefined4 param_2, int * param_3, void * param_4, undefined4 param_5) 698 24 +004202f8 FUN_004202f8 undefined FUN_004202f8(void * this, uint param_1, int * param_2) 478 20 memcpy +004204d6 FUN_004204d6 undefined FUN_004204d6(void * this, undefined4 param_1, undefined4 param_2, int param_3, int param_4) 652 16 +00420762 FUN_00420762 undefined FUN_00420762(void * this, int param_1, undefined4 param_2, int param_3) 654 16 +004209f0 FUN_004209f0 undefined FUN_004209f0(void * this, int param_1, int param_2, undefined4 param_3, uint param_4, int * param_5, undefined4 * param_6) 1265 26 +00420ee1 Catch@00420ee1 undefined * Catch@00420ee1(void) 100 4 +00420f48 FUN_00420f48 undefined FUN_00420f48(void) 8 1 +00420f50 Catch@00420f50 undefined * Catch@00420f50(void) 19 0 +00420f65 Catch@00420f65 undefined * Catch@00420f65(void) 120 6 +00420fe2 Catch@00420fe2 undefined * Catch@00420fe2(void) 70 3 +0042102c FUN_0042102c undefined4 FUN_0042102c(undefined4 param_1, int * param_2) 44 1 +00421058 FUN_00421058 undefined FUN_00421058(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 27 0 +00421073 FUN_00421073 undefined4 FUN_00421073(int param_1, int param_2, int param_3, undefined4 param_4, uint * param_5) 92 5 +004210cf FUN_004210cf undefined4 FUN_004210cf(undefined4 param_1, void * param_2) 80 5 +0042111f FUN_0042111f undefined4 FUN_0042111f(void) 64 5 +0042115f FUN_0042115f undefined FUN_0042115f(int param_1) 303 13 +0042128e Catch@0042128e undefined * Catch@0042128e(void) 96 5 +004212f0 Catch@004212f0 undefined * Catch@004212f0(void) 49 3 +00421326 Catch@00421326 undefined * Catch@00421326(void) 118 6 +004213a1 Catch@004213a1 undefined4 Catch@004213a1(void) 66 3 +004213e3 FUN_004213e3 undefined FUN_004213e3(int param_1, int param_2, undefined4 param_3, void * param_4, int * param_5) 236 11 +004214cf Catch@004214cf undefined * Catch@004214cf(void) 97 4 +00421533 FUN_00421533 undefined FUN_00421533(void) 8 1 +0042153b Catch@0042153b undefined * Catch@0042153b(void) 19 0 +00421550 Catch@00421550 undefined * Catch@00421550(void) 117 6 +004215ca Catch@004215ca undefined * Catch@004215ca(void) 67 3 +0042160d FUN_0042160d undefined FUN_0042160d(int param_1, uint param_2) 314 12 +00421747 Catch@00421747 undefined * Catch@00421747(void) 97 4 +004217ab FUN_004217ab undefined FUN_004217ab(void) 8 1 +004217b3 Catch@004217b3 undefined * Catch@004217b3(void) 19 0 +004217c8 Catch@004217c8 undefined * Catch@004217c8(void) 117 6 +00421842 Catch@00421842 undefined * Catch@00421842(void) 67 3 +00421885 FUN_00421885 undefined FUN_00421885(undefined4 param_1, undefined4 param_2, int param_3, int param_4, int param_5) 340 13 +004219d9 Catch@004219d9 undefined * Catch@004219d9(void) 100 4 +00421a40 FUN_00421a40 undefined FUN_00421a40(void) 8 1 +00421a48 Catch@00421a48 undefined * Catch@00421a48(void) 19 0 +00421a5d Catch@00421a5d undefined * Catch@00421a5d(void) 120 6 +00421ada Catch@00421ada undefined * Catch@00421ada(void) 70 3 +00421b20 FUN_00421b20 undefined FUN_00421b20(int param_1, int param_2, int param_3, LPCRITICAL_SECTION param_4, uint param_5, undefined4 * param_6) 459 14 +00421ceb Catch@00421ceb undefined * Catch@00421ceb(void) 99 4 +00421d51 FUN_00421d51 undefined FUN_00421d51(void) 8 1 +00421d59 Catch@00421d59 undefined * Catch@00421d59(void) 19 0 +00421d6e Catch@00421d6e undefined * Catch@00421d6e(void) 119 6 +00421dea Catch@00421dea undefined * Catch@00421dea(void) 70 3 +00421e30 FUN_00421e30 undefined FUN_00421e30(undefined4 param_1, int param_2, undefined4 param_3, int param_4, uint param_5) 299 13 +00421f5b Catch@00421f5b undefined * Catch@00421f5b(void) 99 4 +00421fc1 FUN_00421fc1 undefined FUN_00421fc1(void) 8 1 +00421fc9 Catch@00421fc9 undefined * Catch@00421fc9(void) 19 0 +00421fde Catch@00421fde undefined * Catch@00421fde(void) 119 6 +0042205a Catch@0042205a undefined * Catch@0042205a(void) 70 3 +004220a0 FUN_004220a0 undefined FUN_004220a0(undefined4 param_1, int param_2, undefined4 param_3, int param_4, uint param_5) 299 13 +004221cb Catch@004221cb undefined * Catch@004221cb(void) 99 4 +00422231 FUN_00422231 undefined FUN_00422231(void) 8 1 +00422239 Catch@00422239 undefined * Catch@00422239(void) 19 0 +0042224e Catch@0042224e undefined * Catch@0042224e(void) 119 6 +004222ca Catch@004222ca undefined * Catch@004222ca(void) 70 3 +00422310 FUN_00422310 undefined FUN_00422310(undefined4 param_1, int param_2, undefined4 param_3) 264 12 +00422418 Catch@00422418 undefined * Catch@00422418(void) 100 4 +0042247f FUN_0042247f undefined FUN_0042247f(void) 8 1 +00422487 Catch@00422487 undefined * Catch@00422487(void) 19 0 +0042249c Catch@0042249c undefined * Catch@0042249c(void) 120 6 +00422519 Catch@00422519 undefined * Catch@00422519(void) 70 3 +0042255f FUN_0042255f undefined FUN_0042255f(undefined4 param_1, int param_2, int param_3, undefined4 param_4, uint param_5, int * param_6, undefined4 * param_7) 217 11 +00422638 Catch@00422638 undefined * Catch@00422638(void) 100 4 +0042269f FUN_0042269f undefined FUN_0042269f(void) 8 1 +004226a7 Catch@004226a7 undefined * Catch@004226a7(void) 19 0 +004226bc Catch@004226bc undefined * Catch@004226bc(void) 120 6 +00422739 Catch@00422739 undefined * Catch@00422739(void) 70 3 +0042277f FUN_0042277f undefined FUN_0042277f(undefined4 param_1, int param_2) 257 12 +00422880 Catch@00422880 undefined * Catch@00422880(void) 100 4 +004228e7 FUN_004228e7 undefined FUN_004228e7(void) 8 1 +004228ef Catch@004228ef undefined * Catch@004228ef(void) 19 0 +00422904 Catch@00422904 undefined * Catch@00422904(void) 120 6 +00422981 Catch@00422981 undefined * Catch@00422981(void) 70 3 +004229c7 FUN_004229c7 undefined FUN_004229c7(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 257 12 +00422ac8 Catch@00422ac8 undefined * Catch@00422ac8(void) 100 4 +00422b2f FUN_00422b2f undefined FUN_00422b2f(void) 8 1 +00422b37 Catch@00422b37 undefined * Catch@00422b37(void) 19 0 +00422b4c Catch@00422b4c undefined * Catch@00422b4c(void) 120 6 +00422bc9 Catch@00422bc9 undefined * Catch@00422bc9(void) 70 3 +00422c0f FUN_00422c0f undefined FUN_00422c0f(wchar_t * param_1, wchar_t * param_2) 10 0 +00422c19 AtlMultiply long AtlMultiply(ulong * param_1, ulong param_2, ulong param_3) 34 0 +00422c3b AtlCoTaskMemCAlloc void * AtlCoTaskMemCAlloc(ulong param_1, ulong param_2) 45 2 +00422c68 FUN_00422c68 LPVOID FUN_00422c68(LPVOID param_1, ulong param_2, ulong param_3) 48 2 +00422c98 FUN_00422c98 undefined FUN_00422c98(size_t param_1) 10 0 +00422cac FUN_00422cac bool FUN_00422cac(void * param_1, int param_2, LPCWSTR param_3) 45 2 memcpy_s +00422cd9 FUN_00422cd9 undefined4 FUN_00422cd9(undefined4 param_1) 8 0 +00422ce1 FUN_00422ce1 undefined4 FUN_00422ce1(undefined4 param_1) 8 0 +00422ce9 FUN_00422ce9 undefined4 FUN_00422ce9(undefined4 param_1) 8 0 +00422cf1 FUN_00422cf1 undefined FUN_00422cf1(DWORD param_1, DWORD param_2) 21 1 +00422d06 FUN_00422d06 undefined FUN_00422d06(wchar_t * param_1, rsize_t param_2, wchar_t * param_3) 29 2 +00422d23 FUN_00422d23 undefined FUN_00422d23(wchar_t * param_1, rsize_t param_2, wchar_t * param_3, rsize_t param_4) 32 2 +00422d43 FUN_00422d43 undefined FUN_00422d43(wchar_t * param_1, rsize_t param_2, wchar_t * param_3, rsize_t param_4) 32 2 +00422d63 FUN_00422d63 undefined FUN_00422d63(wchar_t * param_1, rsize_t param_2, wchar_t * param_3) 29 2 +00422d98 FUN_00422d98 undefined FUN_00422d98(LPCRITICAL_SECTION param_1) 18 1 +00422daa FUN_00422daa undefined FUN_00422daa(CComCriticalSection * param_1) 18 1 +00422dcd FUN_00422dcd DWORD FUN_00422dcd(void) 21 1 +00422de2 FUN_00422de2 uint FUN_00422de2(uint param_1) 22 0 +00422e02 FID_conflict:RegCreateKeyExW LSTATUS FID_conflict:RegCreateKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD Reserved, LPWSTR lpClass, DWORD dwOptions, REGSAM samDesired, LPSECURITY_ATTRIBUTES lpSecurityAttributes, PHKEY phkResult, LPDWORD lpdwDisposition) 99 2 +00422e65 FID_conflict:RegDeleteKeyA LSTATUS FID_conflict:RegDeleteKeyA(HKEY hKey, LPCSTR lpSubKey) 82 2 +00422eb7 FUN_00422eb7 undefined FUN_00422eb7(int param_1) 24 1 +00422ecf FUN_00422ecf int FUN_00422ecf(undefined4 * param_1, DWORD param_2, DWORD param_3) 84 1 +00422f23 FUN_00422f23 undefined FUN_00422f23(LONG * param_1) 10 0 +00422f37 FUN_00422f37 undefined FUN_00422f37(int param_1) 11 1 +00422f42 FUN_00422f42 undefined FUN_00422f42(short * param_1, int param_2, short * param_3) 78 0 +00422f90 FUN_00422f90 int FUN_00422f90(int param_1) 23 1 memset +00422fa8 FUN_00422fa8 undefined FUN_00422fa8(void * this, undefined4 param_1) 22 0 +00422fce FUN_00422fce undefined FUN_00422fce(void * this, undefined4 param_1) 20 0 +00422fe5 DeleteSubKey undefined DeleteSubKey(void * this, LPCWSTR param_1) 112 4 +00423055 FUN_00423055 undefined FUN_00423055(void * this, LPCWSTR param_1) 18 1 +00423067 Create undefined Create(void * this, HKEY param_1, LPCWSTR param_2, LPWSTR param_3, DWORD param_4, uint param_5, LPSECURITY_ATTRIBUTES param_6, undefined4 * param_7) 104 3 +004230cf SetDWORDValue undefined SetDWORDValue(void * this, LPCWSTR param_1) 28 1 +004230eb SetStringValue long SetStringValue(CRegKey * this, wchar_t * param_1, wchar_t * param_2, ulong param_3) 55 2 +00423122 FUN_00423122 LSTATUS FUN_00423122(void * this, LPCWSTR param_1, LPCWSTR param_2) 67 2 +00423165 FUN_00423165 undefined4 FUN_00423165(LPCWSTR param_1, LPCWSTR param_2) 23 1 +00423184 FUN_00423184 undefined4 FUN_00423184(undefined4 * param_1) 32 1 +004231a4 FUN_004231a4 undefined4 * FUN_004231a4(void * this, ulong param_1) 54 1 +004231da FUN_004231da undefined FUN_004231da(int param_1) 10 1 +004231e4 FUN_004231e4 undefined4 FUN_004231e4(void * this, void * param_1, int param_2) 142 2 +00423272 FUN_00423272 undefined FUN_00423272(void * this, void * param_1) 17 1 +004232a6 FUN_004232a6 undefined1 * FUN_004232a6(LPCRITICAL_SECTION param_1) 42 3 +004232d0 FUN_004232d0 undefined4 FUN_004232d0(undefined4 param_1, undefined2 * param_2) 168 3 +00423378 FUN_00423378 int FUN_00423378(ushort param_1) 54 0 +004233ae FUN_004233ae undefined4 FUN_004233ae(LPCWSTR param_1) 46 1 +004233dc FUN_004233dc LPCWSTR FUN_004233dc(LPCWSTR param_1, WCHAR param_2) 45 1 +00423409 FUN_00423409 undefined FUN_00423409(void * this, undefined4 param_1) 18 0 +0042341b FUN_0042341b undefined4 FUN_0042341b(ushort param_1) 38 0 +00423441 FUN_00423441 undefined FUN_00423441(undefined4 * param_1) 34 2 +00423463 FUN_00423463 undefined4 FUN_00423463(void * this, undefined2 * param_1) 278 4 +00423579 FUN_00423579 undefined4 FUN_00423579(LPCWSTR param_1) 47 1 +004235a8 FUN_004235a8 bool FUN_004235a8(HKEY param_1) 53 1 +004235dd FUN_004235dd undefined FUN_004235dd(void * this, short * param_1) 101 4 +00423642 FUN_00423642 void * FUN_00423642(void * param_1) 46 3 memset +004236aa FUN_004236aa undefined4 FUN_004236aa(undefined1 * param_1) 31 0 +00423708 FUN_00423708 undefined4 FUN_00423708(void * this, int * param_1, undefined4 param_2, undefined4 * param_3) 94 0 +00423766 FUN_00423766 int FUN_00423766(int param_1, DWORD param_2, DWORD param_3) 63 1 +004237a5 FUN_004237a5 int FUN_004237a5(int param_1) 64 1 +004237e5 FUN_004237e5 undefined FUN_004237e5(int param_1) 67 2 +00423828 FUN_00423828 DWORD FUN_00423828(undefined4 * param_1, PSID param_2) 117 6 +004238b3 FUN_004238b3 undefined FUN_004238b3(undefined4 * param_1) 43 2 +004238de FUN_004238de undefined FUN_004238de(undefined4 * param_1) 88 5 +00423936 Catch@00423936 undefined * Catch@00423936(void) 10 0 +00423945 FUN_00423945 DWORD FUN_00423945(void) 55 4 +0042397c FUN_0042397c DWORD FUN_0042397c(void * this, PSID param_1, BOOL param_2) 123 4 +004239f7 FUN_004239f7 DWORD FUN_004239f7(void * this, PSID param_1, BOOL param_2) 123 4 +00423a72 FUN_00423a72 DWORD FUN_00423a72(HANDLE param_1, undefined4 * param_2, undefined4 * param_3) 329 7 +00423bd3 FUN_00423bd3 undefined FUN_00423bd3(void * this, undefined4 param_1) 13 0 +00423c26 FUN_00423c26 LPWSTR FUN_00423c26(LPCWSTR param_1, LPCWSTR param_2) 69 1 +00423c6b FUN_00423c6b undefined FUN_00423c6b(void * this, int * param_1, HINSTANCE param_2, UINT param_3, undefined4 * param_4) 111 2 +00423cda FUN_00423cda bool FUN_00423cda(int param_1) 62 3 +00423d18 FUN_00423d18 undefined FUN_00423d18(int param_1, wchar_t * param_2) 151 6 +00423daf FUN_00423daf undefined FUN_00423daf(void * this, undefined4 param_1) 35 1 +00423dd8 FUN_00423dd8 undefined FUN_00423dd8(int * param_1) 26 1 +00423e03 FUN_00423e03 undefined FUN_00423e03(undefined4 * param_1) 45 1 +00423e30 FUN_00423e30 int FUN_00423e30(void * this, int param_1) 42 1 +00423e5a FUN_00423e5a int FUN_00423e5a(void * this, int param_1) 43 1 +00423e8b FUN_00423e8b undefined FUN_00423e8b(void * this, undefined4 param_1) 12 0 +00423eb8 FUN_00423eb8 undefined FUN_00423eb8(int * param_1) 13 0 +00423ecb FUN_00423ecb undefined FUN_00423ecb(int * param_1) 13 0 +00423ee1 FUN_00423ee1 undefined FUN_00423ee1(int param_1) 33 3 +00423f19 FUN_00423f19 int FUN_00423f19(void * this, undefined4 * param_1) 55 1 +00423f50 FUN_00423f50 undefined FUN_00423f50(undefined4 * param_1) 16 1 +00423f60 FUN_00423f60 undefined FUN_00423f60(undefined4 * param_1) 10 1 +00423f6a FUN_00423f6a undefined FUN_00423f6a(undefined4 * param_1) 10 1 +00423f74 FUN_00423f74 undefined FUN_00423f74(undefined4 * param_1) 10 1 +00423f8a FUN_00423f8a undefined FUN_00423f8a(int param_1) 21 1 +00423fa2 FUN_00423fa2 undefined FUN_00423fa2(void * this, size_t param_1) 37 2 +00423fc7 FUN_00423fc7 undefined FUN_00423fc7(void * this, size_t param_1) 37 2 +00423fec FUN_00423fec undefined FUN_00423fec(void * this, size_t param_1) 37 2 +00424011 FUN_00424011 undefined FUN_00424011(void * this, undefined4 * param_1) 16 0 +00424031 AtlMultiplyThrow uint AtlMultiplyThrow(uint param_1, uint param_2) 37 2 +00424056 FUN_00424056 undefined4 FUN_00424056(undefined4 param_1, undefined4 param_2) 8 0 +0042405e FUN_0042405e undefined FUN_0042405e(void) 1 0 +00424069 FUN_00424069 int FUN_00424069(int param_1) 65 2 +004240aa FUN_004240aa undefined FUN_004240aa(int param_1) 57 2 +004240e3 FUN_004240e3 undefined FUN_004240e3(int param_1) 5 0 +004240e8 FUN_004240e8 undefined FUN_004240e8(int param_1) 30 3 +00424106 FUN_00424106 undefined FUN_00424106(void * this, LPCWSTR param_1) 229 7 +004241eb FUN_004241eb undefined4 FUN_004241eb(int * param_1) 87 3 +00424242 FUN_00424242 undefined4 FUN_00424242(void * this, LPCWSTR param_1) 71 5 +00424289 FUN_00424289 undefined4 FUN_00424289(int param_1) 43 3 +004242b7 FUN_004242b7 undefined FUN_004242b7(HMODULE param_1, LPCWSTR param_2, undefined4 * param_3, ITypeLib * * param_4) 482 12 SysAllocString +00424499 FUN_00424499 undefined FUN_00424499(int * param_1) 37 2 +004244be FUN_004244be undefined FUN_004244be(int * param_1) 37 2 +004244e3 FUN_004244e3 undefined FUN_004244e3(void * this, DWORD param_1, DWORD param_2) 66 2 +00424525 FUN_00424525 undefined FUN_00424525(int param_1) 56 2 +0042455d FUN_0042455d DWORD FUN_0042455d(undefined4 * param_1, undefined4 * param_2) 91 5 +004245b8 FUN_004245b8 DWORD FUN_004245b8(undefined4 * param_1, undefined4 * param_2, BOOL param_3) 94 5 +00424616 FUN_00424616 undefined FUN_00424616(undefined4 * param_1) 49 3 +00424647 InlineIsEqualUnknown int InlineIsEqualUnknown(_GUID * param_1) 46 0 +00424675 FUN_00424675 undefined4 FUN_00424675(int param_1, int param_2, _GUID * param_3, undefined4 * param_4) 62 1 +004246b3 FUN_004246b3 undefined4 FUN_004246b3(undefined4 param_1, int param_2) 31 0 +004246d2 FUN_004246d2 undefined4 * FUN_004246d2(void * this, byte param_1) 31 2 +004246f1 FUN_004246f1 undefined FUN_004246f1(int param_1) 43 3 +00424735 FUN_00424735 int FUN_00424735(int param_1) 46 3 +00424763 FUN_00424763 undefined FUN_00424763(int param_1) 43 3 +004247c5 FUN_004247c5 undefined FUN_004247c5(undefined4 * param_1) 5 0 +004247ca FUN_004247ca undefined4 FUN_004247ca(void * this, undefined4 * param_1) 61 2 +00424807 FUN_00424807 undefined FUN_00424807(undefined4 * param_1) 16 1 +00424817 FUN_00424817 undefined FUN_00424817(int * param_1) 13 1 +00424824 FUN_00424824 undefined FUN_00424824(int * param_1) 13 1 +00424831 FUN_00424831 undefined FUN_00424831(int * param_1) 13 1 +0042487a FUN_0042487a undefined FUN_0042487a(void * this, int param_1, undefined4 * param_2, undefined4 * param_3) 84 2 +004248ce FUN_004248ce int FUN_004248ce(void * this, uint param_1) 37 1 +004248f3 FUN_004248f3 int FUN_004248f3(void * this, uint param_1) 37 1 +00424918 FUN_00424918 int FUN_00424918(void * this, uint param_1) 37 1 +0042493d FUN_0042493d undefined4 * FUN_0042493d(undefined4 * param_1) 59 3 +00424987 FUN_00424987 undefined4 * FUN_00424987(undefined4 * param_1) 85 3 +004249dc AtlInternalQueryInterface long AtlInternalQueryInterface(void * param_1, _ATL_INTMAP_ENTRY * param_2, _GUID * param_3, void * * param_4) 161 2 +00424a7d FUN_00424a7d undefined FUN_00424a7d(void * param_1, _ATL_INTMAP_ENTRY * param_2, _GUID * param_3, void * * param_4) 9 1 AtlInternalQueryInterface +00424a8d FUN_00424a8d undefined FUN_00424a8d(int param_1) 20 1 +00424aa1 Release LONG Release(int * param_1) 45 1 +00424ace FUN_00424ace undefined FUN_00424ace(int param_1) 10 1 +00424ad8 FUN_00424ad8 undefined FUN_00424ad8(int param_1) 10 1 +00424ae2 FUN_00424ae2 undefined FUN_00424ae2(int param_1) 10 1 +00424aec FUN_00424aec undefined FUN_00424aec(int param_1) 10 1 +00424af6 FUN_00424af6 undefined FUN_00424af6(int param_1) 10 1 +00424b00 FUN_00424b00 undefined FUN_00424b00(int param_1) 10 1 +00424b0a FUN_00424b0a undefined FUN_00424b0a(int param_1) 10 1 +00424b14 FUN_00424b14 undefined FUN_00424b14(int param_1) 10 1 +00424b26 _InternalQueryInterface long _InternalQueryInterface(CAccessibleProxy * this, _GUID * param_1, void * * param_2) 24 1 AtlInternalQueryInterface +00424b3e FUN_00424b3e undefined FUN_00424b3e(undefined4 * param_1) 90 3 +00424b98 QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +00424bc1 FUN_00424bc1 undefined FUN_00424bc1(int param_1) 30 3 +00424bdf FUN_00424bdf undefined4 * FUN_00424bdf(void * this, byte param_1) 31 2 +00424bfe FUN_00424bfe undefined FUN_00424bfe(int param_1) 30 3 +00424c1c FUN_00424c1c undefined4 * FUN_00424c1c(void * this, undefined4 param_1) 80 3 +00424c7e FUN_00424c7e undefined FUN_00424c7e(void * this, undefined4 param_1, undefined4 param_2) 20 0 +00424c92 FUN_00424c92 undefined FUN_00424c92(int param_1) 19 0 +00424ca5 FUN_00424ca5 undefined FUN_00424ca5(int param_1) 19 0 +00424cb8 FUN_00424cb8 undefined FUN_00424cb8(int param_1, undefined4 param_2, undefined4 param_3) 24 0 +00424cd0 FUN_00424cd0 undefined4 FUN_00424cd0(int param_1) 4 0 +00424cd4 FUN_00424cd4 undefined FUN_00424cd4(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +00424cde FUN_00424cde undefined FUN_00424cde(int param_1) 10 1 +00424ce8 FUN_00424ce8 undefined FUN_00424ce8(int param_1) 10 1 +00424cf2 FUN_00424cf2 undefined FUN_00424cf2(int param_1) 10 1 +00424cfc FUN_00424cfc undefined FUN_00424cfc(int param_1) 10 1 +00424d06 FUN_00424d06 undefined FUN_00424d06(int param_1) 10 1 +00424d10 FUN_00424d10 undefined FUN_00424d10(int param_1) 10 1 +00424d1a FUN_00424d1a undefined FUN_00424d1a(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +00424d24 FUN_00424d24 undefined FUN_00424d24(int param_1) 10 1 +00424d2e FUN_00424d2e undefined FUN_00424d2e(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +00424d38 FUN_00424d38 undefined FUN_00424d38(int param_1) 10 1 +00424d42 FUN_00424d42 undefined FUN_00424d42(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +00424d4c FUN_00424d4c void * FUN_00424d4c(void * this, byte param_1) 49 4 +00424d7d FUN_00424d7d undefined FUN_00424d7d(int param_1, void * * param_2) 10 1 QueryInterface +00424d87 FUN_00424d87 undefined FUN_00424d87(int param_1, void * * param_2) 10 1 QueryInterface +00424d91 FUN_00424d91 undefined FUN_00424d91(int param_1, void * * param_2) 10 1 QueryInterface +00424d9b FUN_00424d9b undefined FUN_00424d9b(int param_1, void * * param_2) 10 1 QueryInterface +00424da5 FUN_00424da5 undefined4 * FUN_00424da5(undefined4 * param_1) 53 3 +00424dda FUN_00424dda undefined4 FUN_00424dda(undefined4 param_1) 8 0 +00424de2 FUN_00424de2 undefined FUN_00424de2(int param_1) 11 1 +00424ded FUN_00424ded undefined4 FUN_00424ded(int param_1) 4 0 +00424df1 FUN_00424df1 HRESULT FUN_00424df1(void * this, undefined4 * param_1) 76 1 CoCreateInstance +00424e3d FUN_00424e3d undefined4 FUN_00424e3d(void) 8 0 +00424e45 FUN_00424e45 undefined4 FUN_00424e45(void) 8 0 +00424e53 FUN_00424e53 undefined FUN_00424e53(int * param_1) 26 0 +00424e6d FUN_00424e6d undefined FUN_00424e6d(undefined4 * param_1) 36 3 +00424e91 FUN_00424e91 undefined4 * FUN_00424e91(void * this, byte param_1) 55 4 +00424ec8 FUN_00424ec8 undefined FUN_00424ec8(int * param_1) 42 4 +00424ef2 FUN_00424ef2 undefined FUN_00424ef2(undefined4 * param_1) 66 5 +00424f34 FUN_00424f34 undefined4 FUN_00424f34(void) 8 0 +00424f3c FUN_00424f3c undefined4 FUN_00424f3c(void) 6 0 +00424f42 FUN_00424f42 undefined4 FUN_00424f42(void) 5 0 +00424f47 FUN_00424f47 undefined4 * FUN_00424f47(void * this, byte param_1) 31 2 +00424f66 FUN_00424f66 undefined4 FUN_00424f66(int param_1) 86 4 +00424fbc FUN_00424fbc undefined FUN_00424fbc(void * this, LPCWSTR param_1, int * param_2) 621 15 +0042524e FUN_0042524e undefined FUN_0042524e(GUID * param_1, int * param_2, int param_3) 798 13 CoCreateInstance +0042556c FUN_0042556c int FUN_0042556c(TLIBATTR * param_1, LPCWSTR param_2) 208 8 SysFreeString +0042563c FUN_0042563c undefined FUN_0042563c(HMODULE param_1, LPCWSTR param_2) 458 12 SysFreeString +00425806 FUN_00425806 int FUN_00425806(int param_1, int param_2, void * param_3) 134 3 +0042588c FUN_0042588c int FUN_0042588c(int param_1, int param_2, void * param_3) 135 3 +00425913 FUN_00425913 DWORD FUN_00425913(void * this, BOOL param_1, int param_2) 158 6 +004259b1 FUN_004259b1 undefined FUN_004259b1(int * param_1, wchar_t * param_2) 100 4 +00425a15 FUN_00425a15 int FUN_00425a15(int param_1) 57 3 +00425a4e FUN_00425a4e int FUN_00425a4e(int param_1) 4 0 +00425a52 FUN_00425a52 undefined FUN_00425a52(int param_1) 42 2 +00425aa8 FUN_00425aa8 undefined FUN_00425aa8(undefined4 * param_1) 40 3 +00425ad0 FUN_00425ad0 undefined4 * FUN_00425ad0(void * this, byte param_1) 31 2 +00425aef FUN_00425aef undefined4 FUN_00425aef(void * this, undefined4 * param_1, undefined4 * param_2) 87 2 +00425b46 Allocate int Allocate(void * this, uint param_1) 47 2 +00425b75 Allocate int Allocate(void * this, uint param_1) 47 2 +00425ba4 Allocate int Allocate(void * this, uint param_1) 47 2 +00425bd3 FUN_00425bd3 undefined4 * FUN_00425bd3(undefined4 * param_1) 46 3 +00425c08 FUN_00425c08 undefined FUN_00425c08(int param_1) 20 1 +00425c1c Release LONG Release(int * param_1) 45 1 +00425c49 _InternalQueryInterface long _InternalQueryInterface(CAccessibleProxy * this, _GUID * param_1, void * * param_2) 24 1 AtlInternalQueryInterface +00425c61 FUN_00425c61 undefined FUN_00425c61(undefined4 * param_1) 47 3 +00425c90 QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +00425caa FUN_00425caa undefined4 * FUN_00425caa(void * this, byte param_1) 31 2 +00425cc9 FUN_00425cc9 int FUN_00425cc9(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 84 4 +00425d1d Catch@00425d1d undefined * Catch@00425d1d(void) 10 0 +00425d2d FUN_00425d2d int FUN_00425d2d(void) 76 4 +00425d79 FUN_00425d79 undefined4 * FUN_00425d79(undefined4 * param_1) 78 3 +00425dcd FUN_00425dcd undefined FUN_00425dcd(int param_1) 20 1 +00425de1 Release LONG Release(int * param_1) 45 1 +00425e0e FUN_00425e0e undefined FUN_00425e0e(int param_1) 10 1 +00425e18 FUN_00425e18 undefined FUN_00425e18(int param_1) 10 1 +00425e22 FUN_00425e22 undefined FUN_00425e22(int param_1) 10 1 +00425e2c FUN_00425e2c undefined FUN_00425e2c(int param_1) 10 1 +00425e36 FUN_00425e36 undefined FUN_00425e36(int param_1) 10 1 +00425e40 FUN_00425e40 undefined FUN_00425e40(int param_1) 10 1 +00425e52 _InternalQueryInterface long _InternalQueryInterface(CAccessibleProxy * this, _GUID * param_1, void * * param_2) 24 1 AtlInternalQueryInterface +00425e6a FUN_00425e6a undefined FUN_00425e6a(undefined4 * param_1) 88 4 +00425ec2 QueryInterface long QueryInterface(_GUID * param_1, void * * param_2) 26 1 AtlInternalQueryInterface +00425edc FUN_00425edc undefined4 * FUN_00425edc(void * this, byte param_1) 31 2 +00425efb FUN_00425efb undefined FUN_00425efb(int param_1, void * * param_2) 10 1 QueryInterface +00425f05 FUN_00425f05 undefined FUN_00425f05(int param_1, void * * param_2) 10 1 QueryInterface +00425f0f FUN_00425f0f undefined FUN_00425f0f(int param_1, void * * param_2) 10 1 QueryInterface +00425f19 FUN_00425f19 int FUN_00425f19(int param_1) 4 0 +00425f1d FUN_00425f1d undefined4 * FUN_00425f1d(void * this, undefined4 param_1) 67 3 +00425f60 FUN_00425f60 undefined FUN_00425f60(LONG * param_1) 10 0 +00425f85 FUN_00425f85 undefined FUN_00425f85(int param_1) 20 1 +00425f99 Release LONG Release(int * param_1) 45 1 +00425fc8 FUN_00425fc8 long FUN_00425fc8(int * param_1, _GUID * param_2, void * * param_3) 76 2 AtlInternalQueryInterface +00426014 FUN_00426014 undefined FUN_00426014(undefined4 * param_1) 70 3 +0042605a FUN_0042605a undefined4 * FUN_0042605a(void * this, byte param_1) 31 2 +00426079 FUN_00426079 undefined4 * FUN_00426079(void * this, undefined4 param_1) 73 3 +004260c2 FUN_004260c2 undefined FUN_004260c2(int param_1) 19 0 +004260d5 FUN_004260d5 undefined FUN_004260d5(int param_1) 19 0 +004260e8 FUN_004260e8 undefined FUN_004260e8(int param_1, undefined4 param_2, undefined4 param_3) 24 0 +00426100 FUN_00426100 undefined4 FUN_00426100(int param_1) 4 0 +00426104 FUN_00426104 undefined FUN_00426104(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +0042610e FUN_0042610e undefined FUN_0042610e(int param_1) 10 1 +00426118 FUN_00426118 undefined FUN_00426118(int param_1) 10 1 +00426122 FUN_00426122 undefined FUN_00426122(int param_1) 10 1 +0042612c FUN_0042612c undefined FUN_0042612c(int param_1) 10 1 +00426136 FUN_00426136 undefined FUN_00426136(int param_1) 10 1 +00426140 FUN_00426140 undefined FUN_00426140(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +0042614a FUN_0042614a undefined FUN_0042614a(int param_1) 10 1 +00426154 FUN_00426154 undefined FUN_00426154(int param_1, undefined4 param_2, undefined4 param_3) 10 1 +0042615e FUN_0042615e void * FUN_0042615e(void * this, byte param_1) 49 4 +0042618f FUN_0042618f undefined FUN_0042618f(void * this, int param_1, void * param_2) 19 1 +004261a2 FUN_004261a2 undefined FUN_004261a2(void * this, int param_1, void * param_2) 19 1 +004261b5 FUN_004261b5 undefined4 FUN_004261b5(LPCWSTR param_1, int param_2) 90 4 +0042620f Catch@0042620f undefined * Catch@0042620f(void) 10 0 +0042621b FUN_0042621b undefined FUN_0042621b(void) 66 3 +0042625d Catch@0042625d undefined * Catch@0042625d(void) 13 0 +0042626c FUN_0042626c bool FUN_0042626c(void) 146 4 +00426300 FUN_00426300 int FUN_00426300(int param_1, int param_2, int param_3) 111 6 +0042636f FUN_0042636f undefined FUN_0042636f(void * this, CRegKey * param_1, wchar_t * param_2, undefined2 * param_3) 277 7 +00426484 Catch@00426484 undefined * Catch@00426484(void) 10 0 +00426490 FUN_00426490 undefined FUN_00426490(void) 158 3 +004265dc Catch@004265dc undefined * Catch@004265dc(void) 13 0 +004265f7 FUN_004265f7 undefined FUN_004265f7(void) 260 7 memset +00426704 FUN_00426704 undefined FUN_00426704(void * this, LPCWSTR param_1, HKEY param_2, int param_3, int param_4) 1687 20 +00426d9b FUN_00426d9b undefined4 * FUN_00426d9b(undefined4 * param_1) 66 3 +00426ddd FUN_00426ddd LONG FUN_00426ddd(int param_1) 153 7 +00426e76 FUN_00426e76 undefined FUN_00426e76(int param_1) 457 14 +0042703f FUN_0042703f undefined FUN_0042703f(int param_1) 504 15 +00427237 FUN_00427237 undefined FUN_00427237(void * this, int param_1) 365 7 +004273a4 FUN_004273a4 undefined FUN_004273a4(int param_1) 14 1 +004273b2 FUN_004273b2 undefined FUN_004273b2(void) 690 25 +00427664 FUN_00427664 undefined FUN_00427664(int param_1, void * param_2) 46 1 +00427692 FUN_00427692 undefined FUN_00427692(int param_1, void * param_2) 38 1 +00427716 Catch@00427716 undefined1 * Catch@00427716(void) 10 0 +00427768 FUN_00427768 int FUN_00427768(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 84 4 +004277bc Catch@004277bc undefined * Catch@004277bc(void) 10 0 +004277cc FUN_004277cc int FUN_004277cc(void) 76 4 +00427818 FUN_00427818 int FUN_00427818(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 94 4 +00427876 Catch@00427876 undefined * Catch@00427876(void) 10 0 +00427886 FUN_00427886 int FUN_00427886(void) 66 2 +004278c8 FUN_004278c8 undefined4 * FUN_004278c8(void * this, undefined4 param_1) 67 3 +00427913 FUN_00427913 undefined FUN_00427913(int param_1) 20 1 +00427927 Release LONG Release(int * param_1) 45 1 +00427954 FUN_00427954 long FUN_00427954(int * param_1, _GUID * param_2, void * * param_3) 76 2 AtlInternalQueryInterface +004279a0 FUN_004279a0 undefined FUN_004279a0(undefined4 * param_1) 77 4 +004279ed FUN_004279ed undefined4 * FUN_004279ed(void * this, byte param_1) 31 2 +00427a0c FUN_00427a0c undefined FUN_00427a0c(void * this, LPCWSTR param_1, int param_2) 311 8 +00427b43 FUN_00427b43 int FUN_00427b43(void * this, int param_1, void * param_2) 111 3 +00427bb2 FUN_00427bb2 int FUN_00427bb2(void * this, int param_1, void * param_2) 111 3 +00427c21 FUN_00427c21 HRESULT FUN_00427c21(void * this, int param_1, int param_2) 258 11 +00427d23 FUN_00427d23 HRESULT FUN_00427d23(int * param_1) 55 4 +00427d5a FUN_00427d5a undefined FUN_00427d5a(void * param_1) 108 4 +00427dc6 FUN_00427dc6 undefined FUN_00427dc6(void) 14 1 +00427dd4 FUN_00427dd4 undefined FUN_00427dd4(int param_1, undefined4 param_2, undefined4 * param_3) 32 2 +00427df4 FUN_00427df4 int FUN_00427df4(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 94 4 +00427e52 Catch@00427e52 undefined * Catch@00427e52(void) 10 0 +00427e62 FUN_00427e62 int FUN_00427e62(void) 66 2 +00427ea4 FUN_00427ea4 undefined FUN_00427ea4(LPCWSTR param_1, LPCWSTR param_2, LPCWSTR param_3) 197 8 FindResourceW +00427f69 Catch@00427f69 undefined * Catch@00427f69(void) 13 0 +00427f7e FUN_00427f7e undefined FUN_00427f7e(void) 138 6 +00428008 FUN_00428008 undefined4 FUN_00428008(undefined4 param_1, LPCWSTR param_2, ushort param_3, LPCWSTR param_4) 65 4 +00428049 FUN_00428049 undefined4 FUN_00428049(undefined4 param_1, LPCWSTR param_2, LPCWSTR param_3, LPCWSTR param_4) 92 4 +004280a5 FUN_004280a5 undefined4 FUN_004280a5(undefined4 param_1, LPCWSTR param_2, ushort param_3, LPCWSTR param_4) 64 4 +004280e5 FUN_004280e5 undefined4 FUN_004280e5(undefined4 param_1, LPCWSTR param_2, LPCWSTR param_3, LPCWSTR param_4) 91 4 +00428140 FUN_00428140 undefined FUN_00428140(int * param_1, LPCWSTR param_2, int param_3, int * param_4) 507 15 +0042833b FUN_0042833b undefined FUN_0042833b(int * param_1, ushort param_2, int param_3, int * param_4) 495 15 +0042852a FUN_0042852a undefined FUN_0042852a(int param_1) 80 2 +0042857a FUN_0042857a undefined FUN_0042857a(HINSTANCE param_1) 441 13 +00428733 FUN_00428733 undefined FUN_00428733(int param_1, undefined4 param_2, undefined4 * param_3) 32 2 +00428753 FUN_00428753 undefined FUN_00428753(int * param_1, LPCWSTR param_2, int param_3, int * param_4) 9 1 +0042875c FUN_0042875c undefined FUN_0042875c(int * param_1, ushort param_2, int param_3, int * param_4) 9 1 +00428765 FUN_00428765 undefined FUN_00428765(int param_1) 24 1 +0042877d FUN_0042877d undefined FUN_0042877d(int param_1) 24 1 +00428795 FUN_00428795 undefined FUN_00428795(void * param_1, int param_2, int param_3) 26 1 memset +004287af FUN_004287af undefined FUN_004287af(undefined2 * param_1, int param_2) 56 2 memset +004287e7 FUN_004287e7 uint FUN_004287e7(ushort * param_1, int param_2) 79 0 +00428836 FUN_00428836 undefined4 FUN_00428836(undefined4 param_1) 8 0 +0042883e FUN_0042883e undefined FUN_0042883e(void * param_1, int param_2, int * param_3) 28 1 memset +0042885a FUN_0042885a undefined4 FUN_0042885a(ushort * param_1) 169 4 +00428903 FUN_00428903 undefined4 FUN_00428903(ushort * param_1) 303 4 +00428a32 FUN_00428a32 undefined FUN_00428a32(LPCWSTR param_1) 2190 33 closesocket;memcpy_s;memset;recvfrom;sendto +0042932c GetAdaptersInfo undefined GetAdaptersInfo(void) 6 0 +00429332 GetAdaptersAddresses undefined GetAdaptersAddresses(void) 6 0 +00429338 NotifyAddrChange undefined NotifyAddrChange(void) 6 0 +0042933e GetUserNameExW undefined GetUserNameExW(void) 6 0 +00429355 FUN_00429355 undefined FUN_00429355(void * this, undefined4 * param_1) 18 0 +00429367 FUN_00429367 undefined4 FUN_00429367(undefined4 param_1, undefined4 param_2) 10 0 +00429371 FUN_00429371 undefined FUN_00429371(undefined4 * param_1) 31 1 +00429390 memmove_s void memmove_s(void * param_1, uint param_2, void * param_3, uint param_4) 33 2 memmove_s +004293d9 RemoveAt int RemoveAt(CSimpleArray_> * this, int param_1) 72 1 memmove_s +00429421 FUN_00429421 int FUN_00429421(void * this, int param_1) 44 1 +0042944d FUN_0042944d undefined FUN_0042944d(void * this, int param_1, undefined4 * param_2) 28 0 +0042946e CComCritSecLock undefined CComCritSecLock(CComCritSecLock * this, CComCriticalSection * param_1, bool param_2) 41 1 +004294b0 FUN_004294b0 int FUN_004294b0(int param_1) 37 1 memset +004294dd FUN_004294dd undefined FUN_004294dd(int param_1) 24 2 +004294f5 RemoveResourceInstance bool RemoveResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 105 4 +0042955e GetHInstanceAt HINSTANCE__ * GetHInstanceAt(CAtlBaseModule * this, int param_1) 93 3 +004295bb Add int Add(CSimpleArray_> * this, HINSTANCE__ * * param_1) 124 2 +00429637 FUN_00429637 undefined4 * FUN_00429637(undefined4 * param_1) 64 2 +00429677 AddResourceInstance bool AddResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 53 3 +004296ac FUN_004296ac undefined FUN_004296ac(int * param_1) 68 1 +004296f0 FUN_004296f0 int FUN_004296f0(int param_1) 25 1 memset +0042970a FUN_0042970a undefined4 * FUN_0042970a(undefined4 * param_1) 65 2 +00429a38 VarBstrCat HRESULT VarBstrCat(BSTR bstrLeft, BSTR bstrRight, LPBSTR pbstrResult) 6 0 +00429a90 FUN_00429a90 undefined FUN_00429a90(undefined * param_1) 17 0 +00429ab0 FUN_00429ab0 undefined FUN_00429ab0(undefined4 param_1) 21 1 +00429ad0 _com_issue_errorex void _com_issue_errorex(long param_1, IUnknown * param_2, _GUID * param_3) 117 2 +00429b50 _com_dispatch_method long _com_dispatch_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 71 2 +00429ba0 _com_dispatch_propget long _com_dispatch_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +00429bd0 _com_dispatch_propput long _com_dispatch_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 99 2 +00429c40 FUN_00429c40 undefined FUN_00429c40(undefined4 param_1, undefined4 param_2) 48 1 +00429c80 FUN_00429c80 uint FUN_00429c80(uint param_1) 26 0 +00429ca0 _com_invoke_helper long _com_invoke_helper(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, char * param_7, IErrorInfo * * param_8) 1166 8 VariantChangeType;VariantClear;VariantInit;memset +0042a270 _com_dispatch_raw_method long _com_dispatch_raw_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 72 2 +0042a2c0 _com_dispatch_raw_propget long _com_dispatch_raw_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +0042a2f0 _com_dispatch_raw_propput long _com_dispatch_raw_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 100 2 +0042a360 FUN_0042a360 int FUN_0042a360(ushort param_1) 40 0 +0042a390 _com_handle_excepinfo long _com_handle_excepinfo(tagEXCEPINFO * param_1, IErrorInfo * * param_2) 260 2 SysFreeString +0042a4a6 _Lock void _Lock(basic_streambuf_> * this) 6 0 +0042a4ac _Unlock void _Unlock(basic_streambuf_> * this) 6 0 +0042a4b2 showmanyc __int64 showmanyc(basic_streambuf_> * this) 6 0 +0042a4b8 uflow ushort uflow(basic_streambuf_> * this) 6 0 +0042a4be xsgetn __int64 xsgetn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +0042a4c4 xsputn __int64 xsputn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +0042a4ca setbuf basic_streambuf_> * setbuf(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +0042a4d0 sync int sync(basic_streambuf_> * this) 6 0 +0042a4d6 imbue void imbue(basic_streambuf_> * this, locale * param_1) 6 0 +0042a54e FUN_0042a54e undefined FUN_0042a54e(uint param_1) 11 1 +0042a5b2 ___tmainCRTStartup int ___tmainCRTStartup(void) 417 14 +0042a884 entry undefined entry(void) 10 2 +0042a88e operator_delete void operator_delete(void * param_1) 6 0 +0042a8a5 FID_conflict:`vector_deleting_destructor' type_info * FID_conflict:`vector_deleting_destructor'(void * this, byte param_1) 76 3 +0042a8f6 memcpy void * memcpy(void * _Dst, void * _Src, size_t _Size) 6 0 +0042a902 _CxxThrowException void _CxxThrowException(void * pExceptionObject, ThrowInfo * pThrowInfo) 6 0 +0042a90e __CxxFrameHandler3 undefined __CxxFrameHandler3(void) 6 0 +0042a914 __security_check_cookie undefined __security_check_cookie(int param_1) 15 1 +0042a923 __EH_prolog3 undefined __EH_prolog3(int param_1) 51 0 +0042a956 __EH_prolog3_catch undefined __EH_prolog3_catch(int param_1) 54 0 +0042a98c __EH_prolog3_GS undefined __EH_prolog3_GS(int param_1) 54 0 +0042a9c2 __EH_prolog3_catch_GS undefined __EH_prolog3_catch_GS(int param_1) 57 0 +0042a9fb __EH_epilog3 undefined __EH_epilog3(void) 20 0 +0042aa0f FUN_0042aa0f undefined FUN_0042aa0f(void) 15 2 +0042aa1e FUN_0042aa1e undefined FUN_0042aa1e(void) 15 2 +0042aa2e memset void * memset(void * _Dst, int _Val, size_t _Size) 6 0 +0042aa40 operator_new void * operator_new(uint param_1) 6 0 +0042aa46 operator_delete[] void operator_delete[](void * param_1) 6 0 +0042aa58 what char * what(exception * this) 6 0 +0042aa76 free void free(void * _Memory) 6 0 +0042aa88 _recalloc void * _recalloc(void * _Memory, size_t _Count, size_t _Size) 6 0 +0042aaa0 __ArrayUnwind void __ArrayUnwind(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 50 2 +0042aafe `eh_vector_destructor_iterator' void `eh_vector_destructor_iterator'(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 75 3 +0042ab49 FUN_0042ab49 undefined FUN_0042ab49(void) 24 1 +0042ab80 __alloca_probe undefined __alloca_probe(void) 43 0 +0042abab __onexit _onexit_t __onexit(_onexit_t param_1) 152 8 +0042ac43 FUN_0042ac43 undefined FUN_0042ac43(void) 9 1 +0042ac4c _atexit int _atexit(_func_4879 * param_1) 23 1 +0042ac6a memcmp int memcmp(void * _Buf1, void * _Buf2, size_t _Size) 6 0 +0042ac80 __alloca_probe_16 uint __alloca_probe_16(void) 22 1 +0042ac96 __alloca_probe_8 uint __alloca_probe_8(void) 22 1 +0042acb0 __aulldiv undefined8 __aulldiv(uint param_1, uint param_2, uint param_3, uint param_4) 104 0 +0042ad30 __alldiv undefined8 __alldiv(uint param_1, uint param_2, uint param_3, uint param_4) 170 0 +0042ade0 __allmul longlong __allmul(uint param_1, int param_2, uint param_3, int param_4) 52 0 +0042ae2c purecall undefined purecall(void) 6 0 +0042ae38 memmove_s errno_t memmove_s(void * _Dst, rsize_t _DstSize, void * _Src, rsize_t _MaxCount) 6 0 +0042ae40 FUN_0042ae40 undefined FUN_0042ae40(undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 37 1 +0042ae65 __CxxUnhandledExceptionFilter long __CxxUnhandledExceptionFilter(_EXCEPTION_POINTERS * param_1) 66 1 +0042aeb6 _amsg_exit void _amsg_exit(int param_1) 6 0 +0042aee8 FUN_0042aee8 undefined FUN_0042aee8(void) 38 0 +0042af30 __ValidateImageBase BOOL __ValidateImageBase(PBYTE pImageBase) 53 0 +0042af70 __FindPESection PIMAGE_SECTION_HEADER __FindPESection(PBYTE pImageBase, DWORD_PTR rva) 68 0 +0042afd0 __IsNonwritableInCurrentImage BOOL __IsNonwritableInCurrentImage(PBYTE pTarget) 166 2 +0042b08c initterm undefined initterm(void) 6 0 +0042b092 initterm_e undefined initterm_e(void) 6 0 +0042b0a0 __SEH_prolog4 undefined __SEH_prolog4(undefined4 param_1, int param_2) 69 0 +0042b0e5 __SEH_epilog4 undefined __SEH_epilog4(void) 20 0 +0042b15c ___security_init_cookie void ___security_init_cookie(void) 155 5 +0042b1f7 ___report_gsfailure void ___report_gsfailure(void) 262 6 +0042b2fe terminate void terminate(void) 6 0 +0042b304 _unlock void _unlock(int _File) 6 0 +0042b30a __dllonexit undefined __dllonexit(void) 6 0 +0042b310 _lock void _lock(int _File) 6 0 +0042b316 except_handler4_common undefined except_handler4_common(void) 6 0 +0042b328 _type_info_dtor_internal_method void _type_info_dtor_internal_method(type_info * this) 6 0 +0042b32e _crt_debugger_hook void _crt_debugger_hook(int param_1) 6 0 +0042b394 Unwind@0042b394 undefined Unwind@0042b394(void) 8 1 +0042b3b7 Unwind@0042b3b7 undefined Unwind@0042b3b7(void) 9 0 +0042b3db Unwind@0042b3db undefined Unwind@0042b3db(void) 9 0 +0042b3ff Unwind@0042b3ff undefined Unwind@0042b3ff(void) 9 0 +0042b423 Unwind@0042b423 undefined Unwind@0042b423(void) 8 1 +0042b446 Unwind@0042b446 undefined Unwind@0042b446(void) 9 0 +0042b46a Unwind@0042b46a undefined Unwind@0042b46a(void) 9 0 +0042b48e Unwind@0042b48e undefined Unwind@0042b48e(void) 9 0 +0042b4b2 Unwind@0042b4b2 undefined Unwind@0042b4b2(void) 14 1 +0042b4db Unwind@0042b4db undefined Unwind@0042b4db(void) 14 1 +0042b504 Unwind@0042b504 undefined Unwind@0042b504(void) 8 1 +0042b527 Unwind@0042b527 undefined Unwind@0042b527(void) 8 1 +0042b54a Unwind@0042b54a undefined Unwind@0042b54a(void) 10 1 +0042b56f Unwind@0042b56f undefined Unwind@0042b56f(void) 10 1 +0042b594 Unwind@0042b594 undefined Unwind@0042b594(void) 8 1 +0042b5b7 Unwind@0042b5b7 undefined Unwind@0042b5b7(void) 11 1 +0042b5c2 Unwind@0042b5c2 undefined Unwind@0042b5c2(void) 11 1 +0042b5f5 Unwind@0042b5f5 undefined Unwind@0042b5f5(void) 8 1 +0042b618 Unwind@0042b618 undefined Unwind@0042b618(void) 9 0 +0042b63c Unwind@0042b63c undefined Unwind@0042b63c(void) 8 1 +0042b65f Unwind@0042b65f undefined Unwind@0042b65f(void) 8 1 +0042b69d Unwind@0042b69d undefined Unwind@0042b69d(void) 8 1 +0042b6c0 Unwind@0042b6c0 undefined Unwind@0042b6c0(void) 14 1 +0042b6e9 Unwind@0042b6e9 undefined Unwind@0042b6e9(void) 14 0 +0042b712 Unwind@0042b712 undefined Unwind@0042b712(void) 8 1 +0042b735 Unwind@0042b735 undefined Unwind@0042b735(void) 11 1 +0042b768 Unwind@0042b768 undefined Unwind@0042b768(void) 8 1 +0042b770 Unwind@0042b770 undefined Unwind@0042b770(void) 8 1 +0042b778 Unwind@0042b778 undefined Unwind@0042b778(void) 8 1 +0042b79b Unwind@0042b79b undefined Unwind@0042b79b(void) 12 0 +0042b7a7 Unwind@0042b7a7 undefined Unwind@0042b7a7(void) 11 1 +0042b7cd Unwind@0042b7cd undefined Unwind@0042b7cd(void) 9 0 +0042b7f1 Unwind@0042b7f1 undefined Unwind@0042b7f1(void) 8 1 +0042b814 Unwind@0042b814 undefined Unwind@0042b814(void) 9 0 +0042b838 Unwind@0042b838 undefined Unwind@0042b838(void) 9 0 +0042b841 Unwind@0042b841 undefined Unwind@0042b841(void) 29 0 +0042b85e Unwind@0042b85e undefined Unwind@0042b85e(void) 12 0 +0042b86a Unwind@0042b86a undefined Unwind@0042b86a(void) 11 1 +0042b8ab Unwind@0042b8ab undefined Unwind@0042b8ab(void) 25 1 +0042b8df Unwind@0042b8df undefined Unwind@0042b8df(void) 25 1 +0042b913 Unwind@0042b913 undefined Unwind@0042b913(void) 8 1 +0042b91b Unwind@0042b91b undefined Unwind@0042b91b(void) 11 1 +0042b941 Unwind@0042b941 undefined Unwind@0042b941(void) 8 1 +0042b949 Unwind@0042b949 undefined Unwind@0042b949(void) 11 1 +0042b96f Unwind@0042b96f undefined Unwind@0042b96f(void) 8 1 +0042b977 Unwind@0042b977 undefined Unwind@0042b977(void) 11 1 +0042b99d Unwind@0042b99d undefined Unwind@0042b99d(void) 8 1 +0042b9a5 Unwind@0042b9a5 undefined Unwind@0042b9a5(void) 11 1 +0042b9cb Unwind@0042b9cb undefined Unwind@0042b9cb(void) 8 1 +0042b9d3 Unwind@0042b9d3 undefined Unwind@0042b9d3(void) 25 1 +0042b9ec Unwind@0042b9ec undefined Unwind@0042b9ec(void) 8 1 +0042b9f4 Unwind@0042b9f4 undefined Unwind@0042b9f4(void) 8 1 +0042ba3c Unwind@0042ba3c undefined Unwind@0042ba3c(void) 25 1 +0042ba70 Unwind@0042ba70 undefined Unwind@0042ba70(void) 25 1 +0042baa4 Unwind@0042baa4 undefined Unwind@0042baa4(void) 25 1 +0042bad8 Unwind@0042bad8 undefined Unwind@0042bad8(void) 11 1 +0042bae3 Unwind@0042bae3 undefined Unwind@0042bae3(void) 11 1 +0042baee Unwind@0042baee undefined Unwind@0042baee(void) 11 1 +0042baf9 Unwind@0042baf9 undefined Unwind@0042baf9(void) 11 1 +0042bb04 Unwind@0042bb04 undefined Unwind@0042bb04(void) 11 1 +0042bb0f Unwind@0042bb0f undefined Unwind@0042bb0f(void) 11 1 +0042bb1a Unwind@0042bb1a undefined Unwind@0042bb1a(void) 11 1 +0042bb25 Unwind@0042bb25 undefined Unwind@0042bb25(void) 11 1 +0042bb30 Unwind@0042bb30 undefined Unwind@0042bb30(void) 34 1 +0042bb7a Unwind@0042bb7a undefined Unwind@0042bb7a(void) 25 1 +0042bbae Unwind@0042bbae undefined Unwind@0042bbae(void) 8 1 +0042bbb6 Unwind@0042bbb6 undefined Unwind@0042bbb6(void) 25 1 +0042bbea Unwind@0042bbea undefined Unwind@0042bbea(void) 8 1 +0042bbf2 Unwind@0042bbf2 undefined Unwind@0042bbf2(void) 8 1 +0042bbfa Unwind@0042bbfa undefined Unwind@0042bbfa(void) 25 1 +0042bc13 Unwind@0042bc13 undefined Unwind@0042bc13(void) 8 1 +0042bc1b Unwind@0042bc1b undefined Unwind@0042bc1b(void) 8 1 +0042bc3e Unwind@0042bc3e undefined Unwind@0042bc3e(void) 8 1 +0042bc46 Unwind@0042bc46 undefined Unwind@0042bc46(void) 8 1 +0042bc4e Unwind@0042bc4e undefined Unwind@0042bc4e(void) 11 1 +0042bc59 Unwind@0042bc59 undefined Unwind@0042bc59(void) 8 1 +0042bc61 Unwind@0042bc61 undefined Unwind@0042bc61(void) 8 1 +0042bc69 Unwind@0042bc69 undefined Unwind@0042bc69(void) 8 1 +0042bc71 Unwind@0042bc71 undefined Unwind@0042bc71(void) 8 1 +0042bca1 Unwind@0042bca1 undefined Unwind@0042bca1(void) 11 1 +0042bcac Unwind@0042bcac undefined Unwind@0042bcac(void) 11 1 +0042bcb7 Unwind@0042bcb7 undefined Unwind@0042bcb7(void) 11 1 +0042bcc2 Unwind@0042bcc2 undefined Unwind@0042bcc2(void) 11 1 +0042bccd Unwind@0042bccd undefined Unwind@0042bccd(void) 11 1 +0042bcd8 Unwind@0042bcd8 undefined Unwind@0042bcd8(void) 11 1 +0042bce3 Unwind@0042bce3 undefined Unwind@0042bce3(void) 34 1 +0042bd05 Unwind@0042bd05 undefined Unwind@0042bd05(void) 34 1 +0042bd4f Unwind@0042bd4f undefined Unwind@0042bd4f(void) 8 1 +0042bd57 Unwind@0042bd57 undefined Unwind@0042bd57(void) 8 1 +0042bd5f Unwind@0042bd5f undefined Unwind@0042bd5f(void) 8 1 +0042bd82 Unwind@0042bd82 undefined Unwind@0042bd82(void) 8 1 +0042bd8a Unwind@0042bd8a undefined Unwind@0042bd8a(void) 8 1 +0042bd92 Unwind@0042bd92 undefined Unwind@0042bd92(void) 8 1 +0042bdb5 Unwind@0042bdb5 undefined Unwind@0042bdb5(void) 8 1 +0042bdbd Unwind@0042bdbd undefined Unwind@0042bdbd(void) 8 1 +0042bdc5 Unwind@0042bdc5 undefined Unwind@0042bdc5(void) 8 1 +0042bdcd Unwind@0042bdcd undefined Unwind@0042bdcd(void) 8 1 +0042bdd5 Unwind@0042bdd5 undefined Unwind@0042bdd5(void) 8 1 +0042bddd Unwind@0042bddd undefined Unwind@0042bddd(void) 8 1 +0042be00 Unwind@0042be00 undefined Unwind@0042be00(void) 8 1 +0042be08 Unwind@0042be08 undefined Unwind@0042be08(void) 8 1 +0042be10 Unwind@0042be10 undefined Unwind@0042be10(void) 8 1 +0042be18 Unwind@0042be18 undefined Unwind@0042be18(void) 8 1 +0042be20 Unwind@0042be20 undefined Unwind@0042be20(void) 8 1 +0042be28 Unwind@0042be28 undefined Unwind@0042be28(void) 8 1 +0042be4b Unwind@0042be4b undefined Unwind@0042be4b(void) 8 1 +0042be53 Unwind@0042be53 undefined Unwind@0042be53(void) 8 1 +0042be5b Unwind@0042be5b undefined Unwind@0042be5b(void) 8 1 +0042be63 Unwind@0042be63 undefined Unwind@0042be63(void) 8 1 +0042be6b Unwind@0042be6b undefined Unwind@0042be6b(void) 8 1 +0042be73 Unwind@0042be73 undefined Unwind@0042be73(void) 8 1 +0042be96 Unwind@0042be96 undefined Unwind@0042be96(void) 8 1 +0042be9e Unwind@0042be9e undefined Unwind@0042be9e(void) 8 1 +0042bea6 Unwind@0042bea6 undefined Unwind@0042bea6(void) 8 1 +0042beae Unwind@0042beae undefined Unwind@0042beae(void) 8 1 +0042beb6 Unwind@0042beb6 undefined Unwind@0042beb6(void) 8 1 +0042bebe Unwind@0042bebe undefined Unwind@0042bebe(void) 8 1 +0042bee1 Unwind@0042bee1 undefined Unwind@0042bee1(void) 8 1 +0042bee9 Unwind@0042bee9 undefined Unwind@0042bee9(void) 8 1 +0042bef1 Unwind@0042bef1 undefined Unwind@0042bef1(void) 8 1 +0042bef9 Unwind@0042bef9 undefined Unwind@0042bef9(void) 8 1 +0042bf01 Unwind@0042bf01 undefined Unwind@0042bf01(void) 8 1 +0042bf09 Unwind@0042bf09 undefined Unwind@0042bf09(void) 8 1 +0042bf2c Unwind@0042bf2c undefined Unwind@0042bf2c(void) 8 1 +0042bf34 Unwind@0042bf34 undefined Unwind@0042bf34(void) 8 1 +0042bf3c Unwind@0042bf3c undefined Unwind@0042bf3c(void) 8 1 +0042bf44 Unwind@0042bf44 undefined Unwind@0042bf44(void) 8 1 +0042bf4c Unwind@0042bf4c undefined Unwind@0042bf4c(void) 8 1 +0042bf54 Unwind@0042bf54 undefined Unwind@0042bf54(void) 8 1 +0042bf77 Unwind@0042bf77 undefined Unwind@0042bf77(void) 8 1 +0042bf7f Unwind@0042bf7f undefined Unwind@0042bf7f(void) 8 1 +0042bf87 Unwind@0042bf87 undefined Unwind@0042bf87(void) 8 1 +0042bf8f Unwind@0042bf8f undefined Unwind@0042bf8f(void) 8 1 +0042bf97 Unwind@0042bf97 undefined Unwind@0042bf97(void) 8 1 +0042bf9f Unwind@0042bf9f undefined Unwind@0042bf9f(void) 8 1 +0042bfc2 Unwind@0042bfc2 undefined Unwind@0042bfc2(void) 8 1 +0042bfca Unwind@0042bfca undefined Unwind@0042bfca(void) 8 1 +0042bfed Unwind@0042bfed undefined Unwind@0042bfed(void) 8 1 +0042bff5 Unwind@0042bff5 undefined Unwind@0042bff5(void) 8 1 +0042c018 Unwind@0042c018 undefined Unwind@0042c018(void) 8 1 +0042c03b Unwind@0042c03b undefined Unwind@0042c03b(void) 8 1 +0042c068 Unwind@0042c068 undefined Unwind@0042c068(void) 8 1 +0042c08b Unwind@0042c08b undefined Unwind@0042c08b(void) 8 1 +0042c0ae Unwind@0042c0ae undefined Unwind@0042c0ae(void) 8 1 +0042c0d1 Unwind@0042c0d1 undefined Unwind@0042c0d1(void) 10 1 +0042c0f6 Unwind@0042c0f6 undefined Unwind@0042c0f6(void) 11 1 +0042c101 Unwind@0042c101 undefined Unwind@0042c101(void) 8 1 +0042c124 Unwind@0042c124 undefined Unwind@0042c124(void) 9 0 +0042c148 Unwind@0042c148 undefined Unwind@0042c148(void) 9 0 +0042c16c Unwind@0042c16c undefined Unwind@0042c16c(void) 9 0 +0042c190 Unwind@0042c190 undefined Unwind@0042c190(void) 9 0 +0042c1b4 Unwind@0042c1b4 undefined Unwind@0042c1b4(void) 9 0 +0042c1d8 Unwind@0042c1d8 undefined Unwind@0042c1d8(void) 9 0 +0042c1fc Unwind@0042c1fc undefined Unwind@0042c1fc(void) 9 0 +0042c220 Unwind@0042c220 undefined Unwind@0042c220(void) 9 0 +0042c244 Unwind@0042c244 undefined Unwind@0042c244(void) 9 0 +0042c268 Unwind@0042c268 undefined Unwind@0042c268(void) 9 0 +0042c28c Unwind@0042c28c undefined Unwind@0042c28c(void) 9 0 +0042c2b0 Unwind@0042c2b0 undefined Unwind@0042c2b0(void) 9 0 +0042c2d4 Unwind@0042c2d4 undefined Unwind@0042c2d4(void) 9 0 +0042c2f8 Unwind@0042c2f8 undefined Unwind@0042c2f8(void) 14 1 +0042c321 Unwind@0042c321 undefined Unwind@0042c321(void) 14 1 +0042c34a Unwind@0042c34a undefined Unwind@0042c34a(void) 14 1 +0042c373 Unwind@0042c373 undefined Unwind@0042c373(void) 14 1 +0042c39c Unwind@0042c39c undefined Unwind@0042c39c(void) 14 1 +0042c3c5 Unwind@0042c3c5 undefined Unwind@0042c3c5(void) 14 1 +0042c3ee Unwind@0042c3ee undefined Unwind@0042c3ee(void) 9 0 +0042c412 Unwind@0042c412 undefined Unwind@0042c412(void) 11 1 +0042c41d Unwind@0042c41d undefined Unwind@0042c41d(void) 8 1 +0042c440 Unwind@0042c440 undefined Unwind@0042c440(void) 11 1 +0042c466 Unwind@0042c466 undefined Unwind@0042c466(void) 11 1 +0042c48c Unwind@0042c48c undefined Unwind@0042c48c(void) 8 1 +0042c4af Unwind@0042c4af undefined Unwind@0042c4af(void) 34 1 +0042c4f9 Unwind@0042c4f9 undefined Unwind@0042c4f9(void) 8 1 +0042c526 Unwind@0042c526 undefined Unwind@0042c526(void) 8 1 +0042c549 Unwind@0042c549 undefined Unwind@0042c549(void) 8 1 +0042c56c Unwind@0042c56c undefined Unwind@0042c56c(void) 8 1 +0042c58f Unwind@0042c58f undefined Unwind@0042c58f(void) 8 1 +0042c5b2 Unwind@0042c5b2 undefined Unwind@0042c5b2(void) 8 1 +0042c5d5 Unwind@0042c5d5 undefined Unwind@0042c5d5(void) 8 1 +0042c5f8 Unwind@0042c5f8 undefined Unwind@0042c5f8(void) 8 1 +0042c61b Unwind@0042c61b undefined Unwind@0042c61b(void) 8 1 +0042c63e Unwind@0042c63e undefined Unwind@0042c63e(void) 8 1 +0042c661 Unwind@0042c661 undefined Unwind@0042c661(void) 8 1 +0042c684 Unwind@0042c684 undefined Unwind@0042c684(void) 8 1 +0042c68c Unwind@0042c68c undefined Unwind@0042c68c(void) 8 1 +0042c6af Unwind@0042c6af undefined Unwind@0042c6af(void) 8 1 +0042c6d2 Unwind@0042c6d2 undefined Unwind@0042c6d2(void) 8 1 +0042c6f5 Unwind@0042c6f5 undefined Unwind@0042c6f5(void) 8 1 +0042c718 Unwind@0042c718 undefined Unwind@0042c718(void) 8 1 +0042c73b Unwind@0042c73b undefined Unwind@0042c73b(void) 8 1 +0042c75e Unwind@0042c75e undefined Unwind@0042c75e(void) 8 1 +0042c781 Unwind@0042c781 undefined Unwind@0042c781(void) 8 1 +0042c7a4 Unwind@0042c7a4 undefined Unwind@0042c7a4(void) 8 1 +0042c7ac Unwind@0042c7ac undefined Unwind@0042c7ac(void) 8 1 +0042c7cf Unwind@0042c7cf undefined Unwind@0042c7cf(void) 8 1 +0042c7f2 Unwind@0042c7f2 undefined Unwind@0042c7f2(void) 8 1 +0042c815 Unwind@0042c815 undefined Unwind@0042c815(void) 8 1 +0042c838 Unwind@0042c838 undefined Unwind@0042c838(void) 8 1 +0042c85b Unwind@0042c85b undefined Unwind@0042c85b(void) 8 1 +0042c87e Unwind@0042c87e undefined Unwind@0042c87e(void) 8 1 +0042c8a1 Unwind@0042c8a1 undefined Unwind@0042c8a1(void) 8 1 +0042c8c4 Unwind@0042c8c4 undefined Unwind@0042c8c4(void) 8 1 +0042c8e7 Unwind@0042c8e7 undefined Unwind@0042c8e7(void) 8 1 +0042c90a Unwind@0042c90a undefined Unwind@0042c90a(void) 8 1 +0042c912 Unwind@0042c912 undefined Unwind@0042c912(void) 8 1 +0042c91a Unwind@0042c91a undefined Unwind@0042c91a(void) 8 1 +0042c93d Unwind@0042c93d undefined Unwind@0042c93d(void) 8 1 +0042c945 Unwind@0042c945 undefined Unwind@0042c945(void) 8 1 +0042c94d Unwind@0042c94d undefined Unwind@0042c94d(void) 8 1 +0042c955 Unwind@0042c955 undefined Unwind@0042c955(void) 8 1 +0042c978 Unwind@0042c978 undefined Unwind@0042c978(void) 8 1 +0042c980 Unwind@0042c980 undefined Unwind@0042c980(void) 8 1 +0042c988 Unwind@0042c988 undefined Unwind@0042c988(void) 8 1 +0042c9ab Unwind@0042c9ab undefined Unwind@0042c9ab(void) 8 1 +0042c9b3 Unwind@0042c9b3 undefined Unwind@0042c9b3(void) 8 1 +0042c9bb Unwind@0042c9bb undefined Unwind@0042c9bb(void) 8 1 +0042c9c3 Unwind@0042c9c3 undefined Unwind@0042c9c3(void) 8 1 +0042c9e6 Unwind@0042c9e6 undefined Unwind@0042c9e6(void) 8 1 +0042ca09 Unwind@0042ca09 undefined Unwind@0042ca09(void) 8 1 +0042ca2c Unwind@0042ca2c undefined Unwind@0042ca2c(void) 8 1 +0042ca4f Unwind@0042ca4f undefined Unwind@0042ca4f(void) 11 1 +0042ca75 Unwind@0042ca75 undefined Unwind@0042ca75(void) 8 1 +0042ca7d Unwind@0042ca7d undefined Unwind@0042ca7d(void) 8 1 +0042caa0 Unwind@0042caa0 undefined Unwind@0042caa0(void) 8 1 +0042caa8 Unwind@0042caa8 undefined Unwind@0042caa8(void) 8 1 +0042cacb Unwind@0042cacb undefined Unwind@0042cacb(void) 8 1 +0042cad3 Unwind@0042cad3 undefined Unwind@0042cad3(void) 8 1 +0042caf6 Unwind@0042caf6 undefined Unwind@0042caf6(void) 8 1 +0042cb19 Unwind@0042cb19 undefined Unwind@0042cb19(void) 8 1 +0042cb3c Unwind@0042cb3c undefined Unwind@0042cb3c(void) 8 1 +0042cb5f Unwind@0042cb5f undefined Unwind@0042cb5f(void) 8 1 +0042cb82 Unwind@0042cb82 undefined Unwind@0042cb82(void) 8 1 +0042cba5 Unwind@0042cba5 undefined Unwind@0042cba5(void) 8 1 +0042cbc8 Unwind@0042cbc8 undefined Unwind@0042cbc8(void) 8 1 +0042cbeb Unwind@0042cbeb undefined Unwind@0042cbeb(void) 8 1 +0042cbf3 Unwind@0042cbf3 undefined Unwind@0042cbf3(void) 8 1 +0042cc16 Unwind@0042cc16 undefined Unwind@0042cc16(void) 8 1 +0042cc1e Unwind@0042cc1e undefined Unwind@0042cc1e(void) 8 1 +0042cc41 Unwind@0042cc41 undefined Unwind@0042cc41(void) 8 1 +0042cc49 Unwind@0042cc49 undefined Unwind@0042cc49(void) 8 1 +0042cc87 Unwind@0042cc87 undefined Unwind@0042cc87(void) 8 1 +0042cc8f Unwind@0042cc8f undefined Unwind@0042cc8f(void) 8 1 +0042cc97 Unwind@0042cc97 undefined Unwind@0042cc97(void) 8 1 +0042ccd5 Unwind@0042ccd5 undefined Unwind@0042ccd5(void) 8 1 +0042ccdd Unwind@0042ccdd undefined Unwind@0042ccdd(void) 25 1 +0042cd11 Unwind@0042cd11 undefined Unwind@0042cd11(void) 8 1 +0042cd19 Unwind@0042cd19 undefined Unwind@0042cd19(void) 8 1 +0042cd21 Unwind@0042cd21 undefined Unwind@0042cd21(void) 8 1 +0042cd44 Unwind@0042cd44 undefined Unwind@0042cd44(void) 8 1 +0042cd67 Unwind@0042cd67 undefined Unwind@0042cd67(void) 8 1 +0042cd6f Unwind@0042cd6f undefined Unwind@0042cd6f(void) 8 1 +0042cd77 Unwind@0042cd77 undefined Unwind@0042cd77(void) 8 1 +0042cdb5 Unwind@0042cdb5 undefined Unwind@0042cdb5(void) 14 1 +0042cdde Unwind@0042cdde undefined Unwind@0042cdde(void) 14 1 +0042ce07 Unwind@0042ce07 undefined Unwind@0042ce07(void) 14 1 +0042ce30 Unwind@0042ce30 undefined Unwind@0042ce30(void) 14 1 +0042ce59 Unwind@0042ce59 undefined Unwind@0042ce59(void) 14 1 +0042ce82 Unwind@0042ce82 undefined Unwind@0042ce82(void) 14 1 +0042ceab Unwind@0042ceab undefined Unwind@0042ceab(void) 8 1 +0042cf04 Unwind@0042cf04 undefined Unwind@0042cf04(void) 8 1 +0042cf31 Unwind@0042cf31 undefined Unwind@0042cf31(void) 11 1 +0042cf57 Unwind@0042cf57 undefined Unwind@0042cf57(void) 8 1 +0042cf7a Unwind@0042cf7a undefined Unwind@0042cf7a(void) 8 1 +0042cf9d Unwind@0042cf9d undefined Unwind@0042cf9d(void) 14 1 +0042cfab Unwind@0042cfab undefined Unwind@0042cfab(void) 14 1 +0042cfb9 Unwind@0042cfb9 undefined Unwind@0042cfb9(void) 14 1 +0042cfef Unwind@0042cfef undefined Unwind@0042cfef(void) 11 1 +0042cffa Unwind@0042cffa undefined Unwind@0042cffa(void) 11 1 +0042d005 Unwind@0042d005 undefined Unwind@0042d005(void) 11 1 +0042d010 Unwind@0042d010 undefined Unwind@0042d010(void) 11 1 +0042d043 Unwind@0042d043 undefined Unwind@0042d043(void) 11 1 +0042d076 Unwind@0042d076 undefined Unwind@0042d076(void) 11 1 +0042d081 Unwind@0042d081 undefined Unwind@0042d081(void) 11 1 +0042d08c Unwind@0042d08c undefined Unwind@0042d08c(void) 11 1 +0042d097 Unwind@0042d097 undefined Unwind@0042d097(void) 11 1 +0042d0a2 Unwind@0042d0a2 undefined Unwind@0042d0a2(void) 11 1 +0042d0d5 Unwind@0042d0d5 undefined Unwind@0042d0d5(void) 11 1 +0042d0fb Unwind@0042d0fb undefined Unwind@0042d0fb(void) 11 1 +0042d106 Unwind@0042d106 undefined Unwind@0042d106(void) 11 1 +0042d12c Unwind@0042d12c undefined Unwind@0042d12c(void) 11 1 +0042d137 Unwind@0042d137 undefined Unwind@0042d137(void) 11 1 +0042d15d Unwind@0042d15d undefined Unwind@0042d15d(void) 8 1 +0042d18a Unwind@0042d18a undefined Unwind@0042d18a(void) 8 1 +0042d192 Unwind@0042d192 undefined Unwind@0042d192(void) 25 1 +0042d1c6 Unwind@0042d1c6 undefined Unwind@0042d1c6(void) 8 1 +0042d1e9 Unwind@0042d1e9 undefined Unwind@0042d1e9(void) 8 1 +0042d20c Unwind@0042d20c undefined Unwind@0042d20c(void) 8 1 +0042d22f Unwind@0042d22f undefined Unwind@0042d22f(void) 8 1 +0042d252 Unwind@0042d252 undefined Unwind@0042d252(void) 8 1 +0042d275 Unwind@0042d275 undefined Unwind@0042d275(void) 8 1 +0042d298 Unwind@0042d298 undefined Unwind@0042d298(void) 8 1 +0042d2bb Unwind@0042d2bb undefined Unwind@0042d2bb(void) 8 1 +0042d2de Unwind@0042d2de undefined Unwind@0042d2de(void) 8 1 +0042d301 Unwind@0042d301 undefined Unwind@0042d301(void) 8 1 +0042d324 Unwind@0042d324 undefined Unwind@0042d324(void) 8 1 +0042d37d Unwind@0042d37d undefined Unwind@0042d37d(void) 8 1 +0042d385 Unwind@0042d385 undefined Unwind@0042d385(void) 25 1 +0042d3b9 Unwind@0042d3b9 undefined Unwind@0042d3b9(void) 8 1 +0042d3c1 Unwind@0042d3c1 undefined Unwind@0042d3c1(void) 8 1 +0042d3c9 Unwind@0042d3c9 undefined Unwind@0042d3c9(void) 8 1 +0042d3ec Unwind@0042d3ec undefined Unwind@0042d3ec(void) 8 1 +0042d3f4 Unwind@0042d3f4 undefined Unwind@0042d3f4(void) 8 1 +0042d3fc Unwind@0042d3fc undefined Unwind@0042d3fc(void) 8 1 +0042d404 Unwind@0042d404 undefined Unwind@0042d404(void) 8 1 +0042d427 Unwind@0042d427 undefined Unwind@0042d427(void) 8 1 +0042d42f Unwind@0042d42f undefined Unwind@0042d42f(void) 25 1 +0042d463 Unwind@0042d463 undefined Unwind@0042d463(void) 8 1 +0042d46b Unwind@0042d46b undefined Unwind@0042d46b(void) 8 1 +0042d473 Unwind@0042d473 undefined Unwind@0042d473(void) 8 1 +0042d47b Unwind@0042d47b undefined Unwind@0042d47b(void) 8 1 +0042d49e Unwind@0042d49e undefined Unwind@0042d49e(void) 8 1 +0042d4c1 Unwind@0042d4c1 undefined Unwind@0042d4c1(void) 8 1 +0042d4e4 Unwind@0042d4e4 undefined Unwind@0042d4e4(void) 11 1 +0042d50a Unwind@0042d50a undefined Unwind@0042d50a(void) 11 1 +0042d515 Unwind@0042d515 undefined Unwind@0042d515(void) 11 1 +0042d53b Unwind@0042d53b undefined Unwind@0042d53b(void) 11 1 +0042d546 Unwind@0042d546 undefined Unwind@0042d546(void) 11 1 +0042d56c Unwind@0042d56c undefined Unwind@0042d56c(void) 11 1 +0042d577 Unwind@0042d577 undefined Unwind@0042d577(void) 11 1 +0042d59d Unwind@0042d59d undefined Unwind@0042d59d(void) 11 1 +0042d5c3 Unwind@0042d5c3 undefined Unwind@0042d5c3(void) 11 1 +0042d604 Unwind@0042d604 undefined Unwind@0042d604(void) 14 1 +0042d62d Unwind@0042d62d undefined Unwind@0042d62d(void) 14 1 +0042d656 Unwind@0042d656 undefined Unwind@0042d656(void) 14 1 +0042d67f Unwind@0042d67f undefined Unwind@0042d67f(void) 11 1 +0042d6a5 Unwind@0042d6a5 undefined Unwind@0042d6a5(void) 11 1 +0042d6cb Unwind@0042d6cb undefined Unwind@0042d6cb(void) 11 1 +0042d6f1 Unwind@0042d6f1 undefined Unwind@0042d6f1(void) 8 1 +0042d6f9 Unwind@0042d6f9 undefined Unwind@0042d6f9(void) 8 1 +0042d701 Unwind@0042d701 undefined Unwind@0042d701(void) 8 1 +0042d709 Unwind@0042d709 undefined Unwind@0042d709(void) 8 1 +0042d736 Unwind@0042d736 undefined Unwind@0042d736(void) 8 1 +0042d759 Unwind@0042d759 undefined Unwind@0042d759(void) 8 1 +0042d77c Unwind@0042d77c undefined Unwind@0042d77c(void) 8 1 +0042d79f Unwind@0042d79f undefined Unwind@0042d79f(void) 8 1 +0042d7c2 Unwind@0042d7c2 undefined Unwind@0042d7c2(void) 8 1 +0042d887 Unwind@0042d887 undefined Unwind@0042d887(void) 8 1 +0042d8aa Unwind@0042d8aa undefined Unwind@0042d8aa(void) 8 1 +0042d8cd Unwind@0042d8cd undefined Unwind@0042d8cd(void) 14 1 +0042d8f6 Unwind@0042d8f6 undefined Unwind@0042d8f6(void) 8 1 +0042d919 Unwind@0042d919 undefined Unwind@0042d919(void) 8 1 +0042d93c Unwind@0042d93c undefined Unwind@0042d93c(void) 8 1 +0042d95f Unwind@0042d95f undefined Unwind@0042d95f(void) 8 1 +0042d982 Unwind@0042d982 undefined Unwind@0042d982(void) 8 1 +0042d9c0 Unwind@0042d9c0 undefined Unwind@0042d9c0(void) 8 1 +0042d9e3 Unwind@0042d9e3 undefined Unwind@0042d9e3(void) 8 1 +0042da06 Unwind@0042da06 undefined Unwind@0042da06(void) 8 1 +0042da29 Unwind@0042da29 undefined Unwind@0042da29(void) 8 1 +0042da4c Unwind@0042da4c undefined Unwind@0042da4c(void) 8 1 +0042da6f Unwind@0042da6f undefined Unwind@0042da6f(void) 8 1 +0042daad Unwind@0042daad undefined Unwind@0042daad(void) 8 1 +0042dab5 Unwind@0042dab5 undefined Unwind@0042dab5(void) 25 1 +0042dae9 Unwind@0042dae9 undefined Unwind@0042dae9(void) 8 1 +0042daf1 Unwind@0042daf1 undefined Unwind@0042daf1(void) 25 1 +0042db25 Unwind@0042db25 undefined Unwind@0042db25(void) 8 1 +0042db99 Unwind@0042db99 undefined Unwind@0042db99(void) 8 1 +0042dbbc Unwind@0042dbbc undefined Unwind@0042dbbc(void) 8 1 +0042dbfa Unwind@0042dbfa undefined Unwind@0042dbfa(void) 14 1 +0042dc23 Unwind@0042dc23 undefined Unwind@0042dc23(void) 14 1 +0042dc4c Unwind@0042dc4c undefined Unwind@0042dc4c(void) 14 1 +0042dc75 Unwind@0042dc75 undefined Unwind@0042dc75(void) 8 1 +0042dc98 Unwind@0042dc98 undefined Unwind@0042dc98(void) 8 1 +0042dcbb Unwind@0042dcbb undefined Unwind@0042dcbb(void) 8 1 +0042dcde Unwind@0042dcde undefined Unwind@0042dcde(void) 8 1 +0042dd01 Unwind@0042dd01 undefined Unwind@0042dd01(void) 8 1 +0042dd09 Unwind@0042dd09 undefined Unwind@0042dd09(void) 8 1 +0042dd2c Unwind@0042dd2c undefined Unwind@0042dd2c(void) 8 1 +0042dd34 Unwind@0042dd34 undefined Unwind@0042dd34(void) 8 1 +0042dd57 Unwind@0042dd57 undefined Unwind@0042dd57(void) 8 1 +0042dd5f Unwind@0042dd5f undefined Unwind@0042dd5f(void) 8 1 +0042dd82 Unwind@0042dd82 undefined Unwind@0042dd82(void) 8 1 +0042dd8a Unwind@0042dd8a undefined Unwind@0042dd8a(void) 8 1 +0042dde3 Unwind@0042dde3 undefined Unwind@0042dde3(void) 8 1 +0042de06 Unwind@0042de06 undefined Unwind@0042de06(void) 8 1 +0042de29 Unwind@0042de29 undefined Unwind@0042de29(void) 8 1 +0042de4c Unwind@0042de4c undefined Unwind@0042de4c(void) 11 1 +0042de57 Unwind@0042de57 undefined Unwind@0042de57(void) 11 1 +0042de62 Unwind@0042de62 undefined Unwind@0042de62(void) 11 1 +0042de6d Unwind@0042de6d undefined Unwind@0042de6d(void) 14 1 +0042de7b Unwind@0042de7b undefined Unwind@0042de7b(void) 14 1 +0042de89 Unwind@0042de89 undefined Unwind@0042de89(void) 14 1 +0042debc Unwind@0042debc undefined Unwind@0042debc(void) 11 1 +0042dec7 Unwind@0042dec7 undefined Unwind@0042dec7(void) 11 1 +0042ded2 Unwind@0042ded2 undefined Unwind@0042ded2(void) 11 1 +0042dedd Unwind@0042dedd undefined Unwind@0042dedd(void) 14 1 +0042deeb Unwind@0042deeb undefined Unwind@0042deeb(void) 14 1 +0042def9 Unwind@0042def9 undefined Unwind@0042def9(void) 14 1 +0042df07 Unwind@0042df07 undefined Unwind@0042df07(void) 8 1 +0042df0f Unwind@0042df0f undefined Unwind@0042df0f(void) 8 1 +0042df32 Unwind@0042df32 undefined Unwind@0042df32(void) 8 1 +0042df8b Unwind@0042df8b undefined Unwind@0042df8b(void) 8 1 +0042dfae Unwind@0042dfae undefined Unwind@0042dfae(void) 8 1 +0042dfd1 Unwind@0042dfd1 undefined Unwind@0042dfd1(void) 8 1 +0042dff4 Unwind@0042dff4 undefined Unwind@0042dff4(void) 8 1 +0042dffc Unwind@0042dffc undefined Unwind@0042dffc(void) 8 1 +0042e055 Unwind@0042e055 undefined Unwind@0042e055(void) 8 1 +0042e078 Unwind@0042e078 undefined Unwind@0042e078(void) 14 1 +0042e086 Unwind@0042e086 undefined Unwind@0042e086(void) 14 1 +0042e094 Unwind@0042e094 undefined Unwind@0042e094(void) 14 1 +0042e0a2 Unwind@0042e0a2 undefined Unwind@0042e0a2(void) 11 1 +0042e0d5 Unwind@0042e0d5 undefined Unwind@0042e0d5(void) 8 1 +0042e0dd Unwind@0042e0dd undefined Unwind@0042e0dd(void) 8 1 +0042e0e5 Unwind@0042e0e5 undefined Unwind@0042e0e5(void) 8 1 +0042e0ed Unwind@0042e0ed undefined Unwind@0042e0ed(void) 8 1 +0042e110 Unwind@0042e110 undefined Unwind@0042e110(void) 8 1 +0042e118 Unwind@0042e118 undefined Unwind@0042e118(void) 8 1 +0042e120 Unwind@0042e120 undefined Unwind@0042e120(void) 8 1 +0042e128 Unwind@0042e128 undefined Unwind@0042e128(void) 8 1 +0042e14b Unwind@0042e14b undefined Unwind@0042e14b(void) 8 1 +0042e16e Unwind@0042e16e undefined Unwind@0042e16e(void) 8 1 +0042e176 Unwind@0042e176 undefined Unwind@0042e176(void) 8 1 +0042e1b4 Unwind@0042e1b4 undefined Unwind@0042e1b4(void) 8 1 +0042e1d7 Unwind@0042e1d7 undefined Unwind@0042e1d7(void) 8 1 +0042e1fa Unwind@0042e1fa undefined Unwind@0042e1fa(void) 8 1 +0042e21d Unwind@0042e21d undefined Unwind@0042e21d(void) 8 1 +0042e25b Unwind@0042e25b undefined Unwind@0042e25b(void) 8 1 +0042e27e Unwind@0042e27e undefined Unwind@0042e27e(void) 8 1 +0042e2a1 Unwind@0042e2a1 undefined Unwind@0042e2a1(void) 8 1 +0042e2c4 Unwind@0042e2c4 undefined Unwind@0042e2c4(void) 8 1 +0042e2cc Unwind@0042e2cc undefined Unwind@0042e2cc(void) 8 1 +0042e2ef Unwind@0042e2ef undefined Unwind@0042e2ef(void) 8 1 +0042e32d Unwind@0042e32d undefined Unwind@0042e32d(void) 8 1 +0042e335 Unwind@0042e335 undefined Unwind@0042e335(void) 8 1 +0042e33d Unwind@0042e33d undefined Unwind@0042e33d(void) 11 1 +0042e348 Unwind@0042e348 undefined Unwind@0042e348(void) 11 1 +0042e353 Unwind@0042e353 undefined Unwind@0042e353(void) 8 1 +0042e35b Unwind@0042e35b undefined Unwind@0042e35b(void) 8 1 +0042e363 Unwind@0042e363 undefined Unwind@0042e363(void) 8 1 +0042e36b Unwind@0042e36b undefined Unwind@0042e36b(void) 8 1 +0042e373 Unwind@0042e373 undefined Unwind@0042e373(void) 8 1 +0042e37b Unwind@0042e37b undefined Unwind@0042e37b(void) 11 1 +0042e386 Unwind@0042e386 undefined Unwind@0042e386(void) 11 1 +0042e391 Unwind@0042e391 undefined Unwind@0042e391(void) 8 1 +0042e399 Unwind@0042e399 undefined Unwind@0042e399(void) 8 1 +0042e3a1 Unwind@0042e3a1 undefined Unwind@0042e3a1(void) 8 1 +0042e3c7 Unwind@0042e3c7 undefined Unwind@0042e3c7(void) 8 1 +0042e3ea Unwind@0042e3ea undefined Unwind@0042e3ea(void) 8 1 +0042e40d Unwind@0042e40d undefined Unwind@0042e40d(void) 8 1 +0042e415 Unwind@0042e415 undefined Unwind@0042e415(void) 8 1 +0042e41d Unwind@0042e41d undefined Unwind@0042e41d(void) 8 1 +0042e425 Unwind@0042e425 undefined Unwind@0042e425(void) 8 1 +0042e42d Unwind@0042e42d undefined Unwind@0042e42d(void) 8 1 +0042e450 Unwind@0042e450 undefined Unwind@0042e450(void) 8 1 +0042e458 Unwind@0042e458 undefined Unwind@0042e458(void) 8 1 +0042e460 Unwind@0042e460 undefined Unwind@0042e460(void) 8 1 +0042e468 Unwind@0042e468 undefined Unwind@0042e468(void) 8 1 +0042e470 Unwind@0042e470 undefined Unwind@0042e470(void) 8 1 +0042e478 Unwind@0042e478 undefined Unwind@0042e478(void) 8 1 +0042e480 Unwind@0042e480 undefined Unwind@0042e480(void) 8 1 +0042e488 Unwind@0042e488 undefined Unwind@0042e488(void) 8 1 +0042e490 Unwind@0042e490 undefined Unwind@0042e490(void) 8 1 +0042e498 Unwind@0042e498 undefined Unwind@0042e498(void) 8 1 +0042e4bb Unwind@0042e4bb undefined Unwind@0042e4bb(void) 8 1 +0042e4c3 Unwind@0042e4c3 undefined Unwind@0042e4c3(void) 8 1 +0042e4cb Unwind@0042e4cb undefined Unwind@0042e4cb(void) 8 1 +0042e4d3 Unwind@0042e4d3 undefined Unwind@0042e4d3(void) 8 1 +0042e4db Unwind@0042e4db undefined Unwind@0042e4db(void) 8 1 +0042e4e3 Unwind@0042e4e3 undefined Unwind@0042e4e3(void) 8 1 +0042e4eb Unwind@0042e4eb undefined Unwind@0042e4eb(void) 8 1 +0042e4f3 Unwind@0042e4f3 undefined Unwind@0042e4f3(void) 8 1 +0042e4fb Unwind@0042e4fb undefined Unwind@0042e4fb(void) 8 1 +0042e503 Unwind@0042e503 undefined Unwind@0042e503(void) 8 1 +0042e526 Unwind@0042e526 undefined Unwind@0042e526(void) 8 1 +0042e52e Unwind@0042e52e undefined Unwind@0042e52e(void) 8 1 +0042e536 Unwind@0042e536 undefined Unwind@0042e536(void) 8 1 +0042e53e Unwind@0042e53e undefined Unwind@0042e53e(void) 8 1 +0042e546 Unwind@0042e546 undefined Unwind@0042e546(void) 8 1 +0042e54e Unwind@0042e54e undefined Unwind@0042e54e(void) 8 1 +0042e556 Unwind@0042e556 undefined Unwind@0042e556(void) 8 1 +0042e583 Unwind@0042e583 undefined Unwind@0042e583(void) 8 1 +0042e58b Unwind@0042e58b undefined Unwind@0042e58b(void) 8 1 +0042e593 Unwind@0042e593 undefined Unwind@0042e593(void) 8 1 +0042e59b Unwind@0042e59b undefined Unwind@0042e59b(void) 8 1 +0042e5a3 Unwind@0042e5a3 undefined Unwind@0042e5a3(void) 8 1 +0042e5ab Unwind@0042e5ab undefined Unwind@0042e5ab(void) 8 1 +0042e5b3 Unwind@0042e5b3 undefined Unwind@0042e5b3(void) 8 1 +0042e5d6 Unwind@0042e5d6 undefined Unwind@0042e5d6(void) 8 1 +0042e5f9 Unwind@0042e5f9 undefined Unwind@0042e5f9(void) 8 1 +0042e601 Unwind@0042e601 undefined Unwind@0042e601(void) 8 1 +0042e609 Unwind@0042e609 undefined Unwind@0042e609(void) 8 1 +0042e611 Unwind@0042e611 undefined Unwind@0042e611(void) 8 1 +0042e619 Unwind@0042e619 undefined Unwind@0042e619(void) 8 1 +0042e621 Unwind@0042e621 undefined Unwind@0042e621(void) 8 1 +0042e629 Unwind@0042e629 undefined Unwind@0042e629(void) 8 1 +0042e631 Unwind@0042e631 undefined Unwind@0042e631(void) 8 1 +0042e639 Unwind@0042e639 undefined Unwind@0042e639(void) 8 1 +0042e65c Unwind@0042e65c undefined Unwind@0042e65c(void) 8 1 +0042e664 Unwind@0042e664 undefined Unwind@0042e664(void) 8 1 +0042e66c Unwind@0042e66c undefined Unwind@0042e66c(void) 8 1 +0042e674 Unwind@0042e674 undefined Unwind@0042e674(void) 8 1 +0042e67c Unwind@0042e67c undefined Unwind@0042e67c(void) 8 1 +0042e684 Unwind@0042e684 undefined Unwind@0042e684(void) 8 1 +0042e68c Unwind@0042e68c undefined Unwind@0042e68c(void) 8 1 +0042e6af Unwind@0042e6af undefined Unwind@0042e6af(void) 8 1 +0042e6d2 Unwind@0042e6d2 undefined Unwind@0042e6d2(void) 8 1 +0042e6f5 Unwind@0042e6f5 undefined Unwind@0042e6f5(void) 8 1 +0042e718 Unwind@0042e718 undefined Unwind@0042e718(void) 8 1 +0042e73b Unwind@0042e73b undefined Unwind@0042e73b(void) 8 1 +0042e75e Unwind@0042e75e undefined Unwind@0042e75e(void) 8 1 +0042e781 Unwind@0042e781 undefined Unwind@0042e781(void) 8 1 +0042e789 Unwind@0042e789 undefined Unwind@0042e789(void) 8 1 +0042e791 Unwind@0042e791 undefined Unwind@0042e791(void) 10 1 +0042e79b Unwind@0042e79b undefined Unwind@0042e79b(void) 8 1 +0042e7a3 Unwind@0042e7a3 undefined Unwind@0042e7a3(void) 8 1 +0042e7ab Unwind@0042e7ab undefined Unwind@0042e7ab(void) 8 1 +0042e7b3 Unwind@0042e7b3 undefined Unwind@0042e7b3(void) 8 1 +0042e7e0 Unwind@0042e7e0 undefined Unwind@0042e7e0(void) 8 1 +0042e7e8 Unwind@0042e7e8 undefined Unwind@0042e7e8(void) 8 1 +0042e7f0 Unwind@0042e7f0 undefined Unwind@0042e7f0(void) 8 1 +0042e7f8 Unwind@0042e7f8 undefined Unwind@0042e7f8(void) 8 1 +0042e800 Unwind@0042e800 undefined Unwind@0042e800(void) 8 1 +0042e808 Unwind@0042e808 undefined Unwind@0042e808(void) 8 1 +0042e810 Unwind@0042e810 undefined Unwind@0042e810(void) 11 1 +0042e81b Unwind@0042e81b undefined Unwind@0042e81b(void) 11 1 +0042e844 Unwind@0042e844 undefined Unwind@0042e844(void) 8 1 +0042e867 Unwind@0042e867 undefined Unwind@0042e867(void) 8 1 +0042e88a Unwind@0042e88a undefined Unwind@0042e88a(void) 8 1 +0042e892 Unwind@0042e892 undefined Unwind@0042e892(void) 8 1 +0042e8b5 Unwind@0042e8b5 undefined Unwind@0042e8b5(void) 8 1 +0042e8bd Unwind@0042e8bd undefined Unwind@0042e8bd(void) 8 1 +0042e8e0 Unwind@0042e8e0 undefined Unwind@0042e8e0(void) 11 1 +0042e8eb Unwind@0042e8eb undefined Unwind@0042e8eb(void) 11 1 +0042e8f6 Unwind@0042e8f6 undefined Unwind@0042e8f6(void) 8 1 +0042e8fe Unwind@0042e8fe undefined Unwind@0042e8fe(void) 11 1 +0042e909 Unwind@0042e909 undefined Unwind@0042e909(void) 8 1 +0042e911 Unwind@0042e911 undefined Unwind@0042e911(void) 11 1 +0042e91c Unwind@0042e91c undefined Unwind@0042e91c(void) 14 1 +0042e92a Unwind@0042e92a undefined Unwind@0042e92a(void) 8 1 +0042e932 Unwind@0042e932 undefined Unwind@0042e932(void) 14 1 +0042e95b Unwind@0042e95b undefined Unwind@0042e95b(void) 14 1 +0042e984 Unwind@0042e984 undefined Unwind@0042e984(void) 11 1 +0042e98f Unwind@0042e98f undefined Unwind@0042e98f(void) 11 1 +0042e99a Unwind@0042e99a undefined Unwind@0042e99a(void) 11 1 +0042e9a5 Unwind@0042e9a5 undefined Unwind@0042e9a5(void) 11 1 +0042e9b0 Unwind@0042e9b0 undefined Unwind@0042e9b0(void) 14 1 +0042e9be Unwind@0042e9be undefined Unwind@0042e9be(void) 14 1 +0042e9e7 Unwind@0042e9e7 undefined Unwind@0042e9e7(void) 11 1 +0042e9f2 Unwind@0042e9f2 undefined Unwind@0042e9f2(void) 11 1 +0042e9fd Unwind@0042e9fd undefined Unwind@0042e9fd(void) 11 1 +0042ea08 Unwind@0042ea08 undefined Unwind@0042ea08(void) 11 1 +0042ea13 Unwind@0042ea13 undefined Unwind@0042ea13(void) 14 1 +0042ea21 Unwind@0042ea21 undefined Unwind@0042ea21(void) 14 1 +0042ea4a Unwind@0042ea4a undefined Unwind@0042ea4a(void) 11 1 +0042ea55 Unwind@0042ea55 undefined Unwind@0042ea55(void) 11 1 +0042ea60 Unwind@0042ea60 undefined Unwind@0042ea60(void) 11 1 +0042ea6b Unwind@0042ea6b undefined Unwind@0042ea6b(void) 11 1 +0042ea76 Unwind@0042ea76 undefined Unwind@0042ea76(void) 14 1 +0042ea84 Unwind@0042ea84 undefined Unwind@0042ea84(void) 14 1 +0042ea92 Unwind@0042ea92 undefined Unwind@0042ea92(void) 8 1 +0042ea9a Unwind@0042ea9a undefined Unwind@0042ea9a(void) 8 1 +0042eaa2 Unwind@0042eaa2 undefined Unwind@0042eaa2(void) 8 1 +0042eac5 Unwind@0042eac5 undefined Unwind@0042eac5(void) 8 1 +0042eacd Unwind@0042eacd undefined Unwind@0042eacd(void) 8 1 +0042ead5 Unwind@0042ead5 undefined Unwind@0042ead5(void) 8 1 +0042eadd Unwind@0042eadd undefined Unwind@0042eadd(void) 8 1 +0042eae5 Unwind@0042eae5 undefined Unwind@0042eae5(void) 11 1 +0042eaf0 Unwind@0042eaf0 undefined Unwind@0042eaf0(void) 8 1 +0042eaf8 Unwind@0042eaf8 undefined Unwind@0042eaf8(void) 8 1 +0042eb00 Unwind@0042eb00 undefined Unwind@0042eb00(void) 8 1 +0042eb08 Unwind@0042eb08 undefined Unwind@0042eb08(void) 8 1 +0042eb10 Unwind@0042eb10 undefined Unwind@0042eb10(void) 8 1 +0042eb18 Unwind@0042eb18 undefined Unwind@0042eb18(void) 8 1 +0042eb20 Unwind@0042eb20 undefined Unwind@0042eb20(void) 11 1 +0042eb2b Unwind@0042eb2b undefined Unwind@0042eb2b(void) 8 1 +0042eb33 Unwind@0042eb33 undefined Unwind@0042eb33(void) 11 1 +0042eb3e Unwind@0042eb3e undefined Unwind@0042eb3e(void) 11 1 +0042eb49 Unwind@0042eb49 undefined Unwind@0042eb49(void) 8 1 +0042eb51 Unwind@0042eb51 undefined Unwind@0042eb51(void) 8 1 +0042eb77 Unwind@0042eb77 undefined Unwind@0042eb77(void) 14 1 +0042eba0 Unwind@0042eba0 undefined Unwind@0042eba0(void) 11 1 +0042ebc6 Unwind@0042ebc6 undefined Unwind@0042ebc6(void) 8 1 +0042ebce Unwind@0042ebce undefined Unwind@0042ebce(void) 8 1 +0042ebd6 Unwind@0042ebd6 undefined Unwind@0042ebd6(void) 8 1 +0042ebde Unwind@0042ebde undefined Unwind@0042ebde(void) 8 1 +0042ebe6 Unwind@0042ebe6 undefined Unwind@0042ebe6(void) 8 1 +0042ebee Unwind@0042ebee undefined Unwind@0042ebee(void) 8 1 +0042ebf6 Unwind@0042ebf6 undefined Unwind@0042ebf6(void) 8 1 +0042ebfe Unwind@0042ebfe undefined Unwind@0042ebfe(void) 8 1 +0042ec06 Unwind@0042ec06 undefined Unwind@0042ec06(void) 8 1 +0042ec29 Unwind@0042ec29 undefined Unwind@0042ec29(void) 11 1 +0042ec6a Unwind@0042ec6a undefined Unwind@0042ec6a(void) 11 1 +0042ecab Unwind@0042ecab undefined Unwind@0042ecab(void) 11 1 +0042ecd1 Unwind@0042ecd1 undefined Unwind@0042ecd1(void) 11 1 +0042ecf7 Unwind@0042ecf7 undefined Unwind@0042ecf7(void) 11 1 +0042ed02 Unwind@0042ed02 undefined Unwind@0042ed02(void) 8 1 +0042ed28 Unwind@0042ed28 undefined Unwind@0042ed28(void) 11 1 +0042ed33 Unwind@0042ed33 undefined Unwind@0042ed33(void) 8 1 +0042ed3b Unwind@0042ed3b undefined Unwind@0042ed3b(void) 8 1 +0042ed43 Unwind@0042ed43 undefined Unwind@0042ed43(void) 8 1 +0042ed4b Unwind@0042ed4b undefined Unwind@0042ed4b(void) 8 1 +0042ed53 Unwind@0042ed53 undefined Unwind@0042ed53(void) 8 1 +0042ed5b Unwind@0042ed5b undefined Unwind@0042ed5b(void) 8 1 +0042ed63 Unwind@0042ed63 undefined Unwind@0042ed63(void) 8 1 +0042ed6b Unwind@0042ed6b undefined Unwind@0042ed6b(void) 8 1 +0042ed73 Unwind@0042ed73 undefined Unwind@0042ed73(void) 8 1 +0042ed7b Unwind@0042ed7b undefined Unwind@0042ed7b(void) 8 1 +0042ed83 Unwind@0042ed83 undefined Unwind@0042ed83(void) 8 1 +0042ed8b Unwind@0042ed8b undefined Unwind@0042ed8b(void) 8 1 +0042ed93 Unwind@0042ed93 undefined Unwind@0042ed93(void) 8 1 +0042ed9b Unwind@0042ed9b undefined Unwind@0042ed9b(void) 8 1 +0042eda3 Unwind@0042eda3 undefined Unwind@0042eda3(void) 8 1 +0042edd3 Unwind@0042edd3 undefined Unwind@0042edd3(void) 8 1 +0042eddb Unwind@0042eddb undefined Unwind@0042eddb(void) 8 1 +0042ede3 Unwind@0042ede3 undefined Unwind@0042ede3(void) 8 1 +0042edeb Unwind@0042edeb undefined Unwind@0042edeb(void) 8 1 +0042edf3 Unwind@0042edf3 undefined Unwind@0042edf3(void) 8 1 +0042edfb Unwind@0042edfb undefined Unwind@0042edfb(void) 8 1 +0042ee03 Unwind@0042ee03 undefined Unwind@0042ee03(void) 8 1 +0042ee30 Unwind@0042ee30 undefined Unwind@0042ee30(void) 11 1 +0042ee3b Unwind@0042ee3b undefined Unwind@0042ee3b(void) 8 1 +0042ee43 Unwind@0042ee43 undefined Unwind@0042ee43(void) 8 1 +0042ee4b Unwind@0042ee4b undefined Unwind@0042ee4b(void) 8 1 +0042ee53 Unwind@0042ee53 undefined Unwind@0042ee53(void) 8 1 +0042ee5b Unwind@0042ee5b undefined Unwind@0042ee5b(void) 8 1 +0042ee63 Unwind@0042ee63 undefined Unwind@0042ee63(void) 8 1 +0042ee93 Unwind@0042ee93 undefined Unwind@0042ee93(void) 8 1 +0042ee9b Unwind@0042ee9b undefined Unwind@0042ee9b(void) 8 1 +0042eea3 Unwind@0042eea3 undefined Unwind@0042eea3(void) 8 1 +0042eeab Unwind@0042eeab undefined Unwind@0042eeab(void) 8 1 +0042eeb3 Unwind@0042eeb3 undefined Unwind@0042eeb3(void) 8 1 +0042eebb Unwind@0042eebb undefined Unwind@0042eebb(void) 8 1 +0042eec3 Unwind@0042eec3 undefined Unwind@0042eec3(void) 8 1 +0042eecb Unwind@0042eecb undefined Unwind@0042eecb(void) 8 1 +0042eeee Unwind@0042eeee undefined Unwind@0042eeee(void) 8 1 +0042eef6 Unwind@0042eef6 undefined Unwind@0042eef6(void) 8 1 +0042eefe Unwind@0042eefe undefined Unwind@0042eefe(void) 8 1 +0042ef06 Unwind@0042ef06 undefined Unwind@0042ef06(void) 11 1 +0042ef11 Unwind@0042ef11 undefined Unwind@0042ef11(void) 8 1 +0042ef19 Unwind@0042ef19 undefined Unwind@0042ef19(void) 8 1 +0042ef21 Unwind@0042ef21 undefined Unwind@0042ef21(void) 8 1 +0042ef29 Unwind@0042ef29 undefined Unwind@0042ef29(void) 8 1 +0042ef31 Unwind@0042ef31 undefined Unwind@0042ef31(void) 8 1 +0042ef39 Unwind@0042ef39 undefined Unwind@0042ef39(void) 8 1 +0042ef41 Unwind@0042ef41 undefined Unwind@0042ef41(void) 8 1 +0042ef67 Unwind@0042ef67 undefined Unwind@0042ef67(void) 8 1 +0042ef6f Unwind@0042ef6f undefined Unwind@0042ef6f(void) 11 1 +0042ef98 Unwind@0042ef98 undefined Unwind@0042ef98(void) 8 1 +0042efbb Unwind@0042efbb undefined Unwind@0042efbb(void) 11 1 +0042efc6 Unwind@0042efc6 undefined Unwind@0042efc6(void) 11 1 +0042efd1 Unwind@0042efd1 undefined Unwind@0042efd1(void) 14 1 +0042efdf Unwind@0042efdf undefined Unwind@0042efdf(void) 14 1 +0042efed Unwind@0042efed undefined Unwind@0042efed(void) 14 1 +0042effb Unwind@0042effb undefined Unwind@0042effb(void) 14 1 +0042f009 Unwind@0042f009 undefined Unwind@0042f009(void) 14 1 +0042f017 Unwind@0042f017 undefined Unwind@0042f017(void) 8 1 +0042f01f Unwind@0042f01f undefined Unwind@0042f01f(void) 14 1 +0042f02d Unwind@0042f02d undefined Unwind@0042f02d(void) 8 1 +0042f035 Unwind@0042f035 undefined Unwind@0042f035(void) 8 1 +0042f03d Unwind@0042f03d undefined Unwind@0042f03d(void) 14 1 +0042f04b Unwind@0042f04b undefined Unwind@0042f04b(void) 8 1 +0042f053 Unwind@0042f053 undefined Unwind@0042f053(void) 14 1 +0042f061 Unwind@0042f061 undefined Unwind@0042f061(void) 8 1 +0042f069 Unwind@0042f069 undefined Unwind@0042f069(void) 8 1 +0042f071 Unwind@0042f071 undefined Unwind@0042f071(void) 14 1 +0042f07f Unwind@0042f07f undefined Unwind@0042f07f(void) 8 1 +0042f087 Unwind@0042f087 undefined Unwind@0042f087(void) 8 1 +0042f08f Unwind@0042f08f undefined Unwind@0042f08f(void) 14 1 +0042f09d Unwind@0042f09d undefined Unwind@0042f09d(void) 8 1 +0042f0a5 Unwind@0042f0a5 undefined Unwind@0042f0a5(void) 14 1 +0042f0b3 Unwind@0042f0b3 undefined Unwind@0042f0b3(void) 8 1 +0042f0bb Unwind@0042f0bb undefined Unwind@0042f0bb(void) 14 1 +0042f0c9 Unwind@0042f0c9 undefined Unwind@0042f0c9(void) 14 1 +0042f0d7 Unwind@0042f0d7 undefined Unwind@0042f0d7(void) 14 1 +0042f0e5 Unwind@0042f0e5 undefined Unwind@0042f0e5(void) 14 1 +0042f0f3 Unwind@0042f0f3 undefined Unwind@0042f0f3(void) 14 1 +0042f11c Unwind@0042f11c undefined Unwind@0042f11c(void) 11 1 +0042f127 Unwind@0042f127 undefined Unwind@0042f127(void) 11 1 +0042f132 Unwind@0042f132 undefined Unwind@0042f132(void) 14 1 +0042f140 Unwind@0042f140 undefined Unwind@0042f140(void) 14 1 +0042f14e Unwind@0042f14e undefined Unwind@0042f14e(void) 14 1 +0042f15c Unwind@0042f15c undefined Unwind@0042f15c(void) 14 1 +0042f16a Unwind@0042f16a undefined Unwind@0042f16a(void) 14 1 +0042f178 Unwind@0042f178 undefined Unwind@0042f178(void) 14 1 +0042f186 Unwind@0042f186 undefined Unwind@0042f186(void) 14 1 +0042f194 Unwind@0042f194 undefined Unwind@0042f194(void) 14 1 +0042f1a2 Unwind@0042f1a2 undefined Unwind@0042f1a2(void) 14 1 +0042f1b0 Unwind@0042f1b0 undefined Unwind@0042f1b0(void) 14 1 +0042f1be Unwind@0042f1be undefined Unwind@0042f1be(void) 14 1 +0042f1cc Unwind@0042f1cc undefined Unwind@0042f1cc(void) 14 1 +0042f1da Unwind@0042f1da undefined Unwind@0042f1da(void) 14 1 +0042f1e8 Unwind@0042f1e8 undefined Unwind@0042f1e8(void) 14 1 +0042f1f6 Unwind@0042f1f6 undefined Unwind@0042f1f6(void) 14 1 +0042f204 Unwind@0042f204 undefined Unwind@0042f204(void) 14 1 +0042f212 Unwind@0042f212 undefined Unwind@0042f212(void) 8 1 +0042f21a Unwind@0042f21a undefined Unwind@0042f21a(void) 8 1 +0042f222 Unwind@0042f222 undefined Unwind@0042f222(void) 8 1 +0042f22a Unwind@0042f22a undefined Unwind@0042f22a(void) 8 1 +0042f232 Unwind@0042f232 undefined Unwind@0042f232(void) 8 1 +0042f23a Unwind@0042f23a undefined Unwind@0042f23a(void) 8 1 +0042f242 Unwind@0042f242 undefined Unwind@0042f242(void) 8 1 +0042f24a Unwind@0042f24a undefined Unwind@0042f24a(void) 8 1 +0042f252 Unwind@0042f252 undefined Unwind@0042f252(void) 8 1 +0042f25a Unwind@0042f25a undefined Unwind@0042f25a(void) 8 1 +0042f262 Unwind@0042f262 undefined Unwind@0042f262(void) 8 1 +0042f26a Unwind@0042f26a undefined Unwind@0042f26a(void) 8 1 +0042f272 Unwind@0042f272 undefined Unwind@0042f272(void) 8 1 +0042f295 Unwind@0042f295 undefined Unwind@0042f295(void) 11 1 +0042f2a0 Unwind@0042f2a0 undefined Unwind@0042f2a0(void) 11 1 +0042f2ab Unwind@0042f2ab undefined Unwind@0042f2ab(void) 13 1 +0042f2b8 Unwind@0042f2b8 undefined Unwind@0042f2b8(void) 11 1 +0042f2c3 Unwind@0042f2c3 undefined Unwind@0042f2c3(void) 11 1 +0042f2ce Unwind@0042f2ce undefined Unwind@0042f2ce(void) 11 1 +0042f2d9 Unwind@0042f2d9 undefined Unwind@0042f2d9(void) 11 1 +0042f30c Unwind@0042f30c undefined Unwind@0042f30c(void) 10 1 +0042f316 Unwind@0042f316 undefined Unwind@0042f316(void) 8 1 +0042f31e Unwind@0042f31e undefined Unwind@0042f31e(void) 8 1 +0042f34b Unwind@0042f34b undefined Unwind@0042f34b(void) 8 1 +0042f353 Unwind@0042f353 undefined Unwind@0042f353(void) 8 1 +0042f35b Unwind@0042f35b undefined Unwind@0042f35b(void) 8 1 +0042f363 Unwind@0042f363 undefined Unwind@0042f363(void) 8 1 +0042f36b Unwind@0042f36b undefined Unwind@0042f36b(void) 8 1 +0042f38e Unwind@0042f38e undefined Unwind@0042f38e(void) 8 1 +0042f396 Unwind@0042f396 undefined Unwind@0042f396(void) 8 1 +0042f39e Unwind@0042f39e undefined Unwind@0042f39e(void) 8 1 +0042f3c1 Unwind@0042f3c1 undefined Unwind@0042f3c1(void) 8 1 +0042f3f1 Unwind@0042f3f1 undefined Unwind@0042f3f1(void) 8 1 +0042f421 Unwind@0042f421 undefined Unwind@0042f421(void) 8 1 +0042f429 Unwind@0042f429 undefined Unwind@0042f429(void) 8 1 +0042f431 Unwind@0042f431 undefined Unwind@0042f431(void) 8 1 +0042f439 Unwind@0042f439 undefined Unwind@0042f439(void) 8 1 +0042f441 Unwind@0042f441 undefined Unwind@0042f441(void) 8 1 +0042f449 Unwind@0042f449 undefined Unwind@0042f449(void) 11 1 +0042f454 Unwind@0042f454 undefined Unwind@0042f454(void) 8 1 +0042f45c Unwind@0042f45c undefined Unwind@0042f45c(void) 8 1 +0042f464 Unwind@0042f464 undefined Unwind@0042f464(void) 8 1 +0042f46c Unwind@0042f46c undefined Unwind@0042f46c(void) 8 1 +0042f474 Unwind@0042f474 undefined Unwind@0042f474(void) 8 1 +0042f49a Unwind@0042f49a undefined Unwind@0042f49a(void) 8 1 +0042f4a2 Unwind@0042f4a2 undefined Unwind@0042f4a2(void) 8 1 +0042f4aa Unwind@0042f4aa undefined Unwind@0042f4aa(void) 8 1 +0042f4b2 Unwind@0042f4b2 undefined Unwind@0042f4b2(void) 8 1 +0042f4ba Unwind@0042f4ba undefined Unwind@0042f4ba(void) 8 1 +0042f4dd Unwind@0042f4dd undefined Unwind@0042f4dd(void) 8 1 +0042f4e5 Unwind@0042f4e5 undefined Unwind@0042f4e5(void) 8 1 +0042f4ed Unwind@0042f4ed undefined Unwind@0042f4ed(void) 11 1 +0042f4f8 Unwind@0042f4f8 undefined Unwind@0042f4f8(void) 11 1 +0042f503 Unwind@0042f503 undefined Unwind@0042f503(void) 11 1 +0042f50e Unwind@0042f50e undefined Unwind@0042f50e(void) 11 1 +0042f519 Unwind@0042f519 undefined Unwind@0042f519(void) 11 1 +0042f524 Unwind@0042f524 undefined Unwind@0042f524(void) 8 1 +0042f52c Unwind@0042f52c undefined Unwind@0042f52c(void) 8 1 +0042f534 Unwind@0042f534 undefined Unwind@0042f534(void) 8 1 +0042f53c Unwind@0042f53c undefined Unwind@0042f53c(void) 8 1 +0042f56c Unwind@0042f56c undefined Unwind@0042f56c(void) 11 1 +0042f577 Unwind@0042f577 undefined Unwind@0042f577(void) 11 1 +0042f582 Unwind@0042f582 undefined Unwind@0042f582(void) 11 1 +0042f58d Unwind@0042f58d undefined Unwind@0042f58d(void) 11 1 +0042f598 Unwind@0042f598 undefined Unwind@0042f598(void) 11 1 +0042f5a3 Unwind@0042f5a3 undefined Unwind@0042f5a3(void) 11 1 +0042f5d6 Unwind@0042f5d6 undefined Unwind@0042f5d6(void) 10 1 +0042f5fb Unwind@0042f5fb undefined Unwind@0042f5fb(void) 8 1 +0042f603 Unwind@0042f603 undefined Unwind@0042f603(void) 8 1 +0042f60b Unwind@0042f60b undefined Unwind@0042f60b(void) 8 1 +0042f638 Unwind@0042f638 undefined Unwind@0042f638(void) 8 1 +0042f640 Unwind@0042f640 undefined Unwind@0042f640(void) 8 1 +0042f648 Unwind@0042f648 undefined Unwind@0042f648(void) 10 1 +0042f652 Unwind@0042f652 undefined Unwind@0042f652(void) 8 1 +0042f65a Unwind@0042f65a undefined Unwind@0042f65a(void) 8 1 +0042f662 Unwind@0042f662 undefined Unwind@0042f662(void) 8 1 +0042f66a Unwind@0042f66a undefined Unwind@0042f66a(void) 8 1 +0042f68d Unwind@0042f68d undefined Unwind@0042f68d(void) 10 1 +0042f6b2 Unwind@0042f6b2 undefined Unwind@0042f6b2(void) 8 1 +0042f6d5 Unwind@0042f6d5 undefined Unwind@0042f6d5(void) 8 1 +0042f6f8 Unwind@0042f6f8 undefined Unwind@0042f6f8(void) 8 1 +0042f71b Unwind@0042f71b undefined Unwind@0042f71b(void) 8 1 +0042f723 Unwind@0042f723 undefined Unwind@0042f723(void) 8 1 +0042f72b Unwind@0042f72b undefined Unwind@0042f72b(void) 8 1 +0042f733 Unwind@0042f733 undefined Unwind@0042f733(void) 8 1 +0042f73b Unwind@0042f73b undefined Unwind@0042f73b(void) 8 1 +0042f743 Unwind@0042f743 undefined Unwind@0042f743(void) 8 1 +0042f74b Unwind@0042f74b undefined Unwind@0042f74b(void) 8 1 +0042f753 Unwind@0042f753 undefined Unwind@0042f753(void) 8 1 +0042f75b Unwind@0042f75b undefined Unwind@0042f75b(void) 8 1 +0042f763 Unwind@0042f763 undefined Unwind@0042f763(void) 8 1 +0042f76b Unwind@0042f76b undefined Unwind@0042f76b(void) 8 1 +0042f78e Unwind@0042f78e undefined Unwind@0042f78e(void) 8 1 +0042f796 Unwind@0042f796 undefined Unwind@0042f796(void) 8 1 +0042f79e Unwind@0042f79e undefined Unwind@0042f79e(void) 8 1 +0042f7a6 Unwind@0042f7a6 undefined Unwind@0042f7a6(void) 8 1 +0042f7ae Unwind@0042f7ae undefined Unwind@0042f7ae(void) 8 1 +0042f7b6 Unwind@0042f7b6 undefined Unwind@0042f7b6(void) 8 1 +0042f7d9 Unwind@0042f7d9 undefined Unwind@0042f7d9(void) 8 1 +0042f7e1 Unwind@0042f7e1 undefined Unwind@0042f7e1(void) 8 1 +0042f7e9 Unwind@0042f7e9 undefined Unwind@0042f7e9(void) 8 1 +0042f7f1 Unwind@0042f7f1 undefined Unwind@0042f7f1(void) 8 1 +0042f7f9 Unwind@0042f7f9 undefined Unwind@0042f7f9(void) 8 1 +0042f801 Unwind@0042f801 undefined Unwind@0042f801(void) 8 1 +0042f809 Unwind@0042f809 undefined Unwind@0042f809(void) 8 1 +0042f811 Unwind@0042f811 undefined Unwind@0042f811(void) 8 1 +0042f819 Unwind@0042f819 undefined Unwind@0042f819(void) 8 1 +0042f83c Unwind@0042f83c undefined Unwind@0042f83c(void) 8 1 +0042f844 Unwind@0042f844 undefined Unwind@0042f844(void) 8 1 +0042f84c Unwind@0042f84c undefined Unwind@0042f84c(void) 8 1 +0042f854 Unwind@0042f854 undefined Unwind@0042f854(void) 8 1 +0042f85c Unwind@0042f85c undefined Unwind@0042f85c(void) 8 1 +0042f864 Unwind@0042f864 undefined Unwind@0042f864(void) 8 1 +0042f887 Unwind@0042f887 undefined Unwind@0042f887(void) 8 1 +0042f88f Unwind@0042f88f undefined Unwind@0042f88f(void) 8 1 +0042f897 Unwind@0042f897 undefined Unwind@0042f897(void) 8 1 +0042f89f Unwind@0042f89f undefined Unwind@0042f89f(void) 8 1 +0042f8a7 Unwind@0042f8a7 undefined Unwind@0042f8a7(void) 8 1 +0042f8af Unwind@0042f8af undefined Unwind@0042f8af(void) 8 1 +0042f8d2 Unwind@0042f8d2 undefined Unwind@0042f8d2(void) 8 1 +0042f8da Unwind@0042f8da undefined Unwind@0042f8da(void) 8 1 +0042f8e2 Unwind@0042f8e2 undefined Unwind@0042f8e2(void) 8 1 +0042f8ea Unwind@0042f8ea undefined Unwind@0042f8ea(void) 8 1 +0042f8f2 Unwind@0042f8f2 undefined Unwind@0042f8f2(void) 8 1 +0042f8fa Unwind@0042f8fa undefined Unwind@0042f8fa(void) 8 1 +0042f91d Unwind@0042f91d undefined Unwind@0042f91d(void) 8 1 +0042f925 Unwind@0042f925 undefined Unwind@0042f925(void) 8 1 +0042f92d Unwind@0042f92d undefined Unwind@0042f92d(void) 8 1 +0042f935 Unwind@0042f935 undefined Unwind@0042f935(void) 8 1 +0042f93d Unwind@0042f93d undefined Unwind@0042f93d(void) 8 1 +0042f945 Unwind@0042f945 undefined Unwind@0042f945(void) 8 1 +0042f968 Unwind@0042f968 undefined Unwind@0042f968(void) 8 1 +0042f970 Unwind@0042f970 undefined Unwind@0042f970(void) 8 1 +0042f978 Unwind@0042f978 undefined Unwind@0042f978(void) 8 1 +0042f980 Unwind@0042f980 undefined Unwind@0042f980(void) 8 1 +0042f988 Unwind@0042f988 undefined Unwind@0042f988(void) 8 1 +0042f990 Unwind@0042f990 undefined Unwind@0042f990(void) 8 1 +0042f9b3 Unwind@0042f9b3 undefined Unwind@0042f9b3(void) 8 1 +0042f9bb Unwind@0042f9bb undefined Unwind@0042f9bb(void) 8 1 +0042f9c3 Unwind@0042f9c3 undefined Unwind@0042f9c3(void) 8 1 +0042f9cb Unwind@0042f9cb undefined Unwind@0042f9cb(void) 8 1 +0042f9d3 Unwind@0042f9d3 undefined Unwind@0042f9d3(void) 8 1 +0042f9db Unwind@0042f9db undefined Unwind@0042f9db(void) 8 1 +0042f9fe Unwind@0042f9fe undefined Unwind@0042f9fe(void) 8 1 +0042fa06 Unwind@0042fa06 undefined Unwind@0042fa06(void) 8 1 +0042fa0e Unwind@0042fa0e undefined Unwind@0042fa0e(void) 8 1 +0042fa16 Unwind@0042fa16 undefined Unwind@0042fa16(void) 8 1 +0042fa1e Unwind@0042fa1e undefined Unwind@0042fa1e(void) 8 1 +0042fa26 Unwind@0042fa26 undefined Unwind@0042fa26(void) 8 1 +0042fa49 Unwind@0042fa49 undefined Unwind@0042fa49(void) 8 1 +0042fa51 Unwind@0042fa51 undefined Unwind@0042fa51(void) 8 1 +0042fa59 Unwind@0042fa59 undefined Unwind@0042fa59(void) 8 1 +0042fa61 Unwind@0042fa61 undefined Unwind@0042fa61(void) 8 1 +0042fa69 Unwind@0042fa69 undefined Unwind@0042fa69(void) 8 1 +0042fa71 Unwind@0042fa71 undefined Unwind@0042fa71(void) 8 1 +0042fa94 Unwind@0042fa94 undefined Unwind@0042fa94(void) 8 1 +0042fab7 Unwind@0042fab7 undefined Unwind@0042fab7(void) 14 0 +0042fae0 Unwind@0042fae0 undefined Unwind@0042fae0(void) 8 1 +0042fb1e Unwind@0042fb1e undefined Unwind@0042fb1e(void) 11 1 +0042fb44 Unwind@0042fb44 undefined Unwind@0042fb44(void) 11 1 +0042fb6a Unwind@0042fb6a undefined Unwind@0042fb6a(void) 8 1 +0042fb8d Unwind@0042fb8d undefined Unwind@0042fb8d(void) 11 1 +0042fbc0 Unwind@0042fbc0 undefined Unwind@0042fbc0(void) 8 1 +0042fbe3 Unwind@0042fbe3 undefined Unwind@0042fbe3(void) 11 1 +0042fc16 Unwind@0042fc16 undefined Unwind@0042fc16(void) 8 1 +0042fc39 Unwind@0042fc39 undefined Unwind@0042fc39(void) 8 1 +0042fc5c Unwind@0042fc5c undefined Unwind@0042fc5c(void) 11 1 +0042fc67 Unwind@0042fc67 undefined Unwind@0042fc67(void) 11 1 +0042fc8d Unwind@0042fc8d undefined Unwind@0042fc8d(void) 11 1 +0042fc98 Unwind@0042fc98 undefined Unwind@0042fc98(void) 11 1 +0042fcbe Unwind@0042fcbe undefined Unwind@0042fcbe(void) 11 1 +0042fcc9 Unwind@0042fcc9 undefined Unwind@0042fcc9(void) 11 1 +0042fcef Unwind@0042fcef undefined Unwind@0042fcef(void) 11 1 +0042fcfa Unwind@0042fcfa undefined Unwind@0042fcfa(void) 11 1 +0042fd20 Unwind@0042fd20 undefined Unwind@0042fd20(void) 8 1 +0042fd43 Unwind@0042fd43 undefined Unwind@0042fd43(void) 8 1 +0042fd66 Unwind@0042fd66 undefined Unwind@0042fd66(void) 8 1 +0042fd89 Unwind@0042fd89 undefined Unwind@0042fd89(void) 23 1 +0042fda0 Unwind@0042fda0 undefined Unwind@0042fda0(void) 24 1 +0042fdd3 Unwind@0042fdd3 undefined Unwind@0042fdd3(void) 11 1 +0042fdde Unwind@0042fdde undefined Unwind@0042fdde(void) 11 1 +0042fe04 Unwind@0042fe04 undefined Unwind@0042fe04(void) 8 1 +0042fe27 Unwind@0042fe27 undefined Unwind@0042fe27(void) 8 1 +0042fe4a Unwind@0042fe4a undefined Unwind@0042fe4a(void) 8 1 +0042fe6d Unwind@0042fe6d undefined Unwind@0042fe6d(void) 8 1 +0042fe90 Unwind@0042fe90 undefined Unwind@0042fe90(void) 8 1 +0042feb3 Unwind@0042feb3 undefined Unwind@0042feb3(void) 8 1 +0042fed6 Unwind@0042fed6 undefined Unwind@0042fed6(void) 8 1 +0042fede Unwind@0042fede undefined Unwind@0042fede(void) 8 1 +0042ff01 Unwind@0042ff01 undefined Unwind@0042ff01(void) 8 1 +0042ff09 Unwind@0042ff09 undefined Unwind@0042ff09(void) 8 1 +0042ff2c Unwind@0042ff2c undefined Unwind@0042ff2c(void) 8 1 +0042ff34 Unwind@0042ff34 undefined Unwind@0042ff34(void) 8 1 +0042ff57 Unwind@0042ff57 undefined Unwind@0042ff57(void) 8 1 +0042ff7a Unwind@0042ff7a undefined Unwind@0042ff7a(void) 11 1 +0042ff85 Unwind@0042ff85 undefined Unwind@0042ff85(void) 11 1 +0042ffab Unwind@0042ffab undefined Unwind@0042ffab(void) 8 1 +0042ffd8 Unwind@0042ffd8 undefined Unwind@0042ffd8(void) 8 1 +0042fffb Unwind@0042fffb undefined Unwind@0042fffb(void) 11 1 +00430006 Unwind@00430006 undefined Unwind@00430006(void) 11 1 +00430011 Unwind@00430011 undefined Unwind@00430011(void) 11 1 +0043001c Unwind@0043001c undefined Unwind@0043001c(void) 11 1 +00430027 Unwind@00430027 undefined Unwind@00430027(void) 11 1 +00430032 Unwind@00430032 undefined Unwind@00430032(void) 11 1 +0043003d Unwind@0043003d undefined Unwind@0043003d(void) 11 1 +00430048 Unwind@00430048 undefined Unwind@00430048(void) 11 1 +00430053 Unwind@00430053 undefined Unwind@00430053(void) 11 1 +0043005e Unwind@0043005e undefined Unwind@0043005e(void) 11 1 +00430091 Unwind@00430091 undefined Unwind@00430091(void) 8 1 +00430099 Unwind@00430099 undefined Unwind@00430099(void) 8 1 +004300a1 Unwind@004300a1 undefined Unwind@004300a1(void) 8 1 +004300a9 Unwind@004300a9 undefined Unwind@004300a9(void) 8 1 +004300b1 Unwind@004300b1 undefined Unwind@004300b1(void) 8 1 +004300d4 Unwind@004300d4 undefined Unwind@004300d4(void) 11 1 +004300df Unwind@004300df undefined Unwind@004300df(void) 11 1 +004300ea Unwind@004300ea undefined Unwind@004300ea(void) 11 1 +004300f5 Unwind@004300f5 undefined Unwind@004300f5(void) 11 1 +00430100 Unwind@00430100 undefined Unwind@00430100(void) 11 1 +0043010b Unwind@0043010b undefined Unwind@0043010b(void) 11 1 +0043013e Unwind@0043013e undefined Unwind@0043013e(void) 11 1 +00430149 Unwind@00430149 undefined Unwind@00430149(void) 11 1 +0043016f Unwind@0043016f undefined Unwind@0043016f(void) 8 1 +00430192 Unwind@00430192 undefined Unwind@00430192(void) 8 1 +0043019a Unwind@0043019a undefined Unwind@0043019a(void) 8 1 +004301a2 Unwind@004301a2 undefined Unwind@004301a2(void) 8 1 +004301c5 Unwind@004301c5 undefined Unwind@004301c5(void) 8 1 +004301e8 Unwind@004301e8 undefined Unwind@004301e8(void) 8 1 +00430226 Unwind@00430226 undefined Unwind@00430226(void) 8 1 +00430249 Unwind@00430249 undefined Unwind@00430249(void) 8 1 +0043026c Unwind@0043026c undefined Unwind@0043026c(void) 11 1 +00430292 Unwind@00430292 undefined Unwind@00430292(void) 11 1 +0043029d Unwind@0043029d undefined Unwind@0043029d(void) 8 1 +004302c0 Unwind@004302c0 undefined Unwind@004302c0(void) 8 1 +004302e3 Unwind@004302e3 undefined Unwind@004302e3(void) 8 1 +00430306 Unwind@00430306 undefined Unwind@00430306(void) 8 1 +0043030e Unwind@0043030e undefined Unwind@0043030e(void) 8 1 +00430331 Unwind@00430331 undefined Unwind@00430331(void) 8 1 +00430354 Unwind@00430354 undefined Unwind@00430354(void) 11 1 +0043035f Unwind@0043035f undefined Unwind@0043035f(void) 11 1 +0043036a Unwind@0043036a undefined Unwind@0043036a(void) 11 1 +0043039d Unwind@0043039d undefined Unwind@0043039d(void) 11 1 +004303a8 Unwind@004303a8 undefined Unwind@004303a8(void) 11 1 +004303b3 Unwind@004303b3 undefined Unwind@004303b3(void) 11 1 +004303be Unwind@004303be undefined Unwind@004303be(void) 11 1 +004303c9 Unwind@004303c9 undefined Unwind@004303c9(void) 11 1 +004303fc Unwind@004303fc undefined Unwind@004303fc(void) 8 1 +00430404 Unwind@00430404 undefined Unwind@00430404(void) 11 1 +0043040f Unwind@0043040f undefined Unwind@0043040f(void) 11 1 +00430435 Unwind@00430435 undefined Unwind@00430435(void) 8 1 +00430458 Unwind@00430458 undefined Unwind@00430458(void) 10 1 +00430498 Unwind@00430498 undefined Unwind@00430498(void) 10 1 +004304bd Unwind@004304bd undefined Unwind@004304bd(void) 11 1 +004304e3 Unwind@004304e3 undefined Unwind@004304e3(void) 11 1 +004304ee Unwind@004304ee undefined Unwind@004304ee(void) 8 1 +00430511 Unwind@00430511 undefined Unwind@00430511(void) 8 1 +00430519 Unwind@00430519 undefined Unwind@00430519(void) 8 1 +0043053c Unwind@0043053c undefined Unwind@0043053c(void) 10 1 +00430561 Unwind@00430561 undefined Unwind@00430561(void) 11 1 +0043056c Unwind@0043056c undefined Unwind@0043056c(void) 11 1 +0043059f Unwind@0043059f undefined Unwind@0043059f(void) 8 1 +004305c2 Unwind@004305c2 undefined Unwind@004305c2(void) 8 1 +004305e5 Unwind@004305e5 undefined Unwind@004305e5(void) 8 1 +00430608 Unwind@00430608 undefined Unwind@00430608(void) 8 1 +0043062b Unwind@0043062b undefined Unwind@0043062b(void) 11 1 +00430636 Unwind@00430636 undefined Unwind@00430636(void) 11 1 +00430669 Unwind@00430669 undefined Unwind@00430669(void) 11 1 +00430674 Unwind@00430674 undefined Unwind@00430674(void) 11 1 +004306a7 Unwind@004306a7 undefined Unwind@004306a7(void) 11 1 +004306b2 Unwind@004306b2 undefined Unwind@004306b2(void) 11 1 +004306e5 Unwind@004306e5 undefined Unwind@004306e5(void) 10 1 +0043070a Unwind@0043070a undefined Unwind@0043070a(void) 10 1 +00430714 Unwind@00430714 undefined Unwind@00430714(void) 10 1 +0043071e Unwind@0043071e undefined Unwind@0043071e(void) 10 1 +004307f4 FUN_004307f4 undefined FUN_004307f4(void) 32 3 +00430814 FUN_00430814 undefined FUN_00430814(void) 10 1 +0043081e FUN_0043081e undefined FUN_0043081e(void) 12 1 +0043082a FUN_0043082a undefined FUN_0043082a(void) 46 3 +00430858 FUN_00430858 undefined FUN_00430858(void) 10 1 +00430862 FUN_00430862 undefined FUN_00430862(void) 10 1 diff --git a/analysis/ghidra/exports/NmxSvc.exe.ghidra.md b/analysis/ghidra/exports/NmxSvc.exe.ghidra.md new file mode 100644 index 0000000..96a7769 --- /dev/null +++ b/analysis/ghidra/exports/NmxSvc.exe.ghidra.md @@ -0,0 +1,2142 @@ +# NmxSvc.exe + +## Program + +- Language: `x86:LE:32:default` +- Compiler spec: `windows` +- Image base: `00400000` +- Executable format: `Portable Executable (PE)` + +## Memory Blocks + +| Name | Start | End | Size | R | W | X | +| --- | ---: | ---: | ---: | :---: | :---: | :---: | +| `Headers` | `00400000` | `004003ff` | 1024 | Y | | | +| `.text` | `00401000` | `004309ff` | 195072 | Y | | Y | +| `.rdata` | `00431000` | `0044e3ff` | 119808 | Y | | | +| `.data` | `0044f000` | `004505bb` | 5564 | Y | Y | | +| `.rsrc` | `00451000` | `004659ff` | 84480 | Y | | | +| `.reloc` | `00466000` | `00469dff` | 15872 | Y | | | +| `tdb` | `ffdff000` | `ffdfffff` | 4096 | Y | Y | | + +## External Imports + +- `ADVAPI32.DLL::ChangeServiceConfig2W` +- `ADVAPI32.DLL::CloseServiceHandle` +- `ADVAPI32.DLL::ControlService` +- `ADVAPI32.DLL::CopySid` +- `ADVAPI32.DLL::CreateServiceW` +- `ADVAPI32.DLL::DeleteService` +- `ADVAPI32.DLL::DeregisterEventSource` +- `ADVAPI32.DLL::GetLengthSid` +- `ADVAPI32.DLL::GetTokenInformation` +- `ADVAPI32.DLL::ImpersonateLoggedOnUser` +- `ADVAPI32.DLL::InitializeSecurityDescriptor` +- `ADVAPI32.DLL::IsValidSid` +- `ADVAPI32.DLL::LogonUserW` +- `ADVAPI32.DLL::OpenProcessToken` +- `ADVAPI32.DLL::OpenSCManagerW` +- `ADVAPI32.DLL::OpenServiceW` +- `ADVAPI32.DLL::OpenThreadToken` +- `ADVAPI32.DLL::RegCloseKey` +- `ADVAPI32.DLL::RegCreateKeyExW` +- `ADVAPI32.DLL::RegDeleteKeyW` +- `ADVAPI32.DLL::RegDeleteValueW` +- `ADVAPI32.DLL::RegEnumKeyExW` +- `ADVAPI32.DLL::RegOpenKeyExW` +- `ADVAPI32.DLL::RegQueryInfoKeyW` +- `ADVAPI32.DLL::RegQueryValueExW` +- `ADVAPI32.DLL::RegSetValueExW` +- `ADVAPI32.DLL::RegisterEventSourceW` +- `ADVAPI32.DLL::RegisterServiceCtrlHandlerW` +- `ADVAPI32.DLL::ReportEventW` +- `ADVAPI32.DLL::RevertToSelf` +- `ADVAPI32.DLL::SetSecurityDescriptorDacl` +- `ADVAPI32.DLL::SetSecurityDescriptorGroup` +- `ADVAPI32.DLL::SetSecurityDescriptorOwner` +- `ADVAPI32.DLL::SetServiceStatus` +- `ADVAPI32.DLL::StartServiceCtrlDispatcherW` +- `DBGHELP.DLL::MiniDumpWriteDump` +- `IPHLPAPI.DLL::GetAdaptersAddresses` +- `IPHLPAPI.DLL::GetAdaptersInfo` +- `IPHLPAPI.DLL::NotifyAddrChange` +- `KERNEL32.DLL::CloseHandle` +- `KERNEL32.DLL::CreateDirectoryW` +- `KERNEL32.DLL::CreateEventW` +- `KERNEL32.DLL::CreateFileW` +- `KERNEL32.DLL::CreateMutexW` +- `KERNEL32.DLL::CreateThread` +- `KERNEL32.DLL::DecodePointer` +- `KERNEL32.DLL::DeleteCriticalSection` +- `KERNEL32.DLL::DeleteFileW` +- `KERNEL32.DLL::EncodePointer` +- `KERNEL32.DLL::EnterCriticalSection` +- `KERNEL32.DLL::FileTimeToSystemTime` +- `KERNEL32.DLL::FindClose` +- `KERNEL32.DLL::FindFirstFileW` +- `KERNEL32.DLL::FindNextFileW` +- `KERNEL32.DLL::FindResourceW` +- `KERNEL32.DLL::FormatMessageW` +- `KERNEL32.DLL::FreeLibrary` +- `KERNEL32.DLL::GetCommandLineW` +- `KERNEL32.DLL::GetComputerNameW` +- `KERNEL32.DLL::GetCurrentProcess` +- `KERNEL32.DLL::GetCurrentProcessId` +- `KERNEL32.DLL::GetCurrentThread` +- `KERNEL32.DLL::GetCurrentThreadId` +- `KERNEL32.DLL::GetLastError` +- `KERNEL32.DLL::GetLocalTime` +- `KERNEL32.DLL::GetModuleFileNameW` +- `KERNEL32.DLL::GetModuleHandleW` +- `KERNEL32.DLL::GetProcAddress` +- `KERNEL32.DLL::GetProcessHeap` +- `KERNEL32.DLL::GetStartupInfoW` +- `KERNEL32.DLL::GetSystemDirectoryW` +- `KERNEL32.DLL::GetSystemTime` +- `KERNEL32.DLL::GetSystemTimeAsFileTime` +- `KERNEL32.DLL::GetTickCount` +- `KERNEL32.DLL::GetWindowsDirectoryW` +- `KERNEL32.DLL::HeapAlloc` +- `KERNEL32.DLL::HeapFree` +- `KERNEL32.DLL::HeapSetInformation` +- `KERNEL32.DLL::InitializeCriticalSectionAndSpinCount` +- `KERNEL32.DLL::InterlockedCompareExchange` +- `KERNEL32.DLL::InterlockedDecrement` +- `KERNEL32.DLL::InterlockedExchange` +- `KERNEL32.DLL::InterlockedIncrement` +- `KERNEL32.DLL::IsDebuggerPresent` +- `KERNEL32.DLL::LeaveCriticalSection` +- `KERNEL32.DLL::LoadLibraryExW` +- `KERNEL32.DLL::LoadLibraryW` +- `KERNEL32.DLL::LoadResource` +- `KERNEL32.DLL::LocalAlloc` +- `KERNEL32.DLL::LocalFree` +- `KERNEL32.DLL::MapViewOfFile` +- `KERNEL32.DLL::MultiByteToWideChar` +- `KERNEL32.DLL::OpenFileMappingW` +- `KERNEL32.DLL::OutputDebugStringW` +- `KERNEL32.DLL::QueryPerformanceCounter` +- `KERNEL32.DLL::RaiseException` +- `KERNEL32.DLL::ReleaseMutex` +- `KERNEL32.DLL::ResetEvent` +- `KERNEL32.DLL::SetEvent` +- `KERNEL32.DLL::SetThreadPriority` +- `KERNEL32.DLL::SetUnhandledExceptionFilter` +- `KERNEL32.DLL::SizeofResource` +- `KERNEL32.DLL::Sleep` +- `KERNEL32.DLL::SystemTimeToFileTime` +- `KERNEL32.DLL::SystemTimeToTzSpecificLocalTime` +- `KERNEL32.DLL::TerminateProcess` +- `KERNEL32.DLL::TerminateThread` +- `KERNEL32.DLL::UnhandledExceptionFilter` +- `KERNEL32.DLL::UnmapViewOfFile` +- `KERNEL32.DLL::WaitForMultipleObjects` +- `KERNEL32.DLL::WaitForSingleObject` +- `KERNEL32.DLL::WideCharToMultiByte` +- `KERNEL32.DLL::lstrcmpiW` +- `KERNEL32.DLL::lstrlenA` +- `KERNEL32.DLL::lstrlenW` +- `MSVCP100.DLL::std::_BADOFF` +- `MSVCP100.DLL::std::_Xlength_error` +- `MSVCP100.DLL::std::_Xout_of_range` +- `MSVCP100.DLL::std::basic_ios_>::\`vftable'` +- `MSVCP100.DLL::std::basic_ios_>::setstate` +- `MSVCP100.DLL::std::basic_ios_>::~basic_ios_>` +- `MSVCP100.DLL::std::basic_iostream_>::basic_iostream_>` +- `MSVCP100.DLL::std::basic_iostream_>::~basic_iostream_>` +- `MSVCP100.DLL::std::basic_ostream_>::_Osfx` +- `MSVCP100.DLL::std::basic_ostream_>::flush` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_streambuf_>::_Lock` +- `MSVCP100.DLL::std::basic_streambuf_>::_Pninc` +- `MSVCP100.DLL::std::basic_streambuf_>::_Unlock` +- `MSVCP100.DLL::std::basic_streambuf_>::basic_streambuf_>` +- `MSVCP100.DLL::std::basic_streambuf_>::gbump` +- `MSVCP100.DLL::std::basic_streambuf_>::imbue` +- `MSVCP100.DLL::std::basic_streambuf_>::pbump` +- `MSVCP100.DLL::std::basic_streambuf_>::setbuf` +- `MSVCP100.DLL::std::basic_streambuf_>::showmanyc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputn` +- `MSVCP100.DLL::std::basic_streambuf_>::sync` +- `MSVCP100.DLL::std::basic_streambuf_>::uflow` +- `MSVCP100.DLL::std::basic_streambuf_>::xsgetn` +- `MSVCP100.DLL::std::basic_streambuf_>::xsputn` +- `MSVCP100.DLL::std::basic_streambuf_>::~basic_streambuf_>` +- `MSVCP100.DLL::std::ends` +- `MSVCP100.DLL::std::ios_base::_Ios_base_dtor` +- `MSVCP100.DLL::std::ios_base::\`vftable'` +- `MSVCP100.DLL::std::ios_base::~ios_base` +- `MSVCP100.DLL::std::uncaught_exception` +- `MSVCR100.DLL::_CxxThrowException` +- `MSVCR100.DLL::_XcptFilter` +- `MSVCR100.DLL::__CxxFrameHandler3` +- `MSVCR100.DLL::__dllonexit` +- `MSVCR100.DLL::__set_app_type` +- `MSVCR100.DLL::__setusermatherr` +- `MSVCR100.DLL::__wgetmainargs` +- `MSVCR100.DLL::_amsg_exit` +- `MSVCR100.DLL::_cexit` +- `MSVCR100.DLL::_commode` +- `MSVCR100.DLL::_configthreadlocale` +- `MSVCR100.DLL::_controlfp_s` +- `MSVCR100.DLL::_crt_debugger_hook` +- `MSVCR100.DLL::_exit` +- `MSVCR100.DLL::_fmode` +- `MSVCR100.DLL::_invoke_watson` +- `MSVCR100.DLL::_lock` +- `MSVCR100.DLL::_makepath_s` +- `MSVCR100.DLL::_onexit` +- `MSVCR100.DLL::_putws` +- `MSVCR100.DLL::_recalloc` +- `MSVCR100.DLL::_set_invalid_parameter_handler` +- `MSVCR100.DLL::_set_se_translator` +- `MSVCR100.DLL::_snwprintf_s` +- `MSVCR100.DLL::_splitpath_s` +- `MSVCR100.DLL::_unlock` +- `MSVCR100.DLL::_vsnwprintf_s` +- `MSVCR100.DLL::_wcmdln` +- `MSVCR100.DLL::_wcsicmp` +- `MSVCR100.DLL::_wsplitpath_s` +- `MSVCR100.DLL::calloc` +- `MSVCR100.DLL::except_handler4_common` +- `MSVCR100.DLL::exit` +- `MSVCR100.DLL::free` +- `MSVCR100.DLL::initterm` +- `MSVCR100.DLL::initterm_e` +- `MSVCR100.DLL::malloc` +- `MSVCR100.DLL::memcmp` +- `MSVCR100.DLL::memcpy` +- `MSVCR100.DLL::memcpy_s` +- `MSVCR100.DLL::memmove` +- `MSVCR100.DLL::memmove_s` +- `MSVCR100.DLL::memset` +- `MSVCR100.DLL::operator_delete` +- `MSVCR100.DLL::operator_delete[]` +- `MSVCR100.DLL::operator_new` +- `MSVCR100.DLL::purecall` +- `MSVCR100.DLL::realloc` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::what` +- `MSVCR100.DLL::std::exception::~exception` +- `MSVCR100.DLL::strcpy_s` +- `MSVCR100.DLL::swprintf_s` +- `MSVCR100.DLL::terminate` +- `MSVCR100.DLL::type_info::_type_info_dtor_internal_method` +- `MSVCR100.DLL::vswprintf_s` +- `MSVCR100.DLL::wcscat_s` +- `MSVCR100.DLL::wcscmp` +- `MSVCR100.DLL::wcscpy_s` +- `MSVCR100.DLL::wcslen` +- `MSVCR100.DLL::wcsncpy_s` +- `MSVCR100.DLL::wcsrchr` +- `MSVCR100.DLL::wcsstr` +- `NETAPI32.DLL::DsGetDcNameW` +- `NETAPI32.DLL::NetApiBufferFree` +- `OLE32.DLL::CLSIDFromString` +- `OLE32.DLL::CoCreateInstance` +- `OLE32.DLL::CoCreateInstanceEx` +- `OLE32.DLL::CoFileTimeNow` +- `OLE32.DLL::CoInitialize` +- `OLE32.DLL::CoInitializeEx` +- `OLE32.DLL::CoInitializeSecurity` +- `OLE32.DLL::CoRegisterClassObject` +- `OLE32.DLL::CoRevokeClassObject` +- `OLE32.DLL::CoTaskMemAlloc` +- `OLE32.DLL::CoTaskMemFree` +- `OLE32.DLL::CoTaskMemRealloc` +- `OLE32.DLL::CoUninitialize` +- `OLE32.DLL::StringFromGUID2` +- `OLEAUT32.DLL::CreateErrorInfo` +- `OLEAUT32.DLL::GetErrorInfo` +- `OLEAUT32.DLL::LoadTypeLib` +- `OLEAUT32.DLL::RegisterTypeLib` +- `OLEAUT32.DLL::SetErrorInfo` +- `OLEAUT32.DLL::SysAllocString` +- `OLEAUT32.DLL::SysAllocStringByteLen` +- `OLEAUT32.DLL::SysAllocStringLen` +- `OLEAUT32.DLL::SysFreeString` +- `OLEAUT32.DLL::SysStringByteLen` +- `OLEAUT32.DLL::SysStringLen` +- `OLEAUT32.DLL::UnRegisterTypeLib` +- `OLEAUT32.DLL::VarBstrCat` +- `OLEAUT32.DLL::VarUI4FromStr` +- `OLEAUT32.DLL::VariantChangeType` +- `OLEAUT32.DLL::VariantClear` +- `OLEAUT32.DLL::VariantInit` +- `SECUR32.DLL::GetUserNameExW` +- `SHLWAPI.DLL::PathAppendW` +- `SHLWAPI.DLL::PathRemoveFileSpecW` +- `USER32.DLL::CharNextW` +- `USER32.DLL::DispatchMessageW` +- `USER32.DLL::GetMessageW` +- `USER32.DLL::KillTimer` +- `USER32.DLL::LoadStringW` +- `USER32.DLL::PostThreadMessageW` +- `USER32.DLL::SetTimer` +- `WS2_32.DLL::WSACleanup` +- `WS2_32.DLL::WSACloseEvent` +- `WS2_32.DLL::WSACreateEvent` +- `WS2_32.DLL::WSAEnumNetworkEvents` +- `WS2_32.DLL::WSAEventSelect` +- `WS2_32.DLL::WSAGetLastError` +- `WS2_32.DLL::WSASocketW` +- `WS2_32.DLL::WSAStartup` +- `WS2_32.DLL::closesocket` +- `WS2_32.DLL::gethostbyaddr` +- `WS2_32.DLL::gethostbyname` +- `WS2_32.DLL::htonl` +- `WS2_32.DLL::htons` +- `WS2_32.DLL::inet_addr` +- `WS2_32.DLL::inet_ntoa` +- `WS2_32.DLL::recvfrom` +- `WS2_32.DLL::sendto` +- `WS2_32.DLL::setsockopt` + +## Exports and Globals + +| Name | Address | Function | +| --- | ---: | --- | +| `_InlineIsEqualGUID` | `0040100a` | `_InlineIsEqualGUID` | +| `_wmemset` | `0040108d` | `_wmemset` | +| `AtlMultiply<>` | `004010b7` | `AtlMultiply<>` | +| `?AtlCrtErrorCheck@ATL@@YAHH@Z` | `0040112c` | `AtlCrtErrorCheck` | +| `FID_conflict:RegOpenKeyExA` | `00401227` | `FID_conflict:RegOpenKeyExA` | +| `?RegOpenKeyExW@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PB_WKKPAPAU3@@Z` | `00401227` | `FID_conflict:RegOpenKeyExA` | +| `?RegOpenKeyExA@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PBDKKPAPAU3@@Z` | `00401227` | `FID_conflict:RegOpenKeyExA` | +| `?Close@CRegKey@ATL@@QAEJXZ` | `0040129a` | `Close` | +| `Open` | `004012b5` | `Open` | +| `QueryDWORDValue` | `00401304` | `QueryDWORDValue` | +| `?QueryStringValue@CRegKey@ATL@@QAEJPB_WPA_WPAK@Z` | `0040133c` | `QueryStringValue` | +| `assign` | `00401913` | `assign` | +| `FID_conflict:_Chassign` | `00401f21` | `FID_conflict:_Chassign` | +| `?_Chassign@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEXII_W@Z` | `00401f21` | `FID_conflict:_Chassign` | +| `?_Chassign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEXIIG@Z` | `00401f21` | `FID_conflict:_Chassign` | +| `FID_conflict:_Inside` | `00401f60` | `FID_conflict:_Inside` | +| `?_Inside@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE_NPBG@Z` | `00401f60` | `FID_conflict:_Inside` | +| `?_Inside@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE_NPB_W@Z` | `00401f60` | `FID_conflict:_Inside` | +| `AtlAdd<>` | `0040205a` | `AtlAdd<>` | +| `?Copy@CComBSTR@ATL@@QBEPA_WXZ` | `00402316` | `Copy` | +| `??0?$fpos@H@std@@QAE@_J@Z` | `00402c50` | `fpos` | +| `FID_conflict:_Tidy` | `00402ff7` | `FID_conflict:_Tidy` | +| `?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEX_NI@Z` | `00402ff7` | `FID_conflict:_Tidy` | +| `?_Tidy@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEX_NI@Z` | `00402ff7` | `FID_conflict:_Tidy` | +| `?Init@?$CA2WEX@$0IA@@ATL@@AAEXPBDI@Z` | `00403067` | `Init` | +| `Catch@004032f1` | `004032f1` | `Catch@004032f1` | +| `Catch@0040336d` | `0040336d` | `Catch@0040336d` | +| `Catch@004034d9` | `004034d9` | `Catch@004034d9` | +| `??0CComBSTR@ATL@@QAE@ABV01@@Z` | `0040357d` | `CComBSTR` | +| `~basic_string<>` | `00403b21` | `~basic_string<>` | +| `??0?$CA2WEX@$0IA@@ATL@@QAE@PBD@Z` | `00403dc7` | `CA2WEX<128>` | +| `FID_conflict:assign` | `0040442e` | `FID_conflict:assign` | +| `?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@PBGI@Z` | `0040442e` | `FID_conflict:assign` | +| `?assign@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAEAAV12@PB_WI@Z` | `0040442e` | `FID_conflict:assign` | +| `Catch@00404517` | `00404517` | `Catch@00404517` | +| `basic_string<>` | `00404534` | `basic_string<>` | +| `basic_string<>` | `0040462f` | `basic_string<>` | +| `_Uninitialized_move<>` | `0040467e` | `_Uninitialized_move<>` | +| `basic_string<>` | `004049be` | `basic_string<>` | +| `Catch@00404b6e` | `00404b6e` | `Catch@00404b6e` | +| `thunk_FUN_004049e3` | `00404c23` | `thunk_FUN_004049e3` | +| `Catch@00405cb1` | `00405cb1` | `Catch@00405cb1` | +| `Catch@00405d1d` | `00405d1d` | `Catch@00405d1d` | +| `Catch@00405d32` | `00405d32` | `Catch@00405d32` | +| `Catch@00405dac` | `00405dac` | `Catch@00405dac` | +| `Catch@00405ecf` | `00405ecf` | `Catch@00405ecf` | +| `Catch@00405f3b` | `00405f3b` | `Catch@00405f3b` | +| `Catch@00405f50` | `00405f50` | `Catch@00405f50` | +| `Catch@00405fca` | `00405fca` | `Catch@00405fca` | +| `Catch@004060d5` | `004060d5` | `Catch@004060d5` | +| `Catch@00406141` | `00406141` | `Catch@00406141` | +| `Catch@00406156` | `00406156` | `Catch@00406156` | +| `Catch@004061d0` | `004061d0` | `Catch@004061d0` | +| `Catch@004062de` | `004062de` | `Catch@004062de` | +| `Catch@0040634d` | `0040634d` | `Catch@0040634d` | +| `Catch@00406362` | `00406362` | `Catch@00406362` | +| `Catch@004063df` | `004063df` | `Catch@004063df` | +| `Catch@004064f3` | `004064f3` | `Catch@004064f3` | +| `Catch@00406562` | `00406562` | `Catch@00406562` | +| `Catch@00406577` | `00406577` | `Catch@00406577` | +| `Catch@004065f4` | `004065f4` | `Catch@004065f4` | +| `Catch@00406708` | `00406708` | `Catch@00406708` | +| `Catch@00406777` | `00406777` | `Catch@00406777` | +| `Catch@0040678c` | `0040678c` | `Catch@0040678c` | +| `Catch@00406809` | `00406809` | `Catch@00406809` | +| `Catch@00406916` | `00406916` | `Catch@00406916` | +| `Catch@00406985` | `00406985` | `Catch@00406985` | +| `Catch@0040699a` | `0040699a` | `Catch@0040699a` | +| `Catch@00406a17` | `00406a17` | `Catch@00406a17` | +| `AtlW2AHelper` | `00406a77` | `AtlW2AHelper` | +| `?Init@CComCriticalSection@ATL@@QAEJXZ` | `00406ac5` | `Init` | +| `?Attach@CComBSTR@ATL@@QAEXPA_W@Z` | `00406b61` | `Attach` | +| `_IsEqualGUID` | `00406d4a` | `_IsEqualGUID` | +| `FID_conflict:operator=` | `0040c38f` | `FID_conflict:operator=` | +| `??4?$CComPtr@UIHTMLDocument2@@@ATL@@QAEPAUIHTMLDocument2@@PAU2@@Z` | `0040c38f` | `FID_conflict:operator=` | +| `??4?$CComPtr@UIRowset@@@ATL@@QAEPAUIRowset@@PAU2@@Z` | `0040c38f` | `FID_conflict:operator=` | +| `??4?$CComPtr@UIWebBrowser2@@@ATL@@QAEPAUIWebBrowser2@@PAU2@@Z` | `0040c38f` | `FID_conflict:operator=` | +| `??4?$CComPtr@UIUnknown@@@ATL@@QAEPAUIUnknown@@PAU2@@Z` | `0040c38f` | `FID_conflict:operator=` | +| `??4?$CComPtr@UIHTMLOptionButtonElement@@@ATL@@QAEPAUIHTMLOptionButtonElement@@PAU2@@Z` | `0040c38f` | `FID_conflict:operator=` | +| `??4?$CComPtr@UIHTMLOptionElement@@@ATL@@QAEPAUIHTMLOptionElement@@PAU2@@Z` | `0040c38f` | `FID_conflict:operator=` | +| `??4?$CComPtr@UIDispatch@@@ATL@@QAEPAUIDispatch@@PAU2@@Z` | `0040c38f` | `FID_conflict:operator=` | +| `Catch@0040ced1` | `0040ced1` | `Catch@0040ced1` | +| `Catch@0040cef5` | `0040cef5` | `Catch@0040cef5` | +| `Catch@0040cf9e` | `0040cf9e` | `Catch@0040cf9e` | +| `Catch@0040cfc2` | `0040cfc2` | `Catch@0040cfc2` | +| `Catch@0040db56` | `0040db56` | `Catch@0040db56` | +| `Catch@0040dd58` | `0040dd58` | `Catch@0040dd58` | +| `Catch@0040de9f` | `0040de9f` | `Catch@0040de9f` | +| `Catch@0040e163` | `0040e163` | `Catch@0040e163` | +| `Catch@0040e232` | `0040e232` | `Catch@0040e232` | +| `thunk_FUN_0040c4e1` | `0040f51f` | `thunk_FUN_0040c4e1` | +| `Catch@0041008b` | `0041008b` | `Catch@0041008b` | +| `Catch@00410360` | `00410360` | `Catch@00410360` | +| `_Uninitialized_move<>` | `00410fd3` | `_Uninitialized_move<>` | +| `Catch@00411203` | `00411203` | `Catch@00411203` | +| `Catch@00412269` | `00412269` | `Catch@00412269` | +| `Catch@004122b9` | `004122b9` | `Catch@004122b9` | +| `Catch@00412309` | `00412309` | `Catch@00412309` | +| `Catch@00412359` | `00412359` | `Catch@00412359` | +| `Catch@004123a9` | `004123a9` | `Catch@004123a9` | +| `Catch@004123f9` | `004123f9` | `Catch@004123f9` | +| `Catch@004126d4` | `004126d4` | `Catch@004126d4` | +| `Catch@00412c57` | `00412c57` | `Catch@00412c57` | +| `Catch@00412eac` | `00412eac` | `Catch@00412eac` | +| `Catch@00412efc` | `00412efc` | `Catch@00412efc` | +| `Catch@004130ae` | `004130ae` | `Catch@004130ae` | +| `Catch@00413188` | `00413188` | `Catch@00413188` | +| `thunk_FUN_00412b83` | `004135d1` | `thunk_FUN_00412b83` | +| `Catch@00413a34` | `00413a34` | `Catch@00413a34` | +| `Catch@00413b19` | `00413b19` | `Catch@00413b19` | +| `Catch@00414808` | `00414808` | `Catch@00414808` | +| `Catch@00414887` | `00414887` | `Catch@00414887` | +| `Catch@00414961` | `00414961` | `Catch@00414961` | +| `Catch@004149b1` | `004149b1` | `Catch@004149b1` | +| `Catch@00414a05` | `00414a05` | `Catch@00414a05` | +| `thunk_FUN_0041457f` | `0041502c` | `thunk_FUN_0041457f` | +| `Catch@00415140` | `00415140` | `Catch@00415140` | +| `Catch@004154c6` | `004154c6` | `Catch@004154c6` | +| `Catch@00416137` | `00416137` | `Catch@00416137` | +| `Catch@004167a0` | `004167a0` | `Catch@004167a0` | +| `Catch@00416826` | `00416826` | `Catch@00416826` | +| `Catch@00416892` | `00416892` | `Catch@00416892` | +| `Catch@004168a7` | `004168a7` | `Catch@004168a7` | +| `Catch@00416923` | `00416923` | `Catch@00416923` | +| `Catch@00416a86` | `00416a86` | `Catch@00416a86` | +| `Catch@00416aeb` | `00416aeb` | `Catch@00416aeb` | +| `Catch@00416b21` | `00416b21` | `Catch@00416b21` | +| `Catch@00416b9f` | `00416b9f` | `Catch@00416b9f` | +| `Catch@00416e21` | `00416e21` | `Catch@00416e21` | +| `Catch@00416e86` | `00416e86` | `Catch@00416e86` | +| `Catch@00416ebc` | `00416ebc` | `Catch@00416ebc` | +| `Catch@00416f3a` | `00416f3a` | `Catch@00416f3a` | +| `Catch@004170df` | `004170df` | `Catch@004170df` | +| `Catch@00417144` | `00417144` | `Catch@00417144` | +| `Catch@0041717a` | `0041717a` | `Catch@0041717a` | +| `Catch@004171f8` | `004171f8` | `Catch@004171f8` | +| `Catch@0041734e` | `0041734e` | `Catch@0041734e` | +| `Catch@004173b3` | `004173b3` | `Catch@004173b3` | +| `Catch@004173e9` | `004173e9` | `Catch@004173e9` | +| `Catch@00417467` | `00417467` | `Catch@00417467` | +| `Catch@00417a65` | `00417a65` | `Catch@00417a65` | +| `Catch@00417aca` | `00417aca` | `Catch@00417aca` | +| `Catch@00417b00` | `00417b00` | `Catch@00417b00` | +| `Catch@00417b7e` | `00417b7e` | `Catch@00417b7e` | +| `Catch@00417d07` | `00417d07` | `Catch@00417d07` | +| `Catch@00417d6c` | `00417d6c` | `Catch@00417d6c` | +| `Catch@00417da2` | `00417da2` | `Catch@00417da2` | +| `Catch@00417e20` | `00417e20` | `Catch@00417e20` | +| `Catch@004185d4` | `004185d4` | `Catch@004185d4` | +| `Catch@00418642` | `00418642` | `Catch@00418642` | +| `Catch@00418657` | `00418657` | `Catch@00418657` | +| `Catch@004186d3` | `004186d3` | `Catch@004186d3` | +| `Catch@004187e2` | `004187e2` | `Catch@004187e2` | +| `Catch@0041885b` | `0041885b` | `Catch@0041885b` | +| `Catch@00418891` | `00418891` | `Catch@00418891` | +| `Catch@0041891c` | `0041891c` | `Catch@0041891c` | +| `Catch@00419521` | `00419521` | `Catch@00419521` | +| `Catch@004195f4` | `004195f4` | `Catch@004195f4` | +| `Catch@00419639` | `00419639` | `Catch@00419639` | +| `Catch@004196c6` | `004196c6` | `Catch@004196c6` | +| `Catch@00419b91` | `00419b91` | `Catch@00419b91` | +| `Catch@00419bf6` | `00419bf6` | `Catch@00419bf6` | +| `Catch@00419c2c` | `00419c2c` | `Catch@00419c2c` | +| `Catch@00419caa` | `00419caa` | `Catch@00419caa` | +| `Catch@00419d85` | `00419d85` | `Catch@00419d85` | +| `Catch@00419e4b` | `00419e4b` | `Catch@00419e4b` | +| `Catch@0041a6d4` | `0041a6d4` | `Catch@0041a6d4` | +| `Catch@0041a73c` | `0041a73c` | `Catch@0041a73c` | +| `Catch@0041a775` | `0041a775` | `Catch@0041a775` | +| `Catch@0041a7f6` | `0041a7f6` | `Catch@0041a7f6` | +| `Catch@0041aa04` | `0041aa04` | `Catch@0041aa04` | +| `Catch@0041aa69` | `0041aa69` | `Catch@0041aa69` | +| `Catch@0041aa9f` | `0041aa9f` | `Catch@0041aa9f` | +| `Catch@0041ab1d` | `0041ab1d` | `Catch@0041ab1d` | +| `Catch@0041b54b` | `0041b54b` | `Catch@0041b54b` | +| `Catch@0041b5b3` | `0041b5b3` | `Catch@0041b5b3` | +| `Catch@0041b5ec` | `0041b5ec` | `Catch@0041b5ec` | +| `Catch@0041b66d` | `0041b66d` | `Catch@0041b66d` | +| `Catch@0041b7e2` | `0041b7e2` | `Catch@0041b7e2` | +| `Catch@0041b847` | `0041b847` | `Catch@0041b847` | +| `Catch@0041b87d` | `0041b87d` | `Catch@0041b87d` | +| `Catch@0041b8fb` | `0041b8fb` | `Catch@0041b8fb` | +| `Catch@0041bcf7` | `0041bcf7` | `Catch@0041bcf7` | +| `Catch@0041bdb6` | `0041bdb6` | `Catch@0041bdb6` | +| `Catch@0041bdef` | `0041bdef` | `Catch@0041bdef` | +| `Catch@0041be71` | `0041be71` | `Catch@0041be71` | +| `Catch@0041ccc9` | `0041ccc9` | `Catch@0041ccc9` | +| `Catch@0041cd50` | `0041cd50` | `Catch@0041cd50` | +| `Catch@0041cd6b` | `0041cd6b` | `Catch@0041cd6b` | +| `Catch@0041cdfd` | `0041cdfd` | `Catch@0041cdfd` | +| `Catch@0041db4a` | `0041db4a` | `Catch@0041db4a` | +| `Catch@0041dbb9` | `0041dbb9` | `Catch@0041dbb9` | +| `Catch@0041dbce` | `0041dbce` | `Catch@0041dbce` | +| `Catch@0041dc4b` | `0041dc4b` | `Catch@0041dc4b` | +| `Catch@0041e9cb` | `0041e9cb` | `Catch@0041e9cb` | +| `Catch@0041ea8a` | `0041ea8a` | `Catch@0041ea8a` | +| `Catch@0041eac3` | `0041eac3` | `Catch@0041eac3` | +| `Catch@0041eb45` | `0041eb45` | `Catch@0041eb45` | +| `Catch@0041ed60` | `0041ed60` | `Catch@0041ed60` | +| `Catch@0041edce` | `0041edce` | `Catch@0041edce` | +| `Catch@0041ede3` | `0041ede3` | `Catch@0041ede3` | +| `Catch@0041ee5f` | `0041ee5f` | `Catch@0041ee5f` | +| `Catch@0041f54b` | `0041f54b` | `Catch@0041f54b` | +| `Catch@0041f5c0` | `0041f5c0` | `Catch@0041f5c0` | +| `Catch@0041f5d8` | `0041f5d8` | `Catch@0041f5d8` | +| `Catch@0041f657` | `0041f657` | `Catch@0041f657` | +| `Catch@0041febd` | `0041febd` | `Catch@0041febd` | +| `Catch@0041ff42` | `0041ff42` | `Catch@0041ff42` | +| `Catch@0041ff5d` | `0041ff5d` | `Catch@0041ff5d` | +| `Catch@0041ffef` | `0041ffef` | `Catch@0041ffef` | +| `Catch@00420ee1` | `00420ee1` | `Catch@00420ee1` | +| `Catch@00420f50` | `00420f50` | `Catch@00420f50` | +| `Catch@00420f65` | `00420f65` | `Catch@00420f65` | +| `Catch@00420fe2` | `00420fe2` | `Catch@00420fe2` | +| `Catch@0042128e` | `0042128e` | `Catch@0042128e` | +| `Catch@004212f0` | `004212f0` | `Catch@004212f0` | +| `Catch@00421326` | `00421326` | `Catch@00421326` | +| `Catch@004213a1` | `004213a1` | `Catch@004213a1` | +| `Catch@004214cf` | `004214cf` | `Catch@004214cf` | +| `Catch@0042153b` | `0042153b` | `Catch@0042153b` | +| `Catch@00421550` | `00421550` | `Catch@00421550` | +| `Catch@004215ca` | `004215ca` | `Catch@004215ca` | +| `Catch@00421747` | `00421747` | `Catch@00421747` | +| `Catch@004217b3` | `004217b3` | `Catch@004217b3` | +| `Catch@004217c8` | `004217c8` | `Catch@004217c8` | +| `Catch@00421842` | `00421842` | `Catch@00421842` | +| `Catch@004219d9` | `004219d9` | `Catch@004219d9` | +| `Catch@00421a48` | `00421a48` | `Catch@00421a48` | +| `Catch@00421a5d` | `00421a5d` | `Catch@00421a5d` | +| `Catch@00421ada` | `00421ada` | `Catch@00421ada` | +| `Catch@00421ceb` | `00421ceb` | `Catch@00421ceb` | +| `Catch@00421d59` | `00421d59` | `Catch@00421d59` | +| `Catch@00421d6e` | `00421d6e` | `Catch@00421d6e` | +| `Catch@00421dea` | `00421dea` | `Catch@00421dea` | +| `Catch@00421f5b` | `00421f5b` | `Catch@00421f5b` | +| `Catch@00421fc9` | `00421fc9` | `Catch@00421fc9` | +| `Catch@00421fde` | `00421fde` | `Catch@00421fde` | +| `Catch@0042205a` | `0042205a` | `Catch@0042205a` | +| `Catch@004221cb` | `004221cb` | `Catch@004221cb` | +| `Catch@00422239` | `00422239` | `Catch@00422239` | +| `Catch@0042224e` | `0042224e` | `Catch@0042224e` | +| `Catch@004222ca` | `004222ca` | `Catch@004222ca` | +| `Catch@00422418` | `00422418` | `Catch@00422418` | +| `Catch@00422487` | `00422487` | `Catch@00422487` | +| `Catch@0042249c` | `0042249c` | `Catch@0042249c` | +| `Catch@00422519` | `00422519` | `Catch@00422519` | +| `Catch@00422638` | `00422638` | `Catch@00422638` | +| `Catch@004226a7` | `004226a7` | `Catch@004226a7` | +| `Catch@004226bc` | `004226bc` | `Catch@004226bc` | +| `Catch@00422739` | `00422739` | `Catch@00422739` | +| `Catch@00422880` | `00422880` | `Catch@00422880` | +| `Catch@004228ef` | `004228ef` | `Catch@004228ef` | +| `Catch@00422904` | `00422904` | `Catch@00422904` | +| `Catch@00422981` | `00422981` | `Catch@00422981` | +| `Catch@00422ac8` | `00422ac8` | `Catch@00422ac8` | +| `Catch@00422b37` | `00422b37` | `Catch@00422b37` | +| `Catch@00422b4c` | `00422b4c` | `Catch@00422b4c` | +| `Catch@00422bc9` | `00422bc9` | `Catch@00422bc9` | +| `??$AtlMultiply@K@ATL@@YAJPAKKK@Z` | `00422c19` | `AtlMultiply` | +| `?AtlCoTaskMemCAlloc@ATL@@YAPAXKK@Z` | `00422c3b` | `AtlCoTaskMemCAlloc` | +| `FID_conflict:RegCreateKeyExW` | `00422e02` | `FID_conflict:RegCreateKeyExW` | +| `?RegCreateKeyExA@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PBDKPADKKQAU_SECURITY_ATTRIBUTES@@PAPAU3@PAK@Z` | `00422e02` | `FID_conflict:RegCreateKeyExW` | +| `?RegCreateKeyExW@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PB_WKPA_WKKQAU_SECURITY_ATTRIBUTES@@PAPAU3@PAK@Z` | `00422e02` | `FID_conflict:RegCreateKeyExW` | +| `FID_conflict:RegDeleteKeyA` | `00422e65` | `FID_conflict:RegDeleteKeyA` | +| `?RegDeleteKeyW@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PB_W@Z` | `00422e65` | `FID_conflict:RegDeleteKeyA` | +| `?RegDeleteKeyA@CAtlTransactionManager@ATL@@QAEJPAUHKEY__@@PBD@Z` | `00422e65` | `FID_conflict:RegDeleteKeyA` | +| `DeleteSubKey` | `00422fe5` | `DeleteSubKey` | +| `Create` | `00423067` | `Create` | +| `SetDWORDValue` | `004230cf` | `SetDWORDValue` | +| `?SetStringValue@CRegKey@ATL@@QAEJPB_W0K@Z` | `004230eb` | `SetStringValue` | +| `Catch@00423936` | `00423936` | `Catch@00423936` | +| `??$AtlMultiplyThrow@I@ATL@@YAIII@Z` | `00424031` | `AtlMultiplyThrow` | +| `?InlineIsEqualUnknown@ATL@@YGHABU_GUID@@@Z` | `00424647` | `InlineIsEqualUnknown` | +| `?AtlInternalQueryInterface@ATL@@YGJPAXPBU_ATL_INTMAP_ENTRY@1@ABU_GUID@@PAPAX@Z` | `004249dc` | `AtlInternalQueryInterface` | +| `Release` | `00424aa1` | `Release` | +| `?_InternalQueryInterface@CAccessibleProxy@ATL@@QAEJABU_GUID@@PAPAX@Z` | `00424b26` | `_InternalQueryInterface` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `00424b98` | `QueryInterface` | +| `Allocate` | `00425b46` | `Allocate` | +| `Allocate` | `00425b75` | `Allocate` | +| `Allocate` | `00425ba4` | `Allocate` | +| `Release` | `00425c1c` | `Release` | +| `?_InternalQueryInterface@CAccessibleProxy@ATL@@QAEJABU_GUID@@PAPAX@Z` | `00425c49` | `_InternalQueryInterface` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `00425c90` | `QueryInterface` | +| `Catch@00425d1d` | `00425d1d` | `Catch@00425d1d` | +| `Release` | `00425de1` | `Release` | +| `?_InternalQueryInterface@CAccessibleProxy@ATL@@QAEJABU_GUID@@PAPAX@Z` | `00425e52` | `_InternalQueryInterface` | +| `?QueryInterface@?$CMFCComObject@VCAccessibleProxy@ATL@@@@UAGJABU_GUID@@PAPAX@Z` | `00425ec2` | `QueryInterface` | +| `Release` | `00425f99` | `Release` | +| `Catch@0042620f` | `0042620f` | `Catch@0042620f` | +| `Catch@0042625d` | `0042625d` | `Catch@0042625d` | +| `Catch@00426484` | `00426484` | `Catch@00426484` | +| `Catch@004265dc` | `004265dc` | `Catch@004265dc` | +| `Catch@00427716` | `00427716` | `Catch@00427716` | +| `Catch@004277bc` | `004277bc` | `Catch@004277bc` | +| `Catch@00427876` | `00427876` | `Catch@00427876` | +| `Release` | `00427927` | `Release` | +| `Catch@00427e52` | `00427e52` | `Catch@00427e52` | +| `Catch@00427f69` | `00427f69` | `Catch@00427f69` | +| `GetAdaptersInfo` | `0042932c` | `GetAdaptersInfo` | +| `GetAdaptersAddresses` | `00429332` | `GetAdaptersAddresses` | +| `NotifyAddrChange` | `00429338` | `NotifyAddrChange` | +| `GetUserNameExW` | `0042933e` | `GetUserNameExW` | +| `?memmove_s@Checked@ATL@@YAXPAXIPBXI@Z` | `00429390` | `memmove_s` | +| `?RemoveAt@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHH@Z` | `004293d9` | `RemoveAt` | +| `??0?$CComCritSecLock@VCComCriticalSection@ATL@@@ATL@@QAE@AAVCComCriticalSection@1@_N@Z` | `0042946e` | `CComCritSecLock` | +| `?RemoveResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `004294f5` | `RemoveResourceInstance` | +| `?GetHInstanceAt@CAtlBaseModule@ATL@@QAEPAUHINSTANCE__@@H@Z` | `0042955e` | `GetHInstanceAt` | +| `?Add@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHABQAUHINSTANCE__@@@Z` | `004295bb` | `Add` | +| `?AddResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `00429677` | `AddResourceInstance` | +| `VarBstrCat` | `00429a38` | `VarBstrCat` | +| `_com_issue_errorex` | `00429ad0` | `_com_issue_errorex` | +| `?_com_issue_errorex@@YGXJPAUIUnknown@@ABU_GUID@@@Z` | `00429ad0` | `_com_issue_errorex` | +| `_com_dispatch_method` | `00429b50` | `_com_dispatch_method` | +| `?_com_dispatch_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `00429b50` | `_com_dispatch_method` | +| `_com_dispatch_propget` | `00429ba0` | `_com_dispatch_propget` | +| `?_com_dispatch_propget@@YGJPAUIDispatch@@JGPAX@Z` | `00429ba0` | `_com_dispatch_propget` | +| `_com_dispatch_propput` | `00429bd0` | `_com_dispatch_propput` | +| `?_com_dispatch_propput@@YAJPAUIDispatch@@JGZZ` | `00429bd0` | `_com_dispatch_propput` | +| `_com_invoke_helper` | `00429ca0` | `_com_invoke_helper` | +| `?_com_invoke_helper@@YAJPAUIDispatch@@JGGPAXPBGPADPAPAUIErrorInfo@@@Z` | `00429ca0` | `_com_invoke_helper` | +| `_com_dispatch_raw_method` | `0042a270` | `_com_dispatch_raw_method` | +| `?_com_dispatch_raw_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `0042a270` | `_com_dispatch_raw_method` | +| `_com_dispatch_raw_propget` | `0042a2c0` | `_com_dispatch_raw_propget` | +| `?_com_dispatch_raw_propget@@YGJPAUIDispatch@@JGPAX@Z` | `0042a2c0` | `_com_dispatch_raw_propget` | +| `_com_dispatch_raw_propput` | `0042a2f0` | `_com_dispatch_raw_propput` | +| `?_com_dispatch_raw_propput@@YAJPAUIDispatch@@JGZZ` | `0042a2f0` | `_com_dispatch_raw_propput` | +| `_com_handle_excepinfo` | `0042a390` | `_com_handle_excepinfo` | +| `?_com_handle_excepinfo@@YGJAAUtagEXCEPINFO@@PAPAUIErrorInfo@@@Z` | `0042a390` | `_com_handle_excepinfo` | +| `_Lock` | `0042a4a6` | `_Lock` | +| `_Unlock` | `0042a4ac` | `_Unlock` | +| `showmanyc` | `0042a4b2` | `showmanyc` | +| `uflow` | `0042a4b8` | `uflow` | +| `xsgetn` | `0042a4be` | `xsgetn` | +| `xsputn` | `0042a4c4` | `xsputn` | +| `setbuf` | `0042a4ca` | `setbuf` | +| `sync` | `0042a4d0` | `sync` | +| `imbue` | `0042a4d6` | `imbue` | +| `___tmainCRTStartup` | `0042a5b2` | `___tmainCRTStartup` | +| `entry` | `0042a884` | `entry` | +| `operator_delete` | `0042a88e` | `operator_delete` | +| `FID_conflict:\`vector_deleting_destructor'` | `0042a8a5` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Etype_info@@UAEPAXI@Z` | `0042a8a5` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_ECDaoRelationFieldInfo@@UAEPAXI@Z` | `0042a8a5` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Elogic_error@@UAEPAXI@Z` | `0042a8a5` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@std@@UAEPAXI@Z` | `0042a8a5` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@@UAEPAXI@Z` | `0042a8a5` | `FID_conflict:\`vector_deleting_destructor'` | +| `memcpy` | `0042a8f6` | `memcpy` | +| `_CxxThrowException` | `0042a902` | `_CxxThrowException` | +| `__CxxFrameHandler3` | `0042a90e` | `__CxxFrameHandler3` | +| `__security_check_cookie` | `0042a914` | `__security_check_cookie` | +| `@__security_check_cookie@4` | `0042a914` | `__security_check_cookie` | +| `__EH_prolog3` | `0042a923` | `__EH_prolog3` | +| `__EH_prolog3_catch` | `0042a956` | `__EH_prolog3_catch` | +| `__EH_prolog3_GS` | `0042a98c` | `__EH_prolog3_GS` | +| `__EH_prolog3_catch_GS` | `0042a9c2` | `__EH_prolog3_catch_GS` | +| `__EH_epilog3` | `0042a9fb` | `__EH_epilog3` | +| `memset` | `0042aa2e` | `memset` | +| `operator_new` | `0042aa40` | `operator_new` | +| `operator_delete[]` | `0042aa46` | `operator_delete[]` | +| `what` | `0042aa58` | `what` | +| `free` | `0042aa76` | `free` | +| `_recalloc` | `0042aa88` | `_recalloc` | +| `__ArrayUnwind` | `0042aaa0` | `__ArrayUnwind` | +| `?__ArrayUnwind@@YGXPAXIHP6EX0@Z@Z` | `0042aaa0` | `__ArrayUnwind` | +| `\`eh_vector_destructor_iterator'` | `0042aafe` | `\`eh_vector_destructor_iterator'` | +| `??_M@YGXPAXIHP6EX0@Z@Z` | `0042aafe` | `\`eh_vector_destructor_iterator'` | +| `__alloca_probe` | `0042ab80` | `__alloca_probe` | +| `__chkstk` | `0042ab80` | `__alloca_probe` | +| `__onexit` | `0042abab` | `__onexit` | +| `_atexit` | `0042ac4c` | `_atexit` | +| `memcmp` | `0042ac6a` | `memcmp` | +| `__alloca_probe_16` | `0042ac80` | `__alloca_probe_16` | +| `__alloca_probe_8` | `0042ac96` | `__alloca_probe_8` | +| `__aulldiv` | `0042acb0` | `__aulldiv` | +| `__alldiv` | `0042ad30` | `__alldiv` | +| `__allmul` | `0042ade0` | `__allmul` | +| `purecall` | `0042ae2c` | `purecall` | +| `memmove_s` | `0042ae38` | `memmove_s` | +| `__CxxUnhandledExceptionFilter` | `0042ae65` | `__CxxUnhandledExceptionFilter` | +| `?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z` | `0042ae65` | `__CxxUnhandledExceptionFilter` | +| `_amsg_exit` | `0042aeb6` | `_amsg_exit` | +| `__ValidateImageBase` | `0042af30` | `__ValidateImageBase` | +| `__FindPESection` | `0042af70` | `__FindPESection` | +| `__IsNonwritableInCurrentImage` | `0042afd0` | `__IsNonwritableInCurrentImage` | +| `initterm` | `0042b08c` | `initterm` | +| `initterm_e` | `0042b092` | `initterm_e` | +| `__SEH_prolog4` | `0042b0a0` | `__SEH_prolog4` | +| `__SEH_epilog4` | `0042b0e5` | `__SEH_epilog4` | +| `___security_init_cookie` | `0042b15c` | `___security_init_cookie` | +| `___report_gsfailure` | `0042b1f7` | `___report_gsfailure` | +| `terminate` | `0042b2fe` | `terminate` | +| `_unlock` | `0042b304` | `_unlock` | +| `__dllonexit` | `0042b30a` | `__dllonexit` | +| `_lock` | `0042b310` | `_lock` | +| `except_handler4_common` | `0042b316` | `except_handler4_common` | +| `_type_info_dtor_internal_method` | `0042b328` | `_type_info_dtor_internal_method` | +| `_crt_debugger_hook` | `0042b32e` | `_crt_debugger_hook` | +| `Unwind@0042b394` | `0042b394` | `Unwind@0042b394` | +| `Unwind@0042b3b7` | `0042b3b7` | `Unwind@0042b3b7` | +| `Unwind@0042b3db` | `0042b3db` | `Unwind@0042b3db` | +| `Unwind@0042b3ff` | `0042b3ff` | `Unwind@0042b3ff` | +| `Unwind@0042b423` | `0042b423` | `Unwind@0042b423` | +| `Unwind@0042b446` | `0042b446` | `Unwind@0042b446` | +| `Unwind@0042b46a` | `0042b46a` | `Unwind@0042b46a` | +| `Unwind@0042b48e` | `0042b48e` | `Unwind@0042b48e` | +| `Unwind@0042b4b2` | `0042b4b2` | `Unwind@0042b4b2` | +| `Unwind@0042b4db` | `0042b4db` | `Unwind@0042b4db` | +| `Unwind@0042b504` | `0042b504` | `Unwind@0042b504` | +| `Unwind@0042b527` | `0042b527` | `Unwind@0042b527` | +| `Unwind@0042b54a` | `0042b54a` | `Unwind@0042b54a` | +| `Unwind@0042b56f` | `0042b56f` | `Unwind@0042b56f` | +| `Unwind@0042b594` | `0042b594` | `Unwind@0042b594` | +| `Unwind@0042b5b7` | `0042b5b7` | `Unwind@0042b5b7` | +| `Unwind@0042b5c2` | `0042b5c2` | `Unwind@0042b5c2` | +| `Unwind@0042b5f5` | `0042b5f5` | `Unwind@0042b5f5` | +| `Unwind@0042b618` | `0042b618` | `Unwind@0042b618` | +| `Unwind@0042b63c` | `0042b63c` | `Unwind@0042b63c` | +| `Unwind@0042b65f` | `0042b65f` | `Unwind@0042b65f` | +| `Unwind@0042b69d` | `0042b69d` | `Unwind@0042b69d` | +| `Unwind@0042b6c0` | `0042b6c0` | `Unwind@0042b6c0` | +| `Unwind@0042b6e9` | `0042b6e9` | `Unwind@0042b6e9` | +| `Unwind@0042b712` | `0042b712` | `Unwind@0042b712` | +| `Unwind@0042b735` | `0042b735` | `Unwind@0042b735` | +| `Unwind@0042b768` | `0042b768` | `Unwind@0042b768` | +| `Unwind@0042b770` | `0042b770` | `Unwind@0042b770` | +| `Unwind@0042b778` | `0042b778` | `Unwind@0042b778` | +| `Unwind@0042b79b` | `0042b79b` | `Unwind@0042b79b` | +| `Unwind@0042b7a7` | `0042b7a7` | `Unwind@0042b7a7` | +| `Unwind@0042b7cd` | `0042b7cd` | `Unwind@0042b7cd` | +| `Unwind@0042b7f1` | `0042b7f1` | `Unwind@0042b7f1` | +| `Unwind@0042b814` | `0042b814` | `Unwind@0042b814` | +| `Unwind@0042b838` | `0042b838` | `Unwind@0042b838` | +| `Unwind@0042b841` | `0042b841` | `Unwind@0042b841` | +| `Unwind@0042b85e` | `0042b85e` | `Unwind@0042b85e` | +| `Unwind@0042b86a` | `0042b86a` | `Unwind@0042b86a` | +| `Unwind@0042b8ab` | `0042b8ab` | `Unwind@0042b8ab` | +| `Unwind@0042b8df` | `0042b8df` | `Unwind@0042b8df` | +| `Unwind@0042b913` | `0042b913` | `Unwind@0042b913` | +| `Unwind@0042b91b` | `0042b91b` | `Unwind@0042b91b` | +| `Unwind@0042b941` | `0042b941` | `Unwind@0042b941` | +| `Unwind@0042b949` | `0042b949` | `Unwind@0042b949` | +| `Unwind@0042b96f` | `0042b96f` | `Unwind@0042b96f` | +| `Unwind@0042b977` | `0042b977` | `Unwind@0042b977` | +| `Unwind@0042b99d` | `0042b99d` | `Unwind@0042b99d` | +| `Unwind@0042b9a5` | `0042b9a5` | `Unwind@0042b9a5` | +| `Unwind@0042b9cb` | `0042b9cb` | `Unwind@0042b9cb` | +| `Unwind@0042b9d3` | `0042b9d3` | `Unwind@0042b9d3` | +| `Unwind@0042b9ec` | `0042b9ec` | `Unwind@0042b9ec` | +| `Unwind@0042b9f4` | `0042b9f4` | `Unwind@0042b9f4` | +| `Unwind@0042ba3c` | `0042ba3c` | `Unwind@0042ba3c` | +| `Unwind@0042ba70` | `0042ba70` | `Unwind@0042ba70` | +| `Unwind@0042baa4` | `0042baa4` | `Unwind@0042baa4` | +| `Unwind@0042bad8` | `0042bad8` | `Unwind@0042bad8` | +| `Unwind@0042bae3` | `0042bae3` | `Unwind@0042bae3` | +| `Unwind@0042baee` | `0042baee` | `Unwind@0042baee` | +| `Unwind@0042baf9` | `0042baf9` | `Unwind@0042baf9` | +| `Unwind@0042bb04` | `0042bb04` | `Unwind@0042bb04` | +| `Unwind@0042bb0f` | `0042bb0f` | `Unwind@0042bb0f` | +| `Unwind@0042bb1a` | `0042bb1a` | `Unwind@0042bb1a` | +| `Unwind@0042bb25` | `0042bb25` | `Unwind@0042bb25` | +| `Unwind@0042bb30` | `0042bb30` | `Unwind@0042bb30` | +| `Unwind@0042bb7a` | `0042bb7a` | `Unwind@0042bb7a` | +| `Unwind@0042bbae` | `0042bbae` | `Unwind@0042bbae` | +| `Unwind@0042bbb6` | `0042bbb6` | `Unwind@0042bbb6` | +| `Unwind@0042bbea` | `0042bbea` | `Unwind@0042bbea` | +| `Unwind@0042bbf2` | `0042bbf2` | `Unwind@0042bbf2` | +| `Unwind@0042bbfa` | `0042bbfa` | `Unwind@0042bbfa` | +| `Unwind@0042bc13` | `0042bc13` | `Unwind@0042bc13` | +| `Unwind@0042bc1b` | `0042bc1b` | `Unwind@0042bc1b` | +| `Unwind@0042bc3e` | `0042bc3e` | `Unwind@0042bc3e` | +| `Unwind@0042bc46` | `0042bc46` | `Unwind@0042bc46` | +| `Unwind@0042bc4e` | `0042bc4e` | `Unwind@0042bc4e` | +| `Unwind@0042bc59` | `0042bc59` | `Unwind@0042bc59` | +| `Unwind@0042bc61` | `0042bc61` | `Unwind@0042bc61` | +| `Unwind@0042bc69` | `0042bc69` | `Unwind@0042bc69` | +| `Unwind@0042bc71` | `0042bc71` | `Unwind@0042bc71` | +| `Unwind@0042bca1` | `0042bca1` | `Unwind@0042bca1` | +| `Unwind@0042bcac` | `0042bcac` | `Unwind@0042bcac` | +| `Unwind@0042bcb7` | `0042bcb7` | `Unwind@0042bcb7` | +| `Unwind@0042bcc2` | `0042bcc2` | `Unwind@0042bcc2` | +| `Unwind@0042bccd` | `0042bccd` | `Unwind@0042bccd` | +| `Unwind@0042bcd8` | `0042bcd8` | `Unwind@0042bcd8` | +| `Unwind@0042bce3` | `0042bce3` | `Unwind@0042bce3` | +| `Unwind@0042bd05` | `0042bd05` | `Unwind@0042bd05` | +| `Unwind@0042bd4f` | `0042bd4f` | `Unwind@0042bd4f` | +| `Unwind@0042bd57` | `0042bd57` | `Unwind@0042bd57` | +| `Unwind@0042bd5f` | `0042bd5f` | `Unwind@0042bd5f` | +| `Unwind@0042bd82` | `0042bd82` | `Unwind@0042bd82` | +| `Unwind@0042bd8a` | `0042bd8a` | `Unwind@0042bd8a` | +| `Unwind@0042bd92` | `0042bd92` | `Unwind@0042bd92` | +| `Unwind@0042bdb5` | `0042bdb5` | `Unwind@0042bdb5` | +| `Unwind@0042bdbd` | `0042bdbd` | `Unwind@0042bdbd` | +| `Unwind@0042bdc5` | `0042bdc5` | `Unwind@0042bdc5` | +| `Unwind@0042bdcd` | `0042bdcd` | `Unwind@0042bdcd` | +| `Unwind@0042bdd5` | `0042bdd5` | `Unwind@0042bdd5` | +| `Unwind@0042bddd` | `0042bddd` | `Unwind@0042bddd` | +| `Unwind@0042be00` | `0042be00` | `Unwind@0042be00` | +| `Unwind@0042be08` | `0042be08` | `Unwind@0042be08` | +| `Unwind@0042be10` | `0042be10` | `Unwind@0042be10` | +| `Unwind@0042be18` | `0042be18` | `Unwind@0042be18` | +| `Unwind@0042be20` | `0042be20` | `Unwind@0042be20` | +| `Unwind@0042be28` | `0042be28` | `Unwind@0042be28` | +| `Unwind@0042be4b` | `0042be4b` | `Unwind@0042be4b` | +| `Unwind@0042be53` | `0042be53` | `Unwind@0042be53` | +| `Unwind@0042be5b` | `0042be5b` | `Unwind@0042be5b` | +| `Unwind@0042be63` | `0042be63` | `Unwind@0042be63` | +| `Unwind@0042be6b` | `0042be6b` | `Unwind@0042be6b` | +| `Unwind@0042be73` | `0042be73` | `Unwind@0042be73` | +| `Unwind@0042be96` | `0042be96` | `Unwind@0042be96` | +| `Unwind@0042be9e` | `0042be9e` | `Unwind@0042be9e` | +| `Unwind@0042bea6` | `0042bea6` | `Unwind@0042bea6` | +| `Unwind@0042beae` | `0042beae` | `Unwind@0042beae` | +| `Unwind@0042beb6` | `0042beb6` | `Unwind@0042beb6` | +| `Unwind@0042bebe` | `0042bebe` | `Unwind@0042bebe` | +| `Unwind@0042bee1` | `0042bee1` | `Unwind@0042bee1` | +| `Unwind@0042bee9` | `0042bee9` | `Unwind@0042bee9` | +| `Unwind@0042bef1` | `0042bef1` | `Unwind@0042bef1` | +| `Unwind@0042bef9` | `0042bef9` | `Unwind@0042bef9` | +| `Unwind@0042bf01` | `0042bf01` | `Unwind@0042bf01` | +| `Unwind@0042bf09` | `0042bf09` | `Unwind@0042bf09` | +| `Unwind@0042bf2c` | `0042bf2c` | `Unwind@0042bf2c` | +| `Unwind@0042bf34` | `0042bf34` | `Unwind@0042bf34` | +| `Unwind@0042bf3c` | `0042bf3c` | `Unwind@0042bf3c` | +| `Unwind@0042bf44` | `0042bf44` | `Unwind@0042bf44` | +| `Unwind@0042bf4c` | `0042bf4c` | `Unwind@0042bf4c` | +| `Unwind@0042bf54` | `0042bf54` | `Unwind@0042bf54` | +| `Unwind@0042bf77` | `0042bf77` | `Unwind@0042bf77` | +| `Unwind@0042bf7f` | `0042bf7f` | `Unwind@0042bf7f` | +| `Unwind@0042bf87` | `0042bf87` | `Unwind@0042bf87` | +| `Unwind@0042bf8f` | `0042bf8f` | `Unwind@0042bf8f` | +| `Unwind@0042bf97` | `0042bf97` | `Unwind@0042bf97` | +| `Unwind@0042bf9f` | `0042bf9f` | `Unwind@0042bf9f` | +| `Unwind@0042bfc2` | `0042bfc2` | `Unwind@0042bfc2` | +| `Unwind@0042bfca` | `0042bfca` | `Unwind@0042bfca` | +| `Unwind@0042bfed` | `0042bfed` | `Unwind@0042bfed` | +| `Unwind@0042bff5` | `0042bff5` | `Unwind@0042bff5` | +| `Unwind@0042c018` | `0042c018` | `Unwind@0042c018` | +| `Unwind@0042c03b` | `0042c03b` | `Unwind@0042c03b` | +| `Unwind@0042c068` | `0042c068` | `Unwind@0042c068` | +| `Unwind@0042c08b` | `0042c08b` | `Unwind@0042c08b` | +| `Unwind@0042c0ae` | `0042c0ae` | `Unwind@0042c0ae` | +| `Unwind@0042c0d1` | `0042c0d1` | `Unwind@0042c0d1` | +| `Unwind@0042c0f6` | `0042c0f6` | `Unwind@0042c0f6` | +| `Unwind@0042c101` | `0042c101` | `Unwind@0042c101` | +| `Unwind@0042c124` | `0042c124` | `Unwind@0042c124` | +| `Unwind@0042c148` | `0042c148` | `Unwind@0042c148` | +| `Unwind@0042c16c` | `0042c16c` | `Unwind@0042c16c` | +| `Unwind@0042c190` | `0042c190` | `Unwind@0042c190` | +| `Unwind@0042c1b4` | `0042c1b4` | `Unwind@0042c1b4` | +| `Unwind@0042c1d8` | `0042c1d8` | `Unwind@0042c1d8` | +| `Unwind@0042c1fc` | `0042c1fc` | `Unwind@0042c1fc` | +| `Unwind@0042c220` | `0042c220` | `Unwind@0042c220` | +| `Unwind@0042c244` | `0042c244` | `Unwind@0042c244` | +| `Unwind@0042c268` | `0042c268` | `Unwind@0042c268` | +| `Unwind@0042c28c` | `0042c28c` | `Unwind@0042c28c` | +| `Unwind@0042c2b0` | `0042c2b0` | `Unwind@0042c2b0` | +| `Unwind@0042c2d4` | `0042c2d4` | `Unwind@0042c2d4` | +| `Unwind@0042c2f8` | `0042c2f8` | `Unwind@0042c2f8` | +| `Unwind@0042c321` | `0042c321` | `Unwind@0042c321` | +| `Unwind@0042c34a` | `0042c34a` | `Unwind@0042c34a` | +| `Unwind@0042c373` | `0042c373` | `Unwind@0042c373` | +| `Unwind@0042c39c` | `0042c39c` | `Unwind@0042c39c` | +| `Unwind@0042c3c5` | `0042c3c5` | `Unwind@0042c3c5` | +| `Unwind@0042c3ee` | `0042c3ee` | `Unwind@0042c3ee` | +| `Unwind@0042c412` | `0042c412` | `Unwind@0042c412` | +| `Unwind@0042c41d` | `0042c41d` | `Unwind@0042c41d` | +| `Unwind@0042c440` | `0042c440` | `Unwind@0042c440` | +| `Unwind@0042c466` | `0042c466` | `Unwind@0042c466` | +| `Unwind@0042c48c` | `0042c48c` | `Unwind@0042c48c` | +| `Unwind@0042c4af` | `0042c4af` | `Unwind@0042c4af` | +| `Unwind@0042c4f9` | `0042c4f9` | `Unwind@0042c4f9` | +| `Unwind@0042c526` | `0042c526` | `Unwind@0042c526` | +| `Unwind@0042c549` | `0042c549` | `Unwind@0042c549` | +| `Unwind@0042c56c` | `0042c56c` | `Unwind@0042c56c` | +| `Unwind@0042c58f` | `0042c58f` | `Unwind@0042c58f` | +| `Unwind@0042c5b2` | `0042c5b2` | `Unwind@0042c5b2` | +| `Unwind@0042c5d5` | `0042c5d5` | `Unwind@0042c5d5` | +| `Unwind@0042c5f8` | `0042c5f8` | `Unwind@0042c5f8` | +| `Unwind@0042c61b` | `0042c61b` | `Unwind@0042c61b` | +| `Unwind@0042c63e` | `0042c63e` | `Unwind@0042c63e` | +| `Unwind@0042c661` | `0042c661` | `Unwind@0042c661` | +| `Unwind@0042c684` | `0042c684` | `Unwind@0042c684` | +| `Unwind@0042c68c` | `0042c68c` | `Unwind@0042c68c` | +| `Unwind@0042c6af` | `0042c6af` | `Unwind@0042c6af` | +| `Unwind@0042c6d2` | `0042c6d2` | `Unwind@0042c6d2` | +| `Unwind@0042c6f5` | `0042c6f5` | `Unwind@0042c6f5` | +| `Unwind@0042c718` | `0042c718` | `Unwind@0042c718` | +| `Unwind@0042c73b` | `0042c73b` | `Unwind@0042c73b` | +| `Unwind@0042c75e` | `0042c75e` | `Unwind@0042c75e` | +| `Unwind@0042c781` | `0042c781` | `Unwind@0042c781` | +| `Unwind@0042c7a4` | `0042c7a4` | `Unwind@0042c7a4` | +| `Unwind@0042c7ac` | `0042c7ac` | `Unwind@0042c7ac` | +| `Unwind@0042c7cf` | `0042c7cf` | `Unwind@0042c7cf` | +| `Unwind@0042c7f2` | `0042c7f2` | `Unwind@0042c7f2` | +| `Unwind@0042c815` | `0042c815` | `Unwind@0042c815` | +| `Unwind@0042c838` | `0042c838` | `Unwind@0042c838` | +| `Unwind@0042c85b` | `0042c85b` | `Unwind@0042c85b` | +| `Unwind@0042c87e` | `0042c87e` | `Unwind@0042c87e` | +| `Unwind@0042c8a1` | `0042c8a1` | `Unwind@0042c8a1` | +| `Unwind@0042c8c4` | `0042c8c4` | `Unwind@0042c8c4` | +| `Unwind@0042c8e7` | `0042c8e7` | `Unwind@0042c8e7` | +| `Unwind@0042c90a` | `0042c90a` | `Unwind@0042c90a` | +| `Unwind@0042c912` | `0042c912` | `Unwind@0042c912` | +| `Unwind@0042c91a` | `0042c91a` | `Unwind@0042c91a` | +| `Unwind@0042c93d` | `0042c93d` | `Unwind@0042c93d` | +| `Unwind@0042c945` | `0042c945` | `Unwind@0042c945` | +| `Unwind@0042c94d` | `0042c94d` | `Unwind@0042c94d` | +| `Unwind@0042c955` | `0042c955` | `Unwind@0042c955` | +| `Unwind@0042c978` | `0042c978` | `Unwind@0042c978` | +| `Unwind@0042c980` | `0042c980` | `Unwind@0042c980` | +| `Unwind@0042c988` | `0042c988` | `Unwind@0042c988` | +| `Unwind@0042c9ab` | `0042c9ab` | `Unwind@0042c9ab` | +| `Unwind@0042c9b3` | `0042c9b3` | `Unwind@0042c9b3` | +| `Unwind@0042c9bb` | `0042c9bb` | `Unwind@0042c9bb` | +| `Unwind@0042c9c3` | `0042c9c3` | `Unwind@0042c9c3` | +| `Unwind@0042c9e6` | `0042c9e6` | `Unwind@0042c9e6` | +| `Unwind@0042ca09` | `0042ca09` | `Unwind@0042ca09` | +| `Unwind@0042ca2c` | `0042ca2c` | `Unwind@0042ca2c` | +| `Unwind@0042ca4f` | `0042ca4f` | `Unwind@0042ca4f` | +| `Unwind@0042ca75` | `0042ca75` | `Unwind@0042ca75` | +| `Unwind@0042ca7d` | `0042ca7d` | `Unwind@0042ca7d` | +| `Unwind@0042caa0` | `0042caa0` | `Unwind@0042caa0` | +| `Unwind@0042caa8` | `0042caa8` | `Unwind@0042caa8` | +| `Unwind@0042cacb` | `0042cacb` | `Unwind@0042cacb` | +| `Unwind@0042cad3` | `0042cad3` | `Unwind@0042cad3` | +| `Unwind@0042caf6` | `0042caf6` | `Unwind@0042caf6` | +| `Unwind@0042cb19` | `0042cb19` | `Unwind@0042cb19` | +| `Unwind@0042cb3c` | `0042cb3c` | `Unwind@0042cb3c` | +| `Unwind@0042cb5f` | `0042cb5f` | `Unwind@0042cb5f` | +| `Unwind@0042cb82` | `0042cb82` | `Unwind@0042cb82` | +| `Unwind@0042cba5` | `0042cba5` | `Unwind@0042cba5` | +| `Unwind@0042cbc8` | `0042cbc8` | `Unwind@0042cbc8` | +| `Unwind@0042cbeb` | `0042cbeb` | `Unwind@0042cbeb` | +| `Unwind@0042cbf3` | `0042cbf3` | `Unwind@0042cbf3` | +| `Unwind@0042cc16` | `0042cc16` | `Unwind@0042cc16` | +| `Unwind@0042cc1e` | `0042cc1e` | `Unwind@0042cc1e` | +| `Unwind@0042cc41` | `0042cc41` | `Unwind@0042cc41` | +| `Unwind@0042cc49` | `0042cc49` | `Unwind@0042cc49` | +| `Unwind@0042cc87` | `0042cc87` | `Unwind@0042cc87` | +| `Unwind@0042cc8f` | `0042cc8f` | `Unwind@0042cc8f` | +| `Unwind@0042cc97` | `0042cc97` | `Unwind@0042cc97` | +| `Unwind@0042ccd5` | `0042ccd5` | `Unwind@0042ccd5` | +| `Unwind@0042ccdd` | `0042ccdd` | `Unwind@0042ccdd` | +| `Unwind@0042cd11` | `0042cd11` | `Unwind@0042cd11` | +| `Unwind@0042cd19` | `0042cd19` | `Unwind@0042cd19` | +| `Unwind@0042cd21` | `0042cd21` | `Unwind@0042cd21` | +| `Unwind@0042cd44` | `0042cd44` | `Unwind@0042cd44` | +| `Unwind@0042cd67` | `0042cd67` | `Unwind@0042cd67` | +| `Unwind@0042cd6f` | `0042cd6f` | `Unwind@0042cd6f` | +| `Unwind@0042cd77` | `0042cd77` | `Unwind@0042cd77` | +| `Unwind@0042cdb5` | `0042cdb5` | `Unwind@0042cdb5` | +| `Unwind@0042cdde` | `0042cdde` | `Unwind@0042cdde` | +| `Unwind@0042ce07` | `0042ce07` | `Unwind@0042ce07` | +| `Unwind@0042ce30` | `0042ce30` | `Unwind@0042ce30` | +| `Unwind@0042ce59` | `0042ce59` | `Unwind@0042ce59` | +| `Unwind@0042ce82` | `0042ce82` | `Unwind@0042ce82` | +| `Unwind@0042ceab` | `0042ceab` | `Unwind@0042ceab` | +| `Unwind@0042cf04` | `0042cf04` | `Unwind@0042cf04` | +| `Unwind@0042cf31` | `0042cf31` | `Unwind@0042cf31` | +| `Unwind@0042cf57` | `0042cf57` | `Unwind@0042cf57` | +| `Unwind@0042cf7a` | `0042cf7a` | `Unwind@0042cf7a` | +| `Unwind@0042cf9d` | `0042cf9d` | `Unwind@0042cf9d` | +| `Unwind@0042cfab` | `0042cfab` | `Unwind@0042cfab` | +| `Unwind@0042cfb9` | `0042cfb9` | `Unwind@0042cfb9` | +| `Unwind@0042cfef` | `0042cfef` | `Unwind@0042cfef` | +| `Unwind@0042cffa` | `0042cffa` | `Unwind@0042cffa` | +| `Unwind@0042d005` | `0042d005` | `Unwind@0042d005` | +| `Unwind@0042d010` | `0042d010` | `Unwind@0042d010` | +| `Unwind@0042d043` | `0042d043` | `Unwind@0042d043` | +| `Unwind@0042d076` | `0042d076` | `Unwind@0042d076` | +| `Unwind@0042d081` | `0042d081` | `Unwind@0042d081` | +| `Unwind@0042d08c` | `0042d08c` | `Unwind@0042d08c` | +| `Unwind@0042d097` | `0042d097` | `Unwind@0042d097` | +| `Unwind@0042d0a2` | `0042d0a2` | `Unwind@0042d0a2` | +| `Unwind@0042d0d5` | `0042d0d5` | `Unwind@0042d0d5` | +| `Unwind@0042d0fb` | `0042d0fb` | `Unwind@0042d0fb` | +| `Unwind@0042d106` | `0042d106` | `Unwind@0042d106` | +| `Unwind@0042d12c` | `0042d12c` | `Unwind@0042d12c` | +| `Unwind@0042d137` | `0042d137` | `Unwind@0042d137` | +| `Unwind@0042d15d` | `0042d15d` | `Unwind@0042d15d` | +| `Unwind@0042d18a` | `0042d18a` | `Unwind@0042d18a` | +| `Unwind@0042d192` | `0042d192` | `Unwind@0042d192` | +| `Unwind@0042d1c6` | `0042d1c6` | `Unwind@0042d1c6` | +| `Unwind@0042d1e9` | `0042d1e9` | `Unwind@0042d1e9` | +| `Unwind@0042d20c` | `0042d20c` | `Unwind@0042d20c` | +| `Unwind@0042d22f` | `0042d22f` | `Unwind@0042d22f` | +| `Unwind@0042d252` | `0042d252` | `Unwind@0042d252` | +| `Unwind@0042d275` | `0042d275` | `Unwind@0042d275` | +| `Unwind@0042d298` | `0042d298` | `Unwind@0042d298` | +| `Unwind@0042d2bb` | `0042d2bb` | `Unwind@0042d2bb` | +| `Unwind@0042d2de` | `0042d2de` | `Unwind@0042d2de` | +| `Unwind@0042d301` | `0042d301` | `Unwind@0042d301` | +| `Unwind@0042d324` | `0042d324` | `Unwind@0042d324` | +| `Unwind@0042d37d` | `0042d37d` | `Unwind@0042d37d` | +| `Unwind@0042d385` | `0042d385` | `Unwind@0042d385` | +| `Unwind@0042d3b9` | `0042d3b9` | `Unwind@0042d3b9` | +| `Unwind@0042d3c1` | `0042d3c1` | `Unwind@0042d3c1` | +| `Unwind@0042d3c9` | `0042d3c9` | `Unwind@0042d3c9` | +| `Unwind@0042d3ec` | `0042d3ec` | `Unwind@0042d3ec` | +| `Unwind@0042d3f4` | `0042d3f4` | `Unwind@0042d3f4` | +| `Unwind@0042d3fc` | `0042d3fc` | `Unwind@0042d3fc` | +| `Unwind@0042d404` | `0042d404` | `Unwind@0042d404` | +| `Unwind@0042d427` | `0042d427` | `Unwind@0042d427` | +| `Unwind@0042d42f` | `0042d42f` | `Unwind@0042d42f` | +| `Unwind@0042d463` | `0042d463` | `Unwind@0042d463` | +| `Unwind@0042d46b` | `0042d46b` | `Unwind@0042d46b` | +| `Unwind@0042d473` | `0042d473` | `Unwind@0042d473` | +| `Unwind@0042d47b` | `0042d47b` | `Unwind@0042d47b` | +| `Unwind@0042d49e` | `0042d49e` | `Unwind@0042d49e` | +| `Unwind@0042d4c1` | `0042d4c1` | `Unwind@0042d4c1` | +| `Unwind@0042d4e4` | `0042d4e4` | `Unwind@0042d4e4` | +| `Unwind@0042d50a` | `0042d50a` | `Unwind@0042d50a` | +| `Unwind@0042d515` | `0042d515` | `Unwind@0042d515` | +| `Unwind@0042d53b` | `0042d53b` | `Unwind@0042d53b` | +| `Unwind@0042d546` | `0042d546` | `Unwind@0042d546` | +| `Unwind@0042d56c` | `0042d56c` | `Unwind@0042d56c` | +| `Unwind@0042d577` | `0042d577` | `Unwind@0042d577` | +| `Unwind@0042d59d` | `0042d59d` | `Unwind@0042d59d` | +| `Unwind@0042d5c3` | `0042d5c3` | `Unwind@0042d5c3` | +| `Unwind@0042d604` | `0042d604` | `Unwind@0042d604` | +| `Unwind@0042d62d` | `0042d62d` | `Unwind@0042d62d` | +| `Unwind@0042d656` | `0042d656` | `Unwind@0042d656` | +| `Unwind@0042d67f` | `0042d67f` | `Unwind@0042d67f` | +| `Unwind@0042d6a5` | `0042d6a5` | `Unwind@0042d6a5` | +| `Unwind@0042d6cb` | `0042d6cb` | `Unwind@0042d6cb` | +| `Unwind@0042d6f1` | `0042d6f1` | `Unwind@0042d6f1` | +| `Unwind@0042d6f9` | `0042d6f9` | `Unwind@0042d6f9` | +| `Unwind@0042d701` | `0042d701` | `Unwind@0042d701` | +| `Unwind@0042d709` | `0042d709` | `Unwind@0042d709` | +| `Unwind@0042d736` | `0042d736` | `Unwind@0042d736` | +| `Unwind@0042d759` | `0042d759` | `Unwind@0042d759` | +| `Unwind@0042d77c` | `0042d77c` | `Unwind@0042d77c` | +| `Unwind@0042d79f` | `0042d79f` | `Unwind@0042d79f` | +| `Unwind@0042d7c2` | `0042d7c2` | `Unwind@0042d7c2` | +| `Unwind@0042d887` | `0042d887` | `Unwind@0042d887` | +| `Unwind@0042d8aa` | `0042d8aa` | `Unwind@0042d8aa` | +| `Unwind@0042d8cd` | `0042d8cd` | `Unwind@0042d8cd` | +| `Unwind@0042d8f6` | `0042d8f6` | `Unwind@0042d8f6` | +| `Unwind@0042d919` | `0042d919` | `Unwind@0042d919` | +| `Unwind@0042d93c` | `0042d93c` | `Unwind@0042d93c` | +| `Unwind@0042d95f` | `0042d95f` | `Unwind@0042d95f` | +| `Unwind@0042d982` | `0042d982` | `Unwind@0042d982` | +| `Unwind@0042d9c0` | `0042d9c0` | `Unwind@0042d9c0` | +| `Unwind@0042d9e3` | `0042d9e3` | `Unwind@0042d9e3` | +| `Unwind@0042da06` | `0042da06` | `Unwind@0042da06` | +| `Unwind@0042da29` | `0042da29` | `Unwind@0042da29` | +| `Unwind@0042da4c` | `0042da4c` | `Unwind@0042da4c` | +| `Unwind@0042da6f` | `0042da6f` | `Unwind@0042da6f` | +| `Unwind@0042daad` | `0042daad` | `Unwind@0042daad` | +| `Unwind@0042dab5` | `0042dab5` | `Unwind@0042dab5` | +| `Unwind@0042dae9` | `0042dae9` | `Unwind@0042dae9` | +| `Unwind@0042daf1` | `0042daf1` | `Unwind@0042daf1` | +| `Unwind@0042db25` | `0042db25` | `Unwind@0042db25` | +| `Unwind@0042db99` | `0042db99` | `Unwind@0042db99` | +| `Unwind@0042dbbc` | `0042dbbc` | `Unwind@0042dbbc` | +| `Unwind@0042dbfa` | `0042dbfa` | `Unwind@0042dbfa` | +| `Unwind@0042dc23` | `0042dc23` | `Unwind@0042dc23` | +| `Unwind@0042dc4c` | `0042dc4c` | `Unwind@0042dc4c` | +| `Unwind@0042dc75` | `0042dc75` | `Unwind@0042dc75` | +| `Unwind@0042dc98` | `0042dc98` | `Unwind@0042dc98` | +| `Unwind@0042dcbb` | `0042dcbb` | `Unwind@0042dcbb` | +| `Unwind@0042dcde` | `0042dcde` | `Unwind@0042dcde` | +| `Unwind@0042dd01` | `0042dd01` | `Unwind@0042dd01` | +| `Unwind@0042dd09` | `0042dd09` | `Unwind@0042dd09` | +| `Unwind@0042dd2c` | `0042dd2c` | `Unwind@0042dd2c` | +| `Unwind@0042dd34` | `0042dd34` | `Unwind@0042dd34` | +| `Unwind@0042dd57` | `0042dd57` | `Unwind@0042dd57` | +| `Unwind@0042dd5f` | `0042dd5f` | `Unwind@0042dd5f` | +| `Unwind@0042dd82` | `0042dd82` | `Unwind@0042dd82` | +| `Unwind@0042dd8a` | `0042dd8a` | `Unwind@0042dd8a` | +| `Unwind@0042dde3` | `0042dde3` | `Unwind@0042dde3` | +| `Unwind@0042de06` | `0042de06` | `Unwind@0042de06` | +| `Unwind@0042de29` | `0042de29` | `Unwind@0042de29` | +| `Unwind@0042de4c` | `0042de4c` | `Unwind@0042de4c` | +| `Unwind@0042de57` | `0042de57` | `Unwind@0042de57` | +| `Unwind@0042de62` | `0042de62` | `Unwind@0042de62` | +| `Unwind@0042de6d` | `0042de6d` | `Unwind@0042de6d` | +| `Unwind@0042de7b` | `0042de7b` | `Unwind@0042de7b` | +| `Unwind@0042de89` | `0042de89` | `Unwind@0042de89` | +| `Unwind@0042debc` | `0042debc` | `Unwind@0042debc` | +| `Unwind@0042dec7` | `0042dec7` | `Unwind@0042dec7` | +| `Unwind@0042ded2` | `0042ded2` | `Unwind@0042ded2` | +| `Unwind@0042dedd` | `0042dedd` | `Unwind@0042dedd` | +| `Unwind@0042deeb` | `0042deeb` | `Unwind@0042deeb` | +| `Unwind@0042def9` | `0042def9` | `Unwind@0042def9` | +| `Unwind@0042df07` | `0042df07` | `Unwind@0042df07` | +| `Unwind@0042df0f` | `0042df0f` | `Unwind@0042df0f` | +| `Unwind@0042df32` | `0042df32` | `Unwind@0042df32` | +| `Unwind@0042df8b` | `0042df8b` | `Unwind@0042df8b` | +| `Unwind@0042dfae` | `0042dfae` | `Unwind@0042dfae` | +| `Unwind@0042dfd1` | `0042dfd1` | `Unwind@0042dfd1` | +| `Unwind@0042dff4` | `0042dff4` | `Unwind@0042dff4` | +| `Unwind@0042dffc` | `0042dffc` | `Unwind@0042dffc` | +| `Unwind@0042e055` | `0042e055` | `Unwind@0042e055` | +| `Unwind@0042e078` | `0042e078` | `Unwind@0042e078` | +| `Unwind@0042e086` | `0042e086` | `Unwind@0042e086` | +| `Unwind@0042e094` | `0042e094` | `Unwind@0042e094` | +| `Unwind@0042e0a2` | `0042e0a2` | `Unwind@0042e0a2` | +| `Unwind@0042e0d5` | `0042e0d5` | `Unwind@0042e0d5` | +| `Unwind@0042e0dd` | `0042e0dd` | `Unwind@0042e0dd` | +| `Unwind@0042e0e5` | `0042e0e5` | `Unwind@0042e0e5` | +| `Unwind@0042e0ed` | `0042e0ed` | `Unwind@0042e0ed` | +| `Unwind@0042e110` | `0042e110` | `Unwind@0042e110` | +| `Unwind@0042e118` | `0042e118` | `Unwind@0042e118` | +| `Unwind@0042e120` | `0042e120` | `Unwind@0042e120` | +| `Unwind@0042e128` | `0042e128` | `Unwind@0042e128` | +| `Unwind@0042e14b` | `0042e14b` | `Unwind@0042e14b` | +| `Unwind@0042e16e` | `0042e16e` | `Unwind@0042e16e` | +| `Unwind@0042e176` | `0042e176` | `Unwind@0042e176` | +| `Unwind@0042e1b4` | `0042e1b4` | `Unwind@0042e1b4` | +| `Unwind@0042e1d7` | `0042e1d7` | `Unwind@0042e1d7` | +| `Unwind@0042e1fa` | `0042e1fa` | `Unwind@0042e1fa` | +| `Unwind@0042e21d` | `0042e21d` | `Unwind@0042e21d` | +| `Unwind@0042e25b` | `0042e25b` | `Unwind@0042e25b` | +| `Unwind@0042e27e` | `0042e27e` | `Unwind@0042e27e` | +| `Unwind@0042e2a1` | `0042e2a1` | `Unwind@0042e2a1` | +| `Unwind@0042e2c4` | `0042e2c4` | `Unwind@0042e2c4` | +| `Unwind@0042e2cc` | `0042e2cc` | `Unwind@0042e2cc` | +| `Unwind@0042e2ef` | `0042e2ef` | `Unwind@0042e2ef` | +| `Unwind@0042e32d` | `0042e32d` | `Unwind@0042e32d` | +| `Unwind@0042e335` | `0042e335` | `Unwind@0042e335` | +| `Unwind@0042e33d` | `0042e33d` | `Unwind@0042e33d` | +| `Unwind@0042e348` | `0042e348` | `Unwind@0042e348` | +| `Unwind@0042e353` | `0042e353` | `Unwind@0042e353` | +| `Unwind@0042e35b` | `0042e35b` | `Unwind@0042e35b` | +| `Unwind@0042e363` | `0042e363` | `Unwind@0042e363` | +| `Unwind@0042e36b` | `0042e36b` | `Unwind@0042e36b` | +| `Unwind@0042e373` | `0042e373` | `Unwind@0042e373` | +| `Unwind@0042e37b` | `0042e37b` | `Unwind@0042e37b` | +| `Unwind@0042e386` | `0042e386` | `Unwind@0042e386` | +| `Unwind@0042e391` | `0042e391` | `Unwind@0042e391` | +| `Unwind@0042e399` | `0042e399` | `Unwind@0042e399` | +| `Unwind@0042e3a1` | `0042e3a1` | `Unwind@0042e3a1` | +| `Unwind@0042e3c7` | `0042e3c7` | `Unwind@0042e3c7` | +| `Unwind@0042e3ea` | `0042e3ea` | `Unwind@0042e3ea` | +| `Unwind@0042e40d` | `0042e40d` | `Unwind@0042e40d` | +| `Unwind@0042e415` | `0042e415` | `Unwind@0042e415` | +| `Unwind@0042e41d` | `0042e41d` | `Unwind@0042e41d` | +| `Unwind@0042e425` | `0042e425` | `Unwind@0042e425` | +| `Unwind@0042e42d` | `0042e42d` | `Unwind@0042e42d` | +| `Unwind@0042e450` | `0042e450` | `Unwind@0042e450` | +| `Unwind@0042e458` | `0042e458` | `Unwind@0042e458` | +| `Unwind@0042e460` | `0042e460` | `Unwind@0042e460` | +| `Unwind@0042e468` | `0042e468` | `Unwind@0042e468` | +| `Unwind@0042e470` | `0042e470` | `Unwind@0042e470` | +| `Unwind@0042e478` | `0042e478` | `Unwind@0042e478` | +| `Unwind@0042e480` | `0042e480` | `Unwind@0042e480` | +| `Unwind@0042e488` | `0042e488` | `Unwind@0042e488` | +| `Unwind@0042e490` | `0042e490` | `Unwind@0042e490` | +| `Unwind@0042e498` | `0042e498` | `Unwind@0042e498` | +| `Unwind@0042e4bb` | `0042e4bb` | `Unwind@0042e4bb` | +| `Unwind@0042e4c3` | `0042e4c3` | `Unwind@0042e4c3` | +| `Unwind@0042e4cb` | `0042e4cb` | `Unwind@0042e4cb` | +| `Unwind@0042e4d3` | `0042e4d3` | `Unwind@0042e4d3` | +| `Unwind@0042e4db` | `0042e4db` | `Unwind@0042e4db` | +| `Unwind@0042e4e3` | `0042e4e3` | `Unwind@0042e4e3` | +| `Unwind@0042e4eb` | `0042e4eb` | `Unwind@0042e4eb` | +| `Unwind@0042e4f3` | `0042e4f3` | `Unwind@0042e4f3` | +| `Unwind@0042e4fb` | `0042e4fb` | `Unwind@0042e4fb` | +| `Unwind@0042e503` | `0042e503` | `Unwind@0042e503` | +| `Unwind@0042e526` | `0042e526` | `Unwind@0042e526` | +| `Unwind@0042e52e` | `0042e52e` | `Unwind@0042e52e` | +| `Unwind@0042e536` | `0042e536` | `Unwind@0042e536` | +| `Unwind@0042e53e` | `0042e53e` | `Unwind@0042e53e` | +| `Unwind@0042e546` | `0042e546` | `Unwind@0042e546` | +| `Unwind@0042e54e` | `0042e54e` | `Unwind@0042e54e` | +| `Unwind@0042e556` | `0042e556` | `Unwind@0042e556` | +| `Unwind@0042e583` | `0042e583` | `Unwind@0042e583` | +| `Unwind@0042e58b` | `0042e58b` | `Unwind@0042e58b` | +| `Unwind@0042e593` | `0042e593` | `Unwind@0042e593` | +| `Unwind@0042e59b` | `0042e59b` | `Unwind@0042e59b` | +| `Unwind@0042e5a3` | `0042e5a3` | `Unwind@0042e5a3` | +| `Unwind@0042e5ab` | `0042e5ab` | `Unwind@0042e5ab` | +| `Unwind@0042e5b3` | `0042e5b3` | `Unwind@0042e5b3` | +| `Unwind@0042e5d6` | `0042e5d6` | `Unwind@0042e5d6` | +| `Unwind@0042e5f9` | `0042e5f9` | `Unwind@0042e5f9` | +| `Unwind@0042e601` | `0042e601` | `Unwind@0042e601` | +| `Unwind@0042e609` | `0042e609` | `Unwind@0042e609` | +| `Unwind@0042e611` | `0042e611` | `Unwind@0042e611` | +| `Unwind@0042e619` | `0042e619` | `Unwind@0042e619` | +| `Unwind@0042e621` | `0042e621` | `Unwind@0042e621` | +| `Unwind@0042e629` | `0042e629` | `Unwind@0042e629` | +| `Unwind@0042e631` | `0042e631` | `Unwind@0042e631` | +| `Unwind@0042e639` | `0042e639` | `Unwind@0042e639` | +| `Unwind@0042e65c` | `0042e65c` | `Unwind@0042e65c` | +| `Unwind@0042e664` | `0042e664` | `Unwind@0042e664` | +| `Unwind@0042e66c` | `0042e66c` | `Unwind@0042e66c` | +| `Unwind@0042e674` | `0042e674` | `Unwind@0042e674` | +| `Unwind@0042e67c` | `0042e67c` | `Unwind@0042e67c` | +| `Unwind@0042e684` | `0042e684` | `Unwind@0042e684` | +| `Unwind@0042e68c` | `0042e68c` | `Unwind@0042e68c` | +| `Unwind@0042e6af` | `0042e6af` | `Unwind@0042e6af` | +| `Unwind@0042e6d2` | `0042e6d2` | `Unwind@0042e6d2` | +| `Unwind@0042e6f5` | `0042e6f5` | `Unwind@0042e6f5` | +| `Unwind@0042e718` | `0042e718` | `Unwind@0042e718` | +| `Unwind@0042e73b` | `0042e73b` | `Unwind@0042e73b` | +| `Unwind@0042e75e` | `0042e75e` | `Unwind@0042e75e` | +| `Unwind@0042e781` | `0042e781` | `Unwind@0042e781` | +| `Unwind@0042e789` | `0042e789` | `Unwind@0042e789` | +| `Unwind@0042e791` | `0042e791` | `Unwind@0042e791` | +| `Unwind@0042e79b` | `0042e79b` | `Unwind@0042e79b` | +| `Unwind@0042e7a3` | `0042e7a3` | `Unwind@0042e7a3` | +| `Unwind@0042e7ab` | `0042e7ab` | `Unwind@0042e7ab` | +| `Unwind@0042e7b3` | `0042e7b3` | `Unwind@0042e7b3` | +| `Unwind@0042e7e0` | `0042e7e0` | `Unwind@0042e7e0` | +| `Unwind@0042e7e8` | `0042e7e8` | `Unwind@0042e7e8` | +| `Unwind@0042e7f0` | `0042e7f0` | `Unwind@0042e7f0` | +| `Unwind@0042e7f8` | `0042e7f8` | `Unwind@0042e7f8` | +| `Unwind@0042e800` | `0042e800` | `Unwind@0042e800` | +| `Unwind@0042e808` | `0042e808` | `Unwind@0042e808` | +| `Unwind@0042e810` | `0042e810` | `Unwind@0042e810` | +| `Unwind@0042e81b` | `0042e81b` | `Unwind@0042e81b` | +| `Unwind@0042e844` | `0042e844` | `Unwind@0042e844` | +| `Unwind@0042e867` | `0042e867` | `Unwind@0042e867` | +| `Unwind@0042e88a` | `0042e88a` | `Unwind@0042e88a` | +| `Unwind@0042e892` | `0042e892` | `Unwind@0042e892` | +| `Unwind@0042e8b5` | `0042e8b5` | `Unwind@0042e8b5` | +| `Unwind@0042e8bd` | `0042e8bd` | `Unwind@0042e8bd` | +| `Unwind@0042e8e0` | `0042e8e0` | `Unwind@0042e8e0` | +| `Unwind@0042e8eb` | `0042e8eb` | `Unwind@0042e8eb` | +| `Unwind@0042e8f6` | `0042e8f6` | `Unwind@0042e8f6` | +| `Unwind@0042e8fe` | `0042e8fe` | `Unwind@0042e8fe` | +| `Unwind@0042e909` | `0042e909` | `Unwind@0042e909` | +| `Unwind@0042e911` | `0042e911` | `Unwind@0042e911` | +| `Unwind@0042e91c` | `0042e91c` | `Unwind@0042e91c` | +| `Unwind@0042e92a` | `0042e92a` | `Unwind@0042e92a` | +| `Unwind@0042e932` | `0042e932` | `Unwind@0042e932` | +| `Unwind@0042e95b` | `0042e95b` | `Unwind@0042e95b` | +| `Unwind@0042e984` | `0042e984` | `Unwind@0042e984` | +| `Unwind@0042e98f` | `0042e98f` | `Unwind@0042e98f` | +| `Unwind@0042e99a` | `0042e99a` | `Unwind@0042e99a` | +| `Unwind@0042e9a5` | `0042e9a5` | `Unwind@0042e9a5` | +| `Unwind@0042e9b0` | `0042e9b0` | `Unwind@0042e9b0` | +| `Unwind@0042e9be` | `0042e9be` | `Unwind@0042e9be` | +| `Unwind@0042e9e7` | `0042e9e7` | `Unwind@0042e9e7` | +| `Unwind@0042e9f2` | `0042e9f2` | `Unwind@0042e9f2` | +| `Unwind@0042e9fd` | `0042e9fd` | `Unwind@0042e9fd` | +| `Unwind@0042ea08` | `0042ea08` | `Unwind@0042ea08` | +| `Unwind@0042ea13` | `0042ea13` | `Unwind@0042ea13` | +| `Unwind@0042ea21` | `0042ea21` | `Unwind@0042ea21` | +| `Unwind@0042ea4a` | `0042ea4a` | `Unwind@0042ea4a` | +| `Unwind@0042ea55` | `0042ea55` | `Unwind@0042ea55` | +| `Unwind@0042ea60` | `0042ea60` | `Unwind@0042ea60` | +| `Unwind@0042ea6b` | `0042ea6b` | `Unwind@0042ea6b` | +| `Unwind@0042ea76` | `0042ea76` | `Unwind@0042ea76` | +| `Unwind@0042ea84` | `0042ea84` | `Unwind@0042ea84` | +| `Unwind@0042ea92` | `0042ea92` | `Unwind@0042ea92` | +| `Unwind@0042ea9a` | `0042ea9a` | `Unwind@0042ea9a` | +| `Unwind@0042eaa2` | `0042eaa2` | `Unwind@0042eaa2` | +| `Unwind@0042eac5` | `0042eac5` | `Unwind@0042eac5` | +| `Unwind@0042eacd` | `0042eacd` | `Unwind@0042eacd` | +| `Unwind@0042ead5` | `0042ead5` | `Unwind@0042ead5` | +| `Unwind@0042eadd` | `0042eadd` | `Unwind@0042eadd` | +| `Unwind@0042eae5` | `0042eae5` | `Unwind@0042eae5` | +| `Unwind@0042eaf0` | `0042eaf0` | `Unwind@0042eaf0` | +| `Unwind@0042eaf8` | `0042eaf8` | `Unwind@0042eaf8` | +| `Unwind@0042eb00` | `0042eb00` | `Unwind@0042eb00` | +| `Unwind@0042eb08` | `0042eb08` | `Unwind@0042eb08` | +| `Unwind@0042eb10` | `0042eb10` | `Unwind@0042eb10` | +| `Unwind@0042eb18` | `0042eb18` | `Unwind@0042eb18` | +| `Unwind@0042eb20` | `0042eb20` | `Unwind@0042eb20` | +| `Unwind@0042eb2b` | `0042eb2b` | `Unwind@0042eb2b` | +| `Unwind@0042eb33` | `0042eb33` | `Unwind@0042eb33` | +| `Unwind@0042eb3e` | `0042eb3e` | `Unwind@0042eb3e` | +| `Unwind@0042eb49` | `0042eb49` | `Unwind@0042eb49` | +| `Unwind@0042eb51` | `0042eb51` | `Unwind@0042eb51` | +| `Unwind@0042eb77` | `0042eb77` | `Unwind@0042eb77` | +| `Unwind@0042eba0` | `0042eba0` | `Unwind@0042eba0` | +| `Unwind@0042ebc6` | `0042ebc6` | `Unwind@0042ebc6` | +| `Unwind@0042ebce` | `0042ebce` | `Unwind@0042ebce` | +| `Unwind@0042ebd6` | `0042ebd6` | `Unwind@0042ebd6` | +| `Unwind@0042ebde` | `0042ebde` | `Unwind@0042ebde` | +| `Unwind@0042ebe6` | `0042ebe6` | `Unwind@0042ebe6` | +| `Unwind@0042ebee` | `0042ebee` | `Unwind@0042ebee` | +| `Unwind@0042ebf6` | `0042ebf6` | `Unwind@0042ebf6` | +| `Unwind@0042ebfe` | `0042ebfe` | `Unwind@0042ebfe` | +| `Unwind@0042ec06` | `0042ec06` | `Unwind@0042ec06` | +| `Unwind@0042ec29` | `0042ec29` | `Unwind@0042ec29` | +| `Unwind@0042ec6a` | `0042ec6a` | `Unwind@0042ec6a` | +| `Unwind@0042ecab` | `0042ecab` | `Unwind@0042ecab` | +| `Unwind@0042ecd1` | `0042ecd1` | `Unwind@0042ecd1` | +| `Unwind@0042ecf7` | `0042ecf7` | `Unwind@0042ecf7` | +| `Unwind@0042ed02` | `0042ed02` | `Unwind@0042ed02` | +| `Unwind@0042ed28` | `0042ed28` | `Unwind@0042ed28` | +| `Unwind@0042ed33` | `0042ed33` | `Unwind@0042ed33` | +| `Unwind@0042ed3b` | `0042ed3b` | `Unwind@0042ed3b` | +| `Unwind@0042ed43` | `0042ed43` | `Unwind@0042ed43` | +| `Unwind@0042ed4b` | `0042ed4b` | `Unwind@0042ed4b` | +| `Unwind@0042ed53` | `0042ed53` | `Unwind@0042ed53` | +| `Unwind@0042ed5b` | `0042ed5b` | `Unwind@0042ed5b` | +| `Unwind@0042ed63` | `0042ed63` | `Unwind@0042ed63` | +| `Unwind@0042ed6b` | `0042ed6b` | `Unwind@0042ed6b` | +| `Unwind@0042ed73` | `0042ed73` | `Unwind@0042ed73` | +| `Unwind@0042ed7b` | `0042ed7b` | `Unwind@0042ed7b` | +| `Unwind@0042ed83` | `0042ed83` | `Unwind@0042ed83` | +| `Unwind@0042ed8b` | `0042ed8b` | `Unwind@0042ed8b` | +| `Unwind@0042ed93` | `0042ed93` | `Unwind@0042ed93` | +| `Unwind@0042ed9b` | `0042ed9b` | `Unwind@0042ed9b` | +| `Unwind@0042eda3` | `0042eda3` | `Unwind@0042eda3` | +| `Unwind@0042edd3` | `0042edd3` | `Unwind@0042edd3` | +| `Unwind@0042eddb` | `0042eddb` | `Unwind@0042eddb` | +| `Unwind@0042ede3` | `0042ede3` | `Unwind@0042ede3` | +| `Unwind@0042edeb` | `0042edeb` | `Unwind@0042edeb` | +| `Unwind@0042edf3` | `0042edf3` | `Unwind@0042edf3` | +| `Unwind@0042edfb` | `0042edfb` | `Unwind@0042edfb` | +| `Unwind@0042ee03` | `0042ee03` | `Unwind@0042ee03` | +| `Unwind@0042ee30` | `0042ee30` | `Unwind@0042ee30` | +| `Unwind@0042ee3b` | `0042ee3b` | `Unwind@0042ee3b` | +| `Unwind@0042ee43` | `0042ee43` | `Unwind@0042ee43` | +| `Unwind@0042ee4b` | `0042ee4b` | `Unwind@0042ee4b` | +| `Unwind@0042ee53` | `0042ee53` | `Unwind@0042ee53` | +| `Unwind@0042ee5b` | `0042ee5b` | `Unwind@0042ee5b` | +| `Unwind@0042ee63` | `0042ee63` | `Unwind@0042ee63` | +| `Unwind@0042ee93` | `0042ee93` | `Unwind@0042ee93` | +| `Unwind@0042ee9b` | `0042ee9b` | `Unwind@0042ee9b` | +| `Unwind@0042eea3` | `0042eea3` | `Unwind@0042eea3` | +| `Unwind@0042eeab` | `0042eeab` | `Unwind@0042eeab` | +| `Unwind@0042eeb3` | `0042eeb3` | `Unwind@0042eeb3` | +| `Unwind@0042eebb` | `0042eebb` | `Unwind@0042eebb` | +| `Unwind@0042eec3` | `0042eec3` | `Unwind@0042eec3` | +| `Unwind@0042eecb` | `0042eecb` | `Unwind@0042eecb` | +| `Unwind@0042eeee` | `0042eeee` | `Unwind@0042eeee` | +| `Unwind@0042eef6` | `0042eef6` | `Unwind@0042eef6` | +| `Unwind@0042eefe` | `0042eefe` | `Unwind@0042eefe` | +| `Unwind@0042ef06` | `0042ef06` | `Unwind@0042ef06` | +| `Unwind@0042ef11` | `0042ef11` | `Unwind@0042ef11` | +| `Unwind@0042ef19` | `0042ef19` | `Unwind@0042ef19` | +| `Unwind@0042ef21` | `0042ef21` | `Unwind@0042ef21` | +| `Unwind@0042ef29` | `0042ef29` | `Unwind@0042ef29` | +| `Unwind@0042ef31` | `0042ef31` | `Unwind@0042ef31` | +| `Unwind@0042ef39` | `0042ef39` | `Unwind@0042ef39` | +| `Unwind@0042ef41` | `0042ef41` | `Unwind@0042ef41` | +| `Unwind@0042ef67` | `0042ef67` | `Unwind@0042ef67` | +| `Unwind@0042ef6f` | `0042ef6f` | `Unwind@0042ef6f` | +| `Unwind@0042ef98` | `0042ef98` | `Unwind@0042ef98` | +| `Unwind@0042efbb` | `0042efbb` | `Unwind@0042efbb` | +| `Unwind@0042efc6` | `0042efc6` | `Unwind@0042efc6` | +| `Unwind@0042efd1` | `0042efd1` | `Unwind@0042efd1` | +| `Unwind@0042efdf` | `0042efdf` | `Unwind@0042efdf` | +| `Unwind@0042efed` | `0042efed` | `Unwind@0042efed` | +| `Unwind@0042effb` | `0042effb` | `Unwind@0042effb` | +| `Unwind@0042f009` | `0042f009` | `Unwind@0042f009` | +| `Unwind@0042f017` | `0042f017` | `Unwind@0042f017` | +| `Unwind@0042f01f` | `0042f01f` | `Unwind@0042f01f` | +| `Unwind@0042f02d` | `0042f02d` | `Unwind@0042f02d` | +| `Unwind@0042f035` | `0042f035` | `Unwind@0042f035` | +| `Unwind@0042f03d` | `0042f03d` | `Unwind@0042f03d` | +| `Unwind@0042f04b` | `0042f04b` | `Unwind@0042f04b` | +| `Unwind@0042f053` | `0042f053` | `Unwind@0042f053` | +| `Unwind@0042f061` | `0042f061` | `Unwind@0042f061` | +| `Unwind@0042f069` | `0042f069` | `Unwind@0042f069` | +| `Unwind@0042f071` | `0042f071` | `Unwind@0042f071` | +| `Unwind@0042f07f` | `0042f07f` | `Unwind@0042f07f` | +| `Unwind@0042f087` | `0042f087` | `Unwind@0042f087` | +| `Unwind@0042f08f` | `0042f08f` | `Unwind@0042f08f` | +| `Unwind@0042f09d` | `0042f09d` | `Unwind@0042f09d` | +| `Unwind@0042f0a5` | `0042f0a5` | `Unwind@0042f0a5` | +| `Unwind@0042f0b3` | `0042f0b3` | `Unwind@0042f0b3` | +| `Unwind@0042f0bb` | `0042f0bb` | `Unwind@0042f0bb` | +| `Unwind@0042f0c9` | `0042f0c9` | `Unwind@0042f0c9` | +| `Unwind@0042f0d7` | `0042f0d7` | `Unwind@0042f0d7` | +| `Unwind@0042f0e5` | `0042f0e5` | `Unwind@0042f0e5` | +| `Unwind@0042f0f3` | `0042f0f3` | `Unwind@0042f0f3` | +| `Unwind@0042f11c` | `0042f11c` | `Unwind@0042f11c` | +| `Unwind@0042f127` | `0042f127` | `Unwind@0042f127` | +| `Unwind@0042f132` | `0042f132` | `Unwind@0042f132` | +| `Unwind@0042f140` | `0042f140` | `Unwind@0042f140` | +| `Unwind@0042f14e` | `0042f14e` | `Unwind@0042f14e` | +| `Unwind@0042f15c` | `0042f15c` | `Unwind@0042f15c` | +| `Unwind@0042f16a` | `0042f16a` | `Unwind@0042f16a` | +| `Unwind@0042f178` | `0042f178` | `Unwind@0042f178` | +| `Unwind@0042f186` | `0042f186` | `Unwind@0042f186` | +| `Unwind@0042f194` | `0042f194` | `Unwind@0042f194` | +| `Unwind@0042f1a2` | `0042f1a2` | `Unwind@0042f1a2` | +| `Unwind@0042f1b0` | `0042f1b0` | `Unwind@0042f1b0` | +| `Unwind@0042f1be` | `0042f1be` | `Unwind@0042f1be` | +| `Unwind@0042f1cc` | `0042f1cc` | `Unwind@0042f1cc` | +| `Unwind@0042f1da` | `0042f1da` | `Unwind@0042f1da` | +| `Unwind@0042f1e8` | `0042f1e8` | `Unwind@0042f1e8` | +| `Unwind@0042f1f6` | `0042f1f6` | `Unwind@0042f1f6` | +| `Unwind@0042f204` | `0042f204` | `Unwind@0042f204` | +| `Unwind@0042f212` | `0042f212` | `Unwind@0042f212` | +| `Unwind@0042f21a` | `0042f21a` | `Unwind@0042f21a` | +| `Unwind@0042f222` | `0042f222` | `Unwind@0042f222` | +| `Unwind@0042f22a` | `0042f22a` | `Unwind@0042f22a` | +| `Unwind@0042f232` | `0042f232` | `Unwind@0042f232` | +| `Unwind@0042f23a` | `0042f23a` | `Unwind@0042f23a` | +| `Unwind@0042f242` | `0042f242` | `Unwind@0042f242` | +| `Unwind@0042f24a` | `0042f24a` | `Unwind@0042f24a` | +| `Unwind@0042f252` | `0042f252` | `Unwind@0042f252` | +| `Unwind@0042f25a` | `0042f25a` | `Unwind@0042f25a` | +| `Unwind@0042f262` | `0042f262` | `Unwind@0042f262` | +| `Unwind@0042f26a` | `0042f26a` | `Unwind@0042f26a` | +| `Unwind@0042f272` | `0042f272` | `Unwind@0042f272` | +| `Unwind@0042f295` | `0042f295` | `Unwind@0042f295` | +| `Unwind@0042f2a0` | `0042f2a0` | `Unwind@0042f2a0` | +| `Unwind@0042f2ab` | `0042f2ab` | `Unwind@0042f2ab` | +| `Unwind@0042f2b8` | `0042f2b8` | `Unwind@0042f2b8` | +| `Unwind@0042f2c3` | `0042f2c3` | `Unwind@0042f2c3` | +| `Unwind@0042f2ce` | `0042f2ce` | `Unwind@0042f2ce` | +| `Unwind@0042f2d9` | `0042f2d9` | `Unwind@0042f2d9` | +| `Unwind@0042f30c` | `0042f30c` | `Unwind@0042f30c` | +| `Unwind@0042f316` | `0042f316` | `Unwind@0042f316` | +| `Unwind@0042f31e` | `0042f31e` | `Unwind@0042f31e` | +| `Unwind@0042f34b` | `0042f34b` | `Unwind@0042f34b` | +| `Unwind@0042f353` | `0042f353` | `Unwind@0042f353` | +| `Unwind@0042f35b` | `0042f35b` | `Unwind@0042f35b` | +| `Unwind@0042f363` | `0042f363` | `Unwind@0042f363` | +| `Unwind@0042f36b` | `0042f36b` | `Unwind@0042f36b` | +| `Unwind@0042f38e` | `0042f38e` | `Unwind@0042f38e` | +| `Unwind@0042f396` | `0042f396` | `Unwind@0042f396` | +| `Unwind@0042f39e` | `0042f39e` | `Unwind@0042f39e` | +| `Unwind@0042f3c1` | `0042f3c1` | `Unwind@0042f3c1` | +| `Unwind@0042f3f1` | `0042f3f1` | `Unwind@0042f3f1` | +| `Unwind@0042f421` | `0042f421` | `Unwind@0042f421` | +| `Unwind@0042f429` | `0042f429` | `Unwind@0042f429` | +| `Unwind@0042f431` | `0042f431` | `Unwind@0042f431` | +| `Unwind@0042f439` | `0042f439` | `Unwind@0042f439` | +| `Unwind@0042f441` | `0042f441` | `Unwind@0042f441` | +| `Unwind@0042f449` | `0042f449` | `Unwind@0042f449` | +| `Unwind@0042f454` | `0042f454` | `Unwind@0042f454` | +| `Unwind@0042f45c` | `0042f45c` | `Unwind@0042f45c` | +| `Unwind@0042f464` | `0042f464` | `Unwind@0042f464` | +| `Unwind@0042f46c` | `0042f46c` | `Unwind@0042f46c` | +| `Unwind@0042f474` | `0042f474` | `Unwind@0042f474` | +| `Unwind@0042f49a` | `0042f49a` | `Unwind@0042f49a` | +| `Unwind@0042f4a2` | `0042f4a2` | `Unwind@0042f4a2` | +| `Unwind@0042f4aa` | `0042f4aa` | `Unwind@0042f4aa` | +| `Unwind@0042f4b2` | `0042f4b2` | `Unwind@0042f4b2` | +| `Unwind@0042f4ba` | `0042f4ba` | `Unwind@0042f4ba` | +| `Unwind@0042f4dd` | `0042f4dd` | `Unwind@0042f4dd` | +| `Unwind@0042f4e5` | `0042f4e5` | `Unwind@0042f4e5` | +| `Unwind@0042f4ed` | `0042f4ed` | `Unwind@0042f4ed` | +| `Unwind@0042f4f8` | `0042f4f8` | `Unwind@0042f4f8` | +| `Unwind@0042f503` | `0042f503` | `Unwind@0042f503` | +| `Unwind@0042f50e` | `0042f50e` | `Unwind@0042f50e` | +| `Unwind@0042f519` | `0042f519` | `Unwind@0042f519` | +| `Unwind@0042f524` | `0042f524` | `Unwind@0042f524` | +| `Unwind@0042f52c` | `0042f52c` | `Unwind@0042f52c` | +| `Unwind@0042f534` | `0042f534` | `Unwind@0042f534` | +| `Unwind@0042f53c` | `0042f53c` | `Unwind@0042f53c` | +| `Unwind@0042f56c` | `0042f56c` | `Unwind@0042f56c` | +| `Unwind@0042f577` | `0042f577` | `Unwind@0042f577` | +| `Unwind@0042f582` | `0042f582` | `Unwind@0042f582` | +| `Unwind@0042f58d` | `0042f58d` | `Unwind@0042f58d` | +| `Unwind@0042f598` | `0042f598` | `Unwind@0042f598` | +| `Unwind@0042f5a3` | `0042f5a3` | `Unwind@0042f5a3` | +| `Unwind@0042f5d6` | `0042f5d6` | `Unwind@0042f5d6` | +| `Unwind@0042f5fb` | `0042f5fb` | `Unwind@0042f5fb` | +| `Unwind@0042f603` | `0042f603` | `Unwind@0042f603` | +| `Unwind@0042f60b` | `0042f60b` | `Unwind@0042f60b` | +| `Unwind@0042f638` | `0042f638` | `Unwind@0042f638` | +| `Unwind@0042f640` | `0042f640` | `Unwind@0042f640` | +| `Unwind@0042f648` | `0042f648` | `Unwind@0042f648` | +| `Unwind@0042f652` | `0042f652` | `Unwind@0042f652` | +| `Unwind@0042f65a` | `0042f65a` | `Unwind@0042f65a` | +| `Unwind@0042f662` | `0042f662` | `Unwind@0042f662` | +| `Unwind@0042f66a` | `0042f66a` | `Unwind@0042f66a` | +| `Unwind@0042f68d` | `0042f68d` | `Unwind@0042f68d` | +| `Unwind@0042f6b2` | `0042f6b2` | `Unwind@0042f6b2` | +| `Unwind@0042f6d5` | `0042f6d5` | `Unwind@0042f6d5` | +| `Unwind@0042f6f8` | `0042f6f8` | `Unwind@0042f6f8` | +| `Unwind@0042f71b` | `0042f71b` | `Unwind@0042f71b` | +| `Unwind@0042f723` | `0042f723` | `Unwind@0042f723` | +| `Unwind@0042f72b` | `0042f72b` | `Unwind@0042f72b` | +| `Unwind@0042f733` | `0042f733` | `Unwind@0042f733` | +| `Unwind@0042f73b` | `0042f73b` | `Unwind@0042f73b` | +| `Unwind@0042f743` | `0042f743` | `Unwind@0042f743` | +| `Unwind@0042f74b` | `0042f74b` | `Unwind@0042f74b` | +| `Unwind@0042f753` | `0042f753` | `Unwind@0042f753` | +| `Unwind@0042f75b` | `0042f75b` | `Unwind@0042f75b` | +| `Unwind@0042f763` | `0042f763` | `Unwind@0042f763` | +| `Unwind@0042f76b` | `0042f76b` | `Unwind@0042f76b` | +| `Unwind@0042f78e` | `0042f78e` | `Unwind@0042f78e` | +| `Unwind@0042f796` | `0042f796` | `Unwind@0042f796` | +| `Unwind@0042f79e` | `0042f79e` | `Unwind@0042f79e` | +| `Unwind@0042f7a6` | `0042f7a6` | `Unwind@0042f7a6` | +| `Unwind@0042f7ae` | `0042f7ae` | `Unwind@0042f7ae` | +| `Unwind@0042f7b6` | `0042f7b6` | `Unwind@0042f7b6` | +| `Unwind@0042f7d9` | `0042f7d9` | `Unwind@0042f7d9` | +| `Unwind@0042f7e1` | `0042f7e1` | `Unwind@0042f7e1` | +| `Unwind@0042f7e9` | `0042f7e9` | `Unwind@0042f7e9` | +| `Unwind@0042f7f1` | `0042f7f1` | `Unwind@0042f7f1` | +| `Unwind@0042f7f9` | `0042f7f9` | `Unwind@0042f7f9` | +| `Unwind@0042f801` | `0042f801` | `Unwind@0042f801` | +| `Unwind@0042f809` | `0042f809` | `Unwind@0042f809` | +| `Unwind@0042f811` | `0042f811` | `Unwind@0042f811` | +| `Unwind@0042f819` | `0042f819` | `Unwind@0042f819` | +| `Unwind@0042f83c` | `0042f83c` | `Unwind@0042f83c` | +| `Unwind@0042f844` | `0042f844` | `Unwind@0042f844` | +| `Unwind@0042f84c` | `0042f84c` | `Unwind@0042f84c` | +| `Unwind@0042f854` | `0042f854` | `Unwind@0042f854` | +| `Unwind@0042f85c` | `0042f85c` | `Unwind@0042f85c` | +| `Unwind@0042f864` | `0042f864` | `Unwind@0042f864` | +| `Unwind@0042f887` | `0042f887` | `Unwind@0042f887` | +| `Unwind@0042f88f` | `0042f88f` | `Unwind@0042f88f` | +| `Unwind@0042f897` | `0042f897` | `Unwind@0042f897` | +| `Unwind@0042f89f` | `0042f89f` | `Unwind@0042f89f` | +| `Unwind@0042f8a7` | `0042f8a7` | `Unwind@0042f8a7` | +| `Unwind@0042f8af` | `0042f8af` | `Unwind@0042f8af` | +| `Unwind@0042f8d2` | `0042f8d2` | `Unwind@0042f8d2` | +| `Unwind@0042f8da` | `0042f8da` | `Unwind@0042f8da` | +| `Unwind@0042f8e2` | `0042f8e2` | `Unwind@0042f8e2` | +| `Unwind@0042f8ea` | `0042f8ea` | `Unwind@0042f8ea` | +| `Unwind@0042f8f2` | `0042f8f2` | `Unwind@0042f8f2` | +| `Unwind@0042f8fa` | `0042f8fa` | `Unwind@0042f8fa` | +| `Unwind@0042f91d` | `0042f91d` | `Unwind@0042f91d` | +| `Unwind@0042f925` | `0042f925` | `Unwind@0042f925` | +| `Unwind@0042f92d` | `0042f92d` | `Unwind@0042f92d` | +| `Unwind@0042f935` | `0042f935` | `Unwind@0042f935` | +| `Unwind@0042f93d` | `0042f93d` | `Unwind@0042f93d` | +| `Unwind@0042f945` | `0042f945` | `Unwind@0042f945` | +| `Unwind@0042f968` | `0042f968` | `Unwind@0042f968` | +| `Unwind@0042f970` | `0042f970` | `Unwind@0042f970` | +| `Unwind@0042f978` | `0042f978` | `Unwind@0042f978` | +| `Unwind@0042f980` | `0042f980` | `Unwind@0042f980` | +| `Unwind@0042f988` | `0042f988` | `Unwind@0042f988` | +| `Unwind@0042f990` | `0042f990` | `Unwind@0042f990` | +| `Unwind@0042f9b3` | `0042f9b3` | `Unwind@0042f9b3` | +| `Unwind@0042f9bb` | `0042f9bb` | `Unwind@0042f9bb` | +| `Unwind@0042f9c3` | `0042f9c3` | `Unwind@0042f9c3` | +| `Unwind@0042f9cb` | `0042f9cb` | `Unwind@0042f9cb` | +| `Unwind@0042f9d3` | `0042f9d3` | `Unwind@0042f9d3` | +| `Unwind@0042f9db` | `0042f9db` | `Unwind@0042f9db` | +| `Unwind@0042f9fe` | `0042f9fe` | `Unwind@0042f9fe` | +| `Unwind@0042fa06` | `0042fa06` | `Unwind@0042fa06` | +| `Unwind@0042fa0e` | `0042fa0e` | `Unwind@0042fa0e` | +| `Unwind@0042fa16` | `0042fa16` | `Unwind@0042fa16` | +| `Unwind@0042fa1e` | `0042fa1e` | `Unwind@0042fa1e` | +| `Unwind@0042fa26` | `0042fa26` | `Unwind@0042fa26` | +| `Unwind@0042fa49` | `0042fa49` | `Unwind@0042fa49` | +| `Unwind@0042fa51` | `0042fa51` | `Unwind@0042fa51` | +| `Unwind@0042fa59` | `0042fa59` | `Unwind@0042fa59` | +| `Unwind@0042fa61` | `0042fa61` | `Unwind@0042fa61` | +| `Unwind@0042fa69` | `0042fa69` | `Unwind@0042fa69` | +| `Unwind@0042fa71` | `0042fa71` | `Unwind@0042fa71` | +| `Unwind@0042fa94` | `0042fa94` | `Unwind@0042fa94` | +| `Unwind@0042fab7` | `0042fab7` | `Unwind@0042fab7` | +| `Unwind@0042fae0` | `0042fae0` | `Unwind@0042fae0` | +| `Unwind@0042fb1e` | `0042fb1e` | `Unwind@0042fb1e` | +| `Unwind@0042fb44` | `0042fb44` | `Unwind@0042fb44` | +| `Unwind@0042fb6a` | `0042fb6a` | `Unwind@0042fb6a` | +| `Unwind@0042fb8d` | `0042fb8d` | `Unwind@0042fb8d` | +| `Unwind@0042fbc0` | `0042fbc0` | `Unwind@0042fbc0` | +| `Unwind@0042fbe3` | `0042fbe3` | `Unwind@0042fbe3` | +| `Unwind@0042fc16` | `0042fc16` | `Unwind@0042fc16` | +| `Unwind@0042fc39` | `0042fc39` | `Unwind@0042fc39` | +| `Unwind@0042fc5c` | `0042fc5c` | `Unwind@0042fc5c` | +| `Unwind@0042fc67` | `0042fc67` | `Unwind@0042fc67` | +| `Unwind@0042fc8d` | `0042fc8d` | `Unwind@0042fc8d` | +| `Unwind@0042fc98` | `0042fc98` | `Unwind@0042fc98` | +| `Unwind@0042fcbe` | `0042fcbe` | `Unwind@0042fcbe` | +| `Unwind@0042fcc9` | `0042fcc9` | `Unwind@0042fcc9` | +| `Unwind@0042fcef` | `0042fcef` | `Unwind@0042fcef` | +| `Unwind@0042fcfa` | `0042fcfa` | `Unwind@0042fcfa` | +| `Unwind@0042fd20` | `0042fd20` | `Unwind@0042fd20` | +| `Unwind@0042fd43` | `0042fd43` | `Unwind@0042fd43` | +| `Unwind@0042fd66` | `0042fd66` | `Unwind@0042fd66` | +| `Unwind@0042fd89` | `0042fd89` | `Unwind@0042fd89` | +| `Unwind@0042fda0` | `0042fda0` | `Unwind@0042fda0` | +| `Unwind@0042fdd3` | `0042fdd3` | `Unwind@0042fdd3` | +| `Unwind@0042fdde` | `0042fdde` | `Unwind@0042fdde` | +| `Unwind@0042fe04` | `0042fe04` | `Unwind@0042fe04` | +| `Unwind@0042fe27` | `0042fe27` | `Unwind@0042fe27` | +| `Unwind@0042fe4a` | `0042fe4a` | `Unwind@0042fe4a` | +| `Unwind@0042fe6d` | `0042fe6d` | `Unwind@0042fe6d` | +| `Unwind@0042fe90` | `0042fe90` | `Unwind@0042fe90` | +| `Unwind@0042feb3` | `0042feb3` | `Unwind@0042feb3` | +| `Unwind@0042fed6` | `0042fed6` | `Unwind@0042fed6` | +| `Unwind@0042fede` | `0042fede` | `Unwind@0042fede` | +| `Unwind@0042ff01` | `0042ff01` | `Unwind@0042ff01` | +| `Unwind@0042ff09` | `0042ff09` | `Unwind@0042ff09` | +| `Unwind@0042ff2c` | `0042ff2c` | `Unwind@0042ff2c` | +| `Unwind@0042ff34` | `0042ff34` | `Unwind@0042ff34` | +| `Unwind@0042ff57` | `0042ff57` | `Unwind@0042ff57` | +| `Unwind@0042ff7a` | `0042ff7a` | `Unwind@0042ff7a` | +| `Unwind@0042ff85` | `0042ff85` | `Unwind@0042ff85` | +| `Unwind@0042ffab` | `0042ffab` | `Unwind@0042ffab` | +| `Unwind@0042ffd8` | `0042ffd8` | `Unwind@0042ffd8` | +| `Unwind@0042fffb` | `0042fffb` | `Unwind@0042fffb` | +| `Unwind@00430006` | `00430006` | `Unwind@00430006` | +| `Unwind@00430011` | `00430011` | `Unwind@00430011` | +| `Unwind@0043001c` | `0043001c` | `Unwind@0043001c` | +| `Unwind@00430027` | `00430027` | `Unwind@00430027` | +| `Unwind@00430032` | `00430032` | `Unwind@00430032` | +| `Unwind@0043003d` | `0043003d` | `Unwind@0043003d` | +| `Unwind@00430048` | `00430048` | `Unwind@00430048` | +| `Unwind@00430053` | `00430053` | `Unwind@00430053` | +| `Unwind@0043005e` | `0043005e` | `Unwind@0043005e` | +| `Unwind@00430091` | `00430091` | `Unwind@00430091` | +| `Unwind@00430099` | `00430099` | `Unwind@00430099` | +| `Unwind@004300a1` | `004300a1` | `Unwind@004300a1` | +| `Unwind@004300a9` | `004300a9` | `Unwind@004300a9` | +| `Unwind@004300b1` | `004300b1` | `Unwind@004300b1` | +| `Unwind@004300d4` | `004300d4` | `Unwind@004300d4` | +| `Unwind@004300df` | `004300df` | `Unwind@004300df` | +| `Unwind@004300ea` | `004300ea` | `Unwind@004300ea` | +| `Unwind@004300f5` | `004300f5` | `Unwind@004300f5` | +| `Unwind@00430100` | `00430100` | `Unwind@00430100` | +| `Unwind@0043010b` | `0043010b` | `Unwind@0043010b` | +| `Unwind@0043013e` | `0043013e` | `Unwind@0043013e` | +| `Unwind@00430149` | `00430149` | `Unwind@00430149` | +| `Unwind@0043016f` | `0043016f` | `Unwind@0043016f` | +| `Unwind@00430192` | `00430192` | `Unwind@00430192` | +| `Unwind@0043019a` | `0043019a` | `Unwind@0043019a` | +| `Unwind@004301a2` | `004301a2` | `Unwind@004301a2` | +| `Unwind@004301c5` | `004301c5` | `Unwind@004301c5` | +| `Unwind@004301e8` | `004301e8` | `Unwind@004301e8` | +| `Unwind@00430226` | `00430226` | `Unwind@00430226` | +| `Unwind@00430249` | `00430249` | `Unwind@00430249` | +| `Unwind@0043026c` | `0043026c` | `Unwind@0043026c` | +| `Unwind@00430292` | `00430292` | `Unwind@00430292` | +| `Unwind@0043029d` | `0043029d` | `Unwind@0043029d` | +| `Unwind@004302c0` | `004302c0` | `Unwind@004302c0` | +| `Unwind@004302e3` | `004302e3` | `Unwind@004302e3` | +| `Unwind@00430306` | `00430306` | `Unwind@00430306` | +| `Unwind@0043030e` | `0043030e` | `Unwind@0043030e` | +| `Unwind@00430331` | `00430331` | `Unwind@00430331` | +| `Unwind@00430354` | `00430354` | `Unwind@00430354` | +| `Unwind@0043035f` | `0043035f` | `Unwind@0043035f` | +| `Unwind@0043036a` | `0043036a` | `Unwind@0043036a` | +| `Unwind@0043039d` | `0043039d` | `Unwind@0043039d` | +| `Unwind@004303a8` | `004303a8` | `Unwind@004303a8` | +| `Unwind@004303b3` | `004303b3` | `Unwind@004303b3` | +| `Unwind@004303be` | `004303be` | `Unwind@004303be` | +| `Unwind@004303c9` | `004303c9` | `Unwind@004303c9` | +| `Unwind@004303fc` | `004303fc` | `Unwind@004303fc` | +| `Unwind@00430404` | `00430404` | `Unwind@00430404` | +| `Unwind@0043040f` | `0043040f` | `Unwind@0043040f` | +| `Unwind@00430435` | `00430435` | `Unwind@00430435` | +| `Unwind@00430458` | `00430458` | `Unwind@00430458` | +| `Unwind@00430498` | `00430498` | `Unwind@00430498` | +| `Unwind@004304bd` | `004304bd` | `Unwind@004304bd` | +| `Unwind@004304e3` | `004304e3` | `Unwind@004304e3` | +| `Unwind@004304ee` | `004304ee` | `Unwind@004304ee` | +| `Unwind@00430511` | `00430511` | `Unwind@00430511` | +| `Unwind@00430519` | `00430519` | `Unwind@00430519` | +| `Unwind@0043053c` | `0043053c` | `Unwind@0043053c` | +| `Unwind@00430561` | `00430561` | `Unwind@00430561` | +| `Unwind@0043056c` | `0043056c` | `Unwind@0043056c` | +| `Unwind@0043059f` | `0043059f` | `Unwind@0043059f` | +| `Unwind@004305c2` | `004305c2` | `Unwind@004305c2` | +| `Unwind@004305e5` | `004305e5` | `Unwind@004305e5` | +| `Unwind@00430608` | `00430608` | `Unwind@00430608` | +| `Unwind@0043062b` | `0043062b` | `Unwind@0043062b` | +| `Unwind@00430636` | `00430636` | `Unwind@00430636` | +| `Unwind@00430669` | `00430669` | `Unwind@00430669` | +| `Unwind@00430674` | `00430674` | `Unwind@00430674` | +| `Unwind@004306a7` | `004306a7` | `Unwind@004306a7` | +| `Unwind@004306b2` | `004306b2` | `Unwind@004306b2` | +| `Unwind@004306e5` | `004306e5` | `Unwind@004306e5` | +| `Unwind@0043070a` | `0043070a` | `Unwind@0043070a` | +| `Unwind@00430714` | `00430714` | `Unwind@00430714` | +| `Unwind@0043071e` | `0043071e` | `Unwind@0043071e` | +| `Rsrc_REGISTRY_64_409` | `004511fc` | `` | +| `Rsrc_REGISTRY_65_409` | `004512ac` | `` | +| `Rsrc_REGISTRY_66_409` | `00451514` | `` | +| `Rsrc_TYPELIB_1_409` | `004517a0` | `` | +| `Rsrc_StringTable_7_409` | `00465380` | `` | +| `Rsrc_Version_1_409` | `004653ac` | `` | +| `Rsrc_Manifest_1_409` | `00465770` | `` | +| `ExceptionList` | `ffdff000` | `` | +| `StackBase` | `ffdff004` | `` | +| `StackLimit` | `ffdff008` | `` | +| `SubSystemTib` | `ffdff00c` | `` | +| `FiberData` | `ffdff010` | `` | +| `ArbitraryUserPointer` | `ffdff014` | `` | +| `Self` | `ffdff018` | `` | +| `EnvironmentPointer` | `ffdff01c` | `` | +| `ClientId` | `ffdff020` | `` | +| `ActiveRpcHandle` | `ffdff028` | `` | +| `ThreadLocalStoragePointer` | `ffdff02c` | `` | +| `ProcessEnvironmentBlock` | `ffdff030` | `` | +| `LastErrorValue` | `ffdff034` | `` | +| `CountOfOwnedCriticalSections` | `ffdff038` | `` | +| `CsrClientThread` | `ffdff03c` | `` | +| `Win32ThreadInfo` | `ffdff040` | `` | +| `User32Reserved` | `ffdff044` | `` | +| `UserReserved` | `ffdff0ac` | `` | +| `WOW32Reserved` | `ffdff0c0` | `` | +| `CurrentLocale` | `ffdff0c4` | `` | +| `FpSoftwareStatusRegister` | `ffdff0c8` | `` | +| `SystemReserved1` | `ffdff0cc` | `` | +| `ExceptionCode` | `ffdff1a4` | `` | +| `ActivationContextStackPointer` | `ffdff1a8` | `` | +| `SpareBytes` | `ffdff1ac` | `` | +| `TxFsContext` | `ffdff1d0` | `` | +| `GdiTebBatch` | `ffdff1d4` | `` | +| `RealClientId` | `ffdff6b4` | `` | +| `GdiCachedProcessHandle` | `ffdff6bc` | `` | +| `GdiClientPID` | `ffdff6c0` | `` | +| `GdiCLientTID` | `ffdff6c4` | `` | +| `GdiThreadLocalInfo` | `ffdff6c8` | `` | +| `Win32ClientInfo` | `ffdff6cc` | `` | +| `glDispatchTable` | `ffdff7c4` | `` | +| `glReserved1` | `ffdffb68` | `` | +| `glReserved2` | `ffdffbdc` | `` | +| `glSectionInfo` | `ffdffbe0` | `` | +| `glSection` | `ffdffbe4` | `` | +| `glTable` | `ffdffbe8` | `` | +| `glCurrentRC` | `ffdffbec` | `` | +| `glContext` | `ffdffbf0` | `` | +| `LastStatusValue` | `ffdffbf4` | `` | +| `StaticUnicodeBuffer` | `ffdffc00` | `` | +| `DeallocationStack` | `ffdffe0c` | `` | +| `TlsSlots` | `ffdffe10` | `` | +| `TlsLinks.Flink` | `ffdfff10` | `` | +| `TlsLinks.Blink` | `ffdfff14` | `` | +| `Vdm` | `ffdfff18` | `` | +| `ReservedForNtRpc` | `ffdfff1c` | `` | +| `DbgSsReserved` | `ffdfff20` | `` | +| `HardErrorMode` | `ffdfff28` | `` | +| `Instrumentation` | `ffdfff2c` | `` | +| `ActivityId` | `ffdfff50` | `` | +| `SubProcessTag` | `ffdfff60` | `` | +| `EtwLocalData` | `ffdfff64` | `` | +| `EtwTraceData` | `ffdfff68` | `` | +| `WinSockData` | `ffdfff6c` | `` | +| `GdiBatchCount` | `ffdfff70` | `` | +| `IdealProcessorValue` | `ffdfff74` | `` | +| `GuaranteedStackBytes` | `ffdfff78` | `` | +| `ReservedForPerf` | `ffdfff7c` | `` | +| `ReservedForOle` | `ffdfff80` | `` | +| `WaitingOnLoaderLock` | `ffdfff84` | `` | +| `SavedPriorityState` | `ffdfff88` | `` | +| `SoftPatchPtr1` | `ffdfff8c` | `` | +| `ThreadPoolData` | `ffdfff90` | `` | +| `TlsExpansionSlots` | `ffdfff94` | `` | +| `MuiGeneration` | `ffdfff98` | `` | +| `IsImpersonating` | `ffdfff9c` | `` | +| `NlsCache` | `ffdfffa0` | `` | +| `pShimData` | `ffdfffa4` | `` | +| `HeapVirtualAffinity` | `ffdfffa8` | `` | +| `CurrentTransactionHandle` | `ffdfffac` | `` | +| `ActiveFrame` | `ffdfffb0` | `` | +| `FlsData` | `ffdfffb4` | `` | +| `PreferredLanguages` | `ffdfffb8` | `` | +| `UserPrefLanguages` | `ffdfffbc` | `` | +| `MergedPrefLanguages` | `ffdfffc0` | `` | +| `MuiImpersonation` | `ffdfffc4` | `` | +| `CrossTebFlags` | `ffdfffc8` | `` | +| `SameTebFlags` | `ffdfffca` | `` | +| `TxnScopeEnterCallback` | `ffdfffcc` | `` | +| `TxnScopeExitCallback` | `ffdfffd0` | `` | +| `TxnScopeContext` | `ffdfffd4` | `` | +| `LockCount` | `ffdfffd8` | `` | +| `ResourceRetValue` | `ffdfffe0` | `` | + +## Interesting Strings and Referencing Functions + +| Address | String | Referencing Functions | +| ---: | --- | --- | +| `00432628` | `CFMCCallback::DataReceived() exited.` | `FUN_00405be1@00405be1` | +| `00432678` | `CFMCCallback::DataReceived() entered.` | `FUN_00405be1@00405be1` | +| `00432c00` | `Global\\Nmx.Statistic.Lock` | `FUN_004075a9@004075a9` | +| `00432d0f` | `FE:\\BldSrc\\6\\s\\sharedcomponents\\internal\\RTCommon\\Includes\\EngineServicesCommon\\NmxControl.h` | `` | +| `00432e90` | `The NmxSvc TimeOut is: %d ms` | `FUN_0040bce2@0040bce2` | +| `00432ee0` | `SOFTWARE\\ArchestrA\\Framework\\Nmx` | `FUN_0040bce2@0040bce2\`, \`FUN_0040bd7e@0040bd7e\`, \`FUN_0040be29@0040be29\`, \`FUN_0040bebc@0040bebc\`, \`FUN_0040bf58@0040bf58\`, \`FUN_0040c189@0040c189\`, \`FUN_0040c225@0040c225` | +| `00432f28` | `NmxSvc connection KeepAliveTimeOut is: %d ms, %I64d` | `FUN_0040bd7e@0040bd7e` | +| `00432fb8` | `The NmxSvc VerifyGalaxyGUID flag is: %d` | `FUN_0040be29@0040be29` | +| `0043302c` | `The NmxSvc port is: %d ` | `FUN_0040bebc@0040bebc` | +| `0043305c` | `NmxSvcPort` | `FUN_0040bebc@0040bebc` | +| `00433078` | `The NmxSvc TicksPerBeat value is: %d, MaxMissedTicks value is: %d` | `FUN_0040bf58@0040bf58` | +| `00433138` | `CNmxControler::ResolveIPAddr - _snwprintf failed buff size too small` | `FUN_0040c008@0040c008` | +| `004331e0` | `NmxSvc OverloadMessageLimit is: %d` | `FUN_0040c189@0040c189` | +| `00433258` | `NmxSvc HeartBeatTolerance is: %d` | `FUN_0040c225@0040c225` | +| `004335f8` | `Global\\Nmx.Statistic` | `FUN_0040e0c5@0040e0c5` | +| `00433628` | `CNmxAdptrStats::RemoveAnonymousEngineID() - Removing %d` | `FUN_0040e17d@0040e17d` | +| `00433b00` | `CNmxControler::UnInitialize() exited.` | `FUN_0040ea34@0040ea34` | +| `00433b50` | `CNmxControler::UnInitialize() entered.` | `FUN_0040ea34@0040ea34` | +| `00433ba0` | `CNmxControler::GenerateErrorResponse() exited.` | `FUN_0040eba5@0040eba5` | +| `00433c90` | `CNmxControler::GenerateErrorResponse() entered.` | `FUN_0040eba5@0040eba5` | +| `00433e78` | `NMX Version Error msg received from platform %d` | `FUN_0040eeee@0040eeee` | +| `00433ed8` | `CNmxControler::GenerateVersionRequest() exited.` | `FUN_0040efa5@0040efa5\`, \`FUN_0040efa5@0040efa5\`, \`FUN_0040efa5@0040efa5` | +| `00433fa0` | `CNmxControler::GenerateVersionRequest() entered.` | `FUN_0040efa5@0040efa5` | +| `00434008` | `CNmxControler::GetIPOfFirstAdapter ->Memory allocation failed for IP_ADAPTER_ADDRESSES struct.` | `FUN_0040f15e@0040f15e` | +| `00434200` | `********** End of NmxSvc Dump **********` | `FUN_004115f2@004115f2` | +| `0043453c` | ` Responses send localy %d` | `FUN_004115f2@004115f2` | +| `004345b4` | ` Requests send localy %d` | `FUN_004115f2@004115f2` | +| `0043462c` | ` Responses send off node %d` | `FUN_004115f2@004115f2` | +| `004346a8` | ` Requests send off node %d` | `FUN_004115f2@004115f2` | +| `00434c10` | `********** NmxSvc dump statistics **********` | `FUN_004115f2@004115f2` | +| `00434e78` | `CNmxControler::GetConnectionStatus for platform %d, exited` | `FUN_004127e6@004127e6` | +| `00434ef0` | `CNmxControler::GetConnectionStatus for platform %d, entered` | `FUN_004127e6@004127e6` | +| `00434f68` | `CNmxControler::ProcessRemoteHeartbeatRate() exited.` | `FUN_0041329c@0041329c` | +| `004350b0` | `CNmxControler::ProcessRemoteHeartbeatRate() entered.` | `FUN_0041329c@0041329c` | +| `004352f0` | `CNmxControler::AddSubscriberEngine() exited.` | `FUN_00413f89@00413f89` | +| `00435350` | `CNmxControler::AddSubscriberEngine() failed, because local engine %d is not registered with NmxSvc.` | `FUN_00413f89@00413f89` | +| `004354c0` | `CNmxControler::AddSubscriberEngine() entered.` | `FUN_00413f89@00413f89` | +| `00435520` | `CNmxControler::RemoveSubscriberEngine() exited.` | `FUN_00414114@00414114` | +| `00435580` | `CNmxControler::RemoveSubscriberEngine() failed, because local engine %d is not registered with NmxSvc.` | `FUN_00414114@00414114` | +| `004357d8` | `CNmxControler::RemoveSubscriberEngine() entered.` | `FUN_00414114@00414114` | +| `00435840` | `CNmxControler::DataSent() exited.` | `FUN_00414304@00414304` | +| `00435888` | `CNmxControler::DataSent called for platform %d, which is not in Platforms table` | `FUN_00414304@00414304` | +| `00435928` | `Unexpected CNmxControler::DataSent call for Platform %d, MessageID %d` | `FUN_00414304@00414304` | +| `00435aa8` | `CNmxControler::DataSent() entered.` | `FUN_00414304@00414304` | +| `00435ba0` | `E:\\BldSrc\\6\\s\\sharedcomponents\\internal\\MagellanPublic\\Includes\\ClassUtilities\\LoginAndRevert2.h` | `FUN_00414a22@00414a22` | +| `00435c50` | `NmxSvc timer stopped` | `` | +| `00435c80` | `CNmxControler::CleanPendingCompletionList() exited.` | `FUN_00414b9c@00414b9c` | +| `00435e30` | `CNmxControler::CleanPendingCompletionList() entered.` | `FUN_00414b9c@00414b9c` | +| `00435f68` | `SendData to Platform %d, MessageID %d failed. Error code 0x%x` | `FUN_004154e3@004154e3` | +| `00435fe8` | `CNmxControler::SendPendingMessages() exited.` | `FUN_004154e3@004154e3` | +| `00436048` | `SendData to Platform %d, MessageID %d.` | `FUN_004154e3@004154e3` | +| `00436098` | `CNmxControler::SendPendingMessages called for platform %d. PendingMsgList size is %d.` | `FUN_004154e3@004154e3` | +| `00436148` | `CNmxControler::SendPendingMessages() entered.` | `FUN_004154e3@004154e3` | +| `004361a4` | `NmxSvc timer started` | `FUN_00415f7f@00415f7f` | +| `00436220` | `CNmxControler::InsertStatusClient for platform %d, process %d, callback 0x%x exited` | `FUN_00416192@00416192` | +| `004362c8` | `CNmxControler::InsertStatusClient for platform %d, process %d, callback 0x%x didn't find platform in platforms table.` | `FUN_00416192@00416192` | +| `004364f0` | `CNmxControler::InsertStatusClient for platform %d, process %d, callback 0x%x entered` | `FUN_00416192@00416192` | +| `0043659c` | `NmxControler.cpp` | `Catch@00416826@00416826\`, \`Catch@004168a7@004168a7\`, \`Catch@00416923@00416923\`, \`Catch@00416a86@00416a86\`, \`Catch@00416b21@00416b21\`, \`Catch@00416b9f@00416b9f\`, \`Catch@00416e21@00416e21\`, \`Catch@00416ebc@00416ebc\`, \`Catch@00416f3a@00416f3a\`, \`Catch@004170df@004170df\`, \`Catch@0041717a@0041717a\`, \`Catch@004171f8@004171f8\`, \`Catch@0041734e@0041734e\`, \`Catch@004173e9@004173e9\`, \`Catch@00417467@00417467\`, \`Catch@00417a65@00417a65\`, \`Catch@00417b00@00417b00\`, \`Catch@00417b7e@00417b7e\`, \`Catch@00417d07@00417d07\`, \`Catch@00417da2@00417da2\`, \`Catch@00417e20@00417e20\`, \`Catch@004185d4@004185d4\`, \`Catch@00418657@00418657\`, \`Catch@004186d3@004186d3\`, \`Catch@004187e2@004187e2\`, \`Catch@00418891@00418891\`, \`Catch@0041891c@0041891c\`, \`Catch@00419521@00419521\`, \`Catch@00419639@00419639\`, \`Catch@004196c6@004196c6\`, \`Catch@00419b91@00419b91\`, \`Catch@00419c2c@00419c2c\`, \`Catch@00419caa@00419caa\`, \`Catch@0041a6d4@0041a6d4\`, \`Catch@0041a775@0041a775\`, \`Catch@0041a7f6@0041a7f6\`, \`Catch@0041aa04@0041aa04\`, \`Catch@0041aa9f@0041aa9f\`, \`Catch@0041ab1d@0041ab1d\`, \`Catch@0041b54b@0041b54b\`, \`Catch@0041b5ec@0041b5ec\`, \`Catch@0041b66d@0041b66d\`, \`Catch@0041b7e2@0041b7e2\`, \`Catch@0041b87d@0041b87d\`, \`Catch@0041b8fb@0041b8fb\`, \`Catch@0041bcf7@0041bcf7\`, \`Catch@0041bdef@0041bdef\`, \`Catch@0041be71@0041be71\`, \`Catch@0041ccc9@0041ccc9\`, \`Catch@0041cd6b@0041cd6b\`, \`Catch@0041cdfd@0041cdfd\`, \`Catch@0041db4a@0041db4a\`, \`Catch@0041dbce@0041dbce\`, \`Catch@0041dc4b@0041dc4b\`, \`Catch@0041e9cb@0041e9cb\`, \`Catch@0041eac3@0041eac3\`, \`Catch@0041eb45@0041eb45\`, \`Catch@0041ed60@0041ed60\`, \`Catch@0041ede3@0041ede3\`, \`Catch@0041ee5f@0041ee5f\`, \`Catch@0041f54b@0041f54b\`, \`Catch@0041f5d8@0041f5d8\`, \`Catch@0041f657@0041f657\`, \`Catch@0041febd@0041febd\`, \`Catch@0041ff5d@0041ff5d\`, \`Catch@0041ffef@0041ffef\`, \`Catch@00420ee1@00420ee1\`, \`Catch@00420f65@00420f65\`, \`Catch@00420fe2@00420fe2\`, \`FUN_00416be4@00416be4` | +| `00436618` | `CNmxControler::GetPlatformInfo - co-create PlatformInformationClerkObject failed hr %x` | `FUN_00416969@00416969\`, \`FUN_00416be4@00416be4` | +| `00436960` | `SendData to galaxy %d, platform %d failed.` | `FUN_00416f7f@00416f7f` | +| `004369b8` | `DataSend to galaxy %d, platform %d, MsgID %d, size %d.` | `FUN_00416f7f@00416f7f\`, \`FUN_0041a886@0041a886` | +| `00436a28` | `CNmxControler::CleanPendingMsgList() exited.` | `FUN_0041723d@0041723d` | +| `00436a88` | `CNmxControler::CleanPendingMsgList() entered.` | `FUN_0041723d@0041723d` | +| `00436ae8` | `CNmxControler::isEngineValid() exited.` | `FUN_004174ac@004174ac` | +| `00436b88` | `RPC call to BootstrapController::GetPlatformStatus(PlatformID = %d) failed with error 0x%x. Attempt to cocreate bootstrap will be made` | `FUN_004174ac@004174ac` | +| `00436de8` | `CNmxControler::isEngineValid() entered.` | `FUN_004174ac@004174ac` | +| `00436e38` | `Nmx channell was disconnected. Disconnect counter %d.` | `FUN_004177eb@004177eb` | +| `00436ed8` | `NmxSvc failed to initialized MessageChannel.` | `FUN_004177eb@004177eb` | +| `00436f38` | `NmxSvc initialized successefuly MessageChannel.` | `FUN_004177eb@004177eb\`, \`FUN_0041f885@0041f885` | +| `00436fd0` | `Send VersionError failed to platform %d.` | `FUN_00417bc3@00417bc3` | +| `00437098` | `CNmxControler::ProcessDataReceivedForEngine() exited.` | `FUN_0041807f@0041807f` | +| `00437108` | `NmxSvc received incomplete packet.` | `FUN_0041807f@0041807f` | +| `004376f0` | `NmxSvc received packet not intended for it from Galaxy %d, Platform %d.` | `FUN_0041807f@0041807f` | +| `00437780` | `CNmxControler::ProcessDataReceivedForEngine() entered.` | `FUN_0041807f@0041807f` | +| `004377f0` | `CNmxControler::NetworkNotificationThreadFn exited` | `` | +| `00437858` | `CNmxControler::CloseConnection for cookie %d, exited` | `FUN_004189b2@004189b2` | +| `004378c8` | `CNmxControler::CloseConnection for cookie %d, entered` | `FUN_004189b2@004189b2` | +| `00437938` | `CNmxControler::DeleteStatusClientFromPlatforms for process %d, callback 0x%x exited` | `` | +| `00437b08` | `CNmxControler::DeleteStatusClientFromPlatforms for process %d, callback 0x%x entered` | `` | +| `00437cc0` | `CNmxControler::NotifyConnectionStatusToStatusClients() exited.` | `` | +| `00438098` | `CNmxControler::NotifyConnectionStatusToStatusClients() for platform %d entered. Client list size %d` | `` | +| `00438288` | `CNmxControler::NotifyLocalsOfRemoteFailure() exited.` | `FUN_00419f9d@00419f9d` | +| `004383b0` | `CNmxControler::NotifyLocalsOfRemoteFailure status clients event signaled for platform %d. Client list size %d.` | `FUN_00419f9d@00419f9d` | +| `00438570` | `CNmxControler::NotifyLocalsOfRemoteFailure() entered.` | `FUN_00419f9d@00419f9d` | +| `004385e0` | `CNmxControler::RemovePlatform() exited.` | `FUN_0041a240@0041a240` | +| `00438630` | `CNmxControler::RemovePlatform failed` | `FUN_0041a240@0041a240` | +| `00438680` | `CNmxControler::RemovePlatform() entered.` | `FUN_0041a240@0041a240` | +| `004386d8` | `CNmxControler::GetRemotePlatformStatus for platform %d found accepted connection.` | `` | +| `00438780` | `CNmxControler::GetRemotePlatformStatus resolved remote platform %d. Error status returned is %d. Execution time %d ms.` | `` | +| `00438870` | `CNmxControler::GetRemotePlatformStatus failed to cocreate bootstrap on platform platform %d, address %s. Error 0x%x.` | `` | +| `00438960` | `CNmxControler::GetRemotePlatformStatus - GetPlatformIdentity for platform %d returned platform name %s` | `` | +| `00438a30` | `CNmxControler::GetRemotePlatformStatus - GetPlatformIdentity retured 0x%x` | `` | +| `00438ac8` | `CNmxControler::GetRemotePlatformStatus entered for platform %d` | `` | +| `00438b48` | `SendData to galaxy %d, platform %d failed with error 0x%x.` | `FUN_0041a886@0041a886` | +| `00438bc0` | `SendHeartbeatRate failed to notify platform %d.` | `FUN_0041ab62@0041ab62\`, \`FUN_0041ac7b@0041ac7b` | +| `00438c80` | `SendGetHeartbeatRate failed to platform %d.` | `FUN_0041ad32@0041ad32` | +| `00438ee8` | `SendHeartbeat failed for platform %d, because connection is overloaded.` | `` | +| `00438f78` | `SendHeartbeat failed for platform %d.` | `` | +| `00439350` | `CNmxControler::ConnectionClosed() exited.` | `FUN_0041b940@0041b940` | +| `004393a8` | `CNmxControler::ConnectionClosed called for platform %d, which is not in Platforms table` | `FUN_0041b940@0041b940` | +| `004394a8` | `CNmxControler::ConnectionClosed() entered.` | `FUN_0041b940@0041b940` | +| `00439500` | `CNmxControler::RemovePlatform called for platform %d, which is not in Platforms table` | `FUN_0041ba30@0041ba30` | +| `004395b0` | `CNmxControler::PlatformErrorThreadFn exited.` | `` | +| `00439610` | `CNmxControler::PlatformErrorThreadFn - finished processing m_mPendingResolution list` | `` | +| `004396c0` | `CNmxControler::PlatformErrorThreadFn processing failed connection for platform %d status clients list size %d.` | `` | +| `004397a0` | `CNmxControler::PlatformErrorThreadFn - pController->m_mPendingResolution.size %d` | `` | +| `00439a00` | `CNmxControler::ProcessConnectionInfo status clients event signaled for platform %d. Client list size %d` | `FUN_0041beb7@0041beb7` | +| `00439b48` | `SendConnectionInfo to platform %d failed.` | `FUN_0041c105@0041c105` | +| `00439c18` | `CNmxControler::Connect() exited.` | `FUN_0041c62b@0041c62b` | +| `0043a3d8` | `NmxSvc (on this node) is not able to communicate with remote platform(s).` | `FUN_0041c62b@0041c62b` | +| `0043a470` | `Local engine %d is trying to connect to local engine %d, which is not registered with NmxSvc.` | `FUN_0041c62b@0041c62b` | +| `0043a590` | `CNmxControler::Connect() entered. Local engine %d trys to connect to platform %d` | `FUN_0041c62b@0041c62b` | +| `0043a638` | `CNmxControler::SetHeartbeatSendInterval() exited.` | `FUN_0041ce4c@0041ce4c` | +| `0043a6a0` | `CNmxControler::SetHeartbeatSendInterval() entered.` | `FUN_0041ce4c@0041ce4c` | +| `0043a708` | `CNmxControler::ProcessRemoteGetHeartbeatRate() exited.` | `FUN_0041cee8@0041cee8` | +| `0043a778` | `CNmxControler::ProcessRemoteGetHeartbeatRate() entered.` | `FUN_0041cee8@0041cee8` | +| `0043a7e8` | `CNmxControler::ConnectionEstablished() exited.` | `FUN_0041cf78@0041cf78` | +| `0043a848` | `CNmxControler::ConnectionEstablished inserted failed connection for platform %d to PendingResolution list. It has %d status clients.` | `FUN_0041cf78@0041cf78` | +| `0043aa40` | `CNmxControler::ConnectionEstablished - %d status clients were swaped from PendingResolution list.` | `FUN_0041cf78@0041cf78` | +| `0043adc8` | `CNmxControler::ConnectionEstablished() entered.` | `FUN_0041cf78@0041cf78` | +| `0043ae28` | `CNmxControler::ProcessConnectionInfo() exited.` | `FUN_0041d49e@0041d49e` | +| `0043afb8` | `Initial connection packet received from platform %d, remote NmxSvc version %d is higher then local version %d.` | `FUN_0041d49e@0041d49e` | +| `0043b098` | `Initial connection packet received from platform %d, but remote NmxSvc version %d differs from local version %d.` | `FUN_0041d49e@0041d49e` | +| `0043b3f8` | `CNmxControler::ProcessConnectionInfo() entered.` | `FUN_0041d49e@0041d49e` | +| `0043b458` | `CNmxControler::ProcessConnectionInfoReq() exited.` | `FUN_0041d7d0@0041d7d0` | +| `0043b4c0` | `CNmxControler::ProcessConnectionInfoReq() entered.` | `FUN_0041d7d0@0041d7d0` | +| `0043b540` | `CNmxControler::DataReceived() exited.` | `FUN_0041d910@0041d910` | +| `0043b6c0` | `NMX Version Error msg processed from platform %d.` | `FUN_0041d910@0041d910` | +| `0043b728` | `CNmxControler::DataReceived - unrecognized message type received from platform %d` | `FUN_0041d910@0041d910` | +| `0043b7d0` | `CNmxControler::DataReceived() entered.` | `FUN_0041d910@0041d910` | +| `0043b908` | `CNmxControler::TransferData() exited.` | `FUN_0041dcb5@0041dcb5` | +| `0043bb00` | `Local engine %d send data to Platform %d, Engine %d, Msg Size %d.` | `FUN_0041dcb5@0041dcb5` | +| `0043bb88` | `Local engine is trying to SendData to remote platform %d, but NmxSvc is running in local mode(MessageChannel wasn't initialized).` | `FUN_0041dcb5@0041dcb5` | +| `0043bc90` | ` Cannot transfer data to engine %d, because it is not registered with NmxSvc` | `FUN_0041dcb5@0041dcb5` | +| `0043bd30` | `CNmxControler::TransferData() entered.` | `FUN_0041dcb5@0041dcb5` | +| `0043bd80` | `CNmxControler::GenerateErrorRequest() exited.` | `FUN_0041e0c0@0041e0c0` | +| `0043be40` | `CNmxControler::GenerateErrorRequest() entered.` | `FUN_0041e0c0@0041e0c0` | +| `0043bea0` | `CNmxControler::GenerateErrorRequestConfigCategory() exited.` | `FUN_0041e279@0041e279` | +| `0043bf98` | `CNmxControler::GenerateErrorRequestConfigCategory() entered.` | `FUN_0041e279@0041e279` | +| `0043c018` | `CNmxControler::NotifySubscribersOfLocalFailure() exited for local engine %d.` | `FUN_0041e432@0041e432` | +| `0043c1f0` | `CNmxControler::NotifySubscribersOfLocalFailure() entered for local engine %d.` | `FUN_0041e432@0041e432` | +| `0043c290` | `CNmxControler::NotifyLocalItWasInTrouble() exited for local engine %d.` | `FUN_0041e63e@0041e63e` | +| `0043c3d8` | `CNmxControler::NotifyLocalItWasInTrouble() entered for local engine %d.` | `FUN_0041e63e@0041e63e` | +| `0043c468` | `CNmxControler::StatusClientThreadFn exited.` | `` | +| `0043c4c0` | `CNmxControler::StatusClientThreadFn finish processing status clients list.` | `` | +| `0043c558` | `CNmxControler::StatusClientThreadFn processing status clients for platform %d, list size %d.` | `` | +| `0043c618` | `CNmxControler::StatusClientThreadFn processing status clients list with size %d.` | `` | +| `0043c6c0` | `CNmxControler::StatusClientThreadFn processing event.` | `` | +| `0043c7d0` | `CNmxControler::GetRevisionLevel() exited.` | `FUN_0041eb8b@0041eb8b` | +| `0043c828` | `CNmxControler::GetRevisionLevel local engine %d, remoote platform %d, version returned %d` | `FUN_0041eb8b@0041eb8b` | +| `0043c8e0` | `CNmxControler::GetRevisionLevel() entered.` | `FUN_0041eb8b@0041eb8b` | +| `0043cbf8` | `DeleteLocalFromPlatforms RPC_S_SERVER_UNAVAILABLE for engine %d` | `FUN_0041eea5@0041eea5` | +| `0043cce8` | `NmxCallback->DataReceived to local engine %d failed with error 0x%x. Time for call to complete %d` | `FUN_0041eea5@0041eea5` | +| `0043cdb0` | `NmxCallback->DataReceived callback to egie %d took %dms` | `FUN_0041eea5@0041eea5` | +| `0043d4e8` | `CNmxControler::Initialize() exited.` | `FUN_0041f885@0041f885` | +| `0043d608` | `Failed to initialize Windows sockets. Ensure that Windows sockets version 2.2 are supported on this machine.` | `FUN_0041f885@0041f885` | +| `0043d7c8` | `Failed to initialize MessageChannel with error 0x%x. NmxSvc will be able to work only in local mode.` | `FUN_0041f885@0041f885` | +| `0043d8c8` | `CNmxControler::Initialize - Failed to QueryInterface IProcessStatusCallback.- hr = 0x%x` | `FUN_0041f885@0041f885` | +| `0043d978` | `CNmxControler::Initialize - Failed to QueryInterface IPlatformStatusCallback.- hr = 0x%x` | `FUN_0041f885@0041f885` | +| `0043da30` | `NmxSvc is subscribed for Process Status Notification.` | `FUN_0041f885@0041f885\`, \`FUN_0041f885@0041f885` | +| `0043daa0` | `CNmxControler::Initialize - Failed to subscribe IProcessStatusCallback with Bootstrap.- hr = 0x%x` | `FUN_0041f885@0041f885\`, \`FUN_0041f885@0041f885` | +| `0043db64` | `NmxSvc is initialized.` | `FUN_0041f885@0041f885` | +| `0043dba8` | `CNmxControler::Initialize() entered.` | `FUN_0041f885@0041f885` | +| `0043dbf8` | `Engine ID %d, name <%s> wasn't registered with NmxSvc` | `FUN_0042003e@0042003e` | +| `0043dc68` | `CNmxControler::RegisterEngine() exited.` | `FUN_0042003e@0042003e` | +| `0043dcb8` | `Engine %d, name %s, LmxVersion %d was registered with NmxSvc. Callback Thread ID %d` | `FUN_0042003e@0042003e` | +| `0043dd60` | `Local Engine %d, registered with NmxSvc, but provided Lmx version <%d> is higher than current LmxVersion <%d>` | `FUN_0042003e@0042003e` | +| `0043de40` | `Local Engine %d, registered with NmxSvc, but provided Lmx version <%d> is smaller than current LmxVersion <%d>` | `FUN_0042003e@0042003e` | +| `0043df20` | `CNmxControler::RegisterEngine() entered for engine ID %d, name <%s>.` | `FUN_0042003e@0042003e` | +| `0043dfb0` | `CNmxControler::UnRegisterEngine() exited.` | `FUN_004202f8@004202f8` | +| `0043e008` | `Engine %d wasn't UnRegistered with NmxSvc` | `FUN_004202f8@004202f8` | +| `0043e060` | `Engine %d was UnRegistered with NmxSvc` | `FUN_004202f8@004202f8` | +| `0043e0b0` | `CNmxControler::UnRegisterEngine() entered.` | `FUN_004202f8@004202f8` | +| `0043e108` | `CNmxControler::NotifyProcessStatus - exit hr %x` | `FUN_004204d6@004204d6` | +| `0043e168` | `CNmxControler::NotifyProcessStatus() called for engine %d. ProcessStatus value %d. Engine unregistered with NmxSvc.` | `FUN_004204d6@004204d6` | +| `0043e250` | `CNmxControler::NotifyProcessStatus Local Engine %d was NOT unregistered` | `FUN_004204d6@004204d6` | +| `0043e2e0` | `CNmxControler::NotifyProcessStatus Local Engine %d was unregistered and delete from NMxSvc.` | `FUN_004204d6@004204d6` | +| `0043e448` | `CNmxControler::NotifyProcessStatus - ENTER lPlatformID %d bstrProcessIdentity %s lPrivateData %d status %d` | `FUN_004204d6@004204d6` | +| `0043e520` | `CNmxControler::NotifyPlatformStatus - exit hr %x` | `FUN_00420762@00420762` | +| `0043e588` | `CNmxControler::NotifyPlatformStatus() called for engine 1. PlatformStatus value %d. Engine unregistered with NmxSvc.` | `FUN_00420762@00420762` | +| `0043e678` | `CNmxControler::NotifyPlatformStatus Local Engine 1 was NOT unregistered` | `FUN_00420762@00420762` | +| `0043e708` | `CNmxControler::NotifyPlatformStatus Local Engine 1 was unregistered and delete from NMxSvc.` | `FUN_00420762@00420762` | +| `0043e7c0` | `CNmxControler::NotifyPlatformStatus() - Engine 1 recovered from trouble state. New state is %d.` | `FUN_00420762@00420762` | +| `0043e880` | `CNmxControler::NotifyPlatformStatus() - Engine 1 is in trouble state` | `FUN_00420762@00420762` | +| `0043e910` | `CNmxControler::NotifyPlatformStatus - ENTER lPlatformID %d bstrPlatformName %s lPlatformStatus %d lPlatformEngineStatus %d` | `FUN_00420762@00420762` | +| `0043ea08` | `CNmxControler::OpenConnection() exited.` | `FUN_004209f0@004209f0` | +| `0043eab8` | `Local client 0x%x is trying to connect to remote platform %d, but NmxSvc is running in local mode(MessageChannel wasn't initialized).` | `FUN_004209f0@004209f0` | +| `0043ec40` | `CNmxControler::OpenConnection() entered. Local client 0x%x trys to connect to platform %d` | `FUN_004209f0@004209f0` | +| `0043ed14` | `NmxService.cpp` | `Catch@0042128e@0042128e\`, \`Catch@00421326@00421326\`, \`Catch@004213a1@004213a1\`, \`Catch@004214cf@004214cf\`, \`Catch@00421550@00421550\`, \`Catch@004215ca@004215ca\`, \`Catch@00421747@00421747\`, \`Catch@004217c8@004217c8\`, \`Catch@00421842@00421842\`, \`Catch@004219d9@004219d9\`, \`Catch@00421a5d@00421a5d\`, \`Catch@00421ada@00421ada\`, \`Catch@00421ceb@00421ceb\`, \`Catch@00421d6e@00421d6e\`, \`Catch@00421dea@00421dea\`, \`Catch@00421f5b@00421f5b\`, \`Catch@00421fde@00421fde\`, \`Catch@0042205a@0042205a\`, \`Catch@004221cb@004221cb\`, \`Catch@0042224e@0042224e\`, \`Catch@004222ca@004222ca\`, \`Catch@00422418@00422418\`, \`Catch@0042249c@0042249c\`, \`Catch@00422519@00422519\`, \`Catch@00422638@00422638\`, \`Catch@004226bc@004226bc\`, \`Catch@00422739@00422739\`, \`Catch@00422880@00422880\`, \`Catch@00422904@00422904\`, \`Catch@00422981@00422981\`, \`Catch@00422ac8@00422ac8\`, \`Catch@00422b4c@00422b4c\`, \`Catch@00422bc9@00422bc9` | +| `0043ed28` | `CNmxService::FinalRealese() exited for engine %d. this 0x%x, callback 0x%x` | `FUN_0042115f@0042115f` | +| `0043edc0` | `CNmxService::FinalRealese() for engine %d. this 0x%x` | `FUN_0042115f@0042115f` | +| `0043ee30` | `CNmxService::RegisterEngine2() exited.` | `FUN_004213e3@004213e3` | +| `0043ee80` | `CNmxService::RegisterEngine2() entered.` | `FUN_004213e3@004213e3` | +| `0043eed0` | `CNmxService::UnRegisterEngine() exited.` | `FUN_0042160d@0042160d` | +| `0043ef20` | `CNmxService::UnRegisterEngine will clear engine %d, this 0x%x, callback 0x%x` | `FUN_0042160d@0042160d` | +| `0043efc0` | `CNmxService::UnRegisterEngine() entered.` | `FUN_0042160d@0042160d` | +| `0043f014` | `CNmxService::Connect() exited.` | `FUN_00421885@00421885` | +| `0043f058` | `Local engine %d is not registered with NmxSvc` | `FUN_00421885@00421885\`, \`FUN_00421b20@00421b20\`, \`FUN_00421e30@00421e30\`, \`FUN_004220a0@004220a0` | +| `0043f0b8` | `NmxControler is not initialized.` | `FUN_00421885@00421885\`, \`FUN_00421b20@00421b20\`, \`FUN_00421e30@00421e30\`, \`FUN_004220a0@004220a0\`, \`FUN_00422310@00422310\`, \`FUN_0042277f@0042277f\`, \`FUN_004229c7@004229c7` | +| `0043f100` | `CNmxService::Connect() entered.` | `FUN_00421885@00421885` | +| `0043f140` | `CNmxService::TransferData() exited.` | `FUN_00421b20@00421b20` | +| `0043f188` | `CNmxService::TransferData() entered.` | `FUN_00421b20@00421b20` | +| `0043f1d8` | `CNmxService::AddSubscriberEngine() entered.` | `FUN_00421e30@00421e30` | +| `0043f230` | `CNmxService::RemoveSubscriberEngine() entered.` | `FUN_004220a0@004220a0` | +| `0043f290` | `CNmxService::SetHeartbeatSendInterval() exited.` | `FUN_00422310@00422310` | +| `0043f2f0` | `CNmxService::SetHeartbeatSendInterval() entered.` | `FUN_00422310@00422310` | +| `0043f358` | `CNmxService::OpenConnection() exited.` | `FUN_0042255f@0042255f` | +| `0043f3a8` | `CNmxService::OpenConnection() entered.` | `FUN_0042255f@0042255f` | +| `0043f3f8` | `CNmxService::CloseConnection() exited.` | `FUN_0042277f@0042277f` | +| `0043f448` | `CNmxService::CloseConnection() entered.` | `FUN_0042277f@0042277f` | +| `0043f498` | `CNmxService::GetConnectionStatus() exited.` | `FUN_004229c7@004229c7` | +| `0043f4f0` | `CNmxService::GetConnectionStatus() entered.` | `FUN_004229c7@004229c7` | +| `004402a0` | `NMXSVC::Install - Couldn't create service. Error %d` | `FUN_00426e76@00426e76` | +| `00440308` | `RPCSS` | `FUN_00426e76@00426e76` | +| `00440318` | `NMXSVC::Install - Couldn't open service manager. Error %d` | `FUN_00426e76@00426e76` | +| `004403d8` | `NMXSVC::UnInstall - Service could not be deleted` | `FUN_0042703f@0042703f` | +| `00440440` | `NmxSvc service cannot be Uninstalled` | `FUN_0042703f@0042703f` | +| `00440490` | `NmxSvc service Uninstalled - count %d` | `FUN_0042703f@0042703f` | +| `004404e0` | `NmxSvc::Uninstall waiting to unregister old instance.` | `FUN_0042703f@0042703f` | +| `00440550` | `NMXSVC::Uninstall - Couldn't open service. Error %d` | `FUN_0042703f@0042703f` | +| `004405b8` | `NMXSVC::Uninstall - Couldn't open service manager. Error %d` | `FUN_0042703f@0042703f` | +| `00440700` | `SERVICE_CONTROL_PAUSE event is received in NmxSvc.` | `FUN_00427237@00427237` | +| `00440768` | `SERVICE_CONTROL_CONTINUE event is received in NmxSvc.` | `FUN_00427237@00427237` | +| `004407d8` | `SERVICE_CONTROL_INTERROGATE event is received in NmxSvc.` | `FUN_00427237@00427237` | +| `00440850` | `SERVICE_CONTROL_SHUTDOWN event is received in NmxSvc.` | `FUN_00427237@00427237` | +| `00440910` | `NmxSvc CServiceModule::Run() stop request!` | `FUN_004273b2@004273b2` | +| `00440968` | `NmxSvc CServiceModule::Run() exited message loop` | `FUN_004273b2@004273b2` | +| `00440a18` | `NmxSvc CServiceModule::Run() entered.` | `FUN_004273b2@004273b2` | +| `00440a64` | `The NmxSvc service is running` | `FUN_004273b2@004273b2` | +| `00440abc` | `NmxPing` | `FUN_004273b2@004273b2` | +| `00440af8` | `NmxTraceConn` | `FUN_004273b2@004273b2` | +| `00440b14` | `NmxSvcTimer` | `FUN_004273b2@004273b2` | +| `00440b2c` | `NmxSvcError` | `FUN_004273b2@004273b2` | +| `00440b44` | `NmxSvcTrace` | `FUN_004273b2@004273b2` | +| `00440ba8` | `NmxSvc` | `FUN_00427c21@00427c21` | +| `004412f0` | `Ping ERR -- 12 -- recvfrom failed: error = %d` | `FUN_00428a32@00428a32` | +| `00441398` | `Ping ERR -- 9 -- sendto failed: error = %d` | `FUN_00428a32@00428a32` | +| `00441610` | `Ping ERROR -- 2 -- WSASocket failed: %d` | `FUN_00428a32@00428a32` | +| `0044cbdc` | `WSASocketW` | `` | +| `0044d0dc` | `FindResourceW` | `` | +| `0044f4d0` | `.?AVCNmxAdptrStats@@` | `` | +| `0044f4fc` | `.?AVCNmxControler@@` | `` | +| `0044f984` | `.?AV?$CComObject@VCNmxService@@@ATL@@` | `` | +| `0044f9b4` | `.?AVCNmxService@@` | `` | +| `0044f9d0` | `.?AV?$CComCoClass@VCNmxService@@$1?CLSID_NmxService@@3U_GUID@@B@ATL@@` | `` | +| `0044fa20` | `.?AUINmxService2@@` | `` | +| `0044fa3c` | `.?AUINmxService@@` | `` | +| `0044fa58` | `.?AUINmxSvcStatistics@@` | `` | +| `0044fa78` | `.?AUINmxStatus@@` | `` | +| `0044fb10` | `.?AV?$CComContainedObject@VCNmxService@@@ATL@@` | `` | +| `0044fb48` | `.?AV?$CComAggObject@VCNmxService@@@ATL@@` | `` | +| `00465388` | `NmxSvc` | `` | +| `004654dc` | `NmxSvc_v0032` | `` | +| `00465520` | `NmxSvc Module` | `` | +| `00465714` | `NmxSvc.EXE` | `` | + +## Interesting API Callers + +| Caller | Entry | Call Targets | +| --- | ---: | --- | +| `FUN_0040105a` | `0040105a` | `memcpy` | +| `FUN_00401073` | `00401073` | `memmove` | +| `FUN_00401164` | `00401164` | `memcpy_s` | +| `FUN_004011bb` | `004011bb` | `SysFreeString` | +| `FUN_0040121e` | `0040121e` | `SysFreeString` | +| `FUN_004013cc` | `004013cc` | `memset` | +| `FUN_0040156c` | `0040156c` | `memset` | +| `FUN_004016ad` | `004016ad` | `SysAllocString` | +| `FUN_004016e3` | `004016e3` | `SysAllocStringByteLen` | +| `FUN_00401757` | `00401757` | `SysFreeString` | +| `FUN_004018f9` | `004018f9` | `memmove` | +| `assign` | `00401913` | `_wmemset` | +| `FUN_00401a08` | `00401a08` | `memset` | +| `FUN_00401a81` | `00401a81` | `memset` | +| `FUN_00401afd` | `00401afd` | `memset` | +| `FUN_00401b79` | `00401b79` | `memset` | +| `FUN_00401cf3` | `00401cf3` | `SysFreeString` | +| `FID_conflict:_Chassign` | `00401f21` | `_wmemset` | +| `FUN_004022e6` | `004022e6` | `SysAllocString` | +| `Copy` | `00402316` | `SysAllocStringByteLen` | +| `FUN_00402333` | `00402333` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_00402a05` | `00402a05` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FID_conflict:_Tidy` | `00402ff7` | `memcpy` | +| `FUN_004031df` | `004031df` | `memcpy` | +| `FUN_0040331f` | `0040331f` | `memcpy` | +| `FUN_004035ab` | `004035ab` | `SysFreeString` | +| `FUN_004038c0` | `004038c0` | `SysFreeString` | +| `FUN_004039f1` | `004039f1` | `SysFreeString` | +| `FUN_00403b2b` | `00403b2b` | `memmove` | +| `FUN_00403bf6` | `00403bf6` | `memcpy` | +| `FUN_00403ed8` | `00403ed8` | `memcpy\`, \`memmove` | +| `FUN_004042ed` | `004042ed` | `memcpy` | +| `FUN_00404389` | `00404389` | `memcpy` | +| `FID_conflict:assign` | `0040442e` | `memcpy` | +| `FUN_0040456d` | `0040456d` | `memcpy` | +| `FUN_00404910` | `00404910` | `memmove` | +| `FUN_004055ef` | `004055ef` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FUN_00406af8` | `00406af8` | `memset` | +| `Attach` | `00406b61` | `SysFreeString` | +| `FUN_00406b80` | `00406b80` | `SysFreeString` | +| `FUN_00406c6b` | `00406c6b` | `SysFreeString` | +| `FUN_00406cdc` | `00406cdc` | `SysFreeString` | +| `FUN_00406e7e` | `00406e7e` | `memcpy_s` | +| `FUN_00406eef` | `00406eef` | `memcpy_s` | +| `FUN_0040710e` | `0040710e` | `memcpy_s` | +| `FUN_0040715b` | `0040715b` | `memcpy_s` | +| `FUN_004075a9` | `004075a9` | `memcpy` | +| `FUN_0040764d` | `0040764d` | `memcpy` | +| `FUN_0040791d` | `0040791d` | `memcpy_s` | +| `FUN_00407c9a` | `00407c9a` | `CoCreateInstance` | +| `FUN_00407cfc` | `00407cfc` | `CoCreateInstance` | +| `FUN_00407d89` | `00407d89` | `CoCreateInstance` | +| `FUN_00407dc8` | `00407dc8` | `CoCreateInstance` | +| `FUN_00407e1c` | `00407e1c` | `CoCreateInstance` | +| `FUN_0040957a` | `0040957a` | `memmove` | +| `FUN_00409907` | `00409907` | `CoCreateInstance` | +| `FUN_00409954` | `00409954` | `CoCreateInstance` | +| `FUN_00409a29` | `00409a29` | `memmove` | +| `FUN_00409c9a` | `00409c9a` | `SysAllocString\`, \`SysFreeString` | +| `FUN_00409e36` | `00409e36` | `SysAllocString\`, \`memset` | +| `FUN_0040b35e` | `0040b35e` | `CoCreateInstance` | +| `FUN_0040b3e8` | `0040b3e8` | `CoCreateInstance` | +| `FUN_0040b4d1` | `0040b4d1` | `CoCreateInstance` | +| `FUN_0040b6e5` | `0040b6e5` | `memmove` | +| `FUN_0040c008` | `0040c008` | `SysAllocString\`, \`memcpy_s\`, \`memset` | +| `FUN_0040df15` | `0040df15` | `SysFreeString` | +| `FUN_0040e2dd` | `0040e2dd` | `SysAllocString\`, \`SysFreeString` | +| `FUN_0040eccf` | `0040eccf` | `CoCreateInstance` | +| `FUN_0040efa5` | `0040efa5` | `memcpy_s` | +| `FUN_004113b6` | `004113b6` | `memset` | +| `FUN_0041141c` | `0041141c` | `memcpy_s` | +| `FUN_004115f2` | `004115f2` | `SysAllocString\`, \`SysFreeString` | +| `FUN_0041329c` | `0041329c` | `memcpy_s` | +| `FUN_00413ce1` | `00413ce1` | `memset` | +| `FUN_00414a22` | `00414a22` | `SysFreeString` | +| `FUN_004154e3` | `004154e3` | `memcpy_s` | +| `FUN_004167bd` | `004167bd` | `CoCreateInstance` | +| `FUN_00416969` | `00416969` | `CoCreateInstance` | +| `FUN_00416be4` | `00416be4` | `CoCreateInstance` | +| `FUN_004174ac` | `004174ac` | `CoCreateInstance` | +| `FUN_004177eb` | `004177eb` | `memcpy_s` | +| `FUN_0041807f` | `0041807f` | `memcpy_s` | +| `FUN_00418f8a` | `00418f8a` | `SysFreeString` | +| `FUN_0041c23e` | `0041c23e` | `memset` | +| `FUN_0041c62b` | `0041c62b` | `memset` | +| `FUN_0041d49e` | `0041d49e` | `memcpy_s` | +| `FUN_0041e0c0` | `0041e0c0` | `memcpy_s` | +| `FUN_0041e279` | `0041e279` | `memcpy_s` | +| `FUN_0041eea5` | `0041eea5` | `memcpy_s` | +| `FUN_0041f885` | `0041f885` | `CoCreateInstance` | +| `FUN_004202f8` | `004202f8` | `memcpy` | +| `FUN_00422cac` | `00422cac` | `memcpy_s` | +| `FUN_00422f90` | `00422f90` | `memset` | +| `FUN_00423642` | `00423642` | `memset` | +| `FUN_004242b7` | `004242b7` | `SysAllocString` | +| `FUN_00424a7d` | `00424a7d` | `AtlInternalQueryInterface` | +| `_InternalQueryInterface` | `00424b26` | `AtlInternalQueryInterface` | +| `QueryInterface` | `00424b98` | `AtlInternalQueryInterface` | +| `FUN_00424d7d` | `00424d7d` | `QueryInterface` | +| `FUN_00424d87` | `00424d87` | `QueryInterface` | +| `FUN_00424d91` | `00424d91` | `QueryInterface` | +| `FUN_00424d9b` | `00424d9b` | `QueryInterface` | +| `FUN_00424df1` | `00424df1` | `CoCreateInstance` | +| `FUN_0042524e` | `0042524e` | `CoCreateInstance` | +| `FUN_0042556c` | `0042556c` | `SysFreeString` | +| `FUN_0042563c` | `0042563c` | `SysFreeString` | +| `_InternalQueryInterface` | `00425c49` | `AtlInternalQueryInterface` | +| `QueryInterface` | `00425c90` | `AtlInternalQueryInterface` | +| `_InternalQueryInterface` | `00425e52` | `AtlInternalQueryInterface` | +| `QueryInterface` | `00425ec2` | `AtlInternalQueryInterface` | +| `FUN_00425efb` | `00425efb` | `QueryInterface` | +| `FUN_00425f05` | `00425f05` | `QueryInterface` | +| `FUN_00425f0f` | `00425f0f` | `QueryInterface` | +| `FUN_00425fc8` | `00425fc8` | `AtlInternalQueryInterface` | +| `FUN_004265f7` | `004265f7` | `memset` | +| `FUN_00427954` | `00427954` | `AtlInternalQueryInterface` | +| `FUN_00427ea4` | `00427ea4` | `FindResourceW` | +| `FUN_00428795` | `00428795` | `memset` | +| `FUN_004287af` | `004287af` | `memset` | +| `FUN_0042883e` | `0042883e` | `memset` | +| `FUN_00428a32` | `00428a32` | `closesocket\`, \`memcpy_s\`, \`memset\`, \`recvfrom\`, \`sendto` | +| `memmove_s` | `00429390` | `memmove_s` | +| `RemoveAt` | `004293d9` | `memmove_s` | +| `FUN_004294b0` | `004294b0` | `memset` | +| `FUN_004296f0` | `004296f0` | `memset` | +| `_com_invoke_helper` | `00429ca0` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit\`, \`memset` | +| `_com_handle_excepinfo` | `0042a390` | `SysFreeString` | + diff --git a/analysis/ghidra/exports/NmxSvc.exe.string-refs.tsv b/analysis/ghidra/exports/NmxSvc.exe.string-refs.tsv new file mode 100644 index 0000000..871b1e8 --- /dev/null +++ b/analysis/ghidra/exports/NmxSvc.exe.string-refs.tsv @@ -0,0 +1,342 @@ +string_address string_value ref_from ref_function +00432628 CFMCCallback::DataReceived() exited. 00405c83 FUN_00405be1@00405be1 +00432678 CFMCCallback::DataReceived() entered. 00405c1e FUN_00405be1@00405be1 +00432c00 Global\Nmx.Statistic.Lock 004075e9 FUN_004075a9@004075a9 +00432e90 The NmxSvc TimeOut is: %d ms 0040bd4e FUN_0040bce2@0040bce2 +00432ee0 SOFTWARE\ArchestrA\Framework\Nmx 0040bedf FUN_0040bebc@0040bebc +00432ee0 SOFTWARE\ArchestrA\Framework\Nmx 0040bda1 FUN_0040bd7e@0040bd7e +00432ee0 SOFTWARE\ArchestrA\Framework\Nmx 0040be47 FUN_0040be29@0040be29 +00432ee0 SOFTWARE\ArchestrA\Framework\Nmx 0040c244 FUN_0040c225@0040c225 +00432ee0 SOFTWARE\ArchestrA\Framework\Nmx 0040bd05 FUN_0040bce2@0040bce2 +00432ee0 SOFTWARE\ArchestrA\Framework\Nmx 0040c1aa FUN_0040c189@0040c189 +00432ee0 SOFTWARE\ArchestrA\Framework\Nmx 0040bf86 FUN_0040bf58@0040bf58 +00432f28 NmxSvc connection KeepAliveTimeOut is: %d ms, %I64d 0040bdfa FUN_0040bd7e@0040bd7e +00432fb8 The NmxSvc VerifyGalaxyGUID flag is: %d 0040be8f FUN_0040be29@0040be29 +0043302c The NmxSvc port is: %d 0040bf28 FUN_0040bebc@0040bebc +0043305c NmxSvcPort 0040bef9 FUN_0040bebc@0040bebc +00433078 The NmxSvc TicksPerBeat value is: %d, MaxMissedTicks value is: %d 0040bfdb FUN_0040bf58@0040bf58 +00433138 CNmxControler::ResolveIPAddr - _snwprintf failed buff size too small 0040c159 FUN_0040c008@0040c008 +004331e0 NmxSvc OverloadMessageLimit is: %d 0040c1f8 FUN_0040c189@0040c189 +00433258 NmxSvc HeartBeatTolerance is: %d 0040c292 FUN_0040c225@0040c225 +004335f8 Global\Nmx.Statistic 0040e11b FUN_0040e0c5@0040e0c5 +00433628 CNmxAdptrStats::RemoveAnonymousEngineID() - Removing %d 0040e18e FUN_0040e17d@0040e17d +00433b00 CNmxControler::UnInitialize() exited. 0040eb92 FUN_0040ea34@0040ea34 +00433b50 CNmxControler::UnInitialize() entered. 0040ea5a FUN_0040ea34@0040ea34 +00433ba0 CNmxControler::GenerateErrorResponse() exited. 0040ecb6 FUN_0040eba5@0040eba5 +00433c90 CNmxControler::GenerateErrorResponse() entered. 0040ebce FUN_0040eba5@0040eba5 +00433e78 NMX Version Error msg received from platform %d 0040ef15 FUN_0040eeee@0040eeee +00433ed8 CNmxControler::GenerateVersionRequest() exited. 0040f100 FUN_0040efa5@0040efa5 +00433ed8 CNmxControler::GenerateVersionRequest() exited. 0040f125 FUN_0040efa5@0040efa5 +00433ed8 CNmxControler::GenerateVersionRequest() exited. 0040f0f7 FUN_0040efa5@0040efa5 +00433fa0 CNmxControler::GenerateVersionRequest() entered. 0040efd6 FUN_0040efa5@0040efa5 +00434008 CNmxControler::GetIPOfFirstAdapter ->Memory allocation failed for IP_ADAPTER_ADDRESSES struct. 0040f222 FUN_0040f15e@0040f15e +00434200 ********** End of NmxSvc Dump ********** 00411b40 FUN_004115f2@004115f2 +0043453c Responses send localy %d 004119d7 FUN_004115f2@004115f2 +004345b4 Requests send localy %d 0041199f FUN_004115f2@004115f2 +0043462c Responses send off node %d 0041196a FUN_004115f2@004115f2 +004346a8 Requests send off node %d 00411938 FUN_004115f2@004115f2 +00434c10 ********** NmxSvc dump statistics ********** 0041164a FUN_004115f2@004115f2 +00434e78 CNmxControler::GetConnectionStatus for platform %d, exited 0041289f FUN_004127e6@004127e6 +00434ef0 CNmxControler::GetConnectionStatus for platform %d, entered 00412811 FUN_004127e6@004127e6 +00434f68 CNmxControler::ProcessRemoteHeartbeatRate() exited. 004133e1 FUN_0041329c@0041329c +004350b0 CNmxControler::ProcessRemoteHeartbeatRate() entered. 004132d5 FUN_0041329c@0041329c +004352f0 CNmxControler::AddSubscriberEngine() exited. 004140fb FUN_00413f89@00413f89 +00435350 CNmxControler::AddSubscriberEngine() failed, because local engine %d is not registered with NmxSvc. 004140bf FUN_00413f89@00413f89 +004354c0 CNmxControler::AddSubscriberEngine() entered. 00413fb8 FUN_00413f89@00413f89 +00435520 CNmxControler::RemoveSubscriberEngine() exited. 004142eb FUN_00414114@00414114 +00435580 CNmxControler::RemoveSubscriberEngine() failed, because local engine %d is not registered with NmxSvc. 004142ae FUN_00414114@00414114 +004357d8 CNmxControler::RemoveSubscriberEngine() entered. 00414144 FUN_00414114@00414114 +00435840 CNmxControler::DataSent() exited. 004144ba FUN_00414304@00414304 +00435888 CNmxControler::DataSent called for platform %d, which is not in Platforms table 00414481 FUN_00414304@00414304 +00435928 Unexpected CNmxControler::DataSent call for Platform %d, MessageID %d 0041444c FUN_00414304@00414304 +00435aa8 CNmxControler::DataSent() entered. 00414332 FUN_00414304@00414304 +00435ba0 E:\BldSrc\6\s\sharedcomponents\internal\MagellanPublic\Includes\ClassUtilities\LoginAndRevert2.h 00414ac4 FUN_00414a22@00414a22 +00435c80 CNmxControler::CleanPendingCompletionList() exited. 00414d1a FUN_00414b9c@00414b9c +00435e30 CNmxControler::CleanPendingCompletionList() entered. 00414bc9 FUN_00414b9c@00414b9c +00435f68 SendData to Platform %d, MessageID %d failed. Error code 0x%x 00415742 FUN_004154e3@004154e3 +00435fe8 CNmxControler::SendPendingMessages() exited. 004156cc FUN_004154e3@004154e3 +00436048 SendData to Platform %d, MessageID %d. 0041566a FUN_004154e3@004154e3 +00436098 CNmxControler::SendPendingMessages called for platform %d. PendingMsgList size is %d. 0041557a FUN_004154e3@004154e3 +00436148 CNmxControler::SendPendingMessages() entered. 00415521 FUN_004154e3@004154e3 +004361a4 NmxSvc timer started 00415fda FUN_00415f7f@00415f7f +00436220 CNmxControler::InsertStatusClient for platform %d, process %d, callback 0x%x exited 004165a7 FUN_00416192@00416192 +004362c8 CNmxControler::InsertStatusClient for platform %d, process %d, callback 0x%x didn't find platform in platforms table. 004163bc FUN_00416192@00416192 +004364f0 CNmxControler::InsertStatusClient for platform %d, process %d, callback 0x%x entered 004161c8 FUN_00416192@00416192 +0043659c NmxControler.cpp 0041b882 Catch@0041b87d@0041b87d +0043659c NmxControler.cpp 0041682b Catch@00416826@00416826 +0043659c NmxControler.cpp 0041b900 Catch@0041b8fb@0041b8fb +0043659c NmxControler.cpp 00418896 Catch@00418891@00418891 +0043659c NmxControler.cpp 004168ac Catch@004168a7@004168a7 +0043659c NmxControler.cpp 00418921 Catch@0041891c@0041891c +0043659c NmxControler.cpp 00416928 Catch@00416923@00416923 +0043659c NmxControler.cpp 0041e9d0 Catch@0041e9cb@0041e9cb +0043659c NmxControler.cpp 00417a6a Catch@00417a65@00417a65 +0043659c NmxControler.cpp 0041aa09 Catch@0041aa04@0041aa04 +0043659c NmxControler.cpp 0041eac8 Catch@0041eac3@0041eac3 +0043659c NmxControler.cpp 0041aaa4 Catch@0041aa9f@0041aa9f +0043659c NmxControler.cpp 00416a8b Catch@00416a86@00416a86 +0043659c NmxControler.cpp 0041db4f Catch@0041db4a@0041db4a +0043659c NmxControler.cpp 0041eb4a Catch@0041eb45@0041eb45 +0043659c NmxControler.cpp 00417b83 Catch@00417b7e@00417b7e +0043659c NmxControler.cpp 0041ab22 Catch@0041ab1d@0041ab1d +0043659c NmxControler.cpp 00417b05 Catch@00417b00@00417b00 +0043659c NmxControler.cpp 00416b26 Catch@00416b21@00416b21 +0043659c NmxControler.cpp 0041dbd3 Catch@0041dbce@0041dbce +0043659c NmxControler.cpp 00416ba4 Catch@00416b9f@00416b9f +0043659c NmxControler.cpp 00419b96 Catch@00419b91@00419b91 +0043659c NmxControler.cpp 0041dc50 Catch@0041dc4b@0041dc4b +0043659c NmxControler.cpp 00419c31 Catch@00419c2c@00419c2c +0043659c NmxControler.cpp 0041ccce Catch@0041ccc9@0041ccc9 +0043659c NmxControler.cpp 0041bcfc Catch@0041bcf7@0041bcf7 +0043659c NmxControler.cpp 00419caf Catch@00419caa@00419caa +0043659c NmxControler.cpp 0041cd70 Catch@0041cd6b@0041cd6b +0043659c NmxControler.cpp 0041ed65 Catch@0041ed60@0041ed60 +0043659c NmxControler.cpp 00417d0c Catch@00417d07@00417d07 +0043659c NmxControler.cpp 0041ce02 Catch@0041cdfd@0041cdfd +0043659c NmxControler.cpp 0041bdf4 Catch@0041bdef@0041bdef +0043659c NmxControler.cpp 0041ede8 Catch@0041ede3@0041ede3 +0043659c NmxControler.cpp 00417da7 Catch@00417da2@00417da2 +0043659c NmxControler.cpp 0041ee64 Catch@0041ee5f@0041ee5f +0043659c NmxControler.cpp 0041be76 Catch@0041be71@0041be71 +0043659c NmxControler.cpp 00417e25 Catch@00417e20@00417e20 +0043659c NmxControler.cpp 00416e26 Catch@00416e21@00416e21 +0043659c NmxControler.cpp 00420ee6 Catch@00420ee1@00420ee1 +0043659c NmxControler.cpp 00416ec1 Catch@00416ebc@00416ebc +0043659c NmxControler.cpp 0041fec2 Catch@0041febd@0041febd +0043659c NmxControler.cpp 0041ff62 Catch@0041ff5d@0041ff5d +0043659c NmxControler.cpp 00420f6a Catch@00420f65@00420f65 +0043659c NmxControler.cpp 00416f3f Catch@00416f3a@00416f3a +0043659c NmxControler.cpp 0041fff4 Catch@0041ffef@0041ffef +0043659c NmxControler.cpp 00420fe7 Catch@00420fe2@00420fe2 +0043659c NmxControler.cpp 004170e4 Catch@004170df@004170df +0043659c NmxControler.cpp 0041717f Catch@0041717a@0041717a +0043659c NmxControler.cpp 004171fd Catch@004171f8@004171f8 +0043659c NmxControler.cpp 00417353 Catch@0041734e@0041734e +0043659c NmxControler.cpp 004173ee Catch@004173e9@004173e9 +0043659c NmxControler.cpp 0041746c Catch@00417467@00417467 +0043659c NmxControler.cpp 0041b550 Catch@0041b54b@0041b54b +0043659c NmxControler.cpp 0041f550 Catch@0041f54b@0041f54b +0043659c NmxControler.cpp 00419526 Catch@00419521@00419521 +0043659c NmxControler.cpp 0041f5dd Catch@0041f5d8@0041f5d8 +0043659c NmxControler.cpp 004185d9 Catch@004185d4@004185d4 +0043659c NmxControler.cpp 0041b5f1 Catch@0041b5ec@0041b5ec +0043659c NmxControler.cpp 0041865c Catch@00418657@00418657 +0043659c NmxControler.cpp 0041f65c Catch@0041f657@0041f657 +0043659c NmxControler.cpp 0041b672 Catch@0041b66d@0041b66d +0043659c NmxControler.cpp 0041963e Catch@00419639@00419639 +0043659c NmxControler.cpp 0041a6d9 Catch@0041a6d4@0041a6d4 +0043659c NmxControler.cpp 004186d8 Catch@004186d3@004186d3 +0043659c NmxControler.cpp 004196cb Catch@004196c6@004196c6 +0043659c NmxControler.cpp 0041a77a Catch@0041a775@0041a775 +0043659c NmxControler.cpp 0041a7fb Catch@0041a7f6@0041a7f6 +0043659c NmxControler.cpp 004187e7 Catch@004187e2@004187e2 +0043659c NmxControler.cpp 0041b7e7 Catch@0041b7e2@0041b7e2 +0043659c NmxControler.cpp 00416cd4 FUN_00416be4@00416be4 +00436618 CNmxControler::GetPlatformInfo - co-create PlatformInformationClerkObject failed hr %x 00416a37 FUN_00416969@00416969 +00436618 CNmxControler::GetPlatformInfo - co-create PlatformInformationClerkObject failed hr %x 00416dd1 FUN_00416be4@00416be4 +00436960 SendData to galaxy %d, platform %d failed. 00417095 FUN_00416f7f@00416f7f +004369b8 DataSend to galaxy %d, platform %d, MsgID %d, size %d. 0041a965 FUN_0041a886@0041a886 +004369b8 DataSend to galaxy %d, platform %d, MsgID %d, size %d. 0041705d FUN_00416f7f@00416f7f +00436a28 CNmxControler::CleanPendingMsgList() exited. 00417317 FUN_0041723d@0041723d +00436a88 CNmxControler::CleanPendingMsgList() entered. 0041728e FUN_0041723d@0041723d +00436ae8 CNmxControler::isEngineValid() exited. 004177d1 FUN_004174ac@004174ac +00436b88 RPC call to BootstrapController::GetPlatformStatus(PlatformID = %d) failed with error 0x%x. Attempt to cocreate bootstrap will be made 00417727 FUN_004174ac@004174ac +00436de8 CNmxControler::isEngineValid() entered. 004174fb FUN_004174ac@004174ac +00436e38 Nmx channell was disconnected. Disconnect counter %d. 00417a14 FUN_004177eb@004177eb +00436ed8 NmxSvc failed to initialized MessageChannel. 00417951 FUN_004177eb@004177eb +00436f38 NmxSvc initialized successefuly MessageChannel. 0041fd4e FUN_0041f885@0041f885 +00436f38 NmxSvc initialized successefuly MessageChannel. 00417927 FUN_004177eb@004177eb +00436fd0 Send VersionError failed to platform %d. 00417c40 FUN_00417bc3@00417bc3 +00437098 CNmxControler::ProcessDataReceivedForEngine() exited. 004185b0 FUN_0041807f@0041807f +00437108 NmxSvc received incomplete packet. 00418577 FUN_0041807f@0041807f +004376f0 NmxSvc received packet not intended for it from Galaxy %d, Platform %d. 00418142 FUN_0041807f@0041807f +00437780 CNmxControler::ProcessDataReceivedForEngine() entered. 004180cd FUN_0041807f@0041807f +004377f0 CNmxControler::NetworkNotificationThreadFn exited 00418987 +00437858 CNmxControler::CloseConnection for cookie %d, exited 00418a8a FUN_004189b2@004189b2 +004378c8 CNmxControler::CloseConnection for cookie %d, entered 004189ee FUN_004189b2@004189b2 +00438288 CNmxControler::NotifyLocalsOfRemoteFailure() exited. 0041a1fb FUN_00419f9d@00419f9d +004383b0 CNmxControler::NotifyLocalsOfRemoteFailure status clients event signaled for platform %d. Client list size %d. 0041a0fb FUN_00419f9d@00419f9d +00438570 CNmxControler::NotifyLocalsOfRemoteFailure() entered. 00419fd2 FUN_00419f9d@00419f9d +004385e0 CNmxControler::RemovePlatform() exited. 0041a351 FUN_0041a240@0041a240 +00438630 CNmxControler::RemovePlatform failed 0041a315 FUN_0041a240@0041a240 +00438680 CNmxControler::RemovePlatform() entered. 0041a26b FUN_0041a240@0041a240 +00438b48 SendData to galaxy %d, platform %d failed with error 0x%x. 0041a9c2 FUN_0041a886@0041a886 +00438bc0 SendHeartbeatRate failed to notify platform %d. 0041ac34 FUN_0041ab62@0041ab62 +00438bc0 SendHeartbeatRate failed to notify platform %d. 0041ad10 FUN_0041ac7b@0041ac7b +00438c80 SendGetHeartbeatRate failed to platform %d. 0041adc3 FUN_0041ad32@0041ad32 +00439350 CNmxControler::ConnectionClosed() exited. 0041ba18 FUN_0041b940@0041b940 +004393a8 CNmxControler::ConnectionClosed called for platform %d, which is not in Platforms table 0041b9dd FUN_0041b940@0041b940 +004394a8 CNmxControler::ConnectionClosed() entered. 0041b96a FUN_0041b940@0041b940 +00439500 CNmxControler::RemovePlatform called for platform %d, which is not in Platforms table 0041ba72 FUN_0041ba30@0041ba30 +004395b0 CNmxControler::PlatformErrorThreadFn exited. 0041bd80 +00439a00 CNmxControler::ProcessConnectionInfo status clients event signaled for platform %d. Client list size %d 0041bfbc FUN_0041beb7@0041beb7 +00439b48 SendConnectionInfo to platform %d failed. 0041c1ca FUN_0041c105@0041c105 +00439c18 CNmxControler::Connect() exited. 0041cc9f FUN_0041c62b@0041c62b +0043a3d8 NmxSvc (on this node) is not able to communicate with remote platform(s). 0041c785 FUN_0041c62b@0041c62b +0043a470 Local engine %d is trying to connect to local engine %d, which is not registered with NmxSvc. 0041c73d FUN_0041c62b@0041c62b +0043a590 CNmxControler::Connect() entered. Local engine %d trys to connect to platform %d 0041c679 FUN_0041c62b@0041c62b +0043a638 CNmxControler::SetHeartbeatSendInterval() exited. 0041cecf FUN_0041ce4c@0041ce4c +0043a6a0 CNmxControler::SetHeartbeatSendInterval() entered. 0041ce73 FUN_0041ce4c@0041ce4c +0043a708 CNmxControler::ProcessRemoteGetHeartbeatRate() exited. 0041cf5f FUN_0041cee8@0041cee8 +0043a778 CNmxControler::ProcessRemoteGetHeartbeatRate() entered. 0041cf0f FUN_0041cee8@0041cee8 +0043a7e8 CNmxControler::ConnectionEstablished() exited. 0041d482 FUN_0041cf78@0041cf78 +0043a848 CNmxControler::ConnectionEstablished inserted failed connection for platform %d to PendingResolution list. It has %d status clients. 0041d428 FUN_0041cf78@0041cf78 +0043aa40 CNmxControler::ConnectionEstablished - %d status clients were swaped from PendingResolution list. 0041d321 FUN_0041cf78@0041cf78 +0043adc8 CNmxControler::ConnectionEstablished() entered. 0041cfae FUN_0041cf78@0041cf78 +0043ae28 CNmxControler::ProcessConnectionInfo() exited. 0041d7ab FUN_0041d49e@0041d49e +0043afb8 Initial connection packet received from platform %d, remote NmxSvc version %d is higher then local version %d. 0041d6f6 FUN_0041d49e@0041d49e +0043b098 Initial connection packet received from platform %d, but remote NmxSvc version %d differs from local version %d. 0041d693 FUN_0041d49e@0041d49e +0043b3f8 CNmxControler::ProcessConnectionInfo() entered. 0041d4db FUN_0041d49e@0041d49e +0043b458 CNmxControler::ProcessConnectionInfoReq() exited. 0041d84e FUN_0041d7d0@0041d7d0 +0043b4c0 CNmxControler::ProcessConnectionInfoReq() entered. 0041d7f8 FUN_0041d7d0@0041d7d0 +0043b540 CNmxControler::DataReceived() exited. 0041db27 FUN_0041d910@0041d910 +0043b6c0 NMX Version Error msg processed from platform %d. 0041d9f9 FUN_0041d910@0041d910 +0043b728 CNmxControler::DataReceived - unrecognized message type received from platform %d 0041d9b9 FUN_0041d910@0041d910 +0043b7d0 CNmxControler::DataReceived() entered. 0041d94f FUN_0041d910@0041d910 +0043b908 CNmxControler::TransferData() exited. 0041e033 FUN_0041dcb5@0041dcb5 +0043bb00 Local engine %d send data to Platform %d, Engine %d, Msg Size %d. 0041decc FUN_0041dcb5@0041dcb5 +0043bb88 Local engine is trying to SendData to remote platform %d, but NmxSvc is running in local mode(MessageChannel wasn't initialized). 0041ddda FUN_0041dcb5@0041dcb5 +0043bc90 Cannot transfer data to engine %d, because it is not registered with NmxSvc 0041dd95 FUN_0041dcb5@0041dcb5 +0043bd30 CNmxControler::TransferData() entered. 0041dce5 FUN_0041dcb5@0041dcb5 +0043bd80 CNmxControler::GenerateErrorRequest() exited. 0041e243 FUN_0041e0c0@0041e0c0 +0043be40 CNmxControler::GenerateErrorRequest() entered. 0041e0f3 FUN_0041e0c0@0041e0c0 +0043bea0 CNmxControler::GenerateErrorRequestConfigCategory() exited. 0041e3fc FUN_0041e279@0041e279 +0043bf98 CNmxControler::GenerateErrorRequestConfigCategory() entered. 0041e2ac FUN_0041e279@0041e279 +0043c018 CNmxControler::NotifySubscribersOfLocalFailure() exited for local engine %d. 0041e624 FUN_0041e432@0041e432 +0043c1f0 CNmxControler::NotifySubscribersOfLocalFailure() entered for local engine %d. 0041e467 FUN_0041e432@0041e432 +0043c290 CNmxControler::NotifyLocalItWasInTrouble() exited for local engine %d. 0041e75c FUN_0041e63e@0041e63e +0043c3d8 CNmxControler::NotifyLocalItWasInTrouble() entered for local engine %d. 0041e673 FUN_0041e63e@0041e63e +0043c468 CNmxControler::StatusClientThreadFn exited. 0041ea54 +0043c7d0 CNmxControler::GetRevisionLevel() exited. 0041ed3c FUN_0041eb8b@0041eb8b +0043c828 CNmxControler::GetRevisionLevel local engine %d, remoote platform %d, version returned %d 0041ed02 FUN_0041eb8b@0041eb8b +0043c8e0 CNmxControler::GetRevisionLevel() entered. 0041ebca FUN_0041eb8b@0041eb8b +0043cbf8 DeleteLocalFromPlatforms RPC_S_SERVER_UNAVAILABLE for engine %d 0041f3a9 FUN_0041eea5@0041eea5 +0043cce8 NmxCallback->DataReceived to local engine %d failed with error 0x%x. Time for call to complete %d 0041f2e5 FUN_0041eea5@0041eea5 +0043cdb0 NmxCallback->DataReceived callback to egie %d took %dms 0041f263 FUN_0041eea5@0041eea5 +0043d4e8 CNmxControler::Initialize() exited. 0041fe85 FUN_0041f885@0041f885 +0043d608 Failed to initialize Windows sockets. Ensure that Windows sockets version 2.2 are supported on this machine. 0041fdfb FUN_0041f885@0041f885 +0043d7c8 Failed to initialize MessageChannel with error 0x%x. NmxSvc will be able to work only in local mode. 0041fd8b FUN_0041f885@0041f885 +0043d8c8 CNmxControler::Initialize - Failed to QueryInterface IProcessStatusCallback.- hr = 0x%x 0041fc62 FUN_0041f885@0041f885 +0043d978 CNmxControler::Initialize - Failed to QueryInterface IPlatformStatusCallback.- hr = 0x%x 0041fc1e FUN_0041f885@0041f885 +0043da30 NmxSvc is subscribed for Process Status Notification. 0041fbe4 FUN_0041f885@0041f885 +0043da30 NmxSvc is subscribed for Process Status Notification. 0041fb51 FUN_0041f885@0041f885 +0043daa0 CNmxControler::Initialize - Failed to subscribe IProcessStatusCallback with Bootstrap.- hr = 0x%x 0041fb1d FUN_0041f885@0041f885 +0043daa0 CNmxControler::Initialize - Failed to subscribe IProcessStatusCallback with Bootstrap.- hr = 0x%x 0041fbbe FUN_0041f885@0041f885 +0043db64 NmxSvc is initialized. 0041fa3b FUN_0041f885@0041f885 +0043dba8 CNmxControler::Initialize() entered. 0041f8ca FUN_0041f885@0041f885 +0043dbf8 Engine ID %d, name <%s> wasn't registered with NmxSvc 004202da FUN_0042003e@0042003e +0043dc68 CNmxControler::RegisterEngine() exited. 00420284 FUN_0042003e@0042003e +0043dcb8 Engine %d, name %s, LmxVersion %d was registered with NmxSvc. Callback Thread ID %d 00420242 FUN_0042003e@0042003e +0043dd60 Local Engine %d, registered with NmxSvc, but provided Lmx version <%d> is higher than current LmxVersion <%d> 0042019e FUN_0042003e@0042003e +0043de40 Local Engine %d, registered with NmxSvc, but provided Lmx version <%d> is smaller than current LmxVersion <%d> 00420162 FUN_0042003e@0042003e +0043df20 CNmxControler::RegisterEngine() entered for engine ID %d, name <%s>. 00420074 FUN_0042003e@0042003e +0043dfb0 CNmxControler::UnRegisterEngine() exited. 004204b2 FUN_004202f8@004202f8 +0043e008 Engine %d wasn't UnRegistered with NmxSvc 0042041c FUN_004202f8@004202f8 +0043e060 Engine %d was UnRegistered with NmxSvc 004203f2 FUN_004202f8@004202f8 +0043e0b0 CNmxControler::UnRegisterEngine() entered. 0042032d FUN_004202f8@004202f8 +0043e108 CNmxControler::NotifyProcessStatus - exit hr %x 0042073c FUN_004204d6@004204d6 +0043e168 CNmxControler::NotifyProcessStatus() called for engine %d. ProcessStatus value %d. Engine unregistered with NmxSvc. 00420700 FUN_004204d6@004204d6 +0043e250 CNmxControler::NotifyProcessStatus Local Engine %d was NOT unregistered 004206b7 FUN_004204d6@004204d6 +0043e2e0 CNmxControler::NotifyProcessStatus Local Engine %d was unregistered and delete from NMxSvc. 0042069d FUN_004204d6@004204d6 +0043e448 CNmxControler::NotifyProcessStatus - ENTER lPlatformID %d bstrProcessIdentity %s lPrivateData %d status %d 0042051a FUN_004204d6@004204d6 +0043e520 CNmxControler::NotifyPlatformStatus - exit hr %x 004209cd FUN_00420762@00420762 +0043e588 CNmxControler::NotifyPlatformStatus() called for engine 1. PlatformStatus value %d. Engine unregistered with NmxSvc. 0042098e FUN_00420762@00420762 +0043e678 CNmxControler::NotifyPlatformStatus Local Engine 1 was NOT unregistered 00420948 FUN_00420762@00420762 +0043e708 CNmxControler::NotifyPlatformStatus Local Engine 1 was unregistered and delete from NMxSvc. 00420931 FUN_00420762@00420762 +0043e7c0 CNmxControler::NotifyPlatformStatus() - Engine 1 recovered from trouble state. New state is %d. 004208c8 FUN_00420762@00420762 +0043e880 CNmxControler::NotifyPlatformStatus() - Engine 1 is in trouble state 0042083a FUN_00420762@00420762 +0043e910 CNmxControler::NotifyPlatformStatus - ENTER lPlatformID %d bstrPlatformName %s lPlatformStatus %d lPlatformEngineStatus %d 004207a6 FUN_00420762@00420762 +0043ea08 CNmxControler::OpenConnection() exited. 00420eb6 FUN_004209f0@004209f0 +0043eab8 Local client 0x%x is trying to connect to remote platform %d, but NmxSvc is running in local mode(MessageChannel wasn't initialized). 00420b08 FUN_004209f0@004209f0 +0043ec40 CNmxControler::OpenConnection() entered. Local client 0x%x trys to connect to platform %d 00420a2c FUN_004209f0@004209f0 +0043ed14 NmxService.cpp 00421844 Catch@00421842@00421842 +0043ed14 NmxService.cpp 00422885 Catch@00422880@00422880 +0043ed14 NmxService.cpp 00422909 Catch@00422904@00422904 +0043ed14 NmxService.cpp 004219de Catch@004219d9@004219d9 +0043ed14 NmxService.cpp 00422986 Catch@00422981@00422981 +0043ed14 NmxService.cpp 00421a62 Catch@00421a5d@00421a5d +0043ed14 NmxService.cpp 00421adf Catch@00421ada@00421ada +0043ed14 NmxService.cpp 00422acd Catch@00422ac8@00422ac8 +0043ed14 NmxService.cpp 00422b51 Catch@00422b4c@00422b4c +0043ed14 NmxService.cpp 00422bce Catch@00422bc9@00422bc9 +0043ed14 NmxService.cpp 00421cf0 Catch@00421ceb@00421ceb +0043ed14 NmxService.cpp 00421d73 Catch@00421d6e@00421d6e +0043ed14 NmxService.cpp 00421def Catch@00421dea@00421dea +0043ed14 NmxService.cpp 00421f60 Catch@00421f5b@00421f5b +0043ed14 NmxService.cpp 00421fe3 Catch@00421fde@00421fde +0043ed14 NmxService.cpp 0042205f Catch@0042205a@0042205a +0043ed14 NmxService.cpp 004221d0 Catch@004221cb@004221cb +0043ed14 NmxService.cpp 00422253 Catch@0042224e@0042224e +0043ed14 NmxService.cpp 004222cf Catch@004222ca@004222ca +0043ed14 NmxService.cpp 00421290 Catch@0042128e@0042128e +0043ed14 NmxService.cpp 00421328 Catch@00421326@00421326 +0043ed14 NmxService.cpp 004213a3 Catch@004213a1@004213a1 +0043ed14 NmxService.cpp 0042241d Catch@00422418@00422418 +0043ed14 NmxService.cpp 004214d1 Catch@004214cf@004214cf +0043ed14 NmxService.cpp 004224a1 Catch@0042249c@0042249c +0043ed14 NmxService.cpp 00421552 Catch@00421550@00421550 +0043ed14 NmxService.cpp 0042251e Catch@00422519@00422519 +0043ed14 NmxService.cpp 004215cc Catch@004215ca@004215ca +0043ed14 NmxService.cpp 0042263d Catch@00422638@00422638 +0043ed14 NmxService.cpp 004226c1 Catch@004226bc@004226bc +0043ed14 NmxService.cpp 00421749 Catch@00421747@00421747 +0043ed14 NmxService.cpp 0042273e Catch@00422739@00422739 +0043ed14 NmxService.cpp 004217ca Catch@004217c8@004217c8 +0043ed28 CNmxService::FinalRealese() exited for engine %d. this 0x%x, callback 0x%x 0042123d FUN_0042115f@0042115f +0043edc0 CNmxService::FinalRealese() for engine %d. this 0x%x 004211ad FUN_0042115f@0042115f +0043ee30 CNmxService::RegisterEngine2() exited. 004214a1 FUN_004213e3@004213e3 +0043ee80 CNmxService::RegisterEngine2() entered. 00421420 FUN_004213e3@004213e3 +0043eed0 CNmxService::UnRegisterEngine() exited. 0042170f FUN_0042160d@0042160d +0043ef20 CNmxService::UnRegisterEngine will clear engine %d, this 0x%x, callback 0x%x 004216d6 FUN_0042160d@0042160d +0043efc0 CNmxService::UnRegisterEngine() entered. 00421650 FUN_0042160d@0042160d +0043f014 CNmxService::Connect() exited. 004219b6 FUN_00421885@00421885 +0043f058 Local engine %d is not registered with NmxSvc 00421f05 FUN_00421e30@00421e30 +0043f058 Local engine %d is not registered with NmxSvc 00421c44 FUN_00421b20@00421b20 +0043f058 Local engine %d is not registered with NmxSvc 00421956 FUN_00421885@00421885 +0043f058 Local engine %d is not registered with NmxSvc 00422175 FUN_004220a0@004220a0 +0043f0b8 NmxControler is not initialized. 00422805 FUN_0042277f@0042277f +0043f0b8 NmxControler is not initialized. 00422399 FUN_00422310@00422310 +0043f0b8 NmxControler is not initialized. 00421ebd FUN_00421e30@00421e30 +0043f0b8 NmxControler is not initialized. 00421c76 FUN_00421b20@00421b20 +0043f0b8 NmxControler is not initialized. 00422a4d FUN_004229c7@004229c7 +0043f0b8 NmxControler is not initialized. 004218f3 FUN_00421885@00421885 +0043f0b8 NmxControler is not initialized. 0042212d FUN_004220a0@004220a0 +0043f100 CNmxService::Connect() entered. 004218c2 FUN_00421885@00421885 +0043f140 CNmxService::TransferData() exited. 00421cb7 FUN_00421b20@00421b20 +0043f188 CNmxService::TransferData() entered. 00421b5d FUN_00421b20@00421b20 +0043f1d8 CNmxService::AddSubscriberEngine() entered. 00421e6d FUN_00421e30@00421e30 +0043f230 CNmxService::RemoveSubscriberEngine() entered. 004220dd FUN_004220a0@004220a0 +0043f290 CNmxService::SetHeartbeatSendInterval() exited. 004223ea FUN_00422310@00422310 +0043f2f0 CNmxService::SetHeartbeatSendInterval() entered. 0042234d FUN_00422310@00422310 +0043f358 CNmxService::OpenConnection() exited. 0042260a FUN_0042255f@0042255f +0043f3a8 CNmxService::OpenConnection() entered. 0042259c FUN_0042255f@0042255f +0043f3f8 CNmxService::CloseConnection() exited. 00422852 FUN_0042277f@0042277f +0043f448 CNmxService::CloseConnection() entered. 004227bc FUN_0042277f@0042277f +0043f498 CNmxService::GetConnectionStatus() exited. 00422a9a FUN_004229c7@004229c7 +0043f4f0 CNmxService::GetConnectionStatus() entered. 00422a04 FUN_004229c7@004229c7 +004402a0 NMXSVC::Install - Couldn't create service. Error %d 00426f99 FUN_00426e76@00426e76 +00440308 RPCSS 00426f42 FUN_00426e76@00426e76 +00440318 NMXSVC::Install - Couldn't open service manager. Error %d 00426f12 FUN_00426e76@00426e76 +004403d8 NMXSVC::UnInstall - Service could not be deleted 00427214 FUN_0042703f@0042703f +00440440 NmxSvc service cannot be Uninstalled 004271d6 FUN_0042703f@0042703f +00440490 NmxSvc service Uninstalled - count %d 004271c1 FUN_0042703f@0042703f +004404e0 NmxSvc::Uninstall waiting to unregister old instance. 00427175 FUN_0042703f@0042703f +00440550 NMXSVC::Uninstall - Couldn't open service. Error %d 004270f8 FUN_0042703f@0042703f +004405b8 NMXSVC::Uninstall - Couldn't open service manager. Error %d 004270a3 FUN_0042703f@0042703f +00440700 SERVICE_CONTROL_PAUSE event is received in NmxSvc. 00427319 FUN_00427237@00427237 +00440768 SERVICE_CONTROL_CONTINUE event is received in NmxSvc. 004272ea FUN_00427237@00427237 +004407d8 SERVICE_CONTROL_INTERROGATE event is received in NmxSvc. 004272bb FUN_00427237@00427237 +00440850 SERVICE_CONTROL_SHUTDOWN event is received in NmxSvc. 0042728c FUN_00427237@00427237 +00440910 NmxSvc CServiceModule::Run() stop request! 004275f9 FUN_004273b2@004273b2 +00440968 NmxSvc CServiceModule::Run() exited message loop 004275b2 FUN_004273b2@004273b2 +00440a18 NmxSvc CServiceModule::Run() entered. 004274fa FUN_004273b2@004273b2 +00440a64 The NmxSvc service is running 004274c3 FUN_004273b2@004273b2 +00440abc NmxPing 00427495 FUN_004273b2@004273b2 +00440af8 NmxTraceConn 00427467 FUN_004273b2@004273b2 +00440b14 NmxSvcTimer 00427450 FUN_004273b2@004273b2 +00440b2c NmxSvcError 00427439 FUN_004273b2@004273b2 +00440b44 NmxSvcTrace 00427424 FUN_004273b2@004273b2 +00440ba8 NmxSvc 00427ce5 FUN_00427c21@00427c21 +004412f0 Ping ERR -- 12 -- recvfrom failed: error = %d 004290e2 FUN_00428a32@00428a32 +00441398 Ping ERR -- 9 -- sendto failed: error = %d 00428f76 FUN_00428a32@00428a32 +00441610 Ping ERROR -- 2 -- WSASocket failed: %d 00428b70 FUN_00428a32@00428a32 diff --git a/analysis/ghidra/exports/NmxSvcps.dll.call-refs.tsv b/analysis/ghidra/exports/NmxSvcps.dll.call-refs.tsv new file mode 100644 index 0000000..5423838 --- /dev/null +++ b/analysis/ghidra/exports/NmxSvcps.dll.call-refs.tsv @@ -0,0 +1,14 @@ +caller_entry caller_name call_address target +10001000 DllGetClassObject 1000102f NdrDllGetClassObject +10001040 DllCanUnloadNow 10001045 NdrDllCanUnloadNow +10001050 FUN_10001050 1000105c NdrCStdStubBuffer_Release +100010a0 DllRegisterServer 100010be NdrDllRegisterProxy +100010a0 DllRegisterServer 100010d4 NdrDllRegisterProxy +100010e0 DllUnregisterServer 100010fe NdrDllUnregisterProxy +100010e0 DllUnregisterServer 10001114 NdrDllUnregisterProxy +10002cb9 setSBCS 10002ccb _memset +10002d1d setSBUpLow 10002d8e _memset +10003054 __setmbcp_nolock 100030f2 _memset +10003054 __setmbcp_nolock 10003139 _memset +10003889 __call_reportfault 100038c1 _memset +10004977 __crtGetStringTypeA_stat 10004a16 _memset diff --git a/analysis/ghidra/exports/NmxSvcps.dll.functions.tsv b/analysis/ghidra/exports/NmxSvcps.dll.functions.tsv new file mode 100644 index 0000000..c81df28 --- /dev/null +++ b/analysis/ghidra/exports/NmxSvcps.dll.functions.tsv @@ -0,0 +1,152 @@ +entry name signature body_size call_count interesting_calls +10001000 DllGetClassObject HRESULT DllGetClassObject(IID * rclsid, IID * riid, LPVOID * ppv) 57 1 NdrDllGetClassObject +10001040 DllCanUnloadNow HRESULT DllCanUnloadNow(void) 12 1 NdrDllCanUnloadNow +10001050 FUN_10001050 undefined FUN_10001050(IRpcStubBuffer * param_1) 21 1 NdrCStdStubBuffer_Release +10001070 FUN_10001070 undefined4 FUN_10001070(HMODULE param_1, int param_2) 33 1 +100010a0 DllRegisterServer undefined DllRegisterServer(void) 59 1 NdrDllRegisterProxy +100010e0 DllUnregisterServer undefined DllUnregisterServer(void) 59 1 NdrDllUnregisterProxy +1000111c NdrCStdStubBuffer_Release ULONG NdrCStdStubBuffer_Release(IRpcStubBuffer * This, IPSFactoryBuffer * pPSF) 6 0 +1000118e __CRT_INIT@12 undefined4 __CRT_INIT@12(undefined4 param_1, int param_2, int param_3) 332 23 +10001267 FUN_10001267 undefined FUN_10001267(void) 20 1 +100012f2 ___DllMainCRTStartup int ___DllMainCRTStartup(int param_1, int param_2, HMODULE param_3) 226 4 +100013e8 entry undefined entry(HMODULE param_1, int param_2, int param_3) 35 2 +1000140b FUN_1000140b undefined FUN_1000140b(void) 9 1 +1000141d ___set_flsgetvalue LPVOID ___set_flsgetvalue(void) 52 3 +10001451 __mtterm void __mtterm(void) 61 3 +1000148e __initptd void __initptd(_ptiddata _Ptd, pthreadlocinfo _Locale) 156 8 +10001530 FUN_10001530 undefined FUN_10001530(void) 9 1 +10001539 FUN_10001539 undefined FUN_10001539(void) 9 1 +10001542 __getptd_noexit _ptiddata __getptd_noexit(void) 121 8 +100015bb __getptd _ptiddata __getptd(void) 26 2 +100015d5 __freefls@4 undefined __freefls@4(void * param_1) 279 9 +100016ef FUN_100016ef undefined FUN_100016ef(void) 9 1 +100016fb FUN_100016fb undefined FUN_100016fb(void) 9 1 +10001704 __freeptd void __freeptd(_ptiddata _Ptd) 110 4 +10001772 __mtinit int __mtinit(void) 379 12 +100018ed _free void _free(void * _Memory) 58 4 +10001927 __malloc_crt void * __malloc_crt(size_t _Size) 69 2 +1000196c __calloc_crt void * __calloc_crt(size_t _Count, size_t _Size) 76 2 +100019b8 __realloc_crt void * __realloc_crt(void * _Ptr, size_t _NewSize) 78 2 +10001a06 ___crtCorExitProcess void ___crtCorExitProcess(int param_1) 43 2 +10001a31 ___crtExitProcess void ___crtExitProcess(int param_1) 23 2 +10001a49 FUN_10001a49 undefined FUN_10001a49(void) 9 1 +10001a52 FUN_10001a52 undefined FUN_10001a52(void) 9 1 +10001a5b __init_pointers void __init_pointers(void) 51 7 +10001a8e __initterm_e undefined __initterm_e(undefined4 * param_1, undefined4 * param_2) 36 0 +10001ab2 __cinit int __cinit(int param_1) 151 4 +10001b49 doexit undefined doexit(int param_1, int param_2, int param_3) 305 8 +10001c74 FUN_10001c74 undefined FUN_10001c74(void) 15 1 +10001c89 __exit void __exit(int _Code) 22 1 +10001c9f __cexit void __cexit(void) 15 1 +10001cae __amsg_exit void __amsg_exit(int param_1) 29 3 +10001ccc __ioinit int __ioinit(void) 581 6 +10001f11 __ioterm void __ioterm(void) 83 2 +10001f64 __setenvp int __setenvp(void) 219 6 +10002040 parse_cmdline undefined parse_cmdline(undefined4 * param_1, byte * param_2, int * param_3) 410 1 +100021da __setargv int __setargv(void) 187 4 +10002295 ___crtGetEnvironmentStringsA LPVOID ___crtGetEnvironmentStringsA(void) 151 5 +1000232c __RTC_Initialize undefined __RTC_Initialize(void) 38 0 +10002378 __heap_init int __heap_init(void) 30 1 +10002396 __heap_term void __heap_term(void) 20 1 +100023b0 __SEH_prolog4 undefined __SEH_prolog4(undefined4 param_1, int param_2) 69 0 +100023f5 __SEH_epilog4 undefined __SEH_epilog4(void) 20 0 +10002410 __except_handler4 undefined4 __except_handler4(PEXCEPTION_RECORD param_1, PVOID param_2, undefined4 param_3) 399 6 +1000259f __XcptFilter int __XcptFilter(ulong _ExceptionNum, _EXCEPTION_POINTERS * _ExceptionPtr) 330 1 +100026e9 ___CppXcptFilter int ___CppXcptFilter(ulong _ExceptionNum, _EXCEPTION_POINTERS * _ExceptionPtr) 32 1 +10002709 ___security_init_cookie void ___security_init_cookie(void) 155 5 +100027a4 __mtinitlocks int __mtinitlocks(void) 74 1 +100027ee __mtdeletelocks void __mtdeletelocks(void) 87 2 +10002845 FUN_10002845 undefined FUN_10002845(int param_1) 23 1 +1000285c __mtinitlocknum int __mtinitlocknum(int _LockNum) 185 11 +10002915 FUN_10002915 undefined FUN_10002915(void) 9 1 +1000291e __lock void __lock(int _File) 51 3 +10002951 ___addlocaleref undefined ___addlocaleref(LONG * param_1) 143 1 +100029e0 ___removelocaleref LONG * ___removelocaleref(LONG * param_1) 153 1 +10002a79 ___freetlocinfo undefined ___freetlocinfo(void * param_1) 331 4 +10002bc4 __updatetlocinfoEx_nolock LONG * __updatetlocinfoEx_nolock(undefined4 * param_1, LONG * param_2) 77 3 +10002c11 ___updatetlocinfo pthreadlocinfo ___updatetlocinfo(void) 109 7 +10002c7e FUN_10002c7e undefined FUN_10002c7e(void) 12 1 +10002c8a CPtoLCID int CPtoLCID(int param_1) 47 0 +10002cb9 setSBCS void setSBCS(threadmbcinfostruct * param_1) 100 1 _memset +10002d1d setSBUpLow void setSBUpLow(threadmbcinfostruct * param_1) 400 5 _memset +10002ead ___updatetmbcinfo pthreadmbcinfo ___updatetmbcinfo(void) 152 9 +10002f48 FUN_10002f48 undefined FUN_10002f48(void) 9 1 +10002f51 _LocaleUpdate undefined _LocaleUpdate(_LocaleUpdate * this, localeinfo_struct * param_1) 135 3 +10002fd8 getSystemCP int getSystemCP(int param_1) 124 3 +10003054 __setmbcp_nolock undefined __setmbcp_nolock(undefined4 param_1, int param_2) 489 8 _memset +1000323d __setmbcp int __setmbcp(int _CodePage) 399 13 +1000339e FUN_1000339e undefined FUN_1000339e(void) 9 1 +100033d7 ___initmbctable undefined4 ___initmbctable(void) 30 1 +100033f5 __get_errno_from_oserr int __get_errno_from_oserr(ulong param_1) 66 0 +10003437 __errno int * __errno(void) 19 1 +1000344a _malloc void * _malloc(size_t _Size) 148 6 +100034de __calloc_impl LPVOID __calloc_impl(uint param_1, uint param_2, undefined4 * param_3) 130 3 +10003560 _realloc void * _realloc(void * _Memory, size_t _NewSize) 173 7 +10003646 FUN_10003646 undefined FUN_10003646(void) 17 1 +10003657 __initp_misc_winsig undefined __initp_misc_winsig(undefined4 param_1) 30 0 +10003675 siglookup uint siglookup(uint param_1) 55 0 +100036ac FUN_100036ac undefined FUN_100036ac(void) 13 1 +100036b9 _raise int _raise(int _SigNum) 398 11 +10003820 FUN_10003820 undefined FUN_10003820(void) 15 1 +1000385c FUN_1000385c undefined FUN_1000385c(undefined4 param_1) 15 0 +1000386b FUN_1000386b undefined FUN_1000386b(undefined4 param_1) 15 0 +1000387a FUN_1000387a undefined FUN_1000387a(undefined4 param_1) 15 0 +10003889 __call_reportfault void __call_reportfault(int nDbgHookCode, DWORD dwExceptionCode, DWORD dwExceptionFlags) 297 6 _memset +100039b2 __invoke_watson void __invoke_watson(wchar_t * param_1, wchar_t * param_2, wchar_t * param_3, uint param_4, uintptr_t param_5) 37 3 +100039d7 __invalid_parameter undefined __invalid_parameter(wchar_t * param_1, wchar_t * param_2, wchar_t * param_3, uint param_4, uintptr_t param_5) 44 2 +10003a04 FUN_10003a04 undefined FUN_10003a04(void) 16 1 +10003a14 FUN_10003a14 undefined FUN_10003a14(undefined4 param_1) 15 0 +10003a23 __callnewh int __callnewh(size_t _Size) 40 1 +10003a4b __onexit_nolock PVOID __onexit_nolock(PVOID param_1) 182 4 +10003b32 __onexit _onexit_t __onexit(_onexit_t _Func) 54 5 +10003b68 FUN_10003b68 undefined FUN_10003b68(void) 6 1 +10003b6e _atexit int _atexit(_func_4879 * param_1) 23 1 +10003b85 __initp_misc_cfltcvt_tab undefined __initp_misc_cfltcvt_tab(void) 35 1 +10003bb0 __ValidateImageBase BOOL __ValidateImageBase(PBYTE pImageBase) 53 0 +10003bf0 __FindPESection PIMAGE_SECTION_HEADER __FindPESection(PBYTE pImageBase, DWORD_PTR rva) 68 0 +10003c40 __IsNonwritableInCurrentImage BOOL __IsNonwritableInCurrentImage(PBYTE pTarget) 166 2 +10003cfc __GET_RTERRMSG wchar_t * __GET_RTERRMSG(int param_1) 38 0 +10003d22 __NMSG_WRITE void __NMSG_WRITE(int param_1) 431 13 +10003ed1 __FF_MSGBANNER void __FF_MSGBANNER(void) 57 2 +10003f0a _strcpy_s errno_t _strcpy_s(char * _Dst, rsize_t _SizeInBytes, char * _Src) 95 2 +10003f70 _strlen size_t _strlen(char * _Str) 139 0 +10003ffb x_ismbbtype_l int x_ismbbtype_l(localeinfo_struct * param_1, uint param_2, int param_3, int param_4) 83 1 +1000404e __ismbblead int __ismbblead(uint _C) 24 1 +10004066 __security_check_cookie undefined __security_check_cookie(int param_1) 15 1 +10004080 __local_unwind4 undefined __local_unwind4(uint * param_1, int param_2, uint param_3) 144 2 +10004156 FUN_10004156 undefined FUN_10004156(int param_1) 28 1 +10004172 _EH4_CallFilterFunc undefined _EH4_CallFilterFunc(undefined * param_1) 23 0 +10004189 _EH4_TransferToHandler undefined _EH4_TransferToHandler(undefined * UNRECOVERED_JUMPTABLE) 25 1 +100041a2 _EH4_GlobalUnwind2 undefined _EH4_GlobalUnwind2(PVOID param_1, PEXCEPTION_RECORD param_2) 25 1 +100041bb _EH4_LocalUnwind undefined _EH4_LocalUnwind(int param_1, uint param_2, undefined4 param_3, uint * param_4) 23 1 +100041d2 ___free_lc_time undefined ___free_lc_time(undefined4 * param_1) 887 1 +10004549 ___free_lconv_num undefined ___free_lconv_num(undefined4 * param_1) 105 1 +100045b2 ___free_lconv_mon undefined ___free_lconv_mon(int param_1) 254 1 +100046b0 _memset void * _memset(void * _Dst, int _Val, size_t _Size) 122 1 +1000472a __freea void __freea(void * _Memory) 32 1 +1000474a __crtLCMapStringA_stat int __crtLCMapStringA_stat(localeinfo_struct * param_1, ulong param_2, ulong param_3, char * param_4, int param_5, char * param_6, int param_7, int param_8, int param_9) 487 7 +10004931 ___crtLCMapStringA int ___crtLCMapStringA(_locale_t _Plocinfo, LPCWSTR _LocaleName, DWORD _DwMapFlag, LPCSTR _LpSrcStr, int _CchSrc, LPSTR _LpDestStr, int _CchDest, int _Code_page, BOOL _BError) 70 2 +10004977 __crtGetStringTypeA_stat int __crtGetStringTypeA_stat(localeinfo_struct * param_1, ulong param_2, char * param_3, int param_4, ushort * param_5, int param_6, int param_7, int param_8) 231 7 _memset +10004a5e ___crtGetStringTypeA BOOL ___crtGetStringTypeA(_locale_t _Plocinfo, DWORD _DWInfoType, LPCSTR _LpSrcStr, int _CchSrc, LPWORD _LpCharType, int _Code_page, BOOL _BError) 64 2 +10004a9e __msize size_t __msize(void * _Memory) 51 3 +10004ad1 _abort void _abort(void) 50 4 +10004b10 FID_conflict:_memcpy void * FID_conflict:_memcpy(void * _Dst, void * _Src, size_t _Size) 708 1 +10004e71 FUN_10004e71 undefined FUN_10004e71(void) 8 0 +10004e82 ___crtMessageBoxW int ___crtMessageBoxW(LPCWSTR _LpText, LPCWSTR _LpCaption, UINT _UType) 364 6 +10004fee _wcscat_s errno_t _wcscat_s(wchar_t * _Dst, rsize_t _SizeInWords, wchar_t * _Src) 117 2 +10005063 _wcsncpy_s errno_t _wcsncpy_s(wchar_t * _Dst, rsize_t _SizeInWords, wchar_t * _Src, rsize_t _MaxCount) 205 2 +10005130 _wcslen size_t _wcslen(wchar_t * _Str) 27 0 +1000514b _wcscpy_s errno_t _wcscpy_s(wchar_t * _Dst, rsize_t _SizeInWords, wchar_t * _Src) 99 2 +100051ae __set_error_mode int __set_error_mode(int _Mode) 63 2 +100051ed ___report_gsfailure void ___report_gsfailure(void) 262 6 +10005300 __global_unwind2 undefined __global_unwind2(PVOID param_1) 32 1 +10005365 __local_unwind2 undefined __local_unwind2(int param_1, uint param_2) 132 2 +10005415 __NLG_Notify void __NLG_Notify(ulong param_1) 31 0 +10005434 FUN_10005434 undefined FUN_10005434(void) 3 0 +10005437 __VEC_memzero undefined1[16] * __VEC_memzero(undefined1[16] * param_1, uint param_2) 183 0 +10005510 __alloca_probe_16 uint __alloca_probe_16(void) 22 1 +10005526 __alloca_probe_8 uint __alloca_probe_8(void) 22 1 +1000553c FUN_1000553c undefined4 * FUN_1000553c(uint param_1) 253 0 +10005640 __alloca_probe undefined __alloca_probe(void) 43 0 +1000566c RtlUnwind void RtlUnwind(PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue) 6 0 +10006000 FUN_10006000 undefined4 FUN_10006000(byte * param_1, int * param_2) 342 0 diff --git a/analysis/ghidra/exports/NmxSvcps.dll.ghidra.md b/analysis/ghidra/exports/NmxSvcps.dll.ghidra.md new file mode 100644 index 0000000..dc9329d --- /dev/null +++ b/analysis/ghidra/exports/NmxSvcps.dll.ghidra.md @@ -0,0 +1,378 @@ +# NmxSvcps.dll + +## Program + +- Language: `x86:LE:32:default` +- Compiler spec: `windows` +- Image base: `10000000` +- Executable format: `Portable Executable (PE)` + +## Memory Blocks + +| Name | Start | End | Size | R | W | X | +| --- | ---: | ---: | ---: | :---: | :---: | :---: | +| `Headers` | `10000000` | `100003ff` | 1024 | Y | | | +| `.text` | `10001000` | `100057ff` | 18432 | Y | | Y | +| `.orpc` | `10006000` | `100061ff` | 512 | Y | | Y | +| `.rdata` | `10007000` | `10009fff` | 12288 | Y | | | +| `.data` | `1000a000` | `1000b9bb` | 6588 | Y | Y | | +| `.rsrc` | `1000c000` | `1000c5ff` | 1536 | Y | | | +| `.reloc` | `1000d000` | `1000d9ff` | 2560 | Y | | | +| `tdb` | `ffdff000` | `ffdfffff` | 4096 | Y | Y | | + +## External Imports + +- `KERNEL32.DLL::DecodePointer` +- `KERNEL32.DLL::DeleteCriticalSection` +- `KERNEL32.DLL::DisableThreadLibraryCalls` +- `KERNEL32.DLL::EncodePointer` +- `KERNEL32.DLL::EnterCriticalSection` +- `KERNEL32.DLL::ExitProcess` +- `KERNEL32.DLL::FreeEnvironmentStringsW` +- `KERNEL32.DLL::GetACP` +- `KERNEL32.DLL::GetCPInfo` +- `KERNEL32.DLL::GetCommandLineA` +- `KERNEL32.DLL::GetCurrentProcess` +- `KERNEL32.DLL::GetCurrentProcessId` +- `KERNEL32.DLL::GetCurrentThreadId` +- `KERNEL32.DLL::GetEnvironmentStringsW` +- `KERNEL32.DLL::GetFileType` +- `KERNEL32.DLL::GetLastError` +- `KERNEL32.DLL::GetModuleFileNameA` +- `KERNEL32.DLL::GetModuleFileNameW` +- `KERNEL32.DLL::GetModuleHandleW` +- `KERNEL32.DLL::GetOEMCP` +- `KERNEL32.DLL::GetProcAddress` +- `KERNEL32.DLL::GetStartupInfoW` +- `KERNEL32.DLL::GetStdHandle` +- `KERNEL32.DLL::GetStringTypeW` +- `KERNEL32.DLL::GetSystemTimeAsFileTime` +- `KERNEL32.DLL::GetTickCount` +- `KERNEL32.DLL::HeapAlloc` +- `KERNEL32.DLL::HeapCreate` +- `KERNEL32.DLL::HeapDestroy` +- `KERNEL32.DLL::HeapFree` +- `KERNEL32.DLL::HeapReAlloc` +- `KERNEL32.DLL::HeapSize` +- `KERNEL32.DLL::InitializeCriticalSectionAndSpinCount` +- `KERNEL32.DLL::InterlockedDecrement` +- `KERNEL32.DLL::InterlockedIncrement` +- `KERNEL32.DLL::IsDebuggerPresent` +- `KERNEL32.DLL::IsProcessorFeaturePresent` +- `KERNEL32.DLL::IsValidCodePage` +- `KERNEL32.DLL::LCMapStringW` +- `KERNEL32.DLL::LeaveCriticalSection` +- `KERNEL32.DLL::LoadLibraryW` +- `KERNEL32.DLL::MultiByteToWideChar` +- `KERNEL32.DLL::QueryPerformanceCounter` +- `KERNEL32.DLL::RtlUnwind` +- `KERNEL32.DLL::SetHandleCount` +- `KERNEL32.DLL::SetLastError` +- `KERNEL32.DLL::SetUnhandledExceptionFilter` +- `KERNEL32.DLL::Sleep` +- `KERNEL32.DLL::TerminateProcess` +- `KERNEL32.DLL::TlsAlloc` +- `KERNEL32.DLL::TlsFree` +- `KERNEL32.DLL::TlsGetValue` +- `KERNEL32.DLL::TlsSetValue` +- `KERNEL32.DLL::UnhandledExceptionFilter` +- `KERNEL32.DLL::WideCharToMultiByte` +- `KERNEL32.DLL::WriteFile` +- `OLEAUT32.DLL::BSTR_UserFree` +- `OLEAUT32.DLL::BSTR_UserMarshal` +- `OLEAUT32.DLL::BSTR_UserSize` +- `OLEAUT32.DLL::BSTR_UserUnmarshal` +- `RPCRT4.DLL::CStdStubBuffer_AddRef` +- `RPCRT4.DLL::CStdStubBuffer_Connect` +- `RPCRT4.DLL::CStdStubBuffer_CountRefs` +- `RPCRT4.DLL::CStdStubBuffer_DebugServerQueryInterface` +- `RPCRT4.DLL::CStdStubBuffer_DebugServerRelease` +- `RPCRT4.DLL::CStdStubBuffer_Disconnect` +- `RPCRT4.DLL::CStdStubBuffer_Invoke` +- `RPCRT4.DLL::CStdStubBuffer_IsIIDSupported` +- `RPCRT4.DLL::CStdStubBuffer_QueryInterface` +- `RPCRT4.DLL::IUnknown_AddRef_Proxy` +- `RPCRT4.DLL::IUnknown_QueryInterface_Proxy` +- `RPCRT4.DLL::IUnknown_Release_Proxy` +- `RPCRT4.DLL::NdrCStdStubBuffer_Release` +- `RPCRT4.DLL::NdrDllCanUnloadNow` +- `RPCRT4.DLL::NdrDllGetClassObject` +- `RPCRT4.DLL::NdrDllRegisterProxy` +- `RPCRT4.DLL::NdrDllUnregisterProxy` +- `RPCRT4.DLL::NdrOleAllocate` +- `RPCRT4.DLL::NdrOleFree` + +## Exports and Globals + +| Name | Address | Function | +| --- | ---: | --- | +| `Ordinal_2` | `10001000` | `DllGetClassObject` | +| `DllGetClassObject` | `10001000` | `DllGetClassObject` | +| `Ordinal_1` | `10001040` | `DllCanUnloadNow` | +| `DllCanUnloadNow` | `10001040` | `DllCanUnloadNow` | +| `Ordinal_3` | `100010a0` | `DllRegisterServer` | +| `DllRegisterServer` | `100010a0` | `DllRegisterServer` | +| `Ordinal_4` | `100010e0` | `DllUnregisterServer` | +| `DllUnregisterServer` | `100010e0` | `DllUnregisterServer` | +| `NdrCStdStubBuffer_Release` | `1000111c` | `NdrCStdStubBuffer_Release` | +| `__CRT_INIT@12` | `1000118e` | `__CRT_INIT@12` | +| `___DllMainCRTStartup` | `100012f2` | `___DllMainCRTStartup` | +| `entry` | `100013e8` | `entry` | +| `___set_flsgetvalue` | `1000141d` | `___set_flsgetvalue` | +| `__mtterm` | `10001451` | `__mtterm` | +| `__initptd` | `1000148e` | `__initptd` | +| `__getptd_noexit` | `10001542` | `__getptd_noexit` | +| `__getptd` | `100015bb` | `__getptd` | +| `__freefls@4` | `100015d5` | `__freefls@4` | +| `__freeptd` | `10001704` | `__freeptd` | +| `__mtinit` | `10001772` | `__mtinit` | +| `_free` | `100018ed` | `_free` | +| `__malloc_crt` | `10001927` | `__malloc_crt` | +| `__calloc_crt` | `1000196c` | `__calloc_crt` | +| `__realloc_crt` | `100019b8` | `__realloc_crt` | +| `___crtCorExitProcess` | `10001a06` | `___crtCorExitProcess` | +| `___crtExitProcess` | `10001a31` | `___crtExitProcess` | +| `__init_pointers` | `10001a5b` | `__init_pointers` | +| `__initterm_e` | `10001a8e` | `__initterm_e` | +| `__cinit` | `10001ab2` | `__cinit` | +| `doexit` | `10001b49` | `doexit` | +| `_doexit` | `10001b49` | `doexit` | +| `__exit` | `10001c89` | `__exit` | +| `__cexit` | `10001c9f` | `__cexit` | +| `__amsg_exit` | `10001cae` | `__amsg_exit` | +| `__ioinit` | `10001ccc` | `__ioinit` | +| `__ioterm` | `10001f11` | `__ioterm` | +| `__setenvp` | `10001f64` | `__setenvp` | +| `parse_cmdline` | `10002040` | `parse_cmdline` | +| `_parse_cmdline` | `10002040` | `parse_cmdline` | +| `__setargv` | `100021da` | `__setargv` | +| `___crtGetEnvironmentStringsA` | `10002295` | `___crtGetEnvironmentStringsA` | +| `__RTC_Initialize` | `1000232c` | `__RTC_Initialize` | +| `__heap_init` | `10002378` | `__heap_init` | +| `__heap_term` | `10002396` | `__heap_term` | +| `__SEH_prolog4` | `100023b0` | `__SEH_prolog4` | +| `__SEH_epilog4` | `100023f5` | `__SEH_epilog4` | +| `__except_handler4` | `10002410` | `__except_handler4` | +| `__XcptFilter` | `1000259f` | `__XcptFilter` | +| `___CppXcptFilter` | `100026e9` | `___CppXcptFilter` | +| `___security_init_cookie` | `10002709` | `___security_init_cookie` | +| `__mtinitlocks` | `100027a4` | `__mtinitlocks` | +| `__mtdeletelocks` | `100027ee` | `__mtdeletelocks` | +| `__mtinitlocknum` | `1000285c` | `__mtinitlocknum` | +| `__lock` | `1000291e` | `__lock` | +| `___addlocaleref` | `10002951` | `___addlocaleref` | +| `___removelocaleref` | `100029e0` | `___removelocaleref` | +| `___freetlocinfo` | `10002a79` | `___freetlocinfo` | +| `__updatetlocinfoEx_nolock` | `10002bc4` | `__updatetlocinfoEx_nolock` | +| `___updatetlocinfo` | `10002c11` | `___updatetlocinfo` | +| `CPtoLCID` | `10002c8a` | `CPtoLCID` | +| `?CPtoLCID@@YAHH@Z` | `10002c8a` | `CPtoLCID` | +| `setSBCS` | `10002cb9` | `setSBCS` | +| `?setSBCS@@YAXPAUthreadmbcinfostruct@@@Z` | `10002cb9` | `setSBCS` | +| `setSBUpLow` | `10002d1d` | `setSBUpLow` | +| `?setSBUpLow@@YAXPAUthreadmbcinfostruct@@@Z` | `10002d1d` | `setSBUpLow` | +| `___updatetmbcinfo` | `10002ead` | `___updatetmbcinfo` | +| `??0_LocaleUpdate@@QAE@PAUlocaleinfo_struct@@@Z` | `10002f51` | `_LocaleUpdate` | +| `getSystemCP` | `10002fd8` | `getSystemCP` | +| `?getSystemCP@@YAHH@Z` | `10002fd8` | `getSystemCP` | +| `__setmbcp_nolock` | `10003054` | `__setmbcp_nolock` | +| `__setmbcp` | `1000323d` | `__setmbcp` | +| `___initmbctable` | `100033d7` | `___initmbctable` | +| `__get_errno_from_oserr` | `100033f5` | `__get_errno_from_oserr` | +| `__errno` | `10003437` | `__errno` | +| `_malloc` | `1000344a` | `_malloc` | +| `__calloc_impl` | `100034de` | `__calloc_impl` | +| `_realloc` | `10003560` | `_realloc` | +| `__initp_misc_winsig` | `10003657` | `__initp_misc_winsig` | +| `siglookup` | `10003675` | `siglookup` | +| `_siglookup` | `10003675` | `siglookup` | +| `_raise` | `100036b9` | `_raise` | +| `__call_reportfault` | `10003889` | `__call_reportfault` | +| `__invoke_watson` | `100039b2` | `__invoke_watson` | +| `__invalid_parameter` | `100039d7` | `__invalid_parameter` | +| `__callnewh` | `10003a23` | `__callnewh` | +| `__onexit_nolock` | `10003a4b` | `__onexit_nolock` | +| `__onexit` | `10003b32` | `__onexit` | +| `_atexit` | `10003b6e` | `_atexit` | +| `__initp_misc_cfltcvt_tab` | `10003b85` | `__initp_misc_cfltcvt_tab` | +| `__ValidateImageBase` | `10003bb0` | `__ValidateImageBase` | +| `__FindPESection` | `10003bf0` | `__FindPESection` | +| `__IsNonwritableInCurrentImage` | `10003c40` | `__IsNonwritableInCurrentImage` | +| `__GET_RTERRMSG` | `10003cfc` | `__GET_RTERRMSG` | +| `__NMSG_WRITE` | `10003d22` | `__NMSG_WRITE` | +| `__FF_MSGBANNER` | `10003ed1` | `__FF_MSGBANNER` | +| `_strcpy_s` | `10003f0a` | `_strcpy_s` | +| `_strlen` | `10003f70` | `_strlen` | +| `x_ismbbtype_l` | `10003ffb` | `x_ismbbtype_l` | +| `?x_ismbbtype_l@@YAHPAUlocaleinfo_struct@@IHH@Z` | `10003ffb` | `x_ismbbtype_l` | +| `__ismbblead` | `1000404e` | `__ismbblead` | +| `__security_check_cookie` | `10004066` | `__security_check_cookie` | +| `@__security_check_cookie@4` | `10004066` | `__security_check_cookie` | +| `__local_unwind4` | `10004080` | `__local_unwind4` | +| `_EH4_CallFilterFunc` | `10004172` | `_EH4_CallFilterFunc` | +| `@_EH4_CallFilterFunc@8` | `10004172` | `_EH4_CallFilterFunc` | +| `_EH4_TransferToHandler` | `10004189` | `_EH4_TransferToHandler` | +| `@_EH4_TransferToHandler@8` | `10004189` | `_EH4_TransferToHandler` | +| `_EH4_GlobalUnwind2` | `100041a2` | `_EH4_GlobalUnwind2` | +| `@_EH4_GlobalUnwind2@8` | `100041a2` | `_EH4_GlobalUnwind2` | +| `_EH4_LocalUnwind` | `100041bb` | `_EH4_LocalUnwind` | +| `@_EH4_LocalUnwind@16` | `100041bb` | `_EH4_LocalUnwind` | +| `___free_lc_time` | `100041d2` | `___free_lc_time` | +| `___free_lconv_num` | `10004549` | `___free_lconv_num` | +| `___free_lconv_mon` | `100045b2` | `___free_lconv_mon` | +| `_memset` | `100046b0` | `_memset` | +| `__freea` | `1000472a` | `__freea` | +| `__crtLCMapStringA_stat` | `1000474a` | `__crtLCMapStringA_stat` | +| `?__crtLCMapStringA_stat@@YAHPAUlocaleinfo_struct@@KKPBDHPADHHH@Z` | `1000474a` | `__crtLCMapStringA_stat` | +| `___crtLCMapStringA` | `10004931` | `___crtLCMapStringA` | +| `__crtGetStringTypeA_stat` | `10004977` | `__crtGetStringTypeA_stat` | +| `?__crtGetStringTypeA_stat@@YAHPAUlocaleinfo_struct@@KPBDHPAGHHH@Z` | `10004977` | `__crtGetStringTypeA_stat` | +| `___crtGetStringTypeA` | `10004a5e` | `___crtGetStringTypeA` | +| `__msize` | `10004a9e` | `__msize` | +| `_abort` | `10004ad1` | `_abort` | +| `FID_conflict:_memcpy` | `10004b10` | `FID_conflict:_memcpy` | +| `_memmove` | `10004b10` | `FID_conflict:_memcpy` | +| `_memcpy` | `10004b10` | `FID_conflict:_memcpy` | +| `___crtMessageBoxW` | `10004e82` | `___crtMessageBoxW` | +| `_wcscat_s` | `10004fee` | `_wcscat_s` | +| `_wcsncpy_s` | `10005063` | `_wcsncpy_s` | +| `_wcslen` | `10005130` | `_wcslen` | +| `_wcscpy_s` | `1000514b` | `_wcscpy_s` | +| `__set_error_mode` | `100051ae` | `__set_error_mode` | +| `___report_gsfailure` | `100051ed` | `___report_gsfailure` | +| `__global_unwind2` | `10005300` | `__global_unwind2` | +| `__local_unwind2` | `10005365` | `__local_unwind2` | +| `__NLG_Notify` | `10005415` | `__NLG_Notify` | +| `__VEC_memzero` | `10005437` | `__VEC_memzero` | +| `__alloca_probe_16` | `10005510` | `__alloca_probe_16` | +| `__alloca_probe_8` | `10005526` | `__alloca_probe_8` | +| `__alloca_probe` | `10005640` | `__alloca_probe` | +| `__chkstk` | `10005640` | `__alloca_probe` | +| `RtlUnwind` | `1000566c` | `RtlUnwind` | +| `Rsrc_Version_1_409` | `1000c0a0` | `` | +| `Rsrc_Manifest_2_409` | `1000c46c` | `` | +| `ExceptionList` | `ffdff000` | `` | +| `StackBase` | `ffdff004` | `` | +| `StackLimit` | `ffdff008` | `` | +| `SubSystemTib` | `ffdff00c` | `` | +| `FiberData` | `ffdff010` | `` | +| `ArbitraryUserPointer` | `ffdff014` | `` | +| `Self` | `ffdff018` | `` | +| `EnvironmentPointer` | `ffdff01c` | `` | +| `ClientId` | `ffdff020` | `` | +| `ActiveRpcHandle` | `ffdff028` | `` | +| `ThreadLocalStoragePointer` | `ffdff02c` | `` | +| `ProcessEnvironmentBlock` | `ffdff030` | `` | +| `LastErrorValue` | `ffdff034` | `` | +| `CountOfOwnedCriticalSections` | `ffdff038` | `` | +| `CsrClientThread` | `ffdff03c` | `` | +| `Win32ThreadInfo` | `ffdff040` | `` | +| `User32Reserved` | `ffdff044` | `` | +| `UserReserved` | `ffdff0ac` | `` | +| `WOW32Reserved` | `ffdff0c0` | `` | +| `CurrentLocale` | `ffdff0c4` | `` | +| `FpSoftwareStatusRegister` | `ffdff0c8` | `` | +| `SystemReserved1` | `ffdff0cc` | `` | +| `ExceptionCode` | `ffdff1a4` | `` | +| `ActivationContextStackPointer` | `ffdff1a8` | `` | +| `SpareBytes` | `ffdff1ac` | `` | +| `TxFsContext` | `ffdff1d0` | `` | +| `GdiTebBatch` | `ffdff1d4` | `` | +| `RealClientId` | `ffdff6b4` | `` | +| `GdiCachedProcessHandle` | `ffdff6bc` | `` | +| `GdiClientPID` | `ffdff6c0` | `` | +| `GdiCLientTID` | `ffdff6c4` | `` | +| `GdiThreadLocalInfo` | `ffdff6c8` | `` | +| `Win32ClientInfo` | `ffdff6cc` | `` | +| `glDispatchTable` | `ffdff7c4` | `` | +| `glReserved1` | `ffdffb68` | `` | +| `glReserved2` | `ffdffbdc` | `` | +| `glSectionInfo` | `ffdffbe0` | `` | +| `glSection` | `ffdffbe4` | `` | +| `glTable` | `ffdffbe8` | `` | +| `glCurrentRC` | `ffdffbec` | `` | +| `glContext` | `ffdffbf0` | `` | +| `LastStatusValue` | `ffdffbf4` | `` | +| `StaticUnicodeBuffer` | `ffdffc00` | `` | +| `DeallocationStack` | `ffdffe0c` | `` | +| `TlsSlots` | `ffdffe10` | `` | +| `TlsLinks.Flink` | `ffdfff10` | `` | +| `TlsLinks.Blink` | `ffdfff14` | `` | +| `Vdm` | `ffdfff18` | `` | +| `ReservedForNtRpc` | `ffdfff1c` | `` | +| `DbgSsReserved` | `ffdfff20` | `` | +| `HardErrorMode` | `ffdfff28` | `` | +| `Instrumentation` | `ffdfff2c` | `` | +| `ActivityId` | `ffdfff50` | `` | +| `SubProcessTag` | `ffdfff60` | `` | +| `EtwLocalData` | `ffdfff64` | `` | +| `EtwTraceData` | `ffdfff68` | `` | +| `WinSockData` | `ffdfff6c` | `` | +| `GdiBatchCount` | `ffdfff70` | `` | +| `IdealProcessorValue` | `ffdfff74` | `` | +| `GuaranteedStackBytes` | `ffdfff78` | `` | +| `ReservedForPerf` | `ffdfff7c` | `` | +| `ReservedForOle` | `ffdfff80` | `` | +| `WaitingOnLoaderLock` | `ffdfff84` | `` | +| `SavedPriorityState` | `ffdfff88` | `` | +| `SoftPatchPtr1` | `ffdfff8c` | `` | +| `ThreadPoolData` | `ffdfff90` | `` | +| `TlsExpansionSlots` | `ffdfff94` | `` | +| `MuiGeneration` | `ffdfff98` | `` | +| `IsImpersonating` | `ffdfff9c` | `` | +| `NlsCache` | `ffdfffa0` | `` | +| `pShimData` | `ffdfffa4` | `` | +| `HeapVirtualAffinity` | `ffdfffa8` | `` | +| `CurrentTransactionHandle` | `ffdfffac` | `` | +| `ActiveFrame` | `ffdfffb0` | `` | +| `FlsData` | `ffdfffb4` | `` | +| `PreferredLanguages` | `ffdfffb8` | `` | +| `UserPrefLanguages` | `ffdfffbc` | `` | +| `MergedPrefLanguages` | `ffdfffc0` | `` | +| `MuiImpersonation` | `ffdfffc4` | `` | +| `CrossTebFlags` | `ffdfffc8` | `` | +| `SameTebFlags` | `ffdfffca` | `` | +| `TxnScopeEnterCallback` | `ffdfffcc` | `` | +| `TxnScopeExitCallback` | `ffdfffd0` | `` | +| `TxnScopeContext` | `ffdfffd4` | `` | +| `LockCount` | `ffdfffd8` | `` | +| `ResourceRetValue` | `ffdfffe0` | `` | + +## Interesting Strings and Referencing Functions + +| Address | String | Referencing Functions | +| ---: | --- | --- | +| `10007538` | `INmxSvcCallback` | `` | +| `10007548` | `INmxNotify` | `` | +| `10007554` | `INmxService` | `` | +| `10007560` | `INmxStatus` | `` | +| `1000756c` | `INmxSvcStatistics` | `` | +| `10007580` | `INmxService2` | `` | +| `100097f6` | `NdrDllGetClassObject` | `` | +| `1000980e` | `NdrDllCanUnloadNow` | `` | +| `10009824` | `NdrCStdStubBuffer_Release` | `` | +| `10009840` | `NdrDllRegisterProxy` | `` | +| `10009856` | `NdrDllUnregisterProxy` | `` | +| `100099d2` | `NdrOleFree` | `` | +| `100099e0` | `NdrOleAllocate` | `` | +| `100099f0` | `RPCRT4.dll` | `` | +| `10009e80` | `NmxSvcPS.dll` | `` | +| `1000c1d0` | `NmxSvc_v0032` | `` | +| `1000c214` | `NmxSvcps Module` | `` | +| `1000c40c` | `NmxSvcps.dll` | `` | + +## Interesting API Callers + +| Caller | Entry | Call Targets | +| --- | ---: | --- | +| `DllGetClassObject` | `10001000` | `NdrDllGetClassObject` | +| `DllCanUnloadNow` | `10001040` | `NdrDllCanUnloadNow` | +| `FUN_10001050` | `10001050` | `NdrCStdStubBuffer_Release` | +| `DllRegisterServer` | `100010a0` | `NdrDllRegisterProxy` | +| `DllUnregisterServer` | `100010e0` | `NdrDllUnregisterProxy` | +| `setSBCS` | `10002cb9` | `_memset` | +| `setSBUpLow` | `10002d1d` | `_memset` | +| `__setmbcp_nolock` | `10003054` | `_memset` | +| `__call_reportfault` | `10003889` | `_memset` | +| `__crtGetStringTypeA_stat` | `10004977` | `_memset` | + diff --git a/analysis/ghidra/exports/NmxSvcps.dll.string-refs.tsv b/analysis/ghidra/exports/NmxSvcps.dll.string-refs.tsv new file mode 100644 index 0000000..fcf1f4a --- /dev/null +++ b/analysis/ghidra/exports/NmxSvcps.dll.string-refs.tsv @@ -0,0 +1,8 @@ +string_address string_value ref_from ref_function +10007538 INmxSvcCallback 10007d14 +10007548 INmxNotify 10007d10 +10007554 INmxService 10007d0c +10007560 INmxStatus 10007d08 +1000756c INmxSvcStatistics 10007d04 +10007580 INmxService2 10007d00 +10009e80 NmxSvcPS.dll 10009e3c diff --git a/analysis/ghidra/exports/WWProxyStub.dll.call-refs.tsv b/analysis/ghidra/exports/WWProxyStub.dll.call-refs.tsv new file mode 100644 index 0000000..d73594f --- /dev/null +++ b/analysis/ghidra/exports/WWProxyStub.dll.call-refs.tsv @@ -0,0 +1 @@ +caller_entry caller_name call_address target diff --git a/analysis/ghidra/exports/WWProxyStub.dll.functions.tsv b/analysis/ghidra/exports/WWProxyStub.dll.functions.tsv new file mode 100644 index 0000000..e21194e --- /dev/null +++ b/analysis/ghidra/exports/WWProxyStub.dll.functions.tsv @@ -0,0 +1,6 @@ +entry name signature body_size call_count interesting_calls +10001000 entry undefined4 entry(void) 8 0 +10001010 DllGetClassObject HRESULT DllGetClassObject(IID * rclsid, IID * riid, LPVOID * ppv) 5 0 +10001020 DllCanUnloadNow HRESULT DllCanUnloadNow(void) 3 0 +10001030 DllRegisterServer undefined4 DllRegisterServer(void) 3 0 +10001040 DllUnregisterServer undefined4 DllUnregisterServer(void) 3 0 diff --git a/analysis/ghidra/exports/WWProxyStub.dll.ghidra.md b/analysis/ghidra/exports/WWProxyStub.dll.ghidra.md new file mode 100644 index 0000000..a0b5ec4 --- /dev/null +++ b/analysis/ghidra/exports/WWProxyStub.dll.ghidra.md @@ -0,0 +1,134 @@ +# WWProxyStub.dll + +## Program + +- Language: `x86:LE:32:default` +- Compiler spec: `windows` +- Image base: `10000000` +- Executable format: `Portable Executable (PE)` + +## Memory Blocks + +| Name | Start | End | Size | R | W | X | +| --- | ---: | ---: | ---: | :---: | :---: | :---: | +| `Headers` | `10000000` | `100003ff` | 1024 | Y | | | +| `.text` | `10001000` | `100011ff` | 512 | Y | | Y | +| `.rdata` | `10002000` | `100021ff` | 512 | Y | | | +| `.rsrc` | `10003000` | `100035ff` | 1536 | Y | | | +| `tdb` | `ffdff000` | `ffdfffff` | 4096 | Y | Y | | + +## External Imports + + +## Exports and Globals + +| Name | Address | Function | +| --- | ---: | --- | +| `entry` | `10001000` | `entry` | +| `Ordinal_2` | `10001010` | `DllGetClassObject` | +| `DllGetClassObject` | `10001010` | `DllGetClassObject` | +| `Ordinal_1` | `10001020` | `DllCanUnloadNow` | +| `DllCanUnloadNow` | `10001020` | `DllCanUnloadNow` | +| `Ordinal_3` | `10001030` | `DllRegisterServer` | +| `DllRegisterServer` | `10001030` | `DllRegisterServer` | +| `Ordinal_4` | `10001040` | `DllUnregisterServer` | +| `DllUnregisterServer` | `10001040` | `DllUnregisterServer` | +| `Rsrc_Version_1_409` | `100030a0` | `` | +| `Rsrc_Manifest_2_409` | `10003498` | `` | +| `ExceptionList` | `ffdff000` | `` | +| `StackBase` | `ffdff004` | `` | +| `StackLimit` | `ffdff008` | `` | +| `SubSystemTib` | `ffdff00c` | `` | +| `FiberData` | `ffdff010` | `` | +| `ArbitraryUserPointer` | `ffdff014` | `` | +| `Self` | `ffdff018` | `` | +| `EnvironmentPointer` | `ffdff01c` | `` | +| `ClientId` | `ffdff020` | `` | +| `ActiveRpcHandle` | `ffdff028` | `` | +| `ThreadLocalStoragePointer` | `ffdff02c` | `` | +| `ProcessEnvironmentBlock` | `ffdff030` | `` | +| `LastErrorValue` | `ffdff034` | `` | +| `CountOfOwnedCriticalSections` | `ffdff038` | `` | +| `CsrClientThread` | `ffdff03c` | `` | +| `Win32ThreadInfo` | `ffdff040` | `` | +| `User32Reserved` | `ffdff044` | `` | +| `UserReserved` | `ffdff0ac` | `` | +| `WOW32Reserved` | `ffdff0c0` | `` | +| `CurrentLocale` | `ffdff0c4` | `` | +| `FpSoftwareStatusRegister` | `ffdff0c8` | `` | +| `SystemReserved1` | `ffdff0cc` | `` | +| `ExceptionCode` | `ffdff1a4` | `` | +| `ActivationContextStackPointer` | `ffdff1a8` | `` | +| `SpareBytes` | `ffdff1ac` | `` | +| `TxFsContext` | `ffdff1d0` | `` | +| `GdiTebBatch` | `ffdff1d4` | `` | +| `RealClientId` | `ffdff6b4` | `` | +| `GdiCachedProcessHandle` | `ffdff6bc` | `` | +| `GdiClientPID` | `ffdff6c0` | `` | +| `GdiCLientTID` | `ffdff6c4` | `` | +| `GdiThreadLocalInfo` | `ffdff6c8` | `` | +| `Win32ClientInfo` | `ffdff6cc` | `` | +| `glDispatchTable` | `ffdff7c4` | `` | +| `glReserved1` | `ffdffb68` | `` | +| `glReserved2` | `ffdffbdc` | `` | +| `glSectionInfo` | `ffdffbe0` | `` | +| `glSection` | `ffdffbe4` | `` | +| `glTable` | `ffdffbe8` | `` | +| `glCurrentRC` | `ffdffbec` | `` | +| `glContext` | `ffdffbf0` | `` | +| `LastStatusValue` | `ffdffbf4` | `` | +| `StaticUnicodeBuffer` | `ffdffc00` | `` | +| `DeallocationStack` | `ffdffe0c` | `` | +| `TlsSlots` | `ffdffe10` | `` | +| `TlsLinks.Flink` | `ffdfff10` | `` | +| `TlsLinks.Blink` | `ffdfff14` | `` | +| `Vdm` | `ffdfff18` | `` | +| `ReservedForNtRpc` | `ffdfff1c` | `` | +| `DbgSsReserved` | `ffdfff20` | `` | +| `HardErrorMode` | `ffdfff28` | `` | +| `Instrumentation` | `ffdfff2c` | `` | +| `ActivityId` | `ffdfff50` | `` | +| `SubProcessTag` | `ffdfff60` | `` | +| `EtwLocalData` | `ffdfff64` | `` | +| `EtwTraceData` | `ffdfff68` | `` | +| `WinSockData` | `ffdfff6c` | `` | +| `GdiBatchCount` | `ffdfff70` | `` | +| `IdealProcessorValue` | `ffdfff74` | `` | +| `GuaranteedStackBytes` | `ffdfff78` | `` | +| `ReservedForPerf` | `ffdfff7c` | `` | +| `ReservedForOle` | `ffdfff80` | `` | +| `WaitingOnLoaderLock` | `ffdfff84` | `` | +| `SavedPriorityState` | `ffdfff88` | `` | +| `SoftPatchPtr1` | `ffdfff8c` | `` | +| `ThreadPoolData` | `ffdfff90` | `` | +| `TlsExpansionSlots` | `ffdfff94` | `` | +| `MuiGeneration` | `ffdfff98` | `` | +| `IsImpersonating` | `ffdfff9c` | `` | +| `NlsCache` | `ffdfffa0` | `` | +| `pShimData` | `ffdfffa4` | `` | +| `HeapVirtualAffinity` | `ffdfffa8` | `` | +| `CurrentTransactionHandle` | `ffdfffac` | `` | +| `ActiveFrame` | `ffdfffb0` | `` | +| `FlsData` | `ffdfffb4` | `` | +| `PreferredLanguages` | `ffdfffb8` | `` | +| `UserPrefLanguages` | `ffdfffbc` | `` | +| `MergedPrefLanguages` | `ffdfffc0` | `` | +| `MuiImpersonation` | `ffdfffc4` | `` | +| `CrossTebFlags` | `ffdfffc8` | `` | +| `SameTebFlags` | `ffdfffca` | `` | +| `TxnScopeEnterCallback` | `ffdfffcc` | `` | +| `TxnScopeExitCallback` | `ffdfffd0` | `` | +| `TxnScopeContext` | `ffdfffd4` | `` | +| `LockCount` | `ffdfffd8` | `` | +| `ResourceRetValue` | `ffdfffe0` | `` | + +## Interesting Strings and Referencing Functions + +| Address | String | Referencing Functions | +| ---: | --- | --- | + +## Interesting API Callers + +| Caller | Entry | Call Targets | +| --- | ---: | --- | + diff --git a/analysis/ghidra/exports/WWProxyStub.dll.string-refs.tsv b/analysis/ghidra/exports/WWProxyStub.dll.string-refs.tsv new file mode 100644 index 0000000..0bb7267 --- /dev/null +++ b/analysis/ghidra/exports/WWProxyStub.dll.string-refs.tsv @@ -0,0 +1 @@ +string_address string_value ref_from ref_function diff --git a/analysis/ghidra/exports/aaMxDataConsumer.dll.call-refs.tsv b/analysis/ghidra/exports/aaMxDataConsumer.dll.call-refs.tsv new file mode 100644 index 0000000..d3a7f76 --- /dev/null +++ b/analysis/ghidra/exports/aaMxDataConsumer.dll.call-refs.tsv @@ -0,0 +1,265 @@ +caller_entry caller_name call_address target +10008760 FUN_10008760 10008775 CoCreateInstance +10008c40 FUN_10008c40 10008c43 SysFreeString +10008cb0 FUN_10008cb0 10008ce0 SysFreeString +10009480 FUN_10009480 10009497 SysAllocString +100095b0 FUN_100095b0 10009625 SysFreeString +10009860 FUN_10009860 10009971 SysFreeString +10009990 FUN_10009990 10009a9c SysFreeString +10009990 FUN_10009990 10009ac1 SysFreeString +10009990 FUN_10009990 10009b12 SysFreeString +10009990 FUN_10009990 10009b3b SysFreeString +1000a2a0 FUN_1000a2a0 1000a2f9 CoCreateInstance +1000a2a0 FUN_1000a2a0 1000a304 SysAllocString +1000a2a0 FUN_1000a2a0 1000a395 SysFreeString +1000a2a0 FUN_1000a2a0 1000a3de SysFreeString +1000a2a0 FUN_1000a2a0 1000a42c SysFreeString +1000a2a0 FUN_1000a2a0 1000a537 SysFreeString +10016e30 FUN_10016e30 10016e42 memcpy +10016e50 FUN_10016e50 10016e62 memmove +10016f30 FUN_10016f30 10016f43 memcpy_s +10017000 FUN_10017000 10017017 SafeArrayGetLBound +10017030 FUN_10017030 10017044 SafeArrayGetLBound +10017030 FUN_10017030 1001705c SafeArrayGetUBound +10017090 FUN_10017090 100170a7 SafeArrayGetUBound +100170f0 FUN_100170f0 1001710b SafeArrayAccessData +100170f0 FUN_100170f0 10017120 SafeArrayGetLBound +100170f0 FUN_100170f0 10017136 SafeArrayGetUBound +100171c0 FUN_100171c0 100171db SafeArrayAccessData +100171c0 FUN_100171c0 100171ec SafeArrayGetLBound +100171c0 FUN_100171c0 100171fe SafeArrayGetUBound +10017260 FUN_10017260 100172a7 SafeArrayCreateEx +10017260 FUN_10017260 100172d5 SafeArrayAccessData +10017260 FUN_10017260 100172e2 SafeArrayDestroy +10017260 FUN_10017260 1001731e SafeArrayCopy +10017260 FUN_10017260 10017332 SafeArrayDestroy +10017260 FUN_10017260 1001733f SafeArrayUnaccessData +10017260 FUN_10017260 10017346 SafeArrayDestroy +10017360 FUN_10017360 100173a7 SafeArrayCreateEx +10017360 FUN_10017360 100173d2 SafeArrayAccessData +10017360 FUN_10017360 100173df SafeArrayDestroy +10017360 FUN_10017360 10017431 SafeArrayCopy +10017360 FUN_10017360 10017445 SafeArrayDestroy +10017360 FUN_10017360 10017452 SafeArrayUnaccessData +10017360 FUN_10017360 10017459 SafeArrayDestroy +10017470 FUN_10017470 100174b7 SafeArrayCreateEx +10017470 FUN_10017470 100174e2 SafeArrayAccessData +10017470 FUN_10017470 100174ef SafeArrayDestroy +10017470 FUN_10017470 10017548 SafeArrayCopy +10017470 FUN_10017470 1001755c SafeArrayDestroy +10017470 FUN_10017470 10017569 SafeArrayUnaccessData +10017470 FUN_10017470 10017570 SafeArrayDestroy +10017590 FUN_10017590 100175c8 SysFreeString +100175e0 FUN_100175e0 10017627 SafeArrayCreateEx +100175e0 FUN_100175e0 10017652 SafeArrayAccessData +100175e0 FUN_100175e0 1001765f SafeArrayDestroy +100175e0 FUN_100175e0 100176b8 SafeArrayCopy +100175e0 FUN_100175e0 100176cc SafeArrayDestroy +100175e0 FUN_100175e0 100176d9 SafeArrayUnaccessData +100175e0 FUN_100175e0 100176e0 SafeArrayDestroy +100176f0 FUN_100176f0 10017737 SafeArrayCreateEx +100176f0 FUN_100176f0 10017762 SafeArrayAccessData +100176f0 FUN_100176f0 1001776f SafeArrayDestroy +100176f0 FUN_100176f0 100177ba SafeArrayCopy +100176f0 FUN_100176f0 100177ce SafeArrayDestroy +100176f0 FUN_100176f0 100177db SafeArrayUnaccessData +100176f0 FUN_100176f0 100177e2 SafeArrayDestroy +10017800 FUN_10017800 10017847 SafeArrayCreateEx +10017800 FUN_10017800 10017872 SafeArrayAccessData +10017800 FUN_10017800 1001787f SafeArrayDestroy +10017800 FUN_10017800 100178d8 SafeArrayCopy +10017800 FUN_10017800 100178ec SafeArrayDestroy +10017800 FUN_10017800 100178f9 SafeArrayUnaccessData +10017800 FUN_10017800 10017900 SafeArrayDestroy +10017910 FUN_10017910 10017957 SafeArrayCreateEx +10017910 FUN_10017910 10017982 SafeArrayAccessData +10017910 FUN_10017910 1001798f SafeArrayDestroy +10017910 FUN_10017910 100179e8 SafeArrayCopy +10017910 FUN_10017910 100179fc SafeArrayDestroy +10017910 FUN_10017910 10017a09 SafeArrayUnaccessData +10017910 FUN_10017910 10017a10 SafeArrayDestroy +10017a20 FUN_10017a20 10017a52 SysFreeString +10017d60 FUN_10017d60 10017d79 SysAllocString +10017da0 FUN_10017da0 10017dcb SysAllocStringByteLen +10017e40 FUN_10017e40 10017e4a SysFreeString +10017f80 FUN_10017f80 1001802e memset +10018140 FUN_10018140 10018175 memset +10018300 FUN_10018300 10018312 memcpy +10018320 FUN_10018320 10018332 memmove +100184b0 FUN_100184b0 100184cc memset +100184b0 FUN_100184b0 100184f2 memset +10018530 FUN_10018530 1001854f memset +10018530 FUN_10018530 10018575 memset +100185b0 FUN_100185b0 100185cf memset +100185b0 FUN_100185b0 100185f5 memset +10018630 FUN_10018630 10018651 memset +10018820 FUN_10018820 10018850 SysFreeString +10019470 FUN_10019470 10019476 SafeArrayUnlock +10019490 FUN_10019490 100194b7 SafeArrayGetLBound +10019490 FUN_10019490 100194e0 SafeArrayGetUBound +10019520 FUN_10019520 1001952c SafeArrayUnlock +10019520 FUN_10019520 10019539 SafeArrayDestroy +10019550 FUN_10019550 1001957f SafeArrayUnlock +10019550 FUN_10019550 10019592 SafeArrayRedim +10019550 FUN_10019550 1001959d SafeArrayLock +100195c0 FUN_100195c0 100195e7 SafeArrayCreate +100195c0 FUN_100195c0 100195fe SafeArrayLock +10019620 FUN_10019620 10019636 SysAllocStringByteLen +10019640 FUN_10019640 100196df SysAllocStringLen +10019640 FUN_10019640 10019745 SysFreeString +10019790 FUN_10019790 100197e8 SysAllocString +10019840 FUN_10019840 100198aa SysAllocStringByteLen +10019960 FUN_10019960 1001996a SysFreeString +10019ac0 FUN_10019ac0 10019af5 memset +1001a000 FUN_1001a000 1001a083 memset +1001a000 FUN_1001a000 1001a0d9 SysAllocString +1001a000 FUN_1001a000 1001a103 SysFreeString +1001a960 FUN_1001a960 1001a983 memcpy +1001ac50 FUN_1001ac50 1001ac85 memcpy +1001adb0 FUN_1001adb0 1001adc9 memcpy +1001b230 FUN_1001b230 1001b23a SafeArrayUnlock +1001b230 FUN_1001b230 1001b247 SafeArrayDestroy +1001b260 FUN_1001b260 1001b2a0 SafeArrayUnlock +1001b260 FUN_1001b260 1001b2b3 SafeArrayRedim +1001b260 FUN_1001b260 1001b2be SafeArrayLock +1001b2e0 FUN_1001b2e0 1001b30e SafeArrayCreate +1001b2e0 FUN_1001b2e0 1001b327 SafeArrayLock +1001b340 FUN_1001b340 1001b35b SysAllocStringByteLen +1001b380 FUN_1001b380 1001b391 SysFreeString +1001b380 FUN_1001b380 1001b3a8 SysAllocStringByteLen +1001b450 FUN_1001b450 1001b45d SysFreeString +1001b620 FUN_1001b620 1001b67a SysFreeString +1001b620 FUN_1001b620 1001b691 SysAllocStringByteLen +1001b620 FUN_1001b620 1001b6d6 SysFreeString +1001b620 FUN_1001b620 1001b6ed SysAllocStringByteLen +1001b620 FUN_1001b620 1001b731 SysFreeString +1001b850 FUN_1001b850 1001b909 SysAllocStringByteLen +1001b850 FUN_1001b850 1001b98e SysFreeString +1001baa0 FUN_1001baa0 1001baf5 memmove +1001bbc0 FUN_1001bbc0 1001bce8 memcpy +1001be80 FUN_1001be80 1001bee2 memcpy +1001bfe0 FUN_1001bfe0 1001c12d memcpy +1001c8f0 FUN_1001c8f0 1001c920 SafeArrayCreate +1001c8f0 FUN_1001c8f0 1001c934 SafeArrayLock +1001c8f0 FUN_1001c8f0 1001c952 SafeArrayGetLBound +1001c8f0 FUN_1001c8f0 1001c967 SafeArrayGetUBound +1001c8f0 FUN_1001c8f0 1001c98e SafeArrayGetLBound +1001c9f0 FUN_1001c9f0 1001ca0f SysFreeString +1001cfd0 FUN_1001cfd0 1001d098 memcpy +1001d0d0 FUN_1001d0d0 1001d1a2 memcpy +1001d1e0 FUN_1001d1e0 1001d29e memcpy +1001d3c0 FUN_1001d3c0 1001d499 SafeArrayUnlock +1001d530 FUN_1001d530 1001d553 SysFreeString +1001d5d0 FUN_1001d5d0 1001d6b9 memcpy +1001d7d0 FUN_1001d7d0 1001d7f3 SysFreeString +1001d820 FUN_1001d820 1001d84e SysFreeString +1001db30 FUN_1001db30 1001db81 SysFreeString +1001dd20 FUN_1001dd20 1001dd62 memmove +1001e3f0 FUN_1001e3f0 1001e59f SysFreeString +1001e3f0 FUN_1001e3f0 1001e60b SysFreeString +1001e3f0 FUN_1001e3f0 1001eaa9 SysFreeString +1001e3f0 FUN_1001e3f0 1001eaf1 SysFreeString +1001ec60 FUN_1001ec60 1001ed61 SysFreeString +1001f3f0 FUN_1001f3f0 1001f53e memset +1001f3f0 FUN_1001f3f0 1001f585 SysAllocString +1001f3f0 FUN_1001f3f0 1001f5aa SysAllocStringByteLen +1001f3f0 FUN_1001f3f0 1001f63a SysFreeString +1001f3f0 FUN_1001f3f0 1001f794 SysFreeString +1001f3f0 FUN_1001f3f0 1001f815 SysFreeString +1001f3f0 FUN_1001f3f0 1001f8b6 SysFreeString +1001f3f0 FUN_1001f3f0 1001f933 SysFreeString +1001f3f0 FUN_1001f3f0 1001f97e SysAllocString +1001f3f0 FUN_1001f3f0 1001f9ea SysFreeString +1001f3f0 FUN_1001f3f0 1001fa0a SysFreeString +1001f3f0 FUN_1001f3f0 1001fa96 SysFreeString +1001f3f0 FUN_1001f3f0 1001faa3 SysFreeString +1001f3f0 FUN_1001f3f0 1001faae SysFreeString +10024090 FUN_10024090 10024096 SysFreeString +10026550 FUN_10026550 10026561 SysFreeString +10026550 FUN_10026550 1002656c SysAllocString +10028800 FUN_10028800 10028815 SysFreeString +10028800 FUN_10028800 10028825 SysAllocString +10028800 FUN_10028800 10028838 SysFreeString +10028800 FUN_10028800 1002883f SysAllocString +10033220 FUN_10033220 10033255 memset +10033430 FUN_10033430 10033465 memset +100344f0 FUN_100344f0 100346b9 memcpy +10035a90 FUN_10035a90 10035bd1 SysFreeString +10035a90 FUN_10035a90 10035bde SysFreeString +100361c0 FUN_100361c0 10036268 SysFreeString +100368e0 FUN_100368e0 10036b13 memset +100368e0 FUN_100368e0 10036bde memcpy +10037760 FUN_10037760 10037c2d memset +10037760 FUN_10037760 100381b1 memcpy +10037760 FUN_10037760 10038d72 memcpy +10037760 FUN_10037760 100391ff memcpy +10039430 FUN_10039430 1003971b memset +10039430 FUN_10039430 100397d2 memcpy +1003ceb0 FUN_1003ceb0 1003cec5 CoCreateInstance +1003eaa0 FUN_1003eaa0 1003eaa3 SysFreeString +10042a00 FUN_10042a00 10042a5c CoCreateInstance +10042a00 FUN_10042a00 10042c63 SysFreeString +100446d0 FUN_100446d0 10044731 SysFreeString +100446d0 FUN_100446d0 10044782 SysAllocString +10044bf0 FUN_10044bf0 100450f1 memcpy +10045300 FUN_10045300 1004579e memcpy +10045a20 FUN_10045a20 10045be9 memcpy +10045a20 FUN_10045a20 10045c3a memcpy +10045db0 FUN_10045db0 10046342 memcpy +10046590 FUN_10046590 100468d8 memcpy +100469f0 FUN_100469f0 10046e4c memcpy +10047050 FUN_10047050 1004711a SysFreeString +100473a0 FUN_100473a0 100473f0 SysFreeString +10047430 FUN_10047430 10047481 SysFreeString +10047fd0 FUN_10047fd0 10048020 SysFreeString +10048060 FUN_10048060 100480b1 SysFreeString +100480f0 FUN_100480f0 10048140 SysFreeString +10048190 FUN_10048190 100481e1 SysFreeString +10048320 FUN_10048320 1004836d SysFreeString +100483b0 FUN_100483b0 100483fe SysFreeString +10048530 FUN_10048530 10048549 SysAllocStringByteLen +100485c0 FUN_100485c0 100485d7 SysAllocString +10048620 FUN_10048620 10048650 SysAllocString +10048690 FUN_10048690 10048808 CoCreateInstance +10048690 FUN_10048690 1004895f SysFreeString +10048af0 FUN_10048af0 10048d73 SysFreeString +10048d90 FUN_10048d90 10048ddd SysFreeString +10048e20 FUN_10048e20 10048e6e SysFreeString +10049070 FUN_10049070 10049253 SysFreeString +10049070 FUN_10049070 10049318 SysFreeString +10049070 FUN_10049070 10049325 SysFreeString +10049070 FUN_10049070 1004948b SysFreeString +10049070 FUN_10049070 10049537 SysFreeString +100498f0 FUN_100498f0 1004993d SysFreeString +10049980 FUN_10049980 100499ce SysFreeString +1004b520 FUN_1004b520 1004b58e SysAllocString +1004b860 FUN_1004b860 1004b8d1 SysAllocString +1004b860 FUN_1004b860 1004bbc5 memcpy +1004b860 FUN_1004b860 1004bd49 SysFreeString +1004c990 FUN_1004c990 1004ca3a SysFreeString +1004cba0 FUN_1004cba0 1004cc31 SysFreeString +1004d1b0 FUN_1004d1b0 1004d237 SysAllocString +1004d1b0 FUN_1004d1b0 1004d2bd SysFreeString +1004d1b0 FUN_1004d1b0 1004d4a5 SysFreeString +1004e160 FUN_1004e160 1004e171 AtlInternalQueryInterface +1004e2e0 FUN_1004e2e0 1004e2f4 AtlInternalQueryInterface +1004e400 FUN_1004e400 1004e45c AtlInternalQueryInterface +1004eb00 FUN_1004eb00 1004eb2f CoCreateInstance +1004f820 FUN_1004f820 1004f831 AtlInternalQueryInterface +1004f840 FUN_1004f840 1004f854 AtlInternalQueryInterface +1004fd30 FUN_1004fd30 1004fd47 memset +1004fe00 FUN_1004fe00 1004fe53 memcpy +10050108 FUN_10050108 10050115 memset +100501b4 memmove_s 100501c5 memmove_s +100501d5 RemoveAt 10050206 memmove_s +1005026a FUN_1005026a 10050277 memset +10050690 _com_invoke_helper 10050754 memset +10050690 _com_invoke_helper 10050938 VariantInit +10050690 _com_invoke_helper 1005099e VariantClear +10050690 _com_invoke_helper 10050a06 VariantChangeType +10050690 _com_invoke_helper 10050a16 VariantClear +10050690 _com_invoke_helper 10050b38 VariantClear +10050d80 _com_handle_excepinfo 10050e3f SysFreeString +10050d80 _com_handle_excepinfo 10050e49 SysFreeString +10050d80 _com_handle_excepinfo 10050e53 SysFreeString +1005d930 FUN_1005d930 1005d96a memset diff --git a/analysis/ghidra/exports/aaMxDataConsumer.dll.dataclient-decompile.md b/analysis/ghidra/exports/aaMxDataConsumer.dll.dataclient-decompile.md new file mode 100644 index 0000000..4ff80fb --- /dev/null +++ b/analysis/ghidra/exports/aaMxDataConsumer.dll.dataclient-decompile.md @@ -0,0 +1,5701 @@ +# aaMxDataConsumer.dll selected decompile + +## GetIDataAdapter at 100058e4 + +Signature: `pointer __fastcall GetIDataAdapter(int AccessName, undefined4 param_2)` + +```c + +/* WARNING: Instruction at (ram,0x10005ac3) overlaps instruction at (ram,0x10005ac2) + */ +/* WARNING: Unable to track spacebase fully for stack */ + +undefined * __fastcall GetIDataAdapter(int AccessName,undefined4 param_2) + +{ + code *pcVar1; + undefined2 uVar2; + char cVar3; + byte bVar4; + char cVar5; + byte bVar6; + byte bVar7; + undefined4 in_EAX; + uint uVar8; + undefined3 uVar15; + char *pcVar9; + int *piVar10; + uint *puVar11; + byte *pbVar12; + int iVar13; + undefined *puVar14; + char cVar16; + byte *pbVar17; + byte bVar18; + char cVar22; + undefined3 uVar23; + uint *puVar19; + uint *puVar20; + uint *puVar21; + byte bVar24; + byte *unaff_EBX; + int *piVar25; + byte *unaff_EBP; + byte *unaff_ESI; + byte *pbVar26; + byte *pbVar27; + uint *unaff_EDI; + uint *puVar28; + ushort in_ES; + undefined2 in_SS; + undefined2 in_DS; + char in_CF; + bool bVar29; + byte in_AF; + bool bVar30; + byte in_TF; + byte in_IF; + bool bVar31; + byte in_NT; + byte in_AC; + byte in_VIF; + byte in_VIP; + byte in_ID; + undefined2 uStack_47; + undefined1 uStack_45; + undefined1 uStack_44; + undefined4 uStack_28; + uint *puStack_24; + uint *puStack_18; + uint *puStack_10; + byte *pbStack_c; + uint *puStack_8; + + /* .NET CLR Managed Code */ + uVar8 = CONCAT31((int3)((uint)in_EAX >> 8),(char)in_EAX + in_CF + '\'') | 0x197e; + uVar23 = (undefined3)((uint)param_2 >> 8); + bVar18 = (byte)param_2 | *unaff_EBX; + cVar5 = (char)uVar8; + uVar15 = (undefined3)(uVar8 >> 8); + cVar3 = cVar5 + '\x02'; + pcVar9 = (char *)CONCAT31(uVar15,cVar3); + *pcVar9 = *pcVar9 + cVar3; + bVar18 = bVar18 | *(byte *)CONCAT31(uVar23,bVar18); + pcVar9 = (char *)CONCAT31(uVar23,bVar18); + cVar16 = (char)AccessName; + *pcVar9 = *pcVar9 + cVar16; + bVar4 = (cVar5 + 0x2aU | *unaff_ESI) + 0xad; + puVar19 = (uint *)CONCAT31(uVar15,bVar4); + bVar24 = (byte)unaff_EBX; + *(byte *)puVar19 = (char)*puVar19 - bVar24; + *(byte *)puVar19 = (char)*puVar19 + bVar4; + bVar18 = bVar18 | bVar4; + iVar13 = CONCAT31(uVar23,bVar18); + puStack_8 = (uint *)CONCAT22(puStack_8._2_2_,in_DS); + *(byte *)puVar19 = (char)*puVar19 + bVar4; + uVar8 = *puVar19; + *puVar19 = (uint)(unaff_EBP + *puVar19); + pcVar9 = (char *)((int)puVar19 + CARRY4(uVar8,(uint)unaff_EBP) + 0x6f0a0000); + pbStack_c = (byte *)CONCAT22(pbStack_c._2_2_,in_SS); + cVar3 = (char)pcVar9; + *pcVar9 = *pcVar9 + cVar3; + bVar4 = (byte)((uint)AccessName >> 8) | *(byte *)(AccessName + iVar13); + pbVar17 = (byte *)CONCAT22((short)((uint)AccessName >> 0x10),CONCAT11(bVar4,cVar16)); + puStack_10 = (uint *)(uint)in_ES; + pbVar27 = unaff_ESI; + if (bVar4 == 0) { + pbVar27 = unaff_ESI + 4; + out(*(int *)unaff_ESI,(short)iVar13); + } + *pcVar9 = *pcVar9 + cVar3; + *(byte **)(unaff_EBX + -0x17) = pbVar27 + *(int *)(unaff_EBX + -0x17); + piVar10 = (int *)(CONCAT31((int3)((uint)pcVar9 >> 8),cVar3 + *pcVar9) | 0x17438); + bVar6 = (byte)piVar10; + *pbVar27 = *pbVar27 + bVar6; + *(byte *)piVar10 = (char)*piVar10 - bVar24; + *(byte *)piVar10 = (char)*piVar10 + bVar6; + *pbVar17 = *pbVar17 + bVar6; + cRam6f0a0000 = cRam6f0a0000 - (bVar18 | bVar6); + puStack_18 = (uint *)CONCAT22(puStack_18._2_2_,in_SS); + *(byte *)piVar10 = (char)*piVar10 + bVar6; + bVar18 = (byte)((uint)unaff_EBX >> 8) | *pbVar17; + piVar25 = (int *)CONCAT22((short)((uint)unaff_EBX >> 0x10),CONCAT11(bVar18,bVar24)); + *piVar10 = (int)(*piVar10 + (int)piVar10); + *pbVar27 = *pbVar27 + bVar6; + if (*pbVar27 != 0) { + *(byte *)piVar10 = (char)*piVar10 + bVar6; + *(int *)((int)piVar25 + -0x2f) = (int)(pbVar27 + *(int *)((int)piVar25 + -0x2f)); + piVar10 = (int *)CONCAT31((int3)((uint)piVar10 >> 8),bVar6 + (char)*piVar10); + } +code_r0x1000594e: + *pbVar17 = *pbVar17 + (char)puStack_18; + uVar2 = puStack_10._0_2_; + cVar3 = (char)((uint)piVar10 | 0x14938) + '\x03'; + pcVar9 = (char *)CONCAT31((int3)(((uint)piVar10 | 0x14938) >> 8),cVar3); + *(byte *)puStack_18 = (char)*puStack_18 - bVar24; + *pcVar9 = *pcVar9 + cVar3; + pcVar9 = (char *)((uint)pbStack_c | *unaff_EDI | 0x7e); + puVar19 = (uint *)((int)puStack_18 + -1); + *pcVar9 = *pcVar9 + (char)pcVar9; + puVar11 = puStack_8; +code_r0x10005968: + puStack_8 = puVar11; + puVar21 = (uint *)(CONCAT31((int3)((uint)pcVar9 >> 8),(char)pcVar9 + '\x17') + -0x4a7e33); +code_r0x10005970: + puVar11 = puVar21; + *(byte *)((int)puStack_8 + (int)puVar19) = + *(byte *)((int)puStack_8 + (int)puVar19) + (char)puVar11; + *(char *)puVar19 = (char)*puVar19; + puVar21 = puRam28040000; + puStack_24 = puStack_8; + puStack_10 = puVar19; +code_r0x10005981: + cVar3 = (char)puVar21; + *pbVar27 = *pbVar27 + cVar3; + *pbVar27 = *pbVar27 + 1; + *pbVar27 = *pbVar27 + cVar3; + *(char *)puVar19 = (char)*puVar19 - (char)((uint)puVar19 >> 8); + cVar5 = cVar3 + (byte)*puVar21; + pcVar9 = (char *)CONCAT31((int3)((uint)puVar21 >> 8),cVar5); + uStack_28 = (uint *)CONCAT22(uStack_28._2_2_,uVar2); + if (cVar5 == '\0' || SCARRY1(cVar3,(byte)*puVar21) != cVar5 < '\0') { + pcVar9 = (char *)((int)puVar19 + (int)piVar25); + bVar29 = SCARRY1(*pcVar9,cVar5); + *pcVar9 = *pcVar9 + cVar5; + cVar3 = *pcVar9; + pbVar26 = pbVar27; + puVar28 = puStack_8; + goto code_r0x100059e1; + } +code_r0x10005994: + cVar3 = (char)pcVar9; + *pcVar9 = *pcVar9 + cVar3; + uVar15 = (undefined3)((uint)pcVar9 >> 8); + bVar6 = cVar3 + 0x1f; + pcVar9 = (char *)CONCAT31(uVar15,bVar6); + *(byte *)(puStack_8 + -0x20) = (byte)puStack_8[-0x20] + 1; + puStack_18 = (uint *)((int)puVar19 + -1); + *pcVar9 = *pcVar9 + bVar6; + bVar29 = 0x23 < bVar6; + puVar21 = (uint *)CONCAT31(uVar15,cVar3 + -5); + if ((char)(cVar3 + -5) != '\0' && '#' < (char)bVar6) { + cVar3 = (char)(char *)((int)puVar21 + *puVar21); + bVar6 = cVar3 + 0x13; + piVar10 = (int *)CONCAT31((int3)((int)puVar21 + *puVar21 >> 8),bVar6); + puStack_10 = (uint *)CONCAT22(puStack_10._2_2_,uVar2); + if (bVar6 != 0 && -0x14 < cVar3) { + *puStack_18 = *puStack_18 << 1 | (uint)((int)*puStack_18 < 0); + *pbVar27 = *pbVar27 + bVar6; + unaff_EDI = puStack_8; + pbStack_c = pbVar17; + puStack_8 = puVar11; + goto code_r0x1000594e; + } + *(byte *)piVar10 = (char)*piVar10 + bVar6; + bVar29 = 0xe5 < bVar6; + puStack_18 = (uint *)((int)puVar19 + -2); + puVar21 = puStack_10; + } + pcVar9 = (char *)((int)puVar21 + bVar29 + 0xa17f5c33); + *pcVar9 = *pcVar9 + (char)pcVar9; + pcVar9 = (char *)(CONCAT31((int3)((uint)pcVar9 >> 8),(char)pcVar9 + 'J') + -0xa17f13); + cVar3 = (char)pcVar9; + pcVar9[(int)unaff_EBP] = pcVar9[(int)unaff_EBP] + cVar3; + bVar31 = SCARRY1(*pbVar27,cVar3); + *pbVar27 = *pbVar27 + cVar3; + bVar30 = (char)*pbVar27 < '\0'; + bVar29 = *pbVar27 == 0; + puVar19 = puStack_18; + while (bVar29 || bVar31 != bVar30) { + cVar3 = (char)pcVar9; + *pcVar9 = *pcVar9 + cVar3; + puVar21 = (uint *)CONCAT31((int3)((uint)pcVar9 >> 8),cVar3 + '#'); + if ((char)(cVar3 + '#') != '\0' && '&' < (char)(cVar3 + 'J')) goto code_r0x10005970; + while( true ) { + bVar6 = (byte)puVar21; + *(byte *)puVar21 = (byte)*puVar21 + bVar6; + uVar15 = (undefined3)((uint)puVar21 >> 8); + cVar3 = bVar6 + 0x20; + pcVar9 = (char *)CONCAT31(uVar15,cVar3); + puStack_24 = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar6,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar3 < '\0') * 0x80 | (uint)(cVar3 == '\0') * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(cVar3) & 1U) == 0) * 4 | + (uint)(0xdf < bVar6) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000); + *pcVar9 = *pcVar9 + cVar3; + pcVar9[0x4a] = pcVar9[0x4a] + bVar24; + cVar5 = bVar6 + 7; + puVar21 = (uint *)CONCAT31(uVar15,cVar5); + if (cVar5 != '\0' && '\x18' < cVar3) { + *unaff_EBP = *unaff_EBP - (char)((uint)puVar19 >> 8); + goto code_r0x10005981; + } + *(byte *)puVar21 = (byte)*puVar21 + cVar5; + bVar29 = SCARRY1(cVar5,'\x1a'); + cVar3 = bVar6 + 0x21; + pbVar26 = pbVar27; + puVar28 = puStack_8; +code_r0x100059e1: + puVar21 = puStack_24; + pbVar27 = pbVar26; + puStack_8 = puVar28; + if (cVar3 != '\0' && bVar29 == cVar3 < '\0') { + puStack_24 = (uint *)CONCAT22(puStack_24._2_2_,uVar2); + goto code_r0x10005981; + } + bVar6 = (byte)puStack_24; + *(byte *)puStack_24 = (byte)*puStack_24 + bVar6; + bVar7 = bVar6 + 0x20; + pcVar9 = (char *)CONCAT31((int3)((uint)puStack_24 >> 8),bVar7); + *pcVar9 = *pcVar9 + bVar7; + pcVar9[0x4a] = pcVar9[0x4a] + bVar24; + iVar13 = iRam26110000; + iRam26110000 = iRam26110000 - (int)pbVar17; + if (iRam26110000 != 0 && (int)pbVar17 <= iVar13) goto code_r0x10005994; + *pcVar9 = *pcVar9 + bVar7; + puVar20 = (uint *)((int)puVar19 + -1); + pcVar9 = (char *)(((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar6,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)((char)bVar7 < '\0') * 0x80 | (uint)(bVar7 == 0) * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(bVar7) & 1U) == 0) * 4 | + (uint)(0xdf < bVar6) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000) + 0x97dd0533 + (uint)(0xe5 < bVar7)); + cVar3 = (char)pcVar9; + *pcVar9 = *pcVar9 + cVar3; + *(byte *)((int)puVar28 + -0x5f) = *(byte *)((int)puVar28 + -0x5f) + bVar18; + *pcVar9 = *pcVar9 + cVar3; + uVar15 = (undefined3)((uint)pcVar9 >> 8); + piVar10 = (int *)CONCAT31(uVar15,cVar3 + '('); + *piVar10 = *piVar10 + -0x5e80fa00; + *(char *)piVar10 = (char)*piVar10 + cVar3 + '('; + pcVar9 = (char *)CONCAT31(uVar15,cVar3 + 'H'); + puStack_8 = (uint *)((int)puVar28 + 1); + pbVar27 = pbVar26 + 1; + *(byte *)puVar28 = *pbVar26; + *pcVar9 = *pcVar9 + cVar3 + 'H'; + pcVar9[0x4a] = pcVar9[0x4a] + bVar24; + pcVar9 = pcVar9 + -0x7add05; + bVar6 = (byte)pcVar9; + bVar31 = SCARRY1(*pcVar9,bVar6); + *pcVar9 = *pcVar9 + bVar6; + bVar30 = *pcVar9 < '\0'; + bVar29 = *pcVar9 == '\0'; + puVar19 = puVar20; + if (!bVar29 && bVar31 == bVar30) break; + *pcVar9 = *pcVar9 + bVar6; + bVar29 = 0xe5 < bVar6; + while( true ) { + puVar21 = uStack_28; + puVar19 = (uint *)((int)puVar20 + -1); + bVar30 = SCARRY4(*(int *)pbVar27,(int)uStack_28); + pbVar26 = (byte *)(*(int *)pbVar27 + (int)uStack_28); + *(byte **)pbVar27 = pbVar26 + bVar29; + uStack_28 = (uint *)CONCAT22(uStack_28._2_2_,in_SS); + puVar28 = uStack_28; + if (*(int *)pbVar27 != 0 && + (bVar30 != SCARRY4((int)pbVar26,(uint)bVar29)) == *(int *)pbVar27 < 0) break; + *(byte *)puVar21 = (byte)*puVar21 + (char)puVar21; + bVar7 = (char)puVar21 + 0x20; + pbVar12 = (byte *)CONCAT31((int3)((uint)puVar21 >> 8),bVar7); + pbVar26 = pbVar27 + 1; + *(byte *)puStack_8 = *pbVar27; + *pbVar12 = *pbVar12 + bVar7; + pbVar12[0x4a] = pbVar12[0x4a] + bVar24; + *piVar25 = *piVar25 - (int)pbVar17; + bVar6 = *pbVar12; + *pbVar12 = *pbVar12 + bVar7; + *piVar25 = (int)((int)puVar19 + (uint)CARRY1(bVar6,bVar7) + *piVar25); + pbVar12 = pbVar12 + 0x22d0511; + puVar21 = (uint *)((int)puVar20 + -2); + *pbVar12 = *pbVar12 + (char)pbVar12; + iVar13 = CONCAT31((int3)((uint)pbVar12 >> 8),(char)pbVar12 + '\x17') + -0x4a7e33; + *(byte *)((int)uStack_28 + (int)puVar21) = + *(byte *)((int)uStack_28 + (int)puVar21) + (char)iVar13; + *(char *)puVar21 = *(char *)puVar21; + puVar19 = puRam28040000; + cVar3 = (char)puRam28040000; + *pbVar26 = *pbVar26 + cVar3; + *pbVar26 = *pbVar26 + 1; + *pbVar26 = *pbVar26 + cVar3; + cVar22 = (char)((uint)puVar21 >> 8); + *(char *)puVar21 = *(char *)puVar21 - cVar22; + uVar15 = (undefined3)((uint)puVar19 >> 8); + cVar5 = cVar3 + (byte)*puVar19; + pbVar12 = (byte *)CONCAT31(uVar15,cVar5); + uStack_28._2_2_ = (undefined2)((uint)iVar13 >> 0x10); + uStack_28 = (uint *)CONCAT22(uStack_28._2_2_,uVar2); + if (cVar5 == '\0' || SCARRY1(cVar3,(byte)*puVar19) != cVar5 < '\0') { + pbVar27[2] = pbVar27[2] + cVar22; +code_r0x10005ac2: + bVar4 = *pbVar12; + bVar18 = (byte)pbVar12; + *pbVar12 = *pbVar12 + bVar18; + *(uint *)pbVar12 = (*(int *)pbVar12 - (int)pbVar12) - (uint)CARRY1(bVar4,bVar18); + *pbVar12 = *pbVar12 + bVar18; + uStack_44 = (undefined1)in_SS; + *(uint *)pbVar17 = CONCAT13(uStack_44,CONCAT12(uStack_45,uStack_47)); + *pbVar12 = *pbVar12 + bVar18; + unaff_EBP = pbVar12; +code_r0x10005acd: + cVar3 = (char)unaff_EBP; + *unaff_EBP = *unaff_EBP + cVar3; + *(byte *)puVar28 = (byte)*puVar28 + cVar3; + *pbVar17 = *pbVar17 + cVar3; + *unaff_EBP = *unaff_EBP + cVar3; + *unaff_EBP = *unaff_EBP; + pbVar17[(int)unaff_EBP] = pbVar17[(int)unaff_EBP] + (char)((uint)puVar21 >> 8); + *unaff_EBP = *unaff_EBP + cVar3; + piVar10 = (int *)CONCAT22((short)((uint)unaff_EBP >> 0x10),CONCAT11(1,cVar3)); + *(char *)piVar10 = (char)*piVar10 + cVar3; + pcVar9 = (char *)((int)piVar10 + *piVar10); + *pcVar9 = *pcVar9 + (char)pcVar9; + *pcVar9 = *pcVar9 + (char)pcVar9; + pcVar1 = (code *)swi(3); + puVar14 = (undefined *)(*pcVar1)(); + return puVar14; + } + *pbVar12 = *pbVar12 + cVar5; + cVar3 = cVar5 + '\x1f'; + *(byte *)(puVar28 + -0x20) = (byte)puVar28[-0x20] + 1; + puVar20 = (uint *)((int)puVar20 + -3); + *(char *)CONCAT31(uVar15,cVar3) = *(char *)CONCAT31(uVar15,cVar3) + cVar3; + bVar6 = cVar5 - 5; + if (bVar6 == 0 || cVar3 < '$') { + *(char *)CONCAT31(uVar15,bVar6) = *(char *)CONCAT31(uVar15,bVar6) + bVar6; + pcVar9 = (char *)(CONCAT31(uVar15,cVar5 + 'y') | 0x7f040003); + *pcVar9 = *pcVar9 + (char)pcVar9; + uVar15 = (undefined3)((uint)pcVar9 >> 8); + bVar18 = (char)pcVar9 + 8; + *pbVar26 = *pbVar26 - cVar16; + *(char *)CONCAT31(uVar15,bVar18) = *(char *)CONCAT31(uVar15,bVar18) + bVar18; + bVar24 = bVar24 | (byte)((uint)puVar20 >> 8); + puVar21 = (uint *)((int)puVar20 + *(int *)pbVar26); + cVar3 = (bVar18 | 0xdc) + 0xc; + *puVar21 = *puVar21 | (uint)unaff_EBP; + pbVar17[0x4c] = pbVar17[0x4c] + cVar3; + *(char *)CONCAT31(uVar15,cVar3) = *(char *)CONCAT31(uVar15,cVar3) + cVar3; + *(char *)CONCAT31(uVar15,cVar3) = *(char *)CONCAT31(uVar15,cVar3) + cVar3; + bVar18 = (byte)unaff_EBP; + *unaff_EBP = *unaff_EBP + bVar18; + *pbVar17 = *pbVar17 + bVar24; + *unaff_EBP = *unaff_EBP + bVar18; + pbVar27[0xe000001] = pbVar27[0xe000001] + bVar4; + *unaff_EBP = *unaff_EBP + bVar18; + *(byte *)puVar28 = (byte)*puVar28 + bVar18; + *pbVar17 = *pbVar17 + bVar18; + bVar4 = *unaff_EBP; + *unaff_EBP = *unaff_EBP + bVar18; + pbVar12 = unaff_EBP; + if (CARRY1(bVar4,bVar18) || *unaff_EBP == 0) { + *pbVar17 = *pbVar17 + bVar24; + *unaff_EBP = *unaff_EBP + bVar18; + *(byte *)((int)puVar28 + 0xe000001) = *(byte *)((int)puVar28 + 0xe000001) + cVar16; + goto code_r0x10005acd; + } + goto code_r0x10005ac2; + } + pbVar27 = (byte *)((int)puVar20 + (int)piVar25); + bVar29 = CARRY1(*pbVar27,bVar6); + *pbVar27 = *pbVar27 + bVar6; + pbVar27 = pbVar26; + puStack_8 = puVar28; + } + } + } + goto code_r0x10005968; +} + + +``` + +## Connect at 10007954 + +Signature: `char * __fastcall Connect(int param_1, uint * param_2)` + +```c + +char * __fastcall Connect(int param_1,uint *param_2) + +{ + code *pcVar1; + byte bVar2; + char cVar3; + uint in_EAX; + int *piVar4; + char *pcVar6; + uint *unaff_EBX; + byte *pbVar5; + + /* .NET CLR Managed Code */ + piVar4 = (int *)(in_EAX | *param_2); + if ((POPCOUNT((uint)piVar4 & 0xff) & 1U) == 0) { + bVar2 = (char)((int)piVar4 + *piVar4) + 2; + pbVar5 = (byte *)CONCAT31((int3)((uint)((int)piVar4 + *piVar4) >> 8),bVar2); + *pbVar5 = *pbVar5 ^ bVar2; + *(char *)param_2 = (char)*param_2 + (char)param_1; + pcVar1 = (code *)swi(3); + pcVar6 = (char *)(*pcVar1)(); + return pcVar6; + } + *unaff_EBX = *unaff_EBX & (uint)piVar4; + *(char *)((int)param_2 + param_1) = *(char *)((int)param_2 + param_1) + (char)piVar4; + cVar3 = (char)piVar4 + -6; + pcVar6 = (char *)CONCAT31((int3)((uint)piVar4 >> 8),cVar3); + *(char *)param_2 = (char)*param_2 - (char)((uint)param_2 >> 8); + *pcVar6 = *pcVar6 + cVar3; + pcVar1 = (code *)swi(3); + pcVar6 = (char *)(*pcVar1)(); + return pcVar6; +} + + +``` + +## SetNamespace at 1000bcc0 + +Signature: `void __fastcall SetNamespace(int bstrNamespace, int param_2)` + +```c + +/* WARNING: Instruction at (ram,0x1000bcea) overlaps instruction at (ram,0x1000bce8) + */ + +void __fastcall SetNamespace(int bstrNamespace,int param_2) + +{ + byte *pbVar1; + int iVar2; + code *pcVar3; + byte bVar4; + undefined4 in_EAX; + undefined3 uVar7; + int *piVar5; + char *pcVar6; + byte bVar8; + int unaff_EBP; + uint *unaff_ESI; + int unaff_EDI; + + /* .NET CLR Managed Code */ + uVar7 = (undefined3)((uint)in_EAX >> 8); + bVar4 = (char)in_EAX + 0x58; + if ((POPCOUNT(bVar4 | 2) & 1U) == 0) { + iVar2 = (CONCAT31(uVar7,(bVar4 | 2) + 0x44) | 0xd16022b) + *(int *)(bstrNamespace + param_2); + piVar5 = (int *)CONCAT31((int3)((uint)iVar2 >> 8),(char)iVar2 + '-'); + unaff_EBP = unaff_EBP + *piVar5; + piRam0c060002 = piVar5; + } + else { + *(byte *)unaff_ESI = (byte)*unaff_ESI + (bVar4 | 2); + piVar5 = (int *)(CONCAT31(uVar7,bVar4) | 2); + if ((POPCOUNT(bVar4 | 2) & 1U) != 0) { + out(*unaff_ESI,(short)param_2); + pcVar6 = (char *)CONCAT31((int3)((uint)((int)piVar5 + *piVar5) >> 8),(byte)unaff_ESI[1]); + *pcVar6 = *pcVar6 + (byte)unaff_ESI[1]; + pcVar3 = (code *)swi(3); + (*pcVar3)(); + return; + } + } + bVar4 = (char)piVar5 + 0xbU | (byte)*unaff_ESI; + bVar8 = (byte)((uint)bstrNamespace >> 8); + *(byte *)unaff_ESI = (byte)*unaff_ESI | bVar8; + *unaff_ESI = *unaff_ESI | CONCAT31((int3)((uint)piVar5 >> 8),bVar4); + *(char *)(unaff_EDI + 2) = *(char *)(unaff_EDI + 2) - bVar8; + *(byte *)unaff_ESI = (byte)*unaff_ESI + bVar4; + pbVar1 = (byte *)(param_2 + -0x35 + unaff_EBP); + *pbVar1 = *pbVar1 | (char)param_2 - 1U; + pcVar3 = (code *)swi(3); + (*pcVar3)(); + return; +} + + +``` + +## AddProxy at 1000bd30 + +Signature: `int __fastcall AddProxy(byte * dataClientProxy, uint * param_2, ushort param_3)` + +```c + +/* WARNING: Instruction at (ram,0x1000bd62) overlaps instruction at (ram,0x1000bd61) + */ + +int __fastcall AddProxy(byte *dataClientProxy,uint *param_2,ushort param_3) + +{ + uint uVar1; + code *pcVar3; + byte bVar4; + byte bVar5; + char cVar6; + char cVar7; + byte bVar15; + undefined4 in_EAX; + int iVar8; + int iVar9; + undefined3 uVar16; + uint *puVar10; + uint uVar11; + int iVar12; + char *pcVar13; + byte *pbVar14; + byte bVar17; + char cVar19; + char *pcVar18; + byte bVar20; + undefined2 uVar21; + byte bVar22; + char *unaff_EBX; + undefined3 uVar24; + int unaff_EBP; + char *unaff_ESI; + char *pcVar25; + byte *pbVar26; + byte *unaff_EDI; + ushort in_ES; + byte in_CF; + byte in_AF; + char *unaff_retaddr; + uint uVar2; + char *pcVar23; + + /* .NET CLR Managed Code */ + bVar5 = (byte)in_EAX + 10; + iVar8 = CONCAT31((int3)((uint)in_EAX >> 8),bVar5 + in_CF); + uVar11 = (uint)(0xf5 < (byte)in_EAX || CARRY1(bVar5,in_CF)); + iVar12 = iVar8 + 0x3e2c020b; + iVar9 = iVar12 + uVar11; + bVar5 = (byte)iVar9; + if (iVar9 == 0 || (SCARRY4(iVar8,0x3e2c020b) != SCARRY4(iVar12,uVar11)) != iVar9 < 0) { + *(char *)(iVar9 * 2) = *(char *)(iVar9 * 2) - bVar5; +code_r0x1000bd5c: + *unaff_retaddr = *unaff_retaddr + -4; + bVar5 = (byte)unaff_retaddr; + unaff_ESI[(int)unaff_EBX * 8] = unaff_ESI[(int)unaff_EBX * 8] + bVar5; + out(*(undefined4 *)unaff_ESI,(short)param_2); + *unaff_retaddr = *unaff_retaddr + bVar5; + unaff_EBX = (char *)CONCAT31((int3)((uint)unaff_EBX >> 8), + (byte)unaff_EBX | (byte)((uint)unaff_retaddr >> 8)); + pcVar13 = (char *)(uint)param_3; + pcVar25 = unaff_ESI + 8; + out(*(undefined4 *)(unaff_ESI + 4),(short)param_2); + unaff_EDI = unaff_EDI + 2; + *unaff_retaddr = *unaff_retaddr + bVar5; + uVar16 = (undefined3)((uint)unaff_retaddr >> 8); + bVar5 = bVar5 | *unaff_EDI; + pbVar26 = (byte *)CONCAT31(uVar16,bVar5); + dataClientProxy = dataClientProxy + 1; + cVar6 = (bVar5 - *pbVar26) - (bVar5 < *pbVar26); + pbVar26 = (byte *)CONCAT31(uVar16,cVar6); + *(char *)((int)pbVar26 * 2) = *(char *)((int)pbVar26 * 2) + cVar6; + in_ES = param_3; + } + else { + uVar16 = (undefined3)((uint)iVar9 >> 8); + bVar4 = bVar5 + 0x73; + *unaff_EBX = (*unaff_EBX - bVar4) - (0x8c < bVar5); + *unaff_ESI = *unaff_ESI + bVar4; + bVar4 = bVar4 | 8; + unaff_EBX = (char *)CONCAT22((short)((uint)unaff_EBX >> 0x10), + CONCAT11((byte)((uint)unaff_EBX >> 8) | unaff_ESI[0x27], + (char)unaff_EBX)); + pcVar25 = (char *)(CONCAT31(uVar16,bVar4 + 0x7e) * 2); + *pcVar25 = *pcVar25 - (bVar4 + 0x7e); + pbVar26 = (byte *)CONCAT31(uVar16,bVar4 + 0x80); + pcVar25 = unaff_ESI + 4; + out(*(undefined4 *)unaff_ESI,(short)param_2); + param_2 = (uint *)((uint)param_2 & 0xffffff00); + uVar11 = *param_2; + *(char *)param_2 = (char)*param_2 + (char)dataClientProxy; + pcVar13 = unaff_retaddr; + if ((char)*param_2 != '\0' && + SCARRY1((char)uVar11,(char)dataClientProxy) == (char)*param_2 < '\0') { + puVar10 = (uint *)CONCAT31(uVar16,bVar4 + 0x8b); + unaff_ESI = pcVar25; + if ((byte)(bVar4 + 0x8b) == '\0' || (char)(bVar4 + 0x80) < -0xb) goto code_r0x1000bd84; + goto code_r0x1000bd5c; + } + } + bVar5 = *pbVar26; + bVar4 = (byte)pbVar26; + *pbVar26 = *pbVar26 + bVar4; + cVar6 = bVar4 + *pbVar26 + CARRY1(bVar5,bVar4); + puVar10 = (uint *)CONCAT31((int3)((uint)pbVar26 >> 8),cVar6); + *(char *)puVar10 = (char)*puVar10 + cVar6; +code_r0x1000bd84: + cVar6 = (char)puVar10; + *(char *)puVar10 = (char)*puVar10 + cVar6; + *(char *)puVar10 = (char)*puVar10 + (char)((uint)unaff_EBX >> 8); + *(char *)puVar10 = (char)*puVar10 + cVar6; + *unaff_EDI = *unaff_EDI + cVar6; + *(char *)puVar10 = (char)*puVar10 + cVar6; + *unaff_EBX = *unaff_EBX + (char)((uint)puVar10 >> 8); + *dataClientProxy = *dataClientProxy + cVar6; + pcVar25 = (char *)((uint)pcVar25 | *puVar10); + uVar16 = (undefined3)((uint)puVar10 >> 8); + cVar6 = cVar6 + (char)*puVar10; + *(char *)CONCAT31(uVar16,cVar6) = *(char *)CONCAT31(uVar16,cVar6) + cVar6; + bVar20 = (byte)param_2; + *(char *)(unaff_EBP + 1) = *(char *)(unaff_EBP + 1) + bVar20; + bVar5 = *dataClientProxy; + *dataClientProxy = *dataClientProxy + bVar20; + bVar4 = cVar6 + '\n' + CARRY1(bVar5,bVar20); + pbVar26 = (byte *)CONCAT31(uVar16,bVar4); + uVar21 = SUB42(param_2,0); + bVar17 = (byte)dataClientProxy; + if (bVar4 != 0 && + (SCARRY1(cVar6,'\n') != SCARRY1(cVar6 + '\n',CARRY1(bVar5,bVar20))) == (char)bVar4 < '\0') { + cVar6 = bVar4 + 0x73; + *unaff_EBX = (*unaff_EBX - cVar6) - (0x8c < bVar4); + *pcVar25 = *pcVar25 + cVar6; + uVar11 = CONCAT31(uVar16,cVar6) | 0x277e0a09; + pcVar18 = pcVar25 + 4; + out(*(undefined4 *)pcVar25,uVar21); + uVar11 = CONCAT22((short)(uVar11 >> 0x10),(ushort)(byte)((char)uVar11 + 2)); + *(byte *)param_2 = (char)*param_2 + bVar17; + iVar12 = uVar11 + 0x81e221fe; + bVar4 = (byte)iVar12; + bVar5 = 9 < (bVar4 & 0xf) | in_AF; + bVar4 = bVar4 + bVar5 * '\x06'; + pcVar25 = pcVar25 + 8; + out(*(undefined4 *)pcVar18,uVar21); + *(byte *)param_2 = (char)*param_2 + bVar17; + pbVar26 = (byte *)(CONCAT31((int3)((uint)iVar12 >> 8), + bVar4 + (0x90 < (bVar4 & 0xf0) | + uVar11 < 0x7e1dde02 | bVar5 * (0xf9 < bVar4)) * '`' + '\x02' + ) & 0xffff00ff | 0xde); + in_ES = (ushort)pcVar13; + } + out(*(undefined4 *)pcVar25,uVar21); + bVar4 = (byte)pbVar26; + *pbVar26 = *pbVar26 + bVar4; + bVar15 = (byte)((uint)pbVar26 >> 8); + uVar24 = (undefined3)((uint)unaff_EBX >> 8); + out(*(undefined4 *)(pcVar25 + 4),uVar21); + *pbVar26 = *pbVar26 + bVar4; + bVar5 = *pbVar26; + uVar16 = (undefined3)((uint)pbVar26 >> 8); + bVar4 = (bVar4 - *pbVar26) + '\v' + (bVar4 < *pbVar26); + pcVar13 = (char *)CONCAT31(uVar16,bVar4); + out(*(undefined4 *)(pcVar25 + 8),uVar21); + *pcVar13 = *pcVar13 + bVar4; + bVar22 = (byte)unaff_EBX | bVar15 | bVar15; + pcVar23 = (char *)CONCAT31(uVar24,bVar22); + out(*(undefined4 *)(pcVar25 + 0xc),uVar21); + pbVar26 = unaff_EDI + 3; + *pcVar13 = *pcVar13 + bVar4; + cVar6 = (bVar4 | *pbVar26) - *(char *)CONCAT31(uVar16,bVar4 | *pbVar26); + pcVar18 = (char *)(CONCAT31((int3)((uint)dataClientProxy >> 8),bVar17 | bVar5) + 1); + pcVar13 = (char *)CONCAT31(uVar16,cVar6); + *(char *)((int)pcVar13 * 2) = *(char *)((int)pcVar13 * 2) + cVar6; + *pcVar13 = *pcVar13 + cVar6; + pcVar13 = (char *)((uint)pcVar13 | 0x1f000000); + *pcVar13 = *pcVar13 + cVar6; + cVar19 = (char)((uint)pcVar18 >> 8); + *(char *)((int)pcVar13 * 2) = *(char *)((int)pcVar13 * 2) + cVar19; + *pcVar13 = *pcVar13 + cVar6; + *pcVar13 = *pcVar13 + cVar6; + *pcVar23 = *pcVar23 + bVar15; + *pcVar18 = *pcVar18 + cVar6; + uVar16 = (undefined3)((uint)pcVar13 >> 8); + pcVar13 = (char *)CONCAT31(uVar16,cVar6); + *pcVar13 = *pcVar13 + cVar6; + *pcVar13 = *pcVar13 + cVar6; + pcVar13 = (char *)CONCAT31(uVar16,cVar6); + *pcVar13 = *pcVar13 + cVar6; + pbVar14 = (byte *)(pcVar13 + 1); + bVar5 = (byte)pbVar14; + *pbVar14 = *pbVar14 + bVar5; + *pbVar26 = *pbVar26 + bVar5; + *pbVar14 = *pbVar14 + bVar5; + *pcVar23 = *pcVar23 + (char)((uint)pbVar14 >> 8); + *pcVar18 = *pcVar18 + bVar5; + pbVar26 = (byte *)(pcVar25 + *(int *)pbVar14 + 0x10); + uVar16 = (undefined3)((uint)pbVar14 >> 8); + bVar5 = (bVar5 + *pbVar14) - CARRY1(bVar5,*pbVar14); + puVar10 = (uint *)CONCAT31(uVar16,bVar5); + *(byte *)puVar10 = (char)*puVar10 + bVar5; + uVar11 = *puVar10; + *puVar10 = (uint)(*puVar10 + (int)puVar10); + uVar1 = *param_2; + uVar2 = *param_2; + *param_2 = (uint)((char *)(uVar2 + (int)puVar10) + CARRY4(uVar11,(uint)puVar10)); + cVar6 = *(char *)((int)puVar10 + 0x4a); + *(char *)((int)puVar10 + 3) = *(char *)((int)puVar10 + 3) - bVar20; + *pbVar26 = *pbVar26 + bVar5; + cVar7 = (bVar5 | *pbVar26) - 0xe; + pcVar25 = (char *)(CONCAT31(uVar24,(bVar22 - cVar6) - + (CARRY4(uVar1,(uint)puVar10) || + CARRY4(uVar2 + (int)puVar10,(uint)CARRY4(uVar11,(uint)puVar10)) + )) + CONCAT31(uVar16,cVar7)); + *pcVar25 = *pcVar25 - (char)((uint)param_2 >> 8); + *pbVar26 = *pbVar26 + cVar7; + cRam2a060003 = cRam2a060003 - cVar19; + pcVar3 = (code *)swi(3); + iVar12 = (*pcVar3)(in_ES,pbVar26,in_ES,in_ES); + return iVar12; +} + + +``` + +## IsConnected at 1000c158 + +Signature: `bool __fastcall IsConnected(uint * param_1, uint * param_2)` + +```c + +/* WARNING: Instruction at (ram,0x1000c3ac) overlaps instruction at (ram,0x1000c3a7) + */ + +bool __fastcall IsConnected(uint *param_1,uint *param_2) + +{ + char cVar1; + char cVar2; + byte bVar3; + char cVar4; + byte bVar5; + char cVar6; + uint *in_EAX; + undefined3 uVar16; + uint *puVar7; + char *pcVar8; + int *piVar10; + char *pcVar11; + uint *puVar12; + byte *pbVar13; + int iVar14; + uint uVar15; + uint *puVar17; + int unaff_EBX; + int *piVar18; + int unaff_EBP; + uint *unaff_ESI; + uint *puVar19; + uint *puVar20; + uint *puVar21; + undefined2 in_ES; + undefined2 in_SS; + byte in_AF; + byte in_TF; + byte in_IF; + byte in_NT; + byte in_AC; + byte in_VIF; + byte in_VIP; + byte in_ID; + uint *unaff_retaddr; + uint *puStack_3c; + undefined4 uStack_38; + uint *puStack_34; + uint *puStack_20; + uint *puStack_1c; + uint *puStack_18; + uint *puVar9; + + /* .NET CLR Managed Code */ + piVar18 = (int *)CONCAT22((short)((uint)unaff_EBX >> 0x10), + CONCAT11((char)((uint)unaff_EBX >> 8) + *(char *)(unaff_EBX + 0x20), + (char)unaff_EBX)); +code_r0x1000c15b: + uVar16 = (undefined3)((uint)in_EAX >> 8); + cVar1 = (char)in_EAX + '9'; + piVar10 = (int *)CONCAT31(uVar16,cVar1); + *piVar10 = (int)(*piVar10 + (int)piVar10); + *(char *)((int)unaff_ESI + 0x4a) = *(char *)((int)unaff_ESI + 0x4a) + (char)((uint)piVar18 >> 8); + *(char *)piVar10 = (char)*piVar10 + cVar1; + puVar7 = (uint *)CONCAT31(uVar16,(char)in_EAX + 'P'); + puVar20 = unaff_retaddr; +code_r0x1000c169: + unaff_retaddr = (uint *)((int)puVar7 + -0x4a7e33); + *(char *)((int)puVar20 + (int)param_2) = + *(char *)((int)puVar20 + (int)param_2) + (char)unaff_retaddr; + *(char *)param_2 = (char)*param_2; + in_EAX = puRam28040000; + puStack_1c = puVar20; + puStack_18 = unaff_ESI; +code_r0x1000c180: + cVar1 = (char)in_EAX; + *(char *)unaff_ESI = (char)*unaff_ESI + cVar1; + *(char *)unaff_ESI = (char)*unaff_ESI + '\x01'; + *(char *)unaff_ESI = (char)*unaff_ESI + cVar1; + *(char *)param_2 = (char)*param_2 - (char)((uint)param_2 >> 8); + cVar2 = cVar1 + (char)*in_EAX; + pcVar11 = (char *)CONCAT31((int3)((uint)in_EAX >> 8),cVar2); + puStack_20 = (uint *)CONCAT22(puStack_20._2_2_,in_ES); + puVar9 = puVar20; + if (cVar2 == '\0' || SCARRY1(cVar1,(char)*in_EAX) != cVar2 < '\0') goto code_r0x1000c1dd; + *pcVar11 = *pcVar11 + cVar2; + puVar17 = param_2; +code_r0x1000c195: + uVar16 = (undefined3)((uint)pcVar11 >> 8); + cVar1 = (char)pcVar11 + '\x1f'; + pcVar8 = (char *)CONCAT31(uVar16,cVar1); + *(char *)(puVar20 + -0x20) = (char)puVar20[-0x20] + '\x01'; + param_2 = (uint *)((int)puVar17 + -1); + *pcVar8 = *pcVar8 + cVar1; + cVar2 = (char)pcVar11 + -5; + piVar10 = (int *)CONCAT31(uVar16,cVar2); + if (cVar2 != '\0' && '#' < cVar1) { + bVar5 = (byte)(char *)((int)piVar10 + *piVar10); + bVar3 = bVar5 + 0xd; + puVar9 = (uint *)CONCAT31((int3)((uint)((int)piVar10 + *piVar10) >> 8),bVar3); + if (bVar3 != 0 && -0xe < (char)bVar5) { + *(ushort *)puVar9 = + (ushort)*puVar9 + (ushort)(0xf2 < bVar5) * (((ushort)puVar9 & 3) - ((ushort)*puVar9 & 3)) + ; + *(byte *)param_1 = (char)*param_1 + bVar3; + unaff_ESI = (uint *)((uint)unaff_ESI | *puVar9); + in_EAX = puVar9 + 0x9940; + pbVar13 = (byte *)((int)param_1 + (int)in_EAX); + bVar3 = *pbVar13; + *pbVar13 = *pbVar13 + (byte)piVar18; + *param_2 = (uint)((int)in_EAX + (uint)CARRY1(bVar3,(byte)piVar18) + *param_2); + if ((POPCOUNT(*param_2 & 0xff) & 1U) == 0) goto code_r0x1000c15b; + *(char *)((int)in_EAX + unaff_EBP) = *(char *)((int)in_EAX + unaff_EBP) + (char)in_EAX; + goto code_r0x1000c180; + } + *(byte *)puVar9 = (char)*puVar9 + bVar3; + param_2 = (uint *)((int)puVar17 + -2); + piVar10 = (int *)((int)puVar7 + (0xe5 < bVar3) + 0xa134dc00); + *(char *)piVar10 = (char)*piVar10 + (char)piVar10; + } + puVar9 = (uint *)(CONCAT31((int3)((uint)piVar10 >> 8),(char)piVar10 + 'J') + -0xa17f13); +code_r0x1000c1bb: + puStack_1c = puVar9; + cVar1 = (char)puStack_1c; + *(char *)((int)puStack_1c + unaff_EBP) = *(char *)((int)puStack_1c + unaff_EBP) + cVar1; + uVar15 = *unaff_ESI; + *(char *)unaff_ESI = (char)*unaff_ESI + cVar1; + if ((char)*unaff_ESI != '\0' && SCARRY1((char)uVar15,cVar1) == (char)*unaff_ESI < '\0') { + *(char *)((int)puVar20 + (int)param_2) = *(char *)((int)puVar20 + (int)param_2) + cVar1; + puVar7 = puStack_1c; + puVar20 = unaff_retaddr; + goto code_r0x1000c169; + } + while( true ) { + cVar1 = (char)puStack_1c; + *(char *)puStack_1c = (char)*puStack_1c + cVar1; + uVar16 = (undefined3)((uint)puStack_1c >> 8); + bVar3 = cVar1 + 0x23; + pcVar11 = (char *)CONCAT31(uVar16,bVar3); + if (bVar3 != 0 && '&' < (char)(cVar1 + 'J')) { + *pcVar11 = *pcVar11 + bVar3; + puVar7 = (uint *)CONCAT31(uVar16,cVar1 + ':'); + puVar20 = unaff_retaddr; + goto code_r0x1000c169; + } + *pcVar11 = *pcVar11 + bVar3; + cVar2 = cVar1 + 'C'; + pcVar11 = (char *)CONCAT31(uVar16,cVar2); + puStack_1c = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar3,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar2 < '\0') * 0x80 | (uint)(cVar2 == '\0') * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(cVar2) & 1U) == 0) * 4 | + (uint)(0xdf < bVar3) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000); + *pcVar11 = *pcVar11 + cVar2; + pcVar11[0x4a] = pcVar11[0x4a] + (char)piVar18; + cVar4 = cVar1 + '*'; + pcVar11 = (char *)CONCAT31(uVar16,cVar4); + if (cVar4 != '\0' && '\x18' < cVar2) break; + *pcVar11 = *pcVar11 + cVar4; + puVar9 = puVar20; +code_r0x1000c1dd: + puVar20 = puVar9; + if (-0x1a < (char)pcVar11) { + *(char *)unaff_ESI = (char)*unaff_ESI + '\x01'; + in_EAX = puStack_20; + goto code_r0x1000c180; + } + bVar3 = (byte)puStack_20; + *(byte *)puStack_20 = (char)*puStack_20 + bVar3; + bVar5 = bVar3 + 0x20; + pcVar11 = (char *)CONCAT31((int3)((uint)puStack_20 >> 8),bVar5); + puStack_20 = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar3,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)((char)bVar5 < '\0') * 0x80 | (uint)(bVar5 == 0) * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(bVar5) & 1U) == 0) * 4 | + (uint)(0xdf < bVar3) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000); + *pcVar11 = *pcVar11 + bVar5; + pcVar11[0x4a] = pcVar11[0x4a] + (char)piVar18; + iVar14 = iRam26110000; + iRam26110000 = iRam26110000 - (int)param_1; + puVar17 = param_2; + if (iRam26110000 != 0 && (int)param_1 <= iVar14) goto code_r0x1000c195; + *pcVar11 = *pcVar11 + bVar5; + param_2 = (uint *)((int)param_2 + -1); + pcVar11 = (char *)((int)puStack_20 + (0xe5 < bVar5) + 0x873b); + *(char *)((int)puVar9 + -0x5f) = *(char *)((int)puVar9 + -0x5f) + (char)((uint)piVar18 >> 8); + cVar1 = (char)pcVar11; + *pcVar11 = *pcVar11 + cVar1; + uVar16 = (undefined3)((uint)pcVar11 >> 8); + piVar10 = (int *)CONCAT31(uVar16,cVar1 + '('); + *piVar10 = *piVar10 + -0x5e80fa00; + *(char *)piVar10 = (char)*piVar10 + cVar1 + '('; + pcVar11 = (char *)CONCAT31(uVar16,cVar1 + 'H'); + puVar20 = (uint *)((int)puVar9 + 1); + *(char *)puVar9 = (char)*unaff_ESI; + *pcVar11 = *pcVar11 + cVar1 + 'H'; + pcVar11[0x4a] = pcVar11[0x4a] + (char)piVar18; + unaff_ESI = (uint *)((int)unaff_ESI + 1); + while( true ) { + cVar1 = (char)pcVar11 + -0x6f; + puVar9 = (uint *)CONCAT31((int3)((uint)pcVar11 >> 8),cVar1); + if (cVar1 != '\0' && 'n' < (char)pcVar11) goto code_r0x1000c1bb; + *(char *)puVar9 = (char)*puVar9 + cVar1; + param_2 = (uint *)((int)param_2 + -1); + *unaff_ESI = *unaff_ESI | (uint)param_2; + if (0 < (int)*unaff_ESI) break; + cVar1 = (char)puStack_1c; + *(char *)puStack_1c = (char)*puStack_1c + cVar1; + uVar16 = (undefined3)((uint)puStack_1c >> 8); + bVar5 = cVar1 + 0x20; + pbVar13 = (byte *)CONCAT31(uVar16,bVar5); + puVar9 = (uint *)((int)unaff_ESI + 1); + *(char *)puVar20 = (char)*unaff_ESI; + *pbVar13 = *pbVar13 + bVar5; + pbVar13[0x4a] = pbVar13[0x4a] + (char)piVar18; + *piVar18 = *piVar18 - (int)param_1; + bVar3 = *pbVar13; + *pbVar13 = *pbVar13 + bVar5; + *(uint *)(pbVar13 + (int)param_1) = + (int)param_1 + (uint)CARRY1(bVar3,bVar5) + *(int *)(pbVar13 + (int)param_1); + cVar2 = cVar1 + -0x30; + pbVar13 = (byte *)CONCAT31(uVar16,cVar2); + if (cVar2 == '\0' || (char)bVar5 < 'P') goto code_r0x1000c283; + *pbVar13 = *pbVar13 + cVar2; + puVar12 = (uint *)(CONCAT31(uVar16,cVar1 + -0x19) + -0x4a7e33); + *(char *)((int)puStack_18 + (int)param_2) = + *(char *)((int)puStack_18 + (int)param_2) + (char)puVar12; + puStack_34 = puStack_18; + *(char *)param_2 = *(char *)param_2; + puVar20 = puRam28040000; + cVar1 = (char)puRam28040000; + *(char *)puVar9 = *(char *)puVar9 + cVar1; + *(char *)puVar9 = *(char *)puVar9 + '\x01'; + *(char *)puVar9 = *(char *)puVar9 + cVar1; + *(char *)param_2 = *(char *)param_2 - (char)((uint)param_2 >> 8); + uVar16 = (undefined3)((uint)puVar20 >> 8); + cVar2 = cVar1 + (char)*puVar20; + puVar17 = (uint *)CONCAT31(uVar16,cVar2); + uStack_38 = (uint *)CONCAT22(uStack_38._2_2_,in_ES); + puVar19 = puStack_18; + puStack_20 = param_2; + puStack_1c = param_1; + if (cVar2 == '\0' || SCARRY1(cVar1,(char)*puVar20) != cVar2 < '\0') goto code_r0x1000c2b1; + *(char *)puVar17 = (char)*puVar17 + cVar2; + pcVar11 = (char *)CONCAT31(uVar16,cVar2 + '\x1f'); + *(char *)(puStack_18 + -0x20) = (char)puStack_18[-0x20] + '\x01'; + puVar20 = puStack_18; + puStack_18 = puVar12; +code_r0x1000c26e: + param_2 = (uint *)((int)param_2 + -1); + cVar1 = (char)pcVar11; + *pcVar11 = *pcVar11 + cVar1; + uVar16 = (undefined3)((uint)pcVar11 >> 8); + bVar3 = cVar1 - 0x24; + pcVar11 = (char *)CONCAT31(uVar16,bVar3); + unaff_ESI = puVar9; + if (bVar3 == 0 || cVar1 < '$') { + *pcVar11 = *pcVar11 + bVar3; + pbVar13 = (byte *)(CONCAT31(uVar16,cVar1 + 'Z') + *piVar18 + (uint)(0x81 < bVar3)); + *(char *)((int)puVar20 * 3) = *(char *)((int)puVar20 * 3) + (char)pbVar13; +code_r0x1000c283: + uVar16 = (undefined3)((uint)pbVar13 >> 8); + bVar3 = (byte)pbVar13 | *pbVar13; + pcVar11 = (char *)CONCAT31(uVar16,bVar3); + *(char *)param_2 = (char)*param_2 + (char)param_1; + puStack_34 = (uint *)CONCAT22(puStack_34._2_2_,in_SS); + piVar18 = (int *)CONCAT22((short)((uint)piVar18 >> 0x10), + CONCAT11((char)((uint)piVar18 >> 8) - + *(char *)((int)puVar9 + 0x4a),(char)piVar18)); + *pcVar11 = *pcVar11 + bVar3; + puVar12 = (uint *)CONCAT31(uVar16,bVar3 + 0x17); +code_r0x1000c28f: + do { + *(char *)((int)puStack_34 + (int)param_2) = + *(char *)((int)puStack_34 + (int)param_2) + (char)(uint *)((int)puVar12 + -0x4a7e33); + *(char *)param_2 = (char)*param_2; + puVar17 = puRam28040000; + puVar19 = puStack_34; + puStack_3c = param_2; + uStack_38 = param_1; + puStack_34 = (uint *)((int)puVar12 + -0x4a7e33); +code_r0x1000c2a6: + *(char *)puVar9 = (char)*puVar9 + (char)puVar17; + *(char *)puVar9 = (char)*puVar9 + '\x01'; + *(char *)puVar9 = (char)*puVar9 + (char)puVar17; + *(char *)param_2 = (char)*param_2 - (char)((uint)param_2 >> 8); + puVar12 = puStack_18; +code_r0x1000c2b1: + puStack_18 = puVar12; + cVar1 = (char)puVar17 + (char)*puVar17; + pcVar11 = (char *)CONCAT31((int3)((uint)puVar17 >> 8),cVar1); + puStack_3c = (uint *)CONCAT22(puStack_3c._2_2_,in_ES); + cVar2 = (char)piVar18; + if (cVar1 == '\0' || SCARRY1((char)puVar17,(char)*puVar17) != cVar1 < '\0') + goto code_r0x1000c303; + *pcVar11 = *pcVar11 + cVar1; + puVar17 = param_2; + puVar20 = puVar19; +code_r0x1000c2bb: + uVar16 = (undefined3)((uint)pcVar11 >> 8); + cVar1 = (char)pcVar11 + '\x1f'; + pcVar8 = (char *)CONCAT31(uVar16,cVar1); + *(char *)(puVar20 + -0x20) = (char)puVar20[-0x20] + '\x01'; + param_2 = (uint *)((int)puVar17 + -1); + *pcVar8 = *pcVar8 + cVar1; + cVar4 = (char)pcVar11 + -5; + piVar10 = (int *)CONCAT31(uVar16,cVar4); + if (cVar4 != '\0' && '#' < cVar1) { + cVar1 = (char)(char *)((int)piVar10 + *piVar10); + bVar3 = cVar1 + 0xb; + pcVar11 = (char *)CONCAT31((int3)((uint)((int)piVar10 + *piVar10) >> 8),bVar3); + if (bVar3 != 0 && -0xc < cVar1) goto code_r0x1000c26e; + *pcVar11 = *pcVar11 + bVar3; + param_2 = (uint *)((int)puVar17 + -2); + piVar10 = (int *)((int)puStack_3c + (0xe5 < bVar3) + 0xa17f5a33); + *(char *)piVar10 = (char)*piVar10 + (char)piVar10; + } + puVar12 = (uint *)(CONCAT31((int3)((uint)piVar10 >> 8),(char)piVar10 + 'J') + -0xa17f13); + *(char *)((int)puVar12 + unaff_EBP) = *(char *)((int)puVar12 + unaff_EBP) + (char)puVar12; +code_r0x1000c2e4: + uVar15 = *puVar9; + cVar1 = (char)puVar12; + *(char *)puVar9 = (char)*puVar9 + cVar1; + if ((char)*puVar9 == '\0' || SCARRY1((char)uVar15,cVar1) != (char)*puVar9 < '\0') { + while( true ) { + cVar1 = (char)puVar12; + *(char *)puVar12 = (char)*puVar12 + cVar1; + uVar16 = (undefined3)((uint)puVar12 >> 8); + bVar3 = cVar1 + 0x23; + pcVar11 = (char *)CONCAT31(uVar16,bVar3); + if (bVar3 != 0 && '&' < (char)(cVar1 + 'J')) { + *pcVar11 = *pcVar11 + bVar3; + puVar12 = (uint *)CONCAT31(uVar16,cVar1 + ':'); + goto code_r0x1000c28f; + } + *pcVar11 = *pcVar11 + bVar3; + cVar4 = cVar1 + 'C'; + pcVar11 = (char *)CONCAT31(uVar16,cVar4); + puStack_3c = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar3,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar4 < '\0') * 0x80 | (uint)(cVar4 == '\0') * 0x40 | + (uint)(in_AF & 1) * 0x10 | + (uint)((POPCOUNT(cVar4) & 1U) == 0) * 4 | (uint)(0xdf < bVar3) | + (uint)(in_ID & 1) * 0x200000 | (uint)(in_VIP & 1) * 0x100000 | + (uint)(in_VIF & 1) * 0x80000 | (uint)(in_AC & 1) * 0x40000); + *pcVar11 = *pcVar11 + cVar4; + pcVar11[0x4a] = pcVar11[0x4a] + cVar2; + cVar6 = cVar1 + '*'; + pcVar11 = (char *)CONCAT31(uVar16,cVar6); + if (cVar6 != '\0' && '\x18' < cVar4) break; + *pcVar11 = *pcVar11 + cVar6; + puVar19 = puVar20; +code_r0x1000c303: + if (-0x1a < (char)pcVar11) { + *(char *)puVar9 = (char)*puVar9 + '\x01'; + puVar17 = puStack_3c; + goto code_r0x1000c2a6; + } + bVar3 = (byte)puStack_3c; + *(byte *)puStack_3c = (char)*puStack_3c + bVar3; + bVar5 = bVar3 + 0x20; + pcVar11 = (char *)CONCAT31((int3)((uint)puStack_3c >> 8),bVar5); + puStack_3c = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar3,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)((char)bVar5 < '\0') * 0x80 | (uint)(bVar5 == 0) * 0x40 | + (uint)(in_AF & 1) * 0x10 | + (uint)((POPCOUNT(bVar5) & 1U) == 0) * 4 | (uint)(0xdf < bVar3) | + (uint)(in_ID & 1) * 0x200000 | (uint)(in_VIP & 1) * 0x100000 | + (uint)(in_VIF & 1) * 0x80000 | (uint)(in_AC & 1) * 0x40000); + *pcVar11 = *pcVar11 + bVar5; + pcVar11[0x4a] = pcVar11[0x4a] + cVar2; + iVar14 = iRam26110000; + iRam26110000 = iRam26110000 - (int)param_1; + puVar17 = param_2; + puVar20 = puVar19; + if (iRam26110000 != 0 && (int)param_1 <= iVar14) goto code_r0x1000c2bb; + *pcVar11 = *pcVar11 + bVar5; + param_2 = (uint *)((int)param_2 + -1); + pcVar11 = (char *)((int)puStack_3c + (0xe5 < bVar5) + 0x903b); + cVar4 = (char)((uint)piVar18 >> 8); + *(char *)((int)puVar19 + -0x5f) = *(char *)((int)puVar19 + -0x5f) + cVar4; + cVar1 = (char)pcVar11; + *pcVar11 = *pcVar11 + cVar1; + uVar16 = (undefined3)((uint)pcVar11 >> 8); + piVar10 = (int *)CONCAT31(uVar16,cVar1 + '('); + *piVar10 = *piVar10 + -0x5e80fa00; + *(char *)piVar10 = (char)*piVar10 + cVar1 + '('; + puVar12 = (uint *)CONCAT31(uVar16,cVar1 + 'H'); + puVar20 = (uint *)((int)puVar19 + 1); + *(char *)puVar19 = (char)*puVar9; + *(char *)puVar12 = (char)*puVar12 + cVar1 + 'H'; + *(char *)((int)puVar12 + 0x4a) = *(char *)((int)puVar12 + 0x4a) + cVar2; + puVar9 = (uint *)((int)puVar9 + 1); + while( true ) { + uVar15 = *puVar12; + cVar1 = (char)puVar12; + *(char *)puVar12 = (char)*puVar12 + cVar1; + if ((char)*puVar12 != '\0' && SCARRY1((char)uVar15,cVar1) == (char)*puVar12 < '\0') + goto code_r0x1000c2e4; + *(char *)puVar12 = (char)*puVar12 + cVar1; + puVar17 = (uint *)((int)param_2 + -1); + in_ES = puStack_34._0_2_; + puStack_34 = (uint *)CONCAT22(puStack_34._2_2_,in_SS); + if (puVar17 != (uint *)0x0 && 0 < (int)param_2) break; + cVar1 = (char)uStack_38; + *(char *)uStack_38 = (char)*uStack_38 + cVar1; + uVar16 = (undefined3)((uint)uStack_38 >> 8); + bVar5 = cVar1 + 0x20; + pbVar13 = (byte *)CONCAT31(uVar16,bVar5); + puVar21 = (uint *)((int)puVar20 + 1); + puVar19 = (uint *)((int)puVar9 + 1); + *(char *)puVar20 = (char)*puVar9; + *pbVar13 = *pbVar13 + bVar5; + pbVar13[0x4a] = pbVar13[0x4a] + cVar2; + *piVar18 = *piVar18 - (int)param_1; + bVar3 = *pbVar13; + *pbVar13 = *pbVar13 + bVar5; + *puVar17 = (int)param_1 + (uint)CARRY1(bVar3,bVar5) + *puVar17; + uStack_38 = (uint *)CONCAT22(uStack_38._2_2_,in_ES); + puVar20 = uStack_38; + cVar6 = cVar1 + -0x36; + pbVar13 = (byte *)CONCAT31(uVar16,cVar6); + if (cVar6 == '\0' || (char)bVar5 < 'V') { + if ((POPCOUNT(cVar6) & 1U) == 0) { + puVar12 = (uint *)CONCAT31(uVar16,cVar6); + goto code_r0x1000c39e; + } + *(char *)param_1 = (char)*param_1 + cVar4; + *pbVar13 = *pbVar13 + cVar6; + *(char *)puVar19 = *(char *)puVar19 + (char)param_1; + goto code_r0x1000c3d5; + } + *pbVar13 = *pbVar13 + cVar6; + iVar14 = CONCAT31(uVar16,cVar1 + -0x1f) + -0x4a7e33; + *(char *)((int)uStack_38 + (int)puVar17) = + *(char *)((int)uStack_38 + (int)puVar17) + (char)iVar14; + *(char *)puVar17 = *(char *)puVar17; + puVar9 = puRam28040000; + cVar1 = (char)puRam28040000; + *(char *)puVar19 = *(char *)puVar19 + cVar1; + *(char *)puVar19 = *(char *)puVar19 + '\x01'; + *(char *)puVar19 = *(char *)puVar19 + cVar1; + *(char *)puVar17 = *(char *)puVar17 - (char)((uint)puVar17 >> 8); + uVar16 = (undefined3)((uint)puVar9 >> 8); + cVar6 = cVar1 + (char)*puVar9; + pbVar13 = (byte *)CONCAT31(uVar16,cVar6); + uStack_38._2_2_ = (undefined2)((uint)iVar14 >> 0x10); + uStack_38 = (uint *)CONCAT22(uStack_38._2_2_,in_ES); + if (cVar6 == '\0' || SCARRY1(cVar1,(char)*puVar9) != cVar6 < '\0') + goto code_r0x1000c3da; + *pbVar13 = *pbVar13 + cVar6; + cVar1 = cVar6 + '\x1f'; + *(char *)(puVar20 + -0x20) = (char)puVar20[-0x20] + '\x01'; + param_2 = (uint *)((int)param_2 + -2); + *(char *)CONCAT31(uVar16,cVar1) = *(char *)CONCAT31(uVar16,cVar1) + cVar1; + puVar12 = (uint *)CONCAT31(uVar16,cVar6 + -5); + puVar17 = param_2; + puVar9 = puVar19; + puVar21 = puVar20; + if ((char)(cVar6 + -5) == '\0' || cVar1 < '$') { +code_r0x1000c39e: + bVar3 = (byte)puVar12; + *(byte *)puVar12 = (char)*puVar12 + bVar3; + *(char *)((int)puVar21 * 3) = + *(char *)((int)puVar21 * 3) + bVar3 + 0x7e + (char)*piVar18 + (0x81 < bVar3); + uVar15 = *puVar17 * 0x7b020400; + puVar20 = (uint *)(*puVar17 * -0x9fbf800); + *puVar20 = *puVar20 & uVar15; + uVar16 = (undefined3)(uVar15 >> 8); + out(*(char *)puVar19,(short)puVar17); + *(char *)CONCAT31(uVar16,0x28) = *(char *)CONCAT31(uVar16,0x28) + '('; + bVar3 = (byte)*puVar17 | 0x28; + pbVar13 = (byte *)(CONCAT31(uVar16,(byte)*puVar17) | 0x28); + if ((POPCOUNT(bVar3) & 1U) == 0) { + bVar3 = bVar3 + 0x2a; + pcVar11 = (char *)CONCAT31(uVar16,bVar3); + *pcVar11 = *pcVar11 + bVar3; + *(byte *)(param_1 + 0x19) = (char)param_1[0x19] + bVar3; + *pcVar11 = *pcVar11 + bVar3; + pbVar13 = (byte *)CONCAT31(uVar16,bVar3); + *pbVar13 = *pbVar13 + bVar3; + *pbVar13 = *pbVar13 & bVar3; + bVar5 = *pbVar13; + *pbVar13 = *pbVar13 + bVar3; + *(uint *)pbVar13 = (*(int *)pbVar13 - (int)pbVar13) - (uint)CARRY1(bVar5,bVar3); + *pbVar13 = *pbVar13 + bVar3; + *pbVar13 = *pbVar13 + bVar3; +code_r0x1000c3d5: + *pbVar13 = *pbVar13 + (char)pbVar13; + *(char *)piVar18 = (char)*piVar18 + (char)((uint)pbVar13 >> 8); + } +code_r0x1000c3da: + *(char *)param_1 = (char)*param_1 + (char)pbVar13; + *pbVar13 = *pbVar13 + (char)pbVar13; + do { + /* WARNING: Do nothing block with infinite loop */ + } while( true ); + } + } + param_2 = (uint *)((int)param_2 + -2); + puVar12 = uStack_38; + } + puVar12 = (uint *)CONCAT31(uVar16,cVar1 + 'R'); + } + else { + *(char *)((int)puVar20 + (int)param_2) = *(char *)((int)puVar20 + (int)param_2) + cVar1; + } + } while( true ); + } + } + } + in_EAX = (uint *)CONCAT31(uVar16,cVar1 + 'R'); + goto code_r0x1000c180; +} + + +``` + +## CDataClientCLI.{ctor} at 1000cb74 + +Signature: `pointer __fastcall CDataClientCLI.{ctor}(undefined4 param_1, char * param_2)` + +```c + +/* WARNING: Control flow encountered bad instruction data */ +/* WARNING: Unable to track spacebase fully for stack */ + +undefined * __fastcall CDataClientCLI__ctor_(undefined4 param_1,char *param_2) + +{ + char cVar1; + int iVar2; + int *piVar3; + uint uVar4; + byte *pbVar5; + char *pcVar6; + byte bVar7; + char cVar8; + undefined4 unaff_EBX; + char *unaff_ESI; + uint *unaff_EDI; + undefined2 in_ES; + undefined2 in_SS; + int unaff_retaddr; + undefined2 *puVar9; + + /* .NET CLR Managed Code */ + cVar1 = *unaff_ESI; + bVar7 = (byte)((uint)param_1 >> 8); + *(char *)(unaff_retaddr + 0x26060002) = *(char *)(unaff_retaddr + 0x26060002) - bVar7; + cVar8 = (char)unaff_EBX + cVar1 + (byte)*unaff_EDI; + puVar9 = (undefined2 *)CONCAT31((int3)((uint)unaff_EBX >> 8),cVar8); + uVar4 = *unaff_EDI; + *puVar9 = in_SS; + *(undefined2 **)(puVar9 + -2) = puVar9; + cVar1 = *param_2; + piVar3 = (int *)((*(uint *)(puVar9 + -2) | *unaff_EDI) + 0x2e731b54); + iVar2 = *piVar3; + puVar9[-2] = in_ES; + pbVar5 = (byte *)((int)piVar3 + iVar2 | 7); + *pbVar5 = *pbVar5 | bVar7; + pbVar5 = pbVar5 + *(int *)pbVar5; + puVar9[-4] = in_ES; + *(undefined2 **)(puVar9 + -6) = puVar9 + -4; + pcVar6 = (char *)CONCAT22((short)((uint)pbVar5 >> 0x10), + CONCAT11((char)((uint)pbVar5 >> 8) + *pbVar5,(char)pbVar5)); + *(byte *)unaff_EDI = (byte)*unaff_EDI << 1 | (char)(byte)*unaff_EDI < '\0'; + *pcVar6 = *pcVar6 + (char)pbVar5; + *(undefined2 **)(puVar9 + -8) = puVar9 + -6; + unaff_ESI[-1] = unaff_ESI[-1] + '\x01'; + *param_2 = *param_2 - (cVar8 + (byte)uVar4 + cVar1); + puVar9[-6] = in_ES; + /* WARNING: Bad instruction - Truncating control flow here */ + halt_baddata(); +} + + +``` + +## CDataClientCLI.CreateConnection at 1000cd50 + +Signature: `int __fastcall CDataClientCLI.CreateConnection(uint CDataClientCLI0, uint * bstrNameSpace)` + +```c + +/* WARNING: Control flow encountered bad instruction data */ +/* WARNING: Unable to track spacebase fully for stack */ + +int __fastcall CDataClientCLI_CreateConnection(uint CDataClientCLI0,uint *bstrNameSpace) + +{ + uint *puVar1; + undefined2 *puVar2; + int iVar3; + byte bVar4; + char cVar5; + char cVar6; + undefined4 in_EAX; + undefined3 uVar10; + int *piVar8; + undefined4 *puVar9; + char cVar12; + int iVar11; + char *pcVar13; + undefined4 unaff_EBX; + undefined3 uVar15; + char *pcVar14; + byte *unaff_ESI; + int *unaff_EDI; + undefined2 in_ES; + undefined2 in_SS; + undefined2 uVar16; + char in_CF; + bool bVar17; + undefined4 *puStack_4; + uint uVar7; + + /* .NET CLR Managed Code */ + uVar10 = (undefined3)((uint)in_EAX >> 8); + bVar4 = (char)in_EAX + '\n' + in_CF; + uVar7 = CONCAT31(uVar10,bVar4); + bRam13800040 = bRam13800040 & bVar4; + *bstrNameSpace = *bstrNameSpace | uVar7; + cVar6 = (char)unaff_EBX - *(char *)(uVar7 + 0x4a); + uVar15 = (undefined3)((uint)unaff_EBX >> 8); + *(char *)(uVar7 + 3) = *(char *)(uVar7 + 3) - (char)bstrNameSpace; + *unaff_ESI = *unaff_ESI + bVar4; + cVar5 = (bVar4 | *unaff_ESI) - 0x40; + puStack_4 = (undefined4 *)CONCAT22(puStack_4._2_2_,in_ES); + pcVar13 = (char *)(CONCAT31(uVar15,cVar6) + CONCAT31(uVar10,cVar5)); + *pcVar13 = *pcVar13 - (char)((uint)bstrNameSpace >> 8); + *unaff_ESI = *unaff_ESI + cVar5; + bVar4 = (byte)(CDataClientCLI0 >> 8); + bVar17 = bRam02060003 < bVar4; + bRam02060003 = bRam02060003 - bVar4; + puVar1 = (uint *)*puStack_4; + pcVar13 = (char *)((int)bstrNameSpace + -1); + uVar7 = (uint)bVar17; + iVar11 = CDataClientCLI0 + *puVar1 + uVar7; + *puVar1 = *puVar1 + iVar11 + + (uint)(CARRY4(CDataClientCLI0,*puVar1) || CARRY4(CDataClientCLI0 + *puVar1,uVar7)); + cVar5 = (byte)puVar1 - 0xd; + piVar8 = (int *)CONCAT31((int3)((uint)puVar1 >> 8),cVar5); + *piVar8 = *piVar8 + iVar11 + (uint)((byte)puVar1 < 0xd); + cVar12 = (char)((uint)iVar11 >> 8); + *(char *)((int)unaff_EDI + 2) = *(char *)((int)unaff_EDI + 2) - cVar12; + *unaff_ESI = *unaff_ESI + cVar5; + iVar3 = *unaff_EDI; + puVar2 = (undefined2 *)puStack_4[1]; + *puVar2 = in_SS; + *(undefined2 **)(puVar2 + -2) = puVar2; + pcVar14 = (char *)CONCAT31(uVar15,cVar6 + (char)iVar3 + (char)*unaff_EDI); + puVar1 = *(uint **)(puVar2 + -2); + uVar7 = *puVar1; + uRam54060002 = uVar7; + *(undefined2 *)puVar1 = in_ES; + puVar9 = (undefined4 *)(uVar7 ^ 0x6060003); + pcVar14[(int)puVar9] = pcVar14[(int)puVar9] - cVar12; + cVar6 = (char)puVar9; + *unaff_ESI = *unaff_ESI + cVar6; + iVar3 = -*unaff_EDI; + pcVar14[0x28060000] = pcVar14[0x28060000] - cVar6; + *puVar9 = *puVar9; + *(undefined2 *)((int)puVar1 + iVar3 + -4) = in_ES; + uVar16 = *(undefined2 *)((int)puVar1 + iVar3 + -4); + cVar5 = (char)((uint)unaff_EBX >> 8); + *pcVar13 = *pcVar13 - cVar5; + *unaff_ESI = *unaff_ESI + cVar6; + *(undefined2 *)((int)puVar1 + iVar3 + -4) = uVar16; + *pcVar14 = *pcVar14 - cVar5; + *unaff_ESI = *unaff_ESI + cVar6; + pcVar14[0x7f060000] = pcVar14[0x7f060000] - (cVar6 + -0xf); + uRam00000028 = uRam00000028 | 0x28; + *pcVar13 = *pcVar13 + (char)iVar11; + /* WARNING: Bad instruction - Truncating control flow here */ + halt_baddata(); +} + + +``` + +## Initialize at 10010444 + +Signature: `ulonglong __fastcall Initialize(uint * param_1, char * param_2)` + +```c + +/* WARNING: Instruction at (ram,0x10010d01) overlaps instruction at (ram,0x10010d00) + */ +/* WARNING: Unable to track spacebase fully for stack */ + +ulonglong __fastcall Initialize(uint *param_1,char *param_2) + +{ + code *pcVar1; + undefined2 uVar2; + char cVar3; + byte bVar4; + byte bVar5; + char cVar6; + char cVar7; + char cVar8; + byte bVar9; + char *in_EAX; + undefined3 uVar24; + char *pcVar10; + byte *pbVar11; + uint *puVar12; + uint *puVar13; + uint *puVar14; + uint *puVar15; + uint uVar16; + uint uVar17; + uint *puVar18; + byte *pbVar19; + int iVar20; + int iVar21; + uint uVar22; + int *piVar23; + uint *extraout_ECX; + char *pcVar25; + byte bVar26; + byte *pbVar27; + byte *pbVar28; + int *piVar29; + char *pcVar30; + byte *pbVar31; + undefined1 *puVar32; + uint *unaff_EBX; + int *piVar33; + int iVar34; + int *piVar35; + undefined2 *puVar36; + undefined2 *puVar37; + ushort *puVar38; + uint *unaff_EBP; + int *piVar39; + int *piVar40; + byte *unaff_ESI; + ushort in_ES; + undefined2 uVar41; + undefined2 uVar42; + undefined2 in_CS; + undefined2 in_SS; + ushort in_DS; + bool bVar43; + bool bVar44; + byte in_AF; + bool bVar45; + byte in_TF; + byte in_IF; + bool bVar46; + byte in_NT; + byte in_AC; + byte in_VIF; + byte in_VIP; + byte in_ID; + uint uVar47; + unkbyte10 in_ST1; + unkbyte10 extraout_ST1; + undefined8 uVar49; + ulonglong uVar50; + int *piStack_98; + byte *pbStack_94; + undefined4 uStack_90; + undefined1 *puStack_8c; + int *piStack_88; + int *piStack_84; + uint *puStack_80; + undefined4 uStack_7c; + uint uStack_78; + byte *pbStack_74; + uint *puStack_5c; + uint *puStack_58; + uint *puStack_3c; + uint *in_stack_ffffffc8; + uint *puStack_24; + uint *puStack_20; + uint *puStack_4; + uint *puVar48; + + /* .NET CLR Managed Code */ + bVar44 = false; + puStack_4 = (uint *)CONCAT22(puStack_4._2_2_,in_SS); + *in_EAX = *in_EAX + (char)in_EAX; + puVar15 = puStack_4; + do { + puStack_4 = puVar15; + puVar18 = (uint *)(CONCAT31((int3)((uint)in_EAX >> 8),(char)in_EAX + '\x17') + -0x4a7e33); +code_r0x10010452: + puVar15 = puVar18; + *(byte *)((int)puStack_4 + (int)param_2) = + *(byte *)((int)puStack_4 + (int)param_2) + (char)puVar15; + *param_2 = *param_2; + puVar18 = puRam28040000; + puStack_20 = puStack_4; +code_r0x10010463: + cVar7 = (char)puVar18; + *unaff_ESI = *unaff_ESI + cVar7; + *unaff_ESI = *unaff_ESI + 1; + *unaff_ESI = *unaff_ESI + cVar7; + *param_2 = *param_2 - (char)((uint)param_2 >> 8); + cVar3 = cVar7 + (byte)*puVar18; + pcVar30 = (char *)CONCAT31((int3)((uint)puVar18 >> 8),cVar3); + puStack_24 = (uint *)CONCAT22(puStack_24._2_2_,in_ES); + cVar8 = (char)unaff_EBX; + pcVar10 = param_2; + if (cVar3 == '\0' || SCARRY1(cVar7,(byte)*puVar18) != cVar3 < '\0') { + pcVar10 = param_2 + (int)unaff_EBX; + bVar43 = SCARRY1(*pcVar10,cVar3); + *pcVar10 = *pcVar10 + cVar3; + cVar7 = *pcVar10; + pbVar27 = unaff_ESI; + puVar12 = puStack_4; + goto code_r0x100104c3; + } + while( true ) { + cVar7 = (char)pcVar30; + *pcVar30 = *pcVar30 + cVar7; + uVar24 = (undefined3)((uint)pcVar30 >> 8); + bVar4 = cVar7 + 0x1f; + pcVar30 = (char *)CONCAT31(uVar24,bVar4); + *(byte *)(puStack_4 + -0x20) = (byte)puStack_4[-0x20] + 1; + param_2 = pcVar10 + -1; + *pcVar30 = *pcVar30 + bVar4; + bVar43 = 0x23 < bVar4; + puVar18 = (uint *)CONCAT31(uVar24,cVar7 + -5); + if ((char)(cVar7 + -5) != '\0' && '#' < (char)bVar4) { + bVar4 = (byte)(char *)((int)puVar18 + *puVar18); + bVar5 = bVar4 + 0x13; + pcVar30 = (char *)CONCAT31((int3)((int)puVar18 + *puVar18 >> 8),bVar5); + puStack_4 = (uint *)((int)puStack_4 + + (uint)(0xec < bVar4) + *(int *)((int)puStack_4 + -0x5f)); + *pcVar30 = *pcVar30 + bVar5; + bVar43 = 0xe5 < bVar5; + param_2 = pcVar10 + -2; + puVar18 = puStack_24; + } + pcVar10 = (char *)((int)puVar18 + bVar43 + 0xa17f5a33); + *pcVar10 = *pcVar10 + (char)pcVar10; + in_EAX = (char *)(CONCAT31((int3)((uint)pcVar10 >> 8),(char)pcVar10 + 'J') + -0xa17f13); + cVar7 = (char)in_EAX; + in_EAX[(int)unaff_EBP] = in_EAX[(int)unaff_EBP] + cVar7; + bVar4 = *unaff_ESI; + *unaff_ESI = *unaff_ESI + cVar7; + if (*unaff_ESI != 0 && SCARRY1(bVar4,cVar7) == (char)*unaff_ESI < '\0') break; + *in_EAX = *in_EAX + cVar7; + puVar18 = (uint *)CONCAT31((int3)((uint)in_EAX >> 8),cVar7 + 'J'); + while( true ) { + cVar7 = (char)puVar18; + uVar24 = (undefined3)((uint)puVar18 >> 8); + bVar4 = cVar7 - 0x27; + puVar18 = (uint *)CONCAT31(uVar24,bVar4); + if (bVar4 != 0 && '&' < cVar7) goto code_r0x10010452; + *(byte *)puVar18 = (byte)*puVar18 + bVar4; + cVar3 = cVar7 + -7; + pcVar10 = (char *)CONCAT31(uVar24,cVar3); + puStack_20 = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar4,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar3 < '\0') * 0x80 | (uint)(cVar3 == '\0') * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(cVar3) & 1U) == 0) * 4 | + (uint)(0xdf < bVar4) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000); + *pcVar10 = *pcVar10 + cVar3; + pcVar10[0x4a] = pcVar10[0x4a] + cVar8; + cVar6 = cVar7 + -0x20; + puVar18 = (uint *)CONCAT31(uVar24,cVar6); + if (cVar6 != '\0' && '\x18' < cVar3) { + *(byte *)unaff_EBP = (byte)*unaff_EBP - (char)((uint)param_2 >> 8); + goto code_r0x10010463; + } + *(byte *)puVar18 = (byte)*puVar18 + cVar6; + bVar43 = SCARRY1(cVar6,'\x1a'); + cVar7 = cVar7 + -6; + pbVar27 = unaff_ESI; + puVar12 = puStack_4; +code_r0x100104c3: + puVar18 = puStack_20; + unaff_ESI = pbVar27; + puStack_4 = puVar12; + if (cVar7 != '\0' && bVar43 == cVar7 < '\0') { + puStack_20 = (uint *)CONCAT22(puStack_20._2_2_,in_ES); + goto code_r0x10010463; + } + bVar4 = (byte)puStack_20; + *(byte *)puStack_20 = (byte)*puStack_20 + bVar4; + bVar5 = bVar4 + 0x20; + pcVar30 = (char *)CONCAT31((int3)((uint)puStack_20 >> 8),bVar5); + uVar47 = (uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar4,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)((char)bVar5 < '\0') * 0x80 | (uint)(bVar5 == 0) * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(bVar5) & 1U) == 0) * 4 | + (uint)(0xdf < bVar4); + puVar48 = (uint *)(uVar47 | (uint)(in_ID & 1) * 0x200000 | (uint)(in_VIP & 1) * 0x100000 | + (uint)(in_VIF & 1) * 0x80000 | (uint)(in_AC & 1) * 0x40000); + *pcVar30 = *pcVar30 + bVar5; + pcVar30[0x4a] = pcVar30[0x4a] + cVar8; + iVar20 = iRam26110000; + iRam26110000 = iRam26110000 - (int)param_1; + if (iRam26110000 != 0 && (int)param_1 <= iVar20) break; + *pcVar30 = *pcVar30 + bVar5; + pbVar11 = (byte *)((int)puVar48 + (0xe5 < bVar5) + 0xa03b); + *(byte *)((int)puVar12 + -0x5f) = + *(byte *)((int)puVar12 + -0x5f) + (char)((uint)unaff_EBX >> 8); + cVar7 = (char)pbVar11; + *pbVar11 = *pbVar11 + cVar7; + uVar24 = (undefined3)((uint)pbVar11 >> 8); + piVar39 = (int *)CONCAT31(uVar24,cVar7 + '('); + *piVar39 = *piVar39 + -0x5e80fa00; + *(char *)piVar39 = (char)*piVar39 + cVar7 + '('; + pcVar30 = (char *)CONCAT31(uVar24,cVar7 + 'H'); + puStack_4 = (uint *)((int)puVar12 + 1); + unaff_ESI = pbVar27 + 1; + *(byte *)puVar12 = *pbVar27; + *pcVar30 = *pcVar30 + cVar7 + 'H'; + pcVar30[0x4a] = pcVar30[0x4a] + cVar8; + pcVar10 = (char *)unaff_EBP[0x1fc00000]; + param_2 = param_2 + -2; + uVar47 = *unaff_EBX; + uVar22 = *unaff_EBX; + *unaff_EBX = (uint)(param_2 + uVar22 + (pcVar10 < pcVar30)); + puVar18 = puStack_24; + if (*unaff_EBX == 0 || + (SCARRY4(uVar47,(int)param_2) != + SCARRY4((int)(param_2 + uVar22),(uint)(pcVar10 < pcVar30))) != (int)*unaff_EBX < 0) { + *(char *)puStack_24 = (char)*puStack_24 + (char)in_ES; + pbVar11 = (byte *)CONCAT31((int3)((uint)puStack_24 >> 8),(char)in_ES + ' '); + puVar15 = (uint *)(pbVar27 + 2); + *(byte *)puStack_4 = *unaff_ESI; + puVar18 = (uint *)((int)puVar12 + 2); + goto code_r0x10010511; + } + } + puStack_20._0_2_ = (ushort)uVar47; + pcVar10 = param_2; + in_DS = (ushort)puStack_20; + } + } while( true ); + while( true ) { + *(char *)puVar12 = (char)*puVar12 + (char)puVar12; + puStack_3c = puStack_20; + puVar48 = (uint *)(CONCAT31((int3)((uint)puVar12 >> 8),(char)puVar12 + '\x17') + -0x4a7e33); + *(byte *)((int)puStack_20 + (int)pbVar27) = + *(byte *)((int)puStack_20 + (int)pbVar27) + (char)puVar48; + *pbVar27 = *pbVar27; + puVar12 = puRam28040000; + cVar7 = (char)puRam28040000; + *(byte *)puVar15 = (byte)*puVar15 + cVar7; + *(byte *)puVar15 = (byte)*puVar15 + 1; + *(byte *)puVar15 = (byte)*puVar15 + cVar7; + *pbVar27 = *pbVar27 - (char)((uint)pbVar27 >> 8); + uVar24 = (undefined3)((uint)puVar12 >> 8); + cVar3 = cVar7 + (byte)*puVar12; + puVar13 = (uint *)CONCAT31(uVar24,cVar3); + puVar18 = puStack_20; + in_stack_ffffffc8 = puVar15; + puStack_24 = param_1; + if (cVar3 == '\0' || SCARRY1(cVar7,(byte)*puVar12) != cVar3 < '\0') goto code_r0x100105ae; + *(byte *)puVar13 = (byte)*puVar13 + cVar3; + cVar7 = cVar3 + '\x1f'; + *(byte *)(puStack_20 + -0x20) = (byte)puStack_20[-0x20] + 1; + param_2 = (char *)(iVar20 + -2); + *(char *)CONCAT31(uVar24,cVar7) = *(char *)CONCAT31(uVar24,cVar7) + cVar7; + cVar8 = cVar3 + -5; + pbVar11 = (byte *)CONCAT31(uVar24,cVar8); + if (cVar8 == '\0' || cVar7 < '$') break; +code_r0x10010511: + puStack_20 = puVar48; + bVar5 = (byte)pbVar11; + *pbVar11 = *pbVar11 + bVar5; + pbVar11[0x4a] = pbVar11[0x4a] + (char)unaff_EBX; + *unaff_EBX = *unaff_EBX - (int)param_1; + bVar4 = *pbVar11; + *pbVar11 = *pbVar11 + bVar5; + bVar43 = CARRY4(*unaff_EBX,(uint)param_2) || + CARRY4((uint)(param_2 + *unaff_EBX),(uint)CARRY1(bVar4,bVar5)); + *unaff_EBX = (uint)(param_2 + *unaff_EBX + CARRY1(bVar4,bVar5)); + bVar4 = (byte)param_2 + (byte)*param_1; + iVar20 = CONCAT31((int3)((uint)param_2 >> 8),bVar4 + bVar43); + piVar39 = (int *)CONCAT22((short)((uint)param_1 >> 0x10), + CONCAT11((char)((uint)param_1 >> 8) + (byte)*unaff_EBX + + (CARRY1((byte)param_2,(byte)*param_1) || CARRY1(bVar4,bVar43) + ),(char)param_1)); + puStack_20 = (uint *)CONCAT22(puStack_20._2_2_,in_DS); + bVar43 = CARRY4((uint)unaff_EBX,*puVar18); + unaff_EBX = (uint *)((int)unaff_EBX + *puVar18); + pbVar27 = (byte *)(iVar20 + -1); + uVar47 = CONCAT31((int3)((uint)pbVar11 >> 8),bVar5 + 0x58 + bVar43) ^ 0x134a0306; + *unaff_EBX = *unaff_EBX | (uint)unaff_EBP; + puVar12 = (uint *)(uVar47 + *unaff_EBX); + uVar47 = (uint)CARRY4(uVar47,*unaff_EBX); + param_1 = (uint *)((int)piVar39 + *piVar39 + uVar47); + if (param_1 == (uint *)0x0 || + (SCARRY4((int)piVar39,*piVar39) != SCARRY4((int)piVar39 + *piVar39,uVar47)) != + (int)param_1 < 0) goto code_r0x1001057e; + } + *pbVar11 = *pbVar11 + cVar8; + pcVar10 = (char *)(CONCAT31(uVar24,cVar3 + 'y') | 0x7f040003); + pbVar27 = (byte *)((int)pcVar10 >> 0x1f); + puVar12 = (uint *)CONCAT31((int3)((uint)pcVar10 >> 8),(char)pcVar10 + *pcVar10 + '\x11'); + puStack_20 = puVar48; +code_r0x1001057e: + *puVar12 = *puVar12 | (uint)unaff_EBP; + in_DS = (ushort)puStack_20; + puRam030a0000 = puVar12; + *(char *)((int)puVar12 + 0x4a) = *(char *)((int)puVar12 + 0x4a) + (char)unaff_EBX; + puStack_20 = (uint *)CONCAT22(puStack_20._2_2_,in_SS); + pcVar10 = (char *)((uint)puVar12 ^ 0x4aedd05); + cVar7 = *pcVar10; + cVar3 = (char)pcVar10; + *pcVar10 = *pcVar10 + cVar3; + if (*pcVar10 == '\0' || SCARRY1(cVar7,cVar3) != *pcVar10 < '\0') { + unaff_EBX = (uint *)((uint)unaff_EBX ^ *(uint *)(pbVar27 + 0x7f)); + iVar20 = iRam4a040000; + goto code_r0x100105e5; + } + *pcVar10 = *pcVar10 + cVar3; + do { + pcVar10 = (char *)((byte)((char)pcVar10 + 0x17) - 0x4a7e33); + puVar18 = puStack_20; +code_r0x1001059d: + *(byte *)((int)puVar18 + (int)pbVar27) = *(byte *)((int)puVar18 + (int)pbVar27) + (char)pcVar10; + *pbVar27 = *pbVar27; + puVar13 = puRam28040000; + puStack_3c = puVar15; + in_stack_ffffffc8 = unaff_EBP; + puStack_24 = puVar18; + puVar48 = puStack_20; +code_r0x100105ae: + puStack_20 = puVar48; + cVar7 = (char)puVar13; + *(byte *)puVar15 = (byte)*puVar15 + cVar7; + *(byte *)puVar15 = (byte)*puVar15 + 1; + *(byte *)puVar15 = (byte)*puVar15 + cVar7; + *pbVar27 = *pbVar27 - (char)((uint)pbVar27 >> 8); + cVar3 = cVar7 + (byte)*puVar13; + pcVar10 = (char *)CONCAT31((int3)((uint)puVar13 >> 8),cVar3); + puStack_24 = (uint *)CONCAT22(puStack_24._2_2_,in_ES); + pbVar11 = pbVar27; + puVar12 = puVar15; + puVar48 = puVar18; + if (cVar3 == '\0' || SCARRY1(cVar7,(byte)*puVar13) != cVar3 < '\0') { + pbVar11 = pbVar27 + (int)unaff_EBX; + bVar43 = SCARRY1(*pbVar11,cVar3); + *pbVar11 = *pbVar11 + cVar3; + bVar4 = *pbVar11; + goto code_r0x1001060e; + } + while( true ) { + cVar7 = (char)pcVar10; + *pcVar10 = *pcVar10 + cVar7; + uVar24 = (undefined3)((uint)pcVar10 >> 8); + bVar4 = cVar7 + 0x1f; + pcVar10 = (char *)CONCAT31(uVar24,bVar4); + *(byte *)(puVar48 + -0x20) = (byte)puVar48[-0x20] + 1; + pbVar27 = pbVar11 + -1; + *pcVar10 = *pcVar10 + bVar4; + bVar43 = 0x23 < bVar4; + puVar15 = (uint *)CONCAT31(uVar24,cVar7 + -5); + if ((char)(cVar7 + -5) != '\0' && '#' < (char)bVar4) { + bVar4 = (byte)(byte *)((int)puVar15 + *puVar15); + bVar5 = bVar4 + 0x13; + pcVar10 = (char *)CONCAT31((int3)((int)puVar15 + *puVar15 >> 8),bVar5); + *(byte **)((int)puVar48 + -0x5f) = + (byte *)((int)puVar48 + (uint)(0xec < bVar4) + *(int *)((int)puVar48 + -0x5f)); + *pcVar10 = *pcVar10 + bVar5; + bVar43 = 0xe5 < bVar5; + pbVar27 = pbVar11 + -2; + puVar15 = puStack_20; + } + pbVar11 = (byte *)((int)puVar15 + bVar43 + 0xa17f5a33); + *pbVar11 = *pbVar11 + (char)pbVar11; + iVar20 = CONCAT31((int3)((uint)pbVar11 >> 8),(char)pbVar11 + 'J'); + puVar15 = puVar12; + puVar18 = puVar48; +code_r0x100105e5: + pcVar10 = (char *)(iVar20 + -0xa17f13); + cVar7 = (char)pcVar10; + pcVar10[(int)unaff_EBP] = pcVar10[(int)unaff_EBP] + cVar7; + uVar47 = *puVar15; + *(byte *)puVar15 = (byte)*puVar15 + cVar7; + if ((byte)*puVar15 != 0 && SCARRY1((byte)uVar47,cVar7) == (char)(byte)*puVar15 < '\0') break; + *pcVar10 = *pcVar10 + cVar7; + puVar14 = (uint *)CONCAT31((int3)((uint)pcVar10 >> 8),cVar7 + 'J'); + while( true ) { + cVar7 = (char)puVar14; + uVar24 = (undefined3)((uint)puVar14 >> 8); + bVar4 = cVar7 - 0x27; + pcVar10 = (char *)CONCAT31(uVar24,bVar4); + if (bVar4 != 0 && '&' < cVar7) goto code_r0x1001059d; + *pcVar10 = *pcVar10 + bVar4; + cVar3 = cVar7 + -7; + pcVar10 = (char *)CONCAT31(uVar24,cVar3); + puStack_24 = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar4,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar3 < '\0') * 0x80 | (uint)(cVar3 == '\0') * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(cVar3) & 1U) == 0) * 4 | + (uint)(0xdf < bVar4) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000); + *pcVar10 = *pcVar10 + cVar3; + pcVar10[0x4a] = pcVar10[0x4a] + (char)unaff_EBX; + cVar8 = cVar7 + -0x20; + puVar13 = (uint *)CONCAT31(uVar24,cVar8); + if (cVar8 != '\0' && '\x18' < cVar3) { + *(byte *)unaff_EBP = (byte)*unaff_EBP - (char)((uint)pbVar27 >> 8); + puVar48 = puStack_20; + goto code_r0x100105ae; + } + *(byte *)puVar13 = (byte)*puVar13 + cVar8; + bVar43 = SCARRY1(cVar8,'\x1a'); + bVar4 = cVar7 - 6; + puVar12 = puVar15; + puVar48 = puVar18; +code_r0x1001060e: + puVar14 = puStack_20; + puVar13 = puStack_24; + if (bVar4 != 0 && bVar43 == (char)bVar4 < '\0') { + puStack_24 = (uint *)((uint)puStack_24 & 0xffff0000); + puVar15 = puVar12; + puVar18 = puVar48; + puVar48 = puStack_20; + goto code_r0x100105ae; + } + bVar4 = (byte)puStack_24; + *(byte *)puStack_24 = (byte)*puStack_24 + bVar4; + bVar5 = bVar4 + 0x20; + pcVar10 = (char *)CONCAT31((int3)((uint)puStack_24 >> 8),bVar5); + uVar47 = (uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar4,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)((char)bVar5 < '\0') * 0x80 | (uint)(bVar5 == 0) * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(bVar5) & 1U) == 0) * 4 | + (uint)(0xdf < bVar4); + puStack_24 = (uint *)(uVar47 | (uint)(in_ID & 1) * 0x200000 | (uint)(in_VIP & 1) * 0x100000 + | (uint)(in_VIF & 1) * 0x80000 | (uint)(in_AC & 1) * 0x40000); + *pcVar10 = *pcVar10 + bVar5; + pcVar10[0x4a] = pcVar10[0x4a] + (char)unaff_EBX; + iVar20 = iRam26110000; + iRam26110000 = iRam26110000 - (int)param_1; + if (iRam26110000 != 0 && (int)param_1 <= iVar20) break; + *pcVar10 = *pcVar10 + bVar5; + pbVar11 = (byte *)((int)puStack_24 + (0xe5 < bVar5) + 0xa03b); + *(byte *)((int)puVar48 + -0x5f) = + *(byte *)((int)puVar48 + -0x5f) + (char)((uint)unaff_EBX >> 8); + cVar7 = (char)pbVar11; + *pbVar11 = *pbVar11 + cVar7; + uVar24 = (undefined3)((uint)pbVar11 >> 8); + piVar39 = (int *)CONCAT31(uVar24,cVar7 + '('); + *piVar39 = *piVar39 + -0x5e80fa00; + *(char *)piVar39 = (char)*piVar39 + cVar7 + '('; + pcVar30 = (char *)CONCAT31(uVar24,cVar7 + 'H'); + puVar18 = (uint *)((int)puVar48 + 1); + puVar15 = (uint *)((int)puVar12 + 1); + *(byte *)puVar48 = (byte)*puVar12; + *pcVar30 = *pcVar30 + cVar7 + 'H'; + pcVar30[0x4a] = pcVar30[0x4a] + (char)unaff_EBX; + pcVar10 = (char *)unaff_EBP[0x1fc00000]; + pbVar27 = pbVar27 + -2; + uVar47 = *param_1; + uVar22 = *param_1; + *param_1 = (uint)(pbVar27 + uVar22 + (pcVar10 < pcVar30)); + puStack_20 = (uint *)CONCAT22(puStack_20._2_2_,in_SS); + if (*param_1 == 0 || + (SCARRY4(uVar47,(int)pbVar27) != + SCARRY4((int)(pbVar27 + uVar22),(uint)(pcVar10 < pcVar30))) != (int)*param_1 < 0) { + *(byte *)puVar14 = (byte)*puVar14 + (char)puVar14; + pbVar11 = (byte *)CONCAT31((int3)((uint)puVar14 >> 8),(char)puVar14 + ' '); + puVar48 = (uint *)((int)puVar48 + 2); + puVar12 = (uint *)((int)puVar12 + 2); + *(byte *)puVar18 = *(byte *)puVar15; + do { + bVar5 = (byte)pbVar11; + *pbVar11 = *pbVar11 + bVar5; + pbVar11[0x4a] = pbVar11[0x4a] + (char)unaff_EBX; + *unaff_EBX = *unaff_EBX - (int)param_1; + bVar4 = *pbVar11; + *pbVar11 = *pbVar11 + bVar5; + bVar43 = CARRY4(*unaff_EBX,(uint)pbVar27) || + CARRY4((uint)(pbVar27 + *unaff_EBX),(uint)CARRY1(bVar4,bVar5)); + *unaff_EBX = (uint)(pbVar27 + *unaff_EBX + CARRY1(bVar4,bVar5)); + uVar47 = *param_1; + bVar4 = (byte)*param_1 + (byte)pbVar27; + *(byte *)param_1 = bVar4 + bVar43; + bVar9 = (byte)((uint)param_1 >> 8); + *(byte *)unaff_EBX = + (byte)*unaff_EBX + bVar9 + + (CARRY1((byte)uVar47,(byte)pbVar27) || CARRY1(bVar4,bVar43)); + puStack_24 = (uint *)CONCAT22(puStack_24._2_2_,in_DS); + bVar43 = CARRY4((uint)unaff_EBX,*puVar48); + unaff_EBX = (uint *)((int)unaff_EBX + *puVar48); + pbVar27 = pbVar27 + -1; + uVar47 = CONCAT31((int3)((uint)pbVar11 >> 8),bVar5 + 0x58 + bVar43) ^ 0x134a0306; + *(byte *)unaff_EBX = (byte)*unaff_EBX | bVar9; + pbVar11 = (byte *)(uVar47 + *unaff_EBX); + uVar47 = (uint)CARRY4(uVar47,*unaff_EBX); + bVar43 = SCARRY4((int)param_1,*(int *)pbVar11); + pbVar19 = (byte *)((int)param_1 + *(int *)pbVar11); + param_1 = (uint *)(pbVar19 + uVar47); + if (param_1 == (uint *)0x0 || + (bVar43 != SCARRY4((int)pbVar19,uVar47)) != (int)param_1 < 0) { + *pbVar11 = *pbVar11 | (byte)((uint)param_1 >> 8); + puVar15 = in_stack_ffffffc8; + goto code_r0x100106bb; + } + *pbVar11 = *pbVar11 + (char)pbVar11; + puVar15 = (uint *)(CONCAT31((int3)((uint)pbVar11 >> 8),(char)pbVar11 + '\x17') + + -0x4a7e33); + *(byte *)((int)puStack_24 + (int)pbVar27) = + *(byte *)((int)puStack_24 + (int)pbVar27) + (char)puVar15; + *pbVar27 = *pbVar27; + puVar18 = puRam28040000; + puVar48 = puStack_24; + puStack_3c = puVar12; + in_stack_ffffffc8 = unaff_EBP; + puStack_24 = puVar15; + while( true ) { + cVar7 = (char)puVar18; + *(byte *)puVar12 = (byte)*puVar12 + cVar7; + *(byte *)puVar12 = (byte)*puVar12 + 1; + *(byte *)puVar12 = (byte)*puVar12 + cVar7; + *pbVar27 = *pbVar27 - (char)((uint)pbVar27 >> 8); + uVar24 = (undefined3)((uint)puVar18 >> 8); + cVar3 = cVar7 + (byte)*puVar18; + if (cVar3 == '\0' || SCARRY1(cVar7,(byte)*puVar18) != cVar3 < '\0') + goto code_r0x100106f7; + *(char *)CONCAT31(uVar24,cVar3) = *(char *)CONCAT31(uVar24,cVar3) + cVar3; + cVar7 = cVar3 + '\x1f'; + *(byte *)(puVar48 + -0x20) = (byte)puVar48[-0x20] + 1; + pbVar27 = pbVar27 + -1; + *(char *)CONCAT31(uVar24,cVar7) = *(char *)CONCAT31(uVar24,cVar7) + cVar7; + pbVar11 = (byte *)CONCAT31(uVar24,cVar3 + -5); + puVar15 = in_stack_ffffffc8; + if ((char)(cVar3 + -5) != '\0' && '#' < cVar7) break; +code_r0x100106bb: + *pbVar11 = *pbVar11 + (char)pbVar11; + bVar4 = 0; + in_CS = 0x2808; + uVar49 = func_0x11040002(); + puRam030a0000 = (uint *)uVar49; + param_1 = extraout_ECX; + in_DS = (ushort)puStack_3c; + in_ST1 = extraout_ST1; +code_r0x100106d1: + bVar5 = (byte)uVar49 + 0x58; + uVar16 = CONCAT31((int3)((ulonglong)uVar49 >> 8),bVar5 + bVar4); + uVar47 = (uint)(0xa7 < (byte)uVar49 || CARRY1(bVar5,bVar4)); + uVar22 = uVar16 + *puVar48; + uVar17 = uVar22 + uVar47; + puStack_3c = (uint *)CONCAT22(puStack_3c._2_2_,in_DS); + *puVar48 = *puVar48 + uVar17 + + (uint)(CARRY4(uVar16,*puVar48) || CARRY4(uVar22,uVar47)); + pbVar27 = (byte *)((int)((ulonglong)uVar49 >> 0x20) + -1); + puVar18 = (uint *)(uVar17 ^ 0x2b4a0304); + uVar47 = *unaff_EBX; + *unaff_EBX = (uint)(*unaff_EBX + (int)puVar18); + in_stack_ffffffc8 = puVar15; + if (CARRY4(uVar47,(uint)puVar18)) { +code_r0x100106e2: + *(byte *)puVar18 = (byte)*puVar18 + (char)puVar18; + pbVar27 = (byte *)CONCAT31((int3)((uint)pbVar27 >> 8), + (byte)pbVar27 | (byte)*unaff_EBX); + *(int *)pbVar27 = (int)in_ST1; + *(byte *)((int)puVar48 + (int)pbVar27) = + *(byte *)((int)puVar48 + (int)pbVar27) + (char)puVar18; + puVar18 = (uint *)((int)puVar18 + -0x4a7e33); + puVar48 = puStack_3c; +code_r0x100106f3: + *(byte *)((int)puVar48 + (int)pbVar27) = + *(byte *)((int)puVar48 + (int)pbVar27) + (char)puVar18; + puStack_58 = puVar48; + puStack_3c = puVar18; +code_r0x100106f7: + *pbVar27 = *pbVar27; + puVar15 = puRam28040000; +code_r0x10010704: + cVar7 = (char)puVar15; + *(byte *)puVar12 = (byte)*puVar12 + cVar7; + *(byte *)puVar12 = (byte)*puVar12 + 1; + *(byte *)puVar12 = (byte)*puVar12 + cVar7; + *pbVar27 = *pbVar27 - (char)((uint)pbVar27 >> 8); + cVar3 = cVar7 + (byte)*puVar15; + pcVar10 = (char *)CONCAT31((int3)((uint)puVar15 >> 8),cVar3); + puStack_5c = (uint *)CONCAT22(puStack_5c._2_2_,in_ES); + cVar8 = (char)param_1; + bVar4 = (byte)unaff_EBX; + pbVar11 = pbVar27; + if (cVar3 == '\0' || SCARRY1(cVar7,(byte)*puVar15) != cVar3 < '\0') { + pbVar27 = pbVar27 + (int)unaff_EBX; + bVar43 = SCARRY1(*pbVar27,cVar3); + *pbVar27 = *pbVar27 + cVar3; + bVar5 = *pbVar27; + puVar13 = puVar12; + puVar14 = puVar48; + goto code_r0x10010764; + } +code_r0x10010717: + cVar7 = (char)pcVar10; + *pcVar10 = *pcVar10 + cVar7; + uVar24 = (undefined3)((uint)pcVar10 >> 8); + bVar5 = cVar7 + 0x1f; + pcVar10 = (char *)CONCAT31(uVar24,bVar5); + *(byte *)(puVar48 + -0x20) = (byte)puVar48[-0x20] + 1; + pbVar27 = pbVar11 + -1; + *pcVar10 = *pcVar10 + bVar5; + bVar43 = 0x23 < bVar5; + puVar15 = (uint *)CONCAT31(uVar24,cVar7 + -5); + if ((char)(cVar7 + -5) != '\0' && '#' < (char)bVar5) { + cVar7 = (char)(byte *)((int)puVar15 + *puVar15); + bVar5 = cVar7 + 0x13; + pcVar10 = (char *)CONCAT31((int3)((int)puVar15 + *puVar15 >> 8),bVar5); + uVar49 = CONCAT44(pbVar27,pcVar10); + puVar15 = (uint *)CONCAT22((short)((uint)in_stack_ffffffc8 >> 0x10),in_CS); + if (bVar5 != 0 && -0x14 < cVar7) { + *pbVar27 = *pbVar27 + cVar8; + bVar4 = CARRY4((uint)unaff_EBX,*puVar48); + unaff_EBX = (uint *)((int)unaff_EBX + *puVar48); + goto code_r0x100106d1; + } + *pcVar10 = *pcVar10 + bVar5; + bVar43 = 0xe5 < bVar5; + pbVar27 = pbVar11 + -2; + in_stack_ffffffc8 = puVar15; + } + pbVar11 = (byte *)((int)puVar15 + bVar43 + 0xa17f5c33); + *pbVar11 = *pbVar11 + (char)pbVar11; + pcVar10 = (char *)(CONCAT31((int3)((uint)pbVar11 >> 8),(char)pbVar11 + 'J') + + -0xa17f13); + cVar7 = (char)pcVar10; + pcVar10[(int)unaff_EBP] = pcVar10[(int)unaff_EBP] + cVar7; + bVar46 = SCARRY1((byte)*puVar12,cVar7); + *(byte *)puVar12 = (byte)*puVar12 + cVar7; + bVar45 = (char)(byte)*puVar12 < '\0'; + bVar43 = (byte)*puVar12 == 0; + while( true ) { + cVar7 = (char)pcVar10; + uVar24 = (undefined3)((uint)pcVar10 >> 8); + if (!bVar43 && bVar46 == bVar45) break; + *pcVar10 = *pcVar10 + cVar7; + puVar18 = (uint *)CONCAT31(uVar24,cVar7 + '#'); + if ((char)(cVar7 + '#') != '\0' && '&' < (char)(cVar7 + 'J')) + goto code_r0x100106f3; + while( true ) { + bVar5 = (byte)puVar18; + *(byte *)puVar18 = (byte)*puVar18 + bVar5; + uVar24 = (undefined3)((uint)puVar18 >> 8); + cVar7 = bVar5 + 0x20; + pcVar10 = (char *)CONCAT31(uVar24,cVar7); + puStack_58 = (uint *)((uint)(in_NT & 1) * 0x4000 | + (uint)SCARRY1(bVar5,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar7 < '\0') * 0x80 | (uint)(cVar7 == '\0') * 0x40 + | (uint)(in_AF & 1) * 0x10 | + (uint)((POPCOUNT(cVar7) & 1U) == 0) * 4 | + (uint)(0xdf < bVar5) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | + (uint)(in_VIF & 1) * 0x80000 | (uint)(in_AC & 1) * 0x40000 + ); + *pcVar10 = *pcVar10 + cVar7; + pcVar10[0x4a] = pcVar10[0x4a] + bVar4; + cVar3 = bVar5 + 7; + puVar15 = (uint *)CONCAT31(uVar24,cVar3); + if (cVar3 != '\0' && '\x18' < cVar7) { + *(byte *)unaff_EBP = (byte)*unaff_EBP - (char)((uint)pbVar27 >> 8); + goto code_r0x10010704; + } + *(byte *)puVar15 = (byte)*puVar15 + cVar3; + bVar43 = SCARRY1(cVar3,'\x1a'); + bVar5 = bVar5 + 0x21; + pbVar11 = pbVar27; + puVar13 = puVar12; + puVar14 = puVar48; +code_r0x10010764: + puVar15 = puStack_58; + puVar12 = puVar13; + puVar48 = puVar14; + if (bVar5 != 0 && bVar43 == (char)bVar5 < '\0') { + puStack_58 = (uint *)CONCAT22(puStack_58._2_2_,in_ES); + pbVar27 = pbVar11; + goto code_r0x10010704; + } + bVar5 = (byte)puStack_58; + *(byte *)puStack_58 = (byte)*puStack_58 + bVar5; + bVar9 = bVar5 + 0x20; + pcVar10 = (char *)CONCAT31((int3)((uint)puStack_58 >> 8),bVar9); + uVar47 = (uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar5,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)((char)bVar9 < '\0') * 0x80 | (uint)(bVar9 == 0) * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(bVar9) & 1U) == 0) * 4 | + (uint)(0xdf < bVar5); + puVar15 = (uint *)(uVar47 | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 + | (uint)(in_AC & 1) * 0x40000); + *pcVar10 = *pcVar10 + bVar9; + pcVar10[0x4a] = pcVar10[0x4a] + bVar4; + iVar20 = iRam26110000; + iRam26110000 = iRam26110000 - (int)param_1; + if (iRam26110000 != 0 && (int)param_1 <= iVar20) { + puStack_58._0_2_ = (ushort)uVar47; + in_DS = (ushort)puStack_58; + puStack_58 = puVar15; + goto code_r0x10010717; + } + *pcVar10 = *pcVar10 + bVar9; + pbVar27 = pbVar11 + -1; + pbVar19 = (byte *)((int)puVar15 + (0xe5 < bVar9) + 0xa2dd0533); + cVar7 = (char)pbVar19; + *pbVar19 = *pbVar19 + cVar7; + cVar3 = (char)((uint)unaff_EBX >> 8); + *(byte *)((int)puVar14 + -0x5f) = *(byte *)((int)puVar14 + -0x5f) + cVar3; + *pbVar19 = *pbVar19 + cVar7; + uVar24 = (undefined3)((uint)pbVar19 >> 8); + piVar39 = (int *)CONCAT31(uVar24,cVar7 + '('); + *piVar39 = *piVar39 + -0x5e80fa00; + *(char *)piVar39 = (char)*piVar39 + cVar7 + '('; + pcVar10 = (char *)CONCAT31(uVar24,cVar7 + 'H'); + puVar48 = (uint *)((int)puVar14 + 1); + puVar12 = (uint *)((int)puVar13 + 1); + *(byte *)puVar14 = (byte)*puVar13; + *pcVar10 = *pcVar10 + cVar7 + 'H'; + pcVar10[0x4a] = pcVar10[0x4a] + bVar4; + pcVar10 = pcVar10 + -0x85dd05; + bVar5 = (byte)pcVar10; + bVar46 = SCARRY1(*pcVar10,bVar5); + *pcVar10 = *pcVar10 + bVar5; + bVar45 = *pcVar10 < '\0'; + bVar43 = *pcVar10 == '\0'; + if (!bVar43 && bVar46 == bVar45) break; + *pcVar10 = *pcVar10 + bVar5; + pbVar27 = pbVar11 + -2; + uVar47 = *puVar12; + uVar22 = *puVar12; + *puVar12 = (uint)((byte *)(uVar22 + (int)param_1) + (0xe5 < bVar5)); + puVar18 = puStack_5c; + if (*puVar12 == 0 || + (SCARRY4(uVar47,(int)param_1) != + SCARRY4((int)(uVar22 + (int)param_1),(uint)(0xe5 < bVar5))) != + (int)*puVar12 < 0) { + *(byte *)puStack_5c = (byte)*puStack_5c + (char)in_ES; + pbVar19 = (byte *)CONCAT31((int3)((uint)puStack_5c >> 8),(char)in_ES + ' '); + pbVar11 = (byte *)((int)puVar13 + 2); + *(byte *)puVar48 = *(byte *)puVar12; + puVar15 = (uint *)((int)puVar14 + 2); + goto code_r0x100107b6; + } + } + } + puVar18 = (uint *)CONCAT31(uVar24,cVar7 + '\x17'); + goto code_r0x100106e2; + } + } + } while( true ); + } + } + puStack_24._0_2_ = (ushort)uVar47; + pbVar11 = pbVar27; + in_DS = (ushort)puStack_24; + } + } while( true ); + while( true ) { + *pcVar10 = *pcVar10 + (char)pcVar10; + puVar18 = (uint *)(CONCAT31((int3)((uint)pcVar10 >> 8),(char)pcVar10 + '\x17') + -0x4a7e33); + *(byte *)((int)puStack_5c + (int)pbVar27) = + *(byte *)((int)puStack_5c + (int)pbVar27) + (char)puVar18; + pbStack_74 = pbVar11; + *pbVar27 = *pbVar27; + puVar15 = puRam28040000; + cVar7 = (char)puRam28040000; + *pbVar11 = *pbVar11 + cVar7; + *pbVar11 = *pbVar11 + 1; + *pbVar11 = *pbVar11 + cVar7; + *pbVar27 = *pbVar27 - (char)((uint)pbVar27 >> 8); + uVar24 = (undefined3)((uint)puVar15 >> 8); + bVar5 = cVar7 + (byte)*puVar15; + pcVar10 = (char *)CONCAT31(uVar24,bVar5); + if (bVar5 == 0 || SCARRY1(cVar7,(byte)*puVar15) != (char)bVar5 < '\0') { + pbVar19 = (byte *)((int)unaff_EBX * 8 + 0x97); + bVar9 = *pbVar19; + *pbVar19 = *pbVar19 + bVar5; + pbVar19 = (byte *)((int)param_1 + *(uint *)((int)pbVar27 * 2)); + bVar44 = CARRY4((uint)param_1,*(uint *)((int)pbVar27 * 2)) || + CARRY4((uint)pbVar19,(uint)CARRY1(bVar9,bVar5)); + pbVar19 = pbVar19 + CARRY1(bVar9,bVar5); + goto code_r0x1001085b; + } + *pcVar10 = *pcVar10 + bVar5; + cVar7 = bVar5 + 0x1f; + *(byte *)(puStack_5c + -0x20) = (byte)puStack_5c[-0x20] + 1; + pbVar27 = pbVar27 + -1; + *(char *)CONCAT31(uVar24,cVar7) = *(char *)CONCAT31(uVar24,cVar7) + cVar7; + cVar6 = bVar5 - 5; + pbVar19 = (byte *)CONCAT31(uVar24,cVar6); + puVar15 = puStack_5c; + if (cVar6 == '\0' || cVar7 < '$') break; +code_r0x100107b6: + puStack_5c = puVar18; + bVar9 = (byte)pbVar19; + *pbVar19 = *pbVar19 + bVar9; + pbVar19[0x4a] = pbVar19[0x4a] + bVar4; + *unaff_EBX = *unaff_EBX - (int)param_1; + bVar5 = *pbVar19; + *pbVar19 = *pbVar19 + bVar9; + *unaff_EBX = (uint)(pbVar27 + (uint)CARRY1(bVar5,bVar9) + *unaff_EBX); + *puVar15 = *puVar15 + ((uint)pbVar19 | 0x22d0d11); + pbVar28 = pbVar27 + -1; + pcVar10 = (char *)((((uint)pbVar19 | 0x22d0d11) ^ 0x134a0306) - *unaff_EBX); + pbVar27 = pbVar28 + *unaff_EBX; + puStack_5c = (uint *)CONCAT22(puStack_5c._2_2_,in_ES); + if (pbVar27 == (byte *)0x0 || SCARRY4((int)pbVar28,*unaff_EBX) != (int)pbVar27 < 0) + goto code_r0x10010823; + } + *pbVar19 = *pbVar19 + cVar6; + pcVar10 = (char *)(CONCAT31(uVar24,bVar5 + 0x79) | 0x7f040003); + pcVar10 = (char *)CONCAT31((int3)((uint)pcVar10 >> 8),(char)pcVar10 + *pcVar10 + '\x11'); +code_r0x10010823: + puVar18 = unaff_EBX + 0x28000; + uVar47 = *puVar18; + bVar5 = (byte)((uint)pcVar10 >> 8); + *(byte *)puVar18 = (byte)*puVar18 - bVar5; + *puVar15 = (uint)((int)param_1 + (uint)((byte)uVar47 < bVar5) + *puVar15); + pbVar19 = (byte *)CONCAT22((short)((uint)param_1 >> 0x10), + CONCAT11((char)((uint)param_1 >> 8) - cVar8,cVar8)); + pbVar28 = pbVar11; + if ((char)((char)pcVar10 + *pcVar10 | *pbVar27) < '\0') { + pbVar28 = (byte *)((int)puVar13 + 6); + out(*(undefined4 *)pbVar11,(short)pbVar27); + *(byte *)((int)puVar15 + (int)pbVar27) = *(byte *)((int)puVar15 + (int)pbVar27); + piVar39 = (int *)((uint)unaff_EBP | *unaff_EBX); + bVar5 = *pbVar28; + bVar9 = (byte)pbVar27; + uVar24 = (undefined3)((uint)pbVar27 >> 8); + cVar7 = bVar9 + *pbVar28; + pbVar27 = (byte *)CONCAT31(uVar24,cVar7); + if (SCARRY1(bVar9,*pbVar28) == cVar7 < '\0') { + iVar20 = piVar39[0x1f418000]; + if (iRam28060000 < 1) { + in_DS = in_ES; + } + iVar21 = iRam28060000 + 0x28060000; + cVar6 = (char)iVar21; + *(byte *)unaff_EBX = (byte)*unaff_EBX - cVar3; + *pbVar28 = *pbVar28 + cVar6 + '\x16'; + uVar47 = *puVar15; + uVar22 = CONCAT31((int3)((uint)iVar21 >> 8),cVar6 + '1' + CARRY4((uint)unaff_EBX,*puVar15)) ^ + 0x134a0306; + iVar21 = uVar22 + 0x32171549; + pcVar10 = (char *)(CONCAT31(uVar24,cVar7 + (char)iVar20 + CARRY1(bVar9,bVar5)) + -2); + iVar20 = (CONCAT31((int3)((uint)iVar21 >> 8), + (char)iVar21 + 'X' + (0xe0ebede1 < uVar22 + 0x1303032b)) ^ 0x4a141207) + + *(int *)((byte *)((int)unaff_EBX + uVar47) + (int)piVar39); + bVar4 = (byte)iVar20; + puVar18 = (uint *)CONCAT31((int3)((uint)iVar20 >> 8),bVar4 + (0xed < bVar4) + 'M'); + *puVar18 = *puVar18; + if ((int)*puVar18 < 1) { + *puVar18 = *puVar18 << 1 | (uint)((int)*puVar18 < 0); + *pcVar10 = *pcVar10 + cVar8; + pbStack_74 = (byte *)CONCAT22(pbStack_74._2_2_,in_SS); + } + bVar4 = (byte)((int)puVar18 + *puVar18); + uVar24 = (undefined3)((int)puVar18 + *puVar18 >> 8); + cVar7 = bVar4 + 0x7f; + uStack_78 = (uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar4,'\x7f') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar7 < '\0') * 0x80 | (uint)(cVar7 == '\0') * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(cVar7) & 1U) == 0) * 4 | + (uint)(0x80 < bVar4) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000; + iVar20 = CONCAT31(uVar24,cVar7 + *(char *)CONCAT31(uVar24,cVar7) + '\"') + 0xd128; + uVar24 = (undefined3)((uint)pcVar10 >> 8); + bVar9 = (byte)pcVar10 | *pbVar28; + piVar33 = (int *)((int)unaff_EBX + uVar47 | (uint)pbVar28); + uStack_7c = (uint *)CONCAT22(uStack_7c._2_2_,in_CS); + *pbVar28 = *pbVar28 + 1; + pbVar27 = (byte *)0x12060000; + bVar4 = (byte)iVar20; + bVar5 = ((bVar4 + 0x28) - *(char *)CONCAT31(uVar24,bVar9)) - (0xd7 < bVar4); + bVar43 = CARRY1(bRam12060000,bVar5); + bRam12060000 = bRam12060000 + bVar5; + bVar4 = bVar9 + *(byte *)((int)puVar15 + (int)piVar33); + iVar21 = CONCAT31(uVar24,bVar4 + bVar43); + piVar29 = (int *)(iVar21 + -1); + puVar18 = (uint *)(CONCAT31((int3)((uint)iVar20 >> 8), + bVar5 + 0x58 + + (CARRY1(bVar9,*(byte *)((int)puVar15 + (int)piVar33)) || + CARRY1(bVar4,bVar43))) ^ 0x4a141208); + pcVar10 = (char *)(iVar21 + 1); + *pcVar10 = *pcVar10 - (char)((uint)piVar33 >> 8); + cVar7 = (char)puVar18; + bVar43 = SCARRY1(bRam12060000,cVar7); + bRam12060000 = bRam12060000 + cVar7; + if (bRam12060000 == '\0' || bVar43 != (char)bRam12060000 < '\0') { + bVar43 = false; + piVar33 = (int *)((uint)piVar33 ^ *(uint *)((int)puVar15 * 3 + -0x5f)); + goto code_r0x1001093a; + } + *(byte *)puVar18 = (byte)*puVar18 + cVar7; + do { + puVar12 = (uint *)((byte)((char)puVar18 + 0x17) - 0x4a7e33); + puVar15 = uStack_7c; +code_r0x100108fb: + *(byte *)((int)puVar15 + (int)piVar29) = + *(byte *)((int)puVar15 + (int)piVar29) + (char)puVar12; + *(char *)piVar29 = (char)*piVar29; + puVar18 = puRam28040000; + puStack_80 = puVar15; +code_r0x1001090c: + cVar7 = (char)puVar18; + *pbVar27 = *pbVar27 + cVar7; + *pbVar27 = *pbVar27 + 1; + *pbVar27 = *pbVar27 + cVar7; + *(char *)piVar29 = (char)*piVar29 - (char)((uint)piVar29 >> 8); + cVar3 = cVar7 + (byte)*puVar18; + pcVar10 = (char *)CONCAT31((int3)((uint)puVar18 >> 8),cVar3); + puStack_80 = (uint *)CONCAT22(puStack_80._2_2_,in_ES); + piVar23 = piVar29; + pbVar11 = pbVar27; + if (cVar3 == '\0' || SCARRY1(cVar7,(byte)*puVar18) != cVar3 < '\0') { + pcVar10 = (char *)((int)piVar29 + (int)piVar33); + bVar43 = SCARRY1(*pcVar10,cVar3); + *pcVar10 = *pcVar10 + cVar3; + cVar7 = *pcVar10; + puVar48 = puVar15; + goto code_r0x1001096c; + } +code_r0x1001091f: + cVar7 = (char)pcVar10; + *pcVar10 = *pcVar10 + cVar7; + uVar24 = (undefined3)((uint)pcVar10 >> 8); + bVar4 = cVar7 + 0x1f; + pcVar10 = (char *)CONCAT31(uVar24,bVar4); + *(byte *)(puVar15 + -0x20) = (byte)puVar15[-0x20] + 1; + piVar29 = (int *)((int)piVar23 + -1); + *pcVar10 = *pcVar10 + bVar4; + bVar43 = 0x23 < bVar4; + puVar18 = (uint *)CONCAT31(uVar24,cVar7 + -5); + pbVar27 = pbVar11; + if ((char)(cVar7 + -5) != '\0' && '#' < (char)bVar4) { + bVar4 = (char)(byte *)((int)puVar18 + *puVar18) + 0x13; + pcVar10 = (char *)CONCAT31((int3)((int)puVar18 + *puVar18 >> 8),bVar4); + puVar15 = (uint *)((uint)puVar15 | *(uint *)((int)puVar15 + -0x5f)); + *pcVar10 = *pcVar10 + bVar4; + bVar43 = 0xe5 < bVar4; + piVar29 = (int *)((int)piVar23 + -2); + puVar18 = uStack_7c; + } +code_r0x1001093a: + pbVar11 = (byte *)((int)puVar18 + bVar43 + 0xa17f5c33); + *pbVar11 = *pbVar11 + (char)pbVar11; + puVar18 = (uint *)(CONCAT31((int3)((uint)pbVar11 >> 8),(char)pbVar11 + 'J') + -0xa17f13); + cVar7 = (char)puVar18; + *(byte *)((int)puVar18 + (int)piVar39) = *(byte *)((int)puVar18 + (int)piVar39) + cVar7; + bVar46 = SCARRY1(*pbVar27,cVar7); + *pbVar27 = *pbVar27 + cVar7; + bVar45 = (char)*pbVar27 < '\0'; + bVar43 = *pbVar27 == 0; + while (bVar43 || bVar46 != bVar45) { + cVar7 = (char)puVar18; + *(byte *)puVar18 = (byte)*puVar18 + cVar7; + puVar12 = (uint *)CONCAT31((int3)((uint)puVar18 >> 8),cVar7 + '#'); + if ((char)(cVar7 + '#') != '\0' && '&' < (char)(cVar7 + 'J')) goto code_r0x100108fb; + while( true ) { + bVar4 = (byte)puVar12; + *(byte *)puVar12 = (byte)*puVar12 + bVar4; + uVar24 = (undefined3)((uint)puVar12 >> 8); + cVar7 = bVar4 + 0x20; + pcVar10 = (char *)CONCAT31(uVar24,cVar7); + puStack_80 = (uint *)((uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar4,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)(cVar7 < '\0') * 0x80 | (uint)(cVar7 == '\0') * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(cVar7) & 1U) == 0) * 4 + | (uint)(0xdf < bVar4) | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000); + *pcVar10 = *pcVar10 + cVar7; + pcVar10[0x4a] = pcVar10[0x4a] + (char)piVar33; + cVar3 = bVar4 + 7; + puVar18 = (uint *)CONCAT31(uVar24,cVar3); + if (cVar3 != '\0' && '\x18' < cVar7) { + *(char *)piVar39 = (char)*piVar39 - (char)((uint)piVar29 >> 8); + goto code_r0x1001090c; + } + *(byte *)puVar18 = (byte)*puVar18 + cVar3; + bVar43 = SCARRY1(cVar3,'\x1a'); + cVar7 = bVar4 + 0x21; + piVar23 = piVar29; + pbVar11 = pbVar27; + puVar48 = puVar15; +code_r0x1001096c: + puVar12 = uStack_7c; + puVar18 = puStack_80; + puVar15 = puVar48; + if (cVar7 != '\0' && bVar43 == cVar7 < '\0') { + puStack_80 = (uint *)((uint)puStack_80 & 0xffff0000); + piVar29 = piVar23; + pbVar27 = pbVar11; + goto code_r0x1001090c; + } + bVar4 = (byte)puStack_80; + *(byte *)puStack_80 = (byte)*puStack_80 + bVar4; + bVar5 = bVar4 + 0x20; + pcVar10 = (char *)CONCAT31((int3)((uint)puStack_80 >> 8),bVar5); + uVar47 = (uint)(in_NT & 1) * 0x4000 | (uint)SCARRY1(bVar4,' ') * 0x800 | + (uint)(in_IF & 1) * 0x200 | (uint)(in_TF & 1) * 0x100 | + (uint)((char)bVar5 < '\0') * 0x80 | (uint)(bVar5 == 0) * 0x40 | + (uint)(in_AF & 1) * 0x10 | (uint)((POPCOUNT(bVar5) & 1U) == 0) * 4 | + (uint)(0xdf < bVar4); + *pcVar10 = *pcVar10 + bVar5; + pcVar10[0x4a] = pcVar10[0x4a] + (char)piVar33; + iVar20 = iRam26110000; + iRam26110000 = iRam26110000 - (int)pbVar19; + if (iRam26110000 != 0 && (int)pbVar19 <= iVar20) { + puStack_80._0_2_ = (ushort)uVar47; + in_DS = (ushort)puStack_80; + goto code_r0x1001091f; + } + *pcVar10 = *pcVar10 + bVar5; + piVar29 = (int *)((int)piVar23 + -1); + pcVar10 = (char *)((uVar47 | (uint)(in_ID & 1) * 0x200000 | + (uint)(in_VIP & 1) * 0x100000 | (uint)(in_VIF & 1) * 0x80000 | + (uint)(in_AC & 1) * 0x40000) + 0xb0dd0533 + (uint)(0xe5 < bVar5)); + cVar7 = (char)pcVar10; + *pcVar10 = *pcVar10 + cVar7; + *(byte *)((int)puVar48 + -0x5f) = + *(byte *)((int)puVar48 + -0x5f) + (char)((uint)piVar33 >> 8); + *pcVar10 = *pcVar10 + cVar7; + uVar24 = (undefined3)((uint)pcVar10 >> 8); + piVar40 = (int *)CONCAT31(uVar24,cVar7 + '('); + *piVar40 = *piVar40 + -0x5e80fa00; + *(char *)piVar40 = (char)*piVar40 + cVar7 + '('; + pcVar10 = (char *)CONCAT31(uVar24,cVar7 + 'H'); + puVar15 = (uint *)((int)puVar48 + 1); + pbVar27 = pbVar11 + 1; + *(byte *)puVar48 = *pbVar11; + *pcVar10 = *pcVar10 + cVar7 + 'H'; + pcVar10[0x4a] = pcVar10[0x4a] + (char)piVar33; + puVar18 = (uint *)(pcVar10 + -0x93dd05); + bVar4 = (byte)puVar18; + bVar46 = SCARRY1((byte)*puVar18,bVar4); + *(byte *)puVar18 = (byte)*puVar18 + bVar4; + bVar45 = (char)(byte)*puVar18 < '\0'; + bVar43 = (byte)*puVar18 == 0; + if (!bVar43 && bVar46 == bVar45) break; + *(byte *)puVar18 = (byte)*puVar18 + bVar4; + piVar29 = (int *)((int)piVar23 + -2); + iVar20 = *piVar33; + iVar21 = *piVar33; + *piVar33 = (int)(pbVar19 + iVar21 + (0xe5 < bVar4)); + uStack_7c = (uint *)CONCAT22(uStack_7c._2_2_,in_SS); + if (*piVar33 == 0 || + (SCARRY4(iVar20,(int)pbVar19) != + SCARRY4((int)(pbVar19 + iVar21),(uint)(0xe5 < bVar4))) != *piVar33 < 0) { + *(byte *)puVar12 = (byte)*puVar12 + (char)puVar12; + pbVar31 = (byte *)CONCAT31((int3)((uint)puVar12 >> 8),(char)puVar12 + ' '); + pbVar28 = pbVar11 + 2; + *(byte *)puVar15 = *pbVar27; + puVar15 = (uint *)((int)puVar48 + 2); + goto code_r0x100109be; + } + } + } + } while( true ); + } + } + *(byte *)puVar15 = (byte)*puVar15 + (char)puVar15; + *(byte *)unaff_EBX = (byte)*unaff_EBX + (char)pbVar27; + bVar44 = false; + pcVar10 = (char *)((uint)puVar15 | 0x12); + pbVar11 = pbVar28; +code_r0x1001085b: + bVar5 = (byte)pcVar10 + 0x1f; + bVar43 = 0xe0 < (byte)pcVar10 || CARRY1(bVar5,bVar44); + bVar5 = bVar5 + bVar44; + bVar9 = bVar5 + 0x58; + uVar16 = CONCAT31((int3)((uint)pcVar10 >> 8),bVar9 + bVar43); + uVar47 = (uint)(0xa7 < bVar5 || CARRY1(bVar9,bVar43)); + uVar22 = uVar16 + 0xe0ebedac; + bVar44 = uVar16 < 0x1f141254 || uVar22 < uVar47; + iVar20 = uVar22 - uVar47; + pbVar28 = (byte *)(iVar20 + 0x16); + bVar9 = *pbVar28; + bVar5 = *pbVar28; + *pbVar28 = bVar5 + bVar4 + bVar44; + return CONCAT44(CONCAT31((int3)((uint)pbVar27 >> 8), + (char)pbVar27 + pbVar11[(int)pbVar27] + + (CARRY1(bVar9,bVar4) || CARRY1(bVar5 + bVar4,bVar44)) + *pbVar19),iVar20) + | 0x6f; + while( true ) { + *(char *)piVar23 = (char)*piVar23 + cVar3; + cVar7 = cVar3 + '\x1f'; + *(byte *)(puVar12 + -0x20) = (byte)puVar12[-0x20] + 1; + piVar29 = (int *)(iVar21 + -2); + *(char *)CONCAT31(uVar24,cVar7) = *(char *)CONCAT31(uVar24,cVar7) + cVar7; + cVar8 = cVar3 + -5; + pbVar31 = (byte *)CONCAT31(uVar24,cVar8); + puVar15 = puVar12; + if (cVar8 == '\0' || cVar7 < '$') break; +code_r0x100109be: + puVar12 = uStack_7c; + bVar5 = (byte)pbVar31; + *pbVar31 = *pbVar31 + bVar5; + pbVar31[0x4a] = pbVar31[0x4a] + (char)piVar33; + *piVar33 = *piVar33 - (int)pbVar19; + bVar4 = *pbVar31; + *pbVar31 = *pbVar31 + bVar5; + *piVar33 = (int)((int)piVar29 + (uint)CARRY1(bVar4,bVar5) + *piVar33); + iVar21 = CONCAT31((int3)((uint)piVar29 >> 8),(byte)piVar29 | *pbVar19); + bVar43 = CARRY4((uint)piVar33,*puVar15); + piVar33 = (int *)((int)piVar33 + *puVar15); + piVar29 = (int *)(iVar21 + -1); + iVar20 = (CONCAT31((int3)((uint)pbVar31 >> 8),bVar5 + 0x58 + bVar43) ^ 0xd4a0305) - *piVar29; + pbVar19 = (byte *)(CONCAT22((short)((uint)pbVar19 >> 0x10), + CONCAT11((byte)((uint)pbVar19 >> 8) | bRam1e6fde02,(char)pbVar19)) + + iRam00004a7e); + iVar20 = CONCAT31((int3)((uint)iVar20 >> 8),(char)iVar20 + '\x17') + -0x4a7e33; + *(byte *)((int)uStack_7c + (int)piVar29) = + *(byte *)((int)uStack_7c + (int)piVar29) + (char)iVar20; + puStack_80 = (uint *)pbVar19; + piStack_84 = piVar29; + piStack_88 = piVar33; + puStack_8c = (undefined1 *)&uStack_78; + uStack_90 = piVar39; + *(char *)piVar29 = *(char *)piVar29; + puVar18 = puRam28040000; + cVar7 = (char)puRam28040000; + *pbVar28 = *pbVar28 + cVar7; + *pbVar28 = *pbVar28 + 1; + *pbVar28 = *pbVar28 + cVar7; + *(char *)piVar29 = *(char *)piVar29 - (char)((uint)piVar29 >> 8); + uVar24 = (undefined3)((uint)puVar18 >> 8); + cVar3 = cVar7 + (byte)*puVar18; + piVar23 = (int *)CONCAT31(uVar24,cVar3); + uStack_7c._2_2_ = (undefined2)((uint)iVar20 >> 0x10); + uStack_7c = (uint *)CONCAT22(uStack_7c._2_2_,in_ES); + bVar4 = (byte)piVar33; + piVar40 = piVar39; + pbStack_94 = pbVar28; + if (cVar3 == '\0' || SCARRY1(cVar7,(byte)*puVar18) != cVar3 < '\0') goto code_r0x10010a59; + } + *pbVar31 = *pbVar31 + cVar8; + pcVar10 = (char *)(CONCAT31(uVar24,cVar3 + 'y') | 0x7f040003); + bVar44 = (in_ES & 0x400) != 0; + in_AF = (in_ES & 0x10) != 0; + cVar7 = *pcVar10; + *(char *)(piVar33 + -0x87d8000) = (char)piVar33[-0x87d8000] - (char)((uint)puVar18 >> 8); + puVar15 = (uint *)(CONCAT31((int3)((uint)pcVar10 >> 8),(char)pcVar10 + cVar7 + '\t') | 0xbe06fe); + *pbVar28 = *pbVar28 + (char)puVar15; + piVar40 = (int *)((int)piVar39 + *puVar15); + bVar9 = ((char)puVar15 - *(char *)piVar29) - CARRY4((uint)piVar39,*puVar15); + bVar5 = *pbVar28; + *pbVar28 = *pbVar28 + bVar9; + piStack_98._0_2_ = (ushort)puVar12; + *(byte *)(iVar21 + 0x33) = *(byte *)(iVar21 + 0x33) | (byte)pbVar19; + pbVar19 = pbVar19 + *(int *)(iVar21 + 0x26); + if ((POPCOUNT((uint)pbVar19 & 0xff) & 1U) != 0) { + *pbVar28 = *pbVar28 + (bVar9 + 0x58 + CARRY1(bVar5,bVar9) | 0x1e); + } + bRam101f0354 = bRam101f0354 | bVar4; + pbStack_94 = (byte *)&uStack_90; + uStack_90 = (int *)CONCAT22((short)((uint)piVar39 >> 0x10),in_SS); + piVar23 = piVar39; + in_DS = (ushort)piStack_98; +code_r0x10010a59: + pcVar30 = (char *)((int)piVar29 + *(int *)pbVar28); + piStack_98._0_2_ = (ushort)piVar33; + uVar42 = (ushort)piStack_98; + uVar24 = (undefined3)((uint)piVar23 >> 8); + cVar7 = (char)piVar23 - (char)*piVar23; + piVar39 = (int *)CONCAT31(uVar24,cVar7); + pbVar19[0xc] = pbVar19[0xc] + cVar7; + *piVar39 = *piVar39 + (int)piVar39; + pcVar10 = (char *)CONCAT31(uVar24,cVar7); + *pcVar10 = *pcVar10 + cVar7; + uVar2 = pbStack_94._0_2_; + *pcVar10 = *pcVar10 + cVar7; + *pbVar19 = *pbVar19 + bVar4; + *pcVar10 = *pcVar10 + cVar7; + *pcVar10 = *pcVar10 + (char)((uint)pcVar30 >> 8); + *pcVar10 = *pcVar10 + cVar7; + cVar3 = (char)pbVar19; + *pbVar28 = *pbVar28 + cVar3; + *pcVar10 = *pcVar10 + cVar7; + bVar26 = (byte)pcVar30; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pbVar19 = *pbVar19 + cVar7; + pcVar10 = (char *)CONCAT31(uVar24,cVar7); + *pcVar10 = *pcVar10 + cVar7; + pbVar27 = (byte *)(pcVar10 + *(int *)pbVar19); + bVar5 = *pbVar27; + bVar9 = (byte)pbVar27; + *pbVar27 = *pbVar27 + bVar9; + *(uint *)pbVar27 = (*(int *)pbVar27 - (int)pbVar27) - (uint)CARRY1(bVar5,bVar9); + bVar5 = *pbVar27; + *pbVar27 = *pbVar27 + bVar9; + uVar24 = (undefined3)((uint)pbVar27 >> 8); + bVar9 = (bVar9 - 1) - CARRY1(bVar5,bVar9); + pcVar10 = (char *)CONCAT31(uVar24,bVar9); + *pcVar10 = *pcVar10 + bVar9; + pbStack_94 = (byte *)CONCAT22(pbStack_94._2_2_,in_CS); + *pcVar10 = *pcVar10 + bVar9; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pbVar19 = *pbVar19 + bVar9; + pbVar31 = (byte *)CONCAT31(uVar24,bVar9); + *pbVar31 = *pbVar31 + bVar9; + bVar5 = *pbVar31; + *pbVar31 = *pbVar31 + bVar9; + *(uint *)pbVar31 = (*(int *)pbVar31 - (int)pbVar31) - (uint)CARRY1(bVar5,bVar9); + *pbVar31 = *pbVar31 + bVar9; + if ((POPCOUNT(*pbVar31) & 1U) == 0) { + *pbVar31 = *pbVar31 + bVar9; + piStack_98 = (int *)((uint)piVar33 & 0xffff0000); + } + else { + *pbVar28 = *pbVar28 + cVar3; + piStack_98 = piVar33; + } + *pbVar31 = *pbVar31 + bVar9; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pbVar19 = *pbVar19 + bVar9; + pcVar10 = (char *)CONCAT31(uVar24,bVar9); + *pcVar10 = *pcVar10 + bVar9; + pbVar28 = pbVar11 + 1; + cVar7 = bVar9 + *pcVar10; + pcVar10 = (char *)CONCAT31(uVar24,cVar7); + *pbVar19 = *pbVar19 + bVar4; + *pcVar10 = *pcVar10 + cVar7; + *(byte *)((int)puVar12 + 2) = *(byte *)((int)puVar12 + 2) + (char)((uint)pbVar27 >> 8); + *pcVar10 = *pcVar10 + cVar7; + piStack_98 = (int *)CONCAT22(piStack_98._2_2_,in_CS); + *pcVar10 = *pcVar10 + cVar7; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pbVar19 = *pbVar19 + cVar7; + *(char *)CONCAT31(uVar24,cVar7) = *(char *)CONCAT31(uVar24,cVar7) + cVar7; + cVar3 = cVar3 + bVar26; + pcVar25 = (char *)CONCAT31((int3)((uint)pbVar19 >> 8),cVar3); + bVar5 = cRam19000002 + 4; + cRam19000002 = cRam19000002 + '\x02'; + *pbVar28 = *pbVar28 + cVar3; + *(char *)CONCAT31(0x190000,bVar5) = *(char *)CONCAT31(0x190000,bVar5) + bVar5; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pcVar25 = *pcVar25 + bVar5; + pbVar27 = (byte *)CONCAT31(0x190000,bVar5); + *pbVar27 = *pbVar27 + bVar5; + bVar4 = *pbVar27; + *pbVar27 = *pbVar27 + bVar5; + *(uint *)pbVar27 = (*(int *)pbVar27 - (int)pbVar27) - (uint)CARRY1(bVar4,bVar5); + *pbVar27 = *pbVar27 + bVar5; + *piVar33 = *piVar33; + *pbVar28 = *pbVar28 + cVar3; + *pbVar27 = *pbVar27 + bVar5; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pcVar25 = *pcVar25 + bVar5; + pcVar10 = (char *)CONCAT31(0x190000,bVar5); + *pcVar10 = *pcVar10 + bVar5; + *(char *)((int)pcVar10 * 2) = *(char *)((int)pcVar10 * 2) - bVar5; + *pcVar30 = *pcVar30; + *pcVar10 = *pcVar10 + bVar5; + cVar7 = *(char *)((int)pcVar10 * 2); + puVar15 = (uint *)CONCAT31(0x190000,cVar7); + *pbVar28 = *pbVar28 + cVar3; + *(char *)puVar15 = (char)*puVar15 + cVar7; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pcVar25 = *pcVar25 + cVar7; + *(char *)puVar15 = (char)*puVar15 + cVar7; + *(char *)puVar15 = (char)*puVar15 + cVar7; + out(3,cVar7); + *(char *)puVar15 = (char)*puVar15 + cVar7; + *(char *)puVar15 = (char)*puVar15 + cVar7; + *(char *)((int)&piStack_98 + (int)puVar15) = *(char *)((int)&piStack_98 + (int)puVar15) + bVar26; + *(char *)puVar15 = (char)*puVar15 + cVar7; + bVar4 = (byte)puVar12; + *(byte *)puVar12 = (byte)*puVar12 + bVar4; + *pcVar30 = *pcVar30 + bVar4; + *pcVar25 = *pcVar25 + bVar4; + uVar47 = *puVar12; + *(byte *)puVar12 = (byte)*puVar12 + bVar4; + *(undefined1 *)((int)puVar12 * 2) = *(undefined1 *)((int)puVar12 * 2); + *puVar12 = (*puVar12 - (int)puVar12) - (uint)CARRY1((byte)uVar47,bVar4); + *(byte *)puVar12 = (byte)*puVar12 + bVar4; + *pbVar28 = *pbVar28 + cVar3; + *(byte *)puVar12 = (byte)*puVar12 + bVar4; + *(byte *)piVar33 = (char)*piVar33 + bVar26; + *pcVar25 = *pcVar25 + bVar4; + *(byte *)puVar12 = (byte)*puVar12 + bVar4; + pbVar19 = (byte *)CONCAT31((int3)((uint)puVar12 >> 8),5); + bVar4 = *pbVar19; + *pbVar19 = *pbVar19 + 5; + *(uint *)pbVar19 = (*(int *)pbVar19 - (int)pbVar19) - (uint)(0xfa < bVar4); + *pbVar19 = *pbVar19 + 5; + iVar20 = *piVar40; + pbVar27 = pbVar19 + 0xe0000; + cVar7 = (char)pbVar27; + *pbVar27 = *pbVar27 + cVar7; + *piVar40 = (int)piVar33; + *pbVar27 = *pbVar27 + cVar7; + *(int *)((int)pbVar27 * 2) = (int)(pbVar27 + *(int *)((int)pbVar27 * 2)); + *pbVar27 = *pbVar27 + cVar7; + *pbVar27 = *pbVar27 + cVar7; + *pbVar27 = *pbVar27 + cVar7; + out((short)pcVar30,cVar7); + pbVar19 = pbVar19 + 0x5fc0000; + bVar4 = (byte)pbVar19; + *pbVar19 = *pbVar19 + bVar4; + pcVar10 = (char *)((uint)pbVar19 | 0x53000000); + *pcVar10 = *pcVar10 + bVar4; + *piVar33 = (int)(pcVar25 + *piVar33); + bRam0001e600 = bRam0001e600 ^ bVar4; + pbVar27 = (byte *)(iVar20 + 0x14110001); + bVar4 = *pbVar27; + *pbVar27 = *pbVar27 + bVar26; + pcVar25 = pcVar25 + (uint)CARRY1(bVar4,bVar26) + iRam20051314; + pbVar27 = (byte *)(pcVar10 + 0xa800040); + uVar47 = (uint)(CARRY1(bVar26,*pbVar27) || CARRY1(bVar26 + *pbVar27,(char *)0xf57fffbf < pcVar10)) + ; + puVar18 = (uint *)(pcVar25 + *puVar15 + uVar47); + pcVar10 = (char *)CONCAT31((int3)((uint)pcVar30 >> 8), + bVar26 + *pbVar27 + ((char *)0xf57fffbf < pcVar10) + *pbVar27 + + (CARRY4((uint)pcVar25,*puVar15) || + CARRY4((uint)(pcVar25 + *puVar15),uVar47))); + uVar47 = iVar20 + *(int *)pbVar27; + pbVar19 = (byte *)0x13060000; + piVar39 = (int *)((uint)pbVar27 | 2); + *(int *)((int)piVar39 + uVar47) = (int)(*(int *)((int)piVar39 + uVar47) + (int)puVar18); + iRam13060000 = iRam13060000 - (int)piVar39; + cVar7 = (char)piVar39; + *pbVar28 = *pbVar28 + cVar7; + *piVar39 = *piVar39 + (int)piVar39; + *pcVar10 = *pcVar10 + cVar7; + if ((POPCOUNT(*pcVar10) & 1U) == 0) { + bVar4 = cVar7 + 0x39; + pcVar30 = (char *)CONCAT31((int3)((uint)pbVar27 >> 8),bVar4); + *(byte *)puVar18 = (byte)*puVar18 ^ bVar4; + *pcVar30 = *pcVar30 + bVar4; + cRam910c0000 = cRam910c0000 - bVar4; + cVar7 = (char)((uint)pcVar30 | 0x16040003); + *pbVar28 = *pbVar28 + cVar7; + pbVar19 = (byte *)CONCAT22(0x1306,(ushort)bRam13060025 << 8); + piVar39 = (int *)CONCAT31((int3)(((uint)pcVar30 | 0x16040003) >> 8),cVar7 + -0x1e); + } + else { + pcVar10[0x13060000] = pcVar10[0x13060000] + cVar7; + } + pcVar10 = (char *)((uint)pcVar10 | *puVar18); + uVar22 = (uint)puVar18 | *(uint *)(pcVar10 + 0x2d); + puVar15[0x1b] = puVar15[0x1b] | (uint)puVar15; + uVar41 = (undefined2)(uVar22 >> 0x10); + cVar7 = (char)uVar22; + pbVar27 = (byte *)(CONCAT31((int3)((uint)piVar39 >> 8),(char)piVar39 + (char)*piVar39 + '\x13') + + 0x134a0b11); + bVar4 = (byte)(uVar22 >> 8) | *pbVar19 | *pbVar27; + puVar18 = (uint *)CONCAT22(uVar41,CONCAT11(bVar4,cVar7)); + *(int *)pbVar27 = *(int *)pbVar27; + iVar20 = *(int *)pbVar27; + *(undefined2 *)(piVar40 + -1) = uVar42; + if (iVar20 < 1) { + *pcVar10 = *pcVar10 + cVar7; + pbVar19 = (byte *)((uint)CONCAT21((short)((uint)pbVar19 >> 0x10), + (char)((uint)pbVar19 >> 8) + pbVar19[0x1e]) << 8); +code_r0x10010bf0: + pbRam11040002 = (byte *)(CONCAT31((int3)((uint)pbVar27 >> 8),(char)pbVar27 + '\x12') | 0x2b56f); + *(undefined2 *)(piVar40 + -2) = uVar42; + *(int *)pbRam11040002 = *(int *)pbRam11040002; + iVar20 = *(int *)pbRam11040002; + piVar35 = piVar40 + -3; + piVar39 = piVar40 + -3; + *(undefined2 *)(piVar40 + -3) = uVar42; + if (0 < iVar20) goto code_r0x10010c06; + pcVar30 = (char *)((uint)pbRam11040002 & 0x13040004); + } + else { + bVar4 = bVar4 | *pbRam11040002; + puVar18 = (uint *)CONCAT22(uVar41,CONCAT11(bVar4,cVar7)); + pbRam020a0000 = pbRam11040002; + pbVar27 = pbRam11040002; + if ((POPCOUNT(bVar4) & 1U) == 0) goto code_r0x10010bf0; + piVar35 = piVar40 + -2; + *(undefined2 *)(piVar40 + -2) = uVar42; +code_r0x10010c06: + iVar20 = *(int *)pbRam11040002; + cVar7 = (char)(pbRam11040002 + iVar20); + cVar3 = (char)((uint)pbVar19 >> 8); + *pbVar19 = *pbVar19 - cVar3; + *pbVar28 = *pbVar28 + cVar7 + '\x16'; + pbVar19 = (byte *)((uint)CONCAT21((short)((uint)pbVar19 >> 0x10),cVar3 + pbVar19[0x25]) << 8); + pcVar30 = (char *)CONCAT31((int3)((uint)(pbRam11040002 + iVar20) >> 8),cVar7 + -8); + piVar39 = piVar35; + } + *puVar18 = *puVar18 | (uint)pcVar10; + *(uint *)(pcVar10 + 0x2d) = *(uint *)(pcVar10 + 0x2d) | (uint)puVar18; + puVar15[0x1b] = puVar15[0x1b] | (uint)puVar15; + cVar7 = *pcVar30; + bVar5 = (byte)((uint)puVar18 >> 8); + *pbVar19 = *pbVar19 | bVar5; + pbVar27 = (byte *)(CONCAT31((int3)((uint)pcVar30 >> 8),(char)pcVar30 + cVar7 + '\x13') + + 0x134a0911); + *pbVar27 = *pbVar27 | bVar5; + *(undefined4 *)pbVar27 = *(undefined4 *)pbVar27; + iVar20 = *(int *)pbVar27; + puVar36 = (undefined2 *)((int)piVar39 + -4); + *(undefined2 *)((int)piVar39 + -4) = uVar42; + bVar4 = (byte)puVar18; + if (iVar20 < 1) { + *pcVar10 = *pcVar10 + bVar4; + pbVar19[0x7e060000] = pbVar19[0x7e060000] - (char)pbVar27; + uVar22 = (uint)pbVar27 | 0x16040003; +code_r0x10010c4d: + cVar3 = (char)((uint)pbVar19 >> 8); + *pbVar19 = *pbVar19 - cVar3; + cVar7 = (char)uVar22; + *pbVar28 = *pbVar28 + cVar7; + pbVar19 = (byte *)((uint)CONCAT21((short)((uint)pbVar19 >> 0x10),cVar3 + pbVar19[0x25]) << 8); + bVar43 = 0xec < (byte)(cVar7 - 0x37U); + uVar22 = CONCAT31((int3)(uVar22 >> 8),cVar7 + -0x24); + } + else { + pbVar27 = (byte *)CONCAT31((int3)((uint)(pbVar27 + *(int *)pbVar27) >> 8), + (char)(pbVar27 + *(int *)pbVar27) + '\x7f'); + *pbVar27 = *pbVar27 | bVar5; + pbRam280a0000 = pbVar27; + *(undefined4 *)pbVar27 = *(undefined4 *)pbVar27; + iVar20 = *(int *)pbVar27; + puVar36 = (undefined2 *)((int)piVar39 + -8); + *(undefined2 *)((int)piVar39 + -8) = uVar42; + if (0 < iVar20) { + uVar22 = CONCAT31((int3)((uint)(pbVar27 + *(int *)pbVar27) >> 8), + (char)(pbVar27 + *(int *)pbVar27) + '\x16'); + puVar36 = (undefined2 *)((int)piVar39 + -8); + goto code_r0x10010c4d; + } + bVar43 = false; + uVar22 = (uint)pbVar27 & 0x13040004; + } + uVar41 = *puVar36; + *puVar15 = *puVar15 + uVar22 + (uint)bVar43; + pbVar31 = (byte *)(pcVar10 + -1); + pbVar19[(int)pbVar31] = pbVar19[(int)pbVar31] + (char)(uVar22 + 0xfd9380f7); + *puVar36 = uVar41; + uVar22 = (uVar22 + 0xfd9380f7) - iRam134a0711; + puVar36[-2] = uVar41; + pbVar19[0x7e060000] = pbVar19[0x7e060000] - (char)uVar22; + uVar22 = uVar22 | 0x7f040003; + pbRam11040002 = (byte *)uVar22; + puVar36[-4] = uVar41; + bVar5 = pbVar19[0x23]; + uVar42 = (undefined2)((uint)pbVar19 >> 0x10); + bVar9 = (char)uVar22 + 0x28; + puVar12 = (uint *)CONCAT31((int3)(uVar22 >> 8),bVar9); + *puVar12 = *puVar12 << (bVar4 & 0x1f) | *puVar12 >> 0x20 - (bVar4 & 0x1f); + *pbVar31 = *pbVar31 + bVar4; + puVar36[-6] = uVar2; + bVar4 = (char)((uint)pbVar19 >> 8) + bVar5 | (byte)*puVar12; + uVar17 = (uint)CONCAT21(uVar42,bVar4); + iVar20 = uVar17 * 0x100; + uVar22 = *puVar12; + *(byte *)puVar12 = (byte)*puVar12 + bVar9; + uVar22 = (uint)CARRY1((byte)uVar22,bVar9); + bVar43 = CARRY4((uint)pcRam00010a28,(uint)puVar18); + pcVar10 = (char *)((int)pcRam00010a28 + (int)puVar18); + pcRam00010a28 = pcVar10 + uVar22; + puVar36[-8] = uVar41; + uVar16 = (uint)(bVar43 || CARRY4((uint)pcVar10,uVar22)); + uVar22 = *(uint *)(pbVar31 + (int)puVar12); + pbVar27 = (byte *)((int)puVar12 + *(uint *)(pbVar31 + (int)puVar12)); + pbVar19 = pbVar27 + uVar16; + if ((POPCOUNT((uint)pbVar19 & 0xff) & 1U) == 0) { + piVar39 = *(int **)(puVar36 + -8); + *(int *)((int)piVar39 + uVar47) = + (int)piVar39 + (uint)(0xe5 < (byte)pbVar19) + *(int *)((int)piVar39 + uVar47); + *piVar39 = *piVar39 + (int)piVar39; + puVar37 = puVar36 + -8; + puVar36[-8] = uVar41; + bVar5 = (byte)pbVar31; + bVar43 = CARRY1(bVar5,*pbVar28); + pbVar31 = (byte *)CONCAT31((int3)((uint)pbVar31 >> 8),bVar5 + *pbVar28); + puVar38 = puVar36 + -8; + if (SCARRY1(bVar5,*pbVar28) == (char)(bVar5 + *pbVar28) < '\0') goto code_r0x10010cd2; + uVar24 = (undefined3)((uint)piVar39 >> 8); + bVar5 = (char)piVar39 + 2; + if ((POPCOUNT(bVar5) & 1U) != 0) { + bVar43 = 0x23 < bVar5; + piVar39 = (int *)CONCAT31(uVar24,(char)piVar39 + -0x22); + puVar38 = puVar36 + -8; + goto code_r0x10010cd2; + } + } + else { + uVar24 = (undefined3)((uint)pbVar19 >> 8); + puVar36[-10] = in_DS; + bVar5 = (byte)pbVar19 + (CARRY4((uint)puVar12,uVar22) || CARRY4((uint)pbVar27,uVar16)) + 0x9d; + puVar37 = puVar36 + -0xc; + puVar36[-0xc] = uVar41; + } + bVar9 = bVar5 + 5; + pbVar11 = pbVar11 + (uint)bVar44 * -8 + 5; + out(*(undefined4 *)pbVar28,(short)pbVar31); + *pbVar11 = *pbVar11 + bVar9; + pbVar31 = (byte *)CONCAT31((int3)(CONCAT22((short)((uint)pbVar31 >> 0x10), + CONCAT11(2,(char)pbVar31)) >> 8), + (char)pbVar31 + *(char *)((int)puVar15 * 2 + 0x400041e)); + *pbVar11 = *pbVar11 & bVar9; + *(byte *)puVar18 = (char)*puVar18 + bVar9; + *pbVar31 = *pbVar31 | 0xde; + bVar43 = 0xe9 < bVar9; + piVar39 = (int *)CONCAT31(uVar24,bVar5 + 0x1b); + puVar38 = (ushort *)((int)puVar37 + 8); + pbVar28 = pbVar11; +code_r0x10010cd2: + uVar22 = *(uint *)(puVar38 + uVar17 * 0x400); + uVar16 = (int)piVar39 + *(uint *)(puVar38 + uVar17 * 0x400); + uVar17 = uVar16 + bVar43; + puVar38[-2] = uVar2; + puVar12 = (uint *)(iVar20 + uVar47); + uVar22 = (uint)(CARRY4((uint)piVar39,uVar22) || CARRY4(uVar16,(uint)bVar43)); + uVar16 = uVar17 + *puVar12; + iVar21 = uVar16 + uVar22; + bVar9 = (byte)iVar21; + bVar5 = 9 < (bVar9 & 0xf) | in_AF; + bVar9 = bVar9 + bVar5 * -6; + bVar9 = bVar9 + (0x9f < bVar9 | + (CARRY4(uVar17,*puVar12) || CARRY4(uVar16,uVar22)) | bVar5 * (bVar9 < 6)) * -0x60; + bVar5 = (char)pbVar31 + *pbVar28; + pbVar27 = (byte *)CONCAT31((int3)((uint)pbVar31 >> 8),bVar5); + if (SCARRY1((char)pbVar31,*pbVar28) == (char)bVar5 < '\0') { + bVar9 = bVar9 | *pbVar27; + } + pbVar11 = (byte *)((int)puVar18 + (uint)(0xe9 < bVar9) + *(int *)pbVar28); + iVar34 = (uint)CONCAT21(uVar42,bVar4 + *(char *)(iVar20 + 0x1e)) * 0x100; + bVar9 = bVar9 + 0x13; + uVar42 = *puVar38; + pbVar19 = pbVar28 + (uint)bVar44 * -8 + 4; + out(*(undefined4 *)pbVar28,(short)pbVar27); + pbVar27 = (byte *)CONCAT22((short)((uint)pbVar31 >> 0x10),CONCAT11(2,bVar5)); + *pbVar19 = *pbVar19 + bVar9; + bRam0a800040 = bRam0a800040 & bVar9; + iVar20 = CONCAT31((int3)((uint)iVar21 >> 8),bVar9) - *(int *)pbVar19; + bVar4 = (byte)iVar20; + *pbVar19 = *pbVar19 & bVar4; + *pbVar11 = *pbVar11 + bVar4; + *pbVar27 = *pbVar27 | 2; + *puVar38 = in_DS; + *(byte **)(puVar38 + -2) = pbVar11; + puVar18 = (uint *)(CONCAT31((int3)((uint)iVar20 >> 8),bVar4 + 0x5b) + iRamda6f0511 + + (uint)(0x21 < (byte)(bVar4 + 0x7d))); + bVar9 = (byte)puVar18; + *(byte *)puVar18 = (char)*puVar18 + bVar9; + uVar24 = (undefined3)((uint)pbVar27 >> 8); + *(uint **)(puVar38 + -4) = puVar18; + *(byte **)(puVar38 + -6) = pbVar11; + *(uint *)(puVar38 + -8) = CONCAT31(uVar24,bVar5 | bVar9); + *(int *)(puVar38 + -10) = iVar34; + *(ushort **)(puVar38 + -0xc) = puVar38 + -2; + *(uint *)(puVar38 + -0xe) = uVar47; + *(byte **)(puVar38 + -0x10) = pbVar19; + *(uint **)(puVar38 + -0x12) = puVar15; + *(byte *)puVar18 = (char)*puVar18 + bVar9; + uVar22 = *puVar18; + *puVar18 = *puVar18 + uVar47; + pcVar10 = (char *)((int)puVar18 + CARRY4(uVar22,uVar47) + 0x280a0000); + cVar7 = *(char *)(iVar34 + ((uint)pcVar10 & 0xff)); + pcVar10 = (char *)CONCAT31((int3)((uint)pcVar10 >> 8),cVar7); + *pcVar10 = *pcVar10 + cVar7; + bVar4 = *pbVar19; + piVar39 = (int *)((uint)pcVar10 ^ *puVar15); + bRam2b800040 = bRam2b800040 & (byte)piVar39; + *piVar39 = *piVar39 + iVar34; + puVar32 = (undefined1 *)CONCAT31(uVar24,bVar5 | bVar9 | bVar4 | *pbVar11); + iVar20 = (int)piVar39 + 0xc16f; + bVar4 = pbVar11[iVar20]; + cVar7 = (char)iVar20 + -8; + pbVar27 = (byte *)CONCAT31((int3)((uint)iVar20 >> 8),cVar7); + *puVar32 = *puVar32; + *pbVar27 = *pbVar27 + cVar7; + puVar18 = (uint *)CONCAT31((int3)((uint)pbVar11 >> 8),(byte)pbVar11 | bVar4 | *pbVar27); + puVar32[iVar34] = puVar32[iVar34] + ((byte)*(undefined4 *)(puVar38 + -0x12) | 10); + puVar15 = *(uint **)(puVar38 + -0x10); + *puVar15 = *puVar15 | uVar47; + *puVar15 = *puVar15 + (int)puVar15; + puVar38[-0x10] = uVar42; + puVar38[-0x12] = uVar2; + pcVar10 = (char *)((uint)puVar15 | 0xde0d14dc); + *pbVar19 = *pbVar19 + (char)pcVar10; + uVar24 = (undefined3)((uint)pcVar10 >> 8); + cVar7 = (char)pcVar10 - *pcVar10; + pcVar10 = (char *)CONCAT31(uVar24,cVar7); + *(char *)(puVar18 + 0x13) = (char)puVar18[0x13] + cVar7; + *pcVar10 = *pcVar10 + cVar7; + pcVar10 = (char *)CONCAT31(uVar24,cVar7); + *pcVar10 = *pcVar10 + cVar7; + pcVar10 = (char *)((uint)pcVar10 & *puVar18); + cVar7 = (char)pcVar10; + *pcVar10 = *pcVar10 + cVar7; + *pcVar10 = *pcVar10 + cVar7; + *(undefined1 *)((int)puVar18 + 1) = *(undefined1 *)((int)puVar18 + 1); + *pcVar10 = *pcVar10 + cVar7; + *pcVar10 = *pcVar10 + cVar7; + *(int *)(puVar38 + -0x14) = iVar34; + *pcVar10 = *pcVar10 + cVar7; + *(int *)((int)pcVar10 * 2) = (int)(pcVar10 + *(int *)((int)pcVar10 * 2)); + *pcVar10 = *pcVar10 + cVar7; + pcVar1 = (code *)swi(3); + uVar50 = (*pcVar1)(); + return uVar50; +} + + +``` + +## Connect2 at 10010b78 + +Signature: `int __fastcall Connect2(uint nameSpace, undefined4 param_2)` + +```c + +/* WARNING: Instruction at (ram,0x10010d01) overlaps instruction at (ram,0x10010d00) + */ + +int __fastcall Connect2(uint nameSpace,undefined4 param_2) + +{ + uint uVar1; + code *pcVar2; + byte bVar3; + byte bVar4; + byte bVar5; + char cVar6; + undefined4 in_EAX; + uint uVar7; + byte *pbVar8; + char *pcVar9; + undefined3 uVar15; + uint uVar10; + int iVar11; + int iVar12; + uint *puVar13; + int *piVar14; + uint *puVar16; + undefined2 uVar18; + uint *puVar17; + char *pcVar19; + byte *pbVar20; + undefined3 uVar22; + undefined1 *puVar21; + char cVar25; + byte *pbVar23; + int iVar24; + int unaff_EBP; + uint uVar26; + byte *unaff_ESI; + uint *unaff_EDI; + undefined2 in_ES; + undefined2 in_SS; + undefined2 in_DS; + char in_CF; + bool bVar27; + byte in_AF; + byte *pbStack_24; + int *apiStack_20 [2]; + undefined2 uStack_18; + undefined2 uStack_14; + undefined2 uStack_10; + + /* .NET CLR Managed Code */ + uVar7 = CONCAT31((int3)((uint)in_EAX >> 8),(char)in_EAX + '\x13' + in_CF) | 0x20051314; + pbVar8 = (byte *)(uVar7 + 0xa800040); + bVar3 = (byte)param_2 + *pbVar8; + uVar26 = (uint)(CARRY1((byte)param_2,*pbVar8) || CARRY1(bVar3,0xf57fffbf < uVar7)); + puVar16 = (uint *)(nameSpace + *unaff_EDI + uVar26); + pcVar19 = (char *)CONCAT31((int3)((uint)param_2 >> 8), + bVar3 + (0xf57fffbf < uVar7) + *pbVar8 + + (CARRY4(nameSpace,*unaff_EDI) || CARRY4(nameSpace + *unaff_EDI,uVar26)) + ); + uVar26 = unaff_EBP + *(int *)pbVar8; + pbVar23 = (byte *)0x13060000; + piVar14 = (int *)((uint)pbVar8 | 2); + *(int *)((int)piVar14 + uVar26) = (int)(*(int *)((int)piVar14 + uVar26) + (int)puVar16); + iRam13060000 = iRam13060000 - (int)piVar14; + cVar6 = (char)piVar14; + *unaff_ESI = *unaff_ESI + cVar6; + *piVar14 = *piVar14 + (int)piVar14; + *pcVar19 = *pcVar19 + cVar6; + if ((POPCOUNT(*pcVar19) & 1U) == 0) { + bVar3 = cVar6 + 0x39; + pcVar9 = (char *)CONCAT31((int3)((uint)pbVar8 >> 8),bVar3); + *(byte *)puVar16 = (byte)*puVar16 ^ bVar3; + *pcVar9 = *pcVar9 + bVar3; + cRam910c0000 = cRam910c0000 - bVar3; + cVar6 = (char)((uint)pcVar9 | 0x16040003); + *unaff_ESI = *unaff_ESI + cVar6; + pbVar23 = (byte *)CONCAT22(0x1306,(ushort)bRam13060025 << 8); + piVar14 = (int *)CONCAT31((int3)(((uint)pcVar9 | 0x16040003) >> 8),cVar6 + -0x1e); + } + else { + pcVar19[0x13060000] = pcVar19[0x13060000] + cVar6; + } + pcVar19 = (char *)((uint)pcVar19 | *puVar16); + uVar7 = (uint)puVar16 | *(uint *)(pcVar19 + 0x2d); + unaff_EDI[0x1b] = unaff_EDI[0x1b] | (uint)unaff_EDI; + uVar18 = (undefined2)(uVar7 >> 0x10); + cVar6 = (char)uVar7; + pbVar8 = (byte *)(CONCAT31((int3)((uint)piVar14 >> 8),(char)piVar14 + (char)*piVar14 + '\x13') + + 0x134a0b11); + bVar3 = (byte)(uVar7 >> 8) | *pbVar23 | *pbVar8; + puVar16 = (uint *)CONCAT22(uVar18,CONCAT11(bVar3,cVar6)); + *(int *)pbVar8 = *(int *)pbVar8; + if (*(int *)pbVar8 < 1) { + *pcVar19 = *pcVar19 + cVar6; + pbVar23 = (byte *)((uint)CONCAT21((short)((uint)pbVar23 >> 0x10), + (char)((uint)pbVar23 >> 8) + pbVar23[0x1e]) << 8); +code_r0x10010bf0: + pbRam11040002 = (byte *)(CONCAT31((int3)((uint)pbVar8 >> 8),(char)pbVar8 + '\x12') | 0x2b56f); + *(int *)pbRam11040002 = *(int *)pbRam11040002; + if (0 < *(int *)pbRam11040002) goto code_r0x10010c06; + pcVar9 = (char *)((uint)pbRam11040002 & 0x13040004); + } + else { + bVar3 = bVar3 | *pbRam11040002; + puVar16 = (uint *)CONCAT22(uVar18,CONCAT11(bVar3,cVar6)); + pbRam020a0000 = pbRam11040002; + pbVar8 = pbRam11040002; + if ((POPCOUNT(bVar3) & 1U) == 0) goto code_r0x10010bf0; +code_r0x10010c06: + iVar12 = *(int *)pbRam11040002; + cVar6 = (char)(pbRam11040002 + iVar12); + cVar25 = (char)((uint)pbVar23 >> 8); + *pbVar23 = *pbVar23 - cVar25; + *unaff_ESI = *unaff_ESI + cVar6 + '\x16'; + pbVar23 = (byte *)((uint)CONCAT21((short)((uint)pbVar23 >> 0x10),cVar25 + pbVar23[0x25]) << 8); + pcVar9 = (char *)CONCAT31((int3)((uint)(pbRam11040002 + iVar12) >> 8),cVar6 + -8); + } + *puVar16 = *puVar16 | (uint)pcVar19; + *(uint *)(pcVar19 + 0x2d) = *(uint *)(pcVar19 + 0x2d) | (uint)puVar16; + unaff_EDI[0x1b] = unaff_EDI[0x1b] | (uint)unaff_EDI; + cVar6 = *pcVar9; + bVar5 = (byte)((uint)puVar16 >> 8); + *pbVar23 = *pbVar23 | bVar5; + pbVar8 = (byte *)(CONCAT31((int3)((uint)pcVar9 >> 8),(char)pcVar9 + cVar6 + '\x13') + 0x134a0911); + *pbVar8 = *pbVar8 | bVar5; + *(undefined4 *)pbVar8 = *(undefined4 *)pbVar8; + bVar3 = (byte)puVar16; + if (*(int *)pbVar8 < 1) { + *pcVar19 = *pcVar19 + bVar3; + pbVar23[0x7e060000] = pbVar23[0x7e060000] - (char)pbVar8; + uVar7 = (uint)pbVar8 | 0x16040003; +code_r0x10010c4d: + cVar25 = (char)((uint)pbVar23 >> 8); + *pbVar23 = *pbVar23 - cVar25; + cVar6 = (char)uVar7; + *unaff_ESI = *unaff_ESI + cVar6; + pbVar23 = (byte *)((uint)CONCAT21((short)((uint)pbVar23 >> 0x10),cVar25 + pbVar23[0x25]) << 8); + bVar27 = 0xec < (byte)(cVar6 - 0x37U); + uVar7 = CONCAT31((int3)(uVar7 >> 8),cVar6 + -0x24); + } + else { + pbVar8 = (byte *)CONCAT31((int3)((uint)(pbVar8 + *(int *)pbVar8) >> 8), + (char)(pbVar8 + *(int *)pbVar8) + '\x7f'); + *pbVar8 = *pbVar8 | bVar5; + pbRam280a0000 = pbVar8; + *(undefined4 *)pbVar8 = *(undefined4 *)pbVar8; + uStack_10 = in_ES; + if (0 < *(int *)pbVar8) { + uVar7 = CONCAT31((int3)((uint)(pbVar8 + *(int *)pbVar8) >> 8), + (char)(pbVar8 + *(int *)pbVar8) + '\x16'); + goto code_r0x10010c4d; + } + bVar27 = false; + uVar7 = (uint)pbVar8 & 0x13040004; + } + *unaff_EDI = *unaff_EDI + uVar7 + (uint)bVar27; + pbVar20 = (byte *)(pcVar19 + -1); + pbVar23[(int)pbVar20] = pbVar23[(int)pbVar20] + (char)(uVar7 + 0xfd9380f7); + uVar7 = (uVar7 + 0xfd9380f7) - iRam134a0711; + uStack_14 = uStack_10; + pbVar23[0x7e060000] = pbVar23[0x7e060000] - (char)uVar7; + pbRam11040002 = (byte *)(uVar7 | 0x7f040003); + uStack_18 = uStack_10; + bVar5 = pbVar23[0x23]; + uVar18 = (undefined2)((uint)pbVar23 >> 0x10); + bVar4 = (char)pbRam11040002 + 0x28; + puVar13 = (uint *)CONCAT31((int3)((uint)pbRam11040002 >> 8),bVar4); + *puVar13 = *puVar13 << (bVar3 & 0x1f) | *puVar13 >> 0x20 - (bVar3 & 0x1f); + *pbVar20 = *pbVar20 + bVar3; + bVar3 = (char)((uint)pbVar23 >> 8) + bVar5 | (byte)*puVar13; + uVar1 = (uint)CONCAT21(uVar18,bVar3); + iVar12 = uVar1 * 0x100; + uVar7 = *puVar13; + *(byte *)puVar13 = (byte)*puVar13 + bVar4; + uVar7 = (uint)CARRY1((byte)uVar7,bVar4); + bVar27 = CARRY4((uint)pcRam00010a28,(uint)puVar16); + pcVar19 = (char *)((int)pcRam00010a28 + (int)puVar16); + pcRam00010a28 = pcVar19 + uVar7; + apiStack_20[0] = (int *)CONCAT22(apiStack_20[0]._2_2_,uStack_10); + piVar14 = apiStack_20[0]; + uVar7 = (uint)(bVar27 || CARRY4((uint)pcVar19,uVar7)); + pbVar8 = (byte *)((int)puVar13 + *(uint *)(pbVar20 + (int)puVar13)); + pbVar23 = pbVar8 + uVar7; + if ((POPCOUNT((uint)pbVar23 & 0xff) & 1U) == 0) { + *(int *)((int)apiStack_20[0] + uVar26) = + (int)apiStack_20[0] + (uint)(0xe5 < (byte)pbVar23) + *(int *)((int)apiStack_20[0] + uVar26) + ; + *apiStack_20[0] = *apiStack_20[0] + (int)apiStack_20[0]; + apiStack_20[0] = (int *)CONCAT22(apiStack_20[0]._2_2_,uStack_10); + bVar5 = (byte)pbVar20; + bVar27 = CARRY1(bVar5,*unaff_ESI); + pbVar20 = (byte *)CONCAT31((int3)((uint)pbVar20 >> 8),bVar5 + *unaff_ESI); + if (SCARRY1(bVar5,*unaff_ESI) == (char)(bVar5 + *unaff_ESI) < '\0') goto code_r0x10010cd2; + uVar15 = (undefined3)((uint)piVar14 >> 8); + bVar5 = (char)uStack_10 + 2; + if ((POPCOUNT(bVar5) & 1U) != 0) { + bVar27 = 0x23 < bVar5; + piVar14 = (int *)CONCAT31(uVar15,(char)uStack_10 + -0x22); + goto code_r0x10010cd2; + } + } + else { + uVar15 = (undefined3)((uint)pbVar23 >> 8); + bVar5 = (byte)pbVar23 + + (CARRY4((uint)puVar13,*(uint *)(pbVar20 + (int)puVar13)) || CARRY4((uint)pbVar8,uVar7)) + + 0x9d; + } + bVar4 = bVar5 + 5; + pbVar8 = unaff_ESI + 4; + out(*(undefined4 *)unaff_ESI,(short)pbVar20); + *pbVar8 = *pbVar8 + bVar4; + pbVar20 = (byte *)CONCAT31((int3)(CONCAT22((short)((uint)pbVar20 >> 0x10), + CONCAT11(2,(char)pbVar20)) >> 8), + (char)pbVar20 + *(char *)((int)unaff_EDI * 2 + 0x400041e)); + *pbVar8 = *pbVar8 & bVar4; + *(byte *)puVar16 = (char)*puVar16 + bVar4; + *pbVar20 = *pbVar20 | 0xde; + bVar27 = 0xe9 < bVar4; + piVar14 = (int *)CONCAT31(uVar15,bVar5 + 0x1b); + unaff_ESI = pbVar8; +code_r0x10010cd2: + uVar7 = (int)piVar14 + (int)apiStack_20[uVar1 * 0x200]; + uVar10 = uVar7 + bVar27; + puVar13 = (uint *)(iVar12 + uVar26); + uVar7 = (uint)(CARRY4((uint)piVar14,(uint)apiStack_20[uVar1 * 0x200]) || + CARRY4(uVar7,(uint)bVar27)); + uVar1 = uVar10 + *puVar13; + iVar11 = uVar1 + uVar7; + bVar4 = (byte)iVar11; + bVar5 = 9 < (bVar4 & 0xf) | in_AF; + bVar4 = bVar4 + bVar5 * -6; + bVar4 = bVar4 + (0x9f < bVar4 | + (CARRY4(uVar10,*puVar13) || CARRY4(uVar1,uVar7)) | bVar5 * (bVar4 < 6)) * -0x60; + bVar5 = (char)pbVar20 + *unaff_ESI; + pbVar8 = (byte *)CONCAT31((int3)((uint)pbVar20 >> 8),bVar5); + if (SCARRY1((char)pbVar20,*unaff_ESI) == (char)bVar5 < '\0') { + bVar4 = bVar4 | *pbVar8; + } + pbStack_24 = (byte *)((int)puVar16 + (uint)(0xe9 < bVar4) + *(int *)unaff_ESI); + iVar24 = (uint)CONCAT21(uVar18,bVar3 + *(char *)(iVar12 + 0x1e)) * 0x100; + bVar4 = bVar4 + 0x13; + puVar16 = (uint *)(unaff_ESI + 4); + out(*(undefined4 *)unaff_ESI,(short)pbVar8); + pbVar8 = (byte *)CONCAT22((short)((uint)pbVar20 >> 0x10),CONCAT11(2,bVar5)); + *(byte *)puVar16 = (byte)*puVar16 + bVar4; + bRam0a800040 = bRam0a800040 & bVar4; + iVar12 = CONCAT31((int3)((uint)iVar11 >> 8),bVar4) - *puVar16; + bVar3 = (byte)iVar12; + *(byte *)puVar16 = (byte)*puVar16 & bVar3; + *pbStack_24 = *pbStack_24 + bVar3; + *pbVar8 = *pbVar8 | 2; + apiStack_20[0] = (int *)CONCAT22(apiStack_20[0]._2_2_,in_DS); + puVar13 = (uint *)(CONCAT31((int3)((uint)iVar12 >> 8),bVar3 + 0x5b) + iRamda6f0511 + + (uint)(0x21 < (byte)(bVar3 + 0x7d))); + bVar4 = (byte)puVar13; + *(byte *)puVar13 = (char)*puVar13 + bVar4; + uVar22 = (undefined3)((uint)pbVar8 >> 8); + *(byte *)puVar13 = (char)*puVar13 + bVar4; + uVar7 = *puVar13; + *puVar13 = *puVar13 + uVar26; + pcVar19 = (char *)((int)puVar13 + CARRY4(uVar7,uVar26) + 0x280a0000); + cVar6 = *(char *)(iVar24 + ((uint)pcVar19 & 0xff)); + pcVar19 = (char *)CONCAT31((int3)((uint)pcVar19 >> 8),cVar6); + *pcVar19 = *pcVar19 + cVar6; + uVar7 = *puVar16; + piVar14 = (int *)((uint)pcVar19 ^ *unaff_EDI); + bRam2b800040 = bRam2b800040 & (byte)piVar14; + *piVar14 = *piVar14 + iVar24; + puVar21 = (undefined1 *)CONCAT31(uVar22,bVar5 | bVar4 | (byte)uVar7 | *pbStack_24); + iVar12 = (int)piVar14 + 0xc16f; + bVar3 = pbStack_24[iVar12]; + cVar6 = (char)iVar12 + -8; + pbVar8 = (byte *)CONCAT31((int3)((uint)iVar12 >> 8),cVar6); + *puVar21 = *puVar21; + *pbVar8 = *pbVar8 + cVar6; + puVar17 = (uint *)CONCAT31((int3)((uint)pbStack_24 >> 8),(byte)pbStack_24 | bVar3 | *pbVar8); + puVar21[iVar24] = puVar21[iVar24] + ((byte)unaff_EDI | 10); + *puVar16 = *puVar16 | uVar26; + *puVar16 = (uint)(*puVar16 + (int)puVar16); + pcVar19 = (char *)((uint)puVar16 | 0xde0d14dc); + *(byte *)puVar16 = (byte)*puVar16 + (char)pcVar19; + uVar15 = (undefined3)((uint)pcVar19 >> 8); + cVar6 = (char)pcVar19 - *pcVar19; + pcVar19 = (char *)CONCAT31(uVar15,cVar6); + *(char *)(puVar17 + 0x13) = (char)puVar17[0x13] + cVar6; + *pcVar19 = *pcVar19 + cVar6; + pcVar19 = (char *)CONCAT31(uVar15,cVar6); + *pcVar19 = *pcVar19 + cVar6; + pcVar19 = (char *)((uint)pcVar19 & *puVar17); + cVar6 = (char)pcVar19; + *pcVar19 = *pcVar19 + cVar6; + *pcVar19 = *pcVar19 + cVar6; + *(undefined1 *)((int)puVar17 + 1) = *(undefined1 *)((int)puVar17 + 1); + *pcVar19 = *pcVar19 + cVar6; + *pcVar19 = *pcVar19 + cVar6; + *pcVar19 = *pcVar19 + cVar6; + *(int *)((int)pcVar19 * 2) = (int)(pcVar19 + *(int *)((int)pcVar19 * 2)); + *pcVar19 = *pcVar19 + cVar6; + pcVar2 = (code *)swi(3); + iVar12 = (*pcVar2)(in_SS,CONCAT22((short)((uint)puVar16 >> 0x10),uStack_10),uVar26,&pbStack_24, + iVar24,CONCAT31(uVar22,bVar5 | bVar4),pbStack_24,puVar13); + return iVar12; +} + + +``` + +## AutoConnectLoop at 100167c8 + +Signature: `void __fastcall AutoConnectLoop(int * param_1, int param_2, uint param_3)` + +```c + +/* WARNING: Instruction at (ram,0x10016916) overlaps instruction at (ram,0x10016914) + */ +/* WARNING: Removing unreachable block (ram,0x100167d7) */ +/* WARNING: Removing unreachable block (ram,0x100167dd) */ +/* WARNING: Removing unreachable block (ram,0x100167f0) */ +/* WARNING: Removing unreachable block (ram,0x100167fa) */ +/* WARNING: Removing unreachable block (ram,0x10016807) */ + +void __fastcall AutoConnectLoop(int *param_1,int param_2,uint param_3) + +{ + uint uVar1; + char cVar2; + char cVar3; + byte bVar4; + uint uVar5; + int *piVar6; + int iVar7; + uint *puVar8; + undefined3 uVar13; + byte *pbVar9; + char *pcVar10; + undefined2 uVar14; + byte *pbVar11; + uint uVar12; + byte bVar15; + byte *pbVar16; + int *piVar17; + int iVar18; + undefined1 uVar19; + byte bVar20; + char cVar23; + int unaff_EBX; + uint *puVar21; + uint *puVar22; + uint unaff_EBP; + byte *pbVar24; + byte *unaff_ESI; + byte *unaff_EDI; + char in_ES; + bool bVar25; + bool bVar26; + undefined2 in_FPUStatusWord; + undefined1 auStack_4 [4]; + + /* .NET CLR Managed Code */ + uVar14 = (undefined2)((uint)unaff_EBX >> 0x10); + uVar19 = (undefined1)unaff_EBX; + cVar23 = (char)((uint)unaff_EBX >> 8) + *(char *)(unaff_EBX + 0x17); + pcVar10 = (char *)CONCAT22(uVar14,CONCAT11(cVar23,uVar19)); + *pcVar10 = *pcVar10 - cVar23; + *unaff_ESI = *unaff_ESI + 3; + cVar2 = pcVar10[0x25]; + iVar18 = CONCAT22(uVar14,CONCAT11(cVar23 + cVar2,uVar19)); + *(int *)unaff_ESI = *(int *)unaff_ESI + (int)param_1; + pcVar10 = (char *)(iVar18 + param_2 + -1); + *pcVar10 = *pcVar10 + -0x24; + pbVar16 = (byte *)(param_2 + -2); + pbVar11 = (byte *)((int)param_1 + iRam00008328); + if (pbVar11 == (byte *)0x0 || SCARRY4((int)param_1,iRam00008328) != (int)pbVar11 < 0) { + *pbVar16 = *pbVar16 + (char)pbVar11; + pbVar11 = (byte *)CONCAT22((short)((uint)pbVar11 >> 0x10), + CONCAT11((char)((uint)pbVar11 >> 8) + (char)iRam1f9785ff, + (char)pbVar11)); + iVar7 = iRam1f9785ff + 0x1f9785ff; + } + else { + uVar5 = CONCAT31((int3)((uint)auStack_4 >> 8),(char)auStack_4 + in_ES + '\x11') | 0xa328; + piVar6 = (int *)CONCAT31((int3)(uVar5 >> 8),(byte)uVar5 | *pbVar16); + *unaff_ESI = *unaff_ESI - (char)(uVar5 >> 8); + iVar7 = (int)piVar6 + *piVar6; + } + iVar18 = CONCAT22(uVar14,CONCAT11(cVar23 + cVar2 + *(char *)(iVar18 + 0x21),uVar19)); + cVar2 = (char)iVar7 + ','; + puVar21 = (uint *)(iVar18 + -1); + *(char *)(iVar18 + 0x7e05ffff) = *(char *)(iVar18 + 0x7e05ffff) - cVar2; + puVar8 = (uint *)(CONCAT31((int3)((uint)iVar7 >> 8),cVar2) | 0x16040003); + cVar23 = (char)((uint)puVar21 >> 8); + *(char *)puVar21 = *(char *)puVar21 - cVar23; + cVar2 = (char)puVar8; + *unaff_ESI = *unaff_ESI + cVar2; + if ((POPCOUNT(*(int *)(unaff_EDI + 0x2000000) - unaff_EBP & 0xff) & 1U) == 0) { + uVar5 = CONCAT31((int3)((uint)puVar8 >> 8),cVar2 + '\x13') | 0x5b; + *(byte *)((int)puVar21 + (int)pbVar16) = + *(byte *)((int)puVar21 + (int)pbVar16) + (char)uVar5 + -9; + puVar8 = (uint *)(uVar5 + 0x10dd8d08); + pbVar24 = (byte *)(unaff_EBP | *puVar21 | *puVar8); + *puVar8 = *puVar8; + if ((int)*puVar8 < 1) { + *pbVar16 = *pbVar16 + (byte)pbVar11; + goto code_r0x1001688d; + } + unaff_EBP = CONCAT31((int3)((int)puVar8 + *puVar8 >> 8), + (char)(char *)((int)puVar8 + *puVar8) + '\x7f'); + puVar8 = (uint *)CONCAT31((int3)((uint)pbVar24 >> 8),(char)pbVar24 + *pbVar24 + '\x11'); + } + else { + pbVar11[(int)pbVar16] = pbVar11[(int)pbVar16] + cVar2; + } + pbVar24 = (byte *)(unaff_EBP | *puVar8); + puRam380a0000 = puVar8; +code_r0x1001688d: + *(char *)puVar8 = (char)*puVar8 + (char)puVar8; + *(char *)(iVar18 + 0x7e05ffff) = *(char *)(iVar18 + 0x7e05ffff) - (char)puVar8; + *(char *)puVar21 = *(char *)puVar21 - cVar23; + cVar3 = (char)((uint)puVar8 | 0x16040003); + *unaff_ESI = *unaff_ESI + cVar3; + uVar13 = (undefined3)(((uint)puVar8 | 0x16040003) >> 8); + uVar14 = (undefined2)((uint)puVar21 >> 0x10); + cVar23 = cVar23 + *(char *)(iVar18 + 0x24); + puVar22 = (uint *)CONCAT22(uVar14,CONCAT11(cVar23,(char)puVar21)); + cVar3 = cVar3 + -0x1e; + piVar17 = (int *)CONCAT31((int3)((uint)pbVar16 >> 8),(byte)pbVar16 | *pbVar11); + bVar15 = (byte)pbVar11 | *(byte *)((int)piVar17 + 0x2d); + piVar6 = (int *)CONCAT31((int3)((uint)pbVar11 >> 8),bVar15); + *(uint *)(unaff_EDI + 0x6c) = *(uint *)(unaff_EDI + 0x6c) | (uint)unaff_EDI; + cVar2 = *(char *)CONCAT31(uVar13,cVar3); + *puVar22 = *puVar22 | (uint)pbVar24; + puVar8 = (uint *)(CONCAT31(uVar13,cVar3 + cVar2 + '\x13') + 0x134a0a11); + *puVar8 = *puVar8 | (uint)pbVar24; + *puVar8 = *puVar8; + if ((int)*puVar8 < 1) { + *(byte *)piVar17 = (char)*piVar17 + bVar15; + puVar22 = (uint *)CONCAT22(uVar14,CONCAT11(cVar23 + (char)puVar22[7],(char)puVar21)); + } + else { + pbVar9 = (byte *)CONCAT31((int3)((int)puVar8 + *puVar8 >> 8), + (char)((int)puVar8 + *puVar8) + '\x7f'); + puRam020a0000 = + (uint *)CONCAT31((int3)((uint)unaff_ESI >> 8),(char)unaff_ESI + *unaff_ESI + '\x11'); + *puRam020a0000 = *puRam020a0000 | (uint)pbVar24; + puVar8 = puRam020a0000; + unaff_ESI = pbVar9; + if ((POPCOUNT(*puRam020a0000 & 0xff) & 1U) != 0) { + puVar8 = (uint *)((int)puRam020a0000 + *puRam020a0000); + } + } + pcVar10 = (char *)(CONCAT31((int3)((uint)puVar8 >> 8),(char)puVar8 + '\x1f') ^ 0xd); + uVar14 = (undefined2)((uint)puVar8 >> 0x10); + cVar2 = (char)pcVar10; + cVar23 = (char)((uint)puVar8 >> 8) + *pcVar10; + pcVar10 = (char *)CONCAT22(uVar14,CONCAT11(cVar23,cVar2)); + *unaff_EDI = *unaff_EDI << 1 | (char)*unaff_EDI < '\0'; + *pcVar10 = *pcVar10 + cVar2; + *(char *)((int)puVar22 + (int)pcVar10) = *(char *)((int)puVar22 + (int)pcVar10) - cVar23; + *unaff_ESI = *unaff_ESI + cVar2; + iVar18 = *(int *)unaff_EDI; + pcVar10 = (char *)CONCAT22(uVar14,CONCAT11(cVar23 + *pcVar10,cVar2)); + *pbVar24 = *pbVar24 ^ (byte)((uint)pbVar16 >> 8); + cVar23 = (char)((uint)pbVar11 >> 8); + *pcVar10 = *pcVar10 + cVar23; + pbVar11 = (byte *)(CONCAT31((int3)((uint)pcVar10 >> 8),cVar2) & 0xffffff03); + *unaff_ESI = *unaff_ESI + (char)pbVar11; + iVar7 = (int)piVar17 - *piVar17; + bVar15 = (byte)iVar7; + uVar13 = (undefined3)((uint)iVar7 >> 8); + cVar2 = bVar15 + *unaff_ESI; + puVar8 = (uint *)CONCAT31(uVar13,cVar2); + if (SCARRY1(bVar15,*unaff_ESI) == cVar2 < '\0') { + puVar8 = (uint *)CONCAT31(uVar13,cVar2 + (char)*puVar8 + CARRY1(bVar15,*unaff_ESI)); + } + else { + pbVar11 = (byte *)CONCAT31((int3)((uint)pbVar11 >> 8),(char)pbVar11 + '\x02'); + *pbVar11 = *pbVar11 & (byte)((uint)iVar7 >> 8); + } + *pbVar11 = *pbVar11 + cVar23; + bVar15 = *unaff_ESI; + bVar4 = (byte)((uint)pbVar11 & 0xffffff03); + *unaff_ESI = *unaff_ESI + bVar4; + *(undefined2 *)(((int)puVar22 - iVar18) + 0x13fffffe) = in_FPUStatusWord; + bVar25 = CARRY4(*puVar8,(uint)puVar8) || CARRY4(*puVar8 + (int)puVar8,(uint)CARRY1(bVar15,bVar4)); + *puVar8 = *puVar8 + (int)puVar8 + (uint)CARRY1(bVar15,bVar4); + bVar20 = (byte)((int)puVar22 - iVar18); + bVar15 = bVar20 + *unaff_EDI; + bVar26 = CARRY1(bVar20,*unaff_EDI) || CARRY1(bVar15,bVar25); + bVar15 = bVar15 + bVar25; + uVar12 = CONCAT31((int3)(((uint)pbVar11 & 0xffffff03) >> 8),bVar4 + 0x58 + bVar26); + uVar5 = (uint)(0xa7 < bVar4 || CARRY1(bVar4 + 0x58,bVar26)); + uVar1 = uVar12 + 0xe0ededac; + bVar25 = uVar12 < 0x1f121254 || uVar1 < uVar5; + pbVar11 = (byte *)((uVar1 - uVar5) + 0x16); + bVar4 = *pbVar11 + bVar15; + bVar26 = CARRY1(*pbVar11,bVar15) || CARRY1(bVar4,bVar25); + *pbVar11 = bVar4 + bVar25; + bVar15 = (byte)puVar8 + (char)*puVar8; + iVar18 = CONCAT31((int3)((uint)puVar8 >> 8),bVar15 + bVar26); + *piVar6 = *piVar6 + iVar18 + (uint)(CARRY1((byte)puVar8,(byte)*puVar8) || CARRY1(bVar15,bVar26)); + out(*(undefined4 *)unaff_ESI,(short)iVar18); + return; +} + + +``` + +## FUN_10037760 at 10037760 + +Signature: `undefined __fastcall FUN_10037760(int param_1)` + +```c + +void __fastcall FUN_10037760(int param_1) + +{ + LPCRITICAL_SECTION p_Var1; + void *pvVar2; + char *pcVar3; + undefined4 *puVar4; + undefined **ppuVar5; + undefined **ppuVar6; + int *piVar7; + undefined **ppuVar8; + _LIST_ENTRY *p_Var9; + char cVar10; + int **ppiVar11; + int iVar12; + undefined4 *puVar13; + uint uVar14; + undefined4 *puVar15; + uint *puVar16; + int *piVar17; + int *piVar18; + PRTL_CRITICAL_SECTION_DEBUG p_Var19; + PRTL_CRITICAL_SECTION_DEBUG p_Var20; + PRTL_CRITICAL_SECTION_DEBUG *pp_Var21; + _RTL_CRITICAL_SECTION *_Dst; + int iVar22; + int iVar23; + undefined4 uVar24; + wchar_t *pwVar25; + undefined4 uVar26; + PRTL_CRITICAL_SECTION_DEBUG local_b4; + int *local_b0; + int local_ac; + int *local_a4; + int local_a0; + LPCRITICAL_SECTION local_94; + undefined4 *local_90; + int local_8c; + undefined **local_84 [3]; + undefined **local_78; + int local_74; + int *local_6c; + int local_68; + undefined **local_60; + uint local_5c; + LPVOID local_58; + void *local_54; + int *local_50; + uint local_4c; + int *local_48; + undefined **local_44; + int *local_40; + PRTL_CRITICAL_SECTION_DEBUG local_3c; + int *local_38; + int *local_34; + _RTL_CRITICAL_SECTION *local_30; + _LIST_ENTRY *local_2c; + int *local_28; + _LIST_ENTRY *local_24; + int *local_20; + PRTL_CRITICAL_SECTION_DEBUG local_1c; + int *local_18; + int local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_100585c2; + local_10 = ExceptionList; + ppiVar11 = (int **)(DAT_100b1424 ^ (uint)&stack0xfffffffc); + ExceptionList = &local_10; + local_2c = (_LIST_ENTRY *)0x0; + local_14 = param_1; + iVar12 = FUN_10035eb0(param_1); + if (iVar12 != 1) { + if (*(int *)(param_1 + 100) == 0) { + ExceptionList = local_10; + return; + } + puVar13 = (undefined4 *)**(undefined4 **)(param_1 + 0x60); + local_44 = (undefined **)0; + while (puVar13 != *(undefined4 **)(param_1 + 0x60)) { + local_44 = (undefined **)((int)local_44 + puVar13[5]); + if (*(char *)((int)puVar13 + 0x1d) == '\0') { + puVar15 = (undefined4 *)puVar13[2]; + if (*(char *)((int)puVar15 + 0x1d) == '\0') { + cVar10 = *(char *)((int)*puVar15 + 0x1d); + puVar13 = puVar15; + puVar15 = (undefined4 *)*puVar15; + while (cVar10 == '\0') { + cVar10 = *(char *)((int)*puVar15 + 0x1d); + puVar13 = puVar15; + puVar15 = (undefined4 *)*puVar15; + } + } + else { + cVar10 = *(char *)((int)puVar13[1] + 0x1d); + puVar4 = (undefined4 *)puVar13[1]; + puVar15 = puVar13; + while ((puVar13 = puVar4, cVar10 == '\0' && (puVar15 == (undefined4 *)puVar13[2]))) { + cVar10 = *(char *)((int)puVar13[1] + 0x1d); + puVar4 = (undefined4 *)puVar13[1]; + puVar15 = puVar13; + } + } + } + } + local_54 = CoTaskMemAlloc((int)local_44 * 0x18); + piVar18 = (int *)**(int **)(param_1 + 0x60); + iVar12 = 0; + if (piVar18 != *(int **)(param_1 + 0x60)) { + do { + iVar23 = 0; + if (0 < piVar18[5]) { + iVar22 = 0; + do { + *(undefined4 *)(iVar22 + 0x10 + piVar18[6]) = 5; + iVar23 = iVar23 + 1; + iVar22 = iVar22 + 0x18; + } while (iVar23 < piVar18[5]); + } + memcpy((void *)((int)local_54 + iVar12 * 0x18),(void *)piVar18[6],piVar18[5] * 0x18); + iVar12 = iVar12 + piVar18[5]; + CoTaskMemFree((LPVOID)piVar18[6]); + if (*(char *)((int)piVar18 + 0x1d) == '\0') { + piVar17 = (int *)piVar18[2]; + if (*(char *)((int)piVar17 + 0x1d) == '\0') { + cVar10 = *(char *)(*piVar17 + 0x1d); + piVar18 = piVar17; + piVar17 = (int *)*piVar17; + while (cVar10 == '\0') { + cVar10 = *(char *)(*piVar17 + 0x1d); + piVar18 = piVar17; + piVar17 = (int *)*piVar17; + } + } + else { + cVar10 = *(char *)(piVar18[1] + 0x1d); + piVar7 = (int *)piVar18[1]; + piVar17 = piVar18; + while ((piVar18 = piVar7, cVar10 == '\0' && (piVar17 == (int *)piVar18[2]))) { + cVar10 = *(char *)(piVar18[1] + 0x1d); + piVar7 = (int *)piVar18[1]; + piVar17 = piVar18; + } + } + } + } while (piVar18 != *(int **)(param_1 + 0x60)); + } + local_38 = new(0x10); + if (local_38 == (int *)0x0) goto LAB_100393d0; + *local_38 = (int)local_44; + local_38[1] = (int)local_54; + local_38[2] = 0; + local_38[3] = 0; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 0x3a; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10039309; + } + } + else { +LAB_10039309: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 0x3b; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - submitting response to queue"); + } + } + iVar12 = local_14; + p_Var1 = (LPCRITICAL_SECTION)(local_14 + 0x2c); + local_94 = p_Var1; + EnterCriticalSection(p_Var1); + local_8 = 0x3c; + pcVar3 = *(char **)(iVar12 + 0x44); + puVar13 = FUN_1002b0c0((void *)(iVar12 + 0x44),pcVar3,*(undefined4 *)(pcVar3 + 4),&local_38); + if (*(int *)(iVar12 + 0x48) == 0x3ffffffe) { + /* WARNING: Subroutine does not return */ + std::_Xlength_error("list too long"); + } + *(int *)(iVar12 + 0x48) = *(int *)(iVar12 + 0x48) + 1; + *(undefined4 **)(pcVar3 + 4) = puVar13; + *(undefined4 **)puVar13[1] = puVar13; + local_8 = 0xffffffff; + LeaveCriticalSection(p_Var1); +LAB_100393d0: + iVar12 = local_14; + piVar18 = *(int **)(*(int *)(local_14 + 0x60) + 4); + cVar10 = *(char *)((int)piVar18 + 0x1d); + while (cVar10 == '\0') { + FUN_1002a4d0((int *)piVar18[2]); + piVar17 = (int *)*piVar18; + delete(piVar18); + piVar18 = piVar17; + cVar10 = *(char *)((int)piVar17 + 0x1d); + } + *(int *)(*(int *)(iVar12 + 0x60) + 4) = *(int *)(iVar12 + 0x60); + *(undefined4 *)*(undefined4 *)(iVar12 + 0x60) = *(undefined4 *)(iVar12 + 0x60); + *(int *)(*(int *)(iVar12 + 0x60) + 8) = *(int *)(iVar12 + 0x60); + *(undefined4 *)(iVar12 + 100) = 0; + ExceptionList = local_10; + return; + } + local_68 = 0; + local_6c = new(0xc); + local_28 = local_6c; + if (local_6c == (int *)0x0) { + local_38 = (int *)0x0; + std::exception::exception((exception *)local_84,(char **)&local_38); + local_84[0] = std::bad_alloc::vftable; + local_8 = 0xffffffff; + /* WARNING: Subroutine does not return */ + _CxxThrowException(local_84,(ThrowInfo *)&DAT_100a469c); + } + *local_6c = (int)local_6c; + local_6c[1] = (int)local_6c; + local_8 = 2; + local_ac = 0; + local_b0 = new(0xc); + local_48 = local_b0; + if (local_b0 == (int *)0x0) { + local_3c = (PRTL_CRITICAL_SECTION_DEBUG)0x0; + std::exception::exception((exception *)&local_78,(char **)&local_3c); + local_78 = std::bad_alloc::vftable; + local_8 = CONCAT31((int3)((uint)local_8 >> 8),2); + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_78,(ThrowInfo *)&DAT_100a469c); + } + *local_b0 = (int)local_b0; + local_b0[1] = (int)local_b0; + local_8._0_1_ = 5; + local_a0 = 0; + local_a4 = new(0xc); + local_40 = local_a4; + if (local_a4 == (int *)0x0) { + local_38 = (int *)0x0; + std::exception::exception((exception *)local_84,(char **)&local_38); + local_84[0] = std::bad_alloc::vftable; + local_8 = CONCAT31(local_8._1_3_,5); + /* WARNING: Subroutine does not return */ + _CxxThrowException(local_84,(ThrowInfo *)&DAT_100a469c); + } + *local_a4 = (int)local_a4; + local_a4[1] = (int)local_a4; + local_8._0_1_ = 8; + local_74 = 0; + local_78 = new(0xc); + local_44 = local_78; + if (local_78 == (undefined **)0x0) { + local_3c = (PRTL_CRITICAL_SECTION_DEBUG)0x0; + std::exception::exception((exception *)&local_60,(char **)&local_3c); + local_60 = std::bad_alloc::vftable; + local_8 = CONCAT31(local_8._1_3_,8); + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_60,(ThrowInfo *)&DAT_100a469c); + } + *local_78 = (undefined *)local_78; + local_78[1] = (undefined *)local_78; + local_8._0_1_ = 0xb; + local_1c = (PRTL_CRITICAL_SECTION_DEBUG)0x0; + local_24 = (_LIST_ENTRY *)0x0; + local_30 = (_RTL_CRITICAL_SECTION *)0x0; + local_50 = (int *)0x0; + local_4c = 0; + local_8c = 0; + puVar13 = new(0xc); + if (puVar13 == (undefined4 *)0x0) { + local_38 = (int *)0x0; + std::exception::exception((exception *)local_84,(char **)&local_38); + local_84[0] = std::bad_alloc::vftable; + local_8 = CONCAT31(local_8._1_3_,0xb); + /* WARNING: Subroutine does not return */ + _CxxThrowException(local_84,(ThrowInfo *)&DAT_100a469c); + } + *puVar13 = puVar13; + puVar13[1] = puVar13; + local_8._0_1_ = 0xe; + p_Var19 = (PRTL_CRITICAL_SECTION_DEBUG)(param_1 + 8); + local_90 = puVar13; + local_3c = p_Var19; + EnterCriticalSection((LPCRITICAL_SECTION)p_Var19); + local_8 = CONCAT31(local_8._1_3_,0xf); + FUN_10031b10(&local_90,(char *)*puVar13,(undefined4 *)**(undefined4 **)(param_1 + 0x20), + *(undefined4 **)(param_1 + 0x20)); + piVar18 = *(int **)(param_1 + 0x20); + piVar17 = (int *)*piVar18; + *piVar18 = (int)piVar18; + *(int *)(*(int *)(param_1 + 0x20) + 4) = *(int *)(param_1 + 0x20); + *(undefined4 *)(param_1 + 0x24) = 0; + if (piVar17 != *(int **)(param_1 + 0x20)) { + do { + piVar18 = (int *)*piVar17; + delete(piVar17); + piVar17 = piVar18; + } while (piVar18 != (int *)*(int *)(param_1 + 0x20)); + } + local_8._0_1_ = 0xe; + LeaveCriticalSection((LPCRITICAL_SECTION)p_Var19); + if (local_8c != 0) { + uVar26 = 0; + uVar24 = DAT_100cce9c; + puVar13 = FUN_1001b5b0(); + uVar14 = FUN_1001b4e0(puVar13,uVar24,uVar26); + if ((char)uVar14 != '\0') { + pwVar25 = L"NameSpace::ProcessWriteCompleteWorker - processing writes. Count[%d]"; + uVar24 = DAT_100cce9c; + puVar13 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar13,uVar24,pwVar25); + } + } + puVar13 = (undefined4 *)*local_90; + if (puVar13 != local_90) { + local_30 = (_RTL_CRITICAL_SECTION *)0x0; + do { + local_24 = (_LIST_ENTRY *)0x0; + local_50 = (int *)0x0; + local_4c = 0; + if (puVar13[2] != 0) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x10; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_100379c6; + } + } + else { +LAB_100379c6: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x11; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - Sending write to dataClientCLI. ") + ; + } + } + if (DAT_100cce80 == '\0') { + ppiVar11 = *(int ***)puVar13[2]; + local_2c = (_LIST_ENTRY *)FUN_1000ef80(); + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x12; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4,ppiVar11); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10037af7; + } + } + else { +LAB_10037af7: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x13; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - dataClientCLI write returned.. "); + } + } + if ((int)local_2c < 0) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x1a; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + iVar12 = DAT_100b5e9c; + if ((DAT_100b5e9c == 0) && + (iVar23 = FUN_1001ca40(&DAT_100b5df0), iVar12 = DAT_100b5e9c, iVar23 == 0)) { + iVar12 = 0; + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x1b; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar14 = FUN_1001b4e0(&DAT_100b5df0,iVar12,0); + if ((char)uVar14 != '\0') { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x1c; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogWarning(0x100b5df0,L" [%s] - Write return 0x%x"); + } + } + else { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x14; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar14 = FUN_1001b4e0(&DAT_100b5df0,DAT_100cce9c,0); + if ((char)uVar14 != '\0') { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x15; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - dataClientCLI write SUCCEEDED.. ") + ; + } + uVar14 = *(uint *)(puVar13[2] + 0x2c); + local_5c = uVar14; + local_58 = CoTaskMemAlloc(uVar14 * 0x18); + if (local_58 == (LPVOID)0x0) { + local_2c = (_LIST_ENTRY *)0x8007000e; + } + else { + memset(local_58,0,uVar14 * 0x18); + piVar18 = (int *)**(int **)(puVar13[2] + 0x28); + if (piVar18 != *(int **)(puVar13[2] + 0x28)) { + puVar15 = (undefined4 *)((int)local_58 + 0x10); + do { + iVar12 = *(int *)piVar18[2]; + puVar15[-4] = *(undefined4 *)(iVar12 + 8); + puVar15[-3] = *(undefined4 *)(iVar12 + 0xc); + iVar12 = piVar18[2]; + puVar15[-2] = *(undefined4 *)(iVar12 + 0x30); + puVar15[-1] = *(undefined4 *)(iVar12 + 0x34); + *puVar15 = 0; + piVar18 = (int *)*piVar18; + puVar15 = puVar15 + 6; + } while (piVar18 != (int *)*(int *)(puVar13[2] + 0x28)); + } + if ((local_24 == (_LIST_ENTRY *)0x0) || (local_24[1].Flink == (_LIST_ENTRY *)0x0)) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x18; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10037ebf; + } + } + else { +LAB_10037ebf: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x19; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - submitting response to m_CompleteList" + ); + } + } + iVar12 = local_14; + puVar16 = FUN_10034b50((void *)(local_14 + 0x5c),(uint *)(puVar13[2] + 0x24)); + puVar16[1] = uVar14; + puVar16 = FUN_10034b50((void *)(iVar12 + 0x5c),(uint *)(puVar13[2] + 0x24)); + puVar16[2] = (uint)local_58; + } + else { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x16; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + iVar12 = DAT_100b5e9c; + if ((DAT_100b5e9c == 0) && + (iVar23 = FUN_1001ca40(&DAT_100b5df0), iVar12 = DAT_100b5e9c, iVar23 == 0)) { + iVar12 = 0; + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x17; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar14 = FUN_1001b4e0(&DAT_100b5df0,iVar12,0); + if ((char)uVar14 != '\0') { + pwVar25 = L" [%s] - Write ArchestrA Result 0x%x"; + puVar15 = FUN_1001b5b0(); + CWrapLogger_LogWarning((int)puVar15,pwVar25); + } + piVar18 = local_28; + local_20 = (int *)**(int **)(puVar13[2] + 0x28); + if (local_20 != *(int **)(puVar13[2] + 0x28)) { + local_18 = (int *)((int)local_58 + 0x10); + do { + *local_18 = (int)local_24[1].Flink; + uVar14 = 0; + if (local_4c != 0) { + local_94 = (LPCRITICAL_SECTION)local_18[-3]; + piVar17 = local_50; + do { + if ((local_18[-4] == *piVar17) && (local_94 == (LPCRITICAL_SECTION)0x0)) { + *local_18 = local_50[uVar14 * 8 + 2]; + break; + } + uVar14 = uVar14 + 1; + piVar17 = piVar17 + 8; + } while (uVar14 < local_4c); + } + local_20 = (int *)*local_20; + local_18 = local_18 + 6; + } while (local_20 != (int *)*(int *)(puVar13[2] + 0x28)); + } + puVar15 = FUN_1002b960(&local_6c,(char *)local_28,local_28[1],&local_58); + piVar17 = local_48; + if (local_68 == 0x3ffffffe) goto LAB_10038efb; + local_68 = local_68 + 1; + piVar18[1] = (int)puVar15; + *(undefined4 **)puVar15[1] = puVar15; + puVar15 = FUN_1002ba70(&local_b0,(char *)local_48,local_48[1],&local_5c); + if (local_ac == 0x3ffffffe) goto LAB_10038efb; + local_ac = local_ac + 1; + piVar17[1] = (int)puVar15; + *(undefined4 **)puVar15[1] = puVar15; + local_1c = (PRTL_CRITICAL_SECTION_DEBUG)0x0; + } + } + CoTaskMemFree(local_24); + local_24 = (_LIST_ENTRY *)0x0; + } + CoTaskMemFree((LPVOID)**(undefined4 **)puVar13[2]); + CoTaskMemFree(*(LPVOID *)puVar13[2]); + *(undefined4 *)puVar13[2] = 0; + } + if (puVar13[2] != 0) { + piVar18 = (int *)**(int **)(puVar13[2] + 0x28); + if (piVar18 != *(int **)(puVar13[2] + 0x28)) { + do { + delete(*(void **)piVar18[2]); + if (*(void **)(piVar18[2] + 0x20) != (void *)0x0) { + delete__(*(void **)(piVar18[2] + 0x20)); + } + if (*(int *)(piVar18[2] + 0x14) != 0) { + delete__(*(void **)(piVar18[2] + 0x18)); + } + delete((void *)piVar18[2]); + piVar18 = (int *)*piVar18; + } while (piVar18 != (int *)*(int *)(puVar13[2] + 0x28)); + } + iVar12 = puVar13[2]; + piVar18 = *(int **)(iVar12 + 0x28); + piVar17 = (int *)*piVar18; + *piVar18 = (int)piVar18; + *(int *)(*(int *)(iVar12 + 0x28) + 4) = *(int *)(iVar12 + 0x28); + *(undefined4 *)(iVar12 + 0x2c) = 0; + if (piVar17 != *(int **)(iVar12 + 0x28)) { + do { + piVar18 = (int *)*piVar17; + delete(piVar17); + piVar17 = piVar18; + } while (piVar18 != (int *)*(int *)(iVar12 + 0x28)); + } + pvVar2 = (void *)puVar13[2]; + if (pvVar2 != (void *)0x0) { + FUN_1002f0e0((int)pvVar2); + delete(pvVar2); + } + } + puVar13 = (undefined4 *)*puVar13; + } while (puVar13 != local_90); + if (local_68 != 0) { + if (local_68 == 1) { + local_30 = *(_RTL_CRITICAL_SECTION **)(*local_28 + 8); + local_1c = *(PRTL_CRITICAL_SECTION_DEBUG *)(*local_48 + 8); + piVar17 = local_28; + } + else { + local_1c = (PRTL_CRITICAL_SECTION_DEBUG)0x0; + for (piVar18 = (int *)*local_48; piVar18 != local_48; piVar18 = (int *)*piVar18) { + local_1c = (PRTL_CRITICAL_SECTION_DEBUG)((int)&local_1c->Type + piVar18[2]); + } + local_30 = CoTaskMemAlloc((int)local_1c * 0x18); + piVar18 = (int *)*local_28; + puVar13 = (undefined4 *)*local_48; + iVar12 = 0; + piVar17 = local_28; + if (piVar18 != local_28) { + do { + if ((void *)piVar18[2] != (void *)0x0) { + memcpy(local_30 + iVar12,(void *)piVar18[2],puVar13[2] * 0x18); + iVar12 = iVar12 + puVar13[2]; + CoTaskMemFree((LPVOID)piVar18[2]); + piVar18[2] = 0; + piVar17 = local_28; + } + piVar18 = (int *)*piVar18; + puVar13 = (undefined4 *)*puVar13; + } while (piVar18 != piVar17); + } + } + piVar7 = local_28; + piVar18 = (int *)*piVar17; + *piVar17 = (int)piVar17; + piVar17[1] = (int)piVar17; + local_68 = 0; + if (piVar18 != piVar17) { + do { + piVar17 = (int *)*piVar18; + delete(piVar18); + piVar18 = piVar17; + } while (piVar17 != piVar7); + } + } + } + if (*(int *)(local_14 + 100) == 0) { +LAB_10038d96: + p_Var19 = local_1c; + if (local_30 == (_RTL_CRITICAL_SECTION *)0x0) { +LAB_10038d9f: + p_Var19 = local_1c; + if ((local_2c == (_LIST_ENTRY *)0x0) && (local_24 == (_LIST_ENTRY *)0x0)) goto LAB_10038f1d; + } + } + else { + p_Var19 = local_1c; + if (local_30 == (_RTL_CRITICAL_SECTION *)0x0) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x1d; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10038298; + } + } + else { +LAB_10038298: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x1e; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - localComplete is [%d].. "); + } + } + local_18 = (int *)0x0; + local_20 = (int *)0x0; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x1f; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10038383; + } + } + else { +LAB_10038383: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x20; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - sending PublishWriteComplete"); + } + } + iVar12 = local_14; + if (DAT_100cce80 == '\0') { + ppiVar11 = &local_18; + local_2c = (_LIST_ENTRY *)FUN_1000f9e0(); + } + p_Var9 = local_2c; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x21; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4,ppiVar11); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10038493; + } + } + else { +LAB_10038493: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x22; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete returned"); + } + } + if ((int)p_Var9 < 0) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x2d; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + iVar12 = DAT_100b5e9c; + if ((DAT_100b5e9c == 0) && + (iVar23 = FUN_1001ca40(&DAT_100b5df0), iVar12 = DAT_100b5e9c, iVar23 == 0)) { + iVar12 = 0; + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x2e; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10038bb7; + } + } + else { +LAB_10038bb7: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,iVar12,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x2f; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogWarning(0x100b5df0,L" [%s] - PublishWriteComplete return 0x%x "); + } + } + } + else { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x23; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10038580; + } + } + else { +LAB_10038580: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x24; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete SUCCEEDED. lWriteSize[%d]" + ); + } + } + local_34 = (int *)0x0; + if (local_20 != (int *)0x0) { + local_54 = (void *)(iVar12 + 0x5c); + do { + local_b4 = *(PRTL_CRITICAL_SECTION_DEBUG *)((int)local_54 + 4); + iVar12 = (int)local_34 * 0x20; + if (*(undefined1 *) + ((int)&((PRTL_CRITICAL_SECTION_DEBUG)local_b4->CriticalSection)-> + CreatorBackTraceIndexHigh + 1) == '\0') { + p_Var19 = (PRTL_CRITICAL_SECTION_DEBUG)local_b4->CriticalSection; + do { + if ((p_Var19->ProcessLocksList).Blink < + (_LIST_ENTRY *)local_18[(int)local_34 * 8 + 4]) { + p_Var20 = (PRTL_CRITICAL_SECTION_DEBUG)(p_Var19->ProcessLocksList).Flink; + } + else { + p_Var20 = *(PRTL_CRITICAL_SECTION_DEBUG *)&p_Var19->Type; + local_b4 = p_Var19; + } + p_Var19 = p_Var20; + } while (*(undefined1 *)((int)&p_Var20->CreatorBackTraceIndexHigh + 1) == '\0'); + } + if ((local_b4 == *(PRTL_CRITICAL_SECTION_DEBUG *)((int)local_54 + 4)) || + ((_LIST_ENTRY *)local_18[(int)local_34 * 8 + 4] < (local_b4->ProcessLocksList).Blink) + ) { + local_3c = *(PRTL_CRITICAL_SECTION_DEBUG *)((int)local_54 + 4); + pp_Var21 = &local_3c; + } + else { + pp_Var21 = &local_b4; + } + p_Var19 = *pp_Var21; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x25; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_100386dd; + } + } + else { +LAB_100386dd: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x26; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete SUCCEEDED " + ); + } + } + if (p_Var19 == *(PRTL_CRITICAL_SECTION_DEBUG *)(local_14 + 0x60)) { + local_34 = (int *)((int)local_34 + 1); + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x2a; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + iVar12 = DAT_100b5e9c; + if ((DAT_100b5e9c == 0) && + (iVar23 = FUN_1001ca40(&DAT_100b5df0), iVar12 = DAT_100b5e9c, iVar23 == 0)) { + iVar12 = 0; + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x2b; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 == -1) goto LAB_10038ab8; + FUN_10018190(&DAT_100b5df0); + } + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,iVar12,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x2c; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogWarning + (0x100b5df0,L" [%s] - WriteHandle(%d) is not find in WriteComplete"); + } + } + else { + iVar23 = 0; + if (0 < (int)p_Var19->ContentionCount) { + iVar22 = 0; + do { + if ((local_20 <= local_34) || + ((p_Var19->ProcessLocksList).Blink != + *(_LIST_ENTRY **)(iVar12 + 0x10 + (int)local_18))) break; + *(undefined4 *)(iVar22 + 0x10 + p_Var19->Flags) = + *(undefined4 *)(iVar12 + 8 + (int)local_18); + *(undefined4 *)(iVar22 + 0x14 + p_Var19->Flags) = + *(undefined4 *)(iVar12 + 0x14 + (int)local_18); + local_34 = (int *)((int)local_34 + 1); + p_Var19->EntryCount = p_Var19->EntryCount + 1; + iVar23 = iVar23 + 1; + iVar12 = iVar12 + 0x20; + iVar22 = iVar22 + 0x18; + } while (iVar23 < (int)p_Var19->ContentionCount); + } + if (p_Var19->EntryCount != p_Var19->ContentionCount) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x27; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + iVar12 = DAT_100b5e9c; + if ((DAT_100b5e9c == 0) && + (iVar23 = FUN_1001ca40(&DAT_100b5df0), iVar12 = DAT_100b5e9c, iVar23 == 0)) { + iVar12 = 0; + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x28; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 == -1) goto LAB_100388f2; + FUN_10018190(&DAT_100b5df0); + } + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,iVar12,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x29; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogWarning + (0x100b5df0, + L" [%s] - WriteHandle(%d): WriteComplete is not equal to WriteSize"); + } + } +LAB_100388f2: + piVar18 = local_40; + puVar13 = FUN_1002b960(&local_a4,(char *)local_40,local_40[1],&p_Var19->Flags); + ppuVar5 = local_44; + if (local_a0 == 0x3ffffffe) goto LAB_10038efb; + local_a0 = local_a0 + 1; + piVar18[1] = (int)puVar13; + *(undefined4 **)puVar13[1] = puVar13; + puVar13 = FUN_1002ba70(&local_78,(char *)local_44,local_44[1], + &p_Var19->ContentionCount); + if (local_74 == 0x3ffffffe) goto LAB_10038efb; + local_74 = local_74 + 1; + ppuVar5[1] = (undefined *)puVar13; + *(undefined4 **)puVar13[1] = puVar13; + local_1c = (PRTL_CRITICAL_SECTION_DEBUG) + ((int)&local_1c->Type + p_Var19->ContentionCount); + FUN_1002cd40(local_54,&local_94,(int *)p_Var19); + } +LAB_10038ab8: + } while (local_34 < local_20); + if (local_20 != (int *)0x0) { + CoTaskMemFree(local_18); + } + } + if (local_4c != 0) { + CoTaskMemFree(local_50); + } + } + p_Var19 = local_1c; + if ((int)local_1c < 1) goto LAB_10038d9f; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x30; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10038cac; + } + } + else { +LAB_10038cac: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x31; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - formatting responses. Count[%d]"); + } + } + _Dst = CoTaskMemAlloc((int)p_Var19 * 0x18); + piVar17 = local_40; + piVar18 = (int *)*local_40; + local_30 = _Dst; + if (_Dst != (_RTL_CRITICAL_SECTION *)0x0) { + puVar13 = (undefined4 *)*local_44; + if (piVar18 != local_40) { + do { + memcpy(_Dst,(void *)piVar18[2],puVar13[2] * 0x18); + _Dst = _Dst + puVar13[2]; + CoTaskMemFree((LPVOID)piVar18[2]); + piVar18 = (int *)*piVar18; + puVar13 = (undefined4 *)*puVar13; + } while (piVar18 != local_40); + } + goto LAB_10038d96; + } + local_2c = (_LIST_ENTRY *)0x8007000e; + for (; p_Var19 = (PRTL_CRITICAL_SECTION_DEBUG)0x0, piVar18 != piVar17; + piVar18 = (int *)*piVar18) { + CoTaskMemFree((LPVOID)piVar18[2]); + } + } + } + local_3c = new(0x10); + if (local_3c == (PRTL_CRITICAL_SECTION_DEBUG)0x0) goto LAB_10038f1d; + *(PRTL_CRITICAL_SECTION_DEBUG *)&local_3c->Type = p_Var19; + local_3c->CriticalSection = local_30; + (local_3c->ProcessLocksList).Flink = local_24; + (local_3c->ProcessLocksList).Blink = local_2c; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x32; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + uVar24 = DAT_100cce9c; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_10038e5e; + } + } + else { +LAB_10038e5e: + if ((DAT_100b5e94 != (code *)0x0) && + (cVar10 = (*DAT_100b5e94)(DAT_100b5df4,uVar24,0), cVar10 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8._0_1_ = 0x33; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8._0_1_ = 0xe; + } + CWrapLogger_LogCustom + (0x100b5df0,DAT_100cce9c, + L"NameSpace::ProcessWriteCompleteWorker - submitting response to queue"); + } + } + iVar12 = local_14; + p_Var1 = (LPCRITICAL_SECTION)(local_14 + 0x2c); + local_94 = p_Var1; + EnterCriticalSection(p_Var1); + local_8._0_1_ = 0x34; + pcVar3 = *(char **)(iVar12 + 0x44); + puVar13 = FUN_1002b0c0((void *)(iVar12 + 0x44),pcVar3,*(undefined4 *)(pcVar3 + 4),&local_3c); + if (*(int *)(iVar12 + 0x48) == 0x3ffffffe) { +LAB_10038efb: + /* WARNING: Subroutine does not return */ + std::_Xlength_error("list too long"); + } + *(int *)(iVar12 + 0x48) = *(int *)(iVar12 + 0x48) + 1; + *(undefined4 **)(pcVar3 + 4) = puVar13; + *(undefined4 **)puVar13[1] = puVar13; + local_8._0_1_ = 0xe; + LeaveCriticalSection(p_Var1); +LAB_10038f1d: + piVar18 = local_40; + puVar15 = local_90; + local_8._0_1_ = 0x35; + puVar13 = (undefined4 *)*local_90; + *local_90 = local_90; + local_90[1] = local_90; + local_8c = 0; + while (puVar13 != puVar15) { + puVar4 = (undefined4 *)*puVar13; + delete(puVar13); + puVar13 = puVar4; + } + local_8._0_1_ = 0xb; + delete(puVar15); + ppuVar8 = local_44; + local_8._0_1_ = 0x36; + ppuVar5 = (undefined **)*local_44; + *local_44 = (undefined *)local_44; + local_44[1] = (undefined *)local_44; + local_74 = 0; + while (ppuVar5 != ppuVar8) { + ppuVar6 = (undefined **)*ppuVar5; + delete(ppuVar5); + ppuVar5 = ppuVar6; + } + local_8._0_1_ = 8; + delete(ppuVar8); + local_8._0_1_ = 0x37; + piVar17 = (int *)*piVar18; + *piVar18 = (int)piVar18; + piVar18[1] = (int)piVar18; + local_a0 = 0; + while (piVar17 != piVar18) { + piVar7 = (int *)*piVar17; + delete(piVar17); + piVar17 = piVar7; + } + local_8._0_1_ = 5; + delete(piVar18); + piVar17 = local_48; + local_8._0_1_ = 0x38; + piVar18 = (int *)*local_48; + *local_48 = (int)local_48; + local_48[1] = (int)local_48; + local_ac = 0; + while (piVar18 != piVar17) { + piVar7 = (int *)*piVar18; + delete(piVar18); + piVar18 = piVar7; + } + local_8 = CONCAT31(local_8._1_3_,2); + delete(piVar17); + piVar17 = local_28; + local_8 = 0x39; + piVar18 = (int *)*local_28; + *local_28 = (int)local_28; + local_28[1] = (int)local_28; + local_68 = 0; + while (piVar18 != piVar17) { + piVar7 = (int *)*piVar18; + delete(piVar18); + piVar18 = piVar7; + } + local_8 = 0xffffffff; + delete(piVar17); + ExceptionList = local_10; + return; +} + + +``` + +## FUN_1003adf0 at 1003adf0 + +Signature: `undefined __fastcall FUN_1003adf0(void * param_1)` + +```c + +void __fastcall FUN_1003adf0(void *param_1) + +{ + _LIST_ENTRY *p_Var1; + PRTL_CRITICAL_SECTION_DEBUG p_Var2; + char *pcVar3; + PRTL_CRITICAL_SECTION_DEBUG p_Var4; + uint uVar5; + int iVar6; + undefined4 *puVar7; + int *piVar8; + int iVar9; + undefined4 *puVar10; + PRTL_CRITICAL_SECTION_DEBUG p_Var11; + wchar_t *pwVar12; + undefined4 uVar13; + undefined4 uVar14; + undefined1 local_84 [4]; + uint *local_80; + PRTL_CRITICAL_SECTION_DEBUG local_58; + undefined4 local_54; + undefined **local_4c; + _LIST_ENTRY *local_48; + undefined4 local_44; + uint *local_40; + PRTL_CRITICAL_SECTION_DEBUG local_3c; + uint local_38; + LPVOID local_34; + LPVOID local_30; + void *local_2c; + LPVOID local_28; + uint local_24; + uint local_20; + LPVOID local_1c; + uint local_18; + char local_11; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + puStack_c = &LAB_1005890d; + local_10 = ExceptionList; + uVar5 = DAT_100b1424 ^ (uint)&stack0xfffffffc; + ExceptionList = &local_10; + local_18 = 0; + local_24 = 0; + local_34 = (LPVOID)0x0; + local_28 = (LPVOID)0x0; + local_2c = param_1; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 0; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + } + uVar14 = DAT_100cce94; + local_8 = 0xffffffff; + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4,uVar5); + } + if (DAT_100b5df4 != -1) { + FUN_10018190(&DAT_100b5df0); + goto LAB_1003aeab; + } +LAB_1003aec7: + local_11 = '\0'; + } + else { +LAB_1003aeab: + if (DAT_100b5e94 == (code *)0x0) goto LAB_1003aec7; + local_11 = (*DAT_100b5e94)(DAT_100b5df4,uVar14,0); + } + iVar6 = FUN_10035eb0((int)param_1); + if (iVar6 == 0) { + *(undefined4 *)((int)param_1 + 0x2d0) = 0; + *(undefined4 *)((int)param_1 + 0x2d4) = 0; + FUN_10035c00((int)param_1); + if ((*(char *)((int)param_1 + 0xb9) != '\0') && (*(char *)((int)param_1 + 0xba) != '\0')) { + local_18 = 0x80010006; + *(undefined1 *)((int)param_1 + 0xba) = 0; + } + } + else { + *(undefined1 *)((int)param_1 + 0xba) = 1; + } + iVar6 = FUN_10035eb0((int)param_1); + if (iVar6 == 1) { + if (-1 < (int)local_18) { + local_54 = 0; + local_58 = new(0xc); + if (local_58 == (PRTL_CRITICAL_SECTION_DEBUG)0x0) { + local_40 = (uint *)0x0; + std::exception::exception((exception *)&local_4c,(char **)&local_40); + local_4c = std::bad_alloc::vftable; + local_8 = 0xffffffff; + /* WARNING: Subroutine does not return */ + _CxxThrowException(&local_4c,(ThrowInfo *)&DAT_100a469c); + } + *(PRTL_CRITICAL_SECTION_DEBUG *)&local_58->Type = local_58; + local_58->CriticalSection = (_RTL_CRITICAL_SECTION *)local_58; + local_8 = 3; + FUN_10035620(local_84,&local_11); + local_8 = CONCAT31(local_8._1_3_,5); + FUN_1003a180(param_1,&local_58,local_84); + local_30 = (LPVOID)0x0; + local_18 = FUN_1002f190((int *)&local_30,(int *)&local_58); + if (local_30 != (LPVOID)0x0) { + local_1c = (LPVOID)0x0; + local_20 = 0; + if (DAT_100cce80 == '\0') { + local_18 = FUN_1000e3d0(); + } + if ((int)local_18 < 0) { + piVar8 = FUN_1001b5b0(); + if ((piVar8[0x2b] == 0) && (iVar6 = FUN_1001ca40(piVar8), iVar6 == 0)) { + iVar6 = 0; + } + else { + iVar6 = piVar8[0x2b]; + } + uVar14 = 0; + puVar10 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar10,iVar6,uVar14); + if ((char)uVar5 != '\0') { + pwVar12 = L" [%s] - RegisterItems return 0x%x"; + puVar10 = FUN_1001b5b0(); + CWrapLogger_LogWarning((int)puVar10,pwVar12); + } + } + else { + local_34 = CoTaskMemAlloc(local_20 * 0x18); + if (local_34 == (LPVOID)0x0) { + local_18 = 0x8007000e; + CoTaskMemFree(local_1c); + } + else { + p_Var11 = *(PRTL_CRITICAL_SECTION_DEBUG *)&local_58->Type; + local_24 = local_20; + local_38 = 0; + local_3c = p_Var11; + if (local_20 != 0) { + iVar6 = 0; + puVar10 = (undefined4 *)((int)local_34 + 8); + do { + local_3c = p_Var11; + if (p_Var11 == local_58) break; + puVar10[-2] = *(undefined4 *)(iVar6 + (int)local_1c); + puVar10[-1] = 0; + puVar10[2] = *(undefined4 *)(iVar6 + 8 + (int)local_1c); + puVar10[3] = *(undefined4 *)(iVar6 + 0xc + (int)local_1c); + if (local_11 != '\0') { + uVar13 = 0; + uVar14 = DAT_100cce94; + puVar7 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar7,uVar14,uVar13); + if ((char)uVar5 != '\0') { + pwVar12 = + L"NameSpace::ProcessRegistrationThread Registration Response>> ItemId[%I64d] Status[%d]" + ; + uVar14 = DAT_100cce94; + puVar7 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar7,uVar14,pwVar12); + } + } + p_Var1 = (p_Var11->ProcessLocksList).Flink; + if ((p_Var1[1].Flink == *(_LIST_ENTRY **)(iVar6 + (int)local_1c)) && + (p_Var1[1].Blink == (_LIST_ENTRY *)0x0)) { + *puVar10 = p_Var1[3].Flink; + puVar10[1] = p_Var1[3].Blink; + } + else { + local_44 = 0; + local_48 = *(_LIST_ENTRY **)(iVar6 + (int)local_1c); + FUN_100327a0(local_84,(int *)&local_40,(uint *)&local_48); + if (local_40 == local_80) { + *puVar10 = 0; + puVar10[1] = 0; + piVar8 = FUN_1001b5b0(); + if ((piVar8[0x2b] == 0) && (iVar9 = FUN_1001ca40(piVar8), iVar9 == 0)) { + iVar9 = 0; + } + else { + iVar9 = piVar8[0x2b]; + } + uVar14 = 0; + puVar7 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar7,iVar9,uVar14); + if ((char)uVar5 != '\0') { + pwVar12 = + L" The recieved Item Id [%I64x] no longer exists in the pending registration list" + ; + puVar7 = FUN_1001b5b0(); + CWrapLogger_LogWarning((int)puVar7,pwVar12); + } + } + else { + uVar5 = local_40[4]; + *puVar10 = *(undefined4 *)(uVar5 + 0x18); + puVar10[1] = *(undefined4 *)(uVar5 + 0x1c); + } + } + if (puVar10[2] == 0) { + FUN_100367b0(local_2c,puVar10[-2],puVar10[-1]); + } + p_Var11 = *(PRTL_CRITICAL_SECTION_DEBUG *)&local_3c->Type; + local_38 = local_38 + 1; + iVar6 = iVar6 + 0x20; + puVar10 = puVar10 + 6; + local_3c = p_Var11; + } while (local_38 < local_20); + } + param_1 = local_2c; + CoTaskMemFree(local_1c); + } + } + CoTaskMemFree(local_30); + FUN_1002ec30((int *)&local_58); + FUN_10035480((int)local_84); + } + local_8 = CONCAT31(local_8._1_3_,3); + FUN_10034f30((int)local_84); + p_Var4 = local_58; + local_8 = 7; + p_Var11 = *(PRTL_CRITICAL_SECTION_DEBUG *)&local_58->Type; + *(PRTL_CRITICAL_SECTION_DEBUG *)&local_58->Type = local_58; + local_58->CriticalSection = (_RTL_CRITICAL_SECTION *)local_58; + local_54 = 0; + while (p_Var11 != p_Var4) { + p_Var2 = *(PRTL_CRITICAL_SECTION_DEBUG *)&p_Var11->Type; + delete(p_Var11); + p_Var11 = p_Var2; + } + local_8 = 0xffffffff; + delete(p_Var4); + if ((int)local_24 < 1) goto LAB_1003b248; + } +LAB_1003b251: + if (local_11 != '\0') { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 8; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + uVar5 = FUN_1001b4e0(&DAT_100b5df0,DAT_100cce94,0); + if ((char)uVar5 != '\0') { + pwVar12 = L"NameSpace::ProcessRegistrationThread submitting to Queue count[%d] hr[0x%x]"; + uVar14 = DAT_100cce94; + puVar10 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar10,uVar14,pwVar12); + } + } + local_40 = new(0x10); + if (local_40 != (uint *)0x0) { + *local_40 = local_24; + local_40[1] = (uint)local_34; + local_40[2] = (uint)local_28; + p_Var11 = (PRTL_CRITICAL_SECTION_DEBUG)((int)param_1 + 0x16c); + local_28 = (LPVOID)0x0; + local_40[3] = local_18; + local_3c = p_Var11; + EnterCriticalSection((LPCRITICAL_SECTION)p_Var11); + local_8 = 9; + pcVar3 = *(char **)((int)param_1 + 0x184); + puVar10 = FUN_1002b2c0((undefined4 *)((int)param_1 + 0x184),pcVar3,*(undefined4 *)(pcVar3 + 4) + ,&local_40); + if (*(int *)((int)param_1 + 0x188) == 0x3ffffffe) { + /* WARNING: Subroutine does not return */ + std::_Xlength_error("list too long"); + } + *(int *)((int)param_1 + 0x188) = *(int *)((int)param_1 + 0x188) + 1; + *(undefined4 **)(pcVar3 + 4) = puVar10; + *(undefined4 **)puVar10[1] = puVar10; + local_8 = 0xffffffff; + LeaveCriticalSection((LPCRITICAL_SECTION)p_Var11); + goto LAB_1003b399; + } + } + else { +LAB_1003b248: + if (local_18 != 0) goto LAB_1003b251; + } + if (local_34 != (LPVOID)0x0) { + CoTaskMemFree(local_34); + } +LAB_1003b399: + if (local_28 != (LPVOID)0x0) { + CoTaskMemFree(local_28); + } + ExceptionList = local_10; + return; +} + + +``` + +## FUN_1003bf50 at 1003bf50 + +Signature: `undefined __fastcall FUN_1003bf50(LPVOID param_1)` + +```c + +void __fastcall FUN_1003bf50(LPVOID param_1) + +{ + char cVar1; + HANDLE pvVar2; + int iVar3; + int iVar4; + LSTATUS LVar5; + HKEY hKey; + HKEY local_28; + undefined4 local_24; + undefined4 local_20; + DWORD local_1c [3]; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + + local_8 = 0xffffffff; + puStack_c = &LAB_10058ab2; + local_10 = ExceptionList; + ExceptionList = &local_10; + pvVar2 = CreateEventW((LPSECURITY_ATTRIBUTES)0x0,0,0,(LPCWSTR)0x0); + *(HANDLE *)((int)param_1 + 0xe0) = pvVar2; + pvVar2 = CreateEventW((LPSECURITY_ATTRIBUTES)0x0,0,0,(LPCWSTR)0x0); + *(HANDLE *)((int)param_1 + 0xe4) = pvVar2; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 0; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + iVar4 = DAT_100b5eb0; + if ((DAT_100b5eb0 == 0) && (iVar3 = FUN_1001ca40(&DAT_100b5df0), iVar4 = DAT_100b5eb0, iVar3 == 0) + ) { + iVar4 = 0; + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 1; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(&DAT_100b5df4); + } + if (DAT_100b5df4 == -1) goto LAB_1003c0cb; + FUN_10018190(&DAT_100b5df0); + } + if ((DAT_100b5e94 != (code *)0x0) && + (cVar1 = (*DAT_100b5e94)(DAT_100b5df4,iVar4,0), cVar1 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 2; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + FUN_10029270(&DAT_100b5df0,L"Begin to Create Namespace Worker Thread"); + } +LAB_1003c0cb: + local_1c[2] = 0xfa; + local_28 = (HKEY)0x0; + local_24 = 0; + local_20 = 0; + local_8 = 3; + iVar4 = FUN_10017b40(&local_28,(HKEY)0x80000002,L"SOFTWARE\\ArchestrA\\Framework\\Nmx",1); + hKey = local_28; + if (iVar4 == 0) { + local_1c[1] = 4; + LVar5 = RegQueryValueExW(local_28,L"NameSpacePublishTimer",(LPDWORD)0x0,local_1c, + (LPBYTE)(local_1c + 2),local_1c + 1); + if ((LVar5 == 0) && (local_1c[0] == 4)) { + DAT_100b0f48 = local_1c[2]; + } + if (hKey != (HKEY)0x0) { + RegCloseKey(hKey); + hKey = (HKEY)0x0; + local_28 = (HKEY)0x0; + } + local_24 = 0; + } + if (DAT_100b0f48 == 0) { + DAT_100b0f48 = 0xfa; + } + pvVar2 = CreateThread((LPSECURITY_ATTRIBUTES)0x0,0,FUN_1003ba00,param_1,0, + (LPDWORD)((int)param_1 + 0xdc)); + *(HANDLE *)((int)param_1 + 0xd8) = pvVar2; + local_8 = 0xffffffff; + if (hKey != (HKEY)0x0) { + RegCloseKey(hKey); + } + ExceptionList = local_10; + return; +} + + +``` + +## FUN_10049070 at 10049070 + +Signature: `BSTR __stdcall FUN_10049070(int param_1)` + +```c + +BSTR FUN_10049070(int param_1) + +{ + void *this; + GUID *pGVar1; + void *this_00; + bool bVar2; + char cVar3; + undefined4 uVar4; + uint uVar5; + undefined4 *puVar6; + undefined3 extraout_var; + undefined3 extraout_var_00; + undefined3 extraout_var_01; + int iVar7; + HRESULT HVar8; + BSTR pOVar9; + undefined3 extraout_var_03; + undefined3 extraout_var_04; + undefined3 extraout_var_05; + undefined3 extraout_var_06; + code *pcVar10; + GUID *pGVar11; + GUID *in_stack_0000001c; + GUID *in_stack_00000020; + short in_stack_00000024; + BSTR in_stack_00000038; + ulong uVar12; + wchar_t *pwVar13; + uint *puVar14; + undefined4 uVar15; + undefined4 uVar16; + undefined4 uVar17; + LPVOID *ppvVar18; + undefined4 uVar19; + undefined4 uVar20; + undefined4 uVar21; + undefined4 uVar22; + undefined4 uVar23; + undefined4 uVar24; + undefined4 uVar25; + undefined4 uVar26; + undefined4 uVar27; + uint local_20; + LPVOID local_1c; + void *local_18; + BSTR local_14; + void *local_10; + undefined1 *puStack_c; + undefined4 local_8; + undefined3 extraout_var_02; + + local_8 = 0xffffffff; + puStack_c = &LAB_1005ac22; + local_10 = ExceptionList; + ExceptionList = &local_10; + local_14 = (BSTR)0x0; + *(BSTR *)(param_1 + 0xd0) = in_stack_00000038; + uVar4 = FUN_1003ce40((int)in_stack_00000038); + if ((char)uVar4 == '\0') { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 0; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + uVar5 = FUN_1001b4e0(&DAT_100b5df0,DAT_100cce9c,0); + if ((char)uVar5 != '\0') { + pwVar13 = L"NamespaceMgr::FillWriteUserToken - hInstance = %ld"; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + *(short *)(param_1 + 0xcc) = in_stack_00000024; + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 1; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + uVar5 = FUN_1001b4e0(&DAT_100b5df0,DAT_100cce9c,0); + if ((char)uVar5 != '\0') { + uVar4._0_1_ = '\0'; + uVar4._1_1_ = '\0'; + uVar4._2_1_ = '\0'; + uVar4._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar4); + if ((char)uVar5 != '\0') { + pwVar13 = L"NamespaceMgr::FillWriteUserToken - Verified flag [%d]"; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } + pGVar1 = in_stack_0000001c; + bVar2 = FUN_100086e0((byte *)in_stack_0000001c,&DAT_100699f8); + pGVar11 = in_stack_00000020; + pcVar10 = SysFreeString_exref; + if (((CONCAT31(extraout_var,bVar2) == 0) && + (bVar2 = FUN_100086e0((byte *)in_stack_00000020,&DAT_100699f8), + CONCAT31(extraout_var_00,bVar2) != 0)) && (in_stack_00000024 == -1)) { + uVar15._0_1_ = '\0'; + uVar15._1_1_ = '\0'; + uVar15._2_1_ = '\0'; + uVar15._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar15); + if ((char)uVar5 != '\0') { + uVar16._0_1_ = '\0'; + uVar16._1_1_ = '\0'; + uVar16._2_1_ = '\0'; + uVar16._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar16); + if ((char)uVar5 != '\0') { + FUN_10048620(&stack0x00000020,pGVar1); + local_8 = 2; + pwVar13 = + L"NamespaceMgr::FillWriteUserToken - Secured Write - User GUID [%s] :: Verified Flag [%d]" + ; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + local_8 = 0xffffffff; + SysFreeString((BSTR)in_stack_00000020); + } + } + FUN_10048af0(local_18,param_1,pGVar1); + } + else { + bVar2 = FUN_100086e0((byte *)pGVar1,&DAT_100699f8); + if (CONCAT31(extraout_var_01,bVar2) == 0) { + bVar2 = FUN_100086e0((byte *)pGVar11,&DAT_100699f8); + iVar7 = CONCAT31(extraout_var_02,bVar2); + if ((iVar7 == 0) && (in_stack_00000024 == -1)) { + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,iVar7); + if ((char)uVar5 != '\0') { + uVar17._0_1_ = '\0'; + uVar17._1_1_ = '\0'; + uVar17._2_1_ = '\0'; + uVar17._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar17); + if ((char)uVar5 != '\0') { + FUN_10048620(&local_14,pGVar11); + local_8 = 3; + FUN_10048620(&stack0x0000001c,pGVar1); + local_8._0_1_ = 4; + pwVar13 = + L"NamespaceMgr::FillWriteUserToken - WriteVerified - User GUID [%s] :: Verified GUID [%s] :: Verified Flag [%d]" + ; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + local_8 = CONCAT31(local_8._1_3_,3); + SysFreeString((BSTR)in_stack_0000001c); + local_8 = 0xffffffff; + SysFreeString(local_14); + } + } + this = (void *)(param_1 + 0xc4); + FUN_1004fd30((int)this); + this_00 = local_18; + local_20 = 0; + local_1c = (LPVOID)0x0; + HVar8 = FUN_10048af0(local_18,param_1,pGVar1); + if (HVar8 != 0) { + FUN_1004fe00(this,&local_20); + } + in_stack_00000038 = (wchar_t *)0x0; + local_8 = 5; + pOVar9 = (BSTR)FUN_10042330((int *)&stack0x00000038); + local_14 = (BSTR)FUN_10048690(this_00,in_stack_00000020,pOVar9); + if (local_14 == (BSTR)0x0) { + FUN_1003ead0(&stack0x00000038); + Sleep(100); + ppvVar18 = &local_1c; + puVar14 = &local_20; + in_stack_0000001c = (GUID *)&stack0xffffffc4; + pOVar9 = (BSTR)FUN_10048530(&stack0x00000038); + local_8 = CONCAT31((int3)((uint)local_8 >> 8),5); + HVar8 = FUN_10042a00(local_18,pOVar9,puVar14,ppvVar18); + uVar20._0_1_ = '\0'; + uVar20._1_1_ = '\0'; + uVar20._2_1_ = '\0'; + uVar20._3_1_ = '\0'; + if (HVar8 == 0) { + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar20); + if ((char)uVar5 != '\0') { + uVar19._0_1_ = '\0'; + uVar19._1_1_ = '\0'; + uVar19._2_1_ = '\0'; + uVar19._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar19); + if ((char)uVar5 != '\0') { + pwVar13 = + L"NamespaceMgr::FillWriteUserToken - Verifier [%s] found in UserToken Map"; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } + FUN_1004fd60(this,in_stack_00000038); + FUN_1004fe00(this,&local_20); + if (local_1c != (LPVOID)0x0) { + CoTaskMemFree(local_1c); + } + } + else { + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar20); + if ((char)uVar5 != '\0') { + uVar21._0_1_ = '\0'; + uVar21._1_1_ = '\0'; + uVar21._2_1_ = '\0'; + uVar21._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar21); + if ((char)uVar5 != '\0') { + pwVar13 = + L"NamespaceMgr::FillWriteUserToken - Verifier [%s] not found in UserToken Map"; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } + } + } + local_8 = 0xffffffff; + SysFreeString(in_stack_00000038); + pcVar10 = SysFreeString_exref; + pGVar11 = in_stack_00000020; + } + } + } + bVar2 = FUN_100086e0((byte *)pGVar1,&DAT_100699f8); + if (((CONCAT31(extraout_var_03,bVar2) == 0) && + (bVar2 = FUN_100086e0((byte *)pGVar11,&DAT_100699f8), CONCAT31(extraout_var_04,bVar2) != 0)) + && (in_stack_00000024 == 0)) { + uVar22._0_1_ = '\0'; + uVar22._1_1_ = '\0'; + uVar22._2_1_ = '\0'; + uVar22._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar22); + if ((char)uVar5 != '\0') { + uVar23._0_1_ = '\0'; + uVar23._1_1_ = '\0'; + uVar23._2_1_ = '\0'; + uVar23._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar23); + if ((char)uVar5 != '\0') { + FUN_10048620(&stack0x00000020,pGVar1); + local_8 = 7; + pwVar13 = + L"NamespaceMgr::FillWriteUserToken - Operate/Tune/Configure Write - User GUID [%s] :: Verified Flag [%d]" + ; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + local_8 = 0xffffffff; + (*pcVar10)(); + } + } + FUN_10048af0(local_18,param_1,pGVar1); + } + bVar2 = FUN_100086e0((byte *)pGVar1,&DAT_100699f8); + if (CONCAT31(extraout_var_05,bVar2) == 0) { + bVar2 = FUN_100086e0((byte *)pGVar11,&DAT_100699f8); + if (CONCAT31(extraout_var_06,bVar2) != 0) { + uVar26._0_1_ = '\0'; + uVar26._1_1_ = '\0'; + uVar26._2_1_ = '\0'; + uVar26._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar26); + if ((char)uVar5 != '\0') { + uVar27._0_1_ = '\0'; + uVar27._1_1_ = '\0'; + uVar27._2_1_ = '\0'; + uVar27._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar27); + if ((char)uVar5 != '\0') { + pwVar13 = L"NamespaceMgr::FillWriteUserToken - VerifierId is NULL :: Verified Flag [%d]" + ; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } + FUN_1004fcc0(param_1 + 0xc4); + } + } + else { + uVar24._0_1_ = '\0'; + uVar24._1_1_ = '\0'; + uVar24._2_1_ = '\0'; + uVar24._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar24); + if ((char)uVar5 != '\0') { + uVar25._0_1_ = '\0'; + uVar25._1_1_ = '\0'; + uVar25._2_1_ = '\0'; + uVar25._3_1_ = '\0'; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + uVar5 = FUN_1001b4e0(puVar6,uVar12,uVar25); + if ((char)uVar5 != '\0') { + pwVar13 = L"NamespaceMgr::FillWriteUserToken - UserId is NULL :: Verified Flag [%d]"; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } + FUN_1004fcc0(param_1 + 0xbc); + } + } + else { + FUN_1004fd30(param_1 + 0xbc); + local_20 = 0; + local_1c = (LPVOID)0x0; + FUN_1004fe00((void *)(param_1 + 0xbc),&local_20); + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 8; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + uVar5 = FUN_1001b4e0(&DAT_100b5df0,DAT_100cce9c,0); + if ((char)uVar5 != '\0') { + pwVar13 = L"NamespaceMgr::FillWriteUserToken - Supervisory Write - MxOperationType [%ld]"; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 9; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(); + } + if (DAT_100b5df4 == -1) goto LAB_100497ce; + FUN_10018190(&DAT_100b5df0); + } + if ((DAT_100b5e94 != (code *)0x0) && (cVar3 = (*DAT_100b5e94)(), cVar3 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 10; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + uVar5 = FUN_1001b4e0(&DAT_100b5df0,DAT_100cce9c,0); + if ((char)uVar5 != '\0') { + pwVar13 = L"Write to item %d in Namespace id %d"; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } +LAB_100497ce: + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 0xb; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + if (DAT_100b5df4 == -1) { + if (((DAT_100b5df0 != 0) || (FUN_10019b00(&DAT_100b5df0), DAT_100b5df0 != 0)) && + (DAT_100b5e8c != (code *)0x0)) { + (*DAT_100b5e8c)(); + } + if (DAT_100b5df4 == -1) { + ExceptionList = local_10; + return local_14; + } + FUN_10018190(&DAT_100b5df0); + } + if ((DAT_100b5e94 != (code *)0x0) && (cVar3 = (*DAT_100b5e94)(), cVar3 != '\0')) { + if ((DAT_100b5ec4 & 1) == 0) { + DAT_100b5ec4 = DAT_100b5ec4 | 1; + local_8 = 0xc; + FUN_10017f80(&DAT_100b5df0); + _atexit(FUN_1005d930); + local_8 = 0xffffffff; + } + uVar5 = FUN_1001b4e0(&DAT_100b5df0,DAT_100cce9c,0); + if ((char)uVar5 != '\0') { + pwVar13 = L"NamespaceMgr::FillWriteUserToken - submit to write queue.."; + uVar12 = DAT_100cce9c; + puVar6 = FUN_1001b5b0(); + CWrapLogger_LogCustom((int)puVar6,uVar12,pwVar13); + } + } + ExceptionList = local_10; + return local_14; +} + + +``` + diff --git a/analysis/ghidra/exports/aaMxDataConsumer.dll.functions.tsv b/analysis/ghidra/exports/aaMxDataConsumer.dll.functions.tsv new file mode 100644 index 0000000..5ebd214 --- /dev/null +++ b/analysis/ghidra/exports/aaMxDataConsumer.dll.functions.tsv @@ -0,0 +1,4425 @@ +entry name signature body_size call_count interesting_calls +1000100c .ctor void .ctor(void) 7 0 +10001020 .ctor void .ctor(void) 7 0 +10001034 .ctor void .ctor(char * timePeriod, uint * param_2) 27 0 +1000105c TimeHasPassed bool TimeHasPassed(undefined4 param_1, uint * param_2) 59 0 +100010a4 .ctor void .ctor(char * ASBProxy, uint * param_2) 30 0 +100010d0 SupportsArrayElementWrites bool SupportsArrayElementWrites(void) 2 0 +100010e0 .ctor void .ctor(char * ASBProxy, char * param_2) 14 0 +100010fc SupportsArrayElementWrites bool SupportsArrayElementWrites(void) 2 0 +1000110c PtrToStringChars char PtrToStringChars(undefined4 param_1, char * param_2) 15 0 +10001134 .cctor void .cctor(undefined4 param_1, int param_2) 11 0 +1000114c .cctor void .cctor(undefined4 param_1, int * param_2) 17 0 +1000116c IsEqualGUID int IsEqualGUID(char param_1, int * param_2) 62 0 +100011c4 FormatMessage uint FormatMessage(void) 16 0 +100011f4 HRESULT_FROM_WIN32 int HRESULT_FROM_WIN32(void) 21 0 +10001224 wmemcpy pointer wmemcpy(void) 11 0 +10001244 wmemmove pointer wmemmove(void) 11 0 +10001264 ATL._AtlGetConversionACP uint ATL._AtlGetConversionACP(undefined4 param_1, int * param_2) 2 0 +10001284 ATL._AtlRaiseException void ATL._AtlRaiseException(void) 10 0 +100012a4 ATL.CAtlException.{ctor} pointer ATL.CAtlException.{ctor}(void) 5 0 +100012c4 ATL.AtlThrowImpl void ATL.AtlThrowImpl(undefined4 param_1, int param_2) 17 0 +100012f4 ATL.AtlThrowLastWin32 void ATL.AtlThrowLastWin32(undefined4 param_1, int param_2) 32 0 +10001334 ATL.AtlCrtErrorCheck int ATL.AtlCrtErrorCheck(undefined4 nError, char * param_2) 366 0 +100014c4 ATL.Checked.wcsncpy_s int ATL.Checked.wcsncpy_s(int _Dest, char * _SizeInChars) 376 0 +10001654 ATL.CComCriticalSection.Term int ATL.CComCriticalSection.Term(void) 8 0 +10001674 ATL.CComBSTR.{ctor} pointer ATL.CComBSTR.{ctor}(void) 5 0 +10001694 ATL.CComBSTR.Length uint ATL.CComBSTR.Length(void) 8 0 +100016b4 ATL.CComBSTR..PA_W pointer ATL.CComBSTR..PA_W(void) 3 0 +100016d4 ATL.CComBSTR.& pointer ATL.CComBSTR.&(void) 2 0 +100016f4 ATL.CComBSTR.! bool ATL.CComBSTR.!(undefined4 param_1, byte * param_2) 7 0 +10001714 ATL.CComBSTR.== pointer ATL.CComBSTR.==(undefined4 param_1, byte * param_2) 7 0 +10001734 ATL.CComBSTR.{dtor} void ATL.CComBSTR.{dtor}(undefined4 param_1, undefined2 param_2) 8 0 +10001754 ATL.CComVariant.Copy int ATL.CComVariant.Copy(char param_1, int pSrc) 8 0 +10001774 ATL.CComVariant.InternalCopy void ATL.CComVariant.InternalCopy(char * CComVariant0, int pSrc) 28 0 +100017a4 ATL.CHandle.Attach void ATL.CHandle.Attach(void) 4 0 +100017c4 ATL.CHandle.Detach pointer ATL.CHandle.Detach(void) 6 0 +100017e4 ATL.CAtlComModule.Term void ATL.CAtlComModule.Term(undefined4 param_1, int param_2) 77 0 +10001854 ATL.CAtlReleaseManagedClassFactories.{ctor} pointer ATL.CAtlReleaseManagedClassFactories.{ctor}(void) 2 0 +10001874 ATL.CAtlReleaseManagedClassFactories.{dtor} void ATL.CAtlReleaseManagedClassFactories.{dtor}(void) 11 0 +10001894 ATL.CComModule.GetModuleInstance pointer ATL.CComModule.GetModuleInstance(void) 9 0 +100018b4 ATL.CRegKey.Detach pointer ATL.CRegKey.Detach(void) 16 0 +100018e4 ATL.CRegKey.Attach void ATL.CRegKey.Attach(void) 14 0 +10001914 ATL.?A0xda2128e9.AtlGetDirLen uint ATL.?A0xda2128e9.AtlGetDirLen(undefined4 lpszPathName, ushort * param_2) 52 0 +10001964 ATL.CComTypeInfoHolder.stringdispid.{dtor} void ATL.CComTypeInfoHolder.stringdispid.{dtor}(undefined4 param_1, undefined2 param_2) 8 0 +10001984 _com_util.CheckError void _com_util.CheckError(undefined4 hr, byte param_2) 11 0 +100019a4 _bstr_t.{ctor} pointer _bstr_t.{ctor}(void) 5 0 +100019c4 _bstr_t.Data_t.{ctor} pointer _bstr_t.Data_t.{ctor}(byte param_1) 38 0 +10001a04 _bstr_t.Data_t.{ctor} pointer _bstr_t.Data_t.{ctor}(undefined4 param_1, char * bstr) 50 0 +10001a54 _bstr_t.Data_t.AddRef uint _bstr_t.Data_t.AddRef(undefined4 param_1, char param_2) 14 0 +10001a84 _bstr_t.Data_t.GetWString pointer _bstr_t.Data_t.GetWString(void) 2 0 +10001aa4 _bstr_t.Data_t.Length uint _bstr_t.Data_t.Length(undefined4 param_1, int param_2) 16 0 +10001ad4 _bstr_t.Data_t.new pointer _bstr_t.Data_t.new(void) 7 0 +10001af4 _bstr_t.Data_t._Free void _bstr_t.Data_t._Free(undefined4 param_1, int param_2, undefined4 param_3, byte param_4) 27 0 +10001b24 _variant_t.{ctor} pointer _variant_t.{ctor}(byte param_1, char * varSrc) 26 0 +10001b54 _com_error.{ctor} pointer _com_error.{ctor}(undefined4 param_1, int hr, undefined4 perrinfo) 43 0 +10001b94 _com_error.{ctor} pointer _com_error.{ctor}(undefined4 param_1, int that) 51 0 +10001be4 _com_error.{dtor} void _com_error.{dtor}(undefined4 param_1, int param_2) 44 0 +10001c24 _com_error.Error int _com_error.Error(void) 5 0 +10001c44 _com_error.ErrorInfo pointer _com_error.ErrorInfo(undefined4 param_1, int param_2, uint param_3) 26 0 +10001c74 _com_error.HRESULTToWCode ushort _com_error.HRESULTToWCode(undefined4 param_1, undefined4 param_2) 27 0 +10001ca4 CWrapLogger.{ctor} pointer CWrapLogger.{ctor}(undefined4 param_1, undefined4 param_2) 291 0 +10001de4 CWrapLogger.SetIdentityName void CWrapLogger.SetIdentityName(undefined4 param_1, int pIdentityName) 29 0 +10001e24 CWrapLogger.UnloadLoggerDLL bool CWrapLogger.UnloadLoggerDLL(undefined4 param_1, int param_2) 295 0 +10001f64 CWrapLogger.Uninitialize bool CWrapLogger.Uninitialize(char * param_1, char * param_2, int param_3, undefined4 param_4, byte param_5) 53 0 +10001fb4 CWrapLogger.SetDefaultIdentity void CWrapLogger.SetDefaultIdentity(int param_1, int * param_2) 116 0 +10002044 CWrapLogger.ReadPathFromRegistry pointer CWrapLogger.ReadPathFromRegistry(undefined4 CWrapLogger0, char * szPath) 55 0 +10002094 std._Bool_function void std._Bool_function(void) 1 0 +100020b4 std.bad_alloc.{ctor} pointer std.bad_alloc.{ctor}(undefined4 bad_alloc0, char * _Message) 33 0 +10002114 std.bad_alloc.__vecDelDtor pointer std.bad_alloc.__vecDelDtor(undefined4 param_1, byte * param_2, int param_3) 64 0 +10002164 std.bad_alloc.{dtor} void std.bad_alloc.{dtor}(void) 14 0 +10002190 FUN_10002190 undefined FUN_10002190(void) 6 0 +100021a4 std._Exception_ptr.{ctor} pointer std._Exception_ptr.{ctor}(int _Exception_ptr0) 9 0 +100021c4 std.char_traits.length uint std.char_traits.length(undefined4 _First, ushort * param_2) 26 0 +100021f4 std.char_traits.copy pointer std.char_traits.copy(void) 11 0 +10002214 std.char_traits.move pointer std.char_traits.move(void) 11 0 +10002234 std.char_traits.assign void std.char_traits.assign(void) 5 0 +10002254 std.char_traits.eq_int_type pointer std.char_traits.eq_int_type(int _Left, byte * param_2) 8 0 +10002274 std.char_traits.eof int std.char_traits.eof(int _FileHandle) 6 0 +10002294 std._Iterator_base12._Adopt void std._Iterator_base12._Adopt(void) 8 0 +100022b4 std.allocator.{ctor} pointer std.allocator.{ctor}(void) 2 0 +100022d4 std.runtime_error.{dtor} void std.runtime_error.{dtor}(void) 7 0 +100022f4 std.runtime_error.{ctor} pointer std.runtime_error.{ctor}(undefined4 runtime_error0, char * param_2) 32 0 +10002344 std.locale.{ctor} pointer std.locale.{ctor}(undefined4 param_1, int _Right) 14 0 +10002374 std.system_error.{dtor} void std.system_error.{dtor}(void) 7 0 +10002394 std.system_error.{ctor} pointer std.system_error.{ctor}(undefined4 system_error0, char * param_2) 66 0 +10002424 std.dec pointer std.dec(undefined4 param_1, char * param_2) 19 0 +10002454 std.hex pointer std.hex(char param_1) 19 0 +10002484 ATL.CComPtrBase.{ctor} pointer ATL.CComPtrBase.{ctor}(undefined4 param_1, int * lp) 20 0 +100024b4 ATL.CComPtrBase.{dtor} void ATL.CComPtrBase.{dtor}(undefined4 param_1, int * param_2) 19 0 +100024e4 ATL.CComPtrBase.{dtor} void ATL.CComPtrBase.{dtor}(undefined4 param_1, int * param_2) 19 0 +10002514 ATL.CSimpleArray_>.GetSize int ATL.CSimpleArray_>.GetSize(void) 5 0 +10002534 ATL.CSimpleArray_>.RemoveAll void ATL.CSimpleArray_>.RemoveAll(char param_1, int param_2) 26 0 +10002564 ATL.CSimpleArray_>.[] pointer ATL.CSimpleArray_>.[](undefined4 param_1, int nIndex, undefined4 param_3, undefined2 param_4) 33 0 +100025a4 ATL.CComPtrBase.{dtor} void ATL.CComPtrBase.{dtor}(undefined4 param_1, int * param_2) 19 0 +100025d4 ATL.CComPtrBase..PAUITypeLib@@ pointer ATL.CComPtrBase..PAUITypeLib@@(void) 3 0 +100025f4 ATL.CComPtrBase.& pointer ATL.CComPtrBase.&(void) 2 0 +10002614 ATL.CComPtrBase.-> pointer ATL.CComPtrBase.->(void) 3 0 +10002634 ATL.CComPtrBase.{dtor} void ATL.CComPtrBase.{dtor}(undefined4 param_1, int * param_2) 19 0 +10002664 std.basic_string,std::allocator_>.size uint std.basic_string,std::allocator_>.size(void) 6 0 +10002684 ATL.CA2WEX<128>..PA_W pointer ATL.CA2WEX<128>..PA_W(void) 3 0 +100026a4 ATL.CComPtrBase.{dtor} void ATL.CComPtrBase.{dtor}(undefined4 param_1, int * param_2) 19 0 +100026d4 ATL.CComPtrBase..PAUIErrorInfo@@ pointer ATL.CComPtrBase..PAUIErrorInfo@@(void) 3 0 +100026f4 ATL.CComPtrBase.& pointer ATL.CComPtrBase.&(void) 2 0 +10002714 ATL.CComPtrBase.Release void ATL.CComPtrBase.Release(undefined4 param_1, undefined4 param_2) 22 0 +10002744 ATL.CComPtrBase.Attach void ATL.CComPtrBase.Attach(undefined4 param_1, int * p2) 22 0 +10002774 ATL.CComPtrBase.{ctor} pointer ATL.CComPtrBase.{ctor}(undefined4 param_1, int * lp) 20 0 +100027a4 ATL.CComPtrBase.{ctor} pointer ATL.CComPtrBase.{ctor}(void) 5 0 +100027c4 ATL.CComPtrBase.{ctor} pointer ATL.CComPtrBase.{ctor}(undefined4 param_1, int * lp) 20 0 +100027f4 std.allocator.{ctor} pointer std.allocator.{ctor}(void) 2 0 +10002814 std.basic_string,std::allocator_>._Myptr pointer std.basic_string,std::allocator_>._Myptr(undefined4 param_1, int param_2) 14 0 +10002844 std.basic_string,std::allocator_>._Myptr pointer std.basic_string,std::allocator_>._Myptr(undefined4 param_1, int param_2) 14 0 +10002874 std.basic_string,std::allocator_>._Xran void std.basic_string,std::allocator_>._Xran(void) 11 0 +10002894 std._String_val_>.{dtor} void std._String_val_>.{dtor}(void) 1 0 +100028b4 std.allocator.{ctor} pointer std.allocator.{ctor}(void) 2 0 +100028d4 std.allocator.{ctor} pointer std.allocator.{ctor}(void) 2 0 +100028f4 std.allocator.deallocate void std.allocator.deallocate(void) 7 0 +10002914 std.allocator<_WIN32_FIND_DATAW>.{ctor} pointer std.allocator<_WIN32_FIND_DATAW>.{ctor}(void) 2 0 +10002934 std.basic_stringbuf,std::allocator_>._Tidy void std.basic_stringbuf,std::allocator_>._Tidy(undefined4 param_1, int param_2, undefined4 param_3, int * param_4) 88 0 +100029a4 ATL.CComPtrBase.{ctor} pointer ATL.CComPtrBase.{ctor}(void) 5 0 +100029c4 std.basic_ostream_>.sentry..P6AXABU_Bool_struct@std@@@Z pointer std.basic_ostream_>.sentry..P6AXABU_Bool_struct@std@@@Z(undefined4 param_1, int param_2) 15 0 +100029f4 std.basic_string,std::allocator_>.get_allocator pointer std.basic_string,std::allocator_>.get_allocator(void) 2 0 +10002a14 std.basic_string,std::allocator_>._Inside pointer std.basic_string,std::allocator_>._Inside(undefined4 param_1, int param_2) 51 0 +10002a64 std.basic_string,std::allocator_>._Xlen void std.basic_string,std::allocator_>._Xlen(void) 11 0 +10002a84 std.basic_stringbuf,std::allocator_>._Getstate int std.basic_stringbuf,std::allocator_>._Getstate(void) 39 0 +10002ac4 std.basic_ostream_>._Sentry_base.{ctor} pointer std.basic_ostream_>._Sentry_base.{ctor}(char param_1, int _Ostr) 44 0 +10002b04 std.basic_ostream_>._Sentry_base.{dtor} void std.basic_ostream_>._Sentry_base.{dtor}(byte param_1, int param_2) 43 0 +10002b44 std.allocator.max_size uint std.allocator.max_size(void) 6 0 +10002b64 _splitpath_s<3,256,256,256> int _splitpath_s<3,256,256,256>(char * _Dest, int _Drive) 28 0 +10002b94 _makepath_s<260> int _makepath_s<260>(void) 17 0 +10002bc4 std.forward_> pointer std.forward_>(void) 2 0 +10002be4 std.forward,class_std::allocator_>_> pointer std.forward,class_std::allocator_>_>(void) 2 0 +10002c04 ATL.AtlConvFreeMemory void ATL.AtlConvFreeMemory(void) 11 0 +10002c24 std._Allocate pointer std._Allocate(void) 78 0 +10002ca4 ATL.AtlConvAllocMemory void ATL.AtlConvAllocMemory(undefined4 ppBuff, uint nLength) 122 0 +10002d34 std.bad_alloc.{ctor} pointer std.bad_alloc.{ctor}(undefined4 bad_alloc0, char * param_2) 32 0 +10002d84 std.operator== pointer std.operator==(void) 2 0 +10002da4 ATL.CComPtr.{ctor} pointer ATL.CComPtr.{ctor}(undefined4 param_1, int * lp) 23 0 +10002dd4 ATL.CComPtr.{dtor} void ATL.CComPtr.{dtor}(undefined4 param_1, int * param_2) 19 0 +10002e04 ATL.CComBSTR.Copy pointer ATL.CComBSTR.Copy(undefined4 param_1, int param_2) 37 0 +10002e44 ATL.CComBSTR.!= pointer ATL.CComBSTR.!=(undefined4 param_1, byte * param_2) 11 0 +10002e64 ATL.CComVariant.{ctor} pointer ATL.CComVariant.{ctor}(char * CComVariant0, undefined4 varSrc) 32 0 +10002ea4 ATL.CHandle.{ctor} pointer ATL.CHandle.{ctor}(void) 11 0 +10002ec4 ATL.CRegKey.{ctor} pointer ATL.CRegKey.{ctor}(void) 31 0 +10002f04 AtlWinModuleTerm int AtlWinModuleTerm(undefined4 pWinModule, char * param_2, undefined4 param_3, uint * param_4, undefined4 param_5) 146 0 +10002fb4 ATL.CComPtr.{dtor} void ATL.CComPtr.{dtor}(undefined4 param_1, int * param_2) 19 0 +10002fe4 ATL.CComTypeInfoHolder.stringdispid.__vecDelDtor pointer ATL.CComTypeInfoHolder.stringdispid.__vecDelDtor(undefined4 param_1, byte * param_2, int param_3) 58 0 +10003044 _bstr_t.{ctor} pointer _bstr_t.{ctor}(int _bstr_t0, uint s) 93 0 +100030f4 _bstr_t.{ctor} pointer _bstr_t.{ctor}(int _bstr_t0, int bstr) 105 0 +100031b4 _bstr_t..PB_W pointer _bstr_t..PB_W(void) 12 0 +100031d4 _bstr_t..PA_W pointer _bstr_t..PA_W(void) 12 0 +100031f4 _bstr_t.length uint _bstr_t.length(undefined4 param_1, int param_2) 28 0 +10003224 _bstr_t._AddRef void _bstr_t._AddRef(undefined4 param_1, char param_2) 16 0 +10003254 _bstr_t.Data_t.{dtor} void _bstr_t.Data_t.{dtor}(undefined4 param_1, int param_2, undefined4 param_3, byte param_4) 27 0 +10003284 _com_error.__vecDelDtor pointer _com_error.__vecDelDtor(undefined4 param_1, byte * param_2, int param_3, undefined4 param_4, uint * param_5) 94 0 +100032f0 FUN_100032f0 undefined FUN_100032f0(void) 6 0 +10003304 _com_error.WCode ushort _com_error.WCode(void) 32 0 +10003344 _com_error.ErrorMessage pointer _com_error.ErrorMessage(int param_1, int param_2, undefined4 param_3, undefined2 param_4) 163 0 +10003404 CWrapLogger.{dtor} void CWrapLogger.{dtor}(char * param_1, char * param_2, int param_3, undefined4 param_4, byte param_5) 52 0 +10003454 CWrapLogger.LoadLoggerDLL bool CWrapLogger.LoadLoggerDLL(undefined4 param_1, int param_2, undefined2 param_3, char * param_4, undefined2 param_5, undefined2 * param_6) 999 0 +10003854 CWrapLogger.Initialize bool CWrapLogger.Initialize(undefined4 param_1, char * param_2) 61 0 +100038b4 std._Iterator_base12.= pointer std._Iterator_base12.=(void) 20 0 +100038e4 std.runtime_error.__vecDelDtor pointer std.runtime_error.__vecDelDtor(undefined4 param_1, char * param_2, int param_3) 57 0 +10003930 FUN_10003930 undefined FUN_10003930(void) 6 0 +10003944 std.system_error.__vecDelDtor pointer std.system_error.__vecDelDtor(undefined4 param_1, byte * param_2, int param_3) 57 0 +10003990 FUN_10003990 undefined FUN_10003990(void) 6 0 +100039a4 std.ios_base.failure.{ctor} pointer std.ios_base.failure.{ctor}(undefined4 failure0, uint * param_2) 89 0 +10003a58 std.ios_base.failure.__vecDelDtor pointer std.ios_base.failure.__vecDelDtor(undefined4 param_1, byte * param_2, int param_3, undefined4 param_4, undefined4 param_5, char * param_6) 57 0 +10003aa4 std.ios_base.failure.{dtor} void std.ios_base.failure.{dtor}(void) 7 0 +10003ac0 FUN_10003ac0 undefined FUN_10003ac0(void) 6 0 +10003ae4 ATL.CComPtr.{dtor} void ATL.CComPtr.{dtor}(undefined4 param_1, int * param_2) 19 0 +10003b14 ATL.CComPtr.{ctor} pointer ATL.CComPtr.{ctor}(undefined4 param_1, int * lp) 20 0 +10003b44 ATL.CComPtr.{ctor} pointer ATL.CComPtr.{ctor}(void) 5 0 +10003b64 ATL.CComPtr.{ctor} pointer ATL.CComPtr.{ctor}(undefined4 param_1, int * lp) 23 0 +10003b94 std.basic_string,std::allocator_>.c_str pointer std.basic_string,std::allocator_>.c_str(undefined4 param_1, int param_2) 14 0 +10003bc4 std.basic_stringbuf,std::allocator_>.{dtor} void std.basic_stringbuf,std::allocator_>.{dtor}(void) 35 0 +10003c10 std.basic_stringbuf,std::allocator_>.underflow ushort std.basic_stringbuf,std::allocator_>.underflow(undefined4 param_1, byte * param_2) 141 0 +10003cc4 std.basic_stringbuf,std::allocator_>.pbackfail ushort std.basic_stringbuf,std::allocator_>.pbackfail(undefined4 basic_stringbuf,std::allocator_>0, int _Meta) 105 0 +10003d44 std.basic_stringbuf,std::allocator_>.seekoff pointer std.basic_stringbuf,std::allocator_>.seekoff(undefined4 param_1, int basic_stringbuf,std::allocator_>1) 407 0 +10003ef4 std.basic_stringbuf,std::allocator_>.seekpos pointer std.basic_stringbuf,std::allocator_>.seekpos(undefined4 param_1, byte * psz) 277 0 +10004024 ATL.CA2WEX<128>.{dtor} void ATL.CA2WEX<128>.{dtor}(char param_1, int param_2) 16 0 +10004054 ATL.CComPtr.{ctor} pointer ATL.CComPtr.{ctor}(void) 5 0 +10004074 void (void) 1 0 +10004094 void (void) 1 0 +100040b4 void (void) 1 0 +100040d4 std.basic_stringbuf,std::allocator_>.__vecDelDtor pointer std.basic_stringbuf,std::allocator_>.__vecDelDtor(undefined4 param_1, byte * param_2, int param_3) 85 0 +10004150 FUN_10004150 undefined FUN_10004150(void) 6 0 +10004164 std.basic_string,std::allocator_>._Eos void std.basic_string,std::allocator_>._Eos(void) 29 0 +100041a4 std.basic_string,std::allocator_>._Tidy void std.basic_string,std::allocator_>._Tidy(void) 51 0 +100041f4 std._String_val_>.{ctor} pointer std._String_val_>.{ctor}(void) 2 0 +10004214 std.allocator.allocate pointer std.allocator.allocate(void) 8 0 +10004234 ATL.CA2WEX<128>.Init void ATL.CA2WEX<128>.Init(undefined4 CA2WEX<128>0, int psz) 104 0 +100042b4 std.basic_ostream_>.sentry.{ctor} pointer std.basic_ostream_>.sentry.{ctor}(int sentry0, int _Ostr) 121 0 +10004364 std.basic_ostream_>.sentry.{dtor} void std.basic_ostream_>.sentry.{dtor}(undefined4 param_1, ushort * param_2) 74 0 +100043e4 std.basic_stringbuf,std::allocator_>._Init void std.basic_stringbuf,std::allocator_>._Init(int * basic_stringbuf,std::allocator_>0, undefined2 param_2) 131 0 +10004484 std.basic_string,std::allocator_>.max_size uint std.basic_string,std::allocator_>.max_size(void) 6 0 +100044a4 std.basic_string,std::allocator_>._Copy void std.basic_string,std::allocator_>._Copy(uint basic_string,std::allocator_>0, uint * _Newsize) 366 0 +100046c4 std.operator<<_> pointer std.operator<<_>(char * _Ostr, char * param_2, char * param_3) 551 0 +10004984 std.operator!= pointer std.operator!=(void) 2 0 +100049a4 ATL.CComQIPtr.{ctor} pointer ATL.CComQIPtr.{ctor}(undefined4 param_1, int * lp) 23 0 +100049d4 ATL.CComBSTR.{ctor} pointer ATL.CComBSTR.{ctor}(int CComBSTR0, int src) 71 0 +10004a34 AtlUnRegisterTypeLib int AtlUnRegisterTypeLib(byte * hInstTypeLib, char * param_2) 324 0 +10004c24 AtlRegisterTypeLib int AtlRegisterTypeLib(undefined4 hInstTypeLib, byte * param_2) 834 0 +10005094 AtlComModuleRegisterServer int AtlComModuleRegisterServer(undefined4 pComModule, char * bRegTypeLib, char param_3, int param_4) 115 0 +10005124 AtlComModuleUnregisterServer int AtlComModuleUnregisterServer(undefined4 pComModule, char * bUnRegTypeLib, int param_3) 115 0 +100051b4 _bstr_t.{ctor} pointer _bstr_t.{ctor}(undefined4 param_1, char param_2) 20 0 +100051e4 _bstr_t.Data_t.__delDtor pointer _bstr_t.Data_t.__delDtor(undefined4 Data_t0, int param_2, undefined4 param_3, undefined4 param_4) 39 0 +10005224 CWrapLogger.LogStart int CWrapLogger.LogStart(undefined4 param_1, int param_2, byte * param_3) 29 0 +10005264 CWrapLogger.LogFlagLog pointer CWrapLogger.LogFlagLog(undefined4 CWrapLogger0, char * clf) 35 0 +100052a4 CWrapLogger.RegisterLogFlag pointer CWrapLogger.RegisterLogFlag(undefined4 CWrapLogger0, int lfCat) 32 0 +100052e4 CLoggerSelect._GetFSLogger pointer CLoggerSelect._GetFSLogger(char * param_1, int * param_2) 66 0 +10005364 std._Iterator_base12.{ctor} pointer std._Iterator_base12.{ctor}(void) 27 0 +10005394 com_eh.com_error_dbg.Error int com_eh.com_error_dbg.Error(undefined4 param_1, int param_2) 83 0 +10005424 std.basic_string,std::allocator_>.{ctor} pointer std.basic_string,std::allocator_>.{ctor}(void) 17 0 +10005454 std.basic_string,std::allocator_>.{dtor} void std.basic_string,std::allocator_>.{dtor}(void) 31 0 +10005494 std.basic_string,std::allocator_>.erase pointer std.basic_string,std::allocator_>.erase(int basic_string,std::allocator_>0, char * _Off, char _Count) 133 0 +10005534 std.basic_stringstream,std::allocator_>.{dtor} void std.basic_stringstream,std::allocator_>.{dtor}(undefined4 param_1, int * param_2) 88 0 +100055d4 std.basic_stringbuf,std::allocator_>.overflow ushort std.basic_stringbuf,std::allocator_>.overflow(undefined4 param_1, int _Meta) 443 0 +100057a4 ATL.CA2WEX<128>.{ctor} pointer ATL.CA2WEX<128>.{ctor}(void) 15 0 +100057d4 std.basic_stringbuf,std::allocator_>.{ctor} pointer std.basic_stringbuf,std::allocator_>.{ctor}(int * basic_stringbuf,std::allocator_>0, undefined4 _Mode, undefined4 param_3, undefined4 param_4, char * param_5, undefined4 param_6, char * param_7, undefined4 param_8) 80 0 +10005854 std.basic_string,std::allocator_>._Grow pointer std.basic_string,std::allocator_>._Grow(void) 110 0 +100058e4 GetIDataAdapter pointer GetIDataAdapter(int AccessName, undefined4 param_2) 443 0 +10005af0 CWrapLogger.LogCustom pointer CWrapLogger.LogCustom(int CWrapLogger0, undefined4 CWrapLogger1, wchar_t * param_3) 6 0 +10005b80 _bstr_t.Data_t.Release uint _bstr_t.Data_t.Release(undefined4 param_1, int param_2, undefined4 param_3, undefined4 param_4, byte param_5) 49 0 +10005bd4 CWrapLogger.LogStartEx int CWrapLogger.LogStartEx(undefined4 param_1, int param_2, int * param_3) 85 0 +10005c44 CWrapLogger.GetLogFlag pointer CWrapLogger.GetLogFlag(undefined4 CWrapLogger0) 44 0 +10005c84 void (void) 31 0 +10005cc4 com_eh.LogIfError void com_eh.LogIfError(uint * e, byte * s) 1202 0 +10006230 CWrapLogger.LogError pointer CWrapLogger.LogError(int param_1, wchar_t * param_2) 6 0 +100062b0 CWrapLogger.LogWarning pointer CWrapLogger.LogWarning(int param_1, wchar_t * param_2) 6 0 +10006344 std.basic_stringstream,std::allocator_>.__vbaseDtor void std.basic_stringstream,std::allocator_>.__vbaseDtor(int param_1) 18 0 +10006374 std.basic_stringstream,std::allocator_>.{ctor} pointer std.basic_stringstream,std::allocator_>.{ctor}(int * basic_stringstream,std::allocator_>0, int * _Meta) 146 0 +10006474 std.basic_stringstream,std::allocator_>.__vecDelDtor pointer std.basic_stringstream,std::allocator_>.__vecDelDtor(undefined4 param_1, uint * param_2) 82 0 +100064d0 FUN_100064d0 undefined FUN_100064d0(void) 6 0 +100064e4 std.basic_string,std::allocator_>.assign pointer std.basic_string,std::allocator_>.assign(undefined4 param_1, byte * _Right) 214 0 +100065d4 std.basic_string,std::allocator_>.assign pointer std.basic_string,std::allocator_>.assign(undefined4 param_1, int _Ptr) 168 0 +10006694 std.basic_string,std::allocator_>.assign pointer std.basic_string,std::allocator_>.assign(void) 10 0 +100066b4 _bstr_t._Free void _bstr_t._Free(undefined4 param_1, char * param_2) 17 0 +100066e4 std.basic_string,std::allocator_>.{ctor} pointer std.basic_string,std::allocator_>.{ctor}(void) 27 0 +10006724 std.basic_string,std::allocator_>.{ctor} pointer std.basic_string,std::allocator_>.{ctor}(void) 26 0 +10006764 std.basic_string,std::allocator_>.= pointer std.basic_string,std::allocator_>.=(void) 10 0 +10006784 _bstr_t.{dtor} void _bstr_t.{dtor}(undefined4 param_1, char * param_2) 17 0 +100067b4 _bstr_t.= pointer _bstr_t.=(undefined4 param_1, byte * s) 40 0 +100067f4 _com_error.Description pointer _com_error.Description(int hr, uint param_2, undefined2 param_3, uint * param_4) 126 0 +100068c4 _com_error.Source pointer _com_error.Source(int hr, uint param_2, undefined2 param_3, uint * param_4) 126 0 +10006994 void (void) 26 0 +100069d4 com_eh.com_error_dbg.{ctor} pointer com_eh.com_error_dbg.{ctor}(undefined4 param_1, char * hr, undefined4 perrinfo) 105 0 +10006a94 com_eh.com_error_dbg.{dtor} void com_eh.com_error_dbg.{dtor}(uint param_1, char * param_2) 82 0 +10006b24 com_eh.com_error_dbg.{ctor} pointer com_eh.com_error_dbg.{ctor}(byte param_1, int * param_2, undefined4 param_3, undefined4 param_4) 135 0 +10006bf4 std.basic_string,std::allocator_>.assign pointer std.basic_string,std::allocator_>.assign(undefined4 param_1, int _Right) 105 0 +10006c74 com_eh.com_error_dbg.__vecDelDtor pointer com_eh.com_error_dbg.__vecDelDtor(undefined4 param_1, byte * param_2, int param_3) 57 0 +10006cb0 FUN_10006cb0 undefined FUN_10006cb0(void) 6 0 +10006cc4 std.basic_string,std::allocator_>.{ctor} pointer std.basic_string,std::allocator_>.{ctor}(void) 25 0 +10006d04 std.basic_stringbuf,std::allocator_>.str pointer std.basic_stringbuf,std::allocator_>.str(undefined4 basic_stringbuf,std::allocator_>0, int psz) 512 0 +10006fb4 std.basic_stringstream,std::allocator_>.str pointer std.basic_stringstream,std::allocator_>.str(undefined4 basic_stringstream,std::allocator_>0, byte * _Meta, char * param_3) 44 0 +10007014 com_eh.com_error_dbg.ErrorMessage pointer com_eh.com_error_dbg.ErrorMessage(undefined4 com_error_dbg0, int hresult, int when) 1201 0 +10007604 com_eh.com_error_dbg.LogGetError pointer com_eh.com_error_dbg.LogGetError(int com_error_dbg0, byte * hresult) 192 0 +10007724 com_eh.com_error_dbg.Throw void com_eh.com_error_dbg.Throw(uint * hresult, undefined4 msg) 26 0 +10007754 AAComBSTR.Copy pointer AAComBSTR.Copy(undefined4 param_1, int param_2) 393 0 +10007934 AAComBSTR.{ctor} pointer AAComBSTR.{ctor}(undefined4 AAComBSTR0) 10 0 +10007954 Connect char * Connect(int param_1, uint * param_2) 22 0 +10007978 Abort void Abort(undefined4 param_1, char * param_2) 17 0 +10007998 Disconnect void Disconnect(char * param_1, undefined4 param_2) 17 0 +100079b8 KeepAlive pointer KeepAlive(uint * param_1, byte * param_2, undefined4 param_3, undefined2 param_4, undefined4 param_5, undefined2 param_6, undefined2 param_7) 60 0 +10007a00 Read pointer Read(int Status, byte * ItemValues, undefined4 Items, undefined2 param_4) 103 0 +10007a74 Write pointer Write(int Status, byte * Items) 83 0 +10007ad4 WriteUser pointer WriteUser(int Status, byte * Items) 92 0 +10007b3c WriteVerified pointer WriteVerified(undefined4 Status, byte * Items) 101 0 +10007bb0 WriteSecured pointer WriteSecured(byte * Status, byte * Items, byte * Values, pointer User, uint WriteHandle) 92 0 +10007c18 WriteConfirmed pointer WriteConfirmed(pointer ValueReceived, longlong WriteToken, pointer Item, pointer Value, pointer User, pointer Supervisor) 117 0 +10007c9c ConfirmWrite pointer ConfirmWrite(pointer Item, longlong WriteToken, pointer Value, pointer User, pointer Supervisor, uint WriteHandle) 91 0 +10007d04 PublishWriteComplete pointer PublishWriteComplete(byte * CompleteWrites) 66 0 +10007d54 CreateSubscription pointer CreateSubscription(longlong SubscriptionId, longlong MaxQueueSize, ulonglong SampleInterval) 52 0 +10007d94 SetSubscriptionState pointer SetSubscriptionState(longlong SubscriptionId, pointer NewState, ushort StateToChange) 62 0 +10007de0 GetSubscriptionState pointer GetSubscriptionState(pointer State, longlong SubscriptionId, ushort StateToGet) 76 0 +10007e38 DeleteSubscription pointer DeleteSubscription(longlong SubscriptionId) 50 0 +10007e78 AddMonitoredItems pointer AddMonitoredItems(byte * Status, byte * ItemCapabilities, longlong SubscriptionId, byte * Items, byte RequireId) 96 0 +10007ee4 DeleteMonitoredItems pointer DeleteMonitoredItems(char * Status, byte * Items, undefined2 SubscriptionId, uint * param_4, uint * param_5) 76 0 +10007f3c GetMonitoredItems pointer GetMonitoredItems(int Items, byte * param_2) 63 0 +10007f88 Publish pointer Publish(undefined4 Status, byte * Values) 84 0 +10007fe8 RegisterItems pointer RegisterItems(undefined4 Status, byte * ItemCapabilities) 96 0 +10008054 UnregisterItems pointer UnregisterItems(char * Status, byte * Items) 75 0 +100080ac ATL.?A0xcc57d9b2.AtlGetDirLen uint ATL.?A0xcc57d9b2.AtlGetDirLen(undefined4 lpszPathName, ushort * param_2) 52 0 +100080f4 Connect char * Connect(char param_1, uint * param_2) 22 0 +10008118 Abort void Abort(char param_1, char * param_2) 17 0 +10008138 Disconnect void Disconnect(char param_1, char * param_2) 17 0 +10008158 KeepAlive pointer KeepAlive(byte * param_1, byte * param_2) 60 0 +100081a0 Read pointer Read(byte * Status, byte * ItemValues) 63 0 +100081ec Write pointer Write(byte * Status, byte * Items) 54 0 +10008230 WriteUser pointer WriteUser(byte * Status, byte * Items) 56 0 +10008274 WriteVerified pointer WriteVerified(byte * Status, byte * Items) 58 0 +100082bc WriteSecured pointer WriteSecured(byte * Status, byte * Items) 56 0 +10008300 WriteConfirmed pointer WriteConfirmed(byte * ValueReceived, byte * Item) 58 0 +10008348 ConfirmWrite pointer ConfirmWrite(byte * Item, byte * Value) 58 0 +10008390 PublishWriteComplete pointer PublishWriteComplete(byte * CompleteWrites, byte * param_2) 50 0 +100083d0 CreateSubscription pointer CreateSubscription(byte * param_1, byte * param_2) 52 0 +10008410 SetSubscriptionState pointer SetSubscriptionState(byte * NewState, byte * param_2) 52 0 +10008450 GetSubscriptionState pointer GetSubscriptionState(byte * State, byte * param_2) 52 0 +10008490 DeleteSubscription pointer DeleteSubscription(byte * param_1, byte * param_2) 50 0 +100084d0 AddMonitoredItems pointer AddMonitoredItems(byte * Status, byte * ItemCapabilities) 56 0 +10008514 DeleteMonitoredItems pointer DeleteMonitoredItems(byte * Status, byte * Items) 52 0 +10008554 GetMonitoredItems pointer GetMonitoredItems(byte * Items, byte * param_2, undefined4 SubscriptionId, undefined4 param_4, int * param_5) 51 0 +10008594 Publish pointer Publish(undefined4 Status, byte * Values) 52 0 +100085d4 RegisterItems pointer RegisterItems(undefined4 Status, byte * ItemCapabilities) 56 0 +10008618 UnregisterItems pointer UnregisterItems(undefined4 Status, byte * Items) 51 0 +10008658 ATL.?A0x4ac3ab1c.AtlGetDirLen uint ATL.?A0x4ac3ab1c.AtlGetDirLen(undefined4 lpszPathName, ushort * param_2) 52 0 +100086b0 FUN_100086b0 undefined FUN_100086b0(void) 1 0 +100086c0 FUN_100086c0 undefined1 FUN_100086c0(void) 5 0 +100086d0 FUN_100086d0 undefined FUN_100086d0(int * param_1) 15 0 +100086e0 FUN_100086e0 bool FUN_100086e0(byte * param_1, byte * param_2) 112 0 +10008760 FUN_10008760 undefined FUN_10008760(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 31 1 CoCreateInstance +10008780 FUN_10008780 undefined FUN_10008780(int * param_1) 15 0 +100087b0 FUN_100087b0 undefined FUN_100087b0(int * param_1) 15 0 +100087e0 FUN_100087e0 undefined FUN_100087e0(int * param_1) 15 0 +10008810 FUN_10008810 undefined FUN_10008810(int * param_1) 15 0 +10008830 FUN_10008830 undefined4 FUN_10008830(void * this, uint param_1) 30 0 +10008910 FUN_10008910 undefined FUN_10008910(void * param_1) 19 1 +10008940 FUN_10008940 undefined4 FUN_10008940(undefined4 param_1) 8 0 +10008950 FUN_10008950 undefined4 FUN_10008950(undefined4 param_1) 8 0 +10008960 FUN_10008960 undefined4 FUN_10008960(undefined4 param_1) 8 0 +10008970 FUN_10008970 undefined1 FUN_10008970(undefined4 param_1) 11 0 +10008980 FUN_10008980 undefined4 * FUN_10008980(void * this, int * param_1) 30 0 +100089b0 FUN_100089b0 undefined FUN_100089b0(void * this, undefined4 * param_1) 90 0 +10008a10 FUN_10008a10 undefined4 FUN_10008a10(undefined4 param_1) 8 0 +10008a20 FUN_10008a20 undefined FUN_10008a20(DWORD param_1, DWORD param_2) 23 1 +10008a40 FUN_10008a40 undefined FUN_10008a40(void * this, undefined4 param_1) 14 0 +10008a50 FUN_10008a50 undefined FUN_10008a50(undefined4 param_1) 23 1 +10008a70 FUN_10008a70 undefined FUN_10008a70(undefined4 param_1) 57 1 +10008b10 FUN_10008b10 undefined FUN_10008b10(wchar_t * param_1, rsize_t param_2, wchar_t * param_3, rsize_t param_4) 79 2 +10008c40 FUN_10008c40 undefined FUN_10008c40(undefined4 * param_1) 10 1 SysFreeString +10008c50 FUN_10008c50 int FUN_10008c50(LPCWSTR param_1) 83 1 +10008cb0 FUN_10008cb0 undefined FUN_10008cb0(undefined4 * param_1) 69 1 SysFreeString +10008d00 FUN_10008d00 undefined4 FUN_10008d00(undefined4 param_1, undefined4 param_2) 8 0 +10008d10 FUN_10008d10 undefined FUN_10008d10(void) 1 0 +10008d20 FUN_10008d20 exception * FUN_10008d20(exception * param_1) 91 1 +10008d80 FUN_10008d80 undefined FUN_10008d80(exception * param_1) 72 1 +10008dd0 FUN_10008dd0 exception * FUN_10008dd0(void * this, byte param_1) 95 2 +10008e40 FUN_10008e40 undefined FUN_10008e40(undefined4 * param_1) 33 1 +10008e70 operator[] ushort * operator[](CSimpleArray_> * this, int param_1) 42 1 +10008ea0 FUN_10008ea0 undefined FUN_10008ea0(int * param_1) 15 0 +10008ef0 FUN_10008ef0 undefined FUN_10008ef0(int * param_1) 74 0 +10008f40 FUN_10008f40 undefined FUN_10008f40(int * param_1) 74 0 +10008f90 FUN_10008f90 undefined FUN_10008f90(int * param_1) 74 0 +10008fe0 FUN_10008fe0 undefined FUN_10008fe0(int * param_1) 74 0 +10009030 FUN_10009030 undefined FUN_10009030(int * param_1) 74 0 +10009080 FUN_10009080 undefined FUN_10009080(undefined4 * param_1) 68 0 +100090d0 FUN_100090d0 undefined FUN_100090d0(undefined4 * param_1) 68 0 +10009120 FUN_10009120 undefined FUN_10009120(undefined4 * param_1) 68 0 +10009170 FUN_10009170 undefined FUN_10009170(undefined4 * param_1) 68 0 +100091c0 FUN_100091c0 undefined FUN_100091c0(undefined4 * param_1) 68 0 +10009230 FUN_10009230 uint FUN_10009230(void * this, uint param_1) 45 0 +10009260 FUN_10009260 void * FUN_10009260(char * param_1) 144 3 +100092f0 FUN_100092f0 exception * FUN_100092f0(void * this, exception * param_1) 91 1 +10009350 FUN_10009350 int * FUN_10009350(void * this, int * param_1) 87 0 +100093b0 FUN_100093b0 int * FUN_100093b0(void * this, byte param_1) 97 1 +10009420 FUN_10009420 undefined FUN_10009420(undefined4 * param_1, undefined4 * param_2) 94 0 +10009480 FUN_10009480 undefined4 * FUN_10009480(void * this, OLECHAR * param_1) 45 2 SysAllocString +100094c0 FUN_100094c0 undefined4 FUN_100094c0(int * param_1, HINSTANCE param_2) 145 4 +10009560 FUN_10009560 undefined FUN_10009560(int * param_1) 74 0 +100095b0 FUN_100095b0 undefined4 * FUN_100095b0(void * this, byte param_1) 159 4 SysFreeString +10009650 FUN_10009650 undefined FUN_10009650(undefined4 * param_1) 68 0 +100096b0 FUN_100096b0 undefined FUN_100096b0(char * param_1) 21 1 +100096d0 FUN_100096d0 undefined FUN_100096d0(int * param_1, int * param_2) 99 0 +10009740 FUN_10009740 undefined FUN_10009740(int * param_1, int * param_2) 100 0 +100097b0 FUN_100097b0 undefined FUN_100097b0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 92 0 +10009810 FUN_10009810 undefined FUN_10009810(int * param_1) 73 0 +10009860 FUN_10009860 int FUN_10009860(int param_1, uint param_2) 300 6 SysFreeString +10009990 FUN_10009990 undefined FUN_10009990(undefined4 param_1, undefined4 param_2) 465 10 SysFreeString +10009b70 FUN_10009b70 int FUN_10009b70(int param_1, int param_2, byte * param_3) 140 3 +10009c00 FUN_10009c00 int FUN_10009c00(int param_1, int param_2, byte * param_3) 140 3 +10009c90 FUN_10009c90 undefined FUN_10009c90(undefined4 param_1, int * param_2, int * param_3) 97 0 +10009d00 FUN_10009d00 undefined FUN_10009d00(int * param_1, int * param_2) 102 0 +10009d70 FUN_10009d70 undefined FUN_10009d70(int * param_1) 75 0 +10009dc0 FUN_10009dc0 undefined FUN_10009dc0(undefined4 param_1, int * param_2, int * param_3) 100 0 +10009e30 FUN_10009e30 undefined FUN_10009e30(undefined4 param_1, int * param_2) 73 0 +10009e80 FUN_10009e80 undefined FUN_10009e80(int * param_1, int * param_2, undefined4 param_3) 41 1 +10009eb0 FUN_10009eb0 undefined4 * FUN_10009eb0(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 121 1 +10009f29 Catch@10009f29 undefined Catch@10009f29(void) 39 2 +10009f60 FUN_10009f60 undefined FUN_10009f60(int * param_1, int * param_2, undefined4 param_3) 41 1 +10009f90 FUN_10009f90 undefined FUN_10009f90(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 38 1 +10009fc0 FUN_10009fc0 undefined FUN_10009fc0(void * this, int * param_1, int * param_2) 43 1 +10009ff0 FUN_10009ff0 undefined FUN_10009ff0(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 37 1 +1000a020 FUN_1000a020 undefined FUN_1000a020(_Container_base0 * param_1) 77 3 +1000a070 FUN_1000a070 undefined FUN_1000a070(void * this, char * param_1) 204 6 +1000a13c Catch@1000a13c undefined Catch@1000a13c(void) 21 2 +1000a160 thunk_FUN_1000a020 undefined thunk_FUN_1000a020(_Container_base0 * param_1) 5 0 +1000a170 FUN_1000a170 undefined FUN_1000a170(void * this, int param_1) 93 2 +1000a1d0 FUN_1000a1d0 undefined FUN_1000a1d0(undefined4 * param_1) 74 1 +1000a220 FUN_1000a220 undefined FUN_1000a220(void * this, int * param_1) 115 3 +1000a2a0 FUN_1000a2a0 undefined4 * FUN_1000a2a0(undefined4 * param_1) 715 9 CoCreateInstance;SysAllocString;SysFreeString +1000a570 FUN_1000a570 undefined4 * FUN_1000a570(void * this, byte param_1) 33 2 +1000a5a0 SetStatus void SetStatus(void) 13 0 +1000a5bc .ctor void .ctor(void) 7 0 +1000a5d0 SetItemDataUpdate void SetItemDataUpdate(undefined4 param_1, char * param_2) 31 0 +1000a5fc .ctor void .ctor(void) 7 0 +1000a610 SetConsumerASBResultCode void SetConsumerASBResultCode(undefined4 param_1, int param_2) 31 0 +1000a63c SetQuality void SetQuality(void) 1 0 +1000a64c .ctor void .ctor(void) 7 0 +1000a660 ?A0x6ea962a9..() pointer ?A0x6ea962a9..()(byte param_1, byte * param_2) 16 0 +1000a684 ATL.?A0x6ea962a9.AtlGetDirLen uint ATL.?A0x6ea962a9.AtlGetDirLen(undefined4 lpszPathName, ushort * param_2) 52 0 +1000a6d4 ConsumerDataUtilities.GetOPCDAQualityCode ushort ConsumerDataUtilities.GetOPCDAQualityCode(undefined4 ConsumerDataUtilities0, char * opcUaQuality) 730 0 +1000a9c4 FillInUpdate void FillInUpdate(uint * param_1, uint param_2) 460 0 +1000ab9c SetStatusCategory void SetStatusCategory(uint * StatusCode, uint * param_2, uint * param_3, uint * param_4) 405 0 +1000ad8c SetStatusDetail void SetStatusDetail(uint * StatusDetail, uint * param_2, uint * param_3, undefined4 param_4, uint * param_5) 406 0 +1000af7c SetQuality void SetQuality(uint * Quality, uint * param_2, uint * param_3) 406 0 +1000b16c SetStatusCategory void SetStatusCategory(uint * StatusCode, uint * param_2, uint * param_3, uint * param_4, uint * param_5) 406 0 +1000b35c SetStatusDetail void SetStatusDetail(uint * StatusDetail, uint * param_2, uint * param_3, uint * param_4) 405 0 +1000b54c ConsumerDataUtilities.MergeReceivedChunks void ConsumerDataUtilities.MergeReceivedChunks(undefined4 ConsumerDataUtilities0, uint * itemCountInAllChunks) 550 0 +1000b7c4 is_locked bool is_locked(void) 7 0 +1000b7d8 op_Implicit char * op_Implicit(char * param_1) 21 0 +1000b7fc acquire void acquire(char * _timeout) 46 0 +1000b838 acquire void acquire(char * param_1, int param_2) 46 0 +1000b874 acquire void acquire(byte * _timeout, uint * param_2) 46 0 +1000b8b0 try_acquire int try_acquire(void) 38 0 +1000b8e4 try_acquire pointer try_acquire(byte * param_1, uint * param_2) 38 0 +1000b918 release void release(byte * param_1, uint * param_2) 27 0 +1000b940 SetDisconnectSignal void SetDisconnectSignal(void) 18 0 +1000b960 ThreadRunning bool ThreadRunning(byte * param_1, uint * param_2) 37 0 +1000b994 SupportsArrayElementWrites bool SupportsArrayElementWrites(void) 7 0 +1000b9a8 .ctor void .ctor(undefined4 param_1, byte * param_2) 33 0 +1000b9d8 ~BufferProperty void ~BufferProperty(byte * param_1, undefined4 param_2) 8 0 +1000b9ec GetBufferField pointer GetBufferField(void) 7 0 +1000ba00 Dispose void Dispose(void) 19 0 +1000ba20 .ctor void .ctor(void) 7 0 +1000ba34 .cctor void .cctor(byte * param_1, uint * param_2) 37 0 +1000ba68 CDataClientCLI.GetInt32 int CDataClientCLI.GetInt32(undefined4 CDataClientCLI0, uint * lowerPart) 75 0 +1000bad4 CDataClientCLI.IsObjectToObjectWrite pointer CDataClientCLI.IsObjectToObjectWrite(void) 18 0 +1000bb04 std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor} void std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor}(void) 1 0 +1000bb24 std.allocator<_ItemDataUpdate_*>.{ctor} pointer std.allocator<_ItemDataUpdate_*>.{ctor}(void) 2 0 +1000bb44 std.allocator<_ItemDataUpdate_*>.{ctor} pointer std.allocator<_ItemDataUpdate_*>.{ctor}(void) 2 0 +1000bb64 std.allocator<_ItemDataUpdate_*>.deallocate void std.allocator<_ItemDataUpdate_*>.deallocate(void) 7 0 +1000bb84 .ctor void .ctor(byte * _object, byte * param_2) 28 0 +1000bbac std._Ptr_cat pointer std._Ptr_cat(void) 2 0 +1000bbc4 std._Destroy_range_> void std._Destroy_range_>(void) 1 0 +1000bbe4 ATL.CComBSTR.Attach void ATL.CComBSTR.Attach(undefined4 CComBSTR0) 17 0 +1000bc14 ATL.?A0x56a9090b.AtlGetDirLen uint ATL.?A0x56a9090b.AtlGetDirLen(undefined4 lpszPathName, ushort * param_2) 52 0 +1000bc64 ~lock void ~lock(int param_1, char * param_2) 27 0 +1000bc8c Dispose void Dispose(int param_1, char * param_2) 38 0 +1000bcc0 SetNamespace void SetNamespace(int bstrNamespace, int param_2) 69 0 +1000bd14 Dispose void Dispose(undefined4 param_1, undefined4 param_2) 14 0 +1000bd30 AddProxy int AddProxy(byte * dataClientProxy, uint * param_2, ushort param_3) 71 0 +1000bda0 GetProxy pointer GetProxy(undefined4 index, uint * param_2) 79 0 +1000be30 CDataClientCLI.StopCommunications void CDataClientCLI.StopCommunications(undefined4 param_1, char * param_2) 28 0 +1000be64 CDataClientCLI.SupportsArrayElementWrites bool CDataClientCLI.SupportsArrayElementWrites(undefined4 param_1, uint * param_2) 24 0 +1000be80 FUN_1000be80 undefined FUN_1000be80(void) 6 0 +1000be94 void (void) 1 0 +1000beb4 std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor} pointer std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor}(void) 15 0 +1000bee4 std._Destroy_range_> void std._Destroy_range_>(void) 1 0 +1000bf04 Dispose void Dispose(undefined4 param_1, undefined4 param_2) 14 0 +1000bf20 RemoveProxy void RemoveProxy(undefined4 index, byte * param_2) 59 0 +1000bf84 std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor} pointer std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor}(void) 15 0 +1000bfb4 std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Destroy void std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Destroy(void) 1 0 +1000bfd4 GetClientId uint GetClientId(uint * param_1, uint * param_2) 321 0 +1000c158 IsConnected bool IsConnected(uint * param_1, uint * param_2) 613 0 +1000c430 AcknowledgeDisconnected void AcknowledgeDisconnected(byte * param_1, byte * param_2, byte * param_3, undefined2 param_4) 300 0 +1000c59c DataClientProxyUnmanagedVars.{ctor} pointer DataClientProxyUnmanagedVars.{ctor}(undefined4 param_1, undefined4 param_2, int param_3) 66 0 +1000c634 DataClientProxyUnmanagedVars.{dtor} void DataClientProxyUnmanagedVars.{dtor}(undefined4 param_1, char * param_2) 83 0 +1000c6d4 CDataClientCLI.{dtor} void CDataClientCLI.{dtor}(char * param_1, char * param_2) 141 0 +1000c7a0 FUN_1000c7a0 undefined FUN_1000c7a0(void) 6 0 +1000c7b4 CDataClientCLI.AcknowledgeDisconnected void CDataClientCLI.AcknowledgeDisconnected(undefined4 param_1, char * param_2) 20 0 +1000c7d0 FUN_1000c7d0 undefined FUN_1000c7d0(void) 6 0 +1000c7e4 CDataClientCLI.IsIDataClientConnected int CDataClientCLI.IsIDataClientConnected(undefined4 param_1, int bConnected, undefined4 param_3) 44 0 +1000c810 FUN_1000c810 undefined FUN_1000c810(void) 6 0 +1000c824 CDataClientCLI.GetClientId uint CDataClientCLI.GetClientId(uint * param_1, char * param_2, char * param_3) 347 0 +1000c9c0 FUN_1000c9c0 undefined FUN_1000c9c0(void) 6 0 +1000c9d4 std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Tidy void std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Tidy(char param_1, int param_2) 31 0 +1000ca14 .ctor void .ctor(undefined4 param_1, undefined4 param_2) 217 0 +1000cb48 DataClientProxyUnmanagedVars.__delDtor pointer DataClientProxyUnmanagedVars.__delDtor(undefined4 DataClientProxyUnmanagedVars0) 19 0 +1000cb74 CDataClientCLI.{ctor} pointer CDataClientCLI.{ctor}(undefined4 param_1, char * param_2) 101 0 +1000cc10 FUN_1000cc10 undefined FUN_1000cc10(void) 6 0 +1000cc24 std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor} void std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor}(char param_1, int param_2) 31 0 +1000cc64 std.basic_string,std::allocator_>.assign pointer std.basic_string,std::allocator_>.assign(int basic_string,std::allocator_>0, int * _Ptr) 35 0 +1000cca4 ~DataClientProxy void ~DataClientProxy(undefined4 param_1, int param_2) 25 0 +1000cccc Dispose void Dispose(undefined4 param_1, char * param_2) 36 0 +1000ccfc std.basic_string,std::allocator_>.= pointer std.basic_string,std::allocator_>.=(int basic_string,std::allocator_>0, int * _Ptr) 35 0 +1000cd34 Dispose void Dispose(undefined4 param_1, undefined4 param_2) 14 0 +1000cd50 CDataClientCLI.CreateConnection int CDataClientCLI.CreateConnection(uint CDataClientCLI0, uint * bstrNameSpace) 304 0 +1000cec0 FUN_1000cec0 undefined FUN_1000cec0(void) 6 0 +1000ced4 CDataClientCLI.CreateSubscription int CDataClientCLI.CreateSubscription(uint CDataClientCLI0, undefined4 MaxQueueSize) 482 0 +1000d0f0 CWrapLogger.LogInfo pointer CWrapLogger.LogInfo(int param_1, wchar_t * param_2) 6 0 +1000d170 FUN_1000d170 undefined FUN_1000d170(void) 6 0 +1000d184 CDataClientCLI.ChangeSubscription int CDataClientCLI.ChangeSubscription(char * CDataClientCLI0, byte * SubscriptionId) 329 0 +1000d324 CDataClientCLI.DeleteSubscription int CDataClientCLI.DeleteSubscription(char * CDataClientCLI0, byte * SubscriptionId) 309 0 +1000d4a4 CDataClientCLI.AddMonitoredItems int CDataClientCLI.AddMonitoredItems(byte * CDataClientCLI0, char * SubscriptionId, uint * MonItems) 1643 0 +1000dbc0 CWrapLogger.LogTrace pointer CWrapLogger.LogTrace(int param_1, wchar_t * param_2) 6 0 +1000dc40 FUN_1000dc40 undefined FUN_1000dc40(void) 6 0 +1000dc54 CDataClientCLI.ChangeMonitoredItems int CDataClientCLI.ChangeMonitoredItems(void) 16 0 +1000dc70 FUN_1000dc70 undefined FUN_1000dc70(void) 6 0 +1000dc84 CDataClientCLI.DeleteMonitoredItems int CDataClientCLI.DeleteMonitoredItems(uint * CDataClientCLI0, int SubscriptionId) 1001 0 +1000e0c0 FUN_1000e0c0 undefined FUN_1000e0c0(void) 6 0 +1000e0d4 CDataClientCLI.RegisterItems int CDataClientCLI.RegisterItems(uint CDataClientCLI0, char * IdItems) 708 0 +1000e3d0 FUN_1000e3d0 undefined FUN_1000e3d0(void) 6 0 +1000e3e4 CDataClientCLI.UnregisterItems int CDataClientCLI.UnregisterItems(uint CDataClientCLI0, char * varItems) 724 0 +1000e6f0 FUN_1000e6f0 undefined FUN_1000e6f0(void) 6 0 +1000e704 CDataClientCLI.WriteWithDesc int CDataClientCLI.WriteWithDesc(uint CDataClientCLI0, int pWriteRequests) 1987 0 +1000ef80 FUN_1000ef80 undefined FUN_1000ef80(void) 6 0 +1000ef94 CDataClientCLI.Publish int CDataClientCLI.Publish(char * CDataClientCLI0, uint SubscriptionId) 785 0 +1000f300 FUN_1000f300 undefined FUN_1000f300(void) 6 0 +1000f314 CDataClientCLI.PublishWriteComplete int CDataClientCLI.PublishWriteComplete(int * CDataClientCLI0, char * pResultCode) 1674 0 +1000f9e0 FUN_1000f9e0 undefined FUN_1000f9e0(void) 6 0 +1000f9f4 CDataClientCLI.Read int CDataClientCLI.Read(pointer CDataClientCLI0, pointer IdItems, pointer ItemsCount, uint pDataUpdates, pointer UpdatesCount, pointer pArchestrAResult) 1132 0 +1000fec4 GetErrorMsg pointer GetErrorMsg(uint param_1, byte * param_2, uint * param_3) 87 0 +1000ff44 MultiReadLock.{ctor} pointer MultiReadLock.{ctor}(void) 11 0 +1000ff64 MultiReadLock.{dtor} void MultiReadLock.{dtor}(void) 8 0 +1000ff84 MultiWriteLock.{ctor} pointer MultiWriteLock.{ctor}(void) 11 0 +1000ffa4 MultiWriteLock.{dtor} void MultiWriteLock.{dtor}(void) 8 0 +1000ffc4 ProcessExitHandler void ProcessExitHandler(undefined4 __unnamed000, undefined4 args) 31 0 +1000fff0 ATL.?A0xa8d5f844.AtlGetDirLen uint ATL.?A0xa8d5f844.AtlGetDirLen(undefined4 lpszPathName, ushort * param_2) 52 0 +10010044 std.basic_string,std::allocator_>.length uint std.basic_string,std::allocator_>.length(void) 6 0 +10010064 EndWorkerThread void EndWorkerThread(uint param_1, int * param_2, int * param_3, undefined4 param_4, byte * param_5) 716 0 +100103a0 std.basic_string,std::allocator_>.{ctor} pointer std.basic_string,std::allocator_>.{ctor}(int basic_string,std::allocator_>0, undefined4 _Ptr) 52 0 +100103f4 MarshalString void MarshalString(undefined4 s, byte * os) 66 0 +10010444 Initialize ulonglong Initialize(uint * param_1, char * param_2) 1562 0 +10010b78 Connect2 int Connect2(uint nameSpace, undefined4 param_2) 486 0 +10010db8 Disconnect undefined4 Disconnect(char * param_1, int param_2) 548 0 +10011064 CreateSubscription undefined4 CreateSubscription(uint * SubscriptionId, byte * SampleInterval) 1104 0 +1001156c ChangeSubscription int ChangeSubscription(pointer SubscriptionId, pointer enableState, pointer properptyToChange, pointer result) 1087 0 +10011a64 DeleteSubscription int DeleteSubscription(uint * SubscriptionId, byte * result) 1078 0 +10011f54 AddMonitoredItems int AddMonitoredItems(uint * Status, byte * Capabilities) 1647 0 +100126dc DeleteMonitoredItems int DeleteMonitoredItems(byte * Status, byte * SubscriptionId) 1082 0 +10012bd0 RegisterItems undefined4 RegisterItems(char * Status, byte * Capabilities) 1360 0 +100131f0 UnregisterItems byte * UnregisterItems(byte * Status, byte * Items) 1307 0 +100137dc WriteUser int WriteUser(byte * Status, byte * Items) 1099 0 +10013ce0 Write int Write(byte * Status, byte * Items) 1085 0 +100141d8 WriteVerified int WriteVerified(byte * Status, byte * Items) 1113 0 +100146ec WriteSecured int WriteSecured(byte * Status, byte * Items) 1099 0 +10014bf0 KeepAlive ulonglong KeepAlive(char * param_1, uint * param_2) 740 0 +10014f5c Publish int Publish(byte * Status, int ItemValues) 968 0 +100153ac PublishWriteComplete int PublishWriteComplete(byte * WriteCompletes, byte * result) 1077 0 +1001589c Read int Read(byte * Status, byte * ItemValues) 1081 0 +10015d90 WaitForExitOrDisconnectorTimeout void WaitForExitOrDisconnectorTimeout(undefined4 milliseconds, uint * param_2) 816 0 +10016130 Connect void Connect(int param_1, undefined4 param_2) 1383 0 +100167c8 AutoConnectLoop void AutoConnectLoop(int * param_1, int param_2, uint param_3) 923 0 +10016bec StartWorkerThread void StartWorkerThread(char * param_1, char * param_2) 437 0 +10016de0 FUN_10016de0 undefined FUN_10016de0(void * this, undefined4 param_1, undefined4 param_2) 20 0 +10016e00 FUN_10016e00 undefined FUN_10016e00(wchar_t * param_1, wchar_t param_2) 10 0 +10016e10 FUN_10016e10 uint FUN_10016e10(uint param_1) 22 0 +10016e30 FUN_10016e30 undefined FUN_10016e30(void * param_1, void * param_2, int param_3) 28 1 memcpy +10016e50 FUN_10016e50 undefined FUN_10016e50(void * param_1, void * param_2, int param_3) 29 1 memmove +10016e70 FUN_10016e70 undefined4 * FUN_10016e70(undefined4 * param_1, undefined2 param_2, uint param_3) 50 0 +10016ec0 AtlMultiply<> undefined4 AtlMultiply<>(undefined4 * param_1, uint param_2, uint param_3) 34 0 +10016f00 FUN_10016f00 undefined FUN_10016f00(LPCWSTR param_1) 15 1 +10016f10 FUN_10016f10 undefined FUN_10016f10(void) 26 2 +10016f30 FUN_10016f30 undefined FUN_10016f30(void * param_1, rsize_t param_2, void * param_3, rsize_t param_4) 79 2 memcpy_s +10017000 FUN_10017000 LONG FUN_10017000(void * this, int param_1) 48 2 SafeArrayGetLBound +10017030 FUN_10017030 int FUN_10017030(void * this, int param_1) 75 3 SafeArrayGetLBound;SafeArrayGetUBound +10017090 FUN_10017090 LONG FUN_10017090(void * this, int param_1) 48 2 SafeArrayGetUBound +100170f0 FUN_100170f0 HRESULT FUN_100170f0(SAFEARRAY * param_1, int * param_2, int * param_3) 196 4 SafeArrayAccessData;SafeArrayGetLBound;SafeArrayGetUBound +100171c0 FUN_100171c0 HRESULT FUN_100171c0(SAFEARRAY * param_1, int * param_2, int * param_3) 152 4 SafeArrayAccessData;SafeArrayGetLBound;SafeArrayGetUBound +10017260 FUN_10017260 HRESULT FUN_10017260(int param_1, IRecordInfo * param_2, SAFEARRAY * * param_3) 245 6 SafeArrayAccessData;SafeArrayCopy;SafeArrayCreateEx;SafeArrayDestroy;SafeArrayUnaccessData +10017360 FUN_10017360 HRESULT FUN_10017360(int param_1, IRecordInfo * param_2, SAFEARRAY * * param_3) 264 6 SafeArrayAccessData;SafeArrayCopy;SafeArrayCreateEx;SafeArrayDestroy;SafeArrayUnaccessData +10017470 FUN_10017470 HRESULT FUN_10017470(int param_1, IRecordInfo * param_2, SAFEARRAY * * param_3) 271 6 SafeArrayAccessData;SafeArrayCopy;SafeArrayCreateEx;SafeArrayDestroy;SafeArrayUnaccessData +10017590 FUN_10017590 HRESULT FUN_10017590(void * this, BSTR param_1) 75 3 SysFreeString +100175e0 FUN_100175e0 HRESULT FUN_100175e0(int param_1, IRecordInfo * param_2, SAFEARRAY * * param_3) 271 6 SafeArrayAccessData;SafeArrayCopy;SafeArrayCreateEx;SafeArrayDestroy;SafeArrayUnaccessData +100176f0 FUN_100176f0 HRESULT FUN_100176f0(int param_1, IRecordInfo * param_2, SAFEARRAY * * param_3) 257 6 SafeArrayAccessData;SafeArrayCopy;SafeArrayCreateEx;SafeArrayDestroy;SafeArrayUnaccessData +10017800 FUN_10017800 HRESULT FUN_10017800(int param_1, IRecordInfo * param_2, SAFEARRAY * * param_3) 271 6 SafeArrayAccessData;SafeArrayCopy;SafeArrayCreateEx;SafeArrayDestroy;SafeArrayUnaccessData +10017910 FUN_10017910 HRESULT FUN_10017910(int param_1, IRecordInfo * param_2, SAFEARRAY * * param_3) 271 6 SafeArrayAccessData;SafeArrayCopy;SafeArrayCreateEx;SafeArrayDestroy;SafeArrayUnaccessData +10017a20 FUN_10017a20 undefined4 * FUN_10017a20(void * this, BSTR param_1) 75 4 SysFreeString +10017a70 FUN_10017a70 int FUN_10017a70(void * this, HKEY param_1, LPCWSTR param_2, DWORD param_3, REGSAM param_4, PHKEY param_5) 98 2 +10017af0 FUN_10017af0 undefined FUN_10017af0(void * this, undefined4 param_1) 28 0 +10017b10 FUN_10017b10 undefined FUN_10017b10(undefined4 * param_1) 38 1 +10017b40 FUN_10017b40 undefined FUN_10017b40(void * this, HKEY param_1, LPCWSTR param_2, REGSAM param_3) 185 4 +10017c00 FUN_10017c00 uint FUN_10017c00(void * this, LPCWSTR param_1, LPBYTE param_2) 61 1 +10017c40 FUN_10017c40 LSTATUS FUN_10017c40(void * this, LPCWSTR param_1, LPBYTE param_2, uint * param_3) 120 1 +10017cc0 FUN_10017cc0 int FUN_10017cc0(LPCWSTR param_1) 83 1 +10017d60 FUN_10017d60 undefined4 * FUN_10017d60(void * this, OLECHAR * param_1) 59 2 SysAllocString +10017da0 FUN_10017da0 undefined4 * FUN_10017da0(void * this, BSTR param_1, char param_2) 75 3 SysAllocStringByteLen +10017e30 FUN_10017e30 undefined FUN_10017e30(uint param_1) 9 1 +10017e40 FUN_10017e40 undefined FUN_10017e40(undefined4 * param_1) 34 2 SysFreeString +10017e70 _com_error undefined _com_error(_com_error * this, long param_1, IErrorInfo * param_2, bool param_3) 56 0 +10017eb0 _com_error undefined _com_error(_com_error * this, _com_error * param_1) 55 0 +10017ef0 ~_com_error void ~_com_error(_com_error * this) 40 1 +10017f30 FUN_10017f30 undefined4 FUN_10017f30(int param_1) 23 0 +10017f50 FUN_10017f50 uint FUN_10017f50(int param_1) 34 0 +10017f80 FUN_10017f80 undefined4 * FUN_10017f80(undefined4 * param_1) 186 1 memset +10018040 FUN_10018040 undefined FUN_10018040(void * this, undefined4 param_1) 40 1 +10018070 FUN_10018070 undefined4 FUN_10018070(undefined4 * param_1) 193 1 +10018140 FUN_10018140 undefined4 FUN_10018140(int * param_1) 65 2 memset +10018190 FUN_10018190 undefined FUN_10018190(int * param_1) 200 7 +10018260 FUN_10018260 undefined1 FUN_10018260(HKEY param_1, LPCWSTR param_2, LPBYTE param_3) 99 3 +100182d0 FUN_100182d0 int FUN_100182d0(short * param_1) 33 0 +10018300 FUN_10018300 undefined FUN_10018300(void * param_1, void * param_2, int param_3) 28 1 memcpy +10018320 FUN_10018320 undefined FUN_10018320(void * param_1, void * param_2, int param_3) 29 1 memmove +10018340 FUN_10018340 undefined4 * FUN_10018340(undefined4 * param_1, uint param_2, undefined2 param_3) 50 0 +10018380 FUN_10018380 undefined FUN_10018380(undefined2 * param_1, undefined2 * param_2) 17 0 +100183a0 FUN_100183a0 bool FUN_100183a0(short * param_1, short * param_2) 22 0 +100183d0 FUN_100183d0 ios_base * FUN_100183d0(ios_base * param_1) 30 1 +100183f0 FUN_100183f0 ios_base * FUN_100183f0(ios_base * param_1) 30 1 +10018410 FUN_10018410 undefined1 FUN_10018410(HKEY param_1, LPCWSTR param_2, LPCWSTR param_3, int param_4, LPBYTE param_5) 147 3 +100184b0 FUN_100184b0 char FUN_100184b0(LPBYTE param_1, int param_2) 116 2 memset +10018530 FUN_10018530 char FUN_10018530(LPBYTE param_1, int param_2) 119 2 memset +100185b0 FUN_100185b0 char FUN_100185b0(LPBYTE param_1, int param_2) 119 2 memset +10018630 FUN_10018630 undefined4 FUN_10018630(undefined4 param_1, LPWSTR param_2, UINT param_3) 195 9 memset +10018710 FUN_10018710 undefined FUN_10018710(undefined4 param_1, LPCWSTR param_2, char param_3, DWORD * param_4) 265 5 +10018820 FUN_10018820 undefined FUN_10018820(undefined4 * param_1) 69 1 SysFreeString +10018870 FUN_10018870 undefined FUN_10018870(LPCWSTR param_1) 58 2 +100188b0 FUN_100188b0 undefined FUN_100188b0(LPCWSTR param_1) 106 3 +10018930 FUN_10018930 undefined FUN_10018930(undefined4 * param_1) 11 1 +10018950 FUN_10018950 int FUN_10018950(void * this, int param_1) 18 0 +10018980 FUN_10018980 undefined FUN_10018980(int * param_1) 15 0 +100189d0 FUN_100189d0 undefined FUN_100189d0(void * this, int param_1) 40 0 +10018a60 FUN_10018a60 undefined FUN_10018a60(void * param_1) 19 1 +10018a80 FUN_10018a80 undefined4 FUN_10018a80(void * this, uint param_1) 30 0 +10018ae0 FUN_10018ae0 undefined FUN_10018ae0(basic_streambuf_> * param_1) 99 7 +10018b70 FUN_10018b70 undefined4 FUN_10018b70(undefined4 param_1) 10 0 +10018b80 FUN_10018b80 undefined FUN_10018b80(void * this, int param_1, uint param_2, undefined2 param_3) 82 0 +10018be0 FUN_10018be0 undefined4 FUN_10018be0(void * this, undefined4 * param_1) 64 0 +10018c90 FUN_10018c90 undefined FUN_10018c90(void * param_1) 19 1 +10018cb0 FUN_10018cb0 uint FUN_10018cb0(byte param_1) 46 0 +10018ce0 FUN_10018ce0 int * FUN_10018ce0(void * this, int * param_1) 59 1 +10018d20 FUN_10018d20 undefined FUN_10018d20(int * param_1) 49 1 +10018d80 AtlAdd<> undefined4 AtlAdd<>(int * param_1, int param_2, uint param_3) 36 0 +10018db0 FUN_10018db0 undefined FUN_10018db0(char * param_1, char * param_2, char * param_3, char * param_4, char * param_5) 51 1 +10018df0 FUN_10018df0 undefined FUN_10018df0(char * param_1, char * param_2, char * param_3, char * param_4, char * param_5) 39 1 +10018e20 FUN_10018e20 undefined4 FUN_10018e20(undefined4 param_1) 8 0 +10018e30 FUN_10018e30 undefined4 FUN_10018e30(undefined4 param_1) 8 0 +10018e40 FUN_10018e40 undefined4 FUN_10018e40(undefined4 param_1) 8 0 +10018e50 FUN_10018e50 undefined FUN_10018e50(void * param_1, void * param_2) 23 1 +10018e70 FUN_10018e70 void * FUN_10018e70(char * param_1) 140 3 +10018f00 FUN_10018f00 undefined FUN_10018f00(int * param_1, size_t param_2, void * param_3, int param_4) 146 4 +10018fa0 FUN_10018fa0 void * FUN_10018fa0(char * param_1) 143 3 +10019030 FUN_10019030 undefined4 FUN_10019030(undefined4 param_1) 8 0 +10019040 FUN_10019040 undefined4 FUN_10019040(undefined4 param_1) 8 0 +10019050 FUN_10019050 undefined FUN_10019050(undefined4 * param_1, undefined4 * param_2) 90 0 +100190b0 FUN_100190b0 undefined4 FUN_100190b0(undefined4 param_1) 8 0 +100190d0 FUN_100190d0 undefined1 FUN_100190d0(undefined4 param_1) 11 0 +100190e0 FUN_100190e0 undefined FUN_100190e0(undefined4 * param_1, undefined4 * param_2) 91 0 +10019160 FUN_10019160 undefined4 FUN_10019160(undefined4 param_1) 8 0 +10019190 FUN_10019190 undefined FUN_10019190(int param_1) 92 2 +100191f0 FUN_100191f0 undefined FUN_100191f0(int * param_1, undefined4 * param_2, SAFEARRAY * * param_3, SAFEARRAY * * param_4, undefined4 * param_5) 113 3 +10019270 FUN_10019270 undefined FUN_10019270(int * param_1, undefined4 * param_2, SAFEARRAY * * param_3, SAFEARRAY * * param_4, undefined4 * param_5) 113 3 +100192f0 FUN_100192f0 undefined FUN_100192f0(int * param_1, undefined4 * param_2, SAFEARRAY * * param_3, SAFEARRAY * * param_4, undefined4 * param_5) 113 3 +10019370 FUN_10019370 undefined FUN_10019370(int * param_1, undefined4 * param_2, SAFEARRAY * * param_3, SAFEARRAY * * param_4, undefined4 * param_5) 113 3 +100193f0 FUN_100193f0 undefined FUN_100193f0(int * param_1, undefined4 * param_2, SAFEARRAY * * param_3, SAFEARRAY * * param_4, undefined4 * param_5) 113 3 +10019470 FUN_10019470 undefined4 FUN_10019470(undefined4 * param_1) 22 1 SafeArrayUnlock +10019490 FUN_10019490 undefined4 FUN_10019490(void * this, int param_1, undefined1 * param_2) 140 3 SafeArrayGetLBound;SafeArrayGetUBound +10019520 FUN_10019520 HRESULT FUN_10019520(undefined4 * param_1) 43 2 SafeArrayDestroy;SafeArrayUnlock +10019550 FUN_10019550 HRESULT FUN_10019550(void * this, SAFEARRAYBOUND * param_1) 97 4 SafeArrayLock;SafeArrayRedim;SafeArrayUnlock +100195c0 FUN_100195c0 HRESULT FUN_100195c0(void * this, SAFEARRAYBOUND * param_1, UINT param_2) 83 2 SafeArrayCreate;SafeArrayLock +10019620 FUN_10019620 undefined FUN_10019620(undefined4 * param_1) 30 2 SysAllocStringByteLen +10019640 FUN_10019640 undefined4 FUN_10019640(void * this, void * param_1, uint param_2) 289 4 SysAllocStringLen;SysFreeString +10019770 FUN_10019770 undefined FUN_10019770(undefined4 * param_1) 31 1 +10019790 FUN_10019790 undefined4 * FUN_10019790(void * this, OLECHAR * param_1) 165 3 SysAllocString +10019840 FUN_10019840 undefined4 * FUN_10019840(void * this, BSTR param_1, char param_2) 181 4 SysAllocStringByteLen +10019960 FUN_10019960 undefined FUN_10019960(undefined4 * param_1) 34 2 SysFreeString +10019990 `scalar_deleting_destructor' void * `scalar_deleting_destructor'(_com_error * this, uint param_1) 63 2 +100199f0 FUN_100199f0 int FUN_100199f0(int param_1) 201 4 +10019ac0 FUN_10019ac0 undefined FUN_10019ac0(int * param_1) 63 2 memset +10019b00 FUN_10019b00 undefined FUN_10019b00(int * param_1) 947 8 +10019ec0 FUN_10019ec0 undefined4 FUN_10019ec0(int * param_1) 66 2 +10019f10 FUN_10019f10 undefined4 FUN_10019f10(LPCWSTR param_1, LPCWSTR param_2, undefined4 * param_3) 240 3 +1001a000 FUN_1001a000 undefined FUN_1001a000(LPCWSTR param_1, LPCWSTR param_2, undefined4 * param_3) 361 8 SysAllocString;SysFreeString;memset +1001a170 FUN_1001a170 undefined FUN_1001a170(LPCWSTR param_1) 92 3 +1001a1d0 FUN_1001a1d0 undefined FUN_1001a1d0(int * param_1) 74 0 +1001a220 FUN_1001a220 int FUN_1001a220(void * this, int param_1) 31 0 +1001a260 FUN_1001a260 undefined FUN_1001a260(basic_streambuf_> * param_1) 90 2 +1001a2c0 FUN_1001a2c0 bool FUN_1001a2c0(short * param_1, short * param_2) 22 0 +1001a2e0 FUN_1001a2e0 undefined2 FUN_1001a2e0(undefined2 * param_1) 11 0 +1001a2f0 FUN_1001a2f0 undefined2 FUN_1001a2f0(undefined2 * param_1) 11 0 +1001a300 FUN_1001a300 wchar_t FUN_1001a300(basic_streambuf_> * param_1) 172 5 +1001a3b0 FUN_1001a3b0 undefined FUN_1001a3b0(void * this, undefined4 param_1, undefined4 param_2) 31 0 +1001a3e0 FUN_1001a3e0 short FUN_1001a3e0(short * param_1) 23 0 +1001a400 FUN_1001a400 wchar_t FUN_1001a400(void * this, wchar_t param_1) 132 3 +1001a490 FUN_1001a490 undefined FUN_1001a490(void * this, uint * param_1, uint param_2, uint param_3, int param_4, byte param_5) 574 8 +1001a6d0 FUN_1001a6d0 undefined FUN_1001a6d0(void * this, uint * param_1, uint param_2, int param_3, uint param_4) 388 8 +1001a860 FUN_1001a860 undefined FUN_1001a860(undefined4 * param_1) 18 1 +1001a880 FUN_1001a880 undefined FUN_1001a880(undefined4 * param_1) 68 0 +1001a8d0 FUN_1001a8d0 basic_streambuf_> * FUN_1001a8d0(void * this, byte param_1) 109 3 +1001a940 FUN_1001a940 undefined FUN_1001a940(void * this, int param_1) 27 0 +1001a960 FUN_1001a960 undefined FUN_1001a960(void * this, char param_1, int param_2) 75 2 memcpy +1001a9c0 FUN_1001a9c0 undefined FUN_1001a9c0(char * param_1) 21 1 +1001a9f0 FUN_1001a9f0 undefined FUN_1001a9f0(void * this, LPCSTR param_1, UINT param_2) 176 5 +1001aaa0 FUN_1001aaa0 int * FUN_1001aaa0(void * this, int * param_1) 194 4 +1001ab70 FUN_1001ab70 undefined FUN_1001ab70(int * param_1) 132 3 +1001ac10 FUN_1001ac10 uint FUN_1001ac10(void * this, uint param_1) 63 0 +1001ac50 FUN_1001ac50 undefined FUN_1001ac50(void * this, void * param_1, char * param_2, undefined4 param_3) 143 5 memcpy +1001acf0 FUN_1001acf0 undefined FUN_1001acf0(void * this, uint param_1) 142 2 +1001ad7e Catch@1001ad7e undefined * Catch@1001ad7e(void) 41 1 +1001adb0 FUN_1001adb0 undefined FUN_1001adb0(void) 97 2 memcpy +1001ae11 Catch@1001ae11 undefined Catch@1001ae11(void) 46 2 +1001ae40 FUN_1001ae40 undefined FUN_1001ae40(char * param_1) 21 1 +1001ae60 FUN_1001ae60 undefined FUN_1001ae60(int * param_1, wchar_t * param_2) 472 8 +1001b038 Catch@1001b038 undefined * Catch@1001b038(void) 33 1 +1001b05c FUN_1001b05c undefined FUN_1001b05c(void) 117 4 +1001b0e0 FUN_1001b0e0 undefined FUN_1001b0e0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 88 0 +1001b150 FUN_1001b150 undefined FUN_1001b150(undefined4 * param_1, undefined4 * param_2) 93 0 +1001b1c0 FUN_1001b1c0 undefined FUN_1001b1c0(undefined4 * param_1, undefined4 * param_2) 90 0 +1001b230 FUN_1001b230 undefined FUN_1001b230(undefined4 * param_1) 41 2 SafeArrayDestroy;SafeArrayUnlock +1001b260 FUN_1001b260 HRESULT FUN_1001b260(void * this, ULONG param_1, LONG param_2) 116 4 SafeArrayLock;SafeArrayRedim;SafeArrayUnlock +1001b2e0 FUN_1001b2e0 HRESULT FUN_1001b2e0(void * this, ULONG param_1, LONG param_2) 84 2 SafeArrayCreate;SafeArrayLock +1001b340 FUN_1001b340 undefined4 * FUN_1001b340(void * this, int * param_1) 62 3 SysAllocStringByteLen +1001b380 FUN_1001b380 undefined4 * FUN_1001b380(void * this, int * param_1) 75 4 SysAllocStringByteLen;SysFreeString +1001b3d0 FUN_1001b3d0 undefined FUN_1001b3d0(void * this, LPCWSTR param_1) 32 2 +1001b3f0 FUN_1001b3f0 void * FUN_1001b3f0(void * this, LPCWSTR param_1) 44 3 +1001b420 FUN_1001b420 int * FUN_1001b420(void * this, int * param_1) 34 1 +1001b450 FUN_1001b450 undefined4 * FUN_1001b450(void * this, byte param_1) 57 3 SysFreeString +1001b490 FUN_1001b490 undefined4 FUN_1001b490(int * param_1) 79 2 +1001b4e0 FUN_1001b4e0 uint FUN_1001b4e0(void * this, undefined4 param_1, undefined4 param_2) 99 2 +1001b550 FUN_1001b550 undefined4 FUN_1001b550(void * this, undefined4 param_1, undefined4 param_2) 96 2 +1001b5b0 FUN_1001b5b0 undefined4 * FUN_1001b5b0(void) 110 2 +1001b620 FUN_1001b620 undefined FUN_1001b620(undefined4 * param_1) 296 7 SysAllocStringByteLen;SysFreeString +1001b750 FUN_1001b750 uint FUN_1001b750(void) 50 1 +1001b790 FUN_1001b790 uint FUN_1001b790(void) 50 1 +1001b7d0 FUN_1001b7d0 undefined4 FUN_1001b7d0(void) 74 1 +1001b820 FUN_1001b820 undefined4 FUN_1001b820(void) 46 1 +1001b850 FUN_1001b850 undefined FUN_1001b850(void * this, undefined4 param_1, undefined4 * param_2) 354 10 SysAllocStringByteLen;SysFreeString +1001b9c0 FUN_1001b9c0 undefined4 FUN_1001b9c0(int param_1) 130 1 +1001ba70 FUN_1001ba70 undefined FUN_1001ba70(undefined4 * param_1) 41 1 +1001baa0 FUN_1001baa0 int * FUN_1001baa0(void * this, uint param_1, uint param_2) 141 2 memmove +1001bb40 FUN_1001bb40 undefined FUN_1001bb40(int param_1) 128 3 +1001bbc0 FUN_1001bbc0 wchar_t FUN_1001bbc0(void * this, wchar_t param_1) 532 11 memcpy +1001bde0 FUN_1001bde0 int * FUN_1001bde0(void * this, LPCSTR param_1) 31 1 +1001be00 FUN_1001be00 basic_streambuf_> * FUN_1001be00(void * this, byte param_1) 128 1 +1001be80 FUN_1001be80 bool FUN_1001be80(void * this, uint param_1, char param_2) 182 4 memcpy +1001bf40 FUN_1001bf40 undefined FUN_1001bf40(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 91 0 +1001bfa0 FUN_1001bfa0 undefined FUN_1001bfa0(void * this, uint param_1) 57 1 +1001bfe0 FUN_1001bfe0 int * FUN_1001bfe0(void * this, uint param_1, int * param_2, uint param_3, uint param_4) 372 6 memcpy +1001c170 FUN_1001c170 undefined FUN_1001c170(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 88 0 +1001c1d0 FUN_1001c1d0 int FUN_1001c1d0(int param_1) 99 1 +1001c240 FUN_1001c240 undefined4 FUN_1001c240(void) 289 5 +1001c370 FUN_1001c370 undefined4 FUN_1001c370(void) 289 5 +1001c4a0 FUN_1001c4a0 undefined4 FUN_1001c4a0(void) 291 5 +1001c5d0 FUN_1001c5d0 undefined4 FUN_1001c5d0(void) 291 5 +1001c700 FUN_1001c700 undefined FUN_1001c700(int * param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined4 param_7, undefined4 param_8, undefined4 param_9, SAFEARRAY * param_10, undefined4 param_11, undefined4 param_12, undefined4 param_13) 487 10 +1001c8f0 FUN_1001c8f0 HRESULT FUN_1001c8f0(void * this, uint param_1, int param_2) 247 7 SafeArrayCreate;SafeArrayGetLBound;SafeArrayGetUBound;SafeArrayLock +1001c9f0 FUN_1001c9f0 LONG FUN_1001c9f0(undefined4 * param_1) 67 4 SysFreeString +1001ca40 FUN_1001ca40 undefined4 FUN_1001ca40(int * param_1) 137 2 +1001cad0 FUN_1001cad0 int FUN_1001cad0(void * this, uint param_1) 55 1 +1001cb10 FUN_1001cb10 undefined4 * FUN_1001cb10(undefined4 * param_1) 84 1 +1001cb70 FUN_1001cb70 undefined FUN_1001cb70(uint param_1) 499 8 +1001cd70 FUN_1001cd70 undefined FUN_1001cd70(int * param_1) 140 4 +1001ce00 FUN_1001ce00 basic_iostream_> * FUN_1001ce00(void * this, byte param_1, int param_2) 217 3 +1001cee0 FUN_1001cee0 int * FUN_1001cee0(void * this, byte param_1) 36 2 +1001cf10 FUN_1001cf10 int * FUN_1001cf10(void * this, uint param_1, undefined2 param_2) 185 3 +1001cfd0 FUN_1001cfd0 int * FUN_1001cfd0(void * this, int * param_1, uint param_2, uint param_3) 251 5 memcpy +1001d0d0 FUN_1001d0d0 int * FUN_1001d0d0(void * this, undefined4 * param_1, uint param_2, uint param_3) 261 4 memcpy +1001d1e0 FUN_1001d1e0 int * FUN_1001d1e0(void * this, int * param_1, uint param_2) 241 4 memcpy +1001d2e0 FUN_1001d2e0 undefined FUN_1001d2e0(void * this, int * param_1) 20 1 +1001d300 FUN_1001d300 undefined FUN_1001d300(void * this, uint param_1, int * param_2) 24 1 +1001d330 FUN_1001d330 undefined4 * FUN_1001d330(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 127 1 +1001d3af Catch@1001d3af undefined Catch@1001d3af(void) 9 1 +1001d3c0 FUN_1001d3c0 undefined FUN_1001d3c0(SAFEARRAY * param_1, int * param_2, SAFEARRAY * * param_3, SAFEARRAY * * param_4, undefined4 * param_5) 361 6 SafeArrayUnlock +1001d530 FUN_1001d530 undefined FUN_1001d530(undefined4 * param_1) 75 4 SysFreeString +1001d580 FUN_1001d580 undefined2 * FUN_1001d580(void * this, int * param_1) 46 1 +1001d5b0 FUN_1001d5b0 undefined FUN_1001d5b0(void * this, undefined2 param_1) 18 1 +1001d5d0 FUN_1001d5d0 int * FUN_1001d5d0(void * this, int * param_1, uint param_2) 284 4 memcpy +1001d6f0 FUN_1001d6f0 undefined FUN_1001d6f0(void * this, int * param_1) 44 1 +1001d720 FUN_1001d720 undefined2 * FUN_1001d720(void * this, int * param_1, uint param_2) 47 1 +1001d750 FUN_1001d750 undefined FUN_1001d750(void * this, int * param_1) 20 1 +1001d770 FUN_1001d770 undefined FUN_1001d770(void * this, undefined4 * param_1) 20 1 +1001d7a0 FUN_1001d7a0 undefined FUN_1001d7a0(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 38 1 +1001d7d0 FUN_1001d7d0 undefined FUN_1001d7d0(undefined4 * param_1) 75 4 SysFreeString +1001d820 FUN_1001d820 int * FUN_1001d820(void * this, int * param_1) 110 5 SysFreeString +1001d890 FUN_1001d890 undefined4 * FUN_1001d890(void * this, undefined4 * param_1) 156 2 +1001d930 FUN_1001d930 undefined4 * FUN_1001d930(void * this, undefined4 * param_1) 156 2 +1001d9d0 FUN_1001d9d0 undefined FUN_1001d9d0(undefined4 * param_1) 46 1 +1001da00 FUN_1001da00 undefined4 * FUN_1001da00(void * this, undefined4 param_1, int * param_2, OLECHAR * param_3, undefined4 param_4, undefined4 param_5) 146 1 +1001daa0 FUN_1001daa0 undefined4 * FUN_1001daa0(void * this, int param_1) 132 0 +1001db30 FUN_1001db30 undefined FUN_1001db30(undefined4 * param_1) 178 5 SysFreeString +1001dbf0 FUN_1001dbf0 undefined4 * FUN_1001dbf0(void * this, int param_1) 161 1 +1001dca0 FUN_1001dca0 undefined2 * FUN_1001dca0(void * this, int * param_1) 66 1 +1001dcf0 FUN_1001dcf0 undefined FUN_1001dcf0(void * this, int * param_1) 44 1 +1001dd20 FUN_1001dd20 undefined4 * FUN_1001dd20(void * this, undefined4 * param_1) 126 2 memmove +1001dda0 FUN_1001dda0 undefined FUN_1001dda0(void * this, undefined4 * param_1) 20 1 +1001ddd0 FUN_1001ddd0 undefined FUN_1001ddd0(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 37 1 +1001de00 FUN_1001de00 undefined4 * FUN_1001de00(void * this, byte param_1) 33 2 +1001de30 FUN_1001de30 undefined2 * FUN_1001de30(void * this, undefined4 * param_1) 43 1 +1001de60 FUN_1001de60 undefined FUN_1001de60(_Container_base0 * param_1) 47 2 +1001de90 FUN_1001de90 undefined FUN_1001de90(void * this, undefined2 * param_1) 510 9 +1001e090 FUN_1001e090 undefined FUN_1001e090(void * this, char * param_1) 235 5 +1001e17b Catch@1001e17b undefined Catch@1001e17b(void) 21 2 +1001e1a0 FUN_1001e1a0 undefined2 * FUN_1001e1a0(undefined2 * param_1, int * param_2, void * param_3) 123 2 +1001e220 FUN_1001e220 undefined4 * FUN_1001e220(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 181 2 +1001e2e0 FUN_1001e2e0 undefined FUN_1001e2e0(_Container_base0 * param_1) 47 2 +1001e310 FUN_1001e310 undefined2 * FUN_1001e310(void * this, undefined2 * param_1) 89 1 +1001e370 FUN_1001e370 undefined FUN_1001e370(void * this, int param_1) 127 2 +1001e3f0 FUN_1001e3f0 undefined FUN_1001e3f0(void * this, void * param_1, int param_2, char * param_3, int param_4) 1866 26 SysFreeString +1001eb40 FUN_1001eb40 void * FUN_1001eb40(void * param_1, void * param_2, char * param_3, int param_4) 97 1 +1001ebb0 FUN_1001ebb0 void * FUN_1001ebb0(void * param_1, int param_2, char * param_3, int param_4) 174 2 +1001ec60 FUN_1001ec60 undefined4 * FUN_1001ec60(undefined4 * param_1, undefined4 * param_2, int param_3, OLECHAR * param_4, undefined4 param_5, undefined4 param_6) 329 8 SysFreeString +1001edb0 FUN_1001edb0 undefined FUN_1001edb0(undefined4 * param_1, OLECHAR * param_2, undefined4 param_3, undefined4 param_4) 50 2 +1001edf0 FUN_1001edf0 undefined FUN_1001edf0(void * this, undefined4 * param_1) 140 3 +1001ee80 FUN_1001ee80 undefined FUN_1001ee80(undefined4 * param_1) 1376 19 +1001f3f0 FUN_1001f3f0 undefined FUN_1001f3f0(void * this, undefined4 param_1, int * param_2, undefined1 * param_3) 1760 39 SysAllocString;SysAllocStringByteLen;SysFreeString;memset +1001fad0 FUN_1001fad0 undefined4 FUN_1001fad0(void * this, undefined4 param_1, int * param_2, undefined1 * param_3) 79 2 +1001fb20 FUN_1001fb20 undefined FUN_1001fb20(undefined4 param_1, int * param_2) 526 10 +1001fd30 FUN_1001fd30 IErrorInfo * FUN_1001fd30(IErrorInfo * param_1) 120 2 +1001fdb0 FUN_1001fdb0 undefined4 FUN_1001fdb0(int param_1, wchar_t * param_2, int * param_3) 127 3 +1001fe2f Catch@1001fe2f undefined1 * Catch@1001fe2f(void) 91 4 +1001fea1 Catch@1001fea1 undefined * Catch@1001fea1(void) 22 0 +1001feb9 Catch@1001feb9 undefined * Catch@1001feb9(void) 112 6 +1001ff2e Catch@1001ff2e undefined1 * Catch@1001ff2e(void) 70 3 +1001ff80 FUN_1001ff80 undefined4 FUN_1001ff80(int param_1, undefined4 param_2, wchar_t * param_3, wchar_t * param_4, int param_5, undefined4 param_6, undefined4 param_7) 143 3 +1002000f Catch@1002000f undefined1 * Catch@1002000f(void) 94 4 +10020084 Catch@10020084 undefined * Catch@10020084(void) 22 0 +1002009c Catch@1002009c undefined * Catch@1002009c(void) 115 6 +10020114 Catch@10020114 undefined1 * Catch@10020114(void) 73 3 +10020160 FUN_10020160 undefined4 FUN_10020160(int param_1, undefined4 param_2, int param_3, undefined4 param_4, uint param_5, int param_6) 141 3 +100201ed Catch@100201ed undefined1 * Catch@100201ed(void) 94 4 +10020262 Catch@10020262 undefined * Catch@10020262(void) 22 0 +1002027a Catch@1002027a undefined * Catch@1002027a(void) 115 6 +100202f2 Catch@100202f2 undefined1 * Catch@100202f2(void) 73 3 +10020340 FUN_10020340 undefined4 FUN_10020340(int param_1, undefined4 param_2, uint param_3) 131 3 +100203c3 Catch@100203c3 undefined1 * Catch@100203c3(void) 94 4 +10020438 Catch@10020438 undefined * Catch@10020438(void) 22 0 +10020450 Catch@10020450 undefined * Catch@10020450(void) 115 6 +100204c8 Catch@100204c8 undefined1 * Catch@100204c8(void) 73 3 +10020520 FUN_10020520 undefined4 FUN_10020520(int param_1, undefined4 param_2, int param_3, undefined4 param_4, undefined4 param_5, int param_6) 141 3 +100205ad Catch@100205ad undefined1 * Catch@100205ad(void) 94 4 +10020622 Catch@10020622 undefined * Catch@10020622(void) 22 0 +1002063a Catch@1002063a undefined * Catch@1002063a(void) 115 6 +100206b2 Catch@100206b2 undefined1 * Catch@100206b2(void) 73 3 +10020700 FUN_10020700 undefined4 FUN_10020700(int param_1, undefined4 param_2, int param_3, undefined4 param_4, undefined4 param_5) 182 3 +100207b6 Catch@100207b6 undefined1 * Catch@100207b6(void) 94 4 +1002082b Catch@1002082b undefined * Catch@1002082b(void) 22 0 +10020843 Catch@10020843 undefined * Catch@10020843(void) 115 6 +100208bb Catch@100208bb undefined1 * Catch@100208bb(void) 73 3 +10020910 FUN_10020910 undefined4 FUN_10020910(int param_1, int * param_2, undefined4 * param_3, undefined4 * param_4, int * param_5) 143 3 +1002099f Catch@1002099f undefined1 * Catch@1002099f(void) 94 4 +10020a14 Catch@10020a14 undefined * Catch@10020a14(void) 22 0 +10020a2c Catch@10020a2c undefined * Catch@10020a2c(void) 115 6 +10020aa4 Catch@10020aa4 undefined1 * Catch@10020aa4(void) 73 3 +10020af0 FUN_10020af0 undefined4 FUN_10020af0(int param_1, int * param_2, int * param_3, LPCRITICAL_SECTION param_4, uint * param_5) 143 3 +10020b7f Catch@10020b7f undefined1 * Catch@10020b7f(void) 94 4 +10020bf4 Catch@10020bf4 undefined * Catch@10020bf4(void) 22 0 +10020c0c Catch@10020c0c undefined * Catch@10020c0c(void) 115 6 +10020c84 Catch@10020c84 undefined1 * Catch@10020c84(void) 73 3 +10020cd0 FUN_10020cd0 undefined4 FUN_10020cd0(int param_1, int * param_2, int * param_3, LPCRITICAL_SECTION param_4, uint * param_5) 143 3 +10020d5f Catch@10020d5f undefined1 * Catch@10020d5f(void) 94 4 +10020dd4 Catch@10020dd4 undefined * Catch@10020dd4(void) 22 0 +10020dec Catch@10020dec undefined * Catch@10020dec(void) 115 6 +10020e64 Catch@10020e64 undefined1 * Catch@10020e64(void) 73 3 +10020eb0 FUN_10020eb0 undefined4 FUN_10020eb0(int param_1, int * param_2, int * param_3, undefined4 * param_4, uint * param_5) 143 3 +10020f3f Catch@10020f3f undefined1 * Catch@10020f3f(void) 94 4 +10020fb4 Catch@10020fb4 undefined * Catch@10020fb4(void) 22 0 +10020fcc Catch@10020fcc undefined * Catch@10020fcc(void) 115 6 +10021044 Catch@10021044 undefined1 * Catch@10021044(void) 73 3 +10021090 FUN_10021090 undefined4 FUN_10021090(int param_1, int * param_2, int * param_3, LPCRITICAL_SECTION param_4, uint * param_5) 143 3 +1002111f Catch@1002111f undefined1 * Catch@1002111f(void) 94 4 +10021194 Catch@10021194 undefined * Catch@10021194(void) 22 0 +100211ac Catch@100211ac undefined * Catch@100211ac(void) 115 6 +10021224 Catch@10021224 undefined1 * Catch@10021224(void) 73 3 +10021270 FUN_10021270 undefined4 FUN_10021270(int param_1, int * param_2, int * param_3, LPCRITICAL_SECTION param_4, uint * param_5) 143 3 +100212ff Catch@100212ff undefined1 * Catch@100212ff(void) 94 4 +10021374 Catch@10021374 undefined * Catch@10021374(void) 22 0 +1002138c Catch@1002138c undefined * Catch@1002138c(void) 115 6 +10021404 Catch@10021404 undefined1 * Catch@10021404(void) 73 3 +10021450 FUN_10021450 undefined4 FUN_10021450(int param_1, undefined4 param_2, undefined4 * param_3) 131 3 +100214d3 Catch@100214d3 undefined1 * Catch@100214d3(void) 94 4 +10021548 Catch@10021548 undefined * Catch@10021548(void) 22 0 +10021560 Catch@10021560 undefined * Catch@10021560(void) 115 6 +100215d8 Catch@100215d8 undefined1 * Catch@100215d8(void) 73 3 +10021630 FUN_10021630 undefined4 FUN_10021630(int param_1) 119 3 +100216a7 Catch@100216a7 undefined1 * Catch@100216a7(void) 94 4 +1002171c Catch@1002171c undefined * Catch@1002171c(void) 22 0 +10021734 Catch@10021734 undefined * Catch@10021734(void) 115 6 +100217ac Catch@100217ac undefined1 * Catch@100217ac(void) 73 3 +10021800 FUN_10021800 undefined4 FUN_10021800(int param_1, undefined4 param_2, int param_3, undefined4 param_4, undefined4 param_5) 181 3 +100218b5 Catch@100218b5 undefined1 * Catch@100218b5(void) 94 4 +1002192a Catch@1002192a undefined * Catch@1002192a(void) 22 0 +10021942 Catch@10021942 undefined * Catch@10021942(void) 115 6 +100219ba Catch@100219ba undefined1 * Catch@100219ba(void) 73 3 +10021a10 FUN_10021a10 undefined4 FUN_10021a10(int param_1, undefined4 param_2, uint param_3, int param_4) 133 3 +10021a95 Catch@10021a95 undefined1 * Catch@10021a95(void) 94 4 +10021b0a Catch@10021b0a undefined * Catch@10021b0a(void) 22 0 +10021b22 Catch@10021b22 undefined * Catch@10021b22(void) 115 6 +10021b9a Catch@10021b9a undefined1 * Catch@10021b9a(void) 73 3 +10021c10 FUN_10021c10 undefined4 FUN_10021c10(undefined4 param_1) 8 0 +10021c20 FUN_10021c20 int FUN_10021c20(int param_1) 11 0 +10021c40 FUN_10021c40 undefined FUN_10021c40(void * param_1) 19 1 +10021c60 FUN_10021c60 int FUN_10021c60(int param_1) 11 0 +10021c70 FUN_10021c70 int FUN_10021c70(int param_1) 11 0 +10021c80 FUN_10021c80 undefined4 FUN_10021c80(undefined4 param_1) 8 0 +10021c90 FUN_10021c90 int FUN_10021c90(int param_1) 11 0 +10021ca0 FUN_10021ca0 int FUN_10021ca0(int param_1) 11 0 +10021cb0 FUN_10021cb0 int FUN_10021cb0(int param_1) 11 0 +10021cc0 FUN_10021cc0 undefined FUN_10021cc0(int param_1) 29 0 +10021ce0 FUN_10021ce0 undefined FUN_10021ce0(int * param_1) 28 0 +10021d00 FUN_10021d00 bool FUN_10021d00(uint * param_1, uint * param_2) 21 0 +10021d20 FUN_10021d20 undefined FUN_10021d20(void * param_1) 19 1 +10021d40 FUN_10021d40 undefined4 FUN_10021d40(void * this, int * param_1) 19 0 +10021d70 FUN_10021d70 undefined4 FUN_10021d70(void * this, int * param_1) 19 0 +10021d90 FUN_10021d90 int FUN_10021d90(int param_1) 11 0 +10021db0 FUN_10021db0 undefined4 FUN_10021db0(undefined4 param_1) 8 0 +10021dc0 FUN_10021dc0 undefined FUN_10021dc0(int * param_1) 72 0 +10021e20 FUN_10021e20 undefined FUN_10021e20(void * this, undefined4 * param_1) 18 0 +10021e70 FUN_10021e70 undefined4 FUN_10021e70(undefined4 param_1) 8 0 +10021eb0 FUN_10021eb0 undefined FUN_10021eb0(int * param_1) 84 0 +10021f10 FUN_10021f10 undefined4 FUN_10021f10(undefined4 param_1) 8 0 +10021f20 FUN_10021f20 undefined4 FUN_10021f20(undefined4 param_1) 8 0 +10021f30 FUN_10021f30 undefined4 FUN_10021f30(undefined4 param_1) 8 0 +10021f60 FUN_10021f60 undefined4 FUN_10021f60(undefined4 param_1) 8 0 +10021f70 FUN_10021f70 undefined4 FUN_10021f70(undefined4 param_1) 8 0 +10021f80 FUN_10021f80 undefined4 FUN_10021f80(undefined4 param_1) 8 0 +10021f90 FUN_10021f90 undefined4 FUN_10021f90(undefined4 param_1) 8 0 +10021fa0 FUN_10021fa0 undefined FUN_10021fa0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10021fc0 FUN_10021fc0 int FUN_10021fc0(LPCWSTR param_1) 83 1 +10022060 FUN_10022060 undefined4 FUN_10022060(void * this, int * param_1) 19 0 +10022080 FUN_10022080 undefined4 FUN_10022080(void * this, int * param_1) 19 0 +100220a0 FUN_100220a0 undefined FUN_100220a0(undefined4 * param_1) 10 1 +100220e0 FUN_100220e0 undefined FUN_100220e0(void * this, int * param_1) 87 0 +10022140 FUN_10022140 undefined FUN_10022140(int param_1) 11 1 +10022150 FUN_10022150 int FUN_10022150(int param_1) 11 0 +10022160 FUN_10022160 int * FUN_10022160(int * param_1) 12 1 +100221a0 FUN_100221a0 undefined4 * FUN_100221a0(void * this, uint * param_1) 44 0 +100221d0 FUN_100221d0 undefined FUN_100221d0(void * this, undefined4 param_1) 14 0 +10022200 FUN_10022200 undefined FUN_10022200(void * this, undefined4 param_1) 14 0 +10022210 FUN_10022210 undefined FUN_10022210(undefined1 * param_1, undefined1 * param_2) 21 0 +10022230 FUN_10022230 void * FUN_10022230(char * param_1) 144 3 +100222c0 FUN_100222c0 void * FUN_100222c0(char * param_1) 144 3 +10022370 FUN_10022370 int * FUN_10022370(int * param_1) 12 1 +10022380 FUN_10022380 undefined FUN_10022380(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +100223a0 FUN_100223a0 undefined FUN_100223a0(undefined4 * param_1, undefined4 * param_2) 84 0 +10022400 FUN_10022400 undefined FUN_10022400(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10022420 FUN_10022420 undefined FUN_10022420(undefined4 * param_1, undefined4 * param_2) 83 0 +10022480 FUN_10022480 int * FUN_10022480(void * this, int * param_1) 23 1 +100224b0 FUN_100224b0 undefined FUN_100224b0(void * this, undefined4 * param_1) 18 0 +100224d0 FUN_100224d0 undefined FUN_100224d0(void * this, int param_1) 83 0 +10022530 FUN_10022530 undefined FUN_10022530(void * this, undefined4 param_1) 14 0 +10022540 FUN_10022540 undefined FUN_10022540(void * this, uint param_1) 42 1 +10022570 FUN_10022570 undefined FUN_10022570(char * param_1) 21 1 +10022590 FUN_10022590 undefined FUN_10022590(void * this, undefined4 param_1) 14 0 +100225a0 FUN_100225a0 undefined FUN_100225a0(char * param_1) 21 1 +100225e0 FUN_100225e0 undefined FUN_100225e0(undefined4 * param_1, undefined4 * param_2) 86 0 +10022640 FUN_10022640 undefined FUN_10022640(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 546 2 +10022870 FUN_10022870 undefined FUN_10022870(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10022890 FUN_10022890 undefined FUN_10022890(int param_1) 142 3 +10022920 FUN_10022920 undefined FUN_10022920(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 81 0 +10022980 FUN_10022980 undefined FUN_10022980(int * param_1) 52 1 +100229c0 FUN_100229c0 undefined FUN_100229c0(void * this, undefined4 * param_1) 17 0 +100229e0 FUN_100229e0 undefined FUN_100229e0(void * this, undefined4 * param_1) 15 0 +100229f0 FUN_100229f0 undefined FUN_100229f0(void * this, undefined4 * param_1, int * param_2) 592 7 +10022c50 FUN_10022c50 undefined FUN_10022c50(int * param_1) 52 1 +10022c90 FUN_10022c90 int * FUN_10022c90(int * param_1) 145 3 +10022d30 FUN_10022d30 undefined FUN_10022d30(void * this, int * param_1, uint * param_2) 49 0 +10022d70 FUN_10022d70 undefined FUN_10022d70(int * param_1) 56 2 +10022db0 FUN_10022db0 undefined FUN_10022db0(void * this, undefined4 param_1) 14 0 +10022dc0 FUN_10022dc0 undefined FUN_10022dc0(undefined4 * param_1, undefined4 param_2) 15 0 +10022dd0 FUN_10022dd0 int FUN_10022dd0(int param_1) 167 3 +10022e80 FUN_10022e80 undefined FUN_10022e80(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10022ee0 FUN_10022ee0 undefined FUN_10022ee0(void * this, undefined4 * param_1, int * param_2, char param_3) 209 3 +10022fc0 FUN_10022fc0 undefined4 * FUN_10022fc0(void * this, char * param_1) 190 4 +1002304f Catch@1002304f undefined Catch@1002304f(void) 21 2 +100230a0 FUN_100230a0 int * FUN_100230a0(int * param_1) 153 3 +10023140 FUN_10023140 undefined FUN_10023140(int * param_1) 117 1 +100231c0 FUN_100231c0 undefined FUN_100231c0(void * this, undefined4 * param_1) 16 0 +100231d0 FUN_100231d0 undefined FUN_100231d0(void * this, undefined4 * param_1) 14 0 +100231f0 FUN_100231f0 undefined FUN_100231f0(int param_1) 77 2 +10023240 FUN_10023240 undefined FUN_10023240(void * this, undefined4 * param_1, uint * param_2) 98 0 +100232b0 FUN_100232b0 undefined FUN_100232b0(void * this, int * param_1, int * param_2) 58 1 +100232f0 FUN_100232f0 int FUN_100232f0(int param_1) 177 3 +100233b0 FUN_100233b0 undefined4 * FUN_100233b0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10023433 Catch@10023433 undefined Catch@10023433(void) 21 2 +10023480 FUN_10023480 undefined FUN_10023480(void * this, undefined4 * param_1, int * param_2, int * param_3) 158 2 +10023520 FUN_10023520 undefined4 * FUN_10023520(void * this, undefined4 * param_1, char * param_2) 38 2 +10023550 FUN_10023550 undefined FUN_10023550(int * param_1) 74 2 +100235a0 FUN_100235a0 undefined FUN_100235a0(int * param_1) 40 1 +100235d0 FUN_100235d0 undefined FUN_100235d0(void * this, char * param_1, undefined4 * param_2) 72 2 +10023620 FUN_10023620 undefined FUN_10023620(void * param_1) 24 1 +10023640 FUN_10023640 LPVOID FUN_10023640(int * param_1) 120 4 +100236c0 FUN_100236c0 undefined FUN_100236c0(void * this, int param_1, int * param_2) 62 2 +10023710 FUN_10023710 undefined FUN_10023710(void * this, undefined4 * param_1) 69 2 +10023760 FUN_10023760 undefined FUN_10023760(void * param_1) 103 2 +100237d0 FUN_100237d0 undefined FUN_100237d0(void * param_1) 103 2 +10023840 FUN_10023840 undefined FUN_10023840(int * param_1) 357 5 +100239b0 FUN_100239b0 undefined FUN_100239b0(void * this, LPVOID param_1, int param_2) 139 5 +10023a40 FUN_10023a40 int FUN_10023a40(int param_1) 175 3 +10023af0 FUN_10023af0 int * FUN_10023af0(int * param_1) 264 3 +10023c00 FUN_10023c00 undefined4 FUN_10023c00(int * param_1) 32 1 +10023c20 FUN_10023c20 int FUN_10023c20(LPCWSTR param_1) 83 1 +10023c80 WritersWithNonBlockingReadersLock.{ctor} LPCRITICAL_SECTION WritersWithNonBlockingReadersLock.{ctor}(LPCRITICAL_SECTION param_1) 6 0 +10023cb0 WritersWithNonBlockingReadersLock.{dtor} void WritersWithNonBlockingReadersLock.{dtor}(LPCRITICAL_SECTION param_1) 6 0 +10023ce0 WritersWithNonBlockingReadersLock.WriterLock void WritersWithNonBlockingReadersLock.WriterLock(LPCRITICAL_SECTION param_1) 6 1 +10023d00 WritersWithNonBlockingReadersLock.WriterUnlock void WritersWithNonBlockingReadersLock.WriterUnlock(LPCRITICAL_SECTION param_1) 6 1 +10023d10 WritersWithNonBlockingReadersLock.ReaderLock void WritersWithNonBlockingReadersLock.ReaderLock(LPCRITICAL_SECTION param_1) 6 0 +10023d50 WritersWithNonBlockingReadersLock.ReaderUnlock void WritersWithNonBlockingReadersLock.ReaderUnlock(int param_1) 6 0 +10023d80 FUN_10023d80 int FUN_10023d80(LPCWSTR param_1) 83 1 +10023de0 FUN_10023de0 undefined FUN_10023de0(undefined4 * param_1) 11 1 +10023df0 FUN_10023df0 clock_t * FUN_10023df0(void * this, int param_1) 33 1 +10023e20 FUN_10023e20 undefined FUN_10023e20(clock_t * param_1) 13 1 +10023e30 FUN_10023e30 undefined FUN_10023e30(void * this, int param_1) 65 3 +10023e90 FUN_10023e90 undefined FUN_10023e90(undefined4 * param_1) 11 1 +10023ea0 FUN_10023ea0 undefined4 * FUN_10023ea0(void * this, int param_1) 80 3 +10023f00 FUN_10023f00 undefined4 * FUN_10023f00(void * this, byte param_1) 39 2 +10023f40 FUN_10023f40 undefined FUN_10023f40(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4) 32 0 +10024000 FUN_10024000 uint FUN_10024000(LPCRITICAL_SECTION param_1) 41 2 +10024080 FUN_10024080 undefined FUN_10024080(LPCRITICAL_SECTION param_1) 8 1 +10024090 FUN_10024090 undefined FUN_10024090(undefined4 * param_1) 20 1 SysFreeString +100240b0 FUN_100240b0 undefined4 FUN_100240b0(void) 5 0 +100240c0 FUN_100240c0 undefined FUN_100240c0(undefined4 param_1, undefined4 param_2) 46 1 +100240f0 FUN_100240f0 undefined FUN_100240f0(undefined4 param_1, undefined4 param_2) 52 1 +10024130 FUN_10024130 undefined FUN_10024130(undefined4 param_1, undefined4 param_2) 20 1 +10024150 FUN_10024150 undefined FUN_10024150(undefined4 param_1) 33 2 +10024180 FUN_10024180 undefined FUN_10024180(undefined4 param_1) 20 1 +100241a0 FUN_100241a0 undefined1 FUN_100241a0(int param_1) 7 0 +10024250 FUN_10024250 undefined4 FUN_10024250(void * this, int * param_1) 19 0 +10024270 FUN_10024270 undefined4 FUN_10024270(void * this, int * param_1) 19 0 +100242a0 FUN_100242a0 int FUN_100242a0(LPCWSTR param_1) 83 1 +10024310 FUN_10024310 undefined4 FUN_10024310(undefined4 param_1) 8 0 +10024320 FUN_10024320 int FUN_10024320(int param_1) 11 0 +10024350 FUN_10024350 undefined FUN_10024350(void * param_1) 19 1 +10024370 FUN_10024370 undefined4 FUN_10024370(void * this, int * param_1) 19 0 +10024390 FUN_10024390 undefined4 FUN_10024390(undefined4 param_1) 8 0 +100243a0 FUN_100243a0 int FUN_100243a0(int param_1) 11 0 +100243c0 FUN_100243c0 undefined FUN_100243c0(void * param_1) 19 1 +100243e0 FUN_100243e0 undefined4 FUN_100243e0(undefined4 param_1) 8 0 +100243f0 FUN_100243f0 int FUN_100243f0(int param_1) 11 0 +10024410 FUN_10024410 undefined FUN_10024410(void * param_1) 19 1 +10024430 FUN_10024430 int FUN_10024430(int param_1) 11 0 +10024440 FUN_10024440 int FUN_10024440(int param_1) 11 0 +10024450 FUN_10024450 undefined4 FUN_10024450(undefined4 param_1) 8 0 +10024460 FUN_10024460 int FUN_10024460(int param_1) 11 0 +10024470 FUN_10024470 int FUN_10024470(int param_1) 11 0 +10024480 FUN_10024480 int FUN_10024480(int param_1) 11 0 +10024490 FUN_10024490 undefined FUN_10024490(int param_1) 29 0 +100244b0 FUN_100244b0 undefined FUN_100244b0(int * param_1) 28 0 +100244e0 FUN_100244e0 bool FUN_100244e0(uint * param_1, uint * param_2) 21 0 +10024500 FUN_10024500 undefined FUN_10024500(void * param_1) 19 1 +10024570 FUN_10024570 undefined4 FUN_10024570(undefined4 param_1) 8 0 +10024580 FUN_10024580 int FUN_10024580(int param_1) 11 0 +100245a0 FUN_100245a0 undefined FUN_100245a0(void * param_1) 19 1 +100245c0 FUN_100245c0 undefined4 FUN_100245c0(undefined4 param_1) 8 0 +100245d0 FUN_100245d0 int FUN_100245d0(int param_1) 11 0 +100245f0 FUN_100245f0 undefined FUN_100245f0(void * param_1) 19 1 +10024610 FUN_10024610 undefined4 FUN_10024610(undefined4 param_1) 8 0 +10024620 FUN_10024620 int FUN_10024620(int param_1) 11 0 +10024640 FUN_10024640 undefined FUN_10024640(void * param_1) 19 1 +10024660 FUN_10024660 undefined4 FUN_10024660(undefined4 param_1) 8 0 +10024670 FUN_10024670 int FUN_10024670(int param_1) 11 0 +10024690 FUN_10024690 undefined FUN_10024690(void * param_1) 19 1 +100246b0 FUN_100246b0 undefined4 FUN_100246b0(undefined4 param_1) 8 0 +100246c0 FUN_100246c0 int FUN_100246c0(int param_1) 11 0 +100246e0 FUN_100246e0 undefined FUN_100246e0(void * param_1) 19 1 +10024700 FUN_10024700 undefined4 FUN_10024700(undefined4 param_1) 8 0 +10024710 FUN_10024710 int FUN_10024710(int param_1) 11 0 +10024730 FUN_10024730 undefined FUN_10024730(void * param_1) 19 1 +10024750 FUN_10024750 undefined4 FUN_10024750(undefined4 param_1) 8 0 +10024760 FUN_10024760 int FUN_10024760(int param_1) 11 0 +10024780 FUN_10024780 undefined FUN_10024780(void * param_1) 19 1 +100247a0 FUN_100247a0 undefined4 FUN_100247a0(undefined4 param_1) 8 0 +100247b0 FUN_100247b0 int FUN_100247b0(int param_1) 11 0 +100247d0 FUN_100247d0 undefined FUN_100247d0(void * param_1) 19 1 +100247f0 FUN_100247f0 undefined4 FUN_100247f0(void * this, int * param_1) 19 0 +10024810 FUN_10024810 undefined4 FUN_10024810(void * this, int * param_1) 19 0 +10024830 FUN_10024830 undefined4 FUN_10024830(void * this, int * param_1) 19 0 +10024850 FUN_10024850 undefined4 FUN_10024850(void * this, int * param_1) 19 0 +10024870 FUN_10024870 undefined4 FUN_10024870(void * this, int * param_1) 19 0 +10024890 FUN_10024890 undefined4 FUN_10024890(void * this, int * param_1) 19 0 +100248b0 FUN_100248b0 undefined4 FUN_100248b0(undefined4 param_1) 8 0 +100248c0 FUN_100248c0 int FUN_100248c0(int param_1) 11 0 +100248e0 FUN_100248e0 undefined FUN_100248e0(void * param_1) 19 1 +10024900 FUN_10024900 undefined4 FUN_10024900(undefined4 param_1) 8 0 +10024920 FUN_10024920 undefined4 FUN_10024920(void * this, int * param_1) 19 0 +10024940 FUN_10024940 undefined4 FUN_10024940(void * this, int * param_1) 19 0 +10024960 FUN_10024960 undefined4 FUN_10024960(void * this, int * param_1) 19 0 +10024980 FUN_10024980 undefined4 FUN_10024980(void * this, int * param_1) 19 0 +100249b0 FUN_100249b0 undefined4 FUN_100249b0(void * this, int * param_1) 19 0 +100249d0 FUN_100249d0 undefined4 FUN_100249d0(undefined4 param_1) 8 0 +100249e0 FUN_100249e0 int FUN_100249e0(int param_1) 11 0 +10024a00 FUN_10024a00 undefined FUN_10024a00(void * param_1) 19 1 +10024a20 FUN_10024a20 int FUN_10024a20(int param_1) 11 0 +10024a50 FUN_10024a50 int FUN_10024a50(int param_1) 11 0 +10024a70 FUN_10024a70 int FUN_10024a70(int param_1) 11 0 +10024aa0 FUN_10024aa0 undefined FUN_10024aa0(void * this, undefined1 * param_1) 16 0 +10024ab0 FUN_10024ab0 undefined4 FUN_10024ab0(undefined4 param_1) 8 0 +10024ac0 FUN_10024ac0 int FUN_10024ac0(int param_1) 11 0 +10024ad0 FUN_10024ad0 int FUN_10024ad0(int param_1) 11 0 +10024ae0 FUN_10024ae0 undefined FUN_10024ae0(void * param_1) 19 1 +10024b10 FUN_10024b10 undefined FUN_10024b10(void * this, undefined1 * param_1) 16 0 +10024b20 FUN_10024b20 undefined4 FUN_10024b20(undefined4 param_1) 8 0 +10024b30 FUN_10024b30 int FUN_10024b30(int param_1) 11 0 +10024b40 FUN_10024b40 int FUN_10024b40(int param_1) 11 0 +10024b50 FUN_10024b50 undefined FUN_10024b50(void * param_1) 19 1 +10024b80 FUN_10024b80 int FUN_10024b80(int param_1) 11 0 +10024ba0 FUN_10024ba0 int FUN_10024ba0(int param_1) 11 0 +10024bc0 FUN_10024bc0 int FUN_10024bc0(int param_1) 11 0 +10024bf0 FUN_10024bf0 int FUN_10024bf0(int param_1) 11 0 +10024c20 FUN_10024c20 int FUN_10024c20(int param_1) 11 0 +10024c70 FUN_10024c70 undefined FUN_10024c70(void * this, undefined4 * param_1) 18 0 +10024d70 FUN_10024d70 int FUN_10024d70(int param_1) 11 0 +10024d90 FUN_10024d90 int FUN_10024d90(int param_1) 11 0 +10024da0 FUN_10024da0 int FUN_10024da0(int param_1) 11 0 +10024dc0 FUN_10024dc0 undefined FUN_10024dc0(void * param_1) 19 1 +10024e50 FUN_10024e50 undefined FUN_10024e50(int * param_1) 72 0 +10024ee0 FUN_10024ee0 int FUN_10024ee0(int param_1) 11 0 +10024f00 FUN_10024f00 undefined4 FUN_10024f00(uint * param_1, uint * param_2) 40 0 +10024f30 FUN_10024f30 int FUN_10024f30(void * this, int param_1) 15 0 +10024f50 FUN_10024f50 undefined FUN_10024f50(void * param_1) 19 1 +10024f80 FUN_10024f80 int FUN_10024f80(void * this, int param_1) 15 0 +10024fa0 FUN_10024fa0 undefined FUN_10024fa0(void * param_1) 19 1 +10024fc0 FUN_10024fc0 int FUN_10024fc0(int param_1) 11 0 +10024fd0 FUN_10024fd0 int FUN_10024fd0(int param_1) 11 0 +10024fe0 FUN_10024fe0 int FUN_10024fe0(int param_1) 11 0 +100251d0 FUN_100251d0 undefined4 FUN_100251d0(undefined4 param_1) 8 0 +100251e0 FUN_100251e0 undefined4 FUN_100251e0(undefined4 param_1) 8 0 +100251f0 FUN_100251f0 undefined4 FUN_100251f0(undefined4 param_1) 8 0 +10025200 FUN_10025200 undefined4 FUN_10025200(undefined4 param_1) 8 0 +10025210 FUN_10025210 undefined4 FUN_10025210(undefined4 param_1) 8 0 +10025240 FUN_10025240 undefined4 FUN_10025240(undefined4 param_1) 8 0 +10025260 FUN_10025260 undefined4 FUN_10025260(undefined4 param_1) 8 0 +10025280 FUN_10025280 undefined4 FUN_10025280(undefined4 param_1) 8 0 +100252a0 FUN_100252a0 undefined4 FUN_100252a0(undefined4 param_1) 8 0 +100252c0 FUN_100252c0 uint FUN_100252c0(uint * param_1) 15 0 +100252d0 FUN_100252d0 undefined4 FUN_100252d0(undefined4 param_1) 8 0 +100252f0 FUN_100252f0 undefined4 FUN_100252f0(undefined4 param_1) 8 0 +10025310 FUN_10025310 undefined4 FUN_10025310(undefined4 param_1) 8 0 +10025330 FUN_10025330 undefined4 FUN_10025330(undefined4 param_1) 8 0 +10025350 FUN_10025350 undefined4 FUN_10025350(undefined4 param_1) 8 0 +10025370 FUN_10025370 undefined4 FUN_10025370(undefined4 param_1) 8 0 +10025390 FUN_10025390 undefined4 FUN_10025390(undefined4 param_1) 8 0 +100253b0 FUN_100253b0 undefined4 FUN_100253b0(undefined4 param_1) 8 0 +100253d0 FUN_100253d0 undefined4 FUN_100253d0(undefined4 param_1) 8 0 +100253f0 FUN_100253f0 undefined4 FUN_100253f0(undefined4 param_1) 8 0 +10025440 FUN_10025440 undefined4 FUN_10025440(undefined4 param_1) 8 0 +10025450 FUN_10025450 undefined4 FUN_10025450(undefined4 param_1) 8 0 +10025460 FUN_10025460 undefined4 FUN_10025460(undefined4 param_1) 8 0 +10025470 FUN_10025470 undefined4 FUN_10025470(undefined4 param_1) 8 0 +100254e0 FUN_100254e0 undefined FUN_100254e0(int * param_1) 84 0 +10025570 FUN_10025570 undefined4 FUN_10025570(undefined4 param_1) 8 0 +10025580 FUN_10025580 undefined4 FUN_10025580(undefined4 param_1) 8 0 +10025590 FUN_10025590 undefined FUN_10025590(void * this, undefined4 * param_1, undefined4 * param_2) 36 0 +100255c0 FUN_100255c0 undefined4 FUN_100255c0(undefined4 param_1) 8 0 +100255d0 FUN_100255d0 undefined4 FUN_100255d0(undefined4 param_1) 8 0 +100255e0 FUN_100255e0 undefined4 FUN_100255e0(undefined4 param_1) 8 0 +100255f0 FUN_100255f0 undefined4 FUN_100255f0(undefined4 param_1) 8 0 +10025600 FUN_10025600 undefined4 FUN_10025600(undefined4 param_1) 8 0 +10025610 FUN_10025610 undefined4 FUN_10025610(undefined4 param_1) 8 0 +10025620 FUN_10025620 undefined4 FUN_10025620(undefined4 param_1) 8 0 +10025630 FUN_10025630 undefined4 FUN_10025630(undefined4 param_1) 8 0 +10025640 FUN_10025640 undefined4 FUN_10025640(undefined4 param_1) 8 0 +10025650 FUN_10025650 undefined4 FUN_10025650(undefined4 param_1) 8 0 +10025660 FUN_10025660 undefined4 FUN_10025660(undefined4 param_1) 8 0 +10025670 FUN_10025670 undefined4 FUN_10025670(undefined4 param_1) 8 0 +10025680 FUN_10025680 undefined FUN_10025680(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +100256a0 FUN_100256a0 undefined4 FUN_100256a0(undefined4 param_1) 8 0 +100256b0 FUN_100256b0 undefined4 FUN_100256b0(undefined4 param_1) 8 0 +100256c0 FUN_100256c0 undefined FUN_100256c0(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +100256e0 FUN_100256e0 undefined4 FUN_100256e0(undefined4 param_1) 8 0 +100256f0 FUN_100256f0 undefined4 FUN_100256f0(undefined4 param_1) 8 0 +10025700 FUN_10025700 undefined4 FUN_10025700(undefined4 param_1) 8 0 +10025710 FUN_10025710 undefined4 FUN_10025710(undefined4 param_1) 8 0 +10025720 FUN_10025720 undefined4 FUN_10025720(undefined4 param_1) 8 0 +10025730 FUN_10025730 undefined4 FUN_10025730(undefined4 param_1) 8 0 +10025740 FUN_10025740 undefined4 FUN_10025740(undefined4 param_1) 8 0 +10025750 FUN_10025750 undefined4 FUN_10025750(undefined4 param_1) 8 0 +10025760 FUN_10025760 undefined4 FUN_10025760(undefined4 param_1) 8 0 +10025770 FUN_10025770 undefined4 FUN_10025770(undefined4 param_1) 8 0 +10025780 FUN_10025780 undefined4 FUN_10025780(undefined4 param_1) 8 0 +10025790 FUN_10025790 undefined4 FUN_10025790(undefined4 param_1) 8 0 +100257a0 FUN_100257a0 undefined4 FUN_100257a0(undefined4 param_1) 8 0 +100257b0 FUN_100257b0 undefined4 FUN_100257b0(undefined4 param_1) 8 0 +100257c0 FUN_100257c0 undefined4 FUN_100257c0(undefined4 param_1) 8 0 +100257d0 FUN_100257d0 undefined1 FUN_100257d0(undefined4 param_1) 11 0 +100257e0 FUN_100257e0 undefined1 FUN_100257e0(undefined4 param_1) 11 0 +100257f0 FUN_100257f0 undefined4 FUN_100257f0(undefined4 param_1) 8 0 +10025800 FUN_10025800 undefined FUN_10025800(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 31 0 +10025820 FUN_10025820 undefined FUN_10025820(int param_1, int param_2, undefined4 * param_3) 35 0 +10025850 FUN_10025850 undefined4 FUN_10025850(undefined4 param_1) 8 0 +10025860 FUN_10025860 undefined FUN_10025860(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 31 0 +10025880 FUN_10025880 undefined FUN_10025880(int param_1, int param_2, undefined4 * param_3) 35 0 +100258e0 FUN_100258e0 undefined FUN_100258e0(undefined4 * param_1, undefined4 * param_2) 84 0 +10025950 FUN_10025950 undefined FUN_10025950(undefined4 * param_1, undefined4 * param_2) 84 0 +100259c0 FUN_100259c0 undefined FUN_100259c0(undefined4 * param_1, undefined4 * param_2) 84 0 +10025a60 FUN_10025a60 undefined FUN_10025a60(undefined4 * param_1, undefined4 * param_2) 84 0 +10025ad0 FUN_10025ad0 undefined FUN_10025ad0(undefined4 * param_1, undefined4 * param_2) 84 0 +10025b40 FUN_10025b40 undefined FUN_10025b40(undefined4 * param_1, undefined4 * param_2) 84 0 +10025bb0 FUN_10025bb0 undefined FUN_10025bb0(undefined4 * param_1, undefined4 * param_2) 84 0 +10025c20 FUN_10025c20 undefined FUN_10025c20(undefined4 * param_1, undefined4 * param_2) 84 0 +10025c90 FUN_10025c90 undefined FUN_10025c90(undefined4 * param_1, undefined4 * param_2) 84 0 +10025d00 FUN_10025d00 undefined FUN_10025d00(undefined4 * param_1, undefined4 * param_2) 84 0 +10025d70 FUN_10025d70 undefined FUN_10025d70(undefined4 * param_1, undefined4 * param_2) 84 0 +10025de0 FUN_10025de0 undefined FUN_10025de0(undefined4 * param_1, undefined4 * param_2) 84 0 +10025e50 FUN_10025e50 undefined FUN_10025e50(undefined4 * param_1, undefined4 * param_2) 84 0 +10025ec0 FUN_10025ec0 undefined4 FUN_10025ec0(undefined4 param_1) 8 0 +10025f80 FUN_10025f80 undefined FUN_10025f80(void * this, undefined4 * param_1) 18 0 +10025fa0 FUN_10025fa0 undefined FUN_10025fa0(void * this, undefined4 * param_1) 18 0 +10025fc0 FUN_10025fc0 undefined FUN_10025fc0(void * this, undefined4 * param_1) 18 0 +10025fe0 FUN_10025fe0 undefined FUN_10025fe0(void * this, undefined4 * param_1) 18 0 +10026000 FUN_10026000 undefined FUN_10026000(void * this, undefined4 * param_1) 18 0 +10026020 FUN_10026020 undefined FUN_10026020(void * this, undefined4 * param_1) 18 0 +10026060 FUN_10026060 undefined FUN_10026060(void * this, undefined4 * param_1) 18 0 +10026080 FUN_10026080 undefined4 FUN_10026080(void * this, int * param_1) 19 0 +100260c0 FUN_100260c0 undefined FUN_100260c0(void * this, undefined4 * param_1) 18 0 +100260e0 FUN_100260e0 undefined4 FUN_100260e0(void * this, int * param_1) 19 0 +10026100 FUN_10026100 undefined FUN_10026100(void * this, undefined4 * param_1) 18 0 +10026120 FUN_10026120 undefined FUN_10026120(void * this, undefined4 * param_1) 18 0 +10026160 FUN_10026160 undefined FUN_10026160(void * this, undefined4 * param_1) 18 0 +10026180 FUN_10026180 undefined4 FUN_10026180(void * this, int * param_1) 19 0 +100261a0 FUN_100261a0 undefined4 FUN_100261a0(undefined4 param_1) 8 0 +100261b0 FUN_100261b0 undefined4 FUN_100261b0(undefined4 param_1) 8 0 +100261c0 FUN_100261c0 undefined4 FUN_100261c0(undefined4 param_1) 8 0 +100261d0 FUN_100261d0 undefined4 FUN_100261d0(undefined4 param_1) 8 0 +100261e0 FUN_100261e0 undefined FUN_100261e0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10026200 FUN_10026200 undefined4 FUN_10026200(undefined4 param_1) 8 0 +10026210 FUN_10026210 undefined FUN_10026210(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10026230 FUN_10026230 undefined4 FUN_10026230(undefined4 param_1) 8 0 +10026240 FUN_10026240 undefined FUN_10026240(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10026260 FUN_10026260 undefined FUN_10026260(undefined4 * param_1, undefined4 * param_2) 101 0 +100262d0 FUN_100262d0 undefined4 FUN_100262d0(undefined4 param_1) 8 0 +100262e0 FUN_100262e0 undefined4 FUN_100262e0(undefined4 param_1) 8 0 +100262f0 FUN_100262f0 undefined FUN_100262f0(undefined4 * param_1, undefined4 * param_2) 84 0 +10026360 FUN_10026360 undefined FUN_10026360(undefined4 * param_1, undefined4 * param_2) 84 0 +100263d0 FUN_100263d0 undefined4 FUN_100263d0(undefined4 param_1) 8 0 +100263e0 FUN_100263e0 undefined4 FUN_100263e0(undefined4 param_1) 8 0 +100263f0 FUN_100263f0 undefined4 FUN_100263f0(undefined4 param_1) 8 0 +10026400 FUN_10026400 undefined4 FUN_10026400(undefined4 param_1) 8 0 +10026410 FUN_10026410 undefined4 FUN_10026410(undefined4 param_1) 8 0 +10026420 FUN_10026420 undefined4 FUN_10026420(undefined4 param_1) 8 0 +10026430 FUN_10026430 undefined4 FUN_10026430(undefined4 param_1) 8 0 +10026440 FUN_10026440 undefined4 FUN_10026440(undefined4 param_1) 8 0 +10026450 FUN_10026450 undefined FUN_10026450(void * this, undefined4 * param_1, undefined4 * param_2) 36 0 +10026480 FUN_10026480 undefined4 FUN_10026480(undefined4 param_1) 8 0 +10026490 FUN_10026490 undefined FUN_10026490(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +100264b0 FUN_100264b0 undefined4 * FUN_100264b0(void * this, LPCRITICAL_SECTION param_1) 25 1 +100264d0 FUN_100264d0 undefined FUN_100264d0(undefined4 * param_1) 10 1 +100264e0 FUN_100264e0 bool FUN_100264e0(int param_1) 107 2 +10026550 FUN_10026550 undefined4 * FUN_10026550(void * this, OLECHAR * param_1) 64 3 SysAllocString;SysFreeString +10026590 FUN_10026590 undefined4 FUN_10026590(void * this, int * param_1) 19 0 +100265d0 FUN_100265d0 undefined4 FUN_100265d0(void * this, int * param_1) 19 0 +100265f0 FUN_100265f0 undefined4 FUN_100265f0(void * this, int * param_1) 19 0 +10026610 FUN_10026610 undefined4 FUN_10026610(void * this, int * param_1) 19 0 +10026630 FUN_10026630 undefined4 FUN_10026630(void * this, int * param_1) 19 0 +10026650 FUN_10026650 undefined4 FUN_10026650(void * this, int * param_1) 19 0 +10026670 FUN_10026670 undefined4 FUN_10026670(void * this, int * param_1) 19 0 +10026690 FUN_10026690 undefined4 FUN_10026690(void * this, int * param_1) 19 0 +100266b0 FUN_100266b0 undefined4 FUN_100266b0(void * this, int * param_1) 19 0 +100266d0 FUN_100266d0 undefined4 FUN_100266d0(void * this, int * param_1) 19 0 +100266f0 FUN_100266f0 undefined4 FUN_100266f0(void * this, int * param_1) 19 0 +10026710 FUN_10026710 undefined4 FUN_10026710(void * this, int * param_1) 19 0 +10026730 FUN_10026730 undefined FUN_10026730(undefined4 * param_1) 10 1 +10026740 FUN_10026740 undefined FUN_10026740(undefined4 * param_1) 10 1 +10026770 FUN_10026770 undefined FUN_10026770(undefined4 * param_1) 10 1 +10026780 FUN_10026780 undefined FUN_10026780(undefined4 * param_1) 10 1 +100267c0 FUN_100267c0 undefined FUN_100267c0(void * this, int * param_1) 87 0 +10026820 FUN_10026820 undefined FUN_10026820(int param_1) 11 1 +10026830 FUN_10026830 int FUN_10026830(int param_1) 11 0 +10026840 FUN_10026840 undefined FUN_10026840(undefined4 * param_1) 10 1 +10026850 FUN_10026850 undefined FUN_10026850(undefined4 * param_1) 10 1 +10026860 FUN_10026860 undefined FUN_10026860(undefined4 * param_1) 10 1 +10026870 FUN_10026870 undefined FUN_10026870(undefined4 * param_1) 10 1 +10026880 FUN_10026880 undefined FUN_10026880(undefined4 * param_1) 10 1 +10026890 FUN_10026890 undefined FUN_10026890(undefined4 * param_1) 10 1 +100268a0 FUN_100268a0 undefined FUN_100268a0(undefined4 * param_1) 10 1 +100268b0 FUN_100268b0 undefined FUN_100268b0(undefined4 * param_1) 10 1 +100269a0 FUN_100269a0 undefined FUN_100269a0(undefined4 * param_1) 10 1 +100269b0 FUN_100269b0 undefined FUN_100269b0(undefined4 * param_1) 10 1 +10026a30 FUN_10026a30 int * FUN_10026a30(int * param_1) 12 1 +10026aa0 FUN_10026aa0 undefined4 * FUN_10026aa0(void * this, uint * param_1) 44 0 +10026ad0 FUN_10026ad0 int FUN_10026ad0(void * this, int param_1) 16 0 +10026ae0 FUN_10026ae0 int FUN_10026ae0(void * this, int param_1) 17 0 +10026b00 FUN_10026b00 undefined FUN_10026b00(void * this, undefined4 * param_1, int param_2) 21 0 +10026b20 FUN_10026b20 int FUN_10026b20(uint * param_1) 62 1 +10026b60 FUN_10026b60 undefined4 FUN_10026b60(uint * param_1, uint * param_2) 40 0 +10026b90 FUN_10026b90 undefined FUN_10026b90(undefined4 * param_1) 10 1 +10026ba0 FUN_10026ba0 int FUN_10026ba0(void * this, int param_1) 16 0 +10026bb0 FUN_10026bb0 int FUN_10026bb0(void * this, int param_1) 17 0 +10026bd0 FUN_10026bd0 undefined FUN_10026bd0(void * this, undefined4 * param_1, int param_2) 21 0 +10026bf0 FUN_10026bf0 undefined FUN_10026bf0(undefined4 * param_1) 10 1 +10026cb0 FUN_10026cb0 undefined FUN_10026cb0(void * this, undefined4 * param_1) 18 0 +10026d00 FUN_10026d00 undefined FUN_10026d00(void * this, undefined4 * param_1, undefined4 * param_2) 36 0 +10026d40 FUN_10026d40 undefined FUN_10026d40(void * this, undefined4 * param_1) 18 0 +10026d70 FUN_10026d70 undefined FUN_10026d70(void * this, undefined4 param_1) 14 0 +10026e50 FUN_10026e50 undefined FUN_10026e50(void * this, undefined4 param_1) 14 0 +10026e60 FUN_10026e60 undefined FUN_10026e60(void * this, undefined4 param_1) 14 0 +10026e70 FUN_10026e70 undefined FUN_10026e70(void * this, undefined4 param_1) 14 0 +10026e80 FUN_10026e80 undefined FUN_10026e80(void * this, undefined4 param_1) 14 0 +10026e90 FUN_10026e90 undefined FUN_10026e90(void * this, undefined4 param_1) 14 0 +10026ea0 FUN_10026ea0 undefined FUN_10026ea0(void * this, undefined4 param_1) 14 0 +10026eb0 FUN_10026eb0 undefined FUN_10026eb0(void * this, undefined4 param_1) 14 0 +10026ee0 FUN_10026ee0 undefined FUN_10026ee0(void * this, undefined4 param_1) 14 0 +10026ef0 FUN_10026ef0 undefined FUN_10026ef0(void * this, undefined4 param_1) 14 0 +10026f00 FUN_10026f00 undefined FUN_10026f00(void * this, undefined4 param_1) 14 0 +10026f10 FUN_10026f10 int * FUN_10026f10(void * this, int * param_1) 23 1 +10026f30 FUN_10026f30 undefined FUN_10026f30(void * this, undefined4 param_1) 14 0 +10026f40 FUN_10026f40 undefined FUN_10026f40(void * this, undefined4 param_1) 14 0 +10026f50 FUN_10026f50 undefined FUN_10026f50(void * this, undefined4 param_1) 14 0 +10026f80 FUN_10026f80 undefined FUN_10026f80(void * this, undefined4 param_1) 14 0 +10026f90 FUN_10026f90 undefined FUN_10026f90(void * this, undefined4 param_1) 14 0 +10026fa0 FUN_10026fa0 undefined FUN_10026fa0(void * this, undefined4 param_1) 14 0 +10026fc0 FUN_10026fc0 uint FUN_10026fc0(void * this, uint param_1) 45 0 +10027000 FUN_10027000 uint FUN_10027000(void * this, uint param_1) 45 0 +10027030 FUN_10027030 undefined FUN_10027030(void * this, undefined4 param_1) 14 0 +10027040 FUN_10027040 undefined4 FUN_10027040(void * this, int * param_1) 19 0 +10027060 FUN_10027060 undefined FUN_10027060(void * this, undefined4 param_1) 14 0 +10027070 FUN_10027070 undefined4 FUN_10027070(void * this, int * param_1) 19 0 +10027090 FUN_10027090 undefined FUN_10027090(void * this, undefined4 * param_1, undefined4 * param_2) 36 0 +100270c0 FUN_100270c0 undefined FUN_100270c0(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +100270e0 FUN_100270e0 undefined FUN_100270e0(void * this, undefined4 * param_1, undefined4 * param_2) 30 0 +10027100 FUN_10027100 void * FUN_10027100(char * param_1) 146 3 +100271a0 FUN_100271a0 void * FUN_100271a0(char * param_1) 144 3 +10027230 FUN_10027230 void * FUN_10027230(char * param_1) 144 3 +100272c0 FUN_100272c0 void * FUN_100272c0(char * param_1) 144 3 +10027350 FUN_10027350 void * FUN_10027350(char * param_1) 144 3 +100273e0 FUN_100273e0 void * FUN_100273e0(char * param_1) 144 3 +10027470 FUN_10027470 void * FUN_10027470(char * param_1) 144 3 +10027500 FUN_10027500 void * FUN_10027500(char * param_1) 144 3 +10027590 FUN_10027590 void * FUN_10027590(char * param_1) 144 3 +10027620 FUN_10027620 void * FUN_10027620(char * param_1) 144 3 +100276b0 FUN_100276b0 void * FUN_100276b0(char * param_1) 144 3 +10027740 FUN_10027740 void * FUN_10027740(char * param_1) 144 3 +100277d0 FUN_100277d0 void * FUN_100277d0(char * param_1) 144 3 +10027860 FUN_10027860 void * FUN_10027860(char * param_1) 144 3 +100278f0 FUN_100278f0 void * FUN_100278f0(char * param_1) 140 3 +10027980 FUN_10027980 void * FUN_10027980(char * param_1) 146 3 +10027a20 FUN_10027a20 void * FUN_10027a20(char * param_1) 146 3 +10027ac0 FUN_10027ac0 undefined FUN_10027ac0(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 31 0 +10027ae0 FUN_10027ae0 undefined FUN_10027ae0(int param_1, int param_2, undefined4 * param_3) 35 0 +10027b10 FUN_10027b10 undefined FUN_10027b10(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 31 0 +10027b30 FUN_10027b30 undefined FUN_10027b30(int param_1, int param_2, undefined4 * param_3) 35 0 +10027b60 FUN_10027b60 void * FUN_10027b60(char * param_1) 144 3 +10027bf0 FUN_10027bf0 void * FUN_10027bf0(char * param_1) 144 3 +10027c90 FUN_10027c90 undefined FUN_10027c90(undefined4 * param_1, undefined4 * param_2) 86 0 +10027d00 FUN_10027d00 undefined FUN_10027d00(undefined4 * param_1, undefined4 * param_2) 86 0 +10027d70 FUN_10027d70 undefined FUN_10027d70(undefined4 * param_1, undefined4 * param_2) 86 0 +10027e10 FUN_10027e10 undefined FUN_10027e10(undefined4 * param_1, undefined4 * param_2) 86 0 +10027e80 FUN_10027e80 undefined FUN_10027e80(undefined4 * param_1, undefined4 * param_2) 86 0 +10027ef0 FUN_10027ef0 undefined FUN_10027ef0(undefined4 * param_1, undefined4 * param_2) 86 0 +10027f60 FUN_10027f60 undefined FUN_10027f60(undefined4 * param_1, undefined4 * param_2) 86 0 +10027fd0 FUN_10027fd0 undefined FUN_10027fd0(undefined4 * param_1, undefined4 * param_2) 86 0 +10028040 FUN_10028040 undefined FUN_10028040(undefined4 * param_1, undefined4 * param_2) 86 0 +100280b0 FUN_100280b0 undefined FUN_100280b0(undefined4 * param_1, undefined4 * param_2) 86 0 +10028120 FUN_10028120 undefined FUN_10028120(undefined4 * param_1, undefined4 * param_2) 86 0 +10028190 FUN_10028190 undefined FUN_10028190(undefined4 * param_1, undefined4 * param_2) 86 0 +10028200 FUN_10028200 undefined FUN_10028200(undefined4 * param_1, undefined4 * param_2) 86 0 +10028290 FUN_10028290 int * FUN_10028290(int * param_1) 12 1 +100282b0 FUN_100282b0 float10 FUN_100282b0(int param_1) 51 0 +100282f0 FUN_100282f0 float10 FUN_100282f0(int param_1) 51 0 +10028330 FUN_10028330 int * FUN_10028330(int * param_1) 12 1 +10028360 FUN_10028360 undefined FUN_10028360(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10028380 FUN_10028380 undefined FUN_10028380(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 34 0 +100283b0 FUN_100283b0 undefined FUN_100283b0(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 34 0 +100283e0 FUN_100283e0 undefined FUN_100283e0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10028400 FUN_10028400 undefined FUN_10028400(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10028420 FUN_10028420 undefined FUN_10028420(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10028460 FUN_10028460 undefined4 FUN_10028460(void * this, int * param_1) 19 0 +100284a0 FUN_100284a0 undefined4 FUN_100284a0(void * this, int * param_1) 19 0 +100284e0 FUN_100284e0 undefined4 FUN_100284e0(void * this, int * param_1) 19 0 +10028500 FUN_10028500 undefined FUN_10028500(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 99 0 +10028570 FUN_10028570 undefined FUN_10028570(undefined4 * param_1, undefined4 * param_2) 86 0 +100285e0 FUN_100285e0 undefined FUN_100285e0(undefined4 * param_1, undefined4 * param_2) 86 0 +10028650 FUN_10028650 undefined FUN_10028650(undefined4 * param_1, undefined4 * param_2) 83 0 +100286b0 FUN_100286b0 undefined FUN_100286b0(undefined4 * param_1, undefined4 * param_2) 83 0 +10028710 FUN_10028710 undefined FUN_10028710(void * this, undefined4 * param_1, undefined4 * param_2) 36 0 +10028740 FUN_10028740 undefined FUN_10028740(void * this, undefined4 * param_1) 34 0 +10028770 FUN_10028770 undefined FUN_10028770(void * this, undefined4 * param_1) 28 0 +10028790 FUN_10028790 bool FUN_10028790(int param_1) 107 2 +10028800 FUN_10028800 undefined4 FUN_10028800(void * this, OLECHAR * param_1) 132 4 SysAllocString;SysFreeString +100288a0 FUN_100288a0 undefined FUN_100288a0(void * this, undefined4 * param_1) 18 0 +100288d0 FUN_100288d0 undefined FUN_100288d0(void * this, undefined4 * param_1) 18 0 +10028900 FUN_10028900 undefined FUN_10028900(void * this, undefined4 * param_1) 18 0 +10028930 FUN_10028930 undefined FUN_10028930(void * this, undefined4 * param_1) 18 0 +10028960 FUN_10028960 undefined FUN_10028960(void * this, undefined4 * param_1) 18 0 +10028990 FUN_10028990 undefined FUN_10028990(void * this, undefined4 * param_1) 18 0 +100289c0 FUN_100289c0 undefined FUN_100289c0(void * this, undefined4 * param_1) 18 0 +100289f0 FUN_100289f0 undefined FUN_100289f0(void * this, undefined4 * param_1) 18 0 +10028a20 FUN_10028a20 undefined FUN_10028a20(void * this, undefined4 * param_1) 18 0 +10028a50 FUN_10028a50 undefined FUN_10028a50(void * this, undefined4 * param_1) 18 0 +10028a90 FUN_10028a90 undefined FUN_10028a90(void * this, undefined4 * param_1) 18 0 +10028ab0 FUN_10028ab0 undefined FUN_10028ab0(void * this, int param_1) 83 0 +10028b10 FUN_10028b10 uint FUN_10028b10(void * this, uint * param_1) 86 1 +10028b70 FUN_10028b70 uint FUN_10028b70(void * this, uint * param_1) 86 1 +10028be0 FUN_10028be0 int * FUN_10028be0(int * param_1) 12 1 +10028bf0 FUN_10028bf0 undefined FUN_10028bf0(void * this, undefined4 * param_1, undefined4 * param_2) 36 0 +10028c30 FUN_10028c30 undefined FUN_10028c30(char * param_1) 21 1 +10028c50 FUN_10028c50 undefined FUN_10028c50(void * this, uint param_1) 42 1 +10028c80 FUN_10028c80 undefined FUN_10028c80(char * param_1) 21 1 +10028ca0 FUN_10028ca0 undefined FUN_10028ca0(void * this, undefined4 param_1) 14 0 +10028cb0 FUN_10028cb0 undefined FUN_10028cb0(void * this, uint param_1) 42 1 +10028ce0 FUN_10028ce0 undefined FUN_10028ce0(char * param_1) 21 1 +10028d00 FUN_10028d00 undefined FUN_10028d00(void * this, uint param_1) 42 1 +10028d30 FUN_10028d30 undefined FUN_10028d30(char * param_1) 21 1 +10028d70 FUN_10028d70 undefined FUN_10028d70(void * this, uint param_1) 42 1 +10028da0 FUN_10028da0 undefined FUN_10028da0(char * param_1) 21 1 +10028dc0 FUN_10028dc0 undefined FUN_10028dc0(void * this, uint param_1) 42 1 +10028df0 FUN_10028df0 undefined FUN_10028df0(char * param_1) 21 1 +10028e10 FUN_10028e10 undefined FUN_10028e10(void * this, uint param_1) 42 1 +10028e40 FUN_10028e40 undefined FUN_10028e40(char * param_1) 21 1 +10028e60 FUN_10028e60 undefined FUN_10028e60(void * this, uint param_1) 42 1 +10028e90 FUN_10028e90 undefined FUN_10028e90(char * param_1) 21 1 +10028eb0 FUN_10028eb0 undefined FUN_10028eb0(void * this, uint param_1) 42 1 +10028ee0 FUN_10028ee0 undefined FUN_10028ee0(char * param_1) 21 1 +10028f00 FUN_10028f00 undefined FUN_10028f00(void * this, uint param_1) 42 1 +10028f30 FUN_10028f30 undefined FUN_10028f30(char * param_1) 21 1 +10028f50 FUN_10028f50 undefined FUN_10028f50(void * this, uint param_1) 42 1 +10028f80 FUN_10028f80 undefined FUN_10028f80(char * param_1) 21 1 +10028fa0 FUN_10028fa0 undefined FUN_10028fa0(void * this, uint param_1) 42 1 +10028fd0 FUN_10028fd0 undefined FUN_10028fd0(char * param_1) 21 1 +10028ff0 FUN_10028ff0 undefined FUN_10028ff0(void * this, undefined4 param_1) 14 0 +10029000 FUN_10029000 undefined FUN_10029000(void * this, undefined4 param_1) 14 0 +10029010 FUN_10029010 undefined FUN_10029010(void * this, undefined4 param_1) 14 0 +10029020 FUN_10029020 undefined FUN_10029020(void * this, undefined4 param_1) 14 0 +10029030 FUN_10029030 undefined FUN_10029030(void * this, undefined4 param_1) 14 0 +10029040 FUN_10029040 undefined FUN_10029040(void * this, undefined4 param_1) 14 0 +10029050 FUN_10029050 undefined FUN_10029050(void * this, undefined4 param_1) 14 0 +10029060 FUN_10029060 undefined FUN_10029060(void * this, uint param_1) 42 1 +10029090 FUN_10029090 undefined FUN_10029090(char * param_1) 21 1 +100290b0 FUN_100290b0 undefined FUN_100290b0(void * this, uint param_1) 42 1 +100290e0 FUN_100290e0 undefined FUN_100290e0(char * param_1) 21 1 +10029100 FUN_10029100 undefined FUN_10029100(void * this, undefined4 param_1) 14 0 +10029110 FUN_10029110 undefined FUN_10029110(void * this, undefined4 param_1) 14 0 +10029120 FUN_10029120 undefined FUN_10029120(void * this, undefined4 param_1) 14 0 +10029130 FUN_10029130 undefined FUN_10029130(void * this, undefined4 param_1) 14 0 +10029140 FUN_10029140 undefined FUN_10029140(void * this, undefined4 param_1) 14 0 +10029150 FUN_10029150 undefined FUN_10029150(void * this, undefined4 param_1) 14 0 +10029160 FUN_10029160 undefined FUN_10029160(char * param_1) 21 1 +10029180 FUN_10029180 undefined FUN_10029180(void * this, undefined4 param_1) 14 0 +10029190 FUN_10029190 undefined FUN_10029190(void * this, undefined4 param_1) 14 0 +100291a0 FUN_100291a0 undefined FUN_100291a0(void * this, undefined4 param_1) 14 0 +100291b0 FUN_100291b0 undefined FUN_100291b0(char * param_1) 21 1 +100291d0 FUN_100291d0 undefined FUN_100291d0(char * param_1) 21 1 +100291f0 FUN_100291f0 undefined FUN_100291f0(void * this, undefined4 param_1) 14 0 +10029200 FUN_10029200 undefined4 FUN_10029200(void * this, int * param_1) 19 0 +10029220 FUN_10029220 undefined FUN_10029220(void * this, undefined4 param_1) 14 0 +10029230 FUN_10029230 undefined4 FUN_10029230(void * this, int * param_1) 19 0 +10029250 FUN_10029250 undefined FUN_10029250(char * param_1) 21 1 +10029270 FUN_10029270 undefined FUN_10029270(int * param_1, wchar_t * param_2) 150 5 +10029310 FUN_10029310 undefined FUN_10029310(char * param_1) 21 1 +10029430 FUN_10029430 undefined FUN_10029430(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029490 FUN_10029490 undefined FUN_10029490(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +100294f0 FUN_100294f0 undefined FUN_100294f0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029550 FUN_10029550 undefined FUN_10029550(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +100295b0 FUN_100295b0 undefined FUN_100295b0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029610 FUN_10029610 undefined FUN_10029610(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029670 FUN_10029670 undefined FUN_10029670(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +100296d0 FUN_100296d0 undefined FUN_100296d0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029730 FUN_10029730 undefined FUN_10029730(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029790 FUN_10029790 undefined FUN_10029790(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +100297f0 FUN_100297f0 undefined FUN_100297f0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029850 FUN_10029850 undefined FUN_10029850(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +100298c0 FUN_100298c0 undefined FUN_100298c0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029920 FUN_10029920 undefined FUN_10029920(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 34 0 +10029950 FUN_10029950 undefined FUN_10029950(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 34 0 +10029980 FUN_10029980 undefined FUN_10029980(void * this, uint param_1) 42 1 +100299b0 FUN_100299b0 undefined FUN_100299b0(void * this, uint param_1) 42 1 +100299e0 FUN_100299e0 undefined FUN_100299e0(void * this, uint param_1) 42 1 +10029a10 FUN_10029a10 undefined FUN_10029a10(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10029a30 FUN_10029a30 undefined4 * FUN_10029a30(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10029ab3 Catch@10029ab3 undefined Catch@10029ab3(void) 21 2 +10029b00 FUN_10029b00 undefined FUN_10029b00(int param_1) 142 3 +10029bb0 FUN_10029bb0 undefined FUN_10029bb0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029c10 FUN_10029c10 undefined FUN_10029c10(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10029c70 FUN_10029c70 undefined FUN_10029c70(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 81 0 +10029cd0 FUN_10029cd0 undefined FUN_10029cd0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 81 0 +10029d30 FUN_10029d30 undefined FUN_10029d30(void * this, undefined4 * param_1) 34 0 +10029d60 FUN_10029d60 undefined FUN_10029d60(undefined4 * param_1, undefined4 * param_2) 101 0 +10029dd0 FUN_10029dd0 undefined FUN_10029dd0(undefined4 * param_1, undefined4 * param_2) 95 0 +10029e30 FUN_10029e30 undefined FUN_10029e30(int * param_1) 52 1 +10029e70 FUN_10029e70 undefined FUN_10029e70(int * param_1) 52 1 +10029eb0 FUN_10029eb0 undefined FUN_10029eb0(int * param_1) 52 1 +10029ef0 FUN_10029ef0 undefined FUN_10029ef0(int * param_1) 52 1 +10029f30 FUN_10029f30 undefined FUN_10029f30(int * param_1) 52 1 +10029f70 FUN_10029f70 undefined FUN_10029f70(int * param_1) 52 1 +10029fb0 FUN_10029fb0 undefined FUN_10029fb0(int * param_1) 52 1 +10029ff0 FUN_10029ff0 undefined FUN_10029ff0(int * param_1) 52 1 +1002a030 FUN_1002a030 undefined FUN_1002a030(int * param_1) 52 1 +1002a070 FUN_1002a070 undefined FUN_1002a070(int * param_1) 52 1 +1002a0b0 FUN_1002a0b0 undefined FUN_1002a0b0(int * param_1) 52 1 +1002a100 FUN_1002a100 undefined FUN_1002a100(int * param_1) 52 1 +1002a140 FUN_1002a140 int * FUN_1002a140(void * this, int * param_1) 23 1 +1002a160 FUN_1002a160 int * FUN_1002a160(int * param_1) 145 3 +1002a200 FUN_1002a200 undefined FUN_1002a200(void * this, undefined4 * param_1) 16 0 +1002a210 FUN_1002a210 undefined FUN_1002a210(void * this, undefined4 * param_1) 14 0 +1002a220 FUN_1002a220 undefined FUN_1002a220(int * param_1) 52 1 +1002a260 FUN_1002a260 int * FUN_1002a260(int * param_1) 145 3 +1002a300 FUN_1002a300 undefined FUN_1002a300(void * this, undefined4 param_1) 14 0 +1002a310 FUN_1002a310 undefined FUN_1002a310(int * param_1) 52 1 +1002a350 FUN_1002a350 int * FUN_1002a350(int * param_1) 145 3 +1002a3f0 FUN_1002a3f0 undefined FUN_1002a3f0(int * param_1) 52 1 +1002a430 FUN_1002a430 int * FUN_1002a430(int * param_1) 145 3 +1002a4d0 FUN_1002a4d0 undefined FUN_1002a4d0(int * param_1) 56 2 +1002a510 FUN_1002a510 undefined FUN_1002a510(int * param_1) 52 1 +1002a550 FUN_1002a550 undefined FUN_1002a550(int * param_1) 52 1 +1002a590 FUN_1002a590 undefined FUN_1002a590(int * param_1) 52 1 +1002a5d0 FUN_1002a5d0 int * FUN_1002a5d0(int * param_1) 145 3 +1002a670 FUN_1002a670 undefined FUN_1002a670(int * param_1) 52 1 +1002a6b0 FUN_1002a6b0 int * FUN_1002a6b0(int * param_1) 145 3 +1002a750 FUN_1002a750 undefined FUN_1002a750(int * param_1) 52 1 +1002a790 FUN_1002a790 int * FUN_1002a790(int * param_1) 145 3 +1002a830 FUN_1002a830 undefined FUN_1002a830(int * param_1) 52 1 +1002a870 FUN_1002a870 int * FUN_1002a870(int * param_1) 145 3 +1002a910 FUN_1002a910 undefined FUN_1002a910(int * param_1) 52 1 +1002a950 FUN_1002a950 int * FUN_1002a950(int * param_1) 145 3 +1002a9f0 FUN_1002a9f0 undefined FUN_1002a9f0(int * param_1) 52 1 +1002aa30 FUN_1002aa30 int * FUN_1002aa30(int * param_1) 145 3 +1002aad0 FUN_1002aad0 undefined FUN_1002aad0(int * param_1) 52 1 +1002ab10 FUN_1002ab10 int * FUN_1002ab10(int * param_1) 145 3 +1002abb0 FUN_1002abb0 undefined FUN_1002abb0(int * param_1) 52 1 +1002abf0 FUN_1002abf0 int * FUN_1002abf0(int * param_1) 145 3 +1002ac90 FUN_1002ac90 undefined FUN_1002ac90(void * this, undefined4 param_1) 14 0 +1002aca0 FUN_1002aca0 undefined FUN_1002aca0(void * this, undefined4 param_1) 14 0 +1002acb0 FUN_1002acb0 undefined FUN_1002acb0(void * this, undefined4 param_1) 14 0 +1002acc0 FUN_1002acc0 undefined FUN_1002acc0(void * this, undefined4 param_1) 14 0 +1002acd0 FUN_1002acd0 undefined FUN_1002acd0(void * this, undefined4 param_1) 14 0 +1002ace0 FUN_1002ace0 undefined FUN_1002ace0(void * this, undefined4 param_1) 14 0 +1002acf0 FUN_1002acf0 undefined FUN_1002acf0(void * this, undefined4 param_1) 14 0 +1002ad00 FUN_1002ad00 undefined FUN_1002ad00(int * param_1) 52 1 +1002ad40 FUN_1002ad40 int * FUN_1002ad40(int * param_1) 145 3 +1002ade0 FUN_1002ade0 int * FUN_1002ade0(int * param_1) 145 3 +1002ae80 FUN_1002ae80 undefined FUN_1002ae80(void * this, undefined4 param_1) 14 0 +1002ae90 FUN_1002ae90 undefined FUN_1002ae90(void * this, undefined4 param_1) 14 0 +1002aea0 FUN_1002aea0 undefined FUN_1002aea0(void * this, undefined4 param_1) 14 0 +1002aeb0 FUN_1002aeb0 undefined FUN_1002aeb0(void * this, undefined4 param_1) 14 0 +1002aec0 FUN_1002aec0 undefined FUN_1002aec0(void * this, undefined4 param_1) 14 0 +1002aed0 FUN_1002aed0 undefined FUN_1002aed0(void * this, undefined4 param_1) 14 0 +1002aee0 FUN_1002aee0 undefined FUN_1002aee0(int * param_1) 52 1 +1002af20 FUN_1002af20 undefined4 * FUN_1002af20(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002afa3 Catch@1002afa3 undefined Catch@1002afa3(void) 21 2 +1002aff0 FUN_1002aff0 undefined4 * FUN_1002aff0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b073 Catch@1002b073 undefined Catch@1002b073(void) 21 2 +1002b0c0 FUN_1002b0c0 undefined4 * FUN_1002b0c0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b143 Catch@1002b143 undefined Catch@1002b143(void) 21 2 +1002b190 FUN_1002b190 int FUN_1002b190(int param_1) 167 3 +1002b240 FUN_1002b240 undefined FUN_1002b240(int * param_1) 52 1 +1002b280 FUN_1002b280 undefined FUN_1002b280(int * param_1) 52 1 +1002b2c0 FUN_1002b2c0 undefined4 * FUN_1002b2c0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b343 Catch@1002b343 undefined Catch@1002b343(void) 21 2 +1002b390 FUN_1002b390 undefined4 * FUN_1002b390(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b413 Catch@1002b413 undefined Catch@1002b413(void) 21 2 +1002b460 FUN_1002b460 undefined4 * FUN_1002b460(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b4e3 Catch@1002b4e3 undefined Catch@1002b4e3(void) 21 2 +1002b530 FUN_1002b530 undefined4 * FUN_1002b530(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b5b3 Catch@1002b5b3 undefined Catch@1002b5b3(void) 21 2 +1002b600 FUN_1002b600 undefined4 * FUN_1002b600(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b683 Catch@1002b683 undefined Catch@1002b683(void) 21 2 +1002b6d0 FUN_1002b6d0 undefined4 * FUN_1002b6d0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b753 Catch@1002b753 undefined Catch@1002b753(void) 21 2 +1002b7a0 FUN_1002b7a0 undefined4 * FUN_1002b7a0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b823 Catch@1002b823 undefined Catch@1002b823(void) 21 2 +1002b870 FUN_1002b870 undefined4 * FUN_1002b870(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b8f3 Catch@1002b8f3 undefined Catch@1002b8f3(void) 21 2 +1002b940 FUN_1002b940 undefined FUN_1002b940(void * this, undefined4 param_1) 14 0 +1002b950 FUN_1002b950 undefined FUN_1002b950(void * this, undefined4 param_1) 14 0 +1002b960 FUN_1002b960 undefined4 * FUN_1002b960(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002b9e3 Catch@1002b9e3 undefined Catch@1002b9e3(void) 21 2 +1002ba30 FUN_1002ba30 undefined FUN_1002ba30(int * param_1) 52 1 +1002ba70 FUN_1002ba70 undefined4 * FUN_1002ba70(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002baf3 Catch@1002baf3 undefined Catch@1002baf3(void) 21 2 +1002bb40 FUN_1002bb40 undefined FUN_1002bb40(void * this, undefined4 param_1) 14 0 +1002bb50 FUN_1002bb50 int * FUN_1002bb50(int * param_1) 145 3 +1002bbf0 FUN_1002bbf0 int * FUN_1002bbf0(int * param_1) 145 3 +1002bc90 FUN_1002bc90 undefined FUN_1002bc90(void * this, undefined4 * param_1) 14 0 +1002bca0 FUN_1002bca0 undefined FUN_1002bca0(void * this, undefined4 * param_1) 15 0 +1002bcb0 FUN_1002bcb0 undefined FUN_1002bcb0(void * this, undefined4 * param_1) 14 0 +1002bcc0 FUN_1002bcc0 undefined FUN_1002bcc0(void * this, undefined4 * param_1) 15 0 +1002bcd0 FUN_1002bcd0 undefined FUN_1002bcd0(undefined4 * param_1, undefined4 param_2) 15 0 +1002bce0 FUN_1002bce0 undefined FUN_1002bce0(undefined4 * param_1, undefined4 param_2) 15 0 +1002bcf0 FUN_1002bcf0 undefined FUN_1002bcf0(void * this, char * param_1, undefined4 * param_2) 72 2 +1002bd40 FUN_1002bd40 undefined FUN_1002bd40(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 546 2 +1002bf70 FUN_1002bf70 undefined FUN_1002bf70(void * this, undefined4 * param_1) 16 0 +1002bf80 FUN_1002bf80 undefined FUN_1002bf80(void * this, int param_1, int param_2, int param_3, int param_4, uint param_5) 120 1 +1002c000 FUN_1002c000 undefined FUN_1002c000(void * this, int param_1, int param_2, int param_3, int param_4, uint param_5) 120 1 +1002c0a0 FUN_1002c0a0 undefined FUN_1002c0a0(undefined4 * param_1, int param_2, undefined4 * param_3, undefined4 param_4) 119 1 +1002c117 Catch@1002c117 undefined Catch@1002c117(void) 9 1 +1002c130 FUN_1002c130 undefined FUN_1002c130(undefined4 * param_1, int param_2, undefined4 * param_3, undefined4 param_4) 119 1 +1002c1a7 Catch@1002c1a7 undefined Catch@1002c1a7(void) 9 1 +1002c1c0 FUN_1002c1c0 undefined FUN_1002c1c0(undefined4 * param_1, undefined4 param_2) 15 0 +1002c1d0 FUN_1002c1d0 undefined FUN_1002c1d0(undefined4 * param_1, undefined4 param_2) 15 0 +1002c1e0 FUN_1002c1e0 undefined FUN_1002c1e0(undefined4 * param_1, undefined4 param_2) 15 0 +1002c1f0 FUN_1002c1f0 undefined FUN_1002c1f0(undefined4 * param_1, undefined4 param_2) 15 0 +1002c200 FUN_1002c200 undefined FUN_1002c200(undefined4 * param_1, undefined4 param_2) 15 0 +1002c210 FUN_1002c210 undefined FUN_1002c210(undefined4 * param_1, undefined4 param_2) 15 0 +1002c220 FUN_1002c220 undefined FUN_1002c220(undefined4 * param_1, undefined4 param_2) 15 0 +1002c230 FUN_1002c230 undefined FUN_1002c230(undefined4 * param_1, undefined4 param_2) 15 0 +1002c240 FUN_1002c240 undefined FUN_1002c240(undefined4 * param_1, undefined4 param_2) 15 0 +1002c250 FUN_1002c250 undefined FUN_1002c250(undefined4 * param_1, undefined4 param_2) 15 0 +1002c260 FUN_1002c260 undefined FUN_1002c260(undefined4 * param_1, undefined4 param_2) 15 0 +1002c270 FUN_1002c270 undefined4 * FUN_1002c270(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 121 1 +1002c2e9 Catch@1002c2e9 undefined Catch@1002c2e9(void) 9 1 +1002c300 FUN_1002c300 undefined4 * FUN_1002c300(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 121 1 +1002c379 Catch@1002c379 undefined Catch@1002c379(void) 9 1 +1002c390 FUN_1002c390 undefined FUN_1002c390(undefined4 * param_1, undefined4 * param_2) 101 0 +1002c400 FUN_1002c400 undefined FUN_1002c400(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 99 0 +1002c470 FUN_1002c470 undefined FUN_1002c470(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 93 0 +1002c4d0 FUN_1002c4d0 undefined FUN_1002c4d0(int * param_1) 91 1 +1002c530 FUN_1002c530 int FUN_1002c530(int param_1) 430 8 +1002c6e0 FUN_1002c6e0 undefined FUN_1002c6e0(int param_1) 453 9 +1002c8b0 FUN_1002c8b0 int * FUN_1002c8b0(int * param_1) 153 3 +1002c950 FUN_1002c950 int * FUN_1002c950(int * param_1) 153 3 +1002c9f0 FUN_1002c9f0 undefined FUN_1002c9f0(int * param_1) 117 1 +1002ca70 FUN_1002ca70 undefined FUN_1002ca70(void * this, undefined4 * param_1) 16 0 +1002ca80 FUN_1002ca80 undefined FUN_1002ca80(void * this, undefined4 * param_1) 14 0 +1002ca90 FUN_1002ca90 int * FUN_1002ca90(int * param_1) 153 3 +1002cb30 FUN_1002cb30 undefined FUN_1002cb30(int * param_1) 117 1 +1002cbb0 FUN_1002cbb0 undefined FUN_1002cbb0(void * this, undefined4 * param_1) 16 0 +1002cbc0 FUN_1002cbc0 undefined FUN_1002cbc0(void * this, undefined4 * param_1) 14 0 +1002cbd0 FUN_1002cbd0 int * FUN_1002cbd0(int * param_1) 153 3 +1002cc70 FUN_1002cc70 undefined FUN_1002cc70(int * param_1) 117 1 +1002ccf0 FUN_1002ccf0 undefined FUN_1002ccf0(void * this, undefined4 * param_1) 16 0 +1002cd00 FUN_1002cd00 undefined FUN_1002cd00(void * this, undefined4 * param_1) 14 0 +1002cd10 FUN_1002cd10 undefined FUN_1002cd10(void * this, undefined4 * param_1) 17 0 +1002cd30 FUN_1002cd30 undefined FUN_1002cd30(void * this, undefined4 * param_1) 15 0 +1002cd40 FUN_1002cd40 undefined FUN_1002cd40(void * this, undefined4 * param_1, int * param_2) 592 7 +1002cfa0 FUN_1002cfa0 undefined FUN_1002cfa0(int param_1) 77 2 +1002cff0 FUN_1002cff0 int * FUN_1002cff0(int * param_1) 153 3 +1002d090 FUN_1002d090 undefined FUN_1002d090(int * param_1) 117 1 +1002d110 FUN_1002d110 undefined FUN_1002d110(void * this, undefined4 * param_1) 16 0 +1002d120 FUN_1002d120 undefined FUN_1002d120(void * this, undefined4 * param_1) 14 0 +1002d130 FUN_1002d130 int * FUN_1002d130(int * param_1) 153 3 +1002d1d0 FUN_1002d1d0 undefined FUN_1002d1d0(int * param_1) 117 1 +1002d250 FUN_1002d250 undefined FUN_1002d250(void * this, undefined4 * param_1) 16 0 +1002d260 FUN_1002d260 undefined FUN_1002d260(void * this, undefined4 * param_1) 14 0 +1002d270 FUN_1002d270 int * FUN_1002d270(int * param_1) 153 3 +1002d310 FUN_1002d310 undefined FUN_1002d310(int * param_1) 117 1 +1002d390 FUN_1002d390 undefined FUN_1002d390(void * this, undefined4 * param_1) 16 0 +1002d3a0 FUN_1002d3a0 undefined FUN_1002d3a0(void * this, undefined4 * param_1) 14 0 +1002d3b0 FUN_1002d3b0 int * FUN_1002d3b0(int * param_1) 153 3 +1002d450 FUN_1002d450 undefined FUN_1002d450(int * param_1) 117 1 +1002d4d0 FUN_1002d4d0 undefined FUN_1002d4d0(void * this, undefined4 * param_1) 16 0 +1002d4e0 FUN_1002d4e0 undefined FUN_1002d4e0(void * this, undefined4 * param_1) 14 0 +1002d4f0 FUN_1002d4f0 int * FUN_1002d4f0(int * param_1) 153 3 +1002d590 FUN_1002d590 undefined FUN_1002d590(int * param_1) 117 1 +1002d610 FUN_1002d610 undefined FUN_1002d610(void * this, undefined4 * param_1) 16 0 +1002d620 FUN_1002d620 undefined FUN_1002d620(void * this, undefined4 * param_1) 14 0 +1002d630 FUN_1002d630 int * FUN_1002d630(int * param_1) 153 3 +1002d6d0 FUN_1002d6d0 undefined FUN_1002d6d0(int * param_1) 117 1 +1002d750 FUN_1002d750 undefined FUN_1002d750(void * this, undefined4 * param_1) 16 0 +1002d760 FUN_1002d760 undefined FUN_1002d760(void * this, undefined4 * param_1) 14 0 +1002d770 FUN_1002d770 int * FUN_1002d770(int * param_1) 153 3 +1002d810 FUN_1002d810 undefined FUN_1002d810(int * param_1) 117 1 +1002d890 FUN_1002d890 undefined FUN_1002d890(void * this, undefined4 * param_1) 16 0 +1002d8a0 FUN_1002d8a0 undefined FUN_1002d8a0(void * this, undefined4 * param_1) 14 0 +1002d8b0 FUN_1002d8b0 int * FUN_1002d8b0(int * param_1) 153 3 +1002d950 FUN_1002d950 undefined FUN_1002d950(int * param_1) 117 1 +1002d9d0 FUN_1002d9d0 undefined FUN_1002d9d0(void * this, undefined4 * param_1) 16 0 +1002d9e0 FUN_1002d9e0 undefined FUN_1002d9e0(void * this, undefined4 * param_1) 14 0 +1002d9f0 FUN_1002d9f0 int * FUN_1002d9f0(int * param_1) 153 3 +1002da90 FUN_1002da90 undefined FUN_1002da90(int * param_1) 117 1 +1002db10 FUN_1002db10 undefined FUN_1002db10(void * this, undefined4 * param_1) 16 0 +1002db20 FUN_1002db20 undefined FUN_1002db20(void * this, undefined4 * param_1) 14 0 +1002db30 FUN_1002db30 int * FUN_1002db30(int * param_1) 153 3 +1002dbd0 FUN_1002dbd0 undefined FUN_1002dbd0(void * this, undefined4 * param_1) 16 0 +1002dbe0 FUN_1002dbe0 undefined FUN_1002dbe0(void * this, undefined4 * param_1) 14 0 +1002dbf0 FUN_1002dbf0 undefined FUN_1002dbf0(void * this, undefined4 * param_1) 16 0 +1002dc00 FUN_1002dc00 undefined FUN_1002dc00(void * this, undefined4 * param_1) 14 0 +1002dc10 FUN_1002dc10 undefined FUN_1002dc10(int * param_1) 52 1 +1002dc50 FUN_1002dc50 undefined FUN_1002dc50(void * this, char * param_1, undefined4 * param_2) 72 2 +1002dca0 FUN_1002dca0 undefined FUN_1002dca0(void * this, char * param_1, undefined4 * param_2) 72 2 +1002dcf0 FUN_1002dcf0 undefined FUN_1002dcf0(void * this, char * param_1, undefined4 * param_2) 72 2 +1002dd40 FUN_1002dd40 int FUN_1002dd40(int param_1) 177 3 +1002de00 FUN_1002de00 undefined FUN_1002de00(void * this, int * param_1, uint * param_2) 49 0 +1002de40 FUN_1002de40 undefined FUN_1002de40(int * param_1) 117 1 +1002dec0 FUN_1002dec0 undefined FUN_1002dec0(void * this, undefined4 * param_1) 14 0 +1002ded0 FUN_1002ded0 undefined FUN_1002ded0(undefined4 * param_1, undefined4 param_2) 15 0 +1002dee0 FUN_1002dee0 undefined FUN_1002dee0(void * this, int * param_1, int * param_2) 58 1 +1002df20 FUN_1002df20 undefined FUN_1002df20(int * param_1) 117 1 +1002dfa0 FUN_1002dfa0 undefined FUN_1002dfa0(void * this, undefined4 * param_1) 16 0 +1002dfb0 FUN_1002dfb0 undefined FUN_1002dfb0(void * this, undefined4 * param_1) 14 0 +1002dfc0 FUN_1002dfc0 undefined FUN_1002dfc0(undefined4 * param_1, undefined4 param_2) 15 0 +1002dfd0 FUN_1002dfd0 undefined FUN_1002dfd0(void * this, int * param_1, int * param_2) 58 1 +1002e010 FUN_1002e010 undefined FUN_1002e010(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e060 FUN_1002e060 undefined FUN_1002e060(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e0b0 FUN_1002e0b0 undefined FUN_1002e0b0(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e100 FUN_1002e100 undefined FUN_1002e100(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e150 FUN_1002e150 undefined FUN_1002e150(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e1a0 FUN_1002e1a0 undefined FUN_1002e1a0(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e1f0 FUN_1002e1f0 undefined FUN_1002e1f0(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e240 FUN_1002e240 undefined FUN_1002e240(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e290 FUN_1002e290 undefined FUN_1002e290(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e2e0 FUN_1002e2e0 undefined FUN_1002e2e0(void * this, char * param_1, undefined4 * param_2) 72 2 +1002e330 FUN_1002e330 undefined FUN_1002e330(int * param_1) 52 1 +1002e370 FUN_1002e370 undefined FUN_1002e370(undefined4 * param_1, undefined4 param_2) 15 0 +1002e380 FUN_1002e380 undefined FUN_1002e380(void * this, undefined4 * param_1, int * param_2, int * param_3) 158 2 +1002e420 FUN_1002e420 int * FUN_1002e420(int * param_1) 155 3 +1002e4c0 FUN_1002e4c0 int * FUN_1002e4c0(int * param_1) 155 3 +1002e580 FUN_1002e580 undefined FUN_1002e580(undefined4 * param_1, int param_2, undefined4 * param_3, undefined4 param_4) 38 1 +1002e5b0 FUN_1002e5b0 undefined FUN_1002e5b0(undefined4 * param_1, int param_2, undefined4 * param_3, undefined4 param_4) 38 1 +1002e5e0 FUN_1002e5e0 undefined FUN_1002e5e0(void * this, undefined4 * param_1) 17 0 +1002e620 FUN_1002e620 undefined FUN_1002e620(void * this, undefined4 * param_1, int * param_2, char param_3) 209 3 +1002e700 FUN_1002e700 undefined FUN_1002e700(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 38 1 +1002e730 FUN_1002e730 undefined FUN_1002e730(undefined4 * param_1, undefined4 * param_2, undefined4 * param_3, undefined4 param_4) 38 1 +1002e760 FUN_1002e760 undefined FUN_1002e760(void * this, int * param_1, int * param_2) 58 1 +1002e7a0 FUN_1002e7a0 undefined FUN_1002e7a0(void * this, int * param_1, int * param_2) 58 1 +1002e7e0 FUN_1002e7e0 undefined FUN_1002e7e0(void * this, int * param_1, int * param_2) 58 1 +1002e820 FUN_1002e820 undefined FUN_1002e820(void * this, int * param_1, int * param_2) 58 1 +1002e860 FUN_1002e860 undefined FUN_1002e860(void * this, int * param_1, int * param_2) 58 1 +1002e8a0 FUN_1002e8a0 undefined FUN_1002e8a0(void * this, int * param_1, int * param_2) 58 1 +1002e8e0 FUN_1002e8e0 undefined FUN_1002e8e0(void * this, int * param_1, int * param_2) 58 1 +1002e920 FUN_1002e920 undefined FUN_1002e920(void * this, int * param_1, int * param_2) 58 1 +1002e960 FUN_1002e960 undefined FUN_1002e960(void * this, int * param_1, int * param_2) 58 1 +1002e9a0 FUN_1002e9a0 undefined FUN_1002e9a0(void * this, int * param_1, int * param_2) 58 1 +1002e9e0 FUN_1002e9e0 undefined FUN_1002e9e0(void * this, int * param_1, int * param_2) 58 1 +1002ea20 FUN_1002ea20 undefined FUN_1002ea20(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 99 0 +1002ea90 FUN_1002ea90 undefined4 * FUN_1002ea90(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002eb13 Catch@1002eb13 undefined Catch@1002eb13(void) 21 2 +1002eb60 FUN_1002eb60 undefined4 * FUN_1002eb60(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +1002ebe3 Catch@1002ebe3 undefined Catch@1002ebe3(void) 21 2 +1002ec30 FUN_1002ec30 undefined FUN_1002ec30(int * param_1) 136 1 +1002ecc0 FUN_1002ecc0 undefined FUN_1002ecc0(int param_1) 191 3 +1002ed90 FUN_1002ed90 undefined FUN_1002ed90(int param_1) 631 8 +1002f010 FUN_1002f010 undefined FUN_1002f010(int param_1) 201 3 +1002f0e0 FUN_1002f0e0 undefined FUN_1002f0e0(int param_1) 173 2 +1002f190 FUN_1002f190 undefined4 FUN_1002f190(int * param_1, int * param_2) 1816 9 +1002f8b0 FUN_1002f8b0 undefined4 FUN_1002f8b0(int * param_1, int * param_2) 3373 10 +100305e0 FUN_100305e0 undefined4 FUN_100305e0(int * param_1, int * param_2) 267 5 +100306f0 FUN_100306f0 undefined4 FUN_100306f0(int * param_1, int * param_2) 240 5 +100307f0 FUN_100307f0 undefined4 FUN_100307f0(void * this, int * param_1) 324 6 +10030940 FUN_10030940 undefined4 FUN_10030940(int * param_1, int * param_2) 335 6 +10030a90 FUN_10030a90 undefined FUN_10030a90(void * this, undefined4 * param_1) 69 2 +10030ae0 FUN_10030ae0 undefined FUN_10030ae0(int * param_1) 117 1 +10030b70 FUN_10030b70 undefined FUN_10030b70(void * this, undefined4 * param_1) 69 2 +10030bc0 FUN_10030bc0 undefined FUN_10030bc0(void * this, undefined4 * param_1) 69 2 +10030c10 FUN_10030c10 undefined FUN_10030c10(void * this, undefined4 * param_1) 69 2 +10030c60 FUN_10030c60 undefined FUN_10030c60(void * this, undefined4 * param_1, uint * param_2) 98 0 +10030cd0 FUN_10030cd0 undefined FUN_10030cd0(void * this, undefined4 * param_1) 15 0 +10030ce0 FUN_10030ce0 undefined FUN_10030ce0(void * this, undefined4 * param_1) 17 0 +10030d00 FUN_10030d00 undefined FUN_10030d00(void * this, undefined4 * param_1) 15 0 +10030d10 FUN_10030d10 undefined FUN_10030d10(void * this, undefined4 * param_1) 69 2 +10030d60 FUN_10030d60 undefined FUN_10030d60(void * this, undefined4 * param_1) 69 2 +10030db0 FUN_10030db0 undefined FUN_10030db0(void * this, undefined4 * param_1) 69 2 +10030e00 FUN_10030e00 undefined FUN_10030e00(void * this, undefined4 * param_1) 69 2 +10030e50 FUN_10030e50 undefined FUN_10030e50(void * this, undefined4 * param_1) 69 2 +10030ea0 FUN_10030ea0 undefined FUN_10030ea0(void * this, undefined4 * param_1) 69 2 +10030ef0 FUN_10030ef0 undefined FUN_10030ef0(void * this, undefined4 * param_1) 69 2 +10030f40 FUN_10030f40 undefined FUN_10030f40(void * this, undefined4 * param_1) 69 2 +10030f90 FUN_10030f90 undefined FUN_10030f90(void * this, undefined4 * param_1) 69 2 +10030fe0 FUN_10030fe0 undefined FUN_10030fe0(int * param_1) 117 1 +10031060 FUN_10031060 undefined FUN_10031060(void * this, undefined4 * param_1) 69 2 +100310b0 FUN_100310b0 undefined FUN_100310b0(void * this, int * param_1, int * param_2) 58 1 +100310f0 FUN_100310f0 undefined FUN_100310f0(void * param_1) 24 1 +10031110 FUN_10031110 undefined FUN_10031110(void * this, int * param_1, int param_2) 70 0 +10031160 FUN_10031160 undefined FUN_10031160(void * this, int * param_1, int param_2) 70 0 +100311b0 FUN_100311b0 undefined FUN_100311b0(void * this, int * param_1, int param_2) 34 0 +100311e0 FUN_100311e0 undefined FUN_100311e0(void * this, int * param_1, int param_2) 34 0 +10031230 FUN_10031230 undefined FUN_10031230(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 61 0 +10031270 FUN_10031270 undefined FUN_10031270(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 61 0 +100312b0 FUN_100312b0 undefined4 * FUN_100312b0(void * this, undefined4 * param_1, int param_2, undefined4 * param_3) 44 1 +100312e0 FUN_100312e0 undefined4 * FUN_100312e0(void * this, undefined4 * param_1, int param_2, undefined4 * param_3) 44 1 +10031310 FUN_10031310 undefined FUN_10031310(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 37 1 +10031340 FUN_10031340 undefined FUN_10031340(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 37 1 +10031370 FUN_10031370 undefined4 * FUN_10031370(void * this, undefined4 * param_1, int * param_2, int * param_3) 339 4 +100314d0 FUN_100314d0 undefined FUN_100314d0(void * this, int param_1, int param_2, int param_3) 90 0 +10031530 FUN_10031530 undefined FUN_10031530(void * this, int param_1, int param_2, int param_3) 90 0 +10031590 FUN_10031590 undefined FUN_10031590(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031609 Catch@10031609 undefined Catch@10031609(void) 45 2 +10031640 FUN_10031640 undefined FUN_10031640(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +100316b9 Catch@100316b9 undefined Catch@100316b9(void) 45 2 +100316f0 FUN_100316f0 undefined FUN_100316f0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031769 Catch@10031769 undefined Catch@10031769(void) 45 2 +100317a0 FUN_100317a0 undefined FUN_100317a0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031819 Catch@10031819 undefined Catch@10031819(void) 45 2 +10031850 FUN_10031850 undefined FUN_10031850(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +100318c9 Catch@100318c9 undefined Catch@100318c9(void) 45 2 +10031900 FUN_10031900 undefined FUN_10031900(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031979 Catch@10031979 undefined Catch@10031979(void) 45 2 +100319b0 FUN_100319b0 undefined FUN_100319b0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031a29 Catch@10031a29 undefined Catch@10031a29(void) 45 2 +10031a60 FUN_10031a60 undefined FUN_10031a60(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031ad9 Catch@10031ad9 undefined Catch@10031ad9(void) 45 2 +10031b10 FUN_10031b10 undefined FUN_10031b10(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031b89 Catch@10031b89 undefined Catch@10031b89(void) 45 2 +10031bc0 FUN_10031bc0 undefined FUN_10031bc0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031c39 Catch@10031c39 undefined Catch@10031c39(void) 45 2 +10031c70 FUN_10031c70 undefined FUN_10031c70(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031ce9 Catch@10031ce9 undefined Catch@10031ce9(void) 45 2 +10031d20 FUN_10031d20 undefined FUN_10031d20(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10031d99 Catch@10031d99 undefined Catch@10031d99(void) 45 2 +10031dd0 FUN_10031dd0 undefined4 * FUN_10031dd0(void * this, char * param_1) 190 4 +10031e5f Catch@10031e5f undefined Catch@10031e5f(void) 21 2 +10031eb0 FUN_10031eb0 undefined FUN_10031eb0(void * this, char * param_1, undefined4 * param_2) 72 2 +10031f00 FUN_10031f00 undefined FUN_10031f00(void * this, char * param_1, undefined4 * param_2) 72 2 +10031f50 FUN_10031f50 void * FUN_10031f50(void * this, byte param_1) 33 2 +10031f80 FUN_10031f80 undefined4 FUN_10031f80(void * this, int param_1) 460 12 +10032150 FUN_10032150 undefined4 FUN_10032150(int param_1) 454 12 +10032320 FUN_10032320 undefined4 FUN_10032320(int param_1) 370 8 +100324a0 FUN_100324a0 undefined FUN_100324a0(int * param_1) 40 1 +100324d0 FUN_100324d0 undefined FUN_100324d0(void * param_1) 103 2 +10032540 FUN_10032540 undefined FUN_10032540(void * this, int * param_1, int * param_2) 182 2 +10032600 FUN_10032600 undefined FUN_10032600(void * this, int * param_1, int * param_2) 182 2 +100326c0 FUN_100326c0 undefined FUN_100326c0(void * this, int * param_1, uint * param_2) 215 1 +100327a0 FUN_100327a0 undefined FUN_100327a0(void * this, int * param_1, uint * param_2) 215 1 +10032880 FUN_10032880 undefined FUN_10032880(_Container_base0 * param_1) 47 2 +100328b0 FUN_100328b0 undefined FUN_100328b0(_Container_base0 * param_1) 47 2 +100328e0 FUN_100328e0 undefined FUN_100328e0(void * this, undefined4 * param_1, char * param_2, undefined4 * param_3) 572 9 +10032a29 Catch@10032a29 undefined Catch@10032a29(void) 12 1 +10032a35 Catch@10032a35 undefined Catch@10032a35(void) 9 1 +10032b40 FUN_10032b40 undefined FUN_10032b40(void * this, undefined4 * param_1, char * param_2, undefined4 * param_3) 572 9 +10032c89 Catch@10032c89 undefined Catch@10032c89(void) 12 1 +10032c95 Catch@10032c95 undefined Catch@10032c95(void) 9 1 +10032da0 FUN_10032da0 undefined FUN_10032da0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032dc0 FUN_10032dc0 undefined FUN_10032dc0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032de0 FUN_10032de0 undefined FUN_10032de0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032e00 FUN_10032e00 undefined FUN_10032e00(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032e20 FUN_10032e20 undefined FUN_10032e20(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032e40 FUN_10032e40 undefined FUN_10032e40(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032e60 FUN_10032e60 undefined FUN_10032e60(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032e80 FUN_10032e80 undefined FUN_10032e80(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032ea0 FUN_10032ea0 undefined FUN_10032ea0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032ec0 FUN_10032ec0 undefined FUN_10032ec0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032ee0 FUN_10032ee0 undefined FUN_10032ee0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032f00 FUN_10032f00 undefined FUN_10032f00(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +10032f20 FUN_10032f20 undefined4 * FUN_10032f20(void * this, undefined4 * param_1, int * param_2, char * param_3) 40 2 +10032f50 FUN_10032f50 undefined FUN_10032f50(void * this, undefined4 * param_1) 71 2 +10032fa0 FUN_10032fa0 undefined FUN_10032fa0(void * this, undefined4 * param_1) 71 2 +10032ff0 FUN_10032ff0 undefined4 * FUN_10032ff0(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, int param_4, int param_5, char * param_6, undefined4 param_7, undefined4 param_8, int * param_9, undefined4 param_10) 435 8 +100331b0 FUN_100331b0 undefined FUN_100331b0(void * param_1) 103 2 +10033220 FUN_10033220 int FUN_10033220(void * this, undefined4 param_1, undefined4 param_2, int param_3, undefined4 param_4, undefined4 param_5, undefined1 param_6) 520 11 memset +10033430 FUN_10033430 int FUN_10033430(void * this, undefined4 param_1, undefined4 param_2, int param_3, undefined4 param_4, undefined4 param_5) 489 11 memset +10033620 FUN_10033620 undefined FUN_10033620(void * this, undefined4 * param_1) 430 11 +100337d0 FUN_100337d0 undefined FUN_100337d0(int param_1) 1257 17 +10033cd0 FUN_10033cd0 undefined FUN_10033cd0(void * this, undefined4 * param_1) 415 11 +10033e70 FUN_10033e70 undefined FUN_10033e70(int param_1) 1257 17 +10034370 FUN_10034370 undefined FUN_10034370(void * this, undefined4 * param_1) 188 4 +10034430 FUN_10034430 undefined FUN_10034430(void * this, undefined4 * param_1) 188 4 +100344f0 FUN_100344f0 undefined FUN_100344f0(void * this, int * param_1, int * param_2, undefined4 * param_3, undefined4 * param_4) 676 15 memcpy +100347a0 FUN_100347a0 undefined4 FUN_100347a0(void * this, undefined4 * param_1, undefined4 * param_2, undefined4 * param_3) 361 6 +10034910 FUN_10034910 undefined FUN_10034910(void * this, undefined4 * param_1) 188 4 +100349d0 FUN_100349d0 int * FUN_100349d0(void * this, undefined4 * param_1) 184 4 +10034a59 Catch@10034a59 undefined Catch@10034a59(void) 17 2 +10034aa0 FUN_10034aa0 int FUN_10034aa0(int param_1) 175 3 +10034b50 FUN_10034b50 uint * FUN_10034b50(void * this, uint * param_1) 129 2 +10034be0 FUN_10034be0 int * FUN_10034be0(void * this, int * param_1, uint * param_2) 24 1 +10034c00 FUN_10034c00 int * FUN_10034c00(void * this, int * param_1, uint * param_2) 24 1 +10034c20 FUN_10034c20 undefined FUN_10034c20(_Container_base0 * param_1) 47 2 +10034c50 FUN_10034c50 undefined FUN_10034c50(_Container_base0 * param_1) 47 2 +10034c80 FUN_10034c80 undefined FUN_10034c80(void * this, undefined4 * param_1, char * param_2, undefined4 * param_3) 24 1 +10034ca0 FUN_10034ca0 undefined FUN_10034ca0(void * this, undefined4 * param_1, char * param_2, undefined4 * param_3) 24 1 +10034cc0 FUN_10034cc0 undefined FUN_10034cc0(void * this, uint param_1, undefined4 param_2) 265 9 +10034dd0 FUN_10034dd0 undefined FUN_10034dd0(int param_1) 159 5 +10034e70 FUN_10034e70 undefined FUN_10034e70(int param_1) 181 2 +10034f30 FUN_10034f30 undefined FUN_10034f30(int param_1) 181 2 +10034ff0 FUN_10034ff0 undefined FUN_10034ff0(void * this, char * param_1, undefined4 * param_2) 71 1 +10035040 FUN_10035040 undefined FUN_10035040(void * this, char * param_1, undefined4 * param_2) 71 1 +10035090 FUN_10035090 undefined FUN_10035090(int param_1) 65 1 +100350e0 FUN_100350e0 undefined FUN_100350e0(int param_1) 65 1 +10035130 FUN_10035130 undefined FUN_10035130(void * this, char * param_1, undefined4 * param_2) 71 1 +10035180 FUN_10035180 undefined FUN_10035180(void * this, char * param_1, undefined4 * param_2) 71 1 +100351d0 FUN_100351d0 undefined FUN_100351d0(void * this, int param_1) 88 1 +10035230 FUN_10035230 undefined FUN_10035230(void * this, int param_1) 88 1 +10035290 FUN_10035290 undefined FUN_10035290(void * param_1) 175 2 +10035340 FUN_10035340 undefined FUN_10035340(void * param_1) 175 2 +100353f0 FUN_100353f0 undefined FUN_100353f0(int param_1) 132 2 +10035480 FUN_10035480 undefined FUN_10035480(int param_1) 132 2 +10035510 FUN_10035510 char * FUN_10035510(void * this, char * param_1) 265 4 +10035620 FUN_10035620 char * FUN_10035620(void * this, char * param_1) 265 4 +10035730 FUN_10035730 undefined FUN_10035730(void * this, int * param_1, uint * param_2, int * param_3) 341 4 +10035890 FUN_10035890 undefined FUN_10035890(void * this, int * param_1, uint * param_2, int * param_3) 341 4 +100359f0 FUN_100359f0 undefined FUN_100359f0(void * this, int param_1) 71 1 +10035a40 FUN_10035a40 undefined FUN_10035a40(void * this, int param_1) 71 1 +10035a90 FUN_10035a90 undefined FUN_10035a90(undefined4 param_1, int * param_2) 356 9 SysFreeString +10035c00 FUN_10035c00 undefined FUN_10035c00(int param_1) 110 3 +10035c70 FUN_10035c70 undefined FUN_10035c70(int param_1) 571 12 +10035eb0 FUN_10035eb0 undefined4 FUN_10035eb0(int param_1) 225 11 +10035fa0 FUN_10035fa0 void * FUN_10035fa0(void * param_1) 83 1 +10036000 FUN_10036000 void * FUN_10036000(void * param_1) 83 1 +10036060 FUN_10036060 int * FUN_10036060(void * this, int * param_1, undefined4 * param_2) 98 3 +100360d0 FUN_100360d0 int * FUN_100360d0(void * this, int * param_1, undefined4 * param_2) 98 3 +10036140 FUN_10036140 IErrorInfo * FUN_10036140(IErrorInfo * param_1) 120 2 +100361c0 FUN_100361c0 undefined FUN_100361c0(undefined4 * param_1) 1509 9 SysFreeString +100367b0 FUN_100367b0 undefined FUN_100367b0(void * this, uint param_1, undefined4 param_2) 290 9 +100368e0 FUN_100368e0 int FUN_100368e0(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, undefined4 param_6, undefined2 param_7, undefined4 * param_8, wchar_t * param_9, undefined4 param_10, undefined4 param_11, undefined4 * param_12) 953 23 memcpy;memset +10036ca0 FUN_10036ca0 undefined FUN_10036ca0(int param_1) 1605 25 +100372f0 FUN_100372f0 undefined FUN_100372f0(int param_1) 1124 22 +10037760 FUN_10037760 undefined FUN_10037760(int param_1) 7361 32 memcpy;memset +10039430 FUN_10039430 int FUN_10039430(void * this, int * param_1, undefined4 * param_2, undefined4 * param_3) 1041 24 memcpy;memset +10039850 FUN_10039850 undefined FUN_10039850(int param_1) 1026 18 +10039c60 FUN_10039c60 undefined4 FUN_10039c60(void * this, int param_1) 399 11 +10039df0 FUN_10039df0 undefined4 FUN_10039df0(void * this, undefined4 param_1) 456 11 +10039fc0 FUN_10039fc0 undefined4 FUN_10039fc0(void * this, int * param_1) 440 12 +1003a180 FUN_1003a180 undefined FUN_1003a180(void * this, undefined4 * param_1, void * param_2) 309 7 +1003a2c0 FUN_1003a2c0 int FUN_1003a2c0(int param_1) 948 15 +1003a674 Catch@1003a674 undefined * Catch@1003a674(void) 170 5 +1003a723 Catch@1003a723 undefined4 Catch@1003a723(void) 88 4 +1003a780 FUN_1003a780 undefined4 * FUN_1003a780(void * this, byte param_1) 33 2 +1003a7b0 FUN_1003a7b0 int FUN_1003a7b0(void * this, wchar_t * param_1, wchar_t * param_2, undefined4 param_3, undefined4 param_4, int param_5) 701 11 +1003aa70 FUN_1003aa70 int FUN_1003aa70(void * this, undefined4 param_1) 442 10 +1003ac30 FUN_1003ac30 int FUN_1003ac30(void * this, uint param_1, undefined4 param_2) 435 11 +1003adf0 FUN_1003adf0 undefined FUN_1003adf0(void * param_1) 1481 30 +1003b3c0 FUN_1003b3c0 undefined FUN_1003b3c0(void * param_1) 1595 24 +1003ba00 FUN_1003ba00 undefined FUN_1003ba00(int param_1) 1352 13 +1003bf50 FUN_1003bf50 undefined FUN_1003bf50(LPVOID param_1) 594 11 +1003c1b0 FUN_1003c1b0 undefined4 * FUN_1003c1b0(undefined4 * param_1) 2673 11 +1003cc30 FUN_1003cc30 undefined4 * FUN_1003cc30(void * this, LPCRITICAL_SECTION param_1) 23 1 +1003cc50 FUN_1003cc50 undefined FUN_1003cc50(int * param_1) 7 1 +1003cc60 FUN_1003cc60 undefined4 * FUN_1003cc60(void * this, LPCRITICAL_SECTION param_1) 23 1 +1003cc80 FUN_1003cc80 undefined FUN_1003cc80(undefined4 * param_1) 7 1 +1003cc90 FUN_1003cc90 undefined FUN_1003cc90(byte * param_1, byte * param_2) 9 1 +1003cca0 FUN_1003cca0 bool FUN_1003cca0(byte * param_1, byte * param_2) 26 1 +1003cce0 FUN_1003cce0 undefined FUN_1003cce0(void * this, undefined4 param_1) 16 0 +1003ccf0 FUN_1003ccf0 undefined FUN_1003ccf0(void * this, undefined2 param_1) 18 0 +1003cd30 FUN_1003cd30 undefined FUN_1003cd30(void * this, wchar_t * param_1) 15 1 +1003cd40 FUN_1003cd40 undefined FUN_1003cd40(void * this, wchar_t * param_1) 15 1 +1003cd50 FUN_1003cd50 undefined FUN_1003cd50(void * this, uint * param_1) 15 1 +1003cd60 FUN_1003cd60 undefined FUN_1003cd60(void * this, uint * param_1) 15 1 +1003cdc0 FUN_1003cdc0 undefined1 FUN_1003cdc0(int param_1) 4 0 +1003cdd0 FUN_1003cdd0 undefined4 FUN_1003cdd0(void * this, int param_1) 107 2 +1003ce40 FUN_1003ce40 undefined4 FUN_1003ce40(int param_1) 33 0 +1003ce80 FUN_1003ce80 undefined FUN_1003ce80(int * param_1) 15 0 +1003ceb0 FUN_1003ceb0 undefined FUN_1003ceb0(void * this, IID * param_1, LPUNKNOWN param_2, DWORD param_3) 31 1 CoCreateInstance +1003cef0 FUN_1003cef0 int FUN_1003cef0(LPCWSTR param_1) 83 1 +1003cf60 FUN_1003cf60 undefined4 FUN_1003cf60(undefined4 param_1) 8 0 +1003cf70 FUN_1003cf70 int FUN_1003cf70(int param_1) 11 0 +1003cf90 FUN_1003cf90 undefined FUN_1003cf90(void * param_1) 19 1 +1003cfc0 FUN_1003cfc0 int FUN_1003cfc0(int param_1) 11 0 +1003cfd0 FUN_1003cfd0 int FUN_1003cfd0(int param_1) 11 0 +1003cfe0 FUN_1003cfe0 undefined4 FUN_1003cfe0(undefined4 param_1) 8 0 +1003cff0 FUN_1003cff0 int FUN_1003cff0(int param_1) 11 0 +1003d000 FUN_1003d000 int FUN_1003d000(int param_1) 11 0 +1003d010 FUN_1003d010 int FUN_1003d010(int param_1) 11 0 +1003d020 FUN_1003d020 undefined FUN_1003d020(int param_1) 29 0 +1003d040 FUN_1003d040 undefined FUN_1003d040(int * param_1) 28 0 +1003d070 FUN_1003d070 undefined FUN_1003d070(void * param_1) 19 1 +1003d090 FUN_1003d090 int FUN_1003d090(int param_1) 11 0 +1003d0a0 FUN_1003d0a0 int FUN_1003d0a0(int param_1) 11 0 +1003d0b0 FUN_1003d0b0 undefined4 FUN_1003d0b0(undefined4 param_1) 8 0 +1003d0c0 FUN_1003d0c0 int FUN_1003d0c0(int param_1) 11 0 +1003d0d0 FUN_1003d0d0 int FUN_1003d0d0(int param_1) 11 0 +1003d0e0 FUN_1003d0e0 int FUN_1003d0e0(int param_1) 11 0 +1003d0f0 FUN_1003d0f0 undefined FUN_1003d0f0(int param_1) 29 0 +1003d110 FUN_1003d110 undefined FUN_1003d110(int * param_1) 28 0 +1003d140 FUN_1003d140 bool FUN_1003d140(int * param_1, int * param_2) 22 0 +1003d160 FUN_1003d160 undefined FUN_1003d160(void * param_1) 19 1 +1003d180 FUN_1003d180 int FUN_1003d180(int param_1) 11 0 +1003d190 FUN_1003d190 int FUN_1003d190(int param_1) 11 0 +1003d1a0 FUN_1003d1a0 undefined4 FUN_1003d1a0(undefined4 param_1) 8 0 +1003d1b0 FUN_1003d1b0 int FUN_1003d1b0(int param_1) 11 0 +1003d1c0 FUN_1003d1c0 int FUN_1003d1c0(int param_1) 11 0 +1003d1d0 FUN_1003d1d0 int FUN_1003d1d0(int param_1) 11 0 +1003d1e0 FUN_1003d1e0 undefined FUN_1003d1e0(int param_1) 29 0 +1003d200 FUN_1003d200 undefined FUN_1003d200(int * param_1) 28 0 +1003d230 FUN_1003d230 undefined FUN_1003d230(void * param_1) 19 1 +1003d250 FUN_1003d250 undefined4 FUN_1003d250(void * this, int * param_1) 19 0 +1003d280 FUN_1003d280 undefined4 FUN_1003d280(undefined4 param_1) 8 0 +1003d2a0 FUN_1003d2a0 undefined4 FUN_1003d2a0(undefined4 param_1) 8 0 +1003d2c0 FUN_1003d2c0 undefined4 FUN_1003d2c0(void * this, int * param_1) 19 0 +1003d2e0 FUN_1003d2e0 uint FUN_1003d2e0(void * this, undefined4 * param_1) 130 1 +1003d370 FUN_1003d370 undefined4 FUN_1003d370(void * this, int * param_1) 19 0 +1003d390 FUN_1003d390 undefined4 FUN_1003d390(undefined4 param_1) 8 0 +1003d3b0 FUN_1003d3b0 undefined4 FUN_1003d3b0(void * this, int * param_1) 19 0 +1003d3d0 FUN_1003d3d0 undefined4 FUN_1003d3d0(undefined4 param_1) 8 0 +1003d3f0 FUN_1003d3f0 undefined4 FUN_1003d3f0(void * this, int * param_1) 19 0 +1003d410 FUN_1003d410 undefined4 FUN_1003d410(void * this, int * param_1) 19 0 +1003d440 FUN_1003d440 undefined4 FUN_1003d440(void * this, int * param_1) 19 0 +1003d470 FUN_1003d470 undefined4 FUN_1003d470(undefined4 param_1) 8 0 +1003d490 FUN_1003d490 undefined4 FUN_1003d490(void * this, int * param_1) 19 0 +1003d4b0 FUN_1003d4b0 undefined4 FUN_1003d4b0(void * this, int * param_1) 19 0 +1003d4d0 FUN_1003d4d0 undefined4 FUN_1003d4d0(undefined4 param_1) 8 0 +1003d4f0 FUN_1003d4f0 undefined4 FUN_1003d4f0(void * this, int * param_1) 19 0 +1003d510 FUN_1003d510 undefined4 FUN_1003d510(undefined4 param_1) 8 0 +1003d530 FUN_1003d530 undefined4 FUN_1003d530(void * this, int * param_1) 19 0 +1003d550 FUN_1003d550 undefined4 * FUN_1003d550(void * this, undefined4 * param_1) 96 1 +1003d600 FUN_1003d600 undefined FUN_1003d600(int * param_1) 72 0 +1003d650 FUN_1003d650 int FUN_1003d650(int param_1) 11 0 +1003d660 FUN_1003d660 int FUN_1003d660(int param_1) 11 0 +1003d680 FUN_1003d680 undefined FUN_1003d680(void * param_1) 19 1 +1003d6a0 FUN_1003d6a0 int FUN_1003d6a0(int param_1) 11 0 +1003d6c0 FUN_1003d6c0 undefined FUN_1003d6c0(void * param_1) 19 1 +1003d720 FUN_1003d720 int FUN_1003d720(int param_1) 11 0 +1003d730 FUN_1003d730 int FUN_1003d730(int param_1) 11 0 +1003d750 FUN_1003d750 undefined FUN_1003d750(void * param_1) 19 1 +1003d790 FUN_1003d790 int FUN_1003d790(int param_1) 11 0 +1003d7a0 FUN_1003d7a0 int FUN_1003d7a0(int param_1) 11 0 +1003d7c0 FUN_1003d7c0 undefined FUN_1003d7c0(void * param_1) 19 1 +1003d810 FUN_1003d810 undefined FUN_1003d810(int * param_1) 72 0 +1003d870 FUN_1003d870 undefined FUN_1003d870(int * param_1) 72 0 +1003d8c0 FUN_1003d8c0 int FUN_1003d8c0(int param_1) 11 0 +1003d8d0 FUN_1003d8d0 int FUN_1003d8d0(int param_1) 11 0 +1003d8f0 FUN_1003d8f0 undefined FUN_1003d8f0(void * param_1) 19 1 +1003d940 FUN_1003d940 undefined FUN_1003d940(void * this, undefined4 * param_1) 18 0 +1003d970 FUN_1003d970 int FUN_1003d970(int param_1) 11 0 +1003d980 FUN_1003d980 int FUN_1003d980(int param_1) 11 0 +1003d9a0 FUN_1003d9a0 undefined FUN_1003d9a0(void * param_1) 19 1 +1003d9e0 FUN_1003d9e0 int FUN_1003d9e0(int param_1) 11 0 +1003d9f0 FUN_1003d9f0 int FUN_1003d9f0(int param_1) 11 0 +1003da10 FUN_1003da10 undefined FUN_1003da10(void * param_1) 19 1 +1003da50 FUN_1003da50 int FUN_1003da50(int param_1) 11 0 +1003da60 FUN_1003da60 int FUN_1003da60(int param_1) 11 0 +1003db20 FUN_1003db20 undefined4 FUN_1003db20(undefined4 param_1) 8 0 +1003db30 FUN_1003db30 undefined4 FUN_1003db30(undefined4 param_1) 8 0 +1003db40 FUN_1003db40 undefined4 FUN_1003db40(undefined4 param_1) 8 0 +1003db50 FUN_1003db50 undefined4 FUN_1003db50(undefined4 param_1) 8 0 +1003db60 FUN_1003db60 undefined4 FUN_1003db60(undefined4 param_1) 8 0 +1003db70 FUN_1003db70 undefined4 FUN_1003db70(undefined4 param_1) 8 0 +1003db80 FUN_1003db80 undefined4 FUN_1003db80(undefined4 param_1) 8 0 +1003db90 FUN_1003db90 undefined4 FUN_1003db90(undefined4 param_1) 8 0 +1003dba0 FUN_1003dba0 undefined4 FUN_1003dba0(undefined4 param_1) 8 0 +1003dbb0 FUN_1003dbb0 undefined4 FUN_1003dbb0(undefined4 param_1) 8 0 +1003dbd0 FUN_1003dbd0 void * FUN_1003dbd0(char * param_1) 144 3 +1003dc60 FUN_1003dc60 undefined4 FUN_1003dc60(undefined4 param_1) 8 0 +1003dc80 FUN_1003dc80 void * FUN_1003dc80(char * param_1) 144 3 +1003dd10 FUN_1003dd10 undefined4 FUN_1003dd10(undefined4 param_1) 8 0 +1003dd30 FUN_1003dd30 void * FUN_1003dd30(char * param_1) 150 3 +1003ddd0 FUN_1003ddd0 undefined4 FUN_1003ddd0(undefined4 param_1) 8 0 +1003ddf0 FUN_1003ddf0 void * FUN_1003ddf0(char * param_1) 144 3 +1003de80 FUN_1003de80 undefined4 FUN_1003de80(undefined4 param_1) 8 0 +1003dea0 FUN_1003dea0 void * FUN_1003dea0(char * param_1) 144 3 +1003df30 FUN_1003df30 undefined4 FUN_1003df30(undefined4 param_1) 8 0 +1003df50 FUN_1003df50 void * FUN_1003df50(char * param_1) 144 3 +1003dfe0 FUN_1003dfe0 undefined4 FUN_1003dfe0(undefined4 param_1) 8 0 +1003e000 FUN_1003e000 void * FUN_1003e000(char * param_1) 144 3 +1003e090 FUN_1003e090 undefined4 FUN_1003e090(undefined4 param_1) 8 0 +1003e0b0 FUN_1003e0b0 void * FUN_1003e0b0(char * param_1) 144 3 +1003e150 FUN_1003e150 void * FUN_1003e150(char * param_1) 146 3 +1003e200 FUN_1003e200 void * FUN_1003e200(char * param_1) 146 3 +1003e2b0 FUN_1003e2b0 void * FUN_1003e2b0(char * param_1) 146 3 +1003e380 FUN_1003e380 undefined FUN_1003e380(int * param_1) 84 0 +1003e3f0 FUN_1003e3f0 undefined FUN_1003e3f0(int * param_1) 84 0 +1003e460 FUN_1003e460 undefined FUN_1003e460(int * param_1) 84 0 +1003e4f0 FUN_1003e4f0 undefined4 FUN_1003e4f0(undefined4 param_1) 8 0 +1003e500 FUN_1003e500 undefined4 FUN_1003e500(undefined4 param_1) 8 0 +1003e510 FUN_1003e510 undefined4 FUN_1003e510(undefined4 param_1) 8 0 +1003e520 FUN_1003e520 undefined4 FUN_1003e520(undefined4 param_1) 8 0 +1003e530 FUN_1003e530 undefined4 FUN_1003e530(undefined4 param_1) 8 0 +1003e540 FUN_1003e540 undefined4 FUN_1003e540(undefined4 param_1) 8 0 +1003e550 FUN_1003e550 undefined4 FUN_1003e550(undefined4 param_1) 8 0 +1003e560 FUN_1003e560 undefined4 FUN_1003e560(undefined4 param_1) 8 0 +1003e570 FUN_1003e570 undefined4 FUN_1003e570(undefined4 param_1) 8 0 +1003e580 FUN_1003e580 undefined4 FUN_1003e580(undefined4 param_1) 8 0 +1003e590 FUN_1003e590 undefined4 FUN_1003e590(undefined4 param_1) 8 0 +1003e5a0 FUN_1003e5a0 undefined4 FUN_1003e5a0(undefined4 param_1) 8 0 +1003e5b0 FUN_1003e5b0 undefined FUN_1003e5b0(undefined4 * param_1, undefined4 * param_2) 91 0 +1003e630 FUN_1003e630 undefined FUN_1003e630(undefined4 * param_1, undefined4 * param_2) 84 0 +1003e6a0 FUN_1003e6a0 undefined FUN_1003e6a0(undefined4 * param_1, undefined4 * param_2) 108 0 +1003e720 FUN_1003e720 undefined FUN_1003e720(undefined4 * param_1, undefined4 * param_2) 84 0 +1003e790 FUN_1003e790 undefined FUN_1003e790(undefined4 * param_1, undefined4 * param_2) 84 0 +1003e800 FUN_1003e800 undefined FUN_1003e800(undefined4 * param_1, undefined4 * param_2) 84 0 +1003e870 FUN_1003e870 undefined FUN_1003e870(undefined4 * param_1, undefined4 * param_2) 84 0 +1003e8e0 FUN_1003e8e0 undefined FUN_1003e8e0(undefined4 * param_1, undefined4 * param_2) 84 0 +1003e950 FUN_1003e950 undefined4 FUN_1003e950(undefined4 param_1) 8 0 +1003e960 FUN_1003e960 undefined4 FUN_1003e960(undefined4 param_1) 8 0 +1003e970 FUN_1003e970 undefined4 FUN_1003e970(undefined4 param_1) 8 0 +1003e990 FUN_1003e990 undefined4 FUN_1003e990(undefined4 param_1) 8 0 +1003e9a0 FUN_1003e9a0 undefined FUN_1003e9a0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003e9c0 FUN_1003e9c0 undefined4 FUN_1003e9c0(undefined4 param_1) 8 0 +1003e9d0 FUN_1003e9d0 undefined FUN_1003e9d0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003e9f0 FUN_1003e9f0 undefined4 FUN_1003e9f0(undefined4 param_1) 8 0 +1003ea00 FUN_1003ea00 undefined FUN_1003ea00(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003ea20 FUN_1003ea20 undefined4 FUN_1003ea20(undefined4 param_1) 8 0 +1003ea30 FUN_1003ea30 undefined4 FUN_1003ea30(undefined4 param_1) 8 0 +1003ea40 FUN_1003ea40 undefined4 FUN_1003ea40(undefined4 param_1) 8 0 +1003ea50 FUN_1003ea50 undefined4 FUN_1003ea50(undefined4 param_1) 8 0 +1003ea60 FUN_1003ea60 undefined4 FUN_1003ea60(undefined4 param_1) 8 0 +1003ea70 FUN_1003ea70 undefined4 FUN_1003ea70(undefined4 param_1) 8 0 +1003ea80 FUN_1003ea80 undefined4 FUN_1003ea80(undefined4 param_1) 8 0 +1003eaa0 FUN_1003eaa0 undefined FUN_1003eaa0(undefined4 * param_1) 10 1 SysFreeString +1003ead0 FUN_1003ead0 undefined FUN_1003ead0(undefined4 * param_1) 28 2 +1003eaf0 FUN_1003eaf0 undefined FUN_1003eaf0(int * param_1) 74 0 +1003eb40 FUN_1003eb40 undefined FUN_1003eb40(undefined4 * param_1) 68 0 +1003eb90 FUN_1003eb90 undefined4 FUN_1003eb90(void * this, int * param_1) 19 0 +1003ebb0 FUN_1003ebb0 undefined4 FUN_1003ebb0(void * this, int * param_1) 19 0 +1003ebd0 FUN_1003ebd0 undefined4 FUN_1003ebd0(void * this, int * param_1) 19 0 +1003ebf0 FUN_1003ebf0 undefined4 FUN_1003ebf0(void * this, int * param_1) 19 0 +1003ec10 FUN_1003ec10 undefined4 FUN_1003ec10(void * this, int * param_1) 19 0 +1003ec30 FUN_1003ec30 undefined4 FUN_1003ec30(void * this, int * param_1) 19 0 +1003ec50 FUN_1003ec50 undefined4 FUN_1003ec50(void * this, int * param_1) 19 0 +1003ec70 FUN_1003ec70 undefined4 FUN_1003ec70(void * this, int * param_1) 19 0 +1003ec90 FUN_1003ec90 undefined4 FUN_1003ec90(void * this, int * param_1) 19 0 +1003ecb0 FUN_1003ecb0 undefined4 FUN_1003ecb0(void * this, int * param_1) 19 0 +1003ecd0 FUN_1003ecd0 undefined4 FUN_1003ecd0(void * this, int * param_1) 19 0 +1003ecf0 FUN_1003ecf0 undefined FUN_1003ecf0(undefined4 * param_1) 10 1 +1003ed30 FUN_1003ed30 undefined FUN_1003ed30(void * this, int * param_1) 87 0 +1003ed90 FUN_1003ed90 undefined FUN_1003ed90(int param_1) 11 1 +1003eda0 FUN_1003eda0 int FUN_1003eda0(int param_1) 11 0 +1003ede0 FUN_1003ede0 undefined FUN_1003ede0(void * this, int * param_1) 87 0 +1003ee40 FUN_1003ee40 undefined FUN_1003ee40(int param_1) 11 1 +1003ee50 FUN_1003ee50 int FUN_1003ee50(int param_1) 11 0 +1003ee90 FUN_1003ee90 undefined FUN_1003ee90(void * this, int * param_1) 87 0 +1003eef0 FUN_1003eef0 undefined FUN_1003eef0(int param_1) 11 1 +1003ef00 FUN_1003ef00 int FUN_1003ef00(int param_1) 11 0 +1003ef20 FUN_1003ef20 int * FUN_1003ef20(int * param_1) 12 1 +1003ef30 FUN_1003ef30 undefined FUN_1003ef30(undefined4 * param_1) 10 1 +1003ef40 FUN_1003ef40 int FUN_1003ef40(int * param_1) 132 2 +1003efd0 FUN_1003efd0 uint FUN_1003efd0(void * this, undefined4 * param_1) 92 2 +1003f030 FUN_1003f030 undefined FUN_1003f030(undefined4 * param_1) 10 1 +1003f070 FUN_1003f070 undefined FUN_1003f070(undefined4 * param_1) 10 1 +1003f0a0 FUN_1003f0a0 undefined FUN_1003f0a0(undefined4 * param_1) 10 1 +1003f0e0 FUN_1003f0e0 int * FUN_1003f0e0(int * param_1) 12 1 +1003f100 FUN_1003f100 int * FUN_1003f100(int * param_1) 12 1 +1003f110 FUN_1003f110 undefined FUN_1003f110(undefined4 * param_1) 10 1 +1003f150 FUN_1003f150 undefined FUN_1003f150(undefined4 * param_1) 10 1 +1003f180 FUN_1003f180 undefined FUN_1003f180(undefined4 * param_1) 10 1 +1003f1c0 FUN_1003f1c0 undefined FUN_1003f1c0(char * param_1) 21 1 +1003f1e0 FUN_1003f1e0 undefined4 * FUN_1003f1e0(void * this, int * param_1) 44 0 +1003f210 FUN_1003f210 undefined4 * FUN_1003f210(void * this, int * param_1) 44 0 +1003f240 FUN_1003f240 undefined FUN_1003f240(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +1003f270 FUN_1003f270 undefined FUN_1003f270(char * param_1) 21 1 +1003f2a0 FUN_1003f2a0 undefined FUN_1003f2a0(char * param_1) 21 1 +1003f2e0 FUN_1003f2e0 undefined FUN_1003f2e0(char * param_1) 21 1 +1003f310 FUN_1003f310 undefined FUN_1003f310(char * param_1) 21 1 +1003f340 FUN_1003f340 undefined FUN_1003f340(char * param_1) 21 1 +1003f380 FUN_1003f380 undefined FUN_1003f380(char * param_1) 21 1 +1003f3b0 FUN_1003f3b0 undefined FUN_1003f3b0(char * param_1) 21 1 +1003f3f0 FUN_1003f3f0 undefined FUN_1003f3f0(char * param_1) 21 1 +1003f420 FUN_1003f420 undefined FUN_1003f420(char * param_1) 21 1 +1003f450 FUN_1003f450 undefined FUN_1003f450(char * param_1) 21 1 +1003f470 FUN_1003f470 int * FUN_1003f470(void * this, int * param_1) 23 1 +1003f490 FUN_1003f490 undefined FUN_1003f490(void * this, undefined4 param_1) 14 0 +1003f4c0 FUN_1003f4c0 undefined FUN_1003f4c0(void * this, undefined4 param_1) 14 0 +1003f4d0 FUN_1003f4d0 undefined FUN_1003f4d0(void * this, undefined4 param_1) 14 0 +1003f4f0 FUN_1003f4f0 undefined FUN_1003f4f0(void * this, undefined4 param_1) 14 0 +1003f510 FUN_1003f510 undefined FUN_1003f510(void * this, undefined4 param_1) 14 0 +1003f520 FUN_1003f520 int * FUN_1003f520(void * this, int * param_1) 23 1 +1003f540 FUN_1003f540 undefined FUN_1003f540(void * this, undefined4 param_1) 14 0 +1003f550 FUN_1003f550 int * FUN_1003f550(void * this, int * param_1) 23 1 +1003f570 FUN_1003f570 undefined FUN_1003f570(void * this, undefined4 param_1) 14 0 +1003f590 FUN_1003f590 undefined FUN_1003f590(void * this, undefined4 param_1) 14 0 +1003f5a0 FUN_1003f5a0 undefined FUN_1003f5a0(void * this, undefined4 param_1) 14 0 +1003f5c0 FUN_1003f5c0 undefined FUN_1003f5c0(void * this, undefined4 param_1) 14 0 +1003f5e0 FUN_1003f5e0 undefined FUN_1003f5e0(void * this, undefined4 param_1) 14 0 +1003f5f0 FUN_1003f5f0 undefined FUN_1003f5f0(undefined4 * param_1, undefined4 * param_2) 93 0 +1003f670 FUN_1003f670 undefined FUN_1003f670(undefined4 * param_1, undefined4 * param_2) 86 0 +1003f6e0 FUN_1003f6e0 undefined FUN_1003f6e0(undefined4 * param_1, undefined4 * param_2) 110 0 +1003f760 FUN_1003f760 undefined FUN_1003f760(undefined4 * param_1, undefined4 * param_2) 86 0 +1003f7d0 FUN_1003f7d0 undefined FUN_1003f7d0(undefined4 * param_1, undefined4 * param_2) 86 0 +1003f840 FUN_1003f840 undefined FUN_1003f840(undefined4 * param_1, undefined4 * param_2) 86 0 +1003f8b0 FUN_1003f8b0 undefined FUN_1003f8b0(undefined4 * param_1, undefined4 * param_2) 86 0 +1003f920 FUN_1003f920 undefined FUN_1003f920(undefined4 * param_1, undefined4 * param_2) 86 0 +1003f9a0 FUN_1003f9a0 int * FUN_1003f9a0(int * param_1) 12 1 +1003f9c0 FUN_1003f9c0 int * FUN_1003f9c0(int * param_1) 12 1 +1003f9e0 FUN_1003f9e0 int * FUN_1003f9e0(int * param_1) 12 1 +1003fa20 FUN_1003fa20 int * FUN_1003fa20(int * param_1) 12 1 +1003fa30 FUN_1003fa30 int * FUN_1003fa30(int * param_1) 12 1 +1003fa40 FUN_1003fa40 int * FUN_1003fa40(int * param_1) 12 1 +1003fa50 FUN_1003fa50 undefined FUN_1003fa50(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003fa70 FUN_1003fa70 undefined FUN_1003fa70(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003fa90 FUN_1003fa90 undefined FUN_1003fa90(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003fab0 FUN_1003fab0 undefined FUN_1003fab0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003fad0 FUN_1003fad0 undefined FUN_1003fad0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003faf0 FUN_1003faf0 undefined FUN_1003faf0(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +1003fb10 FUN_1003fb10 undefined FUN_1003fb10(int param_1) 142 3 +1003fba0 FUN_1003fba0 undefined FUN_1003fba0(int param_1) 142 3 +1003fc30 FUN_1003fc30 undefined FUN_1003fc30(int param_1) 142 3 +1003fcc0 FUN_1003fcc0 undefined FUN_1003fcc0(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +1003fd00 FUN_1003fd00 undefined FUN_1003fd00(void * this, undefined4 * param_1) 18 0 +1003fd30 FUN_1003fd30 undefined FUN_1003fd30(void * this, undefined4 * param_1) 18 0 +1003fd60 FUN_1003fd60 undefined FUN_1003fd60(void * this, undefined4 * param_1) 18 0 +1003fd90 FUN_1003fd90 undefined FUN_1003fd90(void * this, undefined4 * param_1) 18 0 +1003fde0 FUN_1003fde0 undefined FUN_1003fde0(void * this, undefined4 * param_1) 18 0 +1003fe00 FUN_1003fe00 undefined FUN_1003fe00(void * this, undefined4 * param_1) 18 0 +1003fe20 FUN_1003fe20 undefined FUN_1003fe20(void * this, undefined4 * param_1) 18 0 +1003fe40 FUN_1003fe40 undefined FUN_1003fe40(void * this, undefined4 * param_1) 18 0 +1003fe70 FUN_1003fe70 undefined FUN_1003fe70(void * this, undefined4 * param_1) 18 0 +1003fe90 FUN_1003fe90 undefined FUN_1003fe90(void * this, undefined4 * param_1) 18 0 +1003fec0 FUN_1003fec0 undefined FUN_1003fec0(void * this, undefined4 * param_1) 18 0 +1003fee0 FUN_1003fee0 int * FUN_1003fee0(int * param_1) 145 3 +1003ff80 FUN_1003ff80 undefined FUN_1003ff80(void * this, int param_1) 83 0 +1003ffe0 FUN_1003ffe0 undefined FUN_1003ffe0(void * this, int param_1) 83 0 +10040040 FUN_10040040 undefined FUN_10040040(void * this, int param_1) 83 0 +100400a0 FUN_100400a0 int * FUN_100400a0(int * param_1) 12 1 +100400b0 FUN_100400b0 undefined FUN_100400b0(void * this, undefined4 * param_1, undefined4 * param_2) 24 0 +100400d0 FUN_100400d0 bool FUN_100400d0(void * this, undefined4 * param_1) 23 1 +100400f0 FUN_100400f0 int * FUN_100400f0(int * param_1) 145 3 +10040190 FUN_10040190 int * FUN_10040190(int * param_1) 145 3 +10040240 FUN_10040240 int * FUN_10040240(int * param_1) 145 3 +100402e0 FUN_100402e0 int * FUN_100402e0(int * param_1) 145 3 +10040380 FUN_10040380 int * FUN_10040380(int * param_1) 12 1 +10040390 FUN_10040390 int * FUN_10040390(int * param_1) 145 3 +10040440 FUN_10040440 int * FUN_10040440(int * param_1) 145 3 +100404e0 FUN_100404e0 int * FUN_100404e0(int * param_1) 145 3 +10040580 FUN_10040580 undefined FUN_10040580(void * this, uint param_1) 42 1 +100405b0 FUN_100405b0 int FUN_100405b0(int param_1) 167 3 +10040660 FUN_10040660 int FUN_10040660(int param_1) 167 3 +10040710 FUN_10040710 int FUN_10040710(int param_1) 167 3 +100407c0 FUN_100407c0 undefined FUN_100407c0(int * param_1, wchar_t * param_2) 150 5 +10040860 FUN_10040860 undefined FUN_10040860(void * this, undefined4 param_1) 14 0 +10040870 FUN_10040870 undefined FUN_10040870(void * this, uint param_1) 42 1 +100408a0 FUN_100408a0 undefined FUN_100408a0(void * this, uint param_1) 42 1 +100408d0 FUN_100408d0 undefined FUN_100408d0(void * this, undefined4 param_1) 14 0 +100408e0 FUN_100408e0 undefined FUN_100408e0(void * this, undefined4 param_1) 14 0 +100408f0 FUN_100408f0 undefined FUN_100408f0(void * this, uint param_1) 42 1 +10040920 FUN_10040920 undefined FUN_10040920(void * this, undefined4 param_1) 14 0 +10040930 FUN_10040930 undefined FUN_10040930(void * this, uint param_1) 42 1 +10040960 FUN_10040960 undefined FUN_10040960(void * this, undefined4 param_1) 14 0 +10040970 FUN_10040970 undefined FUN_10040970(void * this, undefined4 param_1) 14 0 +10040980 FUN_10040980 undefined FUN_10040980(void * this, undefined4 param_1) 14 0 +10040990 FUN_10040990 undefined FUN_10040990(void * this, uint param_1) 42 1 +100409c0 FUN_100409c0 undefined FUN_100409c0(void * this, undefined4 param_1) 14 0 +100409d0 FUN_100409d0 undefined FUN_100409d0(void * this, undefined4 param_1) 14 0 +100409e0 FUN_100409e0 undefined FUN_100409e0(void * this, uint param_1) 42 1 +10040a10 FUN_10040a10 undefined FUN_10040a10(void * this, undefined4 param_1) 14 0 +10040a20 FUN_10040a20 undefined FUN_10040a20(void * this, uint param_1) 42 1 +10040a50 FUN_10040a50 undefined FUN_10040a50(void * this, undefined4 param_1) 14 0 +10040a80 FUN_10040a80 undefined FUN_10040a80(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 91 0 +10040af0 FUN_10040af0 undefined FUN_10040af0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10040b60 FUN_10040b60 undefined FUN_10040b60(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 108 0 +10040be0 FUN_10040be0 undefined FUN_10040be0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10040c50 FUN_10040c50 undefined FUN_10040c50(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10040cc0 FUN_10040cc0 undefined FUN_10040cc0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10040d30 FUN_10040d30 undefined FUN_10040d30(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10040da0 FUN_10040da0 undefined FUN_10040da0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 84 0 +10040e00 FUN_10040e00 undefined FUN_10040e00(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10040e20 FUN_10040e20 undefined FUN_10040e20(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10040e40 FUN_10040e40 undefined FUN_10040e40(void * this, undefined4 * param_1, undefined1 * param_2) 24 0 +10040e60 FUN_10040e60 undefined FUN_10040e60(void * this, undefined4 * param_1) 22 0 +10040e80 FUN_10040e80 int * FUN_10040e80(int * param_1) 153 3 +10040f20 FUN_10040f20 undefined FUN_10040f20(int * param_1) 52 1 +10040f60 FUN_10040f60 int * FUN_10040f60(void * this, int * param_1) 23 1 +10040f80 FUN_10040f80 int * FUN_10040f80(int * param_1) 153 3 +10041020 FUN_10041020 int * FUN_10041020(int * param_1) 153 3 +100410d0 FUN_100410d0 int * FUN_100410d0(int * param_1) 153 3 +10041170 FUN_10041170 int * FUN_10041170(int * param_1) 153 3 +10041210 FUN_10041210 int * FUN_10041210(void * this, int * param_1) 23 1 +10041230 FUN_10041230 int * FUN_10041230(int * param_1) 153 3 +100412e0 FUN_100412e0 int * FUN_100412e0(int * param_1) 153 3 +10041380 FUN_10041380 int * FUN_10041380(int * param_1) 153 3 +10041420 FUN_10041420 undefined FUN_10041420(int * param_1) 52 1 +10041460 FUN_10041460 int FUN_10041460(int param_1) 177 3 +10041520 FUN_10041520 bool FUN_10041520(void * param_1, undefined4 * param_2) 26 1 +10041540 FUN_10041540 int FUN_10041540(int param_1) 177 3 +10041600 FUN_10041600 int FUN_10041600(int param_1) 177 3 +100416c0 FUN_100416c0 undefined FUN_100416c0(int * param_1) 56 2 +10041700 FUN_10041700 undefined FUN_10041700(void * this, undefined4 param_1) 14 0 +10041710 FUN_10041710 undefined FUN_10041710(void * this, undefined4 param_1) 14 0 +10041720 FUN_10041720 undefined FUN_10041720(void * this, undefined4 param_1) 14 0 +10041730 FUN_10041730 undefined FUN_10041730(void * this, undefined4 param_1) 14 0 +10041740 FUN_10041740 undefined FUN_10041740(void * this, undefined4 param_1) 14 0 +10041750 FUN_10041750 undefined FUN_10041750(void * this, undefined4 param_1) 14 0 +10041760 FUN_10041760 undefined FUN_10041760(void * this, undefined4 param_1) 14 0 +10041770 FUN_10041770 undefined FUN_10041770(void * this, undefined4 param_1) 14 0 +10041780 FUN_10041780 undefined FUN_10041780(void * this, undefined4 param_1) 14 0 +10041790 FUN_10041790 undefined FUN_10041790(void * this, undefined4 param_1) 14 0 +100417a0 FUN_100417a0 undefined FUN_100417a0(void * this, undefined4 param_1) 14 0 +100417b0 FUN_100417b0 undefined FUN_100417b0(undefined4 * param_1, undefined4 param_2) 15 0 +100417c0 FUN_100417c0 undefined4 * FUN_100417c0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10041843 Catch@10041843 undefined Catch@10041843(void) 21 2 +10041890 FUN_10041890 undefined4 * FUN_10041890(void * this, undefined4 * param_1) 113 2 +10041910 FUN_10041910 undefined FUN_10041910(void * this, undefined4 * param_1) 17 0 +10041930 FUN_10041930 undefined FUN_10041930(int * param_1) 52 1 +10041970 FUN_10041970 undefined4 * FUN_10041970(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +100419f3 Catch@100419f3 undefined Catch@100419f3(void) 21 2 +10041a40 FUN_10041a40 undefined FUN_10041a40(int * param_1) 52 1 +10041a80 FUN_10041a80 undefined4 * FUN_10041a80(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10041b03 Catch@10041b03 undefined Catch@10041b03(void) 21 2 +10041b50 FUN_10041b50 undefined FUN_10041b50(int * param_1) 52 1 +10041b90 FUN_10041b90 undefined4 * FUN_10041b90(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10041c13 Catch@10041c13 undefined Catch@10041c13(void) 21 2 +10041c60 FUN_10041c60 undefined FUN_10041c60(int * param_1) 52 1 +10041ca0 FUN_10041ca0 undefined4 * FUN_10041ca0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10041d23 Catch@10041d23 undefined Catch@10041d23(void) 21 2 +10041d70 FUN_10041d70 undefined FUN_10041d70(int * param_1) 52 1 +10041db0 FUN_10041db0 undefined4 * FUN_10041db0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10041e33 Catch@10041e33 undefined Catch@10041e33(void) 21 2 +10041e80 FUN_10041e80 undefined FUN_10041e80(int * param_1) 52 1 +10041ec0 FUN_10041ec0 undefined4 * FUN_10041ec0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10041f43 Catch@10041f43 undefined Catch@10041f43(void) 21 2 +10041f90 FUN_10041f90 undefined FUN_10041f90(int * param_1) 52 1 +10041fd0 FUN_10041fd0 undefined4 * FUN_10041fd0(void * this, char * param_1, undefined4 param_2, undefined4 * param_3) 186 4 +10042053 Catch@10042053 undefined Catch@10042053(void) 21 2 +100420a0 FUN_100420a0 undefined FUN_100420a0(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 546 2 +100422d0 FUN_100422d0 undefined FUN_100422d0(undefined4 * param_1, undefined4 * param_2) 89 0 +10042330 FUN_10042330 int * FUN_10042330(int * param_1) 233 6 +10042420 FUN_10042420 undefined FUN_10042420(int param_1) 760 9 +10042720 FUN_10042720 undefined1 FUN_10042720(LPCWSTR param_1, LPCWSTR param_2, LPBYTE param_3) 734 9 +10042a00 FUN_10042a00 HRESULT FUN_10042a00(void * this, BSTR param_1, undefined4 * param_2, undefined4 * param_3) 639 11 CoCreateInstance;SysFreeString +10042c80 FUN_10042c80 undefined FUN_10042c80(int * param_1) 117 1 +10042d00 FUN_10042d00 undefined FUN_10042d00(void * this, undefined4 * param_1) 16 0 +10042d10 FUN_10042d10 undefined FUN_10042d10(void * this, undefined4 * param_1) 14 0 +10042d30 FUN_10042d30 undefined FUN_10042d30(void * this, undefined4 * param_1) 17 0 +10042d50 FUN_10042d50 undefined FUN_10042d50(void * this, undefined4 * param_1) 15 0 +10042d60 FUN_10042d60 undefined FUN_10042d60(void * this, undefined4 * param_1) 15 0 +10042d70 FUN_10042d70 undefined FUN_10042d70(void * this, undefined4 * param_1) 17 0 +10042d90 FUN_10042d90 undefined FUN_10042d90(void * this, undefined4 * param_1) 15 0 +10042da0 FUN_10042da0 undefined FUN_10042da0(void * this, undefined4 * param_1, int * param_2) 592 7 +10043000 FUN_10043000 undefined FUN_10043000(int param_1) 77 2 +10043050 FUN_10043050 undefined FUN_10043050(void * this, undefined4 * param_1) 16 0 +10043060 FUN_10043060 undefined FUN_10043060(void * this, undefined4 * param_1) 14 0 +10043070 FUN_10043070 undefined FUN_10043070(void * this, undefined4 * param_1) 16 0 +10043080 FUN_10043080 undefined FUN_10043080(void * this, undefined4 * param_1) 14 0 +10043090 FUN_10043090 undefined FUN_10043090(void * this, undefined4 * param_1) 16 0 +100430a0 FUN_100430a0 undefined FUN_100430a0(void * this, undefined4 * param_1) 14 0 +100430b0 FUN_100430b0 undefined FUN_100430b0(void * this, undefined4 * param_1) 16 0 +100430c0 FUN_100430c0 undefined FUN_100430c0(void * this, undefined4 * param_1) 14 0 +100430d0 FUN_100430d0 undefined FUN_100430d0(void * this, undefined4 * param_1) 16 0 +100430e0 FUN_100430e0 undefined FUN_100430e0(void * this, undefined4 * param_1) 14 0 +100430f0 FUN_100430f0 undefined FUN_100430f0(void * this, undefined4 * param_1) 16 0 +10043100 FUN_10043100 undefined FUN_10043100(void * this, undefined4 * param_1) 14 0 +10043110 FUN_10043110 undefined FUN_10043110(void * this, undefined4 * param_1) 16 0 +10043120 FUN_10043120 undefined FUN_10043120(void * this, undefined4 * param_1) 14 0 +10043130 FUN_10043130 undefined FUN_10043130(void * this, char * param_1, undefined4 * param_2) 72 2 +10043180 FUN_10043180 undefined FUN_10043180(void * this, int * param_1, int * param_2) 58 1 +100431c0 FUN_100431c0 undefined4 * FUN_100431c0(void * this, undefined4 * param_1, undefined4 * param_2) 23 1 +100431e0 FUN_100431e0 undefined FUN_100431e0(void * this, int * param_1, int * param_2) 49 0 +10043220 FUN_10043220 undefined FUN_10043220(void * this, int * param_1, int * param_2) 49 0 +10043260 FUN_10043260 undefined FUN_10043260(void * this, char * param_1, undefined4 * param_2) 72 2 +100432b0 FUN_100432b0 undefined FUN_100432b0(int * param_1) 52 1 +100432f0 FUN_100432f0 undefined FUN_100432f0(void * this, char * param_1, undefined4 * param_2) 72 2 +10043340 FUN_10043340 undefined FUN_10043340(int * param_1) 52 1 +10043380 FUN_10043380 undefined FUN_10043380(void * this, char * param_1, undefined4 * param_2) 72 2 +100433d0 FUN_100433d0 undefined FUN_100433d0(int * param_1) 52 1 +10043410 FUN_10043410 undefined FUN_10043410(void * this, char * param_1, undefined4 * param_2) 72 2 +10043460 FUN_10043460 undefined FUN_10043460(int * param_1) 52 1 +100434a0 FUN_100434a0 undefined FUN_100434a0(void * this, char * param_1, undefined4 * param_2) 72 2 +100434f0 FUN_100434f0 undefined FUN_100434f0(int * param_1) 52 1 +10043530 FUN_10043530 undefined FUN_10043530(void * this, char * param_1, undefined4 * param_2) 72 2 +10043580 FUN_10043580 undefined FUN_10043580(int * param_1) 52 1 +100435c0 FUN_100435c0 undefined FUN_100435c0(void * this, char * param_1, undefined4 * param_2) 72 2 +10043610 FUN_10043610 undefined FUN_10043610(int * param_1) 52 1 +10043650 FUN_10043650 undefined FUN_10043650(void * this, undefined4 * param_1, int * param_2, int * param_3) 158 2 +100436f0 FUN_100436f0 undefined FUN_100436f0(void * this, undefined4 * param_1, int * param_2, char param_3) 209 3 +100437d0 FUN_100437d0 undefined FUN_100437d0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 121 1 +10043849 Catch@10043849 undefined Catch@10043849(void) 45 2 +10043880 FUN_10043880 undefined FUN_10043880(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 87 0 +100438e0 FUN_100438e0 undefined FUN_100438e0(int param_1) 1412 15 +10043e70 FUN_10043e70 undefined4 FUN_10043e70(void * this, int param_1) 204 2 +10043f40 FUN_10043f40 undefined FUN_10043f40(int * param_1) 40 1 +10043f70 FUN_10043f70 undefined FUN_10043f70(void * this, undefined4 * param_1) 69 2 +10043fc0 FUN_10043fc0 undefined FUN_10043fc0(void * this, undefined4 * param_1, undefined4 * param_2) 82 2 +10044020 FUN_10044020 undefined FUN_10044020(void * this, undefined4 * param_1, int * param_2) 98 0 +10044090 FUN_10044090 undefined FUN_10044090(void * this, undefined4 * param_1, int * param_2) 98 0 +10044100 FUN_10044100 undefined FUN_10044100(int * param_1) 117 1 +10044180 FUN_10044180 undefined FUN_10044180(void * this, undefined4 * param_1) 69 2 +100441d0 FUN_100441d0 undefined FUN_100441d0(int * param_1) 117 1 +10044250 FUN_10044250 undefined FUN_10044250(void * this, undefined4 * param_1) 69 2 +100442a0 FUN_100442a0 undefined FUN_100442a0(int * param_1) 117 1 +10044320 FUN_10044320 undefined FUN_10044320(void * this, undefined4 * param_1) 69 2 +10044370 FUN_10044370 undefined FUN_10044370(int * param_1) 117 1 +100443f0 FUN_100443f0 undefined FUN_100443f0(void * this, undefined4 * param_1) 69 2 +10044440 FUN_10044440 undefined FUN_10044440(int * param_1) 117 1 +100444c0 FUN_100444c0 undefined FUN_100444c0(void * this, undefined4 * param_1) 69 2 +10044510 FUN_10044510 undefined FUN_10044510(int * param_1) 117 1 +10044590 FUN_10044590 undefined FUN_10044590(void * this, undefined4 * param_1) 69 2 +100445e0 FUN_100445e0 undefined FUN_100445e0(int * param_1) 117 1 +10044660 FUN_10044660 undefined FUN_10044660(void * this, undefined4 * param_1) 69 2 +100446b0 FUN_100446b0 undefined FUN_100446b0(void * param_1) 24 1 +100446d0 FUN_100446d0 int * FUN_100446d0(void * this, OLECHAR * param_1) 251 7 SysAllocString;SysFreeString +100447d0 FUN_100447d0 undefined4 * FUN_100447d0(void * this, undefined4 * param_1, int * param_2) 97 1 +10044840 FUN_10044840 int * FUN_10044840(void * this, int * param_1, int * param_2) 104 1 +100448b0 FUN_100448b0 undefined FUN_100448b0(void * this, char * param_1, undefined4 * param_2, undefined4 * param_3) 28 1 +100448d0 FUN_100448d0 undefined4 * FUN_100448d0(void * this, undefined4 * param_1, int * param_2, int * param_3) 339 4 +10044a30 FUN_10044a30 undefined4 * FUN_10044a30(void * this, char * param_1) 190 4 +10044abf Catch@10044abf undefined Catch@10044abf(void) 21 2 +10044b10 FUN_10044b10 undefined4 * FUN_10044b10(void * this, undefined4 * param_1, int * param_2) 97 1 +10044b80 FUN_10044b80 int * FUN_10044b80(void * this, int * param_1, int * param_2) 104 1 +10044bf0 FUN_10044bf0 undefined4 FUN_10044bf0(void * this, int * param_1, int * param_2, LPCRITICAL_SECTION param_3, uint * param_4) 1797 32 memcpy +10045300 FUN_10045300 undefined4 FUN_10045300(void * this, int * param_1, int * param_2, LPCRITICAL_SECTION param_3, uint * param_4) 1689 32 memcpy +100459a0 FUN_100459a0 undefined4 * FUN_100459a0(void * this, undefined4 * param_1) 120 2 +10045a20 FUN_10045a20 int FUN_10045a20(void * this, int * param_1, undefined4 * param_2, undefined4 * param_3, int * param_4) 889 11 memcpy +10045db0 FUN_10045db0 undefined4 FUN_10045db0(void * this, int * param_1, int * param_2, undefined4 * param_3, uint * param_4) 2005 28 memcpy +10046590 FUN_10046590 int FUN_10046590(void * this, int * param_1, int * param_2, LPCRITICAL_SECTION param_3, uint * param_4) 1109 19 memcpy +100469f0 FUN_100469f0 undefined4 FUN_100469f0(void * this, int * param_1, int * param_2, LPCRITICAL_SECTION param_3, uint * param_4) 1616 32 memcpy +10047050 FUN_10047050 undefined4 FUN_10047050(void * this, OLECHAR * param_1) 334 10 SysFreeString +100471a0 FUN_100471a0 undefined4 FUN_100471a0(int param_1) 134 3 +10047230 FUN_10047230 undefined4 FUN_10047230(void * this, undefined4 param_1, undefined4 * param_2) 248 8 +10047330 FUN_10047330 undefined FUN_10047330(void * param_1) 103 2 +100473a0 FUN_100473a0 undefined FUN_100473a0(undefined4 * param_1) 134 4 SysFreeString +10047430 FUN_10047430 undefined FUN_10047430(int param_1) 136 4 SysFreeString +100474c0 FUN_100474c0 undefined4 * FUN_100474c0(void * this, undefined4 * param_1, int * param_2) 97 1 +10047530 FUN_10047530 int * FUN_10047530(void * this, int * param_1, int * param_2) 104 1 +100475a0 FUN_100475a0 undefined4 * FUN_100475a0(void * this, undefined4 * param_1, int * param_2, char * param_3) 40 2 +100475d0 FUN_100475d0 int * FUN_100475d0(void * this, int * param_1) 104 1 +10047640 FUN_10047640 undefined4 * FUN_10047640(void * this, undefined4 * param_1) 95 1 +100476a0 FUN_100476a0 undefined FUN_100476a0(void * param_1) 103 2 +10047710 FUN_10047710 int FUN_10047710(void * this, undefined4 param_1, wchar_t * param_2, wchar_t * param_3, int param_4, undefined4 param_5, undefined4 param_6) 432 11 +100478c0 FUN_100478c0 int FUN_100478c0(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, uint param_5, int param_6) 499 11 +10047ac0 FUN_10047ac0 int FUN_10047ac0(void * this, undefined4 param_1, uint param_2, undefined4 param_3, int param_4) 550 14 +10047cf0 FUN_10047cf0 int FUN_10047cf0(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5, int param_6) 425 11 +10047ea0 FUN_10047ea0 int FUN_10047ea0(int param_1) 175 3 +10047f50 FUN_10047f50 int * FUN_10047f50(void * this, int * param_1) 125 2 +10047fd0 FUN_10047fd0 undefined FUN_10047fd0(undefined4 * param_1) 134 4 SysFreeString +10048060 FUN_10048060 undefined FUN_10048060(int param_1) 136 4 SysFreeString +100480f0 FUN_100480f0 undefined4 * FUN_100480f0(void * this, byte param_1) 153 4 SysFreeString +10048190 FUN_10048190 void * FUN_10048190(void * this, byte param_1) 155 4 SysFreeString +10048230 FUN_10048230 undefined FUN_10048230(int * param_1, int * param_2) 115 1 +100482b0 FUN_100482b0 undefined FUN_100482b0(undefined4 * param_1, undefined4 * param_2) 107 1 +10048320 FUN_10048320 undefined FUN_10048320(undefined4 * param_1) 131 4 SysFreeString +100483b0 FUN_100483b0 undefined FUN_100483b0(int param_1) 133 4 SysFreeString +10048440 FUN_10048440 undefined FUN_10048440(undefined4 param_1, int * param_2, int * param_3) 113 1 +100484c0 FUN_100484c0 undefined FUN_100484c0(undefined4 param_1, undefined4 * param_2, undefined4 * param_3) 105 1 +10048530 FUN_10048530 undefined FUN_10048530(undefined4 * param_1) 136 7 SysAllocStringByteLen +100485c0 FUN_100485c0 undefined4 * FUN_100485c0(void * this, OLECHAR * param_1) 56 2 SysAllocString +10048600 FUN_10048600 undefined4 * FUN_10048600(void * this, undefined4 * param_1) 23 1 +10048620 FUN_10048620 undefined FUN_10048620(void * this, GUID * param_1) 100 4 SysAllocString +10048690 FUN_10048690 HRESULT FUN_10048690(void * this, GUID * param_1, BSTR param_2) 1115 14 CoCreateInstance;SysFreeString +10048af0 FUN_10048af0 HRESULT FUN_10048af0(void * this, int param_1, GUID * param_2) 671 17 SysFreeString +10048d90 FUN_10048d90 undefined FUN_10048d90(undefined4 * param_1) 133 4 SysFreeString +10048e20 FUN_10048e20 undefined FUN_10048e20(int param_1) 135 4 SysFreeString +10048eb0 FUN_10048eb0 undefined4 * FUN_10048eb0(void * this, int * param_1) 190 4 +10048f3f Catch@10048f3f undefined Catch@10048f3f(void) 21 2 +10048f90 FUN_10048f90 undefined4 * FUN_10048f90(void * this, char * param_1) 190 4 +1004901f Catch@1004901f undefined Catch@1004901f(void) 21 2 +10049070 FUN_10049070 BSTR FUN_10049070(int param_1) 2164 23 SysFreeString +100498f0 FUN_100498f0 undefined FUN_100498f0(undefined4 param_1, undefined4 * param_2) 131 4 SysFreeString +10049980 FUN_10049980 undefined FUN_10049980(undefined4 param_1, int param_2) 133 4 SysFreeString +10049a10 FUN_10049a10 undefined FUN_10049a10(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 557 3 +10049c40 FUN_10049c40 undefined FUN_10049c40(void * this, undefined4 * param_1, char param_2, undefined4 * param_3, int * param_4) 557 3 +10049e70 FUN_10049e70 undefined FUN_10049e70(void * this, undefined4 * param_1, int * param_2) 611 8 +1004a0e0 FUN_1004a0e0 undefined FUN_1004a0e0(void * this, undefined4 * param_1, int * param_2) 611 8 +1004a350 FUN_1004a350 undefined FUN_1004a350(void * this, int * param_1) 69 3 +1004a3a0 FUN_1004a3a0 undefined FUN_1004a3a0(void * this, int * param_1) 69 3 +1004a3f0 FUN_1004a3f0 undefined FUN_1004a3f0(void * this, undefined4 * param_1, int * param_2, undefined4 * param_3) 455 7 +1004a5c0 FUN_1004a5c0 undefined FUN_1004a5c0(void * this, undefined4 * param_1, int * param_2, char param_3) 226 4 +1004a6b0 FUN_1004a6b0 undefined FUN_1004a6b0(void) 1576 27 +1004ace0 FUN_1004ace0 undefined FUN_1004ace0(void * param_1) 43 1 +1004ad10 FUN_1004ad10 undefined FUN_1004ad10(void * param_1) 43 1 +1004ad40 FUN_1004ad40 undefined4 * FUN_1004ad40(void * this, undefined4 * param_1, int * param_2, int * param_3) 413 5 +1004aee0 FUN_1004aee0 undefined4 * FUN_1004aee0(void * this, undefined4 * param_1, int * param_2, int * param_3) 339 4 +1004b040 FUN_1004b040 undefined4 FUN_1004b040(int param_1) 265 8 +1004b14f Catch@1004b14f undefined * Catch@1004b14f(void) 161 4 +1004b1f5 Catch@1004b1f5 undefined4 Catch@1004b1f5(void) 88 4 +1004b250 FUN_1004b250 undefined4 FUN_1004b250(void * this, undefined4 param_1, undefined4 param_2, undefined4 param_3, undefined4 param_4, undefined4 param_5) 374 11 +1004b3c6 Catch@1004b3c6 undefined1 * Catch@1004b3c6(void) 94 4 +1004b43b Catch@1004b43b undefined * Catch@1004b43b(void) 22 0 +1004b453 Catch@1004b453 undefined * Catch@1004b453(void) 115 6 +1004b4cb Catch@1004b4cb undefined1 * Catch@1004b4cb(void) 73 3 +1004b520 FUN_1004b520 int FUN_1004b520(int param_1) 469 17 SysAllocString +1004b6f8 Catch@1004b6f8 undefined * Catch@1004b6f8(void) 95 5 +1004b75c Catch@1004b75c undefined * Catch@1004b75c(void) 53 3 +1004b796 Catch@1004b796 undefined * Catch@1004b796(void) 119 6 +1004b812 Catch@1004b812 undefined4 Catch@1004b812(void) 72 3 +1004b860 FUN_1004b860 undefined FUN_1004b860(LPCRITICAL_SECTION param_1) 1450 30 SysAllocString;SysFreeString;memcpy +1004be0a Catch@1004be0a undefined * Catch@1004be0a(void) 96 5 +1004be6f Catch@1004be6f undefined * Catch@1004be6f(void) 65 3 +1004beb5 Catch@1004beb5 undefined * Catch@1004beb5(void) 129 6 +1004bf3b Catch@1004bf3b undefined4 Catch@1004bf3b(void) 78 3 +1004bf90 FUN_1004bf90 undefined FUN_1004bf90(void * this, undefined4 * param_1, int * param_2, int * param_3) 187 2 +1004c050 FUN_1004c050 undefined FUN_1004c050(void * this, undefined4 * param_1, int * param_2, int * param_3) 187 2 +1004c110 FUN_1004c110 undefined4 * FUN_1004c110(void * this, undefined4 * param_1, int * param_2, int * param_3) 40 2 +1004c140 FUN_1004c140 undefined4 * FUN_1004c140(void * this, undefined4 * param_1, int * param_2, char * param_3) 40 2 +1004c170 FUN_1004c170 undefined FUN_1004c170(LPCRITICAL_SECTION param_1) 788 11 +1004c490 FUN_1004c490 undefined FUN_1004c490(int param_1) 803 11 +1004c7c0 FUN_1004c7c0 undefined FUN_1004c7c0(LPVOID param_1) 452 8 +1004c990 FUN_1004c990 int * FUN_1004c990(void * this, undefined4 * param_1) 254 9 SysFreeString +1004ca90 FUN_1004ca90 int * FUN_1004ca90(void * this, int * param_1) 204 2 +1004cb60 FUN_1004cb60 undefined FUN_1004cb60(void * param_1) 24 1 +1004cb80 FUN_1004cb80 undefined FUN_1004cb80(void * param_1) 24 1 +1004cba0 FUN_1004cba0 int FUN_1004cba0(void * this, OLECHAR * param_1) 246 10 SysFreeString +1004cca0 FUN_1004cca0 undefined FUN_1004cca0(void * param_1) 103 2 +1004cd10 FUN_1004cd10 undefined FUN_1004cd10(void * param_1) 103 2 +1004cd80 FUN_1004cd80 undefined FUN_1004cd80(void * param_1) 103 2 +1004cdf0 FUN_1004cdf0 undefined FUN_1004cdf0(void * param_1) 103 2 +1004ce60 FUN_1004ce60 undefined FUN_1004ce60(undefined4 * param_1) 268 7 +1004cf6c Catch@1004cf6c undefined * Catch@1004cf6c(void) 161 4 +1004d010 FUN_1004d010 undefined FUN_1004d010(void) 325 6 +1004d155 Catch@1004d155 undefined * Catch@1004d155(void) 88 4 +1004d1b0 FUN_1004d1b0 int FUN_1004d1b0(void * this, wchar_t * param_1, int * param_2) 811 25 SysAllocString;SysFreeString +1004d4e0 FUN_1004d4e0 int FUN_1004d4e0(int param_1) 175 3 +1004d590 FUN_1004d590 int FUN_1004d590(int param_1) 175 3 +1004d640 FUN_1004d640 undefined4 * FUN_1004d640(undefined4 * param_1) 822 8 +1004d980 FUN_1004d980 int FUN_1004d980(LPCWSTR param_1) 83 1 +1004d9e0 FUN_1004d9e0 undefined4 FUN_1004d9e0(int * param_1, int * param_2) 50 0 +1004da30 FUN_1004da30 undefined4 * FUN_1004da30(undefined4 * param_1) 99 1 +1004dab0 FUN_1004dab0 undefined FUN_1004dab0(undefined4 * param_1) 109 2 +1004db20 FUN_1004db20 undefined4 * FUN_1004db20(void * this, byte param_1) 128 3 +1004dba0 FUN_1004dba0 undefined FUN_1004dba0(int param_1) 65 1 +1004dbf0 FUN_1004dbf0 undefined4 * FUN_1004dbf0(void * this, undefined4 param_1) 92 1 +1004dc60 FUN_1004dc60 int FUN_1004dc60(int * param_1) 14 0 +1004dc70 FUN_1004dc70 int FUN_1004dc70(int * param_1) 14 0 +1004dc80 FUN_1004dc80 undefined FUN_1004dc80(int param_1) 67 2 +1004dcd0 FUN_1004dcd0 undefined4 FUN_1004dcd0(int param_1) 4 0 +1004dd10 FUN_1004dd10 int FUN_1004dd10(LPCWSTR param_1) 83 1 +1004dd70 FUN_1004dd70 undefined4 FUN_1004dd70(void * this, int * param_1, undefined4 param_2, undefined4 * param_3) 127 0 +1004ddf0 FUN_1004ddf0 undefined FUN_1004ddf0(int param_1) 154 2 +1004dec0 FUN_1004dec0 undefined FUN_1004dec0(void) 10 0 +1004def0 FUN_1004def0 undefined FUN_1004def0(void * this, undefined4 param_1, undefined4 param_2) 24 0 +1004df80 FUN_1004df80 undefined FUN_1004df80(undefined4 * param_1) 7 0 +1004df90 FUN_1004df90 undefined4 FUN_1004df90(int * param_1) 50 0 +1004dfd0 FUN_1004dfd0 undefined4 FUN_1004dfd0(int param_1, int param_2, int * param_3, undefined4 * param_4) 84 0 +1004e030 FUN_1004e030 undefined4 FUN_1004e030(undefined4 param_1, int param_2) 39 0 +1004e060 FUN_1004e060 undefined FUN_1004e060(void * this, undefined4 param_1) 13 0 +1004e070 FUN_1004e070 undefined4 * FUN_1004e070(void * this, byte param_1) 34 1 +1004e0a0 FUN_1004e0a0 undefined FUN_1004e0a0(int * param_1) 15 0 +1004e100 FUN_1004e100 undefined4 FUN_1004e100(undefined4 * param_1) 20 1 +1004e120 FUN_1004e120 undefined FUN_1004e120(undefined4 * param_1) 18 1 +1004e160 FUN_1004e160 undefined FUN_1004e160(void * this, undefined4 param_1, undefined4 param_2) 27 1 AtlInternalQueryInterface +1004e180 DllCanUnloadNow HRESULT DllCanUnloadNow(void) 12 0 +1004e190 FUN_1004e190 int FUN_1004e190(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 151 3 +1004e227 Catch@1004e227 undefined * Catch@1004e227(void) 13 0 +1004e23d FUN_1004e23d int FUN_1004e23d(void) 80 1 +1004e2a0 FUN_1004e2a0 undefined4 FUN_1004e2a0(int param_1) 16 0 +1004e2b0 FUN_1004e2b0 int FUN_1004e2b0(int * param_1) 35 0 +1004e2e0 FUN_1004e2e0 undefined FUN_1004e2e0(undefined4 param_1, undefined4 param_2, undefined4 param_3) 30 1 AtlInternalQueryInterface +1004e300 FUN_1004e300 undefined4 * FUN_1004e300(void * this, undefined4 param_1) 137 1 +1004e3c0 FUN_1004e3c0 undefined4 FUN_1004e3c0(int param_1) 16 0 +1004e3d0 FUN_1004e3d0 int FUN_1004e3d0(int * param_1) 35 0 +1004e400 FUN_1004e400 undefined4 FUN_1004e400(int * param_1, int * param_2, undefined4 * param_3) 105 1 AtlInternalQueryInterface +1004e470 FUN_1004e470 undefined FUN_1004e470(int param_1) 21 0 +1004e490 FUN_1004e490 undefined FUN_1004e490(int param_1) 21 0 +1004e4b0 FUN_1004e4b0 undefined FUN_1004e4b0(int param_1, undefined4 param_2, undefined4 param_3) 28 0 +1004e4e0 FUN_1004e4e0 int FUN_1004e4e0(int param_1) 106 2 +1004e550 FUN_1004e550 undefined FUN_1004e550(int param_1) 67 2 +1004e5a0 FUN_1004e5a0 undefined FUN_1004e5a0(int * param_1) 74 0 +1004e5f0 FUN_1004e5f0 undefined FUN_1004e5f0(int param_1) 126 2 +1004e670 FUN_1004e670 undefined FUN_1004e670(undefined4 * param_1) 68 0 +1004e6c0 FUN_1004e6c0 int FUN_1004e6c0(int param_1) 71 1 +1004e710 CComCritSecLock undefined CComCritSecLock(CComCritSecLock * this, CComCriticalSection * param_1, bool param_2) 39 1 +1004e740 FUN_1004e740 undefined FUN_1004e740(undefined4 * param_1) 24 1 +1004e760 FUN_1004e760 int * FUN_1004e760(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 164 3 +1004e804 Catch@1004e804 undefined * Catch@1004e804(void) 13 0 +1004e819 FUN_1004e819 int * FUN_1004e819(void) 72 1 +1004e880 FUN_1004e880 undefined FUN_1004e880(undefined4 * param_1) 117 2 +1004e900 FUN_1004e900 undefined4 * FUN_1004e900(void * this, byte param_1) 139 3 +1004e990 FUN_1004e990 int FUN_1004e990(int * param_1, undefined4 param_2, undefined4 param_3, int * param_4) 201 2 +1004ea60 FUN_1004ea60 undefined4 * FUN_1004ea60(undefined4 * param_1) 90 1 +1004eac0 FUN_1004eac0 undefined FUN_1004eac0(void * param_1) 10 0 +1004ead0 FUN_1004ead0 undefined4 FUN_1004ead0(undefined4 param_1) 8 0 +1004eae0 FUN_1004eae0 undefined4 FUN_1004eae0(int param_1) 7 0 +1004eaf0 FUN_1004eaf0 undefined4 FUN_1004eaf0(int param_1) 7 0 +1004eb00 FUN_1004eb00 HRESULT FUN_1004eb00(void * this, undefined4 * param_1) 82 1 CoCreateInstance +1004eb60 FUN_1004eb60 undefined4 FUN_1004eb60(void) 8 0 +1004eb70 FUN_1004eb70 undefined4 FUN_1004eb70(void) 8 0 +1004eb90 FUN_1004eb90 undefined FUN_1004eb90(int * param_1) 36 1 +1004ebd0 FUN_1004ebd0 undefined FUN_1004ebd0(int * param_1) 28 0 +1004ebf0 FUN_1004ebf0 undefined FUN_1004ebf0(undefined4 * param_1) 132 2 +1004ec80 FUN_1004ec80 undefined4 * FUN_1004ec80(void * this, byte param_1) 151 3 +1004ed20 FUN_1004ed20 int FUN_1004ed20(void * this, int * param_1, undefined4 param_2, int * param_3) 300 3 +1004ee60 FUN_1004ee60 undefined4 FUN_1004ee60(HMODULE param_1, int param_2) 1999 7 +1004f630 DllGetClassObject HRESULT DllGetClassObject(IID * rclsid, IID * riid, LPVOID * ppv) 14 1 +1004f640 FUN_1004f640 undefined FUN_1004f640(int param_1, undefined4 param_2, undefined4 * param_3) 44 2 +1004f670 FUN_1004f670 undefined FUN_1004f670(undefined4 * param_1) 84 0 +1004f6e0 FUN_1004f6e0 undefined FUN_1004f6e0(undefined4 * param_1) 86 0 +1004f740 FUN_1004f740 int FUN_1004f740(int param_1) 38 0 +1004f770 FUN_1004f770 int FUN_1004f770(int * param_1) 60 0 +1004f7b0 FUN_1004f7b0 undefined4 * FUN_1004f7b0(void * this, byte param_1) 109 1 +1004f820 FUN_1004f820 undefined FUN_1004f820(void * this, undefined4 param_1, undefined4 param_2) 27 1 AtlInternalQueryInterface +1004f840 FUN_1004f840 undefined FUN_1004f840(undefined4 param_1, undefined4 param_2, undefined4 param_3) 30 1 AtlInternalQueryInterface +1004f860 FUN_1004f860 undefined FUN_1004f860(void * this, int param_1, byte * param_2) 21 1 +1004f880 FUN_1004f880 undefined FUN_1004f880(void * this, int param_1, byte * param_2) 21 1 +1004f8a0 FUN_1004f8a0 int FUN_1004f8a0(int * param_1, int param_2, undefined4 param_3, int * param_4) 113 1 +1004f920 FUN_1004f920 undefined FUN_1004f920(int * param_1, ushort param_2, undefined4 param_3, int * param_4) 29 1 +1004f940 FUN_1004f940 int FUN_1004f940(int * param_1, int param_2, undefined4 param_3, int * param_4) 113 1 +1004f9c0 FUN_1004f9c0 undefined FUN_1004f9c0(int * param_1, ushort param_2, undefined4 param_3, int * param_4) 29 1 +1004f9e0 FUN_1004f9e0 undefined FUN_1004f9e0(int param_1, byte * param_2) 51 1 +1004fa20 FUN_1004fa20 undefined FUN_1004fa20(int param_1, byte * param_2) 40 1 +1004fa50 FUN_1004fa50 undefined FUN_1004fa50(undefined4 param_1) 25 1 +1004fa70 FUN_1004fa70 int FUN_1004fa70(undefined4 param_1, undefined4 param_2, undefined4 * param_3) 147 3 +1004fb03 Catch@1004fb03 undefined * Catch@1004fb03(void) 13 0 +1004fb19 FUN_1004fb19 int FUN_1004fb19(void) 61 0 +1004fb60 FUN_1004fb60 int FUN_1004fb60(void * this, int param_1, byte * param_2) 154 3 +1004fc00 FUN_1004fc00 int FUN_1004fc00(void * this, int param_1, byte * param_2) 143 3 +1004fca0 DllRegisterServer undefined DllRegisterServer(void) 15 1 +1004fcb0 DllUnregisterServer undefined DllUnregisterServer(void) 15 1 +1004fcc0 FUN_1004fcc0 undefined FUN_1004fcc0(int param_1) 66 2 +1004fd30 FUN_1004fd30 undefined FUN_1004fd30(int param_1) 33 3 memset +1004fd60 FUN_1004fd60 undefined FUN_1004fd60(void * this, wchar_t * param_1) 153 4 +1004fe00 FUN_1004fe00 undefined FUN_1004fe00(void * this, uint * param_1) 105 4 memcpy +1004fe70 FUN_1004fe70 int FUN_1004fe70(LPCWSTR param_1) 83 1 +1004fec4 RaiseException void RaiseException(DWORD dwExceptionCode, DWORD dwExceptionFlags, DWORD nNumberOfArguments, ULONG_PTR * lpArguments) 6 0 +1004feca DeleteCriticalSection void DeleteCriticalSection(LPCRITICAL_SECTION lpCriticalSection) 6 0 +1004fed0 GetProcAddress FARPROC GetProcAddress(HMODULE hModule, LPCSTR lpProcName) 6 0 +1004fed6 GetModuleHandleW HMODULE GetModuleHandleW(LPCWSTR lpModuleName) 6 0 +1004fedc lstrlenW int lstrlenW(LPCWSTR lpString) 6 0 +1004fee2 GetLastError DWORD GetLastError(void) 6 0 +1004fee8 InterlockedIncrement LONG InterlockedIncrement(LONG * lpAddend) 6 0 +1004feee LocalFree HLOCAL LocalFree(HLOCAL hMem) 6 0 +1004fef4 FreeLibrary BOOL FreeLibrary(HMODULE hLibModule) 6 0 +1004fefa FindClose BOOL FindClose(HANDLE hFindFile) 6 0 +1004ff00 FindFirstFileW HANDLE FindFirstFileW(LPCWSTR lpFileName, LPWIN32_FIND_DATAW lpFindFileData) 6 0 +1004ff06 GetModuleFileNameW DWORD GetModuleFileNameW(HMODULE hModule, LPWSTR lpFilename, DWORD nSize) 6 0 +1004ff18 LoadLibraryExW HMODULE LoadLibraryExW(LPCWSTR lpLibFileName, HANDLE hFile, DWORD dwFlags) 6 0 +1004ff24 LocalAlloc HLOCAL LocalAlloc(UINT uFlags, SIZE_T uBytes) 6 0 +1004ff2a FormatMessageW DWORD FormatMessageW(DWORD dwFlags, LPCVOID lpSource, DWORD dwMessageId, DWORD dwLanguageId, LPWSTR lpBuffer, DWORD nSize, va_list * Arguments) 6 0 +1004ff36 MultiByteToWideChar int MultiByteToWideChar(UINT CodePage, DWORD dwFlags, LPCSTR lpMultiByteStr, int cbMultiByte, LPWSTR lpWideCharStr, int cchWideChar) 6 0 +1004ff3c lstrlenA int lstrlenA(LPCSTR lpString) 6 0 +1004ff5a InterlockedDecrement LONG InterlockedDecrement(LONG * lpAddend) 6 0 +1004ffba Sleep void Sleep(DWORD dwMilliseconds) 6 0 +1004ffc6 CharNextW LPWSTR CharNextW(LPCWSTR lpsz) 6 0 +1004ffcc UnregisterClassW BOOL UnregisterClassW(LPCWSTR lpClassName, HINSTANCE hInstance) 6 0 +1004ffd8 RegOpenKeyExW LSTATUS RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult) 6 0 +1004ffde RegCloseKey LSTATUS RegCloseKey(HKEY hKey) 6 0 +1004ffe4 RegQueryValueExW LSTATUS RegQueryValueExW(HKEY hKey, LPCWSTR lpValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData) 6 0 +1004fff0 CoTaskMemAlloc LPVOID CoTaskMemAlloc(SIZE_T cb) 6 0 +10050016 SysStringLen UINT SysStringLen(BSTR param_1) 6 0 +1005001c SysFreeString void SysFreeString(BSTR bstrString) 6 0 +10050022 SysAllocString BSTR SysAllocString(OLECHAR * psz) 6 0 +10050064 VarBstrCat HRESULT VarBstrCat(BSTR bstrLeft, BSTR bstrRight, LPBSTR pbstrResult) 6 0 +1005006a SysAllocStringByteLen BSTR SysAllocStringByteLen(LPCSTR psz, UINT len) 6 0 +10050070 SysStringByteLen UINT SysStringByteLen(BSTR bstr) 6 0 +10050088 SetErrorInfo HRESULT SetErrorInfo(ULONG dwReserved, IErrorInfo * perrinfo) 6 0 +1005008e GetErrorInfo HRESULT GetErrorInfo(ULONG dwReserved, IErrorInfo * * pperrinfo) 6 0 +10050094 AtlGetPerUserRegistration undefined AtlGetPerUserRegistration(void) 6 0 +1005009a AtlLoadTypeLib undefined AtlLoadTypeLib(void) 6 0 +100500a0 AtlRegisterClassCategoriesHelper undefined AtlRegisterClassCategoriesHelper(void) 6 0 +100500c4 FUN_100500c4 undefined FUN_100500c4(int * param_1) 68 1 +10050108 FUN_10050108 int FUN_10050108(int param_1) 25 1 memset +10050122 FUN_10050122 undefined4 * FUN_10050122(undefined4 * param_1) 65 2 +10050179 FUN_10050179 undefined FUN_10050179(void * this, undefined4 * param_1) 18 0 +1005018b FUN_1005018b undefined4 FUN_1005018b(undefined4 param_1, undefined4 param_2) 10 0 +10050195 FUN_10050195 undefined FUN_10050195(undefined4 * param_1) 31 1 +100501b4 memmove_s void memmove_s(void * param_1, uint param_2, void * param_3, uint param_4) 33 2 memmove_s +100501d5 RemoveAt int RemoveAt(CSimpleArray_> * this, int param_1) 72 1 memmove_s +1005021d FUN_1005021d int FUN_1005021d(void * this, int param_1) 44 1 +10050249 FUN_10050249 undefined FUN_10050249(void * this, int param_1, undefined4 * param_2) 28 0 +1005026a FUN_1005026a int FUN_1005026a(int param_1) 37 1 memset +10050297 FUN_10050297 undefined FUN_10050297(int param_1) 24 2 +100502af RemoveResourceInstance bool RemoveResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 105 4 +10050318 GetHInstanceAt HINSTANCE__ * GetHInstanceAt(CAtlBaseModule * this, int param_1) 93 3 +10050375 Add int Add(CSimpleArray_> * this, HINSTANCE__ * * param_1) 124 2 +100503f1 FUN_100503f1 undefined4 * FUN_100503f1(undefined4 * param_1) 64 2 +10050431 AddResourceInstance bool AddResourceInstance(CAtlBaseModule * this, HINSTANCE__ * param_1) 53 3 +10050480 FUN_10050480 undefined FUN_10050480(undefined * param_1) 17 0 +100504a0 com_issue_error int com_issue_error(undefined4 param_1) 6 0 +100504c0 _com_issue_errorex void _com_issue_errorex(long param_1, IUnknown * param_2, _GUID * param_3) 117 2 +10050540 _com_dispatch_method long _com_dispatch_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 71 2 +10050590 _com_dispatch_propget long _com_dispatch_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +100505c0 _com_dispatch_propput long _com_dispatch_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 99 2 +10050630 FUN_10050630 undefined FUN_10050630(undefined4 param_1, undefined4 param_2) 48 1 +10050670 FUN_10050670 uint FUN_10050670(uint param_1) 26 0 +10050690 _com_invoke_helper long _com_invoke_helper(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, char * param_7, IErrorInfo * * param_8) 1166 8 VariantChangeType;VariantClear;VariantInit;memset +10050c60 _com_dispatch_raw_method long _com_dispatch_raw_method(IDispatch * param_1, long param_2, ushort param_3, ushort param_4, void * param_5, ushort * param_6, ...) 72 2 +10050cb0 _com_dispatch_raw_propget long _com_dispatch_raw_propget(IDispatch * param_1, long param_2, ushort param_3, void * param_4) 37 1 +10050ce0 _com_dispatch_raw_propput long _com_dispatch_raw_propput(IDispatch * param_1, long param_2, ushort param_3, ...) 100 2 +10050d50 FUN_10050d50 int FUN_10050d50(ushort param_1) 40 0 +10050d80 _com_handle_excepinfo long _com_handle_excepinfo(tagEXCEPINFO * param_1, IErrorInfo * * param_2) 260 2 SysFreeString +10050e84 _Lock void _Lock(basic_streambuf_> * this) 6 0 +10050e8a _Unlock void _Unlock(basic_streambuf_> * this) 6 0 +10050e90 showmanyc __int64 showmanyc(basic_streambuf_> * this) 6 0 +10050e96 uflow ushort uflow(basic_streambuf_> * this) 6 0 +10050e9c xsgetn __int64 xsgetn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10050ea2 xsputn __int64 xsputn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10050ea8 setbuf basic_streambuf_> * setbuf(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10050eae sync int sync(basic_streambuf_> * this) 6 0 +10050eb4 imbue void imbue(basic_streambuf_> * this, locale * param_1) 6 0 +10050ec0 std._Xlength_error void std._Xlength_error(char * param_1) 6 0 +10050ec6 std._Container_base0._Orphan_all void std._Container_base0._Orphan_all(_Container_base0 * this) 6 0 +10050ecc std.ios_base.setf int std.ios_base.setf(ios_base * this, int param_1, int param_2) 6 0 +10050ed2 std._Xout_of_range void std._Xout_of_range(char * param_1) 6 0 +10050ed8 std.basic_streambuf_>.setp void std.basic_streambuf_>.setp(basic_streambuf_> * this, wchar_t * param_1, wchar_t * param_2) 6 0 +10050ede std.basic_streambuf_>.setg void std.basic_streambuf_>.setg(basic_streambuf_> * this, wchar_t * param_1, wchar_t * param_2, wchar_t * param_3) 6 0 +10050ee4 std.basic_streambuf_>.eback wchar_t * std.basic_streambuf_>.eback(basic_streambuf_> * this) 6 0 +10050eea std.basic_streambuf_>.egptr wchar_t * std.basic_streambuf_>.egptr(basic_streambuf_> * this) 6 0 +10050ef0 std.basic_streambuf_>.epptr wchar_t * std.basic_streambuf_>.epptr(basic_streambuf_> * this) 6 0 +10050ef6 std.basic_streambuf_>.pptr wchar_t * std.basic_streambuf_>.pptr(basic_streambuf_> * this) 6 0 +10050efc std.basic_ios_>.rdbuf basic_streambuf_> * std.basic_ios_>.rdbuf(basic_ios_> * this) 6 0 +10050f02 std.basic_streambuf_>.{dtor} void std.basic_streambuf_>.{dtor}(basic_streambuf_> * this) 6 0 +10050f08 std.basic_streambuf_>.gptr wchar_t * std.basic_streambuf_>.gptr(basic_streambuf_> * this) 6 0 +10050f0e std.basic_streambuf_>.gbump void std.basic_streambuf_>.gbump(basic_streambuf_> * this, int param_1) 6 0 +10050f14 std.basic_streambuf_>.pbump void std.basic_streambuf_>.pbump(basic_streambuf_> * this, int param_1) 6 0 +10050f1a std.basic_streambuf_>.setp void std.basic_streambuf_>.setp(basic_streambuf_> * this, wchar_t * param_1, wchar_t * param_2, wchar_t * param_3) 6 0 +10050f20 std.basic_streambuf_>.pbase wchar_t * std.basic_streambuf_>.pbase(basic_streambuf_> * this) 6 0 +10050f26 std.basic_ostream_>.flush basic_ostream_> * std.basic_ostream_>.flush(basic_ostream_> * this) 6 0 +10050f2c std.basic_ios_>.tie basic_ostream_> * std.basic_ios_>.tie(basic_ios_> * this) 6 0 +10050f32 std.ios_base.good bool std.ios_base.good(ios_base * this) 6 0 +10050f38 std.basic_ostream_>._Osfx void std.basic_ostream_>._Osfx(basic_ostream_> * this) 6 0 +10050f3e std.uncaught_exception bool std.uncaught_exception(void) 6 0 +10050f44 std.basic_ios_>.setstate void std.basic_ios_>.setstate(basic_ios_> * this, int param_1, bool param_2) 6 0 +10050f4a std.ios_base.width __int64 std.ios_base.width(ios_base * this, __int64 param_1) 6 0 +10050f50 std.basic_streambuf_>.sputn __int64 std.basic_streambuf_>.sputn(basic_streambuf_> * this, wchar_t * param_1, __int64 param_2) 6 0 +10050f56 std.basic_streambuf_>.sputc ushort std.basic_streambuf_>.sputc(basic_streambuf_> * this, wchar_t param_1) 6 0 +10050f5c std.basic_ios_>.fill wchar_t std.basic_ios_>.fill(basic_ios_> * this) 6 0 +10050f62 std.ios_base.flags int std.ios_base.flags(ios_base * this) 6 0 +10050f68 std.ios_base.width __int64 std.ios_base.width(ios_base * this) 6 0 +10050f6e std.basic_iostream_>.{dtor} void std.basic_iostream_>.{dtor}(basic_iostream_> * this) 6 0 +10050f74 std.basic_streambuf_>._Pninc wchar_t * std.basic_streambuf_>._Pninc(basic_streambuf_> * this) 6 0 +10050f7a std.basic_streambuf_>.{ctor} undefined std.basic_streambuf_>.{ctor}(basic_streambuf_> * this) 6 0 +10050f80 std.basic_ios_>.{dtor} void std.basic_ios_>.{dtor}(basic_ios_> * this) 6 0 +10050f86 std.basic_iostream_>.{ctor} undefined std.basic_iostream_>.{ctor}(basic_iostream_> * this, basic_streambuf_> * param_1) 6 0 +10050f8c std.basic_ios_>.{ctor} undefined std.basic_ios_>.{ctor}(basic_ios_> * this) 6 0 +10050f92 std.basic_ostream_>.<< basic_ostream_> * std.basic_ostream_>.<<(basic_ostream_> * this, _func_basic_ostream_>_ptr_basic_ostream_>_ptr * param_1) 6 0 +10050f98 std.basic_ostream_>.<< basic_ostream_> * std.basic_ostream_>.<<(basic_ostream_> * this, long param_1) 6 0 +10050f9e std.basic_ostream_>.<< basic_ostream_> * std.basic_ostream_>.<<(basic_ostream_> * this, _func_ios_base_ptr_ios_base_ptr * param_1) 6 0 +10050fa4 FUN_10050fa4 undefined FUN_10050fa4(uint param_1) 11 1 +10050fc1 FID_conflict:`vector_deleting_destructor' type_info * FID_conflict:`vector_deleting_destructor'(void * this, byte param_1) 76 3 +10051012 what char * what(exception * this) 6 0 +10051018 std.exception.{ctor} undefined std.exception.{ctor}(exception * this, exception * param_1) 6 0 +1005101e _vsnwprintf_s int _vsnwprintf_s(wchar_t * _DstBuf, size_t _SizeInWords, size_t _MaxCount, wchar_t * _Format, va_list _ArgList) 6 0 +10051024 __security_check_cookie undefined __security_check_cookie(int param_1) 15 1 +10051040 __alloca_probe undefined __alloca_probe(void) 43 0 +1005106c delete void delete(void * param_1) 6 0 +10051078 _CxxThrowException void _CxxThrowException(void * pExceptionObject, ThrowInfo * pThrowInfo) 6 0 +1005107e wcsncpy_s errno_t wcsncpy_s(wchar_t * _Dst, rsize_t _SizeInWords, wchar_t * _Src, rsize_t _MaxCount) 6 0 +10051084 std.exception.{dtor} void std.exception.{dtor}(exception * this) 6 0 +1005108a std.exception.{ctor} undefined std.exception.{ctor}(exception * this, char * * param_1) 6 0 +10051090 free void free(void * _Memory) 6 0 +10051096 new void * new(uint param_1) 6 0 +1005109c delete[] void delete[](void * param_1) 6 0 +100510b4 __ArrayUnwind void __ArrayUnwind(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 50 2 +10051112 `eh_vector_destructor_iterator' void `eh_vector_destructor_iterator'(void * param_1, uint param_2, int param_3, _func_void_void_ptr * param_4) 75 3 +1005115d FUN_1005115d undefined FUN_1005115d(void) 24 1 +10051186 memcpy void * memcpy(void * _Dst, void * _Src, size_t _Size) 6 0 +1005118c memmove void * memmove(void * _Dst, void * _Src, size_t _Size) 6 0 +10051198 memset void * memset(void * _Dst, int _Val, size_t _Size) 6 0 +1005119e wcscat_s errno_t wcscat_s(wchar_t * _Dst, rsize_t _SizeInWords, wchar_t * _Src) 6 0 +100511a4 _wsplitpath_s errno_t _wsplitpath_s(wchar_t * _FullPath, wchar_t * _Drive, size_t _DriveSize, wchar_t * _Dir, size_t _DirSize, wchar_t * _Filename, size_t _FilenameSize, wchar_t * _Ext, size_t _ExtSize) 6 0 +100511b0 _splitpath_s errno_t _splitpath_s(char * _FullPath, char * _Drive, size_t _DriveSize, char * _Dir, size_t _DirSize, char * _Filename, size_t _FilenameSize, char * _Ext, size_t _ExtSize) 6 0 +100511b6 _makepath_s errno_t _makepath_s(char * _PathResult, size_t _SizeInWords, char * _Drive, char * _Dir, char * _Filename, char * _Ext) 6 0 +100511bc calloc void * calloc(size_t _Count, size_t _Size) 6 0 +100511c2 _recalloc void * _recalloc(void * _Memory, size_t _Count, size_t _Size) 6 0 +100511c8 swprintf_s int swprintf_s(wchar_t * _Dst, size_t _SizeInWords, wchar_t * _Format, ...) 6 0 +100511ce wcscpy_s errno_t wcscpy_s(wchar_t * _Dst, rsize_t _SizeInWords, wchar_t * _Src) 6 0 +100511d4 __onexit _onexit_t __onexit(_onexit_t param_1) 152 8 +1005126c FUN_1005126c undefined FUN_1005126c(void) 9 1 +10051275 _atexit int _atexit(_func_4879 * param_1) 23 1 +100512aa purecall undefined purecall(void) 6 0 +10051305 __CRT_INIT@12 undefined4 __CRT_INIT@12(int * param_1, int * param_2, int * param_3) 522 10 +1005150f ___DllMainCRTStartup int ___DllMainCRTStartup(int * param_1, int * param_2, HMODULE param_3) 240 5 +1005161a FUN_1005161a undefined FUN_1005161a(void) 11 0 +10051625 __DllMainCRTStartup@12 undefined __DllMainCRTStartup@12(HMODULE param_1, int * param_2, int * param_3) 35 2 +10051648 memmove_s errno_t memmove_s(void * _Dst, rsize_t _DstSize, void * _Src, rsize_t _MaxCount) 6 0 +10051680 __alloca_probe_16 uint __alloca_probe_16(void) 22 1 +10051696 __alloca_probe_8 uint __alloca_probe_8(void) 22 1 +100516ac ___report_gsfailure void ___report_gsfailure(void) 262 6 +100517b2 terminate void terminate(void) 6 0 +100517c0 __SEH_prolog4 undefined __SEH_prolog4(undefined4 param_1, int param_2) 69 0 +10051805 __SEH_epilog4 undefined __SEH_epilog4(void) 20 0 +1005181a _unlock void _unlock(int _File) 6 0 +10051820 __dllonexit undefined __dllonexit(void) 6 0 +10051826 _lock void _lock(int _File) 6 0 +10051890 __ValidateImageBase BOOL __ValidateImageBase(PBYTE pImageBase) 53 0 +100518d0 __FindPESection PIMAGE_SECTION_HEADER __FindPESection(PBYTE pImageBase, DWORD_PTR rva) 68 0 +10051920 __IsNonwritableInCurrentImage BOOL __IsNonwritableInCurrentImage(PBYTE pTarget) 166 2 +100519dc initterm undefined initterm(void) 6 0 +100519e2 initterm_e undefined initterm_e(void) 6 0 +100519e8 _amsg_exit void _amsg_exit(int param_1) 6 0 +100519f4 __security_init_cookie void __security_init_cookie(void) 6 0 +10051a90 except_handler4_common undefined except_handler4_common(void) 6 0 +10051a96 _type_info_dtor_internal_method void _type_info_dtor_internal_method(type_info * this) 6 0 +10051a9c _crt_debugger_hook void _crt_debugger_hook(int param_1) 6 0 +10051ab4 .NativeDll.IsInDllMain bool .NativeDll.IsInDllMain(char * param_1, byte * param_2) 16 0 +10051ad8 .NativeDll.IsInProcessAttach bool .NativeDll.IsInProcessAttach(char * param_1, byte * param_2) 12 0 +10051af8 .NativeDll.IsInProcessDetach bool .NativeDll.IsInProcessDetach(char * param_1, byte * param_2) 12 0 +10051b18 .NativeDll.IsInVcclrit bool .NativeDll.IsInVcclrit(int param_1, byte * param_2) 16 0 +10051b3c .NativeDll.IsSafeForManagedCode bool .NativeDll.IsSafeForManagedCode(int * param_1, int param_2) 73 0 +10051b8b getFiberPtrId void * getFiberPtrId(void) 6 0 +10051ba4 .ctor void .ctor(char * message, byte * param_2) 8 0 +10051bb8 .ctor void .ctor(byte * message, char * innerException) 9 0 +10051bd0 .ctor void .ctor(void) 9 0 +10051be8 .ctor void .ctor(char * message, byte * param_2) 8 0 +10051bfc .ctor void .ctor(byte * message, char * innerException) 9 0 +10051c14 .ctor void .ctor(void) 9 0 +10051c2c get_NestedException pointer get_NestedException(void) 7 0 +10051c40 set_NestedException void set_NestedException(undefined4 __set_formal, char * param_2) 8 0 +10051c54 ToString char * ToString(undefined4 param_1, char * param_2) 151 0 +10051cf8 GetObjectData void GetObjectData(uint * info, byte * context) 36 0 +10051d28 .ctor void .ctor(char * info, byte * context) 41 0 +10051d60 .ThrowModuleLoadException void .ThrowModuleLoadException(undefined4 errorMessage, undefined4 param_2, undefined4 param_3, byte * param_4, undefined4 param_5, char * param_6) 8 0 +10051d7c .ThrowModuleLoadException void .ThrowModuleLoadException(int errorMessage, byte * innerException, uint * param_3, undefined4 * param_4, int param_5, undefined4 param_6, undefined4 param_7, byte * param_8, undefined4 param_9, char * param_10) 9 0 +10051d98 AddHandler void AddHandler(undefined4 handler, byte * param_2, undefined4 param_3, byte * param_4, undefined4 param_5, char * param_6) 54 0 +10051df8 SingletonDomainUnload void SingletonDomainUnload(undefined4 source, byte * arguments) 97 0 +10051e9c .RegisterModuleUninitializer void .RegisterModuleUninitializer(undefined4 param_1, undefined2 param_2) 12 0 +10051ebc .FromGUID pointer .FromGUID(byte param_1, int param_2) 58 0 +10051f08 __get_default_appdomain int __get_default_appdomain(void) 89 0 +10051f94 __release_appdomain void __release_appdomain(undefined4 param_1, int * param_2) 13 0 +10051fb4 .GetDefaultDomain pointer .GetDefaultDomain(int * param_1, uint * param_2) 53 0 +1005201c .DoCallBackInDefaultDomain void .DoCallBackInDefaultDomain(void) 94 0 +100520ac .ctor void .ctor(undefined4 param_1, char * param_2) 7 0 +100520c0 .ctor void .ctor(void) 9 0 +100520d8 .DefaultDomain.DoNothing int .DefaultDomain.DoNothing(void) 17 0 +100520fc .DefaultDomain.HasPerProcess bool .DefaultDomain.HasPerProcess(int param_1, int param_2) 70 0 +10052154 .DefaultDomain.HasNative bool .DefaultDomain.HasNative(char * param_1, int param_2) 114 0 +100521d8 .DefaultDomain.NeedsInitialization bool .DefaultDomain.NeedsInitialization(byte param_1, undefined4 param_2) 46 0 +10052218 .DefaultDomain.NeedsUninitialization bool .DefaultDomain.NeedsUninitialization(void) 6 0 +10052230 .DefaultDomain.Initialize void .DefaultDomain.Initialize(void) 12 0 +10052250 .LanguageSupport.UninitializeAppDomain void .LanguageSupport.UninitializeAppDomain(undefined4 param_1, int * param_2) 6 0 +10052268 .LanguageSupport._UninitializeDefaultDomain int .LanguageSupport._UninitializeDefaultDomain(undefined4 cookie, int * param_2) 45 0 +100522a8 .LanguageSupport.UninitializeDefaultDomain void .LanguageSupport.UninitializeDefaultDomain(undefined4 param_1, int param_2) 40 0 +100522e4 .LanguageSupport.DomainUnload void .LanguageSupport.DomainUnload(undefined4 source, char param_2) 47 0 +10052328 gcroot.{ctor} pointer gcroot.{ctor}(char param_1, byte * param_2) 23 0 +10052354 gcroot.{dtor} void gcroot.{dtor}(undefined4 param_1, char * param_2) 27 0 +10052384 gcroot.= pointer gcroot.=(undefined4 gcroot0, char * t) 26 0 +100523b0 gcroot..P$AAVString@System@@ char * gcroot..P$AAVString@System@@(undefined4 param_1, char * param_2) 24 0 +100523dc .ctor void .ctor(char param_1, int innerException) 16 0 +100523f8 .ThrowNestedModuleLoadException void .ThrowNestedModuleLoadException(undefined4 param_1, undefined2 param_2) 14 0 +10052418 .ctor void .ctor(void) 42 0 +10052450 .LanguageSupport.InitializeVtables void .LanguageSupport.InitializeVtables(int param_1, int param_2) 40 0 +1005248c .LanguageSupport.InitializeDefaultAppDomain void .LanguageSupport.InitializeDefaultAppDomain(uint * param_1, int param_2) 18 0 +100524b0 .LanguageSupport.InitializeNative void .LanguageSupport.InitializeNative(uint * param_1, int param_2) 143 0 +10052554 .LanguageSupport.InitializePerProcess void .LanguageSupport.InitializePerProcess(int param_1, int param_2) 52 0 +1005259c .LanguageSupport.InitializePerAppDomain void .LanguageSupport.InitializePerAppDomain(undefined4 param_1, int param_2) 46 0 +100525dc .LanguageSupport.InitializeUninitializer void .LanguageSupport.InitializeUninitializer(undefined4 param_1, int param_2) 30 0 +1005260c .LanguageSupport._Initialize void .LanguageSupport._Initialize(undefined4 param_1, int param_2) 227 0 +10052738 .LanguageSupport.Cleanup void .LanguageSupport.Cleanup(char * LanguageSupport0, undefined4 innerException) 51 0 +100527b4 .LanguageSupport.{ctor} pointer .LanguageSupport.{ctor}(void) 9 0 +100527d8 .LanguageSupport.{dtor} void .LanguageSupport.{dtor}(void) 7 0 +100527f8 .LanguageSupport.Initialize void .LanguageSupport.Initialize(undefined4 param_1, byte * param_2) 99 0 +100528bc .cctor void .cctor(int param_1, int * param_2) 39 0 +10052914 .cctor void .cctor(byte * param_1, byte * param_2) 21 0 +10052938 ___CxxCallUnwindDtor void ___CxxCallUnwindDtor(undefined4 pDtor, int * pThis) 26 0 +10052984 ___CxxCallUnwindDelDtor void ___CxxCallUnwindDelDtor(undefined4 pDtor, int * pThis) 26 0 +100529d0 ___CxxCallUnwindVecDtor void ___CxxCallUnwindVecDtor(char * pVecDtor, char param_2) 30 0 +10052a20 ?A0xf01855ed.ArrayUnwindFilter int ?A0xf01855ed.ArrayUnwindFilter(undefined4 param_1, int param_2) 19 0 +10052a48 __ArrayUnwind void __ArrayUnwind(undefined4 param_1, char * size) 42 0 +10052aa4 __ehvec_dtor void __ehvec_dtor(undefined4 param_1, char * size) 50 0 +10052b08 .AtExitLock._handle pointer .AtExitLock._handle(char param_1, char * param_2) 33 0 +10052b3c .AtExitLock._lock_Set void .AtExitLock._lock_Set(undefined4 value, uint * param_2) 65 0 +10052b90 .AtExitLock._lock_Get pointer .AtExitLock._lock_Get(char param_1, char * param_2) 23 0 +10052bbc .AtExitLock._lock_Destruct void .AtExitLock._lock_Destruct(undefined4 param_1, undefined4 param_2) 27 0 +10052bec .AtExitLock.IsInitialized bool .AtExitLock.IsInitialized(byte param_1, int param_2) 14 0 +10052c0c .AtExitLock.RemoveRef void .AtExitLock.RemoveRef(void) 25 0 +10052c38 .AtExitLock.Enter void .AtExitLock.Enter(void) 11 0 +10052c58 .AtExitLock.Exit void .AtExitLock.Exit(void) 11 0 +10052c78 ?A0xe11594df.__global_lock bool ?A0xe11594df.__global_lock(undefined4 param_1, int * param_2) 18 0 +10052c9c ?A0xe11594df.__global_unlock bool ?A0xe11594df.__global_unlock(undefined4 param_1, int * param_2) 18 0 +10052cc0 ?A0xe11594df.__dealloc_global_lock void ?A0xe11594df.__dealloc_global_lock(int param_1, int * param_2) 6 0 +10052cd8 _atexit_helper int _atexit_helper(int func, int * __pexit_list_size) 292 0 +10052e5c _exit_callback void _exit_callback(int param_1, int param_2) 149 0 +10052f04 _atexit_m int _atexit_m(void) 27 0 +10052f34 _app_exit_callback void _app_exit_callback(uint * param_1, int param_2) 171 0 +10053010 _atexit_m_appdomain int _atexit_m_appdomain(void) 27 0 +10053040 .AtExitLock._lock_Construct void .AtExitLock._lock_Construct(undefined4 param_1, byte * param_2) 13 0 +10053060 .AtExitLock.AddRef void .AtExitLock.AddRef(undefined4 param_1, uint * param_2) 36 0 +10053098 ?A0xe11594df.__alloc_global_lock bool ?A0xe11594df.__alloc_global_lock(void) 11 0 +100530b8 _initatexit_m int _initatexit_m(int * param_1, char * param_2) 57 0 +10053104 _onexit_m pointer _onexit_m(undefined4 _Function, byte * param_2) 14 0 +10053124 _initatexit_app_domain int _initatexit_app_domain(int * param_1, char * param_2) 55 0 +10053170 _onexit_m_appdomain pointer _onexit_m_appdomain(undefined4 _Function, byte * param_2) 14 0 +10053190 _initterm_e int _initterm_e(int pfbegin, byte * pfend) 33 0 +100531c4 _initterm void _initterm(undefined4 pfbegin, uint * pfend) 26 0 +100531f0 .ThisModule.Handle pointer .ThisModule.Handle(undefined4 param_1, char * param_2) 21 0 +10053218 .ThisModule.ResolveMethod pointer .ThisModule.ResolveMethod(undefined4 methodToken, char * param_2) 31 0 +1005324c _initterm_m void _initterm_m(undefined4 param_1, byte * pfend) 32 0 +100532c0 VariantInit void VariantInit(VARIANTARG * pvarg) 6 0 +100532cc VariantCopy HRESULT VariantCopy(VARIANTARG * pvargDest, VARIANTARG * pvargSrc) 6 0 +100532d2 std.locale.facet._Incref void std.locale.facet._Incref(facet * this) 6 0 +100532d8 __ExceptionPtrCopy void __ExceptionPtrCopy(void * param_1, void * param_2) 6 0 +100532de __CxxUnregisterExceptionObject void __CxxUnregisterExceptionObject(void * storage, int rethrow) 6 0 +100532e4 __CxxDetectRethrow int __CxxDetectRethrow(void * exception) 6 0 +100532ea __CxxRegisterExceptionObject int __CxxRegisterExceptionObject(void * exception, void * storage) 6 0 +100532f0 __CxxExceptionFilter int __CxxExceptionFilter(void * param_1, void * param_2, int param_3, void * param_4) 6 0 +100532f6 __CxxQueryExceptionSize int __CxxQueryExceptionSize(void) 6 0 +100532fc _cexit void _cexit(void) 6 0 +10053302 __FrameUnwindFilter undefined __FrameUnwindFilter(void) 6 0 +10053308 entry undefined entry(void) 6 0 +10053310 Unwind@10053310 undefined Unwind@10053310(void) 8 1 +10053340 Unwind@10053340 undefined Unwind@10053340(void) 8 1 +10053370 Unwind@10053370 undefined Unwind@10053370(void) 9 0 +100533a0 Unwind@100533a0 undefined Unwind@100533a0(void) 9 0 +100533d0 Unwind@100533d0 undefined Unwind@100533d0(void) 9 0 +10053400 Unwind@10053400 undefined Unwind@10053400(void) 8 1 +10053430 Unwind@10053430 undefined Unwind@10053430(void) 8 1 +10053460 Unwind@10053460 undefined Unwind@10053460(void) 8 1 +10053490 Unwind@10053490 undefined Unwind@10053490(void) 8 1 +100534c0 Unwind@100534c0 undefined Unwind@100534c0(void) 8 1 +100534f0 Unwind@100534f0 undefined Unwind@100534f0(void) 8 1 +10053520 Unwind@10053520 undefined Unwind@10053520(void) 8 1 +10053550 Unwind@10053550 undefined Unwind@10053550(void) 8 1 +10053580 Unwind@10053580 undefined Unwind@10053580(void) 8 1 +100535b0 Unwind@100535b0 undefined Unwind@100535b0(void) 8 1 +100535e0 Unwind@100535e0 undefined Unwind@100535e0(void) 9 0 +10053610 Unwind@10053610 undefined Unwind@10053610(void) 9 0 +10053640 Unwind@10053640 undefined Unwind@10053640(void) 8 1 +10053670 Unwind@10053670 undefined Unwind@10053670(void) 8 1 +100536a0 Unwind@100536a0 undefined Unwind@100536a0(void) 17 1 +100536b1 Unwind@100536b1 undefined Unwind@100536b1(void) 8 1 +100536e0 Unwind@100536e0 undefined Unwind@100536e0(void) 8 1 +10053710 Unwind@10053710 undefined Unwind@10053710(void) 8 1 +10053740 Unwind@10053740 undefined Unwind@10053740(void) 8 1 +10053770 Unwind@10053770 undefined Unwind@10053770(void) 17 1 +10053781 Unwind@10053781 undefined Unwind@10053781(void) 8 1 +100537b0 Unwind@100537b0 undefined Unwind@100537b0(void) 17 1 +100537c1 Unwind@100537c1 undefined Unwind@100537c1(void) 8 1 +100537f0 Unwind@100537f0 undefined Unwind@100537f0(void) 17 1 +10053801 Unwind@10053801 undefined Unwind@10053801(void) 8 1 +10053830 Unwind@10053830 undefined Unwind@10053830(void) 8 1 +10053860 Unwind@10053860 undefined Unwind@10053860(void) 8 1 +10053868 Unwind@10053868 undefined Unwind@10053868(void) 8 1 +10053870 Unwind@10053870 undefined Unwind@10053870(void) 8 1 +10053878 Unwind@10053878 undefined Unwind@10053878(void) 8 1 +10053880 Unwind@10053880 undefined Unwind@10053880(void) 8 1 +100538b0 Unwind@100538b0 undefined Unwind@100538b0(void) 11 1 +100538bb Unwind@100538bb undefined Unwind@100538bb(void) 11 1 +100538c6 Unwind@100538c6 undefined Unwind@100538c6(void) 11 1 +100538d1 Unwind@100538d1 undefined Unwind@100538d1(void) 11 1 +100538dc Unwind@100538dc undefined Unwind@100538dc(void) 11 1 +100538e7 Unwind@100538e7 undefined Unwind@100538e7(void) 11 1 +10053920 Unwind@10053920 undefined Unwind@10053920(void) 17 1 +10053931 Unwind@10053931 undefined Unwind@10053931(void) 8 1 +10053960 Unwind@10053960 undefined Unwind@10053960(void) 17 1 +10053971 Unwind@10053971 undefined Unwind@10053971(void) 8 1 +100539a0 Unwind@100539a0 undefined Unwind@100539a0(void) 8 1 +100539d0 Unwind@100539d0 undefined Unwind@100539d0(void) 17 1 +100539e1 Unwind@100539e1 undefined Unwind@100539e1(void) 8 1 +10053a10 Unwind@10053a10 undefined Unwind@10053a10(void) 8 1 +10053a80 Unwind@10053a80 undefined Unwind@10053a80(void) 11 1 +10053ab0 Unwind@10053ab0 undefined Unwind@10053ab0(void) 11 1 +10053abb Unwind@10053abb undefined Unwind@10053abb(void) 8 1 +10053ac3 Unwind@10053ac3 undefined Unwind@10053ac3(void) 8 1 +10053acb Unwind@10053acb undefined Unwind@10053acb(void) 8 1 +10053ad3 Unwind@10053ad3 undefined Unwind@10053ad3(void) 8 1 +10053adb Unwind@10053adb undefined Unwind@10053adb(void) 8 1 +10053ae3 Unwind@10053ae3 undefined Unwind@10053ae3(void) 8 1 +10053aeb Unwind@10053aeb undefined Unwind@10053aeb(void) 8 1 +10053af3 Unwind@10053af3 undefined Unwind@10053af3(void) 8 1 +10053afb Unwind@10053afb undefined Unwind@10053afb(void) 8 1 +10053b03 Unwind@10053b03 undefined Unwind@10053b03(void) 8 1 +10053b0b Unwind@10053b0b undefined Unwind@10053b0b(void) 8 1 +10053b13 Unwind@10053b13 undefined Unwind@10053b13(void) 8 1 +10053b1b Unwind@10053b1b undefined Unwind@10053b1b(void) 8 1 +10053b23 Unwind@10053b23 undefined Unwind@10053b23(void) 8 1 +10053b2b Unwind@10053b2b undefined Unwind@10053b2b(void) 8 1 +10053b33 Unwind@10053b33 undefined Unwind@10053b33(void) 8 1 +10053b3b Unwind@10053b3b undefined Unwind@10053b3b(void) 8 1 +10053b43 Unwind@10053b43 undefined Unwind@10053b43(void) 8 1 +10053b4b Unwind@10053b4b undefined Unwind@10053b4b(void) 8 1 +10053b53 Unwind@10053b53 undefined Unwind@10053b53(void) 8 1 +10053b5b Unwind@10053b5b undefined Unwind@10053b5b(void) 8 1 +10053b63 Unwind@10053b63 undefined Unwind@10053b63(void) 8 1 +10053b6b Unwind@10053b6b undefined Unwind@10053b6b(void) 8 1 +10053b73 Unwind@10053b73 undefined Unwind@10053b73(void) 8 1 +10053b7b Unwind@10053b7b undefined Unwind@10053b7b(void) 8 1 +10053b83 Unwind@10053b83 undefined Unwind@10053b83(void) 8 1 +10053b8b Unwind@10053b8b undefined Unwind@10053b8b(void) 8 1 +10053b93 Unwind@10053b93 undefined Unwind@10053b93(void) 8 1 +10053bc0 Unwind@10053bc0 undefined Unwind@10053bc0(void) 8 1 +10053bf0 Unwind@10053bf0 undefined Unwind@10053bf0(void) 9 0 +10053c20 Unwind@10053c20 undefined Unwind@10053c20(void) 9 0 +10053c50 Unwind@10053c50 undefined Unwind@10053c50(void) 17 1 +10053c80 Unwind@10053c80 undefined Unwind@10053c80(void) 17 1 +10053cb0 Unwind@10053cb0 undefined Unwind@10053cb0(void) 11 1 +10053ce0 Unwind@10053ce0 undefined Unwind@10053ce0(void) 11 1 +10053d10 Unwind@10053d10 undefined Unwind@10053d10(void) 11 1 +10053d40 Unwind@10053d40 undefined Unwind@10053d40(void) 8 1 +10053d70 Unwind@10053d70 undefined Unwind@10053d70(void) 11 1 +10053d7b Unwind@10053d7b undefined Unwind@10053d7b(void) 11 1 +10053db0 Unwind@10053db0 undefined Unwind@10053db0(void) 8 1 +10053de0 Unwind@10053de0 undefined Unwind@10053de0(void) 9 0 +10053e10 Unwind@10053e10 undefined Unwind@10053e10(void) 8 1 +10053e40 Unwind@10053e40 undefined Unwind@10053e40(void) 9 0 +10053e70 Unwind@10053e70 undefined Unwind@10053e70(void) 8 1 +10053ea0 Unwind@10053ea0 undefined Unwind@10053ea0(void) 8 1 +10053ef0 Unwind@10053ef0 undefined Unwind@10053ef0(void) 8 1 +10053ef8 Unwind@10053ef8 undefined Unwind@10053ef8(void) 8 1 +10053f20 Unwind@10053f20 undefined Unwind@10053f20(void) 17 1 +10053f50 Unwind@10053f50 undefined Unwind@10053f50(void) 17 1 +10053f80 Unwind@10053f80 undefined Unwind@10053f80(void) 17 1 +10053fb0 Unwind@10053fb0 undefined Unwind@10053fb0(void) 14 0 +10053fe0 Unwind@10053fe0 undefined Unwind@10053fe0(void) 8 1 +10054010 Unwind@10054010 undefined Unwind@10054010(void) 11 1 +10054050 Unwind@10054050 undefined Unwind@10054050(void) 8 1 +10054058 Unwind@10054058 undefined Unwind@10054058(void) 8 1 +10054060 Unwind@10054060 undefined Unwind@10054060(void) 8 1 +10054090 Unwind@10054090 undefined Unwind@10054090(void) 12 0 +1005409c Unwind@1005409c undefined Unwind@1005409c(void) 11 1 +100540a7 Unwind@100540a7 undefined Unwind@100540a7(void) 9 0 +100540d0 Unwind@100540d0 undefined Unwind@100540d0(void) 9 0 +10054100 Unwind@10054100 undefined Unwind@10054100(void) 17 1 +10054130 Unwind@10054130 undefined Unwind@10054130(void) 17 1 +10054160 Unwind@10054160 undefined Unwind@10054160(void) 11 1 +10054190 Unwind@10054190 undefined Unwind@10054190(void) 14 0 +1005419e Unwind@1005419e undefined Unwind@1005419e(void) 14 0 +100541d0 Unwind@100541d0 undefined Unwind@100541d0(void) 14 0 +100541de Unwind@100541de undefined Unwind@100541de(void) 14 0 +10054210 Unwind@10054210 undefined Unwind@10054210(void) 14 0 +1005421e Unwind@1005421e undefined Unwind@1005421e(void) 14 0 +10054250 Unwind@10054250 undefined Unwind@10054250(void) 14 0 +1005425e Unwind@1005425e undefined Unwind@1005425e(void) 14 0 +10054290 Unwind@10054290 undefined Unwind@10054290(void) 14 0 +1005429e Unwind@1005429e undefined Unwind@1005429e(void) 14 0 +100542e0 Unwind@100542e0 undefined Unwind@100542e0(void) 8 1 +10054310 Unwind@10054310 undefined Unwind@10054310(void) 14 0 +1005431e Unwind@1005431e undefined Unwind@1005431e(void) 14 0 +1005432c Unwind@1005432c undefined Unwind@1005432c(void) 14 0 +1005433a Unwind@1005433a undefined Unwind@1005433a(void) 14 0 +10054370 Unwind@10054370 undefined Unwind@10054370(void) 12 0 +1005437c Unwind@1005437c undefined Unwind@1005437c(void) 11 1 +10054387 Unwind@10054387 undefined Unwind@10054387(void) 9 0 +100543b0 Unwind@100543b0 undefined Unwind@100543b0(void) 29 0 +100543cd Unwind@100543cd undefined Unwind@100543cd(void) 12 0 +100543d9 Unwind@100543d9 undefined Unwind@100543d9(void) 9 0 +100543e2 Unwind@100543e2 undefined Unwind@100543e2(void) 11 1 +10054430 Unwind@10054430 undefined Unwind@10054430(void) 8 1 +10054460 Unwind@10054460 undefined Unwind@10054460(void) 11 1 +1005446b Unwind@1005446b undefined Unwind@1005446b(void) 25 1 +100544a0 Unwind@100544a0 undefined Unwind@100544a0(void) 11 1 +100544ab Unwind@100544ab undefined Unwind@100544ab(void) 25 1 +100544e0 Unwind@100544e0 undefined Unwind@100544e0(void) 8 1 +100544e8 Unwind@100544e8 undefined Unwind@100544e8(void) 11 1 +10054510 Unwind@10054510 undefined Unwind@10054510(void) 8 1 +10054518 Unwind@10054518 undefined Unwind@10054518(void) 11 1 +10054540 Unwind@10054540 undefined Unwind@10054540(void) 8 1 +10054548 Unwind@10054548 undefined Unwind@10054548(void) 11 1 +10054570 Unwind@10054570 undefined Unwind@10054570(void) 8 1 +10054578 Unwind@10054578 undefined Unwind@10054578(void) 11 1 +100545a0 Unwind@100545a0 undefined Unwind@100545a0(void) 8 1 +100545a8 Unwind@100545a8 undefined Unwind@100545a8(void) 25 1 +100545c1 Unwind@100545c1 undefined Unwind@100545c1(void) 8 1 +100545c9 Unwind@100545c9 undefined Unwind@100545c9(void) 8 1 +10054620 Unwind@10054620 undefined Unwind@10054620(void) 25 1 +10054660 Unwind@10054660 undefined Unwind@10054660(void) 25 1 +100546a0 Unwind@100546a0 undefined Unwind@100546a0(void) 25 1 +100546e0 Unwind@100546e0 undefined Unwind@100546e0(void) 11 1 +100546eb Unwind@100546eb undefined Unwind@100546eb(void) 11 1 +100546f6 Unwind@100546f6 undefined Unwind@100546f6(void) 35 0 +10054719 Unwind@10054719 undefined Unwind@10054719(void) 12 0 +10054725 Unwind@10054725 undefined Unwind@10054725(void) 12 0 +10054731 Unwind@10054731 undefined Unwind@10054731(void) 11 1 +1005473c Unwind@1005473c undefined Unwind@1005473c(void) 11 1 +10054747 Unwind@10054747 undefined Unwind@10054747(void) 11 1 +10054752 Unwind@10054752 undefined Unwind@10054752(void) 11 1 +1005475d Unwind@1005475d undefined Unwind@1005475d(void) 11 1 +10054768 Unwind@10054768 undefined Unwind@10054768(void) 11 1 +10054773 Unwind@10054773 undefined Unwind@10054773(void) 11 1 +1005477e Unwind@1005477e undefined Unwind@1005477e(void) 11 1 +10054789 Unwind@10054789 undefined Unwind@10054789(void) 11 1 +10054794 Unwind@10054794 undefined Unwind@10054794(void) 11 1 +1005479f Unwind@1005479f undefined Unwind@1005479f(void) 11 1 +100547aa Unwind@100547aa undefined Unwind@100547aa(void) 11 1 +100547b5 Unwind@100547b5 undefined Unwind@100547b5(void) 11 1 +100547c0 Unwind@100547c0 undefined Unwind@100547c0(void) 34 1 +100547e2 Unwind@100547e2 undefined Unwind@100547e2(void) 15 0 +100547f1 Unwind@100547f1 undefined Unwind@100547f1(void) 14 1 +100547ff Unwind@100547ff undefined Unwind@100547ff(void) 12 0 +10054840 Unwind@10054840 undefined Unwind@10054840(void) 25 1 +10054880 Unwind@10054880 undefined Unwind@10054880(void) 8 1 +10054888 Unwind@10054888 undefined Unwind@10054888(void) 8 1 +10054890 Unwind@10054890 undefined Unwind@10054890(void) 8 1 +10054898 Unwind@10054898 undefined Unwind@10054898(void) 25 1 +100548d0 Unwind@100548d0 undefined Unwind@100548d0(void) 8 1 +100548d8 Unwind@100548d8 undefined Unwind@100548d8(void) 8 1 +100548e0 Unwind@100548e0 undefined Unwind@100548e0(void) 8 1 +100548e8 Unwind@100548e8 undefined Unwind@100548e8(void) 11 1 +100548f3 Unwind@100548f3 undefined Unwind@100548f3(void) 25 1 +1005490c Unwind@1005490c undefined Unwind@1005490c(void) 8 1 +10054914 Unwind@10054914 undefined Unwind@10054914(void) 8 1 +10054940 Unwind@10054940 undefined Unwind@10054940(void) 8 1 +10054948 Unwind@10054948 undefined Unwind@10054948(void) 8 1 +10054950 Unwind@10054950 undefined Unwind@10054950(void) 11 1 +1005495b Unwind@1005495b undefined Unwind@1005495b(void) 8 1 +10054963 Unwind@10054963 undefined Unwind@10054963(void) 8 1 +1005496b Unwind@1005496b undefined Unwind@1005496b(void) 8 1 +10054973 Unwind@10054973 undefined Unwind@10054973(void) 8 1 +100549b0 Unwind@100549b0 undefined Unwind@100549b0(void) 14 0 +100549be Unwind@100549be undefined Unwind@100549be(void) 14 0 +100549cc Unwind@100549cc undefined Unwind@100549cc(void) 11 1 +100549d7 Unwind@100549d7 undefined Unwind@100549d7(void) 11 1 +100549e2 Unwind@100549e2 undefined Unwind@100549e2(void) 11 1 +100549ed Unwind@100549ed undefined Unwind@100549ed(void) 11 1 +100549f8 Unwind@100549f8 undefined Unwind@100549f8(void) 11 1 +10054a03 Unwind@10054a03 undefined Unwind@10054a03(void) 11 1 +10054a0e Unwind@10054a0e undefined Unwind@10054a0e(void) 34 1 +10054a30 Unwind@10054a30 undefined Unwind@10054a30(void) 34 1 +10054a80 Unwind@10054a80 undefined Unwind@10054a80(void) 8 1 +10054a88 Unwind@10054a88 undefined Unwind@10054a88(void) 8 1 +10054a90 Unwind@10054a90 undefined Unwind@10054a90(void) 8 1 +10054a98 Unwind@10054a98 undefined Unwind@10054a98(void) 14 0 +10054aa6 Unwind@10054aa6 undefined Unwind@10054aa6(void) 14 0 +10054ab4 Unwind@10054ab4 undefined Unwind@10054ab4(void) 14 0 +10054ac2 Unwind@10054ac2 undefined Unwind@10054ac2(void) 14 0 +10054af0 Unwind@10054af0 undefined Unwind@10054af0(void) 8 1 +10054af8 Unwind@10054af8 undefined Unwind@10054af8(void) 8 1 +10054b00 Unwind@10054b00 undefined Unwind@10054b00(void) 8 1 +10054b30 Unwind@10054b30 undefined Unwind@10054b30(void) 8 1 +10054b38 Unwind@10054b38 undefined Unwind@10054b38(void) 8 1 +10054b40 Unwind@10054b40 undefined Unwind@10054b40(void) 8 1 +10054b48 Unwind@10054b48 undefined Unwind@10054b48(void) 8 1 +10054b50 Unwind@10054b50 undefined Unwind@10054b50(void) 8 1 +10054b80 Unwind@10054b80 undefined Unwind@10054b80(void) 8 1 +10054b88 Unwind@10054b88 undefined Unwind@10054b88(void) 8 1 +10054b90 Unwind@10054b90 undefined Unwind@10054b90(void) 8 1 +10054b98 Unwind@10054b98 undefined Unwind@10054b98(void) 8 1 +10054ba0 Unwind@10054ba0 undefined Unwind@10054ba0(void) 8 1 +10054bd0 Unwind@10054bd0 undefined Unwind@10054bd0(void) 8 1 +10054bd8 Unwind@10054bd8 undefined Unwind@10054bd8(void) 8 1 +10054be0 Unwind@10054be0 undefined Unwind@10054be0(void) 8 1 +10054be8 Unwind@10054be8 undefined Unwind@10054be8(void) 8 1 +10054bf0 Unwind@10054bf0 undefined Unwind@10054bf0(void) 8 1 +10054c20 Unwind@10054c20 undefined Unwind@10054c20(void) 8 1 +10054c28 Unwind@10054c28 undefined Unwind@10054c28(void) 8 1 +10054c30 Unwind@10054c30 undefined Unwind@10054c30(void) 8 1 +10054c38 Unwind@10054c38 undefined Unwind@10054c38(void) 8 1 +10054c40 Unwind@10054c40 undefined Unwind@10054c40(void) 8 1 +10054c70 Unwind@10054c70 undefined Unwind@10054c70(void) 8 1 +10054c78 Unwind@10054c78 undefined Unwind@10054c78(void) 8 1 +10054c80 Unwind@10054c80 undefined Unwind@10054c80(void) 8 1 +10054c88 Unwind@10054c88 undefined Unwind@10054c88(void) 8 1 +10054c90 Unwind@10054c90 undefined Unwind@10054c90(void) 8 1 +10054cc0 Unwind@10054cc0 undefined Unwind@10054cc0(void) 8 1 +10054cc8 Unwind@10054cc8 undefined Unwind@10054cc8(void) 8 1 +10054cd0 Unwind@10054cd0 undefined Unwind@10054cd0(void) 8 1 +10054cd8 Unwind@10054cd8 undefined Unwind@10054cd8(void) 8 1 +10054ce0 Unwind@10054ce0 undefined Unwind@10054ce0(void) 8 1 +10054d10 Unwind@10054d10 undefined Unwind@10054d10(void) 8 1 +10054d18 Unwind@10054d18 undefined Unwind@10054d18(void) 8 1 +10054d20 Unwind@10054d20 undefined Unwind@10054d20(void) 8 1 +10054d28 Unwind@10054d28 undefined Unwind@10054d28(void) 8 1 +10054d30 Unwind@10054d30 undefined Unwind@10054d30(void) 8 1 +10054d60 Unwind@10054d60 undefined Unwind@10054d60(void) 8 1 +10054d68 Unwind@10054d68 undefined Unwind@10054d68(void) 8 1 +10054d70 Unwind@10054d70 undefined Unwind@10054d70(void) 8 1 +10054d78 Unwind@10054d78 undefined Unwind@10054d78(void) 8 1 +10054d80 Unwind@10054d80 undefined Unwind@10054d80(void) 8 1 +10054db0 Unwind@10054db0 undefined Unwind@10054db0(void) 8 1 +10054db8 Unwind@10054db8 undefined Unwind@10054db8(void) 8 1 +10054dc0 Unwind@10054dc0 undefined Unwind@10054dc0(void) 8 1 +10054dc8 Unwind@10054dc8 undefined Unwind@10054dc8(void) 8 1 +10054dd0 Unwind@10054dd0 undefined Unwind@10054dd0(void) 8 1 +10054e00 Unwind@10054e00 undefined Unwind@10054e00(void) 8 1 +10054e08 Unwind@10054e08 undefined Unwind@10054e08(void) 8 1 +10054e10 Unwind@10054e10 undefined Unwind@10054e10(void) 8 1 +10054e18 Unwind@10054e18 undefined Unwind@10054e18(void) 8 1 +10054e20 Unwind@10054e20 undefined Unwind@10054e20(void) 8 1 +10054e50 Unwind@10054e50 undefined Unwind@10054e50(void) 8 1 +10054e58 Unwind@10054e58 undefined Unwind@10054e58(void) 8 1 +10054e60 Unwind@10054e60 undefined Unwind@10054e60(void) 8 1 +10054e68 Unwind@10054e68 undefined Unwind@10054e68(void) 8 1 +10054e70 Unwind@10054e70 undefined Unwind@10054e70(void) 8 1 +10054ea0 Unwind@10054ea0 undefined Unwind@10054ea0(void) 8 1 +10054ea8 Unwind@10054ea8 undefined Unwind@10054ea8(void) 8 1 +10054eb0 Unwind@10054eb0 undefined Unwind@10054eb0(void) 8 1 +10054eb8 Unwind@10054eb8 undefined Unwind@10054eb8(void) 8 1 +10054ec0 Unwind@10054ec0 undefined Unwind@10054ec0(void) 8 1 +10054ef0 Unwind@10054ef0 undefined Unwind@10054ef0(void) 8 1 +10054ef8 Unwind@10054ef8 undefined Unwind@10054ef8(void) 8 1 +10054f00 Unwind@10054f00 undefined Unwind@10054f00(void) 8 1 +10054f08 Unwind@10054f08 undefined Unwind@10054f08(void) 8 1 +10054f10 Unwind@10054f10 undefined Unwind@10054f10(void) 8 1 +10054f40 Unwind@10054f40 undefined Unwind@10054f40(void) 8 1 +10054f48 Unwind@10054f48 undefined Unwind@10054f48(void) 8 1 +10054f50 Unwind@10054f50 undefined Unwind@10054f50(void) 8 1 +10054f58 Unwind@10054f58 undefined Unwind@10054f58(void) 8 1 +10054f60 Unwind@10054f60 undefined Unwind@10054f60(void) 8 1 +10054f90 Unwind@10054f90 undefined Unwind@10054f90(void) 8 1 +10054f98 Unwind@10054f98 undefined Unwind@10054f98(void) 8 1 +10054fa0 Unwind@10054fa0 undefined Unwind@10054fa0(void) 8 1 +10054fa8 Unwind@10054fa8 undefined Unwind@10054fa8(void) 8 1 +10054fb0 Unwind@10054fb0 undefined Unwind@10054fb0(void) 8 1 +10054fe0 Unwind@10054fe0 undefined Unwind@10054fe0(void) 8 1 +10054fe8 Unwind@10054fe8 undefined Unwind@10054fe8(void) 8 1 +10054ff0 Unwind@10054ff0 undefined Unwind@10054ff0(void) 8 1 +10054ff8 Unwind@10054ff8 undefined Unwind@10054ff8(void) 8 1 +10055000 Unwind@10055000 undefined Unwind@10055000(void) 8 1 +10055030 Unwind@10055030 undefined Unwind@10055030(void) 9 0 +10055060 Unwind@10055060 undefined Unwind@10055060(void) 9 0 +10055090 Unwind@10055090 undefined Unwind@10055090(void) 17 1 +100550c0 Unwind@100550c0 undefined Unwind@100550c0(void) 17 1 +100550f0 Unwind@100550f0 undefined Unwind@100550f0(void) 17 1 +10055120 Unwind@10055120 undefined Unwind@10055120(void) 9 0 +10055150 Unwind@10055150 undefined Unwind@10055150(void) 17 1 +10055180 Unwind@10055180 undefined Unwind@10055180(void) 9 0 +100551b0 Unwind@100551b0 undefined Unwind@100551b0(void) 9 0 +100551e0 Unwind@100551e0 undefined Unwind@100551e0(void) 17 1 +10055210 Unwind@10055210 undefined Unwind@10055210(void) 9 0 +10055240 Unwind@10055240 undefined Unwind@10055240(void) 8 1 +10055248 Unwind@10055248 undefined Unwind@10055248(void) 9 0 +10055270 Unwind@10055270 undefined Unwind@10055270(void) 8 1 +100552a0 Unwind@100552a0 undefined Unwind@100552a0(void) 8 1 +100552a8 Unwind@100552a8 undefined Unwind@100552a8(void) 9 0 +100552d0 Unwind@100552d0 undefined Unwind@100552d0(void) 9 0 +10055300 Unwind@10055300 undefined Unwind@10055300(void) 8 1 +10055330 Unwind@10055330 undefined Unwind@10055330(void) 8 1 +10055338 Unwind@10055338 undefined Unwind@10055338(void) 8 1 +10055360 Unwind@10055360 undefined Unwind@10055360(void) 8 1 +10055368 Unwind@10055368 undefined Unwind@10055368(void) 11 1 +10055373 Unwind@10055373 undefined Unwind@10055373(void) 8 1 +1005537b Unwind@1005537b undefined Unwind@1005537b(void) 8 1 +10055383 Unwind@10055383 undefined Unwind@10055383(void) 8 1 +100553b0 Unwind@100553b0 undefined Unwind@100553b0(void) 8 1 +100553b8 Unwind@100553b8 undefined Unwind@100553b8(void) 8 1 +100553c0 Unwind@100553c0 undefined Unwind@100553c0(void) 9 0 +100553f0 Unwind@100553f0 undefined Unwind@100553f0(void) 8 1 +100553f8 Unwind@100553f8 undefined Unwind@100553f8(void) 8 1 +10055400 Unwind@10055400 undefined Unwind@10055400(void) 8 1 +10055408 Unwind@10055408 undefined Unwind@10055408(void) 8 1 +10055410 Unwind@10055410 undefined Unwind@10055410(void) 11 1 +1005541b Unwind@1005541b undefined Unwind@1005541b(void) 9 0 +10055424 Unwind@10055424 undefined Unwind@10055424(void) 9 0 +10055450 Unwind@10055450 undefined Unwind@10055450(void) 17 1 +10055480 Unwind@10055480 undefined Unwind@10055480(void) 17 1 +100554b0 Unwind@100554b0 undefined Unwind@100554b0(void) 17 1 +100554e0 Unwind@100554e0 undefined Unwind@100554e0(void) 17 1 +10055510 Unwind@10055510 undefined Unwind@10055510(void) 17 1 +10055540 Unwind@10055540 undefined Unwind@10055540(void) 17 1 +10055570 Unwind@10055570 undefined Unwind@10055570(void) 17 1 +100555a0 Unwind@100555a0 undefined Unwind@100555a0(void) 17 1 +100555d0 Unwind@100555d0 undefined Unwind@100555d0(void) 17 1 +10055600 Unwind@10055600 undefined Unwind@10055600(void) 17 1 +10055630 Unwind@10055630 undefined Unwind@10055630(void) 17 1 +10055660 Unwind@10055660 undefined Unwind@10055660(void) 17 1 +10055690 Unwind@10055690 undefined Unwind@10055690(void) 17 1 +100556c0 Unwind@100556c0 undefined Unwind@100556c0(void) 17 1 +100556f0 Unwind@100556f0 undefined Unwind@100556f0(void) 17 1 +10055720 Unwind@10055720 undefined Unwind@10055720(void) 17 1 +10055750 Unwind@10055750 undefined Unwind@10055750(void) 8 1 +10055780 Unwind@10055780 undefined Unwind@10055780(void) 9 0 +100557b0 Unwind@100557b0 undefined Unwind@100557b0(void) 9 0 +100557e0 Unwind@100557e0 undefined Unwind@100557e0(void) 9 0 +10055810 Unwind@10055810 undefined Unwind@10055810(void) 9 0 +10055840 Unwind@10055840 undefined Unwind@10055840(void) 9 0 +10055870 Unwind@10055870 undefined Unwind@10055870(void) 9 0 +100558a0 Unwind@100558a0 undefined Unwind@100558a0(void) 9 0 +100558d0 Unwind@100558d0 undefined Unwind@100558d0(void) 9 0 +10055900 Unwind@10055900 undefined Unwind@10055900(void) 9 0 +10055930 Unwind@10055930 undefined Unwind@10055930(void) 9 0 +10055960 Unwind@10055960 undefined Unwind@10055960(void) 9 0 +10055990 Unwind@10055990 undefined Unwind@10055990(void) 9 0 +100559c0 Unwind@100559c0 undefined Unwind@100559c0(void) 9 0 +100559f0 Unwind@100559f0 undefined Unwind@100559f0(void) 9 0 +10055a20 Unwind@10055a20 undefined Unwind@10055a20(void) 9 0 +10055a50 Unwind@10055a50 undefined Unwind@10055a50(void) 9 0 +10055a80 Unwind@10055a80 undefined Unwind@10055a80(void) 9 0 +10055ab0 Unwind@10055ab0 undefined Unwind@10055ab0(void) 9 0 +10055ae0 Unwind@10055ae0 undefined Unwind@10055ae0(void) 9 0 +10055b10 Unwind@10055b10 undefined Unwind@10055b10(void) 17 1 +10055b40 Unwind@10055b40 undefined Unwind@10055b40(void) 17 1 +10055b70 Unwind@10055b70 undefined Unwind@10055b70(void) 17 1 +10055ba0 Unwind@10055ba0 undefined Unwind@10055ba0(void) 17 1 +10055bd0 Unwind@10055bd0 undefined Unwind@10055bd0(void) 17 1 +10055c00 Unwind@10055c00 undefined Unwind@10055c00(void) 17 1 +10055c30 Unwind@10055c30 undefined Unwind@10055c30(void) 17 1 +10055c60 Unwind@10055c60 undefined Unwind@10055c60(void) 17 1 +10055c90 Unwind@10055c90 undefined Unwind@10055c90(void) 17 1 +10055cc0 Unwind@10055cc0 undefined Unwind@10055cc0(void) 17 1 +10055cf0 Unwind@10055cf0 undefined Unwind@10055cf0(void) 17 1 +10055d20 Unwind@10055d20 undefined Unwind@10055d20(void) 17 1 +10055d50 Unwind@10055d50 undefined Unwind@10055d50(void) 17 1 +10055d80 Unwind@10055d80 undefined Unwind@10055d80(void) 17 1 +10055db0 Unwind@10055db0 undefined Unwind@10055db0(void) 17 1 +10055de0 Unwind@10055de0 undefined Unwind@10055de0(void) 17 1 +10055e10 Unwind@10055e10 undefined Unwind@10055e10(void) 17 1 +10055e40 Unwind@10055e40 undefined Unwind@10055e40(void) 17 1 +10055e70 Unwind@10055e70 undefined Unwind@10055e70(void) 8 1 +10055ea0 Unwind@10055ea0 undefined Unwind@10055ea0(void) 17 1 +10055ed0 Unwind@10055ed0 undefined Unwind@10055ed0(void) 17 1 +10055f00 Unwind@10055f00 undefined Unwind@10055f00(void) 17 1 +10055f30 Unwind@10055f30 undefined Unwind@10055f30(void) 17 1 +10055f60 Unwind@10055f60 undefined Unwind@10055f60(void) 17 1 +10055f90 Unwind@10055f90 undefined Unwind@10055f90(void) 17 1 +10055fc0 Unwind@10055fc0 undefined Unwind@10055fc0(void) 17 1 +10055ff0 Unwind@10055ff0 undefined Unwind@10055ff0(void) 17 1 +10056020 Unwind@10056020 undefined Unwind@10056020(void) 17 1 +10056050 Unwind@10056050 undefined Unwind@10056050(void) 17 1 +10056080 Unwind@10056080 undefined Unwind@10056080(void) 17 1 +100560b0 Unwind@100560b0 undefined Unwind@100560b0(void) 17 1 +100560e0 Unwind@100560e0 undefined Unwind@100560e0(void) 17 1 +10056110 Unwind@10056110 undefined Unwind@10056110(void) 9 0 +10056140 Unwind@10056140 undefined Unwind@10056140(void) 9 0 +10056170 Unwind@10056170 undefined Unwind@10056170(void) 17 1 +100561a0 Unwind@100561a0 undefined Unwind@100561a0(void) 17 1 +100561d0 Unwind@100561d0 undefined Unwind@100561d0(void) 17 1 +10056200 Unwind@10056200 undefined Unwind@10056200(void) 17 1 +10056230 Unwind@10056230 undefined Unwind@10056230(void) 17 1 +10056260 Unwind@10056260 undefined Unwind@10056260(void) 17 1 +10056290 Unwind@10056290 undefined Unwind@10056290(void) 9 0 +100562c0 Unwind@100562c0 undefined Unwind@100562c0(void) 9 0 +100562f0 Unwind@100562f0 undefined Unwind@100562f0(void) 9 0 +10056320 Unwind@10056320 undefined Unwind@10056320(void) 9 0 +10056350 Unwind@10056350 undefined Unwind@10056350(void) 9 0 +10056380 Unwind@10056380 undefined Unwind@10056380(void) 9 0 +100563b0 Unwind@100563b0 undefined Unwind@100563b0(void) 9 0 +100563e0 Unwind@100563e0 undefined Unwind@100563e0(void) 9 0 +10056410 Unwind@10056410 undefined Unwind@10056410(void) 9 0 +10056440 Unwind@10056440 undefined Unwind@10056440(void) 9 0 +10056470 Unwind@10056470 undefined Unwind@10056470(void) 9 0 +100564a0 Unwind@100564a0 undefined Unwind@100564a0(void) 9 0 +100564d0 Unwind@100564d0 undefined Unwind@100564d0(void) 9 0 +10056500 Unwind@10056500 undefined Unwind@10056500(void) 9 0 +10056530 Unwind@10056530 undefined Unwind@10056530(void) 9 0 +10056560 Unwind@10056560 undefined Unwind@10056560(void) 9 0 +10056590 Unwind@10056590 undefined Unwind@10056590(void) 9 0 +100565c0 Unwind@100565c0 undefined Unwind@100565c0(void) 9 0 +100565f0 Unwind@100565f0 undefined Unwind@100565f0(void) 9 0 +10056620 Unwind@10056620 undefined Unwind@10056620(void) 9 0 +10056650 Unwind@10056650 undefined Unwind@10056650(void) 9 0 +10056680 Unwind@10056680 undefined Unwind@10056680(void) 9 0 +100566b0 Unwind@100566b0 undefined Unwind@100566b0(void) 9 0 +100566e0 Unwind@100566e0 undefined Unwind@100566e0(void) 9 0 +10056710 Unwind@10056710 undefined Unwind@10056710(void) 9 0 +10056740 Unwind@10056740 undefined Unwind@10056740(void) 9 0 +10056770 Unwind@10056770 undefined Unwind@10056770(void) 9 0 +100567a0 Unwind@100567a0 undefined Unwind@100567a0(void) 9 0 +100567d0 Unwind@100567d0 undefined Unwind@100567d0(void) 9 0 +10056800 Unwind@10056800 undefined Unwind@10056800(void) 9 0 +100568b0 Unwind@100568b0 undefined Unwind@100568b0(void) 17 1 +100568e0 Unwind@100568e0 undefined Unwind@100568e0(void) 17 1 +10056910 Unwind@10056910 undefined Unwind@10056910(void) 17 1 +10056940 Unwind@10056940 undefined Unwind@10056940(void) 14 0 +1005694e Unwind@1005694e undefined Unwind@1005694e(void) 14 0 +1005695c Unwind@1005695c undefined Unwind@1005695c(void) 14 0 +10056990 Unwind@10056990 undefined Unwind@10056990(void) 14 0 +1005699e Unwind@1005699e undefined Unwind@1005699e(void) 14 0 +100569ac Unwind@100569ac undefined Unwind@100569ac(void) 14 0 +100569e0 Unwind@100569e0 undefined Unwind@100569e0(void) 8 1 +100569e8 Unwind@100569e8 undefined Unwind@100569e8(void) 9 0 +10056a10 Unwind@10056a10 undefined Unwind@10056a10(void) 8 1 +10056a18 Unwind@10056a18 undefined Unwind@10056a18(void) 9 0 +10056a40 Unwind@10056a40 undefined Unwind@10056a40(void) 8 1 +10056a70 Unwind@10056a70 undefined Unwind@10056a70(void) 8 1 +10056a78 Unwind@10056a78 undefined Unwind@10056a78(void) 9 0 +10056aa0 Unwind@10056aa0 undefined Unwind@10056aa0(void) 8 1 +10056ad0 Unwind@10056ad0 undefined Unwind@10056ad0(void) 8 1 +10056ad8 Unwind@10056ad8 undefined Unwind@10056ad8(void) 9 0 +10056b00 Unwind@10056b00 undefined Unwind@10056b00(void) 8 1 +10056b30 Unwind@10056b30 undefined Unwind@10056b30(void) 8 1 +10056b38 Unwind@10056b38 undefined Unwind@10056b38(void) 9 0 +10056b60 Unwind@10056b60 undefined Unwind@10056b60(void) 8 1 +10056b90 Unwind@10056b90 undefined Unwind@10056b90(void) 8 1 +10056b98 Unwind@10056b98 undefined Unwind@10056b98(void) 9 0 +10056bc0 Unwind@10056bc0 undefined Unwind@10056bc0(void) 8 1 +10056bf0 Unwind@10056bf0 undefined Unwind@10056bf0(void) 8 1 +10056bf8 Unwind@10056bf8 undefined Unwind@10056bf8(void) 9 0 +10056c20 Unwind@10056c20 undefined Unwind@10056c20(void) 8 1 +10056c50 Unwind@10056c50 undefined Unwind@10056c50(void) 8 1 +10056c58 Unwind@10056c58 undefined Unwind@10056c58(void) 9 0 +10056c80 Unwind@10056c80 undefined Unwind@10056c80(void) 8 1 +10056cb0 Unwind@10056cb0 undefined Unwind@10056cb0(void) 8 1 +10056cb8 Unwind@10056cb8 undefined Unwind@10056cb8(void) 9 0 +10056ce0 Unwind@10056ce0 undefined Unwind@10056ce0(void) 8 1 +10056d10 Unwind@10056d10 undefined Unwind@10056d10(void) 8 1 +10056d18 Unwind@10056d18 undefined Unwind@10056d18(void) 9 0 +10056d40 Unwind@10056d40 undefined Unwind@10056d40(void) 8 1 +10056d70 Unwind@10056d70 undefined Unwind@10056d70(void) 8 1 +10056d78 Unwind@10056d78 undefined Unwind@10056d78(void) 9 0 +10056da0 Unwind@10056da0 undefined Unwind@10056da0(void) 8 1 +10056dd0 Unwind@10056dd0 undefined Unwind@10056dd0(void) 8 1 +10056dd8 Unwind@10056dd8 undefined Unwind@10056dd8(void) 9 0 +10056e00 Unwind@10056e00 undefined Unwind@10056e00(void) 8 1 +10056e30 Unwind@10056e30 undefined Unwind@10056e30(void) 8 1 +10056e38 Unwind@10056e38 undefined Unwind@10056e38(void) 9 0 +10056e60 Unwind@10056e60 undefined Unwind@10056e60(void) 8 1 +10056e90 Unwind@10056e90 undefined Unwind@10056e90(void) 8 1 +10056e98 Unwind@10056e98 undefined Unwind@10056e98(void) 9 0 +10056ec0 Unwind@10056ec0 undefined Unwind@10056ec0(void) 8 1 +10056ec8 Unwind@10056ec8 undefined Unwind@10056ec8(void) 9 0 +10056ef0 Unwind@10056ef0 undefined Unwind@10056ef0(void) 8 1 +10056f20 Unwind@10056f20 undefined Unwind@10056f20(void) 8 1 +10056f50 Unwind@10056f50 undefined Unwind@10056f50(void) 8 1 +10056f58 Unwind@10056f58 undefined Unwind@10056f58(void) 9 0 +10056f80 Unwind@10056f80 undefined Unwind@10056f80(void) 8 1 +10056f88 Unwind@10056f88 undefined Unwind@10056f88(void) 9 0 +10056fb0 Unwind@10056fb0 undefined Unwind@10056fb0(void) 17 1 +10056fe0 Unwind@10056fe0 undefined Unwind@10056fe0(void) 9 0 +10057010 Unwind@10057010 undefined Unwind@10057010(void) 9 0 +10057040 Unwind@10057040 undefined Unwind@10057040(void) 8 1 +10057070 Unwind@10057070 undefined Unwind@10057070(void) 14 0 +1005707e Unwind@1005707e undefined Unwind@1005707e(void) 8 1 +10057086 Unwind@10057086 undefined Unwind@10057086(void) 14 0 +10057094 Unwind@10057094 undefined Unwind@10057094(void) 14 0 +100570c0 Unwind@100570c0 undefined Unwind@100570c0(void) 8 1 +100570f0 Unwind@100570f0 undefined Unwind@100570f0(void) 11 1 +100570fb Unwind@100570fb undefined Unwind@100570fb(void) 11 1 +10057106 Unwind@10057106 undefined Unwind@10057106(void) 11 1 +10057111 Unwind@10057111 undefined Unwind@10057111(void) 8 1 +10057140 Unwind@10057140 undefined Unwind@10057140(void) 14 0 +1005714e Unwind@1005714e undefined Unwind@1005714e(void) 14 0 +1005715c Unwind@1005715c undefined Unwind@1005715c(void) 14 0 +1005716a Unwind@1005716a undefined Unwind@1005716a(void) 14 0 +10057178 Unwind@10057178 undefined Unwind@10057178(void) 14 0 +10057186 Unwind@10057186 undefined Unwind@10057186(void) 14 0 +10057194 Unwind@10057194 undefined Unwind@10057194(void) 14 0 +100571a2 Unwind@100571a2 undefined Unwind@100571a2(void) 14 0 +100571b0 Unwind@100571b0 undefined Unwind@100571b0(void) 14 0 +100571be Unwind@100571be undefined Unwind@100571be(void) 14 0 +100571cc Unwind@100571cc undefined Unwind@100571cc(void) 14 0 +10057200 Unwind@10057200 undefined Unwind@10057200(void) 14 0 +1005720e Unwind@1005720e undefined Unwind@1005720e(void) 14 0 +1005721c Unwind@1005721c undefined Unwind@1005721c(void) 14 0 +1005722a Unwind@1005722a undefined Unwind@1005722a(void) 14 0 +10057238 Unwind@10057238 undefined Unwind@10057238(void) 14 0 +10057246 Unwind@10057246 undefined Unwind@10057246(void) 14 0 +10057254 Unwind@10057254 undefined Unwind@10057254(void) 14 0 +10057262 Unwind@10057262 undefined Unwind@10057262(void) 14 0 +10057270 Unwind@10057270 undefined Unwind@10057270(void) 14 0 +1005727e Unwind@1005727e undefined Unwind@1005727e(void) 14 0 +1005728c Unwind@1005728c undefined Unwind@1005728c(void) 14 0 +1005729a Unwind@1005729a undefined Unwind@1005729a(void) 14 0 +100572a8 Unwind@100572a8 undefined Unwind@100572a8(void) 14 0 +100572b6 Unwind@100572b6 undefined Unwind@100572b6(void) 14 0 +100572c4 Unwind@100572c4 undefined Unwind@100572c4(void) 14 0 +100572d2 Unwind@100572d2 undefined Unwind@100572d2(void) 14 0 +100572e0 Unwind@100572e0 undefined Unwind@100572e0(void) 14 0 +100572ee Unwind@100572ee undefined Unwind@100572ee(void) 14 0 +100572fc Unwind@100572fc undefined Unwind@100572fc(void) 14 0 +1005730a Unwind@1005730a undefined Unwind@1005730a(void) 14 0 +10057318 Unwind@10057318 undefined Unwind@10057318(void) 14 0 +10057326 Unwind@10057326 undefined Unwind@10057326(void) 14 0 +10057334 Unwind@10057334 undefined Unwind@10057334(void) 14 0 +10057360 Unwind@10057360 undefined Unwind@10057360(void) 8 1 +10057390 Unwind@10057390 undefined Unwind@10057390(void) 8 1 +10057540 Unwind@10057540 undefined Unwind@10057540(void) 9 0 +10057570 Unwind@10057570 undefined Unwind@10057570(void) 14 0 +1005757e Unwind@1005757e undefined Unwind@1005757e(void) 14 0 +1005758c Unwind@1005758c undefined Unwind@1005758c(void) 8 1 +100575b0 Unwind@100575b0 undefined Unwind@100575b0(void) 14 0 +100575be Unwind@100575be undefined Unwind@100575be(void) 14 0 +100575cc Unwind@100575cc undefined Unwind@100575cc(void) 8 1 +100575f0 Unwind@100575f0 undefined Unwind@100575f0(void) 14 0 +100575fe Unwind@100575fe undefined Unwind@100575fe(void) 14 0 +10057630 Unwind@10057630 undefined Unwind@10057630(void) 8 1 +100576a0 Unwind@100576a0 undefined Unwind@100576a0(void) 8 1 +100576a8 Unwind@100576a8 undefined Unwind@100576a8(void) 11 1 +100576b3 Unwind@100576b3 undefined Unwind@100576b3(void) 11 1 +100576be Unwind@100576be undefined Unwind@100576be(void) 8 1 +100576c6 Unwind@100576c6 undefined Unwind@100576c6(void) 11 1 +100576d1 Unwind@100576d1 undefined Unwind@100576d1(void) 8 1 +100576d9 Unwind@100576d9 undefined Unwind@100576d9(void) 9 0 +10057700 Unwind@10057700 undefined Unwind@10057700(void) 8 1 +10057708 Unwind@10057708 undefined Unwind@10057708(void) 8 1 +10057730 Unwind@10057730 undefined Unwind@10057730(void) 14 0 +1005773e Unwind@1005773e undefined Unwind@1005773e(void) 14 0 +1005774c Unwind@1005774c undefined Unwind@1005774c(void) 14 0 +10057780 Unwind@10057780 undefined Unwind@10057780(void) 14 0 +1005778e Unwind@1005778e undefined Unwind@1005778e(void) 14 0 +1005779c Unwind@1005779c undefined Unwind@1005779c(void) 14 0 +100577d0 Unwind@100577d0 undefined Unwind@100577d0(void) 14 0 +100577de Unwind@100577de undefined Unwind@100577de(void) 8 1 +10057810 Unwind@10057810 undefined Unwind@10057810(void) 8 1 +10057818 Unwind@10057818 undefined Unwind@10057818(void) 14 0 +10057826 Unwind@10057826 undefined Unwind@10057826(void) 8 1 +1005782e Unwind@1005782e undefined Unwind@1005782e(void) 8 1 +10057836 Unwind@10057836 undefined Unwind@10057836(void) 8 1 +1005783e Unwind@1005783e undefined Unwind@1005783e(void) 14 0 +1005784c Unwind@1005784c undefined Unwind@1005784c(void) 14 0 +1005785a Unwind@1005785a undefined Unwind@1005785a(void) 14 0 +10057868 Unwind@10057868 undefined Unwind@10057868(void) 14 0 +10057876 Unwind@10057876 undefined Unwind@10057876(void) 14 0 +10057884 Unwind@10057884 undefined Unwind@10057884(void) 14 0 +10057892 Unwind@10057892 undefined Unwind@10057892(void) 9 0 +100578c0 Unwind@100578c0 undefined Unwind@100578c0(void) 8 1 +100578c8 Unwind@100578c8 undefined Unwind@100578c8(void) 14 0 +10057900 Unwind@10057900 undefined Unwind@10057900(void) 8 1 +10057908 Unwind@10057908 undefined Unwind@10057908(void) 14 0 +10057916 Unwind@10057916 undefined Unwind@10057916(void) 8 1 +1005791e Unwind@1005791e undefined Unwind@1005791e(void) 8 1 +10057926 Unwind@10057926 undefined Unwind@10057926(void) 8 1 +1005792e Unwind@1005792e undefined Unwind@1005792e(void) 14 0 +1005793c Unwind@1005793c undefined Unwind@1005793c(void) 14 0 +1005794a Unwind@1005794a undefined Unwind@1005794a(void) 14 0 +10057958 Unwind@10057958 undefined Unwind@10057958(void) 14 0 +10057966 Unwind@10057966 undefined Unwind@10057966(void) 14 0 +10057974 Unwind@10057974 undefined Unwind@10057974(void) 14 0 +10057982 Unwind@10057982 undefined Unwind@10057982(void) 9 0 +100579b0 Unwind@100579b0 undefined Unwind@100579b0(void) 8 1 +100579e0 Unwind@100579e0 undefined Unwind@100579e0(void) 8 1 +10057a10 Unwind@10057a10 undefined Unwind@10057a10(void) 8 1 +10057a18 Unwind@10057a18 undefined Unwind@10057a18(void) 8 1 +10057a20 Unwind@10057a20 undefined Unwind@10057a20(void) 8 1 +10057a28 Unwind@10057a28 undefined Unwind@10057a28(void) 14 0 +10057a36 Unwind@10057a36 undefined Unwind@10057a36(void) 8 1 +10057a3e Unwind@10057a3e undefined Unwind@10057a3e(void) 9 0 +10057a70 Unwind@10057a70 undefined Unwind@10057a70(void) 8 1 +10057aa0 Unwind@10057aa0 undefined Unwind@10057aa0(void) 8 1 +10057ad0 Unwind@10057ad0 undefined Unwind@10057ad0(void) 8 1 +10057ad8 Unwind@10057ad8 undefined Unwind@10057ad8(void) 9 0 +10057b00 Unwind@10057b00 undefined Unwind@10057b00(void) 8 1 +10057b08 Unwind@10057b08 undefined Unwind@10057b08(void) 8 1 +10057b10 Unwind@10057b10 undefined Unwind@10057b10(void) 9 0 +10057b40 Unwind@10057b40 undefined Unwind@10057b40(void) 8 1 +10057b48 Unwind@10057b48 undefined Unwind@10057b48(void) 14 0 +10057b80 Unwind@10057b80 undefined Unwind@10057b80(void) 8 1 +10057bb0 Unwind@10057bb0 undefined Unwind@10057bb0(void) 11 1 +10057bbb Unwind@10057bbb undefined Unwind@10057bbb(void) 11 1 +10057bc6 Unwind@10057bc6 undefined Unwind@10057bc6(void) 8 1 +10057bf0 Unwind@10057bf0 undefined Unwind@10057bf0(void) 11 1 +10057bfb Unwind@10057bfb undefined Unwind@10057bfb(void) 11 1 +10057c06 Unwind@10057c06 undefined Unwind@10057c06(void) 8 1 +10057c30 Unwind@10057c30 undefined Unwind@10057c30(void) 8 1 +10057c60 Unwind@10057c60 undefined Unwind@10057c60(void) 8 1 +10057c90 Unwind@10057c90 undefined Unwind@10057c90(void) 8 1 +10057c98 Unwind@10057c98 undefined Unwind@10057c98(void) 11 1 +10057ca3 Unwind@10057ca3 undefined Unwind@10057ca3(void) 11 1 +10057cae Unwind@10057cae undefined Unwind@10057cae(void) 9 0 +10057ce0 Unwind@10057ce0 undefined Unwind@10057ce0(void) 8 1 +10057ce8 Unwind@10057ce8 undefined Unwind@10057ce8(void) 11 1 +10057cf3 Unwind@10057cf3 undefined Unwind@10057cf3(void) 11 1 +10057cfe Unwind@10057cfe undefined Unwind@10057cfe(void) 9 0 +10057d30 Unwind@10057d30 undefined Unwind@10057d30(void) 8 1 +10057d38 Unwind@10057d38 undefined Unwind@10057d38(void) 8 1 +10057d40 Unwind@10057d40 undefined Unwind@10057d40(void) 8 1 +10057d48 Unwind@10057d48 undefined Unwind@10057d48(void) 8 1 +10057d70 Unwind@10057d70 undefined Unwind@10057d70(void) 8 1 +10057da0 Unwind@10057da0 undefined Unwind@10057da0(void) 14 0 +10057dae Unwind@10057dae undefined Unwind@10057dae(void) 8 1 +10057db6 Unwind@10057db6 undefined Unwind@10057db6(void) 8 1 +10057dbe Unwind@10057dbe undefined Unwind@10057dbe(void) 8 1 +10057df0 Unwind@10057df0 undefined Unwind@10057df0(void) 8 1 +10057e20 Unwind@10057e20 undefined Unwind@10057e20(void) 8 1 +10057e50 Unwind@10057e50 undefined Unwind@10057e50(void) 8 1 +10057e80 Unwind@10057e80 undefined Unwind@10057e80(void) 8 1 +10057e88 Unwind@10057e88 undefined Unwind@10057e88(void) 8 1 +10057e90 Unwind@10057e90 undefined Unwind@10057e90(void) 8 1 +10057ec0 Unwind@10057ec0 undefined Unwind@10057ec0(void) 11 1 +10057ecb Unwind@10057ecb undefined Unwind@10057ecb(void) 11 1 +10057ed6 Unwind@10057ed6 undefined Unwind@10057ed6(void) 11 1 +10057ee1 Unwind@10057ee1 undefined Unwind@10057ee1(void) 11 1 +10057eec Unwind@10057eec undefined Unwind@10057eec(void) 11 1 +10057ef7 Unwind@10057ef7 undefined Unwind@10057ef7(void) 11 1 +10057f02 Unwind@10057f02 undefined Unwind@10057f02(void) 11 1 +10057f0d Unwind@10057f0d undefined Unwind@10057f0d(void) 14 1 +10057f1b Unwind@10057f1b undefined Unwind@10057f1b(void) 14 1 +10057f29 Unwind@10057f29 undefined Unwind@10057f29(void) 14 1 +10057f37 Unwind@10057f37 undefined Unwind@10057f37(void) 14 1 +10057f45 Unwind@10057f45 undefined Unwind@10057f45(void) 14 1 +10057f53 Unwind@10057f53 undefined Unwind@10057f53(void) 14 1 +10057f61 Unwind@10057f61 undefined Unwind@10057f61(void) 14 1 +10057f6f Unwind@10057f6f undefined Unwind@10057f6f(void) 14 1 +10057f7d Unwind@10057f7d undefined Unwind@10057f7d(void) 14 1 +10057f8b Unwind@10057f8b undefined Unwind@10057f8b(void) 14 1 +10057f99 Unwind@10057f99 undefined Unwind@10057f99(void) 14 1 +10057fa7 Unwind@10057fa7 undefined Unwind@10057fa7(void) 14 1 +10057fb5 Unwind@10057fb5 undefined Unwind@10057fb5(void) 14 1 +10057fc3 Unwind@10057fc3 undefined Unwind@10057fc3(void) 14 1 +10057fd1 Unwind@10057fd1 undefined Unwind@10057fd1(void) 14 1 +10057fdf Unwind@10057fdf undefined Unwind@10057fdf(void) 14 1 +10057fed Unwind@10057fed undefined Unwind@10057fed(void) 14 1 +10057ffb Unwind@10057ffb undefined Unwind@10057ffb(void) 14 1 +10058009 Unwind@10058009 undefined Unwind@10058009(void) 14 1 +10058017 Unwind@10058017 undefined Unwind@10058017(void) 14 1 +10058025 Unwind@10058025 undefined Unwind@10058025(void) 14 1 +10058033 Unwind@10058033 undefined Unwind@10058033(void) 14 1 +10058041 Unwind@10058041 undefined Unwind@10058041(void) 14 1 +1005804f Unwind@1005804f undefined Unwind@1005804f(void) 14 1 +1005805d Unwind@1005805d undefined Unwind@1005805d(void) 14 1 +1005806b Unwind@1005806b undefined Unwind@1005806b(void) 14 1 +10058079 Unwind@10058079 undefined Unwind@10058079(void) 14 1 +10058087 Unwind@10058087 undefined Unwind@10058087(void) 14 1 +10058095 Unwind@10058095 undefined Unwind@10058095(void) 14 1 +100580a3 Unwind@100580a3 undefined Unwind@100580a3(void) 14 1 +100580b1 Unwind@100580b1 undefined Unwind@100580b1(void) 8 1 +100580b9 Unwind@100580b9 undefined Unwind@100580b9(void) 8 1 +100580c1 Unwind@100580c1 undefined Unwind@100580c1(void) 8 1 +100580c9 Unwind@100580c9 undefined Unwind@100580c9(void) 8 1 +100580d1 Unwind@100580d1 undefined Unwind@100580d1(void) 8 1 +100580d9 Unwind@100580d9 undefined Unwind@100580d9(void) 8 1 +100580e1 Unwind@100580e1 undefined Unwind@100580e1(void) 8 1 +100580e9 Unwind@100580e9 undefined Unwind@100580e9(void) 8 1 +100580f1 Unwind@100580f1 undefined Unwind@100580f1(void) 8 1 +100580f9 Unwind@100580f9 undefined Unwind@100580f9(void) 8 1 +10058101 Unwind@10058101 undefined Unwind@10058101(void) 8 1 +10058109 Unwind@10058109 undefined Unwind@10058109(void) 8 1 +10058111 Unwind@10058111 undefined Unwind@10058111(void) 8 1 +10058119 Unwind@10058119 undefined Unwind@10058119(void) 8 1 +10058121 Unwind@10058121 undefined Unwind@10058121(void) 8 1 +10058129 Unwind@10058129 undefined Unwind@10058129(void) 8 1 +10058131 Unwind@10058131 undefined Unwind@10058131(void) 8 1 +10058160 Unwind@10058160 undefined Unwind@10058160(void) 8 1 +10058168 Unwind@10058168 undefined Unwind@10058168(void) 14 0 +100581a0 Unwind@100581a0 undefined Unwind@100581a0(void) 8 1 +100581a8 Unwind@100581a8 undefined Unwind@100581a8(void) 14 0 +100581e0 Unwind@100581e0 undefined Unwind@100581e0(void) 14 0 +100581ee Unwind@100581ee undefined Unwind@100581ee(void) 8 1 +100581f6 Unwind@100581f6 undefined Unwind@100581f6(void) 8 1 +100581fe Unwind@100581fe undefined Unwind@100581fe(void) 8 1 +10058206 Unwind@10058206 undefined Unwind@10058206(void) 8 1 +1005820e Unwind@1005820e undefined Unwind@1005820e(void) 9 0 +10058217 Unwind@10058217 undefined Unwind@10058217(void) 14 0 +10058225 Unwind@10058225 undefined Unwind@10058225(void) 14 0 +10058233 Unwind@10058233 undefined Unwind@10058233(void) 8 1 +10058260 Unwind@10058260 undefined Unwind@10058260(void) 14 0 +1005826e Unwind@1005826e undefined Unwind@1005826e(void) 8 1 +10058276 Unwind@10058276 undefined Unwind@10058276(void) 8 1 +1005827e Unwind@1005827e undefined Unwind@1005827e(void) 8 1 +10058286 Unwind@10058286 undefined Unwind@10058286(void) 14 0 +10058294 Unwind@10058294 undefined Unwind@10058294(void) 8 1 +1005829c Unwind@1005829c undefined Unwind@1005829c(void) 8 1 +100582a4 Unwind@100582a4 undefined Unwind@100582a4(void) 9 0 +100582d0 Unwind@100582d0 undefined Unwind@100582d0(void) 8 1 +100582d8 Unwind@100582d8 undefined Unwind@100582d8(void) 8 1 +100582e0 Unwind@100582e0 undefined Unwind@100582e0(void) 11 1 +100582eb Unwind@100582eb undefined Unwind@100582eb(void) 11 1 +100582f6 Unwind@100582f6 undefined Unwind@100582f6(void) 11 1 +10058301 Unwind@10058301 undefined Unwind@10058301(void) 11 1 +1005830c Unwind@1005830c undefined Unwind@1005830c(void) 8 1 +10058314 Unwind@10058314 undefined Unwind@10058314(void) 8 1 +1005831c Unwind@1005831c undefined Unwind@1005831c(void) 11 1 +10058327 Unwind@10058327 undefined Unwind@10058327(void) 11 1 +10058332 Unwind@10058332 undefined Unwind@10058332(void) 8 1 +1005833a Unwind@1005833a undefined Unwind@1005833a(void) 14 0 +10058348 Unwind@10058348 undefined Unwind@10058348(void) 14 0 +10058356 Unwind@10058356 undefined Unwind@10058356(void) 14 0 +10058364 Unwind@10058364 undefined Unwind@10058364(void) 14 0 +10058372 Unwind@10058372 undefined Unwind@10058372(void) 14 0 +10058380 Unwind@10058380 undefined Unwind@10058380(void) 14 0 +1005838e Unwind@1005838e undefined Unwind@1005838e(void) 14 0 +1005839c Unwind@1005839c undefined Unwind@1005839c(void) 14 0 +100583aa Unwind@100583aa undefined Unwind@100583aa(void) 14 0 +100583b8 Unwind@100583b8 undefined Unwind@100583b8(void) 14 0 +100583c6 Unwind@100583c6 undefined Unwind@100583c6(void) 14 0 +100583d4 Unwind@100583d4 undefined Unwind@100583d4(void) 14 0 +100583e2 Unwind@100583e2 undefined Unwind@100583e2(void) 14 0 +100583f0 Unwind@100583f0 undefined Unwind@100583f0(void) 14 0 +100583fe Unwind@100583fe undefined Unwind@100583fe(void) 14 0 +1005840c Unwind@1005840c undefined Unwind@1005840c(void) 14 0 +1005841a Unwind@1005841a undefined Unwind@1005841a(void) 14 0 +10058428 Unwind@10058428 undefined Unwind@10058428(void) 14 0 +10058436 Unwind@10058436 undefined Unwind@10058436(void) 14 0 +10058444 Unwind@10058444 undefined Unwind@10058444(void) 14 0 +10058452 Unwind@10058452 undefined Unwind@10058452(void) 14 0 +10058460 Unwind@10058460 undefined Unwind@10058460(void) 14 0 +1005846e Unwind@1005846e undefined Unwind@1005846e(void) 14 0 +1005847c Unwind@1005847c undefined Unwind@1005847c(void) 14 0 +1005848a Unwind@1005848a undefined Unwind@1005848a(void) 14 0 +10058498 Unwind@10058498 undefined Unwind@10058498(void) 14 0 +100584a6 Unwind@100584a6 undefined Unwind@100584a6(void) 14 0 +100584b4 Unwind@100584b4 undefined Unwind@100584b4(void) 14 0 +100584c2 Unwind@100584c2 undefined Unwind@100584c2(void) 14 0 +100584d0 Unwind@100584d0 undefined Unwind@100584d0(void) 14 0 +100584de Unwind@100584de undefined Unwind@100584de(void) 14 0 +100584ec Unwind@100584ec undefined Unwind@100584ec(void) 14 0 +100584fa Unwind@100584fa undefined Unwind@100584fa(void) 14 0 +10058508 Unwind@10058508 undefined Unwind@10058508(void) 14 0 +10058516 Unwind@10058516 undefined Unwind@10058516(void) 14 0 +10058524 Unwind@10058524 undefined Unwind@10058524(void) 14 0 +10058532 Unwind@10058532 undefined Unwind@10058532(void) 11 1 +1005853d Unwind@1005853d undefined Unwind@1005853d(void) 11 1 +10058548 Unwind@10058548 undefined Unwind@10058548(void) 8 1 +10058550 Unwind@10058550 undefined Unwind@10058550(void) 11 1 +1005855b Unwind@1005855b undefined Unwind@1005855b(void) 11 1 +10058566 Unwind@10058566 undefined Unwind@10058566(void) 8 1 +1005856e Unwind@1005856e undefined Unwind@1005856e(void) 9 0 +10058577 Unwind@10058577 undefined Unwind@10058577(void) 9 0 +10058580 Unwind@10058580 undefined Unwind@10058580(void) 9 0 +10058589 Unwind@10058589 undefined Unwind@10058589(void) 9 0 +10058592 Unwind@10058592 undefined Unwind@10058592(void) 9 0 +1005859b Unwind@1005859b undefined Unwind@1005859b(void) 14 0 +100585a9 Unwind@100585a9 undefined Unwind@100585a9(void) 14 0 +100585b7 Unwind@100585b7 undefined Unwind@100585b7(void) 11 1 +100585e0 Unwind@100585e0 undefined Unwind@100585e0(void) 8 1 +100585e8 Unwind@100585e8 undefined Unwind@100585e8(void) 11 1 +100585f3 Unwind@100585f3 undefined Unwind@100585f3(void) 8 1 +100585fb Unwind@100585fb undefined Unwind@100585fb(void) 8 1 +10058603 Unwind@10058603 undefined Unwind@10058603(void) 8 1 +1005860b Unwind@1005860b undefined Unwind@1005860b(void) 8 1 +10058630 Unwind@10058630 undefined Unwind@10058630(void) 8 1 +10058638 Unwind@10058638 undefined Unwind@10058638(void) 8 1 +10058640 Unwind@10058640 undefined Unwind@10058640(void) 8 1 +10058648 Unwind@10058648 undefined Unwind@10058648(void) 8 1 +10058650 Unwind@10058650 undefined Unwind@10058650(void) 8 1 +10058658 Unwind@10058658 undefined Unwind@10058658(void) 9 0 +10058680 Unwind@10058680 undefined Unwind@10058680(void) 14 0 +1005868e Unwind@1005868e undefined Unwind@1005868e(void) 8 1 +100586c0 Unwind@100586c0 undefined Unwind@100586c0(void) 14 0 +100586ce Unwind@100586ce undefined Unwind@100586ce(void) 14 0 +100586dc Unwind@100586dc undefined Unwind@100586dc(void) 8 1 +10058700 Unwind@10058700 undefined Unwind@10058700(void) 14 0 +1005870e Unwind@1005870e undefined Unwind@1005870e(void) 8 1 +10058740 Unwind@10058740 undefined Unwind@10058740(void) 8 1 +10058770 Unwind@10058770 undefined Unwind@10058770(void) 8 1 +10058778 Unwind@10058778 undefined Unwind@10058778(void) 8 1 +10058780 Unwind@10058780 undefined Unwind@10058780(void) 8 1 +10058788 Unwind@10058788 undefined Unwind@10058788(void) 8 1 +10058790 Unwind@10058790 undefined Unwind@10058790(void) 8 1 +100587c0 Unwind@100587c0 undefined Unwind@100587c0(void) 14 0 +100587ce Unwind@100587ce undefined Unwind@100587ce(void) 14 0 +100587dc Unwind@100587dc undefined Unwind@100587dc(void) 14 0 +10058810 Unwind@10058810 undefined Unwind@10058810(void) 14 0 +1005881e Unwind@1005881e undefined Unwind@1005881e(void) 14 0 +1005882c Unwind@1005882c undefined Unwind@1005882c(void) 14 0 +10058860 Unwind@10058860 undefined Unwind@10058860(void) 14 0 +1005886e Unwind@1005886e undefined Unwind@1005886e(void) 14 0 +1005887c Unwind@1005887c undefined Unwind@1005887c(void) 14 0 +100588b0 Unwind@100588b0 undefined Unwind@100588b0(void) 14 0 +100588be Unwind@100588be undefined Unwind@100588be(void) 8 1 +100588c6 Unwind@100588c6 undefined Unwind@100588c6(void) 8 1 +100588ce Unwind@100588ce undefined Unwind@100588ce(void) 8 1 +100588d6 Unwind@100588d6 undefined Unwind@100588d6(void) 8 1 +100588de Unwind@100588de undefined Unwind@100588de(void) 8 1 +100588e6 Unwind@100588e6 undefined Unwind@100588e6(void) 8 1 +100588ee Unwind@100588ee undefined Unwind@100588ee(void) 14 0 +100588fc Unwind@100588fc undefined Unwind@100588fc(void) 8 1 +10058904 Unwind@10058904 undefined Unwind@10058904(void) 9 0 +10058930 Unwind@10058930 undefined Unwind@10058930(void) 14 0 +1005893e Unwind@1005893e undefined Unwind@1005893e(void) 8 1 +10058946 Unwind@10058946 undefined Unwind@10058946(void) 8 1 +1005894e Unwind@1005894e undefined Unwind@1005894e(void) 8 1 +10058956 Unwind@10058956 undefined Unwind@10058956(void) 14 0 +10058964 Unwind@10058964 undefined Unwind@10058964(void) 14 0 +10058972 Unwind@10058972 undefined Unwind@10058972(void) 8 1 +1005897a Unwind@1005897a undefined Unwind@1005897a(void) 8 1 +10058982 Unwind@10058982 undefined Unwind@10058982(void) 9 0 +100589b0 Unwind@100589b0 undefined Unwind@100589b0(void) 14 0 +100589be Unwind@100589be undefined Unwind@100589be(void) 14 0 +100589cc Unwind@100589cc undefined Unwind@100589cc(void) 14 0 +100589da Unwind@100589da undefined Unwind@100589da(void) 14 0 +100589e8 Unwind@100589e8 undefined Unwind@100589e8(void) 14 0 +100589f6 Unwind@100589f6 undefined Unwind@100589f6(void) 14 0 +10058a04 Unwind@10058a04 undefined Unwind@10058a04(void) 14 0 +10058a12 Unwind@10058a12 undefined Unwind@10058a12(void) 14 0 +10058a20 Unwind@10058a20 undefined Unwind@10058a20(void) 14 0 +10058a2e Unwind@10058a2e undefined Unwind@10058a2e(void) 14 0 +10058a3c Unwind@10058a3c undefined Unwind@10058a3c(void) 14 0 +10058a4a Unwind@10058a4a undefined Unwind@10058a4a(void) 14 0 +10058a80 Unwind@10058a80 undefined Unwind@10058a80(void) 14 0 +10058a8e Unwind@10058a8e undefined Unwind@10058a8e(void) 14 0 +10058a9c Unwind@10058a9c undefined Unwind@10058a9c(void) 14 0 +10058aaa Unwind@10058aaa undefined Unwind@10058aaa(void) 8 1 +10058ad0 Unwind@10058ad0 undefined Unwind@10058ad0(void) 11 1 +10058adb Unwind@10058adb undefined Unwind@10058adb(void) 8 1 +10058ae3 Unwind@10058ae3 undefined Unwind@10058ae3(void) 11 1 +10058aee Unwind@10058aee undefined Unwind@10058aee(void) 11 1 +10058af9 Unwind@10058af9 undefined Unwind@10058af9(void) 8 1 +10058b01 Unwind@10058b01 undefined Unwind@10058b01(void) 11 1 +10058b0c Unwind@10058b0c undefined Unwind@10058b0c(void) 8 1 +10058b14 Unwind@10058b14 undefined Unwind@10058b14(void) 11 1 +10058b1f Unwind@10058b1f undefined Unwind@10058b1f(void) 8 1 +10058b27 Unwind@10058b27 undefined Unwind@10058b27(void) 8 1 +10058b2f Unwind@10058b2f undefined Unwind@10058b2f(void) 11 1 +10058b3a Unwind@10058b3a undefined Unwind@10058b3a(void) 11 1 +10058b45 Unwind@10058b45 undefined Unwind@10058b45(void) 8 1 +10058b4d Unwind@10058b4d undefined Unwind@10058b4d(void) 14 1 +10058b5b Unwind@10058b5b undefined Unwind@10058b5b(void) 14 1 +10058b69 Unwind@10058b69 undefined Unwind@10058b69(void) 14 1 +10058b77 Unwind@10058b77 undefined Unwind@10058b77(void) 8 1 +10058b7f Unwind@10058b7f undefined Unwind@10058b7f(void) 14 1 +10058b8d Unwind@10058b8d undefined Unwind@10058b8d(void) 14 1 +10058b9b Unwind@10058b9b undefined Unwind@10058b9b(void) 14 1 +10058ba9 Unwind@10058ba9 undefined Unwind@10058ba9(void) 14 1 +10058bb7 Unwind@10058bb7 undefined Unwind@10058bb7(void) 8 1 +10058bbf Unwind@10058bbf undefined Unwind@10058bbf(void) 14 1 +10058bcd Unwind@10058bcd undefined Unwind@10058bcd(void) 14 1 +10058bdb Unwind@10058bdb undefined Unwind@10058bdb(void) 8 1 +10058be3 Unwind@10058be3 undefined Unwind@10058be3(void) 14 1 +10058bf1 Unwind@10058bf1 undefined Unwind@10058bf1(void) 14 1 +10058bff Unwind@10058bff undefined Unwind@10058bff(void) 8 1 +10058c07 Unwind@10058c07 undefined Unwind@10058c07(void) 14 1 +10058c15 Unwind@10058c15 undefined Unwind@10058c15(void) 14 1 +10058c23 Unwind@10058c23 undefined Unwind@10058c23(void) 8 1 +10058c2b Unwind@10058c2b undefined Unwind@10058c2b(void) 14 1 +10058c39 Unwind@10058c39 undefined Unwind@10058c39(void) 14 1 +10058c47 Unwind@10058c47 undefined Unwind@10058c47(void) 8 1 +10058c4f Unwind@10058c4f undefined Unwind@10058c4f(void) 14 1 +10058c5d Unwind@10058c5d undefined Unwind@10058c5d(void) 14 1 +10058c6b Unwind@10058c6b undefined Unwind@10058c6b(void) 8 1 +10058c73 Unwind@10058c73 undefined Unwind@10058c73(void) 14 1 +10058c81 Unwind@10058c81 undefined Unwind@10058c81(void) 14 1 +10058c8f Unwind@10058c8f undefined Unwind@10058c8f(void) 8 1 +10058c97 Unwind@10058c97 undefined Unwind@10058c97(void) 14 1 +10058ca5 Unwind@10058ca5 undefined Unwind@10058ca5(void) 14 1 +10058cb3 Unwind@10058cb3 undefined Unwind@10058cb3(void) 8 1 +10058cbb Unwind@10058cbb undefined Unwind@10058cbb(void) 14 1 +10058cc9 Unwind@10058cc9 undefined Unwind@10058cc9(void) 14 1 +10058cd7 Unwind@10058cd7 undefined Unwind@10058cd7(void) 8 1 +10058cdf Unwind@10058cdf undefined Unwind@10058cdf(void) 14 1 +10058ced Unwind@10058ced undefined Unwind@10058ced(void) 14 1 +10058cfb Unwind@10058cfb undefined Unwind@10058cfb(void) 8 1 +10058d03 Unwind@10058d03 undefined Unwind@10058d03(void) 14 1 +10058d11 Unwind@10058d11 undefined Unwind@10058d11(void) 14 1 +10058d1f Unwind@10058d1f undefined Unwind@10058d1f(void) 14 1 +10058d2d Unwind@10058d2d undefined Unwind@10058d2d(void) 14 1 +10058d3b Unwind@10058d3b undefined Unwind@10058d3b(void) 14 1 +10058d49 Unwind@10058d49 undefined Unwind@10058d49(void) 9 0 +10058d52 Unwind@10058d52 undefined Unwind@10058d52(void) 9 0 +10058d5b Unwind@10058d5b undefined Unwind@10058d5b(void) 9 0 +10058d64 Unwind@10058d64 undefined Unwind@10058d64(void) 9 0 +10058d6d Unwind@10058d6d undefined Unwind@10058d6d(void) 9 0 +10058d76 Unwind@10058d76 undefined Unwind@10058d76(void) 9 0 +10058d7f Unwind@10058d7f undefined Unwind@10058d7f(void) 9 0 +10058d88 Unwind@10058d88 undefined Unwind@10058d88(void) 9 0 +10058d91 Unwind@10058d91 undefined Unwind@10058d91(void) 9 0 +10058d9a Unwind@10058d9a undefined Unwind@10058d9a(void) 9 0 +10058da3 Unwind@10058da3 undefined Unwind@10058da3(void) 9 0 +10058dac Unwind@10058dac undefined Unwind@10058dac(void) 9 0 +10058db5 Unwind@10058db5 undefined Unwind@10058db5(void) 9 0 +10058dbe Unwind@10058dbe undefined Unwind@10058dbe(void) 9 0 +10058df0 Unwind@10058df0 undefined Unwind@10058df0(void) 9 0 +10058e20 Unwind@10058e20 undefined Unwind@10058e20(void) 9 0 +10058e50 Unwind@10058e50 undefined Unwind@10058e50(void) 9 0 +10058e80 Unwind@10058e80 undefined Unwind@10058e80(void) 9 0 +10058eb0 Unwind@10058eb0 undefined Unwind@10058eb0(void) 9 0 +10058ee0 Unwind@10058ee0 undefined Unwind@10058ee0(void) 9 0 +10058f10 Unwind@10058f10 undefined Unwind@10058f10(void) 9 0 +10058f40 Unwind@10058f40 undefined Unwind@10058f40(void) 9 0 +10058f70 Unwind@10058f70 undefined Unwind@10058f70(void) 9 0 +10058fa0 Unwind@10058fa0 undefined Unwind@10058fa0(void) 9 0 +10058fd0 Unwind@10058fd0 undefined Unwind@10058fd0(void) 9 0 +10059000 Unwind@10059000 undefined Unwind@10059000(void) 17 1 +10059030 Unwind@10059030 undefined Unwind@10059030(void) 17 1 +10059060 Unwind@10059060 undefined Unwind@10059060(void) 17 1 +10059090 Unwind@10059090 undefined Unwind@10059090(void) 17 1 +100590c0 Unwind@100590c0 undefined Unwind@100590c0(void) 17 1 +100590f0 Unwind@100590f0 undefined Unwind@100590f0(void) 17 1 +10059120 Unwind@10059120 undefined Unwind@10059120(void) 17 1 +10059150 Unwind@10059150 undefined Unwind@10059150(void) 17 1 +10059180 Unwind@10059180 undefined Unwind@10059180(void) 8 1 +100591b0 Unwind@100591b0 undefined Unwind@100591b0(void) 8 1 +100591e0 Unwind@100591e0 undefined Unwind@100591e0(void) 11 1 +10059210 Unwind@10059210 undefined Unwind@10059210(void) 17 1 +10059240 Unwind@10059240 undefined Unwind@10059240(void) 17 1 +10059270 Unwind@10059270 undefined Unwind@10059270(void) 17 1 +100592a0 Unwind@100592a0 undefined Unwind@100592a0(void) 17 1 +100592d0 Unwind@100592d0 undefined Unwind@100592d0(void) 17 1 +10059300 Unwind@10059300 undefined Unwind@10059300(void) 17 1 +10059330 Unwind@10059330 undefined Unwind@10059330(void) 17 1 +10059360 Unwind@10059360 undefined Unwind@10059360(void) 17 1 +10059390 Unwind@10059390 undefined Unwind@10059390(void) 9 0 +100593c0 Unwind@100593c0 undefined Unwind@100593c0(void) 9 0 +100593f0 Unwind@100593f0 undefined Unwind@100593f0(void) 9 0 +10059420 Unwind@10059420 undefined Unwind@10059420(void) 9 0 +10059450 Unwind@10059450 undefined Unwind@10059450(void) 9 0 +10059480 Unwind@10059480 undefined Unwind@10059480(void) 9 0 +100594b0 Unwind@100594b0 undefined Unwind@100594b0(void) 9 0 +100594e0 Unwind@100594e0 undefined Unwind@100594e0(void) 9 0 +10059510 Unwind@10059510 undefined Unwind@10059510(void) 9 0 +10059540 Unwind@10059540 undefined Unwind@10059540(void) 9 0 +10059570 Unwind@10059570 undefined Unwind@10059570(void) 9 0 +100595a0 Unwind@100595a0 undefined Unwind@100595a0(void) 9 0 +100595d0 Unwind@100595d0 undefined Unwind@100595d0(void) 9 0 +10059600 Unwind@10059600 undefined Unwind@10059600(void) 9 0 +10059630 Unwind@10059630 undefined Unwind@10059630(void) 17 1 +10059660 Unwind@10059660 undefined Unwind@10059660(void) 17 1 +10059690 Unwind@10059690 undefined Unwind@10059690(void) 17 1 +100596c0 Unwind@100596c0 undefined Unwind@100596c0(void) 17 1 +100596f0 Unwind@100596f0 undefined Unwind@100596f0(void) 17 1 +10059720 Unwind@10059720 undefined Unwind@10059720(void) 17 1 +10059750 Unwind@10059750 undefined Unwind@10059750(void) 17 1 +10059780 Unwind@10059780 undefined Unwind@10059780(void) 17 1 +100597b0 Unwind@100597b0 undefined Unwind@100597b0(void) 8 1 +100597b8 Unwind@100597b8 undefined Unwind@100597b8(void) 9 0 +100597e0 Unwind@100597e0 undefined Unwind@100597e0(void) 8 1 +100597e8 Unwind@100597e8 undefined Unwind@100597e8(void) 9 0 +10059810 Unwind@10059810 undefined Unwind@10059810(void) 8 1 +10059818 Unwind@10059818 undefined Unwind@10059818(void) 9 0 +10059840 Unwind@10059840 undefined Unwind@10059840(void) 8 1 +10059848 Unwind@10059848 undefined Unwind@10059848(void) 9 0 +10059870 Unwind@10059870 undefined Unwind@10059870(void) 8 1 +10059878 Unwind@10059878 undefined Unwind@10059878(void) 9 0 +100598a0 Unwind@100598a0 undefined Unwind@100598a0(void) 8 1 +100598a8 Unwind@100598a8 undefined Unwind@100598a8(void) 9 0 +100598d0 Unwind@100598d0 undefined Unwind@100598d0(void) 8 1 +100598d8 Unwind@100598d8 undefined Unwind@100598d8(void) 9 0 +10059900 Unwind@10059900 undefined Unwind@10059900(void) 8 1 +10059908 Unwind@10059908 undefined Unwind@10059908(void) 9 0 +10059930 Unwind@10059930 undefined Unwind@10059930(void) 8 1 +10059938 Unwind@10059938 undefined Unwind@10059938(void) 9 0 +10059960 Unwind@10059960 undefined Unwind@10059960(void) 8 1 +10059968 Unwind@10059968 undefined Unwind@10059968(void) 9 0 +10059990 Unwind@10059990 undefined Unwind@10059990(void) 8 1 +10059998 Unwind@10059998 undefined Unwind@10059998(void) 9 0 +100599c0 Unwind@100599c0 undefined Unwind@100599c0(void) 9 0 +100599f0 Unwind@100599f0 undefined Unwind@100599f0(void) 9 0 +10059a20 Unwind@10059a20 undefined Unwind@10059a20(void) 9 0 +10059a50 Unwind@10059a50 undefined Unwind@10059a50(void) 9 0 +10059a80 Unwind@10059a80 undefined Unwind@10059a80(void) 9 0 +10059ab0 Unwind@10059ab0 undefined Unwind@10059ab0(void) 9 0 +10059ae0 Unwind@10059ae0 undefined Unwind@10059ae0(void) 9 0 +10059b10 Unwind@10059b10 undefined Unwind@10059b10(void) 9 0 +10059b40 Unwind@10059b40 undefined Unwind@10059b40(void) 17 1 +10059b70 Unwind@10059b70 undefined Unwind@10059b70(void) 14 0 +10059b7e Unwind@10059b7e undefined Unwind@10059b7e(void) 14 0 +10059bb0 Unwind@10059bb0 undefined Unwind@10059bb0(void) 14 0 +10059bbe Unwind@10059bbe undefined Unwind@10059bbe(void) 14 0 +10059bcc Unwind@10059bcc undefined Unwind@10059bcc(void) 14 0 +10059bda Unwind@10059bda undefined Unwind@10059bda(void) 14 0 +10059be8 Unwind@10059be8 undefined Unwind@10059be8(void) 14 0 +10059bf6 Unwind@10059bf6 undefined Unwind@10059bf6(void) 14 0 +10059c20 Unwind@10059c20 undefined Unwind@10059c20(void) 14 0 +10059c2e Unwind@10059c2e undefined Unwind@10059c2e(void) 14 0 +10059c3c Unwind@10059c3c undefined Unwind@10059c3c(void) 14 0 +10059c4a Unwind@10059c4a undefined Unwind@10059c4a(void) 14 0 +10059c58 Unwind@10059c58 undefined Unwind@10059c58(void) 14 0 +10059c66 Unwind@10059c66 undefined Unwind@10059c66(void) 14 0 +10059c90 Unwind@10059c90 undefined Unwind@10059c90(void) 8 1 +10059c98 Unwind@10059c98 undefined Unwind@10059c98(void) 14 0 +10059ca6 Unwind@10059ca6 undefined Unwind@10059ca6(void) 14 0 +10059cb4 Unwind@10059cb4 undefined Unwind@10059cb4(void) 14 0 +10059ce0 Unwind@10059ce0 undefined Unwind@10059ce0(void) 8 1 +10059d30 Unwind@10059d30 undefined Unwind@10059d30(void) 17 1 +10059d60 Unwind@10059d60 undefined Unwind@10059d60(void) 14 0 +10059d6e Unwind@10059d6e undefined Unwind@10059d6e(void) 14 0 +10059d7c Unwind@10059d7c undefined Unwind@10059d7c(void) 14 0 +10059d8a Unwind@10059d8a undefined Unwind@10059d8a(void) 14 0 +10059d98 Unwind@10059d98 undefined Unwind@10059d98(void) 14 0 +10059da6 Unwind@10059da6 undefined Unwind@10059da6(void) 14 0 +10059db4 Unwind@10059db4 undefined Unwind@10059db4(void) 14 0 +10059dc2 Unwind@10059dc2 undefined Unwind@10059dc2(void) 14 0 +10059dd0 Unwind@10059dd0 undefined Unwind@10059dd0(void) 14 0 +10059e10 Unwind@10059e10 undefined Unwind@10059e10(void) 8 1 +10059e40 Unwind@10059e40 undefined Unwind@10059e40(void) 8 1 +10059e70 Unwind@10059e70 undefined Unwind@10059e70(void) 8 1 +10059ea0 Unwind@10059ea0 undefined Unwind@10059ea0(void) 8 1 +10059ed0 Unwind@10059ed0 undefined Unwind@10059ed0(void) 8 1 +10059f00 Unwind@10059f00 undefined Unwind@10059f00(void) 8 1 +10059f30 Unwind@10059f30 undefined Unwind@10059f30(void) 8 1 +10059f60 Unwind@10059f60 undefined Unwind@10059f60(void) 8 1 +10059f90 Unwind@10059f90 undefined Unwind@10059f90(void) 11 1 +10059fc0 Unwind@10059fc0 undefined Unwind@10059fc0(void) 11 1 +10059ff0 Unwind@10059ff0 undefined Unwind@10059ff0(void) 8 1 +1005a020 Unwind@1005a020 undefined Unwind@1005a020(void) 9 0 +1005a050 Unwind@1005a050 undefined Unwind@1005a050(void) 11 1 +1005a080 Unwind@1005a080 undefined Unwind@1005a080(void) 8 1 +1005a0b0 Unwind@1005a0b0 undefined Unwind@1005a0b0(void) 8 1 +1005a0b8 Unwind@1005a0b8 undefined Unwind@1005a0b8(void) 8 1 +1005a0c0 Unwind@1005a0c0 undefined Unwind@1005a0c0(void) 8 1 +1005a0c8 Unwind@1005a0c8 undefined Unwind@1005a0c8(void) 8 1 +1005a0d0 Unwind@1005a0d0 undefined Unwind@1005a0d0(void) 8 1 +1005a0d8 Unwind@1005a0d8 undefined Unwind@1005a0d8(void) 8 1 +1005a0e0 Unwind@1005a0e0 undefined Unwind@1005a0e0(void) 8 1 +1005a0e8 Unwind@1005a0e8 undefined Unwind@1005a0e8(void) 8 1 +1005a0f0 Unwind@1005a0f0 undefined Unwind@1005a0f0(void) 14 0 +1005a0fe Unwind@1005a0fe undefined Unwind@1005a0fe(void) 8 1 +1005a106 Unwind@1005a106 undefined Unwind@1005a106(void) 8 1 +1005a10e Unwind@1005a10e undefined Unwind@1005a10e(void) 14 0 +1005a11c Unwind@1005a11c undefined Unwind@1005a11c(void) 14 0 +1005a12a Unwind@1005a12a undefined Unwind@1005a12a(void) 9 0 +1005a133 Unwind@1005a133 undefined Unwind@1005a133(void) 8 1 +1005a13b Unwind@1005a13b undefined Unwind@1005a13b(void) 8 1 +1005a160 Unwind@1005a160 undefined Unwind@1005a160(void) 8 1 +1005a168 Unwind@1005a168 undefined Unwind@1005a168(void) 8 1 +1005a170 Unwind@1005a170 undefined Unwind@1005a170(void) 8 1 +1005a178 Unwind@1005a178 undefined Unwind@1005a178(void) 8 1 +1005a180 Unwind@1005a180 undefined Unwind@1005a180(void) 8 1 +1005a188 Unwind@1005a188 undefined Unwind@1005a188(void) 8 1 +1005a190 Unwind@1005a190 undefined Unwind@1005a190(void) 8 1 +1005a198 Unwind@1005a198 undefined Unwind@1005a198(void) 8 1 +1005a1a0 Unwind@1005a1a0 undefined Unwind@1005a1a0(void) 8 1 +1005a1a8 Unwind@1005a1a8 undefined Unwind@1005a1a8(void) 8 1 +1005a1b0 Unwind@1005a1b0 undefined Unwind@1005a1b0(void) 14 0 +1005a1be Unwind@1005a1be undefined Unwind@1005a1be(void) 14 0 +1005a1cc Unwind@1005a1cc undefined Unwind@1005a1cc(void) 8 1 +1005a1d4 Unwind@1005a1d4 undefined Unwind@1005a1d4(void) 8 1 +1005a1dc Unwind@1005a1dc undefined Unwind@1005a1dc(void) 9 0 +1005a200 Unwind@1005a200 undefined Unwind@1005a200(void) 8 1 +1005a208 Unwind@1005a208 undefined Unwind@1005a208(void) 8 1 +1005a210 Unwind@1005a210 undefined Unwind@1005a210(void) 8 1 +1005a218 Unwind@1005a218 undefined Unwind@1005a218(void) 8 1 +1005a220 Unwind@1005a220 undefined Unwind@1005a220(void) 8 1 +1005a228 Unwind@1005a228 undefined Unwind@1005a228(void) 9 0 +1005a250 Unwind@1005a250 undefined Unwind@1005a250(void) 8 1 +1005a258 Unwind@1005a258 undefined Unwind@1005a258(void) 8 1 +1005a260 Unwind@1005a260 undefined Unwind@1005a260(void) 8 1 +1005a268 Unwind@1005a268 undefined Unwind@1005a268(void) 8 1 +1005a270 Unwind@1005a270 undefined Unwind@1005a270(void) 11 1 +1005a27b Unwind@1005a27b undefined Unwind@1005a27b(void) 8 1 +1005a283 Unwind@1005a283 undefined Unwind@1005a283(void) 8 1 +1005a28b Unwind@1005a28b undefined Unwind@1005a28b(void) 8 1 +1005a293 Unwind@1005a293 undefined Unwind@1005a293(void) 8 1 +1005a29b Unwind@1005a29b undefined Unwind@1005a29b(void) 8 1 +1005a2a3 Unwind@1005a2a3 undefined Unwind@1005a2a3(void) 8 1 +1005a2ab Unwind@1005a2ab undefined Unwind@1005a2ab(void) 8 1 +1005a2b3 Unwind@1005a2b3 undefined Unwind@1005a2b3(void) 8 1 +1005a2bb Unwind@1005a2bb undefined Unwind@1005a2bb(void) 14 0 +1005a2c9 Unwind@1005a2c9 undefined Unwind@1005a2c9(void) 14 0 +1005a2d7 Unwind@1005a2d7 undefined Unwind@1005a2d7(void) 9 0 +1005a2e0 Unwind@1005a2e0 undefined Unwind@1005a2e0(void) 12 0 +1005a2ec Unwind@1005a2ec undefined Unwind@1005a2ec(void) 8 1 +1005a2f4 Unwind@1005a2f4 undefined Unwind@1005a2f4(void) 8 1 +1005a320 Unwind@1005a320 undefined Unwind@1005a320(void) 8 1 +1005a328 Unwind@1005a328 undefined Unwind@1005a328(void) 8 1 +1005a330 Unwind@1005a330 undefined Unwind@1005a330(void) 8 1 +1005a338 Unwind@1005a338 undefined Unwind@1005a338(void) 8 1 +1005a340 Unwind@1005a340 undefined Unwind@1005a340(void) 8 1 +1005a348 Unwind@1005a348 undefined Unwind@1005a348(void) 8 1 +1005a350 Unwind@1005a350 undefined Unwind@1005a350(void) 8 1 +1005a380 Unwind@1005a380 undefined Unwind@1005a380(void) 8 1 +1005a388 Unwind@1005a388 undefined Unwind@1005a388(void) 8 1 +1005a390 Unwind@1005a390 undefined Unwind@1005a390(void) 8 1 +1005a398 Unwind@1005a398 undefined Unwind@1005a398(void) 8 1 +1005a3a0 Unwind@1005a3a0 undefined Unwind@1005a3a0(void) 8 1 +1005a3a8 Unwind@1005a3a8 undefined Unwind@1005a3a8(void) 8 1 +1005a3b0 Unwind@1005a3b0 undefined Unwind@1005a3b0(void) 8 1 +1005a3b8 Unwind@1005a3b8 undefined Unwind@1005a3b8(void) 8 1 +1005a3c0 Unwind@1005a3c0 undefined Unwind@1005a3c0(void) 8 1 +1005a3c8 Unwind@1005a3c8 undefined Unwind@1005a3c8(void) 8 1 +1005a3d0 Unwind@1005a3d0 undefined Unwind@1005a3d0(void) 14 0 +1005a3de Unwind@1005a3de undefined Unwind@1005a3de(void) 14 0 +1005a3ec Unwind@1005a3ec undefined Unwind@1005a3ec(void) 8 1 +1005a3f4 Unwind@1005a3f4 undefined Unwind@1005a3f4(void) 8 1 +1005a3fc Unwind@1005a3fc undefined Unwind@1005a3fc(void) 9 0 +1005a420 Unwind@1005a420 undefined Unwind@1005a420(void) 8 1 +1005a428 Unwind@1005a428 undefined Unwind@1005a428(void) 8 1 +1005a450 Unwind@1005a450 undefined Unwind@1005a450(void) 8 1 +1005a480 Unwind@1005a480 undefined Unwind@1005a480(void) 8 1 +1005a4b0 Unwind@1005a4b0 undefined Unwind@1005a4b0(void) 8 1 +1005a4e0 Unwind@1005a4e0 undefined Unwind@1005a4e0(void) 8 1 +1005a510 Unwind@1005a510 undefined Unwind@1005a510(void) 11 1 +1005a540 Unwind@1005a540 undefined Unwind@1005a540(void) 11 1 +1005a54b Unwind@1005a54b undefined Unwind@1005a54b(void) 8 1 +1005a570 Unwind@1005a570 undefined Unwind@1005a570(void) 8 1 +1005a578 Unwind@1005a578 undefined Unwind@1005a578(void) 8 1 +1005a5a0 Unwind@1005a5a0 undefined Unwind@1005a5a0(void) 8 1 +1005a5a8 Unwind@1005a5a8 undefined Unwind@1005a5a8(void) 8 1 +1005a5d0 Unwind@1005a5d0 undefined Unwind@1005a5d0(void) 11 1 +1005a5db Unwind@1005a5db undefined Unwind@1005a5db(void) 8 1 +1005a600 Unwind@1005a600 undefined Unwind@1005a600(void) 8 1 +1005a608 Unwind@1005a608 undefined Unwind@1005a608(void) 8 1 +1005a630 Unwind@1005a630 undefined Unwind@1005a630(void) 8 1 +1005a638 Unwind@1005a638 undefined Unwind@1005a638(void) 14 0 +1005a646 Unwind@1005a646 undefined Unwind@1005a646(void) 14 0 +1005a654 Unwind@1005a654 undefined Unwind@1005a654(void) 14 0 +1005a680 Unwind@1005a680 undefined Unwind@1005a680(void) 8 1 +1005a688 Unwind@1005a688 undefined Unwind@1005a688(void) 14 0 +1005a696 Unwind@1005a696 undefined Unwind@1005a696(void) 14 0 +1005a6a4 Unwind@1005a6a4 undefined Unwind@1005a6a4(void) 14 0 +1005a6d0 Unwind@1005a6d0 undefined Unwind@1005a6d0(void) 8 1 +1005a6d8 Unwind@1005a6d8 undefined Unwind@1005a6d8(void) 14 0 +1005a6e6 Unwind@1005a6e6 undefined Unwind@1005a6e6(void) 14 0 +1005a6f4 Unwind@1005a6f4 undefined Unwind@1005a6f4(void) 14 0 +1005a702 Unwind@1005a702 undefined Unwind@1005a702(void) 14 0 +1005a730 Unwind@1005a730 undefined Unwind@1005a730(void) 8 1 +1005a738 Unwind@1005a738 undefined Unwind@1005a738(void) 14 0 +1005a746 Unwind@1005a746 undefined Unwind@1005a746(void) 14 0 +1005a754 Unwind@1005a754 undefined Unwind@1005a754(void) 14 0 +1005a780 Unwind@1005a780 undefined Unwind@1005a780(void) 8 1 +1005a788 Unwind@1005a788 undefined Unwind@1005a788(void) 8 1 +1005a790 Unwind@1005a790 undefined Unwind@1005a790(void) 9 0 +1005a7c0 Unwind@1005a7c0 undefined Unwind@1005a7c0(void) 8 1 +1005a7c8 Unwind@1005a7c8 undefined Unwind@1005a7c8(void) 8 1 +1005a7f0 Unwind@1005a7f0 undefined Unwind@1005a7f0(void) 8 1 +1005a7f8 Unwind@1005a7f8 undefined Unwind@1005a7f8(void) 11 1 +1005a820 Unwind@1005a820 undefined Unwind@1005a820(void) 8 1 +1005a828 Unwind@1005a828 undefined Unwind@1005a828(void) 8 1 +1005a850 Unwind@1005a850 undefined Unwind@1005a850(void) 8 1 +1005a858 Unwind@1005a858 undefined Unwind@1005a858(void) 11 1 +1005a880 Unwind@1005a880 undefined Unwind@1005a880(void) 17 1 +1005a891 Unwind@1005a891 undefined Unwind@1005a891(void) 8 1 +1005a899 Unwind@1005a899 undefined Unwind@1005a899(void) 8 1 +1005a8c0 Unwind@1005a8c0 undefined Unwind@1005a8c0(void) 17 1 +1005a8d1 Unwind@1005a8d1 undefined Unwind@1005a8d1(void) 11 1 +1005a8dc Unwind@1005a8dc undefined Unwind@1005a8dc(void) 8 1 +1005a900 Unwind@1005a900 undefined Unwind@1005a900(void) 8 1 +1005a908 Unwind@1005a908 undefined Unwind@1005a908(void) 8 1 +1005a930 Unwind@1005a930 undefined Unwind@1005a930(void) 8 1 +1005a938 Unwind@1005a938 undefined Unwind@1005a938(void) 11 1 +1005a960 Unwind@1005a960 undefined Unwind@1005a960(void) 17 1 +1005a971 Unwind@1005a971 undefined Unwind@1005a971(void) 8 1 +1005a979 Unwind@1005a979 undefined Unwind@1005a979(void) 8 1 +1005a9a0 Unwind@1005a9a0 undefined Unwind@1005a9a0(void) 17 1 +1005a9b1 Unwind@1005a9b1 undefined Unwind@1005a9b1(void) 11 1 +1005a9bc Unwind@1005a9bc undefined Unwind@1005a9bc(void) 8 1 +1005a9e0 Unwind@1005a9e0 undefined Unwind@1005a9e0(void) 14 0 +1005a9ee Unwind@1005a9ee undefined Unwind@1005a9ee(void) 14 0 +1005a9fc Unwind@1005a9fc undefined Unwind@1005a9fc(void) 14 0 +1005aa0a Unwind@1005aa0a undefined Unwind@1005aa0a(void) 14 0 +1005aa18 Unwind@1005aa18 undefined Unwind@1005aa18(void) 8 1 +1005aa20 Unwind@1005aa20 undefined Unwind@1005aa20(void) 14 0 +1005aa2e Unwind@1005aa2e undefined Unwind@1005aa2e(void) 14 0 +1005aa3c Unwind@1005aa3c undefined Unwind@1005aa3c(void) 14 0 +1005aa4a Unwind@1005aa4a undefined Unwind@1005aa4a(void) 14 0 +1005aa80 Unwind@1005aa80 undefined Unwind@1005aa80(void) 8 1 +1005aa88 Unwind@1005aa88 undefined Unwind@1005aa88(void) 14 0 +1005aa96 Unwind@1005aa96 undefined Unwind@1005aa96(void) 8 1 +1005aa9e Unwind@1005aa9e undefined Unwind@1005aa9e(void) 14 0 +1005aad0 Unwind@1005aad0 undefined Unwind@1005aad0(void) 8 1 +1005aad8 Unwind@1005aad8 undefined Unwind@1005aad8(void) 8 1 +1005ab00 Unwind@1005ab00 undefined Unwind@1005ab00(void) 8 1 +1005ab08 Unwind@1005ab08 undefined Unwind@1005ab08(void) 11 1 +1005ab30 Unwind@1005ab30 undefined Unwind@1005ab30(void) 9 0 +1005ab60 Unwind@1005ab60 undefined Unwind@1005ab60(void) 9 0 +1005ab90 Unwind@1005ab90 undefined Unwind@1005ab90(void) 14 0 +1005ab9e Unwind@1005ab9e undefined Unwind@1005ab9e(void) 14 0 +1005abac Unwind@1005abac undefined Unwind@1005abac(void) 8 1 +1005abb4 Unwind@1005abb4 undefined Unwind@1005abb4(void) 8 1 +1005abbc Unwind@1005abbc undefined Unwind@1005abbc(void) 8 1 +1005abc4 Unwind@1005abc4 undefined Unwind@1005abc4(void) 8 1 +1005abcc Unwind@1005abcc undefined Unwind@1005abcc(void) 8 1 +1005abd4 Unwind@1005abd4 undefined Unwind@1005abd4(void) 8 1 +1005abdc Unwind@1005abdc undefined Unwind@1005abdc(void) 14 0 +1005abea Unwind@1005abea undefined Unwind@1005abea(void) 14 0 +1005abf8 Unwind@1005abf8 undefined Unwind@1005abf8(void) 14 0 +1005ac06 Unwind@1005ac06 undefined Unwind@1005ac06(void) 14 0 +1005ac14 Unwind@1005ac14 undefined Unwind@1005ac14(void) 14 0 +1005ac40 Unwind@1005ac40 undefined Unwind@1005ac40(void) 8 1 +1005ac48 Unwind@1005ac48 undefined Unwind@1005ac48(void) 8 1 +1005ac70 Unwind@1005ac70 undefined Unwind@1005ac70(void) 8 1 +1005ac78 Unwind@1005ac78 undefined Unwind@1005ac78(void) 11 1 +1005aca0 Unwind@1005aca0 undefined Unwind@1005aca0(void) 8 1 +1005aca8 Unwind@1005aca8 undefined Unwind@1005aca8(void) 8 1 +1005acb0 Unwind@1005acb0 undefined Unwind@1005acb0(void) 8 1 +1005acb8 Unwind@1005acb8 undefined Unwind@1005acb8(void) 8 1 +1005acc0 Unwind@1005acc0 undefined Unwind@1005acc0(void) 8 1 +1005acc8 Unwind@1005acc8 undefined Unwind@1005acc8(void) 8 1 +1005acd0 Unwind@1005acd0 undefined Unwind@1005acd0(void) 8 1 +1005acd8 Unwind@1005acd8 undefined Unwind@1005acd8(void) 14 0 +1005ace6 Unwind@1005ace6 undefined Unwind@1005ace6(void) 11 1 +1005acf1 Unwind@1005acf1 undefined Unwind@1005acf1(void) 14 0 +1005acff Unwind@1005acff undefined Unwind@1005acff(void) 8 1 +1005ad07 Unwind@1005ad07 undefined Unwind@1005ad07(void) 8 1 +1005ad0f Unwind@1005ad0f undefined Unwind@1005ad0f(void) 9 0 +1005ad18 Unwind@1005ad18 undefined Unwind@1005ad18(void) 9 0 +1005ad40 Unwind@1005ad40 undefined Unwind@1005ad40(void) 8 1 +1005ad48 Unwind@1005ad48 undefined Unwind@1005ad48(void) 8 1 +1005ad50 Unwind@1005ad50 undefined Unwind@1005ad50(void) 8 1 +1005ad80 Unwind@1005ad80 undefined Unwind@1005ad80(void) 8 1 +1005ad88 Unwind@1005ad88 undefined Unwind@1005ad88(void) 8 1 +1005ad90 Unwind@1005ad90 undefined Unwind@1005ad90(void) 8 1 +1005ad98 Unwind@1005ad98 undefined Unwind@1005ad98(void) 8 1 +1005ada0 Unwind@1005ada0 undefined Unwind@1005ada0(void) 8 1 +1005ada8 Unwind@1005ada8 undefined Unwind@1005ada8(void) 8 1 +1005add0 Unwind@1005add0 undefined Unwind@1005add0(void) 8 1 +1005add8 Unwind@1005add8 undefined Unwind@1005add8(void) 11 1 +1005ade3 Unwind@1005ade3 undefined Unwind@1005ade3(void) 8 1 +1005adeb Unwind@1005adeb undefined Unwind@1005adeb(void) 8 1 +1005adf3 Unwind@1005adf3 undefined Unwind@1005adf3(void) 8 1 +1005adfb Unwind@1005adfb undefined Unwind@1005adfb(void) 8 1 +1005ae03 Unwind@1005ae03 undefined Unwind@1005ae03(void) 8 1 +1005ae0b Unwind@1005ae0b undefined Unwind@1005ae0b(void) 8 1 +1005ae13 Unwind@1005ae13 undefined Unwind@1005ae13(void) 8 1 +1005ae1b Unwind@1005ae1b undefined Unwind@1005ae1b(void) 8 1 +1005ae23 Unwind@1005ae23 undefined Unwind@1005ae23(void) 8 1 +1005ae50 Unwind@1005ae50 undefined Unwind@1005ae50(void) 8 1 +1005ae58 Unwind@1005ae58 undefined Unwind@1005ae58(void) 11 1 +1005ae63 Unwind@1005ae63 undefined Unwind@1005ae63(void) 8 1 +1005ae6b Unwind@1005ae6b undefined Unwind@1005ae6b(void) 8 1 +1005ae73 Unwind@1005ae73 undefined Unwind@1005ae73(void) 8 1 +1005ae7b Unwind@1005ae7b undefined Unwind@1005ae7b(void) 8 1 +1005ae83 Unwind@1005ae83 undefined Unwind@1005ae83(void) 8 1 +1005ae8b Unwind@1005ae8b undefined Unwind@1005ae8b(void) 11 1 +1005ae96 Unwind@1005ae96 undefined Unwind@1005ae96(void) 8 1 +1005ae9e Unwind@1005ae9e undefined Unwind@1005ae9e(void) 8 1 +1005aea6 Unwind@1005aea6 undefined Unwind@1005aea6(void) 8 1 +1005aeae Unwind@1005aeae undefined Unwind@1005aeae(void) 8 1 +1005aeb6 Unwind@1005aeb6 undefined Unwind@1005aeb6(void) 8 1 +1005aebe Unwind@1005aebe undefined Unwind@1005aebe(void) 8 1 +1005aec6 Unwind@1005aec6 undefined Unwind@1005aec6(void) 11 1 +1005aed1 Unwind@1005aed1 undefined Unwind@1005aed1(void) 8 1 +1005aed9 Unwind@1005aed9 undefined Unwind@1005aed9(void) 11 1 +1005aee4 Unwind@1005aee4 undefined Unwind@1005aee4(void) 11 1 +1005af10 Unwind@1005af10 undefined Unwind@1005af10(void) 14 0 +1005af1e Unwind@1005af1e undefined Unwind@1005af1e(void) 14 0 +1005af2c Unwind@1005af2c undefined Unwind@1005af2c(void) 14 0 +1005af3a Unwind@1005af3a undefined Unwind@1005af3a(void) 14 0 +1005af48 Unwind@1005af48 undefined Unwind@1005af48(void) 14 0 +1005af56 Unwind@1005af56 undefined Unwind@1005af56(void) 14 0 +1005af80 Unwind@1005af80 undefined Unwind@1005af80(void) 14 0 +1005af8e Unwind@1005af8e undefined Unwind@1005af8e(void) 14 0 +1005af9c Unwind@1005af9c undefined Unwind@1005af9c(void) 14 0 +1005afaa Unwind@1005afaa undefined Unwind@1005afaa(void) 14 0 +1005afb8 Unwind@1005afb8 undefined Unwind@1005afb8(void) 14 0 +1005afc6 Unwind@1005afc6 undefined Unwind@1005afc6(void) 14 0 +1005b000 Unwind@1005b000 undefined Unwind@1005b000(void) 14 0 +1005b00e Unwind@1005b00e undefined Unwind@1005b00e(void) 14 0 +1005b01c Unwind@1005b01c undefined Unwind@1005b01c(void) 14 0 +1005b050 Unwind@1005b050 undefined Unwind@1005b050(void) 8 1 +1005b058 Unwind@1005b058 undefined Unwind@1005b058(void) 8 1 +1005b060 Unwind@1005b060 undefined Unwind@1005b060(void) 8 1 +1005b068 Unwind@1005b068 undefined Unwind@1005b068(void) 8 1 +1005b070 Unwind@1005b070 undefined Unwind@1005b070(void) 8 1 +1005b0a0 Unwind@1005b0a0 undefined Unwind@1005b0a0(void) 8 1 +1005b0a8 Unwind@1005b0a8 undefined Unwind@1005b0a8(void) 8 1 +1005b0b0 Unwind@1005b0b0 undefined Unwind@1005b0b0(void) 8 1 +1005b0b8 Unwind@1005b0b8 undefined Unwind@1005b0b8(void) 8 1 +1005b0c0 Unwind@1005b0c0 undefined Unwind@1005b0c0(void) 8 1 +1005b0c8 Unwind@1005b0c8 undefined Unwind@1005b0c8(void) 8 1 +1005b0f0 Unwind@1005b0f0 undefined Unwind@1005b0f0(void) 8 1 +1005b0f8 Unwind@1005b0f8 undefined Unwind@1005b0f8(void) 8 1 +1005b120 Unwind@1005b120 undefined Unwind@1005b120(void) 8 1 +1005b150 Unwind@1005b150 undefined Unwind@1005b150(void) 8 1 +1005b180 Unwind@1005b180 undefined Unwind@1005b180(void) 8 1 +1005b188 Unwind@1005b188 undefined Unwind@1005b188(void) 8 1 +1005b1b0 Unwind@1005b1b0 undefined Unwind@1005b1b0(void) 8 1 +1005b1b8 Unwind@1005b1b8 undefined Unwind@1005b1b8(void) 8 1 +1005b1e0 Unwind@1005b1e0 undefined Unwind@1005b1e0(void) 11 1 +1005b1eb Unwind@1005b1eb undefined Unwind@1005b1eb(void) 11 1 +1005b1f6 Unwind@1005b1f6 undefined Unwind@1005b1f6(void) 11 1 +1005b201 Unwind@1005b201 undefined Unwind@1005b201(void) 11 1 +1005b20c Unwind@1005b20c undefined Unwind@1005b20c(void) 14 1 +1005b21a Unwind@1005b21a undefined Unwind@1005b21a(void) 14 1 +1005b228 Unwind@1005b228 undefined Unwind@1005b228(void) 14 1 +1005b236 Unwind@1005b236 undefined Unwind@1005b236(void) 14 1 +1005b244 Unwind@1005b244 undefined Unwind@1005b244(void) 14 1 +1005b252 Unwind@1005b252 undefined Unwind@1005b252(void) 8 1 +1005b25a Unwind@1005b25a undefined Unwind@1005b25a(void) 8 1 +1005b262 Unwind@1005b262 undefined Unwind@1005b262(void) 8 1 +1005b26a Unwind@1005b26a undefined Unwind@1005b26a(void) 8 1 +1005b272 Unwind@1005b272 undefined Unwind@1005b272(void) 8 1 +1005b27a Unwind@1005b27a undefined Unwind@1005b27a(void) 8 1 +1005b282 Unwind@1005b282 undefined Unwind@1005b282(void) 8 1 +1005b28a Unwind@1005b28a undefined Unwind@1005b28a(void) 8 1 +1005b292 Unwind@1005b292 undefined Unwind@1005b292(void) 8 1 +1005b29a Unwind@1005b29a undefined Unwind@1005b29a(void) 8 1 +1005b2c0 Unwind@1005b2c0 undefined Unwind@1005b2c0(void) 8 1 +1005b2c8 Unwind@1005b2c8 undefined Unwind@1005b2c8(void) 8 1 +1005b2d0 Unwind@1005b2d0 undefined Unwind@1005b2d0(void) 11 1 +1005b2db Unwind@1005b2db undefined Unwind@1005b2db(void) 8 1 +1005b2e3 Unwind@1005b2e3 undefined Unwind@1005b2e3(void) 8 1 +1005b310 Unwind@1005b310 undefined Unwind@1005b310(void) 8 1 +1005b318 Unwind@1005b318 undefined Unwind@1005b318(void) 8 1 +1005b320 Unwind@1005b320 undefined Unwind@1005b320(void) 9 0 +1005b350 Unwind@1005b350 undefined Unwind@1005b350(void) 8 1 +1005b358 Unwind@1005b358 undefined Unwind@1005b358(void) 8 1 +1005b360 Unwind@1005b360 undefined Unwind@1005b360(void) 9 0 +1005b390 Unwind@1005b390 undefined Unwind@1005b390(void) 8 1 +1005b398 Unwind@1005b398 undefined Unwind@1005b398(void) 11 1 +1005b3a3 Unwind@1005b3a3 undefined Unwind@1005b3a3(void) 11 1 +1005b3ae Unwind@1005b3ae undefined Unwind@1005b3ae(void) 11 1 +1005b3b9 Unwind@1005b3b9 undefined Unwind@1005b3b9(void) 11 1 +1005b3c4 Unwind@1005b3c4 undefined Unwind@1005b3c4(void) 14 1 +1005b3d2 Unwind@1005b3d2 undefined Unwind@1005b3d2(void) 8 1 +1005b3da Unwind@1005b3da undefined Unwind@1005b3da(void) 14 1 +1005b3e8 Unwind@1005b3e8 undefined Unwind@1005b3e8(void) 8 1 +1005b3f0 Unwind@1005b3f0 undefined Unwind@1005b3f0(void) 8 1 +1005b3f8 Unwind@1005b3f8 undefined Unwind@1005b3f8(void) 14 1 +1005b406 Unwind@1005b406 undefined Unwind@1005b406(void) 8 1 +1005b40e Unwind@1005b40e undefined Unwind@1005b40e(void) 8 1 +1005b416 Unwind@1005b416 undefined Unwind@1005b416(void) 14 1 +1005b424 Unwind@1005b424 undefined Unwind@1005b424(void) 8 1 +1005b42c Unwind@1005b42c undefined Unwind@1005b42c(void) 8 1 +1005b434 Unwind@1005b434 undefined Unwind@1005b434(void) 14 1 +1005b442 Unwind@1005b442 undefined Unwind@1005b442(void) 9 0 +1005b44b Unwind@1005b44b undefined Unwind@1005b44b(void) 9 0 +1005b454 Unwind@1005b454 undefined Unwind@1005b454(void) 9 0 +1005b45d Unwind@1005b45d undefined Unwind@1005b45d(void) 9 0 +1005b490 Unwind@1005b490 undefined Unwind@1005b490(void) 8 1 +1005b4c0 Unwind@1005b4c0 undefined Unwind@1005b4c0(void) 8 1 +1005b4f0 Unwind@1005b4f0 undefined Unwind@1005b4f0(void) 8 1 +1005b520 Unwind@1005b520 undefined Unwind@1005b520(void) 8 1 +1005b550 Unwind@1005b550 undefined Unwind@1005b550(void) 8 1 +1005b5a0 Unwind@1005b5a0 undefined Unwind@1005b5a0(void) 8 1 +1005b5a8 Unwind@1005b5a8 undefined Unwind@1005b5a8(void) 11 1 +1005b5d0 Unwind@1005b5d0 undefined Unwind@1005b5d0(void) 8 1 +1005b600 Unwind@1005b600 undefined Unwind@1005b600(void) 8 1 +1005b630 Unwind@1005b630 undefined Unwind@1005b630(void) 8 1 +1005b660 Unwind@1005b660 undefined Unwind@1005b660(void) 8 1 +1005b690 Unwind@1005b690 undefined Unwind@1005b690(void) 11 1 +1005b6c0 Unwind@1005b6c0 undefined Unwind@1005b6c0(void) 11 1 +1005b6cb Unwind@1005b6cb undefined Unwind@1005b6cb(void) 8 1 +1005b6f0 Unwind@1005b6f0 undefined Unwind@1005b6f0(void) 11 1 +1005b6fb Unwind@1005b6fb undefined Unwind@1005b6fb(void) 8 1 +1005b720 Unwind@1005b720 undefined Unwind@1005b720(void) 8 1 +1005b728 Unwind@1005b728 undefined Unwind@1005b728(void) 8 1 +1005b730 Unwind@1005b730 undefined Unwind@1005b730(void) 8 1 +1005b738 Unwind@1005b738 undefined Unwind@1005b738(void) 8 1 +1005b740 Unwind@1005b740 undefined Unwind@1005b740(void) 8 1 +1005b770 Unwind@1005b770 undefined Unwind@1005b770(void) 8 1 +1005b778 Unwind@1005b778 undefined Unwind@1005b778(void) 8 1 +1005b7a0 Unwind@1005b7a0 undefined Unwind@1005b7a0(void) 8 1 +1005b7a8 Unwind@1005b7a8 undefined Unwind@1005b7a8(void) 8 1 +1005b7d0 Unwind@1005b7d0 undefined Unwind@1005b7d0(void) 8 1 +1005b7d8 Unwind@1005b7d8 undefined Unwind@1005b7d8(void) 8 1 +1005b800 Unwind@1005b800 undefined Unwind@1005b800(void) 8 1 +1005b830 Unwind@1005b830 undefined Unwind@1005b830(void) 14 0 +1005b83e Unwind@1005b83e undefined Unwind@1005b83e(void) 14 0 +1005b84c Unwind@1005b84c undefined Unwind@1005b84c(void) 14 0 +1005b85a Unwind@1005b85a undefined Unwind@1005b85a(void) 14 0 +1005b868 Unwind@1005b868 undefined Unwind@1005b868(void) 14 0 +1005b876 Unwind@1005b876 undefined Unwind@1005b876(void) 14 0 +1005b884 Unwind@1005b884 undefined Unwind@1005b884(void) 14 0 +1005b892 Unwind@1005b892 undefined Unwind@1005b892(void) 14 0 +1005b8a0 Unwind@1005b8a0 undefined Unwind@1005b8a0(void) 14 0 +1005b8ae Unwind@1005b8ae undefined Unwind@1005b8ae(void) 14 0 +1005b8bc Unwind@1005b8bc undefined Unwind@1005b8bc(void) 14 0 +1005b8ca Unwind@1005b8ca undefined Unwind@1005b8ca(void) 14 0 +1005b900 Unwind@1005b900 undefined Unwind@1005b900(void) 8 1 +1005b930 Unwind@1005b930 undefined Unwind@1005b930(void) 8 1 +1005b960 Unwind@1005b960 undefined Unwind@1005b960(void) 8 1 +1005b990 Unwind@1005b990 undefined Unwind@1005b990(void) 8 1 +1005b9c0 Unwind@1005b9c0 undefined Unwind@1005b9c0(void) 8 1 +1005b9f0 Unwind@1005b9f0 undefined Unwind@1005b9f0(void) 11 1 +1005ba20 Unwind@1005ba20 undefined Unwind@1005ba20(void) 10 1 +1005ba2a Unwind@1005ba2a undefined Unwind@1005ba2a(void) 10 1 +1005ba50 Unwind@1005ba50 undefined Unwind@1005ba50(void) 10 1 +1005ba5a Unwind@1005ba5a undefined Unwind@1005ba5a(void) 10 1 +1005ba8c ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005baa0 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bab4 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bac8 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005badc ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005baf0 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb04 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb18 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb2c ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb40 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb54 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb68 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb7c ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bb90 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bba4 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bbb8 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bbcc ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bbe0 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bbf4 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc08 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc1c ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc30 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc44 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc58 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc6c ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc80 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bc94 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bca8 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bcbc ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bcd0 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bce4 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bcf8 ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ void ?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ(byte * param_1, undefined4 param_2) 8 0 +1005bd0c ?A0xda2128e9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0xda2128e9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ(undefined4 param_1, char * param_2) 13 0 +1005bf34 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bf48 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bf5c ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bf70 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bf84 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bf98 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bfac ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bfc0 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bfd4 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bfe8 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005bffc ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c010 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c024 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c038 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c04c ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c060 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c074 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c088 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c09c ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c0b0 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c0c4 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c0d8 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c0ec ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c100 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c114 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c128 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c13c ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c150 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c164 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c178 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c18c ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c1a0 ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ void ?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ(byte * param_1, undefined4 param_2) 8 0 +1005c1b4 ?A0xcc57d9b2.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0xcc57d9b2.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ(undefined4 param_1, char * param_2) 13 0 +1005c3e4 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c3f8 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c40c ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c420 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c434 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c448 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c45c ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c470 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c484 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c498 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c4ac ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c4c0 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c4d4 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c4e8 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c4fc ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c510 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c524 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c538 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c54c ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c560 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c574 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c588 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c59c ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c5b0 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c5c4 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c5d8 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c5ec ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c600 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c614 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c628 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c63c ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c650 ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ void ?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ(byte * param_1, undefined4 param_2) 8 0 +1005c664 ?A0x4ac3ab1c.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0x4ac3ab1c.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ(undefined4 param_1, char * param_2) 13 0 +1005c894 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c8a8 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c8bc ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c8d0 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c8e4 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c8f8 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c90c ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c920 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c934 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c948 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c95c ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c970 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c984 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c998 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c9ac ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c9c0 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c9d4 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c9e8 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005c9fc ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca10 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca24 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca38 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca4c ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca60 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca74 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca88 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ca9c ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cab0 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cac4 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cad8 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005caec ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cb00 ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ void ?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ(byte * param_1, undefined4 param_2) 8 0 +1005cb14 ?A0x6ea962a9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0x6ea962a9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ(undefined4 param_1, char * param_2) 13 0 +1005cd44 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cd58 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cd6c ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cd80 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cd94 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cda8 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cdbc ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cdd0 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cde4 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cdf8 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce0c ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce20 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce34 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce48 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce5c ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce70 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce84 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ce98 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ceac ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cec0 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005ced4 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cee8 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cefc ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf10 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf24 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf38 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf4c ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf60 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf74 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf88 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cf9c ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005cfb0 ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ void ?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ(byte * param_1) 8 0 +1005cfc4 ?A0x56a9090b.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0x56a9090b.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ(void) 13 0 +1005d1f4 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d208 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d21c ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d230 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d244 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d258 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d26c ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d280 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d294 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d2a8 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d2bc ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d2d0 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d2e4 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d2f8 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d30c ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d320 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d334 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d348 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d35c ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d370 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d384 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d398 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d3ac ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d3c0 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d3d4 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d3e8 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d3fc ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d410 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d424 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d438 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d44c ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ(byte * param_1, byte * param_2) 8 0 +1005d460 ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ void ?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ(byte * param_1, undefined4 param_2) 8 0 +1005d474 ?A0xa8d5f844.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0xa8d5f844.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ(undefined4 param_1, char * param_2) 13 0 +1005d6a0 FUN_1005d6a0 undefined FUN_1005d6a0(void) 106 2 +1005d744 ?A0xd56818f8.??__E?Initialized@CurrentDomain@@@$$Q2HA@@YMXXZ void ?A0xd56818f8.??__E?Initialized@CurrentDomain@@@$$Q2HA@@YMXXZ(undefined4 param_1, int param_2) 7 0 +1005d758 ?A0xd56818f8.??__E?Uninitialized@CurrentDomain@@@$$Q2HA@@YMXXZ void ?A0xd56818f8.??__E?Uninitialized@CurrentDomain@@@$$Q2HA@@YMXXZ(undefined4 param_1, int param_2) 7 0 +1005d76c ?A0xd56818f8.??__E?IsDefaultDomain@CurrentDomain@@@$$Q2_NA@@YMXXZ void ?A0xd56818f8.??__E?IsDefaultDomain@CurrentDomain@@@$$Q2_NA@@YMXXZ(undefined4 param_1, uint param_2) 7 0 +1005d780 ?A0xd56818f8.??__E?InitializedVtables@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ void ?A0xd56818f8.??__E?InitializedVtables@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ(undefined4 param_1, undefined4 param_2) 7 0 +1005d794 ?A0xd56818f8.??__E?InitializedNative@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ void ?A0xd56818f8.??__E?InitializedNative@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ(undefined4 param_1, int param_2) 7 0 +1005d7a8 ?A0xd56818f8.??__E?InitializedPerProcess@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ void ?A0xd56818f8.??__E?InitializedPerProcess@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ(undefined4 param_1, uint param_2) 7 0 +1005d7bc ?A0xd56818f8.??__E?InitializedPerAppDomain@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ void ?A0xd56818f8.??__E?InitializedPerAppDomain@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ(undefined4 param_1, int param_2) 7 0 +1005d7fc ?A0xda2128e9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0xda2128e9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ(void) 11 0 +1005d824 ??__FfsLogger@?1??_GetFSLogger@CLoggerSelect@@SAAAVCWrapLogger@@XZ@YMXXZ void ??__FfsLogger@?1??_GetFSLogger@CLoggerSelect@@SAAAVCWrapLogger@@XZ@YMXXZ(char * param_1, int param_2, char * param_3, int param_4, byte param_5) 81 0 +1005d894 ?A0xcc57d9b2.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0xcc57d9b2.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ(void) 11 0 +1005d8b4 ?A0x4ac3ab1c.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0x4ac3ab1c.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ(void) 11 0 +1005d8d4 ?A0x6ea962a9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0x6ea962a9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ(void) 11 0 +1005d8f4 ?A0x56a9090b.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0x56a9090b.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ(void) 11 0 +1005d914 ?A0xa8d5f844.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ void ?A0xa8d5f844.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ(void) 11 0 +1005d930 FUN_1005d930 undefined FUN_1005d930(void) 67 2 memset +1005d980 FUN_1005d980 undefined FUN_1005d980(void) 143 2 +1005da0f FUN_1005da0f undefined FUN_1005da0f(void) 10 1 +1005da19 FUN_1005da19 undefined FUN_1005da19(void) 10 1 diff --git a/analysis/ghidra/exports/aaMxDataConsumer.dll.ghidra.md b/analysis/ghidra/exports/aaMxDataConsumer.dll.ghidra.md new file mode 100644 index 0000000..a33fff5 --- /dev/null +++ b/analysis/ghidra/exports/aaMxDataConsumer.dll.ghidra.md @@ -0,0 +1,3004 @@ +# aaMxDataConsumer.dll + +## Program + +- Language: `x86:LE:32:default` +- Compiler spec: `windows` +- Image base: `10000000` +- Executable format: `Portable Executable (PE)` + +## Memory Blocks + +| Name | Start | End | Size | R | W | X | +| --- | ---: | ---: | ---: | :---: | :---: | :---: | +| `Headers` | `10000000` | `100003ff` | 1024 | Y | | | +| `.text` | `10001000` | `1005dbff` | 379904 | Y | | Y | +| `.rdata` | `1005e000` | `100af1ff` | 332288 | Y | | | +| `.data` | `100b0000` | `100cd59b` | 120220 | Y | Y | | +| `.rsrc` | `100ce000` | `100e05ff` | 75264 | Y | | | +| `.reloc` | `100e1000` | `100e73ff` | 25600 | Y | | | +| `tdb` | `ffdff000` | `ffdfffff` | 4096 | Y | Y | | + +## External Imports + +- `ADVAPI32.DLL::RegCloseKey` +- `ADVAPI32.DLL::RegOpenKeyExW` +- `ADVAPI32.DLL::RegQueryValueExW` +- `ATL100.DLL::AtlCallTermFunc` +- `ATL100.DLL::AtlComModuleGetClassObject` +- `ATL100.DLL::AtlCreateRegistrar` +- `ATL100.DLL::AtlGetPerUserRegistration` +- `ATL100.DLL::AtlInternalQueryInterface` +- `ATL100.DLL::AtlLoadTypeLib` +- `ATL100.DLL::AtlRegisterClassCategoriesHelper` +- `ATL100.DLL::AtlUpdateRegistryFromResourceD` +- `DBGHELP.DLL::MiniDumpWriteDump` +- `KERNEL32.DLL::CloseHandle` +- `KERNEL32.DLL::CreateDirectoryW` +- `KERNEL32.DLL::CreateEventW` +- `KERNEL32.DLL::CreateFileW` +- `KERNEL32.DLL::CreateThread` +- `KERNEL32.DLL::DecodePointer` +- `KERNEL32.DLL::DeleteCriticalSection` +- `KERNEL32.DLL::DeleteFileW` +- `KERNEL32.DLL::DisableThreadLibraryCalls` +- `KERNEL32.DLL::EncodePointer` +- `KERNEL32.DLL::EnterCriticalSection` +- `KERNEL32.DLL::FindClose` +- `KERNEL32.DLL::FindFirstFileW` +- `KERNEL32.DLL::FindNextFileW` +- `KERNEL32.DLL::FormatMessageW` +- `KERNEL32.DLL::FreeLibrary` +- `KERNEL32.DLL::GetCurrentProcess` +- `KERNEL32.DLL::GetCurrentProcessId` +- `KERNEL32.DLL::GetCurrentThreadId` +- `KERNEL32.DLL::GetLastError` +- `KERNEL32.DLL::GetLocalTime` +- `KERNEL32.DLL::GetModuleFileNameW` +- `KERNEL32.DLL::GetModuleHandleW` +- `KERNEL32.DLL::GetProcAddress` +- `KERNEL32.DLL::GetSystemDirectoryW` +- `KERNEL32.DLL::GetSystemTime` +- `KERNEL32.DLL::GetSystemTimeAsFileTime` +- `KERNEL32.DLL::GetTickCount` +- `KERNEL32.DLL::GetWindowsDirectoryW` +- `KERNEL32.DLL::InitializeCriticalSection` +- `KERNEL32.DLL::InitializeCriticalSectionAndSpinCount` +- `KERNEL32.DLL::InterlockedCompareExchange` +- `KERNEL32.DLL::InterlockedDecrement` +- `KERNEL32.DLL::InterlockedExchange` +- `KERNEL32.DLL::InterlockedIncrement` +- `KERNEL32.DLL::IsDebuggerPresent` +- `KERNEL32.DLL::LeaveCriticalSection` +- `KERNEL32.DLL::LoadLibraryExW` +- `KERNEL32.DLL::LoadLibraryW` +- `KERNEL32.DLL::LocalAlloc` +- `KERNEL32.DLL::LocalFree` +- `KERNEL32.DLL::MultiByteToWideChar` +- `KERNEL32.DLL::QueryPerformanceCounter` +- `KERNEL32.DLL::RaiseException` +- `KERNEL32.DLL::ResetEvent` +- `KERNEL32.DLL::SetEvent` +- `KERNEL32.DLL::SetUnhandledExceptionFilter` +- `KERNEL32.DLL::Sleep` +- `KERNEL32.DLL::SystemTimeToFileTime` +- `KERNEL32.DLL::TerminateProcess` +- `KERNEL32.DLL::UnhandledExceptionFilter` +- `KERNEL32.DLL::WaitForSingleObject` +- `KERNEL32.DLL::lstrlenA` +- `KERNEL32.DLL::lstrlenW` +- `MSCOREE.DLL::_CorDllMain` +- `MSVCP100.DLL::std::_BADOFF` +- `MSVCP100.DLL::std::_Container_base0::_Orphan_all` +- `MSVCP100.DLL::std::_Xlength_error` +- `MSVCP100.DLL::std::_Xout_of_range` +- `MSVCP100.DLL::std::basic_ios_>::basic_ios_>` +- `MSVCP100.DLL::std::basic_ios_>::fill` +- `MSVCP100.DLL::std::basic_ios_>::rdbuf` +- `MSVCP100.DLL::std::basic_ios_>::setstate` +- `MSVCP100.DLL::std::basic_ios_>::tie` +- `MSVCP100.DLL::std::basic_ios_>::~basic_ios_>` +- `MSVCP100.DLL::std::basic_iostream_>::basic_iostream_>` +- `MSVCP100.DLL::std::basic_iostream_>::~basic_iostream_>` +- `MSVCP100.DLL::std::basic_ostream_>::_Osfx` +- `MSVCP100.DLL::std::basic_ostream_>::flush` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_ostream_>::operator<<` +- `MSVCP100.DLL::std::basic_streambuf_>::_Lock` +- `MSVCP100.DLL::std::basic_streambuf_>::_Pninc` +- `MSVCP100.DLL::std::basic_streambuf_>::_Unlock` +- `MSVCP100.DLL::std::basic_streambuf_>::basic_streambuf_>` +- `MSVCP100.DLL::std::basic_streambuf_>::eback` +- `MSVCP100.DLL::std::basic_streambuf_>::egptr` +- `MSVCP100.DLL::std::basic_streambuf_>::epptr` +- `MSVCP100.DLL::std::basic_streambuf_>::gbump` +- `MSVCP100.DLL::std::basic_streambuf_>::gptr` +- `MSVCP100.DLL::std::basic_streambuf_>::imbue` +- `MSVCP100.DLL::std::basic_streambuf_>::pbase` +- `MSVCP100.DLL::std::basic_streambuf_>::pbump` +- `MSVCP100.DLL::std::basic_streambuf_>::pptr` +- `MSVCP100.DLL::std::basic_streambuf_>::setbuf` +- `MSVCP100.DLL::std::basic_streambuf_>::setg` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::setp` +- `MSVCP100.DLL::std::basic_streambuf_>::showmanyc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputc` +- `MSVCP100.DLL::std::basic_streambuf_>::sputn` +- `MSVCP100.DLL::std::basic_streambuf_>::sync` +- `MSVCP100.DLL::std::basic_streambuf_>::uflow` +- `MSVCP100.DLL::std::basic_streambuf_>::xsgetn` +- `MSVCP100.DLL::std::basic_streambuf_>::xsputn` +- `MSVCP100.DLL::std::basic_streambuf_>::~basic_streambuf_>` +- `MSVCP100.DLL::std::ends` +- `MSVCP100.DLL::std::ios_base::flags` +- `MSVCP100.DLL::std::ios_base::good` +- `MSVCP100.DLL::std::ios_base::setf` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::ios_base::width` +- `MSVCP100.DLL::std::locale::facet::_Incref` +- `MSVCP100.DLL::std::uncaught_exception` +- `MSVCR100.DLL::_CxxThrowException` +- `MSVCR100.DLL::__CppXcptFilter` +- `MSVCR100.DLL::__CxxDetectRethrow` +- `MSVCR100.DLL::__CxxExceptionFilter` +- `MSVCR100.DLL::__CxxFrameHandler3` +- `MSVCR100.DLL::__CxxQueryExceptionSize` +- `MSVCR100.DLL::__CxxRegisterExceptionObject` +- `MSVCR100.DLL::__CxxUnregisterExceptionObject` +- `MSVCR100.DLL::__ExceptionPtrCopy` +- `MSVCR100.DLL::__FrameUnwindFilter` +- `MSVCR100.DLL::__clean_type_info_names_internal` +- `MSVCR100.DLL::__dllonexit` +- `MSVCR100.DLL::_amsg_exit` +- `MSVCR100.DLL::_cexit` +- `MSVCR100.DLL::_crt_debugger_hook` +- `MSVCR100.DLL::_lock` +- `MSVCR100.DLL::_makepath_s` +- `MSVCR100.DLL::_malloc_crt` +- `MSVCR100.DLL::_onexit` +- `MSVCR100.DLL::_recalloc` +- `MSVCR100.DLL::_set_se_translator` +- `MSVCR100.DLL::_snwprintf_s` +- `MSVCR100.DLL::_splitpath_s` +- `MSVCR100.DLL::_unlock` +- `MSVCR100.DLL::_vsnwprintf_s` +- `MSVCR100.DLL::_wsplitpath_s` +- `MSVCR100.DLL::calloc` +- `MSVCR100.DLL::clock` +- `MSVCR100.DLL::encoded_null` +- `MSVCR100.DLL::except_handler4_common` +- `MSVCR100.DLL::free` +- `MSVCR100.DLL::initterm` +- `MSVCR100.DLL::initterm_e` +- `MSVCR100.DLL::ldiv` +- `MSVCR100.DLL::memcpy` +- `MSVCR100.DLL::memcpy_s` +- `MSVCR100.DLL::memmove` +- `MSVCR100.DLL::memmove_s` +- `MSVCR100.DLL::memset` +- `MSVCR100.DLL::operator_delete` +- `MSVCR100.DLL::operator_delete[]` +- `MSVCR100.DLL::operator_new` +- `MSVCR100.DLL::purecall` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::exception` +- `MSVCR100.DLL::std::exception::what` +- `MSVCR100.DLL::std::exception::~exception` +- `MSVCR100.DLL::swprintf_s` +- `MSVCR100.DLL::terminate` +- `MSVCR100.DLL::type_info::_type_info_dtor_internal_method` +- `MSVCR100.DLL::wcscat_s` +- `MSVCR100.DLL::wcscpy_s` +- `MSVCR100.DLL::wcscspn` +- `MSVCR100.DLL::wcsncpy` +- `MSVCR100.DLL::wcsncpy_s` +- `MSVCR100.DLL::wcsrchr` +- `OLE32.DLL::CoCreateInstance` +- `OLE32.DLL::CoFileTimeNow` +- `OLE32.DLL::CoTaskMemAlloc` +- `OLE32.DLL::CoTaskMemFree` +- `OLE32.DLL::StringFromGUID2` +- `OLEAUT32.DLL::CreateErrorInfo` +- `OLEAUT32.DLL::GetErrorInfo` +- `OLEAUT32.DLL::GetRecordInfoFromGuids` +- `OLEAUT32.DLL::RegisterTypeLib` +- `OLEAUT32.DLL::SafeArrayAccessData` +- `OLEAUT32.DLL::SafeArrayCopy` +- `OLEAUT32.DLL::SafeArrayCreate` +- `OLEAUT32.DLL::SafeArrayCreateEx` +- `OLEAUT32.DLL::SafeArrayDestroy` +- `OLEAUT32.DLL::SafeArrayGetLBound` +- `OLEAUT32.DLL::SafeArrayGetUBound` +- `OLEAUT32.DLL::SafeArrayLock` +- `OLEAUT32.DLL::SafeArrayRedim` +- `OLEAUT32.DLL::SafeArrayUnaccessData` +- `OLEAUT32.DLL::SafeArrayUnlock` +- `OLEAUT32.DLL::SetErrorInfo` +- `OLEAUT32.DLL::SysAllocString` +- `OLEAUT32.DLL::SysAllocStringByteLen` +- `OLEAUT32.DLL::SysAllocStringLen` +- `OLEAUT32.DLL::SysFreeString` +- `OLEAUT32.DLL::SysStringByteLen` +- `OLEAUT32.DLL::SysStringLen` +- `OLEAUT32.DLL::UnRegisterTypeLib` +- `OLEAUT32.DLL::VarBstrCat` +- `OLEAUT32.DLL::VariantChangeType` +- `OLEAUT32.DLL::VariantClear` +- `OLEAUT32.DLL::VariantCopy` +- `OLEAUT32.DLL::VariantInit` +- `SHLWAPI.DLL::PathAppendW` +- `SHLWAPI.DLL::PathRemoveFileSpecW` +- `USER32.DLL::CharLowerBuffW` +- `USER32.DLL::CharNextW` +- `USER32.DLL::UnregisterClassW` + +## Exports and Globals + +| Name | Address | Function | +| --- | ---: | --- | +| `.ctor` | `1000100c` | `.ctor` | +| `.ctor` | `10001020` | `.ctor` | +| `.ctor` | `10001034` | `.ctor` | +| `TimeHasPassed` | `1000105c` | `TimeHasPassed` | +| `.ctor` | `100010a4` | `.ctor` | +| `SupportsArrayElementWrites` | `100010d0` | `SupportsArrayElementWrites` | +| `.ctor` | `100010e0` | `.ctor` | +| `SupportsArrayElementWrites` | `100010fc` | `SupportsArrayElementWrites` | +| `PtrToStringChars` | `1000110c` | `PtrToStringChars` | +| `.cctor` | `10001134` | `.cctor` | +| `.cctor` | `1000114c` | `.cctor` | +| `IsEqualGUID` | `1000116c` | `IsEqualGUID` | +| `FormatMessage` | `100011c4` | `FormatMessage` | +| `HRESULT_FROM_WIN32` | `100011f4` | `HRESULT_FROM_WIN32` | +| `wmemcpy` | `10001224` | `wmemcpy` | +| `wmemmove` | `10001244` | `wmemmove` | +| `ATL._AtlGetConversionACP` | `10001264` | `ATL._AtlGetConversionACP` | +| `ATL._AtlRaiseException` | `10001284` | `ATL._AtlRaiseException` | +| `ATL.CAtlException.{ctor}` | `100012a4` | `ATL.CAtlException.{ctor}` | +| `ATL.AtlThrowImpl` | `100012c4` | `ATL.AtlThrowImpl` | +| `ATL.AtlThrowLastWin32` | `100012f4` | `ATL.AtlThrowLastWin32` | +| `ATL.AtlCrtErrorCheck` | `10001334` | `ATL.AtlCrtErrorCheck` | +| `ATL.Checked.wcsncpy_s` | `100014c4` | `ATL.Checked.wcsncpy_s` | +| `ATL.CComCriticalSection.Term` | `10001654` | `ATL.CComCriticalSection.Term` | +| `ATL.CComBSTR.{ctor}` | `10001674` | `ATL.CComBSTR.{ctor}` | +| `ATL.CComBSTR.Length` | `10001694` | `ATL.CComBSTR.Length` | +| `ATL.CComBSTR..PA_W` | `100016b4` | `ATL.CComBSTR..PA_W` | +| `ATL.CComBSTR.&` | `100016d4` | `ATL.CComBSTR.&` | +| `ATL.CComBSTR.!` | `100016f4` | `ATL.CComBSTR.!` | +| `ATL.CComBSTR.==` | `10001714` | `ATL.CComBSTR.==` | +| `ATL.CComBSTR.{dtor}` | `10001734` | `ATL.CComBSTR.{dtor}` | +| `ATL.CComVariant.Copy` | `10001754` | `ATL.CComVariant.Copy` | +| `ATL.CComVariant.InternalCopy` | `10001774` | `ATL.CComVariant.InternalCopy` | +| `ATL.CHandle.Attach` | `100017a4` | `ATL.CHandle.Attach` | +| `ATL.CHandle.Detach` | `100017c4` | `ATL.CHandle.Detach` | +| `ATL.CAtlComModule.Term` | `100017e4` | `ATL.CAtlComModule.Term` | +| `ATL.CAtlReleaseManagedClassFactories.{ctor}` | `10001854` | `ATL.CAtlReleaseManagedClassFactories.{ctor}` | +| `ATL.CAtlReleaseManagedClassFactories.{dtor}` | `10001874` | `ATL.CAtlReleaseManagedClassFactories.{dtor}` | +| `ATL.CComModule.GetModuleInstance` | `10001894` | `ATL.CComModule.GetModuleInstance` | +| `ATL.CRegKey.Detach` | `100018b4` | `ATL.CRegKey.Detach` | +| `ATL.CRegKey.Attach` | `100018e4` | `ATL.CRegKey.Attach` | +| `ATL.?A0xda2128e9.AtlGetDirLen` | `10001914` | `ATL.?A0xda2128e9.AtlGetDirLen` | +| `ATL.CComTypeInfoHolder.stringdispid.{dtor}` | `10001964` | `ATL.CComTypeInfoHolder.stringdispid.{dtor}` | +| `_com_util.CheckError` | `10001984` | `_com_util.CheckError` | +| `_bstr_t.{ctor}` | `100019a4` | `_bstr_t.{ctor}` | +| `_bstr_t.Data_t.{ctor}` | `100019c4` | `_bstr_t.Data_t.{ctor}` | +| `_bstr_t.Data_t.{ctor}` | `10001a04` | `_bstr_t.Data_t.{ctor}` | +| `_bstr_t.Data_t.AddRef` | `10001a54` | `_bstr_t.Data_t.AddRef` | +| `_bstr_t.Data_t.GetWString` | `10001a84` | `_bstr_t.Data_t.GetWString` | +| `_bstr_t.Data_t.Length` | `10001aa4` | `_bstr_t.Data_t.Length` | +| `_bstr_t.Data_t.new` | `10001ad4` | `_bstr_t.Data_t.new` | +| `_bstr_t.Data_t._Free` | `10001af4` | `_bstr_t.Data_t._Free` | +| `_variant_t.{ctor}` | `10001b24` | `_variant_t.{ctor}` | +| `_com_error.{ctor}` | `10001b54` | `_com_error.{ctor}` | +| `_com_error.{ctor}` | `10001b94` | `_com_error.{ctor}` | +| `_com_error.{dtor}` | `10001be4` | `_com_error.{dtor}` | +| `_com_error.Error` | `10001c24` | `_com_error.Error` | +| `_com_error.ErrorInfo` | `10001c44` | `_com_error.ErrorInfo` | +| `_com_error.HRESULTToWCode` | `10001c74` | `_com_error.HRESULTToWCode` | +| `CWrapLogger.{ctor}` | `10001ca4` | `CWrapLogger.{ctor}` | +| `CWrapLogger.SetIdentityName` | `10001de4` | `CWrapLogger.SetIdentityName` | +| `CWrapLogger.UnloadLoggerDLL` | `10001e24` | `CWrapLogger.UnloadLoggerDLL` | +| `CWrapLogger.Uninitialize` | `10001f64` | `CWrapLogger.Uninitialize` | +| `CWrapLogger.SetDefaultIdentity` | `10001fb4` | `CWrapLogger.SetDefaultIdentity` | +| `CWrapLogger.ReadPathFromRegistry` | `10002044` | `CWrapLogger.ReadPathFromRegistry` | +| `std._Bool_function` | `10002094` | `std._Bool_function` | +| `std.bad_alloc.{ctor}` | `100020b4` | `std.bad_alloc.{ctor}` | +| `std.bad_alloc.__vecDelDtor` | `10002114` | `std.bad_alloc.__vecDelDtor` | +| `std.bad_alloc.{dtor}` | `10002164` | `std.bad_alloc.{dtor}` | +| `std._Exception_ptr.{ctor}` | `100021a4` | `std._Exception_ptr.{ctor}` | +| `std.char_traits.length` | `100021c4` | `std.char_traits.length` | +| `std.char_traits.copy` | `100021f4` | `std.char_traits.copy` | +| `std.char_traits.move` | `10002214` | `std.char_traits.move` | +| `std.char_traits.assign` | `10002234` | `std.char_traits.assign` | +| `std.char_traits.eq_int_type` | `10002254` | `std.char_traits.eq_int_type` | +| `std.char_traits.eof` | `10002274` | `std.char_traits.eof` | +| `std._Iterator_base12._Adopt` | `10002294` | `std._Iterator_base12._Adopt` | +| `std.allocator.{ctor}` | `100022b4` | `std.allocator.{ctor}` | +| `std.runtime_error.{dtor}` | `100022d4` | `std.runtime_error.{dtor}` | +| `std.runtime_error.{ctor}` | `100022f4` | `std.runtime_error.{ctor}` | +| `std.locale.{ctor}` | `10002344` | `std.locale.{ctor}` | +| `std.system_error.{dtor}` | `10002374` | `std.system_error.{dtor}` | +| `std.system_error.{ctor}` | `10002394` | `std.system_error.{ctor}` | +| `std.dec` | `10002424` | `std.dec` | +| `std.hex` | `10002454` | `std.hex` | +| `ATL.CComPtrBase.{ctor}` | `10002484` | `ATL.CComPtrBase.{ctor}` | +| `ATL.CComPtrBase.{dtor}` | `100024b4` | `ATL.CComPtrBase.{dtor}` | +| `ATL.CComPtrBase.{dtor}` | `100024e4` | `ATL.CComPtrBase.{dtor}` | +| `ATL.CSimpleArray_>.GetSize` | `10002514` | `ATL.CSimpleArray_>.GetSize` | +| `ATL.CSimpleArray_>.RemoveAll` | `10002534` | `ATL.CSimpleArray_>.RemoveAll` | +| `ATL.CSimpleArray_>.[]` | `10002564` | `ATL.CSimpleArray_>.[]` | +| `ATL.CComPtrBase.{dtor}` | `100025a4` | `ATL.CComPtrBase.{dtor}` | +| `ATL.CComPtrBase..PAUITypeLib@@` | `100025d4` | `ATL.CComPtrBase..PAUITypeLib@@` | +| `ATL.CComPtrBase.&` | `100025f4` | `ATL.CComPtrBase.&` | +| `ATL.CComPtrBase.->` | `10002614` | `ATL.CComPtrBase.->` | +| `ATL.CComPtrBase.{dtor}` | `10002634` | `ATL.CComPtrBase.{dtor}` | +| `std.basic_string,std::allocator_>.size` | `10002664` | `std.basic_string,std::allocator_>.size` | +| `ATL.CA2WEX<128>..PA_W` | `10002684` | `ATL.CA2WEX<128>..PA_W` | +| `ATL.CComPtrBase.{dtor}` | `100026a4` | `ATL.CComPtrBase.{dtor}` | +| `ATL.CComPtrBase..PAUIErrorInfo@@` | `100026d4` | `ATL.CComPtrBase..PAUIErrorInfo@@` | +| `ATL.CComPtrBase.&` | `100026f4` | `ATL.CComPtrBase.&` | +| `ATL.CComPtrBase.Release` | `10002714` | `ATL.CComPtrBase.Release` | +| `ATL.CComPtrBase.Attach` | `10002744` | `ATL.CComPtrBase.Attach` | +| `ATL.CComPtrBase.{ctor}` | `10002774` | `ATL.CComPtrBase.{ctor}` | +| `ATL.CComPtrBase.{ctor}` | `100027a4` | `ATL.CComPtrBase.{ctor}` | +| `ATL.CComPtrBase.{ctor}` | `100027c4` | `ATL.CComPtrBase.{ctor}` | +| `std.allocator.{ctor}` | `100027f4` | `std.allocator.{ctor}` | +| `std.basic_string,std::allocator_>._Myptr` | `10002814` | `std.basic_string,std::allocator_>._Myptr` | +| `std.basic_string,std::allocator_>._Myptr` | `10002844` | `std.basic_string,std::allocator_>._Myptr` | +| `std.basic_string,std::allocator_>._Xran` | `10002874` | `std.basic_string,std::allocator_>._Xran` | +| `std._String_val_>.{dtor}` | `10002894` | `std._String_val_>.{dtor}` | +| `std.allocator.{ctor}` | `100028b4` | `std.allocator.{ctor}` | +| `std.allocator.{ctor}` | `100028d4` | `std.allocator.{ctor}` | +| `std.allocator.deallocate` | `100028f4` | `std.allocator.deallocate` | +| `std.allocator<_WIN32_FIND_DATAW>.{ctor}` | `10002914` | `std.allocator<_WIN32_FIND_DATAW>.{ctor}` | +| `std.basic_stringbuf,std::allocator_>._Tidy` | `10002934` | `std.basic_stringbuf,std::allocator_>._Tidy` | +| `ATL.CComPtrBase.{ctor}` | `100029a4` | `ATL.CComPtrBase.{ctor}` | +| `std.basic_ostream_>.sentry..P6AXABU_Bool_struct@std@@@Z` | `100029c4` | `std.basic_ostream_>.sentry..P6AXABU_Bool_struct@std@@@Z` | +| `std.basic_string,std::allocator_>.get_allocator` | `100029f4` | `std.basic_string,std::allocator_>.get_allocator` | +| `std.basic_string,std::allocator_>._Inside` | `10002a14` | `std.basic_string,std::allocator_>._Inside` | +| `std.basic_string,std::allocator_>._Xlen` | `10002a64` | `std.basic_string,std::allocator_>._Xlen` | +| `std.basic_stringbuf,std::allocator_>._Getstate` | `10002a84` | `std.basic_stringbuf,std::allocator_>._Getstate` | +| `std.basic_ostream_>._Sentry_base.{ctor}` | `10002ac4` | `std.basic_ostream_>._Sentry_base.{ctor}` | +| `std.basic_ostream_>._Sentry_base.{dtor}` | `10002b04` | `std.basic_ostream_>._Sentry_base.{dtor}` | +| `std.allocator.max_size` | `10002b44` | `std.allocator.max_size` | +| `_splitpath_s<3,256,256,256>` | `10002b64` | `_splitpath_s<3,256,256,256>` | +| `_makepath_s<260>` | `10002b94` | `_makepath_s<260>` | +| `std.forward_>` | `10002bc4` | `std.forward_>` | +| `std.forward,class_std::allocator_>_>` | `10002be4` | `std.forward,class_std::allocator_>_>` | +| `ATL.AtlConvFreeMemory` | `10002c04` | `ATL.AtlConvFreeMemory` | +| `std._Allocate` | `10002c24` | `std._Allocate` | +| `ATL.AtlConvAllocMemory` | `10002ca4` | `ATL.AtlConvAllocMemory` | +| `std.bad_alloc.{ctor}` | `10002d34` | `std.bad_alloc.{ctor}` | +| `std.operator==` | `10002d84` | `std.operator==` | +| `ATL.CComPtr.{ctor}` | `10002da4` | `ATL.CComPtr.{ctor}` | +| `ATL.CComPtr.{dtor}` | `10002dd4` | `ATL.CComPtr.{dtor}` | +| `ATL.CComBSTR.Copy` | `10002e04` | `ATL.CComBSTR.Copy` | +| `ATL.CComBSTR.!=` | `10002e44` | `ATL.CComBSTR.!=` | +| `ATL.CComVariant.{ctor}` | `10002e64` | `ATL.CComVariant.{ctor}` | +| `ATL.CHandle.{ctor}` | `10002ea4` | `ATL.CHandle.{ctor}` | +| `ATL.CRegKey.{ctor}` | `10002ec4` | `ATL.CRegKey.{ctor}` | +| `AtlWinModuleTerm` | `10002f04` | `AtlWinModuleTerm` | +| `ATL.CComPtr.{dtor}` | `10002fb4` | `ATL.CComPtr.{dtor}` | +| `ATL.CComTypeInfoHolder.stringdispid.__vecDelDtor` | `10002fe4` | `ATL.CComTypeInfoHolder.stringdispid.__vecDelDtor` | +| `_bstr_t.{ctor}` | `10003044` | `_bstr_t.{ctor}` | +| `_bstr_t.{ctor}` | `100030f4` | `_bstr_t.{ctor}` | +| `_bstr_t..PB_W` | `100031b4` | `_bstr_t..PB_W` | +| `_bstr_t..PA_W` | `100031d4` | `_bstr_t..PA_W` | +| `_bstr_t.length` | `100031f4` | `_bstr_t.length` | +| `_bstr_t._AddRef` | `10003224` | `_bstr_t._AddRef` | +| `_bstr_t.Data_t.{dtor}` | `10003254` | `_bstr_t.Data_t.{dtor}` | +| `_com_error.__vecDelDtor` | `10003284` | `_com_error.__vecDelDtor` | +| `_com_error.WCode` | `10003304` | `_com_error.WCode` | +| `_com_error.ErrorMessage` | `10003344` | `_com_error.ErrorMessage` | +| `CWrapLogger.{dtor}` | `10003404` | `CWrapLogger.{dtor}` | +| `CWrapLogger.LoadLoggerDLL` | `10003454` | `CWrapLogger.LoadLoggerDLL` | +| `CWrapLogger.Initialize` | `10003854` | `CWrapLogger.Initialize` | +| `std._Iterator_base12.=` | `100038b4` | `std._Iterator_base12.=` | +| `std.runtime_error.__vecDelDtor` | `100038e4` | `std.runtime_error.__vecDelDtor` | +| `std.system_error.__vecDelDtor` | `10003944` | `std.system_error.__vecDelDtor` | +| `std.ios_base.failure.{ctor}` | `100039a4` | `std.ios_base.failure.{ctor}` | +| `std.ios_base.failure.__vecDelDtor` | `10003a58` | `std.ios_base.failure.__vecDelDtor` | +| `std.ios_base.failure.{dtor}` | `10003aa4` | `std.ios_base.failure.{dtor}` | +| `ATL.CComPtr.{dtor}` | `10003ae4` | `ATL.CComPtr.{dtor}` | +| `ATL.CComPtr.{ctor}` | `10003b14` | `ATL.CComPtr.{ctor}` | +| `ATL.CComPtr.{ctor}` | `10003b44` | `ATL.CComPtr.{ctor}` | +| `ATL.CComPtr.{ctor}` | `10003b64` | `ATL.CComPtr.{ctor}` | +| `std.basic_string,std::allocator_>.c_str` | `10003b94` | `std.basic_string,std::allocator_>.c_str` | +| `std.basic_stringbuf,std::allocator_>.{dtor}` | `10003bc4` | `std.basic_stringbuf,std::allocator_>.{dtor}` | +| `std.basic_stringbuf,std::allocator_>.underflow` | `10003c10` | `std.basic_stringbuf,std::allocator_>.underflow` | +| `std.basic_stringbuf,std::allocator_>.pbackfail` | `10003cc4` | `std.basic_stringbuf,std::allocator_>.pbackfail` | +| `std.basic_stringbuf,std::allocator_>.seekoff` | `10003d44` | `std.basic_stringbuf,std::allocator_>.seekoff` | +| `std.basic_stringbuf,std::allocator_>.seekpos` | `10003ef4` | `std.basic_stringbuf,std::allocator_>.seekpos` | +| `ATL.CA2WEX<128>.{dtor}` | `10004024` | `ATL.CA2WEX<128>.{dtor}` | +| `ATL.CComPtr.{ctor}` | `10004054` | `ATL.CComPtr.{ctor}` | +| `` | `10004074` | `` | +| `` | `10004094` | `` | +| `` | `100040b4` | `` | +| `std.basic_stringbuf,std::allocator_>.__vecDelDtor` | `100040d4` | `std.basic_stringbuf,std::allocator_>.__vecDelDtor` | +| `std.basic_string,std::allocator_>._Eos` | `10004164` | `std.basic_string,std::allocator_>._Eos` | +| `std.basic_string,std::allocator_>._Tidy` | `100041a4` | `std.basic_string,std::allocator_>._Tidy` | +| `std._String_val_>.{ctor}` | `100041f4` | `std._String_val_>.{ctor}` | +| `std.allocator.allocate` | `10004214` | `std.allocator.allocate` | +| `ATL.CA2WEX<128>.Init` | `10004234` | `ATL.CA2WEX<128>.Init` | +| `std.basic_ostream_>.sentry.{ctor}` | `100042b4` | `std.basic_ostream_>.sentry.{ctor}` | +| `std.basic_ostream_>.sentry.{dtor}` | `10004364` | `std.basic_ostream_>.sentry.{dtor}` | +| `std.basic_stringbuf,std::allocator_>._Init` | `100043e4` | `std.basic_stringbuf,std::allocator_>._Init` | +| `std.basic_string,std::allocator_>.max_size` | `10004484` | `std.basic_string,std::allocator_>.max_size` | +| `std.basic_string,std::allocator_>._Copy` | `100044a4` | `std.basic_string,std::allocator_>._Copy` | +| `std.operator<<_>` | `100046c4` | `std.operator<<_>` | +| `std.operator!=` | `10004984` | `std.operator!=` | +| `ATL.CComQIPtr.{ctor}` | `100049a4` | `ATL.CComQIPtr.{ctor}` | +| `ATL.CComBSTR.{ctor}` | `100049d4` | `ATL.CComBSTR.{ctor}` | +| `AtlUnRegisterTypeLib` | `10004a34` | `AtlUnRegisterTypeLib` | +| `AtlRegisterTypeLib` | `10004c24` | `AtlRegisterTypeLib` | +| `AtlComModuleRegisterServer` | `10005094` | `AtlComModuleRegisterServer` | +| `AtlComModuleUnregisterServer` | `10005124` | `AtlComModuleUnregisterServer` | +| `_bstr_t.{ctor}` | `100051b4` | `_bstr_t.{ctor}` | +| `_bstr_t.Data_t.__delDtor` | `100051e4` | `_bstr_t.Data_t.__delDtor` | +| `CWrapLogger.LogStart` | `10005224` | `CWrapLogger.LogStart` | +| `CWrapLogger.LogFlagLog` | `10005264` | `CWrapLogger.LogFlagLog` | +| `CWrapLogger.RegisterLogFlag` | `100052a4` | `CWrapLogger.RegisterLogFlag` | +| `CLoggerSelect._GetFSLogger` | `100052e4` | `CLoggerSelect._GetFSLogger` | +| `std._Iterator_base12.{ctor}` | `10005364` | `std._Iterator_base12.{ctor}` | +| `com_eh.com_error_dbg.Error` | `10005394` | `com_eh.com_error_dbg.Error` | +| `std.basic_string,std::allocator_>.{ctor}` | `10005424` | `std.basic_string,std::allocator_>.{ctor}` | +| `std.basic_string,std::allocator_>.{dtor}` | `10005454` | `std.basic_string,std::allocator_>.{dtor}` | +| `std.basic_string,std::allocator_>.erase` | `10005494` | `std.basic_string,std::allocator_>.erase` | +| `std.basic_stringstream,std::allocator_>.{dtor}` | `10005534` | `std.basic_stringstream,std::allocator_>.{dtor}` | +| `std.basic_stringbuf,std::allocator_>.overflow` | `100055d4` | `std.basic_stringbuf,std::allocator_>.overflow` | +| `ATL.CA2WEX<128>.{ctor}` | `100057a4` | `ATL.CA2WEX<128>.{ctor}` | +| `std.basic_stringbuf,std::allocator_>.{ctor}` | `100057d4` | `std.basic_stringbuf,std::allocator_>.{ctor}` | +| `std.basic_string,std::allocator_>._Grow` | `10005854` | `std.basic_string,std::allocator_>._Grow` | +| `GetIDataAdapter` | `100058e4` | `GetIDataAdapter` | +| `CWrapLogger.LogCustom` | `10005af0` | `CWrapLogger.LogCustom` | +| `_bstr_t.Data_t.Release` | `10005b80` | `_bstr_t.Data_t.Release` | +| `CWrapLogger.LogStartEx` | `10005bd4` | `CWrapLogger.LogStartEx` | +| `CWrapLogger.GetLogFlag` | `10005c44` | `CWrapLogger.GetLogFlag` | +| `` | `10005c84` | `` | +| `com_eh.LogIfError` | `10005cc4` | `com_eh.LogIfError` | +| `CWrapLogger.LogError` | `10006230` | `CWrapLogger.LogError` | +| `CWrapLogger.LogWarning` | `100062b0` | `CWrapLogger.LogWarning` | +| `std.basic_stringstream,std::allocator_>.__vbaseDtor` | `10006344` | `std.basic_stringstream,std::allocator_>.__vbaseDtor` | +| `std.basic_stringstream,std::allocator_>.{ctor}` | `10006374` | `std.basic_stringstream,std::allocator_>.{ctor}` | +| `std.basic_stringstream,std::allocator_>.__vecDelDtor` | `10006474` | `std.basic_stringstream,std::allocator_>.__vecDelDtor` | +| `std.basic_string,std::allocator_>.assign` | `100064e4` | `std.basic_string,std::allocator_>.assign` | +| `std.basic_string,std::allocator_>.assign` | `100065d4` | `std.basic_string,std::allocator_>.assign` | +| `std.basic_string,std::allocator_>.assign` | `10006694` | `std.basic_string,std::allocator_>.assign` | +| `_bstr_t._Free` | `100066b4` | `_bstr_t._Free` | +| `std.basic_string,std::allocator_>.{ctor}` | `100066e4` | `std.basic_string,std::allocator_>.{ctor}` | +| `std.basic_string,std::allocator_>.{ctor}` | `10006724` | `std.basic_string,std::allocator_>.{ctor}` | +| `std.basic_string,std::allocator_>.=` | `10006764` | `std.basic_string,std::allocator_>.=` | +| `_bstr_t.{dtor}` | `10006784` | `_bstr_t.{dtor}` | +| `_bstr_t.=` | `100067b4` | `_bstr_t.=` | +| `_com_error.Description` | `100067f4` | `_com_error.Description` | +| `_com_error.Source` | `100068c4` | `_com_error.Source` | +| `` | `10006994` | `` | +| `com_eh.com_error_dbg.{ctor}` | `100069d4` | `com_eh.com_error_dbg.{ctor}` | +| `com_eh.com_error_dbg.{dtor}` | `10006a94` | `com_eh.com_error_dbg.{dtor}` | +| `com_eh.com_error_dbg.{ctor}` | `10006b24` | `com_eh.com_error_dbg.{ctor}` | +| `std.basic_string,std::allocator_>.assign` | `10006bf4` | `std.basic_string,std::allocator_>.assign` | +| `com_eh.com_error_dbg.__vecDelDtor` | `10006c74` | `com_eh.com_error_dbg.__vecDelDtor` | +| `std.basic_string,std::allocator_>.{ctor}` | `10006cc4` | `std.basic_string,std::allocator_>.{ctor}` | +| `std.basic_stringbuf,std::allocator_>.str` | `10006d04` | `std.basic_stringbuf,std::allocator_>.str` | +| `std.basic_stringstream,std::allocator_>.str` | `10006fb4` | `std.basic_stringstream,std::allocator_>.str` | +| `com_eh.com_error_dbg.ErrorMessage` | `10007014` | `com_eh.com_error_dbg.ErrorMessage` | +| `com_eh.com_error_dbg.LogGetError` | `10007604` | `com_eh.com_error_dbg.LogGetError` | +| `com_eh.com_error_dbg.Throw` | `10007724` | `com_eh.com_error_dbg.Throw` | +| `AAComBSTR.Copy` | `10007754` | `AAComBSTR.Copy` | +| `AAComBSTR.{ctor}` | `10007934` | `AAComBSTR.{ctor}` | +| `Connect` | `10007954` | `Connect` | +| `Abort` | `10007978` | `Abort` | +| `Disconnect` | `10007998` | `Disconnect` | +| `KeepAlive` | `100079b8` | `KeepAlive` | +| `Read` | `10007a00` | `Read` | +| `Write` | `10007a74` | `Write` | +| `WriteUser` | `10007ad4` | `WriteUser` | +| `WriteVerified` | `10007b3c` | `WriteVerified` | +| `WriteSecured` | `10007bb0` | `WriteSecured` | +| `WriteConfirmed` | `10007c18` | `WriteConfirmed` | +| `ConfirmWrite` | `10007c9c` | `ConfirmWrite` | +| `PublishWriteComplete` | `10007d04` | `PublishWriteComplete` | +| `CreateSubscription` | `10007d54` | `CreateSubscription` | +| `SetSubscriptionState` | `10007d94` | `SetSubscriptionState` | +| `GetSubscriptionState` | `10007de0` | `GetSubscriptionState` | +| `DeleteSubscription` | `10007e38` | `DeleteSubscription` | +| `AddMonitoredItems` | `10007e78` | `AddMonitoredItems` | +| `DeleteMonitoredItems` | `10007ee4` | `DeleteMonitoredItems` | +| `GetMonitoredItems` | `10007f3c` | `GetMonitoredItems` | +| `Publish` | `10007f88` | `Publish` | +| `RegisterItems` | `10007fe8` | `RegisterItems` | +| `UnregisterItems` | `10008054` | `UnregisterItems` | +| `ATL.?A0xcc57d9b2.AtlGetDirLen` | `100080ac` | `ATL.?A0xcc57d9b2.AtlGetDirLen` | +| `Connect` | `100080f4` | `Connect` | +| `Abort` | `10008118` | `Abort` | +| `Disconnect` | `10008138` | `Disconnect` | +| `KeepAlive` | `10008158` | `KeepAlive` | +| `Read` | `100081a0` | `Read` | +| `Write` | `100081ec` | `Write` | +| `WriteUser` | `10008230` | `WriteUser` | +| `WriteVerified` | `10008274` | `WriteVerified` | +| `WriteSecured` | `100082bc` | `WriteSecured` | +| `WriteConfirmed` | `10008300` | `WriteConfirmed` | +| `ConfirmWrite` | `10008348` | `ConfirmWrite` | +| `PublishWriteComplete` | `10008390` | `PublishWriteComplete` | +| `CreateSubscription` | `100083d0` | `CreateSubscription` | +| `SetSubscriptionState` | `10008410` | `SetSubscriptionState` | +| `GetSubscriptionState` | `10008450` | `GetSubscriptionState` | +| `DeleteSubscription` | `10008490` | `DeleteSubscription` | +| `AddMonitoredItems` | `100084d0` | `AddMonitoredItems` | +| `DeleteMonitoredItems` | `10008514` | `DeleteMonitoredItems` | +| `GetMonitoredItems` | `10008554` | `GetMonitoredItems` | +| `Publish` | `10008594` | `Publish` | +| `RegisterItems` | `100085d4` | `RegisterItems` | +| `UnregisterItems` | `10008618` | `UnregisterItems` | +| `ATL.?A0x4ac3ab1c.AtlGetDirLen` | `10008658` | `ATL.?A0x4ac3ab1c.AtlGetDirLen` | +| `??A?$CSimpleArray@GV?$CSimpleArrayEqualHelper@G@ATL@@@ATL@@QAEAAGH@Z` | `10008e70` | `operator[]` | +| `Catch@10009f29` | `10009f29` | `Catch@10009f29` | +| `Catch@1000a13c` | `1000a13c` | `Catch@1000a13c` | +| `thunk_FUN_1000a020` | `1000a160` | `thunk_FUN_1000a020` | +| `SetStatus` | `1000a5a0` | `SetStatus` | +| `.ctor` | `1000a5bc` | `.ctor` | +| `SetItemDataUpdate` | `1000a5d0` | `SetItemDataUpdate` | +| `.ctor` | `1000a5fc` | `.ctor` | +| `SetConsumerASBResultCode` | `1000a610` | `SetConsumerASBResultCode` | +| `SetQuality` | `1000a63c` | `SetQuality` | +| `.ctor` | `1000a64c` | `.ctor` | +| `?A0x6ea962a9..()` | `1000a660` | `?A0x6ea962a9..()` | +| `ATL.?A0x6ea962a9.AtlGetDirLen` | `1000a684` | `ATL.?A0x6ea962a9.AtlGetDirLen` | +| `ConsumerDataUtilities.GetOPCDAQualityCode` | `1000a6d4` | `ConsumerDataUtilities.GetOPCDAQualityCode` | +| `FillInUpdate` | `1000a9c4` | `FillInUpdate` | +| `SetStatusCategory` | `1000ab9c` | `SetStatusCategory` | +| `SetStatusDetail` | `1000ad8c` | `SetStatusDetail` | +| `SetQuality` | `1000af7c` | `SetQuality` | +| `SetStatusCategory` | `1000b16c` | `SetStatusCategory` | +| `SetStatusDetail` | `1000b35c` | `SetStatusDetail` | +| `ConsumerDataUtilities.MergeReceivedChunks` | `1000b54c` | `ConsumerDataUtilities.MergeReceivedChunks` | +| `is_locked` | `1000b7c4` | `is_locked` | +| `op_Implicit` | `1000b7d8` | `op_Implicit` | +| `acquire` | `1000b7fc` | `acquire` | +| `acquire` | `1000b838` | `acquire` | +| `acquire` | `1000b874` | `acquire` | +| `try_acquire` | `1000b8b0` | `try_acquire` | +| `try_acquire` | `1000b8e4` | `try_acquire` | +| `release` | `1000b918` | `release` | +| `SetDisconnectSignal` | `1000b940` | `SetDisconnectSignal` | +| `ThreadRunning` | `1000b960` | `ThreadRunning` | +| `SupportsArrayElementWrites` | `1000b994` | `SupportsArrayElementWrites` | +| `.ctor` | `1000b9a8` | `.ctor` | +| `~BufferProperty` | `1000b9d8` | `~BufferProperty` | +| `GetBufferField` | `1000b9ec` | `GetBufferField` | +| `Dispose` | `1000ba00` | `Dispose` | +| `.ctor` | `1000ba20` | `.ctor` | +| `.cctor` | `1000ba34` | `.cctor` | +| `CDataClientCLI.GetInt32` | `1000ba68` | `CDataClientCLI.GetInt32` | +| `CDataClientCLI.IsObjectToObjectWrite` | `1000bad4` | `CDataClientCLI.IsObjectToObjectWrite` | +| `std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor}` | `1000bb04` | `std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor}` | +| `std.allocator<_ItemDataUpdate_*>.{ctor}` | `1000bb24` | `std.allocator<_ItemDataUpdate_*>.{ctor}` | +| `std.allocator<_ItemDataUpdate_*>.{ctor}` | `1000bb44` | `std.allocator<_ItemDataUpdate_*>.{ctor}` | +| `std.allocator<_ItemDataUpdate_*>.deallocate` | `1000bb64` | `std.allocator<_ItemDataUpdate_*>.deallocate` | +| `.ctor` | `1000bb84` | `.ctor` | +| `std._Ptr_cat` | `1000bbac` | `std._Ptr_cat` | +| `std._Destroy_range_>` | `1000bbc4` | `std._Destroy_range_>` | +| `ATL.CComBSTR.Attach` | `1000bbe4` | `ATL.CComBSTR.Attach` | +| `ATL.?A0x56a9090b.AtlGetDirLen` | `1000bc14` | `ATL.?A0x56a9090b.AtlGetDirLen` | +| `~lock` | `1000bc64` | `~lock` | +| `Dispose` | `1000bc8c` | `Dispose` | +| `SetNamespace` | `1000bcc0` | `SetNamespace` | +| `Dispose` | `1000bd14` | `Dispose` | +| `AddProxy` | `1000bd30` | `AddProxy` | +| `GetProxy` | `1000bda0` | `GetProxy` | +| `CDataClientCLI.StopCommunications` | `1000be30` | `CDataClientCLI.StopCommunications` | +| `CDataClientCLI.SupportsArrayElementWrites` | `1000be64` | `CDataClientCLI.SupportsArrayElementWrites` | +| `` | `1000be94` | `` | +| `std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor}` | `1000beb4` | `std._Vector_val<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor}` | +| `std._Destroy_range_>` | `1000bee4` | `std._Destroy_range_>` | +| `Dispose` | `1000bf04` | `Dispose` | +| `RemoveProxy` | `1000bf20` | `RemoveProxy` | +| `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor}` | `1000bf84` | `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{ctor}` | +| `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Destroy` | `1000bfb4` | `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Destroy` | +| `GetClientId` | `1000bfd4` | `GetClientId` | +| `IsConnected` | `1000c158` | `IsConnected` | +| `AcknowledgeDisconnected` | `1000c430` | `AcknowledgeDisconnected` | +| `DataClientProxyUnmanagedVars.{ctor}` | `1000c59c` | `DataClientProxyUnmanagedVars.{ctor}` | +| `DataClientProxyUnmanagedVars.{dtor}` | `1000c634` | `DataClientProxyUnmanagedVars.{dtor}` | +| `CDataClientCLI.{dtor}` | `1000c6d4` | `CDataClientCLI.{dtor}` | +| `CDataClientCLI.AcknowledgeDisconnected` | `1000c7b4` | `CDataClientCLI.AcknowledgeDisconnected` | +| `CDataClientCLI.IsIDataClientConnected` | `1000c7e4` | `CDataClientCLI.IsIDataClientConnected` | +| `CDataClientCLI.GetClientId` | `1000c824` | `CDataClientCLI.GetClientId` | +| `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Tidy` | `1000c9d4` | `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>._Tidy` | +| `.ctor` | `1000ca14` | `.ctor` | +| `DataClientProxyUnmanagedVars.__delDtor` | `1000cb48` | `DataClientProxyUnmanagedVars.__delDtor` | +| `CDataClientCLI.{ctor}` | `1000cb74` | `CDataClientCLI.{ctor}` | +| `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor}` | `1000cc24` | `std.vector<_ItemDataUpdate_*,std::allocator<_ItemDataUpdate_*>_>.{dtor}` | +| `std.basic_string,std::allocator_>.assign` | `1000cc64` | `std.basic_string,std::allocator_>.assign` | +| `~DataClientProxy` | `1000cca4` | `~DataClientProxy` | +| `Dispose` | `1000cccc` | `Dispose` | +| `std.basic_string,std::allocator_>.=` | `1000ccfc` | `std.basic_string,std::allocator_>.=` | +| `Dispose` | `1000cd34` | `Dispose` | +| `CDataClientCLI.CreateConnection` | `1000cd50` | `CDataClientCLI.CreateConnection` | +| `CDataClientCLI.CreateSubscription` | `1000ced4` | `CDataClientCLI.CreateSubscription` | +| `CWrapLogger.LogInfo` | `1000d0f0` | `CWrapLogger.LogInfo` | +| `CDataClientCLI.ChangeSubscription` | `1000d184` | `CDataClientCLI.ChangeSubscription` | +| `CDataClientCLI.DeleteSubscription` | `1000d324` | `CDataClientCLI.DeleteSubscription` | +| `CDataClientCLI.AddMonitoredItems` | `1000d4a4` | `CDataClientCLI.AddMonitoredItems` | +| `CWrapLogger.LogTrace` | `1000dbc0` | `CWrapLogger.LogTrace` | +| `CDataClientCLI.ChangeMonitoredItems` | `1000dc54` | `CDataClientCLI.ChangeMonitoredItems` | +| `CDataClientCLI.DeleteMonitoredItems` | `1000dc84` | `CDataClientCLI.DeleteMonitoredItems` | +| `CDataClientCLI.RegisterItems` | `1000e0d4` | `CDataClientCLI.RegisterItems` | +| `CDataClientCLI.UnregisterItems` | `1000e3e4` | `CDataClientCLI.UnregisterItems` | +| `CDataClientCLI.WriteWithDesc` | `1000e704` | `CDataClientCLI.WriteWithDesc` | +| `CDataClientCLI.Publish` | `1000ef94` | `CDataClientCLI.Publish` | +| `CDataClientCLI.PublishWriteComplete` | `1000f314` | `CDataClientCLI.PublishWriteComplete` | +| `CDataClientCLI.Read` | `1000f9f4` | `CDataClientCLI.Read` | +| `GetErrorMsg` | `1000fec4` | `GetErrorMsg` | +| `MultiReadLock.{ctor}` | `1000ff44` | `MultiReadLock.{ctor}` | +| `MultiReadLock.{dtor}` | `1000ff64` | `MultiReadLock.{dtor}` | +| `MultiWriteLock.{ctor}` | `1000ff84` | `MultiWriteLock.{ctor}` | +| `MultiWriteLock.{dtor}` | `1000ffa4` | `MultiWriteLock.{dtor}` | +| `ProcessExitHandler` | `1000ffc4` | `ProcessExitHandler` | +| `ATL.?A0xa8d5f844.AtlGetDirLen` | `1000fff0` | `ATL.?A0xa8d5f844.AtlGetDirLen` | +| `std.basic_string,std::allocator_>.length` | `10010044` | `std.basic_string,std::allocator_>.length` | +| `EndWorkerThread` | `10010064` | `EndWorkerThread` | +| `std.basic_string,std::allocator_>.{ctor}` | `100103a0` | `std.basic_string,std::allocator_>.{ctor}` | +| `MarshalString` | `100103f4` | `MarshalString` | +| `Initialize` | `10010444` | `Initialize` | +| `Connect2` | `10010b78` | `Connect2` | +| `Disconnect` | `10010db8` | `Disconnect` | +| `CreateSubscription` | `10011064` | `CreateSubscription` | +| `ChangeSubscription` | `1001156c` | `ChangeSubscription` | +| `DeleteSubscription` | `10011a64` | `DeleteSubscription` | +| `AddMonitoredItems` | `10011f54` | `AddMonitoredItems` | +| `DeleteMonitoredItems` | `100126dc` | `DeleteMonitoredItems` | +| `RegisterItems` | `10012bd0` | `RegisterItems` | +| `UnregisterItems` | `100131f0` | `UnregisterItems` | +| `WriteUser` | `100137dc` | `WriteUser` | +| `Write` | `10013ce0` | `Write` | +| `WriteVerified` | `100141d8` | `WriteVerified` | +| `WriteSecured` | `100146ec` | `WriteSecured` | +| `KeepAlive` | `10014bf0` | `KeepAlive` | +| `Publish` | `10014f5c` | `Publish` | +| `PublishWriteComplete` | `100153ac` | `PublishWriteComplete` | +| `Read` | `1001589c` | `Read` | +| `WaitForExitOrDisconnectorTimeout` | `10015d90` | `WaitForExitOrDisconnectorTimeout` | +| `Connect` | `10016130` | `Connect` | +| `AutoConnectLoop` | `100167c8` | `AutoConnectLoop` | +| `StartWorkerThread` | `10016bec` | `StartWorkerThread` | +| `AtlMultiply<>` | `10016ec0` | `AtlMultiply<>` | +| `??0_com_error@@QAE@JPAUIErrorInfo@@_N@Z` | `10017e70` | `_com_error` | +| `??0_com_error@@QAE@ABV0@@Z` | `10017eb0` | `_com_error` | +| `??1_com_error@@UAE@XZ` | `10017ef0` | `~_com_error` | +| `AtlAdd<>` | `10018d80` | `AtlAdd<>` | +| `??_G_com_error@@UAEPAXI@Z` | `10019990` | `\`scalar_deleting_destructor'` | +| `Catch@1001ad7e` | `1001ad7e` | `Catch@1001ad7e` | +| `Catch@1001ae11` | `1001ae11` | `Catch@1001ae11` | +| `Catch@1001b038` | `1001b038` | `Catch@1001b038` | +| `Catch@1001d3af` | `1001d3af` | `Catch@1001d3af` | +| `Catch@1001e17b` | `1001e17b` | `Catch@1001e17b` | +| `Catch@1001fe2f` | `1001fe2f` | `Catch@1001fe2f` | +| `Catch@1001fea1` | `1001fea1` | `Catch@1001fea1` | +| `Catch@1001feb9` | `1001feb9` | `Catch@1001feb9` | +| `Catch@1001ff2e` | `1001ff2e` | `Catch@1001ff2e` | +| `Catch@1002000f` | `1002000f` | `Catch@1002000f` | +| `Catch@10020084` | `10020084` | `Catch@10020084` | +| `Catch@1002009c` | `1002009c` | `Catch@1002009c` | +| `Catch@10020114` | `10020114` | `Catch@10020114` | +| `Catch@100201ed` | `100201ed` | `Catch@100201ed` | +| `Catch@10020262` | `10020262` | `Catch@10020262` | +| `Catch@1002027a` | `1002027a` | `Catch@1002027a` | +| `Catch@100202f2` | `100202f2` | `Catch@100202f2` | +| `Catch@100203c3` | `100203c3` | `Catch@100203c3` | +| `Catch@10020438` | `10020438` | `Catch@10020438` | +| `Catch@10020450` | `10020450` | `Catch@10020450` | +| `Catch@100204c8` | `100204c8` | `Catch@100204c8` | +| `Catch@100205ad` | `100205ad` | `Catch@100205ad` | +| `Catch@10020622` | `10020622` | `Catch@10020622` | +| `Catch@1002063a` | `1002063a` | `Catch@1002063a` | +| `Catch@100206b2` | `100206b2` | `Catch@100206b2` | +| `Catch@100207b6` | `100207b6` | `Catch@100207b6` | +| `Catch@1002082b` | `1002082b` | `Catch@1002082b` | +| `Catch@10020843` | `10020843` | `Catch@10020843` | +| `Catch@100208bb` | `100208bb` | `Catch@100208bb` | +| `Catch@1002099f` | `1002099f` | `Catch@1002099f` | +| `Catch@10020a14` | `10020a14` | `Catch@10020a14` | +| `Catch@10020a2c` | `10020a2c` | `Catch@10020a2c` | +| `Catch@10020aa4` | `10020aa4` | `Catch@10020aa4` | +| `Catch@10020b7f` | `10020b7f` | `Catch@10020b7f` | +| `Catch@10020bf4` | `10020bf4` | `Catch@10020bf4` | +| `Catch@10020c0c` | `10020c0c` | `Catch@10020c0c` | +| `Catch@10020c84` | `10020c84` | `Catch@10020c84` | +| `Catch@10020d5f` | `10020d5f` | `Catch@10020d5f` | +| `Catch@10020dd4` | `10020dd4` | `Catch@10020dd4` | +| `Catch@10020dec` | `10020dec` | `Catch@10020dec` | +| `Catch@10020e64` | `10020e64` | `Catch@10020e64` | +| `Catch@10020f3f` | `10020f3f` | `Catch@10020f3f` | +| `Catch@10020fb4` | `10020fb4` | `Catch@10020fb4` | +| `Catch@10020fcc` | `10020fcc` | `Catch@10020fcc` | +| `Catch@10021044` | `10021044` | `Catch@10021044` | +| `Catch@1002111f` | `1002111f` | `Catch@1002111f` | +| `Catch@10021194` | `10021194` | `Catch@10021194` | +| `Catch@100211ac` | `100211ac` | `Catch@100211ac` | +| `Catch@10021224` | `10021224` | `Catch@10021224` | +| `Catch@100212ff` | `100212ff` | `Catch@100212ff` | +| `Catch@10021374` | `10021374` | `Catch@10021374` | +| `Catch@1002138c` | `1002138c` | `Catch@1002138c` | +| `Catch@10021404` | `10021404` | `Catch@10021404` | +| `Catch@100214d3` | `100214d3` | `Catch@100214d3` | +| `Catch@10021548` | `10021548` | `Catch@10021548` | +| `Catch@10021560` | `10021560` | `Catch@10021560` | +| `Catch@100215d8` | `100215d8` | `Catch@100215d8` | +| `Catch@100216a7` | `100216a7` | `Catch@100216a7` | +| `Catch@1002171c` | `1002171c` | `Catch@1002171c` | +| `Catch@10021734` | `10021734` | `Catch@10021734` | +| `Catch@100217ac` | `100217ac` | `Catch@100217ac` | +| `Catch@100218b5` | `100218b5` | `Catch@100218b5` | +| `Catch@1002192a` | `1002192a` | `Catch@1002192a` | +| `Catch@10021942` | `10021942` | `Catch@10021942` | +| `Catch@100219ba` | `100219ba` | `Catch@100219ba` | +| `Catch@10021a95` | `10021a95` | `Catch@10021a95` | +| `Catch@10021b0a` | `10021b0a` | `Catch@10021b0a` | +| `Catch@10021b22` | `10021b22` | `Catch@10021b22` | +| `Catch@10021b9a` | `10021b9a` | `Catch@10021b9a` | +| `Catch@1002304f` | `1002304f` | `Catch@1002304f` | +| `Catch@10023433` | `10023433` | `Catch@10023433` | +| `WritersWithNonBlockingReadersLock.{ctor}` | `10023c80` | `WritersWithNonBlockingReadersLock.{ctor}` | +| `WritersWithNonBlockingReadersLock.{dtor}` | `10023cb0` | `WritersWithNonBlockingReadersLock.{dtor}` | +| `WritersWithNonBlockingReadersLock.WriterLock` | `10023ce0` | `WritersWithNonBlockingReadersLock.WriterLock` | +| `WritersWithNonBlockingReadersLock.WriterUnlock` | `10023d00` | `WritersWithNonBlockingReadersLock.WriterUnlock` | +| `WritersWithNonBlockingReadersLock.ReaderLock` | `10023d10` | `WritersWithNonBlockingReadersLock.ReaderLock` | +| `WritersWithNonBlockingReadersLock.ReaderUnlock` | `10023d50` | `WritersWithNonBlockingReadersLock.ReaderUnlock` | +| `Catch@10029ab3` | `10029ab3` | `Catch@10029ab3` | +| `Catch@1002afa3` | `1002afa3` | `Catch@1002afa3` | +| `Catch@1002b073` | `1002b073` | `Catch@1002b073` | +| `Catch@1002b143` | `1002b143` | `Catch@1002b143` | +| `Catch@1002b343` | `1002b343` | `Catch@1002b343` | +| `Catch@1002b413` | `1002b413` | `Catch@1002b413` | +| `Catch@1002b4e3` | `1002b4e3` | `Catch@1002b4e3` | +| `Catch@1002b5b3` | `1002b5b3` | `Catch@1002b5b3` | +| `Catch@1002b683` | `1002b683` | `Catch@1002b683` | +| `Catch@1002b753` | `1002b753` | `Catch@1002b753` | +| `Catch@1002b823` | `1002b823` | `Catch@1002b823` | +| `Catch@1002b8f3` | `1002b8f3` | `Catch@1002b8f3` | +| `Catch@1002b9e3` | `1002b9e3` | `Catch@1002b9e3` | +| `Catch@1002baf3` | `1002baf3` | `Catch@1002baf3` | +| `Catch@1002c117` | `1002c117` | `Catch@1002c117` | +| `Catch@1002c1a7` | `1002c1a7` | `Catch@1002c1a7` | +| `Catch@1002c2e9` | `1002c2e9` | `Catch@1002c2e9` | +| `Catch@1002c379` | `1002c379` | `Catch@1002c379` | +| `Catch@1002eb13` | `1002eb13` | `Catch@1002eb13` | +| `Catch@1002ebe3` | `1002ebe3` | `Catch@1002ebe3` | +| `Catch@10031609` | `10031609` | `Catch@10031609` | +| `Catch@100316b9` | `100316b9` | `Catch@100316b9` | +| `Catch@10031769` | `10031769` | `Catch@10031769` | +| `Catch@10031819` | `10031819` | `Catch@10031819` | +| `Catch@100318c9` | `100318c9` | `Catch@100318c9` | +| `Catch@10031979` | `10031979` | `Catch@10031979` | +| `Catch@10031a29` | `10031a29` | `Catch@10031a29` | +| `Catch@10031ad9` | `10031ad9` | `Catch@10031ad9` | +| `Catch@10031b89` | `10031b89` | `Catch@10031b89` | +| `Catch@10031c39` | `10031c39` | `Catch@10031c39` | +| `Catch@10031ce9` | `10031ce9` | `Catch@10031ce9` | +| `Catch@10031d99` | `10031d99` | `Catch@10031d99` | +| `Catch@10031e5f` | `10031e5f` | `Catch@10031e5f` | +| `Catch@10032a29` | `10032a29` | `Catch@10032a29` | +| `Catch@10032a35` | `10032a35` | `Catch@10032a35` | +| `Catch@10032c89` | `10032c89` | `Catch@10032c89` | +| `Catch@10032c95` | `10032c95` | `Catch@10032c95` | +| `Catch@10034a59` | `10034a59` | `Catch@10034a59` | +| `Catch@1003a674` | `1003a674` | `Catch@1003a674` | +| `Catch@1003a723` | `1003a723` | `Catch@1003a723` | +| `Catch@10041843` | `10041843` | `Catch@10041843` | +| `Catch@100419f3` | `100419f3` | `Catch@100419f3` | +| `Catch@10041b03` | `10041b03` | `Catch@10041b03` | +| `Catch@10041c13` | `10041c13` | `Catch@10041c13` | +| `Catch@10041d23` | `10041d23` | `Catch@10041d23` | +| `Catch@10041e33` | `10041e33` | `Catch@10041e33` | +| `Catch@10041f43` | `10041f43` | `Catch@10041f43` | +| `Catch@10042053` | `10042053` | `Catch@10042053` | +| `Catch@10043849` | `10043849` | `Catch@10043849` | +| `Catch@10044abf` | `10044abf` | `Catch@10044abf` | +| `Catch@10048f3f` | `10048f3f` | `Catch@10048f3f` | +| `Catch@1004901f` | `1004901f` | `Catch@1004901f` | +| `Catch@1004b14f` | `1004b14f` | `Catch@1004b14f` | +| `Catch@1004b1f5` | `1004b1f5` | `Catch@1004b1f5` | +| `Catch@1004b3c6` | `1004b3c6` | `Catch@1004b3c6` | +| `Catch@1004b43b` | `1004b43b` | `Catch@1004b43b` | +| `Catch@1004b453` | `1004b453` | `Catch@1004b453` | +| `Catch@1004b4cb` | `1004b4cb` | `Catch@1004b4cb` | +| `Catch@1004b6f8` | `1004b6f8` | `Catch@1004b6f8` | +| `Catch@1004b75c` | `1004b75c` | `Catch@1004b75c` | +| `Catch@1004b796` | `1004b796` | `Catch@1004b796` | +| `Catch@1004b812` | `1004b812` | `Catch@1004b812` | +| `Catch@1004be0a` | `1004be0a` | `Catch@1004be0a` | +| `Catch@1004be6f` | `1004be6f` | `Catch@1004be6f` | +| `Catch@1004beb5` | `1004beb5` | `Catch@1004beb5` | +| `Catch@1004bf3b` | `1004bf3b` | `Catch@1004bf3b` | +| `Catch@1004cf6c` | `1004cf6c` | `Catch@1004cf6c` | +| `Catch@1004d155` | `1004d155` | `Catch@1004d155` | +| `Ordinal_1` | `1004e180` | `DllCanUnloadNow` | +| `DllCanUnloadNow` | `1004e180` | `DllCanUnloadNow` | +| `Catch@1004e227` | `1004e227` | `Catch@1004e227` | +| `??0?$CComCritSecLock@VCComCriticalSection@ATL@@@ATL@@QAE@AAVCComCriticalSection@1@_N@Z` | `1004e710` | `CComCritSecLock` | +| `Catch@1004e804` | `1004e804` | `Catch@1004e804` | +| `Ordinal_2` | `1004f630` | `DllGetClassObject` | +| `DllGetClassObject` | `1004f630` | `DllGetClassObject` | +| `Catch@1004fb03` | `1004fb03` | `Catch@1004fb03` | +| `Ordinal_3` | `1004fca0` | `DllRegisterServer` | +| `DllRegisterServer` | `1004fca0` | `DllRegisterServer` | +| `Ordinal_4` | `1004fcb0` | `DllUnregisterServer` | +| `DllUnregisterServer` | `1004fcb0` | `DllUnregisterServer` | +| `RaiseException` | `1004fec4` | `RaiseException` | +| `DeleteCriticalSection` | `1004feca` | `DeleteCriticalSection` | +| `GetProcAddress` | `1004fed0` | `GetProcAddress` | +| `GetModuleHandleW` | `1004fed6` | `GetModuleHandleW` | +| `lstrlenW` | `1004fedc` | `lstrlenW` | +| `GetLastError` | `1004fee2` | `GetLastError` | +| `InterlockedIncrement` | `1004fee8` | `InterlockedIncrement` | +| `LocalFree` | `1004feee` | `LocalFree` | +| `FreeLibrary` | `1004fef4` | `FreeLibrary` | +| `FindClose` | `1004fefa` | `FindClose` | +| `FindFirstFileW` | `1004ff00` | `FindFirstFileW` | +| `GetModuleFileNameW` | `1004ff06` | `GetModuleFileNameW` | +| `LoadLibraryExW` | `1004ff18` | `LoadLibraryExW` | +| `LocalAlloc` | `1004ff24` | `LocalAlloc` | +| `FormatMessageW` | `1004ff2a` | `FormatMessageW` | +| `MultiByteToWideChar` | `1004ff36` | `MultiByteToWideChar` | +| `lstrlenA` | `1004ff3c` | `lstrlenA` | +| `InterlockedDecrement` | `1004ff5a` | `InterlockedDecrement` | +| `Sleep` | `1004ffba` | `Sleep` | +| `CharNextW` | `1004ffc6` | `CharNextW` | +| `UnregisterClassW` | `1004ffcc` | `UnregisterClassW` | +| `RegOpenKeyExW` | `1004ffd8` | `RegOpenKeyExW` | +| `RegCloseKey` | `1004ffde` | `RegCloseKey` | +| `RegQueryValueExW` | `1004ffe4` | `RegQueryValueExW` | +| `CoTaskMemAlloc` | `1004fff0` | `CoTaskMemAlloc` | +| `SysStringLen` | `10050016` | `SysStringLen` | +| `SysFreeString` | `1005001c` | `SysFreeString` | +| `SysAllocString` | `10050022` | `SysAllocString` | +| `VarBstrCat` | `10050064` | `VarBstrCat` | +| `SysAllocStringByteLen` | `1005006a` | `SysAllocStringByteLen` | +| `SysStringByteLen` | `10050070` | `SysStringByteLen` | +| `SetErrorInfo` | `10050088` | `SetErrorInfo` | +| `GetErrorInfo` | `1005008e` | `GetErrorInfo` | +| `AtlGetPerUserRegistration` | `10050094` | `AtlGetPerUserRegistration` | +| `AtlLoadTypeLib` | `1005009a` | `AtlLoadTypeLib` | +| `AtlRegisterClassCategoriesHelper` | `100500a0` | `AtlRegisterClassCategoriesHelper` | +| `?memmove_s@Checked@ATL@@YAXPAXIPBXI@Z` | `100501b4` | `memmove_s` | +| `?RemoveAt@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHH@Z` | `100501d5` | `RemoveAt` | +| `?RemoveResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `100502af` | `RemoveResourceInstance` | +| `?GetHInstanceAt@CAtlBaseModule@ATL@@QAEPAUHINSTANCE__@@H@Z` | `10050318` | `GetHInstanceAt` | +| `?Add@?$CSimpleArray@PAUHINSTANCE__@@V?$CSimpleArrayEqualHelper@PAUHINSTANCE__@@@ATL@@@ATL@@QAEHABQAUHINSTANCE__@@@Z` | `10050375` | `Add` | +| `?AddResourceInstance@CAtlBaseModule@ATL@@QAE_NPAUHINSTANCE__@@@Z` | `10050431` | `AddResourceInstance` | +| `com_issue_error` | `100504a0` | `com_issue_error` | +| `_com_issue_error` | `100504a0` | `com_issue_error` | +| `_com_issue_errorex` | `100504c0` | `_com_issue_errorex` | +| `?_com_issue_errorex@@YGXJPAUIUnknown@@ABU_GUID@@@Z` | `100504c0` | `_com_issue_errorex` | +| `_com_dispatch_method` | `10050540` | `_com_dispatch_method` | +| `?_com_dispatch_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `10050540` | `_com_dispatch_method` | +| `_com_dispatch_propget` | `10050590` | `_com_dispatch_propget` | +| `?_com_dispatch_propget@@YGJPAUIDispatch@@JGPAX@Z` | `10050590` | `_com_dispatch_propget` | +| `_com_dispatch_propput` | `100505c0` | `_com_dispatch_propput` | +| `?_com_dispatch_propput@@YAJPAUIDispatch@@JGZZ` | `100505c0` | `_com_dispatch_propput` | +| `_com_invoke_helper` | `10050690` | `_com_invoke_helper` | +| `?_com_invoke_helper@@YAJPAUIDispatch@@JGGPAXPBGPADPAPAUIErrorInfo@@@Z` | `10050690` | `_com_invoke_helper` | +| `_com_dispatch_raw_method` | `10050c60` | `_com_dispatch_raw_method` | +| `?_com_dispatch_raw_method@@YAJPAUIDispatch@@JGGPAXPBGZZ` | `10050c60` | `_com_dispatch_raw_method` | +| `_com_dispatch_raw_propget` | `10050cb0` | `_com_dispatch_raw_propget` | +| `?_com_dispatch_raw_propget@@YGJPAUIDispatch@@JGPAX@Z` | `10050cb0` | `_com_dispatch_raw_propget` | +| `_com_dispatch_raw_propput` | `10050ce0` | `_com_dispatch_raw_propput` | +| `?_com_dispatch_raw_propput@@YAJPAUIDispatch@@JGZZ` | `10050ce0` | `_com_dispatch_raw_propput` | +| `_com_handle_excepinfo` | `10050d80` | `_com_handle_excepinfo` | +| `?_com_handle_excepinfo@@YGJAAUtagEXCEPINFO@@PAPAUIErrorInfo@@@Z` | `10050d80` | `_com_handle_excepinfo` | +| `_Lock` | `10050e84` | `_Lock` | +| `_Unlock` | `10050e8a` | `_Unlock` | +| `showmanyc` | `10050e90` | `showmanyc` | +| `uflow` | `10050e96` | `uflow` | +| `xsgetn` | `10050e9c` | `xsgetn` | +| `xsputn` | `10050ea2` | `xsputn` | +| `setbuf` | `10050ea8` | `setbuf` | +| `sync` | `10050eae` | `sync` | +| `imbue` | `10050eb4` | `imbue` | +| `std._Xlength_error` | `10050ec0` | `std._Xlength_error` | +| `std._Container_base0._Orphan_all` | `10050ec6` | `std._Container_base0._Orphan_all` | +| `std.ios_base.setf` | `10050ecc` | `std.ios_base.setf` | +| `std._Xout_of_range` | `10050ed2` | `std._Xout_of_range` | +| `std.basic_streambuf_>.setp` | `10050ed8` | `std.basic_streambuf_>.setp` | +| `std.basic_streambuf_>.setg` | `10050ede` | `std.basic_streambuf_>.setg` | +| `std.basic_streambuf_>.eback` | `10050ee4` | `std.basic_streambuf_>.eback` | +| `std.basic_streambuf_>.egptr` | `10050eea` | `std.basic_streambuf_>.egptr` | +| `std.basic_streambuf_>.epptr` | `10050ef0` | `std.basic_streambuf_>.epptr` | +| `std.basic_streambuf_>.pptr` | `10050ef6` | `std.basic_streambuf_>.pptr` | +| `std.basic_ios_>.rdbuf` | `10050efc` | `std.basic_ios_>.rdbuf` | +| `std.basic_streambuf_>.{dtor}` | `10050f02` | `std.basic_streambuf_>.{dtor}` | +| `std.basic_streambuf_>.gptr` | `10050f08` | `std.basic_streambuf_>.gptr` | +| `std.basic_streambuf_>.gbump` | `10050f0e` | `std.basic_streambuf_>.gbump` | +| `std.basic_streambuf_>.pbump` | `10050f14` | `std.basic_streambuf_>.pbump` | +| `std.basic_streambuf_>.setp` | `10050f1a` | `std.basic_streambuf_>.setp` | +| `std.basic_streambuf_>.pbase` | `10050f20` | `std.basic_streambuf_>.pbase` | +| `std.basic_ostream_>.flush` | `10050f26` | `std.basic_ostream_>.flush` | +| `std.basic_ios_>.tie` | `10050f2c` | `std.basic_ios_>.tie` | +| `std.ios_base.good` | `10050f32` | `std.ios_base.good` | +| `std.basic_ostream_>._Osfx` | `10050f38` | `std.basic_ostream_>._Osfx` | +| `std.uncaught_exception` | `10050f3e` | `std.uncaught_exception` | +| `std.basic_ios_>.setstate` | `10050f44` | `std.basic_ios_>.setstate` | +| `std.ios_base.width` | `10050f4a` | `std.ios_base.width` | +| `std.basic_streambuf_>.sputn` | `10050f50` | `std.basic_streambuf_>.sputn` | +| `std.basic_streambuf_>.sputc` | `10050f56` | `std.basic_streambuf_>.sputc` | +| `std.basic_ios_>.fill` | `10050f5c` | `std.basic_ios_>.fill` | +| `std.ios_base.flags` | `10050f62` | `std.ios_base.flags` | +| `std.ios_base.width` | `10050f68` | `std.ios_base.width` | +| `std.basic_iostream_>.{dtor}` | `10050f6e` | `std.basic_iostream_>.{dtor}` | +| `std.basic_streambuf_>._Pninc` | `10050f74` | `std.basic_streambuf_>._Pninc` | +| `std.basic_streambuf_>.{ctor}` | `10050f7a` | `std.basic_streambuf_>.{ctor}` | +| `std.basic_ios_>.{dtor}` | `10050f80` | `std.basic_ios_>.{dtor}` | +| `std.basic_iostream_>.{ctor}` | `10050f86` | `std.basic_iostream_>.{ctor}` | +| `std.basic_ios_>.{ctor}` | `10050f8c` | `std.basic_ios_>.{ctor}` | +| `std.basic_ostream_>.<<` | `10050f92` | `std.basic_ostream_>.<<` | +| `std.basic_ostream_>.<<` | `10050f98` | `std.basic_ostream_>.<<` | +| `std.basic_ostream_>.<<` | `10050f9e` | `std.basic_ostream_>.<<` | +| `FID_conflict:\`vector_deleting_destructor'` | `10050fc1` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Etype_info@@UAEPAXI@Z` | `10050fc1` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_ECDaoRelationFieldInfo@@UAEPAXI@Z` | `10050fc1` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Elogic_error@@UAEPAXI@Z` | `10050fc1` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@std@@UAEPAXI@Z` | `10050fc1` | `FID_conflict:\`vector_deleting_destructor'` | +| `??_Eexception@@UAEPAXI@Z` | `10050fc1` | `FID_conflict:\`vector_deleting_destructor'` | +| `what` | `10051012` | `what` | +| `std.exception.{ctor}` | `10051018` | `std.exception.{ctor}` | +| `_vsnwprintf_s` | `1005101e` | `_vsnwprintf_s` | +| `__security_check_cookie` | `10051024` | `__security_check_cookie` | +| `@__security_check_cookie@4` | `10051024` | `__security_check_cookie` | +| `__alloca_probe` | `10051040` | `__alloca_probe` | +| `__chkstk` | `10051040` | `__alloca_probe` | +| `delete` | `1005106c` | `delete` | +| `_CxxThrowException` | `10051078` | `_CxxThrowException` | +| `wcsncpy_s` | `1005107e` | `wcsncpy_s` | +| `std.exception.{dtor}` | `10051084` | `std.exception.{dtor}` | +| `std.exception.{ctor}` | `1005108a` | `std.exception.{ctor}` | +| `free` | `10051090` | `free` | +| `new` | `10051096` | `new` | +| `delete[]` | `1005109c` | `delete[]` | +| `__ArrayUnwind` | `100510b4` | `__ArrayUnwind` | +| `?__ArrayUnwind@@YGXPAXIHP6EX0@Z@Z` | `100510b4` | `__ArrayUnwind` | +| `\`eh_vector_destructor_iterator'` | `10051112` | `\`eh_vector_destructor_iterator'` | +| `??_M@YGXPAXIHP6EX0@Z@Z` | `10051112` | `\`eh_vector_destructor_iterator'` | +| `memcpy` | `10051186` | `memcpy` | +| `memmove` | `1005118c` | `memmove` | +| `memset` | `10051198` | `memset` | +| `wcscat_s` | `1005119e` | `wcscat_s` | +| `_wsplitpath_s` | `100511a4` | `_wsplitpath_s` | +| `_splitpath_s` | `100511b0` | `_splitpath_s` | +| `_makepath_s` | `100511b6` | `_makepath_s` | +| `calloc` | `100511bc` | `calloc` | +| `_recalloc` | `100511c2` | `_recalloc` | +| `swprintf_s` | `100511c8` | `swprintf_s` | +| `wcscpy_s` | `100511ce` | `wcscpy_s` | +| `__onexit` | `100511d4` | `__onexit` | +| `_atexit` | `10051275` | `_atexit` | +| `purecall` | `100512aa` | `purecall` | +| `__CRT_INIT@12` | `10051305` | `__CRT_INIT@12` | +| `___DllMainCRTStartup` | `1005150f` | `___DllMainCRTStartup` | +| `__DllMainCRTStartup@12` | `10051625` | `__DllMainCRTStartup@12` | +| `memmove_s` | `10051648` | `memmove_s` | +| `__alloca_probe_16` | `10051680` | `__alloca_probe_16` | +| `__alloca_probe_8` | `10051696` | `__alloca_probe_8` | +| `___report_gsfailure` | `100516ac` | `___report_gsfailure` | +| `terminate` | `100517b2` | `terminate` | +| `__SEH_prolog4` | `100517c0` | `__SEH_prolog4` | +| `__SEH_epilog4` | `10051805` | `__SEH_epilog4` | +| `_unlock` | `1005181a` | `_unlock` | +| `__dllonexit` | `10051820` | `__dllonexit` | +| `_lock` | `10051826` | `_lock` | +| `__ValidateImageBase` | `10051890` | `__ValidateImageBase` | +| `__FindPESection` | `100518d0` | `__FindPESection` | +| `__IsNonwritableInCurrentImage` | `10051920` | `__IsNonwritableInCurrentImage` | +| `initterm` | `100519dc` | `initterm` | +| `initterm_e` | `100519e2` | `initterm_e` | +| `_amsg_exit` | `100519e8` | `_amsg_exit` | +| `__security_init_cookie` | `100519f4` | `__security_init_cookie` | +| `except_handler4_common` | `10051a90` | `except_handler4_common` | +| `_type_info_dtor_internal_method` | `10051a96` | `_type_info_dtor_internal_method` | +| `_crt_debugger_hook` | `10051a9c` | `_crt_debugger_hook` | +| `.NativeDll.IsInDllMain` | `10051ab4` | `.NativeDll.IsInDllMain` | +| `.NativeDll.IsInProcessAttach` | `10051ad8` | `.NativeDll.IsInProcessAttach` | +| `.NativeDll.IsInProcessDetach` | `10051af8` | `.NativeDll.IsInProcessDetach` | +| `.NativeDll.IsInVcclrit` | `10051b18` | `.NativeDll.IsInVcclrit` | +| `.NativeDll.IsSafeForManagedCode` | `10051b3c` | `.NativeDll.IsSafeForManagedCode` | +| `getFiberPtrId` | `10051b8b` | `getFiberPtrId` | +| `_getFiberPtrId` | `10051b8b` | `getFiberPtrId` | +| `.ctor` | `10051ba4` | `.ctor` | +| `.ctor` | `10051bb8` | `.ctor` | +| `.ctor` | `10051bd0` | `.ctor` | +| `.ctor` | `10051be8` | `.ctor` | +| `.ctor` | `10051bfc` | `.ctor` | +| `.ctor` | `10051c14` | `.ctor` | +| `get_NestedException` | `10051c2c` | `get_NestedException` | +| `set_NestedException` | `10051c40` | `set_NestedException` | +| `ToString` | `10051c54` | `ToString` | +| `GetObjectData` | `10051cf8` | `GetObjectData` | +| `.ctor` | `10051d28` | `.ctor` | +| `.ThrowModuleLoadException` | `10051d60` | `.ThrowModuleLoadException` | +| `.ThrowModuleLoadException` | `10051d7c` | `.ThrowModuleLoadException` | +| `AddHandler` | `10051d98` | `AddHandler` | +| `SingletonDomainUnload` | `10051df8` | `SingletonDomainUnload` | +| `.RegisterModuleUninitializer` | `10051e9c` | `.RegisterModuleUninitializer` | +| `.FromGUID` | `10051ebc` | `.FromGUID` | +| `__get_default_appdomain` | `10051f08` | `__get_default_appdomain` | +| `__release_appdomain` | `10051f94` | `__release_appdomain` | +| `.GetDefaultDomain` | `10051fb4` | `.GetDefaultDomain` | +| `.DoCallBackInDefaultDomain` | `1005201c` | `.DoCallBackInDefaultDomain` | +| `.ctor` | `100520ac` | `.ctor` | +| `.ctor` | `100520c0` | `.ctor` | +| `.DefaultDomain.DoNothing` | `100520d8` | `.DefaultDomain.DoNothing` | +| `.DefaultDomain.HasPerProcess` | `100520fc` | `.DefaultDomain.HasPerProcess` | +| `.DefaultDomain.HasNative` | `10052154` | `.DefaultDomain.HasNative` | +| `.DefaultDomain.NeedsInitialization` | `100521d8` | `.DefaultDomain.NeedsInitialization` | +| `.DefaultDomain.NeedsUninitialization` | `10052218` | `.DefaultDomain.NeedsUninitialization` | +| `.DefaultDomain.Initialize` | `10052230` | `.DefaultDomain.Initialize` | +| `.LanguageSupport.UninitializeAppDomain` | `10052250` | `.LanguageSupport.UninitializeAppDomain` | +| `.LanguageSupport._UninitializeDefaultDomain` | `10052268` | `.LanguageSupport._UninitializeDefaultDomain` | +| `.LanguageSupport.UninitializeDefaultDomain` | `100522a8` | `.LanguageSupport.UninitializeDefaultDomain` | +| `.LanguageSupport.DomainUnload` | `100522e4` | `.LanguageSupport.DomainUnload` | +| `gcroot.{ctor}` | `10052328` | `gcroot.{ctor}` | +| `gcroot.{dtor}` | `10052354` | `gcroot.{dtor}` | +| `gcroot.=` | `10052384` | `gcroot.=` | +| `gcroot..P$AAVString@System@@` | `100523b0` | `gcroot..P$AAVString@System@@` | +| `.ctor` | `100523dc` | `.ctor` | +| `.ThrowNestedModuleLoadException` | `100523f8` | `.ThrowNestedModuleLoadException` | +| `.ctor` | `10052418` | `.ctor` | +| `.LanguageSupport.InitializeVtables` | `10052450` | `.LanguageSupport.InitializeVtables` | +| `.LanguageSupport.InitializeDefaultAppDomain` | `1005248c` | `.LanguageSupport.InitializeDefaultAppDomain` | +| `.LanguageSupport.InitializeNative` | `100524b0` | `.LanguageSupport.InitializeNative` | +| `.LanguageSupport.InitializePerProcess` | `10052554` | `.LanguageSupport.InitializePerProcess` | +| `.LanguageSupport.InitializePerAppDomain` | `1005259c` | `.LanguageSupport.InitializePerAppDomain` | +| `.LanguageSupport.InitializeUninitializer` | `100525dc` | `.LanguageSupport.InitializeUninitializer` | +| `.LanguageSupport._Initialize` | `1005260c` | `.LanguageSupport._Initialize` | +| `.LanguageSupport.Cleanup` | `10052738` | `.LanguageSupport.Cleanup` | +| `.LanguageSupport.{ctor}` | `100527b4` | `.LanguageSupport.{ctor}` | +| `.LanguageSupport.{dtor}` | `100527d8` | `.LanguageSupport.{dtor}` | +| `.LanguageSupport.Initialize` | `100527f8` | `.LanguageSupport.Initialize` | +| `.cctor` | `100528bc` | `.cctor` | +| `.cctor` | `10052914` | `.cctor` | +| `___CxxCallUnwindDtor` | `10052938` | `___CxxCallUnwindDtor` | +| `___CxxCallUnwindDelDtor` | `10052984` | `___CxxCallUnwindDelDtor` | +| `___CxxCallUnwindVecDtor` | `100529d0` | `___CxxCallUnwindVecDtor` | +| `?A0xf01855ed.ArrayUnwindFilter` | `10052a20` | `?A0xf01855ed.ArrayUnwindFilter` | +| `__ArrayUnwind` | `10052a48` | `__ArrayUnwind` | +| `__ehvec_dtor` | `10052aa4` | `__ehvec_dtor` | +| `.AtExitLock._handle` | `10052b08` | `.AtExitLock._handle` | +| `.AtExitLock._lock_Set` | `10052b3c` | `.AtExitLock._lock_Set` | +| `.AtExitLock._lock_Get` | `10052b90` | `.AtExitLock._lock_Get` | +| `.AtExitLock._lock_Destruct` | `10052bbc` | `.AtExitLock._lock_Destruct` | +| `.AtExitLock.IsInitialized` | `10052bec` | `.AtExitLock.IsInitialized` | +| `.AtExitLock.RemoveRef` | `10052c0c` | `.AtExitLock.RemoveRef` | +| `.AtExitLock.Enter` | `10052c38` | `.AtExitLock.Enter` | +| `.AtExitLock.Exit` | `10052c58` | `.AtExitLock.Exit` | +| `?A0xe11594df.__global_lock` | `10052c78` | `?A0xe11594df.__global_lock` | +| `?A0xe11594df.__global_unlock` | `10052c9c` | `?A0xe11594df.__global_unlock` | +| `?A0xe11594df.__dealloc_global_lock` | `10052cc0` | `?A0xe11594df.__dealloc_global_lock` | +| `_atexit_helper` | `10052cd8` | `_atexit_helper` | +| `_exit_callback` | `10052e5c` | `_exit_callback` | +| `_atexit_m` | `10052f04` | `_atexit_m` | +| `_app_exit_callback` | `10052f34` | `_app_exit_callback` | +| `_atexit_m_appdomain` | `10053010` | `_atexit_m_appdomain` | +| `.AtExitLock._lock_Construct` | `10053040` | `.AtExitLock._lock_Construct` | +| `.AtExitLock.AddRef` | `10053060` | `.AtExitLock.AddRef` | +| `?A0xe11594df.__alloc_global_lock` | `10053098` | `?A0xe11594df.__alloc_global_lock` | +| `_initatexit_m` | `100530b8` | `_initatexit_m` | +| `_onexit_m` | `10053104` | `_onexit_m` | +| `_initatexit_app_domain` | `10053124` | `_initatexit_app_domain` | +| `_onexit_m_appdomain` | `10053170` | `_onexit_m_appdomain` | +| `_initterm_e` | `10053190` | `_initterm_e` | +| `_initterm` | `100531c4` | `_initterm` | +| `.ThisModule.Handle` | `100531f0` | `.ThisModule.Handle` | +| `.ThisModule.ResolveMethod` | `10053218` | `.ThisModule.ResolveMethod` | +| `_initterm_m` | `1005324c` | `_initterm_m` | +| `VariantInit` | `100532c0` | `VariantInit` | +| `VariantCopy` | `100532cc` | `VariantCopy` | +| `std.locale.facet._Incref` | `100532d2` | `std.locale.facet._Incref` | +| `__ExceptionPtrCopy` | `100532d8` | `__ExceptionPtrCopy` | +| `__CxxUnregisterExceptionObject` | `100532de` | `__CxxUnregisterExceptionObject` | +| `__CxxDetectRethrow` | `100532e4` | `__CxxDetectRethrow` | +| `__CxxRegisterExceptionObject` | `100532ea` | `__CxxRegisterExceptionObject` | +| `__CxxExceptionFilter` | `100532f0` | `__CxxExceptionFilter` | +| `__CxxQueryExceptionSize` | `100532f6` | `__CxxQueryExceptionSize` | +| `_cexit` | `100532fc` | `_cexit` | +| `__FrameUnwindFilter` | `10053302` | `__FrameUnwindFilter` | +| `entry` | `10053308` | `entry` | +| `Unwind@10053310` | `10053310` | `Unwind@10053310` | +| `Unwind@10053340` | `10053340` | `Unwind@10053340` | +| `Unwind@10053370` | `10053370` | `Unwind@10053370` | +| `Unwind@100533a0` | `100533a0` | `Unwind@100533a0` | +| `Unwind@100533d0` | `100533d0` | `Unwind@100533d0` | +| `Unwind@10053400` | `10053400` | `Unwind@10053400` | +| `Unwind@10053430` | `10053430` | `Unwind@10053430` | +| `Unwind@10053460` | `10053460` | `Unwind@10053460` | +| `Unwind@10053490` | `10053490` | `Unwind@10053490` | +| `Unwind@100534c0` | `100534c0` | `Unwind@100534c0` | +| `Unwind@100534f0` | `100534f0` | `Unwind@100534f0` | +| `Unwind@10053520` | `10053520` | `Unwind@10053520` | +| `Unwind@10053550` | `10053550` | `Unwind@10053550` | +| `Unwind@10053580` | `10053580` | `Unwind@10053580` | +| `Unwind@100535b0` | `100535b0` | `Unwind@100535b0` | +| `Unwind@100535e0` | `100535e0` | `Unwind@100535e0` | +| `Unwind@10053610` | `10053610` | `Unwind@10053610` | +| `Unwind@10053640` | `10053640` | `Unwind@10053640` | +| `Unwind@10053670` | `10053670` | `Unwind@10053670` | +| `Unwind@100536a0` | `100536a0` | `Unwind@100536a0` | +| `Unwind@100536b1` | `100536b1` | `Unwind@100536b1` | +| `Unwind@100536e0` | `100536e0` | `Unwind@100536e0` | +| `Unwind@10053710` | `10053710` | `Unwind@10053710` | +| `Unwind@10053740` | `10053740` | `Unwind@10053740` | +| `Unwind@10053770` | `10053770` | `Unwind@10053770` | +| `Unwind@10053781` | `10053781` | `Unwind@10053781` | +| `Unwind@100537b0` | `100537b0` | `Unwind@100537b0` | +| `Unwind@100537c1` | `100537c1` | `Unwind@100537c1` | +| `Unwind@100537f0` | `100537f0` | `Unwind@100537f0` | +| `Unwind@10053801` | `10053801` | `Unwind@10053801` | +| `Unwind@10053830` | `10053830` | `Unwind@10053830` | +| `Unwind@10053860` | `10053860` | `Unwind@10053860` | +| `Unwind@10053868` | `10053868` | `Unwind@10053868` | +| `Unwind@10053870` | `10053870` | `Unwind@10053870` | +| `Unwind@10053878` | `10053878` | `Unwind@10053878` | +| `Unwind@10053880` | `10053880` | `Unwind@10053880` | +| `Unwind@100538b0` | `100538b0` | `Unwind@100538b0` | +| `Unwind@100538bb` | `100538bb` | `Unwind@100538bb` | +| `Unwind@100538c6` | `100538c6` | `Unwind@100538c6` | +| `Unwind@100538d1` | `100538d1` | `Unwind@100538d1` | +| `Unwind@100538dc` | `100538dc` | `Unwind@100538dc` | +| `Unwind@100538e7` | `100538e7` | `Unwind@100538e7` | +| `Unwind@10053920` | `10053920` | `Unwind@10053920` | +| `Unwind@10053931` | `10053931` | `Unwind@10053931` | +| `Unwind@10053960` | `10053960` | `Unwind@10053960` | +| `Unwind@10053971` | `10053971` | `Unwind@10053971` | +| `Unwind@100539a0` | `100539a0` | `Unwind@100539a0` | +| `Unwind@100539d0` | `100539d0` | `Unwind@100539d0` | +| `Unwind@100539e1` | `100539e1` | `Unwind@100539e1` | +| `Unwind@10053a10` | `10053a10` | `Unwind@10053a10` | +| `Unwind@10053a80` | `10053a80` | `Unwind@10053a80` | +| `Unwind@10053ab0` | `10053ab0` | `Unwind@10053ab0` | +| `Unwind@10053abb` | `10053abb` | `Unwind@10053abb` | +| `Unwind@10053ac3` | `10053ac3` | `Unwind@10053ac3` | +| `Unwind@10053acb` | `10053acb` | `Unwind@10053acb` | +| `Unwind@10053ad3` | `10053ad3` | `Unwind@10053ad3` | +| `Unwind@10053adb` | `10053adb` | `Unwind@10053adb` | +| `Unwind@10053ae3` | `10053ae3` | `Unwind@10053ae3` | +| `Unwind@10053aeb` | `10053aeb` | `Unwind@10053aeb` | +| `Unwind@10053af3` | `10053af3` | `Unwind@10053af3` | +| `Unwind@10053afb` | `10053afb` | `Unwind@10053afb` | +| `Unwind@10053b03` | `10053b03` | `Unwind@10053b03` | +| `Unwind@10053b0b` | `10053b0b` | `Unwind@10053b0b` | +| `Unwind@10053b13` | `10053b13` | `Unwind@10053b13` | +| `Unwind@10053b1b` | `10053b1b` | `Unwind@10053b1b` | +| `Unwind@10053b23` | `10053b23` | `Unwind@10053b23` | +| `Unwind@10053b2b` | `10053b2b` | `Unwind@10053b2b` | +| `Unwind@10053b33` | `10053b33` | `Unwind@10053b33` | +| `Unwind@10053b3b` | `10053b3b` | `Unwind@10053b3b` | +| `Unwind@10053b43` | `10053b43` | `Unwind@10053b43` | +| `Unwind@10053b4b` | `10053b4b` | `Unwind@10053b4b` | +| `Unwind@10053b53` | `10053b53` | `Unwind@10053b53` | +| `Unwind@10053b5b` | `10053b5b` | `Unwind@10053b5b` | +| `Unwind@10053b63` | `10053b63` | `Unwind@10053b63` | +| `Unwind@10053b6b` | `10053b6b` | `Unwind@10053b6b` | +| `Unwind@10053b73` | `10053b73` | `Unwind@10053b73` | +| `Unwind@10053b7b` | `10053b7b` | `Unwind@10053b7b` | +| `Unwind@10053b83` | `10053b83` | `Unwind@10053b83` | +| `Unwind@10053b8b` | `10053b8b` | `Unwind@10053b8b` | +| `Unwind@10053b93` | `10053b93` | `Unwind@10053b93` | +| `Unwind@10053bc0` | `10053bc0` | `Unwind@10053bc0` | +| `Unwind@10053bf0` | `10053bf0` | `Unwind@10053bf0` | +| `Unwind@10053c20` | `10053c20` | `Unwind@10053c20` | +| `Unwind@10053c50` | `10053c50` | `Unwind@10053c50` | +| `Unwind@10053c80` | `10053c80` | `Unwind@10053c80` | +| `Unwind@10053cb0` | `10053cb0` | `Unwind@10053cb0` | +| `Unwind@10053ce0` | `10053ce0` | `Unwind@10053ce0` | +| `Unwind@10053d10` | `10053d10` | `Unwind@10053d10` | +| `Unwind@10053d40` | `10053d40` | `Unwind@10053d40` | +| `Unwind@10053d70` | `10053d70` | `Unwind@10053d70` | +| `Unwind@10053d7b` | `10053d7b` | `Unwind@10053d7b` | +| `Unwind@10053db0` | `10053db0` | `Unwind@10053db0` | +| `Unwind@10053de0` | `10053de0` | `Unwind@10053de0` | +| `Unwind@10053e10` | `10053e10` | `Unwind@10053e10` | +| `Unwind@10053e40` | `10053e40` | `Unwind@10053e40` | +| `Unwind@10053e70` | `10053e70` | `Unwind@10053e70` | +| `Unwind@10053ea0` | `10053ea0` | `Unwind@10053ea0` | +| `Unwind@10053ef0` | `10053ef0` | `Unwind@10053ef0` | +| `Unwind@10053ef8` | `10053ef8` | `Unwind@10053ef8` | +| `Unwind@10053f20` | `10053f20` | `Unwind@10053f20` | +| `Unwind@10053f50` | `10053f50` | `Unwind@10053f50` | +| `Unwind@10053f80` | `10053f80` | `Unwind@10053f80` | +| `Unwind@10053fb0` | `10053fb0` | `Unwind@10053fb0` | +| `Unwind@10053fe0` | `10053fe0` | `Unwind@10053fe0` | +| `Unwind@10054010` | `10054010` | `Unwind@10054010` | +| `Unwind@10054050` | `10054050` | `Unwind@10054050` | +| `Unwind@10054058` | `10054058` | `Unwind@10054058` | +| `Unwind@10054060` | `10054060` | `Unwind@10054060` | +| `Unwind@10054090` | `10054090` | `Unwind@10054090` | +| `Unwind@1005409c` | `1005409c` | `Unwind@1005409c` | +| `Unwind@100540a7` | `100540a7` | `Unwind@100540a7` | +| `Unwind@100540d0` | `100540d0` | `Unwind@100540d0` | +| `Unwind@10054100` | `10054100` | `Unwind@10054100` | +| `Unwind@10054130` | `10054130` | `Unwind@10054130` | +| `Unwind@10054160` | `10054160` | `Unwind@10054160` | +| `Unwind@10054190` | `10054190` | `Unwind@10054190` | +| `Unwind@1005419e` | `1005419e` | `Unwind@1005419e` | +| `Unwind@100541d0` | `100541d0` | `Unwind@100541d0` | +| `Unwind@100541de` | `100541de` | `Unwind@100541de` | +| `Unwind@10054210` | `10054210` | `Unwind@10054210` | +| `Unwind@1005421e` | `1005421e` | `Unwind@1005421e` | +| `Unwind@10054250` | `10054250` | `Unwind@10054250` | +| `Unwind@1005425e` | `1005425e` | `Unwind@1005425e` | +| `Unwind@10054290` | `10054290` | `Unwind@10054290` | +| `Unwind@1005429e` | `1005429e` | `Unwind@1005429e` | +| `Unwind@100542e0` | `100542e0` | `Unwind@100542e0` | +| `Unwind@10054310` | `10054310` | `Unwind@10054310` | +| `Unwind@1005431e` | `1005431e` | `Unwind@1005431e` | +| `Unwind@1005432c` | `1005432c` | `Unwind@1005432c` | +| `Unwind@1005433a` | `1005433a` | `Unwind@1005433a` | +| `Unwind@10054370` | `10054370` | `Unwind@10054370` | +| `Unwind@1005437c` | `1005437c` | `Unwind@1005437c` | +| `Unwind@10054387` | `10054387` | `Unwind@10054387` | +| `Unwind@100543b0` | `100543b0` | `Unwind@100543b0` | +| `Unwind@100543cd` | `100543cd` | `Unwind@100543cd` | +| `Unwind@100543d9` | `100543d9` | `Unwind@100543d9` | +| `Unwind@100543e2` | `100543e2` | `Unwind@100543e2` | +| `Unwind@10054430` | `10054430` | `Unwind@10054430` | +| `Unwind@10054460` | `10054460` | `Unwind@10054460` | +| `Unwind@1005446b` | `1005446b` | `Unwind@1005446b` | +| `Unwind@100544a0` | `100544a0` | `Unwind@100544a0` | +| `Unwind@100544ab` | `100544ab` | `Unwind@100544ab` | +| `Unwind@100544e0` | `100544e0` | `Unwind@100544e0` | +| `Unwind@100544e8` | `100544e8` | `Unwind@100544e8` | +| `Unwind@10054510` | `10054510` | `Unwind@10054510` | +| `Unwind@10054518` | `10054518` | `Unwind@10054518` | +| `Unwind@10054540` | `10054540` | `Unwind@10054540` | +| `Unwind@10054548` | `10054548` | `Unwind@10054548` | +| `Unwind@10054570` | `10054570` | `Unwind@10054570` | +| `Unwind@10054578` | `10054578` | `Unwind@10054578` | +| `Unwind@100545a0` | `100545a0` | `Unwind@100545a0` | +| `Unwind@100545a8` | `100545a8` | `Unwind@100545a8` | +| `Unwind@100545c1` | `100545c1` | `Unwind@100545c1` | +| `Unwind@100545c9` | `100545c9` | `Unwind@100545c9` | +| `Unwind@10054620` | `10054620` | `Unwind@10054620` | +| `Unwind@10054660` | `10054660` | `Unwind@10054660` | +| `Unwind@100546a0` | `100546a0` | `Unwind@100546a0` | +| `Unwind@100546e0` | `100546e0` | `Unwind@100546e0` | +| `Unwind@100546eb` | `100546eb` | `Unwind@100546eb` | +| `Unwind@100546f6` | `100546f6` | `Unwind@100546f6` | +| `Unwind@10054719` | `10054719` | `Unwind@10054719` | +| `Unwind@10054725` | `10054725` | `Unwind@10054725` | +| `Unwind@10054731` | `10054731` | `Unwind@10054731` | +| `Unwind@1005473c` | `1005473c` | `Unwind@1005473c` | +| `Unwind@10054747` | `10054747` | `Unwind@10054747` | +| `Unwind@10054752` | `10054752` | `Unwind@10054752` | +| `Unwind@1005475d` | `1005475d` | `Unwind@1005475d` | +| `Unwind@10054768` | `10054768` | `Unwind@10054768` | +| `Unwind@10054773` | `10054773` | `Unwind@10054773` | +| `Unwind@1005477e` | `1005477e` | `Unwind@1005477e` | +| `Unwind@10054789` | `10054789` | `Unwind@10054789` | +| `Unwind@10054794` | `10054794` | `Unwind@10054794` | +| `Unwind@1005479f` | `1005479f` | `Unwind@1005479f` | +| `Unwind@100547aa` | `100547aa` | `Unwind@100547aa` | +| `Unwind@100547b5` | `100547b5` | `Unwind@100547b5` | +| `Unwind@100547c0` | `100547c0` | `Unwind@100547c0` | +| `Unwind@100547e2` | `100547e2` | `Unwind@100547e2` | +| `Unwind@100547f1` | `100547f1` | `Unwind@100547f1` | +| `Unwind@100547ff` | `100547ff` | `Unwind@100547ff` | +| `Unwind@10054840` | `10054840` | `Unwind@10054840` | +| `Unwind@10054880` | `10054880` | `Unwind@10054880` | +| `Unwind@10054888` | `10054888` | `Unwind@10054888` | +| `Unwind@10054890` | `10054890` | `Unwind@10054890` | +| `Unwind@10054898` | `10054898` | `Unwind@10054898` | +| `Unwind@100548d0` | `100548d0` | `Unwind@100548d0` | +| `Unwind@100548d8` | `100548d8` | `Unwind@100548d8` | +| `Unwind@100548e0` | `100548e0` | `Unwind@100548e0` | +| `Unwind@100548e8` | `100548e8` | `Unwind@100548e8` | +| `Unwind@100548f3` | `100548f3` | `Unwind@100548f3` | +| `Unwind@1005490c` | `1005490c` | `Unwind@1005490c` | +| `Unwind@10054914` | `10054914` | `Unwind@10054914` | +| `Unwind@10054940` | `10054940` | `Unwind@10054940` | +| `Unwind@10054948` | `10054948` | `Unwind@10054948` | +| `Unwind@10054950` | `10054950` | `Unwind@10054950` | +| `Unwind@1005495b` | `1005495b` | `Unwind@1005495b` | +| `Unwind@10054963` | `10054963` | `Unwind@10054963` | +| `Unwind@1005496b` | `1005496b` | `Unwind@1005496b` | +| `Unwind@10054973` | `10054973` | `Unwind@10054973` | +| `Unwind@100549b0` | `100549b0` | `Unwind@100549b0` | +| `Unwind@100549be` | `100549be` | `Unwind@100549be` | +| `Unwind@100549cc` | `100549cc` | `Unwind@100549cc` | +| `Unwind@100549d7` | `100549d7` | `Unwind@100549d7` | +| `Unwind@100549e2` | `100549e2` | `Unwind@100549e2` | +| `Unwind@100549ed` | `100549ed` | `Unwind@100549ed` | +| `Unwind@100549f8` | `100549f8` | `Unwind@100549f8` | +| `Unwind@10054a03` | `10054a03` | `Unwind@10054a03` | +| `Unwind@10054a0e` | `10054a0e` | `Unwind@10054a0e` | +| `Unwind@10054a30` | `10054a30` | `Unwind@10054a30` | +| `Unwind@10054a80` | `10054a80` | `Unwind@10054a80` | +| `Unwind@10054a88` | `10054a88` | `Unwind@10054a88` | +| `Unwind@10054a90` | `10054a90` | `Unwind@10054a90` | +| `Unwind@10054a98` | `10054a98` | `Unwind@10054a98` | +| `Unwind@10054aa6` | `10054aa6` | `Unwind@10054aa6` | +| `Unwind@10054ab4` | `10054ab4` | `Unwind@10054ab4` | +| `Unwind@10054ac2` | `10054ac2` | `Unwind@10054ac2` | +| `Unwind@10054af0` | `10054af0` | `Unwind@10054af0` | +| `Unwind@10054af8` | `10054af8` | `Unwind@10054af8` | +| `Unwind@10054b00` | `10054b00` | `Unwind@10054b00` | +| `Unwind@10054b30` | `10054b30` | `Unwind@10054b30` | +| `Unwind@10054b38` | `10054b38` | `Unwind@10054b38` | +| `Unwind@10054b40` | `10054b40` | `Unwind@10054b40` | +| `Unwind@10054b48` | `10054b48` | `Unwind@10054b48` | +| `Unwind@10054b50` | `10054b50` | `Unwind@10054b50` | +| `Unwind@10054b80` | `10054b80` | `Unwind@10054b80` | +| `Unwind@10054b88` | `10054b88` | `Unwind@10054b88` | +| `Unwind@10054b90` | `10054b90` | `Unwind@10054b90` | +| `Unwind@10054b98` | `10054b98` | `Unwind@10054b98` | +| `Unwind@10054ba0` | `10054ba0` | `Unwind@10054ba0` | +| `Unwind@10054bd0` | `10054bd0` | `Unwind@10054bd0` | +| `Unwind@10054bd8` | `10054bd8` | `Unwind@10054bd8` | +| `Unwind@10054be0` | `10054be0` | `Unwind@10054be0` | +| `Unwind@10054be8` | `10054be8` | `Unwind@10054be8` | +| `Unwind@10054bf0` | `10054bf0` | `Unwind@10054bf0` | +| `Unwind@10054c20` | `10054c20` | `Unwind@10054c20` | +| `Unwind@10054c28` | `10054c28` | `Unwind@10054c28` | +| `Unwind@10054c30` | `10054c30` | `Unwind@10054c30` | +| `Unwind@10054c38` | `10054c38` | `Unwind@10054c38` | +| `Unwind@10054c40` | `10054c40` | `Unwind@10054c40` | +| `Unwind@10054c70` | `10054c70` | `Unwind@10054c70` | +| `Unwind@10054c78` | `10054c78` | `Unwind@10054c78` | +| `Unwind@10054c80` | `10054c80` | `Unwind@10054c80` | +| `Unwind@10054c88` | `10054c88` | `Unwind@10054c88` | +| `Unwind@10054c90` | `10054c90` | `Unwind@10054c90` | +| `Unwind@10054cc0` | `10054cc0` | `Unwind@10054cc0` | +| `Unwind@10054cc8` | `10054cc8` | `Unwind@10054cc8` | +| `Unwind@10054cd0` | `10054cd0` | `Unwind@10054cd0` | +| `Unwind@10054cd8` | `10054cd8` | `Unwind@10054cd8` | +| `Unwind@10054ce0` | `10054ce0` | `Unwind@10054ce0` | +| `Unwind@10054d10` | `10054d10` | `Unwind@10054d10` | +| `Unwind@10054d18` | `10054d18` | `Unwind@10054d18` | +| `Unwind@10054d20` | `10054d20` | `Unwind@10054d20` | +| `Unwind@10054d28` | `10054d28` | `Unwind@10054d28` | +| `Unwind@10054d30` | `10054d30` | `Unwind@10054d30` | +| `Unwind@10054d60` | `10054d60` | `Unwind@10054d60` | +| `Unwind@10054d68` | `10054d68` | `Unwind@10054d68` | +| `Unwind@10054d70` | `10054d70` | `Unwind@10054d70` | +| `Unwind@10054d78` | `10054d78` | `Unwind@10054d78` | +| `Unwind@10054d80` | `10054d80` | `Unwind@10054d80` | +| `Unwind@10054db0` | `10054db0` | `Unwind@10054db0` | +| `Unwind@10054db8` | `10054db8` | `Unwind@10054db8` | +| `Unwind@10054dc0` | `10054dc0` | `Unwind@10054dc0` | +| `Unwind@10054dc8` | `10054dc8` | `Unwind@10054dc8` | +| `Unwind@10054dd0` | `10054dd0` | `Unwind@10054dd0` | +| `Unwind@10054e00` | `10054e00` | `Unwind@10054e00` | +| `Unwind@10054e08` | `10054e08` | `Unwind@10054e08` | +| `Unwind@10054e10` | `10054e10` | `Unwind@10054e10` | +| `Unwind@10054e18` | `10054e18` | `Unwind@10054e18` | +| `Unwind@10054e20` | `10054e20` | `Unwind@10054e20` | +| `Unwind@10054e50` | `10054e50` | `Unwind@10054e50` | +| `Unwind@10054e58` | `10054e58` | `Unwind@10054e58` | +| `Unwind@10054e60` | `10054e60` | `Unwind@10054e60` | +| `Unwind@10054e68` | `10054e68` | `Unwind@10054e68` | +| `Unwind@10054e70` | `10054e70` | `Unwind@10054e70` | +| `Unwind@10054ea0` | `10054ea0` | `Unwind@10054ea0` | +| `Unwind@10054ea8` | `10054ea8` | `Unwind@10054ea8` | +| `Unwind@10054eb0` | `10054eb0` | `Unwind@10054eb0` | +| `Unwind@10054eb8` | `10054eb8` | `Unwind@10054eb8` | +| `Unwind@10054ec0` | `10054ec0` | `Unwind@10054ec0` | +| `Unwind@10054ef0` | `10054ef0` | `Unwind@10054ef0` | +| `Unwind@10054ef8` | `10054ef8` | `Unwind@10054ef8` | +| `Unwind@10054f00` | `10054f00` | `Unwind@10054f00` | +| `Unwind@10054f08` | `10054f08` | `Unwind@10054f08` | +| `Unwind@10054f10` | `10054f10` | `Unwind@10054f10` | +| `Unwind@10054f40` | `10054f40` | `Unwind@10054f40` | +| `Unwind@10054f48` | `10054f48` | `Unwind@10054f48` | +| `Unwind@10054f50` | `10054f50` | `Unwind@10054f50` | +| `Unwind@10054f58` | `10054f58` | `Unwind@10054f58` | +| `Unwind@10054f60` | `10054f60` | `Unwind@10054f60` | +| `Unwind@10054f90` | `10054f90` | `Unwind@10054f90` | +| `Unwind@10054f98` | `10054f98` | `Unwind@10054f98` | +| `Unwind@10054fa0` | `10054fa0` | `Unwind@10054fa0` | +| `Unwind@10054fa8` | `10054fa8` | `Unwind@10054fa8` | +| `Unwind@10054fb0` | `10054fb0` | `Unwind@10054fb0` | +| `Unwind@10054fe0` | `10054fe0` | `Unwind@10054fe0` | +| `Unwind@10054fe8` | `10054fe8` | `Unwind@10054fe8` | +| `Unwind@10054ff0` | `10054ff0` | `Unwind@10054ff0` | +| `Unwind@10054ff8` | `10054ff8` | `Unwind@10054ff8` | +| `Unwind@10055000` | `10055000` | `Unwind@10055000` | +| `Unwind@10055030` | `10055030` | `Unwind@10055030` | +| `Unwind@10055060` | `10055060` | `Unwind@10055060` | +| `Unwind@10055090` | `10055090` | `Unwind@10055090` | +| `Unwind@100550c0` | `100550c0` | `Unwind@100550c0` | +| `Unwind@100550f0` | `100550f0` | `Unwind@100550f0` | +| `Unwind@10055120` | `10055120` | `Unwind@10055120` | +| `Unwind@10055150` | `10055150` | `Unwind@10055150` | +| `Unwind@10055180` | `10055180` | `Unwind@10055180` | +| `Unwind@100551b0` | `100551b0` | `Unwind@100551b0` | +| `Unwind@100551e0` | `100551e0` | `Unwind@100551e0` | +| `Unwind@10055210` | `10055210` | `Unwind@10055210` | +| `Unwind@10055240` | `10055240` | `Unwind@10055240` | +| `Unwind@10055248` | `10055248` | `Unwind@10055248` | +| `Unwind@10055270` | `10055270` | `Unwind@10055270` | +| `Unwind@100552a0` | `100552a0` | `Unwind@100552a0` | +| `Unwind@100552a8` | `100552a8` | `Unwind@100552a8` | +| `Unwind@100552d0` | `100552d0` | `Unwind@100552d0` | +| `Unwind@10055300` | `10055300` | `Unwind@10055300` | +| `Unwind@10055330` | `10055330` | `Unwind@10055330` | +| `Unwind@10055338` | `10055338` | `Unwind@10055338` | +| `Unwind@10055360` | `10055360` | `Unwind@10055360` | +| `Unwind@10055368` | `10055368` | `Unwind@10055368` | +| `Unwind@10055373` | `10055373` | `Unwind@10055373` | +| `Unwind@1005537b` | `1005537b` | `Unwind@1005537b` | +| `Unwind@10055383` | `10055383` | `Unwind@10055383` | +| `Unwind@100553b0` | `100553b0` | `Unwind@100553b0` | +| `Unwind@100553b8` | `100553b8` | `Unwind@100553b8` | +| `Unwind@100553c0` | `100553c0` | `Unwind@100553c0` | +| `Unwind@100553f0` | `100553f0` | `Unwind@100553f0` | +| `Unwind@100553f8` | `100553f8` | `Unwind@100553f8` | +| `Unwind@10055400` | `10055400` | `Unwind@10055400` | +| `Unwind@10055408` | `10055408` | `Unwind@10055408` | +| `Unwind@10055410` | `10055410` | `Unwind@10055410` | +| `Unwind@1005541b` | `1005541b` | `Unwind@1005541b` | +| `Unwind@10055424` | `10055424` | `Unwind@10055424` | +| `Unwind@10055450` | `10055450` | `Unwind@10055450` | +| `Unwind@10055480` | `10055480` | `Unwind@10055480` | +| `Unwind@100554b0` | `100554b0` | `Unwind@100554b0` | +| `Unwind@100554e0` | `100554e0` | `Unwind@100554e0` | +| `Unwind@10055510` | `10055510` | `Unwind@10055510` | +| `Unwind@10055540` | `10055540` | `Unwind@10055540` | +| `Unwind@10055570` | `10055570` | `Unwind@10055570` | +| `Unwind@100555a0` | `100555a0` | `Unwind@100555a0` | +| `Unwind@100555d0` | `100555d0` | `Unwind@100555d0` | +| `Unwind@10055600` | `10055600` | `Unwind@10055600` | +| `Unwind@10055630` | `10055630` | `Unwind@10055630` | +| `Unwind@10055660` | `10055660` | `Unwind@10055660` | +| `Unwind@10055690` | `10055690` | `Unwind@10055690` | +| `Unwind@100556c0` | `100556c0` | `Unwind@100556c0` | +| `Unwind@100556f0` | `100556f0` | `Unwind@100556f0` | +| `Unwind@10055720` | `10055720` | `Unwind@10055720` | +| `Unwind@10055750` | `10055750` | `Unwind@10055750` | +| `Unwind@10055780` | `10055780` | `Unwind@10055780` | +| `Unwind@100557b0` | `100557b0` | `Unwind@100557b0` | +| `Unwind@100557e0` | `100557e0` | `Unwind@100557e0` | +| `Unwind@10055810` | `10055810` | `Unwind@10055810` | +| `Unwind@10055840` | `10055840` | `Unwind@10055840` | +| `Unwind@10055870` | `10055870` | `Unwind@10055870` | +| `Unwind@100558a0` | `100558a0` | `Unwind@100558a0` | +| `Unwind@100558d0` | `100558d0` | `Unwind@100558d0` | +| `Unwind@10055900` | `10055900` | `Unwind@10055900` | +| `Unwind@10055930` | `10055930` | `Unwind@10055930` | +| `Unwind@10055960` | `10055960` | `Unwind@10055960` | +| `Unwind@10055990` | `10055990` | `Unwind@10055990` | +| `Unwind@100559c0` | `100559c0` | `Unwind@100559c0` | +| `Unwind@100559f0` | `100559f0` | `Unwind@100559f0` | +| `Unwind@10055a20` | `10055a20` | `Unwind@10055a20` | +| `Unwind@10055a50` | `10055a50` | `Unwind@10055a50` | +| `Unwind@10055a80` | `10055a80` | `Unwind@10055a80` | +| `Unwind@10055ab0` | `10055ab0` | `Unwind@10055ab0` | +| `Unwind@10055ae0` | `10055ae0` | `Unwind@10055ae0` | +| `Unwind@10055b10` | `10055b10` | `Unwind@10055b10` | +| `Unwind@10055b40` | `10055b40` | `Unwind@10055b40` | +| `Unwind@10055b70` | `10055b70` | `Unwind@10055b70` | +| `Unwind@10055ba0` | `10055ba0` | `Unwind@10055ba0` | +| `Unwind@10055bd0` | `10055bd0` | `Unwind@10055bd0` | +| `Unwind@10055c00` | `10055c00` | `Unwind@10055c00` | +| `Unwind@10055c30` | `10055c30` | `Unwind@10055c30` | +| `Unwind@10055c60` | `10055c60` | `Unwind@10055c60` | +| `Unwind@10055c90` | `10055c90` | `Unwind@10055c90` | +| `Unwind@10055cc0` | `10055cc0` | `Unwind@10055cc0` | +| `Unwind@10055cf0` | `10055cf0` | `Unwind@10055cf0` | +| `Unwind@10055d20` | `10055d20` | `Unwind@10055d20` | +| `Unwind@10055d50` | `10055d50` | `Unwind@10055d50` | +| `Unwind@10055d80` | `10055d80` | `Unwind@10055d80` | +| `Unwind@10055db0` | `10055db0` | `Unwind@10055db0` | +| `Unwind@10055de0` | `10055de0` | `Unwind@10055de0` | +| `Unwind@10055e10` | `10055e10` | `Unwind@10055e10` | +| `Unwind@10055e40` | `10055e40` | `Unwind@10055e40` | +| `Unwind@10055e70` | `10055e70` | `Unwind@10055e70` | +| `Unwind@10055ea0` | `10055ea0` | `Unwind@10055ea0` | +| `Unwind@10055ed0` | `10055ed0` | `Unwind@10055ed0` | +| `Unwind@10055f00` | `10055f00` | `Unwind@10055f00` | +| `Unwind@10055f30` | `10055f30` | `Unwind@10055f30` | +| `Unwind@10055f60` | `10055f60` | `Unwind@10055f60` | +| `Unwind@10055f90` | `10055f90` | `Unwind@10055f90` | +| `Unwind@10055fc0` | `10055fc0` | `Unwind@10055fc0` | +| `Unwind@10055ff0` | `10055ff0` | `Unwind@10055ff0` | +| `Unwind@10056020` | `10056020` | `Unwind@10056020` | +| `Unwind@10056050` | `10056050` | `Unwind@10056050` | +| `Unwind@10056080` | `10056080` | `Unwind@10056080` | +| `Unwind@100560b0` | `100560b0` | `Unwind@100560b0` | +| `Unwind@100560e0` | `100560e0` | `Unwind@100560e0` | +| `Unwind@10056110` | `10056110` | `Unwind@10056110` | +| `Unwind@10056140` | `10056140` | `Unwind@10056140` | +| `Unwind@10056170` | `10056170` | `Unwind@10056170` | +| `Unwind@100561a0` | `100561a0` | `Unwind@100561a0` | +| `Unwind@100561d0` | `100561d0` | `Unwind@100561d0` | +| `Unwind@10056200` | `10056200` | `Unwind@10056200` | +| `Unwind@10056230` | `10056230` | `Unwind@10056230` | +| `Unwind@10056260` | `10056260` | `Unwind@10056260` | +| `Unwind@10056290` | `10056290` | `Unwind@10056290` | +| `Unwind@100562c0` | `100562c0` | `Unwind@100562c0` | +| `Unwind@100562f0` | `100562f0` | `Unwind@100562f0` | +| `Unwind@10056320` | `10056320` | `Unwind@10056320` | +| `Unwind@10056350` | `10056350` | `Unwind@10056350` | +| `Unwind@10056380` | `10056380` | `Unwind@10056380` | +| `Unwind@100563b0` | `100563b0` | `Unwind@100563b0` | +| `Unwind@100563e0` | `100563e0` | `Unwind@100563e0` | +| `Unwind@10056410` | `10056410` | `Unwind@10056410` | +| `Unwind@10056440` | `10056440` | `Unwind@10056440` | +| `Unwind@10056470` | `10056470` | `Unwind@10056470` | +| `Unwind@100564a0` | `100564a0` | `Unwind@100564a0` | +| `Unwind@100564d0` | `100564d0` | `Unwind@100564d0` | +| `Unwind@10056500` | `10056500` | `Unwind@10056500` | +| `Unwind@10056530` | `10056530` | `Unwind@10056530` | +| `Unwind@10056560` | `10056560` | `Unwind@10056560` | +| `Unwind@10056590` | `10056590` | `Unwind@10056590` | +| `Unwind@100565c0` | `100565c0` | `Unwind@100565c0` | +| `Unwind@100565f0` | `100565f0` | `Unwind@100565f0` | +| `Unwind@10056620` | `10056620` | `Unwind@10056620` | +| `Unwind@10056650` | `10056650` | `Unwind@10056650` | +| `Unwind@10056680` | `10056680` | `Unwind@10056680` | +| `Unwind@100566b0` | `100566b0` | `Unwind@100566b0` | +| `Unwind@100566e0` | `100566e0` | `Unwind@100566e0` | +| `Unwind@10056710` | `10056710` | `Unwind@10056710` | +| `Unwind@10056740` | `10056740` | `Unwind@10056740` | +| `Unwind@10056770` | `10056770` | `Unwind@10056770` | +| `Unwind@100567a0` | `100567a0` | `Unwind@100567a0` | +| `Unwind@100567d0` | `100567d0` | `Unwind@100567d0` | +| `Unwind@10056800` | `10056800` | `Unwind@10056800` | +| `Unwind@100568b0` | `100568b0` | `Unwind@100568b0` | +| `Unwind@100568e0` | `100568e0` | `Unwind@100568e0` | +| `Unwind@10056910` | `10056910` | `Unwind@10056910` | +| `Unwind@10056940` | `10056940` | `Unwind@10056940` | +| `Unwind@1005694e` | `1005694e` | `Unwind@1005694e` | +| `Unwind@1005695c` | `1005695c` | `Unwind@1005695c` | +| `Unwind@10056990` | `10056990` | `Unwind@10056990` | +| `Unwind@1005699e` | `1005699e` | `Unwind@1005699e` | +| `Unwind@100569ac` | `100569ac` | `Unwind@100569ac` | +| `Unwind@100569e0` | `100569e0` | `Unwind@100569e0` | +| `Unwind@100569e8` | `100569e8` | `Unwind@100569e8` | +| `Unwind@10056a10` | `10056a10` | `Unwind@10056a10` | +| `Unwind@10056a18` | `10056a18` | `Unwind@10056a18` | +| `Unwind@10056a40` | `10056a40` | `Unwind@10056a40` | +| `Unwind@10056a70` | `10056a70` | `Unwind@10056a70` | +| `Unwind@10056a78` | `10056a78` | `Unwind@10056a78` | +| `Unwind@10056aa0` | `10056aa0` | `Unwind@10056aa0` | +| `Unwind@10056ad0` | `10056ad0` | `Unwind@10056ad0` | +| `Unwind@10056ad8` | `10056ad8` | `Unwind@10056ad8` | +| `Unwind@10056b00` | `10056b00` | `Unwind@10056b00` | +| `Unwind@10056b30` | `10056b30` | `Unwind@10056b30` | +| `Unwind@10056b38` | `10056b38` | `Unwind@10056b38` | +| `Unwind@10056b60` | `10056b60` | `Unwind@10056b60` | +| `Unwind@10056b90` | `10056b90` | `Unwind@10056b90` | +| `Unwind@10056b98` | `10056b98` | `Unwind@10056b98` | +| `Unwind@10056bc0` | `10056bc0` | `Unwind@10056bc0` | +| `Unwind@10056bf0` | `10056bf0` | `Unwind@10056bf0` | +| `Unwind@10056bf8` | `10056bf8` | `Unwind@10056bf8` | +| `Unwind@10056c20` | `10056c20` | `Unwind@10056c20` | +| `Unwind@10056c50` | `10056c50` | `Unwind@10056c50` | +| `Unwind@10056c58` | `10056c58` | `Unwind@10056c58` | +| `Unwind@10056c80` | `10056c80` | `Unwind@10056c80` | +| `Unwind@10056cb0` | `10056cb0` | `Unwind@10056cb0` | +| `Unwind@10056cb8` | `10056cb8` | `Unwind@10056cb8` | +| `Unwind@10056ce0` | `10056ce0` | `Unwind@10056ce0` | +| `Unwind@10056d10` | `10056d10` | `Unwind@10056d10` | +| `Unwind@10056d18` | `10056d18` | `Unwind@10056d18` | +| `Unwind@10056d40` | `10056d40` | `Unwind@10056d40` | +| `Unwind@10056d70` | `10056d70` | `Unwind@10056d70` | +| `Unwind@10056d78` | `10056d78` | `Unwind@10056d78` | +| `Unwind@10056da0` | `10056da0` | `Unwind@10056da0` | +| `Unwind@10056dd0` | `10056dd0` | `Unwind@10056dd0` | +| `Unwind@10056dd8` | `10056dd8` | `Unwind@10056dd8` | +| `Unwind@10056e00` | `10056e00` | `Unwind@10056e00` | +| `Unwind@10056e30` | `10056e30` | `Unwind@10056e30` | +| `Unwind@10056e38` | `10056e38` | `Unwind@10056e38` | +| `Unwind@10056e60` | `10056e60` | `Unwind@10056e60` | +| `Unwind@10056e90` | `10056e90` | `Unwind@10056e90` | +| `Unwind@10056e98` | `10056e98` | `Unwind@10056e98` | +| `Unwind@10056ec0` | `10056ec0` | `Unwind@10056ec0` | +| `Unwind@10056ec8` | `10056ec8` | `Unwind@10056ec8` | +| `Unwind@10056ef0` | `10056ef0` | `Unwind@10056ef0` | +| `Unwind@10056f20` | `10056f20` | `Unwind@10056f20` | +| `Unwind@10056f50` | `10056f50` | `Unwind@10056f50` | +| `Unwind@10056f58` | `10056f58` | `Unwind@10056f58` | +| `Unwind@10056f80` | `10056f80` | `Unwind@10056f80` | +| `Unwind@10056f88` | `10056f88` | `Unwind@10056f88` | +| `Unwind@10056fb0` | `10056fb0` | `Unwind@10056fb0` | +| `Unwind@10056fe0` | `10056fe0` | `Unwind@10056fe0` | +| `Unwind@10057010` | `10057010` | `Unwind@10057010` | +| `Unwind@10057040` | `10057040` | `Unwind@10057040` | +| `Unwind@10057070` | `10057070` | `Unwind@10057070` | +| `Unwind@1005707e` | `1005707e` | `Unwind@1005707e` | +| `Unwind@10057086` | `10057086` | `Unwind@10057086` | +| `Unwind@10057094` | `10057094` | `Unwind@10057094` | +| `Unwind@100570c0` | `100570c0` | `Unwind@100570c0` | +| `Unwind@100570f0` | `100570f0` | `Unwind@100570f0` | +| `Unwind@100570fb` | `100570fb` | `Unwind@100570fb` | +| `Unwind@10057106` | `10057106` | `Unwind@10057106` | +| `Unwind@10057111` | `10057111` | `Unwind@10057111` | +| `Unwind@10057140` | `10057140` | `Unwind@10057140` | +| `Unwind@1005714e` | `1005714e` | `Unwind@1005714e` | +| `Unwind@1005715c` | `1005715c` | `Unwind@1005715c` | +| `Unwind@1005716a` | `1005716a` | `Unwind@1005716a` | +| `Unwind@10057178` | `10057178` | `Unwind@10057178` | +| `Unwind@10057186` | `10057186` | `Unwind@10057186` | +| `Unwind@10057194` | `10057194` | `Unwind@10057194` | +| `Unwind@100571a2` | `100571a2` | `Unwind@100571a2` | +| `Unwind@100571b0` | `100571b0` | `Unwind@100571b0` | +| `Unwind@100571be` | `100571be` | `Unwind@100571be` | +| `Unwind@100571cc` | `100571cc` | `Unwind@100571cc` | +| `Unwind@10057200` | `10057200` | `Unwind@10057200` | +| `Unwind@1005720e` | `1005720e` | `Unwind@1005720e` | +| `Unwind@1005721c` | `1005721c` | `Unwind@1005721c` | +| `Unwind@1005722a` | `1005722a` | `Unwind@1005722a` | +| `Unwind@10057238` | `10057238` | `Unwind@10057238` | +| `Unwind@10057246` | `10057246` | `Unwind@10057246` | +| `Unwind@10057254` | `10057254` | `Unwind@10057254` | +| `Unwind@10057262` | `10057262` | `Unwind@10057262` | +| `Unwind@10057270` | `10057270` | `Unwind@10057270` | +| `Unwind@1005727e` | `1005727e` | `Unwind@1005727e` | +| `Unwind@1005728c` | `1005728c` | `Unwind@1005728c` | +| `Unwind@1005729a` | `1005729a` | `Unwind@1005729a` | +| `Unwind@100572a8` | `100572a8` | `Unwind@100572a8` | +| `Unwind@100572b6` | `100572b6` | `Unwind@100572b6` | +| `Unwind@100572c4` | `100572c4` | `Unwind@100572c4` | +| `Unwind@100572d2` | `100572d2` | `Unwind@100572d2` | +| `Unwind@100572e0` | `100572e0` | `Unwind@100572e0` | +| `Unwind@100572ee` | `100572ee` | `Unwind@100572ee` | +| `Unwind@100572fc` | `100572fc` | `Unwind@100572fc` | +| `Unwind@1005730a` | `1005730a` | `Unwind@1005730a` | +| `Unwind@10057318` | `10057318` | `Unwind@10057318` | +| `Unwind@10057326` | `10057326` | `Unwind@10057326` | +| `Unwind@10057334` | `10057334` | `Unwind@10057334` | +| `Unwind@10057360` | `10057360` | `Unwind@10057360` | +| `Unwind@10057390` | `10057390` | `Unwind@10057390` | +| `Unwind@10057540` | `10057540` | `Unwind@10057540` | +| `Unwind@10057570` | `10057570` | `Unwind@10057570` | +| `Unwind@1005757e` | `1005757e` | `Unwind@1005757e` | +| `Unwind@1005758c` | `1005758c` | `Unwind@1005758c` | +| `Unwind@100575b0` | `100575b0` | `Unwind@100575b0` | +| `Unwind@100575be` | `100575be` | `Unwind@100575be` | +| `Unwind@100575cc` | `100575cc` | `Unwind@100575cc` | +| `Unwind@100575f0` | `100575f0` | `Unwind@100575f0` | +| `Unwind@100575fe` | `100575fe` | `Unwind@100575fe` | +| `Unwind@10057630` | `10057630` | `Unwind@10057630` | +| `Unwind@100576a0` | `100576a0` | `Unwind@100576a0` | +| `Unwind@100576a8` | `100576a8` | `Unwind@100576a8` | +| `Unwind@100576b3` | `100576b3` | `Unwind@100576b3` | +| `Unwind@100576be` | `100576be` | `Unwind@100576be` | +| `Unwind@100576c6` | `100576c6` | `Unwind@100576c6` | +| `Unwind@100576d1` | `100576d1` | `Unwind@100576d1` | +| `Unwind@100576d9` | `100576d9` | `Unwind@100576d9` | +| `Unwind@10057700` | `10057700` | `Unwind@10057700` | +| `Unwind@10057708` | `10057708` | `Unwind@10057708` | +| `Unwind@10057730` | `10057730` | `Unwind@10057730` | +| `Unwind@1005773e` | `1005773e` | `Unwind@1005773e` | +| `Unwind@1005774c` | `1005774c` | `Unwind@1005774c` | +| `Unwind@10057780` | `10057780` | `Unwind@10057780` | +| `Unwind@1005778e` | `1005778e` | `Unwind@1005778e` | +| `Unwind@1005779c` | `1005779c` | `Unwind@1005779c` | +| `Unwind@100577d0` | `100577d0` | `Unwind@100577d0` | +| `Unwind@100577de` | `100577de` | `Unwind@100577de` | +| `Unwind@10057810` | `10057810` | `Unwind@10057810` | +| `Unwind@10057818` | `10057818` | `Unwind@10057818` | +| `Unwind@10057826` | `10057826` | `Unwind@10057826` | +| `Unwind@1005782e` | `1005782e` | `Unwind@1005782e` | +| `Unwind@10057836` | `10057836` | `Unwind@10057836` | +| `Unwind@1005783e` | `1005783e` | `Unwind@1005783e` | +| `Unwind@1005784c` | `1005784c` | `Unwind@1005784c` | +| `Unwind@1005785a` | `1005785a` | `Unwind@1005785a` | +| `Unwind@10057868` | `10057868` | `Unwind@10057868` | +| `Unwind@10057876` | `10057876` | `Unwind@10057876` | +| `Unwind@10057884` | `10057884` | `Unwind@10057884` | +| `Unwind@10057892` | `10057892` | `Unwind@10057892` | +| `Unwind@100578c0` | `100578c0` | `Unwind@100578c0` | +| `Unwind@100578c8` | `100578c8` | `Unwind@100578c8` | +| `Unwind@10057900` | `10057900` | `Unwind@10057900` | +| `Unwind@10057908` | `10057908` | `Unwind@10057908` | +| `Unwind@10057916` | `10057916` | `Unwind@10057916` | +| `Unwind@1005791e` | `1005791e` | `Unwind@1005791e` | +| `Unwind@10057926` | `10057926` | `Unwind@10057926` | +| `Unwind@1005792e` | `1005792e` | `Unwind@1005792e` | +| `Unwind@1005793c` | `1005793c` | `Unwind@1005793c` | +| `Unwind@1005794a` | `1005794a` | `Unwind@1005794a` | +| `Unwind@10057958` | `10057958` | `Unwind@10057958` | +| `Unwind@10057966` | `10057966` | `Unwind@10057966` | +| `Unwind@10057974` | `10057974` | `Unwind@10057974` | +| `Unwind@10057982` | `10057982` | `Unwind@10057982` | +| `Unwind@100579b0` | `100579b0` | `Unwind@100579b0` | +| `Unwind@100579e0` | `100579e0` | `Unwind@100579e0` | +| `Unwind@10057a10` | `10057a10` | `Unwind@10057a10` | +| `Unwind@10057a18` | `10057a18` | `Unwind@10057a18` | +| `Unwind@10057a20` | `10057a20` | `Unwind@10057a20` | +| `Unwind@10057a28` | `10057a28` | `Unwind@10057a28` | +| `Unwind@10057a36` | `10057a36` | `Unwind@10057a36` | +| `Unwind@10057a3e` | `10057a3e` | `Unwind@10057a3e` | +| `Unwind@10057a70` | `10057a70` | `Unwind@10057a70` | +| `Unwind@10057aa0` | `10057aa0` | `Unwind@10057aa0` | +| `Unwind@10057ad0` | `10057ad0` | `Unwind@10057ad0` | +| `Unwind@10057ad8` | `10057ad8` | `Unwind@10057ad8` | +| `Unwind@10057b00` | `10057b00` | `Unwind@10057b00` | +| `Unwind@10057b08` | `10057b08` | `Unwind@10057b08` | +| `Unwind@10057b10` | `10057b10` | `Unwind@10057b10` | +| `Unwind@10057b40` | `10057b40` | `Unwind@10057b40` | +| `Unwind@10057b48` | `10057b48` | `Unwind@10057b48` | +| `Unwind@10057b80` | `10057b80` | `Unwind@10057b80` | +| `Unwind@10057bb0` | `10057bb0` | `Unwind@10057bb0` | +| `Unwind@10057bbb` | `10057bbb` | `Unwind@10057bbb` | +| `Unwind@10057bc6` | `10057bc6` | `Unwind@10057bc6` | +| `Unwind@10057bf0` | `10057bf0` | `Unwind@10057bf0` | +| `Unwind@10057bfb` | `10057bfb` | `Unwind@10057bfb` | +| `Unwind@10057c06` | `10057c06` | `Unwind@10057c06` | +| `Unwind@10057c30` | `10057c30` | `Unwind@10057c30` | +| `Unwind@10057c60` | `10057c60` | `Unwind@10057c60` | +| `Unwind@10057c90` | `10057c90` | `Unwind@10057c90` | +| `Unwind@10057c98` | `10057c98` | `Unwind@10057c98` | +| `Unwind@10057ca3` | `10057ca3` | `Unwind@10057ca3` | +| `Unwind@10057cae` | `10057cae` | `Unwind@10057cae` | +| `Unwind@10057ce0` | `10057ce0` | `Unwind@10057ce0` | +| `Unwind@10057ce8` | `10057ce8` | `Unwind@10057ce8` | +| `Unwind@10057cf3` | `10057cf3` | `Unwind@10057cf3` | +| `Unwind@10057cfe` | `10057cfe` | `Unwind@10057cfe` | +| `Unwind@10057d30` | `10057d30` | `Unwind@10057d30` | +| `Unwind@10057d38` | `10057d38` | `Unwind@10057d38` | +| `Unwind@10057d40` | `10057d40` | `Unwind@10057d40` | +| `Unwind@10057d48` | `10057d48` | `Unwind@10057d48` | +| `Unwind@10057d70` | `10057d70` | `Unwind@10057d70` | +| `Unwind@10057da0` | `10057da0` | `Unwind@10057da0` | +| `Unwind@10057dae` | `10057dae` | `Unwind@10057dae` | +| `Unwind@10057db6` | `10057db6` | `Unwind@10057db6` | +| `Unwind@10057dbe` | `10057dbe` | `Unwind@10057dbe` | +| `Unwind@10057df0` | `10057df0` | `Unwind@10057df0` | +| `Unwind@10057e20` | `10057e20` | `Unwind@10057e20` | +| `Unwind@10057e50` | `10057e50` | `Unwind@10057e50` | +| `Unwind@10057e80` | `10057e80` | `Unwind@10057e80` | +| `Unwind@10057e88` | `10057e88` | `Unwind@10057e88` | +| `Unwind@10057e90` | `10057e90` | `Unwind@10057e90` | +| `Unwind@10057ec0` | `10057ec0` | `Unwind@10057ec0` | +| `Unwind@10057ecb` | `10057ecb` | `Unwind@10057ecb` | +| `Unwind@10057ed6` | `10057ed6` | `Unwind@10057ed6` | +| `Unwind@10057ee1` | `10057ee1` | `Unwind@10057ee1` | +| `Unwind@10057eec` | `10057eec` | `Unwind@10057eec` | +| `Unwind@10057ef7` | `10057ef7` | `Unwind@10057ef7` | +| `Unwind@10057f02` | `10057f02` | `Unwind@10057f02` | +| `Unwind@10057f0d` | `10057f0d` | `Unwind@10057f0d` | +| `Unwind@10057f1b` | `10057f1b` | `Unwind@10057f1b` | +| `Unwind@10057f29` | `10057f29` | `Unwind@10057f29` | +| `Unwind@10057f37` | `10057f37` | `Unwind@10057f37` | +| `Unwind@10057f45` | `10057f45` | `Unwind@10057f45` | +| `Unwind@10057f53` | `10057f53` | `Unwind@10057f53` | +| `Unwind@10057f61` | `10057f61` | `Unwind@10057f61` | +| `Unwind@10057f6f` | `10057f6f` | `Unwind@10057f6f` | +| `Unwind@10057f7d` | `10057f7d` | `Unwind@10057f7d` | +| `Unwind@10057f8b` | `10057f8b` | `Unwind@10057f8b` | +| `Unwind@10057f99` | `10057f99` | `Unwind@10057f99` | +| `Unwind@10057fa7` | `10057fa7` | `Unwind@10057fa7` | +| `Unwind@10057fb5` | `10057fb5` | `Unwind@10057fb5` | +| `Unwind@10057fc3` | `10057fc3` | `Unwind@10057fc3` | +| `Unwind@10057fd1` | `10057fd1` | `Unwind@10057fd1` | +| `Unwind@10057fdf` | `10057fdf` | `Unwind@10057fdf` | +| `Unwind@10057fed` | `10057fed` | `Unwind@10057fed` | +| `Unwind@10057ffb` | `10057ffb` | `Unwind@10057ffb` | +| `Unwind@10058009` | `10058009` | `Unwind@10058009` | +| `Unwind@10058017` | `10058017` | `Unwind@10058017` | +| `Unwind@10058025` | `10058025` | `Unwind@10058025` | +| `Unwind@10058033` | `10058033` | `Unwind@10058033` | +| `Unwind@10058041` | `10058041` | `Unwind@10058041` | +| `Unwind@1005804f` | `1005804f` | `Unwind@1005804f` | +| `Unwind@1005805d` | `1005805d` | `Unwind@1005805d` | +| `Unwind@1005806b` | `1005806b` | `Unwind@1005806b` | +| `Unwind@10058079` | `10058079` | `Unwind@10058079` | +| `Unwind@10058087` | `10058087` | `Unwind@10058087` | +| `Unwind@10058095` | `10058095` | `Unwind@10058095` | +| `Unwind@100580a3` | `100580a3` | `Unwind@100580a3` | +| `Unwind@100580b1` | `100580b1` | `Unwind@100580b1` | +| `Unwind@100580b9` | `100580b9` | `Unwind@100580b9` | +| `Unwind@100580c1` | `100580c1` | `Unwind@100580c1` | +| `Unwind@100580c9` | `100580c9` | `Unwind@100580c9` | +| `Unwind@100580d1` | `100580d1` | `Unwind@100580d1` | +| `Unwind@100580d9` | `100580d9` | `Unwind@100580d9` | +| `Unwind@100580e1` | `100580e1` | `Unwind@100580e1` | +| `Unwind@100580e9` | `100580e9` | `Unwind@100580e9` | +| `Unwind@100580f1` | `100580f1` | `Unwind@100580f1` | +| `Unwind@100580f9` | `100580f9` | `Unwind@100580f9` | +| `Unwind@10058101` | `10058101` | `Unwind@10058101` | +| `Unwind@10058109` | `10058109` | `Unwind@10058109` | +| `Unwind@10058111` | `10058111` | `Unwind@10058111` | +| `Unwind@10058119` | `10058119` | `Unwind@10058119` | +| `Unwind@10058121` | `10058121` | `Unwind@10058121` | +| `Unwind@10058129` | `10058129` | `Unwind@10058129` | +| `Unwind@10058131` | `10058131` | `Unwind@10058131` | +| `Unwind@10058160` | `10058160` | `Unwind@10058160` | +| `Unwind@10058168` | `10058168` | `Unwind@10058168` | +| `Unwind@100581a0` | `100581a0` | `Unwind@100581a0` | +| `Unwind@100581a8` | `100581a8` | `Unwind@100581a8` | +| `Unwind@100581e0` | `100581e0` | `Unwind@100581e0` | +| `Unwind@100581ee` | `100581ee` | `Unwind@100581ee` | +| `Unwind@100581f6` | `100581f6` | `Unwind@100581f6` | +| `Unwind@100581fe` | `100581fe` | `Unwind@100581fe` | +| `Unwind@10058206` | `10058206` | `Unwind@10058206` | +| `Unwind@1005820e` | `1005820e` | `Unwind@1005820e` | +| `Unwind@10058217` | `10058217` | `Unwind@10058217` | +| `Unwind@10058225` | `10058225` | `Unwind@10058225` | +| `Unwind@10058233` | `10058233` | `Unwind@10058233` | +| `Unwind@10058260` | `10058260` | `Unwind@10058260` | +| `Unwind@1005826e` | `1005826e` | `Unwind@1005826e` | +| `Unwind@10058276` | `10058276` | `Unwind@10058276` | +| `Unwind@1005827e` | `1005827e` | `Unwind@1005827e` | +| `Unwind@10058286` | `10058286` | `Unwind@10058286` | +| `Unwind@10058294` | `10058294` | `Unwind@10058294` | +| `Unwind@1005829c` | `1005829c` | `Unwind@1005829c` | +| `Unwind@100582a4` | `100582a4` | `Unwind@100582a4` | +| `Unwind@100582d0` | `100582d0` | `Unwind@100582d0` | +| `Unwind@100582d8` | `100582d8` | `Unwind@100582d8` | +| `Unwind@100582e0` | `100582e0` | `Unwind@100582e0` | +| `Unwind@100582eb` | `100582eb` | `Unwind@100582eb` | +| `Unwind@100582f6` | `100582f6` | `Unwind@100582f6` | +| `Unwind@10058301` | `10058301` | `Unwind@10058301` | +| `Unwind@1005830c` | `1005830c` | `Unwind@1005830c` | +| `Unwind@10058314` | `10058314` | `Unwind@10058314` | +| `Unwind@1005831c` | `1005831c` | `Unwind@1005831c` | +| `Unwind@10058327` | `10058327` | `Unwind@10058327` | +| `Unwind@10058332` | `10058332` | `Unwind@10058332` | +| `Unwind@1005833a` | `1005833a` | `Unwind@1005833a` | +| `Unwind@10058348` | `10058348` | `Unwind@10058348` | +| `Unwind@10058356` | `10058356` | `Unwind@10058356` | +| `Unwind@10058364` | `10058364` | `Unwind@10058364` | +| `Unwind@10058372` | `10058372` | `Unwind@10058372` | +| `Unwind@10058380` | `10058380` | `Unwind@10058380` | +| `Unwind@1005838e` | `1005838e` | `Unwind@1005838e` | +| `Unwind@1005839c` | `1005839c` | `Unwind@1005839c` | +| `Unwind@100583aa` | `100583aa` | `Unwind@100583aa` | +| `Unwind@100583b8` | `100583b8` | `Unwind@100583b8` | +| `Unwind@100583c6` | `100583c6` | `Unwind@100583c6` | +| `Unwind@100583d4` | `100583d4` | `Unwind@100583d4` | +| `Unwind@100583e2` | `100583e2` | `Unwind@100583e2` | +| `Unwind@100583f0` | `100583f0` | `Unwind@100583f0` | +| `Unwind@100583fe` | `100583fe` | `Unwind@100583fe` | +| `Unwind@1005840c` | `1005840c` | `Unwind@1005840c` | +| `Unwind@1005841a` | `1005841a` | `Unwind@1005841a` | +| `Unwind@10058428` | `10058428` | `Unwind@10058428` | +| `Unwind@10058436` | `10058436` | `Unwind@10058436` | +| `Unwind@10058444` | `10058444` | `Unwind@10058444` | +| `Unwind@10058452` | `10058452` | `Unwind@10058452` | +| `Unwind@10058460` | `10058460` | `Unwind@10058460` | +| `Unwind@1005846e` | `1005846e` | `Unwind@1005846e` | +| `Unwind@1005847c` | `1005847c` | `Unwind@1005847c` | +| `Unwind@1005848a` | `1005848a` | `Unwind@1005848a` | +| `Unwind@10058498` | `10058498` | `Unwind@10058498` | +| `Unwind@100584a6` | `100584a6` | `Unwind@100584a6` | +| `Unwind@100584b4` | `100584b4` | `Unwind@100584b4` | +| `Unwind@100584c2` | `100584c2` | `Unwind@100584c2` | +| `Unwind@100584d0` | `100584d0` | `Unwind@100584d0` | +| `Unwind@100584de` | `100584de` | `Unwind@100584de` | +| `Unwind@100584ec` | `100584ec` | `Unwind@100584ec` | +| `Unwind@100584fa` | `100584fa` | `Unwind@100584fa` | +| `Unwind@10058508` | `10058508` | `Unwind@10058508` | +| `Unwind@10058516` | `10058516` | `Unwind@10058516` | +| `Unwind@10058524` | `10058524` | `Unwind@10058524` | +| `Unwind@10058532` | `10058532` | `Unwind@10058532` | +| `Unwind@1005853d` | `1005853d` | `Unwind@1005853d` | +| `Unwind@10058548` | `10058548` | `Unwind@10058548` | +| `Unwind@10058550` | `10058550` | `Unwind@10058550` | +| `Unwind@1005855b` | `1005855b` | `Unwind@1005855b` | +| `Unwind@10058566` | `10058566` | `Unwind@10058566` | +| `Unwind@1005856e` | `1005856e` | `Unwind@1005856e` | +| `Unwind@10058577` | `10058577` | `Unwind@10058577` | +| `Unwind@10058580` | `10058580` | `Unwind@10058580` | +| `Unwind@10058589` | `10058589` | `Unwind@10058589` | +| `Unwind@10058592` | `10058592` | `Unwind@10058592` | +| `Unwind@1005859b` | `1005859b` | `Unwind@1005859b` | +| `Unwind@100585a9` | `100585a9` | `Unwind@100585a9` | +| `Unwind@100585b7` | `100585b7` | `Unwind@100585b7` | +| `Unwind@100585e0` | `100585e0` | `Unwind@100585e0` | +| `Unwind@100585e8` | `100585e8` | `Unwind@100585e8` | +| `Unwind@100585f3` | `100585f3` | `Unwind@100585f3` | +| `Unwind@100585fb` | `100585fb` | `Unwind@100585fb` | +| `Unwind@10058603` | `10058603` | `Unwind@10058603` | +| `Unwind@1005860b` | `1005860b` | `Unwind@1005860b` | +| `Unwind@10058630` | `10058630` | `Unwind@10058630` | +| `Unwind@10058638` | `10058638` | `Unwind@10058638` | +| `Unwind@10058640` | `10058640` | `Unwind@10058640` | +| `Unwind@10058648` | `10058648` | `Unwind@10058648` | +| `Unwind@10058650` | `10058650` | `Unwind@10058650` | +| `Unwind@10058658` | `10058658` | `Unwind@10058658` | +| `Unwind@10058680` | `10058680` | `Unwind@10058680` | +| `Unwind@1005868e` | `1005868e` | `Unwind@1005868e` | +| `Unwind@100586c0` | `100586c0` | `Unwind@100586c0` | +| `Unwind@100586ce` | `100586ce` | `Unwind@100586ce` | +| `Unwind@100586dc` | `100586dc` | `Unwind@100586dc` | +| `Unwind@10058700` | `10058700` | `Unwind@10058700` | +| `Unwind@1005870e` | `1005870e` | `Unwind@1005870e` | +| `Unwind@10058740` | `10058740` | `Unwind@10058740` | +| `Unwind@10058770` | `10058770` | `Unwind@10058770` | +| `Unwind@10058778` | `10058778` | `Unwind@10058778` | +| `Unwind@10058780` | `10058780` | `Unwind@10058780` | +| `Unwind@10058788` | `10058788` | `Unwind@10058788` | +| `Unwind@10058790` | `10058790` | `Unwind@10058790` | +| `Unwind@100587c0` | `100587c0` | `Unwind@100587c0` | +| `Unwind@100587ce` | `100587ce` | `Unwind@100587ce` | +| `Unwind@100587dc` | `100587dc` | `Unwind@100587dc` | +| `Unwind@10058810` | `10058810` | `Unwind@10058810` | +| `Unwind@1005881e` | `1005881e` | `Unwind@1005881e` | +| `Unwind@1005882c` | `1005882c` | `Unwind@1005882c` | +| `Unwind@10058860` | `10058860` | `Unwind@10058860` | +| `Unwind@1005886e` | `1005886e` | `Unwind@1005886e` | +| `Unwind@1005887c` | `1005887c` | `Unwind@1005887c` | +| `Unwind@100588b0` | `100588b0` | `Unwind@100588b0` | +| `Unwind@100588be` | `100588be` | `Unwind@100588be` | +| `Unwind@100588c6` | `100588c6` | `Unwind@100588c6` | +| `Unwind@100588ce` | `100588ce` | `Unwind@100588ce` | +| `Unwind@100588d6` | `100588d6` | `Unwind@100588d6` | +| `Unwind@100588de` | `100588de` | `Unwind@100588de` | +| `Unwind@100588e6` | `100588e6` | `Unwind@100588e6` | +| `Unwind@100588ee` | `100588ee` | `Unwind@100588ee` | +| `Unwind@100588fc` | `100588fc` | `Unwind@100588fc` | +| `Unwind@10058904` | `10058904` | `Unwind@10058904` | +| `Unwind@10058930` | `10058930` | `Unwind@10058930` | +| `Unwind@1005893e` | `1005893e` | `Unwind@1005893e` | +| `Unwind@10058946` | `10058946` | `Unwind@10058946` | +| `Unwind@1005894e` | `1005894e` | `Unwind@1005894e` | +| `Unwind@10058956` | `10058956` | `Unwind@10058956` | +| `Unwind@10058964` | `10058964` | `Unwind@10058964` | +| `Unwind@10058972` | `10058972` | `Unwind@10058972` | +| `Unwind@1005897a` | `1005897a` | `Unwind@1005897a` | +| `Unwind@10058982` | `10058982` | `Unwind@10058982` | +| `Unwind@100589b0` | `100589b0` | `Unwind@100589b0` | +| `Unwind@100589be` | `100589be` | `Unwind@100589be` | +| `Unwind@100589cc` | `100589cc` | `Unwind@100589cc` | +| `Unwind@100589da` | `100589da` | `Unwind@100589da` | +| `Unwind@100589e8` | `100589e8` | `Unwind@100589e8` | +| `Unwind@100589f6` | `100589f6` | `Unwind@100589f6` | +| `Unwind@10058a04` | `10058a04` | `Unwind@10058a04` | +| `Unwind@10058a12` | `10058a12` | `Unwind@10058a12` | +| `Unwind@10058a20` | `10058a20` | `Unwind@10058a20` | +| `Unwind@10058a2e` | `10058a2e` | `Unwind@10058a2e` | +| `Unwind@10058a3c` | `10058a3c` | `Unwind@10058a3c` | +| `Unwind@10058a4a` | `10058a4a` | `Unwind@10058a4a` | +| `Unwind@10058a80` | `10058a80` | `Unwind@10058a80` | +| `Unwind@10058a8e` | `10058a8e` | `Unwind@10058a8e` | +| `Unwind@10058a9c` | `10058a9c` | `Unwind@10058a9c` | +| `Unwind@10058aaa` | `10058aaa` | `Unwind@10058aaa` | +| `Unwind@10058ad0` | `10058ad0` | `Unwind@10058ad0` | +| `Unwind@10058adb` | `10058adb` | `Unwind@10058adb` | +| `Unwind@10058ae3` | `10058ae3` | `Unwind@10058ae3` | +| `Unwind@10058aee` | `10058aee` | `Unwind@10058aee` | +| `Unwind@10058af9` | `10058af9` | `Unwind@10058af9` | +| `Unwind@10058b01` | `10058b01` | `Unwind@10058b01` | +| `Unwind@10058b0c` | `10058b0c` | `Unwind@10058b0c` | +| `Unwind@10058b14` | `10058b14` | `Unwind@10058b14` | +| `Unwind@10058b1f` | `10058b1f` | `Unwind@10058b1f` | +| `Unwind@10058b27` | `10058b27` | `Unwind@10058b27` | +| `Unwind@10058b2f` | `10058b2f` | `Unwind@10058b2f` | +| `Unwind@10058b3a` | `10058b3a` | `Unwind@10058b3a` | +| `Unwind@10058b45` | `10058b45` | `Unwind@10058b45` | +| `Unwind@10058b4d` | `10058b4d` | `Unwind@10058b4d` | +| `Unwind@10058b5b` | `10058b5b` | `Unwind@10058b5b` | +| `Unwind@10058b69` | `10058b69` | `Unwind@10058b69` | +| `Unwind@10058b77` | `10058b77` | `Unwind@10058b77` | +| `Unwind@10058b7f` | `10058b7f` | `Unwind@10058b7f` | +| `Unwind@10058b8d` | `10058b8d` | `Unwind@10058b8d` | +| `Unwind@10058b9b` | `10058b9b` | `Unwind@10058b9b` | +| `Unwind@10058ba9` | `10058ba9` | `Unwind@10058ba9` | +| `Unwind@10058bb7` | `10058bb7` | `Unwind@10058bb7` | +| `Unwind@10058bbf` | `10058bbf` | `Unwind@10058bbf` | +| `Unwind@10058bcd` | `10058bcd` | `Unwind@10058bcd` | +| `Unwind@10058bdb` | `10058bdb` | `Unwind@10058bdb` | +| `Unwind@10058be3` | `10058be3` | `Unwind@10058be3` | +| `Unwind@10058bf1` | `10058bf1` | `Unwind@10058bf1` | +| `Unwind@10058bff` | `10058bff` | `Unwind@10058bff` | +| `Unwind@10058c07` | `10058c07` | `Unwind@10058c07` | +| `Unwind@10058c15` | `10058c15` | `Unwind@10058c15` | +| `Unwind@10058c23` | `10058c23` | `Unwind@10058c23` | +| `Unwind@10058c2b` | `10058c2b` | `Unwind@10058c2b` | +| `Unwind@10058c39` | `10058c39` | `Unwind@10058c39` | +| `Unwind@10058c47` | `10058c47` | `Unwind@10058c47` | +| `Unwind@10058c4f` | `10058c4f` | `Unwind@10058c4f` | +| `Unwind@10058c5d` | `10058c5d` | `Unwind@10058c5d` | +| `Unwind@10058c6b` | `10058c6b` | `Unwind@10058c6b` | +| `Unwind@10058c73` | `10058c73` | `Unwind@10058c73` | +| `Unwind@10058c81` | `10058c81` | `Unwind@10058c81` | +| `Unwind@10058c8f` | `10058c8f` | `Unwind@10058c8f` | +| `Unwind@10058c97` | `10058c97` | `Unwind@10058c97` | +| `Unwind@10058ca5` | `10058ca5` | `Unwind@10058ca5` | +| `Unwind@10058cb3` | `10058cb3` | `Unwind@10058cb3` | +| `Unwind@10058cbb` | `10058cbb` | `Unwind@10058cbb` | +| `Unwind@10058cc9` | `10058cc9` | `Unwind@10058cc9` | +| `Unwind@10058cd7` | `10058cd7` | `Unwind@10058cd7` | +| `Unwind@10058cdf` | `10058cdf` | `Unwind@10058cdf` | +| `Unwind@10058ced` | `10058ced` | `Unwind@10058ced` | +| `Unwind@10058cfb` | `10058cfb` | `Unwind@10058cfb` | +| `Unwind@10058d03` | `10058d03` | `Unwind@10058d03` | +| `Unwind@10058d11` | `10058d11` | `Unwind@10058d11` | +| `Unwind@10058d1f` | `10058d1f` | `Unwind@10058d1f` | +| `Unwind@10058d2d` | `10058d2d` | `Unwind@10058d2d` | +| `Unwind@10058d3b` | `10058d3b` | `Unwind@10058d3b` | +| `Unwind@10058d49` | `10058d49` | `Unwind@10058d49` | +| `Unwind@10058d52` | `10058d52` | `Unwind@10058d52` | +| `Unwind@10058d5b` | `10058d5b` | `Unwind@10058d5b` | +| `Unwind@10058d64` | `10058d64` | `Unwind@10058d64` | +| `Unwind@10058d6d` | `10058d6d` | `Unwind@10058d6d` | +| `Unwind@10058d76` | `10058d76` | `Unwind@10058d76` | +| `Unwind@10058d7f` | `10058d7f` | `Unwind@10058d7f` | +| `Unwind@10058d88` | `10058d88` | `Unwind@10058d88` | +| `Unwind@10058d91` | `10058d91` | `Unwind@10058d91` | +| `Unwind@10058d9a` | `10058d9a` | `Unwind@10058d9a` | +| `Unwind@10058da3` | `10058da3` | `Unwind@10058da3` | +| `Unwind@10058dac` | `10058dac` | `Unwind@10058dac` | +| `Unwind@10058db5` | `10058db5` | `Unwind@10058db5` | +| `Unwind@10058dbe` | `10058dbe` | `Unwind@10058dbe` | +| `Unwind@10058df0` | `10058df0` | `Unwind@10058df0` | +| `Unwind@10058e20` | `10058e20` | `Unwind@10058e20` | +| `Unwind@10058e50` | `10058e50` | `Unwind@10058e50` | +| `Unwind@10058e80` | `10058e80` | `Unwind@10058e80` | +| `Unwind@10058eb0` | `10058eb0` | `Unwind@10058eb0` | +| `Unwind@10058ee0` | `10058ee0` | `Unwind@10058ee0` | +| `Unwind@10058f10` | `10058f10` | `Unwind@10058f10` | +| `Unwind@10058f40` | `10058f40` | `Unwind@10058f40` | +| `Unwind@10058f70` | `10058f70` | `Unwind@10058f70` | +| `Unwind@10058fa0` | `10058fa0` | `Unwind@10058fa0` | +| `Unwind@10058fd0` | `10058fd0` | `Unwind@10058fd0` | +| `Unwind@10059000` | `10059000` | `Unwind@10059000` | +| `Unwind@10059030` | `10059030` | `Unwind@10059030` | +| `Unwind@10059060` | `10059060` | `Unwind@10059060` | +| `Unwind@10059090` | `10059090` | `Unwind@10059090` | +| `Unwind@100590c0` | `100590c0` | `Unwind@100590c0` | +| `Unwind@100590f0` | `100590f0` | `Unwind@100590f0` | +| `Unwind@10059120` | `10059120` | `Unwind@10059120` | +| `Unwind@10059150` | `10059150` | `Unwind@10059150` | +| `Unwind@10059180` | `10059180` | `Unwind@10059180` | +| `Unwind@100591b0` | `100591b0` | `Unwind@100591b0` | +| `Unwind@100591e0` | `100591e0` | `Unwind@100591e0` | +| `Unwind@10059210` | `10059210` | `Unwind@10059210` | +| `Unwind@10059240` | `10059240` | `Unwind@10059240` | +| `Unwind@10059270` | `10059270` | `Unwind@10059270` | +| `Unwind@100592a0` | `100592a0` | `Unwind@100592a0` | +| `Unwind@100592d0` | `100592d0` | `Unwind@100592d0` | +| `Unwind@10059300` | `10059300` | `Unwind@10059300` | +| `Unwind@10059330` | `10059330` | `Unwind@10059330` | +| `Unwind@10059360` | `10059360` | `Unwind@10059360` | +| `Unwind@10059390` | `10059390` | `Unwind@10059390` | +| `Unwind@100593c0` | `100593c0` | `Unwind@100593c0` | +| `Unwind@100593f0` | `100593f0` | `Unwind@100593f0` | +| `Unwind@10059420` | `10059420` | `Unwind@10059420` | +| `Unwind@10059450` | `10059450` | `Unwind@10059450` | +| `Unwind@10059480` | `10059480` | `Unwind@10059480` | +| `Unwind@100594b0` | `100594b0` | `Unwind@100594b0` | +| `Unwind@100594e0` | `100594e0` | `Unwind@100594e0` | +| `Unwind@10059510` | `10059510` | `Unwind@10059510` | +| `Unwind@10059540` | `10059540` | `Unwind@10059540` | +| `Unwind@10059570` | `10059570` | `Unwind@10059570` | +| `Unwind@100595a0` | `100595a0` | `Unwind@100595a0` | +| `Unwind@100595d0` | `100595d0` | `Unwind@100595d0` | +| `Unwind@10059600` | `10059600` | `Unwind@10059600` | +| `Unwind@10059630` | `10059630` | `Unwind@10059630` | +| `Unwind@10059660` | `10059660` | `Unwind@10059660` | +| `Unwind@10059690` | `10059690` | `Unwind@10059690` | +| `Unwind@100596c0` | `100596c0` | `Unwind@100596c0` | +| `Unwind@100596f0` | `100596f0` | `Unwind@100596f0` | +| `Unwind@10059720` | `10059720` | `Unwind@10059720` | +| `Unwind@10059750` | `10059750` | `Unwind@10059750` | +| `Unwind@10059780` | `10059780` | `Unwind@10059780` | +| `Unwind@100597b0` | `100597b0` | `Unwind@100597b0` | +| `Unwind@100597b8` | `100597b8` | `Unwind@100597b8` | +| `Unwind@100597e0` | `100597e0` | `Unwind@100597e0` | +| `Unwind@100597e8` | `100597e8` | `Unwind@100597e8` | +| `Unwind@10059810` | `10059810` | `Unwind@10059810` | +| `Unwind@10059818` | `10059818` | `Unwind@10059818` | +| `Unwind@10059840` | `10059840` | `Unwind@10059840` | +| `Unwind@10059848` | `10059848` | `Unwind@10059848` | +| `Unwind@10059870` | `10059870` | `Unwind@10059870` | +| `Unwind@10059878` | `10059878` | `Unwind@10059878` | +| `Unwind@100598a0` | `100598a0` | `Unwind@100598a0` | +| `Unwind@100598a8` | `100598a8` | `Unwind@100598a8` | +| `Unwind@100598d0` | `100598d0` | `Unwind@100598d0` | +| `Unwind@100598d8` | `100598d8` | `Unwind@100598d8` | +| `Unwind@10059900` | `10059900` | `Unwind@10059900` | +| `Unwind@10059908` | `10059908` | `Unwind@10059908` | +| `Unwind@10059930` | `10059930` | `Unwind@10059930` | +| `Unwind@10059938` | `10059938` | `Unwind@10059938` | +| `Unwind@10059960` | `10059960` | `Unwind@10059960` | +| `Unwind@10059968` | `10059968` | `Unwind@10059968` | +| `Unwind@10059990` | `10059990` | `Unwind@10059990` | +| `Unwind@10059998` | `10059998` | `Unwind@10059998` | +| `Unwind@100599c0` | `100599c0` | `Unwind@100599c0` | +| `Unwind@100599f0` | `100599f0` | `Unwind@100599f0` | +| `Unwind@10059a20` | `10059a20` | `Unwind@10059a20` | +| `Unwind@10059a50` | `10059a50` | `Unwind@10059a50` | +| `Unwind@10059a80` | `10059a80` | `Unwind@10059a80` | +| `Unwind@10059ab0` | `10059ab0` | `Unwind@10059ab0` | +| `Unwind@10059ae0` | `10059ae0` | `Unwind@10059ae0` | +| `Unwind@10059b10` | `10059b10` | `Unwind@10059b10` | +| `Unwind@10059b40` | `10059b40` | `Unwind@10059b40` | +| `Unwind@10059b70` | `10059b70` | `Unwind@10059b70` | +| `Unwind@10059b7e` | `10059b7e` | `Unwind@10059b7e` | +| `Unwind@10059bb0` | `10059bb0` | `Unwind@10059bb0` | +| `Unwind@10059bbe` | `10059bbe` | `Unwind@10059bbe` | +| `Unwind@10059bcc` | `10059bcc` | `Unwind@10059bcc` | +| `Unwind@10059bda` | `10059bda` | `Unwind@10059bda` | +| `Unwind@10059be8` | `10059be8` | `Unwind@10059be8` | +| `Unwind@10059bf6` | `10059bf6` | `Unwind@10059bf6` | +| `Unwind@10059c20` | `10059c20` | `Unwind@10059c20` | +| `Unwind@10059c2e` | `10059c2e` | `Unwind@10059c2e` | +| `Unwind@10059c3c` | `10059c3c` | `Unwind@10059c3c` | +| `Unwind@10059c4a` | `10059c4a` | `Unwind@10059c4a` | +| `Unwind@10059c58` | `10059c58` | `Unwind@10059c58` | +| `Unwind@10059c66` | `10059c66` | `Unwind@10059c66` | +| `Unwind@10059c90` | `10059c90` | `Unwind@10059c90` | +| `Unwind@10059c98` | `10059c98` | `Unwind@10059c98` | +| `Unwind@10059ca6` | `10059ca6` | `Unwind@10059ca6` | +| `Unwind@10059cb4` | `10059cb4` | `Unwind@10059cb4` | +| `Unwind@10059ce0` | `10059ce0` | `Unwind@10059ce0` | +| `Unwind@10059d30` | `10059d30` | `Unwind@10059d30` | +| `Unwind@10059d60` | `10059d60` | `Unwind@10059d60` | +| `Unwind@10059d6e` | `10059d6e` | `Unwind@10059d6e` | +| `Unwind@10059d7c` | `10059d7c` | `Unwind@10059d7c` | +| `Unwind@10059d8a` | `10059d8a` | `Unwind@10059d8a` | +| `Unwind@10059d98` | `10059d98` | `Unwind@10059d98` | +| `Unwind@10059da6` | `10059da6` | `Unwind@10059da6` | +| `Unwind@10059db4` | `10059db4` | `Unwind@10059db4` | +| `Unwind@10059dc2` | `10059dc2` | `Unwind@10059dc2` | +| `Unwind@10059dd0` | `10059dd0` | `Unwind@10059dd0` | +| `Unwind@10059e10` | `10059e10` | `Unwind@10059e10` | +| `Unwind@10059e40` | `10059e40` | `Unwind@10059e40` | +| `Unwind@10059e70` | `10059e70` | `Unwind@10059e70` | +| `Unwind@10059ea0` | `10059ea0` | `Unwind@10059ea0` | +| `Unwind@10059ed0` | `10059ed0` | `Unwind@10059ed0` | +| `Unwind@10059f00` | `10059f00` | `Unwind@10059f00` | +| `Unwind@10059f30` | `10059f30` | `Unwind@10059f30` | +| `Unwind@10059f60` | `10059f60` | `Unwind@10059f60` | +| `Unwind@10059f90` | `10059f90` | `Unwind@10059f90` | +| `Unwind@10059fc0` | `10059fc0` | `Unwind@10059fc0` | +| `Unwind@10059ff0` | `10059ff0` | `Unwind@10059ff0` | +| `Unwind@1005a020` | `1005a020` | `Unwind@1005a020` | +| `Unwind@1005a050` | `1005a050` | `Unwind@1005a050` | +| `Unwind@1005a080` | `1005a080` | `Unwind@1005a080` | +| `Unwind@1005a0b0` | `1005a0b0` | `Unwind@1005a0b0` | +| `Unwind@1005a0b8` | `1005a0b8` | `Unwind@1005a0b8` | +| `Unwind@1005a0c0` | `1005a0c0` | `Unwind@1005a0c0` | +| `Unwind@1005a0c8` | `1005a0c8` | `Unwind@1005a0c8` | +| `Unwind@1005a0d0` | `1005a0d0` | `Unwind@1005a0d0` | +| `Unwind@1005a0d8` | `1005a0d8` | `Unwind@1005a0d8` | +| `Unwind@1005a0e0` | `1005a0e0` | `Unwind@1005a0e0` | +| `Unwind@1005a0e8` | `1005a0e8` | `Unwind@1005a0e8` | +| `Unwind@1005a0f0` | `1005a0f0` | `Unwind@1005a0f0` | +| `Unwind@1005a0fe` | `1005a0fe` | `Unwind@1005a0fe` | +| `Unwind@1005a106` | `1005a106` | `Unwind@1005a106` | +| `Unwind@1005a10e` | `1005a10e` | `Unwind@1005a10e` | +| `Unwind@1005a11c` | `1005a11c` | `Unwind@1005a11c` | +| `Unwind@1005a12a` | `1005a12a` | `Unwind@1005a12a` | +| `Unwind@1005a133` | `1005a133` | `Unwind@1005a133` | +| `Unwind@1005a13b` | `1005a13b` | `Unwind@1005a13b` | +| `Unwind@1005a160` | `1005a160` | `Unwind@1005a160` | +| `Unwind@1005a168` | `1005a168` | `Unwind@1005a168` | +| `Unwind@1005a170` | `1005a170` | `Unwind@1005a170` | +| `Unwind@1005a178` | `1005a178` | `Unwind@1005a178` | +| `Unwind@1005a180` | `1005a180` | `Unwind@1005a180` | +| `Unwind@1005a188` | `1005a188` | `Unwind@1005a188` | +| `Unwind@1005a190` | `1005a190` | `Unwind@1005a190` | +| `Unwind@1005a198` | `1005a198` | `Unwind@1005a198` | +| `Unwind@1005a1a0` | `1005a1a0` | `Unwind@1005a1a0` | +| `Unwind@1005a1a8` | `1005a1a8` | `Unwind@1005a1a8` | +| `Unwind@1005a1b0` | `1005a1b0` | `Unwind@1005a1b0` | +| `Unwind@1005a1be` | `1005a1be` | `Unwind@1005a1be` | +| `Unwind@1005a1cc` | `1005a1cc` | `Unwind@1005a1cc` | +| `Unwind@1005a1d4` | `1005a1d4` | `Unwind@1005a1d4` | +| `Unwind@1005a1dc` | `1005a1dc` | `Unwind@1005a1dc` | +| `Unwind@1005a200` | `1005a200` | `Unwind@1005a200` | +| `Unwind@1005a208` | `1005a208` | `Unwind@1005a208` | +| `Unwind@1005a210` | `1005a210` | `Unwind@1005a210` | +| `Unwind@1005a218` | `1005a218` | `Unwind@1005a218` | +| `Unwind@1005a220` | `1005a220` | `Unwind@1005a220` | +| `Unwind@1005a228` | `1005a228` | `Unwind@1005a228` | +| `Unwind@1005a250` | `1005a250` | `Unwind@1005a250` | +| `Unwind@1005a258` | `1005a258` | `Unwind@1005a258` | +| `Unwind@1005a260` | `1005a260` | `Unwind@1005a260` | +| `Unwind@1005a268` | `1005a268` | `Unwind@1005a268` | +| `Unwind@1005a270` | `1005a270` | `Unwind@1005a270` | +| `Unwind@1005a27b` | `1005a27b` | `Unwind@1005a27b` | +| `Unwind@1005a283` | `1005a283` | `Unwind@1005a283` | +| `Unwind@1005a28b` | `1005a28b` | `Unwind@1005a28b` | +| `Unwind@1005a293` | `1005a293` | `Unwind@1005a293` | +| `Unwind@1005a29b` | `1005a29b` | `Unwind@1005a29b` | +| `Unwind@1005a2a3` | `1005a2a3` | `Unwind@1005a2a3` | +| `Unwind@1005a2ab` | `1005a2ab` | `Unwind@1005a2ab` | +| `Unwind@1005a2b3` | `1005a2b3` | `Unwind@1005a2b3` | +| `Unwind@1005a2bb` | `1005a2bb` | `Unwind@1005a2bb` | +| `Unwind@1005a2c9` | `1005a2c9` | `Unwind@1005a2c9` | +| `Unwind@1005a2d7` | `1005a2d7` | `Unwind@1005a2d7` | +| `Unwind@1005a2e0` | `1005a2e0` | `Unwind@1005a2e0` | +| `Unwind@1005a2ec` | `1005a2ec` | `Unwind@1005a2ec` | +| `Unwind@1005a2f4` | `1005a2f4` | `Unwind@1005a2f4` | +| `Unwind@1005a320` | `1005a320` | `Unwind@1005a320` | +| `Unwind@1005a328` | `1005a328` | `Unwind@1005a328` | +| `Unwind@1005a330` | `1005a330` | `Unwind@1005a330` | +| `Unwind@1005a338` | `1005a338` | `Unwind@1005a338` | +| `Unwind@1005a340` | `1005a340` | `Unwind@1005a340` | +| `Unwind@1005a348` | `1005a348` | `Unwind@1005a348` | +| `Unwind@1005a350` | `1005a350` | `Unwind@1005a350` | +| `Unwind@1005a380` | `1005a380` | `Unwind@1005a380` | +| `Unwind@1005a388` | `1005a388` | `Unwind@1005a388` | +| `Unwind@1005a390` | `1005a390` | `Unwind@1005a390` | +| `Unwind@1005a398` | `1005a398` | `Unwind@1005a398` | +| `Unwind@1005a3a0` | `1005a3a0` | `Unwind@1005a3a0` | +| `Unwind@1005a3a8` | `1005a3a8` | `Unwind@1005a3a8` | +| `Unwind@1005a3b0` | `1005a3b0` | `Unwind@1005a3b0` | +| `Unwind@1005a3b8` | `1005a3b8` | `Unwind@1005a3b8` | +| `Unwind@1005a3c0` | `1005a3c0` | `Unwind@1005a3c0` | +| `Unwind@1005a3c8` | `1005a3c8` | `Unwind@1005a3c8` | +| `Unwind@1005a3d0` | `1005a3d0` | `Unwind@1005a3d0` | +| `Unwind@1005a3de` | `1005a3de` | `Unwind@1005a3de` | +| `Unwind@1005a3ec` | `1005a3ec` | `Unwind@1005a3ec` | +| `Unwind@1005a3f4` | `1005a3f4` | `Unwind@1005a3f4` | +| `Unwind@1005a3fc` | `1005a3fc` | `Unwind@1005a3fc` | +| `Unwind@1005a420` | `1005a420` | `Unwind@1005a420` | +| `Unwind@1005a428` | `1005a428` | `Unwind@1005a428` | +| `Unwind@1005a450` | `1005a450` | `Unwind@1005a450` | +| `Unwind@1005a480` | `1005a480` | `Unwind@1005a480` | +| `Unwind@1005a4b0` | `1005a4b0` | `Unwind@1005a4b0` | +| `Unwind@1005a4e0` | `1005a4e0` | `Unwind@1005a4e0` | +| `Unwind@1005a510` | `1005a510` | `Unwind@1005a510` | +| `Unwind@1005a540` | `1005a540` | `Unwind@1005a540` | +| `Unwind@1005a54b` | `1005a54b` | `Unwind@1005a54b` | +| `Unwind@1005a570` | `1005a570` | `Unwind@1005a570` | +| `Unwind@1005a578` | `1005a578` | `Unwind@1005a578` | +| `Unwind@1005a5a0` | `1005a5a0` | `Unwind@1005a5a0` | +| `Unwind@1005a5a8` | `1005a5a8` | `Unwind@1005a5a8` | +| `Unwind@1005a5d0` | `1005a5d0` | `Unwind@1005a5d0` | +| `Unwind@1005a5db` | `1005a5db` | `Unwind@1005a5db` | +| `Unwind@1005a600` | `1005a600` | `Unwind@1005a600` | +| `Unwind@1005a608` | `1005a608` | `Unwind@1005a608` | +| `Unwind@1005a630` | `1005a630` | `Unwind@1005a630` | +| `Unwind@1005a638` | `1005a638` | `Unwind@1005a638` | +| `Unwind@1005a646` | `1005a646` | `Unwind@1005a646` | +| `Unwind@1005a654` | `1005a654` | `Unwind@1005a654` | +| `Unwind@1005a680` | `1005a680` | `Unwind@1005a680` | +| `Unwind@1005a688` | `1005a688` | `Unwind@1005a688` | +| `Unwind@1005a696` | `1005a696` | `Unwind@1005a696` | +| `Unwind@1005a6a4` | `1005a6a4` | `Unwind@1005a6a4` | +| `Unwind@1005a6d0` | `1005a6d0` | `Unwind@1005a6d0` | +| `Unwind@1005a6d8` | `1005a6d8` | `Unwind@1005a6d8` | +| `Unwind@1005a6e6` | `1005a6e6` | `Unwind@1005a6e6` | +| `Unwind@1005a6f4` | `1005a6f4` | `Unwind@1005a6f4` | +| `Unwind@1005a702` | `1005a702` | `Unwind@1005a702` | +| `Unwind@1005a730` | `1005a730` | `Unwind@1005a730` | +| `Unwind@1005a738` | `1005a738` | `Unwind@1005a738` | +| `Unwind@1005a746` | `1005a746` | `Unwind@1005a746` | +| `Unwind@1005a754` | `1005a754` | `Unwind@1005a754` | +| `Unwind@1005a780` | `1005a780` | `Unwind@1005a780` | +| `Unwind@1005a788` | `1005a788` | `Unwind@1005a788` | +| `Unwind@1005a790` | `1005a790` | `Unwind@1005a790` | +| `Unwind@1005a7c0` | `1005a7c0` | `Unwind@1005a7c0` | +| `Unwind@1005a7c8` | `1005a7c8` | `Unwind@1005a7c8` | +| `Unwind@1005a7f0` | `1005a7f0` | `Unwind@1005a7f0` | +| `Unwind@1005a7f8` | `1005a7f8` | `Unwind@1005a7f8` | +| `Unwind@1005a820` | `1005a820` | `Unwind@1005a820` | +| `Unwind@1005a828` | `1005a828` | `Unwind@1005a828` | +| `Unwind@1005a850` | `1005a850` | `Unwind@1005a850` | +| `Unwind@1005a858` | `1005a858` | `Unwind@1005a858` | +| `Unwind@1005a880` | `1005a880` | `Unwind@1005a880` | +| `Unwind@1005a891` | `1005a891` | `Unwind@1005a891` | +| `Unwind@1005a899` | `1005a899` | `Unwind@1005a899` | +| `Unwind@1005a8c0` | `1005a8c0` | `Unwind@1005a8c0` | +| `Unwind@1005a8d1` | `1005a8d1` | `Unwind@1005a8d1` | +| `Unwind@1005a8dc` | `1005a8dc` | `Unwind@1005a8dc` | +| `Unwind@1005a900` | `1005a900` | `Unwind@1005a900` | +| `Unwind@1005a908` | `1005a908` | `Unwind@1005a908` | +| `Unwind@1005a930` | `1005a930` | `Unwind@1005a930` | +| `Unwind@1005a938` | `1005a938` | `Unwind@1005a938` | +| `Unwind@1005a960` | `1005a960` | `Unwind@1005a960` | +| `Unwind@1005a971` | `1005a971` | `Unwind@1005a971` | +| `Unwind@1005a979` | `1005a979` | `Unwind@1005a979` | +| `Unwind@1005a9a0` | `1005a9a0` | `Unwind@1005a9a0` | +| `Unwind@1005a9b1` | `1005a9b1` | `Unwind@1005a9b1` | +| `Unwind@1005a9bc` | `1005a9bc` | `Unwind@1005a9bc` | +| `Unwind@1005a9e0` | `1005a9e0` | `Unwind@1005a9e0` | +| `Unwind@1005a9ee` | `1005a9ee` | `Unwind@1005a9ee` | +| `Unwind@1005a9fc` | `1005a9fc` | `Unwind@1005a9fc` | +| `Unwind@1005aa0a` | `1005aa0a` | `Unwind@1005aa0a` | +| `Unwind@1005aa18` | `1005aa18` | `Unwind@1005aa18` | +| `Unwind@1005aa20` | `1005aa20` | `Unwind@1005aa20` | +| `Unwind@1005aa2e` | `1005aa2e` | `Unwind@1005aa2e` | +| `Unwind@1005aa3c` | `1005aa3c` | `Unwind@1005aa3c` | +| `Unwind@1005aa4a` | `1005aa4a` | `Unwind@1005aa4a` | +| `Unwind@1005aa80` | `1005aa80` | `Unwind@1005aa80` | +| `Unwind@1005aa88` | `1005aa88` | `Unwind@1005aa88` | +| `Unwind@1005aa96` | `1005aa96` | `Unwind@1005aa96` | +| `Unwind@1005aa9e` | `1005aa9e` | `Unwind@1005aa9e` | +| `Unwind@1005aad0` | `1005aad0` | `Unwind@1005aad0` | +| `Unwind@1005aad8` | `1005aad8` | `Unwind@1005aad8` | +| `Unwind@1005ab00` | `1005ab00` | `Unwind@1005ab00` | +| `Unwind@1005ab08` | `1005ab08` | `Unwind@1005ab08` | +| `Unwind@1005ab30` | `1005ab30` | `Unwind@1005ab30` | +| `Unwind@1005ab60` | `1005ab60` | `Unwind@1005ab60` | +| `Unwind@1005ab90` | `1005ab90` | `Unwind@1005ab90` | +| `Unwind@1005ab9e` | `1005ab9e` | `Unwind@1005ab9e` | +| `Unwind@1005abac` | `1005abac` | `Unwind@1005abac` | +| `Unwind@1005abb4` | `1005abb4` | `Unwind@1005abb4` | +| `Unwind@1005abbc` | `1005abbc` | `Unwind@1005abbc` | +| `Unwind@1005abc4` | `1005abc4` | `Unwind@1005abc4` | +| `Unwind@1005abcc` | `1005abcc` | `Unwind@1005abcc` | +| `Unwind@1005abd4` | `1005abd4` | `Unwind@1005abd4` | +| `Unwind@1005abdc` | `1005abdc` | `Unwind@1005abdc` | +| `Unwind@1005abea` | `1005abea` | `Unwind@1005abea` | +| `Unwind@1005abf8` | `1005abf8` | `Unwind@1005abf8` | +| `Unwind@1005ac06` | `1005ac06` | `Unwind@1005ac06` | +| `Unwind@1005ac14` | `1005ac14` | `Unwind@1005ac14` | +| `Unwind@1005ac40` | `1005ac40` | `Unwind@1005ac40` | +| `Unwind@1005ac48` | `1005ac48` | `Unwind@1005ac48` | +| `Unwind@1005ac70` | `1005ac70` | `Unwind@1005ac70` | +| `Unwind@1005ac78` | `1005ac78` | `Unwind@1005ac78` | +| `Unwind@1005aca0` | `1005aca0` | `Unwind@1005aca0` | +| `Unwind@1005aca8` | `1005aca8` | `Unwind@1005aca8` | +| `Unwind@1005acb0` | `1005acb0` | `Unwind@1005acb0` | +| `Unwind@1005acb8` | `1005acb8` | `Unwind@1005acb8` | +| `Unwind@1005acc0` | `1005acc0` | `Unwind@1005acc0` | +| `Unwind@1005acc8` | `1005acc8` | `Unwind@1005acc8` | +| `Unwind@1005acd0` | `1005acd0` | `Unwind@1005acd0` | +| `Unwind@1005acd8` | `1005acd8` | `Unwind@1005acd8` | +| `Unwind@1005ace6` | `1005ace6` | `Unwind@1005ace6` | +| `Unwind@1005acf1` | `1005acf1` | `Unwind@1005acf1` | +| `Unwind@1005acff` | `1005acff` | `Unwind@1005acff` | +| `Unwind@1005ad07` | `1005ad07` | `Unwind@1005ad07` | +| `Unwind@1005ad0f` | `1005ad0f` | `Unwind@1005ad0f` | +| `Unwind@1005ad18` | `1005ad18` | `Unwind@1005ad18` | +| `Unwind@1005ad40` | `1005ad40` | `Unwind@1005ad40` | +| `Unwind@1005ad48` | `1005ad48` | `Unwind@1005ad48` | +| `Unwind@1005ad50` | `1005ad50` | `Unwind@1005ad50` | +| `Unwind@1005ad80` | `1005ad80` | `Unwind@1005ad80` | +| `Unwind@1005ad88` | `1005ad88` | `Unwind@1005ad88` | +| `Unwind@1005ad90` | `1005ad90` | `Unwind@1005ad90` | +| `Unwind@1005ad98` | `1005ad98` | `Unwind@1005ad98` | +| `Unwind@1005ada0` | `1005ada0` | `Unwind@1005ada0` | +| `Unwind@1005ada8` | `1005ada8` | `Unwind@1005ada8` | +| `Unwind@1005add0` | `1005add0` | `Unwind@1005add0` | +| `Unwind@1005add8` | `1005add8` | `Unwind@1005add8` | +| `Unwind@1005ade3` | `1005ade3` | `Unwind@1005ade3` | +| `Unwind@1005adeb` | `1005adeb` | `Unwind@1005adeb` | +| `Unwind@1005adf3` | `1005adf3` | `Unwind@1005adf3` | +| `Unwind@1005adfb` | `1005adfb` | `Unwind@1005adfb` | +| `Unwind@1005ae03` | `1005ae03` | `Unwind@1005ae03` | +| `Unwind@1005ae0b` | `1005ae0b` | `Unwind@1005ae0b` | +| `Unwind@1005ae13` | `1005ae13` | `Unwind@1005ae13` | +| `Unwind@1005ae1b` | `1005ae1b` | `Unwind@1005ae1b` | +| `Unwind@1005ae23` | `1005ae23` | `Unwind@1005ae23` | +| `Unwind@1005ae50` | `1005ae50` | `Unwind@1005ae50` | +| `Unwind@1005ae58` | `1005ae58` | `Unwind@1005ae58` | +| `Unwind@1005ae63` | `1005ae63` | `Unwind@1005ae63` | +| `Unwind@1005ae6b` | `1005ae6b` | `Unwind@1005ae6b` | +| `Unwind@1005ae73` | `1005ae73` | `Unwind@1005ae73` | +| `Unwind@1005ae7b` | `1005ae7b` | `Unwind@1005ae7b` | +| `Unwind@1005ae83` | `1005ae83` | `Unwind@1005ae83` | +| `Unwind@1005ae8b` | `1005ae8b` | `Unwind@1005ae8b` | +| `Unwind@1005ae96` | `1005ae96` | `Unwind@1005ae96` | +| `Unwind@1005ae9e` | `1005ae9e` | `Unwind@1005ae9e` | +| `Unwind@1005aea6` | `1005aea6` | `Unwind@1005aea6` | +| `Unwind@1005aeae` | `1005aeae` | `Unwind@1005aeae` | +| `Unwind@1005aeb6` | `1005aeb6` | `Unwind@1005aeb6` | +| `Unwind@1005aebe` | `1005aebe` | `Unwind@1005aebe` | +| `Unwind@1005aec6` | `1005aec6` | `Unwind@1005aec6` | +| `Unwind@1005aed1` | `1005aed1` | `Unwind@1005aed1` | +| `Unwind@1005aed9` | `1005aed9` | `Unwind@1005aed9` | +| `Unwind@1005aee4` | `1005aee4` | `Unwind@1005aee4` | +| `Unwind@1005af10` | `1005af10` | `Unwind@1005af10` | +| `Unwind@1005af1e` | `1005af1e` | `Unwind@1005af1e` | +| `Unwind@1005af2c` | `1005af2c` | `Unwind@1005af2c` | +| `Unwind@1005af3a` | `1005af3a` | `Unwind@1005af3a` | +| `Unwind@1005af48` | `1005af48` | `Unwind@1005af48` | +| `Unwind@1005af56` | `1005af56` | `Unwind@1005af56` | +| `Unwind@1005af80` | `1005af80` | `Unwind@1005af80` | +| `Unwind@1005af8e` | `1005af8e` | `Unwind@1005af8e` | +| `Unwind@1005af9c` | `1005af9c` | `Unwind@1005af9c` | +| `Unwind@1005afaa` | `1005afaa` | `Unwind@1005afaa` | +| `Unwind@1005afb8` | `1005afb8` | `Unwind@1005afb8` | +| `Unwind@1005afc6` | `1005afc6` | `Unwind@1005afc6` | +| `Unwind@1005b000` | `1005b000` | `Unwind@1005b000` | +| `Unwind@1005b00e` | `1005b00e` | `Unwind@1005b00e` | +| `Unwind@1005b01c` | `1005b01c` | `Unwind@1005b01c` | +| `Unwind@1005b050` | `1005b050` | `Unwind@1005b050` | +| `Unwind@1005b058` | `1005b058` | `Unwind@1005b058` | +| `Unwind@1005b060` | `1005b060` | `Unwind@1005b060` | +| `Unwind@1005b068` | `1005b068` | `Unwind@1005b068` | +| `Unwind@1005b070` | `1005b070` | `Unwind@1005b070` | +| `Unwind@1005b0a0` | `1005b0a0` | `Unwind@1005b0a0` | +| `Unwind@1005b0a8` | `1005b0a8` | `Unwind@1005b0a8` | +| `Unwind@1005b0b0` | `1005b0b0` | `Unwind@1005b0b0` | +| `Unwind@1005b0b8` | `1005b0b8` | `Unwind@1005b0b8` | +| `Unwind@1005b0c0` | `1005b0c0` | `Unwind@1005b0c0` | +| `Unwind@1005b0c8` | `1005b0c8` | `Unwind@1005b0c8` | +| `Unwind@1005b0f0` | `1005b0f0` | `Unwind@1005b0f0` | +| `Unwind@1005b0f8` | `1005b0f8` | `Unwind@1005b0f8` | +| `Unwind@1005b120` | `1005b120` | `Unwind@1005b120` | +| `Unwind@1005b150` | `1005b150` | `Unwind@1005b150` | +| `Unwind@1005b180` | `1005b180` | `Unwind@1005b180` | +| `Unwind@1005b188` | `1005b188` | `Unwind@1005b188` | +| `Unwind@1005b1b0` | `1005b1b0` | `Unwind@1005b1b0` | +| `Unwind@1005b1b8` | `1005b1b8` | `Unwind@1005b1b8` | +| `Unwind@1005b1e0` | `1005b1e0` | `Unwind@1005b1e0` | +| `Unwind@1005b1eb` | `1005b1eb` | `Unwind@1005b1eb` | +| `Unwind@1005b1f6` | `1005b1f6` | `Unwind@1005b1f6` | +| `Unwind@1005b201` | `1005b201` | `Unwind@1005b201` | +| `Unwind@1005b20c` | `1005b20c` | `Unwind@1005b20c` | +| `Unwind@1005b21a` | `1005b21a` | `Unwind@1005b21a` | +| `Unwind@1005b228` | `1005b228` | `Unwind@1005b228` | +| `Unwind@1005b236` | `1005b236` | `Unwind@1005b236` | +| `Unwind@1005b244` | `1005b244` | `Unwind@1005b244` | +| `Unwind@1005b252` | `1005b252` | `Unwind@1005b252` | +| `Unwind@1005b25a` | `1005b25a` | `Unwind@1005b25a` | +| `Unwind@1005b262` | `1005b262` | `Unwind@1005b262` | +| `Unwind@1005b26a` | `1005b26a` | `Unwind@1005b26a` | +| `Unwind@1005b272` | `1005b272` | `Unwind@1005b272` | +| `Unwind@1005b27a` | `1005b27a` | `Unwind@1005b27a` | +| `Unwind@1005b282` | `1005b282` | `Unwind@1005b282` | +| `Unwind@1005b28a` | `1005b28a` | `Unwind@1005b28a` | +| `Unwind@1005b292` | `1005b292` | `Unwind@1005b292` | +| `Unwind@1005b29a` | `1005b29a` | `Unwind@1005b29a` | +| `Unwind@1005b2c0` | `1005b2c0` | `Unwind@1005b2c0` | +| `Unwind@1005b2c8` | `1005b2c8` | `Unwind@1005b2c8` | +| `Unwind@1005b2d0` | `1005b2d0` | `Unwind@1005b2d0` | +| `Unwind@1005b2db` | `1005b2db` | `Unwind@1005b2db` | +| `Unwind@1005b2e3` | `1005b2e3` | `Unwind@1005b2e3` | +| `Unwind@1005b310` | `1005b310` | `Unwind@1005b310` | +| `Unwind@1005b318` | `1005b318` | `Unwind@1005b318` | +| `Unwind@1005b320` | `1005b320` | `Unwind@1005b320` | +| `Unwind@1005b350` | `1005b350` | `Unwind@1005b350` | +| `Unwind@1005b358` | `1005b358` | `Unwind@1005b358` | +| `Unwind@1005b360` | `1005b360` | `Unwind@1005b360` | +| `Unwind@1005b390` | `1005b390` | `Unwind@1005b390` | +| `Unwind@1005b398` | `1005b398` | `Unwind@1005b398` | +| `Unwind@1005b3a3` | `1005b3a3` | `Unwind@1005b3a3` | +| `Unwind@1005b3ae` | `1005b3ae` | `Unwind@1005b3ae` | +| `Unwind@1005b3b9` | `1005b3b9` | `Unwind@1005b3b9` | +| `Unwind@1005b3c4` | `1005b3c4` | `Unwind@1005b3c4` | +| `Unwind@1005b3d2` | `1005b3d2` | `Unwind@1005b3d2` | +| `Unwind@1005b3da` | `1005b3da` | `Unwind@1005b3da` | +| `Unwind@1005b3e8` | `1005b3e8` | `Unwind@1005b3e8` | +| `Unwind@1005b3f0` | `1005b3f0` | `Unwind@1005b3f0` | +| `Unwind@1005b3f8` | `1005b3f8` | `Unwind@1005b3f8` | +| `Unwind@1005b406` | `1005b406` | `Unwind@1005b406` | +| `Unwind@1005b40e` | `1005b40e` | `Unwind@1005b40e` | +| `Unwind@1005b416` | `1005b416` | `Unwind@1005b416` | +| `Unwind@1005b424` | `1005b424` | `Unwind@1005b424` | +| `Unwind@1005b42c` | `1005b42c` | `Unwind@1005b42c` | +| `Unwind@1005b434` | `1005b434` | `Unwind@1005b434` | +| `Unwind@1005b442` | `1005b442` | `Unwind@1005b442` | +| `Unwind@1005b44b` | `1005b44b` | `Unwind@1005b44b` | +| `Unwind@1005b454` | `1005b454` | `Unwind@1005b454` | +| `Unwind@1005b45d` | `1005b45d` | `Unwind@1005b45d` | +| `Unwind@1005b490` | `1005b490` | `Unwind@1005b490` | +| `Unwind@1005b4c0` | `1005b4c0` | `Unwind@1005b4c0` | +| `Unwind@1005b4f0` | `1005b4f0` | `Unwind@1005b4f0` | +| `Unwind@1005b520` | `1005b520` | `Unwind@1005b520` | +| `Unwind@1005b550` | `1005b550` | `Unwind@1005b550` | +| `Unwind@1005b5a0` | `1005b5a0` | `Unwind@1005b5a0` | +| `Unwind@1005b5a8` | `1005b5a8` | `Unwind@1005b5a8` | +| `Unwind@1005b5d0` | `1005b5d0` | `Unwind@1005b5d0` | +| `Unwind@1005b600` | `1005b600` | `Unwind@1005b600` | +| `Unwind@1005b630` | `1005b630` | `Unwind@1005b630` | +| `Unwind@1005b660` | `1005b660` | `Unwind@1005b660` | +| `Unwind@1005b690` | `1005b690` | `Unwind@1005b690` | +| `Unwind@1005b6c0` | `1005b6c0` | `Unwind@1005b6c0` | +| `Unwind@1005b6cb` | `1005b6cb` | `Unwind@1005b6cb` | +| `Unwind@1005b6f0` | `1005b6f0` | `Unwind@1005b6f0` | +| `Unwind@1005b6fb` | `1005b6fb` | `Unwind@1005b6fb` | +| `Unwind@1005b720` | `1005b720` | `Unwind@1005b720` | +| `Unwind@1005b728` | `1005b728` | `Unwind@1005b728` | +| `Unwind@1005b730` | `1005b730` | `Unwind@1005b730` | +| `Unwind@1005b738` | `1005b738` | `Unwind@1005b738` | +| `Unwind@1005b740` | `1005b740` | `Unwind@1005b740` | +| `Unwind@1005b770` | `1005b770` | `Unwind@1005b770` | +| `Unwind@1005b778` | `1005b778` | `Unwind@1005b778` | +| `Unwind@1005b7a0` | `1005b7a0` | `Unwind@1005b7a0` | +| `Unwind@1005b7a8` | `1005b7a8` | `Unwind@1005b7a8` | +| `Unwind@1005b7d0` | `1005b7d0` | `Unwind@1005b7d0` | +| `Unwind@1005b7d8` | `1005b7d8` | `Unwind@1005b7d8` | +| `Unwind@1005b800` | `1005b800` | `Unwind@1005b800` | +| `Unwind@1005b830` | `1005b830` | `Unwind@1005b830` | +| `Unwind@1005b83e` | `1005b83e` | `Unwind@1005b83e` | +| `Unwind@1005b84c` | `1005b84c` | `Unwind@1005b84c` | +| `Unwind@1005b85a` | `1005b85a` | `Unwind@1005b85a` | +| `Unwind@1005b868` | `1005b868` | `Unwind@1005b868` | +| `Unwind@1005b876` | `1005b876` | `Unwind@1005b876` | +| `Unwind@1005b884` | `1005b884` | `Unwind@1005b884` | +| `Unwind@1005b892` | `1005b892` | `Unwind@1005b892` | +| `Unwind@1005b8a0` | `1005b8a0` | `Unwind@1005b8a0` | +| `Unwind@1005b8ae` | `1005b8ae` | `Unwind@1005b8ae` | +| `Unwind@1005b8bc` | `1005b8bc` | `Unwind@1005b8bc` | +| `Unwind@1005b8ca` | `1005b8ca` | `Unwind@1005b8ca` | +| `Unwind@1005b900` | `1005b900` | `Unwind@1005b900` | +| `Unwind@1005b930` | `1005b930` | `Unwind@1005b930` | +| `Unwind@1005b960` | `1005b960` | `Unwind@1005b960` | +| `Unwind@1005b990` | `1005b990` | `Unwind@1005b990` | +| `Unwind@1005b9c0` | `1005b9c0` | `Unwind@1005b9c0` | +| `Unwind@1005b9f0` | `1005b9f0` | `Unwind@1005b9f0` | +| `Unwind@1005ba20` | `1005ba20` | `Unwind@1005ba20` | +| `Unwind@1005ba2a` | `1005ba2a` | `Unwind@1005ba2a` | +| `Unwind@1005ba50` | `1005ba50` | `Unwind@1005ba50` | +| `Unwind@1005ba5a` | `1005ba5a` | `Unwind@1005ba5a` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | `1005ba8c` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | `1005baa0` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | `1005bab4` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | `1005bac8` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | `1005badc` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | `1005baf0` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | `1005bb04` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | `1005bb18` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | `1005bb2c` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | `1005bb40` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | `1005bb54` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | `1005bb68` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | `1005bb7c` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | `1005bb90` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | `1005bba4` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | `1005bbb8` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | `1005bbcc` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | `1005bbe0` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | `1005bbf4` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | `1005bc08` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | `1005bc1c` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | `1005bc30` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | `1005bc44` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | `1005bc58` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | `1005bc6c` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | `1005bc80` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | `1005bc94` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | `1005bca8` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | `1005bcbc` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | `1005bcd0` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | `1005bce4` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | +| `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | `1005bcf8` | `?A0xda2128e9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | +| `?A0xda2128e9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005bd0c` | `?A0xda2128e9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | `1005bf34` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | `1005bf48` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | `1005bf5c` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | `1005bf70` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | `1005bf84` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | `1005bf98` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | `1005bfac` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | `1005bfc0` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | `1005bfd4` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | `1005bfe8` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | `1005bffc` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | `1005c010` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | `1005c024` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | `1005c038` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | `1005c04c` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | `1005c060` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | `1005c074` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | `1005c088` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | `1005c09c` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | `1005c0b0` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | `1005c0c4` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | `1005c0d8` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | `1005c0ec` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | `1005c100` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | `1005c114` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | `1005c128` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | `1005c13c` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | `1005c150` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | `1005c164` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | `1005c178` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | `1005c18c` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | `1005c1a0` | `?A0xcc57d9b2.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | +| `?A0xcc57d9b2.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005c1b4` | `?A0xcc57d9b2.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | `1005c3e4` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | `1005c3f8` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | `1005c40c` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | `1005c420` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | `1005c434` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | `1005c448` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | `1005c45c` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | `1005c470` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | `1005c484` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | `1005c498` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | `1005c4ac` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | `1005c4c0` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | `1005c4d4` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | `1005c4e8` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | `1005c4fc` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | `1005c510` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | `1005c524` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | `1005c538` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | `1005c54c` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | `1005c560` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | `1005c574` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | `1005c588` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | `1005c59c` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | `1005c5b0` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | `1005c5c4` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | `1005c5d8` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | `1005c5ec` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | `1005c600` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | `1005c614` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | `1005c628` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | `1005c63c` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | `1005c650` | `?A0x4ac3ab1c.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | +| `?A0x4ac3ab1c.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005c664` | `?A0x4ac3ab1c.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | `1005c894` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | `1005c8a8` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | `1005c8bc` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | `1005c8d0` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | `1005c8e4` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | `1005c8f8` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | `1005c90c` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | `1005c920` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | `1005c934` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | `1005c948` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | `1005c95c` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | `1005c970` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | `1005c984` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | `1005c998` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | `1005c9ac` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | `1005c9c0` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | `1005c9d4` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | `1005c9e8` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | `1005c9fc` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | `1005ca10` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | `1005ca24` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | `1005ca38` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | `1005ca4c` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | `1005ca60` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | `1005ca74` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | `1005ca88` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | `1005ca9c` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | `1005cab0` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | `1005cac4` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | `1005cad8` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | `1005caec` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | +| `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | `1005cb00` | `?A0x6ea962a9.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | +| `?A0x6ea962a9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005cb14` | `?A0x6ea962a9.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | `1005cd44` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | `1005cd58` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | `1005cd6c` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | `1005cd80` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | `1005cd94` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | `1005cda8` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | `1005cdbc` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | `1005cdd0` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | `1005cde4` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | `1005cdf8` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | `1005ce0c` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | `1005ce20` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | `1005ce34` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | `1005ce48` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | `1005ce5c` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | `1005ce70` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | `1005ce84` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | `1005ce98` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | `1005ceac` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | `1005cec0` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | `1005ced4` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | `1005cee8` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | `1005cefc` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | `1005cf10` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | `1005cf24` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | `1005cf38` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | `1005cf4c` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | `1005cf60` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | `1005cf74` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | `1005cf88` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | `1005cf9c` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | +| `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | `1005cfb0` | `?A0x56a9090b.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | +| `?A0x56a9090b.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005cfc4` | `?A0x56a9090b.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | `1005d1f4` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@D@ATL@@2QQtagVARIANT@@DQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | `1005d208` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@E@ATL@@2QQtagVARIANT@@EQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | `1005d21c` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAD@ATL@@2QQtagVARIANT@@PADQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | `1005d230` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAE@ATL@@2QQtagVARIANT@@PAEQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | `1005d244` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@F@ATL@@2QQtagVARIANT@@FQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | `1005d258` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAF@ATL@@2QQtagVARIANT@@PAFQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | `1005d26c` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@G@ATL@@2QQtagVARIANT@@GQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | `1005d280` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAG@ATL@@2QQtagVARIANT@@PAGQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | `1005d294` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@H@ATL@@2QQtagVARIANT@@HQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | `1005d2a8` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAH@ATL@@2QQtagVARIANT@@PAHQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | `1005d2bc` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@I@ATL@@2QQtagVARIANT@@IQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | `1005d2d0` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAI@ATL@@2QQtagVARIANT@@PAIQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | `1005d2e4` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@J@ATL@@2QQtagVARIANT@@JQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | `1005d2f8` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAJ@ATL@@2QQtagVARIANT@@PAJQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | `1005d30c` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@K@ATL@@2QQtagVARIANT@@KQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | `1005d320` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAK@ATL@@2QQtagVARIANT@@PAKQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | `1005d334` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_J@ATL@@2QQtagVARIANT@@_JQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | `1005d348` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_J@ATL@@2QQtagVARIANT@@PA_JQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | `1005d35c` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@_K@ATL@@2QQtagVARIANT@@_KQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | `1005d370` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_K@ATL@@2QQtagVARIANT@@PA_KQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | `1005d384` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@M@ATL@@2QQtagVARIANT@@MQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | `1005d398` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAM@ATL@@2QQtagVARIANT@@PAMQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | `1005d3ac` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@N@ATL@@2QQtagVARIANT@@NQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | `1005d3c0` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAN@ATL@@2QQtagVARIANT@@PANQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | `1005d3d4` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PA_W@ATL@@2QQtagVARIANT@@PA_WQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | `1005d3e8` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPA_W@ATL@@2QQtagVARIANT@@PAPA_WQ3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | `1005d3fc` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIUnknown@@@ATL@@2QQtagVARIANT@@PAUIUnknown@@Q3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | `1005d410` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIUnknown@@@ATL@@2QQtagVARIANT@@PAPAUIUnknown@@Q3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | `1005d424` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAUIDispatch@@@ATL@@2QQtagVARIANT@@PAUIDispatch@@Q3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | `1005d438` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PAPAUIDispatch@@@ATL@@2QQtagVARIANT@@PAPAUIDispatch@@Q3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | `1005d44c` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@TtagCY@@@ATL@@2QQtagVARIANT@@TtagCY@@Q3@@@YMXXZ` | +| `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | `1005d460` | `?A0xa8d5f844.??__E?pmField@?$CVarTypeInfo@PATtagCY@@@ATL@@2QQtagVARIANT@@PATtagCY@@Q3@@@YMXXZ` | +| `?A0xa8d5f844.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005d474` | `?A0xa8d5f844.??__E_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0xd56818f8.??__E?Initialized@CurrentDomain@@@$$Q2HA@@YMXXZ` | `1005d744` | `?A0xd56818f8.??__E?Initialized@CurrentDomain@@@$$Q2HA@@YMXXZ` | +| `?A0xd56818f8.??__E?Uninitialized@CurrentDomain@@@$$Q2HA@@YMXXZ` | `1005d758` | `?A0xd56818f8.??__E?Uninitialized@CurrentDomain@@@$$Q2HA@@YMXXZ` | +| `?A0xd56818f8.??__E?IsDefaultDomain@CurrentDomain@@@$$Q2_NA@@YMXXZ` | `1005d76c` | `?A0xd56818f8.??__E?IsDefaultDomain@CurrentDomain@@@$$Q2_NA@@YMXXZ` | +| `?A0xd56818f8.??__E?InitializedVtables@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | `1005d780` | `?A0xd56818f8.??__E?InitializedVtables@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | +| `?A0xd56818f8.??__E?InitializedNative@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | `1005d794` | `?A0xd56818f8.??__E?InitializedNative@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | +| `?A0xd56818f8.??__E?InitializedPerProcess@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | `1005d7a8` | `?A0xd56818f8.??__E?InitializedPerProcess@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | +| `?A0xd56818f8.??__E?InitializedPerAppDomain@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | `1005d7bc` | `?A0xd56818f8.??__E?InitializedPerAppDomain@CurrentDomain@@@$$Q2W4State@Progress@2@A@@YMXXZ` | +| `?A0xda2128e9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005d7fc` | `?A0xda2128e9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `??__FfsLogger@?1??_GetFSLogger@CLoggerSelect@@SAAAVCWrapLogger@@XZ@YMXXZ` | `1005d824` | `??__FfsLogger@?1??_GetFSLogger@CLoggerSelect@@SAAAVCWrapLogger@@XZ@YMXXZ` | +| `?A0xcc57d9b2.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005d894` | `?A0xcc57d9b2.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0x4ac3ab1c.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005d8b4` | `?A0x4ac3ab1c.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0x6ea962a9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005d8d4` | `?A0x6ea962a9.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0x56a9090b.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005d8f4` | `?A0x56a9090b.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `?A0xa8d5f844.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | `1005d914` | `?A0xa8d5f844.??__F_AtlReleaseManagedClassFactories@ATL@@YMXXZ` | +| `CLI_METADATA_HEADER` | `1006a720` | `` | +| `CLI_Stream_#~` | `1006a78c` | `` | +| `CLI_Stream_#Strings` | `100800dc` | `` | +| `CLI_Stream_#US` | `1009cf40` | `` | +| `CLI_Stream_#GUID` | `1009d508` | `` | +| `CLI_Stream_#Blob` | `1009d518` | `` | +| `Rsrc_REGISTRY_65_409` | `100ce19c` | `` | +| `Rsrc_TYPELIB_1_409` | `100ce434` | `` | +| `Rsrc_StringTable_7_409` | `100dff84` | `` | +| `Rsrc_Version_1_409` | `100dffc0` | `` | +| `Rsrc_Manifest_2_409` | `100e03b4` | `` | +| `ExceptionList` | `ffdff000` | `` | +| `StackBase` | `ffdff004` | `` | +| `StackLimit` | `ffdff008` | `` | +| `SubSystemTib` | `ffdff00c` | `` | +| `FiberData` | `ffdff010` | `` | +| `ArbitraryUserPointer` | `ffdff014` | `` | +| `Self` | `ffdff018` | `` | +| `EnvironmentPointer` | `ffdff01c` | `` | +| `ClientId` | `ffdff020` | `` | +| `ActiveRpcHandle` | `ffdff028` | `` | +| `ThreadLocalStoragePointer` | `ffdff02c` | `` | +| `ProcessEnvironmentBlock` | `ffdff030` | `` | +| `LastErrorValue` | `ffdff034` | `` | +| `CountOfOwnedCriticalSections` | `ffdff038` | `` | +| `CsrClientThread` | `ffdff03c` | `` | +| `Win32ThreadInfo` | `ffdff040` | `` | +| `User32Reserved` | `ffdff044` | `` | +| `UserReserved` | `ffdff0ac` | `` | +| `WOW32Reserved` | `ffdff0c0` | `` | +| `CurrentLocale` | `ffdff0c4` | `` | +| `FpSoftwareStatusRegister` | `ffdff0c8` | `` | +| `SystemReserved1` | `ffdff0cc` | `` | +| `ExceptionCode` | `ffdff1a4` | `` | +| `ActivationContextStackPointer` | `ffdff1a8` | `` | +| `SpareBytes` | `ffdff1ac` | `` | +| `TxFsContext` | `ffdff1d0` | `` | +| `GdiTebBatch` | `ffdff1d4` | `` | +| `RealClientId` | `ffdff6b4` | `` | +| `GdiCachedProcessHandle` | `ffdff6bc` | `` | +| `GdiClientPID` | `ffdff6c0` | `` | +| `GdiCLientTID` | `ffdff6c4` | `` | +| `GdiThreadLocalInfo` | `ffdff6c8` | `` | +| `Win32ClientInfo` | `ffdff6cc` | `` | +| `glDispatchTable` | `ffdff7c4` | `` | +| `glReserved1` | `ffdffb68` | `` | +| `glReserved2` | `ffdffbdc` | `` | +| `glSectionInfo` | `ffdffbe0` | `` | +| `glSection` | `ffdffbe4` | `` | +| `glTable` | `ffdffbe8` | `` | +| `glCurrentRC` | `ffdffbec` | `` | +| `glContext` | `ffdffbf0` | `` | +| `LastStatusValue` | `ffdffbf4` | `` | +| `StaticUnicodeBuffer` | `ffdffc00` | `` | +| `DeallocationStack` | `ffdffe0c` | `` | +| `TlsSlots` | `ffdffe10` | `` | +| `TlsLinks.Flink` | `ffdfff10` | `` | +| `TlsLinks.Blink` | `ffdfff14` | `` | +| `Vdm` | `ffdfff18` | `` | +| `ReservedForNtRpc` | `ffdfff1c` | `` | +| `DbgSsReserved` | `ffdfff20` | `` | +| `HardErrorMode` | `ffdfff28` | `` | +| `Instrumentation` | `ffdfff2c` | `` | +| `ActivityId` | `ffdfff50` | `` | +| `SubProcessTag` | `ffdfff60` | `` | +| `EtwLocalData` | `ffdfff64` | `` | +| `EtwTraceData` | `ffdfff68` | `` | +| `WinSockData` | `ffdfff6c` | `` | +| `GdiBatchCount` | `ffdfff70` | `` | +| `IdealProcessorValue` | `ffdfff74` | `` | +| `GuaranteedStackBytes` | `ffdfff78` | `` | +| `ReservedForPerf` | `ffdfff7c` | `` | +| `ReservedForOle` | `ffdfff80` | `` | +| `WaitingOnLoaderLock` | `ffdfff84` | `` | +| `SavedPriorityState` | `ffdfff88` | `` | +| `SoftPatchPtr1` | `ffdfff8c` | `` | +| `ThreadPoolData` | `ffdfff90` | `` | +| `TlsExpansionSlots` | `ffdfff94` | `` | +| `MuiGeneration` | `ffdfff98` | `` | +| `IsImpersonating` | `ffdfff9c` | `` | +| `NlsCache` | `ffdfffa0` | `` | +| `pShimData` | `ffdfffa4` | `` | +| `HeapVirtualAffinity` | `ffdfffa8` | `` | +| `CurrentTransactionHandle` | `ffdfffac` | `` | +| `ActiveFrame` | `ffdfffb0` | `` | +| `FlsData` | `ffdfffb4` | `` | +| `PreferredLanguages` | `ffdfffb8` | `` | +| `UserPrefLanguages` | `ffdfffbc` | `` | +| `MergedPrefLanguages` | `ffdfffc0` | `` | +| `MuiImpersonation` | `ffdfffc4` | `` | +| `CrossTebFlags` | `ffdfffc8` | `` | +| `SameTebFlags` | `ffdfffca` | `` | +| `TxnScopeEnterCallback` | `ffdfffcc` | `` | +| `TxnScopeExitCallback` | `ffdfffd0` | `` | +| `TxnScopeContext` | `ffdfffd4` | `` | +| `LockCount` | `ffdfffd8` | `` | +| `ResourceRetValue` | `ffdfffe0` | `` | + +## Interesting Strings and Referencing Functions + +| Address | String | Referencing Functions | +| ---: | --- | --- | +| `1005fe88` | `Error in CDataClientCLI::RegisterItems <%s> Namespace[%s]` | `` | +| `1005ff00` | `Error in CDataClientCLI::UnregisterItems <%s> Namespace[%s]` | `` | +| `1005ff78` | `CDataClientCLI::UnregisterItems accessing Items.. Namespace[%s]` | `` | +| `10060398` | `Error in DataClientCLI::PublishWriteComplete <%s> Namespace[%s]` | `` | +| `10061640` | `Start DataClientProxy::RegisterItems returns: [0x%x] [galaxy %s]` | `` | +| `100616c8` | `Error on DataClientProxy::RegisterItems dataclient was null! [galaxy %s]` | `` | +| `10061760` | `Error on RegisterItems %s [galaxy %s]` | `` | +| `100617b0` | `DataClientProxy::RegisterItems NULL in items!` | `` | +| `10061810` | `Start DataClientProxy::UnregisterItems returns: [0x%x] [galaxy %s]` | `` | +| `10061898` | `Error on DataClientProxy::UnregisterItems dataclient was null! [galaxy %s]` | `` | +| `10061930` | `Error on DataClientProxy::UnregisterItems %s [galaxy %s]` | `` | +| `10061c80` | `Start DataClientProxy::WriteVerified returns: [0x%x] [galaxy %s]` | `` | +| `10061d08` | `Error on DataClientProxy::WriteVerified dataclient was null! [galaxy %s]` | `` | +| `10061da0` | `Error on DataClientProxy::WriteVerified %s [galaxy %s]` | `` | +| `10061e10` | `Start DataClientProxy::WriteSecured returns: [0x%x] [galaxy %s]` | `` | +| `10061e98` | `Error on DataClientProxy::WriteSecured dataclient was null! [galaxy %s]` | `` | +| `10061f30` | `Error on DataClientProxy::WriteSecured %s [galaxy %s]` | `` | +| `10062220` | `Start DataClientProxy::PublishWriteComplete returns: [0x%x] [galaxy %s]` | `` | +| `100622b8` | `Error on DataClientProxy::PublishWriteComplete dataclient was null! [galaxy %s]` | `` | +| `10062360` | `Error on DataClientProxy::PublishWriteComplete %s [galaxy %s]` | `` | +| `10063288` | `CDataConsumer::Write2 ENTER` | `FUN_1001c700@1001c700` | +| `100654e8` | ` [%s] - UnregisterItems return 0x%x` | `FUN_100372f0@100372f0` | +| `10065710` | ` [%s] - PublishWriteComplete return 0x%x ` | `FUN_10037760@10037760` | +| `10065860` | `NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete SUCCEEDED ` | `FUN_10037760@10037760` | +| `100658f0` | `NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete SUCCEEDED. lWriteSize[%d]` | `FUN_10037760@10037760` | +| `100659a0` | `NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete returned` | `FUN_10037760@10037760` | +| `10065a30` | `NameSpace::ProcessWriteCompleteWorker - sending PublishWriteComplete` | `FUN_10037760@10037760` | +| `10065da0` | `NameSpace::ProcessWriteCompleteWorker - Sending write to dataClientCLI. ` | `FUN_10037760@10037760` | +| `10066bb0` | ` [%s] - RegisterItems return 0x%x` | `FUN_1003adf0@1003adf0` | +| `10067110` | `SOFTWARE\\ArchestrA\\Framework\\Nmx` | `FUN_1003bf50@1003bf50` | +| `10068a50` | `NamespaceMgr::FillWriteUserToken - WriteVerified - User GUID [%s] :: Verified GUID [%s] :: Verified Flag [%d]` | `FUN_10049070@10049070` | + +## Interesting API Callers + +| Caller | Entry | Call Targets | +| --- | ---: | --- | +| `FUN_10008760` | `10008760` | `CoCreateInstance` | +| `FUN_10008c40` | `10008c40` | `SysFreeString` | +| `FUN_10008cb0` | `10008cb0` | `SysFreeString` | +| `FUN_10009480` | `10009480` | `SysAllocString` | +| `FUN_100095b0` | `100095b0` | `SysFreeString` | +| `FUN_10009860` | `10009860` | `SysFreeString` | +| `FUN_10009990` | `10009990` | `SysFreeString` | +| `FUN_1000a2a0` | `1000a2a0` | `CoCreateInstance\`, \`SysAllocString\`, \`SysFreeString` | +| `FUN_10016e30` | `10016e30` | `memcpy` | +| `FUN_10016e50` | `10016e50` | `memmove` | +| `FUN_10016f30` | `10016f30` | `memcpy_s` | +| `FUN_10017000` | `10017000` | `SafeArrayGetLBound` | +| `FUN_10017030` | `10017030` | `SafeArrayGetLBound\`, \`SafeArrayGetUBound` | +| `FUN_10017090` | `10017090` | `SafeArrayGetUBound` | +| `FUN_100170f0` | `100170f0` | `SafeArrayAccessData\`, \`SafeArrayGetLBound\`, \`SafeArrayGetUBound` | +| `FUN_100171c0` | `100171c0` | `SafeArrayAccessData\`, \`SafeArrayGetLBound\`, \`SafeArrayGetUBound` | +| `FUN_10017260` | `10017260` | `SafeArrayAccessData\`, \`SafeArrayCopy\`, \`SafeArrayCreateEx\`, \`SafeArrayDestroy\`, \`SafeArrayUnaccessData` | +| `FUN_10017360` | `10017360` | `SafeArrayAccessData\`, \`SafeArrayCopy\`, \`SafeArrayCreateEx\`, \`SafeArrayDestroy\`, \`SafeArrayUnaccessData` | +| `FUN_10017470` | `10017470` | `SafeArrayAccessData\`, \`SafeArrayCopy\`, \`SafeArrayCreateEx\`, \`SafeArrayDestroy\`, \`SafeArrayUnaccessData` | +| `FUN_10017590` | `10017590` | `SysFreeString` | +| `FUN_100175e0` | `100175e0` | `SafeArrayAccessData\`, \`SafeArrayCopy\`, \`SafeArrayCreateEx\`, \`SafeArrayDestroy\`, \`SafeArrayUnaccessData` | +| `FUN_100176f0` | `100176f0` | `SafeArrayAccessData\`, \`SafeArrayCopy\`, \`SafeArrayCreateEx\`, \`SafeArrayDestroy\`, \`SafeArrayUnaccessData` | +| `FUN_10017800` | `10017800` | `SafeArrayAccessData\`, \`SafeArrayCopy\`, \`SafeArrayCreateEx\`, \`SafeArrayDestroy\`, \`SafeArrayUnaccessData` | +| `FUN_10017910` | `10017910` | `SafeArrayAccessData\`, \`SafeArrayCopy\`, \`SafeArrayCreateEx\`, \`SafeArrayDestroy\`, \`SafeArrayUnaccessData` | +| `FUN_10017a20` | `10017a20` | `SysFreeString` | +| `FUN_10017d60` | `10017d60` | `SysAllocString` | +| `FUN_10017da0` | `10017da0` | `SysAllocStringByteLen` | +| `FUN_10017e40` | `10017e40` | `SysFreeString` | +| `FUN_10017f80` | `10017f80` | `memset` | +| `FUN_10018140` | `10018140` | `memset` | +| `FUN_10018300` | `10018300` | `memcpy` | +| `FUN_10018320` | `10018320` | `memmove` | +| `FUN_100184b0` | `100184b0` | `memset` | +| `FUN_10018530` | `10018530` | `memset` | +| `FUN_100185b0` | `100185b0` | `memset` | +| `FUN_10018630` | `10018630` | `memset` | +| `FUN_10018820` | `10018820` | `SysFreeString` | +| `FUN_10019470` | `10019470` | `SafeArrayUnlock` | +| `FUN_10019490` | `10019490` | `SafeArrayGetLBound\`, \`SafeArrayGetUBound` | +| `FUN_10019520` | `10019520` | `SafeArrayDestroy\`, \`SafeArrayUnlock` | +| `FUN_10019550` | `10019550` | `SafeArrayLock\`, \`SafeArrayRedim\`, \`SafeArrayUnlock` | +| `FUN_100195c0` | `100195c0` | `SafeArrayCreate\`, \`SafeArrayLock` | +| `FUN_10019620` | `10019620` | `SysAllocStringByteLen` | +| `FUN_10019640` | `10019640` | `SysAllocStringLen\`, \`SysFreeString` | +| `FUN_10019790` | `10019790` | `SysAllocString` | +| `FUN_10019840` | `10019840` | `SysAllocStringByteLen` | +| `FUN_10019960` | `10019960` | `SysFreeString` | +| `FUN_10019ac0` | `10019ac0` | `memset` | +| `FUN_1001a000` | `1001a000` | `SysAllocString\`, \`SysFreeString\`, \`memset` | +| `FUN_1001a960` | `1001a960` | `memcpy` | +| `FUN_1001ac50` | `1001ac50` | `memcpy` | +| `FUN_1001adb0` | `1001adb0` | `memcpy` | +| `FUN_1001b230` | `1001b230` | `SafeArrayDestroy\`, \`SafeArrayUnlock` | +| `FUN_1001b260` | `1001b260` | `SafeArrayLock\`, \`SafeArrayRedim\`, \`SafeArrayUnlock` | +| `FUN_1001b2e0` | `1001b2e0` | `SafeArrayCreate\`, \`SafeArrayLock` | +| `FUN_1001b340` | `1001b340` | `SysAllocStringByteLen` | +| `FUN_1001b380` | `1001b380` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_1001b450` | `1001b450` | `SysFreeString` | +| `FUN_1001b620` | `1001b620` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_1001b850` | `1001b850` | `SysAllocStringByteLen\`, \`SysFreeString` | +| `FUN_1001baa0` | `1001baa0` | `memmove` | +| `FUN_1001bbc0` | `1001bbc0` | `memcpy` | +| `FUN_1001be80` | `1001be80` | `memcpy` | +| `FUN_1001bfe0` | `1001bfe0` | `memcpy` | +| `FUN_1001c8f0` | `1001c8f0` | `SafeArrayCreate\`, \`SafeArrayGetLBound\`, \`SafeArrayGetUBound\`, \`SafeArrayLock` | +| `FUN_1001c9f0` | `1001c9f0` | `SysFreeString` | +| `FUN_1001cfd0` | `1001cfd0` | `memcpy` | +| `FUN_1001d0d0` | `1001d0d0` | `memcpy` | +| `FUN_1001d1e0` | `1001d1e0` | `memcpy` | +| `FUN_1001d3c0` | `1001d3c0` | `SafeArrayUnlock` | +| `FUN_1001d530` | `1001d530` | `SysFreeString` | +| `FUN_1001d5d0` | `1001d5d0` | `memcpy` | +| `FUN_1001d7d0` | `1001d7d0` | `SysFreeString` | +| `FUN_1001d820` | `1001d820` | `SysFreeString` | +| `FUN_1001db30` | `1001db30` | `SysFreeString` | +| `FUN_1001dd20` | `1001dd20` | `memmove` | +| `FUN_1001e3f0` | `1001e3f0` | `SysFreeString` | +| `FUN_1001ec60` | `1001ec60` | `SysFreeString` | +| `FUN_1001f3f0` | `1001f3f0` | `SysAllocString\`, \`SysAllocStringByteLen\`, \`SysFreeString\`, \`memset` | +| `FUN_10024090` | `10024090` | `SysFreeString` | +| `FUN_10026550` | `10026550` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10028800` | `10028800` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10033220` | `10033220` | `memset` | +| `FUN_10033430` | `10033430` | `memset` | +| `FUN_100344f0` | `100344f0` | `memcpy` | +| `FUN_10035a90` | `10035a90` | `SysFreeString` | +| `FUN_100361c0` | `100361c0` | `SysFreeString` | +| `FUN_100368e0` | `100368e0` | `memcpy\`, \`memset` | +| `FUN_10037760` | `10037760` | `memcpy\`, \`memset` | +| `FUN_10039430` | `10039430` | `memcpy\`, \`memset` | +| `FUN_1003ceb0` | `1003ceb0` | `CoCreateInstance` | +| `FUN_1003eaa0` | `1003eaa0` | `SysFreeString` | +| `FUN_10042a00` | `10042a00` | `CoCreateInstance\`, \`SysFreeString` | +| `FUN_100446d0` | `100446d0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_10044bf0` | `10044bf0` | `memcpy` | +| `FUN_10045300` | `10045300` | `memcpy` | +| `FUN_10045a20` | `10045a20` | `memcpy` | +| `FUN_10045db0` | `10045db0` | `memcpy` | +| `FUN_10046590` | `10046590` | `memcpy` | +| `FUN_100469f0` | `100469f0` | `memcpy` | +| `FUN_10047050` | `10047050` | `SysFreeString` | +| `FUN_100473a0` | `100473a0` | `SysFreeString` | +| `FUN_10047430` | `10047430` | `SysFreeString` | +| `FUN_10047fd0` | `10047fd0` | `SysFreeString` | +| `FUN_10048060` | `10048060` | `SysFreeString` | +| `FUN_100480f0` | `100480f0` | `SysFreeString` | +| `FUN_10048190` | `10048190` | `SysFreeString` | +| `FUN_10048320` | `10048320` | `SysFreeString` | +| `FUN_100483b0` | `100483b0` | `SysFreeString` | +| `FUN_10048530` | `10048530` | `SysAllocStringByteLen` | +| `FUN_100485c0` | `100485c0` | `SysAllocString` | +| `FUN_10048620` | `10048620` | `SysAllocString` | +| `FUN_10048690` | `10048690` | `CoCreateInstance\`, \`SysFreeString` | +| `FUN_10048af0` | `10048af0` | `SysFreeString` | +| `FUN_10048d90` | `10048d90` | `SysFreeString` | +| `FUN_10048e20` | `10048e20` | `SysFreeString` | +| `FUN_10049070` | `10049070` | `SysFreeString` | +| `FUN_100498f0` | `100498f0` | `SysFreeString` | +| `FUN_10049980` | `10049980` | `SysFreeString` | +| `FUN_1004b520` | `1004b520` | `SysAllocString` | +| `FUN_1004b860` | `1004b860` | `SysAllocString\`, \`SysFreeString\`, \`memcpy` | +| `FUN_1004c990` | `1004c990` | `SysFreeString` | +| `FUN_1004cba0` | `1004cba0` | `SysFreeString` | +| `FUN_1004d1b0` | `1004d1b0` | `SysAllocString\`, \`SysFreeString` | +| `FUN_1004e160` | `1004e160` | `AtlInternalQueryInterface` | +| `FUN_1004e2e0` | `1004e2e0` | `AtlInternalQueryInterface` | +| `FUN_1004e400` | `1004e400` | `AtlInternalQueryInterface` | +| `FUN_1004eb00` | `1004eb00` | `CoCreateInstance` | +| `FUN_1004f820` | `1004f820` | `AtlInternalQueryInterface` | +| `FUN_1004f840` | `1004f840` | `AtlInternalQueryInterface` | +| `FUN_1004fd30` | `1004fd30` | `memset` | +| `FUN_1004fe00` | `1004fe00` | `memcpy` | +| `FUN_10050108` | `10050108` | `memset` | +| `memmove_s` | `100501b4` | `memmove_s` | +| `RemoveAt` | `100501d5` | `memmove_s` | +| `FUN_1005026a` | `1005026a` | `memset` | +| `_com_invoke_helper` | `10050690` | `VariantChangeType\`, \`VariantClear\`, \`VariantInit\`, \`memset` | +| `_com_handle_excepinfo` | `10050d80` | `SysFreeString` | +| `FUN_1005d930` | `1005d930` | `memset` | + diff --git a/analysis/ghidra/exports/aaMxDataConsumer.dll.string-refs.tsv b/analysis/ghidra/exports/aaMxDataConsumer.dll.string-refs.tsv new file mode 100644 index 0000000..aa7dc9a --- /dev/null +++ b/analysis/ghidra/exports/aaMxDataConsumer.dll.string-refs.tsv @@ -0,0 +1,12 @@ +string_address string_value ref_from ref_function +10063288 CDataConsumer::Write2 ENTER 1001c81c FUN_1001c700@1001c700 +100654e8 [%s] - UnregisterItems return 0x%x 100375bc FUN_100372f0@100372f0 +10065710 [%s] - PublishWriteComplete return 0x%x 10038c0a FUN_10037760@10037760 +10065860 NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete SUCCEEDED 10038731 FUN_10037760@10037760 +100658f0 NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete SUCCEEDED. lWriteSize[%d] 100385d4 FUN_10037760@10037760 +100659a0 NameSpace::ProcessWriteCompleteWorker - PublishWriteComplete returned 100384e4 FUN_10037760@10037760 +10065a30 NameSpace::ProcessWriteCompleteWorker - sending PublishWriteComplete 100383d3 FUN_10037760@10037760 +10065da0 NameSpace::ProcessWriteCompleteWorker - Sending write to dataClientCLI. 10037a16 FUN_10037760@10037760 +10066bb0 [%s] - RegisterItems return 0x%x 1003b1c4 FUN_1003adf0@1003adf0 +10067110 SOFTWARE\ArchestrA\Framework\Nmx 1003c0e4 FUN_1003bf50@1003bf50 +10068a50 NamespaceMgr::FillWriteUserToken - WriteVerified - User GUID [%s] :: Verified GUID [%s] :: Verified Flag [%d] 100492fc FUN_10049070@10049070 diff --git a/analysis/ghidra/scripts/DecompileSelectedFunctions.java b/analysis/ghidra/scripts/DecompileSelectedFunctions.java new file mode 100644 index 0000000..d078602 --- /dev/null +++ b/analysis/ghidra/scripts/DecompileSelectedFunctions.java @@ -0,0 +1,54 @@ +import ghidra.app.decompiler.DecompInterface; +import ghidra.app.decompiler.DecompileResults; +import ghidra.app.script.GhidraScript; +import ghidra.program.model.address.Address; +import ghidra.program.model.listing.Function; +import java.io.File; +import java.io.PrintWriter; + +public class DecompileSelectedFunctions extends GhidraScript { + @Override + protected void run() throws Exception { + String[] args = getScriptArgs(); + if (args.length < 2) { + println("usage: DecompileSelectedFunctions [...]"); + return; + } + + File output = new File(args[0]); + output.getParentFile().mkdirs(); + + DecompInterface decompiler = new DecompInterface(); + decompiler.openProgram(currentProgram); + + long imageBase = currentProgram.getImageBase().getOffset(); + try (PrintWriter writer = new PrintWriter(output, "UTF-8")) { + writer.printf("# %s selected decompile%n%n", currentProgram.getName()); + for (int i = 1; i < args.length; i++) { + long raw = Long.decode(args[i]); + long absolute = raw < imageBase ? imageBase + raw : raw; + Address address = toAddr(absolute); + Function function = getFunctionContaining(address); + if (function == null) { + writer.printf("## %s%n%nNo function at %s.%n%n", args[i], address); + continue; + } + + writer.printf("## %s at %s%n%n", function.getName(), function.getEntryPoint()); + writer.printf("Signature: `%s`%n%n", function.getSignature()); + DecompileResults results = decompiler.decompileFunction(function, 90, monitor); + if (!results.decompileCompleted()) { + writer.printf("Decompile failed: %s%n%n", results.getErrorMessage()); + continue; + } + + writer.println("```c"); + writer.println(results.getDecompiledFunction().getC()); + writer.println("```"); + writer.println(); + } + } finally { + decompiler.dispose(); + } + } +} diff --git a/analysis/ghidra/scripts/MxNmxExport.java b/analysis/ghidra/scripts/MxNmxExport.java new file mode 100644 index 0000000..a54b140 --- /dev/null +++ b/analysis/ghidra/scripts/MxNmxExport.java @@ -0,0 +1,438 @@ +// Exports compact Ghidra facts for MXAccess/LMX/NMX reverse-engineering. +// The output is intentionally metadata-oriented: functions, references, +// imports, strings, and call relationships, not full proprietary decompiled +// source listings. + +import ghidra.app.script.GhidraScript; +import ghidra.program.model.address.Address; +import ghidra.program.model.listing.Data; +import ghidra.program.model.listing.DataIterator; +import ghidra.program.model.listing.Function; +import ghidra.program.model.listing.FunctionIterator; +import ghidra.program.model.listing.Instruction; +import ghidra.program.model.listing.InstructionIterator; +import ghidra.program.model.mem.MemoryBlock; +import ghidra.program.model.symbol.Reference; +import ghidra.program.model.symbol.Symbol; +import ghidra.program.model.symbol.SymbolIterator; +import ghidra.program.model.symbol.SymbolTable; + +import java.io.File; +import java.io.FileWriter; +import java.io.PrintWriter; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.Comparator; +import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedHashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +public class MxNmxExport extends GhidraScript { + private final List interestingStringNeedles = Arrays.asList( + "CLMXProxyServer::Write", + "CLMXProxyServer::Advise", + "CLMXProxyServer::AdviseSupervisory", + "CLMXProxyServer::Register", + "CLMXProxyServer::AddItem", + "Fire_OnWriteComplete", + "Fire_OnDataChange", + "RemoteWrite", + "WriteSecured", + "WriteVerified", + "PrebindReference", + "SupervisoryRegisterPreboundReference", + "UserRegisterPreboundReference", + "TransferData", + "DataReceived", + "StatusReceived", + "PutRequest", + "GetResponse", + "Nmx", + "Lmx", + "MX_E_", + "MxSecurity", + "MxSource", + "MxCategory", + "IDataClient", + "PublishWriteComplete", + "Write2", + "RegisterItems", + "socket", + "WSASend", + "WSARecv", + "send", + "recv", + "Ndr", + "RPC" + ); + + private final List interestingCallNeedles = Arrays.asList( + "send", + "recv", + "WSASend", + "WSARecv", + "connect", + "bind", + "listen", + "accept", + "closesocket", + "Ndr", + "Rpc", + "CoCreateInstance", + "CoGetClassObject", + "QueryInterface", + "Variant", + "SafeArray", + "SysAllocString", + "SysFreeString", + "memcpy", + "memmove", + "memset" + ); + + @Override + public void run() throws Exception { + String[] args = getScriptArgs(); + File outDir = new File(args.length > 0 ? args[0] : "analysis/ghidra/exports"); + outDir.mkdirs(); + + String baseName = sanitize(currentProgram.getName()); + writeProgramMarkdown(new File(outDir, baseName + ".ghidra.md")); + writeFunctionsTsv(new File(outDir, baseName + ".functions.tsv")); + writeStringRefsTsv(new File(outDir, baseName + ".string-refs.tsv")); + writeCallRefsTsv(new File(outDir, baseName + ".call-refs.tsv")); + println("Wrote MX/NMX Ghidra export for " + currentProgram.getName() + " to " + outDir.getAbsolutePath()); + } + + private void writeProgramMarkdown(File outFile) throws Exception { + PrintWriter out = new PrintWriter(new FileWriter(outFile)); + out.println("# " + currentProgram.getName()); + out.println(); + out.println("## Program"); + out.println(); + out.println("- Language: `" + currentProgram.getLanguageID() + "`"); + out.println("- Compiler spec: `" + currentProgram.getCompilerSpec().getCompilerSpecID() + "`"); + out.println("- Image base: `" + currentProgram.getImageBase() + "`"); + out.println("- Executable format: `" + currentProgram.getExecutableFormat() + "`"); + out.println(); + writeMemoryBlocks(out); + writeExternalImports(out); + writeExports(out); + writeInterestingStringSummary(out); + writeInterestingCallerSummary(out); + out.close(); + } + + private void writeMemoryBlocks(PrintWriter out) { + out.println("## Memory Blocks"); + out.println(); + out.println("| Name | Start | End | Size | R | W | X |"); + out.println("| --- | ---: | ---: | ---: | :---: | :---: | :---: |"); + for (MemoryBlock block : currentProgram.getMemory().getBlocks()) { + out.println("| `" + escape(block.getName()) + "` | `" + block.getStart() + "` | `" + block.getEnd() + "` | " + + block.getSize() + " | " + yn(block.isRead()) + " | " + yn(block.isWrite()) + " | " + yn(block.isExecute()) + " |"); + } + out.println(); + } + + private void writeExternalImports(PrintWriter out) { + out.println("## External Imports"); + out.println(); + List imports = new ArrayList(); + SymbolIterator it = currentProgram.getSymbolTable().getExternalSymbols(); + while (it.hasNext()) { + imports.add(it.next().getName(true)); + } + Collections.sort(imports); + for (String name : imports) { + out.println("- `" + escape(name) + "`"); + } + out.println(); + } + + private void writeExports(PrintWriter out) { + out.println("## Exports and Globals"); + out.println(); + out.println("| Name | Address | Function |"); + out.println("| --- | ---: | --- |"); + SymbolIterator symbols = currentProgram.getSymbolTable().getSymbolIterator(true); + while (symbols.hasNext()) { + Symbol symbol = symbols.next(); + if (symbol.isExternal() || !symbol.isGlobal()) { + continue; + } + String name = symbol.getName(); + if (name.startsWith("FUN_") || name.startsWith("DAT_") || name.startsWith("LAB_")) { + continue; + } + Function function = getFunctionContaining(symbol.getAddress()); + out.println("| `" + escape(name) + "` | `" + symbol.getAddress() + "` | `" + + (function == null ? "" : escape(function.getName())) + "` |"); + } + out.println(); + } + + private void writeInterestingStringSummary(PrintWriter out) { + out.println("## Interesting Strings and Referencing Functions"); + out.println(); + out.println("| Address | String | Referencing Functions |"); + out.println("| ---: | --- | --- |"); + for (StringRecord record : collectInterestingStrings()) { + out.println("| `" + record.address + "` | `" + escape(record.value) + "` | `" + escape(join(record.functions, "`, `")) + "` |"); + } + out.println(); + } + + private void writeInterestingCallerSummary(PrintWriter out) { + out.println("## Interesting API Callers"); + out.println(); + out.println("| Caller | Entry | Call Targets |"); + out.println("| --- | ---: | --- |"); + List calls = collectInterestingFunctionCalls(); + Collections.sort(calls, new Comparator() { + public int compare(FunctionCalls a, FunctionCalls b) { + return a.function.getEntryPoint().compareTo(b.function.getEntryPoint()); + } + }); + for (FunctionCalls item : calls) { + out.println("| `" + escape(item.function.getName()) + "` | `" + item.function.getEntryPoint() + "` | `" + + escape(join(item.targets, "`, `")) + "` |"); + } + out.println(); + } + + private void writeFunctionsTsv(File outFile) throws Exception { + PrintWriter out = new PrintWriter(new FileWriter(outFile)); + out.println("entry\tname\tsignature\tbody_size\tcall_count\tinteresting_calls"); + FunctionIterator functions = currentProgram.getFunctionManager().getFunctions(true); + while (functions.hasNext()) { + Function function = functions.next(); + Set targets = directCallTargets(function); + Set interesting = filterInterestingCalls(targets); + out.println(function.getEntryPoint() + "\t" + tsv(function.getName()) + "\t" + + tsv(function.getSignature().getPrototypeString()) + "\t" + function.getBody().getNumAddresses() + "\t" + + targets.size() + "\t" + tsv(join(new ArrayList(interesting), ";"))); + } + out.close(); + } + + private void writeStringRefsTsv(File outFile) throws Exception { + PrintWriter out = new PrintWriter(new FileWriter(outFile)); + out.println("string_address\tstring_value\tref_from\tref_function"); + for (StringRecord record : collectInterestingStrings()) { + for (String ref : record.references) { + out.println(record.address + "\t" + tsv(record.value) + "\t" + tsv(ref) + "\t" + tsv(record.refFunctionByAddress.get(ref))); + } + } + out.close(); + } + + private void writeCallRefsTsv(File outFile) throws Exception { + PrintWriter out = new PrintWriter(new FileWriter(outFile)); + out.println("caller_entry\tcaller_name\tcall_address\ttarget"); + FunctionIterator functions = currentProgram.getFunctionManager().getFunctions(true); + while (functions.hasNext()) { + Function function = functions.next(); + InstructionIterator instructions = currentProgram.getListing().getInstructions(function.getBody(), true); + while (instructions.hasNext()) { + Instruction instruction = instructions.next(); + for (Reference ref : instruction.getReferencesFrom()) { + if (!ref.getReferenceType().isCall()) { + continue; + } + String target = callTargetName(ref.getToAddress()); + if (!isInterestingCall(target)) { + continue; + } + out.println(function.getEntryPoint() + "\t" + tsv(function.getName()) + "\t" + + instruction.getAddress() + "\t" + tsv(target)); + } + } + } + out.close(); + } + + private List collectInterestingStrings() { + List records = new ArrayList(); + Set seenAt = new HashSet(); + DataIterator data = currentProgram.getListing().getDefinedData(true); + while (data.hasNext()) { + if (monitor.isCancelled()) { + break; + } + Data item = data.next(); + Object valueObject = null; + try { + valueObject = item.getValue(); + } catch (Exception e) { + continue; + } + if (valueObject == null) { + continue; + } + String value = valueObject.toString(); + if (value.length() < 4 || !isInterestingString(value)) { + continue; + } + String address = item.getAddress().toString(); + if (seenAt.contains(address)) { + continue; + } + seenAt.add(address); + StringRecord record = new StringRecord(address, value); + for (Reference ref : getReferencesTo(item.getAddress())) { + Address from = ref.getFromAddress(); + Function function = getFunctionContaining(from); + String functionName = function == null ? "" : function.getName() + "@" + function.getEntryPoint(); + record.references.add(from.toString()); + record.refFunctionByAddress.put(from.toString(), functionName); + if (functionName.length() > 0) { + record.functions.add(functionName); + } + } + records.add(record); + } + Collections.sort(records, new Comparator() { + public int compare(StringRecord a, StringRecord b) { + return a.address.compareTo(b.address); + } + }); + return records; + } + + private List collectInterestingFunctionCalls() { + List out = new ArrayList(); + FunctionIterator functions = currentProgram.getFunctionManager().getFunctions(true); + while (functions.hasNext()) { + Function function = functions.next(); + Set targets = filterInterestingCalls(directCallTargets(function)); + if (!targets.isEmpty()) { + out.add(new FunctionCalls(function, new ArrayList(targets))); + } + } + return out; + } + + private Set directCallTargets(Function function) { + Set targets = new LinkedHashSet(); + InstructionIterator instructions = currentProgram.getListing().getInstructions(function.getBody(), true); + while (instructions.hasNext()) { + Instruction instruction = instructions.next(); + for (Reference ref : instruction.getReferencesFrom()) { + if (!ref.getReferenceType().isCall()) { + continue; + } + targets.add(callTargetName(ref.getToAddress())); + } + } + return targets; + } + + private String callTargetName(Address address) { + Function function = getFunctionAt(address); + if (function != null) { + return function.getName(); + } + Symbol symbol = getSymbolAt(address); + if (symbol != null) { + return symbol.getName(true); + } + SymbolTable symbols = currentProgram.getSymbolTable(); + Symbol primary = symbols.getPrimarySymbol(address); + if (primary != null) { + return primary.getName(true); + } + return address.toString(); + } + + private Set filterInterestingCalls(Set targets) { + Set out = new LinkedHashSet(); + for (String target : targets) { + if (isInterestingCall(target)) { + out.add(target); + } + } + return out; + } + + private boolean isInterestingString(String value) { + String lower = value.toLowerCase(); + for (String needle : interestingStringNeedles) { + if (lower.contains(needle.toLowerCase())) { + return true; + } + } + return false; + } + + private boolean isInterestingCall(String value) { + String lower = value.toLowerCase(); + for (String needle : interestingCallNeedles) { + if (lower.contains(needle.toLowerCase())) { + return true; + } + } + return false; + } + + private String sanitize(String value) { + return value.replaceAll("[^A-Za-z0-9_.-]", "_"); + } + + private String yn(boolean value) { + return value ? "Y" : ""; + } + + private String join(List items, String separator) { + Collections.sort(items); + StringBuilder builder = new StringBuilder(); + for (int i = 0; i < items.size(); i++) { + if (i > 0) { + builder.append(separator); + } + builder.append(items.get(i)); + } + return builder.toString(); + } + + private String escape(String value) { + if (value == null) { + return ""; + } + return value.replace("\\", "\\\\").replace("`", "\\`").replace("|", "\\|").replace("\r", " ").replace("\n", " "); + } + + private String tsv(String value) { + if (value == null) { + return ""; + } + return value.replace("\t", " ").replace("\r", " ").replace("\n", " "); + } + + private static class StringRecord { + String address; + String value; + List references = new ArrayList(); + Map refFunctionByAddress = new HashMap(); + List functions = new ArrayList(); + + StringRecord(String address, String value) { + this.address = address; + this.value = value; + } + } + + private static class FunctionCalls { + Function function; + List targets; + + FunctionCalls(Function function, List targets) { + this.function = function; + this.targets = targets; + } + } +} diff --git a/analysis/ghidra/scripts/XrefReport.java b/analysis/ghidra/scripts/XrefReport.java new file mode 100644 index 0000000..f0c8e6a --- /dev/null +++ b/analysis/ghidra/scripts/XrefReport.java @@ -0,0 +1,56 @@ +import ghidra.app.script.GhidraScript; +import ghidra.program.model.address.Address; +import ghidra.program.model.listing.Function; +import ghidra.program.model.symbol.Reference; +import ghidra.program.model.symbol.ReferenceIterator; +import java.io.File; +import java.io.PrintWriter; + +public class XrefReport extends GhidraScript { + @Override + protected void run() throws Exception { + String[] args = getScriptArgs(); + if (args.length < 2) { + println("usage: XrefReport [...]"); + return; + } + + File output = new File(args[0]); + output.getParentFile().mkdirs(); + + long imageBase = currentProgram.getImageBase().getOffset(); + try (PrintWriter writer = new PrintWriter(output, "UTF-8")) { + writer.printf("# %s xrefs%n%n", currentProgram.getName()); + for (int i = 1; i < args.length; i++) { + long raw = Long.decode(args[i]); + long absolute = raw < imageBase ? imageBase + raw : raw; + Address target = toAddr(absolute); + Function targetFunction = getFunctionContaining(target); + writer.printf("## %s at %s%n%n", args[i], target); + writer.printf("Target function: `%s`%n%n", targetFunction == null ? "(none)" : targetFunction.getName()); + writer.println("| From | Ref type | Caller function |"); + writer.println("| --- | --- | --- |"); + + int count = 0; + ReferenceIterator references = currentProgram.getReferenceManager().getReferencesTo(target); + while (references.hasNext()) { + Reference reference = references.next(); + Address from = reference.getFromAddress(); + Function caller = getFunctionContaining(from); + writer.printf( + "| `%s` | `%s` | `%s` |%n", + from, + reference.getReferenceType(), + caller == null ? "" : caller.getName()); + count++; + } + + if (count == 0) { + writer.println("| (none) | | |"); + } + + writer.println(); + } + } + } +} diff --git a/analysis/interop/Interop.Lmx.dll b/analysis/interop/Interop.Lmx.dll new file mode 100644 index 0000000..fcfab8f Binary files /dev/null and b/analysis/interop/Interop.Lmx.dll differ diff --git a/analysis/interop/Interop.LmxProxy.dll b/analysis/interop/Interop.LmxProxy.dll new file mode 100644 index 0000000..d9fef6b Binary files /dev/null and b/analysis/interop/Interop.LmxProxy.dll differ diff --git a/analysis/interop/Interop.MXAccess32.dll b/analysis/interop/Interop.MXAccess32.dll new file mode 100644 index 0000000..9012ed0 Binary files /dev/null and b/analysis/interop/Interop.MXAccess32.dll differ diff --git a/analysis/interop/Interop.NmxAdptr.dll b/analysis/interop/Interop.NmxAdptr.dll new file mode 100644 index 0000000..ec1acf8 Binary files /dev/null and b/analysis/interop/Interop.NmxAdptr.dll differ diff --git a/analysis/interop/Interop.NmxSvc.dll b/analysis/interop/Interop.NmxSvc.dll new file mode 100644 index 0000000..c37c781 Binary files /dev/null and b/analysis/interop/Interop.NmxSvc.dll differ diff --git a/analysis/interop/Interop.aaMxDataConsumer.dll b/analysis/interop/Interop.aaMxDataConsumer.dll new file mode 100644 index 0000000..95ac293 Binary files /dev/null and b/analysis/interop/Interop.aaMxDataConsumer.dll differ diff --git a/analysis/live-managed-sub-high-engine-x86-writer.log b/analysis/live-managed-sub-high-engine-x86-writer.log new file mode 100644 index 0000000..0e521b1 --- /dev/null +++ b/analysis/live-managed-sub-high-engine-x86-writer.log @@ -0,0 +1,16 @@ +2026-04-25T22:36:07.0903001+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"","WriteValues":["329"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":500,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:36:13.9871600+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T22:36:14.3396236+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:36:14.3406001+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T22:36:14.3416363+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:36:14.3426217+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:36:14.3436206+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:36:14.8862975+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"329"},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T22:36:14.8894144+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T22:36:18.9154365+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:36:18.9154365+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:36:18.9154365+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:36:18.9164336+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:36:18.9164336+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:36:23.0347710+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:36:23.0407056+00:00 harness.stop {} diff --git a/analysis/live-managed-sub-x86-writer-after-017.log b/analysis/live-managed-sub-x86-writer-after-017.log new file mode 100644 index 0000000..b32132c --- /dev/null +++ b/analysis/live-managed-sub-x86-writer-after-017.log @@ -0,0 +1,16 @@ +2026-04-25T22:34:02.6350728+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"","WriteValues":["328"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":500,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:34:09.5141649+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T22:34:09.8590159+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:34:09.8590159+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T22:34:09.8610314+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:34:09.8610314+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:34:09.8620556+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:34:10.4040166+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"328"},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T22:34:10.4060308+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T22:34:14.4211395+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:34:14.4211395+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:34:14.4211395+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:34:14.4211395+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:34:14.4211395+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:34:18.3410899+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:34:18.3460876+00:00 harness.stop {} diff --git a/analysis/live-managed-sub-x86-writer.log b/analysis/live-managed-sub-x86-writer.log new file mode 100644 index 0000000..ad0edc8 --- /dev/null +++ b/analysis/live-managed-sub-x86-writer.log @@ -0,0 +1,16 @@ +2026-04-25T22:28:00.0204237+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"","WriteValues":["327"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":500,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:28:06.9737679+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T22:28:07.3377861+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:28:07.3387844+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T22:28:07.3407193+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:28:07.3417221+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:28:07.3417221+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:28:07.8857315+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"327"},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T22:28:07.8887504+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T22:28:11.9121150+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:28:11.9121150+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:28:11.9121150+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:28:11.9130456+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:28:11.9130456+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:28:16.1287346+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:28:16.1357110+00:00 harness.stop {} diff --git a/analysis/native/LmxProxy.dll.md b/analysis/native/LmxProxy.dll.md new file mode 100644 index 0000000..388b6a8 --- /dev/null +++ b/analysis/native/LmxProxy.dll.md @@ -0,0 +1,208 @@ +# LmxProxy.dll + +- Path: `C:\Program Files (x86)\ArchestrA\Framework\Bin\LmxProxy.dll` +- Size: 241816 bytes +- Machine: x86 +- PE timestamp: 2020-02-24T11:57:14+00:00 +- ImageBase: `0x10000000` + +## Exports + +| Ordinal | RVA | Name | +| ---: | ---: | --- | +| 1 | 0x000080d6 | `DllCanUnloadNow` | +| 2 | 0x0000c873 | `DllGetClassObject` | +| 3 | 0x0000ba13 | `DllRegisterServer` | +| 4 | 0x0000ba22 | `DllUnregisterServer` | + +## Imports + +- `LicAPINativeWrapper.dll`: `?ReleaseLicense@NativeExport_CppCliWrapper_LicApiClient@@QAE_NXZ`, `?AddLicenseRequestInfo@NativeExport_CppCliWrapper_LicApiClient@@QAE_NPB_W000@Z`, `?AcquireLicense@NativeExport_CppCliWrapper_LicApiClient@@QAE_NXZ`, `?GetLicenseAcquisitionError@NativeExport_CppCliWrapper_LicApiClient@@QAEHXZ`, `?ResetLicenseRequestInfo@NativeExport_CppCliWrapper_LicApiClient@@QAE_NXZ`, `??0NativeExport_CppCliWrapper_LicApiClient@@QAE@XZ`, `?LoadLibraries@NativeExport_CppCliWrapper_LicApiClient@@QAE_NAAH@Z`, `?CreateClientConnection@NativeExport_CppCliWrapper_LicApiClient@@QAE_NXZ`, `?GetDeviceIdentity@NativeExport_CppCliWrapper_LicApiClient@@QAE_NPAPB_W@Z`, `??1NativeExport_CppCliWrapper_LicApiClient@@QAE@XZ` +- `KERNEL32.dll`: `MultiByteToWideChar`, `lstrlenW`, `GetLastError`, `FreeLibrary`, `FindClose`, `FindFirstFileW`, `GetModuleFileNameW`, `InterlockedIncrement`, `LocalFree`, `GetProcAddress`, `LoadLibraryExW`, `LocalAlloc`, `FormatMessageW`, `lstrlenA`, `InterlockedDecrement`, `SystemTimeToTzSpecificLocalTime`, `FileTimeToSystemTime`, `RaiseException`, `EnterCriticalSection`, `LeaveCriticalSection`, `InitializeCriticalSectionAndSpinCount`, `InterlockedExchange`, `GetModuleHandleW`, `lstrcmpiW`, `CloseHandle`, `DisableThreadLibraryCalls`, `CreateEventW`, `LoadResource`, `FindResourceW`, `GetSystemDirectoryW`, `GetWindowsDirectoryW`, `FindNextFileW`, `CreateDirectoryW`, `GetCurrentThreadId`, `GetLocalTime`, `GetUserDefaultLCID`, `GetTickCount`, `DeleteFileW`, `GetCurrentProcess`, `GetCurrentProcessId`, `CreateFileW`, `GetSystemTimeAsFileTime`, `QueryPerformanceCounter`, `IsDebuggerPresent`, `SetUnhandledExceptionFilter`, `UnhandledExceptionFilter`, `TerminateProcess`, `InterlockedCompareExchange`, `Sleep`, `DecodePointer`, `EncodePointer`, `DeleteCriticalSection`, `SizeofResource` +- `USER32.dll`: `CharNextW`, `KillTimer`, `SetTimer`, `CreateWindowExW`, `DestroyWindow`, `CharUpperBuffW`, `ShowWindow` +- `ADVAPI32.dll`: `RegCreateKeyExW`, `RegQueryValueExW`, `RegCloseKey`, `RegOpenKeyExW`, `RegNotifyChangeKeyValue`, `RegEnumKeyExW`, `RegQueryInfoKeyW`, `RegSetValueExW`, `RegDeleteValueW`, `RegDeleteKeyW` +- `ole32.dll`: `CoGetClassObject`, `CoTaskMemRealloc`, `CoTaskMemFree`, `CLSIDFromString`, `CoFileTimeNow`, `StringFromGUID2`, `CoCreateInstance`, `CoTaskMemAlloc` +- `OLEAUT32.dll`: `SysAllocString`, `SysFreeString`, `SysStringLen`, `VariantInit`, `VariantClear`, `VariantCopy`, `VariantChangeType`, `SysAllocStringByteLen`, `SysStringByteLen`, `SysAllocStringLen`, `SetErrorInfo`, `SafeArrayUnaccessData`, `SafeArrayAccessData`, `SafeArrayGetLBound`, `SafeArrayCreateEx`, `GetRecordInfoFromGuids`, `SafeArrayGetDim`, `GetErrorInfo`, `SafeArrayPutElement`, `SafeArrayCreate`, `LoadTypeLib`, `UnRegisterTypeLib`, `RegisterTypeLib`, `VarUI4FromStr`, `LoadRegTypeLib`, `VarBstrCmp`, `VarBstrCat`, `SafeArrayDestroy` +- `SHLWAPI.dll`: `PathRemoveFileSpecW`, `PathAppendW` +- `MSVCP100.dll`: `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@G@Z`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@_N@Z`, `?_Orphan_all@_Container_base0@std@@QAEXXZ`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@H@Z`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@K@Z`, `??0?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAE@PAV?$basic_streambuf@_WU?$char_traits@_W@std@@@1@_N@Z`, `??1?$basic_ostream@_WU?$char_traits@_W@std@@@std@@UAE@XZ`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@P6AAAVios_base@1@AAV21@@Z@Z`, `?ends@std@@YAAAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@AAV21@@Z`, `?endl@std@@YAAAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@AAV21@@Z`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@J@Z`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z`, `??0?$basic_ios@_WU?$char_traits@_W@std@@@std@@IAE@XZ`, `??0?$basic_iostream@_WU?$char_traits@_W@std@@@std@@QAE@PAV?$basic_streambuf@_WU?$char_traits@_W@std@@@1@@Z`, `?rdbuf@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEPAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@PAV32@@Z`, `??1?$basic_ios@_WU?$char_traits@_W@std@@@std@@UAE@XZ`, `?seekpos@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE?AV?$fpos@H@2@V32@H@Z`, `?seekoff@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE?AV?$fpos@H@2@_JHH@Z`, `?underflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGXZ`, `?pbackfail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGG@Z`, `??0?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAE@XZ`, `?_Pninc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEPA_WXZ`, `??1?$basic_iostream@_WU?$char_traits@_W@std@@@std@@UAE@XZ`, `?width@ios_base@std@@QBE_JXZ`, `?flags@ios_base@std@@QBEHXZ`, `?fill@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBE_WXZ`, `?sputc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEG_W@Z`, `?sputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAE_JPB_W_J@Z`, `?width@ios_base@std@@QAE_J_J@Z`, `?setstate@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEXH_N@Z`, `?uncaught_exception@std@@YA_NXZ`, `?_Osfx@?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEXXZ`, `?good@ios_base@std@@QBE_NXZ`, `?tie@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBEPAV?$basic_ostream@_WU?$char_traits@_W@std@@@2@XZ`, `?flush@?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV12@XZ`, `?_BADOFF@std@@3_JB`, `?setf@ios_base@std@@QAEHHH@Z`, `?_Xout_of_range@std@@YAXPBD@Z`, `?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W0@Z`, `?setg@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W00@Z`, `?eback@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?egptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?epptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?pptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?_Xlength_error@std@@YAXPBD@Z`, `?rdbuf@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBEPAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@XZ`, `??1?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UAE@XZ`, `?_Lock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UAEXXZ`, `?_Unlock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UAEXXZ`, `?showmanyc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE_JXZ`, `?uflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGXZ`, `?xsgetn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE_JPA_W_J@Z`, `?xsputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE_JPB_W_J@Z`, `?setbuf@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEPAV12@PA_W_J@Z`, `?sync@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEHXZ`, `?imbue@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEXABVlocale@2@@Z`, `?gptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?gbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXH@Z`, `?pbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXH@Z`, `?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W00@Z`, `?pbase@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ` +- `dbghelp.dll`: `MiniDumpWriteDump` +- `MSVCR100.dll`: `??2@YAPAXI@Z`, `__clean_type_info_names_internal`, `_crt_debugger_hook`, `_except_handler4_common`, `_onexit`, `_lock`, `__dllonexit`, `_unlock`, `?terminate@@YAXXZ`, `_snwprintf_s`, `?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z`, `wcsrchr`, `_purecall`, `_resetstkoflw`, `wcsncpy_s`, `malloc`, `wcsstr`, `memcmp`, `_vsnwprintf_s`, `swprintf_s`, `wcscmp`, `wcscpy_s`, `_recalloc`, `calloc`, `??0exception@std@@QAE@ABV01@@Z`, `_makepath_s`, `_splitpath_s`, `?_type_info_dtor_internal_method@type_info@@QAEXXZ`, `__CppXcptFilter`, `_amsg_exit`, `_initterm_e`, `_initterm`, `_encoded_null`, `??3@YAXPAX@Z`, `_CxxThrowException`, `memcpy`, `memmove`, `free`, `memcpy_s`, `memset`, `__CxxFrameHandler3`, `??1exception@std@@UAE@XZ`, `??0exception@std@@QAE@ABQBD@Z`, `?what@exception@std@@UBEPBDXZ`, `wcslen`, `wcscat_s`, `_wsplitpath_s`, `??_V@YAXPAX@Z`, `_malloc_crt` + +## Resources + +| Type | ID/name | Lang | RVA | Size | +| --- | --- | ---: | ---: | ---: | +| `REGISTRY` | `101` | 1033 | 0x0002a19c | 680 | +| `TYPELIB` | `1` | 1033 | 0x0002a444 | 55756 | +| `6` | `7` | 1033 | 0x00037e10 | 48 | +| `16` | `1` | 1033 | 0x00037e40 | 976 | +| `24` | `2` | 1033 | 0x00038210 | 346 | + +## GUID hits + +- `c30b52f5-2cb5-4760-af0a-3a344a7eb5dc` `text-upper` at file offset `0x000283ee`: `65 72 76 65 72 20 43 6c 61 73 73 27 0d 0a 09 7b 0d 0a 09 09 43 4c 53 49 44 20 3d 20 73 20 27 7b 43 33 30 42 35 32 46 35 2d 32 43 42 35 2d 34 37 36 30 2d 41 46 30 41 2d 33 41 33 34 34 41 37 45` +- `c30b52f5-2cb5-4760-af0a-3a344a7eb5dc` `text-upper` at file offset `0x00028461`: `65 72 76 65 72 20 43 6c 61 73 73 27 0d 0a 09 7b 0d 0a 09 09 43 4c 53 49 44 20 3d 20 73 20 27 7b 43 33 30 42 35 32 46 35 2d 32 43 42 35 2d 34 37 36 30 2d 41 46 30 41 2d 33 41 33 34 34 41 37 45` +- `c30b52f5-2cb5-4760-af0a-3a344a7eb5dc` `text-upper` at file offset `0x000284db`: `65 6d 6f 76 65 20 43 4c 53 49 44 0d 0a 09 7b 0d 0a 09 09 46 6f 72 63 65 52 65 6d 6f 76 65 20 7b 43 33 30 42 35 32 46 35 2d 32 43 42 35 2d 34 37 36 30 2d 41 46 30 41 2d 33 41 33 34 34 41 37 45` +- `c30b52f5-2cb5-4760-af0a-3a344a7eb5dc` `guid-bytes-le` at file offset `0x0001b640`: `b6 99 82 84 61 dd 0d 4a a3 04 39 47 a5 64 b8 9c c4 6f 0a c7 ef 09 31 4f 88 74 a0 49 fe e8 7a 95 f5 52 0b c3 b5 2c 60 47 af 0a 3a 34 4a 7e b5 dc 02 00 00 80 2c b5 01 10 28 b5 01 10 24 b5 01 10` +- `c30b52f5-2cb5-4760-af0a-3a344a7eb5dc` `guid-bytes-le` at file offset `0x0002b238`: `d0 20 00 00 58 02 00 00 c4 6f 0a c7 ef 09 31 4f 88 74 a0 49 fe e8 7a 95 34 21 00 00 ff ff ff ff f5 52 0b c3 b5 2c 60 47 af 0a 3a 34 4a 7e b5 dc 98 21 00 00 ff ff ff ff f4 01 00 00 01 00 00 00` + +## Interesting strings + +- `(preboundReferenceHandleW` +- `.?AUILMXProxyServer2@@` +- `.?AUILMXProxyServer3@@` +- `.?AUILMXProxyServer4@@` +- `.?AUILMXProxyServer5@@` +- `.?AUILMXProxyServer@@` +- `.?AV?$CComAggObject@VCLMXProxyServer@@@ATL@@` +- `.?AV?$CComCoClass@VCLMXProxyServer@@$1?CLSID_LMXProxyServer@@3U_GUID@@B@ATL@@` +- `.?AV?$CComContainedObject@VCLMXProxyServer@@@ATL@@` +- `.?AV?$CComEnum@UIEnumConnectionPoints@@$1?_GUID_b196b285_bab4_101a_b69c_00aa00341d07@@3U__s_GUID@@BPAUIConnectionPoint@@V?$_CopyInterface@UIConnectionPoint@@@ATL@@VCComSingleThreadModel@6@@ATL@@` +- `.?AV?$CComEnumImpl@UIEnumConnectionPoints@@$1?_GUID_b196b285_bab4_101a_b69c_00aa00341d07@@3U__s_GUID@@BPAUIConnectionPoint@@V?$_CopyInterface@UIConnectionPoint@@@ATL@@@ATL@@` +- `.?AV?$CComObject@V?$CComEnum@UIEnumConnectionPoints@@$1?_GUID_b196b285_bab4_101a_b69c_00aa00341d07@@3U__s_GUID@@BPAUIConnectionPoint@@V?$_CopyInterface@UIConnectionPoint@@@ATL@@VCComSingleThreadModel@6@@ATL@@@ATL@@` +- `.?AV?$CComObject@VCLMXProxyServer@@@ATL@@` +- `.?AV?$CProxy_ILMXProxyServerEvents2@VCLMXProxyServer@@@@` +- `.?AV?$CProxy_ILMXProxyServerEvents@VCLMXProxyServer@@@@` +- `.?AV?$IConnectionPointContainerImpl@VCLMXProxyServer@@@ATL@@` +- `.?AV?$IConnectionPointImpl@VCLMXProxyServer@@$1?DIID__ILMXProxyServerEvents2@@3U_GUID@@BVCComDynamicUnkArray@ATL@@@ATL@@` +- `.?AV?$IConnectionPointImpl@VCLMXProxyServer@@$1?DIID__ILMXProxyServerEvents@@3U_GUID@@BVCComDynamicUnkArray@ATL@@@ATL@@` +- `.?AV?$IDispatchImpl@UILMXProxyServer5@@$1?IID_ILMXProxyServer5@@3U_GUID@@B$1?LIBID_LMXPROXYLib@@3U3@B$00$0A@VCComTypeInfoHolder@ATL@@@ATL@@` +- `.?AV?$_ICPLocator@$1?DIID__ILMXProxyServerEvents2@@3U_GUID@@B@ATL@@` +- `.?AV?$_ICPLocator@$1?DIID__ILMXProxyServerEvents@@3U_GUID@@B@ATL@@` +- `.?AVCLMXProxyServer@@` +- `.\WriteWWW` +- `0()MxSourceRequestingNmxWWW` +- `0=vMX_E_LmxInvalidCommandWW` +- `5MxSecurityVerifiedWriteW` +- `8APrebindReferenceExWW` +- `8UtILMXProxyServerW` +- `:MX_E_SecuredWriteWWW` +- `Any User cam write to these attributes. No security checking is done.Wa` +- `BMXSTATUS_PROXYWW` +- `CLMXProxyServer::Activate - Query for IMxScanOnDemand failed` +- `CLMXProxyServer::Activate - Server Handle ` +- `CLMXProxyServer::Activate - returning HRESULT ` +- `CLMXProxyServer::AddBufferedItem - Server Handle ` +- `CLMXProxyServer::AddBufferedItem - Server Handle: ` +- `CLMXProxyServer::AddBufferedItem - Valid License: ` +- `CLMXProxyServer::AddItem - Server Handle: ` +- `CLMXProxyServer::AddItem - Valid License: ` +- `CLMXProxyServer::AddItem - returning HRESULT ` +- `CLMXProxyServer::AddItem2 - Server Handle: ` +- `CLMXProxyServer::AddItem2 - Valid License: ` +- `CLMXProxyServer::AddItem2 - returning HRESULT ` +- `CLMXProxyServer::Advise - Server Handle ` +- `CLMXProxyServer::Advise - returning HRESULT ` +- `CLMXProxyServer::AdviseSupervisory - Server Handle ` +- `CLMXProxyServer::AdviseSupervisory - returning HRESULT ` +- `CLMXProxyServer::ArchestrAUserToId - Server Handle: ` +- `CLMXProxyServer::ArchestrAUserToId - returning HRESULT E_INVALIDARG for invalid Server Handle` +- `CLMXProxyServer::ArchestrAUserToId - returning HRESULT S_OK, UserId ` +- `CLMXProxyServer::AuthenticateUser - Server Handle: ` +- `CLMXProxyServer::AuthenticateUser - returning HRESULT E_INVALIDARG` +- `CLMXProxyServer::AuthenticateUser - returning HRESULT S_OK UserId ` +- `CLMXProxyServer::InitializeDefaultLocale set to ` +- `CLMXProxyServer::Register - Client name NULL - returning E_POINTER HRESULT` +- `CLMXProxyServer::Register - ClientName ` +- `CLMXProxyServer::Register - Unregistering existing Client app` +- `CLMXProxyServer::Register - returning HRESULT ` +- `CLMXProxyServer::RemoveItem - Server Handle ` +- `CLMXProxyServer::RemoveItem - returning HRESULT ` +- `CLMXProxyServer::SetBufferedUpdateInterval - hLMXServer ` +- `CLMXProxyServer::SetBufferedUpdateInterval - returning E_INVALIDARG` +- `CLMXProxyServer::Suspend - Query for IMxScanOnDemand failed` +- `CLMXProxyServer::Suspend - Server Handle ` +- `CLMXProxyServer::Suspend - returning HRESULT ` +- `CLMXProxyServer::UnAdvise - Server Handle ` +- `CLMXProxyServer::UnAdvise - returning HRESULT ` +- `CLMXProxyServer::Unregister - Server Handle ` +- `CLMXProxyServer::Unregister - returning HRESULT ` +- `CLMXProxyServer::VerifyAdvisedItem - returning E_INVALIDARG` +- `CLMXProxyServer::VerifyItemValid - hItem ` +- `CLMXProxyServer::VerifyItemValid - hLMXServer ` +- `CLMXProxyServer::Write - Server Handle ` +- `CLMXProxyServer::Write - returning HRESULT ` +- `CLMXProxyServer::WriteSecured - Server Handle ` +- `CLMXProxyServer::WriteVerified - returning HRESULT ` +- `CLSID = s '{C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC}'` +- `CProxy_ILMXProxyServerEvents2::Fire_OnBufferedDataChange firing event - Server Handle ` +- `CProxy_ILMXProxyServerEvents::Fire_OnDataChange firing event - Server Handle ` +- `CProxy_ILMXProxyServerEvents::Fire_OnWriteComplete firing event - Server Handle ` +- `CProxy_ILMXProxyServerEvents::Fire_OperationComplete firing event - Server Handle ` +- `CurVer = s 'LMXProxy.LMXProxyServer.1'` +- `Failed to locate MiniDumpWriteDump to generate minidump. Maybe old version of dbghelp.dll is being used.` +- `FindResourceW` +- `Fire_OnWriteComplete - threw an unknown exception` +- `ForceRemove {C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC} = s 'LMXProxyServer Class'` +- `HILMXPROXYLibW` +- `ILMXProxyServer InterfaceW` +- `ILMXProxyServer2 Interface` +- `ILMXProxyServer2@` +- `ILMXProxyServer3` +- `ILMXProxyServer3 Interface` +- `ILMXProxyServer4` +- `ILMXProxyServer4 Interface` +- `ILMXProxyServer5 Interface ` +- `ILMXProxyServer5l ` +- `ISecurityToken InterfaceWW` +- `IUserAuthenticator InterfaceWW` +- `IUserAuthenticator2 InterfaceW` +- `IUserAuthenticator3 InterfaceW` +- `IUserAuthenticator4 InterfaceW` +- `IUserAuthenticator5 InterfaceW` +- `IUserAuthenticator6 InterfaceW` +- `IUserAuthenticator7 InterfaceW!` +- `Interface` +- `LMXProxy` +- `LMXProxy 1.0 Type LibraryW` +- `LMXProxy Module` +- `LMXProxy.DLL` +- `LMXProxy.LMXProxyServer = s 'LMXProxyServer Class'` +- `LMXProxy.LMXProxyServer.1 = s 'LMXProxyServer Class'` +- `LMXProxyServer ClassWW` +- `LMXProxyServer.cpp` +- `LMXProxyServerWW` +- `LmxProxy` +- `LmxProxy_v0045` +- `MX_E_LmxVersionMismatchW` +- `MX_E_NotWriteableWWW` +- `MX_E_VerifiedWriteWW` +- `MX_E_WriteAccessDeniedWW` +- `MiniDumpWriteDump` +- `Multiple Threads calling CLMXProxyServer::Register() - not allowed.` +- `MxSecuritySecuredWriteWW` +- `MxSourceRequestingLmxWWW` +- `MxSourceRespondingLmxWWW` +- `MxSourceRespondingNmxWWW` +- `OnWriteCompleteW4!` +- `Operators write to these attributes during normal day-to-day operations (Setpoint, Command, etc.)Ws` +- `Operators write to these attributes for normal interaction with a highly secured object. Forces re-authentication.WWW` +- `Operators write to these attributes for normal interaction with a very highly secured object, This is similar to Secured Write however it also required a second user authentication.Wn` +- `PrebindReference` +- `ProgID = s 'LMXProxy.LMXProxyServer.1'` +- `ProxyServer` +- `ProxyServerDataChange` +- `RemoteWriteW` +- `ShutdownMxConsumerWW` +- `SupervisoryRegisterPreboundReferencex` +- `SuspendReference|` +- `UnregisterPreboundReferenceWt` +- `UserRegisterPreboundReferenceWWW` +- `VersionIndependentProgID = s 'LMXProxy.LMXProxyServer'` +- `WriteSecured` +- `WriteSecured2WWW` +- `[MX_E_NmxVersionMismatchW` +- `_ILMXProxyServerEvents InterfaceWW!` +- `_ILMXProxyServerEvents2 InterfaceW` +- `_ILMXProxyServerEvents2W4!` +- `a_ILMXProxyServerEventsWW` +- `d:\bldsrc\6\s\src\lmxproxy\mxcallback.h` +- `hLMXServerHandle` +- `lMX_E_NmxInvalidCommandWW` +- `lmxproxy is loaded by internal Process and mxaccess licensing is not required` +- `lmxproxy loaded by the Process ProcessName :%s` +- `nMxCategoryPendingWWWd` +- `nMxQualifiedStructWWW`` +- `phLMXServerHandleWWW` +- `preboundRefHandleWWW` +- `vWrite2WW` diff --git a/analysis/native/NmxAdptr.dll.md b/analysis/native/NmxAdptr.dll.md new file mode 100644 index 0000000..417b3a3 --- /dev/null +++ b/analysis/native/NmxAdptr.dll.md @@ -0,0 +1,249 @@ +# NmxAdptr.dll + +- Path: `C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxAdptr.dll` +- Size: 369536 bytes +- Machine: x86 +- PE timestamp: 2020-04-06T01:17:01+00:00 +- ImageBase: `0x10000000` + +## Exports + +| Ordinal | RVA | Name | +| ---: | ---: | --- | +| 1 | 0x00016d93 | `DllCanUnloadNow` | +| 2 | 0x0001e66a | `DllGetClassObject` | +| 3 | 0x0001ee73 | `DllRegisterServer` | +| 4 | 0x0001ee82 | `DllUnregisterServer` | + +## Imports + +- `WS2_32.dll`: `gethostbyname`, `inet_addr`, `setsockopt`, `WSACleanup`, `WSAGetLastError`, `WSASocketW`, `inet_ntoa`, `sendto`, `recvfrom`, `select`, `closesocket`, `WSAStartup` +- `KERNEL32.dll`: `UnmapViewOfFile`, `lstrlenW`, `GetLastError`, `EnterCriticalSection`, `LeaveCriticalSection`, `InitializeCriticalSectionAndSpinCount`, `DeleteCriticalSection`, `GetProcAddress`, `GetModuleHandleW`, `FreeLibrary`, `FindClose`, `FindFirstFileW`, `GetModuleFileNameW`, `InterlockedIncrement`, `LocalFree`, `GetSystemDirectoryW`, `GetWindowsDirectoryW`, `LoadLibraryExW`, `FindNextFileW`, `LocalAlloc`, `FormatMessageW`, `CreateDirectoryW`, `MultiByteToWideChar`, `lstrlenA`, `GetCurrentThreadId`, `GetLocalTime`, `InterlockedDecrement`, `OutputDebugStringW`, `MapViewOfFile`, `OpenFileMappingW`, `CreateFileMappingW`, `GetTickCount`, `DeleteFileW`, `GetCurrentProcess`, `GetCurrentProcessId`, `CreateFileW`, `GetComputerNameW`, `SetEvent`, `WaitForMultipleObjects`, `CreateThread`, `CreateEventW`, `TerminateThread`, `ReleaseMutex`, `WriteFile`, `SetFilePointer`, `GetPrivateProfileIntA`, `GetModuleFileNameA`, `GetPrivateProfileStringA`, `CreateFileA`, `OutputDebugStringA`, `GetFileAttributesW`, `DisableThreadLibraryCalls`, `WideCharToMultiByte`, `Sleep`, `HeapFree`, `HeapAlloc`, `GetProcessHeap`, `RaiseException`, `EncodePointer`, `GetSystemTimeAsFileTime`, `QueryPerformanceCounter`, `IsDebuggerPresent`, `SetUnhandledExceptionFilter`, `WaitForSingleObject`, `CloseHandle`, `CreateMutexW`, `DecodePointer`, `InterlockedExchange`, `InterlockedCompareExchange`, `TerminateProcess`, `UnhandledExceptionFilter`, `FlushFileBuffers` +- `USER32.dll`: `CharNextW`, `wsprintfA`, `UnregisterClassW`, `InSendMessageEx` +- `ADVAPI32.dll`: `SetSecurityDescriptorDacl`, `RegOpenKeyExW`, `RegCloseKey`, `RegQueryValueExW`, `RegSetValueExW`, `InitializeSecurityDescriptor` +- `ole32.dll`: `CoTaskMemAlloc`, `CoUninitialize`, `CoCreateFreeThreadedMarshaler`, `CoFileTimeNow`, `CoTaskMemRealloc`, `CoInitialize`, `CoCreateInstance`, `CoTaskMemFree` +- `OLEAUT32.dll`: `VariantInit`, `VariantClear`, `VariantChangeType`, `SysStringLen`, `SysFreeString`, `VarBstrCat`, `SysAllocString`, `SysAllocStringByteLen`, `SysStringByteLen`, `SysAllocStringLen`, `SetErrorInfo`, `GetErrorInfo`, `UnRegisterTypeLib`, `RegisterTypeLib`, `CreateErrorInfo` +- `ATL100.DLL`: `ord_64`, `ord_61`, `ord_68`, `ord_56`, `ord_49`, `ord_15`, `ord_32`, `ord_23`, `ord_30` +- `SHLWAPI.dll`: `PathAppendW`, `PathRemoveFileSpecW` +- `MSVCP100.dll`: `??0?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAE@XZ`, `?_Pninc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEPA_WXZ`, `??1?$basic_iostream@_WU?$char_traits@_W@std@@@std@@UAE@XZ`, `?width@ios_base@std@@QBE_JXZ`, `?flags@ios_base@std@@QBEHXZ`, `?fill@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBE_WXZ`, `?sputc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEG_W@Z`, `?sputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAE_JPB_W_J@Z`, `?width@ios_base@std@@QAE_J_J@Z`, `?setstate@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEXH_N@Z`, `?uncaught_exception@std@@YA_NXZ`, `?_Osfx@?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEXXZ`, `?good@ios_base@std@@QBE_NXZ`, `?tie@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBEPAV?$basic_ostream@_WU?$char_traits@_W@std@@@2@XZ`, `?flush@?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV12@XZ`, `?_BADOFF@std@@3_JB`, `?pbase@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W00@Z`, `?pbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXH@Z`, `?setg@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W00@Z`, `??0?$basic_iostream@_WU?$char_traits@_W@std@@@std@@QAE@PAV?$basic_streambuf@_WU?$char_traits@_W@std@@@1@@Z`, `??0?$basic_ios@_WU?$char_traits@_W@std@@@std@@IAE@XZ`, `?_Orphan_all@_Container_base0@std@@QAEXXZ`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z`, `?ends@std@@YAAAV?$basic_ostream@_WU?$char_traits@_W@std@@@1@AAV21@@Z`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@J@Z`, `??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@P6AAAVios_base@1@AAV21@@Z@Z`, `??1?$basic_ios@_WU?$char_traits@_W@std@@@std@@UAE@XZ`, `?gbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXH@Z`, `?gptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?imbue@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEXABVlocale@2@@Z`, `?setf@ios_base@std@@QAEHHH@Z`, `?_Xout_of_range@std@@YAXPBD@Z`, `?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W0@Z`, `?sync@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEHXZ`, `?eback@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?egptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?epptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?pptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ`, `?_Xlength_error@std@@YAXPBD@Z`, `?rdbuf@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBEPAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@XZ`, `??1?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UAE@XZ`, `?_Lock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UAEXXZ`, `?_Unlock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UAEXXZ`, `?showmanyc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE_JXZ`, `?uflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGXZ`, `?xsgetn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE_JPA_W_J@Z`, `?xsputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE_JPB_W_J@Z`, `?setbuf@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEPAV12@PA_W_J@Z` +- `dbghelp.dll`: `MiniDumpWriteDump` +- `MSVCR100.dll`: `realloc`, `_unlock`, `__dllonexit`, `_lock`, `sprintf_s`, `vsprintf_s`, `strlen`, `strncpy_s`, `fopen_s`, `fclose`, `fprintf`, `_snprintf_s`, `_purecall`, `wcsncpy_s`, `strrchr`, `_wcsicmp`, `_onexit`, `?terminate@@YAXXZ`, `_malloc_crt`, `_encoded_null`, `_initterm`, `_initterm_e`, `_amsg_exit`, `__CppXcptFilter`, `_except_handler4_common`, `?_type_info_dtor_internal_method@type_info@@QAEXXZ`, `_crt_debugger_hook`, `__clean_type_info_names_internal`, `malloc`, `_vsnwprintf_s`, `swprintf_s`, `memmove_s`, `_stricmp`, `??3@YAXPAX@Z`, `wcsrchr`, `free`, `memcmp`, `memcpy_s`, `strstr`, `memcpy`, `memmove`, `??2@YAPAXI@Z`, `__CxxFrameHandler3`, `_snwprintf_s`, `_CxxThrowException`, `memset`, `wcscat_s`, `_wsplitpath_s`, `??_V@YAXPAX@Z`, `??1exception@std@@UAE@XZ`, `??0exception@std@@QAE@ABQBD@Z`, `?what@exception@std@@UBEPBDXZ`, `wcslen`, `??0exception@std@@QAE@ABV01@@Z`, `?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z`, `_splitpath_s`, `_makepath_s`, `calloc`, `_recalloc`, `wcscpy_s`, `wcscmp` + +## Resources + +| Type | ID/name | Lang | RVA | Size | +| --- | --- | ---: | ---: | ---: | +| `REGISTRY` | `101` | 1033 | 0x0003d1cc | 628 | +| `REGISTRY` | `102` | 1033 | 0x0003d440 | 641 | +| `TYPELIB` | `1` | 1033 | 0x0003d6c4 | 108824 | +| `6` | `7` | 1033 | 0x00057fdc | 48 | +| `16` | `1` | 1033 | 0x0005800c | 964 | +| `24` | `2` | 1033 | 0x000583d0 | 346 | + +## GUID hits + +(none) + +## Interesting strings + +- ` _lNetNMXHeartbeatsMissedCntWWl` +- `!0m=NMXMTYPE_HEARTBEAT_DISCONNECT_REQWWW` +- `!SlNetNMXHeartbeatPeriodWWl` +- `(preboundReferenceHandleW<(` +- `)pNmxStatsInfoWWWx7` +- `********** End of Nmx Dump **********` +- `-__MIDL___MIDL_itf_NmxAdptr_0001_0081_0001WWW` +- `.?AUINmx2@@` +- `.?AUINmx3@@` +- `.?AUINmx4@@` +- `.?AUINmx@@` +- `.?AUINmxHeartbeat@@` +- `.?AUINmxStatistics@@` +- `.?AUINmxSvcCallback@@` +- `.?AUINmxSvcStatistics@@` +- `.?AV?$CComCoClass@VCNmxAdapter@@$1?CLSID_Nmx@@3U_GUID@@B@ATL@@` +- `.?AV?$CComCoClass@VCNmxStatistics@@$1?CLSID_NmxStatistics@@3U_GUID@@B@ATL@@` +- `.?AV?$CComObject@VCNmxAdapter@@@ATL@@` +- `.?AV?$CComObject@VCNmxStatistics@@@ATL@@` +- `.?AVCNmxAdapter@@` +- `.?AVCNmxAdptrStats@@` +- `.?AVCNmxStatistics@@` +- `/PutRequestEx@` +- `0()MxSourceRequestingNmxWWW` +- `0` +- `=NMXMTYPE_SET_HEARTBEAT_RATEW` +- `>NMXMTYPE_VERSION_ERRORWW` +- `Adapter_%d CNmxAdapter::PutRequest received invalid argument. Size is %d` +- `Adapter_%d CNmxAdapter::PutRequest received invalid pointer.` +- `Adapter_%d Enter PutRequest. Destination Platform %d Engine %d is OVERLOADED` +- `Adapter_%d Enter PutRequest. Destination: Platform %d, Engine %d. Size = %d` +- `Adapter_%d Enter PutRequestEx. Destination: Platform %d, Engine %d. Size = %d` +- `Adapter_%d GetResponse from Platform %d Engine %d, Cookie=%d, Size=%d, RespCode=%x` +- `Adapter_%d PutRequest failed. Dest Platform=%d, Engine=%d. Cookie=%d.` +- `Adapter_%d PutRequest successfully to Platform=%d, Engine=%d. Cookie=%d.` +- `Adapter_%d PutRequestEx failed. Dest Platform=%d, Engine=%d.` +- `Adapter_%d PutRequestEx successfully to Platform=%d, Engine=%d. ` +- `Adapter_%d couldn't Initialize NmxSvc.` +- `Any User cam write to these attributes. No security checking is done.Wa` +- `C:\nmx_objectdebug.ini` +- `CNmxAdapter::CheckTimeouts - calling TransferData to platform %d, engine %d, message %S` +- `CNmxAdapter::CleanRequests - calling ProcessDataReceived to platform %d, engine %d, message %s` +- `CNmxAdapter::ClearStats m_pListAnonymousID is set to NULL` +- `CNmxAdapter::ClearStats succeded` +- `CNmxAdapter::FinalRelease - enter` +- `CNmxAdapter::FinalRelease - exited` +- `CNmxAdapter::GenerateErrorRequest - failed to allocate memory size %d` +- `CNmxAdapter::GenerateErrorRequest() entered.` +- `CNmxAdapter::GenerateErrorRequest() exited.` +- `CNmxAdapter::GetAnonymousEngineID - *m_pListAnonymousID %d` +- `CNmxAdapter::GetAnonymousEngineID - *pEngineID %d` +- `CNmxAdapter::GetAnonymousEngineID - ENTER` +- `CNmxAdapter::GetAnonymousEngineID - FAILED` +- `CNmxAdapter::GetAnonymousEngineID - m_pNmxStats == NULL` +- `CNmxAdapter::GetPartnerVersion NmxSvc pointer 0x%x, hr 0x%x` +- `CNmxAdapter::GetPartnerVersion NmxSvc pointer reinitialized 0x%x, hr 0x%x` +- `CNmxAdapter::GetPartnerVersion for platform lPlatformId %d, plVersion %d hr 0x%x` +- `CNmxAdapter::GetPriorityRequest - Discarding expired %d byte message from P%d E%d (cookie %d). In total: %d messages %I64d bytes` +- `CNmxAdapter::GetResponse - ENTER: found a response for Engine %d` +- `CNmxAdapter::GetResponse - GetPacketsSentInfo return NULL ptr for C%d P%d E%d` +- `CNmxAdapter::GetResponse - m_Id.EngineId %d from Platform %d Engine %d, Cookie=%d, Size=%d, RespCode=%x` +- `CNmxAdapter::GetResponse - m_Id.EngineId %d got an exception` +- `CNmxAdapter::GetResponse - m_Id.EngineId Platform %d Engine %d, *pdwRequestHandle %d *pdwSize %d *pdwResponseCode %x` +- `CNmxAdapter::Initialize - EXIT` +- `CNmxAdapter::Initialize - GetAnonymousEngineID FAILED.` +- `CNmxAdapter::InitializeAnonymous - ENTER pPlatformId %d pEngineId %d` +- `CNmxAdapter::InitializeAnonymous - EXIT` +- `CNmxAdapter::InitializeAnonymous - InitNmxStats FAILED` +- `CNmxAdapter::ParseExtendedRequest - DISABLE_ENGINE_DIAGS on C%d P%d E%d` +- `CNmxAdapter::ParseExtendedRequest - ENABLE_ENGINE_DIAGS on C%d P%d E%d` +- `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL1 on C%d P%d E%d` +- `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL2 on C%d P%d E%d` +- `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL3 on C%d P%d E%d` +- `CNmxAdapter::ParseExtendedRequest - NMX_DUMP_LEVEL4 on C%d P%d E%d` +- `CNmxAdapter::PutBadVersionResponse - Adapter_%d Failed PutResponse to Platform %d, Engine %d. Cookie=%d. TransferData Error=%x` +- `CNmxAdapter::PutBadVersionResponse - Adapter_%d PutResponse to Platform %d, Engine %d. Cookie=%d. Size = %d.` +- `CNmxAdapter::PutBadVersionResponse - calling TransferData to platform %d engine %d dwSize %d message %S` +- `CNmxAdapter::PutRequest - ENTER m_Id.EngineId %d Destination: Platform %d, Engine %d. Size = %d` +- `CNmxAdapter::PutRequest - FAILED (hr = %X). Sending from EngineId %d to dwPlatformId %d dwEngineId %d. *pdwRequestHandle %d.` +- `CNmxAdapter::PutRequest - m_Id.EngineId %d successfully to Platform=%d, Engine=%d. Cookie=%d` +- `CNmxAdapter::PutRequestEx - ENTER m_Id.EngineId %d Destination: Platform %d, Engine %d. Size = %d` +- `CNmxAdapter::PutRequestEx - TransferData FAILED (hr = %X). Sending from EngineId %d to dwPlatformId %d dwEngineId %d.` +- `CNmxAdapter::PutRequestEx - calling TransferData to platform %d engine %d %x dwSize %d message %S` +- `CNmxAdapter::PutRequestEx - m_Id.EngineId %d successfully put request to Platform=%d, Engine=%d.` +- `CNmxAdapter::PutResponse - Adapter_%d Failed to put response to Platform %d, Engine %d. Cookie=%d. Error=%x` +- `CNmxAdapter::PutResponse - Adapter_%d PutResponse to Platform %d, Engine %d. Cookie=%d. Size = %d.` +- `CNmxAdapter::PutResponse - calling TransferData to platform %d dwSize %d message %S` +- `CNmxAdapter::RemoveSubscriberEngine SyncCallThreadFn timed out` +- `CNmxAdapter::RemoveSubscriberEngine SyncCallThreadFn was called. Return value is 0x%x.` +- `CNmxAdapter::RemoveSubscriberEngine is called, but current window procedure is processing a input-synchronous message.` +- `CNmxAdapter::SyncCallThreadFn exited` +- `CNmxAdapter::TransferData FAILED. NmxSvc cannot be created` +- `CNmxAdapter::TransferData recreating NmxSvc` +- `CNmxAdapter::isEngineValid Unknown error from Bootstrap::GetPlatformIdentity(), hr = %x` +- `CNmxAdapter::~CNmxAdapter - enter` +- `CNmxAdapter::~CNmxAdapter - exit` +- `CNmxAdapter_%d::GetConnectionInfo - will connect to platform %d` +- `Calling ReRegisterNmxSvc in TransferData because NmxSvc pointer is bad.` +- `CoTaskMemAlloc() failed in CNmxAdapter::GetRequest()` +- `CoTaskMemAlloc() failed in CNmxAdapter::GetResponse()` +- `CoTaskMemAlloc() failed in CNmxAdapter::PutBadVersionResponse()` +- `CoTaskMemAlloc() failed in CNmxAdapter::PutRequestEx()` +- `CurVer = s 'NmxAdptr.NmxStatistics.1'` +- `CurVer = s 'WonderWare.Nmx.CNmxAdapter.1'` +- `E:\BldSrc\6\s\src\Nmx\NmxAdptr\Release\NmxAdptr.pdb` +- `EGetResponse2` +- `ElNmxMsgMxTimeout` +- `FC:\nmxdebug.ini` +- `Failed to create share memory for NmxStatistics` +- `Failed to locate MiniDumpWriteDump to generate minidump. Maybe old version of dbghelp.dll is being used.` +- `ForceRemove {4169B47A-54BD-11D3-A9CC-00A0C9FB55A0} = s 'NmxStatistics Class'` +- `ForceRemove {42DB0511-28BE-11D3-80C0-00104B5F96A7} = s 'NmxAdptr'` +- `GetNmxStatistics` +- `GetNmxSvcStatisticsW` +- `GetResponseW` +- `Global\Nmx.Statistic` +- `Global\Nmx.Statistic.Lock` +- `IBootstrapController Interface` +- `IBootstrapController2 InterfaceWWW` +- `IBootstrapController3 InterfaceWWW'` +- `IBootstrapController4 InterfaceWWW` +- `IBootstrapController5 InterfaceWWW` +- `IBootstrapProcessController InterfaceW` +- `IBootstrapRegister InterfaceWW!` +- `IBootstrapRegister2 InterfaceW` +- `IBootstrapRegister3 InterfaceW` +- `IBootstrapRegister4 InterfaceW` +- `IBootstrapRegister5 InterfaceW` +- `IBootstrapRegister6 InterfaceW"` +- `IBootstrapRegistryAccess Interface%` +- `IBootstrapStatusCallback Interface` +- `IFMC Interface` +- `IFMCCallback Interface` +- `IInfoNotify InterfaceW` +- `IMCHeartbeatCallback Interface` +- `INmx2WWW` +- `INmx3WWW@` +- `INmx4WWW` +- `INmxHeartbeatWWW` +- `INmxNotifyWW` +- `INmxService InterfaceW` +- `INmxService2 Interface` +- `INmxServiceWd` +- `INmxStatistics InterfaceWW` +- `INmxStatus InterfaceWW` +- `INmxStatusWW` +- `INmxSvcCallbackW` +- `IPlatformInfoServer InterfaceW` +- `IPlatformInfoServer2 Interface` +- `IPlatformInformationClerk InterfaceWWW$` +- `IPlatformInformationClerk2 InterfaceWW$` +- `IPlatformInformationClerk3 InterfaceWW` +- `IPlatformStatusCallback InterfaceW` +- `IProcessStatusCallback InterfaceWW` +- `IStatusNotify InterfaceWWW` +- `IUdpMessage InterfaceW` +- `InitializeAnonymous() - InitNmxService failed.` +- `InternalAddRef() CNmxAdapter::%p refcount = %d` +- `InternalRelease() CNmxAdapter::%p refcount = %d` +- `MINmxService2` +- `MX_E_LmxVersionMismatchW ` +- `MX_E_NotWriteableWWW ` +- `MX_E_VerifiedWriteWW ` +- `MX_E_WriteAccessDeniedWW ` +- `MiniDumpWriteDump` +- `MxSecuritySecuredWriteWW` +- `MxSourceRequestingLmxWWW` +- `MxSourceRespondingLmxWWW` +- `MxSourceRespondingNmxWWW` +- `NMX Header %s: buffer size pktHeader.dwDataSize %d doesn't match received message size of %d` +- `NMXMTYPE_CONNECT_INFOWWW` +- `NMXMTYPE_CONNECT_INFO_REQWWW` +- `NMXMTYPE_ENGINE_DATA` +- `NMXMTYPE_GET_HEARTBEAT_RATEW` +- `NMXMTYPE_PLATFORM_HEARTBEATW` +- `NPutRequest2W` +- `NmxAdapter.cpp` +- `NmxAdptr` +- `NmxAdptr CoCreateInstance for NmxSvc returned error 0x%x` +- `NmxAdptr Module` +- `NmxAdptr.DLL` +- `NmxAdptr.NmxStatistics = s 'NmxStatistics Class'` +- `NmxAdptr.NmxStatistics.1 = s 'NmxStatistics Class'` +- `NmxQueueError` +- `NmxQueueHandle` +- `NmxRefCount` +- `NmxService ClassWW` +- `NmxServiceWW` +- `NmxStatistics ClassWWW#` +- `NmxStatistics.cpp` +- `NmxStatisticsWWW` +- `NmxSubscriberEngine` +- ... 72 more diff --git a/analysis/native/NmxSvcps.dll.md b/analysis/native/NmxSvcps.dll.md new file mode 100644 index 0000000..bef2541 --- /dev/null +++ b/analysis/native/NmxSvcps.dll.md @@ -0,0 +1,68 @@ +# NmxSvcps.dll + +- Path: `C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvcps.dll` +- Size: 46464 bytes +- Machine: x86 +- PE timestamp: 2020-04-06T01:17:23+00:00 +- ImageBase: `0x10000000` + +## Exports + +| Ordinal | RVA | Name | +| ---: | ---: | --- | +| 1 | 0x00001040 | `DllCanUnloadNow` | +| 2 | 0x00001000 | `DllGetClassObject` | +| 3 | 0x000010a0 | `DllRegisterServer` | +| 4 | 0x000010e0 | `DllUnregisterServer` | + +## Imports + +- `RPCRT4.dll`: `NdrOleAllocate`, `NdrOleFree`, `IUnknown_QueryInterface_Proxy`, `IUnknown_AddRef_Proxy`, `IUnknown_Release_Proxy`, `CStdStubBuffer_QueryInterface`, `CStdStubBuffer_AddRef`, `CStdStubBuffer_Connect`, `CStdStubBuffer_Disconnect`, `CStdStubBuffer_Invoke`, `CStdStubBuffer_IsIIDSupported`, `CStdStubBuffer_CountRefs`, `CStdStubBuffer_DebugServerQueryInterface`, `CStdStubBuffer_DebugServerRelease`, `NdrDllUnregisterProxy`, `NdrDllRegisterProxy`, `NdrCStdStubBuffer_Release`, `NdrDllCanUnloadNow`, `NdrDllGetClassObject` +- `KERNEL32.dll`: `ExitProcess`, `HeapSize`, `GetStringTypeW`, `MultiByteToWideChar`, `LCMapStringW`, `RtlUnwind`, `GetModuleFileNameW`, `WriteFile`, `GetCurrentProcess`, `TerminateProcess`, `IsDebuggerPresent`, `SetUnhandledExceptionFilter`, `UnhandledExceptionFilter`, `LoadLibraryW`, `HeapReAlloc`, `HeapAlloc`, `DisableThreadLibraryCalls`, `IsValidCodePage`, `GetOEMCP`, `GetACP`, `GetCPInfo`, `EnterCriticalSection`, `GetCurrentThreadId`, `DecodePointer`, `GetCommandLineA`, `EncodePointer`, `TlsAlloc`, `TlsGetValue`, `TlsSetValue`, `TlsFree`, `InterlockedIncrement`, `GetModuleHandleW`, `SetLastError`, `GetLastError`, `InterlockedDecrement`, `GetProcAddress`, `HeapFree`, `Sleep`, `IsProcessorFeaturePresent`, `SetHandleCount`, `GetStdHandle`, `InitializeCriticalSectionAndSpinCount`, `GetFileType`, `GetStartupInfoW`, `DeleteCriticalSection`, `GetModuleFileNameA`, `FreeEnvironmentStringsW`, `WideCharToMultiByte`, `GetEnvironmentStringsW`, `HeapCreate`, `HeapDestroy`, `QueryPerformanceCounter`, `GetTickCount`, `GetCurrentProcessId`, `GetSystemTimeAsFileTime`, `LeaveCriticalSection` +- `OLEAUT32.dll`: `BSTR_UserSize`, `BSTR_UserMarshal`, `BSTR_UserUnmarshal`, `BSTR_UserFree` + +## Resources + +| Type | ID/name | Lang | RVA | Size | +| --- | --- | ---: | ---: | ---: | +| `16` | `1` | 1033 | 0x0000c0a0 | 972 | +| `24` | `2` | 1033 | 0x0000c46c | 346 | + +## GUID hits + +(none) + +## Interesting strings + +- `CStdStubBuffer_AddRef` +- `CStdStubBuffer_Connect` +- `CStdStubBuffer_CountRefs` +- `CStdStubBuffer_DebugServerQueryInterface` +- `CStdStubBuffer_DebugServerRelease` +- `CStdStubBuffer_Disconnect` +- `CStdStubBuffer_Invoke` +- `CStdStubBuffer_IsIIDSupported` +- `CStdStubBuffer_QueryInterface` +- `INmxNotify` +- `INmxService` +- `INmxService2` +- `INmxStatus` +- `INmxSvcCallback` +- `INmxSvcStatistics` +- `IUnknown_AddRef_Proxy` +- `IUnknown_QueryInterface_Proxy` +- `IUnknown_Release_Proxy` +- `NdrCStdStubBuffer_Release` +- `NdrDllCanUnloadNow` +- `NdrDllGetClassObject` +- `NdrDllRegisterProxy` +- `NdrDllUnregisterProxy` +- `NdrOleAllocate` +- `NdrOleFree` +- `NmxSvcPS.dll` +- `NmxSvc_v0032` +- `NmxSvcps Module` +- `NmxSvcps.dll` +- `RPCRT4.dll` +- `WriteFile` +- ``.orpc` diff --git a/analysis/native/WWProxyStub.dll.md b/analysis/native/WWProxyStub.dll.md new file mode 100644 index 0000000..ceea77a --- /dev/null +++ b/analysis/native/WWProxyStub.dll.md @@ -0,0 +1,37 @@ +# WWProxyStub.dll + +- Path: `C:\Program Files (x86)\ArchestrA\Framework\Bin\WWProxyStub.dll` +- Size: 9880 bytes +- Machine: x86 +- PE timestamp: 2020-04-08T00:24:04+00:00 +- ImageBase: `0x10000000` + +## Exports + +| Ordinal | RVA | Name | +| ---: | ---: | --- | +| 1 | 0x00001020 | `DllCanUnloadNow` | +| 2 | 0x00001010 | `DllGetClassObject` | +| 3 | 0x00001030 | `DllRegisterServer` | +| 4 | 0x00001040 | `DllUnregisterServer` | + +## Imports + +(none) + +## Resources + +| Type | ID/name | Lang | RVA | Size | +| --- | --- | ---: | ---: | ---: | +| `16` | `1` | 1033 | 0x000030a0 | 1016 | +| `24` | `2` | 1033 | 0x00003498 | 346 | + +## GUID hits + +(none) + +## Interesting strings + +- `WWProxyStub Module` +- `WWProxyStub.DLL` +- `WWProxyStub.dll` diff --git a/analysis/network/dcerpc-loopback-summary.tsv b/analysis/network/dcerpc-loopback-summary.tsv new file mode 100644 index 0000000..8784daf --- /dev/null +++ b/analysis/network/dcerpc-loopback-summary.tsv @@ -0,0 +1,127 @@ +capture stream packet_type context_id opnum count frag_lengths +013-loopback-subscribe-scalars 13 0 1 3 165 104:1,106:1,108:2,112:2,114:2,116:6,118:5,120:8,122:5,124:7,126:7,128:10,130:14,132:10,134:9,136:7,138:8,140:5,142:8,144:6,146:10,148:5,150:3,152:4,154:4,156:2,158:4,160:2,162:4,170:1,172:1,174:1,182:1 +013-loopback-subscribe-scalars 13 2 1 3 165 32:165 +013-loopback-subscribe-scalars 13 0 0 0 10 40:10 +013-loopback-subscribe-scalars 13 0 1 0 10 100:1,104:1,108:1,112:2,128:1,84:1,92:1,96:2 +013-loopback-subscribe-scalars 13 0 1 2 10 60:10 +013-loopback-subscribe-scalars 13 2 0 0 10 44:10 +013-loopback-subscribe-scalars 13 2 1 0 10 28:10 +013-loopback-subscribe-scalars 13 2 1 2 10 92:10 +013-loopback-subscribe-scalars 13 0 1 5 3 206:1,290:1,516:1 +013-loopback-subscribe-scalars 13 2 1 5 3 28:3 +013-loopback-subscribe-scalars 13 11 0,1 1 116:1 +013-loopback-subscribe-scalars 13 12 1 84:1 +013-loopback-subscribe-scalars 13 14 1 1 72:1 +013-loopback-subscribe-scalars 13 15 1 56:1 +013-loopback-subscribe-scalars 44 0 1 5 1 242:1 +013-loopback-subscribe-scalars 44 2 1 1 28:1 +014-loopback-subscribe-array-bracketed 14 0 1 3 165 104:1,106:1,108:2,112:2,114:2,116:6,118:5,120:8,122:5,124:7,126:7,128:10,130:14,132:10,134:9,136:7,138:8,140:5,142:8,144:6,146:10,148:5,150:3,152:4,154:4,156:2,158:4,160:2,162:4,170:1,172:1,174:1,182:1 +014-loopback-subscribe-array-bracketed 14 2 1 3 165 32:165 +014-loopback-subscribe-array-bracketed 14 0 0 0 10 40:10 +014-loopback-subscribe-array-bracketed 14 0 1 0 10 100:1,104:1,108:1,112:2,128:1,84:1,92:1,96:2 +014-loopback-subscribe-array-bracketed 14 0 1 2 10 60:10 +014-loopback-subscribe-array-bracketed 14 2 0 0 10 44:10 +014-loopback-subscribe-array-bracketed 14 2 1 0 10 28:10 +014-loopback-subscribe-array-bracketed 14 2 1 2 10 92:10 +014-loopback-subscribe-array-bracketed 14 0 1 5 3 206:1,290:1,516:1 +014-loopback-subscribe-array-bracketed 14 2 1 5 3 28:3 +014-loopback-subscribe-array-bracketed 14 11 0,1 1 116:1 +014-loopback-subscribe-array-bracketed 14 12 1 84:1 +014-loopback-subscribe-array-bracketed 14 14 1 1 72:1 +014-loopback-subscribe-array-bracketed 14 15 1 56:1 +014-loopback-subscribe-array-bracketed 59 0 1 5 1 242:1 +014-loopback-subscribe-array-bracketed 59 2 1 1 28:1 +015-loopback-subscribe-invalid 16 0 1 3 176 104:1,106:1,108:2,112:2,114:2,116:6,118:5,120:8,122:5,124:8,126:8,128:12,130:14,132:11,134:10,136:8,138:11,140:5,142:8,144:6,146:10,148:5,150:4,152:4,154:4,156:2,158:4,160:2,162:4,170:1,172:1,174:1,182:1 +015-loopback-subscribe-invalid 16 2 1 3 176 32:176 +015-loopback-subscribe-invalid 16 0 0 0 11 40:11 +015-loopback-subscribe-invalid 16 0 1 0 11 100:1,104:2,108:1,112:2,128:1,84:1,92:1,96:2 +015-loopback-subscribe-invalid 16 0 1 2 11 60:11 +015-loopback-subscribe-invalid 16 2 0 0 11 44:11 +015-loopback-subscribe-invalid 16 2 1 0 11 28:11 +015-loopback-subscribe-invalid 16 2 1 2 11 92:11 +015-loopback-subscribe-invalid 16 0 1 5 3 206:1,290:1,516:1 +015-loopback-subscribe-invalid 16 2 1 5 3 28:3 +015-loopback-subscribe-invalid 16 11 0,1 1 116:1 +015-loopback-subscribe-invalid 16 12 1 84:1 +015-loopback-subscribe-invalid 16 14 1 1 72:1 +015-loopback-subscribe-invalid 16 15 1 56:1 +015-loopback-subscribe-invalid 46 0 1 5 1 242:1 +015-loopback-subscribe-invalid 46 2 1 1 28:1 +016-loopback-write-test-int-advised 11 0 1 3 165 104:1,106:1,108:2,112:2,114:2,116:6,118:5,120:8,122:5,124:7,126:7,128:10,130:14,132:10,134:9,136:7,138:8,140:5,142:8,144:6,146:10,148:5,150:3,152:4,154:4,156:2,158:4,160:2,162:4,170:1,172:1,174:1,182:1 +016-loopback-write-test-int-advised 11 2 1 3 165 32:165 +016-loopback-write-test-int-advised 22 2 1 42 28:3,32:36,92:3 +016-loopback-write-test-int-advised 22 0 1 3 36 124:3,126:3,128:6,132:3,134:3,136:3,138:12,150:3 +016-loopback-write-test-int-advised 11 0 0 0 10 40:10 +016-loopback-write-test-int-advised 11 0 1 0 10 100:1,104:1,108:1,112:2,128:1,84:1,92:1,96:2 +016-loopback-write-test-int-advised 11 0 1 2 10 60:10 +016-loopback-write-test-int-advised 11 2 0 0 10 44:10 +016-loopback-write-test-int-advised 11 2 1 0 10 28:10 +016-loopback-write-test-int-advised 11 2 1 2 10 92:10 +016-loopback-write-test-int-advised 22 2 0 6 44:6 +016-loopback-write-test-int-advised 11 0 1 5 3 206:1,290:1,516:1 +016-loopback-write-test-int-advised 11 2 1 5 3 28:3 +016-loopback-write-test-int-advised 22 0 0 0 3 40:3 +016-loopback-write-test-int-advised 22 0 0 1 3 60:3 +016-loopback-write-test-int-advised 22 0 1 0 3 104:3 +016-loopback-write-test-int-advised 22 0 1 2 3 60:3 +016-loopback-write-test-int-advised 11 11 0,1 1 116:1 +016-loopback-write-test-int-advised 11 12 1 84:1 +016-loopback-write-test-int-advised 11 14 1 1 72:1 +016-loopback-write-test-int-advised 11 15 1 56:1 +016-loopback-write-test-int-advised 60 0 1 5 1 242:1 +016-loopback-write-test-int-advised 60 2 1 1 28:1 +017-loopback-write-test-int-100 15 0 1 3 165 104:1,106:1,108:2,112:2,114:2,116:6,118:5,120:8,122:5,124:7,126:7,128:10,130:14,132:10,134:9,136:7,138:8,140:5,142:8,144:6,146:10,148:5,150:3,152:4,154:4,156:2,158:4,160:2,162:4,170:1,172:1,174:1,182:1 +017-loopback-write-test-int-100 15 2 1 3 165 32:165 +017-loopback-write-test-int-100 15 0 0 0 10 40:10 +017-loopback-write-test-int-100 15 0 1 0 10 100:1,104:1,108:1,112:2,128:1,84:1,92:1,96:2 +017-loopback-write-test-int-100 15 0 1 2 10 60:10 +017-loopback-write-test-int-100 15 2 0 0 10 44:10 +017-loopback-write-test-int-100 15 2 1 0 10 28:10 +017-loopback-write-test-int-100 15 2 1 2 10 92:10 +017-loopback-write-test-int-100 15 0 1 5 3 206:1,290:1,516:1 +017-loopback-write-test-int-100 15 2 1 5 3 28:3 +017-loopback-write-test-int-100 15 11 0,1 1 116:1 +017-loopback-write-test-int-100 15 12 1 84:1 +017-loopback-write-test-int-100 15 14 1 1 72:1 +017-loopback-write-test-int-100 15 15 1 56:1 +017-loopback-write-test-int-100 58 0 1 5 1 242:1 +017-loopback-write-test-int-100 58 2 1 1 28:1 +019-loopback-write-test-int-101-rerun 10 0 1 3 165 104:1,106:1,108:2,112:2,114:2,116:6,118:5,120:8,122:5,124:7,126:7,128:10,130:14,132:10,134:9,136:7,138:8,140:5,142:8,144:6,146:10,148:5,150:3,152:4,154:4,156:2,158:4,160:2,162:4,170:1,172:1,174:1,182:1 +019-loopback-write-test-int-101-rerun 10 2 1 3 165 32:165 +019-loopback-write-test-int-101-rerun 10 0 0 0 10 40:10 +019-loopback-write-test-int-101-rerun 10 0 1 0 10 100:1,104:1,108:1,112:2,128:1,84:1,92:1,96:2 +019-loopback-write-test-int-101-rerun 10 0 1 2 10 60:10 +019-loopback-write-test-int-101-rerun 10 2 0 0 10 44:10 +019-loopback-write-test-int-101-rerun 10 2 1 0 10 28:10 +019-loopback-write-test-int-101-rerun 10 2 1 2 10 92:10 +019-loopback-write-test-int-101-rerun 10 0 1 5 3 206:1,290:1,516:1 +019-loopback-write-test-int-101-rerun 10 2 1 5 3 28:3 +019-loopback-write-test-int-101-rerun 10 11 0,1 1 116:1 +019-loopback-write-test-int-101-rerun 10 12 1 84:1 +019-loopback-write-test-int-101-rerun 10 14 1 1 72:1 +019-loopback-write-test-int-101-rerun 10 15 1 56:1 +019-loopback-write-test-int-101-rerun 47 0 1 5 1 242:1 +019-loopback-write-test-int-101-rerun 47 2 1 1 28:1 +020-loopback-write-test-int-102 16 0 1 3 165 104:1,106:1,108:2,112:2,114:2,116:6,118:5,120:8,122:5,124:7,126:7,128:10,130:14,132:10,134:9,136:7,138:8,140:5,142:8,144:6,146:10,148:5,150:3,152:4,154:4,156:2,158:4,160:2,162:4,170:1,172:1,174:1,182:1 +020-loopback-write-test-int-102 16 2 1 3 165 32:165 +020-loopback-write-test-int-102 69 2 1 42 28:3,32:36,92:3 +020-loopback-write-test-int-102 69 0 1 3 36 124:3,126:3,128:6,132:3,134:3,136:3,138:12,150:3 +020-loopback-write-test-int-102 16 0 0 0 10 40:10 +020-loopback-write-test-int-102 16 0 1 0 10 100:1,104:1,108:1,112:2,128:1,84:1,92:1,96:2 +020-loopback-write-test-int-102 16 0 1 2 10 60:10 +020-loopback-write-test-int-102 16 2 0 0 10 44:10 +020-loopback-write-test-int-102 16 2 1 0 10 28:10 +020-loopback-write-test-int-102 16 2 1 2 10 92:10 +020-loopback-write-test-int-102 69 2 0 6 44:6 +020-loopback-write-test-int-102 16 0 1 5 3 206:1,290:1,516:1 +020-loopback-write-test-int-102 16 2 1 5 3 28:3 +020-loopback-write-test-int-102 69 0 0 0 3 40:3 +020-loopback-write-test-int-102 69 0 0 1 3 60:3 +020-loopback-write-test-int-102 69 0 1 0 3 104:3 +020-loopback-write-test-int-102 69 0 1 2 3 60:3 +020-loopback-write-test-int-102 16 11 0,1 1 116:1 +020-loopback-write-test-int-102 16 12 1 84:1 +020-loopback-write-test-int-102 16 14 1 1 72:1 +020-loopback-write-test-int-102 16 15 1 56:1 +020-loopback-write-test-int-102 56 0 1 5 1 242:1 +020-loopback-write-test-int-102 56 2 1 1 28:1 diff --git a/analysis/network/pcap-summary.txt b/analysis/network/pcap-summary.txt new file mode 100644 index 0000000..dd4ea66 --- /dev/null +++ b/analysis/network/pcap-summary.txt @@ -0,0 +1,627 @@ +capture C:\Users\dohertj2\Desktop\mxaccess\captures\001-register\network.pcapng +packets 1685 +ip_tcp_udp_packets 1643 +packets_with_payload 937 + +top_ports +proto port packet_refs +TCP 54893 926 +TCP 3389 926 +TCP 50100 566 +TCP 58013 193 +TCP 58019 188 +TCP 58018 185 +UDP 5353 76 +TCP 443 72 +TCP 58866 16 +UDP 1900 14 +TCP 52147 13 +UDP 137 12 +UDP 1743 10 +TCP 61298 6 +UDP 50162 6 +UDP 50164 6 +TCP 62960 6 +TCP 62081 6 +TCP 63448 5 +UDP 58866 3 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 520 261 15162 +TCP 10.100.0.48 3389 10.100.0.199 54893 406 269 28414 +TCP 10.100.0.48 50100 10.100.0.199 58013 106 103 7462 +TCP 10.100.0.48 50100 10.100.0.199 58019 104 103 7462 +TCP 10.100.0.48 50100 10.100.0.199 58018 102 101 7325 +TCP 10.100.0.199 58013 10.100.0.48 50100 87 11 601 +TCP 10.100.0.199 58019 10.100.0.48 50100 84 8 575 +TCP 10.100.0.199 58018 10.100.0.48 50100 83 8 223 +UDP 10.100.0.68 5353 224.0.0.251 5353 14 0 0 +UDP fe80::8a5:8540:271d:ed6f 5353 ff02::fb 5353 14 0 0 +TCP 10.100.0.48 58866 160.79.104.10 443 8 5 42618 +TCP 160.79.104.10 443 10.100.0.48 58866 8 4 2374 +TCP 104.18.37.228 443 10.100.0.48 52147 7 3 445 +UDP 10.100.0.48 50162 239.255.255.250 1900 6 6 822 +UDP 172.29.224.1 50164 239.255.255.250 1900 6 6 822 +TCP 10.100.0.48 52147 104.18.37.228 443 6 4 721 +TCP 20.9.155.153 443 10.100.0.48 61298 4 2 742 +TCP 34.149.66.137 443 10.100.0.48 63448 3 1 349 +UDP 10.100.0.48 137 10.100.0.255 137 3 0 0 +UDP 10.100.0.24 44455 10.100.0.255 32412 3 3 63 +UDP 10.100.0.24 54131 10.100.0.255 32414 3 3 63 +UDP 172.29.224.1 137 172.29.239.255 137 3 0 0 +TCP 10.100.0.48 62960 18.97.36.5 443 3 2 241 +TCP 18.97.36.5 443 10.100.0.48 62960 3 1 118 +TCP 10.100.0.48 62081 18.97.36.46 443 3 2 240 +TCP 18.97.36.46 443 10.100.0.48 62081 3 1 118 +UDP 10.100.0.48 64482 239.255.255.250 1900 2 2 782 +TCP 10.100.0.48 61298 20.9.155.153 443 2 1 1069 +TCP 10.100.0.48 63448 34.149.66.137 443 2 1 2915 +UDP 10.100.0.241 5353 224.0.0.251 5353 2 0 0 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\002-add-remove-scalar\network.pcapng +packets 1507 +ip_tcp_udp_packets 1459 +packets_with_payload 864 + +top_ports +proto port packet_refs +TCP 54893 808 +TCP 3389 808 +TCP 50100 509 +TCP 58019 171 +TCP 58013 170 +TCP 58018 168 +TCP 443 70 +UDP 1900 49 +UDP 64480 24 +TCP 61443 19 +TCP 52147 14 +UDP 5645 12 +UDP 64479 12 +TCP 53748 10 +UDP 5355 8 +UDP 58451 7 +UDP 64482 6 +TCP 61589 5 +TCP 62839 4 +UDP 53 4 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 447 232 13224 +TCP 10.100.0.48 3389 10.100.0.199 54893 361 234 25844 +TCP 10.100.0.48 50100 10.100.0.199 58019 93 93 6696 +TCP 10.100.0.48 50100 10.100.0.199 58013 92 91 6559 +TCP 10.100.0.48 50100 10.100.0.199 58018 91 91 6559 +TCP 10.100.0.199 58013 10.100.0.48 50100 78 8 223 +TCP 10.100.0.199 58019 10.100.0.48 50100 78 9 575 +TCP 10.100.0.199 58018 10.100.0.48 50100 77 7 210 +UDP fde1:ae41:8a00:452a:5dd:2fa8:9db2:54d9 64480 ff02::c 1900 24 24 7776 +UDP 10.100.0.99 5645 239.255.255.250 1900 12 12 3786 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 12 12 3888 +TCP 160.79.104.10 443 10.100.0.48 61443 11 5 2374 +TCP 10.100.0.48 61443 160.79.104.10 443 8 5 44676 +TCP 104.18.37.228 443 10.100.0.48 52147 8 4 449 +UDP 10.100.0.48 64482 10.100.0.40 58451 6 6 1626 +TCP fde1:ae41:8a00:452a:cb53:cf74:d597:4cba 53748 fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 443 6 2 1544 +TCP 10.100.0.48 52147 104.18.37.228 443 6 4 720 +TCP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 443 fde1:ae41:8a00:452a:cb53:cf74:d597:4cba 53748 4 0 0 +UDP 10.100.0.24 54131 10.100.0.255 32414 3 3 63 +TCP 34.149.66.137 443 10.100.0.48 61589 3 1 24 +TCP 172.64.155.209 443 10.100.0.48 61921 2 1 28 +TCP 10.100.0.48 62839 18.97.36.5 443 2 1 239 +TCP 18.97.36.5 443 10.100.0.48 62839 2 1 118 +UDP 10.100.0.24 44455 10.100.0.255 32412 2 2 42 +TCP 172.64.155.209 443 10.100.0.48 59909 2 1 28 +TCP 10.100.0.48 61589 34.149.66.137 443 2 1 24 +TCP 172.64.155.209 443 10.100.0.48 52177 2 1 28 +TCP 172.64.155.209 443 10.100.0.48 61843 2 1 28 +TCP 10.100.0.48 61921 172.64.155.209 443 1 1 32 +TCP 10.100.0.48 61827 172.64.155.209 443 1 1 1 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\003-subscribe-scalars\network.pcapng +packets 2474 +ip_tcp_udp_packets 2435 +packets_with_payload 1413 + +top_ports +proto port packet_refs +TCP 3389 814 +TCP 54893 814 +TCP 50100 803 +TCP 443 491 +TCP 58013 270 +TCP 58019 269 +TCP 58018 264 +TCP 61441 211 +TCP 61443 198 +TCP 1400 108 +UDP 443 60 +UDP 5353 54 +UDP 1900 53 +UDP 62841 33 +UDP 64830 27 +TCP 55426 25 +UDP 64479 24 +UDP 137 22 +TCP 55394 20 +TCP 55391 19 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 469 337 10419 +TCP 10.100.0.48 3389 10.100.0.199 54893 345 154 77867 +TCP 10.100.0.48 50100 10.100.0.199 58013 147 145 10444 +TCP 10.100.0.48 50100 10.100.0.199 58019 147 145 10444 +TCP 10.100.0.48 50100 10.100.0.199 58018 145 143 10307 +TCP 10.100.0.199 58013 10.100.0.48 50100 123 14 708 +TCP 10.100.0.199 58019 10.100.0.48 50100 122 14 708 +TCP 10.100.0.199 58018 10.100.0.48 50100 119 13 356 +TCP 160.79.104.10 443 10.100.0.48 61441 107 17 4114 +TCP 10.100.0.48 61441 160.79.104.10 443 104 93 1506610 +TCP 160.79.104.10 443 10.100.0.48 61443 102 3 1534 +TCP 10.100.0.48 61443 160.79.104.10 443 96 94 1512176 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 24 24 7776 +UDP 10.100.0.48 62841 172.64.155.209 443 17 17 11264 +UDP 172.64.155.209 443 10.100.0.48 62841 16 16 8163 +UDP 172.253.132.84 443 10.100.0.48 64830 15 15 5909 +TCP 160.79.104.10 443 10.100.0.48 55426 14 9 6245 +TCP 10.100.0.176 1400 10.100.0.48 55394 13 9 10944 +TCP 10.100.0.231 1400 10.100.0.48 55392 12 9 10952 +TCP 10.100.0.218 1400 10.100.0.48 55393 12 9 10950 +UDP 10.100.0.48 64482 239.255.255.250 1900 12 12 3984 +UDP 10.100.0.48 64830 172.253.132.84 443 12 12 6389 +TCP 10.100.0.67 1400 10.100.0.48 55391 11 8 10869 +TCP 10.100.0.48 55426 160.79.104.10 443 11 5 5336 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 11 11 3505 +UDP 192.168.1.2 5353 224.0.0.251 5353 10 0 0 +UDP fe80::a953:d8ad:7e8:ae04 5353 ff02::fb 5353 10 0 0 +TCP 10.100.0.250 1400 10.100.0.48 55389 9 5 6304 +TCP 10.100.0.160 1400 10.100.0.48 55390 8 5 6304 +TCP 10.100.0.48 55391 10.100.0.67 1400 8 1 146 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\004-subscribe-array-runtime-name\network.pcapng +packets 2243 +ip_tcp_udp_packets 2206 +packets_with_payload 1305 + +top_ports +proto port packet_refs +TCP 3389 1224 +TCP 54893 1224 +TCP 50100 731 +TCP 58019 246 +TCP 58018 244 +TCP 58013 241 +TCP 443 150 +TCP 55426 90 +UDP 1900 45 +UDP 5353 40 +UDP 64482 27 +TCP 52147 14 +TCP 61443 13 +UDP 64481 12 +UDP 137 12 +UDP 64479 12 +UDP 56889 8 +UDP 443 8 +UDP 35686 6 +TCP 54981 6 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 685 348 19836 +TCP 10.100.0.48 3389 10.100.0.199 54893 539 363 91030 +TCP 10.100.0.48 50100 10.100.0.199 58019 135 133 9644 +TCP 10.100.0.48 50100 10.100.0.199 58018 134 133 9644 +TCP 10.100.0.48 50100 10.100.0.199 58013 132 131 9507 +TCP 10.100.0.199 58019 10.100.0.48 50100 111 12 648 +TCP 10.100.0.199 58018 10.100.0.48 50100 110 11 635 +TCP 10.100.0.199 58013 10.100.0.48 50100 109 11 296 +TCP 160.79.104.10 443 10.100.0.48 55426 53 53 14382 +TCP 10.100.0.48 55426 160.79.104.10 443 37 0 0 +UDP 10.100.0.48 64482 239.255.255.250 1900 21 21 7017 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 12 12 3888 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 12 12 3888 +UDP fe80::6ad7:9aff:fe31:6c45 5353 ff02::fb 5353 9 0 0 +TCP 104.18.37.228 443 10.100.0.48 52147 8 4 668 +TCP 160.79.104.10 443 10.100.0.48 61443 7 5 2404 +TCP 10.100.0.48 61443 160.79.104.10 443 6 3 10705 +UDP 10.100.0.48 64482 10.100.0.24 35686 6 6 1626 +TCP 10.100.0.48 52147 104.18.37.228 443 6 4 721 +UDP 10.100.0.48 56889 104.18.32.47 443 4 4 2471 +UDP 104.18.32.47 443 10.100.0.48 56889 4 4 2599 +UDP 10.100.0.24 44455 10.100.0.255 32412 4 4 84 +UDP 10.100.0.24 54131 10.100.0.255 32414 4 4 84 +UDP 10.100.0.61 5353 224.0.0.251 5353 4 0 0 +UDP fe80::73:e4a0:2ab8:d4b8 5353 ff02::fb 5353 4 0 0 +UDP 10.100.0.48 137 10.100.0.255 137 3 0 0 +UDP 172.29.224.1 137 172.29.239.255 137 3 0 0 +TCP 10.100.0.48 54981 18.97.36.2 443 3 2 241 +TCP 18.97.36.2 443 10.100.0.48 54981 3 1 117 +TCP 10.100.0.48 61883 18.97.36.68 443 2 1 240 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\005-subscribe-array-bracketed-name\network.pcapng +packets 2036 +ip_tcp_udp_packets 1978 +packets_with_payload 1139 + +top_ports +proto port packet_refs +TCP 3389 1018 +TCP 54893 1018 +TCP 50100 754 +TCP 58019 252 +TCP 58018 252 +TCP 58013 250 +TCP 443 65 +UDP 5353 60 +UDP 1900 37 +UDP 58267 28 +UDP 443 28 +UDP 64482 18 +TCP 55376 15 +TCP 55426 14 +UDP 137 12 +UDP 64481 12 +UDP 64479 12 +UDP 1743 10 +UDP 35686 7 +TCP 55709 6 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 553 281 16017 +TCP 10.100.0.48 3389 10.100.0.199 54893 465 285 50661 +TCP 10.100.0.48 50100 10.100.0.199 58019 137 135 9737 +TCP 10.100.0.48 50100 10.100.0.199 58018 137 135 9737 +TCP 10.100.0.48 50100 10.100.0.199 58013 137 135 9737 +TCP 10.100.0.199 58019 10.100.0.48 50100 115 13 678 +TCP 10.100.0.199 58018 10.100.0.48 50100 115 13 678 +TCP 10.100.0.199 58013 10.100.0.48 50100 113 13 678 +UDP 142.250.177.78 443 10.100.0.48 58267 16 16 10522 +UDP 10.100.0.48 64482 239.255.255.250 1900 12 12 3984 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 12 12 3888 +UDP 10.100.0.48 58267 142.250.177.78 443 12 12 6198 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 12 12 3888 +TCP 172.64.155.209 443 10.100.0.48 55376 9 2 1679 +UDP 10.100.0.40 5353 224.0.0.251 5353 9 0 0 +UDP fde1:ae41:8a00:452a:cb53:cf74:d597:4cba 5353 ff02::fb 5353 9 0 0 +TCP 160.79.104.10 443 10.100.0.48 55426 8 4 2179 +TCP 10.100.0.48 55426 160.79.104.10 443 6 3 11198 +UDP 10.100.0.48 64482 10.100.0.24 35686 6 6 1626 +TCP 10.100.0.48 55376 172.64.155.209 443 6 5 66364 +UDP 10.100.0.24 44455 10.100.0.255 32412 4 4 84 +UDP 10.100.0.24 54131 10.100.0.255 32414 4 4 84 +TCP 34.149.66.137 443 10.100.0.48 55709 4 1 349 +UDP 10.100.0.48 137 10.100.0.255 137 3 0 0 +TCP 160.79.104.10 443 10.100.0.48 61443 3 2 870 +UDP 172.29.224.1 137 172.29.239.255 137 3 0 0 +TCP 10.100.0.48 61443 160.79.104.10 443 2 1 1569 +TCP 172.64.155.209 443 10.100.0.48 61921 2 1 28 +TCP 10.100.0.48 63282 74.125.69.188 5228 2 1 1 +TCP 74.125.69.188 5228 10.100.0.48 63282 2 1 335 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\006-add-invalid\network.pcapng +packets 1266 +ip_tcp_udp_packets 1238 +packets_with_payload 697 + +top_ports +proto port packet_refs +TCP 54893 634 +TCP 3389 634 +TCP 50100 518 +TCP 58013 177 +TCP 58019 171 +TCP 58018 170 +TCP 443 47 +UDP 1900 14 +UDP 137 12 +UDP 138 12 +UDP 64482 12 +TCP 52147 10 +TCP 62839 9 +TCP 55709 6 +UDP 5353 6 +UDP 58866 3 +UDP 44455 3 +UDP 32412 3 +UDP 54131 3 +UDP 32414 3 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 341 172 9804 +TCP 10.100.0.48 3389 10.100.0.199 54893 293 171 19713 +TCP 10.100.0.48 50100 10.100.0.199 58013 96 94 6772 +TCP 10.100.0.48 50100 10.100.0.199 58019 93 92 6635 +TCP 10.100.0.48 50100 10.100.0.199 58018 93 92 6635 +TCP 10.100.0.199 58013 10.100.0.48 50100 81 10 588 +TCP 10.100.0.199 58019 10.100.0.48 50100 78 8 223 +TCP 10.100.0.199 58018 10.100.0.48 50100 77 8 223 +UDP 10.100.0.48 64482 239.255.255.250 1900 12 12 3984 +TCP 104.18.37.228 443 10.100.0.48 52147 6 3 402 +TCP 18.97.36.5 443 10.100.0.48 62839 5 2 142 +TCP 10.100.0.48 52147 104.18.37.228 443 4 3 680 +TCP 10.100.0.48 62839 18.97.36.5 443 4 3 269 +UDP 10.100.0.48 137 10.100.0.255 137 3 0 0 +TCP 34.149.66.137 443 10.100.0.48 55709 3 1 24 +TCP 10.100.0.48 55709 34.149.66.137 443 3 1 24 +UDP 10.100.0.24 44455 10.100.0.255 32412 3 3 63 +UDP 172.29.224.1 137 172.29.239.255 137 3 0 0 +UDP 10.100.0.24 54131 10.100.0.255 32414 3 3 63 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 2 2 766 +UDP 10.100.0.27 138 10.100.0.255 138 2 0 0 +UDP 10.100.0.26 138 10.100.0.255 138 2 0 0 +UDP 10.100.0.25 138 10.100.0.255 138 2 0 0 +TCP 172.64.155.209 443 10.100.0.48 61921 2 1 28 +TCP 10.100.0.48 55426 160.79.104.10 443 2 1 976 +TCP 172.64.155.209 443 10.100.0.48 59909 2 1 28 +TCP 18.97.36.2 443 10.100.0.48 54981 2 1 24 +TCP 160.79.104.10 443 10.100.0.48 61445 1 1 39 +TCP 54.71.224.108 443 10.100.0.48 56233 1 1 73 +TCP 10.100.0.48 61445 160.79.104.10 443 1 0 0 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\007-subscribe-invalid\network.pcapng +packets 1921 +ip_tcp_udp_packets 1881 +packets_with_payload 1079 + +top_ports +proto port packet_refs +TCP 3389 872 +TCP 54893 872 +TCP 50100 665 +TCP 58019 226 +TCP 58018 223 +TCP 58013 216 +TCP 1400 107 +TCP 443 99 +UDP 1900 42 +UDP 64814 29 +UDP 443 29 +TCP 56024 21 +TCP 56023 20 +TCP 56053 20 +TCP 56052 19 +TCP 56054 19 +UDP 64482 18 +TCP 56050 17 +TCP 56049 16 +TCP 56051 16 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 469 237 13509 +TCP 10.100.0.48 3389 10.100.0.199 54893 403 238 58440 +TCP 10.100.0.48 50100 10.100.0.199 58019 124 121 8724 +TCP 10.100.0.48 50100 10.100.0.199 58018 123 121 8724 +TCP 10.100.0.48 50100 10.100.0.199 58013 119 119 8587 +TCP 10.100.0.199 58019 10.100.0.48 50100 102 13 661 +TCP 10.100.0.199 58018 10.100.0.48 50100 100 12 648 +TCP 10.100.0.199 58013 10.100.0.48 50100 97 9 270 +UDP 10.100.0.48 64814 104.18.32.47 443 15 15 8914 +UDP 104.18.32.47 443 10.100.0.48 64814 14 14 7513 +TCP 10.100.0.231 1400 10.100.0.48 56053 13 9 10952 +UDP 10.100.0.48 64482 239.255.255.250 1900 12 12 3984 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 12 12 3888 +TCP 10.100.0.48 56023 72.154.7.100 443 12 6 1307 +TCP 10.100.0.48 56024 72.154.7.111 443 12 6 1308 +UDP fde1:ae41:8a00:452a:5dd:2fa8:9db2:54d9 64480 ff02::c 1900 12 12 3888 +TCP 10.100.0.176 1400 10.100.0.48 56052 12 9 10944 +TCP 10.100.0.218 1400 10.100.0.48 56050 11 8 10950 +TCP 10.100.0.67 1400 10.100.0.48 56054 11 8 10869 +TCP 72.154.7.111 443 10.100.0.48 56024 9 6 3061 +TCP 10.100.0.160 1400 10.100.0.48 56049 9 5 6304 +TCP 10.100.0.250 1400 10.100.0.48 56051 9 5 6304 +TCP 72.154.7.100 443 10.100.0.48 56023 8 6 3061 +TCP 10.100.0.48 56054 10.100.0.67 1400 8 1 146 +TCP 104.18.37.228 443 10.100.0.48 52147 7 3 445 +TCP 10.100.0.48 56048 10.100.0.99 8080 7 1 142 +TCP 10.100.0.99 8080 10.100.0.48 56048 7 4 3679 +TCP 10.100.0.48 56049 10.100.0.160 1400 7 1 147 +TCP 10.100.0.48 56051 10.100.0.250 1400 7 1 147 +TCP 10.100.0.48 56052 10.100.0.176 1400 7 1 147 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\008-write-test-int-same-value\network.pcapng +packets 1839 +ip_tcp_udp_packets 1792 +packets_with_payload 977 + +top_ports +proto port packet_refs +TCP 3389 864 +TCP 54893 864 +TCP 50100 730 +TCP 58013 250 +TCP 58018 241 +TCP 58019 239 +UDP 5353 128 +TCP 443 53 +UDP 1900 37 +UDP 50168 20 +UDP 443 20 +TCP 52147 14 +UDP 137 12 +UDP 64481 12 +UDP 64482 12 +UDP 64479 12 +TCP 61883 6 +TCP 56233 4 +UDP 58866 4 +UDP 44455 4 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 443 222 12654 +TCP 10.100.0.48 3389 10.100.0.199 54893 421 223 14858 +TCP 10.100.0.48 50100 10.100.0.199 58013 136 133 9583 +TCP 10.100.0.48 50100 10.100.0.199 58018 132 131 9446 +TCP 10.100.0.48 50100 10.100.0.199 58019 131 131 9446 +TCP 10.100.0.199 58013 10.100.0.48 50100 114 14 691 +TCP 10.100.0.199 58018 10.100.0.48 50100 109 11 313 +TCP 10.100.0.199 58019 10.100.0.48 50100 108 10 300 +UDP 10.100.0.1 5353 224.0.0.251 5353 15 0 0 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 12 12 3888 +UDP 10.100.0.48 64482 239.255.255.250 1900 12 12 3984 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 12 12 3888 +UDP 10.100.0.48 50168 172.64.155.209 443 11 11 6445 +UDP 10.100.0.40 5353 224.0.0.251 5353 9 0 0 +UDP fde1:ae41:8a00:452a:cb53:cf74:d597:4cba 5353 ff02::fb 5353 9 0 0 +UDP fe80::6ad7:9aff:fe31:6c45 5353 ff02::fb 5353 9 0 0 +UDP 172.64.155.209 443 10.100.0.48 50168 9 9 4899 +TCP 104.18.37.228 443 10.100.0.48 52147 8 4 529 +TCP 10.100.0.48 52147 104.18.37.228 443 6 4 719 +UDP 10.100.0.24 44455 10.100.0.255 32412 4 4 84 +UDP 10.100.0.24 54131 10.100.0.255 32414 4 4 84 +UDP 10.100.0.57 5353 224.0.0.251 5353 4 0 0 +UDP fe80::4e5:1891:3fe4:aeec 5353 ff02::fb 5353 4 0 0 +UDP 10.100.0.48 137 10.100.0.255 137 3 0 0 +UDP 172.29.224.1 137 172.29.239.255 137 3 0 0 +TCP 10.100.0.48 61883 18.97.36.68 443 3 2 240 +TCP 18.97.36.68 443 10.100.0.48 61883 3 1 118 +UDP 10.100.0.231 5353 224.0.0.251 5353 2 0 0 +UDP fe80::f2f6:c1ff:fea9:7eec 5353 ff02::fb 5353 2 0 0 +UDP 10.100.0.99 5353 224.0.0.251 5353 2 0 0 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\009-write-test-int-same-value-security-1\network.pcapng +packets 1051 +ip_tcp_udp_packets 1003 +packets_with_payload 591 + +top_ports +proto port packet_refs +TCP 50100 724 +TCP 58019 244 +TCP 58018 241 +TCP 58013 239 +UDP 5353 92 +UDP 1900 61 +TCP 3389 52 +TCP 54893 52 +TCP 443 38 +UDP 52087 30 +UDP 443 30 +UDP 64479 24 +UDP 64482 18 +UDP 5355 16 +TCP 55376 14 +UDP 64480 12 +UDP 137 12 +UDP 64481 12 +UDP 53 8 +UDP 35686 6 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.48 50100 10.100.0.199 58019 135 133 9644 +TCP 10.100.0.48 50100 10.100.0.199 58018 134 133 9644 +TCP 10.100.0.48 50100 10.100.0.199 58013 133 131 9507 +TCP 10.100.0.199 58019 10.100.0.48 50100 109 12 648 +TCP 10.100.0.199 58018 10.100.0.48 50100 107 11 648 +TCP 10.100.0.199 58013 10.100.0.48 50100 106 11 296 +TCP 10.100.0.199 54893 10.100.0.48 3389 29 16 717 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 24 24 7776 +TCP 10.100.0.48 3389 10.100.0.199 54893 23 11 3185 +UDP 142.251.32.14 443 10.100.0.48 52087 17 17 10911 +UDP 192.168.1.2 5353 224.0.0.251 5353 14 0 0 +UDP fe80::a953:d8ad:7e8:ae04 5353 ff02::fb 5353 14 0 0 +UDP 10.100.0.48 52087 142.251.32.14 443 13 13 7538 +UDP fde1:ae41:8a00:452a:5dd:2fa8:9db2:54d9 64480 ff02::c 1900 12 12 3888 +UDP 10.100.0.48 64482 239.255.255.250 1900 12 12 3984 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 12 12 3888 +UDP 10.100.0.196 5353 224.0.0.251 5353 9 0 0 +UDP fe80::4cb:5462:fdbf:f260 5353 ff02::fb 5353 9 0 0 +TCP 172.64.155.209 443 10.100.0.48 55376 8 2 1684 +UDP 10.100.0.48 64482 10.100.0.24 35686 6 6 1626 +UDP 10.100.0.49 137 10.100.0.255 137 6 0 0 +TCP 10.100.0.48 55376 172.64.155.209 443 6 5 66378 +UDP 10.100.0.24 54131 10.100.0.255 32414 4 4 84 +UDP 10.100.0.24 44455 10.100.0.255 32412 4 4 84 +UDP fe80::a953:d8ad:7e8:ae04 57250 ff02::1:3 5355 2 0 0 +UDP 192.168.1.2 57250 224.0.0.252 5355 2 0 0 +UDP 192.168.1.2 58748 224.0.0.252 5355 2 0 0 +UDP fe80::a953:d8ad:7e8:ae04 58748 ff02::1:3 5355 2 0 0 +TCP 172.64.155.209 443 10.100.0.48 59909 2 1 28 +UDP fe80::a953:d8ad:7e8:ae04 57880 ff02::1:3 5355 2 0 0 + +================================================================================ + +capture C:\Users\dohertj2\Desktop\mxaccess\captures\010-write-test-int-advised-same-value\network.pcapng +packets 2959 +ip_tcp_udp_packets 2900 +packets_with_payload 1606 + +top_ports +proto port packet_refs +TCP 3389 1172 +TCP 54893 1172 +TCP 443 839 +TCP 50100 797 +TCP 55426 431 +TCP 56605 331 +TCP 58013 270 +TCP 58019 268 +TCP 58018 259 +UDP 5353 32 +TCP 56825 25 +UDP 53 24 +UDP 1900 24 +TCP 52147 14 +UDP 137 12 +UDP 64481 12 +UDP 64479 12 +TCP 61883 6 +TCP 56807 6 +TCP 80 6 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 638 330 18537 +TCP 10.100.0.48 3389 10.100.0.199 54893 534 324 37819 +TCP 160.79.104.10 443 10.100.0.48 55426 216 36 7836 +TCP 10.100.0.48 55426 160.79.104.10 443 215 197 3137063 +TCP 160.79.104.10 443 10.100.0.48 56605 186 76 18298 +TCP 10.100.0.48 56605 160.79.104.10 443 145 109 1723085 +TCP 10.100.0.48 50100 10.100.0.199 58013 142 139 10043 +TCP 10.100.0.48 50100 10.100.0.199 58019 140 139 10043 +TCP 10.100.0.48 50100 10.100.0.199 58018 137 137 9906 +TCP 10.100.0.199 58019 10.100.0.48 50100 128 13 678 +TCP 10.100.0.199 58013 10.100.0.48 50100 128 14 691 +TCP 10.100.0.199 58018 10.100.0.48 50100 122 10 300 +TCP 104.18.1.181 443 10.100.0.48 56825 13 9 4113 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 12 12 3888 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 12 12 3888 +TCP 10.100.0.48 56825 104.18.1.181 443 12 5 540 +TCP 104.18.37.228 443 10.100.0.48 52147 8 4 599 +TCP 10.100.0.48 52147 104.18.37.228 443 6 4 882 +UDP 10.100.0.24 44455 10.100.0.255 32412 4 4 84 +UDP 10.100.0.24 54131 10.100.0.255 32414 4 4 84 +TCP 34.149.66.137 443 10.100.0.48 56659 4 1 349 +UDP 10.100.0.48 137 10.100.0.255 137 3 0 0 +UDP 172.29.224.1 137 172.29.239.255 137 3 0 0 +TCP 10.100.0.48 61883 18.97.36.68 443 3 2 240 +TCP 18.97.36.68 443 10.100.0.48 61883 3 1 118 +TCP 10.100.0.48 56807 150.171.28.10 80 3 0 0 +TCP 150.171.28.10 80 10.100.0.48 56807 3 0 0 +TCP 172.64.155.209 443 10.100.0.48 52177 2 1 28 +TCP 172.64.155.209 443 10.100.0.48 61850 2 1 28 +TCP 172.64.155.209 443 10.100.0.48 61921 2 1 28 diff --git a/analysis/network/write-window-body-diff-017-vs-020.tsv b/analysis/network/write-window-body-diff-017-vs-020.tsv new file mode 100644 index 0000000..feed497 --- /dev/null +++ b/analysis/network/write-window-body-diff-017-vs-020.tsv @@ -0,0 +1,121 @@ +direction record_type record_size ordinal status frame_a frame_b time_a time_b signature16_a signature16_b bytes_differ diff_offsets byte_pairs i32_diffs ascii_a ascii_b +a_to_b control 12 0 different 4570 5101 -0.277536631 -0.303208590 fe ff ff ff 95 42 01 00 83 42 01 00 ff ff ff ff 79 00 0b 00 00 00 00 00 7 0 4 5 6 8 9 10 0:fe->ff 4:95->79 5:42->00 6:01->0b 8:83->00 9:42->00 10:01->00 0:-2->-1 4:82581->721017 8:82563->0 .....B...B.. ....y....... +a_to_b control 12 1 different 4584 5123 -0.256555796 -0.199772596 ff ff ff ff d9 f3 0a 00 00 00 00 00 ff ff ff ff 7a 00 0b 00 00 00 00 00 3 4 5 6 4:d9->7a 5:f3->00 6:0a->0b 4:717785->721018 ............ ....z....... +a_to_b control 12 2 different 4596 5149 -0.216082811 -0.095571995 ff ff ff ff da f3 0a 00 00 00 00 00 ff ff ff ff 7b 00 0b 00 00 00 00 00 3 4 5 6 4:da->7b 5:f3->00 6:0a->0b 4:717786->721019 ............ ....{....... +a_to_b control 12 3 different 4608 5166 -0.213940620 -0.086872578 ff ff ff ff db f3 0a 00 00 00 00 00 ff ff ff ff 7c 00 0b 00 00 00 00 00 3 4 5 6 4:db->7c 5:f3->00 6:0a->0b 4:717787->721020 ............ ....|....... +a_to_b control 12 4 different 4620 5178 -0.152408600 -0.084737539 ff ff ff ff dc f3 0a 00 00 00 00 00 ff ff ff ff 7d 00 0b 00 00 00 00 00 3 4 5 6 4:dc->7d 5:f3->00 6:0a->0b 4:717788->721021 ............ ....}....... +a_to_b control 12 5 different 4636 5192 -0.047921181 0.008715630 ff ff ff ff dd f3 0a 00 00 00 00 00 ff ff ff ff 7e 00 0b 00 00 00 00 00 3 4 5 6 4:dd->7e 5:f3->00 6:0a->0b 4:717789->721022 ............ ....~....... +a_to_b control 12 6 different 4654 5205 0.056252480 0.058058262 ff ff ff ff de f3 0a 00 00 00 00 00 fe ff ff ff 19 44 01 00 07 44 01 00 7 0 4 5 6 8 9 10 0:ff->fe 4:de->19 5:f3->44 6:0a->01 8:00->07 9:00->44 10:00->01 0:-1->-2 4:717790->82969 8:0->82951 ............ .....D...D.. +a_to_b control 12 7 different 4666 5220 0.088462830 0.111211777 ff ff ff ff df f3 0a 00 00 00 00 00 ff ff ff ff 7f 00 0b 00 00 00 00 00 3 4 5 6 4:df->7f 5:f3->00 6:0a->0b 4:717791->721023 ............ ............ +a_to_b control 12 8 different 4678 5274 0.090432644 0.216190577 ff ff ff ff e0 f3 0a 00 00 00 00 00 ff ff ff ff 80 00 0b 00 00 00 00 00 3 4 5 6 4:e0->80 5:f3->00 6:0a->0b 4:717792->721024 ............ ............ +a_to_b control 12 9 different 4694 5279 0.159611464 0.217228889 ff ff ff ff e1 f3 0a 00 00 00 00 00 ff ff ff ff 81 00 0b 00 00 00 00 00 3 4 5 6 4:e1->81 5:f3->00 6:0a->0b 4:717793->721025 ............ ............ +a_to_b control 12 10 different 4704 5291 0.224503756 0.219393969 fe ff ff ff 96 42 01 00 84 42 01 00 ff ff ff ff 82 00 0b 00 00 00 00 00 7 0 4 5 6 8 9 10 0:fe->ff 4:96->82 5:42->00 6:01->0b 8:84->00 9:42->00 10:01->00 0:-2->-1 4:82582->721026 8:82564->0 .....B...B.. ............ +a_to_b control 12 11 different 4718 5323 0.263664961 0.319680929 ff ff ff ff e2 f3 0a 00 00 00 00 00 ff ff ff ff 83 00 0b 00 00 00 00 00 3 4 5 6 4:e2->83 5:f3->00 6:0a->0b 4:717794->721027 ............ ............ +a_to_b control 12 12 different 4730 5341 0.366672754 0.422842503 ff ff ff ff e3 f3 0a 00 00 00 00 00 ff ff ff ff 84 00 0b 00 00 00 00 00 3 4 5 6 4:e3->84 5:f3->00 6:0a->0b 4:717795->721028 ............ ............ +a_to_b control 12 13 different 4742 5353 0.393848658 0.521495104 ff ff ff ff e4 f3 0a 00 00 00 00 00 ff ff ff ff 85 00 0b 00 00 00 00 00 3 4 5 6 4:e4->85 5:f3->00 6:0a->0b 4:717796->721029 ............ ............ +a_to_b control 12 14 different 4754 5365 0.396104813 0.523760796 ff ff ff ff e5 f3 0a 00 00 00 00 00 ff ff ff ff 86 00 0b 00 00 00 00 00 3 4 5 6 4:e5->86 5:f3->00 6:0a->0b 4:717797->721030 ............ ............ +a_to_b control 12 15 different 4770 5377 0.470706463 0.525846004 ff ff ff ff e6 f3 0a 00 00 00 00 00 ff ff ff ff 87 00 0b 00 00 00 00 00 3 4 5 6 4:e6->87 5:f3->00 6:0a->0b 4:717798->721031 ............ ............ +a_to_b control 12 16 different 4786 5386 0.574725389 0.559777498 ff ff ff ff e7 f3 0a 00 00 00 00 00 fe ff ff ff 1a 44 01 00 08 44 01 00 7 0 4 5 6 8 9 10 0:ff->fe 4:e7->1a 5:f3->44 6:0a->01 8:00->08 9:00->44 10:00->01 0:-1->-2 4:717799->82970 8:0->82952 ............ .....D...D.. +a_to_b control 12 17 different 4808 5403 0.677289724 0.629556417 ff ff ff ff e8 f3 0a 00 00 00 00 00 ff ff ff ff 88 00 0b 00 00 00 00 00 3 4 5 6 4:e8->88 5:f3->00 6:0a->0b 4:717800->721032 ............ ............ +a_to_b control 12 18 different 4820 5426 0.698059559 0.732711315 ff ff ff ff e9 f3 0a 00 00 00 00 00 ff ff ff ff 89 00 0b 00 00 00 00 00 3 4 5 6 4:e9->89 5:f3->00 6:0a->0b 4:717801->721033 ............ ............ +a_to_b control 12 19 missing_b 4832 0.700148106 ff ff ff ff ea f3 0a 00 00 00 00 00 ............ +a_to_b control 12 20 missing_b 4836 0.725540161 fe ff ff ff 97 42 01 00 85 42 01 00 .....B...B.. +a_to_b control_announce 12 0 different 4574 5091 -0.258128405 -0.304727554 1a 00 00 00 f0 18 0b 00 00 00 00 00 1a 00 00 00 58 26 0b 00 00 00 00 00 2 4 5 4:f0->58 5:18->26 4:727280->730712 ............ ....X&...... +a_to_b control_announce 12 1 different 4586 5111 -0.217744112 -0.201824188 65 00 00 00 f1 18 0b 00 00 00 00 00 1a 00 00 00 59 26 0b 00 00 00 00 00 3 0 4 5 0:65->1a 4:f1->59 5:18->26 0:101->26 4:727281->730713 e........... ....Y&...... +a_to_b control_announce 12 2 different 4598 5139 -0.215229750 -0.097380161 1e 00 00 00 f2 18 0b 00 00 00 00 00 1a 00 00 00 5a 26 0b 00 00 00 00 00 3 0 4 5 0:1e->1a 4:f2->5a 5:18->26 0:30->26 4:727282->730714 ............ ....Z&...... +a_to_b control_announce 12 3 different 4610 5151 -0.153764725 -0.089065313 1a 00 00 00 f3 18 0b 00 00 00 00 00 22 00 00 00 5b 26 0b 00 00 00 00 00 3 0 4 5 0:1a->22 4:f3->5b 5:18->26 0:26->34 4:727283->730715 ............ """...[&......" +a_to_b control_announce 12 4 different 4626 5155 -0.049674988 -0.088725090 1a 00 00 00 f4 18 0b 00 00 00 00 00 43 00 00 00 5c 26 0b 00 00 00 00 00 3 0 4 5 0:1a->43 4:f4->5c 5:18->26 0:26->67 4:727284->730716 ............ C...\&...... +a_to_b control_announce 12 5 different 4644 5168 0.054767609 -0.086127520 1a 00 00 00 f5 18 0b 00 00 00 00 00 1e 00 00 00 5d 26 0b 00 00 00 00 00 3 0 4 5 0:1a->1e 4:f5->5d 5:18->26 0:26->30 4:727285->730717 ............ ....]&...... +a_to_b control_announce 12 6 different 4656 5182 0.086206675 0.007262468 65 00 00 00 f6 18 0b 00 00 00 00 00 1a 00 00 00 5e 26 0b 00 00 00 00 00 3 0 4 5 0:65->1a 4:f6->5e 5:18->26 0:101->26 4:727286->730718 e........... ....^&...... +a_to_b control_announce 12 7 different 4668 5210 0.089173794 0.109733105 1e 00 00 00 f7 18 0b 00 00 00 00 00 1a 00 00 00 5f 26 0b 00 00 00 00 00 3 0 4 5 0:1e->1a 4:f7->5f 5:18->26 0:30->26 4:727287->730719 ............ ...._&...... +a_to_b control_announce 12 8 different 4684 5262 0.157661200 0.214272261 1a 00 00 00 f8 18 0b 00 00 00 00 00 1a 00 00 00 60 26 0b 00 00 00 00 00 2 4 5 4:f8->60 5:18->26 4:727288->730720 ............ ....`&...... +a_to_b control_announce 12 9 different 4708 5269 0.262079239 0.215626717 1a 00 00 00 f9 18 0b 00 00 00 00 00 65 00 00 00 61 26 0b 00 00 00 00 00 3 0 4 5 0:1a->65 4:f9->61 5:18->26 0:26->101 4:727289->730721 ............ e...a&...... +a_to_b control_announce 12 10 different 4720 5281 0.365162134 0.218059063 1a 00 00 00 fa 18 0b 00 00 00 00 00 1e 00 00 00 62 26 0b 00 00 00 00 00 3 0 4 5 0:1a->1e 4:fa->62 5:18->26 0:26->30 4:727290->730722 ............ ....b&...... +a_to_b control_announce 12 11 different 4732 5313 0.391909838 0.318195105 65 00 00 00 fb 18 0b 00 00 00 00 00 1a 00 00 00 63 26 0b 00 00 00 00 00 3 0 4 5 0:65->1a 4:fb->63 5:18->26 0:101->26 4:727291->730723 e........... ....c&...... +a_to_b control_announce 12 12 different 4744 5331 0.394767523 0.421248674 1e 00 00 00 fc 18 0b 00 00 00 00 00 1a 00 00 00 64 26 0b 00 00 00 00 00 3 0 4 5 0:1e->1a 4:fc->64 5:18->26 0:30->26 4:727292->730724 ............ ....d&...... +a_to_b control_announce 12 13 different 4760 5343 0.469243288 0.519472837 1a 00 00 00 fd 18 0b 00 00 00 00 00 65 00 00 00 65 26 0b 00 00 00 00 00 3 0 4 5 0:1a->65 4:fd->65 5:18->26 0:26->101 4:727293->730725 ............ e...e&...... +a_to_b control_announce 12 14 different 4776 5355 0.573345661 0.522475958 1a 00 00 00 fe 18 0b 00 00 00 00 00 1e 00 00 00 66 26 0b 00 00 00 00 00 3 0 4 5 0:1a->1e 4:fe->66 5:18->26 0:26->30 4:727294->730726 ............ ....f&...... +a_to_b control_announce 12 15 different 4798 5367 0.675759792 0.524222612 1a 00 00 00 ff 18 0b 00 00 00 00 00 1a 00 00 00 67 26 0b 00 00 00 00 00 2 4 5 4:ff->67 5:18->26 4:727295->730727 ............ ....g&...... +a_to_b control_announce 12 16 different 4810 5393 0.696269035 0.628070831 65 00 00 00 00 19 0b 00 00 00 00 00 1a 00 00 00 68 26 0b 00 00 00 00 00 3 0 4 5 0:65->1a 4:00->68 5:19->26 0:101->26 4:727296->730728 e........... ....h&...... +a_to_b control_announce 12 17 different 4822 5416 0.698937178 0.731132030 1e 00 00 00 01 19 0b 00 00 00 00 00 1a 00 00 00 69 26 0b 00 00 00 00 00 3 0 4 5 0:1e->1a 4:01->69 5:19->26 0:30->26 4:727297->730729 ............ ....i&...... +a_to_b data 26 0 different 4576 5093 -0.257958889 -0.304557085 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9d 2 14 15 14:53->f5 15:8a->9d 12:-1974272000->-1644888064 T.c@.^1@......S....... T.c@.^1@.............. +a_to_b data 26 1 different 4612 5113 -0.153573990 -0.201594591 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9d 2 14 15 14:57->f7 15:8a->9d 12:-1974009856->-1644756992 T.c@.^1@......W....... T.c@.^1@.............. +a_to_b data 26 2 different 4628 5141 -0.049373388 -0.097220659 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9d 2 14 15 14:59->f9 15:8a->9d 12:-1973878784->-1644625920 T.c@.^1@......Y....... T.c@.^1@.............. +a_to_b data 26 3 different 4646 5184 0.055000782 0.007440090 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9d 2 14 15 14:5b->fd 15:8a->9d 12:-1973747712->-1644363776 T.c@.^1@......[....... T.c@.^1@.............. +a_to_b data 26 4 different 4686 5212 0.157846928 0.109894991 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9d 2 14 15 14:5f->ff 15:8a->9d 12:-1973485568->-1644232704 T.c@.^1@......_....... T.c@.^1@.............. +a_to_b data 26 5 different 4710 5264 0.262273788 0.214480400 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9e 2 14 15 14:61->01 15:8a->9e 12:-1973354496->-1644101632 T.c@.^1@......a....... T.c@.^1@.............. +a_to_b data 26 6 different 4722 5315 0.365359783 0.318364620 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9e 2 14 15 14:63->05 15:8a->9e 12:-1973223424->-1643839488 T.c@.^1@......c....... T.c@.^1@.............. +a_to_b data 26 7 different 4762 5333 0.469421625 0.421409607 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9e 2 14 15 14:67->07 15:8a->9e 12:-1972961280->-1643708416 T.c@.^1@......g....... T.c@.^1@.............. +a_to_b data 26 8 different 4778 5369 0.573516130 0.524609327 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9e 2 14 15 14:69->0b 15:8a->9e 12:-1972830208->-1643446272 T.c@.^1@......i....... T.c@.^1@.............. +a_to_b data 26 9 different 4800 5395 0.675931215 0.628238201 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9e 2 14 15 14:6b->0d 15:8a->9e 12:-1972699136->-1643315200 T.c@.^1@......k....... T.c@.^1@.............. +a_to_b data 26 10 missing_a 5418 0.731312990 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9e T.c@.^1@.............. +a_to_b data 30 0 different 4600 5170 -0.215086460 -0.085963011 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 8a 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 9d 2 14 15 14:55->fb 15:8a->9d 12:-1974140928->-1644494848 U..b..:P......U........... U..b..:P.................. +a_to_b data 30 1 different 4670 5283 0.089374542 0.218285322 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 8a 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 9e 2 14 15 14:5d->03 15:8a->9e 12:-1973616640->-1643970560 U..b..:P......]........... U..b..:P.................. +a_to_b data 30 2 different 4746 5357 0.394985199 0.522656679 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 8a 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 9e 2 14 15 14:65->09 15:8a->9e 12:-1973092352->-1643577344 U..b..:P......e........... U..b..:P.................. +a_to_b data 30 3 missing_b 4824 0.699079752 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 8a U..b..:P......m........... +a_to_b data 34 0 different 4588 5153 -0.217559338 -0.088867903 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 da 10 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 13 5 14 15 22 23 24 14:da->57 15:10->13 22:41->15 23:be->b5 24:22->25 12:282722304->324468736 20:-1103036416->-1256914944 24:27116322->27116325 ".!...o3...............A.""....." .!...o3.......W.........%..... +a_to_b data 34 1 different 4658 5269 0.086416960 0.215626717 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 db 10 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 13 5 14 15 22 23 24 14:db->58 15:10->13 22:72->46 23:bf->b6 24:22->25 12:282787840->324534272 20:-1083047936->-1236926464 24:27116322->27116325 ".!...o3...............r.""....." .!...o3.......X.......F.%..... +a_to_b data 34 2 different 4734 5345 0.392152309 0.519702911 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dc 10 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 13 5 14 15 22 23 24 14:dc->59 15:10->13 22:a3->76 23:c0->b7 24:22->25 12:282853376->324599808 20:-1063059456->-1217003520 24:27116322->27116325 ".!...o3.................""....." .!...o3.......Y.......v.%..... +a_to_b data 34 3 missing_b 4812 0.696416616 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dd 10 ".!...o3.................""....." +a_to_b data 67 0 different 4588 5157 -0.217559338 -0.088639021 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 7 19 20 55 56 57 58 59 19:da->57 20:10->13 55:4c->a4 56:aa->fd 57:95->63 58:e3->1e 59:c8->f6 16:-637534208->1459617792 20:528->531 52:1283457023->-1535115265 56:-924609110->-165780483 ..3...|8...................=B.....&............. ..3...|8...........W.......=B.....&............. +a_to_b data 67 1 different 4658 5269 0.086416960 0.215626717 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 7 19 20 55 56 57 58 59 19:db->58 20:10->13 55:e4->fc 56:99->fe 57:bf->89 58:f5->30 59:c8->f6 16:-620756992->1476395008 20:528->531 52:-461373441->-58720257 56:-923418727->-164591106 ..3...|8...................=B.....&............. ..3...|8...........X.......=B.....&............. +a_to_b data 67 2 different 4734 5345 0.392152309 0.519702911 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 7 19 20 55 56 57 58 59 19:dc->59 20:10->13 55:c4->88 56:b0->12 57:ed->a6 58:07->42 59:c9->f6 16:-603979776->1493172224 20:528->531 52:-998244353->-2004877313 56:-922227280->-163404270 ..3...|8...................=B.....&............. ..3...|8...........Y.......=B.....&............. +a_to_b data 67 3 missing_b 4812 0.696416616 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 ..3...|8...................=B.....&............. +b_to_a control 12 0 different 4564 5095 -0.338042021 -0.304216862 fe ff ff ff 83 42 01 00 94 42 01 00 ff ff ff ff 58 26 0b 00 00 00 00 00 7 0 4 5 6 8 9 10 0:fe->ff 4:83->58 5:42->26 6:01->0b 8:94->00 9:42->00 10:01->00 0:-2->-1 4:82563->730712 8:82580->0 .....B...B.. ....X&...... +b_to_a control 12 1 different 4578 5117 -0.257579327 -0.201104879 ff ff ff ff f0 18 0b 00 00 00 00 00 ff ff ff ff 59 26 0b 00 00 00 00 00 2 4 5 4:f0->59 5:18->26 4:727280->730713 ............ ....Y&...... +b_to_a control 12 2 different 4590 5129 -0.217247009 -0.189060211 ff ff ff ff f1 18 0b 00 00 00 00 00 fe ff ff ff 07 44 01 00 18 44 01 00 7 0 4 5 6 8 9 10 0:ff->fe 4:f1->07 5:18->44 6:0b->01 8:00->18 9:00->44 10:00->01 0:-1->-2 4:727281->82951 8:0->82968 ............ .....D...D.. +b_to_a control 12 3 different 4602 5143 -0.214675665 -0.096810818 ff ff ff ff f2 18 0b 00 00 00 00 00 ff ff ff ff 5a 26 0b 00 00 00 00 00 2 4 5 4:f2->5a 5:18->26 4:727282->730714 ............ ....Z&...... +b_to_a control 12 4 different 4614 5158 -0.153214693 -0.088564396 ff ff ff ff f3 18 0b 00 00 00 00 00 ff ff ff ff 5b 26 0b 00 00 00 00 00 2 4 5 4:f3->5b 5:18->26 4:727283->730715 ............ ....[&...... +b_to_a control 12 5 different 4630 5159 -0.049001932 -0.088465691 ff ff ff ff f4 18 0b 00 00 00 00 00 ff ff ff ff 5c 26 0b 00 00 00 00 00 2 4 5 4:f4->5c 5:18->26 4:727284->730716 ............ ....\&...... +b_to_a control 12 6 different 4648 5172 0.055322886 -0.085558653 ff ff ff ff f5 18 0b 00 00 00 00 00 ff ff ff ff 5d 26 0b 00 00 00 00 00 2 4 5 4:f5->5d 5:18->26 4:727285->730717 ............ ....]&...... +b_to_a control 12 7 different 4660 5186 0.086769581 0.007730484 ff ff ff ff f6 18 0b 00 00 00 00 00 ff ff ff ff 5e 26 0b 00 00 00 00 00 2 4 5 4:f6->5e 5:18->26 4:727286->730718 ............ ....^&...... +b_to_a control 12 8 different 4672 5214 0.089677572 0.110214710 ff ff ff ff f7 18 0b 00 00 00 00 00 ff ff ff ff 5f 26 0b 00 00 00 00 00 2 4 5 4:f7->5f 5:18->26 4:727287->730719 ............ ...._&...... +b_to_a control 12 9 different 4688 5266 0.158175468 0.214933872 ff ff ff ff f8 18 0b 00 00 00 00 00 ff ff ff ff 60 26 0b 00 00 00 00 00 2 4 5 4:f8->60 5:18->26 4:727288->730720 ............ ....`&...... +b_to_a control 12 10 different 4698 5273 0.163812399 0.216158152 fe ff ff ff 84 42 01 00 95 42 01 00 ff ff ff ff 61 26 0b 00 00 00 00 00 7 0 4 5 6 8 9 10 0:fe->ff 4:84->61 5:42->26 6:01->0b 8:95->00 9:42->00 10:01->00 0:-2->-1 4:82564->730721 8:82581->0 .....B...B.. ....a&...... +b_to_a control 12 11 different 4712 5285 0.262835503 0.218635559 ff ff ff ff f9 18 0b 00 00 00 00 00 ff ff ff ff 62 26 0b 00 00 00 00 00 2 4 5 4:f9->62 5:18->26 4:727289->730722 ............ ....b&...... +b_to_a control 12 12 different 4724 5299 0.365696430 0.312407970 ff ff ff ff fa 18 0b 00 00 00 00 00 fe ff ff ff 08 44 01 00 19 44 01 00 7 0 4 5 6 8 9 10 0:ff->fe 4:fa->08 5:18->44 6:0b->01 8:00->19 9:00->44 10:00->01 0:-1->-2 4:727290->82952 8:0->82969 ............ .....D...D.. +b_to_a control 12 13 different 4736 5317 0.392501116 0.318720818 ff ff ff ff fb 18 0b 00 00 00 00 00 ff ff ff ff 63 26 0b 00 00 00 00 00 2 4 5 4:fb->63 5:18->26 4:727291->730723 ............ ....c&...... +b_to_a control 12 14 different 4748 5335 0.395300388 0.421709538 ff ff ff ff fc 18 0b 00 00 00 00 00 ff ff ff ff 64 26 0b 00 00 00 00 00 2 4 5 4:fc->64 5:18->26 4:727292->730724 ............ ....d&...... +b_to_a control 12 15 different 4764 5347 0.469891548 0.520096540 ff ff ff ff fd 18 0b 00 00 00 00 00 ff ff ff ff 65 26 0b 00 00 00 00 00 2 4 5 4:fd->65 5:18->26 4:727293->730725 ............ ....e&...... +b_to_a control 12 16 different 4780 5359 0.573867321 0.522940874 ff ff ff ff fe 18 0b 00 00 00 00 00 ff ff ff ff 66 26 0b 00 00 00 00 00 2 4 5 4:fe->66 5:18->26 4:727294->730726 ............ ....f&...... +b_to_a control 12 17 different 4794 5371 0.664741039 0.524956226 fe ff ff ff 85 42 01 00 96 42 01 00 ff ff ff ff 67 26 0b 00 00 00 00 00 7 0 4 5 6 8 9 10 0:fe->ff 4:85->67 5:42->26 6:01->0b 8:96->00 9:42->00 10:01->00 0:-2->-1 4:82565->730727 8:82582->0 .....B...B.. ....g&...... +b_to_a control 12 18 different 4802 5397 0.676250219 0.628658772 ff ff ff ff ff 18 0b 00 00 00 00 00 ff ff ff ff 68 26 0b 00 00 00 00 00 2 4 5 4:ff->68 5:18->26 4:727295->730728 ............ ....h&...... +b_to_a control 12 19 different 4814 5420 0.696775675 0.731618643 ff ff ff ff 00 19 0b 00 00 00 00 00 ff ff ff ff 69 26 0b 00 00 00 00 00 2 4 5 4:00->69 5:19->26 4:727296->730729 ............ ....i&...... +b_to_a control 12 20 missing_b 4826 0.699357271 ff ff ff ff 01 19 0b 00 00 00 00 00 ............ +b_to_a control_announce 12 0 different 4580 5097 -0.257136583 -0.303671598 16 00 00 00 d9 f3 0a 00 00 00 00 00 16 00 00 00 79 00 0b 00 00 00 00 00 3 4 5 6 4:d9->79 5:f3->00 6:0a->0b 4:717785->721017 ............ ....y....... +b_to_a control_announce 12 1 different 4592 5119 -0.216551781 -0.200656891 34 00 00 00 da f3 0a 00 00 00 00 00 16 00 00 00 7a 00 0b 00 00 00 00 00 4 0 4 5 6 0:34->16 4:da->7a 5:f3->00 6:0a->0b 0:52->22 4:717786->721018 4........... ....z....... +b_to_a control_announce 12 2 different 4604 5145 -0.214369774 -0.096059561 1a 00 00 00 db f3 0a 00 00 00 00 00 16 00 00 00 7b 00 0b 00 00 00 00 00 4 0 4 5 6 0:1a->16 4:db->7b 5:f3->00 6:0a->0b 0:26->22 4:717787->721019 ............ ....{....... +b_to_a control_announce 12 3 different 4616 5162 -0.152873278 -0.087354898 16 00 00 00 dc f3 0a 00 00 00 00 00 34 00 00 00 7c 00 0b 00 00 00 00 00 4 0 4 5 6 0:16->34 4:dc->7c 5:f3->00 6:0a->0b 0:22->52 4:717788->721020 ............ 4...|....... +b_to_a control_announce 12 4 different 4632 5174 -0.048451900 -0.085188866 16 00 00 00 dd f3 0a 00 00 00 00 00 1a 00 00 00 7d 00 0b 00 00 00 00 00 4 0 4 5 6 0:16->1a 4:dd->7d 5:f3->00 6:0a->0b 0:22->26 4:717789->721021 ............ ....}....... +b_to_a control_announce 12 5 different 4650 5188 0.055765629 0.008282661 16 00 00 00 de f3 0a 00 00 00 00 00 16 00 00 00 7e 00 0b 00 00 00 00 00 3 4 5 6 4:de->7e 5:f3->00 6:0a->0b 4:717790->721022 ............ ....~....... +b_to_a control_announce 12 6 different 4662 5216 0.087956667 0.110697031 34 00 00 00 df f3 0a 00 00 00 00 00 16 00 00 00 7f 00 0b 00 00 00 00 00 4 0 4 5 6 0:34->16 4:df->7f 5:f3->00 6:0a->0b 0:52->22 4:717791->721023 4........... ............ +b_to_a control_announce 12 7 different 4674 5268 0.089987993 0.215467691 1a 00 00 00 e0 f3 0a 00 00 00 00 00 16 00 00 00 80 00 0b 00 00 00 00 00 4 0 4 5 6 0:1a->16 4:e0->80 5:f3->00 6:0a->0b 0:26->22 4:717792->721024 ............ ............ +b_to_a control_announce 12 8 different 4690 5277 0.159031630 0.216975212 16 00 00 00 e1 f3 0a 00 00 00 00 00 34 00 00 00 81 00 0b 00 00 00 00 00 4 0 4 5 6 0:16->34 4:e1->81 5:f3->00 6:0a->0b 0:22->52 4:717793->721025 ............ 4........... +b_to_a control_announce 12 9 different 4714 5287 0.263149261 0.218984604 16 00 00 00 e2 f3 0a 00 00 00 00 00 1a 00 00 00 82 00 0b 00 00 00 00 00 4 0 4 5 6 0:16->1a 4:e2->82 5:f3->00 6:0a->0b 0:22->26 4:717794->721026 ............ ............ +b_to_a control_announce 12 10 different 4726 5319 0.366274118 0.319101095 16 00 00 00 e3 f3 0a 00 00 00 00 00 16 00 00 00 83 00 0b 00 00 00 00 00 3 4 5 6 4:e3->83 5:f3->00 6:0a->0b 4:717795->721027 ............ ............ +b_to_a control_announce 12 11 different 4738 5337 0.393415213 0.422348022 34 00 00 00 e4 f3 0a 00 00 00 00 00 16 00 00 00 84 00 0b 00 00 00 00 00 4 0 4 5 6 0:34->16 4:e4->84 5:f3->00 6:0a->0b 0:52->22 4:717796->721028 4........... ............ +b_to_a control_announce 12 12 different 4750 5349 0.395670176 0.521099567 1a 00 00 00 e5 f3 0a 00 00 00 00 00 34 00 00 00 85 00 0b 00 00 00 00 00 4 0 4 5 6 0:1a->34 4:e5->85 5:f3->00 6:0a->0b 0:26->52 4:717797->721029 ............ 4........... +b_to_a control_announce 12 13 different 4766 5361 0.470219612 0.523343801 16 00 00 00 e6 f3 0a 00 00 00 00 00 1a 00 00 00 86 00 0b 00 00 00 00 00 4 0 4 5 6 0:16->1a 4:e6->86 5:f3->00 6:0a->0b 0:22->26 4:717798->721030 ............ ............ +b_to_a control_announce 12 14 different 4782 5373 0.574328661 0.525456905 16 00 00 00 e7 f3 0a 00 00 00 00 00 16 00 00 00 87 00 0b 00 00 00 00 00 3 4 5 6 4:e7->87 5:f3->00 6:0a->0b 4:717799->721031 ............ ............ +b_to_a control_announce 12 15 different 4804 5399 0.676797867 0.629041195 16 00 00 00 e8 f3 0a 00 00 00 00 00 16 00 00 00 88 00 0b 00 00 00 00 00 3 4 5 6 4:e8->88 5:f3->00 6:0a->0b 4:717800->721032 ............ ............ +b_to_a control_announce 12 16 different 4816 5422 0.697582006 0.732218266 34 00 00 00 e9 f3 0a 00 00 00 00 00 16 00 00 00 89 00 0b 00 00 00 00 00 4 0 4 5 6 0:34->16 4:e9->89 5:f3->00 6:0a->0b 0:52->22 4:717801->721033 4........... ............ +b_to_a control_announce 12 17 missing_b 4828 0.699730158 1a 00 00 00 ea f3 0a 00 00 00 00 00 ............ +b_to_a data 22 0 different 4582 5099 -0.256975412 -0.303511858 53 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 f5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:53->f5 1:8a->9d 0:2067027->2072053 S................. .................. +b_to_a data 22 1 different 4618 5121 -0.152716160 -0.200131178 57 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 f7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:57->f7 1:8a->9d 0:2067031->2072055 W................. .................. +b_to_a data 22 2 different 4634 5147 -0.048250198 -0.095898151 59 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 f9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:59->f9 1:8a->9d 0:2067033->2072057 Y................. .................. +b_to_a data 22 3 different 4652 5190 0.055971384 0.008439541 5b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 fd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:5b->fd 1:8a->9d 0:2067035->2072061 [................. .................. +b_to_a data 22 4 different 4692 5218 0.159215212 0.110861063 5f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 ff 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:5f->ff 1:8a->9d 0:2067039->2072063 _................. .................. +b_to_a data 22 5 different 4716 5271 0.263315678 0.215847015 61 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 01 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:61->01 1:8a->9e 0:2067041->2072065 a................. .................. +b_to_a data 22 6 different 4728 5321 0.366466284 0.319281816 63 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 05 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:63->05 1:8a->9e 0:2067043->2072069 c................. .................. +b_to_a data 22 7 different 4768 5339 0.470378399 0.422518253 67 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 07 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:67->07 1:8a->9e 0:2067047->2072071 g................. .................. +b_to_a data 22 8 different 4784 5375 0.574499846 0.525598288 69 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 0b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:69->0b 1:8a->9e 0:2067049->2072075 i................. .................. +b_to_a data 22 9 different 4806 5401 0.676966667 0.629201889 6b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 0d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:6b->0d 1:8a->9e 0:2067051->2072077 k................. .................. +b_to_a data 22 10 missing_a 5424 0.732386827 0f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 .................. +b_to_a data 26 0 different 4606 5176 -0.214215279 -0.085052490 55 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 fb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:55->fb 1:8a->9d 0:2067029->2072059 U..................... ...................... +b_to_a data 26 1 different 4676 5289 0.090132236 0.219147682 5d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 03 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:5d->03 1:8a->9e 0:2067037->2072067 ]..................... ...................... +b_to_a data 26 2 different 4752 5363 0.395825863 0.523500443 65 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 09 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 2 0 1 0:65->09 1:8a->9e 0:2067045->2072073 e..................... ...................... +b_to_a data 26 3 missing_b 4830 0.699886322 6d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 m..................... +b_to_a data 52 0 different 4594 5164 -0.216392756 -0.087212086 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 6 30 31 40 41 42 43 30:da->57 31:10->13 40:03->1b 41:54->2e 42:bb->85 43:70->e4 28:282722304->324468736 40:1891324931->-461033957 "Dk.................L."".([................T.pM..." "Dk.................L."".([.....W.............M..." +b_to_a data 52 1 different 4664 5278 0.088118553 0.217075825 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 6 30 31 40 41 42 43 30:db->58 31:10->13 40:71->0c 41:cb->9e 42:e9->b3 43:70->e4 28:282787840->324534272 40:1894370161->-457990644 "Dk.................L."".([...............q..pM..." "Dk.................L."".([.....X.............M..." +b_to_a data 52 2 different 4740 5351 0.393571377 0.521250963 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 6 30 31 40 41 42 43 30:dc->59 31:10->13 40:20->2b 41:66->04 42:18->e2 43:71->e4 28:282853376->324599808 40:1897424416->-454949845 "Dk.................L."".([............... f.qM..." "Dk.................L."".([.....Y.........+...M..." +b_to_a data 52 3 missing_b 4818 0.697788715 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 "Dk.................L."".([...............Q.FqM..." diff --git a/analysis/network/write-window-body-diff-021-w0-vs-w1.tsv b/analysis/network/write-window-body-diff-021-w0-vs-w1.tsv new file mode 100644 index 0000000..3329c69 --- /dev/null +++ b/analysis/network/write-window-body-diff-021-w0-vs-w1.tsv @@ -0,0 +1,36 @@ +write_a write_value_a write_b write_value_b direction record_type record_size ordinal status frame_a frame_b time_a time_b signature16_a signature16_b bytes_differ diff_offsets byte_pairs i32_diffs ascii_a ascii_b +0 103 1 104 a_to_b control 12 0 different 4131 4315 0.171459675 0.069395065 ff ff ff ff 37 38 0b 00 00 00 00 00 ff ff ff ff 41 38 0b 00 00 00 00 00 1 4 4:37->41 4:735287->735297 ....78...... ....A8...... +0 103 1 104 a_to_b control 12 1 different 4162 4317 0.182622433 0.069546223 ff ff ff ff 38 38 0b 00 00 00 00 00 ff ff ff ff 42 38 0b 00 00 00 00 00 1 4 4:38->42 4:735288->735298 ....88...... ....B8...... +0 103 1 104 a_to_b control 12 2 different 4174 4327 0.184747696 0.071476698 ff ff ff ff 39 38 0b 00 00 00 00 00 ff ff ff ff 43 38 0b 00 00 00 00 00 1 4 4:39->43 4:735289->735299 ....98...... ....C8...... +0 103 1 104 a_to_b control 12 3 different 4188 4340 0.274049759 0.172099590 ff ff ff ff 3a 38 0b 00 00 00 00 00 ff ff ff ff 44 38 0b 00 00 00 00 00 1 4 4:3a->44 4:735290->735300 ....:8...... ....D8...... + 1 104 a_to_b control 12 4 missing_a 4351 0.260247707 fe ff ff ff d8 4a 01 00 c7 4a 01 00 .....J...J.. + 1 104 a_to_b control 12 5 missing_a 4367 0.275054216 ff ff ff ff 45 38 0b 00 00 00 00 00 ....E8...... +0 103 1 104 a_to_b control_announce 12 0 different 4119 4293 0.170109034 0.067553520 1a 00 00 00 d8 62 0b 00 00 00 00 00 1a 00 00 00 e2 62 0b 00 00 00 00 00 1 4 4:d8->e2 4:746200->746210 .....b...... .....b...... +0 103 1 104 a_to_b control_announce 12 1 different 4152 4297 0.180431604 0.067930222 65 00 00 00 d9 62 0b 00 00 00 00 00 22 00 00 00 e3 62 0b 00 00 00 00 00 2 0 4 0:65->22 4:d9->e3 0:101->34 4:746201->746211 e....b...... """....b......" +0 103 1 104 a_to_b control_announce 12 2 different 4164 4301 0.183470011 0.068131447 1e 00 00 00 da 62 0b 00 00 00 00 00 43 00 00 00 e4 62 0b 00 00 00 00 00 2 0 4 0:1e->43 4:da->e4 0:30->67 4:746202->746212 .....b...... C....b...... +0 103 1 104 a_to_b control_announce 12 3 different 4178 4318 0.272670269 0.070311069 1a 00 00 00 db 62 0b 00 00 00 00 00 1e 00 00 00 e5 62 0b 00 00 00 00 00 2 0 4 0:1a->1e 4:db->e5 0:26->30 4:746203->746213 .....b...... .....b...... + 1 104 a_to_b control_announce 12 4 missing_a 4330 0.170464754 1a 00 00 00 e6 62 0b 00 00 00 00 00 .....b...... + 1 104 a_to_b control_announce 12 5 missing_a 4357 0.273474693 1a 00 00 00 e7 62 0b 00 00 00 00 00 .....b...... +0 103 1 104 a_to_b data 26 0 different 4121 4295 0.170266628 0.067722797 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 f5 1 14 14:43->53 12:-180158464->-179109888 T.c@.^1@......C....... T.c@.^1@......S....... +0 103 1 104 a_to_b data 26 1 different 4180 4332 0.272846460 0.170684099 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 f5 1 14 14:47->57 12:-179896320->-178847744 T.c@.^1@......G....... T.c@.^1@......W....... + 1 104 a_to_b data 26 2 missing_a 4359 0.273638964 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 f5 T.c@.^1@......Y....... +0 103 1 104 a_to_b data 30 0 different 4166 4320 0.183623314 0.070454121 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 f5 1 14 14:45->55 12:-180027392->-178978816 U..b..:P......E........... U..b..:P......U........... +0 103 1 104 a_to_b data 34 0 different 4154 4299 0.180605412 0.068046808 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 1e 3 14 22 23 14:68->6a 22:51->b3 23:ea->ec 12:510132224->510263296 20:-363790336->-323813376 .!...o3.......h.......Q.2..... .!...o3.......j.........2..... +0 103 1 104 a_to_b data 67 0 different 4154 4302 0.180605412 0.068237782 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 5 19 55 56 57 58 19:68->6a 55:20->88 56:af->60 57:f1->40 58:a7->cc 16:1744830464->1778384896 52:545259519->-2004877313 56:-1079512657->-1077133216 ..3...|8...........h.......=B.....&............. ..3...|8...........j.......=B.....&............. +0 103 1 104 b_to_a control 12 0 different 4124 4300 0.170543909 0.068119526 ff ff ff ff d8 62 0b 00 00 00 00 00 ff ff ff ff e2 62 0b 00 00 00 00 00 1 4 4:d8->e2 4:746200->746210 .....b...... .....b...... +0 103 1 104 b_to_a control 12 1 different 4156 4304 0.181063652 0.068414927 ff ff ff ff d9 62 0b 00 00 00 00 00 ff ff ff ff e3 62 0b 00 00 00 00 00 1 4 4:d9->e3 4:746201->746211 .....b...... .....b...... +0 103 1 104 b_to_a control 12 2 different 4168 4306 0.184028149 0.068648338 ff ff ff ff da 62 0b 00 00 00 00 00 ff ff ff ff e4 62 0b 00 00 00 00 00 1 4 4:da->e4 4:746202->746212 .....b...... .....b...... +0 103 1 104 b_to_a control 12 3 different 4182 4322 0.273196936 0.070734024 ff ff ff ff db 62 0b 00 00 00 00 00 ff ff ff ff e5 62 0b 00 00 00 00 00 1 4 4:db->e5 4:746203->746213 .....b...... .....b...... + 1 104 b_to_a control 12 4 missing_a 4334 0.171112061 ff ff ff ff e6 62 0b 00 00 00 00 00 .....b...... + 1 104 b_to_a control 12 5 missing_a 4342 0.189489126 fe ff ff ff c7 4a 01 00 d7 4a 01 00 .....J...J.. + 1 104 b_to_a control 12 6 missing_a 4361 0.274013996 ff ff ff ff e7 62 0b 00 00 00 00 00 .....b...... +0 103 1 104 b_to_a control_announce 12 0 different 4127 4308 0.171019316 0.068941116 16 00 00 00 37 38 0b 00 00 00 00 00 16 00 00 00 41 38 0b 00 00 00 00 00 1 4 4:37->41 4:735287->735297 ....78...... ....A8...... +0 103 1 104 b_to_a control_announce 12 1 different 4158 4312 0.182176113 0.069282770 34 00 00 00 38 38 0b 00 00 00 00 00 34 00 00 00 42 38 0b 00 00 00 00 00 1 4 4:38->42 4:735288->735298 4...88...... 4...B8...... +0 103 1 104 b_to_a control_announce 12 2 different 4170 4323 0.184352398 0.071092606 1a 00 00 00 39 38 0b 00 00 00 00 00 1a 00 00 00 43 38 0b 00 00 00 00 00 1 4 4:39->43 4:735289->735299 ....98...... ....C8...... +0 103 1 104 b_to_a control_announce 12 3 different 4184 4336 0.273631096 0.171579123 16 00 00 00 3a 38 0b 00 00 00 00 00 16 00 00 00 44 38 0b 00 00 00 00 00 1 4 4:3a->44 4:735290->735300 ....:8...... ....D8...... + 1 104 b_to_a control_announce 12 4 missing_a 4363 0.274546623 16 00 00 00 45 38 0b 00 00 00 00 00 ....E8...... +0 103 1 104 b_to_a data 22 0 different 4129 4310 0.171171427 0.069132090 43 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 53 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 1 0 0:43->53 0:2094403->2094419 C................. S................. +0 103 1 104 b_to_a data 22 1 different 4186 4338 0.273787260 0.171810150 47 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 57 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 1 0 0:47->57 0:2094407->2094423 G................. W................. + 1 104 b_to_a data 22 2 missing_a 4365 0.274724960 59 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 Y................. +0 103 1 104 b_to_a data 26 0 different 4172 4325 0.184497833 0.071244001 45 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 55 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 1 0 0:45->55 0:2094405->2094421 E..................... U..................... +0 103 1 104 b_to_a data 52 0 different 4160 4314 0.182363510 0.069372416 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 4 30 40 41 42 30:68->6a 40:0b->e5 41:b3->96 42:74->d1 28:510132224->510263296 40:-395005173->-388917531 "Dk.................L."".([.....h...........t.O..." "Dk.................L."".([.....j.............O..." diff --git a/analysis/network/write-window-body-diff-021-w1-vs-w2.tsv b/analysis/network/write-window-body-diff-021-w1-vs-w2.tsv new file mode 100644 index 0000000..5d7ff1b --- /dev/null +++ b/analysis/network/write-window-body-diff-021-w1-vs-w2.tsv @@ -0,0 +1,36 @@ +write_a write_value_a write_b write_value_b direction record_type record_size ordinal status frame_a frame_b time_a time_b signature16_a signature16_b bytes_differ diff_offsets byte_pairs i32_diffs ascii_a ascii_b +1 104 2 105 a_to_b control 12 0 different 4315 4521 0.069395065 0.174252987 ff ff ff ff 41 38 0b 00 00 00 00 00 ff ff ff ff 4f 38 0b 00 00 00 00 00 1 4 4:41->4f 4:735297->735311 ....A8...... ....O8...... +1 104 2 105 a_to_b control 12 1 different 4317 4547 0.069546223 0.263551235 ff ff ff ff 42 38 0b 00 00 00 00 00 ff ff ff ff 50 38 0b 00 00 00 00 00 1 4 4:42->50 4:735298->735312 ....B8...... ....P8...... +1 104 2 105 a_to_b control 12 2 different 4327 4559 0.071476698 0.265630722 ff ff ff ff 43 38 0b 00 00 00 00 00 ff ff ff ff 51 38 0b 00 00 00 00 00 1 4 4:43->51 4:735299->735313 ....C8...... ....Q8...... +1 104 2 105 a_to_b control 12 3 different 4340 4571 0.172099590 0.277673721 ff ff ff ff 44 38 0b 00 00 00 00 00 ff ff ff ff 52 38 0b 00 00 00 00 00 1 4 4:44->52 4:735300->735314 ....D8...... ....R8...... +1 104 a_to_b control 12 4 missing_b 4351 0.260247707 fe ff ff ff d8 4a 01 00 c7 4a 01 00 .....J...J.. +1 104 a_to_b control 12 5 missing_b 4367 0.275054216 ff ff ff ff 45 38 0b 00 00 00 00 00 ....E8...... +1 104 2 105 a_to_b control_announce 12 0 different 4293 4511 0.067553520 0.172880173 1a 00 00 00 e2 62 0b 00 00 00 00 00 1a 00 00 00 f2 62 0b 00 00 00 00 00 1 4 4:e2->f2 4:746210->746226 .....b...... .....b...... +1 104 2 105 a_to_b control_announce 12 1 different 4297 4531 0.067930222 0.261359215 22 00 00 00 e3 62 0b 00 00 00 00 00 22 00 00 00 f3 62 0b 00 00 00 00 00 1 4 4:e3->f3 4:746211->746227 """....b......" """....b......" +1 104 2 105 a_to_b control_announce 12 2 different 4301 4535 0.068131447 0.261646271 43 00 00 00 e4 62 0b 00 00 00 00 00 43 00 00 00 f4 62 0b 00 00 00 00 00 1 4 4:e4->f4 4:746212->746228 C....b...... C....b...... +1 104 2 105 a_to_b control_announce 12 3 different 4318 4549 0.070311069 0.264326334 1e 00 00 00 e5 62 0b 00 00 00 00 00 1e 00 00 00 f5 62 0b 00 00 00 00 00 1 4 4:e5->f5 4:746213->746229 .....b...... .....b...... +1 104 2 105 a_to_b control_announce 12 4 different 4330 4561 0.170464754 0.276273012 1a 00 00 00 e6 62 0b 00 00 00 00 00 1a 00 00 00 f6 62 0b 00 00 00 00 00 1 4 4:e6->f6 4:746214->746230 .....b...... .....b...... +1 104 a_to_b control_announce 12 5 missing_b 4357 0.273474693 1a 00 00 00 e7 62 0b 00 00 00 00 00 .....b...... +1 104 2 105 a_to_b data 26 0 different 4295 4513 0.067722797 0.173079252 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 f5 1 14 14:53->69 12:-179109888->-177668096 T.c@.^1@......S....... T.c@.^1@......i....... +1 104 2 105 a_to_b data 26 1 different 4332 4563 0.170684099 0.276415348 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d f5 1 14 14:57->6d 12:-178847744->-177405952 T.c@.^1@......W....... T.c@.^1@......m....... +1 104 a_to_b data 26 2 missing_b 4359 0.273638964 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 f5 T.c@.^1@......Y....... +1 104 2 105 a_to_b data 30 0 different 4320 4551 0.070454121 0.264478683 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b f5 1 14 14:55->6b 12:-178978816->-177537024 U..b..:P......U........... U..b..:P......k........... +1 104 2 105 a_to_b data 34 0 different 4299 4533 0.068046808 0.261560202 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 1e 3 14 22 23 14:6a->6d 22:b3->46 23:ec->f0 12:510263296->510459904 20:-323813376->-263847936 .!...o3.......j.........2..... .!...o3.......m.......F.2..... +1 104 2 105 a_to_b data 67 0 different 4302 4537 0.068237782 0.261728048 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 6 19 55 56 57 58 59 19:6a->6d 55:88->80 56:60->c1 57:40->ce 58:cc->02 59:bf->c0 16:1778384896->1828716544 52:-2004877313->-2139095041 56:-1077133216->-1073557823 ..3...|8...........j.......=B.....&............. ..3...|8...........m.......=B.....&............. +1 104 2 105 b_to_a control 12 0 different 4300 4515 0.068119526 0.173507929 ff ff ff ff e2 62 0b 00 00 00 00 00 ff ff ff ff f2 62 0b 00 00 00 00 00 1 4 4:e2->f2 4:746210->746226 .....b...... .....b...... +1 104 2 105 b_to_a control 12 1 different 4304 4539 0.068414927 0.261993885 ff ff ff ff e3 62 0b 00 00 00 00 00 ff ff ff ff f3 62 0b 00 00 00 00 00 1 4 4:e3->f3 4:746211->746227 .....b...... .....b...... +1 104 2 105 b_to_a control 12 2 different 4306 4541 0.068648338 0.262209177 ff ff ff ff e4 62 0b 00 00 00 00 00 ff ff ff ff f4 62 0b 00 00 00 00 00 1 4 4:e4->f4 4:746212->746228 .....b...... .....b...... +1 104 2 105 b_to_a control 12 3 different 4322 4553 0.070734024 0.264806271 ff ff ff ff e5 62 0b 00 00 00 00 00 ff ff ff ff f5 62 0b 00 00 00 00 00 1 4 4:e5->f5 4:746213->746229 .....b...... .....b...... +1 104 2 105 b_to_a control 12 4 different 4334 4565 0.171112061 0.276723146 ff ff ff ff e6 62 0b 00 00 00 00 00 ff ff ff ff f6 62 0b 00 00 00 00 00 1 4 4:e6->f6 4:746214->746230 .....b...... .....b...... +1 104 b_to_a control 12 5 missing_b 4342 0.189489126 fe ff ff ff c7 4a 01 00 d7 4a 01 00 .....J...J.. +1 104 b_to_a control 12 6 missing_b 4361 0.274013996 ff ff ff ff e7 62 0b 00 00 00 00 00 .....b...... +1 104 2 105 b_to_a control_announce 12 0 different 4308 4517 0.068941116 0.173794508 16 00 00 00 41 38 0b 00 00 00 00 00 16 00 00 00 4f 38 0b 00 00 00 00 00 1 4 4:41->4f 4:735297->735311 ....A8...... ....O8...... +1 104 2 105 b_to_a control_announce 12 1 different 4312 4543 0.069282770 0.263011217 34 00 00 00 42 38 0b 00 00 00 00 00 34 00 00 00 50 38 0b 00 00 00 00 00 1 4 4:42->50 4:735298->735312 4...B8...... 4...P8...... +1 104 2 105 b_to_a control_announce 12 2 different 4323 4555 0.071092606 0.265175104 1a 00 00 00 43 38 0b 00 00 00 00 00 1a 00 00 00 51 38 0b 00 00 00 00 00 1 4 4:43->51 4:735299->735313 ....C8...... ....Q8...... +1 104 2 105 b_to_a control_announce 12 3 different 4336 4567 0.171579123 0.277314425 16 00 00 00 44 38 0b 00 00 00 00 00 16 00 00 00 52 38 0b 00 00 00 00 00 1 4 4:44->52 4:735300->735314 ....D8...... ....R8...... +1 104 b_to_a control_announce 12 4 missing_b 4363 0.274546623 16 00 00 00 45 38 0b 00 00 00 00 00 ....E8...... +1 104 2 105 b_to_a data 22 0 different 4310 4519 0.069132090 0.173957586 53 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 69 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 1 0 0:53->69 0:2094419->2094441 S................. i................. +1 104 2 105 b_to_a data 22 1 different 4338 4569 0.171810150 0.277461529 57 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 6d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 1 0 0:57->6d 0:2094423->2094445 W................. m................. +1 104 b_to_a data 22 2 missing_b 4365 0.274724960 59 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 Y................. +1 104 2 105 b_to_a data 26 0 different 4325 4557 0.071244001 0.265325308 55 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 6b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 1 0 0:55->6b 0:2094421->2094443 U..................... k..................... +1 104 2 105 b_to_a data 52 0 different 4314 4545 0.069372416 0.263190746 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 5 30 40 41 42 43 30:6a->6d 40:e5->ec 41:96->45 42:d1->5d 43:e8->e9 28:510263296->510459904 40:-388917531->-379763220 "Dk.................L."".([.....j.............O..." "Dk.................L."".([.....m..........E].O..." diff --git a/analysis/network/write-window-tcp-payloads.tsv b/analysis/network/write-window-tcp-payloads.tsv new file mode 100644 index 0000000..c9d982e --- /dev/null +++ b/analysis/network/write-window-tcp-payloads.tsv @@ -0,0 +1,41 @@ +4470 10.341148800 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13297 Ack=12024 Win=10001 Len=12 +4471 10.341240900 2 127.0.0.1 57470 127.0.0.1 57477 12 TCP 57470 → 57477 [PSH, ACK] Seq=287 Ack=319 Win=10110 Len=12 +4474 10.343385000 3 127.0.0.1 57608 127.0.0.1 57631 12 TCP 57608 → 57631 [PSH, ACK] Seq=5128 Ack=4124 Win=20738 Len=12 +4475 10.343431000 1 127.0.0.1 57684 127.0.0.1 57745 12 TCP 57684 → 57745 [PSH, ACK] Seq=241 Ack=253 Win=10057 Len=12 +4478 10.345373600 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12024 Ack=13309 Win=10071 Len=12 +4480 10.345547600 0 127.0.0.1 57415 127.0.0.1 57433 26 TCP 57415 → 57433 [PSH, ACK] Seq=12036 Ack=13309 Win=10071 Len=26 +4482 10.345839700 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13309 Ack=12062 Win=10001 Len=12 +4484 10.346310800 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13321 Ack=12062 Win=10001 Len=12 +4486 10.346584100 0 127.0.0.1 57433 127.0.0.1 57415 22 TCP 57433 → 57415 [PSH, ACK] Seq=13333 Ack=12062 Win=10001 Len=22 +4488 10.347004000 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12062 Ack=13355 Win=10071 Len=12 +4490 10.381730000 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12074 Ack=13355 Win=10071 Len=12 +4492 10.381933200 0 127.0.0.1 57415 127.0.0.1 57433 101 TCP 57415 → 57433 [PSH, ACK] Seq=12086 Ack=13355 Win=10071 Len=101 +4494 10.382269500 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13355 Ack=12187 Win=10001 Len=12 +4496 10.383301400 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13367 Ack=12187 Win=10001 Len=12 +4498 10.383494800 0 127.0.0.1 57433 127.0.0.1 57415 52 TCP 57433 → 57415 [PSH, ACK] Seq=13379 Ack=12187 Win=10001 Len=52 +4500 10.383890000 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12187 Ack=13431 Win=10071 Len=12 +4502 10.384693300 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12199 Ack=13431 Win=10071 Len=12 +4504 10.384852700 0 127.0.0.1 57415 127.0.0.1 57433 30 TCP 57415 → 57433 [PSH, ACK] Seq=12211 Ack=13431 Win=10071 Len=30 +4506 10.385149200 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13431 Ack=12241 Win=10000 Len=12 +4508 10.385528800 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13443 Ack=12241 Win=10000 Len=12 +4510 10.385724300 0 127.0.0.1 57433 127.0.0.1 57415 26 TCP 57433 → 57415 [PSH, ACK] Seq=13455 Ack=12241 Win=10000 Len=26 +4512 10.385987500 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12241 Ack=13481 Win=10071 Len=12 +4514 10.424025000 6 127.0.0.1 57747 127.0.0.1 57485 12 TCP 57747 → 57485 [PSH, ACK] Seq=241 Ack=241 Win=10072 Len=12 +4515 10.424109500 5 127.0.0.1 57746 127.0.0.1 57484 12 TCP 57746 → 57484 [PSH, ACK] Seq=241 Ack=241 Win=10069 Len=12 +4518 10.448378600 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12253 Ack=13481 Win=10071 Len=12 +4520 10.448545500 0 127.0.0.1 57415 127.0.0.1 57433 26 TCP 57415 → 57433 [PSH, ACK] Seq=12265 Ack=13481 Win=10071 Len=26 +4522 10.448845700 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13481 Ack=12291 Win=10000 Len=12 +4524 10.449402600 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13493 Ack=12291 Win=10000 Len=12 +4526 10.449552700 0 127.0.0.1 57433 127.0.0.1 57415 22 TCP 57433 → 57415 [PSH, ACK] Seq=13505 Ack=12291 Win=10000 Len=22 +4528 10.449829400 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12291 Ack=13527 Win=10071 Len=12 +4530 10.453342700 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12303 Ack=13527 Win=10071 Len=12 +4532 10.453456600 5 127.0.0.1 57484 127.0.0.1 57746 12 TCP 57484 → 57746 [PSH, ACK] Seq=241 Ack=253 Win=10062 Len=12 +4534 10.484208500 6 127.0.0.1 57485 127.0.0.1 57747 12 TCP 57485 → 57747 [PSH, ACK] Seq=241 Ack=253 Win=10067 Len=12 +4536 10.529537900 1 127.0.0.1 57745 127.0.0.1 57684 12 TCP 57745 → 57684 [PSH, ACK] Seq=253 Ack=253 Win=10055 Len=12 +4538 10.543558600 2 127.0.0.1 57477 127.0.0.1 57470 12 TCP 57477 → 57470 [PSH, ACK] Seq=319 Ack=299 Win=10133 Len=12 +4540 10.551539000 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12315 Ack=13527 Win=10071 Len=12 +4542 10.551708200 0 127.0.0.1 57415 127.0.0.1 57433 26 TCP 57415 → 57433 [PSH, ACK] Seq=12327 Ack=13527 Win=10071 Len=26 +4544 10.552097200 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13527 Ack=12353 Win=10000 Len=12 +4546 10.552656900 0 127.0.0.1 57433 127.0.0.1 57415 12 TCP 57433 → 57415 [PSH, ACK] Seq=13539 Ack=12353 Win=10000 Len=12 +4548 10.552948100 0 127.0.0.1 57433 127.0.0.1 57415 22 TCP 57433 → 57415 [PSH, ACK] Seq=13551 Ack=12353 Win=10000 Len=22 +4550 10.553274800 0 127.0.0.1 57415 127.0.0.1 57433 12 TCP 57415 → 57433 [PSH, ACK] Seq=12353 Ack=13573 Win=10070 Len=12 diff --git a/analysis/proxy/asbproxyprobe-unregister-compare.txt b/analysis/proxy/asbproxyprobe-unregister-compare.txt new file mode 100644 index 0000000..5df9a7f --- /dev/null +++ b/analysis/proxy/asbproxyprobe-unregister-compare.txt @@ -0,0 +1,25 @@ +process=x64:True +tag=TestChildObject.TestInt +access=ZB +idata_v2_endpoints=1 +idata_v2_endpoint[0].address=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +idata_v2_endpoint[0].listen=net.tcp://172.29.224.1/ASBService/Default_ZB_MxDataProvider/IDataV2,net.tcp://10.100.0.48/ASBService/Default_ZB_MxDataProvider/IDataV2,net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +idata_v2_endpoint[0].contracts=http://ASB.IDataV2:IASBIDataV2 +idata_v2_endpoint[0].scopes=archestra://asb/zb/mx/default_zb_mxdataprovider,archestra://asb/domainname/zb,archestra://asb/instancename/default_zb_mxdataprovider,archestra://asb/serviceversion/1/0/0000,archestra://asb/datatype/archestragalaxy,archestra://asb/asbsolution/archestra_desktop-6jl3kko +selector_proxy=ArchestrAServices.Proxy.ASBDataV2Proxy +selector_error= +connect_v2=True +connect_v2_error= +connect_v2_state=Opened +publish_write_complete_error=0x00000000 +publish_write_complete_count=0 +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +register_capability[0]=id:18446462598732840961 id_specified:True write_capability:0 write_specified:True +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:412 +read_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +unregister_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x0000000B error_specified:True status_count:0 status_payload_len:0 diff --git a/analysis/proxy/asbproxyprobe-write407-compare.err.txt b/analysis/proxy/asbproxyprobe-write407-compare.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/asbproxyprobe-write407-compare.txt b/analysis/proxy/asbproxyprobe-write407-compare.txt new file mode 100644 index 0000000..33736de --- /dev/null +++ b/analysis/proxy/asbproxyprobe-write407-compare.txt @@ -0,0 +1,35 @@ +process=x64:True +tag=TestChildObject.TestInt +write_int=407 +access=ZB +idata_v2_endpoints=1 +idata_v2_endpoint[0].address=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +idata_v2_endpoint[0].listen=net.tcp://172.29.224.1/ASBService/Default_ZB_MxDataProvider/IDataV2,net.tcp://10.100.0.48/ASBService/Default_ZB_MxDataProvider/IDataV2,net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +idata_v2_endpoint[0].contracts=http://ASB.IDataV2:IASBIDataV2 +idata_v2_endpoint[0].scopes=archestra://asb/zb/mx/default_zb_mxdataprovider,archestra://asb/domainname/zb,archestra://asb/instancename/default_zb_mxdataprovider,archestra://asb/serviceversion/1/0/0000,archestra://asb/datatype/archestragalaxy,archestra://asb/asbsolution/archestra_desktop-6jl3kko +selector_proxy=ArchestrAServices.Proxy.ASBDataV2Proxy +selector_error= +connect_v2=True +connect_v2_error= +connect_v2_state=Opened +publish_write_complete_error=0x00000000 +publish_write_complete_count=0 +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +register_capability[0]=id:18446462598732840961 id_specified:True write_capability:0 write_specified:True +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:406 +read_value[0].timestamp=2026-04-26T05:55:09.3260000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B20001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:407 +read_value[0].timestamp=2026-04-26T05:55:33.9850000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +publish_write_complete_after_write_error=0x00000020 +publish_write_complete_after_write_count=1 +publish_write_complete_after_write[0]=handle:2779906049 handle_specified:True status_items:1 +publish_write_complete_after_write[0].status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:4 status_payload_len:4 diff --git a/analysis/proxy/callback-marshal-after-typelib-probe.txt b/analysis/proxy/callback-marshal-after-typelib-probe.txt new file mode 100644 index 0000000..d518105 --- /dev/null +++ b/analysis/proxy/callback-marshal-after-typelib-probe.txt @@ -0,0 +1,16 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.38276 +callback_objref_size=366 +callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A000005000000C22F2545251EF04B51C0F60DF6DB4F7002E800008495FFFF36652CEC2D79157A95007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +objref_signature=0x574F454D +objref_flags=0x00000001 +objref_iid=b49f92f7-c748-4169-8eca-a0670b012746 +std_flags=0x00000A80 +std_public_refs=5 +std_oxid=0x4BF01E2545252FC2 +std_oid=0x704FDBF60DF6C051 +std_ipid=0000e802-9584-ffff-3665-2cec2d79157a +dual_string_entries=149 +dual_string_security_offset=127 +dual_strings=string:0x0007:ncacn_ip_tcp:DESKTOP-6JL3KKO|string:0x0007:ncacn_ip_tcp:10.100.0.48|string:0x0007:ncacn_ip_tcp:172.29.224.1|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:50b1:846f:7b51:ea40|security:0x0009:ncacn_np:|security:0x001e:unknown:|security:0x0010:ncacn_nb_nb:|security:0x000a:unknown:|security:0x0016:ncadg_ip_udp_or_netbios:|security:0x001f:ncalrpc:|security:0x000e:unknown: diff --git a/analysis/proxy/callback-marshal-probe.txt b/analysis/proxy/callback-marshal-probe.txt new file mode 100644 index 0000000..78533f8 --- /dev/null +++ b/analysis/proxy/callback-marshal-probe.txt @@ -0,0 +1,4 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.832 +callback_marshal_com_error=0x80040154 Class not registered (0x80040154 (REGDB_E_CLASSNOTREG)) diff --git a/analysis/proxy/dcom-inmxservice2-getpartner-probe.txt b/analysis/proxy/dcom-inmxservice2-getpartner-probe.txt new file mode 100644 index 0000000..ec39c00 --- /dev/null +++ b/analysis/proxy/dcom-inmxservice2-getpartner-probe.txt @@ -0,0 +1,10 @@ +cocreate_ok +target=DESKTOP-6JL3KKO +oxid=0xeaf0d2b53bab5bc2 +oid=0x3d1cd4b2d0086e49 +ipid=1f9c000078360000cc8700e69d130bf5 +ipidRemUnknown=004c00007836000010a0bc391315cf36 +bindings=DESKTOP-6JL3KKO[60241]|10.100.0.48[60241]|172.29.224.1[60241]|fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18[60241]|fde1:ae41:8a00:452a:501a:2da4:abd0:f50a[60241] +get_partner_version_ok +partner_version=6 +error_code=0x00000000 diff --git a/analysis/proxy/held-objref.txt b/analysis/proxy/held-objref.txt new file mode 100644 index 0000000..9765f06 --- /dev/null +++ b/analysis/proxy/held-objref.txt @@ -0,0 +1,18 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.30724 +objref_context=2 +objref_size=366 +objref_hex=4D454F57010000000000000000000000C0000000000000460000000001000000C25BAB3BB5D2F0EA1DC5C4694447334A18BC00007836000033180B1FD3AC70A595007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000310061003A0032006400610034003A0061006200640030003A006600350030006100000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +objref_signature=0x574F454D +objref_flags=0x00000001 +objref_iid=00000000-0000-0000-c000-000000000046 +std_flags=0x00000000 +std_public_refs=1 +std_oxid=0xEAF0D2B53BAB5BC2 +std_oid=0x4A33474469C4C51D +std_ipid=0000bc18-3678-0000-3318-0b1fd3ac70a5 +dual_string_entries=149 +dual_string_security_offset=127 +dual_strings=string:0x0007:ncacn_ip_tcp:DESKTOP-6JL3KKO|string:0x0007:ncacn_ip_tcp:10.100.0.48|string:0x0007:ncacn_ip_tcp:172.29.224.1|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:501a:2da4:abd0:f50a|security:0x0009:ncacn_np:|security:0x001e:unknown:|security:0x0010:ncacn_nb_nb:|security:0x000a:unknown:|security:0x0016:ncadg_ip_udp_or_netbios:|security:0x001f:ncalrpc:|security:0x000e:unknown: +objref_hold_seconds=60 diff --git a/analysis/proxy/held-objref.txt.err b/analysis/proxy/held-objref.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/managed-callback-fixed-port-tcp-poll.txt b/analysis/proxy/managed-callback-fixed-port-tcp-poll.txt new file mode 100644 index 0000000..a27cf48 --- /dev/null +++ b/analysis/proxy/managed-callback-fixed-port-tcp-poll.txt @@ -0,0 +1,14 @@ +--- 2026-04-25T11:43:58.7443178-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +0.0.0.0 61017 0.0.0.0 0 Listen 14056 + + +--- 2026-04-25T11:44:01.5974511-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +0.0.0.0 61017 0.0.0.0 0 Listen 14056 + + diff --git a/analysis/proxy/managed-callback-nmxsvc-tcp-poll.txt b/analysis/proxy/managed-callback-nmxsvc-tcp-poll.txt new file mode 100644 index 0000000..728c75d --- /dev/null +++ b/analysis/proxy/managed-callback-nmxsvc-tcp-poll.txt @@ -0,0 +1,68 @@ +--- 2026-04-25T11:44:38.9131290-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +10.100.0.48 5026 0.0.0.0 0 Listen 13944 +:: 49829 :: 0 Bound 13944 +::1 49829 ::1 49704 Established 13944 +:: 60241 :: 0 Listen 13944 +0.0.0.0 60241 0.0.0.0 0 Listen 13944 + + +--- 2026-04-25T11:44:42.1490473-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +10.100.0.48 5026 0.0.0.0 0 Listen 13944 +:: 49829 :: 0 Bound 13944 +::1 49829 ::1 49704 Established 13944 +:: 60241 :: 0 Listen 13944 +0.0.0.0 60241 0.0.0.0 0 Listen 13944 + + +--- 2026-04-25T11:44:45.0481283-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +10.100.0.48 5026 0.0.0.0 0 Listen 13944 +:: 49829 :: 0 Bound 13944 +::1 49829 ::1 49704 Established 13944 +:: 60241 :: 0 Listen 13944 +0.0.0.0 60241 0.0.0.0 0 Listen 13944 +fe80::3608:256c:365:cc73%6 60241 fe80::3608:256c:365:cc73%6 58633 Established 13944 + + +--- 2026-04-25T11:44:47.7898652-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +10.100.0.48 5026 0.0.0.0 0 Listen 13944 +:: 49829 :: 0 Bound 13944 +::1 49829 ::1 49704 Established 13944 +:: 60241 :: 0 Listen 13944 +0.0.0.0 60241 0.0.0.0 0 Listen 13944 +fe80::3608:256c:365:cc73%6 60241 fe80::3608:256c:365:cc73%6 58633 Established 13944 + + +--- 2026-04-25T11:44:50.3840221-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +10.100.0.48 5026 0.0.0.0 0 Listen 13944 +:: 49829 :: 0 Bound 13944 +::1 49829 ::1 49704 Established 13944 +:: 60241 :: 0 Listen 13944 +0.0.0.0 60241 0.0.0.0 0 Listen 13944 + + +--- 2026-04-25T11:44:53.0205008-04:00 + +LocalAddress LocalPort RemoteAddress RemotePort State OwningProcess +------------ --------- ------------- ---------- ----- ------------- +10.100.0.48 5026 0.0.0.0 0 Listen 13944 +:: 49829 :: 0 Bound 13944 +::1 49829 ::1 49704 Established 13944 +:: 60241 :: 0 Listen 13944 +0.0.0.0 60241 0.0.0.0 0 Listen 13944 + + diff --git a/analysis/proxy/managed-registerengine2-callback-com-iunknown-objref-probe.txt b/analysis/proxy/managed-registerengine2-callback-com-iunknown-objref-probe.txt new file mode 100644 index 0000000..af719df --- /dev/null +++ b/analysis/proxy/managed-registerengine2-callback-com-iunknown-objref-probe.txt @@ -0,0 +1,11 @@ +process=x64:True +engine_id=29445 +engine_name=MxManagedComOxidCallback +managed_callback_exporter_port=51999 +managed_callback_objref_size=366 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A00000500000030845334DADC23F3CE1E20EA7494978702E000003CD9FFFF14F4925FBCD90EF195007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=484 +managed_register2_callback_stub_size=16 +managed_register2_callback_stub_hex=00000000000000000000000000000000 +managed_register2_callback_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 diff --git a/analysis/proxy/managed-registerengine2-callback-com-iunknown-route-probe.txt b/analysis/proxy/managed-registerengine2-callback-com-iunknown-route-probe.txt new file mode 100644 index 0000000..e0a4649 --- /dev/null +++ b/analysis/proxy/managed-registerengine2-callback-com-iunknown-route-probe.txt @@ -0,0 +1,14 @@ +process=x64:True +engine_id=29447 +engine_name=MxManagedComOxidRouteProbe +managed_callback_exporter_port=53180 +managed_callback_objref_size=366 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A00000500000048E57E1216F87DE0451FFBBB55AB977A02B0000068E5FFFFFD219D87A2A265A495007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=488 +managed_register2_callback_stub_size=16 +managed_register2_callback_stub_hex=00000000000000000000000000000000 +managed_register2_callback_hresult=0x00000000 +managed_callback_connect_self_hresult=0x00000000 +managed_callback_add_self_subscriber_hresult=0x00000000 +managed_callback_self_transfer_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 diff --git a/analysis/proxy/managed-registerengine2-callback-com-iunknown-self-transfer-probe.txt b/analysis/proxy/managed-registerengine2-callback-com-iunknown-self-transfer-probe.txt new file mode 100644 index 0000000..c10c6c0 --- /dev/null +++ b/analysis/proxy/managed-registerengine2-callback-com-iunknown-self-transfer-probe.txt @@ -0,0 +1,12 @@ +process=x64:True +engine_id=29446 +engine_name=MxManagedComOxidSelfTransfer +managed_callback_exporter_port=52325 +managed_callback_objref_size=366 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A000005000000476D9EF3899C08A76684649B7C2A37DB02600000B4D8FFFFE7C3D1D84F5B6F1195007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=492 +managed_register2_callback_stub_size=16 +managed_register2_callback_stub_hex=00000000000000000000000000000000 +managed_register2_callback_hresult=0x00000000 +managed_callback_self_transfer_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 diff --git a/analysis/proxy/managed-registerengine2-callback-com-real-probe.txt b/analysis/proxy/managed-registerengine2-callback-com-real-probe.txt new file mode 100644 index 0000000..f1e580e --- /dev/null +++ b/analysis/proxy/managed-registerengine2-callback-com-real-probe.txt @@ -0,0 +1,14 @@ +process=x64:True +engine_id=29456 +engine_name=MxManagedRealCallback +managed_callback_exporter_port=56951 +managed_callback_objref_size=366 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A000005000000231CA9B9ECF035793EEBA5430DEDD30602080000D0D7FFFFF289723908CA307D95007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=480 +managed_register2_callback_stub_size=16 +managed_register2_callback_stub_hex=00000000000000000000000000000000 +managed_register2_callback_hresult=0x00000000 +managed_callback_connect_self_hresult=0x00000000 +managed_callback_add_self_subscriber_hresult=0x00000000 +managed_callback_self_transfer_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 diff --git a/analysis/proxy/managed-registerengine2-callback-fixed-port-probe.txt b/analysis/proxy/managed-registerengine2-callback-fixed-port-probe.txt new file mode 100644 index 0000000..fdc8d70 --- /dev/null +++ b/analysis/proxy/managed-registerengine2-callback-fixed-port-probe.txt @@ -0,0 +1,9 @@ +process=x64:True +engine_id=29444 +engine_name=MxManagedCallbackTcpWatch +managed_callback_exporter_port=61018 +managed_callback_objref_size=150 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B0127468002000005000000ED82B290134AD78CD9C5BDAE53323D2551645AE01CFA8D4C823AD309821DF1142900130007003100320037002E0030002E0030002E0031005B00360031003000310038005D00000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=272 +managed_register2_callback_fault=0x800706BA +managed_unregister_after_callback_register_hresult=0x00000001 diff --git a/analysis/proxy/managed-registerengine2-callback-loopback-probe.txt b/analysis/proxy/managed-registerengine2-callback-loopback-probe.txt new file mode 100644 index 0000000..4faa4f0 --- /dev/null +++ b/analysis/proxy/managed-registerengine2-callback-loopback-probe.txt @@ -0,0 +1,9 @@ +process=x64:True +engine_id=29442 +engine_name=MxManagedCallbackLoopback +managed_callback_exporter_port=60602 +managed_callback_objref_size=150 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B01274680020000050000000796F27A3EEF28A0D5DAE50BD1D185EB11993BD5E155974C9F3D326A5F54ABC92900130007003100320037002E0030002E0030002E0031005B00360030003600300032005D00000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=272 +managed_register2_callback_fault=0x800706BA +managed_unregister_after_callback_register_hresult=0x00000001 diff --git a/analysis/proxy/managed-registerengine2-callback-probe.txt b/analysis/proxy/managed-registerengine2-callback-probe.txt new file mode 100644 index 0000000..70225bc --- /dev/null +++ b/analysis/proxy/managed-registerengine2-callback-probe.txt @@ -0,0 +1,9 @@ +process=x64:True +engine_id=29441 +engine_name=MxManagedCallbackProbe2 +managed_callback_exporter_port=60525 +managed_callback_objref_size=162 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B0127468002000005000000E7D11E61B1D728DDC2A9A31B002862B5AC1C085FAE2CB34C8C4EFF865C75BC682F00190007004400450053004B0054004F0050002D0036004A004C0033004B004B004F005B00360030003500320035005D00000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=280 +managed_register2_callback_fault=0x800706BA +managed_unregister_after_callback_register_hresult=0x00000001 diff --git a/analysis/proxy/managed-registerengine2-null-callback-probe.txt b/analysis/proxy/managed-registerengine2-null-callback-probe.txt new file mode 100644 index 0000000..89cb7cf --- /dev/null +++ b/analysis/proxy/managed-registerengine2-null-callback-probe.txt @@ -0,0 +1,10 @@ +process=x64:True +engine_id=29185 +engine_name=MxManagedNullCallback2 +managed_register2_null_request_size=104 +managed_register2_null_request_hex=050007000000000000000000596C1B7B55B2DD40AFD2B7F884AF9924000000000172000055736572160000002C000000160000004D0078004D0061006E0061006700650064004E0075006C006C00430061006C006C006200610063006B0032003075000000000000 +managed_register2_null_stub_size=16 +managed_register2_null_stub_prefix=00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 +managed_register2_null_stub_hex=00000000000000000100000000000000 +managed_register2_null_hresult=0x00000001 +managed_unregister_after_register_hresult=0x00000001 diff --git a/analysis/proxy/managed-remqi-and-getpartner-probe.txt b/analysis/proxy/managed-remqi-and-getpartner-probe.txt new file mode 100644 index 0000000..13c44f8 --- /dev/null +++ b/analysis/proxy/managed-remqi-and-getpartner-probe.txt @@ -0,0 +1,14 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.51580 +remqi_managed_stub_size=80 +remqi_managed_stub_prefix=00 00 00 00 00 00 00 00 00 00 02 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00 +remqi_managed_stub_hex=0000000000000000000002000100000000000000000000000000000005000000C25BAB3BB5D2F0EAC112932A9F0ECDE92A7400007836000092AD8EFEE237FC2400000000000000000000000000000000 +remqi_managed_hresult=0x00000000 +remqi_managed_inmxservice2_ipid=0000742a-3678-0000-92ad-8efee237fc24 +remqi_managed_inmxservice2_oxid=0xEAF0D2B53BAB5BC2 +remqi_managed_inmxservice2_oid=0xE9CD0E9F2A9312C1 +managed_getpartner_version=6 +managed_getpartner_hresult=0x00000000 +remqi_managed_error=0x00000000 +remqi_managed_tail_status=0x00000000 diff --git a/analysis/proxy/managed-transferdata-control-probe.txt b/analysis/proxy/managed-transferdata-control-probe.txt new file mode 100644 index 0000000..44ee23b --- /dev/null +++ b/analysis/proxy/managed-transferdata-control-probe.txt @@ -0,0 +1,7 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.32288 +managed_transferdata_stub_size=16 +managed_transferdata_stub_prefix=00 00 00 00 00 00 00 00 01 11 04 80 00 00 00 00 +managed_transferdata_stub_hex=00000000000000000111048000000000 +managed_transferdata_hresult=0x80041101 diff --git a/analysis/proxy/managed-wrap-trace.txt b/analysis/proxy/managed-wrap-trace.txt new file mode 100644 index 0000000..e3aa88c --- /dev/null +++ b/analysis/proxy/managed-wrap-trace.txt @@ -0,0 +1,6 @@ +signed_input_length=52 +wrapped_length=68 +token_then_input=False +input_then_token=False +wrapped_first16=01000000AAF5A85BD8ECAAF000000000 +wrapped_last16=8F06E4A38E04DA073A936E6396E642D6 diff --git a/analysis/proxy/mxasbclient-probe-error-cases-v2.err.txt b/analysis/proxy/mxasbclient-probe-error-cases-v2.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-error-cases-v2.txt b/analysis/proxy/mxasbclient-probe-error-cases-v2.txt new file mode 100644 index 0000000..22d0c00 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-error-cases-v2.txt @@ -0,0 +1,76 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tags=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=10 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_name:Success error_specified:True status_count:0 status_payload_len:0 status: +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_name:Success error_specified:True status_count:0 status_payload_len:0 status: +read_value[0]=type:4 length:4 payload_len:4 preview:412 +read_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 status:OpcUaStatus:0|OpcUaVendorStatus:0|MxStatusCategory:751|MxStatusDetail:0|MxQuality:192 +probe_invalid_targets tag=DefinitelyMissingObject.DefinitelyMissingAttribute +invalid_register_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_register_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840962 id_specified:True error:0x00000000 error_name:Success error_specified:True status_count:0 status_payload_len:0 status: +invalid_read_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_read_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840962 id_specified:True error:0x0000000A error_name:InvalidMonitoredItems error_specified:True status_count:0 status_payload_len:0 status: +invalid_read_value[0]=type:0 length:0 payload_len:0 preview: +invalid_read_value[0].timestamp=1600-12-31T19:00:00.0000000-05:00 timestamp_specified=True +invalid_read_value[0].status_count=9 status_payload_len=9 status:OpcUaStatus:32905|OpcUaVendorStatus:0|MxStatusCategory:750|MxStatusDetail:0|MxQuality:0 +invalid_write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B2E001 +invalid_write_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840963 id_specified:True error:0x0000001F error_name:OperationWouldBlock error_specified:True status_count:0 status_payload_len:0 status: +invalid_write_completion handle=0xA5B2E001 completed=True timed_out=False elapsed_ms=325 polls=2 raw_count=1 +invalid_write_completion_poll[0]_error=0x00000000 status=0x00000000 specific=0x00000000 count=0 +invalid_write_completion_poll[1]_error=0x00000020 status=0x00000000 specific=0x00000000 count=1 +invalid_write_completion_raw[0]=handle:2779963393 handle_hex:0xA5B2E001 handle_specified:True status_items:1 +invalid_write_completion_raw[0].status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840963 id_specified:True error:0x00000006 error_name:MonitoredItemsNotFound error_specified:True status_count:10 status_payload_len:10 status:OpcUaStatus:6|OpcUaVendorStatus:0|MxStatusCategory:4|MxStatusDetail:6 +invalid_write_completion_match[0]=handle:2779963393 handle_hex:0xA5B2E001 handle_specified:True status_items:1 +invalid_write_completion_match[0].status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840963 id_specified:True error:0x00000006 error_name:MonitoredItemsNotFound error_specified:True status_count:10 status_payload_len:10 status:OpcUaStatus:6|OpcUaVendorStatus:0|MxStatusCategory:4|MxStatusDetail:6 +invalid_unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_unregister_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840962 id_specified:True error:0x0000000B error_name:OperationFailed error_specified:True status_count:0 status_payload_len:0 status: +probe_wrong_type_write tag=TestChildObject.TestInt +wrong_type_write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B2E002 +wrong_type_write_status[0]=item:TestChildObject.TestInt id:18446462598732840964 id_specified:True error:0x0000001F error_name:OperationWouldBlock error_specified:True status_count:0 status_payload_len:0 status: +wrong_type_write_completion handle=0xA5B2E002 completed=True timed_out=False elapsed_ms=255 polls=2 raw_count=1 +wrong_type_write_completion_poll[0]_error=0x00000000 status=0x00000000 specific=0x00000000 count=0 +wrong_type_write_completion_poll[1]_error=0x00000020 status=0x00000000 specific=0x00000000 count=1 +wrong_type_write_completion_raw[0]=handle:2779963394 handle_hex:0xA5B2E002 handle_specified:True status_items:1 +wrong_type_write_completion_raw[0].status[0]=item:TestChildObject.TestInt id:18446462598732840964 id_specified:True error:0x00000013 error_name:WriteFailedBadTypeMismatch error_specified:True status_count:10 status_payload_len:10 status:OpcUaStatus:19|OpcUaVendorStatus:0|MxStatusCategory:4|MxStatusDetail:8001 +wrong_type_write_completion_match[0]=handle:2779963394 handle_hex:0xA5B2E002 handle_specified:True status_items:1 +wrong_type_write_completion_match[0].status[0]=item:TestChildObject.TestInt id:18446462598732840964 id_specified:True error:0x00000013 error_name:WriteFailedBadTypeMismatch error_specified:True status_count:10 status_payload_len:10 status:OpcUaStatus:19|OpcUaVendorStatus:0|MxStatusCategory:4|MxStatusDetail:8001 +wrong_type_read_after_error=0x00000000 status=0x00000000 specific=0x00000000 +wrong_type_read_after_status[0]=item:TestChildObject.TestInt id:18446462598732840964 id_specified:True error:0x00000000 error_name:Success error_specified:True status_count:0 status_payload_len:0 status: +wrong_type_read_after_value[0]=type:4 length:4 payload_len:4 preview:412 +wrong_type_read_after_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +wrong_type_read_after_value[0].status_count=9 status_payload_len=9 status:OpcUaStatus:0|OpcUaVendorStatus:0|MxStatusCategory:751|MxStatusDetail:0|MxQuality:192 +probe_invalid_cleanup=True +invalid_cleanup_create_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=10 +invalid_cleanup_delete_monitored_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_cleanup_delete_monitored_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446744073709551615 id_specified:True error:0x0000000B error_name:OperationFailed error_specified:True status_count:0 status_payload_len:0 status: +invalid_cleanup_delete_subscription_error=0x0000000C status=0x00000020 specific=0x80020000 subscription_id=987654331 +invalid_cleanup_delete_valid_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=10 +probe_empty_publish=True +empty_publish_create_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=11 +empty_publish[0]_error=0x00000020 status=0x00000000 specific=0x00000000 +empty_publish[1]_error=0x00000020 status=0x00000000 specific=0x00000000 +empty_publish_delete_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=11 +unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +unregister_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x0000000B error_name:OperationFailed error_specified:True status_count:0 status_payload_len:0 status: diff --git a/analysis/proxy/mxasbclient-probe-error-cases.err.txt b/analysis/proxy/mxasbclient-probe-error-cases.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-error-cases.txt b/analysis/proxy/mxasbclient-probe-error-cases.txt new file mode 100644 index 0000000..6bb49a8 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-error-cases.txt @@ -0,0 +1,61 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tags=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=10 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_name:Success error_specified:True status_count:0 status_payload_len:0 status: +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_name:Success error_specified:True status_count:0 status_payload_len:0 status: +read_value[0]=type:4 length:4 payload_len:4 preview:412 +read_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 status:OpcUaStatus:0|OpcUaVendorStatus:0|MxStatusCategory:751|MxStatusDetail:0|MxQuality:192 +probe_invalid_targets tag=DefinitelyMissingObject.DefinitelyMissingAttribute +invalid_register_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_register_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840962 id_specified:True error:0x00000000 error_name:Success error_specified:True status_count:0 status_payload_len:0 status: +invalid_read_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_read_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840962 id_specified:True error:0x0000000A error_name:InvalidMonitoredItems error_specified:True status_count:0 status_payload_len:0 status: +invalid_read_value[0]=type:0 length:0 payload_len:0 preview: +invalid_read_value[0].timestamp=1600-12-31T19:00:00.0000000-05:00 timestamp_specified=True +invalid_read_value[0].status_count=9 status_payload_len=9 status:OpcUaStatus:32905|OpcUaVendorStatus:0|MxStatusCategory:750|MxStatusDetail:0|MxQuality:0 +invalid_write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B2E001 +invalid_write_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840963 id_specified:True error:0x0000001F error_name:OperationWouldBlock error_specified:True status_count:0 status_payload_len:0 status: +invalid_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_write_complete_count=0 +invalid_unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_unregister_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446462598732840962 id_specified:True error:0x0000000B error_name:OperationFailed error_specified:True status_count:0 status_payload_len:0 status: +probe_wrong_type_write tag=TestChildObject.TestInt +wrong_type_write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B2E002 +wrong_type_write_status[0]=item:TestChildObject.TestInt id:18446462598732840964 id_specified:True error:0x0000001F error_name:OperationWouldBlock error_specified:True status_count:0 status_payload_len:0 status: +wrong_type_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +wrong_type_write_complete_count=0 +probe_invalid_cleanup=True +invalid_cleanup_create_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=8 +invalid_cleanup_delete_monitored_error=0x00000000 status=0x00000000 specific=0x00000000 +invalid_cleanup_delete_monitored_status[0]=item:DefinitelyMissingObject.DefinitelyMissingAttribute id:18446744073709551615 id_specified:True error:0x0000000B error_name:OperationFailed error_specified:True status_count:0 status_payload_len:0 status: +invalid_cleanup_delete_subscription_error=0x0000000C status=0x00000020 specific=0x80020000 subscription_id=987654329 +invalid_cleanup_delete_valid_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=8 +probe_empty_publish=True +empty_publish_create_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=9 +empty_publish[0]_error=0x00000020 status=0x00000000 specific=0x00000000 +empty_publish[1]_error=0x00000020 status=0x00000000 specific=0x00000000 +empty_publish_delete_subscription_error=0x00000000 status=0x00000000 specific=0x00000000 subscription_id=9 +unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +unregister_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x0000000B error_name:OperationFailed error_specified:True status_count:0 status_payload_len:0 status: diff --git a/analysis/proxy/mxasbclient-probe-stage.err.txt b/analysis/proxy/mxasbclient-probe-stage.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage.txt b/analysis/proxy/mxasbclient-probe-stage.txt new file mode 100644 index 0000000..3f53352 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage.txt @@ -0,0 +1,4 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase diff --git a/analysis/proxy/mxasbclient-probe-stage10.err.txt b/analysis/proxy/mxasbclient-probe-stage10.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage10.txt b/analysis/proxy/mxasbclient-probe-stage10.txt new file mode 100644 index 0000000..1a04c23 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage10.txt @@ -0,0 +1,60 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.register.request= + + + http://ASB.IDataV2:registerItemsIn + + 40d57fbb-d765-4724-a957-3e2a1b43466b + + 2 + + + urn:uuid:a2a09131-90a2-4aee-ae17-7b430a562809 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item: id:0 id_specified:False error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:0 length:0 payload_len:0 preview: +read_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_value[0].status_count=0 status_payload_len=0 diff --git a/analysis/proxy/mxasbclient-probe-stage11-write.err.txt b/analysis/proxy/mxasbclient-probe-stage11-write.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage11-write.txt b/analysis/proxy/mxasbclient-probe-stage11-write.txt new file mode 100644 index 0000000..ffcf1b4 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage11-write.txt @@ -0,0 +1,74 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.register.request= + + + http://ASB.IDataV2:registerItemsIn + + 67aebd64-9046-43aa-904f-6b60ac8329af + + 2 + + + urn:uuid:df97618f-3798-4ae3-b113-e738410a3fc1 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item: id:0 id_specified:False error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:0 length:0 payload_len:0 preview: +read_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_value[0].status_count=0 status_payload_len=0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item: id:0 id_specified:False error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:0 length:0 payload_len:0 preview: +read_after_write_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=0 status_payload_len=0 +publish_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +publish_write_complete_count=0 diff --git a/analysis/proxy/mxasbclient-probe-stage12-trace.err.txt b/analysis/proxy/mxasbclient-probe-stage12-trace.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage12-trace.txt b/analysis/proxy/mxasbclient-probe-stage12-trace.txt new file mode 100644 index 0000000..abb46fa --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage12-trace.txt @@ -0,0 +1,228 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.register.request= + + + http://ASB.IDataV2:registerItemsIn + + 1bda991e-6f27-41a5-a8ff-51cde680fc22 + + 2 + + + urn:uuid:acfb18ec-8eb6-465b-ba14-b17e8d3f97e9 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:acfb18ec-8eb6-465b-ba14-b17e8d3f97e9 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:0b15bb77-7195-4f8a-84f3-5f13fc13a46a + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item: id:0 id_specified:False error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:0 length:0 payload_len:0 preview: +read_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_value[0].status_count=0 status_payload_len=0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:c2b14386-1091-4e53-a460-820d52f9ceef + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 12 + 2147483648 + 32 + false + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:d6eaac81-43ef-4f41-a089-40d2bacaa7e1 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item: id:0 id_specified:False error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:0 length:0 payload_len:0 preview: +read_after_write_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=0 status_payload_len=0 +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:1da10557-92e6-48d2-b787-5ed28d83b196 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + + + + +publish_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +publish_write_complete_count=0 diff --git a/analysis/proxy/mxasbclient-probe-stage13-decode.err.txt b/analysis/proxy/mxasbclient-probe-stage13-decode.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage13-decode.txt b/analysis/proxy/mxasbclient-probe-stage13-decode.txt new file mode 100644 index 0000000..19056be --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage13-decode.txt @@ -0,0 +1,228 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.register.request= + + + http://ASB.IDataV2:registerItemsIn + + e02fd6ca-a051-4f13-b884-aaedfcac671b + + 2 + + + urn:uuid:c20e0bf0-d032-4e8b-a764-87e72065fd77 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:c20e0bf0-d032-4e8b-a764-87e72065fd77 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:81b42133-76cc-419b-8b3e-dd270b76762a + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:401 +read_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:bf932c02-f9f9-40cb-93be-6bf1e0bcc2ab + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 12 + 2147483648 + 32 + false + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:0e6d26c2-351e-43e2-902c-b8ac8757bffd + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:401 +read_after_write_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:ef9067bb-4cee-4e8b-a72b-a90f5a42b8b0 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + + + + +publish_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +publish_write_complete_count=0 diff --git a/analysis/proxy/mxasbclient-probe-stage14-write-request.err.txt b/analysis/proxy/mxasbclient-probe-stage14-write-request.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage14-write-request.txt b/analysis/proxy/mxasbclient-probe-stage14-write-request.txt new file mode 100644 index 0000000..65797ff --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage14-write-request.txt @@ -0,0 +1,340 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 5add586c-e0cf-4632-a01a-2cc8da3e01a2 + + 2 + + + urn:uuid:c8b64d69-cfae-4b91-9fab-c8915857f6a5 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:c8b64d69-cfae-4b91-9fab-c8915857f6a5 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 5add586c-e0cf-4632-a01a-2cc8da3e01a2 + + 3 + + + urn:uuid:e78f7fd3-5992-4aa4-b76a-700bd2f17852 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:e78f7fd3-5992-4aa4-b76a-700bd2f17852 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:401 +read_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 5add586c-e0cf-4632-a01a-2cc8da3e01a2 + + 4 + + + urn:uuid:81daedd2-5b7d-4dda-99c6-0434d524ad4e + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + false + 0 + MxAsbClient write-int + false + false + + 0 + + + false + 0001-01-01T00:00:00 + + 4 + lQEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:81daedd2-5b7d-4dda-99c6-0434d524ad4e + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 12 + 2147483648 + 32 + false + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 5add586c-e0cf-4632-a01a-2cc8da3e01a2 + + 5 + + + urn:uuid:bc02eeff-fc33-4eb0-9c4a-e0ef6c9e0c10 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:bc02eeff-fc33-4eb0-9c4a-e0ef6c9e0c10 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:401 +read_after_write_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.request= + + + http://ASB.IDataV2:publishWriteCompleteIn + + 5add586c-e0cf-4632-a01a-2cc8da3e01a2 + + 6 + + + urn:uuid:aab63882-4ce1-49e9-b650-65ee25903454 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + + +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:aab63882-4ce1-49e9-b650-65ee25903454 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + + + + +publish_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +publish_write_complete_count=0 diff --git a/analysis/proxy/mxasbclient-probe-stage15-write-contract.err.txt b/analysis/proxy/mxasbclient-probe-stage15-write-contract.err.txt new file mode 100644 index 0000000..ee09abf --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage15-write-contract.err.txt @@ -0,0 +1,9 @@ +Unhandled exception. System.ServiceModel.FaultException: The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter urn:msg.data.asb.iom:2:Values. The InnerException message was ''Element' 'hasQTField' from namespace 'http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract' is not expected. Expecting element 'arrayElementIndexField'.'. Please see InnerException for more details. + at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.Write(WriteBasicRequest) + at MxAsbClient.MxAsbDataClient.WriteInt32(String tag, Int32 value, UInt32 writeHandle) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 108 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 35 diff --git a/analysis/proxy/mxasbclient-probe-stage15-write-contract.txt b/analysis/proxy/mxasbclient-probe-stage15-write-contract.txt new file mode 100644 index 0000000..2187d48 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage15-write-contract.txt @@ -0,0 +1,195 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 87803ba3-6d0f-4ace-8d8f-ed0af17c00d7 + + 2 + + + urn:uuid:fc9ecd3b-14bf-468b-a7fc-0ade647459eb + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:fc9ecd3b-14bf-468b-a7fc-0ade647459eb + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 87803ba3-6d0f-4ace-8d8f-ed0af17c00d7 + + 3 + + + urn:uuid:0f8752a2-249f-4834-b53f-4295fc6bb77f + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:0f8752a2-249f-4834-b53f-4295fc6bb77f + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:401 +read_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 87803ba3-6d0f-4ace-8d8f-ed0af17c00d7 + + 4 + + + urn:uuid:ff03019c-3ebd-42ab-857f-c2330be061ca + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + false + false + + 4 + 4 + lgEAAA== + + + 0 + + + 0001-01-01T00:00:00 + false + MxAsbClient write-int + 0 + false + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= diff --git a/analysis/proxy/mxasbclient-probe-stage16-write-order.err.txt b/analysis/proxy/mxasbclient-probe-stage16-write-order.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage16-write-order.txt b/analysis/proxy/mxasbclient-probe-stage16-write-order.txt new file mode 100644 index 0000000..3b0b6fd --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage16-write-order.txt @@ -0,0 +1,364 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 14462c67-43ca-43bb-866f-2d0d283cd523 + + 2 + + + urn:uuid:791a9ae6-a3e4-4a63-aef4-ac6ffae83fc4 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:791a9ae6-a3e4-4a63-aef4-ac6ffae83fc4 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 14462c67-43ca-43bb-866f-2d0d283cd523 + + 3 + + + urn:uuid:3b5d91bd-37be-4dfe-817d-246d4c80725c + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:3b5d91bd-37be-4dfe-817d-246d4c80725c + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:401 +read_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 14462c67-43ca-43bb-866f-2d0d283cd523 + + 4 + + + urn:uuid:2c53c43b-b244-42a9-ae2e-f59e43c0e40c + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + 0 + false + MxAsbClient write-int + false + false + + 0 + + + 0001-01-01T00:00:00 + false + + 4 + lgEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:2c53c43b-b244-42a9-ae2e-f59e43c0e40c + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 14462c67-43ca-43bb-866f-2d0d283cd523 + + 5 + + + urn:uuid:cefb7572-4e71-4f59-9eef-6a4238692ebc + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:cefb7572-4e71-4f59-9eef-6a4238692ebc + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAACBHQhVSo96IAQQABAAAAAQAAACRAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:401 +read_after_write_value[0].timestamp=2026-04-26T01:10:07.2500000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.request= + + + http://ASB.IDataV2:publishWriteCompleteIn + + 14462c67-43ca-43bb-866f-2d0d283cd523 + + 6 + + + urn:uuid:cac36ca9-0693-4969-8661-9bf84ab1dfb6 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + + +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:cac36ca9-0693-4969-8661-9bf84ab1dfb6 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 32 + 0 + 0 + false + + + + + + + 0 + true + + + 18446462598732840962 + true + TestChildObject.TestInt + 0 + 0 + + + 4 + goOFhg== + + + + 2779910145 + true + + + + + +publish_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +publish_write_complete_count=0 diff --git a/analysis/proxy/mxasbclient-probe-stage17-completion-contract.err.txt b/analysis/proxy/mxasbclient-probe-stage17-completion-contract.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage17-completion-contract.txt b/analysis/proxy/mxasbclient-probe-stage17-completion-contract.txt new file mode 100644 index 0000000..8fc5860 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage17-completion-contract.txt @@ -0,0 +1,366 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 9bdb78c9-d14b-40b5-8765-5a86d04b72cd + + 2 + + + urn:uuid:e6d4337a-8f94-445a-933b-0e87aef08b35 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:e6d4337a-8f94-445a-933b-0e87aef08b35 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000000 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 9bdb78c9-d14b-40b5-8765-5a86d04b72cd + + 3 + + + urn:uuid:9fd0eb82-19f5-4844-b99f-098eb55aba4b + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:9fd0eb82-19f5-4844-b99f-098eb55aba4b + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAABCllvV5o96IAQQABAAAAAQAAACXAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAABCllvV5o96IAQQABAAAAAQAAACXAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:407 +read_value[0].timestamp=2026-04-26T05:55:33.9850000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 9bdb78c9-d14b-40b5-8765-5a86d04b72cd + + 4 + + + urn:uuid:3c559494-f0a0-4cf2-8427-a1ce78b3c6d3 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + 0 + false + MxAsbClient write-int + false + false + + 0 + + + 0001-01-01T00:00:00 + false + + 4 + mAEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:3c559494-f0a0-4cf2-8427-a1ce78b3c6d3 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 9bdb78c9-d14b-40b5-8765-5a86d04b72cd + + 5 + + + urn:uuid:e3a8988e-642d-4c80-98da-ed4fd5099bd4 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:e3a8988e-642d-4c80-98da-ed4fd5099bd4 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAAIC+RiV6o96IAQQABAAAAAQAAACYAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAIC+RiV6o96IAQQABAAAAAQAAACYAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:408 +read_after_write_value[0].timestamp=2026-04-26T05:56:53.9920000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.request= + + + http://ASB.IDataV2:publishWriteCompleteIn + + 9bdb78c9-d14b-40b5-8765-5a86d04b72cd + + 6 + + + urn:uuid:d37a64ff-5cfe-4fb5-ba3b-e4b6cfdb491d + + http://www.w3.org/2005/08/addressing/anonymous + + + + + + +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:d37a64ff-5cfe-4fb5-ba3b-e4b6cfdb491d + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 32 + 0 + 0 + false + + + + + + + 0 + true + + + 18446462598732840962 + true + TestChildObject.TestInt + 0 + 0 + + + 4 + goOFhg== + + + + 2779910145 + true + + + + + +publish_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +publish_write_complete_count=1 +publish_write_complete[0]=handle:2779910145 handle_specified:True status_items:1 +publish_write_complete[0].status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:4 status_payload_len:4 diff --git a/analysis/proxy/mxasbclient-probe-stage18-result-order.err.txt b/analysis/proxy/mxasbclient-probe-stage18-result-order.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage18-result-order.txt b/analysis/proxy/mxasbclient-probe-stage18-result-order.txt new file mode 100644 index 0000000..c842c12 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage18-result-order.txt @@ -0,0 +1,366 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 9221f905-fe40-4465-9fce-0d62a11d2f49 + + 2 + + + urn:uuid:09667053-d597-40b3-92bd-9d60af6cd420 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:09667053-d597-40b3-92bd-9d60af6cd420 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000001 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 9221f905-fe40-4465-9fce-0d62a11d2f49 + + 3 + + + urn:uuid:158eb5ff-b4bd-490c-802d-32aee16c9cfd + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:158eb5ff-b4bd-490c-802d-32aee16c9cfd + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAAIC+RiV6o96IAQQABAAAAAQAAACYAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAIC+RiV6o96IAQQABAAAAAQAAACYAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:408 +read_value[0].timestamp=2026-04-26T05:56:53.9920000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 9221f905-fe40-4465-9fce-0d62a11d2f49 + + 4 + + + urn:uuid:fb3e2e89-f7fb-4d03-a08f-17996000508e + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + 0 + false + MxAsbClient write-int + false + false + + 0 + + + 0001-01-01T00:00:00 + false + + 4 + mQEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:fb3e2e89-f7fb-4d03-a08f-17996000508e + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 9221f905-fe40-4465-9fce-0d62a11d2f49 + + 5 + + + urn:uuid:3f407937-3548-4f99-b074-22b63b8ce0d6 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:3f407937-3548-4f99-b074-22b63b8ce0d6 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAAFCH3ZV6o96IAQQABAAAAAQAAACZAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAFCH3ZV6o96IAQQABAAAAAQAAACZAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:409 +read_after_write_value[0].timestamp=2026-04-26T06:00:02.8850000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.request= + + + http://ASB.IDataV2:publishWriteCompleteIn + + 9221f905-fe40-4465-9fce-0d62a11d2f49 + + 6 + + + urn:uuid:41d8df5b-74ae-4c24-aa19-43e589b26f4f + + http://www.w3.org/2005/08/addressing/anonymous + + + + + + +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:41d8df5b-74ae-4c24-aa19-43e589b26f4f + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 32 + 0 + 0 + false + + + + + + + 0 + true + + + 18446462598732840962 + true + TestChildObject.TestInt + 0 + 0 + + + 4 + goOFhg== + + + + 2779910145 + true + + + + + +publish_write_complete_error=0x00000020 status=0x00000000 specific=0x00000000 +publish_write_complete_count=1 +publish_write_complete[0]=handle:2779910145 handle_specified:True status_items:1 +publish_write_complete[0].status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:4 status_payload_len:4 diff --git a/analysis/proxy/mxasbclient-probe-stage19-force-hmac.err.txt b/analysis/proxy/mxasbclient-probe-stage19-force-hmac.err.txt new file mode 100644 index 0000000..3aa2c9a --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage19-force-hmac.err.txt @@ -0,0 +1,9 @@ +Unhandled exception. System.TimeoutException: This request operation sent to net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 did not receive a reply within the configured timeout (00:00:10). The time allotted to this operation may have been a portion of a longer timeout. This may be because the service is still processing the operation or because the service was unable to send a reply message. Please consider increasing the operation timeout (by casting the channel/proxy to IContextChannel and setting the OperationTimeout property) and ensure that the service is able to connect to the client. + at System.ServiceModel.Dispatcher.DuplexChannelBinder.Request(Message message, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.Read(ReadRequest) + at MxAsbClient.MxAsbDataClient.Read(String tag) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 89 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 39 diff --git a/analysis/proxy/mxasbclient-probe-stage19-force-hmac.txt b/analysis/proxy/mxasbclient-probe-stage19-force-hmac.txt new file mode 100644 index 0000000..7bdc115 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage19-force-hmac.txt @@ -0,0 +1,262 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 40c45378-8990-4b21-8f5b-2e94e5166515 + 0nimr6dJnE1IZYMvS+ry1uExLUrY4UC8nfEu7c/Vuko= + 2 + PnAEA+s5CaZRUZAUmXzvXw== + + urn:uuid:14623c46-ad88-42f3-956b-63fdf511d689 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:14623c46-ad88-42f3-956b-63fdf511d689 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + + + 18446462598732840961 + true + 0 + true + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 40c45378-8990-4b21-8f5b-2e94e5166515 + at3OYKTmRdWWyAg4T3UWkD8HMYY3HmW/3AOHvcDW8kE= + 3 + SaumM/JntJ5PWfWi8zKUfQ== + + urn:uuid:c5702a67-3608-4300-955d-bc1f273ceb69 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:c5702a67-3608-4300-955d-bc1f273ceb69 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAAFCH3ZV6o96IAQQABAAAAAQAAACZAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAFCH3ZV6o96IAQQABAAAAAQAAACZAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:409 +read_value[0].timestamp=2026-04-26T06:00:02.8850000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 40c45378-8990-4b21-8f5b-2e94e5166515 + Huk9lfGA9vbUVxF+3zburbiNVPscwv+gqTDmOXBt3Ew= + 4 + psZkNwiN/R8Kyn4ZVppKYA== + + urn:uuid:dadcc16e-bf6e-496a-9130-addb80ed3e1b + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + 0 + false + MxAsbClient write-int + false + false + + 0 + + + 0001-01-01T00:00:00 + false + + 4 + mgEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:dadcc16e-bf6e-496a-9130-addb80ed3e1b + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 40c45378-8990-4b21-8f5b-2e94e5166515 + 89/z7UsF7voquiVw19PRl2KJvAXn9tC+Vunsw6DdcEM= + 5 + emy4plO7M1VofVkudI5KXg== + + urn:uuid:6082fefa-d659-470c-a3d2-9270ebeed8eb + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= diff --git a/analysis/proxy/mxasbclient-probe-stage2.err.txt b/analysis/proxy/mxasbclient-probe-stage2.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage2.txt b/analysis/proxy/mxasbclient-probe-stage2.txt new file mode 100644 index 0000000..58243b8 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage2.txt @@ -0,0 +1,9 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator diff --git a/analysis/proxy/mxasbclient-probe-stage20-hmac-timeout.err.txt b/analysis/proxy/mxasbclient-probe-stage20-hmac-timeout.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage20-hmac-timeout.txt b/analysis/proxy/mxasbclient-probe-stage20-hmac-timeout.txt new file mode 100644 index 0000000..325a444 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage20-hmac-timeout.txt @@ -0,0 +1,366 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 5c152622-0c3a-4283-bc6b-38dda3342cf4 + W1Jm0v2B+bJPb20LMzN56nmL44nwkXem5+brcLPyDR8= + 2 + UmHMWkTmAPO1AdPu/+EbtQ== + + urn:uuid:2dda6204-f5a2-41cb-a15b-cc168b24cc41 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:2dda6204-f5a2-41cb-a15b-cc168b24cc41 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +register_error=0x00000001 status=0x00000000 specific=0x00000000 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 5c152622-0c3a-4283-bc6b-38dda3342cf4 + /sqEWEOoFfxt/7fISRw2OF5UhPYTOz1ZD+UJFWDc+Do= + 3 + B1q5A393y2bWtfqZ6Sp5dQ== + + urn:uuid:c5177ccf-b422-4d18-b54c-20ac179c53cf + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:c5177ccf-b422-4d18-b54c-20ac179c53cf + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAAGBxrMx6o96IAQQABAAAAAQAAACaAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAGBxrMx6o96IAQQABAAAAAQAAACaAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:410 +read_value[0].timestamp=2026-04-26T06:01:34.8380000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 5c152622-0c3a-4283-bc6b-38dda3342cf4 + 5AjVg95u1xhqJt5B+rn71kG5U8PF5bOr5JYBvhskROU= + 4 + Zp3qnbViAdtLerGJOpzVVA== + + urn:uuid:27629932-e77e-416d-823c-4b2b1360cd50 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + 0 + false + MxAsbClient write-int + false + false + + 0 + + + 0001-01-01T00:00:00 + false + + 4 + mwEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:27629932-e77e-416d-823c-4b2b1360cd50 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 5c152622-0c3a-4283-bc6b-38dda3342cf4 + ENTXVj+jNHMrPME55P93gNpfX9pW/sWVfqLLZjK/5qg= + 5 + 9DGYoK8lx8t2hM0+oXLb2g== + + urn:uuid:54d22203-a13c-490b-8b6b-7f6147da2c8c + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:54d22203-a13c-490b-8b6b-7f6147da2c8c + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAAJBiovt6o96IAQQABAAAAAQAAACbAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAJBiovt6o96IAQQABAAAAAQAAACbAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:411 +read_after_write_value[0].timestamp=2026-04-26T06:02:53.6250000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.request= + + + http://ASB.IDataV2:publishWriteCompleteIn + + 5c152622-0c3a-4283-bc6b-38dda3342cf4 + rvDs/+f/XV3yblhmOOGexeq0QTs43lRBrAgRu2s4Q6Q= + 6 + hynq3SAEMQOmn+mmCmU2UA== + + urn:uuid:9e3b4f48-d91e-4fcd-a46d-da693d4e8565 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + + +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:9e3b4f48-d91e-4fcd-a46d-da693d4e8565 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 32 + 0 + 0 + false + + + + + + + 0 + true + + + 18446462598732840962 + true + TestChildObject.TestInt + 0 + 0 + + + 4 + goOFhg== + + + + 2779910145 + true + + + + + +publish_write_complete_error=0x00000020 status=0x00000000 specific=0x00000000 +publish_write_complete_count=1 +publish_write_complete[0]=handle:2779910145 handle_specified:True status_items:1 +publish_write_complete[0].status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:4 status_payload_len:4 diff --git a/analysis/proxy/mxasbclient-probe-stage21-register-retry.txt b/analysis/proxy/mxasbclient-probe-stage21-register-retry.txt new file mode 100644 index 0000000..fd12e19 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage21-register-retry.txt @@ -0,0 +1,442 @@ +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + a620d5be-99ff-4d7e-b57d-650d0eb0d791 + + 2 + + + urn:uuid:32354553-2a4f-41be-85d8-5fad1a132e1d + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:32354553-2a4f-41be-85d8-5fad1a132e1d + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + a620d5be-99ff-4d7e-b57d-650d0eb0d791 + + 3 + + + urn:uuid:f1167b99-eeb8-4b10-b247-24bab89609db + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:f1167b99-eeb8-4b10-b247-24bab89609db + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + + + 18446462598732840961 + true + 0 + true + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + a620d5be-99ff-4d7e-b57d-650d0eb0d791 + + 4 + + + urn:uuid:e552073b-9280-4fe3-81d5-ded3f3fe7cf4 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:e552073b-9280-4fe3-81d5-ded3f3fe7cf4 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAAJBiovt6o96IAQQABAAAAAQAAACbAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAJBiovt6o96IAQQABAAAAAQAAACbAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:411 +read_value[0].timestamp=2026-04-26T06:02:53.6250000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + a620d5be-99ff-4d7e-b57d-650d0eb0d791 + + 5 + + + urn:uuid:daa0b969-8647-4bc1-bc38-5d5bfb14485f + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + 0 + false + MxAsbClient write-int + false + false + + 0 + + + 0001-01-01T00:00:00 + false + + 4 + nAEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:daa0b969-8647-4bc1-bc38-5d5bfb14485f + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + a620d5be-99ff-4d7e-b57d-650d0eb0d791 + + 6 + + + urn:uuid:be7f4868-badf-402d-b330-d518d7b6a9bc + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:be7f4868-badf-402d-b330-d518d7b6a9bc + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:412 +read_after_write_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.request= + + + http://ASB.IDataV2:publishWriteCompleteIn + + a620d5be-99ff-4d7e-b57d-650d0eb0d791 + + 7 + + + urn:uuid:d6fe250f-d030-45cb-9aa9-5e574ca510ad + + http://www.w3.org/2005/08/addressing/anonymous + + + + + + +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:d6fe250f-d030-45cb-9aa9-5e574ca510ad + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 32 + 0 + 0 + false + + + + + + + 0 + true + + + 18446462598732840962 + true + TestChildObject.TestInt + 0 + 0 + + + 4 + goOFhg== + + + + 2779910145 + true + + + + + +publish_write_complete_error=0x00000020 status=0x00000000 specific=0x00000000 +publish_write_complete_count=1 +publish_write_complete[0]=handle:2779910145 handle_specified:True status_items:1 +publish_write_complete[0].status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:4 status_payload_len:4 diff --git a/analysis/proxy/mxasbclient-probe-stage22-unregister.txt b/analysis/proxy/mxasbclient-probe-stage22-unregister.txt new file mode 100644 index 0000000..4e5e2af --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage22-unregister.txt @@ -0,0 +1,476 @@ +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=5 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 639e4567-852b-4e3c-a381-3c7ddc95b42c + + 2 + + + urn:uuid:94012ec1-cd7e-4f8c-8a7f-93e912cdb560 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:94012ec1-cd7e-4f8c-8a7f-93e912cdb560 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 639e4567-852b-4e3c-a381-3c7ddc95b42c + + 3 + + + urn:uuid:f595b4e8-c2ca-462d-8568-f6adc6183516 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:f595b4e8-c2ca-462d-8568-f6adc6183516 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + + + 18446462598732840961 + true + 0 + true + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 639e4567-852b-4e3c-a381-3c7ddc95b42c + + 4 + + + urn:uuid:a3a961a3-bf76-4c8a-bd22-36dbef625452 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:a3a961a3-bf76-4c8a-bd22-36dbef625452 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:412 +read_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:writeIn + + 639e4567-852b-4e3c-a381-3c7ddc95b42c + + 5 + + + urn:uuid:d9e654db-bcd7-4c86-b1bd-239faadb9676 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + 0 + false + MxAsbClient write-int + false + false + + 0 + + + 0001-01-01T00:00:00 + false + + 4 + nQEAAA== + 4 + + + + 2779910145 + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:d9e654db-bcd7-4c86-b1bd-239faadb9676 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAB8AAQ== +write_error=0x00000000 status=0x00000000 specific=0x00000000 handle=0xA5B21001 +write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x0000001F error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 639e4567-852b-4e3c-a381-3c7ddc95b42c + + 6 + + + urn:uuid:4ba22704-a5bb-4f87-aae5-67344e04aa75 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:4ba22704-a5bb-4f87-aae5-67344e04aa75 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= +read_after_write_error=0x00000000 status=0x00000000 specific=0x00000000 +read_after_write_status[0]=item:TestChildObject.TestInt id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_after_write_value[0]=type:4 length:4 payload_len:4 preview:412 +read_after_write_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_after_write_value[0].status_count=9 status_payload_len=9 +asb.request= + + + http://ASB.IDataV2:publishWriteCompleteIn + + 639e4567-852b-4e3c-a381-3c7ddc95b42c + + 7 + + + urn:uuid:a04c6259-d097-4080-adde-97ed3ffbcd80 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + + +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:a04c6259-d097-4080-adde-97ed3ffbcd80 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + + + + +publish_write_complete_error=0x00000000 status=0x00000000 specific=0x00000000 +publish_write_complete_count=0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:unregisterItemsIn + + 639e4567-852b-4e3c-a381-3c7ddc95b42c + + 8 + + + urn:uuid:834bf0d8-a88a-4541-b620-6fc48f8b9fbe + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:834bf0d8-a88a-4541-b620-6fc48f8b9fbe + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAEAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAAAAAsAAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAEAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAAAAAsAAQ== +unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +unregister_status[0]=item:TestChildObject.TestInt id:0 id_specified:False error:0x0000000B error_specified:True status_count:0 status_payload_len:0 diff --git a/analysis/proxy/mxasbclient-probe-stage23-unregister-id.txt b/analysis/proxy/mxasbclient-probe-stage23-unregister-id.txt new file mode 100644 index 0000000..17122d8 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage23-unregister-id.txt @@ -0,0 +1,282 @@ +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=5 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 7fe1e071-a75b-4373-ad37-f126526d35cb + + 2 + + + urn:uuid:05645716-7273-45b7-813c-cd1e056f7070 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:05645716-7273-45b7-813c-cd1e056f7070 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 7fe1e071-a75b-4373-ad37-f126526d35cb + + 3 + + + urn:uuid:5278d626-471c-473f-b495-f69b64a92210 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:5278d626-471c-473f-b495-f69b64a92210 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + + + 18446462598732840961 + true + 0 + true + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.request= + + + http://ASB.IDataV2:readIn + + 7fe1e071-a75b-4373-ad37-f126526d35cb + + 4 + + + urn:uuid:278a7dcb-8a0e-4eee-b42f-174b1ab23a1a + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:278a7dcb-8a0e-4eee-b42f-174b1ab23a1a + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== + AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:41:AQAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAA= +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:412 +read_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wE= +asb.request= + + + http://ASB.IDataV2:unregisterItemsIn + + 7fe1e071-a75b-4373-ad37-f126526d35cb + + 5 + + + urn:uuid:1774c3ec-854f-4472-b4b1-8c194de738f2 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wE= + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wE= +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:1774c3ec-854f-4472-b4b1-8c194de738f2 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AQAAAAEAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAsAAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:79:AQAAAAEAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAsAAQ== +unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +unregister_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x0000000B error_specified:True status_count:0 status_payload_len:0 diff --git a/analysis/proxy/mxasbclient-probe-stage24-multi-read.txt b/analysis/proxy/mxasbclient-probe-stage24-multi-read.txt new file mode 100644 index 0000000..000b159 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage24-multi-read.txt @@ -0,0 +1,294 @@ +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tags=TestChildObject.TestInt,TestMachine_001.TestHistoryValue +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=5 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 8ce6b351-ac00-47b3-a469-eaa115fd1b50 + + 2 + + + urn:uuid:c13c0db2-0d8a-492c-afe4-f8963741823f + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:c13c0db2-0d8a-492c-afe4-f8963741823f + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 1 + 0 + 0 + false + + + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:0: +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA +asb.request= + + + http://ASB.IDataV2:registerItemsIn + + 8ce6b351-ac00-47b3-a469-eaa115fd1b50 + + 3 + + + urn:uuid:c9885fcc-2a6b-4b9c-9be4-c14f5fb64102 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:c9885fcc-2a6b-4b9c-9be4-c14f5fb64102 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AgAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQAAAABAAAAAVABlAHMAdABNAGEAYwBoAGkAbgBlAF8AMAAwADEALgBUAGUAcwB0AEgAaQBzAHQAbwByAHkAVgBhAGwAdQBlAAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + + + 18446462598732840961 + true + 0 + true + + + 18446462598732840962 + true + 0 + true + + + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:172:AgAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQAAAABAAAAAVABlAHMAdABNAGEAYwBoAGkAbgBlAF8AMAAwADEALgBUAGUAcwB0AEgAaQBzAHQAbwByAHkAVgBhAGwAdQBlAAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +register_error=0x00000000 status=0x00000000 specific=0x00000000 +register_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +register_status[1]=item:TestMachine_001.TestHistoryValue id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA +asb.request= + + + http://ASB.IDataV2:readIn + + 8ce6b351-ac00-47b3-a469-eaa115fd1b50 + + 4 + + + urn:uuid:259a767f-ee1c-4423-903c-4b43a3284037 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAAAAAEAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAAAAAAAAAAAA +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:259a767f-ee1c-4423-903c-4b43a3284037 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AgAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQAAAABAAAAAVABlAHMAdABNAGEAYwBoAGkAbgBlAF8AMAAwADEALgBUAGUAcwB0AEgAaQBzAHQAbwByAHkAVgBhAGwAdQBlAAAAAAACAAAAAAD//wEAAAAAAAAAAQ== + AgAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAAgi0E9PKPeiAEEAAQAAAAEAAAALwEAAAkJAAAAgoMF7wKGB8AA + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:172:AgAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAAAAQAAAABAAAAAVABlAHMAdABNAGEAYwBoAGkAbgBlAF8AMAAwADEALgBUAGUAcwB0AEgAaQBzAHQAbwByAHkAVgBhAGwAdQBlAAAAAAACAAAAAAD//wEAAAAAAAAAAQ== +asb.serializer.read-bytes=MxAsbClient.RuntimeValue[]:78:AgAAAOA9axSbo96IAQQABAAAAAQAAACcAQAACQkAAACCgwXvAoYHwAAgi0E9PKPeiAEEAAQAAAAEAAAALwEAAAkJAAAAgoMF7wKGB8AA +read_error=0x00000000 status=0x00000000 specific=0x00000000 +read_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_status[1]=item:TestMachine_001.TestHistoryValue id:18446462598732840962 id_specified:True error:0x00000000 error_specified:True status_count:0 status_payload_len:0 +read_value[0]=type:4 length:4 payload_len:4 preview:412 +read_value[0].timestamp=2026-04-26T09:52:39.1020000-04:00 timestamp_specified=True +read_value[0].status_count=9 status_payload_len=9 +read_value[1]=type:4 length:4 payload_len:4 preview:303 +read_value[1].timestamp=2026-04-25T22:33:45.4260000-04:00 timestamp_specified=True +read_value[1].status_count=9 status_payload_len=9 +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAgAAAAAA//8B +asb.request= + + + http://ASB.IDataV2:unregisterItemsIn + + 8ce6b351-ac00-47b3-a469-eaa115fd1b50 + + 5 + + + urn:uuid:cf9073bd-9a33-428d-9a7e-65705979c486 + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AgAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAgAAAAAA//8B + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:156:AgAAAAAAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAQAAAAFQAZQBzAHQATQBhAGMAaABpAG4AZQBfADAAMAAxAC4AVABlAHMAdABIAGkAcwB0AG8AcgB5AFYAYQBsAHUAZQAAAAAAAgAAAAAA//8B +asb.reply= + + + + 00000000-0000-0000-0000-000000000000 + + 0 + + + urn:uuid:cf9073bd-9a33-428d-9a7e-65705979c486 + http://www.w3.org/2005/08/addressing/anonymous + + + + + + + + + 0 + 0 + 0 + true + + + AgAAAAEAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAsAAQEAAABAAAAAVABlAHMAdABNAGEAYwBoAGkAbgBlAF8AMAAwADEALgBUAGUAcwB0AEgAaQBzAHQAbwByAHkAVgBhAGwAdQBlAAAAAAACAAAAAAD//wEAAAAAAAsAAQ== + + + +asb.serializer.read-bytes=MxAsbClient.ItemStatus[]:172:AgAAAAEAAAAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAABAAAAAAD//wEAAAAAAAsAAQEAAABAAAAAVABlAHMAdABNAGEAYwBoAGkAbgBlAF8AMAAwADEALgBUAGUAcwB0AEgAaQBzAHQAbwByAHkAVgBhAGwAdQBlAAAAAAACAAAAAAD//wEAAAAAAAsAAQ== +unregister_error=0x00000000 status=0x00000000 specific=0x00000000 +unregister_status[0]=item:TestChildObject.TestInt id:18446462598732840961 id_specified:True error:0x0000000B error_specified:True status_count:0 status_payload_len:0 +unregister_status[1]=item:TestMachine_001.TestHistoryValue id:18446462598732840962 id_specified:True error:0x0000000B error_specified:True status_count:0 status_payload_len:0 diff --git a/analysis/proxy/mxasbclient-probe-stage3.err.txt b/analysis/proxy/mxasbclient-probe-stage3.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage3.txt b/analysis/proxy/mxasbclient-probe-stage3.txt new file mode 100644 index 0000000..58243b8 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage3.txt @@ -0,0 +1,9 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator diff --git a/analysis/proxy/mxasbclient-probe-stage4.err.txt b/analysis/proxy/mxasbclient-probe-stage4.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-stage4.txt b/analysis/proxy/mxasbclient-probe-stage4.txt new file mode 100644 index 0000000..8b9540e --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage4.txt @@ -0,0 +1,11 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private diff --git a/analysis/proxy/mxasbclient-probe-stage5.err.txt b/analysis/proxy/mxasbclient-probe-stage5.err.txt new file mode 100644 index 0000000..92d6272 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage5.err.txt @@ -0,0 +1,10 @@ +Unhandled exception. System.ServiceModel.FaultException: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs. + at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter) + at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.RegisterItems(RegisterItemsRequest) + at MxAsbClient.MxAsbDataClient.Register(String tag) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 70 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 16 diff --git a/analysis/proxy/mxasbclient-probe-stage5.txt b/analysis/proxy/mxasbclient-probe-stage5.txt new file mode 100644 index 0000000..d8e989e --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage5.txt @@ -0,0 +1,21 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True diff --git a/analysis/proxy/mxasbclient-probe-stage6.err.txt b/analysis/proxy/mxasbclient-probe-stage6.err.txt new file mode 100644 index 0000000..e245de3 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage6.err.txt @@ -0,0 +1,17 @@ +Unhandled exception. System.ServiceModel.CommunicationException: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '00:00:10'. + ---> System.Net.Sockets.SocketException (10054): An existing connection was forcibly closed by the remote host. + at System.ServiceModel.Channels.SocketConnection.WriteAsync(ReadOnlyMemory`1 buffer, Boolean immediate, TimeSpan timeout) + --- End of inner exception stack trace --- + at System.ServiceModel.Channels.SocketConnection.WriteAsync(ReadOnlyMemory`1 buffer, Boolean immediate, TimeSpan timeout) + at System.ServiceModel.Channels.BufferedConnection.WriteNowAsync(ReadOnlyMemory`1 buffer, TimeSpan timeout) + at System.ServiceModel.Channels.FramingDuplexSessionChannel.OnSendCoreAsync(Message message, TimeSpan timeout) + at System.ServiceModel.Channels.TransportDuplexSessionChannel.OnSend(Message message, TimeSpan timeout) + at System.ServiceModel.Channels.OutputChannel.Send(Message message, TimeSpan timeout) + at System.ServiceModel.Dispatcher.DuplexChannelBinder.Request(Message message, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.RegisterItems(RegisterItemsRequest) + at MxAsbClient.MxAsbDataClient.Register(String tag) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 71 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 16 diff --git a/analysis/proxy/mxasbclient-probe-stage6.txt b/analysis/proxy/mxasbclient-probe-stage6.txt new file mode 100644 index 0000000..d8e989e --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage6.txt @@ -0,0 +1,21 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True diff --git a/analysis/proxy/mxasbclient-probe-stage7.err.txt b/analysis/proxy/mxasbclient-probe-stage7.err.txt new file mode 100644 index 0000000..1958dad --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage7.err.txt @@ -0,0 +1,10 @@ +Unhandled exception. System.ServiceModel.FaultException: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs. + at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter) + at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.RegisterItems(RegisterItemsRequest) + at MxAsbClient.MxAsbDataClient.Register(String tag) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 72 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 16 diff --git a/analysis/proxy/mxasbclient-probe-stage7.txt b/analysis/proxy/mxasbclient-probe-stage7.txt new file mode 100644 index 0000000..d8e989e --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage7.txt @@ -0,0 +1,21 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True diff --git a/analysis/proxy/mxasbclient-probe-stage8.err.txt b/analysis/proxy/mxasbclient-probe-stage8.err.txt new file mode 100644 index 0000000..257027a --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage8.err.txt @@ -0,0 +1,10 @@ +Unhandled exception. System.ServiceModel.FaultException: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs. + at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter) + at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.RegisterItems(RegisterItemsRequest) + at MxAsbClient.MxAsbDataClient.Register(String tag) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 72 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 23 diff --git a/analysis/proxy/mxasbclient-probe-stage8.txt b/analysis/proxy/mxasbclient-probe-stage8.txt new file mode 100644 index 0000000..d8e989e --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage8.txt @@ -0,0 +1,21 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True diff --git a/analysis/proxy/mxasbclient-probe-stage9.err.txt b/analysis/proxy/mxasbclient-probe-stage9.err.txt new file mode 100644 index 0000000..60aa9bb --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage9.err.txt @@ -0,0 +1,10 @@ +Unhandled exception. System.ServiceModel.FaultException: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs. + at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter) + at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.RegisterItems(RegisterItemsRequest) + at MxAsbClient.MxAsbDataClient.Register(String tag) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 79 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 23 diff --git a/analysis/proxy/mxasbclient-probe-stage9.txt b/analysis/proxy/mxasbclient-probe-stage9.txt new file mode 100644 index 0000000..82d3462 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-stage9.txt @@ -0,0 +1,59 @@ +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf [C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj] +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\MxAsbClient.Probe.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-37gx-xxp4-5rgx +C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbClient.csproj : warning NU1903: Package 'System.Security.Cryptography.Xml' 10.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-w3x6-4m5h-cxqf +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.serializer.behaviors-replaced=4 +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= +asb.register.request= + + + http://ASB.IDataV2:registerItemsIn + + ad7bd334-eb2f-455d-9c9d-b57da0db899f + + 2 + + + urn:uuid:4f441144-7007-4ad7-ae70-ab46c650a76e + + http://www.w3.org/2005/08/addressing/anonymous + + + + + AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= + true + true + + + +asb.serializer.start=MxAsbClient.ItemIdentity[] +asb.serializer.content=MxAsbClient.ItemIdentity[] +asb.serializer.bytes=MxAsbClient.ItemIdentity[]:71:AQAAAAAAAQAuAAAAVABlAHMAdABDAGgAaQBsAGQATwBiAGoAZQBjAHQALgBUAGUAcwB0AEkAbgB0AAAAAAAAAAAAAAAAAAA= diff --git a/analysis/proxy/mxasbclient-probe-timeout-ip.err.txt b/analysis/proxy/mxasbclient-probe-timeout-ip.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-timeout-ip.txt b/analysis/proxy/mxasbclient-probe-timeout-ip.txt new file mode 100644 index 0000000..01c9230 --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-timeout-ip.txt @@ -0,0 +1,3 @@ +process=x64:True +endpoint=net.tcp://10.100.0.48/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt diff --git a/analysis/proxy/mxasbclient-probe-timeout.err.txt b/analysis/proxy/mxasbclient-probe-timeout.err.txt new file mode 100644 index 0000000..e69de29 diff --git a/analysis/proxy/mxasbclient-probe-timeout.txt b/analysis/proxy/mxasbclient-probe-timeout.txt new file mode 100644 index 0000000..02247da --- /dev/null +++ b/analysis/proxy/mxasbclient-probe-timeout.txt @@ -0,0 +1,3 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt diff --git a/analysis/proxy/mxasbclient-register-message.err.txt b/analysis/proxy/mxasbclient-register-message.err.txt new file mode 100644 index 0000000..257027a --- /dev/null +++ b/analysis/proxy/mxasbclient-register-message.err.txt @@ -0,0 +1,10 @@ +Unhandled exception. System.ServiceModel.FaultException: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs. + at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter) + at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) + at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs) + at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) + at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(MethodInfo targetMethod, Object[] args) + at generatedProxy_1.RegisterItems(RegisterItemsRequest) + at MxAsbClient.MxAsbDataClient.Register(String tag) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient\MxAsbDataClient.cs:line 72 + at Program.
$(String[] args) in C:\Users\dohertj2\Desktop\mxaccess\src\MxAsbClient.Probe\Program.cs:line 23 diff --git a/analysis/proxy/mxasbclient-register-message.txt b/analysis/proxy/mxasbclient-register-message.txt new file mode 100644 index 0000000..d8e989e --- /dev/null +++ b/analysis/proxy/mxasbclient-register-message.txt @@ -0,0 +1,21 @@ +process=x64:True +endpoint=net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2 +tag=TestChildObject.TestInt +asb.stage=read-passphrase +asb.stage=registry-solution +asb.stage=registry-open-solution +asb.stage=registry-unprotect +asb.stage=registry-passphrase-ready +asb.stage=create-authenticator +asb.stage=authenticator-passphrase-bytes +asb.stage=authenticator-create-private +asb.stage=authenticator-private-ready +asb.stage=authenticator-modpow +asb.stage=authenticator-public-ready +asb.stage=authenticator-ready +asb.stage=open-factory +asb.stage=open-channel +asb.stage=connect +asb.stage=authenticate-me +asb.stage=connected +connect=True diff --git a/analysis/proxy/nmxservice-objref-context2.txt b/analysis/proxy/nmxservice-objref-context2.txt new file mode 100644 index 0000000..46b00f5 --- /dev/null +++ b/analysis/proxy/nmxservice-objref-context2.txt @@ -0,0 +1,18 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.10204 +objref_context=2 +objref_size=366 +objref_hex=4d 45 4f 57 01 00 00 00 00 00 00 00 00 00 00 00 c0 00 00 00 00 00 00 46 00 00 00 00 01 00 00 00 +objref_signature=0x574F454D +objref_flags=0x00000001 +objref_iid=00000000-0000-0000-c000-000000000046 +std_flags=0x00000000 +std_public_refs=1 +std_oxid=0xEAF0D2B53BAB5BC2 +std_oid=0x14913D4BBBC1D9FC +std_ipid=00007c14-3678-0000-fa76-a0a5cd73ac85 +dual_string_entries=149 +dual_string_security_offset=127 +dual_strings=string:0x0007:ncacn_ip_tcp:DESKTOP-6JL3KKO|string:0x0007:ncacn_ip_tcp:10.100.0.48|string:0x0007:ncacn_ip_tcp:172.29.224.1|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:501a:2da4:abd0:f50a|security:0x0009:ncacn_np:|security:0x001e:unknown:|security:0x0010:ncacn_nb_nb:|security:0x000a:unknown:|security:0x0016:ncadg_ip_udp_or_netbios:|security:0x001f:ncalrpc:|security:0x000e:unknown: +cocreate=ok diff --git a/analysis/proxy/nmxsvcps-procedures.tsv b/analysis/proxy/nmxsvcps-procedures.tsv new file mode 100644 index 0000000..370f209 --- /dev/null +++ b/analysis/proxy/nmxsvcps-procedures.tsv @@ -0,0 +1,26 @@ +interface_index interface_name iid method_index method_name proc_offset proc_va opnum x86_stack_size client_buffer_size server_buffer_size proc_flags param_count oi2_flags oi2_ext_flags raw_header params +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 3 RegisterEngine 0x0054 0x100075fe 3 20 8 8 0x46 4 0x08 0x05 33 6c 00 00 00 00 03 00 14 00 08 00 08 00 46 04 08 05 00 00 01 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x008b(must_size|must_free|in|by_value),stack=8,type=type+0x002c @0x1000792e [0xb4, 0x83, 0x00, 0x00, FC_USMALL, 0x00, 0x00, 0x00, 0xde, 0xff, FC_IP, FC_CONSTANT_IID, 0xf7, 0x92, 0x9f, 0xb4, 0x48, 0xc7]; p2:flags=0x000b(must_size|must_free|in),stack=12,type=type+0x0036 @0x10007938 [FC_IP, FC_CONSTANT_IID, 0xf7, 0x92, 0x9f, 0xb4, 0x48, 0xc7, 0x69, 0x41, 0x8e, 0xca, 0xa0, 0x67, FC_HYPER, 0x01, 0x27, FC_NO_REPEAT]; p3:flags=0x0070(out|return|base_type),stack=16,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 4 UnRegisterEngine 0x0084 0x1000762e 4 12 8 8 0x44 2 0x08 0x01 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0070(out|return|base_type),stack=8,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 5 Connect 0x00a8 0x10007652 5 24 32 8 0x44 5 0x08 0x01 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 6 TransferData 0x00de 0x10007688 6 28 32 8 0x46 6 0x08 0x05 33 6c 00 00 00 00 06 00 1c 00 20 00 08 00 46 06 08 05 00 00 01 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x010b(must_size|must_free|in|simple_ref),stack=20,type=type+0x004c @0x1000794e [FC_CARRAY, 0x00, 0x01, 0x00, 0x28, 0x00, FC_ERROR_STATUS_T, 0x00, 0x01, 0x00, 0x01, FC_END, FC_RP, FC_DOUBLE, FC_LONG, FC_PAD, FC_IP, FC_CONSTANT_IID]; p5:flags=0x0070(out|return|base_type),stack=24,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 7 AddSubscriberEngine 0x011a 0x100076c4 7 24 32 8 0x44 5 0x08 0x01 33 6c 00 00 00 00 07 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 8 RemoveSubscriberEngine 0x0150 0x100076fa 8 24 32 8 0x44 5 0x08 0x01 33 6c 00 00 00 00 08 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 9 SetHeartbeatSendInterval 0x0186 0x10007730 9 16 16 8 0x44 3 0x08 0x01 33 6c 00 00 00 00 09 00 10 00 10 00 08 00 44 03 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0070(out|return|base_type),stack=12,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 10 RegisterEngine2 0x01b0 0x1000775a 10 24 16 8 0x46 5 0x08 0x05 33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x008b(must_size|must_free|in|by_value),stack=8,type=type+0x002c @0x1000792e [0xb4, 0x83, 0x00, 0x00, FC_USMALL, 0x00, 0x00, 0x00, 0xde, 0xff, FC_IP, FC_CONSTANT_IID, 0xf7, 0x92, 0x9f, 0xb4, 0x48, 0xc7]; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x000b(must_size|must_free|in),stack=16,type=type+0x0036 @0x10007938 [FC_IP, FC_CONSTANT_IID, 0xf7, 0x92, 0x9f, 0xb4, 0x48, 0xc7, 0x69, 0x41, 0x8e, 0xca, 0xa0, 0x67, FC_HYPER, 0x01, 0x27, FC_NO_REPEAT]; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 11 GetPartnerVersion 0x01e6 0x10007790 11 24 24 36 0x44 5 0x08 0x01 33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x2150(out|base_type|simple_ref|0x2000),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +1 INmxSvcStatistics 6EB90E4C-DF5C-47F0-B2CD-110549C1162A 3 GetNmxSvcStatistics 0x0312 0x100078bc 3 12 0 124 0x44 2 0x08 0x01 33 6c 00 00 00 00 03 00 0c 00 00 00 7c 00 44 02 08 01 00 00 00 00 00 00 p0:flags=0x0112(must_free|out|simple_ref),stack=4,type=type+0x0076 @0x10007978 [FC_STRUCT, FC_SMALL, 0x50, 0x00, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG, FC_LONG]; p1:flags=0x0070(out|return|base_type),stack=8,type=FC_LONG +1 INmxSvcStatistics 6EB90E4C-DF5C-47F0-B2CD-110549C1162A 4 ResetSvcStatistics 0x0336 0x100078e0 4 8 0 8 0x44 1 0x08 0x01 33 6c 00 00 00 00 04 00 08 00 00 00 08 00 44 01 08 01 00 00 00 00 00 00 p0:flags=0x0070(out|return|base_type),stack=4,type=FC_LONG +2 INmxStatus 4CA783BC-F68E-42F4-9D76-8107C826F625 3 OPENCONNECTION 0x027c 0x10007826 3 32 24 64 0x46 7 0x08 0x01 33 6c 00 00 00 00 03 00 20 00 18 00 40 00 46 07 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x000b(must_size|must_free|in),stack=8,type=type+0x005c @0x1000795e [FC_IP, FC_CONSTANT_IID, 0xea, 0x9a, 0x84, 0x73, 0x2a, 0x47, FC_STRUCT, 0x47, 0xb8, 0xc6, 0x1c, 0x80, 0x6a, 0xf1, 0x2d, 0xfc]; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x2150(out|base_type|simple_ref|0x2000),stack=20,type=FC_LONG; p5:flags=0x2150(out|base_type|simple_ref|0x2000),stack=24,type=FC_ENUM32; p6:flags=0x0070(out|return|base_type),stack=28,type=FC_LONG +2 INmxStatus 4CA783BC-F68E-42F4-9D76-8107C826F625 4 CloseConnection 0x02be 0x10007868 4 16 8 36 0x44 3 0x08 0x01 33 6c 00 00 00 00 04 00 10 00 08 00 24 00 44 03 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x2150(out|base_type|simple_ref|0x2000),stack=8,type=FC_ENUM32; p2:flags=0x0070(out|return|base_type),stack=12,type=FC_LONG +2 INmxStatus 4CA783BC-F68E-42F4-9D76-8107C826F625 5 GetConnectionStatus 0x02e8 0x10007892 5 16 8 36 0x44 3 0x08 0x01 33 6c 00 00 00 00 05 00 10 00 08 00 24 00 44 03 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x2150(out|base_type|simple_ref|0x2000),stack=8,type=FC_ENUM32; p2:flags=0x0070(out|return|base_type),stack=12,type=FC_LONG +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 3 RegisterEngine 0x0054 0x100075fe 3 20 8 8 0x46 4 0x08 0x05 33 6c 00 00 00 00 03 00 14 00 08 00 08 00 46 04 08 05 00 00 01 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x008b(must_size|must_free|in|by_value),stack=8,type=type+0x002c @0x1000792e [0xb4, 0x83, 0x00, 0x00, FC_USMALL, 0x00, 0x00, 0x00, 0xde, 0xff, FC_IP, FC_CONSTANT_IID, 0xf7, 0x92, 0x9f, 0xb4, 0x48, 0xc7]; p2:flags=0x000b(must_size|must_free|in),stack=12,type=type+0x0036 @0x10007938 [FC_IP, FC_CONSTANT_IID, 0xf7, 0x92, 0x9f, 0xb4, 0x48, 0xc7, 0x69, 0x41, 0x8e, 0xca, 0xa0, 0x67, FC_HYPER, 0x01, 0x27, FC_NO_REPEAT]; p3:flags=0x0070(out|return|base_type),stack=16,type=FC_LONG +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 4 UnRegisterEngine 0x0084 0x1000762e 4 12 8 8 0x44 2 0x08 0x01 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0070(out|return|base_type),stack=8,type=FC_LONG +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 5 Connect 0x00a8 0x10007652 5 24 32 8 0x44 5 0x08 0x01 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 6 TransferData 0x00de 0x10007688 6 28 32 8 0x46 6 0x08 0x05 33 6c 00 00 00 00 06 00 1c 00 20 00 08 00 46 06 08 05 00 00 01 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x010b(must_size|must_free|in|simple_ref),stack=20,type=type+0x004c @0x1000794e [FC_CARRAY, 0x00, 0x01, 0x00, 0x28, 0x00, FC_ERROR_STATUS_T, 0x00, 0x01, 0x00, 0x01, FC_END, FC_RP, FC_DOUBLE, FC_LONG, FC_PAD, FC_IP, FC_CONSTANT_IID]; p5:flags=0x0070(out|return|base_type),stack=24,type=FC_LONG +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 7 AddSubscriberEngine 0x011a 0x100076c4 7 24 32 8 0x44 5 0x08 0x01 33 6c 00 00 00 00 07 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 8 RemoveSubscriberEngine 0x0150 0x100076fa 8 24 32 8 0x44 5 0x08 0x01 33 6c 00 00 00 00 08 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_LONG; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 9 SetHeartbeatSendInterval 0x0186 0x10007730 9 16 16 8 0x44 3 0x08 0x01 33 6c 00 00 00 00 09 00 10 00 10 00 08 00 44 03 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0070(out|return|base_type),stack=12,type=FC_LONG +4 INmxNotify 73849AEA-472A-4715-B8C6-1C806AF12DFC 3 ConnectionEstablished 0x021c 0x100077c6 3 24 32 8 0x44 5 0x08 0x01 33 6c 00 00 00 00 03 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0048(in|base_type),stack=12,type=FC_ENUM32; p3:flags=0x0048(in|base_type),stack=16,type=FC_LONG; p4:flags=0x0070(out|return|base_type),stack=20,type=FC_LONG +4 INmxNotify 73849AEA-472A-4715-B8C6-1C806AF12DFC 4 ConnectionClosed 0x0252 0x100077fc 4 16 16 8 0x44 3 0x08 0x01 33 6c 00 00 00 00 04 00 10 00 10 00 08 00 44 03 08 01 00 00 00 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x0048(in|base_type),stack=8,type=FC_LONG; p2:flags=0x0070(out|return|base_type),stack=12,type=FC_LONG +5 INmxSvcCallback B49F92F7-C748-4169-8ECA-A0670B012746 3 DataReceived 0x0000 0x100075aa 3 16 8 8 0x46 3 0x08 0x05 33 6c 00 00 00 00 03 00 10 00 08 00 08 00 46 03 08 05 00 00 01 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x010b(must_size|must_free|in|simple_ref),stack=8,type=type+0x0006 @0x10007908 [FC_CARRAY, 0x00, 0x01, 0x00, 0x28, 0x00, FC_USMALL, 0x00, 0x01, 0x00, FC_CHAR, FC_END, FC_UP, 0x00, FC_ENUM32, 0x00, FC_CARRAY, 0x01]; p2:flags=0x0070(out|return|base_type),stack=12,type=FC_LONG +5 INmxSvcCallback B49F92F7-C748-4169-8ECA-A0670B012746 4 StatusReceived 0x002a 0x100075d4 4 16 8 8 0x46 3 0x08 0x05 33 6c 00 00 00 00 04 00 10 00 08 00 08 00 46 03 08 05 00 00 01 00 00 00 p0:flags=0x0048(in|base_type),stack=4,type=FC_LONG; p1:flags=0x010b(must_size|must_free|in|simple_ref),stack=8,type=type+0x0006 @0x10007908 [FC_CARRAY, 0x00, 0x01, 0x00, 0x28, 0x00, FC_USMALL, 0x00, 0x01, 0x00, FC_CHAR, FC_END, FC_UP, 0x00, FC_ENUM32, 0x00, FC_CARRAY, 0x01]; p2:flags=0x0070(out|return|base_type),stack=12,type=FC_LONG diff --git a/analysis/proxy/nmxsvcps-proxy-layout.tsv b/analysis/proxy/nmxsvcps-proxy-layout.tsv new file mode 100644 index 0000000..ae694c3 --- /dev/null +++ b/analysis/proxy/nmxsvcps-proxy-layout.tsv @@ -0,0 +1,7 @@ +interface_index name iid iid_va method_count user_method_count proxy_vtbl_va stub_vtbl_va proxy_info_va proxy_info_words +0 INmxService2 2630A513-A974-4B1A-8025-457A9A7C56B8 0x10007198 12 9 0x1000a054 0x10007b30 0x10007af8 0x100079b8,0x100075aa,0x1000799e,0x00000000,0x00000000,0x00000000,0x100079b8,0x00000000 +1 INmxSvcStatistics 6EB90E4C-DF5C-47F0-B2CD-110549C1162A 0x100071c8 5 2 0x1000a0c8 0x10007c90 0x10007c58 0x100079b8,0x100075aa,0x10007c4e,0x00000000,0x00000000,0x00000000,0x100079b8,0x00000000 +2 INmxStatus 4CA783BC-F68E-42F4-9D76-8107C826F625 0x100071b8 6 3 0x1000a0a8 0x10007c1c 0x10007be4 0x100079b8,0x100075aa,0x10007bd6,0x00000000,0x00000000,0x00000000,0x100079b8,0x00000000 +3 INmxService 575008DB-845D-46C6-A906-F6F8CA86F315 0x10007188 10 7 0x1000a024 0x10007ac0 0x10007a88 0x100079b8,0x100075aa,0x10007a72,0x00000000,0x00000000,0x00000000,0x100079b8,0x00000000 +4 INmxNotify 73849AEA-472A-4715-B8C6-1C806AF12DFC 0x100071a8 5 2 0x1000a08c 0x10007ba4 0x10007b6c 0x100079b8,0x100075aa,0x10007b62,0x00000000,0x00000000,0x00000000,0x100079b8,0x00000000 +5 INmxSvcCallback B49F92F7-C748-4169-8ECA-A0670B012746 0x10007178 5 2 0x1000a008 0x10007a40 0x10007a08 0x100079b8,0x100075aa,0x1000759e,0x00000000,0x00000000,0x00000000,0x100079b8,0x00000000 diff --git a/analysis/proxy/remqi-managed-inmxservice2-probe.txt b/analysis/proxy/remqi-managed-inmxservice2-probe.txt new file mode 100644 index 0000000..f47c8a4 --- /dev/null +++ b/analysis/proxy/remqi-managed-inmxservice2-probe.txt @@ -0,0 +1,12 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.16536 +remqi_managed_stub_size=80 +remqi_managed_stub_prefix=00 00 00 00 00 00 00 00 00 00 02 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00 +remqi_managed_stub_hex=0000000000000000000002000100000000000000000000000000000005000000C25BAB3BB5D2F0EA63EB72A9EA0AF9672808000078360000554EBDD92A5FC3FB00000000000000000000000000000000 +remqi_managed_hresult=0x00000000 +remqi_managed_inmxservice2_ipid=00000828-3678-0000-554e-bdd92a5fc3fb +remqi_managed_inmxservice2_oxid=0xEAF0D2B53BAB5BC2 +remqi_managed_inmxservice2_oid=0x67F90AEAA972EB63 +remqi_managed_error=0x00000000 +remqi_managed_tail_status=0x00000000 diff --git a/analysis/proxy/resolve-oxid-managed-fullntlm-integrity-probe.txt b/analysis/proxy/resolve-oxid-managed-fullntlm-integrity-probe.txt new file mode 100644 index 0000000..cb4d6de --- /dev/null +++ b/analysis/proxy/resolve-oxid-managed-fullntlm-integrity-probe.txt @@ -0,0 +1,10 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.42348 +resolve_oxid_managed_ntlm_integrity_stub_size=640 +resolve_oxid_managed_ntlm_integrity_stub_prefix=00 00 02 00 29 01 00 00 29 01 a2 00 07 00 44 00 45 00 53 00 4b 00 54 00 4f 00 50 00 2d 00 36 00 +resolve_oxid_managed_ntlm_integrity_stub_hex=00000200290100002901A20007004400450053004B0054004F0050002D0036004A004C0033004B004B004F005B00360030003200340031005D0000000700310030002E003100300030002E0030002E00340038005B00360030003200340031005D00000007003100370032002E00320039002E003200320034002E0031005B00360030003200340031005D000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038005B00360030003200340031005D000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000310061003A0032006400610034003A0061006200640030003A0066003500300061005B00360030003200340031005D00000000000A00FFFF4E005400200041005500540048004F0052004900540059005C00530059005300540045004D0000001E00FFFF4E005400200041005500540048004F0052004900540059005C00530059005300540045004D0000001000FFFF68006F00730074002F004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000900FFFF68006F00730074002F004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000001600FFFF4E005400200041005500540048004F0052004900540059005C00530059005300540045004D0000001F00FFFF4E005400200041005500540048004F0052004900540059005C00530059005300540045004D00000000000000004C00007836000010A0BC391315CF3604000000000000000000000000000000 +resolve_oxid_managed_ntlm_integrity_remunknown_ipid=00004c00-3678-0000-10a0-bc391315cf36 +resolve_oxid_managed_ntlm_integrity_authn_hint=4 +resolve_oxid_managed_ntlm_integrity_bindings=string:0x0007:ncacn_ip_tcp:DESKTOP-6JL3KKO[60241]|string:0x0007:ncacn_ip_tcp:10.100.0.48[60241]|string:0x0007:ncacn_ip_tcp:172.29.224.1[60241]|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18[60241]|string:0x0007:ncacn_ip_tcp:fde1:ae41:8a00:452a:501a:2da4:abd0:f50a[60241]|security:0x000a:protseq_0x000a:?NT AUTHORITY\SYSTEM|security:0x001e:protseq_0x001e:?NT AUTHORITY\SYSTEM|security:0x0010:protseq_0x0010:?host/DESKTOP-6JL3KKO|security:0x0009:protseq_0x0009:?host/DESKTOP-6JL3KKO|security:0x0016:protseq_0x0016:?NT AUTHORITY\SYSTEM|security:0x001f:protseq_0x001f:?NT AUTHORITY\SYSTEM +resolve_oxid_managed_ntlm_integrity_tail_status=0x00000000 diff --git a/analysis/proxy/resolve-oxid-managed-ntlm-integrity-probe.txt b/analysis/proxy/resolve-oxid-managed-ntlm-integrity-probe.txt new file mode 100644 index 0000000..9791d8d --- /dev/null +++ b/analysis/proxy/resolve-oxid-managed-ntlm-integrity-probe.txt @@ -0,0 +1,4 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.55060 +resolve_oxid_ntlm_integrity_fault=0x00000721 diff --git a/analysis/proxy/resolve-oxid-managed-ntlm-probe.txt b/analysis/proxy/resolve-oxid-managed-ntlm-probe.txt new file mode 100644 index 0000000..59ca131 --- /dev/null +++ b/analysis/proxy/resolve-oxid-managed-ntlm-probe.txt @@ -0,0 +1,5 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.35148 +resolve_oxid_ntlm_fault=0x00000005 +cocreate=ok diff --git a/analysis/proxy/resolve-oxid-managed-unauth-probe.txt b/analysis/proxy/resolve-oxid-managed-unauth-probe.txt new file mode 100644 index 0000000..e576c7e --- /dev/null +++ b/analysis/proxy/resolve-oxid-managed-unauth-probe.txt @@ -0,0 +1,5 @@ +process=x64:True +engine_id=32750 +engine_name=MxNativeClient.Probe.52880 +resolve_oxid_unauth_status=0x00000005 +cocreate=ok diff --git a/analysis/proxy/resolve-oxid-unauth-probe.txt b/analysis/proxy/resolve-oxid-unauth-probe.txt new file mode 100644 index 0000000..f00ea42 --- /dev/null +++ b/analysis/proxy/resolve-oxid-unauth-probe.txt @@ -0,0 +1,5 @@ +resolve_oxid_stub=c2 5b ab 3b b5 d2 f0 ea 01 00 00 00 01 00 00 00 07 00 00 00 +bind_response=05 00 0c 03 10 00 00 00 3c 00 00 00 01 00 00 00 b8 10 b8 10 6d 70 00 00 04 00 31 33 35 00 00 00 01 00 00 00 00 00 00 00 04 5d 88 8a eb 1c c9 11 9f e8 08 00 2b 10 48 60 02 00 00 00 +resolve_response=05 00 02 03 10 00 00 00 34 00 00 00 02 00 00 00 1c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00 +resolve_response_stub=00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00 +likely_error_status=0x00000005 diff --git a/analysis/proxy/type-format-snippets/0-INmxService2.txt b/analysis/proxy/type-format-snippets/0-INmxService2.txt new file mode 100644 index 0000000..486afd0 --- /dev/null +++ b/analysis/proxy/type-format-snippets/0-INmxService2.txt @@ -0,0 +1,7 @@ +INmxService2 +iid=2630A513-A974-4B1A-8025-457A9A7C56B8 +stub_desc=0x100079b8 +proc_format=0x100075aa +offset_table=0x1000799e +type_format=0x10007902 +type_bytes=00 00 11 00 02 00 1b 00 01 00 28 00 04 00 01 00 02 5b 12 00 0e 00 1b 01 02 00 09 00 fc ff 01 00 06 5b 17 03 08 00 f0 ff 08 08 5c 5b b4 83 00 00 04 00 00 00 de ff 2f 5a f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 11 00 02 00 1b 00 01 00 28 00 10 00 01 00 01 5b 11 0c 08 5c 2f 5a ea 9a 84 73 2a 47 15 47 b8 c6 1c 80 6a f1 2d fc 11 0c 0e 5c 11 00 02 00 15 03 50 00 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 5c 5b 00 00 88 11 00 10 82 11 diff --git a/analysis/proxy/type-format-snippets/1-INmxSvcStatistics.txt b/analysis/proxy/type-format-snippets/1-INmxSvcStatistics.txt new file mode 100644 index 0000000..9b2f9b8 --- /dev/null +++ b/analysis/proxy/type-format-snippets/1-INmxSvcStatistics.txt @@ -0,0 +1,7 @@ +INmxSvcStatistics +iid=6EB90E4C-DF5C-47F0-B2CD-110549C1162A +stub_desc=0x100079b8 +proc_format=0x100075aa +offset_table=0x10007c4e +type_format=0x10007902 +type_bytes=00 00 11 00 02 00 1b 00 01 00 28 00 04 00 01 00 02 5b 12 00 0e 00 1b 01 02 00 09 00 fc ff 01 00 06 5b 17 03 08 00 f0 ff 08 08 5c 5b b4 83 00 00 04 00 00 00 de ff 2f 5a f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 11 00 02 00 1b 00 01 00 28 00 10 00 01 00 01 5b 11 0c 08 5c 2f 5a ea 9a 84 73 2a 47 15 47 b8 c6 1c 80 6a f1 2d fc 11 0c 0e 5c 11 00 02 00 15 03 50 00 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 5c 5b 00 00 88 11 00 10 82 11 diff --git a/analysis/proxy/type-format-snippets/2-INmxStatus.txt b/analysis/proxy/type-format-snippets/2-INmxStatus.txt new file mode 100644 index 0000000..03e79ed --- /dev/null +++ b/analysis/proxy/type-format-snippets/2-INmxStatus.txt @@ -0,0 +1,7 @@ +INmxStatus +iid=4CA783BC-F68E-42F4-9D76-8107C826F625 +stub_desc=0x100079b8 +proc_format=0x100075aa +offset_table=0x10007bd6 +type_format=0x10007902 +type_bytes=00 00 11 00 02 00 1b 00 01 00 28 00 04 00 01 00 02 5b 12 00 0e 00 1b 01 02 00 09 00 fc ff 01 00 06 5b 17 03 08 00 f0 ff 08 08 5c 5b b4 83 00 00 04 00 00 00 de ff 2f 5a f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 11 00 02 00 1b 00 01 00 28 00 10 00 01 00 01 5b 11 0c 08 5c 2f 5a ea 9a 84 73 2a 47 15 47 b8 c6 1c 80 6a f1 2d fc 11 0c 0e 5c 11 00 02 00 15 03 50 00 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 5c 5b 00 00 88 11 00 10 82 11 diff --git a/analysis/proxy/type-format-snippets/3-INmxService.txt b/analysis/proxy/type-format-snippets/3-INmxService.txt new file mode 100644 index 0000000..c3900c6 --- /dev/null +++ b/analysis/proxy/type-format-snippets/3-INmxService.txt @@ -0,0 +1,7 @@ +INmxService +iid=575008DB-845D-46C6-A906-F6F8CA86F315 +stub_desc=0x100079b8 +proc_format=0x100075aa +offset_table=0x10007a72 +type_format=0x10007902 +type_bytes=00 00 11 00 02 00 1b 00 01 00 28 00 04 00 01 00 02 5b 12 00 0e 00 1b 01 02 00 09 00 fc ff 01 00 06 5b 17 03 08 00 f0 ff 08 08 5c 5b b4 83 00 00 04 00 00 00 de ff 2f 5a f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 11 00 02 00 1b 00 01 00 28 00 10 00 01 00 01 5b 11 0c 08 5c 2f 5a ea 9a 84 73 2a 47 15 47 b8 c6 1c 80 6a f1 2d fc 11 0c 0e 5c 11 00 02 00 15 03 50 00 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 5c 5b 00 00 88 11 00 10 82 11 diff --git a/analysis/proxy/type-format-snippets/4-INmxNotify.txt b/analysis/proxy/type-format-snippets/4-INmxNotify.txt new file mode 100644 index 0000000..ea22134 --- /dev/null +++ b/analysis/proxy/type-format-snippets/4-INmxNotify.txt @@ -0,0 +1,7 @@ +INmxNotify +iid=73849AEA-472A-4715-B8C6-1C806AF12DFC +stub_desc=0x100079b8 +proc_format=0x100075aa +offset_table=0x10007b62 +type_format=0x10007902 +type_bytes=00 00 11 00 02 00 1b 00 01 00 28 00 04 00 01 00 02 5b 12 00 0e 00 1b 01 02 00 09 00 fc ff 01 00 06 5b 17 03 08 00 f0 ff 08 08 5c 5b b4 83 00 00 04 00 00 00 de ff 2f 5a f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 11 00 02 00 1b 00 01 00 28 00 10 00 01 00 01 5b 11 0c 08 5c 2f 5a ea 9a 84 73 2a 47 15 47 b8 c6 1c 80 6a f1 2d fc 11 0c 0e 5c 11 00 02 00 15 03 50 00 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 5c 5b 00 00 88 11 00 10 82 11 diff --git a/analysis/proxy/type-format-snippets/5-INmxSvcCallback.txt b/analysis/proxy/type-format-snippets/5-INmxSvcCallback.txt new file mode 100644 index 0000000..f2891e4 --- /dev/null +++ b/analysis/proxy/type-format-snippets/5-INmxSvcCallback.txt @@ -0,0 +1,7 @@ +INmxSvcCallback +iid=B49F92F7-C748-4169-8ECA-A0670B012746 +stub_desc=0x100079b8 +proc_format=0x100075aa +offset_table=0x1000759e +type_format=0x10007902 +type_bytes=00 00 11 00 02 00 1b 00 01 00 28 00 04 00 01 00 02 5b 12 00 0e 00 1b 01 02 00 09 00 fc ff 01 00 06 5b 17 03 08 00 f0 ff 08 08 5c 5b b4 83 00 00 04 00 00 00 de ff 2f 5a f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 11 00 02 00 1b 00 01 00 28 00 10 00 01 00 01 5b 11 0c 08 5c 2f 5a ea 9a 84 73 2a 47 15 47 b8 c6 1c 80 6a f1 2d fc 11 0c 0e 5c 11 00 02 00 15 03 50 00 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 08 5c 5b 00 00 88 11 00 10 82 11 diff --git a/analysis/proxy/typelib/NmxComHarness.tlb b/analysis/proxy/typelib/NmxComHarness.tlb new file mode 100644 index 0000000..e20acbc Binary files /dev/null and b/analysis/proxy/typelib/NmxComHarness.tlb differ diff --git a/analysis/proxy/typelib/register-typelib-output.txt b/analysis/proxy/typelib/register-typelib-output.txt new file mode 100644 index 0000000..5bd2766 --- /dev/null +++ b/analysis/proxy/typelib/register-typelib-output.txt @@ -0,0 +1 @@ +LoadTypeLibEx(Register) hr=0x00000000 ptr=2324910921120 diff --git a/analysis/proxy/typelib/tlbexp-output.txt b/analysis/proxy/typelib/tlbexp-output.txt new file mode 100644 index 0000000..624256a --- /dev/null +++ b/analysis/proxy/typelib/tlbexp-output.txt @@ -0,0 +1,4 @@ +Microsoft (R) .NET Framework Assembly to Type Library Converter 4.8.9037.0 +Copyright (C) Microsoft Corporation. All rights reserved. + +Assembly exported to 'C:\Users\dohertj2\Desktop\mxaccess\analysis\proxy\typelib\NmxComHarness.tlb' diff --git a/analysis/proxy/x86-callback-objref-probe.txt b/analysis/proxy/x86-callback-objref-probe.txt new file mode 100644 index 0000000..670d997 --- /dev/null +++ b/analysis/proxy/x86-callback-objref-probe.txt @@ -0,0 +1,12 @@ +process=x64:False +engine_id=28933 +engine_name=NmxObjRefProbe +version=6 +null_callback=False +callback_objref_size=366 +callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B0127468002000005000000B04862762B131DD21A941E54A7D856F0029C0000788CFFFF9D7BCFBEBF17D60A95007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000310061003A0032006400610034003A0061006200640030003A006600350030006100000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +register.begin +register.ok +partner_version=6 +unregister.begin +unregister.ok diff --git a/analysis/proxy/x86-registerengine2-null-callback-probe.txt b/analysis/proxy/x86-registerengine2-null-callback-probe.txt new file mode 100644 index 0000000..7823bb3 --- /dev/null +++ b/analysis/proxy/x86-registerengine2-null-callback-probe.txt @@ -0,0 +1,10 @@ +process=x64:False +engine_id=28934 +engine_name=NmxNullCallbackX86 +version=6 +null_callback=True +register.begin +register.ok +partner_version=6 +unregister.begin +unregister.ok diff --git a/analysis/proxy/x86-registerengine2-self-transfer-callback-probe.txt b/analysis/proxy/x86-registerengine2-self-transfer-callback-probe.txt new file mode 100644 index 0000000..8d3b3bd --- /dev/null +++ b/analysis/proxy/x86-registerengine2-self-transfer-callback-probe.txt @@ -0,0 +1,13 @@ +process=x64:False +engine_id=29457 +engine_name=NmxX86SelfTransfer +version=6 +null_callback=False +register.begin +register.ok +connect.self.ok +add-subscriber.self.ok +transfer.self.ok +partner_version=6 +unregister.begin +unregister.ok diff --git a/analysis/scripts/__pycache__/analyze_write_window.cpython-312.pyc b/analysis/scripts/__pycache__/analyze_write_window.cpython-312.pyc new file mode 100644 index 0000000..9b5276c Binary files /dev/null and b/analysis/scripts/__pycache__/analyze_write_window.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/diff_write_window_records.cpython-312.pyc b/analysis/scripts/__pycache__/diff_write_window_records.cpython-312.pyc new file mode 100644 index 0000000..3a50794 Binary files /dev/null and b/analysis/scripts/__pycache__/diff_write_window_records.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/extract_frida_trace.cpython-312.pyc b/analysis/scripts/__pycache__/extract_frida_trace.cpython-312.pyc new file mode 100644 index 0000000..f27683e Binary files /dev/null and b/analysis/scripts/__pycache__/extract_frida_trace.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/extract_nmxsvcps_layout.cpython-312.pyc b/analysis/scripts/__pycache__/extract_nmxsvcps_layout.cpython-312.pyc new file mode 100644 index 0000000..7c9a7ad Binary files /dev/null and b/analysis/scripts/__pycache__/extract_nmxsvcps_layout.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/extract_nmxsvcps_proc_formats.cpython-312.pyc b/analysis/scripts/__pycache__/extract_nmxsvcps_proc_formats.cpython-312.pyc new file mode 100644 index 0000000..d7337d6 Binary files /dev/null and b/analysis/scripts/__pycache__/extract_nmxsvcps_proc_formats.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/map_frida_to_tcp.cpython-312.pyc b/analysis/scripts/__pycache__/map_frida_to_tcp.cpython-312.pyc new file mode 100644 index 0000000..fe9ace0 Binary files /dev/null and b/analysis/scripts/__pycache__/map_frida_to_tcp.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/parse_dcerpc_streams.cpython-312.pyc b/analysis/scripts/__pycache__/parse_dcerpc_streams.cpython-312.pyc new file mode 100644 index 0000000..f7f7ead Binary files /dev/null and b/analysis/scripts/__pycache__/parse_dcerpc_streams.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/probe_dcom_inmxservice2.cpython-312.pyc b/analysis/scripts/__pycache__/probe_dcom_inmxservice2.cpython-312.pyc new file mode 100644 index 0000000..be00773 Binary files /dev/null and b/analysis/scripts/__pycache__/probe_dcom_inmxservice2.cpython-312.pyc differ diff --git a/analysis/scripts/__pycache__/probe_resolve_oxid.cpython-312.pyc b/analysis/scripts/__pycache__/probe_resolve_oxid.cpython-312.pyc new file mode 100644 index 0000000..4662df7 Binary files /dev/null and b/analysis/scripts/__pycache__/probe_resolve_oxid.cpython-312.pyc differ diff --git a/analysis/scripts/analyze_write_window.py b/analysis/scripts/analyze_write_window.py new file mode 100644 index 0000000..75a6e68 --- /dev/null +++ b/analysis/scripts/analyze_write_window.py @@ -0,0 +1,289 @@ +from __future__ import annotations + +import argparse +import csv +import datetime as dt +import json +import re +import struct +from dataclasses import dataclass +from pathlib import Path + +from scapy.all import IP, IPv6, Raw, TCP, rdpcap + + +EVENT_RE = re.compile(r"^(?P\S+)\t(?P[^\t]+)\t(?P.*)$") + + +@dataclass(frozen=True) +class Endpoint: + host: str + port: int + + @classmethod + def parse(cls, text: str) -> "Endpoint": + host, port = text.rsplit(":", 1) + return cls(host, int(port)) + + +def parse_timestamp(text: str) -> dt.datetime: + normalized = text.replace("Z", "+00:00") + parsed = dt.datetime.fromisoformat(normalized) + if parsed.tzinfo is None: + parsed = parsed.replace(tzinfo=dt.timezone.utc) + return parsed.astimezone(dt.timezone.utc) + + +def harness_events(path: Path) -> list[dict[str, object]]: + events: list[dict[str, object]] = [] + for line in path.read_text(encoding="utf-8").splitlines(): + match = EVENT_RE.match(line) + if not match: + continue + try: + payload = json.loads(match.group("payload")) + except json.JSONDecodeError: + payload = {} + events.append({ + "timestamp": parse_timestamp(match.group("timestamp")), + "event": match.group("event"), + "payload": payload, + }) + return events + + +def find_event(events: list[dict[str, object]], name: str) -> dict[str, object]: + for event in events: + if event["event"] == name: + return event + raise RuntimeError(f"Event {name!r} was not found.") + + +def find_events(events: list[dict[str, object]], name: str) -> list[dict[str, object]]: + return [event for event in events if event["event"] == name] + + +def packet_hosts(packet) -> tuple[str, str] | None: + if IP in packet: + return str(packet[IP].src), str(packet[IP].dst) + if IPv6 in packet: + return str(packet[IPv6].src), str(packet[IPv6].dst) + return None + + +def i32(data: bytes, offset: int) -> int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" str: + return "".join(chr(value) if 32 <= value <= 126 else "." for value in data[:limit]) + + +def announced_data_records_match(data: bytes, offset: int, announced_size: int) -> bool: + if announced_size < 0: + return False + + total = 0 + cursor = offset + 12 + while total < announced_size and cursor + 4 <= len(data): + record_length = u32(data, cursor) + if record_length is None or record_length > 1024 * 1024: + return False + record_size = record_length + 4 + if record_size <= 4 or cursor + record_size > len(data): + return False + total += record_size + cursor += record_size + + return total == announced_size + + +def classify_control(data: bytes, offset: int) -> str | None: + first = i32(data, offset) + second = i32(data, offset + 4) + third = i32(data, offset + 8) + if first is None or second is None or third is None: + return None + if first in {-1, -2}: + return "control" + if third != 0 or second < 0: + return None + if announced_data_records_match(data, offset, first): + return "control_announce" + if offset + 12 == len(data): + return "control_announce" + return None + + +def iter_records(payload: bytes) -> list[tuple[str, int, bytes]]: + records: list[tuple[str, int, bytes]] = [] + offset = 0 + while offset < len(payload): + first = i32(payload, offset) + if first is None: + break + + control_type = classify_control(payload, offset) + if control_type is not None: + record = payload[offset:offset + 12] + records.append((control_type, offset, record)) + offset += 12 + continue + + length = u32(payload, offset) + if length is not None and length <= 1024 * 1024 and offset + 4 + length <= len(payload): + record = payload[offset:offset + 4 + length] + records.append(("data", offset, record)) + offset += 4 + length + continue + + records.append(("unknown", offset, payload[offset:])) + break + return records + + +def record_body(record_type: str, record: bytes) -> bytes: + if record_type == "data": + return record[4:] + return record + + +def write_rows(capture_dir: Path, endpoint_a: Endpoint, endpoint_b: Endpoint, before: float, after: float, out: Path) -> None: + events = harness_events(capture_dir / "harness.log") + write_begins = find_events(events, "mx.write.begin") + write_completes = find_events(events, "mx.event.write-complete") + if not write_begins: + raise RuntimeError("Event 'mx.write.begin' was not found.") + + rows: list[dict[str, str]] = [] + packets = list(enumerate(rdpcap(str(capture_dir / "loopback.pcapng")), start=1)) + complete_cursor = 0 + for ordinal, write_begin in enumerate(write_begins): + write_time = write_begin["timestamp"] + assert isinstance(write_time, dt.datetime) + while complete_cursor < len(write_completes): + candidate_time = write_completes[complete_cursor]["timestamp"] + assert isinstance(candidate_time, dt.datetime) + if candidate_time >= write_time: + break + complete_cursor += 1 + if complete_cursor < len(write_completes): + complete_time = write_completes[complete_cursor]["timestamp"] + complete_cursor += 1 + else: + complete_time = write_time + assert isinstance(complete_time, dt.datetime) + + write_payload = write_begin.get("payload", {}) + write_index = str(write_payload.get("WriteIndex", ordinal)) if isinstance(write_payload, dict) else str(ordinal) + write_value = "" + if isinstance(write_payload, dict) and isinstance(write_payload.get("Value"), dict): + value_payload = write_payload["Value"] + write_value = str(value_payload.get("Value", "")) + + start_epoch = write_time.timestamp() - before + end_epoch = write_time.timestamp() + after + + for frame, packet in packets: + if TCP not in packet or Raw not in packet: + continue + packet_time = float(packet.time) + if packet_time < start_epoch or packet_time > end_epoch: + continue + + hosts = packet_hosts(packet) + if hosts is None: + continue + tcp = packet[TCP] + src = Endpoint(hosts[0], int(tcp.sport)) + dst = Endpoint(hosts[1], int(tcp.dport)) + if {src, dst} != {endpoint_a, endpoint_b}: + continue + + direction = "a_to_b" if src == endpoint_a else "b_to_a" + payload = bytes(packet[Raw].load) + for record_index, (record_type, payload_offset, record) in enumerate(iter_records(payload)): + body = record_body(record_type, record) + rows.append({ + "capture": capture_dir.name, + "write_index": write_index, + "write_value": write_value, + "frame": str(frame), + "packet_time_relative_to_write": f"{packet_time - write_time.timestamp():.9f}", + "packet_time_relative_to_complete": f"{packet_time - complete_time.timestamp():.9f}", + "direction": direction, + "src": f"{src.host}:{src.port}", + "dst": f"{dst.host}:{dst.port}", + "tcp_seq": str(int(tcp.seq)), + "payload_offset": str(payload_offset), + "record_index": str(record_index), + "record_type": record_type, + "record_size": str(len(record)), + "announced_length": "" if record_type != "data" else str(len(body)), + "i32_0": "" if (v := i32(body, 0)) is None else str(v), + "i32_1": "" if (v := i32(body, 4)) is None else str(v), + "i32_2": "" if (v := i32(body, 8)) is None else str(v), + "i32_3": "" if (v := i32(body, 12)) is None else str(v), + "signature16": body[:16].hex(" "), + "signature24": body[:24].hex(" "), + "hex": body.hex(" "), + "ascii_preview": ascii_preview(body), + }) + + out.parent.mkdir(parents=True, exist_ok=True) + header = [ + "capture", + "write_index", + "write_value", + "frame", + "packet_time_relative_to_write", + "packet_time_relative_to_complete", + "direction", + "src", + "dst", + "tcp_seq", + "payload_offset", + "record_index", + "record_type", + "record_size", + "announced_length", + "i32_0", + "i32_1", + "i32_2", + "i32_3", + "signature16", + "signature24", + "hex", + "ascii_preview", + ] + with out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.DictWriter(handle, fieldnames=header, delimiter="\t", lineterminator="\n") + writer.writeheader() + writer.writerows(rows) + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("capture_dir", type=Path) + parser.add_argument("--a", default="127.0.0.1:57415") + parser.add_argument("--b", default="127.0.0.1:57433") + parser.add_argument("--before", type=float, default=0.35) + parser.add_argument("--after", type=float, default=0.75) + parser.add_argument("--out", type=Path) + args = parser.parse_args() + + out = args.out or (args.capture_dir / "write-window-mixed-records.tsv") + write_rows(args.capture_dir, Endpoint.parse(args.a), Endpoint.parse(args.b), args.before, args.after, out) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/decode_length_prefixed_stream.py b/analysis/scripts/decode_length_prefixed_stream.py new file mode 100644 index 0000000..c11a5e0 --- /dev/null +++ b/analysis/scripts/decode_length_prefixed_stream.py @@ -0,0 +1,127 @@ +from __future__ import annotations + +import argparse +import csv +import struct +from pathlib import Path + + +def read_i32(data: bytes, offset: int) -> int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" str: + chars = [] + for value in data[:limit]: + chars.append(chr(value) if 32 <= value <= 126 else ".") + return "".join(chars) + + +def parse_frames(data: bytes, max_frame_size: int) -> list[dict[str, str]]: + frames: list[dict[str, str]] = [] + offset = 0 + index = 0 + + while offset + 4 <= len(data): + length = read_u32(data, offset) + assert length is not None + body_offset = offset + 4 + end = body_offset + length + complete = end <= len(data) + plausible = 0 <= length <= max_frame_size + + if not plausible: + frames.append({ + "index": str(index), + "offset": f"0x{offset:08x}", + "length": str(length), + "complete": "0", + "i32_0": "", + "i32_1": "", + "i32_2": "", + "i32_3": "", + "u32_0_hex": "", + "u32_1_hex": "", + "hex_prefix": data[offset:offset + 32].hex(" "), + "ascii_preview": ascii_preview(data[offset:offset + 32]), + "note": "invalid length", + }) + break + + body = data[body_offset:min(end, len(data))] + values = [read_i32(body, i * 4) for i in range(4)] + uvalues = [read_u32(body, i * 4) for i in range(2)] + frames.append({ + "index": str(index), + "offset": f"0x{offset:08x}", + "length": str(length), + "complete": "1" if complete else "0", + "i32_0": "" if values[0] is None else str(values[0]), + "i32_1": "" if values[1] is None else str(values[1]), + "i32_2": "" if values[2] is None else str(values[2]), + "i32_3": "" if values[3] is None else str(values[3]), + "u32_0_hex": "" if uvalues[0] is None else f"0x{uvalues[0]:08x}", + "u32_1_hex": "" if uvalues[1] is None else f"0x{uvalues[1]:08x}", + "hex_prefix": body[:32].hex(" "), + "ascii_preview": ascii_preview(body), + "note": "", + }) + + index += 1 + if not complete: + break + offset = end + + return frames + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("stream", type=Path) + parser.add_argument("--out", type=Path) + parser.add_argument("--max-frame-size", type=int, default=1024 * 1024) + args = parser.parse_args() + + data = args.stream.read_bytes() + rows = parse_frames(data, args.max_frame_size) + header = [ + "index", + "offset", + "length", + "complete", + "i32_0", + "i32_1", + "i32_2", + "i32_3", + "u32_0_hex", + "u32_1_hex", + "hex_prefix", + "ascii_preview", + "note", + ] + + if args.out: + args.out.parent.mkdir(parents=True, exist_ok=True) + handle = args.out.open("w", encoding="utf-8", newline="") + else: + import sys + handle = sys.stdout + + with handle: + writer = csv.DictWriter(handle, fieldnames=header, delimiter="\t", lineterminator="\n") + writer.writeheader() + writer.writerows(rows) + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/decode_mixed_local_stream.py b/analysis/scripts/decode_mixed_local_stream.py new file mode 100644 index 0000000..2d64262 --- /dev/null +++ b/analysis/scripts/decode_mixed_local_stream.py @@ -0,0 +1,138 @@ +from __future__ import annotations + +import argparse +import csv +import struct +from pathlib import Path + + +def i32(data: bytes, offset: int) -> int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" str: + return "".join(chr(value) if 32 <= value <= 126 else "." for value in data[:limit]) + + +def announced_data_records_match(data: bytes, offset: int, announced_size: int) -> bool: + if announced_size < 0: + return False + + total = 0 + cursor = offset + 12 + while total < announced_size and cursor + 4 <= len(data): + record_length = u32(data, cursor) + if record_length is None or record_length > 1024 * 1024: + return False + record_size = record_length + 4 + if record_size <= 4 or cursor + record_size > len(data): + return False + total += record_size + cursor += record_size + + return total == announced_size + + +def looks_like_control(data: bytes, offset: int) -> bool: + first = i32(data, offset) + second = i32(data, offset + 4) + third = i32(data, offset + 8) + if first is None or second is None or third is None: + return False + if first in {-1, -2}: + return True + if third != 0 or second < 0: + return False + return announced_data_records_match(data, offset, first) + + +def parse(data: bytes, max_record_size: int) -> list[dict[str, str]]: + rows: list[dict[str, str]] = [] + offset = 0 + index = 0 + + while offset < len(data): + first = i32(data, offset) + if first is None: + break + + if looks_like_control(data, offset): + record_type = "control" + size = 12 + body = data[offset:offset + size] + elif first >= 0 and first <= max_record_size and offset + 4 + first <= len(data): + record_type = "data" + size = 4 + first + body = data[offset + 4:offset + size] + else: + record_type = "unknown" + size = min(32, len(data) - offset) + body = data[offset:offset + size] + + rows.append({ + "index": str(index), + "offset": f"0x{offset:08x}", + "record_type": record_type, + "record_size": str(size), + "first_i32": "" if first is None else str(first), + "second_i32": "" if (v := i32(data, offset + 4)) is None else str(v), + "third_i32": "" if (v := i32(data, offset + 8)) is None else str(v), + "body_i32_0": "" if (v := i32(body, 0)) is None else str(v), + "body_i32_1": "" if (v := i32(body, 4)) is None else str(v), + "body_i32_2": "" if (v := i32(body, 8)) is None else str(v), + "body_i32_3": "" if (v := i32(body, 12)) is None else str(v), + "hex_prefix": data[offset:offset + min(size, 80)].hex(" "), + "ascii_preview": ascii_preview(data[offset:offset + min(size, 80)]), + }) + + index += 1 + if record_type == "unknown": + break + offset += size + + return rows + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("stream", type=Path) + parser.add_argument("--out", type=Path, required=True) + parser.add_argument("--max-record-size", type=int, default=1024 * 1024) + args = parser.parse_args() + + rows = parse(args.stream.read_bytes(), args.max_record_size) + header = [ + "index", + "offset", + "record_type", + "record_size", + "first_i32", + "second_i32", + "third_i32", + "body_i32_0", + "body_i32_1", + "body_i32_2", + "body_i32_3", + "hex_prefix", + "ascii_preview", + ] + + args.out.parent.mkdir(parents=True, exist_ok=True) + with args.out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.DictWriter(handle, fieldnames=header, delimiter="\t", lineterminator="\n") + writer.writeheader() + writer.writerows(rows) + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/decode_tcp_payload_packets.py b/analysis/scripts/decode_tcp_payload_packets.py new file mode 100644 index 0000000..ac21c35 --- /dev/null +++ b/analysis/scripts/decode_tcp_payload_packets.py @@ -0,0 +1,149 @@ +from __future__ import annotations + +import argparse +import csv +import struct +from dataclasses import dataclass +from pathlib import Path + +from scapy.all import IP, IPv6, Raw, TCP, rdpcap + + +@dataclass(frozen=True) +class Endpoint: + host: str + port: int + + @classmethod + def parse(cls, text: str) -> "Endpoint": + host, port = text.rsplit(":", 1) + return cls(host, int(port)) + + +def packet_hosts(packet) -> tuple[str, str] | None: + if IP in packet: + return str(packet[IP].src), str(packet[IP].dst) + if IPv6 in packet: + return str(packet[IPv6].src), str(packet[IPv6].dst) + return None + + +def read_i32(data: bytes, offset: int) -> int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" str: + chars = [] + for value in data[:limit]: + chars.append(chr(value) if 32 <= value <= 126 else ".") + return "".join(chars) + + +def decode_payload(payload: bytes) -> dict[str, str]: + first_i32 = read_i32(payload, 0) + second_i32 = read_i32(payload, 4) + third_i32 = read_i32(payload, 8) + length_match = first_i32 == len(payload) - 4 if first_i32 is not None else False + body = payload[4:] if length_match else payload + + return { + "payload_len": str(len(payload)), + "first_i32": "" if first_i32 is None else str(first_i32), + "second_i32": "" if second_i32 is None else str(second_i32), + "third_i32": "" if third_i32 is None else str(third_i32), + "first_u32_hex": "" if (u := read_u32(payload, 0)) is None else f"0x{u:08x}", + "length_prefixed": "1" if length_match else "0", + "body_i32_0": "" if (v := read_i32(body, 0)) is None else str(v), + "body_i32_1": "" if (v := read_i32(body, 4)) is None else str(v), + "body_i32_2": "" if (v := read_i32(body, 8)) is None else str(v), + "body_i32_3": "" if (v := read_i32(body, 12)) is None else str(v), + "hex_prefix": payload[:64].hex(" "), + "ascii_preview": ascii_preview(payload), + } + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("pcapng", type=Path) + parser.add_argument("--a", required=True, help="Endpoint A, for example 127.0.0.1:57415") + parser.add_argument("--b", required=True, help="Endpoint B, for example 127.0.0.1:57433") + parser.add_argument("--out", type=Path, required=True) + args = parser.parse_args() + + endpoint_a = Endpoint.parse(args.a) + endpoint_b = Endpoint.parse(args.b) + rows: list[dict[str, str]] = [] + first_time: float | None = None + + for frame, packet in enumerate(rdpcap(str(args.pcapng)), start=1): + if TCP not in packet or Raw not in packet: + continue + hosts = packet_hosts(packet) + if hosts is None: + continue + + tcp = packet[TCP] + src = Endpoint(hosts[0], int(tcp.sport)) + dst = Endpoint(hosts[1], int(tcp.dport)) + if {src, dst} != {endpoint_a, endpoint_b}: + continue + + payload = bytes(packet[Raw].load) + if not payload: + continue + + packet_time = float(packet.time) + if first_time is None: + first_time = packet_time + + decoded = decode_payload(payload) + decoded.update({ + "frame": str(frame), + "time_relative": f"{packet_time - first_time:.9f}", + "direction": "a_to_b" if src == endpoint_a else "b_to_a", + "src": f"{src.host}:{src.port}", + "dst": f"{dst.host}:{dst.port}", + "seq": str(int(tcp.seq)), + }) + rows.append(decoded) + + header = [ + "frame", + "time_relative", + "direction", + "src", + "dst", + "seq", + "payload_len", + "first_i32", + "second_i32", + "third_i32", + "first_u32_hex", + "length_prefixed", + "body_i32_0", + "body_i32_1", + "body_i32_2", + "body_i32_3", + "hex_prefix", + "ascii_preview", + ] + + args.out.parent.mkdir(parents=True, exist_ok=True) + with args.out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.DictWriter(handle, fieldnames=header, delimiter="\t", lineterminator="\n") + writer.writeheader() + writer.writerows(rows) + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/diff_write_window_records.py b/analysis/scripts/diff_write_window_records.py new file mode 100644 index 0000000..ca2b8e7 --- /dev/null +++ b/analysis/scripts/diff_write_window_records.py @@ -0,0 +1,209 @@ +from __future__ import annotations + +import argparse +import csv +import struct +from collections import defaultdict +from pathlib import Path + + +def load_rows(path: Path) -> list[dict[str, str]]: + with path.open("r", encoding="utf-8", newline="") as handle: + return list(csv.DictReader(handle, delimiter="\t")) + + +def body_bytes(row: dict[str, str]) -> bytes: + return bytes.fromhex(row["hex"]) + + +def ordinal_groups(rows: list[dict[str, str]]) -> dict[tuple[str, str, str], list[dict[str, str]]]: + groups: dict[tuple[str, str, str], list[dict[str, str]]] = defaultdict(list) + for row in rows: + key = (row["direction"], row["record_type"], row["record_size"]) + groups[key].append(row) + return groups + + +def i32_at(data: bytes, offset: int) -> int | None: + if offset + 4 > len(data): + return None + return struct.unpack_from(" list[int]: + limit = min(len(a), len(b)) + offsets = [index for index in range(limit) if a[index] != b[index]] + offsets.extend(range(limit, max(len(a), len(b)))) + return offsets + + +def byte_pairs(offsets: list[int], a: bytes, b: bytes, limit: int) -> str: + pairs: list[str] = [] + for offset in offsets[:limit]: + left = f"{a[offset]:02x}" if offset < len(a) else "--" + right = f"{b[offset]:02x}" if offset < len(b) else "--" + pairs.append(f"{offset}:{left}->{right}") + return " ".join(pairs) + + +def i32_diffs(offsets: list[int], a: bytes, b: bytes) -> str: + touched_words = sorted({offset - (offset % 4) for offset in offsets}) + parts: list[str] = [] + for offset in touched_words: + left = i32_at(a, offset) + right = i32_at(b, offset) + if left is None or right is None or left == right: + continue + parts.append(f"{offset}:{left}->{right}") + return " ".join(parts) + + +def filter_rows( + rows: list[dict[str, str]], + write_index: str | None, + min_complete: float | None, + max_complete: float | None, +) -> list[dict[str, str]]: + out: list[dict[str, str]] = [] + for row in rows: + if write_index is not None and row.get("write_index") != write_index: + continue + if min_complete is not None or max_complete is not None: + value = row.get("packet_time_relative_to_complete", "") + if value == "": + continue + relative = float(value) + if min_complete is not None and relative < min_complete: + continue + if max_complete is not None and relative > max_complete: + continue + out.append(row) + return out + + +def compare_rows(a_rows: list[dict[str, str]], b_rows: list[dict[str, str]], max_byte_pairs: int) -> list[dict[str, str]]: + a_groups = ordinal_groups(a_rows) + b_groups = ordinal_groups(b_rows) + out: list[dict[str, str]] = [] + + for key in sorted(set(a_groups) | set(b_groups)): + left_rows = a_groups.get(key, []) + right_rows = b_groups.get(key, []) + count = max(len(left_rows), len(right_rows)) + for ordinal in range(count): + if ordinal >= len(left_rows) or ordinal >= len(right_rows): + out.append({ + "write_a": "" if ordinal >= len(left_rows) else left_rows[ordinal].get("write_index", ""), + "write_value_a": "" if ordinal >= len(left_rows) else left_rows[ordinal].get("write_value", ""), + "write_b": "" if ordinal >= len(right_rows) else right_rows[ordinal].get("write_index", ""), + "write_value_b": "" if ordinal >= len(right_rows) else right_rows[ordinal].get("write_value", ""), + "direction": key[0], + "record_type": key[1], + "record_size": key[2], + "ordinal": str(ordinal), + "status": "missing_a" if ordinal >= len(left_rows) else "missing_b", + "frame_a": "" if ordinal >= len(left_rows) else left_rows[ordinal]["frame"], + "frame_b": "" if ordinal >= len(right_rows) else right_rows[ordinal]["frame"], + "time_a": "" if ordinal >= len(left_rows) else left_rows[ordinal]["packet_time_relative_to_write"], + "time_b": "" if ordinal >= len(right_rows) else right_rows[ordinal]["packet_time_relative_to_write"], + "signature16_a": "" if ordinal >= len(left_rows) else left_rows[ordinal]["signature16"], + "signature16_b": "" if ordinal >= len(right_rows) else right_rows[ordinal]["signature16"], + "bytes_differ": "", + "diff_offsets": "", + "byte_pairs": "", + "i32_diffs": "", + "ascii_a": "" if ordinal >= len(left_rows) else left_rows[ordinal]["ascii_preview"], + "ascii_b": "" if ordinal >= len(right_rows) else right_rows[ordinal]["ascii_preview"], + }) + continue + + left = left_rows[ordinal] + right = right_rows[ordinal] + left_body = body_bytes(left) + right_body = body_bytes(right) + offsets = diff_offsets(left_body, right_body) + out.append({ + "write_a": left.get("write_index", ""), + "write_value_a": left.get("write_value", ""), + "write_b": right.get("write_index", ""), + "write_value_b": right.get("write_value", ""), + "direction": key[0], + "record_type": key[1], + "record_size": key[2], + "ordinal": str(ordinal), + "status": "same" if not offsets else "different", + "frame_a": left["frame"], + "frame_b": right["frame"], + "time_a": left["packet_time_relative_to_write"], + "time_b": right["packet_time_relative_to_write"], + "signature16_a": left["signature16"], + "signature16_b": right["signature16"], + "bytes_differ": str(len(offsets)), + "diff_offsets": " ".join(str(offset) for offset in offsets[:max_byte_pairs]), + "byte_pairs": byte_pairs(offsets, left_body, right_body, max_byte_pairs), + "i32_diffs": i32_diffs(offsets, left_body, right_body), + "ascii_a": left["ascii_preview"], + "ascii_b": right["ascii_preview"], + }) + + return out + + +def write_rows(rows: list[dict[str, str]], out: Path) -> None: + out.parent.mkdir(parents=True, exist_ok=True) + header = [ + "write_a", + "write_value_a", + "write_b", + "write_value_b", + "direction", + "record_type", + "record_size", + "ordinal", + "status", + "frame_a", + "frame_b", + "time_a", + "time_b", + "signature16_a", + "signature16_b", + "bytes_differ", + "diff_offsets", + "byte_pairs", + "i32_diffs", + "ascii_a", + "ascii_b", + ] + with out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.DictWriter(handle, fieldnames=header, delimiter="\t", lineterminator="\n") + writer.writeheader() + writer.writerows(rows) + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("left", type=Path) + parser.add_argument("right", type=Path) + parser.add_argument("--out", type=Path, default=Path("analysis/network/write-window-body-diff.tsv")) + parser.add_argument("--left-write-index") + parser.add_argument("--right-write-index") + parser.add_argument("--time-complete-min", type=float) + parser.add_argument("--time-complete-max", type=float) + parser.add_argument("--max-byte-pairs", type=int, default=64) + args = parser.parse_args() + + left_rows = filter_rows(load_rows(args.left), args.left_write_index, args.time_complete_min, args.time_complete_max) + right_rows = filter_rows(load_rows(args.right), args.right_write_index, args.time_complete_min, args.time_complete_max) + rows = compare_rows(left_rows, right_rows, args.max_byte_pairs) + write_rows(rows, args.out) + + same = sum(1 for row in rows if row["status"] == "same") + different = sum(1 for row in rows if row["status"] == "different") + missing = len(rows) - same - different + print(f"wrote {args.out}") + print(f"same={same} different={different} missing={missing}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/extract_frida_trace.py b/analysis/scripts/extract_frida_trace.py new file mode 100644 index 0000000..4912da3 --- /dev/null +++ b/analysis/scripts/extract_frida_trace.py @@ -0,0 +1,200 @@ +from __future__ import annotations + +import argparse +import csv +import datetime as dt +import json +import re +import struct +from pathlib import Path + + +JSON_RE = re.compile(r"(\{.*\})") +HARNESS_RE = re.compile(r"^(?P\S+)\t(?P[^\t]+)\t(?P.*)$") + + +def iter_json_events(path: Path): + for line in path.read_text(encoding="utf-8", errors="ignore").splitlines(): + match = JSON_RE.search(line) + if not match: + continue + try: + yield json.loads(match.group(1)) + except json.JSONDecodeError: + continue + + +def harness_write_values(path: Path) -> tuple[str, list[str]]: + write_type = "" + values: list[str] = [] + for line in path.read_text(encoding="utf-8", errors="ignore").splitlines(): + match = HARNESS_RE.match(line) + if not match: + continue + payload = json.loads(match.group("payload")) + if match.group("event") == "harness.start": + write_type = str(payload.get("WriteType", "")) + continue + if match.group("event") != "mx.write.begin": + continue + value = payload.get("Value", {}).get("Value") + if value is not None: + values.append(str(value)) + return write_type.lower(), values + + +def bytes_from_hex(text: str) -> bytes: + if not text: + return b"" + return bytes.fromhex(text) + + +def value_needles(write_type: str, values: list[str]) -> list[tuple[str, bytes]]: + needles: list[tuple[str, bytes]] = [] + for value in values: + if write_type in {"int", "integer", "int32"}: + needles.append((value, struct.pack(" dt.datetime: + try: + return dt.datetime.fromisoformat(value) + except ValueError: + pass + for fmt in ("%m/%d/%Y %H:%M:%S", "%m/%d/%Y %I:%M:%S %p"): + try: + return dt.datetime.strptime(value, fmt) + except ValueError: + continue + raise ValueError(f"Unsupported datetime value {value!r}") + + +def value_hits(data: bytes, needles: list[tuple[str, bytes]]) -> str: + hits: list[str] = [] + for label, needle in needles: + start = 0 + while True: + offset = data.find(needle, start) + if offset < 0: + break + hits.append(f"{label}@{offset}") + start = offset + 1 + return " ".join(hits) + + +def write_event_rows(events: list[dict], needles: list[tuple[str, bytes]], out: Path) -> None: + out.parent.mkdir(parents=True, exist_ok=True) + header = [ + "time", + "event", + "module", + "name", + "ecx", + "retval", + "args", + "candidate_index", + "candidate_size", + "candidate_ptr", + "value_hits", + "hex", + ] + with out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.DictWriter(handle, fieldnames=header, delimiter="\t", lineterminator="\n") + writer.writeheader() + for event in events: + candidates = event.get("candidates") or [None] + for index, candidate in enumerate(candidates): + data = b"" + if candidate: + data = bytes_from_hex(candidate.get("hex", "")) + writer.writerow({ + "time": event.get("time", ""), + "event": event.get("event", ""), + "module": event.get("module", ""), + "name": event.get("name", ""), + "ecx": event.get("ecx", ""), + "retval": event.get("retval", ""), + "args": json.dumps(event.get("args", []), separators=(",", ":")), + "candidate_index": "" if candidate is None else str(index), + "candidate_size": "" if candidate is None else str(candidate.get("size", "")), + "candidate_ptr": "" if candidate is None else candidate.get("ptr", ""), + "value_hits": value_hits(data, needles), + "hex": "" if candidate is None else candidate.get("hex", ""), + }) + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("capture_dir", type=Path) + parser.add_argument("--out", type=Path) + parser.add_argument("--frida-log", type=Path) + args = parser.parse_args() + + capture_dir = args.capture_dir + write_type, values = harness_write_values(capture_dir / "harness.log") + needles = value_needles(write_type, values) + frida_log = args.frida_log + if frida_log is None: + candidates = [ + capture_dir / "frida.stdout.jsonl", + capture_dir / "client-frida.stdout.jsonl", + capture_dir / "service-frida.stdout.jsonl", + ] + frida_log = next((path for path in candidates if path.exists()), candidates[0]) + events = list(iter_json_events(frida_log)) + out = args.out or (capture_dir / "frida-events.tsv") + write_event_rows(events, needles, out) + print(f"wrote {out}") + print(f"frida_log={frida_log}") + print(f"events={len(events)} write_type={write_type} write_values={','.join(values)} needles={len(needles)}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/extract_nmx_loopback.py b/analysis/scripts/extract_nmx_loopback.py new file mode 100644 index 0000000..0cbd307 --- /dev/null +++ b/analysis/scripts/extract_nmx_loopback.py @@ -0,0 +1,165 @@ +from __future__ import annotations + +import argparse +import binascii +from collections import defaultdict +from dataclasses import dataclass +from pathlib import Path + +from scapy.all import IPv6, Raw, TCP, rdpcap + + +SERVICE_PORT = 49704 + + +@dataclass(frozen=True) +class Endpoint: + host: str + port: int + + +@dataclass +class PayloadPacket: + frame: int + time: float + src: Endpoint + dst: Endpoint + seq: int + ack: int + payload: bytes + + +def conversation_key(src: Endpoint, dst: Endpoint) -> tuple[Endpoint, Endpoint]: + return tuple(sorted((src, dst), key=lambda e: (e.host, e.port))) # type: ignore[return-value] + + +def sanitize_endpoint(endpoint: Endpoint) -> str: + return f"{endpoint.host.replace(':', '_')}_{endpoint.port}" + + +def extract_packets(path: Path) -> dict[tuple[Endpoint, Endpoint], list[PayloadPacket]]: + conversations: dict[tuple[Endpoint, Endpoint], list[PayloadPacket]] = defaultdict(list) + for index, packet in enumerate(rdpcap(str(path)), start=1): + if IPv6 not in packet or TCP not in packet: + continue + tcp = packet[TCP] + if int(tcp.sport) != SERVICE_PORT and int(tcp.dport) != SERVICE_PORT: + continue + if Raw not in packet: + continue + + src = Endpoint(str(packet[IPv6].src), int(tcp.sport)) + dst = Endpoint(str(packet[IPv6].dst), int(tcp.dport)) + payload = bytes(packet[Raw].load) + if not payload: + continue + + conversations[conversation_key(src, dst)].append(PayloadPacket( + frame=index, + time=float(packet.time), + src=src, + dst=dst, + seq=int(tcp.seq), + ack=int(tcp.ack), + payload=payload, + )) + + return conversations + + +def choose_conversation(conversations: dict[tuple[Endpoint, Endpoint], list[PayloadPacket]]) -> tuple[Endpoint, Endpoint]: + if not conversations: + raise RuntimeError("No IPv6 TCP payload conversations involving port 49704 were found.") + + def score(item: tuple[tuple[Endpoint, Endpoint], list[PayloadPacket]]) -> tuple[int, int]: + _, packets = item + return sum(len(p.payload) for p in packets), len(packets) + + return max(conversations.items(), key=score)[0] + + +def unique_direction_payloads(packets: list[PayloadPacket], src: Endpoint, dst: Endpoint) -> bytes: + seen: set[tuple[int, int]] = set() + chunks: list[tuple[int, float, bytes]] = [] + for packet in packets: + if packet.src != src or packet.dst != dst: + continue + key = (packet.seq, len(packet.payload)) + if key in seen: + continue + seen.add(key) + chunks.append((packet.seq, packet.time, packet.payload)) + + chunks.sort(key=lambda item: (item[0], item[1])) + return b"".join(chunk for _, _, chunk in chunks) + + +def ascii_preview(payload: bytes, limit: int = 48) -> str: + text = [] + for value in payload[:limit]: + if 32 <= value <= 126: + text.append(chr(value)) + else: + text.append(".") + return "".join(text) + + +def write_outputs(path: Path, out_dir: Path) -> None: + conversations = extract_packets(path) + selected = choose_conversation(conversations) + packets = conversations[selected] + packets.sort(key=lambda p: (p.time, p.frame)) + a, b = selected + + out_dir.mkdir(parents=True, exist_ok=True) + + summary_lines = [ + "capture\tselected_a\tselected_b\tpayload_packets\tpayload_bytes", + f"{path}\t{a.host}:{a.port}\t{b.host}:{b.port}\t{len(packets)}\t{sum(len(p.payload) for p in packets)}", + "", + "conversation_a\tconversation_b\tpayload_packets\tpayload_bytes", + ] + for (left, right), conv_packets in sorted( + conversations.items(), + key=lambda item: sum(len(p.payload) for p in item[1]), + reverse=True, + ): + summary_lines.append( + f"{left.host}:{left.port}\t{right.host}:{right.port}\t" + f"{len(conv_packets)}\t{sum(len(p.payload) for p in conv_packets)}" + ) + (out_dir / "nmx-conversations.tsv").write_text("\n".join(summary_lines) + "\n", encoding="utf-8") + + packet_lines = [ + "frame\ttime_relative\tfrom_service\tsrc\tsport\tdst\tdport\tseq\tack\tpayload_len\thex_prefix\tascii_preview" + ] + first_time = packets[0].time if packets else 0.0 + for packet in packets: + from_service = packet.src.port == SERVICE_PORT + packet_lines.append( + f"{packet.frame}\t{packet.time - first_time:.9f}\t{int(from_service)}\t" + f"{packet.src.host}\t{packet.src.port}\t{packet.dst.host}\t{packet.dst.port}\t" + f"{packet.seq}\t{packet.ack}\t{len(packet.payload)}\t" + f"{binascii.hexlify(packet.payload[:32]).decode('ascii')}\t{ascii_preview(packet.payload)}" + ) + (out_dir / "nmx-payload-packets.tsv").write_text("\n".join(packet_lines) + "\n", encoding="utf-8") + + for src, dst in ((a, b), (b, a)): + data = unique_direction_payloads(packets, src, dst) + name = f"nmx-stream-{sanitize_endpoint(src)}-to-{sanitize_endpoint(dst)}.bin" + (out_dir / name).write_bytes(data) + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("pcapng", type=Path) + parser.add_argument("--out-dir", type=Path) + args = parser.parse_args() + + out_dir = args.out_dir or args.pcapng.parent + write_outputs(args.pcapng, out_dir) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/extract_nmxsvcps_layout.py b/analysis/scripts/extract_nmxsvcps_layout.py new file mode 100644 index 0000000..4ba4968 --- /dev/null +++ b/analysis/scripts/extract_nmxsvcps_layout.py @@ -0,0 +1,107 @@ +from __future__ import annotations + +import argparse +import csv +import uuid +from pathlib import Path + +import pefile + + +IMAGE_BASE = 0x10000000 +PROXY_VTBL_LIST = 0x10007CC8 +STUB_VTBL_LIST = 0x10007CE4 +NAME_LIST = 0x10007D00 +INTERFACE_COUNT = 6 + + +def u16(data: bytes, offset: int) -> int: + return int.from_bytes(data[offset:offset + 2], "little") + + +def u32(data: bytes, offset: int) -> int: + return int.from_bytes(data[offset:offset + 4], "little") + + +class PeView: + def __init__(self, path: Path): + self.pe = pefile.PE(str(path)) + self.data = bytes(self.pe.__data__) + self.base = self.pe.OPTIONAL_HEADER.ImageBase + + def offset(self, va: int) -> int: + return self.pe.get_offset_from_rva(va - self.base) + + def u16(self, va: int) -> int: + return u16(self.data, self.offset(va)) + + def u32(self, va: int) -> int: + return u32(self.data, self.offset(va)) + + def guid(self, va: int) -> str: + return str(uuid.UUID(bytes_le=self.data[self.offset(va):self.offset(va) + 16])).upper() + + def asciiz(self, va: int) -> str: + start = self.offset(va) + end = self.data.index(b"\x00", start) + return self.data[start:end].decode("ascii") + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument( + "--dll", + type=Path, + default=Path(r"C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvcps.dll"), + ) + parser.add_argument("--out", type=Path, default=Path("analysis/proxy/nmxsvcps-proxy-layout.tsv")) + args = parser.parse_args() + + pe = PeView(args.dll) + args.out.parent.mkdir(parents=True, exist_ok=True) + + with args.out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.writer(handle, delimiter="\t", lineterminator="\n") + writer.writerow([ + "interface_index", + "name", + "iid", + "iid_va", + "method_count", + "user_method_count", + "proxy_vtbl_va", + "stub_vtbl_va", + "proxy_info_va", + "proxy_info_words", + ]) + + for index in range(INTERFACE_COUNT): + name_va = pe.u32(NAME_LIST + index * 4) + name = pe.asciiz(name_va) + proxy_vtbl = pe.u32(PROXY_VTBL_LIST + index * 4) + stub_vtbl = pe.u32(STUB_VTBL_LIST + index * 4) + proxy_info = pe.u32(proxy_vtbl) + iid_va = pe.u32(proxy_vtbl + 4) + method_count = pe.u32(stub_vtbl + 8) + user_method_count = max(0, method_count - 3) + proxy_info_words = [pe.u32(proxy_info + i * 4) for i in range(8)] + + writer.writerow([ + index, + name, + pe.guid(iid_va), + f"0x{iid_va:08x}", + method_count, + user_method_count, + f"0x{proxy_vtbl:08x}", + f"0x{stub_vtbl:08x}", + f"0x{proxy_info:08x}", + ",".join(f"0x{word:08x}" for word in proxy_info_words), + ]) + + print(f"wrote {args.out}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/extract_nmxsvcps_proc_formats.py b/analysis/scripts/extract_nmxsvcps_proc_formats.py new file mode 100644 index 0000000..33810fd --- /dev/null +++ b/analysis/scripts/extract_nmxsvcps_proc_formats.py @@ -0,0 +1,314 @@ +from __future__ import annotations + +import argparse +import csv +import re +import uuid +from dataclasses import dataclass +from pathlib import Path + +import pefile + + +PROXY_VTBL_LIST = 0x10007CC8 +STUB_VTBL_LIST = 0x10007CE4 +NAME_LIST = 0x10007D00 +INTERFACE_COUNT = 6 + +KNOWN_METHODS = { + "INmxService2": [ + "RegisterEngine", + "UnRegisterEngine", + "Connect", + "TransferData", + "AddSubscriberEngine", + "RemoveSubscriberEngine", + "SetHeartbeatSendInterval", + "RegisterEngine2", + "GetPartnerVersion", + ], + "INmxSvcStatistics": [ + "GetNmxSvcStatistics", + "ResetSvcStatistics", + ], + "INmxStatus": [ + "OPENCONNECTION", + "CloseConnection", + "GetConnectionStatus", + ], + "INmxService": [ + "RegisterEngine", + "UnRegisterEngine", + "Connect", + "TransferData", + "AddSubscriberEngine", + "RemoveSubscriberEngine", + "SetHeartbeatSendInterval", + ], + "INmxNotify": [ + "ConnectionEstablished", + "ConnectionClosed", + ], + "INmxSvcCallback": [ + "DataReceived", + "StatusReceived", + ], +} + +FC_TYPES = { + 0x02: "FC_CHAR", + 0x03: "FC_SMALL", + 0x04: "FC_USMALL", + 0x05: "FC_WCHAR", + 0x06: "FC_SHORT", + 0x07: "FC_USHORT", + 0x08: "FC_LONG", + 0x09: "FC_ULONG", + 0x0A: "FC_FLOAT", + 0x0B: "FC_HYPER", + 0x0C: "FC_DOUBLE", + 0x0D: "FC_ENUM16", + 0x0E: "FC_ENUM32", + 0x10: "FC_ERROR_STATUS_T", + 0x11: "FC_RP", + 0x12: "FC_UP", + 0x14: "FC_FP", + 0x15: "FC_STRUCT", + 0x1B: "FC_CARRAY", + 0x2F: "FC_IP", + 0x36: "FC_BYTE_COUNT_POINTER", + 0x46: "FC_NO_REPEAT", + 0x4C: "FC_EMBEDDED_COMPLEX", + 0x5A: "FC_CONSTANT_IID", + 0x5B: "FC_END", + 0x5C: "FC_PAD", +} + +PARAM_FLAGS = [ + (0x0001, "must_size"), + (0x0002, "must_free"), + (0x0008, "in"), + (0x0010, "out"), + (0x0020, "return"), + (0x0040, "base_type"), + (0x0080, "by_value"), + (0x0100, "simple_ref"), +] + + +def u16(data: bytes, offset: int) -> int: + return int.from_bytes(data[offset:offset + 2], "little") + + +def u32(data: bytes, offset: int) -> int: + return int.from_bytes(data[offset:offset + 4], "little") + + +class PeView: + def __init__(self, path: Path): + self.pe = pefile.PE(str(path)) + self.data = bytes(self.pe.__data__) + self.base = self.pe.OPTIONAL_HEADER.ImageBase + + def offset(self, va: int) -> int: + return self.pe.get_offset_from_rva(va - self.base) + + def slice(self, va: int, length: int) -> bytes: + offset = self.offset(va) + return self.data[offset:offset + length] + + def u16(self, va: int) -> int: + return u16(self.data, self.offset(va)) + + def u32(self, va: int) -> int: + return u32(self.data, self.offset(va)) + + def guid(self, va: int) -> str: + return str(uuid.UUID(bytes_le=self.slice(va, 16))).upper() + + def asciiz(self, va: int) -> str: + start = self.offset(va) + end = self.data.index(b"\x00", start) + return self.data[start:end].decode("ascii") + + +@dataclass(frozen=True) +class InterfaceInfo: + index: int + name: str + iid: str + method_count: int + user_method_count: int + proxy_info_va: int + stub_desc_va: int + proc_format_va: int + offset_table_va: int + type_format_va: int + + +def parse_interface(pe: PeView, index: int) -> InterfaceInfo: + name_va = pe.u32(NAME_LIST + index * 4) + name = pe.asciiz(name_va) + proxy_vtbl = pe.u32(PROXY_VTBL_LIST + index * 4) + stub_vtbl = pe.u32(STUB_VTBL_LIST + index * 4) + proxy_info = pe.u32(proxy_vtbl) + iid_va = pe.u32(proxy_vtbl + 4) + method_count = pe.u32(stub_vtbl + 8) + stub_desc = pe.u32(proxy_info) + proc_format = pe.u32(proxy_info + 4) + offset_table = pe.u32(proxy_info + 8) + type_format = pe.u32(stub_desc + 0x20) + + return InterfaceInfo( + index=index, + name=name, + iid=pe.guid(iid_va), + method_count=method_count, + user_method_count=max(0, method_count - 3), + proxy_info_va=proxy_info, + stub_desc_va=stub_desc, + proc_format_va=proc_format, + offset_table_va=offset_table, + type_format_va=type_format, + ) + + +def hex_bytes(data: bytes) -> str: + return data.hex(" ") + + +def safe_name(value: str) -> str: + return re.sub(r"[^A-Za-z0-9_.-]+", "_", value) + + +def flags_text(value: int) -> str: + names = [name for bit, name in PARAM_FLAGS if value & bit] + remainder = value & ~sum(bit for bit, _ in PARAM_FLAGS) + if remainder: + names.append(f"0x{remainder:04x}") + return "|".join(names) if names else "none" + + +def type_text(type_or_offset: int, type_format_va: int, pe: PeView, is_base_type: bool) -> str: + if is_base_type: + return FC_TYPES.get(type_or_offset, f"FC_0x{type_or_offset:02x}") + + type_va = type_format_va + type_or_offset + raw = pe.slice(type_va, 18) + annotated = [] + for byte in raw: + annotated.append(FC_TYPES.get(byte, f"0x{byte:02x}")) + return f"type+0x{type_or_offset:04x} @{type_va:#010x} [{', '.join(annotated)}]" + + +def parse_proc(pe: PeView, interface: InterfaceInfo, method_index: int, method_name: str, proc_offset: int) -> dict[str, object]: + va = interface.proc_format_va + proc_offset + header = pe.slice(va, 24) + param_count = header[15] + params = [] + pos = 24 + for index in range(param_count): + desc = pe.slice(va + pos, 6) + flags = u16(desc, 0) + stack_offset = u16(desc, 2) + type_or_offset = u16(desc, 4) + is_base_type = bool(flags & 0x0040) + params.append( + f"p{index}:flags=0x{flags:04x}({flags_text(flags)})," + f"stack={stack_offset}," + f"type={type_text(type_or_offset, interface.type_format_va, pe, is_base_type)}" + ) + pos += 6 + + return { + "interface_index": interface.index, + "interface_name": interface.name, + "iid": interface.iid, + "method_index": method_index, + "method_name": method_name, + "proc_offset": f"0x{proc_offset:04x}", + "proc_va": f"0x{va:08x}", + "opnum": u16(header, 6), + "x86_stack_size": u16(header, 8), + "client_buffer_size": u16(header, 10), + "server_buffer_size": u16(header, 12), + "proc_flags": f"0x{header[14]:02x}", + "param_count": param_count, + "oi2_flags": f"0x{header[16]:02x}", + "oi2_ext_flags": f"0x{header[17]:02x}", + "raw_header": hex_bytes(header), + "params": "; ".join(params), + } + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument( + "--dll", + type=Path, + default=Path(r"C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvcps.dll"), + ) + parser.add_argument("--out", type=Path, default=Path("analysis/proxy/nmxsvcps-procedures.tsv")) + parser.add_argument("--type-dir", type=Path, default=Path("analysis/proxy/type-format-snippets")) + args = parser.parse_args() + + pe = PeView(args.dll) + interfaces = [parse_interface(pe, i) for i in range(INTERFACE_COUNT)] + args.out.parent.mkdir(parents=True, exist_ok=True) + args.type_dir.mkdir(parents=True, exist_ok=True) + + fieldnames = [ + "interface_index", + "interface_name", + "iid", + "method_index", + "method_name", + "proc_offset", + "proc_va", + "opnum", + "x86_stack_size", + "client_buffer_size", + "server_buffer_size", + "proc_flags", + "param_count", + "oi2_flags", + "oi2_ext_flags", + "raw_header", + "params", + ] + + with args.out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.DictWriter(handle, delimiter="\t", fieldnames=fieldnames, lineterminator="\n") + writer.writeheader() + for interface in interfaces: + names = KNOWN_METHODS[interface.name] + offsets = [pe.u16(interface.offset_table_va + i * 2) for i in range(interface.method_count)] + user_offsets = offsets[3:3 + interface.user_method_count] + if len(names) != len(user_offsets): + raise ValueError(f"{interface.name} method names do not match recovered offset count") + + for method_index, (method_name, proc_offset) in enumerate(zip(names, user_offsets), start=3): + writer.writerow(parse_proc(pe, interface, method_index, method_name, proc_offset)) + + type_snippet = pe.slice(interface.type_format_va, 0x98) + (args.type_dir / f"{interface.index}-{safe_name(interface.name)}.txt").write_text( + "\n".join([ + f"{interface.name}", + f"iid={interface.iid}", + f"stub_desc=0x{interface.stub_desc_va:08x}", + f"proc_format=0x{interface.proc_format_va:08x}", + f"offset_table=0x{interface.offset_table_va:08x}", + f"type_format=0x{interface.type_format_va:08x}", + f"type_bytes={hex_bytes(type_snippet)}", + "", + ]), + encoding="utf-8", + ) + + print(f"wrote {args.out}") + print(f"wrote type snippets under {args.type_dir}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/extract_tcp_conversations.py b/analysis/scripts/extract_tcp_conversations.py new file mode 100644 index 0000000..4a6cc93 --- /dev/null +++ b/analysis/scripts/extract_tcp_conversations.py @@ -0,0 +1,150 @@ +from __future__ import annotations + +import argparse +import binascii +from collections import defaultdict +from dataclasses import dataclass +from pathlib import Path + +from scapy.all import IP, IPv6, Raw, TCP, rdpcap + + +@dataclass(frozen=True) +class Endpoint: + host: str + port: int + + +@dataclass +class PayloadPacket: + frame: int + time: float + src: Endpoint + dst: Endpoint + seq: int + payload: bytes + + +def conversation_key(src: Endpoint, dst: Endpoint) -> tuple[Endpoint, Endpoint]: + return tuple(sorted((src, dst), key=lambda e: (e.host, e.port))) # type: ignore[return-value] + + +def sanitize_endpoint(endpoint: Endpoint) -> str: + return f"{endpoint.host.replace(':', '_').replace('.', '_')}_{endpoint.port}" + + +def packet_hosts(packet) -> tuple[str, str] | None: + if IP in packet: + return str(packet[IP].src), str(packet[IP].dst) + if IPv6 in packet: + return str(packet[IPv6].src), str(packet[IPv6].dst) + return None + + +def extract_packets(path: Path) -> dict[tuple[Endpoint, Endpoint], list[PayloadPacket]]: + conversations: dict[tuple[Endpoint, Endpoint], list[PayloadPacket]] = defaultdict(list) + for index, packet in enumerate(rdpcap(str(path)), start=1): + if TCP not in packet or Raw not in packet: + continue + hosts = packet_hosts(packet) + if hosts is None: + continue + + src_host, dst_host = hosts + tcp = packet[TCP] + src = Endpoint(src_host, int(tcp.sport)) + dst = Endpoint(dst_host, int(tcp.dport)) + payload = bytes(packet[Raw].load) + if not payload: + continue + + conversations[conversation_key(src, dst)].append(PayloadPacket( + frame=index, + time=float(packet.time), + src=src, + dst=dst, + seq=int(tcp.seq), + payload=payload, + )) + + return conversations + + +def ascii_preview(payload: bytes, limit: int = 48) -> str: + chars = [] + for value in payload[:limit]: + chars.append(chr(value) if 32 <= value <= 126 else ".") + return "".join(chars) + + +def unique_direction_payloads(packets: list[PayloadPacket], src: Endpoint, dst: Endpoint) -> bytes: + seen: set[tuple[int, int]] = set() + chunks: list[tuple[int, float, bytes]] = [] + for packet in packets: + if packet.src != src or packet.dst != dst: + continue + key = (packet.seq, len(packet.payload)) + if key in seen: + continue + seen.add(key) + chunks.append((packet.seq, packet.time, packet.payload)) + + chunks.sort(key=lambda item: (item[0], item[1])) + return b"".join(chunk for _, _, chunk in chunks) + + +def write_outputs(path: Path, out_dir: Path, top: int) -> None: + conversations = extract_packets(path) + out_dir.mkdir(parents=True, exist_ok=True) + + ranked = sorted( + conversations.items(), + key=lambda item: sum(len(packet.payload) for packet in item[1]), + reverse=True, + ) + + lines = ["conversation_a\tconversation_b\tpayload_packets\tpayload_bytes\tfirst_relative\tlast_relative"] + first_capture_time = min((packet.time for packets in conversations.values() for packet in packets), default=0.0) + for (left, right), packets in ranked: + times = [packet.time for packet in packets] + lines.append( + f"{left.host}:{left.port}\t{right.host}:{right.port}\t" + f"{len(packets)}\t{sum(len(packet.payload) for packet in packets)}\t" + f"{min(times) - first_capture_time:.9f}\t{max(times) - first_capture_time:.9f}" + ) + (out_dir / "tcp-conversations.tsv").write_text("\n".join(lines) + "\n", encoding="utf-8") + + packet_lines = ["frame\ttime_relative\tsrc\tdst\tseq\tpayload_len\thex_prefix\tascii_preview"] + for _, packets in ranked[:top]: + first_time = min(packet.time for packet in packets) + for packet in sorted(packets, key=lambda item: (item.time, item.frame)): + packet_lines.append( + f"{packet.frame}\t{packet.time - first_time:.9f}\t" + f"{packet.src.host}:{packet.src.port}\t{packet.dst.host}:{packet.dst.port}\t" + f"{packet.seq}\t{len(packet.payload)}\t" + f"{binascii.hexlify(packet.payload[:32]).decode('ascii')}\t{ascii_preview(packet.payload)}" + ) + (out_dir / "tcp-payload-packets.tsv").write_text("\n".join(packet_lines) + "\n", encoding="utf-8") + + for (left, right), packets in ranked[:top]: + for src, dst in ((left, right), (right, left)): + data = unique_direction_payloads(packets, src, dst) + if not data: + continue + name = f"tcp-stream-{sanitize_endpoint(src)}-to-{sanitize_endpoint(dst)}.bin" + (out_dir / name).write_bytes(data) + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("pcapng", type=Path) + parser.add_argument("--out-dir", type=Path) + parser.add_argument("--top", type=int, default=8) + args = parser.parse_args() + + write_outputs(args.pcapng, args.out_dir or args.pcapng.parent, args.top) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/inspect_pe_rpc.py b/analysis/scripts/inspect_pe_rpc.py new file mode 100644 index 0000000..0cb1a72 --- /dev/null +++ b/analysis/scripts/inspect_pe_rpc.py @@ -0,0 +1,211 @@ +from __future__ import annotations + +import argparse +import datetime as dt +import re +import uuid +from pathlib import Path + +import pefile + + +ASCII_RE = re.compile(rb"[\x20-\x7e]{5,}") +UTF16_RE = re.compile(rb"(?:[\x20-\x7e]\x00){5,}") + + +def read_c_string(data: bytes, offset: int, limit: int = 128) -> str: + chunk = data[offset:offset + limit] + end = chunk.find(b"\x00") + if end >= 0: + chunk = chunk[:end] + return chunk.decode("ascii", errors="replace") + + +def timestamp_text(value: int) -> str: + try: + return dt.datetime.fromtimestamp(value, tz=dt.timezone.utc).isoformat() + except Exception: + return str(value) + + +def hex_context(data: bytes, offset: int, size: int) -> str: + start = max(0, offset - size) + end = min(len(data), offset + size) + return data[start:end].hex(" ") + + +def collect_strings(data: bytes, needles: list[str]) -> list[str]: + lowered = [needle.lower() for needle in needles] + matches: list[str] = [] + + for raw in ASCII_RE.findall(data): + text = raw.decode("ascii", errors="replace") + if any(needle in text.lower() for needle in lowered): + matches.append(text) + + for raw in UTF16_RE.findall(data): + text = raw.decode("utf-16le", errors="replace") + if any(needle in text.lower() for needle in lowered): + matches.append(text) + + return sorted(set(matches)) + + +def format_exports(pe: pefile.PE) -> list[str]: + if not hasattr(pe, "DIRECTORY_ENTRY_EXPORT"): + return ["(none)"] + + rows = ["| Ordinal | RVA | Name |", "| ---: | ---: | --- |"] + for symbol in pe.DIRECTORY_ENTRY_EXPORT.symbols: + name = symbol.name.decode("utf-8", errors="replace") if symbol.name else "" + rows.append(f"| {symbol.ordinal} | 0x{symbol.address:08x} | `{name}` |") + return rows + + +def format_imports(pe: pefile.PE) -> list[str]: + if not hasattr(pe, "DIRECTORY_ENTRY_IMPORT"): + return ["(none)"] + + lines: list[str] = [] + for entry in pe.DIRECTORY_ENTRY_IMPORT: + dll = entry.dll.decode("utf-8", errors="replace") + names: list[str] = [] + for imp in entry.imports: + if imp.name: + names.append(imp.name.decode("utf-8", errors="replace")) + else: + names.append(f"ord_{imp.ordinal}") + lines.append(f"- `{dll}`: " + ", ".join(f"`{name}`" for name in names)) + return lines + + +def format_resources(pe: pefile.PE) -> list[str]: + if not hasattr(pe, "DIRECTORY_ENTRY_RESOURCE"): + return ["(none)"] + + rows = ["| Type | ID/name | Lang | RVA | Size |", "| --- | --- | ---: | ---: | ---: |"] + for type_entry in pe.DIRECTORY_ENTRY_RESOURCE.entries: + type_name = str(type_entry.name) if type_entry.name is not None else str(type_entry.struct.Id) + if not hasattr(type_entry, "directory"): + continue + for name_entry in type_entry.directory.entries: + name = str(name_entry.name) if name_entry.name is not None else str(name_entry.struct.Id) + if not hasattr(name_entry, "directory"): + continue + for lang_entry in name_entry.directory.entries: + data = lang_entry.data.struct + rows.append( + f"| `{type_name}` | `{name}` | {lang_entry.struct.Id} | " + f"0x{data.OffsetToData:08x} | {data.Size} |" + ) + return rows + + +def guid_hits(data: bytes, guid_text: str) -> list[str]: + value = uuid.UUID(guid_text) + patterns = [ + ("text-lower", str(value).encode("ascii")), + ("text-upper", str(value).upper().encode("ascii")), + ("utf16-lower", str(value).encode("utf-16le")), + ("utf16-upper", str(value).upper().encode("utf-16le")), + ("guid-bytes-le", value.bytes_le), + ("guid-bytes-be", value.bytes), + ] + + lines: list[str] = [] + for label, pattern in patterns: + start = 0 + while True: + offset = data.find(pattern, start) + if offset < 0: + break + lines.append( + f"- `{guid_text}` `{label}` at file offset `0x{offset:08x}`: " + f"`{hex_context(data, offset, 32)}`" + ) + start = offset + 1 + return lines + + +def report_one(path: Path, guids: list[str]) -> str: + data = path.read_bytes() + pe = pefile.PE(str(path), fast_load=False) + pe.parse_data_directories() + + machine = pe.FILE_HEADER.Machine + bitness = "x64" if machine == 0x8664 else "x86" if machine == 0x14c else f"machine 0x{machine:04x}" + lines = [ + f"# {path.name}", + "", + f"- Path: `{path}`", + f"- Size: {len(data)} bytes", + f"- Machine: {bitness}", + f"- PE timestamp: {timestamp_text(pe.FILE_HEADER.TimeDateStamp)}", + f"- ImageBase: `0x{pe.OPTIONAL_HEADER.ImageBase:08x}`", + "", + "## Exports", + "", + *format_exports(pe), + "", + "## Imports", + "", + *format_imports(pe), + "", + "## Resources", + "", + *format_resources(pe), + "", + "## GUID hits", + "", + ] + + hit_lines: list[str] = [] + for guid in guids: + hit_lines.extend(guid_hits(data, guid)) + lines.extend(hit_lines or ["(none)"]) + + needles = [ + "ndr", + "proxy", + "stub", + "rpc", + "interface", + "nmx", + "lmx", + "putrequest", + "getresponse", + "registeritems", + "write", + *guids, + ] + strings = collect_strings(data, needles) + lines.extend(["", "## Interesting strings", ""]) + lines.extend(f"- `{text}`" for text in strings[:200]) + if len(strings) > 200: + lines.append(f"- ... {len(strings) - 200} more") + + return "\n".join(lines) + "\n" + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("pe", type=Path, nargs="+") + parser.add_argument("--guid", action="append", default=[]) + parser.add_argument("--out-dir", type=Path) + args = parser.parse_args() + + if args.out_dir: + args.out_dir.mkdir(parents=True, exist_ok=True) + + for path in args.pe: + report = report_one(path, args.guid) + if args.out_dir: + (args.out_dir / f"{path.name}.md").write_text(report, encoding="utf-8") + else: + print(report) + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/map_frida_to_tcp.py b/analysis/scripts/map_frida_to_tcp.py new file mode 100644 index 0000000..12686e0 --- /dev/null +++ b/analysis/scripts/map_frida_to_tcp.py @@ -0,0 +1,123 @@ +from __future__ import annotations + +import argparse +import json +import re +import struct +from pathlib import Path + + +ANSI_RE = re.compile(r"\x1b\[[0-9;]*[A-Za-z]") + + +def load_frida_events(path: Path) -> list[dict]: + events: list[dict] = [] + for raw in path.read_text(errors="replace").splitlines(): + line = ANSI_RE.sub("", raw).strip() + index = line.find("{") + if index < 0: + continue + + try: + outer = json.loads(line[index:]) + except json.JSONDecodeError: + continue + + payload = outer.get("payload") if outer.get("type") == "send" else outer + if isinstance(payload, str): + try: + payload = json.loads(payload) + except json.JSONDecodeError: + continue + + if isinstance(payload, dict) and payload.get("event"): + events.append(payload) + + return events + + +def first_candidate(event: dict, min_size: int = 20, max_size: int = 4096) -> bytes | None: + for candidate in event.get("candidates") or []: + hex_text = candidate.get("hex") or "" + size = int(candidate.get("size") or 0) + if hex_text and min_size <= size <= max_size: + return bytes.fromhex(hex_text) + return None + + +def extract_needles(events: list[dict], scalar_int: int | None) -> list[tuple[str, bytes]]: + start = None + for index, event in enumerate(events): + if event.get("name", "").startswith("CLMXProxyServer.Write") and event.get("args"): + start = index + break + + needles: list[tuple[str, bytes]] = [] + if scalar_int is not None: + needles.append((f"int32:{scalar_int}", struct.pack(" int: + parser = argparse.ArgumentParser() + parser.add_argument("capture_dir", type=Path) + parser.add_argument("--scalar-int", type=int) + parser.add_argument("--frida-log", type=Path) + args = parser.parse_args() + + frida_log = args.frida_log + if frida_log is None: + candidates = [ + args.capture_dir / "frida.stdout.jsonl", + args.capture_dir / "client-frida.stdout.jsonl", + ] + frida_log = next((path for path in candidates if path.exists()), candidates[0]) + + events = load_frida_events(frida_log) + needles = extract_needles(events, args.scalar_int) + stream_paths = sorted(args.capture_dir.glob("tcp-stream-*.bin")) + + lines = ["needle\tneedle_len\tstream\toffset"] + for name, needle in needles: + hit_count = 0 + for stream_path in stream_paths: + data = stream_path.read_bytes() + offset = data.find(needle) + if offset >= 0: + lines.append(f"{name}\t{len(needle)}\t{stream_path.name}\t{offset}") + hit_count += 1 + if hit_count == 0: + lines.append(f"{name}\t{len(needle)}\t\t-1") + + output = args.capture_dir / "frida-to-tcp-map.tsv" + output.write_text("\n".join(lines) + "\n", encoding="utf-8") + print(f"wrote {output}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/parse_dcerpc_streams.py b/analysis/scripts/parse_dcerpc_streams.py new file mode 100644 index 0000000..e6fd21c --- /dev/null +++ b/analysis/scripts/parse_dcerpc_streams.py @@ -0,0 +1,241 @@ +from __future__ import annotations + +import argparse +import csv +from dataclasses import dataclass +from pathlib import Path +import uuid + + +PTYPE_NAMES = { + 0: "request", + 2: "response", + 3: "fault", + 11: "bind", + 12: "bind_ack", + 14: "alter_context", + 15: "alter_context_resp", +} + + +@dataclass +class DceRpcPdu: + stream: str + offset: int + ptype: int + flags: int + frag_len: int + auth_len: int + call_id: int + alloc_hint: int | None + context_id: int | None + opnum: int | None + stub_offset: int | None + stub_len: int + stub: bytes + context_interface_uuid: str = "" + context_interface_version: str = "" + bind_contexts: str = "" + + +def u16le(data: bytes, offset: int) -> int: + return int.from_bytes(data[offset:offset + 2], "little") + + +def u32le(data: bytes, offset: int) -> int: + return int.from_bytes(data[offset:offset + 4], "little") + + +def guid_le(data: bytes, offset: int) -> str: + return str(uuid.UUID(bytes_le=data[offset:offset + 16])).upper() + + +def looks_like_header(data: bytes, offset: int) -> bool: + if offset + 16 > len(data): + return False + if data[offset] != 5 or data[offset + 1] != 0: + return False + ptype = data[offset + 2] + if ptype not in PTYPE_NAMES: + return False + if data[offset + 4:offset + 8] != b"\x10\x00\x00\x00": + return False + frag_len = u16le(data, offset + 8) + auth_len = u16le(data, offset + 10) + if frag_len < 16 or offset + frag_len > len(data): + return False + if auth_len > frag_len: + return False + return True + + +def parse_pdu(stream: str, data: bytes, offset: int) -> DceRpcPdu: + ptype = data[offset + 2] + flags = data[offset + 3] + frag_len = u16le(data, offset + 8) + auth_len = u16le(data, offset + 10) + call_id = u32le(data, offset + 12) + alloc_hint = None + context_id = None + opnum = None + stub_offset = None + stub_len = 0 + stub = b"" + + if ptype == 0 and frag_len >= 24: + alloc_hint = u32le(data, offset + 16) + context_id = u16le(data, offset + 20) + opnum = u16le(data, offset + 22) + stub_offset = offset + 24 + elif ptype in (2, 3) and frag_len >= 24: + alloc_hint = u32le(data, offset + 16) + context_id = u16le(data, offset + 20) + stub_offset = offset + 24 + + if stub_offset is not None: + auth_pad_and_trailer = auth_len + (8 if auth_len else 0) + pdu_end = offset + frag_len - auth_pad_and_trailer + if pdu_end >= stub_offset: + stub = data[stub_offset:pdu_end] + stub_len = len(stub) + + return DceRpcPdu( + stream=stream, + offset=offset, + ptype=ptype, + flags=flags, + frag_len=frag_len, + auth_len=auth_len, + call_id=call_id, + alloc_hint=alloc_hint, + context_id=context_id, + opnum=opnum, + stub_offset=stub_offset, + stub_len=stub_len, + stub=stub, + ) + + +def parse_bind_contexts(data: bytes, offset: int, frag_len: int) -> dict[int, tuple[str, str]]: + contexts: dict[int, tuple[str, str]] = {} + if frag_len < 28: + return contexts + + count = data[offset + 24] + cursor = offset + 28 + end = offset + frag_len + for _ in range(count): + if cursor + 24 > end: + break + context_id = u16le(data, cursor) + transfer_count = data[cursor + 2] + cursor += 4 + + abstract_uuid = guid_le(data, cursor) + version = f"{u16le(data, cursor + 16)}.{u16le(data, cursor + 18)}" + cursor += 20 + cursor += transfer_count * 20 + contexts[context_id] = (abstract_uuid, version) + + return contexts + + +def parse_stream(stream_path: Path) -> list[DceRpcPdu]: + data = stream_path.read_bytes() + rows: list[DceRpcPdu] = [] + contexts: dict[int, tuple[str, str]] = {} + offset = 0 + while offset < len(data): + if looks_like_header(data, offset): + pdu = parse_pdu(stream_path.name, data, offset) + if pdu.ptype in (11, 14): + parsed_contexts = parse_bind_contexts(data, offset, pdu.frag_len) + contexts.update(parsed_contexts) + pdu.bind_contexts = ";".join( + f"{context_id}:{iid}:{version}" + for context_id, (iid, version) in sorted(parsed_contexts.items()) + ) + if pdu.context_id is not None and pdu.context_id in contexts: + iid, version = contexts[pdu.context_id] + pdu.context_interface_uuid = iid + pdu.context_interface_version = version + rows.append(pdu) + offset += pdu.frag_len + continue + offset += 1 + return rows + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("capture_dir", type=Path) + parser.add_argument("--scalar-int", type=int) + args = parser.parse_args() + + paths = sorted(args.capture_dir.glob("tcp-stream-*49704*.bin")) + rows: list[DceRpcPdu] = [] + for path in paths: + rows.extend(parse_stream(path)) + + scalar = args.scalar_int.to_bytes(4, "little", signed=True) if args.scalar_int is not None else None + + out_path = args.capture_dir / "dcerpc-stream-pdus.tsv" + with out_path.open("w", encoding="utf-8", newline="") as handle: + writer = csv.writer(handle, delimiter="\t", lineterminator="\n") + writer.writerow([ + "stream", + "offset", + "ptype", + "ptype_name", + "flags", + "frag_len", + "auth_len", + "call_id", + "alloc_hint", + "context_id", + "context_interface_uuid", + "context_interface_version", + "opnum", + "stub_offset", + "stub_len", + "scalar_hit_offsets", + "bind_contexts", + "stub_hex_prefix", + ]) + for row in rows: + hits: list[str] = [] + if scalar and row.stub: + start = 0 + while True: + hit = row.stub.find(scalar, start) + if hit < 0: + break + hits.append(str(hit)) + start = hit + 1 + writer.writerow([ + row.stream, + row.offset, + row.ptype, + PTYPE_NAMES.get(row.ptype, str(row.ptype)), + f"0x{row.flags:02x}", + row.frag_len, + row.auth_len, + row.call_id, + "" if row.alloc_hint is None else row.alloc_hint, + "" if row.context_id is None else row.context_id, + row.context_interface_uuid, + row.context_interface_version, + "" if row.opnum is None else row.opnum, + "" if row.stub_offset is None else row.stub_offset, + row.stub_len, + ",".join(hits), + row.bind_contexts, + row.stub[:64].hex(" "), + ]) + + print(f"wrote {out_path} pdus={len(rows)}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/probe_dcom_inmxservice2.py b/analysis/scripts/probe_dcom_inmxservice2.py new file mode 100644 index 0000000..8ff8d02 --- /dev/null +++ b/analysis/scripts/probe_dcom_inmxservice2.py @@ -0,0 +1,82 @@ +"""Probe NmxSvc.NmxService through raw DCOM without the AVEVA x86 proxy. + +Credentials are read from MX_RPC_USER, MX_RPC_PASSWORD, and MX_RPC_DOMAIN. +Do not put passwords in this file or in checked-in probe output. +""" + +from __future__ import annotations + +import os +import traceback + +from impacket.dcerpc.v5 import dcomrt, rpcrt +from impacket.dcerpc.v5.dtypes import ULONG +from impacket.uuid import string_to_bin, uuidtup_to_bin + + +CLSID_NMX_SERVICE = string_to_bin("AE24BD51-2E80-44CC-905B-E5446C942BEB") +IID_INMXSERVICE2 = string_to_bin("2630A513-A974-4B1A-8025-457A9A7C56B8") +IID_INMXSERVICE2_BIND = uuidtup_to_bin(("2630A513-A974-4B1A-8025-457A9A7C56B8", "0.0")) + + +class GetPartnerVersion(dcomrt.DCOMCALL): + opnum = 11 + structure = ( + ("lPartnerGalaxyId", ULONG), + ("lPartnerPlatformId", ULONG), + ("lPartnerEngineId", ULONG), + ) + + +class GetPartnerVersionResponse(dcomrt.DCOMANSWER): + structure = ( + ("plPartnerVersion", ULONG), + ("ErrorCode", dcomrt.error_status_t), + ) + + +def main() -> int: + target = os.getenv("MX_RPC_TARGET", os.environ.get("COMPUTERNAME", "127.0.0.1")) + user = os.getenv("MX_RPC_USER", "") + password = os.getenv("MX_RPC_PASSWORD", "") + domain = os.getenv("MX_RPC_DOMAIN", "") + + dcom = None + try: + dcom = dcomrt.DCOMConnection( + target, + username=user, + password=password, + domain=domain, + authLevel=rpcrt.RPC_C_AUTHN_LEVEL_PKT_PRIVACY, + ) + iface = dcom.CoCreateInstanceEx(CLSID_NMX_SERVICE, IID_INMXSERVICE2) + print("cocreate_ok") + print("target=" + iface.get_target()) + print("oxid=0x%016x" % iface.get_oxid()) + print("oid=0x%016x" % iface.get_oid()) + print("ipid=" + iface.get_iPid().hex()) + print("ipidRemUnknown=" + iface.get_ipidRemUnknown().hex()) + print("bindings=" + "|".join(binding["aNetworkAddr"].rstrip("\x00") for binding in iface.get_cinstance().get_string_bindings())) + + request = GetPartnerVersion() + request["lPartnerGalaxyId"] = int(os.getenv("MX_PARTNER_GALAXY", "1"), 0) + request["lPartnerPlatformId"] = int(os.getenv("MX_PARTNER_PLATFORM", "1"), 0) + request["lPartnerEngineId"] = int(os.getenv("MX_PARTNER_ENGINE", "0x7ffd"), 0) + response = iface.request(request, IID_INMXSERVICE2_BIND, iface.get_iPid()) + + print("get_partner_version_ok") + print("partner_version=%d" % response["plPartnerVersion"]) + print("error_code=0x%08x" % response["ErrorCode"]) + return 0 + except Exception as exc: # noqa: BLE001 - probe should print exact failure class. + print("probe_error=%s: %s" % (type(exc).__name__, exc)) + traceback.print_exc() + return 1 + finally: + if dcom is not None: + dcom.disconnect() + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/probe_resolve_oxid.py b/analysis/scripts/probe_resolve_oxid.py new file mode 100644 index 0000000..9b7d6f4 --- /dev/null +++ b/analysis/scripts/probe_resolve_oxid.py @@ -0,0 +1,78 @@ +from __future__ import annotations + +import argparse +import socket +import struct +import uuid + + +IOBJECT_EXPORTER = uuid.UUID("99fcfec4-5260-101b-bbcb-00aa0021347a") +NDR20 = uuid.UUID("8a885d04-1ceb-11c9-9fe8-08002b104860") + + +def uuid_le(value: uuid.UUID) -> bytes: + return value.bytes_le + + +def pdu_header(ptype: int, flags: int, frag_len: int, call_id: int) -> bytes: + return struct.pack(" bytes: + body = struct.pack(" bytes: + body = struct.pack(" bytes: + # IObjectExporter::ResolveOxid, opnum 0: + # OXID pOxid; unsigned short cRequestedProtseqs; + # conformant ushort array arRequestedProtseqs. + body = struct.pack(" int: + parser = argparse.ArgumentParser() + parser.add_argument("--host", default="127.0.0.1") + parser.add_argument("--port", type=int, default=135) + parser.add_argument("--oxid", required=True, help="hex OXID, for example 0xEAF0D2B53BAB5BC2") + parser.add_argument("--protseq", type=lambda text: int(text, 0), action="append", default=[7]) + args = parser.parse_args() + + oxid = int(args.oxid, 0) + stub = encode_resolve_oxid_stub(oxid, args.protseq) + print(f"resolve_oxid_stub={stub.hex(' ')}") + + with socket.create_connection((args.host, args.port), timeout=5) as sock: + sock.sendall(bind_pdu()) + bind_response = sock.recv(4096) + print(f"bind_response={bind_response.hex(' ')}") + + sock.sendall(request_pdu(2, 0, stub)) + response = sock.recv(8192) + print(f"resolve_response={response.hex(' ')}") + + if len(response) >= 32 and response[2] == 2: + stub_data = response[24:] + print(f"resolve_response_stub={stub_data.hex(' ')}") + if len(stub_data) >= 4: + print(f"likely_error_status=0x{int.from_bytes(stub_data[-4:], 'little'):08x}") + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/register_x64_callback_typelib.ps1 b/analysis/scripts/register_x64_callback_typelib.ps1 new file mode 100644 index 0000000..47087f1 --- /dev/null +++ b/analysis/scripts/register_x64_callback_typelib.ps1 @@ -0,0 +1,48 @@ +param( + [string]$Configuration = 'Release' +) + +$ErrorActionPreference = 'Stop' + +$Root = Resolve-Path (Join-Path $PSScriptRoot '..\..') +$Project = Join-Path $Root 'src\NmxComHarness\NmxComHarness.csproj' +$Assembly = Join-Path $Root "src\NmxComHarness\bin\$Configuration\net481\NmxComHarness.exe" +$TypeLibDir = Join-Path $Root 'analysis\proxy\typelib' +$TypeLib = Join-Path $TypeLibDir 'NmxComHarness.tlb' +$TlbExp = 'C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8.1 Tools\x64\TlbExp.exe' + +if (-not (Test-Path $TlbExp)) { + throw "TlbExp.exe was not found at $TlbExp" +} + +dotnet build $Project -c $Configuration | Out-Host +New-Item -ItemType Directory -Force $TypeLibDir | Out-Null +& $TlbExp $Assembly "/out:$TypeLib" | Tee-Object -FilePath (Join-Path $TypeLibDir 'tlbexp-output.txt') + +$code = @' +using System; +using System.Runtime.InteropServices; +public static class TypeLibReg { + [DllImport("oleaut32.dll", CharSet=CharSet.Unicode)] + public static extern int LoadTypeLibEx(string szFile, int regkind, out IntPtr pptlib); +} +'@ +Add-Type $code + +[IntPtr]$typeLibPointer = [IntPtr]::Zero +$hr = [TypeLibReg]::LoadTypeLibEx($TypeLib, 1, [ref]$typeLibPointer) +"LoadTypeLibEx(Register) hr=0x{0:X8} ptr={1}" -f ($hr -band 0xffffffff), $typeLibPointer | + Tee-Object -FilePath (Join-Path $TypeLibDir 'register-typelib-output.txt') +if ($hr -ne 0) { + throw "LoadTypeLibEx failed with HRESULT 0x{0:X8}" -f ($hr -band 0xffffffff) +} + +$InterfaceKey = 'HKLM:\SOFTWARE\Classes\Interface\{B49F92F7-C748-4169-8ECA-A0670B012746}' +New-Item -Path (Join-Path $InterfaceKey 'NumMethods') -Force | Out-Null +Set-ItemProperty -Path (Join-Path $InterfaceKey 'NumMethods') -Name '(default)' -Value '5' + +Get-ItemProperty $InterfaceKey +Get-ChildItem $InterfaceKey -Recurse | ForEach-Object { + $_.Name + Get-ItemProperty $_.PSPath +} diff --git a/analysis/scripts/run_frida_loopback_capture.ps1 b/analysis/scripts/run_frida_loopback_capture.ps1 new file mode 100644 index 0000000..928f973 --- /dev/null +++ b/analysis/scripts/run_frida_loopback_capture.ps1 @@ -0,0 +1,68 @@ +param( + [Parameter(Mandatory = $true)] + [string]$Name, + + [Parameter(Mandatory = $true)] + [string[]]$HarnessArgs +) + +$ErrorActionPreference = 'Stop' + +$Root = Resolve-Path (Join-Path $PSScriptRoot '..\..') +$Dumpcap = 'C:\Program Files\Wireshark\dumpcap.exe' +$Harness = Join-Path $Root 'src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe' +$FridaScript = Join-Path $Root 'analysis\frida\mx-nmx-trace.js' +$CaptureDir = Join-Path $Root "captures\$Name" + +New-Item -ItemType Directory -Force $CaptureDir | Out-Null + +$Pcap = Join-Path $CaptureDir 'loopback.pcapng' +$HarnessLog = Join-Path $CaptureDir 'harness.log' +$FridaOut = Join-Path $CaptureDir 'frida.stdout.jsonl' +$FridaErr = Join-Path $CaptureDir 'frida.stderr.txt' +$DumpOut = Join-Path $CaptureDir 'dumpcap.stdout.txt' +$DumpErr = Join-Path $CaptureDir 'dumpcap.stderr.txt' +$CommandFile = Join-Path $CaptureDir 'command.txt' + +foreach ($Path in @($Pcap, $HarnessLog, $FridaOut, $FridaErr, $DumpOut, $DumpErr)) { + if (Test-Path $Path) { Remove-Item -LiteralPath $Path -Force } +} + +$FullHarnessArgs = @($HarnessArgs + @("--log=$HarnessLog", "--client=MxFridaLoopback-$Name")) +$Frida = (Get-Command frida.exe -ErrorAction Stop).Source +$FridaArguments = @('-f', $Harness, '-l', $FridaScript, '--') + $FullHarnessArgs + +"dumpcap=$Dumpcap" | Out-File -Encoding UTF8 $CommandFile +"frida=$Frida" | Out-File -Encoding UTF8 -Append $CommandFile +"harness=$Harness" | Out-File -Encoding UTF8 -Append $CommandFile +("args=" + ($FridaArguments -join ' ')) | Out-File -Encoding UTF8 -Append $CommandFile + +$Dump = Start-Process -FilePath $Dumpcap ` + -ArgumentList @('-i', '\Device\NPF_Loopback', '-w', $Pcap, '-q') ` + -PassThru ` + -WindowStyle Hidden ` + -RedirectStandardOutput $DumpOut ` + -RedirectStandardError $DumpErr + +Start-Sleep -Seconds 2 + +try { + $Process = Start-Process -FilePath $Frida ` + -ArgumentList $FridaArguments ` + -Wait ` + -PassThru ` + -NoNewWindow ` + -RedirectStandardOutput $FridaOut ` + -RedirectStandardError $FridaErr + + "exit_code=$($Process.ExitCode)" | Out-File -Encoding UTF8 (Join-Path $CaptureDir 'frida-exit.txt') +} +finally { + if (-not $Dump.HasExited) { + Stop-Process -Id $Dump.Id -Force -ErrorAction SilentlyContinue + } + + Wait-Process -Id $Dump.Id -Timeout 10 -ErrorAction SilentlyContinue | Out-Null +} + +Get-ChildItem $CaptureDir | Select-Object Name, Length, LastWriteTime diff --git a/analysis/scripts/run_frida_mx_trace.ps1 b/analysis/scripts/run_frida_mx_trace.ps1 new file mode 100644 index 0000000..f075fcd --- /dev/null +++ b/analysis/scripts/run_frida_mx_trace.ps1 @@ -0,0 +1,45 @@ +param( + [Parameter(Mandatory = $true)] + [string]$Name, + + [Parameter(Mandatory = $true)] + [string[]]$HarnessArgs +) + +$ErrorActionPreference = 'Stop' + +$Root = Resolve-Path (Join-Path $PSScriptRoot '..\..') +$Harness = Join-Path $Root 'src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe' +$Script = Join-Path $Root 'analysis\frida\mx-nmx-trace.js' +$TraceDir = Join-Path $Root "captures\$Name" + +New-Item -ItemType Directory -Force $TraceDir | Out-Null + +$HarnessLog = Join-Path $TraceDir 'harness.log' +$FridaOut = Join-Path $TraceDir 'frida.stdout.jsonl' +$FridaErr = Join-Path $TraceDir 'frida.stderr.txt' +$CommandFile = Join-Path $TraceDir 'frida-command.txt' + +if (Test-Path $HarnessLog) { Remove-Item -LiteralPath $HarnessLog -Force } +if (Test-Path $FridaOut) { Remove-Item -LiteralPath $FridaOut -Force } +if (Test-Path $FridaErr) { Remove-Item -LiteralPath $FridaErr -Force } + +$FullHarnessArgs = @($HarnessArgs + @("--log=$HarnessLog", "--client=MxFridaTrace-$Name")) +$Frida = (Get-Command frida.exe -ErrorAction Stop).Source +$ArgumentList = @('-f', $Harness, '-l', $Script, '--') + $FullHarnessArgs + +"frida=$Frida" | Out-File -Encoding UTF8 $CommandFile +"harness=$Harness" | Out-File -Encoding UTF8 -Append $CommandFile +("args=" + ($ArgumentList -join ' ')) | Out-File -Encoding UTF8 -Append $CommandFile + +$Process = Start-Process -FilePath $Frida ` + -ArgumentList $ArgumentList ` + -Wait ` + -PassThru ` + -NoNewWindow ` + -RedirectStandardOutput $FridaOut ` + -RedirectStandardError $FridaErr + +"exit_code=$($Process.ExitCode)" | Out-File -Encoding UTF8 (Join-Path $TraceDir 'frida-exit.txt') + +Get-ChildItem $TraceDir | Select-Object Name, Length, LastWriteTime diff --git a/analysis/scripts/run_loopback_capture.ps1 b/analysis/scripts/run_loopback_capture.ps1 new file mode 100644 index 0000000..6f90fca --- /dev/null +++ b/analysis/scripts/run_loopback_capture.ps1 @@ -0,0 +1,59 @@ +param( + [Parameter(Mandatory = $true)] + [string]$Name, + + [Parameter(Mandatory = $true)] + [string[]]$HarnessArgs +) + +$ErrorActionPreference = 'Stop' + +$Root = Resolve-Path (Join-Path $PSScriptRoot '..\..') +$Dumpcap = 'C:\Program Files\Wireshark\dumpcap.exe' +$Harness = Join-Path $Root 'src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe' +$CaptureDir = Join-Path $Root "captures\$Name" + +New-Item -ItemType Directory -Force $CaptureDir | Out-Null + +$Pcap = Join-Path $CaptureDir 'loopback.pcapng' +$Log = Join-Path $CaptureDir 'harness.log' +$DumpOut = Join-Path $CaptureDir 'dumpcap.stdout.txt' +$DumpErr = Join-Path $CaptureDir 'dumpcap.stderr.txt' + +if (Test-Path $Pcap) { Remove-Item -LiteralPath $Pcap -Force } +if (Test-Path $Log) { Remove-Item -LiteralPath $Log -Force } + +$FullHarnessArgs = @($HarnessArgs + @("--log=$Log", "--client=MxProtoTraceHarness-$Name")) + +"harness=$Harness" | Out-File -Encoding UTF8 (Join-Path $CaptureDir 'command.txt') +("args=" + ($FullHarnessArgs -join ' ')) | Out-File -Encoding UTF8 -Append (Join-Path $CaptureDir 'command.txt') + +$Dump = Start-Process -FilePath $Dumpcap ` + -ArgumentList @('-i', '\Device\NPF_Loopback', '-w', $Pcap, '-q') ` + -PassThru ` + -WindowStyle Hidden ` + -RedirectStandardOutput $DumpOut ` + -RedirectStandardError $DumpErr + +Start-Sleep -Seconds 2 + +try { + $Process = Start-Process -FilePath $Harness ` + -ArgumentList $FullHarnessArgs ` + -Wait ` + -PassThru ` + -NoNewWindow ` + -RedirectStandardOutput (Join-Path $CaptureDir 'stdout.txt') ` + -RedirectStandardError (Join-Path $CaptureDir 'stderr.txt') + + "exit_code=$($Process.ExitCode)" | Out-File -Encoding UTF8 (Join-Path $CaptureDir 'exit.txt') +} +finally { + if (-not $Dump.HasExited) { + Stop-Process -Id $Dump.Id -Force -ErrorAction SilentlyContinue + } + + Wait-Process -Id $Dump.Id -Timeout 10 -ErrorAction SilentlyContinue | Out-Null +} + +Get-ChildItem $CaptureDir | Select-Object Name, Length, LastWriteTime diff --git a/analysis/scripts/run_service_boundary_capture.ps1 b/analysis/scripts/run_service_boundary_capture.ps1 new file mode 100644 index 0000000..a9ac10e --- /dev/null +++ b/analysis/scripts/run_service_boundary_capture.ps1 @@ -0,0 +1,102 @@ +param( + [Parameter(Mandatory = $true)] + [string]$Name, + + [Parameter(Mandatory = $true)] + [string[]]$HarnessArgs, + + [switch]$NoLoopback +) + +$ErrorActionPreference = 'Stop' + +$Root = Resolve-Path (Join-Path $PSScriptRoot '..\..') +$Dumpcap = 'C:\Program Files\Wireshark\dumpcap.exe' +$Harness = Join-Path $Root 'src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe' +$ClientFridaScript = Join-Path $Root 'analysis\frida\mx-nmx-trace.js' +$ServiceFridaScript = Join-Path $Root 'analysis\frida\nmxsvc-trace.js' +$CaptureDir = Join-Path $Root "captures\$Name" + +New-Item -ItemType Directory -Force $CaptureDir | Out-Null + +$Pcap = Join-Path $CaptureDir 'loopback.pcapng' +$HarnessLog = Join-Path $CaptureDir 'harness.log' +$ClientFridaOut = Join-Path $CaptureDir 'client-frida.stdout.jsonl' +$ClientFridaErr = Join-Path $CaptureDir 'client-frida.stderr.txt' +$ServiceFridaOut = Join-Path $CaptureDir 'service-frida.stdout.jsonl' +$ServiceFridaErr = Join-Path $CaptureDir 'service-frida.stderr.txt' +$DumpOut = Join-Path $CaptureDir 'dumpcap.stdout.txt' +$DumpErr = Join-Path $CaptureDir 'dumpcap.stderr.txt' +$CommandFile = Join-Path $CaptureDir 'command.txt' + +foreach ($Path in @($Pcap, $HarnessLog, $ClientFridaOut, $ClientFridaErr, $ServiceFridaOut, $ServiceFridaErr, $DumpOut, $DumpErr)) { + if (Test-Path $Path) { Remove-Item -LiteralPath $Path -Force } +} + +$NmxSvc = Get-Process NmxSvc -ErrorAction Stop | Select-Object -First 1 +$Frida = (Get-Command frida.exe -ErrorAction Stop).Source +$FullHarnessArgs = @($HarnessArgs + @("--log=$HarnessLog", "--client=MxBoundary-$Name")) +$ClientFridaArguments = @('-f', $Harness, '-l', $ClientFridaScript, '--') + $FullHarnessArgs +$ServiceFridaArguments = @('-p', "$($NmxSvc.Id)", '-l', $ServiceFridaScript) + +"nmxsvc_pid=$($NmxSvc.Id)" | Out-File -Encoding UTF8 $CommandFile +"nmxsvc_path=$($NmxSvc.Path)" | Out-File -Encoding UTF8 -Append $CommandFile +"dumpcap=$Dumpcap" | Out-File -Encoding UTF8 -Append $CommandFile +"frida=$Frida" | Out-File -Encoding UTF8 -Append $CommandFile +"harness=$Harness" | Out-File -Encoding UTF8 -Append $CommandFile +("service_args=" + ($ServiceFridaArguments -join ' ')) | Out-File -Encoding UTF8 -Append $CommandFile +("client_args=" + ($ClientFridaArguments -join ' ')) | Out-File -Encoding UTF8 -Append $CommandFile + +$Dump = $null +$ServiceFrida = $null + +try { + $ServiceFrida = Start-Process -FilePath $Frida ` + -ArgumentList $ServiceFridaArguments ` + -PassThru ` + -WindowStyle Hidden ` + -RedirectStandardOutput $ServiceFridaOut ` + -RedirectStandardError $ServiceFridaErr + + Start-Sleep -Seconds 3 + + if (-not $NoLoopback -and (Test-Path $Dumpcap)) { + $Dump = Start-Process -FilePath $Dumpcap ` + -ArgumentList @('-i', '\Device\NPF_Loopback', '-w', $Pcap, '-q') ` + -PassThru ` + -WindowStyle Hidden ` + -RedirectStandardOutput $DumpOut ` + -RedirectStandardError $DumpErr + + Start-Sleep -Seconds 2 + } + + $ClientFrida = Start-Process -FilePath $Frida ` + -ArgumentList $ClientFridaArguments ` + -Wait ` + -PassThru ` + -NoNewWindow ` + -RedirectStandardOutput $ClientFridaOut ` + -RedirectStandardError $ClientFridaErr + + "client_exit_code=$($ClientFrida.ExitCode)" | Out-File -Encoding UTF8 (Join-Path $CaptureDir 'client-frida-exit.txt') +} +finally { + if ($ServiceFrida -ne $null -and -not $ServiceFrida.HasExited) { + Stop-Process -Id $ServiceFrida.Id -Force -ErrorAction SilentlyContinue + } + + if ($Dump -ne $null -and -not $Dump.HasExited) { + Stop-Process -Id $Dump.Id -Force -ErrorAction SilentlyContinue + } + + if ($ServiceFrida -ne $null) { + Wait-Process -Id $ServiceFrida.Id -Timeout 10 -ErrorAction SilentlyContinue | Out-Null + } + + if ($Dump -ne $null) { + Wait-Process -Id $Dump.Id -Timeout 10 -ErrorAction SilentlyContinue | Out-Null + } +} + +Get-ChildItem $CaptureDir | Select-Object Name, Length, LastWriteTime diff --git a/analysis/scripts/set-mx-rpc-env.ps1 b/analysis/scripts/set-mx-rpc-env.ps1 new file mode 100644 index 0000000..e9ea7c0 --- /dev/null +++ b/analysis/scripts/set-mx-rpc-env.ps1 @@ -0,0 +1,26 @@ +param( + [string]$UserName = "dohertj2", + [string]$Domain = $env:COMPUTERNAME +) + +$securePassword = Read-Host -Prompt "MX RPC password" -AsSecureString +$bstr = [Runtime.InteropServices.Marshal]::SecureStringToBSTR($securePassword) +try { + $plainPassword = [Runtime.InteropServices.Marshal]::PtrToStringBSTR($bstr) + [Environment]::SetEnvironmentVariable("MX_RPC_USER", $UserName, "User") + [Environment]::SetEnvironmentVariable("MX_RPC_DOMAIN", $Domain, "User") + [Environment]::SetEnvironmentVariable("MX_RPC_PASSWORD", $plainPassword, "User") + + $env:MX_RPC_USER = $UserName + $env:MX_RPC_DOMAIN = $Domain + $env:MX_RPC_PASSWORD = $plainPassword + + Write-Host "MX_RPC_USER and MX_RPC_DOMAIN set for user environment and current shell." + Write-Host "MX_RPC_PASSWORD set for user environment and current shell." + Write-Host "Start a new Codex/shell session if a child process does not inherit the updated user environment." +} +finally { + if ($bstr -ne [IntPtr]::Zero) { + [Runtime.InteropServices.Marshal]::ZeroFreeBSTR($bstr) + } +} diff --git a/analysis/scripts/summarize_dcerpc.py b/analysis/scripts/summarize_dcerpc.py new file mode 100644 index 0000000..4164073 --- /dev/null +++ b/analysis/scripts/summarize_dcerpc.py @@ -0,0 +1,74 @@ +from __future__ import annotations + +import argparse +import csv +from collections import Counter +from pathlib import Path + + +HEADER = [ + "capture", + "stream", + "packet_type", + "context_id", + "opnum", + "count", + "frag_lengths", +] + + +def summarize(path: Path) -> list[list[str]]: + rows: list[list[str]] = [] + counts: Counter[tuple[str, str, str, str]] = Counter() + lengths: dict[tuple[str, str, str, str], Counter[str]] = {} + + with path.open("r", encoding="utf-8-sig", newline="") as handle: + reader = csv.reader(handle, delimiter="\t") + for fields in reader: + if len(fields) < 10: + continue + + stream = fields[2] + packet_type = fields[3] + context_id = fields[5] + opnum = fields[6] + frag_len = fields[8] + key = (stream, packet_type, context_id, opnum) + counts[key] += 1 + lengths.setdefault(key, Counter())[frag_len] += 1 + + for key, count in sorted(counts.items(), key=lambda item: (-item[1], item[0])): + stream, packet_type, context_id, opnum = key + frag_lengths = ",".join( + f"{length}:{length_count}" + for length, length_count in sorted(lengths[key].items(), key=lambda item: (item[0], item[1])) + ) + rows.append([path.parent.name, stream, packet_type, context_id, opnum, str(count), frag_lengths]) + + return rows + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("dcerpc_tsv", type=Path, nargs="+") + parser.add_argument("--out", type=Path) + args = parser.parse_args() + + output_rows = [HEADER] + for path in args.dcerpc_tsv: + output_rows.extend(summarize(path)) + + if args.out: + args.out.parent.mkdir(parents=True, exist_ok=True) + with args.out.open("w", encoding="utf-8", newline="") as handle: + writer = csv.writer(handle, delimiter="\t", lineterminator="\n") + writer.writerows(output_rows) + else: + writer = csv.writer(__import__("sys").stdout, delimiter="\t", lineterminator="\n") + writer.writerows(output_rows) + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/scripts/summarize_pcap.py b/analysis/scripts/summarize_pcap.py new file mode 100644 index 0000000..3fc3fb2 --- /dev/null +++ b/analysis/scripts/summarize_pcap.py @@ -0,0 +1,102 @@ +from __future__ import annotations + +import argparse +from collections import Counter, defaultdict +from pathlib import Path + +from scapy.all import IP, IPv6, TCP, UDP, Raw, rdpcap + + +def packet_endpoint(packet): + if IP in packet: + network = packet[IP] + elif IPv6 in packet: + network = packet[IPv6] + else: + return None + + if TCP in packet: + tcp = packet[TCP] + proto = "TCP" + sport = int(tcp.sport) + dport = int(tcp.dport) + elif UDP in packet: + udp = packet[UDP] + proto = "UDP" + sport = int(udp.sport) + dport = int(udp.dport) + else: + return None + + payload_len = len(bytes(packet[Raw].load)) if Raw in packet else 0 + return proto, str(network.src), sport, str(network.dst), dport, payload_len + + +def summarize(path: Path) -> list[str]: + packets = rdpcap(str(path)) + endpoint_counts: Counter[tuple[str, str, int, str, int]] = Counter() + endpoint_payloads: defaultdict[tuple[str, str, int, str, int], list[int]] = defaultdict(list) + port_counts: Counter[tuple[str, int]] = Counter() + raw_payload_counter = 0 + + for packet in packets: + endpoint = packet_endpoint(packet) + if endpoint is None: + continue + proto, src, sport, dst, dport, payload_len = endpoint + key = (proto, src, sport, dst, dport) + endpoint_counts[key] += 1 + endpoint_payloads[key].append(payload_len) + port_counts[(proto, sport)] += 1 + port_counts[(proto, dport)] += 1 + if payload_len: + raw_payload_counter += 1 + + lines = [ + f"capture\t{path}", + f"packets\t{len(packets)}", + f"ip_tcp_udp_packets\t{sum(endpoint_counts.values())}", + f"packets_with_payload\t{raw_payload_counter}", + "", + "top_ports", + "proto\tport\tpacket_refs", + ] + for (proto, port), count in port_counts.most_common(20): + lines.append(f"{proto}\t{port}\t{count}") + + lines.extend(["", "top_endpoints", "proto\tsrc\tsport\tdst\tdport\tpackets\tpayload_packets\tpayload_bytes"]) + for key, count in endpoint_counts.most_common(30): + payloads = endpoint_payloads[key] + payload_packets = sum(1 for length in payloads if length) + payload_bytes = sum(payloads) + proto, src, sport, dst, dport = key + lines.append(f"{proto}\t{src}\t{sport}\t{dst}\t{dport}\t{count}\t{payload_packets}\t{payload_bytes}") + + return lines + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("pcapng", nargs="+", type=Path) + parser.add_argument("--out", type=Path) + args = parser.parse_args() + + output: list[str] = [] + for index, pcapng in enumerate(args.pcapng): + if index: + output.append("") + output.append("=" * 80) + output.append("") + output.extend(summarize(pcapng)) + + text = "\n".join(output) + "\n" + if args.out: + args.out.parent.mkdir(parents=True, exist_ok=True) + args.out.write_text(text, encoding="utf-8") + else: + print(text, end="") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/analysis/sql/select_capture_tags.sql b/analysis/sql/select_capture_tags.sql new file mode 100644 index 0000000..77779f7 --- /dev/null +++ b/analysis/sql/select_capture_tags.sql @@ -0,0 +1,269 @@ +/* +Select low-risk Galaxy attributes to use as MXAccess trace inputs. + +Connection: + sqlcmd -S localhost -d ZB -E -i analysis/sql/select_capture_tags.sql + +The query mirrors the deployed-package logic from +C:\Users\dohertj2\Desktop\lmxopcua\gr\queries\attributes_extended.sql, +then ranks candidates for read-only capture and possible later write capture. +*/ +SET NOCOUNT ON; + +IF OBJECT_ID('tempdb..#all_attributes') IS NOT NULL + DROP TABLE #all_attributes; + +;WITH deployed_package_chain AS ( + SELECT + g.gobject_id, + p.package_id, + p.derived_from_package_id, + 0 AS depth + FROM gobject g + INNER JOIN package p + ON p.package_id = g.deployed_package_id + WHERE g.is_template = 0 + AND g.deployed_package_id <> 0 + UNION ALL + SELECT + dpc.gobject_id, + p.package_id, + p.derived_from_package_id, + dpc.depth + 1 + FROM deployed_package_chain dpc + INNER JOIN package p + ON p.package_id = dpc.derived_from_package_id + WHERE dpc.derived_from_package_id <> 0 + AND dpc.depth < 10 +), +ranked_dynamic AS ( + SELECT + dpc.gobject_id, + g.tag_name, + CAST('' AS nvarchar(255)) AS primitive_name, + da.attribute_name, + g.tag_name + '.' + da.attribute_name + + CASE WHEN da.is_array = 1 THEN '[]' ELSE '' END AS full_tag_reference, + da.mx_data_type, + dt.description AS data_type_name, + da.is_array, + CASE WHEN da.is_array = 1 + THEN CONVERT(int, CONVERT(varbinary(2), + SUBSTRING(da.mx_value, 15, 2) + SUBSTRING(da.mx_value, 13, 2), 2)) + ELSE NULL + END AS array_dimension, + da.mx_attribute_category, + da.security_classification, + CASE WHEN EXISTS ( + SELECT 1 + FROM deployed_package_chain dpc2 + INNER JOIN primitive_instance pi + ON pi.package_id = dpc2.package_id + AND pi.primitive_name = da.attribute_name + INNER JOIN primitive_definition pd + ON pd.primitive_definition_id = pi.primitive_definition_id + AND pd.primitive_name = 'HistoryExtension' + WHERE dpc2.gobject_id = dpc.gobject_id + ) THEN 1 ELSE 0 END AS is_historized, + CASE WHEN EXISTS ( + SELECT 1 + FROM deployed_package_chain dpc2 + INNER JOIN primitive_instance pi + ON pi.package_id = dpc2.package_id + AND pi.primitive_name = da.attribute_name + INNER JOIN primitive_definition pd + ON pd.primitive_definition_id = pi.primitive_definition_id + AND pd.primitive_name = 'AlarmExtension' + WHERE dpc2.gobject_id = dpc.gobject_id + ) THEN 1 ELSE 0 END AS is_alarm, + CAST('dynamic' AS varchar(16)) AS attribute_source, + ROW_NUMBER() OVER ( + PARTITION BY dpc.gobject_id, da.attribute_name + ORDER BY dpc.depth + ) AS rn + FROM deployed_package_chain dpc + INNER JOIN dynamic_attribute da + ON da.package_id = dpc.package_id + INNER JOIN gobject g + ON g.gobject_id = dpc.gobject_id + INNER JOIN template_definition td + ON td.template_definition_id = g.template_definition_id + LEFT JOIN data_type dt + ON dt.mx_data_type = da.mx_data_type + WHERE td.category_id IN (1, 3, 4, 10, 11, 13, 17, 24, 26) + AND da.attribute_name NOT LIKE '[_]%' + AND da.attribute_name NOT LIKE '%.Description' + AND da.mx_attribute_category IN (2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24) +), +all_attributes AS ( + SELECT + g.gobject_id, + g.tag_name, + pi.primitive_name, + ad.attribute_name, + CASE WHEN pi.primitive_name = '' + THEN g.tag_name + '.' + ad.attribute_name + ELSE g.tag_name + '.' + pi.primitive_name + '.' + ad.attribute_name + END + CASE WHEN ad.is_array = 1 THEN '[]' ELSE '' END AS full_tag_reference, + ad.mx_data_type, + dt.description AS data_type_name, + ad.is_array, + CASE WHEN ad.is_array = 1 + THEN CONVERT(int, CONVERT(varbinary(2), + SUBSTRING(ad.mx_value, 15, 2) + SUBSTRING(ad.mx_value, 13, 2), 2)) + ELSE NULL + END AS array_dimension, + ad.mx_attribute_category, + ad.security_classification, + CAST(0 AS int) AS is_historized, + CAST(0 AS int) AS is_alarm, + CAST('primitive' AS varchar(16)) AS attribute_source + FROM gobject g + INNER JOIN instance i + ON i.gobject_id = g.gobject_id + INNER JOIN template_definition td + ON td.template_definition_id = g.template_definition_id + AND td.runtime_clsid <> '{00000000-0000-0000-0000-000000000000}' + INNER JOIN package p + ON p.package_id = g.deployed_package_id + INNER JOIN primitive_instance pi + ON pi.package_id = p.package_id + AND pi.property_bitmask & 0x10 <> 0x10 + INNER JOIN attribute_definition ad + ON ad.primitive_definition_id = pi.primitive_definition_id + AND ad.attribute_name NOT LIKE '[_]%' + AND ad.mx_attribute_category IN (2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24) + LEFT JOIN data_type dt + ON dt.mx_data_type = ad.mx_data_type + WHERE td.category_id IN (1, 3, 4, 10, 11, 13, 17, 24, 26) + AND g.is_template = 0 + AND g.deployed_package_id <> 0 + + UNION ALL + + SELECT + gobject_id, + tag_name, + primitive_name, + attribute_name, + full_tag_reference, + mx_data_type, + data_type_name, + is_array, + array_dimension, + mx_attribute_category, + security_classification, + is_historized, + is_alarm, + attribute_source + FROM ranked_dynamic + WHERE rn = 1 +) +SELECT * +INTO #all_attributes +FROM all_attributes; + +SELECT TOP (40) + 'read_capture' AS candidate_set, + full_tag_reference, + data_type_name, + mx_data_type, + is_array, + array_dimension, + security_classification, + CASE security_classification + WHEN 0 THEN 'FreeAccess' + WHEN 1 THEN 'Operate' + WHEN 2 THEN 'SecuredWrite' + WHEN 3 THEN 'VerifiedWrite' + WHEN 4 THEN 'Tune' + WHEN 5 THEN 'Configure' + WHEN 6 THEN 'ViewOnly' + ELSE 'Unknown' + END AS security_name, + is_historized, + is_alarm, + attribute_source +FROM #all_attributes +WHERE is_array = 0 + AND mx_data_type IN (1, 2, 3, 4, 5, 6, 7) + AND is_alarm = 0 +ORDER BY + CASE WHEN security_classification = 6 THEN 0 ELSE 1 END, + CASE WHEN full_tag_reference LIKE '%ScanState' THEN 0 ELSE 1 END, + CASE WHEN tag_name LIKE 'Test%' OR tag_name LIKE '%Test%' THEN 0 ELSE 1 END, + attribute_source, + full_tag_reference; + +SELECT TOP (40) + 'array_read_capture' AS candidate_set, + full_tag_reference, + data_type_name, + mx_data_type, + is_array, + array_dimension, + security_classification, + CASE security_classification + WHEN 0 THEN 'FreeAccess' + WHEN 1 THEN 'Operate' + WHEN 2 THEN 'SecuredWrite' + WHEN 3 THEN 'VerifiedWrite' + WHEN 4 THEN 'Tune' + WHEN 5 THEN 'Configure' + WHEN 6 THEN 'ViewOnly' + ELSE 'Unknown' + END AS security_name, + is_historized, + is_alarm, + attribute_source +FROM #all_attributes +WHERE is_array = 1 + AND mx_data_type IN (1, 2, 3, 4, 5, 6, 7) + AND is_alarm = 0 +ORDER BY + CASE WHEN security_classification = 6 THEN 0 ELSE 1 END, + CASE WHEN tag_name LIKE 'Test%' OR tag_name LIKE '%Test%' THEN 0 ELSE 1 END, + array_dimension, + full_tag_reference; + +SELECT TOP (40) + 'possible_write_capture' AS candidate_set, + full_tag_reference, + data_type_name, + mx_data_type, + is_array, + array_dimension, + security_classification, + CASE security_classification + WHEN 0 THEN 'FreeAccess' + WHEN 1 THEN 'Operate' + WHEN 2 THEN 'SecuredWrite' + WHEN 3 THEN 'VerifiedWrite' + WHEN 4 THEN 'Tune' + WHEN 5 THEN 'Configure' + WHEN 6 THEN 'ViewOnly' + ELSE 'Unknown' + END AS security_name, + is_historized, + is_alarm, + attribute_source +FROM #all_attributes +WHERE is_array = 0 + AND mx_data_type IN (1, 2, 3, 4, 5, 6, 7) + AND is_alarm = 0 + AND security_classification IN (0, 1, 4, 5) + AND ( + tag_name LIKE 'Test%' + OR tag_name LIKE '%Test%' + OR tag_name LIKE '%Sim%' + OR attribute_name LIKE '%Test%' + OR attribute_name LIKE '%Scratch%' + OR attribute_name LIKE '%Command%' + OR attribute_name LIKE '%Manual%' + OR attribute_name LIKE '%Sim%' + ) +ORDER BY + CASE WHEN tag_name LIKE 'Test%' THEN 0 ELSE 1 END, + CASE WHEN attribute_name LIKE '%Scratch%' OR attribute_name LIKE '%Test%' THEN 0 ELSE 1 END, + security_classification, + full_tag_reference; diff --git a/analysis/sql/select_secured_write_candidates.sql b/analysis/sql/select_secured_write_candidates.sql new file mode 100644 index 0000000..5dec702 --- /dev/null +++ b/analysis/sql/select_secured_write_candidates.sql @@ -0,0 +1,152 @@ +/* +Find deployed runtime attributes with security classifications that should +exercise LMXProxy WriteSecured / WriteSecured2 paths. + +Connection: + sqlcmd -S localhost -d ZB -E -i analysis/sql/select_secured_write_candidates.sql +*/ +SET NOCOUNT ON; + +;WITH deployed_package_chain AS ( + SELECT + g.gobject_id, + p.package_id, + p.derived_from_package_id, + 0 AS depth + FROM gobject g + INNER JOIN package p + ON p.package_id = g.deployed_package_id + WHERE g.is_template = 0 + AND g.deployed_package_id <> 0 + UNION ALL + SELECT + dpc.gobject_id, + p.package_id, + p.derived_from_package_id, + dpc.depth + 1 + FROM deployed_package_chain dpc + INNER JOIN package p + ON p.package_id = dpc.derived_from_package_id + WHERE dpc.derived_from_package_id <> 0 + AND dpc.depth < 10 +), +ranked_dynamic AS ( + SELECT + dpc.gobject_id, + g.tag_name, + CAST('' AS nvarchar(255)) AS primitive_name, + da.attribute_name, + g.tag_name + '.' + da.attribute_name + + CASE WHEN da.is_array = 1 THEN '[]' ELSE '' END AS full_tag_reference, + da.mx_data_type, + dt.description AS data_type_name, + da.is_array, + CASE WHEN da.is_array = 1 + THEN CONVERT(int, CONVERT(varbinary(2), + SUBSTRING(da.mx_value, 15, 2) + SUBSTRING(da.mx_value, 13, 2), 2)) + ELSE NULL + END AS array_dimension, + da.mx_attribute_category, + da.security_classification, + CAST('dynamic' AS varchar(16)) AS attribute_source, + ROW_NUMBER() OVER ( + PARTITION BY dpc.gobject_id, da.attribute_name + ORDER BY dpc.depth + ) AS rn + FROM deployed_package_chain dpc + INNER JOIN dynamic_attribute da + ON da.package_id = dpc.package_id + INNER JOIN gobject g + ON g.gobject_id = dpc.gobject_id + INNER JOIN template_definition td + ON td.template_definition_id = g.template_definition_id + LEFT JOIN data_type dt + ON dt.mx_data_type = da.mx_data_type + WHERE td.category_id IN (1, 3, 4, 10, 11, 13, 17, 24, 26) + AND da.attribute_name NOT LIKE '[_]%' + AND da.attribute_name NOT LIKE '%.Description' + AND da.mx_attribute_category IN (2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24) +), +all_attributes AS ( + SELECT + g.gobject_id, + g.tag_name, + pi.primitive_name, + ad.attribute_name, + CASE WHEN pi.primitive_name = '' + THEN g.tag_name + '.' + ad.attribute_name + ELSE g.tag_name + '.' + pi.primitive_name + '.' + ad.attribute_name + END + CASE WHEN ad.is_array = 1 THEN '[]' ELSE '' END AS full_tag_reference, + ad.mx_data_type, + dt.description AS data_type_name, + ad.is_array, + CASE WHEN ad.is_array = 1 + THEN CONVERT(int, CONVERT(varbinary(2), + SUBSTRING(ad.mx_value, 15, 2) + SUBSTRING(ad.mx_value, 13, 2), 2)) + ELSE NULL + END AS array_dimension, + ad.mx_attribute_category, + ad.security_classification, + CAST('primitive' AS varchar(16)) AS attribute_source + FROM gobject g + INNER JOIN instance i + ON i.gobject_id = g.gobject_id + INNER JOIN template_definition td + ON td.template_definition_id = g.template_definition_id + AND td.runtime_clsid <> '{00000000-0000-0000-0000-000000000000}' + INNER JOIN package p + ON p.package_id = g.deployed_package_id + INNER JOIN primitive_instance pi + ON pi.package_id = p.package_id + AND pi.property_bitmask & 0x10 <> 0x10 + INNER JOIN attribute_definition ad + ON ad.primitive_definition_id = pi.primitive_definition_id + AND ad.attribute_name NOT LIKE '[_]%' + AND ad.mx_attribute_category IN (2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24) + LEFT JOIN data_type dt + ON dt.mx_data_type = ad.mx_data_type + WHERE td.category_id IN (1, 3, 4, 10, 11, 13, 17, 24, 26) + AND g.is_template = 0 + AND g.deployed_package_id <> 0 + + UNION ALL + + SELECT + gobject_id, + tag_name, + primitive_name, + attribute_name, + full_tag_reference, + mx_data_type, + data_type_name, + is_array, + array_dimension, + mx_attribute_category, + security_classification, + attribute_source + FROM ranked_dynamic + WHERE rn = 1 +) +SELECT TOP (100) + full_tag_reference, + data_type_name, + mx_data_type, + is_array, + array_dimension, + security_classification, + CASE security_classification + WHEN 2 THEN 'SecuredWrite' + WHEN 3 THEN 'VerifiedWrite' + ELSE 'Other' + END AS security_name, + mx_attribute_category, + attribute_source +FROM all_attributes +WHERE security_classification IN (2, 3) + AND mx_data_type IN (1, 2, 3, 4, 5, 6, 7) +ORDER BY + CASE WHEN tag_name LIKE 'Test%' OR tag_name LIKE '%Test%' THEN 0 ELSE 1 END, + security_classification, + is_array, + full_tag_reference +OPTION (MAXRECURSION 20); diff --git a/analysis/typelib/Interop.Lmx.dll b/analysis/typelib/Interop.Lmx.dll new file mode 100644 index 0000000..fcad400 Binary files /dev/null and b/analysis/typelib/Interop.Lmx.dll differ diff --git a/analysis/x86-sub-x86-writer-subscriber.log b/analysis/x86-sub-x86-writer-subscriber.log new file mode 100644 index 0000000..1ca168a --- /dev/null +++ b/analysis/x86-sub-x86-writer-subscriber.log @@ -0,0 +1,14 @@ +2026-04-25T22:39:48.9780859+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":20,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:39:55.7842471+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T22:39:56.1632485+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:39:56.1632485+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T22:39:56.1652935+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:39:56.1662599+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:39:56.1672499+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:16.2191669+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:16.2191669+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:16.2191669+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:16.2191669+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:16.2202220+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:40:19.8942326+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:40:19.8992468+00:00 harness.stop {} diff --git a/analysis/x86-sub-x86-writer-writer.log b/analysis/x86-sub-x86-writer-writer.log new file mode 100644 index 0000000..8fecfd3 --- /dev/null +++ b/analysis/x86-sub-x86-writer-writer.log @@ -0,0 +1,16 @@ +2026-04-25T22:39:57.1898120+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"","WriteValues":["330"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":500,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:40:04.1352704+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T22:40:04.4958084+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:40:04.4978047+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T22:40:04.4988044+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:04.4998038+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:04.5008042+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:05.0491339+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"330"},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T22:40:05.0522044+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T22:40:09.0732025+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:09.0742030+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:09.0742030+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:09.0742030+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T22:40:09.0742030+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:40:13.1209280+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:40:13.1279215+00:00 harness.stop {} diff --git a/captures/001-register/etl2pcapng.txt b/captures/001-register/etl2pcapng.txt new file mode 100644 index 0000000..a018259 --- /dev/null +++ b/captures/001-register/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 1685 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\001-register\network.pcapng diff --git a/captures/001-register/exit.txt b/captures/001-register/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/001-register/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/001-register/harness.log b/captures/001-register/harness.log new file mode 100644 index 0000000..faf590e --- /dev/null +++ b/captures/001-register/harness.log @@ -0,0 +1,6 @@ +2026-04-25T04:25:45.0397680+00:00 harness.start {"Scenario":"register","ClientName":"MxProtoTraceHarness-001-register","Tags":[],"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:25:52.1843844+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-001-register"} +2026-04-25T04:25:52.6023874+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:25:55.6608667+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:25:59.8765046+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:25:59.8824999+00:00 harness.stop {} diff --git a/captures/001-register/netsh-start.txt b/captures/001-register/netsh-start.txt new file mode 100644 index 0000000..ebc2f13 --- /dev/null +++ b/captures/001-register/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\001-register\netsh.etl +Append: Off +Circular: Off +Max Size: 128 MB +Report: Off + diff --git a/captures/001-register/netsh-stop.txt b/captures/001-register/netsh-stop.txt new file mode 100644 index 0000000..15f4fd1 --- /dev/null +++ b/captures/001-register/netsh-stop.txt @@ -0,0 +1 @@ +Merging traces ... done diff --git a/captures/001-register/netsh.etl b/captures/001-register/netsh.etl new file mode 100644 index 0000000..a9c54ac Binary files /dev/null and b/captures/001-register/netsh.etl differ diff --git a/captures/001-register/network.pcapng b/captures/001-register/network.pcapng new file mode 100644 index 0000000..f57fad7 Binary files /dev/null and b/captures/001-register/network.pcapng differ diff --git a/captures/001-register/stderr.txt b/captures/001-register/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/001-register/stdout.txt b/captures/001-register/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/002-add-remove-scalar/etl2pcapng.txt b/captures/002-add-remove-scalar/etl2pcapng.txt new file mode 100644 index 0000000..a9f9ff6 --- /dev/null +++ b/captures/002-add-remove-scalar/etl2pcapng.txt @@ -0,0 +1,2 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +Wrote 1507 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\002-add-remove-scalar\network.pcapng diff --git a/captures/002-add-remove-scalar/exit.txt b/captures/002-add-remove-scalar/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/002-add-remove-scalar/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/002-add-remove-scalar/harness.log b/captures/002-add-remove-scalar/harness.log new file mode 100644 index 0000000..60b17d0 --- /dev/null +++ b/captures/002-add-remove-scalar/harness.log @@ -0,0 +1,10 @@ +2026-04-25T04:31:41.9157871+00:00 harness.start {"Scenario":"add-remove","ClientName":"MxProtoTraceHarness-002-add-remove-scalar","Tags":["TestChildObject.TestString"],"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:31:48.7740737+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-002-add-remove-scalar"} +2026-04-25T04:31:49.1210780+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:31:49.1220360+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-25T04:31:49.1230266+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T04:31:51.1404822+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T04:31:51.1414701+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T04:31:51.1434597+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:31:55.1451427+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:31:55.1501307+00:00 harness.stop {} diff --git a/captures/002-add-remove-scalar/netsh-start.txt b/captures/002-add-remove-scalar/netsh-start.txt new file mode 100644 index 0000000..8c3e139 --- /dev/null +++ b/captures/002-add-remove-scalar/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\002-add-remove-scalar\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/002-add-remove-scalar/netsh-stop.txt b/captures/002-add-remove-scalar/netsh-stop.txt new file mode 100644 index 0000000..15f4fd1 --- /dev/null +++ b/captures/002-add-remove-scalar/netsh-stop.txt @@ -0,0 +1 @@ +Merging traces ... done diff --git a/captures/002-add-remove-scalar/netsh.etl b/captures/002-add-remove-scalar/netsh.etl new file mode 100644 index 0000000..33b14ec Binary files /dev/null and b/captures/002-add-remove-scalar/netsh.etl differ diff --git a/captures/002-add-remove-scalar/network.pcapng b/captures/002-add-remove-scalar/network.pcapng new file mode 100644 index 0000000..965f25c Binary files /dev/null and b/captures/002-add-remove-scalar/network.pcapng differ diff --git a/captures/002-add-remove-scalar/stderr.txt b/captures/002-add-remove-scalar/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/002-add-remove-scalar/stdout.txt b/captures/002-add-remove-scalar/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/003-subscribe-scalars/etl2pcapng.txt b/captures/003-subscribe-scalars/etl2pcapng.txt new file mode 100644 index 0000000..bd4332d --- /dev/null +++ b/captures/003-subscribe-scalars/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 2474 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\003-subscribe-scalars\network.pcapng diff --git a/captures/003-subscribe-scalars/exit.txt b/captures/003-subscribe-scalars/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/003-subscribe-scalars/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/003-subscribe-scalars/harness.log b/captures/003-subscribe-scalars/harness.log new file mode 100644 index 0000000..f5ddef2 --- /dev/null +++ b/captures/003-subscribe-scalars/harness.log @@ -0,0 +1,33 @@ +2026-04-25T04:35:15.7509909+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-003-subscribe-scalars","Tags":["TestChildObject.TestBool","TestChildObject.TestInt","TestChildObject.TestString"],"DurationSeconds":10,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:35:22.5337461+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-003-subscribe-scalars"} +2026-04-25T04:35:22.9148802+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:35:22.9148802+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-25T04:35:22.9169268+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T04:35:22.9169268+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T04:35:22.9189197+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T04:35:22.9189197+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T04:35:22.9189197+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T04:35:22.9189197+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T04:35:22.9199161+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T04:35:22.9199161+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-25T04:35:22.9199161+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T04:35:22.9199161+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T04:35:22.9199161+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T04:35:23.1651025+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T04:35:23.1681388+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":2,"Value":{"Type":"System.Int32","Value":"99"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T04:35:23.1691255+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":3,"Value":{"Type":"System.String","Value":"HelloFromOpcUa"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T04:35:32.9758861+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T04:35:32.9768853+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T04:35:32.9768853+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T04:35:32.9768853+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T04:35:32.9768853+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T04:35:32.9768853+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T04:35:32.9768853+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T04:35:32.9768853+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T04:35:32.9768853+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T04:35:32.9778864+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T04:35:32.9778864+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T04:35:32.9778864+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T04:35:32.9778864+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:35:36.9644691+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:35:36.9694672+00:00 harness.stop {} diff --git a/captures/003-subscribe-scalars/netsh-start.txt b/captures/003-subscribe-scalars/netsh-start.txt new file mode 100644 index 0000000..3bc144c --- /dev/null +++ b/captures/003-subscribe-scalars/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\003-subscribe-scalars\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/003-subscribe-scalars/netsh-start.txt.err b/captures/003-subscribe-scalars/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/003-subscribe-scalars/netsh-stop.txt b/captures/003-subscribe-scalars/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/003-subscribe-scalars/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/003-subscribe-scalars/netsh-stop.txt.err b/captures/003-subscribe-scalars/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/003-subscribe-scalars/netsh.etl b/captures/003-subscribe-scalars/netsh.etl new file mode 100644 index 0000000..d08df59 Binary files /dev/null and b/captures/003-subscribe-scalars/netsh.etl differ diff --git a/captures/003-subscribe-scalars/network.pcapng b/captures/003-subscribe-scalars/network.pcapng new file mode 100644 index 0000000..784943b Binary files /dev/null and b/captures/003-subscribe-scalars/network.pcapng differ diff --git a/captures/003-subscribe-scalars/stderr.txt b/captures/003-subscribe-scalars/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/003-subscribe-scalars/stdout.txt b/captures/003-subscribe-scalars/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/004-subscribe-array-runtime-name/etl2pcapng.txt b/captures/004-subscribe-array-runtime-name/etl2pcapng.txt new file mode 100644 index 0000000..eba1a4a --- /dev/null +++ b/captures/004-subscribe-array-runtime-name/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 2243 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\004-subscribe-array-runtime-name\network.pcapng diff --git a/captures/004-subscribe-array-runtime-name/exit.txt b/captures/004-subscribe-array-runtime-name/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/004-subscribe-array-runtime-name/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/004-subscribe-array-runtime-name/harness.log b/captures/004-subscribe-array-runtime-name/harness.log new file mode 100644 index 0000000..1c7f4da --- /dev/null +++ b/captures/004-subscribe-array-runtime-name/harness.log @@ -0,0 +1,15 @@ +2026-04-25T04:36:38.6389959+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-004-subscribe-array-runtime-name","Tags":["TestChildObject.TestStringArray"],"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:36:45.5684867+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-004-subscribe-array-runtime-name"} +2026-04-25T04:36:45.9441099+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:36:45.9451102+00:00 mx.additem.begin {"Tag":"TestChildObject.TestStringArray"} +2026-04-25T04:36:45.9461094+00:00 mx.additem.end {"Tag":"TestChildObject.TestStringArray","ItemHandle":1} +2026-04-25T04:36:45.9471093+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestStringArray","ItemHandle":1} +2026-04-25T04:36:45.9491092+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestStringArray","ItemHandle":1} +2026-04-25T04:36:46.4008442+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"null","Value":null},"Quality":0,"Timestamp":{"Type":"System.String","Value":"4/25/2026 12:36:46.383 AM"},"Status":[{"Success":0,"Category":"MxCategoryConfigurationError","Source":"MxSourceRespondingAutomationObject","Detail":1003}]} +2026-04-25T04:36:53.9762943+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestStringArray","ItemHandle":1} +2026-04-25T04:36:53.9769017+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestStringArray","ItemHandle":1} +2026-04-25T04:36:53.9769017+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestStringArray","ItemHandle":1} +2026-04-25T04:36:53.9772873+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestStringArray","ItemHandle":1} +2026-04-25T04:36:53.9772873+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:36:57.8030605+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:36:57.8093996+00:00 harness.stop {} diff --git a/captures/004-subscribe-array-runtime-name/netsh-start.txt b/captures/004-subscribe-array-runtime-name/netsh-start.txt new file mode 100644 index 0000000..b6a8443 --- /dev/null +++ b/captures/004-subscribe-array-runtime-name/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\004-subscribe-array-runtime-name\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/004-subscribe-array-runtime-name/netsh-start.txt.err b/captures/004-subscribe-array-runtime-name/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/004-subscribe-array-runtime-name/netsh-stop.txt b/captures/004-subscribe-array-runtime-name/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/004-subscribe-array-runtime-name/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/004-subscribe-array-runtime-name/netsh-stop.txt.err b/captures/004-subscribe-array-runtime-name/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/004-subscribe-array-runtime-name/netsh.etl b/captures/004-subscribe-array-runtime-name/netsh.etl new file mode 100644 index 0000000..1f7c1d9 Binary files /dev/null and b/captures/004-subscribe-array-runtime-name/netsh.etl differ diff --git a/captures/004-subscribe-array-runtime-name/network.pcapng b/captures/004-subscribe-array-runtime-name/network.pcapng new file mode 100644 index 0000000..9fd490d Binary files /dev/null and b/captures/004-subscribe-array-runtime-name/network.pcapng differ diff --git a/captures/004-subscribe-array-runtime-name/stderr.txt b/captures/004-subscribe-array-runtime-name/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/004-subscribe-array-runtime-name/stdout.txt b/captures/004-subscribe-array-runtime-name/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/005-subscribe-array-bracketed-name/etl2pcapng.txt b/captures/005-subscribe-array-bracketed-name/etl2pcapng.txt new file mode 100644 index 0000000..ffbf046 --- /dev/null +++ b/captures/005-subscribe-array-bracketed-name/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 2036 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\005-subscribe-array-bracketed-name\network.pcapng diff --git a/captures/005-subscribe-array-bracketed-name/exit.txt b/captures/005-subscribe-array-bracketed-name/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/005-subscribe-array-bracketed-name/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/005-subscribe-array-bracketed-name/harness.log b/captures/005-subscribe-array-bracketed-name/harness.log new file mode 100644 index 0000000..cbcc26b --- /dev/null +++ b/captures/005-subscribe-array-bracketed-name/harness.log @@ -0,0 +1,15 @@ +2026-04-25T04:37:59.0339586+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-005-subscribe-array-bracketed-name","Tags":["TestChildObject.TestStringArray[]"],"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:38:05.9455914+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-005-subscribe-array-bracketed-name"} +2026-04-25T04:38:06.3335150+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:38:06.3344608+00:00 mx.additem.begin {"Tag":"TestChildObject.TestStringArray[]"} +2026-04-25T04:38:06.3365135+00:00 mx.additem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T04:38:06.3375094+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T04:38:06.3394536+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T04:38:06.5854471+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String[]","Length":10,"Values":["","","","","","","","","",""]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.908 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T04:38:14.3880161+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T04:38:14.3890781+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T04:38:14.3890781+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T04:38:14.3890781+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T04:38:14.3890781+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:38:18.2247732+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:38:18.2308347+00:00 harness.stop {} diff --git a/captures/005-subscribe-array-bracketed-name/netsh-start.txt b/captures/005-subscribe-array-bracketed-name/netsh-start.txt new file mode 100644 index 0000000..cd9e2c7 --- /dev/null +++ b/captures/005-subscribe-array-bracketed-name/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\005-subscribe-array-bracketed-name\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/005-subscribe-array-bracketed-name/netsh-start.txt.err b/captures/005-subscribe-array-bracketed-name/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/005-subscribe-array-bracketed-name/netsh-stop.txt b/captures/005-subscribe-array-bracketed-name/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/005-subscribe-array-bracketed-name/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/005-subscribe-array-bracketed-name/netsh-stop.txt.err b/captures/005-subscribe-array-bracketed-name/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/005-subscribe-array-bracketed-name/netsh.etl b/captures/005-subscribe-array-bracketed-name/netsh.etl new file mode 100644 index 0000000..8792f43 Binary files /dev/null and b/captures/005-subscribe-array-bracketed-name/netsh.etl differ diff --git a/captures/005-subscribe-array-bracketed-name/network.pcapng b/captures/005-subscribe-array-bracketed-name/network.pcapng new file mode 100644 index 0000000..1ecf99d Binary files /dev/null and b/captures/005-subscribe-array-bracketed-name/network.pcapng differ diff --git a/captures/005-subscribe-array-bracketed-name/stderr.txt b/captures/005-subscribe-array-bracketed-name/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/005-subscribe-array-bracketed-name/stdout.txt b/captures/005-subscribe-array-bracketed-name/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/006-add-invalid/etl2pcapng.txt b/captures/006-add-invalid/etl2pcapng.txt new file mode 100644 index 0000000..6b45df2 --- /dev/null +++ b/captures/006-add-invalid/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 1266 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\006-add-invalid\network.pcapng diff --git a/captures/006-add-invalid/exit.txt b/captures/006-add-invalid/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/006-add-invalid/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/006-add-invalid/harness.log b/captures/006-add-invalid/harness.log new file mode 100644 index 0000000..fb2ca7f --- /dev/null +++ b/captures/006-add-invalid/harness.log @@ -0,0 +1,10 @@ +2026-04-25T04:39:19.2275717+00:00 harness.start {"Scenario":"add-remove","ClientName":"MxProtoTraceHarness-006-add-invalid","Tags":["NoSuchObject_999.NoSuchAttr"],"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:39:26.3052952+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-006-add-invalid"} +2026-04-25T04:39:26.6503199+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:39:26.6513156+00:00 mx.additem.begin {"Tag":"NoSuchObject_999.NoSuchAttr"} +2026-04-25T04:39:26.6523152+00:00 mx.additem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:39:28.7139621+00:00 mx.removeitem.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:39:28.7151927+00:00 mx.removeitem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:39:28.7159620+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:39:32.6271906+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:39:32.6322624+00:00 harness.stop {} diff --git a/captures/006-add-invalid/netsh-start.txt b/captures/006-add-invalid/netsh-start.txt new file mode 100644 index 0000000..7b84138 --- /dev/null +++ b/captures/006-add-invalid/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\006-add-invalid\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/006-add-invalid/netsh-start.txt.err b/captures/006-add-invalid/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/006-add-invalid/netsh-stop.txt b/captures/006-add-invalid/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/006-add-invalid/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/006-add-invalid/netsh-stop.txt.err b/captures/006-add-invalid/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/006-add-invalid/netsh.etl b/captures/006-add-invalid/netsh.etl new file mode 100644 index 0000000..b565bdd Binary files /dev/null and b/captures/006-add-invalid/netsh.etl differ diff --git a/captures/006-add-invalid/network.pcapng b/captures/006-add-invalid/network.pcapng new file mode 100644 index 0000000..58319bb Binary files /dev/null and b/captures/006-add-invalid/network.pcapng differ diff --git a/captures/006-add-invalid/stderr.txt b/captures/006-add-invalid/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/006-add-invalid/stdout.txt b/captures/006-add-invalid/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/007-subscribe-invalid/etl2pcapng.txt b/captures/007-subscribe-invalid/etl2pcapng.txt new file mode 100644 index 0000000..69afb74 --- /dev/null +++ b/captures/007-subscribe-invalid/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 1921 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\007-subscribe-invalid\network.pcapng diff --git a/captures/007-subscribe-invalid/exit.txt b/captures/007-subscribe-invalid/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/007-subscribe-invalid/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/007-subscribe-invalid/harness.log b/captures/007-subscribe-invalid/harness.log new file mode 100644 index 0000000..8883406 --- /dev/null +++ b/captures/007-subscribe-invalid/harness.log @@ -0,0 +1,15 @@ +2026-04-25T04:40:34.0733739+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-007-subscribe-invalid","Tags":["NoSuchObject_999.NoSuchAttr"],"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:40:41.1648515+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-007-subscribe-invalid"} +2026-04-25T04:40:41.5076531+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:40:41.5076531+00:00 mx.additem.begin {"Tag":"NoSuchObject_999.NoSuchAttr"} +2026-04-25T04:40:41.5096505+00:00 mx.additem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:40:41.5096505+00:00 mx.advise-supervisory.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:40:41.5115844+00:00 mx.advise-supervisory.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:40:41.8891934+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"null","Value":null},"Quality":0,"Timestamp":{"Type":"System.String","Value":"4/25/2026 12:40:41.872 AM"},"Status":[{"Success":0,"Category":"MxCategoryConfigurationError","Source":"MxSourceRequestingLmx","Detail":6}]} +2026-04-25T04:40:47.5373952+00:00 mx.unadvise.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:40:47.5384042+00:00 mx.unadvise.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:40:47.5384042+00:00 mx.removeitem.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:40:47.5384042+00:00 mx.removeitem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T04:40:47.5384042+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:40:51.2673773+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:40:51.2753792+00:00 harness.stop {} diff --git a/captures/007-subscribe-invalid/netsh-start.txt b/captures/007-subscribe-invalid/netsh-start.txt new file mode 100644 index 0000000..918c535 --- /dev/null +++ b/captures/007-subscribe-invalid/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\007-subscribe-invalid\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/007-subscribe-invalid/netsh-start.txt.err b/captures/007-subscribe-invalid/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/007-subscribe-invalid/netsh-stop.txt b/captures/007-subscribe-invalid/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/007-subscribe-invalid/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/007-subscribe-invalid/netsh-stop.txt.err b/captures/007-subscribe-invalid/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/007-subscribe-invalid/netsh.etl b/captures/007-subscribe-invalid/netsh.etl new file mode 100644 index 0000000..0e0008d Binary files /dev/null and b/captures/007-subscribe-invalid/netsh.etl differ diff --git a/captures/007-subscribe-invalid/network.pcapng b/captures/007-subscribe-invalid/network.pcapng new file mode 100644 index 0000000..ad576a0 Binary files /dev/null and b/captures/007-subscribe-invalid/network.pcapng differ diff --git a/captures/007-subscribe-invalid/stderr.txt b/captures/007-subscribe-invalid/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/007-subscribe-invalid/stdout.txt b/captures/007-subscribe-invalid/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/008-write-test-int-same-value/etl2pcapng.txt b/captures/008-write-test-int-same-value/etl2pcapng.txt new file mode 100644 index 0000000..f5dbc4a --- /dev/null +++ b/captures/008-write-test-int-same-value/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 1839 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\008-write-test-int-same-value\network.pcapng diff --git a/captures/008-write-test-int-same-value/exit.txt b/captures/008-write-test-int-same-value/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/008-write-test-int-same-value/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/008-write-test-int-same-value/harness.log b/captures/008-write-test-int-same-value/harness.log new file mode 100644 index 0000000..52d487d --- /dev/null +++ b/captures/008-write-test-int-same-value/harness.log @@ -0,0 +1,12 @@ +2026-04-25T04:43:18.0648945+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-008-write-test-int-same-value","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"99","UserId":0,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:43:25.0065585+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-008-write-test-int-same-value"} +2026-04-25T04:43:25.3635503+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:43:25.3635503+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T04:43:25.3655546+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:43:25.3705530+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"UserId":0} +2026-04-25T04:43:25.3935517+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.TestInt"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Int32 UserID)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 75"} +2026-04-25T04:43:33.4293962+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:43:33.4303969+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:43:33.4303969+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:43:37.2502885+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:43:37.2563322+00:00 harness.stop {} diff --git a/captures/008-write-test-int-same-value/netsh-start.txt b/captures/008-write-test-int-same-value/netsh-start.txt new file mode 100644 index 0000000..bb02927 --- /dev/null +++ b/captures/008-write-test-int-same-value/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\008-write-test-int-same-value\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/008-write-test-int-same-value/netsh-start.txt.err b/captures/008-write-test-int-same-value/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/008-write-test-int-same-value/netsh-stop.txt b/captures/008-write-test-int-same-value/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/008-write-test-int-same-value/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/008-write-test-int-same-value/netsh-stop.txt.err b/captures/008-write-test-int-same-value/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/008-write-test-int-same-value/netsh.etl b/captures/008-write-test-int-same-value/netsh.etl new file mode 100644 index 0000000..151d3df Binary files /dev/null and b/captures/008-write-test-int-same-value/netsh.etl differ diff --git a/captures/008-write-test-int-same-value/network.pcapng b/captures/008-write-test-int-same-value/network.pcapng new file mode 100644 index 0000000..dd63536 Binary files /dev/null and b/captures/008-write-test-int-same-value/network.pcapng differ diff --git a/captures/008-write-test-int-same-value/stderr.txt b/captures/008-write-test-int-same-value/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/008-write-test-int-same-value/stdout.txt b/captures/008-write-test-int-same-value/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/009-write-test-int-same-value-security-1/etl2pcapng.txt b/captures/009-write-test-int-same-value-security-1/etl2pcapng.txt new file mode 100644 index 0000000..82e95d4 --- /dev/null +++ b/captures/009-write-test-int-same-value-security-1/etl2pcapng.txt @@ -0,0 +1,2 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +Wrote 1051 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\009-write-test-int-same-value-security-1\network.pcapng diff --git a/captures/009-write-test-int-same-value-security-1/exit.txt b/captures/009-write-test-int-same-value-security-1/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/009-write-test-int-same-value-security-1/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/009-write-test-int-same-value-security-1/harness.log b/captures/009-write-test-int-same-value-security-1/harness.log new file mode 100644 index 0000000..90ab412 --- /dev/null +++ b/captures/009-write-test-int-same-value-security-1/harness.log @@ -0,0 +1,12 @@ +2026-04-25T04:45:07.0836567+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-009-write-test-int-same-value-security-1","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"99","UserId":1,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:45:14.0999234+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-009-write-test-int-same-value-security-1"} +2026-04-25T04:45:14.4595715+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:45:14.4595715+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T04:45:14.4615222+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:45:14.4665654+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"UserId":1} +2026-04-25T04:45:14.4855030+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.TestInt"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Int32 UserID)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 75"} +2026-04-25T04:45:22.5423477+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:45:22.5433480+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:45:22.5433480+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:45:26.4800939+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:45:26.4870625+00:00 harness.stop {} diff --git a/captures/009-write-test-int-same-value-security-1/netsh-start.txt b/captures/009-write-test-int-same-value-security-1/netsh-start.txt new file mode 100644 index 0000000..0ffb5bf --- /dev/null +++ b/captures/009-write-test-int-same-value-security-1/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\009-write-test-int-same-value-security-1\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/009-write-test-int-same-value-security-1/netsh-start.txt.err b/captures/009-write-test-int-same-value-security-1/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/009-write-test-int-same-value-security-1/netsh-stop.txt b/captures/009-write-test-int-same-value-security-1/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/009-write-test-int-same-value-security-1/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/009-write-test-int-same-value-security-1/netsh-stop.txt.err b/captures/009-write-test-int-same-value-security-1/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/009-write-test-int-same-value-security-1/netsh.etl b/captures/009-write-test-int-same-value-security-1/netsh.etl new file mode 100644 index 0000000..74d8e55 Binary files /dev/null and b/captures/009-write-test-int-same-value-security-1/netsh.etl differ diff --git a/captures/009-write-test-int-same-value-security-1/network.pcapng b/captures/009-write-test-int-same-value-security-1/network.pcapng new file mode 100644 index 0000000..c6c61b1 Binary files /dev/null and b/captures/009-write-test-int-same-value-security-1/network.pcapng differ diff --git a/captures/009-write-test-int-same-value-security-1/stderr.txt b/captures/009-write-test-int-same-value-security-1/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/009-write-test-int-same-value-security-1/stdout.txt b/captures/009-write-test-int-same-value-security-1/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/010-write-test-int-advised-same-value/etl2pcapng.txt b/captures/010-write-test-int-advised-same-value/etl2pcapng.txt new file mode 100644 index 0000000..d5aea56 --- /dev/null +++ b/captures/010-write-test-int-advised-same-value/etl2pcapng.txt @@ -0,0 +1,3 @@ +IF: medium=eth ID=0 IfIndex=6 VlanID=0 +IF: medium=eth ID=1 IfIndex=26 VlanID=0 +Wrote 2959 frames to C:\Users\dohertj2\Desktop\mxaccess\captures\010-write-test-int-advised-same-value\network.pcapng diff --git a/captures/010-write-test-int-advised-same-value/exit.txt b/captures/010-write-test-int-advised-same-value/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/010-write-test-int-advised-same-value/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/010-write-test-int-advised-same-value/harness.log b/captures/010-write-test-int-advised-same-value/harness.log new file mode 100644 index 0000000..e1c3f11 --- /dev/null +++ b/captures/010-write-test-int-advised-same-value/harness.log @@ -0,0 +1,18 @@ +2026-04-25T04:47:14.3221534+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-010-write-test-int-advised-same-value","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"99","UserId":1,"WriteDelayMilliseconds":1200,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:47:21.1732878+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-010-write-test-int-advised-same-value"} +2026-04-25T04:47:21.5230615+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:47:21.5240635+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T04:47:21.5250083+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:21.5260636+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:21.5280283+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:21.7817264+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T04:47:22.7593498+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"UserId":1} +2026-04-25T04:47:22.7613479+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:22.9690810+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T04:47:30.7911431+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:30.7921455+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:30.7921455+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:30.7921455+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:47:30.7921455+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:47:34.6752165+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:47:34.6812373+00:00 harness.stop {} diff --git a/captures/010-write-test-int-advised-same-value/netsh-start.txt b/captures/010-write-test-int-advised-same-value/netsh-start.txt new file mode 100644 index 0000000..a62f652 --- /dev/null +++ b/captures/010-write-test-int-advised-same-value/netsh-start.txt @@ -0,0 +1,10 @@ + +Trace configuration: +------------------------------------------------------------------- +Status: Running +Trace File: C:\Users\dohertj2\Desktop\mxaccess\captures\010-write-test-int-advised-same-value\netsh.etl +Append: Off +Circular: Off +Max Size: 64 MB +Report: Off + diff --git a/captures/010-write-test-int-advised-same-value/netsh-start.txt.err b/captures/010-write-test-int-advised-same-value/netsh-start.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/010-write-test-int-advised-same-value/netsh-stop.txt b/captures/010-write-test-int-advised-same-value/netsh-stop.txt new file mode 100644 index 0000000..ca699d9 --- /dev/null +++ b/captures/010-write-test-int-advised-same-value/netsh-stop.txt @@ -0,0 +1,2 @@ +Merging traces ... done +Generating data collection ... \ No newline at end of file diff --git a/captures/010-write-test-int-advised-same-value/netsh-stop.txt.err b/captures/010-write-test-int-advised-same-value/netsh-stop.txt.err new file mode 100644 index 0000000..e69de29 diff --git a/captures/010-write-test-int-advised-same-value/netsh.etl b/captures/010-write-test-int-advised-same-value/netsh.etl new file mode 100644 index 0000000..c7aa16f Binary files /dev/null and b/captures/010-write-test-int-advised-same-value/netsh.etl differ diff --git a/captures/010-write-test-int-advised-same-value/network.pcapng b/captures/010-write-test-int-advised-same-value/network.pcapng new file mode 100644 index 0000000..ae1a262 Binary files /dev/null and b/captures/010-write-test-int-advised-same-value/network.pcapng differ diff --git a/captures/010-write-test-int-advised-same-value/stderr.txt b/captures/010-write-test-int-advised-same-value/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/010-write-test-int-advised-same-value/stdout.txt b/captures/010-write-test-int-advised-same-value/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/exit.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/011-pktmon-subscribe-scalar-loopback-probe/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/harness.log b/captures/011-pktmon-subscribe-scalar-loopback-probe/harness.log new file mode 100644 index 0000000..219bf49 --- /dev/null +++ b/captures/011-pktmon-subscribe-scalar-loopback-probe/harness.log @@ -0,0 +1,15 @@ +2026-04-25T04:52:43.6089717+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-011-pktmon-subscribe-scalar-loopback-probe","Tags":["TestChildObject.TestInt"],"WriteType":"string","WriteValue":"","UserId":0,"WriteDelayMilliseconds":750,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:52:50.5231684+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-011-pktmon-subscribe-scalar-loopback-probe"} +2026-04-25T04:52:50.8988361+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:52:50.8998366+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T04:52:50.9008423+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:52:50.9018348+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:52:50.9027407+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:52:51.1436639+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T04:52:55.9571578+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:52:55.9582880+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:52:55.9593250+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:52:55.9593250+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T04:52:55.9593250+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:52:59.7295114+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:52:59.7355070+00:00 harness.stop {} diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/network-pktmon.pcapng b/captures/011-pktmon-subscribe-scalar-loopback-probe/network-pktmon.pcapng new file mode 100644 index 0000000..fa96c8a Binary files /dev/null and b/captures/011-pktmon-subscribe-scalar-loopback-probe/network-pktmon.pcapng differ diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/pcap-summary.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/pcap-summary.txt new file mode 100644 index 0000000..a336207 --- /dev/null +++ b/captures/011-pktmon-subscribe-scalar-loopback-probe/pcap-summary.txt @@ -0,0 +1,60 @@ +capture captures\011-pktmon-subscribe-scalar-loopback-probe\network-pktmon.pcapng +packets 23938 +ip_tcp_udp_packets 23371 +packets_with_payload 11951 + +top_ports +proto port packet_refs +TCP 443 10375 +TCP 54893 6794 +TCP 3389 6794 +TCP 50100 5422 +TCP 56605 5256 +TCP 55426 4749 +TCP 58018 1862 +TCP 58013 1830 +TCP 58019 1730 +UDP 1900 480 +UDP 443 180 +UDP 60560 180 +TCP 52147 110 +UDP 5645 96 +TCP 56659 96 +UDP 57788 72 +UDP 48123 72 +UDP 60592 72 +UDP 43712 72 +TCP 61921 38 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 10.100.0.199 54893 10.100.0.48 3389 5772 2964 168948 +TCP 160.79.104.10 443 10.100.0.48 56605 3828 2472 508644 +TCP 160.79.104.10 443 10.100.0.48 55426 3252 1980 144912 +TCP 10.100.0.48 55426 160.79.104.10 443 1497 377 6060672 +TCP 10.100.0.48 56605 160.79.104.10 443 1428 0 0 +TCP 10.100.0.199 58019 10.100.0.48 50100 1128 132 7572 +TCP 10.100.0.199 58013 10.100.0.48 50100 1116 132 7464 +TCP 10.100.0.199 58018 10.100.0.48 50100 1092 108 3036 +TCP 10.100.0.48 3389 10.100.0.199 54893 1022 798 65618 +TCP 10.100.0.48 50100 10.100.0.199 58018 770 770 56532 +TCP 10.100.0.48 50100 10.100.0.199 58013 714 700 50400 +TCP 10.100.0.48 50100 10.100.0.199 58019 602 602 43722 +UDP 172.64.155.209 443 10.100.0.48 60560 180 180 90492 +UDP 10.100.0.99 5645 239.255.255.250 1900 96 96 30732 +TCP 104.18.37.228 443 10.100.0.48 52147 96 48 6528 +TCP 34.149.66.137 443 10.100.0.48 56659 96 12 4188 +UDP 10.100.0.24 44455 10.100.0.255 32412 36 36 756 +UDP 10.100.0.24 54131 10.100.0.255 32414 36 36 756 +UDP 10.100.0.67 57788 255.255.255.255 1900 36 36 26952 +UDP 10.100.0.67 57788 239.255.255.250 1900 36 36 26952 +UDP 10.100.0.231 48123 239.255.255.250 1900 36 36 26916 +UDP 10.100.0.231 48123 255.255.255.255 1900 36 36 26916 +UDP 10.100.0.176 60592 239.255.255.250 1900 36 36 26916 +UDP 10.100.0.176 60592 255.255.255.255 1900 36 36 26916 +UDP 10.100.0.218 43712 239.255.255.250 1900 36 36 26916 +UDP 10.100.0.218 43712 255.255.255.255 1900 36 36 26916 +TCP 172.64.155.209 443 10.100.0.48 61921 24 12 336 +TCP 172.64.155.209 443 10.100.0.48 61850 24 24 2232 +TCP 172.64.155.209 443 10.100.0.48 59909 24 12 336 +TCP 10.100.0.48 61921 172.64.155.209 443 14 14 448 diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-etl2pcap.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-etl2pcap.txt new file mode 100644 index 0000000..4f7a98a --- /dev/null +++ b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-etl2pcap.txt @@ -0,0 +1,6 @@ +Processing... + +Packets total: 23938 +Packet drop count: 0 +Packets formatted: 23938 +Formatted file: C:\Users\dohertj2\Desktop\mxaccess\captures\011-pktmon-subscribe-scalar-loopback-probe\network-pktmon.pcapng diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-filter-remove.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-filter-remove.txt new file mode 100644 index 0000000..8b3b411 --- /dev/null +++ b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-filter-remove.txt @@ -0,0 +1 @@ +Removed all filters. diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-start.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-start.txt new file mode 100644 index 0000000..24f839b --- /dev/null +++ b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-start.txt @@ -0,0 +1,19 @@ + +Logger Parameters: + Logger name: PktMon + Logging mode: Circular + Log file: C:\Users\dohertj2\Desktop\mxaccess\captures\011-pktmon-subscribe-scalar-loopback-probe\pktmon.etl + Max file size: 128 MB + Memory used: 1152 MB + +Collected Data: + Packet counters, packet capture + +Capture Type: + All packets + +Monitored Components: + All + +Packet Filters: + None diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-stop.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-stop.txt new file mode 100644 index 0000000..b06fff1 --- /dev/null +++ b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon-stop.txt @@ -0,0 +1,3 @@ +Flushing logs... +Merging metadata... +Log file: C:\Users\dohertj2\Desktop\mxaccess\captures\011-pktmon-subscribe-scalar-loopback-probe\pktmon.etl (No events lost) diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon.etl b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon.etl new file mode 100644 index 0000000..ba884a3 Binary files /dev/null and b/captures/011-pktmon-subscribe-scalar-loopback-probe/pktmon.etl differ diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/stderr.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/011-pktmon-subscribe-scalar-loopback-probe/stdout.txt b/captures/011-pktmon-subscribe-scalar-loopback-probe/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/012-npcap-loopback-subscribe-scalar/dumpcap.stderr.txt b/captures/012-npcap-loopback-subscribe-scalar/dumpcap.stderr.txt new file mode 100644 index 0000000..49ab111 --- /dev/null +++ b/captures/012-npcap-loopback-subscribe-scalar/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\012-npcap-loopback-subscribe-scalar\loopback.pcapng diff --git a/captures/012-npcap-loopback-subscribe-scalar/dumpcap.stdout.txt b/captures/012-npcap-loopback-subscribe-scalar/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/012-npcap-loopback-subscribe-scalar/exit.txt b/captures/012-npcap-loopback-subscribe-scalar/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/012-npcap-loopback-subscribe-scalar/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/012-npcap-loopback-subscribe-scalar/harness.log b/captures/012-npcap-loopback-subscribe-scalar/harness.log new file mode 100644 index 0000000..61fb9e0 --- /dev/null +++ b/captures/012-npcap-loopback-subscribe-scalar/harness.log @@ -0,0 +1,15 @@ +2026-04-25T05:06:27.6470941+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-012-npcap-loopback-subscribe-scalar","Tags":["TestChildObject.TestInt"],"WriteType":"string","WriteValue":"","UserId":0,"WriteDelayMilliseconds":750,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:06:34.9851498+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-012-npcap-loopback-subscribe-scalar"} +2026-04-25T05:06:35.4198048+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:06:35.4202493+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:06:35.4216222+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:06:35.4223908+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:06:35.4241758+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:06:35.6675300+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:06:40.4727619+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:06:40.4727619+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:06:40.4727619+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:06:40.4737866+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:06:40.4737866+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:06:44.6576354+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:06:44.6686488+00:00 harness.stop {} diff --git a/captures/012-npcap-loopback-subscribe-scalar/loopback.pcapng b/captures/012-npcap-loopback-subscribe-scalar/loopback.pcapng new file mode 100644 index 0000000..fccb661 Binary files /dev/null and b/captures/012-npcap-loopback-subscribe-scalar/loopback.pcapng differ diff --git a/captures/012-npcap-loopback-subscribe-scalar/nmx-loopback-frames.tsv b/captures/012-npcap-loopback-subscribe-scalar/nmx-loopback-frames.tsv new file mode 100644 index 0000000..a9d6feb --- /dev/null +++ b/captures/012-npcap-loopback-subscribe-scalar/nmx-loopback-frames.tsv @@ -0,0 +1,807 @@ +566 2.058084300 ::1 59335 ::1 49704 0 +567 2.058178600 ::1 49704 ::1 59335 0 +568 2.058214300 ::1 59335 ::1 49704 0 +569 2.058395800 ::1 59335 ::1 49704 116 +570 2.058421700 ::1 49704 ::1 59335 0 +571 2.059103800 ::1 49704 ::1 59335 84 +572 2.059185200 ::1 59335 ::1 49704 0 +573 2.059252900 ::1 59335 ::1 49704 40 +574 2.059324500 ::1 49704 ::1 59335 0 +575 2.059463100 ::1 49704 ::1 59335 44 +576 2.059534600 ::1 59335 ::1 49704 0 +577 2.059690600 ::1 59335 ::1 49704 72 +578 2.059769800 ::1 49704 ::1 59335 0 +579 2.059828900 ::1 49704 ::1 59335 56 +580 2.059893100 ::1 59335 ::1 49704 0 +581 2.059957900 ::1 59335 ::1 49704 96 +582 2.060027400 ::1 49704 ::1 59335 0 +583 2.062218900 ::1 49704 ::1 59335 28 +584 2.062322100 ::1 59335 ::1 49704 0 +585 2.062388300 ::1 59335 ::1 49704 60 +586 2.062460300 ::1 49704 ::1 59335 0 +587 2.062576600 ::1 49704 ::1 59335 92 +588 2.062673500 ::1 59335 ::1 49704 0 +589 2.062868800 ::1 59335 ::1 49704 120 +590 2.062960600 ::1 49704 ::1 59335 0 +591 2.063052600 ::1 49704 ::1 59335 32 +592 2.063112200 ::1 59335 ::1 49704 0 +593 2.063277600 ::1 59335 ::1 49704 124 +594 2.063345400 ::1 49704 ::1 59335 0 +595 2.063461500 ::1 49704 ::1 59335 32 +596 2.063539500 ::1 59335 ::1 49704 0 +597 2.063622600 ::1 59335 ::1 49704 118 +598 2.063733600 ::1 49704 ::1 59335 0 +599 2.063898300 ::1 49704 ::1 59335 32 +600 2.063967400 ::1 59335 ::1 49704 0 +601 2.064052700 ::1 59335 ::1 49704 120 +602 2.064122000 ::1 49704 ::1 59335 0 +603 2.064235200 ::1 49704 ::1 59335 32 +604 2.064300400 ::1 59335 ::1 49704 0 +605 2.064370400 ::1 59335 ::1 49704 130 +606 2.064436900 ::1 49704 ::1 59335 0 +607 2.064635200 ::1 49704 ::1 59335 32 +608 2.064699100 ::1 59335 ::1 49704 0 +609 2.064817700 ::1 59335 ::1 49704 130 +610 2.064885900 ::1 49704 ::1 59335 0 +611 2.064975600 ::1 49704 ::1 59335 32 +612 2.065041000 ::1 59335 ::1 49704 0 +613 2.065184500 ::1 59335 ::1 49704 142 +614 2.065283500 ::1 49704 ::1 59335 0 +615 2.065356400 ::1 49704 ::1 59335 32 +616 2.065420600 ::1 59335 ::1 49704 0 +617 2.065488700 ::1 59335 ::1 49704 116 +618 2.065557800 ::1 49704 ::1 59335 0 +619 2.065645500 ::1 49704 ::1 59335 32 +620 2.065748600 ::1 59335 ::1 49704 0 +621 2.065845800 ::1 59335 ::1 49704 130 +622 2.065939900 ::1 49704 ::1 59335 0 +623 2.066017300 ::1 49704 ::1 59335 32 +624 2.066082200 ::1 59335 ::1 49704 0 +625 2.066149500 ::1 59335 ::1 49704 128 +626 2.066218400 ::1 49704 ::1 59335 0 +627 2.066302200 ::1 49704 ::1 59335 32 +628 2.066368200 ::1 59335 ::1 49704 0 +629 2.066487400 ::1 59335 ::1 49704 126 +630 2.066605900 ::1 49704 ::1 59335 0 +631 2.066705600 ::1 49704 ::1 59335 32 +632 2.066770500 ::1 59335 ::1 49704 0 +633 2.067213500 ::1 59335 ::1 49704 132 +634 2.067286800 ::1 49704 ::1 59335 0 +635 2.067371500 ::1 49704 ::1 59335 32 +636 2.067436100 ::1 59335 ::1 49704 0 +637 2.067555500 ::1 59335 ::1 49704 152 +638 2.067642500 ::1 49704 ::1 59335 0 +639 2.067958100 ::1 49704 ::1 59335 32 +640 2.068064200 ::1 59335 ::1 49704 0 +686 2.173429200 ::1 59335 ::1 49704 40 +687 2.173509300 ::1 49704 ::1 59335 0 +688 2.173653300 ::1 49704 ::1 59335 44 +689 2.173745400 ::1 59335 ::1 49704 0 +690 2.174094300 ::1 59335 ::1 49704 108 +691 2.174202600 ::1 49704 ::1 59335 0 +692 2.175762600 ::1 49704 ::1 59335 28 +693 2.175850900 ::1 59335 ::1 49704 0 +694 2.175925300 ::1 59335 ::1 49704 60 +695 2.175994800 ::1 49704 ::1 59335 0 +696 2.176104600 ::1 49704 ::1 59335 92 +697 2.176204300 ::1 59335 ::1 49704 0 +698 2.176423900 ::1 59335 ::1 49704 132 +699 2.176513000 ::1 49704 ::1 59335 0 +700 2.176599400 ::1 49704 ::1 59335 32 +701 2.176698200 ::1 59335 ::1 49704 0 +702 2.176792900 ::1 59335 ::1 49704 136 +703 2.176859000 ::1 49704 ::1 59335 0 +704 2.176948800 ::1 49704 ::1 59335 32 +705 2.177014800 ::1 59335 ::1 49704 0 +706 2.177565500 ::1 59335 ::1 49704 130 +707 2.177664100 ::1 49704 ::1 59335 0 +708 2.177905900 ::1 49704 ::1 59335 32 +709 2.177972500 ::1 59335 ::1 49704 0 +710 2.178061200 ::1 59335 ::1 49704 132 +711 2.178159400 ::1 49704 ::1 59335 0 +712 2.178280000 ::1 49704 ::1 59335 32 +713 2.178345600 ::1 59335 ::1 49704 0 +714 2.178432300 ::1 59335 ::1 49704 142 +715 2.178502400 ::1 49704 ::1 59335 0 +716 2.178587100 ::1 49704 ::1 59335 32 +717 2.178651900 ::1 59335 ::1 49704 0 +718 2.178738300 ::1 59335 ::1 49704 142 +719 2.178806100 ::1 49704 ::1 59335 0 +720 2.178889700 ::1 49704 ::1 59335 32 +721 2.178954800 ::1 59335 ::1 49704 0 +722 2.179042100 ::1 59335 ::1 49704 154 +723 2.179109400 ::1 49704 ::1 59335 0 +724 2.179193300 ::1 49704 ::1 59335 32 +725 2.179257400 ::1 59335 ::1 49704 0 +726 2.179345100 ::1 59335 ::1 49704 128 +727 2.179412500 ::1 49704 ::1 59335 0 +728 2.179494100 ::1 49704 ::1 59335 32 +729 2.179559800 ::1 59335 ::1 49704 0 +730 2.179645600 ::1 59335 ::1 49704 142 +731 2.179712500 ::1 49704 ::1 59335 0 +732 2.179808600 ::1 49704 ::1 59335 32 +733 2.179996900 ::1 59335 ::1 49704 140 +734 2.180031200 ::1 49704 ::1 59335 0 +735 2.180044800 ::1 59335 ::1 49704 0 +736 2.180057600 ::1 49704 ::1 59335 0 +737 2.180111100 ::1 49704 ::1 59335 32 +738 2.180206100 ::1 59335 ::1 49704 0 +739 2.180358300 ::1 59335 ::1 49704 138 +740 2.180413800 ::1 49704 ::1 59335 0 +741 2.180534300 ::1 49704 ::1 59335 32 +742 2.180629800 ::1 59335 ::1 49704 0 +759 2.197631500 ::1 59335 ::1 49704 40 +760 2.197716200 ::1 49704 ::1 59335 0 +761 2.197885200 ::1 49704 ::1 59335 44 +762 2.197989500 ::1 59335 ::1 49704 0 +763 2.198077700 ::1 59335 ::1 49704 104 +764 2.198179400 ::1 49704 ::1 59335 0 +765 2.199905500 ::1 49704 ::1 59335 28 +766 2.200010400 ::1 59335 ::1 49704 0 +767 2.200069300 ::1 59335 ::1 49704 60 +768 2.200187400 ::1 49704 ::1 59335 0 +769 2.200324900 ::1 49704 ::1 59335 92 +770 2.200415100 ::1 59335 ::1 49704 0 +771 2.200569000 ::1 59335 ::1 49704 128 +772 2.200641100 ::1 49704 ::1 59335 0 +773 2.200860400 ::1 49704 ::1 59335 32 +774 2.200929500 ::1 59335 ::1 49704 0 +775 2.201016700 ::1 59335 ::1 49704 132 +776 2.201082900 ::1 49704 ::1 59335 0 +777 2.201195000 ::1 49704 ::1 59335 32 +778 2.201298100 ::1 59335 ::1 49704 0 +779 2.201342600 ::1 59335 ::1 49704 126 +780 2.201407500 ::1 49704 ::1 59335 0 +781 2.201508500 ::1 49704 ::1 59335 32 +782 2.201573800 ::1 59335 ::1 49704 0 +783 2.201655500 ::1 59335 ::1 49704 128 +784 2.201720600 ::1 49704 ::1 59335 0 +785 2.201819400 ::1 49704 ::1 59335 32 +786 2.201883600 ::1 59335 ::1 49704 0 +787 2.202008500 ::1 59335 ::1 49704 138 +788 2.202081000 ::1 49704 ::1 59335 0 +789 2.202199600 ::1 49704 ::1 59335 32 +790 2.202262500 ::1 59335 ::1 49704 0 +791 2.202349800 ::1 59335 ::1 49704 138 +792 2.202415000 ::1 49704 ::1 59335 0 +793 2.202512500 ::1 49704 ::1 59335 32 +794 2.202577200 ::1 59335 ::1 49704 0 +795 2.202660000 ::1 59335 ::1 49704 150 +796 2.202725000 ::1 49704 ::1 59335 0 +797 2.202822600 ::1 49704 ::1 59335 32 +798 2.202885500 ::1 59335 ::1 49704 0 +799 2.202968600 ::1 59335 ::1 49704 124 +800 2.203033200 ::1 49704 ::1 59335 0 +801 2.203154100 ::1 49704 ::1 59335 32 +802 2.203206900 ::1 59335 ::1 49704 0 +803 2.203269900 ::1 59335 ::1 49704 138 +804 2.203368100 ::1 49704 ::1 59335 0 +805 2.203454500 ::1 49704 ::1 59335 32 +806 2.203521200 ::1 59335 ::1 49704 0 +807 2.203600600 ::1 59335 ::1 49704 136 +808 2.203665700 ::1 49704 ::1 59335 0 +809 2.203762200 ::1 49704 ::1 59335 32 +810 2.203825300 ::1 59335 ::1 49704 0 +811 2.203908500 ::1 59335 ::1 49704 134 +812 2.203973500 ::1 49704 ::1 59335 0 +813 2.204067600 ::1 49704 ::1 59335 32 +814 2.204158700 ::1 59335 ::1 49704 0 +815 2.204363600 ::1 59335 ::1 49704 140 +816 2.204429400 ::1 49704 ::1 59335 0 +817 2.204524000 ::1 49704 ::1 59335 32 +818 2.204590200 ::1 59335 ::1 49704 0 +819 2.204685400 ::1 59335 ::1 49704 146 +820 2.204753000 ::1 49704 ::1 59335 0 +821 2.204847000 ::1 49704 ::1 59335 32 +822 2.204909100 ::1 59335 ::1 49704 0 +845 2.318500500 ::1 59335 ::1 49704 40 +846 2.318632500 ::1 49704 ::1 59335 0 +847 2.318777300 ::1 49704 ::1 59335 44 +848 2.318868500 ::1 59335 ::1 49704 0 +849 2.318958700 ::1 59335 ::1 49704 112 +850 2.319023000 ::1 49704 ::1 59335 0 +851 2.321360700 ::1 49704 ::1 59335 28 +852 2.321483500 ::1 59335 ::1 49704 0 +853 2.321535800 ::1 59335 ::1 49704 60 +854 2.321605800 ::1 49704 ::1 59335 0 +855 2.321763800 ::1 49704 ::1 59335 92 +856 2.321878900 ::1 59335 ::1 49704 0 +857 2.322021100 ::1 59335 ::1 49704 136 +858 2.322096800 ::1 49704 ::1 59335 0 +859 2.322404800 ::1 49704 ::1 59335 32 +860 2.322525600 ::1 59335 ::1 49704 0 +861 2.322572800 ::1 59335 ::1 49704 140 +862 2.322637400 ::1 49704 ::1 59335 0 +863 2.322818300 ::1 49704 ::1 59335 32 +864 2.322940200 ::1 59335 ::1 49704 0 +865 2.322991800 ::1 59335 ::1 49704 134 +866 2.323053800 ::1 49704 ::1 59335 0 +867 2.323289600 ::1 49704 ::1 59335 32 +868 2.323383500 ::1 59335 ::1 49704 0 +869 2.323474600 ::1 59335 ::1 49704 136 +870 2.323568900 ::1 49704 ::1 59335 0 +871 2.323878700 ::1 49704 ::1 59335 32 +872 2.323987000 ::1 59335 ::1 49704 0 +873 2.324259400 ::1 59335 ::1 49704 146 +874 2.324347400 ::1 49704 ::1 59335 0 +875 2.324486800 ::1 49704 ::1 59335 32 +876 2.324648700 ::1 59335 ::1 49704 0 +877 2.324679000 ::1 59335 ::1 49704 146 +878 2.324821100 ::1 49704 ::1 59335 0 +879 2.325152900 ::1 49704 ::1 59335 32 +880 2.325277900 ::1 59335 ::1 49704 0 +881 2.325353400 ::1 59335 ::1 49704 158 +882 2.325434400 ::1 49704 ::1 59335 0 +883 2.325616100 ::1 49704 ::1 59335 32 +884 2.325752600 ::1 59335 ::1 49704 0 +885 2.325948000 ::1 59335 ::1 49704 132 +886 2.326029100 ::1 49704 ::1 59335 0 +887 2.326284800 ::1 49704 ::1 59335 32 +888 2.326394100 ::1 59335 ::1 49704 0 +889 2.326452300 ::1 59335 ::1 49704 146 +890 2.326516600 ::1 49704 ::1 59335 0 +891 2.326692200 ::1 49704 ::1 59335 32 +892 2.326797500 ::1 59335 ::1 49704 0 +893 2.326870700 ::1 59335 ::1 49704 144 +894 2.326942700 ::1 49704 ::1 59335 0 +895 2.327069700 ::1 49704 ::1 59335 32 +896 2.327218500 ::1 59335 ::1 49704 0 +897 2.327256600 ::1 59335 ::1 49704 142 +898 2.327309900 ::1 49704 ::1 59335 0 +899 2.327481800 ::1 49704 ::1 59335 32 +900 2.327599300 ::1 59335 ::1 49704 0 +901 2.327704400 ::1 59335 ::1 49704 148 +902 2.327780300 ::1 49704 ::1 59335 0 +903 2.327980600 ::1 49704 ::1 59335 32 +904 2.328098400 ::1 59335 ::1 49704 0 +905 2.328197200 ::1 59335 ::1 49704 154 +906 2.328281400 ::1 49704 ::1 59335 0 +907 2.328433300 ::1 49704 ::1 59335 32 +908 2.328511300 ::1 59335 ::1 49704 0 +941 2.464113300 ::1 59335 ::1 49704 40 +942 2.464241800 ::1 49704 ::1 59335 0 +943 2.464384300 ::1 49704 ::1 59335 44 +944 2.464516100 ::1 59335 ::1 49704 0 +945 2.464641300 ::1 59335 ::1 49704 92 +946 2.464720300 ::1 49704 ::1 59335 0 +953 2.466882300 ::1 49704 ::1 59335 28 +954 2.467018400 ::1 59335 ::1 49704 0 +955 2.467098900 ::1 59335 ::1 49704 60 +957 2.467216400 ::1 49704 ::1 59335 0 +959 2.467283200 ::1 49704 ::1 59335 92 +961 2.467359500 ::1 59335 ::1 49704 0 +963 2.467544700 ::1 59335 ::1 49704 116 +964 2.467623700 ::1 49704 ::1 59335 0 +966 2.467836100 ::1 49704 ::1 59335 32 +968 2.467931200 ::1 59335 ::1 49704 0 +969 2.468058600 ::1 59335 ::1 49704 120 +970 2.468138500 ::1 49704 ::1 59335 0 +972 2.468305000 ::1 49704 ::1 59335 32 +975 2.468381900 ::1 59335 ::1 49704 0 +977 2.468472900 ::1 59335 ::1 49704 114 +978 2.468581200 ::1 49704 ::1 59335 0 +980 2.468744300 ::1 49704 ::1 59335 32 +982 2.468829000 ::1 59335 ::1 49704 0 +983 2.468916700 ::1 59335 ::1 49704 116 +984 2.469014300 ::1 49704 ::1 59335 0 +985 2.469200700 ::1 49704 ::1 59335 32 +986 2.469275400 ::1 59335 ::1 49704 0 +987 2.469364500 ::1 59335 ::1 49704 126 +988 2.469435400 ::1 49704 ::1 59335 0 +989 2.469593800 ::1 49704 ::1 59335 32 +990 2.469669700 ::1 59335 ::1 49704 0 +991 2.469756100 ::1 59335 ::1 49704 126 +992 2.469825700 ::1 49704 ::1 59335 0 +993 2.469972400 ::1 49704 ::1 59335 32 +994 2.470067400 ::1 59335 ::1 49704 0 +995 2.470209600 ::1 59335 ::1 49704 138 +996 2.470306900 ::1 49704 ::1 59335 0 +997 2.470425200 ::1 49704 ::1 59335 32 +998 2.470497400 ::1 59335 ::1 49704 0 +999 2.470587000 ::1 59335 ::1 49704 112 +1000 2.470655100 ::1 49704 ::1 59335 0 +1001 2.470756800 ::1 49704 ::1 59335 32 +1002 2.470821100 ::1 59335 ::1 49704 0 +1003 2.470912700 ::1 59335 ::1 49704 126 +1004 2.470981300 ::1 49704 ::1 59335 0 +1005 2.471112800 ::1 49704 ::1 59335 32 +1006 2.471226300 ::1 59335 ::1 49704 0 +1007 2.471279900 ::1 59335 ::1 49704 124 +1008 2.471351800 ::1 49704 ::1 59335 0 +1009 2.471495800 ::1 49704 ::1 59335 32 +1010 2.471568500 ::1 59335 ::1 49704 0 +1011 2.471690200 ::1 59335 ::1 49704 122 +1012 2.471763400 ::1 49704 ::1 59335 0 +1013 2.471911100 ::1 49704 ::1 59335 32 +1014 2.472046800 ::1 59335 ::1 49704 0 +1015 2.472204900 ::1 59335 ::1 49704 128 +1016 2.472275600 ::1 49704 ::1 59335 0 +1017 2.472379500 ::1 49704 ::1 59335 32 +1018 2.472446600 ::1 59335 ::1 49704 0 +1019 2.472550000 ::1 59335 ::1 49704 134 +1020 2.472621800 ::1 49704 ::1 59335 0 +1021 2.472753600 ::1 49704 ::1 59335 32 +1022 2.472821400 ::1 59335 ::1 49704 0 +1023 2.472922100 ::1 59335 ::1 49704 130 +1024 2.473017400 ::1 49704 ::1 59335 0 +1025 2.473247800 ::1 49704 ::1 59335 32 +1026 2.473361100 ::1 59335 ::1 49704 0 +1028 2.473474500 ::1 59335 ::1 49704 128 +1031 2.473549700 ::1 49704 ::1 59335 0 +1035 2.473716600 ::1 49704 ::1 59335 32 +1036 2.473786800 ::1 59335 ::1 49704 0 +2333 9.341674200 ::1 59335 ::1 49704 40 +2334 9.341800300 ::1 49704 ::1 59335 0 +2335 9.341937300 ::1 49704 ::1 59335 44 +2336 9.342066600 ::1 59335 ::1 49704 0 +2337 9.342109500 ::1 59335 ::1 49704 100 +2338 9.342184700 ::1 49704 ::1 59335 0 +2339 9.344202100 ::1 49704 ::1 59335 28 +2340 9.344411800 ::1 59335 ::1 49704 0 +2341 9.344483100 ::1 59335 ::1 49704 60 +2342 9.344567900 ::1 49704 ::1 59335 0 +2343 9.344793600 ::1 49704 ::1 59335 92 +2344 9.344907700 ::1 59335 ::1 49704 0 +2345 9.345041100 ::1 59335 ::1 49704 124 +2346 9.345115100 ::1 49704 ::1 59335 0 +2347 9.345368000 ::1 49704 ::1 59335 32 +2348 9.345478400 ::1 59335 ::1 49704 0 +2349 9.345532400 ::1 59335 ::1 49704 128 +2350 9.345589600 ::1 49704 ::1 59335 0 +2351 9.345834900 ::1 49704 ::1 59335 32 +2352 9.345953200 ::1 59335 ::1 49704 0 +2353 9.346045300 ::1 59335 ::1 49704 122 +2354 9.346116400 ::1 49704 ::1 59335 0 +2355 9.346318300 ::1 49704 ::1 59335 32 +2356 9.346421600 ::1 59335 ::1 49704 0 +2357 9.346469600 ::1 59335 ::1 49704 124 +2358 9.346541800 ::1 49704 ::1 59335 0 +2359 9.346771300 ::1 49704 ::1 59335 32 +2360 9.346882800 ::1 59335 ::1 49704 0 +2361 9.346937600 ::1 59335 ::1 49704 134 +2362 9.346994300 ::1 49704 ::1 59335 0 +2363 9.347179900 ::1 49704 ::1 59335 32 +2364 9.347293900 ::1 59335 ::1 49704 0 +2365 9.347558400 ::1 59335 ::1 49704 134 +2366 9.347627500 ::1 49704 ::1 59335 0 +2367 9.347864300 ::1 49704 ::1 59335 32 +2368 9.347960100 ::1 59335 ::1 49704 0 +2369 9.348025900 ::1 59335 ::1 49704 146 +2370 9.348092700 ::1 49704 ::1 59335 0 +2371 9.348285900 ::1 49704 ::1 59335 32 +2372 9.348393800 ::1 59335 ::1 49704 0 +2373 9.348437300 ::1 59335 ::1 49704 120 +2374 9.348513900 ::1 49704 ::1 59335 0 +2375 9.348732100 ::1 49704 ::1 59335 32 +2376 9.348852800 ::1 59335 ::1 49704 0 +2377 9.348941300 ::1 59335 ::1 49704 134 +2378 9.349008000 ::1 49704 ::1 59335 0 +2379 9.349205000 ::1 49704 ::1 59335 32 +2380 9.349311300 ::1 59335 ::1 49704 0 +2381 9.349359300 ::1 59335 ::1 49704 132 +2382 9.349415000 ::1 49704 ::1 59335 0 +2383 9.349598100 ::1 49704 ::1 59335 32 +2384 9.349780200 ::1 59335 ::1 49704 130 +2385 9.349900700 ::1 49704 ::1 59335 0 +2386 9.350029200 ::1 49704 ::1 59335 32 +2387 9.350139400 ::1 59335 ::1 49704 0 +2388 9.350289500 ::1 59335 ::1 49704 144 +2390 9.350372600 ::1 49704 ::1 59335 0 +2392 9.350546100 ::1 49704 ::1 59335 32 +2393 9.350705200 ::1 59335 ::1 49704 0 +2394 9.350794700 ::1 59335 ::1 49704 148 +2395 9.350867000 ::1 49704 ::1 59335 0 +2396 9.351051500 ::1 49704 ::1 59335 32 +2397 9.351150200 ::1 59335 ::1 49704 0 +2398 9.351235000 ::1 59335 ::1 49704 146 +2399 9.351309300 ::1 49704 ::1 59335 0 +2400 9.351497400 ::1 49704 ::1 59335 32 +2401 9.351610600 ::1 59335 ::1 49704 0 +2402 9.351792200 ::1 59335 ::1 49704 158 +2403 9.351873600 ::1 49704 ::1 59335 0 +2404 9.352056000 ::1 49704 ::1 59335 32 +2405 9.352158400 ::1 59335 ::1 49704 0 +2423 9.441245600 ::1 59335 ::1 49704 40 +2424 9.441324500 ::1 49704 ::1 59335 0 +2425 9.441465300 ::1 49704 ::1 59335 44 +2426 9.441561700 ::1 59335 ::1 49704 0 +2427 9.441654000 ::1 59335 ::1 49704 84 +2428 9.441783500 ::1 49704 ::1 59335 0 +2429 9.443886500 ::1 49704 ::1 59335 28 +2430 9.443971200 ::1 59335 ::1 49704 0 +2431 9.444108500 ::1 59335 ::1 49704 60 +2432 9.444228600 ::1 49704 ::1 59335 0 +2433 9.444338400 ::1 49704 ::1 59335 92 +2434 9.444416900 ::1 59335 ::1 49704 0 +2435 9.444713500 ::1 59335 ::1 49704 108 +2436 9.444817700 ::1 49704 ::1 59335 0 +2437 9.444927300 ::1 49704 ::1 59335 32 +2438 9.444998700 ::1 59335 ::1 49704 0 +2439 9.445138800 ::1 59335 ::1 49704 112 +2440 9.445251000 ::1 49704 ::1 59335 0 +2441 9.445332600 ::1 49704 ::1 59335 32 +2442 9.445400800 ::1 59335 ::1 49704 0 +2443 9.445536800 ::1 59335 ::1 49704 106 +2444 9.445676000 ::1 49704 ::1 59335 0 +2445 9.445798100 ::1 49704 ::1 59335 32 +2446 9.445872600 ::1 59335 ::1 49704 0 +2447 9.446018300 ::1 59335 ::1 49704 108 +2448 9.446126000 ::1 49704 ::1 59335 0 +2449 9.446209800 ::1 49704 ::1 59335 32 +2450 9.446278300 ::1 59335 ::1 49704 0 +2451 9.446428500 ::1 59335 ::1 49704 118 +2452 9.446531300 ::1 49704 ::1 59335 0 +2453 9.446613500 ::1 49704 ::1 59335 32 +2454 9.446705500 ::1 59335 ::1 49704 0 +2455 9.446915700 ::1 59335 ::1 49704 118 +2456 9.447011200 ::1 49704 ::1 59335 0 +2457 9.447096700 ::1 49704 ::1 59335 32 +2458 9.447191500 ::1 59335 ::1 49704 0 +2459 9.447328200 ::1 59335 ::1 49704 130 +2460 9.447419100 ::1 49704 ::1 59335 0 +2461 9.447501400 ::1 49704 ::1 59335 32 +2462 9.447569100 ::1 59335 ::1 49704 0 +2463 9.447756400 ::1 59335 ::1 49704 104 +2464 9.447851200 ::1 49704 ::1 59335 0 +2465 9.447898600 ::1 49704 ::1 59335 32 +2466 9.447956900 ::1 59335 ::1 49704 0 +2467 9.448090700 ::1 59335 ::1 49704 118 +2468 9.448183100 ::1 49704 ::1 59335 0 +2469 9.448312500 ::1 49704 ::1 59335 32 +2470 9.448388300 ::1 59335 ::1 49704 0 +2471 9.448544900 ::1 59335 ::1 49704 116 +2472 9.448647600 ::1 49704 ::1 59335 0 +2473 9.448762100 ::1 49704 ::1 59335 32 +2474 9.448851900 ::1 59335 ::1 49704 0 +2475 9.448962200 ::1 59335 ::1 49704 114 +2476 9.449049400 ::1 49704 ::1 59335 0 +2477 9.449138400 ::1 49704 ::1 59335 32 +2478 9.449205700 ::1 59335 ::1 49704 0 +2479 9.449832500 ::1 59335 ::1 49704 128 +2480 9.449918400 ::1 49704 ::1 59335 0 +2481 9.450050100 ::1 49704 ::1 59335 32 +2482 9.450122100 ::1 59335 ::1 49704 0 +2483 9.450287000 ::1 59335 ::1 49704 120 +2484 9.450369200 ::1 49704 ::1 59335 0 +2485 9.450453300 ::1 49704 ::1 59335 32 +2486 9.450519400 ::1 59335 ::1 49704 0 +2487 9.450669600 ::1 59335 ::1 49704 120 +2488 9.450769700 ::1 49704 ::1 59335 0 +2489 9.450981800 ::1 49704 ::1 59335 32 +2490 9.451074800 ::1 59335 ::1 49704 0 +2491 9.451215800 ::1 59335 ::1 49704 122 +2492 9.451299000 ::1 49704 ::1 59335 0 +2493 9.451498800 ::1 49704 ::1 59335 32 +2494 9.451573000 ::1 59335 ::1 49704 0 +2495 9.451769600 ::1 59335 ::1 49704 134 +2496 9.451849500 ::1 49704 ::1 59335 0 +2497 9.451948700 ::1 49704 ::1 59335 32 +2498 9.452014100 ::1 59335 ::1 49704 0 +2499 9.452203400 ::1 59335 ::1 49704 132 +2500 9.452285200 ::1 49704 ::1 59335 0 +2501 9.452367300 ::1 49704 ::1 59335 32 +2502 9.452429400 ::1 59335 ::1 49704 0 +2503 9.452581700 ::1 59335 ::1 49704 130 +2504 9.452664100 ::1 49704 ::1 59335 0 +2505 9.452796500 ::1 49704 ::1 59335 32 +2506 9.452928400 ::1 59335 ::1 49704 0 +2507 9.453023000 ::1 59335 ::1 49704 138 +2508 9.453104200 ::1 49704 ::1 59335 0 +2509 9.453228400 ::1 49704 ::1 59335 32 +2510 9.453313500 ::1 59335 ::1 49704 0 +2511 9.453510600 ::1 59335 ::1 49704 144 +2512 9.453666100 ::1 49704 ::1 59335 0 +2513 9.453840700 ::1 49704 ::1 59335 32 +2514 9.453917300 ::1 59335 ::1 49704 0 +2515 9.454100900 ::1 59335 ::1 49704 144 +2516 9.454184800 ::1 49704 ::1 59335 0 +2517 9.454274500 ::1 49704 ::1 59335 32 +2518 9.454340500 ::1 59335 ::1 49704 0 +2519 9.454490300 ::1 59335 ::1 49704 116 +2520 9.454571100 ::1 49704 ::1 59335 0 +2521 9.454655000 ::1 49704 ::1 59335 32 +2522 9.454749400 ::1 59335 ::1 49704 0 +2523 9.454933700 ::1 59335 ::1 49704 130 +2524 9.455013600 ::1 49704 ::1 59335 0 +2525 9.455094300 ::1 49704 ::1 59335 32 +2526 9.455155400 ::1 59335 ::1 49704 0 +2527 9.455528900 ::1 59335 ::1 49704 138 +2528 9.455619500 ::1 49704 ::1 59335 0 +2529 9.455719600 ::1 49704 ::1 59335 32 +2530 9.455767900 ::1 59335 ::1 49704 0 +2531 9.455886100 ::1 59335 ::1 49704 130 +2532 9.455970400 ::1 49704 ::1 59335 0 +2533 9.456072500 ::1 49704 ::1 59335 32 +2534 9.456134100 ::1 59335 ::1 49704 0 +2535 9.456290700 ::1 59335 ::1 49704 122 +2536 9.456375400 ::1 49704 ::1 59335 0 +2537 9.456468800 ::1 49704 ::1 59335 32 +2538 9.456531800 ::1 59335 ::1 49704 0 +2539 9.456716800 ::1 59335 ::1 49704 122 +2540 9.456780000 ::1 49704 ::1 59335 0 +2541 9.456951800 ::1 49704 ::1 59335 32 +2542 9.457013600 ::1 59335 ::1 49704 0 +2543 9.457175600 ::1 59335 ::1 49704 134 +2544 9.457259000 ::1 49704 ::1 59335 0 +2545 9.457335600 ::1 49704 ::1 59335 32 +2546 9.457394800 ::1 59335 ::1 49704 0 +2547 9.457537200 ::1 59335 ::1 49704 128 +2548 9.457612700 ::1 49704 ::1 59335 0 +2549 9.457721200 ::1 49704 ::1 59335 32 +2550 9.457770400 ::1 59335 ::1 49704 0 +2551 9.457891700 ::1 59335 ::1 49704 124 +2552 9.457962600 ::1 49704 ::1 59335 0 +2553 9.458075200 ::1 49704 ::1 59335 32 +2554 9.458164600 ::1 59335 ::1 49704 0 +2604 9.496902700 ::1 59335 ::1 49704 516 +2605 9.496993700 ::1 49704 ::1 59335 0 +2606 9.497206400 ::1 49704 ::1 59335 28 +2607 9.497302300 ::1 59335 ::1 49704 0 +2612 9.536741200 ::1 59335 ::1 49704 40 +2613 9.536817500 ::1 49704 ::1 59335 0 +2614 9.537019800 ::1 49704 ::1 59335 44 +2615 9.537108000 ::1 59335 ::1 49704 0 +2616 9.537238000 ::1 59335 ::1 49704 112 +2617 9.537324900 ::1 49704 ::1 59335 0 +2626 9.539504100 ::1 49704 ::1 59335 28 +2627 9.539665000 ::1 59335 ::1 49704 0 +2628 9.539914100 ::1 59335 ::1 49704 60 +2629 9.540050400 ::1 49704 ::1 59335 0 +2630 9.540177800 ::1 49704 ::1 59335 92 +2631 9.540281900 ::1 59335 ::1 49704 0 +2632 9.540518800 ::1 59335 ::1 49704 136 +2633 9.540666400 ::1 49704 ::1 59335 0 +2634 9.540870900 ::1 49704 ::1 59335 32 +2635 9.540964400 ::1 59335 ::1 49704 0 +2636 9.541117200 ::1 59335 ::1 49704 140 +2637 9.541208600 ::1 49704 ::1 59335 0 +2638 9.541364300 ::1 49704 ::1 59335 32 +2639 9.541456400 ::1 59335 ::1 49704 0 +2640 9.541537600 ::1 59335 ::1 49704 134 +2641 9.541604200 ::1 49704 ::1 59335 0 +2642 9.541825200 ::1 49704 ::1 59335 32 +2643 9.541916900 ::1 59335 ::1 49704 0 +2644 9.542013700 ::1 59335 ::1 49704 136 +2645 9.542073400 ::1 49704 ::1 59335 0 +2646 9.542221000 ::1 49704 ::1 59335 32 +2647 9.542312800 ::1 59335 ::1 49704 0 +2648 9.542398800 ::1 59335 ::1 49704 146 +2649 9.542471100 ::1 49704 ::1 59335 0 +2650 9.542700100 ::1 49704 ::1 59335 32 +2651 9.542830900 ::1 59335 ::1 49704 0 +2652 9.542853600 ::1 59335 ::1 49704 146 +2653 9.542943900 ::1 49704 ::1 59335 0 +2654 9.543105800 ::1 49704 ::1 59335 32 +2655 9.543212100 ::1 59335 ::1 49704 0 +2656 9.543268400 ::1 59335 ::1 49704 158 +2657 9.543335600 ::1 49704 ::1 59335 0 +2658 9.543500000 ::1 49704 ::1 59335 32 +2659 9.543604200 ::1 59335 ::1 49704 0 +2660 9.543757600 ::1 59335 ::1 49704 132 +2661 9.543821100 ::1 49704 ::1 59335 0 +2663 9.543981600 ::1 49704 ::1 59335 32 +2664 9.544313900 ::1 59335 ::1 49704 0 +2665 9.544327500 ::1 59335 ::1 49704 146 +2666 9.544417100 ::1 49704 ::1 59335 0 +2667 9.544564700 ::1 49704 ::1 59335 32 +2668 9.544706800 ::1 59335 ::1 49704 0 +2669 9.544841300 ::1 59335 ::1 49704 144 +2670 9.544921000 ::1 49704 ::1 59335 0 +2671 9.545062800 ::1 49704 ::1 59335 32 +2672 9.545172200 ::1 59335 ::1 49704 0 +2673 9.545263300 ::1 59335 ::1 49704 142 +2674 9.545336300 ::1 49704 ::1 59335 0 +2675 9.545562100 ::1 49704 ::1 59335 32 +2676 9.545707200 ::1 59335 ::1 49704 0 +2677 9.545837500 ::1 59335 ::1 49704 160 +2678 9.545900800 ::1 49704 ::1 59335 0 +2679 9.546005600 ::1 49704 ::1 59335 32 +2680 9.546074500 ::1 59335 ::1 49704 0 +2681 9.546165600 ::1 59335 ::1 49704 156 +2682 9.546228800 ::1 49704 ::1 59335 0 +2683 9.546320100 ::1 49704 ::1 59335 32 +2684 9.546383100 ::1 59335 ::1 49704 0 +2685 9.546485300 ::1 59335 ::1 49704 154 +2686 9.546550000 ::1 49704 ::1 59335 0 +2687 9.546665500 ::1 49704 ::1 59335 32 +2688 9.546725500 ::1 59335 ::1 49704 0 +2689 9.546810300 ::1 59335 ::1 49704 146 +2690 9.546872700 ::1 49704 ::1 59335 0 +2691 9.546961600 ::1 49704 ::1 59335 32 +2692 9.547076600 ::1 59335 ::1 49704 0 +2693 9.547164800 ::1 59335 ::1 49704 154 +2694 9.547227600 ::1 49704 ::1 59335 0 +2695 9.547317000 ::1 49704 ::1 59335 32 +2696 9.547377300 ::1 59335 ::1 49704 0 +2697 9.547467200 ::1 59335 ::1 49704 150 +2698 9.547545800 ::1 49704 ::1 59335 0 +2699 9.547716000 ::1 49704 ::1 59335 32 +2700 9.547778600 ::1 59335 ::1 49704 0 +2701 9.547950400 ::1 59335 ::1 49704 152 +2702 9.548032100 ::1 49704 ::1 59335 0 +2703 9.548175100 ::1 49704 ::1 59335 32 +2704 9.548258200 ::1 59335 ::1 49704 0 +2705 9.548347900 ::1 59335 ::1 49704 140 +2706 9.548412800 ::1 49704 ::1 59335 0 +2707 9.548532800 ::1 49704 ::1 59335 32 +2708 9.548636500 ::1 59335 ::1 49704 0 +2709 9.548749300 ::1 59335 ::1 49704 148 +2710 9.548816200 ::1 49704 ::1 59335 0 +2711 9.548918300 ::1 49704 ::1 59335 32 +2712 9.548985400 ::1 59335 ::1 49704 0 +2713 9.549081700 ::1 59335 ::1 49704 162 +2714 9.549144800 ::1 49704 ::1 59335 0 +2715 9.549239900 ::1 49704 ::1 59335 32 +2716 9.549304900 ::1 59335 ::1 49704 0 +2717 9.549422900 ::1 59335 ::1 49704 172 +2718 9.549490800 ::1 49704 ::1 59335 0 +2719 9.549581700 ::1 49704 ::1 59335 32 +2720 9.549672900 ::1 59335 ::1 49704 0 +2721 9.549766500 ::1 59335 ::1 49704 144 +2722 9.549830600 ::1 49704 ::1 59335 0 +2723 9.549922800 ::1 49704 ::1 59335 32 +2724 9.549988200 ::1 59335 ::1 49704 0 +2729 9.558364900 ::1 59335 ::1 49704 40 +2730 9.558450900 ::1 49704 ::1 59335 0 +2731 9.558635500 ::1 49704 ::1 59335 44 +2732 9.558722800 ::1 59335 ::1 49704 0 +2733 9.558819400 ::1 59335 ::1 49704 128 +2734 9.558915800 ::1 49704 ::1 59335 0 +2735 9.560526000 ::1 49704 ::1 59335 28 +2736 9.560640400 ::1 59335 ::1 49704 0 +2737 9.560781500 ::1 59335 ::1 49704 60 +2738 9.560884700 ::1 49704 ::1 59335 0 +2739 9.561075300 ::1 49704 ::1 59335 92 +2740 9.561153900 ::1 59335 ::1 49704 0 +2741 9.561383300 ::1 59335 ::1 49704 152 +2742 9.561481200 ::1 49704 ::1 59335 0 +2743 9.561588300 ::1 49704 ::1 59335 32 +2744 9.561698700 ::1 59335 ::1 49704 0 +2745 9.561796300 ::1 59335 ::1 49704 156 +2746 9.561883600 ::1 49704 ::1 59335 0 +2747 9.561973900 ::1 49704 ::1 59335 32 +2748 9.562042400 ::1 59335 ::1 49704 0 +2749 9.562183600 ::1 59335 ::1 49704 150 +2750 9.562287100 ::1 49704 ::1 59335 0 +2751 9.562363100 ::1 49704 ::1 59335 32 +2752 9.562426500 ::1 59335 ::1 49704 0 +2753 9.562562400 ::1 59335 ::1 49704 152 +2754 9.562679200 ::1 49704 ::1 59335 0 +2755 9.562809100 ::1 49704 ::1 59335 32 +2756 9.562892300 ::1 59335 ::1 49704 0 +2757 9.563015100 ::1 59335 ::1 49704 162 +2758 9.563083600 ::1 49704 ::1 59335 0 +2759 9.563230700 ::1 49704 ::1 59335 32 +2760 9.563334800 ::1 59335 ::1 49704 0 +2761 9.563434600 ::1 59335 ::1 49704 162 +2762 9.563513300 ::1 49704 ::1 59335 0 +2763 9.563620600 ::1 49704 ::1 59335 32 +2764 9.563713000 ::1 59335 ::1 49704 0 +2765 9.563782400 ::1 59335 ::1 49704 174 +2766 9.563851300 ::1 49704 ::1 59335 0 +2767 9.563950800 ::1 49704 ::1 59335 32 +2768 9.564014600 ::1 59335 ::1 49704 0 +2769 9.564103600 ::1 59335 ::1 49704 148 +2770 9.564168000 ::1 49704 ::1 59335 0 +2771 9.564263100 ::1 49704 ::1 59335 32 +2772 9.564326500 ::1 59335 ::1 49704 0 +2773 9.564448800 ::1 59335 ::1 49704 162 +2774 9.564531100 ::1 49704 ::1 59335 0 +2775 9.564619900 ::1 49704 ::1 59335 32 +2776 9.564707300 ::1 59335 ::1 49704 0 +2777 9.564775200 ::1 59335 ::1 49704 160 +2778 9.564840500 ::1 49704 ::1 59335 0 +2779 9.564934700 ::1 49704 ::1 59335 32 +2780 9.564996800 ::1 59335 ::1 49704 0 +2781 9.565084600 ::1 59335 ::1 49704 158 +2782 9.565149800 ::1 49704 ::1 59335 0 +2783 9.565243700 ::1 49704 ::1 59335 32 +2784 9.565305500 ::1 59335 ::1 49704 0 +2785 9.565467700 ::1 59335 ::1 49704 170 +2786 9.565535300 ::1 49704 ::1 59335 0 +2787 9.565625900 ::1 49704 ::1 59335 32 +2788 9.565729100 ::1 59335 ::1 49704 0 +2789 9.565788700 ::1 59335 ::1 49704 182 +2790 9.565854000 ::1 49704 ::1 59335 0 +2791 9.565949900 ::1 49704 ::1 59335 32 +2792 9.566012300 ::1 59335 ::1 49704 0 +2807 9.572220700 ::1 59335 ::1 49704 40 +2809 9.572294800 ::1 49704 ::1 59335 0 +2811 9.572395300 ::1 49704 ::1 59335 44 +2812 9.572474300 ::1 59335 ::1 49704 0 +2813 9.572567500 ::1 59335 ::1 49704 96 +2814 9.572637300 ::1 49704 ::1 59335 0 +2815 9.574432500 ::1 49704 ::1 59335 28 +2816 9.574509900 ::1 59335 ::1 49704 0 +2817 9.574610100 ::1 59335 ::1 49704 60 +2818 9.574687200 ::1 49704 ::1 59335 0 +2819 9.574784400 ::1 49704 ::1 59335 92 +2820 9.574899800 ::1 59335 ::1 49704 0 +2821 9.575071800 ::1 59335 ::1 49704 120 +2822 9.575142600 ::1 49704 ::1 59335 0 +2823 9.575244200 ::1 49704 ::1 59335 32 +2824 9.575334000 ::1 59335 ::1 49704 0 +2825 9.575450300 ::1 59335 ::1 49704 124 +2826 9.575516500 ::1 49704 ::1 59335 0 +2827 9.575608700 ::1 49704 ::1 59335 32 +2828 9.575672600 ::1 59335 ::1 49704 0 +2829 9.575777800 ::1 59335 ::1 49704 118 +2830 9.575870700 ::1 49704 ::1 59335 0 +2831 9.575988400 ::1 49704 ::1 59335 32 +2832 9.576052400 ::1 59335 ::1 49704 0 +2833 9.576136700 ::1 59335 ::1 49704 120 +2834 9.576201900 ::1 49704 ::1 59335 0 +2835 9.576288500 ::1 49704 ::1 59335 32 +2836 9.576350900 ::1 59335 ::1 49704 0 +2837 9.576434500 ::1 59335 ::1 49704 130 +2838 9.576499500 ::1 49704 ::1 59335 0 +2839 9.576587400 ::1 49704 ::1 59335 32 +2840 9.576648600 ::1 59335 ::1 49704 0 +2841 9.576732400 ::1 59335 ::1 49704 130 +2842 9.576795100 ::1 49704 ::1 59335 0 +2843 9.576904800 ::1 49704 ::1 59335 32 +2844 9.576966000 ::1 59335 ::1 49704 0 +2845 9.577047700 ::1 59335 ::1 49704 142 +2846 9.577111200 ::1 49704 ::1 59335 0 +2847 9.577197200 ::1 49704 ::1 59335 32 +2848 9.577258300 ::1 59335 ::1 49704 0 +2849 9.577341600 ::1 59335 ::1 49704 116 +2850 9.577404700 ::1 49704 ::1 59335 0 +2851 9.577490200 ::1 49704 ::1 59335 32 +2852 9.577553900 ::1 59335 ::1 49704 0 +2853 9.577635500 ::1 59335 ::1 49704 130 +2854 9.577697700 ::1 49704 ::1 59335 0 +2855 9.577810600 ::1 49704 ::1 59335 32 +2856 9.577868900 ::1 59335 ::1 49704 0 +2857 9.577954000 ::1 59335 ::1 49704 128 +2858 9.578016700 ::1 49704 ::1 59335 0 +2859 9.578104400 ::1 49704 ::1 59335 32 +2860 9.578165400 ::1 59335 ::1 49704 0 +2861 9.578246700 ::1 59335 ::1 49704 126 +2862 9.578309100 ::1 49704 ::1 59335 0 +2863 9.578394400 ::1 49704 ::1 59335 32 +2864 9.578456400 ::1 59335 ::1 49704 0 +2865 9.578580400 ::1 59335 ::1 49704 126 +2866 9.578671400 ::1 49704 ::1 59335 0 +2867 9.578760400 ::1 49704 ::1 59335 32 +2868 9.578821500 ::1 59335 ::1 49704 0 +2869 9.578914500 ::1 59335 ::1 49704 132 +2870 9.579013800 ::1 49704 ::1 59335 0 +2871 9.579061500 ::1 49704 ::1 59335 32 +2872 9.579121100 ::1 59335 ::1 49704 0 +2873 9.579210700 ::1 59335 ::1 49704 130 +2874 9.579273200 ::1 49704 ::1 59335 0 +2875 9.579358100 ::1 49704 ::1 59335 32 +2876 9.579418000 ::1 59335 ::1 49704 0 +2877 9.579508100 ::1 59335 ::1 49704 138 +2878 9.579586900 ::1 49704 ::1 59335 0 +2879 9.579655200 ::1 49704 ::1 59335 32 +2880 9.579717700 ::1 59335 ::1 49704 0 +2881 9.579931600 ::1 59335 ::1 49704 136 +2882 9.580014900 ::1 49704 ::1 59335 0 +2883 9.580096200 ::1 49704 ::1 59335 32 +2884 9.580156500 ::1 59335 ::1 49704 0 +2885 9.580262500 ::1 59335 ::1 49704 132 +2886 9.580331900 ::1 49704 ::1 59335 0 +2887 9.580414000 ::1 49704 ::1 59335 32 +2888 9.580472800 ::1 59335 ::1 49704 0 +2889 9.580570500 ::1 59335 ::1 49704 142 +2890 9.580639100 ::1 49704 ::1 59335 0 +2891 9.580720300 ::1 49704 ::1 59335 32 +2892 9.580779000 ::1 59335 ::1 49704 0 +2893 9.580902400 ::1 59335 ::1 49704 148 +2894 9.580967400 ::1 49704 ::1 59335 0 +2895 9.581051300 ::1 49704 ::1 59335 32 +2896 9.581109400 ::1 59335 ::1 49704 0 +2897 9.624168000 ::1 59335 ::1 49704 290 +2898 9.624270200 ::1 49704 ::1 59335 0 +2899 9.624433000 ::1 49704 ::1 59335 28 +2900 9.624514600 ::1 59335 ::1 49704 0 +2916 9.737003700 ::1 59335 ::1 49704 206 +2917 9.737097100 ::1 49704 ::1 59335 0 +2918 9.737265800 ::1 49704 ::1 59335 28 +2919 9.737341700 ::1 59335 ::1 49704 0 +4355 14.849229200 ::1 49829 ::1 49704 242 +4356 14.849395400 ::1 49704 ::1 49829 0 +4357 14.849680200 ::1 49704 ::1 49829 28 +4358 14.849764400 ::1 49829 ::1 49704 0 diff --git a/captures/012-npcap-loopback-subscribe-scalar/stderr.txt b/captures/012-npcap-loopback-subscribe-scalar/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/012-npcap-loopback-subscribe-scalar/stdout.txt b/captures/012-npcap-loopback-subscribe-scalar/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/013-loopback-subscribe-scalars/command.txt b/captures/013-loopback-subscribe-scalars/command.txt new file mode 100644 index 0000000..22d8ac3 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=subscribe --duration=8 --tag=TestChildObject.TestBool --tag=TestChildObject.TestInt --tag=TestChildObject.TestString --log=C:\Users\dohertj2\Desktop\mxaccess\captures\013-loopback-subscribe-scalars\harness.log --client=MxProtoTraceHarness-013-loopback-subscribe-scalars diff --git a/captures/013-loopback-subscribe-scalars/dcerpc-49704.tsv b/captures/013-loopback-subscribe-scalars/dcerpc-49704.tsv new file mode 100644 index 0000000..cbb92da --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/dcerpc-49704.tsv @@ -0,0 +1,402 @@ +548 1.841868800 13 11 2 0,1 4e0c90df-e39d-4164-a421-ace89484c602,4e0c90df-e39d-4164-a421-ace89484c602 116 0 Bind: call_id: 2, Fragment: Single, 2 context items: 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (32bit NDR), 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (6cb71c2c-9812-4540-0300-000000000000) +550 1.842574500 13 12 2 84 0 Bind_ack: call_id: 2, Fragment: Single, max_xmit: 5840 max_recv: 5840, 2 results: Acceptance, Negotiate ACK +552 1.842706000 13 0 2 0 0 40 0 Request: call_id: 2, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +554 1.842888000 13 2 2 0 0 44 0 Response: call_id: 2, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +556 1.843069400 13 14 3 1 1981974b-6bf7-46cb-9640-0260bbb551ba 72 0 Alter_context: call_id: 3, Fragment: Single, 1 context items: 1981974b-6bf7-46cb-9640-0260bbb551ba V1.0 (32bit NDR) +558 1.843198500 13 15 3 56 0 Alter_context_resp: call_id: 3, Fragment: Single, max_xmit: 5840 max_recv: 5840, 1 results: Acceptance +560 1.843351400 13 0 3 1 0 96 0 Request: call_id: 3, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +562 1.845219300 13 2 3 1 0 28 0 Response: call_id: 3, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +564 1.845387900 13 0 4 1 2 60 0 Request: call_id: 4, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +566 1.845558900 13 2 4 1 2 92 0 Response: call_id: 4, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +568 1.845783300 13 0 5 1 3 120 0 Request: call_id: 5, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +570 1.845957100 13 2 5 1 3 32 0 Response: call_id: 5, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +572 1.846092800 13 0 6 1 3 124 0 Request: call_id: 6, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +574 1.846277500 13 2 6 1 3 32 0 Response: call_id: 6, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +576 1.846450700 13 0 7 1 3 118 0 Request: call_id: 7, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +578 1.846667400 13 2 7 1 3 32 0 Response: call_id: 7, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +580 1.846802000 13 0 8 1 3 120 0 Request: call_id: 8, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +582 1.846999700 13 2 8 1 3 32 0 Response: call_id: 8, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +584 1.847130300 13 0 9 1 3 130 0 Request: call_id: 9, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +586 1.847301600 13 2 9 1 3 32 0 Response: call_id: 9, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +588 1.847457000 13 0 10 1 3 130 0 Request: call_id: 10, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +590 1.847610400 13 2 10 1 3 32 0 Response: call_id: 10, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +592 1.847754000 13 0 11 1 3 142 0 Request: call_id: 11, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +594 1.847918300 13 2 11 1 3 32 0 Response: call_id: 11, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +596 1.848051500 13 0 12 1 3 116 0 Request: call_id: 12, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +598 1.848201200 13 2 12 1 3 32 0 Response: call_id: 12, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +600 1.848363600 13 0 13 1 3 130 0 Request: call_id: 13, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +602 1.848508700 13 2 13 1 3 32 0 Response: call_id: 13, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +604 1.848641500 13 0 14 1 3 128 0 Request: call_id: 14, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +606 1.848791100 13 2 14 1 3 32 0 Response: call_id: 14, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +608 1.848904300 13 0 15 1 3 126 0 Request: call_id: 15, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +610 1.849117300 13 2 15 1 3 32 0 Response: call_id: 15, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +612 1.849683000 13 0 16 1 3 132 0 Request: call_id: 16, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +614 1.849863900 13 2 16 1 3 32 0 Response: call_id: 16, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +616 1.850054300 13 0 17 1 3 152 0 Request: call_id: 17, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +618 1.850217700 13 2 17 1 3 32 0 Response: call_id: 17, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +636 1.952495100 13 0 18 0 0 40 0 Request: call_id: 18, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +638 1.952716400 13 2 18 0 0 44 0 Response: call_id: 18, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +640 1.953139600 13 0 19 1 0 108 0 Request: call_id: 19, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +642 1.954644700 13 2 19 1 0 28 0 Response: call_id: 19, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +644 1.954833900 13 0 20 1 2 60 0 Request: call_id: 20, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +646 1.955002800 13 2 20 1 2 92 0 Response: call_id: 20, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +648 1.955213900 13 0 21 1 3 132 0 Request: call_id: 21, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +650 1.955708300 13 2 21 1 3 32 0 Response: call_id: 21, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +652 1.955838200 13 0 22 1 3 136 0 Request: call_id: 22, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +654 1.955986800 13 2 22 1 3 32 0 Response: call_id: 22, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +656 1.956111500 13 0 23 1 3 130 0 Request: call_id: 23, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +658 1.956253400 13 2 23 1 3 32 0 Response: call_id: 23, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +660 1.956379700 13 0 24 1 3 132 0 Request: call_id: 24, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +662 1.956598600 13 2 24 1 3 32 0 Response: call_id: 24, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +664 1.956735100 13 0 25 1 3 142 0 Request: call_id: 25, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +666 1.956893100 13 2 25 1 3 32 0 Response: call_id: 25, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +668 1.957022900 13 0 26 1 3 142 0 Request: call_id: 26, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +670 1.957166500 13 2 26 1 3 32 0 Response: call_id: 26, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +672 1.957291000 13 0 27 1 3 154 0 Request: call_id: 27, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +674 1.957477200 13 2 27 1 3 32 0 Response: call_id: 27, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +676 1.957604100 13 0 28 1 3 128 0 Request: call_id: 28, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +678 1.957742900 13 2 28 1 3 32 0 Response: call_id: 28, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +680 1.957866200 13 0 29 1 3 142 0 Request: call_id: 29, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +682 1.958006400 13 2 29 1 3 32 0 Response: call_id: 29, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +684 1.958130000 13 0 30 1 3 140 0 Request: call_id: 30, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +686 1.958268200 13 2 30 1 3 32 0 Response: call_id: 30, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +688 1.958394300 13 0 31 1 3 138 0 Request: call_id: 31, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +690 1.958534900 13 2 31 1 3 32 0 Response: call_id: 31, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +720 1.974780000 13 0 32 0 0 40 0 Request: call_id: 32, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +722 1.974975000 13 2 32 0 0 44 0 Response: call_id: 32, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +724 1.975129000 13 0 33 1 0 104 0 Request: call_id: 33, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +726 1.976482700 13 2 33 1 0 28 0 Response: call_id: 33, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +728 1.976612100 13 0 34 1 2 60 0 Request: call_id: 34, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +730 1.976772300 13 2 34 1 2 92 0 Response: call_id: 34, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +732 1.976973700 13 0 35 1 3 128 0 Request: call_id: 35, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +734 1.977223400 13 2 35 1 3 32 0 Response: call_id: 35, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +736 1.977347000 13 0 36 1 3 132 0 Request: call_id: 36, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +738 1.977512700 13 2 36 1 3 32 0 Response: call_id: 36, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +740 1.977639300 13 0 37 1 3 126 0 Request: call_id: 37, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +742 1.977798400 13 2 37 1 3 32 0 Response: call_id: 37, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +744 1.977925500 13 0 38 1 3 128 0 Request: call_id: 38, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +746 1.978087100 13 2 38 1 3 32 0 Response: call_id: 38, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +748 1.978343600 13 0 39 1 3 138 0 Request: call_id: 39, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +750 1.978503300 13 2 39 1 3 32 0 Response: call_id: 39, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +752 1.978629200 13 0 40 1 3 138 0 Request: call_id: 40, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +757 1.978848400 13 2 40 1 3 32 0 Response: call_id: 40, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +760 1.979005600 13 0 41 1 3 150 0 Request: call_id: 41, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +763 1.979208900 13 2 41 1 3 32 0 Response: call_id: 41, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +766 1.979334200 13 0 42 1 3 124 0 Request: call_id: 42, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +768 1.979496100 13 2 42 1 3 32 0 Response: call_id: 42, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +770 1.979623300 13 0 43 1 3 138 0 Request: call_id: 43, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +775 1.979815700 13 2 43 1 3 32 0 Response: call_id: 43, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +778 1.979943300 13 0 44 1 3 136 0 Request: call_id: 44, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +780 1.980102500 13 2 44 1 3 32 0 Response: call_id: 44, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +783 1.980236400 13 0 45 1 3 134 0 Request: call_id: 45, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +786 1.980394100 13 2 45 1 3 32 0 Response: call_id: 45, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +788 1.980563100 13 0 46 1 3 140 0 Request: call_id: 46, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +790 1.980746100 13 2 46 1 3 32 0 Response: call_id: 46, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +792 1.980880400 13 0 47 1 3 146 0 Request: call_id: 47, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +794 1.981041600 13 2 47 1 3 32 0 Response: call_id: 47, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +811 2.084245900 13 0 48 0 0 40 0 Request: call_id: 48, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +815 2.084478100 13 2 48 0 0 44 0 Response: call_id: 48, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +818 2.084662300 13 0 49 1 0 112 0 Request: call_id: 49, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +820 2.086451500 13 2 49 1 0 28 0 Response: call_id: 49, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +822 2.086598500 13 0 50 1 2 60 0 Request: call_id: 50, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +824 2.086780600 13 2 50 1 2 92 0 Response: call_id: 50, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +826 2.087004200 13 0 51 1 3 136 0 Request: call_id: 51, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +828 2.087236200 13 2 51 1 3 32 0 Response: call_id: 51, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +830 2.087483700 13 0 52 1 3 140 0 Request: call_id: 52, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +832 2.087672500 13 2 52 1 3 32 0 Response: call_id: 52, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +834 2.087808900 13 0 53 1 3 134 0 Request: call_id: 53, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +836 2.088007500 13 2 53 1 3 32 0 Response: call_id: 53, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +838 2.088168300 13 0 54 1 3 136 0 Request: call_id: 54, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +840 2.088363100 13 2 54 1 3 32 0 Response: call_id: 54, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +842 2.088503300 13 0 55 1 3 146 0 Request: call_id: 55, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +844 2.088675100 13 2 55 1 3 32 0 Response: call_id: 55, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +846 2.088812600 13 0 56 1 3 146 0 Request: call_id: 56, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +848 2.088999900 13 2 56 1 3 32 0 Response: call_id: 56, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +850 2.089162200 13 0 57 1 3 158 0 Request: call_id: 57, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +852 2.089409000 13 2 57 1 3 32 0 Response: call_id: 57, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +854 2.089557000 13 0 58 1 3 132 0 Request: call_id: 58, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +856 2.089759700 13 2 58 1 3 32 0 Response: call_id: 58, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +858 2.089901700 13 0 59 1 3 146 0 Request: call_id: 59, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +860 2.090074600 13 2 59 1 3 32 0 Response: call_id: 59, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +862 2.090241000 13 0 60 1 3 144 0 Request: call_id: 60, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +864 2.090409600 13 2 60 1 3 32 0 Response: call_id: 60, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +866 2.090547700 13 0 61 1 3 142 0 Request: call_id: 61, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +868 2.090713200 13 2 61 1 3 32 0 Response: call_id: 61, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +870 2.090896900 13 0 62 1 3 148 0 Request: call_id: 62, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +872 2.091063400 13 2 62 1 3 32 0 Response: call_id: 62, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +874 2.091213700 13 0 63 1 3 154 0 Request: call_id: 63, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +876 2.091382700 13 2 63 1 3 32 0 Response: call_id: 63, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +912 2.216395200 13 0 64 0 0 40 0 Request: call_id: 64, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +914 2.216629000 13 2 64 0 0 44 0 Response: call_id: 64, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +916 2.216804800 13 0 65 1 0 92 0 Request: call_id: 65, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +918 2.218485300 13 2 65 1 0 28 0 Response: call_id: 65, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +920 2.218627600 13 0 66 1 2 60 0 Request: call_id: 66, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +922 2.218800100 13 2 66 1 2 92 0 Response: call_id: 66, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +924 2.219027200 13 0 67 1 3 116 0 Request: call_id: 67, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +926 2.219275100 13 2 67 1 3 32 0 Response: call_id: 67, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +928 2.219412100 13 0 68 1 3 120 0 Request: call_id: 68, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +930 2.219583400 13 2 68 1 3 32 0 Response: call_id: 68, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +932 2.219724600 13 0 69 1 3 114 0 Request: call_id: 69, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +934 2.219894800 13 2 69 1 3 32 0 Response: call_id: 69, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +936 2.220035100 13 0 70 1 3 116 0 Request: call_id: 70, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +938 2.220199900 13 2 70 1 3 32 0 Response: call_id: 70, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +940 2.220347600 13 0 71 1 3 126 0 Request: call_id: 71, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +942 2.220512700 13 2 71 1 3 32 0 Response: call_id: 71, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +944 2.220649100 13 0 72 1 3 126 0 Request: call_id: 72, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +946 2.220811600 13 2 72 1 3 32 0 Response: call_id: 72, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +948 2.220950000 13 0 73 1 3 138 0 Request: call_id: 73, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +950 2.221111300 13 2 73 1 3 32 0 Response: call_id: 73, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +952 2.221277200 13 0 74 1 3 112 0 Request: call_id: 74, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +954 2.221430900 13 2 74 1 3 32 0 Response: call_id: 74, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +956 2.221568500 13 0 75 1 3 126 0 Request: call_id: 75, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +958 2.221782700 13 2 75 1 3 32 0 Response: call_id: 75, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +960 2.221931000 13 0 76 1 3 124 0 Request: call_id: 76, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +962 2.222098700 13 2 76 1 3 32 0 Response: call_id: 76, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +964 2.222265400 13 0 77 1 3 122 0 Request: call_id: 77, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +966 2.222392000 13 2 77 1 3 32 0 Response: call_id: 77, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +968 2.222556800 13 0 78 1 3 128 0 Request: call_id: 78, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +970 2.222722800 13 2 78 1 3 32 0 Response: call_id: 78, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +972 2.222871800 13 0 79 1 3 134 0 Request: call_id: 79, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +974 2.223036700 13 2 79 1 3 32 0 Response: call_id: 79, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +976 2.223168400 13 0 80 1 3 130 0 Request: call_id: 80, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +978 2.223416100 13 2 80 1 3 32 0 Response: call_id: 80, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +980 2.223605600 13 0 81 1 3 128 0 Request: call_id: 81, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +982 2.223911800 13 2 81 1 3 32 0 Response: call_id: 81, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3004 8.941415600 13 0 82 0 0 40 0 Request: call_id: 82, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3006 8.941617000 13 2 82 0 0 44 0 Response: call_id: 82, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3008 8.941909400 13 0 83 1 0 100 0 Request: call_id: 83, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3010 8.943727600 13 2 83 1 0 28 0 Response: call_id: 83, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3012 8.943881600 13 0 84 1 2 60 0 Request: call_id: 84, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3014 8.944122300 13 2 84 1 2 92 0 Response: call_id: 84, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3016 8.944422100 13 0 85 1 3 124 0 Request: call_id: 85, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3018 8.944742100 13 2 85 1 3 32 0 Response: call_id: 85, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3020 8.944880500 13 0 86 1 3 128 0 Request: call_id: 86, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3022 8.945040100 13 2 86 1 3 32 0 Response: call_id: 86, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3024 8.945187400 13 0 87 1 3 122 0 Request: call_id: 87, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3026 8.945369700 13 2 87 1 3 32 0 Response: call_id: 87, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3028 8.945511300 13 0 88 1 3 124 0 Request: call_id: 88, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3030 8.945664300 13 2 88 1 3 32 0 Response: call_id: 88, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3032 8.945908600 13 0 89 1 3 134 0 Request: call_id: 89, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3034 8.946068700 13 2 89 1 3 32 0 Response: call_id: 89, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3036 8.946221700 13 0 90 1 3 134 0 Request: call_id: 90, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3038 8.946371300 13 2 90 1 3 32 0 Response: call_id: 90, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3040 8.946560600 13 0 91 1 3 146 0 Request: call_id: 91, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3042 8.946706800 13 2 91 1 3 32 0 Response: call_id: 91, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3044 8.946847100 13 0 92 1 3 120 0 Request: call_id: 92, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3046 8.947072000 13 2 92 1 3 32 0 Response: call_id: 92, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3048 8.947259700 13 0 93 1 3 134 0 Request: call_id: 93, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3050 8.947485400 13 2 93 1 3 32 0 Response: call_id: 93, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3052 8.947615300 13 0 94 1 3 132 0 Request: call_id: 94, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3054 8.947763500 13 2 94 1 3 32 0 Response: call_id: 94, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3056 8.947990000 13 0 95 1 3 130 0 Request: call_id: 95, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3058 8.948214100 13 2 95 1 3 32 0 Response: call_id: 95, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3060 8.948401300 13 0 96 1 3 144 0 Request: call_id: 96, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3062 8.948549500 13 2 96 1 3 32 0 Response: call_id: 96, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3064 8.948750300 13 0 97 1 3 148 0 Request: call_id: 97, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3066 8.948944100 13 2 97 1 3 32 0 Response: call_id: 97, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3068 8.949096200 13 0 98 1 3 146 0 Request: call_id: 98, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3070 8.949245100 13 2 98 1 3 32 0 Response: call_id: 98, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3072 8.949485500 13 0 99 1 3 158 0 Request: call_id: 99, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3074 8.949633700 13 2 99 1 3 32 0 Response: call_id: 99, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3118 9.030154100 13 0 100 0 0 40 0 Request: call_id: 100, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3120 9.030399700 13 2 100 0 0 44 0 Response: call_id: 100, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3122 9.030622500 13 0 101 1 0 84 0 Request: call_id: 101, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3124 9.032311300 13 2 101 1 0 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3126 9.032491100 13 0 102 1 2 60 0 Request: call_id: 102, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3128 9.032661400 13 2 102 1 2 92 0 Response: call_id: 102, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3130 9.033031500 13 0 103 1 3 108 0 Request: call_id: 103, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3132 9.033229800 13 2 103 1 3 32 0 Response: call_id: 103, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3134 9.033392500 13 0 104 1 3 112 0 Request: call_id: 104, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3136 9.033550800 13 2 104 1 3 32 0 Response: call_id: 104, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3138 9.033699800 13 0 105 1 3 106 0 Request: call_id: 105, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3140 9.033850900 13 2 105 1 3 32 0 Response: call_id: 105, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3142 9.033998600 13 0 106 1 3 108 0 Request: call_id: 106, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3144 9.034147000 13 2 106 1 3 32 0 Response: call_id: 106, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3146 9.034291800 13 0 107 1 3 118 0 Request: call_id: 107, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3148 9.034442100 13 2 107 1 3 32 0 Response: call_id: 107, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3150 9.034584100 13 0 108 1 3 118 0 Request: call_id: 108, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3152 9.034736800 13 2 108 1 3 32 0 Response: call_id: 108, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3154 9.034880100 13 0 109 1 3 130 0 Request: call_id: 109, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3156 9.035032100 13 2 109 1 3 32 0 Response: call_id: 109, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3158 9.035175000 13 0 110 1 3 104 0 Request: call_id: 110, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3160 9.035328400 13 2 110 1 3 32 0 Response: call_id: 110, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3162 9.035472200 13 0 111 1 3 118 0 Request: call_id: 111, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3164 9.035619600 13 2 111 1 3 32 0 Response: call_id: 111, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3166 9.035901600 13 0 112 1 3 116 0 Request: call_id: 112, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3168 9.036063000 13 2 112 1 3 32 0 Response: call_id: 112, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3170 9.036219700 13 0 113 1 3 114 0 Request: call_id: 113, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3172 9.036373700 13 2 113 1 3 32 0 Response: call_id: 113, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3174 9.036894800 13 0 114 1 3 128 0 Request: call_id: 114, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3175 9.037055400 13 2 114 1 3 32 0 Response: call_id: 114, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3177 9.037346400 13 0 115 1 3 120 0 Request: call_id: 115, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3179 9.037517800 13 2 115 1 3 32 0 Response: call_id: 115, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3181 9.037807500 13 0 116 1 3 120 0 Request: call_id: 116, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3183 9.038005100 13 2 116 1 3 32 0 Response: call_id: 116, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3185 9.038275800 13 0 117 1 3 122 0 Request: call_id: 117, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3187 9.038446500 13 2 117 1 3 32 0 Response: call_id: 117, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3189 9.038740500 13 0 118 1 3 134 0 Request: call_id: 118, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3191 9.038911700 13 2 118 1 3 32 0 Response: call_id: 118, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3193 9.039258600 13 0 119 1 3 132 0 Request: call_id: 119, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3195 9.039449300 13 2 119 1 3 32 0 Response: call_id: 119, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3197 9.039740200 13 0 120 1 3 130 0 Request: call_id: 120, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3199 9.039914100 13 2 120 1 3 32 0 Response: call_id: 120, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3201 9.040230800 13 0 121 1 3 138 0 Request: call_id: 121, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3203 9.040399200 13 2 121 1 3 32 0 Response: call_id: 121, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3205 9.040686500 13 0 122 1 3 144 0 Request: call_id: 122, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3207 9.040858400 13 2 122 1 3 32 0 Response: call_id: 122, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3209 9.041225100 13 0 123 1 3 144 0 Request: call_id: 123, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3211 9.041396800 13 2 123 1 3 32 0 Response: call_id: 123, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3213 9.041682800 13 0 124 1 3 116 0 Request: call_id: 124, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3215 9.041855000 13 2 124 1 3 32 0 Response: call_id: 124, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3217 9.042173800 13 0 125 1 3 130 0 Request: call_id: 125, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3219 9.042343500 13 2 125 1 3 32 0 Response: call_id: 125, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3221 9.042598400 13 0 126 1 3 138 0 Request: call_id: 126, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3223 9.042769900 13 2 126 1 3 32 0 Response: call_id: 126, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3225 9.043104400 13 0 127 1 3 130 0 Request: call_id: 127, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3227 9.043269700 13 2 127 1 3 32 0 Response: call_id: 127, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3229 9.043548800 13 0 128 1 3 122 0 Request: call_id: 128, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3231 9.043721500 13 2 128 1 3 32 0 Response: call_id: 128, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3233 9.044040600 13 0 129 1 3 122 0 Request: call_id: 129, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3235 9.044290800 13 2 129 1 3 32 0 Response: call_id: 129, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3237 9.044568600 13 0 130 1 3 134 0 Request: call_id: 130, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3239 9.044878200 13 2 130 1 3 32 0 Response: call_id: 130, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3241 9.045138200 13 0 131 1 3 128 0 Request: call_id: 131, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3243 9.045286600 13 2 131 1 3 32 0 Response: call_id: 131, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3245 9.045474700 13 0 132 1 3 124 0 Request: call_id: 132, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3247 9.045648400 13 2 132 1 3 32 0 Response: call_id: 132, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3249 9.079412000 13 0 133 1 5 516 0 Request: call_id: 133, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3251 9.079692900 13 2 133 1 5 28 0 Response: call_id: 133, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3257 9.116245700 13 0 134 0 0 40 0 Request: call_id: 134, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3259 9.116466300 13 2 134 0 0 44 0 Response: call_id: 134, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3261 9.116653700 13 0 135 1 0 112 0 Request: call_id: 135, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3263 9.118406000 13 2 135 1 0 28 0 Response: call_id: 135, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3265 9.118562500 13 0 136 1 2 60 0 Request: call_id: 136, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3267 9.118735300 13 2 136 1 2 92 0 Response: call_id: 136, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3269 9.119034000 13 0 137 1 3 136 0 Request: call_id: 137, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3271 9.119226100 13 2 137 1 3 32 0 Response: call_id: 137, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3273 9.119382800 13 0 138 1 3 140 0 Request: call_id: 138, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3275 9.119543200 13 2 138 1 3 32 0 Response: call_id: 138, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3277 9.119714400 13 0 139 1 3 134 0 Request: call_id: 139, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3279 9.119872800 13 2 139 1 3 32 0 Response: call_id: 139, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3281 9.120075400 13 0 140 1 3 136 0 Request: call_id: 140, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3283 9.120235300 13 2 140 1 3 32 0 Response: call_id: 140, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3285 9.120407100 13 0 141 1 3 146 0 Request: call_id: 141, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3287 9.120576500 13 2 141 1 3 32 0 Response: call_id: 141, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3289 9.120799600 13 0 142 1 3 146 0 Request: call_id: 142, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3291 9.121004900 13 2 142 1 3 32 0 Response: call_id: 142, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3293 9.121182400 13 0 143 1 3 158 0 Request: call_id: 143, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3295 9.121350900 13 2 143 1 3 32 0 Response: call_id: 143, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3297 9.121569600 13 0 144 1 3 132 0 Request: call_id: 144, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3299 9.121731400 13 2 144 1 3 32 0 Response: call_id: 144, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3301 9.121923100 13 0 145 1 3 146 0 Request: call_id: 145, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3303 9.122129500 13 2 145 1 3 32 0 Response: call_id: 145, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3305 9.122279200 13 0 146 1 3 144 0 Request: call_id: 146, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3307 9.122438300 13 2 146 1 3 32 0 Response: call_id: 146, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3309 9.122643600 13 0 147 1 3 142 0 Request: call_id: 147, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3311 9.122812600 13 2 147 1 3 32 0 Response: call_id: 147, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3313 9.123218900 13 0 148 1 3 160 0 Request: call_id: 148, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3315 9.123467000 13 2 148 1 3 32 0 Response: call_id: 148, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3317 9.123714600 13 0 149 1 3 156 0 Request: call_id: 149, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3319 9.123882400 13 2 149 1 3 32 0 Response: call_id: 149, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3321 9.124201400 13 0 150 1 3 154 0 Request: call_id: 150, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3323 9.124363800 13 2 150 1 3 32 0 Response: call_id: 150, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3325 9.124605700 13 0 151 1 3 146 0 Request: call_id: 151, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3327 9.124802900 13 2 151 1 3 32 0 Response: call_id: 151, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3329 9.125081100 13 0 152 1 3 154 0 Request: call_id: 152, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3331 9.125249500 13 2 152 1 3 32 0 Response: call_id: 152, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3333 9.125481300 13 0 153 1 3 150 0 Request: call_id: 153, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3335 9.125660700 13 2 153 1 3 32 0 Response: call_id: 153, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3337 9.125911900 13 0 154 1 3 152 0 Request: call_id: 154, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3339 9.126134300 13 2 154 1 3 32 0 Response: call_id: 154, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3341 9.126354900 13 0 155 1 3 140 0 Request: call_id: 155, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3343 9.126521500 13 2 155 1 3 32 0 Response: call_id: 155, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3345 9.126688400 13 0 156 1 3 148 0 Request: call_id: 156, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3347 9.126846500 13 2 156 1 3 32 0 Response: call_id: 156, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3349 9.127032900 13 0 157 1 3 162 0 Request: call_id: 157, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3351 9.127187300 13 2 157 1 3 32 0 Response: call_id: 157, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3353 9.127349000 13 0 158 1 3 172 0 Request: call_id: 158, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3355 9.127509600 13 2 158 1 3 32 0 Response: call_id: 158, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3357 9.127695200 13 0 159 1 3 144 0 Request: call_id: 159, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3360 9.127853300 13 2 159 1 3 32 0 Response: call_id: 159, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3384 9.135780200 13 0 160 0 0 40 0 Request: call_id: 160, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3387 9.135993500 13 2 160 0 0 44 0 Response: call_id: 160, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3389 9.136219900 13 0 161 1 0 128 0 Request: call_id: 161, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3391 9.137856200 13 2 161 1 0 28 0 Response: call_id: 161, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3393 9.138127100 13 0 162 1 2 60 0 Request: call_id: 162, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3395 9.138300600 13 2 162 1 2 92 0 Response: call_id: 162, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3397 9.138534400 13 0 163 1 3 152 0 Request: call_id: 163, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3399 9.138721300 13 2 163 1 3 32 0 Response: call_id: 163, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3401 9.138876100 13 0 164 1 3 156 0 Request: call_id: 164, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3403 9.139039800 13 2 164 1 3 32 0 Response: call_id: 164, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3405 9.139191500 13 0 165 1 3 150 0 Request: call_id: 165, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3407 9.139352400 13 2 165 1 3 32 0 Response: call_id: 165, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3409 9.139501000 13 0 166 1 3 152 0 Request: call_id: 166, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3411 9.139660200 13 2 166 1 3 32 0 Response: call_id: 166, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3413 9.139828100 13 0 167 1 3 162 0 Request: call_id: 167, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3415 9.140013400 13 2 167 1 3 32 0 Response: call_id: 167, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3417 9.140157000 13 0 168 1 3 162 0 Request: call_id: 168, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3419 9.140316300 13 2 168 1 3 32 0 Response: call_id: 168, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3421 9.140463000 13 0 169 1 3 174 0 Request: call_id: 169, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3423 9.140619300 13 2 169 1 3 32 0 Response: call_id: 169, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3425 9.140762600 13 0 170 1 3 148 0 Request: call_id: 170, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3427 9.140919300 13 2 170 1 3 32 0 Response: call_id: 170, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3429 9.141090100 13 0 171 1 3 162 0 Request: call_id: 171, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3431 9.141245900 13 2 171 1 3 32 0 Response: call_id: 171, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3433 9.141390600 13 0 172 1 3 160 0 Request: call_id: 172, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3435 9.141545700 13 2 172 1 3 32 0 Response: call_id: 172, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3437 9.141690500 13 0 173 1 3 158 0 Request: call_id: 173, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3439 9.141844600 13 2 173 1 3 32 0 Response: call_id: 173, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3441 9.142089400 13 0 174 1 3 170 0 Request: call_id: 174, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3443 9.142247800 13 2 174 1 3 32 0 Response: call_id: 174, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3445 9.142403700 13 0 175 1 3 182 0 Request: call_id: 175, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3447 9.142560300 13 2 175 1 3 32 0 Response: call_id: 175, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3453 9.149240800 13 0 176 0 0 40 0 Request: call_id: 176, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3455 9.149486500 13 2 176 0 0 44 0 Response: call_id: 176, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3457 9.149680600 13 0 177 1 0 96 0 Request: call_id: 177, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3459 9.151486300 13 2 177 1 0 28 0 Response: call_id: 177, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3461 9.151669100 13 0 178 1 2 60 0 Request: call_id: 178, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3463 9.151839000 13 2 178 1 2 92 0 Response: call_id: 178, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3465 9.152098500 13 0 179 1 3 120 0 Request: call_id: 179, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3467 9.152290100 13 2 179 1 3 32 0 Response: call_id: 179, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3469 9.152437200 13 0 180 1 3 124 0 Request: call_id: 180, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3471 9.152590600 13 2 180 1 3 32 0 Response: call_id: 180, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3473 9.152733500 13 0 181 1 3 118 0 Request: call_id: 181, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3475 9.152883000 13 2 181 1 3 32 0 Response: call_id: 181, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3477 9.153053400 13 0 182 1 3 120 0 Request: call_id: 182, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3479 9.153203600 13 2 182 1 3 32 0 Response: call_id: 182, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3481 9.153348900 13 0 183 1 3 130 0 Request: call_id: 183, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3483 9.153499200 13 2 183 1 3 32 0 Response: call_id: 183, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3485 9.153640900 13 0 184 1 3 130 0 Request: call_id: 184, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3487 9.153788900 13 2 184 1 3 32 0 Response: call_id: 184, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3489 9.153930300 13 0 185 1 3 142 0 Request: call_id: 185, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3491 9.154105900 13 2 185 1 3 32 0 Response: call_id: 185, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3493 9.154248300 13 0 186 1 3 116 0 Request: call_id: 186, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3495 9.154395400 13 2 186 1 3 32 0 Response: call_id: 186, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3497 9.154537500 13 0 187 1 3 130 0 Request: call_id: 187, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3499 9.154698400 13 2 187 1 3 32 0 Response: call_id: 187, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3501 9.154852100 13 0 188 1 3 128 0 Request: call_id: 188, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3503 9.155031500 13 2 188 1 3 32 0 Response: call_id: 188, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3505 9.155172100 13 0 189 1 3 126 0 Request: call_id: 189, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3507 9.155322200 13 2 189 1 3 32 0 Response: call_id: 189, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3509 9.155507300 13 0 190 1 3 126 0 Request: call_id: 190, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3511 9.155669500 13 2 190 1 3 32 0 Response: call_id: 190, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3513 9.155822700 13 0 191 1 3 132 0 Request: call_id: 191, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3515 9.156000900 13 2 191 1 3 32 0 Response: call_id: 191, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3517 9.156112500 13 0 192 1 3 130 0 Request: call_id: 192, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3519 9.156264100 13 2 192 1 3 32 0 Response: call_id: 192, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3521 9.156414800 13 0 193 1 3 138 0 Request: call_id: 193, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3523 9.156564100 13 2 193 1 3 32 0 Response: call_id: 193, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3525 9.156713700 13 0 194 1 3 136 0 Request: call_id: 194, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3527 9.156861900 13 2 194 1 3 32 0 Response: call_id: 194, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3529 9.157039000 13 0 195 1 3 132 0 Request: call_id: 195, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3531 9.157190100 13 2 195 1 3 32 0 Response: call_id: 195, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3533 9.157343500 13 0 196 1 3 142 0 Request: call_id: 196, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3535 9.157494000 13 2 196 1 3 32 0 Response: call_id: 196, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3537 9.157646800 13 0 197 1 3 148 0 Request: call_id: 197, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3539 9.157798300 13 2 197 1 3 32 0 Response: call_id: 197, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3545 9.196022900 13 0 198 1 5 290 0 Request: call_id: 198, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3547 9.196302300 13 2 198 1 5 28 0 Response: call_id: 198, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3567 9.268533800 13 0 199 1 5 206 0 Request: call_id: 199, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3569 9.268863200 13 2 199 1 5 28 0 Response: call_id: 199, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +5762 17.341436000 44 0 94 1 5 242 0 Request: call_id: 94, Fragment: Single, opnum: 5, Ctx: 1 +5764 17.341765900 44 2 94 1 28 0 Response: call_id: 94, Fragment: Single, Ctx: 1 diff --git a/captures/013-loopback-subscribe-scalars/dumpcap.stderr.txt b/captures/013-loopback-subscribe-scalars/dumpcap.stderr.txt new file mode 100644 index 0000000..de0708e --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\013-loopback-subscribe-scalars\loopback.pcapng diff --git a/captures/013-loopback-subscribe-scalars/dumpcap.stdout.txt b/captures/013-loopback-subscribe-scalars/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/013-loopback-subscribe-scalars/exit.txt b/captures/013-loopback-subscribe-scalars/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/013-loopback-subscribe-scalars/harness.log b/captures/013-loopback-subscribe-scalars/harness.log new file mode 100644 index 0000000..24668d3 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/harness.log @@ -0,0 +1,33 @@ +2026-04-25T05:12:25.5755765+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-013-loopback-subscribe-scalars","Tags":["TestChildObject.TestBool","TestChildObject.TestInt","TestChildObject.TestString"],"WriteType":"string","WriteValue":"","UserId":0,"WriteDelayMilliseconds":750,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:12:32.7250086+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-013-loopback-subscribe-scalars"} +2026-04-25T05:12:33.0881533+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:12:33.0881533+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-25T05:12:33.0901507+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T05:12:33.0911320+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T05:12:33.0921487+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T05:12:33.0921487+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:12:33.0921487+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T05:12:33.0921487+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T05:12:33.0921487+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T05:12:33.0921487+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-25T05:12:33.0921487+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T05:12:33.0921487+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T05:12:33.0921487+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T05:12:33.3341294+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:12:33.3371281+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":2,"Value":{"Type":"System.Int32","Value":"99"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:12:33.3381587+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":3,"Value":{"Type":"System.String","Value":"HelloFromOpcUa"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:12:41.1087214+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T05:12:41.1087214+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T05:12:41.1097129+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T05:12:41.1097129+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":3} +2026-04-25T05:12:41.1097129+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T05:12:41.1097129+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T05:12:41.1097129+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T05:12:41.1097129+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T05:12:41.1097129+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T05:12:41.1097129+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T05:12:41.1107174+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T05:12:41.1107174+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T05:12:41.1107174+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:12:45.1709044+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:12:45.1769039+00:00 harness.stop {} diff --git a/captures/013-loopback-subscribe-scalars/loopback.pcapng b/captures/013-loopback-subscribe-scalars/loopback.pcapng new file mode 100644 index 0000000..d7b1429 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/loopback.pcapng differ diff --git a/captures/013-loopback-subscribe-scalars/nmx-conversations.tsv b/captures/013-loopback-subscribe-scalars/nmx-conversations.tsv new file mode 100644 index 0000000..828a5cb --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/nmx-conversations.tsv @@ -0,0 +1,6 @@ +capture selected_a selected_b payload_packets payload_bytes +C:\Users\dohertj2\Desktop\mxaccess\captures\013-loopback-subscribe-scalars\loopback.pcapng ::1:49704 ::1:55690 400 32726 + +conversation_a conversation_b payload_packets payload_bytes +::1:49704 ::1:55690 400 32726 +::1:49704 ::1:49829 2 270 diff --git a/captures/013-loopback-subscribe-scalars/nmx-payload-packets.tsv b/captures/013-loopback-subscribe-scalars/nmx-payload-packets.tsv new file mode 100644 index 0000000..12f3302 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/nmx-payload-packets.tsv @@ -0,0 +1,401 @@ +frame time_relative from_service src sport dst dport seq ack payload_len hex_prefix ascii_preview +548 0.000000000 0 ::1 55690 ::1 49704 3756504263 1676676910 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +550 0.000705719 1 ::1 49704 ::1 55690 1676676910 3756504379 84 05000c03100000005400000002000000d016d016b3b900000600343937303400 ........T.................49704..........]...... +552 0.000837326 0 ::1 55690 ::1 49704 3756504379 1676676994 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +554 0.001019239 1 ::1 49704 ::1 55690 1676676994 3756504419 44 05000203100000002c000000020000001400000000000000000000000631566b ........,....................1Vk...K......(. +556 0.001200676 0 ::1 55690 ::1 49704 3756504419 1676677038 72 05000e03100000004800000003000000d016d016b3b900000100000001000100 ........H.......................K....k.F.@.`..Q. +558 0.001329660 1 ::1 49704 ::1 55690 1676677038 3756504491 56 05000f03100000003800000003000000d016d016b3b900000000000001000000 ........8............................].......... +560 0.001482725 0 ::1 55690 ::1 49704 3756504491 1676677094 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........1Vk +562 0.003350496 1 ::1 49704 ::1 55690 1676677094 3756504587 28 05000203100000001c00000003000000040000000100000001000000 ............................ +564 0.003519058 0 ::1 55690 ::1 49704 3756504587 1676677122 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........1Vk +566 0.003690004 1 ::1 49704 ::1 55690 1676677122 3756504647 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +568 0.003914595 0 ::1 55690 ::1 49704 3756504647 1676677214 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........1Vk +570 0.004088402 1 ::1 49704 ::1 55690 1676677214 3756504767 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +572 0.004224062 0 ::1 55690 ::1 49704 3756504767 1676677246 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........1Vk +574 0.004408598 1 ::1 49704 ::1 55690 1676677246 3756504891 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +576 0.004581928 0 ::1 55690 ::1 49704 3756504891 1676677278 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........1Vk +578 0.004798651 1 ::1 49704 ::1 55690 1676677278 3756505009 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +580 0.004933119 0 ::1 55690 ::1 49704 3756505009 1676677310 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........1Vk +582 0.005131006 1 ::1 49704 ::1 55690 1676677310 3756505129 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +584 0.005261421 0 ::1 55690 ::1 49704 3756505129 1676677342 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........1Vk +586 0.005432844 1 ::1 49704 ::1 55690 1676677342 3756505259 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +588 0.005588293 0 ::1 55690 ::1 49704 3756505259 1676677374 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........1Vk +590 0.005741596 1 ::1 49704 ::1 55690 1676677374 3756505389 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +592 0.005885124 0 ::1 55690 ::1 49704 3756505389 1676677406 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........1Vk +594 0.006049633 1 ::1 49704 ::1 55690 1676677406 3756505531 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +596 0.006182671 0 ::1 55690 ::1 49704 3756505531 1676677438 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........1Vk +598 0.006332397 1 ::1 49704 ::1 55690 1676677438 3756505647 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +600 0.006494761 0 ::1 55690 ::1 49704 3756505647 1676677470 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........1Vk +602 0.006639957 1 ::1 49704 ::1 55690 1676677470 3756505777 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +604 0.006772757 0 ::1 55690 ::1 49704 3756505777 1676677502 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........1Vk +606 0.006922245 1 ::1 49704 ::1 55690 1676677502 3756505905 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +608 0.007035494 0 ::1 55690 ::1 49704 3756505905 1676677534 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........1Vk +610 0.007248402 1 ::1 49704 ::1 55690 1676677534 3756506031 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +612 0.007814169 0 ::1 55690 ::1 49704 3756506031 1676677566 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........1Vk +614 0.007995129 1 ::1 49704 ::1 55690 1676677566 3756506163 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +616 0.008185625 0 ::1 55690 ::1 49704 3756506163 1676677598 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........1Vk +618 0.008348942 1 ::1 49704 ::1 55690 1676677598 3756506315 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +636 0.110626221 0 ::1 55690 ::1 49704 3756506315 1676677630 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +638 0.110847712 1 ::1 49704 ::1 55690 1676677630 3756506355 44 05000203100000002c00000012000000140000000000000000000000aa028d02 ........,........................|.H.a[j..uE +640 0.111270905 0 ::1 55690 ::1 49704 3756506355 1676677674 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K............ +642 0.112775803 1 ::1 49704 ::1 55690 1676677674 3756506463 28 05000203100000001c00000013000000040000000100000001000000 ............................ +644 0.112965107 0 ::1 55690 ::1 49704 3756506463 1676677702 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +646 0.113133907 1 ::1 49704 ::1 55690 1676677702 3756506523 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +648 0.113345146 0 ::1 55690 ::1 49704 3756506523 1676677794 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +650 0.113839626 1 ::1 49704 ::1 55690 1676677794 3756506655 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +652 0.113969326 0 ::1 55690 ::1 49704 3756506655 1676677826 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +654 0.114118099 1 ::1 49704 ::1 55690 1676677826 3756506791 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +656 0.114242792 0 ::1 55690 ::1 49704 3756506791 1676677858 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +658 0.114384651 1 ::1 49704 ::1 55690 1676677858 3756506921 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +660 0.114511013 0 ::1 55690 ::1 49704 3756506921 1676677890 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +662 0.114729881 1 ::1 49704 ::1 55690 1676677890 3756507053 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +664 0.114866257 0 ::1 55690 ::1 49704 3756507053 1676677922 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +666 0.115024328 1 ::1 49704 ::1 55690 1676677922 3756507195 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +668 0.115154028 0 ::1 55690 ::1 49704 3756507195 1676677954 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +670 0.115297794 1 ::1 49704 ::1 55690 1676677954 3756507337 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +672 0.115422249 0 ::1 55690 ::1 49704 3756507337 1676677986 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +674 0.115608454 1 ::1 49704 ::1 55690 1676677986 3756507491 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +676 0.115735292 0 ::1 55690 ::1 49704 3756507491 1676678018 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +678 0.115874052 1 ::1 49704 ::1 55690 1676678018 3756507619 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +680 0.115997314 0 ::1 55690 ::1 49704 3756507619 1676678050 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +682 0.116137505 1 ::1 49704 ::1 55690 1676678050 3756507761 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +684 0.116261244 0 ::1 55690 ::1 49704 3756507761 1676678082 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +686 0.116399527 1 ::1 49704 ::1 55690 1676678082 3756507901 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +688 0.116525412 0 ::1 55690 ::1 49704 3756507901 1676678114 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +690 0.116666079 1 ::1 49704 ::1 55690 1676678114 3756508039 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +720 0.132911205 0 ::1 55690 ::1 49704 3756508039 1676678146 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +722 0.133106232 1 ::1 49704 ::1 55690 1676678146 3756508079 44 05000203100000002c00000020000000140000000000000000000000f6f0e4b2 ........,... ...................".QM.[....G( +724 0.133260250 0 ::1 55690 ::1 49704 3756508079 1676678190 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K............ +726 0.134613991 1 ::1 49704 ::1 55690 1676678190 3756508183 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +728 0.134743214 0 ::1 55690 ::1 49704 3756508183 1676678218 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K............ +730 0.134903431 1 ::1 49704 ::1 55690 1676678218 3756508243 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +732 0.135104895 0 ::1 55690 ::1 49704 3756508243 1676678310 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K............ +734 0.135354519 1 ::1 49704 ::1 55690 1676678310 3756508371 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +736 0.135478258 0 ::1 55690 ::1 49704 3756508371 1676678342 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K............ +738 0.135643959 1 ::1 49704 ::1 55690 1676678342 3756508503 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +740 0.135770559 0 ::1 55690 ::1 49704 3756508503 1676678374 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K............ +742 0.135929585 1 ::1 49704 ::1 55690 1676678374 3756508629 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +744 0.136056662 0 ::1 55690 ::1 49704 3756508629 1676678406 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K............ +746 0.136218309 1 ::1 49704 ::1 55690 1676678406 3756508757 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +748 0.136474848 0 ::1 55690 ::1 49704 3756508757 1676678438 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K............ +750 0.136634588 1 ::1 49704 ::1 55690 1676678438 3756508895 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +752 0.136760473 0 ::1 55690 ::1 49704 3756508895 1676678470 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K............ +757 0.136979580 1 ::1 49704 ::1 55690 1676678470 3756509033 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +760 0.137136698 0 ::1 55690 ::1 49704 3756509033 1676678502 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K............ +763 0.137340069 1 ::1 49704 ::1 55690 1676678502 3756509183 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +766 0.137465477 0 ::1 55690 ::1 49704 3756509183 1676678534 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K............ +768 0.137627363 1 ::1 49704 ::1 55690 1676678534 3756509307 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +770 0.137754440 0 ::1 55690 ::1 49704 3756509307 1676678566 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K............ +775 0.137946844 1 ::1 49704 ::1 55690 1676678566 3756509445 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +778 0.138074398 0 ::1 55690 ::1 49704 3756509445 1676678598 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K............ +780 0.138233662 1 ::1 49704 ::1 55690 1676678598 3756509581 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +783 0.138367653 0 ::1 55690 ::1 49704 3756509581 1676678630 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K............ +786 0.138525248 1 ::1 49704 ::1 55690 1676678630 3756509715 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +788 0.138694286 0 ::1 55690 ::1 49704 3756509715 1676678662 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +790 0.138877392 1 ::1 49704 ::1 55690 1676678662 3756509855 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +792 0.139011621 0 ::1 55690 ::1 49704 3756509855 1676678694 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K............ +794 0.139172792 1 ::1 49704 ::1 55690 1676678694 3756510001 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +811 0.242377043 0 ::1 55690 ::1 49704 3756510001 1676678726 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +815 0.242609262 1 ::1 49704 ::1 55690 1676678726 3756510041 44 05000203100000002c0000003000000014000000000000000000000059d04b4c ........,...0...............Y.KL.N0E..y..... +818 0.242793560 0 ::1 55690 ::1 49704 3756510041 1676678770 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........Y.KL +820 0.244582653 1 ::1 49704 ::1 55690 1676678770 3756510153 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +822 0.244729757 0 ::1 55690 ::1 49704 3756510153 1676678798 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........Y.KL +824 0.244911909 1 ::1 49704 ::1 55690 1676678798 3756510213 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +826 0.245135307 0 ::1 55690 ::1 49704 3756510213 1676678890 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........Y.KL +828 0.245367527 1 ::1 49704 ::1 55690 1676678890 3756510349 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +830 0.245615005 0 ::1 55690 ::1 49704 3756510349 1676678922 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........Y.KL +832 0.245803833 1 ::1 49704 ::1 55690 1676678922 3756510489 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +834 0.245940208 0 ::1 55690 ::1 49704 3756510489 1676678954 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........Y.KL +836 0.246138811 1 ::1 49704 ::1 55690 1676678954 3756510623 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +838 0.246299505 0 ::1 55690 ::1 49704 3756510623 1676678986 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........Y.KL +840 0.246494293 1 ::1 49704 ::1 55690 1676678986 3756510759 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +842 0.246634483 0 ::1 55690 ::1 49704 3756510759 1676679018 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........Y.KL +844 0.246806383 1 ::1 49704 ::1 55690 1676679018 3756510905 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +846 0.246943712 0 ::1 55690 ::1 49704 3756510905 1676679050 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........Y.KL +848 0.247131109 1 ::1 49704 ::1 55690 1676679050 3756511051 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +850 0.247293472 0 ::1 55690 ::1 49704 3756511051 1676679082 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........Y.KL +852 0.247540236 1 ::1 49704 ::1 55690 1676679082 3756511209 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +854 0.247688293 0 ::1 55690 ::1 49704 3756511209 1676679114 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........Y.KL +856 0.247890949 1 ::1 49704 ::1 55690 1676679114 3756511341 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +858 0.248032808 0 ::1 55690 ::1 49704 3756511341 1676679146 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........Y.KL +860 0.248205900 1 ::1 49704 ::1 55690 1676679146 3756511487 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +862 0.248372316 0 ::1 55690 ::1 49704 3756511487 1676679178 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........Y.KL +864 0.248540878 1 ::1 49704 ::1 55690 1676679178 3756511631 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +866 0.248678923 0 ::1 55690 ::1 49704 3756511631 1676679210 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........Y.KL +868 0.248844385 1 ::1 49704 ::1 55690 1676679210 3756511773 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +870 0.249028206 0 ::1 55690 ::1 49704 3756511773 1676679242 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........Y.KL +872 0.249194622 1 ::1 49704 ::1 55690 1676679242 3756511921 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +874 0.249344826 0 ::1 55690 ::1 49704 3756511921 1676679274 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........Y.KL +876 0.249513865 1 ::1 49704 ::1 55690 1676679274 3756512075 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +912 0.374526501 0 ::1 55690 ::1 49704 3756512075 1676679306 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +914 0.374760151 1 ::1 49704 ::1 55690 1676679306 3756512115 44 05000203100000002c00000040000000140000000000000000000000dbdcac72 ........,...@..................r.Q.O.T. ...x +916 0.374936104 0 ::1 55690 ::1 49704 3756512115 1676679350 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K...........r +918 0.376616478 1 ::1 49704 ::1 55690 1676679350 3756512207 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +920 0.376758814 0 ::1 55690 ::1 49704 3756512207 1676679378 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K...........r +922 0.376931429 1 ::1 49704 ::1 55690 1676679378 3756512267 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +924 0.377158403 0 ::1 55690 ::1 49704 3756512267 1676679470 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K...........r +926 0.377406359 1 ::1 49704 ::1 55690 1676679470 3756512383 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +928 0.377543211 0 ::1 55690 ::1 49704 3756512383 1676679502 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K...........r +930 0.377714634 1 ::1 49704 ::1 55690 1676679502 3756512503 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +932 0.377855778 0 ::1 55690 ::1 49704 3756512503 1676679534 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K...........r +934 0.378026009 1 ::1 49704 ::1 55690 1676679534 3756512617 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +936 0.378166199 0 ::1 55690 ::1 49704 3756512617 1676679566 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K...........r +938 0.378331184 1 ::1 49704 ::1 55690 1676679566 3756512733 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +940 0.378478765 0 ::1 55690 ::1 49704 3756512733 1676679598 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K...........r +942 0.378643990 1 ::1 49704 ::1 55690 1676679598 3756512859 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +944 0.378780365 0 ::1 55690 ::1 49704 3756512859 1676679630 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K...........r +946 0.378942728 1 ::1 49704 ::1 55690 1676679630 3756512985 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +948 0.379081249 0 ::1 55690 ::1 49704 3756512985 1676679662 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K...........r +950 0.379242420 1 ::1 49704 ::1 55690 1676679662 3756513123 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +952 0.379408360 0 ::1 55690 ::1 49704 3756513123 1676679694 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K...........r +954 0.379562140 1 ::1 49704 ::1 55690 1676679694 3756513235 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +956 0.379699707 0 ::1 55690 ::1 49704 3756513235 1676679726 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K...........r +958 0.379913807 1 ::1 49704 ::1 55690 1676679726 3756513361 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +960 0.380062103 0 ::1 55690 ::1 49704 3756513361 1676679758 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K...........r +962 0.380229950 1 ::1 49704 ::1 55690 1676679758 3756513485 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +964 0.380396605 0 ::1 55690 ::1 49704 3756513485 1676679790 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K...........r +966 0.380523205 1 ::1 49704 ::1 55690 1676679790 3756513607 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +968 0.380687952 0 ::1 55690 ::1 49704 3756513607 1676679822 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K...........r +970 0.380854130 1 ::1 49704 ::1 55690 1676679822 3756513735 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +972 0.381002903 0 ::1 55690 ::1 49704 3756513735 1676679854 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K...........r +974 0.381167889 1 ::1 49704 ::1 55690 1676679854 3756513869 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +976 0.381299734 0 ::1 55690 ::1 49704 3756513869 1676679886 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K...........r +978 0.381547213 1 ::1 49704 ::1 55690 1676679886 3756513999 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +980 0.381736755 0 ::1 55690 ::1 49704 3756513999 1676679918 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K...........r +982 0.382043123 1 ::1 49704 ::1 55690 1676679918 3756514127 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3004 7.099546909 0 ::1 55690 ::1 49704 3756514127 1676679950 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3006 7.099748135 1 ::1 49704 ::1 55690 1676679950 3756514167 44 05000203100000002c0000005200000014000000000000000000000051443416 ........,...R...............QD4....M....L.cH +3008 7.100040674 0 ::1 55690 ::1 49704 3756514167 1676679994 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K........QD4. +3010 7.101858854 1 ::1 49704 ::1 55690 1676679994 3756514267 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3012 7.102012873 0 ::1 55690 ::1 49704 3756514267 1676680022 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K........QD4. +3014 7.102253437 1 ::1 49704 ::1 55690 1676680022 3756514327 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3016 7.102553368 0 ::1 55690 ::1 49704 3756514327 1676680114 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K........QD4. +3018 7.102873325 1 ::1 49704 ::1 55690 1676680114 3756514451 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3020 7.103011608 0 ::1 55690 ::1 49704 3756514451 1676680146 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K........QD4. +3022 7.103171349 1 ::1 49704 ::1 55690 1676680146 3756514579 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3024 7.103318691 0 ::1 55690 ::1 49704 3756514579 1676680178 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K........QD4. +3026 7.103500843 1 ::1 49704 ::1 55690 1676680178 3756514701 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3028 7.103642464 0 ::1 55690 ::1 49704 3756514701 1676680210 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K........QD4. +3030 7.103795528 1 ::1 49704 ::1 55690 1676680210 3756514825 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3032 7.104039907 0 ::1 55690 ::1 49704 3756514825 1676680242 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K........QD4. +3034 7.104199886 1 ::1 49704 ::1 55690 1676680242 3756514959 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3036 7.104352951 0 ::1 55690 ::1 49704 3756514959 1676680274 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K........QD4. +3038 7.104502439 1 ::1 49704 ::1 55690 1676680274 3756515093 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3040 7.104691744 0 ::1 55690 ::1 49704 3756515093 1676680306 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K........QD4. +3042 7.104838133 1 ::1 49704 ::1 55690 1676680306 3756515239 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3044 7.104978323 0 ::1 55690 ::1 49704 3756515239 1676680338 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K........QD4. +3046 7.105203152 1 ::1 49704 ::1 55690 1676680338 3756515359 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3048 7.105391026 0 ::1 55690 ::1 49704 3756515359 1676680370 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K........QD4. +3050 7.105616570 1 ::1 49704 ::1 55690 1676680370 3756515493 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3052 7.105746508 0 ::1 55690 ::1 49704 3756515493 1676680402 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K........QD4. +3054 7.105894804 1 ::1 49704 ::1 55690 1676680402 3756515625 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3056 7.106121302 0 ::1 55690 ::1 49704 3756515625 1676680434 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K........QD4. +3058 7.106345415 1 ::1 49704 ::1 55690 1676680434 3756515755 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +3060 7.106532574 0 ::1 55690 ::1 49704 3756515755 1676680466 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K........QD4. +3062 7.106680632 1 ::1 49704 ::1 55690 1676680466 3756515899 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +3064 7.106881618 0 ::1 55690 ::1 49704 3756515899 1676680498 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K........QD4. +3066 7.107075214 1 ::1 49704 ::1 55690 1676680498 3756516047 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +3068 7.107227325 0 ::1 55690 ::1 49704 3756516047 1676680530 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K........QD4. +3070 7.107376337 1 ::1 49704 ::1 55690 1676680530 3756516193 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +3072 7.107616663 0 ::1 55690 ::1 49704 3756516193 1676680562 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K........QD4. +3074 7.107764959 1 ::1 49704 ::1 55690 1676680562 3756516351 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3118 7.188285351 0 ::1 55690 ::1 49704 3756516351 1676680594 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3120 7.188530922 1 ::1 49704 ::1 55690 1676680594 3756516391 44 05000203100000002c00000064000000140000000000000000000000de4f468a ........,...d................OF..QVG...~=v.. +3122 7.188753605 0 ::1 55690 ::1 49704 3756516391 1676680638 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K.........OF. +3124 7.190442562 1 ::1 49704 ::1 55690 1676680638 3756516475 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3126 7.190622330 0 ::1 55690 ::1 49704 3756516475 1676680666 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K.........OF. +3128 7.190792561 1 ::1 49704 ::1 55690 1676680666 3756516535 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3130 7.191162825 0 ::1 55690 ::1 49704 3756516535 1676680758 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K.........OF. +3132 7.191360950 1 ::1 49704 ::1 55690 1676680758 3756516643 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3134 7.191523790 0 ::1 55690 ::1 49704 3756516643 1676680790 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K.........OF. +3136 7.191682100 1 ::1 49704 ::1 55690 1676680790 3756516755 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3138 7.191831112 0 ::1 55690 ::1 49704 3756516755 1676680822 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K.........OF. +3140 7.191982031 1 ::1 49704 ::1 55690 1676680822 3756516861 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3142 7.192129850 0 ::1 55690 ::1 49704 3756516861 1676680854 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K.........OF. +3144 7.192278147 1 ::1 49704 ::1 55690 1676680854 3756516969 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3146 7.192423105 0 ::1 55690 ::1 49704 3756516969 1676680886 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K.........OF. +3148 7.192573309 1 ::1 49704 ::1 55690 1676680886 3756517087 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3150 7.192715406 0 ::1 55690 ::1 49704 3756517087 1676680918 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K.........OF. +3152 7.192867994 1 ::1 49704 ::1 55690 1676680918 3756517205 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3154 7.193011284 0 ::1 55690 ::1 49704 3756517205 1676680950 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K.........OF. +3156 7.193163395 1 ::1 49704 ::1 55690 1676680950 3756517335 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3158 7.193306208 0 ::1 55690 ::1 49704 3756517335 1676680982 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K.........OF. +3160 7.193459511 1 ::1 49704 ::1 55690 1676680982 3756517439 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3162 7.193603516 0 ::1 55690 ::1 49704 3756517439 1676681014 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K.........OF. +3164 7.193750858 1 ::1 49704 ::1 55690 1676681014 3756517557 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3166 7.194032907 0 ::1 55690 ::1 49704 3756517557 1676681046 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K.........OF. +3168 7.194194317 1 ::1 49704 ::1 55690 1676681046 3756517673 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3170 7.194350958 0 ::1 55690 ::1 49704 3756517673 1676681078 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K.........OF. +3172 7.194504976 1 ::1 49704 ::1 55690 1676681078 3756517787 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3174 7.195025921 0 ::1 55690 ::1 49704 3756517787 1676681110 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K.........OF. +3175 7.195186615 1 ::1 49704 ::1 55690 1676681110 3756517915 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3177 7.195477724 0 ::1 55690 ::1 49704 3756517915 1676681142 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K.........OF. +3179 7.195648909 1 ::1 49704 ::1 55690 1676681142 3756518035 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3181 7.195938826 0 ::1 55690 ::1 49704 3756518035 1676681174 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K.........OF. +3183 7.196136236 1 ::1 49704 ::1 55690 1676681174 3756518155 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3185 7.196407080 0 ::1 55690 ::1 49704 3756518155 1676681206 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K.........OF. +3187 7.196577787 1 ::1 49704 ::1 55690 1676681206 3756518277 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3189 7.196871758 0 ::1 55690 ::1 49704 3756518277 1676681238 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K.........OF. +3191 7.197042942 1 ::1 49704 ::1 55690 1676681238 3756518411 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3193 7.197389841 0 ::1 55690 ::1 49704 3756518411 1676681270 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K.........OF. +3195 7.197580576 1 ::1 49704 ::1 55690 1676681270 3756518543 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3197 7.197871447 0 ::1 55690 ::1 49704 3756518543 1676681302 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K.........OF. +3199 7.198045254 1 ::1 49704 ::1 55690 1676681302 3756518673 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3201 7.198362112 0 ::1 55690 ::1 49704 3756518673 1676681334 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K.........OF. +3203 7.198530436 1 ::1 49704 ::1 55690 1676681334 3756518811 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3205 7.198817730 0 ::1 55690 ::1 49704 3756518811 1676681366 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K.........OF. +3207 7.198989630 1 ::1 49704 ::1 55690 1676681366 3756518955 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3209 7.199356318 0 ::1 55690 ::1 49704 3756518955 1676681398 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K.........OF. +3211 7.199527979 1 ::1 49704 ::1 55690 1676681398 3756519099 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3213 7.199814081 0 ::1 55690 ::1 49704 3756519099 1676681430 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K.........OF. +3215 7.199986219 1 ::1 49704 ::1 55690 1676681430 3756519215 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3217 7.200304985 0 ::1 55690 ::1 49704 3756519215 1676681462 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K.........OF. +3219 7.200474739 1 ::1 49704 ::1 55690 1676681462 3756519345 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3221 7.200729609 0 ::1 55690 ::1 49704 3756519345 1676681494 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K.........OF. +3223 7.200901031 1 ::1 49704 ::1 55690 1676681494 3756519483 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3225 7.201235533 0 ::1 55690 ::1 49704 3756519483 1676681526 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........OF. +3227 7.201400995 1 ::1 49704 ::1 55690 1676681526 3756519613 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3229 7.201679945 0 ::1 55690 ::1 49704 3756519613 1676681558 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........OF. +3231 7.201852798 1 ::1 49704 ::1 55690 1676681558 3756519735 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3233 7.202171803 0 ::1 55690 ::1 49704 3756519735 1676681590 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........OF. +3235 7.202421904 1 ::1 49704 ::1 55690 1676681590 3756519857 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3237 7.202699900 0 ::1 55690 ::1 49704 3756519857 1676681622 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........OF. +3239 7.203009367 1 ::1 49704 ::1 55690 1676681622 3756519991 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3241 7.203269482 0 ::1 55690 ::1 49704 3756519991 1676681654 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........OF. +3243 7.203417778 1 ::1 49704 ::1 55690 1676681654 3756520119 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3245 7.203605890 0 ::1 55690 ::1 49704 3756520119 1676681686 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........OF. +3247 7.203779697 1 ::1 49704 ::1 55690 1676681686 3756520243 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3249 7.237543106 0 ::1 55690 ::1 49704 3756520243 1676681718 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K.........OF. +3251 7.237824202 1 ::1 49704 ::1 55690 1676681718 3756520759 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3257 7.274376869 0 ::1 55690 ::1 49704 3756520759 1676681746 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3259 7.274597406 1 ::1 49704 ::1 55690 1676681746 3756520799 44 05000203100000002c000000860000001400000000000000000000004c3ea241 ........,...................L>.A...L.....I._ +3261 7.274784803 0 ::1 55690 ::1 49704 3756520799 1676681790 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........L>.A +3263 7.276537180 1 ::1 49704 ::1 55690 1676681790 3756520911 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3265 7.276693821 0 ::1 55690 ::1 49704 3756520911 1676681818 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........L>.A +3267 7.276866436 1 ::1 49704 ::1 55690 1676681818 3756520971 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3269 7.277165174 0 ::1 55690 ::1 49704 3756520971 1676681910 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........L>.A +3271 7.277357340 1 ::1 49704 ::1 55690 1676681910 3756521107 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3273 7.277513981 0 ::1 55690 ::1 49704 3756521107 1676681942 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........L>.A +3275 7.277674437 1 ::1 49704 ::1 55690 1676681942 3756521247 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3277 7.277845621 0 ::1 55690 ::1 49704 3756521247 1676681974 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........L>.A +3279 7.278003931 1 ::1 49704 ::1 55690 1676681974 3756521381 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3281 7.278206587 0 ::1 55690 ::1 49704 3756521381 1676682006 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........L>.A +3283 7.278366566 1 ::1 49704 ::1 55690 1676682006 3756521517 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3285 7.278538227 0 ::1 55690 ::1 49704 3756521517 1676682038 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3287 7.278707743 1 ::1 49704 ::1 55690 1676682038 3756521663 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3289 7.278930902 0 ::1 55690 ::1 49704 3756521663 1676682070 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3291 7.279136181 1 ::1 49704 ::1 55690 1676682070 3756521809 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3293 7.279313564 0 ::1 55690 ::1 49704 3756521809 1676682102 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........L>.A +3295 7.279482126 1 ::1 49704 ::1 55690 1676682102 3756521967 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3297 7.279700756 0 ::1 55690 ::1 49704 3756521967 1676682134 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........L>.A +3299 7.279862642 1 ::1 49704 ::1 55690 1676682134 3756522099 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3301 7.280054331 0 ::1 55690 ::1 49704 3756522099 1676682166 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3303 7.280260801 1 ::1 49704 ::1 55690 1676682166 3756522245 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3305 7.280410528 0 ::1 55690 ::1 49704 3756522245 1676682198 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........L>.A +3307 7.280569553 1 ::1 49704 ::1 55690 1676682198 3756522389 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3309 7.280774832 0 ::1 55690 ::1 49704 3756522389 1676682230 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........L>.A +3311 7.280943871 1 ::1 49704 ::1 55690 1676682230 3756522531 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3313 7.281350136 0 ::1 55690 ::1 49704 3756522531 1676682262 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........L>.A +3315 7.281598330 1 ::1 49704 ::1 55690 1676682262 3756522691 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3317 7.281845808 0 ::1 55690 ::1 49704 3756522691 1676682294 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........L>.A +3319 7.282013655 1 ::1 49704 ::1 55690 1676682294 3756522847 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3321 7.282332659 0 ::1 55690 ::1 49704 3756522847 1676682326 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........L>.A +3323 7.282495022 1 ::1 49704 ::1 55690 1676682326 3756523001 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3325 7.282737017 0 ::1 55690 ::1 49704 3756523001 1676682358 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3327 7.282934189 1 ::1 49704 ::1 55690 1676682358 3756523147 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3329 7.283212423 0 ::1 55690 ::1 49704 3756523147 1676682390 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........L>.A +3331 7.283380747 1 ::1 49704 ::1 55690 1676682390 3756523301 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3333 7.283612490 0 ::1 55690 ::1 49704 3756523301 1676682422 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........L>.A +3335 7.283792019 1 ::1 49704 ::1 55690 1676682422 3756523451 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3337 7.284043074 0 ::1 55690 ::1 49704 3756523451 1676682454 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........L>.A +3339 7.284265518 1 ::1 49704 ::1 55690 1676682454 3756523603 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3341 7.284486055 0 ::1 55690 ::1 49704 3756523603 1676682486 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........L>.A +3343 7.284652710 1 ::1 49704 ::1 55690 1676682486 3756523743 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3345 7.284819603 0 ::1 55690 ::1 49704 3756523743 1676682518 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........L>.A +3347 7.284977674 1 ::1 49704 ::1 55690 1676682518 3756523891 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3349 7.285164118 0 ::1 55690 ::1 49704 3756523891 1676682550 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........L>.A +3351 7.285318613 1 ::1 49704 ::1 55690 1676682550 3756524053 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3353 7.285480261 0 ::1 55690 ::1 49704 3756524053 1676682582 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........L>.A +3355 7.285640717 1 ::1 49704 ::1 55690 1676682582 3756524225 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3357 7.285826445 0 ::1 55690 ::1 49704 3756524225 1676682614 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........L>.A +3360 7.285984516 1 ::1 49704 ::1 55690 1676682614 3756524369 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3384 7.293911457 0 ::1 55690 ::1 49704 3756524369 1676682646 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3387 7.294124603 1 ::1 49704 ::1 55690 1676682646 3756524409 44 05000203100000002c000000a000000014000000000000000000000060d686fd ........,...................`...M..B...v.... +3389 7.294351101 0 ::1 55690 ::1 49704 3756524409 1676682690 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........`... +3391 7.295987368 1 ::1 49704 ::1 55690 1676682690 3756524537 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3393 7.296258211 0 ::1 55690 ::1 49704 3756524537 1676682718 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........`... +3395 7.296431780 1 ::1 49704 ::1 55690 1676682718 3756524597 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3397 7.296665668 0 ::1 55690 ::1 49704 3756524597 1676682810 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........`... +3399 7.296852589 1 ::1 49704 ::1 55690 1676682810 3756524749 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3401 7.297007322 0 ::1 55690 ::1 49704 3756524749 1676682842 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........`... +3403 7.297171116 1 ::1 49704 ::1 55690 1676682842 3756524905 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3405 7.297322750 0 ::1 55690 ::1 49704 3756524905 1676682874 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........`... +3407 7.297483683 1 ::1 49704 ::1 55690 1676682874 3756525055 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3409 7.297632217 0 ::1 55690 ::1 49704 3756525055 1676682906 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........`... +3411 7.297791481 1 ::1 49704 ::1 55690 1676682906 3756525207 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3413 7.297959328 0 ::1 55690 ::1 49704 3756525207 1676682938 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........`... +3415 7.298144579 1 ::1 49704 ::1 55690 1676682938 3756525369 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3417 7.298288107 0 ::1 55690 ::1 49704 3756525369 1676682970 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........`... +3419 7.298447609 1 ::1 49704 ::1 55690 1676682970 3756525531 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3421 7.298594236 0 ::1 55690 ::1 49704 3756525531 1676683002 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........`... +3423 7.298750401 1 ::1 49704 ::1 55690 1676683002 3756525705 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3425 7.298893929 0 ::1 55690 ::1 49704 3756525705 1676683034 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........`... +3427 7.299050570 1 ::1 49704 ::1 55690 1676683034 3756525853 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3429 7.299221277 0 ::1 55690 ::1 49704 3756525853 1676683066 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........`... +3431 7.299377203 1 ::1 49704 ::1 55690 1676683066 3756526015 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3433 7.299521923 0 ::1 55690 ::1 49704 3756526015 1676683098 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........`... +3435 7.299676895 1 ::1 49704 ::1 55690 1676683098 3756526175 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3437 7.299821615 0 ::1 55690 ::1 49704 3756526175 1676683130 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........`... +3439 7.299975872 1 ::1 49704 ::1 55690 1676683130 3756526333 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3441 7.300220728 0 ::1 55690 ::1 49704 3756526333 1676683162 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........`... +3443 7.300379038 1 ::1 49704 ::1 55690 1676683162 3756526503 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3445 7.300534964 0 ::1 55690 ::1 49704 3756526503 1676683194 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........`... +3447 7.300691605 1 ::1 49704 ::1 55690 1676683194 3756526685 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3453 7.307372093 0 ::1 55690 ::1 49704 3756526685 1676683226 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3455 7.307617664 1 ::1 49704 ::1 55690 1676683226 3756526725 44 05000203100000002c000000b000000014000000000000000000000048350989 ........,...................H5...e%F.jvO.}.. +3457 7.307811737 0 ::1 55690 ::1 49704 3756526725 1676683270 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K........H5.. +3459 7.309617519 1 ::1 49704 ::1 55690 1676683270 3756526821 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3461 7.309800386 0 ::1 55690 ::1 49704 3756526821 1676683298 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........H5.. +3463 7.309970140 1 ::1 49704 ::1 55690 1676683298 3756526881 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3465 7.310229778 0 ::1 55690 ::1 49704 3756526881 1676683390 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........H5.. +3467 7.310421228 1 ::1 49704 ::1 55690 1676683390 3756527001 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3469 7.310568333 0 ::1 55690 ::1 49704 3756527001 1676683422 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........H5.. +3471 7.310721874 1 ::1 49704 ::1 55690 1676683422 3756527125 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3473 7.310864687 0 ::1 55690 ::1 49704 3756527125 1676683454 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K........H5.. +3475 7.311014175 1 ::1 49704 ::1 55690 1676683454 3756527243 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3477 7.311184645 0 ::1 55690 ::1 49704 3756527243 1676683486 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........H5.. +3479 7.311334848 1 ::1 49704 ::1 55690 1676683486 3756527363 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3481 7.311480045 0 ::1 55690 ::1 49704 3756527363 1676683518 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3483 7.311630487 1 ::1 49704 ::1 55690 1676683518 3756527493 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3485 7.311772108 0 ::1 55690 ::1 49704 3756527493 1676683550 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3487 7.311920166 1 ::1 49704 ::1 55690 1676683550 3756527623 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3489 7.312061548 0 ::1 55690 ::1 49704 3756527623 1676683582 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........H5.. +3491 7.312237024 1 ::1 49704 ::1 55690 1676683582 3756527765 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3493 7.312379599 0 ::1 55690 ::1 49704 3756527765 1676683614 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K........H5.. +3495 7.312526703 1 ::1 49704 ::1 55690 1676683614 3756527881 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3497 7.312668800 0 ::1 55690 ::1 49704 3756527881 1676683646 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3499 7.312829733 1 ::1 49704 ::1 55690 1676683646 3756528011 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3501 7.312983274 0 ::1 55690 ::1 49704 3756528011 1676683678 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........H5.. +3503 7.313162804 1 ::1 49704 ::1 55690 1676683678 3756528139 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3505 7.313303232 0 ::1 55690 ::1 49704 3756528139 1676683710 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........H5.. +3507 7.313453436 1 ::1 49704 ::1 55690 1676683710 3756528265 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3509 7.313638449 0 ::1 55690 ::1 49704 3756528265 1676683742 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........H5.. +3511 7.313800812 1 ::1 49704 ::1 55690 1676683742 3756528391 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3513 7.313953876 0 ::1 55690 ::1 49704 3756528391 1676683774 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........H5.. +3515 7.314132214 1 ::1 49704 ::1 55690 1676683774 3756528523 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3517 7.314243793 0 ::1 55690 ::1 49704 3756528523 1676683806 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3519 7.314395428 1 ::1 49704 ::1 55690 1676683806 3756528653 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3521 7.314546108 0 ::1 55690 ::1 49704 3756528653 1676683838 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........H5.. +3523 7.314695358 1 ::1 49704 ::1 55690 1676683838 3756528791 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3525 7.314844847 0 ::1 55690 ::1 49704 3756528791 1676683870 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........H5.. +3527 7.314993143 1 ::1 49704 ::1 55690 1676683870 3756528927 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3529 7.315170288 0 ::1 55690 ::1 49704 3756528927 1676683902 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........H5.. +3531 7.315321207 1 ::1 49704 ::1 55690 1676683902 3756529059 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3533 7.315474749 0 ::1 55690 ::1 49704 3756529059 1676683934 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........H5.. +3535 7.315625191 1 ::1 49704 ::1 55690 1676683934 3756529201 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3537 7.315778017 0 ::1 55690 ::1 49704 3756529201 1676683966 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........H5.. +3539 7.315929413 1 ::1 49704 ::1 55690 1676683966 3756529349 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3545 7.354154110 0 ::1 55690 ::1 49704 3756529349 1676683998 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K.........OF. +3547 7.354433537 1 ::1 49704 ::1 55690 1676683998 3756529639 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3567 7.426665068 0 ::1 55690 ::1 49704 3756529639 1676684026 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K.........OF. +3569 7.426994324 1 ::1 49704 ::1 55690 1676684026 3756529845 28 05000203100000001c000000c7000000040000000100000001000000 ............................ diff --git a/captures/013-loopback-subscribe-scalars/nmx-stream-__1_49704-to-__1_55690.bin b/captures/013-loopback-subscribe-scalars/nmx-stream-__1_49704-to-__1_55690.bin new file mode 100644 index 0000000..50ff4df Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/nmx-stream-__1_49704-to-__1_55690.bin differ diff --git a/captures/013-loopback-subscribe-scalars/nmx-stream-__1_55690-to-__1_49704.bin b/captures/013-loopback-subscribe-scalars/nmx-stream-__1_55690-to-__1_49704.bin new file mode 100644 index 0000000..87063e4 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/nmx-stream-__1_55690-to-__1_49704.bin differ diff --git a/captures/013-loopback-subscribe-scalars/stderr.txt b/captures/013-loopback-subscribe-scalars/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/013-loopback-subscribe-scalars/stdout.txt b/captures/013-loopback-subscribe-scalars/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/013-loopback-subscribe-scalars/tcp-conversations.tsv b/captures/013-loopback-subscribe-scalars/tcp-conversations.tsv new file mode 100644 index 0000000..f96ab1d --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/tcp-conversations.tsv @@ -0,0 +1,54 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2202 42201 0.014104843 21.120358706 +::1:49704 ::1:55690 400 32726 1.841868877 9.268863201 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55707 2 14170 17.516743183 17.593529224 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55691 2 13997 4.162774801 4.250062227 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 21 8281 3.062937498 7.850538492 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 32 3878 3.488809586 18.659576654 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55693 3 2703 5.880111694 8.570306778 +::1:135 ::1:55689 20 2600 1.839112282 9.149029493 +::1:32571 ::1:55686 4 2196 0.271428585 0.278800249 +::1:80 ::1:55699 6 1821 8.108711720 8.113954306 +::1:80 ::1:55688 6 1820 1.078269482 1.085207939 +::1:80 ::1:55695 6 1793 7.654711962 7.672043085 +::1:80 ::1:55701 6 1793 8.275808096 8.282713175 +::1:80 ::1:55709 6 1793 17.654587507 17.662118912 +::1:80 ::1:55711 6 1793 18.275969505 18.283188820 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 14.278897047 14.279339314 +::1:80 ::1:55704 6 1788 12.964008331 12.970309258 +::1:80 ::1:55706 6 1788 13.144596815 13.152675390 +::1:80 ::1:55685 6 1784 0.132244587 0.137961626 +::1:80 ::1:55715 6 1784 20.145525932 20.151889324 +127.0.0.1:57608 127.0.0.1:57631 103 1356 0.000000000 21.034119844 +127.0.0.1:57470 127.0.0.1:57477 102 1344 0.111331940 20.853632927 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55692 2 1202 4.257931471 4.264536619 +::1:808 ::1:55800 2 1150 7.795531988 7.796185493 +10.100.0.48:1433 10.100.0.48:49792 8 1028 3.414984226 13.422883272 +127.0.0.1:57684 127.0.0.1:57745 84 1008 0.111132145 20.848757505 +127.0.0.1:57484 127.0.0.1:57746 84 1008 0.152905226 20.730762720 +127.0.0.1:57485 127.0.0.1:57747 84 1008 0.182778597 20.728587389 +10.100.0.48:1433 10.100.0.48:49805 12 1002 6.046750784 16.048755169 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55697 6 913 7.831645250 7.852319717 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55696 6 900 7.804462910 7.828284502 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55713 2 661 18.816482067 18.816777945 +::1:808 ::1:49859 1 499 3.618317842 3.618317842 +::1:80 ::1:55684 2 332 0.126199722 0.129461765 +::1:80 ::1:55687 2 332 1.070904970 1.075048685 +::1:80 ::1:55694 2 332 7.644986153 7.649352074 +::1:80 ::1:55698 2 332 8.102459192 8.106237411 +::1:80 ::1:55700 2 332 8.268062115 8.272379875 +::1:80 ::1:55703 2 332 12.957557678 12.960731030 +::1:80 ::1:55705 2 332 13.137296677 13.140454054 +::1:80 ::1:55708 2 332 17.646489620 17.651287794 +::1:80 ::1:55710 2 332 18.268631458 18.272712708 +::1:80 ::1:55714 2 332 20.139264107 20.142595291 +::1:49704 ::1:49829 2 270 17.341436148 17.341765881 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55702 1 52 8.300225735 8.300225735 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55712 1 52 18.301669598 18.301669598 +127.0.0.1:61590 127.0.0.1:63342 4 24 4.885199547 19.887091637 +127.0.0.1:49787 127.0.0.1:49788 19 19 1.636640072 18.816663742 +10.100.0.48:1433 10.100.0.48:50767 2 2 3.032744408 3.201935291 +10.100.0.48:1433 10.100.0.48:49936 2 2 14.608920097 15.743872643 +10.100.0.48:1433 10.100.0.48:49934 2 2 15.148032188 15.925254107 +10.100.0.48:1433 10.100.0.48:49935 2 2 15.152350664 16.094336748 +10.100.0.48:1433 10.100.0.48:49933 2 2 15.202023506 16.886431694 diff --git a/captures/013-loopback-subscribe-scalars/tcp-payload-57415-57433-decoded.tsv b/captures/013-loopback-subscribe-scalars/tcp-payload-57415-57433-decoded.tsv new file mode 100644 index 0000000..bec5fa5 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/tcp-payload-57415-57433-decoded.tsv @@ -0,0 +1,2203 @@ +frame time_relative direction src dst seq payload_len first_i32 second_i32 third_i32 first_u32_hex length_prefixed body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +3 0.000000000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331486956 12 26 702730 0 0x0000001a 0 26 702730 0 1a 00 00 00 0a b9 0a 00 00 00 00 00 ............ +5 0.000163317 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331486968 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -22872064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +7 0.000452518 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824764 12 -1 702730 0 0xffffffff 0 -1 702730 0 ff ff ff ff 0a b9 0a 00 00 00 00 00 ............ +9 0.001082182 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824776 12 22 694327 0 0x00000016 0 22 694327 0 16 00 00 00 37 98 0a 00 00 00 00 00 ....7....... +11 0.001294136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824788 22 18 2031267 0 0x00000012 1 2031267 0 196609 0 12 00 00 00 a3 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +13 0.001641750 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331486994 12 -1 694327 0 0xffffffff 0 -1 694327 0 ff ff ff ff 37 98 0a 00 00 00 00 00 ....7....... +16 0.097028494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824810 12 -2 79803 79820 0xfffffffe 0 -2 79803 79820 fe ff ff ff bb 37 01 00 cc 37 01 00 .....7...7.. +21 0.104195833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487006 12 26 702731 0 0x0000001a 0 26 702731 0 1a 00 00 00 0b b9 0a 00 00 00 00 00 ............ +23 0.104389191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487018 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -22740992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +25 0.104698181 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824822 12 -1 702731 0 0xffffffff 0 -1 702731 0 ff ff ff ff 0b b9 0a 00 00 00 00 00 ............ +27 0.105268955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824834 12 22 694328 0 0x00000016 0 22 694328 0 16 00 00 00 38 98 0a 00 00 00 00 00 ....8....... +29 0.105516672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824846 22 18 2031269 0 0x00000012 1 2031269 0 196609 0 12 00 00 00 a5 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +31 0.105795622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487044 12 -1 694328 0 0xffffffff 0 -1 694328 0 ff ff ff ff 38 98 0a 00 00 00 00 00 ....8....... +41 0.115432262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487056 12 101 702732 0 0x00000065 0 101 702732 0 65 00 00 00 0c b9 0a 00 00 00 00 00 e........... +44 0.115621805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487068 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 25 ff 01 00 00 00 00 00 74 a2 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 25 ff 01 00 00 00 00 .....!...o3.......%.......t.......?.....3...|8.. +46 0.115892172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824868 12 -1 702732 0 0xffffffff 0 -1 702732 0 ff ff ff ff 0c b9 0a 00 00 00 00 00 ............ +49 0.116867065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824880 12 52 694329 0 0x00000034 0 52 694329 0 34 00 00 00 39 98 0a 00 00 00 00 00 4...9....... +54 0.117046595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824892 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 25 ff 01 00 00 00 00 00 00 00 62 71 2d 38 4a 01 00 00 "0...Dk.................L."".([.....%.........bq-8" +56 0.117314577 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487169 12 -1 694329 0 0xffffffff 0 -1 694329 0 ff ff ff ff 39 98 0a 00 00 00 00 00 ....9....... +62 0.118206024 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487181 12 30 702733 0 0x0000001e 0 30 702733 0 1e 00 00 00 0d b9 0a 00 00 00 00 00 ............ +65 0.118353844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487193 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -22609920 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +67 0.118670940 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824944 12 -1 702733 0 0xffffffff 0 -1 702733 0 ff ff ff ff 0d b9 0a 00 00 00 00 00 ............ +70 0.119089842 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824956 12 26 694330 0 0x0000001a 0 26 694330 0 1a 00 00 00 3a 98 0a 00 00 00 00 00 ....:....... +73 0.119377851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824968 26 22 2031271 0 0x00000016 1 2031271 0 196609 0 16 00 00 00 a7 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +75 0.119767427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487223 12 -1 694330 0 0xffffffff 0 -1 694330 0 ff ff ff ff 3a 98 0a 00 00 00 00 00 ....:....... +89 0.138702393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487235 12 -2 79821 79803 0xfffffffe 0 -2 79821 79803 fe ff ff ff cd 37 01 00 bb 37 01 00 .....7...7.. +99 0.207998991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487247 12 26 702734 0 0x0000001a 0 26 702734 0 1a 00 00 00 0e b9 0a 00 00 00 00 00 ............ +101 0.208166838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487259 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -22478848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +103 0.208527565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375824994 12 -1 702734 0 0xffffffff 0 -1 702734 0 ff ff ff ff 0e b9 0a 00 00 00 00 00 ............ +105 0.209092140 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825006 12 22 694331 0 0x00000016 0 22 694331 0 16 00 00 00 3b 98 0a 00 00 00 00 00 ....;....... +107 0.209255219 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825018 22 18 2031273 0 0x00000012 1 2031273 0 196609 0 12 00 00 00 a9 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +109 0.209585667 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487285 12 -1 694331 0 0xffffffff 0 -1 694331 0 ff ff ff ff 3b 98 0a 00 00 00 00 00 ....;....... +126 0.312157869 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487297 12 26 702735 0 0x0000001a 0 26 702735 0 1a 00 00 00 0f b9 0a 00 00 00 00 00 ............ +128 0.312380552 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487309 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -22347776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +130 0.312788963 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825040 12 -1 702735 0 0xffffffff 0 -1 702735 0 ff ff ff ff 0f b9 0a 00 00 00 00 00 ............ +132 0.313316345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825052 12 22 694332 0 0x00000016 0 22 694332 0 16 00 00 00 3c 98 0a 00 00 00 00 00 ....<....... +134 0.313554764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825064 22 18 2031275 0 0x00000012 1 2031275 0 196609 0 12 00 00 00 ab fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +136 0.313904047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487335 12 -1 694332 0 0xffffffff 0 -1 694332 0 ff ff ff ff 3c 98 0a 00 00 00 00 00 ....<....... +138 0.415071487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487347 12 26 702736 0 0x0000001a 0 26 702736 0 1a 00 00 00 10 b9 0a 00 00 00 00 00 ............ +140 0.415252686 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487359 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -22216704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +142 0.415771484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825086 12 -1 702736 0 0xffffffff 0 -1 702736 0 ff ff ff ff 10 b9 0a 00 00 00 00 00 ............ +144 0.416332245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825098 12 22 694333 0 0x00000016 0 22 694333 0 16 00 00 00 3d 98 0a 00 00 00 00 00 ....=....... +146 0.416581869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825110 22 18 2031277 0 0x00000012 1 2031277 0 196609 0 12 00 00 00 ad fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +148 0.416859627 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487385 12 -1 694333 0 0xffffffff 0 -1 694333 0 ff ff ff ff 3d 98 0a 00 00 00 00 00 ....=....... +150 0.419367313 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487397 12 34 702737 0 0x00000022 0 34 702737 0 22 00 00 00 11 b9 0a 00 00 00 00 00 """..........." +152 0.419558048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487409 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -14286848 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 26 ff 01 00 00 00 00 00 a4 a3 0d c3 9d 01 00 00 .....!...o3.......&............... +154 0.419649363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487443 12 67 702738 0 0x00000043 0 67 702738 0 43 00 00 00 12 b9 0a 00 00 00 00 00 C........... +156 0.419757366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487455 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 26 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 98 40 de 86 ?.....3...|8...........&.......=B.....&......... +157 0.419851542 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825132 12 -1 702737 0 0xffffffff 0 -1 702737 0 ff ff ff ff 11 b9 0a 00 00 00 00 00 ............ +159 0.420154333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825144 12 -1 702738 0 0xffffffff 0 -1 702738 0 ff ff ff ff 12 b9 0a 00 00 00 00 00 ............ +161 0.421870708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825156 12 52 694334 0 0x00000034 0 52 694334 0 34 00 00 00 3e 98 0a 00 00 00 00 00 4...>....... +163 0.422058821 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825168 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 26 ff 01 00 00 00 00 00 00 00 80 fa 5b 38 4a 01 00 00 "0...Dk.................L."".([.....&...........[8" +165 0.422499895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487522 12 -1 694334 0 0xffffffff 0 -1 694334 0 ff ff ff ff 3e 98 0a 00 00 00 00 00 ....>....... +167 0.423613787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487534 12 30 702739 0 0x0000001e 0 30 702739 0 1e 00 00 00 13 b9 0a 00 00 00 00 00 ............ +169 0.423835993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487546 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -22085632 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +171 0.424252272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825220 12 -1 702739 0 0xffffffff 0 -1 702739 0 ff ff ff ff 13 b9 0a 00 00 00 00 00 ............ +173 0.424923658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825232 12 26 694335 0 0x0000001a 0 26 694335 0 1a 00 00 00 3f 98 0a 00 00 00 00 00 ....?....... +175 0.425133705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825244 26 22 2031279 0 0x00000016 1 2031279 0 196609 0 16 00 00 00 af fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +177 0.425496101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487576 12 -1 694335 0 0xffffffff 0 -1 694335 0 ff ff ff ff 3f 98 0a 00 00 00 00 00 ....?....... +181 0.518162727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487588 12 26 702740 0 0x0000001a 0 26 702740 0 1a 00 00 00 14 b9 0a 00 00 00 00 00 ............ +183 0.518343925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487600 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -21954560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +185 0.518838167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825270 12 -1 702740 0 0xffffffff 0 -1 702740 0 ff ff ff ff 14 b9 0a 00 00 00 00 00 ............ +187 0.519228697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825282 12 22 694336 0 0x00000016 0 22 694336 0 16 00 00 00 40 98 0a 00 00 00 00 00 ....@....... +189 0.519505024 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825294 22 18 2031281 0 0x00000012 1 2031281 0 196609 0 12 00 00 00 b1 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +191 0.519782543 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487626 12 -1 694336 0 0xffffffff 0 -1 694336 0 ff ff ff ff 40 98 0a 00 00 00 00 00 ....@....... +193 0.599744558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825316 12 -2 79804 79821 0xfffffffe 0 -2 79804 79821 fe ff ff ff bc 37 01 00 cd 37 01 00 .....7...7.. +201 0.622550488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487638 12 26 702741 0 0x0000001a 0 26 702741 0 1a 00 00 00 15 b9 0a 00 00 00 00 00 ............ +203 0.622774363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487650 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -21823488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +205 0.623008013 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825328 12 -1 702741 0 0xffffffff 0 -1 702741 0 ff ff ff ff 15 b9 0a 00 00 00 00 00 ............ +207 0.624142647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825340 12 22 694337 0 0x00000016 0 22 694337 0 16 00 00 00 41 98 0a 00 00 00 00 00 ....A....... +209 0.624346972 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825352 22 18 2031283 0 0x00000012 1 2031283 0 196609 0 12 00 00 00 b3 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +211 0.624691725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487676 12 -1 694337 0 0xffffffff 0 -1 694337 0 ff ff ff ff 41 98 0a 00 00 00 00 00 ....A....... +213 0.639738560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487688 12 -2 79822 79804 0xfffffffe 0 -2 79822 79804 fe ff ff ff ce 37 01 00 bc 37 01 00 .....7...7.. +223 0.726078987 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487700 12 26 702742 0 0x0000001a 0 26 702742 0 1a 00 00 00 16 b9 0a 00 00 00 00 00 ............ +225 0.726269007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487712 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -21692416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +227 0.726360559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487738 12 101 702743 0 0x00000065 0 101 702743 0 65 00 00 00 17 b9 0a 00 00 00 00 00 e........... +229 0.726485014 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487750 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 27 ff 01 00 00 00 00 00 d7 a4 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 27 ff 01 00 00 00 00 .....!...o3.......'...............?.....3...|8.. +231 0.726681709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825374 12 -1 702742 0 0xffffffff 0 -1 702742 0 ff ff ff ff 16 b9 0a 00 00 00 00 00 ............ +233 0.726940155 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825386 12 -1 702743 0 0xffffffff 0 -1 702743 0 ff ff ff ff 17 b9 0a 00 00 00 00 00 ............ +235 0.727233887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825398 12 22 694338 0 0x00000016 0 22 694338 0 16 00 00 00 42 98 0a 00 00 00 00 00 ....B....... +237 0.727395296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825410 22 18 2031285 0 0x00000012 1 2031285 0 196609 0 12 00 00 00 b5 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +239 0.727807760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825432 12 52 694339 0 0x00000034 0 52 694339 0 34 00 00 00 43 98 0a 00 00 00 00 00 4...C....... +240 0.727820635 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487851 12 -1 694338 0 0xffffffff 0 -1 694338 0 ff ff ff ff 42 98 0a 00 00 00 00 00 ....B....... +241 0.727929354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825444 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 27 ff 01 00 00 00 00 00 00 00 22 ab 8a 38 4a 01 00 00 "0...Dk.................L."".([.....'.........""..8" +244 0.728035927 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487863 12 -1 694339 0 0xffffffff 0 -1 694339 0 ff ff ff ff 43 98 0a 00 00 00 00 00 ....C....... +246 0.728932142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487875 12 30 702744 0 0x0000001e 0 30 702744 0 1e 00 00 00 18 b9 0a 00 00 00 00 00 ............ +248 0.729093790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487887 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -21561344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +250 0.729329348 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825496 12 -1 702744 0 0xffffffff 0 -1 702744 0 ff ff ff ff 18 b9 0a 00 00 00 00 00 ............ +252 0.729888439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825508 12 26 694340 0 0x0000001a 0 26 694340 0 1a 00 00 00 44 98 0a 00 00 00 00 00 ....D....... +254 0.730063677 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825520 26 22 2031287 0 0x00000016 1 2031287 0 196609 0 16 00 00 00 b7 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +256 0.730309248 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487917 12 -1 694340 0 0xffffffff 0 -1 694340 0 ff ff ff ff 44 98 0a 00 00 00 00 00 ....D....... +262 0.829255819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487929 12 26 702745 0 0x0000001a 0 26 702745 0 1a 00 00 00 19 b9 0a 00 00 00 00 00 ............ +264 0.829479694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487941 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -21430272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +266 0.829847336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825546 12 -1 702745 0 0xffffffff 0 -1 702745 0 ff ff ff ff 19 b9 0a 00 00 00 00 00 ............ +268 0.830766201 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825558 12 22 694341 0 0x00000016 0 22 694341 0 16 00 00 00 45 98 0a 00 00 00 00 00 ....E....... +270 0.830978870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825570 22 18 2031289 0 0x00000012 1 2031289 0 196609 0 12 00 00 00 b9 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +272 0.831318140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487967 12 -1 694341 0 0xffffffff 0 -1 694341 0 ff ff ff ff 45 98 0a 00 00 00 00 00 ....E....... +274 0.933066368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487979 12 26 702746 0 0x0000001a 0 26 702746 0 1a 00 00 00 1a b9 0a 00 00 00 00 00 ............ +276 0.933256149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331487991 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -21299200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +278 0.933709145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825592 12 -1 702746 0 0xffffffff 0 -1 702746 0 ff ff ff ff 1a b9 0a 00 00 00 00 00 ............ +280 0.934539080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825604 12 22 694342 0 0x00000016 0 22 694342 0 16 00 00 00 46 98 0a 00 00 00 00 00 ....F....... +282 0.934772968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825616 22 18 2031291 0 0x00000012 1 2031291 0 196609 0 12 00 00 00 bb fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +284 0.935111523 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488017 12 -1 694342 0 0xffffffff 0 -1 694342 0 ff ff ff ff 46 98 0a 00 00 00 00 00 ....F....... +288 1.030779600 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488029 12 101 702747 0 0x00000065 0 101 702747 0 65 00 00 00 1b b9 0a 00 00 00 00 00 e........... +290 1.030981064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488041 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 28 ff 01 00 00 00 00 00 08 a6 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 28 ff 01 00 00 00 00 .....!...o3.......(...............?.....3...|8.. +292 1.031373262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825638 12 -1 702747 0 0xffffffff 0 -1 702747 0 ff ff ff ff 1b b9 0a 00 00 00 00 00 ............ +294 1.032189608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825650 12 52 694343 0 0x00000034 0 52 694343 0 34 00 00 00 47 98 0a 00 00 00 00 00 4...G....... +296 1.032389641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825662 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 28 ff 01 00 00 00 00 00 00 00 ce 19 b9 38 4a 01 00 00 "0...Dk.................L."".([.....(............8" +298 1.032782316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488142 12 -1 694343 0 0xffffffff 0 -1 694343 0 ff ff ff ff 47 98 0a 00 00 00 00 00 ....G....... +300 1.033469677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488154 12 30 702748 0 0x0000001e 0 30 702748 0 1e 00 00 00 1c b9 0a 00 00 00 00 00 ............ +302 1.033609867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488166 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -21168128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bd fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +304 1.034201145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825714 12 -1 702748 0 0xffffffff 0 -1 702748 0 ff ff ff ff 1c b9 0a 00 00 00 00 00 ............ +306 1.034456491 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825726 12 26 694344 0 0x0000001a 0 26 694344 0 1a 00 00 00 48 98 0a 00 00 00 00 00 ....H....... +308 1.034608364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825738 26 22 2031293 0 0x00000016 1 2031293 0 196609 0 16 00 00 00 bd fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +310 1.034997225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488196 12 -1 694344 0 0xffffffff 0 -1 694344 0 ff ff ff ff 48 98 0a 00 00 00 00 00 ....H....... +312 1.036124945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488208 12 26 702749 0 0x0000001a 0 26 702749 0 1a 00 00 00 1d b9 0a 00 00 00 00 00 ............ +314 1.036262751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488220 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -21037056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +316 1.036631346 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825764 12 -1 702749 0 0xffffffff 0 -1 702749 0 ff ff ff ff 1d b9 0a 00 00 00 00 00 ............ +318 1.037332535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825776 12 22 694345 0 0x00000016 0 22 694345 0 16 00 00 00 49 98 0a 00 00 00 00 00 ....I....... +320 1.037481546 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825788 22 18 2031295 0 0x00000012 1 2031295 0 196609 0 12 00 00 00 bf fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +322 1.037860632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488246 12 -1 694345 0 0xffffffff 0 -1 694345 0 ff ff ff ff 49 98 0a 00 00 00 00 00 ....I....... +358 1.101044416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825810 12 -2 79805 79822 0xfffffffe 0 -2 79805 79822 fe ff ff ff bd 37 01 00 ce 37 01 00 .....7...7.. +362 1.139498472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488258 12 26 702750 0 0x0000001a 0 26 702750 0 1a 00 00 00 1e b9 0a 00 00 00 00 00 ............ +364 1.139685154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488270 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -20905984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +367 1.140248060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488296 12 -2 79823 79805 0xfffffffe 0 -2 79823 79805 fe ff ff ff cf 37 01 00 bd 37 01 00 .....7...7.. +368 1.140265942 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825822 12 -1 702750 0 0xffffffff 0 -1 702750 0 ff ff ff ff 1e b9 0a 00 00 00 00 00 ............ +372 1.140986681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825834 12 22 694346 0 0x00000016 0 22 694346 0 16 00 00 00 4a 98 0a 00 00 00 00 00 ....J....... +374 1.141149998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825846 22 18 2031297 0 0x00000012 1 2031297 0 196609 0 12 00 00 00 c1 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +376 1.141397476 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488308 12 -1 694346 0 0xffffffff 0 -1 694346 0 ff ff ff ff 4a 98 0a 00 00 00 00 00 ....J....... +384 1.243165970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488320 12 26 702751 0 0x0000001a 0 26 702751 0 1a 00 00 00 1f b9 0a 00 00 00 00 00 ............ +386 1.243477821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488332 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -20774912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +388 1.243943930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825868 12 -1 702751 0 0xffffffff 0 -1 702751 0 ff ff ff ff 1f b9 0a 00 00 00 00 00 ............ +390 1.244289637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825880 12 22 694347 0 0x00000016 0 22 694347 0 16 00 00 00 4b 98 0a 00 00 00 00 00 ....K....... +392 1.244486570 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825892 22 18 2031299 0 0x00000012 1 2031299 0 196609 0 12 00 00 00 c3 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +394 1.244859695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488358 12 -1 694347 0 0xffffffff 0 -1 694347 0 ff ff ff ff 4b 98 0a 00 00 00 00 00 ....K....... +400 1.334712744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488370 12 101 702752 0 0x00000065 0 101 702752 0 65 00 00 00 20 b9 0a 00 00 00 00 00 e... ....... +402 1.334908247 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488382 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 29 ff 01 00 00 00 00 00 37 a7 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 29 ff 01 00 00 00 00 .....!...o3.......).......7.......?.....3...|8.. +404 1.335299492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825914 12 -1 702752 0 0xffffffff 0 -1 702752 0 ff ff ff ff 20 b9 0a 00 00 00 00 00 .... ....... +406 1.336164713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825926 12 52 694348 0 0x00000034 0 52 694348 0 34 00 00 00 4c 98 0a 00 00 00 00 00 4...L....... +408 1.336368084 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825938 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 29 ff 01 00 00 00 00 00 00 00 f8 7b e7 38 4a 01 00 00 "0...Dk.................L."".([.....)..........{.8" +410 1.336717367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488483 12 -1 694348 0 0xffffffff 0 -1 694348 0 ff ff ff ff 4c 98 0a 00 00 00 00 00 ....L....... +412 1.337455750 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488495 12 30 702753 0 0x0000001e 0 30 702753 0 1e 00 00 00 21 b9 0a 00 00 00 00 00 ....!....... +414 1.337660074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488507 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -20643840 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c5 fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +416 1.338102818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375825990 12 -1 702753 0 0xffffffff 0 -1 702753 0 ff ff ff ff 21 b9 0a 00 00 00 00 00 ....!....... +418 1.338502884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826002 12 26 694349 0 0x0000001a 0 26 694349 0 1a 00 00 00 4d 98 0a 00 00 00 00 00 ....M....... +420 1.338749409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826014 26 22 2031301 0 0x00000016 1 2031301 0 196609 0 16 00 00 00 c5 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +422 1.338998079 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488537 12 -1 694349 0 0xffffffff 0 -1 694349 0 ff ff ff ff 4d 98 0a 00 00 00 00 00 ....M....... +424 1.346052647 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488549 12 26 702754 0 0x0000001a 0 26 702754 0 1a 00 00 00 22 b9 0a 00 00 00 00 00 "....""......." +426 1.346198320 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488561 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -20512768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +428 1.346576929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826040 12 -1 702754 0 0xffffffff 0 -1 702754 0 ff ff ff ff 22 b9 0a 00 00 00 00 00 "....""......." +430 1.346943855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826052 12 22 694350 0 0x00000016 0 22 694350 0 16 00 00 00 4e 98 0a 00 00 00 00 00 ....N....... +432 1.347107887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826064 22 18 2031303 0 0x00000012 1 2031303 0 196609 0 12 00 00 00 c7 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +434 1.347344875 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488587 12 -1 694350 0 0xffffffff 0 -1 694350 0 ff ff ff ff 4e 98 0a 00 00 00 00 00 ....N....... +436 1.449128866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488599 12 26 702755 0 0x0000001a 0 26 702755 0 1a 00 00 00 23 b9 0a 00 00 00 00 00 ....#....... +438 1.449317455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488611 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -20381696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +440 1.449667454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826086 12 -1 702755 0 0xffffffff 0 -1 702755 0 ff ff ff ff 23 b9 0a 00 00 00 00 00 ....#....... +442 1.450066328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826098 12 22 694351 0 0x00000016 0 22 694351 0 16 00 00 00 4f 98 0a 00 00 00 00 00 ....O....... +444 1.450232506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826110 22 18 2031305 0 0x00000012 1 2031305 0 196609 0 12 00 00 00 c9 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +446 1.450649738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488637 12 -1 694351 0 0xffffffff 0 -1 694351 0 ff ff ff ff 4f 98 0a 00 00 00 00 00 ....O....... +450 1.552840233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488649 12 26 702756 0 0x0000001a 0 26 702756 0 1a 00 00 00 24 b9 0a 00 00 00 00 00 ....$....... +452 1.553053617 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488661 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -20250624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +454 1.553521156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826132 12 -1 702756 0 0xffffffff 0 -1 702756 0 ff ff ff ff 24 b9 0a 00 00 00 00 00 ....$....... +456 1.554333925 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826144 12 22 694352 0 0x00000016 0 22 694352 0 16 00 00 00 50 98 0a 00 00 00 00 00 ....P....... +458 1.554539919 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826156 22 18 2031307 0 0x00000012 1 2031307 0 196609 0 12 00 00 00 cb fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +460 1.554829359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488687 12 -1 694352 0 0xffffffff 0 -1 694352 0 ff ff ff ff 50 98 0a 00 00 00 00 00 ....P....... +464 1.601994753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826178 12 -2 79806 79823 0xfffffffe 0 -2 79806 79823 fe ff ff ff be 37 01 00 cf 37 01 00 .....7...7.. +472 1.639254570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488699 12 101 702757 0 0x00000065 0 101 702757 0 65 00 00 00 25 b9 0a 00 00 00 00 00 e...%....... +474 1.639413357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488711 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 2a ff 01 00 00 00 00 00 68 a8 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 2a ff 01 00 00 00 00 .....!...o3.......*.......h.......?.....3...|8.. +476 1.639710188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826190 12 -1 702757 0 0xffffffff 0 -1 702757 0 ff ff ff ff 25 b9 0a 00 00 00 00 00 ....%....... +479 1.640687704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488812 12 -2 79824 79806 0xfffffffe 0 -2 79824 79806 fe ff ff ff d0 37 01 00 be 37 01 00 .....7...7.. +482 1.640920639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826202 12 52 694353 0 0x00000034 0 52 694353 0 34 00 00 00 51 98 0a 00 00 00 00 00 4...Q....... +484 1.641106844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826214 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 2a ff 01 00 00 00 00 00 00 00 92 fc 15 39 4a 01 00 00 "0...Dk.................L."".([.....*............9" +486 1.641401529 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488824 12 -1 694353 0 0xffffffff 0 -1 694353 0 ff ff ff ff 51 98 0a 00 00 00 00 00 ....Q....... +488 1.642440081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488836 12 30 702758 0 0x0000001e 0 30 702758 0 1e 00 00 00 26 b9 0a 00 00 00 00 00 ....&....... +490 1.642589092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488848 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -20119552 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cd fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +492 1.642849684 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826266 12 -1 702758 0 0xffffffff 0 -1 702758 0 ff ff ff ff 26 b9 0a 00 00 00 00 00 ....&....... +494 1.644637585 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826278 12 26 694354 0 0x0000001a 0 26 694354 0 1a 00 00 00 52 98 0a 00 00 00 00 00 ....R....... +496 1.644813538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826290 26 22 2031309 0 0x00000016 1 2031309 0 196609 0 16 00 00 00 cd fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +498 1.645002127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488878 12 -1 694354 0 0xffffffff 0 -1 694354 0 ff ff ff ff 52 98 0a 00 00 00 00 00 ....R....... +500 1.655705690 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488890 12 26 702759 0 0x0000001a 0 26 702759 0 1a 00 00 00 27 b9 0a 00 00 00 00 00 ....'....... +502 1.655863047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488902 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -19988480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +504 1.656101942 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826316 12 -1 702759 0 0xffffffff 0 -1 702759 0 ff ff ff ff 27 b9 0a 00 00 00 00 00 ....'....... +506 1.656709433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826328 12 22 694355 0 0x00000016 0 22 694355 0 16 00 00 00 53 98 0a 00 00 00 00 00 ....S....... +508 1.656920910 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826340 22 18 2031311 0 0x00000012 1 2031311 0 196609 0 12 00 00 00 cf fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +510 1.657256365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488928 12 -1 694355 0 0xffffffff 0 -1 694355 0 ff ff ff ff 53 98 0a 00 00 00 00 00 ....S....... +518 1.758398056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488940 12 26 702760 0 0x0000001a 0 26 702760 0 1a 00 00 00 28 b9 0a 00 00 00 00 00 ....(....... +520 1.758595228 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488952 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -19857408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +522 1.759148598 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826362 12 -1 702760 0 0xffffffff 0 -1 702760 0 ff ff ff ff 28 b9 0a 00 00 00 00 00 ....(....... +524 1.759556532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826374 12 22 694356 0 0x00000016 0 22 694356 0 16 00 00 00 54 98 0a 00 00 00 00 00 ....T....... +526 1.759723663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826386 22 18 2031313 0 0x00000012 1 2031313 0 196609 0 12 00 00 00 d1 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +528 1.760003567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488978 12 -1 694356 0 0xffffffff 0 -1 694356 0 ff ff ff ff 54 98 0a 00 00 00 00 00 ....T....... +620 1.862058640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331488990 12 26 702761 0 0x0000001a 0 26 702761 0 1a 00 00 00 29 b9 0a 00 00 00 00 00 ....)....... +622 1.862326860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489002 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -19726336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +624 1.862742424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826408 12 -1 702761 0 0xffffffff 0 -1 702761 0 ff ff ff ff 29 b9 0a 00 00 00 00 00 ....)....... +626 1.863321543 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826420 12 22 694357 0 0x00000016 0 22 694357 0 16 00 00 00 55 98 0a 00 00 00 00 00 ....U....... +628 1.863518715 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826432 22 18 2031315 0 0x00000012 1 2031315 0 196609 0 12 00 00 00 d3 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +630 1.863860130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489028 12 -1 694357 0 0xffffffff 0 -1 694357 0 ff ff ff ff 55 98 0a 00 00 00 00 00 ....U....... +692 1.945059776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489040 12 101 702762 0 0x00000065 0 101 702762 0 65 00 00 00 2a b9 0a 00 00 00 00 00 e...*....... +694 1.945235491 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489052 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 2b ff 01 00 00 00 00 00 9a a9 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 2b ff 01 00 00 00 00 .....!...o3.......+...............?.....3...|8.. +696 1.945547819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826454 12 -1 702762 0 0xffffffff 0 -1 702762 0 ff ff ff ff 2a b9 0a 00 00 00 00 00 ....*....... +698 1.946393967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826466 12 52 694358 0 0x00000034 0 52 694358 0 34 00 00 00 56 98 0a 00 00 00 00 00 4...V....... +700 1.946588755 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826478 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 2b ff 01 00 00 00 00 00 00 00 19 9a 44 39 4a 01 00 00 "0...Dk.................L."".([.....+...........D9" +702 1.946887732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489153 12 -1 694358 0 0xffffffff 0 -1 694358 0 ff ff ff ff 56 98 0a 00 00 00 00 00 ....V....... +704 1.947581530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489165 12 30 702763 0 0x0000001e 0 30 702763 0 1e 00 00 00 2b b9 0a 00 00 00 00 00 ....+....... +706 1.947719574 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489177 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -19595264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d5 fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +708 1.947999239 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826530 12 -1 702763 0 0xffffffff 0 -1 702763 0 ff ff ff ff 2b b9 0a 00 00 00 00 00 ....+....... +710 1.948433638 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826542 12 26 694359 0 0x0000001a 0 26 694359 0 1a 00 00 00 57 98 0a 00 00 00 00 00 ....W....... +712 1.948585510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826554 26 22 2031317 0 0x00000016 1 2031317 0 196609 0 16 00 00 00 d5 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +714 1.948861837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489207 12 -1 694359 0 0xffffffff 0 -1 694359 0 ff ff ff ff 57 98 0a 00 00 00 00 00 ....W....... +753 1.964560270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489219 12 26 702764 0 0x0000001a 0 26 702764 0 1a 00 00 00 2c b9 0a 00 00 00 00 00 ....,....... +756 1.964706182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489231 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -19464192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +762 1.964982748 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826580 12 -1 702764 0 0xffffffff 0 -1 702764 0 ff ff ff ff 2c b9 0a 00 00 00 00 00 ....,....... +771 1.965520382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826592 12 22 694360 0 0x00000016 0 22 694360 0 16 00 00 00 58 98 0a 00 00 00 00 00 ....X....... +774 1.965691805 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826604 22 18 2031319 0 0x00000012 1 2031319 0 196609 0 12 00 00 00 d7 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +782 1.966074467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489257 12 -1 694360 0 0xffffffff 0 -1 694360 0 ff ff ff ff 58 98 0a 00 00 00 00 00 ....X....... +798 2.067874432 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489269 12 26 702765 0 0x0000001a 0 26 702765 0 1a 00 00 00 2d b9 0a 00 00 00 00 00 ....-....... +800 2.068092346 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489281 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -19333120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +802 2.068523645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826626 12 -1 702765 0 0xffffffff 0 -1 702765 0 ff ff ff ff 2d b9 0a 00 00 00 00 00 ....-....... +806 2.069849968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826638 12 22 694361 0 0x00000016 0 22 694361 0 16 00 00 00 59 98 0a 00 00 00 00 00 ....Y....... +810 2.070055723 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826650 22 18 2031321 0 0x00000012 1 2031321 0 196609 0 12 00 00 00 d9 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +814 2.070308447 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489307 12 -1 694361 0 0xffffffff 0 -1 694361 0 ff ff ff ff 59 98 0a 00 00 00 00 00 ....Y....... +882 2.103214979 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826672 12 -2 79807 79824 0xfffffffe 0 -2 79807 79824 fe ff ff ff bf 37 01 00 d0 37 01 00 .....7...7.. +887 2.142521858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489319 12 -2 79825 79807 0xfffffffe 0 -2 79825 79807 fe ff ff ff d1 37 01 00 bf 37 01 00 .....7...7.. +890 2.173072815 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489331 12 26 702766 0 0x0000001a 0 26 702766 0 1a 00 00 00 2e b9 0a 00 00 00 00 00 ............ +892 2.173343658 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489343 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -19202048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +896 2.173803568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826684 12 -1 702766 0 0xffffffff 0 -1 702766 0 ff ff ff ff 2e b9 0a 00 00 00 00 00 ............ +898 2.174311876 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826696 12 22 694362 0 0x00000016 0 22 694362 0 16 00 00 00 5a 98 0a 00 00 00 00 00 ....Z....... +900 2.174477339 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826708 22 18 2031323 0 0x00000012 1 2031323 0 196609 0 12 00 00 00 db fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +902 2.174773693 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489369 12 -1 694362 0 0xffffffff 0 -1 694362 0 ff ff ff ff 5a 98 0a 00 00 00 00 00 ....Z....... +984 2.249679565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489381 12 101 702767 0 0x00000065 0 101 702767 0 65 00 00 00 2f b9 0a 00 00 00 00 00 e.../....... +986 2.249916077 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489393 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 2c ff 01 00 00 00 00 00 cb aa 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 2c ff 01 00 00 00 00 .....!...o3.......,...............?.....3...|8.. +988 2.250284672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826730 12 -1 702767 0 0xffffffff 0 -1 702767 0 ff ff ff ff 2f b9 0a 00 00 00 00 00 ..../....... +990 2.252504587 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826742 12 52 694363 0 0x00000034 0 52 694363 0 34 00 00 00 5b 98 0a 00 00 00 00 00 4...[....... +992 2.252716303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826754 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 2c ff 01 00 00 00 00 00 00 00 a1 4e 73 39 4a 01 00 00 "0...Dk.................L."".([.....,..........Ns9" +994 2.253077030 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489494 12 -1 694363 0 0xffffffff 0 -1 694363 0 ff ff ff ff 5b 98 0a 00 00 00 00 00 ....[....... +996 2.253862619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489506 12 30 702768 0 0x0000001e 0 30 702768 0 1e 00 00 00 30 b9 0a 00 00 00 00 00 ....0....... +998 2.254040956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489518 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -19070976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 dd fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1000 2.254298449 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826806 12 -1 702768 0 0xffffffff 0 -1 702768 0 ff ff ff ff 30 b9 0a 00 00 00 00 00 ....0....... +1002 2.255220413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826818 12 26 694364 0 0x0000001a 0 26 694364 0 1a 00 00 00 5c 98 0a 00 00 00 00 00 ....\....... +1004 2.255413294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826830 26 22 2031325 0 0x00000016 1 2031325 0 196609 0 16 00 00 00 dd fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1006 2.255675316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489548 12 -1 694364 0 0xffffffff 0 -1 694364 0 ff ff ff ff 5c 98 0a 00 00 00 00 00 ....\....... +1008 2.277731895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489560 12 26 702769 0 0x0000001a 0 26 702769 0 1a 00 00 00 31 b9 0a 00 00 00 00 00 ....1....... +1010 2.277955055 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489572 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -18939904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1012 2.278270483 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826856 12 -1 702769 0 0xffffffff 0 -1 702769 0 ff ff ff ff 31 b9 0a 00 00 00 00 00 ....1....... +1014 2.278920174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826868 12 22 694365 0 0x00000016 0 22 694365 0 16 00 00 00 5d 98 0a 00 00 00 00 00 ....]....... +1016 2.279159784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826880 22 18 2031327 0 0x00000012 1 2031327 0 196609 0 12 00 00 00 df fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1018 2.279536247 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489598 12 -1 694365 0 0xffffffff 0 -1 694365 0 ff ff ff ff 5d 98 0a 00 00 00 00 00 ....]....... +1024 2.381599903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489610 12 26 702770 0 0x0000001a 0 26 702770 0 1a 00 00 00 32 b9 0a 00 00 00 00 00 ....2....... +1026 2.381860971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489622 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -18808832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1028 2.382236242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826902 12 -1 702770 0 0xffffffff 0 -1 702770 0 ff ff ff ff 32 b9 0a 00 00 00 00 00 ....2....... +1030 2.383462906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826914 12 22 694366 0 0x00000016 0 22 694366 0 16 00 00 00 5e 98 0a 00 00 00 00 00 ....^....... +1032 2.383681059 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826926 22 18 2031329 0 0x00000012 1 2031329 0 196609 0 12 00 00 00 e1 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1034 2.384174585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489648 12 -1 694366 0 0xffffffff 0 -1 694366 0 ff ff ff ff 5e 98 0a 00 00 00 00 00 ....^....... +1036 2.485533953 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489660 12 26 702771 0 0x0000001a 0 26 702771 0 1a 00 00 00 33 b9 0a 00 00 00 00 00 ....3....... +1038 2.485769749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489672 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -18677760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1040 2.486264229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826948 12 -1 702771 0 0xffffffff 0 -1 702771 0 ff ff ff ff 33 b9 0a 00 00 00 00 00 ....3....... +1042 2.486888647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826960 12 22 694367 0 0x00000016 0 22 694367 0 16 00 00 00 5f 98 0a 00 00 00 00 00 ...._....... +1044 2.487123489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826972 22 18 2031331 0 0x00000012 1 2031331 0 196609 0 12 00 00 00 e3 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1046 2.487396240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489698 12 -1 694367 0 0xffffffff 0 -1 694367 0 ff ff ff ff 5f 98 0a 00 00 00 00 00 ...._....... +1050 2.554858446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489710 12 34 702772 0 0x00000022 0 34 702772 0 22 00 00 00 34 b9 0a 00 00 00 00 00 """...4......." +1052 2.555097580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489722 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -13828096 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 2d ff 01 00 00 00 00 00 fc ab 0d c3 9d 01 00 00 .....!...o3.......-............... +1054 2.555311441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489756 12 67 702773 0 0x00000043 0 67 702773 0 43 00 00 00 35 b9 0a 00 00 00 00 00 C...5....... +1056 2.555397272 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489768 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 2d ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ac a7 88 5d 87 ?.....3...|8...........-.......=B.....&......... +1057 2.555481434 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375826994 12 -1 702772 0 0xffffffff 0 -1 702772 0 ff ff ff ff 34 b9 0a 00 00 00 00 00 ....4....... +1058 2.555586100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827006 12 -1 702773 0 0xffffffff 0 -1 702773 0 ff ff ff ff 35 b9 0a 00 00 00 00 00 ....5....... +1061 2.557078362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827018 12 52 694368 0 0x00000034 0 52 694368 0 34 00 00 00 60 98 0a 00 00 00 00 00 4...`....... +1063 2.557272434 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827030 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 2d ff 01 00 00 00 00 00 00 00 87 c3 a1 39 4a 01 00 00 "0...Dk.................L."".([.....-............9" +1065 2.557535410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489835 12 -1 694368 0 0xffffffff 0 -1 694368 0 ff ff ff ff 60 98 0a 00 00 00 00 00 ....`....... +1066 2.558428526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489847 12 30 702774 0 0x0000001e 0 30 702774 0 1e 00 00 00 36 b9 0a 00 00 00 00 00 ....6....... +1067 2.558573961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489859 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -18546688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e5 fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1068 2.558963776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827082 12 -1 702774 0 0xffffffff 0 -1 702774 0 ff ff ff ff 36 b9 0a 00 00 00 00 00 ....6....... +1070 2.559542656 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827094 12 26 694369 0 0x0000001a 0 26 694369 0 1a 00 00 00 61 98 0a 00 00 00 00 00 ....a....... +1072 2.559695005 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827106 26 22 2031333 0 0x00000016 1 2031333 0 196609 0 16 00 00 00 e5 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1074 2.560000896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489889 12 -1 694369 0 0xffffffff 0 -1 694369 0 ff ff ff ff 61 98 0a 00 00 00 00 00 ....a....... +1076 2.588417530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489901 12 26 702775 0 0x0000001a 0 26 702775 0 1a 00 00 00 37 b9 0a 00 00 00 00 00 ....7....... +1078 2.588608980 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489913 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -18415616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1080 2.589014530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827132 12 -1 702775 0 0xffffffff 0 -1 702775 0 ff ff ff ff 37 b9 0a 00 00 00 00 00 ....7....... +1082 2.589608908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827144 12 22 694370 0 0x00000016 0 22 694370 0 16 00 00 00 62 98 0a 00 00 00 00 00 ....b....... +1084 2.589825630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827156 22 18 2031335 0 0x00000012 1 2031335 0 196609 0 12 00 00 00 e7 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1086 2.590083838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489939 12 -1 694370 0 0xffffffff 0 -1 694370 0 ff ff ff ff 62 98 0a 00 00 00 00 00 ....b....... +1088 2.604464293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827178 12 -2 79808 79825 0xfffffffe 0 -2 79808 79825 fe ff ff ff c0 37 01 00 d1 37 01 00 .....7...7.. +1097 2.643546581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489951 12 -2 79826 79808 0xfffffffe 0 -2 79826 79808 fe ff ff ff d2 37 01 00 c0 37 01 00 .....7...7.. +1104 2.691926479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489963 12 26 702776 0 0x0000001a 0 26 702776 0 1a 00 00 00 38 b9 0a 00 00 00 00 00 ....8....... +1106 2.692096949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331489975 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -18284544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1108 2.692403555 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827190 12 -1 702776 0 0xffffffff 0 -1 702776 0 ff ff ff ff 38 b9 0a 00 00 00 00 00 ....8....... +1112 2.694973230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827202 12 22 694371 0 0x00000016 0 22 694371 0 16 00 00 00 63 98 0a 00 00 00 00 00 ....c....... +1114 2.695253134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827214 22 18 2031337 0 0x00000012 1 2031337 0 196609 0 12 00 00 00 e9 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1116 2.695573330 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490001 12 -1 694371 0 0xffffffff 0 -1 694371 0 ff ff ff ff 63 98 0a 00 00 00 00 00 ....c....... +1119 2.797195435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490013 12 26 702777 0 0x0000001a 0 26 702777 0 1a 00 00 00 39 b9 0a 00 00 00 00 00 ....9....... +1121 2.797490835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490025 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -18153472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1123 2.797856569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827236 12 -1 702777 0 0xffffffff 0 -1 702777 0 ff ff ff ff 39 b9 0a 00 00 00 00 00 ....9....... +1125 2.800987959 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827248 12 22 694372 0 0x00000016 0 22 694372 0 16 00 00 00 64 98 0a 00 00 00 00 00 ....d....... +1127 2.801155329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827260 22 18 2031339 0 0x00000012 1 2031339 0 196609 0 12 00 00 00 eb fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1129 2.801402092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490051 12 -1 694372 0 0xffffffff 0 -1 694372 0 ff ff ff ff 64 98 0a 00 00 00 00 00 ....d....... +1148 2.860773087 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490063 12 34 702778 0 0x00000022 0 34 702778 0 22 00 00 00 3a b9 0a 00 00 00 00 00 """...:......." +1150 2.861082554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490075 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -13762560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 2e ff 01 00 00 00 00 00 2e ad 0d c3 9d 01 00 00 .....!...o3....................... +1152 2.861301184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490109 12 67 702779 0 0x00000043 0 67 702779 0 43 00 00 00 3b b9 0a 00 00 00 00 00 C...;....... +1154 2.861391544 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490121 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 2e ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 e1 c3 6f 87 ?.....3...|8...................=B.....&......... +1156 2.861511946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827282 12 -1 702778 0 0xffffffff 0 -1 702778 0 ff ff ff ff 3a b9 0a 00 00 00 00 00 ....:....... +1158 2.861771345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827294 12 -1 702779 0 0xffffffff 0 -1 702779 0 ff ff ff ff 3b b9 0a 00 00 00 00 00 ....;....... +1160 2.862633228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827306 12 52 694373 0 0x00000034 0 52 694373 0 34 00 00 00 65 98 0a 00 00 00 00 00 4...e....... +1162 2.862841368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827318 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 2e ff 01 00 00 00 00 00 00 00 5f 69 d0 39 4a 01 00 00 "0...Dk.................L."".([..............._i.9" +1164 2.863135815 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490188 12 -1 694373 0 0xffffffff 0 -1 694373 0 ff ff ff ff 65 98 0a 00 00 00 00 00 ....e....... +1166 2.863870621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490200 12 30 702780 0 0x0000001e 0 30 702780 0 1e 00 00 00 3c b9 0a 00 00 00 00 00 ....<....... +1168 2.864016294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490212 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -18022400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ed fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1170 2.864295959 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827370 12 -1 702780 0 0xffffffff 0 -1 702780 0 ff ff ff ff 3c b9 0a 00 00 00 00 00 ....<....... +1172 2.864713669 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827382 12 26 694374 0 0x0000001a 0 26 694374 0 1a 00 00 00 66 98 0a 00 00 00 00 00 ....f....... +1174 2.864913702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827394 26 22 2031341 0 0x00000016 1 2031341 0 196609 0 16 00 00 00 ed fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1176 2.865159512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490242 12 -1 694374 0 0xffffffff 0 -1 694374 0 ff ff ff ff 66 98 0a 00 00 00 00 00 ....f....... +1190 2.903338671 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490254 12 26 702781 0 0x0000001a 0 26 702781 0 1a 00 00 00 3d b9 0a 00 00 00 00 00 ....=....... +1192 2.903527737 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490266 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -17891328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1194 2.903985739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827420 12 -1 702781 0 0xffffffff 0 -1 702781 0 ff ff ff ff 3d b9 0a 00 00 00 00 00 ....=....... +1196 2.904447317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827432 12 22 694375 0 0x00000016 0 22 694375 0 16 00 00 00 67 98 0a 00 00 00 00 00 ....g....... +1198 2.904637575 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827444 22 18 2031343 0 0x00000012 1 2031343 0 196609 0 12 00 00 00 ef fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1200 2.904945374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490292 12 -1 694375 0 0xffffffff 0 -1 694375 0 ff ff ff ff 67 98 0a 00 00 00 00 00 ....g....... +1205 3.008322239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490304 12 26 702782 0 0x0000001a 0 26 702782 0 1a 00 00 00 3e b9 0a 00 00 00 00 00 ....>....... +1207 3.008548021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490316 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -17760256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1209 3.009067774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827466 12 -1 702782 0 0xffffffff 0 -1 702782 0 ff ff ff ff 3e b9 0a 00 00 00 00 00 ....>....... +1211 3.010778666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827478 12 22 694376 0 0x00000016 0 22 694376 0 16 00 00 00 68 98 0a 00 00 00 00 00 ....h....... +1213 3.010964155 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827490 22 18 2031345 0 0x00000012 1 2031345 0 196609 0 12 00 00 00 f1 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1215 3.011309862 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490342 12 -1 694376 0 0xffffffff 0 -1 694376 0 ff ff ff ff 68 98 0a 00 00 00 00 00 ....h....... +1231 3.106184006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827512 12 -2 79809 79826 0xfffffffe 0 -2 79809 79826 fe ff ff ff c1 37 01 00 d2 37 01 00 .....7...7.. +1236 3.113183737 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490354 12 26 702783 0 0x0000001a 0 26 702783 0 1a 00 00 00 3f b9 0a 00 00 00 00 00 ....?....... +1238 3.113389969 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490366 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -17629184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1240 3.113873243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827524 12 -1 702783 0 0xffffffff 0 -1 702783 0 ff ff ff ff 3f b9 0a 00 00 00 00 00 ....?....... +1242 3.114342928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827536 12 22 694377 0 0x00000016 0 22 694377 0 16 00 00 00 69 98 0a 00 00 00 00 00 ....i....... +1244 3.114583254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827548 22 18 2031347 0 0x00000012 1 2031347 0 196609 0 12 00 00 00 f3 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1246 3.114788532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490392 12 -1 694377 0 0xffffffff 0 -1 694377 0 ff ff ff ff 69 98 0a 00 00 00 00 00 ....i....... +1250 3.144863605 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490404 12 -2 79827 79809 0xfffffffe 0 -2 79827 79809 fe ff ff ff d3 37 01 00 c1 37 01 00 .....7...7.. +1254 3.165692806 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490416 12 101 702784 0 0x00000065 0 101 702784 0 65 00 00 00 40 b9 0a 00 00 00 00 00 e...@....... +1256 3.165854692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490428 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 2f ff 01 00 00 00 00 00 5f ae 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 2f ff 01 00 00 00 00 .....!...o3......./......._.......?.....3...|8.. +1258 3.166214943 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827570 12 -1 702784 0 0xffffffff 0 -1 702784 0 ff ff ff ff 40 b9 0a 00 00 00 00 00 ....@....... +1260 3.167277575 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827582 12 52 694378 0 0x00000034 0 52 694378 0 34 00 00 00 6a 98 0a 00 00 00 00 00 4...j....... +1262 3.167487860 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827594 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 2f ff 01 00 00 00 00 00 00 00 8e e3 fe 39 4a 01 00 00 "0...Dk.................L."".([...../............9" +1264 3.167893171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490529 12 -1 694378 0 0xffffffff 0 -1 694378 0 ff ff ff ff 6a 98 0a 00 00 00 00 00 ....j....... +1266 3.168700457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490541 12 30 702785 0 0x0000001e 0 30 702785 0 1e 00 00 00 41 b9 0a 00 00 00 00 00 ....A....... +1268 3.168836594 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490553 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -17498112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f5 fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1270 3.169145584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827646 12 -1 702785 0 0xffffffff 0 -1 702785 0 ff ff ff ff 41 b9 0a 00 00 00 00 00 ....A....... +1272 3.169587851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827658 12 26 694379 0 0x0000001a 0 26 694379 0 1a 00 00 00 6b 98 0a 00 00 00 00 00 ....k....... +1274 3.169880629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827670 26 22 2031349 0 0x00000016 1 2031349 0 196609 0 16 00 00 00 f5 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1276 3.170057535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490583 12 -1 694379 0 0xffffffff 0 -1 694379 0 ff ff ff ff 6b 98 0a 00 00 00 00 00 ....k....... +1287 3.216649294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490595 12 26 702786 0 0x0000001a 0 26 702786 0 1a 00 00 00 42 b9 0a 00 00 00 00 00 ....B....... +1289 3.216843843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490607 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -17367040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1291 3.217335224 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827696 12 -1 702786 0 0xffffffff 0 -1 702786 0 ff ff ff ff 42 b9 0a 00 00 00 00 00 ....B....... +1293 3.217783451 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827708 12 22 694380 0 0x00000016 0 22 694380 0 16 00 00 00 6c 98 0a 00 00 00 00 00 ....l....... +1295 3.218025446 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827720 22 18 2031351 0 0x00000012 1 2031351 0 196609 0 12 00 00 00 f7 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1297 3.218287945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490633 12 -1 694380 0 0xffffffff 0 -1 694380 0 ff ff ff ff 6c 98 0a 00 00 00 00 00 ....l....... +1304 3.319802761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490645 12 26 702787 0 0x0000001a 0 26 702787 0 1a 00 00 00 43 b9 0a 00 00 00 00 00 ....C....... +1306 3.320112228 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490657 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -17235968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1308 3.320614338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827742 12 -1 702787 0 0xffffffff 0 -1 702787 0 ff ff ff ff 43 b9 0a 00 00 00 00 00 ....C....... +1310 3.321070194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827754 12 22 694381 0 0x00000016 0 22 694381 0 16 00 00 00 6d 98 0a 00 00 00 00 00 ....m....... +1312 3.321243048 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827766 22 18 2031353 0 0x00000012 1 2031353 0 196609 0 12 00 00 00 f9 fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1314 3.321536779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490683 12 -1 694381 0 0xffffffff 0 -1 694381 0 ff ff ff ff 6d 98 0a 00 00 00 00 00 ....m....... +1325 3.422647715 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490695 12 26 702788 0 0x0000001a 0 26 702788 0 1a 00 00 00 44 b9 0a 00 00 00 00 00 ....D....... +1327 3.422852755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490707 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -17104896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1329 3.423150539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827788 12 -1 702788 0 0xffffffff 0 -1 702788 0 ff ff ff ff 44 b9 0a 00 00 00 00 00 ....D....... +1331 3.423679113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827800 12 22 694382 0 0x00000016 0 22 694382 0 16 00 00 00 6e 98 0a 00 00 00 00 00 ....n....... +1333 3.423880816 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827812 22 18 2031355 0 0x00000012 1 2031355 0 196609 0 12 00 00 00 fb fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1335 3.424183607 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490733 12 -1 694382 0 0xffffffff 0 -1 694382 0 ff ff ff ff 6e 98 0a 00 00 00 00 00 ....n....... +1337 3.469885111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490745 12 101 702789 0 0x00000065 0 101 702789 0 65 00 00 00 45 b9 0a 00 00 00 00 00 e...E....... +1339 3.470078945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490757 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 30 ff 01 00 00 00 00 00 8f af 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 30 ff 01 00 00 00 00 .....!...o3.......0...............?.....3...|8.. +1341 3.470411777 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827834 12 -1 702789 0 0xffffffff 0 -1 702789 0 ff ff ff ff 45 b9 0a 00 00 00 00 00 ....E....... +1343 3.471601963 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827846 12 52 694383 0 0x00000034 0 52 694383 0 34 00 00 00 6f 98 0a 00 00 00 00 00 4...o....... +1345 3.471840143 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827858 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 30 ff 01 00 00 00 00 00 00 00 01 54 2d 3a 4a 01 00 00 "0...Dk.................L."".([.....0..........T-:" +1347 3.472112656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490858 12 -1 694383 0 0xffffffff 0 -1 694383 0 ff ff ff ff 6f 98 0a 00 00 00 00 00 ....o....... +1349 3.472882986 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490870 12 30 702790 0 0x0000001e 0 30 702790 0 1e 00 00 00 46 b9 0a 00 00 00 00 00 ....F....... +1351 3.473023891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490882 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -16973824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fd fe 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1353 3.473252296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827910 12 -1 702790 0 0xffffffff 0 -1 702790 0 ff ff ff ff 46 b9 0a 00 00 00 00 00 ....F....... +1355 3.473688841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827922 12 26 694384 0 0x0000001a 0 26 694384 0 1a 00 00 00 70 98 0a 00 00 00 00 00 ....p....... +1357 3.473877430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827934 26 22 2031357 0 0x00000016 1 2031357 0 196609 0 16 00 00 00 fd fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1359 3.474111557 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490912 12 -1 694384 0 0xffffffff 0 -1 694384 0 ff ff ff ff 70 98 0a 00 00 00 00 00 ....p....... +1396 3.526820183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490924 12 26 702791 0 0x0000001a 0 26 702791 0 1a 00 00 00 47 b9 0a 00 00 00 00 00 ....G....... +1398 3.527186394 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490936 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -16842752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff fe 1e 00 00 00 00 00 ....T.c@.^1@.............. +1400 3.527514935 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827960 12 -1 702791 0 0xffffffff 0 -1 702791 0 ff ff ff ff 47 b9 0a 00 00 00 00 00 ....G....... +1402 3.528203487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827972 12 22 694385 0 0x00000016 0 22 694385 0 16 00 00 00 71 98 0a 00 00 00 00 00 ....q....... +1404 3.528435230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375827984 22 18 2031359 0 0x00000012 1 2031359 0 196609 0 12 00 00 00 ff fe 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1406 3.528792143 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490962 12 -1 694385 0 0xffffffff 0 -1 694385 0 ff ff ff ff 71 98 0a 00 00 00 00 00 ....q....... +1411 3.606313467 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828006 12 -2 79810 79827 0xfffffffe 0 -2 79810 79827 fe ff ff ff c2 37 01 00 d3 37 01 00 .....7...7.. +1419 3.632081985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490974 12 26 702792 0 0x0000001a 0 26 702792 0 1a 00 00 00 48 b9 0a 00 00 00 00 00 ....H....... +1421 3.632800102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331490986 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -16711680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1423 3.633213282 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828018 12 -1 702792 0 0xffffffff 0 -1 702792 0 ff ff ff ff 48 b9 0a 00 00 00 00 00 ....H....... +1425 3.633739233 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828030 12 22 694386 0 0x00000016 0 22 694386 0 16 00 00 00 72 98 0a 00 00 00 00 00 ....r....... +1427 3.633902311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828042 22 18 2031361 0 0x00000012 1 2031361 0 196609 0 12 00 00 00 01 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1429 3.634176493 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491012 12 -1 694386 0 0xffffffff 0 -1 694386 0 ff ff ff ff 72 98 0a 00 00 00 00 00 ....r....... +1431 3.647038221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491024 12 -2 79828 79810 0xfffffffe 0 -2 79828 79810 fe ff ff ff d4 37 01 00 c2 37 01 00 .....7...7.. +1442 3.736608505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491036 12 26 702793 0 0x0000001a 0 26 702793 0 1a 00 00 00 49 b9 0a 00 00 00 00 00 ....I....... +1444 3.736845016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491048 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -16580608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1446 3.737235069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828064 12 -1 702793 0 0xffffffff 0 -1 702793 0 ff ff ff ff 49 b9 0a 00 00 00 00 00 ....I....... +1448 3.737969637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828076 12 22 694387 0 0x00000016 0 22 694387 0 16 00 00 00 73 98 0a 00 00 00 00 00 ....s....... +1450 3.738203287 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828088 22 18 2031363 0 0x00000012 1 2031363 0 196609 0 12 00 00 00 03 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1452 3.738579750 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491074 12 -1 694387 0 0xffffffff 0 -1 694387 0 ff ff ff ff 73 98 0a 00 00 00 00 00 ....s....... +1454 3.773857355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491086 12 101 702794 0 0x00000065 0 101 702794 0 65 00 00 00 4a b9 0a 00 00 00 00 00 e...J....... +1456 3.774037838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491098 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 31 ff 01 00 00 00 00 00 bf b0 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 31 ff 01 00 00 00 00 .....!...o3.......1...............?.....3...|8.. +1458 3.774468660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828110 12 -1 702794 0 0xffffffff 0 -1 702794 0 ff ff ff ff 4a b9 0a 00 00 00 00 00 ....J....... +1460 3.775287390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828122 12 52 694388 0 0x00000034 0 52 694388 0 34 00 00 00 74 98 0a 00 00 00 00 00 4...t....... +1462 3.775485039 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828134 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 31 ff 01 00 00 00 00 00 00 00 68 a9 5b 3a 4a 01 00 00 "0...Dk.................L."".([.....1.........h.[:" +1464 3.775795937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491199 12 -1 694388 0 0xffffffff 0 -1 694388 0 ff ff ff ff 74 98 0a 00 00 00 00 00 ....t....... +1466 3.776550293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491211 12 30 702795 0 0x0000001e 0 30 702795 0 1e 00 00 00 4b b9 0a 00 00 00 00 00 ....K....... +1468 3.776688099 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491223 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -16449536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1470 3.777231455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828186 12 -1 702795 0 0xffffffff 0 -1 702795 0 ff ff ff ff 4b b9 0a 00 00 00 00 00 ....K....... +1472 3.777542830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828198 12 26 694389 0 0x0000001a 0 26 694389 0 1a 00 00 00 75 98 0a 00 00 00 00 00 ....u....... +1474 3.777697802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828210 26 22 2031365 0 0x00000016 1 2031365 0 196609 0 16 00 00 00 05 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1476 3.778007030 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491253 12 -1 694389 0 0xffffffff 0 -1 694389 0 ff ff ff ff 75 98 0a 00 00 00 00 00 ....u....... +1483 3.840930700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491265 12 26 702796 0 0x0000001a 0 26 702796 0 1a 00 00 00 4c b9 0a 00 00 00 00 00 ....L....... +1485 3.841140032 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491277 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -16318464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1487 3.841702938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828236 12 -1 702796 0 0xffffffff 0 -1 702796 0 ff ff ff ff 4c b9 0a 00 00 00 00 00 ....L....... +1489 3.842177391 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828248 12 22 694390 0 0x00000016 0 22 694390 0 16 00 00 00 76 98 0a 00 00 00 00 00 ....v....... +1491 3.842447042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828260 22 18 2031367 0 0x00000012 1 2031367 0 196609 0 12 00 00 00 07 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1493 3.842753172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491303 12 -1 694390 0 0xffffffff 0 -1 694390 0 ff ff ff ff 76 98 0a 00 00 00 00 00 ....v....... +1496 3.945668697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491315 12 26 702797 0 0x0000001a 0 26 702797 0 1a 00 00 00 4d b9 0a 00 00 00 00 00 ....M....... +1498 3.945953846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491327 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -16187392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1500 3.946365118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828282 12 -1 702797 0 0xffffffff 0 -1 702797 0 ff ff ff ff 4d b9 0a 00 00 00 00 00 ....M....... +1502 3.947609663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828294 12 22 694391 0 0x00000016 0 22 694391 0 16 00 00 00 77 98 0a 00 00 00 00 00 ....w....... +1504 3.947781563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828306 22 18 2031369 0 0x00000012 1 2031369 0 196609 0 12 00 00 00 09 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1506 3.948209047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491353 12 -1 694391 0 0xffffffff 0 -1 694391 0 ff ff ff ff 77 98 0a 00 00 00 00 00 ....w....... +1510 4.049020290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491365 12 26 702798 0 0x0000001a 0 26 702798 0 1a 00 00 00 4e b9 0a 00 00 00 00 00 ....N....... +1512 4.049191952 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491377 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -16056320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1514 4.049555063 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828328 12 -1 702798 0 0xffffffff 0 -1 702798 0 ff ff ff ff 4e b9 0a 00 00 00 00 00 ....N....... +1516 4.050124407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828340 12 22 694392 0 0x00000016 0 22 694392 0 16 00 00 00 78 98 0a 00 00 00 00 00 ....x....... +1518 4.050313950 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828352 22 18 2031371 0 0x00000012 1 2031371 0 196609 0 12 00 00 00 0b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1520 4.050462961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491403 12 -1 694392 0 0xffffffff 0 -1 694392 0 ff ff ff ff 78 98 0a 00 00 00 00 00 ....x....... +1522 4.079191446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491415 12 101 702799 0 0x00000065 0 101 702799 0 65 00 00 00 4f b9 0a 00 00 00 00 00 e...O....... +1524 4.079380751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491427 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 32 ff 01 00 00 00 00 00 f0 b1 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 32 ff 01 00 00 00 00 .....!...o3.......2...............?.....3...|8.. +1526 4.079750776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828374 12 -1 702799 0 0xffffffff 0 -1 702799 0 ff ff ff ff 4f b9 0a 00 00 00 00 00 ....O....... +1528 4.082053661 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828386 12 52 694393 0 0x00000034 0 52 694393 0 34 00 00 00 79 98 0a 00 00 00 00 00 4...y....... +1530 4.082234621 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828398 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 32 ff 01 00 00 00 00 00 00 00 82 7a 8a 3a 4a 01 00 00 "0...Dk.................L."".([.....2..........z.:" +1532 4.082536697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491528 12 -1 694393 0 0xffffffff 0 -1 694393 0 ff ff ff ff 79 98 0a 00 00 00 00 00 ....y....... +1534 4.083472252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491540 12 30 702800 0 0x0000001e 0 30 702800 0 1e 00 00 00 50 b9 0a 00 00 00 00 00 ....P....... +1536 4.083685160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491552 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -15925248 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1538 4.083976746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828450 12 -1 702800 0 0xffffffff 0 -1 702800 0 ff ff ff ff 50 b9 0a 00 00 00 00 00 ....P....... +1540 4.084794044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828462 12 26 694394 0 0x0000001a 0 26 694394 0 1a 00 00 00 7a 98 0a 00 00 00 00 00 ....z....... +1542 4.084996462 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828474 26 22 2031373 0 0x00000016 1 2031373 0 196609 0 16 00 00 00 0d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1544 4.085329056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491582 12 -1 694394 0 0xffffffff 0 -1 694394 0 ff ff ff ff 7a 98 0a 00 00 00 00 00 ....z....... +1547 4.106691837 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828500 12 -2 79811 79828 0xfffffffe 0 -2 79811 79828 fe ff ff ff c3 37 01 00 d4 37 01 00 .....7...7.. +1557 4.148564339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491594 12 -2 79829 79811 0xfffffffe 0 -2 79829 79811 fe ff ff ff d5 37 01 00 c3 37 01 00 .....7...7.. +1567 4.152940750 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491606 12 26 702801 0 0x0000001a 0 26 702801 0 1a 00 00 00 51 b9 0a 00 00 00 00 00 ....Q....... +1569 4.153090715 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491618 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -15794176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1571 4.153344870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828512 12 -1 702801 0 0xffffffff 0 -1 702801 0 ff ff ff ff 51 b9 0a 00 00 00 00 00 ....Q....... +1573 4.153956175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828524 12 22 694395 0 0x00000016 0 22 694395 0 16 00 00 00 7b 98 0a 00 00 00 00 00 ....{....... +1575 4.154124737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828536 22 18 2031375 0 0x00000012 1 2031375 0 196609 0 12 00 00 00 0f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1577 4.154408693 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491644 12 -1 694395 0 0xffffffff 0 -1 694395 0 ff ff ff ff 7b 98 0a 00 00 00 00 00 ....{....... +1610 4.255903721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491656 12 26 702802 0 0x0000001a 0 26 702802 0 1a 00 00 00 52 b9 0a 00 00 00 00 00 ....R....... +1612 4.256105661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491668 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -15663104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1614 4.256446362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828558 12 -1 702802 0 0xffffffff 0 -1 702802 0 ff ff ff ff 52 b9 0a 00 00 00 00 00 ....R....... +1616 4.257072449 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828570 12 22 694396 0 0x00000016 0 22 694396 0 16 00 00 00 7c 98 0a 00 00 00 00 00 ....|....... +1618 4.257791996 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828582 22 18 2031377 0 0x00000012 1 2031377 0 196609 0 12 00 00 00 11 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1620 4.258062601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491694 12 -1 694396 0 0xffffffff 0 -1 694396 0 ff ff ff ff 7c 98 0a 00 00 00 00 00 ....|....... +1626 4.358993053 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491706 12 26 702803 0 0x0000001a 0 26 702803 0 1a 00 00 00 53 b9 0a 00 00 00 00 00 ....S....... +1628 4.359177828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491718 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -15532032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1630 4.359547853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828604 12 -1 702803 0 0xffffffff 0 -1 702803 0 ff ff ff ff 53 b9 0a 00 00 00 00 00 ....S....... +1632 4.360080957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828616 12 22 694397 0 0x00000016 0 22 694397 0 16 00 00 00 7d 98 0a 00 00 00 00 00 ....}....... +1634 4.360307455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828628 22 18 2031379 0 0x00000012 1 2031379 0 196609 0 12 00 00 00 13 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1636 4.360698223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491744 12 -1 694397 0 0xffffffff 0 -1 694397 0 ff ff ff ff 7d 98 0a 00 00 00 00 00 ....}....... +1638 4.386219025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491756 12 101 702804 0 0x00000065 0 101 702804 0 65 00 00 00 54 b9 0a 00 00 00 00 00 e...T....... +1640 4.386445045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491768 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 33 ff 01 00 00 00 00 00 23 b3 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 33 ff 01 00 00 00 00 .....!...o3.......3.......#.......?.....3...|8.. +1642 4.386945724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828650 12 -1 702804 0 0xffffffff 0 -1 702804 0 ff ff ff ff 54 b9 0a 00 00 00 00 00 ....T....... +1644 4.387832642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828662 12 52 694398 0 0x00000034 0 52 694398 0 34 00 00 00 7e 98 0a 00 00 00 00 00 4...~....... +1646 4.388145924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828674 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 33 ff 01 00 00 00 00 00 00 00 e3 20 b9 3a 4a 01 00 00 "0...Dk.................L."".([.....3.......... .:" +1648 4.388428926 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491869 12 -1 694398 0 0xffffffff 0 -1 694398 0 ff ff ff ff 7e 98 0a 00 00 00 00 00 ....~....... +1650 4.389287472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491881 12 30 702805 0 0x0000001e 0 30 702805 0 1e 00 00 00 55 b9 0a 00 00 00 00 00 ....U....... +1652 4.389427900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491893 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -15400960 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1654 4.389697790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828726 12 -1 702805 0 0xffffffff 0 -1 702805 0 ff ff ff ff 55 b9 0a 00 00 00 00 00 ....U....... +1656 4.390176535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828738 12 26 694399 0 0x0000001a 0 26 694399 0 1a 00 00 00 7f 98 0a 00 00 00 00 00 ............ +1658 4.390417814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828750 26 22 2031381 0 0x00000016 1 2031381 0 196609 0 16 00 00 00 15 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1660 4.390690327 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491923 12 -1 694399 0 0xffffffff 0 -1 694399 0 ff ff ff ff 7f 98 0a 00 00 00 00 00 ............ +1662 4.462136745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491935 12 26 702806 0 0x0000001a 0 26 702806 0 1a 00 00 00 56 b9 0a 00 00 00 00 00 ....V....... +1664 4.462350368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491947 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -15269888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1666 4.462798834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828776 12 -1 702806 0 0xffffffff 0 -1 702806 0 ff ff ff ff 56 b9 0a 00 00 00 00 00 ....V....... +1668 4.463309526 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828788 12 22 694400 0 0x00000016 0 22 694400 0 16 00 00 00 80 98 0a 00 00 00 00 00 ............ +1670 4.463524580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828800 22 18 2031383 0 0x00000012 1 2031383 0 196609 0 12 00 00 00 17 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1672 4.463827848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491973 12 -1 694400 0 0xffffffff 0 -1 694400 0 ff ff ff ff 80 98 0a 00 00 00 00 00 ............ +1676 4.566662073 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491985 12 26 702807 0 0x0000001a 0 26 702807 0 1a 00 00 00 57 b9 0a 00 00 00 00 00 ....W....... +1678 4.566854477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331491997 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -15138816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1680 4.567536354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828822 12 -1 702807 0 0xffffffff 0 -1 702807 0 ff ff ff ff 57 b9 0a 00 00 00 00 00 ....W....... +1682 4.568470955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828834 12 22 694401 0 0x00000016 0 22 694401 0 16 00 00 00 81 98 0a 00 00 00 00 00 ............ +1684 4.568673611 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828846 22 18 2031385 0 0x00000012 1 2031385 0 196609 0 12 00 00 00 19 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1686 4.568996906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492023 12 -1 694401 0 0xffffffff 0 -1 694401 0 ff ff ff ff 81 98 0a 00 00 00 00 00 ............ +1690 4.607465267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828868 12 -2 79812 79829 0xfffffffe 0 -2 79812 79829 fe ff ff ff c4 37 01 00 d5 37 01 00 .....7...7.. +1696 4.649420738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492035 12 -2 79830 79812 0xfffffffe 0 -2 79830 79812 fe ff ff ff d6 37 01 00 c4 37 01 00 .....7...7.. +1700 4.671598434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492047 12 26 702808 0 0x0000001a 0 26 702808 0 1a 00 00 00 58 b9 0a 00 00 00 00 00 ....X....... +1702 4.671777964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492059 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -15007744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1704 4.672226191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828880 12 -1 702808 0 0xffffffff 0 -1 702808 0 ff ff ff ff 58 b9 0a 00 00 00 00 00 ....X....... +1706 4.672646761 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828892 12 22 694402 0 0x00000016 0 22 694402 0 16 00 00 00 82 98 0a 00 00 00 00 00 ............ +1708 4.672811985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828904 22 18 2031387 0 0x00000012 1 2031387 0 196609 0 12 00 00 00 1b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1710 4.673203945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492085 12 -1 694402 0 0xffffffff 0 -1 694402 0 ff ff ff ff 82 98 0a 00 00 00 00 00 ............ +1714 4.690887451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492097 12 101 702809 0 0x00000065 0 101 702809 0 65 00 00 00 59 b9 0a 00 00 00 00 00 e...Y....... +1716 4.691134453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492109 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 34 ff 01 00 00 00 00 00 54 b4 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 34 ff 01 00 00 00 00 .....!...o3.......4.......T.......?.....3...|8.. +1718 4.691588879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828926 12 -1 702809 0 0xffffffff 0 -1 702809 0 ff ff ff ff 59 b9 0a 00 00 00 00 00 ....Y....... +1720 4.692975044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828938 12 52 694403 0 0x00000034 0 52 694403 0 34 00 00 00 83 98 0a 00 00 00 00 00 4........... +1722 4.693136692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375828950 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 34 ff 01 00 00 00 00 00 00 00 15 b2 e7 3a 4a 01 00 00 "0...Dk.................L."".([.....4............:" +1724 4.693478346 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492210 12 -1 694403 0 0xffffffff 0 -1 694403 0 ff ff ff ff 83 98 0a 00 00 00 00 00 ............ +1728 4.694208145 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492222 12 30 702810 0 0x0000001e 0 30 702810 0 1e 00 00 00 5a b9 0a 00 00 00 00 00 ....Z....... +1730 4.694443941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492234 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -14876672 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1732 4.694873571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829002 12 -1 702810 0 0xffffffff 0 -1 702810 0 ff ff ff ff 5a b9 0a 00 00 00 00 00 ....Z....... +1734 4.695538044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829014 12 26 694404 0 0x0000001a 0 26 694404 0 1a 00 00 00 84 98 0a 00 00 00 00 00 ............ +1736 4.695684910 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829026 26 22 2031389 0 0x00000016 1 2031389 0 196609 0 16 00 00 00 1d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1738 4.695856333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492264 12 -1 694404 0 0xffffffff 0 -1 694404 0 ff ff ff ff 84 98 0a 00 00 00 00 00 ............ +1742 4.774789333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492276 12 26 702811 0 0x0000001a 0 26 702811 0 1a 00 00 00 5b b9 0a 00 00 00 00 00 ....[....... +1744 4.774967194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492288 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -14745600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +1746 4.775373936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829052 12 -1 702811 0 0xffffffff 0 -1 702811 0 ff ff ff ff 5b b9 0a 00 00 00 00 00 ....[....... +1748 4.775808811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829064 12 22 694405 0 0x00000016 0 22 694405 0 16 00 00 00 85 98 0a 00 00 00 00 00 ............ +1750 4.776070118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829076 22 18 2031391 0 0x00000012 1 2031391 0 196609 0 12 00 00 00 1f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1752 4.776453972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492314 12 -1 694405 0 0xffffffff 0 -1 694405 0 ff ff ff ff 85 98 0a 00 00 00 00 00 ............ +1760 4.877452850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492326 12 26 702812 0 0x0000001a 0 26 702812 0 1a 00 00 00 5c b9 0a 00 00 00 00 00 ....\....... +1762 4.877650499 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492338 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -14614528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 ff 1e 00 00 00 00 00 ....T.c@.^1@......!....... +1764 4.878034353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829098 12 -1 702812 0 0xffffffff 0 -1 702812 0 ff ff ff ff 5c b9 0a 00 00 00 00 00 ....\....... +1766 4.878778458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829110 12 22 694406 0 0x00000016 0 22 694406 0 16 00 00 00 86 98 0a 00 00 00 00 00 ............ +1768 4.878993034 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829122 22 18 2031393 0 0x00000012 1 2031393 0 196609 0 12 00 00 00 21 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +1770 4.879267454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492364 12 -1 694406 0 0xffffffff 0 -1 694406 0 ff ff ff ff 86 98 0a 00 00 00 00 00 ............ +1772 4.981454134 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492376 12 26 702813 0 0x0000001a 0 26 702813 0 1a 00 00 00 5d b9 0a 00 00 00 00 00 ....]....... +1774 4.981664658 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492388 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -14483456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 ff 1e 00 00 00 00 00 ....T.c@.^1@......#....... +1776 4.982152700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829144 12 -1 702813 0 0xffffffff 0 -1 702813 0 ff ff ff ff 5d b9 0a 00 00 00 00 00 ....]....... +1778 4.982592106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829156 12 22 694407 0 0x00000016 0 22 694407 0 16 00 00 00 87 98 0a 00 00 00 00 00 ............ +1780 4.982807398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829168 22 18 2031395 0 0x00000012 1 2031395 0 196609 0 12 00 00 00 23 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +1782 4.983102083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492414 12 -1 694407 0 0xffffffff 0 -1 694407 0 ff ff ff ff 87 98 0a 00 00 00 00 00 ............ +1786 4.996622086 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492426 12 34 702814 0 0x00000022 0 34 702814 0 22 00 00 00 5e b9 0a 00 00 00 00 00 """...^......." +1788 4.996823072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492438 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -13303808 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 35 ff 01 00 00 00 00 00 85 b5 0d c3 9d 01 00 00 .....!...o3.......5............... +1790 4.996974707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492472 12 67 702815 0 0x00000043 0 67 702815 0 43 00 00 00 5f b9 0a 00 00 00 00 00 C..._....... +1792 4.997065783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492484 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 35 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 64 c8 13 ef 87 ?.....3...|8...........5.......=B.....&......... +1794 4.997199297 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829190 12 -1 702814 0 0xffffffff 0 -1 702814 0 ff ff ff ff 5e b9 0a 00 00 00 00 00 ....^....... +1796 4.997437716 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829202 12 -1 702815 0 0xffffffff 0 -1 702815 0 ff ff ff ff 5f b9 0a 00 00 00 00 00 ...._....... +1798 4.998320580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829214 12 52 694408 0 0x00000034 0 52 694408 0 34 00 00 00 88 98 0a 00 00 00 00 00 4........... +1800 4.998496294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829226 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 35 ff 01 00 00 00 00 00 00 00 50 49 16 3b 4a 01 00 00 "0...Dk.................L."".([.....5.........PI.;" +1802 4.998828650 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492551 12 -1 694408 0 0xffffffff 0 -1 694408 0 ff ff ff ff 88 98 0a 00 00 00 00 00 ............ +1804 4.999464750 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492563 12 30 702816 0 0x0000001e 0 30 702816 0 1e 00 00 00 60 b9 0a 00 00 00 00 00 ....`....... +1806 4.999582767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492575 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -14352384 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +1808 4.999925375 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829278 12 -1 702816 0 0xffffffff 0 -1 702816 0 ff ff ff ff 60 b9 0a 00 00 00 00 00 ....`....... +1810 5.000548124 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829290 12 26 694409 0 0x0000001a 0 26 694409 0 1a 00 00 00 89 98 0a 00 00 00 00 00 ............ +1812 5.000854731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829302 26 22 2031397 0 0x00000016 1 2031397 0 196609 0 16 00 00 00 25 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +1814 5.001141548 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492605 12 -1 694409 0 0xffffffff 0 -1 694409 0 ff ff ff ff 89 98 0a 00 00 00 00 00 ............ +1816 5.084493876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492617 12 26 702817 0 0x0000001a 0 26 702817 0 1a 00 00 00 61 b9 0a 00 00 00 00 00 ....a....... +1818 5.084784508 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492629 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -14221312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 ff 1e 00 00 00 00 00 ....T.c@.^1@......'....... +1820 5.085210562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829328 12 -1 702817 0 0xffffffff 0 -1 702817 0 ff ff ff ff 61 b9 0a 00 00 00 00 00 ....a....... +1822 5.085757494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829340 12 22 694410 0 0x00000016 0 22 694410 0 16 00 00 00 8a 98 0a 00 00 00 00 00 ............ +1824 5.086087465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829352 22 18 2031399 0 0x00000012 1 2031399 0 196609 0 12 00 00 00 27 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +1826 5.086365938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492655 12 -1 694410 0 0xffffffff 0 -1 694410 0 ff ff ff ff 8a 98 0a 00 00 00 00 00 ............ +1829 5.108555555 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829374 12 -2 79813 79830 0xfffffffe 0 -2 79813 79830 fe ff ff ff c5 37 01 00 d6 37 01 00 .....7...7.. +1836 5.150070906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492667 12 -2 79831 79813 0xfffffffe 0 -2 79831 79813 fe ff ff ff d7 37 01 00 c5 37 01 00 .....7...7.. +1842 5.187263727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492679 12 26 702818 0 0x0000001a 0 26 702818 0 1a 00 00 00 62 b9 0a 00 00 00 00 00 ....b....... +1844 5.187428236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492691 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -14090240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 ff 1e 00 00 00 00 00 ....T.c@.^1@......)....... +1846 5.188027620 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829386 12 -1 702818 0 0xffffffff 0 -1 702818 0 ff ff ff ff 62 b9 0a 00 00 00 00 00 ....b....... +1848 5.188691616 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829398 12 22 694411 0 0x00000016 0 22 694411 0 16 00 00 00 8b 98 0a 00 00 00 00 00 ............ +1850 5.188865900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829410 22 18 2031401 0 0x00000012 1 2031401 0 196609 0 12 00 00 00 29 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +1852 5.189136982 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492717 12 -1 694411 0 0xffffffff 0 -1 694411 0 ff ff ff ff 8b 98 0a 00 00 00 00 00 ............ +1858 5.290299416 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492729 12 26 702819 0 0x0000001a 0 26 702819 0 1a 00 00 00 63 b9 0a 00 00 00 00 00 ....c....... +1860 5.290536880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492741 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -13959168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b ff 1e 00 00 00 00 00 ....T.c@.^1@......+....... +1862 5.290933132 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829432 12 -1 702819 0 0xffffffff 0 -1 702819 0 ff ff ff ff 63 b9 0a 00 00 00 00 00 ....c....... +1864 5.291330338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829444 12 22 694412 0 0x00000016 0 22 694412 0 16 00 00 00 8c 98 0a 00 00 00 00 00 ............ +1866 5.291532278 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829456 22 18 2031403 0 0x00000012 1 2031403 0 196609 0 12 00 00 00 2b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +1868 5.291821480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492767 12 -1 694412 0 0xffffffff 0 -1 694412 0 ff ff ff ff 8c 98 0a 00 00 00 00 00 ............ +1870 5.300624609 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492779 12 101 702820 0 0x00000065 0 101 702820 0 65 00 00 00 64 b9 0a 00 00 00 00 00 e...d....... +1872 5.300777674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492791 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 36 ff 01 00 00 00 00 00 b5 b6 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 36 ff 01 00 00 00 00 .....!...o3.......6...............?.....3...|8.. +1874 5.301078558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829478 12 -1 702820 0 0xffffffff 0 -1 702820 0 ff ff ff ff 64 b9 0a 00 00 00 00 00 ....d....... +1876 5.302083731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829490 12 52 694413 0 0x00000034 0 52 694413 0 34 00 00 00 8d 98 0a 00 00 00 00 00 4........... +1878 5.302239656 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829502 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 36 ff 01 00 00 00 00 00 00 00 99 a5 44 3b 4a 01 00 00 "0...Dk.................L."".([.....6...........D;" +1880 5.302524328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492892 12 -1 694413 0 0xffffffff 0 -1 694413 0 ff ff ff ff 8d 98 0a 00 00 00 00 00 ............ +1882 5.303427458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492904 12 30 702821 0 0x0000001e 0 30 702821 0 1e 00 00 00 65 b9 0a 00 00 00 00 00 ....e....... +1884 5.303618431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492916 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -13828096 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +1886 5.303886652 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829554 12 -1 702821 0 0xffffffff 0 -1 702821 0 ff ff ff ff 65 b9 0a 00 00 00 00 00 ....e....... +1888 5.304234028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829566 12 26 694414 0 0x0000001a 0 26 694414 0 1a 00 00 00 8e 98 0a 00 00 00 00 00 ............ +1890 5.304374695 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829578 26 22 2031405 0 0x00000016 1 2031405 0 196609 0 16 00 00 00 2d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +1892 5.304681540 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492946 12 -1 694414 0 0xffffffff 0 -1 694414 0 ff ff ff ff 8e 98 0a 00 00 00 00 00 ............ +1898 5.392980576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492958 12 26 702822 0 0x0000001a 0 26 702822 0 1a 00 00 00 66 b9 0a 00 00 00 00 00 ....f....... +1900 5.393149376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492970 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -13697024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f ff 1e 00 00 00 00 00 ....T.c@.^1@....../....... +1902 5.393526793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829604 12 -1 702822 0 0xffffffff 0 -1 702822 0 ff ff ff ff 66 b9 0a 00 00 00 00 00 ....f....... +1904 5.394034147 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829616 12 22 694415 0 0x00000016 0 22 694415 0 16 00 00 00 8f 98 0a 00 00 00 00 00 ............ +1906 5.394193888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829628 22 18 2031407 0 0x00000012 1 2031407 0 196609 0 12 00 00 00 2f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +1908 5.394453764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331492996 12 -1 694415 0 0xffffffff 0 -1 694415 0 ff ff ff ff 8f 98 0a 00 00 00 00 00 ............ +1912 5.497128725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493008 12 26 702823 0 0x0000001a 0 26 702823 0 1a 00 00 00 67 b9 0a 00 00 00 00 00 ....g....... +1914 5.497293711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493020 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -13565952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 ff 1e 00 00 00 00 00 ....T.c@.^1@......1....... +1916 5.497664452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829650 12 -1 702823 0 0xffffffff 0 -1 702823 0 ff ff ff ff 67 b9 0a 00 00 00 00 00 ....g....... +1918 5.498149157 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829662 12 22 694416 0 0x00000016 0 22 694416 0 16 00 00 00 90 98 0a 00 00 00 00 00 ............ +1920 5.498332262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829674 22 18 2031409 0 0x00000012 1 2031409 0 196609 0 12 00 00 00 31 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +1922 5.498708963 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493046 12 -1 694416 0 0xffffffff 0 -1 694416 0 ff ff ff ff 90 98 0a 00 00 00 00 00 ............ +1924 5.600103140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493058 12 26 702824 0 0x0000001a 0 26 702824 0 1a 00 00 00 68 b9 0a 00 00 00 00 00 ....h....... +1926 5.600290060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493070 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -13434880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 ff 1e 00 00 00 00 00 ....T.c@.^1@......3....... +1928 5.600676060 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829696 12 -1 702824 0 0xffffffff 0 -1 702824 0 ff ff ff ff 68 b9 0a 00 00 00 00 00 ....h....... +1930 5.601084709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829708 12 22 694417 0 0x00000016 0 22 694417 0 16 00 00 00 91 98 0a 00 00 00 00 00 ............ +1932 5.601273298 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829720 22 18 2031411 0 0x00000012 1 2031411 0 196609 0 12 00 00 00 33 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +1934 5.601649523 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493096 12 -1 694417 0 0xffffffff 0 -1 694417 0 ff ff ff ff 91 98 0a 00 00 00 00 00 ............ +1936 5.604357004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493108 12 101 702825 0 0x00000065 0 101 702825 0 65 00 00 00 69 b9 0a 00 00 00 00 00 e...i....... +1938 5.604534149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493120 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 37 ff 01 00 00 00 00 00 e5 b7 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 37 ff 01 00 00 00 00 .....!...o3.......7...............?.....3...|8.. +1940 5.604814053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829742 12 -1 702825 0 0xffffffff 0 -1 702825 0 ff ff ff ff 69 b9 0a 00 00 00 00 00 ....i....... +1942 5.605844021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829754 12 52 694418 0 0x00000034 0 52 694418 0 34 00 00 00 92 98 0a 00 00 00 00 00 4........... +1944 5.606003523 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829766 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 37 ff 01 00 00 00 00 00 00 00 b0 fe 72 3b 4a 01 00 00 "0...Dk.................L."".([.....7...........r;" +1946 5.606266499 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493221 12 -1 694418 0 0xffffffff 0 -1 694418 0 ff ff ff ff 92 98 0a 00 00 00 00 00 ............ +1948 5.607126474 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493233 12 30 702826 0 0x0000001e 0 30 702826 0 1e 00 00 00 6a b9 0a 00 00 00 00 00 ....j....... +1950 5.607283592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493245 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -13303808 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +1952 5.607640743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829818 12 -1 702826 0 0xffffffff 0 -1 702826 0 ff ff ff ff 6a b9 0a 00 00 00 00 00 ....j....... +1954 5.608018875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829830 12 26 694419 0 0x0000001a 0 26 694419 0 1a 00 00 00 93 98 0a 00 00 00 00 00 ............ +1956 5.608172655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829842 26 22 2031413 0 0x00000016 1 2031413 0 196609 0 16 00 00 00 35 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +1958 5.608429909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493275 12 -1 694419 0 0xffffffff 0 -1 694419 0 ff ff ff ff 93 98 0a 00 00 00 00 00 ............ +1960 5.609858990 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829868 12 -2 79814 79831 0xfffffffe 0 -2 79814 79831 fe ff ff ff c6 37 01 00 d7 37 01 00 .....7...7.. +1970 5.650988340 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493287 12 -2 79832 79814 0xfffffffe 0 -2 79832 79814 fe ff ff ff d8 37 01 00 c6 37 01 00 .....7...7.. +1979 5.703189850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493299 12 26 702827 0 0x0000001a 0 26 702827 0 1a 00 00 00 6b b9 0a 00 00 00 00 00 ....k....... +1981 5.703357697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493311 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -13172736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 ff 1e 00 00 00 00 00 ....T.c@.^1@......7....... +1983 5.704184532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829880 12 -1 702827 0 0xffffffff 0 -1 702827 0 ff ff ff ff 6b b9 0a 00 00 00 00 00 ....k....... +1985 5.704429865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829892 12 22 694420 0 0x00000016 0 22 694420 0 16 00 00 00 94 98 0a 00 00 00 00 00 ............ +1987 5.704639196 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829904 22 18 2031415 0 0x00000012 1 2031415 0 196609 0 12 00 00 00 37 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +1989 5.704838514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493337 12 -1 694420 0 0xffffffff 0 -1 694420 0 ff ff ff ff 94 98 0a 00 00 00 00 00 ............ +1991 5.806168318 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493349 12 26 702828 0 0x0000001a 0 26 702828 0 1a 00 00 00 6c b9 0a 00 00 00 00 00 ....l....... +1993 5.806361437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493361 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -13041664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 ff 1e 00 00 00 00 00 ....T.c@.^1@......9....... +1995 5.806679010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829926 12 -1 702828 0 0xffffffff 0 -1 702828 0 ff ff ff ff 6c b9 0a 00 00 00 00 00 ....l....... +1997 5.807075024 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829938 12 22 694421 0 0x00000016 0 22 694421 0 16 00 00 00 95 98 0a 00 00 00 00 00 ............ +1999 5.807233810 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829950 22 18 2031417 0 0x00000012 1 2031417 0 196609 0 12 00 00 00 39 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +2001 5.807770729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493387 12 -1 694421 0 0xffffffff 0 -1 694421 0 ff ff ff ff 95 98 0a 00 00 00 00 00 ............ +2018 5.908283472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493399 12 101 702829 0 0x00000065 0 101 702829 0 65 00 00 00 6d b9 0a 00 00 00 00 00 e...m....... +2020 5.908457994 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493411 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 38 ff 01 00 00 00 00 00 15 b9 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 38 ff 01 00 00 00 00 .....!...o3.......8...............?.....3...|8.. +2022 5.908796072 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829972 12 -1 702829 0 0xffffffff 0 -1 702829 0 ff ff ff ff 6d b9 0a 00 00 00 00 00 ....m....... +2024 5.909777403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493512 12 26 702830 0 0x0000001a 0 26 702830 0 1a 00 00 00 6e b9 0a 00 00 00 00 00 ....n....... +2026 5.909913063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493524 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -12910592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b ff 1e 00 00 00 00 00 ....T.c@.^1@......;....... +2027 5.909941435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829984 12 52 694422 0 0x00000034 0 52 694422 0 34 00 00 00 96 98 0a 00 00 00 00 00 4........... +2030 5.910237312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375829996 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 38 ff 01 00 00 00 00 00 00 00 37 5e a1 3b 4a 01 00 00 "0...Dk.................L."".([.....8.........7^.;" +2032 5.910466909 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830048 12 22 694423 0 0x00000016 0 22 694423 0 16 00 00 00 97 98 0a 00 00 00 00 00 ............ +2033 5.910493851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493550 12 -1 694422 0 0xffffffff 0 -1 694422 0 ff ff ff ff 96 98 0a 00 00 00 00 00 ............ +2034 5.910564661 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830060 22 18 2031419 0 0x00000012 1 2031419 0 196609 0 12 00 00 00 3b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +2037 5.910679579 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830082 12 -1 702830 0 0xffffffff 0 -1 702830 0 ff ff ff ff 6e b9 0a 00 00 00 00 00 ....n....... +2038 5.910706758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493562 12 -1 694423 0 0xffffffff 0 -1 694423 0 ff ff ff ff 97 98 0a 00 00 00 00 00 ............ +2041 5.911191940 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493574 12 30 702831 0 0x0000001e 0 30 702831 0 1e 00 00 00 6f b9 0a 00 00 00 00 00 ....o....... +2043 5.911337376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493586 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -12779520 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +2045 5.911574602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830094 12 -1 702831 0 0xffffffff 0 -1 702831 0 ff ff ff ff 6f b9 0a 00 00 00 00 00 ....o....... +2046 5.911830902 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830106 12 26 694424 0 0x0000001a 0 26 694424 0 1a 00 00 00 98 98 0a 00 00 00 00 00 ............ +2047 5.911939144 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830118 26 22 2031421 0 0x00000016 1 2031421 0 196609 0 16 00 00 00 3d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +2048 5.912102222 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493616 12 -1 694424 0 0xffffffff 0 -1 694424 0 ff ff ff ff 98 98 0a 00 00 00 00 00 ............ +2052 6.011749029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493628 12 26 702832 0 0x0000001a 0 26 702832 0 1a 00 00 00 70 b9 0a 00 00 00 00 00 ....p....... +2054 6.011922359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493640 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -12648448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f ff 1e 00 00 00 00 00 ....T.c@.^1@......?....... +2056 6.012357235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830144 12 -1 702832 0 0xffffffff 0 -1 702832 0 ff ff ff ff 70 b9 0a 00 00 00 00 00 ....p....... +2058 6.012891531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830156 12 22 694425 0 0x00000016 0 22 694425 0 16 00 00 00 99 98 0a 00 00 00 00 00 ............ +2060 6.013128519 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830168 22 18 2031423 0 0x00000012 1 2031423 0 196609 0 12 00 00 00 3f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +2062 6.013401031 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493666 12 -1 694425 0 0xffffffff 0 -1 694425 0 ff ff ff ff 99 98 0a 00 00 00 00 00 ............ +2077 6.111356258 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830190 12 -2 79815 79832 0xfffffffe 0 -2 79815 79832 fe ff ff ff c7 37 01 00 d8 37 01 00 .....7...7.. +2082 6.115437508 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493678 12 26 702833 0 0x0000001a 0 26 702833 0 1a 00 00 00 71 b9 0a 00 00 00 00 00 ....q....... +2084 6.116127729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493690 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -12517376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 ff 1e 00 00 00 00 00 ....T.c@.^1@......A....... +2086 6.116477251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830202 12 -1 702833 0 0xffffffff 0 -1 702833 0 ff ff ff ff 71 b9 0a 00 00 00 00 00 ....q....... +2088 6.117174625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830214 12 22 694426 0 0x00000016 0 22 694426 0 16 00 00 00 9a 98 0a 00 00 00 00 00 ............ +2090 6.117367506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830226 22 18 2031425 0 0x00000012 1 2031425 0 196609 0 12 00 00 00 41 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +2092 6.117664814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493716 12 -1 694426 0 0xffffffff 0 -1 694426 0 ff ff ff ff 9a 98 0a 00 00 00 00 00 ............ +2096 6.152283192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493728 12 -2 79833 79815 0xfffffffe 0 -2 79833 79815 fe ff ff ff d9 37 01 00 c7 37 01 00 .....7...7.. +2106 6.212659836 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493740 12 34 702834 0 0x00000022 0 34 702834 0 22 00 00 00 72 b9 0a 00 00 00 00 00 """...r......." +2108 6.212859392 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493752 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -13041664 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 39 ff 01 00 00 00 00 00 45 ba 0d c3 9d 01 00 00 .....!...o3.......9.......E....... +2110 6.213021040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493786 12 67 702835 0 0x00000043 0 67 702835 0 43 00 00 00 73 b9 0a 00 00 00 00 00 C...s....... +2112 6.213130236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493798 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 39 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc 1c 9a 37 88 ?.....3...|8...........9.......=B.....&......... +2114 6.213257551 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830248 12 -1 702834 0 0xffffffff 0 -1 702834 0 ff ff ff ff 72 b9 0a 00 00 00 00 00 ....r....... +2116 6.213515282 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830260 12 -1 702835 0 0xffffffff 0 -1 702835 0 ff ff ff ff 73 b9 0a 00 00 00 00 00 ....s....... +2118 6.214922190 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830272 12 52 694427 0 0x00000034 0 52 694427 0 34 00 00 00 9b 98 0a 00 00 00 00 00 4........... +2120 6.215141296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830284 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 39 ff 01 00 00 00 00 00 00 00 39 eb cf 3b 4a 01 00 00 "0...Dk.................L."".([.....9.........9..;" +2122 6.215419531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493865 12 -1 694427 0 0xffffffff 0 -1 694427 0 ff ff ff ff 9b 98 0a 00 00 00 00 00 ............ +2124 6.216278076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493877 12 30 702836 0 0x0000001e 0 30 702836 0 1e 00 00 00 74 b9 0a 00 00 00 00 00 ....t....... +2126 6.216505051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493889 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -12386304 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 43 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......C........... +2128 6.216880560 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830336 12 -1 702836 0 0xffffffff 0 -1 702836 0 ff ff ff ff 74 b9 0a 00 00 00 00 00 ....t....... +2130 6.217509985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830348 12 26 694428 0 0x0000001a 0 26 694428 0 1a 00 00 00 9c 98 0a 00 00 00 00 00 ............ +2132 6.217735291 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830360 26 22 2031427 0 0x00000016 1 2031427 0 196609 0 16 00 00 00 43 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....C..................... +2134 6.217989922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493919 12 -1 694428 0 0xffffffff 0 -1 694428 0 ff ff ff ff 9c 98 0a 00 00 00 00 00 ............ +2136 6.218934298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493931 12 26 702837 0 0x0000001a 0 26 702837 0 1a 00 00 00 75 b9 0a 00 00 00 00 00 ....u....... +2138 6.219092131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493943 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -12255232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 ff 1e 00 00 00 00 00 ....T.c@.^1@......E....... +2140 6.219428539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830386 12 -1 702837 0 0xffffffff 0 -1 702837 0 ff ff ff ff 75 b9 0a 00 00 00 00 00 ....u....... +2142 6.219948769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830398 12 22 694429 0 0x00000016 0 22 694429 0 16 00 00 00 9d 98 0a 00 00 00 00 00 ............ +2144 6.220197439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830410 22 18 2031429 0 0x00000012 1 2031429 0 196609 0 12 00 00 00 45 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +2146 6.220457792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493969 12 -1 694429 0 0xffffffff 0 -1 694429 0 ff ff ff ff 9d 98 0a 00 00 00 00 00 ............ +2154 6.322071075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493981 12 26 702838 0 0x0000001a 0 26 702838 0 1a 00 00 00 76 b9 0a 00 00 00 00 00 ....v....... +2156 6.322255611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331493993 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -12124160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 ff 1e 00 00 00 00 00 ....T.c@.^1@......G....... +2158 6.322672606 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830432 12 -1 702838 0 0xffffffff 0 -1 702838 0 ff ff ff ff 76 b9 0a 00 00 00 00 00 ....v....... +2160 6.323099136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830444 12 22 694430 0 0x00000016 0 22 694430 0 16 00 00 00 9e 98 0a 00 00 00 00 00 ............ +2162 6.323242664 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830456 22 18 2031431 0 0x00000012 1 2031431 0 196609 0 12 00 00 00 47 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +2164 6.323504925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494019 12 -1 694430 0 0xffffffff 0 -1 694430 0 ff ff ff ff 9e 98 0a 00 00 00 00 00 ............ +2166 6.424748659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494031 12 26 702839 0 0x0000001a 0 26 702839 0 1a 00 00 00 77 b9 0a 00 00 00 00 00 ....w....... +2168 6.424942732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494043 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -11993088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 ff 1e 00 00 00 00 00 ....T.c@.^1@......I....... +2170 6.425375462 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830478 12 -1 702839 0 0xffffffff 0 -1 702839 0 ff ff ff ff 77 b9 0a 00 00 00 00 00 ....w....... +2172 6.425956488 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830490 12 22 694431 0 0x00000016 0 22 694431 0 16 00 00 00 9f 98 0a 00 00 00 00 00 ............ +2174 6.426170349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830502 22 18 2031433 0 0x00000012 1 2031433 0 196609 0 12 00 00 00 49 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +2176 6.426424742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494069 12 -1 694431 0 0xffffffff 0 -1 694431 0 ff ff ff ff 9f 98 0a 00 00 00 00 00 ............ +2180 6.518070459 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494081 12 101 702840 0 0x00000065 0 101 702840 0 65 00 00 00 78 b9 0a 00 00 00 00 00 e...x....... +2182 6.518322468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494093 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3a ff 01 00 00 00 00 00 77 bb 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3a ff 01 00 00 00 00 .....!...o3.......:.......w.......?.....3...|8.. +2184 6.518645048 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830524 12 -1 702840 0 0xffffffff 0 -1 702840 0 ff ff ff ff 78 b9 0a 00 00 00 00 00 ....x....... +2186 6.520210981 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830536 12 52 694432 0 0x00000034 0 52 694432 0 34 00 00 00 a0 98 0a 00 00 00 00 00 4........... +2188 6.520443201 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830548 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3a ff 01 00 00 00 00 00 00 00 67 82 fe 3b 4a 01 00 00 "0...Dk.................L."".([.....:.........g..;" +2190 6.520708561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494194 12 -1 694432 0 0xffffffff 0 -1 694432 0 ff ff ff ff a0 98 0a 00 00 00 00 00 ............ +2192 6.521545172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494206 12 30 702841 0 0x0000001e 0 30 702841 0 1e 00 00 00 79 b9 0a 00 00 00 00 00 ....y....... +2194 6.521745682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494218 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -11862016 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4b ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......K........... +2196 6.522107840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830600 12 -1 702841 0 0xffffffff 0 -1 702841 0 ff ff ff ff 79 b9 0a 00 00 00 00 00 ....y....... +2198 6.522561789 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830612 12 26 694433 0 0x0000001a 0 26 694433 0 1a 00 00 00 a1 98 0a 00 00 00 00 00 ............ +2200 6.522705078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830624 26 22 2031435 0 0x00000016 1 2031435 0 196609 0 16 00 00 00 4b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....K..................... +2202 6.522999287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494248 12 -1 694433 0 0xffffffff 0 -1 694433 0 ff ff ff ff a1 98 0a 00 00 00 00 00 ............ +2204 6.527745724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494260 12 26 702842 0 0x0000001a 0 26 702842 0 1a 00 00 00 7a b9 0a 00 00 00 00 00 ....z....... +2206 6.527908564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494272 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -11730944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d ff 1e 00 00 00 00 00 ....T.c@.^1@......M....... +2208 6.528249741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830650 12 -1 702842 0 0xffffffff 0 -1 702842 0 ff ff ff ff 7a b9 0a 00 00 00 00 00 ....z....... +2210 6.528577566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830662 12 22 694434 0 0x00000016 0 22 694434 0 16 00 00 00 a2 98 0a 00 00 00 00 00 ............ +2212 6.528729439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830674 22 18 2031437 0 0x00000012 1 2031437 0 196609 0 12 00 00 00 4d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +2214 6.528908253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494298 12 -1 694434 0 0xffffffff 0 -1 694434 0 ff ff ff ff a2 98 0a 00 00 00 00 00 ............ +2218 6.612575293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830696 12 -2 79816 79833 0xfffffffe 0 -2 79816 79833 fe ff ff ff c8 37 01 00 d9 37 01 00 .....7...7.. +2226 6.630829334 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494310 12 26 702843 0 0x0000001a 0 26 702843 0 1a 00 00 00 7b b9 0a 00 00 00 00 00 ....{....... +2228 6.631014347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494322 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -11599872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f ff 1e 00 00 00 00 00 ....T.c@.^1@......O....... +2230 6.631379843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830708 12 -1 702843 0 0xffffffff 0 -1 702843 0 ff ff ff ff 7b b9 0a 00 00 00 00 00 ....{....... +2232 6.632665396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830720 12 22 694435 0 0x00000016 0 22 694435 0 16 00 00 00 a3 98 0a 00 00 00 00 00 ............ +2234 6.632874489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830732 22 18 2031439 0 0x00000012 1 2031439 0 196609 0 12 00 00 00 4f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +2236 6.633392334 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494348 12 -1 694435 0 0xffffffff 0 -1 694435 0 ff ff ff ff a3 98 0a 00 00 00 00 00 ............ +2238 6.653218269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494360 12 -2 79834 79816 0xfffffffe 0 -2 79834 79816 fe ff ff ff da 37 01 00 c8 37 01 00 .....7...7.. +2248 6.735540867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494372 12 26 702844 0 0x0000001a 0 26 702844 0 1a 00 00 00 7c b9 0a 00 00 00 00 00 ....|....... +2250 6.735717535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494384 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -11468800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 ff 1e 00 00 00 00 00 ....T.c@.^1@......Q....... +2252 6.736062288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830754 12 -1 702844 0 0xffffffff 0 -1 702844 0 ff ff ff ff 7c b9 0a 00 00 00 00 00 ....|....... +2254 6.736538172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830766 12 22 694436 0 0x00000016 0 22 694436 0 16 00 00 00 a4 98 0a 00 00 00 00 00 ............ +2256 6.736710310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830778 22 18 2031441 0 0x00000012 1 2031441 0 196609 0 12 00 00 00 51 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +2258 6.737034082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494410 12 -1 694436 0 0xffffffff 0 -1 694436 0 ff ff ff ff a4 98 0a 00 00 00 00 00 ............ +2264 6.824103117 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494422 12 34 702845 0 0x00000022 0 34 702845 0 22 00 00 00 7d b9 0a 00 00 00 00 00 """...}......." +2266 6.824305534 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494434 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -12910592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3b ff 01 00 00 00 00 00 a9 bc 0d c3 9d 01 00 00 .....!...o3.......;............... +2268 6.824437141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494468 12 67 702846 0 0x00000043 0 67 702846 0 43 00 00 00 7e b9 0a 00 00 00 00 00 C...~....... +2270 6.824521065 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494480 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3b ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 2a 0d 5c 88 ?.....3...|8...........;.......=B.....&......... +2272 6.824619293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830800 12 -1 702845 0 0xffffffff 0 -1 702845 0 ff ff ff ff 7d b9 0a 00 00 00 00 00 ....}....... +2274 6.824800253 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830812 12 -1 702846 0 0xffffffff 0 -1 702846 0 ff ff ff ff 7e b9 0a 00 00 00 00 00 ....~....... +2276 6.826200008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830824 12 52 694437 0 0x00000034 0 52 694437 0 34 00 00 00 a5 98 0a 00 00 00 00 00 4........... +2278 6.826347113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830836 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3b ff 01 00 00 00 00 00 00 00 a7 2c 2d 3c 4a 01 00 00 "0...Dk.................L."".([.....;..........,-<" +2280 6.826553345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494547 12 -1 694437 0 0xffffffff 0 -1 694437 0 ff ff ff ff a5 98 0a 00 00 00 00 00 ............ +2282 6.827588320 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494559 12 30 702847 0 0x0000001e 0 30 702847 0 1e 00 00 00 7f b9 0a 00 00 00 00 00 ............ +2284 6.827723742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494571 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -11337728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 53 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......S........... +2286 6.827984095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830888 12 -1 702847 0 0xffffffff 0 -1 702847 0 ff ff ff ff 7f b9 0a 00 00 00 00 00 ............ +2288 6.830080271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830900 12 26 694438 0 0x0000001a 0 26 694438 0 1a 00 00 00 a6 98 0a 00 00 00 00 00 ............ +2290 6.830284357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830912 26 22 2031443 0 0x00000016 1 2031443 0 196609 0 16 00 00 00 53 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....S..................... +2292 6.830541849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494601 12 -1 694438 0 0xffffffff 0 -1 694438 0 ff ff ff ff a6 98 0a 00 00 00 00 00 ............ +2294 6.838441133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494613 12 26 702848 0 0x0000001a 0 26 702848 0 1a 00 00 00 80 b9 0a 00 00 00 00 00 ............ +2296 6.838641644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494625 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -11206656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 ff 1e 00 00 00 00 00 ....T.c@.^1@......U....... +2298 6.838989735 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830938 12 -1 702848 0 0xffffffff 0 -1 702848 0 ff ff ff ff 80 b9 0a 00 00 00 00 00 ............ +2300 6.839472532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830950 12 22 694439 0 0x00000016 0 22 694439 0 16 00 00 00 a7 98 0a 00 00 00 00 00 ............ +2302 6.839613199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830962 22 18 2031445 0 0x00000012 1 2031445 0 196609 0 12 00 00 00 55 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +2304 6.839796782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494651 12 -1 694439 0 0xffffffff 0 -1 694439 0 ff ff ff ff a7 98 0a 00 00 00 00 00 ............ +2306 6.942639351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494663 12 26 702849 0 0x0000001a 0 26 702849 0 1a 00 00 00 81 b9 0a 00 00 00 00 00 ............ +2308 6.942822695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494675 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -11075584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 ff 1e 00 00 00 00 00 ....T.c@.^1@......W....... +2310 6.943274021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830984 12 -1 702849 0 0xffffffff 0 -1 702849 0 ff ff ff ff 81 b9 0a 00 00 00 00 00 ............ +2312 6.943697929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375830996 12 22 694440 0 0x00000016 0 22 694440 0 16 00 00 00 a8 98 0a 00 00 00 00 00 ............ +2314 6.943851948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831008 22 18 2031447 0 0x00000012 1 2031447 0 196609 0 12 00 00 00 57 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +2316 6.944206238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494701 12 -1 694440 0 0xffffffff 0 -1 694440 0 ff ff ff ff a8 98 0a 00 00 00 00 00 ............ +2320 7.045551777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494713 12 26 702850 0 0x0000001a 0 26 702850 0 1a 00 00 00 82 b9 0a 00 00 00 00 00 ............ +2322 7.045737982 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494725 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -10944512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 ff 1e 00 00 00 00 00 ....T.c@.^1@......Y....... +2324 7.046172857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831030 12 -1 702850 0 0xffffffff 0 -1 702850 0 ff ff ff ff 82 b9 0a 00 00 00 00 00 ............ +2326 7.046623468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831042 12 22 694441 0 0x00000016 0 22 694441 0 16 00 00 00 a9 98 0a 00 00 00 00 00 ............ +2328 7.046833277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831054 22 18 2031449 0 0x00000012 1 2031449 0 196609 0 12 00 00 00 59 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +2330 7.047218084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494751 12 -1 694441 0 0xffffffff 0 -1 694441 0 ff ff ff ff a9 98 0a 00 00 00 00 00 ............ +2335 7.113435030 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831076 12 -2 79817 79834 0xfffffffe 0 -2 79817 79834 fe ff ff ff c9 37 01 00 da 37 01 00 .....7...7.. +2340 7.129145145 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494763 12 34 702851 0 0x00000022 0 34 702851 0 22 00 00 00 83 b9 0a 00 00 00 00 00 """..........." +2342 7.129378557 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494775 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -12845056 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3c ff 01 00 00 00 00 00 db bd 0d c3 9d 01 00 00 .....!...o3.......<............... +2344 7.129514217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494809 12 67 702852 0 0x00000043 0 67 702852 0 43 00 00 00 84 b9 0a 00 00 00 00 00 C........... +2346 7.129601479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494821 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3c ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 90 3b 6e 88 ?.....3...|8...........<.......=B.....&......... +2348 7.129769325 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831088 12 -1 702851 0 0xffffffff 0 -1 702851 0 ff ff ff ff 83 b9 0a 00 00 00 00 00 ............ +2350 7.129956722 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831100 12 -1 702852 0 0xffffffff 0 -1 702852 0 ff ff ff ff 84 b9 0a 00 00 00 00 00 ............ +2352 7.131147146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831112 12 52 694442 0 0x00000034 0 52 694442 0 34 00 00 00 aa 98 0a 00 00 00 00 00 4........... +2354 7.131299496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831124 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3c ff 01 00 00 00 00 00 00 00 18 bd 5b 3c 4a 01 00 00 "0...Dk.................L."".([.....<...........[<" +2356 7.131654739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494888 12 -1 694442 0 0xffffffff 0 -1 694442 0 ff ff ff ff aa 98 0a 00 00 00 00 00 ............ +2358 7.133446455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494900 12 30 702853 0 0x0000001e 0 30 702853 0 1e 00 00 00 85 b9 0a 00 00 00 00 00 ............ +2360 7.133589029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494912 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -10813440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5b ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......[........... +2362 7.134160042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831176 12 -1 702853 0 0xffffffff 0 -1 702853 0 ff ff ff ff 85 b9 0a 00 00 00 00 00 ............ +2364 7.134418011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831188 12 26 694443 0 0x0000001a 0 26 694443 0 1a 00 00 00 ab 98 0a 00 00 00 00 00 ............ +2366 7.134589195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831200 26 22 2031451 0 0x00000016 1 2031451 0 196609 0 16 00 00 00 5b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....[..................... +2368 7.134833336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494942 12 -1 694443 0 0xffffffff 0 -1 694443 0 ff ff ff ff ab 98 0a 00 00 00 00 00 ............ +2370 7.148402452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494954 12 26 702854 0 0x0000001a 0 26 702854 0 1a 00 00 00 86 b9 0a 00 00 00 00 00 ............ +2372 7.148581028 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494966 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -10682368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d ff 1e 00 00 00 00 00 ....T.c@.^1@......]....... +2374 7.148973942 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831226 12 -1 702854 0 0xffffffff 0 -1 702854 0 ff ff ff ff 86 b9 0a 00 00 00 00 00 ............ +2376 7.149436474 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831238 12 22 694444 0 0x00000016 0 22 694444 0 16 00 00 00 ac 98 0a 00 00 00 00 00 ............ +2378 7.149594545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831250 22 18 2031453 0 0x00000012 1 2031453 0 196609 0 12 00 00 00 5d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +2380 7.149935961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331494992 12 -1 694444 0 0xffffffff 0 -1 694444 0 ff ff ff ff ac 98 0a 00 00 00 00 00 ............ +2382 7.155036449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495004 12 -2 79835 79817 0xfffffffe 0 -2 79835 79817 fe ff ff ff db 37 01 00 c9 37 01 00 .....7...7.. +2393 7.251710415 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495016 12 26 702855 0 0x0000001a 0 26 702855 0 1a 00 00 00 87 b9 0a 00 00 00 00 00 ............ +2395 7.251913786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495028 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -10551296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f ff 1e 00 00 00 00 00 ....T.c@.^1@......_....... +2397 7.252231121 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831272 12 -1 702855 0 0xffffffff 0 -1 702855 0 ff ff ff ff 87 b9 0a 00 00 00 00 00 ............ +2399 7.252828836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831284 12 22 694445 0 0x00000016 0 22 694445 0 16 00 00 00 ad 98 0a 00 00 00 00 00 ............ +2401 7.253002167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831296 22 18 2031455 0 0x00000012 1 2031455 0 196609 0 12 00 00 00 5f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +2403 7.253229141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495054 12 -1 694445 0 0xffffffff 0 -1 694445 0 ff ff ff ff ad 98 0a 00 00 00 00 00 ............ +2410 7.355382442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495066 12 26 702856 0 0x0000001a 0 26 702856 0 1a 00 00 00 88 b9 0a 00 00 00 00 00 ............ +2412 7.355663538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495078 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -10420224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 ff 1e 00 00 00 00 00 ....T.c@.^1@......a....... +2414 7.356067419 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831318 12 -1 702856 0 0xffffffff 0 -1 702856 0 ff ff ff ff 88 b9 0a 00 00 00 00 00 ............ +2416 7.356686831 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831330 12 22 694446 0 0x00000016 0 22 694446 0 16 00 00 00 ae 98 0a 00 00 00 00 00 ............ +2418 7.356851816 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831342 22 18 2031457 0 0x00000012 1 2031457 0 196609 0 12 00 00 00 61 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +2420 7.357174158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495104 12 -1 694446 0 0xffffffff 0 -1 694446 0 ff ff ff ff ae 98 0a 00 00 00 00 00 ............ +2423 7.434656858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495116 12 101 702857 0 0x00000065 0 101 702857 0 65 00 00 00 89 b9 0a 00 00 00 00 00 e........... +2425 7.434990168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495128 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3d ff 01 00 00 00 00 00 0b bf 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3d ff 01 00 00 00 00 .....!...o3.......=...............?.....3...|8.. +2427 7.435464144 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831364 12 -1 702857 0 0xffffffff 0 -1 702857 0 ff ff ff ff 89 b9 0a 00 00 00 00 00 ............ +2429 7.436599493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831376 12 52 694447 0 0x00000034 0 52 694447 0 34 00 00 00 af 98 0a 00 00 00 00 00 4........... +2431 7.436849594 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831388 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3d ff 01 00 00 00 00 00 00 00 71 50 8a 3c 4a 01 00 00 "0...Dk.................L."".([.....=.........qP.<" +2433 7.437160730 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495229 12 -1 694447 0 0xffffffff 0 -1 694447 0 ff ff ff ff af 98 0a 00 00 00 00 00 ............ +2435 7.438078165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495241 12 30 702858 0 0x0000001e 0 30 702858 0 1e 00 00 00 8a b9 0a 00 00 00 00 00 ............ +2437 7.438354015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495253 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -10289152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 63 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......c........... +2439 7.438842058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831440 12 -1 702858 0 0xffffffff 0 -1 702858 0 ff ff ff ff 8a b9 0a 00 00 00 00 00 ............ +2441 7.439135551 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831452 12 26 694448 0 0x0000001a 0 26 694448 0 1a 00 00 00 b0 98 0a 00 00 00 00 00 ............ +2443 7.439285040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831464 26 22 2031459 0 0x00000016 1 2031459 0 196609 0 16 00 00 00 63 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....c..................... +2445 7.439625978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495283 12 -1 694448 0 0xffffffff 0 -1 694448 0 ff ff ff ff b0 98 0a 00 00 00 00 00 ............ +2447 7.458090067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495295 12 26 702859 0 0x0000001a 0 26 702859 0 1a 00 00 00 8b b9 0a 00 00 00 00 00 ............ +2449 7.458394289 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495307 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -10158080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 ff 1e 00 00 00 00 00 ....T.c@.^1@......e....... +2451 7.459229946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831490 12 -1 702859 0 0xffffffff 0 -1 702859 0 ff ff ff ff 8b b9 0a 00 00 00 00 00 ............ +2453 7.459740639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831502 12 22 694449 0 0x00000016 0 22 694449 0 16 00 00 00 b1 98 0a 00 00 00 00 00 ............ +2455 7.459915161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831514 22 18 2031461 0 0x00000012 1 2031461 0 196609 0 12 00 00 00 65 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +2457 7.460117817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495333 12 -1 694449 0 0xffffffff 0 -1 694449 0 ff ff ff ff b1 98 0a 00 00 00 00 00 ............ +2463 7.561492443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495345 12 26 702860 0 0x0000001a 0 26 702860 0 1a 00 00 00 8c b9 0a 00 00 00 00 00 ............ +2465 7.561717510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495357 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -10027008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 ff 1e 00 00 00 00 00 ....T.c@.^1@......g....... +2467 7.562159538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831536 12 -1 702860 0 0xffffffff 0 -1 702860 0 ff ff ff ff 8c b9 0a 00 00 00 00 00 ............ +2469 7.562650919 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831548 12 22 694450 0 0x00000016 0 22 694450 0 16 00 00 00 b2 98 0a 00 00 00 00 00 ............ +2471 7.562891245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831560 22 18 2031463 0 0x00000012 1 2031463 0 196609 0 12 00 00 00 67 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +2473 7.563094854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495383 12 -1 694450 0 0xffffffff 0 -1 694450 0 ff ff ff ff b2 98 0a 00 00 00 00 00 ............ +2476 7.614218712 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831582 12 -2 79818 79835 0xfffffffe 0 -2 79818 79835 fe ff ff ff ca 37 01 00 db 37 01 00 .....7...7.. +2506 7.655904293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495395 12 -2 79836 79818 0xfffffffe 0 -2 79836 79818 fe ff ff ff dc 37 01 00 ca 37 01 00 .....7...7.. +2519 7.665109396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495407 12 26 702861 0 0x0000001a 0 26 702861 0 1a 00 00 00 8d b9 0a 00 00 00 00 00 ............ +2521 7.665282249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495419 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -9895936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 ff 1e 00 00 00 00 00 ....T.c@.^1@......i....... +2523 7.665644884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831594 12 -1 702861 0 0xffffffff 0 -1 702861 0 ff ff ff ff 8d b9 0a 00 00 00 00 00 ............ +2525 7.666216135 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831606 12 22 694451 0 0x00000016 0 22 694451 0 16 00 00 00 b3 98 0a 00 00 00 00 00 ............ +2527 7.666381836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831618 22 18 2031465 0 0x00000012 1 2031465 0 196609 0 12 00 00 00 69 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +2529 7.666651487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495445 12 -1 694451 0 0xffffffff 0 -1 694451 0 ff ff ff ff b3 98 0a 00 00 00 00 00 ............ +2537 7.740612030 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495457 12 101 702862 0 0x00000065 0 101 702862 0 65 00 00 00 8e b9 0a 00 00 00 00 00 e........... +2539 7.740854979 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495469 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3e ff 01 00 00 00 00 00 3d c0 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3e ff 01 00 00 00 00 .....!...o3.......>.......=.......?.....3...|8.. +2541 7.741214037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831640 12 -1 702862 0 0xffffffff 0 -1 702862 0 ff ff ff ff 8e b9 0a 00 00 00 00 00 ............ +2543 7.742111206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831652 12 52 694452 0 0x00000034 0 52 694452 0 34 00 00 00 b4 98 0a 00 00 00 00 00 4........... +2545 7.742344379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831664 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3e ff 01 00 00 00 00 00 00 00 f2 f3 b8 3c 4a 01 00 00 "0...Dk.................L."".([.....>............<" +2547 7.742727757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495570 12 -1 694452 0 0xffffffff 0 -1 694452 0 ff ff ff ff b4 98 0a 00 00 00 00 00 ............ +2549 7.743387699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495582 12 30 702863 0 0x0000001e 0 30 702863 0 1e 00 00 00 8f b9 0a 00 00 00 00 00 ............ +2551 7.743604660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495594 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -9764864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......k........... +2553 7.743918896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831716 12 -1 702863 0 0xffffffff 0 -1 702863 0 ff ff ff ff 8f b9 0a 00 00 00 00 00 ............ +2555 7.744359970 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831728 12 26 694453 0 0x0000001a 0 26 694453 0 1a 00 00 00 b5 98 0a 00 00 00 00 00 ............ +2557 7.744610786 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831740 26 22 2031467 0 0x00000016 1 2031467 0 196609 0 16 00 00 00 6b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....k..................... +2559 7.744850874 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495624 12 -1 694453 0 0xffffffff 0 -1 694453 0 ff ff ff ff b5 98 0a 00 00 00 00 00 ............ +2563 7.768066168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495636 12 26 702864 0 0x0000001a 0 26 702864 0 1a 00 00 00 90 b9 0a 00 00 00 00 00 ............ +2565 7.768229485 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495648 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -9633792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d ff 1e 00 00 00 00 00 ....T.c@.^1@......m....... +2567 7.768579006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831766 12 -1 702864 0 0xffffffff 0 -1 702864 0 ff ff ff ff 90 b9 0a 00 00 00 00 00 ............ +2569 7.769012928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831778 12 22 694454 0 0x00000016 0 22 694454 0 16 00 00 00 b6 98 0a 00 00 00 00 00 ............ +2571 7.769220352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831790 22 18 2031469 0 0x00000012 1 2031469 0 196609 0 12 00 00 00 6d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +2573 7.769524336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495674 12 -1 694454 0 0xffffffff 0 -1 694454 0 ff ff ff ff b6 98 0a 00 00 00 00 00 ............ +2655 7.870796919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495686 12 26 702865 0 0x0000001a 0 26 702865 0 1a 00 00 00 91 b9 0a 00 00 00 00 00 ............ +2657 7.871012211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495698 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -9502720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f ff 1e 00 00 00 00 00 ....T.c@.^1@......o....... +2659 7.871535540 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831812 12 -1 702865 0 0xffffffff 0 -1 702865 0 ff ff ff ff 91 b9 0a 00 00 00 00 00 ............ +2661 7.871988535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831824 12 22 694455 0 0x00000016 0 22 694455 0 16 00 00 00 b7 98 0a 00 00 00 00 00 ............ +2663 7.872260332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831836 22 18 2031471 0 0x00000012 1 2031471 0 196609 0 12 00 00 00 6f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +2665 7.872566223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495724 12 -1 694455 0 0xffffffff 0 -1 694455 0 ff ff ff ff b7 98 0a 00 00 00 00 00 ............ +2669 7.974688530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495736 12 26 702866 0 0x0000001a 0 26 702866 0 1a 00 00 00 92 b9 0a 00 00 00 00 00 ............ +2671 7.974861383 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495748 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -9371648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 ff 1e 00 00 00 00 00 ....T.c@.^1@......q....... +2673 7.975232840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831858 12 -1 702866 0 0xffffffff 0 -1 702866 0 ff ff ff ff 92 b9 0a 00 00 00 00 00 ............ +2675 7.975643635 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831870 12 22 694456 0 0x00000016 0 22 694456 0 16 00 00 00 b8 98 0a 00 00 00 00 00 ............ +2677 7.975811958 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831882 22 18 2031473 0 0x00000012 1 2031473 0 196609 0 12 00 00 00 71 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +2679 7.976145744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495774 12 -1 694456 0 0xffffffff 0 -1 694456 0 ff ff ff ff b8 98 0a 00 00 00 00 00 ............ +2683 8.045182228 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495786 12 34 702867 0 0x00000022 0 34 702867 0 22 00 00 00 93 b9 0a 00 00 00 00 00 """..........." +2685 8.045348406 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495798 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -12648448 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3f ff 01 00 00 00 00 00 6e c1 0d c3 9d 01 00 00 .....!...o3.......?.......n....... +2687 8.045449734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495832 12 67 702868 0 0x00000043 0 67 702868 0 43 00 00 00 94 b9 0a 00 00 00 00 00 C........... +2689 8.045558929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495844 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3f ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d0 6f c7 a4 88 ?.....3...|8...........?.......=B.....&......... +2690 8.045627356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831904 12 -1 702867 0 0xffffffff 0 -1 702867 0 ff ff ff ff 93 b9 0a 00 00 00 00 00 ............ +2691 8.045733452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831916 12 -1 702868 0 0xffffffff 0 -1 702868 0 ff ff ff ff 94 b9 0a 00 00 00 00 00 ............ +2694 8.046967030 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831928 12 52 694457 0 0x00000034 0 52 694457 0 34 00 00 00 b9 98 0a 00 00 00 00 00 4........... +2696 8.047237635 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831940 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3f ff 01 00 00 00 00 00 00 00 51 76 e7 3c 4a 01 00 00 "0...Dk.................L."".([.....?.........Qv.<" +2698 8.047541380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495911 12 -1 694457 0 0xffffffff 0 -1 694457 0 ff ff ff ff b9 98 0a 00 00 00 00 00 ............ +2699 8.048473597 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495923 12 30 702869 0 0x0000001e 0 30 702869 0 1e 00 00 00 95 b9 0a 00 00 00 00 00 ............ +2700 8.048580408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495935 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -9240576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 73 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......s........... +2701 8.048836946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375831992 12 -1 702869 0 0xffffffff 0 -1 702869 0 ff ff ff ff 95 b9 0a 00 00 00 00 00 ............ +2703 8.049425602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832004 12 26 694458 0 0x0000001a 0 26 694458 0 1a 00 00 00 ba 98 0a 00 00 00 00 00 ............ +2705 8.049594164 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832016 26 22 2031475 0 0x00000016 1 2031475 0 196609 0 16 00 00 00 73 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....s..................... +2707 8.049885988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495965 12 -1 694458 0 0xffffffff 0 -1 694458 0 ff ff ff ff ba 98 0a 00 00 00 00 00 ............ +2709 8.078046083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495977 12 26 702870 0 0x0000001a 0 26 702870 0 1a 00 00 00 96 b9 0a 00 00 00 00 00 ............ +2711 8.078248262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331495989 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -9109504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 ff 1e 00 00 00 00 00 ....T.c@.^1@......u....... +2713 8.078734875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832042 12 -1 702870 0 0xffffffff 0 -1 702870 0 ff ff ff ff 96 b9 0a 00 00 00 00 00 ............ +2717 8.079404354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832054 12 22 694459 0 0x00000016 0 22 694459 0 16 00 00 00 bb 98 0a 00 00 00 00 00 ............ +2719 8.079604149 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832066 22 18 2031477 0 0x00000012 1 2031477 0 196609 0 12 00 00 00 75 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +2721 8.079870701 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496015 12 -1 694459 0 0xffffffff 0 -1 694459 0 ff ff ff ff bb 98 0a 00 00 00 00 00 ............ +2753 8.114692211 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832088 12 -2 79819 79836 0xfffffffe 0 -2 79819 79836 fe ff ff ff cb 37 01 00 dc 37 01 00 .....7...7.. +2762 8.156491756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496027 12 -2 79837 79819 0xfffffffe 0 -2 79837 79819 fe ff ff ff dd 37 01 00 cb 37 01 00 .....7...7.. +2765 8.182764769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496039 12 26 702871 0 0x0000001a 0 26 702871 0 1a 00 00 00 97 b9 0a 00 00 00 00 00 ............ +2767 8.182926655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496051 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -8978432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 ff 1e 00 00 00 00 00 ....T.c@.^1@......w....... +2769 8.183246374 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832100 12 -1 702871 0 0xffffffff 0 -1 702871 0 ff ff ff ff 97 b9 0a 00 00 00 00 00 ............ +2771 8.183802366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832112 12 22 694460 0 0x00000016 0 22 694460 0 16 00 00 00 bc 98 0a 00 00 00 00 00 ............ +2773 8.184251070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832124 22 18 2031479 0 0x00000012 1 2031479 0 196609 0 12 00 00 00 77 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +2775 8.184602261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496077 12 -1 694460 0 0xffffffff 0 -1 694460 0 ff ff ff ff bc 98 0a 00 00 00 00 00 ............ +2816 8.285685778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496089 12 26 702872 0 0x0000001a 0 26 702872 0 1a 00 00 00 98 b9 0a 00 00 00 00 00 ............ +2820 8.285854340 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496101 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -8847360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 ff 1e 00 00 00 00 00 ....T.c@.^1@......y....... +2824 8.286344528 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832146 12 -1 702872 0 0xffffffff 0 -1 702872 0 ff ff ff ff 98 b9 0a 00 00 00 00 00 ............ +2826 8.286757946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832158 12 22 694461 0 0x00000016 0 22 694461 0 16 00 00 00 bd 98 0a 00 00 00 00 00 ............ +2828 8.286932945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832170 22 18 2031481 0 0x00000012 1 2031481 0 196609 0 12 00 00 00 79 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +2830 8.287293911 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496127 12 -1 694461 0 0xffffffff 0 -1 694461 0 ff ff ff ff bd 98 0a 00 00 00 00 00 ............ +2839 8.350101233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496139 12 101 702873 0 0x00000065 0 101 702873 0 65 00 00 00 99 b9 0a 00 00 00 00 00 e........... +2841 8.350301027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496151 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 40 ff 01 00 00 00 00 00 9f c2 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 40 ff 01 00 00 00 00 .....!...o3.......@...............?.....3...|8.. +2843 8.350669384 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832192 12 -1 702873 0 0xffffffff 0 -1 702873 0 ff ff ff ff 99 b9 0a 00 00 00 00 00 ............ +2845 8.351762533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832204 12 52 694462 0 0x00000034 0 52 694462 0 34 00 00 00 be 98 0a 00 00 00 00 00 4........... +2847 8.351933002 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832216 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 40 ff 01 00 00 00 00 00 00 00 2c f8 15 3d 4a 01 00 00 "0...Dk.................L."".([.....@.........,..=" +2849 8.352267265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496252 12 -1 694462 0 0xffffffff 0 -1 694462 0 ff ff ff ff be 98 0a 00 00 00 00 00 ............ +2851 8.353080511 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496264 12 30 702874 0 0x0000001e 0 30 702874 0 1e 00 00 00 9a b9 0a 00 00 00 00 00 ............ +2853 8.353272676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496276 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -8716288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7b ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P......{........... +2855 8.353636980 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832268 12 -1 702874 0 0xffffffff 0 -1 702874 0 ff ff ff ff 9a b9 0a 00 00 00 00 00 ............ +2857 8.354200363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832280 12 26 694463 0 0x0000001a 0 26 694463 0 1a 00 00 00 bf 98 0a 00 00 00 00 00 ............ +2859 8.354456663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832292 26 22 2031483 0 0x00000016 1 2031483 0 196609 0 16 00 00 00 7b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....{..................... +2861 8.354714155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496306 12 -1 694463 0 0xffffffff 0 -1 694463 0 ff ff ff ff bf 98 0a 00 00 00 00 00 ............ +2863 8.388542652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496318 12 26 702875 0 0x0000001a 0 26 702875 0 1a 00 00 00 9b b9 0a 00 00 00 00 00 ............ +2865 8.388695002 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496330 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -8585216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d ff 1e 00 00 00 00 00 ....T.c@.^1@......}....... +2867 8.389053345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832318 12 -1 702875 0 0xffffffff 0 -1 702875 0 ff ff ff ff 9b b9 0a 00 00 00 00 00 ............ +2869 8.389728308 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832330 12 22 694464 0 0x00000016 0 22 694464 0 16 00 00 00 c0 98 0a 00 00 00 00 00 ............ +2871 8.389901400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832342 22 18 2031485 0 0x00000012 1 2031485 0 196609 0 12 00 00 00 7d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +2873 8.390209436 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496356 12 -1 694464 0 0xffffffff 0 -1 694464 0 ff ff ff ff c0 98 0a 00 00 00 00 00 ............ +2877 8.491909981 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496368 12 26 702876 0 0x0000001a 0 26 702876 0 1a 00 00 00 9c b9 0a 00 00 00 00 00 ............ +2879 8.492139101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496380 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -8454144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +2881 8.492395163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832364 12 -1 702876 0 0xffffffff 0 -1 702876 0 ff ff ff ff 9c b9 0a 00 00 00 00 00 ............ +2883 8.492938757 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832376 12 22 694465 0 0x00000016 0 22 694465 0 16 00 00 00 c1 98 0a 00 00 00 00 00 ............ +2885 8.493156433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832388 22 18 2031487 0 0x00000012 1 2031487 0 196609 0 12 00 00 00 7f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2887 8.493427515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496406 12 -1 694465 0 0xffffffff 0 -1 694465 0 ff ff ff ff c1 98 0a 00 00 00 00 00 ............ +2898 8.594925165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496418 12 26 702877 0 0x0000001a 0 26 702877 0 1a 00 00 00 9d b9 0a 00 00 00 00 00 ............ +2900 8.595144749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496430 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -8323072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +2902 8.595446110 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832410 12 -1 702877 0 0xffffffff 0 -1 702877 0 ff ff ff ff 9d b9 0a 00 00 00 00 00 ............ +2904 8.596155167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832422 12 22 694466 0 0x00000016 0 22 694466 0 16 00 00 00 c2 98 0a 00 00 00 00 00 ............ +2906 8.596312046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832434 22 18 2031489 0 0x00000012 1 2031489 0 196609 0 12 00 00 00 81 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2908 8.596523762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496456 12 -1 694466 0 0xffffffff 0 -1 694466 0 ff ff ff ff c2 98 0a 00 00 00 00 00 ............ +2914 8.615853310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832456 12 -2 79820 79837 0xfffffffe 0 -2 79820 79837 fe ff ff ff cc 37 01 00 dd 37 01 00 .....7...7.. +2919 8.655410290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496468 12 34 702878 0 0x00000022 0 34 702878 0 22 00 00 00 9e b9 0a 00 00 00 00 00 """..........." +2921 8.655648708 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496480 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -12517376 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 41 ff 01 00 00 00 00 00 d1 c3 0d c3 9d 01 00 00 .....!...o3.......A............... +2923 8.655842781 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496514 12 67 702879 0 0x00000043 0 67 702879 0 43 00 00 00 9f b9 0a 00 00 00 00 00 C........... +2925 8.655928135 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496526 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 41 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 50 16 2c c9 88 ?.....3...|8...........A.......=B.....&......... +2927 8.656175137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832468 12 -1 702878 0 0xffffffff 0 -1 702878 0 ff ff ff ff 9e b9 0a 00 00 00 00 00 ............ +2929 8.656395912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832480 12 -1 702879 0 0xffffffff 0 -1 702879 0 ff ff ff ff 9f b9 0a 00 00 00 00 00 ............ +2932 8.657090187 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496593 12 -2 79838 79820 0xfffffffe 0 -2 79838 79820 fe ff ff ff de 37 01 00 cc 37 01 00 .....7...7.. +2935 8.657338858 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832492 12 52 694467 0 0x00000034 0 52 694467 0 34 00 00 00 c3 98 0a 00 00 00 00 00 4........... +2937 8.657503843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832504 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 41 ff 01 00 00 00 00 00 00 00 bd 9b 44 3d 4a 01 00 00 "0...Dk.................L."".([.....A...........D=" +2939 8.657868385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496605 12 -1 694467 0 0xffffffff 0 -1 694467 0 ff ff ff ff c3 98 0a 00 00 00 00 00 ............ +2941 8.658699989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496617 12 30 702880 0 0x0000001e 0 30 702880 0 1e 00 00 00 a0 b9 0a 00 00 00 00 00 ............ +2943 8.658865452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496629 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -8192000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 83 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2945 8.659210443 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832556 12 -1 702880 0 0xffffffff 0 -1 702880 0 ff ff ff ff a0 b9 0a 00 00 00 00 00 ............ +2947 8.659670353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832568 12 26 694468 0 0x0000001a 0 26 694468 0 1a 00 00 00 c4 98 0a 00 00 00 00 00 ............ +2949 8.659931183 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832580 26 22 2031491 0 0x00000016 1 2031491 0 196609 0 16 00 00 00 83 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2951 8.660163164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496659 12 -1 694468 0 0xffffffff 0 -1 694468 0 ff ff ff ff c4 98 0a 00 00 00 00 00 ............ +2955 8.698429585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496671 12 26 702881 0 0x0000001a 0 26 702881 0 1a 00 00 00 a1 b9 0a 00 00 00 00 00 ............ +2957 8.698604584 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496683 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -8060928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +2959 8.698935270 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832606 12 -1 702881 0 0xffffffff 0 -1 702881 0 ff ff ff ff a1 b9 0a 00 00 00 00 00 ............ +2961 8.699472666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832618 12 22 694469 0 0x00000016 0 22 694469 0 16 00 00 00 c5 98 0a 00 00 00 00 00 ............ +2963 8.699630260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832630 22 18 2031493 0 0x00000012 1 2031493 0 196609 0 12 00 00 00 85 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2965 8.699965954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496709 12 -1 694469 0 0xffffffff 0 -1 694469 0 ff ff ff ff c5 98 0a 00 00 00 00 00 ............ +2972 8.802431822 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496721 12 26 702882 0 0x0000001a 0 26 702882 0 1a 00 00 00 a2 b9 0a 00 00 00 00 00 ............ +2974 8.802617073 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496733 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -7929856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +2976 8.803002596 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832652 12 -1 702882 0 0xffffffff 0 -1 702882 0 ff ff ff ff a2 b9 0a 00 00 00 00 00 ............ +2978 8.803443432 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832664 12 22 694470 0 0x00000016 0 22 694470 0 16 00 00 00 c6 98 0a 00 00 00 00 00 ............ +2980 8.803603649 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832676 22 18 2031495 0 0x00000012 1 2031495 0 196609 0 12 00 00 00 87 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2982 8.804039955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496759 12 -1 694470 0 0xffffffff 0 -1 694470 0 ff ff ff ff c6 98 0a 00 00 00 00 00 ............ +2988 8.906412840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496771 12 26 702883 0 0x0000001a 0 26 702883 0 1a 00 00 00 a3 b9 0a 00 00 00 00 00 ............ +2990 8.906594038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496783 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -7798784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +2992 8.907038450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832698 12 -1 702883 0 0xffffffff 0 -1 702883 0 ff ff ff ff a3 b9 0a 00 00 00 00 00 ............ +2994 8.907495499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832710 12 22 694471 0 0x00000016 0 22 694471 0 16 00 00 00 c7 98 0a 00 00 00 00 00 ............ +2996 8.907770634 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832722 22 18 2031497 0 0x00000012 1 2031497 0 196609 0 12 00 00 00 89 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2998 8.908066034 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496809 12 -1 694471 0 0xffffffff 0 -1 694471 0 ff ff ff ff c7 98 0a 00 00 00 00 00 ............ +3076 8.960800171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496821 12 101 702884 0 0x00000065 0 101 702884 0 65 00 00 00 a4 b9 0a 00 00 00 00 00 e........... +3078 8.961052895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496833 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 42 ff 01 00 00 00 00 00 02 c5 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 42 ff 01 00 00 00 00 .....!...o3.......B...............?.....3...|8.. +3080 8.961323023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832744 12 -1 702884 0 0xffffffff 0 -1 702884 0 ff ff ff ff a4 b9 0a 00 00 00 00 00 ............ +3082 8.962635517 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832756 12 52 694472 0 0x00000034 0 52 694472 0 34 00 00 00 c8 98 0a 00 00 00 00 00 4........... +3084 8.962890148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832768 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 42 ff 01 00 00 00 00 00 00 00 c5 31 73 3d 4a 01 00 00 "0...Dk.................L."".([.....B..........1s=" +3086 8.963135481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496934 12 -1 694472 0 0xffffffff 0 -1 694472 0 ff ff ff ff c8 98 0a 00 00 00 00 00 ............ +3088 8.963874578 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496946 12 30 702885 0 0x0000001e 0 30 702885 0 1e 00 00 00 a5 b9 0a 00 00 00 00 00 ............ +3090 8.964010239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496958 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -7667712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8b ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3092 8.964289665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832820 12 -1 702885 0 0xffffffff 0 -1 702885 0 ff ff ff ff a5 b9 0a 00 00 00 00 00 ............ +3094 8.964814901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832832 12 26 694473 0 0x0000001a 0 26 694473 0 1a 00 00 00 c9 98 0a 00 00 00 00 00 ............ +3096 8.965070248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832844 26 22 2031499 0 0x00000016 1 2031499 0 196609 0 16 00 00 00 8b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3098 8.965316534 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331496988 12 -1 694473 0 0xffffffff 0 -1 694473 0 ff ff ff ff c9 98 0a 00 00 00 00 00 ............ +3102 9.010365963 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497000 12 26 702886 0 0x0000001a 0 26 702886 0 1a 00 00 00 a6 b9 0a 00 00 00 00 00 ............ +3104 9.010533571 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497012 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -7536640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3106 9.011051416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832870 12 -1 702886 0 0xffffffff 0 -1 702886 0 ff ff ff ff a6 b9 0a 00 00 00 00 00 ............ +3108 9.011589766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832882 12 22 694474 0 0x00000016 0 22 694474 0 16 00 00 00 ca 98 0a 00 00 00 00 00 ............ +3110 9.011788607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832894 22 18 2031501 0 0x00000012 1 2031501 0 196609 0 12 00 00 00 8d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3112 9.012168646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497038 12 -1 694474 0 0xffffffff 0 -1 694474 0 ff ff ff ff ca 98 0a 00 00 00 00 00 ............ +3359 9.113671064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497050 12 26 702887 0 0x0000001a 0 26 702887 0 1a 00 00 00 a7 b9 0a 00 00 00 00 00 ............ +3363 9.113953352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497062 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -7405568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3365 9.114335060 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832916 12 -1 702887 0 0xffffffff 0 -1 702887 0 ff ff ff ff a7 b9 0a 00 00 00 00 00 ............ +3367 9.114971161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832928 12 22 694475 0 0x00000016 0 22 694475 0 16 00 00 00 cb 98 0a 00 00 00 00 00 ............ +3369 9.115145206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832940 22 18 2031503 0 0x00000012 1 2031503 0 196609 0 12 00 00 00 8f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3371 9.115428448 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497088 12 -1 694475 0 0xffffffff 0 -1 694475 0 ff ff ff ff cb 98 0a 00 00 00 00 00 ............ +3373 9.117537737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832962 12 -2 79821 79838 0xfffffffe 0 -2 79821 79838 fe ff ff ff cd 37 01 00 de 37 01 00 .....7...7.. +3542 9.158340454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497100 12 -2 79839 79821 0xfffffffe 0 -2 79839 79821 fe ff ff ff df 37 01 00 cd 37 01 00 .....7...7.. +3555 9.217670918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497112 12 26 702888 0 0x0000001a 0 26 702888 0 1a 00 00 00 a8 b9 0a 00 00 00 00 00 ............ +3557 9.217895508 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497124 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -7274496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3559 9.218286753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832974 12 -1 702888 0 0xffffffff 0 -1 702888 0 ff ff ff ff a8 b9 0a 00 00 00 00 00 ............ +3561 9.218877792 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832986 12 22 694476 0 0x00000016 0 22 694476 0 16 00 00 00 cc 98 0a 00 00 00 00 00 ............ +3563 9.219067574 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375832998 22 18 2031505 0 0x00000012 1 2031505 0 196609 0 12 00 00 00 91 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3565 9.219373226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497150 12 -1 694476 0 0xffffffff 0 -1 694476 0 ff ff ff ff cc 98 0a 00 00 00 00 00 ............ +3571 9.265972853 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497162 12 34 702889 0 0x00000022 0 34 702889 0 22 00 00 00 a9 b9 0a 00 00 00 00 00 """..........." +3573 9.266137362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497174 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -12386304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 43 ff 01 00 00 00 00 00 33 c6 0d c3 9d 01 00 00 .....!...o3.......C.......3....... +3575 9.266225338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497208 12 67 702890 0 0x00000043 0 67 702890 0 43 00 00 00 aa b9 0a 00 00 00 00 00 C........... +3577 9.266309738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497220 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 43 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 08 99 ed 88 ?.....3...|8...........C.......=B.....&......... +3579 9.266487837 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833020 12 -1 702889 0 0xffffffff 0 -1 702889 0 ff ff ff ff a9 b9 0a 00 00 00 00 00 ............ +3581 9.266702175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833032 12 -1 702890 0 0xffffffff 0 -1 702890 0 ff ff ff ff aa b9 0a 00 00 00 00 00 ............ +3583 9.273122072 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833044 12 52 694477 0 0x00000034 0 52 694477 0 34 00 00 00 cd 98 0a 00 00 00 00 00 4........... +3585 9.273282766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833056 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 43 ff 01 00 00 00 00 00 00 00 ea 8e a2 3d 4a 01 00 00 "0...Dk.................L."".([.....C............=" +3587 9.273552179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497287 12 -1 694477 0 0xffffffff 0 -1 694477 0 ff ff ff ff cd 98 0a 00 00 00 00 00 ............ +3589 9.274522543 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497299 12 30 702891 0 0x0000001e 0 30 702891 0 1e 00 00 00 ab b9 0a 00 00 00 00 00 ............ +3591 9.274707317 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497311 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -7143424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3593 9.275172472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833108 12 -1 702891 0 0xffffffff 0 -1 702891 0 ff ff ff ff ab b9 0a 00 00 00 00 00 ............ +3595 9.278138161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833120 12 26 694478 0 0x0000001a 0 26 694478 0 1a 00 00 00 ce 98 0a 00 00 00 00 00 ............ +3597 9.278332710 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833132 26 22 2031507 0 0x00000016 1 2031507 0 196609 0 16 00 00 00 93 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3599 9.278603077 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497341 12 -1 694478 0 0xffffffff 0 -1 694478 0 ff ff ff ff ce 98 0a 00 00 00 00 00 ............ +3602 9.320894957 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497353 12 26 702892 0 0x0000001a 0 26 702892 0 1a 00 00 00 ac b9 0a 00 00 00 00 00 ............ +3605 9.321060896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497365 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -7012352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3607 9.321387053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833158 12 -1 702892 0 0xffffffff 0 -1 702892 0 ff ff ff ff ac b9 0a 00 00 00 00 00 ............ +3609 9.321886778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833170 12 22 694479 0 0x00000016 0 22 694479 0 16 00 00 00 cf 98 0a 00 00 00 00 00 ............ +3611 9.322098255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833182 22 18 2031509 0 0x00000012 1 2031509 0 196609 0 12 00 00 00 95 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3613 9.322441101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497391 12 -1 694479 0 0xffffffff 0 -1 694479 0 ff ff ff ff cf 98 0a 00 00 00 00 00 ............ +3617 9.423552990 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497403 12 26 702893 0 0x0000001a 0 26 702893 0 1a 00 00 00 ad b9 0a 00 00 00 00 00 ............ +3619 9.423742533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497415 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -6881280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3621 9.424122334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833204 12 -1 702893 0 0xffffffff 0 -1 702893 0 ff ff ff ff ad b9 0a 00 00 00 00 00 ............ +3623 9.424494505 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833216 12 22 694480 0 0x00000016 0 22 694480 0 16 00 00 00 d0 98 0a 00 00 00 00 00 ............ +3625 9.424654245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833228 22 18 2031511 0 0x00000012 1 2031511 0 196609 0 12 00 00 00 97 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3627 9.424953938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497441 12 -1 694480 0 0xffffffff 0 -1 694480 0 ff ff ff ff d0 98 0a 00 00 00 00 00 ............ +3631 9.527506828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497453 12 26 702894 0 0x0000001a 0 26 702894 0 1a 00 00 00 ae b9 0a 00 00 00 00 00 ............ +3633 9.527680159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497465 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -6750208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3635 9.528143883 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833250 12 -1 702894 0 0xffffffff 0 -1 702894 0 ff ff ff ff ae b9 0a 00 00 00 00 00 ............ +3637 9.528500080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833262 12 22 694481 0 0x00000016 0 22 694481 0 16 00 00 00 d1 98 0a 00 00 00 00 00 ............ +3639 9.528656006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833274 22 18 2031513 0 0x00000012 1 2031513 0 196609 0 12 00 00 00 99 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3641 9.528898716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497491 12 -1 694481 0 0xffffffff 0 -1 694481 0 ff ff ff ff d1 98 0a 00 00 00 00 00 ............ +3643 9.577057600 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497503 12 34 702895 0 0x00000022 0 34 702895 0 22 00 00 00 af b9 0a 00 00 00 00 00 """..........." +3645 9.577265739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497515 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -12320768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 44 ff 01 00 00 00 00 00 6a c7 0d c3 9d 01 00 00 .....!...o3.......D.......j....... +3647 9.577396154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497549 12 67 702896 0 0x00000043 0 67 702896 0 43 00 00 00 b0 b9 0a 00 00 00 00 00 C........... +3649 9.577520370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497561 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 44 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f cc 7b 22 00 89 ?.....3...|8...........D.......=B.....&......... +3651 9.577863455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833296 12 -1 702895 0 0xffffffff 0 -1 702895 0 ff ff ff ff af b9 0a 00 00 00 00 00 ............ +3653 9.578099966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833308 12 -1 702896 0 0xffffffff 0 -1 702896 0 ff ff ff ff b0 b9 0a 00 00 00 00 00 ............ +3655 9.578732491 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833320 12 52 694482 0 0x00000034 0 52 694482 0 34 00 00 00 d2 98 0a 00 00 00 00 00 4........... +3657 9.578953028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833332 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 44 ff 01 00 00 00 00 00 00 00 1d 35 d1 3d 4a 01 00 00 "0...Dk.................L."".([.....D..........5.=" +3659 9.579257488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497628 12 -1 694482 0 0xffffffff 0 -1 694482 0 ff ff ff ff d2 98 0a 00 00 00 00 00 ............ +3661 9.580162048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497640 12 30 702897 0 0x0000001e 0 30 702897 0 1e 00 00 00 b1 b9 0a 00 00 00 00 00 ............ +3663 9.580324650 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497652 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -6619136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3665 9.580587864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833384 12 -1 702897 0 0xffffffff 0 -1 702897 0 ff ff ff ff b1 b9 0a 00 00 00 00 00 ............ +3667 9.581060410 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833396 12 26 694483 0 0x0000001a 0 26 694483 0 1a 00 00 00 d3 98 0a 00 00 00 00 00 ............ +3669 9.581204414 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833408 26 22 2031515 0 0x00000016 1 2031515 0 196609 0 16 00 00 00 9b ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3671 9.581416368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497682 12 -1 694483 0 0xffffffff 0 -1 694483 0 ff ff ff ff d3 98 0a 00 00 00 00 00 ............ +3675 9.617745876 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833434 12 -2 79822 79839 0xfffffffe 0 -2 79822 79839 fe ff ff ff ce 37 01 00 df 37 01 00 .....7...7.. +3681 9.630667686 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497694 12 26 702898 0 0x0000001a 0 26 702898 0 1a 00 00 00 b2 b9 0a 00 00 00 00 00 ............ +3683 9.630900621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497706 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -6488064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3685 9.631258011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833446 12 -1 702898 0 0xffffffff 0 -1 702898 0 ff ff ff ff b2 b9 0a 00 00 00 00 00 ............ +3687 9.631638288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833458 12 22 694484 0 0x00000016 0 22 694484 0 16 00 00 00 d4 98 0a 00 00 00 00 00 ............ +3689 9.631820917 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833470 22 18 2031517 0 0x00000012 1 2031517 0 196609 0 12 00 00 00 9d ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3691 9.632569551 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497732 12 -1 694484 0 0xffffffff 0 -1 694484 0 ff ff ff ff d4 98 0a 00 00 00 00 00 ............ +3693 9.658793449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497744 12 -2 79840 79822 0xfffffffe 0 -2 79840 79822 fe ff ff ff e0 37 01 00 ce 37 01 00 .....7...7.. +3703 9.734478474 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497756 12 26 702899 0 0x0000001a 0 26 702899 0 1a 00 00 00 b3 b9 0a 00 00 00 00 00 ............ +3705 9.734723806 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497768 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -6356992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3707 9.735154152 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833492 12 -1 702899 0 0xffffffff 0 -1 702899 0 ff ff ff ff b3 b9 0a 00 00 00 00 00 ............ +3709 9.735431671 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833504 12 22 694485 0 0x00000016 0 22 694485 0 16 00 00 00 d5 98 0a 00 00 00 00 00 ............ +3711 9.735624552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833516 22 18 2031519 0 0x00000012 1 2031519 0 196609 0 12 00 00 00 9f ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3713 9.735910177 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497794 12 -1 694485 0 0xffffffff 0 -1 694485 0 ff ff ff ff d5 98 0a 00 00 00 00 00 ............ +3719 9.837365866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497806 12 26 702900 0 0x0000001a 0 26 702900 0 1a 00 00 00 b4 b9 0a 00 00 00 00 00 ............ +3721 9.837560892 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497818 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -6225920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3723 9.837829351 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833538 12 -1 702900 0 0xffffffff 0 -1 702900 0 ff ff ff ff b4 b9 0a 00 00 00 00 00 ............ +3725 9.838735819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833550 12 22 694486 0 0x00000016 0 22 694486 0 16 00 00 00 d6 98 0a 00 00 00 00 00 ............ +3727 9.838971376 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833562 22 18 2031521 0 0x00000012 1 2031521 0 196609 0 12 00 00 00 a1 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3729 9.839232922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497844 12 -1 694486 0 0xffffffff 0 -1 694486 0 ff ff ff ff d6 98 0a 00 00 00 00 00 ............ +3733 9.881189108 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497856 12 101 702901 0 0x00000065 0 101 702901 0 65 00 00 00 b5 b9 0a 00 00 00 00 00 e........... +3735 9.881364107 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497868 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 45 ff 01 00 00 00 00 00 9a c8 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 45 ff 01 00 00 00 00 .....!...o3.......E...............?.....3...|8.. +3737 9.881722450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833584 12 -1 702901 0 0xffffffff 0 -1 702901 0 ff ff ff ff b5 b9 0a 00 00 00 00 00 ............ +3739 9.883516550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833596 12 52 694487 0 0x00000034 0 52 694487 0 34 00 00 00 d7 98 0a 00 00 00 00 00 4........... +3741 9.883733749 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833608 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 45 ff 01 00 00 00 00 00 00 00 c0 b2 ff 3d 4a 01 00 00 "0...Dk.................L."".([.....E............=" +3743 9.884005308 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497969 12 -1 694487 0 0xffffffff 0 -1 694487 0 ff ff ff ff d7 98 0a 00 00 00 00 00 ............ +3745 9.884786606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497981 12 30 702902 0 0x0000001e 0 30 702902 0 1e 00 00 00 b6 b9 0a 00 00 00 00 00 ............ +3747 9.885024071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331497993 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -6094848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3749 9.885436058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833660 12 -1 702902 0 0xffffffff 0 -1 702902 0 ff ff ff ff b6 b9 0a 00 00 00 00 00 ............ +3751 9.885770798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833672 12 26 694488 0 0x0000001a 0 26 694488 0 1a 00 00 00 d8 98 0a 00 00 00 00 00 ............ +3753 9.885980844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833684 26 22 2031523 0 0x00000016 1 2031523 0 196609 0 16 00 00 00 a3 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3755 9.886255503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498023 12 -1 694488 0 0xffffffff 0 -1 694488 0 ff ff ff ff d8 98 0a 00 00 00 00 00 ............ +3757 9.940959692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498035 12 26 702903 0 0x0000001a 0 26 702903 0 1a 00 00 00 b7 b9 0a 00 00 00 00 00 ............ +3759 9.941123247 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498047 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -5963776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3761 9.941542625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833710 12 -1 702903 0 0xffffffff 0 -1 702903 0 ff ff ff ff b7 b9 0a 00 00 00 00 00 ............ +3763 9.942021847 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833722 12 22 694489 0 0x00000016 0 22 694489 0 16 00 00 00 d9 98 0a 00 00 00 00 00 ............ +3765 9.942240238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833734 22 18 2031525 0 0x00000012 1 2031525 0 196609 0 12 00 00 00 a5 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3767 9.942591667 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498073 12 -1 694489 0 0xffffffff 0 -1 694489 0 ff ff ff ff d9 98 0a 00 00 00 00 00 ............ +3771 10.044424772 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498085 12 26 702904 0 0x0000001a 0 26 702904 0 1a 00 00 00 b8 b9 0a 00 00 00 00 00 ............ +3773 10.044670343 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498097 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -5832704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3775 10.045196533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833756 12 -1 702904 0 0xffffffff 0 -1 702904 0 ff ff ff ff b8 b9 0a 00 00 00 00 00 ............ +3777 10.045921564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833768 12 22 694490 0 0x00000016 0 22 694490 0 16 00 00 00 da 98 0a 00 00 00 00 00 ............ +3779 10.046137333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833780 22 18 2031527 0 0x00000012 1 2031527 0 196609 0 12 00 00 00 a7 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3781 10.046419859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498123 12 -1 694490 0 0xffffffff 0 -1 694490 0 ff ff ff ff da 98 0a 00 00 00 00 00 ............ +3787 10.119477987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833802 12 -2 79823 79840 0xfffffffe 0 -2 79823 79840 fe ff ff ff cf 37 01 00 e0 37 01 00 .....7...7.. +3791 10.149542332 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498135 12 26 702905 0 0x0000001a 0 26 702905 0 1a 00 00 00 b9 b9 0a 00 00 00 00 00 ............ +3793 10.149746656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498147 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -5701632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3795 10.150049925 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833814 12 -1 702905 0 0xffffffff 0 -1 702905 0 ff ff ff ff b9 b9 0a 00 00 00 00 00 ............ +3797 10.150748968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833826 12 22 694491 0 0x00000016 0 22 694491 0 16 00 00 00 db 98 0a 00 00 00 00 00 ............ +3799 10.150909424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833838 22 18 2031529 0 0x00000012 1 2031529 0 196609 0 12 00 00 00 a9 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3801 10.151191950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498173 12 -1 694491 0 0xffffffff 0 -1 694491 0 ff ff ff ff db 98 0a 00 00 00 00 00 ............ +3803 10.159353018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498185 12 -2 79841 79823 0xfffffffe 0 -2 79841 79823 fe ff ff ff e1 37 01 00 cf 37 01 00 .....7...7.. +3807 10.186084509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498197 12 101 702906 0 0x00000065 0 101 702906 0 65 00 00 00 ba b9 0a 00 00 00 00 00 e........... +3809 10.186256886 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498209 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 46 ff 01 00 00 00 00 00 cb c9 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 46 ff 01 00 00 00 00 .....!...o3.......F...............?.....3...|8.. +3811 10.186575413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833860 12 -1 702906 0 0xffffffff 0 -1 702906 0 ff ff ff ff ba b9 0a 00 00 00 00 00 ............ +3813 10.187667131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833872 12 52 694492 0 0x00000034 0 52 694492 0 34 00 00 00 dc 98 0a 00 00 00 00 00 4........... +3815 10.187916279 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833884 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 46 ff 01 00 00 00 00 00 00 00 e9 1d 2e 3e 4a 01 00 00 "0...Dk.................L."".([.....F............>" +3817 10.188223362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498310 12 -1 694492 0 0xffffffff 0 -1 694492 0 ff ff ff ff dc 98 0a 00 00 00 00 00 ............ +3819 10.189038754 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498322 12 30 702907 0 0x0000001e 0 30 702907 0 1e 00 00 00 bb b9 0a 00 00 00 00 00 ............ +3821 10.189239025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498334 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -5570560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3823 10.189619541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833936 12 -1 702907 0 0xffffffff 0 -1 702907 0 ff ff ff ff bb b9 0a 00 00 00 00 00 ............ +3825 10.190097809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833948 12 26 694493 0 0x0000001a 0 26 694493 0 1a 00 00 00 dd 98 0a 00 00 00 00 00 ............ +3827 10.190302849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833960 26 22 2031531 0 0x00000016 1 2031531 0 196609 0 16 00 00 00 ab ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3829 10.190555096 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498364 12 -1 694493 0 0xffffffff 0 -1 694493 0 ff ff ff ff dd 98 0a 00 00 00 00 00 ............ +3837 10.253977537 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498376 12 26 702908 0 0x0000001a 0 26 702908 0 1a 00 00 00 bc b9 0a 00 00 00 00 00 ............ +3839 10.254243135 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498388 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -5439488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3841 10.254670620 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833986 12 -1 702908 0 0xffffffff 0 -1 702908 0 ff ff ff ff bc b9 0a 00 00 00 00 00 ............ +3843 10.255832434 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375833998 12 22 694494 0 0x00000016 0 22 694494 0 16 00 00 00 de 98 0a 00 00 00 00 00 ............ +3845 10.256114483 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834010 22 18 2031533 0 0x00000012 1 2031533 0 196609 0 12 00 00 00 ad ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3847 10.256400824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498414 12 -1 694494 0 0xffffffff 0 -1 694494 0 ff ff ff ff de 98 0a 00 00 00 00 00 ............ +3865 10.357898951 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498426 12 26 702909 0 0x0000001a 0 26 702909 0 1a 00 00 00 bd b9 0a 00 00 00 00 00 ............ +3867 10.358128786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498438 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -5308416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3869 10.358401537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834032 12 -1 702909 0 0xffffffff 0 -1 702909 0 ff ff ff ff bd b9 0a 00 00 00 00 00 ............ +3871 10.358917952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834044 12 22 694495 0 0x00000016 0 22 694495 0 16 00 00 00 df 98 0a 00 00 00 00 00 ............ +3873 10.359188557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834056 22 18 2031535 0 0x00000012 1 2031535 0 196609 0 12 00 00 00 af ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3875 10.359495640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498464 12 -1 694495 0 0xffffffff 0 -1 694495 0 ff ff ff ff df 98 0a 00 00 00 00 00 ............ +3889 10.460957766 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498476 12 26 702910 0 0x0000001a 0 26 702910 0 1a 00 00 00 be b9 0a 00 00 00 00 00 ............ +3891 10.461132765 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498488 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -5177344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3893 10.461568594 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834078 12 -1 702910 0 0xffffffff 0 -1 702910 0 ff ff ff ff be b9 0a 00 00 00 00 00 ............ +3895 10.462412834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834090 12 22 694496 0 0x00000016 0 22 694496 0 16 00 00 00 e0 98 0a 00 00 00 00 00 ............ +3897 10.462582588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834102 22 18 2031537 0 0x00000012 1 2031537 0 196609 0 12 00 00 00 b1 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3899 10.462860584 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498514 12 -1 694496 0 0xffffffff 0 -1 694496 0 ff ff ff ff e0 98 0a 00 00 00 00 00 ............ +3901 10.489818811 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498526 12 34 702911 0 0x00000022 0 34 702911 0 22 00 00 00 bf b9 0a 00 00 00 00 00 """..........." +3903 10.490015030 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498538 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -12124160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 47 ff 01 00 00 00 00 00 fb ca 0d c3 9d 01 00 00 .....!...o3.......G............... +3905 10.490103483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498572 12 67 702912 0 0x00000043 0 67 702912 0 43 00 00 00 c0 b9 0a 00 00 00 00 00 C........... +3907 10.490187168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498584 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 47 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d0 a8 7e 36 89 ?.....3...|8...........G.......=B.....&......... +3909 10.490293264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834124 12 -1 702911 0 0xffffffff 0 -1 702911 0 ff ff ff ff bf b9 0a 00 00 00 00 00 ............ +3911 10.490513563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834136 12 -1 702912 0 0xffffffff 0 -1 702912 0 ff ff ff ff c0 b9 0a 00 00 00 00 00 ............ +3913 10.491237879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834148 12 52 694497 0 0x00000034 0 52 694497 0 34 00 00 00 e1 98 0a 00 00 00 00 00 4........... +3915 10.491405487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834160 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 47 ff 01 00 00 00 00 00 00 00 14 70 5c 3e 4a 01 00 00 "0...Dk.................L."".([.....G..........p\>" +3917 10.491687059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498651 12 -1 694497 0 0xffffffff 0 -1 694497 0 ff ff ff ff e1 98 0a 00 00 00 00 00 ............ +3919 10.492480516 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498663 12 30 702913 0 0x0000001e 0 30 702913 0 1e 00 00 00 c1 b9 0a 00 00 00 00 00 ............ +3921 10.492624521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498675 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -5046272 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3923 10.492905855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834212 12 -1 702913 0 0xffffffff 0 -1 702913 0 ff ff ff ff c1 b9 0a 00 00 00 00 00 ............ +3925 10.493307114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834224 12 26 694498 0 0x0000001a 0 26 694498 0 1a 00 00 00 e2 98 0a 00 00 00 00 00 ............ +3927 10.493487120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834236 26 22 2031539 0 0x00000016 1 2031539 0 196609 0 16 00 00 00 b3 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3929 10.493825436 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498705 12 -1 694498 0 0xffffffff 0 -1 694498 0 ff ff ff ff e2 98 0a 00 00 00 00 00 ............ +3933 10.564578056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498717 12 26 702914 0 0x0000001a 0 26 702914 0 1a 00 00 00 c2 b9 0a 00 00 00 00 00 ............ +3935 10.564777851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498729 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -4915200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3937 10.565196037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834262 12 -1 702914 0 0xffffffff 0 -1 702914 0 ff ff ff ff c2 b9 0a 00 00 00 00 00 ............ +3939 10.565653563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834274 12 22 694499 0 0x00000016 0 22 694499 0 16 00 00 00 e3 98 0a 00 00 00 00 00 ............ +3941 10.565826654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834286 22 18 2031541 0 0x00000012 1 2031541 0 196609 0 12 00 00 00 b5 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3943 10.566062689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498755 12 -1 694499 0 0xffffffff 0 -1 694499 0 ff ff ff ff e3 98 0a 00 00 00 00 00 ............ +3948 10.619427443 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834308 12 -2 79824 79841 0xfffffffe 0 -2 79824 79841 fe ff ff ff d0 37 01 00 e1 37 01 00 .....7...7.. +3954 10.660299063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498767 12 -2 79842 79824 0xfffffffe 0 -2 79842 79824 fe ff ff ff e2 37 01 00 d0 37 01 00 .....7...7.. +3957 10.668265104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498779 12 26 702915 0 0x0000001a 0 26 702915 0 1a 00 00 00 c3 b9 0a 00 00 00 00 00 ............ +3959 10.668434620 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498791 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -4784128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3961 10.668773413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834320 12 -1 702915 0 0xffffffff 0 -1 702915 0 ff ff ff ff c3 b9 0a 00 00 00 00 00 ............ +3963 10.669429779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834332 12 22 694500 0 0x00000016 0 22 694500 0 16 00 00 00 e4 98 0a 00 00 00 00 00 ............ +3965 10.669595003 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834344 22 18 2031543 0 0x00000012 1 2031543 0 196609 0 12 00 00 00 b7 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3967 10.669915676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498817 12 -1 694500 0 0xffffffff 0 -1 694500 0 ff ff ff ff e4 98 0a 00 00 00 00 00 ............ +3975 10.771323919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498829 12 26 702916 0 0x0000001a 0 26 702916 0 1a 00 00 00 c4 b9 0a 00 00 00 00 00 ............ +3977 10.771525860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498841 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -4653056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +3979 10.772265196 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834366 12 -1 702916 0 0xffffffff 0 -1 702916 0 ff ff ff ff c4 b9 0a 00 00 00 00 00 ............ +3981 10.772504568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834378 12 22 694501 0 0x00000016 0 22 694501 0 16 00 00 00 e5 98 0a 00 00 00 00 00 ............ +3983 10.772691250 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834390 22 18 2031545 0 0x00000012 1 2031545 0 196609 0 12 00 00 00 b9 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3985 10.772965431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498867 12 -1 694501 0 0xffffffff 0 -1 694501 0 ff ff ff ff e5 98 0a 00 00 00 00 00 ............ +3987 10.794924736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498879 12 101 702917 0 0x00000065 0 101 702917 0 65 00 00 00 c5 b9 0a 00 00 00 00 00 e........... +3989 10.795094252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498891 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 48 ff 01 00 00 00 00 00 2c cc 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 48 ff 01 00 00 00 00 .....!...o3.......H.......,.......?.....3...|8.. +3991 10.795357704 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834412 12 -1 702917 0 0xffffffff 0 -1 702917 0 ff ff ff ff c5 b9 0a 00 00 00 00 00 ............ +3993 10.796616554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834424 12 52 694502 0 0x00000034 0 52 694502 0 34 00 00 00 e6 98 0a 00 00 00 00 00 4........... +3995 10.796767473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834436 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 48 ff 01 00 00 00 00 00 00 00 90 0a 8b 3e 4a 01 00 00 "0...Dk.................L."".([.....H............>" +3997 10.797045946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331498992 12 -1 694502 0 0xffffffff 0 -1 694502 0 ff ff ff ff e6 98 0a 00 00 00 00 00 ............ +3999 10.797806740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499004 12 30 702918 0 0x0000001e 0 30 702918 0 1e 00 00 00 c6 b9 0a 00 00 00 00 00 ............ +4001 10.798101664 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499016 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -4521984 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4003 10.798437119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834488 12 -1 702918 0 0xffffffff 0 -1 702918 0 ff ff ff ff c6 b9 0a 00 00 00 00 00 ............ +4005 10.798789740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834500 12 26 694503 0 0x0000001a 0 26 694503 0 1a 00 00 00 e7 98 0a 00 00 00 00 00 ............ +4007 10.798965216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834512 26 22 2031547 0 0x00000016 1 2031547 0 196609 0 16 00 00 00 bb ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4009 10.799181461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499046 12 -1 694503 0 0xffffffff 0 -1 694503 0 ff ff ff ff e7 98 0a 00 00 00 00 00 ............ +4015 10.874985218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499058 12 26 702919 0 0x0000001a 0 26 702919 0 1a 00 00 00 c7 b9 0a 00 00 00 00 00 ............ +4017 10.875286341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499070 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -4390912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4019 10.875755548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834538 12 -1 702919 0 0xffffffff 0 -1 702919 0 ff ff ff ff c7 b9 0a 00 00 00 00 00 ............ +4021 10.876374960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834550 12 22 694504 0 0x00000016 0 22 694504 0 16 00 00 00 e8 98 0a 00 00 00 00 00 ............ +4023 10.876815081 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834562 22 18 2031549 0 0x00000012 1 2031549 0 196609 0 12 00 00 00 bd ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4025 10.877128839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499096 12 -1 694504 0 0xffffffff 0 -1 694504 0 ff ff ff ff e8 98 0a 00 00 00 00 00 ............ +4027 10.978887081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499108 12 26 702920 0 0x0000001a 0 26 702920 0 1a 00 00 00 c8 b9 0a 00 00 00 00 00 ............ +4029 10.979081869 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499120 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -4259840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4031 10.979508638 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834584 12 -1 702920 0 0xffffffff 0 -1 702920 0 ff ff ff ff c8 b9 0a 00 00 00 00 00 ............ +4033 10.980756998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834596 12 22 694505 0 0x00000016 0 22 694505 0 16 00 00 00 e9 98 0a 00 00 00 00 00 ............ +4035 10.980925322 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834608 22 18 2031551 0 0x00000012 1 2031551 0 196609 0 12 00 00 00 bf ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4037 10.981325626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499146 12 -1 694505 0 0xffffffff 0 -1 694505 0 ff ff ff ff e9 98 0a 00 00 00 00 00 ............ +4041 11.082584858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499158 12 26 702921 0 0x0000001a 0 26 702921 0 1a 00 00 00 c9 b9 0a 00 00 00 00 00 ............ +4043 11.082831860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499170 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -4128768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4045 11.083188057 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834630 12 -1 702921 0 0xffffffff 0 -1 702921 0 ff ff ff ff c9 b9 0a 00 00 00 00 00 ............ +4047 11.083900452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834642 12 22 694506 0 0x00000016 0 22 694506 0 16 00 00 00 ea 98 0a 00 00 00 00 00 ............ +4049 11.084105968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834654 22 18 2031553 0 0x00000012 1 2031553 0 196609 0 12 00 00 00 c1 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4051 11.084486961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499196 12 -1 694506 0 0xffffffff 0 -1 694506 0 ff ff ff ff ea 98 0a 00 00 00 00 00 ............ +4053 11.098815203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499208 12 101 702922 0 0x00000065 0 101 702922 0 65 00 00 00 ca b9 0a 00 00 00 00 00 e........... +4055 11.099013567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499220 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 49 ff 01 00 00 00 00 00 5c cd 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 49 ff 01 00 00 00 00 .....!...o3.......I.......\.......?.....3...|8.. +4057 11.099363565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834676 12 -1 702922 0 0xffffffff 0 -1 702922 0 ff ff ff ff ca b9 0a 00 00 00 00 00 ............ +4059 11.101831198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834688 12 52 694507 0 0x00000034 0 52 694507 0 34 00 00 00 eb 98 0a 00 00 00 00 00 4........... +4061 11.102006197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834700 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 49 ff 01 00 00 00 00 00 00 00 99 9b b9 3e 4a 01 00 00 "0...Dk.................L."".([.....I............>" +4063 11.102217913 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499321 12 -1 694507 0 0xffffffff 0 -1 694507 0 ff ff ff ff eb 98 0a 00 00 00 00 00 ............ +4065 11.103028059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499333 12 30 702923 0 0x0000001e 0 30 702923 0 1e 00 00 00 cb b9 0a 00 00 00 00 00 ............ +4067 11.103204727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499345 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -3997696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4069 11.103518486 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834752 12 -1 702923 0 0xffffffff 0 -1 702923 0 ff ff ff ff cb b9 0a 00 00 00 00 00 ............ +4071 11.104038000 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834764 12 26 694508 0 0x0000001a 0 26 694508 0 1a 00 00 00 ec 98 0a 00 00 00 00 00 ............ +4073 11.104182243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834776 26 22 2031555 0 0x00000016 1 2031555 0 196609 0 16 00 00 00 c3 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4075 11.104418516 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499375 12 -1 694508 0 0xffffffff 0 -1 694508 0 ff ff ff ff ec 98 0a 00 00 00 00 00 ............ +4077 11.120184660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834802 12 -2 79825 79842 0xfffffffe 0 -2 79825 79842 fe ff ff ff d1 37 01 00 e2 37 01 00 .....7...7.. +4085 11.161404133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499387 12 -2 79843 79825 0xfffffffe 0 -2 79843 79825 fe ff ff ff e3 37 01 00 d1 37 01 00 .....7...7.. +4089 11.186838627 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499399 12 26 702924 0 0x0000001a 0 26 702924 0 1a 00 00 00 cc b9 0a 00 00 00 00 00 ............ +4091 11.187008619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499411 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -3866624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4093 11.187350035 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834814 12 -1 702924 0 0xffffffff 0 -1 702924 0 ff ff ff ff cc b9 0a 00 00 00 00 00 ............ +4095 11.187862396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834826 12 22 694509 0 0x00000016 0 22 694509 0 16 00 00 00 ed 98 0a 00 00 00 00 00 ............ +4097 11.188064337 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834838 22 18 2031557 0 0x00000012 1 2031557 0 196609 0 12 00 00 00 c5 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4099 11.188364506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499437 12 -1 694509 0 0xffffffff 0 -1 694509 0 ff ff ff ff ed 98 0a 00 00 00 00 00 ............ +4107 11.290086746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499449 12 26 702925 0 0x0000001a 0 26 702925 0 1a 00 00 00 cd b9 0a 00 00 00 00 00 ............ +4109 11.290319443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499461 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -3735552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4111 11.290657997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834860 12 -1 702925 0 0xffffffff 0 -1 702925 0 ff ff ff ff cd b9 0a 00 00 00 00 00 ............ +4113 11.291272163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834872 12 22 694510 0 0x00000016 0 22 694510 0 16 00 00 00 ee 98 0a 00 00 00 00 00 ............ +4115 11.291430235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834884 22 18 2031559 0 0x00000012 1 2031559 0 196609 0 12 00 00 00 c7 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4117 11.291648626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499487 12 -1 694510 0 0xffffffff 0 -1 694510 0 ff ff ff ff ee 98 0a 00 00 00 00 00 ............ +4123 11.392735243 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499499 12 26 702926 0 0x0000001a 0 26 702926 0 1a 00 00 00 ce b9 0a 00 00 00 00 00 ............ +4125 11.392985344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499511 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -3604480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4127 11.393425226 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834906 12 -1 702926 0 0xffffffff 0 -1 702926 0 ff ff ff ff ce b9 0a 00 00 00 00 00 ............ +4129 11.393932581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834918 12 22 694511 0 0x00000016 0 22 694511 0 16 00 00 00 ef 98 0a 00 00 00 00 00 ............ +4131 11.394189119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834930 22 18 2031561 0 0x00000012 1 2031561 0 196609 0 12 00 00 00 c9 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4133 11.394407511 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499537 12 -1 694511 0 0xffffffff 0 -1 694511 0 ff ff ff ff ef 98 0a 00 00 00 00 00 ............ +4135 11.405036926 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499549 12 34 702927 0 0x00000022 0 34 702927 0 22 00 00 00 cf b9 0a 00 00 00 00 00 """..........." +4137 11.405250311 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499561 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -11927552 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4a ff 01 00 00 00 00 00 8e ce 0d c3 9d 01 00 00 .....!...o3.......J............... +4139 11.405394554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499595 12 67 702928 0 0x00000043 0 67 702928 0 43 00 00 00 d0 b9 0a 00 00 00 00 00 C........... +4141 11.405481339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499607 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4a ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 80 08 0b 6d 89 ?.....3...|8...........J.......=B.....&......... +4142 11.405560970 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834952 12 -1 702927 0 0xffffffff 0 -1 702927 0 ff ff ff ff cf b9 0a 00 00 00 00 00 ............ +4143 11.405656099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834964 12 -1 702928 0 0xffffffff 0 -1 702928 0 ff ff ff ff d0 b9 0a 00 00 00 00 00 ............ +4146 11.406723261 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834976 12 52 694512 0 0x00000034 0 52 694512 0 34 00 00 00 f0 98 0a 00 00 00 00 00 4........... +4148 11.406913280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375834988 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4a ff 01 00 00 00 00 00 00 00 cc 21 e8 3e 4a 01 00 00 "0...Dk.................L."".([.....J..........!.>" +4150 11.407163620 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499674 12 -1 694512 0 0xffffffff 0 -1 694512 0 ff ff ff ff f0 98 0a 00 00 00 00 00 ............ +4151 11.407982588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499686 12 30 702929 0 0x0000001e 0 30 702929 0 1e 00 00 00 d1 b9 0a 00 00 00 00 00 ............ +4152 11.408117771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499698 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -3473408 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4153 11.408391237 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835040 12 -1 702929 0 0xffffffff 0 -1 702929 0 ff ff ff ff d1 b9 0a 00 00 00 00 00 ............ +4155 11.408750772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835052 12 26 694513 0 0x0000001a 0 26 694513 0 1a 00 00 00 f1 98 0a 00 00 00 00 00 ............ +4157 11.408908367 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835064 26 22 2031563 0 0x00000016 1 2031563 0 196609 0 16 00 00 00 cb ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4159 11.409133196 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499728 12 -1 694513 0 0xffffffff 0 -1 694513 0 ff ff ff ff f1 98 0a 00 00 00 00 00 ............ +4161 11.496446133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499740 12 26 702930 0 0x0000001a 0 26 702930 0 1a 00 00 00 d2 b9 0a 00 00 00 00 00 ............ +4163 11.496632814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499752 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -3342336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4165 11.497004747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835090 12 -1 702930 0 0xffffffff 0 -1 702930 0 ff ff ff ff d2 b9 0a 00 00 00 00 00 ............ +4167 11.497529745 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835102 12 22 694514 0 0x00000016 0 22 694514 0 16 00 00 00 f2 98 0a 00 00 00 00 00 ............ +4169 11.497702360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835114 22 18 2031565 0 0x00000012 1 2031565 0 196609 0 12 00 00 00 cd ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4171 11.498027325 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499778 12 -1 694514 0 0xffffffff 0 -1 694514 0 ff ff ff ff f2 98 0a 00 00 00 00 00 ............ +4175 11.600964785 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499790 12 26 702931 0 0x0000001a 0 26 702931 0 1a 00 00 00 d3 b9 0a 00 00 00 00 00 ............ +4177 11.601189852 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499802 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -3211264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4179 11.601659775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835136 12 -1 702931 0 0xffffffff 0 -1 702931 0 ff ff ff ff d3 b9 0a 00 00 00 00 00 ............ +4181 11.602230787 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835148 12 22 694515 0 0x00000016 0 22 694515 0 16 00 00 00 f3 98 0a 00 00 00 00 00 ............ +4183 11.602549553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835160 22 18 2031567 0 0x00000012 1 2031567 0 196609 0 12 00 00 00 cf ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4185 11.602826595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499828 12 -1 694515 0 0xffffffff 0 -1 694515 0 ff ff ff ff f3 98 0a 00 00 00 00 00 ............ +4190 11.621181965 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835182 12 -2 79826 79843 0xfffffffe 0 -2 79826 79843 fe ff ff ff d2 37 01 00 e3 37 01 00 .....7...7.. +4197 11.662644625 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499840 12 -2 79844 79826 0xfffffffe 0 -2 79844 79826 fe ff ff ff e4 37 01 00 d2 37 01 00 .....7...7.. +4203 11.704325199 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499852 12 26 702932 0 0x0000001a 0 26 702932 0 1a 00 00 00 d4 b9 0a 00 00 00 00 00 ............ +4205 11.704487085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499864 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -3080192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4209 11.704867363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835194 12 -1 702932 0 0xffffffff 0 -1 702932 0 ff ff ff ff d4 b9 0a 00 00 00 00 00 ............ +4211 11.705285549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835206 12 22 694516 0 0x00000016 0 22 694516 0 16 00 00 00 f4 98 0a 00 00 00 00 00 ............ +4213 11.705436468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835218 22 18 2031569 0 0x00000012 1 2031569 0 196609 0 12 00 00 00 d1 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4215 11.705831766 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499890 12 -1 694516 0 0xffffffff 0 -1 694516 0 ff ff ff ff f4 98 0a 00 00 00 00 00 ............ +4219 11.708687544 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499902 12 34 702933 0 0x00000022 0 34 702933 0 22 00 00 00 d5 b9 0a 00 00 00 00 00 """..........." +4221 11.708909750 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499914 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -11862016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4b ff 01 00 00 00 00 00 be cf 0d c3 9d 01 00 00 .....!...o3.......K............... +4223 11.709044695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499948 12 67 702934 0 0x00000043 0 67 702934 0 43 00 00 00 d6 b9 0a 00 00 00 00 00 C........... +4225 11.709129333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331499960 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4b ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 89 25 7f 89 ?.....3...|8...........K.......=B.....&......... +4227 11.709213734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835240 12 -1 702933 0 0xffffffff 0 -1 702933 0 ff ff ff ff d5 b9 0a 00 00 00 00 00 ............ +4229 11.709408760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835252 12 -1 702934 0 0xffffffff 0 -1 702934 0 ff ff ff ff d6 b9 0a 00 00 00 00 00 ............ +4231 11.710037947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835264 12 52 694517 0 0x00000034 0 52 694517 0 34 00 00 00 f5 98 0a 00 00 00 00 00 4........... +4233 11.710180998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835276 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4b ff 01 00 00 00 00 00 00 00 c7 6c 16 3f 4a 01 00 00 "0...Dk.................L."".([.....K..........l.?" +4235 11.710595131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500027 12 -1 694517 0 0xffffffff 0 -1 694517 0 ff ff ff ff f5 98 0a 00 00 00 00 00 ............ +4237 11.711301088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500039 12 30 702935 0 0x0000001e 0 30 702935 0 1e 00 00 00 d7 b9 0a 00 00 00 00 00 ............ +4239 11.711482286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500051 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -2949120 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4241 11.711704969 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835328 12 -1 702935 0 0xffffffff 0 -1 702935 0 ff ff ff ff d7 b9 0a 00 00 00 00 00 ............ +4243 11.712123871 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835340 12 26 694518 0 0x0000001a 0 26 694518 0 1a 00 00 00 f6 98 0a 00 00 00 00 00 ............ +4245 11.712290049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835352 26 22 2031571 0 0x00000016 1 2031571 0 196609 0 16 00 00 00 d3 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4247 11.712472200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500081 12 -1 694518 0 0xffffffff 0 -1 694518 0 ff ff ff ff f6 98 0a 00 00 00 00 00 ............ +4249 11.808823347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500093 12 26 702936 0 0x0000001a 0 26 702936 0 1a 00 00 00 d8 b9 0a 00 00 00 00 00 ............ +4251 11.809017897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500105 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -2818048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4253 11.809399843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835378 12 -1 702936 0 0xffffffff 0 -1 702936 0 ff ff ff ff d8 b9 0a 00 00 00 00 00 ............ +4255 11.809899092 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835390 12 22 694519 0 0x00000016 0 22 694519 0 16 00 00 00 f7 98 0a 00 00 00 00 00 ............ +4257 11.810122252 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835402 22 18 2031573 0 0x00000012 1 2031573 0 196609 0 12 00 00 00 d5 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4259 11.810414791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500131 12 -1 694519 0 0xffffffff 0 -1 694519 0 ff ff ff ff f7 98 0a 00 00 00 00 00 ............ +4265 11.911379337 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500143 12 26 702937 0 0x0000001a 0 26 702937 0 1a 00 00 00 d9 b9 0a 00 00 00 00 00 ............ +4267 11.911555767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500155 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -2686976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4269 11.911861181 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835424 12 -1 702937 0 0xffffffff 0 -1 702937 0 ff ff ff ff d9 b9 0a 00 00 00 00 00 ............ +4271 11.912444353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835436 12 22 694520 0 0x00000016 0 22 694520 0 16 00 00 00 f8 98 0a 00 00 00 00 00 ............ +4273 11.912628889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835448 22 18 2031575 0 0x00000012 1 2031575 0 196609 0 12 00 00 00 d7 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4275 11.912954330 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500181 12 -1 694520 0 0xffffffff 0 -1 694520 0 ff ff ff ff f8 98 0a 00 00 00 00 00 ............ +4279 12.012780905 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500193 12 101 702938 0 0x00000065 0 101 702938 0 65 00 00 00 da b9 0a 00 00 00 00 00 e........... +4281 12.013009787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500205 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4c ff 01 00 00 00 00 00 ed d0 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4c ff 01 00 00 00 00 .....!...o3.......L...............?.....3...|8.. +4283 12.013401031 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835470 12 -1 702938 0 0xffffffff 0 -1 702938 0 ff ff ff ff da b9 0a 00 00 00 00 00 ............ +4285 12.014273167 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500306 12 26 702939 0 0x0000001a 0 26 702939 0 1a 00 00 00 db b9 0a 00 00 00 00 00 ............ +4286 12.014371872 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835482 64 52 694521 0 0x00000034 0 52 694521 0 48 34 00 00 00 f9 98 0a 00 00 00 00 00 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4c ff 01 00 00 00 00 00 00 00 da d7 44 3f 4a 01 00 00 "4...........0...Dk.................L."".([.....L." +4288 12.014528036 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500318 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -2555904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4290 12.014745712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500344 12 -1 694521 0 0xffffffff 0 -1 694521 0 ff ff ff ff f9 98 0a 00 00 00 00 00 ............ +4292 12.014894724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835546 12 -1 702939 0 0xffffffff 0 -1 702939 0 ff ff ff ff db b9 0a 00 00 00 00 00 ............ +4294 12.015334606 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835558 12 22 694522 0 0x00000016 0 22 694522 0 16 00 00 00 fa 98 0a 00 00 00 00 00 ............ +4296 12.015501738 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835570 22 18 2031577 0 0x00000012 1 2031577 0 196609 0 12 00 00 00 d9 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4297 12.015592098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500356 42 30 702940 0 0x0000001e 0 30 702940 0 26 1e 00 00 00 dc b9 0a 00 00 00 00 00 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db ff 1e 00 00 00 00 00 00 00 00 00 ................U..b..:P.................. +4299 12.015817165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500398 12 -1 694522 0 0xffffffff 0 -1 694522 0 ff ff ff ff fa 98 0a 00 00 00 00 00 ............ +4301 12.016016960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835592 12 -1 702940 0 0xffffffff 0 -1 702940 0 ff ff ff ff dc b9 0a 00 00 00 00 00 ............ +4303 12.017118216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835604 12 26 694523 0 0x0000001a 0 26 694523 0 1a 00 00 00 fb 98 0a 00 00 00 00 00 ............ +4305 12.017263174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835616 26 22 2031579 0 0x00000016 1 2031579 0 196609 0 16 00 00 00 db ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4307 12.017512560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500410 12 -1 694523 0 0xffffffff 0 -1 694523 0 ff ff ff ff fb 98 0a 00 00 00 00 00 ............ +4309 12.117580891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500422 12 26 702941 0 0x0000001a 0 26 702941 0 1a 00 00 00 dd b9 0a 00 00 00 00 00 ............ +4311 12.117834330 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500434 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -2293760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4313 12.118271589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835642 12 -1 702941 0 0xffffffff 0 -1 702941 0 ff ff ff ff dd b9 0a 00 00 00 00 00 ............ +4315 12.118755102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835654 12 22 694524 0 0x00000016 0 22 694524 0 16 00 00 00 fc 98 0a 00 00 00 00 00 ............ +4317 12.118968964 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835666 22 18 2031581 0 0x00000012 1 2031581 0 196609 0 12 00 00 00 dd ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4319 12.119409323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500460 12 -1 694524 0 0xffffffff 0 -1 694524 0 ff ff ff ff fc 98 0a 00 00 00 00 00 ............ +4323 12.122384548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835688 12 -2 79827 79844 0xfffffffe 0 -2 79827 79844 fe ff ff ff d3 37 01 00 e4 37 01 00 .....7...7.. +4329 12.164042950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500472 12 -2 79845 79827 0xfffffffe 0 -2 79845 79827 fe ff ff ff e5 37 01 00 d3 37 01 00 .....7...7.. +4339 12.220308781 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500484 12 26 702942 0 0x0000001a 0 26 702942 0 1a 00 00 00 de b9 0a 00 00 00 00 00 ............ +4341 12.220481396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500496 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -2162688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4343 12.220951796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835700 12 -1 702942 0 0xffffffff 0 -1 702942 0 ff ff ff ff de b9 0a 00 00 00 00 00 ............ +4345 12.221442938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835712 12 22 694525 0 0x00000016 0 22 694525 0 16 00 00 00 fd 98 0a 00 00 00 00 00 ............ +4347 12.221599340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835724 22 18 2031583 0 0x00000012 1 2031583 0 196609 0 12 00 00 00 df ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4349 12.221886873 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500522 12 -1 694525 0 0xffffffff 0 -1 694525 0 ff ff ff ff fd 98 0a 00 00 00 00 00 ............ +4351 12.317340851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500534 12 34 702943 0 0x00000022 0 34 702943 0 22 00 00 00 df b9 0a 00 00 00 00 00 """..........." +4353 12.317531109 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500546 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -11730944 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4d ff 01 00 00 00 00 00 1e d2 0d c3 9d 01 00 00 .....!...o3.......M............... +4355 12.317619085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500580 12 67 702944 0 0x00000043 0 67 702944 0 43 00 00 00 e0 b9 0a 00 00 00 00 00 C........... +4357 12.317701340 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500592 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4d ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 58 71 a3 89 ?.....3...|8...........M.......=B.....&......... +4359 12.317928553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835746 12 -1 702943 0 0xffffffff 0 -1 702943 0 ff ff ff ff df b9 0a 00 00 00 00 00 ............ +4361 12.318161011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835758 12 -1 702944 0 0xffffffff 0 -1 702944 0 ff ff ff ff e0 b9 0a 00 00 00 00 00 ............ +4363 12.319071531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835770 12 52 694526 0 0x00000034 0 52 694526 0 34 00 00 00 fe 98 0a 00 00 00 00 00 4........... +4365 12.319252253 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835782 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4d ff 01 00 00 00 00 00 00 00 dd 50 73 3f 4a 01 00 00 "0...Dk.................L."".([.....M..........Ps?" +4367 12.319558859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500659 12 -1 694526 0 0xffffffff 0 -1 694526 0 ff ff ff ff fe 98 0a 00 00 00 00 00 ............ +4369 12.320324659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500671 12 30 702945 0 0x0000001e 0 30 702945 0 1e 00 00 00 e1 b9 0a 00 00 00 00 00 ............ +4371 12.320467234 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500683 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -2031616 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e1 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4373 12.320748568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835834 12 -1 702945 0 0xffffffff 0 -1 702945 0 ff ff ff ff e1 b9 0a 00 00 00 00 00 ............ +4375 12.321390867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835846 12 26 694527 0 0x0000001a 0 26 694527 0 1a 00 00 00 ff 98 0a 00 00 00 00 00 ............ +4377 12.321611404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835858 26 22 2031585 0 0x00000016 1 2031585 0 196609 0 16 00 00 00 e1 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4379 12.321933270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500713 12 -1 694527 0 0xffffffff 0 -1 694527 0 ff ff ff ff ff 98 0a 00 00 00 00 00 ............ +4381 12.323297262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500725 12 26 702946 0 0x0000001a 0 26 702946 0 1a 00 00 00 e2 b9 0a 00 00 00 00 00 ............ +4383 12.323439598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500737 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1900544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4385 12.323652029 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835884 12 -1 702946 0 0xffffffff 0 -1 702946 0 ff ff ff ff e2 b9 0a 00 00 00 00 00 ............ +4388 12.324285984 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835896 12 22 694528 0 0x00000016 0 22 694528 0 16 00 00 00 00 99 0a 00 00 00 00 00 ............ +4391 12.324502468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835908 22 18 2031587 0 0x00000012 1 2031587 0 196609 0 12 00 00 00 e3 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4393 12.324829578 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500763 12 -1 694528 0 0xffffffff 0 -1 694528 0 ff ff ff ff 00 99 0a 00 00 00 00 00 ............ +4397 12.427282095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500775 12 26 702947 0 0x0000001a 0 26 702947 0 1a 00 00 00 e3 b9 0a 00 00 00 00 00 ............ +4399 12.427472830 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500787 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1769472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4401 12.427946568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835930 12 -1 702947 0 0xffffffff 0 -1 702947 0 ff ff ff ff e3 b9 0a 00 00 00 00 00 ............ +4403 12.428497553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835942 12 22 694529 0 0x00000016 0 22 694529 0 16 00 00 00 01 99 0a 00 00 00 00 00 ............ +4405 12.428689241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835954 22 18 2031589 0 0x00000012 1 2031589 0 196609 0 12 00 00 00 e5 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4407 12.428970814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500813 12 -1 694529 0 0xffffffff 0 -1 694529 0 ff ff ff ff 01 99 0a 00 00 00 00 00 ............ +4411 12.530355930 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500825 12 26 702948 0 0x0000001a 0 26 702948 0 1a 00 00 00 e4 b9 0a 00 00 00 00 00 ............ +4413 12.530582190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500837 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1638400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4415 12.530938625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835976 12 -1 702948 0 0xffffffff 0 -1 702948 0 ff ff ff ff e4 b9 0a 00 00 00 00 00 ............ +4417 12.531431198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375835988 12 22 694530 0 0x00000016 0 22 694530 0 16 00 00 00 02 99 0a 00 00 00 00 00 ............ +4419 12.531665564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836000 22 18 2031591 0 0x00000012 1 2031591 0 196609 0 12 00 00 00 e7 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4421 12.531922340 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500863 12 -1 694530 0 0xffffffff 0 -1 694530 0 ff ff ff ff 02 99 0a 00 00 00 00 00 ............ +4423 12.621553421 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500875 12 101 702949 0 0x00000065 0 101 702949 0 65 00 00 00 e5 b9 0a 00 00 00 00 00 e........... +4425 12.621738434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500887 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4e ff 01 00 00 00 00 00 4e d3 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4e ff 01 00 00 00 00 .....!...o3.......N.......N.......?.....3...|8.. +4430 12.622183084 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836022 12 -2 79828 79845 0xfffffffe 0 -2 79828 79845 fe ff ff ff d4 37 01 00 e5 37 01 00 .....7...7.. +4433 12.622463465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836034 12 -1 702949 0 0xffffffff 0 -1 702949 0 ff ff ff ff e5 b9 0a 00 00 00 00 00 ............ +4435 12.622829199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836046 12 52 694531 0 0x00000034 0 52 694531 0 34 00 00 00 03 99 0a 00 00 00 00 00 4........... +4437 12.622987270 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836058 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4e ff 01 00 00 00 00 00 00 00 ba b2 a1 3f 4a 01 00 00 "0...Dk.................L."".([.....N............?" +4439 12.623285055 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331500988 12 -1 694531 0 0xffffffff 0 -1 694531 0 ff ff ff ff 03 99 0a 00 00 00 00 00 ............ +4441 12.624053955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501000 12 30 702950 0 0x0000001e 0 30 702950 0 1e 00 00 00 e6 b9 0a 00 00 00 00 00 ............ +4443 12.624242544 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501012 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1507328 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e9 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4445 12.624609470 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836110 12 -1 702950 0 0xffffffff 0 -1 702950 0 ff ff ff ff e6 b9 0a 00 00 00 00 00 ............ +4447 12.624962807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836122 12 26 694532 0 0x0000001a 0 26 694532 0 1a 00 00 00 04 99 0a 00 00 00 00 00 ............ +4449 12.625101328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836134 26 22 2031593 0 0x00000016 1 2031593 0 196609 0 16 00 00 00 e9 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4451 12.625355244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501042 12 -1 694532 0 0xffffffff 0 -1 694532 0 ff ff ff ff 04 99 0a 00 00 00 00 00 ............ +4455 12.633042812 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501054 12 26 702951 0 0x0000001a 0 26 702951 0 1a 00 00 00 e7 b9 0a 00 00 00 00 00 ............ +4457 12.633204937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501066 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1376256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4459 12.633545637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836160 12 -1 702951 0 0xffffffff 0 -1 702951 0 ff ff ff ff e7 b9 0a 00 00 00 00 00 ............ +4461 12.634036541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836172 12 22 694533 0 0x00000016 0 22 694533 0 16 00 00 00 05 99 0a 00 00 00 00 00 ............ +4463 12.634197950 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836184 22 18 2031595 0 0x00000012 1 2031595 0 196609 0 12 00 00 00 eb ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4465 12.634453535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501092 12 -1 694533 0 0xffffffff 0 -1 694533 0 ff ff ff ff 05 99 0a 00 00 00 00 00 ............ +4468 12.665825605 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501104 12 -2 79846 79828 0xfffffffe 0 -2 79846 79828 fe ff ff ff e6 37 01 00 d4 37 01 00 .....7...7.. +4478 12.736182451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501116 12 26 702952 0 0x0000001a 0 26 702952 0 1a 00 00 00 e8 b9 0a 00 00 00 00 00 ............ +4480 12.736356735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501128 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1245184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4482 12.736783743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836206 12 -1 702952 0 0xffffffff 0 -1 702952 0 ff ff ff ff e8 b9 0a 00 00 00 00 00 ............ +4484 12.737362146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836218 12 22 694534 0 0x00000016 0 22 694534 0 16 00 00 00 06 99 0a 00 00 00 00 00 ............ +4486 12.737558126 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836230 22 18 2031597 0 0x00000012 1 2031597 0 196609 0 12 00 00 00 ed ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4488 12.737799644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501154 12 -1 694534 0 0xffffffff 0 -1 694534 0 ff ff ff ff 06 99 0a 00 00 00 00 00 ............ +4495 12.839242935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501166 12 26 702953 0 0x0000001a 0 26 702953 0 1a 00 00 00 e9 b9 0a 00 00 00 00 00 ............ +4497 12.839544535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501178 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1114112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4499 12.839956045 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836252 12 -1 702953 0 0xffffffff 0 -1 702953 0 ff ff ff ff e9 b9 0a 00 00 00 00 00 ............ +4501 12.840415955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836264 12 22 694535 0 0x00000016 0 22 694535 0 16 00 00 00 07 99 0a 00 00 00 00 00 ............ +4503 12.840636492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836276 22 18 2031599 0 0x00000012 1 2031599 0 196609 0 12 00 00 00 ef ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4505 12.840843916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501204 12 -1 694535 0 0xffffffff 0 -1 694535 0 ff ff ff ff 07 99 0a 00 00 00 00 00 ............ +4508 12.925354242 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501216 12 101 702954 0 0x00000065 0 101 702954 0 65 00 00 00 ea b9 0a 00 00 00 00 00 e........... +4510 12.925605297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501228 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4f ff 01 00 00 00 00 00 7e d4 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4f ff 01 00 00 00 00 .....!...o3.......O.......~.......?.....3...|8.. +4512 12.925877094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836298 12 -1 702954 0 0xffffffff 0 -1 702954 0 ff ff ff ff ea b9 0a 00 00 00 00 00 ............ +4514 12.927510500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836310 12 52 694536 0 0x00000034 0 52 694536 0 34 00 00 00 08 99 0a 00 00 00 00 00 4........... +4516 12.927670240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836322 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4f ff 01 00 00 00 00 00 00 00 f4 2f d0 3f 4a 01 00 00 "0...Dk.................L."".([.....O........../.?" +4518 12.927921295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501329 12 -1 694536 0 0xffffffff 0 -1 694536 0 ff ff ff ff 08 99 0a 00 00 00 00 00 ............ +4520 12.928644657 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501341 12 30 702955 0 0x0000001e 0 30 702955 0 1e 00 00 00 eb b9 0a 00 00 00 00 00 ............ +4522 12.928780794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501353 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -983040 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f1 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4524 12.929045916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836374 12 -1 702955 0 0xffffffff 0 -1 702955 0 ff ff ff ff eb b9 0a 00 00 00 00 00 ............ +4526 12.929410458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836386 12 26 694537 0 0x0000001a 0 26 694537 0 1a 00 00 00 09 99 0a 00 00 00 00 00 ............ +4528 12.929676294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836398 26 22 2031601 0 0x00000016 1 2031601 0 196609 0 16 00 00 00 f1 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4530 12.929917336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501383 12 -1 694537 0 0xffffffff 0 -1 694537 0 ff ff ff ff 09 99 0a 00 00 00 00 00 ............ +4532 12.941947460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501395 12 26 702956 0 0x0000001a 0 26 702956 0 1a 00 00 00 ec b9 0a 00 00 00 00 00 ............ +4534 12.942110300 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501407 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -851968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4536 12.942400932 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836424 12 -1 702956 0 0xffffffff 0 -1 702956 0 ff ff ff ff ec b9 0a 00 00 00 00 00 ............ +4539 12.942826033 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836436 12 22 694538 0 0x00000016 0 22 694538 0 16 00 00 00 0a 99 0a 00 00 00 00 00 ............ +4543 12.942972660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836448 22 18 2031603 0 0x00000012 1 2031603 0 196609 0 12 00 00 00 f3 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4545 12.943248987 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501433 12 -1 694538 0 0xffffffff 0 -1 694538 0 ff ff ff ff 0a 99 0a 00 00 00 00 00 ............ +4577 13.045183659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501445 12 26 702957 0 0x0000001a 0 26 702957 0 1a 00 00 00 ed b9 0a 00 00 00 00 00 ............ +4579 13.045366764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501457 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -720896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4581 13.045824528 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836470 12 -1 702957 0 0xffffffff 0 -1 702957 0 ff ff ff ff ed b9 0a 00 00 00 00 00 ............ +4583 13.046376705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836482 12 22 694539 0 0x00000016 0 22 694539 0 16 00 00 00 0b 99 0a 00 00 00 00 00 ............ +4585 13.046596766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836494 22 18 2031605 0 0x00000012 1 2031605 0 196609 0 12 00 00 00 f5 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4587 13.046868086 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501483 12 -1 694539 0 0xffffffff 0 -1 694539 0 ff ff ff ff 0b 99 0a 00 00 00 00 00 ............ +4595 13.122913122 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836516 12 -2 79829 79846 0xfffffffe 0 -2 79829 79846 fe ff ff ff d5 37 01 00 e6 37 01 00 .....7...7.. +4628 13.147938490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501495 12 26 702958 0 0x0000001a 0 26 702958 0 1a 00 00 00 ee b9 0a 00 00 00 00 00 ............ +4630 13.148182631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501507 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -589824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4632 13.148587465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836528 12 -1 702958 0 0xffffffff 0 -1 702958 0 ff ff ff ff ee b9 0a 00 00 00 00 00 ............ +4634 13.149111509 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836540 12 22 694540 0 0x00000016 0 22 694540 0 16 00 00 00 0c 99 0a 00 00 00 00 00 ............ +4636 13.149332047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836552 22 18 2031607 0 0x00000012 1 2031607 0 196609 0 12 00 00 00 f7 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4638 13.149646997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501533 12 -1 694540 0 0xffffffff 0 -1 694540 0 ff ff ff ff 0c 99 0a 00 00 00 00 00 ............ +4641 13.166645765 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501545 12 -2 79847 79829 0xfffffffe 0 -2 79847 79829 fe ff ff ff e7 37 01 00 d5 37 01 00 .....7...7.. +4651 13.230102777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501557 12 101 702959 0 0x00000065 0 101 702959 0 65 00 00 00 ef b9 0a 00 00 00 00 00 e........... +4653 13.230321646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501569 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 50 ff 01 00 00 00 00 00 af d5 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 50 ff 01 00 00 00 00 .....!...o3.......P...............?.....3...|8.. +4655 13.230622292 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836574 12 -1 702959 0 0xffffffff 0 -1 702959 0 ff ff ff ff ef b9 0a 00 00 00 00 00 ............ +4657 13.231848717 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836586 12 52 694541 0 0x00000034 0 52 694541 0 34 00 00 00 0d 99 0a 00 00 00 00 00 4........... +4659 13.232032537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836598 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 50 ff 01 00 00 00 00 00 00 00 d0 9f fe 3f 4a 01 00 00 "0...Dk.................L."".([.....P............?" +4661 13.232448816 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501670 12 -1 694541 0 0xffffffff 0 -1 694541 0 ff ff ff ff 0d 99 0a 00 00 00 00 00 ............ +4663 13.233193159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501682 12 30 702960 0 0x0000001e 0 30 702960 0 1e 00 00 00 f0 b9 0a 00 00 00 00 00 ............ +4665 13.233486176 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501694 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -458752 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f9 ff 1e 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4667 13.233855724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836650 12 -1 702960 0 0xffffffff 0 -1 702960 0 ff ff ff ff f0 b9 0a 00 00 00 00 00 ............ +4669 13.234557390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836662 12 26 694542 0 0x0000001a 0 26 694542 0 1a 00 00 00 0e 99 0a 00 00 00 00 00 ............ +4671 13.234744549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836674 26 22 2031609 0 0x00000016 1 2031609 0 196609 0 16 00 00 00 f9 ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4673 13.234990120 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501724 12 -1 694542 0 0xffffffff 0 -1 694542 0 ff ff ff ff 0e 99 0a 00 00 00 00 00 ............ +4675 13.251848459 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501736 12 26 702961 0 0x0000001a 0 26 702961 0 1a 00 00 00 f1 b9 0a 00 00 00 00 00 ............ +4677 13.252077579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501748 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -327680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4679 13.252566338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836700 12 -1 702961 0 0xffffffff 0 -1 702961 0 ff ff ff ff f1 b9 0a 00 00 00 00 00 ............ +4681 13.252812624 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836712 12 22 694543 0 0x00000016 0 22 694543 0 16 00 00 00 0f 99 0a 00 00 00 00 00 ............ +4683 13.252970934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836724 22 18 2031611 0 0x00000012 1 2031611 0 196609 0 12 00 00 00 fb ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4685 13.253228664 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501774 12 -1 694543 0 0xffffffff 0 -1 694543 0 ff ff ff ff 0f 99 0a 00 00 00 00 00 ............ +4692 13.356107712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501786 12 26 702962 0 0x0000001a 0 26 702962 0 1a 00 00 00 f2 b9 0a 00 00 00 00 00 ............ +4694 13.356352091 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501798 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -196608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4696 13.356775522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836746 12 -1 702962 0 0xffffffff 0 -1 702962 0 ff ff ff ff f2 b9 0a 00 00 00 00 00 ............ +4698 13.357417345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836758 12 22 694544 0 0x00000016 0 22 694544 0 16 00 00 00 10 99 0a 00 00 00 00 00 ............ +4700 13.357633352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836770 22 18 2031613 0 0x00000012 1 2031613 0 196609 0 12 00 00 00 fd ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4702 13.357962132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501824 12 -1 694544 0 0xffffffff 0 -1 694544 0 ff ff ff ff 10 99 0a 00 00 00 00 00 ............ +4713 13.461364985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501836 12 26 702963 0 0x0000001a 0 26 702963 0 1a 00 00 00 f3 b9 0a 00 00 00 00 00 ............ +4715 13.461559057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501848 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -65536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff ff 1e 00 00 00 00 00 ....T.c@.^1@.............. +4717 13.461993456 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836792 12 -1 702963 0 0xffffffff 0 -1 702963 0 ff ff ff ff f3 b9 0a 00 00 00 00 00 ............ +4719 13.462453604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836804 12 22 694545 0 0x00000016 0 22 694545 0 16 00 00 00 11 99 0a 00 00 00 00 00 ............ +4721 13.462625027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836816 22 18 2031615 0 0x00000012 1 2031615 0 196609 0 12 00 00 00 ff ff 1e 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4723 13.462884903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501874 12 -1 694545 0 0xffffffff 0 -1 694545 0 ff ff ff ff 11 99 0a 00 00 00 00 00 ............ +4728 13.534318447 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501886 12 101 702964 0 0x00000065 0 101 702964 0 65 00 00 00 f4 b9 0a 00 00 00 00 00 e........... +4730 13.534510851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501898 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 51 ff 01 00 00 00 00 00 df d6 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 51 ff 01 00 00 00 00 .....!...o3.......Q...............?.....3...|8.. +4732 13.534853697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836838 12 -1 702964 0 0xffffffff 0 -1 702964 0 ff ff ff ff f4 b9 0a 00 00 00 00 00 ............ +4734 13.536103487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836850 12 52 694546 0 0x00000034 0 52 694546 0 34 00 00 00 12 99 0a 00 00 00 00 00 4........... +4736 13.536269665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836862 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 51 ff 01 00 00 00 00 00 00 00 10 0d 2d 40 4a 01 00 00 "0...Dk.................L."".([.....Q...........-@" +4738 13.536679506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331501999 12 -1 694546 0 0xffffffff 0 -1 694546 0 ff ff ff ff 12 99 0a 00 00 00 00 00 ............ +4740 13.537469387 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502011 12 30 702965 0 0x0000001e 0 30 702965 0 1e 00 00 00 f5 b9 0a 00 00 00 00 00 ............ +4742 13.537625074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502023 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 65536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 01 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4744 13.537922144 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836914 12 -1 702965 0 0xffffffff 0 -1 702965 0 ff ff ff ff f5 b9 0a 00 00 00 00 00 ............ +4746 13.538403034 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836926 12 26 694547 0 0x0000001a 0 26 694547 0 1a 00 00 00 13 99 0a 00 00 00 00 00 ............ +4748 13.538589716 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836938 26 22 2031617 0 0x00000016 1 2031617 0 196609 0 16 00 00 00 01 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4750 13.538834095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502053 12 -1 694547 0 0xffffffff 0 -1 694547 0 ff ff ff ff 13 99 0a 00 00 00 00 00 ............ +4752 13.563699245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502065 12 26 702966 0 0x0000001a 0 26 702966 0 1a 00 00 00 f6 b9 0a 00 00 00 00 00 ............ +4754 13.563861847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502077 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 196608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4756 13.564270020 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836964 12 -1 702966 0 0xffffffff 0 -1 702966 0 ff ff ff ff f6 b9 0a 00 00 00 00 00 ............ +4758 13.564866543 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836976 12 22 694548 0 0x00000016 0 22 694548 0 16 00 00 00 14 99 0a 00 00 00 00 00 ............ +4760 13.565097094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375836988 22 18 2031619 0 0x00000012 1 2031619 0 196609 0 12 00 00 00 03 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4762 13.565382242 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502103 12 -1 694548 0 0xffffffff 0 -1 694548 0 ff ff ff ff 14 99 0a 00 00 00 00 00 ............ +4766 13.623057365 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837010 12 -2 79830 79847 0xfffffffe 0 -2 79830 79847 fe ff ff ff d6 37 01 00 e7 37 01 00 .....7...7.. +4773 13.666319609 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502115 12 26 702967 0 0x0000001a 0 26 702967 0 1a 00 00 00 f7 b9 0a 00 00 00 00 00 ............ +4775 13.666501045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502127 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 327680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4777 13.666957140 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837022 12 -1 702967 0 0xffffffff 0 -1 702967 0 ff ff ff ff f7 b9 0a 00 00 00 00 00 ............ +4778 13.667114735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502153 12 -2 79848 79830 0xfffffffe 0 -2 79848 79830 fe ff ff ff e8 37 01 00 d6 37 01 00 .....7...7.. +4782 13.667384863 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837034 12 22 694549 0 0x00000016 0 22 694549 0 16 00 00 00 15 99 0a 00 00 00 00 00 ............ +4784 13.667545557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837046 22 18 2031621 0 0x00000012 1 2031621 0 196609 0 12 00 00 00 05 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4786 13.667941809 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502165 12 -1 694549 0 0xffffffff 0 -1 694549 0 ff ff ff ff 15 99 0a 00 00 00 00 00 ............ +4795 13.769538879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502177 12 26 702968 0 0x0000001a 0 26 702968 0 1a 00 00 00 f8 b9 0a 00 00 00 00 00 ............ +4797 13.769721270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502189 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 458752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4799 13.770009041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837068 12 -1 702968 0 0xffffffff 0 -1 702968 0 ff ff ff ff f8 b9 0a 00 00 00 00 00 ............ +4801 13.770932436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837080 12 22 694550 0 0x00000016 0 22 694550 0 16 00 00 00 16 99 0a 00 00 00 00 00 ............ +4803 13.771142006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837092 22 18 2031623 0 0x00000012 1 2031623 0 196609 0 12 00 00 00 07 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4805 13.771444559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502215 12 -1 694550 0 0xffffffff 0 -1 694550 0 ff ff ff ff 16 99 0a 00 00 00 00 00 ............ +4811 13.838636875 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502227 12 101 702969 0 0x00000065 0 101 702969 0 65 00 00 00 f9 b9 0a 00 00 00 00 00 e........... +4813 13.838825703 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502239 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 52 ff 01 00 00 00 00 00 0f d8 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 52 ff 01 00 00 00 00 .....!...o3.......R...............?.....3...|8.. +4815 13.839238882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837114 12 -1 702969 0 0xffffffff 0 -1 702969 0 ff ff ff ff f9 b9 0a 00 00 00 00 00 ............ +4817 13.840302944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837126 12 52 694551 0 0x00000034 0 52 694551 0 34 00 00 00 17 99 0a 00 00 00 00 00 4........... +4819 13.840538740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837138 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 52 ff 01 00 00 00 00 00 00 00 a3 78 5b 40 4a 01 00 00 "0...Dk.................L."".([.....R..........x[@" +4821 13.840928793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502340 12 -1 694551 0 0xffffffff 0 -1 694551 0 ff ff ff ff 17 99 0a 00 00 00 00 00 ............ +4823 13.841732025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502352 12 30 702970 0 0x0000001e 0 30 702970 0 1e 00 00 00 fa b9 0a 00 00 00 00 00 ............ +4825 13.841907978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502364 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 589824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4827 13.842379570 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837190 12 -1 702970 0 0xffffffff 0 -1 702970 0 ff ff ff ff fa b9 0a 00 00 00 00 00 ............ +4829 13.842757463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837202 12 26 694552 0 0x0000001a 0 26 694552 0 1a 00 00 00 18 99 0a 00 00 00 00 00 ............ +4831 13.842884064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837214 26 22 2031625 0 0x00000016 1 2031625 0 196609 0 16 00 00 00 09 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4834 13.843171835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502394 12 -1 694552 0 0xffffffff 0 -1 694552 0 ff ff ff ff 18 99 0a 00 00 00 00 00 ............ +4836 13.872546434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502406 12 26 702971 0 0x0000001a 0 26 702971 0 1a 00 00 00 fb b9 0a 00 00 00 00 00 ............ +4838 13.872707844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502418 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 720896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4840 13.873077869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837240 12 -1 702971 0 0xffffffff 0 -1 702971 0 ff ff ff ff fb b9 0a 00 00 00 00 00 ............ +4842 13.873693228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837252 12 22 694553 0 0x00000016 0 22 694553 0 16 00 00 00 19 99 0a 00 00 00 00 00 ............ +4844 13.873845577 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837264 22 18 2031627 0 0x00000012 1 2031627 0 196609 0 12 00 00 00 0b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4846 13.874183893 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502444 12 -1 694553 0 0xffffffff 0 -1 694553 0 ff ff ff ff 19 99 0a 00 00 00 00 00 ............ +4848 13.975152254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502456 12 26 702972 0 0x0000001a 0 26 702972 0 1a 00 00 00 fc b9 0a 00 00 00 00 00 ............ +4850 13.975331783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502468 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 851968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4852 13.975582361 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837286 12 -1 702972 0 0xffffffff 0 -1 702972 0 ff ff ff ff fc b9 0a 00 00 00 00 00 ............ +4854 13.976102591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837298 12 22 694554 0 0x00000016 0 22 694554 0 16 00 00 00 1a 99 0a 00 00 00 00 00 ............ +4856 13.976269960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837310 22 18 2031629 0 0x00000012 1 2031629 0 196609 0 12 00 00 00 0d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4858 13.976527214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502494 12 -1 694554 0 0xffffffff 0 -1 694554 0 ff ff ff ff 1a 99 0a 00 00 00 00 00 ............ +4862 14.078074694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502506 12 26 702973 0 0x0000001a 0 26 702973 0 1a 00 00 00 fd b9 0a 00 00 00 00 00 ............ +4864 14.078287840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502518 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 983040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4866 14.078880548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837332 12 -1 702973 0 0xffffffff 0 -1 702973 0 ff ff ff ff fd b9 0a 00 00 00 00 00 ............ +4868 14.079136372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837344 12 22 694555 0 0x00000016 0 22 694555 0 16 00 00 00 1b 99 0a 00 00 00 00 00 ............ +4870 14.079327106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837356 22 18 2031631 0 0x00000012 1 2031631 0 196609 0 12 00 00 00 0f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4872 14.079639673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502544 12 -1 694555 0 0xffffffff 0 -1 694555 0 ff ff ff ff 1b 99 0a 00 00 00 00 00 ............ +4875 14.123031378 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837378 12 -2 79831 79848 0xfffffffe 0 -2 79831 79848 fe ff ff ff d7 37 01 00 e8 37 01 00 .....7...7.. +4882 14.143376350 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502556 12 101 702974 0 0x00000065 0 101 702974 0 65 00 00 00 fe b9 0a 00 00 00 00 00 e........... +4884 14.143553734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502568 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 53 ff 01 00 00 00 00 00 40 d9 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 53 ff 01 00 00 00 00 .....!...o3.......S.......@.......?.....3...|8.. +4886 14.143844843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837390 12 -1 702974 0 0xffffffff 0 -1 702974 0 ff ff ff ff fe b9 0a 00 00 00 00 00 ............ +4888 14.145177364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837402 12 52 694556 0 0x00000034 0 52 694556 0 34 00 00 00 1c 99 0a 00 00 00 00 00 4........... +4890 14.145405054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837414 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 53 ff 01 00 00 00 00 00 00 00 e3 fc 89 40 4a 01 00 00 "0...Dk.................L."".([.....S............@" +4892 14.145601749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502669 12 -1 694556 0 0xffffffff 0 -1 694556 0 ff ff ff ff 1c 99 0a 00 00 00 00 00 ............ +4894 14.146635771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502681 12 30 702975 0 0x0000001e 0 30 702975 0 1e 00 00 00 ff b9 0a 00 00 00 00 00 ............ +4896 14.146789551 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502693 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 1114112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 11 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4898 14.147081852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837466 12 -1 702975 0 0xffffffff 0 -1 702975 0 ff ff ff ff ff b9 0a 00 00 00 00 00 ............ +4900 14.147471428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837478 12 26 694557 0 0x0000001a 0 26 694557 0 1a 00 00 00 1d 99 0a 00 00 00 00 00 ............ +4902 14.147612572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837490 26 22 2031633 0 0x00000016 1 2031633 0 196609 0 16 00 00 00 11 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4904 14.147845984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502723 12 -1 694557 0 0xffffffff 0 -1 694557 0 ff ff ff ff 1d 99 0a 00 00 00 00 00 ............ +4906 14.168676376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502735 12 -2 79849 79831 0xfffffffe 0 -2 79849 79831 fe ff ff ff e9 37 01 00 d7 37 01 00 .....7...7.. +4910 14.180912971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502747 12 26 702976 0 0x0000001a 0 26 702976 0 1a 00 00 00 00 ba 0a 00 00 00 00 00 ............ +4912 14.181069851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502759 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 1245184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4914 14.181402445 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837516 12 -1 702976 0 0xffffffff 0 -1 702976 0 ff ff ff ff 00 ba 0a 00 00 00 00 00 ............ +4916 14.181895494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837528 12 22 694558 0 0x00000016 0 22 694558 0 16 00 00 00 1e 99 0a 00 00 00 00 00 ............ +4918 14.182055235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837540 22 18 2031635 0 0x00000012 1 2031635 0 196609 0 12 00 00 00 13 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4920 14.182426453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502785 12 -1 694558 0 0xffffffff 0 -1 694558 0 ff ff ff ff 1e 99 0a 00 00 00 00 00 ............ +4932 14.283227444 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502797 12 26 702977 0 0x0000001a 0 26 702977 0 1a 00 00 00 01 ba 0a 00 00 00 00 00 ............ +4934 14.283403158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502809 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 1376256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4936 14.284381390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837562 12 -1 702977 0 0xffffffff 0 -1 702977 0 ff ff ff ff 01 ba 0a 00 00 00 00 00 ............ +4938 14.284860611 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837574 12 22 694559 0 0x00000016 0 22 694559 0 16 00 00 00 1f 99 0a 00 00 00 00 00 ............ +4940 14.285018206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837586 22 18 2031637 0 0x00000012 1 2031637 0 196609 0 12 00 00 00 15 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4942 14.285349369 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502835 12 -1 694559 0 0xffffffff 0 -1 694559 0 ff ff ff ff 1f 99 0a 00 00 00 00 00 ............ +4948 14.387646198 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502847 12 26 702978 0 0x0000001a 0 26 702978 0 1a 00 00 00 02 ba 0a 00 00 00 00 00 ............ +4950 14.387869596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502859 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 1507328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4952 14.388252974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837608 12 -1 702978 0 0xffffffff 0 -1 702978 0 ff ff ff ff 02 ba 0a 00 00 00 00 00 ............ +4954 14.388770580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837620 12 22 694560 0 0x00000016 0 22 694560 0 16 00 00 00 20 99 0a 00 00 00 00 00 .... ....... +4956 14.388978243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837632 22 18 2031639 0 0x00000012 1 2031639 0 196609 0 12 00 00 00 17 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4958 14.389248371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502885 12 -1 694560 0 0xffffffff 0 -1 694560 0 ff ff ff ff 20 99 0a 00 00 00 00 00 .... ....... +4960 14.447510719 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502897 12 101 702979 0 0x00000065 0 101 702979 0 65 00 00 00 03 ba 0a 00 00 00 00 00 e........... +4962 14.447711706 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331502909 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 54 ff 01 00 00 00 00 00 70 da 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 54 ff 01 00 00 00 00 .....!...o3.......T.......p.......?.....3...|8.. +4964 14.448062658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837654 12 -1 702979 0 0xffffffff 0 -1 702979 0 ff ff ff ff 03 ba 0a 00 00 00 00 00 ............ +4966 14.449235439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837666 12 52 694561 0 0x00000034 0 52 694561 0 34 00 00 00 21 99 0a 00 00 00 00 00 4...!....... +4968 14.449409008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837678 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 54 ff 01 00 00 00 00 00 00 00 77 62 b8 40 4a 01 00 00 "0...Dk.................L."".([.....T.........wb.@" +4970 14.449721575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503010 12 -1 694561 0 0xffffffff 0 -1 694561 0 ff ff ff ff 21 99 0a 00 00 00 00 00 ....!....... +4972 14.450490236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503022 12 30 702980 0 0x0000001e 0 30 702980 0 1e 00 00 00 04 ba 0a 00 00 00 00 00 ............ +4974 14.450706959 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503034 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 1638400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4976 14.450982809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837730 12 -1 702980 0 0xffffffff 0 -1 702980 0 ff ff ff ff 04 ba 0a 00 00 00 00 00 ............ +4978 14.451368332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837742 12 26 694562 0 0x0000001a 0 26 694562 0 1a 00 00 00 22 99 0a 00 00 00 00 00 "....""......." +4980 14.451527119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837754 26 22 2031641 0 0x00000016 1 2031641 0 196609 0 16 00 00 00 19 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4982 14.451830387 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503064 12 -1 694562 0 0xffffffff 0 -1 694562 0 ff ff ff ff 22 99 0a 00 00 00 00 00 "....""......." +4984 14.492004871 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503076 12 26 702981 0 0x0000001a 0 26 702981 0 1a 00 00 00 05 ba 0a 00 00 00 00 00 ............ +4986 14.492189407 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503088 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 1769472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +4988 14.492560625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837780 12 -1 702981 0 0xffffffff 0 -1 702981 0 ff ff ff ff 05 ba 0a 00 00 00 00 00 ............ +4990 14.493154049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837792 12 22 694563 0 0x00000016 0 22 694563 0 16 00 00 00 23 99 0a 00 00 00 00 00 ....#....... +4992 14.493414640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837804 22 18 2031643 0 0x00000012 1 2031643 0 196609 0 12 00 00 00 1b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4994 14.493708372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503114 12 -1 694563 0 0xffffffff 0 -1 694563 0 ff ff ff ff 23 99 0a 00 00 00 00 00 ....#....... +5001 14.595014095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503126 12 26 702982 0 0x0000001a 0 26 702982 0 1a 00 00 00 06 ba 0a 00 00 00 00 00 ............ +5003 14.595204353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503138 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 1900544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +5005 14.595597744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837826 12 -1 702982 0 0xffffffff 0 -1 702982 0 ff ff ff ff 06 ba 0a 00 00 00 00 00 ............ +5007 14.596099854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837838 12 22 694564 0 0x00000016 0 22 694564 0 16 00 00 00 24 99 0a 00 00 00 00 00 ....$....... +5009 14.596326828 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837850 22 18 2031645 0 0x00000012 1 2031645 0 196609 0 12 00 00 00 1d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5011 14.596601725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503164 12 -1 694564 0 0xffffffff 0 -1 694564 0 ff ff ff ff 24 99 0a 00 00 00 00 00 ....$....... +5013 14.622905731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837872 12 -2 79832 79849 0xfffffffe 0 -2 79832 79849 fe ff ff ff d8 37 01 00 e9 37 01 00 .....7...7.. +5021 14.670014858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503176 12 -2 79850 79832 0xfffffffe 0 -2 79850 79832 fe ff ff ff ea 37 01 00 d8 37 01 00 .....7...7.. +5026 14.697887659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503188 12 26 702983 0 0x0000001a 0 26 702983 0 1a 00 00 00 07 ba 0a 00 00 00 00 00 ............ +5028 14.698077202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503200 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 2031616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +5030 14.698474169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837884 12 -1 702983 0 0xffffffff 0 -1 702983 0 ff ff ff ff 07 ba 0a 00 00 00 00 00 ............ +5032 14.699228764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837896 12 22 694565 0 0x00000016 0 22 694565 0 16 00 00 00 25 99 0a 00 00 00 00 00 ....%....... +5034 14.699390650 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837908 22 18 2031647 0 0x00000012 1 2031647 0 196609 0 12 00 00 00 1f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5036 14.699694633 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503226 12 -1 694565 0 0xffffffff 0 -1 694565 0 ff ff ff ff 25 99 0a 00 00 00 00 00 ....%....... +5044 14.751727343 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503238 12 34 702984 0 0x00000022 0 34 702984 0 22 00 00 00 08 ba 0a 00 00 00 00 00 """..........." +5046 14.751917839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503250 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -11206656 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 55 ff 01 00 00 00 00 00 a0 db 0d c3 9d 01 00 00 .....!...o3.......U............... +5048 14.752058029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503284 12 67 702985 0 0x00000043 0 67 702985 0 43 00 00 00 09 ba 0a 00 00 00 00 00 C........... +5050 14.752145767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503296 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 55 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f4 d2 90 34 8a ?.....3...|8...........U.......=B.....&......... +5052 14.752300262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837930 12 -1 702984 0 0xffffffff 0 -1 702984 0 ff ff ff ff 08 ba 0a 00 00 00 00 00 ............ +5054 14.752565145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837942 12 -1 702985 0 0xffffffff 0 -1 702985 0 ff ff ff ff 09 ba 0a 00 00 00 00 00 ............ +5056 14.753287554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837954 12 52 694566 0 0x00000034 0 52 694566 0 34 00 00 00 26 99 0a 00 00 00 00 00 4...&....... +5058 14.753448009 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375837966 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 55 ff 01 00 00 00 00 00 00 00 e3 c3 e6 40 4a 01 00 00 "0...Dk.................L."".([.....U............@" +5060 14.753831625 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503363 12 -1 694566 0 0xffffffff 0 -1 694566 0 ff ff ff ff 26 99 0a 00 00 00 00 00 ....&....... +5062 14.754926443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503375 12 30 702986 0 0x0000001e 0 30 702986 0 1e 00 00 00 0a ba 0a 00 00 00 00 00 ............ +5064 14.755096674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503387 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 2162688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +5066 14.755386353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838018 12 -1 702986 0 0xffffffff 0 -1 702986 0 ff ff ff ff 0a ba 0a 00 00 00 00 00 ............ +5068 14.755846739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838030 12 26 694567 0 0x0000001a 0 26 694567 0 1a 00 00 00 27 99 0a 00 00 00 00 00 ....'....... +5070 14.756043911 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838042 26 22 2031649 0 0x00000016 1 2031649 0 196609 0 16 00 00 00 21 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +5072 14.756369829 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503417 12 -1 694567 0 0xffffffff 0 -1 694567 0 ff ff ff ff 27 99 0a 00 00 00 00 00 ....'....... +5075 14.800664663 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503429 12 26 702987 0 0x0000001a 0 26 702987 0 1a 00 00 00 0b ba 0a 00 00 00 00 00 ............ +5077 14.800911427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503441 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 2293760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 00 1f 00 00 00 00 00 ....T.c@.^1@......#....... +5079 14.801331758 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838068 12 -1 702987 0 0xffffffff 0 -1 702987 0 ff ff ff ff 0b ba 0a 00 00 00 00 00 ............ +5081 14.802027941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838080 12 22 694568 0 0x00000016 0 22 694568 0 16 00 00 00 28 99 0a 00 00 00 00 00 ....(....... +5083 14.802212000 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838092 22 18 2031651 0 0x00000012 1 2031651 0 196609 0 12 00 00 00 23 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +5085 14.802555561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503467 12 -1 694568 0 0xffffffff 0 -1 694568 0 ff ff ff ff 28 99 0a 00 00 00 00 00 ....(....... +5093 14.906048059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503479 12 26 702988 0 0x0000001a 0 26 702988 0 1a 00 00 00 0c ba 0a 00 00 00 00 00 ............ +5095 14.906265259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503491 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 2424832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 00 1f 00 00 00 00 00 ....T.c@.^1@......%....... +5097 14.906636238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838114 12 -1 702988 0 0xffffffff 0 -1 702988 0 ff ff ff ff 0c ba 0a 00 00 00 00 00 ............ +5099 14.907216549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838126 12 22 694569 0 0x00000016 0 22 694569 0 16 00 00 00 29 99 0a 00 00 00 00 00 ....)....... +5102 14.907372952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838138 22 18 2031653 0 0x00000012 1 2031653 0 196609 0 12 00 00 00 25 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +5104 14.907611132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503517 12 -1 694569 0 0xffffffff 0 -1 694569 0 ff ff ff ff 29 99 0a 00 00 00 00 00 ....)....... +5106 15.008861780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503529 12 26 702989 0 0x0000001a 0 26 702989 0 1a 00 00 00 0d ba 0a 00 00 00 00 00 ............ +5108 15.009060860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503541 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 2555904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 00 1f 00 00 00 00 00 ....T.c@.^1@......'....... +5110 15.009447336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838160 12 -1 702989 0 0xffffffff 0 -1 702989 0 ff ff ff ff 0d ba 0a 00 00 00 00 00 ............ +5114 15.009882927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838172 12 22 694570 0 0x00000016 0 22 694570 0 16 00 00 00 2a 99 0a 00 00 00 00 00 ....*....... +5116 15.010045767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838184 22 18 2031655 0 0x00000012 1 2031655 0 196609 0 12 00 00 00 27 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +5118 15.010321379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503567 12 -1 694570 0 0xffffffff 0 -1 694570 0 ff ff ff ff 2a 99 0a 00 00 00 00 00 ....*....... +5121 15.056646347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503579 12 34 702990 0 0x00000022 0 34 702990 0 22 00 00 00 0e ba 0a 00 00 00 00 00 """..........." +5123 15.056832075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503591 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -11141120 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 56 ff 01 00 00 00 00 00 d2 dc 0d c3 9d 01 00 00 .....!...o3.......V............... +5125 15.056923151 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503625 12 67 702991 0 0x00000043 0 67 702991 0 43 00 00 00 0f ba 0a 00 00 00 00 00 C........... +5127 15.057007074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503637 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 56 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c a6 b4 46 8a ?.....3...|8...........V.......=B.....&......... +5129 15.057199478 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838206 12 -1 702990 0 0xffffffff 0 -1 702990 0 ff ff ff ff 0e ba 0a 00 00 00 00 00 ............ +5131 15.057371855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838218 12 -1 702991 0 0xffffffff 0 -1 702991 0 ff ff ff ff 0f ba 0a 00 00 00 00 00 ............ +5133 15.058115244 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838230 12 52 694571 0 0x00000034 0 52 694571 0 34 00 00 00 2b 99 0a 00 00 00 00 00 4...+....... +5135 15.058295727 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838242 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 56 ff 01 00 00 00 00 00 00 00 d5 49 15 41 4a 01 00 00 "0...Dk.................L."".([.....V..........I.A" +5137 15.058555126 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503704 12 -1 694571 0 0xffffffff 0 -1 694571 0 ff ff ff ff 2b 99 0a 00 00 00 00 00 ....+....... +5139 15.059308290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503716 12 30 702992 0 0x0000001e 0 30 702992 0 1e 00 00 00 10 ba 0a 00 00 00 00 00 ............ +5141 15.059452295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503728 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 2686976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +5143 15.059738159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838294 12 -1 702992 0 0xffffffff 0 -1 702992 0 ff ff ff ff 10 ba 0a 00 00 00 00 00 ............ +5145 15.060141563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838306 12 26 694572 0 0x0000001a 0 26 694572 0 1a 00 00 00 2c 99 0a 00 00 00 00 00 ....,....... +5147 15.060309649 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838318 26 22 2031657 0 0x00000016 1 2031657 0 196609 0 16 00 00 00 29 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +5149 15.060544252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503758 12 -1 694572 0 0xffffffff 0 -1 694572 0 ff ff ff ff 2c 99 0a 00 00 00 00 00 ....,....... +5151 15.111349583 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503770 12 26 702993 0 0x0000001a 0 26 702993 0 1a 00 00 00 11 ba 0a 00 00 00 00 00 ............ +5153 15.111521721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503782 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 2818048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 00 1f 00 00 00 00 00 ....T.c@.^1@......+....... +5155 15.111883640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838344 12 -1 702993 0 0xffffffff 0 -1 702993 0 ff ff ff ff 11 ba 0a 00 00 00 00 00 ............ +5157 15.112402439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838356 12 22 694573 0 0x00000016 0 22 694573 0 16 00 00 00 2d 99 0a 00 00 00 00 00 ....-....... +5159 15.112576008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838368 22 18 2031659 0 0x00000012 1 2031659 0 196609 0 12 00 00 00 2b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +5161 15.112864494 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503808 12 -1 694573 0 0xffffffff 0 -1 694573 0 ff ff ff ff 2d 99 0a 00 00 00 00 00 ....-....... +5164 15.123234510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838390 12 -2 79833 79850 0xfffffffe 0 -2 79833 79850 fe ff ff ff d9 37 01 00 ea 37 01 00 .....7...7.. +5176 15.171219587 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503820 12 -2 79851 79833 0xfffffffe 0 -2 79851 79833 fe ff ff ff eb 37 01 00 d9 37 01 00 .....7...7.. +5188 15.214365959 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503832 12 26 702994 0 0x0000001a 0 26 702994 0 1a 00 00 00 12 ba 0a 00 00 00 00 00 ............ +5190 15.214551449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503844 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 2949120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 00 1f 00 00 00 00 00 ....T.c@.^1@......-....... +5192 15.214865208 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838402 12 -1 702994 0 0xffffffff 0 -1 702994 0 ff ff ff ff 12 ba 0a 00 00 00 00 00 ............ +5194 15.215421915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838414 12 22 694574 0 0x00000016 0 22 694574 0 16 00 00 00 2e 99 0a 00 00 00 00 00 ............ +5196 15.215609312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838426 22 18 2031661 0 0x00000012 1 2031661 0 196609 0 12 00 00 00 2d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +5198 15.215946913 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503870 12 -1 694574 0 0xffffffff 0 -1 694574 0 ff ff ff ff 2e 99 0a 00 00 00 00 00 ............ +5201 15.317335606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503882 12 26 702995 0 0x0000001a 0 26 702995 0 1a 00 00 00 13 ba 0a 00 00 00 00 00 ............ +5203 15.317574739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503894 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 3080192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 00 1f 00 00 00 00 00 ....T.c@.^1@....../....... +5205 15.317870378 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838448 12 -1 702995 0 0xffffffff 0 -1 702995 0 ff ff ff ff 13 ba 0a 00 00 00 00 00 ............ +5207 15.318377733 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838460 12 22 694575 0 0x00000016 0 22 694575 0 16 00 00 00 2f 99 0a 00 00 00 00 00 ..../....... +5209 15.318618059 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838472 22 18 2031663 0 0x00000012 1 2031663 0 196609 0 12 00 00 00 2f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +5211 15.318936110 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503920 12 -1 694575 0 0xffffffff 0 -1 694575 0 ff ff ff ff 2f 99 0a 00 00 00 00 00 ..../....... +5218 15.361690283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503932 12 101 702996 0 0x00000065 0 101 702996 0 65 00 00 00 14 ba 0a 00 00 00 00 00 e........... +5220 15.361877203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331503944 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 ff 01 00 00 00 00 00 02 de 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 57 ff 01 00 00 00 00 .....!...o3.......W...............?.....3...|8.. +5222 15.362245083 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838494 12 -1 702996 0 0xffffffff 0 -1 702996 0 ff ff ff ff 14 ba 0a 00 00 00 00 00 ............ +5224 15.363132477 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838506 12 52 694576 0 0x00000034 0 52 694576 0 34 00 00 00 30 99 0a 00 00 00 00 00 4...0....... +5226 15.363292933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838518 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 57 ff 01 00 00 00 00 00 00 00 7e d3 43 41 4a 01 00 00 "0...Dk.................L."".([.....W.........~.CA" +5228 15.363628864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504045 12 -1 694576 0 0xffffffff 0 -1 694576 0 ff ff ff ff 30 99 0a 00 00 00 00 00 ....0....... +5230 15.364244699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504057 12 30 702997 0 0x0000001e 0 30 702997 0 1e 00 00 00 15 ba 0a 00 00 00 00 00 ............ +5232 15.364377260 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504069 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 3211264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +5234 15.364904404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838570 12 -1 702997 0 0xffffffff 0 -1 702997 0 ff ff ff ff 15 ba 0a 00 00 00 00 00 ............ +5236 15.365111589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838582 12 26 694577 0 0x0000001a 0 26 694577 0 1a 00 00 00 31 99 0a 00 00 00 00 00 ....1....... +5238 15.365275383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838594 26 22 2031665 0 0x00000016 1 2031665 0 196609 0 16 00 00 00 31 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +5240 15.365596771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504099 12 -1 694577 0 0xffffffff 0 -1 694577 0 ff ff ff ff 31 99 0a 00 00 00 00 00 ....1....... +5242 15.420038462 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504111 12 26 702998 0 0x0000001a 0 26 702998 0 1a 00 00 00 16 ba 0a 00 00 00 00 00 ............ +5244 15.420229435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504123 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 3342336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 00 1f 00 00 00 00 00 ....T.c@.^1@......3....... +5246 15.420531750 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838620 12 -1 702998 0 0xffffffff 0 -1 702998 0 ff ff ff ff 16 ba 0a 00 00 00 00 00 ............ +5248 15.421062469 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838632 12 22 694578 0 0x00000016 0 22 694578 0 16 00 00 00 32 99 0a 00 00 00 00 00 ....2....... +5250 15.421221972 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838644 22 18 2031667 0 0x00000012 1 2031667 0 196609 0 12 00 00 00 33 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +5252 15.421567440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504149 12 -1 694578 0 0xffffffff 0 -1 694578 0 ff ff ff ff 32 99 0a 00 00 00 00 00 ....2....... +5257 15.524345160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504161 12 26 702999 0 0x0000001a 0 26 702999 0 1a 00 00 00 17 ba 0a 00 00 00 00 00 ............ +5259 15.524605751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504173 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 3473408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 00 1f 00 00 00 00 00 ....T.c@.^1@......5....... +5261 15.525040388 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838666 12 -1 702999 0 0xffffffff 0 -1 702999 0 ff ff ff ff 17 ba 0a 00 00 00 00 00 ............ +5263 15.525477886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838678 12 22 694579 0 0x00000016 0 22 694579 0 16 00 00 00 33 99 0a 00 00 00 00 00 ....3....... +5265 15.525706291 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838690 22 18 2031669 0 0x00000012 1 2031669 0 196609 0 12 00 00 00 35 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +5267 15.526056528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504199 12 -1 694579 0 0xffffffff 0 -1 694579 0 ff ff ff ff 33 99 0a 00 00 00 00 00 ....3....... +5270 15.623284817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838712 12 -2 79834 79851 0xfffffffe 0 -2 79834 79851 fe ff ff ff da 37 01 00 eb 37 01 00 .....7...7.. +5274 15.627175331 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504211 12 26 703000 0 0x0000001a 0 26 703000 0 1a 00 00 00 18 ba 0a 00 00 00 00 00 ............ +5276 15.627353668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504223 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 3604480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 00 1f 00 00 00 00 00 ....T.c@.^1@......7....... +5278 15.627719164 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838724 12 -1 703000 0 0xffffffff 0 -1 703000 0 ff ff ff ff 18 ba 0a 00 00 00 00 00 ............ +5282 15.628198624 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838736 12 22 694580 0 0x00000016 0 22 694580 0 16 00 00 00 34 99 0a 00 00 00 00 00 ....4....... +5284 15.628367662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838748 22 18 2031671 0 0x00000012 1 2031671 0 196609 0 12 00 00 00 37 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +5286 15.628659248 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504249 12 -1 694580 0 0xffffffff 0 -1 694580 0 ff ff ff ff 34 99 0a 00 00 00 00 00 ....4....... +5290 15.665359497 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504261 12 101 703001 0 0x00000065 0 101 703001 0 65 00 00 00 19 ba 0a 00 00 00 00 00 e........... +5292 15.665526152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504273 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 ff 01 00 00 00 00 00 32 df 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 58 ff 01 00 00 00 00 .....!...o3.......X.......2.......?.....3...|8.. +5294 15.665892363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838770 12 -1 703001 0 0xffffffff 0 -1 703001 0 ff ff ff ff 19 ba 0a 00 00 00 00 00 ............ +5296 15.667114973 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838782 12 52 694581 0 0x00000034 0 52 694581 0 34 00 00 00 35 99 0a 00 00 00 00 00 4...5....... +5298 15.667288780 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838794 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 58 ff 01 00 00 00 00 00 00 00 0e 37 72 41 4a 01 00 00 "0...Dk.................L."".([.....X..........7rA" +5300 15.667588234 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504374 12 -1 694581 0 0xffffffff 0 -1 694581 0 ff ff ff ff 35 99 0a 00 00 00 00 00 ....5....... +5302 15.668382168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504386 12 30 703002 0 0x0000001e 0 30 703002 0 1e 00 00 00 1a ba 0a 00 00 00 00 00 ............ +5304 15.668567419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504398 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 3735552 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +5306 15.668816566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838846 12 -1 703002 0 0xffffffff 0 -1 703002 0 ff ff ff ff 1a ba 0a 00 00 00 00 00 ............ +5308 15.669335604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838858 12 26 694582 0 0x0000001a 0 26 694582 0 1a 00 00 00 36 99 0a 00 00 00 00 00 ....6....... +5310 15.669530630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838870 26 22 2031673 0 0x00000016 1 2031673 0 196609 0 16 00 00 00 39 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +5312 15.669777155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504428 12 -1 694582 0 0xffffffff 0 -1 694582 0 ff ff ff ff 36 99 0a 00 00 00 00 00 ....6....... +5314 15.671910048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504440 12 -2 79852 79834 0xfffffffe 0 -2 79852 79834 fe ff ff ff ec 37 01 00 da 37 01 00 .....7...7.. +5327 15.731129885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504452 12 26 703003 0 0x0000001a 0 26 703003 0 1a 00 00 00 1b ba 0a 00 00 00 00 00 ............ +5329 15.731300831 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504464 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 3866624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 00 1f 00 00 00 00 00 ....T.c@.^1@......;....... +5331 15.731638908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838896 12 -1 703003 0 0xffffffff 0 -1 703003 0 ff ff ff ff 1b ba 0a 00 00 00 00 00 ............ +5333 15.732061863 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838908 12 22 694583 0 0x00000016 0 22 694583 0 16 00 00 00 37 99 0a 00 00 00 00 00 ....7....... +5335 15.732230425 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838920 22 18 2031675 0 0x00000012 1 2031675 0 196609 0 12 00 00 00 3b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +5337 15.732581377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504490 12 -1 694583 0 0xffffffff 0 -1 694583 0 ff ff ff ff 37 99 0a 00 00 00 00 00 ....7....... +5344 15.834149837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504502 12 26 703004 0 0x0000001a 0 26 703004 0 1a 00 00 00 1c ba 0a 00 00 00 00 00 ............ +5346 15.834325314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504514 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 3997696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 00 1f 00 00 00 00 00 ....T.c@.^1@......=....... +5348 15.834706068 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838942 12 -1 703004 0 0xffffffff 0 -1 703004 0 ff ff ff ff 1c ba 0a 00 00 00 00 00 ............ +5350 15.835222721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838954 12 22 694584 0 0x00000016 0 22 694584 0 16 00 00 00 38 99 0a 00 00 00 00 00 ....8....... +5352 15.835381269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838966 22 18 2031677 0 0x00000012 1 2031677 0 196609 0 12 00 00 00 3d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +5354 15.835711479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504540 12 -1 694584 0 0xffffffff 0 -1 694584 0 ff ff ff ff 38 99 0a 00 00 00 00 00 ....8....... +5358 15.937834740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504552 12 26 703005 0 0x0000001a 0 26 703005 0 1a 00 00 00 1d ba 0a 00 00 00 00 00 ............ +5360 15.938009739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504564 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 4128768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 00 1f 00 00 00 00 00 ....T.c@.^1@......?....... +5362 15.938470125 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375838988 12 -1 703005 0 0xffffffff 0 -1 703005 0 ff ff ff ff 1d ba 0a 00 00 00 00 00 ............ +5364 15.938952446 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839000 12 22 694585 0 0x00000016 0 22 694585 0 16 00 00 00 39 99 0a 00 00 00 00 00 ....9....... +5366 15.939115763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839012 22 18 2031679 0 0x00000012 1 2031679 0 196609 0 12 00 00 00 3f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +5368 15.939400434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504590 12 -1 694585 0 0xffffffff 0 -1 694585 0 ff ff ff ff 39 99 0a 00 00 00 00 00 ....9....... +5370 15.969181299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504602 12 101 703006 0 0x00000065 0 101 703006 0 65 00 00 00 1e ba 0a 00 00 00 00 00 e........... +5372 15.969373226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504614 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 ff 01 00 00 00 00 00 62 e0 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 59 ff 01 00 00 00 00 .....!...o3.......Y.......b.......?.....3...|8.. +5374 15.969628811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839034 12 -1 703006 0 0xffffffff 0 -1 703006 0 ff ff ff ff 1e ba 0a 00 00 00 00 00 ............ +5376 15.970845461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839046 12 52 694586 0 0x00000034 0 52 694586 0 34 00 00 00 3a 99 0a 00 00 00 00 00 4...:....... +5378 15.971033096 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839058 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 59 ff 01 00 00 00 00 00 00 00 ec 8f a0 41 4a 01 00 00 "0...Dk.................L."".([.....Y............A" +5380 15.971394062 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504715 12 -1 694586 0 0xffffffff 0 -1 694586 0 ff ff ff ff 3a 99 0a 00 00 00 00 00 ....:....... +5382 15.972175837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504727 12 30 703007 0 0x0000001e 0 30 703007 0 1e 00 00 00 1f ba 0a 00 00 00 00 00 ............ +5384 15.972360134 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504739 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 4259840 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +5386 15.972731590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839110 12 -1 703007 0 0xffffffff 0 -1 703007 0 ff ff ff ff 1f ba 0a 00 00 00 00 00 ............ +5388 15.973068953 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839122 12 26 694587 0 0x0000001a 0 26 694587 0 1a 00 00 00 3b 99 0a 00 00 00 00 00 ....;....... +5390 15.973258495 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839134 26 22 2031681 0 0x00000016 1 2031681 0 196609 0 16 00 00 00 41 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +5392 15.973518133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504769 12 -1 694587 0 0xffffffff 0 -1 694587 0 ff ff ff ff 3b 99 0a 00 00 00 00 00 ....;....... +5408 16.041340590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504781 12 26 703008 0 0x0000001a 0 26 703008 0 1a 00 00 00 20 ba 0a 00 00 00 00 00 .... ....... +5410 16.041511774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504793 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 4390912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 00 1f 00 00 00 00 00 ....T.c@.^1@......C....... +5412 16.041782618 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839160 12 -1 703008 0 0xffffffff 0 -1 703008 0 ff ff ff ff 20 ba 0a 00 00 00 00 00 .... ....... +5414 16.042553425 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839172 12 22 694588 0 0x00000016 0 22 694588 0 16 00 00 00 3c 99 0a 00 00 00 00 00 ....<....... +5416 16.042777777 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839184 22 18 2031683 0 0x00000012 1 2031683 0 196609 0 12 00 00 00 43 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +5418 16.043093443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504819 12 -1 694588 0 0xffffffff 0 -1 694588 0 ff ff ff ff 3c 99 0a 00 00 00 00 00 ....<....... +5422 16.124428034 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839206 12 -2 79835 79852 0xfffffffe 0 -2 79835 79852 fe ff ff ff db 37 01 00 ec 37 01 00 .....7...7.. +5430 16.145606995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504831 12 26 703009 0 0x0000001a 0 26 703009 0 1a 00 00 00 21 ba 0a 00 00 00 00 00 ....!....... +5432 16.145792484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504843 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 4521984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 00 1f 00 00 00 00 00 ....T.c@.^1@......E....... +5434 16.146241665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839218 12 -1 703009 0 0xffffffff 0 -1 703009 0 ff ff ff ff 21 ba 0a 00 00 00 00 00 ....!....... +5436 16.146718025 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839230 12 22 694589 0 0x00000016 0 22 694589 0 16 00 00 00 3d 99 0a 00 00 00 00 00 ....=....... +5438 16.146920204 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839242 22 18 2031685 0 0x00000012 1 2031685 0 196609 0 12 00 00 00 45 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +5440 16.147278309 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504869 12 -1 694589 0 0xffffffff 0 -1 694589 0 ff ff ff ff 3d 99 0a 00 00 00 00 00 ....=....... +5442 16.172284365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504881 12 -2 79853 79835 0xfffffffe 0 -2 79853 79835 fe ff ff ff ed 37 01 00 db 37 01 00 .....7...7.. +5452 16.248534203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504893 12 26 703010 0 0x0000001a 0 26 703010 0 1a 00 00 00 22 ba 0a 00 00 00 00 00 "....""......." +5454 16.248703957 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504905 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 4653056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 00 1f 00 00 00 00 00 ....T.c@.^1@......G....... +5456 16.249078751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839264 12 -1 703010 0 0xffffffff 0 -1 703010 0 ff ff ff ff 22 ba 0a 00 00 00 00 00 "....""......." +5458 16.249494553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839276 12 22 694590 0 0x00000016 0 22 694590 0 16 00 00 00 3e 99 0a 00 00 00 00 00 ....>....... +5460 16.249650955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839288 22 18 2031687 0 0x00000012 1 2031687 0 196609 0 12 00 00 00 47 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +5462 16.249968052 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504931 12 -1 694590 0 0xffffffff 0 -1 694590 0 ff ff ff ff 3e 99 0a 00 00 00 00 00 ....>....... +5465 16.273707867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504943 12 101 703011 0 0x00000065 0 101 703011 0 65 00 00 00 23 ba 0a 00 00 00 00 00 e...#....... +5467 16.273903608 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331504955 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5a ff 01 00 00 00 00 00 93 e1 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5a ff 01 00 00 00 00 .....!...o3.......Z...............?.....3...|8.. +5469 16.274313450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839310 12 -1 703011 0 0xffffffff 0 -1 703011 0 ff ff ff ff 23 ba 0a 00 00 00 00 00 ....#....... +5471 16.275749445 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839322 12 52 694591 0 0x00000034 0 52 694591 0 34 00 00 00 3f 99 0a 00 00 00 00 00 4...?....... +5473 16.275962591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839334 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5a ff 01 00 00 00 00 00 00 00 f4 16 cf 41 4a 01 00 00 "0...Dk.................L."".([.....Z............A" +5475 16.276224136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505056 12 -1 694591 0 0xffffffff 0 -1 694591 0 ff ff ff ff 3f 99 0a 00 00 00 00 00 ....?....... +5477 16.276958227 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505068 12 30 703012 0 0x0000001e 0 30 703012 0 1e 00 00 00 24 ba 0a 00 00 00 00 00 ....$....... +5479 16.277172804 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505080 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 4784128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +5481 16.277483940 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839386 12 -1 703012 0 0xffffffff 0 -1 703012 0 ff ff ff ff 24 ba 0a 00 00 00 00 00 ....$....... +5483 16.277996063 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839398 12 26 694592 0 0x0000001a 0 26 694592 0 1a 00 00 00 40 99 0a 00 00 00 00 00 ....@....... +5485 16.278140068 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839410 26 22 2031689 0 0x00000016 1 2031689 0 196609 0 16 00 00 00 49 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +5487 16.278341532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505110 12 -1 694592 0 0xffffffff 0 -1 694592 0 ff ff ff ff 40 99 0a 00 00 00 00 00 ....@....... +5493 16.351174116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505122 12 26 703013 0 0x0000001a 0 26 703013 0 1a 00 00 00 25 ba 0a 00 00 00 00 00 ....%....... +5495 16.351426601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505134 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 4915200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 00 1f 00 00 00 00 00 ....T.c@.^1@......K....... +5497 16.351883411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839436 12 -1 703013 0 0xffffffff 0 -1 703013 0 ff ff ff ff 25 ba 0a 00 00 00 00 00 ....%....... +5499 16.352447510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839448 12 22 694593 0 0x00000016 0 22 694593 0 16 00 00 00 41 99 0a 00 00 00 00 00 ....A....... +5501 16.352679968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839460 22 18 2031691 0 0x00000012 1 2031691 0 196609 0 12 00 00 00 4b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +5503 16.353103638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505160 12 -1 694593 0 0xffffffff 0 -1 694593 0 ff ff ff ff 41 99 0a 00 00 00 00 00 ....A....... +5506 16.454184294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505172 12 26 703014 0 0x0000001a 0 26 703014 0 1a 00 00 00 26 ba 0a 00 00 00 00 00 ....&....... +5508 16.454372644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505184 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 5046272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 00 1f 00 00 00 00 00 ....T.c@.^1@......M....... +5510 16.454794884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839482 12 -1 703014 0 0xffffffff 0 -1 703014 0 ff ff ff ff 26 ba 0a 00 00 00 00 00 ....&....... +5512 16.455263138 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839494 12 22 694594 0 0x00000016 0 22 694594 0 16 00 00 00 42 99 0a 00 00 00 00 00 ....B....... +5514 16.455469847 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839506 22 18 2031693 0 0x00000012 1 2031693 0 196609 0 12 00 00 00 4d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +5516 16.455790997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505210 12 -1 694594 0 0xffffffff 0 -1 694594 0 ff ff ff ff 42 99 0a 00 00 00 00 00 ....B....... +5521 16.556942463 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505222 12 26 703015 0 0x0000001a 0 26 703015 0 1a 00 00 00 27 ba 0a 00 00 00 00 00 ....'....... +5523 16.557117224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505234 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 5177344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 00 1f 00 00 00 00 00 ....T.c@.^1@......O....... +5525 16.557484150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839528 12 -1 703015 0 0xffffffff 0 -1 703015 0 ff ff ff ff 27 ba 0a 00 00 00 00 00 ....'....... +5527 16.557960033 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839540 12 22 694595 0 0x00000016 0 22 694595 0 16 00 00 00 43 99 0a 00 00 00 00 00 ....C....... +5529 16.558476210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839552 22 18 2031695 0 0x00000012 1 2031695 0 196609 0 12 00 00 00 4f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +5531 16.558742762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505260 12 -1 694595 0 0xffffffff 0 -1 694595 0 ff ff ff ff 43 99 0a 00 00 00 00 00 ....C....... +5533 16.579163074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505272 12 34 703016 0 0x00000022 0 34 703016 0 22 00 00 00 28 ba 0a 00 00 00 00 00 """...(......." +5535 16.579411745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505284 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -10813440 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5b ff 01 00 00 00 00 00 c4 e2 0d c3 9d 01 00 00 .....!...o3.......[............... +5537 16.579535484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505318 12 67 703017 0 0x00000043 0 67 703017 0 43 00 00 00 29 ba 0a 00 00 00 00 00 C...)....... +5539 16.579618931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505330 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5b ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 3e 73 a1 8a ?.....3...|8...........[.......=B.....&......... +5541 16.579839230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839574 12 -1 703016 0 0xffffffff 0 -1 703016 0 ff ff ff ff 28 ba 0a 00 00 00 00 00 ....(....... +5543 16.580085039 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839586 12 -1 703017 0 0xffffffff 0 -1 703017 0 ff ff ff ff 29 ba 0a 00 00 00 00 00 ....)....... +5545 16.581201077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839598 12 52 694596 0 0x00000034 0 52 694596 0 34 00 00 00 44 99 0a 00 00 00 00 00 4...D....... +5547 16.581413031 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839610 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5b ff 01 00 00 00 00 00 00 00 5d b2 fd 41 4a 01 00 00 "0...Dk.................L."".([.....[.........]..A" +5549 16.581574917 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505397 12 -1 694596 0 0xffffffff 0 -1 694596 0 ff ff ff ff 44 99 0a 00 00 00 00 00 ....D....... +5551 16.582363367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505409 12 30 703018 0 0x0000001e 0 30 703018 0 1e 00 00 00 2a ba 0a 00 00 00 00 00 ....*....... +5553 16.582520723 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505421 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 5308416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +5555 16.582790375 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839662 12 -1 703018 0 0xffffffff 0 -1 703018 0 ff ff ff ff 2a ba 0a 00 00 00 00 00 ....*....... +5557 16.583301306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839674 12 26 694597 0 0x0000001a 0 26 694597 0 1a 00 00 00 45 99 0a 00 00 00 00 00 ....E....... +5559 16.583496571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839686 26 22 2031697 0 0x00000016 1 2031697 0 196609 0 16 00 00 00 51 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +5561 16.583755493 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505451 12 -1 694597 0 0xffffffff 0 -1 694597 0 ff ff ff ff 45 99 0a 00 00 00 00 00 ....E....... +5564 16.623996496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839712 12 -2 79836 79853 0xfffffffe 0 -2 79836 79853 fe ff ff ff dc 37 01 00 ed 37 01 00 .....7...7.. +5574 16.660166502 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505463 12 26 703019 0 0x0000001a 0 26 703019 0 1a 00 00 00 2b ba 0a 00 00 00 00 00 ....+....... +5576 16.660389423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505475 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 5439488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 00 1f 00 00 00 00 00 ....T.c@.^1@......S....... +5578 16.660721540 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839724 12 -1 703019 0 0xffffffff 0 -1 703019 0 ff ff ff ff 2b ba 0a 00 00 00 00 00 ....+....... +5580 16.661244154 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839736 12 22 694598 0 0x00000016 0 22 694598 0 16 00 00 00 46 99 0a 00 00 00 00 00 ....F....... +5582 16.661455870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839748 22 18 2031699 0 0x00000012 1 2031699 0 196609 0 12 00 00 00 53 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +5584 16.661731005 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505501 12 -1 694598 0 0xffffffff 0 -1 694598 0 ff ff ff ff 46 99 0a 00 00 00 00 00 ....F....... +5586 16.674585819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505513 12 -2 79854 79836 0xfffffffe 0 -2 79854 79836 fe ff ff ff ee 37 01 00 dc 37 01 00 .....7...7.. +5597 16.763022661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505525 12 26 703020 0 0x0000001a 0 26 703020 0 1a 00 00 00 2c ba 0a 00 00 00 00 00 ....,....... +5599 16.763301611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505537 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 5570560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 00 1f 00 00 00 00 00 ....T.c@.^1@......U....... +5601 16.763615131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839770 12 -1 703020 0 0xffffffff 0 -1 703020 0 ff ff ff ff 2c ba 0a 00 00 00 00 00 ....,....... +5603 16.764505625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839782 12 22 694599 0 0x00000016 0 22 694599 0 16 00 00 00 47 99 0a 00 00 00 00 00 ....G....... +5605 16.764654636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839794 22 18 2031701 0 0x00000012 1 2031701 0 196609 0 12 00 00 00 55 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +5607 16.764972448 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505563 12 -1 694599 0 0xffffffff 0 -1 694599 0 ff ff ff ff 47 99 0a 00 00 00 00 00 ....G....... +5614 16.866905928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505575 12 26 703021 0 0x0000001a 0 26 703021 0 1a 00 00 00 2d ba 0a 00 00 00 00 00 ....-....... +5616 16.867125034 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505587 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 5701632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 00 1f 00 00 00 00 00 ....T.c@.^1@......W....... +5618 16.867565870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839816 12 -1 703021 0 0xffffffff 0 -1 703021 0 ff ff ff ff 2d ba 0a 00 00 00 00 00 ....-....... +5620 16.868168354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839828 12 22 694600 0 0x00000016 0 22 694600 0 16 00 00 00 48 99 0a 00 00 00 00 00 ....H....... +5622 16.868418455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839840 22 18 2031703 0 0x00000012 1 2031703 0 196609 0 12 00 00 00 57 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +5624 16.868636847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505613 12 -1 694600 0 0xffffffff 0 -1 694600 0 ff ff ff ff 48 99 0a 00 00 00 00 00 ....H....... +5628 16.884770393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505625 12 34 703022 0 0x00000022 0 34 703022 0 22 00 00 00 2e ba 0a 00 00 00 00 00 """..........." +5630 16.884933949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505637 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -10747904 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5c ff 01 00 00 00 00 00 f6 e3 0d c3 9d 01 00 00 .....!...o3.......\............... +5632 16.885064125 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505671 12 67 703023 0 0x00000043 0 67 703023 0 43 00 00 00 2f ba 0a 00 00 00 00 00 C.../....... +5634 16.885151148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505683 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5c ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 6c b0 b3 8a ?.....3...|8...........\.......=B.....&......... +5636 16.885409117 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839862 12 -1 703022 0 0xffffffff 0 -1 703022 0 ff ff ff ff 2e ba 0a 00 00 00 00 00 ............ +5638 16.885739565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839874 12 -1 703023 0 0xffffffff 0 -1 703023 0 ff ff ff ff 2f ba 0a 00 00 00 00 00 ..../....... +5640 16.886833191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839886 12 52 694601 0 0x00000034 0 52 694601 0 34 00 00 00 49 99 0a 00 00 00 00 00 4...I....... +5642 16.886977911 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839898 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5c ff 01 00 00 00 00 00 00 00 2c 53 2c 42 4a 01 00 00 "0...Dk.................L."".([.....\.........,S,B" +5644 16.887199163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505750 12 -1 694601 0 0xffffffff 0 -1 694601 0 ff ff ff ff 49 99 0a 00 00 00 00 00 ....I....... +5646 16.888172865 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505762 12 30 703024 0 0x0000001e 0 30 703024 0 1e 00 00 00 30 ba 0a 00 00 00 00 00 ....0....... +5648 16.888348579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505774 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 5832704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +5650 16.888654232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839950 12 -1 703024 0 0xffffffff 0 -1 703024 0 ff ff ff ff 30 ba 0a 00 00 00 00 00 ....0....... +5652 16.889240265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839962 12 26 694602 0 0x0000001a 0 26 694602 0 1a 00 00 00 4a 99 0a 00 00 00 00 00 ....J....... +5654 16.889462948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375839974 26 22 2031705 0 0x00000016 1 2031705 0 196609 0 16 00 00 00 59 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +5656 16.889819384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505804 12 -1 694602 0 0xffffffff 0 -1 694602 0 ff ff ff ff 4a 99 0a 00 00 00 00 00 ....J....... +5659 16.970020771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505816 12 26 703025 0 0x0000001a 0 26 703025 0 1a 00 00 00 31 ba 0a 00 00 00 00 00 ....1....... +5661 16.970220566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505828 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 5963776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 00 1f 00 00 00 00 00 ....T.c@.^1@......[....... +5663 16.970696688 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840000 12 -1 703025 0 0xffffffff 0 -1 703025 0 ff ff ff ff 31 ba 0a 00 00 00 00 00 ....1....... +5665 16.971186161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840012 12 22 694603 0 0x00000016 0 22 694603 0 16 00 00 00 4b 99 0a 00 00 00 00 00 ....K....... +5667 16.971414804 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840024 22 18 2031707 0 0x00000012 1 2031707 0 196609 0 12 00 00 00 5b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +5669 16.971641302 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505854 12 -1 694603 0 0xffffffff 0 -1 694603 0 ff ff ff ff 4b 99 0a 00 00 00 00 00 ....K....... +5674 17.073088169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505866 12 26 703026 0 0x0000001a 0 26 703026 0 1a 00 00 00 32 ba 0a 00 00 00 00 00 ....2....... +5676 17.073329687 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505878 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 6094848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 00 1f 00 00 00 00 00 ....T.c@.^1@......]....... +5678 17.073660135 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840046 12 -1 703026 0 0xffffffff 0 -1 703026 0 ff ff ff ff 32 ba 0a 00 00 00 00 00 ....2....... +5680 17.074782610 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840058 12 22 694604 0 0x00000016 0 22 694604 0 16 00 00 00 4c 99 0a 00 00 00 00 00 ....L....... +5682 17.075008631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840070 22 18 2031709 0 0x00000012 1 2031709 0 196609 0 12 00 00 00 5d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +5684 17.075321674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505904 12 -1 694604 0 0xffffffff 0 -1 694604 0 ff ff ff ff 4c 99 0a 00 00 00 00 00 ....L....... +5686 17.124348879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840092 12 -2 79837 79854 0xfffffffe 0 -2 79837 79854 fe ff ff ff dd 37 01 00 ee 37 01 00 .....7...7.. +5695 17.175432682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505916 12 -2 79855 79837 0xfffffffe 0 -2 79855 79837 fe ff ff ff ef 37 01 00 dd 37 01 00 .....7...7.. +5699 17.177576065 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505928 12 26 703027 0 0x0000001a 0 26 703027 0 1a 00 00 00 33 ba 0a 00 00 00 00 00 ....3....... +5701 17.177778959 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505940 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 6225920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 00 1f 00 00 00 00 00 ....T.c@.^1@......_....... +5703 17.178286076 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840104 12 -1 703027 0 0xffffffff 0 -1 703027 0 ff ff ff ff 33 ba 0a 00 00 00 00 00 ....3....... +5705 17.178738356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840116 12 22 694605 0 0x00000016 0 22 694605 0 16 00 00 00 4d 99 0a 00 00 00 00 00 ....M....... +5707 17.178907394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840128 22 18 2031711 0 0x00000012 1 2031711 0 196609 0 12 00 00 00 5f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +5709 17.179225445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505966 12 -1 694605 0 0xffffffff 0 -1 694605 0 ff ff ff ff 4d 99 0a 00 00 00 00 00 ....M....... +5711 17.189828873 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505978 12 34 703028 0 0x00000022 0 34 703028 0 22 00 00 00 34 ba 0a 00 00 00 00 00 """...4......." +5713 17.189990759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331505990 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -10682368 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5d ff 01 00 00 00 00 00 27 e5 0d c3 9d 01 00 00 .....!...o3.......].......'....... +5715 17.190146446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506024 12 67 703029 0 0x00000043 0 67 703029 0 43 00 00 00 35 ba 0a 00 00 00 00 00 C...5....... +5717 17.190232992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506036 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5d ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 20 7b da c5 8a ?.....3...|8...........].......=B.....&......... +5719 17.190350533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840150 12 -1 703028 0 0xffffffff 0 -1 703028 0 ff ff ff ff 34 ba 0a 00 00 00 00 00 ....4....... +5721 17.190527201 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840162 12 -1 703029 0 0xffffffff 0 -1 703029 0 ff ff ff ff 35 ba 0a 00 00 00 00 00 ....5....... +5723 17.192123652 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840174 12 52 694606 0 0x00000034 0 52 694606 0 34 00 00 00 4e 99 0a 00 00 00 00 00 4...N....... +5725 17.192351341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840186 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5d ff 01 00 00 00 00 00 00 00 75 ea 5a 42 4a 01 00 00 "0...Dk.................L."".([.....].........u.ZB" +5727 17.192666769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506103 12 -1 694606 0 0xffffffff 0 -1 694606 0 ff ff ff ff 4e 99 0a 00 00 00 00 00 ....N....... +5729 17.193446159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506115 12 30 703030 0 0x0000001e 0 30 703030 0 1e 00 00 00 36 ba 0a 00 00 00 00 00 ....6....... +5731 17.193587542 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506127 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 6356992 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +5733 17.193869352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840238 12 -1 703030 0 0xffffffff 0 -1 703030 0 ff ff ff ff 36 ba 0a 00 00 00 00 00 ....6....... +5735 17.194265366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840250 12 26 694607 0 0x0000001a 0 26 694607 0 1a 00 00 00 4f 99 0a 00 00 00 00 00 ....O....... +5737 17.194408894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840262 26 22 2031713 0 0x00000016 1 2031713 0 196609 0 16 00 00 00 61 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +5739 17.194606781 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506157 12 -1 694607 0 0xffffffff 0 -1 694607 0 ff ff ff ff 4f 99 0a 00 00 00 00 00 ....O....... +5748 17.280977249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506169 12 26 703031 0 0x0000001a 0 26 703031 0 1a 00 00 00 37 ba 0a 00 00 00 00 00 ....7....... +5750 17.281174898 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506181 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 6488064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 00 1f 00 00 00 00 00 ....T.c@.^1@......c....... +5752 17.281490803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840288 12 -1 703031 0 0xffffffff 0 -1 703031 0 ff ff ff ff 37 ba 0a 00 00 00 00 00 ....7....... +5754 17.282078266 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840300 12 22 694608 0 0x00000016 0 22 694608 0 16 00 00 00 50 99 0a 00 00 00 00 00 ....P....... +5756 17.282243967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840312 22 18 2031715 0 0x00000012 1 2031715 0 196609 0 12 00 00 00 63 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +5758 17.282544136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506207 12 -1 694608 0 0xffffffff 0 -1 694608 0 ff ff ff ff 50 99 0a 00 00 00 00 00 ....P....... +5769 17.385283709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506219 12 26 703032 0 0x0000001a 0 26 703032 0 1a 00 00 00 38 ba 0a 00 00 00 00 00 ....8....... +5771 17.385565281 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506231 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 6619136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 00 1f 00 00 00 00 00 ....T.c@.^1@......e....... +5773 17.385926008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840334 12 -1 703032 0 0xffffffff 0 -1 703032 0 ff ff ff ff 38 ba 0a 00 00 00 00 00 ....8....... +5775 17.386507273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840346 12 22 694609 0 0x00000016 0 22 694609 0 16 00 00 00 51 99 0a 00 00 00 00 00 ....Q....... +5777 17.386690855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840358 22 18 2031717 0 0x00000012 1 2031717 0 196609 0 12 00 00 00 65 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +5779 17.386975288 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506257 12 -1 694609 0 0xffffffff 0 -1 694609 0 ff ff ff ff 51 99 0a 00 00 00 00 00 ....Q....... +5782 17.487982035 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506269 12 26 703033 0 0x0000001a 0 26 703033 0 1a 00 00 00 39 ba 0a 00 00 00 00 00 ....9....... +5784 17.488164425 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506281 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 6750208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 00 1f 00 00 00 00 00 ....T.c@.^1@......g....... +5786 17.488534451 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840380 12 -1 703033 0 0xffffffff 0 -1 703033 0 ff ff ff ff 39 ba 0a 00 00 00 00 00 ....9....... +5788 17.489141226 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840392 12 22 694610 0 0x00000016 0 22 694610 0 16 00 00 00 52 99 0a 00 00 00 00 00 ....R....... +5790 17.489365101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840404 22 18 2031719 0 0x00000012 1 2031719 0 196609 0 12 00 00 00 67 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +5792 17.489624739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506307 12 -1 694610 0 0xffffffff 0 -1 694610 0 ff ff ff ff 52 99 0a 00 00 00 00 00 ....R....... +5794 17.495354652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506319 12 101 703034 0 0x00000065 0 101 703034 0 65 00 00 00 3a ba 0a 00 00 00 00 00 e...:....... +5796 17.495542288 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506331 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5e ff 01 00 00 00 00 00 58 e6 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5e ff 01 00 00 00 00 .....!...o3.......^.......X.......?.....3...|8.. +5798 17.496073961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840426 12 -1 703034 0 0xffffffff 0 -1 703034 0 ff ff ff ff 3a ba 0a 00 00 00 00 00 ....:....... +5800 17.497075796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840438 12 52 694611 0 0x00000034 0 52 694611 0 34 00 00 00 53 99 0a 00 00 00 00 00 4...S....... +5802 17.497326851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840450 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5e ff 01 00 00 00 00 00 00 00 91 72 89 42 4a 01 00 00 "0...Dk.................L."".([.....^..........r.B" +5804 17.497505426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506432 12 -1 694611 0 0xffffffff 0 -1 694611 0 ff ff ff ff 53 99 0a 00 00 00 00 00 ....S....... +5806 17.498299122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506444 12 30 703035 0 0x0000001e 0 30 703035 0 1e 00 00 00 3b ba 0a 00 00 00 00 00 ....;....... +5808 17.498446941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506456 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 6881280 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 69 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......i........... +5810 17.498747349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840502 12 -1 703035 0 0xffffffff 0 -1 703035 0 ff ff ff ff 3b ba 0a 00 00 00 00 00 ....;....... +5812 17.499183655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840514 12 26 694612 0 0x0000001a 0 26 694612 0 1a 00 00 00 54 99 0a 00 00 00 00 00 ....T....... +5814 17.499401331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840526 26 22 2031721 0 0x00000016 1 2031721 0 196609 0 16 00 00 00 69 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....i..................... +5816 17.499649763 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506486 12 -1 694612 0 0xffffffff 0 -1 694612 0 ff ff ff ff 54 99 0a 00 00 00 00 00 ....T....... +5839 17.590797901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506498 12 26 703036 0 0x0000001a 0 26 703036 0 1a 00 00 00 3c ba 0a 00 00 00 00 00 ....<....... +5841 17.590968370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506510 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 7012352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 00 1f 00 00 00 00 00 ....T.c@.^1@......k....... +5843 17.591393948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840552 12 -1 703036 0 0xffffffff 0 -1 703036 0 ff ff ff ff 3c ba 0a 00 00 00 00 00 ....<....... +5845 17.591884851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840564 12 22 694613 0 0x00000016 0 22 694613 0 16 00 00 00 55 99 0a 00 00 00 00 00 ....U....... +5847 17.592041254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840576 22 18 2031723 0 0x00000012 1 2031723 0 196609 0 12 00 00 00 6b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +5849 17.592266560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506536 12 -1 694613 0 0xffffffff 0 -1 694613 0 ff ff ff ff 55 99 0a 00 00 00 00 00 ....U....... +5851 17.625890493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840598 12 -2 79838 79855 0xfffffffe 0 -2 79838 79855 fe ff ff ff de 37 01 00 ef 37 01 00 .....7...7.. +5890 17.676511049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506548 12 -2 79856 79838 0xfffffffe 0 -2 79856 79838 fe ff ff ff f0 37 01 00 de 37 01 00 .....7...7.. +5893 17.694985628 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506560 12 26 703037 0 0x0000001a 0 26 703037 0 1a 00 00 00 3d ba 0a 00 00 00 00 00 ....=....... +5895 17.695164680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506572 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 7143424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 00 1f 00 00 00 00 00 ....T.c@.^1@......m....... +5897 17.695566177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840610 12 -1 703037 0 0xffffffff 0 -1 703037 0 ff ff ff ff 3d ba 0a 00 00 00 00 00 ....=....... +5899 17.696107149 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840622 12 22 694614 0 0x00000016 0 22 694614 0 16 00 00 00 56 99 0a 00 00 00 00 00 ....V....... +5901 17.696341038 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840634 22 18 2031725 0 0x00000012 1 2031725 0 196609 0 12 00 00 00 6d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +5903 17.696622849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506598 12 -1 694614 0 0xffffffff 0 -1 694614 0 ff ff ff ff 56 99 0a 00 00 00 00 00 ....V....... +5911 17.797984838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506610 12 26 703038 0 0x0000001a 0 26 703038 0 1a 00 00 00 3e ba 0a 00 00 00 00 00 ....>....... +5913 17.798169851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506622 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 7274496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 00 1f 00 00 00 00 00 ....T.c@.^1@......o....... +5915 17.798537970 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840656 12 -1 703038 0 0xffffffff 0 -1 703038 0 ff ff ff ff 3e ba 0a 00 00 00 00 00 ....>....... +5917 17.800001621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506648 12 34 703039 0 0x00000022 0 34 703039 0 22 00 00 00 3f ba 0a 00 00 00 00 00 """...?......." +5919 17.800168037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506660 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -10551296 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5f ff 01 00 00 00 00 00 89 e7 0d c3 9d 01 00 00 .....!...o3......._............... +5920 17.800289631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840668 34 22 694615 0 0x00000016 0 22 694615 0 18 16 00 00 00 57 99 0a 00 00 00 00 00 12 00 00 00 6f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W...........o................. +5922 17.800427675 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506694 12 67 703040 0 0x00000043 0 67 703040 0 43 00 00 00 40 ba 0a 00 00 00 00 00 C...@....... +5924 17.800513744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506706 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5f ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 55 39 ea 8a ?.....3...|8..........._.......=B.....&......... +5926 17.800636530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840702 12 -1 703039 0 0xffffffff 0 -1 703039 0 ff ff ff ff 3f ba 0a 00 00 00 00 00 ....?....... +5928 17.800739527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506773 12 -1 694615 0 0xffffffff 0 -1 694615 0 ff ff ff ff 57 99 0a 00 00 00 00 00 ....W....... +5929 17.800751209 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840714 12 -1 703040 0 0xffffffff 0 -1 703040 0 ff ff ff ff 40 ba 0a 00 00 00 00 00 ....@....... +5932 17.803535223 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840726 12 52 694616 0 0x00000034 0 52 694616 0 34 00 00 00 58 99 0a 00 00 00 00 00 4...X....... +5934 17.803724527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840738 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5f ff 01 00 00 00 00 00 00 00 a0 31 b8 42 4a 01 00 00 "0...Dk.................L."".([....._..........1.B" +5936 17.803994656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506785 12 -1 694616 0 0xffffffff 0 -1 694616 0 ff ff ff ff 58 99 0a 00 00 00 00 00 ....X....... +5938 17.804731607 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506797 12 30 703041 0 0x0000001e 0 30 703041 0 1e 00 00 00 41 ba 0a 00 00 00 00 00 ....A....... +5940 17.804874897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506809 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 7405568 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 71 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......q........... +5942 17.805187702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840790 12 -1 703041 0 0xffffffff 0 -1 703041 0 ff ff ff ff 41 ba 0a 00 00 00 00 00 ....A....... +5944 17.805941105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840802 12 26 694617 0 0x0000001a 0 26 694617 0 1a 00 00 00 59 99 0a 00 00 00 00 00 ....Y....... +5946 17.806091309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840814 26 22 2031729 0 0x00000016 1 2031729 0 196609 0 16 00 00 00 71 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....q..................... +5948 17.806332111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506839 12 -1 694617 0 0xffffffff 0 -1 694617 0 ff ff ff ff 59 99 0a 00 00 00 00 00 ....Y....... +5954 17.901931763 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506851 12 26 703042 0 0x0000001a 0 26 703042 0 1a 00 00 00 42 ba 0a 00 00 00 00 00 ....B....... +5956 17.902153254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506863 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 7536640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 00 1f 00 00 00 00 00 ....T.c@.^1@......s....... +5958 17.902632713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840840 12 -1 703042 0 0xffffffff 0 -1 703042 0 ff ff ff ff 42 ba 0a 00 00 00 00 00 ....B....... +5960 17.903433323 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840852 12 22 694618 0 0x00000016 0 22 694618 0 16 00 00 00 5a 99 0a 00 00 00 00 00 ....Z....... +5962 17.903667450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840864 22 18 2031731 0 0x00000012 1 2031731 0 196609 0 12 00 00 00 73 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +5964 17.903969526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506889 12 -1 694618 0 0xffffffff 0 -1 694618 0 ff ff ff ff 5a 99 0a 00 00 00 00 00 ....Z....... +5966 18.007293463 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506901 12 26 703043 0 0x0000001a 0 26 703043 0 1a 00 00 00 43 ba 0a 00 00 00 00 00 ....C....... +5968 18.007535458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506913 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 7667712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 00 1f 00 00 00 00 00 ....T.c@.^1@......u....... +5970 18.008100510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840886 12 -1 703043 0 0xffffffff 0 -1 703043 0 ff ff ff ff 43 ba 0a 00 00 00 00 00 ....C....... +5972 18.008494616 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840898 12 22 694619 0 0x00000016 0 22 694619 0 16 00 00 00 5b 99 0a 00 00 00 00 00 ....[....... +5974 18.008660793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840910 22 18 2031733 0 0x00000012 1 2031733 0 196609 0 12 00 00 00 75 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +5976 18.009055614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506939 12 -1 694619 0 0xffffffff 0 -1 694619 0 ff ff ff ff 5b 99 0a 00 00 00 00 00 ....[....... +5980 18.106323004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506951 12 101 703044 0 0x00000065 0 101 703044 0 65 00 00 00 44 ba 0a 00 00 00 00 00 e...D....... +5982 18.106574535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331506963 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 60 ff 01 00 00 00 00 00 bb e8 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 60 ff 01 00 00 00 00 .....!...o3.......`...............?.....3...|8.. +5984 18.106949568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840932 12 -1 703044 0 0xffffffff 0 -1 703044 0 ff ff ff ff 44 ba 0a 00 00 00 00 00 ....D....... +5986 18.108173609 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840944 12 52 694620 0 0x00000034 0 52 694620 0 34 00 00 00 5c 99 0a 00 00 00 00 00 4...\....... +5988 18.108325720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375840956 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 60 ff 01 00 00 00 00 00 00 00 76 af e6 42 4a 01 00 00 "0...Dk.................L."".([.....`.........v..B" +5990 18.108633280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507064 12 -1 694620 0 0xffffffff 0 -1 694620 0 ff ff ff ff 5c 99 0a 00 00 00 00 00 ....\....... +5992 18.109680414 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507076 12 30 703045 0 0x0000001e 0 30 703045 0 1e 00 00 00 45 ba 0a 00 00 00 00 00 ....E....... +5994 18.109858990 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507088 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 7798784 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 77 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......w........... +5996 18.110255003 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841008 12 -1 703045 0 0xffffffff 0 -1 703045 0 ff ff ff ff 45 ba 0a 00 00 00 00 00 ....E....... +5998 18.110418081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507118 12 26 703046 0 0x0000001a 0 26 703046 0 1a 00 00 00 46 ba 0a 00 00 00 00 00 ....F....... +6000 18.110596418 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507130 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 7929856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 00 1f 00 00 00 00 00 ....T.c@.^1@......y....... +6001 18.110688210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841020 38 26 694621 0 0x0000001a 0 26 694621 0 22 1a 00 00 00 5d 99 0a 00 00 00 00 00 16 00 00 00 77 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]...........w..................... +6003 18.110912085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841058 12 -1 703046 0 0xffffffff 0 -1 703046 0 ff ff ff ff 46 ba 0a 00 00 00 00 00 ....F....... +6005 18.110985279 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507156 12 -1 694621 0 0xffffffff 0 -1 694621 0 ff ff ff ff 5d 99 0a 00 00 00 00 00 ....]....... +6007 18.111386299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841070 12 22 694622 0 0x00000016 0 22 694622 0 16 00 00 00 5e 99 0a 00 00 00 00 00 ....^....... +6009 18.111569643 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841082 22 18 2031737 0 0x00000012 1 2031737 0 196609 0 12 00 00 00 79 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +6011 18.111818552 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507168 12 -1 694622 0 0xffffffff 0 -1 694622 0 ff ff ff ff 5e 99 0a 00 00 00 00 00 ....^....... +6013 18.126076937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841104 12 -2 79839 79856 0xfffffffe 0 -2 79839 79856 fe ff ff ff df 37 01 00 f0 37 01 00 .....7...7.. +6022 18.177390337 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507180 12 -2 79857 79839 0xfffffffe 0 -2 79857 79839 fe ff ff ff f1 37 01 00 df 37 01 00 .....7...7.. +6031 18.213768244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507192 12 26 703047 0 0x0000001a 0 26 703047 0 1a 00 00 00 47 ba 0a 00 00 00 00 00 ....G....... +6033 18.214041233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507204 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 8060928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 00 1f 00 00 00 00 00 ....T.c@.^1@......{....... +6035 18.214456558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841116 12 -1 703047 0 0xffffffff 0 -1 703047 0 ff ff ff ff 47 ba 0a 00 00 00 00 00 ....G....... +6037 18.214839935 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841128 12 22 694623 0 0x00000016 0 22 694623 0 16 00 00 00 5f 99 0a 00 00 00 00 00 ...._....... +6039 18.215220690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841140 22 18 2031739 0 0x00000012 1 2031739 0 196609 0 12 00 00 00 7b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +6041 18.215535879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507230 12 -1 694623 0 0xffffffff 0 -1 694623 0 ff ff ff ff 5f 99 0a 00 00 00 00 00 ...._....... +6079 18.317620754 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507242 12 26 703048 0 0x0000001a 0 26 703048 0 1a 00 00 00 48 ba 0a 00 00 00 00 00 ....H....... +6081 18.317830563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507254 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 8192000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 00 1f 00 00 00 00 00 ....T.c@.^1@......}....... +6083 18.318336010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841162 12 -1 703048 0 0xffffffff 0 -1 703048 0 ff ff ff ff 48 ba 0a 00 00 00 00 00 ....H....... +6085 18.318619728 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841174 12 22 694624 0 0x00000016 0 22 694624 0 16 00 00 00 60 99 0a 00 00 00 00 00 ....`....... +6087 18.318815708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841186 22 18 2031741 0 0x00000012 1 2031741 0 196609 0 12 00 00 00 7d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +6089 18.319032192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507280 12 -1 694624 0 0xffffffff 0 -1 694624 0 ff ff ff ff 60 99 0a 00 00 00 00 00 ....`....... +6095 18.412119389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507292 12 101 703049 0 0x00000065 0 101 703049 0 65 00 00 00 49 ba 0a 00 00 00 00 00 e...I....... +6097 18.412384033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507304 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 61 ff 01 00 00 00 00 00 ed e9 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 61 ff 01 00 00 00 00 .....!...o3.......a...............?.....3...|8.. +6099 18.412855148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841208 12 -1 703049 0 0xffffffff 0 -1 703049 0 ff ff ff ff 49 ba 0a 00 00 00 00 00 ....I....... +6101 18.413732529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841220 12 52 694625 0 0x00000034 0 52 694625 0 34 00 00 00 61 99 0a 00 00 00 00 00 4...a....... +6103 18.413981915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841232 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 61 ff 01 00 00 00 00 00 00 00 53 52 15 43 4a 01 00 00 "0...Dk.................L."".([.....a.........SR.C" +6105 18.414207458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507405 12 -1 694625 0 0xffffffff 0 -1 694625 0 ff ff ff ff 61 99 0a 00 00 00 00 00 ....a....... +6107 18.415160179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507417 12 30 703050 0 0x0000001e 0 30 703050 0 1e 00 00 00 4a ba 0a 00 00 00 00 00 ....J....... +6109 18.415362835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507429 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 8323072 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7f 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6111 18.415856600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841284 12 -1 703050 0 0xffffffff 0 -1 703050 0 ff ff ff ff 4a ba 0a 00 00 00 00 00 ....J....... +6113 18.416230917 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841296 12 26 694626 0 0x0000001a 0 26 694626 0 1a 00 00 00 62 99 0a 00 00 00 00 00 ....b....... +6115 18.416453600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841308 26 22 2031743 0 0x00000016 1 2031743 0 196609 0 16 00 00 00 7f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6117 18.416734934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507459 12 -1 694626 0 0xffffffff 0 -1 694626 0 ff ff ff ff 62 99 0a 00 00 00 00 00 ....b....... +6119 18.420229912 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507471 12 26 703051 0 0x0000001a 0 26 703051 0 1a 00 00 00 4b ba 0a 00 00 00 00 00 ....K....... +6121 18.420438528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507483 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 8454144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6123 18.420822382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841334 12 -1 703051 0 0xffffffff 0 -1 703051 0 ff ff ff ff 4b ba 0a 00 00 00 00 00 ....K....... +6125 18.421175241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841346 12 22 694627 0 0x00000016 0 22 694627 0 16 00 00 00 63 99 0a 00 00 00 00 00 ....c....... +6127 18.421334743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841358 22 18 2031745 0 0x00000012 1 2031745 0 196609 0 12 00 00 00 81 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6129 18.421511173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507509 12 -1 694627 0 0xffffffff 0 -1 694627 0 ff ff ff ff 63 99 0a 00 00 00 00 00 ....c....... +6133 18.522553921 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507521 12 26 703052 0 0x0000001a 0 26 703052 0 1a 00 00 00 4c ba 0a 00 00 00 00 00 ....L....... +6135 18.522760153 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507533 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 8585216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6137 18.523179531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841380 12 -1 703052 0 0xffffffff 0 -1 703052 0 ff ff ff ff 4c ba 0a 00 00 00 00 00 ....L....... +6139 18.523549557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841392 12 22 694628 0 0x00000016 0 22 694628 0 16 00 00 00 64 99 0a 00 00 00 00 00 ....d....... +6141 18.523705721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841404 22 18 2031747 0 0x00000012 1 2031747 0 196609 0 12 00 00 00 83 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6143 18.524007559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507559 12 -1 694628 0 0xffffffff 0 -1 694628 0 ff ff ff ff 64 99 0a 00 00 00 00 00 ....d....... +6145 18.625335693 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507571 12 26 703053 0 0x0000001a 0 26 703053 0 1a 00 00 00 4d ba 0a 00 00 00 00 00 ....M....... +6147 18.625567913 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507583 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 8716288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6149 18.625996351 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841426 12 -1 703053 0 0xffffffff 0 -1 703053 0 ff ff ff ff 4d ba 0a 00 00 00 00 00 ....M....... +6151 18.627194405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841438 12 22 694629 0 0x00000016 0 22 694629 0 16 00 00 00 65 99 0a 00 00 00 00 00 ....e....... +6153 18.627363682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841450 22 18 2031749 0 0x00000012 1 2031749 0 196609 0 12 00 00 00 85 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6155 18.627650738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507609 12 -1 694629 0 0xffffffff 0 -1 694629 0 ff ff ff ff 65 99 0a 00 00 00 00 00 ....e....... +6156 18.627825499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841472 12 -2 79840 79857 0xfffffffe 0 -2 79840 79857 fe ff ff ff e0 37 01 00 f1 37 01 00 .....7...7.. +6197 18.678141117 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507621 12 -2 79858 79840 0xfffffffe 0 -2 79858 79840 fe ff ff ff f2 37 01 00 e0 37 01 00 .....7...7.. +6206 18.717057705 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507633 12 101 703054 0 0x00000065 0 101 703054 0 65 00 00 00 4e ba 0a 00 00 00 00 00 e...N....... +6208 18.717234135 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507645 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 62 ff 01 00 00 00 00 00 1e eb 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 62 ff 01 00 00 00 00 .....!...o3.......b...............?.....3...|8.. +6210 18.717494011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841484 12 -1 703054 0 0xffffffff 0 -1 703054 0 ff ff ff ff 4e ba 0a 00 00 00 00 00 ....N....... +6212 18.718695402 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841496 12 52 694630 0 0x00000034 0 52 694630 0 34 00 00 00 66 99 0a 00 00 00 00 00 4...f....... +6214 18.718939781 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841508 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 62 ff 01 00 00 00 00 00 00 00 9d d9 43 43 4a 01 00 00 "0...Dk.................L."".([.....b...........CC" +6216 18.719259739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507746 12 -1 694630 0 0xffffffff 0 -1 694630 0 ff ff ff ff 66 99 0a 00 00 00 00 00 ....f....... +6218 18.720276833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507758 12 30 703055 0 0x0000001e 0 30 703055 0 1e 00 00 00 4f ba 0a 00 00 00 00 00 ....O....... +6220 18.720432758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507770 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 8847360 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 87 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6222 18.720907927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841560 12 -1 703055 0 0xffffffff 0 -1 703055 0 ff ff ff ff 4f ba 0a 00 00 00 00 00 ....O....... +6224 18.721230984 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841572 12 26 694631 0 0x0000001a 0 26 694631 0 1a 00 00 00 67 99 0a 00 00 00 00 00 ....g....... +6226 18.721379042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841584 26 22 2031751 0 0x00000016 1 2031751 0 196609 0 16 00 00 00 87 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6228 18.721643686 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507800 12 -1 694631 0 0xffffffff 0 -1 694631 0 ff ff ff ff 67 99 0a 00 00 00 00 00 ....g....... +6230 18.729306221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507812 12 26 703056 0 0x0000001a 0 26 703056 0 1a 00 00 00 50 ba 0a 00 00 00 00 00 ....P....... +6232 18.729460478 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507824 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 8978432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6234 18.729756832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841610 12 -1 703056 0 0xffffffff 0 -1 703056 0 ff ff ff ff 50 ba 0a 00 00 00 00 00 ....P....... +6236 18.730295658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841622 12 22 694632 0 0x00000016 0 22 694632 0 16 00 00 00 68 99 0a 00 00 00 00 00 ....h....... +6238 18.730436802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841634 22 18 2031753 0 0x00000012 1 2031753 0 196609 0 12 00 00 00 89 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6240 18.730723858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507850 12 -1 694632 0 0xffffffff 0 -1 694632 0 ff ff ff ff 68 99 0a 00 00 00 00 00 ....h....... +6261 18.832480431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507862 12 26 703057 0 0x0000001a 0 26 703057 0 1a 00 00 00 51 ba 0a 00 00 00 00 00 ....Q....... +6263 18.832659483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507874 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 9109504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6265 18.833107471 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841656 12 -1 703057 0 0xffffffff 0 -1 703057 0 ff ff ff ff 51 ba 0a 00 00 00 00 00 ....Q....... +6267 18.833582640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841668 12 22 694633 0 0x00000016 0 22 694633 0 16 00 00 00 69 99 0a 00 00 00 00 00 ....i....... +6269 18.833780050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841680 22 18 2031755 0 0x00000012 1 2031755 0 196609 0 12 00 00 00 8b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6271 18.834055662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507900 12 -1 694633 0 0xffffffff 0 -1 694633 0 ff ff ff ff 69 99 0a 00 00 00 00 00 ....i....... +6293 18.935029507 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507912 12 26 703058 0 0x0000001a 0 26 703058 0 1a 00 00 00 52 ba 0a 00 00 00 00 00 ....R....... +6295 18.935199499 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507924 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 9240576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6297 18.935690403 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841702 12 -1 703058 0 0xffffffff 0 -1 703058 0 ff ff ff ff 52 ba 0a 00 00 00 00 00 ....R....... +6299 18.936075449 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841714 12 22 694634 0 0x00000016 0 22 694634 0 16 00 00 00 6a 99 0a 00 00 00 00 00 ....j....... +6301 18.936262608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841726 22 18 2031757 0 0x00000012 1 2031757 0 196609 0 12 00 00 00 8d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6303 18.936539888 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507950 12 -1 694634 0 0xffffffff 0 -1 694634 0 ff ff ff ff 6a 99 0a 00 00 00 00 00 ....j....... +6307 19.022015572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507962 12 101 703059 0 0x00000065 0 101 703059 0 65 00 00 00 53 ba 0a 00 00 00 00 00 e...S....... +6309 19.022222757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331507974 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 63 ff 01 00 00 00 00 00 4f ec 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 63 ff 01 00 00 00 00 .....!...o3.......c.......O.......?.....3...|8.. +6311 19.022572994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841748 12 -1 703059 0 0xffffffff 0 -1 703059 0 ff ff ff ff 53 ba 0a 00 00 00 00 00 ....S....... +6313 19.023537636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841760 12 52 694635 0 0x00000034 0 52 694635 0 34 00 00 00 6b 99 0a 00 00 00 00 00 4...k....... +6315 19.023704290 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841772 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 63 ff 01 00 00 00 00 00 00 00 1a 5e 72 43 4a 01 00 00 "0...Dk.................L."".([.....c..........^rC" +6317 19.024010420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508075 12 -1 694635 0 0xffffffff 0 -1 694635 0 ff ff ff ff 6b 99 0a 00 00 00 00 00 ....k....... +6319 19.024800062 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508087 12 30 703060 0 0x0000001e 0 30 703060 0 1e 00 00 00 54 ba 0a 00 00 00 00 00 ....T....... +6321 19.024927378 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508099 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 9371648 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8f 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6323 19.025284052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841824 12 -1 703060 0 0xffffffff 0 -1 703060 0 ff ff ff ff 54 ba 0a 00 00 00 00 00 ....T....... +6325 19.025699615 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841836 12 26 694636 0 0x0000001a 0 26 694636 0 1a 00 00 00 6c 99 0a 00 00 00 00 00 ....l....... +6327 19.025859833 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841848 26 22 2031759 0 0x00000016 1 2031759 0 196609 0 16 00 00 00 8f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6329 19.026134729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508129 12 -1 694636 0 0xffffffff 0 -1 694636 0 ff ff ff ff 6c 99 0a 00 00 00 00 00 ....l....... +6331 19.037313938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508141 12 26 703061 0 0x0000001a 0 26 703061 0 1a 00 00 00 55 ba 0a 00 00 00 00 00 ....U....... +6333 19.037472010 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508153 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 9502720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6335 19.037756205 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841874 12 -1 703061 0 0xffffffff 0 -1 703061 0 ff ff ff ff 55 ba 0a 00 00 00 00 00 ....U....... +6337 19.038277864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841886 12 22 694637 0 0x00000016 0 22 694637 0 16 00 00 00 6d 99 0a 00 00 00 00 00 ....m....... +6339 19.038431644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841898 22 18 2031761 0 0x00000012 1 2031761 0 196609 0 12 00 00 00 91 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6341 19.038621902 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508179 12 -1 694637 0 0xffffffff 0 -1 694637 0 ff ff ff ff 6d 99 0a 00 00 00 00 00 ....m....... +6344 19.129133701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841920 12 -2 79841 79858 0xfffffffe 0 -2 79841 79858 fe ff ff ff e1 37 01 00 f2 37 01 00 .....7...7.. +6351 19.140439749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508191 12 26 703062 0 0x0000001a 0 26 703062 0 1a 00 00 00 56 ba 0a 00 00 00 00 00 ....V....... +6353 19.140653372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508203 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 9633792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6355 19.141138315 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841932 12 -1 703062 0 0xffffffff 0 -1 703062 0 ff ff ff ff 56 ba 0a 00 00 00 00 00 ....V....... +6357 19.141435862 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841944 12 22 694638 0 0x00000016 0 22 694638 0 16 00 00 00 6e 99 0a 00 00 00 00 00 ....n....... +6359 19.141600132 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841956 22 18 2031763 0 0x00000012 1 2031763 0 196609 0 12 00 00 00 93 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6361 19.141917229 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508229 12 -1 694638 0 0xffffffff 0 -1 694638 0 ff ff ff ff 6e 99 0a 00 00 00 00 00 ....n....... +6364 19.178971291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508241 12 -2 79859 79841 0xfffffffe 0 -2 79859 79841 fe ff ff ff f3 37 01 00 e1 37 01 00 .....7...7.. +6373 19.243351460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508253 12 26 703063 0 0x0000001a 0 26 703063 0 1a 00 00 00 57 ba 0a 00 00 00 00 00 ....W....... +6375 19.243515015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508265 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 9764864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6377 19.244006157 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841978 12 -1 703063 0 0xffffffff 0 -1 703063 0 ff ff ff ff 57 ba 0a 00 00 00 00 00 ....W....... +6379 19.244387150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375841990 12 22 694639 0 0x00000016 0 22 694639 0 16 00 00 00 6f 99 0a 00 00 00 00 00 ....o....... +6381 19.244550228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842002 22 18 2031765 0 0x00000012 1 2031765 0 196609 0 12 00 00 00 95 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6383 19.244815111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508291 12 -1 694639 0 0xffffffff 0 -1 694639 0 ff ff ff ff 6f 99 0a 00 00 00 00 00 ....o....... +6385 19.326794624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508303 12 101 703064 0 0x00000065 0 101 703064 0 65 00 00 00 58 ba 0a 00 00 00 00 00 e...X....... +6387 19.326947212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508315 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 64 ff 01 00 00 00 00 00 80 ed 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 64 ff 01 00 00 00 00 .....!...o3.......d...............?.....3...|8.. +6389 19.327365637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842024 12 -1 703064 0 0xffffffff 0 -1 703064 0 ff ff ff ff 58 ba 0a 00 00 00 00 00 ....X....... +6391 19.328127623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842036 12 52 694640 0 0x00000034 0 52 694640 0 34 00 00 00 70 99 0a 00 00 00 00 00 4...p....... +6393 19.328287125 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842048 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 64 ff 01 00 00 00 00 00 00 00 2d d8 a0 43 4a 01 00 00 "0...Dk.................L."".([.....d.........-..C" +6395 19.328558207 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508416 12 -1 694640 0 0xffffffff 0 -1 694640 0 ff ff ff ff 70 99 0a 00 00 00 00 00 ....p....... +6397 19.329325676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508428 12 30 703065 0 0x0000001e 0 30 703065 0 1e 00 00 00 59 ba 0a 00 00 00 00 00 ....Y....... +6399 19.329483747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508440 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 9895936 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6401 19.329877138 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842100 12 -1 703065 0 0xffffffff 0 -1 703065 0 ff ff ff ff 59 ba 0a 00 00 00 00 00 ....Y....... +6403 19.330443859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842112 12 26 694641 0 0x0000001a 0 26 694641 0 1a 00 00 00 71 99 0a 00 00 00 00 00 ....q....... +6405 19.330626249 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842124 26 22 2031767 0 0x00000016 1 2031767 0 196609 0 16 00 00 00 97 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6407 19.330957651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508470 12 -1 694641 0 0xffffffff 0 -1 694641 0 ff ff ff ff 71 99 0a 00 00 00 00 00 ....q....... +6413 19.346127033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508482 12 26 703066 0 0x0000001a 0 26 703066 0 1a 00 00 00 5a ba 0a 00 00 00 00 00 ....Z....... +6415 19.346288443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508494 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 10027008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6417 19.346596479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842150 12 -1 703066 0 0xffffffff 0 -1 703066 0 ff ff ff ff 5a ba 0a 00 00 00 00 00 ....Z....... +6419 19.347219467 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842162 12 22 694642 0 0x00000016 0 22 694642 0 16 00 00 00 72 99 0a 00 00 00 00 00 ....r....... +6421 19.347414732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842174 22 18 2031769 0 0x00000012 1 2031769 0 196609 0 12 00 00 00 99 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6423 19.347647429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508520 12 -1 694642 0 0xffffffff 0 -1 694642 0 ff ff ff ff 72 99 0a 00 00 00 00 00 ....r....... +6425 19.450809956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508532 12 26 703067 0 0x0000001a 0 26 703067 0 1a 00 00 00 5b ba 0a 00 00 00 00 00 ....[....... +6427 19.451032162 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508544 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 10158080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6429 19.451568127 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842196 12 -1 703067 0 0xffffffff 0 -1 703067 0 ff ff ff ff 5b ba 0a 00 00 00 00 00 ....[....... +6431 19.452046871 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842208 12 22 694643 0 0x00000016 0 22 694643 0 16 00 00 00 73 99 0a 00 00 00 00 00 ....s....... +6433 19.452207327 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842220 22 18 2031771 0 0x00000012 1 2031771 0 196609 0 12 00 00 00 9b 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6435 19.452566147 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508570 12 -1 694643 0 0xffffffff 0 -1 694643 0 ff ff ff ff 73 99 0a 00 00 00 00 00 ....s....... +6439 19.554247618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508582 12 26 703068 0 0x0000001a 0 26 703068 0 1a 00 00 00 5c ba 0a 00 00 00 00 00 ....\....... +6441 19.554426193 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508594 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 10289152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6443 19.554922342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842242 12 -1 703068 0 0xffffffff 0 -1 703068 0 ff ff ff ff 5c ba 0a 00 00 00 00 00 ....\....... +6445 19.555333614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842254 12 22 694644 0 0x00000016 0 22 694644 0 16 00 00 00 74 99 0a 00 00 00 00 00 ....t....... +6447 19.555458307 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842266 22 18 2031773 0 0x00000012 1 2031773 0 196609 0 12 00 00 00 9d 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6449 19.555681944 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508620 12 -1 694644 0 0xffffffff 0 -1 694644 0 ff ff ff ff 74 99 0a 00 00 00 00 00 ....t....... +6452 19.629365444 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842288 12 -2 79842 79859 0xfffffffe 0 -2 79842 79859 fe ff ff ff e2 37 01 00 f3 37 01 00 .....7...7.. +6455 19.630631447 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508632 12 101 703069 0 0x00000065 0 101 703069 0 65 00 00 00 5d ba 0a 00 00 00 00 00 e...]....... +6457 19.630908728 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508644 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 65 ff 01 00 00 00 00 00 af ee 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 65 ff 01 00 00 00 00 .....!...o3.......e...............?.....3...|8.. +6459 19.631224155 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842300 12 -1 703069 0 0xffffffff 0 -1 703069 0 ff ff ff ff 5d ba 0a 00 00 00 00 00 ....]....... +6461 19.633043289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842312 12 52 694645 0 0x00000034 0 52 694645 0 34 00 00 00 75 99 0a 00 00 00 00 00 4...u....... +6463 19.633207083 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842324 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 65 ff 01 00 00 00 00 00 00 00 51 5e cf 43 4a 01 00 00 "0...Dk.................L."".([.....e.........Q^.C" +6465 19.633462667 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508745 12 -1 694645 0 0xffffffff 0 -1 694645 0 ff ff ff ff 75 99 0a 00 00 00 00 00 ....u....... +6467 19.634305239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508757 12 30 703070 0 0x0000001e 0 30 703070 0 1e 00 00 00 5e ba 0a 00 00 00 00 00 ....^....... +6469 19.634463787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508769 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 10420224 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6471 19.634826422 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842376 12 -1 703070 0 0xffffffff 0 -1 703070 0 ff ff ff ff 5e ba 0a 00 00 00 00 00 ....^....... +6477 19.635366440 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842388 12 26 694646 0 0x0000001a 0 26 694646 0 1a 00 00 00 76 99 0a 00 00 00 00 00 ....v....... +6479 19.635576487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842400 26 22 2031775 0 0x00000016 1 2031775 0 196609 0 16 00 00 00 9f 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6481 19.635830879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508799 12 -1 694646 0 0xffffffff 0 -1 694646 0 ff ff ff ff 76 99 0a 00 00 00 00 00 ....v....... +6483 19.657265902 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508811 12 26 703071 0 0x0000001a 0 26 703071 0 1a 00 00 00 5f ba 0a 00 00 00 00 00 ...._....... +6485 19.657465935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508823 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 10551296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6487 19.657866478 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842426 12 -1 703071 0 0xffffffff 0 -1 703071 0 ff ff ff ff 5f ba 0a 00 00 00 00 00 ...._....... +6489 19.658228159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842438 12 22 694647 0 0x00000016 0 22 694647 0 16 00 00 00 77 99 0a 00 00 00 00 00 ....w....... +6491 19.658385754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842450 22 18 2031777 0 0x00000012 1 2031777 0 196609 0 12 00 00 00 a1 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6493 19.658720255 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508849 12 -1 694647 0 0xffffffff 0 -1 694647 0 ff ff ff ff 77 99 0a 00 00 00 00 00 ....w....... +6496 19.681012392 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508861 12 -2 79860 79842 0xfffffffe 0 -2 79860 79842 fe ff ff ff f4 37 01 00 e2 37 01 00 .....7...7.. +6505 19.759926796 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508873 12 26 703072 0 0x0000001a 0 26 703072 0 1a 00 00 00 60 ba 0a 00 00 00 00 00 ....`....... +6507 19.760112762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508885 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 10682368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6509 19.760636806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842472 12 -1 703072 0 0xffffffff 0 -1 703072 0 ff ff ff ff 60 ba 0a 00 00 00 00 00 ....`....... +6511 19.761119843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842484 12 22 694648 0 0x00000016 0 22 694648 0 16 00 00 00 78 99 0a 00 00 00 00 00 ....x....... +6513 19.761354923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842496 22 18 2031779 0 0x00000012 1 2031779 0 196609 0 12 00 00 00 a3 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6515 19.761663675 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508911 12 -1 694648 0 0xffffffff 0 -1 694648 0 ff ff ff ff 78 99 0a 00 00 00 00 00 ....x....... +6521 19.863322735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508923 12 26 703073 0 0x0000001a 0 26 703073 0 1a 00 00 00 61 ba 0a 00 00 00 00 00 ....a....... +6523 19.863505602 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508935 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 10813440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6525 19.863890648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842518 12 -1 703073 0 0xffffffff 0 -1 703073 0 ff ff ff ff 61 ba 0a 00 00 00 00 00 ....a....... +6527 19.864600420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842530 12 22 694649 0 0x00000016 0 22 694649 0 16 00 00 00 79 99 0a 00 00 00 00 00 ....y....... +6529 19.864783049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842542 22 18 2031781 0 0x00000012 1 2031781 0 196609 0 12 00 00 00 a5 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6531 19.865003347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508961 12 -1 694649 0 0xffffffff 0 -1 694649 0 ff ff ff ff 79 99 0a 00 00 00 00 00 ....y....... +6535 19.935593367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508973 12 34 703074 0 0x00000022 0 34 703074 0 22 00 00 00 62 ba 0a 00 00 00 00 00 """...b......." +6537 19.935754061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331508985 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -10092544 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 66 ff 01 00 00 00 00 00 e1 ef 0d c3 9d 01 00 00 .....!...o3.......f............... +6539 19.935919285 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509019 12 67 703075 0 0x00000043 0 67 703075 0 43 00 00 00 63 ba 0a 00 00 00 00 00 C...c....... +6541 19.936004162 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509031 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 66 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 50 9a 8c 69 8b ?.....3...|8...........f.......=B.....&......... +6543 19.936175108 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842564 12 -1 703074 0 0xffffffff 0 -1 703074 0 ff ff ff ff 62 ba 0a 00 00 00 00 00 ....b....... +6545 19.936432362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842576 12 -1 703075 0 0xffffffff 0 -1 703075 0 ff ff ff ff 63 ba 0a 00 00 00 00 00 ....c....... +6547 19.937446117 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842588 12 52 694650 0 0x00000034 0 52 694650 0 34 00 00 00 7a 99 0a 00 00 00 00 00 4...z....... +6549 19.938115597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842600 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 66 ff 01 00 00 00 00 00 00 00 38 cd fd 43 4a 01 00 00 "0...Dk.................L."".([.....f.........8..C" +6551 19.938531876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509098 12 -1 694650 0 0xffffffff 0 -1 694650 0 ff ff ff ff 7a 99 0a 00 00 00 00 00 ....z....... +6553 19.939696312 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509110 12 30 703076 0 0x0000001e 0 30 703076 0 1e 00 00 00 64 ba 0a 00 00 00 00 00 ....d....... +6555 19.939882755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509122 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 10944512 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6557 19.940331459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842652 12 -1 703076 0 0xffffffff 0 -1 703076 0 ff ff ff ff 64 ba 0a 00 00 00 00 00 ....d....... +6559 19.940906763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842664 12 26 694651 0 0x0000001a 0 26 694651 0 1a 00 00 00 7b 99 0a 00 00 00 00 00 ....{....... +6561 19.941170692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842676 26 22 2031783 0 0x00000016 1 2031783 0 196609 0 16 00 00 00 a7 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6563 19.941505432 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509152 12 -1 694651 0 0xffffffff 0 -1 694651 0 ff ff ff ff 7b 99 0a 00 00 00 00 00 ....{....... +6565 19.967327356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509164 12 26 703077 0 0x0000001a 0 26 703077 0 1a 00 00 00 65 ba 0a 00 00 00 00 00 ....e....... +6567 19.967809677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509176 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 11075584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6569 19.968189955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842702 12 -1 703077 0 0xffffffff 0 -1 703077 0 ff ff ff ff 65 ba 0a 00 00 00 00 00 ....e....... +6571 19.968672037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842714 12 22 694652 0 0x00000016 0 22 694652 0 16 00 00 00 7c 99 0a 00 00 00 00 00 ....|....... +6573 19.968873024 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842726 22 18 2031785 0 0x00000012 1 2031785 0 196609 0 12 00 00 00 a9 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6575 19.969130754 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509202 12 -1 694652 0 0xffffffff 0 -1 694652 0 ff ff ff ff 7c 99 0a 00 00 00 00 00 ....|....... +6579 20.070459604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509214 12 26 703078 0 0x0000001a 0 26 703078 0 1a 00 00 00 66 ba 0a 00 00 00 00 00 ....f....... +6581 20.070724964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509226 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 11206656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6583 20.071100473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842748 12 -1 703078 0 0xffffffff 0 -1 703078 0 ff ff ff ff 66 ba 0a 00 00 00 00 00 ....f....... +6585 20.071595430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842760 12 22 694653 0 0x00000016 0 22 694653 0 16 00 00 00 7d 99 0a 00 00 00 00 00 ....}....... +6587 20.071860313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842772 22 18 2031787 0 0x00000012 1 2031787 0 196609 0 12 00 00 00 ab 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6589 20.072203159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509252 12 -1 694653 0 0xffffffff 0 -1 694653 0 ff ff ff ff 7d 99 0a 00 00 00 00 00 ....}....... +6599 20.129324436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842794 12 -2 79843 79860 0xfffffffe 0 -2 79843 79860 fe ff ff ff e3 37 01 00 f4 37 01 00 .....7...7.. +6629 20.173242807 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509264 12 26 703079 0 0x0000001a 0 26 703079 0 1a 00 00 00 67 ba 0a 00 00 00 00 00 ....g....... +6631 20.173416853 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509276 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 11337728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6633 20.173789740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842806 12 -1 703079 0 0xffffffff 0 -1 703079 0 ff ff ff ff 67 ba 0a 00 00 00 00 00 ....g....... +6635 20.174293995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842818 12 22 694654 0 0x00000016 0 22 694654 0 16 00 00 00 7e 99 0a 00 00 00 00 00 ....~....... +6637 20.174439907 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842830 22 18 2031789 0 0x00000012 1 2031789 0 196609 0 12 00 00 00 ad 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6639 20.174650431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509302 12 -1 694654 0 0xffffffff 0 -1 694654 0 ff ff ff ff 7e 99 0a 00 00 00 00 00 ....~....... +6641 20.181952953 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509314 12 -2 79861 79843 0xfffffffe 0 -2 79861 79843 fe ff ff ff f5 37 01 00 e3 37 01 00 .....7...7.. +6651 20.241624355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509326 12 101 703080 0 0x00000065 0 101 703080 0 65 00 00 00 68 ba 0a 00 00 00 00 00 e...h....... +6653 20.241803408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509338 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 ff 01 00 00 00 00 00 12 f1 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 67 ff 01 00 00 00 00 .....!...o3.......g...............?.....3...|8.. +6655 20.242135763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842852 12 -1 703080 0 0xffffffff 0 -1 703080 0 ff ff ff ff 68 ba 0a 00 00 00 00 00 ....h....... +6657 20.242817640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842864 12 52 694655 0 0x00000034 0 52 694655 0 34 00 00 00 7f 99 0a 00 00 00 00 00 4........... +6659 20.242969275 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842876 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 67 ff 01 00 00 00 00 00 00 00 ef 6a 2c 44 4a 01 00 00 "0...Dk.................L."".([.....g..........j,D" +6661 20.243268013 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509439 12 -1 694655 0 0xffffffff 0 -1 694655 0 ff ff ff ff 7f 99 0a 00 00 00 00 00 ............ +6663 20.244065523 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509451 12 30 703081 0 0x0000001e 0 30 703081 0 1e 00 00 00 69 ba 0a 00 00 00 00 00 ....i....... +6665 20.244212866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509463 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 11468800 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6667 20.244477749 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842928 12 -1 703081 0 0xffffffff 0 -1 703081 0 ff ff ff ff 69 ba 0a 00 00 00 00 00 ....i....... +6669 20.245062351 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842940 12 26 694656 0 0x0000001a 0 26 694656 0 1a 00 00 00 80 99 0a 00 00 00 00 00 ............ +6671 20.245304585 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842952 26 22 2031791 0 0x00000016 1 2031791 0 196609 0 16 00 00 00 af 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6673 20.245580435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509493 12 -1 694656 0 0xffffffff 0 -1 694656 0 ff ff ff ff 80 99 0a 00 00 00 00 00 ............ +6675 20.276078701 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509505 12 26 703082 0 0x0000001a 0 26 703082 0 1a 00 00 00 6a ba 0a 00 00 00 00 00 ....j....... +6677 20.276266336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509517 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 11599872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6679 20.276646852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842978 12 -1 703082 0 0xffffffff 0 -1 703082 0 ff ff ff ff 6a ba 0a 00 00 00 00 00 ....j....... +6681 20.277217627 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375842990 12 22 694657 0 0x00000016 0 22 694657 0 16 00 00 00 81 99 0a 00 00 00 00 00 ............ +6683 20.277366400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843002 22 18 2031793 0 0x00000012 1 2031793 0 196609 0 12 00 00 00 b1 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6685 20.277673244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509543 12 -1 694657 0 0xffffffff 0 -1 694657 0 ff ff ff ff 81 99 0a 00 00 00 00 00 ............ +6691 20.379181862 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509555 12 26 703083 0 0x0000001a 0 26 703083 0 1a 00 00 00 6b ba 0a 00 00 00 00 00 ....k....... +6693 20.379410505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509567 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 11730944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6695 20.379719973 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843024 12 -1 703083 0 0xffffffff 0 -1 703083 0 ff ff ff ff 6b ba 0a 00 00 00 00 00 ....k....... +6697 20.382533550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843036 12 22 694658 0 0x00000016 0 22 694658 0 16 00 00 00 82 99 0a 00 00 00 00 00 ............ +6699 20.382771730 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843048 22 18 2031795 0 0x00000012 1 2031795 0 196609 0 12 00 00 00 b3 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6701 20.383027792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509593 12 -1 694658 0 0xffffffff 0 -1 694658 0 ff ff ff ff 82 99 0a 00 00 00 00 00 ............ +6703 20.485358477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509605 12 26 703084 0 0x0000001a 0 26 703084 0 1a 00 00 00 6c ba 0a 00 00 00 00 00 ....l....... +6705 20.485549212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509617 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 11862016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6707 20.485939264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843070 12 -1 703084 0 0xffffffff 0 -1 703084 0 ff ff ff ff 6c ba 0a 00 00 00 00 00 ....l....... +6709 20.486490250 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843082 12 22 694659 0 0x00000016 0 22 694659 0 16 00 00 00 83 99 0a 00 00 00 00 00 ............ +6711 20.486711502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843094 22 18 2031797 0 0x00000012 1 2031797 0 196609 0 12 00 00 00 b5 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6713 20.486935616 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509643 12 -1 694659 0 0xffffffff 0 -1 694659 0 ff ff ff ff 83 99 0a 00 00 00 00 00 ............ +6717 20.545000553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509655 12 101 703085 0 0x00000065 0 101 703085 0 65 00 00 00 6d ba 0a 00 00 00 00 00 e...m....... +6719 20.545162201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509667 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 ff 01 00 00 00 00 00 42 f2 0d c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 68 ff 01 00 00 00 00 .....!...o3.......h.......B.......?.....3...|8.. +6721 20.545481920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843116 12 -1 703085 0 0xffffffff 0 -1 703085 0 ff ff ff ff 6d ba 0a 00 00 00 00 00 ....m....... +6723 20.546658278 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843128 12 52 694660 0 0x00000034 0 52 694660 0 34 00 00 00 84 99 0a 00 00 00 00 00 4........... +6725 20.546928167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843140 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 68 ff 01 00 00 00 00 00 00 00 a7 c0 5a 44 4a 01 00 00 "0...Dk.................L."".([.....h...........ZD" +6727 20.547220230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509768 12 -1 694660 0 0xffffffff 0 -1 694660 0 ff ff ff ff 84 99 0a 00 00 00 00 00 ............ +6729 20.548420906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509780 12 30 703086 0 0x0000001e 0 30 703086 0 1e 00 00 00 6e ba 0a 00 00 00 00 00 ....n....... +6731 20.548581839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509792 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 11993088 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6733 20.548896790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843192 12 -1 703086 0 0xffffffff 0 -1 703086 0 ff ff ff ff 6e ba 0a 00 00 00 00 00 ....n....... +6735 20.549303532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843204 12 26 694661 0 0x0000001a 0 26 694661 0 1a 00 00 00 85 99 0a 00 00 00 00 00 ............ +6737 20.549513817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843216 26 22 2031799 0 0x00000016 1 2031799 0 196609 0 16 00 00 00 b7 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6739 20.549777031 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509822 12 -1 694661 0 0xffffffff 0 -1 694661 0 ff ff ff ff 85 99 0a 00 00 00 00 00 ............ +6741 20.588351488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509834 12 26 703087 0 0x0000001a 0 26 703087 0 1a 00 00 00 6f ba 0a 00 00 00 00 00 ....o....... +6743 20.588551283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509846 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 12124160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6745 20.588768959 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843242 12 -1 703087 0 0xffffffff 0 -1 703087 0 ff ff ff ff 6f ba 0a 00 00 00 00 00 ....o....... +6747 20.589247227 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843254 12 22 694662 0 0x00000016 0 22 694662 0 16 00 00 00 86 99 0a 00 00 00 00 00 ............ +6749 20.589437962 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843266 22 18 2031801 0 0x00000012 1 2031801 0 196609 0 12 00 00 00 b9 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6751 20.589706182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509872 12 -1 694662 0 0xffffffff 0 -1 694662 0 ff ff ff ff 86 99 0a 00 00 00 00 00 ............ +6754 20.629519224 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843288 12 -2 79844 79861 0xfffffffe 0 -2 79844 79861 fe ff ff ff e4 37 01 00 f5 37 01 00 .....7...7.. +6762 20.683646441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509884 12 -2 79862 79844 0xfffffffe 0 -2 79862 79844 fe ff ff ff f6 37 01 00 e4 37 01 00 .....7...7.. +6765 20.691862345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509896 12 26 703088 0 0x0000001a 0 26 703088 0 1a 00 00 00 70 ba 0a 00 00 00 00 00 ....p....... +6767 20.692080259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509908 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 12255232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6769 20.692598820 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843300 12 -1 703088 0 0xffffffff 0 -1 703088 0 ff ff ff ff 70 ba 0a 00 00 00 00 00 ....p....... +6771 20.692992210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843312 12 22 694663 0 0x00000016 0 22 694663 0 16 00 00 00 87 99 0a 00 00 00 00 00 ............ +6773 20.693169355 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843324 22 18 2031803 0 0x00000012 1 2031803 0 196609 0 12 00 00 00 bb 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6775 20.693544865 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509934 12 -1 694663 0 0xffffffff 0 -1 694663 0 ff ff ff ff 87 99 0a 00 00 00 00 00 ............ +6783 20.794556379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509946 12 26 703089 0 0x0000001a 0 26 703089 0 1a 00 00 00 71 ba 0a 00 00 00 00 00 ....q....... +6785 20.794732332 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509958 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 12386304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6787 20.795167208 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843346 12 -1 703089 0 0xffffffff 0 -1 703089 0 ff ff ff ff 71 ba 0a 00 00 00 00 00 ....q....... +6789 20.795670748 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843358 12 22 694664 0 0x00000016 0 22 694664 0 16 00 00 00 88 99 0a 00 00 00 00 00 ............ +6791 20.795939922 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843370 22 18 2031805 0 0x00000012 1 2031805 0 196609 0 12 00 00 00 bd 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6793 20.796217442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509984 12 -1 694664 0 0xffffffff 0 -1 694664 0 ff ff ff ff 88 99 0a 00 00 00 00 00 ............ +6799 20.850795031 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331509996 12 34 703090 0 0x00000022 0 34 703090 0 22 00 00 00 72 ba 0a 00 00 00 00 00 """...r......." +6801 20.850960970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510008 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -9895936 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 69 ff 01 00 00 00 00 00 74 f3 0d c3 9d 01 00 00 .....!...o3.......i.......t....... +6803 20.851045370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510042 12 67 703091 0 0x00000043 0 67 703091 0 43 00 00 00 73 ba 0a 00 00 00 00 00 C...s....... +6805 20.851126194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510054 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 69 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c fd 0d a0 8b ?.....3...|8...........i.......=B.....&......... +6807 20.851346254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843392 12 -1 703090 0 0xffffffff 0 -1 703090 0 ff ff ff ff 72 ba 0a 00 00 00 00 00 ....r....... +6809 20.851562738 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843404 12 -1 703091 0 0xffffffff 0 -1 703091 0 ff ff ff ff 73 ba 0a 00 00 00 00 00 ....s....... +6811 20.852606535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843416 12 52 694665 0 0x00000034 0 52 694665 0 34 00 00 00 89 99 0a 00 00 00 00 00 4........... +6813 20.852813244 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843428 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 69 ff 01 00 00 00 00 00 00 00 a3 6b 89 44 4a 01 00 00 "0...Dk.................L."".([.....i..........k.D" +6815 20.853117704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510121 12 -1 694665 0 0xffffffff 0 -1 694665 0 ff ff ff ff 89 99 0a 00 00 00 00 00 ............ +6817 20.853947639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510133 12 30 703092 0 0x0000001e 0 30 703092 0 1e 00 00 00 74 ba 0a 00 00 00 00 00 ....t....... +6819 20.854068995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510145 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 12517376 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 00 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6821 20.854334831 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843480 12 -1 703092 0 0xffffffff 0 -1 703092 0 ff ff ff ff 74 ba 0a 00 00 00 00 00 ....t....... +6823 20.856101751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843492 12 26 694666 0 0x0000001a 0 26 694666 0 1a 00 00 00 8a 99 0a 00 00 00 00 00 ............ +6825 20.856286049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843504 26 22 2031807 0 0x00000016 1 2031807 0 196609 0 16 00 00 00 bf 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6827 20.856514692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510175 12 -1 694666 0 0xffffffff 0 -1 694666 0 ff ff ff ff 8a 99 0a 00 00 00 00 00 ............ +6829 20.898815155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510187 12 26 703093 0 0x0000001a 0 26 703093 0 1a 00 00 00 75 ba 0a 00 00 00 00 00 ....u....... +6831 20.899129391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510199 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 12648448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6833 20.899599314 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843530 12 -1 703093 0 0xffffffff 0 -1 703093 0 ff ff ff ff 75 ba 0a 00 00 00 00 00 ....u....... +6835 20.900876522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843542 12 22 694667 0 0x00000016 0 22 694667 0 16 00 00 00 8b 99 0a 00 00 00 00 00 ............ +6837 20.901170254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843554 22 18 2031809 0 0x00000012 1 2031809 0 196609 0 12 00 00 00 c1 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6839 20.901429653 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510225 12 -1 694667 0 0xffffffff 0 -1 694667 0 ff ff ff ff 8b 99 0a 00 00 00 00 00 ............ +6841 21.003426075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510237 12 26 703094 0 0x0000001a 0 26 703094 0 1a 00 00 00 76 ba 0a 00 00 00 00 00 ....v....... +6843 21.003612757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510249 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 12779520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 00 1f 00 00 00 00 00 ....T.c@.^1@.............. +6845 21.003997087 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843576 12 -1 703094 0 0xffffffff 0 -1 703094 0 ff ff ff ff 76 ba 0a 00 00 00 00 00 ....v....... +6847 21.004608631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843588 12 22 694668 0 0x00000016 0 22 694668 0 16 00 00 00 8c 99 0a 00 00 00 00 00 ............ +6849 21.004933596 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375843600 22 18 2031811 0 0x00000012 1 2031811 0 196609 0 12 00 00 00 c3 00 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6851 21.005269527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510275 12 -1 694668 0 0xffffffff 0 -1 694668 0 ff ff ff ff 8c 99 0a 00 00 00 00 00 ............ +6855 21.106253862 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331510287 12 26 703095 0 0x0000001a 0 26 703095 0 1a 00 00 00 77 ba 0a 00 00 00 00 00 ....w....... diff --git a/captures/013-loopback-subscribe-scalars/tcp-payload-packets.tsv b/captures/013-loopback-subscribe-scalars/tcp-payload-packets.tsv new file mode 100644 index 0000000..3099ea1 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/tcp-payload-packets.tsv @@ -0,0 +1,2683 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +3 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3331486956 12 1a0000000ab90a0000000000 ............ +5 0.000163317 127.0.0.1:57415 127.0.0.1:57433 3331486968 26 16000000548f6340e25e3140010003000000a3fe1e0000000000 ....T.c@.^1@.............. +7 0.000452518 127.0.0.1:57433 127.0.0.1:57415 375824764 12 ffffffff0ab90a0000000000 ............ +9 0.001082182 127.0.0.1:57433 127.0.0.1:57415 375824776 12 1600000037980a0000000000 ....7....... +11 0.001294136 127.0.0.1:57433 127.0.0.1:57415 375824788 22 12000000a3fe1e000000000001000300000000000000 ...................... +13 0.001641750 127.0.0.1:57415 127.0.0.1:57433 3331486994 12 ffffffff37980a0000000000 ....7....... +16 0.097028494 127.0.0.1:57433 127.0.0.1:57415 375824810 12 feffffffbb370100cc370100 .....7...7.. +21 0.104195833 127.0.0.1:57415 127.0.0.1:57433 3331487006 12 1a0000000bb90a0000000000 ............ +23 0.104389191 127.0.0.1:57415 127.0.0.1:57433 3331487018 26 16000000548f6340e25e3140010003000000a5fe1e0000000000 ....T.c@.^1@.............. +25 0.104698181 127.0.0.1:57433 127.0.0.1:57415 375824822 12 ffffffff0bb90a0000000000 ............ +27 0.105268955 127.0.0.1:57433 127.0.0.1:57415 375824834 12 1600000038980a0000000000 ....8....... +29 0.105516672 127.0.0.1:57433 127.0.0.1:57415 375824846 22 12000000a5fe1e000000000001000300000000000000 ...................... +31 0.105795622 127.0.0.1:57415 127.0.0.1:57433 3331487044 12 ffffffff38980a0000000000 ....8....... +41 0.115432262 127.0.0.1:57415 127.0.0.1:57433 3331487056 12 650000000cb90a0000000000 e........... +44 0.115621805 127.0.0.1:57415 127.0.0.1:57433 3331487068 101 1e0000001c2118d0c46f33bb01000300000025ff01000000000074a20dc39d01 .....!...o3.......%.......t.......?.....3...|8.. +46 0.115892172 127.0.0.1:57433 127.0.0.1:57415 375824868 12 ffffffff0cb90a0000000000 ............ +49 0.116867065 127.0.0.1:57433 127.0.0.1:57415 375824880 12 3400000039980a0000000000 4...9....... +54 0.117046595 127.0.0.1:57433 127.0.0.1:57415 375824892 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....%.........bq-8 +56 0.117314577 127.0.0.1:57415 127.0.0.1:57433 3331487169 12 ffffffff39980a0000000000 ....9....... +62 0.118206024 127.0.0.1:57415 127.0.0.1:57433 3331487181 12 1e0000000db90a0000000000 ............ +65 0.118353844 127.0.0.1:57415 127.0.0.1:57433 3331487193 30 1a00000055ceff62b21b3a50010003000000a7fe1e000000000000000000 ....U..b..:P.................. +67 0.118670940 127.0.0.1:57433 127.0.0.1:57415 375824944 12 ffffffff0db90a0000000000 ............ +70 0.119089842 127.0.0.1:57433 127.0.0.1:57415 375824956 12 1a0000003a980a0000000000 ....:....... +73 0.119377851 127.0.0.1:57433 127.0.0.1:57415 375824968 26 16000000a7fe1e00000000000100030000000000000000000000 .......................... +75 0.119767427 127.0.0.1:57415 127.0.0.1:57433 3331487223 12 ffffffff3a980a0000000000 ....:....... +89 0.138702393 127.0.0.1:57415 127.0.0.1:57433 3331487235 12 feffffffcd370100bb370100 .....7...7.. +99 0.207998991 127.0.0.1:57415 127.0.0.1:57433 3331487247 12 1a0000000eb90a0000000000 ............ +101 0.208166838 127.0.0.1:57415 127.0.0.1:57433 3331487259 26 16000000548f6340e25e3140010003000000a9fe1e0000000000 ....T.c@.^1@.............. +103 0.208527565 127.0.0.1:57433 127.0.0.1:57415 375824994 12 ffffffff0eb90a0000000000 ............ +105 0.209092140 127.0.0.1:57433 127.0.0.1:57415 375825006 12 160000003b980a0000000000 ....;....... +107 0.209255219 127.0.0.1:57433 127.0.0.1:57415 375825018 22 12000000a9fe1e000000000001000300000000000000 ...................... +109 0.209585667 127.0.0.1:57415 127.0.0.1:57433 3331487285 12 ffffffff3b980a0000000000 ....;....... +126 0.312157869 127.0.0.1:57415 127.0.0.1:57433 3331487297 12 1a0000000fb90a0000000000 ............ +128 0.312380552 127.0.0.1:57415 127.0.0.1:57433 3331487309 26 16000000548f6340e25e3140010003000000abfe1e0000000000 ....T.c@.^1@.............. +130 0.312788963 127.0.0.1:57433 127.0.0.1:57415 375825040 12 ffffffff0fb90a0000000000 ............ +132 0.313316345 127.0.0.1:57433 127.0.0.1:57415 375825052 12 160000003c980a0000000000 ....<....... +134 0.313554764 127.0.0.1:57433 127.0.0.1:57415 375825064 22 12000000abfe1e000000000001000300000000000000 ...................... +136 0.313904047 127.0.0.1:57415 127.0.0.1:57433 3331487335 12 ffffffff3c980a0000000000 ....<....... +138 0.415071487 127.0.0.1:57415 127.0.0.1:57433 3331487347 12 1a00000010b90a0000000000 ............ +140 0.415252686 127.0.0.1:57415 127.0.0.1:57433 3331487359 26 16000000548f6340e25e3140010003000000adfe1e0000000000 ....T.c@.^1@.............. +142 0.415771484 127.0.0.1:57433 127.0.0.1:57415 375825086 12 ffffffff10b90a0000000000 ............ +144 0.416332245 127.0.0.1:57433 127.0.0.1:57415 375825098 12 160000003d980a0000000000 ....=....... +146 0.416581869 127.0.0.1:57433 127.0.0.1:57415 375825110 22 12000000adfe1e000000000001000300000000000000 ...................... +148 0.416859627 127.0.0.1:57415 127.0.0.1:57433 3331487385 12 ffffffff3d980a0000000000 ....=....... +150 0.419367313 127.0.0.1:57415 127.0.0.1:57433 3331487397 12 2200000011b90a0000000000 "........... +152 0.419558048 127.0.0.1:57415 127.0.0.1:57433 3331487409 34 1e0000001c2118d0c46f33bb01000300000026ff010000000000a4a30dc39d01 .....!...o3.......&............... +154 0.419649363 127.0.0.1:57415 127.0.0.1:57433 3331487443 12 4300000012b90a0000000000 C........... +156 0.419757366 127.0.0.1:57415 127.0.0.1:57433 3331487455 67 3f000000980433cb0cb47c38010003000000010000000026ff0100000000003d ?.....3...|8...........&.......=B.....&......... +157 0.419851542 127.0.0.1:57433 127.0.0.1:57415 375825132 12 ffffffff11b90a0000000000 ............ +159 0.420154333 127.0.0.1:57433 127.0.0.1:57415 375825144 12 ffffffff12b90a0000000000 ............ +161 0.421870708 127.0.0.1:57433 127.0.0.1:57415 375825156 12 340000003e980a0000000000 4...>....... +163 0.422058821 127.0.0.1:57433 127.0.0.1:57415 375825168 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....&...........[8 +165 0.422499895 127.0.0.1:57415 127.0.0.1:57433 3331487522 12 ffffffff3e980a0000000000 ....>....... +167 0.423613787 127.0.0.1:57415 127.0.0.1:57433 3331487534 12 1e00000013b90a0000000000 ............ +169 0.423835993 127.0.0.1:57415 127.0.0.1:57433 3331487546 30 1a00000055ceff62b21b3a50010003000000affe1e000000000000000000 ....U..b..:P.................. +171 0.424252272 127.0.0.1:57433 127.0.0.1:57415 375825220 12 ffffffff13b90a0000000000 ............ +173 0.424923658 127.0.0.1:57433 127.0.0.1:57415 375825232 12 1a0000003f980a0000000000 ....?....... +175 0.425133705 127.0.0.1:57433 127.0.0.1:57415 375825244 26 16000000affe1e00000000000100030000000000000000000000 .......................... +177 0.425496101 127.0.0.1:57415 127.0.0.1:57433 3331487576 12 ffffffff3f980a0000000000 ....?....... +181 0.518162727 127.0.0.1:57415 127.0.0.1:57433 3331487588 12 1a00000014b90a0000000000 ............ +183 0.518343925 127.0.0.1:57415 127.0.0.1:57433 3331487600 26 16000000548f6340e25e3140010003000000b1fe1e0000000000 ....T.c@.^1@.............. +185 0.518838167 127.0.0.1:57433 127.0.0.1:57415 375825270 12 ffffffff14b90a0000000000 ............ +187 0.519228697 127.0.0.1:57433 127.0.0.1:57415 375825282 12 1600000040980a0000000000 ....@....... +189 0.519505024 127.0.0.1:57433 127.0.0.1:57415 375825294 22 12000000b1fe1e000000000001000300000000000000 ...................... +191 0.519782543 127.0.0.1:57415 127.0.0.1:57433 3331487626 12 ffffffff40980a0000000000 ....@....... +193 0.599744558 127.0.0.1:57433 127.0.0.1:57415 375825316 12 feffffffbc370100cd370100 .....7...7.. +201 0.622550488 127.0.0.1:57415 127.0.0.1:57433 3331487638 12 1a00000015b90a0000000000 ............ +203 0.622774363 127.0.0.1:57415 127.0.0.1:57433 3331487650 26 16000000548f6340e25e3140010003000000b3fe1e0000000000 ....T.c@.^1@.............. +205 0.623008013 127.0.0.1:57433 127.0.0.1:57415 375825328 12 ffffffff15b90a0000000000 ............ +207 0.624142647 127.0.0.1:57433 127.0.0.1:57415 375825340 12 1600000041980a0000000000 ....A....... +209 0.624346972 127.0.0.1:57433 127.0.0.1:57415 375825352 22 12000000b3fe1e000000000001000300000000000000 ...................... +211 0.624691725 127.0.0.1:57415 127.0.0.1:57433 3331487676 12 ffffffff41980a0000000000 ....A....... +213 0.639738560 127.0.0.1:57415 127.0.0.1:57433 3331487688 12 feffffffce370100bc370100 .....7...7.. +223 0.726078987 127.0.0.1:57415 127.0.0.1:57433 3331487700 12 1a00000016b90a0000000000 ............ +225 0.726269007 127.0.0.1:57415 127.0.0.1:57433 3331487712 26 16000000548f6340e25e3140010003000000b5fe1e0000000000 ....T.c@.^1@.............. +227 0.726360559 127.0.0.1:57415 127.0.0.1:57433 3331487738 12 6500000017b90a0000000000 e........... +229 0.726485014 127.0.0.1:57415 127.0.0.1:57433 3331487750 101 1e0000001c2118d0c46f33bb01000300000027ff010000000000d7a40dc39d01 .....!...o3.......'...............?.....3...|8.. +231 0.726681709 127.0.0.1:57433 127.0.0.1:57415 375825374 12 ffffffff16b90a0000000000 ............ +233 0.726940155 127.0.0.1:57433 127.0.0.1:57415 375825386 12 ffffffff17b90a0000000000 ............ +235 0.727233887 127.0.0.1:57433 127.0.0.1:57415 375825398 12 1600000042980a0000000000 ....B....... +237 0.727395296 127.0.0.1:57433 127.0.0.1:57415 375825410 22 12000000b5fe1e000000000001000300000000000000 ...................... +239 0.727807760 127.0.0.1:57433 127.0.0.1:57415 375825432 12 3400000043980a0000000000 4...C....... +240 0.727820635 127.0.0.1:57415 127.0.0.1:57433 3331487851 12 ffffffff42980a0000000000 ....B....... +241 0.727929354 127.0.0.1:57433 127.0.0.1:57415 375825444 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....'........."..8 +244 0.728035927 127.0.0.1:57415 127.0.0.1:57433 3331487863 12 ffffffff43980a0000000000 ....C....... +246 0.728932142 127.0.0.1:57415 127.0.0.1:57433 3331487875 12 1e00000018b90a0000000000 ............ +248 0.729093790 127.0.0.1:57415 127.0.0.1:57433 3331487887 30 1a00000055ceff62b21b3a50010003000000b7fe1e000000000000000000 ....U..b..:P.................. +250 0.729329348 127.0.0.1:57433 127.0.0.1:57415 375825496 12 ffffffff18b90a0000000000 ............ +252 0.729888439 127.0.0.1:57433 127.0.0.1:57415 375825508 12 1a00000044980a0000000000 ....D....... +254 0.730063677 127.0.0.1:57433 127.0.0.1:57415 375825520 26 16000000b7fe1e00000000000100030000000000000000000000 .......................... +256 0.730309248 127.0.0.1:57415 127.0.0.1:57433 3331487917 12 ffffffff44980a0000000000 ....D....... +262 0.829255819 127.0.0.1:57415 127.0.0.1:57433 3331487929 12 1a00000019b90a0000000000 ............ +264 0.829479694 127.0.0.1:57415 127.0.0.1:57433 3331487941 26 16000000548f6340e25e3140010003000000b9fe1e0000000000 ....T.c@.^1@.............. +266 0.829847336 127.0.0.1:57433 127.0.0.1:57415 375825546 12 ffffffff19b90a0000000000 ............ +268 0.830766201 127.0.0.1:57433 127.0.0.1:57415 375825558 12 1600000045980a0000000000 ....E....... +270 0.830978870 127.0.0.1:57433 127.0.0.1:57415 375825570 22 12000000b9fe1e000000000001000300000000000000 ...................... +272 0.831318140 127.0.0.1:57415 127.0.0.1:57433 3331487967 12 ffffffff45980a0000000000 ....E....... +274 0.933066368 127.0.0.1:57415 127.0.0.1:57433 3331487979 12 1a0000001ab90a0000000000 ............ +276 0.933256149 127.0.0.1:57415 127.0.0.1:57433 3331487991 26 16000000548f6340e25e3140010003000000bbfe1e0000000000 ....T.c@.^1@.............. +278 0.933709145 127.0.0.1:57433 127.0.0.1:57415 375825592 12 ffffffff1ab90a0000000000 ............ +280 0.934539080 127.0.0.1:57433 127.0.0.1:57415 375825604 12 1600000046980a0000000000 ....F....... +282 0.934772968 127.0.0.1:57433 127.0.0.1:57415 375825616 22 12000000bbfe1e000000000001000300000000000000 ...................... +284 0.935111523 127.0.0.1:57415 127.0.0.1:57433 3331488017 12 ffffffff46980a0000000000 ....F....... +288 1.030779600 127.0.0.1:57415 127.0.0.1:57433 3331488029 12 650000001bb90a0000000000 e........... +290 1.030981064 127.0.0.1:57415 127.0.0.1:57433 3331488041 101 1e0000001c2118d0c46f33bb01000300000028ff01000000000008a60dc39d01 .....!...o3.......(...............?.....3...|8.. +292 1.031373262 127.0.0.1:57433 127.0.0.1:57415 375825638 12 ffffffff1bb90a0000000000 ............ +294 1.032189608 127.0.0.1:57433 127.0.0.1:57415 375825650 12 3400000047980a0000000000 4...G....... +296 1.032389641 127.0.0.1:57433 127.0.0.1:57415 375825662 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....(............8 +298 1.032782316 127.0.0.1:57415 127.0.0.1:57433 3331488142 12 ffffffff47980a0000000000 ....G....... +300 1.033469677 127.0.0.1:57415 127.0.0.1:57433 3331488154 12 1e0000001cb90a0000000000 ............ +302 1.033609867 127.0.0.1:57415 127.0.0.1:57433 3331488166 30 1a00000055ceff62b21b3a50010003000000bdfe1e000000000000000000 ....U..b..:P.................. +304 1.034201145 127.0.0.1:57433 127.0.0.1:57415 375825714 12 ffffffff1cb90a0000000000 ............ +306 1.034456491 127.0.0.1:57433 127.0.0.1:57415 375825726 12 1a00000048980a0000000000 ....H....... +308 1.034608364 127.0.0.1:57433 127.0.0.1:57415 375825738 26 16000000bdfe1e00000000000100030000000000000000000000 .......................... +310 1.034997225 127.0.0.1:57415 127.0.0.1:57433 3331488196 12 ffffffff48980a0000000000 ....H....... +312 1.036124945 127.0.0.1:57415 127.0.0.1:57433 3331488208 12 1a0000001db90a0000000000 ............ +314 1.036262751 127.0.0.1:57415 127.0.0.1:57433 3331488220 26 16000000548f6340e25e3140010003000000bffe1e0000000000 ....T.c@.^1@.............. +316 1.036631346 127.0.0.1:57433 127.0.0.1:57415 375825764 12 ffffffff1db90a0000000000 ............ +318 1.037332535 127.0.0.1:57433 127.0.0.1:57415 375825776 12 1600000049980a0000000000 ....I....... +320 1.037481546 127.0.0.1:57433 127.0.0.1:57415 375825788 22 12000000bffe1e000000000001000300000000000000 ...................... +322 1.037860632 127.0.0.1:57415 127.0.0.1:57433 3331488246 12 ffffffff49980a0000000000 ....I....... +358 1.101044416 127.0.0.1:57433 127.0.0.1:57415 375825810 12 feffffffbd370100ce370100 .....7...7.. +362 1.139498472 127.0.0.1:57415 127.0.0.1:57433 3331488258 12 1a0000001eb90a0000000000 ............ +364 1.139685154 127.0.0.1:57415 127.0.0.1:57433 3331488270 26 16000000548f6340e25e3140010003000000c1fe1e0000000000 ....T.c@.^1@.............. +367 1.140248060 127.0.0.1:57415 127.0.0.1:57433 3331488296 12 feffffffcf370100bd370100 .....7...7.. +368 1.140265942 127.0.0.1:57433 127.0.0.1:57415 375825822 12 ffffffff1eb90a0000000000 ............ +372 1.140986681 127.0.0.1:57433 127.0.0.1:57415 375825834 12 160000004a980a0000000000 ....J....... +374 1.141149998 127.0.0.1:57433 127.0.0.1:57415 375825846 22 12000000c1fe1e000000000001000300000000000000 ...................... +376 1.141397476 127.0.0.1:57415 127.0.0.1:57433 3331488308 12 ffffffff4a980a0000000000 ....J....... +384 1.243165970 127.0.0.1:57415 127.0.0.1:57433 3331488320 12 1a0000001fb90a0000000000 ............ +386 1.243477821 127.0.0.1:57415 127.0.0.1:57433 3331488332 26 16000000548f6340e25e3140010003000000c3fe1e0000000000 ....T.c@.^1@.............. +388 1.243943930 127.0.0.1:57433 127.0.0.1:57415 375825868 12 ffffffff1fb90a0000000000 ............ +390 1.244289637 127.0.0.1:57433 127.0.0.1:57415 375825880 12 160000004b980a0000000000 ....K....... +392 1.244486570 127.0.0.1:57433 127.0.0.1:57415 375825892 22 12000000c3fe1e000000000001000300000000000000 ...................... +394 1.244859695 127.0.0.1:57415 127.0.0.1:57433 3331488358 12 ffffffff4b980a0000000000 ....K....... +400 1.334712744 127.0.0.1:57415 127.0.0.1:57433 3331488370 12 6500000020b90a0000000000 e... ....... +402 1.334908247 127.0.0.1:57415 127.0.0.1:57433 3331488382 101 1e0000001c2118d0c46f33bb01000300000029ff01000000000037a70dc39d01 .....!...o3.......).......7.......?.....3...|8.. +404 1.335299492 127.0.0.1:57433 127.0.0.1:57415 375825914 12 ffffffff20b90a0000000000 .... ....... +406 1.336164713 127.0.0.1:57433 127.0.0.1:57415 375825926 12 340000004c980a0000000000 4...L....... +408 1.336368084 127.0.0.1:57433 127.0.0.1:57415 375825938 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....)..........{.8 +410 1.336717367 127.0.0.1:57415 127.0.0.1:57433 3331488483 12 ffffffff4c980a0000000000 ....L....... +412 1.337455750 127.0.0.1:57415 127.0.0.1:57433 3331488495 12 1e00000021b90a0000000000 ....!....... +414 1.337660074 127.0.0.1:57415 127.0.0.1:57433 3331488507 30 1a00000055ceff62b21b3a50010003000000c5fe1e000000000000000000 ....U..b..:P.................. +416 1.338102818 127.0.0.1:57433 127.0.0.1:57415 375825990 12 ffffffff21b90a0000000000 ....!....... +418 1.338502884 127.0.0.1:57433 127.0.0.1:57415 375826002 12 1a0000004d980a0000000000 ....M....... +420 1.338749409 127.0.0.1:57433 127.0.0.1:57415 375826014 26 16000000c5fe1e00000000000100030000000000000000000000 .......................... +422 1.338998079 127.0.0.1:57415 127.0.0.1:57433 3331488537 12 ffffffff4d980a0000000000 ....M....... +424 1.346052647 127.0.0.1:57415 127.0.0.1:57433 3331488549 12 1a00000022b90a0000000000 ...."....... +426 1.346198320 127.0.0.1:57415 127.0.0.1:57433 3331488561 26 16000000548f6340e25e3140010003000000c7fe1e0000000000 ....T.c@.^1@.............. +428 1.346576929 127.0.0.1:57433 127.0.0.1:57415 375826040 12 ffffffff22b90a0000000000 ...."....... +430 1.346943855 127.0.0.1:57433 127.0.0.1:57415 375826052 12 160000004e980a0000000000 ....N....... +432 1.347107887 127.0.0.1:57433 127.0.0.1:57415 375826064 22 12000000c7fe1e000000000001000300000000000000 ...................... +434 1.347344875 127.0.0.1:57415 127.0.0.1:57433 3331488587 12 ffffffff4e980a0000000000 ....N....... +436 1.449128866 127.0.0.1:57415 127.0.0.1:57433 3331488599 12 1a00000023b90a0000000000 ....#....... +438 1.449317455 127.0.0.1:57415 127.0.0.1:57433 3331488611 26 16000000548f6340e25e3140010003000000c9fe1e0000000000 ....T.c@.^1@.............. +440 1.449667454 127.0.0.1:57433 127.0.0.1:57415 375826086 12 ffffffff23b90a0000000000 ....#....... +442 1.450066328 127.0.0.1:57433 127.0.0.1:57415 375826098 12 160000004f980a0000000000 ....O....... +444 1.450232506 127.0.0.1:57433 127.0.0.1:57415 375826110 22 12000000c9fe1e000000000001000300000000000000 ...................... +446 1.450649738 127.0.0.1:57415 127.0.0.1:57433 3331488637 12 ffffffff4f980a0000000000 ....O....... +450 1.552840233 127.0.0.1:57415 127.0.0.1:57433 3331488649 12 1a00000024b90a0000000000 ....$....... +452 1.553053617 127.0.0.1:57415 127.0.0.1:57433 3331488661 26 16000000548f6340e25e3140010003000000cbfe1e0000000000 ....T.c@.^1@.............. +454 1.553521156 127.0.0.1:57433 127.0.0.1:57415 375826132 12 ffffffff24b90a0000000000 ....$....... +456 1.554333925 127.0.0.1:57433 127.0.0.1:57415 375826144 12 1600000050980a0000000000 ....P....... +458 1.554539919 127.0.0.1:57433 127.0.0.1:57415 375826156 22 12000000cbfe1e000000000001000300000000000000 ...................... +460 1.554829359 127.0.0.1:57415 127.0.0.1:57433 3331488687 12 ffffffff50980a0000000000 ....P....... +464 1.601994753 127.0.0.1:57433 127.0.0.1:57415 375826178 12 feffffffbe370100cf370100 .....7...7.. +472 1.639254570 127.0.0.1:57415 127.0.0.1:57433 3331488699 12 6500000025b90a0000000000 e...%....... +474 1.639413357 127.0.0.1:57415 127.0.0.1:57433 3331488711 101 1e0000001c2118d0c46f33bb0100030000002aff01000000000068a80dc39d01 .....!...o3.......*.......h.......?.....3...|8.. +476 1.639710188 127.0.0.1:57433 127.0.0.1:57415 375826190 12 ffffffff25b90a0000000000 ....%....... +479 1.640687704 127.0.0.1:57415 127.0.0.1:57433 3331488812 12 feffffffd0370100be370100 .....7...7.. +482 1.640920639 127.0.0.1:57433 127.0.0.1:57415 375826202 12 3400000051980a0000000000 4...Q....... +484 1.641106844 127.0.0.1:57433 127.0.0.1:57415 375826214 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....*............9 +486 1.641401529 127.0.0.1:57415 127.0.0.1:57433 3331488824 12 ffffffff51980a0000000000 ....Q....... +488 1.642440081 127.0.0.1:57415 127.0.0.1:57433 3331488836 12 1e00000026b90a0000000000 ....&....... +490 1.642589092 127.0.0.1:57415 127.0.0.1:57433 3331488848 30 1a00000055ceff62b21b3a50010003000000cdfe1e000000000000000000 ....U..b..:P.................. +492 1.642849684 127.0.0.1:57433 127.0.0.1:57415 375826266 12 ffffffff26b90a0000000000 ....&....... +494 1.644637585 127.0.0.1:57433 127.0.0.1:57415 375826278 12 1a00000052980a0000000000 ....R....... +496 1.644813538 127.0.0.1:57433 127.0.0.1:57415 375826290 26 16000000cdfe1e00000000000100030000000000000000000000 .......................... +498 1.645002127 127.0.0.1:57415 127.0.0.1:57433 3331488878 12 ffffffff52980a0000000000 ....R....... +500 1.655705690 127.0.0.1:57415 127.0.0.1:57433 3331488890 12 1a00000027b90a0000000000 ....'....... +502 1.655863047 127.0.0.1:57415 127.0.0.1:57433 3331488902 26 16000000548f6340e25e3140010003000000cffe1e0000000000 ....T.c@.^1@.............. +504 1.656101942 127.0.0.1:57433 127.0.0.1:57415 375826316 12 ffffffff27b90a0000000000 ....'....... +506 1.656709433 127.0.0.1:57433 127.0.0.1:57415 375826328 12 1600000053980a0000000000 ....S....... +508 1.656920910 127.0.0.1:57433 127.0.0.1:57415 375826340 22 12000000cffe1e000000000001000300000000000000 ...................... +510 1.657256365 127.0.0.1:57415 127.0.0.1:57433 3331488928 12 ffffffff53980a0000000000 ....S....... +518 1.758398056 127.0.0.1:57415 127.0.0.1:57433 3331488940 12 1a00000028b90a0000000000 ....(....... +520 1.758595228 127.0.0.1:57415 127.0.0.1:57433 3331488952 26 16000000548f6340e25e3140010003000000d1fe1e0000000000 ....T.c@.^1@.............. +522 1.759148598 127.0.0.1:57433 127.0.0.1:57415 375826362 12 ffffffff28b90a0000000000 ....(....... +524 1.759556532 127.0.0.1:57433 127.0.0.1:57415 375826374 12 1600000054980a0000000000 ....T....... +526 1.759723663 127.0.0.1:57433 127.0.0.1:57415 375826386 22 12000000d1fe1e000000000001000300000000000000 ...................... +528 1.760003567 127.0.0.1:57415 127.0.0.1:57433 3331488978 12 ffffffff54980a0000000000 ....T....... +620 1.862058640 127.0.0.1:57415 127.0.0.1:57433 3331488990 12 1a00000029b90a0000000000 ....)....... +622 1.862326860 127.0.0.1:57415 127.0.0.1:57433 3331489002 26 16000000548f6340e25e3140010003000000d3fe1e0000000000 ....T.c@.^1@.............. +624 1.862742424 127.0.0.1:57433 127.0.0.1:57415 375826408 12 ffffffff29b90a0000000000 ....)....... +626 1.863321543 127.0.0.1:57433 127.0.0.1:57415 375826420 12 1600000055980a0000000000 ....U....... +628 1.863518715 127.0.0.1:57433 127.0.0.1:57415 375826432 22 12000000d3fe1e000000000001000300000000000000 ...................... +630 1.863860130 127.0.0.1:57415 127.0.0.1:57433 3331489028 12 ffffffff55980a0000000000 ....U....... +692 1.945059776 127.0.0.1:57415 127.0.0.1:57433 3331489040 12 650000002ab90a0000000000 e...*....... +694 1.945235491 127.0.0.1:57415 127.0.0.1:57433 3331489052 101 1e0000001c2118d0c46f33bb0100030000002bff0100000000009aa90dc39d01 .....!...o3.......+...............?.....3...|8.. +696 1.945547819 127.0.0.1:57433 127.0.0.1:57415 375826454 12 ffffffff2ab90a0000000000 ....*....... +698 1.946393967 127.0.0.1:57433 127.0.0.1:57415 375826466 12 3400000056980a0000000000 4...V....... +700 1.946588755 127.0.0.1:57433 127.0.0.1:57415 375826478 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....+...........D9 +702 1.946887732 127.0.0.1:57415 127.0.0.1:57433 3331489153 12 ffffffff56980a0000000000 ....V....... +704 1.947581530 127.0.0.1:57415 127.0.0.1:57433 3331489165 12 1e0000002bb90a0000000000 ....+....... +706 1.947719574 127.0.0.1:57415 127.0.0.1:57433 3331489177 30 1a00000055ceff62b21b3a50010003000000d5fe1e000000000000000000 ....U..b..:P.................. +708 1.947999239 127.0.0.1:57433 127.0.0.1:57415 375826530 12 ffffffff2bb90a0000000000 ....+....... +710 1.948433638 127.0.0.1:57433 127.0.0.1:57415 375826542 12 1a00000057980a0000000000 ....W....... +712 1.948585510 127.0.0.1:57433 127.0.0.1:57415 375826554 26 16000000d5fe1e00000000000100030000000000000000000000 .......................... +714 1.948861837 127.0.0.1:57415 127.0.0.1:57433 3331489207 12 ffffffff57980a0000000000 ....W....... +753 1.964560270 127.0.0.1:57415 127.0.0.1:57433 3331489219 12 1a0000002cb90a0000000000 ....,....... +756 1.964706182 127.0.0.1:57415 127.0.0.1:57433 3331489231 26 16000000548f6340e25e3140010003000000d7fe1e0000000000 ....T.c@.^1@.............. +762 1.964982748 127.0.0.1:57433 127.0.0.1:57415 375826580 12 ffffffff2cb90a0000000000 ....,....... +771 1.965520382 127.0.0.1:57433 127.0.0.1:57415 375826592 12 1600000058980a0000000000 ....X....... +774 1.965691805 127.0.0.1:57433 127.0.0.1:57415 375826604 22 12000000d7fe1e000000000001000300000000000000 ...................... +782 1.966074467 127.0.0.1:57415 127.0.0.1:57433 3331489257 12 ffffffff58980a0000000000 ....X....... +798 2.067874432 127.0.0.1:57415 127.0.0.1:57433 3331489269 12 1a0000002db90a0000000000 ....-....... +800 2.068092346 127.0.0.1:57415 127.0.0.1:57433 3331489281 26 16000000548f6340e25e3140010003000000d9fe1e0000000000 ....T.c@.^1@.............. +802 2.068523645 127.0.0.1:57433 127.0.0.1:57415 375826626 12 ffffffff2db90a0000000000 ....-....... +806 2.069849968 127.0.0.1:57433 127.0.0.1:57415 375826638 12 1600000059980a0000000000 ....Y....... +810 2.070055723 127.0.0.1:57433 127.0.0.1:57415 375826650 22 12000000d9fe1e000000000001000300000000000000 ...................... +814 2.070308447 127.0.0.1:57415 127.0.0.1:57433 3331489307 12 ffffffff59980a0000000000 ....Y....... +882 2.103214979 127.0.0.1:57433 127.0.0.1:57415 375826672 12 feffffffbf370100d0370100 .....7...7.. +887 2.142521858 127.0.0.1:57415 127.0.0.1:57433 3331489319 12 feffffffd1370100bf370100 .....7...7.. +890 2.173072815 127.0.0.1:57415 127.0.0.1:57433 3331489331 12 1a0000002eb90a0000000000 ............ +892 2.173343658 127.0.0.1:57415 127.0.0.1:57433 3331489343 26 16000000548f6340e25e3140010003000000dbfe1e0000000000 ....T.c@.^1@.............. +896 2.173803568 127.0.0.1:57433 127.0.0.1:57415 375826684 12 ffffffff2eb90a0000000000 ............ +898 2.174311876 127.0.0.1:57433 127.0.0.1:57415 375826696 12 160000005a980a0000000000 ....Z....... +900 2.174477339 127.0.0.1:57433 127.0.0.1:57415 375826708 22 12000000dbfe1e000000000001000300000000000000 ...................... +902 2.174773693 127.0.0.1:57415 127.0.0.1:57433 3331489369 12 ffffffff5a980a0000000000 ....Z....... +984 2.249679565 127.0.0.1:57415 127.0.0.1:57433 3331489381 12 650000002fb90a0000000000 e.../....... +986 2.249916077 127.0.0.1:57415 127.0.0.1:57433 3331489393 101 1e0000001c2118d0c46f33bb0100030000002cff010000000000cbaa0dc39d01 .....!...o3.......,...............?.....3...|8.. +988 2.250284672 127.0.0.1:57433 127.0.0.1:57415 375826730 12 ffffffff2fb90a0000000000 ..../....... +990 2.252504587 127.0.0.1:57433 127.0.0.1:57415 375826742 12 340000005b980a0000000000 4...[....... +992 2.252716303 127.0.0.1:57433 127.0.0.1:57415 375826754 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....,..........Ns9 +994 2.253077030 127.0.0.1:57415 127.0.0.1:57433 3331489494 12 ffffffff5b980a0000000000 ....[....... +996 2.253862619 127.0.0.1:57415 127.0.0.1:57433 3331489506 12 1e00000030b90a0000000000 ....0....... +998 2.254040956 127.0.0.1:57415 127.0.0.1:57433 3331489518 30 1a00000055ceff62b21b3a50010003000000ddfe1e000000000000000000 ....U..b..:P.................. +1000 2.254298449 127.0.0.1:57433 127.0.0.1:57415 375826806 12 ffffffff30b90a0000000000 ....0....... +1002 2.255220413 127.0.0.1:57433 127.0.0.1:57415 375826818 12 1a0000005c980a0000000000 ....\....... +1004 2.255413294 127.0.0.1:57433 127.0.0.1:57415 375826830 26 16000000ddfe1e00000000000100030000000000000000000000 .......................... +1006 2.255675316 127.0.0.1:57415 127.0.0.1:57433 3331489548 12 ffffffff5c980a0000000000 ....\....... +1008 2.277731895 127.0.0.1:57415 127.0.0.1:57433 3331489560 12 1a00000031b90a0000000000 ....1....... +1010 2.277955055 127.0.0.1:57415 127.0.0.1:57433 3331489572 26 16000000548f6340e25e3140010003000000dffe1e0000000000 ....T.c@.^1@.............. +1012 2.278270483 127.0.0.1:57433 127.0.0.1:57415 375826856 12 ffffffff31b90a0000000000 ....1....... +1014 2.278920174 127.0.0.1:57433 127.0.0.1:57415 375826868 12 160000005d980a0000000000 ....]....... +1016 2.279159784 127.0.0.1:57433 127.0.0.1:57415 375826880 22 12000000dffe1e000000000001000300000000000000 ...................... +1018 2.279536247 127.0.0.1:57415 127.0.0.1:57433 3331489598 12 ffffffff5d980a0000000000 ....]....... +1024 2.381599903 127.0.0.1:57415 127.0.0.1:57433 3331489610 12 1a00000032b90a0000000000 ....2....... +1026 2.381860971 127.0.0.1:57415 127.0.0.1:57433 3331489622 26 16000000548f6340e25e3140010003000000e1fe1e0000000000 ....T.c@.^1@.............. +1028 2.382236242 127.0.0.1:57433 127.0.0.1:57415 375826902 12 ffffffff32b90a0000000000 ....2....... +1030 2.383462906 127.0.0.1:57433 127.0.0.1:57415 375826914 12 160000005e980a0000000000 ....^....... +1032 2.383681059 127.0.0.1:57433 127.0.0.1:57415 375826926 22 12000000e1fe1e000000000001000300000000000000 ...................... +1034 2.384174585 127.0.0.1:57415 127.0.0.1:57433 3331489648 12 ffffffff5e980a0000000000 ....^....... +1036 2.485533953 127.0.0.1:57415 127.0.0.1:57433 3331489660 12 1a00000033b90a0000000000 ....3....... +1038 2.485769749 127.0.0.1:57415 127.0.0.1:57433 3331489672 26 16000000548f6340e25e3140010003000000e3fe1e0000000000 ....T.c@.^1@.............. +1040 2.486264229 127.0.0.1:57433 127.0.0.1:57415 375826948 12 ffffffff33b90a0000000000 ....3....... +1042 2.486888647 127.0.0.1:57433 127.0.0.1:57415 375826960 12 160000005f980a0000000000 ...._....... +1044 2.487123489 127.0.0.1:57433 127.0.0.1:57415 375826972 22 12000000e3fe1e000000000001000300000000000000 ...................... +1046 2.487396240 127.0.0.1:57415 127.0.0.1:57433 3331489698 12 ffffffff5f980a0000000000 ...._....... +1050 2.554858446 127.0.0.1:57415 127.0.0.1:57433 3331489710 12 2200000034b90a0000000000 "...4....... +1052 2.555097580 127.0.0.1:57415 127.0.0.1:57433 3331489722 34 1e0000001c2118d0c46f33bb0100030000002dff010000000000fcab0dc39d01 .....!...o3.......-............... +1054 2.555311441 127.0.0.1:57415 127.0.0.1:57433 3331489756 12 4300000035b90a0000000000 C...5....... +1056 2.555397272 127.0.0.1:57415 127.0.0.1:57433 3331489768 67 3f000000980433cb0cb47c3801000300000001000000002dff0100000000003d ?.....3...|8...........-.......=B.....&......... +1057 2.555481434 127.0.0.1:57433 127.0.0.1:57415 375826994 12 ffffffff34b90a0000000000 ....4....... +1058 2.555586100 127.0.0.1:57433 127.0.0.1:57415 375827006 12 ffffffff35b90a0000000000 ....5....... +1061 2.557078362 127.0.0.1:57433 127.0.0.1:57415 375827018 12 3400000060980a0000000000 4...`....... +1063 2.557272434 127.0.0.1:57433 127.0.0.1:57415 375827030 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....-............9 +1065 2.557535410 127.0.0.1:57415 127.0.0.1:57433 3331489835 12 ffffffff60980a0000000000 ....`....... +1066 2.558428526 127.0.0.1:57415 127.0.0.1:57433 3331489847 12 1e00000036b90a0000000000 ....6....... +1067 2.558573961 127.0.0.1:57415 127.0.0.1:57433 3331489859 30 1a00000055ceff62b21b3a50010003000000e5fe1e000000000000000000 ....U..b..:P.................. +1068 2.558963776 127.0.0.1:57433 127.0.0.1:57415 375827082 12 ffffffff36b90a0000000000 ....6....... +1070 2.559542656 127.0.0.1:57433 127.0.0.1:57415 375827094 12 1a00000061980a0000000000 ....a....... +1072 2.559695005 127.0.0.1:57433 127.0.0.1:57415 375827106 26 16000000e5fe1e00000000000100030000000000000000000000 .......................... +1074 2.560000896 127.0.0.1:57415 127.0.0.1:57433 3331489889 12 ffffffff61980a0000000000 ....a....... +1076 2.588417530 127.0.0.1:57415 127.0.0.1:57433 3331489901 12 1a00000037b90a0000000000 ....7....... +1078 2.588608980 127.0.0.1:57415 127.0.0.1:57433 3331489913 26 16000000548f6340e25e3140010003000000e7fe1e0000000000 ....T.c@.^1@.............. +1080 2.589014530 127.0.0.1:57433 127.0.0.1:57415 375827132 12 ffffffff37b90a0000000000 ....7....... +1082 2.589608908 127.0.0.1:57433 127.0.0.1:57415 375827144 12 1600000062980a0000000000 ....b....... +1084 2.589825630 127.0.0.1:57433 127.0.0.1:57415 375827156 22 12000000e7fe1e000000000001000300000000000000 ...................... +1086 2.590083838 127.0.0.1:57415 127.0.0.1:57433 3331489939 12 ffffffff62980a0000000000 ....b....... +1088 2.604464293 127.0.0.1:57433 127.0.0.1:57415 375827178 12 feffffffc0370100d1370100 .....7...7.. +1097 2.643546581 127.0.0.1:57415 127.0.0.1:57433 3331489951 12 feffffffd2370100c0370100 .....7...7.. +1104 2.691926479 127.0.0.1:57415 127.0.0.1:57433 3331489963 12 1a00000038b90a0000000000 ....8....... +1106 2.692096949 127.0.0.1:57415 127.0.0.1:57433 3331489975 26 16000000548f6340e25e3140010003000000e9fe1e0000000000 ....T.c@.^1@.............. +1108 2.692403555 127.0.0.1:57433 127.0.0.1:57415 375827190 12 ffffffff38b90a0000000000 ....8....... +1112 2.694973230 127.0.0.1:57433 127.0.0.1:57415 375827202 12 1600000063980a0000000000 ....c....... +1114 2.695253134 127.0.0.1:57433 127.0.0.1:57415 375827214 22 12000000e9fe1e000000000001000300000000000000 ...................... +1116 2.695573330 127.0.0.1:57415 127.0.0.1:57433 3331490001 12 ffffffff63980a0000000000 ....c....... +1119 2.797195435 127.0.0.1:57415 127.0.0.1:57433 3331490013 12 1a00000039b90a0000000000 ....9....... +1121 2.797490835 127.0.0.1:57415 127.0.0.1:57433 3331490025 26 16000000548f6340e25e3140010003000000ebfe1e0000000000 ....T.c@.^1@.............. +1123 2.797856569 127.0.0.1:57433 127.0.0.1:57415 375827236 12 ffffffff39b90a0000000000 ....9....... +1125 2.800987959 127.0.0.1:57433 127.0.0.1:57415 375827248 12 1600000064980a0000000000 ....d....... +1127 2.801155329 127.0.0.1:57433 127.0.0.1:57415 375827260 22 12000000ebfe1e000000000001000300000000000000 ...................... +1129 2.801402092 127.0.0.1:57415 127.0.0.1:57433 3331490051 12 ffffffff64980a0000000000 ....d....... +1148 2.860773087 127.0.0.1:57415 127.0.0.1:57433 3331490063 12 220000003ab90a0000000000 "...:....... +1150 2.861082554 127.0.0.1:57415 127.0.0.1:57433 3331490075 34 1e0000001c2118d0c46f33bb0100030000002eff0100000000002ead0dc39d01 .....!...o3....................... +1152 2.861301184 127.0.0.1:57415 127.0.0.1:57433 3331490109 12 430000003bb90a0000000000 C...;....... +1154 2.861391544 127.0.0.1:57415 127.0.0.1:57433 3331490121 67 3f000000980433cb0cb47c3801000300000001000000002eff0100000000003d ?.....3...|8...................=B.....&......... +1156 2.861511946 127.0.0.1:57433 127.0.0.1:57415 375827282 12 ffffffff3ab90a0000000000 ....:....... +1158 2.861771345 127.0.0.1:57433 127.0.0.1:57415 375827294 12 ffffffff3bb90a0000000000 ....;....... +1160 2.862633228 127.0.0.1:57433 127.0.0.1:57415 375827306 12 3400000065980a0000000000 4...e....... +1162 2.862841368 127.0.0.1:57433 127.0.0.1:57415 375827318 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..............._i.9 +1164 2.863135815 127.0.0.1:57415 127.0.0.1:57433 3331490188 12 ffffffff65980a0000000000 ....e....... +1166 2.863870621 127.0.0.1:57415 127.0.0.1:57433 3331490200 12 1e0000003cb90a0000000000 ....<....... +1168 2.864016294 127.0.0.1:57415 127.0.0.1:57433 3331490212 30 1a00000055ceff62b21b3a50010003000000edfe1e000000000000000000 ....U..b..:P.................. +1170 2.864295959 127.0.0.1:57433 127.0.0.1:57415 375827370 12 ffffffff3cb90a0000000000 ....<....... +1172 2.864713669 127.0.0.1:57433 127.0.0.1:57415 375827382 12 1a00000066980a0000000000 ....f....... +1174 2.864913702 127.0.0.1:57433 127.0.0.1:57415 375827394 26 16000000edfe1e00000000000100030000000000000000000000 .......................... +1176 2.865159512 127.0.0.1:57415 127.0.0.1:57433 3331490242 12 ffffffff66980a0000000000 ....f....... +1190 2.903338671 127.0.0.1:57415 127.0.0.1:57433 3331490254 12 1a0000003db90a0000000000 ....=....... +1192 2.903527737 127.0.0.1:57415 127.0.0.1:57433 3331490266 26 16000000548f6340e25e3140010003000000effe1e0000000000 ....T.c@.^1@.............. +1194 2.903985739 127.0.0.1:57433 127.0.0.1:57415 375827420 12 ffffffff3db90a0000000000 ....=....... +1196 2.904447317 127.0.0.1:57433 127.0.0.1:57415 375827432 12 1600000067980a0000000000 ....g....... +1198 2.904637575 127.0.0.1:57433 127.0.0.1:57415 375827444 22 12000000effe1e000000000001000300000000000000 ...................... +1200 2.904945374 127.0.0.1:57415 127.0.0.1:57433 3331490292 12 ffffffff67980a0000000000 ....g....... +1205 3.008322239 127.0.0.1:57415 127.0.0.1:57433 3331490304 12 1a0000003eb90a0000000000 ....>....... +1207 3.008548021 127.0.0.1:57415 127.0.0.1:57433 3331490316 26 16000000548f6340e25e3140010003000000f1fe1e0000000000 ....T.c@.^1@.............. +1209 3.009067774 127.0.0.1:57433 127.0.0.1:57415 375827466 12 ffffffff3eb90a0000000000 ....>....... +1211 3.010778666 127.0.0.1:57433 127.0.0.1:57415 375827478 12 1600000068980a0000000000 ....h....... +1213 3.010964155 127.0.0.1:57433 127.0.0.1:57415 375827490 22 12000000f1fe1e000000000001000300000000000000 ...................... +1215 3.011309862 127.0.0.1:57415 127.0.0.1:57433 3331490342 12 ffffffff68980a0000000000 ....h....... +1231 3.106184006 127.0.0.1:57433 127.0.0.1:57415 375827512 12 feffffffc1370100d2370100 .....7...7.. +1236 3.113183737 127.0.0.1:57415 127.0.0.1:57433 3331490354 12 1a0000003fb90a0000000000 ....?....... +1238 3.113389969 127.0.0.1:57415 127.0.0.1:57433 3331490366 26 16000000548f6340e25e3140010003000000f3fe1e0000000000 ....T.c@.^1@.............. +1240 3.113873243 127.0.0.1:57433 127.0.0.1:57415 375827524 12 ffffffff3fb90a0000000000 ....?....... +1242 3.114342928 127.0.0.1:57433 127.0.0.1:57415 375827536 12 1600000069980a0000000000 ....i....... +1244 3.114583254 127.0.0.1:57433 127.0.0.1:57415 375827548 22 12000000f3fe1e000000000001000300000000000000 ...................... +1246 3.114788532 127.0.0.1:57415 127.0.0.1:57433 3331490392 12 ffffffff69980a0000000000 ....i....... +1250 3.144863605 127.0.0.1:57415 127.0.0.1:57433 3331490404 12 feffffffd3370100c1370100 .....7...7.. +1254 3.165692806 127.0.0.1:57415 127.0.0.1:57433 3331490416 12 6500000040b90a0000000000 e...@....... +1256 3.165854692 127.0.0.1:57415 127.0.0.1:57433 3331490428 101 1e0000001c2118d0c46f33bb0100030000002fff0100000000005fae0dc39d01 .....!...o3......./......._.......?.....3...|8.. +1258 3.166214943 127.0.0.1:57433 127.0.0.1:57415 375827570 12 ffffffff40b90a0000000000 ....@....... +1260 3.167277575 127.0.0.1:57433 127.0.0.1:57415 375827582 12 340000006a980a0000000000 4...j....... +1262 3.167487860 127.0.0.1:57433 127.0.0.1:57415 375827594 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...../............9 +1264 3.167893171 127.0.0.1:57415 127.0.0.1:57433 3331490529 12 ffffffff6a980a0000000000 ....j....... +1266 3.168700457 127.0.0.1:57415 127.0.0.1:57433 3331490541 12 1e00000041b90a0000000000 ....A....... +1268 3.168836594 127.0.0.1:57415 127.0.0.1:57433 3331490553 30 1a00000055ceff62b21b3a50010003000000f5fe1e000000000000000000 ....U..b..:P.................. +1270 3.169145584 127.0.0.1:57433 127.0.0.1:57415 375827646 12 ffffffff41b90a0000000000 ....A....... +1272 3.169587851 127.0.0.1:57433 127.0.0.1:57415 375827658 12 1a0000006b980a0000000000 ....k....... +1274 3.169880629 127.0.0.1:57433 127.0.0.1:57415 375827670 26 16000000f5fe1e00000000000100030000000000000000000000 .......................... +1276 3.170057535 127.0.0.1:57415 127.0.0.1:57433 3331490583 12 ffffffff6b980a0000000000 ....k....... +1287 3.216649294 127.0.0.1:57415 127.0.0.1:57433 3331490595 12 1a00000042b90a0000000000 ....B....... +1289 3.216843843 127.0.0.1:57415 127.0.0.1:57433 3331490607 26 16000000548f6340e25e3140010003000000f7fe1e0000000000 ....T.c@.^1@.............. +1291 3.217335224 127.0.0.1:57433 127.0.0.1:57415 375827696 12 ffffffff42b90a0000000000 ....B....... +1293 3.217783451 127.0.0.1:57433 127.0.0.1:57415 375827708 12 160000006c980a0000000000 ....l....... +1295 3.218025446 127.0.0.1:57433 127.0.0.1:57415 375827720 22 12000000f7fe1e000000000001000300000000000000 ...................... +1297 3.218287945 127.0.0.1:57415 127.0.0.1:57433 3331490633 12 ffffffff6c980a0000000000 ....l....... +1304 3.319802761 127.0.0.1:57415 127.0.0.1:57433 3331490645 12 1a00000043b90a0000000000 ....C....... +1306 3.320112228 127.0.0.1:57415 127.0.0.1:57433 3331490657 26 16000000548f6340e25e3140010003000000f9fe1e0000000000 ....T.c@.^1@.............. +1308 3.320614338 127.0.0.1:57433 127.0.0.1:57415 375827742 12 ffffffff43b90a0000000000 ....C....... +1310 3.321070194 127.0.0.1:57433 127.0.0.1:57415 375827754 12 160000006d980a0000000000 ....m....... +1312 3.321243048 127.0.0.1:57433 127.0.0.1:57415 375827766 22 12000000f9fe1e000000000001000300000000000000 ...................... +1314 3.321536779 127.0.0.1:57415 127.0.0.1:57433 3331490683 12 ffffffff6d980a0000000000 ....m....... +1325 3.422647715 127.0.0.1:57415 127.0.0.1:57433 3331490695 12 1a00000044b90a0000000000 ....D....... +1327 3.422852755 127.0.0.1:57415 127.0.0.1:57433 3331490707 26 16000000548f6340e25e3140010003000000fbfe1e0000000000 ....T.c@.^1@.............. +1329 3.423150539 127.0.0.1:57433 127.0.0.1:57415 375827788 12 ffffffff44b90a0000000000 ....D....... +1331 3.423679113 127.0.0.1:57433 127.0.0.1:57415 375827800 12 160000006e980a0000000000 ....n....... +1333 3.423880816 127.0.0.1:57433 127.0.0.1:57415 375827812 22 12000000fbfe1e000000000001000300000000000000 ...................... +1335 3.424183607 127.0.0.1:57415 127.0.0.1:57433 3331490733 12 ffffffff6e980a0000000000 ....n....... +1337 3.469885111 127.0.0.1:57415 127.0.0.1:57433 3331490745 12 6500000045b90a0000000000 e...E....... +1339 3.470078945 127.0.0.1:57415 127.0.0.1:57433 3331490757 101 1e0000001c2118d0c46f33bb01000300000030ff0100000000008faf0dc39d01 .....!...o3.......0...............?.....3...|8.. +1341 3.470411777 127.0.0.1:57433 127.0.0.1:57415 375827834 12 ffffffff45b90a0000000000 ....E....... +1343 3.471601963 127.0.0.1:57433 127.0.0.1:57415 375827846 12 340000006f980a0000000000 4...o....... +1345 3.471840143 127.0.0.1:57433 127.0.0.1:57415 375827858 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....0..........T-: +1347 3.472112656 127.0.0.1:57415 127.0.0.1:57433 3331490858 12 ffffffff6f980a0000000000 ....o....... +1349 3.472882986 127.0.0.1:57415 127.0.0.1:57433 3331490870 12 1e00000046b90a0000000000 ....F....... +1351 3.473023891 127.0.0.1:57415 127.0.0.1:57433 3331490882 30 1a00000055ceff62b21b3a50010003000000fdfe1e000000000000000000 ....U..b..:P.................. +1353 3.473252296 127.0.0.1:57433 127.0.0.1:57415 375827910 12 ffffffff46b90a0000000000 ....F....... +1355 3.473688841 127.0.0.1:57433 127.0.0.1:57415 375827922 12 1a00000070980a0000000000 ....p....... +1357 3.473877430 127.0.0.1:57433 127.0.0.1:57415 375827934 26 16000000fdfe1e00000000000100030000000000000000000000 .......................... +1359 3.474111557 127.0.0.1:57415 127.0.0.1:57433 3331490912 12 ffffffff70980a0000000000 ....p....... +1396 3.526820183 127.0.0.1:57415 127.0.0.1:57433 3331490924 12 1a00000047b90a0000000000 ....G....... +1398 3.527186394 127.0.0.1:57415 127.0.0.1:57433 3331490936 26 16000000548f6340e25e3140010003000000fffe1e0000000000 ....T.c@.^1@.............. +1400 3.527514935 127.0.0.1:57433 127.0.0.1:57415 375827960 12 ffffffff47b90a0000000000 ....G....... +1402 3.528203487 127.0.0.1:57433 127.0.0.1:57415 375827972 12 1600000071980a0000000000 ....q....... +1404 3.528435230 127.0.0.1:57433 127.0.0.1:57415 375827984 22 12000000fffe1e000000000001000300000000000000 ...................... +1406 3.528792143 127.0.0.1:57415 127.0.0.1:57433 3331490962 12 ffffffff71980a0000000000 ....q....... +1411 3.606313467 127.0.0.1:57433 127.0.0.1:57415 375828006 12 feffffffc2370100d3370100 .....7...7.. +1419 3.632081985 127.0.0.1:57415 127.0.0.1:57433 3331490974 12 1a00000048b90a0000000000 ....H....... +1421 3.632800102 127.0.0.1:57415 127.0.0.1:57433 3331490986 26 16000000548f6340e25e314001000300000001ff1e0000000000 ....T.c@.^1@.............. +1423 3.633213282 127.0.0.1:57433 127.0.0.1:57415 375828018 12 ffffffff48b90a0000000000 ....H....... +1425 3.633739233 127.0.0.1:57433 127.0.0.1:57415 375828030 12 1600000072980a0000000000 ....r....... +1427 3.633902311 127.0.0.1:57433 127.0.0.1:57415 375828042 22 1200000001ff1e000000000001000300000000000000 ...................... +1429 3.634176493 127.0.0.1:57415 127.0.0.1:57433 3331491012 12 ffffffff72980a0000000000 ....r....... +1431 3.647038221 127.0.0.1:57415 127.0.0.1:57433 3331491024 12 feffffffd4370100c2370100 .....7...7.. +1442 3.736608505 127.0.0.1:57415 127.0.0.1:57433 3331491036 12 1a00000049b90a0000000000 ....I....... +1444 3.736845016 127.0.0.1:57415 127.0.0.1:57433 3331491048 26 16000000548f6340e25e314001000300000003ff1e0000000000 ....T.c@.^1@.............. +1446 3.737235069 127.0.0.1:57433 127.0.0.1:57415 375828064 12 ffffffff49b90a0000000000 ....I....... +1448 3.737969637 127.0.0.1:57433 127.0.0.1:57415 375828076 12 1600000073980a0000000000 ....s....... +1450 3.738203287 127.0.0.1:57433 127.0.0.1:57415 375828088 22 1200000003ff1e000000000001000300000000000000 ...................... +1452 3.738579750 127.0.0.1:57415 127.0.0.1:57433 3331491074 12 ffffffff73980a0000000000 ....s....... +1454 3.773857355 127.0.0.1:57415 127.0.0.1:57433 3331491086 12 650000004ab90a0000000000 e...J....... +1456 3.774037838 127.0.0.1:57415 127.0.0.1:57433 3331491098 101 1e0000001c2118d0c46f33bb01000300000031ff010000000000bfb00dc39d01 .....!...o3.......1...............?.....3...|8.. +1458 3.774468660 127.0.0.1:57433 127.0.0.1:57415 375828110 12 ffffffff4ab90a0000000000 ....J....... +1460 3.775287390 127.0.0.1:57433 127.0.0.1:57415 375828122 12 3400000074980a0000000000 4...t....... +1462 3.775485039 127.0.0.1:57433 127.0.0.1:57415 375828134 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....1.........h.[: +1464 3.775795937 127.0.0.1:57415 127.0.0.1:57433 3331491199 12 ffffffff74980a0000000000 ....t....... +1466 3.776550293 127.0.0.1:57415 127.0.0.1:57433 3331491211 12 1e0000004bb90a0000000000 ....K....... +1468 3.776688099 127.0.0.1:57415 127.0.0.1:57433 3331491223 30 1a00000055ceff62b21b3a5001000300000005ff1e000000000000000000 ....U..b..:P.................. +1470 3.777231455 127.0.0.1:57433 127.0.0.1:57415 375828186 12 ffffffff4bb90a0000000000 ....K....... +1472 3.777542830 127.0.0.1:57433 127.0.0.1:57415 375828198 12 1a00000075980a0000000000 ....u....... +1474 3.777697802 127.0.0.1:57433 127.0.0.1:57415 375828210 26 1600000005ff1e00000000000100030000000000000000000000 .......................... +1476 3.778007030 127.0.0.1:57415 127.0.0.1:57433 3331491253 12 ffffffff75980a0000000000 ....u....... +1483 3.840930700 127.0.0.1:57415 127.0.0.1:57433 3331491265 12 1a0000004cb90a0000000000 ....L....... +1485 3.841140032 127.0.0.1:57415 127.0.0.1:57433 3331491277 26 16000000548f6340e25e314001000300000007ff1e0000000000 ....T.c@.^1@.............. +1487 3.841702938 127.0.0.1:57433 127.0.0.1:57415 375828236 12 ffffffff4cb90a0000000000 ....L....... +1489 3.842177391 127.0.0.1:57433 127.0.0.1:57415 375828248 12 1600000076980a0000000000 ....v....... +1491 3.842447042 127.0.0.1:57433 127.0.0.1:57415 375828260 22 1200000007ff1e000000000001000300000000000000 ...................... +1493 3.842753172 127.0.0.1:57415 127.0.0.1:57433 3331491303 12 ffffffff76980a0000000000 ....v....... +1496 3.945668697 127.0.0.1:57415 127.0.0.1:57433 3331491315 12 1a0000004db90a0000000000 ....M....... +1498 3.945953846 127.0.0.1:57415 127.0.0.1:57433 3331491327 26 16000000548f6340e25e314001000300000009ff1e0000000000 ....T.c@.^1@.............. +1500 3.946365118 127.0.0.1:57433 127.0.0.1:57415 375828282 12 ffffffff4db90a0000000000 ....M....... +1502 3.947609663 127.0.0.1:57433 127.0.0.1:57415 375828294 12 1600000077980a0000000000 ....w....... +1504 3.947781563 127.0.0.1:57433 127.0.0.1:57415 375828306 22 1200000009ff1e000000000001000300000000000000 ...................... +1506 3.948209047 127.0.0.1:57415 127.0.0.1:57433 3331491353 12 ffffffff77980a0000000000 ....w....... +1510 4.049020290 127.0.0.1:57415 127.0.0.1:57433 3331491365 12 1a0000004eb90a0000000000 ....N....... +1512 4.049191952 127.0.0.1:57415 127.0.0.1:57433 3331491377 26 16000000548f6340e25e31400100030000000bff1e0000000000 ....T.c@.^1@.............. +1514 4.049555063 127.0.0.1:57433 127.0.0.1:57415 375828328 12 ffffffff4eb90a0000000000 ....N....... +1516 4.050124407 127.0.0.1:57433 127.0.0.1:57415 375828340 12 1600000078980a0000000000 ....x....... +1518 4.050313950 127.0.0.1:57433 127.0.0.1:57415 375828352 22 120000000bff1e000000000001000300000000000000 ...................... +1520 4.050462961 127.0.0.1:57415 127.0.0.1:57433 3331491403 12 ffffffff78980a0000000000 ....x....... +1522 4.079191446 127.0.0.1:57415 127.0.0.1:57433 3331491415 12 650000004fb90a0000000000 e...O....... +1524 4.079380751 127.0.0.1:57415 127.0.0.1:57433 3331491427 101 1e0000001c2118d0c46f33bb01000300000032ff010000000000f0b10dc39d01 .....!...o3.......2...............?.....3...|8.. +1526 4.079750776 127.0.0.1:57433 127.0.0.1:57415 375828374 12 ffffffff4fb90a0000000000 ....O....... +1528 4.082053661 127.0.0.1:57433 127.0.0.1:57415 375828386 12 3400000079980a0000000000 4...y....... +1530 4.082234621 127.0.0.1:57433 127.0.0.1:57415 375828398 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....2..........z.: +1532 4.082536697 127.0.0.1:57415 127.0.0.1:57433 3331491528 12 ffffffff79980a0000000000 ....y....... +1534 4.083472252 127.0.0.1:57415 127.0.0.1:57433 3331491540 12 1e00000050b90a0000000000 ....P....... +1536 4.083685160 127.0.0.1:57415 127.0.0.1:57433 3331491552 30 1a00000055ceff62b21b3a500100030000000dff1e000000000000000000 ....U..b..:P.................. +1538 4.083976746 127.0.0.1:57433 127.0.0.1:57415 375828450 12 ffffffff50b90a0000000000 ....P....... +1540 4.084794044 127.0.0.1:57433 127.0.0.1:57415 375828462 12 1a0000007a980a0000000000 ....z....... +1542 4.084996462 127.0.0.1:57433 127.0.0.1:57415 375828474 26 160000000dff1e00000000000100030000000000000000000000 .......................... +1544 4.085329056 127.0.0.1:57415 127.0.0.1:57433 3331491582 12 ffffffff7a980a0000000000 ....z....... +1547 4.106691837 127.0.0.1:57433 127.0.0.1:57415 375828500 12 feffffffc3370100d4370100 .....7...7.. +1557 4.148564339 127.0.0.1:57415 127.0.0.1:57433 3331491594 12 feffffffd5370100c3370100 .....7...7.. +1567 4.152940750 127.0.0.1:57415 127.0.0.1:57433 3331491606 12 1a00000051b90a0000000000 ....Q....... +1569 4.153090715 127.0.0.1:57415 127.0.0.1:57433 3331491618 26 16000000548f6340e25e31400100030000000fff1e0000000000 ....T.c@.^1@.............. +1571 4.153344870 127.0.0.1:57433 127.0.0.1:57415 375828512 12 ffffffff51b90a0000000000 ....Q....... +1573 4.153956175 127.0.0.1:57433 127.0.0.1:57415 375828524 12 160000007b980a0000000000 ....{....... +1575 4.154124737 127.0.0.1:57433 127.0.0.1:57415 375828536 22 120000000fff1e000000000001000300000000000000 ...................... +1577 4.154408693 127.0.0.1:57415 127.0.0.1:57433 3331491644 12 ffffffff7b980a0000000000 ....{....... +1610 4.255903721 127.0.0.1:57415 127.0.0.1:57433 3331491656 12 1a00000052b90a0000000000 ....R....... +1612 4.256105661 127.0.0.1:57415 127.0.0.1:57433 3331491668 26 16000000548f6340e25e314001000300000011ff1e0000000000 ....T.c@.^1@.............. +1614 4.256446362 127.0.0.1:57433 127.0.0.1:57415 375828558 12 ffffffff52b90a0000000000 ....R....... +1616 4.257072449 127.0.0.1:57433 127.0.0.1:57415 375828570 12 160000007c980a0000000000 ....|....... +1618 4.257791996 127.0.0.1:57433 127.0.0.1:57415 375828582 22 1200000011ff1e000000000001000300000000000000 ...................... +1620 4.258062601 127.0.0.1:57415 127.0.0.1:57433 3331491694 12 ffffffff7c980a0000000000 ....|....... +1626 4.358993053 127.0.0.1:57415 127.0.0.1:57433 3331491706 12 1a00000053b90a0000000000 ....S....... +1628 4.359177828 127.0.0.1:57415 127.0.0.1:57433 3331491718 26 16000000548f6340e25e314001000300000013ff1e0000000000 ....T.c@.^1@.............. +1630 4.359547853 127.0.0.1:57433 127.0.0.1:57415 375828604 12 ffffffff53b90a0000000000 ....S....... +1632 4.360080957 127.0.0.1:57433 127.0.0.1:57415 375828616 12 160000007d980a0000000000 ....}....... +1634 4.360307455 127.0.0.1:57433 127.0.0.1:57415 375828628 22 1200000013ff1e000000000001000300000000000000 ...................... +1636 4.360698223 127.0.0.1:57415 127.0.0.1:57433 3331491744 12 ffffffff7d980a0000000000 ....}....... +1638 4.386219025 127.0.0.1:57415 127.0.0.1:57433 3331491756 12 6500000054b90a0000000000 e...T....... +1640 4.386445045 127.0.0.1:57415 127.0.0.1:57433 3331491768 101 1e0000001c2118d0c46f33bb01000300000033ff01000000000023b30dc39d01 .....!...o3.......3.......#.......?.....3...|8.. +1642 4.386945724 127.0.0.1:57433 127.0.0.1:57415 375828650 12 ffffffff54b90a0000000000 ....T....... +1644 4.387832642 127.0.0.1:57433 127.0.0.1:57415 375828662 12 340000007e980a0000000000 4...~....... +1646 4.388145924 127.0.0.1:57433 127.0.0.1:57415 375828674 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....3.......... .: +1648 4.388428926 127.0.0.1:57415 127.0.0.1:57433 3331491869 12 ffffffff7e980a0000000000 ....~....... +1650 4.389287472 127.0.0.1:57415 127.0.0.1:57433 3331491881 12 1e00000055b90a0000000000 ....U....... +1652 4.389427900 127.0.0.1:57415 127.0.0.1:57433 3331491893 30 1a00000055ceff62b21b3a5001000300000015ff1e000000000000000000 ....U..b..:P.................. +1654 4.389697790 127.0.0.1:57433 127.0.0.1:57415 375828726 12 ffffffff55b90a0000000000 ....U....... +1656 4.390176535 127.0.0.1:57433 127.0.0.1:57415 375828738 12 1a0000007f980a0000000000 ............ +1658 4.390417814 127.0.0.1:57433 127.0.0.1:57415 375828750 26 1600000015ff1e00000000000100030000000000000000000000 .......................... +1660 4.390690327 127.0.0.1:57415 127.0.0.1:57433 3331491923 12 ffffffff7f980a0000000000 ............ +1662 4.462136745 127.0.0.1:57415 127.0.0.1:57433 3331491935 12 1a00000056b90a0000000000 ....V....... +1664 4.462350368 127.0.0.1:57415 127.0.0.1:57433 3331491947 26 16000000548f6340e25e314001000300000017ff1e0000000000 ....T.c@.^1@.............. +1666 4.462798834 127.0.0.1:57433 127.0.0.1:57415 375828776 12 ffffffff56b90a0000000000 ....V....... +1668 4.463309526 127.0.0.1:57433 127.0.0.1:57415 375828788 12 1600000080980a0000000000 ............ +1670 4.463524580 127.0.0.1:57433 127.0.0.1:57415 375828800 22 1200000017ff1e000000000001000300000000000000 ...................... +1672 4.463827848 127.0.0.1:57415 127.0.0.1:57433 3331491973 12 ffffffff80980a0000000000 ............ +1676 4.566662073 127.0.0.1:57415 127.0.0.1:57433 3331491985 12 1a00000057b90a0000000000 ....W....... +1678 4.566854477 127.0.0.1:57415 127.0.0.1:57433 3331491997 26 16000000548f6340e25e314001000300000019ff1e0000000000 ....T.c@.^1@.............. +1680 4.567536354 127.0.0.1:57433 127.0.0.1:57415 375828822 12 ffffffff57b90a0000000000 ....W....... +1682 4.568470955 127.0.0.1:57433 127.0.0.1:57415 375828834 12 1600000081980a0000000000 ............ +1684 4.568673611 127.0.0.1:57433 127.0.0.1:57415 375828846 22 1200000019ff1e000000000001000300000000000000 ...................... +1686 4.568996906 127.0.0.1:57415 127.0.0.1:57433 3331492023 12 ffffffff81980a0000000000 ............ +1690 4.607465267 127.0.0.1:57433 127.0.0.1:57415 375828868 12 feffffffc4370100d5370100 .....7...7.. +1696 4.649420738 127.0.0.1:57415 127.0.0.1:57433 3331492035 12 feffffffd6370100c4370100 .....7...7.. +1700 4.671598434 127.0.0.1:57415 127.0.0.1:57433 3331492047 12 1a00000058b90a0000000000 ....X....... +1702 4.671777964 127.0.0.1:57415 127.0.0.1:57433 3331492059 26 16000000548f6340e25e31400100030000001bff1e0000000000 ....T.c@.^1@.............. +1704 4.672226191 127.0.0.1:57433 127.0.0.1:57415 375828880 12 ffffffff58b90a0000000000 ....X....... +1706 4.672646761 127.0.0.1:57433 127.0.0.1:57415 375828892 12 1600000082980a0000000000 ............ +1708 4.672811985 127.0.0.1:57433 127.0.0.1:57415 375828904 22 120000001bff1e000000000001000300000000000000 ...................... +1710 4.673203945 127.0.0.1:57415 127.0.0.1:57433 3331492085 12 ffffffff82980a0000000000 ............ +1714 4.690887451 127.0.0.1:57415 127.0.0.1:57433 3331492097 12 6500000059b90a0000000000 e...Y....... +1716 4.691134453 127.0.0.1:57415 127.0.0.1:57433 3331492109 101 1e0000001c2118d0c46f33bb01000300000034ff01000000000054b40dc39d01 .....!...o3.......4.......T.......?.....3...|8.. +1718 4.691588879 127.0.0.1:57433 127.0.0.1:57415 375828926 12 ffffffff59b90a0000000000 ....Y....... +1720 4.692975044 127.0.0.1:57433 127.0.0.1:57415 375828938 12 3400000083980a0000000000 4........... +1722 4.693136692 127.0.0.1:57433 127.0.0.1:57415 375828950 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....4............: +1724 4.693478346 127.0.0.1:57415 127.0.0.1:57433 3331492210 12 ffffffff83980a0000000000 ............ +1728 4.694208145 127.0.0.1:57415 127.0.0.1:57433 3331492222 12 1e0000005ab90a0000000000 ....Z....... +1730 4.694443941 127.0.0.1:57415 127.0.0.1:57433 3331492234 30 1a00000055ceff62b21b3a500100030000001dff1e000000000000000000 ....U..b..:P.................. +1732 4.694873571 127.0.0.1:57433 127.0.0.1:57415 375829002 12 ffffffff5ab90a0000000000 ....Z....... +1734 4.695538044 127.0.0.1:57433 127.0.0.1:57415 375829014 12 1a00000084980a0000000000 ............ +1736 4.695684910 127.0.0.1:57433 127.0.0.1:57415 375829026 26 160000001dff1e00000000000100030000000000000000000000 .......................... +1738 4.695856333 127.0.0.1:57415 127.0.0.1:57433 3331492264 12 ffffffff84980a0000000000 ............ +1742 4.774789333 127.0.0.1:57415 127.0.0.1:57433 3331492276 12 1a0000005bb90a0000000000 ....[....... +1744 4.774967194 127.0.0.1:57415 127.0.0.1:57433 3331492288 26 16000000548f6340e25e31400100030000001fff1e0000000000 ....T.c@.^1@.............. +1746 4.775373936 127.0.0.1:57433 127.0.0.1:57415 375829052 12 ffffffff5bb90a0000000000 ....[....... +1748 4.775808811 127.0.0.1:57433 127.0.0.1:57415 375829064 12 1600000085980a0000000000 ............ +1750 4.776070118 127.0.0.1:57433 127.0.0.1:57415 375829076 22 120000001fff1e000000000001000300000000000000 ...................... +1752 4.776453972 127.0.0.1:57415 127.0.0.1:57433 3331492314 12 ffffffff85980a0000000000 ............ +1760 4.877452850 127.0.0.1:57415 127.0.0.1:57433 3331492326 12 1a0000005cb90a0000000000 ....\....... +1762 4.877650499 127.0.0.1:57415 127.0.0.1:57433 3331492338 26 16000000548f6340e25e314001000300000021ff1e0000000000 ....T.c@.^1@......!....... +1764 4.878034353 127.0.0.1:57433 127.0.0.1:57415 375829098 12 ffffffff5cb90a0000000000 ....\....... +1766 4.878778458 127.0.0.1:57433 127.0.0.1:57415 375829110 12 1600000086980a0000000000 ............ +1768 4.878993034 127.0.0.1:57433 127.0.0.1:57415 375829122 22 1200000021ff1e000000000001000300000000000000 ....!................. +1770 4.879267454 127.0.0.1:57415 127.0.0.1:57433 3331492364 12 ffffffff86980a0000000000 ............ +1772 4.981454134 127.0.0.1:57415 127.0.0.1:57433 3331492376 12 1a0000005db90a0000000000 ....]....... +1774 4.981664658 127.0.0.1:57415 127.0.0.1:57433 3331492388 26 16000000548f6340e25e314001000300000023ff1e0000000000 ....T.c@.^1@......#....... +1776 4.982152700 127.0.0.1:57433 127.0.0.1:57415 375829144 12 ffffffff5db90a0000000000 ....]....... +1778 4.982592106 127.0.0.1:57433 127.0.0.1:57415 375829156 12 1600000087980a0000000000 ............ +1780 4.982807398 127.0.0.1:57433 127.0.0.1:57415 375829168 22 1200000023ff1e000000000001000300000000000000 ....#................. +1782 4.983102083 127.0.0.1:57415 127.0.0.1:57433 3331492414 12 ffffffff87980a0000000000 ............ +1786 4.996622086 127.0.0.1:57415 127.0.0.1:57433 3331492426 12 220000005eb90a0000000000 "...^....... +1788 4.996823072 127.0.0.1:57415 127.0.0.1:57433 3331492438 34 1e0000001c2118d0c46f33bb01000300000035ff01000000000085b50dc39d01 .....!...o3.......5............... +1790 4.996974707 127.0.0.1:57415 127.0.0.1:57433 3331492472 12 430000005fb90a0000000000 C..._....... +1792 4.997065783 127.0.0.1:57415 127.0.0.1:57433 3331492484 67 3f000000980433cb0cb47c38010003000000010000000035ff0100000000003d ?.....3...|8...........5.......=B.....&......... +1794 4.997199297 127.0.0.1:57433 127.0.0.1:57415 375829190 12 ffffffff5eb90a0000000000 ....^....... +1796 4.997437716 127.0.0.1:57433 127.0.0.1:57415 375829202 12 ffffffff5fb90a0000000000 ...._....... +1798 4.998320580 127.0.0.1:57433 127.0.0.1:57415 375829214 12 3400000088980a0000000000 4........... +1800 4.998496294 127.0.0.1:57433 127.0.0.1:57415 375829226 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....5.........PI.; +1802 4.998828650 127.0.0.1:57415 127.0.0.1:57433 3331492551 12 ffffffff88980a0000000000 ............ +1804 4.999464750 127.0.0.1:57415 127.0.0.1:57433 3331492563 12 1e00000060b90a0000000000 ....`....... +1806 4.999582767 127.0.0.1:57415 127.0.0.1:57433 3331492575 30 1a00000055ceff62b21b3a5001000300000025ff1e000000000000000000 ....U..b..:P......%........... +1808 4.999925375 127.0.0.1:57433 127.0.0.1:57415 375829278 12 ffffffff60b90a0000000000 ....`....... +1810 5.000548124 127.0.0.1:57433 127.0.0.1:57415 375829290 12 1a00000089980a0000000000 ............ +1812 5.000854731 127.0.0.1:57433 127.0.0.1:57415 375829302 26 1600000025ff1e00000000000100030000000000000000000000 ....%..................... +1814 5.001141548 127.0.0.1:57415 127.0.0.1:57433 3331492605 12 ffffffff89980a0000000000 ............ +1816 5.084493876 127.0.0.1:57415 127.0.0.1:57433 3331492617 12 1a00000061b90a0000000000 ....a....... +1818 5.084784508 127.0.0.1:57415 127.0.0.1:57433 3331492629 26 16000000548f6340e25e314001000300000027ff1e0000000000 ....T.c@.^1@......'....... +1820 5.085210562 127.0.0.1:57433 127.0.0.1:57415 375829328 12 ffffffff61b90a0000000000 ....a....... +1822 5.085757494 127.0.0.1:57433 127.0.0.1:57415 375829340 12 160000008a980a0000000000 ............ +1824 5.086087465 127.0.0.1:57433 127.0.0.1:57415 375829352 22 1200000027ff1e000000000001000300000000000000 ....'................. +1826 5.086365938 127.0.0.1:57415 127.0.0.1:57433 3331492655 12 ffffffff8a980a0000000000 ............ +1829 5.108555555 127.0.0.1:57433 127.0.0.1:57415 375829374 12 feffffffc5370100d6370100 .....7...7.. +1836 5.150070906 127.0.0.1:57415 127.0.0.1:57433 3331492667 12 feffffffd7370100c5370100 .....7...7.. +1842 5.187263727 127.0.0.1:57415 127.0.0.1:57433 3331492679 12 1a00000062b90a0000000000 ....b....... +1844 5.187428236 127.0.0.1:57415 127.0.0.1:57433 3331492691 26 16000000548f6340e25e314001000300000029ff1e0000000000 ....T.c@.^1@......)....... +1846 5.188027620 127.0.0.1:57433 127.0.0.1:57415 375829386 12 ffffffff62b90a0000000000 ....b....... +1848 5.188691616 127.0.0.1:57433 127.0.0.1:57415 375829398 12 160000008b980a0000000000 ............ +1850 5.188865900 127.0.0.1:57433 127.0.0.1:57415 375829410 22 1200000029ff1e000000000001000300000000000000 ....)................. +1852 5.189136982 127.0.0.1:57415 127.0.0.1:57433 3331492717 12 ffffffff8b980a0000000000 ............ +1858 5.290299416 127.0.0.1:57415 127.0.0.1:57433 3331492729 12 1a00000063b90a0000000000 ....c....... +1860 5.290536880 127.0.0.1:57415 127.0.0.1:57433 3331492741 26 16000000548f6340e25e31400100030000002bff1e0000000000 ....T.c@.^1@......+....... +1862 5.290933132 127.0.0.1:57433 127.0.0.1:57415 375829432 12 ffffffff63b90a0000000000 ....c....... +1864 5.291330338 127.0.0.1:57433 127.0.0.1:57415 375829444 12 160000008c980a0000000000 ............ +1866 5.291532278 127.0.0.1:57433 127.0.0.1:57415 375829456 22 120000002bff1e000000000001000300000000000000 ....+................. +1868 5.291821480 127.0.0.1:57415 127.0.0.1:57433 3331492767 12 ffffffff8c980a0000000000 ............ +1870 5.300624609 127.0.0.1:57415 127.0.0.1:57433 3331492779 12 6500000064b90a0000000000 e...d....... +1872 5.300777674 127.0.0.1:57415 127.0.0.1:57433 3331492791 101 1e0000001c2118d0c46f33bb01000300000036ff010000000000b5b60dc39d01 .....!...o3.......6...............?.....3...|8.. +1874 5.301078558 127.0.0.1:57433 127.0.0.1:57415 375829478 12 ffffffff64b90a0000000000 ....d....... +1876 5.302083731 127.0.0.1:57433 127.0.0.1:57415 375829490 12 340000008d980a0000000000 4........... +1878 5.302239656 127.0.0.1:57433 127.0.0.1:57415 375829502 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....6...........D; +1880 5.302524328 127.0.0.1:57415 127.0.0.1:57433 3331492892 12 ffffffff8d980a0000000000 ............ +1882 5.303427458 127.0.0.1:57415 127.0.0.1:57433 3331492904 12 1e00000065b90a0000000000 ....e....... +1884 5.303618431 127.0.0.1:57415 127.0.0.1:57433 3331492916 30 1a00000055ceff62b21b3a500100030000002dff1e000000000000000000 ....U..b..:P......-........... +1886 5.303886652 127.0.0.1:57433 127.0.0.1:57415 375829554 12 ffffffff65b90a0000000000 ....e....... +1888 5.304234028 127.0.0.1:57433 127.0.0.1:57415 375829566 12 1a0000008e980a0000000000 ............ +1890 5.304374695 127.0.0.1:57433 127.0.0.1:57415 375829578 26 160000002dff1e00000000000100030000000000000000000000 ....-..................... +1892 5.304681540 127.0.0.1:57415 127.0.0.1:57433 3331492946 12 ffffffff8e980a0000000000 ............ +1898 5.392980576 127.0.0.1:57415 127.0.0.1:57433 3331492958 12 1a00000066b90a0000000000 ....f....... +1900 5.393149376 127.0.0.1:57415 127.0.0.1:57433 3331492970 26 16000000548f6340e25e31400100030000002fff1e0000000000 ....T.c@.^1@....../....... +1902 5.393526793 127.0.0.1:57433 127.0.0.1:57415 375829604 12 ffffffff66b90a0000000000 ....f....... +1904 5.394034147 127.0.0.1:57433 127.0.0.1:57415 375829616 12 160000008f980a0000000000 ............ +1906 5.394193888 127.0.0.1:57433 127.0.0.1:57415 375829628 22 120000002fff1e000000000001000300000000000000 ..../................. +1908 5.394453764 127.0.0.1:57415 127.0.0.1:57433 3331492996 12 ffffffff8f980a0000000000 ............ +1912 5.497128725 127.0.0.1:57415 127.0.0.1:57433 3331493008 12 1a00000067b90a0000000000 ....g....... +1914 5.497293711 127.0.0.1:57415 127.0.0.1:57433 3331493020 26 16000000548f6340e25e314001000300000031ff1e0000000000 ....T.c@.^1@......1....... +1916 5.497664452 127.0.0.1:57433 127.0.0.1:57415 375829650 12 ffffffff67b90a0000000000 ....g....... +1918 5.498149157 127.0.0.1:57433 127.0.0.1:57415 375829662 12 1600000090980a0000000000 ............ +1920 5.498332262 127.0.0.1:57433 127.0.0.1:57415 375829674 22 1200000031ff1e000000000001000300000000000000 ....1................. +1922 5.498708963 127.0.0.1:57415 127.0.0.1:57433 3331493046 12 ffffffff90980a0000000000 ............ +1924 5.600103140 127.0.0.1:57415 127.0.0.1:57433 3331493058 12 1a00000068b90a0000000000 ....h....... +1926 5.600290060 127.0.0.1:57415 127.0.0.1:57433 3331493070 26 16000000548f6340e25e314001000300000033ff1e0000000000 ....T.c@.^1@......3....... +1928 5.600676060 127.0.0.1:57433 127.0.0.1:57415 375829696 12 ffffffff68b90a0000000000 ....h....... +1930 5.601084709 127.0.0.1:57433 127.0.0.1:57415 375829708 12 1600000091980a0000000000 ............ +1932 5.601273298 127.0.0.1:57433 127.0.0.1:57415 375829720 22 1200000033ff1e000000000001000300000000000000 ....3................. +1934 5.601649523 127.0.0.1:57415 127.0.0.1:57433 3331493096 12 ffffffff91980a0000000000 ............ +1936 5.604357004 127.0.0.1:57415 127.0.0.1:57433 3331493108 12 6500000069b90a0000000000 e...i....... +1938 5.604534149 127.0.0.1:57415 127.0.0.1:57433 3331493120 101 1e0000001c2118d0c46f33bb01000300000037ff010000000000e5b70dc39d01 .....!...o3.......7...............?.....3...|8.. +1940 5.604814053 127.0.0.1:57433 127.0.0.1:57415 375829742 12 ffffffff69b90a0000000000 ....i....... +1942 5.605844021 127.0.0.1:57433 127.0.0.1:57415 375829754 12 3400000092980a0000000000 4........... +1944 5.606003523 127.0.0.1:57433 127.0.0.1:57415 375829766 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....7...........r; +1946 5.606266499 127.0.0.1:57415 127.0.0.1:57433 3331493221 12 ffffffff92980a0000000000 ............ +1948 5.607126474 127.0.0.1:57415 127.0.0.1:57433 3331493233 12 1e0000006ab90a0000000000 ....j....... +1950 5.607283592 127.0.0.1:57415 127.0.0.1:57433 3331493245 30 1a00000055ceff62b21b3a5001000300000035ff1e000000000000000000 ....U..b..:P......5........... +1952 5.607640743 127.0.0.1:57433 127.0.0.1:57415 375829818 12 ffffffff6ab90a0000000000 ....j....... +1954 5.608018875 127.0.0.1:57433 127.0.0.1:57415 375829830 12 1a00000093980a0000000000 ............ +1956 5.608172655 127.0.0.1:57433 127.0.0.1:57415 375829842 26 1600000035ff1e00000000000100030000000000000000000000 ....5..................... +1958 5.608429909 127.0.0.1:57415 127.0.0.1:57433 3331493275 12 ffffffff93980a0000000000 ............ +1960 5.609858990 127.0.0.1:57433 127.0.0.1:57415 375829868 12 feffffffc6370100d7370100 .....7...7.. +1970 5.650988340 127.0.0.1:57415 127.0.0.1:57433 3331493287 12 feffffffd8370100c6370100 .....7...7.. +1979 5.703189850 127.0.0.1:57415 127.0.0.1:57433 3331493299 12 1a0000006bb90a0000000000 ....k....... +1981 5.703357697 127.0.0.1:57415 127.0.0.1:57433 3331493311 26 16000000548f6340e25e314001000300000037ff1e0000000000 ....T.c@.^1@......7....... +1983 5.704184532 127.0.0.1:57433 127.0.0.1:57415 375829880 12 ffffffff6bb90a0000000000 ....k....... +1985 5.704429865 127.0.0.1:57433 127.0.0.1:57415 375829892 12 1600000094980a0000000000 ............ +1987 5.704639196 127.0.0.1:57433 127.0.0.1:57415 375829904 22 1200000037ff1e000000000001000300000000000000 ....7................. +1989 5.704838514 127.0.0.1:57415 127.0.0.1:57433 3331493337 12 ffffffff94980a0000000000 ............ +1991 5.806168318 127.0.0.1:57415 127.0.0.1:57433 3331493349 12 1a0000006cb90a0000000000 ....l....... +1993 5.806361437 127.0.0.1:57415 127.0.0.1:57433 3331493361 26 16000000548f6340e25e314001000300000039ff1e0000000000 ....T.c@.^1@......9....... +1995 5.806679010 127.0.0.1:57433 127.0.0.1:57415 375829926 12 ffffffff6cb90a0000000000 ....l....... +1997 5.807075024 127.0.0.1:57433 127.0.0.1:57415 375829938 12 1600000095980a0000000000 ............ +1999 5.807233810 127.0.0.1:57433 127.0.0.1:57415 375829950 22 1200000039ff1e000000000001000300000000000000 ....9................. +2001 5.807770729 127.0.0.1:57415 127.0.0.1:57433 3331493387 12 ffffffff95980a0000000000 ............ +2018 5.908283472 127.0.0.1:57415 127.0.0.1:57433 3331493399 12 650000006db90a0000000000 e...m....... +2020 5.908457994 127.0.0.1:57415 127.0.0.1:57433 3331493411 101 1e0000001c2118d0c46f33bb01000300000038ff01000000000015b90dc39d01 .....!...o3.......8...............?.....3...|8.. +2022 5.908796072 127.0.0.1:57433 127.0.0.1:57415 375829972 12 ffffffff6db90a0000000000 ....m....... +2024 5.909777403 127.0.0.1:57415 127.0.0.1:57433 3331493512 12 1a0000006eb90a0000000000 ....n....... +2026 5.909913063 127.0.0.1:57415 127.0.0.1:57433 3331493524 26 16000000548f6340e25e31400100030000003bff1e0000000000 ....T.c@.^1@......;....... +2027 5.909941435 127.0.0.1:57433 127.0.0.1:57415 375829984 12 3400000096980a0000000000 4........... +2030 5.910237312 127.0.0.1:57433 127.0.0.1:57415 375829996 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....8.........7^.; +2032 5.910466909 127.0.0.1:57433 127.0.0.1:57415 375830048 12 1600000097980a0000000000 ............ +2033 5.910493851 127.0.0.1:57415 127.0.0.1:57433 3331493550 12 ffffffff96980a0000000000 ............ +2034 5.910564661 127.0.0.1:57433 127.0.0.1:57415 375830060 22 120000003bff1e000000000001000300000000000000 ....;................. +2037 5.910679579 127.0.0.1:57433 127.0.0.1:57415 375830082 12 ffffffff6eb90a0000000000 ....n....... +2038 5.910706758 127.0.0.1:57415 127.0.0.1:57433 3331493562 12 ffffffff97980a0000000000 ............ +2041 5.911191940 127.0.0.1:57415 127.0.0.1:57433 3331493574 12 1e0000006fb90a0000000000 ....o....... +2043 5.911337376 127.0.0.1:57415 127.0.0.1:57433 3331493586 30 1a00000055ceff62b21b3a500100030000003dff1e000000000000000000 ....U..b..:P......=........... +2045 5.911574602 127.0.0.1:57433 127.0.0.1:57415 375830094 12 ffffffff6fb90a0000000000 ....o....... +2046 5.911830902 127.0.0.1:57433 127.0.0.1:57415 375830106 12 1a00000098980a0000000000 ............ +2047 5.911939144 127.0.0.1:57433 127.0.0.1:57415 375830118 26 160000003dff1e00000000000100030000000000000000000000 ....=..................... +2048 5.912102222 127.0.0.1:57415 127.0.0.1:57433 3331493616 12 ffffffff98980a0000000000 ............ +2052 6.011749029 127.0.0.1:57415 127.0.0.1:57433 3331493628 12 1a00000070b90a0000000000 ....p....... +2054 6.011922359 127.0.0.1:57415 127.0.0.1:57433 3331493640 26 16000000548f6340e25e31400100030000003fff1e0000000000 ....T.c@.^1@......?....... +2056 6.012357235 127.0.0.1:57433 127.0.0.1:57415 375830144 12 ffffffff70b90a0000000000 ....p....... +2058 6.012891531 127.0.0.1:57433 127.0.0.1:57415 375830156 12 1600000099980a0000000000 ............ +2060 6.013128519 127.0.0.1:57433 127.0.0.1:57415 375830168 22 120000003fff1e000000000001000300000000000000 ....?................. +2062 6.013401031 127.0.0.1:57415 127.0.0.1:57433 3331493666 12 ffffffff99980a0000000000 ............ +2077 6.111356258 127.0.0.1:57433 127.0.0.1:57415 375830190 12 feffffffc7370100d8370100 .....7...7.. +2082 6.115437508 127.0.0.1:57415 127.0.0.1:57433 3331493678 12 1a00000071b90a0000000000 ....q....... +2084 6.116127729 127.0.0.1:57415 127.0.0.1:57433 3331493690 26 16000000548f6340e25e314001000300000041ff1e0000000000 ....T.c@.^1@......A....... +2086 6.116477251 127.0.0.1:57433 127.0.0.1:57415 375830202 12 ffffffff71b90a0000000000 ....q....... +2088 6.117174625 127.0.0.1:57433 127.0.0.1:57415 375830214 12 160000009a980a0000000000 ............ +2090 6.117367506 127.0.0.1:57433 127.0.0.1:57415 375830226 22 1200000041ff1e000000000001000300000000000000 ....A................. +2092 6.117664814 127.0.0.1:57415 127.0.0.1:57433 3331493716 12 ffffffff9a980a0000000000 ............ +2096 6.152283192 127.0.0.1:57415 127.0.0.1:57433 3331493728 12 feffffffd9370100c7370100 .....7...7.. +2106 6.212659836 127.0.0.1:57415 127.0.0.1:57433 3331493740 12 2200000072b90a0000000000 "...r....... +2108 6.212859392 127.0.0.1:57415 127.0.0.1:57433 3331493752 34 1e0000001c2118d0c46f33bb01000300000039ff01000000000045ba0dc39d01 .....!...o3.......9.......E....... +2110 6.213021040 127.0.0.1:57415 127.0.0.1:57433 3331493786 12 4300000073b90a0000000000 C...s....... +2112 6.213130236 127.0.0.1:57415 127.0.0.1:57433 3331493798 67 3f000000980433cb0cb47c38010003000000010000000039ff0100000000003d ?.....3...|8...........9.......=B.....&......... +2114 6.213257551 127.0.0.1:57433 127.0.0.1:57415 375830248 12 ffffffff72b90a0000000000 ....r....... +2116 6.213515282 127.0.0.1:57433 127.0.0.1:57415 375830260 12 ffffffff73b90a0000000000 ....s....... +2118 6.214922190 127.0.0.1:57433 127.0.0.1:57415 375830272 12 340000009b980a0000000000 4........... +2120 6.215141296 127.0.0.1:57433 127.0.0.1:57415 375830284 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....9.........9..; +2122 6.215419531 127.0.0.1:57415 127.0.0.1:57433 3331493865 12 ffffffff9b980a0000000000 ............ +2124 6.216278076 127.0.0.1:57415 127.0.0.1:57433 3331493877 12 1e00000074b90a0000000000 ....t....... +2126 6.216505051 127.0.0.1:57415 127.0.0.1:57433 3331493889 30 1a00000055ceff62b21b3a5001000300000043ff1e000000000000000000 ....U..b..:P......C........... +2128 6.216880560 127.0.0.1:57433 127.0.0.1:57415 375830336 12 ffffffff74b90a0000000000 ....t....... +2130 6.217509985 127.0.0.1:57433 127.0.0.1:57415 375830348 12 1a0000009c980a0000000000 ............ +2132 6.217735291 127.0.0.1:57433 127.0.0.1:57415 375830360 26 1600000043ff1e00000000000100030000000000000000000000 ....C..................... +2134 6.217989922 127.0.0.1:57415 127.0.0.1:57433 3331493919 12 ffffffff9c980a0000000000 ............ +2136 6.218934298 127.0.0.1:57415 127.0.0.1:57433 3331493931 12 1a00000075b90a0000000000 ....u....... +2138 6.219092131 127.0.0.1:57415 127.0.0.1:57433 3331493943 26 16000000548f6340e25e314001000300000045ff1e0000000000 ....T.c@.^1@......E....... +2140 6.219428539 127.0.0.1:57433 127.0.0.1:57415 375830386 12 ffffffff75b90a0000000000 ....u....... +2142 6.219948769 127.0.0.1:57433 127.0.0.1:57415 375830398 12 160000009d980a0000000000 ............ +2144 6.220197439 127.0.0.1:57433 127.0.0.1:57415 375830410 22 1200000045ff1e000000000001000300000000000000 ....E................. +2146 6.220457792 127.0.0.1:57415 127.0.0.1:57433 3331493969 12 ffffffff9d980a0000000000 ............ +2154 6.322071075 127.0.0.1:57415 127.0.0.1:57433 3331493981 12 1a00000076b90a0000000000 ....v....... +2156 6.322255611 127.0.0.1:57415 127.0.0.1:57433 3331493993 26 16000000548f6340e25e314001000300000047ff1e0000000000 ....T.c@.^1@......G....... +2158 6.322672606 127.0.0.1:57433 127.0.0.1:57415 375830432 12 ffffffff76b90a0000000000 ....v....... +2160 6.323099136 127.0.0.1:57433 127.0.0.1:57415 375830444 12 160000009e980a0000000000 ............ +2162 6.323242664 127.0.0.1:57433 127.0.0.1:57415 375830456 22 1200000047ff1e000000000001000300000000000000 ....G................. +2164 6.323504925 127.0.0.1:57415 127.0.0.1:57433 3331494019 12 ffffffff9e980a0000000000 ............ +2166 6.424748659 127.0.0.1:57415 127.0.0.1:57433 3331494031 12 1a00000077b90a0000000000 ....w....... +2168 6.424942732 127.0.0.1:57415 127.0.0.1:57433 3331494043 26 16000000548f6340e25e314001000300000049ff1e0000000000 ....T.c@.^1@......I....... +2170 6.425375462 127.0.0.1:57433 127.0.0.1:57415 375830478 12 ffffffff77b90a0000000000 ....w....... +2172 6.425956488 127.0.0.1:57433 127.0.0.1:57415 375830490 12 160000009f980a0000000000 ............ +2174 6.426170349 127.0.0.1:57433 127.0.0.1:57415 375830502 22 1200000049ff1e000000000001000300000000000000 ....I................. +2176 6.426424742 127.0.0.1:57415 127.0.0.1:57433 3331494069 12 ffffffff9f980a0000000000 ............ +2180 6.518070459 127.0.0.1:57415 127.0.0.1:57433 3331494081 12 6500000078b90a0000000000 e...x....... +2182 6.518322468 127.0.0.1:57415 127.0.0.1:57433 3331494093 101 1e0000001c2118d0c46f33bb0100030000003aff01000000000077bb0dc39d01 .....!...o3.......:.......w.......?.....3...|8.. +2184 6.518645048 127.0.0.1:57433 127.0.0.1:57415 375830524 12 ffffffff78b90a0000000000 ....x....... +2186 6.520210981 127.0.0.1:57433 127.0.0.1:57415 375830536 12 34000000a0980a0000000000 4........... +2188 6.520443201 127.0.0.1:57433 127.0.0.1:57415 375830548 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....:.........g..; +2190 6.520708561 127.0.0.1:57415 127.0.0.1:57433 3331494194 12 ffffffffa0980a0000000000 ............ +2192 6.521545172 127.0.0.1:57415 127.0.0.1:57433 3331494206 12 1e00000079b90a0000000000 ....y....... +2194 6.521745682 127.0.0.1:57415 127.0.0.1:57433 3331494218 30 1a00000055ceff62b21b3a500100030000004bff1e000000000000000000 ....U..b..:P......K........... +2196 6.522107840 127.0.0.1:57433 127.0.0.1:57415 375830600 12 ffffffff79b90a0000000000 ....y....... +2198 6.522561789 127.0.0.1:57433 127.0.0.1:57415 375830612 12 1a000000a1980a0000000000 ............ +2200 6.522705078 127.0.0.1:57433 127.0.0.1:57415 375830624 26 160000004bff1e00000000000100030000000000000000000000 ....K..................... +2202 6.522999287 127.0.0.1:57415 127.0.0.1:57433 3331494248 12 ffffffffa1980a0000000000 ............ +2204 6.527745724 127.0.0.1:57415 127.0.0.1:57433 3331494260 12 1a0000007ab90a0000000000 ....z....... +2206 6.527908564 127.0.0.1:57415 127.0.0.1:57433 3331494272 26 16000000548f6340e25e31400100030000004dff1e0000000000 ....T.c@.^1@......M....... +2208 6.528249741 127.0.0.1:57433 127.0.0.1:57415 375830650 12 ffffffff7ab90a0000000000 ....z....... +2210 6.528577566 127.0.0.1:57433 127.0.0.1:57415 375830662 12 16000000a2980a0000000000 ............ +2212 6.528729439 127.0.0.1:57433 127.0.0.1:57415 375830674 22 120000004dff1e000000000001000300000000000000 ....M................. +2214 6.528908253 127.0.0.1:57415 127.0.0.1:57433 3331494298 12 ffffffffa2980a0000000000 ............ +2218 6.612575293 127.0.0.1:57433 127.0.0.1:57415 375830696 12 feffffffc8370100d9370100 .....7...7.. +2226 6.630829334 127.0.0.1:57415 127.0.0.1:57433 3331494310 12 1a0000007bb90a0000000000 ....{....... +2228 6.631014347 127.0.0.1:57415 127.0.0.1:57433 3331494322 26 16000000548f6340e25e31400100030000004fff1e0000000000 ....T.c@.^1@......O....... +2230 6.631379843 127.0.0.1:57433 127.0.0.1:57415 375830708 12 ffffffff7bb90a0000000000 ....{....... +2232 6.632665396 127.0.0.1:57433 127.0.0.1:57415 375830720 12 16000000a3980a0000000000 ............ +2234 6.632874489 127.0.0.1:57433 127.0.0.1:57415 375830732 22 120000004fff1e000000000001000300000000000000 ....O................. +2236 6.633392334 127.0.0.1:57415 127.0.0.1:57433 3331494348 12 ffffffffa3980a0000000000 ............ +2238 6.653218269 127.0.0.1:57415 127.0.0.1:57433 3331494360 12 feffffffda370100c8370100 .....7...7.. +2248 6.735540867 127.0.0.1:57415 127.0.0.1:57433 3331494372 12 1a0000007cb90a0000000000 ....|....... +2250 6.735717535 127.0.0.1:57415 127.0.0.1:57433 3331494384 26 16000000548f6340e25e314001000300000051ff1e0000000000 ....T.c@.^1@......Q....... +2252 6.736062288 127.0.0.1:57433 127.0.0.1:57415 375830754 12 ffffffff7cb90a0000000000 ....|....... +2254 6.736538172 127.0.0.1:57433 127.0.0.1:57415 375830766 12 16000000a4980a0000000000 ............ +2256 6.736710310 127.0.0.1:57433 127.0.0.1:57415 375830778 22 1200000051ff1e000000000001000300000000000000 ....Q................. +2258 6.737034082 127.0.0.1:57415 127.0.0.1:57433 3331494410 12 ffffffffa4980a0000000000 ............ +2264 6.824103117 127.0.0.1:57415 127.0.0.1:57433 3331494422 12 220000007db90a0000000000 "...}....... +2266 6.824305534 127.0.0.1:57415 127.0.0.1:57433 3331494434 34 1e0000001c2118d0c46f33bb0100030000003bff010000000000a9bc0dc39d01 .....!...o3.......;............... +2268 6.824437141 127.0.0.1:57415 127.0.0.1:57433 3331494468 12 430000007eb90a0000000000 C...~....... +2270 6.824521065 127.0.0.1:57415 127.0.0.1:57433 3331494480 67 3f000000980433cb0cb47c3801000300000001000000003bff0100000000003d ?.....3...|8...........;.......=B.....&......... +2272 6.824619293 127.0.0.1:57433 127.0.0.1:57415 375830800 12 ffffffff7db90a0000000000 ....}....... +2274 6.824800253 127.0.0.1:57433 127.0.0.1:57415 375830812 12 ffffffff7eb90a0000000000 ....~....... +2276 6.826200008 127.0.0.1:57433 127.0.0.1:57415 375830824 12 34000000a5980a0000000000 4........... +2278 6.826347113 127.0.0.1:57433 127.0.0.1:57415 375830836 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....;..........,-< +2280 6.826553345 127.0.0.1:57415 127.0.0.1:57433 3331494547 12 ffffffffa5980a0000000000 ............ +2282 6.827588320 127.0.0.1:57415 127.0.0.1:57433 3331494559 12 1e0000007fb90a0000000000 ............ +2284 6.827723742 127.0.0.1:57415 127.0.0.1:57433 3331494571 30 1a00000055ceff62b21b3a5001000300000053ff1e000000000000000000 ....U..b..:P......S........... +2286 6.827984095 127.0.0.1:57433 127.0.0.1:57415 375830888 12 ffffffff7fb90a0000000000 ............ +2288 6.830080271 127.0.0.1:57433 127.0.0.1:57415 375830900 12 1a000000a6980a0000000000 ............ +2290 6.830284357 127.0.0.1:57433 127.0.0.1:57415 375830912 26 1600000053ff1e00000000000100030000000000000000000000 ....S..................... +2292 6.830541849 127.0.0.1:57415 127.0.0.1:57433 3331494601 12 ffffffffa6980a0000000000 ............ +2294 6.838441133 127.0.0.1:57415 127.0.0.1:57433 3331494613 12 1a00000080b90a0000000000 ............ +2296 6.838641644 127.0.0.1:57415 127.0.0.1:57433 3331494625 26 16000000548f6340e25e314001000300000055ff1e0000000000 ....T.c@.^1@......U....... +2298 6.838989735 127.0.0.1:57433 127.0.0.1:57415 375830938 12 ffffffff80b90a0000000000 ............ +2300 6.839472532 127.0.0.1:57433 127.0.0.1:57415 375830950 12 16000000a7980a0000000000 ............ +2302 6.839613199 127.0.0.1:57433 127.0.0.1:57415 375830962 22 1200000055ff1e000000000001000300000000000000 ....U................. +2304 6.839796782 127.0.0.1:57415 127.0.0.1:57433 3331494651 12 ffffffffa7980a0000000000 ............ +2306 6.942639351 127.0.0.1:57415 127.0.0.1:57433 3331494663 12 1a00000081b90a0000000000 ............ +2308 6.942822695 127.0.0.1:57415 127.0.0.1:57433 3331494675 26 16000000548f6340e25e314001000300000057ff1e0000000000 ....T.c@.^1@......W....... +2310 6.943274021 127.0.0.1:57433 127.0.0.1:57415 375830984 12 ffffffff81b90a0000000000 ............ +2312 6.943697929 127.0.0.1:57433 127.0.0.1:57415 375830996 12 16000000a8980a0000000000 ............ +2314 6.943851948 127.0.0.1:57433 127.0.0.1:57415 375831008 22 1200000057ff1e000000000001000300000000000000 ....W................. +2316 6.944206238 127.0.0.1:57415 127.0.0.1:57433 3331494701 12 ffffffffa8980a0000000000 ............ +2320 7.045551777 127.0.0.1:57415 127.0.0.1:57433 3331494713 12 1a00000082b90a0000000000 ............ +2322 7.045737982 127.0.0.1:57415 127.0.0.1:57433 3331494725 26 16000000548f6340e25e314001000300000059ff1e0000000000 ....T.c@.^1@......Y....... +2324 7.046172857 127.0.0.1:57433 127.0.0.1:57415 375831030 12 ffffffff82b90a0000000000 ............ +2326 7.046623468 127.0.0.1:57433 127.0.0.1:57415 375831042 12 16000000a9980a0000000000 ............ +2328 7.046833277 127.0.0.1:57433 127.0.0.1:57415 375831054 22 1200000059ff1e000000000001000300000000000000 ....Y................. +2330 7.047218084 127.0.0.1:57415 127.0.0.1:57433 3331494751 12 ffffffffa9980a0000000000 ............ +2335 7.113435030 127.0.0.1:57433 127.0.0.1:57415 375831076 12 feffffffc9370100da370100 .....7...7.. +2340 7.129145145 127.0.0.1:57415 127.0.0.1:57433 3331494763 12 2200000083b90a0000000000 "........... +2342 7.129378557 127.0.0.1:57415 127.0.0.1:57433 3331494775 34 1e0000001c2118d0c46f33bb0100030000003cff010000000000dbbd0dc39d01 .....!...o3.......<............... +2344 7.129514217 127.0.0.1:57415 127.0.0.1:57433 3331494809 12 4300000084b90a0000000000 C........... +2346 7.129601479 127.0.0.1:57415 127.0.0.1:57433 3331494821 67 3f000000980433cb0cb47c3801000300000001000000003cff0100000000003d ?.....3...|8...........<.......=B.....&......... +2348 7.129769325 127.0.0.1:57433 127.0.0.1:57415 375831088 12 ffffffff83b90a0000000000 ............ +2350 7.129956722 127.0.0.1:57433 127.0.0.1:57415 375831100 12 ffffffff84b90a0000000000 ............ +2352 7.131147146 127.0.0.1:57433 127.0.0.1:57415 375831112 12 34000000aa980a0000000000 4........... +2354 7.131299496 127.0.0.1:57433 127.0.0.1:57415 375831124 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....<...........[< +2356 7.131654739 127.0.0.1:57415 127.0.0.1:57433 3331494888 12 ffffffffaa980a0000000000 ............ +2358 7.133446455 127.0.0.1:57415 127.0.0.1:57433 3331494900 12 1e00000085b90a0000000000 ............ +2360 7.133589029 127.0.0.1:57415 127.0.0.1:57433 3331494912 30 1a00000055ceff62b21b3a500100030000005bff1e000000000000000000 ....U..b..:P......[........... +2362 7.134160042 127.0.0.1:57433 127.0.0.1:57415 375831176 12 ffffffff85b90a0000000000 ............ +2364 7.134418011 127.0.0.1:57433 127.0.0.1:57415 375831188 12 1a000000ab980a0000000000 ............ +2366 7.134589195 127.0.0.1:57433 127.0.0.1:57415 375831200 26 160000005bff1e00000000000100030000000000000000000000 ....[..................... +2368 7.134833336 127.0.0.1:57415 127.0.0.1:57433 3331494942 12 ffffffffab980a0000000000 ............ +2370 7.148402452 127.0.0.1:57415 127.0.0.1:57433 3331494954 12 1a00000086b90a0000000000 ............ +2372 7.148581028 127.0.0.1:57415 127.0.0.1:57433 3331494966 26 16000000548f6340e25e31400100030000005dff1e0000000000 ....T.c@.^1@......]....... +2374 7.148973942 127.0.0.1:57433 127.0.0.1:57415 375831226 12 ffffffff86b90a0000000000 ............ +2376 7.149436474 127.0.0.1:57433 127.0.0.1:57415 375831238 12 16000000ac980a0000000000 ............ +2378 7.149594545 127.0.0.1:57433 127.0.0.1:57415 375831250 22 120000005dff1e000000000001000300000000000000 ....]................. +2380 7.149935961 127.0.0.1:57415 127.0.0.1:57433 3331494992 12 ffffffffac980a0000000000 ............ +2382 7.155036449 127.0.0.1:57415 127.0.0.1:57433 3331495004 12 feffffffdb370100c9370100 .....7...7.. +2393 7.251710415 127.0.0.1:57415 127.0.0.1:57433 3331495016 12 1a00000087b90a0000000000 ............ +2395 7.251913786 127.0.0.1:57415 127.0.0.1:57433 3331495028 26 16000000548f6340e25e31400100030000005fff1e0000000000 ....T.c@.^1@......_....... +2397 7.252231121 127.0.0.1:57433 127.0.0.1:57415 375831272 12 ffffffff87b90a0000000000 ............ +2399 7.252828836 127.0.0.1:57433 127.0.0.1:57415 375831284 12 16000000ad980a0000000000 ............ +2401 7.253002167 127.0.0.1:57433 127.0.0.1:57415 375831296 22 120000005fff1e000000000001000300000000000000 ...._................. +2403 7.253229141 127.0.0.1:57415 127.0.0.1:57433 3331495054 12 ffffffffad980a0000000000 ............ +2410 7.355382442 127.0.0.1:57415 127.0.0.1:57433 3331495066 12 1a00000088b90a0000000000 ............ +2412 7.355663538 127.0.0.1:57415 127.0.0.1:57433 3331495078 26 16000000548f6340e25e314001000300000061ff1e0000000000 ....T.c@.^1@......a....... +2414 7.356067419 127.0.0.1:57433 127.0.0.1:57415 375831318 12 ffffffff88b90a0000000000 ............ +2416 7.356686831 127.0.0.1:57433 127.0.0.1:57415 375831330 12 16000000ae980a0000000000 ............ +2418 7.356851816 127.0.0.1:57433 127.0.0.1:57415 375831342 22 1200000061ff1e000000000001000300000000000000 ....a................. +2420 7.357174158 127.0.0.1:57415 127.0.0.1:57433 3331495104 12 ffffffffae980a0000000000 ............ +2423 7.434656858 127.0.0.1:57415 127.0.0.1:57433 3331495116 12 6500000089b90a0000000000 e........... +2425 7.434990168 127.0.0.1:57415 127.0.0.1:57433 3331495128 101 1e0000001c2118d0c46f33bb0100030000003dff0100000000000bbf0dc39d01 .....!...o3.......=...............?.....3...|8.. +2427 7.435464144 127.0.0.1:57433 127.0.0.1:57415 375831364 12 ffffffff89b90a0000000000 ............ +2429 7.436599493 127.0.0.1:57433 127.0.0.1:57415 375831376 12 34000000af980a0000000000 4........... +2431 7.436849594 127.0.0.1:57433 127.0.0.1:57415 375831388 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....=.........qP.< +2433 7.437160730 127.0.0.1:57415 127.0.0.1:57433 3331495229 12 ffffffffaf980a0000000000 ............ +2435 7.438078165 127.0.0.1:57415 127.0.0.1:57433 3331495241 12 1e0000008ab90a0000000000 ............ +2437 7.438354015 127.0.0.1:57415 127.0.0.1:57433 3331495253 30 1a00000055ceff62b21b3a5001000300000063ff1e000000000000000000 ....U..b..:P......c........... +2439 7.438842058 127.0.0.1:57433 127.0.0.1:57415 375831440 12 ffffffff8ab90a0000000000 ............ +2441 7.439135551 127.0.0.1:57433 127.0.0.1:57415 375831452 12 1a000000b0980a0000000000 ............ +2443 7.439285040 127.0.0.1:57433 127.0.0.1:57415 375831464 26 1600000063ff1e00000000000100030000000000000000000000 ....c..................... +2445 7.439625978 127.0.0.1:57415 127.0.0.1:57433 3331495283 12 ffffffffb0980a0000000000 ............ +2447 7.458090067 127.0.0.1:57415 127.0.0.1:57433 3331495295 12 1a0000008bb90a0000000000 ............ +2449 7.458394289 127.0.0.1:57415 127.0.0.1:57433 3331495307 26 16000000548f6340e25e314001000300000065ff1e0000000000 ....T.c@.^1@......e....... +2451 7.459229946 127.0.0.1:57433 127.0.0.1:57415 375831490 12 ffffffff8bb90a0000000000 ............ +2453 7.459740639 127.0.0.1:57433 127.0.0.1:57415 375831502 12 16000000b1980a0000000000 ............ +2455 7.459915161 127.0.0.1:57433 127.0.0.1:57415 375831514 22 1200000065ff1e000000000001000300000000000000 ....e................. +2457 7.460117817 127.0.0.1:57415 127.0.0.1:57433 3331495333 12 ffffffffb1980a0000000000 ............ +2463 7.561492443 127.0.0.1:57415 127.0.0.1:57433 3331495345 12 1a0000008cb90a0000000000 ............ +2465 7.561717510 127.0.0.1:57415 127.0.0.1:57433 3331495357 26 16000000548f6340e25e314001000300000067ff1e0000000000 ....T.c@.^1@......g....... +2467 7.562159538 127.0.0.1:57433 127.0.0.1:57415 375831536 12 ffffffff8cb90a0000000000 ............ +2469 7.562650919 127.0.0.1:57433 127.0.0.1:57415 375831548 12 16000000b2980a0000000000 ............ +2471 7.562891245 127.0.0.1:57433 127.0.0.1:57415 375831560 22 1200000067ff1e000000000001000300000000000000 ....g................. +2473 7.563094854 127.0.0.1:57415 127.0.0.1:57433 3331495383 12 ffffffffb2980a0000000000 ............ +2476 7.614218712 127.0.0.1:57433 127.0.0.1:57415 375831582 12 feffffffca370100db370100 .....7...7.. +2506 7.655904293 127.0.0.1:57415 127.0.0.1:57433 3331495395 12 feffffffdc370100ca370100 .....7...7.. +2519 7.665109396 127.0.0.1:57415 127.0.0.1:57433 3331495407 12 1a0000008db90a0000000000 ............ +2521 7.665282249 127.0.0.1:57415 127.0.0.1:57433 3331495419 26 16000000548f6340e25e314001000300000069ff1e0000000000 ....T.c@.^1@......i....... +2523 7.665644884 127.0.0.1:57433 127.0.0.1:57415 375831594 12 ffffffff8db90a0000000000 ............ +2525 7.666216135 127.0.0.1:57433 127.0.0.1:57415 375831606 12 16000000b3980a0000000000 ............ +2527 7.666381836 127.0.0.1:57433 127.0.0.1:57415 375831618 22 1200000069ff1e000000000001000300000000000000 ....i................. +2529 7.666651487 127.0.0.1:57415 127.0.0.1:57433 3331495445 12 ffffffffb3980a0000000000 ............ +2537 7.740612030 127.0.0.1:57415 127.0.0.1:57433 3331495457 12 650000008eb90a0000000000 e........... +2539 7.740854979 127.0.0.1:57415 127.0.0.1:57433 3331495469 101 1e0000001c2118d0c46f33bb0100030000003eff0100000000003dc00dc39d01 .....!...o3.......>.......=.......?.....3...|8.. +2541 7.741214037 127.0.0.1:57433 127.0.0.1:57415 375831640 12 ffffffff8eb90a0000000000 ............ +2543 7.742111206 127.0.0.1:57433 127.0.0.1:57415 375831652 12 34000000b4980a0000000000 4........... +2545 7.742344379 127.0.0.1:57433 127.0.0.1:57415 375831664 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....>............< +2547 7.742727757 127.0.0.1:57415 127.0.0.1:57433 3331495570 12 ffffffffb4980a0000000000 ............ +2549 7.743387699 127.0.0.1:57415 127.0.0.1:57433 3331495582 12 1e0000008fb90a0000000000 ............ +2551 7.743604660 127.0.0.1:57415 127.0.0.1:57433 3331495594 30 1a00000055ceff62b21b3a500100030000006bff1e000000000000000000 ....U..b..:P......k........... +2553 7.743918896 127.0.0.1:57433 127.0.0.1:57415 375831716 12 ffffffff8fb90a0000000000 ............ +2555 7.744359970 127.0.0.1:57433 127.0.0.1:57415 375831728 12 1a000000b5980a0000000000 ............ +2557 7.744610786 127.0.0.1:57433 127.0.0.1:57415 375831740 26 160000006bff1e00000000000100030000000000000000000000 ....k..................... +2559 7.744850874 127.0.0.1:57415 127.0.0.1:57433 3331495624 12 ffffffffb5980a0000000000 ............ +2563 7.768066168 127.0.0.1:57415 127.0.0.1:57433 3331495636 12 1a00000090b90a0000000000 ............ +2565 7.768229485 127.0.0.1:57415 127.0.0.1:57433 3331495648 26 16000000548f6340e25e31400100030000006dff1e0000000000 ....T.c@.^1@......m....... +2567 7.768579006 127.0.0.1:57433 127.0.0.1:57415 375831766 12 ffffffff90b90a0000000000 ............ +2569 7.769012928 127.0.0.1:57433 127.0.0.1:57415 375831778 12 16000000b6980a0000000000 ............ +2571 7.769220352 127.0.0.1:57433 127.0.0.1:57415 375831790 22 120000006dff1e000000000001000300000000000000 ....m................. +2573 7.769524336 127.0.0.1:57415 127.0.0.1:57433 3331495674 12 ffffffffb6980a0000000000 ............ +2655 7.870796919 127.0.0.1:57415 127.0.0.1:57433 3331495686 12 1a00000091b90a0000000000 ............ +2657 7.871012211 127.0.0.1:57415 127.0.0.1:57433 3331495698 26 16000000548f6340e25e31400100030000006fff1e0000000000 ....T.c@.^1@......o....... +2659 7.871535540 127.0.0.1:57433 127.0.0.1:57415 375831812 12 ffffffff91b90a0000000000 ............ +2661 7.871988535 127.0.0.1:57433 127.0.0.1:57415 375831824 12 16000000b7980a0000000000 ............ +2663 7.872260332 127.0.0.1:57433 127.0.0.1:57415 375831836 22 120000006fff1e000000000001000300000000000000 ....o................. +2665 7.872566223 127.0.0.1:57415 127.0.0.1:57433 3331495724 12 ffffffffb7980a0000000000 ............ +2669 7.974688530 127.0.0.1:57415 127.0.0.1:57433 3331495736 12 1a00000092b90a0000000000 ............ +2671 7.974861383 127.0.0.1:57415 127.0.0.1:57433 3331495748 26 16000000548f6340e25e314001000300000071ff1e0000000000 ....T.c@.^1@......q....... +2673 7.975232840 127.0.0.1:57433 127.0.0.1:57415 375831858 12 ffffffff92b90a0000000000 ............ +2675 7.975643635 127.0.0.1:57433 127.0.0.1:57415 375831870 12 16000000b8980a0000000000 ............ +2677 7.975811958 127.0.0.1:57433 127.0.0.1:57415 375831882 22 1200000071ff1e000000000001000300000000000000 ....q................. +2679 7.976145744 127.0.0.1:57415 127.0.0.1:57433 3331495774 12 ffffffffb8980a0000000000 ............ +2683 8.045182228 127.0.0.1:57415 127.0.0.1:57433 3331495786 12 2200000093b90a0000000000 "........... +2685 8.045348406 127.0.0.1:57415 127.0.0.1:57433 3331495798 34 1e0000001c2118d0c46f33bb0100030000003fff0100000000006ec10dc39d01 .....!...o3.......?.......n....... +2687 8.045449734 127.0.0.1:57415 127.0.0.1:57433 3331495832 12 4300000094b90a0000000000 C........... +2689 8.045558929 127.0.0.1:57415 127.0.0.1:57433 3331495844 67 3f000000980433cb0cb47c3801000300000001000000003fff0100000000003d ?.....3...|8...........?.......=B.....&......... +2690 8.045627356 127.0.0.1:57433 127.0.0.1:57415 375831904 12 ffffffff93b90a0000000000 ............ +2691 8.045733452 127.0.0.1:57433 127.0.0.1:57415 375831916 12 ffffffff94b90a0000000000 ............ +2694 8.046967030 127.0.0.1:57433 127.0.0.1:57415 375831928 12 34000000b9980a0000000000 4........... +2696 8.047237635 127.0.0.1:57433 127.0.0.1:57415 375831940 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....?.........Qv.< +2698 8.047541380 127.0.0.1:57415 127.0.0.1:57433 3331495911 12 ffffffffb9980a0000000000 ............ +2699 8.048473597 127.0.0.1:57415 127.0.0.1:57433 3331495923 12 1e00000095b90a0000000000 ............ +2700 8.048580408 127.0.0.1:57415 127.0.0.1:57433 3331495935 30 1a00000055ceff62b21b3a5001000300000073ff1e000000000000000000 ....U..b..:P......s........... +2701 8.048836946 127.0.0.1:57433 127.0.0.1:57415 375831992 12 ffffffff95b90a0000000000 ............ +2703 8.049425602 127.0.0.1:57433 127.0.0.1:57415 375832004 12 1a000000ba980a0000000000 ............ +2705 8.049594164 127.0.0.1:57433 127.0.0.1:57415 375832016 26 1600000073ff1e00000000000100030000000000000000000000 ....s..................... +2707 8.049885988 127.0.0.1:57415 127.0.0.1:57433 3331495965 12 ffffffffba980a0000000000 ............ +2709 8.078046083 127.0.0.1:57415 127.0.0.1:57433 3331495977 12 1a00000096b90a0000000000 ............ +2711 8.078248262 127.0.0.1:57415 127.0.0.1:57433 3331495989 26 16000000548f6340e25e314001000300000075ff1e0000000000 ....T.c@.^1@......u....... +2713 8.078734875 127.0.0.1:57433 127.0.0.1:57415 375832042 12 ffffffff96b90a0000000000 ............ +2717 8.079404354 127.0.0.1:57433 127.0.0.1:57415 375832054 12 16000000bb980a0000000000 ............ +2719 8.079604149 127.0.0.1:57433 127.0.0.1:57415 375832066 22 1200000075ff1e000000000001000300000000000000 ....u................. +2721 8.079870701 127.0.0.1:57415 127.0.0.1:57433 3331496015 12 ffffffffbb980a0000000000 ............ +2753 8.114692211 127.0.0.1:57433 127.0.0.1:57415 375832088 12 feffffffcb370100dc370100 .....7...7.. +2762 8.156491756 127.0.0.1:57415 127.0.0.1:57433 3331496027 12 feffffffdd370100cb370100 .....7...7.. +2765 8.182764769 127.0.0.1:57415 127.0.0.1:57433 3331496039 12 1a00000097b90a0000000000 ............ +2767 8.182926655 127.0.0.1:57415 127.0.0.1:57433 3331496051 26 16000000548f6340e25e314001000300000077ff1e0000000000 ....T.c@.^1@......w....... +2769 8.183246374 127.0.0.1:57433 127.0.0.1:57415 375832100 12 ffffffff97b90a0000000000 ............ +2771 8.183802366 127.0.0.1:57433 127.0.0.1:57415 375832112 12 16000000bc980a0000000000 ............ +2773 8.184251070 127.0.0.1:57433 127.0.0.1:57415 375832124 22 1200000077ff1e000000000001000300000000000000 ....w................. +2775 8.184602261 127.0.0.1:57415 127.0.0.1:57433 3331496077 12 ffffffffbc980a0000000000 ............ +2816 8.285685778 127.0.0.1:57415 127.0.0.1:57433 3331496089 12 1a00000098b90a0000000000 ............ +2820 8.285854340 127.0.0.1:57415 127.0.0.1:57433 3331496101 26 16000000548f6340e25e314001000300000079ff1e0000000000 ....T.c@.^1@......y....... +2824 8.286344528 127.0.0.1:57433 127.0.0.1:57415 375832146 12 ffffffff98b90a0000000000 ............ +2826 8.286757946 127.0.0.1:57433 127.0.0.1:57415 375832158 12 16000000bd980a0000000000 ............ +2828 8.286932945 127.0.0.1:57433 127.0.0.1:57415 375832170 22 1200000079ff1e000000000001000300000000000000 ....y................. +2830 8.287293911 127.0.0.1:57415 127.0.0.1:57433 3331496127 12 ffffffffbd980a0000000000 ............ +2839 8.350101233 127.0.0.1:57415 127.0.0.1:57433 3331496139 12 6500000099b90a0000000000 e........... +2841 8.350301027 127.0.0.1:57415 127.0.0.1:57433 3331496151 101 1e0000001c2118d0c46f33bb01000300000040ff0100000000009fc20dc39d01 .....!...o3.......@...............?.....3...|8.. +2843 8.350669384 127.0.0.1:57433 127.0.0.1:57415 375832192 12 ffffffff99b90a0000000000 ............ +2845 8.351762533 127.0.0.1:57433 127.0.0.1:57415 375832204 12 34000000be980a0000000000 4........... +2847 8.351933002 127.0.0.1:57433 127.0.0.1:57415 375832216 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....@.........,..= +2849 8.352267265 127.0.0.1:57415 127.0.0.1:57433 3331496252 12 ffffffffbe980a0000000000 ............ +2851 8.353080511 127.0.0.1:57415 127.0.0.1:57433 3331496264 12 1e0000009ab90a0000000000 ............ +2853 8.353272676 127.0.0.1:57415 127.0.0.1:57433 3331496276 30 1a00000055ceff62b21b3a500100030000007bff1e000000000000000000 ....U..b..:P......{........... +2855 8.353636980 127.0.0.1:57433 127.0.0.1:57415 375832268 12 ffffffff9ab90a0000000000 ............ +2857 8.354200363 127.0.0.1:57433 127.0.0.1:57415 375832280 12 1a000000bf980a0000000000 ............ +2859 8.354456663 127.0.0.1:57433 127.0.0.1:57415 375832292 26 160000007bff1e00000000000100030000000000000000000000 ....{..................... +2861 8.354714155 127.0.0.1:57415 127.0.0.1:57433 3331496306 12 ffffffffbf980a0000000000 ............ +2863 8.388542652 127.0.0.1:57415 127.0.0.1:57433 3331496318 12 1a0000009bb90a0000000000 ............ +2865 8.388695002 127.0.0.1:57415 127.0.0.1:57433 3331496330 26 16000000548f6340e25e31400100030000007dff1e0000000000 ....T.c@.^1@......}....... +2867 8.389053345 127.0.0.1:57433 127.0.0.1:57415 375832318 12 ffffffff9bb90a0000000000 ............ +2869 8.389728308 127.0.0.1:57433 127.0.0.1:57415 375832330 12 16000000c0980a0000000000 ............ +2871 8.389901400 127.0.0.1:57433 127.0.0.1:57415 375832342 22 120000007dff1e000000000001000300000000000000 ....}................. +2873 8.390209436 127.0.0.1:57415 127.0.0.1:57433 3331496356 12 ffffffffc0980a0000000000 ............ +2877 8.491909981 127.0.0.1:57415 127.0.0.1:57433 3331496368 12 1a0000009cb90a0000000000 ............ +2879 8.492139101 127.0.0.1:57415 127.0.0.1:57433 3331496380 26 16000000548f6340e25e31400100030000007fff1e0000000000 ....T.c@.^1@.............. +2881 8.492395163 127.0.0.1:57433 127.0.0.1:57415 375832364 12 ffffffff9cb90a0000000000 ............ +2883 8.492938757 127.0.0.1:57433 127.0.0.1:57415 375832376 12 16000000c1980a0000000000 ............ +2885 8.493156433 127.0.0.1:57433 127.0.0.1:57415 375832388 22 120000007fff1e000000000001000300000000000000 ...................... +2887 8.493427515 127.0.0.1:57415 127.0.0.1:57433 3331496406 12 ffffffffc1980a0000000000 ............ +2898 8.594925165 127.0.0.1:57415 127.0.0.1:57433 3331496418 12 1a0000009db90a0000000000 ............ +2900 8.595144749 127.0.0.1:57415 127.0.0.1:57433 3331496430 26 16000000548f6340e25e314001000300000081ff1e0000000000 ....T.c@.^1@.............. +2902 8.595446110 127.0.0.1:57433 127.0.0.1:57415 375832410 12 ffffffff9db90a0000000000 ............ +2904 8.596155167 127.0.0.1:57433 127.0.0.1:57415 375832422 12 16000000c2980a0000000000 ............ +2906 8.596312046 127.0.0.1:57433 127.0.0.1:57415 375832434 22 1200000081ff1e000000000001000300000000000000 ...................... +2908 8.596523762 127.0.0.1:57415 127.0.0.1:57433 3331496456 12 ffffffffc2980a0000000000 ............ +2914 8.615853310 127.0.0.1:57433 127.0.0.1:57415 375832456 12 feffffffcc370100dd370100 .....7...7.. +2919 8.655410290 127.0.0.1:57415 127.0.0.1:57433 3331496468 12 220000009eb90a0000000000 "........... +2921 8.655648708 127.0.0.1:57415 127.0.0.1:57433 3331496480 34 1e0000001c2118d0c46f33bb01000300000041ff010000000000d1c30dc39d01 .....!...o3.......A............... +2923 8.655842781 127.0.0.1:57415 127.0.0.1:57433 3331496514 12 430000009fb90a0000000000 C........... +2925 8.655928135 127.0.0.1:57415 127.0.0.1:57433 3331496526 67 3f000000980433cb0cb47c38010003000000010000000041ff0100000000003d ?.....3...|8...........A.......=B.....&......... +2927 8.656175137 127.0.0.1:57433 127.0.0.1:57415 375832468 12 ffffffff9eb90a0000000000 ............ +2929 8.656395912 127.0.0.1:57433 127.0.0.1:57415 375832480 12 ffffffff9fb90a0000000000 ............ +2932 8.657090187 127.0.0.1:57415 127.0.0.1:57433 3331496593 12 feffffffde370100cc370100 .....7...7.. +2935 8.657338858 127.0.0.1:57433 127.0.0.1:57415 375832492 12 34000000c3980a0000000000 4........... +2937 8.657503843 127.0.0.1:57433 127.0.0.1:57415 375832504 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....A...........D= +2939 8.657868385 127.0.0.1:57415 127.0.0.1:57433 3331496605 12 ffffffffc3980a0000000000 ............ +2941 8.658699989 127.0.0.1:57415 127.0.0.1:57433 3331496617 12 1e000000a0b90a0000000000 ............ +2943 8.658865452 127.0.0.1:57415 127.0.0.1:57433 3331496629 30 1a00000055ceff62b21b3a5001000300000083ff1e000000000000000000 ....U..b..:P.................. +2945 8.659210443 127.0.0.1:57433 127.0.0.1:57415 375832556 12 ffffffffa0b90a0000000000 ............ +2947 8.659670353 127.0.0.1:57433 127.0.0.1:57415 375832568 12 1a000000c4980a0000000000 ............ +2949 8.659931183 127.0.0.1:57433 127.0.0.1:57415 375832580 26 1600000083ff1e00000000000100030000000000000000000000 .......................... +2951 8.660163164 127.0.0.1:57415 127.0.0.1:57433 3331496659 12 ffffffffc4980a0000000000 ............ +2955 8.698429585 127.0.0.1:57415 127.0.0.1:57433 3331496671 12 1a000000a1b90a0000000000 ............ +2957 8.698604584 127.0.0.1:57415 127.0.0.1:57433 3331496683 26 16000000548f6340e25e314001000300000085ff1e0000000000 ....T.c@.^1@.............. +2959 8.698935270 127.0.0.1:57433 127.0.0.1:57415 375832606 12 ffffffffa1b90a0000000000 ............ +2961 8.699472666 127.0.0.1:57433 127.0.0.1:57415 375832618 12 16000000c5980a0000000000 ............ +2963 8.699630260 127.0.0.1:57433 127.0.0.1:57415 375832630 22 1200000085ff1e000000000001000300000000000000 ...................... +2965 8.699965954 127.0.0.1:57415 127.0.0.1:57433 3331496709 12 ffffffffc5980a0000000000 ............ +2972 8.802431822 127.0.0.1:57415 127.0.0.1:57433 3331496721 12 1a000000a2b90a0000000000 ............ +2974 8.802617073 127.0.0.1:57415 127.0.0.1:57433 3331496733 26 16000000548f6340e25e314001000300000087ff1e0000000000 ....T.c@.^1@.............. +2976 8.803002596 127.0.0.1:57433 127.0.0.1:57415 375832652 12 ffffffffa2b90a0000000000 ............ +2978 8.803443432 127.0.0.1:57433 127.0.0.1:57415 375832664 12 16000000c6980a0000000000 ............ +2980 8.803603649 127.0.0.1:57433 127.0.0.1:57415 375832676 22 1200000087ff1e000000000001000300000000000000 ...................... +2982 8.804039955 127.0.0.1:57415 127.0.0.1:57433 3331496759 12 ffffffffc6980a0000000000 ............ +2988 8.906412840 127.0.0.1:57415 127.0.0.1:57433 3331496771 12 1a000000a3b90a0000000000 ............ +2990 8.906594038 127.0.0.1:57415 127.0.0.1:57433 3331496783 26 16000000548f6340e25e314001000300000089ff1e0000000000 ....T.c@.^1@.............. +2992 8.907038450 127.0.0.1:57433 127.0.0.1:57415 375832698 12 ffffffffa3b90a0000000000 ............ +2994 8.907495499 127.0.0.1:57433 127.0.0.1:57415 375832710 12 16000000c7980a0000000000 ............ +2996 8.907770634 127.0.0.1:57433 127.0.0.1:57415 375832722 22 1200000089ff1e000000000001000300000000000000 ...................... +2998 8.908066034 127.0.0.1:57415 127.0.0.1:57433 3331496809 12 ffffffffc7980a0000000000 ............ +3076 8.960800171 127.0.0.1:57415 127.0.0.1:57433 3331496821 12 65000000a4b90a0000000000 e........... +3078 8.961052895 127.0.0.1:57415 127.0.0.1:57433 3331496833 101 1e0000001c2118d0c46f33bb01000300000042ff01000000000002c50dc39d01 .....!...o3.......B...............?.....3...|8.. +3080 8.961323023 127.0.0.1:57433 127.0.0.1:57415 375832744 12 ffffffffa4b90a0000000000 ............ +3082 8.962635517 127.0.0.1:57433 127.0.0.1:57415 375832756 12 34000000c8980a0000000000 4........... +3084 8.962890148 127.0.0.1:57433 127.0.0.1:57415 375832768 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....B..........1s= +3086 8.963135481 127.0.0.1:57415 127.0.0.1:57433 3331496934 12 ffffffffc8980a0000000000 ............ +3088 8.963874578 127.0.0.1:57415 127.0.0.1:57433 3331496946 12 1e000000a5b90a0000000000 ............ +3090 8.964010239 127.0.0.1:57415 127.0.0.1:57433 3331496958 30 1a00000055ceff62b21b3a500100030000008bff1e000000000000000000 ....U..b..:P.................. +3092 8.964289665 127.0.0.1:57433 127.0.0.1:57415 375832820 12 ffffffffa5b90a0000000000 ............ +3094 8.964814901 127.0.0.1:57433 127.0.0.1:57415 375832832 12 1a000000c9980a0000000000 ............ +3096 8.965070248 127.0.0.1:57433 127.0.0.1:57415 375832844 26 160000008bff1e00000000000100030000000000000000000000 .......................... +3098 8.965316534 127.0.0.1:57415 127.0.0.1:57433 3331496988 12 ffffffffc9980a0000000000 ............ +3102 9.010365963 127.0.0.1:57415 127.0.0.1:57433 3331497000 12 1a000000a6b90a0000000000 ............ +3104 9.010533571 127.0.0.1:57415 127.0.0.1:57433 3331497012 26 16000000548f6340e25e31400100030000008dff1e0000000000 ....T.c@.^1@.............. +3106 9.011051416 127.0.0.1:57433 127.0.0.1:57415 375832870 12 ffffffffa6b90a0000000000 ............ +3108 9.011589766 127.0.0.1:57433 127.0.0.1:57415 375832882 12 16000000ca980a0000000000 ............ +3110 9.011788607 127.0.0.1:57433 127.0.0.1:57415 375832894 22 120000008dff1e000000000001000300000000000000 ...................... +3112 9.012168646 127.0.0.1:57415 127.0.0.1:57433 3331497038 12 ffffffffca980a0000000000 ............ +3359 9.113671064 127.0.0.1:57415 127.0.0.1:57433 3331497050 12 1a000000a7b90a0000000000 ............ +3363 9.113953352 127.0.0.1:57415 127.0.0.1:57433 3331497062 26 16000000548f6340e25e31400100030000008fff1e0000000000 ....T.c@.^1@.............. +3365 9.114335060 127.0.0.1:57433 127.0.0.1:57415 375832916 12 ffffffffa7b90a0000000000 ............ +3367 9.114971161 127.0.0.1:57433 127.0.0.1:57415 375832928 12 16000000cb980a0000000000 ............ +3369 9.115145206 127.0.0.1:57433 127.0.0.1:57415 375832940 22 120000008fff1e000000000001000300000000000000 ...................... +3371 9.115428448 127.0.0.1:57415 127.0.0.1:57433 3331497088 12 ffffffffcb980a0000000000 ............ +3373 9.117537737 127.0.0.1:57433 127.0.0.1:57415 375832962 12 feffffffcd370100de370100 .....7...7.. +3542 9.158340454 127.0.0.1:57415 127.0.0.1:57433 3331497100 12 feffffffdf370100cd370100 .....7...7.. +3555 9.217670918 127.0.0.1:57415 127.0.0.1:57433 3331497112 12 1a000000a8b90a0000000000 ............ +3557 9.217895508 127.0.0.1:57415 127.0.0.1:57433 3331497124 26 16000000548f6340e25e314001000300000091ff1e0000000000 ....T.c@.^1@.............. +3559 9.218286753 127.0.0.1:57433 127.0.0.1:57415 375832974 12 ffffffffa8b90a0000000000 ............ +3561 9.218877792 127.0.0.1:57433 127.0.0.1:57415 375832986 12 16000000cc980a0000000000 ............ +3563 9.219067574 127.0.0.1:57433 127.0.0.1:57415 375832998 22 1200000091ff1e000000000001000300000000000000 ...................... +3565 9.219373226 127.0.0.1:57415 127.0.0.1:57433 3331497150 12 ffffffffcc980a0000000000 ............ +3571 9.265972853 127.0.0.1:57415 127.0.0.1:57433 3331497162 12 22000000a9b90a0000000000 "........... +3573 9.266137362 127.0.0.1:57415 127.0.0.1:57433 3331497174 34 1e0000001c2118d0c46f33bb01000300000043ff01000000000033c60dc39d01 .....!...o3.......C.......3....... +3575 9.266225338 127.0.0.1:57415 127.0.0.1:57433 3331497208 12 43000000aab90a0000000000 C........... +3577 9.266309738 127.0.0.1:57415 127.0.0.1:57433 3331497220 67 3f000000980433cb0cb47c38010003000000010000000043ff0100000000003d ?.....3...|8...........C.......=B.....&......... +3579 9.266487837 127.0.0.1:57433 127.0.0.1:57415 375833020 12 ffffffffa9b90a0000000000 ............ +3581 9.266702175 127.0.0.1:57433 127.0.0.1:57415 375833032 12 ffffffffaab90a0000000000 ............ +3583 9.273122072 127.0.0.1:57433 127.0.0.1:57415 375833044 12 34000000cd980a0000000000 4........... +3585 9.273282766 127.0.0.1:57433 127.0.0.1:57415 375833056 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....C............= +3587 9.273552179 127.0.0.1:57415 127.0.0.1:57433 3331497287 12 ffffffffcd980a0000000000 ............ +3589 9.274522543 127.0.0.1:57415 127.0.0.1:57433 3331497299 12 1e000000abb90a0000000000 ............ +3591 9.274707317 127.0.0.1:57415 127.0.0.1:57433 3331497311 30 1a00000055ceff62b21b3a5001000300000093ff1e000000000000000000 ....U..b..:P.................. +3593 9.275172472 127.0.0.1:57433 127.0.0.1:57415 375833108 12 ffffffffabb90a0000000000 ............ +3595 9.278138161 127.0.0.1:57433 127.0.0.1:57415 375833120 12 1a000000ce980a0000000000 ............ +3597 9.278332710 127.0.0.1:57433 127.0.0.1:57415 375833132 26 1600000093ff1e00000000000100030000000000000000000000 .......................... +3599 9.278603077 127.0.0.1:57415 127.0.0.1:57433 3331497341 12 ffffffffce980a0000000000 ............ +3602 9.320894957 127.0.0.1:57415 127.0.0.1:57433 3331497353 12 1a000000acb90a0000000000 ............ +3605 9.321060896 127.0.0.1:57415 127.0.0.1:57433 3331497365 26 16000000548f6340e25e314001000300000095ff1e0000000000 ....T.c@.^1@.............. +3607 9.321387053 127.0.0.1:57433 127.0.0.1:57415 375833158 12 ffffffffacb90a0000000000 ............ +3609 9.321886778 127.0.0.1:57433 127.0.0.1:57415 375833170 12 16000000cf980a0000000000 ............ +3611 9.322098255 127.0.0.1:57433 127.0.0.1:57415 375833182 22 1200000095ff1e000000000001000300000000000000 ...................... +3613 9.322441101 127.0.0.1:57415 127.0.0.1:57433 3331497391 12 ffffffffcf980a0000000000 ............ +3617 9.423552990 127.0.0.1:57415 127.0.0.1:57433 3331497403 12 1a000000adb90a0000000000 ............ +3619 9.423742533 127.0.0.1:57415 127.0.0.1:57433 3331497415 26 16000000548f6340e25e314001000300000097ff1e0000000000 ....T.c@.^1@.............. +3621 9.424122334 127.0.0.1:57433 127.0.0.1:57415 375833204 12 ffffffffadb90a0000000000 ............ +3623 9.424494505 127.0.0.1:57433 127.0.0.1:57415 375833216 12 16000000d0980a0000000000 ............ +3625 9.424654245 127.0.0.1:57433 127.0.0.1:57415 375833228 22 1200000097ff1e000000000001000300000000000000 ...................... +3627 9.424953938 127.0.0.1:57415 127.0.0.1:57433 3331497441 12 ffffffffd0980a0000000000 ............ +3631 9.527506828 127.0.0.1:57415 127.0.0.1:57433 3331497453 12 1a000000aeb90a0000000000 ............ +3633 9.527680159 127.0.0.1:57415 127.0.0.1:57433 3331497465 26 16000000548f6340e25e314001000300000099ff1e0000000000 ....T.c@.^1@.............. +3635 9.528143883 127.0.0.1:57433 127.0.0.1:57415 375833250 12 ffffffffaeb90a0000000000 ............ +3637 9.528500080 127.0.0.1:57433 127.0.0.1:57415 375833262 12 16000000d1980a0000000000 ............ +3639 9.528656006 127.0.0.1:57433 127.0.0.1:57415 375833274 22 1200000099ff1e000000000001000300000000000000 ...................... +3641 9.528898716 127.0.0.1:57415 127.0.0.1:57433 3331497491 12 ffffffffd1980a0000000000 ............ +3643 9.577057600 127.0.0.1:57415 127.0.0.1:57433 3331497503 12 22000000afb90a0000000000 "........... +3645 9.577265739 127.0.0.1:57415 127.0.0.1:57433 3331497515 34 1e0000001c2118d0c46f33bb01000300000044ff0100000000006ac70dc39d01 .....!...o3.......D.......j....... +3647 9.577396154 127.0.0.1:57415 127.0.0.1:57433 3331497549 12 43000000b0b90a0000000000 C........... +3649 9.577520370 127.0.0.1:57415 127.0.0.1:57433 3331497561 67 3f000000980433cb0cb47c38010003000000010000000044ff0100000000003d ?.....3...|8...........D.......=B.....&......... +3651 9.577863455 127.0.0.1:57433 127.0.0.1:57415 375833296 12 ffffffffafb90a0000000000 ............ +3653 9.578099966 127.0.0.1:57433 127.0.0.1:57415 375833308 12 ffffffffb0b90a0000000000 ............ +3655 9.578732491 127.0.0.1:57433 127.0.0.1:57415 375833320 12 34000000d2980a0000000000 4........... +3657 9.578953028 127.0.0.1:57433 127.0.0.1:57415 375833332 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....D..........5.= +3659 9.579257488 127.0.0.1:57415 127.0.0.1:57433 3331497628 12 ffffffffd2980a0000000000 ............ +3661 9.580162048 127.0.0.1:57415 127.0.0.1:57433 3331497640 12 1e000000b1b90a0000000000 ............ +3663 9.580324650 127.0.0.1:57415 127.0.0.1:57433 3331497652 30 1a00000055ceff62b21b3a500100030000009bff1e000000000000000000 ....U..b..:P.................. +3665 9.580587864 127.0.0.1:57433 127.0.0.1:57415 375833384 12 ffffffffb1b90a0000000000 ............ +3667 9.581060410 127.0.0.1:57433 127.0.0.1:57415 375833396 12 1a000000d3980a0000000000 ............ +3669 9.581204414 127.0.0.1:57433 127.0.0.1:57415 375833408 26 160000009bff1e00000000000100030000000000000000000000 .......................... +3671 9.581416368 127.0.0.1:57415 127.0.0.1:57433 3331497682 12 ffffffffd3980a0000000000 ............ +3675 9.617745876 127.0.0.1:57433 127.0.0.1:57415 375833434 12 feffffffce370100df370100 .....7...7.. +3681 9.630667686 127.0.0.1:57415 127.0.0.1:57433 3331497694 12 1a000000b2b90a0000000000 ............ +3683 9.630900621 127.0.0.1:57415 127.0.0.1:57433 3331497706 26 16000000548f6340e25e31400100030000009dff1e0000000000 ....T.c@.^1@.............. +3685 9.631258011 127.0.0.1:57433 127.0.0.1:57415 375833446 12 ffffffffb2b90a0000000000 ............ +3687 9.631638288 127.0.0.1:57433 127.0.0.1:57415 375833458 12 16000000d4980a0000000000 ............ +3689 9.631820917 127.0.0.1:57433 127.0.0.1:57415 375833470 22 120000009dff1e000000000001000300000000000000 ...................... +3691 9.632569551 127.0.0.1:57415 127.0.0.1:57433 3331497732 12 ffffffffd4980a0000000000 ............ +3693 9.658793449 127.0.0.1:57415 127.0.0.1:57433 3331497744 12 feffffffe0370100ce370100 .....7...7.. +3703 9.734478474 127.0.0.1:57415 127.0.0.1:57433 3331497756 12 1a000000b3b90a0000000000 ............ +3705 9.734723806 127.0.0.1:57415 127.0.0.1:57433 3331497768 26 16000000548f6340e25e31400100030000009fff1e0000000000 ....T.c@.^1@.............. +3707 9.735154152 127.0.0.1:57433 127.0.0.1:57415 375833492 12 ffffffffb3b90a0000000000 ............ +3709 9.735431671 127.0.0.1:57433 127.0.0.1:57415 375833504 12 16000000d5980a0000000000 ............ +3711 9.735624552 127.0.0.1:57433 127.0.0.1:57415 375833516 22 120000009fff1e000000000001000300000000000000 ...................... +3713 9.735910177 127.0.0.1:57415 127.0.0.1:57433 3331497794 12 ffffffffd5980a0000000000 ............ +3719 9.837365866 127.0.0.1:57415 127.0.0.1:57433 3331497806 12 1a000000b4b90a0000000000 ............ +3721 9.837560892 127.0.0.1:57415 127.0.0.1:57433 3331497818 26 16000000548f6340e25e3140010003000000a1ff1e0000000000 ....T.c@.^1@.............. +3723 9.837829351 127.0.0.1:57433 127.0.0.1:57415 375833538 12 ffffffffb4b90a0000000000 ............ +3725 9.838735819 127.0.0.1:57433 127.0.0.1:57415 375833550 12 16000000d6980a0000000000 ............ +3727 9.838971376 127.0.0.1:57433 127.0.0.1:57415 375833562 22 12000000a1ff1e000000000001000300000000000000 ...................... +3729 9.839232922 127.0.0.1:57415 127.0.0.1:57433 3331497844 12 ffffffffd6980a0000000000 ............ +3733 9.881189108 127.0.0.1:57415 127.0.0.1:57433 3331497856 12 65000000b5b90a0000000000 e........... +3735 9.881364107 127.0.0.1:57415 127.0.0.1:57433 3331497868 101 1e0000001c2118d0c46f33bb01000300000045ff0100000000009ac80dc39d01 .....!...o3.......E...............?.....3...|8.. +3737 9.881722450 127.0.0.1:57433 127.0.0.1:57415 375833584 12 ffffffffb5b90a0000000000 ............ +3739 9.883516550 127.0.0.1:57433 127.0.0.1:57415 375833596 12 34000000d7980a0000000000 4........... +3741 9.883733749 127.0.0.1:57433 127.0.0.1:57415 375833608 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....E............= +3743 9.884005308 127.0.0.1:57415 127.0.0.1:57433 3331497969 12 ffffffffd7980a0000000000 ............ +3745 9.884786606 127.0.0.1:57415 127.0.0.1:57433 3331497981 12 1e000000b6b90a0000000000 ............ +3747 9.885024071 127.0.0.1:57415 127.0.0.1:57433 3331497993 30 1a00000055ceff62b21b3a50010003000000a3ff1e000000000000000000 ....U..b..:P.................. +3749 9.885436058 127.0.0.1:57433 127.0.0.1:57415 375833660 12 ffffffffb6b90a0000000000 ............ +3751 9.885770798 127.0.0.1:57433 127.0.0.1:57415 375833672 12 1a000000d8980a0000000000 ............ +3753 9.885980844 127.0.0.1:57433 127.0.0.1:57415 375833684 26 16000000a3ff1e00000000000100030000000000000000000000 .......................... +3755 9.886255503 127.0.0.1:57415 127.0.0.1:57433 3331498023 12 ffffffffd8980a0000000000 ............ +3757 9.940959692 127.0.0.1:57415 127.0.0.1:57433 3331498035 12 1a000000b7b90a0000000000 ............ +3759 9.941123247 127.0.0.1:57415 127.0.0.1:57433 3331498047 26 16000000548f6340e25e3140010003000000a5ff1e0000000000 ....T.c@.^1@.............. +3761 9.941542625 127.0.0.1:57433 127.0.0.1:57415 375833710 12 ffffffffb7b90a0000000000 ............ +3763 9.942021847 127.0.0.1:57433 127.0.0.1:57415 375833722 12 16000000d9980a0000000000 ............ +3765 9.942240238 127.0.0.1:57433 127.0.0.1:57415 375833734 22 12000000a5ff1e000000000001000300000000000000 ...................... +3767 9.942591667 127.0.0.1:57415 127.0.0.1:57433 3331498073 12 ffffffffd9980a0000000000 ............ +3771 10.044424772 127.0.0.1:57415 127.0.0.1:57433 3331498085 12 1a000000b8b90a0000000000 ............ +3773 10.044670343 127.0.0.1:57415 127.0.0.1:57433 3331498097 26 16000000548f6340e25e3140010003000000a7ff1e0000000000 ....T.c@.^1@.............. +3775 10.045196533 127.0.0.1:57433 127.0.0.1:57415 375833756 12 ffffffffb8b90a0000000000 ............ +3777 10.045921564 127.0.0.1:57433 127.0.0.1:57415 375833768 12 16000000da980a0000000000 ............ +3779 10.046137333 127.0.0.1:57433 127.0.0.1:57415 375833780 22 12000000a7ff1e000000000001000300000000000000 ...................... +3781 10.046419859 127.0.0.1:57415 127.0.0.1:57433 3331498123 12 ffffffffda980a0000000000 ............ +3787 10.119477987 127.0.0.1:57433 127.0.0.1:57415 375833802 12 feffffffcf370100e0370100 .....7...7.. +3791 10.149542332 127.0.0.1:57415 127.0.0.1:57433 3331498135 12 1a000000b9b90a0000000000 ............ +3793 10.149746656 127.0.0.1:57415 127.0.0.1:57433 3331498147 26 16000000548f6340e25e3140010003000000a9ff1e0000000000 ....T.c@.^1@.............. +3795 10.150049925 127.0.0.1:57433 127.0.0.1:57415 375833814 12 ffffffffb9b90a0000000000 ............ +3797 10.150748968 127.0.0.1:57433 127.0.0.1:57415 375833826 12 16000000db980a0000000000 ............ +3799 10.150909424 127.0.0.1:57433 127.0.0.1:57415 375833838 22 12000000a9ff1e000000000001000300000000000000 ...................... +3801 10.151191950 127.0.0.1:57415 127.0.0.1:57433 3331498173 12 ffffffffdb980a0000000000 ............ +3803 10.159353018 127.0.0.1:57415 127.0.0.1:57433 3331498185 12 feffffffe1370100cf370100 .....7...7.. +3807 10.186084509 127.0.0.1:57415 127.0.0.1:57433 3331498197 12 65000000bab90a0000000000 e........... +3809 10.186256886 127.0.0.1:57415 127.0.0.1:57433 3331498209 101 1e0000001c2118d0c46f33bb01000300000046ff010000000000cbc90dc39d01 .....!...o3.......F...............?.....3...|8.. +3811 10.186575413 127.0.0.1:57433 127.0.0.1:57415 375833860 12 ffffffffbab90a0000000000 ............ +3813 10.187667131 127.0.0.1:57433 127.0.0.1:57415 375833872 12 34000000dc980a0000000000 4........... +3815 10.187916279 127.0.0.1:57433 127.0.0.1:57415 375833884 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....F............> +3817 10.188223362 127.0.0.1:57415 127.0.0.1:57433 3331498310 12 ffffffffdc980a0000000000 ............ +3819 10.189038754 127.0.0.1:57415 127.0.0.1:57433 3331498322 12 1e000000bbb90a0000000000 ............ +3821 10.189239025 127.0.0.1:57415 127.0.0.1:57433 3331498334 30 1a00000055ceff62b21b3a50010003000000abff1e000000000000000000 ....U..b..:P.................. +3823 10.189619541 127.0.0.1:57433 127.0.0.1:57415 375833936 12 ffffffffbbb90a0000000000 ............ +3825 10.190097809 127.0.0.1:57433 127.0.0.1:57415 375833948 12 1a000000dd980a0000000000 ............ +3827 10.190302849 127.0.0.1:57433 127.0.0.1:57415 375833960 26 16000000abff1e00000000000100030000000000000000000000 .......................... +3829 10.190555096 127.0.0.1:57415 127.0.0.1:57433 3331498364 12 ffffffffdd980a0000000000 ............ +3837 10.253977537 127.0.0.1:57415 127.0.0.1:57433 3331498376 12 1a000000bcb90a0000000000 ............ +3839 10.254243135 127.0.0.1:57415 127.0.0.1:57433 3331498388 26 16000000548f6340e25e3140010003000000adff1e0000000000 ....T.c@.^1@.............. +3841 10.254670620 127.0.0.1:57433 127.0.0.1:57415 375833986 12 ffffffffbcb90a0000000000 ............ +3843 10.255832434 127.0.0.1:57433 127.0.0.1:57415 375833998 12 16000000de980a0000000000 ............ +3845 10.256114483 127.0.0.1:57433 127.0.0.1:57415 375834010 22 12000000adff1e000000000001000300000000000000 ...................... +3847 10.256400824 127.0.0.1:57415 127.0.0.1:57433 3331498414 12 ffffffffde980a0000000000 ............ +3865 10.357898951 127.0.0.1:57415 127.0.0.1:57433 3331498426 12 1a000000bdb90a0000000000 ............ +3867 10.358128786 127.0.0.1:57415 127.0.0.1:57433 3331498438 26 16000000548f6340e25e3140010003000000afff1e0000000000 ....T.c@.^1@.............. +3869 10.358401537 127.0.0.1:57433 127.0.0.1:57415 375834032 12 ffffffffbdb90a0000000000 ............ +3871 10.358917952 127.0.0.1:57433 127.0.0.1:57415 375834044 12 16000000df980a0000000000 ............ +3873 10.359188557 127.0.0.1:57433 127.0.0.1:57415 375834056 22 12000000afff1e000000000001000300000000000000 ...................... +3875 10.359495640 127.0.0.1:57415 127.0.0.1:57433 3331498464 12 ffffffffdf980a0000000000 ............ +3889 10.460957766 127.0.0.1:57415 127.0.0.1:57433 3331498476 12 1a000000beb90a0000000000 ............ +3891 10.461132765 127.0.0.1:57415 127.0.0.1:57433 3331498488 26 16000000548f6340e25e3140010003000000b1ff1e0000000000 ....T.c@.^1@.............. +3893 10.461568594 127.0.0.1:57433 127.0.0.1:57415 375834078 12 ffffffffbeb90a0000000000 ............ +3895 10.462412834 127.0.0.1:57433 127.0.0.1:57415 375834090 12 16000000e0980a0000000000 ............ +3897 10.462582588 127.0.0.1:57433 127.0.0.1:57415 375834102 22 12000000b1ff1e000000000001000300000000000000 ...................... +3899 10.462860584 127.0.0.1:57415 127.0.0.1:57433 3331498514 12 ffffffffe0980a0000000000 ............ +3901 10.489818811 127.0.0.1:57415 127.0.0.1:57433 3331498526 12 22000000bfb90a0000000000 "........... +3903 10.490015030 127.0.0.1:57415 127.0.0.1:57433 3331498538 34 1e0000001c2118d0c46f33bb01000300000047ff010000000000fbca0dc39d01 .....!...o3.......G............... +3905 10.490103483 127.0.0.1:57415 127.0.0.1:57433 3331498572 12 43000000c0b90a0000000000 C........... +3907 10.490187168 127.0.0.1:57415 127.0.0.1:57433 3331498584 67 3f000000980433cb0cb47c38010003000000010000000047ff0100000000003d ?.....3...|8...........G.......=B.....&......... +3909 10.490293264 127.0.0.1:57433 127.0.0.1:57415 375834124 12 ffffffffbfb90a0000000000 ............ +3911 10.490513563 127.0.0.1:57433 127.0.0.1:57415 375834136 12 ffffffffc0b90a0000000000 ............ +3913 10.491237879 127.0.0.1:57433 127.0.0.1:57415 375834148 12 34000000e1980a0000000000 4........... +3915 10.491405487 127.0.0.1:57433 127.0.0.1:57415 375834160 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....G..........p\> +3917 10.491687059 127.0.0.1:57415 127.0.0.1:57433 3331498651 12 ffffffffe1980a0000000000 ............ +3919 10.492480516 127.0.0.1:57415 127.0.0.1:57433 3331498663 12 1e000000c1b90a0000000000 ............ +3921 10.492624521 127.0.0.1:57415 127.0.0.1:57433 3331498675 30 1a00000055ceff62b21b3a50010003000000b3ff1e000000000000000000 ....U..b..:P.................. +3923 10.492905855 127.0.0.1:57433 127.0.0.1:57415 375834212 12 ffffffffc1b90a0000000000 ............ +3925 10.493307114 127.0.0.1:57433 127.0.0.1:57415 375834224 12 1a000000e2980a0000000000 ............ +3927 10.493487120 127.0.0.1:57433 127.0.0.1:57415 375834236 26 16000000b3ff1e00000000000100030000000000000000000000 .......................... +3929 10.493825436 127.0.0.1:57415 127.0.0.1:57433 3331498705 12 ffffffffe2980a0000000000 ............ +3933 10.564578056 127.0.0.1:57415 127.0.0.1:57433 3331498717 12 1a000000c2b90a0000000000 ............ +3935 10.564777851 127.0.0.1:57415 127.0.0.1:57433 3331498729 26 16000000548f6340e25e3140010003000000b5ff1e0000000000 ....T.c@.^1@.............. +3937 10.565196037 127.0.0.1:57433 127.0.0.1:57415 375834262 12 ffffffffc2b90a0000000000 ............ +3939 10.565653563 127.0.0.1:57433 127.0.0.1:57415 375834274 12 16000000e3980a0000000000 ............ +3941 10.565826654 127.0.0.1:57433 127.0.0.1:57415 375834286 22 12000000b5ff1e000000000001000300000000000000 ...................... +3943 10.566062689 127.0.0.1:57415 127.0.0.1:57433 3331498755 12 ffffffffe3980a0000000000 ............ +3948 10.619427443 127.0.0.1:57433 127.0.0.1:57415 375834308 12 feffffffd0370100e1370100 .....7...7.. +3954 10.660299063 127.0.0.1:57415 127.0.0.1:57433 3331498767 12 feffffffe2370100d0370100 .....7...7.. +3957 10.668265104 127.0.0.1:57415 127.0.0.1:57433 3331498779 12 1a000000c3b90a0000000000 ............ +3959 10.668434620 127.0.0.1:57415 127.0.0.1:57433 3331498791 26 16000000548f6340e25e3140010003000000b7ff1e0000000000 ....T.c@.^1@.............. +3961 10.668773413 127.0.0.1:57433 127.0.0.1:57415 375834320 12 ffffffffc3b90a0000000000 ............ +3963 10.669429779 127.0.0.1:57433 127.0.0.1:57415 375834332 12 16000000e4980a0000000000 ............ +3965 10.669595003 127.0.0.1:57433 127.0.0.1:57415 375834344 22 12000000b7ff1e000000000001000300000000000000 ...................... +3967 10.669915676 127.0.0.1:57415 127.0.0.1:57433 3331498817 12 ffffffffe4980a0000000000 ............ +3975 10.771323919 127.0.0.1:57415 127.0.0.1:57433 3331498829 12 1a000000c4b90a0000000000 ............ +3977 10.771525860 127.0.0.1:57415 127.0.0.1:57433 3331498841 26 16000000548f6340e25e3140010003000000b9ff1e0000000000 ....T.c@.^1@.............. +3979 10.772265196 127.0.0.1:57433 127.0.0.1:57415 375834366 12 ffffffffc4b90a0000000000 ............ +3981 10.772504568 127.0.0.1:57433 127.0.0.1:57415 375834378 12 16000000e5980a0000000000 ............ +3983 10.772691250 127.0.0.1:57433 127.0.0.1:57415 375834390 22 12000000b9ff1e000000000001000300000000000000 ...................... +3985 10.772965431 127.0.0.1:57415 127.0.0.1:57433 3331498867 12 ffffffffe5980a0000000000 ............ +3987 10.794924736 127.0.0.1:57415 127.0.0.1:57433 3331498879 12 65000000c5b90a0000000000 e........... +3989 10.795094252 127.0.0.1:57415 127.0.0.1:57433 3331498891 101 1e0000001c2118d0c46f33bb01000300000048ff0100000000002ccc0dc39d01 .....!...o3.......H.......,.......?.....3...|8.. +3991 10.795357704 127.0.0.1:57433 127.0.0.1:57415 375834412 12 ffffffffc5b90a0000000000 ............ +3993 10.796616554 127.0.0.1:57433 127.0.0.1:57415 375834424 12 34000000e6980a0000000000 4........... +3995 10.796767473 127.0.0.1:57433 127.0.0.1:57415 375834436 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....H............> +3997 10.797045946 127.0.0.1:57415 127.0.0.1:57433 3331498992 12 ffffffffe6980a0000000000 ............ +3999 10.797806740 127.0.0.1:57415 127.0.0.1:57433 3331499004 12 1e000000c6b90a0000000000 ............ +4001 10.798101664 127.0.0.1:57415 127.0.0.1:57433 3331499016 30 1a00000055ceff62b21b3a50010003000000bbff1e000000000000000000 ....U..b..:P.................. +4003 10.798437119 127.0.0.1:57433 127.0.0.1:57415 375834488 12 ffffffffc6b90a0000000000 ............ +4005 10.798789740 127.0.0.1:57433 127.0.0.1:57415 375834500 12 1a000000e7980a0000000000 ............ +4007 10.798965216 127.0.0.1:57433 127.0.0.1:57415 375834512 26 16000000bbff1e00000000000100030000000000000000000000 .......................... +4009 10.799181461 127.0.0.1:57415 127.0.0.1:57433 3331499046 12 ffffffffe7980a0000000000 ............ +4015 10.874985218 127.0.0.1:57415 127.0.0.1:57433 3331499058 12 1a000000c7b90a0000000000 ............ +4017 10.875286341 127.0.0.1:57415 127.0.0.1:57433 3331499070 26 16000000548f6340e25e3140010003000000bdff1e0000000000 ....T.c@.^1@.............. +4019 10.875755548 127.0.0.1:57433 127.0.0.1:57415 375834538 12 ffffffffc7b90a0000000000 ............ +4021 10.876374960 127.0.0.1:57433 127.0.0.1:57415 375834550 12 16000000e8980a0000000000 ............ +4023 10.876815081 127.0.0.1:57433 127.0.0.1:57415 375834562 22 12000000bdff1e000000000001000300000000000000 ...................... +4025 10.877128839 127.0.0.1:57415 127.0.0.1:57433 3331499096 12 ffffffffe8980a0000000000 ............ +4027 10.978887081 127.0.0.1:57415 127.0.0.1:57433 3331499108 12 1a000000c8b90a0000000000 ............ +4029 10.979081869 127.0.0.1:57415 127.0.0.1:57433 3331499120 26 16000000548f6340e25e3140010003000000bfff1e0000000000 ....T.c@.^1@.............. +4031 10.979508638 127.0.0.1:57433 127.0.0.1:57415 375834584 12 ffffffffc8b90a0000000000 ............ +4033 10.980756998 127.0.0.1:57433 127.0.0.1:57415 375834596 12 16000000e9980a0000000000 ............ +4035 10.980925322 127.0.0.1:57433 127.0.0.1:57415 375834608 22 12000000bfff1e000000000001000300000000000000 ...................... +4037 10.981325626 127.0.0.1:57415 127.0.0.1:57433 3331499146 12 ffffffffe9980a0000000000 ............ +4041 11.082584858 127.0.0.1:57415 127.0.0.1:57433 3331499158 12 1a000000c9b90a0000000000 ............ +4043 11.082831860 127.0.0.1:57415 127.0.0.1:57433 3331499170 26 16000000548f6340e25e3140010003000000c1ff1e0000000000 ....T.c@.^1@.............. +4045 11.083188057 127.0.0.1:57433 127.0.0.1:57415 375834630 12 ffffffffc9b90a0000000000 ............ +4047 11.083900452 127.0.0.1:57433 127.0.0.1:57415 375834642 12 16000000ea980a0000000000 ............ +4049 11.084105968 127.0.0.1:57433 127.0.0.1:57415 375834654 22 12000000c1ff1e000000000001000300000000000000 ...................... +4051 11.084486961 127.0.0.1:57415 127.0.0.1:57433 3331499196 12 ffffffffea980a0000000000 ............ +4053 11.098815203 127.0.0.1:57415 127.0.0.1:57433 3331499208 12 65000000cab90a0000000000 e........... +4055 11.099013567 127.0.0.1:57415 127.0.0.1:57433 3331499220 101 1e0000001c2118d0c46f33bb01000300000049ff0100000000005ccd0dc39d01 .....!...o3.......I.......\.......?.....3...|8.. +4057 11.099363565 127.0.0.1:57433 127.0.0.1:57415 375834676 12 ffffffffcab90a0000000000 ............ +4059 11.101831198 127.0.0.1:57433 127.0.0.1:57415 375834688 12 34000000eb980a0000000000 4........... +4061 11.102006197 127.0.0.1:57433 127.0.0.1:57415 375834700 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....I............> +4063 11.102217913 127.0.0.1:57415 127.0.0.1:57433 3331499321 12 ffffffffeb980a0000000000 ............ +4065 11.103028059 127.0.0.1:57415 127.0.0.1:57433 3331499333 12 1e000000cbb90a0000000000 ............ +4067 11.103204727 127.0.0.1:57415 127.0.0.1:57433 3331499345 30 1a00000055ceff62b21b3a50010003000000c3ff1e000000000000000000 ....U..b..:P.................. +4069 11.103518486 127.0.0.1:57433 127.0.0.1:57415 375834752 12 ffffffffcbb90a0000000000 ............ +4071 11.104038000 127.0.0.1:57433 127.0.0.1:57415 375834764 12 1a000000ec980a0000000000 ............ +4073 11.104182243 127.0.0.1:57433 127.0.0.1:57415 375834776 26 16000000c3ff1e00000000000100030000000000000000000000 .......................... +4075 11.104418516 127.0.0.1:57415 127.0.0.1:57433 3331499375 12 ffffffffec980a0000000000 ............ +4077 11.120184660 127.0.0.1:57433 127.0.0.1:57415 375834802 12 feffffffd1370100e2370100 .....7...7.. +4085 11.161404133 127.0.0.1:57415 127.0.0.1:57433 3331499387 12 feffffffe3370100d1370100 .....7...7.. +4089 11.186838627 127.0.0.1:57415 127.0.0.1:57433 3331499399 12 1a000000ccb90a0000000000 ............ +4091 11.187008619 127.0.0.1:57415 127.0.0.1:57433 3331499411 26 16000000548f6340e25e3140010003000000c5ff1e0000000000 ....T.c@.^1@.............. +4093 11.187350035 127.0.0.1:57433 127.0.0.1:57415 375834814 12 ffffffffccb90a0000000000 ............ +4095 11.187862396 127.0.0.1:57433 127.0.0.1:57415 375834826 12 16000000ed980a0000000000 ............ +4097 11.188064337 127.0.0.1:57433 127.0.0.1:57415 375834838 22 12000000c5ff1e000000000001000300000000000000 ...................... +4099 11.188364506 127.0.0.1:57415 127.0.0.1:57433 3331499437 12 ffffffffed980a0000000000 ............ +4107 11.290086746 127.0.0.1:57415 127.0.0.1:57433 3331499449 12 1a000000cdb90a0000000000 ............ +4109 11.290319443 127.0.0.1:57415 127.0.0.1:57433 3331499461 26 16000000548f6340e25e3140010003000000c7ff1e0000000000 ....T.c@.^1@.............. +4111 11.290657997 127.0.0.1:57433 127.0.0.1:57415 375834860 12 ffffffffcdb90a0000000000 ............ +4113 11.291272163 127.0.0.1:57433 127.0.0.1:57415 375834872 12 16000000ee980a0000000000 ............ +4115 11.291430235 127.0.0.1:57433 127.0.0.1:57415 375834884 22 12000000c7ff1e000000000001000300000000000000 ...................... +4117 11.291648626 127.0.0.1:57415 127.0.0.1:57433 3331499487 12 ffffffffee980a0000000000 ............ +4123 11.392735243 127.0.0.1:57415 127.0.0.1:57433 3331499499 12 1a000000ceb90a0000000000 ............ +4125 11.392985344 127.0.0.1:57415 127.0.0.1:57433 3331499511 26 16000000548f6340e25e3140010003000000c9ff1e0000000000 ....T.c@.^1@.............. +4127 11.393425226 127.0.0.1:57433 127.0.0.1:57415 375834906 12 ffffffffceb90a0000000000 ............ +4129 11.393932581 127.0.0.1:57433 127.0.0.1:57415 375834918 12 16000000ef980a0000000000 ............ +4131 11.394189119 127.0.0.1:57433 127.0.0.1:57415 375834930 22 12000000c9ff1e000000000001000300000000000000 ...................... +4133 11.394407511 127.0.0.1:57415 127.0.0.1:57433 3331499537 12 ffffffffef980a0000000000 ............ +4135 11.405036926 127.0.0.1:57415 127.0.0.1:57433 3331499549 12 22000000cfb90a0000000000 "........... +4137 11.405250311 127.0.0.1:57415 127.0.0.1:57433 3331499561 34 1e0000001c2118d0c46f33bb0100030000004aff0100000000008ece0dc39d01 .....!...o3.......J............... +4139 11.405394554 127.0.0.1:57415 127.0.0.1:57433 3331499595 12 43000000d0b90a0000000000 C........... +4141 11.405481339 127.0.0.1:57415 127.0.0.1:57433 3331499607 67 3f000000980433cb0cb47c3801000300000001000000004aff0100000000003d ?.....3...|8...........J.......=B.....&......... +4142 11.405560970 127.0.0.1:57433 127.0.0.1:57415 375834952 12 ffffffffcfb90a0000000000 ............ +4143 11.405656099 127.0.0.1:57433 127.0.0.1:57415 375834964 12 ffffffffd0b90a0000000000 ............ +4146 11.406723261 127.0.0.1:57433 127.0.0.1:57415 375834976 12 34000000f0980a0000000000 4........... +4148 11.406913280 127.0.0.1:57433 127.0.0.1:57415 375834988 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....J..........!.> +4150 11.407163620 127.0.0.1:57415 127.0.0.1:57433 3331499674 12 fffffffff0980a0000000000 ............ +4151 11.407982588 127.0.0.1:57415 127.0.0.1:57433 3331499686 12 1e000000d1b90a0000000000 ............ +4152 11.408117771 127.0.0.1:57415 127.0.0.1:57433 3331499698 30 1a00000055ceff62b21b3a50010003000000cbff1e000000000000000000 ....U..b..:P.................. +4153 11.408391237 127.0.0.1:57433 127.0.0.1:57415 375835040 12 ffffffffd1b90a0000000000 ............ +4155 11.408750772 127.0.0.1:57433 127.0.0.1:57415 375835052 12 1a000000f1980a0000000000 ............ +4157 11.408908367 127.0.0.1:57433 127.0.0.1:57415 375835064 26 16000000cbff1e00000000000100030000000000000000000000 .......................... +4159 11.409133196 127.0.0.1:57415 127.0.0.1:57433 3331499728 12 fffffffff1980a0000000000 ............ +4161 11.496446133 127.0.0.1:57415 127.0.0.1:57433 3331499740 12 1a000000d2b90a0000000000 ............ +4163 11.496632814 127.0.0.1:57415 127.0.0.1:57433 3331499752 26 16000000548f6340e25e3140010003000000cdff1e0000000000 ....T.c@.^1@.............. +4165 11.497004747 127.0.0.1:57433 127.0.0.1:57415 375835090 12 ffffffffd2b90a0000000000 ............ +4167 11.497529745 127.0.0.1:57433 127.0.0.1:57415 375835102 12 16000000f2980a0000000000 ............ +4169 11.497702360 127.0.0.1:57433 127.0.0.1:57415 375835114 22 12000000cdff1e000000000001000300000000000000 ...................... +4171 11.498027325 127.0.0.1:57415 127.0.0.1:57433 3331499778 12 fffffffff2980a0000000000 ............ +4175 11.600964785 127.0.0.1:57415 127.0.0.1:57433 3331499790 12 1a000000d3b90a0000000000 ............ +4177 11.601189852 127.0.0.1:57415 127.0.0.1:57433 3331499802 26 16000000548f6340e25e3140010003000000cfff1e0000000000 ....T.c@.^1@.............. +4179 11.601659775 127.0.0.1:57433 127.0.0.1:57415 375835136 12 ffffffffd3b90a0000000000 ............ +4181 11.602230787 127.0.0.1:57433 127.0.0.1:57415 375835148 12 16000000f3980a0000000000 ............ +4183 11.602549553 127.0.0.1:57433 127.0.0.1:57415 375835160 22 12000000cfff1e000000000001000300000000000000 ...................... +4185 11.602826595 127.0.0.1:57415 127.0.0.1:57433 3331499828 12 fffffffff3980a0000000000 ............ +4190 11.621181965 127.0.0.1:57433 127.0.0.1:57415 375835182 12 feffffffd2370100e3370100 .....7...7.. +4197 11.662644625 127.0.0.1:57415 127.0.0.1:57433 3331499840 12 feffffffe4370100d2370100 .....7...7.. +4203 11.704325199 127.0.0.1:57415 127.0.0.1:57433 3331499852 12 1a000000d4b90a0000000000 ............ +4205 11.704487085 127.0.0.1:57415 127.0.0.1:57433 3331499864 26 16000000548f6340e25e3140010003000000d1ff1e0000000000 ....T.c@.^1@.............. +4209 11.704867363 127.0.0.1:57433 127.0.0.1:57415 375835194 12 ffffffffd4b90a0000000000 ............ +4211 11.705285549 127.0.0.1:57433 127.0.0.1:57415 375835206 12 16000000f4980a0000000000 ............ +4213 11.705436468 127.0.0.1:57433 127.0.0.1:57415 375835218 22 12000000d1ff1e000000000001000300000000000000 ...................... +4215 11.705831766 127.0.0.1:57415 127.0.0.1:57433 3331499890 12 fffffffff4980a0000000000 ............ +4219 11.708687544 127.0.0.1:57415 127.0.0.1:57433 3331499902 12 22000000d5b90a0000000000 "........... +4221 11.708909750 127.0.0.1:57415 127.0.0.1:57433 3331499914 34 1e0000001c2118d0c46f33bb0100030000004bff010000000000becf0dc39d01 .....!...o3.......K............... +4223 11.709044695 127.0.0.1:57415 127.0.0.1:57433 3331499948 12 43000000d6b90a0000000000 C........... +4225 11.709129333 127.0.0.1:57415 127.0.0.1:57433 3331499960 67 3f000000980433cb0cb47c3801000300000001000000004bff0100000000003d ?.....3...|8...........K.......=B.....&......... +4227 11.709213734 127.0.0.1:57433 127.0.0.1:57415 375835240 12 ffffffffd5b90a0000000000 ............ +4229 11.709408760 127.0.0.1:57433 127.0.0.1:57415 375835252 12 ffffffffd6b90a0000000000 ............ +4231 11.710037947 127.0.0.1:57433 127.0.0.1:57415 375835264 12 34000000f5980a0000000000 4........... +4233 11.710180998 127.0.0.1:57433 127.0.0.1:57415 375835276 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....K..........l.? +4235 11.710595131 127.0.0.1:57415 127.0.0.1:57433 3331500027 12 fffffffff5980a0000000000 ............ +4237 11.711301088 127.0.0.1:57415 127.0.0.1:57433 3331500039 12 1e000000d7b90a0000000000 ............ +4239 11.711482286 127.0.0.1:57415 127.0.0.1:57433 3331500051 30 1a00000055ceff62b21b3a50010003000000d3ff1e000000000000000000 ....U..b..:P.................. +4241 11.711704969 127.0.0.1:57433 127.0.0.1:57415 375835328 12 ffffffffd7b90a0000000000 ............ +4243 11.712123871 127.0.0.1:57433 127.0.0.1:57415 375835340 12 1a000000f6980a0000000000 ............ +4245 11.712290049 127.0.0.1:57433 127.0.0.1:57415 375835352 26 16000000d3ff1e00000000000100030000000000000000000000 .......................... +4247 11.712472200 127.0.0.1:57415 127.0.0.1:57433 3331500081 12 fffffffff6980a0000000000 ............ +4249 11.808823347 127.0.0.1:57415 127.0.0.1:57433 3331500093 12 1a000000d8b90a0000000000 ............ +4251 11.809017897 127.0.0.1:57415 127.0.0.1:57433 3331500105 26 16000000548f6340e25e3140010003000000d5ff1e0000000000 ....T.c@.^1@.............. +4253 11.809399843 127.0.0.1:57433 127.0.0.1:57415 375835378 12 ffffffffd8b90a0000000000 ............ +4255 11.809899092 127.0.0.1:57433 127.0.0.1:57415 375835390 12 16000000f7980a0000000000 ............ +4257 11.810122252 127.0.0.1:57433 127.0.0.1:57415 375835402 22 12000000d5ff1e000000000001000300000000000000 ...................... +4259 11.810414791 127.0.0.1:57415 127.0.0.1:57433 3331500131 12 fffffffff7980a0000000000 ............ +4265 11.911379337 127.0.0.1:57415 127.0.0.1:57433 3331500143 12 1a000000d9b90a0000000000 ............ +4267 11.911555767 127.0.0.1:57415 127.0.0.1:57433 3331500155 26 16000000548f6340e25e3140010003000000d7ff1e0000000000 ....T.c@.^1@.............. +4269 11.911861181 127.0.0.1:57433 127.0.0.1:57415 375835424 12 ffffffffd9b90a0000000000 ............ +4271 11.912444353 127.0.0.1:57433 127.0.0.1:57415 375835436 12 16000000f8980a0000000000 ............ +4273 11.912628889 127.0.0.1:57433 127.0.0.1:57415 375835448 22 12000000d7ff1e000000000001000300000000000000 ...................... +4275 11.912954330 127.0.0.1:57415 127.0.0.1:57433 3331500181 12 fffffffff8980a0000000000 ............ +4279 12.012780905 127.0.0.1:57415 127.0.0.1:57433 3331500193 12 65000000dab90a0000000000 e........... +4281 12.013009787 127.0.0.1:57415 127.0.0.1:57433 3331500205 101 1e0000001c2118d0c46f33bb0100030000004cff010000000000edd00dc39d01 .....!...o3.......L...............?.....3...|8.. +4283 12.013401031 127.0.0.1:57433 127.0.0.1:57415 375835470 12 ffffffffdab90a0000000000 ............ +4285 12.014273167 127.0.0.1:57415 127.0.0.1:57433 3331500306 12 1a000000dbb90a0000000000 ............ +4286 12.014371872 127.0.0.1:57433 127.0.0.1:57415 375835482 64 34000000f9980a000000000030000000446b99d8ec1bbdb50100030000000100 4...........0...Dk.................L.".([.....L. +4288 12.014528036 127.0.0.1:57415 127.0.0.1:57433 3331500318 26 16000000548f6340e25e3140010003000000d9ff1e0000000000 ....T.c@.^1@.............. +4290 12.014745712 127.0.0.1:57415 127.0.0.1:57433 3331500344 12 fffffffff9980a0000000000 ............ +4292 12.014894724 127.0.0.1:57433 127.0.0.1:57415 375835546 12 ffffffffdbb90a0000000000 ............ +4294 12.015334606 127.0.0.1:57433 127.0.0.1:57415 375835558 12 16000000fa980a0000000000 ............ +4296 12.015501738 127.0.0.1:57433 127.0.0.1:57415 375835570 22 12000000d9ff1e000000000001000300000000000000 ...................... +4297 12.015592098 127.0.0.1:57415 127.0.0.1:57433 3331500356 42 1e000000dcb90a00000000001a00000055ceff62b21b3a50010003000000dbff ................U..b..:P.................. +4299 12.015817165 127.0.0.1:57415 127.0.0.1:57433 3331500398 12 fffffffffa980a0000000000 ............ +4301 12.016016960 127.0.0.1:57433 127.0.0.1:57415 375835592 12 ffffffffdcb90a0000000000 ............ +4303 12.017118216 127.0.0.1:57433 127.0.0.1:57415 375835604 12 1a000000fb980a0000000000 ............ +4305 12.017263174 127.0.0.1:57433 127.0.0.1:57415 375835616 26 16000000dbff1e00000000000100030000000000000000000000 .......................... +4307 12.017512560 127.0.0.1:57415 127.0.0.1:57433 3331500410 12 fffffffffb980a0000000000 ............ +4309 12.117580891 127.0.0.1:57415 127.0.0.1:57433 3331500422 12 1a000000ddb90a0000000000 ............ +4311 12.117834330 127.0.0.1:57415 127.0.0.1:57433 3331500434 26 16000000548f6340e25e3140010003000000ddff1e0000000000 ....T.c@.^1@.............. +4313 12.118271589 127.0.0.1:57433 127.0.0.1:57415 375835642 12 ffffffffddb90a0000000000 ............ +4315 12.118755102 127.0.0.1:57433 127.0.0.1:57415 375835654 12 16000000fc980a0000000000 ............ +4317 12.118968964 127.0.0.1:57433 127.0.0.1:57415 375835666 22 12000000ddff1e000000000001000300000000000000 ...................... +4319 12.119409323 127.0.0.1:57415 127.0.0.1:57433 3331500460 12 fffffffffc980a0000000000 ............ +4323 12.122384548 127.0.0.1:57433 127.0.0.1:57415 375835688 12 feffffffd3370100e4370100 .....7...7.. +4329 12.164042950 127.0.0.1:57415 127.0.0.1:57433 3331500472 12 feffffffe5370100d3370100 .....7...7.. +4339 12.220308781 127.0.0.1:57415 127.0.0.1:57433 3331500484 12 1a000000deb90a0000000000 ............ +4341 12.220481396 127.0.0.1:57415 127.0.0.1:57433 3331500496 26 16000000548f6340e25e3140010003000000dfff1e0000000000 ....T.c@.^1@.............. +4343 12.220951796 127.0.0.1:57433 127.0.0.1:57415 375835700 12 ffffffffdeb90a0000000000 ............ +4345 12.221442938 127.0.0.1:57433 127.0.0.1:57415 375835712 12 16000000fd980a0000000000 ............ +4347 12.221599340 127.0.0.1:57433 127.0.0.1:57415 375835724 22 12000000dfff1e000000000001000300000000000000 ...................... +4349 12.221886873 127.0.0.1:57415 127.0.0.1:57433 3331500522 12 fffffffffd980a0000000000 ............ +4351 12.317340851 127.0.0.1:57415 127.0.0.1:57433 3331500534 12 22000000dfb90a0000000000 "........... +4353 12.317531109 127.0.0.1:57415 127.0.0.1:57433 3331500546 34 1e0000001c2118d0c46f33bb0100030000004dff0100000000001ed20dc39d01 .....!...o3.......M............... +4355 12.317619085 127.0.0.1:57415 127.0.0.1:57433 3331500580 12 43000000e0b90a0000000000 C........... +4357 12.317701340 127.0.0.1:57415 127.0.0.1:57433 3331500592 67 3f000000980433cb0cb47c3801000300000001000000004dff0100000000003d ?.....3...|8...........M.......=B.....&......... +4359 12.317928553 127.0.0.1:57433 127.0.0.1:57415 375835746 12 ffffffffdfb90a0000000000 ............ +4361 12.318161011 127.0.0.1:57433 127.0.0.1:57415 375835758 12 ffffffffe0b90a0000000000 ............ +4363 12.319071531 127.0.0.1:57433 127.0.0.1:57415 375835770 12 34000000fe980a0000000000 4........... +4365 12.319252253 127.0.0.1:57433 127.0.0.1:57415 375835782 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....M..........Ps? +4367 12.319558859 127.0.0.1:57415 127.0.0.1:57433 3331500659 12 fffffffffe980a0000000000 ............ +4369 12.320324659 127.0.0.1:57415 127.0.0.1:57433 3331500671 12 1e000000e1b90a0000000000 ............ +4371 12.320467234 127.0.0.1:57415 127.0.0.1:57433 3331500683 30 1a00000055ceff62b21b3a50010003000000e1ff1e000000000000000000 ....U..b..:P.................. +4373 12.320748568 127.0.0.1:57433 127.0.0.1:57415 375835834 12 ffffffffe1b90a0000000000 ............ +4375 12.321390867 127.0.0.1:57433 127.0.0.1:57415 375835846 12 1a000000ff980a0000000000 ............ +4377 12.321611404 127.0.0.1:57433 127.0.0.1:57415 375835858 26 16000000e1ff1e00000000000100030000000000000000000000 .......................... +4379 12.321933270 127.0.0.1:57415 127.0.0.1:57433 3331500713 12 ffffffffff980a0000000000 ............ +4381 12.323297262 127.0.0.1:57415 127.0.0.1:57433 3331500725 12 1a000000e2b90a0000000000 ............ +4383 12.323439598 127.0.0.1:57415 127.0.0.1:57433 3331500737 26 16000000548f6340e25e3140010003000000e3ff1e0000000000 ....T.c@.^1@.............. +4385 12.323652029 127.0.0.1:57433 127.0.0.1:57415 375835884 12 ffffffffe2b90a0000000000 ............ +4388 12.324285984 127.0.0.1:57433 127.0.0.1:57415 375835896 12 1600000000990a0000000000 ............ +4391 12.324502468 127.0.0.1:57433 127.0.0.1:57415 375835908 22 12000000e3ff1e000000000001000300000000000000 ...................... +4393 12.324829578 127.0.0.1:57415 127.0.0.1:57433 3331500763 12 ffffffff00990a0000000000 ............ +4397 12.427282095 127.0.0.1:57415 127.0.0.1:57433 3331500775 12 1a000000e3b90a0000000000 ............ +4399 12.427472830 127.0.0.1:57415 127.0.0.1:57433 3331500787 26 16000000548f6340e25e3140010003000000e5ff1e0000000000 ....T.c@.^1@.............. +4401 12.427946568 127.0.0.1:57433 127.0.0.1:57415 375835930 12 ffffffffe3b90a0000000000 ............ +4403 12.428497553 127.0.0.1:57433 127.0.0.1:57415 375835942 12 1600000001990a0000000000 ............ +4405 12.428689241 127.0.0.1:57433 127.0.0.1:57415 375835954 22 12000000e5ff1e000000000001000300000000000000 ...................... +4407 12.428970814 127.0.0.1:57415 127.0.0.1:57433 3331500813 12 ffffffff01990a0000000000 ............ +4411 12.530355930 127.0.0.1:57415 127.0.0.1:57433 3331500825 12 1a000000e4b90a0000000000 ............ +4413 12.530582190 127.0.0.1:57415 127.0.0.1:57433 3331500837 26 16000000548f6340e25e3140010003000000e7ff1e0000000000 ....T.c@.^1@.............. +4415 12.530938625 127.0.0.1:57433 127.0.0.1:57415 375835976 12 ffffffffe4b90a0000000000 ............ +4417 12.531431198 127.0.0.1:57433 127.0.0.1:57415 375835988 12 1600000002990a0000000000 ............ +4419 12.531665564 127.0.0.1:57433 127.0.0.1:57415 375836000 22 12000000e7ff1e000000000001000300000000000000 ...................... +4421 12.531922340 127.0.0.1:57415 127.0.0.1:57433 3331500863 12 ffffffff02990a0000000000 ............ +4423 12.621553421 127.0.0.1:57415 127.0.0.1:57433 3331500875 12 65000000e5b90a0000000000 e........... +4425 12.621738434 127.0.0.1:57415 127.0.0.1:57433 3331500887 101 1e0000001c2118d0c46f33bb0100030000004eff0100000000004ed30dc39d01 .....!...o3.......N.......N.......?.....3...|8.. +4430 12.622183084 127.0.0.1:57433 127.0.0.1:57415 375836022 12 feffffffd4370100e5370100 .....7...7.. +4433 12.622463465 127.0.0.1:57433 127.0.0.1:57415 375836034 12 ffffffffe5b90a0000000000 ............ +4435 12.622829199 127.0.0.1:57433 127.0.0.1:57415 375836046 12 3400000003990a0000000000 4........... +4437 12.622987270 127.0.0.1:57433 127.0.0.1:57415 375836058 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....N............? +4439 12.623285055 127.0.0.1:57415 127.0.0.1:57433 3331500988 12 ffffffff03990a0000000000 ............ +4441 12.624053955 127.0.0.1:57415 127.0.0.1:57433 3331501000 12 1e000000e6b90a0000000000 ............ +4443 12.624242544 127.0.0.1:57415 127.0.0.1:57433 3331501012 30 1a00000055ceff62b21b3a50010003000000e9ff1e000000000000000000 ....U..b..:P.................. +4445 12.624609470 127.0.0.1:57433 127.0.0.1:57415 375836110 12 ffffffffe6b90a0000000000 ............ +4447 12.624962807 127.0.0.1:57433 127.0.0.1:57415 375836122 12 1a00000004990a0000000000 ............ +4449 12.625101328 127.0.0.1:57433 127.0.0.1:57415 375836134 26 16000000e9ff1e00000000000100030000000000000000000000 .......................... +4451 12.625355244 127.0.0.1:57415 127.0.0.1:57433 3331501042 12 ffffffff04990a0000000000 ............ +4455 12.633042812 127.0.0.1:57415 127.0.0.1:57433 3331501054 12 1a000000e7b90a0000000000 ............ +4457 12.633204937 127.0.0.1:57415 127.0.0.1:57433 3331501066 26 16000000548f6340e25e3140010003000000ebff1e0000000000 ....T.c@.^1@.............. +4459 12.633545637 127.0.0.1:57433 127.0.0.1:57415 375836160 12 ffffffffe7b90a0000000000 ............ +4461 12.634036541 127.0.0.1:57433 127.0.0.1:57415 375836172 12 1600000005990a0000000000 ............ +4463 12.634197950 127.0.0.1:57433 127.0.0.1:57415 375836184 22 12000000ebff1e000000000001000300000000000000 ...................... +4465 12.634453535 127.0.0.1:57415 127.0.0.1:57433 3331501092 12 ffffffff05990a0000000000 ............ +4468 12.665825605 127.0.0.1:57415 127.0.0.1:57433 3331501104 12 feffffffe6370100d4370100 .....7...7.. +4478 12.736182451 127.0.0.1:57415 127.0.0.1:57433 3331501116 12 1a000000e8b90a0000000000 ............ +4480 12.736356735 127.0.0.1:57415 127.0.0.1:57433 3331501128 26 16000000548f6340e25e3140010003000000edff1e0000000000 ....T.c@.^1@.............. +4482 12.736783743 127.0.0.1:57433 127.0.0.1:57415 375836206 12 ffffffffe8b90a0000000000 ............ +4484 12.737362146 127.0.0.1:57433 127.0.0.1:57415 375836218 12 1600000006990a0000000000 ............ +4486 12.737558126 127.0.0.1:57433 127.0.0.1:57415 375836230 22 12000000edff1e000000000001000300000000000000 ...................... +4488 12.737799644 127.0.0.1:57415 127.0.0.1:57433 3331501154 12 ffffffff06990a0000000000 ............ +4495 12.839242935 127.0.0.1:57415 127.0.0.1:57433 3331501166 12 1a000000e9b90a0000000000 ............ +4497 12.839544535 127.0.0.1:57415 127.0.0.1:57433 3331501178 26 16000000548f6340e25e3140010003000000efff1e0000000000 ....T.c@.^1@.............. +4499 12.839956045 127.0.0.1:57433 127.0.0.1:57415 375836252 12 ffffffffe9b90a0000000000 ............ +4501 12.840415955 127.0.0.1:57433 127.0.0.1:57415 375836264 12 1600000007990a0000000000 ............ +4503 12.840636492 127.0.0.1:57433 127.0.0.1:57415 375836276 22 12000000efff1e000000000001000300000000000000 ...................... +4505 12.840843916 127.0.0.1:57415 127.0.0.1:57433 3331501204 12 ffffffff07990a0000000000 ............ +4508 12.925354242 127.0.0.1:57415 127.0.0.1:57433 3331501216 12 65000000eab90a0000000000 e........... +4510 12.925605297 127.0.0.1:57415 127.0.0.1:57433 3331501228 101 1e0000001c2118d0c46f33bb0100030000004fff0100000000007ed40dc39d01 .....!...o3.......O.......~.......?.....3...|8.. +4512 12.925877094 127.0.0.1:57433 127.0.0.1:57415 375836298 12 ffffffffeab90a0000000000 ............ +4514 12.927510500 127.0.0.1:57433 127.0.0.1:57415 375836310 12 3400000008990a0000000000 4........... +4516 12.927670240 127.0.0.1:57433 127.0.0.1:57415 375836322 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....O........../.? +4518 12.927921295 127.0.0.1:57415 127.0.0.1:57433 3331501329 12 ffffffff08990a0000000000 ............ +4520 12.928644657 127.0.0.1:57415 127.0.0.1:57433 3331501341 12 1e000000ebb90a0000000000 ............ +4522 12.928780794 127.0.0.1:57415 127.0.0.1:57433 3331501353 30 1a00000055ceff62b21b3a50010003000000f1ff1e000000000000000000 ....U..b..:P.................. +4524 12.929045916 127.0.0.1:57433 127.0.0.1:57415 375836374 12 ffffffffebb90a0000000000 ............ +4526 12.929410458 127.0.0.1:57433 127.0.0.1:57415 375836386 12 1a00000009990a0000000000 ............ +4528 12.929676294 127.0.0.1:57433 127.0.0.1:57415 375836398 26 16000000f1ff1e00000000000100030000000000000000000000 .......................... +4530 12.929917336 127.0.0.1:57415 127.0.0.1:57433 3331501383 12 ffffffff09990a0000000000 ............ +4532 12.941947460 127.0.0.1:57415 127.0.0.1:57433 3331501395 12 1a000000ecb90a0000000000 ............ +4534 12.942110300 127.0.0.1:57415 127.0.0.1:57433 3331501407 26 16000000548f6340e25e3140010003000000f3ff1e0000000000 ....T.c@.^1@.............. +4536 12.942400932 127.0.0.1:57433 127.0.0.1:57415 375836424 12 ffffffffecb90a0000000000 ............ +4539 12.942826033 127.0.0.1:57433 127.0.0.1:57415 375836436 12 160000000a990a0000000000 ............ +4543 12.942972660 127.0.0.1:57433 127.0.0.1:57415 375836448 22 12000000f3ff1e000000000001000300000000000000 ...................... +4545 12.943248987 127.0.0.1:57415 127.0.0.1:57433 3331501433 12 ffffffff0a990a0000000000 ............ +4577 13.045183659 127.0.0.1:57415 127.0.0.1:57433 3331501445 12 1a000000edb90a0000000000 ............ +4579 13.045366764 127.0.0.1:57415 127.0.0.1:57433 3331501457 26 16000000548f6340e25e3140010003000000f5ff1e0000000000 ....T.c@.^1@.............. +4581 13.045824528 127.0.0.1:57433 127.0.0.1:57415 375836470 12 ffffffffedb90a0000000000 ............ +4583 13.046376705 127.0.0.1:57433 127.0.0.1:57415 375836482 12 160000000b990a0000000000 ............ +4585 13.046596766 127.0.0.1:57433 127.0.0.1:57415 375836494 22 12000000f5ff1e000000000001000300000000000000 ...................... +4587 13.046868086 127.0.0.1:57415 127.0.0.1:57433 3331501483 12 ffffffff0b990a0000000000 ............ +4595 13.122913122 127.0.0.1:57433 127.0.0.1:57415 375836516 12 feffffffd5370100e6370100 .....7...7.. +4628 13.147938490 127.0.0.1:57415 127.0.0.1:57433 3331501495 12 1a000000eeb90a0000000000 ............ +4630 13.148182631 127.0.0.1:57415 127.0.0.1:57433 3331501507 26 16000000548f6340e25e3140010003000000f7ff1e0000000000 ....T.c@.^1@.............. +4632 13.148587465 127.0.0.1:57433 127.0.0.1:57415 375836528 12 ffffffffeeb90a0000000000 ............ +4634 13.149111509 127.0.0.1:57433 127.0.0.1:57415 375836540 12 160000000c990a0000000000 ............ +4636 13.149332047 127.0.0.1:57433 127.0.0.1:57415 375836552 22 12000000f7ff1e000000000001000300000000000000 ...................... +4638 13.149646997 127.0.0.1:57415 127.0.0.1:57433 3331501533 12 ffffffff0c990a0000000000 ............ +4641 13.166645765 127.0.0.1:57415 127.0.0.1:57433 3331501545 12 feffffffe7370100d5370100 .....7...7.. +4651 13.230102777 127.0.0.1:57415 127.0.0.1:57433 3331501557 12 65000000efb90a0000000000 e........... +4653 13.230321646 127.0.0.1:57415 127.0.0.1:57433 3331501569 101 1e0000001c2118d0c46f33bb01000300000050ff010000000000afd50dc39d01 .....!...o3.......P...............?.....3...|8.. +4655 13.230622292 127.0.0.1:57433 127.0.0.1:57415 375836574 12 ffffffffefb90a0000000000 ............ +4657 13.231848717 127.0.0.1:57433 127.0.0.1:57415 375836586 12 340000000d990a0000000000 4........... +4659 13.232032537 127.0.0.1:57433 127.0.0.1:57415 375836598 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....P............? +4661 13.232448816 127.0.0.1:57415 127.0.0.1:57433 3331501670 12 ffffffff0d990a0000000000 ............ +4663 13.233193159 127.0.0.1:57415 127.0.0.1:57433 3331501682 12 1e000000f0b90a0000000000 ............ +4665 13.233486176 127.0.0.1:57415 127.0.0.1:57433 3331501694 30 1a00000055ceff62b21b3a50010003000000f9ff1e000000000000000000 ....U..b..:P.................. +4667 13.233855724 127.0.0.1:57433 127.0.0.1:57415 375836650 12 fffffffff0b90a0000000000 ............ +4669 13.234557390 127.0.0.1:57433 127.0.0.1:57415 375836662 12 1a0000000e990a0000000000 ............ +4671 13.234744549 127.0.0.1:57433 127.0.0.1:57415 375836674 26 16000000f9ff1e00000000000100030000000000000000000000 .......................... +4673 13.234990120 127.0.0.1:57415 127.0.0.1:57433 3331501724 12 ffffffff0e990a0000000000 ............ +4675 13.251848459 127.0.0.1:57415 127.0.0.1:57433 3331501736 12 1a000000f1b90a0000000000 ............ +4677 13.252077579 127.0.0.1:57415 127.0.0.1:57433 3331501748 26 16000000548f6340e25e3140010003000000fbff1e0000000000 ....T.c@.^1@.............. +4679 13.252566338 127.0.0.1:57433 127.0.0.1:57415 375836700 12 fffffffff1b90a0000000000 ............ +4681 13.252812624 127.0.0.1:57433 127.0.0.1:57415 375836712 12 160000000f990a0000000000 ............ +4683 13.252970934 127.0.0.1:57433 127.0.0.1:57415 375836724 22 12000000fbff1e000000000001000300000000000000 ...................... +4685 13.253228664 127.0.0.1:57415 127.0.0.1:57433 3331501774 12 ffffffff0f990a0000000000 ............ +4692 13.356107712 127.0.0.1:57415 127.0.0.1:57433 3331501786 12 1a000000f2b90a0000000000 ............ +4694 13.356352091 127.0.0.1:57415 127.0.0.1:57433 3331501798 26 16000000548f6340e25e3140010003000000fdff1e0000000000 ....T.c@.^1@.............. +4696 13.356775522 127.0.0.1:57433 127.0.0.1:57415 375836746 12 fffffffff2b90a0000000000 ............ +4698 13.357417345 127.0.0.1:57433 127.0.0.1:57415 375836758 12 1600000010990a0000000000 ............ +4700 13.357633352 127.0.0.1:57433 127.0.0.1:57415 375836770 22 12000000fdff1e000000000001000300000000000000 ...................... +4702 13.357962132 127.0.0.1:57415 127.0.0.1:57433 3331501824 12 ffffffff10990a0000000000 ............ +4713 13.461364985 127.0.0.1:57415 127.0.0.1:57433 3331501836 12 1a000000f3b90a0000000000 ............ +4715 13.461559057 127.0.0.1:57415 127.0.0.1:57433 3331501848 26 16000000548f6340e25e3140010003000000ffff1e0000000000 ....T.c@.^1@.............. +4717 13.461993456 127.0.0.1:57433 127.0.0.1:57415 375836792 12 fffffffff3b90a0000000000 ............ +4719 13.462453604 127.0.0.1:57433 127.0.0.1:57415 375836804 12 1600000011990a0000000000 ............ +4721 13.462625027 127.0.0.1:57433 127.0.0.1:57415 375836816 22 12000000ffff1e000000000001000300000000000000 ...................... +4723 13.462884903 127.0.0.1:57415 127.0.0.1:57433 3331501874 12 ffffffff11990a0000000000 ............ +4728 13.534318447 127.0.0.1:57415 127.0.0.1:57433 3331501886 12 65000000f4b90a0000000000 e........... +4730 13.534510851 127.0.0.1:57415 127.0.0.1:57433 3331501898 101 1e0000001c2118d0c46f33bb01000300000051ff010000000000dfd60dc39d01 .....!...o3.......Q...............?.....3...|8.. +4732 13.534853697 127.0.0.1:57433 127.0.0.1:57415 375836838 12 fffffffff4b90a0000000000 ............ +4734 13.536103487 127.0.0.1:57433 127.0.0.1:57415 375836850 12 3400000012990a0000000000 4........... +4736 13.536269665 127.0.0.1:57433 127.0.0.1:57415 375836862 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Q...........-@ +4738 13.536679506 127.0.0.1:57415 127.0.0.1:57433 3331501999 12 ffffffff12990a0000000000 ............ +4740 13.537469387 127.0.0.1:57415 127.0.0.1:57433 3331502011 12 1e000000f5b90a0000000000 ............ +4742 13.537625074 127.0.0.1:57415 127.0.0.1:57433 3331502023 30 1a00000055ceff62b21b3a5001000300000001001f000000000000000000 ....U..b..:P.................. +4744 13.537922144 127.0.0.1:57433 127.0.0.1:57415 375836914 12 fffffffff5b90a0000000000 ............ +4746 13.538403034 127.0.0.1:57433 127.0.0.1:57415 375836926 12 1a00000013990a0000000000 ............ +4748 13.538589716 127.0.0.1:57433 127.0.0.1:57415 375836938 26 1600000001001f00000000000100030000000000000000000000 .......................... +4750 13.538834095 127.0.0.1:57415 127.0.0.1:57433 3331502053 12 ffffffff13990a0000000000 ............ +4752 13.563699245 127.0.0.1:57415 127.0.0.1:57433 3331502065 12 1a000000f6b90a0000000000 ............ +4754 13.563861847 127.0.0.1:57415 127.0.0.1:57433 3331502077 26 16000000548f6340e25e314001000300000003001f0000000000 ....T.c@.^1@.............. +4756 13.564270020 127.0.0.1:57433 127.0.0.1:57415 375836964 12 fffffffff6b90a0000000000 ............ +4758 13.564866543 127.0.0.1:57433 127.0.0.1:57415 375836976 12 1600000014990a0000000000 ............ +4760 13.565097094 127.0.0.1:57433 127.0.0.1:57415 375836988 22 1200000003001f000000000001000300000000000000 ...................... +4762 13.565382242 127.0.0.1:57415 127.0.0.1:57433 3331502103 12 ffffffff14990a0000000000 ............ +4766 13.623057365 127.0.0.1:57433 127.0.0.1:57415 375837010 12 feffffffd6370100e7370100 .....7...7.. +4773 13.666319609 127.0.0.1:57415 127.0.0.1:57433 3331502115 12 1a000000f7b90a0000000000 ............ +4775 13.666501045 127.0.0.1:57415 127.0.0.1:57433 3331502127 26 16000000548f6340e25e314001000300000005001f0000000000 ....T.c@.^1@.............. +4777 13.666957140 127.0.0.1:57433 127.0.0.1:57415 375837022 12 fffffffff7b90a0000000000 ............ +4778 13.667114735 127.0.0.1:57415 127.0.0.1:57433 3331502153 12 feffffffe8370100d6370100 .....7...7.. +4782 13.667384863 127.0.0.1:57433 127.0.0.1:57415 375837034 12 1600000015990a0000000000 ............ +4784 13.667545557 127.0.0.1:57433 127.0.0.1:57415 375837046 22 1200000005001f000000000001000300000000000000 ...................... +4786 13.667941809 127.0.0.1:57415 127.0.0.1:57433 3331502165 12 ffffffff15990a0000000000 ............ +4795 13.769538879 127.0.0.1:57415 127.0.0.1:57433 3331502177 12 1a000000f8b90a0000000000 ............ +4797 13.769721270 127.0.0.1:57415 127.0.0.1:57433 3331502189 26 16000000548f6340e25e314001000300000007001f0000000000 ....T.c@.^1@.............. +4799 13.770009041 127.0.0.1:57433 127.0.0.1:57415 375837068 12 fffffffff8b90a0000000000 ............ +4801 13.770932436 127.0.0.1:57433 127.0.0.1:57415 375837080 12 1600000016990a0000000000 ............ +4803 13.771142006 127.0.0.1:57433 127.0.0.1:57415 375837092 22 1200000007001f000000000001000300000000000000 ...................... +4805 13.771444559 127.0.0.1:57415 127.0.0.1:57433 3331502215 12 ffffffff16990a0000000000 ............ +4811 13.838636875 127.0.0.1:57415 127.0.0.1:57433 3331502227 12 65000000f9b90a0000000000 e........... +4813 13.838825703 127.0.0.1:57415 127.0.0.1:57433 3331502239 101 1e0000001c2118d0c46f33bb01000300000052ff0100000000000fd80dc39d01 .....!...o3.......R...............?.....3...|8.. +4815 13.839238882 127.0.0.1:57433 127.0.0.1:57415 375837114 12 fffffffff9b90a0000000000 ............ +4817 13.840302944 127.0.0.1:57433 127.0.0.1:57415 375837126 12 3400000017990a0000000000 4........... +4819 13.840538740 127.0.0.1:57433 127.0.0.1:57415 375837138 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....R..........x[@ +4821 13.840928793 127.0.0.1:57415 127.0.0.1:57433 3331502340 12 ffffffff17990a0000000000 ............ +4823 13.841732025 127.0.0.1:57415 127.0.0.1:57433 3331502352 12 1e000000fab90a0000000000 ............ +4825 13.841907978 127.0.0.1:57415 127.0.0.1:57433 3331502364 30 1a00000055ceff62b21b3a5001000300000009001f000000000000000000 ....U..b..:P.................. +4827 13.842379570 127.0.0.1:57433 127.0.0.1:57415 375837190 12 fffffffffab90a0000000000 ............ +4829 13.842757463 127.0.0.1:57433 127.0.0.1:57415 375837202 12 1a00000018990a0000000000 ............ +4831 13.842884064 127.0.0.1:57433 127.0.0.1:57415 375837214 26 1600000009001f00000000000100030000000000000000000000 .......................... +4834 13.843171835 127.0.0.1:57415 127.0.0.1:57433 3331502394 12 ffffffff18990a0000000000 ............ +4836 13.872546434 127.0.0.1:57415 127.0.0.1:57433 3331502406 12 1a000000fbb90a0000000000 ............ +4838 13.872707844 127.0.0.1:57415 127.0.0.1:57433 3331502418 26 16000000548f6340e25e31400100030000000b001f0000000000 ....T.c@.^1@.............. +4840 13.873077869 127.0.0.1:57433 127.0.0.1:57415 375837240 12 fffffffffbb90a0000000000 ............ +4842 13.873693228 127.0.0.1:57433 127.0.0.1:57415 375837252 12 1600000019990a0000000000 ............ +4844 13.873845577 127.0.0.1:57433 127.0.0.1:57415 375837264 22 120000000b001f000000000001000300000000000000 ...................... +4846 13.874183893 127.0.0.1:57415 127.0.0.1:57433 3331502444 12 ffffffff19990a0000000000 ............ +4848 13.975152254 127.0.0.1:57415 127.0.0.1:57433 3331502456 12 1a000000fcb90a0000000000 ............ +4850 13.975331783 127.0.0.1:57415 127.0.0.1:57433 3331502468 26 16000000548f6340e25e31400100030000000d001f0000000000 ....T.c@.^1@.............. +4852 13.975582361 127.0.0.1:57433 127.0.0.1:57415 375837286 12 fffffffffcb90a0000000000 ............ +4854 13.976102591 127.0.0.1:57433 127.0.0.1:57415 375837298 12 160000001a990a0000000000 ............ +4856 13.976269960 127.0.0.1:57433 127.0.0.1:57415 375837310 22 120000000d001f000000000001000300000000000000 ...................... +4858 13.976527214 127.0.0.1:57415 127.0.0.1:57433 3331502494 12 ffffffff1a990a0000000000 ............ +4862 14.078074694 127.0.0.1:57415 127.0.0.1:57433 3331502506 12 1a000000fdb90a0000000000 ............ +4864 14.078287840 127.0.0.1:57415 127.0.0.1:57433 3331502518 26 16000000548f6340e25e31400100030000000f001f0000000000 ....T.c@.^1@.............. +4866 14.078880548 127.0.0.1:57433 127.0.0.1:57415 375837332 12 fffffffffdb90a0000000000 ............ +4868 14.079136372 127.0.0.1:57433 127.0.0.1:57415 375837344 12 160000001b990a0000000000 ............ +4870 14.079327106 127.0.0.1:57433 127.0.0.1:57415 375837356 22 120000000f001f000000000001000300000000000000 ...................... +4872 14.079639673 127.0.0.1:57415 127.0.0.1:57433 3331502544 12 ffffffff1b990a0000000000 ............ +4875 14.123031378 127.0.0.1:57433 127.0.0.1:57415 375837378 12 feffffffd7370100e8370100 .....7...7.. +4882 14.143376350 127.0.0.1:57415 127.0.0.1:57433 3331502556 12 65000000feb90a0000000000 e........... +4884 14.143553734 127.0.0.1:57415 127.0.0.1:57433 3331502568 101 1e0000001c2118d0c46f33bb01000300000053ff01000000000040d90dc39d01 .....!...o3.......S.......@.......?.....3...|8.. +4886 14.143844843 127.0.0.1:57433 127.0.0.1:57415 375837390 12 fffffffffeb90a0000000000 ............ +4888 14.145177364 127.0.0.1:57433 127.0.0.1:57415 375837402 12 340000001c990a0000000000 4........... +4890 14.145405054 127.0.0.1:57433 127.0.0.1:57415 375837414 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....S............@ +4892 14.145601749 127.0.0.1:57415 127.0.0.1:57433 3331502669 12 ffffffff1c990a0000000000 ............ +4894 14.146635771 127.0.0.1:57415 127.0.0.1:57433 3331502681 12 1e000000ffb90a0000000000 ............ +4896 14.146789551 127.0.0.1:57415 127.0.0.1:57433 3331502693 30 1a00000055ceff62b21b3a5001000300000011001f000000000000000000 ....U..b..:P.................. +4898 14.147081852 127.0.0.1:57433 127.0.0.1:57415 375837466 12 ffffffffffb90a0000000000 ............ +4900 14.147471428 127.0.0.1:57433 127.0.0.1:57415 375837478 12 1a0000001d990a0000000000 ............ +4902 14.147612572 127.0.0.1:57433 127.0.0.1:57415 375837490 26 1600000011001f00000000000100030000000000000000000000 .......................... +4904 14.147845984 127.0.0.1:57415 127.0.0.1:57433 3331502723 12 ffffffff1d990a0000000000 ............ +4906 14.168676376 127.0.0.1:57415 127.0.0.1:57433 3331502735 12 feffffffe9370100d7370100 .....7...7.. +4910 14.180912971 127.0.0.1:57415 127.0.0.1:57433 3331502747 12 1a00000000ba0a0000000000 ............ +4912 14.181069851 127.0.0.1:57415 127.0.0.1:57433 3331502759 26 16000000548f6340e25e314001000300000013001f0000000000 ....T.c@.^1@.............. +4914 14.181402445 127.0.0.1:57433 127.0.0.1:57415 375837516 12 ffffffff00ba0a0000000000 ............ +4916 14.181895494 127.0.0.1:57433 127.0.0.1:57415 375837528 12 160000001e990a0000000000 ............ +4918 14.182055235 127.0.0.1:57433 127.0.0.1:57415 375837540 22 1200000013001f000000000001000300000000000000 ...................... +4920 14.182426453 127.0.0.1:57415 127.0.0.1:57433 3331502785 12 ffffffff1e990a0000000000 ............ +4932 14.283227444 127.0.0.1:57415 127.0.0.1:57433 3331502797 12 1a00000001ba0a0000000000 ............ +4934 14.283403158 127.0.0.1:57415 127.0.0.1:57433 3331502809 26 16000000548f6340e25e314001000300000015001f0000000000 ....T.c@.^1@.............. +4936 14.284381390 127.0.0.1:57433 127.0.0.1:57415 375837562 12 ffffffff01ba0a0000000000 ............ +4938 14.284860611 127.0.0.1:57433 127.0.0.1:57415 375837574 12 160000001f990a0000000000 ............ +4940 14.285018206 127.0.0.1:57433 127.0.0.1:57415 375837586 22 1200000015001f000000000001000300000000000000 ...................... +4942 14.285349369 127.0.0.1:57415 127.0.0.1:57433 3331502835 12 ffffffff1f990a0000000000 ............ +4948 14.387646198 127.0.0.1:57415 127.0.0.1:57433 3331502847 12 1a00000002ba0a0000000000 ............ +4950 14.387869596 127.0.0.1:57415 127.0.0.1:57433 3331502859 26 16000000548f6340e25e314001000300000017001f0000000000 ....T.c@.^1@.............. +4952 14.388252974 127.0.0.1:57433 127.0.0.1:57415 375837608 12 ffffffff02ba0a0000000000 ............ +4954 14.388770580 127.0.0.1:57433 127.0.0.1:57415 375837620 12 1600000020990a0000000000 .... ....... +4956 14.388978243 127.0.0.1:57433 127.0.0.1:57415 375837632 22 1200000017001f000000000001000300000000000000 ...................... +4958 14.389248371 127.0.0.1:57415 127.0.0.1:57433 3331502885 12 ffffffff20990a0000000000 .... ....... +4960 14.447510719 127.0.0.1:57415 127.0.0.1:57433 3331502897 12 6500000003ba0a0000000000 e........... +4962 14.447711706 127.0.0.1:57415 127.0.0.1:57433 3331502909 101 1e0000001c2118d0c46f33bb01000300000054ff01000000000070da0dc39d01 .....!...o3.......T.......p.......?.....3...|8.. +4964 14.448062658 127.0.0.1:57433 127.0.0.1:57415 375837654 12 ffffffff03ba0a0000000000 ............ +4966 14.449235439 127.0.0.1:57433 127.0.0.1:57415 375837666 12 3400000021990a0000000000 4...!....... +4968 14.449409008 127.0.0.1:57433 127.0.0.1:57415 375837678 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....T.........wb.@ +4970 14.449721575 127.0.0.1:57415 127.0.0.1:57433 3331503010 12 ffffffff21990a0000000000 ....!....... +4972 14.450490236 127.0.0.1:57415 127.0.0.1:57433 3331503022 12 1e00000004ba0a0000000000 ............ +4974 14.450706959 127.0.0.1:57415 127.0.0.1:57433 3331503034 30 1a00000055ceff62b21b3a5001000300000019001f000000000000000000 ....U..b..:P.................. +4976 14.450982809 127.0.0.1:57433 127.0.0.1:57415 375837730 12 ffffffff04ba0a0000000000 ............ +4978 14.451368332 127.0.0.1:57433 127.0.0.1:57415 375837742 12 1a00000022990a0000000000 ...."....... +4980 14.451527119 127.0.0.1:57433 127.0.0.1:57415 375837754 26 1600000019001f00000000000100030000000000000000000000 .......................... +4982 14.451830387 127.0.0.1:57415 127.0.0.1:57433 3331503064 12 ffffffff22990a0000000000 ...."....... +4984 14.492004871 127.0.0.1:57415 127.0.0.1:57433 3331503076 12 1a00000005ba0a0000000000 ............ +4986 14.492189407 127.0.0.1:57415 127.0.0.1:57433 3331503088 26 16000000548f6340e25e31400100030000001b001f0000000000 ....T.c@.^1@.............. +4988 14.492560625 127.0.0.1:57433 127.0.0.1:57415 375837780 12 ffffffff05ba0a0000000000 ............ +4990 14.493154049 127.0.0.1:57433 127.0.0.1:57415 375837792 12 1600000023990a0000000000 ....#....... +4992 14.493414640 127.0.0.1:57433 127.0.0.1:57415 375837804 22 120000001b001f000000000001000300000000000000 ...................... +4994 14.493708372 127.0.0.1:57415 127.0.0.1:57433 3331503114 12 ffffffff23990a0000000000 ....#....... +5001 14.595014095 127.0.0.1:57415 127.0.0.1:57433 3331503126 12 1a00000006ba0a0000000000 ............ +5003 14.595204353 127.0.0.1:57415 127.0.0.1:57433 3331503138 26 16000000548f6340e25e31400100030000001d001f0000000000 ....T.c@.^1@.............. +5005 14.595597744 127.0.0.1:57433 127.0.0.1:57415 375837826 12 ffffffff06ba0a0000000000 ............ +5007 14.596099854 127.0.0.1:57433 127.0.0.1:57415 375837838 12 1600000024990a0000000000 ....$....... +5009 14.596326828 127.0.0.1:57433 127.0.0.1:57415 375837850 22 120000001d001f000000000001000300000000000000 ...................... +5011 14.596601725 127.0.0.1:57415 127.0.0.1:57433 3331503164 12 ffffffff24990a0000000000 ....$....... +5013 14.622905731 127.0.0.1:57433 127.0.0.1:57415 375837872 12 feffffffd8370100e9370100 .....7...7.. +5021 14.670014858 127.0.0.1:57415 127.0.0.1:57433 3331503176 12 feffffffea370100d8370100 .....7...7.. +5026 14.697887659 127.0.0.1:57415 127.0.0.1:57433 3331503188 12 1a00000007ba0a0000000000 ............ +5028 14.698077202 127.0.0.1:57415 127.0.0.1:57433 3331503200 26 16000000548f6340e25e31400100030000001f001f0000000000 ....T.c@.^1@.............. +5030 14.698474169 127.0.0.1:57433 127.0.0.1:57415 375837884 12 ffffffff07ba0a0000000000 ............ +5032 14.699228764 127.0.0.1:57433 127.0.0.1:57415 375837896 12 1600000025990a0000000000 ....%....... +5034 14.699390650 127.0.0.1:57433 127.0.0.1:57415 375837908 22 120000001f001f000000000001000300000000000000 ...................... +5036 14.699694633 127.0.0.1:57415 127.0.0.1:57433 3331503226 12 ffffffff25990a0000000000 ....%....... +5044 14.751727343 127.0.0.1:57415 127.0.0.1:57433 3331503238 12 2200000008ba0a0000000000 "........... +5046 14.751917839 127.0.0.1:57415 127.0.0.1:57433 3331503250 34 1e0000001c2118d0c46f33bb01000300000055ff010000000000a0db0dc39d01 .....!...o3.......U............... +5048 14.752058029 127.0.0.1:57415 127.0.0.1:57433 3331503284 12 4300000009ba0a0000000000 C........... +5050 14.752145767 127.0.0.1:57415 127.0.0.1:57433 3331503296 67 3f000000980433cb0cb47c38010003000000010000000055ff0100000000003d ?.....3...|8...........U.......=B.....&......... +5052 14.752300262 127.0.0.1:57433 127.0.0.1:57415 375837930 12 ffffffff08ba0a0000000000 ............ +5054 14.752565145 127.0.0.1:57433 127.0.0.1:57415 375837942 12 ffffffff09ba0a0000000000 ............ +5056 14.753287554 127.0.0.1:57433 127.0.0.1:57415 375837954 12 3400000026990a0000000000 4...&....... +5058 14.753448009 127.0.0.1:57433 127.0.0.1:57415 375837966 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....U............@ +5060 14.753831625 127.0.0.1:57415 127.0.0.1:57433 3331503363 12 ffffffff26990a0000000000 ....&....... +5062 14.754926443 127.0.0.1:57415 127.0.0.1:57433 3331503375 12 1e0000000aba0a0000000000 ............ +5064 14.755096674 127.0.0.1:57415 127.0.0.1:57433 3331503387 30 1a00000055ceff62b21b3a5001000300000021001f000000000000000000 ....U..b..:P......!........... +5066 14.755386353 127.0.0.1:57433 127.0.0.1:57415 375838018 12 ffffffff0aba0a0000000000 ............ +5068 14.755846739 127.0.0.1:57433 127.0.0.1:57415 375838030 12 1a00000027990a0000000000 ....'....... +5070 14.756043911 127.0.0.1:57433 127.0.0.1:57415 375838042 26 1600000021001f00000000000100030000000000000000000000 ....!..................... +5072 14.756369829 127.0.0.1:57415 127.0.0.1:57433 3331503417 12 ffffffff27990a0000000000 ....'....... +5075 14.800664663 127.0.0.1:57415 127.0.0.1:57433 3331503429 12 1a0000000bba0a0000000000 ............ +5077 14.800911427 127.0.0.1:57415 127.0.0.1:57433 3331503441 26 16000000548f6340e25e314001000300000023001f0000000000 ....T.c@.^1@......#....... +5079 14.801331758 127.0.0.1:57433 127.0.0.1:57415 375838068 12 ffffffff0bba0a0000000000 ............ +5081 14.802027941 127.0.0.1:57433 127.0.0.1:57415 375838080 12 1600000028990a0000000000 ....(....... +5083 14.802212000 127.0.0.1:57433 127.0.0.1:57415 375838092 22 1200000023001f000000000001000300000000000000 ....#................. +5085 14.802555561 127.0.0.1:57415 127.0.0.1:57433 3331503467 12 ffffffff28990a0000000000 ....(....... +5093 14.906048059 127.0.0.1:57415 127.0.0.1:57433 3331503479 12 1a0000000cba0a0000000000 ............ +5095 14.906265259 127.0.0.1:57415 127.0.0.1:57433 3331503491 26 16000000548f6340e25e314001000300000025001f0000000000 ....T.c@.^1@......%....... +5097 14.906636238 127.0.0.1:57433 127.0.0.1:57415 375838114 12 ffffffff0cba0a0000000000 ............ +5099 14.907216549 127.0.0.1:57433 127.0.0.1:57415 375838126 12 1600000029990a0000000000 ....)....... +5102 14.907372952 127.0.0.1:57433 127.0.0.1:57415 375838138 22 1200000025001f000000000001000300000000000000 ....%................. +5104 14.907611132 127.0.0.1:57415 127.0.0.1:57433 3331503517 12 ffffffff29990a0000000000 ....)....... +5106 15.008861780 127.0.0.1:57415 127.0.0.1:57433 3331503529 12 1a0000000dba0a0000000000 ............ +5108 15.009060860 127.0.0.1:57415 127.0.0.1:57433 3331503541 26 16000000548f6340e25e314001000300000027001f0000000000 ....T.c@.^1@......'....... +5110 15.009447336 127.0.0.1:57433 127.0.0.1:57415 375838160 12 ffffffff0dba0a0000000000 ............ +5114 15.009882927 127.0.0.1:57433 127.0.0.1:57415 375838172 12 160000002a990a0000000000 ....*....... +5116 15.010045767 127.0.0.1:57433 127.0.0.1:57415 375838184 22 1200000027001f000000000001000300000000000000 ....'................. +5118 15.010321379 127.0.0.1:57415 127.0.0.1:57433 3331503567 12 ffffffff2a990a0000000000 ....*....... +5121 15.056646347 127.0.0.1:57415 127.0.0.1:57433 3331503579 12 220000000eba0a0000000000 "........... +5123 15.056832075 127.0.0.1:57415 127.0.0.1:57433 3331503591 34 1e0000001c2118d0c46f33bb01000300000056ff010000000000d2dc0dc39d01 .....!...o3.......V............... +5125 15.056923151 127.0.0.1:57415 127.0.0.1:57433 3331503625 12 430000000fba0a0000000000 C........... +5127 15.057007074 127.0.0.1:57415 127.0.0.1:57433 3331503637 67 3f000000980433cb0cb47c38010003000000010000000056ff0100000000003d ?.....3...|8...........V.......=B.....&......... +5129 15.057199478 127.0.0.1:57433 127.0.0.1:57415 375838206 12 ffffffff0eba0a0000000000 ............ +5131 15.057371855 127.0.0.1:57433 127.0.0.1:57415 375838218 12 ffffffff0fba0a0000000000 ............ +5133 15.058115244 127.0.0.1:57433 127.0.0.1:57415 375838230 12 340000002b990a0000000000 4...+....... +5135 15.058295727 127.0.0.1:57433 127.0.0.1:57415 375838242 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....V..........I.A +5137 15.058555126 127.0.0.1:57415 127.0.0.1:57433 3331503704 12 ffffffff2b990a0000000000 ....+....... +5139 15.059308290 127.0.0.1:57415 127.0.0.1:57433 3331503716 12 1e00000010ba0a0000000000 ............ +5141 15.059452295 127.0.0.1:57415 127.0.0.1:57433 3331503728 30 1a00000055ceff62b21b3a5001000300000029001f000000000000000000 ....U..b..:P......)........... +5143 15.059738159 127.0.0.1:57433 127.0.0.1:57415 375838294 12 ffffffff10ba0a0000000000 ............ +5145 15.060141563 127.0.0.1:57433 127.0.0.1:57415 375838306 12 1a0000002c990a0000000000 ....,....... +5147 15.060309649 127.0.0.1:57433 127.0.0.1:57415 375838318 26 1600000029001f00000000000100030000000000000000000000 ....)..................... +5149 15.060544252 127.0.0.1:57415 127.0.0.1:57433 3331503758 12 ffffffff2c990a0000000000 ....,....... +5151 15.111349583 127.0.0.1:57415 127.0.0.1:57433 3331503770 12 1a00000011ba0a0000000000 ............ +5153 15.111521721 127.0.0.1:57415 127.0.0.1:57433 3331503782 26 16000000548f6340e25e31400100030000002b001f0000000000 ....T.c@.^1@......+....... +5155 15.111883640 127.0.0.1:57433 127.0.0.1:57415 375838344 12 ffffffff11ba0a0000000000 ............ +5157 15.112402439 127.0.0.1:57433 127.0.0.1:57415 375838356 12 160000002d990a0000000000 ....-....... +5159 15.112576008 127.0.0.1:57433 127.0.0.1:57415 375838368 22 120000002b001f000000000001000300000000000000 ....+................. +5161 15.112864494 127.0.0.1:57415 127.0.0.1:57433 3331503808 12 ffffffff2d990a0000000000 ....-....... +5164 15.123234510 127.0.0.1:57433 127.0.0.1:57415 375838390 12 feffffffd9370100ea370100 .....7...7.. +5176 15.171219587 127.0.0.1:57415 127.0.0.1:57433 3331503820 12 feffffffeb370100d9370100 .....7...7.. +5188 15.214365959 127.0.0.1:57415 127.0.0.1:57433 3331503832 12 1a00000012ba0a0000000000 ............ +5190 15.214551449 127.0.0.1:57415 127.0.0.1:57433 3331503844 26 16000000548f6340e25e31400100030000002d001f0000000000 ....T.c@.^1@......-....... +5192 15.214865208 127.0.0.1:57433 127.0.0.1:57415 375838402 12 ffffffff12ba0a0000000000 ............ +5194 15.215421915 127.0.0.1:57433 127.0.0.1:57415 375838414 12 160000002e990a0000000000 ............ +5196 15.215609312 127.0.0.1:57433 127.0.0.1:57415 375838426 22 120000002d001f000000000001000300000000000000 ....-................. +5198 15.215946913 127.0.0.1:57415 127.0.0.1:57433 3331503870 12 ffffffff2e990a0000000000 ............ +5201 15.317335606 127.0.0.1:57415 127.0.0.1:57433 3331503882 12 1a00000013ba0a0000000000 ............ +5203 15.317574739 127.0.0.1:57415 127.0.0.1:57433 3331503894 26 16000000548f6340e25e31400100030000002f001f0000000000 ....T.c@.^1@....../....... +5205 15.317870378 127.0.0.1:57433 127.0.0.1:57415 375838448 12 ffffffff13ba0a0000000000 ............ +5207 15.318377733 127.0.0.1:57433 127.0.0.1:57415 375838460 12 160000002f990a0000000000 ..../....... +5209 15.318618059 127.0.0.1:57433 127.0.0.1:57415 375838472 22 120000002f001f000000000001000300000000000000 ..../................. +5211 15.318936110 127.0.0.1:57415 127.0.0.1:57433 3331503920 12 ffffffff2f990a0000000000 ..../....... +5218 15.361690283 127.0.0.1:57415 127.0.0.1:57433 3331503932 12 6500000014ba0a0000000000 e........... +5220 15.361877203 127.0.0.1:57415 127.0.0.1:57433 3331503944 101 1e0000001c2118d0c46f33bb01000300000057ff01000000000002de0dc39d01 .....!...o3.......W...............?.....3...|8.. +5222 15.362245083 127.0.0.1:57433 127.0.0.1:57415 375838494 12 ffffffff14ba0a0000000000 ............ +5224 15.363132477 127.0.0.1:57433 127.0.0.1:57415 375838506 12 3400000030990a0000000000 4...0....... +5226 15.363292933 127.0.0.1:57433 127.0.0.1:57415 375838518 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....W.........~.CA +5228 15.363628864 127.0.0.1:57415 127.0.0.1:57433 3331504045 12 ffffffff30990a0000000000 ....0....... +5230 15.364244699 127.0.0.1:57415 127.0.0.1:57433 3331504057 12 1e00000015ba0a0000000000 ............ +5232 15.364377260 127.0.0.1:57415 127.0.0.1:57433 3331504069 30 1a00000055ceff62b21b3a5001000300000031001f000000000000000000 ....U..b..:P......1........... +5234 15.364904404 127.0.0.1:57433 127.0.0.1:57415 375838570 12 ffffffff15ba0a0000000000 ............ +5236 15.365111589 127.0.0.1:57433 127.0.0.1:57415 375838582 12 1a00000031990a0000000000 ....1....... +5238 15.365275383 127.0.0.1:57433 127.0.0.1:57415 375838594 26 1600000031001f00000000000100030000000000000000000000 ....1..................... +5240 15.365596771 127.0.0.1:57415 127.0.0.1:57433 3331504099 12 ffffffff31990a0000000000 ....1....... +5242 15.420038462 127.0.0.1:57415 127.0.0.1:57433 3331504111 12 1a00000016ba0a0000000000 ............ +5244 15.420229435 127.0.0.1:57415 127.0.0.1:57433 3331504123 26 16000000548f6340e25e314001000300000033001f0000000000 ....T.c@.^1@......3....... +5246 15.420531750 127.0.0.1:57433 127.0.0.1:57415 375838620 12 ffffffff16ba0a0000000000 ............ +5248 15.421062469 127.0.0.1:57433 127.0.0.1:57415 375838632 12 1600000032990a0000000000 ....2....... +5250 15.421221972 127.0.0.1:57433 127.0.0.1:57415 375838644 22 1200000033001f000000000001000300000000000000 ....3................. +5252 15.421567440 127.0.0.1:57415 127.0.0.1:57433 3331504149 12 ffffffff32990a0000000000 ....2....... +5257 15.524345160 127.0.0.1:57415 127.0.0.1:57433 3331504161 12 1a00000017ba0a0000000000 ............ +5259 15.524605751 127.0.0.1:57415 127.0.0.1:57433 3331504173 26 16000000548f6340e25e314001000300000035001f0000000000 ....T.c@.^1@......5....... +5261 15.525040388 127.0.0.1:57433 127.0.0.1:57415 375838666 12 ffffffff17ba0a0000000000 ............ +5263 15.525477886 127.0.0.1:57433 127.0.0.1:57415 375838678 12 1600000033990a0000000000 ....3....... +5265 15.525706291 127.0.0.1:57433 127.0.0.1:57415 375838690 22 1200000035001f000000000001000300000000000000 ....5................. +5267 15.526056528 127.0.0.1:57415 127.0.0.1:57433 3331504199 12 ffffffff33990a0000000000 ....3....... +5270 15.623284817 127.0.0.1:57433 127.0.0.1:57415 375838712 12 feffffffda370100eb370100 .....7...7.. +5274 15.627175331 127.0.0.1:57415 127.0.0.1:57433 3331504211 12 1a00000018ba0a0000000000 ............ +5276 15.627353668 127.0.0.1:57415 127.0.0.1:57433 3331504223 26 16000000548f6340e25e314001000300000037001f0000000000 ....T.c@.^1@......7....... +5278 15.627719164 127.0.0.1:57433 127.0.0.1:57415 375838724 12 ffffffff18ba0a0000000000 ............ +5282 15.628198624 127.0.0.1:57433 127.0.0.1:57415 375838736 12 1600000034990a0000000000 ....4....... +5284 15.628367662 127.0.0.1:57433 127.0.0.1:57415 375838748 22 1200000037001f000000000001000300000000000000 ....7................. +5286 15.628659248 127.0.0.1:57415 127.0.0.1:57433 3331504249 12 ffffffff34990a0000000000 ....4....... +5290 15.665359497 127.0.0.1:57415 127.0.0.1:57433 3331504261 12 6500000019ba0a0000000000 e........... +5292 15.665526152 127.0.0.1:57415 127.0.0.1:57433 3331504273 101 1e0000001c2118d0c46f33bb01000300000058ff01000000000032df0dc39d01 .....!...o3.......X.......2.......?.....3...|8.. +5294 15.665892363 127.0.0.1:57433 127.0.0.1:57415 375838770 12 ffffffff19ba0a0000000000 ............ +5296 15.667114973 127.0.0.1:57433 127.0.0.1:57415 375838782 12 3400000035990a0000000000 4...5....... +5298 15.667288780 127.0.0.1:57433 127.0.0.1:57415 375838794 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....X..........7rA +5300 15.667588234 127.0.0.1:57415 127.0.0.1:57433 3331504374 12 ffffffff35990a0000000000 ....5....... +5302 15.668382168 127.0.0.1:57415 127.0.0.1:57433 3331504386 12 1e0000001aba0a0000000000 ............ +5304 15.668567419 127.0.0.1:57415 127.0.0.1:57433 3331504398 30 1a00000055ceff62b21b3a5001000300000039001f000000000000000000 ....U..b..:P......9........... +5306 15.668816566 127.0.0.1:57433 127.0.0.1:57415 375838846 12 ffffffff1aba0a0000000000 ............ +5308 15.669335604 127.0.0.1:57433 127.0.0.1:57415 375838858 12 1a00000036990a0000000000 ....6....... +5310 15.669530630 127.0.0.1:57433 127.0.0.1:57415 375838870 26 1600000039001f00000000000100030000000000000000000000 ....9..................... +5312 15.669777155 127.0.0.1:57415 127.0.0.1:57433 3331504428 12 ffffffff36990a0000000000 ....6....... +5314 15.671910048 127.0.0.1:57415 127.0.0.1:57433 3331504440 12 feffffffec370100da370100 .....7...7.. +5327 15.731129885 127.0.0.1:57415 127.0.0.1:57433 3331504452 12 1a0000001bba0a0000000000 ............ +5329 15.731300831 127.0.0.1:57415 127.0.0.1:57433 3331504464 26 16000000548f6340e25e31400100030000003b001f0000000000 ....T.c@.^1@......;....... +5331 15.731638908 127.0.0.1:57433 127.0.0.1:57415 375838896 12 ffffffff1bba0a0000000000 ............ +5333 15.732061863 127.0.0.1:57433 127.0.0.1:57415 375838908 12 1600000037990a0000000000 ....7....... +5335 15.732230425 127.0.0.1:57433 127.0.0.1:57415 375838920 22 120000003b001f000000000001000300000000000000 ....;................. +5337 15.732581377 127.0.0.1:57415 127.0.0.1:57433 3331504490 12 ffffffff37990a0000000000 ....7....... +5344 15.834149837 127.0.0.1:57415 127.0.0.1:57433 3331504502 12 1a0000001cba0a0000000000 ............ +5346 15.834325314 127.0.0.1:57415 127.0.0.1:57433 3331504514 26 16000000548f6340e25e31400100030000003d001f0000000000 ....T.c@.^1@......=....... +5348 15.834706068 127.0.0.1:57433 127.0.0.1:57415 375838942 12 ffffffff1cba0a0000000000 ............ +5350 15.835222721 127.0.0.1:57433 127.0.0.1:57415 375838954 12 1600000038990a0000000000 ....8....... +5352 15.835381269 127.0.0.1:57433 127.0.0.1:57415 375838966 22 120000003d001f000000000001000300000000000000 ....=................. +5354 15.835711479 127.0.0.1:57415 127.0.0.1:57433 3331504540 12 ffffffff38990a0000000000 ....8....... +5358 15.937834740 127.0.0.1:57415 127.0.0.1:57433 3331504552 12 1a0000001dba0a0000000000 ............ +5360 15.938009739 127.0.0.1:57415 127.0.0.1:57433 3331504564 26 16000000548f6340e25e31400100030000003f001f0000000000 ....T.c@.^1@......?....... +5362 15.938470125 127.0.0.1:57433 127.0.0.1:57415 375838988 12 ffffffff1dba0a0000000000 ............ +5364 15.938952446 127.0.0.1:57433 127.0.0.1:57415 375839000 12 1600000039990a0000000000 ....9....... +5366 15.939115763 127.0.0.1:57433 127.0.0.1:57415 375839012 22 120000003f001f000000000001000300000000000000 ....?................. +5368 15.939400434 127.0.0.1:57415 127.0.0.1:57433 3331504590 12 ffffffff39990a0000000000 ....9....... +5370 15.969181299 127.0.0.1:57415 127.0.0.1:57433 3331504602 12 650000001eba0a0000000000 e........... +5372 15.969373226 127.0.0.1:57415 127.0.0.1:57433 3331504614 101 1e0000001c2118d0c46f33bb01000300000059ff01000000000062e00dc39d01 .....!...o3.......Y.......b.......?.....3...|8.. +5374 15.969628811 127.0.0.1:57433 127.0.0.1:57415 375839034 12 ffffffff1eba0a0000000000 ............ +5376 15.970845461 127.0.0.1:57433 127.0.0.1:57415 375839046 12 340000003a990a0000000000 4...:....... +5378 15.971033096 127.0.0.1:57433 127.0.0.1:57415 375839058 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Y............A +5380 15.971394062 127.0.0.1:57415 127.0.0.1:57433 3331504715 12 ffffffff3a990a0000000000 ....:....... +5382 15.972175837 127.0.0.1:57415 127.0.0.1:57433 3331504727 12 1e0000001fba0a0000000000 ............ +5384 15.972360134 127.0.0.1:57415 127.0.0.1:57433 3331504739 30 1a00000055ceff62b21b3a5001000300000041001f000000000000000000 ....U..b..:P......A........... +5386 15.972731590 127.0.0.1:57433 127.0.0.1:57415 375839110 12 ffffffff1fba0a0000000000 ............ +5388 15.973068953 127.0.0.1:57433 127.0.0.1:57415 375839122 12 1a0000003b990a0000000000 ....;....... +5390 15.973258495 127.0.0.1:57433 127.0.0.1:57415 375839134 26 1600000041001f00000000000100030000000000000000000000 ....A..................... +5392 15.973518133 127.0.0.1:57415 127.0.0.1:57433 3331504769 12 ffffffff3b990a0000000000 ....;....... +5408 16.041340590 127.0.0.1:57415 127.0.0.1:57433 3331504781 12 1a00000020ba0a0000000000 .... ....... +5410 16.041511774 127.0.0.1:57415 127.0.0.1:57433 3331504793 26 16000000548f6340e25e314001000300000043001f0000000000 ....T.c@.^1@......C....... +5412 16.041782618 127.0.0.1:57433 127.0.0.1:57415 375839160 12 ffffffff20ba0a0000000000 .... ....... +5414 16.042553425 127.0.0.1:57433 127.0.0.1:57415 375839172 12 160000003c990a0000000000 ....<....... +5416 16.042777777 127.0.0.1:57433 127.0.0.1:57415 375839184 22 1200000043001f000000000001000300000000000000 ....C................. +5418 16.043093443 127.0.0.1:57415 127.0.0.1:57433 3331504819 12 ffffffff3c990a0000000000 ....<....... +5422 16.124428034 127.0.0.1:57433 127.0.0.1:57415 375839206 12 feffffffdb370100ec370100 .....7...7.. +5430 16.145606995 127.0.0.1:57415 127.0.0.1:57433 3331504831 12 1a00000021ba0a0000000000 ....!....... +5432 16.145792484 127.0.0.1:57415 127.0.0.1:57433 3331504843 26 16000000548f6340e25e314001000300000045001f0000000000 ....T.c@.^1@......E....... +5434 16.146241665 127.0.0.1:57433 127.0.0.1:57415 375839218 12 ffffffff21ba0a0000000000 ....!....... +5436 16.146718025 127.0.0.1:57433 127.0.0.1:57415 375839230 12 160000003d990a0000000000 ....=....... +5438 16.146920204 127.0.0.1:57433 127.0.0.1:57415 375839242 22 1200000045001f000000000001000300000000000000 ....E................. +5440 16.147278309 127.0.0.1:57415 127.0.0.1:57433 3331504869 12 ffffffff3d990a0000000000 ....=....... +5442 16.172284365 127.0.0.1:57415 127.0.0.1:57433 3331504881 12 feffffffed370100db370100 .....7...7.. +5452 16.248534203 127.0.0.1:57415 127.0.0.1:57433 3331504893 12 1a00000022ba0a0000000000 ...."....... +5454 16.248703957 127.0.0.1:57415 127.0.0.1:57433 3331504905 26 16000000548f6340e25e314001000300000047001f0000000000 ....T.c@.^1@......G....... +5456 16.249078751 127.0.0.1:57433 127.0.0.1:57415 375839264 12 ffffffff22ba0a0000000000 ...."....... +5458 16.249494553 127.0.0.1:57433 127.0.0.1:57415 375839276 12 160000003e990a0000000000 ....>....... +5460 16.249650955 127.0.0.1:57433 127.0.0.1:57415 375839288 22 1200000047001f000000000001000300000000000000 ....G................. +5462 16.249968052 127.0.0.1:57415 127.0.0.1:57433 3331504931 12 ffffffff3e990a0000000000 ....>....... +5465 16.273707867 127.0.0.1:57415 127.0.0.1:57433 3331504943 12 6500000023ba0a0000000000 e...#....... +5467 16.273903608 127.0.0.1:57415 127.0.0.1:57433 3331504955 101 1e0000001c2118d0c46f33bb0100030000005aff01000000000093e10dc39d01 .....!...o3.......Z...............?.....3...|8.. +5469 16.274313450 127.0.0.1:57433 127.0.0.1:57415 375839310 12 ffffffff23ba0a0000000000 ....#....... +5471 16.275749445 127.0.0.1:57433 127.0.0.1:57415 375839322 12 340000003f990a0000000000 4...?....... +5473 16.275962591 127.0.0.1:57433 127.0.0.1:57415 375839334 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Z............A +5475 16.276224136 127.0.0.1:57415 127.0.0.1:57433 3331505056 12 ffffffff3f990a0000000000 ....?....... +5477 16.276958227 127.0.0.1:57415 127.0.0.1:57433 3331505068 12 1e00000024ba0a0000000000 ....$....... +5479 16.277172804 127.0.0.1:57415 127.0.0.1:57433 3331505080 30 1a00000055ceff62b21b3a5001000300000049001f000000000000000000 ....U..b..:P......I........... +5481 16.277483940 127.0.0.1:57433 127.0.0.1:57415 375839386 12 ffffffff24ba0a0000000000 ....$....... +5483 16.277996063 127.0.0.1:57433 127.0.0.1:57415 375839398 12 1a00000040990a0000000000 ....@....... +5485 16.278140068 127.0.0.1:57433 127.0.0.1:57415 375839410 26 1600000049001f00000000000100030000000000000000000000 ....I..................... +5487 16.278341532 127.0.0.1:57415 127.0.0.1:57433 3331505110 12 ffffffff40990a0000000000 ....@....... +5493 16.351174116 127.0.0.1:57415 127.0.0.1:57433 3331505122 12 1a00000025ba0a0000000000 ....%....... +5495 16.351426601 127.0.0.1:57415 127.0.0.1:57433 3331505134 26 16000000548f6340e25e31400100030000004b001f0000000000 ....T.c@.^1@......K....... +5497 16.351883411 127.0.0.1:57433 127.0.0.1:57415 375839436 12 ffffffff25ba0a0000000000 ....%....... +5499 16.352447510 127.0.0.1:57433 127.0.0.1:57415 375839448 12 1600000041990a0000000000 ....A....... +5501 16.352679968 127.0.0.1:57433 127.0.0.1:57415 375839460 22 120000004b001f000000000001000300000000000000 ....K................. +5503 16.353103638 127.0.0.1:57415 127.0.0.1:57433 3331505160 12 ffffffff41990a0000000000 ....A....... +5506 16.454184294 127.0.0.1:57415 127.0.0.1:57433 3331505172 12 1a00000026ba0a0000000000 ....&....... +5508 16.454372644 127.0.0.1:57415 127.0.0.1:57433 3331505184 26 16000000548f6340e25e31400100030000004d001f0000000000 ....T.c@.^1@......M....... +5510 16.454794884 127.0.0.1:57433 127.0.0.1:57415 375839482 12 ffffffff26ba0a0000000000 ....&....... +5512 16.455263138 127.0.0.1:57433 127.0.0.1:57415 375839494 12 1600000042990a0000000000 ....B....... +5514 16.455469847 127.0.0.1:57433 127.0.0.1:57415 375839506 22 120000004d001f000000000001000300000000000000 ....M................. +5516 16.455790997 127.0.0.1:57415 127.0.0.1:57433 3331505210 12 ffffffff42990a0000000000 ....B....... +5521 16.556942463 127.0.0.1:57415 127.0.0.1:57433 3331505222 12 1a00000027ba0a0000000000 ....'....... +5523 16.557117224 127.0.0.1:57415 127.0.0.1:57433 3331505234 26 16000000548f6340e25e31400100030000004f001f0000000000 ....T.c@.^1@......O....... +5525 16.557484150 127.0.0.1:57433 127.0.0.1:57415 375839528 12 ffffffff27ba0a0000000000 ....'....... +5527 16.557960033 127.0.0.1:57433 127.0.0.1:57415 375839540 12 1600000043990a0000000000 ....C....... +5529 16.558476210 127.0.0.1:57433 127.0.0.1:57415 375839552 22 120000004f001f000000000001000300000000000000 ....O................. +5531 16.558742762 127.0.0.1:57415 127.0.0.1:57433 3331505260 12 ffffffff43990a0000000000 ....C....... +5533 16.579163074 127.0.0.1:57415 127.0.0.1:57433 3331505272 12 2200000028ba0a0000000000 "...(....... +5535 16.579411745 127.0.0.1:57415 127.0.0.1:57433 3331505284 34 1e0000001c2118d0c46f33bb0100030000005bff010000000000c4e20dc39d01 .....!...o3.......[............... +5537 16.579535484 127.0.0.1:57415 127.0.0.1:57433 3331505318 12 4300000029ba0a0000000000 C...)....... +5539 16.579618931 127.0.0.1:57415 127.0.0.1:57433 3331505330 67 3f000000980433cb0cb47c3801000300000001000000005bff0100000000003d ?.....3...|8...........[.......=B.....&......... +5541 16.579839230 127.0.0.1:57433 127.0.0.1:57415 375839574 12 ffffffff28ba0a0000000000 ....(....... +5543 16.580085039 127.0.0.1:57433 127.0.0.1:57415 375839586 12 ffffffff29ba0a0000000000 ....)....... +5545 16.581201077 127.0.0.1:57433 127.0.0.1:57415 375839598 12 3400000044990a0000000000 4...D....... +5547 16.581413031 127.0.0.1:57433 127.0.0.1:57415 375839610 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....[.........]..A +5549 16.581574917 127.0.0.1:57415 127.0.0.1:57433 3331505397 12 ffffffff44990a0000000000 ....D....... +5551 16.582363367 127.0.0.1:57415 127.0.0.1:57433 3331505409 12 1e0000002aba0a0000000000 ....*....... +5553 16.582520723 127.0.0.1:57415 127.0.0.1:57433 3331505421 30 1a00000055ceff62b21b3a5001000300000051001f000000000000000000 ....U..b..:P......Q........... +5555 16.582790375 127.0.0.1:57433 127.0.0.1:57415 375839662 12 ffffffff2aba0a0000000000 ....*....... +5557 16.583301306 127.0.0.1:57433 127.0.0.1:57415 375839674 12 1a00000045990a0000000000 ....E....... +5559 16.583496571 127.0.0.1:57433 127.0.0.1:57415 375839686 26 1600000051001f00000000000100030000000000000000000000 ....Q..................... +5561 16.583755493 127.0.0.1:57415 127.0.0.1:57433 3331505451 12 ffffffff45990a0000000000 ....E....... +5564 16.623996496 127.0.0.1:57433 127.0.0.1:57415 375839712 12 feffffffdc370100ed370100 .....7...7.. +5574 16.660166502 127.0.0.1:57415 127.0.0.1:57433 3331505463 12 1a0000002bba0a0000000000 ....+....... +5576 16.660389423 127.0.0.1:57415 127.0.0.1:57433 3331505475 26 16000000548f6340e25e314001000300000053001f0000000000 ....T.c@.^1@......S....... +5578 16.660721540 127.0.0.1:57433 127.0.0.1:57415 375839724 12 ffffffff2bba0a0000000000 ....+....... +5580 16.661244154 127.0.0.1:57433 127.0.0.1:57415 375839736 12 1600000046990a0000000000 ....F....... +5582 16.661455870 127.0.0.1:57433 127.0.0.1:57415 375839748 22 1200000053001f000000000001000300000000000000 ....S................. +5584 16.661731005 127.0.0.1:57415 127.0.0.1:57433 3331505501 12 ffffffff46990a0000000000 ....F....... +5586 16.674585819 127.0.0.1:57415 127.0.0.1:57433 3331505513 12 feffffffee370100dc370100 .....7...7.. +5597 16.763022661 127.0.0.1:57415 127.0.0.1:57433 3331505525 12 1a0000002cba0a0000000000 ....,....... +5599 16.763301611 127.0.0.1:57415 127.0.0.1:57433 3331505537 26 16000000548f6340e25e314001000300000055001f0000000000 ....T.c@.^1@......U....... +5601 16.763615131 127.0.0.1:57433 127.0.0.1:57415 375839770 12 ffffffff2cba0a0000000000 ....,....... +5603 16.764505625 127.0.0.1:57433 127.0.0.1:57415 375839782 12 1600000047990a0000000000 ....G....... +5605 16.764654636 127.0.0.1:57433 127.0.0.1:57415 375839794 22 1200000055001f000000000001000300000000000000 ....U................. +5607 16.764972448 127.0.0.1:57415 127.0.0.1:57433 3331505563 12 ffffffff47990a0000000000 ....G....... +5614 16.866905928 127.0.0.1:57415 127.0.0.1:57433 3331505575 12 1a0000002dba0a0000000000 ....-....... +5616 16.867125034 127.0.0.1:57415 127.0.0.1:57433 3331505587 26 16000000548f6340e25e314001000300000057001f0000000000 ....T.c@.^1@......W....... +5618 16.867565870 127.0.0.1:57433 127.0.0.1:57415 375839816 12 ffffffff2dba0a0000000000 ....-....... +5620 16.868168354 127.0.0.1:57433 127.0.0.1:57415 375839828 12 1600000048990a0000000000 ....H....... +5622 16.868418455 127.0.0.1:57433 127.0.0.1:57415 375839840 22 1200000057001f000000000001000300000000000000 ....W................. +5624 16.868636847 127.0.0.1:57415 127.0.0.1:57433 3331505613 12 ffffffff48990a0000000000 ....H....... +5628 16.884770393 127.0.0.1:57415 127.0.0.1:57433 3331505625 12 220000002eba0a0000000000 "........... +5630 16.884933949 127.0.0.1:57415 127.0.0.1:57433 3331505637 34 1e0000001c2118d0c46f33bb0100030000005cff010000000000f6e30dc39d01 .....!...o3.......\............... +5632 16.885064125 127.0.0.1:57415 127.0.0.1:57433 3331505671 12 430000002fba0a0000000000 C.../....... +5634 16.885151148 127.0.0.1:57415 127.0.0.1:57433 3331505683 67 3f000000980433cb0cb47c3801000300000001000000005cff0100000000003d ?.....3...|8...........\.......=B.....&......... +5636 16.885409117 127.0.0.1:57433 127.0.0.1:57415 375839862 12 ffffffff2eba0a0000000000 ............ +5638 16.885739565 127.0.0.1:57433 127.0.0.1:57415 375839874 12 ffffffff2fba0a0000000000 ..../....... +5640 16.886833191 127.0.0.1:57433 127.0.0.1:57415 375839886 12 3400000049990a0000000000 4...I....... +5642 16.886977911 127.0.0.1:57433 127.0.0.1:57415 375839898 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....\.........,S,B +5644 16.887199163 127.0.0.1:57415 127.0.0.1:57433 3331505750 12 ffffffff49990a0000000000 ....I....... +5646 16.888172865 127.0.0.1:57415 127.0.0.1:57433 3331505762 12 1e00000030ba0a0000000000 ....0....... +5648 16.888348579 127.0.0.1:57415 127.0.0.1:57433 3331505774 30 1a00000055ceff62b21b3a5001000300000059001f000000000000000000 ....U..b..:P......Y........... +5650 16.888654232 127.0.0.1:57433 127.0.0.1:57415 375839950 12 ffffffff30ba0a0000000000 ....0....... +5652 16.889240265 127.0.0.1:57433 127.0.0.1:57415 375839962 12 1a0000004a990a0000000000 ....J....... +5654 16.889462948 127.0.0.1:57433 127.0.0.1:57415 375839974 26 1600000059001f00000000000100030000000000000000000000 ....Y..................... +5656 16.889819384 127.0.0.1:57415 127.0.0.1:57433 3331505804 12 ffffffff4a990a0000000000 ....J....... +5659 16.970020771 127.0.0.1:57415 127.0.0.1:57433 3331505816 12 1a00000031ba0a0000000000 ....1....... +5661 16.970220566 127.0.0.1:57415 127.0.0.1:57433 3331505828 26 16000000548f6340e25e31400100030000005b001f0000000000 ....T.c@.^1@......[....... +5663 16.970696688 127.0.0.1:57433 127.0.0.1:57415 375840000 12 ffffffff31ba0a0000000000 ....1....... +5665 16.971186161 127.0.0.1:57433 127.0.0.1:57415 375840012 12 160000004b990a0000000000 ....K....... +5667 16.971414804 127.0.0.1:57433 127.0.0.1:57415 375840024 22 120000005b001f000000000001000300000000000000 ....[................. +5669 16.971641302 127.0.0.1:57415 127.0.0.1:57433 3331505854 12 ffffffff4b990a0000000000 ....K....... +5674 17.073088169 127.0.0.1:57415 127.0.0.1:57433 3331505866 12 1a00000032ba0a0000000000 ....2....... +5676 17.073329687 127.0.0.1:57415 127.0.0.1:57433 3331505878 26 16000000548f6340e25e31400100030000005d001f0000000000 ....T.c@.^1@......]....... +5678 17.073660135 127.0.0.1:57433 127.0.0.1:57415 375840046 12 ffffffff32ba0a0000000000 ....2....... +5680 17.074782610 127.0.0.1:57433 127.0.0.1:57415 375840058 12 160000004c990a0000000000 ....L....... +5682 17.075008631 127.0.0.1:57433 127.0.0.1:57415 375840070 22 120000005d001f000000000001000300000000000000 ....]................. +5684 17.075321674 127.0.0.1:57415 127.0.0.1:57433 3331505904 12 ffffffff4c990a0000000000 ....L....... +5686 17.124348879 127.0.0.1:57433 127.0.0.1:57415 375840092 12 feffffffdd370100ee370100 .....7...7.. +5695 17.175432682 127.0.0.1:57415 127.0.0.1:57433 3331505916 12 feffffffef370100dd370100 .....7...7.. +5699 17.177576065 127.0.0.1:57415 127.0.0.1:57433 3331505928 12 1a00000033ba0a0000000000 ....3....... +5701 17.177778959 127.0.0.1:57415 127.0.0.1:57433 3331505940 26 16000000548f6340e25e31400100030000005f001f0000000000 ....T.c@.^1@......_....... +5703 17.178286076 127.0.0.1:57433 127.0.0.1:57415 375840104 12 ffffffff33ba0a0000000000 ....3....... +5705 17.178738356 127.0.0.1:57433 127.0.0.1:57415 375840116 12 160000004d990a0000000000 ....M....... +5707 17.178907394 127.0.0.1:57433 127.0.0.1:57415 375840128 22 120000005f001f000000000001000300000000000000 ...._................. +5709 17.179225445 127.0.0.1:57415 127.0.0.1:57433 3331505966 12 ffffffff4d990a0000000000 ....M....... +5711 17.189828873 127.0.0.1:57415 127.0.0.1:57433 3331505978 12 2200000034ba0a0000000000 "...4....... +5713 17.189990759 127.0.0.1:57415 127.0.0.1:57433 3331505990 34 1e0000001c2118d0c46f33bb0100030000005dff01000000000027e50dc39d01 .....!...o3.......].......'....... +5715 17.190146446 127.0.0.1:57415 127.0.0.1:57433 3331506024 12 4300000035ba0a0000000000 C...5....... +5717 17.190232992 127.0.0.1:57415 127.0.0.1:57433 3331506036 67 3f000000980433cb0cb47c3801000300000001000000005dff0100000000003d ?.....3...|8...........].......=B.....&......... +5719 17.190350533 127.0.0.1:57433 127.0.0.1:57415 375840150 12 ffffffff34ba0a0000000000 ....4....... +5721 17.190527201 127.0.0.1:57433 127.0.0.1:57415 375840162 12 ffffffff35ba0a0000000000 ....5....... +5723 17.192123652 127.0.0.1:57433 127.0.0.1:57415 375840174 12 340000004e990a0000000000 4...N....... +5725 17.192351341 127.0.0.1:57433 127.0.0.1:57415 375840186 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....].........u.ZB +5727 17.192666769 127.0.0.1:57415 127.0.0.1:57433 3331506103 12 ffffffff4e990a0000000000 ....N....... +5729 17.193446159 127.0.0.1:57415 127.0.0.1:57433 3331506115 12 1e00000036ba0a0000000000 ....6....... +5731 17.193587542 127.0.0.1:57415 127.0.0.1:57433 3331506127 30 1a00000055ceff62b21b3a5001000300000061001f000000000000000000 ....U..b..:P......a........... +5733 17.193869352 127.0.0.1:57433 127.0.0.1:57415 375840238 12 ffffffff36ba0a0000000000 ....6....... +5735 17.194265366 127.0.0.1:57433 127.0.0.1:57415 375840250 12 1a0000004f990a0000000000 ....O....... +5737 17.194408894 127.0.0.1:57433 127.0.0.1:57415 375840262 26 1600000061001f00000000000100030000000000000000000000 ....a..................... +5739 17.194606781 127.0.0.1:57415 127.0.0.1:57433 3331506157 12 ffffffff4f990a0000000000 ....O....... +5748 17.280977249 127.0.0.1:57415 127.0.0.1:57433 3331506169 12 1a00000037ba0a0000000000 ....7....... +5750 17.281174898 127.0.0.1:57415 127.0.0.1:57433 3331506181 26 16000000548f6340e25e314001000300000063001f0000000000 ....T.c@.^1@......c....... +5752 17.281490803 127.0.0.1:57433 127.0.0.1:57415 375840288 12 ffffffff37ba0a0000000000 ....7....... +5754 17.282078266 127.0.0.1:57433 127.0.0.1:57415 375840300 12 1600000050990a0000000000 ....P....... +5756 17.282243967 127.0.0.1:57433 127.0.0.1:57415 375840312 22 1200000063001f000000000001000300000000000000 ....c................. +5758 17.282544136 127.0.0.1:57415 127.0.0.1:57433 3331506207 12 ffffffff50990a0000000000 ....P....... +5769 17.385283709 127.0.0.1:57415 127.0.0.1:57433 3331506219 12 1a00000038ba0a0000000000 ....8....... +5771 17.385565281 127.0.0.1:57415 127.0.0.1:57433 3331506231 26 16000000548f6340e25e314001000300000065001f0000000000 ....T.c@.^1@......e....... +5773 17.385926008 127.0.0.1:57433 127.0.0.1:57415 375840334 12 ffffffff38ba0a0000000000 ....8....... +5775 17.386507273 127.0.0.1:57433 127.0.0.1:57415 375840346 12 1600000051990a0000000000 ....Q....... +5777 17.386690855 127.0.0.1:57433 127.0.0.1:57415 375840358 22 1200000065001f000000000001000300000000000000 ....e................. +5779 17.386975288 127.0.0.1:57415 127.0.0.1:57433 3331506257 12 ffffffff51990a0000000000 ....Q....... +5782 17.487982035 127.0.0.1:57415 127.0.0.1:57433 3331506269 12 1a00000039ba0a0000000000 ....9....... +5784 17.488164425 127.0.0.1:57415 127.0.0.1:57433 3331506281 26 16000000548f6340e25e314001000300000067001f0000000000 ....T.c@.^1@......g....... +5786 17.488534451 127.0.0.1:57433 127.0.0.1:57415 375840380 12 ffffffff39ba0a0000000000 ....9....... +5788 17.489141226 127.0.0.1:57433 127.0.0.1:57415 375840392 12 1600000052990a0000000000 ....R....... +5790 17.489365101 127.0.0.1:57433 127.0.0.1:57415 375840404 22 1200000067001f000000000001000300000000000000 ....g................. +5792 17.489624739 127.0.0.1:57415 127.0.0.1:57433 3331506307 12 ffffffff52990a0000000000 ....R....... +5794 17.495354652 127.0.0.1:57415 127.0.0.1:57433 3331506319 12 650000003aba0a0000000000 e...:....... +5796 17.495542288 127.0.0.1:57415 127.0.0.1:57433 3331506331 101 1e0000001c2118d0c46f33bb0100030000005eff01000000000058e60dc39d01 .....!...o3.......^.......X.......?.....3...|8.. +5798 17.496073961 127.0.0.1:57433 127.0.0.1:57415 375840426 12 ffffffff3aba0a0000000000 ....:....... +5800 17.497075796 127.0.0.1:57433 127.0.0.1:57415 375840438 12 3400000053990a0000000000 4...S....... +5802 17.497326851 127.0.0.1:57433 127.0.0.1:57415 375840450 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....^..........r.B +5804 17.497505426 127.0.0.1:57415 127.0.0.1:57433 3331506432 12 ffffffff53990a0000000000 ....S....... +5806 17.498299122 127.0.0.1:57415 127.0.0.1:57433 3331506444 12 1e0000003bba0a0000000000 ....;....... +5808 17.498446941 127.0.0.1:57415 127.0.0.1:57433 3331506456 30 1a00000055ceff62b21b3a5001000300000069001f000000000000000000 ....U..b..:P......i........... +5810 17.498747349 127.0.0.1:57433 127.0.0.1:57415 375840502 12 ffffffff3bba0a0000000000 ....;....... +5812 17.499183655 127.0.0.1:57433 127.0.0.1:57415 375840514 12 1a00000054990a0000000000 ....T....... +5814 17.499401331 127.0.0.1:57433 127.0.0.1:57415 375840526 26 1600000069001f00000000000100030000000000000000000000 ....i..................... +5816 17.499649763 127.0.0.1:57415 127.0.0.1:57433 3331506486 12 ffffffff54990a0000000000 ....T....... +5839 17.590797901 127.0.0.1:57415 127.0.0.1:57433 3331506498 12 1a0000003cba0a0000000000 ....<....... +5841 17.590968370 127.0.0.1:57415 127.0.0.1:57433 3331506510 26 16000000548f6340e25e31400100030000006b001f0000000000 ....T.c@.^1@......k....... +5843 17.591393948 127.0.0.1:57433 127.0.0.1:57415 375840552 12 ffffffff3cba0a0000000000 ....<....... +5845 17.591884851 127.0.0.1:57433 127.0.0.1:57415 375840564 12 1600000055990a0000000000 ....U....... +5847 17.592041254 127.0.0.1:57433 127.0.0.1:57415 375840576 22 120000006b001f000000000001000300000000000000 ....k................. +5849 17.592266560 127.0.0.1:57415 127.0.0.1:57433 3331506536 12 ffffffff55990a0000000000 ....U....... +5851 17.625890493 127.0.0.1:57433 127.0.0.1:57415 375840598 12 feffffffde370100ef370100 .....7...7.. +5890 17.676511049 127.0.0.1:57415 127.0.0.1:57433 3331506548 12 fefffffff0370100de370100 .....7...7.. +5893 17.694985628 127.0.0.1:57415 127.0.0.1:57433 3331506560 12 1a0000003dba0a0000000000 ....=....... +5895 17.695164680 127.0.0.1:57415 127.0.0.1:57433 3331506572 26 16000000548f6340e25e31400100030000006d001f0000000000 ....T.c@.^1@......m....... +5897 17.695566177 127.0.0.1:57433 127.0.0.1:57415 375840610 12 ffffffff3dba0a0000000000 ....=....... +5899 17.696107149 127.0.0.1:57433 127.0.0.1:57415 375840622 12 1600000056990a0000000000 ....V....... +5901 17.696341038 127.0.0.1:57433 127.0.0.1:57415 375840634 22 120000006d001f000000000001000300000000000000 ....m................. +5903 17.696622849 127.0.0.1:57415 127.0.0.1:57433 3331506598 12 ffffffff56990a0000000000 ....V....... +5911 17.797984838 127.0.0.1:57415 127.0.0.1:57433 3331506610 12 1a0000003eba0a0000000000 ....>....... +5913 17.798169851 127.0.0.1:57415 127.0.0.1:57433 3331506622 26 16000000548f6340e25e31400100030000006f001f0000000000 ....T.c@.^1@......o....... +5915 17.798537970 127.0.0.1:57433 127.0.0.1:57415 375840656 12 ffffffff3eba0a0000000000 ....>....... +5917 17.800001621 127.0.0.1:57415 127.0.0.1:57433 3331506648 12 220000003fba0a0000000000 "...?....... +5919 17.800168037 127.0.0.1:57415 127.0.0.1:57433 3331506660 34 1e0000001c2118d0c46f33bb0100030000005fff01000000000089e70dc39d01 .....!...o3......._............... +5920 17.800289631 127.0.0.1:57433 127.0.0.1:57415 375840668 34 1600000057990a0000000000120000006f001f00000000000100030000000000 ....W...........o................. +5922 17.800427675 127.0.0.1:57415 127.0.0.1:57433 3331506694 12 4300000040ba0a0000000000 C...@....... +5924 17.800513744 127.0.0.1:57415 127.0.0.1:57433 3331506706 67 3f000000980433cb0cb47c3801000300000001000000005fff0100000000003d ?.....3...|8..........._.......=B.....&......... +5926 17.800636530 127.0.0.1:57433 127.0.0.1:57415 375840702 12 ffffffff3fba0a0000000000 ....?....... +5928 17.800739527 127.0.0.1:57415 127.0.0.1:57433 3331506773 12 ffffffff57990a0000000000 ....W....... +5929 17.800751209 127.0.0.1:57433 127.0.0.1:57415 375840714 12 ffffffff40ba0a0000000000 ....@....... +5932 17.803535223 127.0.0.1:57433 127.0.0.1:57415 375840726 12 3400000058990a0000000000 4...X....... +5934 17.803724527 127.0.0.1:57433 127.0.0.1:57415 375840738 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([....._..........1.B +5936 17.803994656 127.0.0.1:57415 127.0.0.1:57433 3331506785 12 ffffffff58990a0000000000 ....X....... +5938 17.804731607 127.0.0.1:57415 127.0.0.1:57433 3331506797 12 1e00000041ba0a0000000000 ....A....... +5940 17.804874897 127.0.0.1:57415 127.0.0.1:57433 3331506809 30 1a00000055ceff62b21b3a5001000300000071001f000000000000000000 ....U..b..:P......q........... +5942 17.805187702 127.0.0.1:57433 127.0.0.1:57415 375840790 12 ffffffff41ba0a0000000000 ....A....... +5944 17.805941105 127.0.0.1:57433 127.0.0.1:57415 375840802 12 1a00000059990a0000000000 ....Y....... +5946 17.806091309 127.0.0.1:57433 127.0.0.1:57415 375840814 26 1600000071001f00000000000100030000000000000000000000 ....q..................... +5948 17.806332111 127.0.0.1:57415 127.0.0.1:57433 3331506839 12 ffffffff59990a0000000000 ....Y....... +5954 17.901931763 127.0.0.1:57415 127.0.0.1:57433 3331506851 12 1a00000042ba0a0000000000 ....B....... +5956 17.902153254 127.0.0.1:57415 127.0.0.1:57433 3331506863 26 16000000548f6340e25e314001000300000073001f0000000000 ....T.c@.^1@......s....... +5958 17.902632713 127.0.0.1:57433 127.0.0.1:57415 375840840 12 ffffffff42ba0a0000000000 ....B....... +5960 17.903433323 127.0.0.1:57433 127.0.0.1:57415 375840852 12 160000005a990a0000000000 ....Z....... +5962 17.903667450 127.0.0.1:57433 127.0.0.1:57415 375840864 22 1200000073001f000000000001000300000000000000 ....s................. +5964 17.903969526 127.0.0.1:57415 127.0.0.1:57433 3331506889 12 ffffffff5a990a0000000000 ....Z....... +5966 18.007293463 127.0.0.1:57415 127.0.0.1:57433 3331506901 12 1a00000043ba0a0000000000 ....C....... +5968 18.007535458 127.0.0.1:57415 127.0.0.1:57433 3331506913 26 16000000548f6340e25e314001000300000075001f0000000000 ....T.c@.^1@......u....... +5970 18.008100510 127.0.0.1:57433 127.0.0.1:57415 375840886 12 ffffffff43ba0a0000000000 ....C....... +5972 18.008494616 127.0.0.1:57433 127.0.0.1:57415 375840898 12 160000005b990a0000000000 ....[....... +5974 18.008660793 127.0.0.1:57433 127.0.0.1:57415 375840910 22 1200000075001f000000000001000300000000000000 ....u................. +5976 18.009055614 127.0.0.1:57415 127.0.0.1:57433 3331506939 12 ffffffff5b990a0000000000 ....[....... +5980 18.106323004 127.0.0.1:57415 127.0.0.1:57433 3331506951 12 6500000044ba0a0000000000 e...D....... +5982 18.106574535 127.0.0.1:57415 127.0.0.1:57433 3331506963 101 1e0000001c2118d0c46f33bb01000300000060ff010000000000bbe80dc39d01 .....!...o3.......`...............?.....3...|8.. +5984 18.106949568 127.0.0.1:57433 127.0.0.1:57415 375840932 12 ffffffff44ba0a0000000000 ....D....... +5986 18.108173609 127.0.0.1:57433 127.0.0.1:57415 375840944 12 340000005c990a0000000000 4...\....... +5988 18.108325720 127.0.0.1:57433 127.0.0.1:57415 375840956 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....`.........v..B +5990 18.108633280 127.0.0.1:57415 127.0.0.1:57433 3331507064 12 ffffffff5c990a0000000000 ....\....... +5992 18.109680414 127.0.0.1:57415 127.0.0.1:57433 3331507076 12 1e00000045ba0a0000000000 ....E....... +5994 18.109858990 127.0.0.1:57415 127.0.0.1:57433 3331507088 30 1a00000055ceff62b21b3a5001000300000077001f000000000000000000 ....U..b..:P......w........... +5996 18.110255003 127.0.0.1:57433 127.0.0.1:57415 375841008 12 ffffffff45ba0a0000000000 ....E....... +5998 18.110418081 127.0.0.1:57415 127.0.0.1:57433 3331507118 12 1a00000046ba0a0000000000 ....F....... +6000 18.110596418 127.0.0.1:57415 127.0.0.1:57433 3331507130 26 16000000548f6340e25e314001000300000079001f0000000000 ....T.c@.^1@......y....... +6001 18.110688210 127.0.0.1:57433 127.0.0.1:57415 375841020 38 1a0000005d990a00000000001600000077001f00000000000100030000000000 ....]...........w..................... +6003 18.110912085 127.0.0.1:57433 127.0.0.1:57415 375841058 12 ffffffff46ba0a0000000000 ....F....... +6005 18.110985279 127.0.0.1:57415 127.0.0.1:57433 3331507156 12 ffffffff5d990a0000000000 ....]....... +6007 18.111386299 127.0.0.1:57433 127.0.0.1:57415 375841070 12 160000005e990a0000000000 ....^....... +6009 18.111569643 127.0.0.1:57433 127.0.0.1:57415 375841082 22 1200000079001f000000000001000300000000000000 ....y................. +6011 18.111818552 127.0.0.1:57415 127.0.0.1:57433 3331507168 12 ffffffff5e990a0000000000 ....^....... +6013 18.126076937 127.0.0.1:57433 127.0.0.1:57415 375841104 12 feffffffdf370100f0370100 .....7...7.. +6022 18.177390337 127.0.0.1:57415 127.0.0.1:57433 3331507180 12 fefffffff1370100df370100 .....7...7.. +6031 18.213768244 127.0.0.1:57415 127.0.0.1:57433 3331507192 12 1a00000047ba0a0000000000 ....G....... +6033 18.214041233 127.0.0.1:57415 127.0.0.1:57433 3331507204 26 16000000548f6340e25e31400100030000007b001f0000000000 ....T.c@.^1@......{....... +6035 18.214456558 127.0.0.1:57433 127.0.0.1:57415 375841116 12 ffffffff47ba0a0000000000 ....G....... +6037 18.214839935 127.0.0.1:57433 127.0.0.1:57415 375841128 12 160000005f990a0000000000 ...._....... +6039 18.215220690 127.0.0.1:57433 127.0.0.1:57415 375841140 22 120000007b001f000000000001000300000000000000 ....{................. +6041 18.215535879 127.0.0.1:57415 127.0.0.1:57433 3331507230 12 ffffffff5f990a0000000000 ...._....... +6079 18.317620754 127.0.0.1:57415 127.0.0.1:57433 3331507242 12 1a00000048ba0a0000000000 ....H....... +6081 18.317830563 127.0.0.1:57415 127.0.0.1:57433 3331507254 26 16000000548f6340e25e31400100030000007d001f0000000000 ....T.c@.^1@......}....... +6083 18.318336010 127.0.0.1:57433 127.0.0.1:57415 375841162 12 ffffffff48ba0a0000000000 ....H....... +6085 18.318619728 127.0.0.1:57433 127.0.0.1:57415 375841174 12 1600000060990a0000000000 ....`....... +6087 18.318815708 127.0.0.1:57433 127.0.0.1:57415 375841186 22 120000007d001f000000000001000300000000000000 ....}................. +6089 18.319032192 127.0.0.1:57415 127.0.0.1:57433 3331507280 12 ffffffff60990a0000000000 ....`....... +6095 18.412119389 127.0.0.1:57415 127.0.0.1:57433 3331507292 12 6500000049ba0a0000000000 e...I....... +6097 18.412384033 127.0.0.1:57415 127.0.0.1:57433 3331507304 101 1e0000001c2118d0c46f33bb01000300000061ff010000000000ede90dc39d01 .....!...o3.......a...............?.....3...|8.. +6099 18.412855148 127.0.0.1:57433 127.0.0.1:57415 375841208 12 ffffffff49ba0a0000000000 ....I....... +6101 18.413732529 127.0.0.1:57433 127.0.0.1:57415 375841220 12 3400000061990a0000000000 4...a....... +6103 18.413981915 127.0.0.1:57433 127.0.0.1:57415 375841232 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....a.........SR.C +6105 18.414207458 127.0.0.1:57415 127.0.0.1:57433 3331507405 12 ffffffff61990a0000000000 ....a....... +6107 18.415160179 127.0.0.1:57415 127.0.0.1:57433 3331507417 12 1e0000004aba0a0000000000 ....J....... +6109 18.415362835 127.0.0.1:57415 127.0.0.1:57433 3331507429 30 1a00000055ceff62b21b3a500100030000007f001f000000000000000000 ....U..b..:P.................. +6111 18.415856600 127.0.0.1:57433 127.0.0.1:57415 375841284 12 ffffffff4aba0a0000000000 ....J....... +6113 18.416230917 127.0.0.1:57433 127.0.0.1:57415 375841296 12 1a00000062990a0000000000 ....b....... +6115 18.416453600 127.0.0.1:57433 127.0.0.1:57415 375841308 26 160000007f001f00000000000100030000000000000000000000 .......................... +6117 18.416734934 127.0.0.1:57415 127.0.0.1:57433 3331507459 12 ffffffff62990a0000000000 ....b....... +6119 18.420229912 127.0.0.1:57415 127.0.0.1:57433 3331507471 12 1a0000004bba0a0000000000 ....K....... +6121 18.420438528 127.0.0.1:57415 127.0.0.1:57433 3331507483 26 16000000548f6340e25e314001000300000081001f0000000000 ....T.c@.^1@.............. +6123 18.420822382 127.0.0.1:57433 127.0.0.1:57415 375841334 12 ffffffff4bba0a0000000000 ....K....... +6125 18.421175241 127.0.0.1:57433 127.0.0.1:57415 375841346 12 1600000063990a0000000000 ....c....... +6127 18.421334743 127.0.0.1:57433 127.0.0.1:57415 375841358 22 1200000081001f000000000001000300000000000000 ...................... +6129 18.421511173 127.0.0.1:57415 127.0.0.1:57433 3331507509 12 ffffffff63990a0000000000 ....c....... +6133 18.522553921 127.0.0.1:57415 127.0.0.1:57433 3331507521 12 1a0000004cba0a0000000000 ....L....... +6135 18.522760153 127.0.0.1:57415 127.0.0.1:57433 3331507533 26 16000000548f6340e25e314001000300000083001f0000000000 ....T.c@.^1@.............. +6137 18.523179531 127.0.0.1:57433 127.0.0.1:57415 375841380 12 ffffffff4cba0a0000000000 ....L....... +6139 18.523549557 127.0.0.1:57433 127.0.0.1:57415 375841392 12 1600000064990a0000000000 ....d....... +6141 18.523705721 127.0.0.1:57433 127.0.0.1:57415 375841404 22 1200000083001f000000000001000300000000000000 ...................... +6143 18.524007559 127.0.0.1:57415 127.0.0.1:57433 3331507559 12 ffffffff64990a0000000000 ....d....... +6145 18.625335693 127.0.0.1:57415 127.0.0.1:57433 3331507571 12 1a0000004dba0a0000000000 ....M....... +6147 18.625567913 127.0.0.1:57415 127.0.0.1:57433 3331507583 26 16000000548f6340e25e314001000300000085001f0000000000 ....T.c@.^1@.............. +6149 18.625996351 127.0.0.1:57433 127.0.0.1:57415 375841426 12 ffffffff4dba0a0000000000 ....M....... +6151 18.627194405 127.0.0.1:57433 127.0.0.1:57415 375841438 12 1600000065990a0000000000 ....e....... +6153 18.627363682 127.0.0.1:57433 127.0.0.1:57415 375841450 22 1200000085001f000000000001000300000000000000 ...................... +6155 18.627650738 127.0.0.1:57415 127.0.0.1:57433 3331507609 12 ffffffff65990a0000000000 ....e....... +6156 18.627825499 127.0.0.1:57433 127.0.0.1:57415 375841472 12 feffffffe0370100f1370100 .....7...7.. +6197 18.678141117 127.0.0.1:57415 127.0.0.1:57433 3331507621 12 fefffffff2370100e0370100 .....7...7.. +6206 18.717057705 127.0.0.1:57415 127.0.0.1:57433 3331507633 12 650000004eba0a0000000000 e...N....... +6208 18.717234135 127.0.0.1:57415 127.0.0.1:57433 3331507645 101 1e0000001c2118d0c46f33bb01000300000062ff0100000000001eeb0dc39d01 .....!...o3.......b...............?.....3...|8.. +6210 18.717494011 127.0.0.1:57433 127.0.0.1:57415 375841484 12 ffffffff4eba0a0000000000 ....N....... +6212 18.718695402 127.0.0.1:57433 127.0.0.1:57415 375841496 12 3400000066990a0000000000 4...f....... +6214 18.718939781 127.0.0.1:57433 127.0.0.1:57415 375841508 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....b...........CC +6216 18.719259739 127.0.0.1:57415 127.0.0.1:57433 3331507746 12 ffffffff66990a0000000000 ....f....... +6218 18.720276833 127.0.0.1:57415 127.0.0.1:57433 3331507758 12 1e0000004fba0a0000000000 ....O....... +6220 18.720432758 127.0.0.1:57415 127.0.0.1:57433 3331507770 30 1a00000055ceff62b21b3a5001000300000087001f000000000000000000 ....U..b..:P.................. +6222 18.720907927 127.0.0.1:57433 127.0.0.1:57415 375841560 12 ffffffff4fba0a0000000000 ....O....... +6224 18.721230984 127.0.0.1:57433 127.0.0.1:57415 375841572 12 1a00000067990a0000000000 ....g....... +6226 18.721379042 127.0.0.1:57433 127.0.0.1:57415 375841584 26 1600000087001f00000000000100030000000000000000000000 .......................... +6228 18.721643686 127.0.0.1:57415 127.0.0.1:57433 3331507800 12 ffffffff67990a0000000000 ....g....... +6230 18.729306221 127.0.0.1:57415 127.0.0.1:57433 3331507812 12 1a00000050ba0a0000000000 ....P....... +6232 18.729460478 127.0.0.1:57415 127.0.0.1:57433 3331507824 26 16000000548f6340e25e314001000300000089001f0000000000 ....T.c@.^1@.............. +6234 18.729756832 127.0.0.1:57433 127.0.0.1:57415 375841610 12 ffffffff50ba0a0000000000 ....P....... +6236 18.730295658 127.0.0.1:57433 127.0.0.1:57415 375841622 12 1600000068990a0000000000 ....h....... +6238 18.730436802 127.0.0.1:57433 127.0.0.1:57415 375841634 22 1200000089001f000000000001000300000000000000 ...................... +6240 18.730723858 127.0.0.1:57415 127.0.0.1:57433 3331507850 12 ffffffff68990a0000000000 ....h....... +6261 18.832480431 127.0.0.1:57415 127.0.0.1:57433 3331507862 12 1a00000051ba0a0000000000 ....Q....... +6263 18.832659483 127.0.0.1:57415 127.0.0.1:57433 3331507874 26 16000000548f6340e25e31400100030000008b001f0000000000 ....T.c@.^1@.............. +6265 18.833107471 127.0.0.1:57433 127.0.0.1:57415 375841656 12 ffffffff51ba0a0000000000 ....Q....... +6267 18.833582640 127.0.0.1:57433 127.0.0.1:57415 375841668 12 1600000069990a0000000000 ....i....... +6269 18.833780050 127.0.0.1:57433 127.0.0.1:57415 375841680 22 120000008b001f000000000001000300000000000000 ...................... +6271 18.834055662 127.0.0.1:57415 127.0.0.1:57433 3331507900 12 ffffffff69990a0000000000 ....i....... +6293 18.935029507 127.0.0.1:57415 127.0.0.1:57433 3331507912 12 1a00000052ba0a0000000000 ....R....... +6295 18.935199499 127.0.0.1:57415 127.0.0.1:57433 3331507924 26 16000000548f6340e25e31400100030000008d001f0000000000 ....T.c@.^1@.............. +6297 18.935690403 127.0.0.1:57433 127.0.0.1:57415 375841702 12 ffffffff52ba0a0000000000 ....R....... +6299 18.936075449 127.0.0.1:57433 127.0.0.1:57415 375841714 12 160000006a990a0000000000 ....j....... +6301 18.936262608 127.0.0.1:57433 127.0.0.1:57415 375841726 22 120000008d001f000000000001000300000000000000 ...................... +6303 18.936539888 127.0.0.1:57415 127.0.0.1:57433 3331507950 12 ffffffff6a990a0000000000 ....j....... +6307 19.022015572 127.0.0.1:57415 127.0.0.1:57433 3331507962 12 6500000053ba0a0000000000 e...S....... +6309 19.022222757 127.0.0.1:57415 127.0.0.1:57433 3331507974 101 1e0000001c2118d0c46f33bb01000300000063ff0100000000004fec0dc39d01 .....!...o3.......c.......O.......?.....3...|8.. +6311 19.022572994 127.0.0.1:57433 127.0.0.1:57415 375841748 12 ffffffff53ba0a0000000000 ....S....... +6313 19.023537636 127.0.0.1:57433 127.0.0.1:57415 375841760 12 340000006b990a0000000000 4...k....... +6315 19.023704290 127.0.0.1:57433 127.0.0.1:57415 375841772 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....c..........^rC +6317 19.024010420 127.0.0.1:57415 127.0.0.1:57433 3331508075 12 ffffffff6b990a0000000000 ....k....... +6319 19.024800062 127.0.0.1:57415 127.0.0.1:57433 3331508087 12 1e00000054ba0a0000000000 ....T....... +6321 19.024927378 127.0.0.1:57415 127.0.0.1:57433 3331508099 30 1a00000055ceff62b21b3a500100030000008f001f000000000000000000 ....U..b..:P.................. +6323 19.025284052 127.0.0.1:57433 127.0.0.1:57415 375841824 12 ffffffff54ba0a0000000000 ....T....... +6325 19.025699615 127.0.0.1:57433 127.0.0.1:57415 375841836 12 1a0000006c990a0000000000 ....l....... +6327 19.025859833 127.0.0.1:57433 127.0.0.1:57415 375841848 26 160000008f001f00000000000100030000000000000000000000 .......................... +6329 19.026134729 127.0.0.1:57415 127.0.0.1:57433 3331508129 12 ffffffff6c990a0000000000 ....l....... +6331 19.037313938 127.0.0.1:57415 127.0.0.1:57433 3331508141 12 1a00000055ba0a0000000000 ....U....... +6333 19.037472010 127.0.0.1:57415 127.0.0.1:57433 3331508153 26 16000000548f6340e25e314001000300000091001f0000000000 ....T.c@.^1@.............. +6335 19.037756205 127.0.0.1:57433 127.0.0.1:57415 375841874 12 ffffffff55ba0a0000000000 ....U....... +6337 19.038277864 127.0.0.1:57433 127.0.0.1:57415 375841886 12 160000006d990a0000000000 ....m....... +6339 19.038431644 127.0.0.1:57433 127.0.0.1:57415 375841898 22 1200000091001f000000000001000300000000000000 ...................... +6341 19.038621902 127.0.0.1:57415 127.0.0.1:57433 3331508179 12 ffffffff6d990a0000000000 ....m....... +6344 19.129133701 127.0.0.1:57433 127.0.0.1:57415 375841920 12 feffffffe1370100f2370100 .....7...7.. +6351 19.140439749 127.0.0.1:57415 127.0.0.1:57433 3331508191 12 1a00000056ba0a0000000000 ....V....... +6353 19.140653372 127.0.0.1:57415 127.0.0.1:57433 3331508203 26 16000000548f6340e25e314001000300000093001f0000000000 ....T.c@.^1@.............. +6355 19.141138315 127.0.0.1:57433 127.0.0.1:57415 375841932 12 ffffffff56ba0a0000000000 ....V....... +6357 19.141435862 127.0.0.1:57433 127.0.0.1:57415 375841944 12 160000006e990a0000000000 ....n....... +6359 19.141600132 127.0.0.1:57433 127.0.0.1:57415 375841956 22 1200000093001f000000000001000300000000000000 ...................... +6361 19.141917229 127.0.0.1:57415 127.0.0.1:57433 3331508229 12 ffffffff6e990a0000000000 ....n....... +6364 19.178971291 127.0.0.1:57415 127.0.0.1:57433 3331508241 12 fefffffff3370100e1370100 .....7...7.. +6373 19.243351460 127.0.0.1:57415 127.0.0.1:57433 3331508253 12 1a00000057ba0a0000000000 ....W....... +6375 19.243515015 127.0.0.1:57415 127.0.0.1:57433 3331508265 26 16000000548f6340e25e314001000300000095001f0000000000 ....T.c@.^1@.............. +6377 19.244006157 127.0.0.1:57433 127.0.0.1:57415 375841978 12 ffffffff57ba0a0000000000 ....W....... +6379 19.244387150 127.0.0.1:57433 127.0.0.1:57415 375841990 12 160000006f990a0000000000 ....o....... +6381 19.244550228 127.0.0.1:57433 127.0.0.1:57415 375842002 22 1200000095001f000000000001000300000000000000 ...................... +6383 19.244815111 127.0.0.1:57415 127.0.0.1:57433 3331508291 12 ffffffff6f990a0000000000 ....o....... +6385 19.326794624 127.0.0.1:57415 127.0.0.1:57433 3331508303 12 6500000058ba0a0000000000 e...X....... +6387 19.326947212 127.0.0.1:57415 127.0.0.1:57433 3331508315 101 1e0000001c2118d0c46f33bb01000300000064ff01000000000080ed0dc39d01 .....!...o3.......d...............?.....3...|8.. +6389 19.327365637 127.0.0.1:57433 127.0.0.1:57415 375842024 12 ffffffff58ba0a0000000000 ....X....... +6391 19.328127623 127.0.0.1:57433 127.0.0.1:57415 375842036 12 3400000070990a0000000000 4...p....... +6393 19.328287125 127.0.0.1:57433 127.0.0.1:57415 375842048 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....d.........-..C +6395 19.328558207 127.0.0.1:57415 127.0.0.1:57433 3331508416 12 ffffffff70990a0000000000 ....p....... +6397 19.329325676 127.0.0.1:57415 127.0.0.1:57433 3331508428 12 1e00000059ba0a0000000000 ....Y....... +6399 19.329483747 127.0.0.1:57415 127.0.0.1:57433 3331508440 30 1a00000055ceff62b21b3a5001000300000097001f000000000000000000 ....U..b..:P.................. +6401 19.329877138 127.0.0.1:57433 127.0.0.1:57415 375842100 12 ffffffff59ba0a0000000000 ....Y....... +6403 19.330443859 127.0.0.1:57433 127.0.0.1:57415 375842112 12 1a00000071990a0000000000 ....q....... +6405 19.330626249 127.0.0.1:57433 127.0.0.1:57415 375842124 26 1600000097001f00000000000100030000000000000000000000 .......................... +6407 19.330957651 127.0.0.1:57415 127.0.0.1:57433 3331508470 12 ffffffff71990a0000000000 ....q....... +6413 19.346127033 127.0.0.1:57415 127.0.0.1:57433 3331508482 12 1a0000005aba0a0000000000 ....Z....... +6415 19.346288443 127.0.0.1:57415 127.0.0.1:57433 3331508494 26 16000000548f6340e25e314001000300000099001f0000000000 ....T.c@.^1@.............. +6417 19.346596479 127.0.0.1:57433 127.0.0.1:57415 375842150 12 ffffffff5aba0a0000000000 ....Z....... +6419 19.347219467 127.0.0.1:57433 127.0.0.1:57415 375842162 12 1600000072990a0000000000 ....r....... +6421 19.347414732 127.0.0.1:57433 127.0.0.1:57415 375842174 22 1200000099001f000000000001000300000000000000 ...................... +6423 19.347647429 127.0.0.1:57415 127.0.0.1:57433 3331508520 12 ffffffff72990a0000000000 ....r....... +6425 19.450809956 127.0.0.1:57415 127.0.0.1:57433 3331508532 12 1a0000005bba0a0000000000 ....[....... +6427 19.451032162 127.0.0.1:57415 127.0.0.1:57433 3331508544 26 16000000548f6340e25e31400100030000009b001f0000000000 ....T.c@.^1@.............. +6429 19.451568127 127.0.0.1:57433 127.0.0.1:57415 375842196 12 ffffffff5bba0a0000000000 ....[....... +6431 19.452046871 127.0.0.1:57433 127.0.0.1:57415 375842208 12 1600000073990a0000000000 ....s....... +6433 19.452207327 127.0.0.1:57433 127.0.0.1:57415 375842220 22 120000009b001f000000000001000300000000000000 ...................... +6435 19.452566147 127.0.0.1:57415 127.0.0.1:57433 3331508570 12 ffffffff73990a0000000000 ....s....... +6439 19.554247618 127.0.0.1:57415 127.0.0.1:57433 3331508582 12 1a0000005cba0a0000000000 ....\....... +6441 19.554426193 127.0.0.1:57415 127.0.0.1:57433 3331508594 26 16000000548f6340e25e31400100030000009d001f0000000000 ....T.c@.^1@.............. +6443 19.554922342 127.0.0.1:57433 127.0.0.1:57415 375842242 12 ffffffff5cba0a0000000000 ....\....... +6445 19.555333614 127.0.0.1:57433 127.0.0.1:57415 375842254 12 1600000074990a0000000000 ....t....... +6447 19.555458307 127.0.0.1:57433 127.0.0.1:57415 375842266 22 120000009d001f000000000001000300000000000000 ...................... +6449 19.555681944 127.0.0.1:57415 127.0.0.1:57433 3331508620 12 ffffffff74990a0000000000 ....t....... +6452 19.629365444 127.0.0.1:57433 127.0.0.1:57415 375842288 12 feffffffe2370100f3370100 .....7...7.. +6455 19.630631447 127.0.0.1:57415 127.0.0.1:57433 3331508632 12 650000005dba0a0000000000 e...]....... +6457 19.630908728 127.0.0.1:57415 127.0.0.1:57433 3331508644 101 1e0000001c2118d0c46f33bb01000300000065ff010000000000afee0dc39d01 .....!...o3.......e...............?.....3...|8.. +6459 19.631224155 127.0.0.1:57433 127.0.0.1:57415 375842300 12 ffffffff5dba0a0000000000 ....]....... +6461 19.633043289 127.0.0.1:57433 127.0.0.1:57415 375842312 12 3400000075990a0000000000 4...u....... +6463 19.633207083 127.0.0.1:57433 127.0.0.1:57415 375842324 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....e.........Q^.C +6465 19.633462667 127.0.0.1:57415 127.0.0.1:57433 3331508745 12 ffffffff75990a0000000000 ....u....... +6467 19.634305239 127.0.0.1:57415 127.0.0.1:57433 3331508757 12 1e0000005eba0a0000000000 ....^....... +6469 19.634463787 127.0.0.1:57415 127.0.0.1:57433 3331508769 30 1a00000055ceff62b21b3a500100030000009f001f000000000000000000 ....U..b..:P.................. +6471 19.634826422 127.0.0.1:57433 127.0.0.1:57415 375842376 12 ffffffff5eba0a0000000000 ....^....... +6477 19.635366440 127.0.0.1:57433 127.0.0.1:57415 375842388 12 1a00000076990a0000000000 ....v....... +6479 19.635576487 127.0.0.1:57433 127.0.0.1:57415 375842400 26 160000009f001f00000000000100030000000000000000000000 .......................... +6481 19.635830879 127.0.0.1:57415 127.0.0.1:57433 3331508799 12 ffffffff76990a0000000000 ....v....... +6483 19.657265902 127.0.0.1:57415 127.0.0.1:57433 3331508811 12 1a0000005fba0a0000000000 ...._....... +6485 19.657465935 127.0.0.1:57415 127.0.0.1:57433 3331508823 26 16000000548f6340e25e3140010003000000a1001f0000000000 ....T.c@.^1@.............. +6487 19.657866478 127.0.0.1:57433 127.0.0.1:57415 375842426 12 ffffffff5fba0a0000000000 ...._....... +6489 19.658228159 127.0.0.1:57433 127.0.0.1:57415 375842438 12 1600000077990a0000000000 ....w....... +6491 19.658385754 127.0.0.1:57433 127.0.0.1:57415 375842450 22 12000000a1001f000000000001000300000000000000 ...................... +6493 19.658720255 127.0.0.1:57415 127.0.0.1:57433 3331508849 12 ffffffff77990a0000000000 ....w....... +6496 19.681012392 127.0.0.1:57415 127.0.0.1:57433 3331508861 12 fefffffff4370100e2370100 .....7...7.. +6505 19.759926796 127.0.0.1:57415 127.0.0.1:57433 3331508873 12 1a00000060ba0a0000000000 ....`....... +6507 19.760112762 127.0.0.1:57415 127.0.0.1:57433 3331508885 26 16000000548f6340e25e3140010003000000a3001f0000000000 ....T.c@.^1@.............. +6509 19.760636806 127.0.0.1:57433 127.0.0.1:57415 375842472 12 ffffffff60ba0a0000000000 ....`....... +6511 19.761119843 127.0.0.1:57433 127.0.0.1:57415 375842484 12 1600000078990a0000000000 ....x....... +6513 19.761354923 127.0.0.1:57433 127.0.0.1:57415 375842496 22 12000000a3001f000000000001000300000000000000 ...................... +6515 19.761663675 127.0.0.1:57415 127.0.0.1:57433 3331508911 12 ffffffff78990a0000000000 ....x....... +6521 19.863322735 127.0.0.1:57415 127.0.0.1:57433 3331508923 12 1a00000061ba0a0000000000 ....a....... +6523 19.863505602 127.0.0.1:57415 127.0.0.1:57433 3331508935 26 16000000548f6340e25e3140010003000000a5001f0000000000 ....T.c@.^1@.............. +6525 19.863890648 127.0.0.1:57433 127.0.0.1:57415 375842518 12 ffffffff61ba0a0000000000 ....a....... +6527 19.864600420 127.0.0.1:57433 127.0.0.1:57415 375842530 12 1600000079990a0000000000 ....y....... +6529 19.864783049 127.0.0.1:57433 127.0.0.1:57415 375842542 22 12000000a5001f000000000001000300000000000000 ...................... +6531 19.865003347 127.0.0.1:57415 127.0.0.1:57433 3331508961 12 ffffffff79990a0000000000 ....y....... +6535 19.935593367 127.0.0.1:57415 127.0.0.1:57433 3331508973 12 2200000062ba0a0000000000 "...b....... +6537 19.935754061 127.0.0.1:57415 127.0.0.1:57433 3331508985 34 1e0000001c2118d0c46f33bb01000300000066ff010000000000e1ef0dc39d01 .....!...o3.......f............... +6539 19.935919285 127.0.0.1:57415 127.0.0.1:57433 3331509019 12 4300000063ba0a0000000000 C...c....... +6541 19.936004162 127.0.0.1:57415 127.0.0.1:57433 3331509031 67 3f000000980433cb0cb47c38010003000000010000000066ff0100000000003d ?.....3...|8...........f.......=B.....&......... +6543 19.936175108 127.0.0.1:57433 127.0.0.1:57415 375842564 12 ffffffff62ba0a0000000000 ....b....... +6545 19.936432362 127.0.0.1:57433 127.0.0.1:57415 375842576 12 ffffffff63ba0a0000000000 ....c....... +6547 19.937446117 127.0.0.1:57433 127.0.0.1:57415 375842588 12 340000007a990a0000000000 4...z....... +6549 19.938115597 127.0.0.1:57433 127.0.0.1:57415 375842600 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....f.........8..C +6551 19.938531876 127.0.0.1:57415 127.0.0.1:57433 3331509098 12 ffffffff7a990a0000000000 ....z....... +6553 19.939696312 127.0.0.1:57415 127.0.0.1:57433 3331509110 12 1e00000064ba0a0000000000 ....d....... +6555 19.939882755 127.0.0.1:57415 127.0.0.1:57433 3331509122 30 1a00000055ceff62b21b3a50010003000000a7001f000000000000000000 ....U..b..:P.................. +6557 19.940331459 127.0.0.1:57433 127.0.0.1:57415 375842652 12 ffffffff64ba0a0000000000 ....d....... +6559 19.940906763 127.0.0.1:57433 127.0.0.1:57415 375842664 12 1a0000007b990a0000000000 ....{....... +6561 19.941170692 127.0.0.1:57433 127.0.0.1:57415 375842676 26 16000000a7001f00000000000100030000000000000000000000 .......................... +6563 19.941505432 127.0.0.1:57415 127.0.0.1:57433 3331509152 12 ffffffff7b990a0000000000 ....{....... +6565 19.967327356 127.0.0.1:57415 127.0.0.1:57433 3331509164 12 1a00000065ba0a0000000000 ....e....... +6567 19.967809677 127.0.0.1:57415 127.0.0.1:57433 3331509176 26 16000000548f6340e25e3140010003000000a9001f0000000000 ....T.c@.^1@.............. +6569 19.968189955 127.0.0.1:57433 127.0.0.1:57415 375842702 12 ffffffff65ba0a0000000000 ....e....... +6571 19.968672037 127.0.0.1:57433 127.0.0.1:57415 375842714 12 160000007c990a0000000000 ....|....... +6573 19.968873024 127.0.0.1:57433 127.0.0.1:57415 375842726 22 12000000a9001f000000000001000300000000000000 ...................... +6575 19.969130754 127.0.0.1:57415 127.0.0.1:57433 3331509202 12 ffffffff7c990a0000000000 ....|....... +6579 20.070459604 127.0.0.1:57415 127.0.0.1:57433 3331509214 12 1a00000066ba0a0000000000 ....f....... +6581 20.070724964 127.0.0.1:57415 127.0.0.1:57433 3331509226 26 16000000548f6340e25e3140010003000000ab001f0000000000 ....T.c@.^1@.............. +6583 20.071100473 127.0.0.1:57433 127.0.0.1:57415 375842748 12 ffffffff66ba0a0000000000 ....f....... +6585 20.071595430 127.0.0.1:57433 127.0.0.1:57415 375842760 12 160000007d990a0000000000 ....}....... +6587 20.071860313 127.0.0.1:57433 127.0.0.1:57415 375842772 22 12000000ab001f000000000001000300000000000000 ...................... +6589 20.072203159 127.0.0.1:57415 127.0.0.1:57433 3331509252 12 ffffffff7d990a0000000000 ....}....... +6599 20.129324436 127.0.0.1:57433 127.0.0.1:57415 375842794 12 feffffffe3370100f4370100 .....7...7.. +6629 20.173242807 127.0.0.1:57415 127.0.0.1:57433 3331509264 12 1a00000067ba0a0000000000 ....g....... +6631 20.173416853 127.0.0.1:57415 127.0.0.1:57433 3331509276 26 16000000548f6340e25e3140010003000000ad001f0000000000 ....T.c@.^1@.............. +6633 20.173789740 127.0.0.1:57433 127.0.0.1:57415 375842806 12 ffffffff67ba0a0000000000 ....g....... +6635 20.174293995 127.0.0.1:57433 127.0.0.1:57415 375842818 12 160000007e990a0000000000 ....~....... +6637 20.174439907 127.0.0.1:57433 127.0.0.1:57415 375842830 22 12000000ad001f000000000001000300000000000000 ...................... +6639 20.174650431 127.0.0.1:57415 127.0.0.1:57433 3331509302 12 ffffffff7e990a0000000000 ....~....... +6641 20.181952953 127.0.0.1:57415 127.0.0.1:57433 3331509314 12 fefffffff5370100e3370100 .....7...7.. +6651 20.241624355 127.0.0.1:57415 127.0.0.1:57433 3331509326 12 6500000068ba0a0000000000 e...h....... +6653 20.241803408 127.0.0.1:57415 127.0.0.1:57433 3331509338 101 1e0000001c2118d0c46f33bb01000300000067ff01000000000012f10dc39d01 .....!...o3.......g...............?.....3...|8.. +6655 20.242135763 127.0.0.1:57433 127.0.0.1:57415 375842852 12 ffffffff68ba0a0000000000 ....h....... +6657 20.242817640 127.0.0.1:57433 127.0.0.1:57415 375842864 12 340000007f990a0000000000 4........... +6659 20.242969275 127.0.0.1:57433 127.0.0.1:57415 375842876 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....g..........j,D +6661 20.243268013 127.0.0.1:57415 127.0.0.1:57433 3331509439 12 ffffffff7f990a0000000000 ............ +6663 20.244065523 127.0.0.1:57415 127.0.0.1:57433 3331509451 12 1e00000069ba0a0000000000 ....i....... +6665 20.244212866 127.0.0.1:57415 127.0.0.1:57433 3331509463 30 1a00000055ceff62b21b3a50010003000000af001f000000000000000000 ....U..b..:P.................. +6667 20.244477749 127.0.0.1:57433 127.0.0.1:57415 375842928 12 ffffffff69ba0a0000000000 ....i....... +6669 20.245062351 127.0.0.1:57433 127.0.0.1:57415 375842940 12 1a00000080990a0000000000 ............ +6671 20.245304585 127.0.0.1:57433 127.0.0.1:57415 375842952 26 16000000af001f00000000000100030000000000000000000000 .......................... +6673 20.245580435 127.0.0.1:57415 127.0.0.1:57433 3331509493 12 ffffffff80990a0000000000 ............ +6675 20.276078701 127.0.0.1:57415 127.0.0.1:57433 3331509505 12 1a0000006aba0a0000000000 ....j....... +6677 20.276266336 127.0.0.1:57415 127.0.0.1:57433 3331509517 26 16000000548f6340e25e3140010003000000b1001f0000000000 ....T.c@.^1@.............. +6679 20.276646852 127.0.0.1:57433 127.0.0.1:57415 375842978 12 ffffffff6aba0a0000000000 ....j....... +6681 20.277217627 127.0.0.1:57433 127.0.0.1:57415 375842990 12 1600000081990a0000000000 ............ +6683 20.277366400 127.0.0.1:57433 127.0.0.1:57415 375843002 22 12000000b1001f000000000001000300000000000000 ...................... +6685 20.277673244 127.0.0.1:57415 127.0.0.1:57433 3331509543 12 ffffffff81990a0000000000 ............ +6691 20.379181862 127.0.0.1:57415 127.0.0.1:57433 3331509555 12 1a0000006bba0a0000000000 ....k....... +6693 20.379410505 127.0.0.1:57415 127.0.0.1:57433 3331509567 26 16000000548f6340e25e3140010003000000b3001f0000000000 ....T.c@.^1@.............. +6695 20.379719973 127.0.0.1:57433 127.0.0.1:57415 375843024 12 ffffffff6bba0a0000000000 ....k....... +6697 20.382533550 127.0.0.1:57433 127.0.0.1:57415 375843036 12 1600000082990a0000000000 ............ +6699 20.382771730 127.0.0.1:57433 127.0.0.1:57415 375843048 22 12000000b3001f000000000001000300000000000000 ...................... +6701 20.383027792 127.0.0.1:57415 127.0.0.1:57433 3331509593 12 ffffffff82990a0000000000 ............ +6703 20.485358477 127.0.0.1:57415 127.0.0.1:57433 3331509605 12 1a0000006cba0a0000000000 ....l....... +6705 20.485549212 127.0.0.1:57415 127.0.0.1:57433 3331509617 26 16000000548f6340e25e3140010003000000b5001f0000000000 ....T.c@.^1@.............. +6707 20.485939264 127.0.0.1:57433 127.0.0.1:57415 375843070 12 ffffffff6cba0a0000000000 ....l....... +6709 20.486490250 127.0.0.1:57433 127.0.0.1:57415 375843082 12 1600000083990a0000000000 ............ +6711 20.486711502 127.0.0.1:57433 127.0.0.1:57415 375843094 22 12000000b5001f000000000001000300000000000000 ...................... +6713 20.486935616 127.0.0.1:57415 127.0.0.1:57433 3331509643 12 ffffffff83990a0000000000 ............ +6717 20.545000553 127.0.0.1:57415 127.0.0.1:57433 3331509655 12 650000006dba0a0000000000 e...m....... +6719 20.545162201 127.0.0.1:57415 127.0.0.1:57433 3331509667 101 1e0000001c2118d0c46f33bb01000300000068ff01000000000042f20dc39d01 .....!...o3.......h.......B.......?.....3...|8.. +6721 20.545481920 127.0.0.1:57433 127.0.0.1:57415 375843116 12 ffffffff6dba0a0000000000 ....m....... +6723 20.546658278 127.0.0.1:57433 127.0.0.1:57415 375843128 12 3400000084990a0000000000 4........... +6725 20.546928167 127.0.0.1:57433 127.0.0.1:57415 375843140 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....h...........ZD +6727 20.547220230 127.0.0.1:57415 127.0.0.1:57433 3331509768 12 ffffffff84990a0000000000 ............ +6729 20.548420906 127.0.0.1:57415 127.0.0.1:57433 3331509780 12 1e0000006eba0a0000000000 ....n....... +6731 20.548581839 127.0.0.1:57415 127.0.0.1:57433 3331509792 30 1a00000055ceff62b21b3a50010003000000b7001f000000000000000000 ....U..b..:P.................. +6733 20.548896790 127.0.0.1:57433 127.0.0.1:57415 375843192 12 ffffffff6eba0a0000000000 ....n....... +6735 20.549303532 127.0.0.1:57433 127.0.0.1:57415 375843204 12 1a00000085990a0000000000 ............ +6737 20.549513817 127.0.0.1:57433 127.0.0.1:57415 375843216 26 16000000b7001f00000000000100030000000000000000000000 .......................... +6739 20.549777031 127.0.0.1:57415 127.0.0.1:57433 3331509822 12 ffffffff85990a0000000000 ............ +6741 20.588351488 127.0.0.1:57415 127.0.0.1:57433 3331509834 12 1a0000006fba0a0000000000 ....o....... +6743 20.588551283 127.0.0.1:57415 127.0.0.1:57433 3331509846 26 16000000548f6340e25e3140010003000000b9001f0000000000 ....T.c@.^1@.............. +6745 20.588768959 127.0.0.1:57433 127.0.0.1:57415 375843242 12 ffffffff6fba0a0000000000 ....o....... +6747 20.589247227 127.0.0.1:57433 127.0.0.1:57415 375843254 12 1600000086990a0000000000 ............ +6749 20.589437962 127.0.0.1:57433 127.0.0.1:57415 375843266 22 12000000b9001f000000000001000300000000000000 ...................... +6751 20.589706182 127.0.0.1:57415 127.0.0.1:57433 3331509872 12 ffffffff86990a0000000000 ............ +6754 20.629519224 127.0.0.1:57433 127.0.0.1:57415 375843288 12 feffffffe4370100f5370100 .....7...7.. +6762 20.683646441 127.0.0.1:57415 127.0.0.1:57433 3331509884 12 fefffffff6370100e4370100 .....7...7.. +6765 20.691862345 127.0.0.1:57415 127.0.0.1:57433 3331509896 12 1a00000070ba0a0000000000 ....p....... +6767 20.692080259 127.0.0.1:57415 127.0.0.1:57433 3331509908 26 16000000548f6340e25e3140010003000000bb001f0000000000 ....T.c@.^1@.............. +6769 20.692598820 127.0.0.1:57433 127.0.0.1:57415 375843300 12 ffffffff70ba0a0000000000 ....p....... +6771 20.692992210 127.0.0.1:57433 127.0.0.1:57415 375843312 12 1600000087990a0000000000 ............ +6773 20.693169355 127.0.0.1:57433 127.0.0.1:57415 375843324 22 12000000bb001f000000000001000300000000000000 ...................... +6775 20.693544865 127.0.0.1:57415 127.0.0.1:57433 3331509934 12 ffffffff87990a0000000000 ............ +6783 20.794556379 127.0.0.1:57415 127.0.0.1:57433 3331509946 12 1a00000071ba0a0000000000 ....q....... +6785 20.794732332 127.0.0.1:57415 127.0.0.1:57433 3331509958 26 16000000548f6340e25e3140010003000000bd001f0000000000 ....T.c@.^1@.............. +6787 20.795167208 127.0.0.1:57433 127.0.0.1:57415 375843346 12 ffffffff71ba0a0000000000 ....q....... +6789 20.795670748 127.0.0.1:57433 127.0.0.1:57415 375843358 12 1600000088990a0000000000 ............ +6791 20.795939922 127.0.0.1:57433 127.0.0.1:57415 375843370 22 12000000bd001f000000000001000300000000000000 ...................... +6793 20.796217442 127.0.0.1:57415 127.0.0.1:57433 3331509984 12 ffffffff88990a0000000000 ............ +6799 20.850795031 127.0.0.1:57415 127.0.0.1:57433 3331509996 12 2200000072ba0a0000000000 "...r....... +6801 20.850960970 127.0.0.1:57415 127.0.0.1:57433 3331510008 34 1e0000001c2118d0c46f33bb01000300000069ff01000000000074f30dc39d01 .....!...o3.......i.......t....... +6803 20.851045370 127.0.0.1:57415 127.0.0.1:57433 3331510042 12 4300000073ba0a0000000000 C...s....... +6805 20.851126194 127.0.0.1:57415 127.0.0.1:57433 3331510054 67 3f000000980433cb0cb47c38010003000000010000000069ff0100000000003d ?.....3...|8...........i.......=B.....&......... +6807 20.851346254 127.0.0.1:57433 127.0.0.1:57415 375843392 12 ffffffff72ba0a0000000000 ....r....... +6809 20.851562738 127.0.0.1:57433 127.0.0.1:57415 375843404 12 ffffffff73ba0a0000000000 ....s....... +6811 20.852606535 127.0.0.1:57433 127.0.0.1:57415 375843416 12 3400000089990a0000000000 4........... +6813 20.852813244 127.0.0.1:57433 127.0.0.1:57415 375843428 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....i..........k.D +6815 20.853117704 127.0.0.1:57415 127.0.0.1:57433 3331510121 12 ffffffff89990a0000000000 ............ +6817 20.853947639 127.0.0.1:57415 127.0.0.1:57433 3331510133 12 1e00000074ba0a0000000000 ....t....... +6819 20.854068995 127.0.0.1:57415 127.0.0.1:57433 3331510145 30 1a00000055ceff62b21b3a50010003000000bf001f000000000000000000 ....U..b..:P.................. +6821 20.854334831 127.0.0.1:57433 127.0.0.1:57415 375843480 12 ffffffff74ba0a0000000000 ....t....... +6823 20.856101751 127.0.0.1:57433 127.0.0.1:57415 375843492 12 1a0000008a990a0000000000 ............ +6825 20.856286049 127.0.0.1:57433 127.0.0.1:57415 375843504 26 16000000bf001f00000000000100030000000000000000000000 .......................... +6827 20.856514692 127.0.0.1:57415 127.0.0.1:57433 3331510175 12 ffffffff8a990a0000000000 ............ +6829 20.898815155 127.0.0.1:57415 127.0.0.1:57433 3331510187 12 1a00000075ba0a0000000000 ....u....... +6831 20.899129391 127.0.0.1:57415 127.0.0.1:57433 3331510199 26 16000000548f6340e25e3140010003000000c1001f0000000000 ....T.c@.^1@.............. +6833 20.899599314 127.0.0.1:57433 127.0.0.1:57415 375843530 12 ffffffff75ba0a0000000000 ....u....... +6835 20.900876522 127.0.0.1:57433 127.0.0.1:57415 375843542 12 160000008b990a0000000000 ............ +6837 20.901170254 127.0.0.1:57433 127.0.0.1:57415 375843554 22 12000000c1001f000000000001000300000000000000 ...................... +6839 20.901429653 127.0.0.1:57415 127.0.0.1:57433 3331510225 12 ffffffff8b990a0000000000 ............ +6841 21.003426075 127.0.0.1:57415 127.0.0.1:57433 3331510237 12 1a00000076ba0a0000000000 ....v....... +6843 21.003612757 127.0.0.1:57415 127.0.0.1:57433 3331510249 26 16000000548f6340e25e3140010003000000c3001f0000000000 ....T.c@.^1@.............. +6845 21.003997087 127.0.0.1:57433 127.0.0.1:57415 375843576 12 ffffffff76ba0a0000000000 ....v....... +6847 21.004608631 127.0.0.1:57433 127.0.0.1:57415 375843588 12 160000008c990a0000000000 ............ +6849 21.004933596 127.0.0.1:57433 127.0.0.1:57415 375843600 22 12000000c3001f000000000001000300000000000000 ...................... +6851 21.005269527 127.0.0.1:57415 127.0.0.1:57433 3331510275 12 ffffffff8c990a0000000000 ............ +6855 21.106253862 127.0.0.1:57415 127.0.0.1:57433 3331510287 12 1a00000077ba0a0000000000 ....w....... +548 0.000000000 ::1:55690 ::1:49704 3756504263 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +550 0.000705719 ::1:49704 ::1:55690 1676676910 84 05000c03100000005400000002000000d016d016b3b900000600343937303400 ........T.................49704..........]...... +552 0.000837326 ::1:55690 ::1:49704 3756504379 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +554 0.001019239 ::1:49704 ::1:55690 1676676994 44 05000203100000002c000000020000001400000000000000000000000631566b ........,....................1Vk...K......(. +556 0.001200676 ::1:55690 ::1:49704 3756504419 72 05000e03100000004800000003000000d016d016b3b900000100000001000100 ........H.......................K....k.F.@.`..Q. +558 0.001329660 ::1:49704 ::1:55690 1676677038 56 05000f03100000003800000003000000d016d016b3b900000000000001000000 ........8............................].......... +560 0.001482725 ::1:55690 ::1:49704 3756504491 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........1Vk +562 0.003350496 ::1:49704 ::1:55690 1676677094 28 05000203100000001c00000003000000040000000100000001000000 ............................ +564 0.003519058 ::1:55690 ::1:49704 3756504587 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........1Vk +566 0.003690004 ::1:49704 ::1:55690 1676677122 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +568 0.003914595 ::1:55690 ::1:49704 3756504647 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........1Vk +570 0.004088402 ::1:49704 ::1:55690 1676677214 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +572 0.004224062 ::1:55690 ::1:49704 3756504767 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........1Vk +574 0.004408598 ::1:49704 ::1:55690 1676677246 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +576 0.004581928 ::1:55690 ::1:49704 3756504891 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........1Vk +578 0.004798651 ::1:49704 ::1:55690 1676677278 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +580 0.004933119 ::1:55690 ::1:49704 3756505009 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........1Vk +582 0.005131006 ::1:49704 ::1:55690 1676677310 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +584 0.005261421 ::1:55690 ::1:49704 3756505129 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........1Vk +586 0.005432844 ::1:49704 ::1:55690 1676677342 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +588 0.005588293 ::1:55690 ::1:49704 3756505259 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........1Vk +590 0.005741596 ::1:49704 ::1:55690 1676677374 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +592 0.005885124 ::1:55690 ::1:49704 3756505389 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........1Vk +594 0.006049633 ::1:49704 ::1:55690 1676677406 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +596 0.006182671 ::1:55690 ::1:49704 3756505531 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........1Vk +598 0.006332397 ::1:49704 ::1:55690 1676677438 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +600 0.006494761 ::1:55690 ::1:49704 3756505647 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........1Vk +602 0.006639957 ::1:49704 ::1:55690 1676677470 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +604 0.006772757 ::1:55690 ::1:49704 3756505777 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........1Vk +606 0.006922245 ::1:49704 ::1:55690 1676677502 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +608 0.007035494 ::1:55690 ::1:49704 3756505905 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........1Vk +610 0.007248402 ::1:49704 ::1:55690 1676677534 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +612 0.007814169 ::1:55690 ::1:49704 3756506031 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........1Vk +614 0.007995129 ::1:49704 ::1:55690 1676677566 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +616 0.008185625 ::1:55690 ::1:49704 3756506163 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........1Vk +618 0.008348942 ::1:49704 ::1:55690 1676677598 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +636 0.110626221 ::1:55690 ::1:49704 3756506315 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +638 0.110847712 ::1:49704 ::1:55690 1676677630 44 05000203100000002c00000012000000140000000000000000000000aa028d02 ........,........................|.H.a[j..uE +640 0.111270905 ::1:55690 ::1:49704 3756506355 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K............ +642 0.112775803 ::1:49704 ::1:55690 1676677674 28 05000203100000001c00000013000000040000000100000001000000 ............................ +644 0.112965107 ::1:55690 ::1:49704 3756506463 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +646 0.113133907 ::1:49704 ::1:55690 1676677702 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +648 0.113345146 ::1:55690 ::1:49704 3756506523 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +650 0.113839626 ::1:49704 ::1:55690 1676677794 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +652 0.113969326 ::1:55690 ::1:49704 3756506655 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +654 0.114118099 ::1:49704 ::1:55690 1676677826 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +656 0.114242792 ::1:55690 ::1:49704 3756506791 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +658 0.114384651 ::1:49704 ::1:55690 1676677858 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +660 0.114511013 ::1:55690 ::1:49704 3756506921 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +662 0.114729881 ::1:49704 ::1:55690 1676677890 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +664 0.114866257 ::1:55690 ::1:49704 3756507053 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +666 0.115024328 ::1:49704 ::1:55690 1676677922 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +668 0.115154028 ::1:55690 ::1:49704 3756507195 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +670 0.115297794 ::1:49704 ::1:55690 1676677954 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +672 0.115422249 ::1:55690 ::1:49704 3756507337 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +674 0.115608454 ::1:49704 ::1:55690 1676677986 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +676 0.115735292 ::1:55690 ::1:49704 3756507491 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +678 0.115874052 ::1:49704 ::1:55690 1676678018 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +680 0.115997314 ::1:55690 ::1:49704 3756507619 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +682 0.116137505 ::1:49704 ::1:55690 1676678050 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +684 0.116261244 ::1:55690 ::1:49704 3756507761 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +686 0.116399527 ::1:49704 ::1:55690 1676678082 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +688 0.116525412 ::1:55690 ::1:49704 3756507901 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +690 0.116666079 ::1:49704 ::1:55690 1676678114 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +720 0.132911205 ::1:55690 ::1:49704 3756508039 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +722 0.133106232 ::1:49704 ::1:55690 1676678146 44 05000203100000002c00000020000000140000000000000000000000f6f0e4b2 ........,... ...................".QM.[....G( +724 0.133260250 ::1:55690 ::1:49704 3756508079 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K............ +726 0.134613991 ::1:49704 ::1:55690 1676678190 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +728 0.134743214 ::1:55690 ::1:49704 3756508183 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K............ +730 0.134903431 ::1:49704 ::1:55690 1676678218 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +732 0.135104895 ::1:55690 ::1:49704 3756508243 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K............ +734 0.135354519 ::1:49704 ::1:55690 1676678310 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +736 0.135478258 ::1:55690 ::1:49704 3756508371 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K............ +738 0.135643959 ::1:49704 ::1:55690 1676678342 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +740 0.135770559 ::1:55690 ::1:49704 3756508503 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K............ +742 0.135929585 ::1:49704 ::1:55690 1676678374 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +744 0.136056662 ::1:55690 ::1:49704 3756508629 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K............ +746 0.136218309 ::1:49704 ::1:55690 1676678406 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +748 0.136474848 ::1:55690 ::1:49704 3756508757 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K............ +750 0.136634588 ::1:49704 ::1:55690 1676678438 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +752 0.136760473 ::1:55690 ::1:49704 3756508895 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K............ +757 0.136979580 ::1:49704 ::1:55690 1676678470 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +760 0.137136698 ::1:55690 ::1:49704 3756509033 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K............ +763 0.137340069 ::1:49704 ::1:55690 1676678502 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +766 0.137465477 ::1:55690 ::1:49704 3756509183 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K............ +768 0.137627363 ::1:49704 ::1:55690 1676678534 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +770 0.137754440 ::1:55690 ::1:49704 3756509307 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K............ +775 0.137946844 ::1:49704 ::1:55690 1676678566 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +778 0.138074398 ::1:55690 ::1:49704 3756509445 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K............ +780 0.138233662 ::1:49704 ::1:55690 1676678598 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +783 0.138367653 ::1:55690 ::1:49704 3756509581 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K............ +786 0.138525248 ::1:49704 ::1:55690 1676678630 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +788 0.138694286 ::1:55690 ::1:49704 3756509715 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +790 0.138877392 ::1:49704 ::1:55690 1676678662 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +792 0.139011621 ::1:55690 ::1:49704 3756509855 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K............ +794 0.139172792 ::1:49704 ::1:55690 1676678694 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +811 0.242377043 ::1:55690 ::1:49704 3756510001 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +815 0.242609262 ::1:49704 ::1:55690 1676678726 44 05000203100000002c0000003000000014000000000000000000000059d04b4c ........,...0...............Y.KL.N0E..y..... +818 0.242793560 ::1:55690 ::1:49704 3756510041 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........Y.KL +820 0.244582653 ::1:49704 ::1:55690 1676678770 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +822 0.244729757 ::1:55690 ::1:49704 3756510153 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........Y.KL +824 0.244911909 ::1:49704 ::1:55690 1676678798 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +826 0.245135307 ::1:55690 ::1:49704 3756510213 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........Y.KL +828 0.245367527 ::1:49704 ::1:55690 1676678890 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +830 0.245615005 ::1:55690 ::1:49704 3756510349 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........Y.KL +832 0.245803833 ::1:49704 ::1:55690 1676678922 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +834 0.245940208 ::1:55690 ::1:49704 3756510489 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........Y.KL +836 0.246138811 ::1:49704 ::1:55690 1676678954 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +838 0.246299505 ::1:55690 ::1:49704 3756510623 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........Y.KL +840 0.246494293 ::1:49704 ::1:55690 1676678986 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +842 0.246634483 ::1:55690 ::1:49704 3756510759 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........Y.KL +844 0.246806383 ::1:49704 ::1:55690 1676679018 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +846 0.246943712 ::1:55690 ::1:49704 3756510905 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........Y.KL +848 0.247131109 ::1:49704 ::1:55690 1676679050 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +850 0.247293472 ::1:55690 ::1:49704 3756511051 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........Y.KL +852 0.247540236 ::1:49704 ::1:55690 1676679082 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +854 0.247688293 ::1:55690 ::1:49704 3756511209 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........Y.KL +856 0.247890949 ::1:49704 ::1:55690 1676679114 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +858 0.248032808 ::1:55690 ::1:49704 3756511341 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........Y.KL +860 0.248205900 ::1:49704 ::1:55690 1676679146 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +862 0.248372316 ::1:55690 ::1:49704 3756511487 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........Y.KL +864 0.248540878 ::1:49704 ::1:55690 1676679178 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +866 0.248678923 ::1:55690 ::1:49704 3756511631 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........Y.KL +868 0.248844385 ::1:49704 ::1:55690 1676679210 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +870 0.249028206 ::1:55690 ::1:49704 3756511773 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........Y.KL +872 0.249194622 ::1:49704 ::1:55690 1676679242 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +874 0.249344826 ::1:55690 ::1:49704 3756511921 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........Y.KL +876 0.249513865 ::1:49704 ::1:55690 1676679274 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +912 0.374526501 ::1:55690 ::1:49704 3756512075 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +914 0.374760151 ::1:49704 ::1:55690 1676679306 44 05000203100000002c00000040000000140000000000000000000000dbdcac72 ........,...@..................r.Q.O.T. ...x +916 0.374936104 ::1:55690 ::1:49704 3756512115 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K...........r +918 0.376616478 ::1:49704 ::1:55690 1676679350 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +920 0.376758814 ::1:55690 ::1:49704 3756512207 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K...........r +922 0.376931429 ::1:49704 ::1:55690 1676679378 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +924 0.377158403 ::1:55690 ::1:49704 3756512267 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K...........r +926 0.377406359 ::1:49704 ::1:55690 1676679470 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +928 0.377543211 ::1:55690 ::1:49704 3756512383 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K...........r +930 0.377714634 ::1:49704 ::1:55690 1676679502 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +932 0.377855778 ::1:55690 ::1:49704 3756512503 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K...........r +934 0.378026009 ::1:49704 ::1:55690 1676679534 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +936 0.378166199 ::1:55690 ::1:49704 3756512617 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K...........r +938 0.378331184 ::1:49704 ::1:55690 1676679566 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +940 0.378478765 ::1:55690 ::1:49704 3756512733 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K...........r +942 0.378643990 ::1:49704 ::1:55690 1676679598 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +944 0.378780365 ::1:55690 ::1:49704 3756512859 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K...........r +946 0.378942728 ::1:49704 ::1:55690 1676679630 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +948 0.379081249 ::1:55690 ::1:49704 3756512985 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K...........r +950 0.379242420 ::1:49704 ::1:55690 1676679662 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +952 0.379408360 ::1:55690 ::1:49704 3756513123 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K...........r +954 0.379562140 ::1:49704 ::1:55690 1676679694 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +956 0.379699707 ::1:55690 ::1:49704 3756513235 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K...........r +958 0.379913807 ::1:49704 ::1:55690 1676679726 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +960 0.380062103 ::1:55690 ::1:49704 3756513361 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K...........r +962 0.380229950 ::1:49704 ::1:55690 1676679758 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +964 0.380396605 ::1:55690 ::1:49704 3756513485 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K...........r +966 0.380523205 ::1:49704 ::1:55690 1676679790 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +968 0.380687952 ::1:55690 ::1:49704 3756513607 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K...........r +970 0.380854130 ::1:49704 ::1:55690 1676679822 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +972 0.381002903 ::1:55690 ::1:49704 3756513735 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K...........r +974 0.381167889 ::1:49704 ::1:55690 1676679854 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +976 0.381299734 ::1:55690 ::1:49704 3756513869 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K...........r +978 0.381547213 ::1:49704 ::1:55690 1676679886 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +980 0.381736755 ::1:55690 ::1:49704 3756513999 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K...........r +982 0.382043123 ::1:49704 ::1:55690 1676679918 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3004 7.099546909 ::1:55690 ::1:49704 3756514127 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3006 7.099748135 ::1:49704 ::1:55690 1676679950 44 05000203100000002c0000005200000014000000000000000000000051443416 ........,...R...............QD4....M....L.cH +3008 7.100040674 ::1:55690 ::1:49704 3756514167 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K........QD4. +3010 7.101858854 ::1:49704 ::1:55690 1676679994 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3012 7.102012873 ::1:55690 ::1:49704 3756514267 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K........QD4. +3014 7.102253437 ::1:49704 ::1:55690 1676680022 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3016 7.102553368 ::1:55690 ::1:49704 3756514327 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K........QD4. +3018 7.102873325 ::1:49704 ::1:55690 1676680114 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3020 7.103011608 ::1:55690 ::1:49704 3756514451 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K........QD4. +3022 7.103171349 ::1:49704 ::1:55690 1676680146 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3024 7.103318691 ::1:55690 ::1:49704 3756514579 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K........QD4. +3026 7.103500843 ::1:49704 ::1:55690 1676680178 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3028 7.103642464 ::1:55690 ::1:49704 3756514701 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K........QD4. +3030 7.103795528 ::1:49704 ::1:55690 1676680210 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3032 7.104039907 ::1:55690 ::1:49704 3756514825 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K........QD4. +3034 7.104199886 ::1:49704 ::1:55690 1676680242 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3036 7.104352951 ::1:55690 ::1:49704 3756514959 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K........QD4. +3038 7.104502439 ::1:49704 ::1:55690 1676680274 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3040 7.104691744 ::1:55690 ::1:49704 3756515093 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K........QD4. +3042 7.104838133 ::1:49704 ::1:55690 1676680306 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3044 7.104978323 ::1:55690 ::1:49704 3756515239 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K........QD4. +3046 7.105203152 ::1:49704 ::1:55690 1676680338 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3048 7.105391026 ::1:55690 ::1:49704 3756515359 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K........QD4. +3050 7.105616570 ::1:49704 ::1:55690 1676680370 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3052 7.105746508 ::1:55690 ::1:49704 3756515493 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K........QD4. +3054 7.105894804 ::1:49704 ::1:55690 1676680402 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3056 7.106121302 ::1:55690 ::1:49704 3756515625 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K........QD4. +3058 7.106345415 ::1:49704 ::1:55690 1676680434 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +3060 7.106532574 ::1:55690 ::1:49704 3756515755 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K........QD4. +3062 7.106680632 ::1:49704 ::1:55690 1676680466 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +3064 7.106881618 ::1:55690 ::1:49704 3756515899 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K........QD4. +3066 7.107075214 ::1:49704 ::1:55690 1676680498 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +3068 7.107227325 ::1:55690 ::1:49704 3756516047 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K........QD4. +3070 7.107376337 ::1:49704 ::1:55690 1676680530 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +3072 7.107616663 ::1:55690 ::1:49704 3756516193 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K........QD4. +3074 7.107764959 ::1:49704 ::1:55690 1676680562 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3118 7.188285351 ::1:55690 ::1:49704 3756516351 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3120 7.188530922 ::1:49704 ::1:55690 1676680594 44 05000203100000002c00000064000000140000000000000000000000de4f468a ........,...d................OF..QVG...~=v.. +3122 7.188753605 ::1:55690 ::1:49704 3756516391 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K.........OF. +3124 7.190442562 ::1:49704 ::1:55690 1676680638 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3126 7.190622330 ::1:55690 ::1:49704 3756516475 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K.........OF. +3128 7.190792561 ::1:49704 ::1:55690 1676680666 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3130 7.191162825 ::1:55690 ::1:49704 3756516535 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K.........OF. +3132 7.191360950 ::1:49704 ::1:55690 1676680758 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3134 7.191523790 ::1:55690 ::1:49704 3756516643 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K.........OF. +3136 7.191682100 ::1:49704 ::1:55690 1676680790 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3138 7.191831112 ::1:55690 ::1:49704 3756516755 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K.........OF. +3140 7.191982031 ::1:49704 ::1:55690 1676680822 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3142 7.192129850 ::1:55690 ::1:49704 3756516861 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K.........OF. +3144 7.192278147 ::1:49704 ::1:55690 1676680854 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3146 7.192423105 ::1:55690 ::1:49704 3756516969 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K.........OF. +3148 7.192573309 ::1:49704 ::1:55690 1676680886 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3150 7.192715406 ::1:55690 ::1:49704 3756517087 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K.........OF. +3152 7.192867994 ::1:49704 ::1:55690 1676680918 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3154 7.193011284 ::1:55690 ::1:49704 3756517205 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K.........OF. +3156 7.193163395 ::1:49704 ::1:55690 1676680950 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3158 7.193306208 ::1:55690 ::1:49704 3756517335 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K.........OF. +3160 7.193459511 ::1:49704 ::1:55690 1676680982 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3162 7.193603516 ::1:55690 ::1:49704 3756517439 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K.........OF. +3164 7.193750858 ::1:49704 ::1:55690 1676681014 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3166 7.194032907 ::1:55690 ::1:49704 3756517557 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K.........OF. +3168 7.194194317 ::1:49704 ::1:55690 1676681046 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3170 7.194350958 ::1:55690 ::1:49704 3756517673 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K.........OF. +3172 7.194504976 ::1:49704 ::1:55690 1676681078 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3174 7.195025921 ::1:55690 ::1:49704 3756517787 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K.........OF. +3175 7.195186615 ::1:49704 ::1:55690 1676681110 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3177 7.195477724 ::1:55690 ::1:49704 3756517915 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K.........OF. +3179 7.195648909 ::1:49704 ::1:55690 1676681142 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3181 7.195938826 ::1:55690 ::1:49704 3756518035 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K.........OF. +3183 7.196136236 ::1:49704 ::1:55690 1676681174 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3185 7.196407080 ::1:55690 ::1:49704 3756518155 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K.........OF. +3187 7.196577787 ::1:49704 ::1:55690 1676681206 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3189 7.196871758 ::1:55690 ::1:49704 3756518277 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K.........OF. +3191 7.197042942 ::1:49704 ::1:55690 1676681238 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3193 7.197389841 ::1:55690 ::1:49704 3756518411 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K.........OF. +3195 7.197580576 ::1:49704 ::1:55690 1676681270 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3197 7.197871447 ::1:55690 ::1:49704 3756518543 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K.........OF. +3199 7.198045254 ::1:49704 ::1:55690 1676681302 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3201 7.198362112 ::1:55690 ::1:49704 3756518673 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K.........OF. +3203 7.198530436 ::1:49704 ::1:55690 1676681334 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3205 7.198817730 ::1:55690 ::1:49704 3756518811 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K.........OF. +3207 7.198989630 ::1:49704 ::1:55690 1676681366 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3209 7.199356318 ::1:55690 ::1:49704 3756518955 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K.........OF. +3211 7.199527979 ::1:49704 ::1:55690 1676681398 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3213 7.199814081 ::1:55690 ::1:49704 3756519099 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K.........OF. +3215 7.199986219 ::1:49704 ::1:55690 1676681430 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3217 7.200304985 ::1:55690 ::1:49704 3756519215 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K.........OF. +3219 7.200474739 ::1:49704 ::1:55690 1676681462 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3221 7.200729609 ::1:55690 ::1:49704 3756519345 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K.........OF. +3223 7.200901031 ::1:49704 ::1:55690 1676681494 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3225 7.201235533 ::1:55690 ::1:49704 3756519483 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........OF. +3227 7.201400995 ::1:49704 ::1:55690 1676681526 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3229 7.201679945 ::1:55690 ::1:49704 3756519613 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........OF. +3231 7.201852798 ::1:49704 ::1:55690 1676681558 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3233 7.202171803 ::1:55690 ::1:49704 3756519735 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........OF. +3235 7.202421904 ::1:49704 ::1:55690 1676681590 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3237 7.202699900 ::1:55690 ::1:49704 3756519857 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........OF. +3239 7.203009367 ::1:49704 ::1:55690 1676681622 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3241 7.203269482 ::1:55690 ::1:49704 3756519991 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........OF. +3243 7.203417778 ::1:49704 ::1:55690 1676681654 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3245 7.203605890 ::1:55690 ::1:49704 3756520119 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........OF. +3247 7.203779697 ::1:49704 ::1:55690 1676681686 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3249 7.237543106 ::1:55690 ::1:49704 3756520243 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K.........OF. +3251 7.237824202 ::1:49704 ::1:55690 1676681718 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3257 7.274376869 ::1:55690 ::1:49704 3756520759 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3259 7.274597406 ::1:49704 ::1:55690 1676681746 44 05000203100000002c000000860000001400000000000000000000004c3ea241 ........,...................L>.A...L.....I._ +3261 7.274784803 ::1:55690 ::1:49704 3756520799 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........L>.A +3263 7.276537180 ::1:49704 ::1:55690 1676681790 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3265 7.276693821 ::1:55690 ::1:49704 3756520911 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........L>.A +3267 7.276866436 ::1:49704 ::1:55690 1676681818 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3269 7.277165174 ::1:55690 ::1:49704 3756520971 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........L>.A +3271 7.277357340 ::1:49704 ::1:55690 1676681910 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3273 7.277513981 ::1:55690 ::1:49704 3756521107 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........L>.A +3275 7.277674437 ::1:49704 ::1:55690 1676681942 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3277 7.277845621 ::1:55690 ::1:49704 3756521247 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........L>.A +3279 7.278003931 ::1:49704 ::1:55690 1676681974 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3281 7.278206587 ::1:55690 ::1:49704 3756521381 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........L>.A +3283 7.278366566 ::1:49704 ::1:55690 1676682006 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3285 7.278538227 ::1:55690 ::1:49704 3756521517 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3287 7.278707743 ::1:49704 ::1:55690 1676682038 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3289 7.278930902 ::1:55690 ::1:49704 3756521663 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3291 7.279136181 ::1:49704 ::1:55690 1676682070 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3293 7.279313564 ::1:55690 ::1:49704 3756521809 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........L>.A +3295 7.279482126 ::1:49704 ::1:55690 1676682102 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3297 7.279700756 ::1:55690 ::1:49704 3756521967 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........L>.A +3299 7.279862642 ::1:49704 ::1:55690 1676682134 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3301 7.280054331 ::1:55690 ::1:49704 3756522099 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3303 7.280260801 ::1:49704 ::1:55690 1676682166 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3305 7.280410528 ::1:55690 ::1:49704 3756522245 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........L>.A +3307 7.280569553 ::1:49704 ::1:55690 1676682198 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3309 7.280774832 ::1:55690 ::1:49704 3756522389 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........L>.A +3311 7.280943871 ::1:49704 ::1:55690 1676682230 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3313 7.281350136 ::1:55690 ::1:49704 3756522531 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........L>.A +3315 7.281598330 ::1:49704 ::1:55690 1676682262 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3317 7.281845808 ::1:55690 ::1:49704 3756522691 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........L>.A +3319 7.282013655 ::1:49704 ::1:55690 1676682294 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3321 7.282332659 ::1:55690 ::1:49704 3756522847 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........L>.A +3323 7.282495022 ::1:49704 ::1:55690 1676682326 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3325 7.282737017 ::1:55690 ::1:49704 3756523001 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........L>.A +3327 7.282934189 ::1:49704 ::1:55690 1676682358 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3329 7.283212423 ::1:55690 ::1:49704 3756523147 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........L>.A +3331 7.283380747 ::1:49704 ::1:55690 1676682390 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3333 7.283612490 ::1:55690 ::1:49704 3756523301 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........L>.A +3335 7.283792019 ::1:49704 ::1:55690 1676682422 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3337 7.284043074 ::1:55690 ::1:49704 3756523451 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........L>.A +3339 7.284265518 ::1:49704 ::1:55690 1676682454 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3341 7.284486055 ::1:55690 ::1:49704 3756523603 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........L>.A +3343 7.284652710 ::1:49704 ::1:55690 1676682486 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3345 7.284819603 ::1:55690 ::1:49704 3756523743 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........L>.A +3347 7.284977674 ::1:49704 ::1:55690 1676682518 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3349 7.285164118 ::1:55690 ::1:49704 3756523891 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........L>.A +3351 7.285318613 ::1:49704 ::1:55690 1676682550 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3353 7.285480261 ::1:55690 ::1:49704 3756524053 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........L>.A +3355 7.285640717 ::1:49704 ::1:55690 1676682582 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3357 7.285826445 ::1:55690 ::1:49704 3756524225 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........L>.A +3360 7.285984516 ::1:49704 ::1:55690 1676682614 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3384 7.293911457 ::1:55690 ::1:49704 3756524369 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3387 7.294124603 ::1:49704 ::1:55690 1676682646 44 05000203100000002c000000a000000014000000000000000000000060d686fd ........,...................`...M..B...v.... +3389 7.294351101 ::1:55690 ::1:49704 3756524409 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........`... +3391 7.295987368 ::1:49704 ::1:55690 1676682690 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3393 7.296258211 ::1:55690 ::1:49704 3756524537 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........`... +3395 7.296431780 ::1:49704 ::1:55690 1676682718 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3397 7.296665668 ::1:55690 ::1:49704 3756524597 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........`... +3399 7.296852589 ::1:49704 ::1:55690 1676682810 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3401 7.297007322 ::1:55690 ::1:49704 3756524749 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........`... +3403 7.297171116 ::1:49704 ::1:55690 1676682842 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3405 7.297322750 ::1:55690 ::1:49704 3756524905 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........`... +3407 7.297483683 ::1:49704 ::1:55690 1676682874 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3409 7.297632217 ::1:55690 ::1:49704 3756525055 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........`... +3411 7.297791481 ::1:49704 ::1:55690 1676682906 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3413 7.297959328 ::1:55690 ::1:49704 3756525207 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........`... +3415 7.298144579 ::1:49704 ::1:55690 1676682938 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3417 7.298288107 ::1:55690 ::1:49704 3756525369 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........`... +3419 7.298447609 ::1:49704 ::1:55690 1676682970 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3421 7.298594236 ::1:55690 ::1:49704 3756525531 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........`... +3423 7.298750401 ::1:49704 ::1:55690 1676683002 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3425 7.298893929 ::1:55690 ::1:49704 3756525705 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........`... +3427 7.299050570 ::1:49704 ::1:55690 1676683034 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3429 7.299221277 ::1:55690 ::1:49704 3756525853 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........`... +3431 7.299377203 ::1:49704 ::1:55690 1676683066 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3433 7.299521923 ::1:55690 ::1:49704 3756526015 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........`... +3435 7.299676895 ::1:49704 ::1:55690 1676683098 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3437 7.299821615 ::1:55690 ::1:49704 3756526175 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........`... +3439 7.299975872 ::1:49704 ::1:55690 1676683130 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3441 7.300220728 ::1:55690 ::1:49704 3756526333 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........`... +3443 7.300379038 ::1:49704 ::1:55690 1676683162 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3445 7.300534964 ::1:55690 ::1:49704 3756526503 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........`... +3447 7.300691605 ::1:49704 ::1:55690 1676683194 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3453 7.307372093 ::1:55690 ::1:49704 3756526685 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3455 7.307617664 ::1:49704 ::1:55690 1676683226 44 05000203100000002c000000b000000014000000000000000000000048350989 ........,...................H5...e%F.jvO.}.. +3457 7.307811737 ::1:55690 ::1:49704 3756526725 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K........H5.. +3459 7.309617519 ::1:49704 ::1:55690 1676683270 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3461 7.309800386 ::1:55690 ::1:49704 3756526821 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........H5.. +3463 7.309970140 ::1:49704 ::1:55690 1676683298 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3465 7.310229778 ::1:55690 ::1:49704 3756526881 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........H5.. +3467 7.310421228 ::1:49704 ::1:55690 1676683390 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3469 7.310568333 ::1:55690 ::1:49704 3756527001 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........H5.. +3471 7.310721874 ::1:49704 ::1:55690 1676683422 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3473 7.310864687 ::1:55690 ::1:49704 3756527125 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K........H5.. +3475 7.311014175 ::1:49704 ::1:55690 1676683454 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3477 7.311184645 ::1:55690 ::1:49704 3756527243 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........H5.. +3479 7.311334848 ::1:49704 ::1:55690 1676683486 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3481 7.311480045 ::1:55690 ::1:49704 3756527363 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3483 7.311630487 ::1:49704 ::1:55690 1676683518 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3485 7.311772108 ::1:55690 ::1:49704 3756527493 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3487 7.311920166 ::1:49704 ::1:55690 1676683550 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3489 7.312061548 ::1:55690 ::1:49704 3756527623 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........H5.. +3491 7.312237024 ::1:49704 ::1:55690 1676683582 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3493 7.312379599 ::1:55690 ::1:49704 3756527765 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K........H5.. +3495 7.312526703 ::1:49704 ::1:55690 1676683614 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3497 7.312668800 ::1:55690 ::1:49704 3756527881 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3499 7.312829733 ::1:49704 ::1:55690 1676683646 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3501 7.312983274 ::1:55690 ::1:49704 3756528011 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........H5.. +3503 7.313162804 ::1:49704 ::1:55690 1676683678 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3505 7.313303232 ::1:55690 ::1:49704 3756528139 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........H5.. +3507 7.313453436 ::1:49704 ::1:55690 1676683710 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3509 7.313638449 ::1:55690 ::1:49704 3756528265 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........H5.. +3511 7.313800812 ::1:49704 ::1:55690 1676683742 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3513 7.313953876 ::1:55690 ::1:49704 3756528391 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........H5.. +3515 7.314132214 ::1:49704 ::1:55690 1676683774 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3517 7.314243793 ::1:55690 ::1:49704 3756528523 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........H5.. +3519 7.314395428 ::1:49704 ::1:55690 1676683806 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3521 7.314546108 ::1:55690 ::1:49704 3756528653 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........H5.. +3523 7.314695358 ::1:49704 ::1:55690 1676683838 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3525 7.314844847 ::1:55690 ::1:49704 3756528791 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........H5.. +3527 7.314993143 ::1:49704 ::1:55690 1676683870 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3529 7.315170288 ::1:55690 ::1:49704 3756528927 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........H5.. +3531 7.315321207 ::1:49704 ::1:55690 1676683902 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3533 7.315474749 ::1:55690 ::1:49704 3756529059 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........H5.. +3535 7.315625191 ::1:49704 ::1:55690 1676683934 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3537 7.315778017 ::1:55690 ::1:49704 3756529201 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........H5.. +3539 7.315929413 ::1:49704 ::1:55690 1676683966 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3545 7.354154110 ::1:55690 ::1:49704 3756529349 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K.........OF. +3547 7.354433537 ::1:49704 ::1:55690 1676683998 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3567 7.426665068 ::1:55690 ::1:49704 3756529639 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K.........OF. +3569 7.426994324 ::1:49704 ::1:55690 1676684026 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +5823 0.000000000 fe80::3608:256c:365:cc73:55707 fe80::3608:256c:365:cc73:55555 2280334220 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +5833 0.076786041 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55707 3242400097 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +1560 0.000000000 fe80::3608:256c:365:cc73:55691 fe80::3608:256c:365:cc73:55555 312060806 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +1587 0.087287426 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55691 3771553474 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +1219 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148554339 1284 17030304ff000000000000036ffdeaf9184ba94098535a572be9c45515f30a3b ............o....K.@.SZW+..U...;.(.?=..RK.(LL..X +1221 0.005423784 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088238402 54 170303003100000000000003c6c97fd7a9438effbad82e2023d04d5b72bf5337 ....1............C..... #.M[r.S7..L..........n.. +1223 0.005963802 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148555623 105 170303006400000000000003702ff891133e7e6305b2bfc3800ef97bcbcf9286 ....d.......p/...>~c.......{.....R.Q....O..XH... +1225 0.007314682 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088238456 264 170303010300000000000003c77c768b60cd1318ab9cd3fa92820ce2f4a57a3f .............|v.`.............z?......3:8.D.y..` +1227 0.007675409 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088238720 34 170303001d00000000000003c8876d8b4ac5b8ceb354208dde9952f0e4eb003e ..............m.J....T ...R....>.K +2588 4.747207403 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148555728 1284 17030304ff0000000000000371282b89df9f68b4bb14f67d252876a3022b0278 ............q(+...h....}%(v..+.x.....Q..*k.!.tbG +2590 4.752258062 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088238754 54 170303003100000000000003c9e5dc690496c7caedc79310d9973094623a8714 ....1..........i..........0.b:...\o..T7|..(....q +2592 4.752656460 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148557012 117 17030300700000000000000372b1a395a42e4c84c79cb0b89efe927ab4d7b1f4 ....p.......r.....L........z..../.g)..FSA....[H. +2594 4.754840374 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088238808 173 17030300a800000000000003caf408d1b77249ba7de04ddeea3b48dc8a977ca0 .................rI.}.M..;H...|........>.;w..... +2596 4.756640911 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148557129 1284 17030304ff000000000000037350970b86a99f6b654ed05fd3d18a5bb197901d ............sP.....keN._...[..........<&..W"d..- +2598 4.761081696 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088238981 54 170303003100000000000003cb96462e4e16dd94c5bdb0c7c8776bcd0f35094e ....1.........F.N........wk..5.N....tl.kFu.9Xm.R +2600 4.761600256 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148558413 117 170303007000000000000003748ccc54d77b26fc4cfdba91543a5943d241dab8 ....p.......t..T.{&.L...T:YC.A......$V.:...l.].. +2602 4.763634205 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088239035 173 17030300a800000000000003cc3c01b03c648d45ee9420d3e56d32505c3c1e7c .............<...x.z..r4pK.. +2639 4.785691500 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148561230 130 170303007d0000000000000378ac0789bf8302d95528594cdef0e8ee2787d8d6 ....}.......x.......U(YL....'...x7..O.:m{..t.... +2641 4.787600994 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088239489 173 17030300a800000000000003d0f907363f11e59ad847595025695afa54c1fd71 ...............6?....GYP%iZ.T..q0..P...Z....'.". +1361 0.000000000 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318590 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +1363 0.000302315 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318641 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +1365 0.001837730 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727814769 1 0a . +1367 0.003271818 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318664 5 160100006e ....n +1369 0.003412485 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318669 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +1371 0.004048347 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727814770 5 160100010f ..... +1373 0.004246712 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727814775 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +1375 0.005186558 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318779 5 1601000079 ....y +1377 0.005349636 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318784 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +1379 0.006472588 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815046 5 140100001d ..... +1381 0.006632566 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815051 29 a11b3019a0030a0100a31204100100000004b4f8db334467b800000000 ..0..................3Dg..... +1383 0.007344961 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318905 21 110000000100000049642612d552db4f01000000f3 ........Id&..R.O..... +1385 0.007579565 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815080 21 11000000010000009bfa77a91650de240100000039 ..........w..P.$....9 +1387 0.007983446 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044318926 1229 c9040000010000004da248cc57ee0a6702000000664bb394011b3e6f7dcb41d3 ........M.H.W..g....fK....>o}.A..2.a.i_...?...N. +1389 0.008404493 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320155 21 1100000001000000f213ae0c169297c70300000039 ....................9 +1391 0.011729002 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815101 21 11000000010000000dc475cf7bca4b63020000002f ..........u.{.Kc..../ +6164 15.159629822 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320176 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +6166 15.159873009 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320227 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +6168 15.161427259 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815122 1 0a . +6170 15.162814617 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320250 5 160100006e ....n +6172 15.162988901 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320255 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +6174 15.163702965 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815123 5 160100010f ..... +6176 15.163895130 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815128 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +6178 15.164931297 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320365 5 1601000079 ....y +6180 15.165096283 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320370 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +6182 15.166384220 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815399 5 140100001d ..... +6184 15.166577339 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815404 29 a11b3019a0030a0100a31204100100000032cf54c5c0ad20b000000000 ..0..............2.T... ..... +6186 15.167316437 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320491 21 110000000100000045208e5b0f8ad30e01000000c7 ........E .[......... +6188 15.167591810 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815433 21 11000000010000009b6b8aa802dab0b7010000005a .........k..........Z +6190 15.168018341 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044320512 1229 c9040000010000008e644ec7b0b15f9d02000000b04d72f301dbc824b2c94111 .........dN..._......Mr....$..A.....^....S.B..k. +6192 15.168381214 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044321741 21 1100000001000000d4fb102409db18170300000021 ...........$........! +6194 15.170767069 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815454 21 1100000001000000d4fa2304227e4da30200000085 ..........#."~M...... +2014 0.000000000 fe80::3608:256c:365:cc73:55693 fe80::3608:256c:365:cc73:55555 541932341 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +2148 0.369882107 fe80::3608:256c:365:cc73:55693 fe80::3608:256c:365:cc73:55555 541932546 508 000001fc0000687e000000000000000b00010000000002000000100007025343 ......h~......................SCHNEIDR......M.DE +2894 2.690195084 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55693 1888552125 1990 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1861..Content-T +541 0.000000000 ::1:55689 ::1:135 1210463829 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +543 0.000663996 ::1:135 ::1:55689 840229947 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +632 0.112515688 ::1:55689 ::1:135 1210463985 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +634 0.113116741 ::1:135 ::1:55689 840230099 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +716 0.134860754 ::1:55689 ::1:135 1210464141 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +718 0.135454655 ::1:135 ::1:55689 840230251 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +804 0.243964195 ::1:55689 ::1:135 1210464297 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +807 0.244869471 ::1:135 ::1:55689 840230403 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +908 0.376347065 ::1:55689 ::1:135 1210464453 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +910 0.376995802 ::1:135 ::1:55689 840230555 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3000 7.101391554 ::1:55689 ::1:135 1210464609 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3002 7.102073431 ::1:135 ::1:55689 840230707 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3114 7.189862251 ::1:55689 ::1:135 1210464765 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3116 7.190706730 ::1:135 ::1:55689 840230859 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3253 7.276241779 ::1:55689 ::1:135 1210464921 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3255 7.276870012 ::1:135 ::1:55689 840231011 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3379 7.295769691 ::1:55689 ::1:135 1210465077 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3381 7.296391964 ::1:135 ::1:55689 840231163 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3449 7.309399366 ::1:55689 ::1:135 1210465233 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3451 7.309917212 ::1:135 ::1:55689 840231315 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..74d7d96 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..f6e68d9 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-__1_135-to-__1_55689.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_135-to-__1_55689.bin new file mode 100644 index 0000000..230a0ba Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_135-to-__1_55689.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-__1_49704-to-__1_55690.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_49704-to-__1_55690.bin new file mode 100644 index 0000000..50ff4df Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_49704-to-__1_55690.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-__1_55689-to-__1_135.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_55689-to-__1_135.bin new file mode 100644 index 0000000..ba9cc67 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_55689-to-__1_135.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-__1_55690-to-__1_49704.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_55690-to-__1_49704.bin new file mode 100644 index 0000000..87063e4 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-__1_55690-to-__1_49704.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..dd47e5a Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55691.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55691.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55691.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55693.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55693.bin new file mode 100644 index 0000000..1e2faf1 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55693.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55707.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55707.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55707.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55691-to-fe80__3608_256c_365_cc73_55555.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55691-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55691-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55693-to-fe80__3608_256c_365_cc73_55555.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55693-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..eea893c Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55693-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55707-to-fe80__3608_256c_365_cc73_55555.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55707-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_55707-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_59621-to-fe80__3608_256c_365_cc73_808.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_59621-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..c6e1242 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_59621-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..fddea58 Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_59621.bin b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_59621.bin new file mode 100644 index 0000000..51347fd Binary files /dev/null and b/captures/013-loopback-subscribe-scalars/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_59621.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/command.txt b/captures/014-loopback-subscribe-array-bracketed/command.txt new file mode 100644 index 0000000..31ce4d5 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=subscribe --duration=8 --tag=TestChildObject.TestStringArray[] --log=C:\Users\dohertj2\Desktop\mxaccess\captures\014-loopback-subscribe-array-bracketed\harness.log --client=MxProtoTraceHarness-014-loopback-subscribe-array-bracketed diff --git a/captures/014-loopback-subscribe-array-bracketed/dcerpc-49704.tsv b/captures/014-loopback-subscribe-array-bracketed/dcerpc-49704.tsv new file mode 100644 index 0000000..b149ac5 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/dcerpc-49704.tsv @@ -0,0 +1,402 @@ +550 1.832593300 14 11 2 0,1 4e0c90df-e39d-4164-a421-ace89484c602,4e0c90df-e39d-4164-a421-ace89484c602 116 0 Bind: call_id: 2, Fragment: Single, 2 context items: 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (32bit NDR), 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (6cb71c2c-9812-4540-0300-000000000000) +552 1.833042000 14 12 2 84 0 Bind_ack: call_id: 2, Fragment: Single, max_xmit: 5840 max_recv: 5840, 2 results: Acceptance, Negotiate ACK +554 1.833243800 14 0 2 0 0 40 0 Request: call_id: 2, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +556 1.833435600 14 2 2 0 0 44 0 Response: call_id: 2, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +558 1.833642900 14 14 3 1 1981974b-6bf7-46cb-9640-0260bbb551ba 72 0 Alter_context: call_id: 3, Fragment: Single, 1 context items: 1981974b-6bf7-46cb-9640-0260bbb551ba V1.0 (32bit NDR) +560 1.833805400 14 15 3 56 0 Alter_context_resp: call_id: 3, Fragment: Single, max_xmit: 5840 max_recv: 5840, 1 results: Acceptance +562 1.833948300 14 0 3 1 0 96 0 Request: call_id: 3, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +564 1.835603800 14 2 3 1 0 28 0 Response: call_id: 3, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +566 1.835826400 14 0 4 1 2 60 0 Request: call_id: 4, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +568 1.836010400 14 2 4 1 2 92 0 Response: call_id: 4, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +570 1.836350000 14 0 5 1 3 120 0 Request: call_id: 5, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +572 1.836533700 14 2 5 1 3 32 0 Response: call_id: 5, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +574 1.836733800 14 0 6 1 3 124 0 Request: call_id: 6, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +576 1.836904600 14 2 6 1 3 32 0 Response: call_id: 6, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +578 1.837147200 14 0 7 1 3 118 0 Request: call_id: 7, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +580 1.837360200 14 2 7 1 3 32 0 Response: call_id: 7, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +582 1.837524000 14 0 8 1 3 120 0 Request: call_id: 8, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +584 1.837695200 14 2 8 1 3 32 0 Response: call_id: 8, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +586 1.837841900 14 0 9 1 3 130 0 Request: call_id: 9, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +588 1.838002500 14 2 9 1 3 32 0 Response: call_id: 9, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +590 1.838175500 14 0 10 1 3 130 0 Request: call_id: 10, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +592 1.838336800 14 2 10 1 3 32 0 Response: call_id: 10, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +594 1.838482700 14 0 11 1 3 142 0 Request: call_id: 11, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +596 1.838647700 14 2 11 1 3 32 0 Response: call_id: 11, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +598 1.838823200 14 0 12 1 3 116 0 Request: call_id: 12, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +600 1.838994100 14 2 12 1 3 32 0 Response: call_id: 12, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +602 1.839231900 14 0 13 1 3 130 0 Request: call_id: 13, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +604 1.839396400 14 2 13 1 3 32 0 Response: call_id: 13, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +606 1.839574400 14 0 14 1 3 128 0 Request: call_id: 14, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +608 1.839772300 14 2 14 1 3 32 0 Response: call_id: 14, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +610 1.839932500 14 0 15 1 3 126 0 Request: call_id: 15, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +612 1.840126900 14 2 15 1 3 32 0 Response: call_id: 15, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +614 1.840718400 14 0 16 1 3 132 0 Request: call_id: 16, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +616 1.840885600 14 2 16 1 3 32 0 Response: call_id: 16, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +618 1.841137300 14 0 17 1 3 152 0 Request: call_id: 17, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +620 1.841320100 14 2 17 1 3 32 0 Response: call_id: 17, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +640 1.944771700 14 0 18 0 0 40 0 Request: call_id: 18, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +642 1.945037200 14 2 18 0 0 44 0 Response: call_id: 18, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +644 1.945636400 14 0 19 1 0 108 0 Request: call_id: 19, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +646 1.947255900 14 2 19 1 0 28 0 Response: call_id: 19, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +648 1.947464200 14 0 20 1 2 60 0 Request: call_id: 20, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +650 1.947661400 14 2 20 1 2 92 0 Response: call_id: 20, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +652 1.947927300 14 0 21 1 3 132 0 Request: call_id: 21, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +654 1.948108400 14 2 21 1 3 32 0 Response: call_id: 21, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +656 1.948265900 14 0 22 1 3 136 0 Request: call_id: 22, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +658 1.948420200 14 2 22 1 3 32 0 Response: call_id: 22, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +660 1.948696300 14 0 23 1 3 130 0 Request: call_id: 23, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +662 1.948950800 14 2 23 1 3 32 0 Response: call_id: 23, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +664 1.949222900 14 0 24 1 3 132 0 Request: call_id: 24, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +666 1.949460200 14 2 24 1 3 32 0 Response: call_id: 24, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +668 1.949654900 14 0 25 1 3 142 0 Request: call_id: 25, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +670 1.949827600 14 2 25 1 3 32 0 Response: call_id: 25, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +672 1.949986500 14 0 26 1 3 142 0 Request: call_id: 26, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +674 1.950149300 14 2 26 1 3 32 0 Response: call_id: 26, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +676 1.950357800 14 0 27 1 3 154 0 Request: call_id: 27, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +678 1.950515200 14 2 27 1 3 32 0 Response: call_id: 27, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +680 1.950663300 14 0 28 1 3 128 0 Request: call_id: 28, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +682 1.950885200 14 2 28 1 3 32 0 Response: call_id: 28, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +684 1.951035300 14 0 29 1 3 142 0 Request: call_id: 29, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +686 1.951397200 14 2 29 1 3 32 0 Response: call_id: 29, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +688 1.951571100 14 0 30 1 3 140 0 Request: call_id: 30, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +690 1.951738900 14 2 30 1 3 32 0 Response: call_id: 30, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +692 1.951957200 14 0 31 1 3 138 0 Request: call_id: 31, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +694 1.952142200 14 2 31 1 3 32 0 Response: call_id: 31, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +724 1.971404900 14 0 32 0 0 40 0 Request: call_id: 32, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +726 1.971608300 14 2 32 0 0 44 0 Response: call_id: 32, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +728 1.971783500 14 0 33 1 0 104 0 Request: call_id: 33, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +736 1.973723600 14 2 33 1 0 28 0 Response: call_id: 33, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +739 1.973888000 14 0 34 1 2 60 0 Request: call_id: 34, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +744 1.974093200 14 2 34 1 2 92 0 Response: call_id: 34, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +747 1.974396200 14 0 35 1 3 128 0 Request: call_id: 35, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +750 1.974634200 14 2 35 1 3 32 0 Response: call_id: 35, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +752 1.974811300 14 0 36 1 3 132 0 Request: call_id: 36, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +754 1.975059100 14 2 36 1 3 32 0 Response: call_id: 36, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +756 1.975219300 14 0 37 1 3 126 0 Request: call_id: 37, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +758 1.975467400 14 2 37 1 3 32 0 Response: call_id: 37, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +760 1.975631200 14 0 38 1 3 128 0 Request: call_id: 38, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +762 1.975897500 14 2 38 1 3 32 0 Response: call_id: 38, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +764 1.976055600 14 0 39 1 3 138 0 Request: call_id: 39, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +766 1.976293900 14 2 39 1 3 32 0 Response: call_id: 39, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +768 1.976494400 14 0 40 1 3 138 0 Request: call_id: 40, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +770 1.976747100 14 2 40 1 3 32 0 Response: call_id: 40, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +772 1.976940300 14 0 41 1 3 150 0 Request: call_id: 41, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +774 1.977189200 14 2 41 1 3 32 0 Response: call_id: 41, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +776 1.977391200 14 0 42 1 3 124 0 Request: call_id: 42, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +778 1.977569300 14 2 42 1 3 32 0 Response: call_id: 42, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +780 1.977712000 14 0 43 1 3 138 0 Request: call_id: 43, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +782 1.977885500 14 2 43 1 3 32 0 Response: call_id: 43, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +784 1.978027000 14 0 44 1 3 136 0 Request: call_id: 44, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +786 1.978197700 14 2 44 1 3 32 0 Response: call_id: 44, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +788 1.978385000 14 0 45 1 3 134 0 Request: call_id: 45, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +790 1.978559300 14 2 45 1 3 32 0 Response: call_id: 45, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +792 1.978794300 14 0 46 1 3 140 0 Request: call_id: 46, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +794 1.978965300 14 2 46 1 3 32 0 Response: call_id: 46, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +796 1.979117800 14 0 47 1 3 146 0 Request: call_id: 47, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +798 1.979385700 14 2 47 1 3 32 0 Response: call_id: 47, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +832 2.082173900 14 0 48 0 0 40 0 Request: call_id: 48, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +834 2.082406300 14 2 48 0 0 44 0 Response: call_id: 48, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +836 2.082593300 14 0 49 1 0 112 0 Request: call_id: 49, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +838 2.084319000 14 2 49 1 0 28 0 Response: call_id: 49, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +840 2.084468200 14 0 50 1 2 60 0 Request: call_id: 50, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +842 2.084673400 14 2 50 1 2 92 0 Response: call_id: 50, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +844 2.084920200 14 0 51 1 3 136 0 Request: call_id: 51, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +846 2.085188500 14 2 51 1 3 32 0 Response: call_id: 51, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +848 2.085330100 14 0 52 1 3 140 0 Request: call_id: 52, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +850 2.085509800 14 2 52 1 3 32 0 Response: call_id: 52, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +852 2.085654500 14 0 53 1 3 134 0 Request: call_id: 53, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +854 2.085829700 14 2 53 1 3 32 0 Response: call_id: 53, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +856 2.085971300 14 0 54 1 3 136 0 Request: call_id: 54, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +858 2.086144900 14 2 54 1 3 32 0 Response: call_id: 54, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +860 2.086292700 14 0 55 1 3 146 0 Request: call_id: 55, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +862 2.086520100 14 2 55 1 3 32 0 Response: call_id: 55, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +864 2.086723300 14 0 56 1 3 146 0 Request: call_id: 56, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +866 2.086914200 14 2 56 1 3 32 0 Response: call_id: 56, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +868 2.087068800 14 0 57 1 3 158 0 Request: call_id: 57, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +870 2.087267400 14 2 57 1 3 32 0 Response: call_id: 57, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +872 2.087404500 14 0 58 1 3 132 0 Request: call_id: 58, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +874 2.087581800 14 2 58 1 3 32 0 Response: call_id: 58, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +876 2.087725600 14 0 59 1 3 146 0 Request: call_id: 59, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +878 2.087897900 14 2 59 1 3 32 0 Response: call_id: 59, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +880 2.088039000 14 0 60 1 3 144 0 Request: call_id: 60, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +882 2.088240000 14 2 60 1 3 32 0 Response: call_id: 60, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +884 2.088376600 14 0 61 1 3 142 0 Request: call_id: 61, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +886 2.088557300 14 2 61 1 3 32 0 Response: call_id: 61, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +888 2.088768400 14 0 62 1 3 148 0 Request: call_id: 62, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +890 2.088946200 14 2 62 1 3 32 0 Response: call_id: 62, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +892 2.089103200 14 0 63 1 3 154 0 Request: call_id: 63, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +894 2.089335200 14 2 63 1 3 32 0 Response: call_id: 63, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +918 2.217926400 14 0 64 0 0 40 0 Request: call_id: 64, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +920 2.218243100 14 2 64 0 0 44 0 Response: call_id: 64, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +922 2.218423500 14 0 65 1 0 92 0 Request: call_id: 65, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +924 2.220521100 14 2 65 1 0 28 0 Response: call_id: 65, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +926 2.220772900 14 0 66 1 2 60 0 Request: call_id: 66, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +928 2.221020500 14 2 66 1 2 92 0 Response: call_id: 66, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +930 2.221297000 14 0 67 1 3 116 0 Request: call_id: 67, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +932 2.221568800 14 2 67 1 3 32 0 Response: call_id: 67, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +934 2.221725300 14 0 68 1 3 120 0 Request: call_id: 68, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +936 2.221924600 14 2 68 1 3 32 0 Response: call_id: 68, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +938 2.222085800 14 0 69 1 3 114 0 Request: call_id: 69, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +940 2.222267500 14 2 69 1 3 32 0 Response: call_id: 69, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +942 2.222407000 14 0 70 1 3 116 0 Request: call_id: 70, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +944 2.222580900 14 2 70 1 3 32 0 Response: call_id: 70, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +946 2.222721600 14 0 71 1 3 126 0 Request: call_id: 71, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +948 2.222888400 14 2 71 1 3 32 0 Response: call_id: 71, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +950 2.223027300 14 0 72 1 3 126 0 Request: call_id: 72, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +952 2.223220600 14 2 72 1 3 32 0 Response: call_id: 72, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +954 2.223352700 14 0 73 1 3 138 0 Request: call_id: 73, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +956 2.223518900 14 2 73 1 3 32 0 Response: call_id: 73, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +958 2.223658600 14 0 74 1 3 112 0 Request: call_id: 74, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +960 2.223876200 14 2 74 1 3 32 0 Response: call_id: 74, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +962 2.224017000 14 0 75 1 3 126 0 Request: call_id: 75, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +964 2.224209700 14 2 75 1 3 32 0 Response: call_id: 75, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +966 2.224435800 14 0 76 1 3 124 0 Request: call_id: 76, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +968 2.224625600 14 2 76 1 3 32 0 Response: call_id: 76, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +970 2.224791300 14 0 77 1 3 122 0 Request: call_id: 77, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +972 2.224959900 14 2 77 1 3 32 0 Response: call_id: 77, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +974 2.225180500 14 0 78 1 3 128 0 Request: call_id: 78, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +976 2.225339600 14 2 78 1 3 32 0 Response: call_id: 78, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +978 2.225491000 14 0 79 1 3 134 0 Request: call_id: 79, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +980 2.225658800 14 2 79 1 3 32 0 Response: call_id: 79, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +982 2.225911800 14 0 80 1 3 130 0 Request: call_id: 80, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +984 2.226081200 14 2 80 1 3 32 0 Response: call_id: 80, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +986 2.226256900 14 0 81 1 3 128 0 Request: call_id: 81, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +988 2.226433800 14 2 81 1 3 32 0 Response: call_id: 81, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2903 8.917853800 14 0 82 0 0 40 0 Request: call_id: 82, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2905 8.918180100 14 2 82 0 0 44 0 Response: call_id: 82, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2907 8.918450600 14 0 83 1 0 100 0 Request: call_id: 83, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2909 8.920687500 14 2 83 1 0 28 0 Response: call_id: 83, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2911 8.920966200 14 0 84 1 2 60 0 Request: call_id: 84, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2914 8.921289100 14 2 84 1 2 92 0 Response: call_id: 84, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2916 8.921632700 14 0 85 1 3 124 0 Request: call_id: 85, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2918 8.921854700 14 2 85 1 3 32 0 Response: call_id: 85, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2920 8.922034500 14 0 86 1 3 128 0 Request: call_id: 86, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2922 8.922231000 14 2 86 1 3 32 0 Response: call_id: 86, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2924 8.922438600 14 0 87 1 3 122 0 Request: call_id: 87, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2926 8.922763700 14 2 87 1 3 32 0 Response: call_id: 87, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2928 8.922967600 14 0 88 1 3 124 0 Request: call_id: 88, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2930 8.923273800 14 2 88 1 3 32 0 Response: call_id: 88, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2932 8.923477800 14 0 89 1 3 134 0 Request: call_id: 89, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2934 8.923698600 14 2 89 1 3 32 0 Response: call_id: 89, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2936 8.923896200 14 0 90 1 3 134 0 Request: call_id: 90, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2938 8.924142400 14 2 90 1 3 32 0 Response: call_id: 90, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2940 8.924342400 14 0 91 1 3 146 0 Request: call_id: 91, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2942 8.924571900 14 2 91 1 3 32 0 Response: call_id: 91, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2944 8.924771500 14 0 92 1 3 120 0 Request: call_id: 92, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2946 8.924987300 14 2 92 1 3 32 0 Response: call_id: 92, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2948 8.925172100 14 0 93 1 3 134 0 Request: call_id: 93, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2950 8.925388400 14 2 93 1 3 32 0 Response: call_id: 93, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2952 8.925586300 14 0 94 1 3 132 0 Request: call_id: 94, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2954 8.925800200 14 2 94 1 3 32 0 Response: call_id: 94, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2956 8.925993700 14 0 95 1 3 130 0 Request: call_id: 95, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2958 8.926190500 14 2 95 1 3 32 0 Response: call_id: 95, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2960 8.926475900 14 0 96 1 3 144 0 Request: call_id: 96, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2962 8.926694400 14 2 96 1 3 32 0 Response: call_id: 96, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2964 8.926904700 14 0 97 1 3 148 0 Request: call_id: 97, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2966 8.927123700 14 2 97 1 3 32 0 Response: call_id: 97, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2968 8.927330000 14 0 98 1 3 146 0 Request: call_id: 98, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2970 8.927546700 14 2 98 1 3 32 0 Response: call_id: 98, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2972 8.927803600 14 0 99 1 3 158 0 Request: call_id: 99, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2974 8.928053400 14 2 99 1 3 32 0 Response: call_id: 99, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3041 9.006840500 14 0 100 0 0 40 0 Request: call_id: 100, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3043 9.007055300 14 2 100 0 0 44 0 Response: call_id: 100, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3045 9.007265700 14 0 101 1 0 84 0 Request: call_id: 101, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3047 9.009112600 14 2 101 1 0 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3049 9.009297000 14 0 102 1 2 60 0 Request: call_id: 102, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3051 9.009509200 14 2 102 1 2 92 0 Response: call_id: 102, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3053 9.009780300 14 0 103 1 3 108 0 Request: call_id: 103, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3055 9.009990900 14 2 103 1 3 32 0 Response: call_id: 103, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3057 9.010159100 14 0 104 1 3 112 0 Request: call_id: 104, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3059 9.010361300 14 2 104 1 3 32 0 Response: call_id: 104, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3061 9.010544100 14 0 105 1 3 106 0 Request: call_id: 105, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3063 9.010812500 14 2 105 1 3 32 0 Response: call_id: 105, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3065 9.011010900 14 0 106 1 3 108 0 Request: call_id: 106, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3067 9.011193700 14 2 106 1 3 32 0 Response: call_id: 106, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3069 9.011403200 14 0 107 1 3 118 0 Request: call_id: 107, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3071 9.011575500 14 2 107 1 3 32 0 Response: call_id: 107, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3073 9.011735900 14 0 108 1 3 118 0 Request: call_id: 108, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3075 9.011903000 14 2 108 1 3 32 0 Response: call_id: 108, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3077 9.012067400 14 0 109 1 3 130 0 Request: call_id: 109, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3079 9.012236700 14 2 109 1 3 32 0 Response: call_id: 109, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3081 9.012424600 14 0 110 1 3 104 0 Request: call_id: 110, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3083 9.012606600 14 2 110 1 3 32 0 Response: call_id: 110, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3085 9.012771000 14 0 111 1 3 118 0 Request: call_id: 111, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3087 9.012942400 14 2 111 1 3 32 0 Response: call_id: 111, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3089 9.013099200 14 0 112 1 3 116 0 Request: call_id: 112, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3091 9.013266600 14 2 112 1 3 32 0 Response: call_id: 112, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3093 9.013450700 14 0 113 1 3 114 0 Request: call_id: 113, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3095 9.013618200 14 2 113 1 3 32 0 Response: call_id: 113, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3097 9.014168200 14 0 114 1 3 128 0 Request: call_id: 114, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3099 9.014338000 14 2 114 1 3 32 0 Response: call_id: 114, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3101 9.014625500 14 0 115 1 3 120 0 Request: call_id: 115, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3103 9.014795800 14 2 115 1 3 32 0 Response: call_id: 115, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3105 9.014990400 14 0 116 1 3 120 0 Request: call_id: 116, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3107 9.015161400 14 2 116 1 3 32 0 Response: call_id: 116, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3109 9.015424100 14 0 117 1 3 122 0 Request: call_id: 117, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3111 9.015886300 14 2 117 1 3 32 0 Response: call_id: 117, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3113 9.016082100 14 0 118 1 3 134 0 Request: call_id: 118, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3115 9.016506800 14 2 118 1 3 32 0 Response: call_id: 118, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3117 9.016740300 14 0 119 1 3 132 0 Request: call_id: 119, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3119 9.016923500 14 2 119 1 3 32 0 Response: call_id: 119, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3121 9.017151600 14 0 120 1 3 130 0 Request: call_id: 120, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3123 9.017358200 14 2 120 1 3 32 0 Response: call_id: 120, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3125 9.017623600 14 0 121 1 3 138 0 Request: call_id: 121, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3127 9.017812000 14 2 121 1 3 32 0 Response: call_id: 121, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3132 9.018055900 14 0 122 1 3 144 0 Request: call_id: 122, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3136 9.018244500 14 2 122 1 3 32 0 Response: call_id: 122, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3139 9.018526400 14 0 123 1 3 144 0 Request: call_id: 123, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3141 9.018684500 14 2 123 1 3 32 0 Response: call_id: 123, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3143 9.018878500 14 0 124 1 3 116 0 Request: call_id: 124, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3147 9.019125000 14 2 124 1 3 32 0 Response: call_id: 124, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3151 9.019382700 14 0 125 1 3 130 0 Request: call_id: 125, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3155 9.019571100 14 2 125 1 3 32 0 Response: call_id: 125, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3157 9.019785900 14 0 126 1 3 138 0 Request: call_id: 126, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3159 9.019954300 14 2 126 1 3 32 0 Response: call_id: 126, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3163 9.020226100 14 0 127 1 3 130 0 Request: call_id: 127, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3167 9.020412300 14 2 127 1 3 32 0 Response: call_id: 127, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3171 9.020644900 14 0 128 1 3 122 0 Request: call_id: 128, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3175 9.020823400 14 2 128 1 3 32 0 Response: call_id: 128, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3177 9.021080900 14 0 129 1 3 122 0 Request: call_id: 129, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3179 9.021257700 14 2 129 1 3 32 0 Response: call_id: 129, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3181 9.021526500 14 0 130 1 3 134 0 Request: call_id: 130, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3183 9.021702900 14 2 130 1 3 32 0 Response: call_id: 130, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3185 9.021946000 14 0 131 1 3 128 0 Request: call_id: 131, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3187 9.022122200 14 2 131 1 3 32 0 Response: call_id: 131, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3189 9.022357000 14 0 132 1 3 124 0 Request: call_id: 132, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3191 9.022569800 14 2 132 1 3 32 0 Response: call_id: 132, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3194 9.057813600 14 0 133 1 5 516 0 Request: call_id: 133, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3197 9.058113800 14 2 133 1 5 28 0 Response: call_id: 133, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3211 9.094179400 14 0 134 0 0 40 0 Request: call_id: 134, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3213 9.094464000 14 2 134 0 0 44 0 Response: call_id: 134, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3215 9.094688200 14 0 135 1 0 112 0 Request: call_id: 135, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3217 9.096581100 14 2 135 1 0 28 0 Response: call_id: 135, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3219 9.096759100 14 0 136 1 2 60 0 Request: call_id: 136, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3221 9.096935200 14 2 136 1 2 92 0 Response: call_id: 136, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3223 9.097194600 14 0 137 1 3 136 0 Request: call_id: 137, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3225 9.097421400 14 2 137 1 3 32 0 Response: call_id: 137, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3227 9.097591200 14 0 138 1 3 140 0 Request: call_id: 138, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3229 9.097758500 14 2 138 1 3 32 0 Response: call_id: 138, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3231 9.097922700 14 0 139 1 3 134 0 Request: call_id: 139, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3233 9.098087900 14 2 139 1 3 32 0 Response: call_id: 139, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3235 9.098249900 14 0 140 1 3 136 0 Request: call_id: 140, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3237 9.098437000 14 2 140 1 3 32 0 Response: call_id: 140, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3239 9.098598900 14 0 141 1 3 146 0 Request: call_id: 141, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3241 9.098762600 14 2 141 1 3 32 0 Response: call_id: 141, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3243 9.098923800 14 0 142 1 3 146 0 Request: call_id: 142, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3245 9.099118100 14 2 142 1 3 32 0 Response: call_id: 142, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3247 9.099285400 14 0 143 1 3 158 0 Request: call_id: 143, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3249 9.099480400 14 2 143 1 3 32 0 Response: call_id: 143, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3251 9.099645300 14 0 144 1 3 132 0 Request: call_id: 144, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3253 9.099813300 14 2 144 1 3 32 0 Response: call_id: 144, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3255 9.099976400 14 0 145 1 3 146 0 Request: call_id: 145, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3257 9.100140800 14 2 145 1 3 32 0 Response: call_id: 145, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3259 9.100302300 14 0 146 1 3 144 0 Request: call_id: 146, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3261 9.100492600 14 2 146 1 3 32 0 Response: call_id: 146, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3263 9.100652700 14 0 147 1 3 142 0 Request: call_id: 147, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3265 9.100815300 14 2 147 1 3 32 0 Response: call_id: 147, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3267 9.101101200 14 0 148 1 3 160 0 Request: call_id: 148, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3269 9.101276400 14 2 148 1 3 32 0 Response: call_id: 148, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3271 9.101481600 14 0 149 1 3 156 0 Request: call_id: 149, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3273 9.101642500 14 2 149 1 3 32 0 Response: call_id: 149, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3275 9.101965200 14 0 150 1 3 154 0 Request: call_id: 150, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3277 9.102137800 14 2 150 1 3 32 0 Response: call_id: 150, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3279 9.102315900 14 0 151 1 3 146 0 Request: call_id: 151, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3281 9.102507300 14 2 151 1 3 32 0 Response: call_id: 151, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3283 9.102678000 14 0 152 1 3 154 0 Request: call_id: 152, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3285 9.102840500 14 2 152 1 3 32 0 Response: call_id: 152, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3287 9.103010600 14 0 153 1 3 150 0 Request: call_id: 153, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3289 9.103168800 14 2 153 1 3 32 0 Response: call_id: 153, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3291 9.103333600 14 0 154 1 3 152 0 Request: call_id: 154, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3293 9.103495500 14 2 154 1 3 32 0 Response: call_id: 154, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3295 9.103698800 14 0 155 1 3 140 0 Request: call_id: 155, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3297 9.103863700 14 2 155 1 3 32 0 Response: call_id: 155, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3299 9.104032700 14 0 156 1 3 148 0 Request: call_id: 156, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3301 9.104191900 14 2 156 1 3 32 0 Response: call_id: 156, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3303 9.104356300 14 0 157 1 3 162 0 Request: call_id: 157, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3305 9.104518300 14 2 157 1 3 32 0 Response: call_id: 157, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3307 9.104686400 14 0 158 1 3 172 0 Request: call_id: 158, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3309 9.104846500 14 2 158 1 3 32 0 Response: call_id: 158, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3311 9.105013400 14 0 159 1 3 144 0 Request: call_id: 159, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3313 9.105173000 14 2 159 1 3 32 0 Response: call_id: 159, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3321 9.113875800 14 0 160 0 0 40 0 Request: call_id: 160, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3323 9.114105300 14 2 160 0 0 44 0 Response: call_id: 160, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3325 9.114307400 14 0 161 1 0 128 0 Request: call_id: 161, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3327 9.115853800 14 2 161 1 0 28 0 Response: call_id: 161, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3329 9.116025400 14 0 162 1 2 60 0 Request: call_id: 162, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3331 9.116193500 14 2 162 1 2 92 0 Response: call_id: 162, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3333 9.116604800 14 0 163 1 3 152 0 Request: call_id: 163, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3335 9.116840700 14 2 163 1 3 32 0 Response: call_id: 163, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3337 9.117039200 14 0 164 1 3 156 0 Request: call_id: 164, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3339 9.117258200 14 2 164 1 3 32 0 Response: call_id: 164, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3341 9.117489200 14 0 165 1 3 150 0 Request: call_id: 165, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3343 9.117668800 14 2 165 1 3 32 0 Response: call_id: 165, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3345 9.117897900 14 0 166 1 3 152 0 Request: call_id: 166, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3347 9.118102800 14 2 166 1 3 32 0 Response: call_id: 166, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3349 9.118282600 14 0 167 1 3 162 0 Request: call_id: 167, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3351 9.118479300 14 2 167 1 3 32 0 Response: call_id: 167, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3353 9.118696800 14 0 168 1 3 162 0 Request: call_id: 168, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3355 9.118873400 14 2 168 1 3 32 0 Response: call_id: 168, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3357 9.119040300 14 0 169 1 3 174 0 Request: call_id: 169, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3359 9.119253700 14 2 169 1 3 32 0 Response: call_id: 169, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3361 9.119443900 14 0 170 1 3 148 0 Request: call_id: 170, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3363 9.119603500 14 2 170 1 3 32 0 Response: call_id: 170, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3365 9.119821500 14 0 171 1 3 162 0 Request: call_id: 171, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3367 9.120013000 14 2 171 1 3 32 0 Response: call_id: 171, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3369 9.120173400 14 0 172 1 3 160 0 Request: call_id: 172, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3371 9.120345100 14 2 172 1 3 32 0 Response: call_id: 172, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3373 9.120595500 14 0 173 1 3 158 0 Request: call_id: 173, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3375 9.120743100 14 2 173 1 3 32 0 Response: call_id: 173, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3377 9.120976800 14 0 174 1 3 170 0 Request: call_id: 174, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3379 9.121152000 14 2 174 1 3 32 0 Response: call_id: 174, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3381 9.121329800 14 0 175 1 3 182 0 Request: call_id: 175, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3383 9.121545100 14 2 175 1 3 32 0 Response: call_id: 175, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3401 9.127940700 14 0 176 0 0 40 0 Request: call_id: 176, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3403 9.128133700 14 2 176 0 0 44 0 Response: call_id: 176, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3405 9.128335600 14 0 177 1 0 96 0 Request: call_id: 177, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3407 9.129858000 14 2 177 1 0 28 0 Response: call_id: 177, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3409 9.130029600 14 0 178 1 2 60 0 Request: call_id: 178, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3411 9.130203400 14 2 178 1 2 92 0 Response: call_id: 178, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3413 9.130500000 14 0 179 1 3 120 0 Request: call_id: 179, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3415 9.130671000 14 2 179 1 3 32 0 Response: call_id: 179, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3417 9.130833100 14 0 180 1 3 124 0 Request: call_id: 180, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3419 9.130999300 14 2 180 1 3 32 0 Response: call_id: 180, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3421 9.131156700 14 0 181 1 3 118 0 Request: call_id: 181, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3423 9.131346200 14 2 181 1 3 32 0 Response: call_id: 181, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3425 9.131475100 14 0 182 1 3 120 0 Request: call_id: 182, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3427 9.131634800 14 2 182 1 3 32 0 Response: call_id: 182, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3429 9.131787500 14 0 183 1 3 130 0 Request: call_id: 183, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3431 9.131946700 14 2 183 1 3 32 0 Response: call_id: 183, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3433 9.132101500 14 0 184 1 3 130 0 Request: call_id: 184, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3435 9.132261400 14 2 184 1 3 32 0 Response: call_id: 184, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3437 9.132461600 14 0 185 1 3 142 0 Request: call_id: 185, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3439 9.132690200 14 2 185 1 3 32 0 Response: call_id: 185, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3441 9.132859300 14 0 186 1 3 116 0 Request: call_id: 186, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3443 9.133038300 14 2 186 1 3 32 0 Response: call_id: 186, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3445 9.133198500 14 0 187 1 3 130 0 Request: call_id: 187, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3447 9.133364800 14 2 187 1 3 32 0 Response: call_id: 187, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3449 9.133549000 14 0 188 1 3 128 0 Request: call_id: 188, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3451 9.133715600 14 2 188 1 3 32 0 Response: call_id: 188, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3453 9.133873600 14 0 189 1 3 126 0 Request: call_id: 189, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3455 9.134038700 14 2 189 1 3 32 0 Response: call_id: 189, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3457 9.134236200 14 0 190 1 3 126 0 Request: call_id: 190, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3459 9.134467300 14 2 190 1 3 32 0 Response: call_id: 190, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3461 9.134666700 14 0 191 1 3 132 0 Request: call_id: 191, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3463 9.134844200 14 2 191 1 3 32 0 Response: call_id: 191, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3465 9.135095400 14 0 192 1 3 130 0 Request: call_id: 192, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3468 9.135296100 14 2 192 1 3 32 0 Response: call_id: 192, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3470 9.135558900 14 0 193 1 3 138 0 Request: call_id: 193, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3472 9.135733000 14 2 193 1 3 32 0 Response: call_id: 193, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3474 9.135927600 14 0 194 1 3 136 0 Request: call_id: 194, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3476 9.136100100 14 2 194 1 3 32 0 Response: call_id: 194, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3478 9.136264900 14 0 195 1 3 132 0 Request: call_id: 195, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3480 9.136491700 14 2 195 1 3 32 0 Response: call_id: 195, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3482 9.136778900 14 0 196 1 3 142 0 Request: call_id: 196, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3484 9.136971600 14 2 196 1 3 32 0 Response: call_id: 196, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3486 9.137193700 14 0 197 1 3 148 0 Request: call_id: 197, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3488 9.137466200 14 2 197 1 3 32 0 Response: call_id: 197, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3494 9.176942400 14 0 198 1 5 290 0 Request: call_id: 198, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3496 9.177223300 14 2 198 1 5 28 0 Response: call_id: 198, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3585 9.255390200 14 0 199 1 5 206 0 Request: call_id: 199, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3587 9.255686100 14 2 199 1 5 28 0 Response: call_id: 199, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +6129 17.351123500 59 0 95 1 5 242 0 Request: call_id: 95, Fragment: Single, opnum: 5, Ctx: 1 +6131 17.351426400 59 2 95 1 28 0 Response: call_id: 95, Fragment: Single, Ctx: 1 diff --git a/captures/014-loopback-subscribe-array-bracketed/dumpcap.stderr.txt b/captures/014-loopback-subscribe-array-bracketed/dumpcap.stderr.txt new file mode 100644 index 0000000..959afab --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\014-loopback-subscribe-array-bracketed\loopback.pcapng diff --git a/captures/014-loopback-subscribe-array-bracketed/dumpcap.stdout.txt b/captures/014-loopback-subscribe-array-bracketed/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/014-loopback-subscribe-array-bracketed/exit.txt b/captures/014-loopback-subscribe-array-bracketed/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/014-loopback-subscribe-array-bracketed/harness.log b/captures/014-loopback-subscribe-array-bracketed/harness.log new file mode 100644 index 0000000..7f416a5 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/harness.log @@ -0,0 +1,15 @@ +2026-04-25T05:12:54.2236077+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-014-loopback-subscribe-array-bracketed","Tags":["TestChildObject.TestStringArray[]"],"WriteType":"string","WriteValue":"","UserId":0,"WriteDelayMilliseconds":750,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:13:01.3566968+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-014-loopback-subscribe-array-bracketed"} +2026-04-25T05:13:01.7378562+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:13:01.7388755+00:00 mx.additem.begin {"Tag":"TestChildObject.TestStringArray[]"} +2026-04-25T05:13:01.7408561+00:00 mx.additem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T05:13:01.7418549+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T05:13:01.7428544+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T05:13:01.9948613+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String[]","Length":10,"Values":["","","","","","","","","",""]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.908 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:13:09.7755298+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T05:13:09.7765327+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T05:13:09.7765327+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T05:13:09.7765327+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T05:13:09.7765327+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:13:13.9429609+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:13:13.9499508+00:00 harness.stop {} diff --git a/captures/014-loopback-subscribe-array-bracketed/loopback.pcapng b/captures/014-loopback-subscribe-array-bracketed/loopback.pcapng new file mode 100644 index 0000000..153a26a Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/loopback.pcapng differ diff --git a/captures/014-loopback-subscribe-array-bracketed/nmx-conversations.tsv b/captures/014-loopback-subscribe-array-bracketed/nmx-conversations.tsv new file mode 100644 index 0000000..254d2ae --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/nmx-conversations.tsv @@ -0,0 +1,6 @@ +capture selected_a selected_b payload_packets payload_bytes +C:\Users\dohertj2\Desktop\mxaccess\captures\014-loopback-subscribe-array-bracketed\loopback.pcapng ::1:49704 ::1:55733 400 32726 + +conversation_a conversation_b payload_packets payload_bytes +::1:49704 ::1:55733 400 32726 +::1:49704 ::1:49829 2 270 diff --git a/captures/014-loopback-subscribe-array-bracketed/nmx-payload-packets.tsv b/captures/014-loopback-subscribe-array-bracketed/nmx-payload-packets.tsv new file mode 100644 index 0000000..a3e49c3 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/nmx-payload-packets.tsv @@ -0,0 +1,401 @@ +frame time_relative from_service src sport dst dport seq ack payload_len hex_prefix ascii_preview +550 0.000000000 0 ::1 55733 ::1 49704 3395154331 1719828624 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +552 0.000448704 1 ::1 49704 ::1 55733 1719828624 3395154447 84 05000c03100000005400000002000000d016d016b4b900000600343937303400 ........T.................49704..........]...... +554 0.000650406 0 ::1 55733 ::1 49704 3395154447 1719828708 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +556 0.000842333 1 ::1 49704 ::1 55733 1719828708 3395154487 44 05000203100000002c0000000200000014000000000000000000000003b0fcb4 ........,........................6.A.+...%R. +558 0.001049519 0 ::1 55733 ::1 49704 3395154487 1719828752 72 05000e03100000004800000003000000d016d016b4b900000100000001000100 ........H.......................K....k.F.@.`..Q. +560 0.001212120 1 ::1 49704 ::1 55733 1719828752 3395154559 56 05000f03100000003800000003000000d016d016b4b900000000000001000000 ........8............................].......... +562 0.001354933 0 ::1 55733 ::1 49704 3395154559 1719828808 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +564 0.003010511 1 ::1 49704 ::1 55733 1719828808 3395154655 28 05000203100000001c00000003000000040000000100000001000000 ............................ +566 0.003233194 0 ::1 55733 ::1 49704 3395154655 1719828836 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +568 0.003417015 1 ::1 49704 ::1 55733 1719828836 3395154715 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +570 0.003756762 0 ::1 55733 ::1 49704 3395154715 1719828928 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +572 0.003940344 1 ::1 49704 ::1 55733 1719828928 3395154835 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +574 0.004140377 0 ::1 55733 ::1 49704 3395154835 1719828960 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +576 0.004311323 1 ::1 49704 ::1 55733 1719828960 3395154959 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +578 0.004553795 0 ::1 55733 ::1 49704 3395154959 1719828992 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +580 0.004766941 1 ::1 49704 ::1 55733 1719828992 3395155077 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +582 0.004930735 0 ::1 55733 ::1 49704 3395155077 1719829024 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +584 0.005101919 1 ::1 49704 ::1 55733 1719829024 3395155197 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +586 0.005248547 0 ::1 55733 ::1 49704 3395155197 1719829056 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +588 0.005409241 1 ::1 49704 ::1 55733 1719829056 3395155327 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +590 0.005582094 0 ::1 55733 ::1 49704 3395155327 1719829088 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +592 0.005743504 1 ::1 49704 ::1 55733 1719829088 3395155457 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +594 0.005889416 0 ::1 55733 ::1 49704 3395155457 1719829120 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +596 0.006054401 1 ::1 49704 ::1 55733 1719829120 3395155599 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +598 0.006229877 0 ::1 55733 ::1 49704 3395155599 1719829152 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +600 0.006400824 1 ::1 49704 ::1 55733 1719829152 3395155715 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +602 0.006638527 0 ::1 55733 ::1 49704 3395155715 1719829184 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +604 0.006803036 1 ::1 49704 ::1 55733 1719829184 3395155845 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +606 0.006981134 0 ::1 55733 ::1 49704 3395155845 1719829216 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +608 0.007179022 1 ::1 49704 ::1 55733 1719829216 3395155973 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +610 0.007339239 0 ::1 55733 ::1 49704 3395155973 1719829248 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +612 0.007533550 1 ::1 49704 ::1 55733 1719829248 3395156099 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +614 0.008125067 0 ::1 55733 ::1 49704 3395156099 1719829280 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +616 0.008292198 1 ::1 49704 ::1 55733 1719829280 3395156231 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +618 0.008543968 0 ::1 55733 ::1 49704 3395156231 1719829312 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +620 0.008726835 1 ::1 49704 ::1 55733 1719829312 3395156383 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +640 0.112178326 0 ::1 55733 ::1 49704 3395156383 1719829344 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +642 0.112443924 1 ::1 49704 ::1 55733 1719829344 3395156423 44 05000203100000002c00000012000000140000000000000000000000f491993d ........,......................=..$H.~... .. +644 0.113043070 0 ::1 55733 ::1 49704 3395156423 1719829388 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K...........= +646 0.114662647 1 ::1 49704 ::1 55733 1719829388 3395156531 28 05000203100000001c00000013000000040000000100000001000000 ............................ +648 0.114870787 0 ::1 55733 ::1 49704 3395156531 1719829416 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........= +650 0.115068197 1 ::1 49704 ::1 55733 1719829416 3395156591 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +652 0.115334034 0 ::1 55733 ::1 49704 3395156591 1719829508 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........= +654 0.115514994 1 ::1 49704 ::1 55733 1719829508 3395156723 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +656 0.115672588 0 ::1 55733 ::1 49704 3395156723 1719829540 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K...........= +658 0.115826845 1 ::1 49704 ::1 55733 1719829540 3395156859 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +660 0.116102934 0 ::1 55733 ::1 49704 3395156859 1719829572 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........= +662 0.116357565 1 ::1 49704 ::1 55733 1719829572 3395156989 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +664 0.116629601 0 ::1 55733 ::1 49704 3395156989 1719829604 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........= +666 0.116866827 1 ::1 49704 ::1 55733 1719829604 3395157121 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +668 0.117061615 0 ::1 55733 ::1 49704 3395157121 1719829636 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........= +670 0.117234230 1 ::1 49704 ::1 55733 1719829636 3395157263 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +672 0.117393255 0 ::1 55733 ::1 49704 3395157263 1719829668 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........= +674 0.117556095 1 ::1 49704 ::1 55733 1719829668 3395157405 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +676 0.117764473 0 ::1 55733 ::1 49704 3395157405 1719829700 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K...........= +678 0.117921829 1 ::1 49704 ::1 55733 1719829700 3395157559 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +680 0.118069887 0 ::1 55733 ::1 49704 3395157559 1719829732 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........= +682 0.118291855 1 ::1 49704 ::1 55733 1719829732 3395157687 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +684 0.118442059 0 ::1 55733 ::1 49704 3395157687 1719829764 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........= +686 0.118803978 1 ::1 49704 ::1 55733 1719829764 3395157829 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +688 0.118977785 0 ::1 55733 ::1 49704 3395157829 1719829796 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K...........= +690 0.119145632 1 ::1 49704 ::1 55733 1719829796 3395157969 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +692 0.119363785 0 ::1 55733 ::1 49704 3395157969 1719829828 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K...........= +694 0.119548798 1 ::1 49704 ::1 55733 1719829828 3395158107 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +724 0.138811588 0 ::1 55733 ::1 49704 3395158107 1719829860 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +726 0.139014959 1 ::1 49704 ::1 55733 1719829860 3395158147 44 05000203100000002c0000002000000014000000000000000000000062a344c8 ........,... ...............b.D....F...p!Z.. +728 0.139190197 0 ::1 55733 ::1 49704 3395158147 1719829904 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K........b.D. +736 0.141130209 1 ::1 49704 ::1 55733 1719829904 3395158251 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +739 0.141294718 0 ::1 55733 ::1 49704 3395158251 1719829932 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K........b.D. +744 0.141499996 1 ::1 49704 ::1 55733 1719829932 3395158311 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +747 0.141802788 0 ::1 55733 ::1 49704 3395158311 1719830024 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K........b.D. +750 0.142040968 1 ::1 49704 ::1 55733 1719830024 3395158439 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +752 0.142217875 0 ::1 55733 ::1 49704 3395158439 1719830056 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K........b.D. +754 0.142465830 1 ::1 49704 ::1 55733 1719830056 3395158571 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +756 0.142626047 0 ::1 55733 ::1 49704 3395158571 1719830088 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K........b.D. +758 0.142874002 1 ::1 49704 ::1 55733 1719830088 3395158697 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +760 0.143037796 0 ::1 55733 ::1 49704 3395158697 1719830120 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K........b.D. +762 0.143304110 1 ::1 49704 ::1 55733 1719830120 3395158825 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +764 0.143462181 0 ::1 55733 ::1 49704 3395158825 1719830152 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K........b.D. +766 0.143700600 1 ::1 49704 ::1 55733 1719830152 3395158963 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +768 0.143901110 0 ::1 55733 ::1 49704 3395158963 1719830184 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K........b.D. +770 0.144153833 1 ::1 49704 ::1 55733 1719830184 3395159101 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +772 0.144346952 0 ::1 55733 ::1 49704 3395159101 1719830216 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K........b.D. +774 0.144595861 1 ::1 49704 ::1 55733 1719830216 3395159251 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +776 0.144797802 0 ::1 55733 ::1 49704 3395159251 1719830248 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K........b.D. +778 0.144975901 1 ::1 49704 ::1 55733 1719830248 3395159375 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +780 0.145118713 0 ::1 55733 ::1 49704 3395159375 1719830280 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K........b.D. +782 0.145292282 1 ::1 49704 ::1 55733 1719830280 3395159513 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +784 0.145433664 0 ::1 55733 ::1 49704 3395159513 1719830312 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K........b.D. +786 0.145604372 1 ::1 49704 ::1 55733 1719830312 3395159649 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +788 0.145791769 0 ::1 55733 ::1 49704 3395159649 1719830344 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K........b.D. +790 0.145966053 1 ::1 49704 ::1 55733 1719830344 3395159783 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +792 0.146200895 0 ::1 55733 ::1 49704 3395159783 1719830376 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........b.D. +794 0.146372080 1 ::1 49704 ::1 55733 1719830376 3395159923 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +796 0.146524429 0 ::1 55733 ::1 49704 3395159923 1719830408 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K........b.D. +798 0.146792412 1 ::1 49704 ::1 55733 1719830408 3395160069 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +832 0.249580622 0 ::1 55733 ::1 49704 3395160069 1719830440 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +834 0.249813080 1 ::1 49704 ::1 55733 1719830440 3395160109 44 05000203100000002c0000003000000014000000000000000000000043f01f66 ........,...0...............C..fj..A....j... +836 0.250000000 0 ::1 55733 ::1 49704 3395160109 1719830484 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........C..f +838 0.251725674 1 ::1 49704 ::1 55733 1719830484 3395160221 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +840 0.251874924 0 ::1 55733 ::1 49704 3395160221 1719830512 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........C..f +842 0.252079964 1 ::1 49704 ::1 55733 1719830512 3395160281 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +844 0.252326965 0 ::1 55733 ::1 49704 3395160281 1719830604 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........C..f +846 0.252595186 1 ::1 49704 ::1 55733 1719830604 3395160417 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +848 0.252736807 0 ::1 55733 ::1 49704 3395160417 1719830636 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........C..f +850 0.252916574 1 ::1 49704 ::1 55733 1719830636 3395160557 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +852 0.253061295 0 ::1 55733 ::1 49704 3395160557 1719830668 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........C..f +854 0.253236294 1 ::1 49704 ::1 55733 1719830668 3395160691 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +856 0.253377914 0 ::1 55733 ::1 49704 3395160691 1719830700 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........C..f +858 0.253551483 1 ::1 49704 ::1 55733 1719830700 3395160827 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +860 0.253699303 0 ::1 55733 ::1 49704 3395160827 1719830732 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........C..f +862 0.253926754 1 ::1 49704 ::1 55733 1719830732 3395160973 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +864 0.254129887 0 ::1 55733 ::1 49704 3395160973 1719830764 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........C..f +866 0.254320860 1 ::1 49704 ::1 55733 1719830764 3395161119 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +868 0.254475594 0 ::1 55733 ::1 49704 3395161119 1719830796 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........C..f +870 0.254674196 1 ::1 49704 ::1 55733 1719830796 3395161277 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +872 0.254811287 0 ::1 55733 ::1 49704 3395161277 1719830828 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........C..f +874 0.254988432 1 ::1 49704 ::1 55733 1719830828 3395161409 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +876 0.255132198 0 ::1 55733 ::1 49704 3395161409 1719830860 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........C..f +878 0.255304575 1 ::1 49704 ::1 55733 1719830860 3395161555 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +880 0.255445719 0 ::1 55733 ::1 49704 3395161555 1719830892 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........C..f +882 0.255646706 1 ::1 49704 ::1 55733 1719830892 3395161699 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +884 0.255783319 0 ::1 55733 ::1 49704 3395161699 1719830924 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........C..f +886 0.255964041 1 ::1 49704 ::1 55733 1719830924 3395161841 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +888 0.256175041 0 ::1 55733 ::1 49704 3395161841 1719830956 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........C..f +890 0.256352901 1 ::1 49704 ::1 55733 1719830956 3395161989 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +892 0.256509781 0 ::1 55733 ::1 49704 3395161989 1719830988 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........C..f +894 0.256741762 1 ::1 49704 ::1 55733 1719830988 3395162143 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +918 0.385333061 0 ::1 55733 ::1 49704 3395162143 1719831020 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +920 0.385649681 1 ::1 49704 ::1 55733 1719831020 3395162183 44 05000203100000002c00000040000000140000000000000000000000a7eb8280 ........,...@....................8nG.V?.1.k. +922 0.385830164 0 ::1 55733 ::1 49704 3395162183 1719831064 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K............ +924 0.387927771 1 ::1 49704 ::1 55733 1719831064 3395162275 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +926 0.388179541 0 ::1 55733 ::1 49704 3395162275 1719831092 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K............ +928 0.388427258 1 ::1 49704 ::1 55733 1719831092 3395162335 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +930 0.388703585 0 ::1 55733 ::1 49704 3395162335 1719831184 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K............ +932 0.388975382 1 ::1 49704 ::1 55733 1719831184 3395162451 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +934 0.389132023 0 ::1 55733 ::1 49704 3395162451 1719831216 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K............ +936 0.389331341 1 ::1 49704 ::1 55733 1719831216 3395162571 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +938 0.389492512 0 ::1 55733 ::1 49704 3395162571 1719831248 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K............ +940 0.389674187 1 ::1 49704 ::1 55733 1719831248 3395162685 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +942 0.389813662 0 ::1 55733 ::1 49704 3395162685 1719831280 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K............ +944 0.389987469 1 ::1 49704 ::1 55733 1719831280 3395162801 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +946 0.390128374 0 ::1 55733 ::1 49704 3395162801 1719831312 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K............ +948 0.390295029 1 ::1 49704 ::1 55733 1719831312 3395162927 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +950 0.390434027 0 ::1 55733 ::1 49704 3395162927 1719831344 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K............ +952 0.390627384 1 ::1 49704 ::1 55733 1719831344 3395163053 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +954 0.390759468 0 ::1 55733 ::1 49704 3395163053 1719831376 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K............ +956 0.390925646 1 ::1 49704 ::1 55733 1719831376 3395163191 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +958 0.391065359 0 ::1 55733 ::1 49704 3395163191 1719831408 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K............ +960 0.391282797 1 ::1 49704 ::1 55733 1719831408 3395163303 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +962 0.391423702 0 ::1 55733 ::1 49704 3395163303 1719831440 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K............ +964 0.391616344 1 ::1 49704 ::1 55733 1719831440 3395163429 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +966 0.391842365 0 ::1 55733 ::1 49704 3395163429 1719831472 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K............ +968 0.392032385 1 ::1 49704 ::1 55733 1719831472 3395163553 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +970 0.392198086 0 ::1 55733 ::1 49704 3395163553 1719831504 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K............ +972 0.392366648 1 ::1 49704 ::1 55733 1719831504 3395163675 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +974 0.392587185 0 ::1 55733 ::1 49704 3395163675 1719831536 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K............ +976 0.392746210 1 ::1 49704 ::1 55733 1719831536 3395163803 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +978 0.392897606 0 ::1 55733 ::1 49704 3395163803 1719831568 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K............ +980 0.393065453 1 ::1 49704 ::1 55733 1719831568 3395163937 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +982 0.393318415 0 ::1 55733 ::1 49704 3395163937 1719831600 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K............ +984 0.393487930 1 ::1 49704 ::1 55733 1719831600 3395164067 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +986 0.393663645 0 ::1 55733 ::1 49704 3395164067 1719831632 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K............ +988 0.393840551 1 ::1 49704 ::1 55733 1719831632 3395164195 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +2903 7.085260391 0 ::1 55733 ::1 49704 3395164195 1719831664 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +2905 7.085586786 1 ::1 49704 ::1 55733 1719831664 3395164235 44 05000203100000002c0000005200000014000000000000000000000011a21890 ........,...R....................4.D.6. k0). +2907 7.085857391 0 ::1 55733 ::1 49704 3395164235 1719831708 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K............ +2909 7.088094234 1 ::1 49704 ::1 55733 1719831708 3395164335 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +2911 7.088372946 0 ::1 55733 ::1 49704 3395164335 1719831736 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K............ +2914 7.088695765 1 ::1 49704 ::1 55733 1719831736 3395164395 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +2916 7.089039326 0 ::1 55733 ::1 49704 3395164395 1719831828 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K............ +2918 7.089261293 1 ::1 49704 ::1 55733 1719831828 3395164519 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +2920 7.089441061 0 ::1 55733 ::1 49704 3395164519 1719831860 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K............ +2922 7.089637756 1 ::1 49704 ::1 55733 1719831860 3395164647 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +2924 7.089845181 0 ::1 55733 ::1 49704 3395164647 1719831892 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K............ +2926 7.090170383 1 ::1 49704 ::1 55733 1719831892 3395164769 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +2928 7.090374231 0 ::1 55733 ::1 49704 3395164769 1719831924 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K............ +2930 7.090680361 1 ::1 49704 ::1 55733 1719831924 3395164893 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +2932 7.090884447 0 ::1 55733 ::1 49704 3395164893 1719831956 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K............ +2934 7.091105223 1 ::1 49704 ::1 55733 1719831956 3395165027 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +2936 7.091302872 0 ::1 55733 ::1 49704 3395165027 1719831988 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K............ +2938 7.091549158 1 ::1 49704 ::1 55733 1719831988 3395165161 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +2940 7.091749191 0 ::1 55733 ::1 49704 3395165161 1719832020 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K............ +2942 7.091978550 1 ::1 49704 ::1 55733 1719832020 3395165307 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +2944 7.092178106 0 ::1 55733 ::1 49704 3395165307 1719832052 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K............ +2946 7.092393875 1 ::1 49704 ::1 55733 1719832052 3395165427 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +2948 7.092578888 0 ::1 55733 ::1 49704 3395165427 1719832084 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K............ +2950 7.092795134 1 ::1 49704 ::1 55733 1719832084 3395165561 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +2952 7.092993021 0 ::1 55733 ::1 49704 3395165561 1719832116 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K............ +2954 7.093206882 1 ::1 49704 ::1 55733 1719832116 3395165693 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +2956 7.093400478 0 ::1 55733 ::1 49704 3395165693 1719832148 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K............ +2958 7.093597174 1 ::1 49704 ::1 55733 1719832148 3395165823 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +2960 7.093882561 0 ::1 55733 ::1 49704 3395165823 1719832180 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K............ +2962 7.094101191 1 ::1 49704 ::1 55733 1719832180 3395165967 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +2964 7.094311476 0 ::1 55733 ::1 49704 3395165967 1719832212 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K............ +2966 7.094530344 1 ::1 49704 ::1 55733 1719832212 3395166115 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +2968 7.094736576 0 ::1 55733 ::1 49704 3395166115 1719832244 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K............ +2970 7.094953299 1 ::1 49704 ::1 55733 1719832244 3395166261 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +2972 7.095210314 0 ::1 55733 ::1 49704 3395166261 1719832276 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K............ +2974 7.095460176 1 ::1 49704 ::1 55733 1719832276 3395166419 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3041 7.174247265 0 ::1 55733 ::1 49704 3395166419 1719832308 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3043 7.174462080 1 ::1 49704 ::1 55733 1719832308 3395166459 44 05000203100000002c000000640000001400000000000000000000007e2b7af8 ........,...d...............~+z....G.`.W.... +3045 7.174672365 0 ::1 55733 ::1 49704 3395166459 1719832352 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K........~+z. +3047 7.176519394 1 ::1 49704 ::1 55733 1719832352 3395166543 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3049 7.176703691 0 ::1 55733 ::1 49704 3395166543 1719832380 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K........~+z. +3051 7.176915884 1 ::1 49704 ::1 55733 1719832380 3395166603 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3053 7.177186966 0 ::1 55733 ::1 49704 3395166603 1719832472 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K........~+z. +3055 7.177397490 1 ::1 49704 ::1 55733 1719832472 3395166711 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3057 7.177565813 0 ::1 55733 ::1 49704 3395166711 1719832504 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K........~+z. +3059 7.177767992 1 ::1 49704 ::1 55733 1719832504 3395166823 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3061 7.177950859 0 ::1 55733 ::1 49704 3395166823 1719832536 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K........~+z. +3063 7.178219080 1 ::1 49704 ::1 55733 1719832536 3395166929 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3065 7.178417683 0 ::1 55733 ::1 49704 3395166929 1719832568 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K........~+z. +3067 7.178600311 1 ::1 49704 ::1 55733 1719832568 3395167037 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3069 7.178809881 0 ::1 55733 ::1 49704 3395167037 1719832600 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K........~+z. +3071 7.178982258 1 ::1 49704 ::1 55733 1719832600 3395167155 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3073 7.179142475 0 ::1 55733 ::1 49704 3395167155 1719832632 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K........~+z. +3075 7.179309607 1 ::1 49704 ::1 55733 1719832632 3395167273 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3077 7.179474115 0 ::1 55733 ::1 49704 3395167273 1719832664 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K........~+z. +3079 7.179643393 1 ::1 49704 ::1 55733 1719832664 3395167403 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3081 7.179831266 0 ::1 55733 ::1 49704 3395167403 1719832696 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K........~+z. +3083 7.180013180 1 ::1 49704 ::1 55733 1719832696 3395167507 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3085 7.180177689 0 ::1 55733 ::1 49704 3395167507 1719832728 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K........~+z. +3087 7.180349112 1 ::1 49704 ::1 55733 1719832728 3395167625 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3089 7.180505991 0 ::1 55733 ::1 49704 3395167625 1719832760 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K........~+z. +3091 7.180673361 1 ::1 49704 ::1 55733 1719832760 3395167741 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3093 7.180857420 0 ::1 55733 ::1 49704 3395167741 1719832792 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K........~+z. +3095 7.181024790 1 ::1 49704 ::1 55733 1719832792 3395167855 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3097 7.181574821 0 ::1 55733 ::1 49704 3395167855 1719832824 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K........~+z. +3099 7.181744576 1 ::1 49704 ::1 55733 1719832824 3395167983 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3101 7.182032108 0 ::1 55733 ::1 49704 3395167983 1719832856 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K........~+z. +3103 7.182202578 1 ::1 49704 ::1 55733 1719832856 3395168103 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3105 7.182397127 0 ::1 55733 ::1 49704 3395168103 1719832888 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K........~+z. +3107 7.182568073 1 ::1 49704 ::1 55733 1719832888 3395168223 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3109 7.182830811 0 ::1 55733 ::1 49704 3395168223 1719832920 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K........~+z. +3111 7.183292866 1 ::1 49704 ::1 55733 1719832920 3395168345 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3113 7.183488846 0 ::1 55733 ::1 49704 3395168345 1719832952 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K........~+z. +3115 7.183913469 1 ::1 49704 ::1 55733 1719832952 3395168479 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3117 7.184146881 0 ::1 55733 ::1 49704 3395168479 1719832984 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K........~+z. +3119 7.184330225 1 ::1 49704 ::1 55733 1719832984 3395168611 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3121 7.184558392 0 ::1 55733 ::1 49704 3395168611 1719833016 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K........~+z. +3123 7.184764862 1 ::1 49704 ::1 55733 1719833016 3395168741 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3125 7.185030222 0 ::1 55733 ::1 49704 3395168741 1719833048 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K........~+z. +3127 7.185218573 1 ::1 49704 ::1 55733 1719833048 3395168879 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3132 7.185462475 0 ::1 55733 ::1 49704 3395168879 1719833080 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K........~+z. +3136 7.185651064 1 ::1 49704 ::1 55733 1719833080 3395169023 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3139 7.185933113 0 ::1 55733 ::1 49704 3395169023 1719833112 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K........~+z. +3141 7.186091185 1 ::1 49704 ::1 55733 1719833112 3395169167 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3143 7.186285257 0 ::1 55733 ::1 49704 3395169167 1719833144 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K........~+z. +3147 7.186531782 1 ::1 49704 ::1 55733 1719833144 3395169283 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3151 7.186789274 0 ::1 55733 ::1 49704 3395169283 1719833176 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K........~+z. +3155 7.186977863 1 ::1 49704 ::1 55733 1719833176 3395169413 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3157 7.187192678 0 ::1 55733 ::1 49704 3395169413 1719833208 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K........~+z. +3159 7.187361002 1 ::1 49704 ::1 55733 1719833208 3395169551 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3163 7.187632799 0 ::1 55733 ::1 49704 3395169551 1719833240 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........~+z. +3167 7.187819004 1 ::1 49704 ::1 55733 1719833240 3395169681 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3171 7.188051462 0 ::1 55733 ::1 49704 3395169681 1719833272 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........~+z. +3175 7.188230038 1 ::1 49704 ::1 55733 1719833272 3395169803 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3177 7.188487530 0 ::1 55733 ::1 49704 3395169803 1719833304 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........~+z. +3179 7.188664436 1 ::1 49704 ::1 55733 1719833304 3395169925 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3181 7.188933134 0 ::1 55733 ::1 49704 3395169925 1719833336 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........~+z. +3183 7.189109564 1 ::1 49704 ::1 55733 1719833336 3395170059 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3185 7.189352751 0 ::1 55733 ::1 49704 3395170059 1719833368 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........~+z. +3187 7.189528942 1 ::1 49704 ::1 55733 1719833368 3395170187 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3189 7.189763784 0 ::1 55733 ::1 49704 3395170187 1719833400 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........~+z. +3191 7.189976454 1 ::1 49704 ::1 55733 1719833400 3395170311 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3194 7.225220203 0 ::1 55733 ::1 49704 3395170311 1719833432 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K........~+z. +3197 7.225520372 1 ::1 49704 ::1 55733 1719833432 3395170827 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3211 7.261586189 0 ::1 55733 ::1 49704 3395170827 1719833460 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3213 7.261870623 1 ::1 49704 ::1 55733 1719833460 3395170867 44 05000203100000002c000000860000001400000000000000000000002788b9b7 ........,...................'....*.G...#"... +3215 7.262094975 0 ::1 55733 ::1 49704 3395170867 1719833504 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........'... +3217 7.263987780 1 ::1 49704 ::1 55733 1719833504 3395170979 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3219 7.264165878 0 ::1 55733 ::1 49704 3395170979 1719833532 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........'... +3221 7.264341831 1 ::1 49704 ::1 55733 1719833532 3395171039 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3223 7.264601231 0 ::1 55733 ::1 49704 3395171039 1719833624 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'... +3225 7.264827967 1 ::1 49704 ::1 55733 1719833624 3395171175 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3227 7.264997959 0 ::1 55733 ::1 49704 3395171175 1719833656 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'... +3229 7.265165091 1 ::1 49704 ::1 55733 1719833656 3395171315 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3231 7.265329361 0 ::1 55733 ::1 49704 3395171315 1719833688 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........'... +3233 7.265494585 1 ::1 49704 ::1 55733 1719833688 3395171449 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3235 7.265656471 0 ::1 55733 ::1 49704 3395171449 1719833720 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'... +3237 7.265843630 1 ::1 49704 ::1 55733 1719833720 3395171585 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3239 7.266005516 0 ::1 55733 ::1 49704 3395171585 1719833752 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3241 7.266169310 1 ::1 49704 ::1 55733 1719833752 3395171731 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3243 7.266330481 0 ::1 55733 ::1 49704 3395171731 1719833784 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3245 7.266524792 1 ::1 49704 ::1 55733 1719833784 3395171877 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3247 7.266692162 0 ::1 55733 ::1 49704 3395171877 1719833816 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........'... +3249 7.266887188 1 ::1 49704 ::1 55733 1719833816 3395172035 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3251 7.267051935 0 ::1 55733 ::1 49704 3395172035 1719833848 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........'... +3253 7.267220020 1 ::1 49704 ::1 55733 1719833848 3395172167 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3255 7.267383099 0 ::1 55733 ::1 49704 3395172167 1719833880 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3257 7.267547369 1 ::1 49704 ::1 55733 1719833880 3395172313 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3259 7.267709017 0 ::1 55733 ::1 49704 3395172313 1719833912 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'... +3261 7.267899275 1 ::1 49704 ::1 55733 1719833912 3395172457 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3263 7.268059492 0 ::1 55733 ::1 49704 3395172457 1719833944 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........'... +3265 7.268222094 1 ::1 49704 ::1 55733 1719833944 3395172599 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3267 7.268507957 0 ::1 55733 ::1 49704 3395172599 1719833976 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........'... +3269 7.268683195 1 ::1 49704 ::1 55733 1719833976 3395172759 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3271 7.268888235 0 ::1 55733 ::1 49704 3395172759 1719834008 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........'... +3273 7.269049168 1 ::1 49704 ::1 55733 1719834008 3395172915 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3275 7.269371986 0 ::1 55733 ::1 49704 3395172915 1719834040 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'... +3277 7.269544363 1 ::1 49704 ::1 55733 1719834040 3395173069 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3279 7.269722462 0 ::1 55733 ::1 49704 3395173069 1719834072 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3281 7.269913912 1 ::1 49704 ::1 55733 1719834072 3395173215 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3283 7.270084620 0 ::1 55733 ::1 49704 3395173215 1719834104 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'... +3285 7.270247221 1 ::1 49704 ::1 55733 1719834104 3395173369 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3287 7.270417213 0 ::1 55733 ::1 49704 3395173369 1719834136 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........'... +3289 7.270575523 1 ::1 49704 ::1 55733 1719834136 3395173519 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3291 7.270740271 0 ::1 55733 ::1 49704 3395173519 1719834168 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........'... +3293 7.270902157 1 ::1 49704 ::1 55733 1719834168 3395173671 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3295 7.271105528 0 ::1 55733 ::1 49704 3395173671 1719834200 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'... +3297 7.271270275 1 ::1 49704 ::1 55733 1719834200 3395173811 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3299 7.271439314 0 ::1 55733 ::1 49704 3395173811 1719834232 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........'... +3301 7.271598577 1 ::1 49704 ::1 55733 1719834232 3395173959 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3303 7.271763086 0 ::1 55733 ::1 49704 3395173959 1719834264 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........'... +3305 7.271924973 1 ::1 49704 ::1 55733 1719834264 3395174121 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3307 7.272093058 0 ::1 55733 ::1 49704 3395174121 1719834296 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........'... +3309 7.272253275 1 ::1 49704 ::1 55733 1719834296 3395174293 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3311 7.272420168 0 ::1 55733 ::1 49704 3395174293 1719834328 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'... +3313 7.272579670 1 ::1 49704 ::1 55733 1719834328 3395174437 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3321 7.281282425 0 ::1 55733 ::1 49704 3395174437 1719834360 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3323 7.281512022 1 ::1 49704 ::1 55733 1719834360 3395174477 44 05000203100000002c000000a00000001400000000000000000000003272a8f0 ........,...................2r.../+B..q..... +3325 7.281713963 0 ::1 55733 ::1 49704 3395174477 1719834404 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........2r.. +3327 7.283260584 1 ::1 49704 ::1 55733 1719834404 3395174605 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3329 7.283432007 0 ::1 55733 ::1 49704 3395174605 1719834432 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........2r.. +3331 7.283600092 1 ::1 49704 ::1 55733 1719834432 3395174665 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3333 7.284011364 0 ::1 55733 ::1 49704 3395174665 1719834524 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........2r.. +3335 7.284247398 1 ::1 49704 ::1 55733 1719834524 3395174817 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3337 7.284445763 0 ::1 55733 ::1 49704 3395174817 1719834556 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........2r.. +3339 7.284664869 1 ::1 49704 ::1 55733 1719834556 3395174973 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3341 7.284895897 0 ::1 55733 ::1 49704 3395174973 1719834588 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........2r.. +3343 7.285075426 1 ::1 49704 ::1 55733 1719834588 3395175123 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3345 7.285304546 0 ::1 55733 ::1 49704 3395175123 1719834620 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........2r.. +3347 7.285509586 1 ::1 49704 ::1 55733 1719834620 3395175275 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3349 7.285689354 0 ::1 55733 ::1 49704 3395175275 1719834652 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........2r.. +3351 7.285886049 1 ::1 49704 ::1 55733 1719834652 3395175437 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3353 7.286103487 0 ::1 55733 ::1 49704 3395175437 1719834684 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........2r.. +3355 7.286280155 1 ::1 49704 ::1 55733 1719834684 3395175599 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3357 7.286447048 0 ::1 55733 ::1 49704 3395175599 1719834716 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........2r.. +3359 7.286660433 1 ::1 49704 ::1 55733 1719834716 3395175773 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3361 7.286850691 0 ::1 55733 ::1 49704 3395175773 1719834748 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........2r.. +3363 7.287010193 1 ::1 49704 ::1 55733 1719834748 3395175921 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3365 7.287228107 0 ::1 55733 ::1 49704 3395175921 1719834780 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........2r.. +3367 7.287419796 1 ::1 49704 ::1 55733 1719834780 3395176083 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3369 7.287580013 0 ::1 55733 ::1 49704 3395176083 1719834812 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........2r.. +3371 7.287751675 1 ::1 49704 ::1 55733 1719834812 3395176243 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3373 7.288002253 0 ::1 55733 ::1 49704 3395176243 1719834844 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........2r.. +3375 7.288149834 1 ::1 49704 ::1 55733 1719834844 3395176401 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3377 7.288383484 0 ::1 55733 ::1 49704 3395176401 1719834876 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........2r.. +3379 7.288558722 1 ::1 49704 ::1 55733 1719834876 3395176571 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3381 7.288736582 0 ::1 55733 ::1 49704 3395176571 1719834908 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........2r.. +3383 7.288951874 1 ::1 49704 ::1 55733 1719834908 3395176753 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3401 7.295347452 0 ::1 55733 ::1 49704 3395176753 1719834940 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3403 7.295540333 1 ::1 49704 ::1 55733 1719834940 3395176793 44 05000203100000002c000000b0000000140000000000000000000000ef07d18d ........,..........................M.....Mo. +3405 7.295742273 0 ::1 55733 ::1 49704 3395176793 1719834984 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +3407 7.297264576 1 ::1 49704 ::1 55733 1719834984 3395176889 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3409 7.297436237 0 ::1 55733 ::1 49704 3395176889 1719835012 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +3411 7.297610044 1 ::1 49704 ::1 55733 1719835012 3395176949 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3413 7.297906637 0 ::1 55733 ::1 49704 3395176949 1719835104 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +3415 7.298077583 1 ::1 49704 ::1 55733 1719835104 3395177069 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3417 7.298239708 0 ::1 55733 ::1 49704 3395177069 1719835136 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +3419 7.298405886 1 ::1 49704 ::1 55733 1719835136 3395177193 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3421 7.298563480 0 ::1 55733 ::1 49704 3395177193 1719835168 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +3423 7.298752785 1 ::1 49704 ::1 55733 1719835168 3395177311 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3425 7.298881769 0 ::1 55733 ::1 49704 3395177311 1719835200 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +3427 7.299041510 1 ::1 49704 ::1 55733 1719835200 3395177431 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3429 7.299194098 0 ::1 55733 ::1 49704 3395177431 1719835232 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3431 7.299353361 1 ::1 49704 ::1 55733 1719835232 3395177561 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3433 7.299508095 0 ::1 55733 ::1 49704 3395177561 1719835264 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3435 7.299668074 1 ::1 49704 ::1 55733 1719835264 3395177691 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3437 7.299868345 0 ::1 55733 ::1 49704 3395177691 1719835296 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +3439 7.300096989 1 ::1 49704 ::1 55733 1719835296 3395177833 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3441 7.300266027 0 ::1 55733 ::1 49704 3395177833 1719835328 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +3443 7.300445080 1 ::1 49704 ::1 55733 1719835328 3395177949 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3445 7.300605297 0 ::1 55733 ::1 49704 3395177949 1719835360 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3447 7.300771475 1 ::1 49704 ::1 55733 1719835360 3395178079 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3449 7.300955772 0 ::1 55733 ::1 49704 3395178079 1719835392 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +3451 7.301122189 1 ::1 49704 ::1 55733 1719835392 3395178207 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3453 7.301280260 0 ::1 55733 ::1 49704 3395178207 1719835424 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +3455 7.301445484 1 ::1 49704 ::1 55733 1719835424 3395178333 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3457 7.301642895 0 ::1 55733 ::1 49704 3395178333 1719835456 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +3459 7.301873922 1 ::1 49704 ::1 55733 1719835456 3395178459 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3461 7.302073479 0 ::1 55733 ::1 49704 3395178459 1719835488 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +3463 7.302250862 1 ::1 49704 ::1 55733 1719835488 3395178591 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3465 7.302502155 0 ::1 55733 ::1 49704 3395178591 1719835520 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3468 7.302702665 1 ::1 49704 ::1 55733 1719835520 3395178721 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3470 7.302965641 0 ::1 55733 ::1 49704 3395178721 1719835552 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +3472 7.303139687 1 ::1 49704 ::1 55733 1719835552 3395178859 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3474 7.303334236 0 ::1 55733 ::1 49704 3395178859 1719835584 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +3476 7.303506851 1 ::1 49704 ::1 55733 1719835584 3395178995 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3478 7.303671598 0 ::1 55733 ::1 49704 3395178995 1719835616 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +3480 7.303898335 1 ::1 49704 ::1 55733 1719835616 3395179127 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3482 7.304185629 0 ::1 55733 ::1 49704 3395179127 1719835648 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +3484 7.304378271 1 ::1 49704 ::1 55733 1719835648 3395179269 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3486 7.304600477 0 ::1 55733 ::1 49704 3395179269 1719835680 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K............ +3488 7.304872990 1 ::1 49704 ::1 55733 1719835680 3395179417 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3494 7.344349146 0 ::1 55733 ::1 49704 3395179417 1719835712 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K........~+z. +3496 7.344630003 1 ::1 49704 ::1 55733 1719835712 3395179707 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3585 7.422796965 0 ::1 55733 ::1 49704 3395179707 1719835740 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K........~+z. +3587 7.423092842 1 ::1 49704 ::1 55733 1719835740 3395179913 28 05000203100000001c000000c7000000040000000100000001000000 ............................ diff --git a/captures/014-loopback-subscribe-array-bracketed/nmx-stream-__1_49704-to-__1_55733.bin b/captures/014-loopback-subscribe-array-bracketed/nmx-stream-__1_49704-to-__1_55733.bin new file mode 100644 index 0000000..6035a19 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/nmx-stream-__1_49704-to-__1_55733.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/nmx-stream-__1_55733-to-__1_49704.bin b/captures/014-loopback-subscribe-array-bracketed/nmx-stream-__1_55733-to-__1_49704.bin new file mode 100644 index 0000000..800aea0 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/nmx-stream-__1_55733-to-__1_49704.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/stderr.txt b/captures/014-loopback-subscribe-array-bracketed/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/014-loopback-subscribe-array-bracketed/stdout.txt b/captures/014-loopback-subscribe-array-bracketed/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-conversations.tsv b/captures/014-loopback-subscribe-array-bracketed/tcp-conversations.tsv new file mode 100644 index 0000000..5c2aae0 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-conversations.tsv @@ -0,0 +1,74 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2255 42974 0.000000000 21.340679169 +::1:49704 ::1:55733 400 32726 1.832593203 9.255686045 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55765 2 14170 17.548981428 17.635439873 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55737 2 13997 4.097445011 4.170214653 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55730 2 13978 1.155901194 1.225602388 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 21 8281 4.405579090 9.246757746 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 32 3878 5.114329576 20.233385324 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55743 3 2703 5.757624626 8.402371168 +::1:443 ::1:55741 6 2674 5.381500483 5.391688108 +::1:135 ::1:55732 20 2600 1.829795361 9.127695799 +::1:808 ::1:55780 16 2430 20.852892637 20.864961386 +::1:808 ::1:55779 16 2429 20.700253487 20.711337566 +::1:808 ::1:55781 16 2423 21.001731157 21.013002872 +::1:808 ::1:55772 16 2418 19.182828903 19.196656227 +::1:808 ::1:55771 16 2417 19.016695023 19.028407097 +::1:808 ::1:55773 16 2411 19.357580423 19.372150660 +::1:808 ::1:55778 16 2398 20.531247139 20.542258978 +::1:808 ::1:55782 16 2390 21.168329000 21.179226637 +::1:808 ::1:55766 16 2386 18.850528717 18.871563196 +::1:808 ::1:55774 16 2378 19.519992828 19.534571409 +::1:32571 ::1:55731 4 2196 1.646872044 1.653651714 +::1:443 ::1:55742 6 2054 5.395654678 5.418964148 +::1:808 ::1:55759 16 1990 14.250601530 14.261695147 +::1:808 ::1:55755 16 1985 13.797497511 13.809185505 +::1:808 ::1:55763 16 1980 14.546708107 14.557421446 +::1:808 ::1:55758 16 1975 14.109889984 14.121822596 +::1:808 ::1:55760 16 1969 14.399791479 14.410859585 +::1:808 ::1:55756 16 1964 13.953680038 13.966232777 +::1:808 ::1:55764 16 1941 16.667018175 16.678532600 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55767 3 1941 18.886050463 21.261529922 +::1:80 ::1:55749 6 1821 9.451477528 9.456928253 +::1:80 ::1:55735 6 1820 2.423077583 2.430312634 +::1:80 ::1:55729 6 1793 0.652855873 0.660725117 +::1:80 ::1:55745 6 1793 8.998769283 9.005503654 +::1:80 ::1:55751 6 1793 9.635711193 9.644751072 +::1:80 ::1:55770 6 1793 19.008836508 19.015785694 +::1:80 ::1:55776 6 1793 19.622668505 19.629147053 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 15.623139620 15.623636484 +::1:80 ::1:55740 6 1788 4.307850599 4.314217806 +::1:80 ::1:55762 6 1788 14.487950802 14.494089127 +::1:80 ::1:55754 6 1784 11.488726139 11.495169163 +127.0.0.1:57470 127.0.0.1:57477 104 1368 0.000338316 21.241163731 +127.0.0.1:57608 127.0.0.1:57631 104 1368 0.004238367 21.429375648 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55738 2 1202 4.178703547 4.183607340 +::1:808 ::1:55800 2 1150 9.151192188 9.151685238 +127.0.0.1:57684 127.0.0.1:57745 86 1032 0.000694990 21.227253914 +127.0.0.1:57484 127.0.0.1:57746 86 1032 0.056278229 21.115084410 +127.0.0.1:57485 127.0.0.1:57747 86 1032 0.078865290 21.136882544 +10.100.0.48:1433 10.100.0.48:49792 8 1028 4.773212194 14.780783653 +10.100.0.48:1433 10.100.0.48:49805 12 1002 7.388131142 17.391541719 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55747 6 913 9.223340034 9.248510838 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55746 6 900 9.198767900 9.220492601 +::1:808 ::1:49859 1 499 4.962490320 4.962490320 +::1:80 ::1:55728 2 332 0.643666029 0.648313046 +::1:80 ::1:55734 2 332 2.414712429 2.419148922 +::1:80 ::1:55739 2 332 4.300340891 4.304387808 +::1:80 ::1:55744 2 332 8.991049290 8.995112658 +::1:80 ::1:55748 2 332 9.445918083 9.448917389 +::1:80 ::1:55750 2 332 9.614324570 9.618070602 +::1:80 ::1:55753 2 332 11.481531858 11.484639168 +::1:80 ::1:55761 2 332 14.480429888 14.484385252 +::1:80 ::1:55768 2 332 18.999534369 19.004453421 +::1:80 ::1:55775 2 332 19.615015984 19.618843794 +::1:49704 ::1:49829 2 270 17.351123333 17.351426363 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55752 1 52 9.645806313 9.645806313 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55777 1 52 19.646137953 19.646137953 +127.0.0.1:61590 127.0.0.1:63342 5 30 1.230719090 21.234056473 +127.0.0.1:49787 127.0.0.1:49788 24 24 1.156192303 21.261269331 +10.100.0.48:1433 10.100.0.48:50767 2 2 4.375846624 4.544163704 +10.100.0.48:1433 10.100.0.48:49936 2 2 15.951886177 17.087412834 +10.100.0.48:1433 10.100.0.48:49934 2 2 16.490732908 17.267374754 +10.100.0.48:1433 10.100.0.48:49935 2 2 16.493808746 17.436368942 +10.100.0.48:1433 10.100.0.48:49933 2 2 16.544374228 18.229245186 diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-payload-57415-57433-decoded.tsv b/captures/014-loopback-subscribe-array-bracketed/tcp-payload-57415-57433-decoded.tsv new file mode 100644 index 0000000..597fa36 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-payload-57415-57433-decoded.tsv @@ -0,0 +1,2256 @@ +frame time_relative direction src dst seq payload_len first_i32 second_i32 third_i32 first_u32_hex length_prefixed body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +1 0.000000000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518748 12 26 703231 0 0x0000001a 0 26 703231 0 1a 00 00 00 ff ba 0a 00 00 00 00 00 ............ +3 0.000204802 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518760 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 25755648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +4 0.000271082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850466 12 -2 79860 79877 0xfffffffe 0 -2 79860 79877 fe ff ff ff f4 37 01 00 05 38 01 00 .....7...8.. +10 0.000723600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850478 12 -1 703231 0 0xffffffff 0 -1 703231 0 ff ff ff ff ff ba 0a 00 00 00 00 00 ............ +13 0.001106977 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850490 12 22 694792 0 0x00000016 0 22 694792 0 16 00 00 00 08 9a 0a 00 00 00 00 00 ............ +15 0.001297474 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850502 22 18 2032009 0 0x00000012 1 2032009 0 196609 0 12 00 00 00 89 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +17 0.001737356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518786 12 -1 694792 0 0xffffffff 0 -1 694792 0 ff ff ff ff 08 9a 0a 00 00 00 00 00 ............ +22 0.056278944 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518798 12 -2 79878 79860 0xfffffffe 0 -2 79878 79860 fe ff ff ff 06 38 01 00 f4 37 01 00 .....8...7.. +31 0.102741480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518810 12 26 703232 0 0x0000001a 0 26 703232 0 1a 00 00 00 00 bb 0a 00 00 00 00 00 ............ +33 0.103049278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518822 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 25886720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +35 0.103391647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850524 12 -1 703232 0 0xffffffff 0 -1 703232 0 ff ff ff ff 00 bb 0a 00 00 00 00 00 ............ +37 0.103916168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850536 12 22 694793 0 0x00000016 0 22 694793 0 16 00 00 00 09 9a 0a 00 00 00 00 00 ............ +39 0.104150295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850548 22 18 2032011 0 0x00000012 1 2032011 0 196609 0 12 00 00 00 8b 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +41 0.104442358 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518848 12 -1 694793 0 0xffffffff 0 -1 694793 0 ff ff ff ff 09 9a 0a 00 00 00 00 00 ............ +43 0.123998404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518860 12 34 703233 0 0x00000022 0 34 703233 0 22 00 00 00 01 bb 0a 00 00 00 00 00 """..........." +45 0.124159336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518872 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -8192000 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 83 ff 01 00 00 00 00 00 61 12 0e c3 9d 01 00 00 .....!...o3...............a....... +47 0.124284029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518906 12 67 703234 0 0x00000043 0 67 703234 0 43 00 00 00 02 bb 0a 00 00 00 00 00 C........... +49 0.124389172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518918 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 83 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e4 a8 f7 77 8d ?.....3...|8...................=B.....&......... +51 0.124529600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850570 12 -1 703233 0 0xffffffff 0 -1 703233 0 ff ff ff ff 01 bb 0a 00 00 00 00 00 ............ +53 0.124772072 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850582 12 -1 703234 0 0xffffffff 0 -1 703234 0 ff ff ff ff 02 bb 0a 00 00 00 00 00 ............ +55 0.125623703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850594 12 52 694794 0 0x00000034 0 52 694794 0 34 00 00 00 0a 9a 0a 00 00 00 00 00 4........... +57 0.125775099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850606 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 83 ff 01 00 00 00 00 00 00 00 86 8b 41 49 4a 01 00 00 "0...Dk.................L."".([.................AI" +59 0.126080990 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518985 12 -1 694794 0 0xffffffff 0 -1 694794 0 ff ff ff ff 0a 9a 0a 00 00 00 00 00 ............ +61 0.127032995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331518997 12 30 703235 0 0x0000001e 0 30 703235 0 1e 00 00 00 03 bb 0a 00 00 00 00 00 ............ +63 0.127158165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519009 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 26017792 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8d 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +65 0.127496004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850658 12 -1 703235 0 0xffffffff 0 -1 703235 0 ff ff ff ff 03 bb 0a 00 00 00 00 00 ............ +67 0.127942562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850670 12 26 694795 0 0x0000001a 0 26 694795 0 1a 00 00 00 0b 9a 0a 00 00 00 00 00 ............ +69 0.128106356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850682 26 22 2032013 0 0x00000016 1 2032013 0 196609 0 16 00 00 00 8d 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +71 0.128317356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519039 12 -1 694795 0 0xffffffff 0 -1 694795 0 ff ff ff ff 0b 9a 0a 00 00 00 00 00 ............ +76 0.205768108 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519051 12 26 703236 0 0x0000001a 0 26 703236 0 1a 00 00 00 04 bb 0a 00 00 00 00 00 ............ +78 0.205999136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519063 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 26148864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +80 0.206380367 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850708 12 -1 703236 0 0xffffffff 0 -1 703236 0 ff ff ff ff 04 bb 0a 00 00 00 00 00 ............ +82 0.207089424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850720 12 22 694796 0 0x00000016 0 22 694796 0 16 00 00 00 0c 9a 0a 00 00 00 00 00 ............ +84 0.207308054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850732 22 18 2032015 0 0x00000012 1 2032015 0 196609 0 12 00 00 00 8f 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +86 0.207585096 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519089 12 -1 694796 0 0xffffffff 0 -1 694796 0 ff ff ff ff 0c 9a 0a 00 00 00 00 00 ............ +90 0.309690714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519101 12 26 703237 0 0x0000001a 0 26 703237 0 1a 00 00 00 05 bb 0a 00 00 00 00 00 ............ +92 0.309887886 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519113 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 26279936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +94 0.310305595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850754 12 -1 703237 0 0xffffffff 0 -1 703237 0 ff ff ff ff 05 bb 0a 00 00 00 00 00 ............ +96 0.310801983 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850766 12 22 694797 0 0x00000016 0 22 694797 0 16 00 00 00 0d 9a 0a 00 00 00 00 00 ............ +98 0.310976982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850778 22 18 2032017 0 0x00000012 1 2032017 0 196609 0 12 00 00 00 91 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +100 0.311137199 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519139 12 -1 694797 0 0xffffffff 0 -1 694797 0 ff ff ff ff 0d 9a 0a 00 00 00 00 00 ............ +104 0.412543535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519151 12 26 703238 0 0x0000001a 0 26 703238 0 1a 00 00 00 06 bb 0a 00 00 00 00 00 ............ +106 0.412753344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519163 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 26411008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +108 0.413258791 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850800 12 -1 703238 0 0xffffffff 0 -1 703238 0 ff ff ff ff 06 bb 0a 00 00 00 00 00 ............ +110 0.413802385 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850812 12 22 694798 0 0x00000016 0 22 694798 0 16 00 00 00 0e 9a 0a 00 00 00 00 00 ............ +112 0.414075136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850824 22 18 2032019 0 0x00000012 1 2032019 0 196609 0 12 00 00 00 93 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +114 0.414361954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519189 12 -1 694798 0 0xffffffff 0 -1 694798 0 ff ff ff ff 0e 9a 0a 00 00 00 00 00 ............ +116 0.429987192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519201 12 34 703239 0 0x00000022 0 34 703239 0 22 00 00 00 07 bb 0a 00 00 00 00 00 """..........." +118 0.430153608 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519213 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -8126464 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 84 ff 01 00 00 00 00 00 93 13 0e c3 9d 01 00 00 .....!...o3....................... +120 0.430257559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519247 12 67 703240 0 0x00000043 0 67 703240 0 43 00 00 00 08 bb 0a 00 00 00 00 00 C........... +122 0.430342197 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519259 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 84 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c a4 43 8a 8d ?.....3...|8...................=B.....&......... +123 0.430431366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850846 12 -1 703239 0 0xffffffff 0 -1 703239 0 ff ff ff ff 07 bb 0a 00 00 00 00 00 ............ +125 0.430614710 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850858 12 -1 703240 0 0xffffffff 0 -1 703240 0 ff ff ff ff 08 bb 0a 00 00 00 00 00 ............ +127 0.431855917 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850870 12 52 694799 0 0x00000034 0 52 694799 0 34 00 00 00 0f 9a 0a 00 00 00 00 00 4........... +129 0.432088852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850882 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 84 ff 01 00 00 00 00 00 00 00 1d 46 70 49 4a 01 00 00 "0...Dk.................L."".([................FpI" +131 0.432354689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519326 12 -1 694799 0 0xffffffff 0 -1 694799 0 ff ff ff ff 0f 9a 0a 00 00 00 00 00 ............ +133 0.433228731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519338 12 30 703241 0 0x0000001e 0 30 703241 0 1e 00 00 00 09 bb 0a 00 00 00 00 00 ............ +135 0.433388233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519350 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 26542080 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 95 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +137 0.433684826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850934 12 -1 703241 0 0xffffffff 0 -1 703241 0 ff ff ff ff 09 bb 0a 00 00 00 00 00 ............ +139 0.434038639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850946 12 26 694800 0 0x0000001a 0 26 694800 0 1a 00 00 00 10 9a 0a 00 00 00 00 00 ............ +141 0.434281588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850958 26 22 2032021 0 0x00000016 1 2032021 0 196609 0 16 00 00 00 95 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +143 0.434596777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519380 12 -1 694800 0 0xffffffff 0 -1 694800 0 ff ff ff ff 10 9a 0a 00 00 00 00 00 ............ +145 0.501639605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850984 12 -2 79861 79878 0xfffffffe 0 -2 79861 79878 fe ff ff ff f5 37 01 00 06 38 01 00 .....7...8.. +153 0.517818689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519392 12 26 703242 0 0x0000001a 0 26 703242 0 1a 00 00 00 0a bb 0a 00 00 00 00 00 ............ +155 0.518125772 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519404 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 26673152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +157 0.518609285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375850996 12 -1 703242 0 0xffffffff 0 -1 703242 0 ff ff ff ff 0a bb 0a 00 00 00 00 00 ............ +159 0.519209862 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851008 12 22 694801 0 0x00000016 0 22 694801 0 16 00 00 00 11 9a 0a 00 00 00 00 00 ............ +161 0.519432545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851020 22 18 2032023 0 0x00000012 1 2032023 0 196609 0 12 00 00 00 97 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +163 0.519840479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519430 12 -1 694801 0 0xffffffff 0 -1 694801 0 ff ff ff ff 11 9a 0a 00 00 00 00 00 ............ +166 0.557617188 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519442 12 -2 79879 79861 0xfffffffe 0 -2 79879 79861 fe ff ff ff 07 38 01 00 f5 37 01 00 .....8...7.. +175 0.621546984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519454 12 26 703243 0 0x0000001a 0 26 703243 0 1a 00 00 00 0b bb 0a 00 00 00 00 00 ............ +177 0.621851444 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519466 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 26804224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +179 0.622211218 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851042 12 -1 703243 0 0xffffffff 0 -1 703243 0 ff ff ff ff 0b bb 0a 00 00 00 00 00 ............ +181 0.624629736 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851054 12 22 694802 0 0x00000016 0 22 694802 0 16 00 00 00 12 9a 0a 00 00 00 00 00 ............ +183 0.624902010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851066 22 18 2032025 0 0x00000012 1 2032025 0 196609 0 12 00 00 00 99 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +185 0.625295639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519492 12 -1 694802 0 0xffffffff 0 -1 694802 0 ff ff ff ff 12 9a 0a 00 00 00 00 00 ............ +221 0.727348089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519504 12 26 703244 0 0x0000001a 0 26 703244 0 1a 00 00 00 0c bb 0a 00 00 00 00 00 ............ +223 0.727540016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519516 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 26935296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +225 0.728018045 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851088 12 -1 703244 0 0xffffffff 0 -1 703244 0 ff ff ff ff 0c bb 0a 00 00 00 00 00 ............ +227 0.728573799 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851100 12 22 694803 0 0x00000016 0 22 694803 0 16 00 00 00 13 9a 0a 00 00 00 00 00 ............ +229 0.728834629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851112 22 18 2032027 0 0x00000012 1 2032027 0 196609 0 12 00 00 00 9b 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +231 0.729160786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519542 12 -1 694803 0 0xffffffff 0 -1 694803 0 ff ff ff ff 13 9a 0a 00 00 00 00 00 ............ +233 0.734699249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519554 12 34 703245 0 0x00000022 0 34 703245 0 22 00 00 00 0d bb 0a 00 00 00 00 00 """..........." +235 0.734871626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519566 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -8060928 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 85 ff 01 00 00 00 00 00 c4 14 0e c3 9d 01 00 00 .....!...o3....................... +237 0.735013008 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519600 12 67 703246 0 0x00000043 0 67 703246 0 43 00 00 00 0e bb 0a 00 00 00 00 00 C........... +239 0.735101461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519612 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 85 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 50 4e 6c 9c 8d ?.....3...|8...................=B.....&......... +241 0.735251665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851134 12 -1 703245 0 0xffffffff 0 -1 703245 0 ff ff ff ff 0d bb 0a 00 00 00 00 00 ............ +243 0.735477686 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851146 12 -1 703246 0 0xffffffff 0 -1 703246 0 ff ff ff ff 0e bb 0a 00 00 00 00 00 ............ +245 0.736483335 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851158 12 52 694804 0 0x00000034 0 52 694804 0 34 00 00 00 14 9a 0a 00 00 00 00 00 4........... +247 0.736724377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851170 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 85 ff 01 00 00 00 00 00 00 00 63 c0 9e 49 4a 01 00 00 "0...Dk.................L."".([...............c..I" +249 0.737763166 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519679 12 -1 694804 0 0xffffffff 0 -1 694804 0 ff ff ff ff 14 9a 0a 00 00 00 00 00 ............ +251 0.738430977 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519691 12 30 703247 0 0x0000001e 0 30 703247 0 1e 00 00 00 0f bb 0a 00 00 00 00 00 ............ +253 0.738635778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519703 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 27066368 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9d 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +255 0.738903284 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851222 12 -1 703247 0 0xffffffff 0 -1 703247 0 ff ff ff ff 0f bb 0a 00 00 00 00 00 ............ +257 0.739291906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851234 12 26 694805 0 0x0000001a 0 26 694805 0 1a 00 00 00 15 9a 0a 00 00 00 00 00 ............ +259 0.739433050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851246 26 22 2032029 0 0x00000016 1 2032029 0 196609 0 16 00 00 00 9d 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +261 0.739736557 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519733 12 -1 694805 0 0xffffffff 0 -1 694805 0 ff ff ff ff 15 9a 0a 00 00 00 00 00 ............ +263 0.830963373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519745 12 26 703248 0 0x0000001a 0 26 703248 0 1a 00 00 00 10 bb 0a 00 00 00 00 00 ............ +265 0.831229448 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519757 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 27197440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +267 0.831725836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851272 12 -1 703248 0 0xffffffff 0 -1 703248 0 ff ff ff ff 10 bb 0a 00 00 00 00 00 ............ +269 0.832339764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851284 12 22 694806 0 0x00000016 0 22 694806 0 16 00 00 00 16 9a 0a 00 00 00 00 00 ............ +271 0.832492352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851296 22 18 2032031 0 0x00000012 1 2032031 0 196609 0 12 00 00 00 9f 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +273 0.832751989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519783 12 -1 694806 0 0xffffffff 0 -1 694806 0 ff ff ff ff 16 9a 0a 00 00 00 00 00 ............ +277 0.935188293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519795 12 26 703249 0 0x0000001a 0 26 703249 0 1a 00 00 00 11 bb 0a 00 00 00 00 00 ............ +279 0.935415983 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519807 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 27328512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +281 0.935736656 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851318 12 -1 703249 0 0xffffffff 0 -1 703249 0 ff ff ff ff 11 bb 0a 00 00 00 00 00 ............ +283 0.936384916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851330 12 22 694807 0 0x00000016 0 22 694807 0 16 00 00 00 17 9a 0a 00 00 00 00 00 ............ +285 0.936555862 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851342 22 18 2032033 0 0x00000012 1 2032033 0 196609 0 12 00 00 00 a1 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +287 0.936822176 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519833 12 -1 694807 0 0xffffffff 0 -1 694807 0 ff ff ff ff 17 9a 0a 00 00 00 00 00 ............ +289 1.004003525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851364 12 -2 79862 79879 0xfffffffe 0 -2 79862 79879 fe ff ff ff f6 37 01 00 07 38 01 00 .....7...8.. +297 1.038048267 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519845 12 26 703250 0 0x0000001a 0 26 703250 0 1a 00 00 00 12 bb 0a 00 00 00 00 00 ............ +299 1.038243771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519857 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 27459584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +301 1.038732052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851376 12 -1 703250 0 0xffffffff 0 -1 703250 0 ff ff ff ff 12 bb 0a 00 00 00 00 00 ............ +303 1.039181232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851388 12 22 694808 0 0x00000016 0 22 694808 0 16 00 00 00 18 9a 0a 00 00 00 00 00 ............ +305 1.039386272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851400 22 18 2032035 0 0x00000012 1 2032035 0 196609 0 12 00 00 00 a3 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +307 1.039831877 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519883 12 -1 694808 0 0xffffffff 0 -1 694808 0 ff ff ff ff 18 9a 0a 00 00 00 00 00 ............ +309 1.040170670 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519895 12 34 703251 0 0x00000022 0 34 703251 0 22 00 00 00 13 bb 0a 00 00 00 00 00 """..........." +311 1.040360689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519907 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -7995392 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 86 ff 01 00 00 00 00 00 f5 15 0e c3 9d 01 00 00 .....!...o3....................... +313 1.040484905 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519941 12 67 703252 0 0x00000043 0 67 703252 0 43 00 00 00 14 bb 0a 00 00 00 00 00 C........... +315 1.040569305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331519953 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 86 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 6f 96 ae 8d ?.....3...|8...................=B.....&......... +317 1.040725231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851422 12 -1 703251 0 0xffffffff 0 -1 703251 0 ff ff ff ff 13 bb 0a 00 00 00 00 00 ............ +319 1.040969610 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851434 12 -1 703252 0 0xffffffff 0 -1 703252 0 ff ff ff ff 14 bb 0a 00 00 00 00 00 ............ +321 1.042226076 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851446 12 52 694809 0 0x00000034 0 52 694809 0 34 00 00 00 19 9a 0a 00 00 00 00 00 4........... +323 1.042448997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851458 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 86 ff 01 00 00 00 00 00 00 00 e8 66 cd 49 4a 01 00 00 "0...Dk.................L."".([................f.I" +325 1.042739868 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520020 12 -1 694809 0 0xffffffff 0 -1 694809 0 ff ff ff ff 19 9a 0a 00 00 00 00 00 ............ +327 1.043665648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520032 12 30 703253 0 0x0000001e 0 30 703253 0 1e 00 00 00 15 bb 0a 00 00 00 00 00 ............ +329 1.043807983 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520044 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 27590656 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a5 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +331 1.044101715 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851510 12 -1 703253 0 0xffffffff 0 -1 703253 0 ff ff ff ff 15 bb 0a 00 00 00 00 00 ............ +333 1.044611692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851522 12 26 694810 0 0x0000001a 0 26 694810 0 1a 00 00 00 1a 9a 0a 00 00 00 00 00 ............ +335 1.044818401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851534 26 22 2032037 0 0x00000016 1 2032037 0 196609 0 16 00 00 00 a5 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +337 1.045134783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520074 12 -1 694810 0 0xffffffff 0 -1 694810 0 ff ff ff ff 1a 9a 0a 00 00 00 00 00 ............ +340 1.059837818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520086 12 -2 79880 79862 0xfffffffe 0 -2 79880 79862 fe ff ff ff 08 38 01 00 f6 37 01 00 .....8...7.. +349 1.142136812 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520098 12 26 703254 0 0x0000001a 0 26 703254 0 1a 00 00 00 16 bb 0a 00 00 00 00 00 ............ +351 1.142388344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520110 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 27721728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +353 1.142786264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851560 12 -1 703254 0 0xffffffff 0 -1 703254 0 ff ff ff ff 16 bb 0a 00 00 00 00 00 ............ +355 1.143617392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851572 12 22 694811 0 0x00000016 0 22 694811 0 16 00 00 00 1b 9a 0a 00 00 00 00 00 ............ +357 1.143842697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851584 22 18 2032039 0 0x00000012 1 2032039 0 196609 0 12 00 00 00 a7 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +359 1.144146204 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520136 12 -1 694811 0 0xffffffff 0 -1 694811 0 ff ff ff ff 1b 9a 0a 00 00 00 00 00 ............ +384 1.246142864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520148 12 26 703255 0 0x0000001a 0 26 703255 0 1a 00 00 00 17 bb 0a 00 00 00 00 00 ............ +386 1.246474266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520160 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 27852800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +388 1.246900082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851606 12 -1 703255 0 0xffffffff 0 -1 703255 0 ff ff ff ff 17 bb 0a 00 00 00 00 00 ............ +390 1.247588396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851618 12 22 694812 0 0x00000016 0 22 694812 0 16 00 00 00 1c 9a 0a 00 00 00 00 00 ............ +392 1.247752190 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851630 22 18 2032041 0 0x00000012 1 2032041 0 196609 0 12 00 00 00 a9 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +394 1.247969866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520186 12 -1 694812 0 0xffffffff 0 -1 694812 0 ff ff ff ff 1c 9a 0a 00 00 00 00 00 ............ +396 1.346567631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520198 12 101 703256 0 0x00000065 0 101 703256 0 65 00 00 00 18 bb 0a 00 00 00 00 00 e........... +398 1.346757889 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520210 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 87 ff 01 00 00 00 00 00 27 17 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 87 ff 01 00 00 00 00 .....!...o3...............'.......?.....3...|8.. +400 1.347187996 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851652 12 -1 703256 0 0xffffffff 0 -1 703256 0 ff ff ff ff 18 bb 0a 00 00 00 00 00 ............ +402 1.348354340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851664 12 52 694813 0 0x00000034 0 52 694813 0 34 00 00 00 1d 9a 0a 00 00 00 00 00 4........... +404 1.348550081 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851676 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 87 ff 01 00 00 00 00 00 00 00 d1 18 fc 49 4a 01 00 00 "0...Dk.................L."".([..................I" +406 1.348823071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520311 12 -1 694813 0 0xffffffff 0 -1 694813 0 ff ff ff ff 1d 9a 0a 00 00 00 00 00 ............ +408 1.349054575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520323 12 26 703257 0 0x0000001a 0 26 703257 0 1a 00 00 00 19 bb 0a 00 00 00 00 00 ............ +410 1.349259138 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520335 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 27983872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +412 1.349694252 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851728 12 -1 703257 0 0xffffffff 0 -1 703257 0 ff ff ff ff 19 bb 0a 00 00 00 00 00 ............ +414 1.349862099 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520361 12 30 703258 0 0x0000001e 0 30 703258 0 1e 00 00 00 1a bb 0a 00 00 00 00 00 ............ +416 1.350073576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520373 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 28114944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ad 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +417 1.350206852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851740 34 22 694814 0 0x00000016 0 22 694814 0 18 16 00 00 00 1e 9a 0a 00 00 00 00 00 12 00 00 00 ab 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................................. +419 1.350610495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520403 12 -1 694814 0 0xffffffff 0 -1 694814 0 ff ff ff ff 1e 9a 0a 00 00 00 00 00 ............ +420 1.350635052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851774 12 -1 703258 0 0xffffffff 0 -1 703258 0 ff ff ff ff 1a bb 0a 00 00 00 00 00 ............ +423 1.351093769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851786 12 26 694815 0 0x0000001a 0 26 694815 0 1a 00 00 00 1f 9a 0a 00 00 00 00 00 ............ +425 1.351255655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851798 26 22 2032045 0 0x00000016 1 2032045 0 196609 0 16 00 00 00 ad 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +427 1.351539373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520415 12 -1 694815 0 0xffffffff 0 -1 694815 0 ff ff ff ff 1f 9a 0a 00 00 00 00 00 ............ +431 1.453394413 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520427 12 26 703259 0 0x0000001a 0 26 703259 0 1a 00 00 00 1b bb 0a 00 00 00 00 00 ............ +433 1.453636885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520439 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 28246016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +435 1.454126120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851824 12 -1 703259 0 0xffffffff 0 -1 703259 0 ff ff ff ff 1b bb 0a 00 00 00 00 00 ............ +437 1.454673290 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851836 12 22 694816 0 0x00000016 0 22 694816 0 16 00 00 00 20 9a 0a 00 00 00 00 00 .... ....... +439 1.454862356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851848 22 18 2032047 0 0x00000012 1 2032047 0 196609 0 12 00 00 00 af 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +441 1.455205679 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520465 12 -1 694816 0 0xffffffff 0 -1 694816 0 ff ff ff ff 20 9a 0a 00 00 00 00 00 .... ....... +444 1.504696369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851870 12 -2 79863 79880 0xfffffffe 0 -2 79863 79880 fe ff ff ff f7 37 01 00 08 38 01 00 .....7...8.. +451 1.556973457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520477 12 26 703260 0 0x0000001a 0 26 703260 0 1a 00 00 00 1c bb 0a 00 00 00 00 00 ............ +453 1.557387114 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520489 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 28377088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +455 1.557774544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851882 12 -1 703260 0 0xffffffff 0 -1 703260 0 ff ff ff ff 1c bb 0a 00 00 00 00 00 ............ +457 1.558233500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851894 12 22 694817 0 0x00000016 0 22 694817 0 16 00 00 00 21 9a 0a 00 00 00 00 00 ....!....... +459 1.558633566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851906 22 18 2032049 0 0x00000012 1 2032049 0 196609 0 12 00 00 00 b1 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +461 1.559029579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520515 12 -1 694817 0 0xffffffff 0 -1 694817 0 ff ff ff ff 21 9a 0a 00 00 00 00 00 ....!....... +463 1.560479164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520527 12 -2 79881 79863 0xfffffffe 0 -2 79881 79863 fe ff ff ff 09 38 01 00 f7 37 01 00 .....8...7.. +482 1.651059389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520539 12 101 703261 0 0x00000065 0 101 703261 0 65 00 00 00 1d bb 0a 00 00 00 00 00 e........... +484 1.651257515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520551 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 88 ff 01 00 00 00 00 00 58 18 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 88 ff 01 00 00 00 00 .....!...o3...............X.......?.....3...|8.. +486 1.651665926 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851928 12 -1 703261 0 0xffffffff 0 -1 703261 0 ff ff ff ff 1d bb 0a 00 00 00 00 00 ............ +488 1.652653933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851940 12 52 694818 0 0x00000034 0 52 694818 0 34 00 00 00 22 9a 0a 00 00 00 00 00 "4...""......." +490 1.652855873 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375851952 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 88 ff 01 00 00 00 00 00 00 00 cd 8a 2a 4a 4a 01 00 00 "0...Dk.................L."".([.................*J" +492 1.653181076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520652 12 -1 694818 0 0xffffffff 0 -1 694818 0 ff ff ff ff 22 9a 0a 00 00 00 00 00 "....""......." +496 1.653933525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520664 12 30 703262 0 0x0000001e 0 30 703262 0 1e 00 00 00 1e bb 0a 00 00 00 00 00 ............ +498 1.654076576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520676 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 28508160 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +500 1.654375553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852004 12 -1 703262 0 0xffffffff 0 -1 703262 0 ff ff ff ff 1e bb 0a 00 00 00 00 00 ............ +502 1.654950380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852016 12 26 694819 0 0x0000001a 0 26 694819 0 1a 00 00 00 23 9a 0a 00 00 00 00 00 ....#....... +504 1.655161619 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852028 26 22 2032051 0 0x00000016 1 2032051 0 196609 0 16 00 00 00 b3 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +506 1.655500174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520706 12 -1 694819 0 0xffffffff 0 -1 694819 0 ff ff ff ff 23 9a 0a 00 00 00 00 00 ....#....... +508 1.660552979 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520718 12 26 703263 0 0x0000001a 0 26 703263 0 1a 00 00 00 1f bb 0a 00 00 00 00 00 ............ +510 1.660704374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520730 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 28639232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +512 1.661127090 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852054 12 -1 703263 0 0xffffffff 0 -1 703263 0 ff ff ff ff 1f bb 0a 00 00 00 00 00 ............ +514 1.661388636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852066 12 22 694820 0 0x00000016 0 22 694820 0 16 00 00 00 24 9a 0a 00 00 00 00 00 ....$....... +516 1.661542654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852078 22 18 2032053 0 0x00000012 1 2032053 0 196609 0 12 00 00 00 b5 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +518 1.662345648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520756 12 -1 694820 0 0xffffffff 0 -1 694820 0 ff ff ff ff 24 9a 0a 00 00 00 00 00 ....$....... +524 1.764795542 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520768 12 26 703264 0 0x0000001a 0 26 703264 0 1a 00 00 00 20 bb 0a 00 00 00 00 00 .... ....... +526 1.765036583 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520780 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 28770304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +528 1.765517712 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852100 12 -1 703264 0 0xffffffff 0 -1 703264 0 ff ff ff ff 20 bb 0a 00 00 00 00 00 .... ....... +530 1.765992165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852112 12 22 694821 0 0x00000016 0 22 694821 0 16 00 00 00 25 9a 0a 00 00 00 00 00 ....%....... +532 1.766209126 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852124 22 18 2032055 0 0x00000012 1 2032055 0 196609 0 12 00 00 00 b7 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +534 1.766487122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520806 12 -1 694821 0 0xffffffff 0 -1 694821 0 ff ff ff ff 25 9a 0a 00 00 00 00 00 ....%....... +622 1.869161844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520818 12 26 703265 0 0x0000001a 0 26 703265 0 1a 00 00 00 21 bb 0a 00 00 00 00 00 ....!....... +624 1.869381666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520830 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 28901376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +626 1.869717121 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852146 12 -1 703265 0 0xffffffff 0 -1 703265 0 ff ff ff ff 21 bb 0a 00 00 00 00 00 ....!....... +628 1.870203257 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852158 12 22 694822 0 0x00000016 0 22 694822 0 16 00 00 00 26 9a 0a 00 00 00 00 00 ....&....... +630 1.870402336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852170 22 18 2032057 0 0x00000012 1 2032057 0 196609 0 12 00 00 00 b9 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +632 1.870731592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520856 12 -1 694822 0 0xffffffff 0 -1 694822 0 ff ff ff ff 26 9a 0a 00 00 00 00 00 ....&....... +696 1.955416441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520868 12 101 703266 0 0x00000065 0 101 703266 0 65 00 00 00 22 bb 0a 00 00 00 00 00 "e...""......." +698 1.955632210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520880 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 89 ff 01 00 00 00 00 00 88 19 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 89 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +700 1.956113100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852192 12 -1 703266 0 0xffffffff 0 -1 703266 0 ff ff ff ff 22 bb 0a 00 00 00 00 00 "....""......." +702 1.957590818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852204 12 52 694823 0 0x00000034 0 52 694823 0 34 00 00 00 27 9a 0a 00 00 00 00 00 4...'....... +704 1.957772017 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852216 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 89 ff 01 00 00 00 00 00 00 00 84 0f 59 4a 4a 01 00 00 "0...Dk.................L."".([.................YJ" +706 1.958044767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520981 12 -1 694823 0 0xffffffff 0 -1 694823 0 ff ff ff ff 27 9a 0a 00 00 00 00 00 ....'....... +708 1.959254742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331520993 12 30 703267 0 0x0000001e 0 30 703267 0 1e 00 00 00 23 bb 0a 00 00 00 00 00 ....#....... +710 1.959462404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521005 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 29032448 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +712 1.959745884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852268 12 -1 703267 0 0xffffffff 0 -1 703267 0 ff ff ff ff 23 bb 0a 00 00 00 00 00 ....#....... +714 1.960255861 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852280 12 26 694824 0 0x0000001a 0 26 694824 0 1a 00 00 00 28 9a 0a 00 00 00 00 00 ....(....... +716 1.960463285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852292 26 22 2032059 0 0x00000016 1 2032059 0 196609 0 16 00 00 00 bb 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +718 1.960694075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521035 12 -1 694824 0 0xffffffff 0 -1 694824 0 ff ff ff ff 28 9a 0a 00 00 00 00 00 ....(....... +730 1.972881794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521047 12 26 703268 0 0x0000001a 0 26 703268 0 1a 00 00 00 24 bb 0a 00 00 00 00 00 ....$....... +732 1.973036051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521059 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 29163520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +734 1.973448753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852318 12 -1 703268 0 0xffffffff 0 -1 703268 0 ff ff ff ff 24 bb 0a 00 00 00 00 00 ....$....... +737 1.973799944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852330 12 22 694825 0 0x00000016 0 22 694825 0 16 00 00 00 29 9a 0a 00 00 00 00 00 ....)....... +742 1.973961353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852342 22 18 2032061 0 0x00000012 1 2032061 0 196609 0 12 00 00 00 bd 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +746 1.974272490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521085 12 -1 694825 0 0xffffffff 0 -1 694825 0 ff ff ff ff 29 9a 0a 00 00 00 00 00 ....)....... +800 2.006266832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852364 12 -2 79864 79881 0xfffffffe 0 -2 79864 79881 fe ff ff ff f8 37 01 00 09 38 01 00 .....7...8.. +808 2.061663866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521097 12 -2 79882 79864 0xfffffffe 0 -2 79882 79864 fe ff ff ff 0a 38 01 00 f8 37 01 00 .....8...7.. +812 2.075835466 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521109 12 26 703269 0 0x0000001a 0 26 703269 0 1a 00 00 00 25 bb 0a 00 00 00 00 00 ....%....... +814 2.076029539 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521121 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 29294592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +816 2.076501608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852376 12 -1 703269 0 0xffffffff 0 -1 703269 0 ff ff ff ff 25 bb 0a 00 00 00 00 00 ....%....... +818 2.077010870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852388 12 22 694826 0 0x00000016 0 22 694826 0 16 00 00 00 2a 9a 0a 00 00 00 00 00 ....*....... +820 2.077153683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852400 22 18 2032063 0 0x00000012 1 2032063 0 196609 0 12 00 00 00 bf 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +822 2.077444553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521147 12 -1 694826 0 0xffffffff 0 -1 694826 0 ff ff ff ff 2a 9a 0a 00 00 00 00 00 ....*....... +898 2.178887367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521159 12 26 703270 0 0x0000001a 0 26 703270 0 1a 00 00 00 26 bb 0a 00 00 00 00 00 ....&....... +900 2.179092169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521171 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 29425664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +902 2.179625511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852422 12 -1 703270 0 0xffffffff 0 -1 703270 0 ff ff ff ff 26 bb 0a 00 00 00 00 00 ....&....... +904 2.180249691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852434 12 22 694827 0 0x00000016 0 22 694827 0 16 00 00 00 2b 9a 0a 00 00 00 00 00 ....+....... +906 2.180443764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852446 22 18 2032065 0 0x00000012 1 2032065 0 196609 0 12 00 00 00 c1 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +908 2.180720568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521197 12 -1 694827 0 0xffffffff 0 -1 694827 0 ff ff ff ff 2b 9a 0a 00 00 00 00 00 ....+....... +990 2.260073185 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521209 12 34 703271 0 0x00000022 0 34 703271 0 22 00 00 00 27 bb 0a 00 00 00 00 00 """...'......." +992 2.260284662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521221 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -7733248 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8a ff 01 00 00 00 00 00 b9 1a 0e c3 9d 01 00 00 .....!...o3....................... +994 2.260406733 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521255 12 67 703272 0 0x00000043 0 67 703272 0 43 00 00 00 28 bb 0a 00 00 00 00 00 C...(....... +996 2.260490656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521267 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8a ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 91 4c f7 8d ?.....3...|8...................=B.....&......... +998 2.260614395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852468 12 -1 703271 0 0xffffffff 0 -1 703271 0 ff ff ff ff 27 bb 0a 00 00 00 00 00 ....'....... +1000 2.260811567 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852480 12 -1 703272 0 0xffffffff 0 -1 703272 0 ff ff ff ff 28 bb 0a 00 00 00 00 00 ....(....... +1002 2.262336016 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852492 12 52 694828 0 0x00000034 0 52 694828 0 34 00 00 00 2c 9a 0a 00 00 00 00 00 4...,....... +1004 2.262528181 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852504 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8a ff 01 00 00 00 00 00 00 00 87 91 87 4a 4a 01 00 00 "0...Dk.................L."".([..................J" +1006 2.262803793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521334 12 -1 694828 0 0xffffffff 0 -1 694828 0 ff ff ff ff 2c 9a 0a 00 00 00 00 00 ....,....... +1008 2.263519526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521346 12 30 703273 0 0x0000001e 0 30 703273 0 1e 00 00 00 29 bb 0a 00 00 00 00 00 ....)....... +1010 2.263656378 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521358 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 29556736 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1012 2.263899088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852556 12 -1 703273 0 0xffffffff 0 -1 703273 0 ff ff ff ff 29 bb 0a 00 00 00 00 00 ....)....... +1014 2.264355898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852568 12 26 694829 0 0x0000001a 0 26 694829 0 1a 00 00 00 2d 9a 0a 00 00 00 00 00 ....-....... +1016 2.264612913 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852580 26 22 2032067 0 0x00000016 1 2032067 0 196609 0 16 00 00 00 c3 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1018 2.265027285 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521388 12 -1 694829 0 0xffffffff 0 -1 694829 0 ff ff ff ff 2d 9a 0a 00 00 00 00 00 ....-....... +1020 2.283540964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521400 12 26 703274 0 0x0000001a 0 26 703274 0 1a 00 00 00 2a bb 0a 00 00 00 00 00 ....*....... +1022 2.283680201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521412 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 29687808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1024 2.284048080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852606 12 -1 703274 0 0xffffffff 0 -1 703274 0 ff ff ff ff 2a bb 0a 00 00 00 00 00 ....*....... +1026 2.284509659 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852618 12 22 694830 0 0x00000016 0 22 694830 0 16 00 00 00 2e 9a 0a 00 00 00 00 00 ............ +1028 2.284676790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852630 22 18 2032069 0 0x00000012 1 2032069 0 196609 0 12 00 00 00 c5 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1030 2.284950018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521438 12 -1 694830 0 0xffffffff 0 -1 694830 0 ff ff ff ff 2e 9a 0a 00 00 00 00 00 ............ +1032 2.387019157 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521450 12 26 703275 0 0x0000001a 0 26 703275 0 1a 00 00 00 2b bb 0a 00 00 00 00 00 ....+....... +1034 2.387233973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521462 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 29818880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1036 2.387640238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852652 12 -1 703275 0 0xffffffff 0 -1 703275 0 ff ff ff ff 2b bb 0a 00 00 00 00 00 ....+....... +1038 2.388184071 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852664 12 22 694831 0 0x00000016 0 22 694831 0 16 00 00 00 2f 9a 0a 00 00 00 00 00 ..../....... +1040 2.388368607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852676 22 18 2032071 0 0x00000012 1 2032071 0 196609 0 12 00 00 00 c7 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1042 2.388661861 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521488 12 -1 694831 0 0xffffffff 0 -1 694831 0 ff ff ff ff 2f 9a 0a 00 00 00 00 00 ..../....... +1076 2.489962101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521500 12 26 703276 0 0x0000001a 0 26 703276 0 1a 00 00 00 2c bb 0a 00 00 00 00 00 ....,....... +1078 2.490191936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521512 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 29949952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1080 2.490552187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852698 12 -1 703276 0 0xffffffff 0 -1 703276 0 ff ff ff ff 2c bb 0a 00 00 00 00 00 ....,....... +1082 2.491017580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852710 12 22 694832 0 0x00000016 0 22 694832 0 16 00 00 00 30 9a 0a 00 00 00 00 00 ....0....... +1084 2.491275549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852722 22 18 2032073 0 0x00000012 1 2032073 0 196609 0 12 00 00 00 c9 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1086 2.491575003 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521538 12 -1 694832 0 0xffffffff 0 -1 694832 0 ff ff ff ff 30 9a 0a 00 00 00 00 00 ....0....... +1093 2.508591652 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852744 12 -2 79865 79882 0xfffffffe 0 -2 79865 79882 fe ff ff ff f9 37 01 00 0a 38 01 00 .....7...8.. +1097 2.563622236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521550 12 -2 79883 79865 0xfffffffe 0 -2 79883 79865 fe ff ff ff 0b 38 01 00 f9 37 01 00 .....8...7.. +1100 2.564417839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521562 12 101 703277 0 0x00000065 0 101 703277 0 65 00 00 00 2d bb 0a 00 00 00 00 00 e...-....... +1102 2.564583063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521574 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8b ff 01 00 00 00 00 00 ea 1b 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8b ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +1104 2.565053225 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852756 12 -1 703277 0 0xffffffff 0 -1 703277 0 ff ff ff ff 2d bb 0a 00 00 00 00 00 ....-....... +1106 2.566027641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852768 12 52 694833 0 0x00000034 0 52 694833 0 34 00 00 00 31 9a 0a 00 00 00 00 00 4...1....... +1108 2.566235065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852780 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8b ff 01 00 00 00 00 00 00 00 6d e9 b5 4a 4a 01 00 00 "0...Dk.................L."".([...............m..J" +1110 2.566621304 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521675 12 -1 694833 0 0xffffffff 0 -1 694833 0 ff ff ff ff 31 9a 0a 00 00 00 00 00 ....1....... +1112 2.567468643 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521687 12 30 703278 0 0x0000001e 0 30 703278 0 1e 00 00 00 2e bb 0a 00 00 00 00 00 ............ +1114 2.567681074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521699 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 30081024 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1116 2.567987919 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852832 12 -1 703278 0 0xffffffff 0 -1 703278 0 ff ff ff ff 2e bb 0a 00 00 00 00 00 ............ +1118 2.568454027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852844 12 26 694834 0 0x0000001a 0 26 694834 0 1a 00 00 00 32 9a 0a 00 00 00 00 00 ....2....... +1120 2.568680048 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852856 26 22 2032075 0 0x00000016 1 2032075 0 196609 0 16 00 00 00 cb 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1122 2.568954706 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521729 12 -1 694834 0 0xffffffff 0 -1 694834 0 ff ff ff ff 32 9a 0a 00 00 00 00 00 ....2....... +1130 2.593693256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521741 12 26 703279 0 0x0000001a 0 26 703279 0 1a 00 00 00 2f bb 0a 00 00 00 00 00 ..../....... +1132 2.593855381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521753 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 30212096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1134 2.594210148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852882 12 -1 703279 0 0xffffffff 0 -1 703279 0 ff ff ff ff 2f bb 0a 00 00 00 00 00 ..../....... +1136 2.594617605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852894 12 22 694835 0 0x00000016 0 22 694835 0 16 00 00 00 33 9a 0a 00 00 00 00 00 ....3....... +1138 2.594776630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852906 22 18 2032077 0 0x00000012 1 2032077 0 196609 0 12 00 00 00 cd 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1140 2.595034599 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521779 12 -1 694835 0 0xffffffff 0 -1 694835 0 ff ff ff ff 33 9a 0a 00 00 00 00 00 ....3....... +1142 2.696770191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521791 12 26 703280 0 0x0000001a 0 26 703280 0 1a 00 00 00 30 bb 0a 00 00 00 00 00 ....0....... +1144 2.696987152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521803 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 30343168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1146 2.697308540 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852928 12 -1 703280 0 0xffffffff 0 -1 703280 0 ff ff ff ff 30 bb 0a 00 00 00 00 00 ....0....... +1148 2.697688580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852940 12 22 694836 0 0x00000016 0 22 694836 0 16 00 00 00 34 9a 0a 00 00 00 00 00 ....4....... +1150 2.697847366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852952 22 18 2032079 0 0x00000012 1 2032079 0 196609 0 12 00 00 00 cf 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1152 2.698205471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521829 12 -1 694836 0 0xffffffff 0 -1 694836 0 ff ff ff ff 34 9a 0a 00 00 00 00 00 ....4....... +1158 2.800660372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521841 12 26 703281 0 0x0000001a 0 26 703281 0 1a 00 00 00 31 bb 0a 00 00 00 00 00 ....1....... +1160 2.800831556 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521853 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 30474240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1162 2.801242113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852974 12 -1 703281 0 0xffffffff 0 -1 703281 0 ff ff ff ff 31 bb 0a 00 00 00 00 00 ....1....... +1164 2.801743269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852986 12 22 694837 0 0x00000016 0 22 694837 0 16 00 00 00 35 9a 0a 00 00 00 00 00 ....5....... +1166 2.801943779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375852998 22 18 2032081 0 0x00000012 1 2032081 0 196609 0 12 00 00 00 d1 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1168 2.802222490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521879 12 -1 694837 0 0xffffffff 0 -1 694837 0 ff ff ff ff 35 9a 0a 00 00 00 00 00 ....5....... +1170 2.868956566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521891 12 101 703282 0 0x00000065 0 101 703282 0 65 00 00 00 32 bb 0a 00 00 00 00 00 e...2....... +1172 2.869130850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331521903 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8c ff 01 00 00 00 00 00 1a 1d 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8c ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +1174 2.869410515 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853020 12 -1 703282 0 0xffffffff 0 -1 703282 0 ff ff ff ff 32 bb 0a 00 00 00 00 00 ....2....... +1176 2.870668173 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853032 12 52 694838 0 0x00000034 0 52 694838 0 34 00 00 00 36 9a 0a 00 00 00 00 00 4...6....... +1178 2.870829344 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853044 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8c ff 01 00 00 00 00 00 00 00 7f 65 e4 4a 4a 01 00 00 "0...Dk.................L."".([................e.J" +1180 2.871077061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522004 12 -1 694838 0 0xffffffff 0 -1 694838 0 ff ff ff ff 36 9a 0a 00 00 00 00 00 ....6....... +1182 2.871877193 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522016 12 30 703283 0 0x0000001e 0 30 703283 0 1e 00 00 00 33 bb 0a 00 00 00 00 00 ....3....... +1184 2.872066498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522028 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 30605312 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1186 2.872267008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853096 12 -1 703283 0 0xffffffff 0 -1 703283 0 ff ff ff ff 33 bb 0a 00 00 00 00 00 ....3....... +1188 2.872631073 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853108 12 26 694839 0 0x0000001a 0 26 694839 0 1a 00 00 00 37 9a 0a 00 00 00 00 00 ....7....... +1190 2.872773647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853120 26 22 2032083 0 0x00000016 1 2032083 0 196609 0 16 00 00 00 d3 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1192 2.873010874 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522058 12 -1 694839 0 0xffffffff 0 -1 694839 0 ff ff ff ff 37 9a 0a 00 00 00 00 00 ....7....... +1196 2.903532982 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522070 12 26 703284 0 0x0000001a 0 26 703284 0 1a 00 00 00 34 bb 0a 00 00 00 00 00 ....4....... +1198 2.903688669 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522082 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 30736384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1200 2.904063702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853146 12 -1 703284 0 0xffffffff 0 -1 703284 0 ff ff ff ff 34 bb 0a 00 00 00 00 00 ....4....... +1202 2.904448271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853158 12 22 694840 0 0x00000016 0 22 694840 0 16 00 00 00 38 9a 0a 00 00 00 00 00 ....8....... +1204 2.904611588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853170 22 18 2032085 0 0x00000012 1 2032085 0 196609 0 12 00 00 00 d5 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1206 2.904853106 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522108 12 -1 694840 0 0xffffffff 0 -1 694840 0 ff ff ff ff 38 9a 0a 00 00 00 00 00 ....8....... +1210 3.007679224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522120 12 26 703285 0 0x0000001a 0 26 703285 0 1a 00 00 00 35 bb 0a 00 00 00 00 00 ....5....... +1212 3.007866859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522132 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 30867456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1216 3.008406401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853192 12 -2 79866 79883 0xfffffffe 0 -2 79866 79883 fe ff ff ff fa 37 01 00 0b 38 01 00 .....7...8.. +1222 3.008689642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853204 12 22 694841 0 0x00000016 0 22 694841 0 16 00 00 00 39 9a 0a 00 00 00 00 00 ....9....... +1224 3.008848190 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853216 22 18 2032087 0 0x00000012 1 2032087 0 196609 0 12 00 00 00 d7 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1226 3.009161234 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853238 12 -1 703285 0 0xffffffff 0 -1 703285 0 ff ff ff ff 35 bb 0a 00 00 00 00 00 ....5....... +1228 3.009301662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522158 12 -1 694841 0 0xffffffff 0 -1 694841 0 ff ff ff ff 39 9a 0a 00 00 00 00 00 ....9....... +1230 3.064360619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522170 12 -2 79884 79866 0xfffffffe 0 -2 79884 79866 fe ff ff ff 0c 38 01 00 fa 37 01 00 .....8...7.. +1240 3.112174988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522182 12 26 703286 0 0x0000001a 0 26 703286 0 1a 00 00 00 36 bb 0a 00 00 00 00 00 ....6....... +1242 3.112417221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522194 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 30998528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1244 3.112744093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853250 12 -1 703286 0 0xffffffff 0 -1 703286 0 ff ff ff ff 36 bb 0a 00 00 00 00 00 ....6....... +1246 3.113477468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853262 12 22 694842 0 0x00000016 0 22 694842 0 16 00 00 00 3a 9a 0a 00 00 00 00 00 ....:....... +1248 3.113645315 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853274 22 18 2032089 0 0x00000012 1 2032089 0 196609 0 12 00 00 00 d9 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1250 3.114008665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522220 12 -1 694842 0 0xffffffff 0 -1 694842 0 ff ff ff ff 3a 9a 0a 00 00 00 00 00 ....:....... +1252 3.172887087 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522232 12 101 703287 0 0x00000065 0 101 703287 0 65 00 00 00 37 bb 0a 00 00 00 00 00 e...7....... +1254 3.173098803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522244 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8d ff 01 00 00 00 00 00 4a 1e 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8d ff 01 00 00 00 00 .....!...o3...............J.......?.....3...|8.. +1256 3.173407078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853296 12 -1 703287 0 0xffffffff 0 -1 703287 0 ff ff ff ff 37 bb 0a 00 00 00 00 00 ....7....... +1258 3.175090075 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853308 12 52 694843 0 0x00000034 0 52 694843 0 34 00 00 00 3b 9a 0a 00 00 00 00 00 4...;....... +1260 3.175289154 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853320 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8d ff 01 00 00 00 00 00 00 00 7e d7 12 4b 4a 01 00 00 "0...Dk.................L."".([...............~..K" +1262 3.175632477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522345 12 -1 694843 0 0xffffffff 0 -1 694843 0 ff ff ff ff 3b 9a 0a 00 00 00 00 00 ....;....... +1264 3.176953793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522357 12 30 703288 0 0x0000001e 0 30 703288 0 1e 00 00 00 38 bb 0a 00 00 00 00 00 ....8....... +1266 3.177084446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522369 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 31129600 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1268 3.177320480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853372 12 -1 703288 0 0xffffffff 0 -1 703288 0 ff ff ff ff 38 bb 0a 00 00 00 00 00 ....8....... +1270 3.177858353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853384 12 26 694844 0 0x0000001a 0 26 694844 0 1a 00 00 00 3c 9a 0a 00 00 00 00 00 ....<....... +1272 3.178068399 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853396 26 22 2032091 0 0x00000016 1 2032091 0 196609 0 16 00 00 00 db 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1274 3.178402185 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522399 12 -1 694844 0 0xffffffff 0 -1 694844 0 ff ff ff ff 3c 9a 0a 00 00 00 00 00 ....<....... +1280 3.216619968 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522411 12 26 703289 0 0x0000001a 0 26 703289 0 1a 00 00 00 39 bb 0a 00 00 00 00 00 ....9....... +1282 3.216790676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522423 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 31260672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1284 3.217275620 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853422 12 -1 703289 0 0xffffffff 0 -1 703289 0 ff ff ff ff 39 bb 0a 00 00 00 00 00 ....9....... +1286 3.217663765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853434 12 22 694845 0 0x00000016 0 22 694845 0 16 00 00 00 3d 9a 0a 00 00 00 00 00 ....=....... +1288 3.217910767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853446 22 18 2032093 0 0x00000012 1 2032093 0 196609 0 12 00 00 00 dd 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1290 3.218237400 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522449 12 -1 694845 0 0xffffffff 0 -1 694845 0 ff ff ff ff 3d 9a 0a 00 00 00 00 00 ....=....... +1292 3.320574284 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522461 12 26 703290 0 0x0000001a 0 26 703290 0 1a 00 00 00 3a bb 0a 00 00 00 00 00 ....:....... +1294 3.320756912 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522473 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 31391744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1296 3.321143866 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853468 12 -1 703290 0 0xffffffff 0 -1 703290 0 ff ff ff ff 3a bb 0a 00 00 00 00 00 ....:....... +1298 3.321932554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853480 12 22 694846 0 0x00000016 0 22 694846 0 16 00 00 00 3e 9a 0a 00 00 00 00 00 ....>....... +1300 3.322133780 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853492 22 18 2032095 0 0x00000012 1 2032095 0 196609 0 12 00 00 00 df 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1302 3.322381496 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522499 12 -1 694846 0 0xffffffff 0 -1 694846 0 ff ff ff ff 3e 9a 0a 00 00 00 00 00 ....>....... +1306 3.423394203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522511 12 26 703291 0 0x0000001a 0 26 703291 0 1a 00 00 00 3b bb 0a 00 00 00 00 00 ....;....... +1308 3.423567533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522523 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 31522816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1310 3.423946142 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853514 12 -1 703291 0 0xffffffff 0 -1 703291 0 ff ff ff ff 3b bb 0a 00 00 00 00 00 ....;....... +1312 3.424419165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853526 12 22 694847 0 0x00000016 0 22 694847 0 16 00 00 00 3f 9a 0a 00 00 00 00 00 ....?....... +1314 3.424579859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853538 22 18 2032097 0 0x00000012 1 2032097 0 196609 0 12 00 00 00 e1 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1316 3.424929380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522549 12 -1 694847 0 0xffffffff 0 -1 694847 0 ff ff ff ff 3f 9a 0a 00 00 00 00 00 ....?....... +1318 3.477845430 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522561 12 34 703292 0 0x00000022 0 34 703292 0 22 00 00 00 3c bb 0a 00 00 00 00 00 """...<......." +1320 3.477996826 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522573 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -7471104 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8e ff 01 00 00 00 00 00 7b 1f 0e c3 9d 01 00 00 .....!...o3...............{....... +1322 3.478135586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522607 12 67 703293 0 0x00000043 0 67 703293 0 43 00 00 00 3d bb 0a 00 00 00 00 00 C...=....... +1324 3.478220224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522619 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8e ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 58 70 ee 3f 8e ?.....3...|8...................=B.....&......... +1326 3.478462458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853560 12 -1 703292 0 0xffffffff 0 -1 703292 0 ff ff ff ff 3c bb 0a 00 00 00 00 00 ....<....... +1328 3.478713512 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853572 12 -1 703293 0 0xffffffff 0 -1 703293 0 ff ff ff ff 3d bb 0a 00 00 00 00 00 ....=....... +1330 3.479474306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853584 12 52 694848 0 0x00000034 0 52 694848 0 34 00 00 00 40 9a 0a 00 00 00 00 00 4...@....... +1332 3.479634285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853596 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8e ff 01 00 00 00 00 00 00 00 6f 4c 41 4b 4a 01 00 00 "0...Dk.................L."".([...............oLAK" +1334 3.479920149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522686 12 -1 694848 0 0xffffffff 0 -1 694848 0 ff ff ff ff 40 9a 0a 00 00 00 00 00 ....@....... +1336 3.480688095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522698 12 30 703294 0 0x0000001e 0 30 703294 0 1e 00 00 00 3e bb 0a 00 00 00 00 00 ....>....... +1338 3.480861187 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522710 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 31653888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1340 3.481126785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853648 12 -1 703294 0 0xffffffff 0 -1 703294 0 ff ff ff ff 3e bb 0a 00 00 00 00 00 ....>....... +1342 3.481488466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853660 12 26 694849 0 0x0000001a 0 26 694849 0 1a 00 00 00 41 9a 0a 00 00 00 00 00 ....A....... +1344 3.481633663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853672 26 22 2032099 0 0x00000016 1 2032099 0 196609 0 16 00 00 00 e3 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1346 3.481894732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522740 12 -1 694849 0 0xffffffff 0 -1 694849 0 ff ff ff ff 41 9a 0a 00 00 00 00 00 ....A....... +1350 3.509551764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853698 12 -2 79867 79884 0xfffffffe 0 -2 79867 79884 fe ff ff ff fb 37 01 00 0c 38 01 00 .....7...8.. +1356 3.526058435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522752 12 26 703295 0 0x0000001a 0 26 703295 0 1a 00 00 00 3f bb 0a 00 00 00 00 00 ....?....... +1358 3.526260138 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522764 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 31784960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1360 3.526663065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853710 12 -1 703295 0 0xffffffff 0 -1 703295 0 ff ff ff ff 3f bb 0a 00 00 00 00 00 ....?....... +1362 3.527224779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853722 12 22 694850 0 0x00000016 0 22 694850 0 16 00 00 00 42 9a 0a 00 00 00 00 00 ....B....... +1364 3.527381182 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853734 22 18 2032101 0 0x00000012 1 2032101 0 196609 0 12 00 00 00 e5 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1366 3.527678967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522790 12 -1 694850 0 0xffffffff 0 -1 694850 0 ff ff ff ff 42 9a 0a 00 00 00 00 00 ....B....... +1369 3.564897776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522802 12 -2 79885 79867 0xfffffffe 0 -2 79885 79867 fe ff ff ff 0d 38 01 00 fb 37 01 00 .....8...7.. +1378 3.629282475 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522814 12 26 703296 0 0x0000001a 0 26 703296 0 1a 00 00 00 40 bb 0a 00 00 00 00 00 ....@....... +1380 3.629455328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522826 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 31916032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1382 3.629867315 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853756 12 -1 703296 0 0xffffffff 0 -1 703296 0 ff ff ff ff 40 bb 0a 00 00 00 00 00 ....@....... +1384 3.630242825 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853768 12 22 694851 0 0x00000016 0 22 694851 0 16 00 00 00 43 9a 0a 00 00 00 00 00 ....C....... +1386 3.630405188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853780 22 18 2032103 0 0x00000012 1 2032103 0 196609 0 12 00 00 00 e7 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1388 3.630841970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522852 12 -1 694851 0 0xffffffff 0 -1 694851 0 ff ff ff ff 43 9a 0a 00 00 00 00 00 ....C....... +1394 3.732339859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522864 12 26 703297 0 0x0000001a 0 26 703297 0 1a 00 00 00 41 bb 0a 00 00 00 00 00 ....A....... +1396 3.732566357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522876 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 32047104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1398 3.732849360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853802 12 -1 703297 0 0xffffffff 0 -1 703297 0 ff ff ff ff 41 bb 0a 00 00 00 00 00 ....A....... +1400 3.733505011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853814 12 22 694852 0 0x00000016 0 22 694852 0 16 00 00 00 44 9a 0a 00 00 00 00 00 ....D....... +1402 3.733691216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853826 22 18 2032105 0 0x00000012 1 2032105 0 196609 0 12 00 00 00 e9 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1404 3.733933926 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522902 12 -1 694852 0 0xffffffff 0 -1 694852 0 ff ff ff ff 44 9a 0a 00 00 00 00 00 ....D....... +1406 3.781508446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522914 12 101 703298 0 0x00000065 0 101 703298 0 65 00 00 00 42 bb 0a 00 00 00 00 00 e...B....... +1408 3.781783104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331522926 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8f ff 01 00 00 00 00 00 ab 20 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8f ff 01 00 00 00 00 .....!...o3................ ......?.....3...|8.. +1410 3.782224894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853848 12 -1 703298 0 0xffffffff 0 -1 703298 0 ff ff ff ff 42 bb 0a 00 00 00 00 00 ....B....... +1412 3.783864260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853860 12 52 694853 0 0x00000034 0 52 694853 0 34 00 00 00 45 9a 0a 00 00 00 00 00 4...E....... +1414 3.784025431 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853872 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8f ff 01 00 00 00 00 00 00 00 47 bd 6f 4b 4a 01 00 00 "0...Dk.................L."".([...............G.oK" +1416 3.784380674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523027 12 -1 694853 0 0xffffffff 0 -1 694853 0 ff ff ff ff 45 9a 0a 00 00 00 00 00 ....E....... +1418 3.785092592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523039 12 30 703299 0 0x0000001e 0 30 703299 0 1e 00 00 00 43 bb 0a 00 00 00 00 00 ....C....... +1420 3.785232306 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523051 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 32178176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1422 3.785613298 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853924 12 -1 703299 0 0xffffffff 0 -1 703299 0 ff ff ff ff 43 bb 0a 00 00 00 00 00 ....C....... +1424 3.785983086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853936 12 26 694854 0 0x0000001a 0 26 694854 0 1a 00 00 00 46 9a 0a 00 00 00 00 00 ....F....... +1426 3.786133289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853948 26 22 2032107 0 0x00000016 1 2032107 0 196609 0 16 00 00 00 eb 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1428 3.786461353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523081 12 -1 694854 0 0xffffffff 0 -1 694854 0 ff ff ff ff 46 9a 0a 00 00 00 00 00 ....F....... +1430 3.836404324 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523093 12 26 703300 0 0x0000001a 0 26 703300 0 1a 00 00 00 44 bb 0a 00 00 00 00 00 ....D....... +1432 3.836583614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523105 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 32309248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1434 3.837145329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853974 12 -1 703300 0 0xffffffff 0 -1 703300 0 ff ff ff ff 44 bb 0a 00 00 00 00 00 ....D....... +1436 3.837798834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853986 12 22 694855 0 0x00000016 0 22 694855 0 16 00 00 00 47 9a 0a 00 00 00 00 00 ....G....... +1438 3.837964535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375853998 22 18 2032109 0 0x00000012 1 2032109 0 196609 0 12 00 00 00 ed 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1440 3.838236570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523131 12 -1 694855 0 0xffffffff 0 -1 694855 0 ff ff ff ff 47 9a 0a 00 00 00 00 00 ....G....... +1444 3.941282988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523143 12 26 703301 0 0x0000001a 0 26 703301 0 1a 00 00 00 45 bb 0a 00 00 00 00 00 ....E....... +1446 3.941464901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523155 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 32440320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1448 3.941943884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854020 12 -1 703301 0 0xffffffff 0 -1 703301 0 ff ff ff ff 45 bb 0a 00 00 00 00 00 ....E....... +1450 3.942574024 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854032 12 22 694856 0 0x00000016 0 22 694856 0 16 00 00 00 48 9a 0a 00 00 00 00 00 ....H....... +1452 3.942729235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854044 22 18 2032111 0 0x00000012 1 2032111 0 196609 0 12 00 00 00 ef 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1454 3.942982197 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523181 12 -1 694856 0 0xffffffff 0 -1 694856 0 ff ff ff ff 48 9a 0a 00 00 00 00 00 ....H....... +1458 4.011476040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854066 12 -2 79868 79885 0xfffffffe 0 -2 79868 79885 fe ff ff ff fc 37 01 00 0d 38 01 00 .....7...8.. +1464 4.045656443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523193 12 26 703302 0 0x0000001a 0 26 703302 0 1a 00 00 00 46 bb 0a 00 00 00 00 00 ....F....... +1466 4.045890093 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523205 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 32571392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1468 4.046255112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854078 12 -1 703302 0 0xffffffff 0 -1 703302 0 ff ff ff ff 46 bb 0a 00 00 00 00 00 ....F....... +1470 4.046806574 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854090 12 22 694857 0 0x00000016 0 22 694857 0 16 00 00 00 49 9a 0a 00 00 00 00 00 ....I....... +1472 4.047061682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854102 22 18 2032113 0 0x00000012 1 2032113 0 196609 0 12 00 00 00 f1 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1474 4.047346592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523231 12 -1 694857 0 0xffffffff 0 -1 694857 0 ff ff ff ff 49 9a 0a 00 00 00 00 00 ....I....... +1477 4.066290379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523243 12 -2 79886 79868 0xfffffffe 0 -2 79886 79868 fe ff ff ff 0e 38 01 00 fc 37 01 00 .....8...7.. +1484 4.087766647 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523255 12 101 703303 0 0x00000065 0 101 703303 0 65 00 00 00 47 bb 0a 00 00 00 00 00 e...G....... +1486 4.087933779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523267 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 90 ff 01 00 00 00 00 00 dd 21 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 90 ff 01 00 00 00 00 .....!...o3................!......?.....3...|8.. +1488 4.088252306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854124 12 -1 703303 0 0xffffffff 0 -1 703303 0 ff ff ff ff 47 bb 0a 00 00 00 00 00 ....G....... +1490 4.089464903 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854136 12 52 694858 0 0x00000034 0 52 694858 0 34 00 00 00 4a 9a 0a 00 00 00 00 00 4...J....... +1492 4.089647293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854148 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 90 ff 01 00 00 00 00 00 00 00 74 5d 9e 4b 4a 01 00 00 "0...Dk.................L."".([...............t].K" +1494 4.089912176 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523368 12 -1 694858 0 0xffffffff 0 -1 694858 0 ff ff ff ff 4a 9a 0a 00 00 00 00 00 ....J....... +1496 4.091028929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523380 12 30 703304 0 0x0000001e 0 30 703304 0 1e 00 00 00 48 bb 0a 00 00 00 00 00 ....H....... +1498 4.091165781 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523392 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 32702464 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1500 4.091441631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854200 12 -1 703304 0 0xffffffff 0 -1 703304 0 ff ff ff ff 48 bb 0a 00 00 00 00 00 ....H....... +1502 4.091841459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854212 12 26 694859 0 0x0000001a 0 26 694859 0 1a 00 00 00 4b 9a 0a 00 00 00 00 00 ....K....... +1504 4.091980696 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854224 26 22 2032115 0 0x00000016 1 2032115 0 196609 0 16 00 00 00 f3 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1506 4.092235565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523422 12 -1 694859 0 0xffffffff 0 -1 694859 0 ff ff ff ff 4b 9a 0a 00 00 00 00 00 ....K....... +1519 4.149621010 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523434 12 26 703305 0 0x0000001a 0 26 703305 0 1a 00 00 00 49 bb 0a 00 00 00 00 00 ....I....... +1521 4.149926424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523446 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 32833536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1523 4.150392294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854250 12 -1 703305 0 0xffffffff 0 -1 703305 0 ff ff ff ff 49 bb 0a 00 00 00 00 00 ....I....... +1525 4.150900364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854262 12 22 694860 0 0x00000016 0 22 694860 0 16 00 00 00 4c 9a 0a 00 00 00 00 00 ....L....... +1527 4.151083231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854274 22 18 2032117 0 0x00000012 1 2032117 0 196609 0 12 00 00 00 f5 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1529 4.151374578 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523472 12 -1 694860 0 0xffffffff 0 -1 694860 0 ff ff ff ff 4c 9a 0a 00 00 00 00 00 ....L....... +1560 4.252617359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523484 12 26 703306 0 0x0000001a 0 26 703306 0 1a 00 00 00 4a bb 0a 00 00 00 00 00 ....J....... +1562 4.252826929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523496 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 32964608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1564 4.253314018 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854296 12 -1 703306 0 0xffffffff 0 -1 703306 0 ff ff ff ff 4a bb 0a 00 00 00 00 00 ....J....... +1566 4.254130602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854308 12 22 694861 0 0x00000016 0 22 694861 0 16 00 00 00 4d 9a 0a 00 00 00 00 00 ....M....... +1568 4.254331589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854320 22 18 2032119 0 0x00000012 1 2032119 0 196609 0 12 00 00 00 f7 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1570 4.254854441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523522 12 -1 694861 0 0xffffffff 0 -1 694861 0 ff ff ff ff 4d 9a 0a 00 00 00 00 00 ....M....... +1602 4.357247114 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523534 12 26 703307 0 0x0000001a 0 26 703307 0 1a 00 00 00 4b bb 0a 00 00 00 00 00 ....K....... +1604 4.357463121 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523546 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 33095680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1606 4.357946396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854342 12 -1 703307 0 0xffffffff 0 -1 703307 0 ff ff ff ff 4b bb 0a 00 00 00 00 00 ....K....... +1608 4.358549118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854354 12 22 694862 0 0x00000016 0 22 694862 0 16 00 00 00 4e 9a 0a 00 00 00 00 00 ....N....... +1610 4.358824968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854366 22 18 2032121 0 0x00000012 1 2032121 0 196609 0 12 00 00 00 f9 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1612 4.359138012 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523572 12 -1 694862 0 0xffffffff 0 -1 694862 0 ff ff ff ff 4e 9a 0a 00 00 00 00 00 ....N....... +1616 4.392915964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523584 12 34 703308 0 0x00000022 0 34 703308 0 22 00 00 00 4c bb 0a 00 00 00 00 00 """...L......." +1618 4.393128872 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523596 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -7274496 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 91 ff 01 00 00 00 00 00 0e 23 0e c3 9d 01 00 00 .....!...o3................#...... +1620 4.393328190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523630 12 67 703309 0 0x00000043 0 67 703309 0 43 00 00 00 4d bb 0a 00 00 00 00 00 C...M....... +1622 4.393434048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523642 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 91 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 a0 76 76 8e ?.....3...|8...................=B.....&......... +1623 4.393469572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854388 12 -1 703308 0 0xffffffff 0 -1 703308 0 ff ff ff ff 4c bb 0a 00 00 00 00 00 ....L....... +1626 4.393748522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854400 12 -1 703309 0 0xffffffff 0 -1 703309 0 ff ff ff ff 4d bb 0a 00 00 00 00 00 ....M....... +1628 4.394703627 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854412 12 52 694863 0 0x00000034 0 52 694863 0 34 00 00 00 4f 9a 0a 00 00 00 00 00 4...O....... +1630 4.394870758 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854424 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 91 ff 01 00 00 00 00 00 00 00 79 f2 cc 4b 4a 01 00 00 "0...Dk.................L."".([...............y..K" +1632 4.395158768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523709 12 -1 694863 0 0xffffffff 0 -1 694863 0 ff ff ff ff 4f 9a 0a 00 00 00 00 00 ....O....... +1633 4.396125793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523721 12 30 703310 0 0x0000001e 0 30 703310 0 1e 00 00 00 4e bb 0a 00 00 00 00 00 ....N....... +1635 4.396316528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523733 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 33226752 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 01 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1637 4.396716833 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854476 12 -1 703310 0 0xffffffff 0 -1 703310 0 ff ff ff ff 4e bb 0a 00 00 00 00 00 ....N....... +1639 4.397119999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854488 12 26 694864 0 0x0000001a 0 26 694864 0 1a 00 00 00 50 9a 0a 00 00 00 00 00 ....P....... +1641 4.397266388 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854500 26 22 2032123 0 0x00000016 1 2032123 0 196609 0 16 00 00 00 fb 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1643 4.397505760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523763 12 -1 694864 0 0xffffffff 0 -1 694864 0 ff ff ff ff 50 9a 0a 00 00 00 00 00 ....P....... +1657 4.461783171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523775 12 26 703311 0 0x0000001a 0 26 703311 0 1a 00 00 00 4f bb 0a 00 00 00 00 00 ....O....... +1659 4.462015867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523787 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 33357824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1661 4.462423086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854526 12 -1 703311 0 0xffffffff 0 -1 703311 0 ff ff ff ff 4f bb 0a 00 00 00 00 00 ....O....... +1663 4.462837934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854538 12 22 694865 0 0x00000016 0 22 694865 0 16 00 00 00 51 9a 0a 00 00 00 00 00 ....Q....... +1665 4.463088274 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854550 22 18 2032125 0 0x00000012 1 2032125 0 196609 0 12 00 00 00 fd 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1667 4.463360786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523813 12 -1 694865 0 0xffffffff 0 -1 694865 0 ff ff ff ff 51 9a 0a 00 00 00 00 00 ....Q....... +1671 4.513443232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854572 12 -2 79869 79886 0xfffffffe 0 -2 79869 79886 fe ff ff ff fd 37 01 00 0e 38 01 00 .....7...8.. +1679 4.565369844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523825 12 26 703312 0 0x0000001a 0 26 703312 0 1a 00 00 00 50 bb 0a 00 00 00 00 00 ....P....... +1681 4.565586090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523837 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 33488896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 01 1f 00 00 00 00 00 ....T.c@.^1@.............. +1683 4.565944433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854584 12 -1 703312 0 0xffffffff 0 -1 703312 0 ff ff ff ff 50 bb 0a 00 00 00 00 00 ....P....... +1686 4.567020416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854596 12 22 694866 0 0x00000016 0 22 694866 0 16 00 00 00 52 9a 0a 00 00 00 00 00 ....R....... +1687 4.567041397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523863 12 -2 79887 79869 0xfffffffe 0 -2 79887 79869 fe ff ff ff 0f 38 01 00 fd 37 01 00 .....8...7.. +1689 4.567179441 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854608 22 18 2032127 0 0x00000012 1 2032127 0 196609 0 12 00 00 00 ff 01 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1691 4.567850113 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523875 12 -1 694866 0 0xffffffff 0 -1 694866 0 ff ff ff ff 52 9a 0a 00 00 00 00 00 ....R....... +1699 4.668992519 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523887 12 26 703313 0 0x0000001a 0 26 703313 0 1a 00 00 00 51 bb 0a 00 00 00 00 00 ....Q....... +1701 4.669188499 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523899 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 33619968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1703 4.669718742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854630 12 -1 703313 0 0xffffffff 0 -1 703313 0 ff ff ff ff 51 bb 0a 00 00 00 00 00 ....Q....... +1705 4.670152187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854642 12 22 694867 0 0x00000016 0 22 694867 0 16 00 00 00 53 9a 0a 00 00 00 00 00 ....S....... +1707 4.670355320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854654 22 18 2032129 0 0x00000012 1 2032129 0 196609 0 12 00 00 00 01 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1709 4.670641661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523925 12 -1 694867 0 0xffffffff 0 -1 694867 0 ff ff ff ff 53 9a 0a 00 00 00 00 00 ....S....... +1711 4.697686195 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523937 12 101 703314 0 0x00000065 0 101 703314 0 65 00 00 00 52 bb 0a 00 00 00 00 00 e...R....... +1713 4.697849274 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331523949 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 92 ff 01 00 00 00 00 00 3f 24 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 92 ff 01 00 00 00 00 .....!...o3...............?$......?.....3...|8.. +1715 4.698153734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854676 12 -1 703314 0 0xffffffff 0 -1 703314 0 ff ff ff ff 52 bb 0a 00 00 00 00 00 ....R....... +1717 4.699561119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854688 12 52 694868 0 0x00000034 0 52 694868 0 34 00 00 00 54 9a 0a 00 00 00 00 00 4...T....... +1719 4.699776649 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854700 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 92 ff 01 00 00 00 00 00 00 00 8d 76 fb 4b 4a 01 00 00 "0...Dk.................L."".([................v.K" +1721 4.700068474 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524050 12 -1 694868 0 0xffffffff 0 -1 694868 0 ff ff ff ff 54 9a 0a 00 00 00 00 00 ....T....... +1723 4.700975180 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524062 12 30 703315 0 0x0000001e 0 30 703315 0 1e 00 00 00 53 bb 0a 00 00 00 00 00 ....S....... +1725 4.701110363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524074 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 33751040 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1727 4.701415777 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854752 12 -1 703315 0 0xffffffff 0 -1 703315 0 ff ff ff ff 53 bb 0a 00 00 00 00 00 ....S....... +1729 4.701980352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854764 12 26 694869 0 0x0000001a 0 26 694869 0 1a 00 00 00 55 9a 0a 00 00 00 00 00 ....U....... +1731 4.702131987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854776 26 22 2032131 0 0x00000016 1 2032131 0 196609 0 16 00 00 00 03 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1733 4.702378988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524104 12 -1 694869 0 0xffffffff 0 -1 694869 0 ff ff ff ff 55 9a 0a 00 00 00 00 00 ....U....... +1739 4.772125721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524116 12 26 703316 0 0x0000001a 0 26 703316 0 1a 00 00 00 54 bb 0a 00 00 00 00 00 ....T....... +1741 4.772309542 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524128 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 33882112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1743 4.772758484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854802 12 -1 703316 0 0xffffffff 0 -1 703316 0 ff ff ff ff 54 bb 0a 00 00 00 00 00 ....T....... +1747 4.773385286 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854814 12 22 694870 0 0x00000016 0 22 694870 0 16 00 00 00 56 9a 0a 00 00 00 00 00 ....V....... +1749 4.773548126 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854826 22 18 2032133 0 0x00000012 1 2032133 0 196609 0 12 00 00 00 05 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1751 4.773838997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524154 12 -1 694870 0 0xffffffff 0 -1 694870 0 ff ff ff ff 56 9a 0a 00 00 00 00 00 ....V....... +1759 4.876330376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524166 12 26 703317 0 0x0000001a 0 26 703317 0 1a 00 00 00 55 bb 0a 00 00 00 00 00 ....U....... +1761 4.876564980 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524178 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 34013184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1763 4.876907349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854848 12 -1 703317 0 0xffffffff 0 -1 703317 0 ff ff ff ff 55 bb 0a 00 00 00 00 00 ....U....... +1765 4.877627373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854860 12 22 694871 0 0x00000016 0 22 694871 0 16 00 00 00 57 9a 0a 00 00 00 00 00 ....W....... +1767 4.877795219 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854872 22 18 2032135 0 0x00000012 1 2032135 0 196609 0 12 00 00 00 07 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1769 4.878125191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524204 12 -1 694871 0 0xffffffff 0 -1 694871 0 ff ff ff ff 57 9a 0a 00 00 00 00 00 ....W....... +1775 4.980342388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524216 12 26 703318 0 0x0000001a 0 26 703318 0 1a 00 00 00 56 bb 0a 00 00 00 00 00 ....V....... +1777 4.980539083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524228 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 34144256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1779 4.980951309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854894 12 -1 703318 0 0xffffffff 0 -1 703318 0 ff ff ff ff 56 bb 0a 00 00 00 00 00 ....V....... +1781 4.981514454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854906 12 22 694872 0 0x00000016 0 22 694872 0 16 00 00 00 58 9a 0a 00 00 00 00 00 ....X....... +1783 4.981689692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854918 22 18 2032137 0 0x00000012 1 2032137 0 196609 0 12 00 00 00 09 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1785 4.982027054 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524254 12 -1 694872 0 0xffffffff 0 -1 694872 0 ff ff ff ff 58 9a 0a 00 00 00 00 00 ....X....... +1787 5.002369404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524266 12 101 703319 0 0x00000065 0 101 703319 0 65 00 00 00 57 bb 0a 00 00 00 00 00 e...W....... +1789 5.002524614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524278 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 93 ff 01 00 00 00 00 00 70 25 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 93 ff 01 00 00 00 00 .....!...o3...............p%......?.....3...|8.. +1791 5.003222466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854940 12 -1 703319 0 0xffffffff 0 -1 703319 0 ff ff ff ff 57 bb 0a 00 00 00 00 00 ....W....... +1793 5.003866673 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854952 12 52 694873 0 0x00000034 0 52 694873 0 34 00 00 00 59 9a 0a 00 00 00 00 00 4...Y....... +1795 5.004038572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375854964 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 93 ff 01 00 00 00 00 00 00 00 66 e6 29 4c 4a 01 00 00 "0...Dk.................L."".([...............f.)L" +1797 5.004314184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524379 12 -1 694873 0 0xffffffff 0 -1 694873 0 ff ff ff ff 59 9a 0a 00 00 00 00 00 ....Y....... +1799 5.005112410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524391 12 30 703320 0 0x0000001e 0 30 703320 0 1e 00 00 00 58 bb 0a 00 00 00 00 00 ....X....... +1801 5.005270481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524403 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 34275328 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0b 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1803 5.005701542 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855016 12 -1 703320 0 0xffffffff 0 -1 703320 0 ff ff ff ff 58 bb 0a 00 00 00 00 00 ....X....... +1805 5.006483078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855028 12 26 694874 0 0x0000001a 0 26 694874 0 1a 00 00 00 5a 9a 0a 00 00 00 00 00 ....Z....... +1807 5.006685257 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855040 26 22 2032139 0 0x00000016 1 2032139 0 196609 0 16 00 00 00 0b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1809 5.006925344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524433 12 -1 694874 0 0xffffffff 0 -1 694874 0 ff ff ff ff 5a 9a 0a 00 00 00 00 00 ....Z....... +1813 5.014326334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855066 12 -2 79870 79887 0xfffffffe 0 -2 79870 79887 fe ff ff ff fe 37 01 00 0f 38 01 00 .....7...8.. +1826 5.067890882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524445 12 -2 79888 79870 0xfffffffe 0 -2 79888 79870 fe ff ff ff 10 38 01 00 fe 37 01 00 .....8...7.. +1829 5.082899094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524457 12 26 703321 0 0x0000001a 0 26 703321 0 1a 00 00 00 59 bb 0a 00 00 00 00 00 ....Y....... +1831 5.083081245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524469 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 34406400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1833 5.083437443 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855078 12 -1 703321 0 0xffffffff 0 -1 703321 0 ff ff ff ff 59 bb 0a 00 00 00 00 00 ....Y....... +1835 5.083969593 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855090 12 22 694875 0 0x00000016 0 22 694875 0 16 00 00 00 5b 9a 0a 00 00 00 00 00 ....[....... +1837 5.084253073 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855102 22 18 2032141 0 0x00000012 1 2032141 0 196609 0 12 00 00 00 0d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1839 5.084533930 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524495 12 -1 694875 0 0xffffffff 0 -1 694875 0 ff ff ff ff 5b 9a 0a 00 00 00 00 00 ....[....... +1897 5.185793400 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524507 12 26 703322 0 0x0000001a 0 26 703322 0 1a 00 00 00 5a bb 0a 00 00 00 00 00 ....Z....... +1899 5.186030388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524519 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 34537472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1901 5.186771393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855124 12 -1 703322 0 0xffffffff 0 -1 703322 0 ff ff ff ff 5a bb 0a 00 00 00 00 00 ....Z....... +1903 5.187183619 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855136 12 22 694876 0 0x00000016 0 22 694876 0 16 00 00 00 5c 9a 0a 00 00 00 00 00 ....\....... +1905 5.187593699 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855148 22 18 2032143 0 0x00000012 1 2032143 0 196609 0 12 00 00 00 0f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1906 5.187952280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524545 12 -1 694876 0 0xffffffff 0 -1 694876 0 ff ff ff ff 5c 9a 0a 00 00 00 00 00 ....\....... +1912 5.289766312 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524557 12 26 703323 0 0x0000001a 0 26 703323 0 1a 00 00 00 5b bb 0a 00 00 00 00 00 ....[....... +1914 5.289975882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524569 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 34668544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1916 5.290675879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855170 12 -1 703323 0 0xffffffff 0 -1 703323 0 ff ff ff ff 5b bb 0a 00 00 00 00 00 ....[....... +1918 5.291382074 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855182 12 22 694877 0 0x00000016 0 22 694877 0 16 00 00 00 5d 9a 0a 00 00 00 00 00 ....]....... +1920 5.291550398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855194 22 18 2032145 0 0x00000012 1 2032145 0 196609 0 12 00 00 00 11 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1922 5.291876554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524595 12 -1 694877 0 0xffffffff 0 -1 694877 0 ff ff ff ff 5d 9a 0a 00 00 00 00 00 ....]....... +1924 5.306090117 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524607 12 101 703324 0 0x00000065 0 101 703324 0 65 00 00 00 5c bb 0a 00 00 00 00 00 e...\....... +1926 5.306272507 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524619 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 94 ff 01 00 00 00 00 00 9f 26 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 94 ff 01 00 00 00 00 .....!...o3................&......?.....3...|8.. +1928 5.306631565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855216 12 -1 703324 0 0xffffffff 0 -1 703324 0 ff ff ff ff 5c bb 0a 00 00 00 00 00 ....\....... +1930 5.308059216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855228 12 52 694878 0 0x00000034 0 52 694878 0 34 00 00 00 5e 9a 0a 00 00 00 00 00 4...^....... +1932 5.308345795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855240 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 94 ff 01 00 00 00 00 00 00 00 41 51 58 4c 4a 01 00 00 "0...Dk.................L."".([...............AQXL" +1934 5.308660269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524720 12 -1 694878 0 0xffffffff 0 -1 694878 0 ff ff ff ff 5e 9a 0a 00 00 00 00 00 ....^....... +1936 5.309355736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524732 12 30 703325 0 0x0000001e 0 30 703325 0 1e 00 00 00 5d bb 0a 00 00 00 00 00 ....]....... +1938 5.309495449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524744 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 34799616 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 13 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1940 5.309849501 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855292 12 -1 703325 0 0xffffffff 0 -1 703325 0 ff ff ff ff 5d bb 0a 00 00 00 00 00 ....]....... +1942 5.310516834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855304 12 26 694879 0 0x0000001a 0 26 694879 0 1a 00 00 00 5f 9a 0a 00 00 00 00 00 ...._....... +1944 5.310764790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855316 26 22 2032147 0 0x00000016 1 2032147 0 196609 0 16 00 00 00 13 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1946 5.311161995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524774 12 -1 694879 0 0xffffffff 0 -1 694879 0 ff ff ff ff 5f 9a 0a 00 00 00 00 00 ...._....... +1963 5.393695116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524786 12 26 703326 0 0x0000001a 0 26 703326 0 1a 00 00 00 5e bb 0a 00 00 00 00 00 ....^....... +1965 5.393906832 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524798 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 34930688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1967 5.394289255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855342 12 -1 703326 0 0xffffffff 0 -1 703326 0 ff ff ff ff 5e bb 0a 00 00 00 00 00 ....^....... +1970 5.394904613 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855354 12 22 694880 0 0x00000016 0 22 694880 0 16 00 00 00 60 9a 0a 00 00 00 00 00 ....`....... +1974 5.395120859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855366 22 18 2032149 0 0x00000012 1 2032149 0 196609 0 12 00 00 00 15 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1976 5.395386934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524824 12 -1 694880 0 0xffffffff 0 -1 694880 0 ff ff ff ff 60 9a 0a 00 00 00 00 00 ....`....... +1992 5.496750832 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524836 12 26 703327 0 0x0000001a 0 26 703327 0 1a 00 00 00 5f bb 0a 00 00 00 00 00 ...._....... +1994 5.496923923 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524848 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 35061760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +1996 5.497388601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855388 12 -1 703327 0 0xffffffff 0 -1 703327 0 ff ff ff ff 5f bb 0a 00 00 00 00 00 ...._....... +1998 5.497848511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855400 12 22 694881 0 0x00000016 0 22 694881 0 16 00 00 00 61 9a 0a 00 00 00 00 00 ....a....... +2000 5.498053551 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855412 22 18 2032151 0 0x00000012 1 2032151 0 196609 0 12 00 00 00 17 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2002 5.498346567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524874 12 -1 694881 0 0xffffffff 0 -1 694881 0 ff ff ff ff 61 9a 0a 00 00 00 00 00 ....a....... +2006 5.514812231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855434 12 -2 79871 79888 0xfffffffe 0 -2 79871 79888 fe ff ff ff ff 37 01 00 10 38 01 00 .....7...8.. +2013 5.569550753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524886 12 -2 79889 79871 0xfffffffe 0 -2 79889 79871 fe ff ff ff 11 38 01 00 ff 37 01 00 .....8...7.. +2022 5.600867748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524898 12 26 703328 0 0x0000001a 0 26 703328 0 1a 00 00 00 60 bb 0a 00 00 00 00 00 ....`....... +2024 5.601060390 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524910 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 35192832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +2026 5.601567984 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855446 12 -1 703328 0 0xffffffff 0 -1 703328 0 ff ff ff ff 60 bb 0a 00 00 00 00 00 ....`....... +2028 5.602096319 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855458 12 22 694882 0 0x00000016 0 22 694882 0 16 00 00 00 62 9a 0a 00 00 00 00 00 ....b....... +2030 5.602305174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855470 22 18 2032153 0 0x00000012 1 2032153 0 196609 0 12 00 00 00 19 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2032 5.602655888 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524936 12 -1 694882 0 0xffffffff 0 -1 694882 0 ff ff ff ff 62 9a 0a 00 00 00 00 00 ....b....... +2034 5.611414909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524948 12 101 703329 0 0x00000065 0 101 703329 0 65 00 00 00 61 bb 0a 00 00 00 00 00 e...a....... +2036 5.611576557 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331524960 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 95 ff 01 00 00 00 00 00 d0 27 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 95 ff 01 00 00 00 00 .....!...o3................'......?.....3...|8.. +2038 5.612492323 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855492 12 -1 703329 0 0xffffffff 0 -1 703329 0 ff ff ff ff 61 bb 0a 00 00 00 00 00 ....a....... +2040 5.613309383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855504 12 52 694883 0 0x00000034 0 52 694883 0 34 00 00 00 63 9a 0a 00 00 00 00 00 4...c....... +2042 5.613466263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855516 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 95 ff 01 00 00 00 00 00 00 00 f3 e1 86 4c 4a 01 00 00 "0...Dk.................L."".([..................L" +2044 5.613735676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525061 12 -1 694883 0 0xffffffff 0 -1 694883 0 ff ff ff ff 63 9a 0a 00 00 00 00 00 ....c....... +2046 5.614522934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525073 12 30 703330 0 0x0000001e 0 30 703330 0 1e 00 00 00 62 bb 0a 00 00 00 00 00 ....b....... +2048 5.614668131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525085 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 35323904 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1b 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2050 5.615037441 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855568 12 -1 703330 0 0xffffffff 0 -1 703330 0 ff ff ff ff 62 bb 0a 00 00 00 00 00 ....b....... +2052 5.615605354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855580 12 26 694884 0 0x0000001a 0 26 694884 0 1a 00 00 00 64 9a 0a 00 00 00 00 00 ....d....... +2054 5.615745306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855592 26 22 2032155 0 0x00000016 1 2032155 0 196609 0 16 00 00 00 1b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2056 5.616000652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525115 12 -1 694884 0 0xffffffff 0 -1 694884 0 ff ff ff ff 64 9a 0a 00 00 00 00 00 ....d....... +2058 5.704356432 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525127 12 26 703331 0 0x0000001a 0 26 703331 0 1a 00 00 00 63 bb 0a 00 00 00 00 00 ....c....... +2060 5.704522133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525139 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 35454976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +2062 5.704801559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855618 12 -1 703331 0 0xffffffff 0 -1 703331 0 ff ff ff ff 63 bb 0a 00 00 00 00 00 ....c....... +2064 5.705357790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855630 12 22 694885 0 0x00000016 0 22 694885 0 16 00 00 00 65 9a 0a 00 00 00 00 00 ....e....... +2066 5.705533028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855642 22 18 2032157 0 0x00000012 1 2032157 0 196609 0 12 00 00 00 1d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2068 5.705736399 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525165 12 -1 694885 0 0xffffffff 0 -1 694885 0 ff ff ff ff 65 9a 0a 00 00 00 00 00 ....e....... +2085 5.808440924 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525177 12 26 703332 0 0x0000001a 0 26 703332 0 1a 00 00 00 64 bb 0a 00 00 00 00 00 ....d....... +2087 5.808666945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525189 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 35586048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +2089 5.808991671 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855664 12 -1 703332 0 0xffffffff 0 -1 703332 0 ff ff ff ff 64 bb 0a 00 00 00 00 00 ....d....... +2091 5.809448242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855676 12 22 694886 0 0x00000016 0 22 694886 0 16 00 00 00 66 9a 0a 00 00 00 00 00 ....f....... +2093 5.809616566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855688 22 18 2032159 0 0x00000012 1 2032159 0 196609 0 12 00 00 00 1f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2095 5.809954166 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525215 12 -1 694886 0 0xffffffff 0 -1 694886 0 ff ff ff ff 66 9a 0a 00 00 00 00 00 ....f....... +2099 5.911749840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525227 12 26 703333 0 0x0000001a 0 26 703333 0 1a 00 00 00 65 bb 0a 00 00 00 00 00 ....e....... +2101 5.911911488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525239 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 35717120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 02 1f 00 00 00 00 00 ....T.c@.^1@......!....... +2103 5.912261009 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855710 12 -1 703333 0 0xffffffff 0 -1 703333 0 ff ff ff ff 65 bb 0a 00 00 00 00 00 ....e....... +2105 5.912875175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855722 12 22 694887 0 0x00000016 0 22 694887 0 16 00 00 00 67 9a 0a 00 00 00 00 00 ....g....... +2107 5.913097382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855734 22 18 2032161 0 0x00000012 1 2032161 0 196609 0 12 00 00 00 21 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +2109 5.913383484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525265 12 -1 694887 0 0xffffffff 0 -1 694887 0 ff ff ff ff 67 9a 0a 00 00 00 00 00 ....g....... +2111 5.916875601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525277 12 101 703334 0 0x00000065 0 101 703334 0 65 00 00 00 66 bb 0a 00 00 00 00 00 e...f....... +2113 5.917070389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525289 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 96 ff 01 00 00 00 00 00 02 29 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 96 ff 01 00 00 00 00 .....!...o3................)......?.....3...|8.. +2115 5.917314529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855756 12 -1 703334 0 0xffffffff 0 -1 703334 0 ff ff ff ff 66 bb 0a 00 00 00 00 00 ....f....... +2117 5.918708563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855768 12 52 694888 0 0x00000034 0 52 694888 0 34 00 00 00 68 9a 0a 00 00 00 00 00 4...h....... +2119 5.918869972 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855780 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 96 ff 01 00 00 00 00 00 00 00 b3 7e b5 4c 4a 01 00 00 "0...Dk.................L."".([................~.L" +2121 5.919313431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525390 12 -1 694888 0 0xffffffff 0 -1 694888 0 ff ff ff ff 68 9a 0a 00 00 00 00 00 ....h....... +2123 5.919864178 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525402 12 30 703335 0 0x0000001e 0 30 703335 0 1e 00 00 00 67 bb 0a 00 00 00 00 00 ....g....... +2125 5.920033693 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525414 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 35848192 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 23 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......#........... +2127 5.920369148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855832 12 -1 703335 0 0xffffffff 0 -1 703335 0 ff ff ff ff 67 bb 0a 00 00 00 00 00 ....g....... +2129 5.920716524 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855844 12 26 694889 0 0x0000001a 0 26 694889 0 1a 00 00 00 69 9a 0a 00 00 00 00 00 ....i....... +2131 5.920865297 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855856 26 22 2032163 0 0x00000016 1 2032163 0 196609 0 16 00 00 00 23 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....#..................... +2133 5.921145678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525444 12 -1 694889 0 0xffffffff 0 -1 694889 0 ff ff ff ff 69 9a 0a 00 00 00 00 00 ....i....... +2137 6.014629364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855882 12 -2 79872 79889 0xfffffffe 0 -2 79872 79889 fe ff ff ff 00 38 01 00 11 38 01 00 .....8...8.. +2140 6.014810562 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525456 38 26 703336 0 0x0000001a 0 26 703336 0 22 1a 00 00 00 68 bb 0a 00 00 00 00 00 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 02 1f 00 00 00 00 00 ....h...........T.c@.^1@......%....... +2143 6.015212536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855894 12 -1 703336 0 0xffffffff 0 -1 703336 0 ff ff ff ff 68 bb 0a 00 00 00 00 00 ....h....... +2146 6.016143799 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855906 12 22 694890 0 0x00000016 0 22 694890 0 16 00 00 00 6a 9a 0a 00 00 00 00 00 ....j....... +2148 6.016385317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855918 22 18 2032165 0 0x00000012 1 2032165 0 196609 0 12 00 00 00 25 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +2150 6.016722441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525494 12 -1 694890 0 0xffffffff 0 -1 694890 0 ff ff ff ff 6a 9a 0a 00 00 00 00 00 ....j....... +2153 6.071613073 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525506 12 -2 79890 79872 0xfffffffe 0 -2 79890 79872 fe ff ff ff 12 38 01 00 00 38 01 00 .....8...8.. +2162 6.118396282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525518 12 26 703337 0 0x0000001a 0 26 703337 0 1a 00 00 00 69 bb 0a 00 00 00 00 00 ....i....... +2164 6.118568182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525530 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 36110336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 02 1f 00 00 00 00 00 ....T.c@.^1@......'....... +2166 6.118994474 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855940 12 -1 703337 0 0xffffffff 0 -1 703337 0 ff ff ff ff 69 bb 0a 00 00 00 00 00 ....i....... +2168 6.119543552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855952 12 22 694891 0 0x00000016 0 22 694891 0 16 00 00 00 6b 9a 0a 00 00 00 00 00 ....k....... +2170 6.119708061 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855964 22 18 2032167 0 0x00000012 1 2032167 0 196609 0 12 00 00 00 27 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +2172 6.119976282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525556 12 -1 694891 0 0xffffffff 0 -1 694891 0 ff ff ff ff 6b 9a 0a 00 00 00 00 00 ....k....... +2180 6.221194744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525568 12 101 703338 0 0x00000065 0 101 703338 0 65 00 00 00 6a bb 0a 00 00 00 00 00 e...j....... +2182 6.221454859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525580 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 97 ff 01 00 00 00 00 00 32 2a 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 97 ff 01 00 00 00 00 .....!...o3...............2*......?.....3...|8.. +2184 6.221650839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525681 12 26 703339 0 0x0000001a 0 26 703339 0 1a 00 00 00 6b bb 0a 00 00 00 00 00 ....k....... +2186 6.221773863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525693 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 36241408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 02 1f 00 00 00 00 00 ....T.c@.^1@......)....... +2187 6.221787930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855986 12 -1 703338 0 0xffffffff 0 -1 703338 0 ff ff ff ff 6a bb 0a 00 00 00 00 00 ....j....... +2190 6.222007751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375855998 12 -1 703339 0 0xffffffff 0 -1 703339 0 ff ff ff ff 6b bb 0a 00 00 00 00 00 ....k....... +2192 6.222476721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856010 12 22 694892 0 0x00000016 0 22 694892 0 16 00 00 00 6c 9a 0a 00 00 00 00 00 ....l....... +2194 6.222646475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856022 22 18 2032169 0 0x00000012 1 2032169 0 196609 0 12 00 00 00 29 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +2196 6.222805977 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856044 12 52 694893 0 0x00000034 0 52 694893 0 34 00 00 00 6d 9a 0a 00 00 00 00 00 4...m....... +2198 6.222893953 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856056 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 97 ff 01 00 00 00 00 00 00 00 c0 e8 e3 4c 4a 01 00 00 "0...Dk.................L."".([..................L" +2199 6.222916842 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525719 12 -1 694892 0 0xffffffff 0 -1 694892 0 ff ff ff ff 6c 9a 0a 00 00 00 00 00 ....l....... +2201 6.223116398 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525731 12 -1 694893 0 0xffffffff 0 -1 694893 0 ff ff ff ff 6d 9a 0a 00 00 00 00 00 ....m....... +2202 6.223922968 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525743 12 30 703340 0 0x0000001e 0 30 703340 0 1e 00 00 00 6c bb 0a 00 00 00 00 00 ....l....... +2204 6.224127293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525755 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 36372480 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2b 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......+........... +2206 6.224545956 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856108 12 -1 703340 0 0xffffffff 0 -1 703340 0 ff ff ff ff 6c bb 0a 00 00 00 00 00 ....l....... +2207 6.224887609 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856120 12 26 694894 0 0x0000001a 0 26 694894 0 1a 00 00 00 6e 9a 0a 00 00 00 00 00 ....n....... +2209 6.225250959 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856132 26 22 2032171 0 0x00000016 1 2032171 0 196609 0 16 00 00 00 2b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....+..................... +2211 6.225527287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525785 12 -1 694894 0 0xffffffff 0 -1 694894 0 ff ff ff ff 6e 9a 0a 00 00 00 00 00 ....n....... +2215 6.324945688 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525797 12 26 703341 0 0x0000001a 0 26 703341 0 1a 00 00 00 6d bb 0a 00 00 00 00 00 ....m....... +2217 6.325141668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525809 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 36503552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 02 1f 00 00 00 00 00 ....T.c@.^1@......-....... +2219 6.325559855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856158 12 -1 703341 0 0xffffffff 0 -1 703341 0 ff ff ff ff 6d bb 0a 00 00 00 00 00 ....m....... +2221 6.326254368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856170 12 22 694895 0 0x00000016 0 22 694895 0 16 00 00 00 6f 9a 0a 00 00 00 00 00 ....o....... +2223 6.326567650 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856182 22 18 2032173 0 0x00000012 1 2032173 0 196609 0 12 00 00 00 2d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +2225 6.326902866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525835 12 -1 694895 0 0xffffffff 0 -1 694895 0 ff ff ff ff 6f 9a 0a 00 00 00 00 00 ....o....... +2229 6.428864241 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525847 12 26 703342 0 0x0000001a 0 26 703342 0 1a 00 00 00 6e bb 0a 00 00 00 00 00 ....n....... +2231 6.429033518 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525859 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 36634624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 02 1f 00 00 00 00 00 ....T.c@.^1@....../....... +2233 6.429378271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856204 12 -1 703342 0 0xffffffff 0 -1 703342 0 ff ff ff ff 6e bb 0a 00 00 00 00 00 ....n....... +2235 6.430672407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856216 12 22 694896 0 0x00000016 0 22 694896 0 16 00 00 00 70 9a 0a 00 00 00 00 00 ....p....... +2237 6.430899858 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856228 22 18 2032175 0 0x00000012 1 2032175 0 196609 0 12 00 00 00 2f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +2239 6.431255102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525885 12 -1 694896 0 0xffffffff 0 -1 694896 0 ff ff ff ff 70 9a 0a 00 00 00 00 00 ....p....... +2244 6.515846968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856250 12 -2 79873 79890 0xfffffffe 0 -2 79873 79890 fe ff ff ff 01 38 01 00 12 38 01 00 .....8...8.. +2249 6.525126219 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525897 12 34 703343 0 0x00000022 0 34 703343 0 22 00 00 00 6f bb 0a 00 00 00 00 00 """...o......." +2251 6.525305033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525909 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -6815744 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 98 ff 01 00 00 00 00 00 62 2b 0e c3 9d 01 00 00 .....!...o3...............b+...... +2253 6.525395155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525943 12 67 703344 0 0x00000043 0 67 703344 0 43 00 00 00 70 bb 0a 00 00 00 00 00 C...p....... +2255 6.525479078 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331525955 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 98 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f bc 27 81 f5 8e ?.....3...|8...................=B.....&......... +2257 6.525640249 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856262 12 -1 703343 0 0xffffffff 0 -1 703343 0 ff ff ff ff 6f bb 0a 00 00 00 00 00 ....o....... +2259 6.525883675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856274 12 -1 703344 0 0xffffffff 0 -1 703344 0 ff ff ff ff 70 bb 0a 00 00 00 00 00 ....p....... +2261 6.527145863 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856286 12 52 694897 0 0x00000034 0 52 694897 0 34 00 00 00 71 9a 0a 00 00 00 00 00 4...q....... +2263 6.527347088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856298 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 98 ff 01 00 00 00 00 00 00 00 2e 54 12 4d 4a 01 00 00 "0...Dk.................L."".([................T.M" +2265 6.527643442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526022 12 -1 694897 0 0xffffffff 0 -1 694897 0 ff ff ff ff 71 9a 0a 00 00 00 00 00 ....q....... +2267 6.528448105 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526034 12 30 703345 0 0x0000001e 0 30 703345 0 1e 00 00 00 71 bb 0a 00 00 00 00 00 ....q....... +2269 6.528590441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526046 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 36765696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +2271 6.528877497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856350 12 -1 703345 0 0xffffffff 0 -1 703345 0 ff ff ff ff 71 bb 0a 00 00 00 00 00 ....q....... +2273 6.529370070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856362 12 26 694898 0 0x0000001a 0 26 694898 0 1a 00 00 00 72 9a 0a 00 00 00 00 00 ....r....... +2275 6.529582262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856374 26 22 2032177 0 0x00000016 1 2032177 0 196609 0 16 00 00 00 31 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +2277 6.529857397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526076 12 -1 694898 0 0xffffffff 0 -1 694898 0 ff ff ff ff 72 9a 0a 00 00 00 00 00 ....r....... +2279 6.533478022 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526088 12 26 703346 0 0x0000001a 0 26 703346 0 1a 00 00 00 72 bb 0a 00 00 00 00 00 ....r....... +2281 6.533615112 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526100 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 36896768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 02 1f 00 00 00 00 00 ....T.c@.^1@......3....... +2283 6.534037113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856400 12 -1 703346 0 0xffffffff 0 -1 703346 0 ff ff ff ff 72 bb 0a 00 00 00 00 00 ....r....... +2285 6.534413576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856412 12 22 694899 0 0x00000016 0 22 694899 0 16 00 00 00 73 9a 0a 00 00 00 00 00 ....s....... +2287 6.534625769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856424 22 18 2032179 0 0x00000012 1 2032179 0 196609 0 12 00 00 00 33 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +2289 6.534927130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526126 12 -1 694899 0 0xffffffff 0 -1 694899 0 ff ff ff ff 73 9a 0a 00 00 00 00 00 ....s....... +2292 6.574143648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526138 12 -2 79891 79873 0xfffffffe 0 -2 79891 79873 fe ff ff ff 13 38 01 00 01 38 01 00 .....8...8.. +2301 6.637550831 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526150 12 26 703347 0 0x0000001a 0 26 703347 0 1a 00 00 00 73 bb 0a 00 00 00 00 00 ....s....... +2303 6.637692213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526162 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 37027840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 02 1f 00 00 00 00 00 ....T.c@.^1@......5....... +2305 6.638136148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856446 12 -1 703347 0 0xffffffff 0 -1 703347 0 ff ff ff ff 73 bb 0a 00 00 00 00 00 ....s....... +2307 6.638698578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856458 12 22 694900 0 0x00000016 0 22 694900 0 16 00 00 00 74 9a 0a 00 00 00 00 00 ....t....... +2309 6.638924599 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856470 22 18 2032181 0 0x00000012 1 2032181 0 196609 0 12 00 00 00 35 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +2311 6.639157295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526188 12 -1 694900 0 0xffffffff 0 -1 694900 0 ff ff ff ff 74 9a 0a 00 00 00 00 00 ....t....... +2317 6.741018057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526200 12 26 703348 0 0x0000001a 0 26 703348 0 1a 00 00 00 74 bb 0a 00 00 00 00 00 ....t....... +2319 6.741296291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526212 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 37158912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 02 1f 00 00 00 00 00 ....T.c@.^1@......7....... +2321 6.742007732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856492 12 -1 703348 0 0xffffffff 0 -1 703348 0 ff ff ff ff 74 bb 0a 00 00 00 00 00 ....t....... +2323 6.742301941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856504 12 22 694901 0 0x00000016 0 22 694901 0 16 00 00 00 75 9a 0a 00 00 00 00 00 ....u....... +2325 6.742519140 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856516 22 18 2032183 0 0x00000012 1 2032183 0 196609 0 12 00 00 00 37 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +2327 6.742797375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526238 12 -1 694901 0 0xffffffff 0 -1 694901 0 ff ff ff ff 75 9a 0a 00 00 00 00 00 ....u....... +2329 6.829426765 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526250 12 34 703349 0 0x00000022 0 34 703349 0 22 00 00 00 75 bb 0a 00 00 00 00 00 """...u......." +2331 6.829621792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526262 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -6750208 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 99 ff 01 00 00 00 00 00 92 2c 0e c3 9d 01 00 00 .....!...o3................,...... +2333 6.829763412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526296 12 67 703350 0 0x00000043 0 67 703350 0 43 00 00 00 76 bb 0a 00 00 00 00 00 C...v....... +2335 6.829848528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526308 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 99 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 30 a5 07 8f ?.....3...|8...................=B.....&......... +2337 6.829996109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856538 12 -1 703349 0 0xffffffff 0 -1 703349 0 ff ff ff ff 75 bb 0a 00 00 00 00 00 ....u....... +2339 6.830278158 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856550 12 -1 703350 0 0xffffffff 0 -1 703350 0 ff ff ff ff 76 bb 0a 00 00 00 00 00 ....v....... +2341 6.831090689 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856562 12 52 694902 0 0x00000034 0 52 694902 0 34 00 00 00 76 9a 0a 00 00 00 00 00 4...v....... +2343 6.831259489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856574 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 99 ff 01 00 00 00 00 00 00 00 6c b7 40 4d 4a 01 00 00 "0...Dk.................L."".([...............l.@M" +2345 6.831587076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526375 12 -1 694902 0 0xffffffff 0 -1 694902 0 ff ff ff ff 76 9a 0a 00 00 00 00 00 ....v....... +2347 6.832336426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526387 12 30 703351 0 0x0000001e 0 30 703351 0 1e 00 00 00 77 bb 0a 00 00 00 00 00 ....w....... +2349 6.832474709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526399 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 37289984 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +2351 6.832692146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856626 12 -1 703351 0 0xffffffff 0 -1 703351 0 ff ff ff ff 77 bb 0a 00 00 00 00 00 ....w....... +2353 6.833130360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856638 12 26 694903 0 0x0000001a 0 26 694903 0 1a 00 00 00 77 9a 0a 00 00 00 00 00 ....w....... +2355 6.833308935 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856650 26 22 2032185 0 0x00000016 1 2032185 0 196609 0 16 00 00 00 39 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +2357 6.833624363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526429 12 -1 694903 0 0xffffffff 0 -1 694903 0 ff ff ff ff 77 9a 0a 00 00 00 00 00 ....w....... +2359 6.843726397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526441 12 26 703352 0 0x0000001a 0 26 703352 0 1a 00 00 00 78 bb 0a 00 00 00 00 00 ....x....... +2361 6.843883753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526453 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 37421056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 02 1f 00 00 00 00 00 ....T.c@.^1@......;....... +2363 6.844219208 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856676 12 -1 703352 0 0xffffffff 0 -1 703352 0 ff ff ff ff 78 bb 0a 00 00 00 00 00 ....x....... +2365 6.844639301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856688 12 22 694904 0 0x00000016 0 22 694904 0 16 00 00 00 78 9a 0a 00 00 00 00 00 ....x....... +2367 6.844806194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856700 22 18 2032187 0 0x00000012 1 2032187 0 196609 0 12 00 00 00 3b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +2369 6.844994068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526479 12 -1 694904 0 0xffffffff 0 -1 694904 0 ff ff ff ff 78 9a 0a 00 00 00 00 00 ....x....... +2373 6.946285963 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526491 12 26 703353 0 0x0000001a 0 26 703353 0 1a 00 00 00 79 bb 0a 00 00 00 00 00 ....y....... +2375 6.946560383 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526503 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 37552128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 02 1f 00 00 00 00 00 ....T.c@.^1@......=....... +2377 6.946872473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856722 12 -1 703353 0 0xffffffff 0 -1 703353 0 ff ff ff ff 79 bb 0a 00 00 00 00 00 ....y....... +2379 6.947325468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856734 12 22 694905 0 0x00000016 0 22 694905 0 16 00 00 00 79 9a 0a 00 00 00 00 00 ....y....... +2381 6.947488308 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856746 22 18 2032189 0 0x00000012 1 2032189 0 196609 0 12 00 00 00 3d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +2383 6.947765589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526529 12 -1 694905 0 0xffffffff 0 -1 694905 0 ff ff ff ff 79 9a 0a 00 00 00 00 00 ....y....... +2391 7.016530275 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856768 12 -2 79874 79891 0xfffffffe 0 -2 79874 79891 fe ff ff ff 02 38 01 00 13 38 01 00 .....8...8.. +2394 7.048909187 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526541 12 26 703354 0 0x0000001a 0 26 703354 0 1a 00 00 00 7a bb 0a 00 00 00 00 00 ....z....... +2396 7.049139261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526553 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 37683200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 02 1f 00 00 00 00 00 ....T.c@.^1@......?....... +2398 7.049550533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856780 12 -1 703354 0 0xffffffff 0 -1 703354 0 ff ff ff ff 7a bb 0a 00 00 00 00 00 ....z....... +2400 7.049883366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856792 12 22 694906 0 0x00000016 0 22 694906 0 16 00 00 00 7a 9a 0a 00 00 00 00 00 ....z....... +2402 7.050041676 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856804 22 18 2032191 0 0x00000012 1 2032191 0 196609 0 12 00 00 00 3f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +2404 7.050373077 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526579 12 -1 694906 0 0xffffffff 0 -1 694906 0 ff ff ff ff 7a 9a 0a 00 00 00 00 00 ....z....... +2408 7.075774670 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526591 12 -2 79892 79874 0xfffffffe 0 -2 79892 79874 fe ff ff ff 14 38 01 00 02 38 01 00 .....8...8.. +2416 7.134387016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526603 12 34 703355 0 0x00000022 0 34 703355 0 22 00 00 00 7b bb 0a 00 00 00 00 00 """...{......." +2418 7.134596348 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526615 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -6684672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9a ff 01 00 00 00 00 00 c3 2d 0e c3 9d 01 00 00 .....!...o3................-...... +2420 7.134741783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526649 12 67 703356 0 0x00000043 0 67 703356 0 43 00 00 00 7c bb 0a 00 00 00 00 00 C...|....... +2422 7.134827137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526661 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9a ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 73 df 19 8f ?.....3...|8...................=B.....&......... +2424 7.134997368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856826 12 -1 703355 0 0xffffffff 0 -1 703355 0 ff ff ff ff 7b bb 0a 00 00 00 00 00 ....{....... +2426 7.135271072 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856838 12 -1 703356 0 0xffffffff 0 -1 703356 0 ff ff ff ff 7c bb 0a 00 00 00 00 00 ....|....... +2428 7.136113405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856850 12 52 694907 0 0x00000034 0 52 694907 0 34 00 00 00 7b 9a 0a 00 00 00 00 00 4...{....... +2430 7.136316776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856862 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9a ff 01 00 00 00 00 00 00 00 cd 3e 6f 4d 4a 01 00 00 "0...Dk.................L."".([................>oM" +2432 7.136537790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526728 12 -1 694907 0 0xffffffff 0 -1 694907 0 ff ff ff ff 7b 9a 0a 00 00 00 00 00 ....{....... +2434 7.137310982 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526740 12 30 703357 0 0x0000001e 0 30 703357 0 1e 00 00 00 7d bb 0a 00 00 00 00 00 ....}....... +2436 7.137461424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526752 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 37814272 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +2438 7.137767792 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856914 12 -1 703357 0 0xffffffff 0 -1 703357 0 ff ff ff ff 7d bb 0a 00 00 00 00 00 ....}....... +2440 7.138143778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856926 12 26 694908 0 0x0000001a 0 26 694908 0 1a 00 00 00 7c 9a 0a 00 00 00 00 00 ....|....... +2442 7.138360023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856938 26 22 2032193 0 0x00000016 1 2032193 0 196609 0 16 00 00 00 41 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +2444 7.138583899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526782 12 -1 694908 0 0xffffffff 0 -1 694908 0 ff ff ff ff 7c 9a 0a 00 00 00 00 00 ....|....... +2446 7.151676416 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526794 12 26 703358 0 0x0000001a 0 26 703358 0 1a 00 00 00 7e bb 0a 00 00 00 00 00 ....~....... +2448 7.151827335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526806 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 37945344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 02 1f 00 00 00 00 00 ....T.c@.^1@......C....... +2450 7.152114868 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856964 12 -1 703358 0 0xffffffff 0 -1 703358 0 ff ff ff ff 7e bb 0a 00 00 00 00 00 ....~....... +2452 7.152526617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856976 12 22 694909 0 0x00000016 0 22 694909 0 16 00 00 00 7d 9a 0a 00 00 00 00 00 ....}....... +2454 7.152715206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375856988 22 18 2032195 0 0x00000012 1 2032195 0 196609 0 12 00 00 00 43 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +2456 7.153019190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526832 12 -1 694909 0 0xffffffff 0 -1 694909 0 ff ff ff ff 7d 9a 0a 00 00 00 00 00 ....}....... +2462 7.254195452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526844 12 26 703359 0 0x0000001a 0 26 703359 0 1a 00 00 00 7f bb 0a 00 00 00 00 00 ............ +2464 7.254420280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526856 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 38076416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 02 1f 00 00 00 00 00 ....T.c@.^1@......E....... +2466 7.254972458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857010 12 -1 703359 0 0xffffffff 0 -1 703359 0 ff ff ff ff 7f bb 0a 00 00 00 00 00 ............ +2468 7.255618334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857022 12 22 694910 0 0x00000016 0 22 694910 0 16 00 00 00 7e 9a 0a 00 00 00 00 00 ....~....... +2470 7.255836487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857034 22 18 2032197 0 0x00000012 1 2032197 0 196609 0 12 00 00 00 45 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +2472 7.256148338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526882 12 -1 694910 0 0xffffffff 0 -1 694910 0 ff ff ff ff 7e 9a 0a 00 00 00 00 00 ....~....... +2474 7.358998060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526894 12 26 703360 0 0x0000001a 0 26 703360 0 1a 00 00 00 80 bb 0a 00 00 00 00 00 ............ +2476 7.359193802 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526906 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 38207488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 02 1f 00 00 00 00 00 ....T.c@.^1@......G....... +2478 7.359573841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857056 12 -1 703360 0 0xffffffff 0 -1 703360 0 ff ff ff ff 80 bb 0a 00 00 00 00 00 ............ +2480 7.360042572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857068 12 22 694911 0 0x00000016 0 22 694911 0 16 00 00 00 7f 9a 0a 00 00 00 00 00 ............ +2482 7.360198259 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857080 22 18 2032199 0 0x00000012 1 2032199 0 196609 0 12 00 00 00 47 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +2484 7.360529423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526932 12 -1 694911 0 0xffffffff 0 -1 694911 0 ff ff ff ff 7f 9a 0a 00 00 00 00 00 ............ +2500 7.438880205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526944 12 101 703361 0 0x00000065 0 101 703361 0 65 00 00 00 81 bb 0a 00 00 00 00 00 e........... +2502 7.439095736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331526956 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9b ff 01 00 00 00 00 00 f4 2e 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9b ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +2504 7.439519882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857102 12 -1 703361 0 0xffffffff 0 -1 703361 0 ff ff ff ff 81 bb 0a 00 00 00 00 00 ............ +2506 7.441679478 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857114 12 52 694912 0 0x00000034 0 52 694912 0 34 00 00 00 80 9a 0a 00 00 00 00 00 4........... +2508 7.441875696 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857126 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9b ff 01 00 00 00 00 00 00 00 85 df 9d 4d 4a 01 00 00 "0...Dk.................L."".([..................M" +2510 7.442159653 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527057 12 -1 694912 0 0xffffffff 0 -1 694912 0 ff ff ff ff 80 9a 0a 00 00 00 00 00 ............ +2512 7.442970991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527069 12 30 703362 0 0x0000001e 0 30 703362 0 1e 00 00 00 82 bb 0a 00 00 00 00 00 ............ +2514 7.443116903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527081 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 38338560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +2516 7.443778515 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857178 12 -1 703362 0 0xffffffff 0 -1 703362 0 ff ff ff ff 82 bb 0a 00 00 00 00 00 ............ +2518 7.444022179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857190 12 26 694913 0 0x0000001a 0 26 694913 0 1a 00 00 00 81 9a 0a 00 00 00 00 00 ............ +2520 7.444200277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857202 26 22 2032201 0 0x00000016 1 2032201 0 196609 0 16 00 00 00 49 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +2522 7.444491863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527111 12 -1 694913 0 0xffffffff 0 -1 694913 0 ff ff ff ff 81 9a 0a 00 00 00 00 00 ............ +2524 7.461651564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527123 12 26 703363 0 0x0000001a 0 26 703363 0 1a 00 00 00 83 bb 0a 00 00 00 00 00 ............ +2526 7.461808443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527135 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 38469632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 02 1f 00 00 00 00 00 ....T.c@.^1@......K....... +2528 7.462174177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857228 12 -1 703363 0 0xffffffff 0 -1 703363 0 ff ff ff ff 83 bb 0a 00 00 00 00 00 ............ +2530 7.462615490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857240 12 22 694914 0 0x00000016 0 22 694914 0 16 00 00 00 82 9a 0a 00 00 00 00 00 ............ +2532 7.462823868 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857252 22 18 2032203 0 0x00000012 1 2032203 0 196609 0 12 00 00 00 4b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +2534 7.463092566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527161 12 -1 694914 0 0xffffffff 0 -1 694914 0 ff ff ff ff 82 9a 0a 00 00 00 00 00 ............ +2542 7.517233849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857274 12 -2 79875 79892 0xfffffffe 0 -2 79875 79892 fe ff ff ff 03 38 01 00 14 38 01 00 .....8...8.. +2544 7.564974070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527173 12 26 703364 0 0x0000001a 0 26 703364 0 1a 00 00 00 84 bb 0a 00 00 00 00 00 ............ +2546 7.565157652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527185 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 38600704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 02 1f 00 00 00 00 00 ....T.c@.^1@......M....... +2548 7.565616369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857286 12 -1 703364 0 0xffffffff 0 -1 703364 0 ff ff ff ff 84 bb 0a 00 00 00 00 00 ............ +2550 7.566246271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857298 12 22 694915 0 0x00000016 0 22 694915 0 16 00 00 00 83 9a 0a 00 00 00 00 00 ............ +2552 7.566476583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857310 22 18 2032205 0 0x00000012 1 2032205 0 196609 0 12 00 00 00 4d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +2554 7.566778660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527211 12 -1 694915 0 0xffffffff 0 -1 694915 0 ff ff ff ff 83 9a 0a 00 00 00 00 00 ............ +2557 7.576553345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527223 12 -2 79893 79875 0xfffffffe 0 -2 79893 79875 fe ff ff ff 15 38 01 00 03 38 01 00 .....8...8.. +2566 7.668958426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527235 12 26 703365 0 0x0000001a 0 26 703365 0 1a 00 00 00 85 bb 0a 00 00 00 00 00 ............ +2568 7.669141531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527247 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 38731776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 02 1f 00 00 00 00 00 ....T.c@.^1@......O....... +2570 7.669607878 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857332 12 -1 703365 0 0xffffffff 0 -1 703365 0 ff ff ff ff 85 bb 0a 00 00 00 00 00 ............ +2572 7.672155380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857344 12 22 694916 0 0x00000016 0 22 694916 0 16 00 00 00 84 9a 0a 00 00 00 00 00 ............ +2574 7.672516346 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857356 22 18 2032207 0 0x00000012 1 2032207 0 196609 0 12 00 00 00 4f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +2576 7.672801733 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527273 12 -1 694916 0 0xffffffff 0 -1 694916 0 ff ff ff ff 84 9a 0a 00 00 00 00 00 ............ +2582 7.745324373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527285 12 101 703366 0 0x00000065 0 101 703366 0 65 00 00 00 86 bb 0a 00 00 00 00 00 e........... +2584 7.745613337 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527297 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9c ff 01 00 00 00 00 00 26 30 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9c ff 01 00 00 00 00 .....!...o3...............&0......?.....3...|8.. +2586 7.746248245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857378 12 -1 703366 0 0xffffffff 0 -1 703366 0 ff ff ff ff 86 bb 0a 00 00 00 00 00 ............ +2588 7.748026848 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857390 12 52 694917 0 0x00000034 0 52 694917 0 34 00 00 00 85 9a 0a 00 00 00 00 00 4........... +2590 7.748552799 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857402 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9c ff 01 00 00 00 00 00 00 00 3e 93 cc 4d 4a 01 00 00 "0...Dk.................L."".([...............>..M" +2592 7.749630928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527398 12 -1 694917 0 0xffffffff 0 -1 694917 0 ff ff ff ff 85 9a 0a 00 00 00 00 00 ............ +2594 7.750563145 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527410 12 30 703367 0 0x0000001e 0 30 703367 0 1e 00 00 00 87 bb 0a 00 00 00 00 00 ............ +2596 7.750895500 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527422 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 38862848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +2598 7.751512289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857454 12 -1 703367 0 0xffffffff 0 -1 703367 0 ff ff ff ff 87 bb 0a 00 00 00 00 00 ............ +2600 7.752252102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857466 12 26 694918 0 0x0000001a 0 26 694918 0 1a 00 00 00 86 9a 0a 00 00 00 00 00 ............ +2602 7.752772808 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857478 26 22 2032209 0 0x00000016 1 2032209 0 196609 0 16 00 00 00 51 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +2604 7.753776312 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527452 12 -1 694918 0 0xffffffff 0 -1 694918 0 ff ff ff ff 86 9a 0a 00 00 00 00 00 ............ +2606 7.775517702 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527464 12 26 703368 0 0x0000001a 0 26 703368 0 1a 00 00 00 88 bb 0a 00 00 00 00 00 ............ +2608 7.775668383 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527476 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 38993920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 02 1f 00 00 00 00 00 ....T.c@.^1@......S....... +2610 7.775919199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857504 12 -1 703368 0 0xffffffff 0 -1 703368 0 ff ff ff ff 88 bb 0a 00 00 00 00 00 ............ +2612 7.776536703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857516 12 22 694919 0 0x00000016 0 22 694919 0 16 00 00 00 87 9a 0a 00 00 00 00 00 ............ +2614 7.776743889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857528 22 18 2032211 0 0x00000012 1 2032211 0 196609 0 12 00 00 00 53 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +2616 7.777121067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527502 12 -1 694919 0 0xffffffff 0 -1 694919 0 ff ff ff ff 87 9a 0a 00 00 00 00 00 ............ +2619 7.878652334 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527514 12 26 703369 0 0x0000001a 0 26 703369 0 1a 00 00 00 89 bb 0a 00 00 00 00 00 ............ +2621 7.878836870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527526 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 39124992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 02 1f 00 00 00 00 00 ....T.c@.^1@......U....... +2623 7.879297972 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857550 12 -1 703369 0 0xffffffff 0 -1 703369 0 ff ff ff ff 89 bb 0a 00 00 00 00 00 ............ +2625 7.879768372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857562 12 22 694920 0 0x00000016 0 22 694920 0 16 00 00 00 88 9a 0a 00 00 00 00 00 ............ +2627 7.879937887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857574 22 18 2032213 0 0x00000012 1 2032213 0 196609 0 12 00 00 00 55 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +2629 7.880303383 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527552 12 -1 694920 0 0xffffffff 0 -1 694920 0 ff ff ff ff 88 9a 0a 00 00 00 00 00 ............ +2635 7.981577396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527564 12 26 703370 0 0x0000001a 0 26 703370 0 1a 00 00 00 8a bb 0a 00 00 00 00 00 ............ +2638 7.981757879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527576 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 39256064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 02 1f 00 00 00 00 00 ....T.c@.^1@......W....... +2640 7.982139349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857596 12 -1 703370 0 0xffffffff 0 -1 703370 0 ff ff ff ff 8a bb 0a 00 00 00 00 00 ............ +2642 7.982805729 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857608 12 22 694921 0 0x00000016 0 22 694921 0 16 00 00 00 89 9a 0a 00 00 00 00 00 ............ +2644 7.982954264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857620 22 18 2032215 0 0x00000012 1 2032215 0 196609 0 12 00 00 00 57 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +2646 7.983190298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527602 12 -1 694921 0 0xffffffff 0 -1 694921 0 ff ff ff ff 89 9a 0a 00 00 00 00 00 ............ +2654 8.017830133 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857642 12 -2 79876 79893 0xfffffffe 0 -2 79876 79893 fe ff ff ff 04 38 01 00 15 38 01 00 .....8...8.. +2656 8.053230524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527614 12 101 703371 0 0x00000065 0 101 703371 0 65 00 00 00 8b bb 0a 00 00 00 00 00 e........... +2658 8.053422213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527626 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9d ff 01 00 00 00 00 00 5a 31 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9d ff 01 00 00 00 00 .....!...o3...............Z1......?.....3...|8.. +2660 8.053928614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857654 12 -1 703371 0 0xffffffff 0 -1 703371 0 ff ff ff ff 8b bb 0a 00 00 00 00 00 ............ +2662 8.054911137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857666 12 52 694922 0 0x00000034 0 52 694922 0 34 00 00 00 8a 9a 0a 00 00 00 00 00 4........... +2664 8.055058002 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857678 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9d ff 01 00 00 00 00 00 00 00 c8 74 fb 4d 4a 01 00 00 "0...Dk.................L."".([................t.M" +2666 8.055361509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527727 12 -1 694922 0 0xffffffff 0 -1 694922 0 ff ff ff ff 8a 9a 0a 00 00 00 00 00 ............ +2668 8.056164265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527739 12 30 703372 0 0x0000001e 0 30 703372 0 1e 00 00 00 8c bb 0a 00 00 00 00 00 ............ +2670 8.056395769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527751 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 39387136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +2672 8.056724787 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857730 12 -1 703372 0 0xffffffff 0 -1 703372 0 ff ff ff ff 8c bb 0a 00 00 00 00 00 ............ +2674 8.057215929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857742 12 26 694923 0 0x0000001a 0 26 694923 0 1a 00 00 00 8b 9a 0a 00 00 00 00 00 ............ +2676 8.057417393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857754 26 22 2032217 0 0x00000016 1 2032217 0 196609 0 16 00 00 00 59 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +2678 8.057677984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527781 12 -1 694923 0 0xffffffff 0 -1 694923 0 ff ff ff ff 8b 9a 0a 00 00 00 00 00 ............ +2683 8.077590704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527793 12 -2 79894 79876 0xfffffffe 0 -2 79894 79876 fe ff ff ff 16 38 01 00 04 38 01 00 .....8...8.. +2685 8.085793734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527805 12 26 703373 0 0x0000001a 0 26 703373 0 1a 00 00 00 8d bb 0a 00 00 00 00 00 ............ +2687 8.085956097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527817 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 39518208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 02 1f 00 00 00 00 00 ....T.c@.^1@......[....... +2689 8.086264849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857780 12 -1 703373 0 0xffffffff 0 -1 703373 0 ff ff ff ff 8d bb 0a 00 00 00 00 00 ............ +2691 8.086715698 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857792 12 22 694924 0 0x00000016 0 22 694924 0 16 00 00 00 8c 9a 0a 00 00 00 00 00 ............ +2693 8.086926699 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857804 22 18 2032219 0 0x00000012 1 2032219 0 196609 0 12 00 00 00 5b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +2695 8.087287188 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527843 12 -1 694924 0 0xffffffff 0 -1 694924 0 ff ff ff ff 8c 9a 0a 00 00 00 00 00 ............ +2704 8.189714193 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527855 12 26 703374 0 0x0000001a 0 26 703374 0 1a 00 00 00 8e bb 0a 00 00 00 00 00 ............ +2706 8.190011978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527867 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 39649280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 02 1f 00 00 00 00 00 ....T.c@.^1@......]....... +2708 8.190542221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857826 12 -1 703374 0 0xffffffff 0 -1 703374 0 ff ff ff ff 8e bb 0a 00 00 00 00 00 ............ +2710 8.191155434 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857838 12 22 694925 0 0x00000016 0 22 694925 0 16 00 00 00 8d 9a 0a 00 00 00 00 00 ............ +2712 8.191376448 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857850 22 18 2032221 0 0x00000012 1 2032221 0 196609 0 12 00 00 00 5d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +2714 8.191671610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527893 12 -1 694925 0 0xffffffff 0 -1 694925 0 ff ff ff ff 8d 9a 0a 00 00 00 00 00 ............ +2720 8.294605970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527905 12 26 703375 0 0x0000001a 0 26 703375 0 1a 00 00 00 8f bb 0a 00 00 00 00 00 ............ +2722 8.294801235 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527917 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 39780352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 02 1f 00 00 00 00 00 ....T.c@.^1@......_....... +2724 8.295511484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857872 12 -1 703375 0 0xffffffff 0 -1 703375 0 ff ff ff ff 8f bb 0a 00 00 00 00 00 ............ +2726 8.296019077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857884 12 22 694926 0 0x00000016 0 22 694926 0 16 00 00 00 8e 9a 0a 00 00 00 00 00 ............ +2729 8.296187401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857896 22 18 2032223 0 0x00000012 1 2032223 0 196609 0 12 00 00 00 5f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +2731 8.296488762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527943 12 -1 694926 0 0xffffffff 0 -1 694926 0 ff ff ff ff 8e 9a 0a 00 00 00 00 00 ............ +2733 8.356945276 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527955 12 34 703376 0 0x00000022 0 34 703376 0 22 00 00 00 90 bb 0a 00 00 00 00 00 """..........." +2735 8.357208967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331527967 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -6422528 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9e ff 01 00 00 00 00 00 8a 32 0e c3 9d 01 00 00 .....!...o3................2...... +2737 8.357351780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528001 12 67 703377 0 0x00000043 0 67 703377 0 43 00 00 00 91 bb 0a 00 00 00 00 00 C........... +2739 8.357436180 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528013 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9e ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b8 92 c0 62 8f ?.....3...|8...................=B.....&......... +2741 8.357561588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857918 12 -1 703376 0 0xffffffff 0 -1 703376 0 ff ff ff ff 90 bb 0a 00 00 00 00 00 ............ +2743 8.357783079 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857930 12 -1 703377 0 0xffffffff 0 -1 703377 0 ff ff ff ff 91 bb 0a 00 00 00 00 00 ............ +2745 8.358726263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857942 12 52 694927 0 0x00000034 0 52 694927 0 34 00 00 00 8f 9a 0a 00 00 00 00 00 4........... +2747 8.358872175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375857954 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9e ff 01 00 00 00 00 00 00 00 3c cb 29 4e 4a 01 00 00 "0...Dk.................L."".([...............<.)N" +2749 8.359176636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528080 12 -1 694927 0 0xffffffff 0 -1 694927 0 ff ff ff ff 8f 9a 0a 00 00 00 00 00 ............ +2751 8.359899521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528092 12 30 703378 0 0x0000001e 0 30 703378 0 1e 00 00 00 92 bb 0a 00 00 00 00 00 ............ +2753 8.360070467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528104 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 39911424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +2755 8.360355377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858006 12 -1 703378 0 0xffffffff 0 -1 703378 0 ff ff ff ff 92 bb 0a 00 00 00 00 00 ............ +2757 8.360856533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858018 12 26 694928 0 0x0000001a 0 26 694928 0 1a 00 00 00 90 9a 0a 00 00 00 00 00 ............ +2759 8.361094236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858030 26 22 2032225 0 0x00000016 1 2032225 0 196609 0 16 00 00 00 61 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +2761 8.361270666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528134 12 -1 694928 0 0xffffffff 0 -1 694928 0 ff ff ff ff 90 9a 0a 00 00 00 00 00 ............ +2763 8.397751808 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528146 12 26 703379 0 0x0000001a 0 26 703379 0 1a 00 00 00 93 bb 0a 00 00 00 00 00 ............ +2765 8.397936583 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528158 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 40042496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 02 1f 00 00 00 00 00 ....T.c@.^1@......c....... +2767 8.398403168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858056 12 -1 703379 0 0xffffffff 0 -1 703379 0 ff ff ff ff 93 bb 0a 00 00 00 00 00 ............ +2769 8.398856401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858068 12 22 694929 0 0x00000016 0 22 694929 0 16 00 00 00 91 9a 0a 00 00 00 00 00 ............ +2771 8.399087429 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858080 22 18 2032227 0 0x00000012 1 2032227 0 196609 0 12 00 00 00 63 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +2773 8.399377584 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528184 12 -1 694929 0 0xffffffff 0 -1 694929 0 ff ff ff ff 91 9a 0a 00 00 00 00 00 ............ +2784 8.501682997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528196 12 26 703380 0 0x0000001a 0 26 703380 0 1a 00 00 00 94 bb 0a 00 00 00 00 00 ............ +2786 8.501871109 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528208 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 40173568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 02 1f 00 00 00 00 00 ....T.c@.^1@......e....... +2788 8.502323151 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858102 12 -1 703380 0 0xffffffff 0 -1 703380 0 ff ff ff ff 94 bb 0a 00 00 00 00 00 ............ +2790 8.502943993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858114 12 22 694930 0 0x00000016 0 22 694930 0 16 00 00 00 92 9a 0a 00 00 00 00 00 ............ +2792 8.503132582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858126 22 18 2032229 0 0x00000012 1 2032229 0 196609 0 12 00 00 00 65 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +2794 8.503400564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528234 12 -1 694930 0 0xffffffff 0 -1 694930 0 ff ff ff ff 92 9a 0a 00 00 00 00 00 ............ +2803 8.519495249 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858148 12 -2 79877 79894 0xfffffffe 0 -2 79877 79894 fe ff ff ff 05 38 01 00 16 38 01 00 .....8...8.. +2806 8.578344584 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528246 12 -2 79895 79877 0xfffffffe 0 -2 79895 79877 fe ff ff ff 17 38 01 00 05 38 01 00 .....8...8.. +2814 8.604595900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528258 12 26 703381 0 0x0000001a 0 26 703381 0 1a 00 00 00 95 bb 0a 00 00 00 00 00 ............ +2816 8.604898453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528270 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 40304640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 02 1f 00 00 00 00 00 ....T.c@.^1@......g....... +2818 8.605592489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858160 12 -1 703381 0 0xffffffff 0 -1 703381 0 ff ff ff ff 95 bb 0a 00 00 00 00 00 ............ +2821 8.606153727 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858172 12 22 694931 0 0x00000016 0 22 694931 0 16 00 00 00 93 9a 0a 00 00 00 00 00 ............ +2824 8.606301069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858184 22 18 2032231 0 0x00000012 1 2032231 0 196609 0 12 00 00 00 67 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +2826 8.606550455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528296 12 -1 694931 0 0xffffffff 0 -1 694931 0 ff ff ff ff 93 9a 0a 00 00 00 00 00 ............ +2829 8.660909891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528308 12 101 703382 0 0x00000065 0 101 703382 0 65 00 00 00 96 bb 0a 00 00 00 00 00 e........... +2831 8.661113024 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528320 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9f ff 01 00 00 00 00 00 ba 33 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9f ff 01 00 00 00 00 .....!...o3................3......?.....3...|8.. +2833 8.661588192 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858206 12 -1 703382 0 0xffffffff 0 -1 703382 0 ff ff ff ff 96 bb 0a 00 00 00 00 00 ............ +2835 8.662483931 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858218 12 52 694932 0 0x00000034 0 52 694932 0 34 00 00 00 94 9a 0a 00 00 00 00 00 4........... +2837 8.662684917 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858230 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9f ff 01 00 00 00 00 00 00 00 3f 2a 58 4e 4a 01 00 00 "0...Dk.................L."".([...............?*XN" +2839 8.662972450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528421 12 -1 694932 0 0xffffffff 0 -1 694932 0 ff ff ff ff 94 9a 0a 00 00 00 00 00 ............ +2841 8.664018869 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528433 12 30 703383 0 0x0000001e 0 30 703383 0 1e 00 00 00 97 bb 0a 00 00 00 00 00 ............ +2843 8.664175272 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528445 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 40435712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 69 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......i........... +2845 8.664454937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858282 12 -1 703383 0 0xffffffff 0 -1 703383 0 ff ff ff ff 97 bb 0a 00 00 00 00 00 ............ +2847 8.664913654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858294 12 26 694933 0 0x0000001a 0 26 694933 0 1a 00 00 00 95 9a 0a 00 00 00 00 00 ............ +2849 8.665045500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858306 26 22 2032233 0 0x00000016 1 2032233 0 196609 0 16 00 00 00 69 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....i..................... +2851 8.665290356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528475 12 -1 694933 0 0xffffffff 0 -1 694933 0 ff ff ff ff 95 9a 0a 00 00 00 00 00 ............ +2854 8.707418680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528487 12 26 703384 0 0x0000001a 0 26 703384 0 1a 00 00 00 98 bb 0a 00 00 00 00 00 ............ +2856 8.707569838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528499 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 40566784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 02 1f 00 00 00 00 00 ....T.c@.^1@......k....... +2858 8.708034515 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858332 12 -1 703384 0 0xffffffff 0 -1 703384 0 ff ff ff ff 98 bb 0a 00 00 00 00 00 ............ +2860 8.708557129 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858344 12 22 694934 0 0x00000016 0 22 694934 0 16 00 00 00 96 9a 0a 00 00 00 00 00 ............ +2862 8.708747387 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858356 22 18 2032235 0 0x00000012 1 2032235 0 196609 0 12 00 00 00 6b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +2864 8.709122181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528525 12 -1 694934 0 0xffffffff 0 -1 694934 0 ff ff ff ff 96 9a 0a 00 00 00 00 00 ............ +2872 8.810869932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528537 12 26 703385 0 0x0000001a 0 26 703385 0 1a 00 00 00 99 bb 0a 00 00 00 00 00 ............ +2874 8.811110973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528549 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 40697856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 02 1f 00 00 00 00 00 ....T.c@.^1@......m....... +2876 8.811562061 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858378 12 -1 703385 0 0xffffffff 0 -1 703385 0 ff ff ff ff 99 bb 0a 00 00 00 00 00 ............ +2878 8.812093019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858390 12 22 694935 0 0x00000016 0 22 694935 0 16 00 00 00 97 9a 0a 00 00 00 00 00 ............ +2880 8.812319517 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858402 22 18 2032237 0 0x00000012 1 2032237 0 196609 0 12 00 00 00 6d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +2882 8.812664032 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528575 12 -1 694935 0 0xffffffff 0 -1 694935 0 ff ff ff ff 97 9a 0a 00 00 00 00 00 ............ +2887 8.914803982 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528587 12 26 703386 0 0x0000001a 0 26 703386 0 1a 00 00 00 9a bb 0a 00 00 00 00 00 ............ +2889 8.915053844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528599 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 40828928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 02 1f 00 00 00 00 00 ....T.c@.^1@......o....... +2891 8.915560722 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858424 12 -1 703386 0 0xffffffff 0 -1 703386 0 ff ff ff ff 9a bb 0a 00 00 00 00 00 ............ +2893 8.916002512 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858436 12 22 694936 0 0x00000016 0 22 694936 0 16 00 00 00 98 9a 0a 00 00 00 00 00 ............ +2895 8.916242838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858448 22 18 2032239 0 0x00000012 1 2032239 0 196609 0 12 00 00 00 6f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +2897 8.916585922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528625 12 -1 694936 0 0xffffffff 0 -1 694936 0 ff ff ff ff 98 9a 0a 00 00 00 00 00 ............ +2977 8.966163874 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528637 12 34 703387 0 0x00000022 0 34 703387 0 22 00 00 00 9b bb 0a 00 00 00 00 00 """..........." +2979 8.966348886 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528649 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -6291456 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a0 ff 01 00 00 00 00 00 ec 34 0e c3 9d 01 00 00 .....!...o3................4...... +2981 8.966487885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528683 12 67 703388 0 0x00000043 0 67 703388 0 43 00 00 00 9c bb 0a 00 00 00 00 00 C........... +2983 8.966606617 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528695 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a0 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d8 f7 0c 87 8f ?.....3...|8...................=B.....&......... +2985 8.966959476 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858470 12 -1 703387 0 0xffffffff 0 -1 703387 0 ff ff ff ff 9b bb 0a 00 00 00 00 00 ............ +2987 8.967452288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858482 12 -1 703388 0 0xffffffff 0 -1 703388 0 ff ff ff ff 9c bb 0a 00 00 00 00 00 ............ +2989 8.968039989 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858494 12 52 694937 0 0x00000034 0 52 694937 0 34 00 00 00 99 9a 0a 00 00 00 00 00 4........... +2991 8.968255758 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858506 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a0 ff 01 00 00 00 00 00 00 00 08 c8 86 4e 4a 01 00 00 "0...Dk.................L."".([..................N" +2993 8.968710899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528762 12 -1 694937 0 0xffffffff 0 -1 694937 0 ff ff ff ff 99 9a 0a 00 00 00 00 00 ............ +2995 8.969521523 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528774 12 30 703389 0 0x0000001e 0 30 703389 0 1e 00 00 00 9d bb 0a 00 00 00 00 00 ............ +2997 8.969664097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528786 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 40960000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 71 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......q........... +2999 8.970182419 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858558 12 -1 703389 0 0xffffffff 0 -1 703389 0 ff ff ff ff 9d bb 0a 00 00 00 00 00 ............ +3001 8.970789671 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858570 12 26 694938 0 0x0000001a 0 26 694938 0 1a 00 00 00 9a 9a 0a 00 00 00 00 00 ............ +3003 8.970971584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858582 26 22 2032241 0 0x00000016 1 2032241 0 196609 0 16 00 00 00 71 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....q..................... +3005 8.971220970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528816 12 -1 694938 0 0xffffffff 0 -1 694938 0 ff ff ff ff 9a 9a 0a 00 00 00 00 00 ............ +3145 9.019025564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528828 12 26 703390 0 0x0000001a 0 26 703390 0 1a 00 00 00 9e bb 0a 00 00 00 00 00 ............ +3148 9.019178391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528840 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 41091072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 02 1f 00 00 00 00 00 ....T.c@.^1@......s....... +3152 9.019454479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858608 12 -1 703390 0 0xffffffff 0 -1 703390 0 ff ff ff ff 9e bb 0a 00 00 00 00 00 ............ +3161 9.020081520 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858620 12 22 694939 0 0x00000016 0 22 694939 0 16 00 00 00 9b 9a 0a 00 00 00 00 00 ............ +3164 9.020244598 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858632 22 18 2032243 0 0x00000012 1 2032243 0 196609 0 12 00 00 00 73 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +3168 9.020493746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528866 12 -1 694939 0 0xffffffff 0 -1 694939 0 ff ff ff ff 9b 9a 0a 00 00 00 00 00 ............ +3172 9.020706415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858654 12 -2 79878 79895 0xfffffffe 0 -2 79878 79895 fe ff ff ff 06 38 01 00 17 38 01 00 .....8...8.. +3200 9.078942299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528878 12 -2 79896 79878 0xfffffffe 0 -2 79896 79878 fe ff ff ff 18 38 01 00 06 38 01 00 .....8...8.. +3385 9.122888088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528890 12 26 703391 0 0x0000001a 0 26 703391 0 1a 00 00 00 9f bb 0a 00 00 00 00 00 ............ +3387 9.123067141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528902 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 41222144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 02 1f 00 00 00 00 00 ....T.c@.^1@......u....... +3389 9.123350382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858666 12 -1 703391 0 0xffffffff 0 -1 703391 0 ff ff ff ff 9f bb 0a 00 00 00 00 00 ............ +3391 9.124101162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858678 12 22 694940 0 0x00000016 0 22 694940 0 16 00 00 00 9c 9a 0a 00 00 00 00 00 ............ +3393 9.124268532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858690 22 18 2032245 0 0x00000012 1 2032245 0 196609 0 12 00 00 00 75 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +3395 9.124646902 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528928 12 -1 694940 0 0xffffffff 0 -1 694940 0 ff ff ff ff 9c 9a 0a 00 00 00 00 00 ............ +3546 9.226168633 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528940 12 26 703392 0 0x0000001a 0 26 703392 0 1a 00 00 00 a0 bb 0a 00 00 00 00 00 ............ +3548 9.226413965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528952 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 41353216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 02 1f 00 00 00 00 00 ....T.c@.^1@......w....... +3550 9.226790667 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858712 12 -1 703392 0 0xffffffff 0 -1 703392 0 ff ff ff ff a0 bb 0a 00 00 00 00 00 ............ +3552 9.227152586 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858724 12 22 694941 0 0x00000016 0 22 694941 0 16 00 00 00 9d 9a 0a 00 00 00 00 00 ............ +3554 9.227308750 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858736 22 18 2032247 0 0x00000012 1 2032247 0 196609 0 12 00 00 00 77 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +3558 9.227549553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528978 12 -1 694941 0 0xffffffff 0 -1 694941 0 ff ff ff ff 9d 9a 0a 00 00 00 00 00 ............ +3589 9.270578623 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331528990 12 101 703393 0 0x00000065 0 101 703393 0 65 00 00 00 a1 bb 0a 00 00 00 00 00 e........... +3591 9.270880938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529002 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a1 ff 01 00 00 00 00 00 1b 36 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a1 ff 01 00 00 00 00 .....!...o3................6......?.....3...|8.. +3593 9.271245003 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858758 12 -1 703393 0 0xffffffff 0 -1 703393 0 ff ff ff ff a1 bb 0a 00 00 00 00 00 ............ +3595 9.278803349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858770 12 52 694942 0 0x00000034 0 52 694942 0 34 00 00 00 9e 9a 0a 00 00 00 00 00 4........... +3597 9.278994083 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858782 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a1 ff 01 00 00 00 00 00 00 00 06 34 b6 4e 4a 01 00 00 "0...Dk.................L."".([................4.N" +3599 9.279264927 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529103 12 -1 694942 0 0xffffffff 0 -1 694942 0 ff ff ff ff 9e 9a 0a 00 00 00 00 00 ............ +3601 9.280220985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529115 12 30 703394 0 0x0000001e 0 30 703394 0 1e 00 00 00 a2 bb 0a 00 00 00 00 00 ............ +3603 9.280528784 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529127 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 41484288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 79 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......y........... +3605 9.280790091 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858834 12 -1 703394 0 0xffffffff 0 -1 703394 0 ff ff ff ff a2 bb 0a 00 00 00 00 00 ............ +3607 9.282825708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858846 12 26 694943 0 0x0000001a 0 26 694943 0 1a 00 00 00 9f 9a 0a 00 00 00 00 00 ............ +3609 9.283019781 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858858 26 22 2032249 0 0x00000016 1 2032249 0 196609 0 16 00 00 00 79 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....y..................... +3611 9.283266068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529157 12 -1 694943 0 0xffffffff 0 -1 694943 0 ff ff ff ff 9f 9a 0a 00 00 00 00 00 ............ +3613 9.329056025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529169 12 26 703395 0 0x0000001a 0 26 703395 0 1a 00 00 00 a3 bb 0a 00 00 00 00 00 ............ +3615 9.329238653 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529181 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 41615360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 02 1f 00 00 00 00 00 ....T.c@.^1@......{....... +3617 9.329631329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858884 12 -1 703395 0 0xffffffff 0 -1 703395 0 ff ff ff ff a3 bb 0a 00 00 00 00 00 ............ +3619 9.331075668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858896 12 22 694944 0 0x00000016 0 22 694944 0 16 00 00 00 a0 9a 0a 00 00 00 00 00 ............ +3621 9.331220627 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858908 22 18 2032251 0 0x00000012 1 2032251 0 196609 0 12 00 00 00 7b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +3623 9.331567287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529207 12 -1 694944 0 0xffffffff 0 -1 694944 0 ff ff ff ff a0 9a 0a 00 00 00 00 00 ............ +3628 9.434030771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529219 12 26 703396 0 0x0000001a 0 26 703396 0 1a 00 00 00 a4 bb 0a 00 00 00 00 00 ............ +3630 9.434209585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529231 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 41746432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 02 1f 00 00 00 00 00 ....T.c@.^1@......}....... +3632 9.434554100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858930 12 -1 703396 0 0xffffffff 0 -1 703396 0 ff ff ff ff a4 bb 0a 00 00 00 00 00 ............ +3634 9.435302496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858942 12 22 694945 0 0x00000016 0 22 694945 0 16 00 00 00 a1 9a 0a 00 00 00 00 00 ............ +3636 9.435525417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858954 22 18 2032253 0 0x00000012 1 2032253 0 196609 0 12 00 00 00 7d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +3638 9.435807228 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529257 12 -1 694945 0 0xffffffff 0 -1 694945 0 ff ff ff ff a1 9a 0a 00 00 00 00 00 ............ +3677 9.521465778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858976 12 -2 79879 79896 0xfffffffe 0 -2 79879 79896 fe ff ff ff 07 38 01 00 18 38 01 00 .....8...8.. +3679 9.537292719 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529269 12 26 703397 0 0x0000001a 0 26 703397 0 1a 00 00 00 a5 bb 0a 00 00 00 00 00 ............ +3681 9.537494659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529281 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 41877504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3683 9.537768602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375858988 12 -1 703397 0 0xffffffff 0 -1 703397 0 ff ff ff ff a5 bb 0a 00 00 00 00 00 ............ +3685 9.538365841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859000 12 22 694946 0 0x00000016 0 22 694946 0 16 00 00 00 a2 9a 0a 00 00 00 00 00 ............ +3687 9.538559914 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859012 22 18 2032255 0 0x00000012 1 2032255 0 196609 0 12 00 00 00 7f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3689 9.538881302 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529307 12 -1 694946 0 0xffffffff 0 -1 694946 0 ff ff ff ff a2 9a 0a 00 00 00 00 00 ............ +3692 9.579627514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529319 12 -2 79897 79879 0xfffffffe 0 -2 79897 79879 fe ff ff ff 19 38 01 00 07 38 01 00 .....8...8.. +3696 9.581160069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529331 12 101 703398 0 0x00000065 0 101 703398 0 65 00 00 00 a6 bb 0a 00 00 00 00 00 e........... +3698 9.581394911 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529343 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a2 ff 01 00 00 00 00 00 52 37 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a2 ff 01 00 00 00 00 .....!...o3...............R7......?.....3...|8.. +3700 9.581754684 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859034 12 -1 703398 0 0xffffffff 0 -1 703398 0 ff ff ff ff a6 bb 0a 00 00 00 00 00 ............ +3702 9.582695484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859046 12 52 694947 0 0x00000034 0 52 694947 0 34 00 00 00 a3 9a 0a 00 00 00 00 00 4........... +3704 9.582902908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859058 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a2 ff 01 00 00 00 00 00 00 00 a4 92 e4 4e 4a 01 00 00 "0...Dk.................L."".([..................N" +3706 9.583168745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529444 12 -1 694947 0 0xffffffff 0 -1 694947 0 ff ff ff ff a3 9a 0a 00 00 00 00 00 ............ +3708 9.584038258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529456 12 30 703399 0 0x0000001e 0 30 703399 0 1e 00 00 00 a7 bb 0a 00 00 00 00 00 ............ +3710 9.584191561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529468 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 42008576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 81 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3712 9.584543467 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859110 12 -1 703399 0 0xffffffff 0 -1 703399 0 ff ff ff ff a7 bb 0a 00 00 00 00 00 ............ +3714 9.584966898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859122 12 26 694948 0 0x0000001a 0 26 694948 0 1a 00 00 00 a4 9a 0a 00 00 00 00 00 ............ +3716 9.585159302 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859134 26 22 2032257 0 0x00000016 1 2032257 0 196609 0 16 00 00 00 81 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3718 9.585467100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529498 12 -1 694948 0 0xffffffff 0 -1 694948 0 ff ff ff ff a4 9a 0a 00 00 00 00 00 ............ +3744 9.640028954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529510 12 26 703400 0 0x0000001a 0 26 703400 0 1a 00 00 00 a8 bb 0a 00 00 00 00 00 ............ +3746 9.640198946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529522 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 42139648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3749 9.640529394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859160 12 -1 703400 0 0xffffffff 0 -1 703400 0 ff ff ff ff a8 bb 0a 00 00 00 00 00 ............ +3752 9.641014338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859172 12 22 694949 0 0x00000016 0 22 694949 0 16 00 00 00 a5 9a 0a 00 00 00 00 00 ............ +3754 9.641184092 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859184 22 18 2032259 0 0x00000012 1 2032259 0 196609 0 12 00 00 00 83 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3756 9.641587734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529548 12 -1 694949 0 0xffffffff 0 -1 694949 0 ff ff ff ff a5 9a 0a 00 00 00 00 00 ............ +3779 9.744030476 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529560 12 26 703401 0 0x0000001a 0 26 703401 0 1a 00 00 00 a9 bb 0a 00 00 00 00 00 ............ +3781 9.744223356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529572 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 42270720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3783 9.744851828 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859206 12 -1 703401 0 0xffffffff 0 -1 703401 0 ff ff ff ff a9 bb 0a 00 00 00 00 00 ............ +3785 9.745217323 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859218 12 22 694950 0 0x00000016 0 22 694950 0 16 00 00 00 a6 9a 0a 00 00 00 00 00 ............ +3787 9.745441198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859230 22 18 2032261 0 0x00000012 1 2032261 0 196609 0 12 00 00 00 85 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3789 9.745648146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529598 12 -1 694950 0 0xffffffff 0 -1 694950 0 ff ff ff ff a6 9a 0a 00 00 00 00 00 ............ +3792 9.848042965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529610 12 26 703402 0 0x0000001a 0 26 703402 0 1a 00 00 00 aa bb 0a 00 00 00 00 00 ............ +3794 9.848274469 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529622 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 42401792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3796 9.848662376 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859252 12 -1 703402 0 0xffffffff 0 -1 703402 0 ff ff ff ff aa bb 0a 00 00 00 00 00 ............ +3798 9.849176168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859264 12 22 694951 0 0x00000016 0 22 694951 0 16 00 00 00 a7 9a 0a 00 00 00 00 00 ............ +3800 9.849377394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859276 22 18 2032263 0 0x00000012 1 2032263 0 196609 0 12 00 00 00 87 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3802 9.849764585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529648 12 -1 694951 0 0xffffffff 0 -1 694951 0 ff ff ff ff a7 9a 0a 00 00 00 00 00 ............ +3804 9.886964321 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529660 12 101 703403 0 0x00000065 0 101 703403 0 65 00 00 00 ab bb 0a 00 00 00 00 00 e........... +3806 9.887131453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529672 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a3 ff 01 00 00 00 00 00 84 38 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a3 ff 01 00 00 00 00 .....!...o3................8......?.....3...|8.. +3808 9.887483120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859298 12 -1 703403 0 0xffffffff 0 -1 703403 0 ff ff ff ff ab bb 0a 00 00 00 00 00 ............ +3810 9.888753891 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859310 12 52 694952 0 0x00000034 0 52 694952 0 34 00 00 00 a8 9a 0a 00 00 00 00 00 4........... +3812 9.888921976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859322 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a3 ff 01 00 00 00 00 00 00 00 7d 45 13 4f 4a 01 00 00 "0...Dk.................L."".([...............}E.O" +3814 9.889322281 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529773 12 -1 694952 0 0xffffffff 0 -1 694952 0 ff ff ff ff a8 9a 0a 00 00 00 00 00 ............ +3816 9.890223742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529785 12 30 703404 0 0x0000001e 0 30 703404 0 1e 00 00 00 ac bb 0a 00 00 00 00 00 ............ +3818 9.890395403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529797 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 42532864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 89 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3820 9.890645027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859374 12 -1 703404 0 0xffffffff 0 -1 703404 0 ff ff ff ff ac bb 0a 00 00 00 00 00 ............ +3822 9.891107321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859386 12 26 694953 0 0x0000001a 0 26 694953 0 1a 00 00 00 a9 9a 0a 00 00 00 00 00 ............ +3824 9.891251326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859398 26 22 2032265 0 0x00000016 1 2032265 0 196609 0 16 00 00 00 89 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3826 9.891440868 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529827 12 -1 694953 0 0xffffffff 0 -1 694953 0 ff ff ff ff a9 9a 0a 00 00 00 00 00 ............ +3830 9.951001883 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529839 12 26 703405 0 0x0000001a 0 26 703405 0 1a 00 00 00 ad bb 0a 00 00 00 00 00 ............ +3832 9.951167107 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529851 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 42663936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3834 9.951532841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859424 12 -1 703405 0 0xffffffff 0 -1 703405 0 ff ff ff ff ad bb 0a 00 00 00 00 00 ............ +3836 9.952313900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859436 12 22 694954 0 0x00000016 0 22 694954 0 16 00 00 00 aa 9a 0a 00 00 00 00 00 ............ +3838 9.952528715 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859448 22 18 2032267 0 0x00000012 1 2032267 0 196609 0 12 00 00 00 8b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3840 9.952826738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529877 12 -1 694954 0 0xffffffff 0 -1 694954 0 ff ff ff ff aa 9a 0a 00 00 00 00 00 ............ +3848 10.023019552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859470 12 -2 79880 79897 0xfffffffe 0 -2 79880 79897 fe ff ff ff 08 38 01 00 19 38 01 00 .....8...8.. +3850 10.055282593 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529889 12 26 703406 0 0x0000001a 0 26 703406 0 1a 00 00 00 ae bb 0a 00 00 00 00 00 ............ +3852 10.055618525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529901 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 42795008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3854 10.055999041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859482 12 -1 703406 0 0xffffffff 0 -1 703406 0 ff ff ff ff ae bb 0a 00 00 00 00 00 ............ +3856 10.056734562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859494 12 22 694955 0 0x00000016 0 22 694955 0 16 00 00 00 ab 9a 0a 00 00 00 00 00 ............ +3858 10.056920767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859506 22 18 2032269 0 0x00000012 1 2032269 0 196609 0 12 00 00 00 8d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3860 10.057314396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529927 12 -1 694955 0 0xffffffff 0 -1 694955 0 ff ff ff ff ab 9a 0a 00 00 00 00 00 ............ +3862 10.080799580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529939 12 -2 79898 79880 0xfffffffe 0 -2 79898 79880 fe ff ff ff 1a 38 01 00 08 38 01 00 .....8...8.. +3872 10.159006596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529951 12 26 703407 0 0x0000001a 0 26 703407 0 1a 00 00 00 af bb 0a 00 00 00 00 00 ............ +3874 10.159191847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529963 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 42926080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3876 10.159602880 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859528 12 -1 703407 0 0xffffffff 0 -1 703407 0 ff ff ff ff af bb 0a 00 00 00 00 00 ............ +3878 10.160155058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859540 12 22 694956 0 0x00000016 0 22 694956 0 16 00 00 00 ac 9a 0a 00 00 00 00 00 ............ +3880 10.160352468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859552 22 18 2032271 0 0x00000012 1 2032271 0 196609 0 12 00 00 00 8f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3882 10.160640001 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331529989 12 -1 694956 0 0xffffffff 0 -1 694956 0 ff ff ff ff ac 9a 0a 00 00 00 00 00 ............ +3884 10.192224264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530001 12 101 703408 0 0x00000065 0 101 703408 0 65 00 00 00 b0 bb 0a 00 00 00 00 00 e........... +3886 10.192408085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530013 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a4 ff 01 00 00 00 00 00 b5 39 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a4 ff 01 00 00 00 00 .....!...o3................9......?.....3...|8.. +3888 10.193029881 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859574 12 -1 703408 0 0xffffffff 0 -1 703408 0 ff ff ff ff b0 bb 0a 00 00 00 00 00 ............ +3890 10.193978071 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859586 12 52 694957 0 0x00000034 0 52 694957 0 34 00 00 00 ad 9a 0a 00 00 00 00 00 4........... +3892 10.194204569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859598 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a4 ff 01 00 00 00 00 00 00 00 e7 d6 41 4f 4a 01 00 00 "0...Dk.................L."".([.................AO" +3894 10.194563866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530114 12 -1 694957 0 0xffffffff 0 -1 694957 0 ff ff ff ff ad 9a 0a 00 00 00 00 00 ............ +3896 10.195316076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530126 12 30 703409 0 0x0000001e 0 30 703409 0 1e 00 00 00 b1 bb 0a 00 00 00 00 00 ............ +3898 10.195481062 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530138 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 43057152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 91 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3900 10.195844173 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859650 12 -1 703409 0 0xffffffff 0 -1 703409 0 ff ff ff ff b1 bb 0a 00 00 00 00 00 ............ +3902 10.196203232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859662 12 26 694958 0 0x0000001a 0 26 694958 0 1a 00 00 00 ae 9a 0a 00 00 00 00 00 ............ +3904 10.196410894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859674 26 22 2032273 0 0x00000016 1 2032273 0 196609 0 16 00 00 00 91 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3906 10.196753979 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530168 12 -1 694958 0 0xffffffff 0 -1 694958 0 ff ff ff ff ae 9a 0a 00 00 00 00 00 ............ +3912 10.261887312 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530180 12 26 703410 0 0x0000001a 0 26 703410 0 1a 00 00 00 b2 bb 0a 00 00 00 00 00 ............ +3914 10.262068748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530192 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 43188224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3916 10.262540579 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859700 12 -1 703410 0 0xffffffff 0 -1 703410 0 ff ff ff ff b2 bb 0a 00 00 00 00 00 ............ +3918 10.263040066 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859712 12 22 694959 0 0x00000016 0 22 694959 0 16 00 00 00 af 9a 0a 00 00 00 00 00 ............ +3920 10.263265371 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859724 22 18 2032275 0 0x00000012 1 2032275 0 196609 0 12 00 00 00 93 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3922 10.263516188 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530218 12 -1 694959 0 0xffffffff 0 -1 694959 0 ff ff ff ff af 9a 0a 00 00 00 00 00 ............ +3924 10.366061687 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530230 12 26 703411 0 0x0000001a 0 26 703411 0 1a 00 00 00 b3 bb 0a 00 00 00 00 00 ............ +3926 10.366254807 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530242 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 43319296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3928 10.366645098 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859746 12 -1 703411 0 0xffffffff 0 -1 703411 0 ff ff ff ff b3 bb 0a 00 00 00 00 00 ............ +3930 10.367281437 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859758 12 22 694960 0 0x00000016 0 22 694960 0 16 00 00 00 b0 9a 0a 00 00 00 00 00 ............ +3932 10.367491961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859770 22 18 2032277 0 0x00000012 1 2032277 0 196609 0 12 00 00 00 95 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3934 10.367772579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530268 12 -1 694960 0 0xffffffff 0 -1 694960 0 ff ff ff ff b0 9a 0a 00 00 00 00 00 ............ +3938 10.468984127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530280 12 26 703412 0 0x0000001a 0 26 703412 0 1a 00 00 00 b4 bb 0a 00 00 00 00 00 ............ +3940 10.469185352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530292 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 43450368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3942 10.469555855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859792 12 -1 703412 0 0xffffffff 0 -1 703412 0 ff ff ff ff b4 bb 0a 00 00 00 00 00 ............ +3944 10.470736265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859804 12 22 694961 0 0x00000016 0 22 694961 0 16 00 00 00 b1 9a 0a 00 00 00 00 00 ............ +3946 10.470885277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859816 22 18 2032279 0 0x00000012 1 2032279 0 196609 0 12 00 00 00 97 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3948 10.471175671 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530318 12 -1 694961 0 0xffffffff 0 -1 694961 0 ff ff ff ff b1 9a 0a 00 00 00 00 00 ............ +3950 10.496547222 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530330 12 101 703413 0 0x00000065 0 101 703413 0 65 00 00 00 b5 bb 0a 00 00 00 00 00 e........... +3952 10.496710777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530342 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a5 ff 01 00 00 00 00 00 e6 3a 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a5 ff 01 00 00 00 00 .....!...o3................:......?.....3...|8.. +3954 10.497370720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859838 12 -1 703413 0 0xffffffff 0 -1 703413 0 ff ff ff ff b5 bb 0a 00 00 00 00 00 ............ +3956 10.498114109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859850 12 52 694962 0 0x00000034 0 52 694962 0 34 00 00 00 b2 9a 0a 00 00 00 00 00 4........... +3958 10.498328447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859862 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a5 ff 01 00 00 00 00 00 00 00 d9 41 70 4f 4a 01 00 00 "0...Dk.................L."".([................ApO" +3960 10.498632431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530443 12 -1 694962 0 0xffffffff 0 -1 694962 0 ff ff ff ff b2 9a 0a 00 00 00 00 00 ............ +3962 10.499472618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530455 12 30 703414 0 0x0000001e 0 30 703414 0 1e 00 00 00 b6 bb 0a 00 00 00 00 00 ............ +3964 10.499635220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530467 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 43581440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 99 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3966 10.499919176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859914 12 -1 703414 0 0xffffffff 0 -1 703414 0 ff ff ff ff b6 bb 0a 00 00 00 00 00 ............ +3968 10.500443935 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859926 12 26 694963 0 0x0000001a 0 26 694963 0 1a 00 00 00 b3 9a 0a 00 00 00 00 00 ............ +3970 10.500634432 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859938 26 22 2032281 0 0x00000016 1 2032281 0 196609 0 16 00 00 00 99 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3972 10.500944614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530497 12 -1 694963 0 0xffffffff 0 -1 694963 0 ff ff ff ff b3 9a 0a 00 00 00 00 00 ............ +3980 10.522433996 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859964 12 -2 79881 79898 0xfffffffe 0 -2 79881 79898 fe ff ff ff 09 38 01 00 1a 38 01 00 .....8...8.. +3982 10.572757721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530509 12 26 703415 0 0x0000001a 0 26 703415 0 1a 00 00 00 b7 bb 0a 00 00 00 00 00 ............ +3984 10.572925091 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530521 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 43712512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +3986 10.573321581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859976 12 -1 703415 0 0xffffffff 0 -1 703415 0 ff ff ff ff b7 bb 0a 00 00 00 00 00 ............ +3988 10.573818922 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375859988 12 22 694964 0 0x00000016 0 22 694964 0 16 00 00 00 b4 9a 0a 00 00 00 00 00 ............ +3990 10.574038267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860000 22 18 2032283 0 0x00000012 1 2032283 0 196609 0 12 00 00 00 9b 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3992 10.574402809 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530547 12 -1 694964 0 0xffffffff 0 -1 694964 0 ff ff ff ff b4 9a 0a 00 00 00 00 00 ............ +3994 10.581614971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530559 12 -2 79899 79881 0xfffffffe 0 -2 79899 79881 fe ff ff ff 1b 38 01 00 09 38 01 00 .....8...8.. +4004 10.675863504 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530571 12 26 703416 0 0x0000001a 0 26 703416 0 1a 00 00 00 b8 bb 0a 00 00 00 00 00 ............ +4006 10.676054716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530583 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 43843584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4008 10.676558971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860022 12 -1 703416 0 0xffffffff 0 -1 703416 0 ff ff ff ff b8 bb 0a 00 00 00 00 00 ............ +4010 10.677353382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860034 12 22 694965 0 0x00000016 0 22 694965 0 16 00 00 00 b5 9a 0a 00 00 00 00 00 ............ +4012 10.677520037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860046 22 18 2032285 0 0x00000012 1 2032285 0 196609 0 12 00 00 00 9d 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4014 10.677934170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530609 12 -1 694965 0 0xffffffff 0 -1 694965 0 ff ff ff ff b5 9a 0a 00 00 00 00 00 ............ +4020 10.779565573 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530621 12 26 703417 0 0x0000001a 0 26 703417 0 1a 00 00 00 b9 bb 0a 00 00 00 00 00 ............ +4022 10.779759169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530633 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 43974656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4024 10.780152798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860068 12 -1 703417 0 0xffffffff 0 -1 703417 0 ff ff ff ff b9 bb 0a 00 00 00 00 00 ............ +4026 10.780584097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860080 12 22 694966 0 0x00000016 0 22 694966 0 16 00 00 00 b6 9a 0a 00 00 00 00 00 ............ +4028 10.780778646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860092 22 18 2032287 0 0x00000012 1 2032287 0 196609 0 12 00 00 00 9f 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4030 10.781229258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530659 12 -1 694966 0 0xffffffff 0 -1 694966 0 ff ff ff ff b6 9a 0a 00 00 00 00 00 ............ +4032 10.800779581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530671 12 34 703418 0 0x00000022 0 34 703418 0 22 00 00 00 ba bb 0a 00 00 00 00 00 """..........." +4034 10.800963879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530683 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5898240 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a6 ff 01 00 00 00 00 00 16 3c 0e c3 9d 01 00 00 .....!...o3................<...... +4036 10.801067591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530717 12 67 703419 0 0x00000043 0 67 703419 0 43 00 00 00 bb bb 0a 00 00 00 00 00 C........... +4038 10.801151037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530729 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a6 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc b5 5d f4 8f ?.....3...|8...................=B.....&......... +4040 10.801287889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860114 12 -1 703418 0 0xffffffff 0 -1 703418 0 ff ff ff ff ba bb 0a 00 00 00 00 00 ............ +4042 10.801523447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860126 12 -1 703419 0 0xffffffff 0 -1 703419 0 ff ff ff ff bb bb 0a 00 00 00 00 00 ............ +4044 10.802455425 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860138 12 52 694967 0 0x00000034 0 52 694967 0 34 00 00 00 b7 9a 0a 00 00 00 00 00 4........... +4046 10.802642822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860150 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a6 ff 01 00 00 00 00 00 00 00 9e b2 9e 4f 4a 01 00 00 "0...Dk.................L."".([..................O" +4048 10.802956581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530796 12 -1 694967 0 0xffffffff 0 -1 694967 0 ff ff ff ff b7 9a 0a 00 00 00 00 00 ............ +4050 10.803723812 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530808 12 30 703420 0 0x0000001e 0 30 703420 0 1e 00 00 00 bc bb 0a 00 00 00 00 00 ............ +4052 10.803863525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530820 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 44105728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a1 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4054 10.804260254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860202 12 -1 703420 0 0xffffffff 0 -1 703420 0 ff ff ff ff bc bb 0a 00 00 00 00 00 ............ +4056 10.804677963 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860214 12 26 694968 0 0x0000001a 0 26 694968 0 1a 00 00 00 b8 9a 0a 00 00 00 00 00 ............ +4058 10.804884434 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860226 26 22 2032289 0 0x00000016 1 2032289 0 196609 0 16 00 00 00 a1 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4060 10.805176497 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530850 12 -1 694968 0 0xffffffff 0 -1 694968 0 ff ff ff ff b8 9a 0a 00 00 00 00 00 ............ +4062 10.882750511 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530862 12 26 703421 0 0x0000001a 0 26 703421 0 1a 00 00 00 bd bb 0a 00 00 00 00 00 ............ +4064 10.883032560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530874 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 44236800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4066 10.883410692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860252 12 -1 703421 0 0xffffffff 0 -1 703421 0 ff ff ff ff bd bb 0a 00 00 00 00 00 ............ +4068 10.884043455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860264 12 22 694969 0 0x00000016 0 22 694969 0 16 00 00 00 b9 9a 0a 00 00 00 00 00 ............ +4070 10.884714603 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860276 22 18 2032291 0 0x00000012 1 2032291 0 196609 0 12 00 00 00 a3 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4072 10.885074615 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530900 12 -1 694969 0 0xffffffff 0 -1 694969 0 ff ff ff ff b9 9a 0a 00 00 00 00 00 ............ +4076 10.987080336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530912 12 26 703422 0 0x0000001a 0 26 703422 0 1a 00 00 00 be bb 0a 00 00 00 00 00 ............ +4078 10.987318277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530924 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 44367872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4080 10.987728596 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860298 12 -1 703422 0 0xffffffff 0 -1 703422 0 ff ff ff ff be bb 0a 00 00 00 00 00 ............ +4082 10.988312006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860310 12 22 694970 0 0x00000016 0 22 694970 0 16 00 00 00 ba 9a 0a 00 00 00 00 00 ............ +4084 10.988478184 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860322 22 18 2032293 0 0x00000012 1 2032293 0 196609 0 12 00 00 00 a5 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4086 10.988729954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530950 12 -1 694970 0 0xffffffff 0 -1 694970 0 ff ff ff ff ba 9a 0a 00 00 00 00 00 ............ +4094 11.023386955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860344 12 -2 79882 79899 0xfffffffe 0 -2 79882 79899 fe ff ff ff 0a 38 01 00 1b 38 01 00 .....8...8.. +4096 11.082445621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530962 12 -2 79900 79882 0xfffffffe 0 -2 79900 79882 fe ff ff ff 1c 38 01 00 0a 38 01 00 .....8...8.. +4100 11.090649843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530974 12 26 703423 0 0x0000001a 0 26 703423 0 1a 00 00 00 bf bb 0a 00 00 00 00 00 ............ +4102 11.090812922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331530986 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 44498944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4104 11.091144085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860356 12 -1 703423 0 0xffffffff 0 -1 703423 0 ff ff ff ff bf bb 0a 00 00 00 00 00 ............ +4106 11.091756582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860368 12 22 694971 0 0x00000016 0 22 694971 0 16 00 00 00 bb 9a 0a 00 00 00 00 00 ............ +4108 11.091959476 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860380 22 18 2032295 0 0x00000012 1 2032295 0 196609 0 12 00 00 00 a7 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4110 11.092250586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531012 12 -1 694971 0 0xffffffff 0 -1 694971 0 ff ff ff ff bb 9a 0a 00 00 00 00 00 ............ +4116 11.105120182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531024 12 34 703424 0 0x00000022 0 34 703424 0 22 00 00 00 c0 bb 0a 00 00 00 00 00 """..........." +4118 11.105316639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531036 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5832704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a7 ff 01 00 00 00 00 00 46 3d 0e c3 9d 01 00 00 .....!...o3...............F=...... +4120 11.105407476 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531070 12 67 703425 0 0x00000043 0 67 703425 0 43 00 00 00 c1 bb 0a 00 00 00 00 00 C........... +4122 11.105490685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531082 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a7 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 9c 43 8c 06 90 ?.....3...|8...................=B.....&......... +4124 11.105642080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860402 12 -1 703424 0 0xffffffff 0 -1 703424 0 ff ff ff ff c0 bb 0a 00 00 00 00 00 ............ +4126 11.105825901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860414 12 -1 703425 0 0xffffffff 0 -1 703425 0 ff ff ff ff c1 bb 0a 00 00 00 00 00 ............ +4128 11.106638670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860426 12 52 694972 0 0x00000034 0 52 694972 0 34 00 00 00 bc 9a 0a 00 00 00 00 00 4........... +4130 11.106852055 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860438 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a7 ff 01 00 00 00 00 00 00 00 4f 1b cd 4f 4a 01 00 00 "0...Dk.................L."".([...............O..O" +4132 11.107151747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531149 12 -1 694972 0 0xffffffff 0 -1 694972 0 ff ff ff ff bc 9a 0a 00 00 00 00 00 ............ +4134 11.107986450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531161 12 30 703426 0 0x0000001e 0 30 703426 0 1e 00 00 00 c2 bb 0a 00 00 00 00 00 ............ +4136 11.108135462 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531173 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 44630016 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a9 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4138 11.108423471 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860490 12 -1 703426 0 0xffffffff 0 -1 703426 0 ff ff ff ff c2 bb 0a 00 00 00 00 00 ............ +4140 11.108982801 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860502 12 26 694973 0 0x0000001a 0 26 694973 0 1a 00 00 00 bd 9a 0a 00 00 00 00 00 ............ +4142 11.109184742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860514 26 22 2032297 0 0x00000016 1 2032297 0 196609 0 16 00 00 00 a9 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4144 11.109370947 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531203 12 -1 694973 0 0xffffffff 0 -1 694973 0 ff ff ff ff bd 9a 0a 00 00 00 00 00 ............ +4149 11.194845438 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531215 12 26 703427 0 0x0000001a 0 26 703427 0 1a 00 00 00 c3 bb 0a 00 00 00 00 00 ............ +4151 11.195078373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531227 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 44761088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4153 11.195528984 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860540 12 -1 703427 0 0xffffffff 0 -1 703427 0 ff ff ff ff c3 bb 0a 00 00 00 00 00 ............ +4155 11.196188450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860552 12 22 694974 0 0x00000016 0 22 694974 0 16 00 00 00 be 9a 0a 00 00 00 00 00 ............ +4157 11.196389675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860564 22 18 2032299 0 0x00000012 1 2032299 0 196609 0 12 00 00 00 ab 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4159 11.196708679 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531253 12 -1 694974 0 0xffffffff 0 -1 694974 0 ff ff ff ff be 9a 0a 00 00 00 00 00 ............ +4168 11.298836946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531265 12 26 703428 0 0x0000001a 0 26 703428 0 1a 00 00 00 c4 bb 0a 00 00 00 00 00 ............ +4170 11.299058914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531277 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 44892160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4172 11.299323082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860586 12 -1 703428 0 0xffffffff 0 -1 703428 0 ff ff ff ff c4 bb 0a 00 00 00 00 00 ............ +4174 11.299891472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860598 12 22 694975 0 0x00000016 0 22 694975 0 16 00 00 00 bf 9a 0a 00 00 00 00 00 ............ +4176 11.300514936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860610 22 18 2032301 0 0x00000012 1 2032301 0 196609 0 12 00 00 00 ad 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4178 11.300897598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531303 12 -1 694975 0 0xffffffff 0 -1 694975 0 ff ff ff ff bf 9a 0a 00 00 00 00 00 ............ +4181 11.402070284 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531315 12 26 703429 0 0x0000001a 0 26 703429 0 1a 00 00 00 c5 bb 0a 00 00 00 00 00 ............ +4183 11.402269840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531327 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 45023232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4185 11.402623892 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860632 12 -1 703429 0 0xffffffff 0 -1 703429 0 ff ff ff ff c5 bb 0a 00 00 00 00 00 ............ +4187 11.403062344 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860644 12 22 694976 0 0x00000016 0 22 694976 0 16 00 00 00 c0 9a 0a 00 00 00 00 00 ............ +4189 11.403225660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860656 22 18 2032303 0 0x00000012 1 2032303 0 196609 0 12 00 00 00 af 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4191 11.403558016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531353 12 -1 694976 0 0xffffffff 0 -1 694976 0 ff ff ff ff c0 9a 0a 00 00 00 00 00 ............ +4193 11.409203053 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531365 12 34 703430 0 0x00000022 0 34 703430 0 22 00 00 00 c6 bb 0a 00 00 00 00 00 """..........." +4195 11.409376144 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531377 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5767168 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a8 ff 01 00 00 00 00 00 76 3e 0e c3 9d 01 00 00 .....!...o3...............v>...... +4197 11.409478664 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531411 12 67 703431 0 0x00000043 0 67 703431 0 43 00 00 00 c7 bb 0a 00 00 00 00 00 C........... +4199 11.409563303 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531423 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a8 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c ad a0 18 90 ?.....3...|8...................=B.....&......... +4200 11.409607172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860678 12 -1 703430 0 0xffffffff 0 -1 703430 0 ff ff ff ff c6 bb 0a 00 00 00 00 00 ............ +4203 11.409807444 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860690 12 -1 703431 0 0xffffffff 0 -1 703431 0 ff ff ff ff c7 bb 0a 00 00 00 00 00 ............ +4205 11.411054611 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860702 12 52 694977 0 0x00000034 0 52 694977 0 34 00 00 00 c1 9a 0a 00 00 00 00 00 4........... +4207 11.411290884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860714 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a8 ff 01 00 00 00 00 00 00 00 b8 8f fb 4f 4a 01 00 00 "0...Dk.................L."".([..................O" +4209 11.411645412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531490 12 -1 694977 0 0xffffffff 0 -1 694977 0 ff ff ff ff c1 9a 0a 00 00 00 00 00 ............ +4212 11.412406206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531502 12 30 703432 0 0x0000001e 0 30 703432 0 1e 00 00 00 c8 bb 0a 00 00 00 00 00 ............ +4214 11.412611485 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531514 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 45154304 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b1 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4216 11.413120270 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860766 12 -1 703432 0 0xffffffff 0 -1 703432 0 ff ff ff ff c8 bb 0a 00 00 00 00 00 ............ +4218 11.413445473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860778 12 26 694978 0 0x0000001a 0 26 694978 0 1a 00 00 00 c2 9a 0a 00 00 00 00 00 ............ +4220 11.413596869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860790 26 22 2032305 0 0x00000016 1 2032305 0 196609 0 16 00 00 00 b1 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4222 11.413856983 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531544 12 -1 694978 0 0xffffffff 0 -1 694978 0 ff ff ff ff c2 9a 0a 00 00 00 00 00 ............ +4255 11.504925013 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531556 12 26 703433 0 0x0000001a 0 26 703433 0 1a 00 00 00 c9 bb 0a 00 00 00 00 00 ............ +4257 11.505124331 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531568 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 45285376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4259 11.505383492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860816 12 -1 703433 0 0xffffffff 0 -1 703433 0 ff ff ff ff c9 bb 0a 00 00 00 00 00 ............ +4261 11.506131887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860828 12 22 694979 0 0x00000016 0 22 694979 0 16 00 00 00 c3 9a 0a 00 00 00 00 00 ............ +4263 11.506335258 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860840 22 18 2032307 0 0x00000012 1 2032307 0 196609 0 12 00 00 00 b3 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4265 11.506763935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531594 12 -1 694979 0 0xffffffff 0 -1 694979 0 ff ff ff ff c3 9a 0a 00 00 00 00 00 ............ +4273 11.523170233 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860862 12 -2 79883 79900 0xfffffffe 0 -2 79883 79900 fe ff ff ff 0b 38 01 00 1c 38 01 00 .....8...8.. +4276 11.583351374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531606 12 -2 79901 79883 0xfffffffe 0 -2 79901 79883 fe ff ff ff 1d 38 01 00 0b 38 01 00 .....8...8.. +4284 11.608660698 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531618 12 26 703434 0 0x0000001a 0 26 703434 0 1a 00 00 00 ca bb 0a 00 00 00 00 00 ............ +4286 11.608882666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531630 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 45416448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4288 11.609230042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860874 12 -1 703434 0 0xffffffff 0 -1 703434 0 ff ff ff ff ca bb 0a 00 00 00 00 00 ............ +4290 11.609702110 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860886 12 22 694980 0 0x00000016 0 22 694980 0 16 00 00 00 c4 9a 0a 00 00 00 00 00 ............ +4292 11.609902382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860898 22 18 2032309 0 0x00000012 1 2032309 0 196609 0 12 00 00 00 b5 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4294 11.610311270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531656 12 -1 694980 0 0xffffffff 0 -1 694980 0 ff ff ff ff c4 9a 0a 00 00 00 00 00 ............ +4299 11.711554527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531668 12 26 703435 0 0x0000001a 0 26 703435 0 1a 00 00 00 cb bb 0a 00 00 00 00 00 ............ +4301 11.711792707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531680 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 45547520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4303 11.712155342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860920 12 -1 703435 0 0xffffffff 0 -1 703435 0 ff ff ff ff cb bb 0a 00 00 00 00 00 ............ +4305 11.712646246 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860932 12 22 694981 0 0x00000016 0 22 694981 0 16 00 00 00 c5 9a 0a 00 00 00 00 00 ............ +4307 11.712944746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860944 22 18 2032311 0 0x00000012 1 2032311 0 196609 0 12 00 00 00 b7 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4309 11.713253736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531706 12 -1 694981 0 0xffffffff 0 -1 694981 0 ff ff ff ff c5 9a 0a 00 00 00 00 00 ............ +4311 11.714611530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531718 12 34 703436 0 0x00000022 0 34 703436 0 22 00 00 00 cc bb 0a 00 00 00 00 00 """..........." +4313 11.714719057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531730 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5701632 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a9 ff 01 00 00 00 00 00 a8 3f 0e c3 9d 01 00 00 .....!...o3................?...... +4315 11.714883566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531764 12 67 703437 0 0x00000043 0 67 703437 0 43 00 00 00 cd bb 0a 00 00 00 00 00 C........... +4317 11.714970112 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531776 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a9 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ac 2f d5 2a 90 ?.....3...|8...................=B.....&......... +4319 11.715060711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860966 12 -1 703436 0 0xffffffff 0 -1 703436 0 ff ff ff ff cc bb 0a 00 00 00 00 00 ............ +4321 11.715214491 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860978 12 -1 703437 0 0xffffffff 0 -1 703437 0 ff ff ff ff cd bb 0a 00 00 00 00 00 ............ +4325 11.716401815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375860990 12 52 694982 0 0x00000034 0 52 694982 0 34 00 00 00 c6 9a 0a 00 00 00 00 00 4........... +4327 11.716624498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861002 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a9 ff 01 00 00 00 00 00 00 00 af 26 2a 50 4a 01 00 00 "0...Dk.................L."".([................&*P" +4329 11.717082024 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531843 12 -1 694982 0 0xffffffff 0 -1 694982 0 ff ff ff ff c6 9a 0a 00 00 00 00 00 ............ +4331 11.717816591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531855 12 30 703438 0 0x0000001e 0 30 703438 0 1e 00 00 00 ce bb 0a 00 00 00 00 00 ............ +4333 11.718052626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531867 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 45678592 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b9 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4335 11.718338490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861054 12 -1 703438 0 0xffffffff 0 -1 703438 0 ff ff ff ff ce bb 0a 00 00 00 00 00 ............ +4337 11.718739271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861066 12 26 694983 0 0x0000001a 0 26 694983 0 1a 00 00 00 c7 9a 0a 00 00 00 00 00 ............ +4339 11.718970537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861078 26 22 2032313 0 0x00000016 1 2032313 0 196609 0 16 00 00 00 b9 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4341 11.719284773 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531897 12 -1 694983 0 0xffffffff 0 -1 694983 0 ff ff ff ff c7 9a 0a 00 00 00 00 00 ............ +4346 11.814504385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531909 12 26 703439 0 0x0000001a 0 26 703439 0 1a 00 00 00 cf bb 0a 00 00 00 00 00 ............ +4348 11.814711094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531921 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 45809664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4350 11.815190077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861104 12 -1 703439 0 0xffffffff 0 -1 703439 0 ff ff ff ff cf bb 0a 00 00 00 00 00 ............ +4352 11.815613508 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861116 12 22 694984 0 0x00000016 0 22 694984 0 16 00 00 00 c8 9a 0a 00 00 00 00 00 ............ +4354 11.815774918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861128 22 18 2032315 0 0x00000012 1 2032315 0 196609 0 12 00 00 00 bb 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4356 11.816146374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531947 12 -1 694984 0 0xffffffff 0 -1 694984 0 ff ff ff ff c8 9a 0a 00 00 00 00 00 ............ +4362 11.917349815 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531959 12 26 703440 0 0x0000001a 0 26 703440 0 1a 00 00 00 d0 bb 0a 00 00 00 00 00 ............ +4364 11.917516232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531971 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 45940736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4366 11.917904139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861150 12 -1 703440 0 0xffffffff 0 -1 703440 0 ff ff ff ff d0 bb 0a 00 00 00 00 00 ............ +4368 11.918498993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861162 12 22 694985 0 0x00000016 0 22 694985 0 16 00 00 00 c9 9a 0a 00 00 00 00 00 ............ +4370 11.918714523 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861174 22 18 2032317 0 0x00000012 1 2032317 0 196609 0 12 00 00 00 bd 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4372 11.919060707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331531997 12 -1 694985 0 0xffffffff 0 -1 694985 0 ff ff ff ff c9 9a 0a 00 00 00 00 00 ............ +4378 12.018893957 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532009 12 34 703441 0 0x00000022 0 34 703441 0 22 00 00 00 d1 bb 0a 00 00 00 00 00 """..........." +4380 12.019123554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532021 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5636096 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 aa ff 01 00 00 00 00 00 d8 40 0e c3 9d 01 00 00 .....!...o3................@...... +4382 12.019213676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532055 12 67 703442 0 0x00000043 0 67 703442 0 43 00 00 00 d2 bb 0a 00 00 00 00 00 C........... +4384 12.019296408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532067 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 aa ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c bd f6 3c 90 ?.....3...|8...................=B.....&......... +4385 12.019314766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861196 12 -1 703441 0 0xffffffff 0 -1 703441 0 ff ff ff ff d1 bb 0a 00 00 00 00 00 ............ +4388 12.019543886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861208 12 -1 703442 0 0xffffffff 0 -1 703442 0 ff ff ff ff d2 bb 0a 00 00 00 00 00 ............ +4390 12.020510674 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861220 12 52 694986 0 0x00000034 0 52 694986 0 34 00 00 00 ca 9a 0a 00 00 00 00 00 4........... +4392 12.020654917 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861232 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 aa ff 01 00 00 00 00 00 00 00 56 8f 58 50 4a 01 00 00 "0...Dk.................L."".([...............V.XP" +4394 12.020900965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532134 12 -1 694986 0 0xffffffff 0 -1 694986 0 ff ff ff ff ca 9a 0a 00 00 00 00 00 ............ +4398 12.021629810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532146 12 56 703443 0 0x00000038 0 56 703443 0 38 00 00 00 d3 bb 0a 00 00 00 00 00 8........... +4401 12.021772385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532158 56 22 1080266580 1076977378 0x00000016 0 22 1080266580 1076977378 196609 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 02 1f 00 00 00 00 00 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c1 02 1f 00 00 00 00 00 00 00 00 00 ....T.c@.^1@..................U..b..:P.......... +4405 12.022060394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861284 12 -1 703443 0 0xffffffff 0 -1 703443 0 ff ff ff ff d3 bb 0a 00 00 00 00 00 ............ +4407 12.022392511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861296 12 22 694987 0 0x00000016 0 22 694987 0 16 00 00 00 cb 9a 0a 00 00 00 00 00 ............ +4409 12.022535801 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861308 22 18 2032319 0 0x00000012 1 2032319 0 196609 0 12 00 00 00 bf 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4411 12.022658825 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861330 12 26 694988 0 0x0000001a 0 26 694988 0 1a 00 00 00 cc 9a 0a 00 00 00 00 00 ............ +4413 12.022741795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861342 26 22 2032321 0 0x00000016 1 2032321 0 196609 0 16 00 00 00 c1 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4414 12.022758722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532214 12 -1 694987 0 0xffffffff 0 -1 694987 0 ff ff ff ff cb 9a 0a 00 00 00 00 00 ............ +4417 12.022981167 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532226 12 -1 694988 0 0xffffffff 0 -1 694988 0 ff ff ff ff cc 9a 0a 00 00 00 00 00 ............ +4419 12.024185181 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861368 12 -2 79884 79901 0xfffffffe 0 -2 79884 79901 fe ff ff ff 0c 38 01 00 1d 38 01 00 .....8...8.. +4423 12.084734678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532238 12 -2 79902 79884 0xfffffffe 0 -2 79902 79884 fe ff ff ff 1e 38 01 00 0c 38 01 00 .....8...8.. +4432 12.123594999 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532250 12 26 703444 0 0x0000001a 0 26 703444 0 1a 00 00 00 d4 bb 0a 00 00 00 00 00 ............ +4434 12.123756886 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532262 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 46333952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4436 12.124180794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861380 12 -1 703444 0 0xffffffff 0 -1 703444 0 ff ff ff ff d4 bb 0a 00 00 00 00 00 ............ +4438 12.125261784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861392 12 22 694989 0 0x00000016 0 22 694989 0 16 00 00 00 cd 9a 0a 00 00 00 00 00 ............ +4440 12.125470400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861404 22 18 2032323 0 0x00000012 1 2032323 0 196609 0 12 00 00 00 c3 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4442 12.125773430 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532288 12 -1 694989 0 0xffffffff 0 -1 694989 0 ff ff ff ff cd 9a 0a 00 00 00 00 00 ............ +4448 12.228722811 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532300 12 26 703445 0 0x0000001a 0 26 703445 0 1a 00 00 00 d5 bb 0a 00 00 00 00 00 ............ +4452 12.229180098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532312 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 46465024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4454 12.229521275 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861426 12 -1 703445 0 0xffffffff 0 -1 703445 0 ff ff ff ff d5 bb 0a 00 00 00 00 00 ............ +4456 12.230041504 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861438 12 22 694990 0 0x00000016 0 22 694990 0 16 00 00 00 ce 9a 0a 00 00 00 00 00 ............ +4458 12.230203152 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861450 22 18 2032325 0 0x00000012 1 2032325 0 196609 0 12 00 00 00 c5 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4460 12.230513096 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532338 12 -1 694990 0 0xffffffff 0 -1 694990 0 ff ff ff ff ce 9a 0a 00 00 00 00 00 ............ +4464 12.323051214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532350 12 34 703446 0 0x00000022 0 34 703446 0 22 00 00 00 d6 bb 0a 00 00 00 00 00 """..........." +4466 12.323291063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532362 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5570560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ab ff 01 00 00 00 00 00 08 42 0e c3 9d 01 00 00 .....!...o3................B...... +4468 12.323448181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532396 12 67 703447 0 0x00000043 0 67 703447 0 43 00 00 00 d7 bb 0a 00 00 00 00 00 C........... +4470 12.323529005 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532408 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ab ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c b7 1c 4f 90 ?.....3...|8...................=B.....&......... +4472 12.323687077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861472 12 -1 703446 0 0xffffffff 0 -1 703446 0 ff ff ff ff d6 bb 0a 00 00 00 00 00 ............ +4474 12.323911190 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861484 12 -1 703447 0 0xffffffff 0 -1 703447 0 ff ff ff ff d7 bb 0a 00 00 00 00 00 ............ +4476 12.324851513 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861496 12 52 694991 0 0x00000034 0 52 694991 0 34 00 00 00 cf 9a 0a 00 00 00 00 00 4........... +4478 12.325073481 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861508 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ab ff 01 00 00 00 00 00 00 00 60 fc 86 50 4a 01 00 00 "0...Dk.................L."".([...............`..P" +4480 12.325357676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532475 12 -1 694991 0 0xffffffff 0 -1 694991 0 ff ff ff ff cf 9a 0a 00 00 00 00 00 ............ +4482 12.326145649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532487 12 30 703448 0 0x0000001e 0 30 703448 0 1e 00 00 00 d8 bb 0a 00 00 00 00 00 ............ +4484 12.326280117 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532499 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 46596096 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4486 12.326566458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861560 12 -1 703448 0 0xffffffff 0 -1 703448 0 ff ff ff ff d8 bb 0a 00 00 00 00 00 ............ +4488 12.326992512 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861572 12 26 694992 0 0x0000001a 0 26 694992 0 1a 00 00 00 d0 9a 0a 00 00 00 00 00 ............ +4490 12.327135563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861584 26 22 2032327 0 0x00000016 1 2032327 0 196609 0 16 00 00 00 c7 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4492 12.327386141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532529 12 -1 694992 0 0xffffffff 0 -1 694992 0 ff ff ff ff d0 9a 0a 00 00 00 00 00 ............ +4494 12.331436634 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532541 12 26 703449 0 0x0000001a 0 26 703449 0 1a 00 00 00 d9 bb 0a 00 00 00 00 00 ............ +4496 12.331570625 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532553 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 46727168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4498 12.331876516 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861610 12 -1 703449 0 0xffffffff 0 -1 703449 0 ff ff ff ff d9 bb 0a 00 00 00 00 00 ............ +4500 12.332179070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861622 12 22 694993 0 0x00000016 0 22 694993 0 16 00 00 00 d1 9a 0a 00 00 00 00 00 ............ +4502 12.332373142 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861634 22 18 2032329 0 0x00000012 1 2032329 0 196609 0 12 00 00 00 c9 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4504 12.332616091 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532579 12 -1 694993 0 0xffffffff 0 -1 694993 0 ff ff ff ff d1 9a 0a 00 00 00 00 00 ............ +4510 12.434739828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532591 12 26 703450 0 0x0000001a 0 26 703450 0 1a 00 00 00 da bb 0a 00 00 00 00 00 ............ +4512 12.434919596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532603 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 46858240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4514 12.435292244 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861656 12 -1 703450 0 0xffffffff 0 -1 703450 0 ff ff ff ff da bb 0a 00 00 00 00 00 ............ +4516 12.435780525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861668 12 22 694994 0 0x00000016 0 22 694994 0 16 00 00 00 d2 9a 0a 00 00 00 00 00 ............ +4518 12.435943842 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861680 22 18 2032331 0 0x00000012 1 2032331 0 196609 0 12 00 00 00 cb 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4520 12.436222076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532629 12 -1 694994 0 0xffffffff 0 -1 694994 0 ff ff ff ff d2 9a 0a 00 00 00 00 00 ............ +4529 12.524876595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861702 12 -2 79885 79902 0xfffffffe 0 -2 79885 79902 fe ff ff ff 0d 38 01 00 1e 38 01 00 .....8...8.. +4531 12.538449287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532641 12 26 703451 0 0x0000001a 0 26 703451 0 1a 00 00 00 db bb 0a 00 00 00 00 00 ............ +4533 12.538654089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532653 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 46989312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4535 12.539049149 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861714 12 -1 703451 0 0xffffffff 0 -1 703451 0 ff ff ff ff db bb 0a 00 00 00 00 00 ............ +4537 12.539803982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861726 12 22 694995 0 0x00000016 0 22 694995 0 16 00 00 00 d3 9a 0a 00 00 00 00 00 ............ +4539 12.540000200 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861738 22 18 2032333 0 0x00000012 1 2032333 0 196609 0 12 00 00 00 cd 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4541 12.540304899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532679 12 -1 694995 0 0xffffffff 0 -1 694995 0 ff ff ff ff d3 9a 0a 00 00 00 00 00 ............ +4544 12.585603714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532691 12 -2 79903 79885 0xfffffffe 0 -2 79903 79885 fe ff ff ff 1f 38 01 00 0d 38 01 00 .....8...8.. +4554 12.627478361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532703 12 34 703452 0 0x00000022 0 34 703452 0 22 00 00 00 dc bb 0a 00 00 00 00 00 """..........." +4556 12.627659082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532715 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5505024 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ac ff 01 00 00 00 00 00 39 43 0e c3 9d 01 00 00 .....!...o3...............9C...... +4558 12.627750397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532749 12 67 703453 0 0x00000043 0 67 703453 0 43 00 00 00 dd bb 0a 00 00 00 00 00 C........... +4560 12.627835512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532761 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ac ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c0 a1 45 61 90 ?.....3...|8...................=B.....&......... +4562 12.628039122 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861760 12 -1 703452 0 0xffffffff 0 -1 703452 0 ff ff ff ff dc bb 0a 00 00 00 00 00 ............ +4564 12.628264666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861772 12 -1 703453 0 0xffffffff 0 -1 703453 0 ff ff ff ff dd bb 0a 00 00 00 00 00 ............ +4566 12.629603863 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861784 12 52 694996 0 0x00000034 0 52 694996 0 34 00 00 00 d4 9a 0a 00 00 00 00 00 4........... +4568 12.629788876 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861796 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ac ff 01 00 00 00 00 00 00 00 24 7c b5 50 4a 01 00 00 "0...Dk.................L."".([...............$|.P" +4570 12.630041122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532828 12 -1 694996 0 0xffffffff 0 -1 694996 0 ff ff ff ff d4 9a 0a 00 00 00 00 00 ............ +4572 12.630982876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532840 12 30 703454 0 0x0000001e 0 30 703454 0 1e 00 00 00 de bb 0a 00 00 00 00 00 ............ +4574 12.631251574 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532852 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 47120384 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cf 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4576 12.631777287 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861848 12 -1 703454 0 0xffffffff 0 -1 703454 0 ff ff ff ff de bb 0a 00 00 00 00 00 ............ +4578 12.632239580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861860 12 26 694997 0 0x0000001a 0 26 694997 0 1a 00 00 00 d5 9a 0a 00 00 00 00 00 ............ +4580 12.632457972 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861872 26 22 2032335 0 0x00000016 1 2032335 0 196609 0 16 00 00 00 cf 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4582 12.632793903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532882 12 -1 694997 0 0xffffffff 0 -1 694997 0 ff ff ff ff d5 9a 0a 00 00 00 00 00 ............ +4584 12.642827988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532894 12 26 703455 0 0x0000001a 0 26 703455 0 1a 00 00 00 df bb 0a 00 00 00 00 00 ............ +4586 12.642992973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532906 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 47251456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4588 12.643438101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861898 12 -1 703455 0 0xffffffff 0 -1 703455 0 ff ff ff ff df bb 0a 00 00 00 00 00 ............ +4590 12.643751383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861910 12 22 694998 0 0x00000016 0 22 694998 0 16 00 00 00 d6 9a 0a 00 00 00 00 00 ............ +4592 12.643915892 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861922 22 18 2032337 0 0x00000012 1 2032337 0 196609 0 12 00 00 00 d1 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4594 12.644279480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532932 12 -1 694998 0 0xffffffff 0 -1 694998 0 ff ff ff ff d6 9a 0a 00 00 00 00 00 ............ +4601 12.746065140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532944 12 26 703456 0 0x0000001a 0 26 703456 0 1a 00 00 00 e0 bb 0a 00 00 00 00 00 ............ +4603 12.746374130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532956 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 47382528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4605 12.746763229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861944 12 -1 703456 0 0xffffffff 0 -1 703456 0 ff ff ff ff e0 bb 0a 00 00 00 00 00 ............ +4607 12.747348309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861956 12 22 694999 0 0x00000016 0 22 694999 0 16 00 00 00 d7 9a 0a 00 00 00 00 00 ............ +4609 12.747517824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861968 22 18 2032339 0 0x00000012 1 2032339 0 196609 0 12 00 00 00 d3 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4611 12.747781992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532982 12 -1 694999 0 0xffffffff 0 -1 694999 0 ff ff ff ff d7 9a 0a 00 00 00 00 00 ............ +4614 12.849092484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331532994 12 26 703457 0 0x0000001a 0 26 703457 0 1a 00 00 00 e1 bb 0a 00 00 00 00 00 ............ +4616 12.849333286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533006 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 47513600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4618 12.849749327 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375861990 12 -1 703457 0 0xffffffff 0 -1 703457 0 ff ff ff ff e1 bb 0a 00 00 00 00 00 ............ +4620 12.850119591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862002 12 22 695000 0 0x00000016 0 22 695000 0 16 00 00 00 d8 9a 0a 00 00 00 00 00 ............ +4622 12.850316763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862014 22 18 2032341 0 0x00000012 1 2032341 0 196609 0 12 00 00 00 d5 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4624 12.850584984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533032 12 -1 695000 0 0xffffffff 0 -1 695000 0 ff ff ff ff d8 9a 0a 00 00 00 00 00 ............ +4640 12.932352066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533044 12 101 703458 0 0x00000065 0 101 703458 0 65 00 00 00 e2 bb 0a 00 00 00 00 00 e........... +4642 12.932558775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533056 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ad ff 01 00 00 00 00 00 69 44 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ad ff 01 00 00 00 00 .....!...o3...............iD......?.....3...|8.. +4644 12.933053017 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862036 12 -1 703458 0 0xffffffff 0 -1 703458 0 ff ff ff ff e2 bb 0a 00 00 00 00 00 ............ +4646 12.934113264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862048 12 52 695001 0 0x00000034 0 52 695001 0 34 00 00 00 d9 9a 0a 00 00 00 00 00 4........... +4648 12.934282064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862060 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ad ff 01 00 00 00 00 00 00 00 e9 f4 e3 50 4a 01 00 00 "0...Dk.................L."".([..................P" +4650 12.934578657 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533157 12 -1 695001 0 0xffffffff 0 -1 695001 0 ff ff ff ff d9 9a 0a 00 00 00 00 00 ............ +4652 12.935868025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533169 12 30 703459 0 0x0000001e 0 30 703459 0 1e 00 00 00 e3 bb 0a 00 00 00 00 00 ............ +4655 12.936197042 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533181 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 47644672 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d7 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4660 12.936593056 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862112 12 -1 703459 0 0xffffffff 0 -1 703459 0 ff ff ff ff e3 bb 0a 00 00 00 00 00 ............ +4664 12.936907291 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862124 12 26 695002 0 0x0000001a 0 26 695002 0 1a 00 00 00 da 9a 0a 00 00 00 00 00 ............ +4666 12.937143564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862136 26 22 2032343 0 0x00000016 1 2032343 0 196609 0 16 00 00 00 d7 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4668 12.937372446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533211 12 -1 695002 0 0xffffffff 0 -1 695002 0 ff ff ff ff da 9a 0a 00 00 00 00 00 ............ +4672 12.952728748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533223 12 26 703460 0 0x0000001a 0 26 703460 0 1a 00 00 00 e4 bb 0a 00 00 00 00 00 ............ +4674 12.953020096 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533235 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 47775744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4676 12.953341246 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862162 12 -1 703460 0 0xffffffff 0 -1 703460 0 ff ff ff ff e4 bb 0a 00 00 00 00 00 ............ +4678 12.954146147 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862174 12 22 695003 0 0x00000016 0 22 695003 0 16 00 00 00 db 9a 0a 00 00 00 00 00 ............ +4680 12.954304934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862186 22 18 2032345 0 0x00000012 1 2032345 0 196609 0 12 00 00 00 d9 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4682 12.954698563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533261 12 -1 695003 0 0xffffffff 0 -1 695003 0 ff ff ff ff db 9a 0a 00 00 00 00 00 ............ +4698 13.027018785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862208 12 -2 79886 79903 0xfffffffe 0 -2 79886 79903 fe ff ff ff 0e 38 01 00 1f 38 01 00 .....8...8.. +4701 13.056491375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533273 12 26 703461 0 0x0000001a 0 26 703461 0 1a 00 00 00 e5 bb 0a 00 00 00 00 00 ............ +4703 13.056813955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533285 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 47906816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4705 13.057199955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862220 12 -1 703461 0 0xffffffff 0 -1 703461 0 ff ff ff ff e5 bb 0a 00 00 00 00 00 ............ +4707 13.057684898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862232 12 22 695004 0 0x00000016 0 22 695004 0 16 00 00 00 dc 9a 0a 00 00 00 00 00 ............ +4709 13.057816744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862244 22 18 2032347 0 0x00000012 1 2032347 0 196609 0 12 00 00 00 db 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4711 13.058174849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533311 12 -1 695004 0 0xffffffff 0 -1 695004 0 ff ff ff ff dc 9a 0a 00 00 00 00 00 ............ +4715 13.087179422 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533323 12 -2 79904 79886 0xfffffffe 0 -2 79904 79886 fe ff ff ff 20 38 01 00 0e 38 01 00 .... 8...8.. +4724 13.160845280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533335 12 26 703462 0 0x0000001a 0 26 703462 0 1a 00 00 00 e6 bb 0a 00 00 00 00 00 ............ +4726 13.161073208 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533347 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 48037888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4728 13.161462784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862266 12 -1 703462 0 0xffffffff 0 -1 703462 0 ff ff ff ff e6 bb 0a 00 00 00 00 00 ............ +4730 13.162043095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862278 12 22 695005 0 0x00000016 0 22 695005 0 16 00 00 00 dd 9a 0a 00 00 00 00 00 ............ +4732 13.162187099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862290 22 18 2032349 0 0x00000012 1 2032349 0 196609 0 12 00 00 00 dd 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4734 13.162473917 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533373 12 -1 695005 0 0xffffffff 0 -1 695005 0 ff ff ff ff dd 9a 0a 00 00 00 00 00 ............ +4741 13.238486528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533385 12 34 703463 0 0x00000022 0 34 703463 0 22 00 00 00 e7 bb 0a 00 00 00 00 00 """..........." +4743 13.238903761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533397 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5373952 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ae ff 01 00 00 00 00 00 9b 45 0e c3 9d 01 00 00 .....!...o3................E...... +4745 13.239175797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533431 12 67 703464 0 0x00000043 0 67 703464 0 43 00 00 00 e8 bb 0a 00 00 00 00 00 C........... +4747 13.239374161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862312 12 -1 703463 0 0xffffffff 0 -1 703463 0 ff ff ff ff e7 bb 0a 00 00 00 00 00 ............ +4749 13.239583015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533443 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ae ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c f1 b2 85 90 ?.....3...|8...................=B.....&......... +4751 13.240129948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862324 12 -1 703464 0 0xffffffff 0 -1 703464 0 ff ff ff ff e8 bb 0a 00 00 00 00 00 ............ +4753 13.241183758 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862336 12 52 695006 0 0x00000034 0 52 695006 0 34 00 00 00 de 9a 0a 00 00 00 00 00 4........... +4755 13.241418839 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862348 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ae ff 01 00 00 00 00 00 00 00 11 ce 12 51 4a 01 00 00 "0...Dk.................L."".([..................Q" +4757 13.241803646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533510 12 -1 695006 0 0xffffffff 0 -1 695006 0 ff ff ff ff de 9a 0a 00 00 00 00 00 ............ +4759 13.242759943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533522 12 30 703465 0 0x0000001e 0 30 703465 0 1e 00 00 00 e9 bb 0a 00 00 00 00 00 ............ +4761 13.242942572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533534 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 48168960 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 df 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4763 13.243424177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862400 12 -1 703465 0 0xffffffff 0 -1 703465 0 ff ff ff ff e9 bb 0a 00 00 00 00 00 ............ +4765 13.243833303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862412 12 26 695007 0 0x0000001a 0 26 695007 0 1a 00 00 00 df 9a 0a 00 00 00 00 00 ............ +4767 13.243984461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862424 26 22 2032351 0 0x00000016 1 2032351 0 196609 0 16 00 00 00 df 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4769 13.244320393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533564 12 -1 695007 0 0xffffffff 0 -1 695007 0 ff ff ff ff df 9a 0a 00 00 00 00 00 ............ +4771 13.263810396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533576 12 26 703466 0 0x0000001a 0 26 703466 0 1a 00 00 00 ea bb 0a 00 00 00 00 00 ............ +4773 13.263967276 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533588 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 48300032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4775 13.264299393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862450 12 -1 703466 0 0xffffffff 0 -1 703466 0 ff ff ff ff ea bb 0a 00 00 00 00 00 ............ +4777 13.264783144 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862462 12 22 695008 0 0x00000016 0 22 695008 0 16 00 00 00 e0 9a 0a 00 00 00 00 00 ............ +4779 13.264938354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862474 22 18 2032353 0 0x00000012 1 2032353 0 196609 0 12 00 00 00 e1 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4781 13.265157700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533614 12 -1 695008 0 0xffffffff 0 -1 695008 0 ff ff ff ff e0 9a 0a 00 00 00 00 00 ............ +4784 13.366395473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533626 12 26 703467 0 0x0000001a 0 26 703467 0 1a 00 00 00 eb bb 0a 00 00 00 00 00 ............ +4786 13.366604805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533638 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 48431104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4788 13.367133141 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862496 12 -1 703467 0 0xffffffff 0 -1 703467 0 ff ff ff ff eb bb 0a 00 00 00 00 00 ............ +4790 13.367705584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862508 12 22 695009 0 0x00000016 0 22 695009 0 16 00 00 00 e1 9a 0a 00 00 00 00 00 ............ +4792 13.367912769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862520 22 18 2032355 0 0x00000012 1 2032355 0 196609 0 12 00 00 00 e3 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4794 13.368280172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533664 12 -1 695009 0 0xffffffff 0 -1 695009 0 ff ff ff ff e1 9a 0a 00 00 00 00 00 ............ +4799 13.470246077 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533676 12 26 703468 0 0x0000001a 0 26 703468 0 1a 00 00 00 ec bb 0a 00 00 00 00 00 ............ +4801 13.470426798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533688 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 48562176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4803 13.470814705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862542 12 -1 703468 0 0xffffffff 0 -1 703468 0 ff ff ff ff ec bb 0a 00 00 00 00 00 ............ +4805 13.471978188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862554 12 22 695010 0 0x00000016 0 22 695010 0 16 00 00 00 e2 9a 0a 00 00 00 00 00 ............ +4807 13.472202539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862566 22 18 2032357 0 0x00000012 1 2032357 0 196609 0 12 00 00 00 e5 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4809 13.472527742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533714 12 -1 695010 0 0xffffffff 0 -1 695010 0 ff ff ff ff e2 9a 0a 00 00 00 00 00 ............ +4818 13.528075695 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862588 12 -2 79887 79904 0xfffffffe 0 -2 79887 79904 fe ff ff ff 0f 38 01 00 20 38 01 00 .....8.. 8.. +4820 13.545079231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533726 12 101 703469 0 0x00000065 0 101 703469 0 65 00 00 00 ed bb 0a 00 00 00 00 00 e........... +4822 13.545365572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533738 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 af ff 01 00 00 00 00 00 ce 46 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 af ff 01 00 00 00 00 .....!...o3................F......?.....3...|8.. +4824 13.546071291 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862600 12 -1 703469 0 0xffffffff 0 -1 703469 0 ff ff ff ff ed bb 0a 00 00 00 00 00 ............ +4826 13.547725439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862612 12 52 695011 0 0x00000034 0 52 695011 0 34 00 00 00 e3 9a 0a 00 00 00 00 00 4........... +4828 13.547901392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862624 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 af ff 01 00 00 00 00 00 00 00 7e 90 41 51 4a 01 00 00 "0...Dk.................L."".([...............~.AQ" +4830 13.548239231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533839 12 -1 695011 0 0xffffffff 0 -1 695011 0 ff ff ff ff e3 9a 0a 00 00 00 00 00 ............ +4832 13.549041033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533851 12 30 703470 0 0x0000001e 0 30 703470 0 1e 00 00 00 ee bb 0a 00 00 00 00 00 ............ +4834 13.549194813 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533863 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 48693248 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e7 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4836 13.549455643 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862676 12 -1 703470 0 0xffffffff 0 -1 703470 0 ff ff ff ff ee bb 0a 00 00 00 00 00 ............ +4838 13.549942255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862688 12 26 695012 0 0x0000001a 0 26 695012 0 1a 00 00 00 e4 9a 0a 00 00 00 00 00 ............ +4840 13.550090313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862700 26 22 2032359 0 0x00000016 1 2032359 0 196609 0 16 00 00 00 e7 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4842 13.550379038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533893 12 -1 695012 0 0xffffffff 0 -1 695012 0 ff ff ff ff e4 9a 0a 00 00 00 00 00 ............ +4844 13.575336456 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533905 12 26 703471 0 0x0000001a 0 26 703471 0 1a 00 00 00 ef bb 0a 00 00 00 00 00 ............ +4846 13.575510979 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533917 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 48824320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4848 13.575987577 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862726 12 -1 703471 0 0xffffffff 0 -1 703471 0 ff ff ff ff ef bb 0a 00 00 00 00 00 ............ +4850 13.576442719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862738 12 22 695013 0 0x00000016 0 22 695013 0 16 00 00 00 e5 9a 0a 00 00 00 00 00 ............ +4852 13.576711893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862750 22 18 2032361 0 0x00000012 1 2032361 0 196609 0 12 00 00 00 e9 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4854 13.577021837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533943 12 -1 695013 0 0xffffffff 0 -1 695013 0 ff ff ff ff e5 9a 0a 00 00 00 00 00 ............ +4857 13.587897301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533955 12 -2 79905 79887 0xfffffffe 0 -2 79905 79887 fe ff ff ff 21 38 01 00 0f 38 01 00 ....!8...8.. +4868 13.679211140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533967 12 26 703472 0 0x0000001a 0 26 703472 0 1a 00 00 00 f0 bb 0a 00 00 00 00 00 ............ +4870 13.679429770 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331533979 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 48955392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4872 13.679923296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862772 12 -1 703472 0 0xffffffff 0 -1 703472 0 ff ff ff ff f0 bb 0a 00 00 00 00 00 ............ +4874 13.680916786 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862784 12 22 695014 0 0x00000016 0 22 695014 0 16 00 00 00 e6 9a 0a 00 00 00 00 00 ............ +4876 13.681087494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862796 22 18 2032363 0 0x00000012 1 2032363 0 196609 0 12 00 00 00 eb 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4878 13.681397676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534005 12 -1 695014 0 0xffffffff 0 -1 695014 0 ff ff ff ff e6 9a 0a 00 00 00 00 00 ............ +4885 13.783308744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534017 12 26 703473 0 0x0000001a 0 26 703473 0 1a 00 00 00 f1 bb 0a 00 00 00 00 00 ............ +4887 13.783495903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534029 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 49086464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4889 13.783880949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862818 12 -1 703473 0 0xffffffff 0 -1 703473 0 ff ff ff ff f1 bb 0a 00 00 00 00 00 ............ +4891 13.784458399 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862830 12 22 695015 0 0x00000016 0 22 695015 0 16 00 00 00 e7 9a 0a 00 00 00 00 00 ............ +4893 13.784626484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862842 22 18 2032365 0 0x00000012 1 2032365 0 196609 0 12 00 00 00 ed 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4895 13.784935474 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534055 12 -1 695015 0 0xffffffff 0 -1 695015 0 ff ff ff ff e7 9a 0a 00 00 00 00 00 ............ +4938 13.850723505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534067 12 101 703474 0 0x00000065 0 101 703474 0 65 00 00 00 f2 bb 0a 00 00 00 00 00 e........... +4940 13.850950003 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534079 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b0 ff 01 00 00 00 00 00 00 48 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b0 ff 01 00 00 00 00 .....!...o3................H......?.....3...|8.. +4942 13.851308107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862864 12 -1 703474 0 0xffffffff 0 -1 703474 0 ff ff ff ff f2 bb 0a 00 00 00 00 00 ............ +4944 13.853188992 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862876 12 52 695016 0 0x00000034 0 52 695016 0 34 00 00 00 e8 9a 0a 00 00 00 00 00 4........... +4946 13.853381157 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862888 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b0 ff 01 00 00 00 00 00 00 00 50 27 70 51 4a 01 00 00 "0...Dk.................L."".([...............P'pQ" +4948 13.853684187 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534180 12 -1 695016 0 0xffffffff 0 -1 695016 0 ff ff ff ff e8 9a 0a 00 00 00 00 00 ............ +4950 13.854452372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534192 12 30 703475 0 0x0000001e 0 30 703475 0 1e 00 00 00 f3 bb 0a 00 00 00 00 00 ............ +4952 13.854675531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534204 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 49217536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ef 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4954 13.855020761 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862940 12 -1 703475 0 0xffffffff 0 -1 703475 0 ff ff ff ff f3 bb 0a 00 00 00 00 00 ............ +4956 13.855854750 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862952 12 26 695017 0 0x0000001a 0 26 695017 0 1a 00 00 00 e9 9a 0a 00 00 00 00 00 ............ +4958 13.856015682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862964 26 22 2032367 0 0x00000016 1 2032367 0 196609 0 16 00 00 00 ef 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4960 13.856371880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534234 12 -1 695017 0 0xffffffff 0 -1 695017 0 ff ff ff ff e9 9a 0a 00 00 00 00 00 ............ +4962 13.886071920 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534246 12 26 703476 0 0x0000001a 0 26 703476 0 1a 00 00 00 f4 bb 0a 00 00 00 00 00 ............ +4964 13.886253119 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534258 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 49348608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +4966 13.886639357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375862990 12 -1 703476 0 0xffffffff 0 -1 703476 0 ff ff ff ff f4 bb 0a 00 00 00 00 00 ............ +4968 13.887157440 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863002 12 22 695018 0 0x00000016 0 22 695018 0 16 00 00 00 ea 9a 0a 00 00 00 00 00 ............ +4970 13.887348175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863014 22 18 2032369 0 0x00000012 1 2032369 0 196609 0 12 00 00 00 f1 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4972 13.887628794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534284 12 -1 695018 0 0xffffffff 0 -1 695018 0 ff ff ff ff ea 9a 0a 00 00 00 00 00 ............ +5017 13.989109039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534296 12 26 703477 0 0x0000001a 0 26 703477 0 1a 00 00 00 f5 bb 0a 00 00 00 00 00 ............ +5019 13.989330292 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534308 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 49479680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +5021 13.989731789 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863036 12 -1 703477 0 0xffffffff 0 -1 703477 0 ff ff ff ff f5 bb 0a 00 00 00 00 00 ............ +5023 13.990288019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863048 12 22 695019 0 0x00000016 0 22 695019 0 16 00 00 00 eb 9a 0a 00 00 00 00 00 ............ +5025 13.990492344 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863060 22 18 2032371 0 0x00000012 1 2032371 0 196609 0 12 00 00 00 f3 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5027 13.990762711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534334 12 -1 695019 0 0xffffffff 0 -1 695019 0 ff ff ff ff eb 9a 0a 00 00 00 00 00 ............ +5037 14.029071569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863082 12 -2 79888 79905 0xfffffffe 0 -2 79888 79905 fe ff ff ff 10 38 01 00 21 38 01 00 .....8..!8.. +5039 14.088653088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534346 12 -2 79906 79888 0xfffffffe 0 -2 79906 79888 fe ff ff ff 22 38 01 00 10 38 01 00 "....""8...8.." +5043 14.092887163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534358 12 26 703478 0 0x0000001a 0 26 703478 0 1a 00 00 00 f6 bb 0a 00 00 00 00 00 ............ +5045 14.093050003 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534370 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 49610752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +5047 14.093525410 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863094 12 -1 703478 0 0xffffffff 0 -1 703478 0 ff ff ff ff f6 bb 0a 00 00 00 00 00 ............ +5049 14.094207525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863106 12 22 695020 0 0x00000016 0 22 695020 0 16 00 00 00 ec 9a 0a 00 00 00 00 00 ............ +5051 14.094424486 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863118 22 18 2032373 0 0x00000012 1 2032373 0 196609 0 12 00 00 00 f5 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5053 14.094710588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534396 12 -1 695020 0 0xffffffff 0 -1 695020 0 ff ff ff ff ec 9a 0a 00 00 00 00 00 ............ +5102 14.156084776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534408 12 101 703479 0 0x00000065 0 101 703479 0 65 00 00 00 f7 bb 0a 00 00 00 00 00 e........... +5104 14.156348705 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534420 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b1 ff 01 00 00 00 00 00 31 49 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b1 ff 01 00 00 00 00 .....!...o3...............1I......?.....3...|8.. +5106 14.156696558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863140 12 -1 703479 0 0xffffffff 0 -1 703479 0 ff ff ff ff f7 bb 0a 00 00 00 00 00 ............ +5108 14.157969475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863152 12 52 695021 0 0x00000034 0 52 695021 0 34 00 00 00 ed 9a 0a 00 00 00 00 00 4........... +5110 14.158165455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863164 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b1 ff 01 00 00 00 00 00 00 00 cf b5 9e 51 4a 01 00 00 "0...Dk.................L."".([..................Q" +5112 14.158428669 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534521 12 -1 695021 0 0xffffffff 0 -1 695021 0 ff ff ff ff ed 9a 0a 00 00 00 00 00 ............ +5114 14.159282684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534533 12 30 703480 0 0x0000001e 0 30 703480 0 1e 00 00 00 f8 bb 0a 00 00 00 00 00 ............ +5116 14.159470797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534545 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 49741824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f7 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5118 14.159839630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863216 12 -1 703480 0 0xffffffff 0 -1 703480 0 ff ff ff ff f8 bb 0a 00 00 00 00 00 ............ +5120 14.160363197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863228 12 26 695022 0 0x0000001a 0 26 695022 0 1a 00 00 00 ee 9a 0a 00 00 00 00 00 ............ +5122 14.160503387 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863240 26 22 2032375 0 0x00000016 1 2032375 0 196609 0 16 00 00 00 f7 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5124 14.160749912 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534575 12 -1 695022 0 0xffffffff 0 -1 695022 0 ff ff ff ff ee 9a 0a 00 00 00 00 00 ............ +5126 14.195860863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534587 12 26 703481 0 0x0000001a 0 26 703481 0 1a 00 00 00 f9 bb 0a 00 00 00 00 00 ............ +5128 14.196080685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534599 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 49872896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +5130 14.196697474 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863266 12 -1 703481 0 0xffffffff 0 -1 703481 0 ff ff ff ff f9 bb 0a 00 00 00 00 00 ............ +5132 14.197233677 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863278 12 22 695023 0 0x00000016 0 22 695023 0 16 00 00 00 ef 9a 0a 00 00 00 00 00 ............ +5134 14.197386265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863290 22 18 2032377 0 0x00000012 1 2032377 0 196609 0 12 00 00 00 f9 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5136 14.197652817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534625 12 -1 695023 0 0xffffffff 0 -1 695023 0 ff ff ff ff ef 9a 0a 00 00 00 00 00 ............ +5182 14.298866987 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534637 12 26 703482 0 0x0000001a 0 26 703482 0 1a 00 00 00 fa bb 0a 00 00 00 00 00 ............ +5184 14.299033642 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534649 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 50003968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +5186 14.299441576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863312 12 -1 703482 0 0xffffffff 0 -1 703482 0 ff ff ff ff fa bb 0a 00 00 00 00 00 ............ +5188 14.300299883 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863324 12 22 695024 0 0x00000016 0 22 695024 0 16 00 00 00 f0 9a 0a 00 00 00 00 00 ............ +5190 14.300446987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863336 22 18 2032379 0 0x00000012 1 2032379 0 196609 0 12 00 00 00 fb 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5192 14.300757647 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534675 12 -1 695024 0 0xffffffff 0 -1 695024 0 ff ff ff ff f0 9a 0a 00 00 00 00 00 ............ +5202 14.401859283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534687 12 26 703483 0 0x0000001a 0 26 703483 0 1a 00 00 00 fb bb 0a 00 00 00 00 00 ............ +5205 14.401990175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534699 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 50135040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 02 1f 00 00 00 00 00 ....T.c@.^1@.............. +5208 14.402577400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863358 12 -1 703483 0 0xffffffff 0 -1 703483 0 ff ff ff ff fb bb 0a 00 00 00 00 00 ............ +5211 14.403503656 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863370 12 22 695025 0 0x00000016 0 22 695025 0 16 00 00 00 f1 9a 0a 00 00 00 00 00 ............ +5215 14.403670311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863382 22 18 2032381 0 0x00000012 1 2032381 0 196609 0 12 00 00 00 fd 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5218 14.403957129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534725 12 -1 695025 0 0xffffffff 0 -1 695025 0 ff ff ff ff f1 9a 0a 00 00 00 00 00 ............ +5249 14.460241079 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534737 12 101 703484 0 0x00000065 0 101 703484 0 65 00 00 00 fc bb 0a 00 00 00 00 00 e........... +5251 14.460463285 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534749 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b2 ff 01 00 00 00 00 00 61 4a 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b2 ff 01 00 00 00 00 .....!...o3...............aJ......?.....3...|8.. +5253 14.460902929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863404 12 -1 703484 0 0xffffffff 0 -1 703484 0 ff ff ff ff fc bb 0a 00 00 00 00 00 ............ +5255 14.462186098 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863416 12 52 695026 0 0x00000034 0 52 695026 0 34 00 00 00 f2 9a 0a 00 00 00 00 00 4........... +5257 14.462348461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863428 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b2 ff 01 00 00 00 00 00 00 00 cb 1f cd 51 4a 01 00 00 "0...Dk.................L."".([..................Q" +5259 14.462575912 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534850 12 -1 695026 0 0xffffffff 0 -1 695026 0 ff ff ff ff f2 9a 0a 00 00 00 00 00 ............ +5261 14.463510275 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534862 12 30 703485 0 0x0000001e 0 30 703485 0 1e 00 00 00 fd bb 0a 00 00 00 00 00 ............ +5263 14.463702917 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534874 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 50266112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ff 02 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5265 14.464028120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863480 12 -1 703485 0 0xffffffff 0 -1 703485 0 ff ff ff ff fd bb 0a 00 00 00 00 00 ............ +5267 14.464525461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863492 12 26 695027 0 0x0000001a 0 26 695027 0 1a 00 00 00 f3 9a 0a 00 00 00 00 00 ............ +5269 14.464663744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863504 26 22 2032383 0 0x00000016 1 2032383 0 196609 0 16 00 00 00 ff 02 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5271 14.464915276 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534904 12 -1 695027 0 0xffffffff 0 -1 695027 0 ff ff ff ff f3 9a 0a 00 00 00 00 00 ............ +5303 14.506837130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534916 12 26 703486 0 0x0000001a 0 26 703486 0 1a 00 00 00 fe bb 0a 00 00 00 00 00 ............ +5305 14.507039309 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534928 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 50397184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5307 14.507463217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863530 12 -1 703486 0 0xffffffff 0 -1 703486 0 ff ff ff ff fe bb 0a 00 00 00 00 00 ............ +5309 14.507886887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863542 12 22 695028 0 0x00000016 0 22 695028 0 16 00 00 00 f4 9a 0a 00 00 00 00 00 ............ +5311 14.508062840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863554 22 18 2032385 0 0x00000012 1 2032385 0 196609 0 12 00 00 00 01 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5313 14.508373260 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534954 12 -1 695028 0 0xffffffff 0 -1 695028 0 ff ff ff ff f4 9a 0a 00 00 00 00 00 ............ +5321 14.530566216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863576 12 -2 79889 79906 0xfffffffe 0 -2 79889 79906 fe ff ff ff 11 38 01 00 22 38 01 00 ".....8..""8.." +5363 14.589517355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534966 12 -2 79907 79889 0xfffffffe 0 -2 79907 79889 fe ff ff ff 23 38 01 00 11 38 01 00 ....#8...8.. +5371 14.609879017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534978 12 26 703487 0 0x0000001a 0 26 703487 0 1a 00 00 00 ff bb 0a 00 00 00 00 00 ............ +5373 14.610041618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331534990 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 50528256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5375 14.610409260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863588 12 -1 703487 0 0xffffffff 0 -1 703487 0 ff ff ff ff ff bb 0a 00 00 00 00 00 ............ +5377 14.612016678 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863600 12 22 695029 0 0x00000016 0 22 695029 0 16 00 00 00 f5 9a 0a 00 00 00 00 00 ............ +5379 14.612280130 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863612 22 18 2032387 0 0x00000012 1 2032387 0 196609 0 12 00 00 00 03 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5381 14.612619638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535016 12 -1 695029 0 0xffffffff 0 -1 695029 0 ff ff ff ff f5 9a 0a 00 00 00 00 00 ............ +5386 14.714863777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535028 12 26 703488 0 0x0000001a 0 26 703488 0 1a 00 00 00 00 bc 0a 00 00 00 00 00 ............ +5388 14.715057850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535040 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 50659328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5390 14.715300083 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863634 12 -1 703488 0 0xffffffff 0 -1 703488 0 ff ff ff ff 00 bc 0a 00 00 00 00 00 ............ +5392 14.715823174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863646 12 22 695030 0 0x00000016 0 22 695030 0 16 00 00 00 f6 9a 0a 00 00 00 00 00 ............ +5394 14.715967655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863658 22 18 2032389 0 0x00000012 1 2032389 0 196609 0 12 00 00 00 05 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5396 14.716268063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535066 12 -1 695030 0 0xffffffff 0 -1 695030 0 ff ff ff ff f6 9a 0a 00 00 00 00 00 ............ +5403 14.765305996 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535078 12 34 703489 0 0x00000022 0 34 703489 0 22 00 00 00 01 bc 0a 00 00 00 00 00 """..........." +5405 14.765481949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535090 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -5046272 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b3 ff 01 00 00 00 00 00 92 4b 0e c3 9d 01 00 00 .....!...o3................K...... +5407 14.765616417 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535124 12 67 703490 0 0x00000043 0 67 703490 0 43 00 00 00 02 bc 0a 00 00 00 00 00 C........... +5409 14.765698910 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535136 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b3 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 18 f5 b5 e0 90 ?.....3...|8...................=B.....&......... +5411 14.765816212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863680 12 -1 703489 0 0xffffffff 0 -1 703489 0 ff ff ff ff 01 bc 0a 00 00 00 00 00 ............ +5413 14.766404390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863692 12 -1 703490 0 0xffffffff 0 -1 703490 0 ff ff ff ff 02 bc 0a 00 00 00 00 00 ............ +5415 14.767250299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863704 12 52 695031 0 0x00000034 0 52 695031 0 34 00 00 00 f7 9a 0a 00 00 00 00 00 4........... +5417 14.767418146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863716 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b3 ff 01 00 00 00 00 00 00 00 78 ad fb 51 4a 01 00 00 "0...Dk.................L."".([...............x..Q" +5419 14.767693520 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535203 12 -1 695031 0 0xffffffff 0 -1 695031 0 ff ff ff ff f7 9a 0a 00 00 00 00 00 ............ +5421 14.768727779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535215 12 30 703491 0 0x0000001e 0 30 703491 0 1e 00 00 00 03 bc 0a 00 00 00 00 00 ............ +5423 14.768871784 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535227 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 50790400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 07 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5425 14.769246101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863768 12 -1 703491 0 0xffffffff 0 -1 703491 0 ff ff ff ff 03 bc 0a 00 00 00 00 00 ............ +5427 14.769707918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863780 12 26 695032 0 0x0000001a 0 26 695032 0 1a 00 00 00 f8 9a 0a 00 00 00 00 00 ............ +5429 14.769869566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863792 26 22 2032391 0 0x00000016 1 2032391 0 196609 0 16 00 00 00 07 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5431 14.770161629 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535257 12 -1 695032 0 0xffffffff 0 -1 695032 0 ff ff ff ff f8 9a 0a 00 00 00 00 00 ............ +5441 14.817905903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535269 12 26 703492 0 0x0000001a 0 26 703492 0 1a 00 00 00 04 bc 0a 00 00 00 00 00 ............ +5443 14.818165302 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535281 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 50921472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5445 14.818500757 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863818 12 -1 703492 0 0xffffffff 0 -1 703492 0 ff ff ff ff 04 bc 0a 00 00 00 00 00 ............ +5447 14.818971395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863830 12 22 695033 0 0x00000016 0 22 695033 0 16 00 00 00 f9 9a 0a 00 00 00 00 00 ............ +5449 14.819214582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863842 22 18 2032393 0 0x00000012 1 2032393 0 196609 0 12 00 00 00 09 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5451 14.819572687 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535307 12 -1 695033 0 0xffffffff 0 -1 695033 0 ff ff ff ff f9 9a 0a 00 00 00 00 00 ............ +5456 14.920829296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535319 12 26 703493 0 0x0000001a 0 26 703493 0 1a 00 00 00 05 bc 0a 00 00 00 00 00 ............ +5458 14.920991421 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535331 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 51052544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5460 14.921416521 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863864 12 -1 703493 0 0xffffffff 0 -1 703493 0 ff ff ff ff 05 bc 0a 00 00 00 00 00 ............ +5462 14.921812534 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863876 12 22 695034 0 0x00000016 0 22 695034 0 16 00 00 00 fa 9a 0a 00 00 00 00 00 ............ +5464 14.921977282 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863888 22 18 2032395 0 0x00000012 1 2032395 0 196609 0 12 00 00 00 0b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5466 14.922434568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535357 12 -1 695034 0 0xffffffff 0 -1 695034 0 ff ff ff ff fa 9a 0a 00 00 00 00 00 ............ +5468 15.023816824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535369 12 26 703494 0 0x0000001a 0 26 703494 0 1a 00 00 00 06 bc 0a 00 00 00 00 00 ............ +5470 15.024011850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535381 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 51183616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5472 15.024435043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863910 12 -1 703494 0 0xffffffff 0 -1 703494 0 ff ff ff ff 06 bc 0a 00 00 00 00 00 ............ +5474 15.024834156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863922 12 22 695035 0 0x00000016 0 22 695035 0 16 00 00 00 fb 9a 0a 00 00 00 00 00 ............ +5476 15.025060654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863934 22 18 2032397 0 0x00000012 1 2032397 0 196609 0 12 00 00 00 0d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5478 15.025422335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535407 12 -1 695035 0 0xffffffff 0 -1 695035 0 ff ff ff ff fb 9a 0a 00 00 00 00 00 ............ +5486 15.030946732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863956 12 -2 79890 79907 0xfffffffe 0 -2 79890 79907 fe ff ff ff 12 38 01 00 23 38 01 00 .....8..#8.. +5488 15.071327209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535419 12 101 703495 0 0x00000065 0 101 703495 0 65 00 00 00 07 bc 0a 00 00 00 00 00 e........... +5490 15.071542025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535431 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b4 ff 01 00 00 00 00 00 c4 4c 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b4 ff 01 00 00 00 00 .....!...o3................L......?.....3...|8.. +5492 15.071955919 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863968 12 -1 703495 0 0xffffffff 0 -1 703495 0 ff ff ff ff 07 bc 0a 00 00 00 00 00 ............ +5494 15.072816372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863980 12 52 695036 0 0x00000034 0 52 695036 0 34 00 00 00 fc 9a 0a 00 00 00 00 00 4........... +5496 15.073006153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375863992 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b4 ff 01 00 00 00 00 00 00 00 0e 4d 2a 52 4a 01 00 00 "0...Dk.................L."".([................M*R" +5498 15.073365927 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535532 12 -1 695036 0 0xffffffff 0 -1 695036 0 ff ff ff ff fc 9a 0a 00 00 00 00 00 ............ +5500 15.074324608 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535544 12 30 703496 0 0x0000001e 0 30 703496 0 1e 00 00 00 08 bc 0a 00 00 00 00 00 ............ +5502 15.074466467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535556 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 51314688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0f 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5504 15.074764252 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864044 12 -1 703496 0 0xffffffff 0 -1 703496 0 ff ff ff ff 08 bc 0a 00 00 00 00 00 ............ +5506 15.075174570 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864056 12 26 695037 0 0x0000001a 0 26 695037 0 1a 00 00 00 fd 9a 0a 00 00 00 00 00 ............ +5508 15.075326204 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864068 26 22 2032399 0 0x00000016 1 2032399 0 196609 0 16 00 00 00 0f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5510 15.075556040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535586 12 -1 695037 0 0xffffffff 0 -1 695037 0 ff ff ff ff fd 9a 0a 00 00 00 00 00 ............ +5512 15.090719700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535598 12 -2 79908 79890 0xfffffffe 0 -2 79908 79890 fe ff ff ff 24 38 01 00 12 38 01 00 ....$8...8.. +5522 15.126768589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535610 12 26 703497 0 0x0000001a 0 26 703497 0 1a 00 00 00 09 bc 0a 00 00 00 00 00 ............ +5524 15.126964092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535622 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 51445760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5526 15.127338886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864094 12 -1 703497 0 0xffffffff 0 -1 703497 0 ff ff ff ff 09 bc 0a 00 00 00 00 00 ............ +5528 15.127729177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864106 12 22 695038 0 0x00000016 0 22 695038 0 16 00 00 00 fe 9a 0a 00 00 00 00 00 ............ +5530 15.127885580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864118 22 18 2032401 0 0x00000012 1 2032401 0 196609 0 12 00 00 00 11 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5532 15.128200769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535648 12 -1 695038 0 0xffffffff 0 -1 695038 0 ff ff ff ff fe 9a 0a 00 00 00 00 00 ............ +5536 15.230029583 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535660 12 26 703498 0 0x0000001a 0 26 703498 0 1a 00 00 00 0a bc 0a 00 00 00 00 00 ............ +5538 15.230256081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535672 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 51576832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5540 15.230585814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864140 12 -1 703498 0 0xffffffff 0 -1 703498 0 ff ff ff ff 0a bc 0a 00 00 00 00 00 ............ +5542 15.231107950 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864152 12 22 695039 0 0x00000016 0 22 695039 0 16 00 00 00 ff 9a 0a 00 00 00 00 00 ............ +5544 15.231336832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864164 22 18 2032403 0 0x00000012 1 2032403 0 196609 0 12 00 00 00 13 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5546 15.231559038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535698 12 -1 695039 0 0xffffffff 0 -1 695039 0 ff ff ff ff ff 9a 0a 00 00 00 00 00 ............ +5550 15.333918095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535710 12 26 703499 0 0x0000001a 0 26 703499 0 1a 00 00 00 0b bc 0a 00 00 00 00 00 ............ +5552 15.334186554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535722 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 51707904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5554 15.334481716 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864186 12 -1 703499 0 0xffffffff 0 -1 703499 0 ff ff ff ff 0b bc 0a 00 00 00 00 00 ............ +5556 15.334867716 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864198 12 22 695040 0 0x00000016 0 22 695040 0 16 00 00 00 00 9b 0a 00 00 00 00 00 ............ +5558 15.335074902 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864210 22 18 2032405 0 0x00000012 1 2032405 0 196609 0 12 00 00 00 15 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5560 15.335366964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535748 12 -1 695040 0 0xffffffff 0 -1 695040 0 ff ff ff ff 00 9b 0a 00 00 00 00 00 ............ +5562 15.377029419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535760 12 101 703500 0 0x00000065 0 101 703500 0 65 00 00 00 0c bc 0a 00 00 00 00 00 e........... +5564 15.377231598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535772 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b5 ff 01 00 00 00 00 00 f6 4d 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b5 ff 01 00 00 00 00 .....!...o3................M......?.....3...|8.. +5566 15.377568007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864232 12 -1 703500 0 0xffffffff 0 -1 703500 0 ff ff ff ff 0c bc 0a 00 00 00 00 00 ............ +5568 15.378456354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864244 12 52 695041 0 0x00000034 0 52 695041 0 34 00 00 00 01 9b 0a 00 00 00 00 00 4........... +5570 15.378785849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864256 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b5 ff 01 00 00 00 00 00 00 00 82 f1 58 52 4a 01 00 00 "0...Dk.................L."".([.................XR" +5572 15.379260778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535873 12 -1 695041 0 0xffffffff 0 -1 695041 0 ff ff ff ff 01 9b 0a 00 00 00 00 00 ............ +5574 15.380187511 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535885 12 30 703501 0 0x0000001e 0 30 703501 0 1e 00 00 00 0d bc 0a 00 00 00 00 00 ............ +5576 15.380339384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535897 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 51838976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 17 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5578 15.380566835 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864308 12 -1 703501 0 0xffffffff 0 -1 703501 0 ff ff ff ff 0d bc 0a 00 00 00 00 00 ............ +5580 15.380953074 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864320 12 26 695042 0 0x0000001a 0 26 695042 0 1a 00 00 00 02 9b 0a 00 00 00 00 00 ............ +5582 15.381175280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864332 26 22 2032407 0 0x00000016 1 2032407 0 196609 0 16 00 00 00 17 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5584 15.381443262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535927 12 -1 695042 0 0xffffffff 0 -1 695042 0 ff ff ff ff 02 9b 0a 00 00 00 00 00 ............ +5588 15.437745094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535939 12 26 703502 0 0x0000001a 0 26 703502 0 1a 00 00 00 0e bc 0a 00 00 00 00 00 ............ +5590 15.437939405 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535951 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 51970048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5592 15.438489914 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864358 12 -1 703502 0 0xffffffff 0 -1 703502 0 ff ff ff ff 0e bc 0a 00 00 00 00 00 ............ +5594 15.439028978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864370 12 22 695043 0 0x00000016 0 22 695043 0 16 00 00 00 03 9b 0a 00 00 00 00 00 ............ +5596 15.439261436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864382 22 18 2032409 0 0x00000012 1 2032409 0 196609 0 12 00 00 00 19 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5598 15.439518452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535977 12 -1 695043 0 0xffffffff 0 -1 695043 0 ff ff ff ff 03 9b 0a 00 00 00 00 00 ............ +5606 15.531398058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864404 12 -2 79891 79908 0xfffffffe 0 -2 79891 79908 fe ff ff ff 13 38 01 00 24 38 01 00 .....8..$8.. +5608 15.540934086 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331535989 12 26 703503 0 0x0000001a 0 26 703503 0 1a 00 00 00 0f bc 0a 00 00 00 00 00 ............ +5610 15.541203976 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536001 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 52101120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5612 15.541584969 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864416 12 -1 703503 0 0xffffffff 0 -1 703503 0 ff ff ff ff 0f bc 0a 00 00 00 00 00 ............ +5614 15.542269468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864428 12 22 695044 0 0x00000016 0 22 695044 0 16 00 00 00 04 9b 0a 00 00 00 00 00 ............ +5616 15.542432547 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864440 22 18 2032411 0 0x00000012 1 2032411 0 196609 0 12 00 00 00 1b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5618 15.542742252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536027 12 -1 695044 0 0xffffffff 0 -1 695044 0 ff ff ff ff 04 9b 0a 00 00 00 00 00 ............ +5621 15.591539621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536039 12 -2 79909 79891 0xfffffffe 0 -2 79909 79891 fe ff ff ff 25 38 01 00 13 38 01 00 ....%8...8.. +5634 15.644347668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536051 12 26 703504 0 0x0000001a 0 26 703504 0 1a 00 00 00 10 bc 0a 00 00 00 00 00 ............ +5636 15.644515991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536063 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 52232192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +5638 15.644863129 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864462 12 -1 703504 0 0xffffffff 0 -1 703504 0 ff ff ff ff 10 bc 0a 00 00 00 00 00 ............ +5640 15.645341396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864474 12 22 695045 0 0x00000016 0 22 695045 0 16 00 00 00 05 9b 0a 00 00 00 00 00 ............ +5642 15.645533085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864486 22 18 2032413 0 0x00000012 1 2032413 0 196609 0 12 00 00 00 1d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5644 15.645947695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536089 12 -1 695045 0 0xffffffff 0 -1 695045 0 ff ff ff ff 05 9b 0a 00 00 00 00 00 ............ +5646 15.681739807 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536101 12 101 703505 0 0x00000065 0 101 703505 0 65 00 00 00 11 bc 0a 00 00 00 00 00 e........... +5648 15.681887388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536113 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b6 ff 01 00 00 00 00 00 27 4f 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b6 ff 01 00 00 00 00 .....!...o3...............'O......?.....3...|8.. +5650 15.682544947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864508 12 -1 703505 0 0xffffffff 0 -1 703505 0 ff ff ff ff 11 bc 0a 00 00 00 00 00 ............ +5652 15.684545040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864520 12 52 695046 0 0x00000034 0 52 695046 0 34 00 00 00 06 9b 0a 00 00 00 00 00 4........... +5654 15.684776545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864532 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b6 ff 01 00 00 00 00 00 00 00 9b a4 87 52 4a 01 00 00 "0...Dk.................L."".([..................R" +5656 15.685093880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536214 12 -1 695046 0 0xffffffff 0 -1 695046 0 ff ff ff ff 06 9b 0a 00 00 00 00 00 ............ +5658 15.686007261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536226 12 30 703506 0 0x0000001e 0 30 703506 0 1e 00 00 00 12 bc 0a 00 00 00 00 00 ............ +5660 15.686148643 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536238 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 52363264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1f 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5662 15.686517000 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864584 12 -1 703506 0 0xffffffff 0 -1 703506 0 ff ff ff ff 12 bc 0a 00 00 00 00 00 ............ +5664 15.687168598 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864596 12 26 695047 0 0x0000001a 0 26 695047 0 1a 00 00 00 07 9b 0a 00 00 00 00 00 ............ +5666 15.687350988 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864608 26 22 2032415 0 0x00000016 1 2032415 0 196609 0 16 00 00 00 1f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5668 15.687715530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536268 12 -1 695047 0 0xffffffff 0 -1 695047 0 ff ff ff ff 07 9b 0a 00 00 00 00 00 ............ +5674 15.747106791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536280 12 26 703507 0 0x0000001a 0 26 703507 0 1a 00 00 00 13 bc 0a 00 00 00 00 00 ............ +5676 15.747329473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536292 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 52494336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 03 1f 00 00 00 00 00 ....T.c@.^1@......!....... +5678 15.747680426 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864634 12 -1 703507 0 0xffffffff 0 -1 703507 0 ff ff ff ff 13 bc 0a 00 00 00 00 00 ............ +5680 15.748302221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864646 12 22 695048 0 0x00000016 0 22 695048 0 16 00 00 00 08 9b 0a 00 00 00 00 00 ............ +5682 15.748571396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864658 22 18 2032417 0 0x00000012 1 2032417 0 196609 0 12 00 00 00 21 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +5684 15.748918295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536318 12 -1 695048 0 0xffffffff 0 -1 695048 0 ff ff ff ff 08 9b 0a 00 00 00 00 00 ............ +5686 15.850038290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536330 12 26 703508 0 0x0000001a 0 26 703508 0 1a 00 00 00 14 bc 0a 00 00 00 00 00 ............ +5688 15.850226879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536342 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 52625408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 03 1f 00 00 00 00 00 ....T.c@.^1@......#....... +5690 15.850719690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864680 12 -1 703508 0 0xffffffff 0 -1 703508 0 ff ff ff ff 14 bc 0a 00 00 00 00 00 ............ +5692 15.851166248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864692 12 22 695049 0 0x00000016 0 22 695049 0 16 00 00 00 09 9b 0a 00 00 00 00 00 ............ +5694 15.851327658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864704 22 18 2032419 0 0x00000012 1 2032419 0 196609 0 12 00 00 00 23 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +5696 15.851663589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536368 12 -1 695049 0 0xffffffff 0 -1 695049 0 ff ff ff ff 09 9b 0a 00 00 00 00 00 ............ +5702 15.954161167 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536380 12 26 703509 0 0x0000001a 0 26 703509 0 1a 00 00 00 15 bc 0a 00 00 00 00 00 ............ +5704 15.954330206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536392 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 52756480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 03 1f 00 00 00 00 00 ....T.c@.^1@......%....... +5706 15.954799652 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864726 12 -1 703509 0 0xffffffff 0 -1 703509 0 ff ff ff ff 15 bc 0a 00 00 00 00 00 ............ +5708 15.955253363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864738 12 22 695050 0 0x00000016 0 22 695050 0 16 00 00 00 0a 9b 0a 00 00 00 00 00 ............ +5710 15.955509186 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864750 22 18 2032421 0 0x00000012 1 2032421 0 196609 0 12 00 00 00 25 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +5712 15.955818176 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536418 12 -1 695050 0 0xffffffff 0 -1 695050 0 ff ff ff ff 0a 9b 0a 00 00 00 00 00 ............ +5714 15.987810373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536430 12 34 703510 0 0x00000022 0 34 703510 0 22 00 00 00 16 bc 0a 00 00 00 00 00 """..........." +5716 15.987985611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536442 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -4784128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b7 ff 01 00 00 00 00 00 59 50 0e c3 9d 01 00 00 .....!...o3...............YP...... +5718 15.988092899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536476 12 67 703511 0 0x00000043 0 67 703511 0 43 00 00 00 17 bc 0a 00 00 00 00 00 C........... +5720 15.988189936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536488 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b7 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 e5 8f 29 91 ?.....3...|8...................=B.....&......... +5721 15.988250732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864772 12 -1 703510 0 0xffffffff 0 -1 703510 0 ff ff ff ff 16 bc 0a 00 00 00 00 00 ............ +5724 15.988506794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864784 12 -1 703511 0 0xffffffff 0 -1 703511 0 ff ff ff ff 17 bc 0a 00 00 00 00 00 ............ +5726 15.989738226 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864796 12 52 695051 0 0x00000034 0 52 695051 0 34 00 00 00 0b 9b 0a 00 00 00 00 00 4........... +5728 15.989903688 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864808 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b7 ff 01 00 00 00 00 00 00 00 d3 37 b6 52 4a 01 00 00 "0...Dk.................L."".([................7.R" +5730 15.990153790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536555 12 -1 695051 0 0xffffffff 0 -1 695051 0 ff ff ff ff 0b 9b 0a 00 00 00 00 00 ............ +5732 15.990915060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536567 12 30 703512 0 0x0000001e 0 30 703512 0 1e 00 00 00 18 bc 0a 00 00 00 00 00 ............ +5734 15.991082191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536579 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 52887552 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 27 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......'........... +5736 15.991321802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864860 12 -1 703512 0 0xffffffff 0 -1 703512 0 ff ff ff ff 18 bc 0a 00 00 00 00 00 ............ +5738 15.992594957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864872 12 26 695052 0 0x0000001a 0 26 695052 0 1a 00 00 00 0c 9b 0a 00 00 00 00 00 ............ +5740 15.992826700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864884 26 22 2032423 0 0x00000016 1 2032423 0 196609 0 16 00 00 00 27 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....'..................... +5742 15.993161678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536609 12 -1 695052 0 0xffffffff 0 -1 695052 0 ff ff ff ff 0c 9b 0a 00 00 00 00 00 ............ +5750 16.031902552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864910 12 -2 79892 79909 0xfffffffe 0 -2 79892 79909 fe ff ff ff 14 38 01 00 25 38 01 00 .....8..%8.. +5752 16.056962729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536621 12 26 703513 0 0x0000001a 0 26 703513 0 1a 00 00 00 19 bc 0a 00 00 00 00 00 ............ +5754 16.057185173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536633 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 53018624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 03 1f 00 00 00 00 00 ....T.c@.^1@......)....... +5756 16.057540417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864922 12 -1 703513 0 0xffffffff 0 -1 703513 0 ff ff ff ff 19 bc 0a 00 00 00 00 00 ............ +5758 16.058097601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864934 12 22 695053 0 0x00000016 0 22 695053 0 16 00 00 00 0d 9b 0a 00 00 00 00 00 ............ +5760 16.058313608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864946 22 18 2032425 0 0x00000012 1 2032425 0 196609 0 12 00 00 00 29 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +5762 16.058614016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536659 12 -1 695053 0 0xffffffff 0 -1 695053 0 ff ff ff ff 0d 9b 0a 00 00 00 00 00 ............ +5765 16.093022346 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536671 12 -2 79910 79892 0xfffffffe 0 -2 79910 79892 fe ff ff ff 26 38 01 00 14 38 01 00 ....&8...8.. +5774 16.159514666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536683 12 26 703514 0 0x0000001a 0 26 703514 0 1a 00 00 00 1a bc 0a 00 00 00 00 00 ............ +5776 16.159686804 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536695 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 53149696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 03 1f 00 00 00 00 00 ....T.c@.^1@......+....... +5778 16.160072088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864968 12 -1 703514 0 0xffffffff 0 -1 703514 0 ff ff ff ff 1a bc 0a 00 00 00 00 00 ............ +5780 16.160570383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864980 12 22 695054 0 0x00000016 0 22 695054 0 16 00 00 00 0e 9b 0a 00 00 00 00 00 ............ +5782 16.160828590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375864992 22 18 2032427 0 0x00000012 1 2032427 0 196609 0 12 00 00 00 2b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +5784 16.161095619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536721 12 -1 695054 0 0xffffffff 0 -1 695054 0 ff ff ff ff 0e 9b 0a 00 00 00 00 00 ............ +5792 16.263431072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536733 12 26 703515 0 0x0000001a 0 26 703515 0 1a 00 00 00 1b bc 0a 00 00 00 00 00 ............ +5794 16.263609171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536745 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 53280768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 03 1f 00 00 00 00 00 ....T.c@.^1@......-....... +5796 16.264016867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865014 12 -1 703515 0 0xffffffff 0 -1 703515 0 ff ff ff ff 1b bc 0a 00 00 00 00 00 ............ +5798 16.264649153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865026 12 22 695055 0 0x00000016 0 22 695055 0 16 00 00 00 0f 9b 0a 00 00 00 00 00 ............ +5800 16.264813900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865038 22 18 2032429 0 0x00000012 1 2032429 0 196609 0 12 00 00 00 2d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +5802 16.265222311 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536771 12 -1 695055 0 0xffffffff 0 -1 695055 0 ff ff ff ff 0f 9b 0a 00 00 00 00 00 ............ +5804 16.293384075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536783 12 34 703516 0 0x00000022 0 34 703516 0 22 00 00 00 1c bc 0a 00 00 00 00 00 """..........." +5806 16.293554783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536795 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -4718592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b8 ff 01 00 00 00 00 00 8b 51 0e c3 9d 01 00 00 .....!...o3................Q...... +5808 16.293688774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536829 12 67 703517 0 0x00000043 0 67 703517 0 43 00 00 00 1d bc 0a 00 00 00 00 00 C........... +5810 16.293773174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536841 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b8 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 45 c3 3b 91 ?.....3...|8...................=B.....&......... +5812 16.293994665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865060 12 -1 703516 0 0xffffffff 0 -1 703516 0 ff ff ff ff 1c bc 0a 00 00 00 00 00 ............ +5814 16.294479370 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865072 12 -1 703517 0 0xffffffff 0 -1 703517 0 ff ff ff ff 1d bc 0a 00 00 00 00 00 ............ +5816 16.295285940 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865084 12 52 695056 0 0x00000034 0 52 695056 0 34 00 00 00 10 9b 0a 00 00 00 00 00 4........... +5818 16.295510769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865096 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b8 ff 01 00 00 00 00 00 00 00 63 d4 e4 52 4a 01 00 00 "0...Dk.................L."".([...............c..R" +5820 16.295812130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536908 12 -1 695056 0 0xffffffff 0 -1 695056 0 ff ff ff ff 10 9b 0a 00 00 00 00 00 ............ +5822 16.296649694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536920 12 30 703518 0 0x0000001e 0 30 703518 0 1e 00 00 00 1e bc 0a 00 00 00 00 00 ............ +5824 16.296862364 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536932 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 53411840 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2f 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P....../........... +5826 16.297168255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865148 12 -1 703518 0 0xffffffff 0 -1 703518 0 ff ff ff ff 1e bc 0a 00 00 00 00 00 ............ +5828 16.297826290 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865160 12 26 695057 0 0x0000001a 0 26 695057 0 1a 00 00 00 11 9b 0a 00 00 00 00 00 ............ +5830 16.298031807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865172 26 22 2032431 0 0x00000016 1 2032431 0 196609 0 16 00 00 00 2f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ..../..................... +5832 16.298285246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536962 12 -1 695057 0 0xffffffff 0 -1 695057 0 ff ff ff ff 11 9b 0a 00 00 00 00 00 ............ +5834 16.367772102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536974 12 26 703519 0 0x0000001a 0 26 703519 0 1a 00 00 00 1f bc 0a 00 00 00 00 00 ............ +5836 16.367959976 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331536986 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 53542912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 03 1f 00 00 00 00 00 ....T.c@.^1@......1....... +5838 16.368305683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865198 12 -1 703519 0 0xffffffff 0 -1 703519 0 ff ff ff ff 1f bc 0a 00 00 00 00 00 ............ +5840 16.368895292 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865210 12 22 695058 0 0x00000016 0 22 695058 0 16 00 00 00 12 9b 0a 00 00 00 00 00 ............ +5842 16.369219780 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865222 22 18 2032433 0 0x00000012 1 2032433 0 196609 0 12 00 00 00 31 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +5844 16.369541168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537012 12 -1 695058 0 0xffffffff 0 -1 695058 0 ff ff ff ff 12 9b 0a 00 00 00 00 00 ............ +5848 16.472228289 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537024 12 26 703520 0 0x0000001a 0 26 703520 0 1a 00 00 00 20 bc 0a 00 00 00 00 00 .... ....... +5850 16.472416639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537036 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 53673984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 03 1f 00 00 00 00 00 ....T.c@.^1@......3....... +5852 16.472754955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865244 12 -1 703520 0 0xffffffff 0 -1 703520 0 ff ff ff ff 20 bc 0a 00 00 00 00 00 .... ....... +5854 16.473306179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865256 12 22 695059 0 0x00000016 0 22 695059 0 16 00 00 00 13 9b 0a 00 00 00 00 00 ............ +5856 16.473538876 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865268 22 18 2032435 0 0x00000012 1 2032435 0 196609 0 12 00 00 00 33 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +5858 16.473849297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537062 12 -1 695059 0 0xffffffff 0 -1 695059 0 ff ff ff ff 13 9b 0a 00 00 00 00 00 ............ +5870 16.532927513 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865290 12 -2 79893 79910 0xfffffffe 0 -2 79893 79910 fe ff ff ff 15 38 01 00 26 38 01 00 .....8..&8.. +5874 16.575894356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537074 12 26 703521 0 0x0000001a 0 26 703521 0 1a 00 00 00 21 bc 0a 00 00 00 00 00 ....!....... +5876 16.576120615 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537086 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 53805056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 03 1f 00 00 00 00 00 ....T.c@.^1@......5....... +5878 16.576668262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865302 12 -1 703521 0 0xffffffff 0 -1 703521 0 ff ff ff ff 21 bc 0a 00 00 00 00 00 ....!....... +5880 16.577218056 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865314 12 22 695060 0 0x00000016 0 22 695060 0 16 00 00 00 14 9b 0a 00 00 00 00 00 ............ +5882 16.577425957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865326 22 18 2032437 0 0x00000012 1 2032437 0 196609 0 12 00 00 00 35 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +5884 16.577737570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537112 12 -1 695060 0 0xffffffff 0 -1 695060 0 ff ff ff ff 14 9b 0a 00 00 00 00 00 ............ +5886 16.594369173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537124 12 -2 79911 79893 0xfffffffe 0 -2 79911 79893 fe ff ff ff 27 38 01 00 15 38 01 00 ....'8...8.. +5890 16.599073172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537136 12 101 703522 0 0x00000065 0 101 703522 0 65 00 00 00 22 bc 0a 00 00 00 00 00 "e...""......." +5892 16.599274397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537148 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b9 ff 01 00 00 00 00 00 bc 52 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b9 ff 01 00 00 00 00 .....!...o3................R......?.....3...|8.. +5894 16.599642277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865348 12 -1 703522 0 0xffffffff 0 -1 703522 0 ff ff ff ff 22 bc 0a 00 00 00 00 00 "....""......." +5896 16.600958347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865360 12 52 695061 0 0x00000034 0 52 695061 0 34 00 00 00 15 9b 0a 00 00 00 00 00 4........... +5898 16.601140738 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865372 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b9 ff 01 00 00 00 00 00 00 00 2c 7a 13 53 4a 01 00 00 "0...Dk.................L."".([...............,z.S" +5900 16.601408243 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537249 12 -1 695061 0 0xffffffff 0 -1 695061 0 ff ff ff ff 15 9b 0a 00 00 00 00 00 ............ +5902 16.602103472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537261 12 30 703523 0 0x0000001e 0 30 703523 0 1e 00 00 00 23 bc 0a 00 00 00 00 00 ....#....... +5904 16.602350712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537273 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 53936128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 37 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......7........... +5906 16.602662802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865424 12 -1 703523 0 0xffffffff 0 -1 703523 0 ff ff ff ff 23 bc 0a 00 00 00 00 00 ....#....... +5908 16.603224993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865436 12 26 695062 0 0x0000001a 0 26 695062 0 1a 00 00 00 16 9b 0a 00 00 00 00 00 ............ +5910 16.603390455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865448 26 22 2032439 0 0x00000016 1 2032439 0 196609 0 16 00 00 00 37 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....7..................... +5912 16.603708267 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537303 12 -1 695062 0 0xffffffff 0 -1 695062 0 ff ff ff ff 16 9b 0a 00 00 00 00 00 ............ +5959 16.681045055 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537315 12 26 703524 0 0x0000001a 0 26 703524 0 1a 00 00 00 24 bc 0a 00 00 00 00 00 ....$....... +5961 16.681315184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537327 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 54067200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 03 1f 00 00 00 00 00 ....T.c@.^1@......9....... +5963 16.681645393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865474 12 -1 703524 0 0xffffffff 0 -1 703524 0 ff ff ff ff 24 bc 0a 00 00 00 00 00 ....$....... +5965 16.682404995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865486 12 22 695063 0 0x00000016 0 22 695063 0 16 00 00 00 17 9b 0a 00 00 00 00 00 ............ +5967 16.682620049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865498 22 18 2032441 0 0x00000012 1 2032441 0 196609 0 12 00 00 00 39 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +5969 16.682883501 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537353 12 -1 695063 0 0xffffffff 0 -1 695063 0 ff ff ff ff 17 9b 0a 00 00 00 00 00 ............ +5975 16.784700155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537365 12 26 703525 0 0x0000001a 0 26 703525 0 1a 00 00 00 25 bc 0a 00 00 00 00 00 ....%....... +5977 16.784884930 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537377 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 54198272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 03 1f 00 00 00 00 00 ....T.c@.^1@......;....... +5979 16.785306215 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865520 12 -1 703525 0 0xffffffff 0 -1 703525 0 ff ff ff ff 25 bc 0a 00 00 00 00 00 ....%....... +5981 16.785795212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865532 12 22 695064 0 0x00000016 0 22 695064 0 16 00 00 00 18 9b 0a 00 00 00 00 00 ............ +5983 16.785957336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865544 22 18 2032443 0 0x00000012 1 2032443 0 196609 0 12 00 00 00 3b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +5985 16.786380291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537403 12 -1 695064 0 0xffffffff 0 -1 695064 0 ff ff ff ff 18 9b 0a 00 00 00 00 00 ............ +5987 16.888331175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537415 12 26 703526 0 0x0000001a 0 26 703526 0 1a 00 00 00 26 bc 0a 00 00 00 00 00 ....&....... +5989 16.888608932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537427 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 54329344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 03 1f 00 00 00 00 00 ....T.c@.^1@......=....... +5991 16.889026642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865566 12 -1 703526 0 0xffffffff 0 -1 703526 0 ff ff ff ff 26 bc 0a 00 00 00 00 00 ....&....... +5993 16.889634132 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865578 12 22 695065 0 0x00000016 0 22 695065 0 16 00 00 00 19 9b 0a 00 00 00 00 00 ............ +5995 16.889786243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865590 22 18 2032445 0 0x00000012 1 2032445 0 196609 0 12 00 00 00 3d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +5997 16.890080452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537453 12 -1 695065 0 0xffffffff 0 -1 695065 0 ff ff ff ff 19 9b 0a 00 00 00 00 00 ............ +5999 16.903169394 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537465 12 101 703527 0 0x00000065 0 101 703527 0 65 00 00 00 27 bc 0a 00 00 00 00 00 e...'....... +6001 16.903435946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537477 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ba ff 01 00 00 00 00 00 ec 53 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ba ff 01 00 00 00 00 .....!...o3................S......?.....3...|8.. +6003 16.903751612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865612 12 -1 703527 0 0xffffffff 0 -1 703527 0 ff ff ff ff 27 bc 0a 00 00 00 00 00 ....'....... +6005 16.904891968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865624 12 52 695066 0 0x00000034 0 52 695066 0 34 00 00 00 1a 9b 0a 00 00 00 00 00 4........... +6007 16.905109882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865636 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ba ff 01 00 00 00 00 00 00 00 b4 d9 41 53 4a 01 00 00 "0...Dk.................L."".([.................AS" +6009 16.905519009 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537578 12 -1 695066 0 0xffffffff 0 -1 695066 0 ff ff ff ff 1a 9b 0a 00 00 00 00 00 ............ +6011 16.906208515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537590 12 30 703528 0 0x0000001e 0 30 703528 0 1e 00 00 00 28 bc 0a 00 00 00 00 00 ....(....... +6013 16.906446218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537602 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 54460416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3f 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......?........... +6015 16.906791210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865688 12 -1 703528 0 0xffffffff 0 -1 703528 0 ff ff ff ff 28 bc 0a 00 00 00 00 00 ....(....... +6017 16.907177687 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865700 12 26 695067 0 0x0000001a 0 26 695067 0 1a 00 00 00 1b 9b 0a 00 00 00 00 00 ............ +6019 16.907421112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865712 26 22 2032447 0 0x00000016 1 2032447 0 196609 0 16 00 00 00 3f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....?..................... +6021 16.907742500 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537632 12 -1 695067 0 0xffffffff 0 -1 695067 0 ff ff ff ff 1b 9b 0a 00 00 00 00 00 ............ +6025 16.991325617 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537644 12 26 703529 0 0x0000001a 0 26 703529 0 1a 00 00 00 29 bc 0a 00 00 00 00 00 ....)....... +6027 16.991620064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537656 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 54591488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 03 1f 00 00 00 00 00 ....T.c@.^1@......A....... +6029 16.992015362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865738 12 -1 703529 0 0xffffffff 0 -1 703529 0 ff ff ff ff 29 bc 0a 00 00 00 00 00 ....)....... +6031 16.992560148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865750 12 22 695068 0 0x00000016 0 22 695068 0 16 00 00 00 1c 9b 0a 00 00 00 00 00 ............ +6033 16.992746830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865762 22 18 2032449 0 0x00000012 1 2032449 0 196609 0 12 00 00 00 41 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +6035 16.993062973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537682 12 -1 695068 0 0xffffffff 0 -1 695068 0 ff ff ff ff 1c 9b 0a 00 00 00 00 00 ............ +6043 17.034909725 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865784 12 -2 79894 79911 0xfffffffe 0 -2 79894 79911 fe ff ff ff 16 38 01 00 27 38 01 00 .....8..'8.. +6047 17.094559193 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537694 12 26 703530 0 0x0000001a 0 26 703530 0 1a 00 00 00 2a bc 0a 00 00 00 00 00 ....*....... +6049 17.094735146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537706 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 54722560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 03 1f 00 00 00 00 00 ....T.c@.^1@......C....... +6051 17.095092058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865796 12 -1 703530 0 0xffffffff 0 -1 703530 0 ff ff ff ff 2a bc 0a 00 00 00 00 00 ....*....... +6053 17.095652580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865808 12 22 695069 0 0x00000016 0 22 695069 0 16 00 00 00 1d 9b 0a 00 00 00 00 00 ............ +6055 17.095839500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865820 22 18 2032451 0 0x00000012 1 2032451 0 196609 0 12 00 00 00 43 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +6057 17.096114397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537732 12 -2 79912 79894 0xfffffffe 0 -2 79912 79894 fe ff ff ff 28 38 01 00 16 38 01 00 ....(8...8.. +6061 17.096433640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537744 12 -1 695069 0 0xffffffff 0 -1 695069 0 ff ff ff ff 1d 9b 0a 00 00 00 00 00 ............ +6069 17.197929144 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537756 12 26 703531 0 0x0000001a 0 26 703531 0 1a 00 00 00 2b bc 0a 00 00 00 00 00 ....+....... +6071 17.198125124 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537768 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 54853632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 03 1f 00 00 00 00 00 ....T.c@.^1@......E....... +6073 17.198911428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865842 12 -1 703531 0 0xffffffff 0 -1 703531 0 ff ff ff ff 2b bc 0a 00 00 00 00 00 ....+....... +6075 17.199542284 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865854 12 22 695070 0 0x00000016 0 22 695070 0 16 00 00 00 1e 9b 0a 00 00 00 00 00 ............ +6077 17.199719906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865866 22 18 2032453 0 0x00000012 1 2032453 0 196609 0 12 00 00 00 45 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +6079 17.200060129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537794 12 -1 695070 0 0xffffffff 0 -1 695070 0 ff ff ff ff 1e 9b 0a 00 00 00 00 00 ............ +6081 17.208628178 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537806 12 34 703532 0 0x00000022 0 34 703532 0 22 00 00 00 2c bc 0a 00 00 00 00 00 """...,......." +6083 17.208782196 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537818 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -4521984 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bb ff 01 00 00 00 00 00 1e 55 0e c3 9d 01 00 00 .....!...o3................U...... +6085 17.208912611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537852 12 67 703533 0 0x00000043 0 67 703533 0 43 00 00 00 2d bc 0a 00 00 00 00 00 C...-....... +6087 17.208994150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537864 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bb ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 ec 53 72 91 ?.....3...|8...................=B.....&......... +6089 17.209140062 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865888 12 -1 703532 0 0xffffffff 0 -1 703532 0 ff ff ff ff 2c bc 0a 00 00 00 00 00 ....,....... +6091 17.209403992 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865900 12 -1 703533 0 0xffffffff 0 -1 703533 0 ff ff ff ff 2d bc 0a 00 00 00 00 00 ....-....... +6093 17.210143328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865912 12 52 695071 0 0x00000034 0 52 695071 0 34 00 00 00 1f 9b 0a 00 00 00 00 00 4........... +6095 17.210376263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865924 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bb ff 01 00 00 00 00 00 00 00 a1 6d 70 53 4a 01 00 00 "0...Dk.................L."".([................mpS" +6097 17.210628033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537931 12 -1 695071 0 0xffffffff 0 -1 695071 0 ff ff ff ff 1f 9b 0a 00 00 00 00 00 ............ +6099 17.211375237 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537943 12 30 703534 0 0x0000001e 0 30 703534 0 1e 00 00 00 2e bc 0a 00 00 00 00 00 ............ +6101 17.211509228 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537955 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 54984704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 47 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......G........... +6103 17.211823463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865976 12 -1 703534 0 0xffffffff 0 -1 703534 0 ff ff ff ff 2e bc 0a 00 00 00 00 00 ............ +6105 17.212412834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375865988 12 26 695072 0 0x0000001a 0 26 695072 0 1a 00 00 00 20 9b 0a 00 00 00 00 00 .... ....... +6107 17.212597847 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866000 26 22 2032455 0 0x00000016 1 2032455 0 196609 0 16 00 00 00 47 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....G..................... +6109 17.212887049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537985 12 -1 695072 0 0xffffffff 0 -1 695072 0 ff ff ff ff 20 9b 0a 00 00 00 00 00 .... ....... +6117 17.302699566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331537997 12 26 703535 0 0x0000001a 0 26 703535 0 1a 00 00 00 2f bc 0a 00 00 00 00 00 ..../....... +6119 17.302889824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538009 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 55115776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 03 1f 00 00 00 00 00 ....T.c@.^1@......I....... +6121 17.303302765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866026 12 -1 703535 0 0xffffffff 0 -1 703535 0 ff ff ff ff 2f bc 0a 00 00 00 00 00 ..../....... +6123 17.303848982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866038 12 22 695073 0 0x00000016 0 22 695073 0 16 00 00 00 21 9b 0a 00 00 00 00 00 ....!....... +6125 17.304117680 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866050 22 18 2032457 0 0x00000012 1 2032457 0 196609 0 12 00 00 00 49 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +6127 17.304421186 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538035 12 -1 695073 0 0xffffffff 0 -1 695073 0 ff ff ff ff 21 9b 0a 00 00 00 00 00 ....!....... +6145 17.405457258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538047 12 26 703536 0 0x0000001a 0 26 703536 0 1a 00 00 00 30 bc 0a 00 00 00 00 00 ....0....... +6147 17.405681372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538059 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 55246848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 03 1f 00 00 00 00 00 ....T.c@.^1@......K....... +6149 17.406441450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866072 12 -1 703536 0 0xffffffff 0 -1 703536 0 ff ff ff ff 30 bc 0a 00 00 00 00 00 ....0....... +6151 17.407142639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866084 12 22 695074 0 0x00000016 0 22 695074 0 16 00 00 00 22 9b 0a 00 00 00 00 00 "....""......." +6153 17.407416344 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866096 22 18 2032459 0 0x00000012 1 2032459 0 196609 0 12 00 00 00 4b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +6155 17.407790661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538085 12 -1 695074 0 0xffffffff 0 -1 695074 0 ff ff ff ff 22 9b 0a 00 00 00 00 00 "....""......." +6161 17.509016514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538097 12 26 703537 0 0x0000001a 0 26 703537 0 1a 00 00 00 31 bc 0a 00 00 00 00 00 ....1....... +6163 17.509371281 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538109 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 55377920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 03 1f 00 00 00 00 00 ....T.c@.^1@......M....... +6165 17.509908199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866118 12 -1 703537 0 0xffffffff 0 -1 703537 0 ff ff ff ff 31 bc 0a 00 00 00 00 00 ....1....... +6167 17.510432243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866130 12 22 695075 0 0x00000016 0 22 695075 0 16 00 00 00 23 9b 0a 00 00 00 00 00 ....#....... +6169 17.510628462 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866142 22 18 2032461 0 0x00000012 1 2032461 0 196609 0 12 00 00 00 4d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +6171 17.510913372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538135 12 -1 695075 0 0xffffffff 0 -1 695075 0 ff ff ff ff 23 9b 0a 00 00 00 00 00 ....#....... +6173 17.512058020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538147 12 101 703538 0 0x00000065 0 101 703538 0 65 00 00 00 32 bc 0a 00 00 00 00 00 e...2....... +6175 17.512207270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538159 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bc ff 01 00 00 00 00 00 4d 56 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bc ff 01 00 00 00 00 .....!...o3...............MV......?.....3...|8.. +6177 17.512611151 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866164 12 -1 703538 0 0xffffffff 0 -1 703538 0 ff ff ff ff 32 bc 0a 00 00 00 00 00 ....2....... +6179 17.513558865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866176 12 52 695076 0 0x00000034 0 52 695076 0 34 00 00 00 24 9b 0a 00 00 00 00 00 4...$....... +6181 17.513699293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866188 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bc ff 01 00 00 00 00 00 00 00 5a bc 9e 53 4a 01 00 00 "0...Dk.................L."".([...............Z..S" +6183 17.513892651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538260 12 -1 695076 0 0xffffffff 0 -1 695076 0 ff ff ff ff 24 9b 0a 00 00 00 00 00 ....$....... +6185 17.514640570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538272 12 30 703539 0 0x0000001e 0 30 703539 0 1e 00 00 00 33 bc 0a 00 00 00 00 00 ....3....... +6187 17.514783144 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538284 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 55508992 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4f 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......O........... +6189 17.515080929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866240 12 -1 703539 0 0xffffffff 0 -1 703539 0 ff ff ff ff 33 bc 0a 00 00 00 00 00 ....3....... +6191 17.518331766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866252 12 26 695077 0 0x0000001a 0 26 695077 0 1a 00 00 00 25 9b 0a 00 00 00 00 00 ....%....... +6193 17.518513680 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866264 26 22 2032463 0 0x00000016 1 2032463 0 196609 0 16 00 00 00 4f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....O..................... +6195 17.518799782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538314 12 -1 695077 0 0xffffffff 0 -1 695077 0 ff ff ff ff 25 9b 0a 00 00 00 00 00 ....%....... +6203 17.534919500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866290 12 -2 79895 79912 0xfffffffe 0 -2 79895 79912 fe ff ff ff 17 38 01 00 28 38 01 00 .....8..(8.. +6217 17.597757578 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538326 12 -2 79913 79895 0xfffffffe 0 -2 79913 79895 fe ff ff ff 29 38 01 00 17 38 01 00 ....)8...8.. +6224 17.612165213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538338 12 26 703540 0 0x0000001a 0 26 703540 0 1a 00 00 00 34 bc 0a 00 00 00 00 00 ....4....... +6226 17.612342596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538350 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 55640064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 03 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +6228 17.612629175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866302 12 -1 703540 0 0xffffffff 0 -1 703540 0 ff ff ff ff 34 bc 0a 00 00 00 00 00 ....4....... +6230 17.613361359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866314 12 22 695078 0 0x00000016 0 22 695078 0 16 00 00 00 26 9b 0a 00 00 00 00 00 ....&....... +6232 17.613568783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866326 22 18 2032465 0 0x00000012 1 2032465 0 196609 0 12 00 00 00 51 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +6234 17.613911629 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538376 12 -1 695078 0 0xffffffff 0 -1 695078 0 ff ff ff ff 26 9b 0a 00 00 00 00 00 ....&....... +6246 17.715864897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538388 12 26 703541 0 0x0000001a 0 26 703541 0 1a 00 00 00 35 bc 0a 00 00 00 00 00 ....5....... +6248 17.716152668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538400 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 55771136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 03 1f 00 00 00 00 00 ....T.c@.^1@......S....... +6250 17.716529846 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866348 12 -1 703541 0 0xffffffff 0 -1 703541 0 ff ff ff ff 35 bc 0a 00 00 00 00 00 ....5....... +6252 17.717114210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866360 12 22 695079 0 0x00000016 0 22 695079 0 16 00 00 00 27 9b 0a 00 00 00 00 00 ....'....... +6254 17.717293978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866372 22 18 2032467 0 0x00000012 1 2032467 0 196609 0 12 00 00 00 53 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +6256 17.717594385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538426 12 -1 695079 0 0xffffffff 0 -1 695079 0 ff ff ff ff 27 9b 0a 00 00 00 00 00 ....'....... +6262 17.816318274 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538438 12 101 703542 0 0x00000065 0 101 703542 0 65 00 00 00 36 bc 0a 00 00 00 00 00 e...6....... +6264 17.816580057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538450 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bd ff 01 00 00 00 00 00 7d 57 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bd ff 01 00 00 00 00 .....!...o3...............}W......?.....3...|8.. +6266 17.817082882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866394 12 -1 703542 0 0xffffffff 0 -1 703542 0 ff ff ff ff 36 bc 0a 00 00 00 00 00 ....6....... +6268 17.817882538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866406 12 52 695080 0 0x00000034 0 52 695080 0 34 00 00 00 28 9b 0a 00 00 00 00 00 4...(....... +6270 17.818106890 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866418 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bd ff 01 00 00 00 00 00 00 00 22 29 cd 53 4a 01 00 00 "0...Dk.................L."".([..............."").S" +6272 17.818353891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538551 12 -1 695080 0 0xffffffff 0 -1 695080 0 ff ff ff ff 28 9b 0a 00 00 00 00 00 ....(....... +6274 17.818587065 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538563 12 26 703543 0 0x0000001a 0 26 703543 0 1a 00 00 00 37 bc 0a 00 00 00 00 00 ....7....... +6276 17.818777323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538575 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 55902208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 03 1f 00 00 00 00 00 ....T.c@.^1@......U....... +6278 17.819241047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866470 12 -1 703543 0 0xffffffff 0 -1 703543 0 ff ff ff ff 37 bc 0a 00 00 00 00 00 ....7....... +6280 17.819470644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866482 12 22 695081 0 0x00000016 0 22 695081 0 16 00 00 00 29 9b 0a 00 00 00 00 00 ....)....... +6281 17.819565773 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538601 42 30 703544 0 0x0000001e 0 30 703544 0 26 1e 00 00 00 38 bc 0a 00 00 00 00 00 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 57 03 1f 00 00 00 00 00 00 00 00 00 ....8...........U..b..:P......W........... +6283 17.819740057 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866494 22 18 2032469 0 0x00000012 1 2032469 0 196609 0 12 00 00 00 55 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +6285 17.820000172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866516 12 -1 703544 0 0xffffffff 0 -1 703544 0 ff ff ff ff 38 bc 0a 00 00 00 00 00 ....8....... +6286 17.820072412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538643 12 -1 695081 0 0xffffffff 0 -1 695081 0 ff ff ff ff 29 9b 0a 00 00 00 00 00 ....)....... +6288 17.820255995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866528 12 26 695082 0 0x0000001a 0 26 695082 0 1a 00 00 00 2a 9b 0a 00 00 00 00 00 ....*....... +6290 17.820395231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866540 26 22 2032471 0 0x00000016 1 2032471 0 196609 0 16 00 00 00 57 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....W..................... +6292 17.820631504 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538655 12 -1 695082 0 0xffffffff 0 -1 695082 0 ff ff ff ff 2a 9b 0a 00 00 00 00 00 ....*....... +6294 17.922677994 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538667 12 26 703545 0 0x0000001a 0 26 703545 0 1a 00 00 00 39 bc 0a 00 00 00 00 00 ....9....... +6296 17.922915936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538679 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 56164352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 03 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +6300 17.923513889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866566 12 -1 703545 0 0xffffffff 0 -1 703545 0 ff ff ff ff 39 bc 0a 00 00 00 00 00 ....9....... +6302 17.924323082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866578 12 22 695083 0 0x00000016 0 22 695083 0 16 00 00 00 2b 9b 0a 00 00 00 00 00 ....+....... +6304 17.924535751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866590 22 18 2032473 0 0x00000012 1 2032473 0 196609 0 12 00 00 00 59 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +6306 17.924877644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538705 12 -1 695083 0 0xffffffff 0 -1 695083 0 ff ff ff ff 2b 9b 0a 00 00 00 00 00 ....+....... +6310 18.027500629 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538717 12 26 703546 0 0x0000001a 0 26 703546 0 1a 00 00 00 3a bc 0a 00 00 00 00 00 ....:....... +6312 18.027696848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538729 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 56295424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 03 1f 00 00 00 00 00 ....T.c@.^1@......[....... +6314 18.028146029 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866612 12 -1 703546 0 0xffffffff 0 -1 703546 0 ff ff ff ff 3a bc 0a 00 00 00 00 00 ....:....... +6316 18.028680086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866624 12 22 695084 0 0x00000016 0 22 695084 0 16 00 00 00 2c 9b 0a 00 00 00 00 00 ....,....... +6318 18.028947115 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866636 22 18 2032475 0 0x00000012 1 2032475 0 196609 0 12 00 00 00 5b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +6320 18.029322863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538755 12 -1 695084 0 0xffffffff 0 -1 695084 0 ff ff ff ff 2c 9b 0a 00 00 00 00 00 ....,....... +6328 18.034451962 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866658 12 -2 79896 79913 0xfffffffe 0 -2 79896 79913 fe ff ff ff 18 38 01 00 29 38 01 00 .....8..)8.. +6331 18.099485159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538767 12 -2 79914 79896 0xfffffffe 0 -2 79914 79896 fe ff ff ff 2a 38 01 00 18 38 01 00 ....*8...8.. +6338 18.121923923 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538779 12 101 703547 0 0x00000065 0 101 703547 0 65 00 00 00 3b bc 0a 00 00 00 00 00 e...;....... +6340 18.122073412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538791 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 be ff 01 00 00 00 00 00 af 58 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 be ff 01 00 00 00 00 .....!...o3................X......?.....3...|8.. +6342 18.122414112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866670 12 -1 703547 0 0xffffffff 0 -1 703547 0 ff ff ff ff 3b bc 0a 00 00 00 00 00 ....;....... +6344 18.123654604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866682 12 52 695085 0 0x00000034 0 52 695085 0 34 00 00 00 2d 9b 0a 00 00 00 00 00 4...-....... +6346 18.123821259 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866694 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 be ff 01 00 00 00 00 00 00 00 eb d2 fb 53 4a 01 00 00 "0...Dk.................L."".([..................S" +6348 18.124183178 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538892 12 -1 695085 0 0xffffffff 0 -1 695085 0 ff ff ff ff 2d 9b 0a 00 00 00 00 00 ....-....... +6350 18.124858856 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538904 12 30 703548 0 0x0000001e 0 30 703548 0 1e 00 00 00 3c bc 0a 00 00 00 00 00 ....<....... +6352 18.125009775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538916 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 56426496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +6354 18.125498295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866746 12 -1 703548 0 0xffffffff 0 -1 703548 0 ff ff ff ff 3c bc 0a 00 00 00 00 00 ....<....... +6356 18.125987768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866758 12 26 695086 0 0x0000001a 0 26 695086 0 1a 00 00 00 2e 9b 0a 00 00 00 00 00 ............ +6358 18.126173735 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866770 26 22 2032477 0 0x00000016 1 2032477 0 196609 0 16 00 00 00 5d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +6360 18.126529217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538946 12 -1 695086 0 0xffffffff 0 -1 695086 0 ff ff ff ff 2e 9b 0a 00 00 00 00 00 ............ +6364 18.131386757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538958 12 26 703549 0 0x0000001a 0 26 703549 0 1a 00 00 00 3d bc 0a 00 00 00 00 00 ....=....... +6366 18.131531000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538970 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 56557568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 03 1f 00 00 00 00 00 ....T.c@.^1@......_....... +6368 18.131864548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866796 12 -1 703549 0 0xffffffff 0 -1 703549 0 ff ff ff ff 3d bc 0a 00 00 00 00 00 ....=....... +6370 18.132372141 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866808 12 22 695087 0 0x00000016 0 22 695087 0 16 00 00 00 2f 9b 0a 00 00 00 00 00 ..../....... +6372 18.132516623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866820 22 18 2032479 0 0x00000012 1 2032479 0 196609 0 12 00 00 00 5f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +6374 18.132696867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331538996 12 -1 695087 0 0xffffffff 0 -1 695087 0 ff ff ff ff 2f 9b 0a 00 00 00 00 00 ..../....... +6382 18.234872580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539008 12 26 703550 0 0x0000001a 0 26 703550 0 1a 00 00 00 3e bc 0a 00 00 00 00 00 ....>....... +6383 18.234889984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539020 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 56688640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 03 1f 00 00 00 00 00 ....T.c@.^1@......a....... +6385 18.235572577 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866842 12 -1 703550 0 0xffffffff 0 -1 703550 0 ff ff ff ff 3e bc 0a 00 00 00 00 00 ....>....... +6387 18.236781836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866854 12 22 695088 0 0x00000016 0 22 695088 0 16 00 00 00 30 9b 0a 00 00 00 00 00 ....0....... +6389 18.237030983 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866866 22 18 2032481 0 0x00000012 1 2032481 0 196609 0 12 00 00 00 61 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +6391 18.237391472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539046 12 -1 695088 0 0xffffffff 0 -1 695088 0 ff ff ff ff 30 9b 0a 00 00 00 00 00 ....0....... +6393 18.338692427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539058 12 26 703551 0 0x0000001a 0 26 703551 0 1a 00 00 00 3f bc 0a 00 00 00 00 00 ....?....... +6395 18.338878632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539070 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 56819712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 03 1f 00 00 00 00 00 ....T.c@.^1@......c....... +6397 18.339251041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866888 12 -1 703551 0 0xffffffff 0 -1 703551 0 ff ff ff ff 3f bc 0a 00 00 00 00 00 ....?....... +6399 18.339941978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866900 12 22 695089 0 0x00000016 0 22 695089 0 16 00 00 00 31 9b 0a 00 00 00 00 00 ....1....... +6401 18.340189219 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866912 22 18 2032483 0 0x00000012 1 2032483 0 196609 0 12 00 00 00 63 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +6403 18.340461731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539096 12 -1 695089 0 0xffffffff 0 -1 695089 0 ff ff ff ff 31 9b 0a 00 00 00 00 00 ....1....... +6407 18.426735640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539108 12 34 703552 0 0x00000022 0 34 703552 0 22 00 00 00 40 bc 0a 00 00 00 00 00 """...@......." +6409 18.426883936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539120 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -4259840 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bf ff 01 00 00 00 00 00 e0 59 0e c3 9d 01 00 00 .....!...o3................Y...... +6411 18.427003860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539154 12 67 703553 0 0x00000043 0 67 703553 0 43 00 00 00 41 bc 0a 00 00 00 00 00 C...A....... +6413 18.427085400 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539166 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bf ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 a9 ec ba 91 ?.....3...|8...................=B.....&......... +6415 18.427403927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866934 12 -1 703552 0 0xffffffff 0 -1 703552 0 ff ff ff ff 40 bc 0a 00 00 00 00 00 ....@....... +6417 18.427680969 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866946 12 -1 703553 0 0xffffffff 0 -1 703553 0 ff ff ff ff 41 bc 0a 00 00 00 00 00 ....A....... +6419 18.429058075 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866958 12 52 695090 0 0x00000034 0 52 695090 0 34 00 00 00 32 9b 0a 00 00 00 00 00 4...2....... +6421 18.429290771 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375866970 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bf ff 01 00 00 00 00 00 00 00 4a 6c 2a 54 4a 01 00 00 "0...Dk.................L."".([...............Jl*T" +6423 18.429569721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539233 12 -1 695090 0 0xffffffff 0 -1 695090 0 ff ff ff ff 32 9b 0a 00 00 00 00 00 ....2....... +6425 18.430490971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539245 12 30 703554 0 0x0000001e 0 30 703554 0 1e 00 00 00 42 bc 0a 00 00 00 00 00 ....B....... +6427 18.430607080 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539257 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 56950784 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +6429 18.430912495 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867022 12 -1 703554 0 0xffffffff 0 -1 703554 0 ff ff ff ff 42 bc 0a 00 00 00 00 00 ....B....... +6431 18.433104277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867034 12 26 695091 0 0x0000001a 0 26 695091 0 1a 00 00 00 33 9b 0a 00 00 00 00 00 ....3....... +6433 18.433361053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867046 26 22 2032485 0 0x00000016 1 2032485 0 196609 0 16 00 00 00 65 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +6435 18.433648586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539287 12 -1 695091 0 0xffffffff 0 -1 695091 0 ff ff ff ff 33 9b 0a 00 00 00 00 00 ....3....... +6437 18.441257238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539299 12 26 703555 0 0x0000001a 0 26 703555 0 1a 00 00 00 43 bc 0a 00 00 00 00 00 ....C....... +6439 18.441417456 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539311 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 57081856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 03 1f 00 00 00 00 00 ....T.c@.^1@......g....... +6441 18.441879988 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867072 12 -1 703555 0 0xffffffff 0 -1 703555 0 ff ff ff ff 43 bc 0a 00 00 00 00 00 ....C....... +6443 18.442387581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867084 12 22 695092 0 0x00000016 0 22 695092 0 16 00 00 00 34 9b 0a 00 00 00 00 00 ....4....... +6445 18.442624331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867096 22 18 2032487 0 0x00000012 1 2032487 0 196609 0 12 00 00 00 67 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +6447 18.442884922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539337 12 -1 695092 0 0xffffffff 0 -1 695092 0 ff ff ff ff 34 9b 0a 00 00 00 00 00 ....4....... +6455 18.537337542 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867118 12 -2 79897 79914 0xfffffffe 0 -2 79897 79914 fe ff ff ff 19 38 01 00 2a 38 01 00 .....8..*8.. +6457 18.545317411 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539349 12 26 703556 0 0x0000001a 0 26 703556 0 1a 00 00 00 44 bc 0a 00 00 00 00 00 ....D....... +6459 18.545608997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539361 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 57212928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 03 1f 00 00 00 00 00 ....T.c@.^1@......i....... +6461 18.546003580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867130 12 -1 703556 0 0xffffffff 0 -1 703556 0 ff ff ff ff 44 bc 0a 00 00 00 00 00 ....D....... +6463 18.546722889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867142 12 22 695093 0 0x00000016 0 22 695093 0 16 00 00 00 35 9b 0a 00 00 00 00 00 ....5....... +6465 18.546868563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867154 22 18 2032489 0 0x00000012 1 2032489 0 196609 0 12 00 00 00 69 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +6467 18.547132492 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539387 12 -1 695093 0 0xffffffff 0 -1 695093 0 ff ff ff ff 35 9b 0a 00 00 00 00 00 ....5....... +6470 18.600085020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539399 12 -2 79915 79897 0xfffffffe 0 -2 79915 79897 fe ff ff ff 2b 38 01 00 19 38 01 00 ....+8...8.. +6479 18.650296450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539411 12 26 703557 0 0x0000001a 0 26 703557 0 1a 00 00 00 45 bc 0a 00 00 00 00 00 ....E....... +6481 18.650470018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539423 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 57344000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 03 1f 00 00 00 00 00 ....T.c@.^1@......k....... +6483 18.650809765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867176 12 -1 703557 0 0xffffffff 0 -1 703557 0 ff ff ff ff 45 bc 0a 00 00 00 00 00 ....E....... +6485 18.651636600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867188 12 22 695094 0 0x00000016 0 22 695094 0 16 00 00 00 36 9b 0a 00 00 00 00 00 ....6....... +6487 18.651809454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867200 22 18 2032491 0 0x00000012 1 2032491 0 196609 0 12 00 00 00 6b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +6489 18.652080297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539449 12 -1 695094 0 0xffffffff 0 -1 695094 0 ff ff ff ff 36 9b 0a 00 00 00 00 00 ....6....... +6493 18.732556581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539461 12 34 703558 0 0x00000022 0 34 703558 0 22 00 00 00 46 bc 0a 00 00 00 00 00 """...F......." +6495 18.732739449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539473 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -4194304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c0 ff 01 00 00 00 00 00 11 5b 0e c3 9d 01 00 00 .....!...o3................[...... +6497 18.732830763 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539507 12 67 703559 0 0x00000043 0 67 703559 0 43 00 00 00 47 bc 0a 00 00 00 00 00 C...G....... +6499 18.732914686 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539519 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c0 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 82 2d cd 91 ?.....3...|8...................=B.....&......... +6501 18.733185530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867222 12 -1 703558 0 0xffffffff 0 -1 703558 0 ff ff ff ff 46 bc 0a 00 00 00 00 00 ....F....... +6503 18.733427763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867234 12 -1 703559 0 0xffffffff 0 -1 703559 0 ff ff ff ff 47 bc 0a 00 00 00 00 00 ....G....... +6505 18.734479904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867246 12 52 695095 0 0x00000034 0 52 695095 0 34 00 00 00 37 9b 0a 00 00 00 00 00 4...7....... +6507 18.734702587 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867258 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c0 ff 01 00 00 00 00 00 00 00 71 06 59 54 4a 01 00 00 "0...Dk.................L."".([...............q.YT" +6509 18.734969854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539586 12 -1 695095 0 0xffffffff 0 -1 695095 0 ff ff ff ff 37 9b 0a 00 00 00 00 00 ....7....... +6511 18.735710382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539598 12 30 703560 0 0x0000001e 0 30 703560 0 1e 00 00 00 48 bc 0a 00 00 00 00 00 ....H....... +6513 18.735851049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539610 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 57475072 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......m........... +6517 18.736933947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867310 12 -1 703560 0 0xffffffff 0 -1 703560 0 ff ff ff ff 48 bc 0a 00 00 00 00 00 ....H....... +6519 18.737164021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867322 12 26 695096 0 0x0000001a 0 26 695096 0 1a 00 00 00 38 9b 0a 00 00 00 00 00 ....8....... +6521 18.737316132 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867334 26 22 2032493 0 0x00000016 1 2032493 0 196609 0 16 00 00 00 6d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....m..................... +6523 18.737656116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539640 12 -1 695096 0 0xffffffff 0 -1 695096 0 ff ff ff ff 38 9b 0a 00 00 00 00 00 ....8....... +6525 18.753954411 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539652 12 26 703561 0 0x0000001a 0 26 703561 0 1a 00 00 00 49 bc 0a 00 00 00 00 00 ....I....... +6527 18.754117012 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539664 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 57606144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 03 1f 00 00 00 00 00 ....T.c@.^1@......o....... +6529 18.754439592 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867360 12 -1 703561 0 0xffffffff 0 -1 703561 0 ff ff ff ff 49 bc 0a 00 00 00 00 00 ....I....... +6531 18.755028248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867372 12 22 695097 0 0x00000016 0 22 695097 0 16 00 00 00 39 9b 0a 00 00 00 00 00 ....9....... +6533 18.755246878 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867384 22 18 2032495 0 0x00000012 1 2032495 0 196609 0 12 00 00 00 6f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +6535 18.755534649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539690 12 -1 695097 0 0xffffffff 0 -1 695097 0 ff ff ff ff 39 9b 0a 00 00 00 00 00 ....9....... +6554 18.856640100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539702 12 26 703562 0 0x0000001a 0 26 703562 0 1a 00 00 00 4a bc 0a 00 00 00 00 00 ....J....... +6556 18.856929064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539714 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 57737216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 03 1f 00 00 00 00 00 ....T.c@.^1@......q....... +6560 18.857330084 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867406 12 -1 703562 0 0xffffffff 0 -1 703562 0 ff ff ff ff 4a bc 0a 00 00 00 00 00 ....J....... +6564 18.857917547 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867418 12 22 695098 0 0x00000016 0 22 695098 0 16 00 00 00 3a 9b 0a 00 00 00 00 00 ....:....... +6566 18.858071566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867430 22 18 2032497 0 0x00000012 1 2032497 0 196609 0 12 00 00 00 71 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +6568 18.858337164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539740 12 -1 695098 0 0xffffffff 0 -1 695098 0 ff ff ff ff 3a 9b 0a 00 00 00 00 00 ....:....... +6603 18.960143566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539752 12 26 703563 0 0x0000001a 0 26 703563 0 1a 00 00 00 4b bc 0a 00 00 00 00 00 ....K....... +6605 18.960429192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539764 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 57868288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 03 1f 00 00 00 00 00 ....T.c@.^1@......s....... +6607 18.960902452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867452 12 -1 703563 0 0xffffffff 0 -1 703563 0 ff ff ff ff 4b bc 0a 00 00 00 00 00 ....K....... +6609 18.961647749 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867464 12 22 695099 0 0x00000016 0 22 695099 0 16 00 00 00 3b 9b 0a 00 00 00 00 00 ....;....... +6611 18.961927176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867476 22 18 2032499 0 0x00000012 1 2032499 0 196609 0 12 00 00 00 73 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +6613 18.962251663 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539790 12 -1 695099 0 0xffffffff 0 -1 695099 0 ff ff ff ff 3b 9b 0a 00 00 00 00 00 ....;....... +6690 19.037579775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539802 12 34 703564 0 0x00000022 0 34 703564 0 22 00 00 00 4c bc 0a 00 00 00 00 00 """...L......." +6692 19.037744522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539814 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -4128768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c1 ff 01 00 00 00 00 00 42 5c 0e c3 9d 01 00 00 .....!...o3...............B\...... +6694 19.037924051 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867498 12 -2 79898 79915 0xfffffffe 0 -2 79898 79915 fe ff ff ff 1a 38 01 00 2b 38 01 00 .....8..+8.. +6695 19.037924528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539848 12 67 703565 0 0x00000043 0 67 703565 0 43 00 00 00 4d bc 0a 00 00 00 00 00 C...M....... +6696 19.038055897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539860 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c1 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b0 77 5a df 91 ?.....3...|8...................=B.....&......... +6698 19.038427353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867510 12 -1 703564 0 0xffffffff 0 -1 703564 0 ff ff ff ff 4c bc 0a 00 00 00 00 00 ....L....... +6700 19.038674116 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867522 12 -1 703565 0 0xffffffff 0 -1 703565 0 ff ff ff ff 4d bc 0a 00 00 00 00 00 ....M....... +6702 19.040140629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867534 12 52 695100 0 0x00000034 0 52 695100 0 34 00 00 00 3c 9b 0a 00 00 00 00 00 4...<....... +6704 19.040316343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867546 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c1 ff 01 00 00 00 00 00 00 00 a0 a9 87 54 4a 01 00 00 "0...Dk.................L."".([..................T" +6706 19.040638924 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539927 12 -1 695100 0 0xffffffff 0 -1 695100 0 ff ff ff ff 3c 9b 0a 00 00 00 00 00 ....<....... +6707 19.041694880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539939 12 30 703566 0 0x0000001e 0 30 703566 0 1e 00 00 00 4e bc 0a 00 00 00 00 00 ....N....... +6709 19.041885614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539951 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 57999360 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 75 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......u........... +6711 19.042217493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867598 12 -1 703566 0 0xffffffff 0 -1 703566 0 ff ff ff ff 4e bc 0a 00 00 00 00 00 ....N....... +6713 19.042654276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867610 12 26 695101 0 0x0000001a 0 26 695101 0 1a 00 00 00 3d 9b 0a 00 00 00 00 00 ....=....... +6715 19.042879343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867622 26 22 2032501 0 0x00000016 1 2032501 0 196609 0 16 00 00 00 75 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....u..................... +6717 19.043179989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539981 12 -1 695101 0 0xffffffff 0 -1 695101 0 ff ff ff ff 3d 9b 0a 00 00 00 00 00 ....=....... +6719 19.063895941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331539993 12 26 703567 0 0x0000001a 0 26 703567 0 1a 00 00 00 4f bc 0a 00 00 00 00 00 ....O....... +6721 19.064060450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540005 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 58130432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 03 1f 00 00 00 00 00 ....T.c@.^1@......w....... +6723 19.064413071 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867648 12 -1 703567 0 0xffffffff 0 -1 703567 0 ff ff ff ff 4f bc 0a 00 00 00 00 00 ....O....... +6725 19.064853668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867660 12 22 695102 0 0x00000016 0 22 695102 0 16 00 00 00 3e 9b 0a 00 00 00 00 00 ....>....... +6727 19.065013170 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867672 22 18 2032503 0 0x00000012 1 2032503 0 196609 0 12 00 00 00 77 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +6729 19.065326214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540031 12 -1 695102 0 0xffffffff 0 -1 695102 0 ff ff ff ff 3e 9b 0a 00 00 00 00 00 ....>....... +6731 19.101757050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540043 12 -2 79916 79898 0xfffffffe 0 -2 79916 79898 fe ff ff ff 2c 38 01 00 1a 38 01 00 ....,8...8.. +6741 19.167006731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540055 12 26 703568 0 0x0000001a 0 26 703568 0 1a 00 00 00 50 bc 0a 00 00 00 00 00 ....P....... +6743 19.167172432 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540067 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 58261504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 03 1f 00 00 00 00 00 ....T.c@.^1@......y....... +6745 19.167623281 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867694 12 -1 703568 0 0xffffffff 0 -1 703568 0 ff ff ff ff 50 bc 0a 00 00 00 00 00 ....P....... +6747 19.168127537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867706 12 22 695103 0 0x00000016 0 22 695103 0 16 00 00 00 3f 9b 0a 00 00 00 00 00 ....?....... +6749 19.168304443 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867718 22 18 2032505 0 0x00000012 1 2032505 0 196609 0 12 00 00 00 79 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +6751 19.168627977 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540093 12 -1 695103 0 0xffffffff 0 -1 695103 0 ff ff ff ff 3f 9b 0a 00 00 00 00 00 ....?....... +6796 19.271238089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540105 12 26 703569 0 0x0000001a 0 26 703569 0 1a 00 00 00 51 bc 0a 00 00 00 00 00 ....Q....... +6798 19.271441221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540117 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 58392576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 03 1f 00 00 00 00 00 ....T.c@.^1@......{....... +6800 19.271754980 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867740 12 -1 703569 0 0xffffffff 0 -1 703569 0 ff ff ff ff 51 bc 0a 00 00 00 00 00 ....Q....... +6802 19.272322178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867752 12 22 695104 0 0x00000016 0 22 695104 0 16 00 00 00 40 9b 0a 00 00 00 00 00 ....@....... +6804 19.272538900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867764 22 18 2032507 0 0x00000012 1 2032507 0 196609 0 12 00 00 00 7b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +6806 19.272812605 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540143 12 -1 695104 0 0xffffffff 0 -1 695104 0 ff ff ff ff 40 9b 0a 00 00 00 00 00 ....@....... +6808 19.343440056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540155 12 34 703570 0 0x00000022 0 34 703570 0 22 00 00 00 52 bc 0a 00 00 00 00 00 """...R......." +6810 19.343628168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540167 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -4063232 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c2 ff 01 00 00 00 00 00 74 5d 0e c3 9d 01 00 00 .....!...o3...............t]...... +6812 19.343764067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540201 12 67 703571 0 0x00000043 0 67 703571 0 43 00 00 00 53 bc 0a 00 00 00 00 00 C...S....... +6814 19.343847036 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540213 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c2 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 20 81 97 f1 91 ?.....3...|8...................=B.....&......... +6816 19.344136238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867786 12 -1 703570 0 0xffffffff 0 -1 703570 0 ff ff ff ff 52 bc 0a 00 00 00 00 00 ....R....... +6818 19.344553947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867798 12 -1 703571 0 0xffffffff 0 -1 703571 0 ff ff ff ff 53 bc 0a 00 00 00 00 00 ....S....... +6820 19.345108747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867810 12 52 695105 0 0x00000034 0 52 695105 0 34 00 00 00 41 9b 0a 00 00 00 00 00 4...A....... +6822 19.345409870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867822 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c2 ff 01 00 00 00 00 00 00 00 0d 33 b6 54 4a 01 00 00 "0...Dk.................L."".([................3.T" +6824 19.345736027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540280 12 -1 695105 0 0xffffffff 0 -1 695105 0 ff ff ff ff 41 9b 0a 00 00 00 00 00 ....A....... +6826 19.346751213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540292 12 30 703572 0 0x0000001e 0 30 703572 0 1e 00 00 00 54 bc 0a 00 00 00 00 00 ....T....... +6828 19.346890211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540304 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 58523648 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7d 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......}........... +6830 19.347306013 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867874 12 -1 703572 0 0xffffffff 0 -1 703572 0 ff ff ff ff 54 bc 0a 00 00 00 00 00 ....T....... +6832 19.347845078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867886 12 26 695106 0 0x0000001a 0 26 695106 0 1a 00 00 00 42 9b 0a 00 00 00 00 00 ....B....... +6834 19.348042250 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867898 26 22 2032509 0 0x00000016 1 2032509 0 196609 0 16 00 00 00 7d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....}..................... +6836 19.348448515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540334 12 -1 695106 0 0xffffffff 0 -1 695106 0 ff ff ff ff 42 9b 0a 00 00 00 00 00 ....B....... +6877 19.375059843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540346 12 26 703573 0 0x0000001a 0 26 703573 0 1a 00 00 00 55 bc 0a 00 00 00 00 00 ....U....... +6879 19.375259638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540358 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 58654720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +6881 19.375659466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867924 12 -1 703573 0 0xffffffff 0 -1 703573 0 ff ff ff ff 55 bc 0a 00 00 00 00 00 ....U....... +6883 19.376288176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867936 12 22 695107 0 0x00000016 0 22 695107 0 16 00 00 00 43 9b 0a 00 00 00 00 00 ....C....... +6885 19.376531839 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867948 22 18 2032511 0 0x00000012 1 2032511 0 196609 0 12 00 00 00 7f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6887 19.376777887 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540384 12 -1 695107 0 0xffffffff 0 -1 695107 0 ff ff ff ff 43 9b 0a 00 00 00 00 00 ....C....... +6891 19.479530334 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540396 12 26 703574 0 0x0000001a 0 26 703574 0 1a 00 00 00 56 bc 0a 00 00 00 00 00 ....V....... +6893 19.479796171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540408 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 58785792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +6895 19.480272532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867970 12 -1 703574 0 0xffffffff 0 -1 703574 0 ff ff ff ff 56 bc 0a 00 00 00 00 00 ....V....... +6897 19.480651855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867982 12 22 695108 0 0x00000016 0 22 695108 0 16 00 00 00 44 9b 0a 00 00 00 00 00 ....D....... +6899 19.480819464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375867994 22 18 2032513 0 0x00000012 1 2032513 0 196609 0 12 00 00 00 81 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6901 19.481161833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540434 12 -1 695108 0 0xffffffff 0 -1 695108 0 ff ff ff ff 44 9b 0a 00 00 00 00 00 ....D....... +6948 19.538774967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868016 12 -2 79899 79916 0xfffffffe 0 -2 79899 79916 fe ff ff ff 1b 38 01 00 2c 38 01 00 .....8..,8.. +6950 19.583032370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540446 12 26 703575 0 0x0000001a 0 26 703575 0 1a 00 00 00 57 bc 0a 00 00 00 00 00 ....W....... +6952 19.583207846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540458 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 58916864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +6954 19.583692074 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868028 12 -1 703575 0 0xffffffff 0 -1 703575 0 ff ff ff ff 57 bc 0a 00 00 00 00 00 ....W....... +6956 19.584044933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868040 12 22 695109 0 0x00000016 0 22 695109 0 16 00 00 00 45 9b 0a 00 00 00 00 00 ....E....... +6958 19.584227562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868052 22 18 2032515 0 0x00000012 1 2032515 0 196609 0 12 00 00 00 83 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6960 19.584584951 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540484 12 -1 695109 0 0xffffffff 0 -1 695109 0 ff ff ff ff 45 9b 0a 00 00 00 00 00 ....E....... +6962 19.603674173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540496 12 -2 79917 79899 0xfffffffe 0 -2 79917 79899 fe ff ff ff 2d 38 01 00 1b 38 01 00 ....-8...8.. +7007 19.648543835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540508 12 101 703576 0 0x00000065 0 101 703576 0 65 00 00 00 58 bc 0a 00 00 00 00 00 e...X....... +7009 19.648708105 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540520 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c3 ff 01 00 00 00 00 00 a5 5e 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c3 ff 01 00 00 00 00 .....!...o3................^......?.....3...|8.. +7012 19.649187803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868074 12 -1 703576 0 0xffffffff 0 -1 703576 0 ff ff ff ff 58 bc 0a 00 00 00 00 00 ....X....... +7014 19.650188684 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868086 12 52 695110 0 0x00000034 0 52 695110 0 34 00 00 00 46 9b 0a 00 00 00 00 00 4...F....... +7016 19.650385380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868098 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c3 ff 01 00 00 00 00 00 00 00 f1 be e4 54 4a 01 00 00 "0...Dk.................L."".([..................T" +7018 19.650730371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540621 12 -1 695110 0 0xffffffff 0 -1 695110 0 ff ff ff ff 46 9b 0a 00 00 00 00 00 ....F....... +7020 19.651569366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540633 12 30 703577 0 0x0000001e 0 30 703577 0 1e 00 00 00 59 bc 0a 00 00 00 00 00 ....Y....... +7022 19.651716232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540645 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 59047936 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 85 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7024 19.652098179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868150 12 -1 703577 0 0xffffffff 0 -1 703577 0 ff ff ff ff 59 bc 0a 00 00 00 00 00 ....Y....... +7026 19.652517319 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868162 12 26 695111 0 0x0000001a 0 26 695111 0 1a 00 00 00 47 9b 0a 00 00 00 00 00 ....G....... +7028 19.652662992 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868174 26 22 2032517 0 0x00000016 1 2032517 0 196609 0 16 00 00 00 85 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7030 19.652899027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540675 12 -1 695111 0 0xffffffff 0 -1 695111 0 ff ff ff ff 47 9b 0a 00 00 00 00 00 ....G....... +7032 19.685871601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540687 12 26 703578 0 0x0000001a 0 26 703578 0 1a 00 00 00 5a bc 0a 00 00 00 00 00 ....Z....... +7034 19.686068058 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540699 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 59179008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7036 19.686430216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868200 12 -1 703578 0 0xffffffff 0 -1 703578 0 ff ff ff ff 5a bc 0a 00 00 00 00 00 ....Z....... +7038 19.686837196 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868212 12 22 695112 0 0x00000016 0 22 695112 0 16 00 00 00 48 9b 0a 00 00 00 00 00 ....H....... +7040 19.687036991 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868224 22 18 2032519 0 0x00000012 1 2032519 0 196609 0 12 00 00 00 87 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7042 19.687318087 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540725 12 -1 695112 0 0xffffffff 0 -1 695112 0 ff ff ff ff 48 9b 0a 00 00 00 00 00 ....H....... +7048 19.789095163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540737 12 26 703579 0 0x0000001a 0 26 703579 0 1a 00 00 00 5b bc 0a 00 00 00 00 00 ....[....... +7050 19.789287567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540749 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 59310080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7052 19.789690495 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868246 12 -1 703579 0 0xffffffff 0 -1 703579 0 ff ff ff ff 5b bc 0a 00 00 00 00 00 ....[....... +7054 19.790079594 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868258 12 22 695113 0 0x00000016 0 22 695113 0 16 00 00 00 49 9b 0a 00 00 00 00 00 ....I....... +7056 19.790244341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868270 22 18 2032521 0 0x00000012 1 2032521 0 196609 0 12 00 00 00 89 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7058 19.790493250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540775 12 -1 695113 0 0xffffffff 0 -1 695113 0 ff ff ff ff 49 9b 0a 00 00 00 00 00 ....I....... +7060 19.892200232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540787 12 26 703580 0 0x0000001a 0 26 703580 0 1a 00 00 00 5c bc 0a 00 00 00 00 00 ....\....... +7062 19.892415524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540799 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 59441152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7064 19.892805576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868292 12 -1 703580 0 0xffffffff 0 -1 703580 0 ff ff ff ff 5c bc 0a 00 00 00 00 00 ....\....... +7066 19.893250942 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868304 12 22 695114 0 0x00000016 0 22 695114 0 16 00 00 00 4a 9b 0a 00 00 00 00 00 ....J....... +7068 19.893509865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868316 22 18 2032523 0 0x00000012 1 2032523 0 196609 0 12 00 00 00 8b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7070 19.893787384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540825 12 -1 695114 0 0xffffffff 0 -1 695114 0 ff ff ff ff 4a 9b 0a 00 00 00 00 00 ....J....... +7074 19.954024076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540837 12 34 703581 0 0x00000022 0 34 703581 0 22 00 00 00 5d bc 0a 00 00 00 00 00 """...]......." +7076 19.954329967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540849 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -3932160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c4 ff 01 00 00 00 00 00 d7 5f 0e c3 9d 01 00 00 .....!...o3................_...... +7078 19.954530716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540883 12 67 703582 0 0x00000043 0 67 703582 0 43 00 00 00 5e bc 0a 00 00 00 00 00 C...^....... +7080 19.954646587 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540895 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c4 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 44 fc 15 92 ?.....3...|8...................=B.....&......... +7081 19.954764366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868338 12 -1 703581 0 0xffffffff 0 -1 703581 0 ff ff ff ff 5d bc 0a 00 00 00 00 00 ....]....... +7082 19.954887629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868350 12 -1 703582 0 0xffffffff 0 -1 703582 0 ff ff ff ff 5e bc 0a 00 00 00 00 00 ....^....... +7085 19.956367970 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868362 12 52 695115 0 0x00000034 0 52 695115 0 34 00 00 00 4b 9b 0a 00 00 00 00 00 4...K....... +7087 19.956619978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868374 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c4 ff 01 00 00 00 00 00 00 00 a5 75 13 55 4a 01 00 00 "0...Dk.................L."".([................u.U" +7089 19.956966877 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540962 12 -1 695115 0 0xffffffff 0 -1 695115 0 ff ff ff ff 4b 9b 0a 00 00 00 00 00 ....K....... +7091 19.957783937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540974 12 30 703583 0 0x0000001e 0 30 703583 0 1e 00 00 00 5f bc 0a 00 00 00 00 00 ...._....... +7093 19.958010674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331540986 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 59572224 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8d 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7095 19.958366632 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868426 12 -1 703583 0 0xffffffff 0 -1 703583 0 ff ff ff ff 5f bc 0a 00 00 00 00 00 ...._....... +7097 19.958816767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868438 12 26 695116 0 0x0000001a 0 26 695116 0 1a 00 00 00 4c 9b 0a 00 00 00 00 00 ....L....... +7099 19.959048271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868450 26 22 2032525 0 0x00000016 1 2032525 0 196609 0 16 00 00 00 8d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7101 19.959349394 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541016 12 -1 695116 0 0xffffffff 0 -1 695116 0 ff ff ff ff 4c 9b 0a 00 00 00 00 00 ....L....... +7103 19.995323896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541028 12 26 703584 0 0x0000001a 0 26 703584 0 1a 00 00 00 60 bc 0a 00 00 00 00 00 ....`....... +7105 19.995479345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541040 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 59703296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7107 19.995962381 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868476 12 -1 703584 0 0xffffffff 0 -1 703584 0 ff ff ff ff 60 bc 0a 00 00 00 00 00 ....`....... +7109 19.996344566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868488 12 22 695117 0 0x00000016 0 22 695117 0 16 00 00 00 4d 9b 0a 00 00 00 00 00 ....M....... +7111 19.996514797 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868500 22 18 2032527 0 0x00000012 1 2032527 0 196609 0 12 00 00 00 8f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7113 19.996753931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541066 12 -1 695117 0 0xffffffff 0 -1 695117 0 ff ff ff ff 4d 9b 0a 00 00 00 00 00 ....M....... +7121 20.039541483 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868522 12 -2 79900 79917 0xfffffffe 0 -2 79900 79917 fe ff ff ff 1c 38 01 00 2d 38 01 00 .....8..-8.. +7123 20.097613096 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541078 12 26 703585 0 0x0000001a 0 26 703585 0 1a 00 00 00 61 bc 0a 00 00 00 00 00 ....a....... +7125 20.097829819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541090 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 59834368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7127 20.098248243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868534 12 -1 703585 0 0xffffffff 0 -1 703585 0 ff ff ff ff 61 bc 0a 00 00 00 00 00 ....a....... +7129 20.098728895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868546 12 22 695118 0 0x00000016 0 22 695118 0 16 00 00 00 4e 9b 0a 00 00 00 00 00 ....N....... +7131 20.098904848 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868558 22 18 2032529 0 0x00000012 1 2032529 0 196609 0 12 00 00 00 91 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7133 20.099180460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541116 12 -1 695118 0 0xffffffff 0 -1 695118 0 ff ff ff ff 4e 9b 0a 00 00 00 00 00 ....N....... +7135 20.104301453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541128 12 -2 79918 79900 0xfffffffe 0 -2 79918 79900 fe ff ff ff 2e 38 01 00 1c 38 01 00 .....8...8.. +7145 20.200567484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541140 12 26 703586 0 0x0000001a 0 26 703586 0 1a 00 00 00 62 bc 0a 00 00 00 00 00 ....b....... +7147 20.200736046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541152 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 59965440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7149 20.201200008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868580 12 -1 703586 0 0xffffffff 0 -1 703586 0 ff ff ff ff 62 bc 0a 00 00 00 00 00 ....b....... +7151 20.201691866 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868592 12 22 695119 0 0x00000016 0 22 695119 0 16 00 00 00 4f 9b 0a 00 00 00 00 00 ....O....... +7153 20.201877117 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868604 22 18 2032531 0 0x00000012 1 2032531 0 196609 0 12 00 00 00 93 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7155 20.202252388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541178 12 -1 695119 0 0xffffffff 0 -1 695119 0 ff ff ff ff 4f 9b 0a 00 00 00 00 00 ....O....... +7193 20.259206295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541190 12 101 703587 0 0x00000065 0 101 703587 0 65 00 00 00 63 bc 0a 00 00 00 00 00 e...c....... +7195 20.259423256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541202 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c5 ff 01 00 00 00 00 00 08 61 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c5 ff 01 00 00 00 00 .....!...o3................a......?.....3...|8.. +7197 20.259720325 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868626 12 -1 703587 0 0xffffffff 0 -1 703587 0 ff ff ff ff 63 bc 0a 00 00 00 00 00 ....c....... +7199 20.261201859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868638 12 52 695120 0 0x00000034 0 52 695120 0 34 00 00 00 50 9b 0a 00 00 00 00 00 4...P....... +7201 20.261406898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868650 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c5 ff 01 00 00 00 00 00 00 00 b6 f6 41 55 4a 01 00 00 "0...Dk.................L."".([.................AU" +7203 20.261624575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541303 12 -1 695120 0 0xffffffff 0 -1 695120 0 ff ff ff ff 50 9b 0a 00 00 00 00 00 ....P....... +7205 20.262479782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541315 12 30 703588 0 0x0000001e 0 30 703588 0 1e 00 00 00 64 bc 0a 00 00 00 00 00 ....d....... +7207 20.262661695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541327 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 60096512 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 95 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7209 20.263219118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868702 12 -1 703588 0 0xffffffff 0 -1 703588 0 ff ff ff ff 64 bc 0a 00 00 00 00 00 ....d....... +7211 20.263586760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868714 12 26 695121 0 0x0000001a 0 26 695121 0 1a 00 00 00 51 9b 0a 00 00 00 00 00 ....Q....... +7213 20.263733149 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868726 26 22 2032533 0 0x00000016 1 2032533 0 196609 0 16 00 00 00 95 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7215 20.263962746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541357 12 -1 695121 0 0xffffffff 0 -1 695121 0 ff ff ff ff 51 9b 0a 00 00 00 00 00 ....Q....... +7217 20.303290844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541369 12 26 703589 0 0x0000001a 0 26 703589 0 1a 00 00 00 65 bc 0a 00 00 00 00 00 ....e....... +7219 20.303456068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541381 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 60227584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7221 20.303729296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868752 12 -1 703589 0 0xffffffff 0 -1 703589 0 ff ff ff ff 65 bc 0a 00 00 00 00 00 ....e....... +7223 20.304263592 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868764 12 22 695122 0 0x00000016 0 22 695122 0 16 00 00 00 52 9b 0a 00 00 00 00 00 ....R....... +7225 20.304455042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868776 22 18 2032535 0 0x00000012 1 2032535 0 196609 0 12 00 00 00 97 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7227 20.304706812 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541407 12 -1 695122 0 0xffffffff 0 -1 695122 0 ff ff ff ff 52 9b 0a 00 00 00 00 00 ....R....... +7229 20.407265663 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541419 12 26 703590 0 0x0000001a 0 26 703590 0 1a 00 00 00 66 bc 0a 00 00 00 00 00 ....f....... +7231 20.407504559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541431 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 60358656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7233 20.407917976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868798 12 -1 703590 0 0xffffffff 0 -1 703590 0 ff ff ff ff 66 bc 0a 00 00 00 00 00 ....f....... +7235 20.408395052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868810 12 22 695123 0 0x00000016 0 22 695123 0 16 00 00 00 53 9b 0a 00 00 00 00 00 ....S....... +7237 20.408568382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868822 22 18 2032537 0 0x00000012 1 2032537 0 196609 0 12 00 00 00 99 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7239 20.408843279 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541457 12 -1 695123 0 0xffffffff 0 -1 695123 0 ff ff ff ff 53 9b 0a 00 00 00 00 00 ....S....... +7243 20.510276318 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541469 12 26 703591 0 0x0000001a 0 26 703591 0 1a 00 00 00 67 bc 0a 00 00 00 00 00 ....g....... +7245 20.510452747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541481 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 60489728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7247 20.510817528 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868844 12 -1 703591 0 0xffffffff 0 -1 703591 0 ff ff ff ff 67 bc 0a 00 00 00 00 00 ....g....... +7249 20.511305332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868856 12 22 695124 0 0x00000016 0 22 695124 0 16 00 00 00 54 9b 0a 00 00 00 00 00 ....T....... +7251 20.511539698 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868868 22 18 2032539 0 0x00000012 1 2032539 0 196609 0 12 00 00 00 9b 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7253 20.511892796 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541507 12 -1 695124 0 0xffffffff 0 -1 695124 0 ff ff ff ff 54 9b 0a 00 00 00 00 00 ....T....... +7294 20.540934086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868890 12 -2 79901 79918 0xfffffffe 0 -2 79901 79918 fe ff ff ff 1d 38 01 00 2e 38 01 00 .....8...8.. +7302 20.563637495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541519 12 101 703592 0 0x00000065 0 101 703592 0 65 00 00 00 68 bc 0a 00 00 00 00 00 e...h....... +7304 20.563785553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541531 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c6 ff 01 00 00 00 00 00 39 62 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c6 ff 01 00 00 00 00 .....!...o3...............9b......?.....3...|8.. +7306 20.564191818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868902 12 -1 703592 0 0xffffffff 0 -1 703592 0 ff ff ff ff 68 bc 0a 00 00 00 00 00 ....h....... +7308 20.565377951 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868914 12 52 695125 0 0x00000034 0 52 695125 0 34 00 00 00 55 9b 0a 00 00 00 00 00 4...U....... +7310 20.565739870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868926 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c6 ff 01 00 00 00 00 00 00 00 53 5f 70 55 4a 01 00 00 "0...Dk.................L."".([...............S_pU" +7312 20.565997601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541632 12 -1 695125 0 0xffffffff 0 -1 695125 0 ff ff ff ff 55 9b 0a 00 00 00 00 00 ....U....... +7314 20.567090034 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541644 12 30 703593 0 0x0000001e 0 30 703593 0 1e 00 00 00 69 bc 0a 00 00 00 00 00 ....i....... +7316 20.567245960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541656 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 60620800 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9d 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7318 20.567481041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868978 12 -1 703593 0 0xffffffff 0 -1 703593 0 ff ff ff ff 69 bc 0a 00 00 00 00 00 ....i....... +7320 20.568026304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375868990 12 26 695126 0 0x0000001a 0 26 695126 0 1a 00 00 00 56 9b 0a 00 00 00 00 00 ....V....... +7322 20.568232775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869002 26 22 2032541 0 0x00000016 1 2032541 0 196609 0 16 00 00 00 9d 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7324 20.568496466 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541686 12 -1 695126 0 0xffffffff 0 -1 695126 0 ff ff ff ff 56 9b 0a 00 00 00 00 00 ....V....... +7326 20.605855465 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541698 12 -2 79919 79901 0xfffffffe 0 -2 79919 79901 fe ff ff ff 2f 38 01 00 1d 38 01 00 ..../8...8.. +7330 20.614098310 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541710 12 26 703594 0 0x0000001a 0 26 703594 0 1a 00 00 00 6a bc 0a 00 00 00 00 00 ....j....... +7332 20.614251137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541722 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 60751872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7338 20.614703894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869028 12 -1 703594 0 0xffffffff 0 -1 703594 0 ff ff ff ff 6a bc 0a 00 00 00 00 00 ....j....... +7340 20.615260601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869040 12 22 695127 0 0x00000016 0 22 695127 0 16 00 00 00 57 9b 0a 00 00 00 00 00 ....W....... +7342 20.615434408 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869052 22 18 2032543 0 0x00000012 1 2032543 0 196609 0 12 00 00 00 9f 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7344 20.615842819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541748 12 -1 695127 0 0xffffffff 0 -1 695127 0 ff ff ff ff 57 9b 0a 00 00 00 00 00 ....W....... +7387 20.717142344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541760 12 26 703595 0 0x0000001a 0 26 703595 0 1a 00 00 00 6b bc 0a 00 00 00 00 00 ....k....... +7389 20.717307091 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541772 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 60882944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7391 20.717782259 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869074 12 -1 703595 0 0xffffffff 0 -1 703595 0 ff ff ff ff 6b bc 0a 00 00 00 00 00 ....k....... +7393 20.718437433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869086 12 22 695128 0 0x00000016 0 22 695128 0 16 00 00 00 58 9b 0a 00 00 00 00 00 ....X....... +7395 20.718643427 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869098 22 18 2032545 0 0x00000012 1 2032545 0 196609 0 12 00 00 00 a1 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7397 20.718915224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541798 12 -1 695128 0 0xffffffff 0 -1 695128 0 ff ff ff ff 58 9b 0a 00 00 00 00 00 ....X....... +7403 20.821165323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541810 12 26 703596 0 0x0000001a 0 26 703596 0 1a 00 00 00 6c bc 0a 00 00 00 00 00 ....l....... +7405 20.821391582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541822 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 61014016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7407 20.821782351 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869120 12 -1 703596 0 0xffffffff 0 -1 703596 0 ff ff ff ff 6c bc 0a 00 00 00 00 00 ....l....... +7409 20.822260857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869132 12 22 695129 0 0x00000016 0 22 695129 0 16 00 00 00 59 9b 0a 00 00 00 00 00 ....Y....... +7411 20.822432518 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869144 22 18 2032547 0 0x00000012 1 2032547 0 196609 0 12 00 00 00 a3 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7413 20.822821379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541848 12 -1 695129 0 0xffffffff 0 -1 695129 0 ff ff ff ff 59 9b 0a 00 00 00 00 00 ....Y....... +7460 20.869639158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541860 12 34 703597 0 0x00000022 0 34 703597 0 22 00 00 00 6d bc 0a 00 00 00 00 00 """...m......." +7462 20.869797707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541872 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -3735552 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c7 ff 01 00 00 00 00 00 6b 63 0e c3 9d 01 00 00 .....!...o3...............kc...... +7464 20.869919777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541906 12 67 703598 0 0x00000043 0 67 703598 0 43 00 00 00 6e bc 0a 00 00 00 00 00 C...n....... +7466 20.870001793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541918 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c7 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 02 90 4c 92 ?.....3...|8...................=B.....&......... +7468 20.870100021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869166 12 -1 703597 0 0xffffffff 0 -1 703597 0 ff ff ff ff 6d bc 0a 00 00 00 00 00 ....m....... +7470 20.870300531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869178 12 -1 703598 0 0xffffffff 0 -1 703598 0 ff ff ff ff 6e bc 0a 00 00 00 00 00 ....n....... +7472 20.870944977 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869190 12 52 695130 0 0x00000034 0 52 695130 0 34 00 00 00 5a 9b 0a 00 00 00 00 00 4...Z....... +7474 20.871145964 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869202 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c7 ff 01 00 00 00 00 00 00 00 11 08 9f 55 4a 01 00 00 "0...Dk.................L."".([..................U" +7476 20.871396780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541985 12 -1 695130 0 0xffffffff 0 -1 695130 0 ff ff ff ff 5a 9b 0a 00 00 00 00 00 ....Z....... +7478 20.872088909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331541997 12 30 703599 0 0x0000001e 0 30 703599 0 1e 00 00 00 6f bc 0a 00 00 00 00 00 ....o....... +7480 20.872224569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542009 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 61145088 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a5 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7482 20.872515678 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869254 12 -1 703599 0 0xffffffff 0 -1 703599 0 ff ff ff ff 6f bc 0a 00 00 00 00 00 ....o....... +7484 20.873074055 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869266 12 26 695131 0 0x0000001a 0 26 695131 0 1a 00 00 00 5b 9b 0a 00 00 00 00 00 ....[....... +7486 20.873215675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869278 26 22 2032549 0 0x00000016 1 2032549 0 196609 0 16 00 00 00 a5 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7488 20.873468637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542039 12 -1 695131 0 0xffffffff 0 -1 695131 0 ff ff ff ff 5b 9b 0a 00 00 00 00 00 ....[....... +7499 20.924065828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542051 12 26 703600 0 0x0000001a 0 26 703600 0 1a 00 00 00 70 bc 0a 00 00 00 00 00 ....p....... +7502 20.924220800 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542063 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 61276160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7506 20.924779654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869304 12 -1 703600 0 0xffffffff 0 -1 703600 0 ff ff ff ff 70 bc 0a 00 00 00 00 00 ....p....... +7508 20.925318718 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869316 12 22 695132 0 0x00000016 0 22 695132 0 16 00 00 00 5c 9b 0a 00 00 00 00 00 ....\....... +7510 20.925482988 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869328 22 18 2032551 0 0x00000012 1 2032551 0 196609 0 12 00 00 00 a7 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7512 20.925788879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542089 12 -1 695132 0 0xffffffff 0 -1 695132 0 ff ff ff ff 5c 9b 0a 00 00 00 00 00 ....\....... +7561 21.027043819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542101 12 26 703601 0 0x0000001a 0 26 703601 0 1a 00 00 00 71 bc 0a 00 00 00 00 00 ....q....... +7563 21.027196407 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542113 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 61407232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7565 21.027600765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869350 12 -1 703601 0 0xffffffff 0 -1 703601 0 ff ff ff ff 71 bc 0a 00 00 00 00 00 ....q....... +7567 21.028317690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869362 12 22 695133 0 0x00000016 0 22 695133 0 16 00 00 00 5d 9b 0a 00 00 00 00 00 ....]....... +7569 21.028489590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869374 22 18 2032553 0 0x00000012 1 2032553 0 196609 0 12 00 00 00 a9 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7571 21.028834105 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542139 12 -1 695133 0 0xffffffff 0 -1 695133 0 ff ff ff ff 5d 9b 0a 00 00 00 00 00 ....]....... +7579 21.041138887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869396 12 -2 79902 79919 0xfffffffe 0 -2 79902 79919 fe ff ff ff 1e 38 01 00 2f 38 01 00 .....8../8.. +7581 21.107026339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542151 12 -2 79920 79902 0xfffffffe 0 -2 79920 79902 fe ff ff ff 30 38 01 00 1e 38 01 00 ....08...8.. +7589 21.130082846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542163 12 26 703602 0 0x0000001a 0 26 703602 0 1a 00 00 00 72 bc 0a 00 00 00 00 00 ....r....... +7591 21.130241871 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542175 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 61538304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7593 21.130555153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869408 12 -1 703602 0 0xffffffff 0 -1 703602 0 ff ff ff ff 72 bc 0a 00 00 00 00 00 ....r....... +7595 21.131472588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869420 12 22 695134 0 0x00000016 0 22 695134 0 16 00 00 00 5e 9b 0a 00 00 00 00 00 ....^....... +7597 21.131729841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869432 22 18 2032555 0 0x00000012 1 2032555 0 196609 0 12 00 00 00 ab 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7599 21.132003069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542201 12 -1 695134 0 0xffffffff 0 -1 695134 0 ff ff ff ff 5e 9b 0a 00 00 00 00 00 ....^....... +7620 21.173425674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542213 12 34 703603 0 0x00000022 0 34 703603 0 22 00 00 00 73 bc 0a 00 00 00 00 00 """...s......." +7622 21.173606396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542225 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -3670016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c8 ff 01 00 00 00 00 00 9b 64 0e c3 9d 01 00 00 .....!...o3................d...... +7624 21.173729658 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542259 12 67 703604 0 0x00000043 0 67 703604 0 43 00 00 00 74 bc 0a 00 00 00 00 00 C...t....... +7627 21.173815012 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542271 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c8 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 34 57 9f 5e 92 ?.....3...|8...................=B.....&......... +7631 21.173998833 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869454 12 -1 703603 0 0xffffffff 0 -1 703603 0 ff ff ff ff 73 bc 0a 00 00 00 00 00 ....s....... +7634 21.174189806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869466 12 -1 703604 0 0xffffffff 0 -1 703604 0 ff ff ff ff 74 bc 0a 00 00 00 00 00 ....t....... +7640 21.175472021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869478 12 52 695135 0 0x00000034 0 52 695135 0 34 00 00 00 5f 9b 0a 00 00 00 00 00 4..._....... +7642 21.175665855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869490 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c8 ff 01 00 00 00 00 00 00 00 d2 7c cd 55 4a 01 00 00 "0...Dk.................L."".([................|.U" +7644 21.175937891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542338 12 -1 695135 0 0xffffffff 0 -1 695135 0 ff ff ff ff 5f 9b 0a 00 00 00 00 00 ...._....... +7650 21.176787376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542350 12 30 703605 0 0x0000001e 0 30 703605 0 1e 00 00 00 75 bc 0a 00 00 00 00 00 ....u....... +7654 21.176981688 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542362 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 61669376 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ad 03 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7657 21.177295685 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869542 12 -1 703605 0 0xffffffff 0 -1 703605 0 ff ff ff ff 75 bc 0a 00 00 00 00 00 ....u....... +7660 21.177755594 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869554 12 26 695136 0 0x0000001a 0 26 695136 0 1a 00 00 00 60 9b 0a 00 00 00 00 00 ....`....... +7662 21.177954197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869566 26 22 2032557 0 0x00000016 1 2032557 0 196609 0 16 00 00 00 ad 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7664 21.178218126 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542392 12 -1 695136 0 0xffffffff 0 -1 695136 0 ff ff ff ff 60 9b 0a 00 00 00 00 00 ....`....... +7675 21.234165430 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542404 12 26 703606 0 0x0000001a 0 26 703606 0 1a 00 00 00 76 bc 0a 00 00 00 00 00 ....v....... +7678 21.234527111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542416 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 61800448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7680 21.234964132 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869592 12 -1 703606 0 0xffffffff 0 -1 703606 0 ff ff ff ff 76 bc 0a 00 00 00 00 00 ....v....... +7682 21.235580683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869604 12 22 695137 0 0x00000016 0 22 695137 0 16 00 00 00 61 9b 0a 00 00 00 00 00 ....a....... +7684 21.235799551 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869616 22 18 2032559 0 0x00000012 1 2032559 0 196609 0 12 00 00 00 af 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7686 21.236593485 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542442 12 -1 695137 0 0xffffffff 0 -1 695137 0 ff ff ff ff 61 9b 0a 00 00 00 00 00 ....a....... +7696 21.339090824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542454 12 26 703607 0 0x0000001a 0 26 703607 0 1a 00 00 00 77 bc 0a 00 00 00 00 00 ....w....... +7698 21.339277506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542466 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 61931520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 03 1f 00 00 00 00 00 ....T.c@.^1@.............. +7700 21.339722395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869638 12 -1 703607 0 0xffffffff 0 -1 703607 0 ff ff ff ff 77 bc 0a 00 00 00 00 00 ....w....... +7702 21.340154648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869650 12 22 695138 0 0x00000016 0 22 695138 0 16 00 00 00 62 9b 0a 00 00 00 00 00 ....b....... +7704 21.340325356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375869662 22 18 2032561 0 0x00000012 1 2032561 0 196609 0 12 00 00 00 b1 03 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7706 21.340679169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331542492 12 -1 695138 0 0xffffffff 0 -1 695138 0 ff ff ff ff 62 9b 0a 00 00 00 00 00 ....b....... diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-payload-packets.tsv b/captures/014-loopback-subscribe-array-bracketed/tcp-payload-packets.tsv new file mode 100644 index 0000000..c0cb735 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-payload-packets.tsv @@ -0,0 +1,2718 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +1 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3331518748 12 1a000000ffba0a0000000000 ............ +3 0.000204802 127.0.0.1:57415 127.0.0.1:57433 3331518760 26 16000000548f6340e25e314001000300000089011f0000000000 ....T.c@.^1@.............. +4 0.000271082 127.0.0.1:57433 127.0.0.1:57415 375850466 12 fefffffff437010005380100 .....7...8.. +10 0.000723600 127.0.0.1:57433 127.0.0.1:57415 375850478 12 ffffffffffba0a0000000000 ............ +13 0.001106977 127.0.0.1:57433 127.0.0.1:57415 375850490 12 16000000089a0a0000000000 ............ +15 0.001297474 127.0.0.1:57433 127.0.0.1:57415 375850502 22 1200000089011f000000000001000300000000000000 ...................... +17 0.001737356 127.0.0.1:57415 127.0.0.1:57433 3331518786 12 ffffffff089a0a0000000000 ............ +22 0.056278944 127.0.0.1:57415 127.0.0.1:57433 3331518798 12 feffffff06380100f4370100 .....8...7.. +31 0.102741480 127.0.0.1:57415 127.0.0.1:57433 3331518810 12 1a00000000bb0a0000000000 ............ +33 0.103049278 127.0.0.1:57415 127.0.0.1:57433 3331518822 26 16000000548f6340e25e31400100030000008b011f0000000000 ....T.c@.^1@.............. +35 0.103391647 127.0.0.1:57433 127.0.0.1:57415 375850524 12 ffffffff00bb0a0000000000 ............ +37 0.103916168 127.0.0.1:57433 127.0.0.1:57415 375850536 12 16000000099a0a0000000000 ............ +39 0.104150295 127.0.0.1:57433 127.0.0.1:57415 375850548 22 120000008b011f000000000001000300000000000000 ...................... +41 0.104442358 127.0.0.1:57415 127.0.0.1:57433 3331518848 12 ffffffff099a0a0000000000 ............ +43 0.123998404 127.0.0.1:57415 127.0.0.1:57433 3331518860 12 2200000001bb0a0000000000 "........... +45 0.124159336 127.0.0.1:57415 127.0.0.1:57433 3331518872 34 1e0000001c2118d0c46f33bb01000300000083ff01000000000061120ec39d01 .....!...o3...............a....... +47 0.124284029 127.0.0.1:57415 127.0.0.1:57433 3331518906 12 4300000002bb0a0000000000 C........... +49 0.124389172 127.0.0.1:57415 127.0.0.1:57433 3331518918 67 3f000000980433cb0cb47c38010003000000010000000083ff0100000000003d ?.....3...|8...................=B.....&......... +51 0.124529600 127.0.0.1:57433 127.0.0.1:57415 375850570 12 ffffffff01bb0a0000000000 ............ +53 0.124772072 127.0.0.1:57433 127.0.0.1:57415 375850582 12 ffffffff02bb0a0000000000 ............ +55 0.125623703 127.0.0.1:57433 127.0.0.1:57415 375850594 12 340000000a9a0a0000000000 4........... +57 0.125775099 127.0.0.1:57433 127.0.0.1:57415 375850606 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................AI +59 0.126080990 127.0.0.1:57415 127.0.0.1:57433 3331518985 12 ffffffff0a9a0a0000000000 ............ +61 0.127032995 127.0.0.1:57415 127.0.0.1:57433 3331518997 12 1e00000003bb0a0000000000 ............ +63 0.127158165 127.0.0.1:57415 127.0.0.1:57433 3331519009 30 1a00000055ceff62b21b3a500100030000008d011f000000000000000000 ....U..b..:P.................. +65 0.127496004 127.0.0.1:57433 127.0.0.1:57415 375850658 12 ffffffff03bb0a0000000000 ............ +67 0.127942562 127.0.0.1:57433 127.0.0.1:57415 375850670 12 1a0000000b9a0a0000000000 ............ +69 0.128106356 127.0.0.1:57433 127.0.0.1:57415 375850682 26 160000008d011f00000000000100030000000000000000000000 .......................... +71 0.128317356 127.0.0.1:57415 127.0.0.1:57433 3331519039 12 ffffffff0b9a0a0000000000 ............ +76 0.205768108 127.0.0.1:57415 127.0.0.1:57433 3331519051 12 1a00000004bb0a0000000000 ............ +78 0.205999136 127.0.0.1:57415 127.0.0.1:57433 3331519063 26 16000000548f6340e25e31400100030000008f011f0000000000 ....T.c@.^1@.............. +80 0.206380367 127.0.0.1:57433 127.0.0.1:57415 375850708 12 ffffffff04bb0a0000000000 ............ +82 0.207089424 127.0.0.1:57433 127.0.0.1:57415 375850720 12 160000000c9a0a0000000000 ............ +84 0.207308054 127.0.0.1:57433 127.0.0.1:57415 375850732 22 120000008f011f000000000001000300000000000000 ...................... +86 0.207585096 127.0.0.1:57415 127.0.0.1:57433 3331519089 12 ffffffff0c9a0a0000000000 ............ +90 0.309690714 127.0.0.1:57415 127.0.0.1:57433 3331519101 12 1a00000005bb0a0000000000 ............ +92 0.309887886 127.0.0.1:57415 127.0.0.1:57433 3331519113 26 16000000548f6340e25e314001000300000091011f0000000000 ....T.c@.^1@.............. +94 0.310305595 127.0.0.1:57433 127.0.0.1:57415 375850754 12 ffffffff05bb0a0000000000 ............ +96 0.310801983 127.0.0.1:57433 127.0.0.1:57415 375850766 12 160000000d9a0a0000000000 ............ +98 0.310976982 127.0.0.1:57433 127.0.0.1:57415 375850778 22 1200000091011f000000000001000300000000000000 ...................... +100 0.311137199 127.0.0.1:57415 127.0.0.1:57433 3331519139 12 ffffffff0d9a0a0000000000 ............ +104 0.412543535 127.0.0.1:57415 127.0.0.1:57433 3331519151 12 1a00000006bb0a0000000000 ............ +106 0.412753344 127.0.0.1:57415 127.0.0.1:57433 3331519163 26 16000000548f6340e25e314001000300000093011f0000000000 ....T.c@.^1@.............. +108 0.413258791 127.0.0.1:57433 127.0.0.1:57415 375850800 12 ffffffff06bb0a0000000000 ............ +110 0.413802385 127.0.0.1:57433 127.0.0.1:57415 375850812 12 160000000e9a0a0000000000 ............ +112 0.414075136 127.0.0.1:57433 127.0.0.1:57415 375850824 22 1200000093011f000000000001000300000000000000 ...................... +114 0.414361954 127.0.0.1:57415 127.0.0.1:57433 3331519189 12 ffffffff0e9a0a0000000000 ............ +116 0.429987192 127.0.0.1:57415 127.0.0.1:57433 3331519201 12 2200000007bb0a0000000000 "........... +118 0.430153608 127.0.0.1:57415 127.0.0.1:57433 3331519213 34 1e0000001c2118d0c46f33bb01000300000084ff01000000000093130ec39d01 .....!...o3....................... +120 0.430257559 127.0.0.1:57415 127.0.0.1:57433 3331519247 12 4300000008bb0a0000000000 C........... +122 0.430342197 127.0.0.1:57415 127.0.0.1:57433 3331519259 67 3f000000980433cb0cb47c38010003000000010000000084ff0100000000003d ?.....3...|8...................=B.....&......... +123 0.430431366 127.0.0.1:57433 127.0.0.1:57415 375850846 12 ffffffff07bb0a0000000000 ............ +125 0.430614710 127.0.0.1:57433 127.0.0.1:57415 375850858 12 ffffffff08bb0a0000000000 ............ +127 0.431855917 127.0.0.1:57433 127.0.0.1:57415 375850870 12 340000000f9a0a0000000000 4........... +129 0.432088852 127.0.0.1:57433 127.0.0.1:57415 375850882 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................FpI +131 0.432354689 127.0.0.1:57415 127.0.0.1:57433 3331519326 12 ffffffff0f9a0a0000000000 ............ +133 0.433228731 127.0.0.1:57415 127.0.0.1:57433 3331519338 12 1e00000009bb0a0000000000 ............ +135 0.433388233 127.0.0.1:57415 127.0.0.1:57433 3331519350 30 1a00000055ceff62b21b3a5001000300000095011f000000000000000000 ....U..b..:P.................. +137 0.433684826 127.0.0.1:57433 127.0.0.1:57415 375850934 12 ffffffff09bb0a0000000000 ............ +139 0.434038639 127.0.0.1:57433 127.0.0.1:57415 375850946 12 1a000000109a0a0000000000 ............ +141 0.434281588 127.0.0.1:57433 127.0.0.1:57415 375850958 26 1600000095011f00000000000100030000000000000000000000 .......................... +143 0.434596777 127.0.0.1:57415 127.0.0.1:57433 3331519380 12 ffffffff109a0a0000000000 ............ +145 0.501639605 127.0.0.1:57433 127.0.0.1:57415 375850984 12 fefffffff537010006380100 .....7...8.. +153 0.517818689 127.0.0.1:57415 127.0.0.1:57433 3331519392 12 1a0000000abb0a0000000000 ............ +155 0.518125772 127.0.0.1:57415 127.0.0.1:57433 3331519404 26 16000000548f6340e25e314001000300000097011f0000000000 ....T.c@.^1@.............. +157 0.518609285 127.0.0.1:57433 127.0.0.1:57415 375850996 12 ffffffff0abb0a0000000000 ............ +159 0.519209862 127.0.0.1:57433 127.0.0.1:57415 375851008 12 16000000119a0a0000000000 ............ +161 0.519432545 127.0.0.1:57433 127.0.0.1:57415 375851020 22 1200000097011f000000000001000300000000000000 ...................... +163 0.519840479 127.0.0.1:57415 127.0.0.1:57433 3331519430 12 ffffffff119a0a0000000000 ............ +166 0.557617188 127.0.0.1:57415 127.0.0.1:57433 3331519442 12 feffffff07380100f5370100 .....8...7.. +175 0.621546984 127.0.0.1:57415 127.0.0.1:57433 3331519454 12 1a0000000bbb0a0000000000 ............ +177 0.621851444 127.0.0.1:57415 127.0.0.1:57433 3331519466 26 16000000548f6340e25e314001000300000099011f0000000000 ....T.c@.^1@.............. +179 0.622211218 127.0.0.1:57433 127.0.0.1:57415 375851042 12 ffffffff0bbb0a0000000000 ............ +181 0.624629736 127.0.0.1:57433 127.0.0.1:57415 375851054 12 16000000129a0a0000000000 ............ +183 0.624902010 127.0.0.1:57433 127.0.0.1:57415 375851066 22 1200000099011f000000000001000300000000000000 ...................... +185 0.625295639 127.0.0.1:57415 127.0.0.1:57433 3331519492 12 ffffffff129a0a0000000000 ............ +221 0.727348089 127.0.0.1:57415 127.0.0.1:57433 3331519504 12 1a0000000cbb0a0000000000 ............ +223 0.727540016 127.0.0.1:57415 127.0.0.1:57433 3331519516 26 16000000548f6340e25e31400100030000009b011f0000000000 ....T.c@.^1@.............. +225 0.728018045 127.0.0.1:57433 127.0.0.1:57415 375851088 12 ffffffff0cbb0a0000000000 ............ +227 0.728573799 127.0.0.1:57433 127.0.0.1:57415 375851100 12 16000000139a0a0000000000 ............ +229 0.728834629 127.0.0.1:57433 127.0.0.1:57415 375851112 22 120000009b011f000000000001000300000000000000 ...................... +231 0.729160786 127.0.0.1:57415 127.0.0.1:57433 3331519542 12 ffffffff139a0a0000000000 ............ +233 0.734699249 127.0.0.1:57415 127.0.0.1:57433 3331519554 12 220000000dbb0a0000000000 "........... +235 0.734871626 127.0.0.1:57415 127.0.0.1:57433 3331519566 34 1e0000001c2118d0c46f33bb01000300000085ff010000000000c4140ec39d01 .....!...o3....................... +237 0.735013008 127.0.0.1:57415 127.0.0.1:57433 3331519600 12 430000000ebb0a0000000000 C........... +239 0.735101461 127.0.0.1:57415 127.0.0.1:57433 3331519612 67 3f000000980433cb0cb47c38010003000000010000000085ff0100000000003d ?.....3...|8...................=B.....&......... +241 0.735251665 127.0.0.1:57433 127.0.0.1:57415 375851134 12 ffffffff0dbb0a0000000000 ............ +243 0.735477686 127.0.0.1:57433 127.0.0.1:57415 375851146 12 ffffffff0ebb0a0000000000 ............ +245 0.736483335 127.0.0.1:57433 127.0.0.1:57415 375851158 12 34000000149a0a0000000000 4........... +247 0.736724377 127.0.0.1:57433 127.0.0.1:57415 375851170 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............c..I +249 0.737763166 127.0.0.1:57415 127.0.0.1:57433 3331519679 12 ffffffff149a0a0000000000 ............ +251 0.738430977 127.0.0.1:57415 127.0.0.1:57433 3331519691 12 1e0000000fbb0a0000000000 ............ +253 0.738635778 127.0.0.1:57415 127.0.0.1:57433 3331519703 30 1a00000055ceff62b21b3a500100030000009d011f000000000000000000 ....U..b..:P.................. +255 0.738903284 127.0.0.1:57433 127.0.0.1:57415 375851222 12 ffffffff0fbb0a0000000000 ............ +257 0.739291906 127.0.0.1:57433 127.0.0.1:57415 375851234 12 1a000000159a0a0000000000 ............ +259 0.739433050 127.0.0.1:57433 127.0.0.1:57415 375851246 26 160000009d011f00000000000100030000000000000000000000 .......................... +261 0.739736557 127.0.0.1:57415 127.0.0.1:57433 3331519733 12 ffffffff159a0a0000000000 ............ +263 0.830963373 127.0.0.1:57415 127.0.0.1:57433 3331519745 12 1a00000010bb0a0000000000 ............ +265 0.831229448 127.0.0.1:57415 127.0.0.1:57433 3331519757 26 16000000548f6340e25e31400100030000009f011f0000000000 ....T.c@.^1@.............. +267 0.831725836 127.0.0.1:57433 127.0.0.1:57415 375851272 12 ffffffff10bb0a0000000000 ............ +269 0.832339764 127.0.0.1:57433 127.0.0.1:57415 375851284 12 16000000169a0a0000000000 ............ +271 0.832492352 127.0.0.1:57433 127.0.0.1:57415 375851296 22 120000009f011f000000000001000300000000000000 ...................... +273 0.832751989 127.0.0.1:57415 127.0.0.1:57433 3331519783 12 ffffffff169a0a0000000000 ............ +277 0.935188293 127.0.0.1:57415 127.0.0.1:57433 3331519795 12 1a00000011bb0a0000000000 ............ +279 0.935415983 127.0.0.1:57415 127.0.0.1:57433 3331519807 26 16000000548f6340e25e3140010003000000a1011f0000000000 ....T.c@.^1@.............. +281 0.935736656 127.0.0.1:57433 127.0.0.1:57415 375851318 12 ffffffff11bb0a0000000000 ............ +283 0.936384916 127.0.0.1:57433 127.0.0.1:57415 375851330 12 16000000179a0a0000000000 ............ +285 0.936555862 127.0.0.1:57433 127.0.0.1:57415 375851342 22 12000000a1011f000000000001000300000000000000 ...................... +287 0.936822176 127.0.0.1:57415 127.0.0.1:57433 3331519833 12 ffffffff179a0a0000000000 ............ +289 1.004003525 127.0.0.1:57433 127.0.0.1:57415 375851364 12 fefffffff637010007380100 .....7...8.. +297 1.038048267 127.0.0.1:57415 127.0.0.1:57433 3331519845 12 1a00000012bb0a0000000000 ............ +299 1.038243771 127.0.0.1:57415 127.0.0.1:57433 3331519857 26 16000000548f6340e25e3140010003000000a3011f0000000000 ....T.c@.^1@.............. +301 1.038732052 127.0.0.1:57433 127.0.0.1:57415 375851376 12 ffffffff12bb0a0000000000 ............ +303 1.039181232 127.0.0.1:57433 127.0.0.1:57415 375851388 12 16000000189a0a0000000000 ............ +305 1.039386272 127.0.0.1:57433 127.0.0.1:57415 375851400 22 12000000a3011f000000000001000300000000000000 ...................... +307 1.039831877 127.0.0.1:57415 127.0.0.1:57433 3331519883 12 ffffffff189a0a0000000000 ............ +309 1.040170670 127.0.0.1:57415 127.0.0.1:57433 3331519895 12 2200000013bb0a0000000000 "........... +311 1.040360689 127.0.0.1:57415 127.0.0.1:57433 3331519907 34 1e0000001c2118d0c46f33bb01000300000086ff010000000000f5150ec39d01 .....!...o3....................... +313 1.040484905 127.0.0.1:57415 127.0.0.1:57433 3331519941 12 4300000014bb0a0000000000 C........... +315 1.040569305 127.0.0.1:57415 127.0.0.1:57433 3331519953 67 3f000000980433cb0cb47c38010003000000010000000086ff0100000000003d ?.....3...|8...................=B.....&......... +317 1.040725231 127.0.0.1:57433 127.0.0.1:57415 375851422 12 ffffffff13bb0a0000000000 ............ +319 1.040969610 127.0.0.1:57433 127.0.0.1:57415 375851434 12 ffffffff14bb0a0000000000 ............ +321 1.042226076 127.0.0.1:57433 127.0.0.1:57415 375851446 12 34000000199a0a0000000000 4........... +323 1.042448997 127.0.0.1:57433 127.0.0.1:57415 375851458 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................f.I +325 1.042739868 127.0.0.1:57415 127.0.0.1:57433 3331520020 12 ffffffff199a0a0000000000 ............ +327 1.043665648 127.0.0.1:57415 127.0.0.1:57433 3331520032 12 1e00000015bb0a0000000000 ............ +329 1.043807983 127.0.0.1:57415 127.0.0.1:57433 3331520044 30 1a00000055ceff62b21b3a50010003000000a5011f000000000000000000 ....U..b..:P.................. +331 1.044101715 127.0.0.1:57433 127.0.0.1:57415 375851510 12 ffffffff15bb0a0000000000 ............ +333 1.044611692 127.0.0.1:57433 127.0.0.1:57415 375851522 12 1a0000001a9a0a0000000000 ............ +335 1.044818401 127.0.0.1:57433 127.0.0.1:57415 375851534 26 16000000a5011f00000000000100030000000000000000000000 .......................... +337 1.045134783 127.0.0.1:57415 127.0.0.1:57433 3331520074 12 ffffffff1a9a0a0000000000 ............ +340 1.059837818 127.0.0.1:57415 127.0.0.1:57433 3331520086 12 feffffff08380100f6370100 .....8...7.. +349 1.142136812 127.0.0.1:57415 127.0.0.1:57433 3331520098 12 1a00000016bb0a0000000000 ............ +351 1.142388344 127.0.0.1:57415 127.0.0.1:57433 3331520110 26 16000000548f6340e25e3140010003000000a7011f0000000000 ....T.c@.^1@.............. +353 1.142786264 127.0.0.1:57433 127.0.0.1:57415 375851560 12 ffffffff16bb0a0000000000 ............ +355 1.143617392 127.0.0.1:57433 127.0.0.1:57415 375851572 12 160000001b9a0a0000000000 ............ +357 1.143842697 127.0.0.1:57433 127.0.0.1:57415 375851584 22 12000000a7011f000000000001000300000000000000 ...................... +359 1.144146204 127.0.0.1:57415 127.0.0.1:57433 3331520136 12 ffffffff1b9a0a0000000000 ............ +384 1.246142864 127.0.0.1:57415 127.0.0.1:57433 3331520148 12 1a00000017bb0a0000000000 ............ +386 1.246474266 127.0.0.1:57415 127.0.0.1:57433 3331520160 26 16000000548f6340e25e3140010003000000a9011f0000000000 ....T.c@.^1@.............. +388 1.246900082 127.0.0.1:57433 127.0.0.1:57415 375851606 12 ffffffff17bb0a0000000000 ............ +390 1.247588396 127.0.0.1:57433 127.0.0.1:57415 375851618 12 160000001c9a0a0000000000 ............ +392 1.247752190 127.0.0.1:57433 127.0.0.1:57415 375851630 22 12000000a9011f000000000001000300000000000000 ...................... +394 1.247969866 127.0.0.1:57415 127.0.0.1:57433 3331520186 12 ffffffff1c9a0a0000000000 ............ +396 1.346567631 127.0.0.1:57415 127.0.0.1:57433 3331520198 12 6500000018bb0a0000000000 e........... +398 1.346757889 127.0.0.1:57415 127.0.0.1:57433 3331520210 101 1e0000001c2118d0c46f33bb01000300000087ff01000000000027170ec39d01 .....!...o3...............'.......?.....3...|8.. +400 1.347187996 127.0.0.1:57433 127.0.0.1:57415 375851652 12 ffffffff18bb0a0000000000 ............ +402 1.348354340 127.0.0.1:57433 127.0.0.1:57415 375851664 12 340000001d9a0a0000000000 4........... +404 1.348550081 127.0.0.1:57433 127.0.0.1:57415 375851676 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................I +406 1.348823071 127.0.0.1:57415 127.0.0.1:57433 3331520311 12 ffffffff1d9a0a0000000000 ............ +408 1.349054575 127.0.0.1:57415 127.0.0.1:57433 3331520323 12 1a00000019bb0a0000000000 ............ +410 1.349259138 127.0.0.1:57415 127.0.0.1:57433 3331520335 26 16000000548f6340e25e3140010003000000ab011f0000000000 ....T.c@.^1@.............. +412 1.349694252 127.0.0.1:57433 127.0.0.1:57415 375851728 12 ffffffff19bb0a0000000000 ............ +414 1.349862099 127.0.0.1:57415 127.0.0.1:57433 3331520361 12 1e0000001abb0a0000000000 ............ +416 1.350073576 127.0.0.1:57415 127.0.0.1:57433 3331520373 30 1a00000055ceff62b21b3a50010003000000ad011f000000000000000000 ....U..b..:P.................. +417 1.350206852 127.0.0.1:57433 127.0.0.1:57415 375851740 34 160000001e9a0a000000000012000000ab011f00000000000100030000000000 .................................. +419 1.350610495 127.0.0.1:57415 127.0.0.1:57433 3331520403 12 ffffffff1e9a0a0000000000 ............ +420 1.350635052 127.0.0.1:57433 127.0.0.1:57415 375851774 12 ffffffff1abb0a0000000000 ............ +423 1.351093769 127.0.0.1:57433 127.0.0.1:57415 375851786 12 1a0000001f9a0a0000000000 ............ +425 1.351255655 127.0.0.1:57433 127.0.0.1:57415 375851798 26 16000000ad011f00000000000100030000000000000000000000 .......................... +427 1.351539373 127.0.0.1:57415 127.0.0.1:57433 3331520415 12 ffffffff1f9a0a0000000000 ............ +431 1.453394413 127.0.0.1:57415 127.0.0.1:57433 3331520427 12 1a0000001bbb0a0000000000 ............ +433 1.453636885 127.0.0.1:57415 127.0.0.1:57433 3331520439 26 16000000548f6340e25e3140010003000000af011f0000000000 ....T.c@.^1@.............. +435 1.454126120 127.0.0.1:57433 127.0.0.1:57415 375851824 12 ffffffff1bbb0a0000000000 ............ +437 1.454673290 127.0.0.1:57433 127.0.0.1:57415 375851836 12 16000000209a0a0000000000 .... ....... +439 1.454862356 127.0.0.1:57433 127.0.0.1:57415 375851848 22 12000000af011f000000000001000300000000000000 ...................... +441 1.455205679 127.0.0.1:57415 127.0.0.1:57433 3331520465 12 ffffffff209a0a0000000000 .... ....... +444 1.504696369 127.0.0.1:57433 127.0.0.1:57415 375851870 12 fefffffff737010008380100 .....7...8.. +451 1.556973457 127.0.0.1:57415 127.0.0.1:57433 3331520477 12 1a0000001cbb0a0000000000 ............ +453 1.557387114 127.0.0.1:57415 127.0.0.1:57433 3331520489 26 16000000548f6340e25e3140010003000000b1011f0000000000 ....T.c@.^1@.............. +455 1.557774544 127.0.0.1:57433 127.0.0.1:57415 375851882 12 ffffffff1cbb0a0000000000 ............ +457 1.558233500 127.0.0.1:57433 127.0.0.1:57415 375851894 12 16000000219a0a0000000000 ....!....... +459 1.558633566 127.0.0.1:57433 127.0.0.1:57415 375851906 22 12000000b1011f000000000001000300000000000000 ...................... +461 1.559029579 127.0.0.1:57415 127.0.0.1:57433 3331520515 12 ffffffff219a0a0000000000 ....!....... +463 1.560479164 127.0.0.1:57415 127.0.0.1:57433 3331520527 12 feffffff09380100f7370100 .....8...7.. +482 1.651059389 127.0.0.1:57415 127.0.0.1:57433 3331520539 12 650000001dbb0a0000000000 e........... +484 1.651257515 127.0.0.1:57415 127.0.0.1:57433 3331520551 101 1e0000001c2118d0c46f33bb01000300000088ff01000000000058180ec39d01 .....!...o3...............X.......?.....3...|8.. +486 1.651665926 127.0.0.1:57433 127.0.0.1:57415 375851928 12 ffffffff1dbb0a0000000000 ............ +488 1.652653933 127.0.0.1:57433 127.0.0.1:57415 375851940 12 34000000229a0a0000000000 4..."....... +490 1.652855873 127.0.0.1:57433 127.0.0.1:57415 375851952 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................*J +492 1.653181076 127.0.0.1:57415 127.0.0.1:57433 3331520652 12 ffffffff229a0a0000000000 ...."....... +496 1.653933525 127.0.0.1:57415 127.0.0.1:57433 3331520664 12 1e0000001ebb0a0000000000 ............ +498 1.654076576 127.0.0.1:57415 127.0.0.1:57433 3331520676 30 1a00000055ceff62b21b3a50010003000000b3011f000000000000000000 ....U..b..:P.................. +500 1.654375553 127.0.0.1:57433 127.0.0.1:57415 375852004 12 ffffffff1ebb0a0000000000 ............ +502 1.654950380 127.0.0.1:57433 127.0.0.1:57415 375852016 12 1a000000239a0a0000000000 ....#....... +504 1.655161619 127.0.0.1:57433 127.0.0.1:57415 375852028 26 16000000b3011f00000000000100030000000000000000000000 .......................... +506 1.655500174 127.0.0.1:57415 127.0.0.1:57433 3331520706 12 ffffffff239a0a0000000000 ....#....... +508 1.660552979 127.0.0.1:57415 127.0.0.1:57433 3331520718 12 1a0000001fbb0a0000000000 ............ +510 1.660704374 127.0.0.1:57415 127.0.0.1:57433 3331520730 26 16000000548f6340e25e3140010003000000b5011f0000000000 ....T.c@.^1@.............. +512 1.661127090 127.0.0.1:57433 127.0.0.1:57415 375852054 12 ffffffff1fbb0a0000000000 ............ +514 1.661388636 127.0.0.1:57433 127.0.0.1:57415 375852066 12 16000000249a0a0000000000 ....$....... +516 1.661542654 127.0.0.1:57433 127.0.0.1:57415 375852078 22 12000000b5011f000000000001000300000000000000 ...................... +518 1.662345648 127.0.0.1:57415 127.0.0.1:57433 3331520756 12 ffffffff249a0a0000000000 ....$....... +524 1.764795542 127.0.0.1:57415 127.0.0.1:57433 3331520768 12 1a00000020bb0a0000000000 .... ....... +526 1.765036583 127.0.0.1:57415 127.0.0.1:57433 3331520780 26 16000000548f6340e25e3140010003000000b7011f0000000000 ....T.c@.^1@.............. +528 1.765517712 127.0.0.1:57433 127.0.0.1:57415 375852100 12 ffffffff20bb0a0000000000 .... ....... +530 1.765992165 127.0.0.1:57433 127.0.0.1:57415 375852112 12 16000000259a0a0000000000 ....%....... +532 1.766209126 127.0.0.1:57433 127.0.0.1:57415 375852124 22 12000000b7011f000000000001000300000000000000 ...................... +534 1.766487122 127.0.0.1:57415 127.0.0.1:57433 3331520806 12 ffffffff259a0a0000000000 ....%....... +622 1.869161844 127.0.0.1:57415 127.0.0.1:57433 3331520818 12 1a00000021bb0a0000000000 ....!....... +624 1.869381666 127.0.0.1:57415 127.0.0.1:57433 3331520830 26 16000000548f6340e25e3140010003000000b9011f0000000000 ....T.c@.^1@.............. +626 1.869717121 127.0.0.1:57433 127.0.0.1:57415 375852146 12 ffffffff21bb0a0000000000 ....!....... +628 1.870203257 127.0.0.1:57433 127.0.0.1:57415 375852158 12 16000000269a0a0000000000 ....&....... +630 1.870402336 127.0.0.1:57433 127.0.0.1:57415 375852170 22 12000000b9011f000000000001000300000000000000 ...................... +632 1.870731592 127.0.0.1:57415 127.0.0.1:57433 3331520856 12 ffffffff269a0a0000000000 ....&....... +696 1.955416441 127.0.0.1:57415 127.0.0.1:57433 3331520868 12 6500000022bb0a0000000000 e..."....... +698 1.955632210 127.0.0.1:57415 127.0.0.1:57433 3331520880 101 1e0000001c2118d0c46f33bb01000300000089ff01000000000088190ec39d01 .....!...o3.......................?.....3...|8.. +700 1.956113100 127.0.0.1:57433 127.0.0.1:57415 375852192 12 ffffffff22bb0a0000000000 ...."....... +702 1.957590818 127.0.0.1:57433 127.0.0.1:57415 375852204 12 34000000279a0a0000000000 4...'....... +704 1.957772017 127.0.0.1:57433 127.0.0.1:57415 375852216 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................YJ +706 1.958044767 127.0.0.1:57415 127.0.0.1:57433 3331520981 12 ffffffff279a0a0000000000 ....'....... +708 1.959254742 127.0.0.1:57415 127.0.0.1:57433 3331520993 12 1e00000023bb0a0000000000 ....#....... +710 1.959462404 127.0.0.1:57415 127.0.0.1:57433 3331521005 30 1a00000055ceff62b21b3a50010003000000bb011f000000000000000000 ....U..b..:P.................. +712 1.959745884 127.0.0.1:57433 127.0.0.1:57415 375852268 12 ffffffff23bb0a0000000000 ....#....... +714 1.960255861 127.0.0.1:57433 127.0.0.1:57415 375852280 12 1a000000289a0a0000000000 ....(....... +716 1.960463285 127.0.0.1:57433 127.0.0.1:57415 375852292 26 16000000bb011f00000000000100030000000000000000000000 .......................... +718 1.960694075 127.0.0.1:57415 127.0.0.1:57433 3331521035 12 ffffffff289a0a0000000000 ....(....... +730 1.972881794 127.0.0.1:57415 127.0.0.1:57433 3331521047 12 1a00000024bb0a0000000000 ....$....... +732 1.973036051 127.0.0.1:57415 127.0.0.1:57433 3331521059 26 16000000548f6340e25e3140010003000000bd011f0000000000 ....T.c@.^1@.............. +734 1.973448753 127.0.0.1:57433 127.0.0.1:57415 375852318 12 ffffffff24bb0a0000000000 ....$....... +737 1.973799944 127.0.0.1:57433 127.0.0.1:57415 375852330 12 16000000299a0a0000000000 ....)....... +742 1.973961353 127.0.0.1:57433 127.0.0.1:57415 375852342 22 12000000bd011f000000000001000300000000000000 ...................... +746 1.974272490 127.0.0.1:57415 127.0.0.1:57433 3331521085 12 ffffffff299a0a0000000000 ....)....... +800 2.006266832 127.0.0.1:57433 127.0.0.1:57415 375852364 12 fefffffff837010009380100 .....7...8.. +808 2.061663866 127.0.0.1:57415 127.0.0.1:57433 3331521097 12 feffffff0a380100f8370100 .....8...7.. +812 2.075835466 127.0.0.1:57415 127.0.0.1:57433 3331521109 12 1a00000025bb0a0000000000 ....%....... +814 2.076029539 127.0.0.1:57415 127.0.0.1:57433 3331521121 26 16000000548f6340e25e3140010003000000bf011f0000000000 ....T.c@.^1@.............. +816 2.076501608 127.0.0.1:57433 127.0.0.1:57415 375852376 12 ffffffff25bb0a0000000000 ....%....... +818 2.077010870 127.0.0.1:57433 127.0.0.1:57415 375852388 12 160000002a9a0a0000000000 ....*....... +820 2.077153683 127.0.0.1:57433 127.0.0.1:57415 375852400 22 12000000bf011f000000000001000300000000000000 ...................... +822 2.077444553 127.0.0.1:57415 127.0.0.1:57433 3331521147 12 ffffffff2a9a0a0000000000 ....*....... +898 2.178887367 127.0.0.1:57415 127.0.0.1:57433 3331521159 12 1a00000026bb0a0000000000 ....&....... +900 2.179092169 127.0.0.1:57415 127.0.0.1:57433 3331521171 26 16000000548f6340e25e3140010003000000c1011f0000000000 ....T.c@.^1@.............. +902 2.179625511 127.0.0.1:57433 127.0.0.1:57415 375852422 12 ffffffff26bb0a0000000000 ....&....... +904 2.180249691 127.0.0.1:57433 127.0.0.1:57415 375852434 12 160000002b9a0a0000000000 ....+....... +906 2.180443764 127.0.0.1:57433 127.0.0.1:57415 375852446 22 12000000c1011f000000000001000300000000000000 ...................... +908 2.180720568 127.0.0.1:57415 127.0.0.1:57433 3331521197 12 ffffffff2b9a0a0000000000 ....+....... +990 2.260073185 127.0.0.1:57415 127.0.0.1:57433 3331521209 12 2200000027bb0a0000000000 "...'....... +992 2.260284662 127.0.0.1:57415 127.0.0.1:57433 3331521221 34 1e0000001c2118d0c46f33bb0100030000008aff010000000000b91a0ec39d01 .....!...o3....................... +994 2.260406733 127.0.0.1:57415 127.0.0.1:57433 3331521255 12 4300000028bb0a0000000000 C...(....... +996 2.260490656 127.0.0.1:57415 127.0.0.1:57433 3331521267 67 3f000000980433cb0cb47c3801000300000001000000008aff0100000000003d ?.....3...|8...................=B.....&......... +998 2.260614395 127.0.0.1:57433 127.0.0.1:57415 375852468 12 ffffffff27bb0a0000000000 ....'....... +1000 2.260811567 127.0.0.1:57433 127.0.0.1:57415 375852480 12 ffffffff28bb0a0000000000 ....(....... +1002 2.262336016 127.0.0.1:57433 127.0.0.1:57415 375852492 12 340000002c9a0a0000000000 4...,....... +1004 2.262528181 127.0.0.1:57433 127.0.0.1:57415 375852504 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................J +1006 2.262803793 127.0.0.1:57415 127.0.0.1:57433 3331521334 12 ffffffff2c9a0a0000000000 ....,....... +1008 2.263519526 127.0.0.1:57415 127.0.0.1:57433 3331521346 12 1e00000029bb0a0000000000 ....)....... +1010 2.263656378 127.0.0.1:57415 127.0.0.1:57433 3331521358 30 1a00000055ceff62b21b3a50010003000000c3011f000000000000000000 ....U..b..:P.................. +1012 2.263899088 127.0.0.1:57433 127.0.0.1:57415 375852556 12 ffffffff29bb0a0000000000 ....)....... +1014 2.264355898 127.0.0.1:57433 127.0.0.1:57415 375852568 12 1a0000002d9a0a0000000000 ....-....... +1016 2.264612913 127.0.0.1:57433 127.0.0.1:57415 375852580 26 16000000c3011f00000000000100030000000000000000000000 .......................... +1018 2.265027285 127.0.0.1:57415 127.0.0.1:57433 3331521388 12 ffffffff2d9a0a0000000000 ....-....... +1020 2.283540964 127.0.0.1:57415 127.0.0.1:57433 3331521400 12 1a0000002abb0a0000000000 ....*....... +1022 2.283680201 127.0.0.1:57415 127.0.0.1:57433 3331521412 26 16000000548f6340e25e3140010003000000c5011f0000000000 ....T.c@.^1@.............. +1024 2.284048080 127.0.0.1:57433 127.0.0.1:57415 375852606 12 ffffffff2abb0a0000000000 ....*....... +1026 2.284509659 127.0.0.1:57433 127.0.0.1:57415 375852618 12 160000002e9a0a0000000000 ............ +1028 2.284676790 127.0.0.1:57433 127.0.0.1:57415 375852630 22 12000000c5011f000000000001000300000000000000 ...................... +1030 2.284950018 127.0.0.1:57415 127.0.0.1:57433 3331521438 12 ffffffff2e9a0a0000000000 ............ +1032 2.387019157 127.0.0.1:57415 127.0.0.1:57433 3331521450 12 1a0000002bbb0a0000000000 ....+....... +1034 2.387233973 127.0.0.1:57415 127.0.0.1:57433 3331521462 26 16000000548f6340e25e3140010003000000c7011f0000000000 ....T.c@.^1@.............. +1036 2.387640238 127.0.0.1:57433 127.0.0.1:57415 375852652 12 ffffffff2bbb0a0000000000 ....+....... +1038 2.388184071 127.0.0.1:57433 127.0.0.1:57415 375852664 12 160000002f9a0a0000000000 ..../....... +1040 2.388368607 127.0.0.1:57433 127.0.0.1:57415 375852676 22 12000000c7011f000000000001000300000000000000 ...................... +1042 2.388661861 127.0.0.1:57415 127.0.0.1:57433 3331521488 12 ffffffff2f9a0a0000000000 ..../....... +1076 2.489962101 127.0.0.1:57415 127.0.0.1:57433 3331521500 12 1a0000002cbb0a0000000000 ....,....... +1078 2.490191936 127.0.0.1:57415 127.0.0.1:57433 3331521512 26 16000000548f6340e25e3140010003000000c9011f0000000000 ....T.c@.^1@.............. +1080 2.490552187 127.0.0.1:57433 127.0.0.1:57415 375852698 12 ffffffff2cbb0a0000000000 ....,....... +1082 2.491017580 127.0.0.1:57433 127.0.0.1:57415 375852710 12 16000000309a0a0000000000 ....0....... +1084 2.491275549 127.0.0.1:57433 127.0.0.1:57415 375852722 22 12000000c9011f000000000001000300000000000000 ...................... +1086 2.491575003 127.0.0.1:57415 127.0.0.1:57433 3331521538 12 ffffffff309a0a0000000000 ....0....... +1093 2.508591652 127.0.0.1:57433 127.0.0.1:57415 375852744 12 fefffffff93701000a380100 .....7...8.. +1097 2.563622236 127.0.0.1:57415 127.0.0.1:57433 3331521550 12 feffffff0b380100f9370100 .....8...7.. +1100 2.564417839 127.0.0.1:57415 127.0.0.1:57433 3331521562 12 650000002dbb0a0000000000 e...-....... +1102 2.564583063 127.0.0.1:57415 127.0.0.1:57433 3331521574 101 1e0000001c2118d0c46f33bb0100030000008bff010000000000ea1b0ec39d01 .....!...o3.......................?.....3...|8.. +1104 2.565053225 127.0.0.1:57433 127.0.0.1:57415 375852756 12 ffffffff2dbb0a0000000000 ....-....... +1106 2.566027641 127.0.0.1:57433 127.0.0.1:57415 375852768 12 34000000319a0a0000000000 4...1....... +1108 2.566235065 127.0.0.1:57433 127.0.0.1:57415 375852780 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............m..J +1110 2.566621304 127.0.0.1:57415 127.0.0.1:57433 3331521675 12 ffffffff319a0a0000000000 ....1....... +1112 2.567468643 127.0.0.1:57415 127.0.0.1:57433 3331521687 12 1e0000002ebb0a0000000000 ............ +1114 2.567681074 127.0.0.1:57415 127.0.0.1:57433 3331521699 30 1a00000055ceff62b21b3a50010003000000cb011f000000000000000000 ....U..b..:P.................. +1116 2.567987919 127.0.0.1:57433 127.0.0.1:57415 375852832 12 ffffffff2ebb0a0000000000 ............ +1118 2.568454027 127.0.0.1:57433 127.0.0.1:57415 375852844 12 1a000000329a0a0000000000 ....2....... +1120 2.568680048 127.0.0.1:57433 127.0.0.1:57415 375852856 26 16000000cb011f00000000000100030000000000000000000000 .......................... +1122 2.568954706 127.0.0.1:57415 127.0.0.1:57433 3331521729 12 ffffffff329a0a0000000000 ....2....... +1130 2.593693256 127.0.0.1:57415 127.0.0.1:57433 3331521741 12 1a0000002fbb0a0000000000 ..../....... +1132 2.593855381 127.0.0.1:57415 127.0.0.1:57433 3331521753 26 16000000548f6340e25e3140010003000000cd011f0000000000 ....T.c@.^1@.............. +1134 2.594210148 127.0.0.1:57433 127.0.0.1:57415 375852882 12 ffffffff2fbb0a0000000000 ..../....... +1136 2.594617605 127.0.0.1:57433 127.0.0.1:57415 375852894 12 16000000339a0a0000000000 ....3....... +1138 2.594776630 127.0.0.1:57433 127.0.0.1:57415 375852906 22 12000000cd011f000000000001000300000000000000 ...................... +1140 2.595034599 127.0.0.1:57415 127.0.0.1:57433 3331521779 12 ffffffff339a0a0000000000 ....3....... +1142 2.696770191 127.0.0.1:57415 127.0.0.1:57433 3331521791 12 1a00000030bb0a0000000000 ....0....... +1144 2.696987152 127.0.0.1:57415 127.0.0.1:57433 3331521803 26 16000000548f6340e25e3140010003000000cf011f0000000000 ....T.c@.^1@.............. +1146 2.697308540 127.0.0.1:57433 127.0.0.1:57415 375852928 12 ffffffff30bb0a0000000000 ....0....... +1148 2.697688580 127.0.0.1:57433 127.0.0.1:57415 375852940 12 16000000349a0a0000000000 ....4....... +1150 2.697847366 127.0.0.1:57433 127.0.0.1:57415 375852952 22 12000000cf011f000000000001000300000000000000 ...................... +1152 2.698205471 127.0.0.1:57415 127.0.0.1:57433 3331521829 12 ffffffff349a0a0000000000 ....4....... +1158 2.800660372 127.0.0.1:57415 127.0.0.1:57433 3331521841 12 1a00000031bb0a0000000000 ....1....... +1160 2.800831556 127.0.0.1:57415 127.0.0.1:57433 3331521853 26 16000000548f6340e25e3140010003000000d1011f0000000000 ....T.c@.^1@.............. +1162 2.801242113 127.0.0.1:57433 127.0.0.1:57415 375852974 12 ffffffff31bb0a0000000000 ....1....... +1164 2.801743269 127.0.0.1:57433 127.0.0.1:57415 375852986 12 16000000359a0a0000000000 ....5....... +1166 2.801943779 127.0.0.1:57433 127.0.0.1:57415 375852998 22 12000000d1011f000000000001000300000000000000 ...................... +1168 2.802222490 127.0.0.1:57415 127.0.0.1:57433 3331521879 12 ffffffff359a0a0000000000 ....5....... +1170 2.868956566 127.0.0.1:57415 127.0.0.1:57433 3331521891 12 6500000032bb0a0000000000 e...2....... +1172 2.869130850 127.0.0.1:57415 127.0.0.1:57433 3331521903 101 1e0000001c2118d0c46f33bb0100030000008cff0100000000001a1d0ec39d01 .....!...o3.......................?.....3...|8.. +1174 2.869410515 127.0.0.1:57433 127.0.0.1:57415 375853020 12 ffffffff32bb0a0000000000 ....2....... +1176 2.870668173 127.0.0.1:57433 127.0.0.1:57415 375853032 12 34000000369a0a0000000000 4...6....... +1178 2.870829344 127.0.0.1:57433 127.0.0.1:57415 375853044 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................e.J +1180 2.871077061 127.0.0.1:57415 127.0.0.1:57433 3331522004 12 ffffffff369a0a0000000000 ....6....... +1182 2.871877193 127.0.0.1:57415 127.0.0.1:57433 3331522016 12 1e00000033bb0a0000000000 ....3....... +1184 2.872066498 127.0.0.1:57415 127.0.0.1:57433 3331522028 30 1a00000055ceff62b21b3a50010003000000d3011f000000000000000000 ....U..b..:P.................. +1186 2.872267008 127.0.0.1:57433 127.0.0.1:57415 375853096 12 ffffffff33bb0a0000000000 ....3....... +1188 2.872631073 127.0.0.1:57433 127.0.0.1:57415 375853108 12 1a000000379a0a0000000000 ....7....... +1190 2.872773647 127.0.0.1:57433 127.0.0.1:57415 375853120 26 16000000d3011f00000000000100030000000000000000000000 .......................... +1192 2.873010874 127.0.0.1:57415 127.0.0.1:57433 3331522058 12 ffffffff379a0a0000000000 ....7....... +1196 2.903532982 127.0.0.1:57415 127.0.0.1:57433 3331522070 12 1a00000034bb0a0000000000 ....4....... +1198 2.903688669 127.0.0.1:57415 127.0.0.1:57433 3331522082 26 16000000548f6340e25e3140010003000000d5011f0000000000 ....T.c@.^1@.............. +1200 2.904063702 127.0.0.1:57433 127.0.0.1:57415 375853146 12 ffffffff34bb0a0000000000 ....4....... +1202 2.904448271 127.0.0.1:57433 127.0.0.1:57415 375853158 12 16000000389a0a0000000000 ....8....... +1204 2.904611588 127.0.0.1:57433 127.0.0.1:57415 375853170 22 12000000d5011f000000000001000300000000000000 ...................... +1206 2.904853106 127.0.0.1:57415 127.0.0.1:57433 3331522108 12 ffffffff389a0a0000000000 ....8....... +1210 3.007679224 127.0.0.1:57415 127.0.0.1:57433 3331522120 12 1a00000035bb0a0000000000 ....5....... +1212 3.007866859 127.0.0.1:57415 127.0.0.1:57433 3331522132 26 16000000548f6340e25e3140010003000000d7011f0000000000 ....T.c@.^1@.............. +1216 3.008406401 127.0.0.1:57433 127.0.0.1:57415 375853192 12 fefffffffa3701000b380100 .....7...8.. +1222 3.008689642 127.0.0.1:57433 127.0.0.1:57415 375853204 12 16000000399a0a0000000000 ....9....... +1224 3.008848190 127.0.0.1:57433 127.0.0.1:57415 375853216 22 12000000d7011f000000000001000300000000000000 ...................... +1226 3.009161234 127.0.0.1:57433 127.0.0.1:57415 375853238 12 ffffffff35bb0a0000000000 ....5....... +1228 3.009301662 127.0.0.1:57415 127.0.0.1:57433 3331522158 12 ffffffff399a0a0000000000 ....9....... +1230 3.064360619 127.0.0.1:57415 127.0.0.1:57433 3331522170 12 feffffff0c380100fa370100 .....8...7.. +1240 3.112174988 127.0.0.1:57415 127.0.0.1:57433 3331522182 12 1a00000036bb0a0000000000 ....6....... +1242 3.112417221 127.0.0.1:57415 127.0.0.1:57433 3331522194 26 16000000548f6340e25e3140010003000000d9011f0000000000 ....T.c@.^1@.............. +1244 3.112744093 127.0.0.1:57433 127.0.0.1:57415 375853250 12 ffffffff36bb0a0000000000 ....6....... +1246 3.113477468 127.0.0.1:57433 127.0.0.1:57415 375853262 12 160000003a9a0a0000000000 ....:....... +1248 3.113645315 127.0.0.1:57433 127.0.0.1:57415 375853274 22 12000000d9011f000000000001000300000000000000 ...................... +1250 3.114008665 127.0.0.1:57415 127.0.0.1:57433 3331522220 12 ffffffff3a9a0a0000000000 ....:....... +1252 3.172887087 127.0.0.1:57415 127.0.0.1:57433 3331522232 12 6500000037bb0a0000000000 e...7....... +1254 3.173098803 127.0.0.1:57415 127.0.0.1:57433 3331522244 101 1e0000001c2118d0c46f33bb0100030000008dff0100000000004a1e0ec39d01 .....!...o3...............J.......?.....3...|8.. +1256 3.173407078 127.0.0.1:57433 127.0.0.1:57415 375853296 12 ffffffff37bb0a0000000000 ....7....... +1258 3.175090075 127.0.0.1:57433 127.0.0.1:57415 375853308 12 340000003b9a0a0000000000 4...;....... +1260 3.175289154 127.0.0.1:57433 127.0.0.1:57415 375853320 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............~..K +1262 3.175632477 127.0.0.1:57415 127.0.0.1:57433 3331522345 12 ffffffff3b9a0a0000000000 ....;....... +1264 3.176953793 127.0.0.1:57415 127.0.0.1:57433 3331522357 12 1e00000038bb0a0000000000 ....8....... +1266 3.177084446 127.0.0.1:57415 127.0.0.1:57433 3331522369 30 1a00000055ceff62b21b3a50010003000000db011f000000000000000000 ....U..b..:P.................. +1268 3.177320480 127.0.0.1:57433 127.0.0.1:57415 375853372 12 ffffffff38bb0a0000000000 ....8....... +1270 3.177858353 127.0.0.1:57433 127.0.0.1:57415 375853384 12 1a0000003c9a0a0000000000 ....<....... +1272 3.178068399 127.0.0.1:57433 127.0.0.1:57415 375853396 26 16000000db011f00000000000100030000000000000000000000 .......................... +1274 3.178402185 127.0.0.1:57415 127.0.0.1:57433 3331522399 12 ffffffff3c9a0a0000000000 ....<....... +1280 3.216619968 127.0.0.1:57415 127.0.0.1:57433 3331522411 12 1a00000039bb0a0000000000 ....9....... +1282 3.216790676 127.0.0.1:57415 127.0.0.1:57433 3331522423 26 16000000548f6340e25e3140010003000000dd011f0000000000 ....T.c@.^1@.............. +1284 3.217275620 127.0.0.1:57433 127.0.0.1:57415 375853422 12 ffffffff39bb0a0000000000 ....9....... +1286 3.217663765 127.0.0.1:57433 127.0.0.1:57415 375853434 12 160000003d9a0a0000000000 ....=....... +1288 3.217910767 127.0.0.1:57433 127.0.0.1:57415 375853446 22 12000000dd011f000000000001000300000000000000 ...................... +1290 3.218237400 127.0.0.1:57415 127.0.0.1:57433 3331522449 12 ffffffff3d9a0a0000000000 ....=....... +1292 3.320574284 127.0.0.1:57415 127.0.0.1:57433 3331522461 12 1a0000003abb0a0000000000 ....:....... +1294 3.320756912 127.0.0.1:57415 127.0.0.1:57433 3331522473 26 16000000548f6340e25e3140010003000000df011f0000000000 ....T.c@.^1@.............. +1296 3.321143866 127.0.0.1:57433 127.0.0.1:57415 375853468 12 ffffffff3abb0a0000000000 ....:....... +1298 3.321932554 127.0.0.1:57433 127.0.0.1:57415 375853480 12 160000003e9a0a0000000000 ....>....... +1300 3.322133780 127.0.0.1:57433 127.0.0.1:57415 375853492 22 12000000df011f000000000001000300000000000000 ...................... +1302 3.322381496 127.0.0.1:57415 127.0.0.1:57433 3331522499 12 ffffffff3e9a0a0000000000 ....>....... +1306 3.423394203 127.0.0.1:57415 127.0.0.1:57433 3331522511 12 1a0000003bbb0a0000000000 ....;....... +1308 3.423567533 127.0.0.1:57415 127.0.0.1:57433 3331522523 26 16000000548f6340e25e3140010003000000e1011f0000000000 ....T.c@.^1@.............. +1310 3.423946142 127.0.0.1:57433 127.0.0.1:57415 375853514 12 ffffffff3bbb0a0000000000 ....;....... +1312 3.424419165 127.0.0.1:57433 127.0.0.1:57415 375853526 12 160000003f9a0a0000000000 ....?....... +1314 3.424579859 127.0.0.1:57433 127.0.0.1:57415 375853538 22 12000000e1011f000000000001000300000000000000 ...................... +1316 3.424929380 127.0.0.1:57415 127.0.0.1:57433 3331522549 12 ffffffff3f9a0a0000000000 ....?....... +1318 3.477845430 127.0.0.1:57415 127.0.0.1:57433 3331522561 12 220000003cbb0a0000000000 "...<....... +1320 3.477996826 127.0.0.1:57415 127.0.0.1:57433 3331522573 34 1e0000001c2118d0c46f33bb0100030000008eff0100000000007b1f0ec39d01 .....!...o3...............{....... +1322 3.478135586 127.0.0.1:57415 127.0.0.1:57433 3331522607 12 430000003dbb0a0000000000 C...=....... +1324 3.478220224 127.0.0.1:57415 127.0.0.1:57433 3331522619 67 3f000000980433cb0cb47c3801000300000001000000008eff0100000000003d ?.....3...|8...................=B.....&......... +1326 3.478462458 127.0.0.1:57433 127.0.0.1:57415 375853560 12 ffffffff3cbb0a0000000000 ....<....... +1328 3.478713512 127.0.0.1:57433 127.0.0.1:57415 375853572 12 ffffffff3dbb0a0000000000 ....=....... +1330 3.479474306 127.0.0.1:57433 127.0.0.1:57415 375853584 12 34000000409a0a0000000000 4...@....... +1332 3.479634285 127.0.0.1:57433 127.0.0.1:57415 375853596 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............oLAK +1334 3.479920149 127.0.0.1:57415 127.0.0.1:57433 3331522686 12 ffffffff409a0a0000000000 ....@....... +1336 3.480688095 127.0.0.1:57415 127.0.0.1:57433 3331522698 12 1e0000003ebb0a0000000000 ....>....... +1338 3.480861187 127.0.0.1:57415 127.0.0.1:57433 3331522710 30 1a00000055ceff62b21b3a50010003000000e3011f000000000000000000 ....U..b..:P.................. +1340 3.481126785 127.0.0.1:57433 127.0.0.1:57415 375853648 12 ffffffff3ebb0a0000000000 ....>....... +1342 3.481488466 127.0.0.1:57433 127.0.0.1:57415 375853660 12 1a000000419a0a0000000000 ....A....... +1344 3.481633663 127.0.0.1:57433 127.0.0.1:57415 375853672 26 16000000e3011f00000000000100030000000000000000000000 .......................... +1346 3.481894732 127.0.0.1:57415 127.0.0.1:57433 3331522740 12 ffffffff419a0a0000000000 ....A....... +1350 3.509551764 127.0.0.1:57433 127.0.0.1:57415 375853698 12 fefffffffb3701000c380100 .....7...8.. +1356 3.526058435 127.0.0.1:57415 127.0.0.1:57433 3331522752 12 1a0000003fbb0a0000000000 ....?....... +1358 3.526260138 127.0.0.1:57415 127.0.0.1:57433 3331522764 26 16000000548f6340e25e3140010003000000e5011f0000000000 ....T.c@.^1@.............. +1360 3.526663065 127.0.0.1:57433 127.0.0.1:57415 375853710 12 ffffffff3fbb0a0000000000 ....?....... +1362 3.527224779 127.0.0.1:57433 127.0.0.1:57415 375853722 12 16000000429a0a0000000000 ....B....... +1364 3.527381182 127.0.0.1:57433 127.0.0.1:57415 375853734 22 12000000e5011f000000000001000300000000000000 ...................... +1366 3.527678967 127.0.0.1:57415 127.0.0.1:57433 3331522790 12 ffffffff429a0a0000000000 ....B....... +1369 3.564897776 127.0.0.1:57415 127.0.0.1:57433 3331522802 12 feffffff0d380100fb370100 .....8...7.. +1378 3.629282475 127.0.0.1:57415 127.0.0.1:57433 3331522814 12 1a00000040bb0a0000000000 ....@....... +1380 3.629455328 127.0.0.1:57415 127.0.0.1:57433 3331522826 26 16000000548f6340e25e3140010003000000e7011f0000000000 ....T.c@.^1@.............. +1382 3.629867315 127.0.0.1:57433 127.0.0.1:57415 375853756 12 ffffffff40bb0a0000000000 ....@....... +1384 3.630242825 127.0.0.1:57433 127.0.0.1:57415 375853768 12 16000000439a0a0000000000 ....C....... +1386 3.630405188 127.0.0.1:57433 127.0.0.1:57415 375853780 22 12000000e7011f000000000001000300000000000000 ...................... +1388 3.630841970 127.0.0.1:57415 127.0.0.1:57433 3331522852 12 ffffffff439a0a0000000000 ....C....... +1394 3.732339859 127.0.0.1:57415 127.0.0.1:57433 3331522864 12 1a00000041bb0a0000000000 ....A....... +1396 3.732566357 127.0.0.1:57415 127.0.0.1:57433 3331522876 26 16000000548f6340e25e3140010003000000e9011f0000000000 ....T.c@.^1@.............. +1398 3.732849360 127.0.0.1:57433 127.0.0.1:57415 375853802 12 ffffffff41bb0a0000000000 ....A....... +1400 3.733505011 127.0.0.1:57433 127.0.0.1:57415 375853814 12 16000000449a0a0000000000 ....D....... +1402 3.733691216 127.0.0.1:57433 127.0.0.1:57415 375853826 22 12000000e9011f000000000001000300000000000000 ...................... +1404 3.733933926 127.0.0.1:57415 127.0.0.1:57433 3331522902 12 ffffffff449a0a0000000000 ....D....... +1406 3.781508446 127.0.0.1:57415 127.0.0.1:57433 3331522914 12 6500000042bb0a0000000000 e...B....... +1408 3.781783104 127.0.0.1:57415 127.0.0.1:57433 3331522926 101 1e0000001c2118d0c46f33bb0100030000008fff010000000000ab200ec39d01 .....!...o3................ ......?.....3...|8.. +1410 3.782224894 127.0.0.1:57433 127.0.0.1:57415 375853848 12 ffffffff42bb0a0000000000 ....B....... +1412 3.783864260 127.0.0.1:57433 127.0.0.1:57415 375853860 12 34000000459a0a0000000000 4...E....... +1414 3.784025431 127.0.0.1:57433 127.0.0.1:57415 375853872 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............G.oK +1416 3.784380674 127.0.0.1:57415 127.0.0.1:57433 3331523027 12 ffffffff459a0a0000000000 ....E....... +1418 3.785092592 127.0.0.1:57415 127.0.0.1:57433 3331523039 12 1e00000043bb0a0000000000 ....C....... +1420 3.785232306 127.0.0.1:57415 127.0.0.1:57433 3331523051 30 1a00000055ceff62b21b3a50010003000000eb011f000000000000000000 ....U..b..:P.................. +1422 3.785613298 127.0.0.1:57433 127.0.0.1:57415 375853924 12 ffffffff43bb0a0000000000 ....C....... +1424 3.785983086 127.0.0.1:57433 127.0.0.1:57415 375853936 12 1a000000469a0a0000000000 ....F....... +1426 3.786133289 127.0.0.1:57433 127.0.0.1:57415 375853948 26 16000000eb011f00000000000100030000000000000000000000 .......................... +1428 3.786461353 127.0.0.1:57415 127.0.0.1:57433 3331523081 12 ffffffff469a0a0000000000 ....F....... +1430 3.836404324 127.0.0.1:57415 127.0.0.1:57433 3331523093 12 1a00000044bb0a0000000000 ....D....... +1432 3.836583614 127.0.0.1:57415 127.0.0.1:57433 3331523105 26 16000000548f6340e25e3140010003000000ed011f0000000000 ....T.c@.^1@.............. +1434 3.837145329 127.0.0.1:57433 127.0.0.1:57415 375853974 12 ffffffff44bb0a0000000000 ....D....... +1436 3.837798834 127.0.0.1:57433 127.0.0.1:57415 375853986 12 16000000479a0a0000000000 ....G....... +1438 3.837964535 127.0.0.1:57433 127.0.0.1:57415 375853998 22 12000000ed011f000000000001000300000000000000 ...................... +1440 3.838236570 127.0.0.1:57415 127.0.0.1:57433 3331523131 12 ffffffff479a0a0000000000 ....G....... +1444 3.941282988 127.0.0.1:57415 127.0.0.1:57433 3331523143 12 1a00000045bb0a0000000000 ....E....... +1446 3.941464901 127.0.0.1:57415 127.0.0.1:57433 3331523155 26 16000000548f6340e25e3140010003000000ef011f0000000000 ....T.c@.^1@.............. +1448 3.941943884 127.0.0.1:57433 127.0.0.1:57415 375854020 12 ffffffff45bb0a0000000000 ....E....... +1450 3.942574024 127.0.0.1:57433 127.0.0.1:57415 375854032 12 16000000489a0a0000000000 ....H....... +1452 3.942729235 127.0.0.1:57433 127.0.0.1:57415 375854044 22 12000000ef011f000000000001000300000000000000 ...................... +1454 3.942982197 127.0.0.1:57415 127.0.0.1:57433 3331523181 12 ffffffff489a0a0000000000 ....H....... +1458 4.011476040 127.0.0.1:57433 127.0.0.1:57415 375854066 12 fefffffffc3701000d380100 .....7...8.. +1464 4.045656443 127.0.0.1:57415 127.0.0.1:57433 3331523193 12 1a00000046bb0a0000000000 ....F....... +1466 4.045890093 127.0.0.1:57415 127.0.0.1:57433 3331523205 26 16000000548f6340e25e3140010003000000f1011f0000000000 ....T.c@.^1@.............. +1468 4.046255112 127.0.0.1:57433 127.0.0.1:57415 375854078 12 ffffffff46bb0a0000000000 ....F....... +1470 4.046806574 127.0.0.1:57433 127.0.0.1:57415 375854090 12 16000000499a0a0000000000 ....I....... +1472 4.047061682 127.0.0.1:57433 127.0.0.1:57415 375854102 22 12000000f1011f000000000001000300000000000000 ...................... +1474 4.047346592 127.0.0.1:57415 127.0.0.1:57433 3331523231 12 ffffffff499a0a0000000000 ....I....... +1477 4.066290379 127.0.0.1:57415 127.0.0.1:57433 3331523243 12 feffffff0e380100fc370100 .....8...7.. +1484 4.087766647 127.0.0.1:57415 127.0.0.1:57433 3331523255 12 6500000047bb0a0000000000 e...G....... +1486 4.087933779 127.0.0.1:57415 127.0.0.1:57433 3331523267 101 1e0000001c2118d0c46f33bb01000300000090ff010000000000dd210ec39d01 .....!...o3................!......?.....3...|8.. +1488 4.088252306 127.0.0.1:57433 127.0.0.1:57415 375854124 12 ffffffff47bb0a0000000000 ....G....... +1490 4.089464903 127.0.0.1:57433 127.0.0.1:57415 375854136 12 340000004a9a0a0000000000 4...J....... +1492 4.089647293 127.0.0.1:57433 127.0.0.1:57415 375854148 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............t].K +1494 4.089912176 127.0.0.1:57415 127.0.0.1:57433 3331523368 12 ffffffff4a9a0a0000000000 ....J....... +1496 4.091028929 127.0.0.1:57415 127.0.0.1:57433 3331523380 12 1e00000048bb0a0000000000 ....H....... +1498 4.091165781 127.0.0.1:57415 127.0.0.1:57433 3331523392 30 1a00000055ceff62b21b3a50010003000000f3011f000000000000000000 ....U..b..:P.................. +1500 4.091441631 127.0.0.1:57433 127.0.0.1:57415 375854200 12 ffffffff48bb0a0000000000 ....H....... +1502 4.091841459 127.0.0.1:57433 127.0.0.1:57415 375854212 12 1a0000004b9a0a0000000000 ....K....... +1504 4.091980696 127.0.0.1:57433 127.0.0.1:57415 375854224 26 16000000f3011f00000000000100030000000000000000000000 .......................... +1506 4.092235565 127.0.0.1:57415 127.0.0.1:57433 3331523422 12 ffffffff4b9a0a0000000000 ....K....... +1519 4.149621010 127.0.0.1:57415 127.0.0.1:57433 3331523434 12 1a00000049bb0a0000000000 ....I....... +1521 4.149926424 127.0.0.1:57415 127.0.0.1:57433 3331523446 26 16000000548f6340e25e3140010003000000f5011f0000000000 ....T.c@.^1@.............. +1523 4.150392294 127.0.0.1:57433 127.0.0.1:57415 375854250 12 ffffffff49bb0a0000000000 ....I....... +1525 4.150900364 127.0.0.1:57433 127.0.0.1:57415 375854262 12 160000004c9a0a0000000000 ....L....... +1527 4.151083231 127.0.0.1:57433 127.0.0.1:57415 375854274 22 12000000f5011f000000000001000300000000000000 ...................... +1529 4.151374578 127.0.0.1:57415 127.0.0.1:57433 3331523472 12 ffffffff4c9a0a0000000000 ....L....... +1560 4.252617359 127.0.0.1:57415 127.0.0.1:57433 3331523484 12 1a0000004abb0a0000000000 ....J....... +1562 4.252826929 127.0.0.1:57415 127.0.0.1:57433 3331523496 26 16000000548f6340e25e3140010003000000f7011f0000000000 ....T.c@.^1@.............. +1564 4.253314018 127.0.0.1:57433 127.0.0.1:57415 375854296 12 ffffffff4abb0a0000000000 ....J....... +1566 4.254130602 127.0.0.1:57433 127.0.0.1:57415 375854308 12 160000004d9a0a0000000000 ....M....... +1568 4.254331589 127.0.0.1:57433 127.0.0.1:57415 375854320 22 12000000f7011f000000000001000300000000000000 ...................... +1570 4.254854441 127.0.0.1:57415 127.0.0.1:57433 3331523522 12 ffffffff4d9a0a0000000000 ....M....... +1602 4.357247114 127.0.0.1:57415 127.0.0.1:57433 3331523534 12 1a0000004bbb0a0000000000 ....K....... +1604 4.357463121 127.0.0.1:57415 127.0.0.1:57433 3331523546 26 16000000548f6340e25e3140010003000000f9011f0000000000 ....T.c@.^1@.............. +1606 4.357946396 127.0.0.1:57433 127.0.0.1:57415 375854342 12 ffffffff4bbb0a0000000000 ....K....... +1608 4.358549118 127.0.0.1:57433 127.0.0.1:57415 375854354 12 160000004e9a0a0000000000 ....N....... +1610 4.358824968 127.0.0.1:57433 127.0.0.1:57415 375854366 22 12000000f9011f000000000001000300000000000000 ...................... +1612 4.359138012 127.0.0.1:57415 127.0.0.1:57433 3331523572 12 ffffffff4e9a0a0000000000 ....N....... +1616 4.392915964 127.0.0.1:57415 127.0.0.1:57433 3331523584 12 220000004cbb0a0000000000 "...L....... +1618 4.393128872 127.0.0.1:57415 127.0.0.1:57433 3331523596 34 1e0000001c2118d0c46f33bb01000300000091ff0100000000000e230ec39d01 .....!...o3................#...... +1620 4.393328190 127.0.0.1:57415 127.0.0.1:57433 3331523630 12 430000004dbb0a0000000000 C...M....... +1622 4.393434048 127.0.0.1:57415 127.0.0.1:57433 3331523642 67 3f000000980433cb0cb47c38010003000000010000000091ff0100000000003d ?.....3...|8...................=B.....&......... +1623 4.393469572 127.0.0.1:57433 127.0.0.1:57415 375854388 12 ffffffff4cbb0a0000000000 ....L....... +1626 4.393748522 127.0.0.1:57433 127.0.0.1:57415 375854400 12 ffffffff4dbb0a0000000000 ....M....... +1628 4.394703627 127.0.0.1:57433 127.0.0.1:57415 375854412 12 340000004f9a0a0000000000 4...O....... +1630 4.394870758 127.0.0.1:57433 127.0.0.1:57415 375854424 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............y..K +1632 4.395158768 127.0.0.1:57415 127.0.0.1:57433 3331523709 12 ffffffff4f9a0a0000000000 ....O....... +1633 4.396125793 127.0.0.1:57415 127.0.0.1:57433 3331523721 12 1e0000004ebb0a0000000000 ....N....... +1635 4.396316528 127.0.0.1:57415 127.0.0.1:57433 3331523733 30 1a00000055ceff62b21b3a50010003000000fb011f000000000000000000 ....U..b..:P.................. +1637 4.396716833 127.0.0.1:57433 127.0.0.1:57415 375854476 12 ffffffff4ebb0a0000000000 ....N....... +1639 4.397119999 127.0.0.1:57433 127.0.0.1:57415 375854488 12 1a000000509a0a0000000000 ....P....... +1641 4.397266388 127.0.0.1:57433 127.0.0.1:57415 375854500 26 16000000fb011f00000000000100030000000000000000000000 .......................... +1643 4.397505760 127.0.0.1:57415 127.0.0.1:57433 3331523763 12 ffffffff509a0a0000000000 ....P....... +1657 4.461783171 127.0.0.1:57415 127.0.0.1:57433 3331523775 12 1a0000004fbb0a0000000000 ....O....... +1659 4.462015867 127.0.0.1:57415 127.0.0.1:57433 3331523787 26 16000000548f6340e25e3140010003000000fd011f0000000000 ....T.c@.^1@.............. +1661 4.462423086 127.0.0.1:57433 127.0.0.1:57415 375854526 12 ffffffff4fbb0a0000000000 ....O....... +1663 4.462837934 127.0.0.1:57433 127.0.0.1:57415 375854538 12 16000000519a0a0000000000 ....Q....... +1665 4.463088274 127.0.0.1:57433 127.0.0.1:57415 375854550 22 12000000fd011f000000000001000300000000000000 ...................... +1667 4.463360786 127.0.0.1:57415 127.0.0.1:57433 3331523813 12 ffffffff519a0a0000000000 ....Q....... +1671 4.513443232 127.0.0.1:57433 127.0.0.1:57415 375854572 12 fefffffffd3701000e380100 .....7...8.. +1679 4.565369844 127.0.0.1:57415 127.0.0.1:57433 3331523825 12 1a00000050bb0a0000000000 ....P....... +1681 4.565586090 127.0.0.1:57415 127.0.0.1:57433 3331523837 26 16000000548f6340e25e3140010003000000ff011f0000000000 ....T.c@.^1@.............. +1683 4.565944433 127.0.0.1:57433 127.0.0.1:57415 375854584 12 ffffffff50bb0a0000000000 ....P....... +1686 4.567020416 127.0.0.1:57433 127.0.0.1:57415 375854596 12 16000000529a0a0000000000 ....R....... +1687 4.567041397 127.0.0.1:57415 127.0.0.1:57433 3331523863 12 feffffff0f380100fd370100 .....8...7.. +1689 4.567179441 127.0.0.1:57433 127.0.0.1:57415 375854608 22 12000000ff011f000000000001000300000000000000 ...................... +1691 4.567850113 127.0.0.1:57415 127.0.0.1:57433 3331523875 12 ffffffff529a0a0000000000 ....R....... +1699 4.668992519 127.0.0.1:57415 127.0.0.1:57433 3331523887 12 1a00000051bb0a0000000000 ....Q....... +1701 4.669188499 127.0.0.1:57415 127.0.0.1:57433 3331523899 26 16000000548f6340e25e314001000300000001021f0000000000 ....T.c@.^1@.............. +1703 4.669718742 127.0.0.1:57433 127.0.0.1:57415 375854630 12 ffffffff51bb0a0000000000 ....Q....... +1705 4.670152187 127.0.0.1:57433 127.0.0.1:57415 375854642 12 16000000539a0a0000000000 ....S....... +1707 4.670355320 127.0.0.1:57433 127.0.0.1:57415 375854654 22 1200000001021f000000000001000300000000000000 ...................... +1709 4.670641661 127.0.0.1:57415 127.0.0.1:57433 3331523925 12 ffffffff539a0a0000000000 ....S....... +1711 4.697686195 127.0.0.1:57415 127.0.0.1:57433 3331523937 12 6500000052bb0a0000000000 e...R....... +1713 4.697849274 127.0.0.1:57415 127.0.0.1:57433 3331523949 101 1e0000001c2118d0c46f33bb01000300000092ff0100000000003f240ec39d01 .....!...o3...............?$......?.....3...|8.. +1715 4.698153734 127.0.0.1:57433 127.0.0.1:57415 375854676 12 ffffffff52bb0a0000000000 ....R....... +1717 4.699561119 127.0.0.1:57433 127.0.0.1:57415 375854688 12 34000000549a0a0000000000 4...T....... +1719 4.699776649 127.0.0.1:57433 127.0.0.1:57415 375854700 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................v.K +1721 4.700068474 127.0.0.1:57415 127.0.0.1:57433 3331524050 12 ffffffff549a0a0000000000 ....T....... +1723 4.700975180 127.0.0.1:57415 127.0.0.1:57433 3331524062 12 1e00000053bb0a0000000000 ....S....... +1725 4.701110363 127.0.0.1:57415 127.0.0.1:57433 3331524074 30 1a00000055ceff62b21b3a5001000300000003021f000000000000000000 ....U..b..:P.................. +1727 4.701415777 127.0.0.1:57433 127.0.0.1:57415 375854752 12 ffffffff53bb0a0000000000 ....S....... +1729 4.701980352 127.0.0.1:57433 127.0.0.1:57415 375854764 12 1a000000559a0a0000000000 ....U....... +1731 4.702131987 127.0.0.1:57433 127.0.0.1:57415 375854776 26 1600000003021f00000000000100030000000000000000000000 .......................... +1733 4.702378988 127.0.0.1:57415 127.0.0.1:57433 3331524104 12 ffffffff559a0a0000000000 ....U....... +1739 4.772125721 127.0.0.1:57415 127.0.0.1:57433 3331524116 12 1a00000054bb0a0000000000 ....T....... +1741 4.772309542 127.0.0.1:57415 127.0.0.1:57433 3331524128 26 16000000548f6340e25e314001000300000005021f0000000000 ....T.c@.^1@.............. +1743 4.772758484 127.0.0.1:57433 127.0.0.1:57415 375854802 12 ffffffff54bb0a0000000000 ....T....... +1747 4.773385286 127.0.0.1:57433 127.0.0.1:57415 375854814 12 16000000569a0a0000000000 ....V....... +1749 4.773548126 127.0.0.1:57433 127.0.0.1:57415 375854826 22 1200000005021f000000000001000300000000000000 ...................... +1751 4.773838997 127.0.0.1:57415 127.0.0.1:57433 3331524154 12 ffffffff569a0a0000000000 ....V....... +1759 4.876330376 127.0.0.1:57415 127.0.0.1:57433 3331524166 12 1a00000055bb0a0000000000 ....U....... +1761 4.876564980 127.0.0.1:57415 127.0.0.1:57433 3331524178 26 16000000548f6340e25e314001000300000007021f0000000000 ....T.c@.^1@.............. +1763 4.876907349 127.0.0.1:57433 127.0.0.1:57415 375854848 12 ffffffff55bb0a0000000000 ....U....... +1765 4.877627373 127.0.0.1:57433 127.0.0.1:57415 375854860 12 16000000579a0a0000000000 ....W....... +1767 4.877795219 127.0.0.1:57433 127.0.0.1:57415 375854872 22 1200000007021f000000000001000300000000000000 ...................... +1769 4.878125191 127.0.0.1:57415 127.0.0.1:57433 3331524204 12 ffffffff579a0a0000000000 ....W....... +1775 4.980342388 127.0.0.1:57415 127.0.0.1:57433 3331524216 12 1a00000056bb0a0000000000 ....V....... +1777 4.980539083 127.0.0.1:57415 127.0.0.1:57433 3331524228 26 16000000548f6340e25e314001000300000009021f0000000000 ....T.c@.^1@.............. +1779 4.980951309 127.0.0.1:57433 127.0.0.1:57415 375854894 12 ffffffff56bb0a0000000000 ....V....... +1781 4.981514454 127.0.0.1:57433 127.0.0.1:57415 375854906 12 16000000589a0a0000000000 ....X....... +1783 4.981689692 127.0.0.1:57433 127.0.0.1:57415 375854918 22 1200000009021f000000000001000300000000000000 ...................... +1785 4.982027054 127.0.0.1:57415 127.0.0.1:57433 3331524254 12 ffffffff589a0a0000000000 ....X....... +1787 5.002369404 127.0.0.1:57415 127.0.0.1:57433 3331524266 12 6500000057bb0a0000000000 e...W....... +1789 5.002524614 127.0.0.1:57415 127.0.0.1:57433 3331524278 101 1e0000001c2118d0c46f33bb01000300000093ff01000000000070250ec39d01 .....!...o3...............p%......?.....3...|8.. +1791 5.003222466 127.0.0.1:57433 127.0.0.1:57415 375854940 12 ffffffff57bb0a0000000000 ....W....... +1793 5.003866673 127.0.0.1:57433 127.0.0.1:57415 375854952 12 34000000599a0a0000000000 4...Y....... +1795 5.004038572 127.0.0.1:57433 127.0.0.1:57415 375854964 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............f.)L +1797 5.004314184 127.0.0.1:57415 127.0.0.1:57433 3331524379 12 ffffffff599a0a0000000000 ....Y....... +1799 5.005112410 127.0.0.1:57415 127.0.0.1:57433 3331524391 12 1e00000058bb0a0000000000 ....X....... +1801 5.005270481 127.0.0.1:57415 127.0.0.1:57433 3331524403 30 1a00000055ceff62b21b3a500100030000000b021f000000000000000000 ....U..b..:P.................. +1803 5.005701542 127.0.0.1:57433 127.0.0.1:57415 375855016 12 ffffffff58bb0a0000000000 ....X....... +1805 5.006483078 127.0.0.1:57433 127.0.0.1:57415 375855028 12 1a0000005a9a0a0000000000 ....Z....... +1807 5.006685257 127.0.0.1:57433 127.0.0.1:57415 375855040 26 160000000b021f00000000000100030000000000000000000000 .......................... +1809 5.006925344 127.0.0.1:57415 127.0.0.1:57433 3331524433 12 ffffffff5a9a0a0000000000 ....Z....... +1813 5.014326334 127.0.0.1:57433 127.0.0.1:57415 375855066 12 fefffffffe3701000f380100 .....7...8.. +1826 5.067890882 127.0.0.1:57415 127.0.0.1:57433 3331524445 12 feffffff10380100fe370100 .....8...7.. +1829 5.082899094 127.0.0.1:57415 127.0.0.1:57433 3331524457 12 1a00000059bb0a0000000000 ....Y....... +1831 5.083081245 127.0.0.1:57415 127.0.0.1:57433 3331524469 26 16000000548f6340e25e31400100030000000d021f0000000000 ....T.c@.^1@.............. +1833 5.083437443 127.0.0.1:57433 127.0.0.1:57415 375855078 12 ffffffff59bb0a0000000000 ....Y....... +1835 5.083969593 127.0.0.1:57433 127.0.0.1:57415 375855090 12 160000005b9a0a0000000000 ....[....... +1837 5.084253073 127.0.0.1:57433 127.0.0.1:57415 375855102 22 120000000d021f000000000001000300000000000000 ...................... +1839 5.084533930 127.0.0.1:57415 127.0.0.1:57433 3331524495 12 ffffffff5b9a0a0000000000 ....[....... +1897 5.185793400 127.0.0.1:57415 127.0.0.1:57433 3331524507 12 1a0000005abb0a0000000000 ....Z....... +1899 5.186030388 127.0.0.1:57415 127.0.0.1:57433 3331524519 26 16000000548f6340e25e31400100030000000f021f0000000000 ....T.c@.^1@.............. +1901 5.186771393 127.0.0.1:57433 127.0.0.1:57415 375855124 12 ffffffff5abb0a0000000000 ....Z....... +1903 5.187183619 127.0.0.1:57433 127.0.0.1:57415 375855136 12 160000005c9a0a0000000000 ....\....... +1905 5.187593699 127.0.0.1:57433 127.0.0.1:57415 375855148 22 120000000f021f000000000001000300000000000000 ...................... +1906 5.187952280 127.0.0.1:57415 127.0.0.1:57433 3331524545 12 ffffffff5c9a0a0000000000 ....\....... +1912 5.289766312 127.0.0.1:57415 127.0.0.1:57433 3331524557 12 1a0000005bbb0a0000000000 ....[....... +1914 5.289975882 127.0.0.1:57415 127.0.0.1:57433 3331524569 26 16000000548f6340e25e314001000300000011021f0000000000 ....T.c@.^1@.............. +1916 5.290675879 127.0.0.1:57433 127.0.0.1:57415 375855170 12 ffffffff5bbb0a0000000000 ....[....... +1918 5.291382074 127.0.0.1:57433 127.0.0.1:57415 375855182 12 160000005d9a0a0000000000 ....]....... +1920 5.291550398 127.0.0.1:57433 127.0.0.1:57415 375855194 22 1200000011021f000000000001000300000000000000 ...................... +1922 5.291876554 127.0.0.1:57415 127.0.0.1:57433 3331524595 12 ffffffff5d9a0a0000000000 ....]....... +1924 5.306090117 127.0.0.1:57415 127.0.0.1:57433 3331524607 12 650000005cbb0a0000000000 e...\....... +1926 5.306272507 127.0.0.1:57415 127.0.0.1:57433 3331524619 101 1e0000001c2118d0c46f33bb01000300000094ff0100000000009f260ec39d01 .....!...o3................&......?.....3...|8.. +1928 5.306631565 127.0.0.1:57433 127.0.0.1:57415 375855216 12 ffffffff5cbb0a0000000000 ....\....... +1930 5.308059216 127.0.0.1:57433 127.0.0.1:57415 375855228 12 340000005e9a0a0000000000 4...^....... +1932 5.308345795 127.0.0.1:57433 127.0.0.1:57415 375855240 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............AQXL +1934 5.308660269 127.0.0.1:57415 127.0.0.1:57433 3331524720 12 ffffffff5e9a0a0000000000 ....^....... +1936 5.309355736 127.0.0.1:57415 127.0.0.1:57433 3331524732 12 1e0000005dbb0a0000000000 ....]....... +1938 5.309495449 127.0.0.1:57415 127.0.0.1:57433 3331524744 30 1a00000055ceff62b21b3a5001000300000013021f000000000000000000 ....U..b..:P.................. +1940 5.309849501 127.0.0.1:57433 127.0.0.1:57415 375855292 12 ffffffff5dbb0a0000000000 ....]....... +1942 5.310516834 127.0.0.1:57433 127.0.0.1:57415 375855304 12 1a0000005f9a0a0000000000 ...._....... +1944 5.310764790 127.0.0.1:57433 127.0.0.1:57415 375855316 26 1600000013021f00000000000100030000000000000000000000 .......................... +1946 5.311161995 127.0.0.1:57415 127.0.0.1:57433 3331524774 12 ffffffff5f9a0a0000000000 ...._....... +1963 5.393695116 127.0.0.1:57415 127.0.0.1:57433 3331524786 12 1a0000005ebb0a0000000000 ....^....... +1965 5.393906832 127.0.0.1:57415 127.0.0.1:57433 3331524798 26 16000000548f6340e25e314001000300000015021f0000000000 ....T.c@.^1@.............. +1967 5.394289255 127.0.0.1:57433 127.0.0.1:57415 375855342 12 ffffffff5ebb0a0000000000 ....^....... +1970 5.394904613 127.0.0.1:57433 127.0.0.1:57415 375855354 12 16000000609a0a0000000000 ....`....... +1974 5.395120859 127.0.0.1:57433 127.0.0.1:57415 375855366 22 1200000015021f000000000001000300000000000000 ...................... +1976 5.395386934 127.0.0.1:57415 127.0.0.1:57433 3331524824 12 ffffffff609a0a0000000000 ....`....... +1992 5.496750832 127.0.0.1:57415 127.0.0.1:57433 3331524836 12 1a0000005fbb0a0000000000 ...._....... +1994 5.496923923 127.0.0.1:57415 127.0.0.1:57433 3331524848 26 16000000548f6340e25e314001000300000017021f0000000000 ....T.c@.^1@.............. +1996 5.497388601 127.0.0.1:57433 127.0.0.1:57415 375855388 12 ffffffff5fbb0a0000000000 ...._....... +1998 5.497848511 127.0.0.1:57433 127.0.0.1:57415 375855400 12 16000000619a0a0000000000 ....a....... +2000 5.498053551 127.0.0.1:57433 127.0.0.1:57415 375855412 22 1200000017021f000000000001000300000000000000 ...................... +2002 5.498346567 127.0.0.1:57415 127.0.0.1:57433 3331524874 12 ffffffff619a0a0000000000 ....a....... +2006 5.514812231 127.0.0.1:57433 127.0.0.1:57415 375855434 12 feffffffff37010010380100 .....7...8.. +2013 5.569550753 127.0.0.1:57415 127.0.0.1:57433 3331524886 12 feffffff11380100ff370100 .....8...7.. +2022 5.600867748 127.0.0.1:57415 127.0.0.1:57433 3331524898 12 1a00000060bb0a0000000000 ....`....... +2024 5.601060390 127.0.0.1:57415 127.0.0.1:57433 3331524910 26 16000000548f6340e25e314001000300000019021f0000000000 ....T.c@.^1@.............. +2026 5.601567984 127.0.0.1:57433 127.0.0.1:57415 375855446 12 ffffffff60bb0a0000000000 ....`....... +2028 5.602096319 127.0.0.1:57433 127.0.0.1:57415 375855458 12 16000000629a0a0000000000 ....b....... +2030 5.602305174 127.0.0.1:57433 127.0.0.1:57415 375855470 22 1200000019021f000000000001000300000000000000 ...................... +2032 5.602655888 127.0.0.1:57415 127.0.0.1:57433 3331524936 12 ffffffff629a0a0000000000 ....b....... +2034 5.611414909 127.0.0.1:57415 127.0.0.1:57433 3331524948 12 6500000061bb0a0000000000 e...a....... +2036 5.611576557 127.0.0.1:57415 127.0.0.1:57433 3331524960 101 1e0000001c2118d0c46f33bb01000300000095ff010000000000d0270ec39d01 .....!...o3................'......?.....3...|8.. +2038 5.612492323 127.0.0.1:57433 127.0.0.1:57415 375855492 12 ffffffff61bb0a0000000000 ....a....... +2040 5.613309383 127.0.0.1:57433 127.0.0.1:57415 375855504 12 34000000639a0a0000000000 4...c....... +2042 5.613466263 127.0.0.1:57433 127.0.0.1:57415 375855516 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................L +2044 5.613735676 127.0.0.1:57415 127.0.0.1:57433 3331525061 12 ffffffff639a0a0000000000 ....c....... +2046 5.614522934 127.0.0.1:57415 127.0.0.1:57433 3331525073 12 1e00000062bb0a0000000000 ....b....... +2048 5.614668131 127.0.0.1:57415 127.0.0.1:57433 3331525085 30 1a00000055ceff62b21b3a500100030000001b021f000000000000000000 ....U..b..:P.................. +2050 5.615037441 127.0.0.1:57433 127.0.0.1:57415 375855568 12 ffffffff62bb0a0000000000 ....b....... +2052 5.615605354 127.0.0.1:57433 127.0.0.1:57415 375855580 12 1a000000649a0a0000000000 ....d....... +2054 5.615745306 127.0.0.1:57433 127.0.0.1:57415 375855592 26 160000001b021f00000000000100030000000000000000000000 .......................... +2056 5.616000652 127.0.0.1:57415 127.0.0.1:57433 3331525115 12 ffffffff649a0a0000000000 ....d....... +2058 5.704356432 127.0.0.1:57415 127.0.0.1:57433 3331525127 12 1a00000063bb0a0000000000 ....c....... +2060 5.704522133 127.0.0.1:57415 127.0.0.1:57433 3331525139 26 16000000548f6340e25e31400100030000001d021f0000000000 ....T.c@.^1@.............. +2062 5.704801559 127.0.0.1:57433 127.0.0.1:57415 375855618 12 ffffffff63bb0a0000000000 ....c....... +2064 5.705357790 127.0.0.1:57433 127.0.0.1:57415 375855630 12 16000000659a0a0000000000 ....e....... +2066 5.705533028 127.0.0.1:57433 127.0.0.1:57415 375855642 22 120000001d021f000000000001000300000000000000 ...................... +2068 5.705736399 127.0.0.1:57415 127.0.0.1:57433 3331525165 12 ffffffff659a0a0000000000 ....e....... +2085 5.808440924 127.0.0.1:57415 127.0.0.1:57433 3331525177 12 1a00000064bb0a0000000000 ....d....... +2087 5.808666945 127.0.0.1:57415 127.0.0.1:57433 3331525189 26 16000000548f6340e25e31400100030000001f021f0000000000 ....T.c@.^1@.............. +2089 5.808991671 127.0.0.1:57433 127.0.0.1:57415 375855664 12 ffffffff64bb0a0000000000 ....d....... +2091 5.809448242 127.0.0.1:57433 127.0.0.1:57415 375855676 12 16000000669a0a0000000000 ....f....... +2093 5.809616566 127.0.0.1:57433 127.0.0.1:57415 375855688 22 120000001f021f000000000001000300000000000000 ...................... +2095 5.809954166 127.0.0.1:57415 127.0.0.1:57433 3331525215 12 ffffffff669a0a0000000000 ....f....... +2099 5.911749840 127.0.0.1:57415 127.0.0.1:57433 3331525227 12 1a00000065bb0a0000000000 ....e....... +2101 5.911911488 127.0.0.1:57415 127.0.0.1:57433 3331525239 26 16000000548f6340e25e314001000300000021021f0000000000 ....T.c@.^1@......!....... +2103 5.912261009 127.0.0.1:57433 127.0.0.1:57415 375855710 12 ffffffff65bb0a0000000000 ....e....... +2105 5.912875175 127.0.0.1:57433 127.0.0.1:57415 375855722 12 16000000679a0a0000000000 ....g....... +2107 5.913097382 127.0.0.1:57433 127.0.0.1:57415 375855734 22 1200000021021f000000000001000300000000000000 ....!................. +2109 5.913383484 127.0.0.1:57415 127.0.0.1:57433 3331525265 12 ffffffff679a0a0000000000 ....g....... +2111 5.916875601 127.0.0.1:57415 127.0.0.1:57433 3331525277 12 6500000066bb0a0000000000 e...f....... +2113 5.917070389 127.0.0.1:57415 127.0.0.1:57433 3331525289 101 1e0000001c2118d0c46f33bb01000300000096ff01000000000002290ec39d01 .....!...o3................)......?.....3...|8.. +2115 5.917314529 127.0.0.1:57433 127.0.0.1:57415 375855756 12 ffffffff66bb0a0000000000 ....f....... +2117 5.918708563 127.0.0.1:57433 127.0.0.1:57415 375855768 12 34000000689a0a0000000000 4...h....... +2119 5.918869972 127.0.0.1:57433 127.0.0.1:57415 375855780 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................~.L +2121 5.919313431 127.0.0.1:57415 127.0.0.1:57433 3331525390 12 ffffffff689a0a0000000000 ....h....... +2123 5.919864178 127.0.0.1:57415 127.0.0.1:57433 3331525402 12 1e00000067bb0a0000000000 ....g....... +2125 5.920033693 127.0.0.1:57415 127.0.0.1:57433 3331525414 30 1a00000055ceff62b21b3a5001000300000023021f000000000000000000 ....U..b..:P......#........... +2127 5.920369148 127.0.0.1:57433 127.0.0.1:57415 375855832 12 ffffffff67bb0a0000000000 ....g....... +2129 5.920716524 127.0.0.1:57433 127.0.0.1:57415 375855844 12 1a000000699a0a0000000000 ....i....... +2131 5.920865297 127.0.0.1:57433 127.0.0.1:57415 375855856 26 1600000023021f00000000000100030000000000000000000000 ....#..................... +2133 5.921145678 127.0.0.1:57415 127.0.0.1:57433 3331525444 12 ffffffff699a0a0000000000 ....i....... +2137 6.014629364 127.0.0.1:57433 127.0.0.1:57415 375855882 12 feffffff0038010011380100 .....8...8.. +2140 6.014810562 127.0.0.1:57415 127.0.0.1:57433 3331525456 38 1a00000068bb0a000000000016000000548f6340e25e31400100030000002502 ....h...........T.c@.^1@......%....... +2143 6.015212536 127.0.0.1:57433 127.0.0.1:57415 375855894 12 ffffffff68bb0a0000000000 ....h....... +2146 6.016143799 127.0.0.1:57433 127.0.0.1:57415 375855906 12 160000006a9a0a0000000000 ....j....... +2148 6.016385317 127.0.0.1:57433 127.0.0.1:57415 375855918 22 1200000025021f000000000001000300000000000000 ....%................. +2150 6.016722441 127.0.0.1:57415 127.0.0.1:57433 3331525494 12 ffffffff6a9a0a0000000000 ....j....... +2153 6.071613073 127.0.0.1:57415 127.0.0.1:57433 3331525506 12 feffffff1238010000380100 .....8...8.. +2162 6.118396282 127.0.0.1:57415 127.0.0.1:57433 3331525518 12 1a00000069bb0a0000000000 ....i....... +2164 6.118568182 127.0.0.1:57415 127.0.0.1:57433 3331525530 26 16000000548f6340e25e314001000300000027021f0000000000 ....T.c@.^1@......'....... +2166 6.118994474 127.0.0.1:57433 127.0.0.1:57415 375855940 12 ffffffff69bb0a0000000000 ....i....... +2168 6.119543552 127.0.0.1:57433 127.0.0.1:57415 375855952 12 160000006b9a0a0000000000 ....k....... +2170 6.119708061 127.0.0.1:57433 127.0.0.1:57415 375855964 22 1200000027021f000000000001000300000000000000 ....'................. +2172 6.119976282 127.0.0.1:57415 127.0.0.1:57433 3331525556 12 ffffffff6b9a0a0000000000 ....k....... +2180 6.221194744 127.0.0.1:57415 127.0.0.1:57433 3331525568 12 650000006abb0a0000000000 e...j....... +2182 6.221454859 127.0.0.1:57415 127.0.0.1:57433 3331525580 101 1e0000001c2118d0c46f33bb01000300000097ff010000000000322a0ec39d01 .....!...o3...............2*......?.....3...|8.. +2184 6.221650839 127.0.0.1:57415 127.0.0.1:57433 3331525681 12 1a0000006bbb0a0000000000 ....k....... +2186 6.221773863 127.0.0.1:57415 127.0.0.1:57433 3331525693 26 16000000548f6340e25e314001000300000029021f0000000000 ....T.c@.^1@......)....... +2187 6.221787930 127.0.0.1:57433 127.0.0.1:57415 375855986 12 ffffffff6abb0a0000000000 ....j....... +2190 6.222007751 127.0.0.1:57433 127.0.0.1:57415 375855998 12 ffffffff6bbb0a0000000000 ....k....... +2192 6.222476721 127.0.0.1:57433 127.0.0.1:57415 375856010 12 160000006c9a0a0000000000 ....l....... +2194 6.222646475 127.0.0.1:57433 127.0.0.1:57415 375856022 22 1200000029021f000000000001000300000000000000 ....)................. +2196 6.222805977 127.0.0.1:57433 127.0.0.1:57415 375856044 12 340000006d9a0a0000000000 4...m....... +2198 6.222893953 127.0.0.1:57433 127.0.0.1:57415 375856056 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................L +2199 6.222916842 127.0.0.1:57415 127.0.0.1:57433 3331525719 12 ffffffff6c9a0a0000000000 ....l....... +2201 6.223116398 127.0.0.1:57415 127.0.0.1:57433 3331525731 12 ffffffff6d9a0a0000000000 ....m....... +2202 6.223922968 127.0.0.1:57415 127.0.0.1:57433 3331525743 12 1e0000006cbb0a0000000000 ....l....... +2204 6.224127293 127.0.0.1:57415 127.0.0.1:57433 3331525755 30 1a00000055ceff62b21b3a500100030000002b021f000000000000000000 ....U..b..:P......+........... +2206 6.224545956 127.0.0.1:57433 127.0.0.1:57415 375856108 12 ffffffff6cbb0a0000000000 ....l....... +2207 6.224887609 127.0.0.1:57433 127.0.0.1:57415 375856120 12 1a0000006e9a0a0000000000 ....n....... +2209 6.225250959 127.0.0.1:57433 127.0.0.1:57415 375856132 26 160000002b021f00000000000100030000000000000000000000 ....+..................... +2211 6.225527287 127.0.0.1:57415 127.0.0.1:57433 3331525785 12 ffffffff6e9a0a0000000000 ....n....... +2215 6.324945688 127.0.0.1:57415 127.0.0.1:57433 3331525797 12 1a0000006dbb0a0000000000 ....m....... +2217 6.325141668 127.0.0.1:57415 127.0.0.1:57433 3331525809 26 16000000548f6340e25e31400100030000002d021f0000000000 ....T.c@.^1@......-....... +2219 6.325559855 127.0.0.1:57433 127.0.0.1:57415 375856158 12 ffffffff6dbb0a0000000000 ....m....... +2221 6.326254368 127.0.0.1:57433 127.0.0.1:57415 375856170 12 160000006f9a0a0000000000 ....o....... +2223 6.326567650 127.0.0.1:57433 127.0.0.1:57415 375856182 22 120000002d021f000000000001000300000000000000 ....-................. +2225 6.326902866 127.0.0.1:57415 127.0.0.1:57433 3331525835 12 ffffffff6f9a0a0000000000 ....o....... +2229 6.428864241 127.0.0.1:57415 127.0.0.1:57433 3331525847 12 1a0000006ebb0a0000000000 ....n....... +2231 6.429033518 127.0.0.1:57415 127.0.0.1:57433 3331525859 26 16000000548f6340e25e31400100030000002f021f0000000000 ....T.c@.^1@....../....... +2233 6.429378271 127.0.0.1:57433 127.0.0.1:57415 375856204 12 ffffffff6ebb0a0000000000 ....n....... +2235 6.430672407 127.0.0.1:57433 127.0.0.1:57415 375856216 12 16000000709a0a0000000000 ....p....... +2237 6.430899858 127.0.0.1:57433 127.0.0.1:57415 375856228 22 120000002f021f000000000001000300000000000000 ..../................. +2239 6.431255102 127.0.0.1:57415 127.0.0.1:57433 3331525885 12 ffffffff709a0a0000000000 ....p....... +2244 6.515846968 127.0.0.1:57433 127.0.0.1:57415 375856250 12 feffffff0138010012380100 .....8...8.. +2249 6.525126219 127.0.0.1:57415 127.0.0.1:57433 3331525897 12 220000006fbb0a0000000000 "...o....... +2251 6.525305033 127.0.0.1:57415 127.0.0.1:57433 3331525909 34 1e0000001c2118d0c46f33bb01000300000098ff010000000000622b0ec39d01 .....!...o3...............b+...... +2253 6.525395155 127.0.0.1:57415 127.0.0.1:57433 3331525943 12 4300000070bb0a0000000000 C...p....... +2255 6.525479078 127.0.0.1:57415 127.0.0.1:57433 3331525955 67 3f000000980433cb0cb47c38010003000000010000000098ff0100000000003d ?.....3...|8...................=B.....&......... +2257 6.525640249 127.0.0.1:57433 127.0.0.1:57415 375856262 12 ffffffff6fbb0a0000000000 ....o....... +2259 6.525883675 127.0.0.1:57433 127.0.0.1:57415 375856274 12 ffffffff70bb0a0000000000 ....p....... +2261 6.527145863 127.0.0.1:57433 127.0.0.1:57415 375856286 12 34000000719a0a0000000000 4...q....... +2263 6.527347088 127.0.0.1:57433 127.0.0.1:57415 375856298 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................T.M +2265 6.527643442 127.0.0.1:57415 127.0.0.1:57433 3331526022 12 ffffffff719a0a0000000000 ....q....... +2267 6.528448105 127.0.0.1:57415 127.0.0.1:57433 3331526034 12 1e00000071bb0a0000000000 ....q....... +2269 6.528590441 127.0.0.1:57415 127.0.0.1:57433 3331526046 30 1a00000055ceff62b21b3a5001000300000031021f000000000000000000 ....U..b..:P......1........... +2271 6.528877497 127.0.0.1:57433 127.0.0.1:57415 375856350 12 ffffffff71bb0a0000000000 ....q....... +2273 6.529370070 127.0.0.1:57433 127.0.0.1:57415 375856362 12 1a000000729a0a0000000000 ....r....... +2275 6.529582262 127.0.0.1:57433 127.0.0.1:57415 375856374 26 1600000031021f00000000000100030000000000000000000000 ....1..................... +2277 6.529857397 127.0.0.1:57415 127.0.0.1:57433 3331526076 12 ffffffff729a0a0000000000 ....r....... +2279 6.533478022 127.0.0.1:57415 127.0.0.1:57433 3331526088 12 1a00000072bb0a0000000000 ....r....... +2281 6.533615112 127.0.0.1:57415 127.0.0.1:57433 3331526100 26 16000000548f6340e25e314001000300000033021f0000000000 ....T.c@.^1@......3....... +2283 6.534037113 127.0.0.1:57433 127.0.0.1:57415 375856400 12 ffffffff72bb0a0000000000 ....r....... +2285 6.534413576 127.0.0.1:57433 127.0.0.1:57415 375856412 12 16000000739a0a0000000000 ....s....... +2287 6.534625769 127.0.0.1:57433 127.0.0.1:57415 375856424 22 1200000033021f000000000001000300000000000000 ....3................. +2289 6.534927130 127.0.0.1:57415 127.0.0.1:57433 3331526126 12 ffffffff739a0a0000000000 ....s....... +2292 6.574143648 127.0.0.1:57415 127.0.0.1:57433 3331526138 12 feffffff1338010001380100 .....8...8.. +2301 6.637550831 127.0.0.1:57415 127.0.0.1:57433 3331526150 12 1a00000073bb0a0000000000 ....s....... +2303 6.637692213 127.0.0.1:57415 127.0.0.1:57433 3331526162 26 16000000548f6340e25e314001000300000035021f0000000000 ....T.c@.^1@......5....... +2305 6.638136148 127.0.0.1:57433 127.0.0.1:57415 375856446 12 ffffffff73bb0a0000000000 ....s....... +2307 6.638698578 127.0.0.1:57433 127.0.0.1:57415 375856458 12 16000000749a0a0000000000 ....t....... +2309 6.638924599 127.0.0.1:57433 127.0.0.1:57415 375856470 22 1200000035021f000000000001000300000000000000 ....5................. +2311 6.639157295 127.0.0.1:57415 127.0.0.1:57433 3331526188 12 ffffffff749a0a0000000000 ....t....... +2317 6.741018057 127.0.0.1:57415 127.0.0.1:57433 3331526200 12 1a00000074bb0a0000000000 ....t....... +2319 6.741296291 127.0.0.1:57415 127.0.0.1:57433 3331526212 26 16000000548f6340e25e314001000300000037021f0000000000 ....T.c@.^1@......7....... +2321 6.742007732 127.0.0.1:57433 127.0.0.1:57415 375856492 12 ffffffff74bb0a0000000000 ....t....... +2323 6.742301941 127.0.0.1:57433 127.0.0.1:57415 375856504 12 16000000759a0a0000000000 ....u....... +2325 6.742519140 127.0.0.1:57433 127.0.0.1:57415 375856516 22 1200000037021f000000000001000300000000000000 ....7................. +2327 6.742797375 127.0.0.1:57415 127.0.0.1:57433 3331526238 12 ffffffff759a0a0000000000 ....u....... +2329 6.829426765 127.0.0.1:57415 127.0.0.1:57433 3331526250 12 2200000075bb0a0000000000 "...u....... +2331 6.829621792 127.0.0.1:57415 127.0.0.1:57433 3331526262 34 1e0000001c2118d0c46f33bb01000300000099ff010000000000922c0ec39d01 .....!...o3................,...... +2333 6.829763412 127.0.0.1:57415 127.0.0.1:57433 3331526296 12 4300000076bb0a0000000000 C...v....... +2335 6.829848528 127.0.0.1:57415 127.0.0.1:57433 3331526308 67 3f000000980433cb0cb47c38010003000000010000000099ff0100000000003d ?.....3...|8...................=B.....&......... +2337 6.829996109 127.0.0.1:57433 127.0.0.1:57415 375856538 12 ffffffff75bb0a0000000000 ....u....... +2339 6.830278158 127.0.0.1:57433 127.0.0.1:57415 375856550 12 ffffffff76bb0a0000000000 ....v....... +2341 6.831090689 127.0.0.1:57433 127.0.0.1:57415 375856562 12 34000000769a0a0000000000 4...v....... +2343 6.831259489 127.0.0.1:57433 127.0.0.1:57415 375856574 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............l.@M +2345 6.831587076 127.0.0.1:57415 127.0.0.1:57433 3331526375 12 ffffffff769a0a0000000000 ....v....... +2347 6.832336426 127.0.0.1:57415 127.0.0.1:57433 3331526387 12 1e00000077bb0a0000000000 ....w....... +2349 6.832474709 127.0.0.1:57415 127.0.0.1:57433 3331526399 30 1a00000055ceff62b21b3a5001000300000039021f000000000000000000 ....U..b..:P......9........... +2351 6.832692146 127.0.0.1:57433 127.0.0.1:57415 375856626 12 ffffffff77bb0a0000000000 ....w....... +2353 6.833130360 127.0.0.1:57433 127.0.0.1:57415 375856638 12 1a000000779a0a0000000000 ....w....... +2355 6.833308935 127.0.0.1:57433 127.0.0.1:57415 375856650 26 1600000039021f00000000000100030000000000000000000000 ....9..................... +2357 6.833624363 127.0.0.1:57415 127.0.0.1:57433 3331526429 12 ffffffff779a0a0000000000 ....w....... +2359 6.843726397 127.0.0.1:57415 127.0.0.1:57433 3331526441 12 1a00000078bb0a0000000000 ....x....... +2361 6.843883753 127.0.0.1:57415 127.0.0.1:57433 3331526453 26 16000000548f6340e25e31400100030000003b021f0000000000 ....T.c@.^1@......;....... +2363 6.844219208 127.0.0.1:57433 127.0.0.1:57415 375856676 12 ffffffff78bb0a0000000000 ....x....... +2365 6.844639301 127.0.0.1:57433 127.0.0.1:57415 375856688 12 16000000789a0a0000000000 ....x....... +2367 6.844806194 127.0.0.1:57433 127.0.0.1:57415 375856700 22 120000003b021f000000000001000300000000000000 ....;................. +2369 6.844994068 127.0.0.1:57415 127.0.0.1:57433 3331526479 12 ffffffff789a0a0000000000 ....x....... +2373 6.946285963 127.0.0.1:57415 127.0.0.1:57433 3331526491 12 1a00000079bb0a0000000000 ....y....... +2375 6.946560383 127.0.0.1:57415 127.0.0.1:57433 3331526503 26 16000000548f6340e25e31400100030000003d021f0000000000 ....T.c@.^1@......=....... +2377 6.946872473 127.0.0.1:57433 127.0.0.1:57415 375856722 12 ffffffff79bb0a0000000000 ....y....... +2379 6.947325468 127.0.0.1:57433 127.0.0.1:57415 375856734 12 16000000799a0a0000000000 ....y....... +2381 6.947488308 127.0.0.1:57433 127.0.0.1:57415 375856746 22 120000003d021f000000000001000300000000000000 ....=................. +2383 6.947765589 127.0.0.1:57415 127.0.0.1:57433 3331526529 12 ffffffff799a0a0000000000 ....y....... +2391 7.016530275 127.0.0.1:57433 127.0.0.1:57415 375856768 12 feffffff0238010013380100 .....8...8.. +2394 7.048909187 127.0.0.1:57415 127.0.0.1:57433 3331526541 12 1a0000007abb0a0000000000 ....z....... +2396 7.049139261 127.0.0.1:57415 127.0.0.1:57433 3331526553 26 16000000548f6340e25e31400100030000003f021f0000000000 ....T.c@.^1@......?....... +2398 7.049550533 127.0.0.1:57433 127.0.0.1:57415 375856780 12 ffffffff7abb0a0000000000 ....z....... +2400 7.049883366 127.0.0.1:57433 127.0.0.1:57415 375856792 12 160000007a9a0a0000000000 ....z....... +2402 7.050041676 127.0.0.1:57433 127.0.0.1:57415 375856804 22 120000003f021f000000000001000300000000000000 ....?................. +2404 7.050373077 127.0.0.1:57415 127.0.0.1:57433 3331526579 12 ffffffff7a9a0a0000000000 ....z....... +2408 7.075774670 127.0.0.1:57415 127.0.0.1:57433 3331526591 12 feffffff1438010002380100 .....8...8.. +2416 7.134387016 127.0.0.1:57415 127.0.0.1:57433 3331526603 12 220000007bbb0a0000000000 "...{....... +2418 7.134596348 127.0.0.1:57415 127.0.0.1:57433 3331526615 34 1e0000001c2118d0c46f33bb0100030000009aff010000000000c32d0ec39d01 .....!...o3................-...... +2420 7.134741783 127.0.0.1:57415 127.0.0.1:57433 3331526649 12 430000007cbb0a0000000000 C...|....... +2422 7.134827137 127.0.0.1:57415 127.0.0.1:57433 3331526661 67 3f000000980433cb0cb47c3801000300000001000000009aff0100000000003d ?.....3...|8...................=B.....&......... +2424 7.134997368 127.0.0.1:57433 127.0.0.1:57415 375856826 12 ffffffff7bbb0a0000000000 ....{....... +2426 7.135271072 127.0.0.1:57433 127.0.0.1:57415 375856838 12 ffffffff7cbb0a0000000000 ....|....... +2428 7.136113405 127.0.0.1:57433 127.0.0.1:57415 375856850 12 340000007b9a0a0000000000 4...{....... +2430 7.136316776 127.0.0.1:57433 127.0.0.1:57415 375856862 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................>oM +2432 7.136537790 127.0.0.1:57415 127.0.0.1:57433 3331526728 12 ffffffff7b9a0a0000000000 ....{....... +2434 7.137310982 127.0.0.1:57415 127.0.0.1:57433 3331526740 12 1e0000007dbb0a0000000000 ....}....... +2436 7.137461424 127.0.0.1:57415 127.0.0.1:57433 3331526752 30 1a00000055ceff62b21b3a5001000300000041021f000000000000000000 ....U..b..:P......A........... +2438 7.137767792 127.0.0.1:57433 127.0.0.1:57415 375856914 12 ffffffff7dbb0a0000000000 ....}....... +2440 7.138143778 127.0.0.1:57433 127.0.0.1:57415 375856926 12 1a0000007c9a0a0000000000 ....|....... +2442 7.138360023 127.0.0.1:57433 127.0.0.1:57415 375856938 26 1600000041021f00000000000100030000000000000000000000 ....A..................... +2444 7.138583899 127.0.0.1:57415 127.0.0.1:57433 3331526782 12 ffffffff7c9a0a0000000000 ....|....... +2446 7.151676416 127.0.0.1:57415 127.0.0.1:57433 3331526794 12 1a0000007ebb0a0000000000 ....~....... +2448 7.151827335 127.0.0.1:57415 127.0.0.1:57433 3331526806 26 16000000548f6340e25e314001000300000043021f0000000000 ....T.c@.^1@......C....... +2450 7.152114868 127.0.0.1:57433 127.0.0.1:57415 375856964 12 ffffffff7ebb0a0000000000 ....~....... +2452 7.152526617 127.0.0.1:57433 127.0.0.1:57415 375856976 12 160000007d9a0a0000000000 ....}....... +2454 7.152715206 127.0.0.1:57433 127.0.0.1:57415 375856988 22 1200000043021f000000000001000300000000000000 ....C................. +2456 7.153019190 127.0.0.1:57415 127.0.0.1:57433 3331526832 12 ffffffff7d9a0a0000000000 ....}....... +2462 7.254195452 127.0.0.1:57415 127.0.0.1:57433 3331526844 12 1a0000007fbb0a0000000000 ............ +2464 7.254420280 127.0.0.1:57415 127.0.0.1:57433 3331526856 26 16000000548f6340e25e314001000300000045021f0000000000 ....T.c@.^1@......E....... +2466 7.254972458 127.0.0.1:57433 127.0.0.1:57415 375857010 12 ffffffff7fbb0a0000000000 ............ +2468 7.255618334 127.0.0.1:57433 127.0.0.1:57415 375857022 12 160000007e9a0a0000000000 ....~....... +2470 7.255836487 127.0.0.1:57433 127.0.0.1:57415 375857034 22 1200000045021f000000000001000300000000000000 ....E................. +2472 7.256148338 127.0.0.1:57415 127.0.0.1:57433 3331526882 12 ffffffff7e9a0a0000000000 ....~....... +2474 7.358998060 127.0.0.1:57415 127.0.0.1:57433 3331526894 12 1a00000080bb0a0000000000 ............ +2476 7.359193802 127.0.0.1:57415 127.0.0.1:57433 3331526906 26 16000000548f6340e25e314001000300000047021f0000000000 ....T.c@.^1@......G....... +2478 7.359573841 127.0.0.1:57433 127.0.0.1:57415 375857056 12 ffffffff80bb0a0000000000 ............ +2480 7.360042572 127.0.0.1:57433 127.0.0.1:57415 375857068 12 160000007f9a0a0000000000 ............ +2482 7.360198259 127.0.0.1:57433 127.0.0.1:57415 375857080 22 1200000047021f000000000001000300000000000000 ....G................. +2484 7.360529423 127.0.0.1:57415 127.0.0.1:57433 3331526932 12 ffffffff7f9a0a0000000000 ............ +2500 7.438880205 127.0.0.1:57415 127.0.0.1:57433 3331526944 12 6500000081bb0a0000000000 e........... +2502 7.439095736 127.0.0.1:57415 127.0.0.1:57433 3331526956 101 1e0000001c2118d0c46f33bb0100030000009bff010000000000f42e0ec39d01 .....!...o3.......................?.....3...|8.. +2504 7.439519882 127.0.0.1:57433 127.0.0.1:57415 375857102 12 ffffffff81bb0a0000000000 ............ +2506 7.441679478 127.0.0.1:57433 127.0.0.1:57415 375857114 12 34000000809a0a0000000000 4........... +2508 7.441875696 127.0.0.1:57433 127.0.0.1:57415 375857126 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................M +2510 7.442159653 127.0.0.1:57415 127.0.0.1:57433 3331527057 12 ffffffff809a0a0000000000 ............ +2512 7.442970991 127.0.0.1:57415 127.0.0.1:57433 3331527069 12 1e00000082bb0a0000000000 ............ +2514 7.443116903 127.0.0.1:57415 127.0.0.1:57433 3331527081 30 1a00000055ceff62b21b3a5001000300000049021f000000000000000000 ....U..b..:P......I........... +2516 7.443778515 127.0.0.1:57433 127.0.0.1:57415 375857178 12 ffffffff82bb0a0000000000 ............ +2518 7.444022179 127.0.0.1:57433 127.0.0.1:57415 375857190 12 1a000000819a0a0000000000 ............ +2520 7.444200277 127.0.0.1:57433 127.0.0.1:57415 375857202 26 1600000049021f00000000000100030000000000000000000000 ....I..................... +2522 7.444491863 127.0.0.1:57415 127.0.0.1:57433 3331527111 12 ffffffff819a0a0000000000 ............ +2524 7.461651564 127.0.0.1:57415 127.0.0.1:57433 3331527123 12 1a00000083bb0a0000000000 ............ +2526 7.461808443 127.0.0.1:57415 127.0.0.1:57433 3331527135 26 16000000548f6340e25e31400100030000004b021f0000000000 ....T.c@.^1@......K....... +2528 7.462174177 127.0.0.1:57433 127.0.0.1:57415 375857228 12 ffffffff83bb0a0000000000 ............ +2530 7.462615490 127.0.0.1:57433 127.0.0.1:57415 375857240 12 16000000829a0a0000000000 ............ +2532 7.462823868 127.0.0.1:57433 127.0.0.1:57415 375857252 22 120000004b021f000000000001000300000000000000 ....K................. +2534 7.463092566 127.0.0.1:57415 127.0.0.1:57433 3331527161 12 ffffffff829a0a0000000000 ............ +2542 7.517233849 127.0.0.1:57433 127.0.0.1:57415 375857274 12 feffffff0338010014380100 .....8...8.. +2544 7.564974070 127.0.0.1:57415 127.0.0.1:57433 3331527173 12 1a00000084bb0a0000000000 ............ +2546 7.565157652 127.0.0.1:57415 127.0.0.1:57433 3331527185 26 16000000548f6340e25e31400100030000004d021f0000000000 ....T.c@.^1@......M....... +2548 7.565616369 127.0.0.1:57433 127.0.0.1:57415 375857286 12 ffffffff84bb0a0000000000 ............ +2550 7.566246271 127.0.0.1:57433 127.0.0.1:57415 375857298 12 16000000839a0a0000000000 ............ +2552 7.566476583 127.0.0.1:57433 127.0.0.1:57415 375857310 22 120000004d021f000000000001000300000000000000 ....M................. +2554 7.566778660 127.0.0.1:57415 127.0.0.1:57433 3331527211 12 ffffffff839a0a0000000000 ............ +2557 7.576553345 127.0.0.1:57415 127.0.0.1:57433 3331527223 12 feffffff1538010003380100 .....8...8.. +2566 7.668958426 127.0.0.1:57415 127.0.0.1:57433 3331527235 12 1a00000085bb0a0000000000 ............ +2568 7.669141531 127.0.0.1:57415 127.0.0.1:57433 3331527247 26 16000000548f6340e25e31400100030000004f021f0000000000 ....T.c@.^1@......O....... +2570 7.669607878 127.0.0.1:57433 127.0.0.1:57415 375857332 12 ffffffff85bb0a0000000000 ............ +2572 7.672155380 127.0.0.1:57433 127.0.0.1:57415 375857344 12 16000000849a0a0000000000 ............ +2574 7.672516346 127.0.0.1:57433 127.0.0.1:57415 375857356 22 120000004f021f000000000001000300000000000000 ....O................. +2576 7.672801733 127.0.0.1:57415 127.0.0.1:57433 3331527273 12 ffffffff849a0a0000000000 ............ +2582 7.745324373 127.0.0.1:57415 127.0.0.1:57433 3331527285 12 6500000086bb0a0000000000 e........... +2584 7.745613337 127.0.0.1:57415 127.0.0.1:57433 3331527297 101 1e0000001c2118d0c46f33bb0100030000009cff01000000000026300ec39d01 .....!...o3...............&0......?.....3...|8.. +2586 7.746248245 127.0.0.1:57433 127.0.0.1:57415 375857378 12 ffffffff86bb0a0000000000 ............ +2588 7.748026848 127.0.0.1:57433 127.0.0.1:57415 375857390 12 34000000859a0a0000000000 4........... +2590 7.748552799 127.0.0.1:57433 127.0.0.1:57415 375857402 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............>..M +2592 7.749630928 127.0.0.1:57415 127.0.0.1:57433 3331527398 12 ffffffff859a0a0000000000 ............ +2594 7.750563145 127.0.0.1:57415 127.0.0.1:57433 3331527410 12 1e00000087bb0a0000000000 ............ +2596 7.750895500 127.0.0.1:57415 127.0.0.1:57433 3331527422 30 1a00000055ceff62b21b3a5001000300000051021f000000000000000000 ....U..b..:P......Q........... +2598 7.751512289 127.0.0.1:57433 127.0.0.1:57415 375857454 12 ffffffff87bb0a0000000000 ............ +2600 7.752252102 127.0.0.1:57433 127.0.0.1:57415 375857466 12 1a000000869a0a0000000000 ............ +2602 7.752772808 127.0.0.1:57433 127.0.0.1:57415 375857478 26 1600000051021f00000000000100030000000000000000000000 ....Q..................... +2604 7.753776312 127.0.0.1:57415 127.0.0.1:57433 3331527452 12 ffffffff869a0a0000000000 ............ +2606 7.775517702 127.0.0.1:57415 127.0.0.1:57433 3331527464 12 1a00000088bb0a0000000000 ............ +2608 7.775668383 127.0.0.1:57415 127.0.0.1:57433 3331527476 26 16000000548f6340e25e314001000300000053021f0000000000 ....T.c@.^1@......S....... +2610 7.775919199 127.0.0.1:57433 127.0.0.1:57415 375857504 12 ffffffff88bb0a0000000000 ............ +2612 7.776536703 127.0.0.1:57433 127.0.0.1:57415 375857516 12 16000000879a0a0000000000 ............ +2614 7.776743889 127.0.0.1:57433 127.0.0.1:57415 375857528 22 1200000053021f000000000001000300000000000000 ....S................. +2616 7.777121067 127.0.0.1:57415 127.0.0.1:57433 3331527502 12 ffffffff879a0a0000000000 ............ +2619 7.878652334 127.0.0.1:57415 127.0.0.1:57433 3331527514 12 1a00000089bb0a0000000000 ............ +2621 7.878836870 127.0.0.1:57415 127.0.0.1:57433 3331527526 26 16000000548f6340e25e314001000300000055021f0000000000 ....T.c@.^1@......U....... +2623 7.879297972 127.0.0.1:57433 127.0.0.1:57415 375857550 12 ffffffff89bb0a0000000000 ............ +2625 7.879768372 127.0.0.1:57433 127.0.0.1:57415 375857562 12 16000000889a0a0000000000 ............ +2627 7.879937887 127.0.0.1:57433 127.0.0.1:57415 375857574 22 1200000055021f000000000001000300000000000000 ....U................. +2629 7.880303383 127.0.0.1:57415 127.0.0.1:57433 3331527552 12 ffffffff889a0a0000000000 ............ +2635 7.981577396 127.0.0.1:57415 127.0.0.1:57433 3331527564 12 1a0000008abb0a0000000000 ............ +2638 7.981757879 127.0.0.1:57415 127.0.0.1:57433 3331527576 26 16000000548f6340e25e314001000300000057021f0000000000 ....T.c@.^1@......W....... +2640 7.982139349 127.0.0.1:57433 127.0.0.1:57415 375857596 12 ffffffff8abb0a0000000000 ............ +2642 7.982805729 127.0.0.1:57433 127.0.0.1:57415 375857608 12 16000000899a0a0000000000 ............ +2644 7.982954264 127.0.0.1:57433 127.0.0.1:57415 375857620 22 1200000057021f000000000001000300000000000000 ....W................. +2646 7.983190298 127.0.0.1:57415 127.0.0.1:57433 3331527602 12 ffffffff899a0a0000000000 ............ +2654 8.017830133 127.0.0.1:57433 127.0.0.1:57415 375857642 12 feffffff0438010015380100 .....8...8.. +2656 8.053230524 127.0.0.1:57415 127.0.0.1:57433 3331527614 12 650000008bbb0a0000000000 e........... +2658 8.053422213 127.0.0.1:57415 127.0.0.1:57433 3331527626 101 1e0000001c2118d0c46f33bb0100030000009dff0100000000005a310ec39d01 .....!...o3...............Z1......?.....3...|8.. +2660 8.053928614 127.0.0.1:57433 127.0.0.1:57415 375857654 12 ffffffff8bbb0a0000000000 ............ +2662 8.054911137 127.0.0.1:57433 127.0.0.1:57415 375857666 12 340000008a9a0a0000000000 4........... +2664 8.055058002 127.0.0.1:57433 127.0.0.1:57415 375857678 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................t.M +2666 8.055361509 127.0.0.1:57415 127.0.0.1:57433 3331527727 12 ffffffff8a9a0a0000000000 ............ +2668 8.056164265 127.0.0.1:57415 127.0.0.1:57433 3331527739 12 1e0000008cbb0a0000000000 ............ +2670 8.056395769 127.0.0.1:57415 127.0.0.1:57433 3331527751 30 1a00000055ceff62b21b3a5001000300000059021f000000000000000000 ....U..b..:P......Y........... +2672 8.056724787 127.0.0.1:57433 127.0.0.1:57415 375857730 12 ffffffff8cbb0a0000000000 ............ +2674 8.057215929 127.0.0.1:57433 127.0.0.1:57415 375857742 12 1a0000008b9a0a0000000000 ............ +2676 8.057417393 127.0.0.1:57433 127.0.0.1:57415 375857754 26 1600000059021f00000000000100030000000000000000000000 ....Y..................... +2678 8.057677984 127.0.0.1:57415 127.0.0.1:57433 3331527781 12 ffffffff8b9a0a0000000000 ............ +2683 8.077590704 127.0.0.1:57415 127.0.0.1:57433 3331527793 12 feffffff1638010004380100 .....8...8.. +2685 8.085793734 127.0.0.1:57415 127.0.0.1:57433 3331527805 12 1a0000008dbb0a0000000000 ............ +2687 8.085956097 127.0.0.1:57415 127.0.0.1:57433 3331527817 26 16000000548f6340e25e31400100030000005b021f0000000000 ....T.c@.^1@......[....... +2689 8.086264849 127.0.0.1:57433 127.0.0.1:57415 375857780 12 ffffffff8dbb0a0000000000 ............ +2691 8.086715698 127.0.0.1:57433 127.0.0.1:57415 375857792 12 160000008c9a0a0000000000 ............ +2693 8.086926699 127.0.0.1:57433 127.0.0.1:57415 375857804 22 120000005b021f000000000001000300000000000000 ....[................. +2695 8.087287188 127.0.0.1:57415 127.0.0.1:57433 3331527843 12 ffffffff8c9a0a0000000000 ............ +2704 8.189714193 127.0.0.1:57415 127.0.0.1:57433 3331527855 12 1a0000008ebb0a0000000000 ............ +2706 8.190011978 127.0.0.1:57415 127.0.0.1:57433 3331527867 26 16000000548f6340e25e31400100030000005d021f0000000000 ....T.c@.^1@......]....... +2708 8.190542221 127.0.0.1:57433 127.0.0.1:57415 375857826 12 ffffffff8ebb0a0000000000 ............ +2710 8.191155434 127.0.0.1:57433 127.0.0.1:57415 375857838 12 160000008d9a0a0000000000 ............ +2712 8.191376448 127.0.0.1:57433 127.0.0.1:57415 375857850 22 120000005d021f000000000001000300000000000000 ....]................. +2714 8.191671610 127.0.0.1:57415 127.0.0.1:57433 3331527893 12 ffffffff8d9a0a0000000000 ............ +2720 8.294605970 127.0.0.1:57415 127.0.0.1:57433 3331527905 12 1a0000008fbb0a0000000000 ............ +2722 8.294801235 127.0.0.1:57415 127.0.0.1:57433 3331527917 26 16000000548f6340e25e31400100030000005f021f0000000000 ....T.c@.^1@......_....... +2724 8.295511484 127.0.0.1:57433 127.0.0.1:57415 375857872 12 ffffffff8fbb0a0000000000 ............ +2726 8.296019077 127.0.0.1:57433 127.0.0.1:57415 375857884 12 160000008e9a0a0000000000 ............ +2729 8.296187401 127.0.0.1:57433 127.0.0.1:57415 375857896 22 120000005f021f000000000001000300000000000000 ...._................. +2731 8.296488762 127.0.0.1:57415 127.0.0.1:57433 3331527943 12 ffffffff8e9a0a0000000000 ............ +2733 8.356945276 127.0.0.1:57415 127.0.0.1:57433 3331527955 12 2200000090bb0a0000000000 "........... +2735 8.357208967 127.0.0.1:57415 127.0.0.1:57433 3331527967 34 1e0000001c2118d0c46f33bb0100030000009eff0100000000008a320ec39d01 .....!...o3................2...... +2737 8.357351780 127.0.0.1:57415 127.0.0.1:57433 3331528001 12 4300000091bb0a0000000000 C........... +2739 8.357436180 127.0.0.1:57415 127.0.0.1:57433 3331528013 67 3f000000980433cb0cb47c3801000300000001000000009eff0100000000003d ?.....3...|8...................=B.....&......... +2741 8.357561588 127.0.0.1:57433 127.0.0.1:57415 375857918 12 ffffffff90bb0a0000000000 ............ +2743 8.357783079 127.0.0.1:57433 127.0.0.1:57415 375857930 12 ffffffff91bb0a0000000000 ............ +2745 8.358726263 127.0.0.1:57433 127.0.0.1:57415 375857942 12 340000008f9a0a0000000000 4........... +2747 8.358872175 127.0.0.1:57433 127.0.0.1:57415 375857954 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............<.)N +2749 8.359176636 127.0.0.1:57415 127.0.0.1:57433 3331528080 12 ffffffff8f9a0a0000000000 ............ +2751 8.359899521 127.0.0.1:57415 127.0.0.1:57433 3331528092 12 1e00000092bb0a0000000000 ............ +2753 8.360070467 127.0.0.1:57415 127.0.0.1:57433 3331528104 30 1a00000055ceff62b21b3a5001000300000061021f000000000000000000 ....U..b..:P......a........... +2755 8.360355377 127.0.0.1:57433 127.0.0.1:57415 375858006 12 ffffffff92bb0a0000000000 ............ +2757 8.360856533 127.0.0.1:57433 127.0.0.1:57415 375858018 12 1a000000909a0a0000000000 ............ +2759 8.361094236 127.0.0.1:57433 127.0.0.1:57415 375858030 26 1600000061021f00000000000100030000000000000000000000 ....a..................... +2761 8.361270666 127.0.0.1:57415 127.0.0.1:57433 3331528134 12 ffffffff909a0a0000000000 ............ +2763 8.397751808 127.0.0.1:57415 127.0.0.1:57433 3331528146 12 1a00000093bb0a0000000000 ............ +2765 8.397936583 127.0.0.1:57415 127.0.0.1:57433 3331528158 26 16000000548f6340e25e314001000300000063021f0000000000 ....T.c@.^1@......c....... +2767 8.398403168 127.0.0.1:57433 127.0.0.1:57415 375858056 12 ffffffff93bb0a0000000000 ............ +2769 8.398856401 127.0.0.1:57433 127.0.0.1:57415 375858068 12 16000000919a0a0000000000 ............ +2771 8.399087429 127.0.0.1:57433 127.0.0.1:57415 375858080 22 1200000063021f000000000001000300000000000000 ....c................. +2773 8.399377584 127.0.0.1:57415 127.0.0.1:57433 3331528184 12 ffffffff919a0a0000000000 ............ +2784 8.501682997 127.0.0.1:57415 127.0.0.1:57433 3331528196 12 1a00000094bb0a0000000000 ............ +2786 8.501871109 127.0.0.1:57415 127.0.0.1:57433 3331528208 26 16000000548f6340e25e314001000300000065021f0000000000 ....T.c@.^1@......e....... +2788 8.502323151 127.0.0.1:57433 127.0.0.1:57415 375858102 12 ffffffff94bb0a0000000000 ............ +2790 8.502943993 127.0.0.1:57433 127.0.0.1:57415 375858114 12 16000000929a0a0000000000 ............ +2792 8.503132582 127.0.0.1:57433 127.0.0.1:57415 375858126 22 1200000065021f000000000001000300000000000000 ....e................. +2794 8.503400564 127.0.0.1:57415 127.0.0.1:57433 3331528234 12 ffffffff929a0a0000000000 ............ +2803 8.519495249 127.0.0.1:57433 127.0.0.1:57415 375858148 12 feffffff0538010016380100 .....8...8.. +2806 8.578344584 127.0.0.1:57415 127.0.0.1:57433 3331528246 12 feffffff1738010005380100 .....8...8.. +2814 8.604595900 127.0.0.1:57415 127.0.0.1:57433 3331528258 12 1a00000095bb0a0000000000 ............ +2816 8.604898453 127.0.0.1:57415 127.0.0.1:57433 3331528270 26 16000000548f6340e25e314001000300000067021f0000000000 ....T.c@.^1@......g....... +2818 8.605592489 127.0.0.1:57433 127.0.0.1:57415 375858160 12 ffffffff95bb0a0000000000 ............ +2821 8.606153727 127.0.0.1:57433 127.0.0.1:57415 375858172 12 16000000939a0a0000000000 ............ +2824 8.606301069 127.0.0.1:57433 127.0.0.1:57415 375858184 22 1200000067021f000000000001000300000000000000 ....g................. +2826 8.606550455 127.0.0.1:57415 127.0.0.1:57433 3331528296 12 ffffffff939a0a0000000000 ............ +2829 8.660909891 127.0.0.1:57415 127.0.0.1:57433 3331528308 12 6500000096bb0a0000000000 e........... +2831 8.661113024 127.0.0.1:57415 127.0.0.1:57433 3331528320 101 1e0000001c2118d0c46f33bb0100030000009fff010000000000ba330ec39d01 .....!...o3................3......?.....3...|8.. +2833 8.661588192 127.0.0.1:57433 127.0.0.1:57415 375858206 12 ffffffff96bb0a0000000000 ............ +2835 8.662483931 127.0.0.1:57433 127.0.0.1:57415 375858218 12 34000000949a0a0000000000 4........... +2837 8.662684917 127.0.0.1:57433 127.0.0.1:57415 375858230 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............?*XN +2839 8.662972450 127.0.0.1:57415 127.0.0.1:57433 3331528421 12 ffffffff949a0a0000000000 ............ +2841 8.664018869 127.0.0.1:57415 127.0.0.1:57433 3331528433 12 1e00000097bb0a0000000000 ............ +2843 8.664175272 127.0.0.1:57415 127.0.0.1:57433 3331528445 30 1a00000055ceff62b21b3a5001000300000069021f000000000000000000 ....U..b..:P......i........... +2845 8.664454937 127.0.0.1:57433 127.0.0.1:57415 375858282 12 ffffffff97bb0a0000000000 ............ +2847 8.664913654 127.0.0.1:57433 127.0.0.1:57415 375858294 12 1a000000959a0a0000000000 ............ +2849 8.665045500 127.0.0.1:57433 127.0.0.1:57415 375858306 26 1600000069021f00000000000100030000000000000000000000 ....i..................... +2851 8.665290356 127.0.0.1:57415 127.0.0.1:57433 3331528475 12 ffffffff959a0a0000000000 ............ +2854 8.707418680 127.0.0.1:57415 127.0.0.1:57433 3331528487 12 1a00000098bb0a0000000000 ............ +2856 8.707569838 127.0.0.1:57415 127.0.0.1:57433 3331528499 26 16000000548f6340e25e31400100030000006b021f0000000000 ....T.c@.^1@......k....... +2858 8.708034515 127.0.0.1:57433 127.0.0.1:57415 375858332 12 ffffffff98bb0a0000000000 ............ +2860 8.708557129 127.0.0.1:57433 127.0.0.1:57415 375858344 12 16000000969a0a0000000000 ............ +2862 8.708747387 127.0.0.1:57433 127.0.0.1:57415 375858356 22 120000006b021f000000000001000300000000000000 ....k................. +2864 8.709122181 127.0.0.1:57415 127.0.0.1:57433 3331528525 12 ffffffff969a0a0000000000 ............ +2872 8.810869932 127.0.0.1:57415 127.0.0.1:57433 3331528537 12 1a00000099bb0a0000000000 ............ +2874 8.811110973 127.0.0.1:57415 127.0.0.1:57433 3331528549 26 16000000548f6340e25e31400100030000006d021f0000000000 ....T.c@.^1@......m....... +2876 8.811562061 127.0.0.1:57433 127.0.0.1:57415 375858378 12 ffffffff99bb0a0000000000 ............ +2878 8.812093019 127.0.0.1:57433 127.0.0.1:57415 375858390 12 16000000979a0a0000000000 ............ +2880 8.812319517 127.0.0.1:57433 127.0.0.1:57415 375858402 22 120000006d021f000000000001000300000000000000 ....m................. +2882 8.812664032 127.0.0.1:57415 127.0.0.1:57433 3331528575 12 ffffffff979a0a0000000000 ............ +2887 8.914803982 127.0.0.1:57415 127.0.0.1:57433 3331528587 12 1a0000009abb0a0000000000 ............ +2889 8.915053844 127.0.0.1:57415 127.0.0.1:57433 3331528599 26 16000000548f6340e25e31400100030000006f021f0000000000 ....T.c@.^1@......o....... +2891 8.915560722 127.0.0.1:57433 127.0.0.1:57415 375858424 12 ffffffff9abb0a0000000000 ............ +2893 8.916002512 127.0.0.1:57433 127.0.0.1:57415 375858436 12 16000000989a0a0000000000 ............ +2895 8.916242838 127.0.0.1:57433 127.0.0.1:57415 375858448 22 120000006f021f000000000001000300000000000000 ....o................. +2897 8.916585922 127.0.0.1:57415 127.0.0.1:57433 3331528625 12 ffffffff989a0a0000000000 ............ +2977 8.966163874 127.0.0.1:57415 127.0.0.1:57433 3331528637 12 220000009bbb0a0000000000 "........... +2979 8.966348886 127.0.0.1:57415 127.0.0.1:57433 3331528649 34 1e0000001c2118d0c46f33bb010003000000a0ff010000000000ec340ec39d01 .....!...o3................4...... +2981 8.966487885 127.0.0.1:57415 127.0.0.1:57433 3331528683 12 430000009cbb0a0000000000 C........... +2983 8.966606617 127.0.0.1:57415 127.0.0.1:57433 3331528695 67 3f000000980433cb0cb47c380100030000000100000000a0ff0100000000003d ?.....3...|8...................=B.....&......... +2985 8.966959476 127.0.0.1:57433 127.0.0.1:57415 375858470 12 ffffffff9bbb0a0000000000 ............ +2987 8.967452288 127.0.0.1:57433 127.0.0.1:57415 375858482 12 ffffffff9cbb0a0000000000 ............ +2989 8.968039989 127.0.0.1:57433 127.0.0.1:57415 375858494 12 34000000999a0a0000000000 4........... +2991 8.968255758 127.0.0.1:57433 127.0.0.1:57415 375858506 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................N +2993 8.968710899 127.0.0.1:57415 127.0.0.1:57433 3331528762 12 ffffffff999a0a0000000000 ............ +2995 8.969521523 127.0.0.1:57415 127.0.0.1:57433 3331528774 12 1e0000009dbb0a0000000000 ............ +2997 8.969664097 127.0.0.1:57415 127.0.0.1:57433 3331528786 30 1a00000055ceff62b21b3a5001000300000071021f000000000000000000 ....U..b..:P......q........... +2999 8.970182419 127.0.0.1:57433 127.0.0.1:57415 375858558 12 ffffffff9dbb0a0000000000 ............ +3001 8.970789671 127.0.0.1:57433 127.0.0.1:57415 375858570 12 1a0000009a9a0a0000000000 ............ +3003 8.970971584 127.0.0.1:57433 127.0.0.1:57415 375858582 26 1600000071021f00000000000100030000000000000000000000 ....q..................... +3005 8.971220970 127.0.0.1:57415 127.0.0.1:57433 3331528816 12 ffffffff9a9a0a0000000000 ............ +3145 9.019025564 127.0.0.1:57415 127.0.0.1:57433 3331528828 12 1a0000009ebb0a0000000000 ............ +3148 9.019178391 127.0.0.1:57415 127.0.0.1:57433 3331528840 26 16000000548f6340e25e314001000300000073021f0000000000 ....T.c@.^1@......s....... +3152 9.019454479 127.0.0.1:57433 127.0.0.1:57415 375858608 12 ffffffff9ebb0a0000000000 ............ +3161 9.020081520 127.0.0.1:57433 127.0.0.1:57415 375858620 12 160000009b9a0a0000000000 ............ +3164 9.020244598 127.0.0.1:57433 127.0.0.1:57415 375858632 22 1200000073021f000000000001000300000000000000 ....s................. +3168 9.020493746 127.0.0.1:57415 127.0.0.1:57433 3331528866 12 ffffffff9b9a0a0000000000 ............ +3172 9.020706415 127.0.0.1:57433 127.0.0.1:57415 375858654 12 feffffff0638010017380100 .....8...8.. +3200 9.078942299 127.0.0.1:57415 127.0.0.1:57433 3331528878 12 feffffff1838010006380100 .....8...8.. +3385 9.122888088 127.0.0.1:57415 127.0.0.1:57433 3331528890 12 1a0000009fbb0a0000000000 ............ +3387 9.123067141 127.0.0.1:57415 127.0.0.1:57433 3331528902 26 16000000548f6340e25e314001000300000075021f0000000000 ....T.c@.^1@......u....... +3389 9.123350382 127.0.0.1:57433 127.0.0.1:57415 375858666 12 ffffffff9fbb0a0000000000 ............ +3391 9.124101162 127.0.0.1:57433 127.0.0.1:57415 375858678 12 160000009c9a0a0000000000 ............ +3393 9.124268532 127.0.0.1:57433 127.0.0.1:57415 375858690 22 1200000075021f000000000001000300000000000000 ....u................. +3395 9.124646902 127.0.0.1:57415 127.0.0.1:57433 3331528928 12 ffffffff9c9a0a0000000000 ............ +3546 9.226168633 127.0.0.1:57415 127.0.0.1:57433 3331528940 12 1a000000a0bb0a0000000000 ............ +3548 9.226413965 127.0.0.1:57415 127.0.0.1:57433 3331528952 26 16000000548f6340e25e314001000300000077021f0000000000 ....T.c@.^1@......w....... +3550 9.226790667 127.0.0.1:57433 127.0.0.1:57415 375858712 12 ffffffffa0bb0a0000000000 ............ +3552 9.227152586 127.0.0.1:57433 127.0.0.1:57415 375858724 12 160000009d9a0a0000000000 ............ +3554 9.227308750 127.0.0.1:57433 127.0.0.1:57415 375858736 22 1200000077021f000000000001000300000000000000 ....w................. +3558 9.227549553 127.0.0.1:57415 127.0.0.1:57433 3331528978 12 ffffffff9d9a0a0000000000 ............ +3589 9.270578623 127.0.0.1:57415 127.0.0.1:57433 3331528990 12 65000000a1bb0a0000000000 e........... +3591 9.270880938 127.0.0.1:57415 127.0.0.1:57433 3331529002 101 1e0000001c2118d0c46f33bb010003000000a1ff0100000000001b360ec39d01 .....!...o3................6......?.....3...|8.. +3593 9.271245003 127.0.0.1:57433 127.0.0.1:57415 375858758 12 ffffffffa1bb0a0000000000 ............ +3595 9.278803349 127.0.0.1:57433 127.0.0.1:57415 375858770 12 340000009e9a0a0000000000 4........... +3597 9.278994083 127.0.0.1:57433 127.0.0.1:57415 375858782 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................4.N +3599 9.279264927 127.0.0.1:57415 127.0.0.1:57433 3331529103 12 ffffffff9e9a0a0000000000 ............ +3601 9.280220985 127.0.0.1:57415 127.0.0.1:57433 3331529115 12 1e000000a2bb0a0000000000 ............ +3603 9.280528784 127.0.0.1:57415 127.0.0.1:57433 3331529127 30 1a00000055ceff62b21b3a5001000300000079021f000000000000000000 ....U..b..:P......y........... +3605 9.280790091 127.0.0.1:57433 127.0.0.1:57415 375858834 12 ffffffffa2bb0a0000000000 ............ +3607 9.282825708 127.0.0.1:57433 127.0.0.1:57415 375858846 12 1a0000009f9a0a0000000000 ............ +3609 9.283019781 127.0.0.1:57433 127.0.0.1:57415 375858858 26 1600000079021f00000000000100030000000000000000000000 ....y..................... +3611 9.283266068 127.0.0.1:57415 127.0.0.1:57433 3331529157 12 ffffffff9f9a0a0000000000 ............ +3613 9.329056025 127.0.0.1:57415 127.0.0.1:57433 3331529169 12 1a000000a3bb0a0000000000 ............ +3615 9.329238653 127.0.0.1:57415 127.0.0.1:57433 3331529181 26 16000000548f6340e25e31400100030000007b021f0000000000 ....T.c@.^1@......{....... +3617 9.329631329 127.0.0.1:57433 127.0.0.1:57415 375858884 12 ffffffffa3bb0a0000000000 ............ +3619 9.331075668 127.0.0.1:57433 127.0.0.1:57415 375858896 12 16000000a09a0a0000000000 ............ +3621 9.331220627 127.0.0.1:57433 127.0.0.1:57415 375858908 22 120000007b021f000000000001000300000000000000 ....{................. +3623 9.331567287 127.0.0.1:57415 127.0.0.1:57433 3331529207 12 ffffffffa09a0a0000000000 ............ +3628 9.434030771 127.0.0.1:57415 127.0.0.1:57433 3331529219 12 1a000000a4bb0a0000000000 ............ +3630 9.434209585 127.0.0.1:57415 127.0.0.1:57433 3331529231 26 16000000548f6340e25e31400100030000007d021f0000000000 ....T.c@.^1@......}....... +3632 9.434554100 127.0.0.1:57433 127.0.0.1:57415 375858930 12 ffffffffa4bb0a0000000000 ............ +3634 9.435302496 127.0.0.1:57433 127.0.0.1:57415 375858942 12 16000000a19a0a0000000000 ............ +3636 9.435525417 127.0.0.1:57433 127.0.0.1:57415 375858954 22 120000007d021f000000000001000300000000000000 ....}................. +3638 9.435807228 127.0.0.1:57415 127.0.0.1:57433 3331529257 12 ffffffffa19a0a0000000000 ............ +3677 9.521465778 127.0.0.1:57433 127.0.0.1:57415 375858976 12 feffffff0738010018380100 .....8...8.. +3679 9.537292719 127.0.0.1:57415 127.0.0.1:57433 3331529269 12 1a000000a5bb0a0000000000 ............ +3681 9.537494659 127.0.0.1:57415 127.0.0.1:57433 3331529281 26 16000000548f6340e25e31400100030000007f021f0000000000 ....T.c@.^1@.............. +3683 9.537768602 127.0.0.1:57433 127.0.0.1:57415 375858988 12 ffffffffa5bb0a0000000000 ............ +3685 9.538365841 127.0.0.1:57433 127.0.0.1:57415 375859000 12 16000000a29a0a0000000000 ............ +3687 9.538559914 127.0.0.1:57433 127.0.0.1:57415 375859012 22 120000007f021f000000000001000300000000000000 ...................... +3689 9.538881302 127.0.0.1:57415 127.0.0.1:57433 3331529307 12 ffffffffa29a0a0000000000 ............ +3692 9.579627514 127.0.0.1:57415 127.0.0.1:57433 3331529319 12 feffffff1938010007380100 .....8...8.. +3696 9.581160069 127.0.0.1:57415 127.0.0.1:57433 3331529331 12 65000000a6bb0a0000000000 e........... +3698 9.581394911 127.0.0.1:57415 127.0.0.1:57433 3331529343 101 1e0000001c2118d0c46f33bb010003000000a2ff01000000000052370ec39d01 .....!...o3...............R7......?.....3...|8.. +3700 9.581754684 127.0.0.1:57433 127.0.0.1:57415 375859034 12 ffffffffa6bb0a0000000000 ............ +3702 9.582695484 127.0.0.1:57433 127.0.0.1:57415 375859046 12 34000000a39a0a0000000000 4........... +3704 9.582902908 127.0.0.1:57433 127.0.0.1:57415 375859058 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................N +3706 9.583168745 127.0.0.1:57415 127.0.0.1:57433 3331529444 12 ffffffffa39a0a0000000000 ............ +3708 9.584038258 127.0.0.1:57415 127.0.0.1:57433 3331529456 12 1e000000a7bb0a0000000000 ............ +3710 9.584191561 127.0.0.1:57415 127.0.0.1:57433 3331529468 30 1a00000055ceff62b21b3a5001000300000081021f000000000000000000 ....U..b..:P.................. +3712 9.584543467 127.0.0.1:57433 127.0.0.1:57415 375859110 12 ffffffffa7bb0a0000000000 ............ +3714 9.584966898 127.0.0.1:57433 127.0.0.1:57415 375859122 12 1a000000a49a0a0000000000 ............ +3716 9.585159302 127.0.0.1:57433 127.0.0.1:57415 375859134 26 1600000081021f00000000000100030000000000000000000000 .......................... +3718 9.585467100 127.0.0.1:57415 127.0.0.1:57433 3331529498 12 ffffffffa49a0a0000000000 ............ +3744 9.640028954 127.0.0.1:57415 127.0.0.1:57433 3331529510 12 1a000000a8bb0a0000000000 ............ +3746 9.640198946 127.0.0.1:57415 127.0.0.1:57433 3331529522 26 16000000548f6340e25e314001000300000083021f0000000000 ....T.c@.^1@.............. +3749 9.640529394 127.0.0.1:57433 127.0.0.1:57415 375859160 12 ffffffffa8bb0a0000000000 ............ +3752 9.641014338 127.0.0.1:57433 127.0.0.1:57415 375859172 12 16000000a59a0a0000000000 ............ +3754 9.641184092 127.0.0.1:57433 127.0.0.1:57415 375859184 22 1200000083021f000000000001000300000000000000 ...................... +3756 9.641587734 127.0.0.1:57415 127.0.0.1:57433 3331529548 12 ffffffffa59a0a0000000000 ............ +3779 9.744030476 127.0.0.1:57415 127.0.0.1:57433 3331529560 12 1a000000a9bb0a0000000000 ............ +3781 9.744223356 127.0.0.1:57415 127.0.0.1:57433 3331529572 26 16000000548f6340e25e314001000300000085021f0000000000 ....T.c@.^1@.............. +3783 9.744851828 127.0.0.1:57433 127.0.0.1:57415 375859206 12 ffffffffa9bb0a0000000000 ............ +3785 9.745217323 127.0.0.1:57433 127.0.0.1:57415 375859218 12 16000000a69a0a0000000000 ............ +3787 9.745441198 127.0.0.1:57433 127.0.0.1:57415 375859230 22 1200000085021f000000000001000300000000000000 ...................... +3789 9.745648146 127.0.0.1:57415 127.0.0.1:57433 3331529598 12 ffffffffa69a0a0000000000 ............ +3792 9.848042965 127.0.0.1:57415 127.0.0.1:57433 3331529610 12 1a000000aabb0a0000000000 ............ +3794 9.848274469 127.0.0.1:57415 127.0.0.1:57433 3331529622 26 16000000548f6340e25e314001000300000087021f0000000000 ....T.c@.^1@.............. +3796 9.848662376 127.0.0.1:57433 127.0.0.1:57415 375859252 12 ffffffffaabb0a0000000000 ............ +3798 9.849176168 127.0.0.1:57433 127.0.0.1:57415 375859264 12 16000000a79a0a0000000000 ............ +3800 9.849377394 127.0.0.1:57433 127.0.0.1:57415 375859276 22 1200000087021f000000000001000300000000000000 ...................... +3802 9.849764585 127.0.0.1:57415 127.0.0.1:57433 3331529648 12 ffffffffa79a0a0000000000 ............ +3804 9.886964321 127.0.0.1:57415 127.0.0.1:57433 3331529660 12 65000000abbb0a0000000000 e........... +3806 9.887131453 127.0.0.1:57415 127.0.0.1:57433 3331529672 101 1e0000001c2118d0c46f33bb010003000000a3ff01000000000084380ec39d01 .....!...o3................8......?.....3...|8.. +3808 9.887483120 127.0.0.1:57433 127.0.0.1:57415 375859298 12 ffffffffabbb0a0000000000 ............ +3810 9.888753891 127.0.0.1:57433 127.0.0.1:57415 375859310 12 34000000a89a0a0000000000 4........... +3812 9.888921976 127.0.0.1:57433 127.0.0.1:57415 375859322 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............}E.O +3814 9.889322281 127.0.0.1:57415 127.0.0.1:57433 3331529773 12 ffffffffa89a0a0000000000 ............ +3816 9.890223742 127.0.0.1:57415 127.0.0.1:57433 3331529785 12 1e000000acbb0a0000000000 ............ +3818 9.890395403 127.0.0.1:57415 127.0.0.1:57433 3331529797 30 1a00000055ceff62b21b3a5001000300000089021f000000000000000000 ....U..b..:P.................. +3820 9.890645027 127.0.0.1:57433 127.0.0.1:57415 375859374 12 ffffffffacbb0a0000000000 ............ +3822 9.891107321 127.0.0.1:57433 127.0.0.1:57415 375859386 12 1a000000a99a0a0000000000 ............ +3824 9.891251326 127.0.0.1:57433 127.0.0.1:57415 375859398 26 1600000089021f00000000000100030000000000000000000000 .......................... +3826 9.891440868 127.0.0.1:57415 127.0.0.1:57433 3331529827 12 ffffffffa99a0a0000000000 ............ +3830 9.951001883 127.0.0.1:57415 127.0.0.1:57433 3331529839 12 1a000000adbb0a0000000000 ............ +3832 9.951167107 127.0.0.1:57415 127.0.0.1:57433 3331529851 26 16000000548f6340e25e31400100030000008b021f0000000000 ....T.c@.^1@.............. +3834 9.951532841 127.0.0.1:57433 127.0.0.1:57415 375859424 12 ffffffffadbb0a0000000000 ............ +3836 9.952313900 127.0.0.1:57433 127.0.0.1:57415 375859436 12 16000000aa9a0a0000000000 ............ +3838 9.952528715 127.0.0.1:57433 127.0.0.1:57415 375859448 22 120000008b021f000000000001000300000000000000 ...................... +3840 9.952826738 127.0.0.1:57415 127.0.0.1:57433 3331529877 12 ffffffffaa9a0a0000000000 ............ +3848 10.023019552 127.0.0.1:57433 127.0.0.1:57415 375859470 12 feffffff0838010019380100 .....8...8.. +3850 10.055282593 127.0.0.1:57415 127.0.0.1:57433 3331529889 12 1a000000aebb0a0000000000 ............ +3852 10.055618525 127.0.0.1:57415 127.0.0.1:57433 3331529901 26 16000000548f6340e25e31400100030000008d021f0000000000 ....T.c@.^1@.............. +3854 10.055999041 127.0.0.1:57433 127.0.0.1:57415 375859482 12 ffffffffaebb0a0000000000 ............ +3856 10.056734562 127.0.0.1:57433 127.0.0.1:57415 375859494 12 16000000ab9a0a0000000000 ............ +3858 10.056920767 127.0.0.1:57433 127.0.0.1:57415 375859506 22 120000008d021f000000000001000300000000000000 ...................... +3860 10.057314396 127.0.0.1:57415 127.0.0.1:57433 3331529927 12 ffffffffab9a0a0000000000 ............ +3862 10.080799580 127.0.0.1:57415 127.0.0.1:57433 3331529939 12 feffffff1a38010008380100 .....8...8.. +3872 10.159006596 127.0.0.1:57415 127.0.0.1:57433 3331529951 12 1a000000afbb0a0000000000 ............ +3874 10.159191847 127.0.0.1:57415 127.0.0.1:57433 3331529963 26 16000000548f6340e25e31400100030000008f021f0000000000 ....T.c@.^1@.............. +3876 10.159602880 127.0.0.1:57433 127.0.0.1:57415 375859528 12 ffffffffafbb0a0000000000 ............ +3878 10.160155058 127.0.0.1:57433 127.0.0.1:57415 375859540 12 16000000ac9a0a0000000000 ............ +3880 10.160352468 127.0.0.1:57433 127.0.0.1:57415 375859552 22 120000008f021f000000000001000300000000000000 ...................... +3882 10.160640001 127.0.0.1:57415 127.0.0.1:57433 3331529989 12 ffffffffac9a0a0000000000 ............ +3884 10.192224264 127.0.0.1:57415 127.0.0.1:57433 3331530001 12 65000000b0bb0a0000000000 e........... +3886 10.192408085 127.0.0.1:57415 127.0.0.1:57433 3331530013 101 1e0000001c2118d0c46f33bb010003000000a4ff010000000000b5390ec39d01 .....!...o3................9......?.....3...|8.. +3888 10.193029881 127.0.0.1:57433 127.0.0.1:57415 375859574 12 ffffffffb0bb0a0000000000 ............ +3890 10.193978071 127.0.0.1:57433 127.0.0.1:57415 375859586 12 34000000ad9a0a0000000000 4........... +3892 10.194204569 127.0.0.1:57433 127.0.0.1:57415 375859598 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................AO +3894 10.194563866 127.0.0.1:57415 127.0.0.1:57433 3331530114 12 ffffffffad9a0a0000000000 ............ +3896 10.195316076 127.0.0.1:57415 127.0.0.1:57433 3331530126 12 1e000000b1bb0a0000000000 ............ +3898 10.195481062 127.0.0.1:57415 127.0.0.1:57433 3331530138 30 1a00000055ceff62b21b3a5001000300000091021f000000000000000000 ....U..b..:P.................. +3900 10.195844173 127.0.0.1:57433 127.0.0.1:57415 375859650 12 ffffffffb1bb0a0000000000 ............ +3902 10.196203232 127.0.0.1:57433 127.0.0.1:57415 375859662 12 1a000000ae9a0a0000000000 ............ +3904 10.196410894 127.0.0.1:57433 127.0.0.1:57415 375859674 26 1600000091021f00000000000100030000000000000000000000 .......................... +3906 10.196753979 127.0.0.1:57415 127.0.0.1:57433 3331530168 12 ffffffffae9a0a0000000000 ............ +3912 10.261887312 127.0.0.1:57415 127.0.0.1:57433 3331530180 12 1a000000b2bb0a0000000000 ............ +3914 10.262068748 127.0.0.1:57415 127.0.0.1:57433 3331530192 26 16000000548f6340e25e314001000300000093021f0000000000 ....T.c@.^1@.............. +3916 10.262540579 127.0.0.1:57433 127.0.0.1:57415 375859700 12 ffffffffb2bb0a0000000000 ............ +3918 10.263040066 127.0.0.1:57433 127.0.0.1:57415 375859712 12 16000000af9a0a0000000000 ............ +3920 10.263265371 127.0.0.1:57433 127.0.0.1:57415 375859724 22 1200000093021f000000000001000300000000000000 ...................... +3922 10.263516188 127.0.0.1:57415 127.0.0.1:57433 3331530218 12 ffffffffaf9a0a0000000000 ............ +3924 10.366061687 127.0.0.1:57415 127.0.0.1:57433 3331530230 12 1a000000b3bb0a0000000000 ............ +3926 10.366254807 127.0.0.1:57415 127.0.0.1:57433 3331530242 26 16000000548f6340e25e314001000300000095021f0000000000 ....T.c@.^1@.............. +3928 10.366645098 127.0.0.1:57433 127.0.0.1:57415 375859746 12 ffffffffb3bb0a0000000000 ............ +3930 10.367281437 127.0.0.1:57433 127.0.0.1:57415 375859758 12 16000000b09a0a0000000000 ............ +3932 10.367491961 127.0.0.1:57433 127.0.0.1:57415 375859770 22 1200000095021f000000000001000300000000000000 ...................... +3934 10.367772579 127.0.0.1:57415 127.0.0.1:57433 3331530268 12 ffffffffb09a0a0000000000 ............ +3938 10.468984127 127.0.0.1:57415 127.0.0.1:57433 3331530280 12 1a000000b4bb0a0000000000 ............ +3940 10.469185352 127.0.0.1:57415 127.0.0.1:57433 3331530292 26 16000000548f6340e25e314001000300000097021f0000000000 ....T.c@.^1@.............. +3942 10.469555855 127.0.0.1:57433 127.0.0.1:57415 375859792 12 ffffffffb4bb0a0000000000 ............ +3944 10.470736265 127.0.0.1:57433 127.0.0.1:57415 375859804 12 16000000b19a0a0000000000 ............ +3946 10.470885277 127.0.0.1:57433 127.0.0.1:57415 375859816 22 1200000097021f000000000001000300000000000000 ...................... +3948 10.471175671 127.0.0.1:57415 127.0.0.1:57433 3331530318 12 ffffffffb19a0a0000000000 ............ +3950 10.496547222 127.0.0.1:57415 127.0.0.1:57433 3331530330 12 65000000b5bb0a0000000000 e........... +3952 10.496710777 127.0.0.1:57415 127.0.0.1:57433 3331530342 101 1e0000001c2118d0c46f33bb010003000000a5ff010000000000e63a0ec39d01 .....!...o3................:......?.....3...|8.. +3954 10.497370720 127.0.0.1:57433 127.0.0.1:57415 375859838 12 ffffffffb5bb0a0000000000 ............ +3956 10.498114109 127.0.0.1:57433 127.0.0.1:57415 375859850 12 34000000b29a0a0000000000 4........... +3958 10.498328447 127.0.0.1:57433 127.0.0.1:57415 375859862 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................ApO +3960 10.498632431 127.0.0.1:57415 127.0.0.1:57433 3331530443 12 ffffffffb29a0a0000000000 ............ +3962 10.499472618 127.0.0.1:57415 127.0.0.1:57433 3331530455 12 1e000000b6bb0a0000000000 ............ +3964 10.499635220 127.0.0.1:57415 127.0.0.1:57433 3331530467 30 1a00000055ceff62b21b3a5001000300000099021f000000000000000000 ....U..b..:P.................. +3966 10.499919176 127.0.0.1:57433 127.0.0.1:57415 375859914 12 ffffffffb6bb0a0000000000 ............ +3968 10.500443935 127.0.0.1:57433 127.0.0.1:57415 375859926 12 1a000000b39a0a0000000000 ............ +3970 10.500634432 127.0.0.1:57433 127.0.0.1:57415 375859938 26 1600000099021f00000000000100030000000000000000000000 .......................... +3972 10.500944614 127.0.0.1:57415 127.0.0.1:57433 3331530497 12 ffffffffb39a0a0000000000 ............ +3980 10.522433996 127.0.0.1:57433 127.0.0.1:57415 375859964 12 feffffff093801001a380100 .....8...8.. +3982 10.572757721 127.0.0.1:57415 127.0.0.1:57433 3331530509 12 1a000000b7bb0a0000000000 ............ +3984 10.572925091 127.0.0.1:57415 127.0.0.1:57433 3331530521 26 16000000548f6340e25e31400100030000009b021f0000000000 ....T.c@.^1@.............. +3986 10.573321581 127.0.0.1:57433 127.0.0.1:57415 375859976 12 ffffffffb7bb0a0000000000 ............ +3988 10.573818922 127.0.0.1:57433 127.0.0.1:57415 375859988 12 16000000b49a0a0000000000 ............ +3990 10.574038267 127.0.0.1:57433 127.0.0.1:57415 375860000 22 120000009b021f000000000001000300000000000000 ...................... +3992 10.574402809 127.0.0.1:57415 127.0.0.1:57433 3331530547 12 ffffffffb49a0a0000000000 ............ +3994 10.581614971 127.0.0.1:57415 127.0.0.1:57433 3331530559 12 feffffff1b38010009380100 .....8...8.. +4004 10.675863504 127.0.0.1:57415 127.0.0.1:57433 3331530571 12 1a000000b8bb0a0000000000 ............ +4006 10.676054716 127.0.0.1:57415 127.0.0.1:57433 3331530583 26 16000000548f6340e25e31400100030000009d021f0000000000 ....T.c@.^1@.............. +4008 10.676558971 127.0.0.1:57433 127.0.0.1:57415 375860022 12 ffffffffb8bb0a0000000000 ............ +4010 10.677353382 127.0.0.1:57433 127.0.0.1:57415 375860034 12 16000000b59a0a0000000000 ............ +4012 10.677520037 127.0.0.1:57433 127.0.0.1:57415 375860046 22 120000009d021f000000000001000300000000000000 ...................... +4014 10.677934170 127.0.0.1:57415 127.0.0.1:57433 3331530609 12 ffffffffb59a0a0000000000 ............ +4020 10.779565573 127.0.0.1:57415 127.0.0.1:57433 3331530621 12 1a000000b9bb0a0000000000 ............ +4022 10.779759169 127.0.0.1:57415 127.0.0.1:57433 3331530633 26 16000000548f6340e25e31400100030000009f021f0000000000 ....T.c@.^1@.............. +4024 10.780152798 127.0.0.1:57433 127.0.0.1:57415 375860068 12 ffffffffb9bb0a0000000000 ............ +4026 10.780584097 127.0.0.1:57433 127.0.0.1:57415 375860080 12 16000000b69a0a0000000000 ............ +4028 10.780778646 127.0.0.1:57433 127.0.0.1:57415 375860092 22 120000009f021f000000000001000300000000000000 ...................... +4030 10.781229258 127.0.0.1:57415 127.0.0.1:57433 3331530659 12 ffffffffb69a0a0000000000 ............ +4032 10.800779581 127.0.0.1:57415 127.0.0.1:57433 3331530671 12 22000000babb0a0000000000 "........... +4034 10.800963879 127.0.0.1:57415 127.0.0.1:57433 3331530683 34 1e0000001c2118d0c46f33bb010003000000a6ff010000000000163c0ec39d01 .....!...o3................<...... +4036 10.801067591 127.0.0.1:57415 127.0.0.1:57433 3331530717 12 43000000bbbb0a0000000000 C........... +4038 10.801151037 127.0.0.1:57415 127.0.0.1:57433 3331530729 67 3f000000980433cb0cb47c380100030000000100000000a6ff0100000000003d ?.....3...|8...................=B.....&......... +4040 10.801287889 127.0.0.1:57433 127.0.0.1:57415 375860114 12 ffffffffbabb0a0000000000 ............ +4042 10.801523447 127.0.0.1:57433 127.0.0.1:57415 375860126 12 ffffffffbbbb0a0000000000 ............ +4044 10.802455425 127.0.0.1:57433 127.0.0.1:57415 375860138 12 34000000b79a0a0000000000 4........... +4046 10.802642822 127.0.0.1:57433 127.0.0.1:57415 375860150 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................O +4048 10.802956581 127.0.0.1:57415 127.0.0.1:57433 3331530796 12 ffffffffb79a0a0000000000 ............ +4050 10.803723812 127.0.0.1:57415 127.0.0.1:57433 3331530808 12 1e000000bcbb0a0000000000 ............ +4052 10.803863525 127.0.0.1:57415 127.0.0.1:57433 3331530820 30 1a00000055ceff62b21b3a50010003000000a1021f000000000000000000 ....U..b..:P.................. +4054 10.804260254 127.0.0.1:57433 127.0.0.1:57415 375860202 12 ffffffffbcbb0a0000000000 ............ +4056 10.804677963 127.0.0.1:57433 127.0.0.1:57415 375860214 12 1a000000b89a0a0000000000 ............ +4058 10.804884434 127.0.0.1:57433 127.0.0.1:57415 375860226 26 16000000a1021f00000000000100030000000000000000000000 .......................... +4060 10.805176497 127.0.0.1:57415 127.0.0.1:57433 3331530850 12 ffffffffb89a0a0000000000 ............ +4062 10.882750511 127.0.0.1:57415 127.0.0.1:57433 3331530862 12 1a000000bdbb0a0000000000 ............ +4064 10.883032560 127.0.0.1:57415 127.0.0.1:57433 3331530874 26 16000000548f6340e25e3140010003000000a3021f0000000000 ....T.c@.^1@.............. +4066 10.883410692 127.0.0.1:57433 127.0.0.1:57415 375860252 12 ffffffffbdbb0a0000000000 ............ +4068 10.884043455 127.0.0.1:57433 127.0.0.1:57415 375860264 12 16000000b99a0a0000000000 ............ +4070 10.884714603 127.0.0.1:57433 127.0.0.1:57415 375860276 22 12000000a3021f000000000001000300000000000000 ...................... +4072 10.885074615 127.0.0.1:57415 127.0.0.1:57433 3331530900 12 ffffffffb99a0a0000000000 ............ +4076 10.987080336 127.0.0.1:57415 127.0.0.1:57433 3331530912 12 1a000000bebb0a0000000000 ............ +4078 10.987318277 127.0.0.1:57415 127.0.0.1:57433 3331530924 26 16000000548f6340e25e3140010003000000a5021f0000000000 ....T.c@.^1@.............. +4080 10.987728596 127.0.0.1:57433 127.0.0.1:57415 375860298 12 ffffffffbebb0a0000000000 ............ +4082 10.988312006 127.0.0.1:57433 127.0.0.1:57415 375860310 12 16000000ba9a0a0000000000 ............ +4084 10.988478184 127.0.0.1:57433 127.0.0.1:57415 375860322 22 12000000a5021f000000000001000300000000000000 ...................... +4086 10.988729954 127.0.0.1:57415 127.0.0.1:57433 3331530950 12 ffffffffba9a0a0000000000 ............ +4094 11.023386955 127.0.0.1:57433 127.0.0.1:57415 375860344 12 feffffff0a3801001b380100 .....8...8.. +4096 11.082445621 127.0.0.1:57415 127.0.0.1:57433 3331530962 12 feffffff1c3801000a380100 .....8...8.. +4100 11.090649843 127.0.0.1:57415 127.0.0.1:57433 3331530974 12 1a000000bfbb0a0000000000 ............ +4102 11.090812922 127.0.0.1:57415 127.0.0.1:57433 3331530986 26 16000000548f6340e25e3140010003000000a7021f0000000000 ....T.c@.^1@.............. +4104 11.091144085 127.0.0.1:57433 127.0.0.1:57415 375860356 12 ffffffffbfbb0a0000000000 ............ +4106 11.091756582 127.0.0.1:57433 127.0.0.1:57415 375860368 12 16000000bb9a0a0000000000 ............ +4108 11.091959476 127.0.0.1:57433 127.0.0.1:57415 375860380 22 12000000a7021f000000000001000300000000000000 ...................... +4110 11.092250586 127.0.0.1:57415 127.0.0.1:57433 3331531012 12 ffffffffbb9a0a0000000000 ............ +4116 11.105120182 127.0.0.1:57415 127.0.0.1:57433 3331531024 12 22000000c0bb0a0000000000 "........... +4118 11.105316639 127.0.0.1:57415 127.0.0.1:57433 3331531036 34 1e0000001c2118d0c46f33bb010003000000a7ff010000000000463d0ec39d01 .....!...o3...............F=...... +4120 11.105407476 127.0.0.1:57415 127.0.0.1:57433 3331531070 12 43000000c1bb0a0000000000 C........... +4122 11.105490685 127.0.0.1:57415 127.0.0.1:57433 3331531082 67 3f000000980433cb0cb47c380100030000000100000000a7ff0100000000003d ?.....3...|8...................=B.....&......... +4124 11.105642080 127.0.0.1:57433 127.0.0.1:57415 375860402 12 ffffffffc0bb0a0000000000 ............ +4126 11.105825901 127.0.0.1:57433 127.0.0.1:57415 375860414 12 ffffffffc1bb0a0000000000 ............ +4128 11.106638670 127.0.0.1:57433 127.0.0.1:57415 375860426 12 34000000bc9a0a0000000000 4........... +4130 11.106852055 127.0.0.1:57433 127.0.0.1:57415 375860438 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............O..O +4132 11.107151747 127.0.0.1:57415 127.0.0.1:57433 3331531149 12 ffffffffbc9a0a0000000000 ............ +4134 11.107986450 127.0.0.1:57415 127.0.0.1:57433 3331531161 12 1e000000c2bb0a0000000000 ............ +4136 11.108135462 127.0.0.1:57415 127.0.0.1:57433 3331531173 30 1a00000055ceff62b21b3a50010003000000a9021f000000000000000000 ....U..b..:P.................. +4138 11.108423471 127.0.0.1:57433 127.0.0.1:57415 375860490 12 ffffffffc2bb0a0000000000 ............ +4140 11.108982801 127.0.0.1:57433 127.0.0.1:57415 375860502 12 1a000000bd9a0a0000000000 ............ +4142 11.109184742 127.0.0.1:57433 127.0.0.1:57415 375860514 26 16000000a9021f00000000000100030000000000000000000000 .......................... +4144 11.109370947 127.0.0.1:57415 127.0.0.1:57433 3331531203 12 ffffffffbd9a0a0000000000 ............ +4149 11.194845438 127.0.0.1:57415 127.0.0.1:57433 3331531215 12 1a000000c3bb0a0000000000 ............ +4151 11.195078373 127.0.0.1:57415 127.0.0.1:57433 3331531227 26 16000000548f6340e25e3140010003000000ab021f0000000000 ....T.c@.^1@.............. +4153 11.195528984 127.0.0.1:57433 127.0.0.1:57415 375860540 12 ffffffffc3bb0a0000000000 ............ +4155 11.196188450 127.0.0.1:57433 127.0.0.1:57415 375860552 12 16000000be9a0a0000000000 ............ +4157 11.196389675 127.0.0.1:57433 127.0.0.1:57415 375860564 22 12000000ab021f000000000001000300000000000000 ...................... +4159 11.196708679 127.0.0.1:57415 127.0.0.1:57433 3331531253 12 ffffffffbe9a0a0000000000 ............ +4168 11.298836946 127.0.0.1:57415 127.0.0.1:57433 3331531265 12 1a000000c4bb0a0000000000 ............ +4170 11.299058914 127.0.0.1:57415 127.0.0.1:57433 3331531277 26 16000000548f6340e25e3140010003000000ad021f0000000000 ....T.c@.^1@.............. +4172 11.299323082 127.0.0.1:57433 127.0.0.1:57415 375860586 12 ffffffffc4bb0a0000000000 ............ +4174 11.299891472 127.0.0.1:57433 127.0.0.1:57415 375860598 12 16000000bf9a0a0000000000 ............ +4176 11.300514936 127.0.0.1:57433 127.0.0.1:57415 375860610 22 12000000ad021f000000000001000300000000000000 ...................... +4178 11.300897598 127.0.0.1:57415 127.0.0.1:57433 3331531303 12 ffffffffbf9a0a0000000000 ............ +4181 11.402070284 127.0.0.1:57415 127.0.0.1:57433 3331531315 12 1a000000c5bb0a0000000000 ............ +4183 11.402269840 127.0.0.1:57415 127.0.0.1:57433 3331531327 26 16000000548f6340e25e3140010003000000af021f0000000000 ....T.c@.^1@.............. +4185 11.402623892 127.0.0.1:57433 127.0.0.1:57415 375860632 12 ffffffffc5bb0a0000000000 ............ +4187 11.403062344 127.0.0.1:57433 127.0.0.1:57415 375860644 12 16000000c09a0a0000000000 ............ +4189 11.403225660 127.0.0.1:57433 127.0.0.1:57415 375860656 22 12000000af021f000000000001000300000000000000 ...................... +4191 11.403558016 127.0.0.1:57415 127.0.0.1:57433 3331531353 12 ffffffffc09a0a0000000000 ............ +4193 11.409203053 127.0.0.1:57415 127.0.0.1:57433 3331531365 12 22000000c6bb0a0000000000 "........... +4195 11.409376144 127.0.0.1:57415 127.0.0.1:57433 3331531377 34 1e0000001c2118d0c46f33bb010003000000a8ff010000000000763e0ec39d01 .....!...o3...............v>...... +4197 11.409478664 127.0.0.1:57415 127.0.0.1:57433 3331531411 12 43000000c7bb0a0000000000 C........... +4199 11.409563303 127.0.0.1:57415 127.0.0.1:57433 3331531423 67 3f000000980433cb0cb47c380100030000000100000000a8ff0100000000003d ?.....3...|8...................=B.....&......... +4200 11.409607172 127.0.0.1:57433 127.0.0.1:57415 375860678 12 ffffffffc6bb0a0000000000 ............ +4203 11.409807444 127.0.0.1:57433 127.0.0.1:57415 375860690 12 ffffffffc7bb0a0000000000 ............ +4205 11.411054611 127.0.0.1:57433 127.0.0.1:57415 375860702 12 34000000c19a0a0000000000 4........... +4207 11.411290884 127.0.0.1:57433 127.0.0.1:57415 375860714 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................O +4209 11.411645412 127.0.0.1:57415 127.0.0.1:57433 3331531490 12 ffffffffc19a0a0000000000 ............ +4212 11.412406206 127.0.0.1:57415 127.0.0.1:57433 3331531502 12 1e000000c8bb0a0000000000 ............ +4214 11.412611485 127.0.0.1:57415 127.0.0.1:57433 3331531514 30 1a00000055ceff62b21b3a50010003000000b1021f000000000000000000 ....U..b..:P.................. +4216 11.413120270 127.0.0.1:57433 127.0.0.1:57415 375860766 12 ffffffffc8bb0a0000000000 ............ +4218 11.413445473 127.0.0.1:57433 127.0.0.1:57415 375860778 12 1a000000c29a0a0000000000 ............ +4220 11.413596869 127.0.0.1:57433 127.0.0.1:57415 375860790 26 16000000b1021f00000000000100030000000000000000000000 .......................... +4222 11.413856983 127.0.0.1:57415 127.0.0.1:57433 3331531544 12 ffffffffc29a0a0000000000 ............ +4255 11.504925013 127.0.0.1:57415 127.0.0.1:57433 3331531556 12 1a000000c9bb0a0000000000 ............ +4257 11.505124331 127.0.0.1:57415 127.0.0.1:57433 3331531568 26 16000000548f6340e25e3140010003000000b3021f0000000000 ....T.c@.^1@.............. +4259 11.505383492 127.0.0.1:57433 127.0.0.1:57415 375860816 12 ffffffffc9bb0a0000000000 ............ +4261 11.506131887 127.0.0.1:57433 127.0.0.1:57415 375860828 12 16000000c39a0a0000000000 ............ +4263 11.506335258 127.0.0.1:57433 127.0.0.1:57415 375860840 22 12000000b3021f000000000001000300000000000000 ...................... +4265 11.506763935 127.0.0.1:57415 127.0.0.1:57433 3331531594 12 ffffffffc39a0a0000000000 ............ +4273 11.523170233 127.0.0.1:57433 127.0.0.1:57415 375860862 12 feffffff0b3801001c380100 .....8...8.. +4276 11.583351374 127.0.0.1:57415 127.0.0.1:57433 3331531606 12 feffffff1d3801000b380100 .....8...8.. +4284 11.608660698 127.0.0.1:57415 127.0.0.1:57433 3331531618 12 1a000000cabb0a0000000000 ............ +4286 11.608882666 127.0.0.1:57415 127.0.0.1:57433 3331531630 26 16000000548f6340e25e3140010003000000b5021f0000000000 ....T.c@.^1@.............. +4288 11.609230042 127.0.0.1:57433 127.0.0.1:57415 375860874 12 ffffffffcabb0a0000000000 ............ +4290 11.609702110 127.0.0.1:57433 127.0.0.1:57415 375860886 12 16000000c49a0a0000000000 ............ +4292 11.609902382 127.0.0.1:57433 127.0.0.1:57415 375860898 22 12000000b5021f000000000001000300000000000000 ...................... +4294 11.610311270 127.0.0.1:57415 127.0.0.1:57433 3331531656 12 ffffffffc49a0a0000000000 ............ +4299 11.711554527 127.0.0.1:57415 127.0.0.1:57433 3331531668 12 1a000000cbbb0a0000000000 ............ +4301 11.711792707 127.0.0.1:57415 127.0.0.1:57433 3331531680 26 16000000548f6340e25e3140010003000000b7021f0000000000 ....T.c@.^1@.............. +4303 11.712155342 127.0.0.1:57433 127.0.0.1:57415 375860920 12 ffffffffcbbb0a0000000000 ............ +4305 11.712646246 127.0.0.1:57433 127.0.0.1:57415 375860932 12 16000000c59a0a0000000000 ............ +4307 11.712944746 127.0.0.1:57433 127.0.0.1:57415 375860944 22 12000000b7021f000000000001000300000000000000 ...................... +4309 11.713253736 127.0.0.1:57415 127.0.0.1:57433 3331531706 12 ffffffffc59a0a0000000000 ............ +4311 11.714611530 127.0.0.1:57415 127.0.0.1:57433 3331531718 12 22000000ccbb0a0000000000 "........... +4313 11.714719057 127.0.0.1:57415 127.0.0.1:57433 3331531730 34 1e0000001c2118d0c46f33bb010003000000a9ff010000000000a83f0ec39d01 .....!...o3................?...... +4315 11.714883566 127.0.0.1:57415 127.0.0.1:57433 3331531764 12 43000000cdbb0a0000000000 C........... +4317 11.714970112 127.0.0.1:57415 127.0.0.1:57433 3331531776 67 3f000000980433cb0cb47c380100030000000100000000a9ff0100000000003d ?.....3...|8...................=B.....&......... +4319 11.715060711 127.0.0.1:57433 127.0.0.1:57415 375860966 12 ffffffffccbb0a0000000000 ............ +4321 11.715214491 127.0.0.1:57433 127.0.0.1:57415 375860978 12 ffffffffcdbb0a0000000000 ............ +4325 11.716401815 127.0.0.1:57433 127.0.0.1:57415 375860990 12 34000000c69a0a0000000000 4........... +4327 11.716624498 127.0.0.1:57433 127.0.0.1:57415 375861002 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................&*P +4329 11.717082024 127.0.0.1:57415 127.0.0.1:57433 3331531843 12 ffffffffc69a0a0000000000 ............ +4331 11.717816591 127.0.0.1:57415 127.0.0.1:57433 3331531855 12 1e000000cebb0a0000000000 ............ +4333 11.718052626 127.0.0.1:57415 127.0.0.1:57433 3331531867 30 1a00000055ceff62b21b3a50010003000000b9021f000000000000000000 ....U..b..:P.................. +4335 11.718338490 127.0.0.1:57433 127.0.0.1:57415 375861054 12 ffffffffcebb0a0000000000 ............ +4337 11.718739271 127.0.0.1:57433 127.0.0.1:57415 375861066 12 1a000000c79a0a0000000000 ............ +4339 11.718970537 127.0.0.1:57433 127.0.0.1:57415 375861078 26 16000000b9021f00000000000100030000000000000000000000 .......................... +4341 11.719284773 127.0.0.1:57415 127.0.0.1:57433 3331531897 12 ffffffffc79a0a0000000000 ............ +4346 11.814504385 127.0.0.1:57415 127.0.0.1:57433 3331531909 12 1a000000cfbb0a0000000000 ............ +4348 11.814711094 127.0.0.1:57415 127.0.0.1:57433 3331531921 26 16000000548f6340e25e3140010003000000bb021f0000000000 ....T.c@.^1@.............. +4350 11.815190077 127.0.0.1:57433 127.0.0.1:57415 375861104 12 ffffffffcfbb0a0000000000 ............ +4352 11.815613508 127.0.0.1:57433 127.0.0.1:57415 375861116 12 16000000c89a0a0000000000 ............ +4354 11.815774918 127.0.0.1:57433 127.0.0.1:57415 375861128 22 12000000bb021f000000000001000300000000000000 ...................... +4356 11.816146374 127.0.0.1:57415 127.0.0.1:57433 3331531947 12 ffffffffc89a0a0000000000 ............ +4362 11.917349815 127.0.0.1:57415 127.0.0.1:57433 3331531959 12 1a000000d0bb0a0000000000 ............ +4364 11.917516232 127.0.0.1:57415 127.0.0.1:57433 3331531971 26 16000000548f6340e25e3140010003000000bd021f0000000000 ....T.c@.^1@.............. +4366 11.917904139 127.0.0.1:57433 127.0.0.1:57415 375861150 12 ffffffffd0bb0a0000000000 ............ +4368 11.918498993 127.0.0.1:57433 127.0.0.1:57415 375861162 12 16000000c99a0a0000000000 ............ +4370 11.918714523 127.0.0.1:57433 127.0.0.1:57415 375861174 22 12000000bd021f000000000001000300000000000000 ...................... +4372 11.919060707 127.0.0.1:57415 127.0.0.1:57433 3331531997 12 ffffffffc99a0a0000000000 ............ +4378 12.018893957 127.0.0.1:57415 127.0.0.1:57433 3331532009 12 22000000d1bb0a0000000000 "........... +4380 12.019123554 127.0.0.1:57415 127.0.0.1:57433 3331532021 34 1e0000001c2118d0c46f33bb010003000000aaff010000000000d8400ec39d01 .....!...o3................@...... +4382 12.019213676 127.0.0.1:57415 127.0.0.1:57433 3331532055 12 43000000d2bb0a0000000000 C........... +4384 12.019296408 127.0.0.1:57415 127.0.0.1:57433 3331532067 67 3f000000980433cb0cb47c380100030000000100000000aaff0100000000003d ?.....3...|8...................=B.....&......... +4385 12.019314766 127.0.0.1:57433 127.0.0.1:57415 375861196 12 ffffffffd1bb0a0000000000 ............ +4388 12.019543886 127.0.0.1:57433 127.0.0.1:57415 375861208 12 ffffffffd2bb0a0000000000 ............ +4390 12.020510674 127.0.0.1:57433 127.0.0.1:57415 375861220 12 34000000ca9a0a0000000000 4........... +4392 12.020654917 127.0.0.1:57433 127.0.0.1:57415 375861232 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............V.XP +4394 12.020900965 127.0.0.1:57415 127.0.0.1:57433 3331532134 12 ffffffffca9a0a0000000000 ............ +4398 12.021629810 127.0.0.1:57415 127.0.0.1:57433 3331532146 12 38000000d3bb0a0000000000 8........... +4401 12.021772385 127.0.0.1:57415 127.0.0.1:57433 3331532158 56 16000000548f6340e25e3140010003000000bf021f00000000001a00000055ce ....T.c@.^1@..................U..b..:P.......... +4405 12.022060394 127.0.0.1:57433 127.0.0.1:57415 375861284 12 ffffffffd3bb0a0000000000 ............ +4407 12.022392511 127.0.0.1:57433 127.0.0.1:57415 375861296 12 16000000cb9a0a0000000000 ............ +4409 12.022535801 127.0.0.1:57433 127.0.0.1:57415 375861308 22 12000000bf021f000000000001000300000000000000 ...................... +4411 12.022658825 127.0.0.1:57433 127.0.0.1:57415 375861330 12 1a000000cc9a0a0000000000 ............ +4413 12.022741795 127.0.0.1:57433 127.0.0.1:57415 375861342 26 16000000c1021f00000000000100030000000000000000000000 .......................... +4414 12.022758722 127.0.0.1:57415 127.0.0.1:57433 3331532214 12 ffffffffcb9a0a0000000000 ............ +4417 12.022981167 127.0.0.1:57415 127.0.0.1:57433 3331532226 12 ffffffffcc9a0a0000000000 ............ +4419 12.024185181 127.0.0.1:57433 127.0.0.1:57415 375861368 12 feffffff0c3801001d380100 .....8...8.. +4423 12.084734678 127.0.0.1:57415 127.0.0.1:57433 3331532238 12 feffffff1e3801000c380100 .....8...8.. +4432 12.123594999 127.0.0.1:57415 127.0.0.1:57433 3331532250 12 1a000000d4bb0a0000000000 ............ +4434 12.123756886 127.0.0.1:57415 127.0.0.1:57433 3331532262 26 16000000548f6340e25e3140010003000000c3021f0000000000 ....T.c@.^1@.............. +4436 12.124180794 127.0.0.1:57433 127.0.0.1:57415 375861380 12 ffffffffd4bb0a0000000000 ............ +4438 12.125261784 127.0.0.1:57433 127.0.0.1:57415 375861392 12 16000000cd9a0a0000000000 ............ +4440 12.125470400 127.0.0.1:57433 127.0.0.1:57415 375861404 22 12000000c3021f000000000001000300000000000000 ...................... +4442 12.125773430 127.0.0.1:57415 127.0.0.1:57433 3331532288 12 ffffffffcd9a0a0000000000 ............ +4448 12.228722811 127.0.0.1:57415 127.0.0.1:57433 3331532300 12 1a000000d5bb0a0000000000 ............ +4452 12.229180098 127.0.0.1:57415 127.0.0.1:57433 3331532312 26 16000000548f6340e25e3140010003000000c5021f0000000000 ....T.c@.^1@.............. +4454 12.229521275 127.0.0.1:57433 127.0.0.1:57415 375861426 12 ffffffffd5bb0a0000000000 ............ +4456 12.230041504 127.0.0.1:57433 127.0.0.1:57415 375861438 12 16000000ce9a0a0000000000 ............ +4458 12.230203152 127.0.0.1:57433 127.0.0.1:57415 375861450 22 12000000c5021f000000000001000300000000000000 ...................... +4460 12.230513096 127.0.0.1:57415 127.0.0.1:57433 3331532338 12 ffffffffce9a0a0000000000 ............ +4464 12.323051214 127.0.0.1:57415 127.0.0.1:57433 3331532350 12 22000000d6bb0a0000000000 "........... +4466 12.323291063 127.0.0.1:57415 127.0.0.1:57433 3331532362 34 1e0000001c2118d0c46f33bb010003000000abff01000000000008420ec39d01 .....!...o3................B...... +4468 12.323448181 127.0.0.1:57415 127.0.0.1:57433 3331532396 12 43000000d7bb0a0000000000 C........... +4470 12.323529005 127.0.0.1:57415 127.0.0.1:57433 3331532408 67 3f000000980433cb0cb47c380100030000000100000000abff0100000000003d ?.....3...|8...................=B.....&......... +4472 12.323687077 127.0.0.1:57433 127.0.0.1:57415 375861472 12 ffffffffd6bb0a0000000000 ............ +4474 12.323911190 127.0.0.1:57433 127.0.0.1:57415 375861484 12 ffffffffd7bb0a0000000000 ............ +4476 12.324851513 127.0.0.1:57433 127.0.0.1:57415 375861496 12 34000000cf9a0a0000000000 4........... +4478 12.325073481 127.0.0.1:57433 127.0.0.1:57415 375861508 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............`..P +4480 12.325357676 127.0.0.1:57415 127.0.0.1:57433 3331532475 12 ffffffffcf9a0a0000000000 ............ +4482 12.326145649 127.0.0.1:57415 127.0.0.1:57433 3331532487 12 1e000000d8bb0a0000000000 ............ +4484 12.326280117 127.0.0.1:57415 127.0.0.1:57433 3331532499 30 1a00000055ceff62b21b3a50010003000000c7021f000000000000000000 ....U..b..:P.................. +4486 12.326566458 127.0.0.1:57433 127.0.0.1:57415 375861560 12 ffffffffd8bb0a0000000000 ............ +4488 12.326992512 127.0.0.1:57433 127.0.0.1:57415 375861572 12 1a000000d09a0a0000000000 ............ +4490 12.327135563 127.0.0.1:57433 127.0.0.1:57415 375861584 26 16000000c7021f00000000000100030000000000000000000000 .......................... +4492 12.327386141 127.0.0.1:57415 127.0.0.1:57433 3331532529 12 ffffffffd09a0a0000000000 ............ +4494 12.331436634 127.0.0.1:57415 127.0.0.1:57433 3331532541 12 1a000000d9bb0a0000000000 ............ +4496 12.331570625 127.0.0.1:57415 127.0.0.1:57433 3331532553 26 16000000548f6340e25e3140010003000000c9021f0000000000 ....T.c@.^1@.............. +4498 12.331876516 127.0.0.1:57433 127.0.0.1:57415 375861610 12 ffffffffd9bb0a0000000000 ............ +4500 12.332179070 127.0.0.1:57433 127.0.0.1:57415 375861622 12 16000000d19a0a0000000000 ............ +4502 12.332373142 127.0.0.1:57433 127.0.0.1:57415 375861634 22 12000000c9021f000000000001000300000000000000 ...................... +4504 12.332616091 127.0.0.1:57415 127.0.0.1:57433 3331532579 12 ffffffffd19a0a0000000000 ............ +4510 12.434739828 127.0.0.1:57415 127.0.0.1:57433 3331532591 12 1a000000dabb0a0000000000 ............ +4512 12.434919596 127.0.0.1:57415 127.0.0.1:57433 3331532603 26 16000000548f6340e25e3140010003000000cb021f0000000000 ....T.c@.^1@.............. +4514 12.435292244 127.0.0.1:57433 127.0.0.1:57415 375861656 12 ffffffffdabb0a0000000000 ............ +4516 12.435780525 127.0.0.1:57433 127.0.0.1:57415 375861668 12 16000000d29a0a0000000000 ............ +4518 12.435943842 127.0.0.1:57433 127.0.0.1:57415 375861680 22 12000000cb021f000000000001000300000000000000 ...................... +4520 12.436222076 127.0.0.1:57415 127.0.0.1:57433 3331532629 12 ffffffffd29a0a0000000000 ............ +4529 12.524876595 127.0.0.1:57433 127.0.0.1:57415 375861702 12 feffffff0d3801001e380100 .....8...8.. +4531 12.538449287 127.0.0.1:57415 127.0.0.1:57433 3331532641 12 1a000000dbbb0a0000000000 ............ +4533 12.538654089 127.0.0.1:57415 127.0.0.1:57433 3331532653 26 16000000548f6340e25e3140010003000000cd021f0000000000 ....T.c@.^1@.............. +4535 12.539049149 127.0.0.1:57433 127.0.0.1:57415 375861714 12 ffffffffdbbb0a0000000000 ............ +4537 12.539803982 127.0.0.1:57433 127.0.0.1:57415 375861726 12 16000000d39a0a0000000000 ............ +4539 12.540000200 127.0.0.1:57433 127.0.0.1:57415 375861738 22 12000000cd021f000000000001000300000000000000 ...................... +4541 12.540304899 127.0.0.1:57415 127.0.0.1:57433 3331532679 12 ffffffffd39a0a0000000000 ............ +4544 12.585603714 127.0.0.1:57415 127.0.0.1:57433 3331532691 12 feffffff1f3801000d380100 .....8...8.. +4554 12.627478361 127.0.0.1:57415 127.0.0.1:57433 3331532703 12 22000000dcbb0a0000000000 "........... +4556 12.627659082 127.0.0.1:57415 127.0.0.1:57433 3331532715 34 1e0000001c2118d0c46f33bb010003000000acff01000000000039430ec39d01 .....!...o3...............9C...... +4558 12.627750397 127.0.0.1:57415 127.0.0.1:57433 3331532749 12 43000000ddbb0a0000000000 C........... +4560 12.627835512 127.0.0.1:57415 127.0.0.1:57433 3331532761 67 3f000000980433cb0cb47c380100030000000100000000acff0100000000003d ?.....3...|8...................=B.....&......... +4562 12.628039122 127.0.0.1:57433 127.0.0.1:57415 375861760 12 ffffffffdcbb0a0000000000 ............ +4564 12.628264666 127.0.0.1:57433 127.0.0.1:57415 375861772 12 ffffffffddbb0a0000000000 ............ +4566 12.629603863 127.0.0.1:57433 127.0.0.1:57415 375861784 12 34000000d49a0a0000000000 4........... +4568 12.629788876 127.0.0.1:57433 127.0.0.1:57415 375861796 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............$|.P +4570 12.630041122 127.0.0.1:57415 127.0.0.1:57433 3331532828 12 ffffffffd49a0a0000000000 ............ +4572 12.630982876 127.0.0.1:57415 127.0.0.1:57433 3331532840 12 1e000000debb0a0000000000 ............ +4574 12.631251574 127.0.0.1:57415 127.0.0.1:57433 3331532852 30 1a00000055ceff62b21b3a50010003000000cf021f000000000000000000 ....U..b..:P.................. +4576 12.631777287 127.0.0.1:57433 127.0.0.1:57415 375861848 12 ffffffffdebb0a0000000000 ............ +4578 12.632239580 127.0.0.1:57433 127.0.0.1:57415 375861860 12 1a000000d59a0a0000000000 ............ +4580 12.632457972 127.0.0.1:57433 127.0.0.1:57415 375861872 26 16000000cf021f00000000000100030000000000000000000000 .......................... +4582 12.632793903 127.0.0.1:57415 127.0.0.1:57433 3331532882 12 ffffffffd59a0a0000000000 ............ +4584 12.642827988 127.0.0.1:57415 127.0.0.1:57433 3331532894 12 1a000000dfbb0a0000000000 ............ +4586 12.642992973 127.0.0.1:57415 127.0.0.1:57433 3331532906 26 16000000548f6340e25e3140010003000000d1021f0000000000 ....T.c@.^1@.............. +4588 12.643438101 127.0.0.1:57433 127.0.0.1:57415 375861898 12 ffffffffdfbb0a0000000000 ............ +4590 12.643751383 127.0.0.1:57433 127.0.0.1:57415 375861910 12 16000000d69a0a0000000000 ............ +4592 12.643915892 127.0.0.1:57433 127.0.0.1:57415 375861922 22 12000000d1021f000000000001000300000000000000 ...................... +4594 12.644279480 127.0.0.1:57415 127.0.0.1:57433 3331532932 12 ffffffffd69a0a0000000000 ............ +4601 12.746065140 127.0.0.1:57415 127.0.0.1:57433 3331532944 12 1a000000e0bb0a0000000000 ............ +4603 12.746374130 127.0.0.1:57415 127.0.0.1:57433 3331532956 26 16000000548f6340e25e3140010003000000d3021f0000000000 ....T.c@.^1@.............. +4605 12.746763229 127.0.0.1:57433 127.0.0.1:57415 375861944 12 ffffffffe0bb0a0000000000 ............ +4607 12.747348309 127.0.0.1:57433 127.0.0.1:57415 375861956 12 16000000d79a0a0000000000 ............ +4609 12.747517824 127.0.0.1:57433 127.0.0.1:57415 375861968 22 12000000d3021f000000000001000300000000000000 ...................... +4611 12.747781992 127.0.0.1:57415 127.0.0.1:57433 3331532982 12 ffffffffd79a0a0000000000 ............ +4614 12.849092484 127.0.0.1:57415 127.0.0.1:57433 3331532994 12 1a000000e1bb0a0000000000 ............ +4616 12.849333286 127.0.0.1:57415 127.0.0.1:57433 3331533006 26 16000000548f6340e25e3140010003000000d5021f0000000000 ....T.c@.^1@.............. +4618 12.849749327 127.0.0.1:57433 127.0.0.1:57415 375861990 12 ffffffffe1bb0a0000000000 ............ +4620 12.850119591 127.0.0.1:57433 127.0.0.1:57415 375862002 12 16000000d89a0a0000000000 ............ +4622 12.850316763 127.0.0.1:57433 127.0.0.1:57415 375862014 22 12000000d5021f000000000001000300000000000000 ...................... +4624 12.850584984 127.0.0.1:57415 127.0.0.1:57433 3331533032 12 ffffffffd89a0a0000000000 ............ +4640 12.932352066 127.0.0.1:57415 127.0.0.1:57433 3331533044 12 65000000e2bb0a0000000000 e........... +4642 12.932558775 127.0.0.1:57415 127.0.0.1:57433 3331533056 101 1e0000001c2118d0c46f33bb010003000000adff01000000000069440ec39d01 .....!...o3...............iD......?.....3...|8.. +4644 12.933053017 127.0.0.1:57433 127.0.0.1:57415 375862036 12 ffffffffe2bb0a0000000000 ............ +4646 12.934113264 127.0.0.1:57433 127.0.0.1:57415 375862048 12 34000000d99a0a0000000000 4........... +4648 12.934282064 127.0.0.1:57433 127.0.0.1:57415 375862060 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................P +4650 12.934578657 127.0.0.1:57415 127.0.0.1:57433 3331533157 12 ffffffffd99a0a0000000000 ............ +4652 12.935868025 127.0.0.1:57415 127.0.0.1:57433 3331533169 12 1e000000e3bb0a0000000000 ............ +4655 12.936197042 127.0.0.1:57415 127.0.0.1:57433 3331533181 30 1a00000055ceff62b21b3a50010003000000d7021f000000000000000000 ....U..b..:P.................. +4660 12.936593056 127.0.0.1:57433 127.0.0.1:57415 375862112 12 ffffffffe3bb0a0000000000 ............ +4664 12.936907291 127.0.0.1:57433 127.0.0.1:57415 375862124 12 1a000000da9a0a0000000000 ............ +4666 12.937143564 127.0.0.1:57433 127.0.0.1:57415 375862136 26 16000000d7021f00000000000100030000000000000000000000 .......................... +4668 12.937372446 127.0.0.1:57415 127.0.0.1:57433 3331533211 12 ffffffffda9a0a0000000000 ............ +4672 12.952728748 127.0.0.1:57415 127.0.0.1:57433 3331533223 12 1a000000e4bb0a0000000000 ............ +4674 12.953020096 127.0.0.1:57415 127.0.0.1:57433 3331533235 26 16000000548f6340e25e3140010003000000d9021f0000000000 ....T.c@.^1@.............. +4676 12.953341246 127.0.0.1:57433 127.0.0.1:57415 375862162 12 ffffffffe4bb0a0000000000 ............ +4678 12.954146147 127.0.0.1:57433 127.0.0.1:57415 375862174 12 16000000db9a0a0000000000 ............ +4680 12.954304934 127.0.0.1:57433 127.0.0.1:57415 375862186 22 12000000d9021f000000000001000300000000000000 ...................... +4682 12.954698563 127.0.0.1:57415 127.0.0.1:57433 3331533261 12 ffffffffdb9a0a0000000000 ............ +4698 13.027018785 127.0.0.1:57433 127.0.0.1:57415 375862208 12 feffffff0e3801001f380100 .....8...8.. +4701 13.056491375 127.0.0.1:57415 127.0.0.1:57433 3331533273 12 1a000000e5bb0a0000000000 ............ +4703 13.056813955 127.0.0.1:57415 127.0.0.1:57433 3331533285 26 16000000548f6340e25e3140010003000000db021f0000000000 ....T.c@.^1@.............. +4705 13.057199955 127.0.0.1:57433 127.0.0.1:57415 375862220 12 ffffffffe5bb0a0000000000 ............ +4707 13.057684898 127.0.0.1:57433 127.0.0.1:57415 375862232 12 16000000dc9a0a0000000000 ............ +4709 13.057816744 127.0.0.1:57433 127.0.0.1:57415 375862244 22 12000000db021f000000000001000300000000000000 ...................... +4711 13.058174849 127.0.0.1:57415 127.0.0.1:57433 3331533311 12 ffffffffdc9a0a0000000000 ............ +4715 13.087179422 127.0.0.1:57415 127.0.0.1:57433 3331533323 12 feffffff203801000e380100 .... 8...8.. +4724 13.160845280 127.0.0.1:57415 127.0.0.1:57433 3331533335 12 1a000000e6bb0a0000000000 ............ +4726 13.161073208 127.0.0.1:57415 127.0.0.1:57433 3331533347 26 16000000548f6340e25e3140010003000000dd021f0000000000 ....T.c@.^1@.............. +4728 13.161462784 127.0.0.1:57433 127.0.0.1:57415 375862266 12 ffffffffe6bb0a0000000000 ............ +4730 13.162043095 127.0.0.1:57433 127.0.0.1:57415 375862278 12 16000000dd9a0a0000000000 ............ +4732 13.162187099 127.0.0.1:57433 127.0.0.1:57415 375862290 22 12000000dd021f000000000001000300000000000000 ...................... +4734 13.162473917 127.0.0.1:57415 127.0.0.1:57433 3331533373 12 ffffffffdd9a0a0000000000 ............ +4741 13.238486528 127.0.0.1:57415 127.0.0.1:57433 3331533385 12 22000000e7bb0a0000000000 "........... +4743 13.238903761 127.0.0.1:57415 127.0.0.1:57433 3331533397 34 1e0000001c2118d0c46f33bb010003000000aeff0100000000009b450ec39d01 .....!...o3................E...... +4745 13.239175797 127.0.0.1:57415 127.0.0.1:57433 3331533431 12 43000000e8bb0a0000000000 C........... +4747 13.239374161 127.0.0.1:57433 127.0.0.1:57415 375862312 12 ffffffffe7bb0a0000000000 ............ +4749 13.239583015 127.0.0.1:57415 127.0.0.1:57433 3331533443 67 3f000000980433cb0cb47c380100030000000100000000aeff0100000000003d ?.....3...|8...................=B.....&......... +4751 13.240129948 127.0.0.1:57433 127.0.0.1:57415 375862324 12 ffffffffe8bb0a0000000000 ............ +4753 13.241183758 127.0.0.1:57433 127.0.0.1:57415 375862336 12 34000000de9a0a0000000000 4........... +4755 13.241418839 127.0.0.1:57433 127.0.0.1:57415 375862348 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................Q +4757 13.241803646 127.0.0.1:57415 127.0.0.1:57433 3331533510 12 ffffffffde9a0a0000000000 ............ +4759 13.242759943 127.0.0.1:57415 127.0.0.1:57433 3331533522 12 1e000000e9bb0a0000000000 ............ +4761 13.242942572 127.0.0.1:57415 127.0.0.1:57433 3331533534 30 1a00000055ceff62b21b3a50010003000000df021f000000000000000000 ....U..b..:P.................. +4763 13.243424177 127.0.0.1:57433 127.0.0.1:57415 375862400 12 ffffffffe9bb0a0000000000 ............ +4765 13.243833303 127.0.0.1:57433 127.0.0.1:57415 375862412 12 1a000000df9a0a0000000000 ............ +4767 13.243984461 127.0.0.1:57433 127.0.0.1:57415 375862424 26 16000000df021f00000000000100030000000000000000000000 .......................... +4769 13.244320393 127.0.0.1:57415 127.0.0.1:57433 3331533564 12 ffffffffdf9a0a0000000000 ............ +4771 13.263810396 127.0.0.1:57415 127.0.0.1:57433 3331533576 12 1a000000eabb0a0000000000 ............ +4773 13.263967276 127.0.0.1:57415 127.0.0.1:57433 3331533588 26 16000000548f6340e25e3140010003000000e1021f0000000000 ....T.c@.^1@.............. +4775 13.264299393 127.0.0.1:57433 127.0.0.1:57415 375862450 12 ffffffffeabb0a0000000000 ............ +4777 13.264783144 127.0.0.1:57433 127.0.0.1:57415 375862462 12 16000000e09a0a0000000000 ............ +4779 13.264938354 127.0.0.1:57433 127.0.0.1:57415 375862474 22 12000000e1021f000000000001000300000000000000 ...................... +4781 13.265157700 127.0.0.1:57415 127.0.0.1:57433 3331533614 12 ffffffffe09a0a0000000000 ............ +4784 13.366395473 127.0.0.1:57415 127.0.0.1:57433 3331533626 12 1a000000ebbb0a0000000000 ............ +4786 13.366604805 127.0.0.1:57415 127.0.0.1:57433 3331533638 26 16000000548f6340e25e3140010003000000e3021f0000000000 ....T.c@.^1@.............. +4788 13.367133141 127.0.0.1:57433 127.0.0.1:57415 375862496 12 ffffffffebbb0a0000000000 ............ +4790 13.367705584 127.0.0.1:57433 127.0.0.1:57415 375862508 12 16000000e19a0a0000000000 ............ +4792 13.367912769 127.0.0.1:57433 127.0.0.1:57415 375862520 22 12000000e3021f000000000001000300000000000000 ...................... +4794 13.368280172 127.0.0.1:57415 127.0.0.1:57433 3331533664 12 ffffffffe19a0a0000000000 ............ +4799 13.470246077 127.0.0.1:57415 127.0.0.1:57433 3331533676 12 1a000000ecbb0a0000000000 ............ +4801 13.470426798 127.0.0.1:57415 127.0.0.1:57433 3331533688 26 16000000548f6340e25e3140010003000000e5021f0000000000 ....T.c@.^1@.............. +4803 13.470814705 127.0.0.1:57433 127.0.0.1:57415 375862542 12 ffffffffecbb0a0000000000 ............ +4805 13.471978188 127.0.0.1:57433 127.0.0.1:57415 375862554 12 16000000e29a0a0000000000 ............ +4807 13.472202539 127.0.0.1:57433 127.0.0.1:57415 375862566 22 12000000e5021f000000000001000300000000000000 ...................... +4809 13.472527742 127.0.0.1:57415 127.0.0.1:57433 3331533714 12 ffffffffe29a0a0000000000 ............ +4818 13.528075695 127.0.0.1:57433 127.0.0.1:57415 375862588 12 feffffff0f38010020380100 .....8.. 8.. +4820 13.545079231 127.0.0.1:57415 127.0.0.1:57433 3331533726 12 65000000edbb0a0000000000 e........... +4822 13.545365572 127.0.0.1:57415 127.0.0.1:57433 3331533738 101 1e0000001c2118d0c46f33bb010003000000afff010000000000ce460ec39d01 .....!...o3................F......?.....3...|8.. +4824 13.546071291 127.0.0.1:57433 127.0.0.1:57415 375862600 12 ffffffffedbb0a0000000000 ............ +4826 13.547725439 127.0.0.1:57433 127.0.0.1:57415 375862612 12 34000000e39a0a0000000000 4........... +4828 13.547901392 127.0.0.1:57433 127.0.0.1:57415 375862624 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............~.AQ +4830 13.548239231 127.0.0.1:57415 127.0.0.1:57433 3331533839 12 ffffffffe39a0a0000000000 ............ +4832 13.549041033 127.0.0.1:57415 127.0.0.1:57433 3331533851 12 1e000000eebb0a0000000000 ............ +4834 13.549194813 127.0.0.1:57415 127.0.0.1:57433 3331533863 30 1a00000055ceff62b21b3a50010003000000e7021f000000000000000000 ....U..b..:P.................. +4836 13.549455643 127.0.0.1:57433 127.0.0.1:57415 375862676 12 ffffffffeebb0a0000000000 ............ +4838 13.549942255 127.0.0.1:57433 127.0.0.1:57415 375862688 12 1a000000e49a0a0000000000 ............ +4840 13.550090313 127.0.0.1:57433 127.0.0.1:57415 375862700 26 16000000e7021f00000000000100030000000000000000000000 .......................... +4842 13.550379038 127.0.0.1:57415 127.0.0.1:57433 3331533893 12 ffffffffe49a0a0000000000 ............ +4844 13.575336456 127.0.0.1:57415 127.0.0.1:57433 3331533905 12 1a000000efbb0a0000000000 ............ +4846 13.575510979 127.0.0.1:57415 127.0.0.1:57433 3331533917 26 16000000548f6340e25e3140010003000000e9021f0000000000 ....T.c@.^1@.............. +4848 13.575987577 127.0.0.1:57433 127.0.0.1:57415 375862726 12 ffffffffefbb0a0000000000 ............ +4850 13.576442719 127.0.0.1:57433 127.0.0.1:57415 375862738 12 16000000e59a0a0000000000 ............ +4852 13.576711893 127.0.0.1:57433 127.0.0.1:57415 375862750 22 12000000e9021f000000000001000300000000000000 ...................... +4854 13.577021837 127.0.0.1:57415 127.0.0.1:57433 3331533943 12 ffffffffe59a0a0000000000 ............ +4857 13.587897301 127.0.0.1:57415 127.0.0.1:57433 3331533955 12 feffffff213801000f380100 ....!8...8.. +4868 13.679211140 127.0.0.1:57415 127.0.0.1:57433 3331533967 12 1a000000f0bb0a0000000000 ............ +4870 13.679429770 127.0.0.1:57415 127.0.0.1:57433 3331533979 26 16000000548f6340e25e3140010003000000eb021f0000000000 ....T.c@.^1@.............. +4872 13.679923296 127.0.0.1:57433 127.0.0.1:57415 375862772 12 fffffffff0bb0a0000000000 ............ +4874 13.680916786 127.0.0.1:57433 127.0.0.1:57415 375862784 12 16000000e69a0a0000000000 ............ +4876 13.681087494 127.0.0.1:57433 127.0.0.1:57415 375862796 22 12000000eb021f000000000001000300000000000000 ...................... +4878 13.681397676 127.0.0.1:57415 127.0.0.1:57433 3331534005 12 ffffffffe69a0a0000000000 ............ +4885 13.783308744 127.0.0.1:57415 127.0.0.1:57433 3331534017 12 1a000000f1bb0a0000000000 ............ +4887 13.783495903 127.0.0.1:57415 127.0.0.1:57433 3331534029 26 16000000548f6340e25e3140010003000000ed021f0000000000 ....T.c@.^1@.............. +4889 13.783880949 127.0.0.1:57433 127.0.0.1:57415 375862818 12 fffffffff1bb0a0000000000 ............ +4891 13.784458399 127.0.0.1:57433 127.0.0.1:57415 375862830 12 16000000e79a0a0000000000 ............ +4893 13.784626484 127.0.0.1:57433 127.0.0.1:57415 375862842 22 12000000ed021f000000000001000300000000000000 ...................... +4895 13.784935474 127.0.0.1:57415 127.0.0.1:57433 3331534055 12 ffffffffe79a0a0000000000 ............ +4938 13.850723505 127.0.0.1:57415 127.0.0.1:57433 3331534067 12 65000000f2bb0a0000000000 e........... +4940 13.850950003 127.0.0.1:57415 127.0.0.1:57433 3331534079 101 1e0000001c2118d0c46f33bb010003000000b0ff01000000000000480ec39d01 .....!...o3................H......?.....3...|8.. +4942 13.851308107 127.0.0.1:57433 127.0.0.1:57415 375862864 12 fffffffff2bb0a0000000000 ............ +4944 13.853188992 127.0.0.1:57433 127.0.0.1:57415 375862876 12 34000000e89a0a0000000000 4........... +4946 13.853381157 127.0.0.1:57433 127.0.0.1:57415 375862888 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............P'pQ +4948 13.853684187 127.0.0.1:57415 127.0.0.1:57433 3331534180 12 ffffffffe89a0a0000000000 ............ +4950 13.854452372 127.0.0.1:57415 127.0.0.1:57433 3331534192 12 1e000000f3bb0a0000000000 ............ +4952 13.854675531 127.0.0.1:57415 127.0.0.1:57433 3331534204 30 1a00000055ceff62b21b3a50010003000000ef021f000000000000000000 ....U..b..:P.................. +4954 13.855020761 127.0.0.1:57433 127.0.0.1:57415 375862940 12 fffffffff3bb0a0000000000 ............ +4956 13.855854750 127.0.0.1:57433 127.0.0.1:57415 375862952 12 1a000000e99a0a0000000000 ............ +4958 13.856015682 127.0.0.1:57433 127.0.0.1:57415 375862964 26 16000000ef021f00000000000100030000000000000000000000 .......................... +4960 13.856371880 127.0.0.1:57415 127.0.0.1:57433 3331534234 12 ffffffffe99a0a0000000000 ............ +4962 13.886071920 127.0.0.1:57415 127.0.0.1:57433 3331534246 12 1a000000f4bb0a0000000000 ............ +4964 13.886253119 127.0.0.1:57415 127.0.0.1:57433 3331534258 26 16000000548f6340e25e3140010003000000f1021f0000000000 ....T.c@.^1@.............. +4966 13.886639357 127.0.0.1:57433 127.0.0.1:57415 375862990 12 fffffffff4bb0a0000000000 ............ +4968 13.887157440 127.0.0.1:57433 127.0.0.1:57415 375863002 12 16000000ea9a0a0000000000 ............ +4970 13.887348175 127.0.0.1:57433 127.0.0.1:57415 375863014 22 12000000f1021f000000000001000300000000000000 ...................... +4972 13.887628794 127.0.0.1:57415 127.0.0.1:57433 3331534284 12 ffffffffea9a0a0000000000 ............ +5017 13.989109039 127.0.0.1:57415 127.0.0.1:57433 3331534296 12 1a000000f5bb0a0000000000 ............ +5019 13.989330292 127.0.0.1:57415 127.0.0.1:57433 3331534308 26 16000000548f6340e25e3140010003000000f3021f0000000000 ....T.c@.^1@.............. +5021 13.989731789 127.0.0.1:57433 127.0.0.1:57415 375863036 12 fffffffff5bb0a0000000000 ............ +5023 13.990288019 127.0.0.1:57433 127.0.0.1:57415 375863048 12 16000000eb9a0a0000000000 ............ +5025 13.990492344 127.0.0.1:57433 127.0.0.1:57415 375863060 22 12000000f3021f000000000001000300000000000000 ...................... +5027 13.990762711 127.0.0.1:57415 127.0.0.1:57433 3331534334 12 ffffffffeb9a0a0000000000 ............ +5037 14.029071569 127.0.0.1:57433 127.0.0.1:57415 375863082 12 feffffff1038010021380100 .....8..!8.. +5039 14.088653088 127.0.0.1:57415 127.0.0.1:57433 3331534346 12 feffffff2238010010380100 ...."8...8.. +5043 14.092887163 127.0.0.1:57415 127.0.0.1:57433 3331534358 12 1a000000f6bb0a0000000000 ............ +5045 14.093050003 127.0.0.1:57415 127.0.0.1:57433 3331534370 26 16000000548f6340e25e3140010003000000f5021f0000000000 ....T.c@.^1@.............. +5047 14.093525410 127.0.0.1:57433 127.0.0.1:57415 375863094 12 fffffffff6bb0a0000000000 ............ +5049 14.094207525 127.0.0.1:57433 127.0.0.1:57415 375863106 12 16000000ec9a0a0000000000 ............ +5051 14.094424486 127.0.0.1:57433 127.0.0.1:57415 375863118 22 12000000f5021f000000000001000300000000000000 ...................... +5053 14.094710588 127.0.0.1:57415 127.0.0.1:57433 3331534396 12 ffffffffec9a0a0000000000 ............ +5102 14.156084776 127.0.0.1:57415 127.0.0.1:57433 3331534408 12 65000000f7bb0a0000000000 e........... +5104 14.156348705 127.0.0.1:57415 127.0.0.1:57433 3331534420 101 1e0000001c2118d0c46f33bb010003000000b1ff01000000000031490ec39d01 .....!...o3...............1I......?.....3...|8.. +5106 14.156696558 127.0.0.1:57433 127.0.0.1:57415 375863140 12 fffffffff7bb0a0000000000 ............ +5108 14.157969475 127.0.0.1:57433 127.0.0.1:57415 375863152 12 34000000ed9a0a0000000000 4........... +5110 14.158165455 127.0.0.1:57433 127.0.0.1:57415 375863164 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................Q +5112 14.158428669 127.0.0.1:57415 127.0.0.1:57433 3331534521 12 ffffffffed9a0a0000000000 ............ +5114 14.159282684 127.0.0.1:57415 127.0.0.1:57433 3331534533 12 1e000000f8bb0a0000000000 ............ +5116 14.159470797 127.0.0.1:57415 127.0.0.1:57433 3331534545 30 1a00000055ceff62b21b3a50010003000000f7021f000000000000000000 ....U..b..:P.................. +5118 14.159839630 127.0.0.1:57433 127.0.0.1:57415 375863216 12 fffffffff8bb0a0000000000 ............ +5120 14.160363197 127.0.0.1:57433 127.0.0.1:57415 375863228 12 1a000000ee9a0a0000000000 ............ +5122 14.160503387 127.0.0.1:57433 127.0.0.1:57415 375863240 26 16000000f7021f00000000000100030000000000000000000000 .......................... +5124 14.160749912 127.0.0.1:57415 127.0.0.1:57433 3331534575 12 ffffffffee9a0a0000000000 ............ +5126 14.195860863 127.0.0.1:57415 127.0.0.1:57433 3331534587 12 1a000000f9bb0a0000000000 ............ +5128 14.196080685 127.0.0.1:57415 127.0.0.1:57433 3331534599 26 16000000548f6340e25e3140010003000000f9021f0000000000 ....T.c@.^1@.............. +5130 14.196697474 127.0.0.1:57433 127.0.0.1:57415 375863266 12 fffffffff9bb0a0000000000 ............ +5132 14.197233677 127.0.0.1:57433 127.0.0.1:57415 375863278 12 16000000ef9a0a0000000000 ............ +5134 14.197386265 127.0.0.1:57433 127.0.0.1:57415 375863290 22 12000000f9021f000000000001000300000000000000 ...................... +5136 14.197652817 127.0.0.1:57415 127.0.0.1:57433 3331534625 12 ffffffffef9a0a0000000000 ............ +5182 14.298866987 127.0.0.1:57415 127.0.0.1:57433 3331534637 12 1a000000fabb0a0000000000 ............ +5184 14.299033642 127.0.0.1:57415 127.0.0.1:57433 3331534649 26 16000000548f6340e25e3140010003000000fb021f0000000000 ....T.c@.^1@.............. +5186 14.299441576 127.0.0.1:57433 127.0.0.1:57415 375863312 12 fffffffffabb0a0000000000 ............ +5188 14.300299883 127.0.0.1:57433 127.0.0.1:57415 375863324 12 16000000f09a0a0000000000 ............ +5190 14.300446987 127.0.0.1:57433 127.0.0.1:57415 375863336 22 12000000fb021f000000000001000300000000000000 ...................... +5192 14.300757647 127.0.0.1:57415 127.0.0.1:57433 3331534675 12 fffffffff09a0a0000000000 ............ +5202 14.401859283 127.0.0.1:57415 127.0.0.1:57433 3331534687 12 1a000000fbbb0a0000000000 ............ +5205 14.401990175 127.0.0.1:57415 127.0.0.1:57433 3331534699 26 16000000548f6340e25e3140010003000000fd021f0000000000 ....T.c@.^1@.............. +5208 14.402577400 127.0.0.1:57433 127.0.0.1:57415 375863358 12 fffffffffbbb0a0000000000 ............ +5211 14.403503656 127.0.0.1:57433 127.0.0.1:57415 375863370 12 16000000f19a0a0000000000 ............ +5215 14.403670311 127.0.0.1:57433 127.0.0.1:57415 375863382 22 12000000fd021f000000000001000300000000000000 ...................... +5218 14.403957129 127.0.0.1:57415 127.0.0.1:57433 3331534725 12 fffffffff19a0a0000000000 ............ +5249 14.460241079 127.0.0.1:57415 127.0.0.1:57433 3331534737 12 65000000fcbb0a0000000000 e........... +5251 14.460463285 127.0.0.1:57415 127.0.0.1:57433 3331534749 101 1e0000001c2118d0c46f33bb010003000000b2ff010000000000614a0ec39d01 .....!...o3...............aJ......?.....3...|8.. +5253 14.460902929 127.0.0.1:57433 127.0.0.1:57415 375863404 12 fffffffffcbb0a0000000000 ............ +5255 14.462186098 127.0.0.1:57433 127.0.0.1:57415 375863416 12 34000000f29a0a0000000000 4........... +5257 14.462348461 127.0.0.1:57433 127.0.0.1:57415 375863428 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................Q +5259 14.462575912 127.0.0.1:57415 127.0.0.1:57433 3331534850 12 fffffffff29a0a0000000000 ............ +5261 14.463510275 127.0.0.1:57415 127.0.0.1:57433 3331534862 12 1e000000fdbb0a0000000000 ............ +5263 14.463702917 127.0.0.1:57415 127.0.0.1:57433 3331534874 30 1a00000055ceff62b21b3a50010003000000ff021f000000000000000000 ....U..b..:P.................. +5265 14.464028120 127.0.0.1:57433 127.0.0.1:57415 375863480 12 fffffffffdbb0a0000000000 ............ +5267 14.464525461 127.0.0.1:57433 127.0.0.1:57415 375863492 12 1a000000f39a0a0000000000 ............ +5269 14.464663744 127.0.0.1:57433 127.0.0.1:57415 375863504 26 16000000ff021f00000000000100030000000000000000000000 .......................... +5271 14.464915276 127.0.0.1:57415 127.0.0.1:57433 3331534904 12 fffffffff39a0a0000000000 ............ +5303 14.506837130 127.0.0.1:57415 127.0.0.1:57433 3331534916 12 1a000000febb0a0000000000 ............ +5305 14.507039309 127.0.0.1:57415 127.0.0.1:57433 3331534928 26 16000000548f6340e25e314001000300000001031f0000000000 ....T.c@.^1@.............. +5307 14.507463217 127.0.0.1:57433 127.0.0.1:57415 375863530 12 fffffffffebb0a0000000000 ............ +5309 14.507886887 127.0.0.1:57433 127.0.0.1:57415 375863542 12 16000000f49a0a0000000000 ............ +5311 14.508062840 127.0.0.1:57433 127.0.0.1:57415 375863554 22 1200000001031f000000000001000300000000000000 ...................... +5313 14.508373260 127.0.0.1:57415 127.0.0.1:57433 3331534954 12 fffffffff49a0a0000000000 ............ +5321 14.530566216 127.0.0.1:57433 127.0.0.1:57415 375863576 12 feffffff1138010022380100 .....8.."8.. +5363 14.589517355 127.0.0.1:57415 127.0.0.1:57433 3331534966 12 feffffff2338010011380100 ....#8...8.. +5371 14.609879017 127.0.0.1:57415 127.0.0.1:57433 3331534978 12 1a000000ffbb0a0000000000 ............ +5373 14.610041618 127.0.0.1:57415 127.0.0.1:57433 3331534990 26 16000000548f6340e25e314001000300000003031f0000000000 ....T.c@.^1@.............. +5375 14.610409260 127.0.0.1:57433 127.0.0.1:57415 375863588 12 ffffffffffbb0a0000000000 ............ +5377 14.612016678 127.0.0.1:57433 127.0.0.1:57415 375863600 12 16000000f59a0a0000000000 ............ +5379 14.612280130 127.0.0.1:57433 127.0.0.1:57415 375863612 22 1200000003031f000000000001000300000000000000 ...................... +5381 14.612619638 127.0.0.1:57415 127.0.0.1:57433 3331535016 12 fffffffff59a0a0000000000 ............ +5386 14.714863777 127.0.0.1:57415 127.0.0.1:57433 3331535028 12 1a00000000bc0a0000000000 ............ +5388 14.715057850 127.0.0.1:57415 127.0.0.1:57433 3331535040 26 16000000548f6340e25e314001000300000005031f0000000000 ....T.c@.^1@.............. +5390 14.715300083 127.0.0.1:57433 127.0.0.1:57415 375863634 12 ffffffff00bc0a0000000000 ............ +5392 14.715823174 127.0.0.1:57433 127.0.0.1:57415 375863646 12 16000000f69a0a0000000000 ............ +5394 14.715967655 127.0.0.1:57433 127.0.0.1:57415 375863658 22 1200000005031f000000000001000300000000000000 ...................... +5396 14.716268063 127.0.0.1:57415 127.0.0.1:57433 3331535066 12 fffffffff69a0a0000000000 ............ +5403 14.765305996 127.0.0.1:57415 127.0.0.1:57433 3331535078 12 2200000001bc0a0000000000 "........... +5405 14.765481949 127.0.0.1:57415 127.0.0.1:57433 3331535090 34 1e0000001c2118d0c46f33bb010003000000b3ff010000000000924b0ec39d01 .....!...o3................K...... +5407 14.765616417 127.0.0.1:57415 127.0.0.1:57433 3331535124 12 4300000002bc0a0000000000 C........... +5409 14.765698910 127.0.0.1:57415 127.0.0.1:57433 3331535136 67 3f000000980433cb0cb47c380100030000000100000000b3ff0100000000003d ?.....3...|8...................=B.....&......... +5411 14.765816212 127.0.0.1:57433 127.0.0.1:57415 375863680 12 ffffffff01bc0a0000000000 ............ +5413 14.766404390 127.0.0.1:57433 127.0.0.1:57415 375863692 12 ffffffff02bc0a0000000000 ............ +5415 14.767250299 127.0.0.1:57433 127.0.0.1:57415 375863704 12 34000000f79a0a0000000000 4........... +5417 14.767418146 127.0.0.1:57433 127.0.0.1:57415 375863716 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............x..Q +5419 14.767693520 127.0.0.1:57415 127.0.0.1:57433 3331535203 12 fffffffff79a0a0000000000 ............ +5421 14.768727779 127.0.0.1:57415 127.0.0.1:57433 3331535215 12 1e00000003bc0a0000000000 ............ +5423 14.768871784 127.0.0.1:57415 127.0.0.1:57433 3331535227 30 1a00000055ceff62b21b3a5001000300000007031f000000000000000000 ....U..b..:P.................. +5425 14.769246101 127.0.0.1:57433 127.0.0.1:57415 375863768 12 ffffffff03bc0a0000000000 ............ +5427 14.769707918 127.0.0.1:57433 127.0.0.1:57415 375863780 12 1a000000f89a0a0000000000 ............ +5429 14.769869566 127.0.0.1:57433 127.0.0.1:57415 375863792 26 1600000007031f00000000000100030000000000000000000000 .......................... +5431 14.770161629 127.0.0.1:57415 127.0.0.1:57433 3331535257 12 fffffffff89a0a0000000000 ............ +5441 14.817905903 127.0.0.1:57415 127.0.0.1:57433 3331535269 12 1a00000004bc0a0000000000 ............ +5443 14.818165302 127.0.0.1:57415 127.0.0.1:57433 3331535281 26 16000000548f6340e25e314001000300000009031f0000000000 ....T.c@.^1@.............. +5445 14.818500757 127.0.0.1:57433 127.0.0.1:57415 375863818 12 ffffffff04bc0a0000000000 ............ +5447 14.818971395 127.0.0.1:57433 127.0.0.1:57415 375863830 12 16000000f99a0a0000000000 ............ +5449 14.819214582 127.0.0.1:57433 127.0.0.1:57415 375863842 22 1200000009031f000000000001000300000000000000 ...................... +5451 14.819572687 127.0.0.1:57415 127.0.0.1:57433 3331535307 12 fffffffff99a0a0000000000 ............ +5456 14.920829296 127.0.0.1:57415 127.0.0.1:57433 3331535319 12 1a00000005bc0a0000000000 ............ +5458 14.920991421 127.0.0.1:57415 127.0.0.1:57433 3331535331 26 16000000548f6340e25e31400100030000000b031f0000000000 ....T.c@.^1@.............. +5460 14.921416521 127.0.0.1:57433 127.0.0.1:57415 375863864 12 ffffffff05bc0a0000000000 ............ +5462 14.921812534 127.0.0.1:57433 127.0.0.1:57415 375863876 12 16000000fa9a0a0000000000 ............ +5464 14.921977282 127.0.0.1:57433 127.0.0.1:57415 375863888 22 120000000b031f000000000001000300000000000000 ...................... +5466 14.922434568 127.0.0.1:57415 127.0.0.1:57433 3331535357 12 fffffffffa9a0a0000000000 ............ +5468 15.023816824 127.0.0.1:57415 127.0.0.1:57433 3331535369 12 1a00000006bc0a0000000000 ............ +5470 15.024011850 127.0.0.1:57415 127.0.0.1:57433 3331535381 26 16000000548f6340e25e31400100030000000d031f0000000000 ....T.c@.^1@.............. +5472 15.024435043 127.0.0.1:57433 127.0.0.1:57415 375863910 12 ffffffff06bc0a0000000000 ............ +5474 15.024834156 127.0.0.1:57433 127.0.0.1:57415 375863922 12 16000000fb9a0a0000000000 ............ +5476 15.025060654 127.0.0.1:57433 127.0.0.1:57415 375863934 22 120000000d031f000000000001000300000000000000 ...................... +5478 15.025422335 127.0.0.1:57415 127.0.0.1:57433 3331535407 12 fffffffffb9a0a0000000000 ............ +5486 15.030946732 127.0.0.1:57433 127.0.0.1:57415 375863956 12 feffffff1238010023380100 .....8..#8.. +5488 15.071327209 127.0.0.1:57415 127.0.0.1:57433 3331535419 12 6500000007bc0a0000000000 e........... +5490 15.071542025 127.0.0.1:57415 127.0.0.1:57433 3331535431 101 1e0000001c2118d0c46f33bb010003000000b4ff010000000000c44c0ec39d01 .....!...o3................L......?.....3...|8.. +5492 15.071955919 127.0.0.1:57433 127.0.0.1:57415 375863968 12 ffffffff07bc0a0000000000 ............ +5494 15.072816372 127.0.0.1:57433 127.0.0.1:57415 375863980 12 34000000fc9a0a0000000000 4........... +5496 15.073006153 127.0.0.1:57433 127.0.0.1:57415 375863992 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................M*R +5498 15.073365927 127.0.0.1:57415 127.0.0.1:57433 3331535532 12 fffffffffc9a0a0000000000 ............ +5500 15.074324608 127.0.0.1:57415 127.0.0.1:57433 3331535544 12 1e00000008bc0a0000000000 ............ +5502 15.074466467 127.0.0.1:57415 127.0.0.1:57433 3331535556 30 1a00000055ceff62b21b3a500100030000000f031f000000000000000000 ....U..b..:P.................. +5504 15.074764252 127.0.0.1:57433 127.0.0.1:57415 375864044 12 ffffffff08bc0a0000000000 ............ +5506 15.075174570 127.0.0.1:57433 127.0.0.1:57415 375864056 12 1a000000fd9a0a0000000000 ............ +5508 15.075326204 127.0.0.1:57433 127.0.0.1:57415 375864068 26 160000000f031f00000000000100030000000000000000000000 .......................... +5510 15.075556040 127.0.0.1:57415 127.0.0.1:57433 3331535586 12 fffffffffd9a0a0000000000 ............ +5512 15.090719700 127.0.0.1:57415 127.0.0.1:57433 3331535598 12 feffffff2438010012380100 ....$8...8.. +5522 15.126768589 127.0.0.1:57415 127.0.0.1:57433 3331535610 12 1a00000009bc0a0000000000 ............ +5524 15.126964092 127.0.0.1:57415 127.0.0.1:57433 3331535622 26 16000000548f6340e25e314001000300000011031f0000000000 ....T.c@.^1@.............. +5526 15.127338886 127.0.0.1:57433 127.0.0.1:57415 375864094 12 ffffffff09bc0a0000000000 ............ +5528 15.127729177 127.0.0.1:57433 127.0.0.1:57415 375864106 12 16000000fe9a0a0000000000 ............ +5530 15.127885580 127.0.0.1:57433 127.0.0.1:57415 375864118 22 1200000011031f000000000001000300000000000000 ...................... +5532 15.128200769 127.0.0.1:57415 127.0.0.1:57433 3331535648 12 fffffffffe9a0a0000000000 ............ +5536 15.230029583 127.0.0.1:57415 127.0.0.1:57433 3331535660 12 1a0000000abc0a0000000000 ............ +5538 15.230256081 127.0.0.1:57415 127.0.0.1:57433 3331535672 26 16000000548f6340e25e314001000300000013031f0000000000 ....T.c@.^1@.............. +5540 15.230585814 127.0.0.1:57433 127.0.0.1:57415 375864140 12 ffffffff0abc0a0000000000 ............ +5542 15.231107950 127.0.0.1:57433 127.0.0.1:57415 375864152 12 16000000ff9a0a0000000000 ............ +5544 15.231336832 127.0.0.1:57433 127.0.0.1:57415 375864164 22 1200000013031f000000000001000300000000000000 ...................... +5546 15.231559038 127.0.0.1:57415 127.0.0.1:57433 3331535698 12 ffffffffff9a0a0000000000 ............ +5550 15.333918095 127.0.0.1:57415 127.0.0.1:57433 3331535710 12 1a0000000bbc0a0000000000 ............ +5552 15.334186554 127.0.0.1:57415 127.0.0.1:57433 3331535722 26 16000000548f6340e25e314001000300000015031f0000000000 ....T.c@.^1@.............. +5554 15.334481716 127.0.0.1:57433 127.0.0.1:57415 375864186 12 ffffffff0bbc0a0000000000 ............ +5556 15.334867716 127.0.0.1:57433 127.0.0.1:57415 375864198 12 16000000009b0a0000000000 ............ +5558 15.335074902 127.0.0.1:57433 127.0.0.1:57415 375864210 22 1200000015031f000000000001000300000000000000 ...................... +5560 15.335366964 127.0.0.1:57415 127.0.0.1:57433 3331535748 12 ffffffff009b0a0000000000 ............ +5562 15.377029419 127.0.0.1:57415 127.0.0.1:57433 3331535760 12 650000000cbc0a0000000000 e........... +5564 15.377231598 127.0.0.1:57415 127.0.0.1:57433 3331535772 101 1e0000001c2118d0c46f33bb010003000000b5ff010000000000f64d0ec39d01 .....!...o3................M......?.....3...|8.. +5566 15.377568007 127.0.0.1:57433 127.0.0.1:57415 375864232 12 ffffffff0cbc0a0000000000 ............ +5568 15.378456354 127.0.0.1:57433 127.0.0.1:57415 375864244 12 34000000019b0a0000000000 4........... +5570 15.378785849 127.0.0.1:57433 127.0.0.1:57415 375864256 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................XR +5572 15.379260778 127.0.0.1:57415 127.0.0.1:57433 3331535873 12 ffffffff019b0a0000000000 ............ +5574 15.380187511 127.0.0.1:57415 127.0.0.1:57433 3331535885 12 1e0000000dbc0a0000000000 ............ +5576 15.380339384 127.0.0.1:57415 127.0.0.1:57433 3331535897 30 1a00000055ceff62b21b3a5001000300000017031f000000000000000000 ....U..b..:P.................. +5578 15.380566835 127.0.0.1:57433 127.0.0.1:57415 375864308 12 ffffffff0dbc0a0000000000 ............ +5580 15.380953074 127.0.0.1:57433 127.0.0.1:57415 375864320 12 1a000000029b0a0000000000 ............ +5582 15.381175280 127.0.0.1:57433 127.0.0.1:57415 375864332 26 1600000017031f00000000000100030000000000000000000000 .......................... +5584 15.381443262 127.0.0.1:57415 127.0.0.1:57433 3331535927 12 ffffffff029b0a0000000000 ............ +5588 15.437745094 127.0.0.1:57415 127.0.0.1:57433 3331535939 12 1a0000000ebc0a0000000000 ............ +5590 15.437939405 127.0.0.1:57415 127.0.0.1:57433 3331535951 26 16000000548f6340e25e314001000300000019031f0000000000 ....T.c@.^1@.............. +5592 15.438489914 127.0.0.1:57433 127.0.0.1:57415 375864358 12 ffffffff0ebc0a0000000000 ............ +5594 15.439028978 127.0.0.1:57433 127.0.0.1:57415 375864370 12 16000000039b0a0000000000 ............ +5596 15.439261436 127.0.0.1:57433 127.0.0.1:57415 375864382 22 1200000019031f000000000001000300000000000000 ...................... +5598 15.439518452 127.0.0.1:57415 127.0.0.1:57433 3331535977 12 ffffffff039b0a0000000000 ............ +5606 15.531398058 127.0.0.1:57433 127.0.0.1:57415 375864404 12 feffffff1338010024380100 .....8..$8.. +5608 15.540934086 127.0.0.1:57415 127.0.0.1:57433 3331535989 12 1a0000000fbc0a0000000000 ............ +5610 15.541203976 127.0.0.1:57415 127.0.0.1:57433 3331536001 26 16000000548f6340e25e31400100030000001b031f0000000000 ....T.c@.^1@.............. +5612 15.541584969 127.0.0.1:57433 127.0.0.1:57415 375864416 12 ffffffff0fbc0a0000000000 ............ +5614 15.542269468 127.0.0.1:57433 127.0.0.1:57415 375864428 12 16000000049b0a0000000000 ............ +5616 15.542432547 127.0.0.1:57433 127.0.0.1:57415 375864440 22 120000001b031f000000000001000300000000000000 ...................... +5618 15.542742252 127.0.0.1:57415 127.0.0.1:57433 3331536027 12 ffffffff049b0a0000000000 ............ +5621 15.591539621 127.0.0.1:57415 127.0.0.1:57433 3331536039 12 feffffff2538010013380100 ....%8...8.. +5634 15.644347668 127.0.0.1:57415 127.0.0.1:57433 3331536051 12 1a00000010bc0a0000000000 ............ +5636 15.644515991 127.0.0.1:57415 127.0.0.1:57433 3331536063 26 16000000548f6340e25e31400100030000001d031f0000000000 ....T.c@.^1@.............. +5638 15.644863129 127.0.0.1:57433 127.0.0.1:57415 375864462 12 ffffffff10bc0a0000000000 ............ +5640 15.645341396 127.0.0.1:57433 127.0.0.1:57415 375864474 12 16000000059b0a0000000000 ............ +5642 15.645533085 127.0.0.1:57433 127.0.0.1:57415 375864486 22 120000001d031f000000000001000300000000000000 ...................... +5644 15.645947695 127.0.0.1:57415 127.0.0.1:57433 3331536089 12 ffffffff059b0a0000000000 ............ +5646 15.681739807 127.0.0.1:57415 127.0.0.1:57433 3331536101 12 6500000011bc0a0000000000 e........... +5648 15.681887388 127.0.0.1:57415 127.0.0.1:57433 3331536113 101 1e0000001c2118d0c46f33bb010003000000b6ff010000000000274f0ec39d01 .....!...o3...............'O......?.....3...|8.. +5650 15.682544947 127.0.0.1:57433 127.0.0.1:57415 375864508 12 ffffffff11bc0a0000000000 ............ +5652 15.684545040 127.0.0.1:57433 127.0.0.1:57415 375864520 12 34000000069b0a0000000000 4........... +5654 15.684776545 127.0.0.1:57433 127.0.0.1:57415 375864532 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................R +5656 15.685093880 127.0.0.1:57415 127.0.0.1:57433 3331536214 12 ffffffff069b0a0000000000 ............ +5658 15.686007261 127.0.0.1:57415 127.0.0.1:57433 3331536226 12 1e00000012bc0a0000000000 ............ +5660 15.686148643 127.0.0.1:57415 127.0.0.1:57433 3331536238 30 1a00000055ceff62b21b3a500100030000001f031f000000000000000000 ....U..b..:P.................. +5662 15.686517000 127.0.0.1:57433 127.0.0.1:57415 375864584 12 ffffffff12bc0a0000000000 ............ +5664 15.687168598 127.0.0.1:57433 127.0.0.1:57415 375864596 12 1a000000079b0a0000000000 ............ +5666 15.687350988 127.0.0.1:57433 127.0.0.1:57415 375864608 26 160000001f031f00000000000100030000000000000000000000 .......................... +5668 15.687715530 127.0.0.1:57415 127.0.0.1:57433 3331536268 12 ffffffff079b0a0000000000 ............ +5674 15.747106791 127.0.0.1:57415 127.0.0.1:57433 3331536280 12 1a00000013bc0a0000000000 ............ +5676 15.747329473 127.0.0.1:57415 127.0.0.1:57433 3331536292 26 16000000548f6340e25e314001000300000021031f0000000000 ....T.c@.^1@......!....... +5678 15.747680426 127.0.0.1:57433 127.0.0.1:57415 375864634 12 ffffffff13bc0a0000000000 ............ +5680 15.748302221 127.0.0.1:57433 127.0.0.1:57415 375864646 12 16000000089b0a0000000000 ............ +5682 15.748571396 127.0.0.1:57433 127.0.0.1:57415 375864658 22 1200000021031f000000000001000300000000000000 ....!................. +5684 15.748918295 127.0.0.1:57415 127.0.0.1:57433 3331536318 12 ffffffff089b0a0000000000 ............ +5686 15.850038290 127.0.0.1:57415 127.0.0.1:57433 3331536330 12 1a00000014bc0a0000000000 ............ +5688 15.850226879 127.0.0.1:57415 127.0.0.1:57433 3331536342 26 16000000548f6340e25e314001000300000023031f0000000000 ....T.c@.^1@......#....... +5690 15.850719690 127.0.0.1:57433 127.0.0.1:57415 375864680 12 ffffffff14bc0a0000000000 ............ +5692 15.851166248 127.0.0.1:57433 127.0.0.1:57415 375864692 12 16000000099b0a0000000000 ............ +5694 15.851327658 127.0.0.1:57433 127.0.0.1:57415 375864704 22 1200000023031f000000000001000300000000000000 ....#................. +5696 15.851663589 127.0.0.1:57415 127.0.0.1:57433 3331536368 12 ffffffff099b0a0000000000 ............ +5702 15.954161167 127.0.0.1:57415 127.0.0.1:57433 3331536380 12 1a00000015bc0a0000000000 ............ +5704 15.954330206 127.0.0.1:57415 127.0.0.1:57433 3331536392 26 16000000548f6340e25e314001000300000025031f0000000000 ....T.c@.^1@......%....... +5706 15.954799652 127.0.0.1:57433 127.0.0.1:57415 375864726 12 ffffffff15bc0a0000000000 ............ +5708 15.955253363 127.0.0.1:57433 127.0.0.1:57415 375864738 12 160000000a9b0a0000000000 ............ +5710 15.955509186 127.0.0.1:57433 127.0.0.1:57415 375864750 22 1200000025031f000000000001000300000000000000 ....%................. +5712 15.955818176 127.0.0.1:57415 127.0.0.1:57433 3331536418 12 ffffffff0a9b0a0000000000 ............ +5714 15.987810373 127.0.0.1:57415 127.0.0.1:57433 3331536430 12 2200000016bc0a0000000000 "........... +5716 15.987985611 127.0.0.1:57415 127.0.0.1:57433 3331536442 34 1e0000001c2118d0c46f33bb010003000000b7ff01000000000059500ec39d01 .....!...o3...............YP...... +5718 15.988092899 127.0.0.1:57415 127.0.0.1:57433 3331536476 12 4300000017bc0a0000000000 C........... +5720 15.988189936 127.0.0.1:57415 127.0.0.1:57433 3331536488 67 3f000000980433cb0cb47c380100030000000100000000b7ff0100000000003d ?.....3...|8...................=B.....&......... +5721 15.988250732 127.0.0.1:57433 127.0.0.1:57415 375864772 12 ffffffff16bc0a0000000000 ............ +5724 15.988506794 127.0.0.1:57433 127.0.0.1:57415 375864784 12 ffffffff17bc0a0000000000 ............ +5726 15.989738226 127.0.0.1:57433 127.0.0.1:57415 375864796 12 340000000b9b0a0000000000 4........... +5728 15.989903688 127.0.0.1:57433 127.0.0.1:57415 375864808 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................7.R +5730 15.990153790 127.0.0.1:57415 127.0.0.1:57433 3331536555 12 ffffffff0b9b0a0000000000 ............ +5732 15.990915060 127.0.0.1:57415 127.0.0.1:57433 3331536567 12 1e00000018bc0a0000000000 ............ +5734 15.991082191 127.0.0.1:57415 127.0.0.1:57433 3331536579 30 1a00000055ceff62b21b3a5001000300000027031f000000000000000000 ....U..b..:P......'........... +5736 15.991321802 127.0.0.1:57433 127.0.0.1:57415 375864860 12 ffffffff18bc0a0000000000 ............ +5738 15.992594957 127.0.0.1:57433 127.0.0.1:57415 375864872 12 1a0000000c9b0a0000000000 ............ +5740 15.992826700 127.0.0.1:57433 127.0.0.1:57415 375864884 26 1600000027031f00000000000100030000000000000000000000 ....'..................... +5742 15.993161678 127.0.0.1:57415 127.0.0.1:57433 3331536609 12 ffffffff0c9b0a0000000000 ............ +5750 16.031902552 127.0.0.1:57433 127.0.0.1:57415 375864910 12 feffffff1438010025380100 .....8..%8.. +5752 16.056962729 127.0.0.1:57415 127.0.0.1:57433 3331536621 12 1a00000019bc0a0000000000 ............ +5754 16.057185173 127.0.0.1:57415 127.0.0.1:57433 3331536633 26 16000000548f6340e25e314001000300000029031f0000000000 ....T.c@.^1@......)....... +5756 16.057540417 127.0.0.1:57433 127.0.0.1:57415 375864922 12 ffffffff19bc0a0000000000 ............ +5758 16.058097601 127.0.0.1:57433 127.0.0.1:57415 375864934 12 160000000d9b0a0000000000 ............ +5760 16.058313608 127.0.0.1:57433 127.0.0.1:57415 375864946 22 1200000029031f000000000001000300000000000000 ....)................. +5762 16.058614016 127.0.0.1:57415 127.0.0.1:57433 3331536659 12 ffffffff0d9b0a0000000000 ............ +5765 16.093022346 127.0.0.1:57415 127.0.0.1:57433 3331536671 12 feffffff2638010014380100 ....&8...8.. +5774 16.159514666 127.0.0.1:57415 127.0.0.1:57433 3331536683 12 1a0000001abc0a0000000000 ............ +5776 16.159686804 127.0.0.1:57415 127.0.0.1:57433 3331536695 26 16000000548f6340e25e31400100030000002b031f0000000000 ....T.c@.^1@......+....... +5778 16.160072088 127.0.0.1:57433 127.0.0.1:57415 375864968 12 ffffffff1abc0a0000000000 ............ +5780 16.160570383 127.0.0.1:57433 127.0.0.1:57415 375864980 12 160000000e9b0a0000000000 ............ +5782 16.160828590 127.0.0.1:57433 127.0.0.1:57415 375864992 22 120000002b031f000000000001000300000000000000 ....+................. +5784 16.161095619 127.0.0.1:57415 127.0.0.1:57433 3331536721 12 ffffffff0e9b0a0000000000 ............ +5792 16.263431072 127.0.0.1:57415 127.0.0.1:57433 3331536733 12 1a0000001bbc0a0000000000 ............ +5794 16.263609171 127.0.0.1:57415 127.0.0.1:57433 3331536745 26 16000000548f6340e25e31400100030000002d031f0000000000 ....T.c@.^1@......-....... +5796 16.264016867 127.0.0.1:57433 127.0.0.1:57415 375865014 12 ffffffff1bbc0a0000000000 ............ +5798 16.264649153 127.0.0.1:57433 127.0.0.1:57415 375865026 12 160000000f9b0a0000000000 ............ +5800 16.264813900 127.0.0.1:57433 127.0.0.1:57415 375865038 22 120000002d031f000000000001000300000000000000 ....-................. +5802 16.265222311 127.0.0.1:57415 127.0.0.1:57433 3331536771 12 ffffffff0f9b0a0000000000 ............ +5804 16.293384075 127.0.0.1:57415 127.0.0.1:57433 3331536783 12 220000001cbc0a0000000000 "........... +5806 16.293554783 127.0.0.1:57415 127.0.0.1:57433 3331536795 34 1e0000001c2118d0c46f33bb010003000000b8ff0100000000008b510ec39d01 .....!...o3................Q...... +5808 16.293688774 127.0.0.1:57415 127.0.0.1:57433 3331536829 12 430000001dbc0a0000000000 C........... +5810 16.293773174 127.0.0.1:57415 127.0.0.1:57433 3331536841 67 3f000000980433cb0cb47c380100030000000100000000b8ff0100000000003d ?.....3...|8...................=B.....&......... +5812 16.293994665 127.0.0.1:57433 127.0.0.1:57415 375865060 12 ffffffff1cbc0a0000000000 ............ +5814 16.294479370 127.0.0.1:57433 127.0.0.1:57415 375865072 12 ffffffff1dbc0a0000000000 ............ +5816 16.295285940 127.0.0.1:57433 127.0.0.1:57415 375865084 12 34000000109b0a0000000000 4........... +5818 16.295510769 127.0.0.1:57433 127.0.0.1:57415 375865096 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............c..R +5820 16.295812130 127.0.0.1:57415 127.0.0.1:57433 3331536908 12 ffffffff109b0a0000000000 ............ +5822 16.296649694 127.0.0.1:57415 127.0.0.1:57433 3331536920 12 1e0000001ebc0a0000000000 ............ +5824 16.296862364 127.0.0.1:57415 127.0.0.1:57433 3331536932 30 1a00000055ceff62b21b3a500100030000002f031f000000000000000000 ....U..b..:P....../........... +5826 16.297168255 127.0.0.1:57433 127.0.0.1:57415 375865148 12 ffffffff1ebc0a0000000000 ............ +5828 16.297826290 127.0.0.1:57433 127.0.0.1:57415 375865160 12 1a000000119b0a0000000000 ............ +5830 16.298031807 127.0.0.1:57433 127.0.0.1:57415 375865172 26 160000002f031f00000000000100030000000000000000000000 ..../..................... +5832 16.298285246 127.0.0.1:57415 127.0.0.1:57433 3331536962 12 ffffffff119b0a0000000000 ............ +5834 16.367772102 127.0.0.1:57415 127.0.0.1:57433 3331536974 12 1a0000001fbc0a0000000000 ............ +5836 16.367959976 127.0.0.1:57415 127.0.0.1:57433 3331536986 26 16000000548f6340e25e314001000300000031031f0000000000 ....T.c@.^1@......1....... +5838 16.368305683 127.0.0.1:57433 127.0.0.1:57415 375865198 12 ffffffff1fbc0a0000000000 ............ +5840 16.368895292 127.0.0.1:57433 127.0.0.1:57415 375865210 12 16000000129b0a0000000000 ............ +5842 16.369219780 127.0.0.1:57433 127.0.0.1:57415 375865222 22 1200000031031f000000000001000300000000000000 ....1................. +5844 16.369541168 127.0.0.1:57415 127.0.0.1:57433 3331537012 12 ffffffff129b0a0000000000 ............ +5848 16.472228289 127.0.0.1:57415 127.0.0.1:57433 3331537024 12 1a00000020bc0a0000000000 .... ....... +5850 16.472416639 127.0.0.1:57415 127.0.0.1:57433 3331537036 26 16000000548f6340e25e314001000300000033031f0000000000 ....T.c@.^1@......3....... +5852 16.472754955 127.0.0.1:57433 127.0.0.1:57415 375865244 12 ffffffff20bc0a0000000000 .... ....... +5854 16.473306179 127.0.0.1:57433 127.0.0.1:57415 375865256 12 16000000139b0a0000000000 ............ +5856 16.473538876 127.0.0.1:57433 127.0.0.1:57415 375865268 22 1200000033031f000000000001000300000000000000 ....3................. +5858 16.473849297 127.0.0.1:57415 127.0.0.1:57433 3331537062 12 ffffffff139b0a0000000000 ............ +5870 16.532927513 127.0.0.1:57433 127.0.0.1:57415 375865290 12 feffffff1538010026380100 .....8..&8.. +5874 16.575894356 127.0.0.1:57415 127.0.0.1:57433 3331537074 12 1a00000021bc0a0000000000 ....!....... +5876 16.576120615 127.0.0.1:57415 127.0.0.1:57433 3331537086 26 16000000548f6340e25e314001000300000035031f0000000000 ....T.c@.^1@......5....... +5878 16.576668262 127.0.0.1:57433 127.0.0.1:57415 375865302 12 ffffffff21bc0a0000000000 ....!....... +5880 16.577218056 127.0.0.1:57433 127.0.0.1:57415 375865314 12 16000000149b0a0000000000 ............ +5882 16.577425957 127.0.0.1:57433 127.0.0.1:57415 375865326 22 1200000035031f000000000001000300000000000000 ....5................. +5884 16.577737570 127.0.0.1:57415 127.0.0.1:57433 3331537112 12 ffffffff149b0a0000000000 ............ +5886 16.594369173 127.0.0.1:57415 127.0.0.1:57433 3331537124 12 feffffff2738010015380100 ....'8...8.. +5890 16.599073172 127.0.0.1:57415 127.0.0.1:57433 3331537136 12 6500000022bc0a0000000000 e..."....... +5892 16.599274397 127.0.0.1:57415 127.0.0.1:57433 3331537148 101 1e0000001c2118d0c46f33bb010003000000b9ff010000000000bc520ec39d01 .....!...o3................R......?.....3...|8.. +5894 16.599642277 127.0.0.1:57433 127.0.0.1:57415 375865348 12 ffffffff22bc0a0000000000 ...."....... +5896 16.600958347 127.0.0.1:57433 127.0.0.1:57415 375865360 12 34000000159b0a0000000000 4........... +5898 16.601140738 127.0.0.1:57433 127.0.0.1:57415 375865372 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............,z.S +5900 16.601408243 127.0.0.1:57415 127.0.0.1:57433 3331537249 12 ffffffff159b0a0000000000 ............ +5902 16.602103472 127.0.0.1:57415 127.0.0.1:57433 3331537261 12 1e00000023bc0a0000000000 ....#....... +5904 16.602350712 127.0.0.1:57415 127.0.0.1:57433 3331537273 30 1a00000055ceff62b21b3a5001000300000037031f000000000000000000 ....U..b..:P......7........... +5906 16.602662802 127.0.0.1:57433 127.0.0.1:57415 375865424 12 ffffffff23bc0a0000000000 ....#....... +5908 16.603224993 127.0.0.1:57433 127.0.0.1:57415 375865436 12 1a000000169b0a0000000000 ............ +5910 16.603390455 127.0.0.1:57433 127.0.0.1:57415 375865448 26 1600000037031f00000000000100030000000000000000000000 ....7..................... +5912 16.603708267 127.0.0.1:57415 127.0.0.1:57433 3331537303 12 ffffffff169b0a0000000000 ............ +5959 16.681045055 127.0.0.1:57415 127.0.0.1:57433 3331537315 12 1a00000024bc0a0000000000 ....$....... +5961 16.681315184 127.0.0.1:57415 127.0.0.1:57433 3331537327 26 16000000548f6340e25e314001000300000039031f0000000000 ....T.c@.^1@......9....... +5963 16.681645393 127.0.0.1:57433 127.0.0.1:57415 375865474 12 ffffffff24bc0a0000000000 ....$....... +5965 16.682404995 127.0.0.1:57433 127.0.0.1:57415 375865486 12 16000000179b0a0000000000 ............ +5967 16.682620049 127.0.0.1:57433 127.0.0.1:57415 375865498 22 1200000039031f000000000001000300000000000000 ....9................. +5969 16.682883501 127.0.0.1:57415 127.0.0.1:57433 3331537353 12 ffffffff179b0a0000000000 ............ +5975 16.784700155 127.0.0.1:57415 127.0.0.1:57433 3331537365 12 1a00000025bc0a0000000000 ....%....... +5977 16.784884930 127.0.0.1:57415 127.0.0.1:57433 3331537377 26 16000000548f6340e25e31400100030000003b031f0000000000 ....T.c@.^1@......;....... +5979 16.785306215 127.0.0.1:57433 127.0.0.1:57415 375865520 12 ffffffff25bc0a0000000000 ....%....... +5981 16.785795212 127.0.0.1:57433 127.0.0.1:57415 375865532 12 16000000189b0a0000000000 ............ +5983 16.785957336 127.0.0.1:57433 127.0.0.1:57415 375865544 22 120000003b031f000000000001000300000000000000 ....;................. +5985 16.786380291 127.0.0.1:57415 127.0.0.1:57433 3331537403 12 ffffffff189b0a0000000000 ............ +5987 16.888331175 127.0.0.1:57415 127.0.0.1:57433 3331537415 12 1a00000026bc0a0000000000 ....&....... +5989 16.888608932 127.0.0.1:57415 127.0.0.1:57433 3331537427 26 16000000548f6340e25e31400100030000003d031f0000000000 ....T.c@.^1@......=....... +5991 16.889026642 127.0.0.1:57433 127.0.0.1:57415 375865566 12 ffffffff26bc0a0000000000 ....&....... +5993 16.889634132 127.0.0.1:57433 127.0.0.1:57415 375865578 12 16000000199b0a0000000000 ............ +5995 16.889786243 127.0.0.1:57433 127.0.0.1:57415 375865590 22 120000003d031f000000000001000300000000000000 ....=................. +5997 16.890080452 127.0.0.1:57415 127.0.0.1:57433 3331537453 12 ffffffff199b0a0000000000 ............ +5999 16.903169394 127.0.0.1:57415 127.0.0.1:57433 3331537465 12 6500000027bc0a0000000000 e...'....... +6001 16.903435946 127.0.0.1:57415 127.0.0.1:57433 3331537477 101 1e0000001c2118d0c46f33bb010003000000baff010000000000ec530ec39d01 .....!...o3................S......?.....3...|8.. +6003 16.903751612 127.0.0.1:57433 127.0.0.1:57415 375865612 12 ffffffff27bc0a0000000000 ....'....... +6005 16.904891968 127.0.0.1:57433 127.0.0.1:57415 375865624 12 340000001a9b0a0000000000 4........... +6007 16.905109882 127.0.0.1:57433 127.0.0.1:57415 375865636 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................AS +6009 16.905519009 127.0.0.1:57415 127.0.0.1:57433 3331537578 12 ffffffff1a9b0a0000000000 ............ +6011 16.906208515 127.0.0.1:57415 127.0.0.1:57433 3331537590 12 1e00000028bc0a0000000000 ....(....... +6013 16.906446218 127.0.0.1:57415 127.0.0.1:57433 3331537602 30 1a00000055ceff62b21b3a500100030000003f031f000000000000000000 ....U..b..:P......?........... +6015 16.906791210 127.0.0.1:57433 127.0.0.1:57415 375865688 12 ffffffff28bc0a0000000000 ....(....... +6017 16.907177687 127.0.0.1:57433 127.0.0.1:57415 375865700 12 1a0000001b9b0a0000000000 ............ +6019 16.907421112 127.0.0.1:57433 127.0.0.1:57415 375865712 26 160000003f031f00000000000100030000000000000000000000 ....?..................... +6021 16.907742500 127.0.0.1:57415 127.0.0.1:57433 3331537632 12 ffffffff1b9b0a0000000000 ............ +6025 16.991325617 127.0.0.1:57415 127.0.0.1:57433 3331537644 12 1a00000029bc0a0000000000 ....)....... +6027 16.991620064 127.0.0.1:57415 127.0.0.1:57433 3331537656 26 16000000548f6340e25e314001000300000041031f0000000000 ....T.c@.^1@......A....... +6029 16.992015362 127.0.0.1:57433 127.0.0.1:57415 375865738 12 ffffffff29bc0a0000000000 ....)....... +6031 16.992560148 127.0.0.1:57433 127.0.0.1:57415 375865750 12 160000001c9b0a0000000000 ............ +6033 16.992746830 127.0.0.1:57433 127.0.0.1:57415 375865762 22 1200000041031f000000000001000300000000000000 ....A................. +6035 16.993062973 127.0.0.1:57415 127.0.0.1:57433 3331537682 12 ffffffff1c9b0a0000000000 ............ +6043 17.034909725 127.0.0.1:57433 127.0.0.1:57415 375865784 12 feffffff1638010027380100 .....8..'8.. +6047 17.094559193 127.0.0.1:57415 127.0.0.1:57433 3331537694 12 1a0000002abc0a0000000000 ....*....... +6049 17.094735146 127.0.0.1:57415 127.0.0.1:57433 3331537706 26 16000000548f6340e25e314001000300000043031f0000000000 ....T.c@.^1@......C....... +6051 17.095092058 127.0.0.1:57433 127.0.0.1:57415 375865796 12 ffffffff2abc0a0000000000 ....*....... +6053 17.095652580 127.0.0.1:57433 127.0.0.1:57415 375865808 12 160000001d9b0a0000000000 ............ +6055 17.095839500 127.0.0.1:57433 127.0.0.1:57415 375865820 22 1200000043031f000000000001000300000000000000 ....C................. +6057 17.096114397 127.0.0.1:57415 127.0.0.1:57433 3331537732 12 feffffff2838010016380100 ....(8...8.. +6061 17.096433640 127.0.0.1:57415 127.0.0.1:57433 3331537744 12 ffffffff1d9b0a0000000000 ............ +6069 17.197929144 127.0.0.1:57415 127.0.0.1:57433 3331537756 12 1a0000002bbc0a0000000000 ....+....... +6071 17.198125124 127.0.0.1:57415 127.0.0.1:57433 3331537768 26 16000000548f6340e25e314001000300000045031f0000000000 ....T.c@.^1@......E....... +6073 17.198911428 127.0.0.1:57433 127.0.0.1:57415 375865842 12 ffffffff2bbc0a0000000000 ....+....... +6075 17.199542284 127.0.0.1:57433 127.0.0.1:57415 375865854 12 160000001e9b0a0000000000 ............ +6077 17.199719906 127.0.0.1:57433 127.0.0.1:57415 375865866 22 1200000045031f000000000001000300000000000000 ....E................. +6079 17.200060129 127.0.0.1:57415 127.0.0.1:57433 3331537794 12 ffffffff1e9b0a0000000000 ............ +6081 17.208628178 127.0.0.1:57415 127.0.0.1:57433 3331537806 12 220000002cbc0a0000000000 "...,....... +6083 17.208782196 127.0.0.1:57415 127.0.0.1:57433 3331537818 34 1e0000001c2118d0c46f33bb010003000000bbff0100000000001e550ec39d01 .....!...o3................U...... +6085 17.208912611 127.0.0.1:57415 127.0.0.1:57433 3331537852 12 430000002dbc0a0000000000 C...-....... +6087 17.208994150 127.0.0.1:57415 127.0.0.1:57433 3331537864 67 3f000000980433cb0cb47c380100030000000100000000bbff0100000000003d ?.....3...|8...................=B.....&......... +6089 17.209140062 127.0.0.1:57433 127.0.0.1:57415 375865888 12 ffffffff2cbc0a0000000000 ....,....... +6091 17.209403992 127.0.0.1:57433 127.0.0.1:57415 375865900 12 ffffffff2dbc0a0000000000 ....-....... +6093 17.210143328 127.0.0.1:57433 127.0.0.1:57415 375865912 12 340000001f9b0a0000000000 4........... +6095 17.210376263 127.0.0.1:57433 127.0.0.1:57415 375865924 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................mpS +6097 17.210628033 127.0.0.1:57415 127.0.0.1:57433 3331537931 12 ffffffff1f9b0a0000000000 ............ +6099 17.211375237 127.0.0.1:57415 127.0.0.1:57433 3331537943 12 1e0000002ebc0a0000000000 ............ +6101 17.211509228 127.0.0.1:57415 127.0.0.1:57433 3331537955 30 1a00000055ceff62b21b3a5001000300000047031f000000000000000000 ....U..b..:P......G........... +6103 17.211823463 127.0.0.1:57433 127.0.0.1:57415 375865976 12 ffffffff2ebc0a0000000000 ............ +6105 17.212412834 127.0.0.1:57433 127.0.0.1:57415 375865988 12 1a000000209b0a0000000000 .... ....... +6107 17.212597847 127.0.0.1:57433 127.0.0.1:57415 375866000 26 1600000047031f00000000000100030000000000000000000000 ....G..................... +6109 17.212887049 127.0.0.1:57415 127.0.0.1:57433 3331537985 12 ffffffff209b0a0000000000 .... ....... +6117 17.302699566 127.0.0.1:57415 127.0.0.1:57433 3331537997 12 1a0000002fbc0a0000000000 ..../....... +6119 17.302889824 127.0.0.1:57415 127.0.0.1:57433 3331538009 26 16000000548f6340e25e314001000300000049031f0000000000 ....T.c@.^1@......I....... +6121 17.303302765 127.0.0.1:57433 127.0.0.1:57415 375866026 12 ffffffff2fbc0a0000000000 ..../....... +6123 17.303848982 127.0.0.1:57433 127.0.0.1:57415 375866038 12 16000000219b0a0000000000 ....!....... +6125 17.304117680 127.0.0.1:57433 127.0.0.1:57415 375866050 22 1200000049031f000000000001000300000000000000 ....I................. +6127 17.304421186 127.0.0.1:57415 127.0.0.1:57433 3331538035 12 ffffffff219b0a0000000000 ....!....... +6145 17.405457258 127.0.0.1:57415 127.0.0.1:57433 3331538047 12 1a00000030bc0a0000000000 ....0....... +6147 17.405681372 127.0.0.1:57415 127.0.0.1:57433 3331538059 26 16000000548f6340e25e31400100030000004b031f0000000000 ....T.c@.^1@......K....... +6149 17.406441450 127.0.0.1:57433 127.0.0.1:57415 375866072 12 ffffffff30bc0a0000000000 ....0....... +6151 17.407142639 127.0.0.1:57433 127.0.0.1:57415 375866084 12 16000000229b0a0000000000 ...."....... +6153 17.407416344 127.0.0.1:57433 127.0.0.1:57415 375866096 22 120000004b031f000000000001000300000000000000 ....K................. +6155 17.407790661 127.0.0.1:57415 127.0.0.1:57433 3331538085 12 ffffffff229b0a0000000000 ...."....... +6161 17.509016514 127.0.0.1:57415 127.0.0.1:57433 3331538097 12 1a00000031bc0a0000000000 ....1....... +6163 17.509371281 127.0.0.1:57415 127.0.0.1:57433 3331538109 26 16000000548f6340e25e31400100030000004d031f0000000000 ....T.c@.^1@......M....... +6165 17.509908199 127.0.0.1:57433 127.0.0.1:57415 375866118 12 ffffffff31bc0a0000000000 ....1....... +6167 17.510432243 127.0.0.1:57433 127.0.0.1:57415 375866130 12 16000000239b0a0000000000 ....#....... +6169 17.510628462 127.0.0.1:57433 127.0.0.1:57415 375866142 22 120000004d031f000000000001000300000000000000 ....M................. +6171 17.510913372 127.0.0.1:57415 127.0.0.1:57433 3331538135 12 ffffffff239b0a0000000000 ....#....... +6173 17.512058020 127.0.0.1:57415 127.0.0.1:57433 3331538147 12 6500000032bc0a0000000000 e...2....... +6175 17.512207270 127.0.0.1:57415 127.0.0.1:57433 3331538159 101 1e0000001c2118d0c46f33bb010003000000bcff0100000000004d560ec39d01 .....!...o3...............MV......?.....3...|8.. +6177 17.512611151 127.0.0.1:57433 127.0.0.1:57415 375866164 12 ffffffff32bc0a0000000000 ....2....... +6179 17.513558865 127.0.0.1:57433 127.0.0.1:57415 375866176 12 34000000249b0a0000000000 4...$....... +6181 17.513699293 127.0.0.1:57433 127.0.0.1:57415 375866188 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............Z..S +6183 17.513892651 127.0.0.1:57415 127.0.0.1:57433 3331538260 12 ffffffff249b0a0000000000 ....$....... +6185 17.514640570 127.0.0.1:57415 127.0.0.1:57433 3331538272 12 1e00000033bc0a0000000000 ....3....... +6187 17.514783144 127.0.0.1:57415 127.0.0.1:57433 3331538284 30 1a00000055ceff62b21b3a500100030000004f031f000000000000000000 ....U..b..:P......O........... +6189 17.515080929 127.0.0.1:57433 127.0.0.1:57415 375866240 12 ffffffff33bc0a0000000000 ....3....... +6191 17.518331766 127.0.0.1:57433 127.0.0.1:57415 375866252 12 1a000000259b0a0000000000 ....%....... +6193 17.518513680 127.0.0.1:57433 127.0.0.1:57415 375866264 26 160000004f031f00000000000100030000000000000000000000 ....O..................... +6195 17.518799782 127.0.0.1:57415 127.0.0.1:57433 3331538314 12 ffffffff259b0a0000000000 ....%....... +6203 17.534919500 127.0.0.1:57433 127.0.0.1:57415 375866290 12 feffffff1738010028380100 .....8..(8.. +6217 17.597757578 127.0.0.1:57415 127.0.0.1:57433 3331538326 12 feffffff2938010017380100 ....)8...8.. +6224 17.612165213 127.0.0.1:57415 127.0.0.1:57433 3331538338 12 1a00000034bc0a0000000000 ....4....... +6226 17.612342596 127.0.0.1:57415 127.0.0.1:57433 3331538350 26 16000000548f6340e25e314001000300000051031f0000000000 ....T.c@.^1@......Q....... +6228 17.612629175 127.0.0.1:57433 127.0.0.1:57415 375866302 12 ffffffff34bc0a0000000000 ....4....... +6230 17.613361359 127.0.0.1:57433 127.0.0.1:57415 375866314 12 16000000269b0a0000000000 ....&....... +6232 17.613568783 127.0.0.1:57433 127.0.0.1:57415 375866326 22 1200000051031f000000000001000300000000000000 ....Q................. +6234 17.613911629 127.0.0.1:57415 127.0.0.1:57433 3331538376 12 ffffffff269b0a0000000000 ....&....... +6246 17.715864897 127.0.0.1:57415 127.0.0.1:57433 3331538388 12 1a00000035bc0a0000000000 ....5....... +6248 17.716152668 127.0.0.1:57415 127.0.0.1:57433 3331538400 26 16000000548f6340e25e314001000300000053031f0000000000 ....T.c@.^1@......S....... +6250 17.716529846 127.0.0.1:57433 127.0.0.1:57415 375866348 12 ffffffff35bc0a0000000000 ....5....... +6252 17.717114210 127.0.0.1:57433 127.0.0.1:57415 375866360 12 16000000279b0a0000000000 ....'....... +6254 17.717293978 127.0.0.1:57433 127.0.0.1:57415 375866372 22 1200000053031f000000000001000300000000000000 ....S................. +6256 17.717594385 127.0.0.1:57415 127.0.0.1:57433 3331538426 12 ffffffff279b0a0000000000 ....'....... +6262 17.816318274 127.0.0.1:57415 127.0.0.1:57433 3331538438 12 6500000036bc0a0000000000 e...6....... +6264 17.816580057 127.0.0.1:57415 127.0.0.1:57433 3331538450 101 1e0000001c2118d0c46f33bb010003000000bdff0100000000007d570ec39d01 .....!...o3...............}W......?.....3...|8.. +6266 17.817082882 127.0.0.1:57433 127.0.0.1:57415 375866394 12 ffffffff36bc0a0000000000 ....6....... +6268 17.817882538 127.0.0.1:57433 127.0.0.1:57415 375866406 12 34000000289b0a0000000000 4...(....... +6270 17.818106890 127.0.0.1:57433 127.0.0.1:57415 375866418 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............").S +6272 17.818353891 127.0.0.1:57415 127.0.0.1:57433 3331538551 12 ffffffff289b0a0000000000 ....(....... +6274 17.818587065 127.0.0.1:57415 127.0.0.1:57433 3331538563 12 1a00000037bc0a0000000000 ....7....... +6276 17.818777323 127.0.0.1:57415 127.0.0.1:57433 3331538575 26 16000000548f6340e25e314001000300000055031f0000000000 ....T.c@.^1@......U....... +6278 17.819241047 127.0.0.1:57433 127.0.0.1:57415 375866470 12 ffffffff37bc0a0000000000 ....7....... +6280 17.819470644 127.0.0.1:57433 127.0.0.1:57415 375866482 12 16000000299b0a0000000000 ....)....... +6281 17.819565773 127.0.0.1:57415 127.0.0.1:57433 3331538601 42 1e00000038bc0a00000000001a00000055ceff62b21b3a500100030000005703 ....8...........U..b..:P......W........... +6283 17.819740057 127.0.0.1:57433 127.0.0.1:57415 375866494 22 1200000055031f000000000001000300000000000000 ....U................. +6285 17.820000172 127.0.0.1:57433 127.0.0.1:57415 375866516 12 ffffffff38bc0a0000000000 ....8....... +6286 17.820072412 127.0.0.1:57415 127.0.0.1:57433 3331538643 12 ffffffff299b0a0000000000 ....)....... +6288 17.820255995 127.0.0.1:57433 127.0.0.1:57415 375866528 12 1a0000002a9b0a0000000000 ....*....... +6290 17.820395231 127.0.0.1:57433 127.0.0.1:57415 375866540 26 1600000057031f00000000000100030000000000000000000000 ....W..................... +6292 17.820631504 127.0.0.1:57415 127.0.0.1:57433 3331538655 12 ffffffff2a9b0a0000000000 ....*....... +6294 17.922677994 127.0.0.1:57415 127.0.0.1:57433 3331538667 12 1a00000039bc0a0000000000 ....9....... +6296 17.922915936 127.0.0.1:57415 127.0.0.1:57433 3331538679 26 16000000548f6340e25e314001000300000059031f0000000000 ....T.c@.^1@......Y....... +6300 17.923513889 127.0.0.1:57433 127.0.0.1:57415 375866566 12 ffffffff39bc0a0000000000 ....9....... +6302 17.924323082 127.0.0.1:57433 127.0.0.1:57415 375866578 12 160000002b9b0a0000000000 ....+....... +6304 17.924535751 127.0.0.1:57433 127.0.0.1:57415 375866590 22 1200000059031f000000000001000300000000000000 ....Y................. +6306 17.924877644 127.0.0.1:57415 127.0.0.1:57433 3331538705 12 ffffffff2b9b0a0000000000 ....+....... +6310 18.027500629 127.0.0.1:57415 127.0.0.1:57433 3331538717 12 1a0000003abc0a0000000000 ....:....... +6312 18.027696848 127.0.0.1:57415 127.0.0.1:57433 3331538729 26 16000000548f6340e25e31400100030000005b031f0000000000 ....T.c@.^1@......[....... +6314 18.028146029 127.0.0.1:57433 127.0.0.1:57415 375866612 12 ffffffff3abc0a0000000000 ....:....... +6316 18.028680086 127.0.0.1:57433 127.0.0.1:57415 375866624 12 160000002c9b0a0000000000 ....,....... +6318 18.028947115 127.0.0.1:57433 127.0.0.1:57415 375866636 22 120000005b031f000000000001000300000000000000 ....[................. +6320 18.029322863 127.0.0.1:57415 127.0.0.1:57433 3331538755 12 ffffffff2c9b0a0000000000 ....,....... +6328 18.034451962 127.0.0.1:57433 127.0.0.1:57415 375866658 12 feffffff1838010029380100 .....8..)8.. +6331 18.099485159 127.0.0.1:57415 127.0.0.1:57433 3331538767 12 feffffff2a38010018380100 ....*8...8.. +6338 18.121923923 127.0.0.1:57415 127.0.0.1:57433 3331538779 12 650000003bbc0a0000000000 e...;....... +6340 18.122073412 127.0.0.1:57415 127.0.0.1:57433 3331538791 101 1e0000001c2118d0c46f33bb010003000000beff010000000000af580ec39d01 .....!...o3................X......?.....3...|8.. +6342 18.122414112 127.0.0.1:57433 127.0.0.1:57415 375866670 12 ffffffff3bbc0a0000000000 ....;....... +6344 18.123654604 127.0.0.1:57433 127.0.0.1:57415 375866682 12 340000002d9b0a0000000000 4...-....... +6346 18.123821259 127.0.0.1:57433 127.0.0.1:57415 375866694 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................S +6348 18.124183178 127.0.0.1:57415 127.0.0.1:57433 3331538892 12 ffffffff2d9b0a0000000000 ....-....... +6350 18.124858856 127.0.0.1:57415 127.0.0.1:57433 3331538904 12 1e0000003cbc0a0000000000 ....<....... +6352 18.125009775 127.0.0.1:57415 127.0.0.1:57433 3331538916 30 1a00000055ceff62b21b3a500100030000005d031f000000000000000000 ....U..b..:P......]........... +6354 18.125498295 127.0.0.1:57433 127.0.0.1:57415 375866746 12 ffffffff3cbc0a0000000000 ....<....... +6356 18.125987768 127.0.0.1:57433 127.0.0.1:57415 375866758 12 1a0000002e9b0a0000000000 ............ +6358 18.126173735 127.0.0.1:57433 127.0.0.1:57415 375866770 26 160000005d031f00000000000100030000000000000000000000 ....]..................... +6360 18.126529217 127.0.0.1:57415 127.0.0.1:57433 3331538946 12 ffffffff2e9b0a0000000000 ............ +6364 18.131386757 127.0.0.1:57415 127.0.0.1:57433 3331538958 12 1a0000003dbc0a0000000000 ....=....... +6366 18.131531000 127.0.0.1:57415 127.0.0.1:57433 3331538970 26 16000000548f6340e25e31400100030000005f031f0000000000 ....T.c@.^1@......_....... +6368 18.131864548 127.0.0.1:57433 127.0.0.1:57415 375866796 12 ffffffff3dbc0a0000000000 ....=....... +6370 18.132372141 127.0.0.1:57433 127.0.0.1:57415 375866808 12 160000002f9b0a0000000000 ..../....... +6372 18.132516623 127.0.0.1:57433 127.0.0.1:57415 375866820 22 120000005f031f000000000001000300000000000000 ...._................. +6374 18.132696867 127.0.0.1:57415 127.0.0.1:57433 3331538996 12 ffffffff2f9b0a0000000000 ..../....... +6382 18.234872580 127.0.0.1:57415 127.0.0.1:57433 3331539008 12 1a0000003ebc0a0000000000 ....>....... +6383 18.234889984 127.0.0.1:57415 127.0.0.1:57433 3331539020 26 16000000548f6340e25e314001000300000061031f0000000000 ....T.c@.^1@......a....... +6385 18.235572577 127.0.0.1:57433 127.0.0.1:57415 375866842 12 ffffffff3ebc0a0000000000 ....>....... +6387 18.236781836 127.0.0.1:57433 127.0.0.1:57415 375866854 12 16000000309b0a0000000000 ....0....... +6389 18.237030983 127.0.0.1:57433 127.0.0.1:57415 375866866 22 1200000061031f000000000001000300000000000000 ....a................. +6391 18.237391472 127.0.0.1:57415 127.0.0.1:57433 3331539046 12 ffffffff309b0a0000000000 ....0....... +6393 18.338692427 127.0.0.1:57415 127.0.0.1:57433 3331539058 12 1a0000003fbc0a0000000000 ....?....... +6395 18.338878632 127.0.0.1:57415 127.0.0.1:57433 3331539070 26 16000000548f6340e25e314001000300000063031f0000000000 ....T.c@.^1@......c....... +6397 18.339251041 127.0.0.1:57433 127.0.0.1:57415 375866888 12 ffffffff3fbc0a0000000000 ....?....... +6399 18.339941978 127.0.0.1:57433 127.0.0.1:57415 375866900 12 16000000319b0a0000000000 ....1....... +6401 18.340189219 127.0.0.1:57433 127.0.0.1:57415 375866912 22 1200000063031f000000000001000300000000000000 ....c................. +6403 18.340461731 127.0.0.1:57415 127.0.0.1:57433 3331539096 12 ffffffff319b0a0000000000 ....1....... +6407 18.426735640 127.0.0.1:57415 127.0.0.1:57433 3331539108 12 2200000040bc0a0000000000 "...@....... +6409 18.426883936 127.0.0.1:57415 127.0.0.1:57433 3331539120 34 1e0000001c2118d0c46f33bb010003000000bfff010000000000e0590ec39d01 .....!...o3................Y...... +6411 18.427003860 127.0.0.1:57415 127.0.0.1:57433 3331539154 12 4300000041bc0a0000000000 C...A....... +6413 18.427085400 127.0.0.1:57415 127.0.0.1:57433 3331539166 67 3f000000980433cb0cb47c380100030000000100000000bfff0100000000003d ?.....3...|8...................=B.....&......... +6415 18.427403927 127.0.0.1:57433 127.0.0.1:57415 375866934 12 ffffffff40bc0a0000000000 ....@....... +6417 18.427680969 127.0.0.1:57433 127.0.0.1:57415 375866946 12 ffffffff41bc0a0000000000 ....A....... +6419 18.429058075 127.0.0.1:57433 127.0.0.1:57415 375866958 12 34000000329b0a0000000000 4...2....... +6421 18.429290771 127.0.0.1:57433 127.0.0.1:57415 375866970 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............Jl*T +6423 18.429569721 127.0.0.1:57415 127.0.0.1:57433 3331539233 12 ffffffff329b0a0000000000 ....2....... +6425 18.430490971 127.0.0.1:57415 127.0.0.1:57433 3331539245 12 1e00000042bc0a0000000000 ....B....... +6427 18.430607080 127.0.0.1:57415 127.0.0.1:57433 3331539257 30 1a00000055ceff62b21b3a5001000300000065031f000000000000000000 ....U..b..:P......e........... +6429 18.430912495 127.0.0.1:57433 127.0.0.1:57415 375867022 12 ffffffff42bc0a0000000000 ....B....... +6431 18.433104277 127.0.0.1:57433 127.0.0.1:57415 375867034 12 1a000000339b0a0000000000 ....3....... +6433 18.433361053 127.0.0.1:57433 127.0.0.1:57415 375867046 26 1600000065031f00000000000100030000000000000000000000 ....e..................... +6435 18.433648586 127.0.0.1:57415 127.0.0.1:57433 3331539287 12 ffffffff339b0a0000000000 ....3....... +6437 18.441257238 127.0.0.1:57415 127.0.0.1:57433 3331539299 12 1a00000043bc0a0000000000 ....C....... +6439 18.441417456 127.0.0.1:57415 127.0.0.1:57433 3331539311 26 16000000548f6340e25e314001000300000067031f0000000000 ....T.c@.^1@......g....... +6441 18.441879988 127.0.0.1:57433 127.0.0.1:57415 375867072 12 ffffffff43bc0a0000000000 ....C....... +6443 18.442387581 127.0.0.1:57433 127.0.0.1:57415 375867084 12 16000000349b0a0000000000 ....4....... +6445 18.442624331 127.0.0.1:57433 127.0.0.1:57415 375867096 22 1200000067031f000000000001000300000000000000 ....g................. +6447 18.442884922 127.0.0.1:57415 127.0.0.1:57433 3331539337 12 ffffffff349b0a0000000000 ....4....... +6455 18.537337542 127.0.0.1:57433 127.0.0.1:57415 375867118 12 feffffff193801002a380100 .....8..*8.. +6457 18.545317411 127.0.0.1:57415 127.0.0.1:57433 3331539349 12 1a00000044bc0a0000000000 ....D....... +6459 18.545608997 127.0.0.1:57415 127.0.0.1:57433 3331539361 26 16000000548f6340e25e314001000300000069031f0000000000 ....T.c@.^1@......i....... +6461 18.546003580 127.0.0.1:57433 127.0.0.1:57415 375867130 12 ffffffff44bc0a0000000000 ....D....... +6463 18.546722889 127.0.0.1:57433 127.0.0.1:57415 375867142 12 16000000359b0a0000000000 ....5....... +6465 18.546868563 127.0.0.1:57433 127.0.0.1:57415 375867154 22 1200000069031f000000000001000300000000000000 ....i................. +6467 18.547132492 127.0.0.1:57415 127.0.0.1:57433 3331539387 12 ffffffff359b0a0000000000 ....5....... +6470 18.600085020 127.0.0.1:57415 127.0.0.1:57433 3331539399 12 feffffff2b38010019380100 ....+8...8.. +6479 18.650296450 127.0.0.1:57415 127.0.0.1:57433 3331539411 12 1a00000045bc0a0000000000 ....E....... +6481 18.650470018 127.0.0.1:57415 127.0.0.1:57433 3331539423 26 16000000548f6340e25e31400100030000006b031f0000000000 ....T.c@.^1@......k....... +6483 18.650809765 127.0.0.1:57433 127.0.0.1:57415 375867176 12 ffffffff45bc0a0000000000 ....E....... +6485 18.651636600 127.0.0.1:57433 127.0.0.1:57415 375867188 12 16000000369b0a0000000000 ....6....... +6487 18.651809454 127.0.0.1:57433 127.0.0.1:57415 375867200 22 120000006b031f000000000001000300000000000000 ....k................. +6489 18.652080297 127.0.0.1:57415 127.0.0.1:57433 3331539449 12 ffffffff369b0a0000000000 ....6....... +6493 18.732556581 127.0.0.1:57415 127.0.0.1:57433 3331539461 12 2200000046bc0a0000000000 "...F....... +6495 18.732739449 127.0.0.1:57415 127.0.0.1:57433 3331539473 34 1e0000001c2118d0c46f33bb010003000000c0ff010000000000115b0ec39d01 .....!...o3................[...... +6497 18.732830763 127.0.0.1:57415 127.0.0.1:57433 3331539507 12 4300000047bc0a0000000000 C...G....... +6499 18.732914686 127.0.0.1:57415 127.0.0.1:57433 3331539519 67 3f000000980433cb0cb47c380100030000000100000000c0ff0100000000003d ?.....3...|8...................=B.....&......... +6501 18.733185530 127.0.0.1:57433 127.0.0.1:57415 375867222 12 ffffffff46bc0a0000000000 ....F....... +6503 18.733427763 127.0.0.1:57433 127.0.0.1:57415 375867234 12 ffffffff47bc0a0000000000 ....G....... +6505 18.734479904 127.0.0.1:57433 127.0.0.1:57415 375867246 12 34000000379b0a0000000000 4...7....... +6507 18.734702587 127.0.0.1:57433 127.0.0.1:57415 375867258 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............q.YT +6509 18.734969854 127.0.0.1:57415 127.0.0.1:57433 3331539586 12 ffffffff379b0a0000000000 ....7....... +6511 18.735710382 127.0.0.1:57415 127.0.0.1:57433 3331539598 12 1e00000048bc0a0000000000 ....H....... +6513 18.735851049 127.0.0.1:57415 127.0.0.1:57433 3331539610 30 1a00000055ceff62b21b3a500100030000006d031f000000000000000000 ....U..b..:P......m........... +6517 18.736933947 127.0.0.1:57433 127.0.0.1:57415 375867310 12 ffffffff48bc0a0000000000 ....H....... +6519 18.737164021 127.0.0.1:57433 127.0.0.1:57415 375867322 12 1a000000389b0a0000000000 ....8....... +6521 18.737316132 127.0.0.1:57433 127.0.0.1:57415 375867334 26 160000006d031f00000000000100030000000000000000000000 ....m..................... +6523 18.737656116 127.0.0.1:57415 127.0.0.1:57433 3331539640 12 ffffffff389b0a0000000000 ....8....... +6525 18.753954411 127.0.0.1:57415 127.0.0.1:57433 3331539652 12 1a00000049bc0a0000000000 ....I....... +6527 18.754117012 127.0.0.1:57415 127.0.0.1:57433 3331539664 26 16000000548f6340e25e31400100030000006f031f0000000000 ....T.c@.^1@......o....... +6529 18.754439592 127.0.0.1:57433 127.0.0.1:57415 375867360 12 ffffffff49bc0a0000000000 ....I....... +6531 18.755028248 127.0.0.1:57433 127.0.0.1:57415 375867372 12 16000000399b0a0000000000 ....9....... +6533 18.755246878 127.0.0.1:57433 127.0.0.1:57415 375867384 22 120000006f031f000000000001000300000000000000 ....o................. +6535 18.755534649 127.0.0.1:57415 127.0.0.1:57433 3331539690 12 ffffffff399b0a0000000000 ....9....... +6554 18.856640100 127.0.0.1:57415 127.0.0.1:57433 3331539702 12 1a0000004abc0a0000000000 ....J....... +6556 18.856929064 127.0.0.1:57415 127.0.0.1:57433 3331539714 26 16000000548f6340e25e314001000300000071031f0000000000 ....T.c@.^1@......q....... +6560 18.857330084 127.0.0.1:57433 127.0.0.1:57415 375867406 12 ffffffff4abc0a0000000000 ....J....... +6564 18.857917547 127.0.0.1:57433 127.0.0.1:57415 375867418 12 160000003a9b0a0000000000 ....:....... +6566 18.858071566 127.0.0.1:57433 127.0.0.1:57415 375867430 22 1200000071031f000000000001000300000000000000 ....q................. +6568 18.858337164 127.0.0.1:57415 127.0.0.1:57433 3331539740 12 ffffffff3a9b0a0000000000 ....:....... +6603 18.960143566 127.0.0.1:57415 127.0.0.1:57433 3331539752 12 1a0000004bbc0a0000000000 ....K....... +6605 18.960429192 127.0.0.1:57415 127.0.0.1:57433 3331539764 26 16000000548f6340e25e314001000300000073031f0000000000 ....T.c@.^1@......s....... +6607 18.960902452 127.0.0.1:57433 127.0.0.1:57415 375867452 12 ffffffff4bbc0a0000000000 ....K....... +6609 18.961647749 127.0.0.1:57433 127.0.0.1:57415 375867464 12 160000003b9b0a0000000000 ....;....... +6611 18.961927176 127.0.0.1:57433 127.0.0.1:57415 375867476 22 1200000073031f000000000001000300000000000000 ....s................. +6613 18.962251663 127.0.0.1:57415 127.0.0.1:57433 3331539790 12 ffffffff3b9b0a0000000000 ....;....... +6690 19.037579775 127.0.0.1:57415 127.0.0.1:57433 3331539802 12 220000004cbc0a0000000000 "...L....... +6692 19.037744522 127.0.0.1:57415 127.0.0.1:57433 3331539814 34 1e0000001c2118d0c46f33bb010003000000c1ff010000000000425c0ec39d01 .....!...o3...............B\...... +6694 19.037924051 127.0.0.1:57433 127.0.0.1:57415 375867498 12 feffffff1a3801002b380100 .....8..+8.. +6695 19.037924528 127.0.0.1:57415 127.0.0.1:57433 3331539848 12 430000004dbc0a0000000000 C...M....... +6696 19.038055897 127.0.0.1:57415 127.0.0.1:57433 3331539860 67 3f000000980433cb0cb47c380100030000000100000000c1ff0100000000003d ?.....3...|8...................=B.....&......... +6698 19.038427353 127.0.0.1:57433 127.0.0.1:57415 375867510 12 ffffffff4cbc0a0000000000 ....L....... +6700 19.038674116 127.0.0.1:57433 127.0.0.1:57415 375867522 12 ffffffff4dbc0a0000000000 ....M....... +6702 19.040140629 127.0.0.1:57433 127.0.0.1:57415 375867534 12 340000003c9b0a0000000000 4...<....... +6704 19.040316343 127.0.0.1:57433 127.0.0.1:57415 375867546 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................T +6706 19.040638924 127.0.0.1:57415 127.0.0.1:57433 3331539927 12 ffffffff3c9b0a0000000000 ....<....... +6707 19.041694880 127.0.0.1:57415 127.0.0.1:57433 3331539939 12 1e0000004ebc0a0000000000 ....N....... +6709 19.041885614 127.0.0.1:57415 127.0.0.1:57433 3331539951 30 1a00000055ceff62b21b3a5001000300000075031f000000000000000000 ....U..b..:P......u........... +6711 19.042217493 127.0.0.1:57433 127.0.0.1:57415 375867598 12 ffffffff4ebc0a0000000000 ....N....... +6713 19.042654276 127.0.0.1:57433 127.0.0.1:57415 375867610 12 1a0000003d9b0a0000000000 ....=....... +6715 19.042879343 127.0.0.1:57433 127.0.0.1:57415 375867622 26 1600000075031f00000000000100030000000000000000000000 ....u..................... +6717 19.043179989 127.0.0.1:57415 127.0.0.1:57433 3331539981 12 ffffffff3d9b0a0000000000 ....=....... +6719 19.063895941 127.0.0.1:57415 127.0.0.1:57433 3331539993 12 1a0000004fbc0a0000000000 ....O....... +6721 19.064060450 127.0.0.1:57415 127.0.0.1:57433 3331540005 26 16000000548f6340e25e314001000300000077031f0000000000 ....T.c@.^1@......w....... +6723 19.064413071 127.0.0.1:57433 127.0.0.1:57415 375867648 12 ffffffff4fbc0a0000000000 ....O....... +6725 19.064853668 127.0.0.1:57433 127.0.0.1:57415 375867660 12 160000003e9b0a0000000000 ....>....... +6727 19.065013170 127.0.0.1:57433 127.0.0.1:57415 375867672 22 1200000077031f000000000001000300000000000000 ....w................. +6729 19.065326214 127.0.0.1:57415 127.0.0.1:57433 3331540031 12 ffffffff3e9b0a0000000000 ....>....... +6731 19.101757050 127.0.0.1:57415 127.0.0.1:57433 3331540043 12 feffffff2c3801001a380100 ....,8...8.. +6741 19.167006731 127.0.0.1:57415 127.0.0.1:57433 3331540055 12 1a00000050bc0a0000000000 ....P....... +6743 19.167172432 127.0.0.1:57415 127.0.0.1:57433 3331540067 26 16000000548f6340e25e314001000300000079031f0000000000 ....T.c@.^1@......y....... +6745 19.167623281 127.0.0.1:57433 127.0.0.1:57415 375867694 12 ffffffff50bc0a0000000000 ....P....... +6747 19.168127537 127.0.0.1:57433 127.0.0.1:57415 375867706 12 160000003f9b0a0000000000 ....?....... +6749 19.168304443 127.0.0.1:57433 127.0.0.1:57415 375867718 22 1200000079031f000000000001000300000000000000 ....y................. +6751 19.168627977 127.0.0.1:57415 127.0.0.1:57433 3331540093 12 ffffffff3f9b0a0000000000 ....?....... +6796 19.271238089 127.0.0.1:57415 127.0.0.1:57433 3331540105 12 1a00000051bc0a0000000000 ....Q....... +6798 19.271441221 127.0.0.1:57415 127.0.0.1:57433 3331540117 26 16000000548f6340e25e31400100030000007b031f0000000000 ....T.c@.^1@......{....... +6800 19.271754980 127.0.0.1:57433 127.0.0.1:57415 375867740 12 ffffffff51bc0a0000000000 ....Q....... +6802 19.272322178 127.0.0.1:57433 127.0.0.1:57415 375867752 12 16000000409b0a0000000000 ....@....... +6804 19.272538900 127.0.0.1:57433 127.0.0.1:57415 375867764 22 120000007b031f000000000001000300000000000000 ....{................. +6806 19.272812605 127.0.0.1:57415 127.0.0.1:57433 3331540143 12 ffffffff409b0a0000000000 ....@....... +6808 19.343440056 127.0.0.1:57415 127.0.0.1:57433 3331540155 12 2200000052bc0a0000000000 "...R....... +6810 19.343628168 127.0.0.1:57415 127.0.0.1:57433 3331540167 34 1e0000001c2118d0c46f33bb010003000000c2ff010000000000745d0ec39d01 .....!...o3...............t]...... +6812 19.343764067 127.0.0.1:57415 127.0.0.1:57433 3331540201 12 4300000053bc0a0000000000 C...S....... +6814 19.343847036 127.0.0.1:57415 127.0.0.1:57433 3331540213 67 3f000000980433cb0cb47c380100030000000100000000c2ff0100000000003d ?.....3...|8...................=B.....&......... +6816 19.344136238 127.0.0.1:57433 127.0.0.1:57415 375867786 12 ffffffff52bc0a0000000000 ....R....... +6818 19.344553947 127.0.0.1:57433 127.0.0.1:57415 375867798 12 ffffffff53bc0a0000000000 ....S....... +6820 19.345108747 127.0.0.1:57433 127.0.0.1:57415 375867810 12 34000000419b0a0000000000 4...A....... +6822 19.345409870 127.0.0.1:57433 127.0.0.1:57415 375867822 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................3.T +6824 19.345736027 127.0.0.1:57415 127.0.0.1:57433 3331540280 12 ffffffff419b0a0000000000 ....A....... +6826 19.346751213 127.0.0.1:57415 127.0.0.1:57433 3331540292 12 1e00000054bc0a0000000000 ....T....... +6828 19.346890211 127.0.0.1:57415 127.0.0.1:57433 3331540304 30 1a00000055ceff62b21b3a500100030000007d031f000000000000000000 ....U..b..:P......}........... +6830 19.347306013 127.0.0.1:57433 127.0.0.1:57415 375867874 12 ffffffff54bc0a0000000000 ....T....... +6832 19.347845078 127.0.0.1:57433 127.0.0.1:57415 375867886 12 1a000000429b0a0000000000 ....B....... +6834 19.348042250 127.0.0.1:57433 127.0.0.1:57415 375867898 26 160000007d031f00000000000100030000000000000000000000 ....}..................... +6836 19.348448515 127.0.0.1:57415 127.0.0.1:57433 3331540334 12 ffffffff429b0a0000000000 ....B....... +6877 19.375059843 127.0.0.1:57415 127.0.0.1:57433 3331540346 12 1a00000055bc0a0000000000 ....U....... +6879 19.375259638 127.0.0.1:57415 127.0.0.1:57433 3331540358 26 16000000548f6340e25e31400100030000007f031f0000000000 ....T.c@.^1@.............. +6881 19.375659466 127.0.0.1:57433 127.0.0.1:57415 375867924 12 ffffffff55bc0a0000000000 ....U....... +6883 19.376288176 127.0.0.1:57433 127.0.0.1:57415 375867936 12 16000000439b0a0000000000 ....C....... +6885 19.376531839 127.0.0.1:57433 127.0.0.1:57415 375867948 22 120000007f031f000000000001000300000000000000 ...................... +6887 19.376777887 127.0.0.1:57415 127.0.0.1:57433 3331540384 12 ffffffff439b0a0000000000 ....C....... +6891 19.479530334 127.0.0.1:57415 127.0.0.1:57433 3331540396 12 1a00000056bc0a0000000000 ....V....... +6893 19.479796171 127.0.0.1:57415 127.0.0.1:57433 3331540408 26 16000000548f6340e25e314001000300000081031f0000000000 ....T.c@.^1@.............. +6895 19.480272532 127.0.0.1:57433 127.0.0.1:57415 375867970 12 ffffffff56bc0a0000000000 ....V....... +6897 19.480651855 127.0.0.1:57433 127.0.0.1:57415 375867982 12 16000000449b0a0000000000 ....D....... +6899 19.480819464 127.0.0.1:57433 127.0.0.1:57415 375867994 22 1200000081031f000000000001000300000000000000 ...................... +6901 19.481161833 127.0.0.1:57415 127.0.0.1:57433 3331540434 12 ffffffff449b0a0000000000 ....D....... +6948 19.538774967 127.0.0.1:57433 127.0.0.1:57415 375868016 12 feffffff1b3801002c380100 .....8..,8.. +6950 19.583032370 127.0.0.1:57415 127.0.0.1:57433 3331540446 12 1a00000057bc0a0000000000 ....W....... +6952 19.583207846 127.0.0.1:57415 127.0.0.1:57433 3331540458 26 16000000548f6340e25e314001000300000083031f0000000000 ....T.c@.^1@.............. +6954 19.583692074 127.0.0.1:57433 127.0.0.1:57415 375868028 12 ffffffff57bc0a0000000000 ....W....... +6956 19.584044933 127.0.0.1:57433 127.0.0.1:57415 375868040 12 16000000459b0a0000000000 ....E....... +6958 19.584227562 127.0.0.1:57433 127.0.0.1:57415 375868052 22 1200000083031f000000000001000300000000000000 ...................... +6960 19.584584951 127.0.0.1:57415 127.0.0.1:57433 3331540484 12 ffffffff459b0a0000000000 ....E....... +6962 19.603674173 127.0.0.1:57415 127.0.0.1:57433 3331540496 12 feffffff2d3801001b380100 ....-8...8.. +7007 19.648543835 127.0.0.1:57415 127.0.0.1:57433 3331540508 12 6500000058bc0a0000000000 e...X....... +7009 19.648708105 127.0.0.1:57415 127.0.0.1:57433 3331540520 101 1e0000001c2118d0c46f33bb010003000000c3ff010000000000a55e0ec39d01 .....!...o3................^......?.....3...|8.. +7012 19.649187803 127.0.0.1:57433 127.0.0.1:57415 375868074 12 ffffffff58bc0a0000000000 ....X....... +7014 19.650188684 127.0.0.1:57433 127.0.0.1:57415 375868086 12 34000000469b0a0000000000 4...F....... +7016 19.650385380 127.0.0.1:57433 127.0.0.1:57415 375868098 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................T +7018 19.650730371 127.0.0.1:57415 127.0.0.1:57433 3331540621 12 ffffffff469b0a0000000000 ....F....... +7020 19.651569366 127.0.0.1:57415 127.0.0.1:57433 3331540633 12 1e00000059bc0a0000000000 ....Y....... +7022 19.651716232 127.0.0.1:57415 127.0.0.1:57433 3331540645 30 1a00000055ceff62b21b3a5001000300000085031f000000000000000000 ....U..b..:P.................. +7024 19.652098179 127.0.0.1:57433 127.0.0.1:57415 375868150 12 ffffffff59bc0a0000000000 ....Y....... +7026 19.652517319 127.0.0.1:57433 127.0.0.1:57415 375868162 12 1a000000479b0a0000000000 ....G....... +7028 19.652662992 127.0.0.1:57433 127.0.0.1:57415 375868174 26 1600000085031f00000000000100030000000000000000000000 .......................... +7030 19.652899027 127.0.0.1:57415 127.0.0.1:57433 3331540675 12 ffffffff479b0a0000000000 ....G....... +7032 19.685871601 127.0.0.1:57415 127.0.0.1:57433 3331540687 12 1a0000005abc0a0000000000 ....Z....... +7034 19.686068058 127.0.0.1:57415 127.0.0.1:57433 3331540699 26 16000000548f6340e25e314001000300000087031f0000000000 ....T.c@.^1@.............. +7036 19.686430216 127.0.0.1:57433 127.0.0.1:57415 375868200 12 ffffffff5abc0a0000000000 ....Z....... +7038 19.686837196 127.0.0.1:57433 127.0.0.1:57415 375868212 12 16000000489b0a0000000000 ....H....... +7040 19.687036991 127.0.0.1:57433 127.0.0.1:57415 375868224 22 1200000087031f000000000001000300000000000000 ...................... +7042 19.687318087 127.0.0.1:57415 127.0.0.1:57433 3331540725 12 ffffffff489b0a0000000000 ....H....... +7048 19.789095163 127.0.0.1:57415 127.0.0.1:57433 3331540737 12 1a0000005bbc0a0000000000 ....[....... +7050 19.789287567 127.0.0.1:57415 127.0.0.1:57433 3331540749 26 16000000548f6340e25e314001000300000089031f0000000000 ....T.c@.^1@.............. +7052 19.789690495 127.0.0.1:57433 127.0.0.1:57415 375868246 12 ffffffff5bbc0a0000000000 ....[....... +7054 19.790079594 127.0.0.1:57433 127.0.0.1:57415 375868258 12 16000000499b0a0000000000 ....I....... +7056 19.790244341 127.0.0.1:57433 127.0.0.1:57415 375868270 22 1200000089031f000000000001000300000000000000 ...................... +7058 19.790493250 127.0.0.1:57415 127.0.0.1:57433 3331540775 12 ffffffff499b0a0000000000 ....I....... +7060 19.892200232 127.0.0.1:57415 127.0.0.1:57433 3331540787 12 1a0000005cbc0a0000000000 ....\....... +7062 19.892415524 127.0.0.1:57415 127.0.0.1:57433 3331540799 26 16000000548f6340e25e31400100030000008b031f0000000000 ....T.c@.^1@.............. +7064 19.892805576 127.0.0.1:57433 127.0.0.1:57415 375868292 12 ffffffff5cbc0a0000000000 ....\....... +7066 19.893250942 127.0.0.1:57433 127.0.0.1:57415 375868304 12 160000004a9b0a0000000000 ....J....... +7068 19.893509865 127.0.0.1:57433 127.0.0.1:57415 375868316 22 120000008b031f000000000001000300000000000000 ...................... +7070 19.893787384 127.0.0.1:57415 127.0.0.1:57433 3331540825 12 ffffffff4a9b0a0000000000 ....J....... +7074 19.954024076 127.0.0.1:57415 127.0.0.1:57433 3331540837 12 220000005dbc0a0000000000 "...]....... +7076 19.954329967 127.0.0.1:57415 127.0.0.1:57433 3331540849 34 1e0000001c2118d0c46f33bb010003000000c4ff010000000000d75f0ec39d01 .....!...o3................_...... +7078 19.954530716 127.0.0.1:57415 127.0.0.1:57433 3331540883 12 430000005ebc0a0000000000 C...^....... +7080 19.954646587 127.0.0.1:57415 127.0.0.1:57433 3331540895 67 3f000000980433cb0cb47c380100030000000100000000c4ff0100000000003d ?.....3...|8...................=B.....&......... +7081 19.954764366 127.0.0.1:57433 127.0.0.1:57415 375868338 12 ffffffff5dbc0a0000000000 ....]....... +7082 19.954887629 127.0.0.1:57433 127.0.0.1:57415 375868350 12 ffffffff5ebc0a0000000000 ....^....... +7085 19.956367970 127.0.0.1:57433 127.0.0.1:57415 375868362 12 340000004b9b0a0000000000 4...K....... +7087 19.956619978 127.0.0.1:57433 127.0.0.1:57415 375868374 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................u.U +7089 19.956966877 127.0.0.1:57415 127.0.0.1:57433 3331540962 12 ffffffff4b9b0a0000000000 ....K....... +7091 19.957783937 127.0.0.1:57415 127.0.0.1:57433 3331540974 12 1e0000005fbc0a0000000000 ...._....... +7093 19.958010674 127.0.0.1:57415 127.0.0.1:57433 3331540986 30 1a00000055ceff62b21b3a500100030000008d031f000000000000000000 ....U..b..:P.................. +7095 19.958366632 127.0.0.1:57433 127.0.0.1:57415 375868426 12 ffffffff5fbc0a0000000000 ...._....... +7097 19.958816767 127.0.0.1:57433 127.0.0.1:57415 375868438 12 1a0000004c9b0a0000000000 ....L....... +7099 19.959048271 127.0.0.1:57433 127.0.0.1:57415 375868450 26 160000008d031f00000000000100030000000000000000000000 .......................... +7101 19.959349394 127.0.0.1:57415 127.0.0.1:57433 3331541016 12 ffffffff4c9b0a0000000000 ....L....... +7103 19.995323896 127.0.0.1:57415 127.0.0.1:57433 3331541028 12 1a00000060bc0a0000000000 ....`....... +7105 19.995479345 127.0.0.1:57415 127.0.0.1:57433 3331541040 26 16000000548f6340e25e31400100030000008f031f0000000000 ....T.c@.^1@.............. +7107 19.995962381 127.0.0.1:57433 127.0.0.1:57415 375868476 12 ffffffff60bc0a0000000000 ....`....... +7109 19.996344566 127.0.0.1:57433 127.0.0.1:57415 375868488 12 160000004d9b0a0000000000 ....M....... +7111 19.996514797 127.0.0.1:57433 127.0.0.1:57415 375868500 22 120000008f031f000000000001000300000000000000 ...................... +7113 19.996753931 127.0.0.1:57415 127.0.0.1:57433 3331541066 12 ffffffff4d9b0a0000000000 ....M....... +7121 20.039541483 127.0.0.1:57433 127.0.0.1:57415 375868522 12 feffffff1c3801002d380100 .....8..-8.. +7123 20.097613096 127.0.0.1:57415 127.0.0.1:57433 3331541078 12 1a00000061bc0a0000000000 ....a....... +7125 20.097829819 127.0.0.1:57415 127.0.0.1:57433 3331541090 26 16000000548f6340e25e314001000300000091031f0000000000 ....T.c@.^1@.............. +7127 20.098248243 127.0.0.1:57433 127.0.0.1:57415 375868534 12 ffffffff61bc0a0000000000 ....a....... +7129 20.098728895 127.0.0.1:57433 127.0.0.1:57415 375868546 12 160000004e9b0a0000000000 ....N....... +7131 20.098904848 127.0.0.1:57433 127.0.0.1:57415 375868558 22 1200000091031f000000000001000300000000000000 ...................... +7133 20.099180460 127.0.0.1:57415 127.0.0.1:57433 3331541116 12 ffffffff4e9b0a0000000000 ....N....... +7135 20.104301453 127.0.0.1:57415 127.0.0.1:57433 3331541128 12 feffffff2e3801001c380100 .....8...8.. +7145 20.200567484 127.0.0.1:57415 127.0.0.1:57433 3331541140 12 1a00000062bc0a0000000000 ....b....... +7147 20.200736046 127.0.0.1:57415 127.0.0.1:57433 3331541152 26 16000000548f6340e25e314001000300000093031f0000000000 ....T.c@.^1@.............. +7149 20.201200008 127.0.0.1:57433 127.0.0.1:57415 375868580 12 ffffffff62bc0a0000000000 ....b....... +7151 20.201691866 127.0.0.1:57433 127.0.0.1:57415 375868592 12 160000004f9b0a0000000000 ....O....... +7153 20.201877117 127.0.0.1:57433 127.0.0.1:57415 375868604 22 1200000093031f000000000001000300000000000000 ...................... +7155 20.202252388 127.0.0.1:57415 127.0.0.1:57433 3331541178 12 ffffffff4f9b0a0000000000 ....O....... +7193 20.259206295 127.0.0.1:57415 127.0.0.1:57433 3331541190 12 6500000063bc0a0000000000 e...c....... +7195 20.259423256 127.0.0.1:57415 127.0.0.1:57433 3331541202 101 1e0000001c2118d0c46f33bb010003000000c5ff01000000000008610ec39d01 .....!...o3................a......?.....3...|8.. +7197 20.259720325 127.0.0.1:57433 127.0.0.1:57415 375868626 12 ffffffff63bc0a0000000000 ....c....... +7199 20.261201859 127.0.0.1:57433 127.0.0.1:57415 375868638 12 34000000509b0a0000000000 4...P....... +7201 20.261406898 127.0.0.1:57433 127.0.0.1:57415 375868650 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................AU +7203 20.261624575 127.0.0.1:57415 127.0.0.1:57433 3331541303 12 ffffffff509b0a0000000000 ....P....... +7205 20.262479782 127.0.0.1:57415 127.0.0.1:57433 3331541315 12 1e00000064bc0a0000000000 ....d....... +7207 20.262661695 127.0.0.1:57415 127.0.0.1:57433 3331541327 30 1a00000055ceff62b21b3a5001000300000095031f000000000000000000 ....U..b..:P.................. +7209 20.263219118 127.0.0.1:57433 127.0.0.1:57415 375868702 12 ffffffff64bc0a0000000000 ....d....... +7211 20.263586760 127.0.0.1:57433 127.0.0.1:57415 375868714 12 1a000000519b0a0000000000 ....Q....... +7213 20.263733149 127.0.0.1:57433 127.0.0.1:57415 375868726 26 1600000095031f00000000000100030000000000000000000000 .......................... +7215 20.263962746 127.0.0.1:57415 127.0.0.1:57433 3331541357 12 ffffffff519b0a0000000000 ....Q....... +7217 20.303290844 127.0.0.1:57415 127.0.0.1:57433 3331541369 12 1a00000065bc0a0000000000 ....e....... +7219 20.303456068 127.0.0.1:57415 127.0.0.1:57433 3331541381 26 16000000548f6340e25e314001000300000097031f0000000000 ....T.c@.^1@.............. +7221 20.303729296 127.0.0.1:57433 127.0.0.1:57415 375868752 12 ffffffff65bc0a0000000000 ....e....... +7223 20.304263592 127.0.0.1:57433 127.0.0.1:57415 375868764 12 16000000529b0a0000000000 ....R....... +7225 20.304455042 127.0.0.1:57433 127.0.0.1:57415 375868776 22 1200000097031f000000000001000300000000000000 ...................... +7227 20.304706812 127.0.0.1:57415 127.0.0.1:57433 3331541407 12 ffffffff529b0a0000000000 ....R....... +7229 20.407265663 127.0.0.1:57415 127.0.0.1:57433 3331541419 12 1a00000066bc0a0000000000 ....f....... +7231 20.407504559 127.0.0.1:57415 127.0.0.1:57433 3331541431 26 16000000548f6340e25e314001000300000099031f0000000000 ....T.c@.^1@.............. +7233 20.407917976 127.0.0.1:57433 127.0.0.1:57415 375868798 12 ffffffff66bc0a0000000000 ....f....... +7235 20.408395052 127.0.0.1:57433 127.0.0.1:57415 375868810 12 16000000539b0a0000000000 ....S....... +7237 20.408568382 127.0.0.1:57433 127.0.0.1:57415 375868822 22 1200000099031f000000000001000300000000000000 ...................... +7239 20.408843279 127.0.0.1:57415 127.0.0.1:57433 3331541457 12 ffffffff539b0a0000000000 ....S....... +7243 20.510276318 127.0.0.1:57415 127.0.0.1:57433 3331541469 12 1a00000067bc0a0000000000 ....g....... +7245 20.510452747 127.0.0.1:57415 127.0.0.1:57433 3331541481 26 16000000548f6340e25e31400100030000009b031f0000000000 ....T.c@.^1@.............. +7247 20.510817528 127.0.0.1:57433 127.0.0.1:57415 375868844 12 ffffffff67bc0a0000000000 ....g....... +7249 20.511305332 127.0.0.1:57433 127.0.0.1:57415 375868856 12 16000000549b0a0000000000 ....T....... +7251 20.511539698 127.0.0.1:57433 127.0.0.1:57415 375868868 22 120000009b031f000000000001000300000000000000 ...................... +7253 20.511892796 127.0.0.1:57415 127.0.0.1:57433 3331541507 12 ffffffff549b0a0000000000 ....T....... +7294 20.540934086 127.0.0.1:57433 127.0.0.1:57415 375868890 12 feffffff1d3801002e380100 .....8...8.. +7302 20.563637495 127.0.0.1:57415 127.0.0.1:57433 3331541519 12 6500000068bc0a0000000000 e...h....... +7304 20.563785553 127.0.0.1:57415 127.0.0.1:57433 3331541531 101 1e0000001c2118d0c46f33bb010003000000c6ff01000000000039620ec39d01 .....!...o3...............9b......?.....3...|8.. +7306 20.564191818 127.0.0.1:57433 127.0.0.1:57415 375868902 12 ffffffff68bc0a0000000000 ....h....... +7308 20.565377951 127.0.0.1:57433 127.0.0.1:57415 375868914 12 34000000559b0a0000000000 4...U....... +7310 20.565739870 127.0.0.1:57433 127.0.0.1:57415 375868926 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............S_pU +7312 20.565997601 127.0.0.1:57415 127.0.0.1:57433 3331541632 12 ffffffff559b0a0000000000 ....U....... +7314 20.567090034 127.0.0.1:57415 127.0.0.1:57433 3331541644 12 1e00000069bc0a0000000000 ....i....... +7316 20.567245960 127.0.0.1:57415 127.0.0.1:57433 3331541656 30 1a00000055ceff62b21b3a500100030000009d031f000000000000000000 ....U..b..:P.................. +7318 20.567481041 127.0.0.1:57433 127.0.0.1:57415 375868978 12 ffffffff69bc0a0000000000 ....i....... +7320 20.568026304 127.0.0.1:57433 127.0.0.1:57415 375868990 12 1a000000569b0a0000000000 ....V....... +7322 20.568232775 127.0.0.1:57433 127.0.0.1:57415 375869002 26 160000009d031f00000000000100030000000000000000000000 .......................... +7324 20.568496466 127.0.0.1:57415 127.0.0.1:57433 3331541686 12 ffffffff569b0a0000000000 ....V....... +7326 20.605855465 127.0.0.1:57415 127.0.0.1:57433 3331541698 12 feffffff2f3801001d380100 ..../8...8.. +7330 20.614098310 127.0.0.1:57415 127.0.0.1:57433 3331541710 12 1a0000006abc0a0000000000 ....j....... +7332 20.614251137 127.0.0.1:57415 127.0.0.1:57433 3331541722 26 16000000548f6340e25e31400100030000009f031f0000000000 ....T.c@.^1@.............. +7338 20.614703894 127.0.0.1:57433 127.0.0.1:57415 375869028 12 ffffffff6abc0a0000000000 ....j....... +7340 20.615260601 127.0.0.1:57433 127.0.0.1:57415 375869040 12 16000000579b0a0000000000 ....W....... +7342 20.615434408 127.0.0.1:57433 127.0.0.1:57415 375869052 22 120000009f031f000000000001000300000000000000 ...................... +7344 20.615842819 127.0.0.1:57415 127.0.0.1:57433 3331541748 12 ffffffff579b0a0000000000 ....W....... +7387 20.717142344 127.0.0.1:57415 127.0.0.1:57433 3331541760 12 1a0000006bbc0a0000000000 ....k....... +7389 20.717307091 127.0.0.1:57415 127.0.0.1:57433 3331541772 26 16000000548f6340e25e3140010003000000a1031f0000000000 ....T.c@.^1@.............. +7391 20.717782259 127.0.0.1:57433 127.0.0.1:57415 375869074 12 ffffffff6bbc0a0000000000 ....k....... +7393 20.718437433 127.0.0.1:57433 127.0.0.1:57415 375869086 12 16000000589b0a0000000000 ....X....... +7395 20.718643427 127.0.0.1:57433 127.0.0.1:57415 375869098 22 12000000a1031f000000000001000300000000000000 ...................... +7397 20.718915224 127.0.0.1:57415 127.0.0.1:57433 3331541798 12 ffffffff589b0a0000000000 ....X....... +7403 20.821165323 127.0.0.1:57415 127.0.0.1:57433 3331541810 12 1a0000006cbc0a0000000000 ....l....... +7405 20.821391582 127.0.0.1:57415 127.0.0.1:57433 3331541822 26 16000000548f6340e25e3140010003000000a3031f0000000000 ....T.c@.^1@.............. +7407 20.821782351 127.0.0.1:57433 127.0.0.1:57415 375869120 12 ffffffff6cbc0a0000000000 ....l....... +7409 20.822260857 127.0.0.1:57433 127.0.0.1:57415 375869132 12 16000000599b0a0000000000 ....Y....... +7411 20.822432518 127.0.0.1:57433 127.0.0.1:57415 375869144 22 12000000a3031f000000000001000300000000000000 ...................... +7413 20.822821379 127.0.0.1:57415 127.0.0.1:57433 3331541848 12 ffffffff599b0a0000000000 ....Y....... +7460 20.869639158 127.0.0.1:57415 127.0.0.1:57433 3331541860 12 220000006dbc0a0000000000 "...m....... +7462 20.869797707 127.0.0.1:57415 127.0.0.1:57433 3331541872 34 1e0000001c2118d0c46f33bb010003000000c7ff0100000000006b630ec39d01 .....!...o3...............kc...... +7464 20.869919777 127.0.0.1:57415 127.0.0.1:57433 3331541906 12 430000006ebc0a0000000000 C...n....... +7466 20.870001793 127.0.0.1:57415 127.0.0.1:57433 3331541918 67 3f000000980433cb0cb47c380100030000000100000000c7ff0100000000003d ?.....3...|8...................=B.....&......... +7468 20.870100021 127.0.0.1:57433 127.0.0.1:57415 375869166 12 ffffffff6dbc0a0000000000 ....m....... +7470 20.870300531 127.0.0.1:57433 127.0.0.1:57415 375869178 12 ffffffff6ebc0a0000000000 ....n....... +7472 20.870944977 127.0.0.1:57433 127.0.0.1:57415 375869190 12 340000005a9b0a0000000000 4...Z....... +7474 20.871145964 127.0.0.1:57433 127.0.0.1:57415 375869202 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................U +7476 20.871396780 127.0.0.1:57415 127.0.0.1:57433 3331541985 12 ffffffff5a9b0a0000000000 ....Z....... +7478 20.872088909 127.0.0.1:57415 127.0.0.1:57433 3331541997 12 1e0000006fbc0a0000000000 ....o....... +7480 20.872224569 127.0.0.1:57415 127.0.0.1:57433 3331542009 30 1a00000055ceff62b21b3a50010003000000a5031f000000000000000000 ....U..b..:P.................. +7482 20.872515678 127.0.0.1:57433 127.0.0.1:57415 375869254 12 ffffffff6fbc0a0000000000 ....o....... +7484 20.873074055 127.0.0.1:57433 127.0.0.1:57415 375869266 12 1a0000005b9b0a0000000000 ....[....... +7486 20.873215675 127.0.0.1:57433 127.0.0.1:57415 375869278 26 16000000a5031f00000000000100030000000000000000000000 .......................... +7488 20.873468637 127.0.0.1:57415 127.0.0.1:57433 3331542039 12 ffffffff5b9b0a0000000000 ....[....... +7499 20.924065828 127.0.0.1:57415 127.0.0.1:57433 3331542051 12 1a00000070bc0a0000000000 ....p....... +7502 20.924220800 127.0.0.1:57415 127.0.0.1:57433 3331542063 26 16000000548f6340e25e3140010003000000a7031f0000000000 ....T.c@.^1@.............. +7506 20.924779654 127.0.0.1:57433 127.0.0.1:57415 375869304 12 ffffffff70bc0a0000000000 ....p....... +7508 20.925318718 127.0.0.1:57433 127.0.0.1:57415 375869316 12 160000005c9b0a0000000000 ....\....... +7510 20.925482988 127.0.0.1:57433 127.0.0.1:57415 375869328 22 12000000a7031f000000000001000300000000000000 ...................... +7512 20.925788879 127.0.0.1:57415 127.0.0.1:57433 3331542089 12 ffffffff5c9b0a0000000000 ....\....... +7561 21.027043819 127.0.0.1:57415 127.0.0.1:57433 3331542101 12 1a00000071bc0a0000000000 ....q....... +7563 21.027196407 127.0.0.1:57415 127.0.0.1:57433 3331542113 26 16000000548f6340e25e3140010003000000a9031f0000000000 ....T.c@.^1@.............. +7565 21.027600765 127.0.0.1:57433 127.0.0.1:57415 375869350 12 ffffffff71bc0a0000000000 ....q....... +7567 21.028317690 127.0.0.1:57433 127.0.0.1:57415 375869362 12 160000005d9b0a0000000000 ....]....... +7569 21.028489590 127.0.0.1:57433 127.0.0.1:57415 375869374 22 12000000a9031f000000000001000300000000000000 ...................... +7571 21.028834105 127.0.0.1:57415 127.0.0.1:57433 3331542139 12 ffffffff5d9b0a0000000000 ....]....... +7579 21.041138887 127.0.0.1:57433 127.0.0.1:57415 375869396 12 feffffff1e3801002f380100 .....8../8.. +7581 21.107026339 127.0.0.1:57415 127.0.0.1:57433 3331542151 12 feffffff303801001e380100 ....08...8.. +7589 21.130082846 127.0.0.1:57415 127.0.0.1:57433 3331542163 12 1a00000072bc0a0000000000 ....r....... +7591 21.130241871 127.0.0.1:57415 127.0.0.1:57433 3331542175 26 16000000548f6340e25e3140010003000000ab031f0000000000 ....T.c@.^1@.............. +7593 21.130555153 127.0.0.1:57433 127.0.0.1:57415 375869408 12 ffffffff72bc0a0000000000 ....r....... +7595 21.131472588 127.0.0.1:57433 127.0.0.1:57415 375869420 12 160000005e9b0a0000000000 ....^....... +7597 21.131729841 127.0.0.1:57433 127.0.0.1:57415 375869432 22 12000000ab031f000000000001000300000000000000 ...................... +7599 21.132003069 127.0.0.1:57415 127.0.0.1:57433 3331542201 12 ffffffff5e9b0a0000000000 ....^....... +7620 21.173425674 127.0.0.1:57415 127.0.0.1:57433 3331542213 12 2200000073bc0a0000000000 "...s....... +7622 21.173606396 127.0.0.1:57415 127.0.0.1:57433 3331542225 34 1e0000001c2118d0c46f33bb010003000000c8ff0100000000009b640ec39d01 .....!...o3................d...... +7624 21.173729658 127.0.0.1:57415 127.0.0.1:57433 3331542259 12 4300000074bc0a0000000000 C...t....... +7627 21.173815012 127.0.0.1:57415 127.0.0.1:57433 3331542271 67 3f000000980433cb0cb47c380100030000000100000000c8ff0100000000003d ?.....3...|8...................=B.....&......... +7631 21.173998833 127.0.0.1:57433 127.0.0.1:57415 375869454 12 ffffffff73bc0a0000000000 ....s....... +7634 21.174189806 127.0.0.1:57433 127.0.0.1:57415 375869466 12 ffffffff74bc0a0000000000 ....t....... +7640 21.175472021 127.0.0.1:57433 127.0.0.1:57415 375869478 12 340000005f9b0a0000000000 4..._....... +7642 21.175665855 127.0.0.1:57433 127.0.0.1:57415 375869490 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................|.U +7644 21.175937891 127.0.0.1:57415 127.0.0.1:57433 3331542338 12 ffffffff5f9b0a0000000000 ...._....... +7650 21.176787376 127.0.0.1:57415 127.0.0.1:57433 3331542350 12 1e00000075bc0a0000000000 ....u....... +7654 21.176981688 127.0.0.1:57415 127.0.0.1:57433 3331542362 30 1a00000055ceff62b21b3a50010003000000ad031f000000000000000000 ....U..b..:P.................. +7657 21.177295685 127.0.0.1:57433 127.0.0.1:57415 375869542 12 ffffffff75bc0a0000000000 ....u....... +7660 21.177755594 127.0.0.1:57433 127.0.0.1:57415 375869554 12 1a000000609b0a0000000000 ....`....... +7662 21.177954197 127.0.0.1:57433 127.0.0.1:57415 375869566 26 16000000ad031f00000000000100030000000000000000000000 .......................... +7664 21.178218126 127.0.0.1:57415 127.0.0.1:57433 3331542392 12 ffffffff609b0a0000000000 ....`....... +7675 21.234165430 127.0.0.1:57415 127.0.0.1:57433 3331542404 12 1a00000076bc0a0000000000 ....v....... +7678 21.234527111 127.0.0.1:57415 127.0.0.1:57433 3331542416 26 16000000548f6340e25e3140010003000000af031f0000000000 ....T.c@.^1@.............. +7680 21.234964132 127.0.0.1:57433 127.0.0.1:57415 375869592 12 ffffffff76bc0a0000000000 ....v....... +7682 21.235580683 127.0.0.1:57433 127.0.0.1:57415 375869604 12 16000000619b0a0000000000 ....a....... +7684 21.235799551 127.0.0.1:57433 127.0.0.1:57415 375869616 22 12000000af031f000000000001000300000000000000 ...................... +7686 21.236593485 127.0.0.1:57415 127.0.0.1:57433 3331542442 12 ffffffff619b0a0000000000 ....a....... +7696 21.339090824 127.0.0.1:57415 127.0.0.1:57433 3331542454 12 1a00000077bc0a0000000000 ....w....... +7698 21.339277506 127.0.0.1:57415 127.0.0.1:57433 3331542466 26 16000000548f6340e25e3140010003000000b1031f0000000000 ....T.c@.^1@.............. +7700 21.339722395 127.0.0.1:57433 127.0.0.1:57415 375869638 12 ffffffff77bc0a0000000000 ....w....... +7702 21.340154648 127.0.0.1:57433 127.0.0.1:57415 375869650 12 16000000629b0a0000000000 ....b....... +7704 21.340325356 127.0.0.1:57433 127.0.0.1:57415 375869662 22 12000000b1031f000000000001000300000000000000 ...................... +7706 21.340679169 127.0.0.1:57415 127.0.0.1:57433 3331542492 12 ffffffff629b0a0000000000 ....b....... +550 0.000000000 ::1:55733 ::1:49704 3395154331 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +552 0.000448704 ::1:49704 ::1:55733 1719828624 84 05000c03100000005400000002000000d016d016b4b900000600343937303400 ........T.................49704..........]...... +554 0.000650406 ::1:55733 ::1:49704 3395154447 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +556 0.000842333 ::1:49704 ::1:55733 1719828708 44 05000203100000002c0000000200000014000000000000000000000003b0fcb4 ........,........................6.A.+...%R. +558 0.001049519 ::1:55733 ::1:49704 3395154487 72 05000e03100000004800000003000000d016d016b4b900000100000001000100 ........H.......................K....k.F.@.`..Q. +560 0.001212120 ::1:49704 ::1:55733 1719828752 56 05000f03100000003800000003000000d016d016b4b900000000000001000000 ........8............................].......... +562 0.001354933 ::1:55733 ::1:49704 3395154559 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +564 0.003010511 ::1:49704 ::1:55733 1719828808 28 05000203100000001c00000003000000040000000100000001000000 ............................ +566 0.003233194 ::1:55733 ::1:49704 3395154655 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +568 0.003417015 ::1:49704 ::1:55733 1719828836 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +570 0.003756762 ::1:55733 ::1:49704 3395154715 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +572 0.003940344 ::1:49704 ::1:55733 1719828928 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +574 0.004140377 ::1:55733 ::1:49704 3395154835 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +576 0.004311323 ::1:49704 ::1:55733 1719828960 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +578 0.004553795 ::1:55733 ::1:49704 3395154959 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +580 0.004766941 ::1:49704 ::1:55733 1719828992 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +582 0.004930735 ::1:55733 ::1:49704 3395155077 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +584 0.005101919 ::1:49704 ::1:55733 1719829024 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +586 0.005248547 ::1:55733 ::1:49704 3395155197 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +588 0.005409241 ::1:49704 ::1:55733 1719829056 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +590 0.005582094 ::1:55733 ::1:49704 3395155327 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +592 0.005743504 ::1:49704 ::1:55733 1719829088 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +594 0.005889416 ::1:55733 ::1:49704 3395155457 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +596 0.006054401 ::1:49704 ::1:55733 1719829120 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +598 0.006229877 ::1:55733 ::1:49704 3395155599 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +600 0.006400824 ::1:49704 ::1:55733 1719829152 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +602 0.006638527 ::1:55733 ::1:49704 3395155715 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +604 0.006803036 ::1:49704 ::1:55733 1719829184 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +606 0.006981134 ::1:55733 ::1:49704 3395155845 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +608 0.007179022 ::1:49704 ::1:55733 1719829216 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +610 0.007339239 ::1:55733 ::1:49704 3395155973 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +612 0.007533550 ::1:49704 ::1:55733 1719829248 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +614 0.008125067 ::1:55733 ::1:49704 3395156099 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +616 0.008292198 ::1:49704 ::1:55733 1719829280 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +618 0.008543968 ::1:55733 ::1:49704 3395156231 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +620 0.008726835 ::1:49704 ::1:55733 1719829312 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +640 0.112178326 ::1:55733 ::1:49704 3395156383 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +642 0.112443924 ::1:49704 ::1:55733 1719829344 44 05000203100000002c00000012000000140000000000000000000000f491993d ........,......................=..$H.~... .. +644 0.113043070 ::1:55733 ::1:49704 3395156423 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K...........= +646 0.114662647 ::1:49704 ::1:55733 1719829388 28 05000203100000001c00000013000000040000000100000001000000 ............................ +648 0.114870787 ::1:55733 ::1:49704 3395156531 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........= +650 0.115068197 ::1:49704 ::1:55733 1719829416 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +652 0.115334034 ::1:55733 ::1:49704 3395156591 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........= +654 0.115514994 ::1:49704 ::1:55733 1719829508 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +656 0.115672588 ::1:55733 ::1:49704 3395156723 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K...........= +658 0.115826845 ::1:49704 ::1:55733 1719829540 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +660 0.116102934 ::1:55733 ::1:49704 3395156859 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........= +662 0.116357565 ::1:49704 ::1:55733 1719829572 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +664 0.116629601 ::1:55733 ::1:49704 3395156989 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........= +666 0.116866827 ::1:49704 ::1:55733 1719829604 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +668 0.117061615 ::1:55733 ::1:49704 3395157121 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........= +670 0.117234230 ::1:49704 ::1:55733 1719829636 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +672 0.117393255 ::1:55733 ::1:49704 3395157263 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........= +674 0.117556095 ::1:49704 ::1:55733 1719829668 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +676 0.117764473 ::1:55733 ::1:49704 3395157405 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K...........= +678 0.117921829 ::1:49704 ::1:55733 1719829700 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +680 0.118069887 ::1:55733 ::1:49704 3395157559 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........= +682 0.118291855 ::1:49704 ::1:55733 1719829732 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +684 0.118442059 ::1:55733 ::1:49704 3395157687 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........= +686 0.118803978 ::1:49704 ::1:55733 1719829764 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +688 0.118977785 ::1:55733 ::1:49704 3395157829 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K...........= +690 0.119145632 ::1:49704 ::1:55733 1719829796 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +692 0.119363785 ::1:55733 ::1:49704 3395157969 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K...........= +694 0.119548798 ::1:49704 ::1:55733 1719829828 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +724 0.138811588 ::1:55733 ::1:49704 3395158107 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +726 0.139014959 ::1:49704 ::1:55733 1719829860 44 05000203100000002c0000002000000014000000000000000000000062a344c8 ........,... ...............b.D....F...p!Z.. +728 0.139190197 ::1:55733 ::1:49704 3395158147 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K........b.D. +736 0.141130209 ::1:49704 ::1:55733 1719829904 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +739 0.141294718 ::1:55733 ::1:49704 3395158251 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K........b.D. +744 0.141499996 ::1:49704 ::1:55733 1719829932 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +747 0.141802788 ::1:55733 ::1:49704 3395158311 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K........b.D. +750 0.142040968 ::1:49704 ::1:55733 1719830024 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +752 0.142217875 ::1:55733 ::1:49704 3395158439 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K........b.D. +754 0.142465830 ::1:49704 ::1:55733 1719830056 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +756 0.142626047 ::1:55733 ::1:49704 3395158571 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K........b.D. +758 0.142874002 ::1:49704 ::1:55733 1719830088 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +760 0.143037796 ::1:55733 ::1:49704 3395158697 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K........b.D. +762 0.143304110 ::1:49704 ::1:55733 1719830120 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +764 0.143462181 ::1:55733 ::1:49704 3395158825 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K........b.D. +766 0.143700600 ::1:49704 ::1:55733 1719830152 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +768 0.143901110 ::1:55733 ::1:49704 3395158963 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K........b.D. +770 0.144153833 ::1:49704 ::1:55733 1719830184 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +772 0.144346952 ::1:55733 ::1:49704 3395159101 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K........b.D. +774 0.144595861 ::1:49704 ::1:55733 1719830216 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +776 0.144797802 ::1:55733 ::1:49704 3395159251 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K........b.D. +778 0.144975901 ::1:49704 ::1:55733 1719830248 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +780 0.145118713 ::1:55733 ::1:49704 3395159375 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K........b.D. +782 0.145292282 ::1:49704 ::1:55733 1719830280 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +784 0.145433664 ::1:55733 ::1:49704 3395159513 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K........b.D. +786 0.145604372 ::1:49704 ::1:55733 1719830312 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +788 0.145791769 ::1:55733 ::1:49704 3395159649 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K........b.D. +790 0.145966053 ::1:49704 ::1:55733 1719830344 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +792 0.146200895 ::1:55733 ::1:49704 3395159783 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........b.D. +794 0.146372080 ::1:49704 ::1:55733 1719830376 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +796 0.146524429 ::1:55733 ::1:49704 3395159923 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K........b.D. +798 0.146792412 ::1:49704 ::1:55733 1719830408 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +832 0.249580622 ::1:55733 ::1:49704 3395160069 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +834 0.249813080 ::1:49704 ::1:55733 1719830440 44 05000203100000002c0000003000000014000000000000000000000043f01f66 ........,...0...............C..fj..A....j... +836 0.250000000 ::1:55733 ::1:49704 3395160109 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........C..f +838 0.251725674 ::1:49704 ::1:55733 1719830484 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +840 0.251874924 ::1:55733 ::1:49704 3395160221 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........C..f +842 0.252079964 ::1:49704 ::1:55733 1719830512 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +844 0.252326965 ::1:55733 ::1:49704 3395160281 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........C..f +846 0.252595186 ::1:49704 ::1:55733 1719830604 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +848 0.252736807 ::1:55733 ::1:49704 3395160417 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........C..f +850 0.252916574 ::1:49704 ::1:55733 1719830636 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +852 0.253061295 ::1:55733 ::1:49704 3395160557 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........C..f +854 0.253236294 ::1:49704 ::1:55733 1719830668 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +856 0.253377914 ::1:55733 ::1:49704 3395160691 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........C..f +858 0.253551483 ::1:49704 ::1:55733 1719830700 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +860 0.253699303 ::1:55733 ::1:49704 3395160827 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........C..f +862 0.253926754 ::1:49704 ::1:55733 1719830732 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +864 0.254129887 ::1:55733 ::1:49704 3395160973 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........C..f +866 0.254320860 ::1:49704 ::1:55733 1719830764 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +868 0.254475594 ::1:55733 ::1:49704 3395161119 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........C..f +870 0.254674196 ::1:49704 ::1:55733 1719830796 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +872 0.254811287 ::1:55733 ::1:49704 3395161277 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........C..f +874 0.254988432 ::1:49704 ::1:55733 1719830828 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +876 0.255132198 ::1:55733 ::1:49704 3395161409 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........C..f +878 0.255304575 ::1:49704 ::1:55733 1719830860 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +880 0.255445719 ::1:55733 ::1:49704 3395161555 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........C..f +882 0.255646706 ::1:49704 ::1:55733 1719830892 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +884 0.255783319 ::1:55733 ::1:49704 3395161699 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........C..f +886 0.255964041 ::1:49704 ::1:55733 1719830924 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +888 0.256175041 ::1:55733 ::1:49704 3395161841 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........C..f +890 0.256352901 ::1:49704 ::1:55733 1719830956 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +892 0.256509781 ::1:55733 ::1:49704 3395161989 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........C..f +894 0.256741762 ::1:49704 ::1:55733 1719830988 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +918 0.385333061 ::1:55733 ::1:49704 3395162143 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +920 0.385649681 ::1:49704 ::1:55733 1719831020 44 05000203100000002c00000040000000140000000000000000000000a7eb8280 ........,...@....................8nG.V?.1.k. +922 0.385830164 ::1:55733 ::1:49704 3395162183 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K............ +924 0.387927771 ::1:49704 ::1:55733 1719831064 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +926 0.388179541 ::1:55733 ::1:49704 3395162275 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K............ +928 0.388427258 ::1:49704 ::1:55733 1719831092 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +930 0.388703585 ::1:55733 ::1:49704 3395162335 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K............ +932 0.388975382 ::1:49704 ::1:55733 1719831184 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +934 0.389132023 ::1:55733 ::1:49704 3395162451 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K............ +936 0.389331341 ::1:49704 ::1:55733 1719831216 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +938 0.389492512 ::1:55733 ::1:49704 3395162571 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K............ +940 0.389674187 ::1:49704 ::1:55733 1719831248 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +942 0.389813662 ::1:55733 ::1:49704 3395162685 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K............ +944 0.389987469 ::1:49704 ::1:55733 1719831280 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +946 0.390128374 ::1:55733 ::1:49704 3395162801 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K............ +948 0.390295029 ::1:49704 ::1:55733 1719831312 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +950 0.390434027 ::1:55733 ::1:49704 3395162927 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K............ +952 0.390627384 ::1:49704 ::1:55733 1719831344 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +954 0.390759468 ::1:55733 ::1:49704 3395163053 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K............ +956 0.390925646 ::1:49704 ::1:55733 1719831376 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +958 0.391065359 ::1:55733 ::1:49704 3395163191 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K............ +960 0.391282797 ::1:49704 ::1:55733 1719831408 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +962 0.391423702 ::1:55733 ::1:49704 3395163303 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K............ +964 0.391616344 ::1:49704 ::1:55733 1719831440 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +966 0.391842365 ::1:55733 ::1:49704 3395163429 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K............ +968 0.392032385 ::1:49704 ::1:55733 1719831472 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +970 0.392198086 ::1:55733 ::1:49704 3395163553 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K............ +972 0.392366648 ::1:49704 ::1:55733 1719831504 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +974 0.392587185 ::1:55733 ::1:49704 3395163675 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K............ +976 0.392746210 ::1:49704 ::1:55733 1719831536 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +978 0.392897606 ::1:55733 ::1:49704 3395163803 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K............ +980 0.393065453 ::1:49704 ::1:55733 1719831568 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +982 0.393318415 ::1:55733 ::1:49704 3395163937 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K............ +984 0.393487930 ::1:49704 ::1:55733 1719831600 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +986 0.393663645 ::1:55733 ::1:49704 3395164067 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K............ +988 0.393840551 ::1:49704 ::1:55733 1719831632 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +2903 7.085260391 ::1:55733 ::1:49704 3395164195 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +2905 7.085586786 ::1:49704 ::1:55733 1719831664 44 05000203100000002c0000005200000014000000000000000000000011a21890 ........,...R....................4.D.6. k0). +2907 7.085857391 ::1:55733 ::1:49704 3395164235 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K............ +2909 7.088094234 ::1:49704 ::1:55733 1719831708 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +2911 7.088372946 ::1:55733 ::1:49704 3395164335 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K............ +2914 7.088695765 ::1:49704 ::1:55733 1719831736 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +2916 7.089039326 ::1:55733 ::1:49704 3395164395 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K............ +2918 7.089261293 ::1:49704 ::1:55733 1719831828 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +2920 7.089441061 ::1:55733 ::1:49704 3395164519 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K............ +2922 7.089637756 ::1:49704 ::1:55733 1719831860 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +2924 7.089845181 ::1:55733 ::1:49704 3395164647 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K............ +2926 7.090170383 ::1:49704 ::1:55733 1719831892 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +2928 7.090374231 ::1:55733 ::1:49704 3395164769 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K............ +2930 7.090680361 ::1:49704 ::1:55733 1719831924 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +2932 7.090884447 ::1:55733 ::1:49704 3395164893 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K............ +2934 7.091105223 ::1:49704 ::1:55733 1719831956 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +2936 7.091302872 ::1:55733 ::1:49704 3395165027 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K............ +2938 7.091549158 ::1:49704 ::1:55733 1719831988 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +2940 7.091749191 ::1:55733 ::1:49704 3395165161 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K............ +2942 7.091978550 ::1:49704 ::1:55733 1719832020 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +2944 7.092178106 ::1:55733 ::1:49704 3395165307 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K............ +2946 7.092393875 ::1:49704 ::1:55733 1719832052 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +2948 7.092578888 ::1:55733 ::1:49704 3395165427 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K............ +2950 7.092795134 ::1:49704 ::1:55733 1719832084 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +2952 7.092993021 ::1:55733 ::1:49704 3395165561 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K............ +2954 7.093206882 ::1:49704 ::1:55733 1719832116 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +2956 7.093400478 ::1:55733 ::1:49704 3395165693 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K............ +2958 7.093597174 ::1:49704 ::1:55733 1719832148 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +2960 7.093882561 ::1:55733 ::1:49704 3395165823 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K............ +2962 7.094101191 ::1:49704 ::1:55733 1719832180 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +2964 7.094311476 ::1:55733 ::1:49704 3395165967 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K............ +2966 7.094530344 ::1:49704 ::1:55733 1719832212 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +2968 7.094736576 ::1:55733 ::1:49704 3395166115 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K............ +2970 7.094953299 ::1:49704 ::1:55733 1719832244 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +2972 7.095210314 ::1:55733 ::1:49704 3395166261 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K............ +2974 7.095460176 ::1:49704 ::1:55733 1719832276 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3041 7.174247265 ::1:55733 ::1:49704 3395166419 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3043 7.174462080 ::1:49704 ::1:55733 1719832308 44 05000203100000002c000000640000001400000000000000000000007e2b7af8 ........,...d...............~+z....G.`.W.... +3045 7.174672365 ::1:55733 ::1:49704 3395166459 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K........~+z. +3047 7.176519394 ::1:49704 ::1:55733 1719832352 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3049 7.176703691 ::1:55733 ::1:49704 3395166543 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K........~+z. +3051 7.176915884 ::1:49704 ::1:55733 1719832380 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3053 7.177186966 ::1:55733 ::1:49704 3395166603 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K........~+z. +3055 7.177397490 ::1:49704 ::1:55733 1719832472 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3057 7.177565813 ::1:55733 ::1:49704 3395166711 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K........~+z. +3059 7.177767992 ::1:49704 ::1:55733 1719832504 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3061 7.177950859 ::1:55733 ::1:49704 3395166823 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K........~+z. +3063 7.178219080 ::1:49704 ::1:55733 1719832536 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3065 7.178417683 ::1:55733 ::1:49704 3395166929 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K........~+z. +3067 7.178600311 ::1:49704 ::1:55733 1719832568 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3069 7.178809881 ::1:55733 ::1:49704 3395167037 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K........~+z. +3071 7.178982258 ::1:49704 ::1:55733 1719832600 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3073 7.179142475 ::1:55733 ::1:49704 3395167155 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K........~+z. +3075 7.179309607 ::1:49704 ::1:55733 1719832632 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3077 7.179474115 ::1:55733 ::1:49704 3395167273 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K........~+z. +3079 7.179643393 ::1:49704 ::1:55733 1719832664 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3081 7.179831266 ::1:55733 ::1:49704 3395167403 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K........~+z. +3083 7.180013180 ::1:49704 ::1:55733 1719832696 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3085 7.180177689 ::1:55733 ::1:49704 3395167507 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K........~+z. +3087 7.180349112 ::1:49704 ::1:55733 1719832728 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3089 7.180505991 ::1:55733 ::1:49704 3395167625 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K........~+z. +3091 7.180673361 ::1:49704 ::1:55733 1719832760 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3093 7.180857420 ::1:55733 ::1:49704 3395167741 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K........~+z. +3095 7.181024790 ::1:49704 ::1:55733 1719832792 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3097 7.181574821 ::1:55733 ::1:49704 3395167855 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K........~+z. +3099 7.181744576 ::1:49704 ::1:55733 1719832824 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3101 7.182032108 ::1:55733 ::1:49704 3395167983 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K........~+z. +3103 7.182202578 ::1:49704 ::1:55733 1719832856 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3105 7.182397127 ::1:55733 ::1:49704 3395168103 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K........~+z. +3107 7.182568073 ::1:49704 ::1:55733 1719832888 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3109 7.182830811 ::1:55733 ::1:49704 3395168223 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K........~+z. +3111 7.183292866 ::1:49704 ::1:55733 1719832920 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3113 7.183488846 ::1:55733 ::1:49704 3395168345 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K........~+z. +3115 7.183913469 ::1:49704 ::1:55733 1719832952 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3117 7.184146881 ::1:55733 ::1:49704 3395168479 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K........~+z. +3119 7.184330225 ::1:49704 ::1:55733 1719832984 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3121 7.184558392 ::1:55733 ::1:49704 3395168611 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K........~+z. +3123 7.184764862 ::1:49704 ::1:55733 1719833016 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3125 7.185030222 ::1:55733 ::1:49704 3395168741 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K........~+z. +3127 7.185218573 ::1:49704 ::1:55733 1719833048 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3132 7.185462475 ::1:55733 ::1:49704 3395168879 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K........~+z. +3136 7.185651064 ::1:49704 ::1:55733 1719833080 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3139 7.185933113 ::1:55733 ::1:49704 3395169023 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K........~+z. +3141 7.186091185 ::1:49704 ::1:55733 1719833112 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3143 7.186285257 ::1:55733 ::1:49704 3395169167 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K........~+z. +3147 7.186531782 ::1:49704 ::1:55733 1719833144 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3151 7.186789274 ::1:55733 ::1:49704 3395169283 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K........~+z. +3155 7.186977863 ::1:49704 ::1:55733 1719833176 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3157 7.187192678 ::1:55733 ::1:49704 3395169413 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K........~+z. +3159 7.187361002 ::1:49704 ::1:55733 1719833208 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3163 7.187632799 ::1:55733 ::1:49704 3395169551 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........~+z. +3167 7.187819004 ::1:49704 ::1:55733 1719833240 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3171 7.188051462 ::1:55733 ::1:49704 3395169681 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........~+z. +3175 7.188230038 ::1:49704 ::1:55733 1719833272 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3177 7.188487530 ::1:55733 ::1:49704 3395169803 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........~+z. +3179 7.188664436 ::1:49704 ::1:55733 1719833304 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3181 7.188933134 ::1:55733 ::1:49704 3395169925 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........~+z. +3183 7.189109564 ::1:49704 ::1:55733 1719833336 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3185 7.189352751 ::1:55733 ::1:49704 3395170059 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........~+z. +3187 7.189528942 ::1:49704 ::1:55733 1719833368 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3189 7.189763784 ::1:55733 ::1:49704 3395170187 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........~+z. +3191 7.189976454 ::1:49704 ::1:55733 1719833400 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3194 7.225220203 ::1:55733 ::1:49704 3395170311 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K........~+z. +3197 7.225520372 ::1:49704 ::1:55733 1719833432 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3211 7.261586189 ::1:55733 ::1:49704 3395170827 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3213 7.261870623 ::1:49704 ::1:55733 1719833460 44 05000203100000002c000000860000001400000000000000000000002788b9b7 ........,...................'....*.G...#"... +3215 7.262094975 ::1:55733 ::1:49704 3395170867 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........'... +3217 7.263987780 ::1:49704 ::1:55733 1719833504 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3219 7.264165878 ::1:55733 ::1:49704 3395170979 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........'... +3221 7.264341831 ::1:49704 ::1:55733 1719833532 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3223 7.264601231 ::1:55733 ::1:49704 3395171039 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'... +3225 7.264827967 ::1:49704 ::1:55733 1719833624 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3227 7.264997959 ::1:55733 ::1:49704 3395171175 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'... +3229 7.265165091 ::1:49704 ::1:55733 1719833656 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3231 7.265329361 ::1:55733 ::1:49704 3395171315 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........'... +3233 7.265494585 ::1:49704 ::1:55733 1719833688 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3235 7.265656471 ::1:55733 ::1:49704 3395171449 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'... +3237 7.265843630 ::1:49704 ::1:55733 1719833720 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3239 7.266005516 ::1:55733 ::1:49704 3395171585 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3241 7.266169310 ::1:49704 ::1:55733 1719833752 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3243 7.266330481 ::1:55733 ::1:49704 3395171731 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3245 7.266524792 ::1:49704 ::1:55733 1719833784 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3247 7.266692162 ::1:55733 ::1:49704 3395171877 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........'... +3249 7.266887188 ::1:49704 ::1:55733 1719833816 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3251 7.267051935 ::1:55733 ::1:49704 3395172035 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........'... +3253 7.267220020 ::1:49704 ::1:55733 1719833848 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3255 7.267383099 ::1:55733 ::1:49704 3395172167 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3257 7.267547369 ::1:49704 ::1:55733 1719833880 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3259 7.267709017 ::1:55733 ::1:49704 3395172313 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'... +3261 7.267899275 ::1:49704 ::1:55733 1719833912 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3263 7.268059492 ::1:55733 ::1:49704 3395172457 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........'... +3265 7.268222094 ::1:49704 ::1:55733 1719833944 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3267 7.268507957 ::1:55733 ::1:49704 3395172599 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........'... +3269 7.268683195 ::1:49704 ::1:55733 1719833976 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3271 7.268888235 ::1:55733 ::1:49704 3395172759 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........'... +3273 7.269049168 ::1:49704 ::1:55733 1719834008 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3275 7.269371986 ::1:55733 ::1:49704 3395172915 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'... +3277 7.269544363 ::1:49704 ::1:55733 1719834040 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3279 7.269722462 ::1:55733 ::1:49704 3395173069 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'... +3281 7.269913912 ::1:49704 ::1:55733 1719834072 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3283 7.270084620 ::1:55733 ::1:49704 3395173215 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'... +3285 7.270247221 ::1:49704 ::1:55733 1719834104 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3287 7.270417213 ::1:55733 ::1:49704 3395173369 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........'... +3289 7.270575523 ::1:49704 ::1:55733 1719834136 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3291 7.270740271 ::1:55733 ::1:49704 3395173519 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........'... +3293 7.270902157 ::1:49704 ::1:55733 1719834168 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3295 7.271105528 ::1:55733 ::1:49704 3395173671 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'... +3297 7.271270275 ::1:49704 ::1:55733 1719834200 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3299 7.271439314 ::1:55733 ::1:49704 3395173811 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........'... +3301 7.271598577 ::1:49704 ::1:55733 1719834232 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3303 7.271763086 ::1:55733 ::1:49704 3395173959 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........'... +3305 7.271924973 ::1:49704 ::1:55733 1719834264 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3307 7.272093058 ::1:55733 ::1:49704 3395174121 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........'... +3309 7.272253275 ::1:49704 ::1:55733 1719834296 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3311 7.272420168 ::1:55733 ::1:49704 3395174293 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'... +3313 7.272579670 ::1:49704 ::1:55733 1719834328 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3321 7.281282425 ::1:55733 ::1:49704 3395174437 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3323 7.281512022 ::1:49704 ::1:55733 1719834360 44 05000203100000002c000000a00000001400000000000000000000003272a8f0 ........,...................2r.../+B..q..... +3325 7.281713963 ::1:55733 ::1:49704 3395174477 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........2r.. +3327 7.283260584 ::1:49704 ::1:55733 1719834404 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3329 7.283432007 ::1:55733 ::1:49704 3395174605 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........2r.. +3331 7.283600092 ::1:49704 ::1:55733 1719834432 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3333 7.284011364 ::1:55733 ::1:49704 3395174665 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........2r.. +3335 7.284247398 ::1:49704 ::1:55733 1719834524 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3337 7.284445763 ::1:55733 ::1:49704 3395174817 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........2r.. +3339 7.284664869 ::1:49704 ::1:55733 1719834556 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3341 7.284895897 ::1:55733 ::1:49704 3395174973 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........2r.. +3343 7.285075426 ::1:49704 ::1:55733 1719834588 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3345 7.285304546 ::1:55733 ::1:49704 3395175123 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........2r.. +3347 7.285509586 ::1:49704 ::1:55733 1719834620 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3349 7.285689354 ::1:55733 ::1:49704 3395175275 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........2r.. +3351 7.285886049 ::1:49704 ::1:55733 1719834652 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3353 7.286103487 ::1:55733 ::1:49704 3395175437 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........2r.. +3355 7.286280155 ::1:49704 ::1:55733 1719834684 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3357 7.286447048 ::1:55733 ::1:49704 3395175599 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........2r.. +3359 7.286660433 ::1:49704 ::1:55733 1719834716 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3361 7.286850691 ::1:55733 ::1:49704 3395175773 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........2r.. +3363 7.287010193 ::1:49704 ::1:55733 1719834748 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3365 7.287228107 ::1:55733 ::1:49704 3395175921 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........2r.. +3367 7.287419796 ::1:49704 ::1:55733 1719834780 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3369 7.287580013 ::1:55733 ::1:49704 3395176083 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........2r.. +3371 7.287751675 ::1:49704 ::1:55733 1719834812 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3373 7.288002253 ::1:55733 ::1:49704 3395176243 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........2r.. +3375 7.288149834 ::1:49704 ::1:55733 1719834844 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3377 7.288383484 ::1:55733 ::1:49704 3395176401 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........2r.. +3379 7.288558722 ::1:49704 ::1:55733 1719834876 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3381 7.288736582 ::1:55733 ::1:49704 3395176571 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........2r.. +3383 7.288951874 ::1:49704 ::1:55733 1719834908 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3401 7.295347452 ::1:55733 ::1:49704 3395176753 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3403 7.295540333 ::1:49704 ::1:55733 1719834940 44 05000203100000002c000000b0000000140000000000000000000000ef07d18d ........,..........................M.....Mo. +3405 7.295742273 ::1:55733 ::1:49704 3395176793 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +3407 7.297264576 ::1:49704 ::1:55733 1719834984 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3409 7.297436237 ::1:55733 ::1:49704 3395176889 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +3411 7.297610044 ::1:49704 ::1:55733 1719835012 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3413 7.297906637 ::1:55733 ::1:49704 3395176949 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +3415 7.298077583 ::1:49704 ::1:55733 1719835104 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3417 7.298239708 ::1:55733 ::1:49704 3395177069 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +3419 7.298405886 ::1:49704 ::1:55733 1719835136 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3421 7.298563480 ::1:55733 ::1:49704 3395177193 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +3423 7.298752785 ::1:49704 ::1:55733 1719835168 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3425 7.298881769 ::1:55733 ::1:49704 3395177311 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +3427 7.299041510 ::1:49704 ::1:55733 1719835200 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3429 7.299194098 ::1:55733 ::1:49704 3395177431 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3431 7.299353361 ::1:49704 ::1:55733 1719835232 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3433 7.299508095 ::1:55733 ::1:49704 3395177561 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3435 7.299668074 ::1:49704 ::1:55733 1719835264 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3437 7.299868345 ::1:55733 ::1:49704 3395177691 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +3439 7.300096989 ::1:49704 ::1:55733 1719835296 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3441 7.300266027 ::1:55733 ::1:49704 3395177833 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +3443 7.300445080 ::1:49704 ::1:55733 1719835328 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3445 7.300605297 ::1:55733 ::1:49704 3395177949 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3447 7.300771475 ::1:49704 ::1:55733 1719835360 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3449 7.300955772 ::1:55733 ::1:49704 3395178079 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +3451 7.301122189 ::1:49704 ::1:55733 1719835392 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3453 7.301280260 ::1:55733 ::1:49704 3395178207 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +3455 7.301445484 ::1:49704 ::1:55733 1719835424 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3457 7.301642895 ::1:55733 ::1:49704 3395178333 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +3459 7.301873922 ::1:49704 ::1:55733 1719835456 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3461 7.302073479 ::1:55733 ::1:49704 3395178459 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +3463 7.302250862 ::1:49704 ::1:55733 1719835488 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3465 7.302502155 ::1:55733 ::1:49704 3395178591 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3468 7.302702665 ::1:49704 ::1:55733 1719835520 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3470 7.302965641 ::1:55733 ::1:49704 3395178721 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +3472 7.303139687 ::1:49704 ::1:55733 1719835552 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3474 7.303334236 ::1:55733 ::1:49704 3395178859 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +3476 7.303506851 ::1:49704 ::1:55733 1719835584 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3478 7.303671598 ::1:55733 ::1:49704 3395178995 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +3480 7.303898335 ::1:49704 ::1:55733 1719835616 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3482 7.304185629 ::1:55733 ::1:49704 3395179127 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +3484 7.304378271 ::1:49704 ::1:55733 1719835648 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3486 7.304600477 ::1:55733 ::1:49704 3395179269 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K............ +3488 7.304872990 ::1:49704 ::1:55733 1719835680 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3494 7.344349146 ::1:55733 ::1:49704 3395179417 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K........~+z. +3496 7.344630003 ::1:49704 ::1:55733 1719835712 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3585 7.422796965 ::1:55733 ::1:49704 3395179707 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K........~+z. +3587 7.423092842 ::1:49704 ::1:55733 1719835740 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +6210 0.000000000 fe80::3608:256c:365:cc73:55765 fe80::3608:256c:365:cc73:55555 77064467 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +6240 0.086458445 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55765 2326288495 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +1514 0.000000000 fe80::3608:256c:365:cc73:55737 fe80::3608:256c:365:cc73:55555 2160420486 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +1533 0.072769642 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55737 1510950558 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +366 0.000000000 fe80::3608:256c:365:cc73:55730 fe80::3608:256c:365:cc73:55555 35020267 77 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +378 0.069701195 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55730 2444072404 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +1647 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148561360 1284 17030304ff0000000000000379156c782421bda49999cc868d8cde686d1fa18f ............y.lx$!.........hm....N..R?...=..._A. +1649 0.006485939 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088239662 54 170303003100000000000003d174e9db0234115c3bfb7556da1d6068cd25d0a5 ....1........t...4.\;.uV..`h.%.......s`./.4..... +1651 0.006942272 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148562644 105 1703030064000000000000037a635bc8b9037c0e60af3d559327e426c0c7195b ....d.......zc[...|.`.=U.'.&...[V...O.9...j}hO.. +1653 0.007987022 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088239716 264 170303010300000000000003d2d02b312144b7f6098afbee5f52c4518b6e0e7f ..............+1!D......_R.Q.n.......(....5..... +1655 0.008440733 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088239980 34 170303001d00000000000003d3e9bee89decb92b0c524bbdc7752638ae60eb27 ...................+.RK..u&8.`.'.s +3507 4.798222780 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148562749 1284 17030304ff000000000000037b7b811186f0c6815aa2a9c5b6be44f406d9efc5 ............{{......Z.....D......=.&9)_...\Y'..6 +3509 4.802900314 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240014 54 170303003100000000000003d4d8745b8d7d07fbcf4f785f7502b68171b90086 ....1.........t[.}...Ox_u...q......qdq......=D.. +3511 4.803326130 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148564033 117 1703030070000000000000037ce59126d2105808a45fa707fd50f5cf0e86f17f ....p.......|..&..X.._...P........b..S.C..$jF8.W +3513 4.805407524 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240068 173 17030300a800000000000003d55c2ffce367b8b227d224fedaee890fe9632081 .............\/..g..'.$......c .U.T...rp....%'.. +3515 4.806240797 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148564150 1284 17030304ff000000000000037d4ea6615d1e1cb95f905af260cba31441385fdb ............}N.a]..._.Z.`...A8_.v.f...pSi..y...9 +3519 4.810681343 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240241 54 170303003100000000000003d63f748aabe02288a10b78e0a75d5a0b121690ea ....1........?t..."...x..]Z.....$...z.k.....^J.. +3521 4.811092854 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148565434 117 1703030070000000000000037e2b94dabe4d5724a7fa25777567b650d7789815 ....p.......~+...MW$..%wug.P.x.....p....._..o[!. +3523 4.813380003 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240295 173 17030300a800000000000003d7086623c5be2f701079d4b5ad64deaff3c29324 ..............f#../p.y...d.....$X.QMk`[W...n...; +3555 4.821729898 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148565551 1285 1703030500000000000000037ffb303789d76fc8480ababdf717b4ea25e35223 ..............07..o.H.......%.R#S.# ......]...~. +3560 4.827428341 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240468 54 170303003100000000000003d82d1f12a62de5dbeb5d51eee4934e6f114c8533 ....1........-...-...]Q...No.L.3..k..m65PX.....M +3562 4.827878475 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148566836 130 170303007d0000000000000380eb9dafbb4a9fede23a04e21be416656834158f ....}............J...:.....eh4..i....a..&97Z...0 +3564 4.831391335 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240522 173 17030300a800000000000003d906666b153f159a9159195a433798fa655943d5 ..............fk.?...Y.ZC7..eYC.Z`7...R.stp.._.. +3566 4.832509756 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148566966 1285 170303050000000000000003811ea6dfc49fa05631d13776fa9f94a3db0b155c ...................V1.7v.......\..m7...3...%.>7F.. +1859 0.000000000 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044321762 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +1861 0.000284195 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044321813 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +1863 0.001715899 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815475 1 0a . +1865 0.003195286 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044321836 5 160100006e ....n +1867 0.003387451 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044321841 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +1869 0.004341125 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815476 5 160100010f ..... +1871 0.004538774 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815481 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +1873 0.005670309 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044321951 5 1601000079 ....y +1875 0.005901575 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044321956 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +1877 0.007182598 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815752 5 140100001d ..... +1879 0.007377625 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815757 29 a11b3019a0030a0100a312041001000000cb20ee33df6507e700000000 ..0............... .3.e...... +1881 0.008192539 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044322077 21 1100000001000000dbc6c7687dbc8f7b010000008c ...........h}..{..... +1883 0.008492947 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815786 21 1100000001000000880406dde0fea8bd0100000079 ....................y +1885 0.009080887 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044322098 1229 c90400000100000066255cdf4f319b9902000000de730f18c264952c0e16d72b ........f%\.O1.......s...d.,...+)..............O +1887 0.009567499 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323327 21 11000000010000004f5955366a8f368a030000000b ........OYU6j.6...... +1889 0.011869907 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815807 21 110000000100000013d290c642b4429002000000b2 ............B.B...... +7157 15.108679295 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323348 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +7159 15.108915329 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323399 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +7161 15.110512018 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815828 1 0a . +7165 15.111471891 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323422 5 160100006e ....n +7167 15.111700296 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323427 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +7169 15.112531424 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815829 5 160100010f ..... +7171 15.112710476 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727815834 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +7173 15.113434315 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323537 5 1601000079 ....y +7175 15.113544703 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323542 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +7177 15.114733696 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727816105 5 140100001d ..... +7179 15.114952087 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727816110 29 a11b3019a0030a0100a31204100100000088eb7722e1fbd5cc00000000 ..0................w"........ +7181 15.115585089 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323663 21 110000000100000003f522730ef89bbf01000000e1 .........."s......... +7183 15.115861893 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727816139 21 11000000010000009afd2926d0317cda0100000019 ..........)&.1|...... +7185 15.116298914 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044323684 1229 c9040000010000006877d14adfef9b1a02000000ac393558f0597a208390605e ........hw.J.........95X.Yz ..`^5{s":..q...9J.}. +7187 15.116742373 fe80::3608:256c:365:cc73:59621 fe80::3608:256c:365:cc73:808 4044324913 21 1100000001000000786f591194ac609c03000000f0 ........xoY...`...... +7189 15.119055748 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 727816160 21 11000000010000001d8cfcae6576c32b020000009b ............ev.+..... +2081 0.000000000 fe80::3608:256c:365:cc73:55743 fe80::3608:256c:365:cc73:55555 1704568048 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +2174 0.369456053 fe80::3608:256c:365:cc73:55743 fe80::3608:256c:365:cc73:55555 1704568253 508 000001fc000066eb000000000000000b00010000000002000000100007025343 ......f.......................SCHNEIDR......M.DE +2777 2.644746542 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55743 1282508582 1990 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1861..Content-T diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..42865a7 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..e97f2b9 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-__1_49704-to-__1_55733.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-__1_49704-to-__1_55733.bin new file mode 100644 index 0000000..6035a19 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-__1_49704-to-__1_55733.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-__1_55733-to-__1_49704.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-__1_55733-to-__1_49704.bin new file mode 100644 index 0000000..800aea0 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-__1_55733-to-__1_49704.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..27893f4 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55730.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55730.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55730.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55737.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55737.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55737.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55743.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55743.bin new file mode 100644 index 0000000..fb6e617 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55743.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55765.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55765.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55765.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55730-to-fe80__3608_256c_365_cc73_55555.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55730-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..189e721 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55730-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,3 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 + diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55737-to-fe80__3608_256c_365_cc73_55555.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55737-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55737-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55743-to-fe80__3608_256c_365_cc73_55555.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55743-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..b103835 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55743-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55765-to-fe80__3608_256c_365_cc73_55555.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55765-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_55765-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_59621-to-fe80__3608_256c_365_cc73_808.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_59621-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..09276e9 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_59621-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..c8699ad Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_59621.bin b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_59621.bin new file mode 100644 index 0000000..e0a3766 Binary files /dev/null and b/captures/014-loopback-subscribe-array-bracketed/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_59621.bin differ diff --git a/captures/015-loopback-subscribe-invalid/command.txt b/captures/015-loopback-subscribe-invalid/command.txt new file mode 100644 index 0000000..efe3406 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=subscribe --duration=6 --tag=NoSuchObject_999.NoSuchAttr --log=C:\Users\dohertj2\Desktop\mxaccess\captures\015-loopback-subscribe-invalid\harness.log --client=MxProtoTraceHarness-015-loopback-subscribe-invalid diff --git a/captures/015-loopback-subscribe-invalid/dcerpc-49704.tsv b/captures/015-loopback-subscribe-invalid/dcerpc-49704.tsv new file mode 100644 index 0000000..ca46d51 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/dcerpc-49704.tsv @@ -0,0 +1,430 @@ +628 1.813798400 16 11 2 0,1 4e0c90df-e39d-4164-a421-ace89484c602,4e0c90df-e39d-4164-a421-ace89484c602 116 0 Bind: call_id: 2, Fragment: Single, 2 context items: 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (32bit NDR), 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (6cb71c2c-9812-4540-0300-000000000000) +630 1.814237700 16 12 2 84 0 Bind_ack: call_id: 2, Fragment: Single, max_xmit: 5840 max_recv: 5840, 2 results: Acceptance, Negotiate ACK +632 1.814403700 16 0 2 0 0 40 0 Request: call_id: 2, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +634 1.814574700 16 2 2 0 0 44 0 Response: call_id: 2, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +636 1.814758200 16 14 3 1 1981974b-6bf7-46cb-9640-0260bbb551ba 72 0 Alter_context: call_id: 3, Fragment: Single, 1 context items: 1981974b-6bf7-46cb-9640-0260bbb551ba V1.0 (32bit NDR) +638 1.814888600 16 15 3 56 0 Alter_context_resp: call_id: 3, Fragment: Single, max_xmit: 5840 max_recv: 5840, 1 results: Acceptance +640 1.815010700 16 0 3 1 0 96 0 Request: call_id: 3, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +642 1.816465900 16 2 3 1 0 28 0 Response: call_id: 3, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +644 1.816598900 16 0 4 1 2 60 0 Request: call_id: 4, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +646 1.816762700 16 2 4 1 2 92 0 Response: call_id: 4, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +648 1.816985000 16 0 5 1 3 120 0 Request: call_id: 5, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +650 1.817175000 16 2 5 1 3 32 0 Response: call_id: 5, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +652 1.817314000 16 0 6 1 3 124 0 Request: call_id: 6, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +654 1.817517900 16 2 6 1 3 32 0 Response: call_id: 6, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +656 1.817651600 16 0 7 1 3 118 0 Request: call_id: 7, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +658 1.817801100 16 2 7 1 3 32 0 Response: call_id: 7, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +660 1.817934100 16 0 8 1 3 120 0 Request: call_id: 8, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +662 1.818103300 16 2 8 1 3 32 0 Response: call_id: 8, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +664 1.818278200 16 0 9 1 3 130 0 Request: call_id: 9, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +666 1.818491600 16 2 9 1 3 32 0 Response: call_id: 9, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +668 1.818626600 16 0 10 1 3 130 0 Request: call_id: 10, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +670 1.818777600 16 2 10 1 3 32 0 Response: call_id: 10, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +672 1.818909800 16 0 11 1 3 142 0 Request: call_id: 11, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +674 1.819061700 16 2 11 1 3 32 0 Response: call_id: 11, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +676 1.819194800 16 0 12 1 3 116 0 Request: call_id: 12, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +678 1.819344700 16 2 12 1 3 32 0 Response: call_id: 12, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +680 1.819501500 16 0 13 1 3 130 0 Request: call_id: 13, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +682 1.819653500 16 2 13 1 3 32 0 Response: call_id: 13, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +684 1.819787100 16 0 14 1 3 128 0 Request: call_id: 14, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +686 1.819938100 16 2 14 1 3 32 0 Response: call_id: 14, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +688 1.820071100 16 0 15 1 3 126 0 Request: call_id: 15, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +690 1.820218800 16 2 15 1 3 32 0 Response: call_id: 15, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +692 1.820754300 16 0 16 1 3 132 0 Request: call_id: 16, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +694 1.820900600 16 2 16 1 3 32 0 Response: call_id: 16, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +696 1.821080800 16 0 17 1 3 152 0 Request: call_id: 17, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +698 1.821231100 16 2 17 1 3 32 0 Response: call_id: 17, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +720 1.925304600 16 0 18 0 0 40 0 Request: call_id: 18, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +722 1.925560800 16 2 18 0 0 44 0 Response: call_id: 18, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +724 1.926038100 16 0 19 1 0 108 0 Request: call_id: 19, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +726 1.927847600 16 2 19 1 0 28 0 Response: call_id: 19, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +728 1.927998300 16 0 20 1 2 60 0 Request: call_id: 20, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +730 1.928215100 16 2 20 1 2 92 0 Response: call_id: 20, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +732 1.928437600 16 0 21 1 3 132 0 Request: call_id: 21, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +734 1.928660100 16 2 21 1 3 32 0 Response: call_id: 21, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +736 1.928831600 16 0 22 1 3 136 0 Request: call_id: 22, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +738 1.929019000 16 2 22 1 3 32 0 Response: call_id: 22, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +740 1.929156200 16 0 23 1 3 130 0 Request: call_id: 23, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +742 1.929307800 16 2 23 1 3 32 0 Response: call_id: 23, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +744 1.929441600 16 0 24 1 3 132 0 Request: call_id: 24, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +746 1.929591100 16 2 24 1 3 32 0 Response: call_id: 24, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +748 1.929729700 16 0 25 1 3 142 0 Request: call_id: 25, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +750 1.929934000 16 2 25 1 3 32 0 Response: call_id: 25, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +752 1.930082000 16 0 26 1 3 142 0 Request: call_id: 26, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +754 1.930231400 16 2 26 1 3 32 0 Response: call_id: 26, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +756 1.930366700 16 0 27 1 3 154 0 Request: call_id: 27, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +758 1.930513800 16 2 27 1 3 32 0 Response: call_id: 27, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +760 1.930713500 16 0 28 1 3 128 0 Request: call_id: 28, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +762 1.930859700 16 2 28 1 3 32 0 Response: call_id: 28, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +764 1.930995400 16 0 29 1 3 142 0 Request: call_id: 29, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +766 1.931141400 16 2 29 1 3 32 0 Response: call_id: 29, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +768 1.931277100 16 0 30 1 3 140 0 Request: call_id: 30, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +770 1.931422200 16 2 30 1 3 32 0 Response: call_id: 30, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +772 1.931557400 16 0 31 1 3 138 0 Request: call_id: 31, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +774 1.931701800 16 2 31 1 3 32 0 Response: call_id: 31, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +804 1.947906800 16 0 32 0 0 40 0 Request: call_id: 32, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +806 1.948043100 16 2 32 0 0 44 0 Response: call_id: 32, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +808 1.948234700 16 0 33 1 0 104 0 Request: call_id: 33, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +810 1.949904000 16 2 33 1 0 28 0 Response: call_id: 33, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +812 1.950059400 16 0 34 1 2 60 0 Request: call_id: 34, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +814 1.950226600 16 2 34 1 2 92 0 Response: call_id: 34, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +816 1.950433300 16 0 35 1 3 128 0 Request: call_id: 35, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +818 1.950808000 16 2 35 1 3 32 0 Response: call_id: 35, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +820 1.950972400 16 0 36 1 3 132 0 Request: call_id: 36, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +822 1.951145100 16 2 36 1 3 32 0 Response: call_id: 36, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +824 1.951271500 16 0 37 1 3 126 0 Request: call_id: 37, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +826 1.951483100 16 2 37 1 3 32 0 Response: call_id: 37, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +828 1.951640100 16 0 38 1 3 128 0 Request: call_id: 38, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +830 1.951933700 16 2 38 1 3 32 0 Response: call_id: 38, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +832 1.952068000 16 0 39 1 3 138 0 Request: call_id: 39, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +834 1.952283300 16 2 39 1 3 32 0 Response: call_id: 39, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +836 1.952428700 16 0 40 1 3 138 0 Request: call_id: 40, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +838 1.952633400 16 2 40 1 3 32 0 Response: call_id: 40, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +840 1.952774200 16 0 41 1 3 150 0 Request: call_id: 41, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +842 1.953033800 16 2 41 1 3 32 0 Response: call_id: 41, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +844 1.953304400 16 0 42 1 3 124 0 Request: call_id: 42, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +846 1.953489100 16 2 42 1 3 32 0 Response: call_id: 42, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +848 1.953632200 16 0 43 1 3 138 0 Request: call_id: 43, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +850 1.953848800 16 2 43 1 3 32 0 Response: call_id: 43, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +852 1.954014900 16 0 44 1 3 136 0 Request: call_id: 44, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +854 1.954217100 16 2 44 1 3 32 0 Response: call_id: 44, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +856 1.954360000 16 0 45 1 3 134 0 Request: call_id: 45, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +858 1.954593300 16 2 45 1 3 32 0 Response: call_id: 45, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +860 1.954779400 16 0 46 1 3 140 0 Request: call_id: 46, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +862 1.955066700 16 2 46 1 3 32 0 Response: call_id: 46, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +864 1.955205900 16 0 47 1 3 146 0 Request: call_id: 47, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +866 1.955368400 16 2 47 1 3 32 0 Response: call_id: 47, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +885 2.055330200 16 0 48 0 0 40 0 Request: call_id: 48, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +887 2.055559200 16 2 48 0 0 44 0 Response: call_id: 48, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +889 2.055730800 16 0 49 1 0 112 0 Request: call_id: 49, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +891 2.057565700 16 2 49 1 0 28 0 Response: call_id: 49, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +893 2.057704500 16 0 50 1 2 60 0 Request: call_id: 50, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +895 2.057873500 16 2 50 1 2 92 0 Response: call_id: 50, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +897 2.058095800 16 0 51 1 3 136 0 Request: call_id: 51, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +899 2.058343800 16 2 51 1 3 32 0 Response: call_id: 51, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +901 2.058481900 16 0 52 1 3 140 0 Request: call_id: 52, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +903 2.058649400 16 2 52 1 3 32 0 Response: call_id: 52, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +905 2.058783600 16 0 53 1 3 134 0 Request: call_id: 53, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +907 2.058948300 16 2 53 1 3 32 0 Response: call_id: 53, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +909 2.059080400 16 0 54 1 3 136 0 Request: call_id: 54, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +911 2.059272000 16 2 54 1 3 32 0 Response: call_id: 54, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +913 2.059397300 16 0 55 1 3 146 0 Request: call_id: 55, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +915 2.059561900 16 2 55 1 3 32 0 Response: call_id: 55, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +917 2.059695300 16 0 56 1 3 146 0 Request: call_id: 56, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +919 2.059860500 16 2 56 1 3 32 0 Response: call_id: 56, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +921 2.059994700 16 0 57 1 3 158 0 Request: call_id: 57, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +923 2.060185500 16 2 57 1 3 32 0 Response: call_id: 57, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +925 2.060309200 16 0 58 1 3 132 0 Request: call_id: 58, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +927 2.060471300 16 2 58 1 3 32 0 Response: call_id: 58, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +929 2.060604500 16 0 59 1 3 146 0 Request: call_id: 59, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +931 2.060767100 16 2 59 1 3 32 0 Response: call_id: 59, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +933 2.060899600 16 0 60 1 3 144 0 Request: call_id: 60, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +935 2.061061900 16 2 60 1 3 32 0 Response: call_id: 60, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +937 2.061218400 16 0 61 1 3 142 0 Request: call_id: 61, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +939 2.061379400 16 2 61 1 3 32 0 Response: call_id: 61, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +941 2.061561100 16 0 62 1 3 148 0 Request: call_id: 62, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +943 2.061724100 16 2 62 1 3 32 0 Response: call_id: 62, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +945 2.061866000 16 0 63 1 3 154 0 Request: call_id: 63, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +947 2.062029100 16 2 63 1 3 32 0 Response: call_id: 63, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +988 2.179417300 16 0 64 0 0 40 0 Request: call_id: 64, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +990 2.179688600 16 2 64 0 0 44 0 Response: call_id: 64, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +992 2.179856700 16 0 65 1 0 92 0 Request: call_id: 65, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +994 2.181584900 16 2 65 1 0 28 0 Response: call_id: 65, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +996 2.181731600 16 0 66 1 2 60 0 Request: call_id: 66, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +998 2.181903300 16 2 66 1 2 92 0 Response: call_id: 66, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1000 2.182111900 16 0 67 1 3 116 0 Request: call_id: 67, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1002 2.182350700 16 2 67 1 3 32 0 Response: call_id: 67, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1004 2.182484600 16 0 68 1 3 120 0 Request: call_id: 68, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1006 2.182651300 16 2 68 1 3 32 0 Response: call_id: 68, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1008 2.182781800 16 0 69 1 3 114 0 Request: call_id: 69, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1010 2.182947400 16 2 69 1 3 32 0 Response: call_id: 69, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1012 2.183074500 16 0 70 1 3 116 0 Request: call_id: 70, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1014 2.183236100 16 2 70 1 3 32 0 Response: call_id: 70, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1016 2.183395200 16 0 71 1 3 126 0 Request: call_id: 71, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1018 2.183551300 16 2 71 1 3 32 0 Response: call_id: 71, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1020 2.183686300 16 0 72 1 3 126 0 Request: call_id: 72, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1022 2.183848000 16 2 72 1 3 32 0 Response: call_id: 72, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1024 2.184054200 16 0 73 1 3 138 0 Request: call_id: 73, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1026 2.184215500 16 2 73 1 3 32 0 Response: call_id: 73, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1028 2.184348600 16 0 74 1 3 112 0 Request: call_id: 74, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1030 2.184513400 16 2 74 1 3 32 0 Response: call_id: 74, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1032 2.184641500 16 0 75 1 3 126 0 Request: call_id: 75, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1034 2.184801100 16 2 75 1 3 32 0 Response: call_id: 75, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1036 2.184929300 16 0 76 1 3 124 0 Request: call_id: 76, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1038 2.185089800 16 2 76 1 3 32 0 Response: call_id: 76, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1040 2.185218300 16 0 77 1 3 122 0 Request: call_id: 77, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1042 2.185381700 16 2 77 1 3 32 0 Response: call_id: 77, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1044 2.185557800 16 0 78 1 3 128 0 Request: call_id: 78, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1046 2.185720500 16 2 78 1 3 32 0 Response: call_id: 78, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1048 2.185860700 16 0 79 1 3 134 0 Request: call_id: 79, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1050 2.186025200 16 2 79 1 3 32 0 Response: call_id: 79, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1052 2.186164600 16 0 80 1 3 130 0 Request: call_id: 80, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1054 2.186326200 16 2 80 1 3 32 0 Response: call_id: 80, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1056 2.186463700 16 0 81 1 3 128 0 Request: call_id: 81, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1058 2.186627300 16 2 81 1 3 32 0 Response: call_id: 81, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2887 8.442080900 16 0 82 0 0 40 0 Request: call_id: 82, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2889 8.442311700 16 2 82 0 0 44 0 Response: call_id: 82, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2891 8.442491000 16 0 83 1 0 100 0 Request: call_id: 83, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2893 8.444307800 16 2 83 1 0 28 0 Response: call_id: 83, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2895 8.444517300 16 0 84 1 2 60 0 Request: call_id: 84, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2897 8.444699800 16 2 84 1 2 92 0 Response: call_id: 84, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2899 8.444941500 16 0 85 1 3 124 0 Request: call_id: 85, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2901 8.445201400 16 2 85 1 3 32 0 Response: call_id: 85, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2903 8.445355200 16 0 86 1 3 128 0 Request: call_id: 86, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2905 8.445533000 16 2 86 1 3 32 0 Response: call_id: 86, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2907 8.445675800 16 0 87 1 3 122 0 Request: call_id: 87, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2909 8.445847400 16 2 87 1 3 32 0 Response: call_id: 87, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2911 8.445989000 16 0 88 1 3 124 0 Request: call_id: 88, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2913 8.446157600 16 2 88 1 3 32 0 Response: call_id: 88, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2915 8.446298700 16 0 89 1 3 134 0 Request: call_id: 89, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2917 8.446467800 16 2 89 1 3 32 0 Response: call_id: 89, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2919 8.446609200 16 0 90 1 3 134 0 Request: call_id: 90, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2921 8.446804300 16 2 90 1 3 32 0 Response: call_id: 90, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2923 8.446937800 16 0 91 1 3 146 0 Request: call_id: 91, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2925 8.447106300 16 2 91 1 3 32 0 Response: call_id: 91, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2927 8.447245900 16 0 92 1 3 120 0 Request: call_id: 92, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2929 8.447414200 16 2 92 1 3 32 0 Response: call_id: 92, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2931 8.447552900 16 0 93 1 3 134 0 Request: call_id: 93, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2933 8.447718300 16 2 93 1 3 32 0 Response: call_id: 93, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2935 8.447898700 16 0 94 1 3 132 0 Request: call_id: 94, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2937 8.448076400 16 2 94 1 3 32 0 Response: call_id: 94, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2939 8.448225400 16 0 95 1 3 130 0 Request: call_id: 95, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2941 8.448397900 16 2 95 1 3 32 0 Response: call_id: 95, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2943 8.448585300 16 0 96 1 3 144 0 Request: call_id: 96, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2945 8.448780300 16 2 96 1 3 32 0 Response: call_id: 96, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2947 8.448926000 16 0 97 1 3 148 0 Request: call_id: 97, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2949 8.449149400 16 2 97 1 3 32 0 Response: call_id: 97, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2951 8.449306500 16 0 98 1 3 146 0 Request: call_id: 98, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2953 8.449476400 16 2 98 1 3 32 0 Response: call_id: 98, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2956 8.449690200 16 0 99 1 3 158 0 Request: call_id: 99, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2961 8.449929300 16 2 99 1 3 32 0 Response: call_id: 99, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2987 8.522651100 16 0 100 0 0 40 0 Request: call_id: 100, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2989 8.522886100 16 2 100 0 0 44 0 Response: call_id: 100, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2991 8.523051900 16 0 101 1 0 84 0 Request: call_id: 101, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2993 8.524723400 16 2 101 1 0 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2995 8.524862900 16 0 102 1 2 60 0 Request: call_id: 102, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2997 8.525125400 16 2 102 1 2 92 0 Response: call_id: 102, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2999 8.525354600 16 0 103 1 3 108 0 Request: call_id: 103, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3001 8.525546800 16 2 103 1 3 32 0 Response: call_id: 103, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3003 8.525706400 16 0 104 1 3 112 0 Request: call_id: 104, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3005 8.525953600 16 2 104 1 3 32 0 Response: call_id: 104, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3007 8.526098600 16 0 105 1 3 106 0 Request: call_id: 105, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3009 8.526254100 16 2 105 1 3 32 0 Response: call_id: 105, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3011 8.526432000 16 0 106 1 3 108 0 Request: call_id: 106, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3013 8.526598400 16 2 106 1 3 32 0 Response: call_id: 106, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3015 8.526829500 16 0 107 1 3 118 0 Request: call_id: 107, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3017 8.526990600 16 2 107 1 3 32 0 Response: call_id: 107, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3019 8.527169200 16 0 108 1 3 118 0 Request: call_id: 108, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3021 8.527323400 16 2 108 1 3 32 0 Response: call_id: 108, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3023 8.527524000 16 0 109 1 3 130 0 Request: call_id: 109, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3025 8.527685500 16 2 109 1 3 32 0 Response: call_id: 109, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3027 8.527853300 16 0 110 1 3 104 0 Request: call_id: 110, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3029 8.528001600 16 2 110 1 3 32 0 Response: call_id: 110, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3031 8.528160000 16 0 111 1 3 118 0 Request: call_id: 111, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3033 8.528333700 16 2 111 1 3 32 0 Response: call_id: 111, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3035 8.528478100 16 0 112 1 3 116 0 Request: call_id: 112, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3037 8.528628800 16 2 112 1 3 32 0 Response: call_id: 112, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3039 8.528771300 16 0 113 1 3 114 0 Request: call_id: 113, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3041 8.528990400 16 2 113 1 3 32 0 Response: call_id: 113, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3043 8.529509400 16 0 114 1 3 128 0 Request: call_id: 114, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3045 8.529662600 16 2 114 1 3 32 0 Response: call_id: 114, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3047 8.529865500 16 0 115 1 3 120 0 Request: call_id: 115, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3049 8.530013100 16 2 115 1 3 32 0 Response: call_id: 115, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3051 8.530188600 16 0 116 1 3 120 0 Request: call_id: 116, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3053 8.530340000 16 2 116 1 3 32 0 Response: call_id: 116, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3055 8.530517700 16 0 117 1 3 122 0 Request: call_id: 117, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3057 8.530666600 16 2 117 1 3 32 0 Response: call_id: 117, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3059 8.530866200 16 0 118 1 3 134 0 Request: call_id: 118, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3061 8.531008600 16 2 118 1 3 32 0 Response: call_id: 118, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3063 8.531209900 16 0 119 1 3 132 0 Request: call_id: 119, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3065 8.531361300 16 2 119 1 3 32 0 Response: call_id: 119, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3067 8.531539100 16 0 120 1 3 130 0 Request: call_id: 120, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3069 8.531688100 16 2 120 1 3 32 0 Response: call_id: 120, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3071 8.531890200 16 0 121 1 3 138 0 Request: call_id: 121, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3073 8.532038300 16 2 121 1 3 32 0 Response: call_id: 121, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3075 8.532215000 16 0 122 1 3 144 0 Request: call_id: 122, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3077 8.532364200 16 2 122 1 3 32 0 Response: call_id: 122, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3079 8.532559100 16 0 123 1 3 144 0 Request: call_id: 123, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3081 8.532709500 16 2 123 1 3 32 0 Response: call_id: 123, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3083 8.532979600 16 0 124 1 3 116 0 Request: call_id: 124, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3085 8.533139400 16 2 124 1 3 32 0 Response: call_id: 124, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3087 8.533359500 16 0 125 1 3 130 0 Request: call_id: 125, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3089 8.533511300 16 2 125 1 3 32 0 Response: call_id: 125, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3091 8.533691300 16 0 126 1 3 138 0 Request: call_id: 126, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3093 8.533891400 16 2 126 1 3 32 0 Response: call_id: 126, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3095 8.534066700 16 0 127 1 3 130 0 Request: call_id: 127, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3097 8.534216400 16 2 127 1 3 32 0 Response: call_id: 127, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3099 8.534390400 16 0 128 1 3 122 0 Request: call_id: 128, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3101 8.534539700 16 2 128 1 3 32 0 Response: call_id: 128, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3103 8.534713000 16 0 129 1 3 122 0 Request: call_id: 129, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3105 8.534914200 16 2 129 1 3 32 0 Response: call_id: 129, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3107 8.535091700 16 0 130 1 3 134 0 Request: call_id: 130, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3109 8.535241900 16 2 130 1 3 32 0 Response: call_id: 130, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3111 8.535420800 16 0 131 1 3 128 0 Request: call_id: 131, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3113 8.535571500 16 2 131 1 3 32 0 Response: call_id: 131, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3115 8.535785000 16 0 132 1 3 124 0 Request: call_id: 132, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3117 8.535933800 16 2 132 1 3 32 0 Response: call_id: 132, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3119 8.567231600 16 0 133 1 5 516 0 Request: call_id: 133, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3121 8.567462600 16 2 133 1 5 28 0 Response: call_id: 133, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3141 8.601985300 16 0 134 0 0 40 0 Request: call_id: 134, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3143 8.602158000 16 2 134 0 0 44 0 Response: call_id: 134, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3145 8.602342600 16 0 135 1 0 112 0 Request: call_id: 135, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3147 8.604034000 16 2 135 1 0 28 0 Response: call_id: 135, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3149 8.604181600 16 0 136 1 2 60 0 Request: call_id: 136, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3151 8.604347500 16 2 136 1 2 92 0 Response: call_id: 136, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3153 8.604597100 16 0 137 1 3 136 0 Request: call_id: 137, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3155 8.604774200 16 2 137 1 3 32 0 Response: call_id: 137, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3157 8.604929900 16 0 138 1 3 140 0 Request: call_id: 138, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3159 8.605087500 16 2 138 1 3 32 0 Response: call_id: 138, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3161 8.605235800 16 0 139 1 3 134 0 Request: call_id: 139, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3163 8.605393200 16 2 139 1 3 32 0 Response: call_id: 139, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3165 8.605538300 16 0 140 1 3 136 0 Request: call_id: 140, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3167 8.605691800 16 2 140 1 3 32 0 Response: call_id: 140, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3169 8.605862300 16 0 141 1 3 146 0 Request: call_id: 141, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3171 8.606132100 16 2 141 1 3 32 0 Response: call_id: 141, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3173 8.606297700 16 0 142 1 3 146 0 Request: call_id: 142, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3175 8.606475900 16 2 142 1 3 32 0 Response: call_id: 142, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3177 8.606624800 16 0 143 1 3 158 0 Request: call_id: 143, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3179 8.606780800 16 2 143 1 3 32 0 Response: call_id: 143, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3181 8.607439100 16 0 144 1 3 132 0 Request: call_id: 144, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3183 8.607596400 16 2 144 1 3 32 0 Response: call_id: 144, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3185 8.607744700 16 0 145 1 3 146 0 Request: call_id: 145, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3187 8.607893100 16 2 145 1 3 32 0 Response: call_id: 145, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3189 8.608043200 16 0 146 1 3 144 0 Request: call_id: 146, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3191 8.608210500 16 2 146 1 3 32 0 Response: call_id: 146, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3193 8.608358600 16 0 147 1 3 142 0 Request: call_id: 147, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3195 8.608513100 16 2 147 1 3 32 0 Response: call_id: 147, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3197 8.608705800 16 0 148 1 3 160 0 Request: call_id: 148, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3199 8.608882900 16 2 148 1 3 32 0 Response: call_id: 148, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3201 8.609035500 16 0 149 1 3 156 0 Request: call_id: 149, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3203 8.609190300 16 2 149 1 3 32 0 Response: call_id: 149, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3205 8.609357400 16 0 150 1 3 154 0 Request: call_id: 150, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3207 8.609511200 16 2 150 1 3 32 0 Response: call_id: 150, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3209 8.609687400 16 0 151 1 3 146 0 Request: call_id: 151, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3211 8.609866500 16 2 151 1 3 32 0 Response: call_id: 151, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3213 8.610016900 16 0 152 1 3 154 0 Request: call_id: 152, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3215 8.610173700 16 2 152 1 3 32 0 Response: call_id: 152, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3217 8.610338200 16 0 153 1 3 150 0 Request: call_id: 153, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3219 8.610493600 16 2 153 1 3 32 0 Response: call_id: 153, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3221 8.610646800 16 0 154 1 3 152 0 Request: call_id: 154, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3223 8.610830200 16 2 154 1 3 32 0 Response: call_id: 154, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3225 8.610984600 16 0 155 1 3 140 0 Request: call_id: 155, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3227 8.611138000 16 2 155 1 3 32 0 Response: call_id: 155, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3229 8.611294800 16 0 156 1 3 148 0 Request: call_id: 156, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3231 8.611448100 16 2 156 1 3 32 0 Response: call_id: 156, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3233 8.611601700 16 0 157 1 3 162 0 Request: call_id: 157, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3235 8.611781800 16 2 157 1 3 32 0 Response: call_id: 157, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3237 8.611937400 16 0 158 1 3 172 0 Request: call_id: 158, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3239 8.612089000 16 2 158 1 3 32 0 Response: call_id: 158, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3241 8.612241700 16 0 159 1 3 144 0 Request: call_id: 159, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3243 8.612428100 16 2 159 1 3 32 0 Response: call_id: 159, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3249 8.619966100 16 0 160 0 0 40 0 Request: call_id: 160, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3251 8.620125900 16 2 160 0 0 44 0 Response: call_id: 160, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3253 8.620301300 16 0 161 1 0 128 0 Request: call_id: 161, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3255 8.621908500 16 2 161 1 0 28 0 Response: call_id: 161, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3257 8.622056400 16 0 162 1 2 60 0 Request: call_id: 162, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3260 8.622232000 16 2 162 1 2 92 0 Response: call_id: 162, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3262 8.622459000 16 0 163 1 3 152 0 Request: call_id: 163, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3264 8.622672900 16 2 163 1 3 32 0 Response: call_id: 163, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3266 8.622846600 16 0 164 1 3 156 0 Request: call_id: 164, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3268 8.623015700 16 2 164 1 3 32 0 Response: call_id: 164, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3270 8.623168100 16 0 165 1 3 150 0 Request: call_id: 165, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3272 8.623332500 16 2 165 1 3 32 0 Response: call_id: 165, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3274 8.623483700 16 0 166 1 3 152 0 Request: call_id: 166, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3276 8.623647300 16 2 166 1 3 32 0 Response: call_id: 166, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3278 8.623852700 16 0 167 1 3 162 0 Request: call_id: 167, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3280 8.624012900 16 2 167 1 3 32 0 Response: call_id: 167, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3282 8.624164000 16 0 168 1 3 162 0 Request: call_id: 168, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3284 8.624327300 16 2 168 1 3 32 0 Response: call_id: 168, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3286 8.624478500 16 0 169 1 3 174 0 Request: call_id: 169, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3288 8.624639000 16 2 169 1 3 32 0 Response: call_id: 169, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3290 8.624813900 16 0 170 1 3 148 0 Request: call_id: 170, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3292 8.624972800 16 2 170 1 3 32 0 Response: call_id: 170, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3294 8.625128200 16 0 171 1 3 162 0 Request: call_id: 171, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3296 8.625293000 16 2 171 1 3 32 0 Response: call_id: 171, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3298 8.625456700 16 0 172 1 3 160 0 Request: call_id: 172, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3300 8.625634000 16 2 172 1 3 32 0 Response: call_id: 172, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3302 8.625810200 16 0 173 1 3 158 0 Request: call_id: 173, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3304 8.625969100 16 2 173 1 3 32 0 Response: call_id: 173, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3306 8.626195800 16 0 174 1 3 170 0 Request: call_id: 174, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3308 8.626363100 16 2 174 1 3 32 0 Response: call_id: 174, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3310 8.626523600 16 0 175 1 3 182 0 Request: call_id: 175, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3312 8.626684700 16 2 175 1 3 32 0 Response: call_id: 175, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3318 8.632601900 16 0 176 0 0 40 0 Request: call_id: 176, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3320 8.632805600 16 2 176 0 0 44 0 Response: call_id: 176, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3322 8.632997600 16 0 177 1 0 96 0 Request: call_id: 177, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3336 8.634553500 16 2 177 1 0 28 0 Response: call_id: 177, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3338 8.634762400 16 0 178 1 2 60 0 Request: call_id: 178, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3340 8.634968600 16 2 178 1 2 92 0 Response: call_id: 178, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3344 8.635195200 16 0 179 1 3 120 0 Request: call_id: 179, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3348 8.635365400 16 2 179 1 3 32 0 Response: call_id: 179, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3351 8.635522900 16 0 180 1 3 124 0 Request: call_id: 180, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3354 8.635681600 16 2 180 1 3 32 0 Response: call_id: 180, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3356 8.635889100 16 0 181 1 3 118 0 Request: call_id: 181, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3358 8.636047100 16 2 181 1 3 32 0 Response: call_id: 181, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3360 8.636217500 16 0 182 1 3 120 0 Request: call_id: 182, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3362 8.636383200 16 2 182 1 3 32 0 Response: call_id: 182, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3366 8.636551600 16 0 183 1 3 130 0 Request: call_id: 183, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3370 8.636711000 16 2 183 1 3 32 0 Response: call_id: 183, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3372 8.636940200 16 0 184 1 3 130 0 Request: call_id: 184, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3376 8.637096500 16 2 184 1 3 32 0 Response: call_id: 184, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3378 8.637247100 16 0 185 1 3 142 0 Request: call_id: 185, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3382 8.637439600 16 2 185 1 3 32 0 Response: call_id: 185, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3386 8.637653100 16 0 186 1 3 116 0 Request: call_id: 186, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3389 8.637815600 16 2 186 1 3 32 0 Response: call_id: 186, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3392 8.637967300 16 0 187 1 3 130 0 Request: call_id: 187, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3394 8.638140600 16 2 187 1 3 32 0 Response: call_id: 187, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3396 8.638294000 16 0 188 1 3 128 0 Request: call_id: 188, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3398 8.638452400 16 2 188 1 3 32 0 Response: call_id: 188, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3400 8.638603700 16 0 189 1 3 126 0 Request: call_id: 189, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3402 8.638785700 16 2 189 1 3 32 0 Response: call_id: 189, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3404 8.638973800 16 0 190 1 3 126 0 Request: call_id: 190, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3406 8.639132900 16 2 190 1 3 32 0 Response: call_id: 190, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3408 8.639292000 16 0 191 1 3 132 0 Request: call_id: 191, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3410 8.639449500 16 2 191 1 3 32 0 Response: call_id: 191, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3412 8.639608100 16 0 192 1 3 130 0 Request: call_id: 192, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3414 8.639789900 16 2 192 1 3 32 0 Response: call_id: 192, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3416 8.639924900 16 0 193 1 3 138 0 Request: call_id: 193, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3418 8.640084100 16 2 193 1 3 32 0 Response: call_id: 193, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3420 8.640241000 16 0 194 1 3 136 0 Request: call_id: 194, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3422 8.640397200 16 2 194 1 3 32 0 Response: call_id: 194, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3424 8.640553100 16 0 195 1 3 132 0 Request: call_id: 195, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3426 8.640708600 16 2 195 1 3 32 0 Response: call_id: 195, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3428 8.640869900 16 0 196 1 3 142 0 Request: call_id: 196, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3430 8.641024300 16 2 196 1 3 32 0 Response: call_id: 196, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3432 8.641181600 16 0 197 1 3 148 0 Request: call_id: 197, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3434 8.641338600 16 2 197 1 3 32 0 Response: call_id: 197, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3440 8.676588100 16 0 198 1 5 290 0 Request: call_id: 198, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3442 8.676916900 16 2 198 1 5 28 0 Response: call_id: 198, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3460 8.746637500 16 0 199 1 5 206 0 Request: call_id: 199, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3462 8.746923400 16 2 199 1 5 28 0 Response: call_id: 199, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3506 8.900501900 16 0 200 0 0 40 0 Request: call_id: 200, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3508 8.900714300 16 2 200 0 0 44 0 Response: call_id: 200, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3510 8.900895600 16 0 201 1 0 104 0 Request: call_id: 201, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3512 8.902754000 16 2 201 1 0 28 0 Response: call_id: 201, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3514 8.902900700 16 0 202 1 2 60 0 Request: call_id: 202, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3516 8.903136400 16 2 202 1 2 92 0 Response: call_id: 202, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3518 8.903382300 16 0 203 1 3 128 0 Request: call_id: 203, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3520 8.903671200 16 2 203 1 3 32 0 Response: call_id: 203, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3522 8.903842100 16 0 204 1 3 132 0 Request: call_id: 204, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3524 8.904009300 16 2 204 1 3 32 0 Response: call_id: 204, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3526 8.904154200 16 0 205 1 3 126 0 Request: call_id: 205, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3528 8.904332500 16 2 205 1 3 32 0 Response: call_id: 205, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3530 8.904558500 16 0 206 1 3 128 0 Request: call_id: 206, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3532 8.904724200 16 2 206 1 3 32 0 Response: call_id: 206, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3534 8.904868600 16 0 207 1 3 138 0 Request: call_id: 207, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3536 8.905028800 16 2 207 1 3 32 0 Response: call_id: 207, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3538 8.905172200 16 0 208 1 3 138 0 Request: call_id: 208, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3540 8.905331500 16 2 208 1 3 32 0 Response: call_id: 208, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3542 8.905528000 16 0 209 1 3 150 0 Request: call_id: 209, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3544 8.905702800 16 2 209 1 3 32 0 Response: call_id: 209, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3546 8.905848800 16 0 210 1 3 124 0 Request: call_id: 210, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3548 8.906008300 16 2 210 1 3 32 0 Response: call_id: 210, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3550 8.906151300 16 0 211 1 3 138 0 Request: call_id: 211, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3552 8.906310100 16 2 211 1 3 32 0 Response: call_id: 211, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3554 8.906474700 16 0 212 1 3 136 0 Request: call_id: 212, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3556 8.906631800 16 2 212 1 3 32 0 Response: call_id: 212, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3558 8.906774200 16 0 213 1 3 134 0 Request: call_id: 213, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3560 8.906932200 16 2 213 1 3 32 0 Response: call_id: 213, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +5273 14.843992600 46 0 96 1 5 242 0 Request: call_id: 96, Fragment: Single, opnum: 5, Ctx: 1 +5275 14.844303800 46 2 96 1 28 0 Response: call_id: 96, Fragment: Single, Ctx: 1 diff --git a/captures/015-loopback-subscribe-invalid/dumpcap.stderr.txt b/captures/015-loopback-subscribe-invalid/dumpcap.stderr.txt new file mode 100644 index 0000000..dceb7ae --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\015-loopback-subscribe-invalid\loopback.pcapng diff --git a/captures/015-loopback-subscribe-invalid/dumpcap.stdout.txt b/captures/015-loopback-subscribe-invalid/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/015-loopback-subscribe-invalid/exit.txt b/captures/015-loopback-subscribe-invalid/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/015-loopback-subscribe-invalid/harness.log b/captures/015-loopback-subscribe-invalid/harness.log new file mode 100644 index 0000000..5e008ca --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/harness.log @@ -0,0 +1,15 @@ +2026-04-25T05:13:22.5889302+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-015-loopback-subscribe-invalid","Tags":["NoSuchObject_999.NoSuchAttr"],"WriteType":"string","WriteValue":"","UserId":0,"WriteDelayMilliseconds":750,"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:13:29.2625634+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-015-loopback-subscribe-invalid"} +2026-04-25T05:13:29.6005494+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:13:29.6016539+00:00 mx.additem.begin {"Tag":"NoSuchObject_999.NoSuchAttr"} +2026-04-25T05:13:29.6034541+00:00 mx.additem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T05:13:29.6034541+00:00 mx.advise-supervisory.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T05:13:29.6053958+00:00 mx.advise-supervisory.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T05:13:29.9788678+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"null","Value":null},"Quality":0,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:13:29.962 AM"},"Status":[{"Success":0,"Category":"MxCategoryConfigurationError","Source":"MxSourceRequestingLmx","Detail":6}]} +2026-04-25T05:13:35.6501873+00:00 mx.unadvise.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T05:13:35.6511413+00:00 mx.unadvise.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T05:13:35.6511413+00:00 mx.removeitem.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T05:13:35.6511413+00:00 mx.removeitem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T05:13:35.6511413+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:13:39.6330535+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:13:39.6381119+00:00 harness.stop {} diff --git a/captures/015-loopback-subscribe-invalid/loopback.pcapng b/captures/015-loopback-subscribe-invalid/loopback.pcapng new file mode 100644 index 0000000..18a8a88 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/loopback.pcapng differ diff --git a/captures/015-loopback-subscribe-invalid/nmx-conversations.tsv b/captures/015-loopback-subscribe-invalid/nmx-conversations.tsv new file mode 100644 index 0000000..ee9b18c --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/nmx-conversations.tsv @@ -0,0 +1,6 @@ +capture selected_a selected_b payload_packets payload_bytes +C:\Users\dohertj2\Desktop\mxaccess\captures\015-loopback-subscribe-invalid\loopback.pcapng ::1:49704 ::1:55802 428 34918 + +conversation_a conversation_b payload_packets payload_bytes +::1:49704 ::1:55802 428 34918 +::1:49704 ::1:49829 2 270 diff --git a/captures/015-loopback-subscribe-invalid/nmx-payload-packets.tsv b/captures/015-loopback-subscribe-invalid/nmx-payload-packets.tsv new file mode 100644 index 0000000..62b081f --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/nmx-payload-packets.tsv @@ -0,0 +1,429 @@ +frame time_relative from_service src sport dst dport seq ack payload_len hex_prefix ascii_preview +628 0.000000000 0 ::1 55802 ::1 49704 2827700310 362118423 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +630 0.000439405 1 ::1 49704 ::1 55802 362118423 2827700426 84 05000c03100000005400000002000000d016d016b5b900000600343937303400 ........T.................49704..........]...... +632 0.000605345 0 ::1 55802 ::1 49704 2827700426 362118507 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +634 0.000776291 1 ::1 49704 ::1 55802 362118507 2827700466 44 05000203100000002c000000020000001400000000000000000000008dba9804 ........,.......................i6.J.O.q_..y +636 0.000959873 0 ::1 55802 ::1 49704 2827700466 362118551 72 05000e03100000004800000003000000d016d016b5b900000100000001000100 ........H.......................K....k.F.@.`..Q. +638 0.001090288 1 ::1 49704 ::1 55802 362118551 2827700538 56 05000f03100000003800000003000000d016d016b5b900000000000001000000 ........8............................].......... +640 0.001212358 0 ::1 55802 ::1 49704 2827700538 362118607 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +642 0.002667427 1 ::1 49704 ::1 55802 362118607 2827700634 28 05000203100000001c00000003000000040000000100000001000000 ............................ +644 0.002800465 0 ::1 55802 ::1 49704 2827700634 362118635 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +646 0.002964258 1 ::1 49704 ::1 55802 362118635 2827700694 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +648 0.003186703 0 ::1 55802 ::1 49704 2827700694 362118727 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +650 0.003376484 1 ::1 49704 ::1 55802 362118727 2827700814 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +652 0.003515482 0 ::1 55802 ::1 49704 2827700814 362118759 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +654 0.003719568 1 ::1 49704 ::1 55802 362118759 2827700938 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +656 0.003853083 0 ::1 55802 ::1 49704 2827700938 362118791 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +658 0.004002810 1 ::1 49704 ::1 55802 362118791 2827701056 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +660 0.004135609 0 ::1 55802 ::1 49704 2827701056 362118823 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +662 0.004304886 1 ::1 49704 ::1 55802 362118823 2827701176 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +664 0.004479885 0 ::1 55802 ::1 49704 2827701176 362118855 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +666 0.004693270 1 ::1 49704 ::1 55802 362118855 2827701306 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +668 0.004828215 0 ::1 55802 ::1 49704 2827701306 362118887 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +670 0.004979134 1 ::1 49704 ::1 55802 362118887 2827701436 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +672 0.005111456 0 ::1 55802 ::1 49704 2827701436 362118919 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +674 0.005263329 1 ::1 49704 ::1 55802 362118919 2827701578 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +676 0.005396366 0 ::1 55802 ::1 49704 2827701578 362118951 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +678 0.005546331 1 ::1 49704 ::1 55802 362118951 2827701694 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +680 0.005703211 0 ::1 55802 ::1 49704 2827701694 362118983 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +682 0.005855083 1 ::1 49704 ::1 55802 362118983 2827701824 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +684 0.005988598 0 ::1 55802 ::1 49704 2827701824 362119015 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +686 0.006139755 1 ::1 49704 ::1 55802 362119015 2827701952 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +688 0.006272793 0 ::1 55802 ::1 49704 2827701952 362119047 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +690 0.006420374 1 ::1 49704 ::1 55802 362119047 2827702078 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +692 0.006955862 0 ::1 55802 ::1 49704 2827702078 362119079 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +694 0.007102251 1 ::1 49704 ::1 55802 362119079 2827702210 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +696 0.007282495 0 ::1 55802 ::1 49704 2827702210 362119111 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +698 0.007432699 1 ::1 49704 ::1 55802 362119111 2827702362 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +720 0.111506224 0 ::1 55802 ::1 49704 2827702362 362119143 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +722 0.111762285 1 ::1 49704 ::1 55802 362119143 2827702402 44 05000203100000002c00000012000000140000000000000000000000563dab34 ........,...................V=.44.sB......9w +724 0.112239599 0 ::1 55802 ::1 49704 2827702402 362119187 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........V=.4 +726 0.114049196 1 ::1 49704 ::1 55802 362119187 2827702510 28 05000203100000001c00000013000000040000000100000001000000 ............................ +728 0.114199877 0 ::1 55802 ::1 49704 2827702510 362119215 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........V=.4 +730 0.114416599 1 ::1 49704 ::1 55802 362119215 2827702570 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +732 0.114639282 0 ::1 55802 ::1 49704 2827702570 362119307 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........V=.4 +734 0.114861727 1 ::1 49704 ::1 55802 362119307 2827702702 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +736 0.115033150 0 ::1 55802 ::1 49704 2827702702 362119339 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........V=.4 +738 0.115220547 1 ::1 49704 ::1 55802 362119339 2827702838 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +740 0.115357876 0 ::1 55802 ::1 49704 2827702838 362119371 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........V=.4 +742 0.115509510 1 ::1 49704 ::1 55802 362119371 2827702968 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +744 0.115643263 0 ::1 55802 ::1 49704 2827702968 362119403 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........V=.4 +746 0.115792751 1 ::1 49704 ::1 55802 362119403 2827703100 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +748 0.115931273 0 ::1 55802 ::1 49704 2827703100 362119435 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........V=.4 +750 0.116135597 1 ::1 49704 ::1 55802 362119435 2827703242 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +752 0.116283655 0 ::1 55802 ::1 49704 2827703242 362119467 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........V=.4 +754 0.116432905 1 ::1 49704 ::1 55802 362119467 2827703384 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +756 0.116568327 0 ::1 55802 ::1 49704 2827703384 362119499 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........V=.4 +758 0.116715431 1 ::1 49704 ::1 55802 362119499 2827703538 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +760 0.116914988 0 ::1 55802 ::1 49704 2827703538 362119531 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........V=.4 +762 0.117061377 1 ::1 49704 ::1 55802 362119531 2827703666 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +764 0.117197037 0 ::1 55802 ::1 49704 2827703666 362119563 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........V=.4 +766 0.117342949 1 ::1 49704 ::1 55802 362119563 2827703808 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +768 0.117478609 0 ::1 55802 ::1 49704 2827703808 362119595 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........V=.4 +770 0.117623806 1 ::1 49704 ::1 55802 362119595 2827703948 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +772 0.117758989 0 ::1 55802 ::1 49704 2827703948 362119627 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........V=.4 +774 0.117903471 1 ::1 49704 ::1 55802 362119627 2827704086 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +804 0.134108305 0 ::1 55802 ::1 49704 2827704086 362119659 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +806 0.134244680 1 ::1 49704 ::1 55802 362119659 2827704126 44 05000203100000002c00000020000000140000000000000000000000aa373120 ........,... ................71 .*jF.....rC. +808 0.134436369 0 ::1 55802 ::1 49704 2827704126 362119703 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K.........71 +810 0.136105537 1 ::1 49704 ::1 55802 362119703 2827704230 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +812 0.136260986 0 ::1 55802 ::1 49704 2827704230 362119731 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K.........71 +814 0.136428118 1 ::1 49704 ::1 55802 362119731 2827704290 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +816 0.136634827 0 ::1 55802 ::1 49704 2827704290 362119823 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K.........71 +818 0.137009621 1 ::1 49704 ::1 55802 362119823 2827704418 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +820 0.137173891 0 ::1 55802 ::1 49704 2827704418 362119855 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K.........71 +822 0.137346745 1 ::1 49704 ::1 55802 362119855 2827704550 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +824 0.137473106 0 ::1 55802 ::1 49704 2827704550 362119887 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K.........71 +826 0.137684584 1 ::1 49704 ::1 55802 362119887 2827704676 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +828 0.137841702 0 ::1 55802 ::1 49704 2827704676 362119919 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K.........71 +830 0.138135195 1 ::1 49704 ::1 55802 362119919 2827704804 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +832 0.138269663 0 ::1 55802 ::1 49704 2827704804 362119951 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K.........71 +834 0.138484955 1 ::1 49704 ::1 55802 362119951 2827704942 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +836 0.138630390 0 ::1 55802 ::1 49704 2827704942 362119983 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K.........71 +838 0.138834953 1 ::1 49704 ::1 55802 362119983 2827705080 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +840 0.138975859 0 ::1 55802 ::1 49704 2827705080 362120015 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K.........71 +842 0.139235497 1 ::1 49704 ::1 55802 362120015 2827705230 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +844 0.139506102 0 ::1 55802 ::1 49704 2827705230 362120047 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K.........71 +846 0.139690638 1 ::1 49704 ::1 55802 362120047 2827705354 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +848 0.139833689 0 ::1 55802 ::1 49704 2827705354 362120079 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K.........71 +850 0.140050411 1 ::1 49704 ::1 55802 362120079 2827705492 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +852 0.140216589 0 ::1 55802 ::1 49704 2827705492 362120111 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K.........71 +854 0.140418768 1 ::1 49704 ::1 55802 362120111 2827705628 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +856 0.140561581 0 ::1 55802 ::1 49704 2827705628 362120143 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K.........71 +858 0.140794992 1 ::1 49704 ::1 55802 362120143 2827705762 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +860 0.140980959 0 ::1 55802 ::1 49704 2827705762 362120175 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........71 +862 0.141268253 1 ::1 49704 ::1 55802 362120175 2827705902 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +864 0.141407490 0 ::1 55802 ::1 49704 2827705902 362120207 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K.........71 +866 0.141570091 1 ::1 49704 ::1 55802 362120207 2827706048 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +885 0.241531849 0 ::1 55802 ::1 49704 2827706048 362120239 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +887 0.241760731 1 ::1 49704 ::1 55802 362120239 2827706088 44 05000203100000002c00000030000000140000000000000000000000d591dfae ........,...0...................0..I..x.N1.. +889 0.241932392 0 ::1 55802 ::1 49704 2827706088 362120283 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K............ +891 0.243767262 1 ::1 49704 ::1 55802 362120283 2827706200 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +893 0.243906021 0 ::1 55802 ::1 49704 2827706200 362120311 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K............ +895 0.244075060 1 ::1 49704 ::1 55802 362120311 2827706260 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +897 0.244297504 0 ::1 55802 ::1 49704 2827706260 362120403 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K............ +899 0.244545460 1 ::1 49704 ::1 55802 362120403 2827706396 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +901 0.244683504 0 ::1 55802 ::1 49704 2827706396 362120435 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K............ +903 0.244851112 1 ::1 49704 ::1 55802 362120435 2827706536 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +905 0.244985104 0 ::1 55802 ::1 49704 2827706536 362120467 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K............ +907 0.245149851 1 ::1 49704 ::1 55802 362120467 2827706670 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +909 0.245281935 0 ::1 55802 ::1 49704 2827706670 362120499 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K............ +911 0.245473623 1 ::1 49704 ::1 55802 362120499 2827706806 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +913 0.245598793 0 ::1 55802 ::1 49704 2827706806 362120531 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K............ +915 0.245763540 1 ::1 49704 ::1 55802 362120531 2827706952 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +917 0.245896816 0 ::1 55802 ::1 49704 2827706952 362120563 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K............ +919 0.246062040 1 ::1 49704 ::1 55802 362120563 2827707098 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +921 0.246196270 0 ::1 55802 ::1 49704 2827707098 362120595 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K............ +923 0.246387005 1 ::1 49704 ::1 55802 362120595 2827707256 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +925 0.246510744 0 ::1 55802 ::1 49704 2827707256 362120627 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K............ +927 0.246672869 1 ::1 49704 ::1 55802 362120627 2827707388 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +929 0.246806145 0 ::1 55802 ::1 49704 2827707388 362120659 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K............ +931 0.246968746 1 ::1 49704 ::1 55802 362120659 2827707534 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +933 0.247101307 0 ::1 55802 ::1 49704 2827707534 362120691 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K............ +935 0.247263432 1 ::1 49704 ::1 55802 362120691 2827707678 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +937 0.247420073 0 ::1 55802 ::1 49704 2827707678 362120723 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K............ +939 0.247581005 1 ::1 49704 ::1 55802 362120723 2827707820 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +941 0.247762680 0 ::1 55802 ::1 49704 2827707820 362120755 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K............ +943 0.247925758 1 ::1 49704 ::1 55802 362120755 2827707968 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +945 0.248067617 0 ::1 55802 ::1 49704 2827707968 362120787 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K............ +947 0.248230696 1 ::1 49704 ::1 55802 362120787 2827708122 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +988 0.365618944 0 ::1 55802 ::1 49704 2827708122 362120819 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +990 0.365890265 1 ::1 49704 ::1 55802 362120819 2827708162 44 05000203100000002c00000040000000140000000000000000000000314c826a ........,...@...............1L.j;%[L..{.0^.q +992 0.366058350 0 ::1 55802 ::1 49704 2827708162 362120863 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........1L.j +994 0.367786407 1 ::1 49704 ::1 55802 362120863 2827708254 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +996 0.367933273 0 ::1 55802 ::1 49704 2827708254 362120891 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........1L.j +998 0.368104935 1 ::1 49704 ::1 55802 362120891 2827708314 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1000 0.368313551 0 ::1 55802 ::1 49704 2827708314 362120983 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........1L.j +1002 0.368552208 1 ::1 49704 ::1 55802 362120983 2827708430 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1004 0.368686199 0 ::1 55802 ::1 49704 2827708430 362121015 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........1L.j +1006 0.368852854 1 ::1 49704 ::1 55802 362121015 2827708550 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1008 0.368983507 0 ::1 55802 ::1 49704 2827708550 362121047 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........1L.j +1010 0.369148970 1 ::1 49704 ::1 55802 362121047 2827708664 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1012 0.369276047 0 ::1 55802 ::1 49704 2827708664 362121079 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........1L.j +1014 0.369437695 1 ::1 49704 ::1 55802 362121079 2827708780 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1016 0.369596720 0 ::1 55802 ::1 49704 2827708780 362121111 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........1L.j +1018 0.369752884 1 ::1 49704 ::1 55802 362121111 2827708906 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1020 0.369887829 0 ::1 55802 ::1 49704 2827708906 362121143 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........1L.j +1022 0.370049477 1 ::1 49704 ::1 55802 362121143 2827709032 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1024 0.370255709 0 ::1 55802 ::1 49704 2827709032 362121175 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........1L.j +1026 0.370417118 1 ::1 49704 ::1 55802 362121175 2827709170 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1028 0.370550156 0 ::1 55802 ::1 49704 2827709170 362121207 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........1L.j +1030 0.370714903 1 ::1 49704 ::1 55802 362121207 2827709282 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1032 0.370843172 0 ::1 55802 ::1 49704 2827709282 362121239 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........1L.j +1034 0.371002674 1 ::1 49704 ::1 55802 362121239 2827709408 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1036 0.371130943 0 ::1 55802 ::1 49704 2827709408 362121271 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........1L.j +1038 0.371291399 1 ::1 49704 ::1 55802 362121271 2827709532 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1040 0.371419907 0 ::1 55802 ::1 49704 2827709532 362121303 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........1L.j +1042 0.371583223 1 ::1 49704 ::1 55802 362121303 2827709654 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1044 0.371759415 0 ::1 55802 ::1 49704 2827709654 362121335 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........1L.j +1046 0.371922016 1 ::1 49704 ::1 55802 362121335 2827709782 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1048 0.372062206 0 ::1 55802 ::1 49704 2827709782 362121367 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........1L.j +1050 0.372226715 1 ::1 49704 ::1 55802 362121367 2827709916 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1052 0.372366190 0 ::1 55802 ::1 49704 2827709916 362121399 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........1L.j +1054 0.372527838 1 ::1 49704 ::1 55802 362121399 2827710046 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1056 0.372665405 0 ::1 55802 ::1 49704 2827710046 362121431 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........1L.j +1058 0.372828960 1 ::1 49704 ::1 55802 362121431 2827710174 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +2887 6.628282547 0 ::1 55802 ::1 49704 2827710174 362121463 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +2889 6.628513336 1 ::1 49704 ::1 55802 362121463 2827710214 44 05000203100000002c000000520000001400000000000000000000004bbe3bf7 ........,...R...............K.;...rL.^5.{.0p +2891 6.628692627 0 ::1 55802 ::1 49704 2827710214 362121507 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K........K.;. +2893 6.630509377 1 ::1 49704 ::1 55802 362121507 2827710314 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +2895 6.630718946 0 ::1 55802 ::1 49704 2827710314 362121535 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K........K.;. +2897 6.630901337 1 ::1 49704 ::1 55802 362121535 2827710374 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +2899 6.631143093 0 ::1 55802 ::1 49704 2827710374 362121627 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K........K.;. +2901 6.631402969 1 ::1 49704 ::1 55802 362121627 2827710498 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +2903 6.631556749 0 ::1 55802 ::1 49704 2827710498 362121659 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K........K.;. +2905 6.631734610 1 ::1 49704 ::1 55802 362121659 2827710626 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +2907 6.631877422 0 ::1 55802 ::1 49704 2827710626 362121691 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K........K.;. +2909 6.632049084 1 ::1 49704 ::1 55802 362121691 2827710748 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +2911 6.632190704 0 ::1 55802 ::1 49704 2827710748 362121723 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K........K.;. +2913 6.632359266 1 ::1 49704 ::1 55802 362121723 2827710872 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +2915 6.632500410 0 ::1 55802 ::1 49704 2827710872 362121755 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K........K.;. +2917 6.632669449 1 ::1 49704 ::1 55802 362121755 2827711006 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +2919 6.632810831 0 ::1 55802 ::1 49704 2827711006 362121787 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K........K.;. +2921 6.633005857 1 ::1 49704 ::1 55802 362121787 2827711140 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +2923 6.633139372 0 ::1 55802 ::1 49704 2827711140 362121819 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K........K.;. +2925 6.633307934 1 ::1 49704 ::1 55802 362121819 2827711286 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +2927 6.633447409 0 ::1 55802 ::1 49704 2827711286 362121851 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K........K.;. +2929 6.633615732 1 ::1 49704 ::1 55802 362121851 2827711406 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +2931 6.633754492 0 ::1 55802 ::1 49704 2827711406 362121883 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K........K.;. +2933 6.633919954 1 ::1 49704 ::1 55802 362121883 2827711540 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +2935 6.634100199 0 ::1 55802 ::1 49704 2827711540 362121915 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K........K.;. +2937 6.634278059 1 ::1 49704 ::1 55802 362121915 2827711672 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +2939 6.634427071 0 ::1 55802 ::1 49704 2827711672 362121947 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K........K.;. +2941 6.634599447 1 ::1 49704 ::1 55802 362121947 2827711802 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +2943 6.634786844 0 ::1 55802 ::1 49704 2827711802 362121979 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K........K.;. +2945 6.634981871 1 ::1 49704 ::1 55802 362121979 2827711946 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +2947 6.635127544 0 ::1 55802 ::1 49704 2827711946 362122011 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K........K.;. +2949 6.635350943 1 ::1 49704 ::1 55802 362122011 2827712094 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +2951 6.635508060 0 ::1 55802 ::1 49704 2827712094 362122043 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K........K.;. +2953 6.635678053 1 ::1 49704 ::1 55802 362122043 2827712240 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +2956 6.635891914 0 ::1 55802 ::1 49704 2827712240 362122075 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K........K.;. +2961 6.636130810 1 ::1 49704 ::1 55802 362122075 2827712398 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +2987 6.708852768 0 ::1 55802 ::1 49704 2827712398 362122107 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +2989 6.709087610 1 ::1 49704 ::1 55802 362122107 2827712438 44 05000203100000002c0000006400000014000000000000000000000079a33d4c ........,...d...............y.=LW.tD.a...DsK +2991 6.709253550 0 ::1 55802 ::1 49704 2827712438 362122151 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K........y.=L +2993 6.710925102 1 ::1 49704 ::1 55802 362122151 2827712522 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +2995 6.711064577 0 ::1 55802 ::1 49704 2827712522 362122179 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K........y.=L +2997 6.711327076 1 ::1 49704 ::1 55802 362122179 2827712582 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +2999 6.711556196 0 ::1 55802 ::1 49704 2827712582 362122271 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K........y.=L +3001 6.711748362 1 ::1 49704 ::1 55802 362122271 2827712690 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3003 6.711908102 0 ::1 55802 ::1 49704 2827712690 362122303 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K........y.=L +3005 6.712155104 1 ::1 49704 ::1 55802 362122303 2827712802 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3007 6.712300301 0 ::1 55802 ::1 49704 2827712802 362122335 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K........y.=L +3009 6.712455750 1 ::1 49704 ::1 55802 362122335 2827712908 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3011 6.712633610 0 ::1 55802 ::1 49704 2827712908 362122367 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K........y.=L +3013 6.712800026 1 ::1 49704 ::1 55802 362122367 2827713016 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3015 6.713031054 0 ::1 55802 ::1 49704 2827713016 362122399 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K........y.=L +3017 6.713192225 1 ::1 49704 ::1 55802 362122399 2827713134 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3019 6.713370800 0 ::1 55802 ::1 49704 2827713134 362122431 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K........y.=L +3021 6.713525057 1 ::1 49704 ::1 55802 362122431 2827713252 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3023 6.713725567 0 ::1 55802 ::1 49704 2827713252 362122463 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K........y.=L +3025 6.713886976 1 ::1 49704 ::1 55802 362122463 2827713382 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3027 6.714054823 0 ::1 55802 ::1 49704 2827713382 362122495 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K........y.=L +3029 6.714203119 1 ::1 49704 ::1 55802 362122495 2827713486 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3031 6.714361668 0 ::1 55802 ::1 49704 2827713486 362122527 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K........y.=L +3033 6.714535236 1 ::1 49704 ::1 55802 362122527 2827713604 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3035 6.714679718 0 ::1 55802 ::1 49704 2827713604 362122559 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K........y.=L +3037 6.714830399 1 ::1 49704 ::1 55802 362122559 2827713720 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3039 6.714972973 0 ::1 55802 ::1 49704 2827713720 362122591 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K........y.=L +3041 6.715192080 1 ::1 49704 ::1 55802 362122591 2827713834 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3043 6.715710878 0 ::1 55802 ::1 49704 2827713834 362122623 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K........y.=L +3045 6.715864182 1 ::1 49704 ::1 55802 362122623 2827713962 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3047 6.716067076 0 ::1 55802 ::1 49704 2827713962 362122655 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K........y.=L +3049 6.716214657 1 ::1 49704 ::1 55802 362122655 2827714082 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3051 6.716390133 0 ::1 55802 ::1 49704 2827714082 362122687 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K........y.=L +3053 6.716541529 1 ::1 49704 ::1 55802 362122687 2827714202 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3055 6.716719389 0 ::1 55802 ::1 49704 2827714202 362122719 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K........y.=L +3057 6.716868162 1 ::1 49704 ::1 55802 362122719 2827714324 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3059 6.717067719 0 ::1 55802 ::1 49704 2827714324 362122751 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K........y.=L +3061 6.717210293 1 ::1 49704 ::1 55802 362122751 2827714458 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3063 6.717411518 0 ::1 55802 ::1 49704 2827714458 362122783 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K........y.=L +3065 6.717562914 1 ::1 49704 ::1 55802 362122783 2827714590 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3067 6.717740774 0 ::1 55802 ::1 49704 2827714590 362122815 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K........y.=L +3069 6.717889786 1 ::1 49704 ::1 55802 362122815 2827714720 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3071 6.718091726 0 ::1 55802 ::1 49704 2827714720 362122847 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K........y.=L +3073 6.718239784 1 ::1 49704 ::1 55802 362122847 2827714858 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3075 6.718416691 0 ::1 55802 ::1 49704 2827714858 362122879 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K........y.=L +3077 6.718565702 1 ::1 49704 ::1 55802 362122879 2827715002 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3079 6.718760729 0 ::1 55802 ::1 49704 2827715002 362122911 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K........y.=L +3081 6.718911171 1 ::1 49704 ::1 55802 362122911 2827715146 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3083 6.719181299 0 ::1 55802 ::1 49704 2827715146 362122943 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K........y.=L +3085 6.719341040 1 ::1 49704 ::1 55802 362122943 2827715262 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3087 6.719561100 0 ::1 55802 ::1 49704 2827715262 362122975 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K........y.=L +3089 6.719712973 1 ::1 49704 ::1 55802 362122975 2827715392 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3091 6.719892979 0 ::1 55802 ::1 49704 2827715392 362123007 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K........y.=L +3093 6.720093012 1 ::1 49704 ::1 55802 362123007 2827715530 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3095 6.720268250 0 ::1 55802 ::1 49704 2827715530 362123039 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........y.=L +3097 6.720417976 1 ::1 49704 ::1 55802 362123039 2827715660 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3099 6.720592022 0 ::1 55802 ::1 49704 2827715660 362123071 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........y.=L +3101 6.720741272 1 ::1 49704 ::1 55802 362123071 2827715782 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3103 6.720914602 0 ::1 55802 ::1 49704 2827715782 362123103 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........y.=L +3105 6.721115828 1 ::1 49704 ::1 55802 362123103 2827715904 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3107 6.721293211 0 ::1 55802 ::1 49704 2827715904 362123135 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........y.=L +3109 6.721443415 1 ::1 49704 ::1 55802 362123135 2827716038 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3111 6.721622467 0 ::1 55802 ::1 49704 2827716038 362123167 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........y.=L +3113 6.721773148 1 ::1 49704 ::1 55802 362123167 2827716166 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3115 6.721986532 0 ::1 55802 ::1 49704 2827716166 362123199 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........y.=L +3117 6.722135305 1 ::1 49704 ::1 55802 362123199 2827716290 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3119 6.753433228 0 ::1 55802 ::1 49704 2827716290 362123231 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K........y.=L +3121 6.753664255 1 ::1 49704 ::1 55802 362123231 2827716806 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3141 6.788186789 0 ::1 55802 ::1 49704 2827716806 362123259 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3143 6.788359642 1 ::1 49704 ::1 55802 362123259 2827716846 44 05000203100000002c00000086000000140000000000000000000000428f82b6 ........,...................B.....BK..\Ss.uL +3145 6.788544178 0 ::1 55802 ::1 49704 2827716846 362123303 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........B... +3147 6.790235519 1 ::1 49704 ::1 55802 362123303 2827716958 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3149 6.790383101 0 ::1 55802 ::1 49704 2827716958 362123331 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........B... +3151 6.790549040 1 ::1 49704 ::1 55802 362123331 2827717018 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3153 6.790798664 0 ::1 55802 ::1 49704 2827717018 362123423 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........B... +3155 6.790975809 1 ::1 49704 ::1 55802 362123423 2827717154 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3157 6.791131496 0 ::1 55802 ::1 49704 2827717154 362123455 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........B... +3159 6.791289091 1 ::1 49704 ::1 55802 362123455 2827717294 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3161 6.791437387 0 ::1 55802 ::1 49704 2827717294 362123487 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........B... +3163 6.791594744 1 ::1 49704 ::1 55802 362123487 2827717428 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3165 6.791739941 0 ::1 55802 ::1 49704 2827717428 362123519 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........B... +3167 6.791893482 1 ::1 49704 ::1 55802 362123519 2827717564 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3169 6.792063951 0 ::1 55802 ::1 49704 2827717564 362123551 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3171 6.792333603 1 ::1 49704 ::1 55802 362123551 2827717710 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3173 6.792499304 0 ::1 55802 ::1 49704 2827717710 362123583 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3175 6.792677402 1 ::1 49704 ::1 55802 362123583 2827717856 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3177 6.792826414 0 ::1 55802 ::1 49704 2827717856 362123615 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........B... +3179 6.792982340 1 ::1 49704 ::1 55802 362123615 2827718014 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3181 6.793640614 0 ::1 55802 ::1 49704 2827718014 362123647 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........B... +3183 6.793797970 1 ::1 49704 ::1 55802 362123647 2827718146 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3185 6.793946266 0 ::1 55802 ::1 49704 2827718146 362123679 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3187 6.794094801 1 ::1 49704 ::1 55802 362123679 2827718292 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3189 6.794244766 0 ::1 55802 ::1 49704 2827718292 362123711 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........B... +3191 6.794412136 1 ::1 49704 ::1 55802 362123711 2827718436 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3193 6.794560194 0 ::1 55802 ::1 49704 2827718436 362123743 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........B... +3195 6.794714689 1 ::1 49704 ::1 55802 362123743 2827718578 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3197 6.794907331 0 ::1 55802 ::1 49704 2827718578 362123775 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........B... +3199 6.795084476 1 ::1 49704 ::1 55802 362123775 2827718738 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3201 6.795237064 0 ::1 55802 ::1 49704 2827718738 362123807 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........B... +3203 6.795391798 1 ::1 49704 ::1 55802 362123807 2827718894 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3205 6.795558929 0 ::1 55802 ::1 49704 2827718894 362123839 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........B... +3207 6.795712709 1 ::1 49704 ::1 55802 362123839 2827719048 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3209 6.795888901 0 ::1 55802 ::1 49704 2827719048 362123871 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3211 6.796068192 1 ::1 49704 ::1 55802 362123871 2827719194 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3213 6.796218395 0 ::1 55802 ::1 49704 2827719194 362123903 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........B... +3215 6.796375275 1 ::1 49704 ::1 55802 362123903 2827719348 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3217 6.796539783 0 ::1 55802 ::1 49704 2827719348 362123935 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........B... +3219 6.796695232 1 ::1 49704 ::1 55802 362123935 2827719498 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3221 6.796848297 0 ::1 55802 ::1 49704 2827719498 362123967 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........B... +3223 6.797031879 1 ::1 49704 ::1 55802 362123967 2827719650 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3225 6.797186136 0 ::1 55802 ::1 49704 2827719650 362123999 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........B... +3227 6.797339678 1 ::1 49704 ::1 55802 362123999 2827719790 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3229 6.797496319 0 ::1 55802 ::1 49704 2827719790 362124031 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........B... +3231 6.797649622 1 ::1 49704 ::1 55802 362124031 2827719938 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3233 6.797803402 0 ::1 55802 ::1 49704 2827719938 362124063 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........B... +3235 6.797983408 1 ::1 49704 ::1 55802 362124063 2827720100 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3237 6.798139095 0 ::1 55802 ::1 49704 2827720100 362124095 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........B... +3239 6.798290491 1 ::1 49704 ::1 55802 362124095 2827720272 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3241 6.798443317 0 ::1 55802 ::1 49704 2827720272 362124127 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........B... +3243 6.798629761 1 ::1 49704 ::1 55802 362124127 2827720416 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3249 6.806167603 0 ::1 55802 ::1 49704 2827720416 362124159 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3251 6.806327581 1 ::1 49704 ::1 55802 362124159 2827720456 44 05000203100000002c000000a000000014000000000000000000000039aef937 ........,...................9..7.Xn@..m...l] +3253 6.806502819 0 ::1 55802 ::1 49704 2827720456 362124203 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........9..7 +3255 6.808109999 1 ::1 49704 ::1 55802 362124203 2827720584 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3257 6.808258057 0 ::1 55802 ::1 49704 2827720584 362124231 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........9..7 +3260 6.808433533 1 ::1 49704 ::1 55802 362124231 2827720644 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3262 6.808660507 0 ::1 55802 ::1 49704 2827720644 362124323 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........9..7 +3264 6.808874607 1 ::1 49704 ::1 55802 362124323 2827720796 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3266 6.809048176 0 ::1 55802 ::1 49704 2827720796 362124355 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........9..7 +3268 6.809217215 1 ::1 49704 ::1 55802 362124355 2827720952 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3270 6.809369802 0 ::1 55802 ::1 49704 2827720952 362124387 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........9..7 +3272 6.809534073 1 ::1 49704 ::1 55802 362124387 2827721102 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3274 6.809685230 0 ::1 55802 ::1 49704 2827721102 362124419 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........9..7 +3276 6.809848785 1 ::1 49704 ::1 55802 362124419 2827721254 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3278 6.810054302 0 ::1 55802 ::1 49704 2827721254 362124451 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........9..7 +3280 6.810214520 1 ::1 49704 ::1 55802 362124451 2827721416 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3282 6.810365677 0 ::1 55802 ::1 49704 2827721416 362124483 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........9..7 +3284 6.810528994 1 ::1 49704 ::1 55802 362124483 2827721578 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3286 6.810680151 0 ::1 55802 ::1 49704 2827721578 362124515 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........9..7 +3288 6.810840607 1 ::1 49704 ::1 55802 362124515 2827721752 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3290 6.811015606 0 ::1 55802 ::1 49704 2827721752 362124547 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........9..7 +3292 6.811174393 1 ::1 49704 ::1 55802 362124547 2827721900 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3294 6.811329842 0 ::1 55802 ::1 49704 2827721900 362124579 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........9..7 +3296 6.811494589 1 ::1 49704 ::1 55802 362124579 2827722062 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3298 6.811658382 0 ::1 55802 ::1 49704 2827722062 362124611 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........9..7 +3300 6.811835527 1 ::1 49704 ::1 55802 362124611 2827722222 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3302 6.812011719 0 ::1 55802 ::1 49704 2827722222 362124643 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........9..7 +3304 6.812170744 1 ::1 49704 ::1 55802 362124643 2827722380 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3306 6.812397480 0 ::1 55802 ::1 49704 2827722380 362124675 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........9..7 +3308 6.812564611 1 ::1 49704 ::1 55802 362124675 2827722550 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3310 6.812725306 0 ::1 55802 ::1 49704 2827722550 362124707 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........9..7 +3312 6.812886238 1 ::1 49704 ::1 55802 362124707 2827722732 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3318 6.818803549 0 ::1 55802 ::1 49704 2827722732 362124739 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3320 6.819007158 1 ::1 49704 ::1 55802 362124739 2827722772 44 05000203100000002c000000b0000000140000000000000000000000bce7c065 ........,......................e.'.B.A2,.... +3322 6.819199085 0 ::1 55802 ::1 49704 2827722772 362124783 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K...........e +3336 6.820755005 1 ::1 49704 ::1 55802 362124783 2827722868 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3338 6.820964098 0 ::1 55802 ::1 49704 2827722868 362124811 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........e +3340 6.821170092 1 ::1 49704 ::1 55802 362124811 2827722928 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3344 6.821396828 0 ::1 55802 ::1 49704 2827722928 362124903 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........e +3348 6.821567059 1 ::1 49704 ::1 55802 362124903 2827723048 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3351 6.821724415 0 ::1 55802 ::1 49704 2827723048 362124935 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K...........e +3354 6.821883202 1 ::1 49704 ::1 55802 362124935 2827723172 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3356 6.822090626 0 ::1 55802 ::1 49704 2827723172 362124967 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K...........e +3358 6.822248697 1 ::1 49704 ::1 55802 362124967 2827723290 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3360 6.822419167 0 ::1 55802 ::1 49704 2827723290 362124999 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........e +3362 6.822584867 1 ::1 49704 ::1 55802 362124999 2827723410 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3366 6.822753191 0 ::1 55802 ::1 49704 2827723410 362125031 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3370 6.822912693 1 ::1 49704 ::1 55802 362125031 2827723540 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3372 6.823141813 0 ::1 55802 ::1 49704 2827723540 362125063 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3376 6.823297977 1 ::1 49704 ::1 55802 362125063 2827723670 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3378 6.823448658 0 ::1 55802 ::1 49704 2827723670 362125095 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........e +3382 6.823641300 1 ::1 49704 ::1 55802 362125095 2827723812 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3386 6.823854685 0 ::1 55802 ::1 49704 2827723812 362125127 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K...........e +3389 6.824017286 1 ::1 49704 ::1 55802 362125127 2827723928 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3392 6.824168921 0 ::1 55802 ::1 49704 2827723928 362125159 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3394 6.824342251 1 ::1 49704 ::1 55802 362125159 2827724058 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3396 6.824495554 0 ::1 55802 ::1 49704 2827724058 362125191 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........e +3398 6.824654102 1 ::1 49704 ::1 55802 362125191 2827724186 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3400 6.824805260 0 ::1 55802 ::1 49704 2827724186 362125223 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........e +3402 6.824987411 1 ::1 49704 ::1 55802 362125223 2827724312 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3404 6.825175285 0 ::1 55802 ::1 49704 2827724312 362125255 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........e +3406 6.825334549 1 ::1 49704 ::1 55802 362125255 2827724438 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3408 6.825493574 0 ::1 55802 ::1 49704 2827724438 362125287 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........e +3410 6.825651169 1 ::1 49704 ::1 55802 362125287 2827724570 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3412 6.825809717 0 ::1 55802 ::1 49704 2827724570 362125319 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3414 6.825991392 1 ::1 49704 ::1 55802 362125319 2827724700 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3416 6.826126575 0 ::1 55802 ::1 49704 2827724700 362125351 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K...........e +3418 6.826285601 1 ::1 49704 ::1 55802 362125351 2827724838 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3420 6.826442480 0 ::1 55802 ::1 49704 2827724838 362125383 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K...........e +3422 6.826598883 1 ::1 49704 ::1 55802 362125383 2827724974 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3424 6.826754808 0 ::1 55802 ::1 49704 2827724974 362125415 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........e +3426 6.826910257 1 ::1 49704 ::1 55802 362125415 2827725106 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3428 6.827071428 0 ::1 55802 ::1 49704 2827725106 362125447 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........e +3430 6.827225924 1 ::1 49704 ::1 55802 362125447 2827725248 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3432 6.827383280 0 ::1 55802 ::1 49704 2827725248 362125479 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K...........e +3434 6.827540159 1 ::1 49704 ::1 55802 362125479 2827725396 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3440 6.862789631 0 ::1 55802 ::1 49704 2827725396 362125511 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K........y.=L +3442 6.863118410 1 ::1 49704 ::1 55802 362125511 2827725686 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3460 6.932839155 0 ::1 55802 ::1 49704 2827725686 362125539 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K........y.=L +3462 6.933125019 1 ::1 49704 ::1 55802 362125539 2827725892 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +3506 7.086703539 0 ::1 55802 ::1 49704 2827725892 362125567 40 050000831000000028000000c800000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3508 7.086915970 1 ::1 49704 ::1 55802 362125567 2827725932 44 05000203100000002c000000c80000001400000000000000000000005a3e54d9 ........,...................Z>T..c.A..o..... +3510 7.087097168 0 ::1 55802 ::1 49704 2827725932 362125611 104 050000831000000068000000c900000040000000010000008c9e288562f29747 ........h.......@.........(.b..G..>K........Z>T. +3512 7.088955641 1 ::1 49704 ::1 55802 362125611 2827726036 28 05000203100000001c000000c9000000040000000100000001000000 ............................ +3514 7.089102268 0 ::1 55802 ::1 49704 2827726036 362125639 60 05000083100000003c000000ca00000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........Z>T. +3516 7.089338064 1 ::1 49704 ::1 55802 362125639 2827726096 92 05000203100000005c000000ca00000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3518 7.089583874 0 ::1 55802 ::1 49704 2827726096 362125731 128 050000831000000080000000cb00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........Z>T. +3520 7.089872837 1 ::1 49704 ::1 55802 362125731 2827726224 32 050002031000000020000000cb00000008000000010000003b02000001000000 ........ ...............;....... +3522 7.090043783 0 ::1 55802 ::1 49704 2827726224 362125763 132 050000831000000084000000cc0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Z>T. +3524 7.090210915 1 ::1 49704 ::1 55802 362125763 2827726356 32 050002031000000020000000cc00000008000000010000003c02000001000000 ........ ...............<....... +3526 7.090355873 0 ::1 55802 ::1 49704 2827726356 362125795 126 05000083100000007e000000cd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........Z>T. +3528 7.090534210 1 ::1 49704 ::1 55802 362125795 2827726482 32 050002031000000020000000cd00000008000000010000003d02000001000000 ........ ...............=....... +3530 7.090759993 0 ::1 55802 ::1 49704 2827726482 362125827 128 050000831000000080000000ce00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........Z>T. +3532 7.090925694 1 ::1 49704 ::1 55802 362125827 2827726610 32 050002031000000020000000ce00000008000000010000003e02000001000000 ........ ...............>....... +3534 7.091070175 0 ::1 55802 ::1 49704 2827726610 362125859 138 05000083100000008a000000cf00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Z>T. +3536 7.091230392 1 ::1 49704 ::1 55802 362125859 2827726748 32 050002031000000020000000cf00000008000000010000003f02000001000000 ........ ...............?....... +3538 7.091373682 0 ::1 55802 ::1 49704 2827726748 362125891 138 05000083100000008a000000d000000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Z>T. +3540 7.091533184 1 ::1 49704 ::1 55802 362125891 2827726886 32 050002031000000020000000d000000008000000010000004002000001000000 ........ ...............@....... +3542 7.091729641 0 ::1 55802 ::1 49704 2827726886 362125923 150 050000831000000096000000d10000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........Z>T. +3544 7.091904402 1 ::1 49704 ::1 55802 362125923 2827727036 32 050002031000000020000000d100000008000000010000004102000001000000 ........ ...............A....... +3546 7.092050314 0 ::1 55802 ::1 49704 2827727036 362125955 124 05000083100000007c000000d200000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........Z>T. +3548 7.092209816 1 ::1 49704 ::1 55802 362125955 2827727160 32 050002031000000020000000d200000008000000010000004202000001000000 ........ ...............B....... +3550 7.092352867 0 ::1 55802 ::1 49704 2827727160 362125987 138 05000083100000008a000000d300000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Z>T. +3552 7.092511654 1 ::1 49704 ::1 55802 362125987 2827727298 32 050002031000000020000000d300000008000000010000004302000001000000 ........ ...............C....... +3554 7.092676401 0 ::1 55802 ::1 49704 2827727298 362126019 136 050000831000000088000000d400000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........Z>T. +3556 7.092833281 1 ::1 49704 ::1 55802 362126019 2827727434 32 050002031000000020000000d400000008000000010000004402000001000000 ........ ...............D....... +3558 7.092975855 0 ::1 55802 ::1 49704 2827727434 362126051 134 050000831000000086000000d50000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........Z>T. +3560 7.093133688 1 ::1 49704 ::1 55802 362126051 2827727568 32 050002031000000020000000d500000008000000010000004502000001000000 ........ ...............E....... diff --git a/captures/015-loopback-subscribe-invalid/nmx-stream-__1_49704-to-__1_55802.bin b/captures/015-loopback-subscribe-invalid/nmx-stream-__1_49704-to-__1_55802.bin new file mode 100644 index 0000000..3b5cb27 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/nmx-stream-__1_49704-to-__1_55802.bin differ diff --git a/captures/015-loopback-subscribe-invalid/nmx-stream-__1_55802-to-__1_49704.bin b/captures/015-loopback-subscribe-invalid/nmx-stream-__1_55802-to-__1_49704.bin new file mode 100644 index 0000000..f0303f5 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/nmx-stream-__1_55802-to-__1_49704.bin differ diff --git a/captures/015-loopback-subscribe-invalid/stderr.txt b/captures/015-loopback-subscribe-invalid/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/015-loopback-subscribe-invalid/stdout.txt b/captures/015-loopback-subscribe-invalid/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/015-loopback-subscribe-invalid/tcp-conversations.tsv b/captures/015-loopback-subscribe-invalid/tcp-conversations.tsv new file mode 100644 index 0000000..e9220d1 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-conversations.tsv @@ -0,0 +1,58 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 1985 37834 0.000000000 18.692692995 +::1:49704 ::1:55802 428 34918 1.813798428 8.906932116 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55822 2 14170 15.026699066 15.099186182 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55808 2 13997 3.909623146 3.979032040 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 21 8281 6.042583704 10.920437098 +::1:135 ::1:55801 22 2860 1.810914278 8.900236130 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55812 3 2703 5.506963015 8.022317410 +::1:32571 ::1:55807 4 2196 3.302651405 3.310087204 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55827 3 1941 16.345923901 18.615862608 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 16 1939 6.953541517 6.963469028 +::1:80 ::1:55818 6 1821 11.076507330 11.081893682 +::1:80 ::1:55811 6 1820 4.045033932 4.051420927 +::1:80 ::1:55796 6 1793 0.629614830 0.636208296 +::1:80 ::1:55798 6 1793 1.244981527 1.251044989 +::1:80 ::1:55804 6 1793 2.274186134 2.280535221 +::1:80 ::1:55814 6 1793 10.634369135 10.640859842 +::1:80 ::1:55820 6 1793 11.249608517 11.255659819 +::1:80 ::1:55792 6 1792 0.053363800 0.059682608 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 17.258858442 17.259389877 +::1:80 ::1:55794 6 1788 0.162490129 0.169479370 +::1:80 ::1:55824 6 1788 15.929813623 15.935754538 +::1:80 ::1:55826 6 1788 16.115781307 16.121617794 +::1:80 ::1:55806 6 1784 3.110120773 3.115983486 +127.0.0.1:57608 127.0.0.1:57631 93 1236 0.062810659 18.589055300 +127.0.0.1:57470 127.0.0.1:57477 93 1236 0.169059038 18.689973593 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55809 2 1202 3.988270998 3.992622375 +::1:808 ::1:55800 2 1150 10.775424480 10.775903463 +10.100.0.48:1433 10.100.0.48:49792 8 1028 6.502753735 16.510815144 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55816 6 913 10.902887821 10.922041655 +127.0.0.1:57684 127.0.0.1:57745 75 900 0.167661905 18.690016031 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55815 6 900 10.875511408 10.900154114 +127.0.0.1:57484 127.0.0.1:57746 74 888 0.240238190 18.284677505 +127.0.0.1:57485 127.0.0.1:57747 74 888 0.246387959 18.317572594 +10.100.0.48:1433 10.100.0.48:49805 8 699 9.010288954 14.994610786 +::1:808 ::1:49859 1 499 6.587044954 6.587044954 +::1:80 ::1:55791 2 332 0.045978069 0.049385309 +::1:80 ::1:55793 2 332 0.154828310 0.158290625 +::1:80 ::1:55795 2 332 0.622754097 0.625799894 +::1:80 ::1:55797 2 332 1.237874269 1.241189241 +::1:80 ::1:55803 2 332 2.266849518 2.270110369 +::1:80 ::1:55805 2 332 3.103632689 3.106730223 +::1:80 ::1:55810 2 332 4.038357973 4.041645765 +::1:80 ::1:55813 2 332 10.627416611 10.631248236 +::1:80 ::1:55817 2 332 11.070181131 11.073603868 +::1:80 ::1:55819 2 332 11.242125511 11.245388508 +::1:80 ::1:55823 2 332 15.923377514 15.926571369 +::1:80 ::1:55825 2 332 16.107869864 16.113190651 +::1:49704 ::1:49829 2 270 14.843992710 14.844303846 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55799 1 52 1.268512487 1.268512487 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55821 1 52 11.269186974 11.269186974 +127.0.0.1:61590 127.0.0.1:63342 4 24 2.856586933 17.859204531 +127.0.0.1:49787 127.0.0.1:49788 19 19 3.909897327 18.615632057 +10.100.0.48:1433 10.100.0.48:50767 2 2 5.997699976 6.166988850 +10.100.0.48:1433 10.100.0.48:49936 1 1 17.574271917 17.574271917 +10.100.0.48:1433 10.100.0.48:49934 1 1 18.115643978 18.115643978 +10.100.0.48:1433 10.100.0.48:49935 1 1 18.115720510 18.115720510 +10.100.0.48:1433 10.100.0.48:49933 1 1 18.166782856 18.166782856 diff --git a/captures/015-loopback-subscribe-invalid/tcp-payload-57415-57433-decoded.tsv b/captures/015-loopback-subscribe-invalid/tcp-payload-57415-57433-decoded.tsv new file mode 100644 index 0000000..ccd8112 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-payload-57415-57433-decoded.tsv @@ -0,0 +1,1986 @@ +frame time_relative direction src dst seq payload_len first_i32 second_i32 third_i32 first_u32_hex length_prefixed body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +1 0.000000000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550307 12 26 703735 0 0x0000001a 0 26 703735 0 1a 00 00 00 f7 bc 0a 00 00 00 00 00 ............ +3 0.000206709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550319 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 73859072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 04 1f 00 00 00 00 00 ....T.c@.^1@......g....... +5 0.000704527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876000 12 -1 703735 0 0xffffffff 0 -1 703735 0 ff ff ff ff f7 bc 0a 00 00 00 00 00 ............ +7 0.001071453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876012 12 22 695252 0 0x00000016 0 22 695252 0 16 00 00 00 d4 9b 0a 00 00 00 00 00 ............ +9 0.001233816 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876024 22 18 2032743 0 0x00000012 1 2032743 0 196609 0 12 00 00 00 67 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +11 0.001468420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550345 12 -1 695252 0 0xffffffff 0 -1 695252 0 ff ff ff ff d4 9b 0a 00 00 00 00 00 ............ +45 0.102470875 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550357 12 101 703736 0 0x00000065 0 101 703736 0 65 00 00 00 f8 bc 0a 00 00 00 00 00 e........... +47 0.102622271 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550369 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e0 ff 01 00 00 00 00 00 26 81 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e0 ff 01 00 00 00 00 .....!...o3...............&.......?.....3...|8.. +49 0.102941036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876046 12 -1 703736 0 0xffffffff 0 -1 703736 0 ff ff ff ff f8 bc 0a 00 00 00 00 00 ............ +51 0.103073359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550470 12 26 703737 0 0x0000001a 0 26 703737 0 1a 00 00 00 f9 bc 0a 00 00 00 00 00 ............ +52 0.103083611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550482 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 73990144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 04 1f 00 00 00 00 00 ....T.c@.^1@......i....... +54 0.103318453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876058 12 -1 703737 0 0xffffffff 0 -1 703737 0 ff ff ff ff f9 bc 0a 00 00 00 00 00 ............ +56 0.104023933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876070 12 22 695253 0 0x00000016 0 22 695253 0 16 00 00 00 d5 9b 0a 00 00 00 00 00 ............ +58 0.104254723 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876082 22 18 2032745 0 0x00000012 1 2032745 0 196609 0 12 00 00 00 69 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +60 0.104513645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876104 12 52 695254 0 0x00000034 0 52 695254 0 34 00 00 00 d6 9b 0a 00 00 00 00 00 4........... +62 0.104596376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550508 12 -1 695253 0 0xffffffff 0 -1 695253 0 ff ff ff ff d5 9b 0a 00 00 00 00 00 ............ +64 0.104766369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876116 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e0 ff 01 00 00 00 00 00 00 00 34 80 28 5a 4a 01 00 00 "0...Dk.................L."".([...............4.(Z" +66 0.105042934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550520 12 -1 695254 0 0xffffffff 0 -1 695254 0 ff ff ff ff d6 9b 0a 00 00 00 00 00 ............ +68 0.105846882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550532 12 30 703738 0 0x0000001e 0 30 703738 0 1e 00 00 00 fa bc 0a 00 00 00 00 00 ............ +70 0.106059313 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550544 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 74121216 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......k........... +72 0.106498480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876168 12 -1 703738 0 0xffffffff 0 -1 703738 0 ff ff ff ff fa bc 0a 00 00 00 00 00 ............ +74 0.107019663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876180 12 26 695255 0 0x0000001a 0 26 695255 0 1a 00 00 00 d7 9b 0a 00 00 00 00 00 ............ +76 0.107231855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876192 26 22 2032747 0 0x00000016 1 2032747 0 196609 0 16 00 00 00 6b 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....k..................... +78 0.107995033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550574 12 -1 695255 0 0xffffffff 0 -1 695255 0 ff ff ff ff d7 9b 0a 00 00 00 00 00 ............ +109 0.169134617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876218 12 -2 79917 79934 0xfffffffe 0 -2 79917 79934 fe ff ff ff 2d 38 01 00 3e 38 01 00 ....-8..>8.. +118 0.205874920 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550586 12 26 703739 0 0x0000001a 0 26 703739 0 1a 00 00 00 fb bc 0a 00 00 00 00 00 ............ +120 0.206147909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550598 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 74252288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 04 1f 00 00 00 00 00 ....T.c@.^1@......m....... +122 0.206637621 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876230 12 -1 703739 0 0xffffffff 0 -1 703739 0 ff ff ff ff fb bc 0a 00 00 00 00 00 ............ +124 0.207141161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876242 12 22 695256 0 0x00000016 0 22 695256 0 16 00 00 00 d8 9b 0a 00 00 00 00 00 ............ +126 0.207307339 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876254 22 18 2032749 0 0x00000012 1 2032749 0 196609 0 12 00 00 00 6d 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +128 0.207507610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550624 12 -1 695256 0 0xffffffff 0 -1 695256 0 ff ff ff ff d8 9b 0a 00 00 00 00 00 ............ +131 0.240292788 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550636 12 -2 79935 79917 0xfffffffe 0 -2 79935 79917 fe ff ff ff 3f 38 01 00 2d 38 01 00 ....?8..-8.. +140 0.309729338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550648 12 26 703740 0 0x0000001a 0 26 703740 0 1a 00 00 00 fc bc 0a 00 00 00 00 00 ............ +142 0.309980631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550660 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 74383360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 04 1f 00 00 00 00 00 ....T.c@.^1@......o....... +144 0.310311079 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876276 12 -1 703740 0 0xffffffff 0 -1 703740 0 ff ff ff ff fc bc 0a 00 00 00 00 00 ............ +146 0.310811996 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876288 12 22 695257 0 0x00000016 0 22 695257 0 16 00 00 00 d9 9b 0a 00 00 00 00 00 ............ +148 0.311091423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876300 22 18 2032751 0 0x00000012 1 2032751 0 196609 0 12 00 00 00 6f 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +150 0.311518431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550686 12 -1 695257 0 0xffffffff 0 -1 695257 0 ff ff ff ff d9 9b 0a 00 00 00 00 00 ............ +156 0.408263206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550698 12 34 703741 0 0x00000022 0 34 703741 0 22 00 00 00 fd bc 0a 00 00 00 00 00 """..........." +158 0.408472061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550710 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -2031616 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e1 ff 01 00 00 00 00 00 58 82 0e c3 9d 01 00 00 .....!...o3...............X....... +160 0.408561230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550744 12 67 703742 0 0x00000043 0 67 703742 0 43 00 00 00 fe bc 0a 00 00 00 00 00 C........... +162 0.408643723 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550756 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e1 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 2b 66 24 94 ?.....3...|8...................=B.....&......... +164 0.408764124 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876322 12 -1 703741 0 0xffffffff 0 -1 703741 0 ff ff ff ff fd bc 0a 00 00 00 00 00 ............ +166 0.409029722 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876334 12 -1 703742 0 0xffffffff 0 -1 703742 0 ff ff ff ff fe bc 0a 00 00 00 00 00 ............ +168 0.409975529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876346 12 52 695258 0 0x00000034 0 52 695258 0 34 00 00 00 da 9b 0a 00 00 00 00 00 4........... +170 0.410133362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876358 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e1 ff 01 00 00 00 00 00 00 00 39 1c 57 5a 4a 01 00 00 "0...Dk.................L."".([...............9.WZ" +172 0.410394430 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550823 12 -1 695258 0 0xffffffff 0 -1 695258 0 ff ff ff ff da 9b 0a 00 00 00 00 00 ............ +174 0.411129236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550835 12 30 703743 0 0x0000001e 0 30 703743 0 1e 00 00 00 ff bc 0a 00 00 00 00 00 ............ +176 0.411286831 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550847 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 74514432 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 71 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......q........... +178 0.411656618 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876410 12 -1 703743 0 0xffffffff 0 -1 703743 0 ff ff ff ff ff bc 0a 00 00 00 00 00 ............ +180 0.412144661 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876422 12 26 695259 0 0x0000001a 0 26 695259 0 1a 00 00 00 db 9b 0a 00 00 00 00 00 ............ +182 0.412328005 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876434 26 22 2032753 0 0x00000016 1 2032753 0 196609 0 16 00 00 00 71 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....q..................... +184 0.412639856 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550877 12 -1 695259 0 0xffffffff 0 -1 695259 0 ff ff ff ff db 9b 0a 00 00 00 00 00 ............ +186 0.412923574 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550889 12 26 703744 0 0x0000001a 0 26 703744 0 1a 00 00 00 00 bd 0a 00 00 00 00 00 ............ +188 0.413059950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550901 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 74645504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 04 1f 00 00 00 00 00 ....T.c@.^1@......s....... +190 0.413328171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876460 12 -1 703744 0 0xffffffff 0 -1 703744 0 ff ff ff ff 00 bd 0a 00 00 00 00 00 ............ +192 0.413738489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876472 12 22 695260 0 0x00000016 0 22 695260 0 16 00 00 00 dc 9b 0a 00 00 00 00 00 ............ +194 0.413877487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876484 22 18 2032755 0 0x00000012 1 2032755 0 196609 0 12 00 00 00 73 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +196 0.414117098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550927 12 -1 695260 0 0xffffffff 0 -1 695260 0 ff ff ff ff dc 9b 0a 00 00 00 00 00 ............ +198 0.515110254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550939 12 26 703745 0 0x0000001a 0 26 703745 0 1a 00 00 00 01 bd 0a 00 00 00 00 00 ............ +200 0.515359163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550951 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 74776576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 04 1f 00 00 00 00 00 ....T.c@.^1@......u....... +202 0.515724182 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876506 12 -1 703745 0 0xffffffff 0 -1 703745 0 ff ff ff ff 01 bd 0a 00 00 00 00 00 ............ +204 0.516187191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876518 12 22 695261 0 0x00000016 0 22 695261 0 16 00 00 00 dd 9b 0a 00 00 00 00 00 ............ +206 0.516354322 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876530 22 18 2032757 0 0x00000012 1 2032757 0 196609 0 12 00 00 00 75 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +208 0.516615629 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550977 12 -1 695261 0 0xffffffff 0 -1 695261 0 ff ff ff ff dd 9b 0a 00 00 00 00 00 ............ +212 0.618111610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331550989 12 26 703746 0 0x0000001a 0 26 703746 0 1a 00 00 00 02 bd 0a 00 00 00 00 00 ............ +214 0.618278265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551001 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 74907648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 04 1f 00 00 00 00 00 ....T.c@.^1@......w....... +216 0.618746042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876552 12 -1 703746 0 0xffffffff 0 -1 703746 0 ff ff ff ff 02 bd 0a 00 00 00 00 00 ............ +218 0.619087934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876564 12 22 695262 0 0x00000016 0 22 695262 0 16 00 00 00 de 9b 0a 00 00 00 00 00 ............ +220 0.619259834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876576 22 18 2032759 0 0x00000012 1 2032759 0 196609 0 12 00 00 00 77 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +222 0.619578838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551027 12 -1 695262 0 0xffffffff 0 -1 695262 0 ff ff ff ff de 9b 0a 00 00 00 00 00 ............ +258 0.669917822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876598 12 -2 79918 79935 0xfffffffe 0 -2 79918 79935 fe ff ff ff 2e 38 01 00 3f 38 01 00 .....8..?8.. +262 0.712472916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551039 12 101 703747 0 0x00000065 0 101 703747 0 65 00 00 00 03 bd 0a 00 00 00 00 00 e........... +264 0.712639570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551051 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e2 ff 01 00 00 00 00 00 88 83 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e2 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +266 0.713052034 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876610 12 -1 703747 0 0xffffffff 0 -1 703747 0 ff ff ff ff 03 bd 0a 00 00 00 00 00 ............ +268 0.714347601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876622 12 52 695263 0 0x00000034 0 52 695263 0 34 00 00 00 df 9b 0a 00 00 00 00 00 4........... +270 0.714567423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876634 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e2 ff 01 00 00 00 00 00 00 00 fb 8d 85 5a 4a 01 00 00 "0...Dk.................L."".([..................Z" +272 0.714854240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551152 12 -1 695263 0 0xffffffff 0 -1 695263 0 ff ff ff ff df 9b 0a 00 00 00 00 00 ............ +274 0.715681791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551164 12 30 703748 0 0x0000001e 0 30 703748 0 1e 00 00 00 04 bd 0a 00 00 00 00 00 ............ +276 0.715826511 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551176 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 75038720 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 79 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......y........... +278 0.716068029 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876686 12 -1 703748 0 0xffffffff 0 -1 703748 0 ff ff ff ff 04 bd 0a 00 00 00 00 00 ............ +280 0.717089891 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876698 12 26 695264 0 0x0000001a 0 26 695264 0 1a 00 00 00 e0 9b 0a 00 00 00 00 00 ............ +282 0.717247963 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876710 26 22 2032761 0 0x00000016 1 2032761 0 196609 0 16 00 00 00 79 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....y..................... +284 0.717525721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551206 12 -1 695264 0 0xffffffff 0 -1 695264 0 ff ff ff ff e0 9b 0a 00 00 00 00 00 ............ +286 0.720939636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551218 12 26 703749 0 0x0000001a 0 26 703749 0 1a 00 00 00 05 bd 0a 00 00 00 00 00 ............ +288 0.721086740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551230 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 75169792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 04 1f 00 00 00 00 00 ....T.c@.^1@......{....... +290 0.721388817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876736 12 -1 703749 0 0xffffffff 0 -1 703749 0 ff ff ff ff 05 bd 0a 00 00 00 00 00 ............ +292 0.721784592 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876748 12 22 695265 0 0x00000016 0 22 695265 0 16 00 00 00 e1 9b 0a 00 00 00 00 00 ............ +294 0.721944332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876760 22 18 2032763 0 0x00000012 1 2032763 0 196609 0 12 00 00 00 7b 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +296 0.722199678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551256 12 -1 695265 0 0xffffffff 0 -1 695265 0 ff ff ff ff e1 9b 0a 00 00 00 00 00 ............ +298 0.741788864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551268 12 -2 79936 79918 0xfffffffe 0 -2 79936 79918 fe ff ff ff 40 38 01 00 2e 38 01 00 ....@8...8.. +326 0.823875189 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551280 12 26 703750 0 0x0000001a 0 26 703750 0 1a 00 00 00 06 bd 0a 00 00 00 00 00 ............ +328 0.824045420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551292 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 75300864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 04 1f 00 00 00 00 00 ....T.c@.^1@......}....... +330 0.824423313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876782 12 -1 703750 0 0xffffffff 0 -1 703750 0 ff ff ff ff 06 bd 0a 00 00 00 00 00 ............ +332 0.825093269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876794 12 22 695266 0 0x00000016 0 22 695266 0 16 00 00 00 e2 9b 0a 00 00 00 00 00 ............ +334 0.825252533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876806 22 18 2032765 0 0x00000012 1 2032765 0 196609 0 12 00 00 00 7d 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +336 0.825515509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551318 12 -1 695266 0 0xffffffff 0 -1 695266 0 ff ff ff ff e2 9b 0a 00 00 00 00 00 ............ +348 0.927042007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551330 12 26 703751 0 0x0000001a 0 26 703751 0 1a 00 00 00 07 bd 0a 00 00 00 00 00 ............ +350 0.927215576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551342 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 75431936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +352 0.927548647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876828 12 -1 703751 0 0xffffffff 0 -1 703751 0 ff ff ff ff 07 bd 0a 00 00 00 00 00 ............ +354 0.927979708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876840 12 22 695267 0 0x00000016 0 22 695267 0 16 00 00 00 e3 9b 0a 00 00 00 00 00 ............ +356 0.928176641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876852 22 18 2032767 0 0x00000012 1 2032767 0 196609 0 12 00 00 00 7f 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +358 0.928451777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551368 12 -1 695267 0 0xffffffff 0 -1 695267 0 ff ff ff ff e3 9b 0a 00 00 00 00 00 ............ +360 1.018158436 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551380 12 34 703752 0 0x00000022 0 34 703752 0 22 00 00 00 08 bd 0a 00 00 00 00 00 """..........." +362 1.018375397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551392 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -1900544 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e3 ff 01 00 00 00 00 00 ba 84 0e c3 9d 01 00 00 .....!...o3....................... +364 1.018500566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551426 12 67 703753 0 0x00000043 0 67 703753 0 43 00 00 00 09 bd 0a 00 00 00 00 00 C........... +366 1.018584251 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551438 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e3 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c b0 c0 48 94 ?.....3...|8...................=B.....&......... +368 1.018943310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876874 12 -1 703752 0 0xffffffff 0 -1 703752 0 ff ff ff ff 08 bd 0a 00 00 00 00 00 ............ +370 1.019158125 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876886 12 -1 703753 0 0xffffffff 0 -1 703753 0 ff ff ff ff 09 bd 0a 00 00 00 00 00 ............ +372 1.019748926 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876898 12 52 695268 0 0x00000034 0 52 695268 0 34 00 00 00 e4 9b 0a 00 00 00 00 00 4........... +374 1.019918442 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876910 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e3 ff 01 00 00 00 00 00 00 00 1a 28 b4 5a 4a 01 00 00 "0...Dk.................L."".([................(.Z" +376 1.020176411 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551505 12 -1 695268 0 0xffffffff 0 -1 695268 0 ff ff ff ff e4 9b 0a 00 00 00 00 00 ............ +378 1.020954132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551517 12 30 703754 0 0x0000001e 0 30 703754 0 1e 00 00 00 0a bd 0a 00 00 00 00 00 ............ +380 1.021087885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551529 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 75563008 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 81 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +382 1.021377802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876962 12 -1 703754 0 0xffffffff 0 -1 703754 0 ff ff ff ff 0a bd 0a 00 00 00 00 00 ............ +384 1.021814823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876974 12 26 695269 0 0x0000001a 0 26 695269 0 1a 00 00 00 e5 9b 0a 00 00 00 00 00 ............ +386 1.021967411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375876986 26 22 2032769 0 0x00000016 1 2032769 0 196609 0 16 00 00 00 81 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +388 1.022146225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551559 12 -1 695269 0 0xffffffff 0 -1 695269 0 ff ff ff ff e5 9b 0a 00 00 00 00 00 ............ +390 1.030735731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551571 12 26 703755 0 0x0000001a 0 26 703755 0 1a 00 00 00 0b bd 0a 00 00 00 00 00 ............ +392 1.030875683 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551583 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 75694080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +394 1.031220436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877012 12 -1 703755 0 0xffffffff 0 -1 703755 0 ff ff ff ff 0b bd 0a 00 00 00 00 00 ............ +396 1.031623363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877024 12 22 695270 0 0x00000016 0 22 695270 0 16 00 00 00 e6 9b 0a 00 00 00 00 00 ............ +398 1.031808615 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877036 22 18 2032771 0 0x00000012 1 2032771 0 196609 0 12 00 00 00 83 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +400 1.031985760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551609 12 -1 695270 0 0xffffffff 0 -1 695270 0 ff ff ff ff e6 9b 0a 00 00 00 00 00 ............ +404 1.133147240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551621 12 26 703756 0 0x0000001a 0 26 703756 0 1a 00 00 00 0c bd 0a 00 00 00 00 00 ............ +406 1.133374691 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551633 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 75825152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +408 1.133620977 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877058 12 -1 703756 0 0xffffffff 0 -1 703756 0 ff ff ff ff 0c bd 0a 00 00 00 00 00 ............ +410 1.134078741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877070 12 22 695271 0 0x00000016 0 22 695271 0 16 00 00 00 e7 9b 0a 00 00 00 00 00 ............ +412 1.134270668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877082 22 18 2032773 0 0x00000012 1 2032773 0 196609 0 12 00 00 00 85 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +414 1.134529352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551659 12 -1 695271 0 0xffffffff 0 -1 695271 0 ff ff ff ff e7 9b 0a 00 00 00 00 00 ............ +421 1.170273781 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877104 12 -2 79919 79936 0xfffffffe 0 -2 79919 79936 fe ff ff ff 2f 38 01 00 40 38 01 00 ..../8..@8.. +424 1.236411333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551671 12 26 703757 0 0x0000001a 0 26 703757 0 1a 00 00 00 0d bd 0a 00 00 00 00 00 ............ +426 1.236620426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551683 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 75956224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +428 1.236964226 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877116 12 -1 703757 0 0xffffffff 0 -1 703757 0 ff ff ff ff 0d bd 0a 00 00 00 00 00 ............ +433 1.237730742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877128 12 22 695272 0 0x00000016 0 22 695272 0 16 00 00 00 e8 9b 0a 00 00 00 00 00 ............ +436 1.237891197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877140 22 18 2032775 0 0x00000012 1 2032775 0 196609 0 12 00 00 00 87 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +439 1.238128662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551709 12 -1 695272 0 0xffffffff 0 -1 695272 0 ff ff ff ff e8 9b 0a 00 00 00 00 00 ............ +443 1.242640734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551721 12 -2 79937 79919 0xfffffffe 0 -2 79937 79919 fe ff ff ff 41 38 01 00 2f 38 01 00 ....A8../8.. +482 1.322579384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551733 12 101 703758 0 0x00000065 0 101 703758 0 65 00 00 00 0e bd 0a 00 00 00 00 00 e........... +484 1.322776794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551745 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e4 ff 01 00 00 00 00 00 ea 85 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e4 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +486 1.323117971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877162 12 -1 703758 0 0xffffffff 0 -1 703758 0 ff ff ff ff 0e bd 0a 00 00 00 00 00 ............ +488 1.323882818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877174 12 52 695273 0 0x00000034 0 52 695273 0 34 00 00 00 e9 9b 0a 00 00 00 00 00 4........... +490 1.324043751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877186 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e4 ff 01 00 00 00 00 00 00 00 76 90 e2 5a 4a 01 00 00 "0...Dk.................L."".([...............v..Z" +492 1.324366808 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551846 12 -1 695273 0 0xffffffff 0 -1 695273 0 ff ff ff ff e9 9b 0a 00 00 00 00 00 ............ +494 1.325407267 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551858 12 30 703759 0 0x0000001e 0 30 703759 0 1e 00 00 00 0f bd 0a 00 00 00 00 00 ............ +496 1.325557470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551870 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 76087296 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 89 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +498 1.325834274 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877238 12 -1 703759 0 0xffffffff 0 -1 703759 0 ff ff ff ff 0f bd 0a 00 00 00 00 00 ............ +500 1.326236963 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877250 12 26 695274 0 0x0000001a 0 26 695274 0 1a 00 00 00 ea 9b 0a 00 00 00 00 00 ............ +502 1.326435566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877262 26 22 2032777 0 0x00000016 1 2032777 0 196609 0 16 00 00 00 89 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +504 1.326604605 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551900 12 -1 695274 0 0xffffffff 0 -1 695274 0 ff ff ff ff ea 9b 0a 00 00 00 00 00 ............ +506 1.339797735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551912 12 26 703760 0 0x0000001a 0 26 703760 0 1a 00 00 00 10 bd 0a 00 00 00 00 00 ............ +508 1.339958906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551924 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 76218368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +510 1.340285778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877288 12 -1 703760 0 0xffffffff 0 -1 703760 0 ff ff ff ff 10 bd 0a 00 00 00 00 00 ............ +512 1.340877771 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877300 12 22 695275 0 0x00000016 0 22 695275 0 16 00 00 00 eb 9b 0a 00 00 00 00 00 ............ +514 1.341030359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877312 22 18 2032779 0 0x00000012 1 2032779 0 196609 0 12 00 00 00 8b 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +516 1.341273546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551950 12 -1 695275 0 0xffffffff 0 -1 695275 0 ff ff ff ff eb 9b 0a 00 00 00 00 00 ............ +522 1.443237782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551962 12 26 703761 0 0x0000001a 0 26 703761 0 1a 00 00 00 11 bd 0a 00 00 00 00 00 ............ +524 1.443481922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331551974 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 76349440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +526 1.443904400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877334 12 -1 703761 0 0xffffffff 0 -1 703761 0 ff ff ff ff 11 bd 0a 00 00 00 00 00 ............ +528 1.444427729 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877346 12 22 695276 0 0x00000016 0 22 695276 0 16 00 00 00 ec 9b 0a 00 00 00 00 00 ............ +530 1.444596291 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877358 22 18 2032781 0 0x00000012 1 2032781 0 196609 0 12 00 00 00 8d 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +532 1.444960594 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552000 12 -1 695276 0 0xffffffff 0 -1 695276 0 ff ff ff ff ec 9b 0a 00 00 00 00 00 ............ +534 1.546433210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552012 12 26 703762 0 0x0000001a 0 26 703762 0 1a 00 00 00 12 bd 0a 00 00 00 00 00 ............ +536 1.546647310 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552024 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 76480512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +538 1.546978951 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877380 12 -1 703762 0 0xffffffff 0 -1 703762 0 ff ff ff ff 12 bd 0a 00 00 00 00 00 ............ +540 1.547522306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877392 12 22 695277 0 0x00000016 0 22 695277 0 16 00 00 00 ed 9b 0a 00 00 00 00 00 ............ +542 1.547683001 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877404 22 18 2032783 0 0x00000012 1 2032783 0 196609 0 12 00 00 00 8f 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +544 1.547975063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552050 12 -1 695277 0 0xffffffff 0 -1 695277 0 ff ff ff ff ed 9b 0a 00 00 00 00 00 ............ +548 1.627306461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552062 12 101 703763 0 0x00000065 0 101 703763 0 65 00 00 00 13 bd 0a 00 00 00 00 00 e........... +550 1.627545118 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552074 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e5 ff 01 00 00 00 00 00 1b 87 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e5 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +552 1.627912283 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877426 12 -1 703763 0 0xffffffff 0 -1 703763 0 ff ff ff ff 13 bd 0a 00 00 00 00 00 ............ +554 1.629184723 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877438 12 52 695278 0 0x00000034 0 52 695278 0 34 00 00 00 ee 9b 0a 00 00 00 00 00 4........... +556 1.629429817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877450 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e5 ff 01 00 00 00 00 00 00 00 b7 24 11 5b 4a 01 00 00 "0...Dk.................L."".([................$.[" +558 1.629743814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552175 12 -1 695278 0 0xffffffff 0 -1 695278 0 ff ff ff ff ee 9b 0a 00 00 00 00 00 ............ +560 1.630514622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552187 12 30 703764 0 0x0000001e 0 30 703764 0 1e 00 00 00 14 bd 0a 00 00 00 00 00 ............ +562 1.630693674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552199 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 76611584 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 91 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +564 1.631197691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877502 12 -1 703764 0 0xffffffff 0 -1 703764 0 ff ff ff ff 14 bd 0a 00 00 00 00 00 ............ +566 1.631555080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877514 12 26 695279 0 0x0000001a 0 26 695279 0 1a 00 00 00 ef 9b 0a 00 00 00 00 00 ............ +568 1.631754160 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877526 26 22 2032785 0 0x00000016 1 2032785 0 196609 0 16 00 00 00 91 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +570 1.632047653 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552229 12 -1 695279 0 0xffffffff 0 -1 695279 0 ff ff ff ff ef 9b 0a 00 00 00 00 00 ............ +572 1.649816513 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552241 12 26 703765 0 0x0000001a 0 26 703765 0 1a 00 00 00 15 bd 0a 00 00 00 00 00 ............ +574 1.649982214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552253 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 76742656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +576 1.650280237 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877552 12 -1 703765 0 0xffffffff 0 -1 703765 0 ff ff ff ff 15 bd 0a 00 00 00 00 00 ............ +578 1.652096510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877564 12 22 695280 0 0x00000016 0 22 695280 0 16 00 00 00 f0 9b 0a 00 00 00 00 00 ............ +580 1.652254105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877576 22 18 2032787 0 0x00000012 1 2032787 0 196609 0 12 00 00 00 93 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +582 1.652496815 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552279 12 -1 695280 0 0xffffffff 0 -1 695280 0 ff ff ff ff f0 9b 0a 00 00 00 00 00 ............ +588 1.671928406 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877598 12 -2 79920 79937 0xfffffffe 0 -2 79920 79937 fe ff ff ff 30 38 01 00 41 38 01 00 ....08..A8.. +593 1.743787050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552291 12 -2 79938 79920 0xfffffffe 0 -2 79938 79920 fe ff ff ff 42 38 01 00 30 38 01 00 ....B8..08.. +600 1.753823280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552303 12 26 703766 0 0x0000001a 0 26 703766 0 1a 00 00 00 16 bd 0a 00 00 00 00 00 ............ +602 1.754026651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552315 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 76873728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +604 1.754342079 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877610 12 -1 703766 0 0xffffffff 0 -1 703766 0 ff ff ff ff 16 bd 0a 00 00 00 00 00 ............ +606 1.754978895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877622 12 22 695281 0 0x00000016 0 22 695281 0 16 00 00 00 f1 9b 0a 00 00 00 00 00 ............ +608 1.755172968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877634 22 18 2032789 0 0x00000012 1 2032789 0 196609 0 12 00 00 00 95 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +610 1.755432367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552341 12 -1 695281 0 0xffffffff 0 -1 695281 0 ff ff ff ff f1 9b 0a 00 00 00 00 00 ............ +700 1.858482361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552353 12 26 703767 0 0x0000001a 0 26 703767 0 1a 00 00 00 17 bd 0a 00 00 00 00 00 ............ +703 1.858655691 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552365 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 77004800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +706 1.859002829 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877656 12 -1 703767 0 0xffffffff 0 -1 703767 0 ff ff ff ff 17 bd 0a 00 00 00 00 00 ............ +708 1.859613180 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877668 12 22 695282 0 0x00000016 0 22 695282 0 16 00 00 00 f2 9b 0a 00 00 00 00 00 ............ +710 1.859795809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877680 22 18 2032791 0 0x00000012 1 2032791 0 196609 0 12 00 00 00 97 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +712 1.860054970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552391 12 -1 695282 0 0xffffffff 0 -1 695282 0 ff ff ff ff f2 9b 0a 00 00 00 00 00 ............ +776 1.932707787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552403 12 101 703768 0 0x00000065 0 101 703768 0 65 00 00 00 18 bd 0a 00 00 00 00 00 e........... +778 1.932852268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552415 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e6 ff 01 00 00 00 00 00 4c 88 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e6 ff 01 00 00 00 00 .....!...o3...............L.......?.....3...|8.. +780 1.933205843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877702 12 -1 703768 0 0xffffffff 0 -1 703768 0 ff ff ff ff 18 bd 0a 00 00 00 00 00 ............ +782 1.934444904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877714 12 52 695283 0 0x00000034 0 52 695283 0 34 00 00 00 f3 9b 0a 00 00 00 00 00 4........... +784 1.934622526 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877726 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e6 ff 01 00 00 00 00 00 00 00 9c b5 3f 5b 4a 01 00 00 "0...Dk.................L."".([.................?[" +786 1.934938669 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552516 12 -1 695283 0 0xffffffff 0 -1 695283 0 ff ff ff ff f3 9b 0a 00 00 00 00 00 ............ +788 1.935834408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552528 12 30 703769 0 0x0000001e 0 30 703769 0 1e 00 00 00 19 bd 0a 00 00 00 00 00 ............ +790 1.935993195 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552540 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 77135872 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 99 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +792 1.936268330 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877778 12 -1 703769 0 0xffffffff 0 -1 703769 0 ff ff ff ff 19 bd 0a 00 00 00 00 00 ............ +794 1.936633825 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877790 12 26 695284 0 0x0000001a 0 26 695284 0 1a 00 00 00 f4 9b 0a 00 00 00 00 00 ............ +796 1.936819315 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877802 26 22 2032793 0 0x00000016 1 2032793 0 196609 0 16 00 00 00 99 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +798 1.937003374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552570 12 -1 695284 0 0xffffffff 0 -1 695284 0 ff ff ff ff f4 9b 0a 00 00 00 00 00 ............ +868 1.961331606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552582 12 26 703770 0 0x0000001a 0 26 703770 0 1a 00 00 00 1a bd 0a 00 00 00 00 00 ............ +870 1.961476564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552594 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 77266944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +872 1.961841822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877828 12 -1 703770 0 0xffffffff 0 -1 703770 0 ff ff ff ff 1a bd 0a 00 00 00 00 00 ............ +874 1.963051081 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877840 12 22 695285 0 0x00000016 0 22 695285 0 16 00 00 00 f5 9b 0a 00 00 00 00 00 ............ +876 1.963211060 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877852 22 18 2032795 0 0x00000012 1 2032795 0 196609 0 12 00 00 00 9b 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +878 1.963476181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552620 12 -1 695285 0 0xffffffff 0 -1 695285 0 ff ff ff ff f5 9b 0a 00 00 00 00 00 ............ +949 2.064859152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552632 12 26 703771 0 0x0000001a 0 26 703771 0 1a 00 00 00 1b bd 0a 00 00 00 00 00 ............ +951 2.065034628 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552644 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 77398016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +953 2.065421104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877874 12 -1 703771 0 0xffffffff 0 -1 703771 0 ff ff ff ff 1b bd 0a 00 00 00 00 00 ............ +957 2.066258430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877886 12 22 695286 0 0x00000016 0 22 695286 0 16 00 00 00 f6 9b 0a 00 00 00 00 00 ............ +959 2.066417217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877898 22 18 2032797 0 0x00000012 1 2032797 0 196609 0 12 00 00 00 9d 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +961 2.066680431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552670 12 -1 695286 0 0xffffffff 0 -1 695286 0 ff ff ff ff f6 9b 0a 00 00 00 00 00 ............ +964 2.169023752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552682 12 26 703772 0 0x0000001a 0 26 703772 0 1a 00 00 00 1c bd 0a 00 00 00 00 00 ............ +966 2.169231415 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552694 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 77529088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +968 2.169668198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877920 12 -1 703772 0 0xffffffff 0 -1 703772 0 ff ff ff ff 1c bd 0a 00 00 00 00 00 ............ +973 2.170121431 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877932 12 22 695287 0 0x00000016 0 22 695287 0 16 00 00 00 f7 9b 0a 00 00 00 00 00 ............ +976 2.170298576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877944 22 18 2032799 0 0x00000012 1 2032799 0 196609 0 12 00 00 00 9f 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +978 2.170610428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552720 12 -1 695287 0 0xffffffff 0 -1 695287 0 ff ff ff ff f7 9b 0a 00 00 00 00 00 ............ +980 2.172849894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877966 12 -2 79921 79938 0xfffffffe 0 -2 79921 79938 fe ff ff ff 31 38 01 00 42 38 01 00 ....18..B8.. +1061 2.237288713 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552732 12 101 703773 0 0x00000065 0 101 703773 0 65 00 00 00 1d bd 0a 00 00 00 00 00 e........... +1063 2.237442732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552744 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e7 ff 01 00 00 00 00 00 7d 89 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e7 ff 01 00 00 00 00 .....!...o3...............}.......?.....3...|8.. +1065 2.237748623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877978 12 -1 703773 0 0xffffffff 0 -1 703773 0 ff ff ff ff 1d bd 0a 00 00 00 00 00 ............ +1067 2.238835573 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375877990 12 52 695288 0 0x00000034 0 52 695288 0 34 00 00 00 f8 9b 0a 00 00 00 00 00 4........... +1069 2.239044428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878002 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e7 ff 01 00 00 00 00 00 00 00 b2 2a 6e 5b 4a 01 00 00 "0...Dk.................L."".([................*n[" +1071 2.239326954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552845 12 -1 695288 0 0xffffffff 0 -1 695288 0 ff ff ff ff f8 9b 0a 00 00 00 00 00 ............ +1073 2.240289450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552857 12 30 703774 0 0x0000001e 0 30 703774 0 1e 00 00 00 1e bd 0a 00 00 00 00 00 ............ +1075 2.240421772 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552869 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 77660160 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a1 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1077 2.240720272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878054 12 -1 703774 0 0xffffffff 0 -1 703774 0 ff ff ff ff 1e bd 0a 00 00 00 00 00 ............ +1079 2.241080999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878066 12 26 695289 0 0x0000001a 0 26 695289 0 1a 00 00 00 f9 9b 0a 00 00 00 00 00 ............ +1081 2.241221905 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878078 26 22 2032801 0 0x00000016 1 2032801 0 196609 0 16 00 00 00 a1 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1083 2.241514206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552899 12 -1 695289 0 0xffffffff 0 -1 695289 0 ff ff ff ff f9 9b 0a 00 00 00 00 00 ............ +1085 2.244536638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552911 12 -2 79939 79921 0xfffffffe 0 -2 79939 79921 fe ff ff ff 43 38 01 00 31 38 01 00 ....C8..18.. +1100 2.271704674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552923 12 26 703775 0 0x0000001a 0 26 703775 0 1a 00 00 00 1f bd 0a 00 00 00 00 00 ............ +1102 2.271854877 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552935 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 77791232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1104 2.272119999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878104 12 -1 703775 0 0xffffffff 0 -1 703775 0 ff ff ff ff 1f bd 0a 00 00 00 00 00 ............ +1110 2.272737503 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878116 12 22 695290 0 0x00000016 0 22 695290 0 16 00 00 00 fa 9b 0a 00 00 00 00 00 ............ +1112 2.272929430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878128 22 18 2032803 0 0x00000012 1 2032803 0 196609 0 12 00 00 00 a3 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1114 2.273148775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552961 12 -1 695290 0 0xffffffff 0 -1 695290 0 ff ff ff ff fa 9b 0a 00 00 00 00 00 ............ +1140 2.374829292 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552973 12 26 703776 0 0x0000001a 0 26 703776 0 1a 00 00 00 20 bd 0a 00 00 00 00 00 .... ....... +1142 2.375027418 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331552985 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 77922304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1144 2.375455379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878150 12 -1 703776 0 0xffffffff 0 -1 703776 0 ff ff ff ff 20 bd 0a 00 00 00 00 00 .... ....... +1146 2.376164198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878162 12 22 695291 0 0x00000016 0 22 695291 0 16 00 00 00 fb 9b 0a 00 00 00 00 00 ............ +1148 2.376311541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878174 22 18 2032805 0 0x00000012 1 2032805 0 196609 0 12 00 00 00 a5 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1152 2.376590014 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553011 12 -1 695291 0 0xffffffff 0 -1 695291 0 ff ff ff ff fb 9b 0a 00 00 00 00 00 ............ +1155 2.478275299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553023 12 26 703777 0 0x0000001a 0 26 703777 0 1a 00 00 00 21 bd 0a 00 00 00 00 00 ....!....... +1157 2.478496075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553035 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 78053376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1159 2.478874922 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878196 12 -1 703777 0 0xffffffff 0 -1 703777 0 ff ff ff ff 21 bd 0a 00 00 00 00 00 ....!....... +1161 2.479265928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878208 12 22 695292 0 0x00000016 0 22 695292 0 16 00 00 00 fc 9b 0a 00 00 00 00 00 ............ +1163 2.479529381 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878220 22 18 2032807 0 0x00000012 1 2032807 0 196609 0 12 00 00 00 a7 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1165 2.479799986 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553061 12 -1 695292 0 0xffffffff 0 -1 695292 0 ff ff ff ff fc 9b 0a 00 00 00 00 00 ............ +1168 2.541265726 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553073 12 101 703778 0 0x00000065 0 101 703778 0 65 00 00 00 22 bd 0a 00 00 00 00 00 "e...""......." +1170 2.541438580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553085 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e8 ff 01 00 00 00 00 00 ad 8a 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e8 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +1172 2.541854143 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878242 12 -1 703778 0 0xffffffff 0 -1 703778 0 ff ff ff ff 22 bd 0a 00 00 00 00 00 "....""......." +1174 2.543147087 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878254 12 52 695293 0 0x00000034 0 52 695293 0 34 00 00 00 fd 9b 0a 00 00 00 00 00 4........... +1176 2.543319941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878266 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e8 ff 01 00 00 00 00 00 00 00 4a 9a 9c 5b 4a 01 00 00 "0...Dk.................L."".([...............J..[" +1178 2.543649435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553186 12 -1 695293 0 0xffffffff 0 -1 695293 0 ff ff ff ff fd 9b 0a 00 00 00 00 00 ............ +1180 2.544302940 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553198 12 30 703779 0 0x0000001e 0 30 703779 0 1e 00 00 00 23 bd 0a 00 00 00 00 00 ....#....... +1182 2.544472218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553210 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 78184448 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a9 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1184 2.544712305 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878318 12 -1 703779 0 0xffffffff 0 -1 703779 0 ff ff ff ff 23 bd 0a 00 00 00 00 00 ....#....... +1186 2.545269966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878330 12 26 695294 0 0x0000001a 0 26 695294 0 1a 00 00 00 fe 9b 0a 00 00 00 00 00 ............ +1188 2.545468807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878342 26 22 2032809 0 0x00000016 1 2032809 0 196609 0 16 00 00 00 a9 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1190 2.545720100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553240 12 -1 695294 0 0xffffffff 0 -1 695294 0 ff ff ff ff fe 9b 0a 00 00 00 00 00 ............ +1194 2.581744194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553252 12 26 703780 0 0x0000001a 0 26 703780 0 1a 00 00 00 24 bd 0a 00 00 00 00 00 ....$....... +1196 2.581887722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553264 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 78315520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1198 2.582368612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878368 12 -1 703780 0 0xffffffff 0 -1 703780 0 ff ff ff ff 24 bd 0a 00 00 00 00 00 ....$....... +1200 2.582859993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878380 12 22 695295 0 0x00000016 0 22 695295 0 16 00 00 00 ff 9b 0a 00 00 00 00 00 ............ +1202 2.583028316 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878392 22 18 2032811 0 0x00000012 1 2032811 0 196609 0 12 00 00 00 ab 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1204 2.583323240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553290 12 -1 695295 0 0xffffffff 0 -1 695295 0 ff ff ff ff ff 9b 0a 00 00 00 00 00 ............ +1211 2.673114300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878414 12 -2 79922 79939 0xfffffffe 0 -2 79922 79939 fe ff ff ff 32 38 01 00 43 38 01 00 ....28..C8.. +1215 2.684276342 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553302 12 26 703781 0 0x0000001a 0 26 703781 0 1a 00 00 00 25 bd 0a 00 00 00 00 00 ....%....... +1217 2.684518814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553314 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 78446592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1219 2.684899569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878426 12 -1 703781 0 0xffffffff 0 -1 703781 0 ff ff ff ff 25 bd 0a 00 00 00 00 00 ....%....... +1221 2.685411453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878438 12 22 695296 0 0x00000016 0 22 695296 0 16 00 00 00 00 9c 0a 00 00 00 00 00 ............ +1223 2.685614109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878450 22 18 2032813 0 0x00000012 1 2032813 0 196609 0 12 00 00 00 ad 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1225 2.685889244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553340 12 -1 695296 0 0xffffffff 0 -1 695296 0 ff ff ff ff 00 9c 0a 00 00 00 00 00 ............ +1227 2.745963335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553352 12 -2 79940 79922 0xfffffffe 0 -2 79940 79922 fe ff ff ff 44 38 01 00 32 38 01 00 ....D8..28.. +1238 2.787873507 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553364 12 26 703782 0 0x0000001a 0 26 703782 0 1a 00 00 00 26 bd 0a 00 00 00 00 00 ....&....... +1240 2.788132429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553376 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 78577664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1242 2.788722754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878472 12 -1 703782 0 0xffffffff 0 -1 703782 0 ff ff ff ff 26 bd 0a 00 00 00 00 00 ....&....... +1244 2.789257050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878484 12 22 695297 0 0x00000016 0 22 695297 0 16 00 00 00 01 9c 0a 00 00 00 00 00 ............ +1246 2.789431095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878496 22 18 2032815 0 0x00000012 1 2032815 0 196609 0 12 00 00 00 af 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1248 2.789789915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553402 12 -1 695297 0 0xffffffff 0 -1 695297 0 ff ff ff ff 01 9c 0a 00 00 00 00 00 ............ +1250 2.845260382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553414 12 101 703783 0 0x00000065 0 101 703783 0 65 00 00 00 27 bd 0a 00 00 00 00 00 e...'....... +1252 2.845522165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553426 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e9 ff 01 00 00 00 00 00 dc 8b 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e9 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +1254 2.846090794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878518 12 -1 703783 0 0xffffffff 0 -1 703783 0 ff ff ff ff 27 bd 0a 00 00 00 00 00 ....'....... +1256 2.847286224 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878530 12 52 695298 0 0x00000034 0 52 695298 0 34 00 00 00 02 9c 0a 00 00 00 00 00 4........... +1258 2.847498417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878542 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e9 ff 01 00 00 00 00 00 00 00 c9 02 cb 5b 4a 01 00 00 "0...Dk.................L."".([..................[" +1260 2.847765446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553527 12 -1 695298 0 0xffffffff 0 -1 695298 0 ff ff ff ff 02 9c 0a 00 00 00 00 00 ............ +1262 2.848522425 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553539 12 30 703784 0 0x0000001e 0 30 703784 0 1e 00 00 00 28 bd 0a 00 00 00 00 00 ....(....... +1264 2.848666191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553551 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 78708736 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b1 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1266 2.849024534 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878594 12 -1 703784 0 0xffffffff 0 -1 703784 0 ff ff ff ff 28 bd 0a 00 00 00 00 00 ....(....... +1268 2.849471807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878606 12 26 695299 0 0x0000001a 0 26 695299 0 1a 00 00 00 03 9c 0a 00 00 00 00 00 ............ +1270 2.849631786 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878618 26 22 2032817 0 0x00000016 1 2032817 0 196609 0 16 00 00 00 b1 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1272 2.849863768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553581 12 -1 695299 0 0xffffffff 0 -1 695299 0 ff ff ff ff 03 9c 0a 00 00 00 00 00 ............ +1281 2.891750574 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553593 12 26 703785 0 0x0000001a 0 26 703785 0 1a 00 00 00 29 bd 0a 00 00 00 00 00 ....)....... +1283 2.891927242 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553605 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 78839808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1285 2.892199993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878644 12 -1 703785 0 0xffffffff 0 -1 703785 0 ff ff ff ff 29 bd 0a 00 00 00 00 00 ....)....... +1287 2.892867088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878656 12 22 695300 0 0x00000016 0 22 695300 0 16 00 00 00 04 9c 0a 00 00 00 00 00 ............ +1289 2.893030167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878668 22 18 2032819 0 0x00000012 1 2032819 0 196609 0 12 00 00 00 b3 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1291 2.893330336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553631 12 -1 695300 0 0xffffffff 0 -1 695300 0 ff ff ff ff 04 9c 0a 00 00 00 00 00 ............ +1294 2.995004892 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553643 12 26 703786 0 0x0000001a 0 26 703786 0 1a 00 00 00 2a bd 0a 00 00 00 00 00 ....*....... +1296 2.995189428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553655 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 78970880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1298 2.995586395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878690 12 -1 703786 0 0xffffffff 0 -1 703786 0 ff ff ff ff 2a bd 0a 00 00 00 00 00 ....*....... +1300 2.996168137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878702 12 22 695301 0 0x00000016 0 22 695301 0 16 00 00 00 05 9c 0a 00 00 00 00 00 ............ +1302 2.996356487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878714 22 18 2032821 0 0x00000012 1 2032821 0 196609 0 12 00 00 00 b5 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1304 2.996700287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553681 12 -1 695301 0 0xffffffff 0 -1 695301 0 ff ff ff ff 05 9c 0a 00 00 00 00 00 ............ +1309 3.099004507 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553693 12 26 703787 0 0x0000001a 0 26 703787 0 1a 00 00 00 2b bd 0a 00 00 00 00 00 ....+....... +1311 3.099177837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553705 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 79101952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1313 3.099644423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878736 12 -1 703787 0 0xffffffff 0 -1 703787 0 ff ff ff ff 2b bd 0a 00 00 00 00 00 ....+....... +1315 3.100097418 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878748 12 22 695302 0 0x00000016 0 22 695302 0 16 00 00 00 06 9c 0a 00 00 00 00 00 ............ +1317 3.100295305 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878760 22 18 2032823 0 0x00000012 1 2032823 0 196609 0 12 00 00 00 b7 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1319 3.100556850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553731 12 -1 695302 0 0xffffffff 0 -1 695302 0 ff ff ff ff 06 9c 0a 00 00 00 00 00 ............ +1351 3.150234699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553743 12 101 703788 0 0x00000065 0 101 703788 0 65 00 00 00 2c bd 0a 00 00 00 00 00 e...,....... +1353 3.150437832 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553755 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ea ff 01 00 00 00 00 00 0e 8d 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ea ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +1355 3.150864363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878782 12 -1 703788 0 0xffffffff 0 -1 703788 0 ff ff ff ff 2c bd 0a 00 00 00 00 00 ....,....... +1357 3.152182579 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878794 12 52 695303 0 0x00000034 0 52 695303 0 34 00 00 00 07 9c 0a 00 00 00 00 00 4........... +1359 3.152415991 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878806 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ea ff 01 00 00 00 00 00 00 00 a4 88 f9 5b 4a 01 00 00 "0...Dk.................L."".([..................[" +1361 3.152709007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553856 12 -1 695303 0 0xffffffff 0 -1 695303 0 ff ff ff ff 07 9c 0a 00 00 00 00 00 ............ +1363 3.153533697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553868 12 30 703789 0 0x0000001e 0 30 703789 0 1e 00 00 00 2d bd 0a 00 00 00 00 00 ....-....... +1365 3.153697491 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553880 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 79233024 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b9 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1367 3.153986692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878858 12 -1 703789 0 0xffffffff 0 -1 703789 0 ff ff ff ff 2d bd 0a 00 00 00 00 00 ....-....... +1369 3.154540539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878870 12 26 695304 0 0x0000001a 0 26 695304 0 1a 00 00 00 08 9c 0a 00 00 00 00 00 ............ +1371 3.154835939 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878882 26 22 2032825 0 0x00000016 1 2032825 0 196609 0 16 00 00 00 b9 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1373 3.155107021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553910 12 -1 695304 0 0xffffffff 0 -1 695304 0 ff ff ff ff 08 9c 0a 00 00 00 00 00 ............ +1379 3.174111128 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878908 12 -2 79923 79940 0xfffffffe 0 -2 79923 79940 fe ff ff ff 33 38 01 00 44 38 01 00 ....38..D8.. +1384 3.202062368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553922 12 26 703790 0 0x0000001a 0 26 703790 0 1a 00 00 00 2e bd 0a 00 00 00 00 00 ............ +1386 3.202246904 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553934 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 79364096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1388 3.202700138 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878920 12 -1 703790 0 0xffffffff 0 -1 703790 0 ff ff ff ff 2e bd 0a 00 00 00 00 00 ............ +1390 3.203165770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878932 12 22 695305 0 0x00000016 0 22 695305 0 16 00 00 00 09 9c 0a 00 00 00 00 00 ............ +1392 3.203382730 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878944 22 18 2032827 0 0x00000012 1 2032827 0 196609 0 12 00 00 00 bb 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1394 3.203672647 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553960 12 -1 695305 0 0xffffffff 0 -1 695305 0 ff ff ff ff 09 9c 0a 00 00 00 00 00 ............ +1397 3.246703625 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553972 12 -2 79941 79923 0xfffffffe 0 -2 79941 79923 fe ff ff ff 45 38 01 00 33 38 01 00 ....E8..38.. +1415 3.305894613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553984 12 26 703791 0 0x0000001a 0 26 703791 0 1a 00 00 00 2f bd 0a 00 00 00 00 00 ..../....... +1417 3.306055307 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331553996 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 79495168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1419 3.306419849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878966 12 -1 703791 0 0xffffffff 0 -1 703791 0 ff ff ff ff 2f bd 0a 00 00 00 00 00 ..../....... +1421 3.308484793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878978 12 22 695306 0 0x00000016 0 22 695306 0 16 00 00 00 0a 9c 0a 00 00 00 00 00 ............ +1423 3.308684111 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375878990 22 18 2032829 0 0x00000012 1 2032829 0 196609 0 12 00 00 00 bd 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1425 3.308958769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554022 12 -1 695306 0 0xffffffff 0 -1 695306 0 ff ff ff ff 0a 9c 0a 00 00 00 00 00 ............ +1433 3.411805153 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554034 12 26 703792 0 0x0000001a 0 26 703792 0 1a 00 00 00 30 bd 0a 00 00 00 00 00 ....0....... +1435 3.412084579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554046 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 79626240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1437 3.412386656 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879012 12 -1 703792 0 0xffffffff 0 -1 703792 0 ff ff ff ff 30 bd 0a 00 00 00 00 00 ....0....... +1439 3.413025379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879024 12 22 695307 0 0x00000016 0 22 695307 0 16 00 00 00 0b 9c 0a 00 00 00 00 00 ............ +1441 3.413248539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879036 22 18 2032831 0 0x00000012 1 2032831 0 196609 0 12 00 00 00 bf 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1443 3.413527727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554072 12 -1 695307 0 0xffffffff 0 -1 695307 0 ff ff ff ff 0b 9c 0a 00 00 00 00 00 ............ +1445 3.454925537 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554084 12 101 703793 0 0x00000065 0 101 703793 0 65 00 00 00 31 bd 0a 00 00 00 00 00 e...1....... +1447 3.455090523 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554096 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 eb ff 01 00 00 00 00 00 3e 8e 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 eb ff 01 00 00 00 00 .....!...o3...............>.......?.....3...|8.. +1449 3.455447912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879058 12 -1 703793 0 0xffffffff 0 -1 703793 0 ff ff ff ff 31 bd 0a 00 00 00 00 00 ....1....... +1451 3.456552744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879070 12 52 695308 0 0x00000034 0 52 695308 0 34 00 00 00 0c 9c 0a 00 00 00 00 00 4........... +1453 3.456708193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879082 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 eb ff 01 00 00 00 00 00 00 00 cf fb 27 5c 4a 01 00 00 "0...Dk.................L."".([.................'\" +1455 3.456966162 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554197 12 -1 695308 0 0xffffffff 0 -1 695308 0 ff ff ff ff 0c 9c 0a 00 00 00 00 00 ............ +1457 3.457740068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554209 12 30 703794 0 0x0000001e 0 30 703794 0 1e 00 00 00 32 bd 0a 00 00 00 00 00 ....2....... +1459 3.457887411 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554221 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 79757312 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c1 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1461 3.458163261 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879134 12 -1 703794 0 0xffffffff 0 -1 703794 0 ff ff ff ff 32 bd 0a 00 00 00 00 00 ....2....... +1463 3.458716393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879146 12 26 695309 0 0x0000001a 0 26 695309 0 1a 00 00 00 0d 9c 0a 00 00 00 00 00 ............ +1465 3.458873987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879158 26 22 2032833 0 0x00000016 1 2032833 0 196609 0 16 00 00 00 c1 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1467 3.459122181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554251 12 -1 695309 0 0xffffffff 0 -1 695309 0 ff ff ff ff 0d 9c 0a 00 00 00 00 00 ............ +1469 3.514843464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554263 12 26 703795 0 0x0000001a 0 26 703795 0 1a 00 00 00 33 bd 0a 00 00 00 00 00 ....3....... +1471 3.515034914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554275 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 79888384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1473 3.515452623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879184 12 -1 703795 0 0xffffffff 0 -1 703795 0 ff ff ff ff 33 bd 0a 00 00 00 00 00 ....3....... +1475 3.516001225 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879196 12 22 695310 0 0x00000016 0 22 695310 0 16 00 00 00 0e 9c 0a 00 00 00 00 00 ............ +1477 3.516255617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879208 22 18 2032835 0 0x00000012 1 2032835 0 196609 0 12 00 00 00 c3 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1479 3.516564131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554301 12 -1 695310 0 0xffffffff 0 -1 695310 0 ff ff ff ff 0e 9c 0a 00 00 00 00 00 ............ +1483 3.617941618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554313 12 26 703796 0 0x0000001a 0 26 703796 0 1a 00 00 00 34 bd 0a 00 00 00 00 00 ....4....... +1485 3.618201733 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554325 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 80019456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1487 3.618622303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879230 12 -1 703796 0 0xffffffff 0 -1 703796 0 ff ff ff ff 34 bd 0a 00 00 00 00 00 ....4....... +1489 3.619590998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879242 12 22 695311 0 0x00000016 0 22 695311 0 16 00 00 00 0f 9c 0a 00 00 00 00 00 ............ +1491 3.619754791 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879254 22 18 2032837 0 0x00000012 1 2032837 0 196609 0 12 00 00 00 c5 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1493 3.620116472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554351 12 -1 695311 0 0xffffffff 0 -1 695311 0 ff ff ff ff 0f 9c 0a 00 00 00 00 00 ............ +1499 3.674443007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879276 12 -2 79924 79941 0xfffffffe 0 -2 79924 79941 fe ff ff ff 34 38 01 00 45 38 01 00 ....48..E8.. +1503 3.722733974 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554363 12 26 703797 0 0x0000001a 0 26 703797 0 1a 00 00 00 35 bd 0a 00 00 00 00 00 ....5....... +1505 3.722927332 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554375 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 80150528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1507 3.723309040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879288 12 -1 703797 0 0xffffffff 0 -1 703797 0 ff ff ff ff 35 bd 0a 00 00 00 00 00 ....5....... +1509 3.724076033 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879300 12 22 695312 0 0x00000016 0 22 695312 0 16 00 00 00 10 9c 0a 00 00 00 00 00 ............ +1511 3.724323511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879312 22 18 2032839 0 0x00000012 1 2032839 0 196609 0 12 00 00 00 c7 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1513 3.724604130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554401 12 -1 695312 0 0xffffffff 0 -1 695312 0 ff ff ff ff 10 9c 0a 00 00 00 00 00 ............ +1515 3.747309923 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554413 12 -2 79942 79924 0xfffffffe 0 -2 79942 79924 fe ff ff ff 46 38 01 00 34 38 01 00 ....F8..48.. +1523 3.758728027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554425 12 34 703798 0 0x00000022 0 34 703798 0 22 00 00 00 36 bd 0a 00 00 00 00 00 """...6......." +1525 3.758885622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554437 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -1310720 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ec ff 01 00 00 00 00 00 6e 8f 0e c3 9d 01 00 00 .....!...o3...............n....... +1527 3.759017706 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554471 12 67 703799 0 0x00000043 0 67 703799 0 43 00 00 00 37 bd 0a 00 00 00 00 00 C...7....... +1529 3.759104729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554483 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ec ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 d5 1a ec 94 ?.....3...|8...................=B.....&......... +1531 3.759386778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879334 12 -1 703798 0 0xffffffff 0 -1 703798 0 ff ff ff ff 36 bd 0a 00 00 00 00 00 ....6....... +1533 3.759575367 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879346 12 -1 703799 0 0xffffffff 0 -1 703799 0 ff ff ff ff 37 bd 0a 00 00 00 00 00 ....7....... +1535 3.760479212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879358 12 52 695313 0 0x00000034 0 52 695313 0 34 00 00 00 11 9c 0a 00 00 00 00 00 4........... +1537 3.760643244 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879370 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ec ff 01 00 00 00 00 00 00 00 bc 5a 56 5c 4a 01 00 00 "0...Dk.................L."".([................ZV\" +1539 3.760903120 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554550 12 -1 695313 0 0xffffffff 0 -1 695313 0 ff ff ff ff 11 9c 0a 00 00 00 00 00 ............ +1541 3.761609793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554562 12 30 703800 0 0x0000001e 0 30 703800 0 1e 00 00 00 38 bd 0a 00 00 00 00 00 ....8....... +1543 3.761746407 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554574 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 80281600 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c9 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1545 3.762108326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879422 12 -1 703800 0 0xffffffff 0 -1 703800 0 ff ff ff ff 38 bd 0a 00 00 00 00 00 ....8....... +1547 3.762443542 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879434 12 26 695314 0 0x0000001a 0 26 695314 0 1a 00 00 00 12 9c 0a 00 00 00 00 00 ............ +1549 3.762592077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879446 26 22 2032841 0 0x00000016 1 2032841 0 196609 0 16 00 00 00 c9 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1551 3.762832642 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554604 12 -1 695314 0 0xffffffff 0 -1 695314 0 ff ff ff ff 12 9c 0a 00 00 00 00 00 ............ +1555 3.825765133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554616 12 26 703801 0 0x0000001a 0 26 703801 0 1a 00 00 00 39 bd 0a 00 00 00 00 00 ....9....... +1557 3.825958490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554628 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 80412672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1559 3.826376200 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879472 12 -1 703801 0 0xffffffff 0 -1 703801 0 ff ff ff ff 39 bd 0a 00 00 00 00 00 ....9....... +1561 3.826880217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879484 12 22 695315 0 0x00000016 0 22 695315 0 16 00 00 00 13 9c 0a 00 00 00 00 00 ............ +1563 3.827118635 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879496 22 18 2032843 0 0x00000012 1 2032843 0 196609 0 12 00 00 00 cb 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1565 3.827355623 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554654 12 -1 695315 0 0xffffffff 0 -1 695315 0 ff ff ff ff 13 9c 0a 00 00 00 00 00 ............ +1580 3.930234194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554666 12 26 703802 0 0x0000001a 0 26 703802 0 1a 00 00 00 3a bd 0a 00 00 00 00 00 ....:....... +1582 3.930405140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554678 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 80543744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1584 3.930863142 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879518 12 -1 703802 0 0xffffffff 0 -1 703802 0 ff ff ff ff 3a bd 0a 00 00 00 00 00 ....:....... +1586 3.931803942 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879530 12 22 695316 0 0x00000016 0 22 695316 0 16 00 00 00 14 9c 0a 00 00 00 00 00 ............ +1588 3.932011843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879542 22 18 2032845 0 0x00000012 1 2032845 0 196609 0 12 00 00 00 cd 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1590 3.932274580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554704 12 -1 695316 0 0xffffffff 0 -1 695316 0 ff ff ff ff 14 9c 0a 00 00 00 00 00 ............ +1616 4.034457207 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554716 12 26 703803 0 0x0000001a 0 26 703803 0 1a 00 00 00 3b bd 0a 00 00 00 00 00 ....;....... +1618 4.034646273 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554728 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 80674816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1620 4.035172462 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879564 12 -1 703803 0 0xffffffff 0 -1 703803 0 ff ff ff ff 3b bd 0a 00 00 00 00 00 ....;....... +1622 4.035554886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879576 12 22 695317 0 0x00000016 0 22 695317 0 16 00 00 00 15 9c 0a 00 00 00 00 00 ............ +1624 4.035711050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879588 22 18 2032847 0 0x00000012 1 2032847 0 196609 0 12 00 00 00 cf 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1626 4.036025047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554754 12 -1 695317 0 0xffffffff 0 -1 695317 0 ff ff ff ff 15 9c 0a 00 00 00 00 00 ............ +1658 4.063813925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554766 12 101 703804 0 0x00000065 0 101 703804 0 65 00 00 00 3c bd 0a 00 00 00 00 00 e...<....... +1660 4.064050436 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554778 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ed ff 01 00 00 00 00 00 9f 90 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ed ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +1662 4.064341784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879610 12 -1 703804 0 0xffffffff 0 -1 703804 0 ff ff ff ff 3c bd 0a 00 00 00 00 00 ....<....... +1664 4.065731049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879622 12 52 695318 0 0x00000034 0 52 695318 0 34 00 00 00 16 9c 0a 00 00 00 00 00 4........... +1666 4.065883398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879634 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ed ff 01 00 00 00 00 00 00 00 84 ee 84 5c 4a 01 00 00 "0...Dk.................L."".([..................\" +1668 4.066179752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554879 12 -1 695318 0 0xffffffff 0 -1 695318 0 ff ff ff ff 16 9c 0a 00 00 00 00 00 ............ +1670 4.067065954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554891 12 30 703805 0 0x0000001e 0 30 703805 0 1e 00 00 00 3d bd 0a 00 00 00 00 00 ....=....... +1672 4.067254305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554903 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 80805888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d1 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1674 4.067648411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879686 12 -1 703805 0 0xffffffff 0 -1 703805 0 ff ff ff ff 3d bd 0a 00 00 00 00 00 ....=....... +1676 4.067993641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879698 12 26 695319 0 0x0000001a 0 26 695319 0 1a 00 00 00 17 9c 0a 00 00 00 00 00 ............ +1678 4.068238735 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879710 26 22 2032849 0 0x00000016 1 2032849 0 196609 0 16 00 00 00 d1 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1681 4.068525791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554933 12 -1 695319 0 0xffffffff 0 -1 695319 0 ff ff ff ff 17 9c 0a 00 00 00 00 00 ............ +1684 4.137307167 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554945 12 26 703806 0 0x0000001a 0 26 703806 0 1a 00 00 00 3e bd 0a 00 00 00 00 00 ....>....... +1686 4.137471676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554957 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 80936960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1688 4.137748241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879736 12 -1 703806 0 0xffffffff 0 -1 703806 0 ff ff ff ff 3e bd 0a 00 00 00 00 00 ....>....... +1690 4.138293505 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879748 12 22 695320 0 0x00000016 0 22 695320 0 16 00 00 00 18 9c 0a 00 00 00 00 00 ............ +1692 4.138449907 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879760 22 18 2032851 0 0x00000012 1 2032851 0 196609 0 12 00 00 00 d3 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1694 4.138678789 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554983 12 -1 695320 0 0xffffffff 0 -1 695320 0 ff ff ff ff 18 9c 0a 00 00 00 00 00 ............ +1700 4.175383329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879782 12 -2 79925 79942 0xfffffffe 0 -2 79925 79942 fe ff ff ff 35 38 01 00 46 38 01 00 ....58..F8.. +1704 4.240837097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331554995 12 26 703807 0 0x0000001a 0 26 703807 0 1a 00 00 00 3f bd 0a 00 00 00 00 00 ....?....... +1706 4.241055727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555007 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 81068032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1708 4.241410255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879794 12 -1 703807 0 0xffffffff 0 -1 703807 0 ff ff ff ff 3f bd 0a 00 00 00 00 00 ....?....... +1710 4.241822004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879806 12 22 695321 0 0x00000016 0 22 695321 0 16 00 00 00 19 9c 0a 00 00 00 00 00 ............ +1712 4.242026329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879818 22 18 2032853 0 0x00000012 1 2032853 0 196609 0 12 00 00 00 d5 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1714 4.242268562 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555033 12 -1 695321 0 0xffffffff 0 -1 695321 0 ff ff ff ff 19 9c 0a 00 00 00 00 00 ............ +1717 4.248213530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555045 12 -2 79943 79925 0xfffffffe 0 -2 79943 79925 fe ff ff ff 47 38 01 00 35 38 01 00 ....G8..58.. +1726 4.343436718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555057 12 26 703808 0 0x0000001a 0 26 703808 0 1a 00 00 00 40 bd 0a 00 00 00 00 00 ....@....... +1728 4.343610764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555069 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 81199104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1730 4.343988657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879840 12 -1 703808 0 0xffffffff 0 -1 703808 0 ff ff ff ff 40 bd 0a 00 00 00 00 00 ....@....... +1732 4.344412327 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879852 12 22 695322 0 0x00000016 0 22 695322 0 16 00 00 00 1a 9c 0a 00 00 00 00 00 ............ +1734 4.344573975 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879864 22 18 2032855 0 0x00000012 1 2032855 0 196609 0 12 00 00 00 d7 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1736 4.344848633 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555095 12 -1 695322 0 0xffffffff 0 -1 695322 0 ff ff ff ff 1a 9c 0a 00 00 00 00 00 ............ +1740 4.369493008 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555107 12 34 703809 0 0x00000022 0 34 703809 0 22 00 00 00 41 bd 0a 00 00 00 00 00 """...A......." +1742 4.369648218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555119 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -1179648 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ee ff 01 00 00 00 00 00 d1 91 0e c3 9d 01 00 00 .....!...o3....................... +1744 4.369816780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555153 12 67 703810 0 0x00000043 0 67 703810 0 43 00 00 00 42 bd 0a 00 00 00 00 00 C...B....... +1746 4.369902372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555165 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ee ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c 59 82 10 95 ?.....3...|8...................=B.....&......... +1748 4.370034218 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879886 12 -1 703809 0 0xffffffff 0 -1 703809 0 ff ff ff ff 41 bd 0a 00 00 00 00 00 ....A....... +1750 4.370238304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879898 12 -1 703810 0 0xffffffff 0 -1 703810 0 ff ff ff ff 42 bd 0a 00 00 00 00 00 ....B....... +1752 4.371011496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879910 12 52 695323 0 0x00000034 0 52 695323 0 34 00 00 00 1b 9c 0a 00 00 00 00 00 4........... +1754 4.371226788 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879922 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ee ff 01 00 00 00 00 00 00 00 8d 81 b3 5c 4a 01 00 00 "0...Dk.................L."".([..................\" +1756 4.371541262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555232 12 -1 695323 0 0xffffffff 0 -1 695323 0 ff ff ff ff 1b 9c 0a 00 00 00 00 00 ............ +1758 4.372267246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555244 12 30 703811 0 0x0000001e 0 30 703811 0 1e 00 00 00 43 bd 0a 00 00 00 00 00 ....C....... +1760 4.372407675 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555256 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 81330176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d9 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1762 4.372734070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879974 12 -1 703811 0 0xffffffff 0 -1 703811 0 ff ff ff ff 43 bd 0a 00 00 00 00 00 ....C....... +1764 4.373158455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879986 12 26 695324 0 0x0000001a 0 26 695324 0 1a 00 00 00 1c 9c 0a 00 00 00 00 00 ............ +1766 4.373304844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375879998 26 22 2032857 0 0x00000016 1 2032857 0 196609 0 16 00 00 00 d9 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1768 4.373532057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555286 12 -1 695324 0 0xffffffff 0 -1 695324 0 ff ff ff ff 1c 9c 0a 00 00 00 00 00 ............ +1772 4.447897434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555298 12 26 703812 0 0x0000001a 0 26 703812 0 1a 00 00 00 44 bd 0a 00 00 00 00 00 ....D....... +1774 4.448164940 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555310 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 81461248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1776 4.448514223 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880024 12 -1 703812 0 0xffffffff 0 -1 703812 0 ff ff ff ff 44 bd 0a 00 00 00 00 00 ....D....... +1778 4.449046612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880036 12 22 695325 0 0x00000016 0 22 695325 0 16 00 00 00 1d 9c 0a 00 00 00 00 00 ............ +1780 4.449291706 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880048 22 18 2032859 0 0x00000012 1 2032859 0 196609 0 12 00 00 00 db 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1782 4.449559450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555336 12 -1 695325 0 0xffffffff 0 -1 695325 0 ff ff ff ff 1d 9c 0a 00 00 00 00 00 ............ +1784 4.551373720 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555348 12 26 703813 0 0x0000001a 0 26 703813 0 1a 00 00 00 45 bd 0a 00 00 00 00 00 ....E....... +1786 4.551612854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555360 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 81592320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1788 4.552600145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880070 12 -1 703813 0 0xffffffff 0 -1 703813 0 ff ff ff ff 45 bd 0a 00 00 00 00 00 ....E....... +1790 4.553051949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880082 12 22 695326 0 0x00000016 0 22 695326 0 16 00 00 00 1e 9c 0a 00 00 00 00 00 ............ +1792 4.553275108 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880094 22 18 2032861 0 0x00000012 1 2032861 0 196609 0 12 00 00 00 dd 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1794 4.553646088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555386 12 -1 695326 0 0xffffffff 0 -1 695326 0 ff ff ff ff 1e 9c 0a 00 00 00 00 00 ............ +1800 4.655375004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555398 12 26 703814 0 0x0000001a 0 26 703814 0 1a 00 00 00 46 bd 0a 00 00 00 00 00 ....F....... +1802 4.655682564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555410 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 81723392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1804 4.656111956 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880116 12 -1 703814 0 0xffffffff 0 -1 703814 0 ff ff ff ff 46 bd 0a 00 00 00 00 00 ....F....... +1806 4.656593800 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880128 12 22 695327 0 0x00000016 0 22 695327 0 16 00 00 00 1f 9c 0a 00 00 00 00 00 ............ +1808 4.656802177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880140 22 18 2032863 0 0x00000012 1 2032863 0 196609 0 12 00 00 00 df 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1810 4.657099724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555436 12 -1 695327 0 0xffffffff 0 -1 695327 0 ff ff ff ff 1f 9c 0a 00 00 00 00 00 ............ +1816 4.673466206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555448 12 101 703815 0 0x00000065 0 101 703815 0 65 00 00 00 47 bd 0a 00 00 00 00 00 e...G....... +1818 4.673667192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555460 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ef ff 01 00 00 00 00 00 01 93 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ef ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +1820 4.674060822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880162 12 -1 703815 0 0xffffffff 0 -1 703815 0 ff ff ff ff 47 bd 0a 00 00 00 00 00 ....G....... +1822 4.675146341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880174 12 52 695328 0 0x00000034 0 52 695328 0 34 00 00 00 20 9c 0a 00 00 00 00 00 4... ....... +1824 4.675345659 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880186 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ef ff 01 00 00 00 00 00 00 00 da eb e1 5c 4a 01 00 00 "0...Dk.................L."".([..................\" +1826 4.675649405 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555561 12 -1 695328 0 0xffffffff 0 -1 695328 0 ff ff ff ff 20 9c 0a 00 00 00 00 00 .... ....... +1828 4.675863504 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880238 12 -2 79926 79943 0xfffffffe 0 -2 79926 79943 fe ff ff ff 36 38 01 00 47 38 01 00 ....68..G8.. +1832 4.676523447 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555573 12 30 703816 0 0x0000001e 0 30 703816 0 1e 00 00 00 48 bd 0a 00 00 00 00 00 ....H....... +1834 4.676722050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555585 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 81854464 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e1 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1836 4.677017927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880250 12 -1 703816 0 0xffffffff 0 -1 703816 0 ff ff ff ff 48 bd 0a 00 00 00 00 00 ....H....... +1838 4.677507401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880262 12 26 695329 0 0x0000001a 0 26 695329 0 1a 00 00 00 21 9c 0a 00 00 00 00 00 ....!....... +1840 4.677692413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880274 26 22 2032865 0 0x00000016 1 2032865 0 196609 0 16 00 00 00 e1 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1842 4.677891731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555615 12 -1 695329 0 0xffffffff 0 -1 695329 0 ff ff ff ff 21 9c 0a 00 00 00 00 00 ....!....... +1844 4.749820709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555627 12 -2 79944 79926 0xfffffffe 0 -2 79944 79926 fe ff ff ff 48 38 01 00 36 38 01 00 ....H8..68.. +1852 4.758856535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555639 12 26 703817 0 0x0000001a 0 26 703817 0 1a 00 00 00 49 bd 0a 00 00 00 00 00 ....I....... +1854 4.759021044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555651 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 81985536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1856 4.759393454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880300 12 -1 703817 0 0xffffffff 0 -1 703817 0 ff ff ff ff 49 bd 0a 00 00 00 00 00 ....I....... +1858 4.759833813 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880312 12 22 695330 0 0x00000016 0 22 695330 0 16 00 00 00 22 9c 0a 00 00 00 00 00 "....""......." +1860 4.759981871 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880324 22 18 2032867 0 0x00000012 1 2032867 0 196609 0 12 00 00 00 e3 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1862 4.760246754 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555677 12 -1 695330 0 0xffffffff 0 -1 695330 0 ff ff ff ff 22 9c 0a 00 00 00 00 00 "....""......." +1868 4.863108873 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555689 12 26 703818 0 0x0000001a 0 26 703818 0 1a 00 00 00 4a bd 0a 00 00 00 00 00 ....J....... +1870 4.863288641 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555701 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 82116608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1872 4.863562822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880346 12 -1 703818 0 0xffffffff 0 -1 703818 0 ff ff ff ff 4a bd 0a 00 00 00 00 00 ....J....... +1874 4.864157200 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880358 12 22 695331 0 0x00000016 0 22 695331 0 16 00 00 00 23 9c 0a 00 00 00 00 00 ....#....... +1876 4.864371538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880370 22 18 2032869 0 0x00000012 1 2032869 0 196609 0 12 00 00 00 e5 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1878 4.864637136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555727 12 -1 695331 0 0xffffffff 0 -1 695331 0 ff ff ff ff 23 9c 0a 00 00 00 00 00 ....#....... +1882 4.967377663 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555739 12 26 703819 0 0x0000001a 0 26 703819 0 1a 00 00 00 4b bd 0a 00 00 00 00 00 ....K....... +1884 4.967627525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555751 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 82247680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1886 4.968168497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880392 12 -1 703819 0 0xffffffff 0 -1 703819 0 ff ff ff ff 4b bd 0a 00 00 00 00 00 ....K....... +1888 4.968800068 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880404 12 22 695332 0 0x00000016 0 22 695332 0 16 00 00 00 24 9c 0a 00 00 00 00 00 ....$....... +1890 4.969005585 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880416 22 18 2032871 0 0x00000012 1 2032871 0 196609 0 12 00 00 00 e7 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1892 4.969360590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555777 12 -1 695332 0 0xffffffff 0 -1 695332 0 ff ff ff ff 24 9c 0a 00 00 00 00 00 ....$....... +1894 4.977243185 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555789 12 101 703820 0 0x00000065 0 101 703820 0 65 00 00 00 4c bd 0a 00 00 00 00 00 e...L....... +1896 4.977440119 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555801 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f0 ff 01 00 00 00 00 00 31 94 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f0 ff 01 00 00 00 00 .....!...o3...............1.......?.....3...|8.. +1898 4.977802753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880438 12 -1 703820 0 0xffffffff 0 -1 703820 0 ff ff ff ff 4c bd 0a 00 00 00 00 00 ....L....... +1900 4.979071856 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880450 12 52 695333 0 0x00000034 0 52 695333 0 34 00 00 00 25 9c 0a 00 00 00 00 00 4...%....... +1902 4.979226112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880462 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f0 ff 01 00 00 00 00 00 00 00 36 4c 10 5d 4a 01 00 00 "0...Dk.................L."".([...............6L.]" +1904 4.979499817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555902 12 -1 695333 0 0xffffffff 0 -1 695333 0 ff ff ff ff 25 9c 0a 00 00 00 00 00 ....%....... +1906 4.980583906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555914 12 30 703821 0 0x0000001e 0 30 703821 0 1e 00 00 00 4d bd 0a 00 00 00 00 00 ....M....... +1908 4.980748892 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555926 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 82378752 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e9 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1910 4.981047630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880514 12 -1 703821 0 0xffffffff 0 -1 703821 0 ff ff ff ff 4d bd 0a 00 00 00 00 00 ....M....... +1912 4.981606245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880526 12 26 695334 0 0x0000001a 0 26 695334 0 1a 00 00 00 26 9c 0a 00 00 00 00 00 ....&....... +1914 4.981770039 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880538 26 22 2032873 0 0x00000016 1 2032873 0 196609 0 16 00 00 00 e9 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1916 4.982487679 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555956 12 -1 695334 0 0xffffffff 0 -1 695334 0 ff ff ff ff 26 9c 0a 00 00 00 00 00 ....&....... +1918 5.070283413 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555968 12 26 703822 0 0x0000001a 0 26 703822 0 1a 00 00 00 4e bd 0a 00 00 00 00 00 ....N....... +1921 5.070465326 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331555980 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 82509824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1924 5.070769548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880564 12 -1 703822 0 0xffffffff 0 -1 703822 0 ff ff ff ff 4e bd 0a 00 00 00 00 00 ....N....... +1926 5.071357489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880576 12 22 695335 0 0x00000016 0 22 695335 0 16 00 00 00 27 9c 0a 00 00 00 00 00 ....'....... +1928 5.071564674 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880588 22 18 2032875 0 0x00000012 1 2032875 0 196609 0 12 00 00 00 eb 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1930 5.071914673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556006 12 -1 695335 0 0xffffffff 0 -1 695335 0 ff ff ff ff 27 9c 0a 00 00 00 00 00 ....'....... +1936 5.173751116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556018 12 26 703823 0 0x0000001a 0 26 703823 0 1a 00 00 00 4f bd 0a 00 00 00 00 00 ....O....... +1938 5.173922777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556030 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 82640896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1940 5.174209833 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880610 12 -1 703823 0 0xffffffff 0 -1 703823 0 ff ff ff ff 4f bd 0a 00 00 00 00 00 ....O....... +1942 5.174845934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880622 12 22 695336 0 0x00000016 0 22 695336 0 16 00 00 00 28 9c 0a 00 00 00 00 00 ....(....... +1944 5.175007582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880634 22 18 2032877 0 0x00000012 1 2032877 0 196609 0 12 00 00 00 ed 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1946 5.175395966 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556056 12 -1 695336 0 0xffffffff 0 -1 695336 0 ff ff ff ff 28 9c 0a 00 00 00 00 00 ....(....... +1948 5.176653862 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880656 12 -2 79927 79944 0xfffffffe 0 -2 79927 79944 fe ff ff ff 37 38 01 00 48 38 01 00 ....78..H8.. +1952 5.251734734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556068 12 -2 79945 79927 0xfffffffe 0 -2 79945 79927 fe ff ff ff 49 38 01 00 37 38 01 00 ....I8..78.. +1960 5.278134108 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556080 12 26 703824 0 0x0000001a 0 26 703824 0 1a 00 00 00 50 bd 0a 00 00 00 00 00 ....P....... +1962 5.278380632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556092 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 82771968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +1964 5.278741121 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880668 12 -1 703824 0 0xffffffff 0 -1 703824 0 ff ff ff ff 50 bd 0a 00 00 00 00 00 ....P....... +1966 5.279185772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880680 12 22 695337 0 0x00000016 0 22 695337 0 16 00 00 00 29 9c 0a 00 00 00 00 00 ....)....... +1968 5.279346943 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880692 22 18 2032879 0 0x00000012 1 2032879 0 196609 0 12 00 00 00 ef 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1970 5.279686928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556118 12 -1 695337 0 0xffffffff 0 -1 695337 0 ff ff ff ff 29 9c 0a 00 00 00 00 00 ....)....... +1972 5.282465458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556130 12 101 703825 0 0x00000065 0 101 703825 0 65 00 00 00 51 bd 0a 00 00 00 00 00 e...Q....... +1974 5.282617807 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556142 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f1 ff 01 00 00 00 00 00 62 95 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f1 ff 01 00 00 00 00 .....!...o3...............b.......?.....3...|8.. +1976 5.282910824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880714 12 -1 703825 0 0xffffffff 0 -1 703825 0 ff ff ff ff 51 bd 0a 00 00 00 00 00 ....Q....... +1978 5.283955097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880726 12 52 695338 0 0x00000034 0 52 695338 0 34 00 00 00 2a 9c 0a 00 00 00 00 00 4...*....... +1980 5.284111261 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880738 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f1 ff 01 00 00 00 00 00 00 00 d9 d2 3e 5d 4a 01 00 00 "0...Dk.................L."".([.................>]" +1982 5.284399033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556243 12 -1 695338 0 0xffffffff 0 -1 695338 0 ff ff ff ff 2a 9c 0a 00 00 00 00 00 ....*....... +1984 5.285121441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556255 12 30 703826 0 0x0000001e 0 30 703826 0 1e 00 00 00 52 bd 0a 00 00 00 00 00 ....R....... +1986 5.285290241 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556267 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 82903040 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f1 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1988 5.285620689 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880790 12 -1 703826 0 0xffffffff 0 -1 703826 0 ff ff ff ff 52 bd 0a 00 00 00 00 00 ....R....... +1992 5.285945415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880802 12 26 695339 0 0x0000001a 0 26 695339 0 1a 00 00 00 2b 9c 0a 00 00 00 00 00 ....+....... +1994 5.286087036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880814 26 22 2032881 0 0x00000016 1 2032881 0 196609 0 16 00 00 00 f1 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1996 5.286380291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556297 12 -1 695339 0 0xffffffff 0 -1 695339 0 ff ff ff ff 2b 9c 0a 00 00 00 00 00 ....+....... +2002 5.381612539 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556309 12 26 703827 0 0x0000001a 0 26 703827 0 1a 00 00 00 53 bd 0a 00 00 00 00 00 ....S....... +2004 5.381845236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556321 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 83034112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +2006 5.382239342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880840 12 -1 703827 0 0xffffffff 0 -1 703827 0 ff ff ff ff 53 bd 0a 00 00 00 00 00 ....S....... +2008 5.382881403 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880852 12 22 695340 0 0x00000016 0 22 695340 0 16 00 00 00 2c 9c 0a 00 00 00 00 00 ....,....... +2010 5.383041382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880864 22 18 2032883 0 0x00000012 1 2032883 0 196609 0 12 00 00 00 f3 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2012 5.383309603 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556347 12 -1 695340 0 0xffffffff 0 -1 695340 0 ff ff ff ff 2c 9c 0a 00 00 00 00 00 ....,....... +2014 5.484657288 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556359 12 26 703828 0 0x0000001a 0 26 703828 0 1a 00 00 00 54 bd 0a 00 00 00 00 00 ....T....... +2016 5.484842300 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556371 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 83165184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +2018 5.485357285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880886 12 -1 703828 0 0xffffffff 0 -1 703828 0 ff ff ff ff 54 bd 0a 00 00 00 00 00 ....T....... +2020 5.485858202 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880898 12 22 695341 0 0x00000016 0 22 695341 0 16 00 00 00 2d 9c 0a 00 00 00 00 00 ....-....... +2022 5.486037254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880910 22 18 2032885 0 0x00000012 1 2032885 0 196609 0 12 00 00 00 f5 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2024 5.486275911 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556397 12 -1 695341 0 0xffffffff 0 -1 695341 0 ff ff ff ff 2d 9c 0a 00 00 00 00 00 ....-....... +2039 5.586784124 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556409 12 101 703829 0 0x00000065 0 101 703829 0 65 00 00 00 55 bd 0a 00 00 00 00 00 e...U....... +2041 5.587013006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556421 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f2 ff 01 00 00 00 00 00 92 96 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f2 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +2043 5.587338924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880932 12 -1 703829 0 0xffffffff 0 -1 703829 0 ff ff ff ff 55 bd 0a 00 00 00 00 00 ....U....... +2044 5.587452412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556522 38 26 703830 0 0x0000001a 0 26 703830 0 22 1a 00 00 00 56 bd 0a 00 00 00 00 00 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 04 1f 00 00 00 00 00 ....V...........T.c@.^1@.............. +2046 5.587618828 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880944 12 -1 703830 0 0xffffffff 0 -1 703830 0 ff ff ff ff 56 bd 0a 00 00 00 00 00 ....V....... +2048 5.588369131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880956 12 22 695342 0 0x00000016 0 22 695342 0 16 00 00 00 2e 9c 0a 00 00 00 00 00 ............ +2050 5.588537216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880968 22 18 2032887 0 0x00000012 1 2032887 0 196609 0 12 00 00 00 f7 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2052 5.588681936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375880990 12 52 695343 0 0x00000034 0 52 695343 0 34 00 00 00 2f 9c 0a 00 00 00 00 00 4.../....... +2054 5.588770151 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881002 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f2 ff 01 00 00 00 00 00 00 00 e1 50 6d 5d 4a 01 00 00 "0...Dk.................L."".([................Pm]" +2055 5.588802338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556560 12 -1 695342 0 0xffffffff 0 -1 695342 0 ff ff ff ff 2e 9c 0a 00 00 00 00 00 ............ +2058 5.589043856 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556572 12 -1 695343 0 0xffffffff 0 -1 695343 0 ff ff ff ff 2f 9c 0a 00 00 00 00 00 ..../....... +2060 5.589687586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556584 12 30 703831 0 0x0000001e 0 30 703831 0 1e 00 00 00 57 bd 0a 00 00 00 00 00 ....W....... +2062 5.589833021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556596 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 83427328 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f9 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2064 5.590102196 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881054 12 -1 703831 0 0xffffffff 0 -1 703831 0 ff ff ff ff 57 bd 0a 00 00 00 00 00 ....W....... +2065 5.590461254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881066 12 26 695344 0 0x0000001a 0 26 695344 0 1a 00 00 00 30 9c 0a 00 00 00 00 00 ....0....... +2067 5.590610504 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881078 26 22 2032889 0 0x00000016 1 2032889 0 196609 0 16 00 00 00 f9 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2069 5.590878725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556626 12 -1 695344 0 0xffffffff 0 -1 695344 0 ff ff ff ff 30 9c 0a 00 00 00 00 00 ....0....... +2075 5.676671982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881104 12 -2 79928 79945 0xfffffffe 0 -2 79928 79945 fe ff ff ff 38 38 01 00 49 38 01 00 ....88..I8.. +2079 5.691720724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556638 12 26 703832 0 0x0000001a 0 26 703832 0 1a 00 00 00 58 bd 0a 00 00 00 00 00 ....X....... +2081 5.691902161 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556650 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 83558400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +2083 5.692250967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881116 12 -1 703832 0 0xffffffff 0 -1 703832 0 ff ff ff ff 58 bd 0a 00 00 00 00 00 ....X....... +2085 5.693093538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881128 12 22 695345 0 0x00000016 0 22 695345 0 16 00 00 00 31 9c 0a 00 00 00 00 00 ....1....... +2087 5.693288803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881140 22 18 2032891 0 0x00000012 1 2032891 0 196609 0 12 00 00 00 fb 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2089 5.693632603 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556676 12 -1 695345 0 0xffffffff 0 -1 695345 0 ff ff ff ff 31 9c 0a 00 00 00 00 00 ....1....... +2095 5.753365517 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556688 12 -2 79946 79928 0xfffffffe 0 -2 79946 79928 fe ff ff ff 4a 38 01 00 38 38 01 00 ....J8..88.. +2101 5.795263290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556700 12 26 703833 0 0x0000001a 0 26 703833 0 1a 00 00 00 59 bd 0a 00 00 00 00 00 ....Y....... +2103 5.795423985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556712 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 83689472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 04 1f 00 00 00 00 00 ....T.c@.^1@.............. +2105 5.795815945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881162 12 -1 703833 0 0xffffffff 0 -1 703833 0 ff ff ff ff 59 bd 0a 00 00 00 00 00 ....Y....... +2107 5.796433210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881174 12 22 695346 0 0x00000016 0 22 695346 0 16 00 00 00 32 9c 0a 00 00 00 00 00 ....2....... +2109 5.796661377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881186 22 18 2032893 0 0x00000012 1 2032893 0 196609 0 12 00 00 00 fd 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2111 5.796935558 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556738 12 -1 695346 0 0xffffffff 0 -1 695346 0 ff ff ff ff 32 9c 0a 00 00 00 00 00 ....2....... +2119 5.891382217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556750 12 34 703834 0 0x00000022 0 34 703834 0 22 00 00 00 5a bd 0a 00 00 00 00 00 """...Z......." +2121 5.891584158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556762 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -851968 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f3 ff 01 00 00 00 00 00 c3 97 0e c3 9d 01 00 00 .....!...o3....................... +2123 5.891667843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556796 12 67 703835 0 0x00000043 0 67 703835 0 43 00 00 00 5b bd 0a 00 00 00 00 00 C...[....... +2125 5.891746759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556808 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f3 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 e4 36 6b 95 ?.....3...|8...................=B.....&......... +2127 5.891952038 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881208 12 -1 703834 0 0xffffffff 0 -1 703834 0 ff ff ff ff 5a bd 0a 00 00 00 00 00 ....Z....... +2129 5.892127752 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881220 12 -1 703835 0 0xffffffff 0 -1 703835 0 ff ff ff ff 5b bd 0a 00 00 00 00 00 ....[....... +2131 5.892801046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881232 12 52 695347 0 0x00000034 0 52 695347 0 34 00 00 00 33 9c 0a 00 00 00 00 00 4...3....... +2133 5.892996550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881244 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f3 ff 01 00 00 00 00 00 00 00 2b b9 9b 5d 4a 01 00 00 "0...Dk.................L."".([...............+..]" +2135 5.893254995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556875 12 -1 695347 0 0xffffffff 0 -1 695347 0 ff ff ff ff 33 9c 0a 00 00 00 00 00 ....3....... +2137 5.894187450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556887 12 30 703836 0 0x0000001e 0 30 703836 0 1e 00 00 00 5c bd 0a 00 00 00 00 00 ....\....... +2139 5.894321918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556899 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 83820544 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ff 04 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2141 5.894545794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881296 12 -1 703836 0 0xffffffff 0 -1 703836 0 ff ff ff ff 5c bd 0a 00 00 00 00 00 ....\....... +2143 5.894990921 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881308 12 26 695348 0 0x0000001a 0 26 695348 0 1a 00 00 00 34 9c 0a 00 00 00 00 00 ....4....... +2145 5.895168304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881320 26 22 2032895 0 0x00000016 1 2032895 0 196609 0 16 00 00 00 ff 04 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2147 5.895420790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556929 12 -1 695348 0 0xffffffff 0 -1 695348 0 ff ff ff ff 34 9c 0a 00 00 00 00 00 ....4....... +2149 5.897896767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556941 12 26 703837 0 0x0000001a 0 26 703837 0 1a 00 00 00 5d bd 0a 00 00 00 00 00 ....]....... +2151 5.898025036 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556953 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 83951616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2153 5.898320436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881346 12 -1 703837 0 0xffffffff 0 -1 703837 0 ff ff ff ff 5d bd 0a 00 00 00 00 00 ....]....... +2155 5.898730516 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881358 12 22 695349 0 0x00000016 0 22 695349 0 16 00 00 00 35 9c 0a 00 00 00 00 00 ....5....... +2157 5.898896933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881370 22 18 2032897 0 0x00000012 1 2032897 0 196609 0 12 00 00 00 01 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2159 5.899121761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556979 12 -1 695349 0 0xffffffff 0 -1 695349 0 ff ff ff ff 35 9c 0a 00 00 00 00 00 ....5....... +2163 5.999901533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331556991 12 26 703838 0 0x0000001a 0 26 703838 0 1a 00 00 00 5e bd 0a 00 00 00 00 00 ....^....... +2165 6.000078440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557003 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 84082688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2167 6.000412226 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881392 12 -1 703838 0 0xffffffff 0 -1 703838 0 ff ff ff ff 5e bd 0a 00 00 00 00 00 ....^....... +2169 6.001072168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881404 12 22 695350 0 0x00000016 0 22 695350 0 16 00 00 00 36 9c 0a 00 00 00 00 00 ....6....... +2171 6.001290560 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881416 22 18 2032899 0 0x00000012 1 2032899 0 196609 0 12 00 00 00 03 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2173 6.001723051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557029 12 -1 695350 0 0xffffffff 0 -1 695350 0 ff ff ff ff 36 9c 0a 00 00 00 00 00 ....6....... +2187 6.103305817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557041 12 26 703839 0 0x0000001a 0 26 703839 0 1a 00 00 00 5f bd 0a 00 00 00 00 00 ...._....... +2189 6.103545189 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557053 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 84213760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2191 6.103834391 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881438 12 -1 703839 0 0xffffffff 0 -1 703839 0 ff ff ff ff 5f bd 0a 00 00 00 00 00 ...._....... +2193 6.104366541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881450 12 22 695351 0 0x00000016 0 22 695351 0 16 00 00 00 37 9c 0a 00 00 00 00 00 ....7....... +2195 6.104587317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881462 22 18 2032901 0 0x00000012 1 2032901 0 196609 0 12 00 00 00 05 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2197 6.104866743 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557079 12 -1 695351 0 0xffffffff 0 -1 695351 0 ff ff ff ff 37 9c 0a 00 00 00 00 00 ....7....... +2205 6.177142382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881484 12 -2 79929 79946 0xfffffffe 0 -2 79929 79946 fe ff ff ff 39 38 01 00 4a 38 01 00 ....98..J8.. +2209 6.195486307 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557091 12 101 703840 0 0x00000065 0 101 703840 0 65 00 00 00 60 bd 0a 00 00 00 00 00 e...`....... +2211 6.195651770 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557103 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f4 ff 01 00 00 00 00 00 f3 98 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f4 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +2213 6.195944786 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881496 12 -1 703840 0 0xffffffff 0 -1 703840 0 ff ff ff ff 60 bd 0a 00 00 00 00 00 ....`....... +2215 6.197093010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881508 12 52 695352 0 0x00000034 0 52 695352 0 34 00 00 00 38 9c 0a 00 00 00 00 00 4...8....... +2217 6.197261095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881520 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f4 ff 01 00 00 00 00 00 00 00 f6 27 ca 5d 4a 01 00 00 "0...Dk.................L."".([................'.]" +2219 6.197554111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557204 12 -1 695352 0 0xffffffff 0 -1 695352 0 ff ff ff ff 38 9c 0a 00 00 00 00 00 ....8....... +2221 6.198294163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557216 12 30 703841 0 0x0000001e 0 30 703841 0 1e 00 00 00 61 bd 0a 00 00 00 00 00 ....a....... +2223 6.198525667 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557228 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 84344832 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 07 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2225 6.198734283 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881572 12 -1 703841 0 0xffffffff 0 -1 703841 0 ff ff ff ff 61 bd 0a 00 00 00 00 00 ....a....... +2227 6.199110031 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881584 12 26 695353 0 0x0000001a 0 26 695353 0 1a 00 00 00 39 9c 0a 00 00 00 00 00 ....9....... +2229 6.199257612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881596 26 22 2032903 0 0x00000016 1 2032903 0 196609 0 16 00 00 00 07 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2231 6.199555397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557258 12 -1 695353 0 0xffffffff 0 -1 695353 0 ff ff ff ff 39 9c 0a 00 00 00 00 00 ....9....... +2233 6.205941200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557270 12 26 703842 0 0x0000001a 0 26 703842 0 1a 00 00 00 62 bd 0a 00 00 00 00 00 ....b....... +2235 6.206118345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557282 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 84475904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2237 6.206744671 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881622 12 -1 703842 0 0xffffffff 0 -1 703842 0 ff ff ff ff 62 bd 0a 00 00 00 00 00 ....b....... +2239 6.206981421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881634 12 22 695354 0 0x00000016 0 22 695354 0 16 00 00 00 3a 9c 0a 00 00 00 00 00 ....:....... +2241 6.207146883 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881646 22 18 2032905 0 0x00000012 1 2032905 0 196609 0 12 00 00 00 09 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2243 6.207393169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557308 12 -1 695354 0 0xffffffff 0 -1 695354 0 ff ff ff ff 3a 9c 0a 00 00 00 00 00 ....:....... +2249 6.254190445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557320 12 -2 79947 79929 0xfffffffe 0 -2 79947 79929 fe ff ff ff 4b 38 01 00 39 38 01 00 ....K8..98.. +2255 6.309417009 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557332 12 26 703843 0 0x0000001a 0 26 703843 0 1a 00 00 00 63 bd 0a 00 00 00 00 00 ....c....... +2257 6.309540510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557344 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 84606976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2259 6.310008764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881668 12 -1 703843 0 0xffffffff 0 -1 703843 0 ff ff ff ff 63 bd 0a 00 00 00 00 00 ....c....... +2261 6.310546875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881680 12 22 695355 0 0x00000016 0 22 695355 0 16 00 00 00 3b 9c 0a 00 00 00 00 00 ....;....... +2263 6.310711622 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881692 22 18 2032907 0 0x00000012 1 2032907 0 196609 0 12 00 00 00 0b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2265 6.311063290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557370 12 -1 695355 0 0xffffffff 0 -1 695355 0 ff ff ff ff 3b 9c 0a 00 00 00 00 00 ....;....... +2271 6.413331747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557382 12 26 703844 0 0x0000001a 0 26 703844 0 1a 00 00 00 64 bd 0a 00 00 00 00 00 ....d....... +2273 6.413520098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557394 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 84738048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2275 6.413904905 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881714 12 -1 703844 0 0xffffffff 0 -1 703844 0 ff ff ff ff 64 bd 0a 00 00 00 00 00 ....d....... +2277 6.414340734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881726 12 22 695356 0 0x00000016 0 22 695356 0 16 00 00 00 3c 9c 0a 00 00 00 00 00 ....<....... +2279 6.414488792 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881738 22 18 2032909 0 0x00000012 1 2032909 0 196609 0 12 00 00 00 0d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2281 6.414749622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557420 12 -1 695356 0 0xffffffff 0 -1 695356 0 ff ff ff ff 3c 9c 0a 00 00 00 00 00 ....<....... +2284 6.501799822 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557432 12 101 703845 0 0x00000065 0 101 703845 0 65 00 00 00 65 bd 0a 00 00 00 00 00 e...e....... +2286 6.502021313 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557444 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f5 ff 01 00 00 00 00 00 25 9a 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f5 ff 01 00 00 00 00 .....!...o3...............%.......?.....3...|8.. +2288 6.502326727 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881760 12 -1 703845 0 0xffffffff 0 -1 703845 0 ff ff ff ff 65 bd 0a 00 00 00 00 00 ....e....... +2292 6.503494740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881772 12 52 695357 0 0x00000034 0 52 695357 0 34 00 00 00 3d 9c 0a 00 00 00 00 00 4...=....... +2294 6.503652334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881784 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f5 ff 01 00 00 00 00 00 00 00 95 e8 f8 5d 4a 01 00 00 "0...Dk.................L."".([..................]" +2296 6.504030943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557545 12 -1 695357 0 0xffffffff 0 -1 695357 0 ff ff ff ff 3d 9c 0a 00 00 00 00 00 ....=....... +2300 6.504893541 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557557 12 30 703846 0 0x0000001e 0 30 703846 0 1e 00 00 00 66 bd 0a 00 00 00 00 00 ....f....... +2303 6.505087137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557569 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 84869120 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2306 6.505374908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881836 12 -1 703846 0 0xffffffff 0 -1 703846 0 ff ff ff ff 66 bd 0a 00 00 00 00 00 ....f....... +2310 6.505976200 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881848 12 26 695358 0 0x0000001a 0 26 695358 0 1a 00 00 00 3e 9c 0a 00 00 00 00 00 ....>....... +2312 6.506148577 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881860 26 22 2032911 0 0x00000016 1 2032911 0 196609 0 16 00 00 00 0f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2314 6.506404400 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557599 12 -1 695358 0 0xffffffff 0 -1 695358 0 ff ff ff ff 3e 9c 0a 00 00 00 00 00 ....>....... +2316 6.516408682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557611 12 26 703847 0 0x0000001a 0 26 703847 0 1a 00 00 00 67 bd 0a 00 00 00 00 00 ....g....... +2318 6.516562939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557623 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 85000192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2320 6.516893387 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881886 12 -1 703847 0 0xffffffff 0 -1 703847 0 ff ff ff ff 67 bd 0a 00 00 00 00 00 ....g....... +2322 6.517325401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881898 12 22 695359 0 0x00000016 0 22 695359 0 16 00 00 00 3f 9c 0a 00 00 00 00 00 ....?....... +2324 6.517472029 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881910 22 18 2032913 0 0x00000012 1 2032913 0 196609 0 12 00 00 00 11 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2326 6.517708063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557649 12 -1 695359 0 0xffffffff 0 -1 695359 0 ff ff ff ff 3f 9c 0a 00 00 00 00 00 ....?....... +2333 6.620687246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557661 12 26 703848 0 0x0000001a 0 26 703848 0 1a 00 00 00 68 bd 0a 00 00 00 00 00 ....h....... +2335 6.620940447 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557673 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 85131264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2337 6.621273756 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881932 12 -1 703848 0 0xffffffff 0 -1 703848 0 ff ff ff ff 68 bd 0a 00 00 00 00 00 ....h....... +2339 6.621874094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881944 12 22 695360 0 0x00000016 0 22 695360 0 16 00 00 00 40 9c 0a 00 00 00 00 00 ....@....... +2341 6.622059107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881956 22 18 2032915 0 0x00000012 1 2032915 0 196609 0 12 00 00 00 13 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2343 6.622369289 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557699 12 -1 695360 0 0xffffffff 0 -1 695360 0 ff ff ff ff 40 9c 0a 00 00 00 00 00 ....@....... +2349 6.676470757 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881978 12 -2 79930 79947 0xfffffffe 0 -2 79930 79947 fe ff ff ff 3a 38 01 00 4b 38 01 00 ....:8..K8.. +2354 6.723601818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557711 12 26 703849 0 0x0000001a 0 26 703849 0 1a 00 00 00 69 bd 0a 00 00 00 00 00 ....i....... +2356 6.723872185 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557723 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 85262336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2358 6.724160433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375881990 12 -1 703849 0 0xffffffff 0 -1 703849 0 ff ff ff ff 69 bd 0a 00 00 00 00 00 ....i....... +2360 6.724814177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882002 12 22 695361 0 0x00000016 0 22 695361 0 16 00 00 00 41 9c 0a 00 00 00 00 00 ....A....... +2362 6.724980831 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882014 22 18 2032917 0 0x00000012 1 2032917 0 196609 0 12 00 00 00 15 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2364 6.725253582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557749 12 -1 695361 0 0xffffffff 0 -1 695361 0 ff ff ff ff 41 9c 0a 00 00 00 00 00 ....A....... +2370 6.756032467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557761 12 -2 79948 79930 0xfffffffe 0 -2 79948 79930 fe ff ff ff 4c 38 01 00 3a 38 01 00 ....L8..:8.. +2376 6.806506395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557773 12 34 703850 0 0x00000022 0 34 703850 0 22 00 00 00 6a bd 0a 00 00 00 00 00 """...j......." +2378 6.806699514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557785 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -655360 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f6 ff 01 00 00 00 00 00 56 9b 0e c3 9d 01 00 00 .....!...o3...............V....... +2380 6.806878328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557819 12 67 703851 0 0x00000043 0 67 703851 0 43 00 00 00 6b bd 0a 00 00 00 00 00 C...k....... +2382 6.806987286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557831 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f6 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 60 c0 a1 95 ?.....3...|8...................=B.....&......... +2383 6.807043314 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882036 12 -1 703850 0 0xffffffff 0 -1 703850 0 ff ff ff ff 6a bd 0a 00 00 00 00 00 ....j....... +2386 6.807277203 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882048 12 -1 703851 0 0xffffffff 0 -1 703851 0 ff ff ff ff 6b bd 0a 00 00 00 00 00 ....k....... +2388 6.808303118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882060 12 52 695362 0 0x00000034 0 52 695362 0 34 00 00 00 42 9c 0a 00 00 00 00 00 4...B....... +2390 6.808623075 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882072 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f6 ff 01 00 00 00 00 00 00 00 10 6a 27 5e 4a 01 00 00 "0...Dk.................L."".([................j'^" +2392 6.808912039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557898 12 -1 695362 0 0xffffffff 0 -1 695362 0 ff ff ff ff 42 9c 0a 00 00 00 00 00 ....B....... +2394 6.809844732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557910 12 30 703852 0 0x0000001e 0 30 703852 0 1e 00 00 00 6c bd 0a 00 00 00 00 00 ....l....... +2396 6.810075283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557922 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 85393408 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 17 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2398 6.810373306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882124 12 -1 703852 0 0xffffffff 0 -1 703852 0 ff ff ff ff 6c bd 0a 00 00 00 00 00 ....l....... +2400 6.810723305 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882136 12 26 695363 0 0x0000001a 0 26 695363 0 1a 00 00 00 43 9c 0a 00 00 00 00 00 ....C....... +2402 6.810816765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882148 26 22 2032919 0 0x00000016 1 2032919 0 196609 0 16 00 00 00 17 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2404 6.811078548 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557952 12 -1 695363 0 0xffffffff 0 -1 695363 0 ff ff ff ff 43 9c 0a 00 00 00 00 00 ....C....... +2406 6.827042818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557964 12 26 703853 0 0x0000001a 0 26 703853 0 1a 00 00 00 6d bd 0a 00 00 00 00 00 ....m....... +2408 6.827244759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331557976 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 85524480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2410 6.827660561 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882174 12 -1 703853 0 0xffffffff 0 -1 703853 0 ff ff ff ff 6d bd 0a 00 00 00 00 00 ....m....... +2412 6.827957392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882186 12 22 695364 0 0x00000016 0 22 695364 0 16 00 00 00 44 9c 0a 00 00 00 00 00 ....D....... +2414 6.828102589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882198 22 18 2032921 0 0x00000012 1 2032921 0 196609 0 12 00 00 00 19 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2416 6.828273535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558002 12 -1 695364 0 0xffffffff 0 -1 695364 0 ff ff ff ff 44 9c 0a 00 00 00 00 00 ....D....... +2423 6.930961132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558014 12 26 703854 0 0x0000001a 0 26 703854 0 1a 00 00 00 6e bd 0a 00 00 00 00 00 ....n....... +2425 6.931134939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558026 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 85655552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2427 6.931452751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882220 12 -1 703854 0 0xffffffff 0 -1 703854 0 ff ff ff ff 6e bd 0a 00 00 00 00 00 ....n....... +2429 6.932101965 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882232 12 22 695365 0 0x00000016 0 22 695365 0 16 00 00 00 45 9c 0a 00 00 00 00 00 ....E....... +2431 6.932296276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882244 22 18 2032923 0 0x00000012 1 2032923 0 196609 0 12 00 00 00 1b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2433 6.932492733 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558052 12 -1 695365 0 0xffffffff 0 -1 695365 0 ff ff ff ff 45 9c 0a 00 00 00 00 00 ....E....... +2468 7.033761740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558064 12 26 703855 0 0x0000001a 0 26 703855 0 1a 00 00 00 6f bd 0a 00 00 00 00 00 ....o....... +2470 7.033981800 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558076 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 85786624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +2472 7.034425020 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882266 12 -1 703855 0 0xffffffff 0 -1 703855 0 ff ff ff ff 6f bd 0a 00 00 00 00 00 ....o....... +2474 7.035028934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882278 12 22 695366 0 0x00000016 0 22 695366 0 16 00 00 00 46 9c 0a 00 00 00 00 00 ....F....... +2476 7.035257339 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882290 22 18 2032925 0 0x00000012 1 2032925 0 196609 0 12 00 00 00 1d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2479 7.035533428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558102 12 -1 695366 0 0xffffffff 0 -1 695366 0 ff ff ff ff 46 9c 0a 00 00 00 00 00 ....F....... +2484 7.111239672 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558114 12 34 703856 0 0x00000022 0 34 703856 0 22 00 00 00 70 bd 0a 00 00 00 00 00 """...p......." +2486 7.111420155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558126 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -589824 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f7 ff 01 00 00 00 00 00 86 9c 0e c3 9d 01 00 00 .....!...o3....................... +2488 7.111559391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558160 12 67 703857 0 0x00000043 0 67 703857 0 43 00 00 00 71 bd 0a 00 00 00 00 00 C...q....... +2490 7.111646175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558172 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f7 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 ed f8 b3 95 ?.....3...|8...................=B.....&......... +2492 7.111794710 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882312 12 -1 703856 0 0xffffffff 0 -1 703856 0 ff ff ff ff 70 bd 0a 00 00 00 00 00 ....p....... +2494 7.112030506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882324 12 -1 703857 0 0xffffffff 0 -1 703857 0 ff ff ff ff 71 bd 0a 00 00 00 00 00 ....q....... +2496 7.113095284 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882336 12 52 695367 0 0x00000034 0 52 695367 0 34 00 00 00 47 9c 0a 00 00 00 00 00 4...G....... +2498 7.113362312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882348 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f7 ff 01 00 00 00 00 00 00 00 7f eb 55 5e 4a 01 00 00 "0...Dk.................L."".([.................U^" +2500 7.113635778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558239 12 -1 695367 0 0xffffffff 0 -1 695367 0 ff ff ff ff 47 9c 0a 00 00 00 00 00 ....G....... +2502 7.114412069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558251 12 30 703858 0 0x0000001e 0 30 703858 0 1e 00 00 00 72 bd 0a 00 00 00 00 00 ....r....... +2504 7.114551783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558263 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 85917696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2506 7.114815712 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882400 12 -1 703858 0 0xffffffff 0 -1 703858 0 ff ff ff ff 72 bd 0a 00 00 00 00 00 ....r....... +2508 7.115250826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882412 12 26 695368 0 0x0000001a 0 26 695368 0 1a 00 00 00 48 9c 0a 00 00 00 00 00 ....H....... +2510 7.115448475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882424 26 22 2032927 0 0x00000016 1 2032927 0 196609 0 16 00 00 00 1f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2512 7.115705013 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558293 12 -1 695368 0 0xffffffff 0 -1 695368 0 ff ff ff ff 48 9c 0a 00 00 00 00 00 ....H....... +2514 7.136684895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558305 12 26 703859 0 0x0000001a 0 26 703859 0 1a 00 00 00 73 bd 0a 00 00 00 00 00 ....s....... +2516 7.136835098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558317 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 86048768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 05 1f 00 00 00 00 00 ....T.c@.^1@......!....... +2518 7.137121677 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882450 12 -1 703859 0 0xffffffff 0 -1 703859 0 ff ff ff ff 73 bd 0a 00 00 00 00 00 ....s....... +2520 7.137561560 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882462 12 22 695369 0 0x00000016 0 22 695369 0 16 00 00 00 49 9c 0a 00 00 00 00 00 ....I....... +2523 7.137723207 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882474 22 18 2032929 0 0x00000012 1 2032929 0 196609 0 12 00 00 00 21 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +2525 7.137978792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558343 12 -1 695369 0 0xffffffff 0 -1 695369 0 ff ff ff ff 49 9c 0a 00 00 00 00 00 ....I....... +2532 7.177599430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882496 12 -2 79931 79948 0xfffffffe 0 -2 79931 79948 fe ff ff ff 3b 38 01 00 4c 38 01 00 ....;8..L8.. +2536 7.239793062 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558355 12 26 703860 0 0x0000001a 0 26 703860 0 1a 00 00 00 74 bd 0a 00 00 00 00 00 ....t....... +2538 7.240044832 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558367 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 86179840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 05 1f 00 00 00 00 00 ....T.c@.^1@......#....... +2540 7.240413189 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882508 12 -1 703860 0 0xffffffff 0 -1 703860 0 ff ff ff ff 74 bd 0a 00 00 00 00 00 ....t....... +2542 7.241057873 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882520 12 22 695370 0 0x00000016 0 22 695370 0 16 00 00 00 4a 9c 0a 00 00 00 00 00 ....J....... +2544 7.241221666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882532 22 18 2032931 0 0x00000012 1 2032931 0 196609 0 12 00 00 00 23 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +2546 7.241498232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558393 12 -1 695370 0 0xffffffff 0 -1 695370 0 ff ff ff ff 4a 9c 0a 00 00 00 00 00 ....J....... +2554 7.256929159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558405 12 -2 79949 79931 0xfffffffe 0 -2 79949 79931 fe ff ff ff 4d 38 01 00 3b 38 01 00 ....M8..;8.. +2560 7.343077660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558417 12 26 703861 0 0x0000001a 0 26 703861 0 1a 00 00 00 75 bd 0a 00 00 00 00 00 ....u....... +2562 7.343233109 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558429 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 86310912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 05 1f 00 00 00 00 00 ....T.c@.^1@......%....... +2564 7.343576908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882554 12 -1 703861 0 0xffffffff 0 -1 703861 0 ff ff ff ff 75 bd 0a 00 00 00 00 00 ....u....... +2566 7.344117165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882566 12 22 695371 0 0x00000016 0 22 695371 0 16 00 00 00 4b 9c 0a 00 00 00 00 00 ....K....... +2568 7.344282150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882578 22 18 2032933 0 0x00000012 1 2032933 0 196609 0 12 00 00 00 25 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +2570 7.344503403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558455 12 -1 695371 0 0xffffffff 0 -1 695371 0 ff ff ff ff 4b 9c 0a 00 00 00 00 00 ....K....... +2578 7.416127205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558467 12 34 703862 0 0x00000022 0 34 703862 0 22 00 00 00 76 bd 0a 00 00 00 00 00 """...v......." +2580 7.416294336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558479 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -524288 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f8 ff 01 00 00 00 00 00 b8 9d 0e c3 9d 01 00 00 .....!...o3....................... +2582 7.416515350 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558513 12 67 703863 0 0x00000043 0 67 703863 0 43 00 00 00 77 bd 0a 00 00 00 00 00 C...w....... +2584 7.416612148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558525 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f8 ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec 36 1a c6 95 ?.....3...|8...................=B.....&......... +2585 7.416679382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882600 12 -1 703862 0 0xffffffff 0 -1 703862 0 ff ff ff ff 76 bd 0a 00 00 00 00 00 ....v....... +2588 7.416915178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882612 12 -1 703863 0 0xffffffff 0 -1 703863 0 ff ff ff ff 77 bd 0a 00 00 00 00 00 ....w....... +2590 7.417941809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882624 12 52 695372 0 0x00000034 0 52 695372 0 34 00 00 00 4c 9c 0a 00 00 00 00 00 4...L....... +2592 7.418123960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882636 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f8 ff 01 00 00 00 00 00 00 00 c9 6f 84 5e 4a 01 00 00 "0...Dk.................L."".([................o.^" +2594 7.418519735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558592 12 -1 695372 0 0xffffffff 0 -1 695372 0 ff ff ff ff 4c 9c 0a 00 00 00 00 00 ....L....... +2595 7.419165850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558604 12 30 703864 0 0x0000001e 0 30 703864 0 1e 00 00 00 78 bd 0a 00 00 00 00 00 ....x....... +2597 7.419360161 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558616 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 86441984 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 27 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......'........... +2599 7.419646025 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882688 12 -1 703864 0 0xffffffff 0 -1 703864 0 ff ff ff ff 78 bd 0a 00 00 00 00 00 ....x....... +2601 7.420051336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882700 12 26 695373 0 0x0000001a 0 26 695373 0 1a 00 00 00 4d 9c 0a 00 00 00 00 00 ....M....... +2603 7.420194626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882712 26 22 2032935 0 0x00000016 1 2032935 0 196609 0 16 00 00 00 27 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....'..................... +2605 7.420560360 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558646 12 -1 695373 0 0xffffffff 0 -1 695373 0 ff ff ff ff 4d 9c 0a 00 00 00 00 00 ....M....... +2607 7.445730448 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558658 12 26 703865 0 0x0000001a 0 26 703865 0 1a 00 00 00 79 bd 0a 00 00 00 00 00 ....y....... +2609 7.445890427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558670 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 86573056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 05 1f 00 00 00 00 00 ....T.c@.^1@......)....... +2611 7.446278334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882738 12 -1 703865 0 0xffffffff 0 -1 703865 0 ff ff ff ff 79 bd 0a 00 00 00 00 00 ....y....... +2613 7.446678162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882750 12 22 695374 0 0x00000016 0 22 695374 0 16 00 00 00 4e 9c 0a 00 00 00 00 00 ....N....... +2615 7.446830273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882762 22 18 2032937 0 0x00000012 1 2032937 0 196609 0 12 00 00 00 29 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +2617 7.447082758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558696 12 -1 695374 0 0xffffffff 0 -1 695374 0 ff ff ff ff 4e 9c 0a 00 00 00 00 00 ....N....... +2621 7.549953699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558708 12 26 703866 0 0x0000001a 0 26 703866 0 1a 00 00 00 7a bd 0a 00 00 00 00 00 ....z....... +2623 7.550134420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558720 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 86704128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 05 1f 00 00 00 00 00 ....T.c@.^1@......+....... +2625 7.550537109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882784 12 -1 703866 0 0xffffffff 0 -1 703866 0 ff ff ff ff 7a bd 0a 00 00 00 00 00 ....z....... +2627 7.551733971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882796 12 22 695375 0 0x00000016 0 22 695375 0 16 00 00 00 4f 9c 0a 00 00 00 00 00 ....O....... +2629 7.551897049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882808 22 18 2032939 0 0x00000012 1 2032939 0 196609 0 12 00 00 00 2b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +2631 7.552159548 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558746 12 -1 695375 0 0xffffffff 0 -1 695375 0 ff ff ff ff 4f 9c 0a 00 00 00 00 00 ....O....... +2637 7.653687239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558758 12 26 703867 0 0x0000001a 0 26 703867 0 1a 00 00 00 7b bd 0a 00 00 00 00 00 ....{....... +2639 7.653859138 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558770 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 86835200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 05 1f 00 00 00 00 00 ....T.c@.^1@......-....... +2641 7.654286146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882830 12 -1 703867 0 0xffffffff 0 -1 703867 0 ff ff ff ff 7b bd 0a 00 00 00 00 00 ....{....... +2643 7.654742002 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882842 12 22 695376 0 0x00000016 0 22 695376 0 16 00 00 00 50 9c 0a 00 00 00 00 00 ....P....... +2645 7.654912233 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882854 22 18 2032941 0 0x00000012 1 2032941 0 196609 0 12 00 00 00 2d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +2647 7.655360937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558796 12 -1 695376 0 0xffffffff 0 -1 695376 0 ff ff ff ff 50 9c 0a 00 00 00 00 00 ....P....... +2653 7.678822517 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882876 12 -2 79932 79949 0xfffffffe 0 -2 79932 79949 fe ff ff ff 3c 38 01 00 4d 38 01 00 ....<8..M8.. +2659 7.721510887 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558808 12 101 703868 0 0x00000065 0 101 703868 0 65 00 00 00 7c bd 0a 00 00 00 00 00 e...|....... +2661 7.721692562 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558820 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f9 ff 01 00 00 00 00 00 e9 9e 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f9 ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +2663 7.722148657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882888 12 -1 703868 0 0xffffffff 0 -1 703868 0 ff ff ff ff 7c bd 0a 00 00 00 00 00 ....|....... +2665 7.722866058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882900 12 52 695377 0 0x00000034 0 52 695377 0 34 00 00 00 51 9c 0a 00 00 00 00 00 4...Q....... +2667 7.723028660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882912 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f9 ff 01 00 00 00 00 00 00 00 98 f8 b2 5e 4a 01 00 00 "0...Dk.................L."".([..................^" +2669 7.723222017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558921 12 -1 695377 0 0xffffffff 0 -1 695377 0 ff ff ff ff 51 9c 0a 00 00 00 00 00 ....Q....... +2671 7.724109411 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558933 12 30 703869 0 0x0000001e 0 30 703869 0 1e 00 00 00 7d bd 0a 00 00 00 00 00 ....}....... +2673 7.724247932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558945 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 86966272 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P....../........... +2675 7.724617958 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882964 12 -1 703869 0 0xffffffff 0 -1 703869 0 ff ff ff ff 7d bd 0a 00 00 00 00 00 ....}....... +2677 7.724913120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882976 12 26 695378 0 0x0000001a 0 26 695378 0 1a 00 00 00 52 9c 0a 00 00 00 00 00 ....R....... +2679 7.725102901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375882988 26 22 2032943 0 0x00000016 1 2032943 0 196609 0 16 00 00 00 2f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ..../..................... +2681 7.725284576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558975 12 -1 695378 0 0xffffffff 0 -1 695378 0 ff ff ff ff 52 9c 0a 00 00 00 00 00 ....R....... +2687 7.756942034 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558987 12 26 703870 0 0x0000001a 0 26 703870 0 1a 00 00 00 7e bd 0a 00 00 00 00 00 ....~....... +2689 7.757103682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331558999 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 87097344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 05 1f 00 00 00 00 00 ....T.c@.^1@......1....... +2691 7.757388830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883014 12 -1 703870 0 0xffffffff 0 -1 703870 0 ff ff ff ff 7e bd 0a 00 00 00 00 00 ....~....... +2693 7.757733822 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559025 12 -2 79950 79932 0xfffffffe 0 -2 79950 79932 fe ff ff ff 4e 38 01 00 3c 38 01 00 ....N8..<8.. +2697 7.758398533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883026 12 22 695379 0 0x00000016 0 22 695379 0 16 00 00 00 53 9c 0a 00 00 00 00 00 ....S....... +2699 7.758625746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883038 22 18 2032945 0 0x00000012 1 2032945 0 196609 0 12 00 00 00 31 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +2701 7.758801937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559037 12 -1 695379 0 0xffffffff 0 -1 695379 0 ff ff ff ff 53 9c 0a 00 00 00 00 00 ....S....... +2708 7.860478878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559049 12 26 703871 0 0x0000001a 0 26 703871 0 1a 00 00 00 7f bd 0a 00 00 00 00 00 ............ +2710 7.860647202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559061 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 87228416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 05 1f 00 00 00 00 00 ....T.c@.^1@......3....... +2712 7.861002922 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883060 12 -1 703871 0 0xffffffff 0 -1 703871 0 ff ff ff ff 7f bd 0a 00 00 00 00 00 ............ +2714 7.861646414 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883072 12 22 695380 0 0x00000016 0 22 695380 0 16 00 00 00 54 9c 0a 00 00 00 00 00 ....T....... +2716 7.861795664 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883084 22 18 2032947 0 0x00000012 1 2032947 0 196609 0 12 00 00 00 33 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +2718 7.862004757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559087 12 -1 695380 0 0xffffffff 0 -1 695380 0 ff ff ff ff 54 9c 0a 00 00 00 00 00 ....T....... +2725 7.964627981 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559099 12 26 703872 0 0x0000001a 0 26 703872 0 1a 00 00 00 80 bd 0a 00 00 00 00 00 ............ +2727 7.964812756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559111 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 87359488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 05 1f 00 00 00 00 00 ....T.c@.^1@......5....... +2729 7.965182304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883106 12 -1 703872 0 0xffffffff 0 -1 703872 0 ff ff ff ff 80 bd 0a 00 00 00 00 00 ............ +2731 7.965674639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883118 12 22 695381 0 0x00000016 0 22 695381 0 16 00 00 00 55 9c 0a 00 00 00 00 00 ....U....... +2733 7.965836525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883130 22 18 2032949 0 0x00000012 1 2032949 0 196609 0 12 00 00 00 35 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +2735 7.966134071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559137 12 -1 695381 0 0xffffffff 0 -1 695381 0 ff ff ff ff 55 9c 0a 00 00 00 00 00 ....U....... +2744 8.025009632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559149 12 34 703873 0 0x00000022 0 34 703873 0 22 00 00 00 81 bd 0a 00 00 00 00 00 """..........." +2746 8.025171518 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559161 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -393216 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fa ff 01 00 00 00 00 00 19 a0 0e c3 9d 01 00 00 .....!...o3....................... +2748 8.025342464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559195 12 67 703874 0 0x00000043 0 67 703874 0 43 00 00 00 82 bd 0a 00 00 00 00 00 C........... +2750 8.025430202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559207 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fa ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 8a 66 ea 95 ?.....3...|8...................=B.....&......... +2752 8.025567293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883152 12 -1 703873 0 0xffffffff 0 -1 703873 0 ff ff ff ff 81 bd 0a 00 00 00 00 00 ............ +2754 8.025791407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883164 12 -1 703874 0 0xffffffff 0 -1 703874 0 ff ff ff ff 82 bd 0a 00 00 00 00 00 ............ +2756 8.026707888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883176 12 52 695382 0 0x00000034 0 52 695382 0 34 00 00 00 56 9c 0a 00 00 00 00 00 4...V....... +2758 8.026873112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883188 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fa ff 01 00 00 00 00 00 00 00 fb 55 e1 5e 4a 01 00 00 "0...Dk.................L."".([................U.^" +2760 8.027125597 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559274 12 -1 695382 0 0xffffffff 0 -1 695382 0 ff ff ff ff 56 9c 0a 00 00 00 00 00 ....V....... +2762 8.027859211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559286 12 30 703875 0 0x0000001e 0 30 703875 0 1e 00 00 00 83 bd 0a 00 00 00 00 00 ............ +2764 8.028007746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559298 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 87490560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 37 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......7........... +2766 8.028404713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883240 12 -1 703875 0 0xffffffff 0 -1 703875 0 ff ff ff ff 83 bd 0a 00 00 00 00 00 ............ +2768 8.028824568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883252 12 26 695383 0 0x0000001a 0 26 695383 0 1a 00 00 00 57 9c 0a 00 00 00 00 00 ....W....... +2770 8.029011965 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883264 26 22 2032951 0 0x00000016 1 2032951 0 196609 0 16 00 00 00 37 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....7..................... +2772 8.029487848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559328 12 -1 695383 0 0xffffffff 0 -1 695383 0 ff ff ff ff 57 9c 0a 00 00 00 00 00 ....W....... +2774 8.067542076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559340 12 26 703876 0 0x0000001a 0 26 703876 0 1a 00 00 00 84 bd 0a 00 00 00 00 00 ............ +2776 8.067705631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559352 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 87621632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 05 1f 00 00 00 00 00 ....T.c@.^1@......9....... +2778 8.068057537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883290 12 -1 703876 0 0xffffffff 0 -1 703876 0 ff ff ff ff 84 bd 0a 00 00 00 00 00 ............ +2780 8.068472862 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883302 12 22 695384 0 0x00000016 0 22 695384 0 16 00 00 00 58 9c 0a 00 00 00 00 00 ....X....... +2782 8.068644762 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883314 22 18 2032953 0 0x00000012 1 2032953 0 196609 0 12 00 00 00 39 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +2784 8.068901777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559378 12 -1 695384 0 0xffffffff 0 -1 695384 0 ff ff ff ff 58 9c 0a 00 00 00 00 00 ....X....... +2789 8.171608210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559390 12 26 703877 0 0x0000001a 0 26 703877 0 1a 00 00 00 85 bd 0a 00 00 00 00 00 ............ +2791 8.171835661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559402 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 87752704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 05 1f 00 00 00 00 00 ....T.c@.^1@......;....... +2793 8.172245741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883336 12 -1 703877 0 0xffffffff 0 -1 703877 0 ff ff ff ff 85 bd 0a 00 00 00 00 00 ............ +2795 8.172697306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883348 12 22 695385 0 0x00000016 0 22 695385 0 16 00 00 00 59 9c 0a 00 00 00 00 00 ....Y....... +2797 8.172902107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883360 22 18 2032955 0 0x00000012 1 2032955 0 196609 0 12 00 00 00 3b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +2799 8.173252106 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559428 12 -1 695385 0 0xffffffff 0 -1 695385 0 ff ff ff ff 59 9c 0a 00 00 00 00 00 ....Y....... +2805 8.179183006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883382 12 -2 79933 79950 0xfffffffe 0 -2 79933 79950 fe ff ff ff 3d 38 01 00 4e 38 01 00 ....=8..N8.. +2813 8.259239197 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559440 12 -2 79951 79933 0xfffffffe 0 -2 79951 79933 fe ff ff ff 4f 38 01 00 3d 38 01 00 ....O8..=8.. +2817 8.274682522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559452 12 26 703878 0 0x0000001a 0 26 703878 0 1a 00 00 00 86 bd 0a 00 00 00 00 00 ............ +2819 8.274971962 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559464 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 87883776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 05 1f 00 00 00 00 00 ....T.c@.^1@......=....... +2821 8.275382519 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883394 12 -1 703878 0 0xffffffff 0 -1 703878 0 ff ff ff ff 86 bd 0a 00 00 00 00 00 ............ +2823 8.275937796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883406 12 22 695386 0 0x00000016 0 22 695386 0 16 00 00 00 5a 9c 0a 00 00 00 00 00 ....Z....... +2825 8.276170492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883418 22 18 2032957 0 0x00000012 1 2032957 0 196609 0 12 00 00 00 3d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +2827 8.276407003 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559490 12 -1 695386 0 0xffffffff 0 -1 695386 0 ff ff ff ff 5a 9c 0a 00 00 00 00 00 ....Z....... +2831 8.329855919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559502 12 101 703879 0 0x00000065 0 101 703879 0 65 00 00 00 87 bd 0a 00 00 00 00 00 e........... +2833 8.330037594 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559514 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fb ff 01 00 00 00 00 00 49 a1 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fb ff 01 00 00 00 00 .....!...o3...............I.......?.....3...|8.. +2835 8.330305815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883440 12 -1 703879 0 0xffffffff 0 -1 703879 0 ff ff ff ff 87 bd 0a 00 00 00 00 00 ............ +2837 8.331521511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883452 12 52 695387 0 0x00000034 0 52 695387 0 34 00 00 00 5b 9c 0a 00 00 00 00 00 4...[....... +2839 8.331691027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883464 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fb ff 01 00 00 00 00 00 00 00 ae d7 0f 5f 4a 01 00 00 "0...Dk.................L."".([.................._" +2841 8.332002640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559615 12 -1 695387 0 0xffffffff 0 -1 695387 0 ff ff ff ff 5b 9c 0a 00 00 00 00 00 ....[....... +2843 8.332808256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559627 12 30 703880 0 0x0000001e 0 30 703880 0 1e 00 00 00 88 bd 0a 00 00 00 00 00 ............ +2845 8.332936049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559639 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 88014848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......?........... +2847 8.333245277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883516 12 -1 703880 0 0xffffffff 0 -1 703880 0 ff ff ff ff 88 bd 0a 00 00 00 00 00 ............ +2849 8.333627939 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883528 12 26 695388 0 0x0000001a 0 26 695388 0 1a 00 00 00 5c 9c 0a 00 00 00 00 00 ....\....... +2851 8.333810806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883540 26 22 2032959 0 0x00000016 1 2032959 0 196609 0 16 00 00 00 3f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....?..................... +2853 8.334048033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559669 12 -1 695388 0 0xffffffff 0 -1 695388 0 ff ff ff ff 5c 9c 0a 00 00 00 00 00 ....\....... +2857 8.378293753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559681 12 26 703881 0 0x0000001a 0 26 703881 0 1a 00 00 00 89 bd 0a 00 00 00 00 00 ............ +2859 8.378457069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559693 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 88145920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 05 1f 00 00 00 00 00 ....T.c@.^1@......A....... +2861 8.378724098 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883566 12 -1 703881 0 0xffffffff 0 -1 703881 0 ff ff ff ff 89 bd 0a 00 00 00 00 00 ............ +2863 8.379197836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883578 12 22 695389 0 0x00000016 0 22 695389 0 16 00 00 00 5d 9c 0a 00 00 00 00 00 ....]....... +2865 8.379401207 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883590 22 18 2032961 0 0x00000012 1 2032961 0 196609 0 12 00 00 00 41 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +2867 8.379612446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559719 12 -1 695389 0 0xffffffff 0 -1 695389 0 ff ff ff ff 5d 9c 0a 00 00 00 00 00 ....]....... +2971 8.481285810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559731 12 26 703882 0 0x0000001a 0 26 703882 0 1a 00 00 00 8a bd 0a 00 00 00 00 00 ............ +2973 8.481538534 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559743 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 88276992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 05 1f 00 00 00 00 00 ....T.c@.^1@......C....... +2975 8.482312202 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883612 12 -1 703882 0 0xffffffff 0 -1 703882 0 ff ff ff ff 8a bd 0a 00 00 00 00 00 ............ +2977 8.483023167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883624 12 22 695390 0 0x00000016 0 22 695390 0 16 00 00 00 5e 9c 0a 00 00 00 00 00 ....^....... +2979 8.483184814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883636 22 18 2032963 0 0x00000012 1 2032963 0 196609 0 12 00 00 00 43 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +2981 8.483447313 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559769 12 -1 695390 0 0xffffffff 0 -1 695390 0 ff ff ff ff 5e 9c 0a 00 00 00 00 00 ....^....... +3125 8.584527016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559781 12 26 703883 0 0x0000001a 0 26 703883 0 1a 00 00 00 8b bd 0a 00 00 00 00 00 ............ +3127 8.584679842 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559793 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 88408064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 05 1f 00 00 00 00 00 ....T.c@.^1@......E....... +3129 8.585039854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883658 12 -1 703883 0 0xffffffff 0 -1 703883 0 ff ff ff ff 8b bd 0a 00 00 00 00 00 ............ +3131 8.585600853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883670 12 22 695391 0 0x00000016 0 22 695391 0 16 00 00 00 5f 9c 0a 00 00 00 00 00 ...._....... +3133 8.585803032 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883682 22 18 2032965 0 0x00000012 1 2032965 0 196609 0 12 00 00 00 45 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +3135 8.586072206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559819 12 -1 695391 0 0xffffffff 0 -1 695391 0 ff ff ff ff 5f 9c 0a 00 00 00 00 00 ...._....... +3324 8.633689642 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559831 12 34 703884 0 0x00000022 0 34 703884 0 22 00 00 00 8c bd 0a 00 00 00 00 00 """..........." +3326 8.633880377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559843 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -262144 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fc ff 01 00 00 00 00 00 79 a2 0e c3 9d 01 00 00 .....!...o3...............y....... +3328 8.633969069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559877 12 67 703885 0 0x00000043 0 67 703885 0 43 00 00 00 8d bd 0a 00 00 00 00 00 C........... +3330 8.634053946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559889 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fc ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 39 ab 0e 96 ?.....3...|8...................=B.....&......... +3332 8.634145975 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883704 12 -1 703884 0 0xffffffff 0 -1 703884 0 ff ff ff ff 8c bd 0a 00 00 00 00 00 ............ +3334 8.634322405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883716 12 -1 703885 0 0xffffffff 0 -1 703885 0 ff ff ff ff 8d bd 0a 00 00 00 00 00 ............ +3342 8.635072231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883728 12 52 695392 0 0x00000034 0 52 695392 0 34 00 00 00 60 9c 0a 00 00 00 00 00 4...`....... +3345 8.635242701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883740 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fc ff 01 00 00 00 00 00 00 00 fb 28 3e 5f 4a 01 00 00 "0...Dk.................L."".([................(>_" +3350 8.635448933 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559956 12 -1 695392 0 0xffffffff 0 -1 695392 0 ff ff ff ff 60 9c 0a 00 00 00 00 00 ....`....... +3364 8.636446714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559968 12 30 703886 0 0x0000001e 0 30 703886 0 1e 00 00 00 8e bd 0a 00 00 00 00 00 ............ +3367 8.636611223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331559980 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 88539136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 47 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......G........... +3373 8.636996984 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883792 12 -1 703886 0 0xffffffff 0 -1 703886 0 ff ff ff ff 8e bd 0a 00 00 00 00 00 ............ +3380 8.637346745 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883804 12 26 695393 0 0x0000001a 0 26 695393 0 1a 00 00 00 61 9c 0a 00 00 00 00 00 ....a....... +3383 8.637497187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883816 26 22 2032967 0 0x00000016 1 2032967 0 196609 0 16 00 00 00 47 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....G..................... +3388 8.637789011 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560010 12 -1 695393 0 0xffffffff 0 -1 695393 0 ff ff ff ff 61 9c 0a 00 00 00 00 00 ....a....... +3444 8.679481506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883842 12 -2 79934 79951 0xfffffffe 0 -2 79934 79951 fe ff ff ff 3e 38 01 00 4f 38 01 00 ....>8..O8.. +3448 8.688341379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560022 12 26 703887 0 0x0000001a 0 26 703887 0 1a 00 00 00 8f bd 0a 00 00 00 00 00 ............ +3450 8.688503742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560034 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 88670208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 05 1f 00 00 00 00 00 ....T.c@.^1@......I....... +3452 8.688770294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883854 12 -1 703887 0 0xffffffff 0 -1 703887 0 ff ff ff ff 8f bd 0a 00 00 00 00 00 ............ +3454 8.689374924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883866 12 22 695394 0 0x00000016 0 22 695394 0 16 00 00 00 62 9c 0a 00 00 00 00 00 ....b....... +3456 8.689541101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883878 22 18 2032969 0 0x00000012 1 2032969 0 196609 0 12 00 00 00 49 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +3458 8.689794540 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560060 12 -1 695394 0 0xffffffff 0 -1 695394 0 ff ff ff ff 62 9c 0a 00 00 00 00 00 ....b....... +3469 8.760113955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560072 12 -2 79952 79934 0xfffffffe 0 -2 79952 79934 fe ff ff ff 50 38 01 00 3e 38 01 00 ....P8..>8.. +3472 8.791330814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560084 12 26 703888 0 0x0000001a 0 26 703888 0 1a 00 00 00 90 bd 0a 00 00 00 00 00 ............ +3474 8.791488647 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560096 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 88801280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 05 1f 00 00 00 00 00 ....T.c@.^1@......K....... +3476 8.792051792 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883900 12 -1 703888 0 0xffffffff 0 -1 703888 0 ff ff ff ff 90 bd 0a 00 00 00 00 00 ............ +3478 8.792407990 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883912 12 22 695395 0 0x00000016 0 22 695395 0 16 00 00 00 63 9c 0a 00 00 00 00 00 ....c....... +3480 8.792606592 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883924 22 18 2032971 0 0x00000012 1 2032971 0 196609 0 12 00 00 00 4b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +3482 8.792983055 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560122 12 -1 695395 0 0xffffffff 0 -1 695395 0 ff ff ff ff 63 9c 0a 00 00 00 00 00 ....c....... +3490 8.894236088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560134 12 26 703889 0 0x0000001a 0 26 703889 0 1a 00 00 00 91 bd 0a 00 00 00 00 00 ............ +3492 8.894476175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560146 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 88932352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 05 1f 00 00 00 00 00 ....T.c@.^1@......M....... +3494 8.894806385 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883946 12 -1 703889 0 0xffffffff 0 -1 703889 0 ff ff ff ff 91 bd 0a 00 00 00 00 00 ............ +3496 8.895365238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883958 12 22 695396 0 0x00000016 0 22 695396 0 16 00 00 00 64 9c 0a 00 00 00 00 00 ....d....... +3498 8.895576477 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883970 22 18 2032973 0 0x00000012 1 2032973 0 196609 0 12 00 00 00 4d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +3500 8.895836353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560172 12 -1 695396 0 0xffffffff 0 -1 695396 0 ff ff ff ff 64 9c 0a 00 00 00 00 00 ....d....... +3562 8.937276840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560184 12 34 703890 0 0x00000022 0 34 703890 0 22 00 00 00 92 bd 0a 00 00 00 00 00 """..........." +3564 8.937472820 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560196 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -196608 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fd ff 01 00 00 00 00 00 a9 a3 0e c3 9d 01 00 00 .....!...o3....................... +3566 8.937563181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560230 12 67 703891 0 0x00000043 0 67 703891 0 43 00 00 00 93 bd 0a 00 00 00 00 00 C........... +3568 8.937645912 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560242 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fd ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 4c c3 20 96 ?.....3...|8...................=B.....&......... +3570 8.937767744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375883992 12 -1 703890 0 0xffffffff 0 -1 703890 0 ff ff ff ff 92 bd 0a 00 00 00 00 00 ............ +3572 8.937956572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884004 12 -1 703891 0 0xffffffff 0 -1 703891 0 ff ff ff ff 93 bd 0a 00 00 00 00 00 ............ +3574 8.938592196 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884016 12 52 695397 0 0x00000034 0 52 695397 0 34 00 00 00 65 9c 0a 00 00 00 00 00 4...e....... +3576 8.938793421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884028 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fd ff 01 00 00 00 00 00 00 00 e4 79 6c 5f 4a 01 00 00 "0...Dk.................L."".([................yl_" +3578 8.939074516 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560309 12 -1 695397 0 0xffffffff 0 -1 695397 0 ff ff ff ff 65 9c 0a 00 00 00 00 00 ....e....... +3580 8.939821482 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560321 12 30 703892 0 0x0000001e 0 30 703892 0 1e 00 00 00 94 bd 0a 00 00 00 00 00 ............ +3582 8.939976931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560333 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 89063424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......O........... +3584 8.940284014 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884080 12 -1 703892 0 0xffffffff 0 -1 703892 0 ff ff ff ff 94 bd 0a 00 00 00 00 00 ............ +3586 8.940686941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884092 12 26 695398 0 0x0000001a 0 26 695398 0 1a 00 00 00 66 9c 0a 00 00 00 00 00 ....f....... +3588 8.940850735 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884104 26 22 2032975 0 0x00000016 1 2032975 0 196609 0 16 00 00 00 4f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....O..................... +3590 8.941110849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560363 12 -1 695398 0 0xffffffff 0 -1 695398 0 ff ff ff ff 66 9c 0a 00 00 00 00 00 ....f....... +3592 8.998162270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560375 12 26 703893 0 0x0000001a 0 26 703893 0 1a 00 00 00 95 bd 0a 00 00 00 00 00 ............ +3594 8.998373747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560387 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 89194496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 05 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +3596 8.998840094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884130 12 -1 703893 0 0xffffffff 0 -1 703893 0 ff ff ff ff 95 bd 0a 00 00 00 00 00 ............ +3598 8.999119043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884142 12 22 695399 0 0x00000016 0 22 695399 0 16 00 00 00 67 9c 0a 00 00 00 00 00 ....g....... +3600 8.999283314 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884154 22 18 2032977 0 0x00000012 1 2032977 0 196609 0 12 00 00 00 51 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +3602 8.999608755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560413 12 -1 695399 0 0xffffffff 0 -1 695399 0 ff ff ff ff 67 9c 0a 00 00 00 00 00 ....g....... +3618 9.101274967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560425 12 26 703894 0 0x0000001a 0 26 703894 0 1a 00 00 00 96 bd 0a 00 00 00 00 00 ............ +3620 9.101443768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560437 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 89325568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 05 1f 00 00 00 00 00 ....T.c@.^1@......S....... +3622 9.101843119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884176 12 -1 703894 0 0xffffffff 0 -1 703894 0 ff ff ff ff 96 bd 0a 00 00 00 00 00 ............ +3624 9.102282047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884188 12 22 695400 0 0x00000016 0 22 695400 0 16 00 00 00 68 9c 0a 00 00 00 00 00 ....h....... +3626 9.102443933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884200 22 18 2032979 0 0x00000012 1 2032979 0 196609 0 12 00 00 00 53 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +3628 9.102755547 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560463 12 -1 695400 0 0xffffffff 0 -1 695400 0 ff ff ff ff 68 9c 0a 00 00 00 00 00 ....h....... +3634 9.180724859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884222 12 -2 79935 79952 0xfffffffe 0 -2 79935 79952 fe ff ff ff 3f 38 01 00 50 38 01 00 ....?8..P8.. +3638 9.204865932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560475 12 26 703895 0 0x0000001a 0 26 703895 0 1a 00 00 00 97 bd 0a 00 00 00 00 00 ............ +3640 9.205119371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560487 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 89456640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 05 1f 00 00 00 00 00 ....T.c@.^1@......U....... +3642 9.205614805 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884234 12 -1 703895 0 0xffffffff 0 -1 703895 0 ff ff ff ff 97 bd 0a 00 00 00 00 00 ............ +3644 9.206289530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884246 12 22 695401 0 0x00000016 0 22 695401 0 16 00 00 00 69 9c 0a 00 00 00 00 00 ....i....... +3646 9.206500769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884258 22 18 2032981 0 0x00000012 1 2032981 0 196609 0 12 00 00 00 55 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +3648 9.206790209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560513 12 -1 695401 0 0xffffffff 0 -1 695401 0 ff ff ff ff 69 9c 0a 00 00 00 00 00 ....i....... +3650 9.240731239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560525 12 34 703896 0 0x00000022 0 34 703896 0 22 00 00 00 98 bd 0a 00 00 00 00 00 """..........." +3652 9.240895510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560537 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 -131072 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fe ff 01 00 00 00 00 00 d8 a4 0e c3 9d 01 00 00 .....!...o3....................... +3654 9.241068363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560571 12 67 703897 0 0x00000043 0 67 703897 0 43 00 00 00 99 bd 0a 00 00 00 00 00 C........... +3656 9.241156101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560583 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fe ff 01 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d8 16 dc 32 96 ?.....3...|8...................=B.....&......... +3658 9.241337776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884280 12 -1 703896 0 0xffffffff 0 -1 703896 0 ff ff ff ff 98 bd 0a 00 00 00 00 00 ............ +3660 9.241576433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884292 12 -1 703897 0 0xffffffff 0 -1 703897 0 ff ff ff ff 99 bd 0a 00 00 00 00 00 ............ +3662 9.242417812 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884304 12 52 695402 0 0x00000034 0 52 695402 0 34 00 00 00 6a 9c 0a 00 00 00 00 00 4...j....... +3664 9.242576838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884316 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fe ff 01 00 00 00 00 00 00 00 18 d6 9a 5f 4a 01 00 00 "0...Dk.................L."".([.................._" +3666 9.242843628 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560650 12 -1 695402 0 0xffffffff 0 -1 695402 0 ff ff ff ff 6a 9c 0a 00 00 00 00 00 ....j....... +3668 9.243864059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560662 12 30 703898 0 0x0000001e 0 30 703898 0 1e 00 00 00 9a bd 0a 00 00 00 00 00 ............ +3670 9.244066238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560674 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 89587712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 57 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......W........... +3672 9.244366646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884368 12 -1 703898 0 0xffffffff 0 -1 703898 0 ff ff ff ff 9a bd 0a 00 00 00 00 00 ............ +3674 9.244898796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884380 12 26 695403 0 0x0000001a 0 26 695403 0 1a 00 00 00 6b 9c 0a 00 00 00 00 00 ....k....... +3676 9.245090008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884392 26 22 2032983 0 0x00000016 1 2032983 0 196609 0 16 00 00 00 57 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....W..................... +3678 9.245332241 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560704 12 -1 695403 0 0xffffffff 0 -1 695403 0 ff ff ff ff 6b 9c 0a 00 00 00 00 00 ....k....... +3685 9.261950016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560716 12 -2 79953 79935 0xfffffffe 0 -2 79953 79935 fe ff ff ff 51 38 01 00 3f 38 01 00 ....Q8..?8.. +3690 9.308281183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560728 12 26 703899 0 0x0000001a 0 26 703899 0 1a 00 00 00 9b bd 0a 00 00 00 00 00 ............ +3692 9.308482647 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560740 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 89718784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 05 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +3694 9.308814764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884418 12 -1 703899 0 0xffffffff 0 -1 703899 0 ff ff ff ff 9b bd 0a 00 00 00 00 00 ............ +3696 9.309302807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884430 12 22 695404 0 0x00000016 0 22 695404 0 16 00 00 00 6c 9c 0a 00 00 00 00 00 ....l....... +3698 9.309458971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884442 22 18 2032985 0 0x00000012 1 2032985 0 196609 0 12 00 00 00 59 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +3700 9.309724092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560766 12 -1 695404 0 0xffffffff 0 -1 695404 0 ff ff ff ff 6c 9c 0a 00 00 00 00 00 ....l....... +3706 9.411495686 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560778 12 26 703900 0 0x0000001a 0 26 703900 0 1a 00 00 00 9c bd 0a 00 00 00 00 00 ............ +3708 9.411687613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560790 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 89849856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 05 1f 00 00 00 00 00 ....T.c@.^1@......[....... +3710 9.412245512 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884464 12 -1 703900 0 0xffffffff 0 -1 703900 0 ff ff ff ff 9c bd 0a 00 00 00 00 00 ............ +3712 9.412739515 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884476 12 22 695405 0 0x00000016 0 22 695405 0 16 00 00 00 6d 9c 0a 00 00 00 00 00 ....m....... +3714 9.412908077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884488 22 18 2032987 0 0x00000012 1 2032987 0 196609 0 12 00 00 00 5b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +3716 9.413121939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560816 12 -1 695405 0 0xffffffff 0 -1 695405 0 ff ff ff ff 6d 9c 0a 00 00 00 00 00 ....m....... +3718 9.515045643 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560828 12 26 703901 0 0x0000001a 0 26 703901 0 1a 00 00 00 9d bd 0a 00 00 00 00 00 ............ +3720 9.515282154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560840 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 89980928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 05 1f 00 00 00 00 00 ....T.c@.^1@......]....... +3722 9.515674353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884510 12 -1 703901 0 0xffffffff 0 -1 703901 0 ff ff ff ff 9d bd 0a 00 00 00 00 00 ............ +3724 9.516180754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884522 12 22 695406 0 0x00000016 0 22 695406 0 16 00 00 00 6e 9c 0a 00 00 00 00 00 ....n....... +3726 9.516435385 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884534 22 18 2032989 0 0x00000012 1 2032989 0 196609 0 12 00 00 00 5d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +3728 9.516707897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560866 12 -1 695406 0 0xffffffff 0 -1 695406 0 ff ff ff ff 6e 9c 0a 00 00 00 00 00 ....n....... +3730 9.545331001 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560878 12 101 703902 0 0x00000065 0 101 703902 0 65 00 00 00 9e bd 0a 00 00 00 00 00 e........... +3732 9.545480967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560890 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ff ff 01 00 00 00 00 00 09 a6 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ff ff 01 00 00 00 00 .....!...o3.......................?.....3...|8.. +3734 9.545793533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884556 12 -1 703902 0 0xffffffff 0 -1 703902 0 ff ff ff ff 9e bd 0a 00 00 00 00 00 ............ +3736 9.546973228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884568 12 52 695407 0 0x00000034 0 52 695407 0 34 00 00 00 6f 9c 0a 00 00 00 00 00 4...o....... +3738 9.547162294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884580 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ff ff 01 00 00 00 00 00 00 00 b1 4b c9 5f 4a 01 00 00 "0...Dk.................L."".([................K._" +3740 9.547458410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331560991 12 -1 695407 0 0xffffffff 0 -1 695407 0 ff ff ff ff 6f 9c 0a 00 00 00 00 00 ....o....... +3742 9.548280001 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561003 12 30 703903 0 0x0000001e 0 30 703903 0 1e 00 00 00 9f bd 0a 00 00 00 00 00 ............ +3744 9.548429251 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561015 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 90112000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......_........... +3746 9.548790455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884632 12 -1 703903 0 0xffffffff 0 -1 703903 0 ff ff ff ff 9f bd 0a 00 00 00 00 00 ............ +3748 9.549267530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884644 12 26 695408 0 0x0000001a 0 26 695408 0 1a 00 00 00 70 9c 0a 00 00 00 00 00 ....p....... +3750 9.549478769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884656 26 22 2032991 0 0x00000016 1 2032991 0 196609 0 16 00 00 00 5f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...._..................... +3752 9.549786329 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561045 12 -1 695408 0 0xffffffff 0 -1 695408 0 ff ff ff ff 70 9c 0a 00 00 00 00 00 ....p....... +3758 9.617713928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561057 12 26 703904 0 0x0000001a 0 26 703904 0 1a 00 00 00 a0 bd 0a 00 00 00 00 00 ............ +3760 9.617899418 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561069 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 90243072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 05 1f 00 00 00 00 00 ....T.c@.^1@......a....... +3762 9.618253708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884682 12 -1 703904 0 0xffffffff 0 -1 703904 0 ff ff ff ff a0 bd 0a 00 00 00 00 00 ............ +3764 9.619148731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884694 12 22 695409 0 0x00000016 0 22 695409 0 16 00 00 00 71 9c 0a 00 00 00 00 00 ....q....... +3766 9.619441509 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884706 22 18 2032993 0 0x00000012 1 2032993 0 196609 0 12 00 00 00 61 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +3768 9.619795084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561095 12 -1 695409 0 0xffffffff 0 -1 695409 0 ff ff ff ff 71 9c 0a 00 00 00 00 00 ....q....... +3774 9.681757927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884728 12 -2 79936 79953 0xfffffffe 0 -2 79936 79953 fe ff ff ff 40 38 01 00 51 38 01 00 ....@8..Q8.. +3778 9.720935345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561107 12 26 703905 0 0x0000001a 0 26 703905 0 1a 00 00 00 a1 bd 0a 00 00 00 00 00 ............ +3780 9.721148252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561119 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 90374144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 05 1f 00 00 00 00 00 ....T.c@.^1@......c....... +3782 9.721462965 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884740 12 -1 703905 0 0xffffffff 0 -1 703905 0 ff ff ff ff a1 bd 0a 00 00 00 00 00 ............ +3784 9.722159863 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884752 12 22 695410 0 0x00000016 0 22 695410 0 16 00 00 00 72 9c 0a 00 00 00 00 00 ....r....... +3786 9.722386599 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884764 22 18 2032995 0 0x00000012 1 2032995 0 196609 0 12 00 00 00 63 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +3788 9.722648621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561145 12 -1 695410 0 0xffffffff 0 -1 695410 0 ff ff ff ff 72 9c 0a 00 00 00 00 00 ....r....... +3795 9.763580799 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561157 12 -2 79954 79936 0xfffffffe 0 -2 79954 79936 fe ff ff ff 52 38 01 00 40 38 01 00 ....R8..@8.. +3801 9.823693037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561169 12 26 703906 0 0x0000001a 0 26 703906 0 1a 00 00 00 a2 bd 0a 00 00 00 00 00 ............ +3803 9.823870659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561181 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 90505216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 05 1f 00 00 00 00 00 ....T.c@.^1@......e....... +3805 9.824244022 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884786 12 -1 703906 0 0xffffffff 0 -1 703906 0 ff ff ff ff a2 bd 0a 00 00 00 00 00 ............ +3807 9.824683428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884798 12 22 695411 0 0x00000016 0 22 695411 0 16 00 00 00 73 9c 0a 00 00 00 00 00 ....s....... +3809 9.824844837 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884810 22 18 2032997 0 0x00000012 1 2032997 0 196609 0 12 00 00 00 65 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +3811 9.825090170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561207 12 -1 695411 0 0xffffffff 0 -1 695411 0 ff ff ff ff 73 9c 0a 00 00 00 00 00 ....s....... +3813 9.850546598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561219 12 34 703907 0 0x00000022 0 34 703907 0 22 00 00 00 a3 bd 0a 00 00 00 00 00 """..........." +3815 9.850749493 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561231 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 0 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 00 00 02 00 00 00 00 00 3b a7 0e c3 9d 01 00 00 .....!...o3...............;....... +3817 9.850924015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561265 12 67 703908 0 0x00000043 0 67 703908 0 43 00 00 00 a4 bd 0a 00 00 00 00 00 C........... +3819 9.851028442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561277 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 00 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 23 3c 57 96 ?.....3...|8...................=B.....&......... +3821 9.851377726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884832 12 -1 703907 0 0xffffffff 0 -1 703907 0 ff ff ff ff a3 bd 0a 00 00 00 00 00 ............ +3823 9.851583719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884844 12 -1 703908 0 0xffffffff 0 -1 703908 0 ff ff ff ff a4 bd 0a 00 00 00 00 00 ............ +3825 9.852491140 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884856 12 52 695412 0 0x00000034 0 52 695412 0 34 00 00 00 74 9c 0a 00 00 00 00 00 4...t....... +3827 9.852727413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884868 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 00 00 02 00 00 00 00 00 00 00 38 ed f7 5f 4a 01 00 00 "0...Dk.................L."".([...............8.._" +3829 9.853037596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561344 12 -1 695412 0 0xffffffff 0 -1 695412 0 ff ff ff ff 74 9c 0a 00 00 00 00 00 ....t....... +3831 9.854174614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561356 12 30 703909 0 0x0000001e 0 30 703909 0 1e 00 00 00 a5 bd 0a 00 00 00 00 00 ............ +3833 9.854378223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561368 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 90636288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 67 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......g........... +3835 9.854676008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884920 12 -1 703909 0 0xffffffff 0 -1 703909 0 ff ff ff ff a5 bd 0a 00 00 00 00 00 ............ +3837 9.855097055 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884932 12 26 695413 0 0x0000001a 0 26 695413 0 1a 00 00 00 75 9c 0a 00 00 00 00 00 ....u....... +3839 9.855273724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884944 26 22 2032999 0 0x00000016 1 2032999 0 196609 0 16 00 00 00 67 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....g..................... +3841 9.855456591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561398 12 -1 695413 0 0xffffffff 0 -1 695413 0 ff ff ff ff 75 9c 0a 00 00 00 00 00 ....u....... +3848 9.926991224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561410 12 26 703910 0 0x0000001a 0 26 703910 0 1a 00 00 00 a6 bd 0a 00 00 00 00 00 ............ +3850 9.927176476 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561422 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 90767360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 05 1f 00 00 00 00 00 ....T.c@.^1@......i....... +3852 9.927611589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884970 12 -1 703910 0 0xffffffff 0 -1 703910 0 ff ff ff ff a6 bd 0a 00 00 00 00 00 ............ +3854 9.928202629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884982 12 22 695414 0 0x00000016 0 22 695414 0 16 00 00 00 76 9c 0a 00 00 00 00 00 ....v....... +3856 9.928430319 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375884994 22 18 2033001 0 0x00000012 1 2033001 0 196609 0 12 00 00 00 69 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +3858 9.928699017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561448 12 -1 695414 0 0xffffffff 0 -1 695414 0 ff ff ff ff 76 9c 0a 00 00 00 00 00 ....v....... +3861 10.031452179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561460 12 26 703911 0 0x0000001a 0 26 703911 0 1a 00 00 00 a7 bd 0a 00 00 00 00 00 ............ +3863 10.031641722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561472 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 90898432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 05 1f 00 00 00 00 00 ....T.c@.^1@......k....... +3865 10.032151699 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885016 12 -1 703911 0 0xffffffff 0 -1 703911 0 ff ff ff ff a7 bd 0a 00 00 00 00 00 ............ +3867 10.032653332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885028 12 22 695415 0 0x00000016 0 22 695415 0 16 00 00 00 77 9c 0a 00 00 00 00 00 ....w....... +3869 10.032831192 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885040 22 18 2033003 0 0x00000012 1 2033003 0 196609 0 12 00 00 00 6b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +3871 10.033247948 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561498 12 -1 695415 0 0xffffffff 0 -1 695415 0 ff ff ff ff 77 9c 0a 00 00 00 00 00 ....w....... +3876 10.135398388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561510 12 26 703912 0 0x0000001a 0 26 703912 0 1a 00 00 00 a8 bd 0a 00 00 00 00 00 ............ +3878 10.135584116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561522 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 91029504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 05 1f 00 00 00 00 00 ....T.c@.^1@......m....... +3880 10.135940552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885062 12 -1 703912 0 0xffffffff 0 -1 703912 0 ff ff ff ff a8 bd 0a 00 00 00 00 00 ............ +3882 10.136374235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885074 12 22 695416 0 0x00000016 0 22 695416 0 16 00 00 00 78 9c 0a 00 00 00 00 00 ....x....... +3884 10.136535645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885086 22 18 2033005 0 0x00000012 1 2033005 0 196609 0 12 00 00 00 6d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +3886 10.136889219 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561548 12 -1 695416 0 0xffffffff 0 -1 695416 0 ff ff ff ff 78 9c 0a 00 00 00 00 00 ....x....... +3888 10.155216217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561560 12 34 703913 0 0x00000022 0 34 703913 0 22 00 00 00 a9 bd 0a 00 00 00 00 00 """..........." +3890 10.155403614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561572 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 65536 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 01 00 02 00 00 00 00 00 6b a8 0e c3 9d 01 00 00 .....!...o3...............k....... +3892 10.155547142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561606 12 67 703914 0 0x00000043 0 67 703914 0 43 00 00 00 aa bd 0a 00 00 00 00 00 C........... +3894 10.155630350 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561618 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 01 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b8 52 5c 69 96 ?.....3...|8...................=B.....&......... +3896 10.155761719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885108 12 -1 703913 0 0xffffffff 0 -1 703913 0 ff ff ff ff a9 bd 0a 00 00 00 00 00 ............ +3898 10.155952215 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885120 12 -1 703914 0 0xffffffff 0 -1 703914 0 ff ff ff ff aa bd 0a 00 00 00 00 00 ............ +3900 10.156673431 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885132 12 52 695417 0 0x00000034 0 52 695417 0 34 00 00 00 79 9c 0a 00 00 00 00 00 4...y....... +3902 10.156833410 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885144 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 01 00 02 00 00 00 00 00 00 00 91 56 26 60 4a 01 00 00 "0...Dk.................L."".([................V&`" +3904 10.157081366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561685 12 -1 695417 0 0xffffffff 0 -1 695417 0 ff ff ff ff 79 9c 0a 00 00 00 00 00 ....y....... +3906 10.157841444 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561697 12 30 703915 0 0x0000001e 0 30 703915 0 1e 00 00 00 ab bd 0a 00 00 00 00 00 ............ +3908 10.157979488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561709 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 91160576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......o........... +3910 10.158380508 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885196 12 -1 703915 0 0xffffffff 0 -1 703915 0 ff ff ff ff ab bd 0a 00 00 00 00 00 ............ +3912 10.158865690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885208 12 26 695418 0 0x0000001a 0 26 695418 0 1a 00 00 00 7a 9c 0a 00 00 00 00 00 ....z....... +3914 10.159005165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885220 26 22 2033007 0 0x00000016 1 2033007 0 196609 0 16 00 00 00 6f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....o..................... +3916 10.159269094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561739 12 -1 695418 0 0xffffffff 0 -1 695418 0 ff ff ff ff 7a 9c 0a 00 00 00 00 00 ....z....... +3922 10.182133198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885246 12 -2 79937 79954 0xfffffffe 0 -2 79937 79954 fe ff ff ff 41 38 01 00 52 38 01 00 ....A8..R8.. +3927 10.239060879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561751 12 26 703916 0 0x0000001a 0 26 703916 0 1a 00 00 00 ac bd 0a 00 00 00 00 00 ............ +3929 10.239227772 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561763 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 91291648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 05 1f 00 00 00 00 00 ....T.c@.^1@......q....... +3931 10.239820004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885258 12 -1 703916 0 0xffffffff 0 -1 703916 0 ff ff ff ff ac bd 0a 00 00 00 00 00 ............ +3933 10.240305901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885270 12 22 695419 0 0x00000016 0 22 695419 0 16 00 00 00 7b 9c 0a 00 00 00 00 00 ....{....... +3935 10.240513325 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885282 22 18 2033009 0 0x00000012 1 2033009 0 196609 0 12 00 00 00 71 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +3937 10.240752935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561789 12 -1 695419 0 0xffffffff 0 -1 695419 0 ff ff ff ff 7b 9c 0a 00 00 00 00 00 ....{....... +3943 10.264687538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561801 12 -2 79955 79937 0xfffffffe 0 -2 79955 79937 fe ff ff ff 53 38 01 00 41 38 01 00 ....S8..A8.. +3950 10.341916323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561813 12 26 703917 0 0x0000001a 0 26 703917 0 1a 00 00 00 ad bd 0a 00 00 00 00 00 ............ +3952 10.342125654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561825 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 91422720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 05 1f 00 00 00 00 00 ....T.c@.^1@......s....... +3954 10.342542171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885304 12 -1 703917 0 0xffffffff 0 -1 703917 0 ff ff ff ff ad bd 0a 00 00 00 00 00 ............ +3956 10.343006134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885316 12 22 695420 0 0x00000016 0 22 695420 0 16 00 00 00 7c 9c 0a 00 00 00 00 00 ....|....... +3958 10.343168974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885328 22 18 2033011 0 0x00000012 1 2033011 0 196609 0 12 00 00 00 73 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +3960 10.343494177 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561851 12 -1 695420 0 0xffffffff 0 -1 695420 0 ff ff ff ff 7c 9c 0a 00 00 00 00 00 ....|....... +3967 10.445060015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561863 12 26 703918 0 0x0000001a 0 26 703918 0 1a 00 00 00 ae bd 0a 00 00 00 00 00 ............ +3969 10.445292711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561875 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 91553792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 05 1f 00 00 00 00 00 ....T.c@.^1@......u....... +3971 10.445692062 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885350 12 -1 703918 0 0xffffffff 0 -1 703918 0 ff ff ff ff ae bd 0a 00 00 00 00 00 ............ +3973 10.446347952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885362 12 22 695421 0 0x00000016 0 22 695421 0 16 00 00 00 7d 9c 0a 00 00 00 00 00 ....}....... +3975 10.446559429 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885374 22 18 2033013 0 0x00000012 1 2033013 0 196609 0 12 00 00 00 75 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +3977 10.446779490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561901 12 -1 695421 0 0xffffffff 0 -1 695421 0 ff ff ff ff 7d 9c 0a 00 00 00 00 00 ....}....... +3979 10.459318638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561913 12 101 703919 0 0x00000065 0 101 703919 0 65 00 00 00 af bd 0a 00 00 00 00 00 e........... +3981 10.459530830 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331561925 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 02 00 02 00 00 00 00 00 9b a9 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 02 00 02 00 00 00 00 .....!...o3.......................?.....3...|8.. +3983 10.459805727 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885396 12 -1 703919 0 0xffffffff 0 -1 703919 0 ff ff ff ff af bd 0a 00 00 00 00 00 ............ +3985 10.460786819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885408 12 52 695422 0 0x00000034 0 52 695422 0 34 00 00 00 7e 9c 0a 00 00 00 00 00 4...~....... +3987 10.460938692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885420 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 02 00 02 00 00 00 00 00 00 00 45 bf 54 60 4a 01 00 00 "0...Dk.................L."".([...............E.T`" +3989 10.461193323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562026 12 -1 695422 0 0xffffffff 0 -1 695422 0 ff ff ff ff 7e 9c 0a 00 00 00 00 00 ....~....... +3991 10.461948395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562038 12 30 703920 0 0x0000001e 0 30 703920 0 1e 00 00 00 b0 bd 0a 00 00 00 00 00 ............ +3993 10.462110043 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562050 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 91684864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 77 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......w........... +3995 10.462435007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885472 12 -1 703920 0 0xffffffff 0 -1 703920 0 ff ff ff ff b0 bd 0a 00 00 00 00 00 ............ +3997 10.463047981 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885484 12 26 695423 0 0x0000001a 0 26 695423 0 1a 00 00 00 7f 9c 0a 00 00 00 00 00 ............ +3999 10.463207006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885496 26 22 2033015 0 0x00000016 1 2033015 0 196609 0 16 00 00 00 77 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....w..................... +4001 10.463478565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562080 12 -1 695423 0 0xffffffff 0 -1 695423 0 ff ff ff ff 7f 9c 0a 00 00 00 00 00 ............ +4004 10.548120975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562092 12 26 703921 0 0x0000001a 0 26 703921 0 1a 00 00 00 b1 bd 0a 00 00 00 00 00 ............ +4006 10.548478127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562104 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 91815936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 05 1f 00 00 00 00 00 ....T.c@.^1@......y....... +4008 10.548832178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885522 12 -1 703921 0 0xffffffff 0 -1 703921 0 ff ff ff ff b1 bd 0a 00 00 00 00 00 ............ +4010 10.549535036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885534 12 22 695424 0 0x00000016 0 22 695424 0 16 00 00 00 80 9c 0a 00 00 00 00 00 ............ +4012 10.549712420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885546 22 18 2033017 0 0x00000012 1 2033017 0 196609 0 12 00 00 00 79 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +4014 10.549996853 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562130 12 -1 695424 0 0xffffffff 0 -1 695424 0 ff ff ff ff 80 9c 0a 00 00 00 00 00 ............ +4048 10.650924444 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562142 12 26 703922 0 0x0000001a 0 26 703922 0 1a 00 00 00 b2 bd 0a 00 00 00 00 00 ............ +4050 10.651134253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562154 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 91947008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 05 1f 00 00 00 00 00 ....T.c@.^1@......{....... +4052 10.651458979 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885568 12 -1 703922 0 0xffffffff 0 -1 703922 0 ff ff ff ff b2 bd 0a 00 00 00 00 00 ............ +4054 10.652238131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885580 12 22 695425 0 0x00000016 0 22 695425 0 16 00 00 00 81 9c 0a 00 00 00 00 00 ............ +4056 10.652442455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885592 22 18 2033019 0 0x00000012 1 2033019 0 196609 0 12 00 00 00 7b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +4058 10.652695656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562180 12 -1 695425 0 0xffffffff 0 -1 695425 0 ff ff ff ff 81 9c 0a 00 00 00 00 00 ............ +4065 10.682960749 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885614 12 -2 79938 79955 0xfffffffe 0 -2 79938 79955 fe ff ff ff 42 38 01 00 53 38 01 00 ....B8..S8.. +4069 10.753996611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562192 12 26 703923 0 0x0000001a 0 26 703923 0 1a 00 00 00 b3 bd 0a 00 00 00 00 00 ............ +4071 10.754175663 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562204 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 92078080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 05 1f 00 00 00 00 00 ....T.c@.^1@......}....... +4073 10.754617453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885626 12 -1 703923 0 0xffffffff 0 -1 703923 0 ff ff ff ff b3 bd 0a 00 00 00 00 00 ............ +4075 10.754989624 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885638 12 22 695426 0 0x00000016 0 22 695426 0 16 00 00 00 82 9c 0a 00 00 00 00 00 ............ +4077 10.755156040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885650 22 18 2033021 0 0x00000012 1 2033021 0 196609 0 12 00 00 00 7d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +4079 10.755481720 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562230 12 -1 695426 0 0xffffffff 0 -1 695426 0 ff ff ff ff 82 9c 0a 00 00 00 00 00 ............ +4085 10.763109446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562242 12 34 703924 0 0x00000022 0 34 703924 0 22 00 00 00 b4 bd 0a 00 00 00 00 00 """..........." +4087 10.763276339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562254 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 196608 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 03 00 02 00 00 00 00 00 cb aa 0e c3 9d 01 00 00 .....!...o3....................... +4089 10.763458490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562288 12 67 703925 0 0x00000043 0 67 703925 0 43 00 00 00 b5 bd 0a 00 00 00 00 00 C........... +4091 10.763547182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562300 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 03 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 68 7d 99 8d 96 ?.....3...|8...................=B.....&......... +4093 10.763674498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885672 12 -1 703924 0 0xffffffff 0 -1 703924 0 ff ff ff ff b4 bd 0a 00 00 00 00 00 ............ +4095 10.763847113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885684 12 -1 703925 0 0xffffffff 0 -1 703925 0 ff ff ff ff b5 bd 0a 00 00 00 00 00 ............ +4098 10.765068531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885696 12 52 695427 0 0x00000034 0 52 695427 0 34 00 00 00 83 9c 0a 00 00 00 00 00 4........... +4100 10.765291929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885708 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 03 00 02 00 00 00 00 00 00 00 e4 2b 83 60 4a 01 00 00 "0...Dk.................L."".([................+.`" +4102 10.765639544 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562367 12 -2 79956 79938 0xfffffffe 0 -2 79956 79938 fe ff ff ff 54 38 01 00 42 38 01 00 ....T8..B8.. +4106 10.765921593 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562379 12 -1 695427 0 0xffffffff 0 -1 695427 0 ff ff ff ff 83 9c 0a 00 00 00 00 00 ............ +4108 10.766500473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562391 12 30 703926 0 0x0000001e 0 30 703926 0 1e 00 00 00 b6 bd 0a 00 00 00 00 00 ............ +4110 10.766648531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562403 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 92209152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4112 10.766929150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885760 12 -1 703926 0 0xffffffff 0 -1 703926 0 ff ff ff ff b6 bd 0a 00 00 00 00 00 ............ +4114 10.767474174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885772 12 26 695428 0 0x0000001a 0 26 695428 0 1a 00 00 00 84 9c 0a 00 00 00 00 00 ............ +4116 10.767800808 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885784 26 22 2033023 0 0x00000016 1 2033023 0 196609 0 16 00 00 00 7f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4118 10.768113852 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562433 12 -1 695428 0 0xffffffff 0 -1 695428 0 ff ff ff ff 84 9c 0a 00 00 00 00 00 ............ +4126 10.857388020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562445 12 26 703927 0 0x0000001a 0 26 703927 0 1a 00 00 00 b7 bd 0a 00 00 00 00 00 ............ +4128 10.857547045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562457 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 92340224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4130 10.857958317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885810 12 -1 703927 0 0xffffffff 0 -1 703927 0 ff ff ff ff b7 bd 0a 00 00 00 00 00 ............ +4132 10.858628511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885822 12 22 695429 0 0x00000016 0 22 695429 0 16 00 00 00 85 9c 0a 00 00 00 00 00 ............ +4134 10.858876228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885834 22 18 2033025 0 0x00000012 1 2033025 0 196609 0 12 00 00 00 81 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4136 10.859204531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562483 12 -1 695429 0 0xffffffff 0 -1 695429 0 ff ff ff ff 85 9c 0a 00 00 00 00 00 ............ +4213 10.961030245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562495 12 26 703928 0 0x0000001a 0 26 703928 0 1a 00 00 00 b8 bd 0a 00 00 00 00 00 ............ +4215 10.961211205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562507 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 92471296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4217 10.961624622 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885856 12 -1 703928 0 0xffffffff 0 -1 703928 0 ff ff ff ff b8 bd 0a 00 00 00 00 00 ............ +4219 10.962081194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885868 12 22 695430 0 0x00000016 0 22 695430 0 16 00 00 00 86 9c 0a 00 00 00 00 00 ............ +4221 10.962276459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885880 22 18 2033027 0 0x00000012 1 2033027 0 196609 0 12 00 00 00 83 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4223 10.962615967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562533 12 -1 695430 0 0xffffffff 0 -1 695430 0 ff ff ff ff 86 9c 0a 00 00 00 00 00 ............ +4226 11.063773632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562545 12 26 703929 0 0x0000001a 0 26 703929 0 1a 00 00 00 b9 bd 0a 00 00 00 00 00 ............ +4228 11.063944817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562557 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 92602368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4230 11.064422607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885902 12 -1 703929 0 0xffffffff 0 -1 703929 0 ff ff ff ff b9 bd 0a 00 00 00 00 00 ............ +4232 11.065087795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885914 12 22 695431 0 0x00000016 0 22 695431 0 16 00 00 00 87 9c 0a 00 00 00 00 00 ............ +4234 11.065248251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885926 22 18 2033029 0 0x00000012 1 2033029 0 196609 0 12 00 00 00 85 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4236 11.065505743 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562583 12 -1 695431 0 0xffffffff 0 -1 695431 0 ff ff ff ff 87 9c 0a 00 00 00 00 00 ............ +4238 11.067980051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562595 12 101 703930 0 0x00000065 0 101 703930 0 65 00 00 00 ba bd 0a 00 00 00 00 00 e........... +4240 11.068186522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562607 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 04 00 02 00 00 00 00 00 fb ab 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 04 00 02 00 00 00 00 .....!...o3.......................?.....3...|8.. +4242 11.068506241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885948 12 -1 703930 0 0xffffffff 0 -1 703930 0 ff ff ff ff ba bd 0a 00 00 00 00 00 ............ +4245 11.069241047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885960 12 52 695432 0 0x00000034 0 52 695432 0 34 00 00 00 88 9c 0a 00 00 00 00 00 4........... +4249 11.069390297 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375885972 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 04 00 02 00 00 00 00 00 00 00 f7 93 b1 60 4a 01 00 00 "0...Dk.................L."".([..................`" +4251 11.069660664 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562708 12 -1 695432 0 0xffffffff 0 -1 695432 0 ff ff ff ff 88 9c 0a 00 00 00 00 00 ............ +4255 11.070397615 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562720 12 30 703931 0 0x0000001e 0 30 703931 0 1e 00 00 00 bb bd 0a 00 00 00 00 00 ............ +4257 11.070550919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562732 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 92733440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 87 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4259 11.070780993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886024 12 -1 703931 0 0xffffffff 0 -1 703931 0 ff ff ff ff bb bd 0a 00 00 00 00 00 ............ +4261 11.071261883 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886036 12 26 695433 0 0x0000001a 0 26 695433 0 1a 00 00 00 89 9c 0a 00 00 00 00 00 ............ +4263 11.071417332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886048 26 22 2033031 0 0x00000016 1 2033031 0 196609 0 16 00 00 00 87 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4265 11.071743965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562762 12 -1 695433 0 0xffffffff 0 -1 695433 0 ff ff ff ff 89 9c 0a 00 00 00 00 00 ............ +4294 11.167757988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562774 12 26 703932 0 0x0000001a 0 26 703932 0 1a 00 00 00 bc bd 0a 00 00 00 00 00 ............ +4296 11.167935610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562786 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 92864512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4298 11.168277025 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886074 12 -1 703932 0 0xffffffff 0 -1 703932 0 ff ff ff ff bc bd 0a 00 00 00 00 00 ............ +4300 11.168751955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886086 12 22 695434 0 0x00000016 0 22 695434 0 16 00 00 00 8a 9c 0a 00 00 00 00 00 ............ +4302 11.168908834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886098 22 18 2033033 0 0x00000012 1 2033033 0 196609 0 12 00 00 00 89 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4304 11.169224739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562812 12 -1 695434 0 0xffffffff 0 -1 695434 0 ff ff ff ff 8a 9c 0a 00 00 00 00 00 ............ +4310 11.182170868 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886120 12 -2 79939 79956 0xfffffffe 0 -2 79939 79956 fe ff ff ff 43 38 01 00 54 38 01 00 ....C8..T8.. +4349 11.267761469 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562824 12 -2 79957 79939 0xfffffffe 0 -2 79957 79939 fe ff ff ff 55 38 01 00 43 38 01 00 ....U8..C8.. +4357 11.270994186 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562836 12 26 703933 0 0x0000001a 0 26 703933 0 1a 00 00 00 bd bd 0a 00 00 00 00 00 ............ +4359 11.271160126 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562848 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 92995584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4362 11.271693230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886132 12 -1 703933 0 0xffffffff 0 -1 703933 0 ff ff ff ff bd bd 0a 00 00 00 00 00 ............ +4364 11.272042036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886144 12 22 695435 0 0x00000016 0 22 695435 0 16 00 00 00 8b 9c 0a 00 00 00 00 00 ............ +4366 11.272243023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886156 22 18 2033035 0 0x00000012 1 2033035 0 196609 0 12 00 00 00 8b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4368 11.272598982 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562874 12 -1 695435 0 0xffffffff 0 -1 695435 0 ff ff ff ff 8b 9c 0a 00 00 00 00 00 ............ +4372 11.371072531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562886 12 34 703934 0 0x00000022 0 34 703934 0 22 00 00 00 be bd 0a 00 00 00 00 00 """..........." +4374 11.371228218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562898 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 327680 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 05 00 02 00 00 00 00 00 2b ad 0e c3 9d 01 00 00 .....!...o3...............+....... +4376 11.371356964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562932 12 67 703935 0 0x00000043 0 67 703935 0 43 00 00 00 bf bd 0a 00 00 00 00 00 C........... +4378 11.371444464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331562944 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 05 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f4 43 d7 b1 96 ?.....3...|8...................=B.....&......... +4380 11.371724129 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886178 12 -1 703934 0 0xffffffff 0 -1 703934 0 ff ff ff ff be bd 0a 00 00 00 00 00 ............ +4384 11.371924877 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886190 12 -1 703935 0 0xffffffff 0 -1 703935 0 ff ff ff ff bf bd 0a 00 00 00 00 00 ............ +4386 11.373469830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886202 12 52 695436 0 0x00000034 0 52 695436 0 34 00 00 00 8c 9c 0a 00 00 00 00 00 4........... +4388 11.373635292 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886214 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 05 00 02 00 00 00 00 00 00 00 23 fd df 60 4a 01 00 00 "0...Dk.................L."".([...............#..`" +4390 11.373904228 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563011 12 -1 695436 0 0xffffffff 0 -1 695436 0 ff ff ff ff 8c 9c 0a 00 00 00 00 00 ............ +4392 11.374212027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563023 12 26 703936 0 0x0000001a 0 26 703936 0 1a 00 00 00 c0 bd 0a 00 00 00 00 00 ............ +4394 11.374418497 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563035 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 93126656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4396 11.374573469 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563061 12 30 703937 0 0x0000001e 0 30 703937 0 1e 00 00 00 c1 bd 0a 00 00 00 00 00 ............ +4398 11.374659538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563073 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 93257728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8f 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4400 11.374719381 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886266 12 -1 703936 0 0xffffffff 0 -1 703936 0 ff ff ff ff c0 bd 0a 00 00 00 00 00 ............ +4402 11.375052929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886278 12 -1 703937 0 0xffffffff 0 -1 703937 0 ff ff ff ff c1 bd 0a 00 00 00 00 00 ............ +4404 11.375216484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886290 12 22 695437 0 0x00000016 0 22 695437 0 16 00 00 00 8d 9c 0a 00 00 00 00 00 ............ +4406 11.375411510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886302 22 18 2033037 0 0x00000012 1 2033037 0 196609 0 12 00 00 00 8d 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4408 11.375580311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886324 12 26 695438 0 0x0000001a 0 26 695438 0 1a 00 00 00 8e 9c 0a 00 00 00 00 00 ............ +4410 11.375654697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563103 12 -1 695437 0 0xffffffff 0 -1 695437 0 ff ff ff ff 8d 9c 0a 00 00 00 00 00 ............ +4411 11.375664711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886336 26 22 2033039 0 0x00000016 1 2033039 0 196609 0 16 00 00 00 8f 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4414 11.375834942 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563115 12 -1 695438 0 0xffffffff 0 -1 695438 0 ff ff ff ff 8e 9c 0a 00 00 00 00 00 ............ +4418 11.477387428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563127 12 26 703938 0 0x0000001a 0 26 703938 0 1a 00 00 00 c2 bd 0a 00 00 00 00 00 ............ +4420 11.477599859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563139 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 93388800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4422 11.477898598 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886362 12 -1 703938 0 0xffffffff 0 -1 703938 0 ff ff ff ff c2 bd 0a 00 00 00 00 00 ............ +4424 11.478531599 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886374 12 22 695439 0 0x00000016 0 22 695439 0 16 00 00 00 8f 9c 0a 00 00 00 00 00 ............ +4426 11.478763580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886386 22 18 2033041 0 0x00000012 1 2033041 0 196609 0 12 00 00 00 91 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4428 11.479033470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563165 12 -1 695439 0 0xffffffff 0 -1 695439 0 ff ff ff ff 8f 9c 0a 00 00 00 00 00 ............ +4432 11.581063509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563177 12 26 703939 0 0x0000001a 0 26 703939 0 1a 00 00 00 c3 bd 0a 00 00 00 00 00 ............ +4434 11.581241608 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563189 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 93519872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4436 11.581668139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886408 12 -1 703939 0 0xffffffff 0 -1 703939 0 ff ff ff ff c3 bd 0a 00 00 00 00 00 ............ +4438 11.582221985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886420 12 22 695440 0 0x00000016 0 22 695440 0 16 00 00 00 90 9c 0a 00 00 00 00 00 ............ +4440 11.582383394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886432 22 18 2033043 0 0x00000012 1 2033043 0 196609 0 12 00 00 00 93 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4442 11.582842112 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563215 12 -1 695440 0 0xffffffff 0 -1 695440 0 ff ff ff ff 90 9c 0a 00 00 00 00 00 ............ +4444 11.675573111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563227 12 101 703940 0 0x00000065 0 101 703940 0 65 00 00 00 c4 bd 0a 00 00 00 00 00 e........... +4446 11.675763130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563239 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 06 00 02 00 00 00 00 00 5b ae 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 06 00 02 00 00 00 00 .....!...o3...............[.......?.....3...|8.. +4448 11.676125050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886454 12 -1 703940 0 0xffffffff 0 -1 703940 0 ff ff ff ff c4 bd 0a 00 00 00 00 00 ............ +4450 11.677046061 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886466 12 52 695441 0 0x00000034 0 52 695441 0 34 00 00 00 91 9c 0a 00 00 00 00 00 4........... +4452 11.677210093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886478 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 06 00 02 00 00 00 00 00 00 00 c9 54 0e 61 4a 01 00 00 "0...Dk.................L."".([................T.a" +4454 11.677561045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563340 12 -1 695441 0 0xffffffff 0 -1 695441 0 ff ff ff ff 91 9c 0a 00 00 00 00 00 ............ +4456 11.678438187 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563352 12 30 703941 0 0x0000001e 0 30 703941 0 1e 00 00 00 c5 bd 0a 00 00 00 00 00 ............ +4458 11.678582430 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563364 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 93650944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 95 05 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4460 11.678945303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886530 12 -1 703941 0 0xffffffff 0 -1 703941 0 ff ff ff ff c5 bd 0a 00 00 00 00 00 ............ +4462 11.679283619 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886542 12 26 695442 0 0x0000001a 0 26 695442 0 1a 00 00 00 92 9c 0a 00 00 00 00 00 ............ +4464 11.679455757 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886554 26 22 2033045 0 0x00000016 1 2033045 0 196609 0 16 00 00 00 95 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4470 11.679743052 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563394 12 -1 695442 0 0xffffffff 0 -1 695442 0 ff ff ff ff 92 9c 0a 00 00 00 00 00 ............ +4472 11.683120012 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886580 12 -2 79940 79957 0xfffffffe 0 -2 79940 79957 fe ff ff ff 44 38 01 00 55 38 01 00 ....D8..U8.. +4476 11.684922934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563406 12 26 703942 0 0x0000001a 0 26 703942 0 1a 00 00 00 c6 bd 0a 00 00 00 00 00 ............ +4478 11.685085773 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563418 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 93782016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4480 11.685390711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886592 12 -1 703942 0 0xffffffff 0 -1 703942 0 ff ff ff ff c6 bd 0a 00 00 00 00 00 ............ +4482 11.685985327 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886604 12 22 695443 0 0x00000016 0 22 695443 0 16 00 00 00 93 9c 0a 00 00 00 00 00 ............ +4484 11.686147451 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886616 22 18 2033047 0 0x00000012 1 2033047 0 196609 0 12 00 00 00 97 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4486 11.686342239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563444 12 -1 695443 0 0xffffffff 0 -1 695443 0 ff ff ff ff 93 9c 0a 00 00 00 00 00 ............ +4493 11.768877506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563456 12 -2 79958 79940 0xfffffffe 0 -2 79958 79940 fe ff ff ff 56 38 01 00 44 38 01 00 ....V8..D8.. +4496 11.787372351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563468 12 26 703943 0 0x0000001a 0 26 703943 0 1a 00 00 00 c7 bd 0a 00 00 00 00 00 ............ +4498 11.787555218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563480 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 93913088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4500 11.787950754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886638 12 -1 703943 0 0xffffffff 0 -1 703943 0 ff ff ff ff c7 bd 0a 00 00 00 00 00 ............ +4502 11.788442135 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886650 12 22 695444 0 0x00000016 0 22 695444 0 16 00 00 00 94 9c 0a 00 00 00 00 00 ............ +4504 11.788647413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886662 22 18 2033049 0 0x00000012 1 2033049 0 196609 0 12 00 00 00 99 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4506 11.788865805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563506 12 -1 695444 0 0xffffffff 0 -1 695444 0 ff ff ff ff 94 9c 0a 00 00 00 00 00 ............ +4514 11.891579390 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563518 12 26 703944 0 0x0000001a 0 26 703944 0 1a 00 00 00 c8 bd 0a 00 00 00 00 00 ............ +4516 11.891770601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563530 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 94044160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 05 1f 00 00 00 00 00 ....T.c@.^1@.............. +4518 11.892200708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886684 12 -1 703944 0 0xffffffff 0 -1 703944 0 ff ff ff ff c8 bd 0a 00 00 00 00 00 ............ +4520 11.892772198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886696 12 22 695445 0 0x00000016 0 22 695445 0 16 00 00 00 95 9c 0a 00 00 00 00 00 ............ +4522 11.892934084 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886708 22 18 2033051 0 0x00000012 1 2033051 0 196609 0 12 00 00 00 9b 05 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4524 11.893256426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563556 12 -1 695445 0 0xffffffff 0 -1 695445 0 ff ff ff ff 95 9c 0a 00 00 00 00 00 ............ +4526 11.979299307 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563568 12 101 703945 0 0x00000065 0 101 703945 0 65 00 00 00 c9 bd 0a 00 00 00 00 00 e........... +4528 11.979513645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331563580 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 07 00 02 00 00 00 00 00 8b af 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 07 00 02 00 00 00 00 .....!...o3.......................?.....3...|8.. +4530 11.979937315 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886730 12 -1 703945 0 0xffffffff 0 -1 703945 0 ff ff ff ff c9 bd 0a 00 00 00 00 00 ............ +4532 11.981135607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886742 12 52 695446 0 0x00000034 0 52 695446 0 34 00 00 00 96 9c 0a 00 00 00 00 00 4........... +4534 11.981379271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375886754 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 07 00 02 00 00 00 00 00 00 00 c0 b9 3c 61 4a 01 00 00 "0...Dk.................L."".([........................ +6334 18.404987574 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331570906 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 105185280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 06 1f 00 00 00 00 00 ....T.c@.^1@......E....... +6336 18.405395508 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892642 12 -1 704062 0 0xffffffff 0 -1 704062 0 ff ff ff ff 3e be 0a 00 00 00 00 00 ....>....... +6338 18.405947924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892654 12 22 695552 0 0x00000016 0 22 695552 0 16 00 00 00 00 9d 0a 00 00 00 00 00 ............ +6340 18.406113625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892666 22 18 2033221 0 0x00000012 1 2033221 0 196609 0 12 00 00 00 45 06 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +6342 18.406409264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331570932 12 -1 695552 0 0xffffffff 0 -1 695552 0 ff ff ff ff 00 9d 0a 00 00 00 00 00 ............ +6344 18.508841515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331570944 12 26 704063 0 0x0000001a 0 26 704063 0 1a 00 00 00 3f be 0a 00 00 00 00 00 ....?....... +6346 18.509015322 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331570956 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 105316352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 06 1f 00 00 00 00 00 ....T.c@.^1@......G....... +6348 18.509327412 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892688 12 -1 704063 0 0xffffffff 0 -1 704063 0 ff ff ff ff 3f be 0a 00 00 00 00 00 ....?....... +6350 18.511336803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892700 12 22 695553 0 0x00000016 0 22 695553 0 16 00 00 00 01 9d 0a 00 00 00 00 00 ............ +6352 18.511499643 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892712 22 18 2033223 0 0x00000012 1 2033223 0 196609 0 12 00 00 00 47 06 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +6354 18.511769056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331570982 12 -1 695553 0 0xffffffff 0 -1 695553 0 ff ff ff ff 01 9d 0a 00 00 00 00 00 ............ +6358 18.612853527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331570994 12 26 704064 0 0x0000001a 0 26 704064 0 1a 00 00 00 40 be 0a 00 00 00 00 00 ....@....... +6360 18.613048553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571006 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 105447424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 06 1f 00 00 00 00 00 ....T.c@.^1@......I....... +6362 18.613476038 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892734 12 -1 704064 0 0xffffffff 0 -1 704064 0 ff ff ff ff 40 be 0a 00 00 00 00 00 ....@....... +6364 18.613969326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892746 12 22 695554 0 0x00000016 0 22 695554 0 16 00 00 00 02 9d 0a 00 00 00 00 00 ............ +6366 18.614126444 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892758 22 18 2033225 0 0x00000012 1 2033225 0 196609 0 12 00 00 00 49 06 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +6368 18.614464045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571032 12 -1 695554 0 0xffffffff 0 -1 695554 0 ff ff ff ff 02 9d 0a 00 00 00 00 00 ............ +6376 18.676290035 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571044 12 101 704065 0 0x00000065 0 101 704065 0 65 00 00 00 41 be 0a 00 00 00 00 00 e...A....... +6378 18.676454067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571056 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 1d 00 02 00 00 00 00 00 b4 c9 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 1d 00 02 00 00 00 00 .....!...o3.......................?.....3...|8.. +6380 18.676937819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892780 12 -1 704065 0 0xffffffff 0 -1 704065 0 ff ff ff ff 41 be 0a 00 00 00 00 00 ....A....... +6382 18.678314924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892792 12 52 695555 0 0x00000034 0 52 695555 0 34 00 00 00 03 9d 0a 00 00 00 00 00 4........... +6384 18.678487539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892804 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 1d 00 02 00 00 00 00 00 00 00 1d a0 3a 65 4a 01 00 00 "0...Dk.................L."".([.................:e" +6386 18.678749323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571157 12 -1 695555 0 0xffffffff 0 -1 695555 0 ff ff ff ff 03 9d 0a 00 00 00 00 00 ............ +6388 18.679492712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571169 12 30 704066 0 0x0000001e 0 30 704066 0 1e 00 00 00 42 be 0a 00 00 00 00 00 ....B....... +6390 18.679635763 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571181 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 105578496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4b 06 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......K........... +6392 18.679954529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892856 12 -1 704066 0 0xffffffff 0 -1 704066 0 ff ff ff ff 42 be 0a 00 00 00 00 00 ....B....... +6394 18.680337906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892868 12 26 695556 0 0x0000001a 0 26 695556 0 1a 00 00 00 04 9d 0a 00 00 00 00 00 ............ +6396 18.680526257 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892880 26 22 2033227 0 0x00000016 1 2033227 0 196609 0 16 00 00 00 4b 06 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....K..................... +6398 18.680765152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331571211 12 -1 695556 0 0xffffffff 0 -1 695556 0 ff ff ff ff 04 9d 0a 00 00 00 00 00 ............ +6404 18.692692995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375892906 12 -2 79954 79971 0xfffffffe 0 -2 79954 79971 fe ff ff ff 52 38 01 00 63 38 01 00 ....R8..c8.. diff --git a/captures/015-loopback-subscribe-invalid/tcp-payload-packets.tsv b/captures/015-loopback-subscribe-invalid/tcp-payload-packets.tsv new file mode 100644 index 0000000..0983cc7 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-payload-packets.tsv @@ -0,0 +1,2468 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +1 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3331550307 12 1a000000f7bc0a0000000000 ............ +3 0.000206709 127.0.0.1:57415 127.0.0.1:57433 3331550319 26 16000000548f6340e25e314001000300000067041f0000000000 ....T.c@.^1@......g....... +5 0.000704527 127.0.0.1:57433 127.0.0.1:57415 375876000 12 fffffffff7bc0a0000000000 ............ +7 0.001071453 127.0.0.1:57433 127.0.0.1:57415 375876012 12 16000000d49b0a0000000000 ............ +9 0.001233816 127.0.0.1:57433 127.0.0.1:57415 375876024 22 1200000067041f000000000001000300000000000000 ....g................. +11 0.001468420 127.0.0.1:57415 127.0.0.1:57433 3331550345 12 ffffffffd49b0a0000000000 ............ +45 0.102470875 127.0.0.1:57415 127.0.0.1:57433 3331550357 12 65000000f8bc0a0000000000 e........... +47 0.102622271 127.0.0.1:57415 127.0.0.1:57433 3331550369 101 1e0000001c2118d0c46f33bb010003000000e0ff01000000000026810ec39d01 .....!...o3...............&.......?.....3...|8.. +49 0.102941036 127.0.0.1:57433 127.0.0.1:57415 375876046 12 fffffffff8bc0a0000000000 ............ +51 0.103073359 127.0.0.1:57415 127.0.0.1:57433 3331550470 12 1a000000f9bc0a0000000000 ............ +52 0.103083611 127.0.0.1:57415 127.0.0.1:57433 3331550482 26 16000000548f6340e25e314001000300000069041f0000000000 ....T.c@.^1@......i....... +54 0.103318453 127.0.0.1:57433 127.0.0.1:57415 375876058 12 fffffffff9bc0a0000000000 ............ +56 0.104023933 127.0.0.1:57433 127.0.0.1:57415 375876070 12 16000000d59b0a0000000000 ............ +58 0.104254723 127.0.0.1:57433 127.0.0.1:57415 375876082 22 1200000069041f000000000001000300000000000000 ....i................. +60 0.104513645 127.0.0.1:57433 127.0.0.1:57415 375876104 12 34000000d69b0a0000000000 4........... +62 0.104596376 127.0.0.1:57415 127.0.0.1:57433 3331550508 12 ffffffffd59b0a0000000000 ............ +64 0.104766369 127.0.0.1:57433 127.0.0.1:57415 375876116 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............4.(Z +66 0.105042934 127.0.0.1:57415 127.0.0.1:57433 3331550520 12 ffffffffd69b0a0000000000 ............ +68 0.105846882 127.0.0.1:57415 127.0.0.1:57433 3331550532 12 1e000000fabc0a0000000000 ............ +70 0.106059313 127.0.0.1:57415 127.0.0.1:57433 3331550544 30 1a00000055ceff62b21b3a500100030000006b041f000000000000000000 ....U..b..:P......k........... +72 0.106498480 127.0.0.1:57433 127.0.0.1:57415 375876168 12 fffffffffabc0a0000000000 ............ +74 0.107019663 127.0.0.1:57433 127.0.0.1:57415 375876180 12 1a000000d79b0a0000000000 ............ +76 0.107231855 127.0.0.1:57433 127.0.0.1:57415 375876192 26 160000006b041f00000000000100030000000000000000000000 ....k..................... +78 0.107995033 127.0.0.1:57415 127.0.0.1:57433 3331550574 12 ffffffffd79b0a0000000000 ............ +109 0.169134617 127.0.0.1:57433 127.0.0.1:57415 375876218 12 feffffff2d3801003e380100 ....-8..>8.. +118 0.205874920 127.0.0.1:57415 127.0.0.1:57433 3331550586 12 1a000000fbbc0a0000000000 ............ +120 0.206147909 127.0.0.1:57415 127.0.0.1:57433 3331550598 26 16000000548f6340e25e31400100030000006d041f0000000000 ....T.c@.^1@......m....... +122 0.206637621 127.0.0.1:57433 127.0.0.1:57415 375876230 12 fffffffffbbc0a0000000000 ............ +124 0.207141161 127.0.0.1:57433 127.0.0.1:57415 375876242 12 16000000d89b0a0000000000 ............ +126 0.207307339 127.0.0.1:57433 127.0.0.1:57415 375876254 22 120000006d041f000000000001000300000000000000 ....m................. +128 0.207507610 127.0.0.1:57415 127.0.0.1:57433 3331550624 12 ffffffffd89b0a0000000000 ............ +131 0.240292788 127.0.0.1:57415 127.0.0.1:57433 3331550636 12 feffffff3f3801002d380100 ....?8..-8.. +140 0.309729338 127.0.0.1:57415 127.0.0.1:57433 3331550648 12 1a000000fcbc0a0000000000 ............ +142 0.309980631 127.0.0.1:57415 127.0.0.1:57433 3331550660 26 16000000548f6340e25e31400100030000006f041f0000000000 ....T.c@.^1@......o....... +144 0.310311079 127.0.0.1:57433 127.0.0.1:57415 375876276 12 fffffffffcbc0a0000000000 ............ +146 0.310811996 127.0.0.1:57433 127.0.0.1:57415 375876288 12 16000000d99b0a0000000000 ............ +148 0.311091423 127.0.0.1:57433 127.0.0.1:57415 375876300 22 120000006f041f000000000001000300000000000000 ....o................. +150 0.311518431 127.0.0.1:57415 127.0.0.1:57433 3331550686 12 ffffffffd99b0a0000000000 ............ +156 0.408263206 127.0.0.1:57415 127.0.0.1:57433 3331550698 12 22000000fdbc0a0000000000 "........... +158 0.408472061 127.0.0.1:57415 127.0.0.1:57433 3331550710 34 1e0000001c2118d0c46f33bb010003000000e1ff01000000000058820ec39d01 .....!...o3...............X....... +160 0.408561230 127.0.0.1:57415 127.0.0.1:57433 3331550744 12 43000000febc0a0000000000 C........... +162 0.408643723 127.0.0.1:57415 127.0.0.1:57433 3331550756 67 3f000000980433cb0cb47c380100030000000100000000e1ff0100000000003d ?.....3...|8...................=B.....&......... +164 0.408764124 127.0.0.1:57433 127.0.0.1:57415 375876322 12 fffffffffdbc0a0000000000 ............ +166 0.409029722 127.0.0.1:57433 127.0.0.1:57415 375876334 12 fffffffffebc0a0000000000 ............ +168 0.409975529 127.0.0.1:57433 127.0.0.1:57415 375876346 12 34000000da9b0a0000000000 4........... +170 0.410133362 127.0.0.1:57433 127.0.0.1:57415 375876358 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............9.WZ +172 0.410394430 127.0.0.1:57415 127.0.0.1:57433 3331550823 12 ffffffffda9b0a0000000000 ............ +174 0.411129236 127.0.0.1:57415 127.0.0.1:57433 3331550835 12 1e000000ffbc0a0000000000 ............ +176 0.411286831 127.0.0.1:57415 127.0.0.1:57433 3331550847 30 1a00000055ceff62b21b3a5001000300000071041f000000000000000000 ....U..b..:P......q........... +178 0.411656618 127.0.0.1:57433 127.0.0.1:57415 375876410 12 ffffffffffbc0a0000000000 ............ +180 0.412144661 127.0.0.1:57433 127.0.0.1:57415 375876422 12 1a000000db9b0a0000000000 ............ +182 0.412328005 127.0.0.1:57433 127.0.0.1:57415 375876434 26 1600000071041f00000000000100030000000000000000000000 ....q..................... +184 0.412639856 127.0.0.1:57415 127.0.0.1:57433 3331550877 12 ffffffffdb9b0a0000000000 ............ +186 0.412923574 127.0.0.1:57415 127.0.0.1:57433 3331550889 12 1a00000000bd0a0000000000 ............ +188 0.413059950 127.0.0.1:57415 127.0.0.1:57433 3331550901 26 16000000548f6340e25e314001000300000073041f0000000000 ....T.c@.^1@......s....... +190 0.413328171 127.0.0.1:57433 127.0.0.1:57415 375876460 12 ffffffff00bd0a0000000000 ............ +192 0.413738489 127.0.0.1:57433 127.0.0.1:57415 375876472 12 16000000dc9b0a0000000000 ............ +194 0.413877487 127.0.0.1:57433 127.0.0.1:57415 375876484 22 1200000073041f000000000001000300000000000000 ....s................. +196 0.414117098 127.0.0.1:57415 127.0.0.1:57433 3331550927 12 ffffffffdc9b0a0000000000 ............ +198 0.515110254 127.0.0.1:57415 127.0.0.1:57433 3331550939 12 1a00000001bd0a0000000000 ............ +200 0.515359163 127.0.0.1:57415 127.0.0.1:57433 3331550951 26 16000000548f6340e25e314001000300000075041f0000000000 ....T.c@.^1@......u....... +202 0.515724182 127.0.0.1:57433 127.0.0.1:57415 375876506 12 ffffffff01bd0a0000000000 ............ +204 0.516187191 127.0.0.1:57433 127.0.0.1:57415 375876518 12 16000000dd9b0a0000000000 ............ +206 0.516354322 127.0.0.1:57433 127.0.0.1:57415 375876530 22 1200000075041f000000000001000300000000000000 ....u................. +208 0.516615629 127.0.0.1:57415 127.0.0.1:57433 3331550977 12 ffffffffdd9b0a0000000000 ............ +212 0.618111610 127.0.0.1:57415 127.0.0.1:57433 3331550989 12 1a00000002bd0a0000000000 ............ +214 0.618278265 127.0.0.1:57415 127.0.0.1:57433 3331551001 26 16000000548f6340e25e314001000300000077041f0000000000 ....T.c@.^1@......w....... +216 0.618746042 127.0.0.1:57433 127.0.0.1:57415 375876552 12 ffffffff02bd0a0000000000 ............ +218 0.619087934 127.0.0.1:57433 127.0.0.1:57415 375876564 12 16000000de9b0a0000000000 ............ +220 0.619259834 127.0.0.1:57433 127.0.0.1:57415 375876576 22 1200000077041f000000000001000300000000000000 ....w................. +222 0.619578838 127.0.0.1:57415 127.0.0.1:57433 3331551027 12 ffffffffde9b0a0000000000 ............ +258 0.669917822 127.0.0.1:57433 127.0.0.1:57415 375876598 12 feffffff2e3801003f380100 .....8..?8.. +262 0.712472916 127.0.0.1:57415 127.0.0.1:57433 3331551039 12 6500000003bd0a0000000000 e........... +264 0.712639570 127.0.0.1:57415 127.0.0.1:57433 3331551051 101 1e0000001c2118d0c46f33bb010003000000e2ff01000000000088830ec39d01 .....!...o3.......................?.....3...|8.. +266 0.713052034 127.0.0.1:57433 127.0.0.1:57415 375876610 12 ffffffff03bd0a0000000000 ............ +268 0.714347601 127.0.0.1:57433 127.0.0.1:57415 375876622 12 34000000df9b0a0000000000 4........... +270 0.714567423 127.0.0.1:57433 127.0.0.1:57415 375876634 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................Z +272 0.714854240 127.0.0.1:57415 127.0.0.1:57433 3331551152 12 ffffffffdf9b0a0000000000 ............ +274 0.715681791 127.0.0.1:57415 127.0.0.1:57433 3331551164 12 1e00000004bd0a0000000000 ............ +276 0.715826511 127.0.0.1:57415 127.0.0.1:57433 3331551176 30 1a00000055ceff62b21b3a5001000300000079041f000000000000000000 ....U..b..:P......y........... +278 0.716068029 127.0.0.1:57433 127.0.0.1:57415 375876686 12 ffffffff04bd0a0000000000 ............ +280 0.717089891 127.0.0.1:57433 127.0.0.1:57415 375876698 12 1a000000e09b0a0000000000 ............ +282 0.717247963 127.0.0.1:57433 127.0.0.1:57415 375876710 26 1600000079041f00000000000100030000000000000000000000 ....y..................... +284 0.717525721 127.0.0.1:57415 127.0.0.1:57433 3331551206 12 ffffffffe09b0a0000000000 ............ +286 0.720939636 127.0.0.1:57415 127.0.0.1:57433 3331551218 12 1a00000005bd0a0000000000 ............ +288 0.721086740 127.0.0.1:57415 127.0.0.1:57433 3331551230 26 16000000548f6340e25e31400100030000007b041f0000000000 ....T.c@.^1@......{....... +290 0.721388817 127.0.0.1:57433 127.0.0.1:57415 375876736 12 ffffffff05bd0a0000000000 ............ +292 0.721784592 127.0.0.1:57433 127.0.0.1:57415 375876748 12 16000000e19b0a0000000000 ............ +294 0.721944332 127.0.0.1:57433 127.0.0.1:57415 375876760 22 120000007b041f000000000001000300000000000000 ....{................. +296 0.722199678 127.0.0.1:57415 127.0.0.1:57433 3331551256 12 ffffffffe19b0a0000000000 ............ +298 0.741788864 127.0.0.1:57415 127.0.0.1:57433 3331551268 12 feffffff403801002e380100 ....@8...8.. +326 0.823875189 127.0.0.1:57415 127.0.0.1:57433 3331551280 12 1a00000006bd0a0000000000 ............ +328 0.824045420 127.0.0.1:57415 127.0.0.1:57433 3331551292 26 16000000548f6340e25e31400100030000007d041f0000000000 ....T.c@.^1@......}....... +330 0.824423313 127.0.0.1:57433 127.0.0.1:57415 375876782 12 ffffffff06bd0a0000000000 ............ +332 0.825093269 127.0.0.1:57433 127.0.0.1:57415 375876794 12 16000000e29b0a0000000000 ............ +334 0.825252533 127.0.0.1:57433 127.0.0.1:57415 375876806 22 120000007d041f000000000001000300000000000000 ....}................. +336 0.825515509 127.0.0.1:57415 127.0.0.1:57433 3331551318 12 ffffffffe29b0a0000000000 ............ +348 0.927042007 127.0.0.1:57415 127.0.0.1:57433 3331551330 12 1a00000007bd0a0000000000 ............ +350 0.927215576 127.0.0.1:57415 127.0.0.1:57433 3331551342 26 16000000548f6340e25e31400100030000007f041f0000000000 ....T.c@.^1@.............. +352 0.927548647 127.0.0.1:57433 127.0.0.1:57415 375876828 12 ffffffff07bd0a0000000000 ............ +354 0.927979708 127.0.0.1:57433 127.0.0.1:57415 375876840 12 16000000e39b0a0000000000 ............ +356 0.928176641 127.0.0.1:57433 127.0.0.1:57415 375876852 22 120000007f041f000000000001000300000000000000 ...................... +358 0.928451777 127.0.0.1:57415 127.0.0.1:57433 3331551368 12 ffffffffe39b0a0000000000 ............ +360 1.018158436 127.0.0.1:57415 127.0.0.1:57433 3331551380 12 2200000008bd0a0000000000 "........... +362 1.018375397 127.0.0.1:57415 127.0.0.1:57433 3331551392 34 1e0000001c2118d0c46f33bb010003000000e3ff010000000000ba840ec39d01 .....!...o3....................... +364 1.018500566 127.0.0.1:57415 127.0.0.1:57433 3331551426 12 4300000009bd0a0000000000 C........... +366 1.018584251 127.0.0.1:57415 127.0.0.1:57433 3331551438 67 3f000000980433cb0cb47c380100030000000100000000e3ff0100000000003d ?.....3...|8...................=B.....&......... +368 1.018943310 127.0.0.1:57433 127.0.0.1:57415 375876874 12 ffffffff08bd0a0000000000 ............ +370 1.019158125 127.0.0.1:57433 127.0.0.1:57415 375876886 12 ffffffff09bd0a0000000000 ............ +372 1.019748926 127.0.0.1:57433 127.0.0.1:57415 375876898 12 34000000e49b0a0000000000 4........... +374 1.019918442 127.0.0.1:57433 127.0.0.1:57415 375876910 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................(.Z +376 1.020176411 127.0.0.1:57415 127.0.0.1:57433 3331551505 12 ffffffffe49b0a0000000000 ............ +378 1.020954132 127.0.0.1:57415 127.0.0.1:57433 3331551517 12 1e0000000abd0a0000000000 ............ +380 1.021087885 127.0.0.1:57415 127.0.0.1:57433 3331551529 30 1a00000055ceff62b21b3a5001000300000081041f000000000000000000 ....U..b..:P.................. +382 1.021377802 127.0.0.1:57433 127.0.0.1:57415 375876962 12 ffffffff0abd0a0000000000 ............ +384 1.021814823 127.0.0.1:57433 127.0.0.1:57415 375876974 12 1a000000e59b0a0000000000 ............ +386 1.021967411 127.0.0.1:57433 127.0.0.1:57415 375876986 26 1600000081041f00000000000100030000000000000000000000 .......................... +388 1.022146225 127.0.0.1:57415 127.0.0.1:57433 3331551559 12 ffffffffe59b0a0000000000 ............ +390 1.030735731 127.0.0.1:57415 127.0.0.1:57433 3331551571 12 1a0000000bbd0a0000000000 ............ +392 1.030875683 127.0.0.1:57415 127.0.0.1:57433 3331551583 26 16000000548f6340e25e314001000300000083041f0000000000 ....T.c@.^1@.............. +394 1.031220436 127.0.0.1:57433 127.0.0.1:57415 375877012 12 ffffffff0bbd0a0000000000 ............ +396 1.031623363 127.0.0.1:57433 127.0.0.1:57415 375877024 12 16000000e69b0a0000000000 ............ +398 1.031808615 127.0.0.1:57433 127.0.0.1:57415 375877036 22 1200000083041f000000000001000300000000000000 ...................... +400 1.031985760 127.0.0.1:57415 127.0.0.1:57433 3331551609 12 ffffffffe69b0a0000000000 ............ +404 1.133147240 127.0.0.1:57415 127.0.0.1:57433 3331551621 12 1a0000000cbd0a0000000000 ............ +406 1.133374691 127.0.0.1:57415 127.0.0.1:57433 3331551633 26 16000000548f6340e25e314001000300000085041f0000000000 ....T.c@.^1@.............. +408 1.133620977 127.0.0.1:57433 127.0.0.1:57415 375877058 12 ffffffff0cbd0a0000000000 ............ +410 1.134078741 127.0.0.1:57433 127.0.0.1:57415 375877070 12 16000000e79b0a0000000000 ............ +412 1.134270668 127.0.0.1:57433 127.0.0.1:57415 375877082 22 1200000085041f000000000001000300000000000000 ...................... +414 1.134529352 127.0.0.1:57415 127.0.0.1:57433 3331551659 12 ffffffffe79b0a0000000000 ............ +421 1.170273781 127.0.0.1:57433 127.0.0.1:57415 375877104 12 feffffff2f38010040380100 ..../8..@8.. +424 1.236411333 127.0.0.1:57415 127.0.0.1:57433 3331551671 12 1a0000000dbd0a0000000000 ............ +426 1.236620426 127.0.0.1:57415 127.0.0.1:57433 3331551683 26 16000000548f6340e25e314001000300000087041f0000000000 ....T.c@.^1@.............. +428 1.236964226 127.0.0.1:57433 127.0.0.1:57415 375877116 12 ffffffff0dbd0a0000000000 ............ +433 1.237730742 127.0.0.1:57433 127.0.0.1:57415 375877128 12 16000000e89b0a0000000000 ............ +436 1.237891197 127.0.0.1:57433 127.0.0.1:57415 375877140 22 1200000087041f000000000001000300000000000000 ...................... +439 1.238128662 127.0.0.1:57415 127.0.0.1:57433 3331551709 12 ffffffffe89b0a0000000000 ............ +443 1.242640734 127.0.0.1:57415 127.0.0.1:57433 3331551721 12 feffffff413801002f380100 ....A8../8.. +482 1.322579384 127.0.0.1:57415 127.0.0.1:57433 3331551733 12 650000000ebd0a0000000000 e........... +484 1.322776794 127.0.0.1:57415 127.0.0.1:57433 3331551745 101 1e0000001c2118d0c46f33bb010003000000e4ff010000000000ea850ec39d01 .....!...o3.......................?.....3...|8.. +486 1.323117971 127.0.0.1:57433 127.0.0.1:57415 375877162 12 ffffffff0ebd0a0000000000 ............ +488 1.323882818 127.0.0.1:57433 127.0.0.1:57415 375877174 12 34000000e99b0a0000000000 4........... +490 1.324043751 127.0.0.1:57433 127.0.0.1:57415 375877186 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............v..Z +492 1.324366808 127.0.0.1:57415 127.0.0.1:57433 3331551846 12 ffffffffe99b0a0000000000 ............ +494 1.325407267 127.0.0.1:57415 127.0.0.1:57433 3331551858 12 1e0000000fbd0a0000000000 ............ +496 1.325557470 127.0.0.1:57415 127.0.0.1:57433 3331551870 30 1a00000055ceff62b21b3a5001000300000089041f000000000000000000 ....U..b..:P.................. +498 1.325834274 127.0.0.1:57433 127.0.0.1:57415 375877238 12 ffffffff0fbd0a0000000000 ............ +500 1.326236963 127.0.0.1:57433 127.0.0.1:57415 375877250 12 1a000000ea9b0a0000000000 ............ +502 1.326435566 127.0.0.1:57433 127.0.0.1:57415 375877262 26 1600000089041f00000000000100030000000000000000000000 .......................... +504 1.326604605 127.0.0.1:57415 127.0.0.1:57433 3331551900 12 ffffffffea9b0a0000000000 ............ +506 1.339797735 127.0.0.1:57415 127.0.0.1:57433 3331551912 12 1a00000010bd0a0000000000 ............ +508 1.339958906 127.0.0.1:57415 127.0.0.1:57433 3331551924 26 16000000548f6340e25e31400100030000008b041f0000000000 ....T.c@.^1@.............. +510 1.340285778 127.0.0.1:57433 127.0.0.1:57415 375877288 12 ffffffff10bd0a0000000000 ............ +512 1.340877771 127.0.0.1:57433 127.0.0.1:57415 375877300 12 16000000eb9b0a0000000000 ............ +514 1.341030359 127.0.0.1:57433 127.0.0.1:57415 375877312 22 120000008b041f000000000001000300000000000000 ...................... +516 1.341273546 127.0.0.1:57415 127.0.0.1:57433 3331551950 12 ffffffffeb9b0a0000000000 ............ +522 1.443237782 127.0.0.1:57415 127.0.0.1:57433 3331551962 12 1a00000011bd0a0000000000 ............ +524 1.443481922 127.0.0.1:57415 127.0.0.1:57433 3331551974 26 16000000548f6340e25e31400100030000008d041f0000000000 ....T.c@.^1@.............. +526 1.443904400 127.0.0.1:57433 127.0.0.1:57415 375877334 12 ffffffff11bd0a0000000000 ............ +528 1.444427729 127.0.0.1:57433 127.0.0.1:57415 375877346 12 16000000ec9b0a0000000000 ............ +530 1.444596291 127.0.0.1:57433 127.0.0.1:57415 375877358 22 120000008d041f000000000001000300000000000000 ...................... +532 1.444960594 127.0.0.1:57415 127.0.0.1:57433 3331552000 12 ffffffffec9b0a0000000000 ............ +534 1.546433210 127.0.0.1:57415 127.0.0.1:57433 3331552012 12 1a00000012bd0a0000000000 ............ +536 1.546647310 127.0.0.1:57415 127.0.0.1:57433 3331552024 26 16000000548f6340e25e31400100030000008f041f0000000000 ....T.c@.^1@.............. +538 1.546978951 127.0.0.1:57433 127.0.0.1:57415 375877380 12 ffffffff12bd0a0000000000 ............ +540 1.547522306 127.0.0.1:57433 127.0.0.1:57415 375877392 12 16000000ed9b0a0000000000 ............ +542 1.547683001 127.0.0.1:57433 127.0.0.1:57415 375877404 22 120000008f041f000000000001000300000000000000 ...................... +544 1.547975063 127.0.0.1:57415 127.0.0.1:57433 3331552050 12 ffffffffed9b0a0000000000 ............ +548 1.627306461 127.0.0.1:57415 127.0.0.1:57433 3331552062 12 6500000013bd0a0000000000 e........... +550 1.627545118 127.0.0.1:57415 127.0.0.1:57433 3331552074 101 1e0000001c2118d0c46f33bb010003000000e5ff0100000000001b870ec39d01 .....!...o3.......................?.....3...|8.. +552 1.627912283 127.0.0.1:57433 127.0.0.1:57415 375877426 12 ffffffff13bd0a0000000000 ............ +554 1.629184723 127.0.0.1:57433 127.0.0.1:57415 375877438 12 34000000ee9b0a0000000000 4........... +556 1.629429817 127.0.0.1:57433 127.0.0.1:57415 375877450 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................$.[ +558 1.629743814 127.0.0.1:57415 127.0.0.1:57433 3331552175 12 ffffffffee9b0a0000000000 ............ +560 1.630514622 127.0.0.1:57415 127.0.0.1:57433 3331552187 12 1e00000014bd0a0000000000 ............ +562 1.630693674 127.0.0.1:57415 127.0.0.1:57433 3331552199 30 1a00000055ceff62b21b3a5001000300000091041f000000000000000000 ....U..b..:P.................. +564 1.631197691 127.0.0.1:57433 127.0.0.1:57415 375877502 12 ffffffff14bd0a0000000000 ............ +566 1.631555080 127.0.0.1:57433 127.0.0.1:57415 375877514 12 1a000000ef9b0a0000000000 ............ +568 1.631754160 127.0.0.1:57433 127.0.0.1:57415 375877526 26 1600000091041f00000000000100030000000000000000000000 .......................... +570 1.632047653 127.0.0.1:57415 127.0.0.1:57433 3331552229 12 ffffffffef9b0a0000000000 ............ +572 1.649816513 127.0.0.1:57415 127.0.0.1:57433 3331552241 12 1a00000015bd0a0000000000 ............ +574 1.649982214 127.0.0.1:57415 127.0.0.1:57433 3331552253 26 16000000548f6340e25e314001000300000093041f0000000000 ....T.c@.^1@.............. +576 1.650280237 127.0.0.1:57433 127.0.0.1:57415 375877552 12 ffffffff15bd0a0000000000 ............ +578 1.652096510 127.0.0.1:57433 127.0.0.1:57415 375877564 12 16000000f09b0a0000000000 ............ +580 1.652254105 127.0.0.1:57433 127.0.0.1:57415 375877576 22 1200000093041f000000000001000300000000000000 ...................... +582 1.652496815 127.0.0.1:57415 127.0.0.1:57433 3331552279 12 fffffffff09b0a0000000000 ............ +588 1.671928406 127.0.0.1:57433 127.0.0.1:57415 375877598 12 feffffff3038010041380100 ....08..A8.. +593 1.743787050 127.0.0.1:57415 127.0.0.1:57433 3331552291 12 feffffff4238010030380100 ....B8..08.. +600 1.753823280 127.0.0.1:57415 127.0.0.1:57433 3331552303 12 1a00000016bd0a0000000000 ............ +602 1.754026651 127.0.0.1:57415 127.0.0.1:57433 3331552315 26 16000000548f6340e25e314001000300000095041f0000000000 ....T.c@.^1@.............. +604 1.754342079 127.0.0.1:57433 127.0.0.1:57415 375877610 12 ffffffff16bd0a0000000000 ............ +606 1.754978895 127.0.0.1:57433 127.0.0.1:57415 375877622 12 16000000f19b0a0000000000 ............ +608 1.755172968 127.0.0.1:57433 127.0.0.1:57415 375877634 22 1200000095041f000000000001000300000000000000 ...................... +610 1.755432367 127.0.0.1:57415 127.0.0.1:57433 3331552341 12 fffffffff19b0a0000000000 ............ +700 1.858482361 127.0.0.1:57415 127.0.0.1:57433 3331552353 12 1a00000017bd0a0000000000 ............ +703 1.858655691 127.0.0.1:57415 127.0.0.1:57433 3331552365 26 16000000548f6340e25e314001000300000097041f0000000000 ....T.c@.^1@.............. +706 1.859002829 127.0.0.1:57433 127.0.0.1:57415 375877656 12 ffffffff17bd0a0000000000 ............ +708 1.859613180 127.0.0.1:57433 127.0.0.1:57415 375877668 12 16000000f29b0a0000000000 ............ +710 1.859795809 127.0.0.1:57433 127.0.0.1:57415 375877680 22 1200000097041f000000000001000300000000000000 ...................... +712 1.860054970 127.0.0.1:57415 127.0.0.1:57433 3331552391 12 fffffffff29b0a0000000000 ............ +776 1.932707787 127.0.0.1:57415 127.0.0.1:57433 3331552403 12 6500000018bd0a0000000000 e........... +778 1.932852268 127.0.0.1:57415 127.0.0.1:57433 3331552415 101 1e0000001c2118d0c46f33bb010003000000e6ff0100000000004c880ec39d01 .....!...o3...............L.......?.....3...|8.. +780 1.933205843 127.0.0.1:57433 127.0.0.1:57415 375877702 12 ffffffff18bd0a0000000000 ............ +782 1.934444904 127.0.0.1:57433 127.0.0.1:57415 375877714 12 34000000f39b0a0000000000 4........... +784 1.934622526 127.0.0.1:57433 127.0.0.1:57415 375877726 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................?[ +786 1.934938669 127.0.0.1:57415 127.0.0.1:57433 3331552516 12 fffffffff39b0a0000000000 ............ +788 1.935834408 127.0.0.1:57415 127.0.0.1:57433 3331552528 12 1e00000019bd0a0000000000 ............ +790 1.935993195 127.0.0.1:57415 127.0.0.1:57433 3331552540 30 1a00000055ceff62b21b3a5001000300000099041f000000000000000000 ....U..b..:P.................. +792 1.936268330 127.0.0.1:57433 127.0.0.1:57415 375877778 12 ffffffff19bd0a0000000000 ............ +794 1.936633825 127.0.0.1:57433 127.0.0.1:57415 375877790 12 1a000000f49b0a0000000000 ............ +796 1.936819315 127.0.0.1:57433 127.0.0.1:57415 375877802 26 1600000099041f00000000000100030000000000000000000000 .......................... +798 1.937003374 127.0.0.1:57415 127.0.0.1:57433 3331552570 12 fffffffff49b0a0000000000 ............ +868 1.961331606 127.0.0.1:57415 127.0.0.1:57433 3331552582 12 1a0000001abd0a0000000000 ............ +870 1.961476564 127.0.0.1:57415 127.0.0.1:57433 3331552594 26 16000000548f6340e25e31400100030000009b041f0000000000 ....T.c@.^1@.............. +872 1.961841822 127.0.0.1:57433 127.0.0.1:57415 375877828 12 ffffffff1abd0a0000000000 ............ +874 1.963051081 127.0.0.1:57433 127.0.0.1:57415 375877840 12 16000000f59b0a0000000000 ............ +876 1.963211060 127.0.0.1:57433 127.0.0.1:57415 375877852 22 120000009b041f000000000001000300000000000000 ...................... +878 1.963476181 127.0.0.1:57415 127.0.0.1:57433 3331552620 12 fffffffff59b0a0000000000 ............ +949 2.064859152 127.0.0.1:57415 127.0.0.1:57433 3331552632 12 1a0000001bbd0a0000000000 ............ +951 2.065034628 127.0.0.1:57415 127.0.0.1:57433 3331552644 26 16000000548f6340e25e31400100030000009d041f0000000000 ....T.c@.^1@.............. +953 2.065421104 127.0.0.1:57433 127.0.0.1:57415 375877874 12 ffffffff1bbd0a0000000000 ............ +957 2.066258430 127.0.0.1:57433 127.0.0.1:57415 375877886 12 16000000f69b0a0000000000 ............ +959 2.066417217 127.0.0.1:57433 127.0.0.1:57415 375877898 22 120000009d041f000000000001000300000000000000 ...................... +961 2.066680431 127.0.0.1:57415 127.0.0.1:57433 3331552670 12 fffffffff69b0a0000000000 ............ +964 2.169023752 127.0.0.1:57415 127.0.0.1:57433 3331552682 12 1a0000001cbd0a0000000000 ............ +966 2.169231415 127.0.0.1:57415 127.0.0.1:57433 3331552694 26 16000000548f6340e25e31400100030000009f041f0000000000 ....T.c@.^1@.............. +968 2.169668198 127.0.0.1:57433 127.0.0.1:57415 375877920 12 ffffffff1cbd0a0000000000 ............ +973 2.170121431 127.0.0.1:57433 127.0.0.1:57415 375877932 12 16000000f79b0a0000000000 ............ +976 2.170298576 127.0.0.1:57433 127.0.0.1:57415 375877944 22 120000009f041f000000000001000300000000000000 ...................... +978 2.170610428 127.0.0.1:57415 127.0.0.1:57433 3331552720 12 fffffffff79b0a0000000000 ............ +980 2.172849894 127.0.0.1:57433 127.0.0.1:57415 375877966 12 feffffff3138010042380100 ....18..B8.. +1061 2.237288713 127.0.0.1:57415 127.0.0.1:57433 3331552732 12 650000001dbd0a0000000000 e........... +1063 2.237442732 127.0.0.1:57415 127.0.0.1:57433 3331552744 101 1e0000001c2118d0c46f33bb010003000000e7ff0100000000007d890ec39d01 .....!...o3...............}.......?.....3...|8.. +1065 2.237748623 127.0.0.1:57433 127.0.0.1:57415 375877978 12 ffffffff1dbd0a0000000000 ............ +1067 2.238835573 127.0.0.1:57433 127.0.0.1:57415 375877990 12 34000000f89b0a0000000000 4........... +1069 2.239044428 127.0.0.1:57433 127.0.0.1:57415 375878002 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................*n[ +1071 2.239326954 127.0.0.1:57415 127.0.0.1:57433 3331552845 12 fffffffff89b0a0000000000 ............ +1073 2.240289450 127.0.0.1:57415 127.0.0.1:57433 3331552857 12 1e0000001ebd0a0000000000 ............ +1075 2.240421772 127.0.0.1:57415 127.0.0.1:57433 3331552869 30 1a00000055ceff62b21b3a50010003000000a1041f000000000000000000 ....U..b..:P.................. +1077 2.240720272 127.0.0.1:57433 127.0.0.1:57415 375878054 12 ffffffff1ebd0a0000000000 ............ +1079 2.241080999 127.0.0.1:57433 127.0.0.1:57415 375878066 12 1a000000f99b0a0000000000 ............ +1081 2.241221905 127.0.0.1:57433 127.0.0.1:57415 375878078 26 16000000a1041f00000000000100030000000000000000000000 .......................... +1083 2.241514206 127.0.0.1:57415 127.0.0.1:57433 3331552899 12 fffffffff99b0a0000000000 ............ +1085 2.244536638 127.0.0.1:57415 127.0.0.1:57433 3331552911 12 feffffff4338010031380100 ....C8..18.. +1100 2.271704674 127.0.0.1:57415 127.0.0.1:57433 3331552923 12 1a0000001fbd0a0000000000 ............ +1102 2.271854877 127.0.0.1:57415 127.0.0.1:57433 3331552935 26 16000000548f6340e25e3140010003000000a3041f0000000000 ....T.c@.^1@.............. +1104 2.272119999 127.0.0.1:57433 127.0.0.1:57415 375878104 12 ffffffff1fbd0a0000000000 ............ +1110 2.272737503 127.0.0.1:57433 127.0.0.1:57415 375878116 12 16000000fa9b0a0000000000 ............ +1112 2.272929430 127.0.0.1:57433 127.0.0.1:57415 375878128 22 12000000a3041f000000000001000300000000000000 ...................... +1114 2.273148775 127.0.0.1:57415 127.0.0.1:57433 3331552961 12 fffffffffa9b0a0000000000 ............ +1140 2.374829292 127.0.0.1:57415 127.0.0.1:57433 3331552973 12 1a00000020bd0a0000000000 .... ....... +1142 2.375027418 127.0.0.1:57415 127.0.0.1:57433 3331552985 26 16000000548f6340e25e3140010003000000a5041f0000000000 ....T.c@.^1@.............. +1144 2.375455379 127.0.0.1:57433 127.0.0.1:57415 375878150 12 ffffffff20bd0a0000000000 .... ....... +1146 2.376164198 127.0.0.1:57433 127.0.0.1:57415 375878162 12 16000000fb9b0a0000000000 ............ +1148 2.376311541 127.0.0.1:57433 127.0.0.1:57415 375878174 22 12000000a5041f000000000001000300000000000000 ...................... +1152 2.376590014 127.0.0.1:57415 127.0.0.1:57433 3331553011 12 fffffffffb9b0a0000000000 ............ +1155 2.478275299 127.0.0.1:57415 127.0.0.1:57433 3331553023 12 1a00000021bd0a0000000000 ....!....... +1157 2.478496075 127.0.0.1:57415 127.0.0.1:57433 3331553035 26 16000000548f6340e25e3140010003000000a7041f0000000000 ....T.c@.^1@.............. +1159 2.478874922 127.0.0.1:57433 127.0.0.1:57415 375878196 12 ffffffff21bd0a0000000000 ....!....... +1161 2.479265928 127.0.0.1:57433 127.0.0.1:57415 375878208 12 16000000fc9b0a0000000000 ............ +1163 2.479529381 127.0.0.1:57433 127.0.0.1:57415 375878220 22 12000000a7041f000000000001000300000000000000 ...................... +1165 2.479799986 127.0.0.1:57415 127.0.0.1:57433 3331553061 12 fffffffffc9b0a0000000000 ............ +1168 2.541265726 127.0.0.1:57415 127.0.0.1:57433 3331553073 12 6500000022bd0a0000000000 e..."....... +1170 2.541438580 127.0.0.1:57415 127.0.0.1:57433 3331553085 101 1e0000001c2118d0c46f33bb010003000000e8ff010000000000ad8a0ec39d01 .....!...o3.......................?.....3...|8.. +1172 2.541854143 127.0.0.1:57433 127.0.0.1:57415 375878242 12 ffffffff22bd0a0000000000 ...."....... +1174 2.543147087 127.0.0.1:57433 127.0.0.1:57415 375878254 12 34000000fd9b0a0000000000 4........... +1176 2.543319941 127.0.0.1:57433 127.0.0.1:57415 375878266 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............J..[ +1178 2.543649435 127.0.0.1:57415 127.0.0.1:57433 3331553186 12 fffffffffd9b0a0000000000 ............ +1180 2.544302940 127.0.0.1:57415 127.0.0.1:57433 3331553198 12 1e00000023bd0a0000000000 ....#....... +1182 2.544472218 127.0.0.1:57415 127.0.0.1:57433 3331553210 30 1a00000055ceff62b21b3a50010003000000a9041f000000000000000000 ....U..b..:P.................. +1184 2.544712305 127.0.0.1:57433 127.0.0.1:57415 375878318 12 ffffffff23bd0a0000000000 ....#....... +1186 2.545269966 127.0.0.1:57433 127.0.0.1:57415 375878330 12 1a000000fe9b0a0000000000 ............ +1188 2.545468807 127.0.0.1:57433 127.0.0.1:57415 375878342 26 16000000a9041f00000000000100030000000000000000000000 .......................... +1190 2.545720100 127.0.0.1:57415 127.0.0.1:57433 3331553240 12 fffffffffe9b0a0000000000 ............ +1194 2.581744194 127.0.0.1:57415 127.0.0.1:57433 3331553252 12 1a00000024bd0a0000000000 ....$....... +1196 2.581887722 127.0.0.1:57415 127.0.0.1:57433 3331553264 26 16000000548f6340e25e3140010003000000ab041f0000000000 ....T.c@.^1@.............. +1198 2.582368612 127.0.0.1:57433 127.0.0.1:57415 375878368 12 ffffffff24bd0a0000000000 ....$....... +1200 2.582859993 127.0.0.1:57433 127.0.0.1:57415 375878380 12 16000000ff9b0a0000000000 ............ +1202 2.583028316 127.0.0.1:57433 127.0.0.1:57415 375878392 22 12000000ab041f000000000001000300000000000000 ...................... +1204 2.583323240 127.0.0.1:57415 127.0.0.1:57433 3331553290 12 ffffffffff9b0a0000000000 ............ +1211 2.673114300 127.0.0.1:57433 127.0.0.1:57415 375878414 12 feffffff3238010043380100 ....28..C8.. +1215 2.684276342 127.0.0.1:57415 127.0.0.1:57433 3331553302 12 1a00000025bd0a0000000000 ....%....... +1217 2.684518814 127.0.0.1:57415 127.0.0.1:57433 3331553314 26 16000000548f6340e25e3140010003000000ad041f0000000000 ....T.c@.^1@.............. +1219 2.684899569 127.0.0.1:57433 127.0.0.1:57415 375878426 12 ffffffff25bd0a0000000000 ....%....... +1221 2.685411453 127.0.0.1:57433 127.0.0.1:57415 375878438 12 16000000009c0a0000000000 ............ +1223 2.685614109 127.0.0.1:57433 127.0.0.1:57415 375878450 22 12000000ad041f000000000001000300000000000000 ...................... +1225 2.685889244 127.0.0.1:57415 127.0.0.1:57433 3331553340 12 ffffffff009c0a0000000000 ............ +1227 2.745963335 127.0.0.1:57415 127.0.0.1:57433 3331553352 12 feffffff4438010032380100 ....D8..28.. +1238 2.787873507 127.0.0.1:57415 127.0.0.1:57433 3331553364 12 1a00000026bd0a0000000000 ....&....... +1240 2.788132429 127.0.0.1:57415 127.0.0.1:57433 3331553376 26 16000000548f6340e25e3140010003000000af041f0000000000 ....T.c@.^1@.............. +1242 2.788722754 127.0.0.1:57433 127.0.0.1:57415 375878472 12 ffffffff26bd0a0000000000 ....&....... +1244 2.789257050 127.0.0.1:57433 127.0.0.1:57415 375878484 12 16000000019c0a0000000000 ............ +1246 2.789431095 127.0.0.1:57433 127.0.0.1:57415 375878496 22 12000000af041f000000000001000300000000000000 ...................... +1248 2.789789915 127.0.0.1:57415 127.0.0.1:57433 3331553402 12 ffffffff019c0a0000000000 ............ +1250 2.845260382 127.0.0.1:57415 127.0.0.1:57433 3331553414 12 6500000027bd0a0000000000 e...'....... +1252 2.845522165 127.0.0.1:57415 127.0.0.1:57433 3331553426 101 1e0000001c2118d0c46f33bb010003000000e9ff010000000000dc8b0ec39d01 .....!...o3.......................?.....3...|8.. +1254 2.846090794 127.0.0.1:57433 127.0.0.1:57415 375878518 12 ffffffff27bd0a0000000000 ....'....... +1256 2.847286224 127.0.0.1:57433 127.0.0.1:57415 375878530 12 34000000029c0a0000000000 4........... +1258 2.847498417 127.0.0.1:57433 127.0.0.1:57415 375878542 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................[ +1260 2.847765446 127.0.0.1:57415 127.0.0.1:57433 3331553527 12 ffffffff029c0a0000000000 ............ +1262 2.848522425 127.0.0.1:57415 127.0.0.1:57433 3331553539 12 1e00000028bd0a0000000000 ....(....... +1264 2.848666191 127.0.0.1:57415 127.0.0.1:57433 3331553551 30 1a00000055ceff62b21b3a50010003000000b1041f000000000000000000 ....U..b..:P.................. +1266 2.849024534 127.0.0.1:57433 127.0.0.1:57415 375878594 12 ffffffff28bd0a0000000000 ....(....... +1268 2.849471807 127.0.0.1:57433 127.0.0.1:57415 375878606 12 1a000000039c0a0000000000 ............ +1270 2.849631786 127.0.0.1:57433 127.0.0.1:57415 375878618 26 16000000b1041f00000000000100030000000000000000000000 .......................... +1272 2.849863768 127.0.0.1:57415 127.0.0.1:57433 3331553581 12 ffffffff039c0a0000000000 ............ +1281 2.891750574 127.0.0.1:57415 127.0.0.1:57433 3331553593 12 1a00000029bd0a0000000000 ....)....... +1283 2.891927242 127.0.0.1:57415 127.0.0.1:57433 3331553605 26 16000000548f6340e25e3140010003000000b3041f0000000000 ....T.c@.^1@.............. +1285 2.892199993 127.0.0.1:57433 127.0.0.1:57415 375878644 12 ffffffff29bd0a0000000000 ....)....... +1287 2.892867088 127.0.0.1:57433 127.0.0.1:57415 375878656 12 16000000049c0a0000000000 ............ +1289 2.893030167 127.0.0.1:57433 127.0.0.1:57415 375878668 22 12000000b3041f000000000001000300000000000000 ...................... +1291 2.893330336 127.0.0.1:57415 127.0.0.1:57433 3331553631 12 ffffffff049c0a0000000000 ............ +1294 2.995004892 127.0.0.1:57415 127.0.0.1:57433 3331553643 12 1a0000002abd0a0000000000 ....*....... +1296 2.995189428 127.0.0.1:57415 127.0.0.1:57433 3331553655 26 16000000548f6340e25e3140010003000000b5041f0000000000 ....T.c@.^1@.............. +1298 2.995586395 127.0.0.1:57433 127.0.0.1:57415 375878690 12 ffffffff2abd0a0000000000 ....*....... +1300 2.996168137 127.0.0.1:57433 127.0.0.1:57415 375878702 12 16000000059c0a0000000000 ............ +1302 2.996356487 127.0.0.1:57433 127.0.0.1:57415 375878714 22 12000000b5041f000000000001000300000000000000 ...................... +1304 2.996700287 127.0.0.1:57415 127.0.0.1:57433 3331553681 12 ffffffff059c0a0000000000 ............ +1309 3.099004507 127.0.0.1:57415 127.0.0.1:57433 3331553693 12 1a0000002bbd0a0000000000 ....+....... +1311 3.099177837 127.0.0.1:57415 127.0.0.1:57433 3331553705 26 16000000548f6340e25e3140010003000000b7041f0000000000 ....T.c@.^1@.............. +1313 3.099644423 127.0.0.1:57433 127.0.0.1:57415 375878736 12 ffffffff2bbd0a0000000000 ....+....... +1315 3.100097418 127.0.0.1:57433 127.0.0.1:57415 375878748 12 16000000069c0a0000000000 ............ +1317 3.100295305 127.0.0.1:57433 127.0.0.1:57415 375878760 22 12000000b7041f000000000001000300000000000000 ...................... +1319 3.100556850 127.0.0.1:57415 127.0.0.1:57433 3331553731 12 ffffffff069c0a0000000000 ............ +1351 3.150234699 127.0.0.1:57415 127.0.0.1:57433 3331553743 12 650000002cbd0a0000000000 e...,....... +1353 3.150437832 127.0.0.1:57415 127.0.0.1:57433 3331553755 101 1e0000001c2118d0c46f33bb010003000000eaff0100000000000e8d0ec39d01 .....!...o3.......................?.....3...|8.. +1355 3.150864363 127.0.0.1:57433 127.0.0.1:57415 375878782 12 ffffffff2cbd0a0000000000 ....,....... +1357 3.152182579 127.0.0.1:57433 127.0.0.1:57415 375878794 12 34000000079c0a0000000000 4........... +1359 3.152415991 127.0.0.1:57433 127.0.0.1:57415 375878806 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................[ +1361 3.152709007 127.0.0.1:57415 127.0.0.1:57433 3331553856 12 ffffffff079c0a0000000000 ............ +1363 3.153533697 127.0.0.1:57415 127.0.0.1:57433 3331553868 12 1e0000002dbd0a0000000000 ....-....... +1365 3.153697491 127.0.0.1:57415 127.0.0.1:57433 3331553880 30 1a00000055ceff62b21b3a50010003000000b9041f000000000000000000 ....U..b..:P.................. +1367 3.153986692 127.0.0.1:57433 127.0.0.1:57415 375878858 12 ffffffff2dbd0a0000000000 ....-....... +1369 3.154540539 127.0.0.1:57433 127.0.0.1:57415 375878870 12 1a000000089c0a0000000000 ............ +1371 3.154835939 127.0.0.1:57433 127.0.0.1:57415 375878882 26 16000000b9041f00000000000100030000000000000000000000 .......................... +1373 3.155107021 127.0.0.1:57415 127.0.0.1:57433 3331553910 12 ffffffff089c0a0000000000 ............ +1379 3.174111128 127.0.0.1:57433 127.0.0.1:57415 375878908 12 feffffff3338010044380100 ....38..D8.. +1384 3.202062368 127.0.0.1:57415 127.0.0.1:57433 3331553922 12 1a0000002ebd0a0000000000 ............ +1386 3.202246904 127.0.0.1:57415 127.0.0.1:57433 3331553934 26 16000000548f6340e25e3140010003000000bb041f0000000000 ....T.c@.^1@.............. +1388 3.202700138 127.0.0.1:57433 127.0.0.1:57415 375878920 12 ffffffff2ebd0a0000000000 ............ +1390 3.203165770 127.0.0.1:57433 127.0.0.1:57415 375878932 12 16000000099c0a0000000000 ............ +1392 3.203382730 127.0.0.1:57433 127.0.0.1:57415 375878944 22 12000000bb041f000000000001000300000000000000 ...................... +1394 3.203672647 127.0.0.1:57415 127.0.0.1:57433 3331553960 12 ffffffff099c0a0000000000 ............ +1397 3.246703625 127.0.0.1:57415 127.0.0.1:57433 3331553972 12 feffffff4538010033380100 ....E8..38.. +1415 3.305894613 127.0.0.1:57415 127.0.0.1:57433 3331553984 12 1a0000002fbd0a0000000000 ..../....... +1417 3.306055307 127.0.0.1:57415 127.0.0.1:57433 3331553996 26 16000000548f6340e25e3140010003000000bd041f0000000000 ....T.c@.^1@.............. +1419 3.306419849 127.0.0.1:57433 127.0.0.1:57415 375878966 12 ffffffff2fbd0a0000000000 ..../....... +1421 3.308484793 127.0.0.1:57433 127.0.0.1:57415 375878978 12 160000000a9c0a0000000000 ............ +1423 3.308684111 127.0.0.1:57433 127.0.0.1:57415 375878990 22 12000000bd041f000000000001000300000000000000 ...................... +1425 3.308958769 127.0.0.1:57415 127.0.0.1:57433 3331554022 12 ffffffff0a9c0a0000000000 ............ +1433 3.411805153 127.0.0.1:57415 127.0.0.1:57433 3331554034 12 1a00000030bd0a0000000000 ....0....... +1435 3.412084579 127.0.0.1:57415 127.0.0.1:57433 3331554046 26 16000000548f6340e25e3140010003000000bf041f0000000000 ....T.c@.^1@.............. +1437 3.412386656 127.0.0.1:57433 127.0.0.1:57415 375879012 12 ffffffff30bd0a0000000000 ....0....... +1439 3.413025379 127.0.0.1:57433 127.0.0.1:57415 375879024 12 160000000b9c0a0000000000 ............ +1441 3.413248539 127.0.0.1:57433 127.0.0.1:57415 375879036 22 12000000bf041f000000000001000300000000000000 ...................... +1443 3.413527727 127.0.0.1:57415 127.0.0.1:57433 3331554072 12 ffffffff0b9c0a0000000000 ............ +1445 3.454925537 127.0.0.1:57415 127.0.0.1:57433 3331554084 12 6500000031bd0a0000000000 e...1....... +1447 3.455090523 127.0.0.1:57415 127.0.0.1:57433 3331554096 101 1e0000001c2118d0c46f33bb010003000000ebff0100000000003e8e0ec39d01 .....!...o3...............>.......?.....3...|8.. +1449 3.455447912 127.0.0.1:57433 127.0.0.1:57415 375879058 12 ffffffff31bd0a0000000000 ....1....... +1451 3.456552744 127.0.0.1:57433 127.0.0.1:57415 375879070 12 340000000c9c0a0000000000 4........... +1453 3.456708193 127.0.0.1:57433 127.0.0.1:57415 375879082 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................'\ +1455 3.456966162 127.0.0.1:57415 127.0.0.1:57433 3331554197 12 ffffffff0c9c0a0000000000 ............ +1457 3.457740068 127.0.0.1:57415 127.0.0.1:57433 3331554209 12 1e00000032bd0a0000000000 ....2....... +1459 3.457887411 127.0.0.1:57415 127.0.0.1:57433 3331554221 30 1a00000055ceff62b21b3a50010003000000c1041f000000000000000000 ....U..b..:P.................. +1461 3.458163261 127.0.0.1:57433 127.0.0.1:57415 375879134 12 ffffffff32bd0a0000000000 ....2....... +1463 3.458716393 127.0.0.1:57433 127.0.0.1:57415 375879146 12 1a0000000d9c0a0000000000 ............ +1465 3.458873987 127.0.0.1:57433 127.0.0.1:57415 375879158 26 16000000c1041f00000000000100030000000000000000000000 .......................... +1467 3.459122181 127.0.0.1:57415 127.0.0.1:57433 3331554251 12 ffffffff0d9c0a0000000000 ............ +1469 3.514843464 127.0.0.1:57415 127.0.0.1:57433 3331554263 12 1a00000033bd0a0000000000 ....3....... +1471 3.515034914 127.0.0.1:57415 127.0.0.1:57433 3331554275 26 16000000548f6340e25e3140010003000000c3041f0000000000 ....T.c@.^1@.............. +1473 3.515452623 127.0.0.1:57433 127.0.0.1:57415 375879184 12 ffffffff33bd0a0000000000 ....3....... +1475 3.516001225 127.0.0.1:57433 127.0.0.1:57415 375879196 12 160000000e9c0a0000000000 ............ +1477 3.516255617 127.0.0.1:57433 127.0.0.1:57415 375879208 22 12000000c3041f000000000001000300000000000000 ...................... +1479 3.516564131 127.0.0.1:57415 127.0.0.1:57433 3331554301 12 ffffffff0e9c0a0000000000 ............ +1483 3.617941618 127.0.0.1:57415 127.0.0.1:57433 3331554313 12 1a00000034bd0a0000000000 ....4....... +1485 3.618201733 127.0.0.1:57415 127.0.0.1:57433 3331554325 26 16000000548f6340e25e3140010003000000c5041f0000000000 ....T.c@.^1@.............. +1487 3.618622303 127.0.0.1:57433 127.0.0.1:57415 375879230 12 ffffffff34bd0a0000000000 ....4....... +1489 3.619590998 127.0.0.1:57433 127.0.0.1:57415 375879242 12 160000000f9c0a0000000000 ............ +1491 3.619754791 127.0.0.1:57433 127.0.0.1:57415 375879254 22 12000000c5041f000000000001000300000000000000 ...................... +1493 3.620116472 127.0.0.1:57415 127.0.0.1:57433 3331554351 12 ffffffff0f9c0a0000000000 ............ +1499 3.674443007 127.0.0.1:57433 127.0.0.1:57415 375879276 12 feffffff3438010045380100 ....48..E8.. +1503 3.722733974 127.0.0.1:57415 127.0.0.1:57433 3331554363 12 1a00000035bd0a0000000000 ....5....... +1505 3.722927332 127.0.0.1:57415 127.0.0.1:57433 3331554375 26 16000000548f6340e25e3140010003000000c7041f0000000000 ....T.c@.^1@.............. +1507 3.723309040 127.0.0.1:57433 127.0.0.1:57415 375879288 12 ffffffff35bd0a0000000000 ....5....... +1509 3.724076033 127.0.0.1:57433 127.0.0.1:57415 375879300 12 16000000109c0a0000000000 ............ +1511 3.724323511 127.0.0.1:57433 127.0.0.1:57415 375879312 22 12000000c7041f000000000001000300000000000000 ...................... +1513 3.724604130 127.0.0.1:57415 127.0.0.1:57433 3331554401 12 ffffffff109c0a0000000000 ............ +1515 3.747309923 127.0.0.1:57415 127.0.0.1:57433 3331554413 12 feffffff4638010034380100 ....F8..48.. +1523 3.758728027 127.0.0.1:57415 127.0.0.1:57433 3331554425 12 2200000036bd0a0000000000 "...6....... +1525 3.758885622 127.0.0.1:57415 127.0.0.1:57433 3331554437 34 1e0000001c2118d0c46f33bb010003000000ecff0100000000006e8f0ec39d01 .....!...o3...............n....... +1527 3.759017706 127.0.0.1:57415 127.0.0.1:57433 3331554471 12 4300000037bd0a0000000000 C...7....... +1529 3.759104729 127.0.0.1:57415 127.0.0.1:57433 3331554483 67 3f000000980433cb0cb47c380100030000000100000000ecff0100000000003d ?.....3...|8...................=B.....&......... +1531 3.759386778 127.0.0.1:57433 127.0.0.1:57415 375879334 12 ffffffff36bd0a0000000000 ....6....... +1533 3.759575367 127.0.0.1:57433 127.0.0.1:57415 375879346 12 ffffffff37bd0a0000000000 ....7....... +1535 3.760479212 127.0.0.1:57433 127.0.0.1:57415 375879358 12 34000000119c0a0000000000 4........... +1537 3.760643244 127.0.0.1:57433 127.0.0.1:57415 375879370 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................ZV\ +1539 3.760903120 127.0.0.1:57415 127.0.0.1:57433 3331554550 12 ffffffff119c0a0000000000 ............ +1541 3.761609793 127.0.0.1:57415 127.0.0.1:57433 3331554562 12 1e00000038bd0a0000000000 ....8....... +1543 3.761746407 127.0.0.1:57415 127.0.0.1:57433 3331554574 30 1a00000055ceff62b21b3a50010003000000c9041f000000000000000000 ....U..b..:P.................. +1545 3.762108326 127.0.0.1:57433 127.0.0.1:57415 375879422 12 ffffffff38bd0a0000000000 ....8....... +1547 3.762443542 127.0.0.1:57433 127.0.0.1:57415 375879434 12 1a000000129c0a0000000000 ............ +1549 3.762592077 127.0.0.1:57433 127.0.0.1:57415 375879446 26 16000000c9041f00000000000100030000000000000000000000 .......................... +1551 3.762832642 127.0.0.1:57415 127.0.0.1:57433 3331554604 12 ffffffff129c0a0000000000 ............ +1555 3.825765133 127.0.0.1:57415 127.0.0.1:57433 3331554616 12 1a00000039bd0a0000000000 ....9....... +1557 3.825958490 127.0.0.1:57415 127.0.0.1:57433 3331554628 26 16000000548f6340e25e3140010003000000cb041f0000000000 ....T.c@.^1@.............. +1559 3.826376200 127.0.0.1:57433 127.0.0.1:57415 375879472 12 ffffffff39bd0a0000000000 ....9....... +1561 3.826880217 127.0.0.1:57433 127.0.0.1:57415 375879484 12 16000000139c0a0000000000 ............ +1563 3.827118635 127.0.0.1:57433 127.0.0.1:57415 375879496 22 12000000cb041f000000000001000300000000000000 ...................... +1565 3.827355623 127.0.0.1:57415 127.0.0.1:57433 3331554654 12 ffffffff139c0a0000000000 ............ +1580 3.930234194 127.0.0.1:57415 127.0.0.1:57433 3331554666 12 1a0000003abd0a0000000000 ....:....... +1582 3.930405140 127.0.0.1:57415 127.0.0.1:57433 3331554678 26 16000000548f6340e25e3140010003000000cd041f0000000000 ....T.c@.^1@.............. +1584 3.930863142 127.0.0.1:57433 127.0.0.1:57415 375879518 12 ffffffff3abd0a0000000000 ....:....... +1586 3.931803942 127.0.0.1:57433 127.0.0.1:57415 375879530 12 16000000149c0a0000000000 ............ +1588 3.932011843 127.0.0.1:57433 127.0.0.1:57415 375879542 22 12000000cd041f000000000001000300000000000000 ...................... +1590 3.932274580 127.0.0.1:57415 127.0.0.1:57433 3331554704 12 ffffffff149c0a0000000000 ............ +1616 4.034457207 127.0.0.1:57415 127.0.0.1:57433 3331554716 12 1a0000003bbd0a0000000000 ....;....... +1618 4.034646273 127.0.0.1:57415 127.0.0.1:57433 3331554728 26 16000000548f6340e25e3140010003000000cf041f0000000000 ....T.c@.^1@.............. +1620 4.035172462 127.0.0.1:57433 127.0.0.1:57415 375879564 12 ffffffff3bbd0a0000000000 ....;....... +1622 4.035554886 127.0.0.1:57433 127.0.0.1:57415 375879576 12 16000000159c0a0000000000 ............ +1624 4.035711050 127.0.0.1:57433 127.0.0.1:57415 375879588 22 12000000cf041f000000000001000300000000000000 ...................... +1626 4.036025047 127.0.0.1:57415 127.0.0.1:57433 3331554754 12 ffffffff159c0a0000000000 ............ +1658 4.063813925 127.0.0.1:57415 127.0.0.1:57433 3331554766 12 650000003cbd0a0000000000 e...<....... +1660 4.064050436 127.0.0.1:57415 127.0.0.1:57433 3331554778 101 1e0000001c2118d0c46f33bb010003000000edff0100000000009f900ec39d01 .....!...o3.......................?.....3...|8.. +1662 4.064341784 127.0.0.1:57433 127.0.0.1:57415 375879610 12 ffffffff3cbd0a0000000000 ....<....... +1664 4.065731049 127.0.0.1:57433 127.0.0.1:57415 375879622 12 34000000169c0a0000000000 4........... +1666 4.065883398 127.0.0.1:57433 127.0.0.1:57415 375879634 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................\ +1668 4.066179752 127.0.0.1:57415 127.0.0.1:57433 3331554879 12 ffffffff169c0a0000000000 ............ +1670 4.067065954 127.0.0.1:57415 127.0.0.1:57433 3331554891 12 1e0000003dbd0a0000000000 ....=....... +1672 4.067254305 127.0.0.1:57415 127.0.0.1:57433 3331554903 30 1a00000055ceff62b21b3a50010003000000d1041f000000000000000000 ....U..b..:P.................. +1674 4.067648411 127.0.0.1:57433 127.0.0.1:57415 375879686 12 ffffffff3dbd0a0000000000 ....=....... +1676 4.067993641 127.0.0.1:57433 127.0.0.1:57415 375879698 12 1a000000179c0a0000000000 ............ +1678 4.068238735 127.0.0.1:57433 127.0.0.1:57415 375879710 26 16000000d1041f00000000000100030000000000000000000000 .......................... +1681 4.068525791 127.0.0.1:57415 127.0.0.1:57433 3331554933 12 ffffffff179c0a0000000000 ............ +1684 4.137307167 127.0.0.1:57415 127.0.0.1:57433 3331554945 12 1a0000003ebd0a0000000000 ....>....... +1686 4.137471676 127.0.0.1:57415 127.0.0.1:57433 3331554957 26 16000000548f6340e25e3140010003000000d3041f0000000000 ....T.c@.^1@.............. +1688 4.137748241 127.0.0.1:57433 127.0.0.1:57415 375879736 12 ffffffff3ebd0a0000000000 ....>....... +1690 4.138293505 127.0.0.1:57433 127.0.0.1:57415 375879748 12 16000000189c0a0000000000 ............ +1692 4.138449907 127.0.0.1:57433 127.0.0.1:57415 375879760 22 12000000d3041f000000000001000300000000000000 ...................... +1694 4.138678789 127.0.0.1:57415 127.0.0.1:57433 3331554983 12 ffffffff189c0a0000000000 ............ +1700 4.175383329 127.0.0.1:57433 127.0.0.1:57415 375879782 12 feffffff3538010046380100 ....58..F8.. +1704 4.240837097 127.0.0.1:57415 127.0.0.1:57433 3331554995 12 1a0000003fbd0a0000000000 ....?....... +1706 4.241055727 127.0.0.1:57415 127.0.0.1:57433 3331555007 26 16000000548f6340e25e3140010003000000d5041f0000000000 ....T.c@.^1@.............. +1708 4.241410255 127.0.0.1:57433 127.0.0.1:57415 375879794 12 ffffffff3fbd0a0000000000 ....?....... +1710 4.241822004 127.0.0.1:57433 127.0.0.1:57415 375879806 12 16000000199c0a0000000000 ............ +1712 4.242026329 127.0.0.1:57433 127.0.0.1:57415 375879818 22 12000000d5041f000000000001000300000000000000 ...................... +1714 4.242268562 127.0.0.1:57415 127.0.0.1:57433 3331555033 12 ffffffff199c0a0000000000 ............ +1717 4.248213530 127.0.0.1:57415 127.0.0.1:57433 3331555045 12 feffffff4738010035380100 ....G8..58.. +1726 4.343436718 127.0.0.1:57415 127.0.0.1:57433 3331555057 12 1a00000040bd0a0000000000 ....@....... +1728 4.343610764 127.0.0.1:57415 127.0.0.1:57433 3331555069 26 16000000548f6340e25e3140010003000000d7041f0000000000 ....T.c@.^1@.............. +1730 4.343988657 127.0.0.1:57433 127.0.0.1:57415 375879840 12 ffffffff40bd0a0000000000 ....@....... +1732 4.344412327 127.0.0.1:57433 127.0.0.1:57415 375879852 12 160000001a9c0a0000000000 ............ +1734 4.344573975 127.0.0.1:57433 127.0.0.1:57415 375879864 22 12000000d7041f000000000001000300000000000000 ...................... +1736 4.344848633 127.0.0.1:57415 127.0.0.1:57433 3331555095 12 ffffffff1a9c0a0000000000 ............ +1740 4.369493008 127.0.0.1:57415 127.0.0.1:57433 3331555107 12 2200000041bd0a0000000000 "...A....... +1742 4.369648218 127.0.0.1:57415 127.0.0.1:57433 3331555119 34 1e0000001c2118d0c46f33bb010003000000eeff010000000000d1910ec39d01 .....!...o3....................... +1744 4.369816780 127.0.0.1:57415 127.0.0.1:57433 3331555153 12 4300000042bd0a0000000000 C...B....... +1746 4.369902372 127.0.0.1:57415 127.0.0.1:57433 3331555165 67 3f000000980433cb0cb47c380100030000000100000000eeff0100000000003d ?.....3...|8...................=B.....&......... +1748 4.370034218 127.0.0.1:57433 127.0.0.1:57415 375879886 12 ffffffff41bd0a0000000000 ....A....... +1750 4.370238304 127.0.0.1:57433 127.0.0.1:57415 375879898 12 ffffffff42bd0a0000000000 ....B....... +1752 4.371011496 127.0.0.1:57433 127.0.0.1:57415 375879910 12 340000001b9c0a0000000000 4........... +1754 4.371226788 127.0.0.1:57433 127.0.0.1:57415 375879922 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................\ +1756 4.371541262 127.0.0.1:57415 127.0.0.1:57433 3331555232 12 ffffffff1b9c0a0000000000 ............ +1758 4.372267246 127.0.0.1:57415 127.0.0.1:57433 3331555244 12 1e00000043bd0a0000000000 ....C....... +1760 4.372407675 127.0.0.1:57415 127.0.0.1:57433 3331555256 30 1a00000055ceff62b21b3a50010003000000d9041f000000000000000000 ....U..b..:P.................. +1762 4.372734070 127.0.0.1:57433 127.0.0.1:57415 375879974 12 ffffffff43bd0a0000000000 ....C....... +1764 4.373158455 127.0.0.1:57433 127.0.0.1:57415 375879986 12 1a0000001c9c0a0000000000 ............ +1766 4.373304844 127.0.0.1:57433 127.0.0.1:57415 375879998 26 16000000d9041f00000000000100030000000000000000000000 .......................... +1768 4.373532057 127.0.0.1:57415 127.0.0.1:57433 3331555286 12 ffffffff1c9c0a0000000000 ............ +1772 4.447897434 127.0.0.1:57415 127.0.0.1:57433 3331555298 12 1a00000044bd0a0000000000 ....D....... +1774 4.448164940 127.0.0.1:57415 127.0.0.1:57433 3331555310 26 16000000548f6340e25e3140010003000000db041f0000000000 ....T.c@.^1@.............. +1776 4.448514223 127.0.0.1:57433 127.0.0.1:57415 375880024 12 ffffffff44bd0a0000000000 ....D....... +1778 4.449046612 127.0.0.1:57433 127.0.0.1:57415 375880036 12 160000001d9c0a0000000000 ............ +1780 4.449291706 127.0.0.1:57433 127.0.0.1:57415 375880048 22 12000000db041f000000000001000300000000000000 ...................... +1782 4.449559450 127.0.0.1:57415 127.0.0.1:57433 3331555336 12 ffffffff1d9c0a0000000000 ............ +1784 4.551373720 127.0.0.1:57415 127.0.0.1:57433 3331555348 12 1a00000045bd0a0000000000 ....E....... +1786 4.551612854 127.0.0.1:57415 127.0.0.1:57433 3331555360 26 16000000548f6340e25e3140010003000000dd041f0000000000 ....T.c@.^1@.............. +1788 4.552600145 127.0.0.1:57433 127.0.0.1:57415 375880070 12 ffffffff45bd0a0000000000 ....E....... +1790 4.553051949 127.0.0.1:57433 127.0.0.1:57415 375880082 12 160000001e9c0a0000000000 ............ +1792 4.553275108 127.0.0.1:57433 127.0.0.1:57415 375880094 22 12000000dd041f000000000001000300000000000000 ...................... +1794 4.553646088 127.0.0.1:57415 127.0.0.1:57433 3331555386 12 ffffffff1e9c0a0000000000 ............ +1800 4.655375004 127.0.0.1:57415 127.0.0.1:57433 3331555398 12 1a00000046bd0a0000000000 ....F....... +1802 4.655682564 127.0.0.1:57415 127.0.0.1:57433 3331555410 26 16000000548f6340e25e3140010003000000df041f0000000000 ....T.c@.^1@.............. +1804 4.656111956 127.0.0.1:57433 127.0.0.1:57415 375880116 12 ffffffff46bd0a0000000000 ....F....... +1806 4.656593800 127.0.0.1:57433 127.0.0.1:57415 375880128 12 160000001f9c0a0000000000 ............ +1808 4.656802177 127.0.0.1:57433 127.0.0.1:57415 375880140 22 12000000df041f000000000001000300000000000000 ...................... +1810 4.657099724 127.0.0.1:57415 127.0.0.1:57433 3331555436 12 ffffffff1f9c0a0000000000 ............ +1816 4.673466206 127.0.0.1:57415 127.0.0.1:57433 3331555448 12 6500000047bd0a0000000000 e...G....... +1818 4.673667192 127.0.0.1:57415 127.0.0.1:57433 3331555460 101 1e0000001c2118d0c46f33bb010003000000efff01000000000001930ec39d01 .....!...o3.......................?.....3...|8.. +1820 4.674060822 127.0.0.1:57433 127.0.0.1:57415 375880162 12 ffffffff47bd0a0000000000 ....G....... +1822 4.675146341 127.0.0.1:57433 127.0.0.1:57415 375880174 12 34000000209c0a0000000000 4... ....... +1824 4.675345659 127.0.0.1:57433 127.0.0.1:57415 375880186 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................\ +1826 4.675649405 127.0.0.1:57415 127.0.0.1:57433 3331555561 12 ffffffff209c0a0000000000 .... ....... +1828 4.675863504 127.0.0.1:57433 127.0.0.1:57415 375880238 12 feffffff3638010047380100 ....68..G8.. +1832 4.676523447 127.0.0.1:57415 127.0.0.1:57433 3331555573 12 1e00000048bd0a0000000000 ....H....... +1834 4.676722050 127.0.0.1:57415 127.0.0.1:57433 3331555585 30 1a00000055ceff62b21b3a50010003000000e1041f000000000000000000 ....U..b..:P.................. +1836 4.677017927 127.0.0.1:57433 127.0.0.1:57415 375880250 12 ffffffff48bd0a0000000000 ....H....... +1838 4.677507401 127.0.0.1:57433 127.0.0.1:57415 375880262 12 1a000000219c0a0000000000 ....!....... +1840 4.677692413 127.0.0.1:57433 127.0.0.1:57415 375880274 26 16000000e1041f00000000000100030000000000000000000000 .......................... +1842 4.677891731 127.0.0.1:57415 127.0.0.1:57433 3331555615 12 ffffffff219c0a0000000000 ....!....... +1844 4.749820709 127.0.0.1:57415 127.0.0.1:57433 3331555627 12 feffffff4838010036380100 ....H8..68.. +1852 4.758856535 127.0.0.1:57415 127.0.0.1:57433 3331555639 12 1a00000049bd0a0000000000 ....I....... +1854 4.759021044 127.0.0.1:57415 127.0.0.1:57433 3331555651 26 16000000548f6340e25e3140010003000000e3041f0000000000 ....T.c@.^1@.............. +1856 4.759393454 127.0.0.1:57433 127.0.0.1:57415 375880300 12 ffffffff49bd0a0000000000 ....I....... +1858 4.759833813 127.0.0.1:57433 127.0.0.1:57415 375880312 12 16000000229c0a0000000000 ...."....... +1860 4.759981871 127.0.0.1:57433 127.0.0.1:57415 375880324 22 12000000e3041f000000000001000300000000000000 ...................... +1862 4.760246754 127.0.0.1:57415 127.0.0.1:57433 3331555677 12 ffffffff229c0a0000000000 ...."....... +1868 4.863108873 127.0.0.1:57415 127.0.0.1:57433 3331555689 12 1a0000004abd0a0000000000 ....J....... +1870 4.863288641 127.0.0.1:57415 127.0.0.1:57433 3331555701 26 16000000548f6340e25e3140010003000000e5041f0000000000 ....T.c@.^1@.............. +1872 4.863562822 127.0.0.1:57433 127.0.0.1:57415 375880346 12 ffffffff4abd0a0000000000 ....J....... +1874 4.864157200 127.0.0.1:57433 127.0.0.1:57415 375880358 12 16000000239c0a0000000000 ....#....... +1876 4.864371538 127.0.0.1:57433 127.0.0.1:57415 375880370 22 12000000e5041f000000000001000300000000000000 ...................... +1878 4.864637136 127.0.0.1:57415 127.0.0.1:57433 3331555727 12 ffffffff239c0a0000000000 ....#....... +1882 4.967377663 127.0.0.1:57415 127.0.0.1:57433 3331555739 12 1a0000004bbd0a0000000000 ....K....... +1884 4.967627525 127.0.0.1:57415 127.0.0.1:57433 3331555751 26 16000000548f6340e25e3140010003000000e7041f0000000000 ....T.c@.^1@.............. +1886 4.968168497 127.0.0.1:57433 127.0.0.1:57415 375880392 12 ffffffff4bbd0a0000000000 ....K....... +1888 4.968800068 127.0.0.1:57433 127.0.0.1:57415 375880404 12 16000000249c0a0000000000 ....$....... +1890 4.969005585 127.0.0.1:57433 127.0.0.1:57415 375880416 22 12000000e7041f000000000001000300000000000000 ...................... +1892 4.969360590 127.0.0.1:57415 127.0.0.1:57433 3331555777 12 ffffffff249c0a0000000000 ....$....... +1894 4.977243185 127.0.0.1:57415 127.0.0.1:57433 3331555789 12 650000004cbd0a0000000000 e...L....... +1896 4.977440119 127.0.0.1:57415 127.0.0.1:57433 3331555801 101 1e0000001c2118d0c46f33bb010003000000f0ff01000000000031940ec39d01 .....!...o3...............1.......?.....3...|8.. +1898 4.977802753 127.0.0.1:57433 127.0.0.1:57415 375880438 12 ffffffff4cbd0a0000000000 ....L....... +1900 4.979071856 127.0.0.1:57433 127.0.0.1:57415 375880450 12 34000000259c0a0000000000 4...%....... +1902 4.979226112 127.0.0.1:57433 127.0.0.1:57415 375880462 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............6L.] +1904 4.979499817 127.0.0.1:57415 127.0.0.1:57433 3331555902 12 ffffffff259c0a0000000000 ....%....... +1906 4.980583906 127.0.0.1:57415 127.0.0.1:57433 3331555914 12 1e0000004dbd0a0000000000 ....M....... +1908 4.980748892 127.0.0.1:57415 127.0.0.1:57433 3331555926 30 1a00000055ceff62b21b3a50010003000000e9041f000000000000000000 ....U..b..:P.................. +1910 4.981047630 127.0.0.1:57433 127.0.0.1:57415 375880514 12 ffffffff4dbd0a0000000000 ....M....... +1912 4.981606245 127.0.0.1:57433 127.0.0.1:57415 375880526 12 1a000000269c0a0000000000 ....&....... +1914 4.981770039 127.0.0.1:57433 127.0.0.1:57415 375880538 26 16000000e9041f00000000000100030000000000000000000000 .......................... +1916 4.982487679 127.0.0.1:57415 127.0.0.1:57433 3331555956 12 ffffffff269c0a0000000000 ....&....... +1918 5.070283413 127.0.0.1:57415 127.0.0.1:57433 3331555968 12 1a0000004ebd0a0000000000 ....N....... +1921 5.070465326 127.0.0.1:57415 127.0.0.1:57433 3331555980 26 16000000548f6340e25e3140010003000000eb041f0000000000 ....T.c@.^1@.............. +1924 5.070769548 127.0.0.1:57433 127.0.0.1:57415 375880564 12 ffffffff4ebd0a0000000000 ....N....... +1926 5.071357489 127.0.0.1:57433 127.0.0.1:57415 375880576 12 16000000279c0a0000000000 ....'....... +1928 5.071564674 127.0.0.1:57433 127.0.0.1:57415 375880588 22 12000000eb041f000000000001000300000000000000 ...................... +1930 5.071914673 127.0.0.1:57415 127.0.0.1:57433 3331556006 12 ffffffff279c0a0000000000 ....'....... +1936 5.173751116 127.0.0.1:57415 127.0.0.1:57433 3331556018 12 1a0000004fbd0a0000000000 ....O....... +1938 5.173922777 127.0.0.1:57415 127.0.0.1:57433 3331556030 26 16000000548f6340e25e3140010003000000ed041f0000000000 ....T.c@.^1@.............. +1940 5.174209833 127.0.0.1:57433 127.0.0.1:57415 375880610 12 ffffffff4fbd0a0000000000 ....O....... +1942 5.174845934 127.0.0.1:57433 127.0.0.1:57415 375880622 12 16000000289c0a0000000000 ....(....... +1944 5.175007582 127.0.0.1:57433 127.0.0.1:57415 375880634 22 12000000ed041f000000000001000300000000000000 ...................... +1946 5.175395966 127.0.0.1:57415 127.0.0.1:57433 3331556056 12 ffffffff289c0a0000000000 ....(....... +1948 5.176653862 127.0.0.1:57433 127.0.0.1:57415 375880656 12 feffffff3738010048380100 ....78..H8.. +1952 5.251734734 127.0.0.1:57415 127.0.0.1:57433 3331556068 12 feffffff4938010037380100 ....I8..78.. +1960 5.278134108 127.0.0.1:57415 127.0.0.1:57433 3331556080 12 1a00000050bd0a0000000000 ....P....... +1962 5.278380632 127.0.0.1:57415 127.0.0.1:57433 3331556092 26 16000000548f6340e25e3140010003000000ef041f0000000000 ....T.c@.^1@.............. +1964 5.278741121 127.0.0.1:57433 127.0.0.1:57415 375880668 12 ffffffff50bd0a0000000000 ....P....... +1966 5.279185772 127.0.0.1:57433 127.0.0.1:57415 375880680 12 16000000299c0a0000000000 ....)....... +1968 5.279346943 127.0.0.1:57433 127.0.0.1:57415 375880692 22 12000000ef041f000000000001000300000000000000 ...................... +1970 5.279686928 127.0.0.1:57415 127.0.0.1:57433 3331556118 12 ffffffff299c0a0000000000 ....)....... +1972 5.282465458 127.0.0.1:57415 127.0.0.1:57433 3331556130 12 6500000051bd0a0000000000 e...Q....... +1974 5.282617807 127.0.0.1:57415 127.0.0.1:57433 3331556142 101 1e0000001c2118d0c46f33bb010003000000f1ff01000000000062950ec39d01 .....!...o3...............b.......?.....3...|8.. +1976 5.282910824 127.0.0.1:57433 127.0.0.1:57415 375880714 12 ffffffff51bd0a0000000000 ....Q....... +1978 5.283955097 127.0.0.1:57433 127.0.0.1:57415 375880726 12 340000002a9c0a0000000000 4...*....... +1980 5.284111261 127.0.0.1:57433 127.0.0.1:57415 375880738 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................>] +1982 5.284399033 127.0.0.1:57415 127.0.0.1:57433 3331556243 12 ffffffff2a9c0a0000000000 ....*....... +1984 5.285121441 127.0.0.1:57415 127.0.0.1:57433 3331556255 12 1e00000052bd0a0000000000 ....R....... +1986 5.285290241 127.0.0.1:57415 127.0.0.1:57433 3331556267 30 1a00000055ceff62b21b3a50010003000000f1041f000000000000000000 ....U..b..:P.................. +1988 5.285620689 127.0.0.1:57433 127.0.0.1:57415 375880790 12 ffffffff52bd0a0000000000 ....R....... +1992 5.285945415 127.0.0.1:57433 127.0.0.1:57415 375880802 12 1a0000002b9c0a0000000000 ....+....... +1994 5.286087036 127.0.0.1:57433 127.0.0.1:57415 375880814 26 16000000f1041f00000000000100030000000000000000000000 .......................... +1996 5.286380291 127.0.0.1:57415 127.0.0.1:57433 3331556297 12 ffffffff2b9c0a0000000000 ....+....... +2002 5.381612539 127.0.0.1:57415 127.0.0.1:57433 3331556309 12 1a00000053bd0a0000000000 ....S....... +2004 5.381845236 127.0.0.1:57415 127.0.0.1:57433 3331556321 26 16000000548f6340e25e3140010003000000f3041f0000000000 ....T.c@.^1@.............. +2006 5.382239342 127.0.0.1:57433 127.0.0.1:57415 375880840 12 ffffffff53bd0a0000000000 ....S....... +2008 5.382881403 127.0.0.1:57433 127.0.0.1:57415 375880852 12 160000002c9c0a0000000000 ....,....... +2010 5.383041382 127.0.0.1:57433 127.0.0.1:57415 375880864 22 12000000f3041f000000000001000300000000000000 ...................... +2012 5.383309603 127.0.0.1:57415 127.0.0.1:57433 3331556347 12 ffffffff2c9c0a0000000000 ....,....... +2014 5.484657288 127.0.0.1:57415 127.0.0.1:57433 3331556359 12 1a00000054bd0a0000000000 ....T....... +2016 5.484842300 127.0.0.1:57415 127.0.0.1:57433 3331556371 26 16000000548f6340e25e3140010003000000f5041f0000000000 ....T.c@.^1@.............. +2018 5.485357285 127.0.0.1:57433 127.0.0.1:57415 375880886 12 ffffffff54bd0a0000000000 ....T....... +2020 5.485858202 127.0.0.1:57433 127.0.0.1:57415 375880898 12 160000002d9c0a0000000000 ....-....... +2022 5.486037254 127.0.0.1:57433 127.0.0.1:57415 375880910 22 12000000f5041f000000000001000300000000000000 ...................... +2024 5.486275911 127.0.0.1:57415 127.0.0.1:57433 3331556397 12 ffffffff2d9c0a0000000000 ....-....... +2039 5.586784124 127.0.0.1:57415 127.0.0.1:57433 3331556409 12 6500000055bd0a0000000000 e...U....... +2041 5.587013006 127.0.0.1:57415 127.0.0.1:57433 3331556421 101 1e0000001c2118d0c46f33bb010003000000f2ff01000000000092960ec39d01 .....!...o3.......................?.....3...|8.. +2043 5.587338924 127.0.0.1:57433 127.0.0.1:57415 375880932 12 ffffffff55bd0a0000000000 ....U....... +2044 5.587452412 127.0.0.1:57415 127.0.0.1:57433 3331556522 38 1a00000056bd0a000000000016000000548f6340e25e3140010003000000f704 ....V...........T.c@.^1@.............. +2046 5.587618828 127.0.0.1:57433 127.0.0.1:57415 375880944 12 ffffffff56bd0a0000000000 ....V....... +2048 5.588369131 127.0.0.1:57433 127.0.0.1:57415 375880956 12 160000002e9c0a0000000000 ............ +2050 5.588537216 127.0.0.1:57433 127.0.0.1:57415 375880968 22 12000000f7041f000000000001000300000000000000 ...................... +2052 5.588681936 127.0.0.1:57433 127.0.0.1:57415 375880990 12 340000002f9c0a0000000000 4.../....... +2054 5.588770151 127.0.0.1:57433 127.0.0.1:57415 375881002 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................Pm] +2055 5.588802338 127.0.0.1:57415 127.0.0.1:57433 3331556560 12 ffffffff2e9c0a0000000000 ............ +2058 5.589043856 127.0.0.1:57415 127.0.0.1:57433 3331556572 12 ffffffff2f9c0a0000000000 ..../....... +2060 5.589687586 127.0.0.1:57415 127.0.0.1:57433 3331556584 12 1e00000057bd0a0000000000 ....W....... +2062 5.589833021 127.0.0.1:57415 127.0.0.1:57433 3331556596 30 1a00000055ceff62b21b3a50010003000000f9041f000000000000000000 ....U..b..:P.................. +2064 5.590102196 127.0.0.1:57433 127.0.0.1:57415 375881054 12 ffffffff57bd0a0000000000 ....W....... +2065 5.590461254 127.0.0.1:57433 127.0.0.1:57415 375881066 12 1a000000309c0a0000000000 ....0....... +2067 5.590610504 127.0.0.1:57433 127.0.0.1:57415 375881078 26 16000000f9041f00000000000100030000000000000000000000 .......................... +2069 5.590878725 127.0.0.1:57415 127.0.0.1:57433 3331556626 12 ffffffff309c0a0000000000 ....0....... +2075 5.676671982 127.0.0.1:57433 127.0.0.1:57415 375881104 12 feffffff3838010049380100 ....88..I8.. +2079 5.691720724 127.0.0.1:57415 127.0.0.1:57433 3331556638 12 1a00000058bd0a0000000000 ....X....... +2081 5.691902161 127.0.0.1:57415 127.0.0.1:57433 3331556650 26 16000000548f6340e25e3140010003000000fb041f0000000000 ....T.c@.^1@.............. +2083 5.692250967 127.0.0.1:57433 127.0.0.1:57415 375881116 12 ffffffff58bd0a0000000000 ....X....... +2085 5.693093538 127.0.0.1:57433 127.0.0.1:57415 375881128 12 16000000319c0a0000000000 ....1....... +2087 5.693288803 127.0.0.1:57433 127.0.0.1:57415 375881140 22 12000000fb041f000000000001000300000000000000 ...................... +2089 5.693632603 127.0.0.1:57415 127.0.0.1:57433 3331556676 12 ffffffff319c0a0000000000 ....1....... +2095 5.753365517 127.0.0.1:57415 127.0.0.1:57433 3331556688 12 feffffff4a38010038380100 ....J8..88.. +2101 5.795263290 127.0.0.1:57415 127.0.0.1:57433 3331556700 12 1a00000059bd0a0000000000 ....Y....... +2103 5.795423985 127.0.0.1:57415 127.0.0.1:57433 3331556712 26 16000000548f6340e25e3140010003000000fd041f0000000000 ....T.c@.^1@.............. +2105 5.795815945 127.0.0.1:57433 127.0.0.1:57415 375881162 12 ffffffff59bd0a0000000000 ....Y....... +2107 5.796433210 127.0.0.1:57433 127.0.0.1:57415 375881174 12 16000000329c0a0000000000 ....2....... +2109 5.796661377 127.0.0.1:57433 127.0.0.1:57415 375881186 22 12000000fd041f000000000001000300000000000000 ...................... +2111 5.796935558 127.0.0.1:57415 127.0.0.1:57433 3331556738 12 ffffffff329c0a0000000000 ....2....... +2119 5.891382217 127.0.0.1:57415 127.0.0.1:57433 3331556750 12 220000005abd0a0000000000 "...Z....... +2121 5.891584158 127.0.0.1:57415 127.0.0.1:57433 3331556762 34 1e0000001c2118d0c46f33bb010003000000f3ff010000000000c3970ec39d01 .....!...o3....................... +2123 5.891667843 127.0.0.1:57415 127.0.0.1:57433 3331556796 12 430000005bbd0a0000000000 C...[....... +2125 5.891746759 127.0.0.1:57415 127.0.0.1:57433 3331556808 67 3f000000980433cb0cb47c380100030000000100000000f3ff0100000000003d ?.....3...|8...................=B.....&......... +2127 5.891952038 127.0.0.1:57433 127.0.0.1:57415 375881208 12 ffffffff5abd0a0000000000 ....Z....... +2129 5.892127752 127.0.0.1:57433 127.0.0.1:57415 375881220 12 ffffffff5bbd0a0000000000 ....[....... +2131 5.892801046 127.0.0.1:57433 127.0.0.1:57415 375881232 12 34000000339c0a0000000000 4...3....... +2133 5.892996550 127.0.0.1:57433 127.0.0.1:57415 375881244 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............+..] +2135 5.893254995 127.0.0.1:57415 127.0.0.1:57433 3331556875 12 ffffffff339c0a0000000000 ....3....... +2137 5.894187450 127.0.0.1:57415 127.0.0.1:57433 3331556887 12 1e0000005cbd0a0000000000 ....\....... +2139 5.894321918 127.0.0.1:57415 127.0.0.1:57433 3331556899 30 1a00000055ceff62b21b3a50010003000000ff041f000000000000000000 ....U..b..:P.................. +2141 5.894545794 127.0.0.1:57433 127.0.0.1:57415 375881296 12 ffffffff5cbd0a0000000000 ....\....... +2143 5.894990921 127.0.0.1:57433 127.0.0.1:57415 375881308 12 1a000000349c0a0000000000 ....4....... +2145 5.895168304 127.0.0.1:57433 127.0.0.1:57415 375881320 26 16000000ff041f00000000000100030000000000000000000000 .......................... +2147 5.895420790 127.0.0.1:57415 127.0.0.1:57433 3331556929 12 ffffffff349c0a0000000000 ....4....... +2149 5.897896767 127.0.0.1:57415 127.0.0.1:57433 3331556941 12 1a0000005dbd0a0000000000 ....]....... +2151 5.898025036 127.0.0.1:57415 127.0.0.1:57433 3331556953 26 16000000548f6340e25e314001000300000001051f0000000000 ....T.c@.^1@.............. +2153 5.898320436 127.0.0.1:57433 127.0.0.1:57415 375881346 12 ffffffff5dbd0a0000000000 ....]....... +2155 5.898730516 127.0.0.1:57433 127.0.0.1:57415 375881358 12 16000000359c0a0000000000 ....5....... +2157 5.898896933 127.0.0.1:57433 127.0.0.1:57415 375881370 22 1200000001051f000000000001000300000000000000 ...................... +2159 5.899121761 127.0.0.1:57415 127.0.0.1:57433 3331556979 12 ffffffff359c0a0000000000 ....5....... +2163 5.999901533 127.0.0.1:57415 127.0.0.1:57433 3331556991 12 1a0000005ebd0a0000000000 ....^....... +2165 6.000078440 127.0.0.1:57415 127.0.0.1:57433 3331557003 26 16000000548f6340e25e314001000300000003051f0000000000 ....T.c@.^1@.............. +2167 6.000412226 127.0.0.1:57433 127.0.0.1:57415 375881392 12 ffffffff5ebd0a0000000000 ....^....... +2169 6.001072168 127.0.0.1:57433 127.0.0.1:57415 375881404 12 16000000369c0a0000000000 ....6....... +2171 6.001290560 127.0.0.1:57433 127.0.0.1:57415 375881416 22 1200000003051f000000000001000300000000000000 ...................... +2173 6.001723051 127.0.0.1:57415 127.0.0.1:57433 3331557029 12 ffffffff369c0a0000000000 ....6....... +2187 6.103305817 127.0.0.1:57415 127.0.0.1:57433 3331557041 12 1a0000005fbd0a0000000000 ...._....... +2189 6.103545189 127.0.0.1:57415 127.0.0.1:57433 3331557053 26 16000000548f6340e25e314001000300000005051f0000000000 ....T.c@.^1@.............. +2191 6.103834391 127.0.0.1:57433 127.0.0.1:57415 375881438 12 ffffffff5fbd0a0000000000 ...._....... +2193 6.104366541 127.0.0.1:57433 127.0.0.1:57415 375881450 12 16000000379c0a0000000000 ....7....... +2195 6.104587317 127.0.0.1:57433 127.0.0.1:57415 375881462 22 1200000005051f000000000001000300000000000000 ...................... +2197 6.104866743 127.0.0.1:57415 127.0.0.1:57433 3331557079 12 ffffffff379c0a0000000000 ....7....... +2205 6.177142382 127.0.0.1:57433 127.0.0.1:57415 375881484 12 feffffff393801004a380100 ....98..J8.. +2209 6.195486307 127.0.0.1:57415 127.0.0.1:57433 3331557091 12 6500000060bd0a0000000000 e...`....... +2211 6.195651770 127.0.0.1:57415 127.0.0.1:57433 3331557103 101 1e0000001c2118d0c46f33bb010003000000f4ff010000000000f3980ec39d01 .....!...o3.......................?.....3...|8.. +2213 6.195944786 127.0.0.1:57433 127.0.0.1:57415 375881496 12 ffffffff60bd0a0000000000 ....`....... +2215 6.197093010 127.0.0.1:57433 127.0.0.1:57415 375881508 12 34000000389c0a0000000000 4...8....... +2217 6.197261095 127.0.0.1:57433 127.0.0.1:57415 375881520 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................'.] +2219 6.197554111 127.0.0.1:57415 127.0.0.1:57433 3331557204 12 ffffffff389c0a0000000000 ....8....... +2221 6.198294163 127.0.0.1:57415 127.0.0.1:57433 3331557216 12 1e00000061bd0a0000000000 ....a....... +2223 6.198525667 127.0.0.1:57415 127.0.0.1:57433 3331557228 30 1a00000055ceff62b21b3a5001000300000007051f000000000000000000 ....U..b..:P.................. +2225 6.198734283 127.0.0.1:57433 127.0.0.1:57415 375881572 12 ffffffff61bd0a0000000000 ....a....... +2227 6.199110031 127.0.0.1:57433 127.0.0.1:57415 375881584 12 1a000000399c0a0000000000 ....9....... +2229 6.199257612 127.0.0.1:57433 127.0.0.1:57415 375881596 26 1600000007051f00000000000100030000000000000000000000 .......................... +2231 6.199555397 127.0.0.1:57415 127.0.0.1:57433 3331557258 12 ffffffff399c0a0000000000 ....9....... +2233 6.205941200 127.0.0.1:57415 127.0.0.1:57433 3331557270 12 1a00000062bd0a0000000000 ....b....... +2235 6.206118345 127.0.0.1:57415 127.0.0.1:57433 3331557282 26 16000000548f6340e25e314001000300000009051f0000000000 ....T.c@.^1@.............. +2237 6.206744671 127.0.0.1:57433 127.0.0.1:57415 375881622 12 ffffffff62bd0a0000000000 ....b....... +2239 6.206981421 127.0.0.1:57433 127.0.0.1:57415 375881634 12 160000003a9c0a0000000000 ....:....... +2241 6.207146883 127.0.0.1:57433 127.0.0.1:57415 375881646 22 1200000009051f000000000001000300000000000000 ...................... +2243 6.207393169 127.0.0.1:57415 127.0.0.1:57433 3331557308 12 ffffffff3a9c0a0000000000 ....:....... +2249 6.254190445 127.0.0.1:57415 127.0.0.1:57433 3331557320 12 feffffff4b38010039380100 ....K8..98.. +2255 6.309417009 127.0.0.1:57415 127.0.0.1:57433 3331557332 12 1a00000063bd0a0000000000 ....c....... +2257 6.309540510 127.0.0.1:57415 127.0.0.1:57433 3331557344 26 16000000548f6340e25e31400100030000000b051f0000000000 ....T.c@.^1@.............. +2259 6.310008764 127.0.0.1:57433 127.0.0.1:57415 375881668 12 ffffffff63bd0a0000000000 ....c....... +2261 6.310546875 127.0.0.1:57433 127.0.0.1:57415 375881680 12 160000003b9c0a0000000000 ....;....... +2263 6.310711622 127.0.0.1:57433 127.0.0.1:57415 375881692 22 120000000b051f000000000001000300000000000000 ...................... +2265 6.311063290 127.0.0.1:57415 127.0.0.1:57433 3331557370 12 ffffffff3b9c0a0000000000 ....;....... +2271 6.413331747 127.0.0.1:57415 127.0.0.1:57433 3331557382 12 1a00000064bd0a0000000000 ....d....... +2273 6.413520098 127.0.0.1:57415 127.0.0.1:57433 3331557394 26 16000000548f6340e25e31400100030000000d051f0000000000 ....T.c@.^1@.............. +2275 6.413904905 127.0.0.1:57433 127.0.0.1:57415 375881714 12 ffffffff64bd0a0000000000 ....d....... +2277 6.414340734 127.0.0.1:57433 127.0.0.1:57415 375881726 12 160000003c9c0a0000000000 ....<....... +2279 6.414488792 127.0.0.1:57433 127.0.0.1:57415 375881738 22 120000000d051f000000000001000300000000000000 ...................... +2281 6.414749622 127.0.0.1:57415 127.0.0.1:57433 3331557420 12 ffffffff3c9c0a0000000000 ....<....... +2284 6.501799822 127.0.0.1:57415 127.0.0.1:57433 3331557432 12 6500000065bd0a0000000000 e...e....... +2286 6.502021313 127.0.0.1:57415 127.0.0.1:57433 3331557444 101 1e0000001c2118d0c46f33bb010003000000f5ff010000000000259a0ec39d01 .....!...o3...............%.......?.....3...|8.. +2288 6.502326727 127.0.0.1:57433 127.0.0.1:57415 375881760 12 ffffffff65bd0a0000000000 ....e....... +2292 6.503494740 127.0.0.1:57433 127.0.0.1:57415 375881772 12 340000003d9c0a0000000000 4...=....... +2294 6.503652334 127.0.0.1:57433 127.0.0.1:57415 375881784 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................] +2296 6.504030943 127.0.0.1:57415 127.0.0.1:57433 3331557545 12 ffffffff3d9c0a0000000000 ....=....... +2300 6.504893541 127.0.0.1:57415 127.0.0.1:57433 3331557557 12 1e00000066bd0a0000000000 ....f....... +2303 6.505087137 127.0.0.1:57415 127.0.0.1:57433 3331557569 30 1a00000055ceff62b21b3a500100030000000f051f000000000000000000 ....U..b..:P.................. +2306 6.505374908 127.0.0.1:57433 127.0.0.1:57415 375881836 12 ffffffff66bd0a0000000000 ....f....... +2310 6.505976200 127.0.0.1:57433 127.0.0.1:57415 375881848 12 1a0000003e9c0a0000000000 ....>....... +2312 6.506148577 127.0.0.1:57433 127.0.0.1:57415 375881860 26 160000000f051f00000000000100030000000000000000000000 .......................... +2314 6.506404400 127.0.0.1:57415 127.0.0.1:57433 3331557599 12 ffffffff3e9c0a0000000000 ....>....... +2316 6.516408682 127.0.0.1:57415 127.0.0.1:57433 3331557611 12 1a00000067bd0a0000000000 ....g....... +2318 6.516562939 127.0.0.1:57415 127.0.0.1:57433 3331557623 26 16000000548f6340e25e314001000300000011051f0000000000 ....T.c@.^1@.............. +2320 6.516893387 127.0.0.1:57433 127.0.0.1:57415 375881886 12 ffffffff67bd0a0000000000 ....g....... +2322 6.517325401 127.0.0.1:57433 127.0.0.1:57415 375881898 12 160000003f9c0a0000000000 ....?....... +2324 6.517472029 127.0.0.1:57433 127.0.0.1:57415 375881910 22 1200000011051f000000000001000300000000000000 ...................... +2326 6.517708063 127.0.0.1:57415 127.0.0.1:57433 3331557649 12 ffffffff3f9c0a0000000000 ....?....... +2333 6.620687246 127.0.0.1:57415 127.0.0.1:57433 3331557661 12 1a00000068bd0a0000000000 ....h....... +2335 6.620940447 127.0.0.1:57415 127.0.0.1:57433 3331557673 26 16000000548f6340e25e314001000300000013051f0000000000 ....T.c@.^1@.............. +2337 6.621273756 127.0.0.1:57433 127.0.0.1:57415 375881932 12 ffffffff68bd0a0000000000 ....h....... +2339 6.621874094 127.0.0.1:57433 127.0.0.1:57415 375881944 12 16000000409c0a0000000000 ....@....... +2341 6.622059107 127.0.0.1:57433 127.0.0.1:57415 375881956 22 1200000013051f000000000001000300000000000000 ...................... +2343 6.622369289 127.0.0.1:57415 127.0.0.1:57433 3331557699 12 ffffffff409c0a0000000000 ....@....... +2349 6.676470757 127.0.0.1:57433 127.0.0.1:57415 375881978 12 feffffff3a3801004b380100 ....:8..K8.. +2354 6.723601818 127.0.0.1:57415 127.0.0.1:57433 3331557711 12 1a00000069bd0a0000000000 ....i....... +2356 6.723872185 127.0.0.1:57415 127.0.0.1:57433 3331557723 26 16000000548f6340e25e314001000300000015051f0000000000 ....T.c@.^1@.............. +2358 6.724160433 127.0.0.1:57433 127.0.0.1:57415 375881990 12 ffffffff69bd0a0000000000 ....i....... +2360 6.724814177 127.0.0.1:57433 127.0.0.1:57415 375882002 12 16000000419c0a0000000000 ....A....... +2362 6.724980831 127.0.0.1:57433 127.0.0.1:57415 375882014 22 1200000015051f000000000001000300000000000000 ...................... +2364 6.725253582 127.0.0.1:57415 127.0.0.1:57433 3331557749 12 ffffffff419c0a0000000000 ....A....... +2370 6.756032467 127.0.0.1:57415 127.0.0.1:57433 3331557761 12 feffffff4c3801003a380100 ....L8..:8.. +2376 6.806506395 127.0.0.1:57415 127.0.0.1:57433 3331557773 12 220000006abd0a0000000000 "...j....... +2378 6.806699514 127.0.0.1:57415 127.0.0.1:57433 3331557785 34 1e0000001c2118d0c46f33bb010003000000f6ff010000000000569b0ec39d01 .....!...o3...............V....... +2380 6.806878328 127.0.0.1:57415 127.0.0.1:57433 3331557819 12 430000006bbd0a0000000000 C...k....... +2382 6.806987286 127.0.0.1:57415 127.0.0.1:57433 3331557831 67 3f000000980433cb0cb47c380100030000000100000000f6ff0100000000003d ?.....3...|8...................=B.....&......... +2383 6.807043314 127.0.0.1:57433 127.0.0.1:57415 375882036 12 ffffffff6abd0a0000000000 ....j....... +2386 6.807277203 127.0.0.1:57433 127.0.0.1:57415 375882048 12 ffffffff6bbd0a0000000000 ....k....... +2388 6.808303118 127.0.0.1:57433 127.0.0.1:57415 375882060 12 34000000429c0a0000000000 4...B....... +2390 6.808623075 127.0.0.1:57433 127.0.0.1:57415 375882072 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................j'^ +2392 6.808912039 127.0.0.1:57415 127.0.0.1:57433 3331557898 12 ffffffff429c0a0000000000 ....B....... +2394 6.809844732 127.0.0.1:57415 127.0.0.1:57433 3331557910 12 1e0000006cbd0a0000000000 ....l....... +2396 6.810075283 127.0.0.1:57415 127.0.0.1:57433 3331557922 30 1a00000055ceff62b21b3a5001000300000017051f000000000000000000 ....U..b..:P.................. +2398 6.810373306 127.0.0.1:57433 127.0.0.1:57415 375882124 12 ffffffff6cbd0a0000000000 ....l....... +2400 6.810723305 127.0.0.1:57433 127.0.0.1:57415 375882136 12 1a000000439c0a0000000000 ....C....... +2402 6.810816765 127.0.0.1:57433 127.0.0.1:57415 375882148 26 1600000017051f00000000000100030000000000000000000000 .......................... +2404 6.811078548 127.0.0.1:57415 127.0.0.1:57433 3331557952 12 ffffffff439c0a0000000000 ....C....... +2406 6.827042818 127.0.0.1:57415 127.0.0.1:57433 3331557964 12 1a0000006dbd0a0000000000 ....m....... +2408 6.827244759 127.0.0.1:57415 127.0.0.1:57433 3331557976 26 16000000548f6340e25e314001000300000019051f0000000000 ....T.c@.^1@.............. +2410 6.827660561 127.0.0.1:57433 127.0.0.1:57415 375882174 12 ffffffff6dbd0a0000000000 ....m....... +2412 6.827957392 127.0.0.1:57433 127.0.0.1:57415 375882186 12 16000000449c0a0000000000 ....D....... +2414 6.828102589 127.0.0.1:57433 127.0.0.1:57415 375882198 22 1200000019051f000000000001000300000000000000 ...................... +2416 6.828273535 127.0.0.1:57415 127.0.0.1:57433 3331558002 12 ffffffff449c0a0000000000 ....D....... +2423 6.930961132 127.0.0.1:57415 127.0.0.1:57433 3331558014 12 1a0000006ebd0a0000000000 ....n....... +2425 6.931134939 127.0.0.1:57415 127.0.0.1:57433 3331558026 26 16000000548f6340e25e31400100030000001b051f0000000000 ....T.c@.^1@.............. +2427 6.931452751 127.0.0.1:57433 127.0.0.1:57415 375882220 12 ffffffff6ebd0a0000000000 ....n....... +2429 6.932101965 127.0.0.1:57433 127.0.0.1:57415 375882232 12 16000000459c0a0000000000 ....E....... +2431 6.932296276 127.0.0.1:57433 127.0.0.1:57415 375882244 22 120000001b051f000000000001000300000000000000 ...................... +2433 6.932492733 127.0.0.1:57415 127.0.0.1:57433 3331558052 12 ffffffff459c0a0000000000 ....E....... +2468 7.033761740 127.0.0.1:57415 127.0.0.1:57433 3331558064 12 1a0000006fbd0a0000000000 ....o....... +2470 7.033981800 127.0.0.1:57415 127.0.0.1:57433 3331558076 26 16000000548f6340e25e31400100030000001d051f0000000000 ....T.c@.^1@.............. +2472 7.034425020 127.0.0.1:57433 127.0.0.1:57415 375882266 12 ffffffff6fbd0a0000000000 ....o....... +2474 7.035028934 127.0.0.1:57433 127.0.0.1:57415 375882278 12 16000000469c0a0000000000 ....F....... +2476 7.035257339 127.0.0.1:57433 127.0.0.1:57415 375882290 22 120000001d051f000000000001000300000000000000 ...................... +2479 7.035533428 127.0.0.1:57415 127.0.0.1:57433 3331558102 12 ffffffff469c0a0000000000 ....F....... +2484 7.111239672 127.0.0.1:57415 127.0.0.1:57433 3331558114 12 2200000070bd0a0000000000 "...p....... +2486 7.111420155 127.0.0.1:57415 127.0.0.1:57433 3331558126 34 1e0000001c2118d0c46f33bb010003000000f7ff010000000000869c0ec39d01 .....!...o3....................... +2488 7.111559391 127.0.0.1:57415 127.0.0.1:57433 3331558160 12 4300000071bd0a0000000000 C...q....... +2490 7.111646175 127.0.0.1:57415 127.0.0.1:57433 3331558172 67 3f000000980433cb0cb47c380100030000000100000000f7ff0100000000003d ?.....3...|8...................=B.....&......... +2492 7.111794710 127.0.0.1:57433 127.0.0.1:57415 375882312 12 ffffffff70bd0a0000000000 ....p....... +2494 7.112030506 127.0.0.1:57433 127.0.0.1:57415 375882324 12 ffffffff71bd0a0000000000 ....q....... +2496 7.113095284 127.0.0.1:57433 127.0.0.1:57415 375882336 12 34000000479c0a0000000000 4...G....... +2498 7.113362312 127.0.0.1:57433 127.0.0.1:57415 375882348 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................U^ +2500 7.113635778 127.0.0.1:57415 127.0.0.1:57433 3331558239 12 ffffffff479c0a0000000000 ....G....... +2502 7.114412069 127.0.0.1:57415 127.0.0.1:57433 3331558251 12 1e00000072bd0a0000000000 ....r....... +2504 7.114551783 127.0.0.1:57415 127.0.0.1:57433 3331558263 30 1a00000055ceff62b21b3a500100030000001f051f000000000000000000 ....U..b..:P.................. +2506 7.114815712 127.0.0.1:57433 127.0.0.1:57415 375882400 12 ffffffff72bd0a0000000000 ....r....... +2508 7.115250826 127.0.0.1:57433 127.0.0.1:57415 375882412 12 1a000000489c0a0000000000 ....H....... +2510 7.115448475 127.0.0.1:57433 127.0.0.1:57415 375882424 26 160000001f051f00000000000100030000000000000000000000 .......................... +2512 7.115705013 127.0.0.1:57415 127.0.0.1:57433 3331558293 12 ffffffff489c0a0000000000 ....H....... +2514 7.136684895 127.0.0.1:57415 127.0.0.1:57433 3331558305 12 1a00000073bd0a0000000000 ....s....... +2516 7.136835098 127.0.0.1:57415 127.0.0.1:57433 3331558317 26 16000000548f6340e25e314001000300000021051f0000000000 ....T.c@.^1@......!....... +2518 7.137121677 127.0.0.1:57433 127.0.0.1:57415 375882450 12 ffffffff73bd0a0000000000 ....s....... +2520 7.137561560 127.0.0.1:57433 127.0.0.1:57415 375882462 12 16000000499c0a0000000000 ....I....... +2523 7.137723207 127.0.0.1:57433 127.0.0.1:57415 375882474 22 1200000021051f000000000001000300000000000000 ....!................. +2525 7.137978792 127.0.0.1:57415 127.0.0.1:57433 3331558343 12 ffffffff499c0a0000000000 ....I....... +2532 7.177599430 127.0.0.1:57433 127.0.0.1:57415 375882496 12 feffffff3b3801004c380100 ....;8..L8.. +2536 7.239793062 127.0.0.1:57415 127.0.0.1:57433 3331558355 12 1a00000074bd0a0000000000 ....t....... +2538 7.240044832 127.0.0.1:57415 127.0.0.1:57433 3331558367 26 16000000548f6340e25e314001000300000023051f0000000000 ....T.c@.^1@......#....... +2540 7.240413189 127.0.0.1:57433 127.0.0.1:57415 375882508 12 ffffffff74bd0a0000000000 ....t....... +2542 7.241057873 127.0.0.1:57433 127.0.0.1:57415 375882520 12 160000004a9c0a0000000000 ....J....... +2544 7.241221666 127.0.0.1:57433 127.0.0.1:57415 375882532 22 1200000023051f000000000001000300000000000000 ....#................. +2546 7.241498232 127.0.0.1:57415 127.0.0.1:57433 3331558393 12 ffffffff4a9c0a0000000000 ....J....... +2554 7.256929159 127.0.0.1:57415 127.0.0.1:57433 3331558405 12 feffffff4d3801003b380100 ....M8..;8.. +2560 7.343077660 127.0.0.1:57415 127.0.0.1:57433 3331558417 12 1a00000075bd0a0000000000 ....u....... +2562 7.343233109 127.0.0.1:57415 127.0.0.1:57433 3331558429 26 16000000548f6340e25e314001000300000025051f0000000000 ....T.c@.^1@......%....... +2564 7.343576908 127.0.0.1:57433 127.0.0.1:57415 375882554 12 ffffffff75bd0a0000000000 ....u....... +2566 7.344117165 127.0.0.1:57433 127.0.0.1:57415 375882566 12 160000004b9c0a0000000000 ....K....... +2568 7.344282150 127.0.0.1:57433 127.0.0.1:57415 375882578 22 1200000025051f000000000001000300000000000000 ....%................. +2570 7.344503403 127.0.0.1:57415 127.0.0.1:57433 3331558455 12 ffffffff4b9c0a0000000000 ....K....... +2578 7.416127205 127.0.0.1:57415 127.0.0.1:57433 3331558467 12 2200000076bd0a0000000000 "...v....... +2580 7.416294336 127.0.0.1:57415 127.0.0.1:57433 3331558479 34 1e0000001c2118d0c46f33bb010003000000f8ff010000000000b89d0ec39d01 .....!...o3....................... +2582 7.416515350 127.0.0.1:57415 127.0.0.1:57433 3331558513 12 4300000077bd0a0000000000 C...w....... +2584 7.416612148 127.0.0.1:57415 127.0.0.1:57433 3331558525 67 3f000000980433cb0cb47c380100030000000100000000f8ff0100000000003d ?.....3...|8...................=B.....&......... +2585 7.416679382 127.0.0.1:57433 127.0.0.1:57415 375882600 12 ffffffff76bd0a0000000000 ....v....... +2588 7.416915178 127.0.0.1:57433 127.0.0.1:57415 375882612 12 ffffffff77bd0a0000000000 ....w....... +2590 7.417941809 127.0.0.1:57433 127.0.0.1:57415 375882624 12 340000004c9c0a0000000000 4...L....... +2592 7.418123960 127.0.0.1:57433 127.0.0.1:57415 375882636 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................o.^ +2594 7.418519735 127.0.0.1:57415 127.0.0.1:57433 3331558592 12 ffffffff4c9c0a0000000000 ....L....... +2595 7.419165850 127.0.0.1:57415 127.0.0.1:57433 3331558604 12 1e00000078bd0a0000000000 ....x....... +2597 7.419360161 127.0.0.1:57415 127.0.0.1:57433 3331558616 30 1a00000055ceff62b21b3a5001000300000027051f000000000000000000 ....U..b..:P......'........... +2599 7.419646025 127.0.0.1:57433 127.0.0.1:57415 375882688 12 ffffffff78bd0a0000000000 ....x....... +2601 7.420051336 127.0.0.1:57433 127.0.0.1:57415 375882700 12 1a0000004d9c0a0000000000 ....M....... +2603 7.420194626 127.0.0.1:57433 127.0.0.1:57415 375882712 26 1600000027051f00000000000100030000000000000000000000 ....'..................... +2605 7.420560360 127.0.0.1:57415 127.0.0.1:57433 3331558646 12 ffffffff4d9c0a0000000000 ....M....... +2607 7.445730448 127.0.0.1:57415 127.0.0.1:57433 3331558658 12 1a00000079bd0a0000000000 ....y....... +2609 7.445890427 127.0.0.1:57415 127.0.0.1:57433 3331558670 26 16000000548f6340e25e314001000300000029051f0000000000 ....T.c@.^1@......)....... +2611 7.446278334 127.0.0.1:57433 127.0.0.1:57415 375882738 12 ffffffff79bd0a0000000000 ....y....... +2613 7.446678162 127.0.0.1:57433 127.0.0.1:57415 375882750 12 160000004e9c0a0000000000 ....N....... +2615 7.446830273 127.0.0.1:57433 127.0.0.1:57415 375882762 22 1200000029051f000000000001000300000000000000 ....)................. +2617 7.447082758 127.0.0.1:57415 127.0.0.1:57433 3331558696 12 ffffffff4e9c0a0000000000 ....N....... +2621 7.549953699 127.0.0.1:57415 127.0.0.1:57433 3331558708 12 1a0000007abd0a0000000000 ....z....... +2623 7.550134420 127.0.0.1:57415 127.0.0.1:57433 3331558720 26 16000000548f6340e25e31400100030000002b051f0000000000 ....T.c@.^1@......+....... +2625 7.550537109 127.0.0.1:57433 127.0.0.1:57415 375882784 12 ffffffff7abd0a0000000000 ....z....... +2627 7.551733971 127.0.0.1:57433 127.0.0.1:57415 375882796 12 160000004f9c0a0000000000 ....O....... +2629 7.551897049 127.0.0.1:57433 127.0.0.1:57415 375882808 22 120000002b051f000000000001000300000000000000 ....+................. +2631 7.552159548 127.0.0.1:57415 127.0.0.1:57433 3331558746 12 ffffffff4f9c0a0000000000 ....O....... +2637 7.653687239 127.0.0.1:57415 127.0.0.1:57433 3331558758 12 1a0000007bbd0a0000000000 ....{....... +2639 7.653859138 127.0.0.1:57415 127.0.0.1:57433 3331558770 26 16000000548f6340e25e31400100030000002d051f0000000000 ....T.c@.^1@......-....... +2641 7.654286146 127.0.0.1:57433 127.0.0.1:57415 375882830 12 ffffffff7bbd0a0000000000 ....{....... +2643 7.654742002 127.0.0.1:57433 127.0.0.1:57415 375882842 12 16000000509c0a0000000000 ....P....... +2645 7.654912233 127.0.0.1:57433 127.0.0.1:57415 375882854 22 120000002d051f000000000001000300000000000000 ....-................. +2647 7.655360937 127.0.0.1:57415 127.0.0.1:57433 3331558796 12 ffffffff509c0a0000000000 ....P....... +2653 7.678822517 127.0.0.1:57433 127.0.0.1:57415 375882876 12 feffffff3c3801004d380100 ....<8..M8.. +2659 7.721510887 127.0.0.1:57415 127.0.0.1:57433 3331558808 12 650000007cbd0a0000000000 e...|....... +2661 7.721692562 127.0.0.1:57415 127.0.0.1:57433 3331558820 101 1e0000001c2118d0c46f33bb010003000000f9ff010000000000e99e0ec39d01 .....!...o3.......................?.....3...|8.. +2663 7.722148657 127.0.0.1:57433 127.0.0.1:57415 375882888 12 ffffffff7cbd0a0000000000 ....|....... +2665 7.722866058 127.0.0.1:57433 127.0.0.1:57415 375882900 12 34000000519c0a0000000000 4...Q....... +2667 7.723028660 127.0.0.1:57433 127.0.0.1:57415 375882912 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................^ +2669 7.723222017 127.0.0.1:57415 127.0.0.1:57433 3331558921 12 ffffffff519c0a0000000000 ....Q....... +2671 7.724109411 127.0.0.1:57415 127.0.0.1:57433 3331558933 12 1e0000007dbd0a0000000000 ....}....... +2673 7.724247932 127.0.0.1:57415 127.0.0.1:57433 3331558945 30 1a00000055ceff62b21b3a500100030000002f051f000000000000000000 ....U..b..:P....../........... +2675 7.724617958 127.0.0.1:57433 127.0.0.1:57415 375882964 12 ffffffff7dbd0a0000000000 ....}....... +2677 7.724913120 127.0.0.1:57433 127.0.0.1:57415 375882976 12 1a000000529c0a0000000000 ....R....... +2679 7.725102901 127.0.0.1:57433 127.0.0.1:57415 375882988 26 160000002f051f00000000000100030000000000000000000000 ..../..................... +2681 7.725284576 127.0.0.1:57415 127.0.0.1:57433 3331558975 12 ffffffff529c0a0000000000 ....R....... +2687 7.756942034 127.0.0.1:57415 127.0.0.1:57433 3331558987 12 1a0000007ebd0a0000000000 ....~....... +2689 7.757103682 127.0.0.1:57415 127.0.0.1:57433 3331558999 26 16000000548f6340e25e314001000300000031051f0000000000 ....T.c@.^1@......1....... +2691 7.757388830 127.0.0.1:57433 127.0.0.1:57415 375883014 12 ffffffff7ebd0a0000000000 ....~....... +2693 7.757733822 127.0.0.1:57415 127.0.0.1:57433 3331559025 12 feffffff4e3801003c380100 ....N8..<8.. +2697 7.758398533 127.0.0.1:57433 127.0.0.1:57415 375883026 12 16000000539c0a0000000000 ....S....... +2699 7.758625746 127.0.0.1:57433 127.0.0.1:57415 375883038 22 1200000031051f000000000001000300000000000000 ....1................. +2701 7.758801937 127.0.0.1:57415 127.0.0.1:57433 3331559037 12 ffffffff539c0a0000000000 ....S....... +2708 7.860478878 127.0.0.1:57415 127.0.0.1:57433 3331559049 12 1a0000007fbd0a0000000000 ............ +2710 7.860647202 127.0.0.1:57415 127.0.0.1:57433 3331559061 26 16000000548f6340e25e314001000300000033051f0000000000 ....T.c@.^1@......3....... +2712 7.861002922 127.0.0.1:57433 127.0.0.1:57415 375883060 12 ffffffff7fbd0a0000000000 ............ +2714 7.861646414 127.0.0.1:57433 127.0.0.1:57415 375883072 12 16000000549c0a0000000000 ....T....... +2716 7.861795664 127.0.0.1:57433 127.0.0.1:57415 375883084 22 1200000033051f000000000001000300000000000000 ....3................. +2718 7.862004757 127.0.0.1:57415 127.0.0.1:57433 3331559087 12 ffffffff549c0a0000000000 ....T....... +2725 7.964627981 127.0.0.1:57415 127.0.0.1:57433 3331559099 12 1a00000080bd0a0000000000 ............ +2727 7.964812756 127.0.0.1:57415 127.0.0.1:57433 3331559111 26 16000000548f6340e25e314001000300000035051f0000000000 ....T.c@.^1@......5....... +2729 7.965182304 127.0.0.1:57433 127.0.0.1:57415 375883106 12 ffffffff80bd0a0000000000 ............ +2731 7.965674639 127.0.0.1:57433 127.0.0.1:57415 375883118 12 16000000559c0a0000000000 ....U....... +2733 7.965836525 127.0.0.1:57433 127.0.0.1:57415 375883130 22 1200000035051f000000000001000300000000000000 ....5................. +2735 7.966134071 127.0.0.1:57415 127.0.0.1:57433 3331559137 12 ffffffff559c0a0000000000 ....U....... +2744 8.025009632 127.0.0.1:57415 127.0.0.1:57433 3331559149 12 2200000081bd0a0000000000 "........... +2746 8.025171518 127.0.0.1:57415 127.0.0.1:57433 3331559161 34 1e0000001c2118d0c46f33bb010003000000faff01000000000019a00ec39d01 .....!...o3....................... +2748 8.025342464 127.0.0.1:57415 127.0.0.1:57433 3331559195 12 4300000082bd0a0000000000 C........... +2750 8.025430202 127.0.0.1:57415 127.0.0.1:57433 3331559207 67 3f000000980433cb0cb47c380100030000000100000000faff0100000000003d ?.....3...|8...................=B.....&......... +2752 8.025567293 127.0.0.1:57433 127.0.0.1:57415 375883152 12 ffffffff81bd0a0000000000 ............ +2754 8.025791407 127.0.0.1:57433 127.0.0.1:57415 375883164 12 ffffffff82bd0a0000000000 ............ +2756 8.026707888 127.0.0.1:57433 127.0.0.1:57415 375883176 12 34000000569c0a0000000000 4...V....... +2758 8.026873112 127.0.0.1:57433 127.0.0.1:57415 375883188 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................U.^ +2760 8.027125597 127.0.0.1:57415 127.0.0.1:57433 3331559274 12 ffffffff569c0a0000000000 ....V....... +2762 8.027859211 127.0.0.1:57415 127.0.0.1:57433 3331559286 12 1e00000083bd0a0000000000 ............ +2764 8.028007746 127.0.0.1:57415 127.0.0.1:57433 3331559298 30 1a00000055ceff62b21b3a5001000300000037051f000000000000000000 ....U..b..:P......7........... +2766 8.028404713 127.0.0.1:57433 127.0.0.1:57415 375883240 12 ffffffff83bd0a0000000000 ............ +2768 8.028824568 127.0.0.1:57433 127.0.0.1:57415 375883252 12 1a000000579c0a0000000000 ....W....... +2770 8.029011965 127.0.0.1:57433 127.0.0.1:57415 375883264 26 1600000037051f00000000000100030000000000000000000000 ....7..................... +2772 8.029487848 127.0.0.1:57415 127.0.0.1:57433 3331559328 12 ffffffff579c0a0000000000 ....W....... +2774 8.067542076 127.0.0.1:57415 127.0.0.1:57433 3331559340 12 1a00000084bd0a0000000000 ............ +2776 8.067705631 127.0.0.1:57415 127.0.0.1:57433 3331559352 26 16000000548f6340e25e314001000300000039051f0000000000 ....T.c@.^1@......9....... +2778 8.068057537 127.0.0.1:57433 127.0.0.1:57415 375883290 12 ffffffff84bd0a0000000000 ............ +2780 8.068472862 127.0.0.1:57433 127.0.0.1:57415 375883302 12 16000000589c0a0000000000 ....X....... +2782 8.068644762 127.0.0.1:57433 127.0.0.1:57415 375883314 22 1200000039051f000000000001000300000000000000 ....9................. +2784 8.068901777 127.0.0.1:57415 127.0.0.1:57433 3331559378 12 ffffffff589c0a0000000000 ....X....... +2789 8.171608210 127.0.0.1:57415 127.0.0.1:57433 3331559390 12 1a00000085bd0a0000000000 ............ +2791 8.171835661 127.0.0.1:57415 127.0.0.1:57433 3331559402 26 16000000548f6340e25e31400100030000003b051f0000000000 ....T.c@.^1@......;....... +2793 8.172245741 127.0.0.1:57433 127.0.0.1:57415 375883336 12 ffffffff85bd0a0000000000 ............ +2795 8.172697306 127.0.0.1:57433 127.0.0.1:57415 375883348 12 16000000599c0a0000000000 ....Y....... +2797 8.172902107 127.0.0.1:57433 127.0.0.1:57415 375883360 22 120000003b051f000000000001000300000000000000 ....;................. +2799 8.173252106 127.0.0.1:57415 127.0.0.1:57433 3331559428 12 ffffffff599c0a0000000000 ....Y....... +2805 8.179183006 127.0.0.1:57433 127.0.0.1:57415 375883382 12 feffffff3d3801004e380100 ....=8..N8.. +2813 8.259239197 127.0.0.1:57415 127.0.0.1:57433 3331559440 12 feffffff4f3801003d380100 ....O8..=8.. +2817 8.274682522 127.0.0.1:57415 127.0.0.1:57433 3331559452 12 1a00000086bd0a0000000000 ............ +2819 8.274971962 127.0.0.1:57415 127.0.0.1:57433 3331559464 26 16000000548f6340e25e31400100030000003d051f0000000000 ....T.c@.^1@......=....... +2821 8.275382519 127.0.0.1:57433 127.0.0.1:57415 375883394 12 ffffffff86bd0a0000000000 ............ +2823 8.275937796 127.0.0.1:57433 127.0.0.1:57415 375883406 12 160000005a9c0a0000000000 ....Z....... +2825 8.276170492 127.0.0.1:57433 127.0.0.1:57415 375883418 22 120000003d051f000000000001000300000000000000 ....=................. +2827 8.276407003 127.0.0.1:57415 127.0.0.1:57433 3331559490 12 ffffffff5a9c0a0000000000 ....Z....... +2831 8.329855919 127.0.0.1:57415 127.0.0.1:57433 3331559502 12 6500000087bd0a0000000000 e........... +2833 8.330037594 127.0.0.1:57415 127.0.0.1:57433 3331559514 101 1e0000001c2118d0c46f33bb010003000000fbff01000000000049a10ec39d01 .....!...o3...............I.......?.....3...|8.. +2835 8.330305815 127.0.0.1:57433 127.0.0.1:57415 375883440 12 ffffffff87bd0a0000000000 ............ +2837 8.331521511 127.0.0.1:57433 127.0.0.1:57415 375883452 12 340000005b9c0a0000000000 4...[....... +2839 8.331691027 127.0.0.1:57433 127.0.0.1:57415 375883464 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................._ +2841 8.332002640 127.0.0.1:57415 127.0.0.1:57433 3331559615 12 ffffffff5b9c0a0000000000 ....[....... +2843 8.332808256 127.0.0.1:57415 127.0.0.1:57433 3331559627 12 1e00000088bd0a0000000000 ............ +2845 8.332936049 127.0.0.1:57415 127.0.0.1:57433 3331559639 30 1a00000055ceff62b21b3a500100030000003f051f000000000000000000 ....U..b..:P......?........... +2847 8.333245277 127.0.0.1:57433 127.0.0.1:57415 375883516 12 ffffffff88bd0a0000000000 ............ +2849 8.333627939 127.0.0.1:57433 127.0.0.1:57415 375883528 12 1a0000005c9c0a0000000000 ....\....... +2851 8.333810806 127.0.0.1:57433 127.0.0.1:57415 375883540 26 160000003f051f00000000000100030000000000000000000000 ....?..................... +2853 8.334048033 127.0.0.1:57415 127.0.0.1:57433 3331559669 12 ffffffff5c9c0a0000000000 ....\....... +2857 8.378293753 127.0.0.1:57415 127.0.0.1:57433 3331559681 12 1a00000089bd0a0000000000 ............ +2859 8.378457069 127.0.0.1:57415 127.0.0.1:57433 3331559693 26 16000000548f6340e25e314001000300000041051f0000000000 ....T.c@.^1@......A....... +2861 8.378724098 127.0.0.1:57433 127.0.0.1:57415 375883566 12 ffffffff89bd0a0000000000 ............ +2863 8.379197836 127.0.0.1:57433 127.0.0.1:57415 375883578 12 160000005d9c0a0000000000 ....]....... +2865 8.379401207 127.0.0.1:57433 127.0.0.1:57415 375883590 22 1200000041051f000000000001000300000000000000 ....A................. +2867 8.379612446 127.0.0.1:57415 127.0.0.1:57433 3331559719 12 ffffffff5d9c0a0000000000 ....]....... +2971 8.481285810 127.0.0.1:57415 127.0.0.1:57433 3331559731 12 1a0000008abd0a0000000000 ............ +2973 8.481538534 127.0.0.1:57415 127.0.0.1:57433 3331559743 26 16000000548f6340e25e314001000300000043051f0000000000 ....T.c@.^1@......C....... +2975 8.482312202 127.0.0.1:57433 127.0.0.1:57415 375883612 12 ffffffff8abd0a0000000000 ............ +2977 8.483023167 127.0.0.1:57433 127.0.0.1:57415 375883624 12 160000005e9c0a0000000000 ....^....... +2979 8.483184814 127.0.0.1:57433 127.0.0.1:57415 375883636 22 1200000043051f000000000001000300000000000000 ....C................. +2981 8.483447313 127.0.0.1:57415 127.0.0.1:57433 3331559769 12 ffffffff5e9c0a0000000000 ....^....... +3125 8.584527016 127.0.0.1:57415 127.0.0.1:57433 3331559781 12 1a0000008bbd0a0000000000 ............ +3127 8.584679842 127.0.0.1:57415 127.0.0.1:57433 3331559793 26 16000000548f6340e25e314001000300000045051f0000000000 ....T.c@.^1@......E....... +3129 8.585039854 127.0.0.1:57433 127.0.0.1:57415 375883658 12 ffffffff8bbd0a0000000000 ............ +3131 8.585600853 127.0.0.1:57433 127.0.0.1:57415 375883670 12 160000005f9c0a0000000000 ...._....... +3133 8.585803032 127.0.0.1:57433 127.0.0.1:57415 375883682 22 1200000045051f000000000001000300000000000000 ....E................. +3135 8.586072206 127.0.0.1:57415 127.0.0.1:57433 3331559819 12 ffffffff5f9c0a0000000000 ...._....... +3324 8.633689642 127.0.0.1:57415 127.0.0.1:57433 3331559831 12 220000008cbd0a0000000000 "........... +3326 8.633880377 127.0.0.1:57415 127.0.0.1:57433 3331559843 34 1e0000001c2118d0c46f33bb010003000000fcff01000000000079a20ec39d01 .....!...o3...............y....... +3328 8.633969069 127.0.0.1:57415 127.0.0.1:57433 3331559877 12 430000008dbd0a0000000000 C........... +3330 8.634053946 127.0.0.1:57415 127.0.0.1:57433 3331559889 67 3f000000980433cb0cb47c380100030000000100000000fcff0100000000003d ?.....3...|8...................=B.....&......... +3332 8.634145975 127.0.0.1:57433 127.0.0.1:57415 375883704 12 ffffffff8cbd0a0000000000 ............ +3334 8.634322405 127.0.0.1:57433 127.0.0.1:57415 375883716 12 ffffffff8dbd0a0000000000 ............ +3342 8.635072231 127.0.0.1:57433 127.0.0.1:57415 375883728 12 34000000609c0a0000000000 4...`....... +3345 8.635242701 127.0.0.1:57433 127.0.0.1:57415 375883740 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................(>_ +3350 8.635448933 127.0.0.1:57415 127.0.0.1:57433 3331559956 12 ffffffff609c0a0000000000 ....`....... +3364 8.636446714 127.0.0.1:57415 127.0.0.1:57433 3331559968 12 1e0000008ebd0a0000000000 ............ +3367 8.636611223 127.0.0.1:57415 127.0.0.1:57433 3331559980 30 1a00000055ceff62b21b3a5001000300000047051f000000000000000000 ....U..b..:P......G........... +3373 8.636996984 127.0.0.1:57433 127.0.0.1:57415 375883792 12 ffffffff8ebd0a0000000000 ............ +3380 8.637346745 127.0.0.1:57433 127.0.0.1:57415 375883804 12 1a000000619c0a0000000000 ....a....... +3383 8.637497187 127.0.0.1:57433 127.0.0.1:57415 375883816 26 1600000047051f00000000000100030000000000000000000000 ....G..................... +3388 8.637789011 127.0.0.1:57415 127.0.0.1:57433 3331560010 12 ffffffff619c0a0000000000 ....a....... +3444 8.679481506 127.0.0.1:57433 127.0.0.1:57415 375883842 12 feffffff3e3801004f380100 ....>8..O8.. +3448 8.688341379 127.0.0.1:57415 127.0.0.1:57433 3331560022 12 1a0000008fbd0a0000000000 ............ +3450 8.688503742 127.0.0.1:57415 127.0.0.1:57433 3331560034 26 16000000548f6340e25e314001000300000049051f0000000000 ....T.c@.^1@......I....... +3452 8.688770294 127.0.0.1:57433 127.0.0.1:57415 375883854 12 ffffffff8fbd0a0000000000 ............ +3454 8.689374924 127.0.0.1:57433 127.0.0.1:57415 375883866 12 16000000629c0a0000000000 ....b....... +3456 8.689541101 127.0.0.1:57433 127.0.0.1:57415 375883878 22 1200000049051f000000000001000300000000000000 ....I................. +3458 8.689794540 127.0.0.1:57415 127.0.0.1:57433 3331560060 12 ffffffff629c0a0000000000 ....b....... +3469 8.760113955 127.0.0.1:57415 127.0.0.1:57433 3331560072 12 feffffff503801003e380100 ....P8..>8.. +3472 8.791330814 127.0.0.1:57415 127.0.0.1:57433 3331560084 12 1a00000090bd0a0000000000 ............ +3474 8.791488647 127.0.0.1:57415 127.0.0.1:57433 3331560096 26 16000000548f6340e25e31400100030000004b051f0000000000 ....T.c@.^1@......K....... +3476 8.792051792 127.0.0.1:57433 127.0.0.1:57415 375883900 12 ffffffff90bd0a0000000000 ............ +3478 8.792407990 127.0.0.1:57433 127.0.0.1:57415 375883912 12 16000000639c0a0000000000 ....c....... +3480 8.792606592 127.0.0.1:57433 127.0.0.1:57415 375883924 22 120000004b051f000000000001000300000000000000 ....K................. +3482 8.792983055 127.0.0.1:57415 127.0.0.1:57433 3331560122 12 ffffffff639c0a0000000000 ....c....... +3490 8.894236088 127.0.0.1:57415 127.0.0.1:57433 3331560134 12 1a00000091bd0a0000000000 ............ +3492 8.894476175 127.0.0.1:57415 127.0.0.1:57433 3331560146 26 16000000548f6340e25e31400100030000004d051f0000000000 ....T.c@.^1@......M....... +3494 8.894806385 127.0.0.1:57433 127.0.0.1:57415 375883946 12 ffffffff91bd0a0000000000 ............ +3496 8.895365238 127.0.0.1:57433 127.0.0.1:57415 375883958 12 16000000649c0a0000000000 ....d....... +3498 8.895576477 127.0.0.1:57433 127.0.0.1:57415 375883970 22 120000004d051f000000000001000300000000000000 ....M................. +3500 8.895836353 127.0.0.1:57415 127.0.0.1:57433 3331560172 12 ffffffff649c0a0000000000 ....d....... +3562 8.937276840 127.0.0.1:57415 127.0.0.1:57433 3331560184 12 2200000092bd0a0000000000 "........... +3564 8.937472820 127.0.0.1:57415 127.0.0.1:57433 3331560196 34 1e0000001c2118d0c46f33bb010003000000fdff010000000000a9a30ec39d01 .....!...o3....................... +3566 8.937563181 127.0.0.1:57415 127.0.0.1:57433 3331560230 12 4300000093bd0a0000000000 C........... +3568 8.937645912 127.0.0.1:57415 127.0.0.1:57433 3331560242 67 3f000000980433cb0cb47c380100030000000100000000fdff0100000000003d ?.....3...|8...................=B.....&......... +3570 8.937767744 127.0.0.1:57433 127.0.0.1:57415 375883992 12 ffffffff92bd0a0000000000 ............ +3572 8.937956572 127.0.0.1:57433 127.0.0.1:57415 375884004 12 ffffffff93bd0a0000000000 ............ +3574 8.938592196 127.0.0.1:57433 127.0.0.1:57415 375884016 12 34000000659c0a0000000000 4...e....... +3576 8.938793421 127.0.0.1:57433 127.0.0.1:57415 375884028 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................yl_ +3578 8.939074516 127.0.0.1:57415 127.0.0.1:57433 3331560309 12 ffffffff659c0a0000000000 ....e....... +3580 8.939821482 127.0.0.1:57415 127.0.0.1:57433 3331560321 12 1e00000094bd0a0000000000 ............ +3582 8.939976931 127.0.0.1:57415 127.0.0.1:57433 3331560333 30 1a00000055ceff62b21b3a500100030000004f051f000000000000000000 ....U..b..:P......O........... +3584 8.940284014 127.0.0.1:57433 127.0.0.1:57415 375884080 12 ffffffff94bd0a0000000000 ............ +3586 8.940686941 127.0.0.1:57433 127.0.0.1:57415 375884092 12 1a000000669c0a0000000000 ....f....... +3588 8.940850735 127.0.0.1:57433 127.0.0.1:57415 375884104 26 160000004f051f00000000000100030000000000000000000000 ....O..................... +3590 8.941110849 127.0.0.1:57415 127.0.0.1:57433 3331560363 12 ffffffff669c0a0000000000 ....f....... +3592 8.998162270 127.0.0.1:57415 127.0.0.1:57433 3331560375 12 1a00000095bd0a0000000000 ............ +3594 8.998373747 127.0.0.1:57415 127.0.0.1:57433 3331560387 26 16000000548f6340e25e314001000300000051051f0000000000 ....T.c@.^1@......Q....... +3596 8.998840094 127.0.0.1:57433 127.0.0.1:57415 375884130 12 ffffffff95bd0a0000000000 ............ +3598 8.999119043 127.0.0.1:57433 127.0.0.1:57415 375884142 12 16000000679c0a0000000000 ....g....... +3600 8.999283314 127.0.0.1:57433 127.0.0.1:57415 375884154 22 1200000051051f000000000001000300000000000000 ....Q................. +3602 8.999608755 127.0.0.1:57415 127.0.0.1:57433 3331560413 12 ffffffff679c0a0000000000 ....g....... +3618 9.101274967 127.0.0.1:57415 127.0.0.1:57433 3331560425 12 1a00000096bd0a0000000000 ............ +3620 9.101443768 127.0.0.1:57415 127.0.0.1:57433 3331560437 26 16000000548f6340e25e314001000300000053051f0000000000 ....T.c@.^1@......S....... +3622 9.101843119 127.0.0.1:57433 127.0.0.1:57415 375884176 12 ffffffff96bd0a0000000000 ............ +3624 9.102282047 127.0.0.1:57433 127.0.0.1:57415 375884188 12 16000000689c0a0000000000 ....h....... +3626 9.102443933 127.0.0.1:57433 127.0.0.1:57415 375884200 22 1200000053051f000000000001000300000000000000 ....S................. +3628 9.102755547 127.0.0.1:57415 127.0.0.1:57433 3331560463 12 ffffffff689c0a0000000000 ....h....... +3634 9.180724859 127.0.0.1:57433 127.0.0.1:57415 375884222 12 feffffff3f38010050380100 ....?8..P8.. +3638 9.204865932 127.0.0.1:57415 127.0.0.1:57433 3331560475 12 1a00000097bd0a0000000000 ............ +3640 9.205119371 127.0.0.1:57415 127.0.0.1:57433 3331560487 26 16000000548f6340e25e314001000300000055051f0000000000 ....T.c@.^1@......U....... +3642 9.205614805 127.0.0.1:57433 127.0.0.1:57415 375884234 12 ffffffff97bd0a0000000000 ............ +3644 9.206289530 127.0.0.1:57433 127.0.0.1:57415 375884246 12 16000000699c0a0000000000 ....i....... +3646 9.206500769 127.0.0.1:57433 127.0.0.1:57415 375884258 22 1200000055051f000000000001000300000000000000 ....U................. +3648 9.206790209 127.0.0.1:57415 127.0.0.1:57433 3331560513 12 ffffffff699c0a0000000000 ....i....... +3650 9.240731239 127.0.0.1:57415 127.0.0.1:57433 3331560525 12 2200000098bd0a0000000000 "........... +3652 9.240895510 127.0.0.1:57415 127.0.0.1:57433 3331560537 34 1e0000001c2118d0c46f33bb010003000000feff010000000000d8a40ec39d01 .....!...o3....................... +3654 9.241068363 127.0.0.1:57415 127.0.0.1:57433 3331560571 12 4300000099bd0a0000000000 C........... +3656 9.241156101 127.0.0.1:57415 127.0.0.1:57433 3331560583 67 3f000000980433cb0cb47c380100030000000100000000feff0100000000003d ?.....3...|8...................=B.....&......... +3658 9.241337776 127.0.0.1:57433 127.0.0.1:57415 375884280 12 ffffffff98bd0a0000000000 ............ +3660 9.241576433 127.0.0.1:57433 127.0.0.1:57415 375884292 12 ffffffff99bd0a0000000000 ............ +3662 9.242417812 127.0.0.1:57433 127.0.0.1:57415 375884304 12 340000006a9c0a0000000000 4...j....... +3664 9.242576838 127.0.0.1:57433 127.0.0.1:57415 375884316 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................._ +3666 9.242843628 127.0.0.1:57415 127.0.0.1:57433 3331560650 12 ffffffff6a9c0a0000000000 ....j....... +3668 9.243864059 127.0.0.1:57415 127.0.0.1:57433 3331560662 12 1e0000009abd0a0000000000 ............ +3670 9.244066238 127.0.0.1:57415 127.0.0.1:57433 3331560674 30 1a00000055ceff62b21b3a5001000300000057051f000000000000000000 ....U..b..:P......W........... +3672 9.244366646 127.0.0.1:57433 127.0.0.1:57415 375884368 12 ffffffff9abd0a0000000000 ............ +3674 9.244898796 127.0.0.1:57433 127.0.0.1:57415 375884380 12 1a0000006b9c0a0000000000 ....k....... +3676 9.245090008 127.0.0.1:57433 127.0.0.1:57415 375884392 26 1600000057051f00000000000100030000000000000000000000 ....W..................... +3678 9.245332241 127.0.0.1:57415 127.0.0.1:57433 3331560704 12 ffffffff6b9c0a0000000000 ....k....... +3685 9.261950016 127.0.0.1:57415 127.0.0.1:57433 3331560716 12 feffffff513801003f380100 ....Q8..?8.. +3690 9.308281183 127.0.0.1:57415 127.0.0.1:57433 3331560728 12 1a0000009bbd0a0000000000 ............ +3692 9.308482647 127.0.0.1:57415 127.0.0.1:57433 3331560740 26 16000000548f6340e25e314001000300000059051f0000000000 ....T.c@.^1@......Y....... +3694 9.308814764 127.0.0.1:57433 127.0.0.1:57415 375884418 12 ffffffff9bbd0a0000000000 ............ +3696 9.309302807 127.0.0.1:57433 127.0.0.1:57415 375884430 12 160000006c9c0a0000000000 ....l....... +3698 9.309458971 127.0.0.1:57433 127.0.0.1:57415 375884442 22 1200000059051f000000000001000300000000000000 ....Y................. +3700 9.309724092 127.0.0.1:57415 127.0.0.1:57433 3331560766 12 ffffffff6c9c0a0000000000 ....l....... +3706 9.411495686 127.0.0.1:57415 127.0.0.1:57433 3331560778 12 1a0000009cbd0a0000000000 ............ +3708 9.411687613 127.0.0.1:57415 127.0.0.1:57433 3331560790 26 16000000548f6340e25e31400100030000005b051f0000000000 ....T.c@.^1@......[....... +3710 9.412245512 127.0.0.1:57433 127.0.0.1:57415 375884464 12 ffffffff9cbd0a0000000000 ............ +3712 9.412739515 127.0.0.1:57433 127.0.0.1:57415 375884476 12 160000006d9c0a0000000000 ....m....... +3714 9.412908077 127.0.0.1:57433 127.0.0.1:57415 375884488 22 120000005b051f000000000001000300000000000000 ....[................. +3716 9.413121939 127.0.0.1:57415 127.0.0.1:57433 3331560816 12 ffffffff6d9c0a0000000000 ....m....... +3718 9.515045643 127.0.0.1:57415 127.0.0.1:57433 3331560828 12 1a0000009dbd0a0000000000 ............ +3720 9.515282154 127.0.0.1:57415 127.0.0.1:57433 3331560840 26 16000000548f6340e25e31400100030000005d051f0000000000 ....T.c@.^1@......]....... +3722 9.515674353 127.0.0.1:57433 127.0.0.1:57415 375884510 12 ffffffff9dbd0a0000000000 ............ +3724 9.516180754 127.0.0.1:57433 127.0.0.1:57415 375884522 12 160000006e9c0a0000000000 ....n....... +3726 9.516435385 127.0.0.1:57433 127.0.0.1:57415 375884534 22 120000005d051f000000000001000300000000000000 ....]................. +3728 9.516707897 127.0.0.1:57415 127.0.0.1:57433 3331560866 12 ffffffff6e9c0a0000000000 ....n....... +3730 9.545331001 127.0.0.1:57415 127.0.0.1:57433 3331560878 12 650000009ebd0a0000000000 e........... +3732 9.545480967 127.0.0.1:57415 127.0.0.1:57433 3331560890 101 1e0000001c2118d0c46f33bb010003000000ffff01000000000009a60ec39d01 .....!...o3.......................?.....3...|8.. +3734 9.545793533 127.0.0.1:57433 127.0.0.1:57415 375884556 12 ffffffff9ebd0a0000000000 ............ +3736 9.546973228 127.0.0.1:57433 127.0.0.1:57415 375884568 12 340000006f9c0a0000000000 4...o....... +3738 9.547162294 127.0.0.1:57433 127.0.0.1:57415 375884580 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................K._ +3740 9.547458410 127.0.0.1:57415 127.0.0.1:57433 3331560991 12 ffffffff6f9c0a0000000000 ....o....... +3742 9.548280001 127.0.0.1:57415 127.0.0.1:57433 3331561003 12 1e0000009fbd0a0000000000 ............ +3744 9.548429251 127.0.0.1:57415 127.0.0.1:57433 3331561015 30 1a00000055ceff62b21b3a500100030000005f051f000000000000000000 ....U..b..:P......_........... +3746 9.548790455 127.0.0.1:57433 127.0.0.1:57415 375884632 12 ffffffff9fbd0a0000000000 ............ +3748 9.549267530 127.0.0.1:57433 127.0.0.1:57415 375884644 12 1a000000709c0a0000000000 ....p....... +3750 9.549478769 127.0.0.1:57433 127.0.0.1:57415 375884656 26 160000005f051f00000000000100030000000000000000000000 ...._..................... +3752 9.549786329 127.0.0.1:57415 127.0.0.1:57433 3331561045 12 ffffffff709c0a0000000000 ....p....... +3758 9.617713928 127.0.0.1:57415 127.0.0.1:57433 3331561057 12 1a000000a0bd0a0000000000 ............ +3760 9.617899418 127.0.0.1:57415 127.0.0.1:57433 3331561069 26 16000000548f6340e25e314001000300000061051f0000000000 ....T.c@.^1@......a....... +3762 9.618253708 127.0.0.1:57433 127.0.0.1:57415 375884682 12 ffffffffa0bd0a0000000000 ............ +3764 9.619148731 127.0.0.1:57433 127.0.0.1:57415 375884694 12 16000000719c0a0000000000 ....q....... +3766 9.619441509 127.0.0.1:57433 127.0.0.1:57415 375884706 22 1200000061051f000000000001000300000000000000 ....a................. +3768 9.619795084 127.0.0.1:57415 127.0.0.1:57433 3331561095 12 ffffffff719c0a0000000000 ....q....... +3774 9.681757927 127.0.0.1:57433 127.0.0.1:57415 375884728 12 feffffff4038010051380100 ....@8..Q8.. +3778 9.720935345 127.0.0.1:57415 127.0.0.1:57433 3331561107 12 1a000000a1bd0a0000000000 ............ +3780 9.721148252 127.0.0.1:57415 127.0.0.1:57433 3331561119 26 16000000548f6340e25e314001000300000063051f0000000000 ....T.c@.^1@......c....... +3782 9.721462965 127.0.0.1:57433 127.0.0.1:57415 375884740 12 ffffffffa1bd0a0000000000 ............ +3784 9.722159863 127.0.0.1:57433 127.0.0.1:57415 375884752 12 16000000729c0a0000000000 ....r....... +3786 9.722386599 127.0.0.1:57433 127.0.0.1:57415 375884764 22 1200000063051f000000000001000300000000000000 ....c................. +3788 9.722648621 127.0.0.1:57415 127.0.0.1:57433 3331561145 12 ffffffff729c0a0000000000 ....r....... +3795 9.763580799 127.0.0.1:57415 127.0.0.1:57433 3331561157 12 feffffff5238010040380100 ....R8..@8.. +3801 9.823693037 127.0.0.1:57415 127.0.0.1:57433 3331561169 12 1a000000a2bd0a0000000000 ............ +3803 9.823870659 127.0.0.1:57415 127.0.0.1:57433 3331561181 26 16000000548f6340e25e314001000300000065051f0000000000 ....T.c@.^1@......e....... +3805 9.824244022 127.0.0.1:57433 127.0.0.1:57415 375884786 12 ffffffffa2bd0a0000000000 ............ +3807 9.824683428 127.0.0.1:57433 127.0.0.1:57415 375884798 12 16000000739c0a0000000000 ....s....... +3809 9.824844837 127.0.0.1:57433 127.0.0.1:57415 375884810 22 1200000065051f000000000001000300000000000000 ....e................. +3811 9.825090170 127.0.0.1:57415 127.0.0.1:57433 3331561207 12 ffffffff739c0a0000000000 ....s....... +3813 9.850546598 127.0.0.1:57415 127.0.0.1:57433 3331561219 12 22000000a3bd0a0000000000 "........... +3815 9.850749493 127.0.0.1:57415 127.0.0.1:57433 3331561231 34 1e0000001c2118d0c46f33bb01000300000000000200000000003ba70ec39d01 .....!...o3...............;....... +3817 9.850924015 127.0.0.1:57415 127.0.0.1:57433 3331561265 12 43000000a4bd0a0000000000 C........... +3819 9.851028442 127.0.0.1:57415 127.0.0.1:57433 3331561277 67 3f000000980433cb0cb47c38010003000000010000000000000200000000003d ?.....3...|8...................=B.....&......... +3821 9.851377726 127.0.0.1:57433 127.0.0.1:57415 375884832 12 ffffffffa3bd0a0000000000 ............ +3823 9.851583719 127.0.0.1:57433 127.0.0.1:57415 375884844 12 ffffffffa4bd0a0000000000 ............ +3825 9.852491140 127.0.0.1:57433 127.0.0.1:57415 375884856 12 34000000749c0a0000000000 4...t....... +3827 9.852727413 127.0.0.1:57433 127.0.0.1:57415 375884868 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............8.._ +3829 9.853037596 127.0.0.1:57415 127.0.0.1:57433 3331561344 12 ffffffff749c0a0000000000 ....t....... +3831 9.854174614 127.0.0.1:57415 127.0.0.1:57433 3331561356 12 1e000000a5bd0a0000000000 ............ +3833 9.854378223 127.0.0.1:57415 127.0.0.1:57433 3331561368 30 1a00000055ceff62b21b3a5001000300000067051f000000000000000000 ....U..b..:P......g........... +3835 9.854676008 127.0.0.1:57433 127.0.0.1:57415 375884920 12 ffffffffa5bd0a0000000000 ............ +3837 9.855097055 127.0.0.1:57433 127.0.0.1:57415 375884932 12 1a000000759c0a0000000000 ....u....... +3839 9.855273724 127.0.0.1:57433 127.0.0.1:57415 375884944 26 1600000067051f00000000000100030000000000000000000000 ....g..................... +3841 9.855456591 127.0.0.1:57415 127.0.0.1:57433 3331561398 12 ffffffff759c0a0000000000 ....u....... +3848 9.926991224 127.0.0.1:57415 127.0.0.1:57433 3331561410 12 1a000000a6bd0a0000000000 ............ +3850 9.927176476 127.0.0.1:57415 127.0.0.1:57433 3331561422 26 16000000548f6340e25e314001000300000069051f0000000000 ....T.c@.^1@......i....... +3852 9.927611589 127.0.0.1:57433 127.0.0.1:57415 375884970 12 ffffffffa6bd0a0000000000 ............ +3854 9.928202629 127.0.0.1:57433 127.0.0.1:57415 375884982 12 16000000769c0a0000000000 ....v....... +3856 9.928430319 127.0.0.1:57433 127.0.0.1:57415 375884994 22 1200000069051f000000000001000300000000000000 ....i................. +3858 9.928699017 127.0.0.1:57415 127.0.0.1:57433 3331561448 12 ffffffff769c0a0000000000 ....v....... +3861 10.031452179 127.0.0.1:57415 127.0.0.1:57433 3331561460 12 1a000000a7bd0a0000000000 ............ +3863 10.031641722 127.0.0.1:57415 127.0.0.1:57433 3331561472 26 16000000548f6340e25e31400100030000006b051f0000000000 ....T.c@.^1@......k....... +3865 10.032151699 127.0.0.1:57433 127.0.0.1:57415 375885016 12 ffffffffa7bd0a0000000000 ............ +3867 10.032653332 127.0.0.1:57433 127.0.0.1:57415 375885028 12 16000000779c0a0000000000 ....w....... +3869 10.032831192 127.0.0.1:57433 127.0.0.1:57415 375885040 22 120000006b051f000000000001000300000000000000 ....k................. +3871 10.033247948 127.0.0.1:57415 127.0.0.1:57433 3331561498 12 ffffffff779c0a0000000000 ....w....... +3876 10.135398388 127.0.0.1:57415 127.0.0.1:57433 3331561510 12 1a000000a8bd0a0000000000 ............ +3878 10.135584116 127.0.0.1:57415 127.0.0.1:57433 3331561522 26 16000000548f6340e25e31400100030000006d051f0000000000 ....T.c@.^1@......m....... +3880 10.135940552 127.0.0.1:57433 127.0.0.1:57415 375885062 12 ffffffffa8bd0a0000000000 ............ +3882 10.136374235 127.0.0.1:57433 127.0.0.1:57415 375885074 12 16000000789c0a0000000000 ....x....... +3884 10.136535645 127.0.0.1:57433 127.0.0.1:57415 375885086 22 120000006d051f000000000001000300000000000000 ....m................. +3886 10.136889219 127.0.0.1:57415 127.0.0.1:57433 3331561548 12 ffffffff789c0a0000000000 ....x....... +3888 10.155216217 127.0.0.1:57415 127.0.0.1:57433 3331561560 12 22000000a9bd0a0000000000 "........... +3890 10.155403614 127.0.0.1:57415 127.0.0.1:57433 3331561572 34 1e0000001c2118d0c46f33bb01000300000001000200000000006ba80ec39d01 .....!...o3...............k....... +3892 10.155547142 127.0.0.1:57415 127.0.0.1:57433 3331561606 12 43000000aabd0a0000000000 C........... +3894 10.155630350 127.0.0.1:57415 127.0.0.1:57433 3331561618 67 3f000000980433cb0cb47c38010003000000010000000001000200000000003d ?.....3...|8...................=B.....&......... +3896 10.155761719 127.0.0.1:57433 127.0.0.1:57415 375885108 12 ffffffffa9bd0a0000000000 ............ +3898 10.155952215 127.0.0.1:57433 127.0.0.1:57415 375885120 12 ffffffffaabd0a0000000000 ............ +3900 10.156673431 127.0.0.1:57433 127.0.0.1:57415 375885132 12 34000000799c0a0000000000 4...y....... +3902 10.156833410 127.0.0.1:57433 127.0.0.1:57415 375885144 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................V&` +3904 10.157081366 127.0.0.1:57415 127.0.0.1:57433 3331561685 12 ffffffff799c0a0000000000 ....y....... +3906 10.157841444 127.0.0.1:57415 127.0.0.1:57433 3331561697 12 1e000000abbd0a0000000000 ............ +3908 10.157979488 127.0.0.1:57415 127.0.0.1:57433 3331561709 30 1a00000055ceff62b21b3a500100030000006f051f000000000000000000 ....U..b..:P......o........... +3910 10.158380508 127.0.0.1:57433 127.0.0.1:57415 375885196 12 ffffffffabbd0a0000000000 ............ +3912 10.158865690 127.0.0.1:57433 127.0.0.1:57415 375885208 12 1a0000007a9c0a0000000000 ....z....... +3914 10.159005165 127.0.0.1:57433 127.0.0.1:57415 375885220 26 160000006f051f00000000000100030000000000000000000000 ....o..................... +3916 10.159269094 127.0.0.1:57415 127.0.0.1:57433 3331561739 12 ffffffff7a9c0a0000000000 ....z....... +3922 10.182133198 127.0.0.1:57433 127.0.0.1:57415 375885246 12 feffffff4138010052380100 ....A8..R8.. +3927 10.239060879 127.0.0.1:57415 127.0.0.1:57433 3331561751 12 1a000000acbd0a0000000000 ............ +3929 10.239227772 127.0.0.1:57415 127.0.0.1:57433 3331561763 26 16000000548f6340e25e314001000300000071051f0000000000 ....T.c@.^1@......q....... +3931 10.239820004 127.0.0.1:57433 127.0.0.1:57415 375885258 12 ffffffffacbd0a0000000000 ............ +3933 10.240305901 127.0.0.1:57433 127.0.0.1:57415 375885270 12 160000007b9c0a0000000000 ....{....... +3935 10.240513325 127.0.0.1:57433 127.0.0.1:57415 375885282 22 1200000071051f000000000001000300000000000000 ....q................. +3937 10.240752935 127.0.0.1:57415 127.0.0.1:57433 3331561789 12 ffffffff7b9c0a0000000000 ....{....... +3943 10.264687538 127.0.0.1:57415 127.0.0.1:57433 3331561801 12 feffffff5338010041380100 ....S8..A8.. +3950 10.341916323 127.0.0.1:57415 127.0.0.1:57433 3331561813 12 1a000000adbd0a0000000000 ............ +3952 10.342125654 127.0.0.1:57415 127.0.0.1:57433 3331561825 26 16000000548f6340e25e314001000300000073051f0000000000 ....T.c@.^1@......s....... +3954 10.342542171 127.0.0.1:57433 127.0.0.1:57415 375885304 12 ffffffffadbd0a0000000000 ............ +3956 10.343006134 127.0.0.1:57433 127.0.0.1:57415 375885316 12 160000007c9c0a0000000000 ....|....... +3958 10.343168974 127.0.0.1:57433 127.0.0.1:57415 375885328 22 1200000073051f000000000001000300000000000000 ....s................. +3960 10.343494177 127.0.0.1:57415 127.0.0.1:57433 3331561851 12 ffffffff7c9c0a0000000000 ....|....... +3967 10.445060015 127.0.0.1:57415 127.0.0.1:57433 3331561863 12 1a000000aebd0a0000000000 ............ +3969 10.445292711 127.0.0.1:57415 127.0.0.1:57433 3331561875 26 16000000548f6340e25e314001000300000075051f0000000000 ....T.c@.^1@......u....... +3971 10.445692062 127.0.0.1:57433 127.0.0.1:57415 375885350 12 ffffffffaebd0a0000000000 ............ +3973 10.446347952 127.0.0.1:57433 127.0.0.1:57415 375885362 12 160000007d9c0a0000000000 ....}....... +3975 10.446559429 127.0.0.1:57433 127.0.0.1:57415 375885374 22 1200000075051f000000000001000300000000000000 ....u................. +3977 10.446779490 127.0.0.1:57415 127.0.0.1:57433 3331561901 12 ffffffff7d9c0a0000000000 ....}....... +3979 10.459318638 127.0.0.1:57415 127.0.0.1:57433 3331561913 12 65000000afbd0a0000000000 e........... +3981 10.459530830 127.0.0.1:57415 127.0.0.1:57433 3331561925 101 1e0000001c2118d0c46f33bb01000300000002000200000000009ba90ec39d01 .....!...o3.......................?.....3...|8.. +3983 10.459805727 127.0.0.1:57433 127.0.0.1:57415 375885396 12 ffffffffafbd0a0000000000 ............ +3985 10.460786819 127.0.0.1:57433 127.0.0.1:57415 375885408 12 340000007e9c0a0000000000 4...~....... +3987 10.460938692 127.0.0.1:57433 127.0.0.1:57415 375885420 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............E.T` +3989 10.461193323 127.0.0.1:57415 127.0.0.1:57433 3331562026 12 ffffffff7e9c0a0000000000 ....~....... +3991 10.461948395 127.0.0.1:57415 127.0.0.1:57433 3331562038 12 1e000000b0bd0a0000000000 ............ +3993 10.462110043 127.0.0.1:57415 127.0.0.1:57433 3331562050 30 1a00000055ceff62b21b3a5001000300000077051f000000000000000000 ....U..b..:P......w........... +3995 10.462435007 127.0.0.1:57433 127.0.0.1:57415 375885472 12 ffffffffb0bd0a0000000000 ............ +3997 10.463047981 127.0.0.1:57433 127.0.0.1:57415 375885484 12 1a0000007f9c0a0000000000 ............ +3999 10.463207006 127.0.0.1:57433 127.0.0.1:57415 375885496 26 1600000077051f00000000000100030000000000000000000000 ....w..................... +4001 10.463478565 127.0.0.1:57415 127.0.0.1:57433 3331562080 12 ffffffff7f9c0a0000000000 ............ +4004 10.548120975 127.0.0.1:57415 127.0.0.1:57433 3331562092 12 1a000000b1bd0a0000000000 ............ +4006 10.548478127 127.0.0.1:57415 127.0.0.1:57433 3331562104 26 16000000548f6340e25e314001000300000079051f0000000000 ....T.c@.^1@......y....... +4008 10.548832178 127.0.0.1:57433 127.0.0.1:57415 375885522 12 ffffffffb1bd0a0000000000 ............ +4010 10.549535036 127.0.0.1:57433 127.0.0.1:57415 375885534 12 16000000809c0a0000000000 ............ +4012 10.549712420 127.0.0.1:57433 127.0.0.1:57415 375885546 22 1200000079051f000000000001000300000000000000 ....y................. +4014 10.549996853 127.0.0.1:57415 127.0.0.1:57433 3331562130 12 ffffffff809c0a0000000000 ............ +4048 10.650924444 127.0.0.1:57415 127.0.0.1:57433 3331562142 12 1a000000b2bd0a0000000000 ............ +4050 10.651134253 127.0.0.1:57415 127.0.0.1:57433 3331562154 26 16000000548f6340e25e31400100030000007b051f0000000000 ....T.c@.^1@......{....... +4052 10.651458979 127.0.0.1:57433 127.0.0.1:57415 375885568 12 ffffffffb2bd0a0000000000 ............ +4054 10.652238131 127.0.0.1:57433 127.0.0.1:57415 375885580 12 16000000819c0a0000000000 ............ +4056 10.652442455 127.0.0.1:57433 127.0.0.1:57415 375885592 22 120000007b051f000000000001000300000000000000 ....{................. +4058 10.652695656 127.0.0.1:57415 127.0.0.1:57433 3331562180 12 ffffffff819c0a0000000000 ............ +4065 10.682960749 127.0.0.1:57433 127.0.0.1:57415 375885614 12 feffffff4238010053380100 ....B8..S8.. +4069 10.753996611 127.0.0.1:57415 127.0.0.1:57433 3331562192 12 1a000000b3bd0a0000000000 ............ +4071 10.754175663 127.0.0.1:57415 127.0.0.1:57433 3331562204 26 16000000548f6340e25e31400100030000007d051f0000000000 ....T.c@.^1@......}....... +4073 10.754617453 127.0.0.1:57433 127.0.0.1:57415 375885626 12 ffffffffb3bd0a0000000000 ............ +4075 10.754989624 127.0.0.1:57433 127.0.0.1:57415 375885638 12 16000000829c0a0000000000 ............ +4077 10.755156040 127.0.0.1:57433 127.0.0.1:57415 375885650 22 120000007d051f000000000001000300000000000000 ....}................. +4079 10.755481720 127.0.0.1:57415 127.0.0.1:57433 3331562230 12 ffffffff829c0a0000000000 ............ +4085 10.763109446 127.0.0.1:57415 127.0.0.1:57433 3331562242 12 22000000b4bd0a0000000000 "........... +4087 10.763276339 127.0.0.1:57415 127.0.0.1:57433 3331562254 34 1e0000001c2118d0c46f33bb0100030000000300020000000000cbaa0ec39d01 .....!...o3....................... +4089 10.763458490 127.0.0.1:57415 127.0.0.1:57433 3331562288 12 43000000b5bd0a0000000000 C........... +4091 10.763547182 127.0.0.1:57415 127.0.0.1:57433 3331562300 67 3f000000980433cb0cb47c38010003000000010000000003000200000000003d ?.....3...|8...................=B.....&......... +4093 10.763674498 127.0.0.1:57433 127.0.0.1:57415 375885672 12 ffffffffb4bd0a0000000000 ............ +4095 10.763847113 127.0.0.1:57433 127.0.0.1:57415 375885684 12 ffffffffb5bd0a0000000000 ............ +4098 10.765068531 127.0.0.1:57433 127.0.0.1:57415 375885696 12 34000000839c0a0000000000 4........... +4100 10.765291929 127.0.0.1:57433 127.0.0.1:57415 375885708 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................+.` +4102 10.765639544 127.0.0.1:57415 127.0.0.1:57433 3331562367 12 feffffff5438010042380100 ....T8..B8.. +4106 10.765921593 127.0.0.1:57415 127.0.0.1:57433 3331562379 12 ffffffff839c0a0000000000 ............ +4108 10.766500473 127.0.0.1:57415 127.0.0.1:57433 3331562391 12 1e000000b6bd0a0000000000 ............ +4110 10.766648531 127.0.0.1:57415 127.0.0.1:57433 3331562403 30 1a00000055ceff62b21b3a500100030000007f051f000000000000000000 ....U..b..:P.................. +4112 10.766929150 127.0.0.1:57433 127.0.0.1:57415 375885760 12 ffffffffb6bd0a0000000000 ............ +4114 10.767474174 127.0.0.1:57433 127.0.0.1:57415 375885772 12 1a000000849c0a0000000000 ............ +4116 10.767800808 127.0.0.1:57433 127.0.0.1:57415 375885784 26 160000007f051f00000000000100030000000000000000000000 .......................... +4118 10.768113852 127.0.0.1:57415 127.0.0.1:57433 3331562433 12 ffffffff849c0a0000000000 ............ +4126 10.857388020 127.0.0.1:57415 127.0.0.1:57433 3331562445 12 1a000000b7bd0a0000000000 ............ +4128 10.857547045 127.0.0.1:57415 127.0.0.1:57433 3331562457 26 16000000548f6340e25e314001000300000081051f0000000000 ....T.c@.^1@.............. +4130 10.857958317 127.0.0.1:57433 127.0.0.1:57415 375885810 12 ffffffffb7bd0a0000000000 ............ +4132 10.858628511 127.0.0.1:57433 127.0.0.1:57415 375885822 12 16000000859c0a0000000000 ............ +4134 10.858876228 127.0.0.1:57433 127.0.0.1:57415 375885834 22 1200000081051f000000000001000300000000000000 ...................... +4136 10.859204531 127.0.0.1:57415 127.0.0.1:57433 3331562483 12 ffffffff859c0a0000000000 ............ +4213 10.961030245 127.0.0.1:57415 127.0.0.1:57433 3331562495 12 1a000000b8bd0a0000000000 ............ +4215 10.961211205 127.0.0.1:57415 127.0.0.1:57433 3331562507 26 16000000548f6340e25e314001000300000083051f0000000000 ....T.c@.^1@.............. +4217 10.961624622 127.0.0.1:57433 127.0.0.1:57415 375885856 12 ffffffffb8bd0a0000000000 ............ +4219 10.962081194 127.0.0.1:57433 127.0.0.1:57415 375885868 12 16000000869c0a0000000000 ............ +4221 10.962276459 127.0.0.1:57433 127.0.0.1:57415 375885880 22 1200000083051f000000000001000300000000000000 ...................... +4223 10.962615967 127.0.0.1:57415 127.0.0.1:57433 3331562533 12 ffffffff869c0a0000000000 ............ +4226 11.063773632 127.0.0.1:57415 127.0.0.1:57433 3331562545 12 1a000000b9bd0a0000000000 ............ +4228 11.063944817 127.0.0.1:57415 127.0.0.1:57433 3331562557 26 16000000548f6340e25e314001000300000085051f0000000000 ....T.c@.^1@.............. +4230 11.064422607 127.0.0.1:57433 127.0.0.1:57415 375885902 12 ffffffffb9bd0a0000000000 ............ +4232 11.065087795 127.0.0.1:57433 127.0.0.1:57415 375885914 12 16000000879c0a0000000000 ............ +4234 11.065248251 127.0.0.1:57433 127.0.0.1:57415 375885926 22 1200000085051f000000000001000300000000000000 ...................... +4236 11.065505743 127.0.0.1:57415 127.0.0.1:57433 3331562583 12 ffffffff879c0a0000000000 ............ +4238 11.067980051 127.0.0.1:57415 127.0.0.1:57433 3331562595 12 65000000babd0a0000000000 e........... +4240 11.068186522 127.0.0.1:57415 127.0.0.1:57433 3331562607 101 1e0000001c2118d0c46f33bb0100030000000400020000000000fbab0ec39d01 .....!...o3.......................?.....3...|8.. +4242 11.068506241 127.0.0.1:57433 127.0.0.1:57415 375885948 12 ffffffffbabd0a0000000000 ............ +4245 11.069241047 127.0.0.1:57433 127.0.0.1:57415 375885960 12 34000000889c0a0000000000 4........... +4249 11.069390297 127.0.0.1:57433 127.0.0.1:57415 375885972 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................` +4251 11.069660664 127.0.0.1:57415 127.0.0.1:57433 3331562708 12 ffffffff889c0a0000000000 ............ +4255 11.070397615 127.0.0.1:57415 127.0.0.1:57433 3331562720 12 1e000000bbbd0a0000000000 ............ +4257 11.070550919 127.0.0.1:57415 127.0.0.1:57433 3331562732 30 1a00000055ceff62b21b3a5001000300000087051f000000000000000000 ....U..b..:P.................. +4259 11.070780993 127.0.0.1:57433 127.0.0.1:57415 375886024 12 ffffffffbbbd0a0000000000 ............ +4261 11.071261883 127.0.0.1:57433 127.0.0.1:57415 375886036 12 1a000000899c0a0000000000 ............ +4263 11.071417332 127.0.0.1:57433 127.0.0.1:57415 375886048 26 1600000087051f00000000000100030000000000000000000000 .......................... +4265 11.071743965 127.0.0.1:57415 127.0.0.1:57433 3331562762 12 ffffffff899c0a0000000000 ............ +4294 11.167757988 127.0.0.1:57415 127.0.0.1:57433 3331562774 12 1a000000bcbd0a0000000000 ............ +4296 11.167935610 127.0.0.1:57415 127.0.0.1:57433 3331562786 26 16000000548f6340e25e314001000300000089051f0000000000 ....T.c@.^1@.............. +4298 11.168277025 127.0.0.1:57433 127.0.0.1:57415 375886074 12 ffffffffbcbd0a0000000000 ............ +4300 11.168751955 127.0.0.1:57433 127.0.0.1:57415 375886086 12 160000008a9c0a0000000000 ............ +4302 11.168908834 127.0.0.1:57433 127.0.0.1:57415 375886098 22 1200000089051f000000000001000300000000000000 ...................... +4304 11.169224739 127.0.0.1:57415 127.0.0.1:57433 3331562812 12 ffffffff8a9c0a0000000000 ............ +4310 11.182170868 127.0.0.1:57433 127.0.0.1:57415 375886120 12 feffffff4338010054380100 ....C8..T8.. +4349 11.267761469 127.0.0.1:57415 127.0.0.1:57433 3331562824 12 feffffff5538010043380100 ....U8..C8.. +4357 11.270994186 127.0.0.1:57415 127.0.0.1:57433 3331562836 12 1a000000bdbd0a0000000000 ............ +4359 11.271160126 127.0.0.1:57415 127.0.0.1:57433 3331562848 26 16000000548f6340e25e31400100030000008b051f0000000000 ....T.c@.^1@.............. +4362 11.271693230 127.0.0.1:57433 127.0.0.1:57415 375886132 12 ffffffffbdbd0a0000000000 ............ +4364 11.272042036 127.0.0.1:57433 127.0.0.1:57415 375886144 12 160000008b9c0a0000000000 ............ +4366 11.272243023 127.0.0.1:57433 127.0.0.1:57415 375886156 22 120000008b051f000000000001000300000000000000 ...................... +4368 11.272598982 127.0.0.1:57415 127.0.0.1:57433 3331562874 12 ffffffff8b9c0a0000000000 ............ +4372 11.371072531 127.0.0.1:57415 127.0.0.1:57433 3331562886 12 22000000bebd0a0000000000 "........... +4374 11.371228218 127.0.0.1:57415 127.0.0.1:57433 3331562898 34 1e0000001c2118d0c46f33bb01000300000005000200000000002bad0ec39d01 .....!...o3...............+....... +4376 11.371356964 127.0.0.1:57415 127.0.0.1:57433 3331562932 12 43000000bfbd0a0000000000 C........... +4378 11.371444464 127.0.0.1:57415 127.0.0.1:57433 3331562944 67 3f000000980433cb0cb47c38010003000000010000000005000200000000003d ?.....3...|8...................=B.....&......... +4380 11.371724129 127.0.0.1:57433 127.0.0.1:57415 375886178 12 ffffffffbebd0a0000000000 ............ +4384 11.371924877 127.0.0.1:57433 127.0.0.1:57415 375886190 12 ffffffffbfbd0a0000000000 ............ +4386 11.373469830 127.0.0.1:57433 127.0.0.1:57415 375886202 12 340000008c9c0a0000000000 4........... +4388 11.373635292 127.0.0.1:57433 127.0.0.1:57415 375886214 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............#..` +4390 11.373904228 127.0.0.1:57415 127.0.0.1:57433 3331563011 12 ffffffff8c9c0a0000000000 ............ +4392 11.374212027 127.0.0.1:57415 127.0.0.1:57433 3331563023 12 1a000000c0bd0a0000000000 ............ +4394 11.374418497 127.0.0.1:57415 127.0.0.1:57433 3331563035 26 16000000548f6340e25e31400100030000008d051f0000000000 ....T.c@.^1@.............. +4396 11.374573469 127.0.0.1:57415 127.0.0.1:57433 3331563061 12 1e000000c1bd0a0000000000 ............ +4398 11.374659538 127.0.0.1:57415 127.0.0.1:57433 3331563073 30 1a00000055ceff62b21b3a500100030000008f051f000000000000000000 ....U..b..:P.................. +4400 11.374719381 127.0.0.1:57433 127.0.0.1:57415 375886266 12 ffffffffc0bd0a0000000000 ............ +4402 11.375052929 127.0.0.1:57433 127.0.0.1:57415 375886278 12 ffffffffc1bd0a0000000000 ............ +4404 11.375216484 127.0.0.1:57433 127.0.0.1:57415 375886290 12 160000008d9c0a0000000000 ............ +4406 11.375411510 127.0.0.1:57433 127.0.0.1:57415 375886302 22 120000008d051f000000000001000300000000000000 ...................... +4408 11.375580311 127.0.0.1:57433 127.0.0.1:57415 375886324 12 1a0000008e9c0a0000000000 ............ +4410 11.375654697 127.0.0.1:57415 127.0.0.1:57433 3331563103 12 ffffffff8d9c0a0000000000 ............ +4411 11.375664711 127.0.0.1:57433 127.0.0.1:57415 375886336 26 160000008f051f00000000000100030000000000000000000000 .......................... +4414 11.375834942 127.0.0.1:57415 127.0.0.1:57433 3331563115 12 ffffffff8e9c0a0000000000 ............ +4418 11.477387428 127.0.0.1:57415 127.0.0.1:57433 3331563127 12 1a000000c2bd0a0000000000 ............ +4420 11.477599859 127.0.0.1:57415 127.0.0.1:57433 3331563139 26 16000000548f6340e25e314001000300000091051f0000000000 ....T.c@.^1@.............. +4422 11.477898598 127.0.0.1:57433 127.0.0.1:57415 375886362 12 ffffffffc2bd0a0000000000 ............ +4424 11.478531599 127.0.0.1:57433 127.0.0.1:57415 375886374 12 160000008f9c0a0000000000 ............ +4426 11.478763580 127.0.0.1:57433 127.0.0.1:57415 375886386 22 1200000091051f000000000001000300000000000000 ...................... +4428 11.479033470 127.0.0.1:57415 127.0.0.1:57433 3331563165 12 ffffffff8f9c0a0000000000 ............ +4432 11.581063509 127.0.0.1:57415 127.0.0.1:57433 3331563177 12 1a000000c3bd0a0000000000 ............ +4434 11.581241608 127.0.0.1:57415 127.0.0.1:57433 3331563189 26 16000000548f6340e25e314001000300000093051f0000000000 ....T.c@.^1@.............. +4436 11.581668139 127.0.0.1:57433 127.0.0.1:57415 375886408 12 ffffffffc3bd0a0000000000 ............ +4438 11.582221985 127.0.0.1:57433 127.0.0.1:57415 375886420 12 16000000909c0a0000000000 ............ +4440 11.582383394 127.0.0.1:57433 127.0.0.1:57415 375886432 22 1200000093051f000000000001000300000000000000 ...................... +4442 11.582842112 127.0.0.1:57415 127.0.0.1:57433 3331563215 12 ffffffff909c0a0000000000 ............ +4444 11.675573111 127.0.0.1:57415 127.0.0.1:57433 3331563227 12 65000000c4bd0a0000000000 e........... +4446 11.675763130 127.0.0.1:57415 127.0.0.1:57433 3331563239 101 1e0000001c2118d0c46f33bb01000300000006000200000000005bae0ec39d01 .....!...o3...............[.......?.....3...|8.. +4448 11.676125050 127.0.0.1:57433 127.0.0.1:57415 375886454 12 ffffffffc4bd0a0000000000 ............ +4450 11.677046061 127.0.0.1:57433 127.0.0.1:57415 375886466 12 34000000919c0a0000000000 4........... +4452 11.677210093 127.0.0.1:57433 127.0.0.1:57415 375886478 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................T.a +4454 11.677561045 127.0.0.1:57415 127.0.0.1:57433 3331563340 12 ffffffff919c0a0000000000 ............ +4456 11.678438187 127.0.0.1:57415 127.0.0.1:57433 3331563352 12 1e000000c5bd0a0000000000 ............ +4458 11.678582430 127.0.0.1:57415 127.0.0.1:57433 3331563364 30 1a00000055ceff62b21b3a5001000300000095051f000000000000000000 ....U..b..:P.................. +4460 11.678945303 127.0.0.1:57433 127.0.0.1:57415 375886530 12 ffffffffc5bd0a0000000000 ............ +4462 11.679283619 127.0.0.1:57433 127.0.0.1:57415 375886542 12 1a000000929c0a0000000000 ............ +4464 11.679455757 127.0.0.1:57433 127.0.0.1:57415 375886554 26 1600000095051f00000000000100030000000000000000000000 .......................... +4470 11.679743052 127.0.0.1:57415 127.0.0.1:57433 3331563394 12 ffffffff929c0a0000000000 ............ +4472 11.683120012 127.0.0.1:57433 127.0.0.1:57415 375886580 12 feffffff4438010055380100 ....D8..U8.. +4476 11.684922934 127.0.0.1:57415 127.0.0.1:57433 3331563406 12 1a000000c6bd0a0000000000 ............ +4478 11.685085773 127.0.0.1:57415 127.0.0.1:57433 3331563418 26 16000000548f6340e25e314001000300000097051f0000000000 ....T.c@.^1@.............. +4480 11.685390711 127.0.0.1:57433 127.0.0.1:57415 375886592 12 ffffffffc6bd0a0000000000 ............ +4482 11.685985327 127.0.0.1:57433 127.0.0.1:57415 375886604 12 16000000939c0a0000000000 ............ +4484 11.686147451 127.0.0.1:57433 127.0.0.1:57415 375886616 22 1200000097051f000000000001000300000000000000 ...................... +4486 11.686342239 127.0.0.1:57415 127.0.0.1:57433 3331563444 12 ffffffff939c0a0000000000 ............ +4493 11.768877506 127.0.0.1:57415 127.0.0.1:57433 3331563456 12 feffffff5638010044380100 ....V8..D8.. +4496 11.787372351 127.0.0.1:57415 127.0.0.1:57433 3331563468 12 1a000000c7bd0a0000000000 ............ +4498 11.787555218 127.0.0.1:57415 127.0.0.1:57433 3331563480 26 16000000548f6340e25e314001000300000099051f0000000000 ....T.c@.^1@.............. +4500 11.787950754 127.0.0.1:57433 127.0.0.1:57415 375886638 12 ffffffffc7bd0a0000000000 ............ +4502 11.788442135 127.0.0.1:57433 127.0.0.1:57415 375886650 12 16000000949c0a0000000000 ............ +4504 11.788647413 127.0.0.1:57433 127.0.0.1:57415 375886662 22 1200000099051f000000000001000300000000000000 ...................... +4506 11.788865805 127.0.0.1:57415 127.0.0.1:57433 3331563506 12 ffffffff949c0a0000000000 ............ +4514 11.891579390 127.0.0.1:57415 127.0.0.1:57433 3331563518 12 1a000000c8bd0a0000000000 ............ +4516 11.891770601 127.0.0.1:57415 127.0.0.1:57433 3331563530 26 16000000548f6340e25e31400100030000009b051f0000000000 ....T.c@.^1@.............. +4518 11.892200708 127.0.0.1:57433 127.0.0.1:57415 375886684 12 ffffffffc8bd0a0000000000 ............ +4520 11.892772198 127.0.0.1:57433 127.0.0.1:57415 375886696 12 16000000959c0a0000000000 ............ +4522 11.892934084 127.0.0.1:57433 127.0.0.1:57415 375886708 22 120000009b051f000000000001000300000000000000 ...................... +4524 11.893256426 127.0.0.1:57415 127.0.0.1:57433 3331563556 12 ffffffff959c0a0000000000 ............ +4526 11.979299307 127.0.0.1:57415 127.0.0.1:57433 3331563568 12 65000000c9bd0a0000000000 e........... +4528 11.979513645 127.0.0.1:57415 127.0.0.1:57433 3331563580 101 1e0000001c2118d0c46f33bb01000300000007000200000000008baf0ec39d01 .....!...o3.......................?.....3...|8.. +4530 11.979937315 127.0.0.1:57433 127.0.0.1:57415 375886730 12 ffffffffc9bd0a0000000000 ............ +4532 11.981135607 127.0.0.1:57433 127.0.0.1:57415 375886742 12 34000000969c0a0000000000 4........... +4534 11.981379271 127.0.0.1:57433 127.0.0.1:57415 375886754 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([........................ +6334 18.404987574 127.0.0.1:57415 127.0.0.1:57433 3331570906 26 16000000548f6340e25e314001000300000045061f0000000000 ....T.c@.^1@......E....... +6336 18.405395508 127.0.0.1:57433 127.0.0.1:57415 375892642 12 ffffffff3ebe0a0000000000 ....>....... +6338 18.405947924 127.0.0.1:57433 127.0.0.1:57415 375892654 12 16000000009d0a0000000000 ............ +6340 18.406113625 127.0.0.1:57433 127.0.0.1:57415 375892666 22 1200000045061f000000000001000300000000000000 ....E................. +6342 18.406409264 127.0.0.1:57415 127.0.0.1:57433 3331570932 12 ffffffff009d0a0000000000 ............ +6344 18.508841515 127.0.0.1:57415 127.0.0.1:57433 3331570944 12 1a0000003fbe0a0000000000 ....?....... +6346 18.509015322 127.0.0.1:57415 127.0.0.1:57433 3331570956 26 16000000548f6340e25e314001000300000047061f0000000000 ....T.c@.^1@......G....... +6348 18.509327412 127.0.0.1:57433 127.0.0.1:57415 375892688 12 ffffffff3fbe0a0000000000 ....?....... +6350 18.511336803 127.0.0.1:57433 127.0.0.1:57415 375892700 12 16000000019d0a0000000000 ............ +6352 18.511499643 127.0.0.1:57433 127.0.0.1:57415 375892712 22 1200000047061f000000000001000300000000000000 ....G................. +6354 18.511769056 127.0.0.1:57415 127.0.0.1:57433 3331570982 12 ffffffff019d0a0000000000 ............ +6358 18.612853527 127.0.0.1:57415 127.0.0.1:57433 3331570994 12 1a00000040be0a0000000000 ....@....... +6360 18.613048553 127.0.0.1:57415 127.0.0.1:57433 3331571006 26 16000000548f6340e25e314001000300000049061f0000000000 ....T.c@.^1@......I....... +6362 18.613476038 127.0.0.1:57433 127.0.0.1:57415 375892734 12 ffffffff40be0a0000000000 ....@....... +6364 18.613969326 127.0.0.1:57433 127.0.0.1:57415 375892746 12 16000000029d0a0000000000 ............ +6366 18.614126444 127.0.0.1:57433 127.0.0.1:57415 375892758 22 1200000049061f000000000001000300000000000000 ....I................. +6368 18.614464045 127.0.0.1:57415 127.0.0.1:57433 3331571032 12 ffffffff029d0a0000000000 ............ +6376 18.676290035 127.0.0.1:57415 127.0.0.1:57433 3331571044 12 6500000041be0a0000000000 e...A....... +6378 18.676454067 127.0.0.1:57415 127.0.0.1:57433 3331571056 101 1e0000001c2118d0c46f33bb0100030000001d00020000000000b4c90ec39d01 .....!...o3.......................?.....3...|8.. +6380 18.676937819 127.0.0.1:57433 127.0.0.1:57415 375892780 12 ffffffff41be0a0000000000 ....A....... +6382 18.678314924 127.0.0.1:57433 127.0.0.1:57415 375892792 12 34000000039d0a0000000000 4........... +6384 18.678487539 127.0.0.1:57433 127.0.0.1:57415 375892804 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................:e +6386 18.678749323 127.0.0.1:57415 127.0.0.1:57433 3331571157 12 ffffffff039d0a0000000000 ............ +6388 18.679492712 127.0.0.1:57415 127.0.0.1:57433 3331571169 12 1e00000042be0a0000000000 ....B....... +6390 18.679635763 127.0.0.1:57415 127.0.0.1:57433 3331571181 30 1a00000055ceff62b21b3a500100030000004b061f000000000000000000 ....U..b..:P......K........... +6392 18.679954529 127.0.0.1:57433 127.0.0.1:57415 375892856 12 ffffffff42be0a0000000000 ....B....... +6394 18.680337906 127.0.0.1:57433 127.0.0.1:57415 375892868 12 1a000000049d0a0000000000 ............ +6396 18.680526257 127.0.0.1:57433 127.0.0.1:57415 375892880 26 160000004b061f00000000000100030000000000000000000000 ....K..................... +6398 18.680765152 127.0.0.1:57415 127.0.0.1:57433 3331571211 12 ffffffff049d0a0000000000 ............ +6404 18.692692995 127.0.0.1:57433 127.0.0.1:57415 375892906 12 feffffff5238010063380100 ....R8..c8.. +628 0.000000000 ::1:55802 ::1:49704 2827700310 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +630 0.000439405 ::1:49704 ::1:55802 362118423 84 05000c03100000005400000002000000d016d016b5b900000600343937303400 ........T.................49704..........]...... +632 0.000605345 ::1:55802 ::1:49704 2827700426 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +634 0.000776291 ::1:49704 ::1:55802 362118507 44 05000203100000002c000000020000001400000000000000000000008dba9804 ........,.......................i6.J.O.q_..y +636 0.000959873 ::1:55802 ::1:49704 2827700466 72 05000e03100000004800000003000000d016d016b5b900000100000001000100 ........H.......................K....k.F.@.`..Q. +638 0.001090288 ::1:49704 ::1:55802 362118551 56 05000f03100000003800000003000000d016d016b5b900000000000001000000 ........8............................].......... +640 0.001212358 ::1:55802 ::1:49704 2827700538 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +642 0.002667427 ::1:49704 ::1:55802 362118607 28 05000203100000001c00000003000000040000000100000001000000 ............................ +644 0.002800465 ::1:55802 ::1:49704 2827700634 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +646 0.002964258 ::1:49704 ::1:55802 362118635 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +648 0.003186703 ::1:55802 ::1:49704 2827700694 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +650 0.003376484 ::1:49704 ::1:55802 362118727 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +652 0.003515482 ::1:55802 ::1:49704 2827700814 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +654 0.003719568 ::1:49704 ::1:55802 362118759 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +656 0.003853083 ::1:55802 ::1:49704 2827700938 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +658 0.004002810 ::1:49704 ::1:55802 362118791 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +660 0.004135609 ::1:55802 ::1:49704 2827701056 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +662 0.004304886 ::1:49704 ::1:55802 362118823 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +664 0.004479885 ::1:55802 ::1:49704 2827701176 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +666 0.004693270 ::1:49704 ::1:55802 362118855 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +668 0.004828215 ::1:55802 ::1:49704 2827701306 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +670 0.004979134 ::1:49704 ::1:55802 362118887 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +672 0.005111456 ::1:55802 ::1:49704 2827701436 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +674 0.005263329 ::1:49704 ::1:55802 362118919 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +676 0.005396366 ::1:55802 ::1:49704 2827701578 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +678 0.005546331 ::1:49704 ::1:55802 362118951 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +680 0.005703211 ::1:55802 ::1:49704 2827701694 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +682 0.005855083 ::1:49704 ::1:55802 362118983 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +684 0.005988598 ::1:55802 ::1:49704 2827701824 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +686 0.006139755 ::1:49704 ::1:55802 362119015 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +688 0.006272793 ::1:55802 ::1:49704 2827701952 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +690 0.006420374 ::1:49704 ::1:55802 362119047 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +692 0.006955862 ::1:55802 ::1:49704 2827702078 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +694 0.007102251 ::1:49704 ::1:55802 362119079 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +696 0.007282495 ::1:55802 ::1:49704 2827702210 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +698 0.007432699 ::1:49704 ::1:55802 362119111 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +720 0.111506224 ::1:55802 ::1:49704 2827702362 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +722 0.111762285 ::1:49704 ::1:55802 362119143 44 05000203100000002c00000012000000140000000000000000000000563dab34 ........,...................V=.44.sB......9w +724 0.112239599 ::1:55802 ::1:49704 2827702402 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........V=.4 +726 0.114049196 ::1:49704 ::1:55802 362119187 28 05000203100000001c00000013000000040000000100000001000000 ............................ +728 0.114199877 ::1:55802 ::1:49704 2827702510 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........V=.4 +730 0.114416599 ::1:49704 ::1:55802 362119215 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +732 0.114639282 ::1:55802 ::1:49704 2827702570 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........V=.4 +734 0.114861727 ::1:49704 ::1:55802 362119307 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +736 0.115033150 ::1:55802 ::1:49704 2827702702 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........V=.4 +738 0.115220547 ::1:49704 ::1:55802 362119339 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +740 0.115357876 ::1:55802 ::1:49704 2827702838 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........V=.4 +742 0.115509510 ::1:49704 ::1:55802 362119371 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +744 0.115643263 ::1:55802 ::1:49704 2827702968 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........V=.4 +746 0.115792751 ::1:49704 ::1:55802 362119403 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +748 0.115931273 ::1:55802 ::1:49704 2827703100 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........V=.4 +750 0.116135597 ::1:49704 ::1:55802 362119435 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +752 0.116283655 ::1:55802 ::1:49704 2827703242 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........V=.4 +754 0.116432905 ::1:49704 ::1:55802 362119467 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +756 0.116568327 ::1:55802 ::1:49704 2827703384 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........V=.4 +758 0.116715431 ::1:49704 ::1:55802 362119499 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +760 0.116914988 ::1:55802 ::1:49704 2827703538 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........V=.4 +762 0.117061377 ::1:49704 ::1:55802 362119531 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +764 0.117197037 ::1:55802 ::1:49704 2827703666 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........V=.4 +766 0.117342949 ::1:49704 ::1:55802 362119563 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +768 0.117478609 ::1:55802 ::1:49704 2827703808 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........V=.4 +770 0.117623806 ::1:49704 ::1:55802 362119595 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +772 0.117758989 ::1:55802 ::1:49704 2827703948 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........V=.4 +774 0.117903471 ::1:49704 ::1:55802 362119627 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +804 0.134108305 ::1:55802 ::1:49704 2827704086 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +806 0.134244680 ::1:49704 ::1:55802 362119659 44 05000203100000002c00000020000000140000000000000000000000aa373120 ........,... ................71 .*jF.....rC. +808 0.134436369 ::1:55802 ::1:49704 2827704126 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K.........71 +810 0.136105537 ::1:49704 ::1:55802 362119703 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +812 0.136260986 ::1:55802 ::1:49704 2827704230 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K.........71 +814 0.136428118 ::1:49704 ::1:55802 362119731 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +816 0.136634827 ::1:55802 ::1:49704 2827704290 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K.........71 +818 0.137009621 ::1:49704 ::1:55802 362119823 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +820 0.137173891 ::1:55802 ::1:49704 2827704418 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K.........71 +822 0.137346745 ::1:49704 ::1:55802 362119855 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +824 0.137473106 ::1:55802 ::1:49704 2827704550 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K.........71 +826 0.137684584 ::1:49704 ::1:55802 362119887 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +828 0.137841702 ::1:55802 ::1:49704 2827704676 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K.........71 +830 0.138135195 ::1:49704 ::1:55802 362119919 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +832 0.138269663 ::1:55802 ::1:49704 2827704804 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K.........71 +834 0.138484955 ::1:49704 ::1:55802 362119951 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +836 0.138630390 ::1:55802 ::1:49704 2827704942 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K.........71 +838 0.138834953 ::1:49704 ::1:55802 362119983 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +840 0.138975859 ::1:55802 ::1:49704 2827705080 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K.........71 +842 0.139235497 ::1:49704 ::1:55802 362120015 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +844 0.139506102 ::1:55802 ::1:49704 2827705230 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K.........71 +846 0.139690638 ::1:49704 ::1:55802 362120047 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +848 0.139833689 ::1:55802 ::1:49704 2827705354 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K.........71 +850 0.140050411 ::1:49704 ::1:55802 362120079 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +852 0.140216589 ::1:55802 ::1:49704 2827705492 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K.........71 +854 0.140418768 ::1:49704 ::1:55802 362120111 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +856 0.140561581 ::1:55802 ::1:49704 2827705628 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K.........71 +858 0.140794992 ::1:49704 ::1:55802 362120143 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +860 0.140980959 ::1:55802 ::1:49704 2827705762 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........71 +862 0.141268253 ::1:49704 ::1:55802 362120175 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +864 0.141407490 ::1:55802 ::1:49704 2827705902 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K.........71 +866 0.141570091 ::1:49704 ::1:55802 362120207 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +885 0.241531849 ::1:55802 ::1:49704 2827706048 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +887 0.241760731 ::1:49704 ::1:55802 362120239 44 05000203100000002c00000030000000140000000000000000000000d591dfae ........,...0...................0..I..x.N1.. +889 0.241932392 ::1:55802 ::1:49704 2827706088 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K............ +891 0.243767262 ::1:49704 ::1:55802 362120283 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +893 0.243906021 ::1:55802 ::1:49704 2827706200 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K............ +895 0.244075060 ::1:49704 ::1:55802 362120311 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +897 0.244297504 ::1:55802 ::1:49704 2827706260 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K............ +899 0.244545460 ::1:49704 ::1:55802 362120403 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +901 0.244683504 ::1:55802 ::1:49704 2827706396 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K............ +903 0.244851112 ::1:49704 ::1:55802 362120435 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +905 0.244985104 ::1:55802 ::1:49704 2827706536 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K............ +907 0.245149851 ::1:49704 ::1:55802 362120467 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +909 0.245281935 ::1:55802 ::1:49704 2827706670 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K............ +911 0.245473623 ::1:49704 ::1:55802 362120499 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +913 0.245598793 ::1:55802 ::1:49704 2827706806 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K............ +915 0.245763540 ::1:49704 ::1:55802 362120531 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +917 0.245896816 ::1:55802 ::1:49704 2827706952 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K............ +919 0.246062040 ::1:49704 ::1:55802 362120563 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +921 0.246196270 ::1:55802 ::1:49704 2827707098 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K............ +923 0.246387005 ::1:49704 ::1:55802 362120595 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +925 0.246510744 ::1:55802 ::1:49704 2827707256 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K............ +927 0.246672869 ::1:49704 ::1:55802 362120627 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +929 0.246806145 ::1:55802 ::1:49704 2827707388 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K............ +931 0.246968746 ::1:49704 ::1:55802 362120659 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +933 0.247101307 ::1:55802 ::1:49704 2827707534 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K............ +935 0.247263432 ::1:49704 ::1:55802 362120691 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +937 0.247420073 ::1:55802 ::1:49704 2827707678 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K............ +939 0.247581005 ::1:49704 ::1:55802 362120723 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +941 0.247762680 ::1:55802 ::1:49704 2827707820 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K............ +943 0.247925758 ::1:49704 ::1:55802 362120755 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +945 0.248067617 ::1:55802 ::1:49704 2827707968 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K............ +947 0.248230696 ::1:49704 ::1:55802 362120787 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +988 0.365618944 ::1:55802 ::1:49704 2827708122 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +990 0.365890265 ::1:49704 ::1:55802 362120819 44 05000203100000002c00000040000000140000000000000000000000314c826a ........,...@...............1L.j;%[L..{.0^.q +992 0.366058350 ::1:55802 ::1:49704 2827708162 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........1L.j +994 0.367786407 ::1:49704 ::1:55802 362120863 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +996 0.367933273 ::1:55802 ::1:49704 2827708254 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........1L.j +998 0.368104935 ::1:49704 ::1:55802 362120891 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1000 0.368313551 ::1:55802 ::1:49704 2827708314 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........1L.j +1002 0.368552208 ::1:49704 ::1:55802 362120983 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1004 0.368686199 ::1:55802 ::1:49704 2827708430 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........1L.j +1006 0.368852854 ::1:49704 ::1:55802 362121015 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1008 0.368983507 ::1:55802 ::1:49704 2827708550 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........1L.j +1010 0.369148970 ::1:49704 ::1:55802 362121047 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1012 0.369276047 ::1:55802 ::1:49704 2827708664 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........1L.j +1014 0.369437695 ::1:49704 ::1:55802 362121079 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1016 0.369596720 ::1:55802 ::1:49704 2827708780 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........1L.j +1018 0.369752884 ::1:49704 ::1:55802 362121111 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1020 0.369887829 ::1:55802 ::1:49704 2827708906 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........1L.j +1022 0.370049477 ::1:49704 ::1:55802 362121143 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1024 0.370255709 ::1:55802 ::1:49704 2827709032 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........1L.j +1026 0.370417118 ::1:49704 ::1:55802 362121175 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1028 0.370550156 ::1:55802 ::1:49704 2827709170 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........1L.j +1030 0.370714903 ::1:49704 ::1:55802 362121207 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1032 0.370843172 ::1:55802 ::1:49704 2827709282 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........1L.j +1034 0.371002674 ::1:49704 ::1:55802 362121239 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1036 0.371130943 ::1:55802 ::1:49704 2827709408 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........1L.j +1038 0.371291399 ::1:49704 ::1:55802 362121271 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1040 0.371419907 ::1:55802 ::1:49704 2827709532 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........1L.j +1042 0.371583223 ::1:49704 ::1:55802 362121303 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1044 0.371759415 ::1:55802 ::1:49704 2827709654 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........1L.j +1046 0.371922016 ::1:49704 ::1:55802 362121335 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1048 0.372062206 ::1:55802 ::1:49704 2827709782 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........1L.j +1050 0.372226715 ::1:49704 ::1:55802 362121367 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1052 0.372366190 ::1:55802 ::1:49704 2827709916 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........1L.j +1054 0.372527838 ::1:49704 ::1:55802 362121399 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1056 0.372665405 ::1:55802 ::1:49704 2827710046 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........1L.j +1058 0.372828960 ::1:49704 ::1:55802 362121431 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +2887 6.628282547 ::1:55802 ::1:49704 2827710174 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +2889 6.628513336 ::1:49704 ::1:55802 362121463 44 05000203100000002c000000520000001400000000000000000000004bbe3bf7 ........,...R...............K.;...rL.^5.{.0p +2891 6.628692627 ::1:55802 ::1:49704 2827710214 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K........K.;. +2893 6.630509377 ::1:49704 ::1:55802 362121507 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +2895 6.630718946 ::1:55802 ::1:49704 2827710314 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K........K.;. +2897 6.630901337 ::1:49704 ::1:55802 362121535 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +2899 6.631143093 ::1:55802 ::1:49704 2827710374 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K........K.;. +2901 6.631402969 ::1:49704 ::1:55802 362121627 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +2903 6.631556749 ::1:55802 ::1:49704 2827710498 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K........K.;. +2905 6.631734610 ::1:49704 ::1:55802 362121659 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +2907 6.631877422 ::1:55802 ::1:49704 2827710626 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K........K.;. +2909 6.632049084 ::1:49704 ::1:55802 362121691 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +2911 6.632190704 ::1:55802 ::1:49704 2827710748 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K........K.;. +2913 6.632359266 ::1:49704 ::1:55802 362121723 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +2915 6.632500410 ::1:55802 ::1:49704 2827710872 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K........K.;. +2917 6.632669449 ::1:49704 ::1:55802 362121755 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +2919 6.632810831 ::1:55802 ::1:49704 2827711006 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K........K.;. +2921 6.633005857 ::1:49704 ::1:55802 362121787 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +2923 6.633139372 ::1:55802 ::1:49704 2827711140 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K........K.;. +2925 6.633307934 ::1:49704 ::1:55802 362121819 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +2927 6.633447409 ::1:55802 ::1:49704 2827711286 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K........K.;. +2929 6.633615732 ::1:49704 ::1:55802 362121851 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +2931 6.633754492 ::1:55802 ::1:49704 2827711406 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K........K.;. +2933 6.633919954 ::1:49704 ::1:55802 362121883 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +2935 6.634100199 ::1:55802 ::1:49704 2827711540 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K........K.;. +2937 6.634278059 ::1:49704 ::1:55802 362121915 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +2939 6.634427071 ::1:55802 ::1:49704 2827711672 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K........K.;. +2941 6.634599447 ::1:49704 ::1:55802 362121947 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +2943 6.634786844 ::1:55802 ::1:49704 2827711802 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K........K.;. +2945 6.634981871 ::1:49704 ::1:55802 362121979 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +2947 6.635127544 ::1:55802 ::1:49704 2827711946 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K........K.;. +2949 6.635350943 ::1:49704 ::1:55802 362122011 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +2951 6.635508060 ::1:55802 ::1:49704 2827712094 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K........K.;. +2953 6.635678053 ::1:49704 ::1:55802 362122043 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +2956 6.635891914 ::1:55802 ::1:49704 2827712240 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K........K.;. +2961 6.636130810 ::1:49704 ::1:55802 362122075 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +2987 6.708852768 ::1:55802 ::1:49704 2827712398 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +2989 6.709087610 ::1:49704 ::1:55802 362122107 44 05000203100000002c0000006400000014000000000000000000000079a33d4c ........,...d...............y.=LW.tD.a...DsK +2991 6.709253550 ::1:55802 ::1:49704 2827712438 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K........y.=L +2993 6.710925102 ::1:49704 ::1:55802 362122151 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +2995 6.711064577 ::1:55802 ::1:49704 2827712522 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K........y.=L +2997 6.711327076 ::1:49704 ::1:55802 362122179 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +2999 6.711556196 ::1:55802 ::1:49704 2827712582 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K........y.=L +3001 6.711748362 ::1:49704 ::1:55802 362122271 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3003 6.711908102 ::1:55802 ::1:49704 2827712690 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K........y.=L +3005 6.712155104 ::1:49704 ::1:55802 362122303 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3007 6.712300301 ::1:55802 ::1:49704 2827712802 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K........y.=L +3009 6.712455750 ::1:49704 ::1:55802 362122335 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3011 6.712633610 ::1:55802 ::1:49704 2827712908 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K........y.=L +3013 6.712800026 ::1:49704 ::1:55802 362122367 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3015 6.713031054 ::1:55802 ::1:49704 2827713016 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K........y.=L +3017 6.713192225 ::1:49704 ::1:55802 362122399 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3019 6.713370800 ::1:55802 ::1:49704 2827713134 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K........y.=L +3021 6.713525057 ::1:49704 ::1:55802 362122431 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3023 6.713725567 ::1:55802 ::1:49704 2827713252 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K........y.=L +3025 6.713886976 ::1:49704 ::1:55802 362122463 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3027 6.714054823 ::1:55802 ::1:49704 2827713382 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K........y.=L +3029 6.714203119 ::1:49704 ::1:55802 362122495 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3031 6.714361668 ::1:55802 ::1:49704 2827713486 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K........y.=L +3033 6.714535236 ::1:49704 ::1:55802 362122527 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3035 6.714679718 ::1:55802 ::1:49704 2827713604 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K........y.=L +3037 6.714830399 ::1:49704 ::1:55802 362122559 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3039 6.714972973 ::1:55802 ::1:49704 2827713720 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K........y.=L +3041 6.715192080 ::1:49704 ::1:55802 362122591 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3043 6.715710878 ::1:55802 ::1:49704 2827713834 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K........y.=L +3045 6.715864182 ::1:49704 ::1:55802 362122623 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3047 6.716067076 ::1:55802 ::1:49704 2827713962 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K........y.=L +3049 6.716214657 ::1:49704 ::1:55802 362122655 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3051 6.716390133 ::1:55802 ::1:49704 2827714082 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K........y.=L +3053 6.716541529 ::1:49704 ::1:55802 362122687 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3055 6.716719389 ::1:55802 ::1:49704 2827714202 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K........y.=L +3057 6.716868162 ::1:49704 ::1:55802 362122719 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3059 6.717067719 ::1:55802 ::1:49704 2827714324 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K........y.=L +3061 6.717210293 ::1:49704 ::1:55802 362122751 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3063 6.717411518 ::1:55802 ::1:49704 2827714458 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K........y.=L +3065 6.717562914 ::1:49704 ::1:55802 362122783 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3067 6.717740774 ::1:55802 ::1:49704 2827714590 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K........y.=L +3069 6.717889786 ::1:49704 ::1:55802 362122815 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3071 6.718091726 ::1:55802 ::1:49704 2827714720 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K........y.=L +3073 6.718239784 ::1:49704 ::1:55802 362122847 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3075 6.718416691 ::1:55802 ::1:49704 2827714858 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K........y.=L +3077 6.718565702 ::1:49704 ::1:55802 362122879 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3079 6.718760729 ::1:55802 ::1:49704 2827715002 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K........y.=L +3081 6.718911171 ::1:49704 ::1:55802 362122911 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3083 6.719181299 ::1:55802 ::1:49704 2827715146 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K........y.=L +3085 6.719341040 ::1:49704 ::1:55802 362122943 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3087 6.719561100 ::1:55802 ::1:49704 2827715262 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K........y.=L +3089 6.719712973 ::1:49704 ::1:55802 362122975 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3091 6.719892979 ::1:55802 ::1:49704 2827715392 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K........y.=L +3093 6.720093012 ::1:49704 ::1:55802 362123007 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3095 6.720268250 ::1:55802 ::1:49704 2827715530 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........y.=L +3097 6.720417976 ::1:49704 ::1:55802 362123039 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3099 6.720592022 ::1:55802 ::1:49704 2827715660 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........y.=L +3101 6.720741272 ::1:49704 ::1:55802 362123071 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3103 6.720914602 ::1:55802 ::1:49704 2827715782 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........y.=L +3105 6.721115828 ::1:49704 ::1:55802 362123103 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3107 6.721293211 ::1:55802 ::1:49704 2827715904 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........y.=L +3109 6.721443415 ::1:49704 ::1:55802 362123135 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3111 6.721622467 ::1:55802 ::1:49704 2827716038 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........y.=L +3113 6.721773148 ::1:49704 ::1:55802 362123167 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3115 6.721986532 ::1:55802 ::1:49704 2827716166 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........y.=L +3117 6.722135305 ::1:49704 ::1:55802 362123199 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3119 6.753433228 ::1:55802 ::1:49704 2827716290 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K........y.=L +3121 6.753664255 ::1:49704 ::1:55802 362123231 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3141 6.788186789 ::1:55802 ::1:49704 2827716806 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3143 6.788359642 ::1:49704 ::1:55802 362123259 44 05000203100000002c00000086000000140000000000000000000000428f82b6 ........,...................B.....BK..\Ss.uL +3145 6.788544178 ::1:55802 ::1:49704 2827716846 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........B... +3147 6.790235519 ::1:49704 ::1:55802 362123303 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3149 6.790383101 ::1:55802 ::1:49704 2827716958 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........B... +3151 6.790549040 ::1:49704 ::1:55802 362123331 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3153 6.790798664 ::1:55802 ::1:49704 2827717018 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........B... +3155 6.790975809 ::1:49704 ::1:55802 362123423 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3157 6.791131496 ::1:55802 ::1:49704 2827717154 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........B... +3159 6.791289091 ::1:49704 ::1:55802 362123455 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3161 6.791437387 ::1:55802 ::1:49704 2827717294 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........B... +3163 6.791594744 ::1:49704 ::1:55802 362123487 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3165 6.791739941 ::1:55802 ::1:49704 2827717428 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........B... +3167 6.791893482 ::1:49704 ::1:55802 362123519 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3169 6.792063951 ::1:55802 ::1:49704 2827717564 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3171 6.792333603 ::1:49704 ::1:55802 362123551 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3173 6.792499304 ::1:55802 ::1:49704 2827717710 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3175 6.792677402 ::1:49704 ::1:55802 362123583 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3177 6.792826414 ::1:55802 ::1:49704 2827717856 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........B... +3179 6.792982340 ::1:49704 ::1:55802 362123615 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3181 6.793640614 ::1:55802 ::1:49704 2827718014 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........B... +3183 6.793797970 ::1:49704 ::1:55802 362123647 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3185 6.793946266 ::1:55802 ::1:49704 2827718146 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3187 6.794094801 ::1:49704 ::1:55802 362123679 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3189 6.794244766 ::1:55802 ::1:49704 2827718292 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........B... +3191 6.794412136 ::1:49704 ::1:55802 362123711 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3193 6.794560194 ::1:55802 ::1:49704 2827718436 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........B... +3195 6.794714689 ::1:49704 ::1:55802 362123743 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3197 6.794907331 ::1:55802 ::1:49704 2827718578 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........B... +3199 6.795084476 ::1:49704 ::1:55802 362123775 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3201 6.795237064 ::1:55802 ::1:49704 2827718738 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........B... +3203 6.795391798 ::1:49704 ::1:55802 362123807 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3205 6.795558929 ::1:55802 ::1:49704 2827718894 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........B... +3207 6.795712709 ::1:49704 ::1:55802 362123839 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3209 6.795888901 ::1:55802 ::1:49704 2827719048 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........B... +3211 6.796068192 ::1:49704 ::1:55802 362123871 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3213 6.796218395 ::1:55802 ::1:49704 2827719194 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........B... +3215 6.796375275 ::1:49704 ::1:55802 362123903 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3217 6.796539783 ::1:55802 ::1:49704 2827719348 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........B... +3219 6.796695232 ::1:49704 ::1:55802 362123935 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3221 6.796848297 ::1:55802 ::1:49704 2827719498 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........B... +3223 6.797031879 ::1:49704 ::1:55802 362123967 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3225 6.797186136 ::1:55802 ::1:49704 2827719650 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........B... +3227 6.797339678 ::1:49704 ::1:55802 362123999 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3229 6.797496319 ::1:55802 ::1:49704 2827719790 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........B... +3231 6.797649622 ::1:49704 ::1:55802 362124031 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3233 6.797803402 ::1:55802 ::1:49704 2827719938 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........B... +3235 6.797983408 ::1:49704 ::1:55802 362124063 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3237 6.798139095 ::1:55802 ::1:49704 2827720100 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........B... +3239 6.798290491 ::1:49704 ::1:55802 362124095 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3241 6.798443317 ::1:55802 ::1:49704 2827720272 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........B... +3243 6.798629761 ::1:49704 ::1:55802 362124127 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3249 6.806167603 ::1:55802 ::1:49704 2827720416 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3251 6.806327581 ::1:49704 ::1:55802 362124159 44 05000203100000002c000000a000000014000000000000000000000039aef937 ........,...................9..7.Xn@..m...l] +3253 6.806502819 ::1:55802 ::1:49704 2827720456 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........9..7 +3255 6.808109999 ::1:49704 ::1:55802 362124203 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3257 6.808258057 ::1:55802 ::1:49704 2827720584 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........9..7 +3260 6.808433533 ::1:49704 ::1:55802 362124231 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3262 6.808660507 ::1:55802 ::1:49704 2827720644 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........9..7 +3264 6.808874607 ::1:49704 ::1:55802 362124323 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3266 6.809048176 ::1:55802 ::1:49704 2827720796 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........9..7 +3268 6.809217215 ::1:49704 ::1:55802 362124355 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3270 6.809369802 ::1:55802 ::1:49704 2827720952 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........9..7 +3272 6.809534073 ::1:49704 ::1:55802 362124387 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3274 6.809685230 ::1:55802 ::1:49704 2827721102 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........9..7 +3276 6.809848785 ::1:49704 ::1:55802 362124419 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3278 6.810054302 ::1:55802 ::1:49704 2827721254 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........9..7 +3280 6.810214520 ::1:49704 ::1:55802 362124451 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3282 6.810365677 ::1:55802 ::1:49704 2827721416 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........9..7 +3284 6.810528994 ::1:49704 ::1:55802 362124483 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3286 6.810680151 ::1:55802 ::1:49704 2827721578 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........9..7 +3288 6.810840607 ::1:49704 ::1:55802 362124515 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3290 6.811015606 ::1:55802 ::1:49704 2827721752 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........9..7 +3292 6.811174393 ::1:49704 ::1:55802 362124547 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3294 6.811329842 ::1:55802 ::1:49704 2827721900 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........9..7 +3296 6.811494589 ::1:49704 ::1:55802 362124579 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3298 6.811658382 ::1:55802 ::1:49704 2827722062 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........9..7 +3300 6.811835527 ::1:49704 ::1:55802 362124611 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3302 6.812011719 ::1:55802 ::1:49704 2827722222 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........9..7 +3304 6.812170744 ::1:49704 ::1:55802 362124643 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3306 6.812397480 ::1:55802 ::1:49704 2827722380 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........9..7 +3308 6.812564611 ::1:49704 ::1:55802 362124675 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3310 6.812725306 ::1:55802 ::1:49704 2827722550 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........9..7 +3312 6.812886238 ::1:49704 ::1:55802 362124707 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3318 6.818803549 ::1:55802 ::1:49704 2827722732 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3320 6.819007158 ::1:49704 ::1:55802 362124739 44 05000203100000002c000000b0000000140000000000000000000000bce7c065 ........,......................e.'.B.A2,.... +3322 6.819199085 ::1:55802 ::1:49704 2827722772 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K...........e +3336 6.820755005 ::1:49704 ::1:55802 362124783 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3338 6.820964098 ::1:55802 ::1:49704 2827722868 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........e +3340 6.821170092 ::1:49704 ::1:55802 362124811 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3344 6.821396828 ::1:55802 ::1:49704 2827722928 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........e +3348 6.821567059 ::1:49704 ::1:55802 362124903 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3351 6.821724415 ::1:55802 ::1:49704 2827723048 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K...........e +3354 6.821883202 ::1:49704 ::1:55802 362124935 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3356 6.822090626 ::1:55802 ::1:49704 2827723172 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K...........e +3358 6.822248697 ::1:49704 ::1:55802 362124967 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3360 6.822419167 ::1:55802 ::1:49704 2827723290 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........e +3362 6.822584867 ::1:49704 ::1:55802 362124999 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3366 6.822753191 ::1:55802 ::1:49704 2827723410 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3370 6.822912693 ::1:49704 ::1:55802 362125031 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3372 6.823141813 ::1:55802 ::1:49704 2827723540 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3376 6.823297977 ::1:49704 ::1:55802 362125063 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3378 6.823448658 ::1:55802 ::1:49704 2827723670 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........e +3382 6.823641300 ::1:49704 ::1:55802 362125095 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3386 6.823854685 ::1:55802 ::1:49704 2827723812 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K...........e +3389 6.824017286 ::1:49704 ::1:55802 362125127 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3392 6.824168921 ::1:55802 ::1:49704 2827723928 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3394 6.824342251 ::1:49704 ::1:55802 362125159 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3396 6.824495554 ::1:55802 ::1:49704 2827724058 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........e +3398 6.824654102 ::1:49704 ::1:55802 362125191 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3400 6.824805260 ::1:55802 ::1:49704 2827724186 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........e +3402 6.824987411 ::1:49704 ::1:55802 362125223 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3404 6.825175285 ::1:55802 ::1:49704 2827724312 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........e +3406 6.825334549 ::1:49704 ::1:55802 362125255 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3408 6.825493574 ::1:55802 ::1:49704 2827724438 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........e +3410 6.825651169 ::1:49704 ::1:55802 362125287 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3412 6.825809717 ::1:55802 ::1:49704 2827724570 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........e +3414 6.825991392 ::1:49704 ::1:55802 362125319 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3416 6.826126575 ::1:55802 ::1:49704 2827724700 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K...........e +3418 6.826285601 ::1:49704 ::1:55802 362125351 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3420 6.826442480 ::1:55802 ::1:49704 2827724838 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K...........e +3422 6.826598883 ::1:49704 ::1:55802 362125383 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3424 6.826754808 ::1:55802 ::1:49704 2827724974 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........e +3426 6.826910257 ::1:49704 ::1:55802 362125415 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3428 6.827071428 ::1:55802 ::1:49704 2827725106 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........e +3430 6.827225924 ::1:49704 ::1:55802 362125447 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3432 6.827383280 ::1:55802 ::1:49704 2827725248 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K...........e +3434 6.827540159 ::1:49704 ::1:55802 362125479 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3440 6.862789631 ::1:55802 ::1:49704 2827725396 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K........y.=L +3442 6.863118410 ::1:49704 ::1:55802 362125511 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3460 6.932839155 ::1:55802 ::1:49704 2827725686 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K........y.=L +3462 6.933125019 ::1:49704 ::1:55802 362125539 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +3506 7.086703539 ::1:55802 ::1:49704 2827725892 40 050000831000000028000000c800000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3508 7.086915970 ::1:49704 ::1:55802 362125567 44 05000203100000002c000000c80000001400000000000000000000005a3e54d9 ........,...................Z>T..c.A..o..... +3510 7.087097168 ::1:55802 ::1:49704 2827725932 104 050000831000000068000000c900000040000000010000008c9e288562f29747 ........h.......@.........(.b..G..>K........Z>T. +3512 7.088955641 ::1:49704 ::1:55802 362125611 28 05000203100000001c000000c9000000040000000100000001000000 ............................ +3514 7.089102268 ::1:55802 ::1:49704 2827726036 60 05000083100000003c000000ca00000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........Z>T. +3516 7.089338064 ::1:49704 ::1:55802 362125639 92 05000203100000005c000000ca00000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3518 7.089583874 ::1:55802 ::1:49704 2827726096 128 050000831000000080000000cb00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........Z>T. +3520 7.089872837 ::1:49704 ::1:55802 362125731 32 050002031000000020000000cb00000008000000010000003b02000001000000 ........ ...............;....... +3522 7.090043783 ::1:55802 ::1:49704 2827726224 132 050000831000000084000000cc0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Z>T. +3524 7.090210915 ::1:49704 ::1:55802 362125763 32 050002031000000020000000cc00000008000000010000003c02000001000000 ........ ...............<....... +3526 7.090355873 ::1:55802 ::1:49704 2827726356 126 05000083100000007e000000cd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........Z>T. +3528 7.090534210 ::1:49704 ::1:55802 362125795 32 050002031000000020000000cd00000008000000010000003d02000001000000 ........ ...............=....... +3530 7.090759993 ::1:55802 ::1:49704 2827726482 128 050000831000000080000000ce00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........Z>T. +3532 7.090925694 ::1:49704 ::1:55802 362125827 32 050002031000000020000000ce00000008000000010000003e02000001000000 ........ ...............>....... +3534 7.091070175 ::1:55802 ::1:49704 2827726610 138 05000083100000008a000000cf00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Z>T. +3536 7.091230392 ::1:49704 ::1:55802 362125859 32 050002031000000020000000cf00000008000000010000003f02000001000000 ........ ...............?....... +3538 7.091373682 ::1:55802 ::1:49704 2827726748 138 05000083100000008a000000d000000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Z>T. +3540 7.091533184 ::1:49704 ::1:55802 362125891 32 050002031000000020000000d000000008000000010000004002000001000000 ........ ...............@....... +3542 7.091729641 ::1:55802 ::1:49704 2827726886 150 050000831000000096000000d10000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........Z>T. +3544 7.091904402 ::1:49704 ::1:55802 362125923 32 050002031000000020000000d100000008000000010000004102000001000000 ........ ...............A....... +3546 7.092050314 ::1:55802 ::1:49704 2827727036 124 05000083100000007c000000d200000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........Z>T. +3548 7.092209816 ::1:49704 ::1:55802 362125955 32 050002031000000020000000d200000008000000010000004202000001000000 ........ ...............B....... +3550 7.092352867 ::1:55802 ::1:49704 2827727160 138 05000083100000008a000000d300000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Z>T. +3552 7.092511654 ::1:49704 ::1:55802 362125987 32 050002031000000020000000d300000008000000010000004302000001000000 ........ ...............C....... +3554 7.092676401 ::1:55802 ::1:49704 2827727298 136 050000831000000088000000d400000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........Z>T. +3556 7.092833281 ::1:49704 ::1:55802 362126019 32 050002031000000020000000d400000008000000010000004402000001000000 ........ ...............D....... +3558 7.092975855 ::1:55802 ::1:49704 2827727434 134 050000831000000086000000d50000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........Z>T. +3560 7.093133688 ::1:49704 ::1:55802 362126051 32 050002031000000020000000d500000008000000010000004502000001000000 ........ ...............E....... +5328 0.000000000 fe80::3608:256c:365:cc73:55822 fe80::3608:256c:365:cc73:55555 771548307 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +5368 0.072487116 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55822 2140243265 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +1574 0.000000000 fe80::3608:256c:365:cc73:55808 fe80::3608:256c:365:cc73:55555 1180165693 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +1594 0.069408894 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55808 2876407107 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +2175 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148568381 1284 17030304ff0000000000000383f23de0208a46e0fd2cc7b5562f8014b787dcab ..............=. .F..,..V/......S.......J..F.o%M +2177 0.005292654 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240922 54 170303003100000000000003dc5464131a87ca17c6b7e2f926fab66fe95c22c6 ....1........Td.........&..o.\".Gv7.<.........@c +2179 0.005689144 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148569665 105 17030300640000000000000384548dddc36dce12aa7dc3a78d28c928c2a83e11 ....d........T...m...}...(.(..>....Zh..d...$..0. +2181 0.006951571 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088240976 264 170303010300000000000003dddd6bfe7cb625b1a9dbfd17c61526cf65b7c4cd ..............k.|.%.......&.e......]0$l*.v..e.B. +2183 0.007292747 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241240 34 170303001d00000000000003de437e12e83a334857265d9155078685be79d3d3 .............C~..:3HW&].U....y..k. +4150 4.837531567 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148569770 1284 17030304ff0000000000000385fcd20c198ace56e6470d6df91763f9401710af ...................V.G.m..c.@.... ........Juw]E! +4152 4.843795538 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241274 54 170303003100000000000003df66d249b672a99352d0f8c6c4443bfc1823ae45 ....1........f.I.r..R....D;..#.E=..$k.d(..A..... +4154 4.844160795 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148571054 117 17030300700000000000000386f2dbba899383341b3c2f8bf8ea37ae9e3a8e81 ....p..............4.Doy..F. +4158 4.847119808 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241328 173 17030300a800000000000003e0e2d67cec1e7301a59fff53d2d214ecf21d737f ...............|..s....S......s...W.4 ..AVe}o..E +4160 4.848108530 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148571171 1284 17030304ff00000000000003871d4dd70274c05b744eea738bcf5bd2ce5d875c ..............M..t.[tN.s..[..].\z..~.........!.v +4162 4.853022337 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241501 54 170303003100000000000003e103d6ee5b6422e8150f15996fb86328d2a5fdbf ....1...........[d".....o.c(....3J.<..D.c.o9.-.H +4164 4.853343487 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148572455 117 1703030070000000000000038851bfe838193c1cb0199b17cf665d22e058dd42 ....p........Q..8.<......f]".X.B..~....i.r}..qQ. +4166 4.855951309 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241555 173 17030300a800000000000003e20055e0a060b1f379b194801b6a86cfc3d8f8d3 ..............U..`..y....j......R..R...VR...&..~ +4187 4.864122629 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148572572 1285 1703030500000000000000038990441593e7b85f692439e3f2ff41acda9d6598 ..............D...._i$9...A...e.D."....=9.?i.uF. +4189 4.868251085 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241728 54 170303003100000000000003e33cd135b338e100dd0d3bc6683654c77631bafb ....1........<.5.8....;.h6T.v1....K3d...Y..qs}.. +4191 4.868821383 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148573857 130 170303007d000000000000038afbdda1fd90e9c31e353da1d70653131f93f4f6 ....}................5=...S.......N........."$.. +4193 4.870666981 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241782 173 17030300a800000000000003e48336ac4d32919337d8da471b6c8d65eec8c94e ..............6.M2..7..G.l.e...N.?D]7..|$.D>G[;. +4195 4.871649265 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148573987 1285 1703030500000000000000038b354d28bce35e09f626b3476fb338b3016f4250 .............5M(..^..&.Go.8..oBP!-..%....(....Z| +4197 4.875423193 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088241955 54 170303003100000000000003e5f71a3c32ea9acbb35a39d5fec257bac293664b ....1..........<2....Z9...W...fKE.ep~..K........K...K...........N..dA.!. +623 0.000809669 ::1:135 ::1:55801 470049430 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +716 0.113501072 ::1:55801 ::1:135 3364118521 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +718 0.114153862 ::1:135 ::1:55801 470049582 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +800 0.136255741 ::1:55801 ::1:135 3364118677 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +802 0.136767149 ::1:135 ::1:55801 470049734 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +881 0.243429661 ::1:55801 ::1:135 3364118833 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +883 0.244128227 ::1:135 ::1:55801 470049886 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +984 0.367639065 ::1:55801 ::1:135 3364118989 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +986 0.368258238 ::1:135 ::1:55801 470050038 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2883 6.630231619 ::1:55801 ::1:135 3364119145 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +2885 6.630911827 ::1:135 ::1:55801 470050190 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2983 6.710855484 ::1:55801 ::1:135 3364119301 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +2985 6.711503744 ::1:135 ::1:55801 470050342 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3137 6.790306330 ::1:55801 ::1:135 3364119457 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3139 6.790838957 ::1:135 ::1:55801 470050494 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3245 6.808359146 ::1:55801 ::1:135 3364119613 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3247 6.808809042 ::1:135 ::1:55801 470050646 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3314 6.820797920 ::1:55801 ::1:135 3364119769 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3316 6.821464539 ::1:135 ::1:55801 470050798 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3502 7.088612080 ::1:55801 ::1:135 3364119925 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3504 7.089321852 ::1:135 ::1:55801 470050950 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2033 0.000000000 fe80::3608:256c:365:cc73:55812 fe80::3608:256c:365:cc73:55555 324742323 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +2115 0.368905067 fe80::3608:256c:365:cc73:55812 fe80::3608:256c:365:cc73:55555 324742528 508 000001fc0000cdf0000000000000000b00010000000002000000100007025343 ..............................SCHNEIDR......M.DE +2740 2.515354395 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55812 3645058208 1990 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1861..Content-T +1409 0.000000000 ::1:55807 ::1:32571 2629079141 275 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +1411 0.001051903 ::1:32571 ::1:55807 3623474019 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +1413 0.002263069 ::1:55807 ::1:32571 2629079416 291 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +1427 0.007435799 ::1:32571 ::1:55807 3623474915 734 485454502f312e3120323030204f4b0d0a43616368652d436f6e74726f6c3a20 HTTP/1.1 200 OK..Cache-Control: public,max-age=1 diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..c36d745 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..13d00fc Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-__1_135-to-__1_55801.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_135-to-__1_55801.bin new file mode 100644 index 0000000..8cae186 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_135-to-__1_55801.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-__1_32571-to-__1_55807.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_32571-to-__1_55807.bin new file mode 100644 index 0000000..3118cc2 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_32571-to-__1_55807.bin @@ -0,0 +1,28 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworiVV2jZ+o/f8PfPQMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAMX0uz1y1NwBAAAAAA== +Date: Sat, 25 Apr 2026 05:13:24 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 200 OK +Cache-Control: public,max-age=15770000 +Content-Type: image/svg+xml +Last-Modified: Mon, 06 Apr 2020 03:33:02 GMT +Accept-Ranges: bytes +ETag: "1d60bc413576a8a" +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAADl6CsDm/XrPgAAAAA= +Date: Sat, 25 Apr 2026 05:13:24 GMT +Content-Length: 394 + + + + + \ No newline at end of file diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-__1_49704-to-__1_55802.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_49704-to-__1_55802.bin new file mode 100644 index 0000000..3b5cb27 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_49704-to-__1_55802.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55801-to-__1_135.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55801-to-__1_135.bin new file mode 100644 index 0000000..47fbe09 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55801-to-__1_135.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55802-to-__1_49704.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55802-to-__1_49704.bin new file mode 100644 index 0000000..f0303f5 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55802-to-__1_49704.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55807-to-__1_32571.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55807-to-__1_32571.bin new file mode 100644 index 0000000..b85756d --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-stream-__1_55807-to-__1_32571.bin @@ -0,0 +1,8 @@ +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate YGwGBisGAQUFAqBiMGCgGjAYBgorBgEEAYI3AgIKBgorBgEEAYI3AgIeokIEQE5UTE1TU1AAAQAAAJeyCOIJAAkANwAAAA8ADwAoAAAACgBhSgAAAA9ERVNLVE9QLTZKTDNLS09XT1JLR1JPVVA= +Host: localhost:32571 + +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAADyU5soc4uLM+yxKq6ISD4VajEgQQAQAAAH/ifAuIiwIaAAAAAA== +Host: localhost:32571 + diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..e174a50 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55808.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55808.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55808.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55812.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55812.bin new file mode 100644 index 0000000..db3f218 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55812.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55822.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55822.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55822.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55808-to-fe80__3608_256c_365_cc73_55555.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55808-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55808-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55812-to-fe80__3608_256c_365_cc73_55555.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55812-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..633c48c Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55812-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55822-to-fe80__3608_256c_365_cc73_55555.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55822-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_55822-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..6e0bf30 Binary files /dev/null and b/captures/015-loopback-subscribe-invalid/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/016-loopback-write-test-int-advised/command.txt b/captures/016-loopback-write-test-int-advised/command.txt new file mode 100644 index 0000000..80243c5 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=write --duration=8 --tag=TestChildObject.TestInt --type=int --value=99 --user-id=1 --write-delay-ms=1200 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\016-loopback-write-test-int-advised\harness.log --client=MxProtoTraceHarness-016-loopback-write-test-int-advised diff --git a/captures/016-loopback-write-test-int-advised/dcerpc-49704.tsv b/captures/016-loopback-write-test-int-advised/dcerpc-49704.tsv new file mode 100644 index 0000000..e093330 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/dcerpc-49704.tsv @@ -0,0 +1,498 @@ +611 1.911347800 11 11 2 0,1 4e0c90df-e39d-4164-a421-ace89484c602,4e0c90df-e39d-4164-a421-ace89484c602 116 0 Bind: call_id: 2, Fragment: Single, 2 context items: 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (32bit NDR), 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (6cb71c2c-9812-4540-0300-000000000000) +613 1.911738200 11 12 2 84 0 Bind_ack: call_id: 2, Fragment: Single, max_xmit: 5840 max_recv: 5840, 2 results: Acceptance, Negotiate ACK +615 1.911889200 11 0 2 0 0 40 0 Request: call_id: 2, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +617 1.912115900 11 2 2 0 0 44 0 Response: call_id: 2, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +619 1.912322600 11 14 3 1 1981974b-6bf7-46cb-9640-0260bbb551ba 72 0 Alter_context: call_id: 3, Fragment: Single, 1 context items: 1981974b-6bf7-46cb-9640-0260bbb551ba V1.0 (32bit NDR) +621 1.912475400 11 15 3 56 0 Alter_context_resp: call_id: 3, Fragment: Single, max_xmit: 5840 max_recv: 5840, 1 results: Acceptance +623 1.912658800 11 0 3 1 0 96 0 Request: call_id: 3, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +625 1.914151400 11 2 3 1 0 28 0 Response: call_id: 3, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +627 1.914321600 11 0 4 1 2 60 0 Request: call_id: 4, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +629 1.914497600 11 2 4 1 2 92 0 Response: call_id: 4, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +631 1.914795800 11 0 5 1 3 120 0 Request: call_id: 5, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +633 1.914979400 11 2 5 1 3 32 0 Response: call_id: 5, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +635 1.915138800 11 0 6 1 3 124 0 Request: call_id: 6, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +637 1.915302000 11 2 6 1 3 32 0 Response: call_id: 6, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +639 1.915456200 11 0 7 1 3 118 0 Request: call_id: 7, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +641 1.915706400 11 2 7 1 3 32 0 Response: call_id: 7, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +643 1.915869000 11 0 8 1 3 120 0 Request: call_id: 8, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +645 1.916041100 11 2 8 1 3 32 0 Response: call_id: 8, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +647 1.916195700 11 0 9 1 3 130 0 Request: call_id: 9, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +649 1.916368900 11 2 9 1 3 32 0 Response: call_id: 9, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +651 1.916521600 11 0 10 1 3 130 0 Request: call_id: 10, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +653 1.916733900 11 2 10 1 3 32 0 Response: call_id: 10, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +655 1.916906700 11 0 11 1 3 142 0 Request: call_id: 11, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +657 1.917068000 11 2 11 1 3 32 0 Response: call_id: 11, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +659 1.917218100 11 0 12 1 3 116 0 Request: call_id: 12, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +661 1.917377100 11 2 12 1 3 32 0 Response: call_id: 12, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +663 1.917682200 11 0 13 1 3 130 0 Request: call_id: 13, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +665 1.917846700 11 2 13 1 3 32 0 Response: call_id: 13, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +667 1.918000200 11 0 14 1 3 128 0 Request: call_id: 14, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +669 1.918160500 11 2 14 1 3 32 0 Response: call_id: 14, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +671 1.918310300 11 0 15 1 3 126 0 Request: call_id: 15, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +673 1.918469200 11 2 15 1 3 32 0 Response: call_id: 15, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +675 1.919061100 11 0 16 1 3 132 0 Request: call_id: 16, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +677 1.919223400 11 2 16 1 3 32 0 Response: call_id: 16, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +679 1.919425500 11 0 17 1 3 152 0 Request: call_id: 17, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +681 1.919587700 11 2 17 1 3 32 0 Response: call_id: 17, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +728 2.040393800 11 0 18 0 0 40 0 Request: call_id: 18, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +730 2.040650800 11 2 18 0 0 44 0 Response: call_id: 18, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +732 2.041224700 11 0 19 1 0 108 0 Request: call_id: 19, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +734 2.042786400 11 2 19 1 0 28 0 Response: call_id: 19, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +736 2.042981000 11 0 20 1 2 60 0 Request: call_id: 20, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +738 2.043162200 11 2 20 1 2 92 0 Response: call_id: 20, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +740 2.043407200 11 0 21 1 3 132 0 Request: call_id: 21, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +742 2.043583400 11 2 21 1 3 32 0 Response: call_id: 21, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +744 2.043740400 11 0 22 1 3 136 0 Request: call_id: 22, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +746 2.044123500 11 2 22 1 3 32 0 Response: call_id: 22, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +748 2.044291300 11 0 23 1 3 130 0 Request: call_id: 23, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +750 2.044460300 11 2 23 1 3 32 0 Response: call_id: 23, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +752 2.044611700 11 0 24 1 3 132 0 Request: call_id: 24, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +754 2.044770300 11 2 24 1 3 32 0 Response: call_id: 24, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +756 2.044921000 11 0 25 1 3 142 0 Request: call_id: 25, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +758 2.045135700 11 2 25 1 3 32 0 Response: call_id: 25, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +760 2.045287400 11 0 26 1 3 142 0 Request: call_id: 26, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +762 2.045446200 11 2 26 1 3 32 0 Response: call_id: 26, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +764 2.045597000 11 0 27 1 3 154 0 Request: call_id: 27, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +766 2.045754500 11 2 27 1 3 32 0 Response: call_id: 27, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +768 2.045904100 11 0 28 1 3 128 0 Request: call_id: 28, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +770 2.046113200 11 2 28 1 3 32 0 Response: call_id: 28, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +772 2.046265700 11 0 29 1 3 142 0 Request: call_id: 29, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +774 2.046424100 11 2 29 1 3 32 0 Response: call_id: 29, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +776 2.046578600 11 0 30 1 3 140 0 Request: call_id: 30, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +778 2.046738400 11 2 30 1 3 32 0 Response: call_id: 30, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +780 2.046926600 11 0 31 1 3 138 0 Request: call_id: 31, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +782 2.047165200 11 2 31 1 3 32 0 Response: call_id: 31, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +788 2.064908400 11 0 32 0 0 40 0 Request: call_id: 32, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +790 2.065067900 11 2 32 0 0 44 0 Response: call_id: 32, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +792 2.065267700 11 0 33 1 0 104 0 Request: call_id: 33, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +794 2.066875700 11 2 33 1 0 28 0 Response: call_id: 33, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +796 2.067087700 11 0 34 1 2 60 0 Request: call_id: 34, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +798 2.067269200 11 2 34 1 2 92 0 Response: call_id: 34, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +800 2.067516000 11 0 35 1 3 128 0 Request: call_id: 35, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +802 2.067741200 11 2 35 1 3 32 0 Response: call_id: 35, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +804 2.067931500 11 0 36 1 3 132 0 Request: call_id: 36, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +806 2.068105600 11 2 36 1 3 32 0 Response: call_id: 36, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +808 2.068327100 11 0 37 1 3 126 0 Request: call_id: 37, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +810 2.068755300 11 2 37 1 3 32 0 Response: call_id: 37, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +812 2.068936500 11 0 38 1 3 128 0 Request: call_id: 38, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +814 2.069188700 11 2 38 1 3 32 0 Response: call_id: 38, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +816 2.069398000 11 0 39 1 3 138 0 Request: call_id: 39, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +818 2.069590400 11 2 39 1 3 32 0 Response: call_id: 39, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +820 2.069751300 11 0 40 1 3 138 0 Request: call_id: 40, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +822 2.069928400 11 2 40 1 3 32 0 Response: call_id: 40, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +824 2.070079200 11 0 41 1 3 150 0 Request: call_id: 41, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +826 2.070258900 11 2 41 1 3 32 0 Response: call_id: 41, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +828 2.070452900 11 0 42 1 3 124 0 Request: call_id: 42, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +830 2.070644400 11 2 42 1 3 32 0 Response: call_id: 42, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +832 2.070805200 11 0 43 1 3 138 0 Request: call_id: 43, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +834 2.071010400 11 2 43 1 3 32 0 Response: call_id: 43, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +837 2.071159900 11 0 44 1 3 136 0 Request: call_id: 44, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +839 2.071333300 11 2 44 1 3 32 0 Response: call_id: 44, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +841 2.071483000 11 0 45 1 3 134 0 Request: call_id: 45, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +843 2.071857100 11 2 45 1 3 32 0 Response: call_id: 45, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +845 2.072089400 11 0 46 1 3 140 0 Request: call_id: 46, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +847 2.072289500 11 2 46 1 3 32 0 Response: call_id: 46, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +849 2.072450600 11 0 47 1 3 146 0 Request: call_id: 47, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +851 2.072674300 11 2 47 1 3 32 0 Response: call_id: 47, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +936 2.201511700 11 0 48 0 0 40 0 Request: call_id: 48, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +938 2.201762900 11 2 48 0 0 44 0 Response: call_id: 48, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +940 2.202025700 11 0 49 1 0 112 0 Request: call_id: 49, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +942 2.203779900 11 2 49 1 0 28 0 Response: call_id: 49, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +944 2.204053000 11 0 50 1 2 60 0 Request: call_id: 50, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +946 2.204241900 11 2 50 1 2 92 0 Response: call_id: 50, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +948 2.204493500 11 0 51 1 3 136 0 Request: call_id: 51, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +950 2.204739100 11 2 51 1 3 32 0 Response: call_id: 51, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +952 2.204961400 11 0 52 1 3 140 0 Request: call_id: 52, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +954 2.205146400 11 2 52 1 3 32 0 Response: call_id: 52, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +956 2.205340600 11 0 53 1 3 134 0 Request: call_id: 53, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +958 2.205558600 11 2 53 1 3 32 0 Response: call_id: 53, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +960 2.205774800 11 0 54 1 3 136 0 Request: call_id: 54, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +962 2.205995400 11 2 54 1 3 32 0 Response: call_id: 54, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +964 2.206185200 11 0 55 1 3 146 0 Request: call_id: 55, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +966 2.206417300 11 2 55 1 3 32 0 Response: call_id: 55, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +968 2.206587900 11 0 56 1 3 146 0 Request: call_id: 56, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +970 2.206773400 11 2 56 1 3 32 0 Response: call_id: 56, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +972 2.206981000 11 0 57 1 3 158 0 Request: call_id: 57, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +974 2.207162100 11 2 57 1 3 32 0 Response: call_id: 57, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +976 2.207315500 11 0 58 1 3 132 0 Request: call_id: 58, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +978 2.207548900 11 2 58 1 3 32 0 Response: call_id: 58, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +980 2.207729800 11 0 59 1 3 146 0 Request: call_id: 59, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +982 2.207985200 11 2 59 1 3 32 0 Response: call_id: 59, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +984 2.208155200 11 0 60 1 3 144 0 Request: call_id: 60, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +986 2.208367700 11 2 60 1 3 32 0 Response: call_id: 60, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +988 2.208607400 11 0 61 1 3 142 0 Request: call_id: 61, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +990 2.208811100 11 2 61 1 3 32 0 Response: call_id: 61, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +992 2.209188300 11 0 62 1 3 148 0 Request: call_id: 62, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +994 2.209410600 11 2 62 1 3 32 0 Response: call_id: 62, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +996 2.209677600 11 0 63 1 3 154 0 Request: call_id: 63, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +998 2.209890600 11 2 63 1 3 32 0 Response: call_id: 63, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1063 2.358470900 11 0 64 0 0 40 0 Request: call_id: 64, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +1065 2.358773700 11 2 64 0 0 44 0 Response: call_id: 64, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +1067 2.358970000 11 0 65 1 0 92 0 Request: call_id: 65, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1075 2.360810100 11 2 65 1 0 28 0 Response: call_id: 65, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1077 2.360986500 11 0 66 1 2 60 0 Request: call_id: 66, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1079 2.361240900 11 2 66 1 2 92 0 Response: call_id: 66, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1081 2.361493000 11 0 67 1 3 116 0 Request: call_id: 67, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1083 2.361793300 11 2 67 1 3 32 0 Response: call_id: 67, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1085 2.361943500 11 0 68 1 3 120 0 Request: call_id: 68, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1087 2.362138900 11 2 68 1 3 32 0 Response: call_id: 68, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1089 2.362320800 11 0 69 1 3 114 0 Request: call_id: 69, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1091 2.362503700 11 2 69 1 3 32 0 Response: call_id: 69, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1093 2.362698500 11 0 70 1 3 116 0 Request: call_id: 70, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1095 2.363007500 11 2 70 1 3 32 0 Response: call_id: 70, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1097 2.363161800 11 0 71 1 3 126 0 Request: call_id: 71, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1099 2.363366200 11 2 71 1 3 32 0 Response: call_id: 71, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1101 2.363545900 11 0 72 1 3 126 0 Request: call_id: 72, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1103 2.363737000 11 2 72 1 3 32 0 Response: call_id: 72, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1105 2.363890100 11 0 73 1 3 138 0 Request: call_id: 73, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1107 2.364072300 11 2 73 1 3 32 0 Response: call_id: 73, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1109 2.364222800 11 0 74 1 3 112 0 Request: call_id: 74, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1111 2.364398000 11 2 74 1 3 32 0 Response: call_id: 74, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1113 2.364551200 11 0 75 1 3 126 0 Request: call_id: 75, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1115 2.364723300 11 2 75 1 3 32 0 Response: call_id: 75, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1117 2.364919300 11 0 76 1 3 124 0 Request: call_id: 76, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1119 2.365093000 11 2 76 1 3 32 0 Response: call_id: 76, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1121 2.365238200 11 0 77 1 3 122 0 Request: call_id: 77, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1123 2.365443200 11 2 77 1 3 32 0 Response: call_id: 77, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1125 2.365621000 11 0 78 1 3 128 0 Request: call_id: 78, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1127 2.365785200 11 2 78 1 3 32 0 Response: call_id: 78, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1129 2.365971500 11 0 79 1 3 134 0 Request: call_id: 79, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1131 2.366152400 11 2 79 1 3 32 0 Response: call_id: 79, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1133 2.366317300 11 0 80 1 3 130 0 Request: call_id: 80, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1136 2.366490000 11 2 80 1 3 32 0 Response: call_id: 80, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1140 2.366644400 11 0 81 1 3 128 0 Request: call_id: 81, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1143 2.366863700 11 2 81 1 3 32 0 Response: call_id: 81, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1665 3.760866000 22 0 113424 0 0 40 0 Request: call_id: 113424, Fragment: Single, opnum: 0, Ctx: 0 +1667 3.761097400 22 2 113424 0 44 0 Response: call_id: 113424, Fragment: Single, Ctx: 0 +1669 3.761358800 22 0 113425 1 0 104 0 Request: call_id: 113425, Fragment: Single, opnum: 0, Ctx: 1 +1671 3.761647800 22 2 113425 1 28 0 Response: call_id: 113425, Fragment: Single, Ctx: 1 +1673 3.761859700 22 0 113426 1 2 60 0 Request: call_id: 113426, Fragment: Single, opnum: 2, Ctx: 1 +1675 3.762035800 22 2 113426 1 92 0 Response: call_id: 113426, Fragment: Single, Ctx: 1 +1677 3.762334500 22 0 113427 1 3 128 0 Request: call_id: 113427, Fragment: Single, opnum: 3, Ctx: 1 +1679 3.762601600 22 2 113427 1 32 0 Response: call_id: 113427, Fragment: Single, Ctx: 1 +1681 3.762784900 22 0 113428 1 3 132 0 Request: call_id: 113428, Fragment: Single, opnum: 3, Ctx: 1 +1684 3.762960500 22 2 113428 1 32 0 Response: call_id: 113428, Fragment: Single, Ctx: 1 +1687 3.763130600 22 0 113429 1 3 126 0 Request: call_id: 113429, Fragment: Single, opnum: 3, Ctx: 1 +1689 3.763297700 22 2 113429 1 32 0 Response: call_id: 113429, Fragment: Single, Ctx: 1 +1693 3.763464200 22 0 113430 1 3 128 0 Request: call_id: 113430, Fragment: Single, opnum: 3, Ctx: 1 +1695 3.763704000 22 2 113430 1 32 0 Response: call_id: 113430, Fragment: Single, Ctx: 1 +1697 3.763872300 22 0 113431 1 3 138 0 Request: call_id: 113431, Fragment: Single, opnum: 3, Ctx: 1 +1699 3.764038100 22 2 113431 1 32 0 Response: call_id: 113431, Fragment: Single, Ctx: 1 +1703 3.764202600 22 0 113432 1 3 138 0 Request: call_id: 113432, Fragment: Single, opnum: 3, Ctx: 1 +1706 3.764368400 22 2 113432 1 32 0 Response: call_id: 113432, Fragment: Single, Ctx: 1 +1711 3.764535600 22 0 113433 1 3 150 0 Request: call_id: 113433, Fragment: Single, opnum: 3, Ctx: 1 +1713 3.764744200 22 2 113433 1 32 0 Response: call_id: 113433, Fragment: Single, Ctx: 1 +1715 3.764942000 22 0 113434 1 3 124 0 Request: call_id: 113434, Fragment: Single, opnum: 3, Ctx: 1 +1717 3.765133900 22 2 113434 1 32 0 Response: call_id: 113434, Fragment: Single, Ctx: 1 +1719 3.765324800 22 0 113435 1 3 138 0 Request: call_id: 113435, Fragment: Single, opnum: 3, Ctx: 1 +1721 3.765528600 22 2 113435 1 32 0 Response: call_id: 113435, Fragment: Single, Ctx: 1 +1723 3.765688900 22 0 113436 1 3 136 0 Request: call_id: 113436, Fragment: Single, opnum: 3, Ctx: 1 +1725 3.765858400 22 2 113436 1 32 0 Response: call_id: 113436, Fragment: Single, Ctx: 1 +1727 3.766025200 22 0 113437 1 3 134 0 Request: call_id: 113437, Fragment: Single, opnum: 3, Ctx: 1 +1729 3.766194200 22 2 113437 1 32 0 Response: call_id: 113437, Fragment: Single, Ctx: 1 +1731 3.766360700 22 0 113438 1 3 138 0 Request: call_id: 113438, Fragment: Single, opnum: 3, Ctx: 1 +1733 3.766553300 22 2 113438 1 32 0 Response: call_id: 113438, Fragment: Single, Ctx: 1 +1735 3.766929200 22 0 113439 0 1 60 0 Request: call_id: 113439, Fragment: Single, opnum: 1, Ctx: 0 +1737 3.767087400 22 2 113439 0 44 0 Response: call_id: 113439, Fragment: Single, Ctx: 0 +1743 3.769038500 22 0 113440 0 0 40 0 Request: call_id: 113440, Fragment: Single, opnum: 0, Ctx: 0 +1745 3.769292500 22 2 113440 0 44 0 Response: call_id: 113440, Fragment: Single, Ctx: 0 +1747 3.769527800 22 0 113441 1 0 104 0 Request: call_id: 113441, Fragment: Single, opnum: 0, Ctx: 1 +1749 3.769839300 22 2 113441 1 28 0 Response: call_id: 113441, Fragment: Single, Ctx: 1 +1751 3.770028800 22 0 113442 1 2 60 0 Request: call_id: 113442, Fragment: Single, opnum: 2, Ctx: 1 +1753 3.770282900 22 2 113442 1 92 0 Response: call_id: 113442, Fragment: Single, Ctx: 1 +1755 3.770561900 22 0 113443 1 3 128 0 Request: call_id: 113443, Fragment: Single, opnum: 3, Ctx: 1 +1757 3.770832900 22 2 113443 1 32 0 Response: call_id: 113443, Fragment: Single, Ctx: 1 +1759 3.771022700 22 0 113444 1 3 132 0 Request: call_id: 113444, Fragment: Single, opnum: 3, Ctx: 1 +1761 3.771279000 22 2 113444 1 32 0 Response: call_id: 113444, Fragment: Single, Ctx: 1 +1763 3.771459100 22 0 113445 1 3 126 0 Request: call_id: 113445, Fragment: Single, opnum: 3, Ctx: 1 +1765 3.771848000 22 2 113445 1 32 0 Response: call_id: 113445, Fragment: Single, Ctx: 1 +1767 3.772034300 22 0 113446 1 3 128 0 Request: call_id: 113446, Fragment: Single, opnum: 3, Ctx: 1 +1769 3.772291200 22 2 113446 1 32 0 Response: call_id: 113446, Fragment: Single, Ctx: 1 +1771 3.772474600 22 0 113447 1 3 138 0 Request: call_id: 113447, Fragment: Single, opnum: 3, Ctx: 1 +1773 3.772807700 22 2 113447 1 32 0 Response: call_id: 113447, Fragment: Single, Ctx: 1 +1775 3.772985300 22 0 113448 1 3 138 0 Request: call_id: 113448, Fragment: Single, opnum: 3, Ctx: 1 +1777 3.773189800 22 2 113448 1 32 0 Response: call_id: 113448, Fragment: Single, Ctx: 1 +1779 3.773364700 22 0 113449 1 3 150 0 Request: call_id: 113449, Fragment: Single, opnum: 3, Ctx: 1 +1781 3.773602600 22 2 113449 1 32 0 Response: call_id: 113449, Fragment: Single, Ctx: 1 +1783 3.773817500 22 0 113450 1 3 124 0 Request: call_id: 113450, Fragment: Single, opnum: 3, Ctx: 1 +1785 3.774021100 22 2 113450 1 32 0 Response: call_id: 113450, Fragment: Single, Ctx: 1 +1787 3.774197300 22 0 113451 1 3 138 0 Request: call_id: 113451, Fragment: Single, opnum: 3, Ctx: 1 +1789 3.774397900 22 2 113451 1 32 0 Response: call_id: 113451, Fragment: Single, Ctx: 1 +1791 3.774576100 22 0 113452 1 3 136 0 Request: call_id: 113452, Fragment: Single, opnum: 3, Ctx: 1 +1793 3.774776900 22 2 113452 1 32 0 Response: call_id: 113452, Fragment: Single, Ctx: 1 +1795 3.774951800 22 0 113453 1 3 134 0 Request: call_id: 113453, Fragment: Single, opnum: 3, Ctx: 1 +1797 3.775150300 22 2 113453 1 32 0 Response: call_id: 113453, Fragment: Single, Ctx: 1 +1799 3.775324100 22 0 113454 1 3 138 0 Request: call_id: 113454, Fragment: Single, opnum: 3, Ctx: 1 +1801 3.775561800 22 2 113454 1 32 0 Response: call_id: 113454, Fragment: Single, Ctx: 1 +1803 3.775863700 22 0 113455 0 1 60 0 Request: call_id: 113455, Fragment: Single, opnum: 1, Ctx: 0 +1805 3.776045400 22 2 113455 0 44 0 Response: call_id: 113455, Fragment: Single, Ctx: 0 +1811 3.778212900 22 0 113456 0 0 40 0 Request: call_id: 113456, Fragment: Single, opnum: 0, Ctx: 0 +1813 3.778390700 22 2 113456 0 44 0 Response: call_id: 113456, Fragment: Single, Ctx: 0 +1815 3.778598100 22 0 113457 1 0 104 0 Request: call_id: 113457, Fragment: Single, opnum: 0, Ctx: 1 +1817 3.778853000 22 2 113457 1 28 0 Response: call_id: 113457, Fragment: Single, Ctx: 1 +1819 3.779038100 22 0 113458 1 2 60 0 Request: call_id: 113458, Fragment: Single, opnum: 2, Ctx: 1 +1821 3.779263100 22 2 113458 1 92 0 Response: call_id: 113458, Fragment: Single, Ctx: 1 +1823 3.779537400 22 0 113459 1 3 128 0 Request: call_id: 113459, Fragment: Single, opnum: 3, Ctx: 1 +1825 3.779924700 22 2 113459 1 32 0 Response: call_id: 113459, Fragment: Single, Ctx: 1 +1827 3.780117600 22 0 113460 1 3 132 0 Request: call_id: 113460, Fragment: Single, opnum: 3, Ctx: 1 +1829 3.780348600 22 2 113460 1 32 0 Response: call_id: 113460, Fragment: Single, Ctx: 1 +1831 3.780553400 22 0 113461 1 3 126 0 Request: call_id: 113461, Fragment: Single, opnum: 3, Ctx: 1 +1833 3.780758300 22 2 113461 1 32 0 Response: call_id: 113461, Fragment: Single, Ctx: 1 +1835 3.780934200 22 0 113462 1 3 128 0 Request: call_id: 113462, Fragment: Single, opnum: 3, Ctx: 1 +1837 3.781139200 22 2 113462 1 32 0 Response: call_id: 113462, Fragment: Single, Ctx: 1 +1839 3.781313000 22 0 113463 1 3 138 0 Request: call_id: 113463, Fragment: Single, opnum: 3, Ctx: 1 +1841 3.781552900 22 2 113463 1 32 0 Response: call_id: 113463, Fragment: Single, Ctx: 1 +1843 3.781713700 22 0 113464 1 3 138 0 Request: call_id: 113464, Fragment: Single, opnum: 3, Ctx: 1 +1845 3.781919200 22 2 113464 1 32 0 Response: call_id: 113464, Fragment: Single, Ctx: 1 +1847 3.782095200 22 0 113465 1 3 150 0 Request: call_id: 113465, Fragment: Single, opnum: 3, Ctx: 1 +1849 3.782299100 22 2 113465 1 32 0 Response: call_id: 113465, Fragment: Single, Ctx: 1 +1851 3.782474000 22 0 113466 1 3 124 0 Request: call_id: 113466, Fragment: Single, opnum: 3, Ctx: 1 +1853 3.782747000 22 2 113466 1 32 0 Response: call_id: 113466, Fragment: Single, Ctx: 1 +1855 3.782927300 22 0 113467 1 3 138 0 Request: call_id: 113467, Fragment: Single, opnum: 3, Ctx: 1 +1857 3.783131900 22 2 113467 1 32 0 Response: call_id: 113467, Fragment: Single, Ctx: 1 +1859 3.783316400 22 0 113468 1 3 136 0 Request: call_id: 113468, Fragment: Single, opnum: 3, Ctx: 1 +1861 3.783562800 22 2 113468 1 32 0 Response: call_id: 113468, Fragment: Single, Ctx: 1 +1863 3.783700400 22 0 113469 1 3 134 0 Request: call_id: 113469, Fragment: Single, opnum: 3, Ctx: 1 +1865 3.783909900 22 2 113469 1 32 0 Response: call_id: 113469, Fragment: Single, Ctx: 1 +1867 3.784094800 22 0 113470 1 3 138 0 Request: call_id: 113470, Fragment: Single, opnum: 3, Ctx: 1 +1869 3.784302100 22 2 113470 1 32 0 Response: call_id: 113470, Fragment: Single, Ctx: 1 +1871 3.786527200 22 0 113471 0 1 60 0 Request: call_id: 113471, Fragment: Single, opnum: 1, Ctx: 0 +1873 3.786701200 22 2 113471 0 44 0 Response: call_id: 113471, Fragment: Single, Ctx: 0 +3464 8.762041300 11 0 82 0 0 40 0 Request: call_id: 82, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3466 8.762302900 11 2 82 0 0 44 0 Response: call_id: 82, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3468 8.762507200 11 0 83 1 0 100 0 Request: call_id: 83, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3470 8.764407200 11 2 83 1 0 28 0 Response: call_id: 83, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3472 8.764576800 11 0 84 1 2 60 0 Request: call_id: 84, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3474 8.764793800 11 2 84 1 2 92 0 Response: call_id: 84, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3476 8.765039100 11 0 85 1 3 124 0 Request: call_id: 85, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3478 8.765265800 11 2 85 1 3 32 0 Response: call_id: 85, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3480 8.765427700 11 0 86 1 3 128 0 Request: call_id: 86, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3482 8.765610000 11 2 86 1 3 32 0 Response: call_id: 86, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3484 8.765792900 11 0 87 1 3 122 0 Request: call_id: 87, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3486 8.765975100 11 2 87 1 3 32 0 Response: call_id: 87, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3488 8.766134200 11 0 88 1 3 124 0 Request: call_id: 88, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3490 8.766316300 11 2 88 1 3 32 0 Response: call_id: 88, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3492 8.766475300 11 0 89 1 3 134 0 Request: call_id: 89, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3494 8.766662400 11 2 89 1 3 32 0 Response: call_id: 89, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3496 8.766863500 11 0 90 1 3 134 0 Request: call_id: 90, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3498 8.767047000 11 2 90 1 3 32 0 Response: call_id: 90, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3500 8.767202500 11 0 91 1 3 146 0 Request: call_id: 91, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3502 8.767381800 11 2 91 1 3 32 0 Response: call_id: 91, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3504 8.767548800 11 0 92 1 3 120 0 Request: call_id: 92, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3506 8.767756900 11 2 92 1 3 32 0 Response: call_id: 92, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3508 8.767923500 11 0 93 1 3 134 0 Request: call_id: 93, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3510 8.768114000 11 2 93 1 3 32 0 Response: call_id: 93, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3512 8.768269900 11 0 94 1 3 132 0 Request: call_id: 94, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3514 8.768446300 11 2 94 1 3 32 0 Response: call_id: 94, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3516 8.768600000 11 0 95 1 3 130 0 Request: call_id: 95, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3518 8.768802200 11 2 95 1 3 32 0 Response: call_id: 95, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3520 8.769034100 11 0 96 1 3 144 0 Request: call_id: 96, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3522 8.769218200 11 2 96 1 3 32 0 Response: call_id: 96, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3524 8.769383600 11 0 97 1 3 148 0 Request: call_id: 97, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3526 8.769561400 11 2 97 1 3 32 0 Response: call_id: 97, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3528 8.769756000 11 0 98 1 3 146 0 Request: call_id: 98, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3530 8.769934200 11 2 98 1 3 32 0 Response: call_id: 98, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3532 8.770165100 11 0 99 1 3 158 0 Request: call_id: 99, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3534 8.770347500 11 2 99 1 3 32 0 Response: call_id: 99, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3560 8.840970500 11 0 100 0 0 40 0 Request: call_id: 100, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3562 8.841182200 11 2 100 0 0 44 0 Response: call_id: 100, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3564 8.841436100 11 0 101 1 0 84 0 Request: call_id: 101, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3566 8.843248700 11 2 101 1 0 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3568 8.843497800 11 0 102 1 2 60 0 Request: call_id: 102, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3570 8.843685800 11 2 102 1 2 92 0 Response: call_id: 102, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3572 8.843947700 11 0 103 1 3 108 0 Request: call_id: 103, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3574 8.844169400 11 2 103 1 3 32 0 Response: call_id: 103, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3576 8.844403600 11 0 104 1 3 112 0 Request: call_id: 104, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3578 8.844589400 11 2 104 1 3 32 0 Response: call_id: 104, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3580 8.844790800 11 0 105 1 3 106 0 Request: call_id: 105, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3582 8.844980400 11 2 105 1 3 32 0 Response: call_id: 105, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3584 8.845152800 11 0 106 1 3 108 0 Request: call_id: 106, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3586 8.845354900 11 2 106 1 3 32 0 Response: call_id: 106, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3588 8.845516000 11 0 107 1 3 118 0 Request: call_id: 107, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3590 8.845749700 11 2 107 1 3 32 0 Response: call_id: 107, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3592 8.845918600 11 0 108 1 3 118 0 Request: call_id: 108, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3594 8.846093800 11 2 108 1 3 32 0 Response: call_id: 108, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3596 8.846257700 11 0 109 1 3 130 0 Request: call_id: 109, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3598 8.846507200 11 2 109 1 3 32 0 Response: call_id: 109, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3600 8.846669300 11 0 110 1 3 104 0 Request: call_id: 110, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3602 8.846840800 11 2 110 1 3 32 0 Response: call_id: 110, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3604 8.847002800 11 0 111 1 3 118 0 Request: call_id: 111, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3606 8.847175800 11 2 111 1 3 32 0 Response: call_id: 111, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3608 8.847362500 11 0 112 1 3 116 0 Request: call_id: 112, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3610 8.847537500 11 2 112 1 3 32 0 Response: call_id: 112, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3612 8.847724800 11 0 113 1 3 114 0 Request: call_id: 113, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3614 8.847907400 11 2 113 1 3 32 0 Response: call_id: 113, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3616 8.848518900 11 0 114 1 3 128 0 Request: call_id: 114, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3618 8.848683600 11 2 114 1 3 32 0 Response: call_id: 114, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3620 8.848914800 11 0 115 1 3 120 0 Request: call_id: 115, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3622 8.849090900 11 2 115 1 3 32 0 Response: call_id: 115, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3624 8.849322200 11 0 116 1 3 120 0 Request: call_id: 116, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3626 8.849492300 11 2 116 1 3 32 0 Response: call_id: 116, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3628 8.849729500 11 0 117 1 3 122 0 Request: call_id: 117, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3630 8.849903200 11 2 117 1 3 32 0 Response: call_id: 117, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3632 8.850115300 11 0 118 1 3 134 0 Request: call_id: 118, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3634 8.850308900 11 2 118 1 3 32 0 Response: call_id: 118, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3636 8.850515300 11 0 119 1 3 132 0 Request: call_id: 119, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3638 8.850677100 11 2 119 1 3 32 0 Response: call_id: 119, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3640 8.850874200 11 0 120 1 3 130 0 Request: call_id: 120, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3642 8.851038500 11 2 120 1 3 32 0 Response: call_id: 120, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3644 8.851239100 11 0 121 1 3 138 0 Request: call_id: 121, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3646 8.851561000 11 2 121 1 3 32 0 Response: call_id: 121, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3648 8.851767900 11 0 122 1 3 144 0 Request: call_id: 122, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3650 8.851947500 11 2 122 1 3 32 0 Response: call_id: 122, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3652 8.852192700 11 0 123 1 3 144 0 Request: call_id: 123, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3654 8.852412200 11 2 123 1 3 32 0 Response: call_id: 123, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3656 8.852632700 11 0 124 1 3 116 0 Request: call_id: 124, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3658 8.852806300 11 2 124 1 3 32 0 Response: call_id: 124, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3660 8.853000900 11 0 125 1 3 130 0 Request: call_id: 125, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3662 8.853209800 11 2 125 1 3 32 0 Response: call_id: 125, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3664 8.853483400 11 0 126 1 3 138 0 Request: call_id: 126, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3666 8.853743400 11 2 126 1 3 32 0 Response: call_id: 126, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3668 8.853975400 11 0 127 1 3 130 0 Request: call_id: 127, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3670 8.854169600 11 2 127 1 3 32 0 Response: call_id: 127, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3672 8.854396100 11 0 128 1 3 122 0 Request: call_id: 128, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3674 8.854555800 11 2 128 1 3 32 0 Response: call_id: 128, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3676 8.854751800 11 0 129 1 3 122 0 Request: call_id: 129, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3678 8.854918100 11 2 129 1 3 32 0 Response: call_id: 129, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3680 8.855118700 11 0 130 1 3 134 0 Request: call_id: 130, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3682 8.855830600 11 2 130 1 3 32 0 Response: call_id: 130, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3684 8.856037900 11 0 131 1 3 128 0 Request: call_id: 131, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3686 8.856205600 11 2 131 1 3 32 0 Response: call_id: 131, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3688 8.856433500 11 0 132 1 3 124 0 Request: call_id: 132, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3690 8.856588500 11 2 132 1 3 32 0 Response: call_id: 132, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3722 8.888355300 11 0 133 1 5 516 0 Request: call_id: 133, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3724 8.888584500 11 2 133 1 5 28 0 Response: call_id: 133, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3747 8.924221800 11 0 134 0 0 40 0 Request: call_id: 134, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3749 8.924589800 11 2 134 0 0 44 0 Response: call_id: 134, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3751 8.924797600 11 0 135 1 0 112 0 Request: call_id: 135, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3753 8.926613500 11 2 135 1 0 28 0 Response: call_id: 135, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3755 8.926789900 11 0 136 1 2 60 0 Request: call_id: 136, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3757 8.926996400 11 2 136 1 2 92 0 Response: call_id: 136, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3759 8.927241200 11 0 137 1 3 136 0 Request: call_id: 137, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3761 8.927460400 11 2 137 1 3 32 0 Response: call_id: 137, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3763 8.927623100 11 0 138 1 3 140 0 Request: call_id: 138, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3765 8.927795900 11 2 138 1 3 32 0 Response: call_id: 138, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3767 8.927957700 11 0 139 1 3 134 0 Request: call_id: 139, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3769 8.928126600 11 2 139 1 3 32 0 Response: call_id: 139, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3771 8.928288200 11 0 140 1 3 136 0 Request: call_id: 140, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3773 8.928458400 11 2 140 1 3 32 0 Response: call_id: 140, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3775 8.928617300 11 0 141 1 3 146 0 Request: call_id: 141, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3777 8.928783400 11 2 141 1 3 32 0 Response: call_id: 141, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3779 8.928945400 11 0 142 1 3 146 0 Request: call_id: 142, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3781 8.929112800 11 2 142 1 3 32 0 Response: call_id: 142, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3783 8.929274700 11 0 143 1 3 158 0 Request: call_id: 143, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3785 8.929495400 11 2 143 1 3 32 0 Response: call_id: 143, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3787 8.929692600 11 0 144 1 3 132 0 Request: call_id: 144, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3789 8.929860400 11 2 144 1 3 32 0 Response: call_id: 144, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3791 8.930022900 11 0 145 1 3 146 0 Request: call_id: 145, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3793 8.930190900 11 2 145 1 3 32 0 Response: call_id: 145, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3795 8.930380500 11 0 146 1 3 144 0 Request: call_id: 146, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3797 8.930537200 11 2 146 1 3 32 0 Response: call_id: 146, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3799 8.930704400 11 0 147 1 3 142 0 Request: call_id: 147, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3801 8.930872000 11 2 147 1 3 32 0 Response: call_id: 147, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3803 8.931080300 11 0 148 1 3 160 0 Request: call_id: 148, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3805 8.931246800 11 2 148 1 3 32 0 Response: call_id: 148, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3807 8.931440800 11 0 149 1 3 156 0 Request: call_id: 149, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3809 8.931609800 11 2 149 1 3 32 0 Response: call_id: 149, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3811 8.931800000 11 0 150 1 3 154 0 Request: call_id: 150, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3813 8.931968700 11 2 150 1 3 32 0 Response: call_id: 150, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3815 8.932150900 11 0 151 1 3 146 0 Request: call_id: 151, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3817 8.932323800 11 2 151 1 3 32 0 Response: call_id: 151, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3819 8.932543500 11 0 152 1 3 154 0 Request: call_id: 152, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3821 8.932714400 11 2 152 1 3 32 0 Response: call_id: 152, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3823 8.932888200 11 0 153 1 3 150 0 Request: call_id: 153, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3825 8.933122800 11 2 153 1 3 32 0 Response: call_id: 153, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3827 8.933294300 11 0 154 1 3 152 0 Request: call_id: 154, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3829 8.933678500 11 2 154 1 3 32 0 Response: call_id: 154, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3831 8.933845800 11 0 155 1 3 140 0 Request: call_id: 155, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3833 8.934010100 11 2 155 1 3 32 0 Response: call_id: 155, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3835 8.934264400 11 0 156 1 3 148 0 Request: call_id: 156, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3837 8.934479500 11 2 156 1 3 32 0 Response: call_id: 156, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3839 8.934646800 11 0 157 1 3 162 0 Request: call_id: 157, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3841 8.934811900 11 2 157 1 3 32 0 Response: call_id: 157, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3843 8.935020700 11 0 158 1 3 172 0 Request: call_id: 158, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3845 8.935260700 11 2 158 1 3 32 0 Response: call_id: 158, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3847 8.935447600 11 0 159 1 3 144 0 Request: call_id: 159, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3849 8.935611200 11 2 159 1 3 32 0 Response: call_id: 159, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3855 8.943212600 11 0 160 0 0 40 0 Request: call_id: 160, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3857 8.943402800 11 2 160 0 0 44 0 Response: call_id: 160, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3859 8.943596900 11 0 161 1 0 128 0 Request: call_id: 161, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3861 8.945136900 11 2 161 1 0 28 0 Response: call_id: 161, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3863 8.945345700 11 0 162 1 2 60 0 Request: call_id: 162, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3865 8.945509300 11 2 162 1 2 92 0 Response: call_id: 162, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3867 8.945761700 11 0 163 1 3 152 0 Request: call_id: 163, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3869 8.945961100 11 2 163 1 3 32 0 Response: call_id: 163, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3871 8.946132500 11 0 164 1 3 156 0 Request: call_id: 164, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3873 8.946305700 11 2 164 1 3 32 0 Response: call_id: 164, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3875 8.946490600 11 0 165 1 3 150 0 Request: call_id: 165, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3877 8.946663800 11 2 165 1 3 32 0 Response: call_id: 165, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3879 8.946825600 11 0 166 1 3 152 0 Request: call_id: 166, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3881 8.946997900 11 2 166 1 3 32 0 Response: call_id: 166, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3883 8.947159000 11 0 167 1 3 162 0 Request: call_id: 167, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3885 8.947354600 11 2 167 1 3 32 0 Response: call_id: 167, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3887 8.947504200 11 0 168 1 3 162 0 Request: call_id: 168, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3889 8.947672900 11 2 168 1 3 32 0 Response: call_id: 168, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3891 8.947833100 11 0 169 1 3 174 0 Request: call_id: 169, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3893 8.948004700 11 2 169 1 3 32 0 Response: call_id: 169, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3895 8.948167400 11 0 170 1 3 148 0 Request: call_id: 170, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3897 8.948362700 11 2 170 1 3 32 0 Response: call_id: 170, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3899 8.948515500 11 0 171 1 3 162 0 Request: call_id: 171, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3901 8.948684500 11 2 171 1 3 32 0 Response: call_id: 171, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3903 8.948845000 11 0 172 1 3 160 0 Request: call_id: 172, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3905 8.949014500 11 2 172 1 3 32 0 Response: call_id: 172, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3907 8.949242400 11 0 173 1 3 158 0 Request: call_id: 173, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3909 8.949482700 11 2 173 1 3 32 0 Response: call_id: 173, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3911 8.949721400 11 0 174 1 3 170 0 Request: call_id: 174, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3913 8.949895400 11 2 174 1 3 32 0 Response: call_id: 174, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3915 8.950091800 11 0 175 1 3 182 0 Request: call_id: 175, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3917 8.950267600 11 2 175 1 3 32 0 Response: call_id: 175, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3927 8.957679600 11 0 176 0 0 40 0 Request: call_id: 176, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3929 8.957874400 11 2 176 0 0 44 0 Response: call_id: 176, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3931 8.958066400 11 0 177 1 0 96 0 Request: call_id: 177, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3933 8.959707600 11 2 177 1 0 28 0 Response: call_id: 177, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3935 8.959945300 11 0 178 1 2 60 0 Request: call_id: 178, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3937 8.960148200 11 2 178 1 2 92 0 Response: call_id: 178, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3939 8.960428500 11 0 179 1 3 120 0 Request: call_id: 179, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3941 8.960597900 11 2 179 1 3 32 0 Response: call_id: 179, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3943 8.960799700 11 0 180 1 3 124 0 Request: call_id: 180, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3945 8.961004500 11 2 180 1 3 32 0 Response: call_id: 180, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3947 8.961178800 11 0 181 1 3 118 0 Request: call_id: 181, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3949 8.961374600 11 2 181 1 3 32 0 Response: call_id: 181, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3951 8.961539400 11 0 182 1 3 120 0 Request: call_id: 182, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3953 8.961701600 11 2 182 1 3 32 0 Response: call_id: 182, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3955 8.961860300 11 0 183 1 3 130 0 Request: call_id: 183, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3957 8.962025800 11 2 183 1 3 32 0 Response: call_id: 183, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3959 8.962180300 11 0 184 1 3 130 0 Request: call_id: 184, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3961 8.962369300 11 2 184 1 3 32 0 Response: call_id: 184, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3963 8.962818900 11 0 185 1 3 142 0 Request: call_id: 185, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3965 8.962983500 11 2 185 1 3 32 0 Response: call_id: 185, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3967 8.963141200 11 0 186 1 3 116 0 Request: call_id: 186, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3969 8.963303700 11 2 186 1 3 32 0 Response: call_id: 186, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3971 8.963665400 11 0 187 1 3 130 0 Request: call_id: 187, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3973 8.963841600 11 2 187 1 3 32 0 Response: call_id: 187, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3975 8.964067400 11 0 188 1 3 128 0 Request: call_id: 188, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3977 8.964249000 11 2 188 1 3 32 0 Response: call_id: 188, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3979 8.964534500 11 0 189 1 3 126 0 Request: call_id: 189, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3981 8.964727800 11 2 189 1 3 32 0 Response: call_id: 189, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3983 8.965032900 11 0 190 1 3 126 0 Request: call_id: 190, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3985 8.965211100 11 2 190 1 3 32 0 Response: call_id: 190, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3987 8.965458300 11 0 191 1 3 132 0 Request: call_id: 191, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3989 8.965633200 11 2 191 1 3 32 0 Response: call_id: 191, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3991 8.965847300 11 0 192 1 3 130 0 Request: call_id: 192, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3993 8.966034100 11 2 192 1 3 32 0 Response: call_id: 192, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3995 8.966250700 11 0 193 1 3 138 0 Request: call_id: 193, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3997 8.966476500 11 2 193 1 3 32 0 Response: call_id: 193, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3999 8.966693100 11 0 194 1 3 136 0 Request: call_id: 194, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4001 8.966870700 11 2 194 1 3 32 0 Response: call_id: 194, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4003 8.967085900 11 0 195 1 3 132 0 Request: call_id: 195, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4005 8.967264300 11 2 195 1 3 32 0 Response: call_id: 195, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4007 8.967569400 11 0 196 1 3 142 0 Request: call_id: 196, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4009 8.967745600 11 2 196 1 3 32 0 Response: call_id: 196, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4011 8.967968500 11 0 197 1 3 148 0 Request: call_id: 197, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4013 8.968143300 11 2 197 1 3 32 0 Response: call_id: 197, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4029 9.007699200 11 0 198 1 5 290 0 Request: call_id: 198, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4031 9.007973500 11 2 198 1 5 28 0 Response: call_id: 198, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4068 9.084316000 11 0 199 1 5 206 0 Request: call_id: 199, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4070 9.084758900 11 2 199 1 5 28 0 Response: call_id: 199, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +6775 18.393181300 60 0 97 1 5 242 0 Request: call_id: 97, Fragment: Single, opnum: 5, Ctx: 1 +6777 18.393545000 60 2 97 1 28 0 Response: call_id: 97, Fragment: Single, Ctx: 1 diff --git a/captures/016-loopback-write-test-int-advised/dumpcap.stderr.txt b/captures/016-loopback-write-test-int-advised/dumpcap.stderr.txt new file mode 100644 index 0000000..43a681f --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\016-loopback-write-test-int-advised\loopback.pcapng diff --git a/captures/016-loopback-write-test-int-advised/dumpcap.stdout.txt b/captures/016-loopback-write-test-int-advised/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/016-loopback-write-test-int-advised/exit.txt b/captures/016-loopback-write-test-int-advised/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/016-loopback-write-test-int-advised/harness.log b/captures/016-loopback-write-test-int-advised/harness.log new file mode 100644 index 0000000..b028017 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/harness.log @@ -0,0 +1,18 @@ +2026-04-25T05:13:49.5609148+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-016-loopback-write-test-int-advised","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"99","UserId":1,"WriteDelayMilliseconds":1200,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:13:56.4570955+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-016-loopback-write-test-int-advised"} +2026-04-25T05:13:56.8176580+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:13:56.8176580+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:13:56.8196568+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:13:56.8196568+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:13:56.8216790+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:13:57.0731940+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:13:58.0479762+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"UserId":1} +2026-04-25T05:13:58.0489758+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:13:58.2561934+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:14:06.0742226+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:14:06.0752225+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:14:06.0752225+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:14:06.0752225+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:14:06.0752225+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:14:10.0311944+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:14:10.0361785+00:00 harness.stop {} diff --git a/captures/016-loopback-write-test-int-advised/loopback.pcapng b/captures/016-loopback-write-test-int-advised/loopback.pcapng new file mode 100644 index 0000000..805dddd Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/loopback.pcapng differ diff --git a/captures/016-loopback-write-test-int-advised/mixed-stream-57415-to-57433.tsv b/captures/016-loopback-write-test-int-advised/mixed-stream-57415-to-57433.tsv new file mode 100644 index 0000000..30c04fe --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/mixed-stream-57415-to-57433.tsv @@ -0,0 +1,1257 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 26 704208 0 26 704208 0 1a 00 00 00 d0 be 0a 00 00 00 00 00 ............ +1 0x0000000c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 119472128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2 0x00000026 control 12 -1 695688 0 -1 695688 0 ff ff ff ff 88 9d 0a 00 00 00 00 00 ............ +3 0x00000032 control 12 34 704209 0 34 704209 0 22 00 00 00 d1 be 0a 00 00 00 00 00 """..........." +4 0x0000003e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 3670016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 38 00 02 00 00 00 00 00 d2 e9 0e c3 9d 01 00 00 .....!...o3.......8............... +5 0x00000060 control 12 67 704210 0 67 704210 0 43 00 00 00 d2 be 0a 00 00 00 00 00 C........... +6 0x0000006c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 38 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 84 5b 4f 9a 81 a9 18 ?.....3...|8...........8.......=B.....&......... +7 0x000000af control 12 -1 695689 0 -1 695689 0 ff ff ff ff 89 9d 0a 00 00 00 00 00 ............ +8 0x000000bb control 12 30 704211 0 30 704211 0 1e 00 00 00 d3 be 0a 00 00 00 00 00 ............ +9 0x000000c7 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 119603200 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +10 0x000000e5 control 12 -1 695690 0 -1 695690 0 ff ff ff ff 8a 9d 0a 00 00 00 00 00 ............ +11 0x000000f1 control 12 26 704212 0 26 704212 0 1a 00 00 00 d4 be 0a 00 00 00 00 00 ............ +12 0x000000fd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 119734272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 07 1f 00 00 00 00 00 ....T.c@.^1@......#....... +13 0x00000117 control 12 -1 695691 0 -1 695691 0 ff ff ff ff 8b 9d 0a 00 00 00 00 00 ............ +14 0x00000123 control 12 26 704213 0 26 704213 0 1a 00 00 00 d5 be 0a 00 00 00 00 00 ............ +15 0x0000012f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 119865344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 07 1f 00 00 00 00 00 ....T.c@.^1@......%....... +16 0x00000149 control 12 -1 695692 0 -1 695692 0 ff ff ff ff 8c 9d 0a 00 00 00 00 00 ............ +17 0x00000155 control 12 26 704214 0 26 704214 0 1a 00 00 00 d6 be 0a 00 00 00 00 00 ............ +18 0x00000161 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 119996416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 07 1f 00 00 00 00 00 ....T.c@.^1@......'....... +19 0x0000017b control 12 -1 695693 0 -1 695693 0 ff ff ff ff 8d 9d 0a 00 00 00 00 00 ............ +20 0x00000187 control 12 101 704215 0 101 704215 0 65 00 00 00 d7 be 0a 00 00 00 00 00 e........... +21 0x00000193 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 3735552 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 39 00 02 00 00 00 00 00 02 eb 0e c3 9d 01 00 00 .....!...o3.......9............... +22 0x000001b5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 39 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 90 a8 82 61 9a 81 a9 18 ?.....3...|8...........9.......=B.....&......... +23 0x000001f8 control 12 -1 695694 0 -1 695694 0 ff ff ff ff 8e 9d 0a 00 00 00 00 00 ............ +24 0x00000204 control 12 30 704216 0 30 704216 0 1e 00 00 00 d8 be 0a 00 00 00 00 00 ............ +25 0x00000210 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 120127488 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +26 0x0000022e control 12 -1 695695 0 -1 695695 0 ff ff ff ff 8f 9d 0a 00 00 00 00 00 ............ +27 0x0000023a control 12 26 704217 0 26 704217 0 1a 00 00 00 d9 be 0a 00 00 00 00 00 ............ +28 0x00000246 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 120258560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 07 1f 00 00 00 00 00 ....T.c@.^1@......+....... +29 0x00000260 control 12 -1 695696 0 -1 695696 0 ff ff ff ff 90 9d 0a 00 00 00 00 00 ............ +30 0x0000026c control 12 -2 79989 79971 -2 79989 79971 fe ff ff ff 75 38 01 00 63 38 01 00 ....u8..c8.. +31 0x00000278 control 12 26 704218 0 26 704218 0 1a 00 00 00 da be 0a 00 00 00 00 00 ............ +32 0x00000284 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 120389632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 07 1f 00 00 00 00 00 ....T.c@.^1@......-....... +33 0x0000029e control 12 -1 695697 0 -1 695697 0 ff ff ff ff 91 9d 0a 00 00 00 00 00 ............ +34 0x000002aa control 12 26 704219 0 26 704219 0 1a 00 00 00 db be 0a 00 00 00 00 00 ............ +35 0x000002b6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 120520704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 07 1f 00 00 00 00 00 ....T.c@.^1@....../....... +36 0x000002d0 control 12 -1 695698 0 -1 695698 0 ff ff ff ff 92 9d 0a 00 00 00 00 00 ............ +37 0x000002dc control 12 34 704220 0 34 704220 0 22 00 00 00 dc be 0a 00 00 00 00 00 """..........." +38 0x000002e8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 3801088 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3a 00 02 00 00 00 00 00 31 ec 0e c3 9d 01 00 00 .....!...o3.......:.......1....... +39 0x0000030a control 12 67 704221 0 67 704221 0 43 00 00 00 dd be 0a 00 00 00 00 00 C........... +40 0x00000316 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3a 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 c0 8c 73 9a 81 a9 18 ?.....3...|8...........:.......=B.....&......... +41 0x00000359 control 12 -1 695699 0 -1 695699 0 ff ff ff ff 93 9d 0a 00 00 00 00 00 ............ +42 0x00000365 control 12 30 704222 0 30 704222 0 1e 00 00 00 de be 0a 00 00 00 00 00 ............ +43 0x00000371 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 120651776 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +44 0x0000038f control 12 -1 695700 0 -1 695700 0 ff ff ff ff 94 9d 0a 00 00 00 00 00 ............ +45 0x0000039b control 12 26 704223 0 26 704223 0 1a 00 00 00 df be 0a 00 00 00 00 00 ............ +46 0x000003a7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 120782848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 07 1f 00 00 00 00 00 ....T.c@.^1@......3....... +47 0x000003c1 control 12 -1 695701 0 -1 695701 0 ff ff ff ff 95 9d 0a 00 00 00 00 00 ............ +48 0x000003cd control 12 26 704224 0 26 704224 0 1a 00 00 00 e0 be 0a 00 00 00 00 00 ............ +49 0x000003d9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 120913920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 07 1f 00 00 00 00 00 ....T.c@.^1@......5....... +50 0x000003f3 control 12 -1 695702 0 -1 695702 0 ff ff ff ff 96 9d 0a 00 00 00 00 00 ............ +51 0x000003ff control 12 26 704225 0 26 704225 0 1a 00 00 00 e1 be 0a 00 00 00 00 00 ............ +52 0x0000040b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 121044992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 07 1f 00 00 00 00 00 ....T.c@.^1@......7....... +53 0x00000425 control 12 -1 695703 0 -1 695703 0 ff ff ff ff 97 9d 0a 00 00 00 00 00 ............ +54 0x00000431 control 12 -2 79990 79972 -2 79990 79972 fe ff ff ff 76 38 01 00 64 38 01 00 ....v8..d8.. +55 0x0000043d control 12 101 704226 0 101 704226 0 65 00 00 00 e2 be 0a 00 00 00 00 00 e........... +56 0x00000449 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 3866624 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3b 00 02 00 00 00 00 00 63 ed 0e c3 9d 01 00 00 .....!...o3.......;.......c....... +57 0x0000046b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3b 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b0 92 bd 85 9a 81 a9 18 ?.....3...|8...........;.......=B.....&......... +58 0x000004ae control 12 -1 695704 0 -1 695704 0 ff ff ff ff 98 9d 0a 00 00 00 00 00 ............ +59 0x000004ba control 12 30 704227 0 30 704227 0 1e 00 00 00 e3 be 0a 00 00 00 00 00 ............ +60 0x000004c6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 121176064 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +61 0x000004e4 control 12 -1 695705 0 -1 695705 0 ff ff ff ff 99 9d 0a 00 00 00 00 00 ............ +62 0x000004f0 control 12 26 704228 0 26 704228 0 1a 00 00 00 e4 be 0a 00 00 00 00 00 ............ +63 0x000004fc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 121307136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 07 1f 00 00 00 00 00 ....T.c@.^1@......;....... +64 0x00000516 control 12 -1 695706 0 -1 695706 0 ff ff ff ff 9a 9d 0a 00 00 00 00 00 ............ +65 0x00000522 control 12 26 704229 0 26 704229 0 1a 00 00 00 e5 be 0a 00 00 00 00 00 ............ +66 0x0000052e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 121438208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 07 1f 00 00 00 00 00 ....T.c@.^1@......=....... +67 0x00000548 control 12 -1 695707 0 -1 695707 0 ff ff ff ff 9b 9d 0a 00 00 00 00 00 ............ +68 0x00000554 control 12 101 704230 0 101 704230 0 65 00 00 00 e6 be 0a 00 00 00 00 00 e........... +69 0x00000560 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 3932160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3c 00 02 00 00 00 00 00 92 ee 0e c3 9d 01 00 00 .....!...o3.......<............... +70 0x00000582 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3c 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ac 21 da 97 9a 81 a9 18 ?.....3...|8...........<.......=B.....&......... +71 0x000005c5 control 12 26 704231 0 26 704231 0 1a 00 00 00 e7 be 0a 00 00 00 00 00 ............ +72 0x000005d1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 121569280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 07 1f 00 00 00 00 00 ....T.c@.^1@......?....... +73 0x000005eb control 12 -1 695708 0 -1 695708 0 ff ff ff ff 9c 9d 0a 00 00 00 00 00 ............ +74 0x000005f7 control 12 30 704232 0 30 704232 0 1e 00 00 00 e8 be 0a 00 00 00 00 00 ............ +75 0x00000603 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 121700352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +76 0x00000621 control 12 -1 695709 0 -1 695709 0 ff ff ff ff 9d 9d 0a 00 00 00 00 00 ............ +77 0x0000062d control 12 -1 695710 0 -1 695710 0 ff ff ff ff 9e 9d 0a 00 00 00 00 00 ............ +78 0x00000639 control 12 26 704233 0 26 704233 0 1a 00 00 00 e9 be 0a 00 00 00 00 00 ............ +79 0x00000645 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 121831424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 07 1f 00 00 00 00 00 ....T.c@.^1@......C....... +80 0x0000065f control 12 -1 695711 0 -1 695711 0 ff ff ff ff 9f 9d 0a 00 00 00 00 00 ............ +81 0x0000066b control 12 -2 79991 79973 -2 79991 79973 fe ff ff ff 77 38 01 00 65 38 01 00 ....w8..e8.. +82 0x00000677 control 12 26 704234 0 26 704234 0 1a 00 00 00 ea be 0a 00 00 00 00 00 ............ +83 0x00000683 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 121962496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 07 1f 00 00 00 00 00 ....T.c@.^1@......E....... +84 0x0000069d control 12 -1 695712 0 -1 695712 0 ff ff ff ff a0 9d 0a 00 00 00 00 00 ............ +85 0x000006a9 control 12 101 704235 0 101 704235 0 65 00 00 00 eb be 0a 00 00 00 00 00 e........... +86 0x000006b5 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 3997696 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3d 00 02 00 00 00 00 00 c3 ef 0e c3 9d 01 00 00 .....!...o3.......=............... +87 0x000006d7 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3d 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 64 57 fd a9 9a 81 a9 18 ?.....3...|8...........=.......=B.....&......... +88 0x0000071a control 12 -1 695713 0 -1 695713 0 ff ff ff ff a1 9d 0a 00 00 00 00 00 ............ +89 0x00000726 control 12 30 704236 0 30 704236 0 1e 00 00 00 ec be 0a 00 00 00 00 00 ............ +90 0x00000732 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 122093568 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 47 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......G........... +91 0x00000750 control 12 -1 695714 0 -1 695714 0 ff ff ff ff a2 9d 0a 00 00 00 00 00 ............ +92 0x0000075c control 12 26 704237 0 26 704237 0 1a 00 00 00 ed be 0a 00 00 00 00 00 ............ +93 0x00000768 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 122224640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 07 1f 00 00 00 00 00 ....T.c@.^1@......I....... +94 0x00000782 control 12 -1 695715 0 -1 695715 0 ff ff ff ff a3 9d 0a 00 00 00 00 00 ............ +95 0x0000078e control 12 26 704238 0 26 704238 0 1a 00 00 00 ee be 0a 00 00 00 00 00 ............ +96 0x0000079a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 122355712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 07 1f 00 00 00 00 00 ....T.c@.^1@......K....... +97 0x000007b4 control 12 -1 695716 0 -1 695716 0 ff ff ff ff a4 9d 0a 00 00 00 00 00 ............ +98 0x000007c0 control 12 243 704239 0 243 704239 0 f3 00 00 00 ef be 0a 00 00 00 00 00 ............ +99 0x000007cc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 122486784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 07 1f 00 00 00 00 00 ....T.c@.^1@......M....... +100 0x000007e6 data 217 213 179453321 1317435846 179453321 1317435846 -65535 16842751 d5 00 00 00 89 3d b2 0a c6 79 86 4e 01 00 ff ff ff ff 00 01 00 00 00 05 00 00 00 4c 00 6f 00 63 00 61 00 6c 00 56 00 00 00 43 00 3a 00 2f 00 55 00 73 00 65 00 72 00 73 00 2f 00 64 00 6f 00 68 00 65 00 72 00 74 00 6a 00 32 00 2f 00 44 00 65 .....=...y.N...............L.o.c.a.l.V...C.:./.U +101 0x000008bf control 12 -1 695717 0 -1 695717 0 ff ff ff ff a5 9d 0a 00 00 00 00 00 ............ +102 0x000008cb control 12 -1 695718 0 -1 695718 0 ff ff ff ff a6 9d 0a 00 00 00 00 00 ............ +103 0x000008d7 control 12 -1 695719 0 -1 695719 0 ff ff ff ff a7 9d 0a 00 00 00 00 00 ............ +104 0x000008e3 control 12 -1 695720 0 -1 695720 0 ff ff ff ff a8 9d 0a 00 00 00 00 00 ............ +105 0x000008ef control 12 -1 695721 0 -1 695721 0 ff ff ff ff a9 9d 0a 00 00 00 00 00 ............ +106 0x000008fb control 12 -1 695722 0 -1 695722 0 ff ff ff ff aa 9d 0a 00 00 00 00 00 ............ +107 0x00000907 control 12 -1 695723 0 -1 695723 0 ff ff ff ff ab 9d 0a 00 00 00 00 00 ............ +108 0x00000913 control 12 -1 695724 0 -1 695724 0 ff ff ff ff ac 9d 0a 00 00 00 00 00 ............ +109 0x0000091f control 12 -1 695725 0 -1 695725 0 ff ff ff ff ad 9d 0a 00 00 00 00 00 ............ +110 0x0000092b control 12 -1 695726 0 -1 695726 0 ff ff ff ff ae 9d 0a 00 00 00 00 00 ............ +111 0x00000937 control 12 34 704240 0 34 704240 0 22 00 00 00 f0 be 0a 00 00 00 00 00 """..........." +112 0x00000943 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4063232 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3e 00 02 00 00 00 00 00 f3 f0 0e c3 9d 01 00 00 .....!...o3.......>............... +113 0x00000965 control 12 67 704241 0 67 704241 0 43 00 00 00 f1 be 0a 00 00 00 00 00 C........... +114 0x00000971 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc cf 25 bc 9a 81 a9 18 ?.....3...|8...........>.......=B.....&......... +115 0x000009b4 control 12 -1 695727 0 -1 695727 0 ff ff ff ff af 9d 0a 00 00 00 00 00 ............ +116 0x000009c0 control 12 30 704242 0 30 704242 0 1e 00 00 00 f2 be 0a 00 00 00 00 00 ............ +117 0x000009cc data 30 26 1660931669 1345985458 1660931669 1345985458 196609 122617856 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......O........... +118 0x000009ea control 12 -1 695728 0 -1 695728 0 ff ff ff ff b0 9d 0a 00 00 00 00 00 ............ +119 0x000009f6 control 12 26 704243 0 26 704243 0 1a 00 00 00 f3 be 0a 00 00 00 00 00 ............ +120 0x00000a02 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 122748928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 07 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +121 0x00000a1c control 12 -1 695729 0 -1 695729 0 ff ff ff ff b1 9d 0a 00 00 00 00 00 ............ +122 0x00000a28 control 12 -1 695730 0 -1 695730 0 ff ff ff ff b2 9d 0a 00 00 00 00 00 ............ +123 0x00000a34 control 12 -1 695731 0 -1 695731 0 ff ff ff ff b3 9d 0a 00 00 00 00 00 ............ +124 0x00000a40 control 12 -2 79992 79974 -2 79992 79974 fe ff ff ff 78 38 01 00 66 38 01 00 ....x8..f8.. +125 0x00000a4c control 12 26 704244 0 26 704244 0 1a 00 00 00 f4 be 0a 00 00 00 00 00 ............ +126 0x00000a58 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 122880000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 07 1f 00 00 00 00 00 ....T.c@.^1@......S....... +127 0x00000a72 control 12 -1 695732 0 -1 695732 0 ff ff ff ff b4 9d 0a 00 00 00 00 00 ............ +128 0x00000a7e control 12 26 704245 0 26 704245 0 1a 00 00 00 f5 be 0a 00 00 00 00 00 ............ +129 0x00000a8a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 123011072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 07 1f 00 00 00 00 00 ....T.c@.^1@......U....... +130 0x00000aa4 control 12 -1 695733 0 -1 695733 0 ff ff ff ff b5 9d 0a 00 00 00 00 00 ............ +131 0x00000ab0 control 12 -1 695734 0 -1 695734 0 ff ff ff ff b6 9d 0a 00 00 00 00 00 ............ +132 0x00000abc control 12 101 704246 0 101 704246 0 65 00 00 00 f6 be 0a 00 00 00 00 00 e........... +133 0x00000ac8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4128768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3f 00 02 00 00 00 00 00 26 f2 0e c3 9d 01 00 00 .....!...o3.......?.......&....... +134 0x00000aea data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3f 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 18 27 69 ce 9a 81 a9 18 ?.....3...|8...........?.......=B.....&......... +135 0x00000b2d control 12 -1 695735 0 -1 695735 0 ff ff ff ff b7 9d 0a 00 00 00 00 00 ............ +136 0x00000b39 control 12 30 704247 0 30 704247 0 1e 00 00 00 f7 be 0a 00 00 00 00 00 ............ +137 0x00000b45 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 123142144 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 57 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......W........... +138 0x00000b63 control 12 -1 695736 0 -1 695736 0 ff ff ff ff b8 9d 0a 00 00 00 00 00 ............ +139 0x00000b6f control 12 -1 695737 0 -1 695737 0 ff ff ff ff b9 9d 0a 00 00 00 00 00 ............ +140 0x00000b7b control 12 26 704248 0 26 704248 0 1a 00 00 00 f8 be 0a 00 00 00 00 00 ............ +141 0x00000b87 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 123273216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 07 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +142 0x00000ba1 control 12 -1 695738 0 -1 695738 0 ff ff ff ff ba 9d 0a 00 00 00 00 00 ............ +143 0x00000bad control 12 26 704249 0 26 704249 0 1a 00 00 00 f9 be 0a 00 00 00 00 00 ............ +144 0x00000bb9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 123404288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 07 1f 00 00 00 00 00 ....T.c@.^1@......[....... +145 0x00000bd3 control 12 -1 695739 0 -1 695739 0 ff ff ff ff bb 9d 0a 00 00 00 00 00 ............ +146 0x00000bdf control 12 -1 695740 0 -1 695740 0 ff ff ff ff bc 9d 0a 00 00 00 00 00 ............ +147 0x00000beb control 12 -1 695741 0 -1 695741 0 ff ff ff ff bd 9d 0a 00 00 00 00 00 ............ +148 0x00000bf7 control 12 26 704250 0 26 704250 0 1a 00 00 00 fa be 0a 00 00 00 00 00 ............ +149 0x00000c03 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 123535360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 07 1f 00 00 00 00 00 ....T.c@.^1@......]....... +150 0x00000c1d control 12 -1 695742 0 -1 695742 0 ff ff ff ff be 9d 0a 00 00 00 00 00 ............ +151 0x00000c29 control 12 -2 79993 79975 -2 79993 79975 fe ff ff ff 79 38 01 00 67 38 01 00 ....y8..g8.. +152 0x00000c35 control 12 34 704251 0 34 704251 0 22 00 00 00 fb be 0a 00 00 00 00 00 """..........." +153 0x00000c41 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4194304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 40 00 02 00 00 00 00 00 57 f3 0e c3 9d 01 00 00 .....!...o3.......@.......W....... +154 0x00000c63 control 12 67 704252 0 67 704252 0 43 00 00 00 fc be 0a 00 00 00 00 00 C........... +155 0x00000c6f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 40 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 53 9e e0 9a 81 a9 18 ?.....3...|8...........@.......=B.....&......... +156 0x00000cb2 control 12 -1 695743 0 -1 695743 0 ff ff ff ff bf 9d 0a 00 00 00 00 00 ............ +157 0x00000cbe control 12 30 704253 0 30 704253 0 1e 00 00 00 fd be 0a 00 00 00 00 00 ............ +158 0x00000cca data 30 26 1660931669 1345985458 1660931669 1345985458 196609 123666432 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......_........... +159 0x00000ce8 control 12 -1 695744 0 -1 695744 0 ff ff ff ff c0 9d 0a 00 00 00 00 00 ............ +160 0x00000cf4 control 12 -1 695745 0 -1 695745 0 ff ff ff ff c1 9d 0a 00 00 00 00 00 ............ +161 0x00000d00 control 12 26 704254 0 26 704254 0 1a 00 00 00 fe be 0a 00 00 00 00 00 ............ +162 0x00000d0c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 123797504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 07 1f 00 00 00 00 00 ....T.c@.^1@......a....... +163 0x00000d26 control 12 -1 695746 0 -1 695746 0 ff ff ff ff c2 9d 0a 00 00 00 00 00 ............ +164 0x00000d32 control 12 -1 695747 0 -1 695747 0 ff ff ff ff c3 9d 0a 00 00 00 00 00 ............ +165 0x00000d3e control 12 26 704255 0 26 704255 0 1a 00 00 00 ff be 0a 00 00 00 00 00 ............ +166 0x00000d4a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 123928576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 07 1f 00 00 00 00 00 ....T.c@.^1@......c....... +167 0x00000d64 control 12 -1 695748 0 -1 695748 0 ff ff ff ff c4 9d 0a 00 00 00 00 00 ............ +168 0x00000d70 control 12 26 704256 0 26 704256 0 1a 00 00 00 00 bf 0a 00 00 00 00 00 ............ +169 0x00000d7c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 124059648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 07 1f 00 00 00 00 00 ....T.c@.^1@......e....... +170 0x00000d96 control 12 -1 695749 0 -1 695749 0 ff ff ff ff c5 9d 0a 00 00 00 00 00 ............ +171 0x00000da2 control 12 34 704257 0 34 704257 0 22 00 00 00 01 bf 0a 00 00 00 00 00 """..........." +172 0x00000dae data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4259840 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 41 00 02 00 00 00 00 00 89 f4 0e c3 9d 01 00 00 .....!...o3.......A............... +173 0x00000dd0 control 12 67 704258 0 67 704258 0 43 00 00 00 02 bf 0a 00 00 00 00 00 C........... +174 0x00000ddc data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 41 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 d8 d4 f2 9a 81 a9 18 ?.....3...|8...........A.......=B.....&......... +175 0x00000e1f control 12 -1 695750 0 -1 695750 0 ff ff ff ff c6 9d 0a 00 00 00 00 00 ............ +176 0x00000e2b control 12 30 704259 0 30 704259 0 1e 00 00 00 03 bf 0a 00 00 00 00 00 ............ +177 0x00000e37 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 124190720 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 67 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......g........... +178 0x00000e55 control 12 -1 695751 0 -1 695751 0 ff ff ff ff c7 9d 0a 00 00 00 00 00 ............ +179 0x00000e61 control 12 26 704260 0 26 704260 0 1a 00 00 00 04 bf 0a 00 00 00 00 00 ............ +180 0x00000e6d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 124321792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 07 1f 00 00 00 00 00 ....T.c@.^1@......i....... +181 0x00000e87 control 12 -1 695752 0 -1 695752 0 ff ff ff ff c8 9d 0a 00 00 00 00 00 ............ +182 0x00000e93 control 12 26 704261 0 26 704261 0 1a 00 00 00 05 bf 0a 00 00 00 00 00 ............ +183 0x00000e9f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 124452864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 07 1f 00 00 00 00 00 ....T.c@.^1@......k....... +184 0x00000eb9 control 12 -1 695753 0 -1 695753 0 ff ff ff ff c9 9d 0a 00 00 00 00 00 ............ +185 0x00000ec5 control 12 -2 79994 79976 -2 79994 79976 fe ff ff ff 7a 38 01 00 68 38 01 00 ....z8..h8.. +186 0x00000ed1 control 12 -1 695754 0 -1 695754 0 ff ff ff ff ca 9d 0a 00 00 00 00 00 ............ +187 0x00000edd control 12 26 704262 0 26 704262 0 1a 00 00 00 06 bf 0a 00 00 00 00 00 ............ +188 0x00000ee9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 124583936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 07 1f 00 00 00 00 00 ....T.c@.^1@......m....... +189 0x00000f03 control 12 -1 695755 0 -1 695755 0 ff ff ff ff cb 9d 0a 00 00 00 00 00 ............ +190 0x00000f0f control 12 34 704263 0 34 704263 0 22 00 00 00 07 bf 0a 00 00 00 00 00 """..........." +191 0x00000f1b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4325376 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 42 00 02 00 00 00 00 00 b8 f5 0e c3 9d 01 00 00 .....!...o3.......B............... +192 0x00000f3d control 12 67 704264 0 67 704264 0 43 00 00 00 08 bf 0a 00 00 00 00 00 C........... +193 0x00000f49 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 42 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c 38 eb 04 9b 81 a9 18 ?.....3...|8...........B.......=B.....&......... +194 0x00000f8c control 12 -1 695756 0 -1 695756 0 ff ff ff ff cc 9d 0a 00 00 00 00 00 ............ +195 0x00000f98 control 12 30 704265 0 30 704265 0 1e 00 00 00 09 bf 0a 00 00 00 00 00 ............ +196 0x00000fa4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 124715008 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......o........... +197 0x00000fc2 control 12 -1 695757 0 -1 695757 0 ff ff ff ff cd 9d 0a 00 00 00 00 00 ............ +198 0x00000fce control 12 26 704266 0 26 704266 0 1a 00 00 00 0a bf 0a 00 00 00 00 00 ............ +199 0x00000fda data 26 22 1080266580 1076977378 1080266580 1076977378 196609 124846080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 07 1f 00 00 00 00 00 ....T.c@.^1@......q....... +200 0x00000ff4 control 12 -1 695758 0 -1 695758 0 ff ff ff ff ce 9d 0a 00 00 00 00 00 ............ +201 0x00001000 control 12 -1 695759 0 -1 695759 0 ff ff ff ff cf 9d 0a 00 00 00 00 00 ............ +202 0x0000100c control 12 -1 695760 0 -1 695760 0 ff ff ff ff d0 9d 0a 00 00 00 00 00 ............ +203 0x00001018 control 12 26 704267 0 26 704267 0 1a 00 00 00 0b bf 0a 00 00 00 00 00 ............ +204 0x00001024 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 124977152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 07 1f 00 00 00 00 00 ....T.c@.^1@......s....... +205 0x0000103e control 12 -1 695761 0 -1 695761 0 ff ff ff ff d1 9d 0a 00 00 00 00 00 ............ +206 0x0000104a control 12 26 704268 0 26 704268 0 1a 00 00 00 0c bf 0a 00 00 00 00 00 ............ +207 0x00001056 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 125108224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 07 1f 00 00 00 00 00 ....T.c@.^1@......u....... +208 0x00001070 control 12 -1 695762 0 -1 695762 0 ff ff ff ff d2 9d 0a 00 00 00 00 00 ............ +209 0x0000107c control 12 101 704269 0 101 704269 0 65 00 00 00 0d bf 0a 00 00 00 00 00 e........... +210 0x00001088 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4390912 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 43 00 02 00 00 00 00 00 e9 f6 0e c3 9d 01 00 00 .....!...o3.......C............... +211 0x000010aa data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 43 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 50 9c 0e 17 9b 81 a9 18 ?.....3...|8...........C.......=B.....&......... +212 0x000010ed control 12 -1 695763 0 -1 695763 0 ff ff ff ff d3 9d 0a 00 00 00 00 00 ............ +213 0x000010f9 control 12 30 704270 0 30 704270 0 1e 00 00 00 0e bf 0a 00 00 00 00 00 ............ +214 0x00001105 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 125239296 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 77 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......w........... +215 0x00001123 control 12 -1 695764 0 -1 695764 0 ff ff ff ff d4 9d 0a 00 00 00 00 00 ............ +216 0x0000112f control 12 26 704271 0 26 704271 0 1a 00 00 00 0f bf 0a 00 00 00 00 00 ............ +217 0x0000113b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 125370368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 07 1f 00 00 00 00 00 ....T.c@.^1@......y....... +218 0x00001155 control 12 -1 695765 0 -1 695765 0 ff ff ff ff d5 9d 0a 00 00 00 00 00 ............ +219 0x00001161 control 12 -2 79995 79977 -2 79995 79977 fe ff ff ff 7b 38 01 00 69 38 01 00 ....{8..i8.. +220 0x0000116d control 12 26 704272 0 26 704272 0 1a 00 00 00 10 bf 0a 00 00 00 00 00 ............ +221 0x00001179 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 125501440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 07 1f 00 00 00 00 00 ....T.c@.^1@......{....... +222 0x00001193 control 12 -1 695766 0 -1 695766 0 ff ff ff ff d6 9d 0a 00 00 00 00 00 ............ +223 0x0000119f control 12 26 704273 0 26 704273 0 1a 00 00 00 11 bf 0a 00 00 00 00 00 ............ +224 0x000011ab data 26 22 1080266580 1076977378 1080266580 1076977378 196609 125632512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 07 1f 00 00 00 00 00 ....T.c@.^1@......}....... +225 0x000011c5 control 12 -1 695767 0 -1 695767 0 ff ff ff ff d7 9d 0a 00 00 00 00 00 ............ +226 0x000011d1 control 12 34 704274 0 34 704274 0 22 00 00 00 12 bf 0a 00 00 00 00 00 """..........." +227 0x000011dd data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4456448 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 44 00 02 00 00 00 00 00 19 f8 0e c3 9d 01 00 00 .....!...o3.......D............... +228 0x000011ff control 12 67 704275 0 67 704275 0 43 00 00 00 13 bf 0a 00 00 00 00 00 C........... +229 0x0000120b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 44 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 10 c8 38 29 9b 81 a9 18 ?.....3...|8...........D.......=B.....&......... +230 0x0000124e control 12 -1 695768 0 -1 695768 0 ff ff ff ff d8 9d 0a 00 00 00 00 00 ............ +231 0x0000125a control 12 30 704276 0 30 704276 0 1e 00 00 00 14 bf 0a 00 00 00 00 00 ............ +232 0x00001266 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 125763584 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +233 0x00001284 control 12 -1 695769 0 -1 695769 0 ff ff ff ff d9 9d 0a 00 00 00 00 00 ............ +234 0x00001290 control 12 26 704277 0 26 704277 0 1a 00 00 00 15 bf 0a 00 00 00 00 00 ............ +235 0x0000129c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 125894656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +236 0x000012b6 control 12 -1 695770 0 -1 695770 0 ff ff ff ff da 9d 0a 00 00 00 00 00 ............ +237 0x000012c2 control 12 26 704278 0 26 704278 0 1a 00 00 00 16 bf 0a 00 00 00 00 00 ............ +238 0x000012ce data 26 22 1080266580 1076977378 1080266580 1076977378 196609 126025728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +239 0x000012e8 control 12 -1 695771 0 -1 695771 0 ff ff ff ff db 9d 0a 00 00 00 00 00 ............ +240 0x000012f4 control 12 -2 79996 79978 -2 79996 79978 fe ff ff ff 7c 38 01 00 6a 38 01 00 ....|8..j8.. +241 0x00001300 control 12 26 704279 0 26 704279 0 1a 00 00 00 17 bf 0a 00 00 00 00 00 ............ +242 0x0000130c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 126156800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +243 0x00001326 control 12 -1 695772 0 -1 695772 0 ff ff ff ff dc 9d 0a 00 00 00 00 00 ............ +244 0x00001332 control 12 101 704280 0 101 704280 0 65 00 00 00 18 bf 0a 00 00 00 00 00 e........... +245 0x0000133e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4521984 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 45 00 02 00 00 00 00 00 4b f9 0e c3 9d 01 00 00 .....!...o3.......E.......K....... +246 0x00001360 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 45 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 38 6a 3b 9b 81 a9 18 ?.....3...|8...........E.......=B.....&......... +247 0x000013a3 control 12 -1 695773 0 -1 695773 0 ff ff ff ff dd 9d 0a 00 00 00 00 00 ............ +248 0x000013af control 12 30 704281 0 30 704281 0 1e 00 00 00 19 bf 0a 00 00 00 00 00 ............ +249 0x000013bb data 30 26 1660931669 1345985458 1660931669 1345985458 196609 126287872 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 87 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +250 0x000013d9 control 12 -1 695774 0 -1 695774 0 ff ff ff ff de 9d 0a 00 00 00 00 00 ............ +251 0x000013e5 control 12 26 704282 0 26 704282 0 1a 00 00 00 1a bf 0a 00 00 00 00 00 ............ +252 0x000013f1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 126418944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +253 0x0000140b control 12 -1 695775 0 -1 695775 0 ff ff ff ff df 9d 0a 00 00 00 00 00 ............ +254 0x00001417 control 12 26 704283 0 26 704283 0 1a 00 00 00 1b bf 0a 00 00 00 00 00 ............ +255 0x00001423 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 126550016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +256 0x0000143d control 12 -1 695776 0 -1 695776 0 ff ff ff ff e0 9d 0a 00 00 00 00 00 ............ +257 0x00001449 control 12 26 704284 0 26 704284 0 1a 00 00 00 1c bf 0a 00 00 00 00 00 ............ +258 0x00001455 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 126681088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +259 0x0000146f control 12 -1 695777 0 -1 695777 0 ff ff ff ff e1 9d 0a 00 00 00 00 00 ............ +260 0x0000147b control 12 34 704285 0 34 704285 0 22 00 00 00 1d bf 0a 00 00 00 00 00 """..........." +261 0x00001487 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4587520 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 46 00 02 00 00 00 00 00 7b fa 0e c3 9d 01 00 00 .....!...o3.......F.......{....... +262 0x000014a9 control 12 67 704286 0 67 704286 0 43 00 00 00 1e bf 0a 00 00 00 00 00 C........... +263 0x000014b5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 46 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f4 7b 9f 4d 9b 81 a9 18 ?.....3...|8...........F.......=B.....&......... +264 0x000014f8 control 12 -1 695778 0 -1 695778 0 ff ff ff ff e2 9d 0a 00 00 00 00 00 ............ +265 0x00001504 control 12 30 704287 0 30 704287 0 1e 00 00 00 1f bf 0a 00 00 00 00 00 ............ +266 0x00001510 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 126812160 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +267 0x0000152e control 12 -1 695779 0 -1 695779 0 ff ff ff ff e3 9d 0a 00 00 00 00 00 ............ +268 0x0000153a control 12 26 704288 0 26 704288 0 1a 00 00 00 20 bf 0a 00 00 00 00 00 .... ....... +269 0x00001546 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 126943232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +270 0x00001560 control 12 -1 695780 0 -1 695780 0 ff ff ff ff e4 9d 0a 00 00 00 00 00 ............ +271 0x0000156c control 12 -2 79997 79979 -2 79997 79979 fe ff ff ff 7d 38 01 00 6b 38 01 00 ....}8..k8.. +272 0x00001578 control 12 26 704289 0 26 704289 0 1a 00 00 00 21 bf 0a 00 00 00 00 00 ....!....... +273 0x00001584 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 127074304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +274 0x0000159e control 12 -1 695781 0 -1 695781 0 ff ff ff ff e5 9d 0a 00 00 00 00 00 ............ +275 0x000015aa control 12 26 704290 0 26 704290 0 1a 00 00 00 22 bf 0a 00 00 00 00 00 "....""......." +276 0x000015b6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 127205376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +277 0x000015d0 control 12 -1 695782 0 -1 695782 0 ff ff ff ff e6 9d 0a 00 00 00 00 00 ............ +278 0x000015dc control 12 34 704291 0 34 704291 0 22 00 00 00 23 bf 0a 00 00 00 00 00 """...#......." +279 0x000015e8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4653056 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 47 00 02 00 00 00 00 00 ab fb 0e c3 9d 01 00 00 .....!...o3.......G............... +280 0x0000160a control 12 67 704292 0 67 704292 0 43 00 00 00 24 bf 0a 00 00 00 00 00 C...$....... +281 0x00001616 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 47 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 64 cc b3 5f 9b 81 a9 18 ?.....3...|8...........G.......=B.....&......... +282 0x00001659 control 12 -1 695783 0 -1 695783 0 ff ff ff ff e7 9d 0a 00 00 00 00 00 ............ +283 0x00001665 control 12 30 704293 0 30 704293 0 1e 00 00 00 25 bf 0a 00 00 00 00 00 ....%....... +284 0x00001671 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 127336448 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +285 0x0000168f control 12 -1 695784 0 -1 695784 0 ff ff ff ff e8 9d 0a 00 00 00 00 00 ............ +286 0x0000169b control 12 -1 695785 0 -1 695785 0 ff ff ff ff e9 9d 0a 00 00 00 00 00 ............ +287 0x000016a7 control 12 -1 695786 0 -1 695786 0 ff ff ff ff ea 9d 0a 00 00 00 00 00 ............ +288 0x000016b3 control 12 -1 695787 0 -1 695787 0 ff ff ff ff eb 9d 0a 00 00 00 00 00 ............ +289 0x000016bf control 12 26 704294 0 26 704294 0 1a 00 00 00 26 bf 0a 00 00 00 00 00 ....&....... +290 0x000016cb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 127467520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +291 0x000016e5 control 12 -1 695788 0 -1 695788 0 ff ff ff ff ec 9d 0a 00 00 00 00 00 ............ +292 0x000016f1 control 12 26 704295 0 26 704295 0 1a 00 00 00 27 bf 0a 00 00 00 00 00 ....'....... +293 0x000016fd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 127598592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +294 0x00001717 control 12 -1 695789 0 -1 695789 0 ff ff ff ff ed 9d 0a 00 00 00 00 00 ............ +295 0x00001723 control 12 26 704296 0 26 704296 0 1a 00 00 00 28 bf 0a 00 00 00 00 00 ....(....... +296 0x0000172f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 127729664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +297 0x00001749 control 12 -1 695790 0 -1 695790 0 ff ff ff ff ee 9d 0a 00 00 00 00 00 ............ +298 0x00001755 control 12 101 704297 0 101 704297 0 65 00 00 00 29 bf 0a 00 00 00 00 00 e...)....... +299 0x00001761 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4718592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 48 00 02 00 00 00 00 00 dc fc 0e c3 9d 01 00 00 .....!...o3.......H............... +300 0x00001783 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 48 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 4a ea 71 9b 81 a9 18 ?.....3...|8...........H.......=B.....&......... +301 0x000017c6 control 12 -1 695791 0 -1 695791 0 ff ff ff ff ef 9d 0a 00 00 00 00 00 ............ +302 0x000017d2 control 12 30 704298 0 30 704298 0 1e 00 00 00 2a bf 0a 00 00 00 00 00 ....*....... +303 0x000017de data 30 26 1660931669 1345985458 1660931669 1345985458 196609 127860736 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +304 0x000017fc control 12 -1 695792 0 -1 695792 0 ff ff ff ff f0 9d 0a 00 00 00 00 00 ............ +305 0x00001808 control 12 -2 79998 79980 -2 79998 79980 fe ff ff ff 7e 38 01 00 6c 38 01 00 ....~8..l8.. +306 0x00001814 control 12 26 704299 0 26 704299 0 1a 00 00 00 2b bf 0a 00 00 00 00 00 ....+....... +307 0x00001820 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 127991808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +308 0x0000183a control 12 -1 695793 0 -1 695793 0 ff ff ff ff f1 9d 0a 00 00 00 00 00 ............ +309 0x00001846 control 12 26 704300 0 26 704300 0 1a 00 00 00 2c bf 0a 00 00 00 00 00 ....,....... +310 0x00001852 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 128122880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +311 0x0000186c control 12 -1 695794 0 -1 695794 0 ff ff ff ff f2 9d 0a 00 00 00 00 00 ............ +312 0x00001878 control 12 26 704301 0 26 704301 0 1a 00 00 00 2d bf 0a 00 00 00 00 00 ....-....... +313 0x00001884 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 128253952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +314 0x0000189e control 12 -1 695795 0 -1 695795 0 ff ff ff ff f3 9d 0a 00 00 00 00 00 ............ +315 0x000018aa control 12 101 704302 0 101 704302 0 65 00 00 00 2e bf 0a 00 00 00 00 00 e........... +316 0x000018b6 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4784128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 49 00 02 00 00 00 00 00 0d fe 0e c3 9d 01 00 00 .....!...o3.......I............... +317 0x000018d8 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 49 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 8c 1a 84 9b 81 a9 18 ?.....3...|8...........I.......=B.....&......... +318 0x0000191b control 12 -1 695796 0 -1 695796 0 ff ff ff ff f4 9d 0a 00 00 00 00 00 ............ +319 0x00001927 control 12 30 704303 0 30 704303 0 1e 00 00 00 2f bf 0a 00 00 00 00 00 ..../....... +320 0x00001933 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 128385024 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +321 0x00001951 control 12 -1 695797 0 -1 695797 0 ff ff ff ff f5 9d 0a 00 00 00 00 00 ............ +322 0x0000195d control 12 26 704304 0 26 704304 0 1a 00 00 00 30 bf 0a 00 00 00 00 00 ....0....... +323 0x00001969 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 128516096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +324 0x00001983 control 12 -1 695798 0 -1 695798 0 ff ff ff ff f6 9d 0a 00 00 00 00 00 ............ +325 0x0000198f control 12 26 704305 0 26 704305 0 1a 00 00 00 31 bf 0a 00 00 00 00 00 ....1....... +326 0x0000199b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 128647168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +327 0x000019b5 control 12 -1 695799 0 -1 695799 0 ff ff ff ff f7 9d 0a 00 00 00 00 00 ............ +328 0x000019c1 control 12 -2 79999 79981 -2 79999 79981 fe ff ff ff 7f 38 01 00 6d 38 01 00 .....8..m8.. +329 0x000019cd control 12 26 704306 0 26 704306 0 1a 00 00 00 32 bf 0a 00 00 00 00 00 ....2....... +330 0x000019d9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 128778240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +331 0x000019f3 control 12 -1 695800 0 -1 695800 0 ff ff ff ff f8 9d 0a 00 00 00 00 00 ............ +332 0x000019ff control 12 34 704307 0 34 704307 0 22 00 00 00 33 bf 0a 00 00 00 00 00 """...3......." +333 0x00001a0b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4849664 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4a 00 02 00 00 00 00 00 3f ff 0e c3 9d 01 00 00 .....!...o3.......J.......?....... +334 0x00001a2d control 12 67 704308 0 67 704308 0 43 00 00 00 34 bf 0a 00 00 00 00 00 C...4....... +335 0x00001a39 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4a 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c c2 44 96 9b 81 a9 18 ?.....3...|8...........J.......=B.....&......... +336 0x00001a7c control 12 -1 695801 0 -1 695801 0 ff ff ff ff f9 9d 0a 00 00 00 00 00 ............ +337 0x00001a88 control 12 30 704309 0 30 704309 0 1e 00 00 00 35 bf 0a 00 00 00 00 00 ....5....... +338 0x00001a94 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 128909312 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +339 0x00001ab2 control 12 -1 695802 0 -1 695802 0 ff ff ff ff fa 9d 0a 00 00 00 00 00 ............ +340 0x00001abe control 12 26 704310 0 26 704310 0 1a 00 00 00 36 bf 0a 00 00 00 00 00 ....6....... +341 0x00001aca data 26 22 1080266580 1076977378 1080266580 1076977378 196609 129040384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +342 0x00001ae4 control 12 -1 695803 0 -1 695803 0 ff ff ff ff fb 9d 0a 00 00 00 00 00 ............ +343 0x00001af0 control 12 26 704311 0 26 704311 0 1a 00 00 00 37 bf 0a 00 00 00 00 00 ....7....... +344 0x00001afc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 129171456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +345 0x00001b16 control 12 -1 695804 0 -1 695804 0 ff ff ff ff fc 9d 0a 00 00 00 00 00 ............ +346 0x00001b22 control 12 26 704312 0 26 704312 0 1a 00 00 00 38 bf 0a 00 00 00 00 00 ....8....... +347 0x00001b2e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 129302528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +348 0x00001b48 control 12 -1 695805 0 -1 695805 0 ff ff ff ff fd 9d 0a 00 00 00 00 00 ............ +349 0x00001b54 control 12 101 704313 0 101 704313 0 65 00 00 00 39 bf 0a 00 00 00 00 00 e...9....... +350 0x00001b60 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4915200 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4b 00 02 00 00 00 00 00 6f 00 0f c3 9d 01 00 00 .....!...o3.......K.......o....... +351 0x00001b82 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4b 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c 92 69 a8 9b 81 a9 18 ?.....3...|8...........K.......=B.....&......... +352 0x00001bc5 control 12 -1 695806 0 -1 695806 0 ff ff ff ff fe 9d 0a 00 00 00 00 00 ............ +353 0x00001bd1 control 12 30 704314 0 30 704314 0 1e 00 00 00 3a bf 0a 00 00 00 00 00 ....:....... +354 0x00001bdd data 30 26 1660931669 1345985458 1660931669 1345985458 196609 129433600 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +355 0x00001bfb control 12 -1 695807 0 -1 695807 0 ff ff ff ff ff 9d 0a 00 00 00 00 00 ............ +356 0x00001c07 control 12 26 704315 0 26 704315 0 1a 00 00 00 3b bf 0a 00 00 00 00 00 ....;....... +357 0x00001c13 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 129564672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +358 0x00001c2d control 12 -1 695808 0 -1 695808 0 ff ff ff ff 00 9e 0a 00 00 00 00 00 ............ +359 0x00001c39 control 12 -2 80000 79982 -2 80000 79982 fe ff ff ff 80 38 01 00 6e 38 01 00 .....8..n8.. +360 0x00001c45 control 12 26 704316 0 26 704316 0 1a 00 00 00 3c bf 0a 00 00 00 00 00 ....<....... +361 0x00001c51 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 129695744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +362 0x00001c6b control 12 -1 695809 0 -1 695809 0 ff ff ff ff 01 9e 0a 00 00 00 00 00 ............ +363 0x00001c77 control 12 26 704317 0 26 704317 0 1a 00 00 00 3d bf 0a 00 00 00 00 00 ....=....... +364 0x00001c83 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 129826816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +365 0x00001c9d control 12 -1 695810 0 -1 695810 0 ff ff ff ff 02 9e 0a 00 00 00 00 00 ............ +366 0x00001ca9 control 12 34 704318 0 34 704318 0 22 00 00 00 3e bf 0a 00 00 00 00 00 """...>......." +367 0x00001cb5 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 4980736 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4c 00 02 00 00 00 00 00 9f 01 0f c3 9d 01 00 00 .....!...o3.......L............... +368 0x00001cd7 control 12 67 704319 0 67 704319 0 43 00 00 00 3f bf 0a 00 00 00 00 00 C...?....... +369 0x00001ce3 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4c 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 45 81 ba 9b 81 a9 18 ?.....3...|8...........L.......=B.....&......... +370 0x00001d26 control 12 -1 695811 0 -1 695811 0 ff ff ff ff 03 9e 0a 00 00 00 00 00 ............ +371 0x00001d32 control 12 30 704320 0 30 704320 0 1e 00 00 00 40 bf 0a 00 00 00 00 00 ....@....... +372 0x00001d3e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 129957888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +373 0x00001d5c control 12 -1 695812 0 -1 695812 0 ff ff ff ff 04 9e 0a 00 00 00 00 00 ............ +374 0x00001d68 control 12 26 704321 0 26 704321 0 1a 00 00 00 41 bf 0a 00 00 00 00 00 ....A....... +375 0x00001d74 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 130088960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +376 0x00001d8e control 12 -1 695813 0 -1 695813 0 ff ff ff ff 05 9e 0a 00 00 00 00 00 ............ +377 0x00001d9a control 12 26 704322 0 26 704322 0 1a 00 00 00 42 bf 0a 00 00 00 00 00 ....B....... +378 0x00001da6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 130220032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +379 0x00001dc0 control 12 -1 695814 0 -1 695814 0 ff ff ff ff 06 9e 0a 00 00 00 00 00 ............ +380 0x00001dcc control 12 101 704323 0 101 704323 0 65 00 00 00 43 bf 0a 00 00 00 00 00 e...C....... +381 0x00001dd8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5046272 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4d 00 02 00 00 00 00 00 d0 02 0f c3 9d 01 00 00 .....!...o3.......M............... +382 0x00001dfa data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4d 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 57 b0 cc 9b 81 a9 18 ?.....3...|8...........M.......=B.....&......... +383 0x00001e3d control 12 26 704324 0 26 704324 0 1a 00 00 00 44 bf 0a 00 00 00 00 00 ....D....... +384 0x00001e49 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 130351104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +385 0x00001e63 control 12 -1 695815 0 -1 695815 0 ff ff ff ff 07 9e 0a 00 00 00 00 00 ............ +386 0x00001e6f control 12 -1 695816 0 -1 695816 0 ff ff ff ff 08 9e 0a 00 00 00 00 00 ............ +387 0x00001e7b control 12 30 704325 0 30 704325 0 1e 00 00 00 45 bf 0a 00 00 00 00 00 ....E....... +388 0x00001e87 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 130482176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +389 0x00001ea5 control 12 -1 695817 0 -1 695817 0 ff ff ff ff 09 9e 0a 00 00 00 00 00 ............ +390 0x00001eb1 control 12 -2 80001 79983 -2 80001 79983 fe ff ff ff 81 38 01 00 6f 38 01 00 .....8..o8.. +391 0x00001ebd control 12 26 704326 0 26 704326 0 1a 00 00 00 46 bf 0a 00 00 00 00 00 ....F....... +392 0x00001ec9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 130613248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +393 0x00001ee3 control 12 -1 695818 0 -1 695818 0 ff ff ff ff 0a 9e 0a 00 00 00 00 00 ............ +394 0x00001eef control 12 26 704327 0 26 704327 0 1a 00 00 00 47 bf 0a 00 00 00 00 00 ....G....... +395 0x00001efb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 130744320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +396 0x00001f15 control 12 -1 695819 0 -1 695819 0 ff ff ff ff 0b 9e 0a 00 00 00 00 00 ............ +397 0x00001f21 control 12 34 704328 0 34 704328 0 22 00 00 00 48 bf 0a 00 00 00 00 00 """...H......." +398 0x00001f2d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5111808 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4e 00 02 00 00 00 00 00 00 04 0f c3 9d 01 00 00 .....!...o3.......N............... +399 0x00001f4f control 12 67 704329 0 67 704329 0 43 00 00 00 49 bf 0a 00 00 00 00 00 C...I....... +400 0x00001f5b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d8 53 ca de 9b 81 a9 18 ?.....3...|8...........N.......=B.....&......... +401 0x00001f9e control 12 -1 695820 0 -1 695820 0 ff ff ff ff 0c 9e 0a 00 00 00 00 00 ............ +402 0x00001faa control 12 30 704330 0 30 704330 0 1e 00 00 00 4a bf 0a 00 00 00 00 00 ....J....... +403 0x00001fb6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 130875392 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cd 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +404 0x00001fd4 control 12 26 704331 0 26 704331 0 1a 00 00 00 4b bf 0a 00 00 00 00 00 ....K....... +405 0x00001fe0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 131006464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +406 0x00001ffa control 12 -1 695821 0 -1 695821 0 ff ff ff ff 0d 9e 0a 00 00 00 00 00 ............ +407 0x00002006 control 12 -1 695822 0 -1 695822 0 ff ff ff ff 0e 9e 0a 00 00 00 00 00 ............ +408 0x00002012 control 12 26 704332 0 26 704332 0 1a 00 00 00 4c bf 0a 00 00 00 00 00 ....L....... +409 0x0000201e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 131137536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +410 0x00002038 control 12 -1 695823 0 -1 695823 0 ff ff ff ff 0f 9e 0a 00 00 00 00 00 ............ +411 0x00002044 control 12 26 704333 0 26 704333 0 1a 00 00 00 4d bf 0a 00 00 00 00 00 ....M....... +412 0x00002050 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 131268608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +413 0x0000206a control 12 -1 695824 0 -1 695824 0 ff ff ff ff 10 9e 0a 00 00 00 00 00 ............ +414 0x00002076 control 12 -2 80002 79984 -2 80002 79984 fe ff ff ff 82 38 01 00 70 38 01 00 .....8..p8.. +415 0x00002082 control 12 101 704334 0 101 704334 0 65 00 00 00 4e bf 0a 00 00 00 00 00 e...N....... +416 0x0000208e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5177344 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4f 00 02 00 00 00 00 00 31 05 0f c3 9d 01 00 00 .....!...o3.......O.......1....... +417 0x000020b0 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4f 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 a4 f7 f0 9b 81 a9 18 ?.....3...|8...........O.......=B.....&......... +418 0x000020f3 control 12 -1 695825 0 -1 695825 0 ff ff ff ff 11 9e 0a 00 00 00 00 00 ............ +419 0x000020ff control 12 30 704335 0 30 704335 0 1e 00 00 00 4f bf 0a 00 00 00 00 00 ....O....... +420 0x0000210b data 30 26 1660931669 1345985458 1660931669 1345985458 196609 131399680 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d5 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +421 0x00002129 control 12 -1 695826 0 -1 695826 0 ff ff ff ff 12 9e 0a 00 00 00 00 00 ............ +422 0x00002135 control 12 26 704336 0 26 704336 0 1a 00 00 00 50 bf 0a 00 00 00 00 00 ....P....... +423 0x00002141 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 131530752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +424 0x0000215b control 12 -1 695827 0 -1 695827 0 ff ff ff ff 13 9e 0a 00 00 00 00 00 ............ +425 0x00002167 control 12 26 704337 0 26 704337 0 1a 00 00 00 51 bf 0a 00 00 00 00 00 ....Q....... +426 0x00002173 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 131661824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +427 0x0000218d control 12 -1 695828 0 -1 695828 0 ff ff ff ff 14 9e 0a 00 00 00 00 00 ............ +428 0x00002199 control 12 26 704338 0 26 704338 0 1a 00 00 00 52 bf 0a 00 00 00 00 00 ....R....... +429 0x000021a5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 131792896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +430 0x000021bf control 12 -1 695829 0 -1 695829 0 ff ff ff ff 15 9e 0a 00 00 00 00 00 ............ +431 0x000021cb control 12 34 704339 0 34 704339 0 22 00 00 00 53 bf 0a 00 00 00 00 00 """...S......." +432 0x000021d7 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5242880 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 50 00 02 00 00 00 00 00 62 06 0f c3 9d 01 00 00 .....!...o3.......P.......b....... +433 0x000021f9 control 12 67 704340 0 67 704340 0 43 00 00 00 54 bf 0a 00 00 00 00 00 C...T....... +434 0x00002205 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 50 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 6e 2b 03 9c 81 a9 18 ?.....3...|8...........P.......=B.....&......... +435 0x00002248 control 12 -1 695830 0 -1 695830 0 ff ff ff ff 16 9e 0a 00 00 00 00 00 ............ +436 0x00002254 control 12 30 704341 0 30 704341 0 1e 00 00 00 55 bf 0a 00 00 00 00 00 ....U....... +437 0x00002260 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 131923968 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 dd 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +438 0x0000227e control 12 -1 695831 0 -1 695831 0 ff ff ff ff 17 9e 0a 00 00 00 00 00 ............ +439 0x0000228a control 12 26 704342 0 26 704342 0 1a 00 00 00 56 bf 0a 00 00 00 00 00 ....V....... +440 0x00002296 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 132055040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +441 0x000022b0 control 12 -1 695832 0 -1 695832 0 ff ff ff ff 18 9e 0a 00 00 00 00 00 ............ +442 0x000022bc control 12 -2 80003 79985 -2 80003 79985 fe ff ff ff 83 38 01 00 71 38 01 00 .....8..q8.. +443 0x000022c8 control 12 26 704343 0 26 704343 0 1a 00 00 00 57 bf 0a 00 00 00 00 00 ....W....... +444 0x000022d4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 132186112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +445 0x000022ee control 12 -1 695833 0 -1 695833 0 ff ff ff ff 19 9e 0a 00 00 00 00 00 ............ +446 0x000022fa control 12 26 704344 0 26 704344 0 1a 00 00 00 58 bf 0a 00 00 00 00 00 ....X....... +447 0x00002306 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 132317184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +448 0x00002320 control 12 -1 695834 0 -1 695834 0 ff ff ff ff 1a 9e 0a 00 00 00 00 00 ............ +449 0x0000232c control 12 34 704345 0 34 704345 0 22 00 00 00 59 bf 0a 00 00 00 00 00 """...Y......." +450 0x00002338 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5308416 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 51 00 02 00 00 00 00 00 93 07 0f c3 9d 01 00 00 .....!...o3.......Q............... +451 0x0000235a control 12 67 704346 0 67 704346 0 43 00 00 00 5a bf 0a 00 00 00 00 00 C...Z....... +452 0x00002366 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 51 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 c5 5e 15 9c 81 a9 18 ?.....3...|8...........Q.......=B.....&......... +453 0x000023a9 control 12 -1 695835 0 -1 695835 0 ff ff ff ff 1b 9e 0a 00 00 00 00 00 ............ +454 0x000023b5 control 12 30 704347 0 30 704347 0 1e 00 00 00 5b bf 0a 00 00 00 00 00 ....[....... +455 0x000023c1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 132448256 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e5 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +456 0x000023df control 12 -1 695836 0 -1 695836 0 ff ff ff ff 1c 9e 0a 00 00 00 00 00 ............ +457 0x000023eb control 12 26 704348 0 26 704348 0 1a 00 00 00 5c bf 0a 00 00 00 00 00 ....\....... +458 0x000023f7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 132579328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +459 0x00002411 control 12 -1 695837 0 -1 695837 0 ff ff ff ff 1d 9e 0a 00 00 00 00 00 ............ +460 0x0000241d control 12 26 704349 0 26 704349 0 1a 00 00 00 5d bf 0a 00 00 00 00 00 ....]....... +461 0x00002429 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 132710400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +462 0x00002443 control 12 -1 695838 0 -1 695838 0 ff ff ff ff 1e 9e 0a 00 00 00 00 00 ............ +463 0x0000244f control 12 26 704350 0 26 704350 0 1a 00 00 00 5e bf 0a 00 00 00 00 00 ....^....... +464 0x0000245b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 132841472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +465 0x00002475 control 12 -1 695839 0 -1 695839 0 ff ff ff ff 1f 9e 0a 00 00 00 00 00 ............ +466 0x00002481 control 12 101 704351 0 101 704351 0 65 00 00 00 5f bf 0a 00 00 00 00 00 e..._....... +467 0x0000248d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5373952 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 52 00 02 00 00 00 00 00 c3 08 0f c3 9d 01 00 00 .....!...o3.......R............... +468 0x000024af data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 52 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 9c 66 7d 27 9c 81 a9 18 ?.....3...|8...........R.......=B.....&......... +469 0x000024f2 control 12 -1 695840 0 -1 695840 0 ff ff ff ff 20 9e 0a 00 00 00 00 00 .... ....... +470 0x000024fe control 12 30 704352 0 30 704352 0 1e 00 00 00 60 bf 0a 00 00 00 00 00 ....`....... +471 0x0000250a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 132972544 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ed 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +472 0x00002528 control 12 -1 695841 0 -1 695841 0 ff ff ff ff 21 9e 0a 00 00 00 00 00 ....!....... +473 0x00002534 control 12 -2 80004 79986 -2 80004 79986 fe ff ff ff 84 38 01 00 72 38 01 00 .....8..r8.. +474 0x00002540 control 12 26 704353 0 26 704353 0 1a 00 00 00 61 bf 0a 00 00 00 00 00 ....a....... +475 0x0000254c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 133103616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +476 0x00002566 control 12 -1 695842 0 -1 695842 0 ff ff ff ff 22 9e 0a 00 00 00 00 00 "....""......." +477 0x00002572 control 12 26 704354 0 26 704354 0 1a 00 00 00 62 bf 0a 00 00 00 00 00 ....b....... +478 0x0000257e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 133234688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +479 0x00002598 control 12 -1 695843 0 -1 695843 0 ff ff ff ff 23 9e 0a 00 00 00 00 00 ....#....... +480 0x000025a4 control 12 26 704355 0 26 704355 0 1a 00 00 00 63 bf 0a 00 00 00 00 00 ....c....... +481 0x000025b0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 133365760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +482 0x000025ca control 12 -1 695844 0 -1 695844 0 ff ff ff ff 24 9e 0a 00 00 00 00 00 ....$....... +483 0x000025d6 control 12 101 704356 0 101 704356 0 65 00 00 00 64 bf 0a 00 00 00 00 00 e...d....... +484 0x000025e2 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5439488 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 53 00 02 00 00 00 00 00 f3 09 0f c3 9d 01 00 00 .....!...o3.......S............... +485 0x00002604 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 53 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 da 97 39 9c 81 a9 18 ?.....3...|8...........S.......=B.....&......... +486 0x00002647 control 12 -1 695845 0 -1 695845 0 ff ff ff ff 25 9e 0a 00 00 00 00 00 ....%....... +487 0x00002653 control 12 30 704357 0 30 704357 0 1e 00 00 00 65 bf 0a 00 00 00 00 00 ....e....... +488 0x0000265f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 133496832 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f5 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +489 0x0000267d control 12 -1 695846 0 -1 695846 0 ff ff ff ff 26 9e 0a 00 00 00 00 00 ....&....... +490 0x00002689 control 12 26 704358 0 26 704358 0 1a 00 00 00 66 bf 0a 00 00 00 00 00 ....f....... +491 0x00002695 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 133627904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +492 0x000026af control 12 -1 695847 0 -1 695847 0 ff ff ff ff 27 9e 0a 00 00 00 00 00 ....'....... +493 0x000026bb control 12 26 704359 0 26 704359 0 1a 00 00 00 67 bf 0a 00 00 00 00 00 ....g....... +494 0x000026c7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 133758976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +495 0x000026e1 control 12 -1 695848 0 -1 695848 0 ff ff ff ff 28 9e 0a 00 00 00 00 00 ....(....... +496 0x000026ed control 12 -2 80005 79987 -2 80005 79987 fe ff ff ff 85 38 01 00 73 38 01 00 .....8..s8.. +497 0x000026f9 control 12 26 704360 0 26 704360 0 1a 00 00 00 68 bf 0a 00 00 00 00 00 ....h....... +498 0x00002705 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 133890048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +499 0x0000271f control 12 -1 695849 0 -1 695849 0 ff ff ff ff 29 9e 0a 00 00 00 00 00 ....)....... +500 0x0000272b control 12 101 704361 0 101 704361 0 65 00 00 00 69 bf 0a 00 00 00 00 00 e...i....... +501 0x00002737 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5505024 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 54 00 02 00 00 00 00 00 23 0b 0f c3 9d 01 00 00 .....!...o3.......T.......#....... +502 0x00002759 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 54 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ac 98 b2 4b 9c 81 a9 18 ?.....3...|8...........T.......=B.....&......... +503 0x0000279c control 12 -1 695850 0 -1 695850 0 ff ff ff ff 2a 9e 0a 00 00 00 00 00 ....*....... +504 0x000027a8 control 12 30 704362 0 30 704362 0 1e 00 00 00 6a bf 0a 00 00 00 00 00 ....j....... +505 0x000027b4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 134021120 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fd 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +506 0x000027d2 control 12 -1 695851 0 -1 695851 0 ff ff ff ff 2b 9e 0a 00 00 00 00 00 ....+....... +507 0x000027de control 12 26 704363 0 26 704363 0 1a 00 00 00 6b bf 0a 00 00 00 00 00 ....k....... +508 0x000027ea data 26 22 1080266580 1076977378 1080266580 1076977378 196609 134152192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +509 0x00002804 control 12 -1 695852 0 -1 695852 0 ff ff ff ff 2c 9e 0a 00 00 00 00 00 ....,....... +510 0x00002810 control 12 26 704364 0 26 704364 0 1a 00 00 00 6c bf 0a 00 00 00 00 00 ....l....... +511 0x0000281c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 134283264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +512 0x00002836 control 12 -1 695853 0 -1 695853 0 ff ff ff ff 2d 9e 0a 00 00 00 00 00 ....-....... +513 0x00002842 control 12 26 704365 0 26 704365 0 1a 00 00 00 6d bf 0a 00 00 00 00 00 ....m....... +514 0x0000284e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 134414336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +515 0x00002868 control 12 -1 695854 0 -1 695854 0 ff ff ff ff 2e 9e 0a 00 00 00 00 00 ............ +516 0x00002874 control 12 34 704366 0 34 704366 0 22 00 00 00 6e bf 0a 00 00 00 00 00 """...n......." +517 0x00002880 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5570560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 55 00 02 00 00 00 00 00 54 0c 0f c3 9d 01 00 00 .....!...o3.......U.......T....... +518 0x000028a2 control 12 67 704367 0 67 704367 0 43 00 00 00 6f bf 0a 00 00 00 00 00 C...o....... +519 0x000028ae data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 55 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 0c e7 5d 9c 81 a9 18 ?.....3...|8...........U.......=B.....&......... +520 0x000028f1 control 12 -1 695855 0 -1 695855 0 ff ff ff ff 2f 9e 0a 00 00 00 00 00 ..../....... +521 0x000028fd control 12 30 704368 0 30 704368 0 1e 00 00 00 70 bf 0a 00 00 00 00 00 ....p....... +522 0x00002909 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 134545408 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +523 0x00002927 control 12 -1 695856 0 -1 695856 0 ff ff ff ff 30 9e 0a 00 00 00 00 00 ....0....... +524 0x00002933 control 12 26 704369 0 26 704369 0 1a 00 00 00 71 bf 0a 00 00 00 00 00 ....q....... +525 0x0000293f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 134676480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +526 0x00002959 control 12 -1 695857 0 -1 695857 0 ff ff ff ff 31 9e 0a 00 00 00 00 00 ....1....... +527 0x00002965 control 12 -2 80006 79988 -2 80006 79988 fe ff ff ff 86 38 01 00 74 38 01 00 .....8..t8.. +528 0x00002971 control 12 26 704370 0 26 704370 0 1a 00 00 00 72 bf 0a 00 00 00 00 00 ....r....... +529 0x0000297d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 134807552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +530 0x00002997 control 12 -1 695858 0 -1 695858 0 ff ff ff ff 32 9e 0a 00 00 00 00 00 ....2....... +531 0x000029a3 control 12 26 704371 0 26 704371 0 1a 00 00 00 73 bf 0a 00 00 00 00 00 ....s....... +532 0x000029af data 26 22 1080266580 1076977378 1080266580 1076977378 196609 134938624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +533 0x000029c9 control 12 -1 695859 0 -1 695859 0 ff ff ff ff 33 9e 0a 00 00 00 00 00 ....3....... +534 0x000029d5 control 12 101 704372 0 101 704372 0 65 00 00 00 74 bf 0a 00 00 00 00 00 e...t....... +535 0x000029e1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5636096 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 56 00 02 00 00 00 00 00 86 0d 0f c3 9d 01 00 00 .....!...o3.......V............... +536 0x00002a03 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 56 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 9d 23 70 9c 81 a9 18 ?.....3...|8...........V.......=B.....&......... +537 0x00002a46 control 12 -1 695860 0 -1 695860 0 ff ff ff ff 34 9e 0a 00 00 00 00 00 ....4....... +538 0x00002a52 control 12 30 704373 0 30 704373 0 1e 00 00 00 75 bf 0a 00 00 00 00 00 ....u....... +539 0x00002a5e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 135069696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +540 0x00002a7c control 12 -1 695861 0 -1 695861 0 ff ff ff ff 35 9e 0a 00 00 00 00 00 ....5....... +541 0x00002a88 control 12 26 704374 0 26 704374 0 1a 00 00 00 76 bf 0a 00 00 00 00 00 ....v....... +542 0x00002a94 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 135200768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +543 0x00002aae control 12 -1 695862 0 -1 695862 0 ff ff ff ff 36 9e 0a 00 00 00 00 00 ....6....... +544 0x00002aba control 12 26 704375 0 26 704375 0 1a 00 00 00 77 bf 0a 00 00 00 00 00 ....w....... +545 0x00002ac6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 135331840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +546 0x00002ae0 control 12 -1 695863 0 -1 695863 0 ff ff ff ff 37 9e 0a 00 00 00 00 00 ....7....... +547 0x00002aec control 12 26 704376 0 26 704376 0 1a 00 00 00 78 bf 0a 00 00 00 00 00 ....x....... +548 0x00002af8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 135462912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +549 0x00002b12 control 12 -1 695864 0 -1 695864 0 ff ff ff ff 38 9e 0a 00 00 00 00 00 ....8....... +550 0x00002b1e control 12 -2 80007 79989 -2 80007 79989 fe ff ff ff 87 38 01 00 75 38 01 00 .....8..u8.. +551 0x00002b2a control 12 34 704377 0 34 704377 0 22 00 00 00 79 bf 0a 00 00 00 00 00 """...y......." +552 0x00002b36 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5701632 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 00 02 00 00 00 00 00 b8 0e 0f c3 9d 01 00 00 .....!...o3.......W............... +553 0x00002b58 control 12 67 704378 0 67 704378 0 43 00 00 00 7a bf 0a 00 00 00 00 00 C...z....... +554 0x00002b64 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 57 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e0 f5 58 82 9c 81 a9 18 ?.....3...|8...........W.......=B.....&......... +555 0x00002ba7 control 12 -1 695865 0 -1 695865 0 ff ff ff ff 39 9e 0a 00 00 00 00 00 ....9....... +556 0x00002bb3 control 12 30 704379 0 30 704379 0 1e 00 00 00 7b bf 0a 00 00 00 00 00 ....{....... +557 0x00002bbf data 30 26 1660931669 1345985458 1660931669 1345985458 196609 135593984 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +558 0x00002bdd control 12 -1 695866 0 -1 695866 0 ff ff ff ff 3a 9e 0a 00 00 00 00 00 ....:....... +559 0x00002be9 control 12 26 704380 0 26 704380 0 1a 00 00 00 7c bf 0a 00 00 00 00 00 ....|....... +560 0x00002bf5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 135725056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +561 0x00002c0f control 12 -1 695867 0 -1 695867 0 ff ff ff ff 3b 9e 0a 00 00 00 00 00 ....;....... +562 0x00002c1b control 12 26 704381 0 26 704381 0 1a 00 00 00 7d bf 0a 00 00 00 00 00 ....}....... +563 0x00002c27 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 135856128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +564 0x00002c41 control 12 -1 695868 0 -1 695868 0 ff ff ff ff 3c 9e 0a 00 00 00 00 00 ....<....... +565 0x00002c4d control 12 26 704382 0 26 704382 0 1a 00 00 00 7e bf 0a 00 00 00 00 00 ....~....... +566 0x00002c59 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 135987200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +567 0x00002c73 control 12 -1 695869 0 -1 695869 0 ff ff ff ff 3d 9e 0a 00 00 00 00 00 ....=....... +568 0x00002c7f control 12 101 704383 0 101 704383 0 65 00 00 00 7f bf 0a 00 00 00 00 00 e........... +569 0x00002c8b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5767168 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 00 02 00 00 00 00 00 e8 0f 0f c3 9d 01 00 00 .....!...o3.......X............... +570 0x00002cad data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 58 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a0 9b 77 94 9c 81 a9 18 ?.....3...|8...........X.......=B.....&......... +571 0x00002cf0 control 12 -1 695870 0 -1 695870 0 ff ff ff ff 3e 9e 0a 00 00 00 00 00 ....>....... +572 0x00002cfc control 12 30 704384 0 30 704384 0 1e 00 00 00 80 bf 0a 00 00 00 00 00 ............ +573 0x00002d08 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 136118272 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +574 0x00002d26 control 12 -1 695871 0 -1 695871 0 ff ff ff ff 3f 9e 0a 00 00 00 00 00 ....?....... +575 0x00002d32 control 12 26 704385 0 26 704385 0 1a 00 00 00 81 bf 0a 00 00 00 00 00 ............ +576 0x00002d3e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 136249344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +577 0x00002d58 control 12 -1 695872 0 -1 695872 0 ff ff ff ff 40 9e 0a 00 00 00 00 00 ....@....... +578 0x00002d64 control 12 26 704386 0 26 704386 0 1a 00 00 00 82 bf 0a 00 00 00 00 00 ............ +579 0x00002d70 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 136380416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 08 1f 00 00 00 00 00 ....T.c@.^1@......!....... +580 0x00002d8a control 12 -1 695873 0 -1 695873 0 ff ff ff ff 41 9e 0a 00 00 00 00 00 ....A....... +581 0x00002d96 control 12 -2 80008 79990 -2 80008 79990 fe ff ff ff 88 38 01 00 76 38 01 00 .....8..v8.. +582 0x00002da2 control 12 26 704387 0 26 704387 0 1a 00 00 00 83 bf 0a 00 00 00 00 00 ............ +583 0x00002dae data 26 22 1080266580 1076977378 1080266580 1076977378 196609 136511488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 08 1f 00 00 00 00 00 ....T.c@.^1@......#....... +584 0x00002dc8 control 12 -1 695874 0 -1 695874 0 ff ff ff ff 42 9e 0a 00 00 00 00 00 ....B....... +585 0x00002dd4 control 12 34 704388 0 34 704388 0 22 00 00 00 84 bf 0a 00 00 00 00 00 """..........." +586 0x00002de0 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5832704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 00 02 00 00 00 00 00 18 11 0f c3 9d 01 00 00 .....!...o3.......Y............... +587 0x00002e02 control 12 67 704389 0 67 704389 0 43 00 00 00 85 bf 0a 00 00 00 00 00 C........... +588 0x00002e0e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 59 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 16 a2 a6 9c 81 a9 18 ?.....3...|8...........Y.......=B.....&......... +589 0x00002e51 control 12 -1 695875 0 -1 695875 0 ff ff ff ff 43 9e 0a 00 00 00 00 00 ....C....... +590 0x00002e5d control 12 30 704390 0 30 704390 0 1e 00 00 00 86 bf 0a 00 00 00 00 00 ............ +591 0x00002e69 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 136642560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +592 0x00002e87 control 12 -1 695876 0 -1 695876 0 ff ff ff ff 44 9e 0a 00 00 00 00 00 ....D....... +593 0x00002e93 control 12 26 704391 0 26 704391 0 1a 00 00 00 87 bf 0a 00 00 00 00 00 ............ +594 0x00002e9f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 136773632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 08 1f 00 00 00 00 00 ....T.c@.^1@......'....... +595 0x00002eb9 control 12 -1 695877 0 -1 695877 0 ff ff ff ff 45 9e 0a 00 00 00 00 00 ....E....... +596 0x00002ec5 control 12 26 704392 0 26 704392 0 1a 00 00 00 88 bf 0a 00 00 00 00 00 ............ +597 0x00002ed1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 136904704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 08 1f 00 00 00 00 00 ....T.c@.^1@......)....... +598 0x00002eeb control 12 -1 695878 0 -1 695878 0 ff ff ff ff 46 9e 0a 00 00 00 00 00 ....F....... +599 0x00002ef7 control 12 26 704393 0 26 704393 0 1a 00 00 00 89 bf 0a 00 00 00 00 00 ............ +600 0x00002f03 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 137035776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 08 1f 00 00 00 00 00 ....T.c@.^1@......+....... +601 0x00002f1d control 12 -1 695879 0 -1 695879 0 ff ff ff ff 47 9e 0a 00 00 00 00 00 ....G....... +602 0x00002f29 control 12 101 704394 0 101 704394 0 65 00 00 00 8a bf 0a 00 00 00 00 00 e........... +603 0x00002f35 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5898240 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5a 00 02 00 00 00 00 00 48 12 0f c3 9d 01 00 00 .....!...o3.......Z.......H....... +604 0x00002f57 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5a 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 58 51 d1 b8 9c 81 a9 18 ?.....3...|8...........Z.......=B.....&......... +605 0x00002f9a control 12 -1 695880 0 -1 695880 0 ff ff ff ff 48 9e 0a 00 00 00 00 00 ....H....... +606 0x00002fa6 control 12 30 704395 0 30 704395 0 1e 00 00 00 8b bf 0a 00 00 00 00 00 ............ +607 0x00002fb2 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 137166848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +608 0x00002fd0 control 12 -1 695881 0 -1 695881 0 ff ff ff ff 49 9e 0a 00 00 00 00 00 ....I....... +609 0x00002fdc control 12 26 704396 0 26 704396 0 1a 00 00 00 8c bf 0a 00 00 00 00 00 ............ +610 0x00002fe8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 137297920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 08 1f 00 00 00 00 00 ....T.c@.^1@....../....... +611 0x00003002 control 12 -1 695882 0 -1 695882 0 ff ff ff ff 4a 9e 0a 00 00 00 00 00 ....J....... +612 0x0000300e control 12 -2 80009 79991 -2 80009 79991 fe ff ff ff 89 38 01 00 77 38 01 00 .....8..w8.. +613 0x0000301a control 12 26 704397 0 26 704397 0 1a 00 00 00 8d bf 0a 00 00 00 00 00 ............ +614 0x00003026 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 137428992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 08 1f 00 00 00 00 00 ....T.c@.^1@......1....... +615 0x00003040 control 12 -1 695883 0 -1 695883 0 ff ff ff ff 4b 9e 0a 00 00 00 00 00 ....K....... +616 0x0000304c control 12 26 704398 0 26 704398 0 1a 00 00 00 8e bf 0a 00 00 00 00 00 ............ +617 0x00003058 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 137560064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 08 1f 00 00 00 00 00 ....T.c@.^1@......3....... +618 0x00003072 control 12 -1 695884 0 -1 695884 0 ff ff ff ff 4c 9e 0a 00 00 00 00 00 ....L....... +619 0x0000307e control 12 101 704399 0 101 704399 0 65 00 00 00 8f bf 0a 00 00 00 00 00 e........... +620 0x0000308a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 5963776 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5b 00 02 00 00 00 00 00 79 13 0f c3 9d 01 00 00 .....!...o3.......[.......y....... +621 0x000030ac data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5b 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b8 ea fc ca 9c 81 a9 18 ?.....3...|8...........[.......=B.....&......... +622 0x000030ef control 12 -1 695885 0 -1 695885 0 ff ff ff ff 4d 9e 0a 00 00 00 00 00 ....M....... +623 0x000030fb control 12 30 704400 0 30 704400 0 1e 00 00 00 90 bf 0a 00 00 00 00 00 ............ +624 0x00003107 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 137691136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +625 0x00003125 control 12 -1 695886 0 -1 695886 0 ff ff ff ff 4e 9e 0a 00 00 00 00 00 ....N....... +626 0x00003131 control 12 26 704401 0 26 704401 0 1a 00 00 00 91 bf 0a 00 00 00 00 00 ............ +627 0x0000313d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 137822208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 08 1f 00 00 00 00 00 ....T.c@.^1@......7....... +628 0x00003157 control 12 -1 695887 0 -1 695887 0 ff ff ff ff 4f 9e 0a 00 00 00 00 00 ....O....... +629 0x00003163 control 12 26 704402 0 26 704402 0 1a 00 00 00 92 bf 0a 00 00 00 00 00 ............ +630 0x0000316f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 137953280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 08 1f 00 00 00 00 00 ....T.c@.^1@......9....... +631 0x00003189 control 12 -1 695888 0 -1 695888 0 ff ff ff ff 50 9e 0a 00 00 00 00 00 ....P....... +632 0x00003195 control 12 -2 80010 79992 -2 80010 79992 fe ff ff ff 8a 38 01 00 78 38 01 00 .....8..x8.. +633 0x000031a1 control 12 26 704403 0 26 704403 0 1a 00 00 00 93 bf 0a 00 00 00 00 00 ............ +634 0x000031ad data 26 22 1080266580 1076977378 1080266580 1076977378 196609 138084352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 08 1f 00 00 00 00 00 ....T.c@.^1@......;....... +635 0x000031c7 control 12 -1 695889 0 -1 695889 0 ff ff ff ff 51 9e 0a 00 00 00 00 00 ....Q....... +636 0x000031d3 control 12 101 704404 0 101 704404 0 65 00 00 00 94 bf 0a 00 00 00 00 00 e........... +637 0x000031df data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6029312 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5c 00 02 00 00 00 00 00 aa 14 0f c3 9d 01 00 00 .....!...o3.......\............... +638 0x00003201 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5c 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 1c 0f dd 9c 81 a9 18 ?.....3...|8...........\.......=B.....&......... +639 0x00003244 control 12 -1 695890 0 -1 695890 0 ff ff ff ff 52 9e 0a 00 00 00 00 00 ....R....... +640 0x00003250 control 12 30 704405 0 30 704405 0 1e 00 00 00 95 bf 0a 00 00 00 00 00 ............ +641 0x0000325c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 138215424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +642 0x0000327a control 12 -1 695891 0 -1 695891 0 ff ff ff ff 53 9e 0a 00 00 00 00 00 ....S....... +643 0x00003286 control 12 26 704406 0 26 704406 0 1a 00 00 00 96 bf 0a 00 00 00 00 00 ............ +644 0x00003292 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 138346496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 08 1f 00 00 00 00 00 ....T.c@.^1@......?....... +645 0x000032ac control 12 -1 695892 0 -1 695892 0 ff ff ff ff 54 9e 0a 00 00 00 00 00 ....T....... +646 0x000032b8 control 12 26 704407 0 26 704407 0 1a 00 00 00 97 bf 0a 00 00 00 00 00 ............ +647 0x000032c4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 138477568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 08 1f 00 00 00 00 00 ....T.c@.^1@......A....... +648 0x000032de control 12 -1 695893 0 -1 695893 0 ff ff ff ff 55 9e 0a 00 00 00 00 00 ....U....... +649 0x000032ea control 12 26 704408 0 26 704408 0 1a 00 00 00 98 bf 0a 00 00 00 00 00 ............ +650 0x000032f6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 138608640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 08 1f 00 00 00 00 00 ....T.c@.^1@......C....... +651 0x00003310 control 12 -1 695894 0 -1 695894 0 ff ff ff ff 56 9e 0a 00 00 00 00 00 ....V....... +652 0x0000331c control 12 101 704409 0 101 704409 0 65 00 00 00 99 bf 0a 00 00 00 00 00 e........... +653 0x00003328 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6094848 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5d 00 02 00 00 00 00 00 dd 15 0f c3 9d 01 00 00 .....!...o3.......]............... +654 0x0000334a data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5d 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b0 76 5e ef 9c 81 a9 18 ?.....3...|8...........].......=B.....&......... +655 0x0000338d control 12 -1 695895 0 -1 695895 0 ff ff ff ff 57 9e 0a 00 00 00 00 00 ....W....... +656 0x00003399 control 12 30 704410 0 30 704410 0 1e 00 00 00 9a bf 0a 00 00 00 00 00 ............ +657 0x000033a5 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 138739712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......E........... +658 0x000033c3 control 12 -1 695896 0 -1 695896 0 ff ff ff ff 58 9e 0a 00 00 00 00 00 ....X....... +659 0x000033cf control 12 26 704411 0 26 704411 0 1a 00 00 00 9b bf 0a 00 00 00 00 00 ............ +660 0x000033db data 26 22 1080266580 1076977378 1080266580 1076977378 196609 138870784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 08 1f 00 00 00 00 00 ....T.c@.^1@......G....... +661 0x000033f5 control 12 -1 695897 0 -1 695897 0 ff ff ff ff 59 9e 0a 00 00 00 00 00 ....Y....... +662 0x00003401 control 12 -2 80011 79993 -2 80011 79993 fe ff ff ff 8b 38 01 00 79 38 01 00 .....8..y8.. +663 0x0000340d control 12 26 704412 0 26 704412 0 1a 00 00 00 9c bf 0a 00 00 00 00 00 ............ +664 0x00003419 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 139001856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 08 1f 00 00 00 00 00 ....T.c@.^1@......I....... +665 0x00003433 control 12 -1 695898 0 -1 695898 0 ff ff ff ff 5a 9e 0a 00 00 00 00 00 ....Z....... +666 0x0000343f control 12 26 704413 0 26 704413 0 1a 00 00 00 9d bf 0a 00 00 00 00 00 ............ +667 0x0000344b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 139132928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 08 1f 00 00 00 00 00 ....T.c@.^1@......K....... +668 0x00003465 control 12 -1 695899 0 -1 695899 0 ff ff ff ff 5b 9e 0a 00 00 00 00 00 ....[....... +669 0x00003471 control 12 101 704414 0 101 704414 0 65 00 00 00 9e bf 0a 00 00 00 00 00 e........... +670 0x0000347d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6160384 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5e 00 02 00 00 00 00 00 0d 17 0f c3 9d 01 00 00 .....!...o3.......^............... +671 0x0000349f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 9c 8e 7f 01 9d 81 a9 18 ?.....3...|8...........^.......=B.....&......... +672 0x000034e2 control 12 -1 695900 0 -1 695900 0 ff ff ff ff 5c 9e 0a 00 00 00 00 00 ....\....... +673 0x000034ee control 12 30 704415 0 30 704415 0 1e 00 00 00 9f bf 0a 00 00 00 00 00 ............ +674 0x000034fa data 30 26 1660931669 1345985458 1660931669 1345985458 196609 139264000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......M........... +675 0x00003518 control 12 -1 695901 0 -1 695901 0 ff ff ff ff 5d 9e 0a 00 00 00 00 00 ....]....... +676 0x00003524 control 12 26 704416 0 26 704416 0 1a 00 00 00 a0 bf 0a 00 00 00 00 00 ............ +677 0x00003530 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 139395072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 08 1f 00 00 00 00 00 ....T.c@.^1@......O....... +678 0x0000354a control 12 -1 695902 0 -1 695902 0 ff ff ff ff 5e 9e 0a 00 00 00 00 00 ....^....... +679 0x00003556 control 12 26 704417 0 26 704417 0 1a 00 00 00 a1 bf 0a 00 00 00 00 00 ............ +680 0x00003562 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 139526144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 08 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +681 0x0000357c control 12 -1 695903 0 -1 695903 0 ff ff ff ff 5f 9e 0a 00 00 00 00 00 ...._....... +682 0x00003588 control 12 26 704418 0 26 704418 0 1a 00 00 00 a2 bf 0a 00 00 00 00 00 ............ +683 0x00003594 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 139657216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 08 1f 00 00 00 00 00 ....T.c@.^1@......S....... +684 0x000035ae control 12 -1 695904 0 -1 695904 0 ff ff ff ff 60 9e 0a 00 00 00 00 00 ....`....... +685 0x000035ba control 12 34 704419 0 34 704419 0 22 00 00 00 a3 bf 0a 00 00 00 00 00 """..........." +686 0x000035c6 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6225920 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5f 00 02 00 00 00 00 00 3d 18 0f c3 9d 01 00 00 .....!...o3......._.......=....... +687 0x000035e8 control 12 67 704420 0 67 704420 0 43 00 00 00 a4 bf 0a 00 00 00 00 00 C........... +688 0x000035f4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5f 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 00 ac 13 9d 81 a9 18 ?.....3...|8..........._.......=B.....&......... +689 0x00003637 control 12 -1 695905 0 -1 695905 0 ff ff ff ff 61 9e 0a 00 00 00 00 00 ....a....... +690 0x00003643 control 12 30 704421 0 30 704421 0 1e 00 00 00 a5 bf 0a 00 00 00 00 00 ............ +691 0x0000364f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 139788288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......U........... +692 0x0000366d control 12 -1 695906 0 -1 695906 0 ff ff ff ff 62 9e 0a 00 00 00 00 00 ....b....... +693 0x00003679 control 12 -2 80012 79994 -2 80012 79994 fe ff ff ff 8c 38 01 00 7a 38 01 00 .....8..z8.. +694 0x00003685 control 12 26 704422 0 26 704422 0 1a 00 00 00 a6 bf 0a 00 00 00 00 00 ............ +695 0x00003691 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 139919360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 08 1f 00 00 00 00 00 ....T.c@.^1@......W....... +696 0x000036ab control 12 -1 695907 0 -1 695907 0 ff ff ff ff 63 9e 0a 00 00 00 00 00 ....c....... +697 0x000036b7 control 12 26 704423 0 26 704423 0 1a 00 00 00 a7 bf 0a 00 00 00 00 00 ............ +698 0x000036c3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 140050432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 08 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +699 0x000036dd control 12 -1 695908 0 -1 695908 0 ff ff ff ff 64 9e 0a 00 00 00 00 00 ....d....... +700 0x000036e9 control 12 26 704424 0 26 704424 0 1a 00 00 00 a8 bf 0a 00 00 00 00 00 ............ +701 0x000036f5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 140181504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 08 1f 00 00 00 00 00 ....T.c@.^1@......[....... +702 0x0000370f control 12 -1 695909 0 -1 695909 0 ff ff ff ff 65 9e 0a 00 00 00 00 00 ....e....... +703 0x0000371b control 12 101 704425 0 101 704425 0 65 00 00 00 a9 bf 0a 00 00 00 00 00 e........... +704 0x00003727 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6291456 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 60 00 02 00 00 00 00 00 6d 19 0f c3 9d 01 00 00 .....!...o3.......`.......m....... +705 0x00003749 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 60 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d0 46 bf 25 9d 81 a9 18 ?.....3...|8...........`.......=B.....&......... +706 0x0000378c control 12 -1 695910 0 -1 695910 0 ff ff ff ff 66 9e 0a 00 00 00 00 00 ....f....... +707 0x00003798 control 12 30 704426 0 30 704426 0 1e 00 00 00 aa bf 0a 00 00 00 00 00 ............ +708 0x000037a4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 140312576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +709 0x000037c2 control 12 -1 695911 0 -1 695911 0 ff ff ff ff 67 9e 0a 00 00 00 00 00 ....g....... +710 0x000037ce control 12 26 704427 0 26 704427 0 1a 00 00 00 ab bf 0a 00 00 00 00 00 ............ +711 0x000037da data 26 22 1080266580 1076977378 1080266580 1076977378 196609 140443648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 08 1f 00 00 00 00 00 ....T.c@.^1@......_....... +712 0x000037f4 control 12 -1 695912 0 -1 695912 0 ff ff ff ff 68 9e 0a 00 00 00 00 00 ....h....... +713 0x00003800 control 12 26 704428 0 26 704428 0 1a 00 00 00 ac bf 0a 00 00 00 00 00 ............ +714 0x0000380c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 140574720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 08 1f 00 00 00 00 00 ....T.c@.^1@......a....... +715 0x00003826 control 12 -1 695913 0 -1 695913 0 ff ff ff ff 69 9e 0a 00 00 00 00 00 ....i....... +716 0x00003832 control 12 -2 80013 79995 -2 80013 79995 fe ff ff ff 8d 38 01 00 7b 38 01 00 .....8..{8.. +717 0x0000383e control 12 34 704429 0 34 704429 0 22 00 00 00 ad bf 0a 00 00 00 00 00 """..........." +718 0x0000384a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6356992 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 61 00 02 00 00 00 00 00 a0 1a 0f c3 9d 01 00 00 .....!...o3.......a............... +719 0x0000386c control 12 67 704430 0 67 704430 0 43 00 00 00 ae bf 0a 00 00 00 00 00 C........... +720 0x00003878 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 61 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 90 08 38 9d 81 a9 18 ?.....3...|8...........a.......=B.....&......... +721 0x000038bb control 12 26 704431 0 26 704431 0 1a 00 00 00 af bf 0a 00 00 00 00 00 ............ +722 0x000038c7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 140705792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 08 1f 00 00 00 00 00 ....T.c@.^1@......c....... +723 0x000038e1 control 12 -1 695914 0 -1 695914 0 ff ff ff ff 6a 9e 0a 00 00 00 00 00 ....j....... +724 0x000038ed control 12 30 704432 0 30 704432 0 1e 00 00 00 b0 bf 0a 00 00 00 00 00 ............ +725 0x000038f9 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 140836864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +726 0x00003917 control 12 -1 695915 0 -1 695915 0 ff ff ff ff 6b 9e 0a 00 00 00 00 00 ....k....... +727 0x00003923 control 12 -1 695916 0 -1 695916 0 ff ff ff ff 6c 9e 0a 00 00 00 00 00 ....l....... +728 0x0000392f control 12 26 704433 0 26 704433 0 1a 00 00 00 b1 bf 0a 00 00 00 00 00 ............ +729 0x0000393b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 140967936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 08 1f 00 00 00 00 00 ....T.c@.^1@......g....... +730 0x00003955 control 12 -1 695917 0 -1 695917 0 ff ff ff ff 6d 9e 0a 00 00 00 00 00 ....m....... +731 0x00003961 control 12 26 704434 0 26 704434 0 1a 00 00 00 b2 bf 0a 00 00 00 00 00 ............ +732 0x0000396d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 141099008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 08 1f 00 00 00 00 00 ....T.c@.^1@......i....... +733 0x00003987 control 12 -1 695918 0 -1 695918 0 ff ff ff ff 6e 9e 0a 00 00 00 00 00 ....n....... +734 0x00003993 control 12 101 704435 0 101 704435 0 65 00 00 00 b3 bf 0a 00 00 00 00 00 e........... +735 0x0000399f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6422528 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 62 00 02 00 00 00 00 00 d1 1b 0f c3 9d 01 00 00 .....!...o3.......b............... +736 0x000039c1 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 62 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 18 f8 32 4a 9d 81 a9 18 ?.....3...|8...........b.......=B.....&......... +737 0x00003a04 control 12 -1 695919 0 -1 695919 0 ff ff ff ff 6f 9e 0a 00 00 00 00 00 ....o....... +738 0x00003a10 control 12 30 704436 0 30 704436 0 1e 00 00 00 b4 bf 0a 00 00 00 00 00 ............ +739 0x00003a1c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 141230080 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......k........... +740 0x00003a3a control 12 -1 695920 0 -1 695920 0 ff ff ff ff 70 9e 0a 00 00 00 00 00 ....p....... +741 0x00003a46 control 12 26 704437 0 26 704437 0 1a 00 00 00 b5 bf 0a 00 00 00 00 00 ............ +742 0x00003a52 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 141361152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 08 1f 00 00 00 00 00 ....T.c@.^1@......m....... +743 0x00003a6c control 12 -1 695921 0 -1 695921 0 ff ff ff ff 71 9e 0a 00 00 00 00 00 ....q....... +744 0x00003a78 control 12 26 704438 0 26 704438 0 1a 00 00 00 b6 bf 0a 00 00 00 00 00 ............ +745 0x00003a84 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 141492224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 08 1f 00 00 00 00 00 ....T.c@.^1@......o....... +746 0x00003a9e control 12 -1 695922 0 -1 695922 0 ff ff ff ff 72 9e 0a 00 00 00 00 00 ....r....... +747 0x00003aaa control 12 -2 80014 79996 -2 80014 79996 fe ff ff ff 8e 38 01 00 7c 38 01 00 .....8..|8.. +748 0x00003ab6 control 12 26 704439 0 26 704439 0 1a 00 00 00 b7 bf 0a 00 00 00 00 00 ............ +749 0x00003ac2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 141623296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 08 1f 00 00 00 00 00 ....T.c@.^1@......q....... +750 0x00003adc control 12 -1 695923 0 -1 695923 0 ff ff ff ff 73 9e 0a 00 00 00 00 00 ....s....... +751 0x00003ae8 control 12 34 704440 0 34 704440 0 22 00 00 00 b8 bf 0a 00 00 00 00 00 """..........." +752 0x00003af4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6488064 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 63 00 02 00 00 00 00 00 01 1d 0f c3 9d 01 00 00 .....!...o3.......c............... +753 0x00003b16 control 12 67 704441 0 67 704441 0 43 00 00 00 b9 bf 0a 00 00 00 00 00 C........... +754 0x00003b22 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 63 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c 8f 59 5c 9d 81 a9 18 ?.....3...|8...........c.......=B.....&......... +755 0x00003b65 control 12 -1 695924 0 -1 695924 0 ff ff ff ff 74 9e 0a 00 00 00 00 00 ....t....... +756 0x00003b71 control 12 30 704442 0 30 704442 0 1e 00 00 00 ba bf 0a 00 00 00 00 00 ............ +757 0x00003b7d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 141754368 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 73 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......s........... +758 0x00003b9b control 12 -1 695925 0 -1 695925 0 ff ff ff ff 75 9e 0a 00 00 00 00 00 ....u....... +759 0x00003ba7 control 12 26 704443 0 26 704443 0 1a 00 00 00 bb bf 0a 00 00 00 00 00 ............ +760 0x00003bb3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 141885440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 08 1f 00 00 00 00 00 ....T.c@.^1@......u....... +761 0x00003bcd control 12 -1 695926 0 -1 695926 0 ff ff ff ff 76 9e 0a 00 00 00 00 00 ....v....... +762 0x00003bd9 control 12 26 704444 0 26 704444 0 1a 00 00 00 bc bf 0a 00 00 00 00 00 ............ +763 0x00003be5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 142016512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 08 1f 00 00 00 00 00 ....T.c@.^1@......w....... +764 0x00003bff control 12 -1 695927 0 -1 695927 0 ff ff ff ff 77 9e 0a 00 00 00 00 00 ....w....... +765 0x00003c0b control 12 26 704445 0 26 704445 0 1a 00 00 00 bd bf 0a 00 00 00 00 00 ............ +766 0x00003c17 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 142147584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 08 1f 00 00 00 00 00 ....T.c@.^1@......y....... +767 0x00003c31 control 12 -1 695928 0 -1 695928 0 ff ff ff ff 78 9e 0a 00 00 00 00 00 ....x....... +768 0x00003c3d control 12 101 704446 0 101 704446 0 65 00 00 00 be bf 0a 00 00 00 00 00 e........... +769 0x00003c49 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6553600 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 64 00 02 00 00 00 00 00 32 1e 0f c3 9d 01 00 00 .....!...o3.......d.......2....... +770 0x00003c6b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 64 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 9b 86 6e 9d 81 a9 18 ?.....3...|8...........d.......=B.....&......... +771 0x00003cae control 12 -1 695929 0 -1 695929 0 ff ff ff ff 79 9e 0a 00 00 00 00 00 ....y....... +772 0x00003cba control 12 30 704447 0 30 704447 0 1e 00 00 00 bf bf 0a 00 00 00 00 00 ............ +773 0x00003cc6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 142278656 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......{........... +774 0x00003ce4 control 12 -1 695930 0 -1 695930 0 ff ff ff ff 7a 9e 0a 00 00 00 00 00 ....z....... +775 0x00003cf0 control 12 26 704448 0 26 704448 0 1a 00 00 00 c0 bf 0a 00 00 00 00 00 ............ +776 0x00003cfc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 142409728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 08 1f 00 00 00 00 00 ....T.c@.^1@......}....... +777 0x00003d16 control 12 -1 695931 0 -1 695931 0 ff ff ff ff 7b 9e 0a 00 00 00 00 00 ....{....... +778 0x00003d22 control 12 -2 80015 79997 -2 80015 79997 fe ff ff ff 8f 38 01 00 7d 38 01 00 .....8..}8.. +779 0x00003d2e control 12 26 704449 0 26 704449 0 1a 00 00 00 c1 bf 0a 00 00 00 00 00 ............ +780 0x00003d3a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 142540800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +781 0x00003d54 control 12 -1 695932 0 -1 695932 0 ff ff ff ff 7c 9e 0a 00 00 00 00 00 ....|....... +782 0x00003d60 control 12 26 704450 0 26 704450 0 1a 00 00 00 c2 bf 0a 00 00 00 00 00 ............ +783 0x00003d6c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 142671872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +784 0x00003d86 control 12 -1 695933 0 -1 695933 0 ff ff ff ff 7d 9e 0a 00 00 00 00 00 ....}....... +785 0x00003d92 control 12 34 704451 0 34 704451 0 22 00 00 00 c3 bf 0a 00 00 00 00 00 """..........." +786 0x00003d9e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6619136 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 65 00 02 00 00 00 00 00 63 1f 0f c3 9d 01 00 00 .....!...o3.......e.......c....... +787 0x00003dc0 control 12 67 704452 0 67 704452 0 43 00 00 00 c4 bf 0a 00 00 00 00 00 C........... +788 0x00003dcc data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 65 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 56 b1 80 9d 81 a9 18 ?.....3...|8...........e.......=B.....&......... +789 0x00003e0f control 12 -1 695934 0 -1 695934 0 ff ff ff ff 7e 9e 0a 00 00 00 00 00 ....~....... +790 0x00003e1b control 12 30 704453 0 30 704453 0 1e 00 00 00 c5 bf 0a 00 00 00 00 00 ............ +791 0x00003e27 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 142802944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 83 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +792 0x00003e45 control 12 -1 695935 0 -1 695935 0 ff ff ff ff 7f 9e 0a 00 00 00 00 00 ............ +793 0x00003e51 control 12 26 704454 0 26 704454 0 1a 00 00 00 c6 bf 0a 00 00 00 00 00 ............ +794 0x00003e5d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 142934016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +795 0x00003e77 control 12 -1 695936 0 -1 695936 0 ff ff ff ff 80 9e 0a 00 00 00 00 00 ............ +796 0x00003e83 control 12 26 704455 0 26 704455 0 1a 00 00 00 c7 bf 0a 00 00 00 00 00 ............ +797 0x00003e8f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 143065088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +798 0x00003ea9 control 12 -1 695937 0 -1 695937 0 ff ff ff ff 81 9e 0a 00 00 00 00 00 ............ +799 0x00003eb5 control 12 -2 80016 79998 -2 80016 79998 fe ff ff ff 90 38 01 00 7e 38 01 00 .....8..~8.. +800 0x00003ec1 control 12 26 704456 0 26 704456 0 1a 00 00 00 c8 bf 0a 00 00 00 00 00 ............ +801 0x00003ecd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 143196160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +802 0x00003ee7 control 12 -1 695938 0 -1 695938 0 ff ff ff ff 82 9e 0a 00 00 00 00 00 ............ +803 0x00003ef3 control 12 34 704457 0 34 704457 0 22 00 00 00 c9 bf 0a 00 00 00 00 00 """..........." +804 0x00003eff data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6684672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 66 00 02 00 00 00 00 00 92 20 0f c3 9d 01 00 00 .....!...o3.......f........ ...... +805 0x00003f21 control 12 67 704458 0 67 704458 0 43 00 00 00 ca bf 0a 00 00 00 00 00 C........... +806 0x00003f2d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 66 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 c3 c6 92 9d 81 a9 18 ?.....3...|8...........f.......=B.....&......... +807 0x00003f70 control 12 -1 695939 0 -1 695939 0 ff ff ff ff 83 9e 0a 00 00 00 00 00 ............ +808 0x00003f7c control 12 30 704459 0 30 704459 0 1e 00 00 00 cb bf 0a 00 00 00 00 00 ............ +809 0x00003f88 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 143327232 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +810 0x00003fa6 control 12 -1 695940 0 -1 695940 0 ff ff ff ff 84 9e 0a 00 00 00 00 00 ............ +811 0x00003fb2 control 12 26 704460 0 26 704460 0 1a 00 00 00 cc bf 0a 00 00 00 00 00 ............ +812 0x00003fbe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 143458304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +813 0x00003fd8 control 12 -1 695941 0 -1 695941 0 ff ff ff ff 85 9e 0a 00 00 00 00 00 ............ +814 0x00003fe4 control 12 26 704461 0 26 704461 0 1a 00 00 00 cd bf 0a 00 00 00 00 00 ............ +815 0x00003ff0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 143589376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +816 0x0000400a control 12 -1 695942 0 -1 695942 0 ff ff ff ff 86 9e 0a 00 00 00 00 00 ............ +817 0x00004016 control 12 26 704462 0 26 704462 0 1a 00 00 00 ce bf 0a 00 00 00 00 00 ............ +818 0x00004022 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 143720448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +819 0x0000403c control 12 -1 695943 0 -1 695943 0 ff ff ff ff 87 9e 0a 00 00 00 00 00 ............ +820 0x00004048 control 12 101 704463 0 101 704463 0 65 00 00 00 cf bf 0a 00 00 00 00 00 e........... +821 0x00004054 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6750208 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 00 02 00 00 00 00 00 c3 21 0f c3 9d 01 00 00 .....!...o3.......g........!...... +822 0x00004076 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 67 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 e0 f3 a4 9d 81 a9 18 ?.....3...|8...........g.......=B.....&......... +823 0x000040b9 control 12 -1 695944 0 -1 695944 0 ff ff ff ff 88 9e 0a 00 00 00 00 00 ............ +824 0x000040c5 control 12 30 704464 0 30 704464 0 1e 00 00 00 d0 bf 0a 00 00 00 00 00 ............ +825 0x000040d1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 143851520 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +826 0x000040ef control 12 -1 695945 0 -1 695945 0 ff ff ff ff 89 9e 0a 00 00 00 00 00 ............ +827 0x000040fb control 12 26 704465 0 26 704465 0 1a 00 00 00 d1 bf 0a 00 00 00 00 00 ............ +828 0x00004107 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 143982592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +829 0x00004121 control 12 -1 695946 0 -1 695946 0 ff ff ff ff 8a 9e 0a 00 00 00 00 00 ............ +830 0x0000412d control 12 -2 80017 79999 -2 80017 79999 fe ff ff ff 91 38 01 00 7f 38 01 00 .....8...8.. +831 0x00004139 control 12 26 704466 0 26 704466 0 1a 00 00 00 d2 bf 0a 00 00 00 00 00 ............ +832 0x00004145 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 144113664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +833 0x0000415f control 12 -1 695947 0 -1 695947 0 ff ff ff ff 8b 9e 0a 00 00 00 00 00 ............ +834 0x0000416b control 12 26 704467 0 26 704467 0 1a 00 00 00 d3 bf 0a 00 00 00 00 00 ............ +835 0x00004177 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 144244736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +836 0x00004191 control 12 -1 695948 0 -1 695948 0 ff ff ff ff 8c 9e 0a 00 00 00 00 00 ............ +837 0x0000419d control 12 101 704468 0 101 704468 0 65 00 00 00 d4 bf 0a 00 00 00 00 00 e........... +838 0x000041a9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6815744 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 00 02 00 00 00 00 00 f4 22 0f c3 9d 01 00 00 ".....!...o3.......h........""......" +839 0x000041cb data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 68 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 d6 17 b7 9d 81 a9 18 ?.....3...|8...........h.......=B.....&......... +840 0x0000420e control 12 -1 695949 0 -1 695949 0 ff ff ff ff 8d 9e 0a 00 00 00 00 00 ............ +841 0x0000421a control 12 30 704469 0 30 704469 0 1e 00 00 00 d5 bf 0a 00 00 00 00 00 ............ +842 0x00004226 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 144375808 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +843 0x00004244 control 12 -1 695950 0 -1 695950 0 ff ff ff ff 8e 9e 0a 00 00 00 00 00 ............ +844 0x00004250 control 12 26 704470 0 26 704470 0 1a 00 00 00 d6 bf 0a 00 00 00 00 00 ............ +845 0x0000425c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 144506880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +846 0x00004276 control 12 -1 695951 0 -1 695951 0 ff ff ff ff 8f 9e 0a 00 00 00 00 00 ............ +847 0x00004282 control 12 26 704471 0 26 704471 0 1a 00 00 00 d7 bf 0a 00 00 00 00 00 ............ +848 0x0000428e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 144637952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +849 0x000042a8 control 12 -1 695952 0 -1 695952 0 ff ff ff ff 90 9e 0a 00 00 00 00 00 ............ +850 0x000042b4 control 12 26 704472 0 26 704472 0 1a 00 00 00 d8 bf 0a 00 00 00 00 00 ............ +851 0x000042c0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 144769024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +852 0x000042da control 12 -1 695953 0 -1 695953 0 ff ff ff ff 91 9e 0a 00 00 00 00 00 ............ +853 0x000042e6 control 12 34 704473 0 34 704473 0 22 00 00 00 d9 bf 0a 00 00 00 00 00 """..........." +854 0x000042f2 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6881280 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 69 00 02 00 00 00 00 00 24 24 0f c3 9d 01 00 00 .....!...o3.......i.......$$...... +855 0x00004314 control 12 67 704474 0 67 704474 0 43 00 00 00 da bf 0a 00 00 00 00 00 C........... +856 0x00004320 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 69 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 91 43 c9 9d 81 a9 18 ?.....3...|8...........i.......=B.....&......... +857 0x00004363 control 12 -1 695954 0 -1 695954 0 ff ff ff ff 92 9e 0a 00 00 00 00 00 ............ +858 0x0000436f control 12 30 704475 0 30 704475 0 1e 00 00 00 db bf 0a 00 00 00 00 00 ............ +859 0x0000437b data 30 26 1660931669 1345985458 1660931669 1345985458 196609 144900096 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +860 0x00004399 control 12 -1 695955 0 -1 695955 0 ff ff ff ff 93 9e 0a 00 00 00 00 00 ............ +861 0x000043a5 control 12 -2 80018 80000 -2 80018 80000 fe ff ff ff 92 38 01 00 80 38 01 00 .....8...8.. +862 0x000043b1 control 12 26 704476 0 26 704476 0 1a 00 00 00 dc bf 0a 00 00 00 00 00 ............ +863 0x000043bd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 145031168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +864 0x000043d7 control 12 -1 695956 0 -1 695956 0 ff ff ff ff 94 9e 0a 00 00 00 00 00 ............ +865 0x000043e3 control 12 26 704477 0 26 704477 0 1a 00 00 00 dd bf 0a 00 00 00 00 00 ............ +866 0x000043ef data 26 22 1080266580 1076977378 1080266580 1076977378 196609 145162240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +867 0x00004409 control 12 -1 695957 0 -1 695957 0 ff ff ff ff 95 9e 0a 00 00 00 00 00 ............ +868 0x00004415 control 12 26 704478 0 26 704478 0 1a 00 00 00 de bf 0a 00 00 00 00 00 ............ +869 0x00004421 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 145293312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +870 0x0000443b control 12 -1 695958 0 -1 695958 0 ff ff ff ff 96 9e 0a 00 00 00 00 00 ............ +871 0x00004447 control 12 101 704479 0 101 704479 0 65 00 00 00 df bf 0a 00 00 00 00 00 e........... +872 0x00004453 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 6946816 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 00 02 00 00 00 00 00 55 25 0f c3 9d 01 00 00 .....!...o3.......j.......U%...... +873 0x00004475 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6a 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 1d 70 db 9d 81 a9 18 ?.....3...|8...........j.......=B.....&......... +874 0x000044b8 control 12 -1 695959 0 -1 695959 0 ff ff ff ff 97 9e 0a 00 00 00 00 00 ............ +875 0x000044c4 control 12 30 704480 0 30 704480 0 1e 00 00 00 e0 bf 0a 00 00 00 00 00 ............ +876 0x000044d0 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 145424384 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +877 0x000044ee control 12 -1 695960 0 -1 695960 0 ff ff ff ff 98 9e 0a 00 00 00 00 00 ............ +878 0x000044fa control 12 26 704481 0 26 704481 0 1a 00 00 00 e1 bf 0a 00 00 00 00 00 ............ +879 0x00004506 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 145555456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +880 0x00004520 control 12 -1 695961 0 -1 695961 0 ff ff ff ff 99 9e 0a 00 00 00 00 00 ............ +881 0x0000452c control 12 26 704482 0 26 704482 0 1a 00 00 00 e2 bf 0a 00 00 00 00 00 ............ +882 0x00004538 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 145686528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +883 0x00004552 control 12 -1 695962 0 -1 695962 0 ff ff ff ff 9a 9e 0a 00 00 00 00 00 ............ +884 0x0000455e control 12 -2 80019 80001 -2 80019 80001 fe ff ff ff 93 38 01 00 81 38 01 00 .....8...8.. +885 0x0000456a control 12 26 704483 0 26 704483 0 1a 00 00 00 e3 bf 0a 00 00 00 00 00 ............ +886 0x00004576 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 145817600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +887 0x00004590 control 12 -1 695963 0 -1 695963 0 ff ff ff ff 9b 9e 0a 00 00 00 00 00 ............ +888 0x0000459c control 12 101 704484 0 101 704484 0 65 00 00 00 e4 bf 0a 00 00 00 00 00 e........... +889 0x000045a8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7012352 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6b 00 02 00 00 00 00 00 86 26 0f c3 9d 01 00 00 .....!...o3.......k........&...... +890 0x000045ca data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6b 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 9b 93 ed 9d 81 a9 18 ?.....3...|8...........k.......=B.....&......... +891 0x0000460d control 12 -1 695964 0 -1 695964 0 ff ff ff ff 9c 9e 0a 00 00 00 00 00 ............ +892 0x00004619 control 12 30 704485 0 30 704485 0 1e 00 00 00 e5 bf 0a 00 00 00 00 00 ............ +893 0x00004625 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 145948672 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +894 0x00004643 control 12 -1 695965 0 -1 695965 0 ff ff ff ff 9d 9e 0a 00 00 00 00 00 ............ +895 0x0000464f control 12 26 704486 0 26 704486 0 1a 00 00 00 e6 bf 0a 00 00 00 00 00 ............ +896 0x0000465b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 146079744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +897 0x00004675 control 12 -1 695966 0 -1 695966 0 ff ff ff ff 9e 9e 0a 00 00 00 00 00 ............ +898 0x00004681 control 12 26 704487 0 26 704487 0 1a 00 00 00 e7 bf 0a 00 00 00 00 00 ............ +899 0x0000468d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 146210816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +900 0x000046a7 control 12 -1 695967 0 -1 695967 0 ff ff ff ff 9f 9e 0a 00 00 00 00 00 ............ +901 0x000046b3 control 12 26 704488 0 26 704488 0 1a 00 00 00 e8 bf 0a 00 00 00 00 00 ............ +902 0x000046bf data 26 22 1080266580 1076977378 1080266580 1076977378 196609 146341888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +903 0x000046d9 control 12 -1 695968 0 -1 695968 0 ff ff ff ff a0 9e 0a 00 00 00 00 00 ............ +904 0x000046e5 control 12 34 704489 0 34 704489 0 22 00 00 00 e9 bf 0a 00 00 00 00 00 """..........." +905 0x000046f1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7077888 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6c 00 02 00 00 00 00 00 b6 27 0f c3 9d 01 00 00 .....!...o3.......l........'...... +906 0x00004713 control 12 67 704490 0 67 704490 0 43 00 00 00 ea bf 0a 00 00 00 00 00 C........... +907 0x0000471f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6c 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 c4 c2 ff 9d 81 a9 18 ?.....3...|8...........l.......=B.....&......... +908 0x00004762 control 12 -1 695969 0 -1 695969 0 ff ff ff ff a1 9e 0a 00 00 00 00 00 ............ +909 0x0000476e control 12 30 704491 0 30 704491 0 1e 00 00 00 eb bf 0a 00 00 00 00 00 ............ +910 0x0000477a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 146472960 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +911 0x00004798 control 12 -1 695970 0 -1 695970 0 ff ff ff ff a2 9e 0a 00 00 00 00 00 ............ +912 0x000047a4 control 12 26 704492 0 26 704492 0 1a 00 00 00 ec bf 0a 00 00 00 00 00 ............ +913 0x000047b0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 146604032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +914 0x000047ca control 12 -1 695971 0 -1 695971 0 ff ff ff ff a3 9e 0a 00 00 00 00 00 ............ +915 0x000047d6 control 12 -2 80020 80002 -2 80020 80002 fe ff ff ff 94 38 01 00 82 38 01 00 .....8...8.. +916 0x000047e2 control 12 26 704493 0 26 704493 0 1a 00 00 00 ed bf 0a 00 00 00 00 00 ............ +917 0x000047ee data 26 22 1080266580 1076977378 1080266580 1076977378 196609 146735104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +918 0x00004808 control 12 -1 695972 0 -1 695972 0 ff ff ff ff a4 9e 0a 00 00 00 00 00 ............ +919 0x00004814 control 12 26 704494 0 26 704494 0 1a 00 00 00 ee bf 0a 00 00 00 00 00 ............ +920 0x00004820 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 146866176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +921 0x0000483a control 12 -1 695973 0 -1 695973 0 ff ff ff ff a5 9e 0a 00 00 00 00 00 ............ +922 0x00004846 control 12 101 704495 0 101 704495 0 65 00 00 00 ef bf 0a 00 00 00 00 00 e........... +923 0x00004852 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7143424 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 00 02 00 00 00 00 00 e6 28 0f c3 9d 01 00 00 .....!...o3.......m........(...... +924 0x00004874 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6d 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 90 d7 11 9e 81 a9 18 ?.....3...|8...........m.......=B.....&......... +925 0x000048b7 control 12 -1 695974 0 -1 695974 0 ff ff ff ff a6 9e 0a 00 00 00 00 00 ............ +926 0x000048c3 control 12 30 704496 0 30 704496 0 1e 00 00 00 f0 bf 0a 00 00 00 00 00 ............ +927 0x000048cf data 30 26 1660931669 1345985458 1660931669 1345985458 196609 146997248 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +928 0x000048ed control 12 -1 695975 0 -1 695975 0 ff ff ff ff a7 9e 0a 00 00 00 00 00 ............ +929 0x000048f9 control 12 26 704497 0 26 704497 0 1a 00 00 00 f1 bf 0a 00 00 00 00 00 ............ +930 0x00004905 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 147128320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +931 0x0000491f control 12 -1 695976 0 -1 695976 0 ff ff ff ff a8 9e 0a 00 00 00 00 00 ............ +932 0x0000492b control 12 26 704498 0 26 704498 0 1a 00 00 00 f2 bf 0a 00 00 00 00 00 ............ +933 0x00004937 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 147259392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +934 0x00004951 control 12 -1 695977 0 -1 695977 0 ff ff ff ff a9 9e 0a 00 00 00 00 00 ............ +935 0x0000495d control 12 26 704499 0 26 704499 0 1a 00 00 00 f3 bf 0a 00 00 00 00 00 ............ +936 0x00004969 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 147390464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +937 0x00004983 control 12 -1 695978 0 -1 695978 0 ff ff ff ff aa 9e 0a 00 00 00 00 00 ............ +938 0x0000498f control 12 -2 80021 80003 -2 80021 80003 fe ff ff ff 95 38 01 00 83 38 01 00 .....8...8.. +939 0x0000499b control 12 101 704500 0 101 704500 0 65 00 00 00 f4 bf 0a 00 00 00 00 00 e........... +940 0x000049a7 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7208960 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6e 00 02 00 00 00 00 00 17 2a 0f c3 9d 01 00 00 .....!...o3.......n........*...... +941 0x000049c9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 70 0a 24 9e 81 a9 18 ?.....3...|8...........n.......=B.....&......... +942 0x00004a0c control 12 -1 695979 0 -1 695979 0 ff ff ff ff ab 9e 0a 00 00 00 00 00 ............ +943 0x00004a18 control 12 30 704501 0 30 704501 0 1e 00 00 00 f5 bf 0a 00 00 00 00 00 ............ +944 0x00004a24 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 147521536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +945 0x00004a42 control 12 -1 695980 0 -1 695980 0 ff ff ff ff ac 9e 0a 00 00 00 00 00 ............ +946 0x00004a4e control 12 26 704502 0 26 704502 0 1a 00 00 00 f6 bf 0a 00 00 00 00 00 ............ +947 0x00004a5a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 147652608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +948 0x00004a74 control 12 -1 695981 0 -1 695981 0 ff ff ff ff ad 9e 0a 00 00 00 00 00 ............ +949 0x00004a80 control 12 26 704503 0 26 704503 0 1a 00 00 00 f7 bf 0a 00 00 00 00 00 ............ +950 0x00004a8c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 147783680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +951 0x00004aa6 control 12 -1 695982 0 -1 695982 0 ff ff ff ff ae 9e 0a 00 00 00 00 00 ............ +952 0x00004ab2 control 12 26 704504 0 26 704504 0 1a 00 00 00 f8 bf 0a 00 00 00 00 00 ............ +953 0x00004abe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 147914752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +954 0x00004ad8 control 12 -1 695983 0 -1 695983 0 ff ff ff ff af 9e 0a 00 00 00 00 00 ............ +955 0x00004ae4 control 12 101 704505 0 101 704505 0 65 00 00 00 f9 bf 0a 00 00 00 00 00 e........... +956 0x00004af0 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7274496 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6f 00 02 00 00 00 00 00 47 2b 0f c3 9d 01 00 00 .....!...o3.......o.......G+...... +957 0x00004b12 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6f 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e4 dc 21 36 9e 81 a9 18 ?.....3...|8...........o.......=B.....&......... +958 0x00004b55 control 12 -1 695984 0 -1 695984 0 ff ff ff ff b0 9e 0a 00 00 00 00 00 ............ +959 0x00004b61 control 12 30 704506 0 30 704506 0 1e 00 00 00 fa bf 0a 00 00 00 00 00 ............ +960 0x00004b6d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 148045824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +961 0x00004b8b control 12 -1 695985 0 -1 695985 0 ff ff ff ff b1 9e 0a 00 00 00 00 00 ............ +962 0x00004b97 control 12 26 704507 0 26 704507 0 1a 00 00 00 fb bf 0a 00 00 00 00 00 ............ +963 0x00004ba3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 148176896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +964 0x00004bbd control 12 -1 695986 0 -1 695986 0 ff ff ff ff b2 9e 0a 00 00 00 00 00 ............ +965 0x00004bc9 control 12 26 704508 0 26 704508 0 1a 00 00 00 fc bf 0a 00 00 00 00 00 ............ +966 0x00004bd5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 148307968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +967 0x00004bef control 12 -1 695987 0 -1 695987 0 ff ff ff ff b3 9e 0a 00 00 00 00 00 ............ +968 0x00004bfb control 12 -2 80022 80004 -2 80022 80004 fe ff ff ff 96 38 01 00 84 38 01 00 .....8...8.. +969 0x00004c07 control 12 26 704509 0 26 704509 0 1a 00 00 00 fd bf 0a 00 00 00 00 00 ............ +970 0x00004c13 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 148439040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +971 0x00004c2d control 12 -1 695988 0 -1 695988 0 ff ff ff ff b4 9e 0a 00 00 00 00 00 ............ +972 0x00004c39 control 12 34 704510 0 34 704510 0 22 00 00 00 fe bf 0a 00 00 00 00 00 """..........." +973 0x00004c45 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7340032 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 70 00 02 00 00 00 00 00 77 2c 0f c3 9d 01 00 00 .....!...o3.......p.......w,...... +974 0x00004c67 control 12 67 704511 0 67 704511 0 43 00 00 00 ff bf 0a 00 00 00 00 00 C........... +975 0x00004c73 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 70 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 a6 47 48 9e 81 a9 18 ?.....3...|8...........p.......=B.....&......... +976 0x00004cb6 control 12 -1 695989 0 -1 695989 0 ff ff ff ff b5 9e 0a 00 00 00 00 00 ............ +977 0x00004cc2 control 12 30 704512 0 30 704512 0 1e 00 00 00 00 c0 0a 00 00 00 00 00 ............ +978 0x00004cce data 30 26 1660931669 1345985458 1660931669 1345985458 196609 148570112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +979 0x00004cec control 12 -1 695990 0 -1 695990 0 ff ff ff ff b6 9e 0a 00 00 00 00 00 ............ +980 0x00004cf8 control 12 26 704513 0 26 704513 0 1a 00 00 00 01 c0 0a 00 00 00 00 00 ............ +981 0x00004d04 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 148701184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +982 0x00004d1e control 12 -1 695991 0 -1 695991 0 ff ff ff ff b7 9e 0a 00 00 00 00 00 ............ +983 0x00004d2a control 12 26 704514 0 26 704514 0 1a 00 00 00 02 c0 0a 00 00 00 00 00 ............ +984 0x00004d36 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 148832256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +985 0x00004d50 control 12 -1 695992 0 -1 695992 0 ff ff ff ff b8 9e 0a 00 00 00 00 00 ............ +986 0x00004d5c control 12 26 704515 0 26 704515 0 1a 00 00 00 03 c0 0a 00 00 00 00 00 ............ +987 0x00004d68 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 148963328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +988 0x00004d82 control 12 -1 695993 0 -1 695993 0 ff ff ff ff b9 9e 0a 00 00 00 00 00 ............ +989 0x00004d8e control 12 34 704516 0 34 704516 0 22 00 00 00 04 c0 0a 00 00 00 00 00 """..........." +990 0x00004d9a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7405568 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 71 00 02 00 00 00 00 00 a7 2d 0f c3 9d 01 00 00 .....!...o3.......q........-...... +991 0x00004dbc control 12 67 704517 0 67 704517 0 43 00 00 00 05 c0 0a 00 00 00 00 00 C........... +992 0x00004dc8 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 71 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e0 a6 73 5a 9e 81 a9 18 ?.....3...|8...........q.......=B.....&......... +993 0x00004e0b control 12 -1 695994 0 -1 695994 0 ff ff ff ff ba 9e 0a 00 00 00 00 00 ............ +994 0x00004e17 control 12 30 704518 0 30 704518 0 1e 00 00 00 06 c0 0a 00 00 00 00 00 ............ +995 0x00004e23 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 149094400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +996 0x00004e41 control 12 -1 695995 0 -1 695995 0 ff ff ff ff bb 9e 0a 00 00 00 00 00 ............ +997 0x00004e4d control 12 -2 80023 80005 -2 80023 80005 fe ff ff ff 97 38 01 00 85 38 01 00 .....8...8.. +998 0x00004e59 control 12 26 704519 0 26 704519 0 1a 00 00 00 07 c0 0a 00 00 00 00 00 ............ +999 0x00004e65 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 149225472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1000 0x00004e7f control 12 -1 695996 0 -1 695996 0 ff ff ff ff bc 9e 0a 00 00 00 00 00 ............ +1001 0x00004e8b control 12 26 704520 0 26 704520 0 1a 00 00 00 08 c0 0a 00 00 00 00 00 ............ +1002 0x00004e97 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 149356544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1003 0x00004eb1 control 12 -1 695997 0 -1 695997 0 ff ff ff ff bd 9e 0a 00 00 00 00 00 ............ +1004 0x00004ebd control 12 26 704521 0 26 704521 0 1a 00 00 00 09 c0 0a 00 00 00 00 00 ............ +1005 0x00004ec9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 149487616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1006 0x00004ee3 control 12 -1 695998 0 -1 695998 0 ff ff ff ff be 9e 0a 00 00 00 00 00 ............ +1007 0x00004eef control 12 34 704522 0 34 704522 0 22 00 00 00 0a c0 0a 00 00 00 00 00 """..........." +1008 0x00004efb data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7471104 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 72 00 02 00 00 00 00 00 d8 2e 0f c3 9d 01 00 00 .....!...o3.......r............... +1009 0x00004f1d control 12 67 704523 0 67 704523 0 43 00 00 00 0b c0 0a 00 00 00 00 00 C........... +1010 0x00004f29 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 72 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 a0 8d 6c 9e 81 a9 18 ?.....3...|8...........r.......=B.....&......... +1011 0x00004f6c control 12 -1 695999 0 -1 695999 0 ff ff ff ff bf 9e 0a 00 00 00 00 00 ............ +1012 0x00004f78 control 12 30 704524 0 30 704524 0 1e 00 00 00 0c c0 0a 00 00 00 00 00 ............ +1013 0x00004f84 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 149618688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1014 0x00004fa2 control 12 -1 696000 0 -1 696000 0 ff ff ff ff c0 9e 0a 00 00 00 00 00 ............ +1015 0x00004fae control 12 26 704525 0 26 704525 0 1a 00 00 00 0d c0 0a 00 00 00 00 00 ............ +1016 0x00004fba data 26 22 1080266580 1076977378 1080266580 1076977378 196609 149749760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1017 0x00004fd4 control 12 -1 696001 0 -1 696001 0 ff ff ff ff c1 9e 0a 00 00 00 00 00 ............ +1018 0x00004fe0 control 12 26 704526 0 26 704526 0 1a 00 00 00 0e c0 0a 00 00 00 00 00 ............ +1019 0x00004fec data 26 22 1080266580 1076977378 1080266580 1076977378 196609 149880832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1020 0x00005006 control 12 -1 696002 0 -1 696002 0 ff ff ff ff c2 9e 0a 00 00 00 00 00 ............ +1021 0x00005012 control 12 -2 80024 80006 -2 80024 80006 fe ff ff ff 98 38 01 00 86 38 01 00 .....8...8.. +1022 0x0000501e control 12 26 704527 0 26 704527 0 1a 00 00 00 0f c0 0a 00 00 00 00 00 ............ +1023 0x0000502a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 150011904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1024 0x00005044 control 12 -1 696003 0 -1 696003 0 ff ff ff ff c3 9e 0a 00 00 00 00 00 ............ +1025 0x00005050 control 12 101 704528 0 101 704528 0 65 00 00 00 10 c0 0a 00 00 00 00 00 e........... +1026 0x0000505c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7536640 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 73 00 02 00 00 00 00 00 09 30 0f c3 9d 01 00 00 .....!...o3.......s........0...... +1027 0x0000507e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 73 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 c5 ba 7e 9e 81 a9 18 ?.....3...|8...........s.......=B.....&......... +1028 0x000050c1 control 12 -1 696004 0 -1 696004 0 ff ff ff ff c4 9e 0a 00 00 00 00 00 ............ +1029 0x000050cd control 12 30 704529 0 30 704529 0 1e 00 00 00 11 c0 0a 00 00 00 00 00 ............ +1030 0x000050d9 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 150142976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1031 0x000050f7 control 12 -1 696005 0 -1 696005 0 ff ff ff ff c5 9e 0a 00 00 00 00 00 ............ +1032 0x00005103 control 12 26 704530 0 26 704530 0 1a 00 00 00 12 c0 0a 00 00 00 00 00 ............ +1033 0x0000510f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 150274048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1034 0x00005129 control 12 -1 696006 0 -1 696006 0 ff ff ff ff c6 9e 0a 00 00 00 00 00 ............ +1035 0x00005135 control 12 26 704531 0 26 704531 0 1a 00 00 00 13 c0 0a 00 00 00 00 00 ............ +1036 0x00005141 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 150405120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1037 0x0000515b control 12 -1 696007 0 -1 696007 0 ff ff ff ff c7 9e 0a 00 00 00 00 00 ............ +1038 0x00005167 control 12 101 704532 0 101 704532 0 65 00 00 00 14 c0 0a 00 00 00 00 00 e........... +1039 0x00005173 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7602176 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 74 00 02 00 00 00 00 00 39 31 0f c3 9d 01 00 00 .....!...o3.......t.......91...... +1040 0x00005195 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 74 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c0 2c d7 90 9e 81 a9 18 ?.....3...|8...........t.......=B.....&......... +1041 0x000051d8 control 12 26 704533 0 26 704533 0 1a 00 00 00 15 c0 0a 00 00 00 00 00 ............ +1042 0x000051e4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 150536192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1043 0x000051fe control 12 -1 696008 0 -1 696008 0 ff ff ff ff c8 9e 0a 00 00 00 00 00 ............ +1044 0x0000520a control 12 -1 696009 0 -1 696009 0 ff ff ff ff c9 9e 0a 00 00 00 00 00 ............ +1045 0x00005216 control 12 30 704534 0 30 704534 0 1e 00 00 00 16 c0 0a 00 00 00 00 00 ............ +1046 0x00005222 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 150667264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1047 0x00005240 control 12 -1 696010 0 -1 696010 0 ff ff ff ff ca 9e 0a 00 00 00 00 00 ............ +1048 0x0000524c control 12 26 704535 0 26 704535 0 1a 00 00 00 17 c0 0a 00 00 00 00 00 ............ +1049 0x00005258 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 150798336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1050 0x00005272 control 12 -1 696011 0 -1 696011 0 ff ff ff ff cb 9e 0a 00 00 00 00 00 ............ +1051 0x0000527e control 12 -2 80025 80007 -2 80025 80007 fe ff ff ff 99 38 01 00 87 38 01 00 .....8...8.. +1052 0x0000528a control 12 26 704536 0 26 704536 0 1a 00 00 00 18 c0 0a 00 00 00 00 00 ............ +1053 0x00005296 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 150929408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +1054 0x000052b0 control 12 -1 696012 0 -1 696012 0 ff ff ff ff cc 9e 0a 00 00 00 00 00 ............ +1055 0x000052bc control 12 34 704537 0 34 704537 0 22 00 00 00 19 c0 0a 00 00 00 00 00 """..........." +1056 0x000052c8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7667712 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 75 00 02 00 00 00 00 00 6a 32 0f c3 9d 01 00 00 .....!...o3.......u.......j2...... +1057 0x000052ea control 12 67 704538 0 67 704538 0 43 00 00 00 1a c0 0a 00 00 00 00 00 C........... +1058 0x000052f6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 75 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 46 10 a3 9e 81 a9 18 ?.....3...|8...........u.......=B.....&......... +1059 0x00005339 control 12 -1 696013 0 -1 696013 0 ff ff ff ff cd 9e 0a 00 00 00 00 00 ............ +1060 0x00005345 control 12 30 704539 0 30 704539 0 1e 00 00 00 1b c0 0a 00 00 00 00 00 ............ +1061 0x00005351 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 151060480 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 01 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1062 0x0000536f control 12 -1 696014 0 -1 696014 0 ff ff ff ff ce 9e 0a 00 00 00 00 00 ............ +1063 0x0000537b control 12 26 704540 0 26 704540 0 1a 00 00 00 1c c0 0a 00 00 00 00 00 ............ +1064 0x00005387 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 151191552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1065 0x000053a1 control 12 -1 696015 0 -1 696015 0 ff ff ff ff cf 9e 0a 00 00 00 00 00 ............ +1066 0x000053ad control 12 26 704541 0 26 704541 0 1a 00 00 00 1d c0 0a 00 00 00 00 00 ............ +1067 0x000053b9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 151322624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1068 0x000053d3 control 12 -1 696016 0 -1 696016 0 ff ff ff ff d0 9e 0a 00 00 00 00 00 ............ +1069 0x000053df control 12 26 704542 0 26 704542 0 1a 00 00 00 1e c0 0a 00 00 00 00 00 ............ +1070 0x000053eb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 151453696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1071 0x00005405 control 12 -1 696017 0 -1 696017 0 ff ff ff ff d1 9e 0a 00 00 00 00 00 ............ +1072 0x00005411 control 12 101 704543 0 101 704543 0 65 00 00 00 1f c0 0a 00 00 00 00 00 e........... +1073 0x0000541d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7733248 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 76 00 02 00 00 00 00 00 9a 33 0f c3 9d 01 00 00 .....!...o3.......v........3...... +1074 0x0000543f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 76 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 64 44 24 b5 9e 81 a9 18 ?.....3...|8...........v.......=B.....&......... +1075 0x00005482 control 12 -1 696018 0 -1 696018 0 ff ff ff ff d2 9e 0a 00 00 00 00 00 ............ +1076 0x0000548e control 12 30 704544 0 30 704544 0 1e 00 00 00 20 c0 0a 00 00 00 00 00 .... ....... +1077 0x0000549a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 151584768 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1078 0x000054b8 control 12 -1 696019 0 -1 696019 0 ff ff ff ff d3 9e 0a 00 00 00 00 00 ............ +1079 0x000054c4 control 12 26 704545 0 26 704545 0 1a 00 00 00 21 c0 0a 00 00 00 00 00 ....!....... +1080 0x000054d0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 151715840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1081 0x000054ea control 12 -1 696020 0 -1 696020 0 ff ff ff ff d4 9e 0a 00 00 00 00 00 ............ +1082 0x000054f6 control 12 -2 80026 80008 -2 80026 80008 fe ff ff ff 9a 38 01 00 88 38 01 00 .....8...8.. +1083 0x00005502 control 12 26 704546 0 26 704546 0 1a 00 00 00 22 c0 0a 00 00 00 00 00 "....""......." +1084 0x0000550e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 151846912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1085 0x00005528 control 12 -1 696021 0 -1 696021 0 ff ff ff ff d5 9e 0a 00 00 00 00 00 ............ +1086 0x00005534 control 12 26 704547 0 26 704547 0 1a 00 00 00 23 c0 0a 00 00 00 00 00 ....#....... +1087 0x00005540 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 151977984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1088 0x0000555a control 12 -1 696022 0 -1 696022 0 ff ff ff ff d6 9e 0a 00 00 00 00 00 ............ +1089 0x00005566 control 12 101 704548 0 101 704548 0 65 00 00 00 24 c0 0a 00 00 00 00 00 e...$....... +1090 0x00005572 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7798784 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 77 00 02 00 00 00 00 00 cb 34 0f c3 9d 01 00 00 .....!...o3.......w........4...... +1091 0x00005594 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 77 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c 55 50 c7 9e 81 a9 18 ?.....3...|8...........w.......=B.....&......... +1092 0x000055d7 control 12 -1 696023 0 -1 696023 0 ff ff ff ff d7 9e 0a 00 00 00 00 00 ............ +1093 0x000055e3 control 12 30 704549 0 30 704549 0 1e 00 00 00 25 c0 0a 00 00 00 00 00 ....%....... +1094 0x000055ef data 30 26 1660931669 1345985458 1660931669 1345985458 196609 152109056 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 11 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1095 0x0000560d control 12 -1 696024 0 -1 696024 0 ff ff ff ff d8 9e 0a 00 00 00 00 00 ............ +1096 0x00005619 control 12 26 704550 0 26 704550 0 1a 00 00 00 26 c0 0a 00 00 00 00 00 ....&....... +1097 0x00005625 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 152240128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1098 0x0000563f control 12 -1 696025 0 -1 696025 0 ff ff ff ff d9 9e 0a 00 00 00 00 00 ............ +1099 0x0000564b control 12 26 704551 0 26 704551 0 1a 00 00 00 27 c0 0a 00 00 00 00 00 ....'....... +1100 0x00005657 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 152371200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1101 0x00005671 control 12 -1 696026 0 -1 696026 0 ff ff ff ff da 9e 0a 00 00 00 00 00 ............ +1102 0x0000567d control 12 26 704552 0 26 704552 0 1a 00 00 00 28 c0 0a 00 00 00 00 00 ....(....... +1103 0x00005689 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 152502272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1104 0x000056a3 control 12 -1 696027 0 -1 696027 0 ff ff ff ff db 9e 0a 00 00 00 00 00 ............ +1105 0x000056af control 12 -2 80027 80009 -2 80027 80009 fe ff ff ff 9b 38 01 00 89 38 01 00 .....8...8.. +1106 0x000056bb control 12 101 704553 0 101 704553 0 65 00 00 00 29 c0 0a 00 00 00 00 00 e...)....... +1107 0x000056c7 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7864320 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 78 00 02 00 00 00 00 00 fc 35 0f c3 9d 01 00 00 .....!...o3.......x........5...... +1108 0x000056e9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 78 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 68 81 7d d9 9e 81 a9 18 ?.....3...|8...........x.......=B.....&......... +1109 0x0000572c control 12 -1 696028 0 -1 696028 0 ff ff ff ff dc 9e 0a 00 00 00 00 00 ............ +1110 0x00005738 control 12 30 704554 0 30 704554 0 1e 00 00 00 2a c0 0a 00 00 00 00 00 ....*....... +1111 0x00005744 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 152633344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1112 0x00005762 control 12 -1 696029 0 -1 696029 0 ff ff ff ff dd 9e 0a 00 00 00 00 00 ............ +1113 0x0000576e control 12 26 704555 0 26 704555 0 1a 00 00 00 2b c0 0a 00 00 00 00 00 ....+....... +1114 0x0000577a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 152764416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1115 0x00005794 control 12 -1 696030 0 -1 696030 0 ff ff ff ff de 9e 0a 00 00 00 00 00 ............ +1116 0x000057a0 control 12 26 704556 0 26 704556 0 1a 00 00 00 2c c0 0a 00 00 00 00 00 ....,....... +1117 0x000057ac data 26 22 1080266580 1076977378 1080266580 1076977378 196609 152895488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1118 0x000057c6 control 12 -1 696031 0 -1 696031 0 ff ff ff ff df 9e 0a 00 00 00 00 00 ............ +1119 0x000057d2 control 12 26 704557 0 26 704557 0 1a 00 00 00 2d c0 0a 00 00 00 00 00 ....-....... +1120 0x000057de data 26 22 1080266580 1076977378 1080266580 1076977378 196609 153026560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +1121 0x000057f8 control 12 -1 696032 0 -1 696032 0 ff ff ff ff e0 9e 0a 00 00 00 00 00 ............ +1122 0x00005804 control 12 101 704558 0 101 704558 0 65 00 00 00 2e c0 0a 00 00 00 00 00 e........... +1123 0x00005810 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7929856 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 79 00 02 00 00 00 00 00 2c 37 0f c3 9d 01 00 00 .....!...o3.......y.......,7...... +1124 0x00005832 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 79 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 14 a4 eb 9e 81 a9 18 ?.....3...|8...........y.......=B.....&......... +1125 0x00005875 control 12 -1 696033 0 -1 696033 0 ff ff ff ff e1 9e 0a 00 00 00 00 00 ............ +1126 0x00005881 control 12 30 704559 0 30 704559 0 1e 00 00 00 2f c0 0a 00 00 00 00 00 ..../....... +1127 0x0000588d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 153157632 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +1128 0x000058ab control 12 -1 696034 0 -1 696034 0 ff ff ff ff e2 9e 0a 00 00 00 00 00 ............ +1129 0x000058b7 control 12 26 704560 0 26 704560 0 1a 00 00 00 30 c0 0a 00 00 00 00 00 ....0....... +1130 0x000058c3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 153288704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 09 1f 00 00 00 00 00 ....T.c@.^1@......#....... +1131 0x000058dd control 12 -1 696035 0 -1 696035 0 ff ff ff ff e3 9e 0a 00 00 00 00 00 ............ +1132 0x000058e9 control 12 26 704561 0 26 704561 0 1a 00 00 00 31 c0 0a 00 00 00 00 00 ....1....... +1133 0x000058f5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 153419776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 09 1f 00 00 00 00 00 ....T.c@.^1@......%....... +1134 0x0000590f control 12 -1 696036 0 -1 696036 0 ff ff ff ff e4 9e 0a 00 00 00 00 00 ............ +1135 0x0000591b control 12 -2 80028 80010 -2 80028 80010 fe ff ff ff 9c 38 01 00 8a 38 01 00 .....8...8.. +1136 0x00005927 control 12 26 704562 0 26 704562 0 1a 00 00 00 32 c0 0a 00 00 00 00 00 ....2....... +1137 0x00005933 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 153550848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 09 1f 00 00 00 00 00 ....T.c@.^1@......'....... +1138 0x0000594d control 12 -1 696037 0 -1 696037 0 ff ff ff ff e5 9e 0a 00 00 00 00 00 ............ +1139 0x00005959 control 12 34 704563 0 34 704563 0 22 00 00 00 33 c0 0a 00 00 00 00 00 """...3......." +1140 0x00005965 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 7995392 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7a 00 02 00 00 00 00 00 5c 38 0f c3 9d 01 00 00 .....!...o3.......z.......\8...... +1141 0x00005987 control 12 67 704564 0 67 704564 0 43 00 00 00 34 c0 0a 00 00 00 00 00 C...4....... +1142 0x00005993 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7a 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 90 55 c1 fd 9e 81 a9 18 ?.....3...|8...........z.......=B.....&......... +1143 0x000059d6 control 12 -1 696038 0 -1 696038 0 ff ff ff ff e6 9e 0a 00 00 00 00 00 ............ +1144 0x000059e2 control 12 30 704565 0 30 704565 0 1e 00 00 00 35 c0 0a 00 00 00 00 00 ....5....... +1145 0x000059ee data 30 26 1660931669 1345985458 1660931669 1345985458 196609 153681920 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +1146 0x00005a0c control 12 -1 696039 0 -1 696039 0 ff ff ff ff e7 9e 0a 00 00 00 00 00 ............ +1147 0x00005a18 control 12 26 704566 0 26 704566 0 1a 00 00 00 36 c0 0a 00 00 00 00 00 ....6....... +1148 0x00005a24 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 153812992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 09 1f 00 00 00 00 00 ....T.c@.^1@......+....... +1149 0x00005a3e control 12 -1 696040 0 -1 696040 0 ff ff ff ff e8 9e 0a 00 00 00 00 00 ............ +1150 0x00005a4a control 12 26 704567 0 26 704567 0 1a 00 00 00 37 c0 0a 00 00 00 00 00 ....7....... +1151 0x00005a56 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 153944064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 09 1f 00 00 00 00 00 ....T.c@.^1@......-....... +1152 0x00005a70 control 12 -1 696041 0 -1 696041 0 ff ff ff ff e9 9e 0a 00 00 00 00 00 ............ +1153 0x00005a7c control 12 26 704568 0 26 704568 0 1a 00 00 00 38 c0 0a 00 00 00 00 00 ....8....... +1154 0x00005a88 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 154075136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 09 1f 00 00 00 00 00 ....T.c@.^1@....../....... +1155 0x00005aa2 control 12 -1 696042 0 -1 696042 0 ff ff ff ff ea 9e 0a 00 00 00 00 00 ............ +1156 0x00005aae control 12 101 704569 0 101 704569 0 65 00 00 00 39 c0 0a 00 00 00 00 00 e...9....... +1157 0x00005aba data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 8060928 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7b 00 02 00 00 00 00 00 8c 39 0f c3 9d 01 00 00 .....!...o3.......{........9...... +1158 0x00005adc data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7b 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 77 df 0f 9f 81 a9 18 ?.....3...|8...........{.......=B.....&......... +1159 0x00005b1f control 12 -1 696043 0 -1 696043 0 ff ff ff ff eb 9e 0a 00 00 00 00 00 ............ +1160 0x00005b2b control 12 30 704570 0 30 704570 0 1e 00 00 00 3a c0 0a 00 00 00 00 00 ....:....... +1161 0x00005b37 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 154206208 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +1162 0x00005b55 control 12 -1 696044 0 -1 696044 0 ff ff ff ff ec 9e 0a 00 00 00 00 00 ............ +1163 0x00005b61 control 12 26 704571 0 26 704571 0 1a 00 00 00 3b c0 0a 00 00 00 00 00 ....;....... +1164 0x00005b6d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 154337280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 09 1f 00 00 00 00 00 ....T.c@.^1@......3....... +1165 0x00005b87 control 12 -1 696045 0 -1 696045 0 ff ff ff ff ed 9e 0a 00 00 00 00 00 ............ +1166 0x00005b93 control 12 -2 80029 80011 -2 80029 80011 fe ff ff ff 9d 38 01 00 8b 38 01 00 .....8...8.. +1167 0x00005b9f control 12 26 704572 0 26 704572 0 1a 00 00 00 3c c0 0a 00 00 00 00 00 ....<....... +1168 0x00005bab data 26 22 1080266580 1076977378 1080266580 1076977378 196609 154468352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 09 1f 00 00 00 00 00 ....T.c@.^1@......5....... +1169 0x00005bc5 control 12 -1 696046 0 -1 696046 0 ff ff ff ff ee 9e 0a 00 00 00 00 00 ............ +1170 0x00005bd1 control 12 26 704573 0 26 704573 0 1a 00 00 00 3d c0 0a 00 00 00 00 00 ....=....... +1171 0x00005bdd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 154599424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 09 1f 00 00 00 00 00 ....T.c@.^1@......7....... +1172 0x00005bf7 control 12 -1 696047 0 -1 696047 0 ff ff ff ff ef 9e 0a 00 00 00 00 00 ............ +1173 0x00005c03 control 12 101 704574 0 101 704574 0 65 00 00 00 3e c0 0a 00 00 00 00 00 e...>....... +1174 0x00005c0f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 8126464 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7c 00 02 00 00 00 00 00 bc 3a 0f c3 9d 01 00 00 .....!...o3.......|........:...... +1175 0x00005c31 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7c 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 c0 03 22 9f 81 a9 18 ?.....3...|8...........|.......=B.....&......... +1176 0x00005c74 control 12 -1 696048 0 -1 696048 0 ff ff ff ff f0 9e 0a 00 00 00 00 00 ............ +1177 0x00005c80 control 12 30 704575 0 30 704575 0 1e 00 00 00 3f c0 0a 00 00 00 00 00 ....?....... +1178 0x00005c8c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 154730496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +1179 0x00005caa control 12 -1 696049 0 -1 696049 0 ff ff ff ff f1 9e 0a 00 00 00 00 00 ............ +1180 0x00005cb6 control 12 26 704576 0 26 704576 0 1a 00 00 00 40 c0 0a 00 00 00 00 00 ....@....... +1181 0x00005cc2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 154861568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 09 1f 00 00 00 00 00 ....T.c@.^1@......;....... +1182 0x00005cdc control 12 -1 696050 0 -1 696050 0 ff ff ff ff f2 9e 0a 00 00 00 00 00 ............ +1183 0x00005ce8 control 12 26 704577 0 26 704577 0 1a 00 00 00 41 c0 0a 00 00 00 00 00 ....A....... +1184 0x00005cf4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 154992640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 09 1f 00 00 00 00 00 ....T.c@.^1@......=....... +1185 0x00005d0e control 12 -1 696051 0 -1 696051 0 ff ff ff ff f3 9e 0a 00 00 00 00 00 ............ +1186 0x00005d1a control 12 -2 80030 80012 -2 80030 80012 fe ff ff ff 9e 38 01 00 8c 38 01 00 .....8...8.. +1187 0x00005d26 control 12 26 704578 0 26 704578 0 1a 00 00 00 42 c0 0a 00 00 00 00 00 ....B....... +1188 0x00005d32 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 155123712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 09 1f 00 00 00 00 00 ....T.c@.^1@......?....... +1189 0x00005d4c control 12 -1 696052 0 -1 696052 0 ff ff ff ff f4 9e 0a 00 00 00 00 00 ............ +1190 0x00005d58 control 12 34 704579 0 34 704579 0 22 00 00 00 43 c0 0a 00 00 00 00 00 """...C......." +1191 0x00005d64 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 8192000 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7d 00 02 00 00 00 00 00 ec 3b 0f c3 9d 01 00 00 .....!...o3.......}........;...... +1192 0x00005d86 control 12 67 704580 0 67 704580 0 43 00 00 00 44 c0 0a 00 00 00 00 00 C...D....... +1193 0x00005d92 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7d 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 aa 21 34 9f 81 a9 18 ?.....3...|8...........}.......=B.....&......... +1194 0x00005dd5 control 12 -1 696053 0 -1 696053 0 ff ff ff ff f5 9e 0a 00 00 00 00 00 ............ +1195 0x00005de1 control 12 30 704581 0 30 704581 0 1e 00 00 00 45 c0 0a 00 00 00 00 00 ....E....... +1196 0x00005ded data 30 26 1660931669 1345985458 1660931669 1345985458 196609 155254784 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +1197 0x00005e0b control 12 -1 696054 0 -1 696054 0 ff ff ff ff f6 9e 0a 00 00 00 00 00 ............ +1198 0x00005e17 control 12 26 704582 0 26 704582 0 1a 00 00 00 46 c0 0a 00 00 00 00 00 ....F....... +1199 0x00005e23 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 155385856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 09 1f 00 00 00 00 00 ....T.c@.^1@......C....... +1200 0x00005e3d control 12 -1 696055 0 -1 696055 0 ff ff ff ff f7 9e 0a 00 00 00 00 00 ............ +1201 0x00005e49 control 12 26 704583 0 26 704583 0 1a 00 00 00 47 c0 0a 00 00 00 00 00 ....G....... +1202 0x00005e55 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 155516928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 09 1f 00 00 00 00 00 ....T.c@.^1@......E....... +1203 0x00005e6f control 12 -1 696056 0 -1 696056 0 ff ff ff ff f8 9e 0a 00 00 00 00 00 ............ +1204 0x00005e7b control 12 26 704584 0 26 704584 0 1a 00 00 00 48 c0 0a 00 00 00 00 00 ....H....... +1205 0x00005e87 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 155648000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 09 1f 00 00 00 00 00 ....T.c@.^1@......G....... +1206 0x00005ea1 control 12 -1 696057 0 -1 696057 0 ff ff ff ff f9 9e 0a 00 00 00 00 00 ............ +1207 0x00005ead control 12 34 704585 0 34 704585 0 22 00 00 00 49 c0 0a 00 00 00 00 00 """...I......." +1208 0x00005eb9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 8257536 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7e 00 02 00 00 00 00 00 1c 3d 0f c3 9d 01 00 00 .....!...o3.......~........=...... +1209 0x00005edb control 12 67 704586 0 67 704586 0 43 00 00 00 4a c0 0a 00 00 00 00 00 C...J....... +1210 0x00005ee7 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c 1a 3a 46 9f 81 a9 18 ?.....3...|8...........~.......=B.....&......... +1211 0x00005f2a control 12 -1 696058 0 -1 696058 0 ff ff ff ff fa 9e 0a 00 00 00 00 00 ............ +1212 0x00005f36 control 12 30 704587 0 30 704587 0 1e 00 00 00 4b c0 0a 00 00 00 00 00 ....K....... +1213 0x00005f42 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 155779072 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +1214 0x00005f60 control 12 -1 696059 0 -1 696059 0 ff ff ff ff fb 9e 0a 00 00 00 00 00 ............ +1215 0x00005f6c control 12 26 704588 0 26 704588 0 1a 00 00 00 4c c0 0a 00 00 00 00 00 ....L....... +1216 0x00005f78 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 155910144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 09 1f 00 00 00 00 00 ....T.c@.^1@......K....... +1217 0x00005f92 control 12 -1 696060 0 -1 696060 0 ff ff ff ff fc 9e 0a 00 00 00 00 00 ............ +1218 0x00005f9e control 12 -2 80031 80013 -2 80031 80013 fe ff ff ff 9f 38 01 00 8d 38 01 00 .....8...8.. +1219 0x00005faa control 12 26 704589 0 26 704589 0 1a 00 00 00 4d c0 0a 00 00 00 00 00 ....M....... +1220 0x00005fb6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 156041216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 09 1f 00 00 00 00 00 ....T.c@.^1@......M....... +1221 0x00005fd0 control 12 -1 696061 0 -1 696061 0 ff ff ff ff fd 9e 0a 00 00 00 00 00 ............ +1222 0x00005fdc control 12 26 704590 0 26 704590 0 1a 00 00 00 4e c0 0a 00 00 00 00 00 ....N....... +1223 0x00005fe8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 156172288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 09 1f 00 00 00 00 00 ....T.c@.^1@......O....... +1224 0x00006002 control 12 -1 696062 0 -1 696062 0 ff ff ff ff fe 9e 0a 00 00 00 00 00 ............ +1225 0x0000600e control 12 101 704591 0 101 704591 0 65 00 00 00 4f c0 0a 00 00 00 00 00 e...O....... +1226 0x0000601a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 8323072 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7f 00 02 00 00 00 00 00 4c 3e 0f c3 9d 01 00 00 .....!...o3...............L>...... +1227 0x0000603c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7f 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 d4 58 58 9f 81 a9 18 ?.....3...|8...................=B.....&......... +1228 0x0000607f control 12 -1 696063 0 -1 696063 0 ff ff ff ff ff 9e 0a 00 00 00 00 00 ............ +1229 0x0000608b control 12 30 704592 0 30 704592 0 1e 00 00 00 50 c0 0a 00 00 00 00 00 ....P....... +1230 0x00006097 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 156303360 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +1231 0x000060b5 control 12 -1 696064 0 -1 696064 0 ff ff ff ff 00 9f 0a 00 00 00 00 00 ............ +1232 0x000060c1 control 12 26 704593 0 26 704593 0 1a 00 00 00 51 c0 0a 00 00 00 00 00 ....Q....... +1233 0x000060cd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 156434432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 09 1f 00 00 00 00 00 ....T.c@.^1@......S....... +1234 0x000060e7 control 12 -1 696065 0 -1 696065 0 ff ff ff ff 01 9f 0a 00 00 00 00 00 ............ +1235 0x000060f3 control 12 26 704594 0 26 704594 0 1a 00 00 00 52 c0 0a 00 00 00 00 00 ....R....... +1236 0x000060ff data 26 22 1080266580 1076977378 1080266580 1076977378 196609 156565504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 09 1f 00 00 00 00 00 ....T.c@.^1@......U....... +1237 0x00006119 control 12 -1 696066 0 -1 696066 0 ff ff ff ff 02 9f 0a 00 00 00 00 00 ............ +1238 0x00006125 control 12 26 704595 0 26 704595 0 1a 00 00 00 53 c0 0a 00 00 00 00 00 ....S....... +1239 0x00006131 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 156696576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 09 1f 00 00 00 00 00 ....T.c@.^1@......W....... +1240 0x0000614b control 12 -1 696067 0 -1 696067 0 ff ff ff ff 03 9f 0a 00 00 00 00 00 ............ +1241 0x00006157 control 12 34 704596 0 34 704596 0 22 00 00 00 54 c0 0a 00 00 00 00 00 """...T......." +1242 0x00006163 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 8388608 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 80 00 02 00 00 00 00 00 7c 3f 0f c3 9d 01 00 00 .....!...o3...............|?...... +1243 0x00006185 control 12 67 704597 0 67 704597 0 43 00 00 00 55 c0 0a 00 00 00 00 00 C...U....... +1244 0x00006191 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 80 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 96 74 6a 9f 81 a9 18 ?.....3...|8...................=B.....&......... +1245 0x000061d4 control 12 -1 696068 0 -1 696068 0 ff ff ff ff 04 9f 0a 00 00 00 00 00 ............ +1246 0x000061e0 control 12 30 704598 0 30 704598 0 1e 00 00 00 56 c0 0a 00 00 00 00 00 ....V....... +1247 0x000061ec data 30 26 1660931669 1345985458 1660931669 1345985458 196609 156827648 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +1248 0x0000620a control 12 -1 696069 0 -1 696069 0 ff ff ff ff 05 9f 0a 00 00 00 00 00 ............ +1249 0x00006216 control 12 -2 80032 80014 -2 80032 80014 fe ff ff ff a0 38 01 00 8e 38 01 00 .....8...8.. +1250 0x00006222 control 12 26 704599 0 26 704599 0 1a 00 00 00 57 c0 0a 00 00 00 00 00 ....W....... +1251 0x0000622e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 156958720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 09 1f 00 00 00 00 00 ....T.c@.^1@......[....... +1252 0x00006248 control 12 -1 696070 0 -1 696070 0 ff ff ff ff 06 9f 0a 00 00 00 00 00 ............ +1253 0x00006254 control 12 26 704600 0 26 704600 0 1a 00 00 00 58 c0 0a 00 00 00 00 00 ....X....... +1254 0x00006260 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 157089792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 09 1f 00 00 00 00 00 ....T.c@.^1@......]....... +1255 0x0000627a control 12 -1 696071 0 -1 696071 0 ff ff ff ff 07 9f 0a 00 00 00 00 00 ............ diff --git a/captures/016-loopback-write-test-int-advised/mixed-stream-57433-to-57415.tsv b/captures/016-loopback-write-test-int-advised/mixed-stream-57433-to-57415.tsv new file mode 100644 index 0000000..1e5983a --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/mixed-stream-57433-to-57415.tsv @@ -0,0 +1,1210 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 -1 704208 0 -1 704208 0 ff ff ff ff d0 be 0a 00 00 00 00 00 ............ +1 0x0000000c control 12 22 695688 0 22 695688 0 16 00 00 00 88 9d 0a 00 00 00 00 00 ............ +2 0x00000018 data 22 18 2033439 0 2033439 0 196609 0 12 00 00 00 1f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3 0x0000002e control 12 -1 704209 0 -1 704209 0 ff ff ff ff d1 be 0a 00 00 00 00 00 ............ +4 0x0000003a control 12 -1 704210 0 -1 704210 0 ff ff ff ff d2 be 0a 00 00 00 00 00 ............ +5 0x00000046 control 12 52 695689 0 52 695689 0 34 00 00 00 89 9d 0a 00 00 00 00 00 4........... +6 0x00000052 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 38 00 02 00 00 00 00 00 00 00 99 2a 21 6a 4a 01 00 00 "0...Dk.................L."".([.....8..........*!j" +7 0x00000086 control 12 -1 704211 0 -1 704211 0 ff ff ff ff d3 be 0a 00 00 00 00 00 ............ +8 0x00000092 control 12 26 695690 0 26 695690 0 1a 00 00 00 8a 9d 0a 00 00 00 00 00 ............ +9 0x0000009e data 26 22 2033441 0 2033441 0 196609 0 16 00 00 00 21 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +10 0x000000b8 control 12 -1 704212 0 -1 704212 0 ff ff ff ff d4 be 0a 00 00 00 00 00 ............ +11 0x000000c4 control 12 22 695691 0 22 695691 0 16 00 00 00 8b 9d 0a 00 00 00 00 00 ............ +12 0x000000d0 data 22 18 2033443 0 2033443 0 196609 0 12 00 00 00 23 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +13 0x000000e6 control 12 -1 704213 0 -1 704213 0 ff ff ff ff d5 be 0a 00 00 00 00 00 ............ +14 0x000000f2 control 12 22 695692 0 22 695692 0 16 00 00 00 8c 9d 0a 00 00 00 00 00 ............ +15 0x000000fe data 22 18 2033445 0 2033445 0 196609 0 12 00 00 00 25 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +16 0x00000114 control 12 -1 704214 0 -1 704214 0 ff ff ff ff d6 be 0a 00 00 00 00 00 ............ +17 0x00000120 control 12 22 695693 0 22 695693 0 16 00 00 00 8d 9d 0a 00 00 00 00 00 ............ +18 0x0000012c data 22 18 2033447 0 2033447 0 196609 0 12 00 00 00 27 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +19 0x00000142 control 12 -2 79971 79988 -2 79971 79988 fe ff ff ff 63 38 01 00 74 38 01 00 ....c8..t8.. +20 0x0000014e control 12 -1 704215 0 -1 704215 0 ff ff ff ff d7 be 0a 00 00 00 00 00 ............ +21 0x0000015a control 12 52 695694 0 52 695694 0 34 00 00 00 8e 9d 0a 00 00 00 00 00 4........... +22 0x00000166 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 39 00 02 00 00 00 00 00 00 00 dc 81 4f 6a 4a 01 00 00 "0...Dk.................L."".([.....9...........Oj" +23 0x0000019a control 12 -1 704216 0 -1 704216 0 ff ff ff ff d8 be 0a 00 00 00 00 00 ............ +24 0x000001a6 control 12 26 695695 0 26 695695 0 1a 00 00 00 8f 9d 0a 00 00 00 00 00 ............ +25 0x000001b2 data 26 22 2033449 0 2033449 0 196609 0 16 00 00 00 29 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +26 0x000001cc control 12 -1 704217 0 -1 704217 0 ff ff ff ff d9 be 0a 00 00 00 00 00 ............ +27 0x000001d8 control 12 22 695696 0 22 695696 0 16 00 00 00 90 9d 0a 00 00 00 00 00 ............ +28 0x000001e4 data 22 18 2033451 0 2033451 0 196609 0 12 00 00 00 2b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +29 0x000001fa control 12 -1 704218 0 -1 704218 0 ff ff ff ff da be 0a 00 00 00 00 00 ............ +30 0x00000206 control 12 22 695697 0 22 695697 0 16 00 00 00 91 9d 0a 00 00 00 00 00 ............ +31 0x00000212 data 22 18 2033453 0 2033453 0 196609 0 12 00 00 00 2d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +32 0x00000228 control 12 -1 704219 0 -1 704219 0 ff ff ff ff db be 0a 00 00 00 00 00 ............ +33 0x00000234 control 12 22 695698 0 22 695698 0 16 00 00 00 92 9d 0a 00 00 00 00 00 ............ +34 0x00000240 data 22 18 2033455 0 2033455 0 196609 0 12 00 00 00 2f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +35 0x00000256 control 12 -1 704220 0 -1 704220 0 ff ff ff ff dc be 0a 00 00 00 00 00 ............ +36 0x00000262 control 12 -1 704221 0 -1 704221 0 ff ff ff ff dd be 0a 00 00 00 00 00 ............ +37 0x0000026e control 12 52 695699 0 52 695699 0 34 00 00 00 93 9d 0a 00 00 00 00 00 4........... +38 0x0000027a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3a 00 02 00 00 00 00 00 00 00 fc d3 7d 6a 4a 01 00 00 "0...Dk.................L."".([.....:...........}j" +39 0x000002ae control 12 -1 704222 0 -1 704222 0 ff ff ff ff de be 0a 00 00 00 00 00 ............ +40 0x000002ba control 12 26 695700 0 26 695700 0 1a 00 00 00 94 9d 0a 00 00 00 00 00 ............ +41 0x000002c6 data 26 22 2033457 0 2033457 0 196609 0 16 00 00 00 31 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +42 0x000002e0 control 12 -1 704223 0 -1 704223 0 ff ff ff ff df be 0a 00 00 00 00 00 ............ +43 0x000002ec control 12 22 695701 0 22 695701 0 16 00 00 00 95 9d 0a 00 00 00 00 00 ............ +44 0x000002f8 data 22 18 2033459 0 2033459 0 196609 0 12 00 00 00 33 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +45 0x0000030e control 12 -1 704224 0 -1 704224 0 ff ff ff ff e0 be 0a 00 00 00 00 00 ............ +46 0x0000031a control 12 22 695702 0 22 695702 0 16 00 00 00 96 9d 0a 00 00 00 00 00 ............ +47 0x00000326 data 22 18 2033461 0 2033461 0 196609 0 12 00 00 00 35 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +48 0x0000033c control 12 -2 79972 79989 -2 79972 79989 fe ff ff ff 64 38 01 00 75 38 01 00 ....d8..u8.. +49 0x00000348 control 12 -1 704225 0 -1 704225 0 ff ff ff ff e1 be 0a 00 00 00 00 00 ............ +50 0x00000354 control 12 22 695703 0 22 695703 0 16 00 00 00 97 9d 0a 00 00 00 00 00 ............ +51 0x00000360 data 22 18 2033463 0 2033463 0 196609 0 12 00 00 00 37 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +52 0x00000376 control 12 -1 704226 0 -1 704226 0 ff ff ff ff e2 be 0a 00 00 00 00 00 ............ +53 0x00000382 control 12 52 695704 0 52 695704 0 34 00 00 00 98 9d 0a 00 00 00 00 00 4........... +54 0x0000038e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3b 00 02 00 00 00 00 00 00 00 ed 6a ac 6a 4a 01 00 00 "0...Dk.................L."".([.....;..........j.j" +55 0x000003c2 control 12 -1 704227 0 -1 704227 0 ff ff ff ff e3 be 0a 00 00 00 00 00 ............ +56 0x000003ce control 12 26 695705 0 26 695705 0 1a 00 00 00 99 9d 0a 00 00 00 00 00 ............ +57 0x000003da data 26 22 2033465 0 2033465 0 196609 0 16 00 00 00 39 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +58 0x000003f4 control 12 -1 704228 0 -1 704228 0 ff ff ff ff e4 be 0a 00 00 00 00 00 ............ +59 0x00000400 control 12 22 695706 0 22 695706 0 16 00 00 00 9a 9d 0a 00 00 00 00 00 ............ +60 0x0000040c data 22 18 2033467 0 2033467 0 196609 0 12 00 00 00 3b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +61 0x00000422 control 12 -1 704229 0 -1 704229 0 ff ff ff ff e5 be 0a 00 00 00 00 00 ............ +62 0x0000042e control 12 22 695707 0 22 695707 0 16 00 00 00 9b 9d 0a 00 00 00 00 00 ............ +63 0x0000043a data 22 18 2033469 0 2033469 0 196609 0 12 00 00 00 3d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +64 0x00000450 control 12 -1 704230 0 -1 704230 0 ff ff ff ff e6 be 0a 00 00 00 00 00 ............ +65 0x0000045c control 12 52 695708 0 52 695708 0 34 00 00 00 9c 9d 0a 00 00 00 00 00 4........... +66 0x00000468 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3c 00 02 00 00 00 00 00 00 00 30 d1 da 6a 4a 01 00 00 "0...Dk.................L."".([.....<.........0..j" +67 0x0000049c control 12 -1 704231 0 -1 704231 0 ff ff ff ff e7 be 0a 00 00 00 00 00 ............ +68 0x000004a8 control 12 22 695709 0 22 695709 0 16 00 00 00 9d 9d 0a 00 00 00 00 00 ............ +69 0x000004b4 data 22 18 2033471 0 2033471 0 196609 0 12 00 00 00 3f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +70 0x000004ca control 12 -1 704232 0 -1 704232 0 ff ff ff ff e8 be 0a 00 00 00 00 00 ............ +71 0x000004d6 control 12 26 695710 0 26 695710 0 1a 00 00 00 9e 9d 0a 00 00 00 00 00 ............ +72 0x000004e2 data 26 22 2033473 0 2033473 0 196609 0 16 00 00 00 41 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +73 0x000004fc control 12 -2 79973 79990 -2 79973 79990 fe ff ff ff 65 38 01 00 76 38 01 00 ....e8..v8.. +74 0x00000508 control 12 -1 704233 0 -1 704233 0 ff ff ff ff e9 be 0a 00 00 00 00 00 ............ +75 0x00000514 control 12 22 695711 0 22 695711 0 16 00 00 00 9f 9d 0a 00 00 00 00 00 ............ +76 0x00000520 data 22 18 2033475 0 2033475 0 196609 0 12 00 00 00 43 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +77 0x00000536 control 12 -1 704234 0 -1 704234 0 ff ff ff ff ea be 0a 00 00 00 00 00 ............ +78 0x00000542 control 12 22 695712 0 22 695712 0 16 00 00 00 a0 9d 0a 00 00 00 00 00 ............ +79 0x0000054e data 22 18 2033477 0 2033477 0 196609 0 12 00 00 00 45 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +80 0x00000564 control 12 -1 704235 0 -1 704235 0 ff ff ff ff eb be 0a 00 00 00 00 00 ............ +81 0x00000570 control 12 52 695713 0 52 695713 0 34 00 00 00 a1 9d 0a 00 00 00 00 00 4........... +82 0x0000057c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3d 00 02 00 00 00 00 00 00 00 cc 3e 09 6b 4a 01 00 00 "0...Dk.................L."".([.....=..........>.k" +83 0x000005b0 control 12 -1 704236 0 -1 704236 0 ff ff ff ff ec be 0a 00 00 00 00 00 ............ +84 0x000005bc control 12 26 695714 0 26 695714 0 1a 00 00 00 a2 9d 0a 00 00 00 00 00 ............ +85 0x000005c8 data 26 22 2033479 0 2033479 0 196609 0 16 00 00 00 47 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....G..................... +86 0x000005e2 control 12 -1 704237 0 -1 704237 0 ff ff ff ff ed be 0a 00 00 00 00 00 ............ +87 0x000005ee control 12 22 695715 0 22 695715 0 16 00 00 00 a3 9d 0a 00 00 00 00 00 ............ +88 0x000005fa data 22 18 2033481 0 2033481 0 196609 0 12 00 00 00 49 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +89 0x00000610 control 12 -1 704238 0 -1 704238 0 ff ff ff ff ee be 0a 00 00 00 00 00 ............ +90 0x0000061c control 12 22 695716 0 22 695716 0 16 00 00 00 a4 9d 0a 00 00 00 00 00 ............ +91 0x00000628 data 22 18 2033483 0 2033483 0 196609 0 12 00 00 00 4b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +92 0x0000063e control 12 -1 704239 0 -1 704239 0 ff ff ff ff ef be 0a 00 00 00 00 00 ............ +93 0x0000064a control 12 22 695717 0 22 695717 0 16 00 00 00 a5 9d 0a 00 00 00 00 00 ............ +94 0x00000656 data 22 18 2033485 0 2033485 0 196609 0 12 00 00 00 4d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +95 0x0000066c control 12 77 695718 0 77 695718 0 4d 00 00 00 a6 9d 0a 00 00 00 00 00 M........... +96 0x00000678 data 77 73 238618099 1064498097 238618099 1064498097 -65535 318832639 49 00 00 00 f3 05 39 0e b1 f3 72 3f 01 00 ff ff ff ff 00 13 00 00 00 52 00 23 00 2e 00 43 00 61 00 63 00 68 00 65 00 2e 00 50 00 72 00 6f 00 63 00 65 00 73 00 73 00 69 00 6e 00 67 00 7d 91 0d c3 9d 01 00 00 c4 f0 0e c3 9d 01 00 00 I.....9...r?...........R.#...C.a.c.h.e...P.r.o.c +97 0x000006c5 control 12 32 695719 0 32 695719 0 20 00 00 00 a7 9d 0a 00 00 00 00 00 ........... +98 0x000006d1 data 32 28 -1528702273 -996712142 -1528702273 -996712142 -65535 1560346623 1c 00 00 00 bf da e1 a4 32 61 97 c4 01 00 ff ff ff ff 00 5d 0f b2 74 56 4d 19 b4 01 00 00 00 01 ........2a.........]..tVM....... +99 0x000006f1 control 12 32 695720 0 32 695720 0 20 00 00 00 a8 9d 0a 00 00 00 00 00 ........... +100 0x000006fd data 32 28 -1528702273 -996712142 -1528702273 -996712142 -65535 1560346623 1c 00 00 00 bf da e1 a4 32 61 97 c4 01 00 ff ff ff ff 00 5d 0f b2 74 56 4d 19 b4 01 00 00 00 00 ........2a.........]..tVM....... +101 0x0000071d control 12 27 695721 0 27 695721 0 1b 00 00 00 a9 9d 0a 00 00 00 00 00 ............ +102 0x00000729 data 27 23 241777755 1631757502 241777755 1631757502 -65535 65535 17 00 00 00 5b 3c 69 0e be a4 42 61 01 00 ff ff ff ff 00 00 00 00 00 00 00 00 00 ....[.........K.7k" +120 0x000008c1 control 12 -1 704242 0 -1 704242 0 ff ff ff ff f2 be 0a 00 00 00 00 00 ............ +121 0x000008cd control 12 26 695728 0 26 695728 0 1a 00 00 00 b0 9d 0a 00 00 00 00 00 ............ +122 0x000008d9 data 26 22 2033487 0 2033487 0 196609 0 16 00 00 00 4f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....O..................... +123 0x000008f3 control 12 -1 704243 0 -1 704243 0 ff ff ff ff f3 be 0a 00 00 00 00 00 ............ +124 0x000008ff control 12 22 695729 0 22 695729 0 16 00 00 00 b1 9d 0a 00 00 00 00 00 ............ +125 0x0000090b data 22 18 2033489 0 2033489 0 196609 0 12 00 00 00 51 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +126 0x00000921 control 12 24 695730 0 24 695730 0 18 00 00 00 b2 9d 0a 00 00 00 00 00 ............ +127 0x0000092d data 24 20 121786146 1305382478 121786146 1305382478 -65535 65535 14 00 00 00 22 4f 42 07 4e 8e ce 4d 01 00 ff ff ff ff 00 00 00 00 00 01 "....""OB.N..M............" +128 0x00000945 control 12 212 695731 0 212 695731 0 d4 00 00 00 b3 9d 0a 00 00 00 00 00 ............ +129 0x00000951 data 212 208 -282722438 667553208 -282722438 667553208 196609 212860928 d0 00 00 00 7a ff 25 ef b8 0d ca 27 01 00 03 00 00 00 b0 0c 00 00 00 00 00 00 2b 03 00 00 00 00 00 00 57 00 00 00 48 00 61 00 6e 00 64 00 6c 00 65 00 50 00 72 00 6f 00 6a 00 65 00 63 00 74 00 4d 00 6f 00 64 00 65 00 6c 00 43 00 68 00 61 00 ....z.%....'..............+.......W...H.a.n.d.l. +130 0x00000a25 control 12 -1 704244 0 -1 704244 0 ff ff ff ff f4 be 0a 00 00 00 00 00 ............ +131 0x00000a31 control 12 22 695732 0 22 695732 0 16 00 00 00 b4 9d 0a 00 00 00 00 00 ............ +132 0x00000a3d data 22 18 2033491 0 2033491 0 196609 0 12 00 00 00 53 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +133 0x00000a53 control 12 -1 704245 0 -1 704245 0 ff ff ff ff f5 be 0a 00 00 00 00 00 ............ +134 0x00000a5f control 12 22 695733 0 22 695733 0 16 00 00 00 b5 9d 0a 00 00 00 00 00 ............ +135 0x00000a6b data 22 18 2033493 0 2033493 0 196609 0 12 00 00 00 55 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +136 0x00000a81 control 12 235 695734 0 235 695734 0 eb 00 00 00 b6 9d 0a 00 00 00 00 00 ............ +137 0x00000a8d data 212 208 -282722438 667553208 -282722438 667553208 196609 213123072 d0 00 00 00 7a ff 25 ef b8 0d ca 27 01 00 03 00 00 00 b4 0c 00 00 00 00 00 00 2c 03 00 00 00 00 00 00 57 00 00 00 48 00 61 00 6e 00 64 00 6c 00 65 00 50 00 72 00 6f 00 6a 00 65 00 63 00 74 00 4d 00 6f 00 64 00 65 00 6c 00 43 00 68 00 61 00 ....z.%....'..............,.......W...H.a.n.d.l. +138 0x00000b61 data 23 19 1073614509 -779455853 1073614509 -779455853 196609 0 13 00 00 00 ad 0e fe 3f 93 72 8a d1 01 00 03 00 00 00 00 00 00 00 01 .......?.r............. +139 0x00000b78 control 12 -1 704246 0 -1 704246 0 ff ff ff ff f6 be 0a 00 00 00 00 00 ............ +140 0x00000b84 control 12 52 695735 0 52 695735 0 34 00 00 00 b7 9d 0a 00 00 00 00 00 4........... +141 0x00000b90 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3f 00 02 00 00 00 00 00 00 00 f7 a7 66 6b 4a 01 00 00 "0...Dk.................L."".([.....?...........fk" +142 0x00000bc4 control 12 -1 704247 0 -1 704247 0 ff ff ff ff f7 be 0a 00 00 00 00 00 ............ +143 0x00000bd0 control 12 26 695736 0 26 695736 0 1a 00 00 00 b8 9d 0a 00 00 00 00 00 ............ +144 0x00000bdc data 26 22 2033495 0 2033495 0 196609 0 16 00 00 00 57 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....W..................... +145 0x00000bf6 control 12 766 695737 0 766 695737 0 fe 02 00 00 b9 9d 0a 00 00 00 00 00 ............ +146 0x00000c02 data 766 762 -480140524 -1161981530 -480140524 -1161981530 -65535 65535 fa 02 00 00 14 a3 61 e3 a6 91 bd ba 01 00 ff ff ff ff 00 00 00 00 00 08 00 00 00 59 74 51 6d f0 a6 24 ac 44 00 00 00 02 00 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 05 04 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 07 ......a....................YtQm..$.D.......-...n +147 0x00000f00 control 12 -1 704248 0 -1 704248 0 ff ff ff ff f8 be 0a 00 00 00 00 00 ............ +148 0x00000f0c control 12 22 695738 0 22 695738 0 16 00 00 00 ba 9d 0a 00 00 00 00 00 ............ +149 0x00000f18 data 22 18 2033497 0 2033497 0 196609 0 12 00 00 00 59 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +150 0x00000f2e control 12 -1 704249 0 -1 704249 0 ff ff ff ff f9 be 0a 00 00 00 00 00 ............ +151 0x00000f3a control 12 22 695739 0 22 695739 0 16 00 00 00 bb 9d 0a 00 00 00 00 00 ............ +152 0x00000f46 data 22 18 2033499 0 2033499 0 196609 0 12 00 00 00 5b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +153 0x00000f5c control 12 -2 79975 79992 -2 79975 79992 fe ff ff ff 67 38 01 00 78 38 01 00 ....g8..x8.. +154 0x00000f68 control 12 24 695740 0 24 695740 0 18 00 00 00 bc 9d 0a 00 00 00 00 00 ............ +155 0x00000f74 data 24 20 121786146 1305382478 121786146 1305382478 -65535 65535 14 00 00 00 22 4f 42 07 4e 8e ce 4d 01 00 ff ff ff ff 00 00 00 00 00 00 "....""OB.N..M............" +156 0x00000f8c control 12 680 695741 0 680 695741 0 a8 02 00 00 bd 9d 0a 00 00 00 00 00 ............ +157 0x00000f98 data 680 676 -480140524 -1161981530 -480140524 -1161981530 -65535 65535 a4 02 00 00 14 a3 61 e3 a6 91 bd ba 01 00 ff ff ff ff 00 00 00 00 00 08 00 00 00 59 74 51 6d f0 a6 24 ac 44 00 00 00 02 00 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 05 04 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 07 ......a....................YtQm..$.D.......-...n +158 0x00001240 control 12 -1 704250 0 -1 704250 0 ff ff ff ff fa be 0a 00 00 00 00 00 ............ +159 0x0000124c control 12 22 695742 0 22 695742 0 16 00 00 00 be 9d 0a 00 00 00 00 00 ............ +160 0x00001258 data 22 18 2033501 0 2033501 0 196609 0 12 00 00 00 5d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +161 0x0000126e control 12 -1 704251 0 -1 704251 0 ff ff ff ff fb be 0a 00 00 00 00 00 ............ +162 0x0000127a control 12 -1 704252 0 -1 704252 0 ff ff ff ff fc be 0a 00 00 00 00 00 ............ +163 0x00001286 control 12 52 695743 0 52 695743 0 34 00 00 00 bf 9d 0a 00 00 00 00 00 4........... +164 0x00001292 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 40 00 02 00 00 00 00 00 00 00 5a 27 95 6b 4a 01 00 00 "0...Dk.................L."".([.....@.........Z'.k" +165 0x000012c6 control 12 -1 704253 0 -1 704253 0 ff ff ff ff fd be 0a 00 00 00 00 00 ............ +166 0x000012d2 control 12 26 695744 0 26 695744 0 1a 00 00 00 c0 9d 0a 00 00 00 00 00 ............ +167 0x000012de data 26 22 2033503 0 2033503 0 196609 0 16 00 00 00 5f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...._..................... +168 0x000012f8 control 12 766 695745 0 766 695745 0 fe 02 00 00 c1 9d 0a 00 00 00 00 00 ............ +169 0x00001304 data 766 762 -480140524 -1161981530 -480140524 -1161981530 -65535 65535 fa 02 00 00 14 a3 61 e3 a6 91 bd ba 01 00 ff ff ff ff 00 00 00 00 00 08 00 00 00 59 74 51 6d f0 a6 24 ac 44 00 00 00 02 00 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 05 04 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 07 ......a....................YtQm..$.D.......-...n +170 0x00001602 control 12 -1 704254 0 -1 704254 0 ff ff ff ff fe be 0a 00 00 00 00 00 ............ +171 0x0000160e control 12 22 695746 0 22 695746 0 16 00 00 00 c2 9d 0a 00 00 00 00 00 ............ +172 0x0000161a data 22 18 2033505 0 2033505 0 196609 0 12 00 00 00 61 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +173 0x00001630 control 12 24 695747 0 24 695747 0 18 00 00 00 c3 9d 0a 00 00 00 00 00 ............ +174 0x0000163c data 24 20 121786146 1305382478 121786146 1305382478 -65535 65535 14 00 00 00 22 4f 42 07 4e 8e ce 4d 01 00 ff ff ff ff 00 00 00 00 00 01 "....""OB.N..M............" +175 0x00001654 control 12 -1 704255 0 -1 704255 0 ff ff ff ff ff be 0a 00 00 00 00 00 ............ +176 0x00001660 control 12 22 695748 0 22 695748 0 16 00 00 00 c4 9d 0a 00 00 00 00 00 ............ +177 0x0000166c data 22 18 2033507 0 2033507 0 196609 0 12 00 00 00 63 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +178 0x00001682 control 12 -1 704256 0 -1 704256 0 ff ff ff ff 00 bf 0a 00 00 00 00 00 ............ +179 0x0000168e control 12 22 695749 0 22 695749 0 16 00 00 00 c5 9d 0a 00 00 00 00 00 ............ +180 0x0000169a data 22 18 2033509 0 2033509 0 196609 0 12 00 00 00 65 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +181 0x000016b0 control 12 -1 704257 0 -1 704257 0 ff ff ff ff 01 bf 0a 00 00 00 00 00 ............ +182 0x000016bc control 12 -1 704258 0 -1 704258 0 ff ff ff ff 02 bf 0a 00 00 00 00 00 ............ +183 0x000016c8 control 12 52 695750 0 52 695750 0 34 00 00 00 c6 9d 0a 00 00 00 00 00 4........... +184 0x000016d4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 41 00 02 00 00 00 00 00 00 00 1d b5 c3 6b 4a 01 00 00 "0...Dk.................L."".([.....A............k" +185 0x00001708 control 12 -1 704259 0 -1 704259 0 ff ff ff ff 03 bf 0a 00 00 00 00 00 ............ +186 0x00001714 control 12 26 695751 0 26 695751 0 1a 00 00 00 c7 9d 0a 00 00 00 00 00 ............ +187 0x00001720 data 26 22 2033511 0 2033511 0 196609 0 16 00 00 00 67 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....g..................... +188 0x0000173a control 12 -1 704260 0 -1 704260 0 ff ff ff ff 04 bf 0a 00 00 00 00 00 ............ +189 0x00001746 control 12 22 695752 0 22 695752 0 16 00 00 00 c8 9d 0a 00 00 00 00 00 ............ +190 0x00001752 data 22 18 2033513 0 2033513 0 196609 0 12 00 00 00 69 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +191 0x00001768 control 12 -2 79976 79993 -2 79976 79993 fe ff ff ff 68 38 01 00 79 38 01 00 ....h8..y8.. +192 0x00001774 control 12 -1 704261 0 -1 704261 0 ff ff ff ff 05 bf 0a 00 00 00 00 00 ............ +193 0x00001780 control 12 22 695753 0 22 695753 0 16 00 00 00 c9 9d 0a 00 00 00 00 00 ............ +194 0x0000178c data 22 18 2033515 0 2033515 0 196609 0 12 00 00 00 6b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +195 0x000017a2 control 12 24 695754 0 24 695754 0 18 00 00 00 ca 9d 0a 00 00 00 00 00 ............ +196 0x000017ae data 24 20 800731535 884781590 800731535 884781590 -65535 65535 14 00 00 00 8f 31 ba 2f 16 b2 bc 34 01 00 ff ff ff ff 00 00 00 00 00 01 .....1./...4............ +197 0x000017c6 control 12 -1 704262 0 -1 704262 0 ff ff ff ff 06 bf 0a 00 00 00 00 00 ............ +198 0x000017d2 control 12 22 695755 0 22 695755 0 16 00 00 00 cb 9d 0a 00 00 00 00 00 ............ +199 0x000017de data 22 18 2033517 0 2033517 0 196609 0 12 00 00 00 6d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +200 0x000017f4 control 12 -1 704263 0 -1 704263 0 ff ff ff ff 07 bf 0a 00 00 00 00 00 ............ +201 0x00001800 control 12 -1 704264 0 -1 704264 0 ff ff ff ff 08 bf 0a 00 00 00 00 00 ............ +202 0x0000180c control 12 52 695756 0 52 695756 0 34 00 00 00 cc 9d 0a 00 00 00 00 00 4........... +203 0x00001818 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 42 00 02 00 00 00 00 00 00 00 28 0c f2 6b 4a 01 00 00 "0...Dk.................L."".([.....B.........(..k" +204 0x0000184c control 12 -1 704265 0 -1 704265 0 ff ff ff ff 09 bf 0a 00 00 00 00 00 ............ +205 0x00001858 control 12 26 695757 0 26 695757 0 1a 00 00 00 cd 9d 0a 00 00 00 00 00 ............ +206 0x00001864 data 26 22 2033519 0 2033519 0 196609 0 16 00 00 00 6f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....o..................... +207 0x0000187e control 12 -1 704266 0 -1 704266 0 ff ff ff ff 0a bf 0a 00 00 00 00 00 ............ +208 0x0000188a control 12 22 695758 0 22 695758 0 16 00 00 00 ce 9d 0a 00 00 00 00 00 ............ +209 0x00001896 data 22 18 2033521 0 2033521 0 196609 0 12 00 00 00 71 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +210 0x000018ac control 12 26 695759 0 26 695759 0 1a 00 00 00 cf 9d 0a 00 00 00 00 00 ............ +211 0x000018b8 data 26 22 241777755 1631757502 241777755 1631757502 196609 0 16 00 00 00 5b 3c 69 0e be a4 42 61 01 00 03 00 00 00 00 00 00 00 01 00 00 00 ....[....... +373 0x00002534 control 12 -1 704319 0 -1 704319 0 ff ff ff ff 3f bf 0a 00 00 00 00 00 ....?....... +374 0x00002540 control 12 52 695811 0 52 695811 0 34 00 00 00 03 9e 0a 00 00 00 00 00 4........... +375 0x0000254c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4c 00 02 00 00 00 00 00 00 00 cb dd c2 6d 4a 01 00 00 "0...Dk.................L."".([.....L............m" +376 0x00002580 control 12 -1 704320 0 -1 704320 0 ff ff ff ff 40 bf 0a 00 00 00 00 00 ....@....... +377 0x0000258c control 12 26 695812 0 26 695812 0 1a 00 00 00 04 9e 0a 00 00 00 00 00 ............ +378 0x00002598 data 26 22 2033599 0 2033599 0 196609 0 16 00 00 00 bf 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +379 0x000025b2 control 12 -1 704321 0 -1 704321 0 ff ff ff ff 41 bf 0a 00 00 00 00 00 ....A....... +380 0x000025be control 12 22 695813 0 22 695813 0 16 00 00 00 05 9e 0a 00 00 00 00 00 ............ +381 0x000025ca data 22 18 2033601 0 2033601 0 196609 0 12 00 00 00 c1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +382 0x000025e0 control 12 -1 704322 0 -1 704322 0 ff ff ff ff 42 bf 0a 00 00 00 00 00 ....B....... +383 0x000025ec control 12 22 695814 0 22 695814 0 16 00 00 00 06 9e 0a 00 00 00 00 00 ............ +384 0x000025f8 data 22 18 2033603 0 2033603 0 196609 0 12 00 00 00 c3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +385 0x0000260e control 12 -2 79983 80000 -2 79983 80000 fe ff ff ff 6f 38 01 00 80 38 01 00 ....o8...8.. +386 0x0000261a control 12 -1 704323 0 -1 704323 0 ff ff ff ff 43 bf 0a 00 00 00 00 00 ....C....... +387 0x00002626 control 12 -1 704324 0 -1 704324 0 ff ff ff ff 44 bf 0a 00 00 00 00 00 ....D....... +388 0x00002632 control 12 22 695815 0 22 695815 0 16 00 00 00 07 9e 0a 00 00 00 00 00 ............ +389 0x0000263e data 22 18 2033605 0 2033605 0 196609 0 12 00 00 00 c5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +390 0x00002654 control 12 52 695816 0 52 695816 0 34 00 00 00 08 9e 0a 00 00 00 00 00 4........... +391 0x00002660 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4d 00 02 00 00 00 00 00 00 00 84 71 f1 6d 4a 01 00 00 "0...Dk.................L."".([.....M..........q.m" +392 0x00002694 control 12 -1 704325 0 -1 704325 0 ff ff ff ff 45 bf 0a 00 00 00 00 00 ....E....... +393 0x000026a0 control 12 26 695817 0 26 695817 0 1a 00 00 00 09 9e 0a 00 00 00 00 00 ............ +394 0x000026ac data 26 22 2033607 0 2033607 0 196609 0 16 00 00 00 c7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +395 0x000026c6 control 12 -1 704326 0 -1 704326 0 ff ff ff ff 46 bf 0a 00 00 00 00 00 ....F....... +396 0x000026d2 control 12 22 695818 0 22 695818 0 16 00 00 00 0a 9e 0a 00 00 00 00 00 ............ +397 0x000026de data 22 18 2033609 0 2033609 0 196609 0 12 00 00 00 c9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +398 0x000026f4 control 12 -1 704327 0 -1 704327 0 ff ff ff ff 47 bf 0a 00 00 00 00 00 ....G....... +399 0x00002700 control 12 22 695819 0 22 695819 0 16 00 00 00 0b 9e 0a 00 00 00 00 00 ............ +400 0x0000270c data 22 18 2033611 0 2033611 0 196609 0 12 00 00 00 cb 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +401 0x00002722 control 12 -1 704328 0 -1 704328 0 ff ff ff ff 48 bf 0a 00 00 00 00 00 ....H....... +402 0x0000272e control 12 -1 704329 0 -1 704329 0 ff ff ff ff 49 bf 0a 00 00 00 00 00 ....I....... +403 0x0000273a control 12 52 695820 0 52 695820 0 34 00 00 00 0c 9e 0a 00 00 00 00 00 4........... +404 0x00002746 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4e 00 02 00 00 00 00 00 00 00 4c ce 1f 6e 4a 01 00 00 "0...Dk.................L."".([.....N.........L..n" +405 0x0000277a control 12 -1 704330 0 -1 704330 0 ff ff ff ff 4a bf 0a 00 00 00 00 00 ....J....... +406 0x00002786 control 12 26 695821 0 26 695821 0 1a 00 00 00 0d 9e 0a 00 00 00 00 00 ............ +407 0x00002792 data 26 22 2033613 0 2033613 0 196609 0 16 00 00 00 cd 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +408 0x000027ac control 12 -1 704331 0 -1 704331 0 ff ff ff ff 4b bf 0a 00 00 00 00 00 ....K....... +409 0x000027b8 control 12 22 695822 0 22 695822 0 16 00 00 00 0e 9e 0a 00 00 00 00 00 ............ +410 0x000027c4 data 22 18 2033615 0 2033615 0 196609 0 12 00 00 00 cf 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +411 0x000027da control 12 -1 704332 0 -1 704332 0 ff ff ff ff 4c bf 0a 00 00 00 00 00 ....L....... +412 0x000027e6 control 12 22 695823 0 22 695823 0 16 00 00 00 0f 9e 0a 00 00 00 00 00 ............ +413 0x000027f2 data 22 18 2033617 0 2033617 0 196609 0 12 00 00 00 d1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +414 0x00002808 control 12 -2 79984 80001 -2 79984 80001 fe ff ff ff 70 38 01 00 81 38 01 00 ....p8...8.. +415 0x00002814 control 12 -1 704333 0 -1 704333 0 ff ff ff ff 4d bf 0a 00 00 00 00 00 ....M....... +416 0x00002820 control 12 22 695824 0 22 695824 0 16 00 00 00 10 9e 0a 00 00 00 00 00 ............ +417 0x0000282c data 22 18 2033619 0 2033619 0 196609 0 12 00 00 00 d3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +418 0x00002842 control 12 -1 704334 0 -1 704334 0 ff ff ff ff 4e bf 0a 00 00 00 00 00 ....N....... +419 0x0000284e control 12 52 695825 0 52 695825 0 34 00 00 00 11 9e 0a 00 00 00 00 00 4........... +420 0x0000285a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4f 00 02 00 00 00 00 00 00 00 da 4d 4e 6e 4a 01 00 00 "0...Dk.................L."".([.....O..........MNn" +421 0x0000288e control 12 -1 704335 0 -1 704335 0 ff ff ff ff 4f bf 0a 00 00 00 00 00 ....O....... +422 0x0000289a control 12 26 695826 0 26 695826 0 1a 00 00 00 12 9e 0a 00 00 00 00 00 ............ +423 0x000028a6 data 26 22 2033621 0 2033621 0 196609 0 16 00 00 00 d5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +424 0x000028c0 control 12 -1 704336 0 -1 704336 0 ff ff ff ff 50 bf 0a 00 00 00 00 00 ....P....... +425 0x000028cc control 12 22 695827 0 22 695827 0 16 00 00 00 13 9e 0a 00 00 00 00 00 ............ +426 0x000028d8 data 22 18 2033623 0 2033623 0 196609 0 12 00 00 00 d7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +427 0x000028ee control 12 -1 704337 0 -1 704337 0 ff ff ff ff 51 bf 0a 00 00 00 00 00 ....Q....... +428 0x000028fa control 12 22 695828 0 22 695828 0 16 00 00 00 14 9e 0a 00 00 00 00 00 ............ +429 0x00002906 data 22 18 2033625 0 2033625 0 196609 0 12 00 00 00 d9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +430 0x0000291c control 12 -1 704338 0 -1 704338 0 ff ff ff ff 52 bf 0a 00 00 00 00 00 ....R....... +431 0x00002928 control 12 22 695829 0 22 695829 0 16 00 00 00 15 9e 0a 00 00 00 00 00 ............ +432 0x00002934 data 22 18 2033627 0 2033627 0 196609 0 12 00 00 00 db 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +433 0x0000294a control 12 -2 79985 80002 -2 79985 80002 fe ff ff ff 71 38 01 00 82 38 01 00 ....q8...8.. +434 0x00002956 control 12 -1 704339 0 -1 704339 0 ff ff ff ff 53 bf 0a 00 00 00 00 00 ....S....... +435 0x00002962 control 12 -1 704340 0 -1 704340 0 ff ff ff ff 54 bf 0a 00 00 00 00 00 ....T....... +436 0x0000296e control 12 52 695830 0 52 695830 0 34 00 00 00 16 9e 0a 00 00 00 00 00 4........... +437 0x0000297a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 50 00 02 00 00 00 00 00 00 00 6c d6 7c 6e 4a 01 00 00 "0...Dk.................L."".([.....P.........l.|n" +438 0x000029ae control 12 -1 704341 0 -1 704341 0 ff ff ff ff 55 bf 0a 00 00 00 00 00 ....U....... +439 0x000029ba control 12 26 695831 0 26 695831 0 1a 00 00 00 17 9e 0a 00 00 00 00 00 ............ +440 0x000029c6 data 26 22 2033629 0 2033629 0 196609 0 16 00 00 00 dd 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +441 0x000029e0 control 12 -1 704342 0 -1 704342 0 ff ff ff ff 56 bf 0a 00 00 00 00 00 ....V....... +442 0x000029ec control 12 22 695832 0 22 695832 0 16 00 00 00 18 9e 0a 00 00 00 00 00 ............ +443 0x000029f8 data 22 18 2033631 0 2033631 0 196609 0 12 00 00 00 df 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +444 0x00002a0e control 12 -1 704343 0 -1 704343 0 ff ff ff ff 57 bf 0a 00 00 00 00 00 ....W....... +445 0x00002a1a control 12 22 695833 0 22 695833 0 16 00 00 00 19 9e 0a 00 00 00 00 00 ............ +446 0x00002a26 data 22 18 2033633 0 2033633 0 196609 0 12 00 00 00 e1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +447 0x00002a3c control 12 -1 704344 0 -1 704344 0 ff ff ff ff 58 bf 0a 00 00 00 00 00 ....X....... +448 0x00002a48 control 12 22 695834 0 22 695834 0 16 00 00 00 1a 9e 0a 00 00 00 00 00 ............ +449 0x00002a54 data 22 18 2033635 0 2033635 0 196609 0 12 00 00 00 e3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +450 0x00002a6a control 12 -1 704345 0 -1 704345 0 ff ff ff ff 59 bf 0a 00 00 00 00 00 ....Y....... +451 0x00002a76 control 12 -1 704346 0 -1 704346 0 ff ff ff ff 5a bf 0a 00 00 00 00 00 ....Z....... +452 0x00002a82 control 12 52 695835 0 52 695835 0 34 00 00 00 1b 9e 0a 00 00 00 00 00 4........... +453 0x00002a8e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 51 00 02 00 00 00 00 00 00 00 c9 7e ab 6e 4a 01 00 00 "0...Dk.................L."".([.....Q..........~.n" +454 0x00002ac2 control 12 -1 704347 0 -1 704347 0 ff ff ff ff 5b bf 0a 00 00 00 00 00 ....[....... +455 0x00002ace control 12 26 695836 0 26 695836 0 1a 00 00 00 1c 9e 0a 00 00 00 00 00 ............ +456 0x00002ada data 26 22 2033637 0 2033637 0 196609 0 16 00 00 00 e5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +457 0x00002af4 control 12 -1 704348 0 -1 704348 0 ff ff ff ff 5c bf 0a 00 00 00 00 00 ....\....... +458 0x00002b00 control 12 22 695837 0 22 695837 0 16 00 00 00 1d 9e 0a 00 00 00 00 00 ............ +459 0x00002b0c data 22 18 2033639 0 2033639 0 196609 0 12 00 00 00 e7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +460 0x00002b22 control 12 -1 704349 0 -1 704349 0 ff ff ff ff 5d bf 0a 00 00 00 00 00 ....]....... +461 0x00002b2e control 12 22 695838 0 22 695838 0 16 00 00 00 1e 9e 0a 00 00 00 00 00 ............ +462 0x00002b3a data 22 18 2033641 0 2033641 0 196609 0 12 00 00 00 e9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +463 0x00002b50 control 12 -2 79986 80003 -2 79986 80003 fe ff ff ff 72 38 01 00 83 38 01 00 ....r8...8.. +464 0x00002b5c control 12 -1 704350 0 -1 704350 0 ff ff ff ff 5e bf 0a 00 00 00 00 00 ....^....... +465 0x00002b68 control 12 22 695839 0 22 695839 0 16 00 00 00 1f 9e 0a 00 00 00 00 00 ............ +466 0x00002b74 data 22 18 2033643 0 2033643 0 196609 0 12 00 00 00 eb 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +467 0x00002b8a control 12 -1 704351 0 -1 704351 0 ff ff ff ff 5f bf 0a 00 00 00 00 00 ...._....... +468 0x00002b96 control 12 52 695840 0 52 695840 0 34 00 00 00 20 9e 0a 00 00 00 00 00 4... ....... +469 0x00002ba2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 52 00 02 00 00 00 00 00 00 00 fb df d9 6e 4a 01 00 00 "0...Dk.................L."".([.....R............n" +470 0x00002bd6 control 12 -1 704352 0 -1 704352 0 ff ff ff ff 60 bf 0a 00 00 00 00 00 ....`....... +471 0x00002be2 control 12 26 695841 0 26 695841 0 1a 00 00 00 21 9e 0a 00 00 00 00 00 ....!....... +472 0x00002bee data 26 22 2033645 0 2033645 0 196609 0 16 00 00 00 ed 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +473 0x00002c08 control 12 -1 704353 0 -1 704353 0 ff ff ff ff 61 bf 0a 00 00 00 00 00 ....a....... +474 0x00002c14 control 12 22 695842 0 22 695842 0 16 00 00 00 22 9e 0a 00 00 00 00 00 "....""......." +475 0x00002c20 data 22 18 2033647 0 2033647 0 196609 0 12 00 00 00 ef 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +476 0x00002c36 control 12 -1 704354 0 -1 704354 0 ff ff ff ff 62 bf 0a 00 00 00 00 00 ....b....... +477 0x00002c42 control 12 22 695843 0 22 695843 0 16 00 00 00 23 9e 0a 00 00 00 00 00 ....#....... +478 0x00002c4e data 22 18 2033649 0 2033649 0 196609 0 12 00 00 00 f1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +479 0x00002c64 control 12 -1 704355 0 -1 704355 0 ff ff ff ff 63 bf 0a 00 00 00 00 00 ....c....... +480 0x00002c70 control 12 22 695844 0 22 695844 0 16 00 00 00 24 9e 0a 00 00 00 00 00 ....$....... +481 0x00002c7c data 22 18 2033651 0 2033651 0 196609 0 12 00 00 00 f3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +482 0x00002c92 control 12 -1 704356 0 -1 704356 0 ff ff ff ff 64 bf 0a 00 00 00 00 00 ....d....... +483 0x00002c9e control 12 52 695845 0 52 695845 0 34 00 00 00 25 9e 0a 00 00 00 00 00 4...%....... +484 0x00002caa data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 53 00 02 00 00 00 00 00 00 00 55 3a 08 6f 4a 01 00 00 "0...Dk.................L."".([.....S.........U:.o" +485 0x00002cde control 12 -1 704357 0 -1 704357 0 ff ff ff ff 65 bf 0a 00 00 00 00 00 ....e....... +486 0x00002cea control 12 26 695846 0 26 695846 0 1a 00 00 00 26 9e 0a 00 00 00 00 00 ....&....... +487 0x00002cf6 data 26 22 2033653 0 2033653 0 196609 0 16 00 00 00 f5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +488 0x00002d10 control 12 -1 704358 0 -1 704358 0 ff ff ff ff 66 bf 0a 00 00 00 00 00 ....f....... +489 0x00002d1c control 12 22 695847 0 22 695847 0 16 00 00 00 27 9e 0a 00 00 00 00 00 ....'....... +490 0x00002d28 data 22 18 2033655 0 2033655 0 196609 0 12 00 00 00 f7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +491 0x00002d3e control 12 -2 79987 80004 -2 79987 80004 fe ff ff ff 73 38 01 00 84 38 01 00 ....s8...8.. +492 0x00002d4a control 12 -1 704359 0 -1 704359 0 ff ff ff ff 67 bf 0a 00 00 00 00 00 ....g....... +493 0x00002d56 control 12 22 695848 0 22 695848 0 16 00 00 00 28 9e 0a 00 00 00 00 00 ....(....... +494 0x00002d62 data 22 18 2033657 0 2033657 0 196609 0 12 00 00 00 f9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +495 0x00002d78 control 12 -1 704360 0 -1 704360 0 ff ff ff ff 68 bf 0a 00 00 00 00 00 ....h....... +496 0x00002d84 control 12 22 695849 0 22 695849 0 16 00 00 00 29 9e 0a 00 00 00 00 00 ....)....... +497 0x00002d90 data 22 18 2033659 0 2033659 0 196609 0 12 00 00 00 fb 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +498 0x00002da6 control 12 -1 704361 0 -1 704361 0 ff ff ff ff 69 bf 0a 00 00 00 00 00 ....i....... +499 0x00002db2 control 12 52 695850 0 52 695850 0 34 00 00 00 2a 9e 0a 00 00 00 00 00 4...*....... +500 0x00002dbe data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 54 00 02 00 00 00 00 00 00 00 d5 8f 36 6f 4a 01 00 00 "0...Dk.................L."".([.....T...........6o" +501 0x00002df2 control 12 -1 704362 0 -1 704362 0 ff ff ff ff 6a bf 0a 00 00 00 00 00 ....j....... +502 0x00002dfe control 12 26 695851 0 26 695851 0 1a 00 00 00 2b 9e 0a 00 00 00 00 00 ....+....... +503 0x00002e0a data 26 22 2033661 0 2033661 0 196609 0 16 00 00 00 fd 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +504 0x00002e24 control 12 -1 704363 0 -1 704363 0 ff ff ff ff 6b bf 0a 00 00 00 00 00 ....k....... +505 0x00002e30 control 12 22 695852 0 22 695852 0 16 00 00 00 2c 9e 0a 00 00 00 00 00 ....,....... +506 0x00002e3c data 22 18 2033663 0 2033663 0 196609 0 12 00 00 00 ff 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +507 0x00002e52 control 12 -1 704364 0 -1 704364 0 ff ff ff ff 6c bf 0a 00 00 00 00 00 ....l....... +508 0x00002e5e control 12 22 695853 0 22 695853 0 16 00 00 00 2d 9e 0a 00 00 00 00 00 ....-....... +509 0x00002e6a data 22 18 2033665 0 2033665 0 196609 0 12 00 00 00 01 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +510 0x00002e80 control 12 -1 704365 0 -1 704365 0 ff ff ff ff 6d bf 0a 00 00 00 00 00 ....m....... +511 0x00002e8c control 12 22 695854 0 22 695854 0 16 00 00 00 2e 9e 0a 00 00 00 00 00 ............ +512 0x00002e98 data 22 18 2033667 0 2033667 0 196609 0 12 00 00 00 03 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +513 0x00002eae control 12 -2 79988 80005 -2 79988 80005 fe ff ff ff 74 38 01 00 85 38 01 00 ....t8...8.. +514 0x00002eba control 12 -1 704366 0 -1 704366 0 ff ff ff ff 6e bf 0a 00 00 00 00 00 ....n....... +515 0x00002ec6 control 12 -1 704367 0 -1 704367 0 ff ff ff ff 6f bf 0a 00 00 00 00 00 ....o....... +516 0x00002ed2 control 12 52 695855 0 52 695855 0 34 00 00 00 2f 9e 0a 00 00 00 00 00 4.../....... +517 0x00002ede data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 55 00 02 00 00 00 00 00 00 00 9b 42 65 6f 4a 01 00 00 "0...Dk.................L."".([.....U..........Beo" +518 0x00002f12 control 12 -1 704368 0 -1 704368 0 ff ff ff ff 70 bf 0a 00 00 00 00 00 ....p....... +519 0x00002f1e control 12 26 695856 0 26 695856 0 1a 00 00 00 30 9e 0a 00 00 00 00 00 ....0....... +520 0x00002f2a data 26 22 2033669 0 2033669 0 196609 0 16 00 00 00 05 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +521 0x00002f44 control 12 -1 704369 0 -1 704369 0 ff ff ff ff 71 bf 0a 00 00 00 00 00 ....q....... +522 0x00002f50 control 12 22 695857 0 22 695857 0 16 00 00 00 31 9e 0a 00 00 00 00 00 ....1....... +523 0x00002f5c data 22 18 2033671 0 2033671 0 196609 0 12 00 00 00 07 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +524 0x00002f72 control 12 -1 704370 0 -1 704370 0 ff ff ff ff 72 bf 0a 00 00 00 00 00 ....r....... +525 0x00002f7e control 12 22 695858 0 22 695858 0 16 00 00 00 32 9e 0a 00 00 00 00 00 ....2....... +526 0x00002f8a data 22 18 2033673 0 2033673 0 196609 0 12 00 00 00 09 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +527 0x00002fa0 control 12 -1 704371 0 -1 704371 0 ff ff ff ff 73 bf 0a 00 00 00 00 00 ....s....... +528 0x00002fac control 12 22 695859 0 22 695859 0 16 00 00 00 33 9e 0a 00 00 00 00 00 ....3....... +529 0x00002fb8 data 22 18 2033675 0 2033675 0 196609 0 12 00 00 00 0b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +530 0x00002fce control 12 -1 704372 0 -1 704372 0 ff ff ff ff 74 bf 0a 00 00 00 00 00 ....t....... +531 0x00002fda control 12 52 695860 0 52 695860 0 34 00 00 00 34 9e 0a 00 00 00 00 00 4...4....... +532 0x00002fe6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 56 00 02 00 00 00 00 00 00 00 4b c1 93 6f 4a 01 00 00 "0...Dk.................L."".([.....V.........K..o" +533 0x0000301a control 12 -1 704373 0 -1 704373 0 ff ff ff ff 75 bf 0a 00 00 00 00 00 ....u....... +534 0x00003026 control 12 26 695861 0 26 695861 0 1a 00 00 00 35 9e 0a 00 00 00 00 00 ....5....... +535 0x00003032 data 26 22 2033677 0 2033677 0 196609 0 16 00 00 00 0d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +536 0x0000304c control 12 -1 704374 0 -1 704374 0 ff ff ff ff 76 bf 0a 00 00 00 00 00 ....v....... +537 0x00003058 control 12 22 695862 0 22 695862 0 16 00 00 00 36 9e 0a 00 00 00 00 00 ....6....... +538 0x00003064 data 22 18 2033679 0 2033679 0 196609 0 12 00 00 00 0f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +539 0x0000307a control 12 -1 704375 0 -1 704375 0 ff ff ff ff 77 bf 0a 00 00 00 00 00 ....w....... +540 0x00003086 control 12 22 695863 0 22 695863 0 16 00 00 00 37 9e 0a 00 00 00 00 00 ....7....... +541 0x00003092 data 22 18 2033681 0 2033681 0 196609 0 12 00 00 00 11 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +542 0x000030a8 control 12 -2 79989 80006 -2 79989 80006 fe ff ff ff 75 38 01 00 86 38 01 00 ....u8...8.. +543 0x000030b4 control 12 -1 704376 0 -1 704376 0 ff ff ff ff 78 bf 0a 00 00 00 00 00 ....x....... +544 0x000030c0 control 12 22 695864 0 22 695864 0 16 00 00 00 38 9e 0a 00 00 00 00 00 ....8....... +545 0x000030cc data 22 18 2033683 0 2033683 0 196609 0 12 00 00 00 13 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +546 0x000030e2 control 12 -1 704377 0 -1 704377 0 ff ff ff ff 79 bf 0a 00 00 00 00 00 ....y....... +547 0x000030ee control 12 -1 704378 0 -1 704378 0 ff ff ff ff 7a bf 0a 00 00 00 00 00 ....z....... +548 0x000030fa control 12 52 695865 0 52 695865 0 34 00 00 00 39 9e 0a 00 00 00 00 00 4...9....... +549 0x00003106 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 57 00 02 00 00 00 00 00 00 00 f3 60 c2 6f 4a 01 00 00 "0...Dk.................L."".([.....W..........`.o" +550 0x0000313a control 12 -1 704379 0 -1 704379 0 ff ff ff ff 7b bf 0a 00 00 00 00 00 ....{....... +551 0x00003146 control 12 26 695866 0 26 695866 0 1a 00 00 00 3a 9e 0a 00 00 00 00 00 ....:....... +552 0x00003152 data 26 22 2033685 0 2033685 0 196609 0 16 00 00 00 15 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +553 0x0000316c control 12 -1 704380 0 -1 704380 0 ff ff ff ff 7c bf 0a 00 00 00 00 00 ....|....... +554 0x00003178 control 12 22 695867 0 22 695867 0 16 00 00 00 3b 9e 0a 00 00 00 00 00 ....;....... +555 0x00003184 data 22 18 2033687 0 2033687 0 196609 0 12 00 00 00 17 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +556 0x0000319a control 12 -1 704381 0 -1 704381 0 ff ff ff ff 7d bf 0a 00 00 00 00 00 ....}....... +557 0x000031a6 control 12 22 695868 0 22 695868 0 16 00 00 00 3c 9e 0a 00 00 00 00 00 ....<....... +558 0x000031b2 data 22 18 2033689 0 2033689 0 196609 0 12 00 00 00 19 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +559 0x000031c8 control 12 -1 704382 0 -1 704382 0 ff ff ff ff 7e bf 0a 00 00 00 00 00 ....~....... +560 0x000031d4 control 12 22 695869 0 22 695869 0 16 00 00 00 3d 9e 0a 00 00 00 00 00 ....=....... +561 0x000031e0 data 22 18 2033691 0 2033691 0 196609 0 12 00 00 00 1b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +562 0x000031f6 control 12 -1 704383 0 -1 704383 0 ff ff ff ff 7f bf 0a 00 00 00 00 00 ............ +563 0x00003202 control 12 52 695870 0 52 695870 0 34 00 00 00 3e 9e 0a 00 00 00 00 00 4...>....... +564 0x0000320e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 58 00 02 00 00 00 00 00 00 00 e7 e4 f0 6f 4a 01 00 00 "0...Dk.................L."".([.....X............o" +565 0x00003242 control 12 -1 704384 0 -1 704384 0 ff ff ff ff 80 bf 0a 00 00 00 00 00 ............ +566 0x0000324e control 12 26 695871 0 26 695871 0 1a 00 00 00 3f 9e 0a 00 00 00 00 00 ....?....... +567 0x0000325a data 26 22 2033693 0 2033693 0 196609 0 16 00 00 00 1d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +568 0x00003274 control 12 -1 704385 0 -1 704385 0 ff ff ff ff 81 bf 0a 00 00 00 00 00 ............ +569 0x00003280 control 12 22 695872 0 22 695872 0 16 00 00 00 40 9e 0a 00 00 00 00 00 ....@....... +570 0x0000328c data 22 18 2033695 0 2033695 0 196609 0 12 00 00 00 1f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +571 0x000032a2 control 12 -2 79990 80007 -2 79990 80007 fe ff ff ff 76 38 01 00 87 38 01 00 ....v8...8.. +572 0x000032ae control 12 -1 704386 0 -1 704386 0 ff ff ff ff 82 bf 0a 00 00 00 00 00 ............ +573 0x000032ba control 12 22 695873 0 22 695873 0 16 00 00 00 41 9e 0a 00 00 00 00 00 ....A....... +574 0x000032c6 data 22 18 2033697 0 2033697 0 196609 0 12 00 00 00 21 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +575 0x000032dc control 12 -1 704387 0 -1 704387 0 ff ff ff ff 83 bf 0a 00 00 00 00 00 ............ +576 0x000032e8 control 12 22 695874 0 22 695874 0 16 00 00 00 42 9e 0a 00 00 00 00 00 ....B....... +577 0x000032f4 data 22 18 2033699 0 2033699 0 196609 0 12 00 00 00 23 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +578 0x0000330a control 12 -1 704388 0 -1 704388 0 ff ff ff ff 84 bf 0a 00 00 00 00 00 ............ +579 0x00003316 control 12 -1 704389 0 -1 704389 0 ff ff ff ff 85 bf 0a 00 00 00 00 00 ............ +580 0x00003322 control 12 52 695875 0 52 695875 0 34 00 00 00 43 9e 0a 00 00 00 00 00 4...C....... +581 0x0000332e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 59 00 02 00 00 00 00 00 00 00 2c 4e 1f 70 4a 01 00 00 "0...Dk.................L."".([.....Y.........,N.p" +582 0x00003362 control 12 -1 704390 0 -1 704390 0 ff ff ff ff 86 bf 0a 00 00 00 00 00 ............ +583 0x0000336e control 12 26 695876 0 26 695876 0 1a 00 00 00 44 9e 0a 00 00 00 00 00 ....D....... +584 0x0000337a data 26 22 2033701 0 2033701 0 196609 0 16 00 00 00 25 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +585 0x00003394 control 12 -1 704391 0 -1 704391 0 ff ff ff ff 87 bf 0a 00 00 00 00 00 ............ +586 0x000033a0 control 12 22 695877 0 22 695877 0 16 00 00 00 45 9e 0a 00 00 00 00 00 ....E....... +587 0x000033ac data 22 18 2033703 0 2033703 0 196609 0 12 00 00 00 27 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +588 0x000033c2 control 12 -1 704392 0 -1 704392 0 ff ff ff ff 88 bf 0a 00 00 00 00 00 ............ +589 0x000033ce control 12 22 695878 0 22 695878 0 16 00 00 00 46 9e 0a 00 00 00 00 00 ....F....... +590 0x000033da data 22 18 2033705 0 2033705 0 196609 0 12 00 00 00 29 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +591 0x000033f0 control 12 -2 79991 80008 -2 79991 80008 fe ff ff ff 77 38 01 00 88 38 01 00 ....w8...8.. +592 0x000033fc control 12 -1 704393 0 -1 704393 0 ff ff ff ff 89 bf 0a 00 00 00 00 00 ............ +593 0x00003408 control 12 22 695879 0 22 695879 0 16 00 00 00 47 9e 0a 00 00 00 00 00 ....G....... +594 0x00003414 data 22 18 2033707 0 2033707 0 196609 0 12 00 00 00 2b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +595 0x0000342a control 12 -1 704394 0 -1 704394 0 ff ff ff ff 8a bf 0a 00 00 00 00 00 ............ +596 0x00003436 control 12 52 695880 0 52 695880 0 34 00 00 00 48 9e 0a 00 00 00 00 00 4...H....... +597 0x00003442 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5a 00 02 00 00 00 00 00 00 00 fb c6 4d 70 4a 01 00 00 "0...Dk.................L."".([.....Z...........Mp" +598 0x00003476 control 12 -1 704395 0 -1 704395 0 ff ff ff ff 8b bf 0a 00 00 00 00 00 ............ +599 0x00003482 control 12 26 695881 0 26 695881 0 1a 00 00 00 49 9e 0a 00 00 00 00 00 ....I....... +600 0x0000348e data 26 22 2033709 0 2033709 0 196609 0 16 00 00 00 2d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +601 0x000034a8 control 12 -1 704396 0 -1 704396 0 ff ff ff ff 8c bf 0a 00 00 00 00 00 ............ +602 0x000034b4 control 12 22 695882 0 22 695882 0 16 00 00 00 4a 9e 0a 00 00 00 00 00 ....J....... +603 0x000034c0 data 22 18 2033711 0 2033711 0 196609 0 12 00 00 00 2f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +604 0x000034d6 control 12 -1 704397 0 -1 704397 0 ff ff ff ff 8d bf 0a 00 00 00 00 00 ............ +605 0x000034e2 control 12 22 695883 0 22 695883 0 16 00 00 00 4b 9e 0a 00 00 00 00 00 ....K....... +606 0x000034ee data 22 18 2033713 0 2033713 0 196609 0 12 00 00 00 31 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +607 0x00003504 control 12 -1 704398 0 -1 704398 0 ff ff ff ff 8e bf 0a 00 00 00 00 00 ............ +608 0x00003510 control 12 22 695884 0 22 695884 0 16 00 00 00 4c 9e 0a 00 00 00 00 00 ....L....... +609 0x0000351c data 22 18 2033715 0 2033715 0 196609 0 12 00 00 00 33 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +610 0x00003532 control 12 -1 704399 0 -1 704399 0 ff ff ff ff 8f bf 0a 00 00 00 00 00 ............ +611 0x0000353e control 12 52 695885 0 52 695885 0 34 00 00 00 4d 9e 0a 00 00 00 00 00 4...M....... +612 0x0000354a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5b 00 02 00 00 00 00 00 00 00 28 45 7c 70 4a 01 00 00 "0...Dk.................L."".([.....[.........(E|p" +613 0x0000357e control 12 -1 704400 0 -1 704400 0 ff ff ff ff 90 bf 0a 00 00 00 00 00 ............ +614 0x0000358a control 12 26 695886 0 26 695886 0 1a 00 00 00 4e 9e 0a 00 00 00 00 00 ....N....... +615 0x00003596 data 26 22 2033717 0 2033717 0 196609 0 16 00 00 00 35 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +616 0x000035b0 control 12 -1 704401 0 -1 704401 0 ff ff ff ff 91 bf 0a 00 00 00 00 00 ............ +617 0x000035bc control 12 22 695887 0 22 695887 0 16 00 00 00 4f 9e 0a 00 00 00 00 00 ....O....... +618 0x000035c8 data 22 18 2033719 0 2033719 0 196609 0 12 00 00 00 37 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +619 0x000035de control 12 -2 79992 80009 -2 79992 80009 fe ff ff ff 78 38 01 00 89 38 01 00 ....x8...8.. +620 0x000035ea control 12 -1 704402 0 -1 704402 0 ff ff ff ff 92 bf 0a 00 00 00 00 00 ............ +621 0x000035f6 control 12 22 695888 0 22 695888 0 16 00 00 00 50 9e 0a 00 00 00 00 00 ....P....... +622 0x00003602 data 22 18 2033721 0 2033721 0 196609 0 12 00 00 00 39 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +623 0x00003618 control 12 -1 704403 0 -1 704403 0 ff ff ff ff 93 bf 0a 00 00 00 00 00 ............ +624 0x00003624 control 12 22 695889 0 22 695889 0 16 00 00 00 51 9e 0a 00 00 00 00 00 ....Q....... +625 0x00003630 data 22 18 2033723 0 2033723 0 196609 0 12 00 00 00 3b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +626 0x00003646 control 12 -1 704404 0 -1 704404 0 ff ff ff ff 94 bf 0a 00 00 00 00 00 ............ +627 0x00003652 control 12 52 695890 0 52 695890 0 34 00 00 00 52 9e 0a 00 00 00 00 00 4...R....... +628 0x0000365e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5c 00 02 00 00 00 00 00 00 00 26 e0 aa 70 4a 01 00 00 "0...Dk.................L."".([.....\.........&..p" +629 0x00003692 control 12 -1 704405 0 -1 704405 0 ff ff ff ff 95 bf 0a 00 00 00 00 00 ............ +630 0x0000369e control 12 26 695891 0 26 695891 0 1a 00 00 00 53 9e 0a 00 00 00 00 00 ....S....... +631 0x000036aa data 26 22 2033725 0 2033725 0 196609 0 16 00 00 00 3d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +632 0x000036c4 control 12 -1 704406 0 -1 704406 0 ff ff ff ff 96 bf 0a 00 00 00 00 00 ............ +633 0x000036d0 control 12 22 695892 0 22 695892 0 16 00 00 00 54 9e 0a 00 00 00 00 00 ....T....... +634 0x000036dc data 22 18 2033727 0 2033727 0 196609 0 12 00 00 00 3f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +635 0x000036f2 control 12 -1 704407 0 -1 704407 0 ff ff ff ff 97 bf 0a 00 00 00 00 00 ............ +636 0x000036fe control 12 22 695893 0 22 695893 0 16 00 00 00 55 9e 0a 00 00 00 00 00 ....U....... +637 0x0000370a data 22 18 2033729 0 2033729 0 196609 0 12 00 00 00 41 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +638 0x00003720 control 12 -1 704408 0 -1 704408 0 ff ff ff ff 98 bf 0a 00 00 00 00 00 ............ +639 0x0000372c control 12 22 695894 0 22 695894 0 16 00 00 00 56 9e 0a 00 00 00 00 00 ....V....... +640 0x00003738 data 22 18 2033731 0 2033731 0 196609 0 12 00 00 00 43 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +641 0x0000374e control 12 -1 704409 0 -1 704409 0 ff ff ff ff 99 bf 0a 00 00 00 00 00 ............ +642 0x0000375a control 12 52 695895 0 52 695895 0 34 00 00 00 57 9e 0a 00 00 00 00 00 4...W....... +643 0x00003766 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5d 00 02 00 00 00 00 00 00 00 89 8d d9 70 4a 01 00 00 "0...Dk.................L."".([.....]............p" +644 0x0000379a control 12 -1 704410 0 -1 704410 0 ff ff ff ff 9a bf 0a 00 00 00 00 00 ............ +645 0x000037a6 control 12 26 695896 0 26 695896 0 1a 00 00 00 58 9e 0a 00 00 00 00 00 ....X....... +646 0x000037b2 data 26 22 2033733 0 2033733 0 196609 0 16 00 00 00 45 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E..................... +647 0x000037cc control 12 -2 79993 80010 -2 79993 80010 fe ff ff ff 79 38 01 00 8a 38 01 00 ....y8...8.. +648 0x000037d8 control 12 -1 704411 0 -1 704411 0 ff ff ff ff 9b bf 0a 00 00 00 00 00 ............ +649 0x000037e4 control 12 22 695897 0 22 695897 0 16 00 00 00 59 9e 0a 00 00 00 00 00 ....Y....... +650 0x000037f0 data 22 18 2033735 0 2033735 0 196609 0 12 00 00 00 47 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +651 0x00003806 control 12 -1 704412 0 -1 704412 0 ff ff ff ff 9c bf 0a 00 00 00 00 00 ............ +652 0x00003812 control 12 22 695898 0 22 695898 0 16 00 00 00 5a 9e 0a 00 00 00 00 00 ....Z....... +653 0x0000381e data 22 18 2033737 0 2033737 0 196609 0 12 00 00 00 49 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +654 0x00003834 control 12 -1 704413 0 -1 704413 0 ff ff ff ff 9d bf 0a 00 00 00 00 00 ............ +655 0x00003840 control 12 22 695899 0 22 695899 0 16 00 00 00 5b 9e 0a 00 00 00 00 00 ....[....... +656 0x0000384c data 22 18 2033739 0 2033739 0 196609 0 12 00 00 00 4b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +657 0x00003862 control 12 -1 704414 0 -1 704414 0 ff ff ff ff 9e bf 0a 00 00 00 00 00 ............ +658 0x0000386e control 12 52 695900 0 52 695900 0 34 00 00 00 5c 9e 0a 00 00 00 00 00 4...\....... +659 0x0000387a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5e 00 02 00 00 00 00 00 00 00 c9 f7 07 71 4a 01 00 00 "0...Dk.................L."".([.....^............q" +660 0x000038ae control 12 -1 704415 0 -1 704415 0 ff ff ff ff 9f bf 0a 00 00 00 00 00 ............ +661 0x000038ba control 12 26 695901 0 26 695901 0 1a 00 00 00 5d 9e 0a 00 00 00 00 00 ....]....... +662 0x000038c6 data 26 22 2033741 0 2033741 0 196609 0 16 00 00 00 4d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M..................... +663 0x000038e0 control 12 -1 704416 0 -1 704416 0 ff ff ff ff a0 bf 0a 00 00 00 00 00 ............ +664 0x000038ec control 12 22 695902 0 22 695902 0 16 00 00 00 5e 9e 0a 00 00 00 00 00 ....^....... +665 0x000038f8 data 22 18 2033743 0 2033743 0 196609 0 12 00 00 00 4f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +666 0x0000390e control 12 -1 704417 0 -1 704417 0 ff ff ff ff a1 bf 0a 00 00 00 00 00 ............ +667 0x0000391a control 12 22 695903 0 22 695903 0 16 00 00 00 5f 9e 0a 00 00 00 00 00 ...._....... +668 0x00003926 data 22 18 2033745 0 2033745 0 196609 0 12 00 00 00 51 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +669 0x0000393c control 12 -2 79994 80011 -2 79994 80011 fe ff ff ff 7a 38 01 00 8b 38 01 00 ....z8...8.. +670 0x00003948 control 12 -1 704418 0 -1 704418 0 ff ff ff ff a2 bf 0a 00 00 00 00 00 ............ +671 0x00003954 control 12 22 695904 0 22 695904 0 16 00 00 00 60 9e 0a 00 00 00 00 00 ....`....... +672 0x00003960 data 22 18 2033747 0 2033747 0 196609 0 12 00 00 00 53 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +673 0x00003976 control 12 -1 704419 0 -1 704419 0 ff ff ff ff a3 bf 0a 00 00 00 00 00 ............ +674 0x00003982 control 12 -1 704420 0 -1 704420 0 ff ff ff ff a4 bf 0a 00 00 00 00 00 ............ +675 0x0000398e control 12 52 695905 0 52 695905 0 34 00 00 00 61 9e 0a 00 00 00 00 00 4...a....... +676 0x0000399a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5f 00 02 00 00 00 00 00 00 00 b0 57 36 71 4a 01 00 00 "0...Dk.................L."".([....._..........W6q" +677 0x000039ce control 12 -1 704421 0 -1 704421 0 ff ff ff ff a5 bf 0a 00 00 00 00 00 ............ +678 0x000039da control 12 26 695906 0 26 695906 0 1a 00 00 00 62 9e 0a 00 00 00 00 00 ....b....... +679 0x000039e6 data 26 22 2033749 0 2033749 0 196609 0 16 00 00 00 55 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U..................... +680 0x00003a00 control 12 -1 704422 0 -1 704422 0 ff ff ff ff a6 bf 0a 00 00 00 00 00 ............ +681 0x00003a0c control 12 22 695907 0 22 695907 0 16 00 00 00 63 9e 0a 00 00 00 00 00 ....c....... +682 0x00003a18 data 22 18 2033751 0 2033751 0 196609 0 12 00 00 00 57 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +683 0x00003a2e control 12 -1 704423 0 -1 704423 0 ff ff ff ff a7 bf 0a 00 00 00 00 00 ............ +684 0x00003a3a control 12 22 695908 0 22 695908 0 16 00 00 00 64 9e 0a 00 00 00 00 00 ....d....... +685 0x00003a46 data 22 18 2033753 0 2033753 0 196609 0 12 00 00 00 59 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +686 0x00003a5c control 12 -1 704424 0 -1 704424 0 ff ff ff ff a8 bf 0a 00 00 00 00 00 ............ +687 0x00003a68 control 12 22 695909 0 22 695909 0 16 00 00 00 65 9e 0a 00 00 00 00 00 ....e....... +688 0x00003a74 data 22 18 2033755 0 2033755 0 196609 0 12 00 00 00 5b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +689 0x00003a8a control 12 -1 704425 0 -1 704425 0 ff ff ff ff a9 bf 0a 00 00 00 00 00 ............ +690 0x00003a96 control 12 52 695910 0 52 695910 0 34 00 00 00 66 9e 0a 00 00 00 00 00 4...f....... +691 0x00003aa2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 60 00 02 00 00 00 00 00 00 00 1d 0d 65 71 4a 01 00 00 "0...Dk.................L."".([.....`...........eq" +692 0x00003ad6 control 12 -1 704426 0 -1 704426 0 ff ff ff ff aa bf 0a 00 00 00 00 00 ............ +693 0x00003ae2 control 12 26 695911 0 26 695911 0 1a 00 00 00 67 9e 0a 00 00 00 00 00 ....g....... +694 0x00003aee data 26 22 2033757 0 2033757 0 196609 0 16 00 00 00 5d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +695 0x00003b08 control 12 -1 704427 0 -1 704427 0 ff ff ff ff ab bf 0a 00 00 00 00 00 ............ +696 0x00003b14 control 12 22 695912 0 22 695912 0 16 00 00 00 68 9e 0a 00 00 00 00 00 ....h....... +697 0x00003b20 data 22 18 2033759 0 2033759 0 196609 0 12 00 00 00 5f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +698 0x00003b36 control 12 -2 79995 80012 -2 79995 80012 fe ff ff ff 7b 38 01 00 8c 38 01 00 ....{8...8.. +699 0x00003b42 control 12 -1 704428 0 -1 704428 0 ff ff ff ff ac bf 0a 00 00 00 00 00 ............ +700 0x00003b4e control 12 22 695913 0 22 695913 0 16 00 00 00 69 9e 0a 00 00 00 00 00 ....i....... +701 0x00003b5a data 22 18 2033761 0 2033761 0 196609 0 12 00 00 00 61 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +702 0x00003b70 control 12 -1 704429 0 -1 704429 0 ff ff ff ff ad bf 0a 00 00 00 00 00 ............ +703 0x00003b7c control 12 -1 704430 0 -1 704430 0 ff ff ff ff ae bf 0a 00 00 00 00 00 ............ +704 0x00003b88 control 12 52 695914 0 52 695914 0 34 00 00 00 6a 9e 0a 00 00 00 00 00 4...j....... +705 0x00003b94 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 61 00 02 00 00 00 00 00 00 00 43 96 93 71 4a 01 00 00 "0...Dk.................L."".([.....a.........C..q" +706 0x00003bc8 control 12 -1 704431 0 -1 704431 0 ff ff ff ff af bf 0a 00 00 00 00 00 ............ +707 0x00003bd4 control 12 22 695915 0 22 695915 0 16 00 00 00 6b 9e 0a 00 00 00 00 00 ....k....... +708 0x00003be0 data 22 18 2033763 0 2033763 0 196609 0 12 00 00 00 63 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +709 0x00003bf6 control 12 -1 704432 0 -1 704432 0 ff ff ff ff b0 bf 0a 00 00 00 00 00 ............ +710 0x00003c02 control 12 26 695916 0 26 695916 0 1a 00 00 00 6c 9e 0a 00 00 00 00 00 ....l....... +711 0x00003c0e data 26 22 2033765 0 2033765 0 196609 0 16 00 00 00 65 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +712 0x00003c28 control 12 -1 704433 0 -1 704433 0 ff ff ff ff b1 bf 0a 00 00 00 00 00 ............ +713 0x00003c34 control 12 22 695917 0 22 695917 0 16 00 00 00 6d 9e 0a 00 00 00 00 00 ....m....... +714 0x00003c40 data 22 18 2033767 0 2033767 0 196609 0 12 00 00 00 67 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +715 0x00003c56 control 12 -1 704434 0 -1 704434 0 ff ff ff ff b2 bf 0a 00 00 00 00 00 ............ +716 0x00003c62 control 12 22 695918 0 22 695918 0 16 00 00 00 6e 9e 0a 00 00 00 00 00 ....n....... +717 0x00003c6e data 22 18 2033769 0 2033769 0 196609 0 12 00 00 00 69 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +718 0x00003c84 control 12 -1 704435 0 -1 704435 0 ff ff ff ff b3 bf 0a 00 00 00 00 00 ............ +719 0x00003c90 control 12 52 695919 0 52 695919 0 34 00 00 00 6f 9e 0a 00 00 00 00 00 4...o....... +720 0x00003c9c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 62 00 02 00 00 00 00 00 00 00 ae 2d c2 71 4a 01 00 00 "0...Dk.................L."".([.....b..........-.q" +721 0x00003cd0 control 12 -1 704436 0 -1 704436 0 ff ff ff ff b4 bf 0a 00 00 00 00 00 ............ +722 0x00003cdc control 12 26 695920 0 26 695920 0 1a 00 00 00 70 9e 0a 00 00 00 00 00 ....p....... +723 0x00003ce8 data 26 22 2033771 0 2033771 0 196609 0 16 00 00 00 6b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....k..................... +724 0x00003d02 control 12 -1 704437 0 -1 704437 0 ff ff ff ff b5 bf 0a 00 00 00 00 00 ............ +725 0x00003d0e control 12 22 695921 0 22 695921 0 16 00 00 00 71 9e 0a 00 00 00 00 00 ....q....... +726 0x00003d1a data 22 18 2033773 0 2033773 0 196609 0 12 00 00 00 6d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +727 0x00003d30 control 12 -2 79996 80013 -2 79996 80013 fe ff ff ff 7c 38 01 00 8d 38 01 00 ....|8...8.. +728 0x00003d3c control 12 -1 704438 0 -1 704438 0 ff ff ff ff b6 bf 0a 00 00 00 00 00 ............ +729 0x00003d48 control 12 22 695922 0 22 695922 0 16 00 00 00 72 9e 0a 00 00 00 00 00 ....r....... +730 0x00003d54 data 22 18 2033775 0 2033775 0 196609 0 12 00 00 00 6f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +731 0x00003d6a control 12 -1 704439 0 -1 704439 0 ff ff ff ff b7 bf 0a 00 00 00 00 00 ............ +732 0x00003d76 control 12 22 695923 0 22 695923 0 16 00 00 00 73 9e 0a 00 00 00 00 00 ....s....... +733 0x00003d82 data 22 18 2033777 0 2033777 0 196609 0 12 00 00 00 71 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +734 0x00003d98 control 12 -1 704440 0 -1 704440 0 ff ff ff ff b8 bf 0a 00 00 00 00 00 ............ +735 0x00003da4 control 12 -1 704441 0 -1 704441 0 ff ff ff ff b9 bf 0a 00 00 00 00 00 ............ +736 0x00003db0 control 12 52 695924 0 52 695924 0 34 00 00 00 74 9e 0a 00 00 00 00 00 4...t....... +737 0x00003dbc data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 63 00 02 00 00 00 00 00 00 00 d3 9c f0 71 4a 01 00 00 "0...Dk.................L."".([.....c............q" +738 0x00003df0 control 12 -1 704442 0 -1 704442 0 ff ff ff ff ba bf 0a 00 00 00 00 00 ............ +739 0x00003dfc control 12 26 695925 0 26 695925 0 1a 00 00 00 75 9e 0a 00 00 00 00 00 ....u....... +740 0x00003e08 data 26 22 2033779 0 2033779 0 196609 0 16 00 00 00 73 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....s..................... +741 0x00003e22 control 12 -1 704443 0 -1 704443 0 ff ff ff ff bb bf 0a 00 00 00 00 00 ............ +742 0x00003e2e control 12 22 695926 0 22 695926 0 16 00 00 00 76 9e 0a 00 00 00 00 00 ....v....... +743 0x00003e3a data 22 18 2033781 0 2033781 0 196609 0 12 00 00 00 75 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +744 0x00003e50 control 12 -1 704444 0 -1 704444 0 ff ff ff ff bc bf 0a 00 00 00 00 00 ............ +745 0x00003e5c control 12 22 695927 0 22 695927 0 16 00 00 00 77 9e 0a 00 00 00 00 00 ....w....... +746 0x00003e68 data 22 18 2033783 0 2033783 0 196609 0 12 00 00 00 77 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +747 0x00003e7e control 12 -1 704445 0 -1 704445 0 ff ff ff ff bd bf 0a 00 00 00 00 00 ............ +748 0x00003e8a control 12 22 695928 0 22 695928 0 16 00 00 00 78 9e 0a 00 00 00 00 00 ....x....... +749 0x00003e96 data 22 18 2033785 0 2033785 0 196609 0 12 00 00 00 79 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +750 0x00003eac control 12 -2 79997 80014 -2 79997 80014 fe ff ff ff 7d 38 01 00 8e 38 01 00 ....}8...8.. +751 0x00003eb8 control 12 -1 704446 0 -1 704446 0 ff ff ff ff be bf 0a 00 00 00 00 00 ............ +752 0x00003ec4 control 12 52 695929 0 52 695929 0 34 00 00 00 79 9e 0a 00 00 00 00 00 4...y....... +753 0x00003ed0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 64 00 02 00 00 00 00 00 00 00 8f 22 1f 72 4a 01 00 00 "0...Dk.................L."".([.....d.........."".r" +754 0x00003f04 control 12 -1 704447 0 -1 704447 0 ff ff ff ff bf bf 0a 00 00 00 00 00 ............ +755 0x00003f10 control 12 26 695930 0 26 695930 0 1a 00 00 00 7a 9e 0a 00 00 00 00 00 ....z....... +756 0x00003f1c data 26 22 2033787 0 2033787 0 196609 0 16 00 00 00 7b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....{..................... +757 0x00003f36 control 12 -1 704448 0 -1 704448 0 ff ff ff ff c0 bf 0a 00 00 00 00 00 ............ +758 0x00003f42 control 12 22 695931 0 22 695931 0 16 00 00 00 7b 9e 0a 00 00 00 00 00 ....{....... +759 0x00003f4e data 22 18 2033789 0 2033789 0 196609 0 12 00 00 00 7d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +760 0x00003f64 control 12 -1 704449 0 -1 704449 0 ff ff ff ff c1 bf 0a 00 00 00 00 00 ............ +761 0x00003f70 control 12 22 695932 0 22 695932 0 16 00 00 00 7c 9e 0a 00 00 00 00 00 ....|....... +762 0x00003f7c data 22 18 2033791 0 2033791 0 196609 0 12 00 00 00 7f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +763 0x00003f92 control 12 -1 704450 0 -1 704450 0 ff ff ff ff c2 bf 0a 00 00 00 00 00 ............ +764 0x00003f9e control 12 22 695933 0 22 695933 0 16 00 00 00 7d 9e 0a 00 00 00 00 00 ....}....... +765 0x00003faa data 22 18 2033793 0 2033793 0 196609 0 12 00 00 00 81 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +766 0x00003fc0 control 12 -1 704451 0 -1 704451 0 ff ff ff ff c3 bf 0a 00 00 00 00 00 ............ +767 0x00003fcc control 12 -1 704452 0 -1 704452 0 ff ff ff ff c4 bf 0a 00 00 00 00 00 ............ +768 0x00003fd8 control 12 52 695934 0 52 695934 0 34 00 00 00 7e 9e 0a 00 00 00 00 00 4...~....... +769 0x00003fe4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 65 00 02 00 00 00 00 00 00 00 36 95 4d 72 4a 01 00 00 "0...Dk.................L."".([.....e.........6.Mr" +770 0x00004018 control 12 -1 704453 0 -1 704453 0 ff ff ff ff c5 bf 0a 00 00 00 00 00 ............ +771 0x00004024 control 12 26 695935 0 26 695935 0 1a 00 00 00 7f 9e 0a 00 00 00 00 00 ............ +772 0x00004030 data 26 22 2033795 0 2033795 0 196609 0 16 00 00 00 83 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +773 0x0000404a control 12 -1 704454 0 -1 704454 0 ff ff ff ff c6 bf 0a 00 00 00 00 00 ............ +774 0x00004056 control 12 22 695936 0 22 695936 0 16 00 00 00 80 9e 0a 00 00 00 00 00 ............ +775 0x00004062 data 22 18 2033797 0 2033797 0 196609 0 12 00 00 00 85 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +776 0x00004078 control 12 -2 79998 80015 -2 79998 80015 fe ff ff ff 7e 38 01 00 8f 38 01 00 ....~8...8.. +777 0x00004084 control 12 -1 704455 0 -1 704455 0 ff ff ff ff c7 bf 0a 00 00 00 00 00 ............ +778 0x00004090 control 12 22 695937 0 22 695937 0 16 00 00 00 81 9e 0a 00 00 00 00 00 ............ +779 0x0000409c data 22 18 2033799 0 2033799 0 196609 0 12 00 00 00 87 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +780 0x000040b2 control 12 -1 704456 0 -1 704456 0 ff ff ff ff c8 bf 0a 00 00 00 00 00 ............ +781 0x000040be control 12 22 695938 0 22 695938 0 16 00 00 00 82 9e 0a 00 00 00 00 00 ............ +782 0x000040ca data 22 18 2033801 0 2033801 0 196609 0 12 00 00 00 89 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +783 0x000040e0 control 12 -1 704457 0 -1 704457 0 ff ff ff ff c9 bf 0a 00 00 00 00 00 ............ +784 0x000040ec control 12 -1 704458 0 -1 704458 0 ff ff ff ff ca bf 0a 00 00 00 00 00 ............ +785 0x000040f8 control 12 52 695939 0 52 695939 0 34 00 00 00 83 9e 0a 00 00 00 00 00 4........... +786 0x00004104 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 66 00 02 00 00 00 00 00 00 00 80 ec 7b 72 4a 01 00 00 "0...Dk.................L."".([.....f...........{r" +787 0x00004138 control 12 -1 704459 0 -1 704459 0 ff ff ff ff cb bf 0a 00 00 00 00 00 ............ +788 0x00004144 control 12 26 695940 0 26 695940 0 1a 00 00 00 84 9e 0a 00 00 00 00 00 ............ +789 0x00004150 data 26 22 2033803 0 2033803 0 196609 0 16 00 00 00 8b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +790 0x0000416a control 12 -1 704460 0 -1 704460 0 ff ff ff ff cc bf 0a 00 00 00 00 00 ............ +791 0x00004176 control 12 22 695941 0 22 695941 0 16 00 00 00 85 9e 0a 00 00 00 00 00 ............ +792 0x00004182 data 22 18 2033805 0 2033805 0 196609 0 12 00 00 00 8d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +793 0x00004198 control 12 -1 704461 0 -1 704461 0 ff ff ff ff cd bf 0a 00 00 00 00 00 ............ +794 0x000041a4 control 12 22 695942 0 22 695942 0 16 00 00 00 86 9e 0a 00 00 00 00 00 ............ +795 0x000041b0 data 22 18 2033807 0 2033807 0 196609 0 12 00 00 00 8f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +796 0x000041c6 control 12 -1 704462 0 -1 704462 0 ff ff ff ff ce bf 0a 00 00 00 00 00 ............ +797 0x000041d2 control 12 22 695943 0 22 695943 0 16 00 00 00 87 9e 0a 00 00 00 00 00 ............ +798 0x000041de data 22 18 2033809 0 2033809 0 196609 0 12 00 00 00 91 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +799 0x000041f4 control 12 -1 704463 0 -1 704463 0 ff ff ff ff cf bf 0a 00 00 00 00 00 ............ +800 0x00004200 control 12 52 695944 0 52 695944 0 34 00 00 00 88 9e 0a 00 00 00 00 00 4........... +801 0x0000420c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 67 00 02 00 00 00 00 00 00 00 39 7a aa 72 4a 01 00 00 "0...Dk.................L."".([.....g.........9z.r" +802 0x00004240 control 12 -1 704464 0 -1 704464 0 ff ff ff ff d0 bf 0a 00 00 00 00 00 ............ +803 0x0000424c control 12 -2 79999 80016 -2 79999 80016 fe ff ff ff 7f 38 01 00 90 38 01 00 .....8...8.. +804 0x00004258 control 12 26 695945 0 26 695945 0 1a 00 00 00 89 9e 0a 00 00 00 00 00 ............ +805 0x00004264 data 26 22 2033811 0 2033811 0 196609 0 16 00 00 00 93 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +806 0x0000427e control 12 -1 704465 0 -1 704465 0 ff ff ff ff d1 bf 0a 00 00 00 00 00 ............ +807 0x0000428a control 12 22 695946 0 22 695946 0 16 00 00 00 8a 9e 0a 00 00 00 00 00 ............ +808 0x00004296 data 22 18 2033813 0 2033813 0 196609 0 12 00 00 00 95 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +809 0x000042ac control 12 -1 704466 0 -1 704466 0 ff ff ff ff d2 bf 0a 00 00 00 00 00 ............ +810 0x000042b8 control 12 22 695947 0 22 695947 0 16 00 00 00 8b 9e 0a 00 00 00 00 00 ............ +811 0x000042c4 data 22 18 2033815 0 2033815 0 196609 0 12 00 00 00 97 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +812 0x000042da control 12 -1 704467 0 -1 704467 0 ff ff ff ff d3 bf 0a 00 00 00 00 00 ............ +813 0x000042e6 control 12 22 695948 0 22 695948 0 16 00 00 00 8c 9e 0a 00 00 00 00 00 ............ +814 0x000042f2 data 22 18 2033817 0 2033817 0 196609 0 12 00 00 00 99 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +815 0x00004308 control 12 -1 704468 0 -1 704468 0 ff ff ff ff d4 bf 0a 00 00 00 00 00 ............ +816 0x00004314 control 12 52 695949 0 52 695949 0 34 00 00 00 8d 9e 0a 00 00 00 00 00 4........... +817 0x00004320 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 68 00 02 00 00 00 00 00 00 00 de 07 d9 72 4a 01 00 00 "0...Dk.................L."".([.....h............r" +818 0x00004354 control 12 -1 704469 0 -1 704469 0 ff ff ff ff d5 bf 0a 00 00 00 00 00 ............ +819 0x00004360 control 12 26 695950 0 26 695950 0 1a 00 00 00 8e 9e 0a 00 00 00 00 00 ............ +820 0x0000436c data 26 22 2033819 0 2033819 0 196609 0 16 00 00 00 9b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +821 0x00004386 control 12 -1 704470 0 -1 704470 0 ff ff ff ff d6 bf 0a 00 00 00 00 00 ............ +822 0x00004392 control 12 22 695951 0 22 695951 0 16 00 00 00 8f 9e 0a 00 00 00 00 00 ............ +823 0x0000439e data 22 18 2033821 0 2033821 0 196609 0 12 00 00 00 9d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +824 0x000043b4 control 12 -1 704471 0 -1 704471 0 ff ff ff ff d7 bf 0a 00 00 00 00 00 ............ +825 0x000043c0 control 12 22 695952 0 22 695952 0 16 00 00 00 90 9e 0a 00 00 00 00 00 ............ +826 0x000043cc data 22 18 2033823 0 2033823 0 196609 0 12 00 00 00 9f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +827 0x000043e2 control 12 -2 80000 80017 -2 80000 80017 fe ff ff ff 80 38 01 00 91 38 01 00 .....8...8.. +828 0x000043ee control 12 -1 704472 0 -1 704472 0 ff ff ff ff d8 bf 0a 00 00 00 00 00 ............ +829 0x000043fa control 12 22 695953 0 22 695953 0 16 00 00 00 91 9e 0a 00 00 00 00 00 ............ +830 0x00004406 data 22 18 2033825 0 2033825 0 196609 0 12 00 00 00 a1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +831 0x0000441c control 12 -1 704473 0 -1 704473 0 ff ff ff ff d9 bf 0a 00 00 00 00 00 ............ +832 0x00004428 control 12 -1 704474 0 -1 704474 0 ff ff ff ff da bf 0a 00 00 00 00 00 ............ +833 0x00004434 control 12 52 695954 0 52 695954 0 34 00 00 00 92 9e 0a 00 00 00 00 00 4........... +834 0x00004440 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 69 00 02 00 00 00 00 00 00 00 4a 59 07 73 4a 01 00 00 "0...Dk.................L."".([.....i.........JY.s" +835 0x00004474 control 12 -1 704475 0 -1 704475 0 ff ff ff ff db bf 0a 00 00 00 00 00 ............ +836 0x00004480 control 12 26 695955 0 26 695955 0 1a 00 00 00 93 9e 0a 00 00 00 00 00 ............ +837 0x0000448c data 26 22 2033827 0 2033827 0 196609 0 16 00 00 00 a3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +838 0x000044a6 control 12 -1 704476 0 -1 704476 0 ff ff ff ff dc bf 0a 00 00 00 00 00 ............ +839 0x000044b2 control 12 22 695956 0 22 695956 0 16 00 00 00 94 9e 0a 00 00 00 00 00 ............ +840 0x000044be data 22 18 2033829 0 2033829 0 196609 0 12 00 00 00 a5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +841 0x000044d4 control 12 -1 704477 0 -1 704477 0 ff ff ff ff dd bf 0a 00 00 00 00 00 ............ +842 0x000044e0 control 12 22 695957 0 22 695957 0 16 00 00 00 95 9e 0a 00 00 00 00 00 ............ +843 0x000044ec data 22 18 2033831 0 2033831 0 196609 0 12 00 00 00 a7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +844 0x00004502 control 12 -1 704478 0 -1 704478 0 ff ff ff ff de bf 0a 00 00 00 00 00 ............ +845 0x0000450e control 12 22 695958 0 22 695958 0 16 00 00 00 96 9e 0a 00 00 00 00 00 ............ +846 0x0000451a data 22 18 2033833 0 2033833 0 196609 0 12 00 00 00 a9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +847 0x00004530 control 12 -1 704479 0 -1 704479 0 ff ff ff ff df bf 0a 00 00 00 00 00 ............ +848 0x0000453c control 12 52 695959 0 52 695959 0 34 00 00 00 97 9e 0a 00 00 00 00 00 4........... +849 0x00004548 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6a 00 02 00 00 00 00 00 00 00 d3 dd 35 73 4a 01 00 00 "0...Dk.................L."".([.....j...........5s" +850 0x0000457c control 12 -1 704480 0 -1 704480 0 ff ff ff ff e0 bf 0a 00 00 00 00 00 ............ +851 0x00004588 control 12 26 695960 0 26 695960 0 1a 00 00 00 98 9e 0a 00 00 00 00 00 ............ +852 0x00004594 data 26 22 2033835 0 2033835 0 196609 0 16 00 00 00 ab 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +853 0x000045ae control 12 -1 704481 0 -1 704481 0 ff ff ff ff e1 bf 0a 00 00 00 00 00 ............ +854 0x000045ba control 12 22 695961 0 22 695961 0 16 00 00 00 99 9e 0a 00 00 00 00 00 ............ +855 0x000045c6 data 22 18 2033837 0 2033837 0 196609 0 12 00 00 00 ad 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +856 0x000045dc control 12 -2 80001 80018 -2 80001 80018 fe ff ff ff 81 38 01 00 92 38 01 00 .....8...8.. +857 0x000045e8 control 12 -1 704482 0 -1 704482 0 ff ff ff ff e2 bf 0a 00 00 00 00 00 ............ +858 0x000045f4 control 12 22 695962 0 22 695962 0 16 00 00 00 9a 9e 0a 00 00 00 00 00 ............ +859 0x00004600 data 22 18 2033839 0 2033839 0 196609 0 12 00 00 00 af 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +860 0x00004616 control 12 -1 704483 0 -1 704483 0 ff ff ff ff e3 bf 0a 00 00 00 00 00 ............ +861 0x00004622 control 12 22 695963 0 22 695963 0 16 00 00 00 9b 9e 0a 00 00 00 00 00 ............ +862 0x0000462e data 22 18 2033841 0 2033841 0 196609 0 12 00 00 00 b1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +863 0x00004644 control 12 -1 704484 0 -1 704484 0 ff ff ff ff e4 bf 0a 00 00 00 00 00 ............ +864 0x00004650 control 12 52 695964 0 52 695964 0 34 00 00 00 9c 9e 0a 00 00 00 00 00 4........... +865 0x0000465c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6b 00 02 00 00 00 00 00 00 00 09 51 64 73 4a 01 00 00 "0...Dk.................L."".([.....k..........Qds" +866 0x00004690 control 12 -1 704485 0 -1 704485 0 ff ff ff ff e5 bf 0a 00 00 00 00 00 ............ +867 0x0000469c control 12 26 695965 0 26 695965 0 1a 00 00 00 9d 9e 0a 00 00 00 00 00 ............ +868 0x000046a8 data 26 22 2033843 0 2033843 0 196609 0 16 00 00 00 b3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +869 0x000046c2 control 12 -1 704486 0 -1 704486 0 ff ff ff ff e6 bf 0a 00 00 00 00 00 ............ +870 0x000046ce control 12 22 695966 0 22 695966 0 16 00 00 00 9e 9e 0a 00 00 00 00 00 ............ +871 0x000046da data 22 18 2033845 0 2033845 0 196609 0 12 00 00 00 b5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +872 0x000046f0 control 12 -1 704487 0 -1 704487 0 ff ff ff ff e7 bf 0a 00 00 00 00 00 ............ +873 0x000046fc control 12 22 695967 0 22 695967 0 16 00 00 00 9f 9e 0a 00 00 00 00 00 ............ +874 0x00004708 data 22 18 2033847 0 2033847 0 196609 0 12 00 00 00 b7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +875 0x0000471e control 12 -1 704488 0 -1 704488 0 ff ff ff ff e8 bf 0a 00 00 00 00 00 ............ +876 0x0000472a control 12 22 695968 0 22 695968 0 16 00 00 00 a0 9e 0a 00 00 00 00 00 ............ +877 0x00004736 data 22 18 2033849 0 2033849 0 196609 0 12 00 00 00 b9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +878 0x0000474c control 12 -2 80002 80019 -2 80002 80019 fe ff ff ff 82 38 01 00 93 38 01 00 .....8...8.. +879 0x00004758 control 12 -1 704489 0 -1 704489 0 ff ff ff ff e9 bf 0a 00 00 00 00 00 ............ +880 0x00004764 control 12 -1 704490 0 -1 704490 0 ff ff ff ff ea bf 0a 00 00 00 00 00 ............ +881 0x00004770 control 12 52 695969 0 52 695969 0 34 00 00 00 a1 9e 0a 00 00 00 00 00 4........... +882 0x0000477c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6c 00 02 00 00 00 00 00 00 00 9c bf 92 73 4a 01 00 00 "0...Dk.................L."".([.....l............s" +883 0x000047b0 control 12 -1 704491 0 -1 704491 0 ff ff ff ff eb bf 0a 00 00 00 00 00 ............ +884 0x000047bc control 12 26 695970 0 26 695970 0 1a 00 00 00 a2 9e 0a 00 00 00 00 00 ............ +885 0x000047c8 data 26 22 2033851 0 2033851 0 196609 0 16 00 00 00 bb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +886 0x000047e2 control 12 -1 704492 0 -1 704492 0 ff ff ff ff ec bf 0a 00 00 00 00 00 ............ +887 0x000047ee control 12 22 695971 0 22 695971 0 16 00 00 00 a3 9e 0a 00 00 00 00 00 ............ +888 0x000047fa data 22 18 2033853 0 2033853 0 196609 0 12 00 00 00 bd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +889 0x00004810 control 12 -1 704493 0 -1 704493 0 ff ff ff ff ed bf 0a 00 00 00 00 00 ............ +890 0x0000481c control 12 22 695972 0 22 695972 0 16 00 00 00 a4 9e 0a 00 00 00 00 00 ............ +891 0x00004828 data 22 18 2033855 0 2033855 0 196609 0 12 00 00 00 bf 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +892 0x0000483e control 12 -1 704494 0 -1 704494 0 ff ff ff ff ee bf 0a 00 00 00 00 00 ............ +893 0x0000484a control 12 22 695973 0 22 695973 0 16 00 00 00 a5 9e 0a 00 00 00 00 00 ............ +894 0x00004856 data 22 18 2033857 0 2033857 0 196609 0 12 00 00 00 c1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +895 0x0000486c control 12 -1 704495 0 -1 704495 0 ff ff ff ff ef bf 0a 00 00 00 00 00 ............ +896 0x00004878 control 12 52 695974 0 52 695974 0 34 00 00 00 a6 9e 0a 00 00 00 00 00 4........... +897 0x00004884 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6d 00 02 00 00 00 00 00 00 00 26 32 c1 73 4a 01 00 00 "0...Dk.................L."".([.....m.........&2.s" +898 0x000048b8 control 12 -1 704496 0 -1 704496 0 ff ff ff ff f0 bf 0a 00 00 00 00 00 ............ +899 0x000048c4 control 12 26 695975 0 26 695975 0 1a 00 00 00 a7 9e 0a 00 00 00 00 00 ............ +900 0x000048d0 data 26 22 2033859 0 2033859 0 196609 0 16 00 00 00 c3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +901 0x000048ea control 12 -1 704497 0 -1 704497 0 ff ff ff ff f1 bf 0a 00 00 00 00 00 ............ +902 0x000048f6 control 12 22 695976 0 22 695976 0 16 00 00 00 a8 9e 0a 00 00 00 00 00 ............ +903 0x00004902 data 22 18 2033861 0 2033861 0 196609 0 12 00 00 00 c5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +904 0x00004918 control 12 -1 704498 0 -1 704498 0 ff ff ff ff f2 bf 0a 00 00 00 00 00 ............ +905 0x00004924 control 12 22 695977 0 22 695977 0 16 00 00 00 a9 9e 0a 00 00 00 00 00 ............ +906 0x00004930 data 22 18 2033863 0 2033863 0 196609 0 12 00 00 00 c7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +907 0x00004946 control 12 -2 80003 80020 -2 80003 80020 fe ff ff ff 83 38 01 00 94 38 01 00 .....8...8.. +908 0x00004952 control 12 -1 704499 0 -1 704499 0 ff ff ff ff f3 bf 0a 00 00 00 00 00 ............ +909 0x0000495e control 12 22 695978 0 22 695978 0 16 00 00 00 aa 9e 0a 00 00 00 00 00 ............ +910 0x0000496a data 22 18 2033865 0 2033865 0 196609 0 12 00 00 00 c9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +911 0x00004980 control 12 -1 704500 0 -1 704500 0 ff ff ff ff f4 bf 0a 00 00 00 00 00 ............ +912 0x0000498c control 12 52 695979 0 52 695979 0 34 00 00 00 ab 9e 0a 00 00 00 00 00 4........... +913 0x00004998 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6e 00 02 00 00 00 00 00 00 00 ee c2 ef 73 4a 01 00 00 "0...Dk.................L."".([.....n............s" +914 0x000049cc control 12 -1 704501 0 -1 704501 0 ff ff ff ff f5 bf 0a 00 00 00 00 00 ............ +915 0x000049d8 control 12 26 695980 0 26 695980 0 1a 00 00 00 ac 9e 0a 00 00 00 00 00 ............ +916 0x000049e4 data 26 22 2033867 0 2033867 0 196609 0 16 00 00 00 cb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +917 0x000049fe control 12 -1 704502 0 -1 704502 0 ff ff ff ff f6 bf 0a 00 00 00 00 00 ............ +918 0x00004a0a control 12 22 695981 0 22 695981 0 16 00 00 00 ad 9e 0a 00 00 00 00 00 ............ +919 0x00004a16 data 22 18 2033869 0 2033869 0 196609 0 12 00 00 00 cd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +920 0x00004a2c control 12 -1 704503 0 -1 704503 0 ff ff ff ff f7 bf 0a 00 00 00 00 00 ............ +921 0x00004a38 control 12 22 695982 0 22 695982 0 16 00 00 00 ae 9e 0a 00 00 00 00 00 ............ +922 0x00004a44 data 22 18 2033871 0 2033871 0 196609 0 12 00 00 00 cf 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +923 0x00004a5a control 12 -1 704504 0 -1 704504 0 ff ff ff ff f8 bf 0a 00 00 00 00 00 ............ +924 0x00004a66 control 12 22 695983 0 22 695983 0 16 00 00 00 af 9e 0a 00 00 00 00 00 ............ +925 0x00004a72 data 22 18 2033873 0 2033873 0 196609 0 12 00 00 00 d1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +926 0x00004a88 control 12 -1 704505 0 -1 704505 0 ff ff ff ff f9 bf 0a 00 00 00 00 00 ............ +927 0x00004a94 control 12 52 695984 0 52 695984 0 34 00 00 00 b0 9e 0a 00 00 00 00 00 4........... +928 0x00004aa0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6f 00 02 00 00 00 00 00 00 00 4b 01 1e 74 4a 01 00 00 "0...Dk.................L."".([.....o.........K..t" +929 0x00004ad4 control 12 -1 704506 0 -1 704506 0 ff ff ff ff fa bf 0a 00 00 00 00 00 ............ +930 0x00004ae0 control 12 26 695985 0 26 695985 0 1a 00 00 00 b1 9e 0a 00 00 00 00 00 ............ +931 0x00004aec data 26 22 2033875 0 2033875 0 196609 0 16 00 00 00 d3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +932 0x00004b06 control 12 -2 80004 80021 -2 80004 80021 fe ff ff ff 84 38 01 00 95 38 01 00 .....8...8.. +933 0x00004b12 control 12 -1 704507 0 -1 704507 0 ff ff ff ff fb bf 0a 00 00 00 00 00 ............ +934 0x00004b1e control 12 22 695986 0 22 695986 0 16 00 00 00 b2 9e 0a 00 00 00 00 00 ............ +935 0x00004b2a data 22 18 2033877 0 2033877 0 196609 0 12 00 00 00 d5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +936 0x00004b40 control 12 -1 704508 0 -1 704508 0 ff ff ff ff fc bf 0a 00 00 00 00 00 ............ +937 0x00004b4c control 12 22 695987 0 22 695987 0 16 00 00 00 b3 9e 0a 00 00 00 00 00 ............ +938 0x00004b58 data 22 18 2033879 0 2033879 0 196609 0 12 00 00 00 d7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +939 0x00004b6e control 12 -1 704509 0 -1 704509 0 ff ff ff ff fd bf 0a 00 00 00 00 00 ............ +940 0x00004b7a control 12 22 695988 0 22 695988 0 16 00 00 00 b4 9e 0a 00 00 00 00 00 ............ +941 0x00004b86 data 22 18 2033881 0 2033881 0 196609 0 12 00 00 00 d9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +942 0x00004b9c control 12 -1 704510 0 -1 704510 0 ff ff ff ff fe bf 0a 00 00 00 00 00 ............ +943 0x00004ba8 control 12 -1 704511 0 -1 704511 0 ff ff ff ff ff bf 0a 00 00 00 00 00 ............ +944 0x00004bb4 control 12 52 695989 0 52 695989 0 34 00 00 00 b5 9e 0a 00 00 00 00 00 4........... +945 0x00004bc0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 70 00 02 00 00 00 00 00 00 00 e3 87 4c 74 4a 01 00 00 "0...Dk.................L."".([.....p...........Lt" +946 0x00004bf4 control 12 -1 704512 0 -1 704512 0 ff ff ff ff 00 c0 0a 00 00 00 00 00 ............ +947 0x00004c00 control 12 26 695990 0 26 695990 0 1a 00 00 00 b6 9e 0a 00 00 00 00 00 ............ +948 0x00004c0c data 26 22 2033883 0 2033883 0 196609 0 16 00 00 00 db 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +949 0x00004c26 control 12 -1 704513 0 -1 704513 0 ff ff ff ff 01 c0 0a 00 00 00 00 00 ............ +950 0x00004c32 control 12 22 695991 0 22 695991 0 16 00 00 00 b7 9e 0a 00 00 00 00 00 ............ +951 0x00004c3e data 22 18 2033885 0 2033885 0 196609 0 12 00 00 00 dd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +952 0x00004c54 control 12 -1 704514 0 -1 704514 0 ff ff ff ff 02 c0 0a 00 00 00 00 00 ............ +953 0x00004c60 control 12 22 695992 0 22 695992 0 16 00 00 00 b8 9e 0a 00 00 00 00 00 ............ +954 0x00004c6c data 22 18 2033887 0 2033887 0 196609 0 12 00 00 00 df 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +955 0x00004c82 control 12 -2 80005 80022 -2 80005 80022 fe ff ff ff 85 38 01 00 96 38 01 00 .....8...8.. +956 0x00004c8e control 12 -1 704515 0 -1 704515 0 ff ff ff ff 03 c0 0a 00 00 00 00 00 ............ +957 0x00004c9a control 12 22 695993 0 22 695993 0 16 00 00 00 b9 9e 0a 00 00 00 00 00 ............ +958 0x00004ca6 data 22 18 2033889 0 2033889 0 196609 0 12 00 00 00 e1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +959 0x00004cbc control 12 -1 704516 0 -1 704516 0 ff ff ff ff 04 c0 0a 00 00 00 00 00 ............ +960 0x00004cc8 control 12 -1 704517 0 -1 704517 0 ff ff ff ff 05 c0 0a 00 00 00 00 00 ............ +961 0x00004cd4 control 12 52 695994 0 52 695994 0 34 00 00 00 ba 9e 0a 00 00 00 00 00 4........... +962 0x00004ce0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 71 00 02 00 00 00 00 00 00 00 d8 e9 7a 74 4a 01 00 00 "0...Dk.................L."".([.....q...........zt" +963 0x00004d14 control 12 -1 704518 0 -1 704518 0 ff ff ff ff 06 c0 0a 00 00 00 00 00 ............ +964 0x00004d20 control 12 26 695995 0 26 695995 0 1a 00 00 00 bb 9e 0a 00 00 00 00 00 ............ +965 0x00004d2c data 26 22 2033891 0 2033891 0 196609 0 16 00 00 00 e3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +966 0x00004d46 control 12 -1 704519 0 -1 704519 0 ff ff ff ff 07 c0 0a 00 00 00 00 00 ............ +967 0x00004d52 control 12 22 695996 0 22 695996 0 16 00 00 00 bc 9e 0a 00 00 00 00 00 ............ +968 0x00004d5e data 22 18 2033893 0 2033893 0 196609 0 12 00 00 00 e5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +969 0x00004d74 control 12 -1 704520 0 -1 704520 0 ff ff ff ff 08 c0 0a 00 00 00 00 00 ............ +970 0x00004d80 control 12 22 695997 0 22 695997 0 16 00 00 00 bd 9e 0a 00 00 00 00 00 ............ +971 0x00004d8c data 22 18 2033895 0 2033895 0 196609 0 12 00 00 00 e7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +972 0x00004da2 control 12 -1 704521 0 -1 704521 0 ff ff ff ff 09 c0 0a 00 00 00 00 00 ............ +973 0x00004dae control 12 22 695998 0 22 695998 0 16 00 00 00 be 9e 0a 00 00 00 00 00 ............ +974 0x00004dba data 22 18 2033897 0 2033897 0 196609 0 12 00 00 00 e9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +975 0x00004dd0 control 12 -1 704522 0 -1 704522 0 ff ff ff ff 0a c0 0a 00 00 00 00 00 ............ +976 0x00004ddc control 12 -1 704523 0 -1 704523 0 ff ff ff ff 0b c0 0a 00 00 00 00 00 ............ +977 0x00004de8 control 12 52 695999 0 52 695999 0 34 00 00 00 bf 9e 0a 00 00 00 00 00 4........... +978 0x00004df4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 72 00 02 00 00 00 00 00 00 00 85 64 a9 74 4a 01 00 00 "0...Dk.................L."".([.....r..........d.t" +979 0x00004e28 control 12 -1 704524 0 -1 704524 0 ff ff ff ff 0c c0 0a 00 00 00 00 00 ............ +980 0x00004e34 control 12 26 696000 0 26 696000 0 1a 00 00 00 c0 9e 0a 00 00 00 00 00 ............ +981 0x00004e40 data 26 22 2033899 0 2033899 0 196609 0 16 00 00 00 eb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +982 0x00004e5a control 12 -1 704525 0 -1 704525 0 ff ff ff ff 0d c0 0a 00 00 00 00 00 ............ +983 0x00004e66 control 12 22 696001 0 22 696001 0 16 00 00 00 c1 9e 0a 00 00 00 00 00 ............ +984 0x00004e72 data 22 18 2033901 0 2033901 0 196609 0 12 00 00 00 ed 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +985 0x00004e88 control 12 -2 80006 80023 -2 80006 80023 fe ff ff ff 86 38 01 00 97 38 01 00 .....8...8.. +986 0x00004e94 control 12 -1 704526 0 -1 704526 0 ff ff ff ff 0e c0 0a 00 00 00 00 00 ............ +987 0x00004ea0 control 12 22 696002 0 22 696002 0 16 00 00 00 c2 9e 0a 00 00 00 00 00 ............ +988 0x00004eac data 22 18 2033903 0 2033903 0 196609 0 12 00 00 00 ef 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +989 0x00004ec2 control 12 -1 704527 0 -1 704527 0 ff ff ff ff 0f c0 0a 00 00 00 00 00 ............ +990 0x00004ece control 12 22 696003 0 22 696003 0 16 00 00 00 c3 9e 0a 00 00 00 00 00 ............ +991 0x00004eda data 22 18 2033905 0 2033905 0 196609 0 12 00 00 00 f1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +992 0x00004ef0 control 12 -1 704528 0 -1 704528 0 ff ff ff ff 10 c0 0a 00 00 00 00 00 ............ +993 0x00004efc control 12 52 696004 0 52 696004 0 34 00 00 00 c4 9e 0a 00 00 00 00 00 4........... +994 0x00004f08 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 73 00 02 00 00 00 00 00 00 00 d1 e6 d7 74 4a 01 00 00 "0...Dk.................L."".([.....s............t" +995 0x00004f3c control 12 -1 704529 0 -1 704529 0 ff ff ff ff 11 c0 0a 00 00 00 00 00 ............ +996 0x00004f48 control 12 26 696005 0 26 696005 0 1a 00 00 00 c5 9e 0a 00 00 00 00 00 ............ +997 0x00004f54 data 26 22 2033907 0 2033907 0 196609 0 16 00 00 00 f3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +998 0x00004f6e control 12 -1 704530 0 -1 704530 0 ff ff ff ff 12 c0 0a 00 00 00 00 00 ............ +999 0x00004f7a control 12 22 696006 0 22 696006 0 16 00 00 00 c6 9e 0a 00 00 00 00 00 ............ +1000 0x00004f86 data 22 18 2033909 0 2033909 0 196609 0 12 00 00 00 f5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1001 0x00004f9c control 12 -1 704531 0 -1 704531 0 ff ff ff ff 13 c0 0a 00 00 00 00 00 ............ +1002 0x00004fa8 control 12 22 696007 0 22 696007 0 16 00 00 00 c7 9e 0a 00 00 00 00 00 ............ +1003 0x00004fb4 data 22 18 2033911 0 2033911 0 196609 0 12 00 00 00 f7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1004 0x00004fca control 12 -1 704532 0 -1 704532 0 ff ff ff ff 14 c0 0a 00 00 00 00 00 ............ +1005 0x00004fd6 control 12 -1 704533 0 -1 704533 0 ff ff ff ff 15 c0 0a 00 00 00 00 00 ............ +1006 0x00004fe2 control 12 52 696008 0 52 696008 0 34 00 00 00 c8 9e 0a 00 00 00 00 00 4........... +1007 0x00004fee data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 74 00 02 00 00 00 00 00 00 00 63 5e 06 75 4a 01 00 00 "0...Dk.................L."".([.....t.........c^.u" +1008 0x00005022 control 12 22 696009 0 22 696009 0 16 00 00 00 c9 9e 0a 00 00 00 00 00 ............ +1009 0x0000502e data 22 18 2033913 0 2033913 0 196609 0 12 00 00 00 f9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1010 0x00005044 control 12 -1 704534 0 -1 704534 0 ff ff ff ff 16 c0 0a 00 00 00 00 00 ............ +1011 0x00005050 control 12 26 696010 0 26 696010 0 1a 00 00 00 ca 9e 0a 00 00 00 00 00 ............ +1012 0x0000505c data 26 22 2033915 0 2033915 0 196609 0 16 00 00 00 fb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1013 0x00005076 control 12 -2 80007 80024 -2 80007 80024 fe ff ff ff 87 38 01 00 98 38 01 00 .....8...8.. +1014 0x00005082 control 12 -1 704535 0 -1 704535 0 ff ff ff ff 17 c0 0a 00 00 00 00 00 ............ +1015 0x0000508e control 12 22 696011 0 22 696011 0 16 00 00 00 cb 9e 0a 00 00 00 00 00 ............ +1016 0x0000509a data 22 18 2033917 0 2033917 0 196609 0 12 00 00 00 fd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1017 0x000050b0 control 12 -1 704536 0 -1 704536 0 ff ff ff ff 18 c0 0a 00 00 00 00 00 ............ +1018 0x000050bc control 12 22 696012 0 22 696012 0 16 00 00 00 cc 9e 0a 00 00 00 00 00 ............ +1019 0x000050c8 data 22 18 2033919 0 2033919 0 196609 0 12 00 00 00 ff 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1020 0x000050de control 12 -1 704537 0 -1 704537 0 ff ff ff ff 19 c0 0a 00 00 00 00 00 ............ +1021 0x000050ea control 12 -1 704538 0 -1 704538 0 ff ff ff ff 1a c0 0a 00 00 00 00 00 ............ +1022 0x000050f6 control 12 52 696013 0 52 696013 0 34 00 00 00 cd 9e 0a 00 00 00 00 00 4........... +1023 0x00005102 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 75 00 02 00 00 00 00 00 00 00 fb d2 34 75 4a 01 00 00 "0...Dk.................L."".([.....u...........4u" +1024 0x00005136 control 12 -1 704539 0 -1 704539 0 ff ff ff ff 1b c0 0a 00 00 00 00 00 ............ +1025 0x00005142 control 12 26 696014 0 26 696014 0 1a 00 00 00 ce 9e 0a 00 00 00 00 00 ............ +1026 0x0000514e data 26 22 2033921 0 2033921 0 196609 0 16 00 00 00 01 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1027 0x00005168 control 12 -1 704540 0 -1 704540 0 ff ff ff ff 1c c0 0a 00 00 00 00 00 ............ +1028 0x00005174 control 12 22 696015 0 22 696015 0 16 00 00 00 cf 9e 0a 00 00 00 00 00 ............ +1029 0x00005180 data 22 18 2033923 0 2033923 0 196609 0 12 00 00 00 03 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1030 0x00005196 control 12 -1 704541 0 -1 704541 0 ff ff ff ff 1d c0 0a 00 00 00 00 00 ............ +1031 0x000051a2 control 12 22 696016 0 22 696016 0 16 00 00 00 d0 9e 0a 00 00 00 00 00 ............ +1032 0x000051ae data 22 18 2033925 0 2033925 0 196609 0 12 00 00 00 05 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1033 0x000051c4 control 12 -1 704542 0 -1 704542 0 ff ff ff ff 1e c0 0a 00 00 00 00 00 ............ +1034 0x000051d0 control 12 22 696017 0 22 696017 0 16 00 00 00 d1 9e 0a 00 00 00 00 00 ............ +1035 0x000051dc data 22 18 2033927 0 2033927 0 196609 0 12 00 00 00 07 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1036 0x000051f2 control 12 -2 80008 80025 -2 80008 80025 fe ff ff ff 88 38 01 00 99 38 01 00 .....8...8.. +1037 0x000051fe control 12 -1 704543 0 -1 704543 0 ff ff ff ff 1f c0 0a 00 00 00 00 00 ............ +1038 0x0000520a control 12 52 696018 0 52 696018 0 34 00 00 00 d2 9e 0a 00 00 00 00 00 4........... +1039 0x00005216 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 76 00 02 00 00 00 00 00 00 00 3d 37 63 75 4a 01 00 00 "0...Dk.................L."".([.....v.........=7cu" +1040 0x0000524a control 12 -1 704544 0 -1 704544 0 ff ff ff ff 20 c0 0a 00 00 00 00 00 .... ....... +1041 0x00005256 control 12 26 696019 0 26 696019 0 1a 00 00 00 d3 9e 0a 00 00 00 00 00 ............ +1042 0x00005262 data 26 22 2033929 0 2033929 0 196609 0 16 00 00 00 09 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1043 0x0000527c control 12 -1 704545 0 -1 704545 0 ff ff ff ff 21 c0 0a 00 00 00 00 00 ....!....... +1044 0x00005288 control 12 22 696020 0 22 696020 0 16 00 00 00 d4 9e 0a 00 00 00 00 00 ............ +1045 0x00005294 data 22 18 2033931 0 2033931 0 196609 0 12 00 00 00 0b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1046 0x000052aa control 12 -1 704546 0 -1 704546 0 ff ff ff ff 22 c0 0a 00 00 00 00 00 "....""......." +1047 0x000052b6 control 12 22 696021 0 22 696021 0 16 00 00 00 d5 9e 0a 00 00 00 00 00 ............ +1048 0x000052c2 data 22 18 2033933 0 2033933 0 196609 0 12 00 00 00 0d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1049 0x000052d8 control 12 -1 704547 0 -1 704547 0 ff ff ff ff 23 c0 0a 00 00 00 00 00 ....#....... +1050 0x000052e4 control 12 22 696022 0 22 696022 0 16 00 00 00 d6 9e 0a 00 00 00 00 00 ............ +1051 0x000052f0 data 22 18 2033935 0 2033935 0 196609 0 12 00 00 00 0f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1052 0x00005306 control 12 -1 704548 0 -1 704548 0 ff ff ff ff 24 c0 0a 00 00 00 00 00 ....$....... +1053 0x00005312 control 12 52 696023 0 52 696023 0 34 00 00 00 d7 9e 0a 00 00 00 00 00 4........... +1054 0x0000531e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 77 00 02 00 00 00 00 00 00 00 98 b6 91 75 4a 01 00 00 "0...Dk.................L."".([.....w............u" +1055 0x00005352 control 12 -1 704549 0 -1 704549 0 ff ff ff ff 25 c0 0a 00 00 00 00 00 ....%....... +1056 0x0000535e control 12 26 696024 0 26 696024 0 1a 00 00 00 d8 9e 0a 00 00 00 00 00 ............ +1057 0x0000536a data 26 22 2033937 0 2033937 0 196609 0 16 00 00 00 11 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1058 0x00005384 control 12 -1 704550 0 -1 704550 0 ff ff ff ff 26 c0 0a 00 00 00 00 00 ....&....... +1059 0x00005390 control 12 22 696025 0 22 696025 0 16 00 00 00 d9 9e 0a 00 00 00 00 00 ............ +1060 0x0000539c data 22 18 2033939 0 2033939 0 196609 0 12 00 00 00 13 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1061 0x000053b2 control 12 -1 704551 0 -1 704551 0 ff ff ff ff 27 c0 0a 00 00 00 00 00 ....'....... +1062 0x000053be control 12 22 696026 0 22 696026 0 16 00 00 00 da 9e 0a 00 00 00 00 00 ............ +1063 0x000053ca data 22 18 2033941 0 2033941 0 196609 0 12 00 00 00 15 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1064 0x000053e0 control 12 -2 80009 80026 -2 80009 80026 fe ff ff ff 89 38 01 00 9a 38 01 00 .....8...8.. +1065 0x000053ec control 12 -1 704552 0 -1 704552 0 ff ff ff ff 28 c0 0a 00 00 00 00 00 ....(....... +1066 0x000053f8 control 12 22 696027 0 22 696027 0 16 00 00 00 db 9e 0a 00 00 00 00 00 ............ +1067 0x00005404 data 22 18 2033943 0 2033943 0 196609 0 12 00 00 00 17 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1068 0x0000541a control 12 -1 704553 0 -1 704553 0 ff ff ff ff 29 c0 0a 00 00 00 00 00 ....)....... +1069 0x00005426 control 12 52 696028 0 52 696028 0 34 00 00 00 dc 9e 0a 00 00 00 00 00 4........... +1070 0x00005432 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 78 00 02 00 00 00 00 00 00 00 5e 3e c0 75 4a 01 00 00 "0...Dk.................L."".([.....x.........^>.u" +1071 0x00005466 control 12 -1 704554 0 -1 704554 0 ff ff ff ff 2a c0 0a 00 00 00 00 00 ....*....... +1072 0x00005472 control 12 26 696029 0 26 696029 0 1a 00 00 00 dd 9e 0a 00 00 00 00 00 ............ +1073 0x0000547e data 26 22 2033945 0 2033945 0 196609 0 16 00 00 00 19 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1074 0x00005498 control 12 -1 704555 0 -1 704555 0 ff ff ff ff 2b c0 0a 00 00 00 00 00 ....+....... +1075 0x000054a4 control 12 22 696030 0 22 696030 0 16 00 00 00 de 9e 0a 00 00 00 00 00 ............ +1076 0x000054b0 data 22 18 2033947 0 2033947 0 196609 0 12 00 00 00 1b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1077 0x000054c6 control 12 -1 704556 0 -1 704556 0 ff ff ff ff 2c c0 0a 00 00 00 00 00 ....,....... +1078 0x000054d2 control 12 22 696031 0 22 696031 0 16 00 00 00 df 9e 0a 00 00 00 00 00 ............ +1079 0x000054de data 22 18 2033949 0 2033949 0 196609 0 12 00 00 00 1d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1080 0x000054f4 control 12 -1 704557 0 -1 704557 0 ff ff ff ff 2d c0 0a 00 00 00 00 00 ....-....... +1081 0x00005500 control 12 22 696032 0 22 696032 0 16 00 00 00 e0 9e 0a 00 00 00 00 00 ............ +1082 0x0000550c data 22 18 2033951 0 2033951 0 196609 0 12 00 00 00 1f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1083 0x00005522 control 12 -1 704558 0 -1 704558 0 ff ff ff ff 2e c0 0a 00 00 00 00 00 ............ +1084 0x0000552e control 12 52 696033 0 52 696033 0 34 00 00 00 e1 9e 0a 00 00 00 00 00 4........... +1085 0x0000553a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 79 00 02 00 00 00 00 00 00 00 eb bd ee 75 4a 01 00 00 "0...Dk.................L."".([.....y............u" +1086 0x0000556e control 12 -1 704559 0 -1 704559 0 ff ff ff ff 2f c0 0a 00 00 00 00 00 ..../....... +1087 0x0000557a control 12 26 696034 0 26 696034 0 1a 00 00 00 e2 9e 0a 00 00 00 00 00 ............ +1088 0x00005586 data 26 22 2033953 0 2033953 0 196609 0 16 00 00 00 21 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +1089 0x000055a0 control 12 -1 704560 0 -1 704560 0 ff ff ff ff 30 c0 0a 00 00 00 00 00 ....0....... +1090 0x000055ac control 12 22 696035 0 22 696035 0 16 00 00 00 e3 9e 0a 00 00 00 00 00 ............ +1091 0x000055b8 data 22 18 2033955 0 2033955 0 196609 0 12 00 00 00 23 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +1092 0x000055ce control 12 -2 80010 80027 -2 80010 80027 fe ff ff ff 8a 38 01 00 9b 38 01 00 .....8...8.. +1093 0x000055da control 12 -1 704561 0 -1 704561 0 ff ff ff ff 31 c0 0a 00 00 00 00 00 ....1....... +1094 0x000055e6 control 12 22 696036 0 22 696036 0 16 00 00 00 e4 9e 0a 00 00 00 00 00 ............ +1095 0x000055f2 data 22 18 2033957 0 2033957 0 196609 0 12 00 00 00 25 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +1096 0x00005608 control 12 -1 704562 0 -1 704562 0 ff ff ff ff 32 c0 0a 00 00 00 00 00 ....2....... +1097 0x00005614 control 12 22 696037 0 22 696037 0 16 00 00 00 e5 9e 0a 00 00 00 00 00 ............ +1098 0x00005620 data 22 18 2033959 0 2033959 0 196609 0 12 00 00 00 27 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +1099 0x00005636 control 12 -1 704563 0 -1 704563 0 ff ff ff ff 33 c0 0a 00 00 00 00 00 ....3....... +1100 0x00005642 control 12 -1 704564 0 -1 704564 0 ff ff ff ff 34 c0 0a 00 00 00 00 00 ....4....... +1101 0x0000564e control 12 52 696038 0 52 696038 0 34 00 00 00 e6 9e 0a 00 00 00 00 00 4........... +1102 0x0000565a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7a 00 02 00 00 00 00 00 00 00 c1 12 1d 76 4a 01 00 00 "0...Dk.................L."".([.....z............v" +1103 0x0000568e control 12 -1 704565 0 -1 704565 0 ff ff ff ff 35 c0 0a 00 00 00 00 00 ....5....... +1104 0x0000569a control 12 26 696039 0 26 696039 0 1a 00 00 00 e7 9e 0a 00 00 00 00 00 ............ +1105 0x000056a6 data 26 22 2033961 0 2033961 0 196609 0 16 00 00 00 29 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +1106 0x000056c0 control 12 -1 704566 0 -1 704566 0 ff ff ff ff 36 c0 0a 00 00 00 00 00 ....6....... +1107 0x000056cc control 12 22 696040 0 22 696040 0 16 00 00 00 e8 9e 0a 00 00 00 00 00 ............ +1108 0x000056d8 data 22 18 2033963 0 2033963 0 196609 0 12 00 00 00 2b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +1109 0x000056ee control 12 -1 704567 0 -1 704567 0 ff ff ff ff 37 c0 0a 00 00 00 00 00 ....7....... +1110 0x000056fa control 12 22 696041 0 22 696041 0 16 00 00 00 e9 9e 0a 00 00 00 00 00 ............ +1111 0x00005706 data 22 18 2033965 0 2033965 0 196609 0 12 00 00 00 2d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +1112 0x0000571c control 12 -2 80011 80028 -2 80011 80028 fe ff ff ff 8b 38 01 00 9c 38 01 00 .....8...8.. +1113 0x00005728 control 12 -1 704568 0 -1 704568 0 ff ff ff ff 38 c0 0a 00 00 00 00 00 ....8....... +1114 0x00005734 control 12 22 696042 0 22 696042 0 16 00 00 00 ea 9e 0a 00 00 00 00 00 ............ +1115 0x00005740 data 22 18 2033967 0 2033967 0 196609 0 12 00 00 00 2f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +1116 0x00005756 control 12 -1 704569 0 -1 704569 0 ff ff ff ff 39 c0 0a 00 00 00 00 00 ....9....... +1117 0x00005762 control 12 52 696043 0 52 696043 0 34 00 00 00 eb 9e 0a 00 00 00 00 00 4........... +1118 0x0000576e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7b 00 02 00 00 00 00 00 00 00 4b 72 4b 76 4a 01 00 00 "0...Dk.................L."".([.....{.........KrKv" +1119 0x000057a2 control 12 -1 704570 0 -1 704570 0 ff ff ff ff 3a c0 0a 00 00 00 00 00 ....:....... +1120 0x000057ae control 12 26 696044 0 26 696044 0 1a 00 00 00 ec 9e 0a 00 00 00 00 00 ............ +1121 0x000057ba data 26 22 2033969 0 2033969 0 196609 0 16 00 00 00 31 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +1122 0x000057d4 control 12 -1 704571 0 -1 704571 0 ff ff ff ff 3b c0 0a 00 00 00 00 00 ....;....... +1123 0x000057e0 control 12 22 696045 0 22 696045 0 16 00 00 00 ed 9e 0a 00 00 00 00 00 ............ +1124 0x000057ec data 22 18 2033971 0 2033971 0 196609 0 12 00 00 00 33 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +1125 0x00005802 control 12 -1 704572 0 -1 704572 0 ff ff ff ff 3c c0 0a 00 00 00 00 00 ....<....... +1126 0x0000580e control 12 22 696046 0 22 696046 0 16 00 00 00 ee 9e 0a 00 00 00 00 00 ............ +1127 0x0000581a data 22 18 2033973 0 2033973 0 196609 0 12 00 00 00 35 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +1128 0x00005830 control 12 -1 704573 0 -1 704573 0 ff ff ff ff 3d c0 0a 00 00 00 00 00 ....=....... +1129 0x0000583c control 12 22 696047 0 22 696047 0 16 00 00 00 ef 9e 0a 00 00 00 00 00 ............ +1130 0x00005848 data 22 18 2033975 0 2033975 0 196609 0 12 00 00 00 37 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +1131 0x0000585e control 12 -1 704574 0 -1 704574 0 ff ff ff ff 3e c0 0a 00 00 00 00 00 ....>....... +1132 0x0000586a control 12 52 696048 0 52 696048 0 34 00 00 00 f0 9e 0a 00 00 00 00 00 4........... +1133 0x00005876 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7c 00 02 00 00 00 00 00 00 00 bf e5 79 76 4a 01 00 00 "0...Dk.................L."".([.....|...........yv" +1134 0x000058aa control 12 -1 704575 0 -1 704575 0 ff ff ff ff 3f c0 0a 00 00 00 00 00 ....?....... +1135 0x000058b6 control 12 26 696049 0 26 696049 0 1a 00 00 00 f1 9e 0a 00 00 00 00 00 ............ +1136 0x000058c2 data 26 22 2033977 0 2033977 0 196609 0 16 00 00 00 39 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +1137 0x000058dc control 12 -1 704576 0 -1 704576 0 ff ff ff ff 40 c0 0a 00 00 00 00 00 ....@....... +1138 0x000058e8 control 12 22 696050 0 22 696050 0 16 00 00 00 f2 9e 0a 00 00 00 00 00 ............ +1139 0x000058f4 data 22 18 2033979 0 2033979 0 196609 0 12 00 00 00 3b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +1140 0x0000590a control 12 -2 80012 80029 -2 80012 80029 fe ff ff ff 8c 38 01 00 9d 38 01 00 .....8...8.. +1141 0x00005916 control 12 -1 704577 0 -1 704577 0 ff ff ff ff 41 c0 0a 00 00 00 00 00 ....A....... +1142 0x00005922 control 12 22 696051 0 22 696051 0 16 00 00 00 f3 9e 0a 00 00 00 00 00 ............ +1143 0x0000592e data 22 18 2033981 0 2033981 0 196609 0 12 00 00 00 3d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +1144 0x00005944 control 12 -1 704578 0 -1 704578 0 ff ff ff ff 42 c0 0a 00 00 00 00 00 ....B....... +1145 0x00005950 control 12 22 696052 0 22 696052 0 16 00 00 00 f4 9e 0a 00 00 00 00 00 ............ +1146 0x0000595c data 22 18 2033983 0 2033983 0 196609 0 12 00 00 00 3f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +1147 0x00005972 control 12 -1 704579 0 -1 704579 0 ff ff ff ff 43 c0 0a 00 00 00 00 00 ....C....... +1148 0x0000597e control 12 -1 704580 0 -1 704580 0 ff ff ff ff 44 c0 0a 00 00 00 00 00 ....D....... +1149 0x0000598a control 12 52 696053 0 52 696053 0 34 00 00 00 f5 9e 0a 00 00 00 00 00 4........... +1150 0x00005996 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7d 00 02 00 00 00 00 00 00 00 6e 4b a8 76 4a 01 00 00 "0...Dk.................L."".([.....}.........nK.v" +1151 0x000059ca control 12 -1 704581 0 -1 704581 0 ff ff ff ff 45 c0 0a 00 00 00 00 00 ....E....... +1152 0x000059d6 control 12 26 696054 0 26 696054 0 1a 00 00 00 f6 9e 0a 00 00 00 00 00 ............ +1153 0x000059e2 data 26 22 2033985 0 2033985 0 196609 0 16 00 00 00 41 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +1154 0x000059fc control 12 -1 704582 0 -1 704582 0 ff ff ff ff 46 c0 0a 00 00 00 00 00 ....F....... +1155 0x00005a08 control 12 22 696055 0 22 696055 0 16 00 00 00 f7 9e 0a 00 00 00 00 00 ............ +1156 0x00005a14 data 22 18 2033987 0 2033987 0 196609 0 12 00 00 00 43 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +1157 0x00005a2a control 12 -1 704583 0 -1 704583 0 ff ff ff ff 47 c0 0a 00 00 00 00 00 ....G....... +1158 0x00005a36 control 12 22 696056 0 22 696056 0 16 00 00 00 f8 9e 0a 00 00 00 00 00 ............ +1159 0x00005a42 data 22 18 2033989 0 2033989 0 196609 0 12 00 00 00 45 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +1160 0x00005a58 control 12 -1 704584 0 -1 704584 0 ff ff ff ff 48 c0 0a 00 00 00 00 00 ....H....... +1161 0x00005a64 control 12 22 696057 0 22 696057 0 16 00 00 00 f9 9e 0a 00 00 00 00 00 ............ +1162 0x00005a70 data 22 18 2033991 0 2033991 0 196609 0 12 00 00 00 47 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +1163 0x00005a86 control 12 -1 704585 0 -1 704585 0 ff ff ff ff 49 c0 0a 00 00 00 00 00 ....I....... +1164 0x00005a92 control 12 -1 704586 0 -1 704586 0 ff ff ff ff 4a c0 0a 00 00 00 00 00 ....J....... +1165 0x00005a9e control 12 52 696058 0 52 696058 0 34 00 00 00 fa 9e 0a 00 00 00 00 00 4........... +1166 0x00005aaa data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7e 00 02 00 00 00 00 00 00 00 48 ae d6 76 4a 01 00 00 "0...Dk.................L."".([.....~.........H..v" +1167 0x00005ade control 12 -1 704587 0 -1 704587 0 ff ff ff ff 4b c0 0a 00 00 00 00 00 ....K....... +1168 0x00005aea control 12 26 696059 0 26 696059 0 1a 00 00 00 fb 9e 0a 00 00 00 00 00 ............ +1169 0x00005af6 data 26 22 2033993 0 2033993 0 196609 0 16 00 00 00 49 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +1170 0x00005b10 control 12 -2 80013 80030 -2 80013 80030 fe ff ff ff 8d 38 01 00 9e 38 01 00 .....8...8.. +1171 0x00005b1c control 12 -1 704588 0 -1 704588 0 ff ff ff ff 4c c0 0a 00 00 00 00 00 ....L....... +1172 0x00005b28 control 12 22 696060 0 22 696060 0 16 00 00 00 fc 9e 0a 00 00 00 00 00 ............ +1173 0x00005b34 data 22 18 2033995 0 2033995 0 196609 0 12 00 00 00 4b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +1174 0x00005b4a control 12 -1 704589 0 -1 704589 0 ff ff ff ff 4d c0 0a 00 00 00 00 00 ....M....... +1175 0x00005b56 control 12 22 696061 0 22 696061 0 16 00 00 00 fd 9e 0a 00 00 00 00 00 ............ +1176 0x00005b62 data 22 18 2033997 0 2033997 0 196609 0 12 00 00 00 4d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +1177 0x00005b78 control 12 -1 704590 0 -1 704590 0 ff ff ff ff 4e c0 0a 00 00 00 00 00 ....N....... +1178 0x00005b84 control 12 22 696062 0 22 696062 0 16 00 00 00 fe 9e 0a 00 00 00 00 00 ............ +1179 0x00005b90 data 22 18 2033999 0 2033999 0 196609 0 12 00 00 00 4f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +1180 0x00005ba6 control 12 -1 704591 0 -1 704591 0 ff ff ff ff 4f c0 0a 00 00 00 00 00 ....O....... +1181 0x00005bb2 control 12 52 696063 0 52 696063 0 34 00 00 00 ff 9e 0a 00 00 00 00 00 4........... +1182 0x00005bbe data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7f 00 02 00 00 00 00 00 00 00 f4 00 05 77 4a 01 00 00 "0...Dk.................L."".([..................w" +1183 0x00005bf2 control 12 -1 704592 0 -1 704592 0 ff ff ff ff 50 c0 0a 00 00 00 00 00 ....P....... +1184 0x00005bfe control 12 26 696064 0 26 696064 0 1a 00 00 00 00 9f 0a 00 00 00 00 00 ............ +1185 0x00005c0a data 26 22 2034001 0 2034001 0 196609 0 16 00 00 00 51 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +1186 0x00005c24 control 12 -1 704593 0 -1 704593 0 ff ff ff ff 51 c0 0a 00 00 00 00 00 ....Q....... +1187 0x00005c30 control 12 22 696065 0 22 696065 0 16 00 00 00 01 9f 0a 00 00 00 00 00 ............ +1188 0x00005c3c data 22 18 2034003 0 2034003 0 196609 0 12 00 00 00 53 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +1189 0x00005c52 control 12 -1 704594 0 -1 704594 0 ff ff ff ff 52 c0 0a 00 00 00 00 00 ....R....... +1190 0x00005c5e control 12 22 696066 0 22 696066 0 16 00 00 00 02 9f 0a 00 00 00 00 00 ............ +1191 0x00005c6a data 22 18 2034005 0 2034005 0 196609 0 12 00 00 00 55 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +1192 0x00005c80 control 12 -2 80014 80031 -2 80014 80031 fe ff ff ff 8e 38 01 00 9f 38 01 00 .....8...8.. +1193 0x00005c8c control 12 -1 704595 0 -1 704595 0 ff ff ff ff 53 c0 0a 00 00 00 00 00 ....S....... +1194 0x00005c98 control 12 22 696067 0 22 696067 0 16 00 00 00 03 9f 0a 00 00 00 00 00 ............ +1195 0x00005ca4 data 22 18 2034007 0 2034007 0 196609 0 12 00 00 00 57 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +1196 0x00005cba control 12 -1 704596 0 -1 704596 0 ff ff ff ff 54 c0 0a 00 00 00 00 00 ....T....... +1197 0x00005cc6 control 12 -1 704597 0 -1 704597 0 ff ff ff ff 55 c0 0a 00 00 00 00 00 ....U....... +1198 0x00005cd2 control 12 52 696068 0 52 696068 0 34 00 00 00 04 9f 0a 00 00 00 00 00 4........... +1199 0x00005cde data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 80 00 02 00 00 00 00 00 00 00 56 66 33 77 4a 01 00 00 "0...Dk.................L."".([...............Vf3w" +1200 0x00005d12 control 12 -1 704598 0 -1 704598 0 ff ff ff ff 56 c0 0a 00 00 00 00 00 ....V....... +1201 0x00005d1e control 12 26 696069 0 26 696069 0 1a 00 00 00 05 9f 0a 00 00 00 00 00 ............ +1202 0x00005d2a data 26 22 2034009 0 2034009 0 196609 0 16 00 00 00 59 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +1203 0x00005d44 control 12 -1 704599 0 -1 704599 0 ff ff ff ff 57 c0 0a 00 00 00 00 00 ....W....... +1204 0x00005d50 control 12 22 696070 0 22 696070 0 16 00 00 00 06 9f 0a 00 00 00 00 00 ............ +1205 0x00005d5c data 22 18 2034011 0 2034011 0 196609 0 12 00 00 00 5b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +1206 0x00005d72 control 12 -1 704600 0 -1 704600 0 ff ff ff ff 58 c0 0a 00 00 00 00 00 ....X....... +1207 0x00005d7e control 12 22 696071 0 22 696071 0 16 00 00 00 07 9f 0a 00 00 00 00 00 ............ +1208 0x00005d8a data 22 18 2034013 0 2034013 0 196609 0 12 00 00 00 5d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. diff --git a/captures/016-loopback-write-test-int-advised/nmx-conversations.tsv b/captures/016-loopback-write-test-int-advised/nmx-conversations.tsv new file mode 100644 index 0000000..e75dbce --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/nmx-conversations.tsv @@ -0,0 +1,7 @@ +capture selected_a selected_b payload_packets payload_bytes +C:\Users\dohertj2\Desktop\mxaccess\captures\016-loopback-write-test-int-advised\loopback.pcapng ::1:49704 ::1:55840 400 32726 + +conversation_a conversation_b payload_packets payload_bytes +::1:49704 ::1:55840 400 32726 +::1:49704 ::1:49768 96 7398 +::1:49704 ::1:49829 2 270 diff --git a/captures/016-loopback-write-test-int-advised/nmx-payload-packets.tsv b/captures/016-loopback-write-test-int-advised/nmx-payload-packets.tsv new file mode 100644 index 0000000..bdad1ae --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/nmx-payload-packets.tsv @@ -0,0 +1,401 @@ +frame time_relative from_service src sport dst dport seq ack payload_len hex_prefix ascii_preview +611 0.000000000 0 ::1 55840 ::1 49704 2977462135 2344940942 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +613 0.000390291 1 ::1 49704 ::1 55840 2344940942 2977462251 84 05000c03100000005400000002000000d016d016b6b900000600343937303400 ........T.................49704..........]...... +615 0.000541449 0 ::1 55840 ::1 49704 2977462251 2344941026 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +617 0.000767946 1 ::1 49704 ::1 55840 2344941026 2977462291 44 05000203100000002c00000002000000140000000000000000000000c40e241d ........,.....................$....J....<.jx +619 0.000974655 0 ::1 55840 ::1 49704 2977462291 2344941070 72 05000e03100000004800000003000000d016d016b6b900000100000001000100 ........H.......................K....k.F.@.`..Q. +621 0.001127481 1 ::1 49704 ::1 55840 2344941070 2977462363 56 05000f03100000003800000003000000d016d016b6b900000000000001000000 ........8............................].......... +623 0.001311064 0 ::1 55840 ::1 49704 2977462363 2344941126 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K..........$. +625 0.002803564 1 ::1 49704 ::1 55840 2344941126 2977462459 28 05000203100000001c00000003000000040000000100000001000000 ............................ +627 0.002973795 0 ::1 55840 ::1 49704 2977462459 2344941154 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........$. +629 0.003149748 1 ::1 49704 ::1 55840 2344941154 2977462519 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +631 0.003448009 0 ::1 55840 ::1 49704 2977462519 2344941246 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........$. +633 0.003631592 1 ::1 49704 ::1 55840 2344941246 2977462639 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +635 0.003790855 0 ::1 55840 ::1 49704 2977462639 2344941278 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........$. +637 0.003954172 1 ::1 49704 ::1 55840 2344941278 2977462763 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +639 0.004108429 0 ::1 55840 ::1 49704 2977462763 2344941310 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K..........$. +641 0.004358530 1 ::1 49704 ::1 55840 2344941310 2977462881 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +643 0.004521132 0 ::1 55840 ::1 49704 2977462881 2344941342 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........$. +645 0.004693270 1 ::1 49704 ::1 55840 2344941342 2977463001 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +647 0.004847765 0 ::1 55840 ::1 49704 2977463001 2344941374 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........$. +649 0.005021095 1 ::1 49704 ::1 55840 2344941374 2977463131 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +651 0.005173683 0 ::1 55840 ::1 49704 2977463131 2344941406 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........$. +653 0.005386114 1 ::1 49704 ::1 55840 2344941406 2977463261 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +655 0.005558729 0 ::1 55840 ::1 49704 2977463261 2344941438 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........$. +657 0.005720139 1 ::1 49704 ::1 55840 2344941438 2977463403 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +659 0.005870342 0 ::1 55840 ::1 49704 2977463403 2344941470 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K..........$. +661 0.006029129 1 ::1 49704 ::1 55840 2344941470 2977463519 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +663 0.006334305 0 ::1 55840 ::1 49704 2977463519 2344941502 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........$. +665 0.006498814 1 ::1 49704 ::1 55840 2344941502 2977463649 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +667 0.006652355 0 ::1 55840 ::1 49704 2977463649 2344941534 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........$. +669 0.006812572 1 ::1 49704 ::1 55840 2344941534 2977463777 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +671 0.006962538 0 ::1 55840 ::1 49704 2977463777 2344941566 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K..........$. +673 0.007121325 1 ::1 49704 ::1 55840 2344941566 2977463903 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +675 0.007713318 0 ::1 55840 ::1 49704 2977463903 2344941598 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........$. +677 0.007875443 1 ::1 49704 ::1 55840 2344941598 2977464035 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +679 0.008077621 0 ::1 55840 ::1 49704 2977464035 2344941630 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........$. +681 0.008239746 1 ::1 49704 ::1 55840 2344941630 2977464187 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +728 0.129045963 0 ::1 55840 ::1 49704 2977464187 2344941662 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +730 0.129302979 1 ::1 49704 ::1 55840 2344941662 2977464227 44 05000203100000002c0000001200000014000000000000000000000051d33468 ........,...................Q.4h^|.J....4.Wg +732 0.129876852 0 ::1 55840 ::1 49704 2977464227 2344941706 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........Q.4h +734 0.131438494 1 ::1 49704 ::1 55840 2344941706 2977464335 28 05000203100000001c00000013000000040000000100000001000000 ............................ +736 0.131633043 0 ::1 55840 ::1 49704 2977464335 2344941734 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........Q.4h +738 0.131814241 1 ::1 49704 ::1 55840 2344941734 2977464395 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +740 0.132059336 0 ::1 55840 ::1 49704 2977464395 2344941826 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Q.4h +742 0.132235527 1 ::1 49704 ::1 55840 2344941826 2977464527 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +744 0.132392645 0 ::1 55840 ::1 49704 2977464527 2344941858 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........Q.4h +746 0.132775545 1 ::1 49704 ::1 55840 2344941858 2977464663 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +748 0.132943392 0 ::1 55840 ::1 49704 2977464663 2344941890 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........Q.4h +750 0.133112431 1 ::1 49704 ::1 55840 2344941890 2977464793 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +752 0.133263826 0 ::1 55840 ::1 49704 2977464793 2344941922 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Q.4h +754 0.133422375 1 ::1 49704 ::1 55840 2344941922 2977464925 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +756 0.133573055 0 ::1 55840 ::1 49704 2977464925 2344941954 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Q.4h +758 0.133787870 1 ::1 49704 ::1 55840 2344941954 2977465067 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +760 0.133939505 0 ::1 55840 ::1 49704 2977465067 2344941986 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Q.4h +762 0.134098291 1 ::1 49704 ::1 55840 2344941986 2977465209 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +764 0.134249210 0 ::1 55840 ::1 49704 2977465209 2344942018 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........Q.4h +766 0.134406567 1 ::1 49704 ::1 55840 2344942018 2977465363 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +768 0.134556293 0 ::1 55840 ::1 49704 2977465363 2344942050 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........Q.4h +770 0.134765387 1 ::1 49704 ::1 55840 2344942050 2977465491 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +772 0.134917736 0 ::1 55840 ::1 49704 2977465491 2344942082 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Q.4h +774 0.135076284 1 ::1 49704 ::1 55840 2344942082 2977465633 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +776 0.135230780 0 ::1 55840 ::1 49704 2977465633 2344942114 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........Q.4h +778 0.135390520 1 ::1 49704 ::1 55840 2344942114 2977465773 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +780 0.135578632 0 ::1 55840 ::1 49704 2977465773 2344942146 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Q.4h +782 0.135817289 1 ::1 49704 ::1 55840 2344942146 2977465911 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +788 0.153560638 0 ::1 55840 ::1 49704 2977465911 2344942178 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +790 0.153720140 1 ::1 49704 ::1 55840 2344942178 2977465951 44 05000203100000002c00000020000000140000000000000000000000fe2ba58f ........,... ................+.....F.k>.T... +792 0.153919935 0 ::1 55840 ::1 49704 2977465951 2344942222 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K.........+.. +794 0.155527830 1 ::1 49704 ::1 55840 2344942222 2977466055 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +796 0.155739784 0 ::1 55840 ::1 49704 2977466055 2344942250 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K.........+.. +798 0.155921459 1 ::1 49704 ::1 55840 2344942250 2977466115 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +800 0.156168222 0 ::1 55840 ::1 49704 2977466115 2344942342 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K.........+.. +802 0.156393290 1 ::1 49704 ::1 55840 2344942342 2977466243 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +804 0.156583548 0 ::1 55840 ::1 49704 2977466243 2344942374 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K.........+.. +806 0.156757832 1 ::1 49704 ::1 55840 2344942374 2977466375 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +808 0.156979322 0 ::1 55840 ::1 49704 2977466375 2344942406 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K.........+.. +810 0.157407522 1 ::1 49704 ::1 55840 2344942406 2977466501 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +812 0.157588720 0 ::1 55840 ::1 49704 2977466501 2344942438 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K.........+.. +814 0.157840729 1 ::1 49704 ::1 55840 2344942438 2977466629 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +816 0.158050060 0 ::1 55840 ::1 49704 2977466629 2344942470 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K.........+.. +818 0.158242464 1 ::1 49704 ::1 55840 2344942470 2977466767 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +820 0.158403397 0 ::1 55840 ::1 49704 2977466767 2344942502 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K.........+.. +822 0.158580542 1 ::1 49704 ::1 55840 2344942502 2977466905 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +824 0.158731461 0 ::1 55840 ::1 49704 2977466905 2344942534 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K.........+.. +826 0.158910990 1 ::1 49704 ::1 55840 2344942534 2977467055 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +828 0.159105062 0 ::1 55840 ::1 49704 2977467055 2344942566 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K.........+.. +830 0.159296513 1 ::1 49704 ::1 55840 2344942566 2977467179 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +832 0.159457445 0 ::1 55840 ::1 49704 2977467179 2344942598 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K.........+.. +834 0.159662485 1 ::1 49704 ::1 55840 2344942598 2977467317 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +837 0.159811974 0 ::1 55840 ::1 49704 2977467317 2344942630 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K.........+.. +839 0.159985542 1 ::1 49704 ::1 55840 2344942630 2977467453 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +841 0.160135031 0 ::1 55840 ::1 49704 2977467453 2344942662 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K.........+.. +843 0.160509348 1 ::1 49704 ::1 55840 2344942662 2977467587 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +845 0.160741568 0 ::1 55840 ::1 49704 2977467587 2344942694 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........+.. +847 0.160941601 1 ::1 49704 ::1 55840 2344942694 2977467727 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +849 0.161102772 0 ::1 55840 ::1 49704 2977467727 2344942726 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K.........+.. +851 0.161326408 1 ::1 49704 ::1 55840 2344942726 2977467873 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +936 0.290163755 0 ::1 55840 ::1 49704 2977467873 2344942758 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +938 0.290415049 1 ::1 49704 ::1 55840 2344942758 2977467913 44 05000203100000002c000000300000001400000000000000000000008f40b158 ........,...0................@.X...A.7..8..3 +940 0.290677786 0 ::1 55840 ::1 49704 2977467913 2344942802 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K.........@.X +942 0.292432070 1 ::1 49704 ::1 55840 2344942802 2977468025 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +944 0.292705059 0 ::1 55840 ::1 49704 2977468025 2344942830 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K.........@.X +946 0.292894125 1 ::1 49704 ::1 55840 2344942830 2977468085 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +948 0.293145657 0 ::1 55840 ::1 49704 2977468085 2344942922 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K.........@.X +950 0.293391228 1 ::1 49704 ::1 55840 2344942922 2977468221 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +952 0.293613434 0 ::1 55840 ::1 49704 2977468221 2344942954 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K.........@.X +954 0.293798447 1 ::1 49704 ::1 55840 2344942954 2977468361 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +956 0.293992758 0 ::1 55840 ::1 49704 2977468361 2344942986 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K.........@.X +958 0.294210672 1 ::1 49704 ::1 55840 2344942986 2977468495 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +960 0.294426918 0 ::1 55840 ::1 49704 2977468495 2344943018 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K.........@.X +962 0.294647455 1 ::1 49704 ::1 55840 2344943018 2977468631 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +964 0.294837236 0 ::1 55840 ::1 49704 2977468631 2344943050 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K.........@.X +966 0.295069456 1 ::1 49704 ::1 55840 2344943050 2977468777 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +968 0.295240164 0 ::1 55840 ::1 49704 2977468777 2344943082 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K.........@.X +970 0.295425653 1 ::1 49704 ::1 55840 2344943082 2977468923 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +972 0.295633078 0 ::1 55840 ::1 49704 2977468923 2344943114 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K.........@.X +974 0.295814276 1 ::1 49704 ::1 55840 2344943114 2977469081 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +976 0.295967579 0 ::1 55840 ::1 49704 2977469081 2344943146 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K.........@.X +978 0.296200991 1 ::1 49704 ::1 55840 2344943146 2977469213 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +980 0.296381950 0 ::1 55840 ::1 49704 2977469213 2344943178 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K.........@.X +982 0.296637297 1 ::1 49704 ::1 55840 2344943178 2977469359 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +984 0.296807289 0 ::1 55840 ::1 49704 2977469359 2344943210 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K.........@.X +986 0.297019958 1 ::1 49704 ::1 55840 2344943210 2977469503 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +988 0.297259569 0 ::1 55840 ::1 49704 2977469503 2344943242 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K.........@.X +990 0.297463179 1 ::1 49704 ::1 55840 2344943242 2977469645 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +992 0.297840357 0 ::1 55840 ::1 49704 2977469645 2344943274 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K.........@.X +994 0.298062801 1 ::1 49704 ::1 55840 2344943274 2977469793 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +996 0.298329830 0 ::1 55840 ::1 49704 2977469793 2344943306 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K.........@.X +998 0.298542738 1 ::1 49704 ::1 55840 2344943306 2977469947 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +1063 0.447123051 0 ::1 55840 ::1 49704 2977469947 2344943338 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +1065 0.447425842 1 ::1 49704 ::1 55840 2344943338 2977469987 44 05000203100000002c000000400000001400000000000000000000003ac09456 ........,...@...............:..VHh.A..Y..... +1067 0.447622061 0 ::1 55840 ::1 49704 2977469987 2344943382 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........:..V +1075 0.449462175 1 ::1 49704 ::1 55840 2344943382 2977470079 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +1077 0.449638605 0 ::1 55840 ::1 49704 2977470079 2344943410 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........:..V +1079 0.449892998 1 ::1 49704 ::1 55840 2344943410 2977470139 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1081 0.450145245 0 ::1 55840 ::1 49704 2977470139 2344943502 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........:..V +1083 0.450445414 1 ::1 49704 ::1 55840 2344943502 2977470255 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1085 0.450595617 0 ::1 55840 ::1 49704 2977470255 2344943534 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........:..V +1087 0.450791121 1 ::1 49704 ::1 55840 2344943534 2977470375 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1089 0.450973034 0 ::1 55840 ::1 49704 2977470375 2344943566 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........:..V +1091 0.451155901 1 ::1 49704 ::1 55840 2344943566 2977470489 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1093 0.451350689 0 ::1 55840 ::1 49704 2977470489 2344943598 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........:..V +1095 0.451659679 1 ::1 49704 ::1 55840 2344943598 2977470605 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1097 0.451813936 0 ::1 55840 ::1 49704 2977470605 2344943630 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........:..V +1099 0.452018261 1 ::1 49704 ::1 55840 2344943630 2977470731 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1101 0.452198029 0 ::1 55840 ::1 49704 2977470731 2344943662 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........:..V +1103 0.452389240 1 ::1 49704 ::1 55840 2344943662 2977470857 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1105 0.452542305 0 ::1 55840 ::1 49704 2977470857 2344943694 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........:..V +1107 0.452724457 1 ::1 49704 ::1 55840 2344943694 2977470995 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1109 0.452874899 0 ::1 55840 ::1 49704 2977470995 2344943726 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........:..V +1111 0.453050137 1 ::1 49704 ::1 55840 2344943726 2977471107 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1113 0.453203440 0 ::1 55840 ::1 49704 2977471107 2344943758 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........:..V +1115 0.453375340 1 ::1 49704 ::1 55840 2344943758 2977471233 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1117 0.453571558 0 ::1 55840 ::1 49704 2977471233 2344943790 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........:..V +1119 0.453745127 1 ::1 49704 ::1 55840 2344943790 2977471357 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1121 0.453890324 0 ::1 55840 ::1 49704 2977471357 2344943822 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........:..V +1123 0.454095364 1 ::1 49704 ::1 55840 2344943822 2977471479 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1125 0.454273224 0 ::1 55840 ::1 49704 2977471479 2344943854 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........:..V +1127 0.454437256 1 ::1 49704 ::1 55840 2344943854 2977471607 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1129 0.454623699 0 ::1 55840 ::1 49704 2977471607 2344943886 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........:..V +1131 0.454804659 1 ::1 49704 ::1 55840 2344943886 2977471741 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1133 0.454969406 0 ::1 55840 ::1 49704 2977471741 2344943918 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........:..V +1136 0.455142260 1 ::1 49704 ::1 55840 2344943918 2977471871 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1140 0.455296516 0 ::1 55840 ::1 49704 2977471871 2344943950 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........:..V +1143 0.455515862 1 ::1 49704 ::1 55840 2344943950 2977471999 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3464 6.850693464 0 ::1 55840 ::1 49704 2977471999 2344943982 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3466 6.850955009 1 ::1 49704 ::1 55840 2344943982 2977472039 44 05000203100000002c00000052000000140000000000000000000000f3afbe60 ........,...R..................`.^.N....;... +3468 6.851159334 0 ::1 55840 ::1 49704 2977472039 2344944026 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K...........` +3470 6.853059292 1 ::1 49704 ::1 55840 2344944026 2977472139 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3472 6.853229046 0 ::1 55840 ::1 49704 2977472139 2344944054 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K...........` +3474 6.853446007 1 ::1 49704 ::1 55840 2344944054 2977472199 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3476 6.853691339 0 ::1 55840 ::1 49704 2977472199 2344944146 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K...........` +3478 6.853917837 1 ::1 49704 ::1 55840 2344944146 2977472323 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3480 6.854079962 0 ::1 55840 ::1 49704 2977472323 2344944178 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K...........` +3482 6.854262114 1 ::1 49704 ::1 55840 2344944178 2977472451 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3484 6.854444981 0 ::1 55840 ::1 49704 2977472451 2344944210 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K...........` +3486 6.854627132 1 ::1 49704 ::1 55840 2344944210 2977472573 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3488 6.854786396 0 ::1 55840 ::1 49704 2977472573 2344944242 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K...........` +3490 6.854968548 1 ::1 49704 ::1 55840 2344944242 2977472697 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3492 6.855127335 0 ::1 55840 ::1 49704 2977472697 2344944274 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K...........` +3494 6.855314493 1 ::1 49704 ::1 55840 2344944274 2977472831 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3496 6.855515718 0 ::1 55840 ::1 49704 2977472831 2344944306 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K...........` +3498 6.855699062 1 ::1 49704 ::1 55840 2344944306 2977472965 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3500 6.855854750 0 ::1 55840 ::1 49704 2977472965 2344944338 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K...........` +3502 6.856034040 1 ::1 49704 ::1 55840 2344944338 2977473111 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3504 6.856200933 0 ::1 55840 ::1 49704 2977473111 2344944370 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K...........` +3506 6.856409073 1 ::1 49704 ::1 55840 2344944370 2977473231 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3508 6.856575727 0 ::1 55840 ::1 49704 2977473231 2344944402 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K...........` +3510 6.856766224 1 ::1 49704 ::1 55840 2344944402 2977473365 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3512 6.856922150 0 ::1 55840 ::1 49704 2977473365 2344944434 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K...........` +3514 6.857098341 1 ::1 49704 ::1 55840 2344944434 2977473497 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3516 6.857252121 0 ::1 55840 ::1 49704 2977473497 2344944466 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K...........` +3518 6.857454300 1 ::1 49704 ::1 55840 2344944466 2977473627 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +3520 6.857686281 0 ::1 55840 ::1 49704 2977473627 2344944498 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K...........` +3522 6.857870340 1 ::1 49704 ::1 55840 2344944498 2977473771 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +3524 6.858035803 0 ::1 55840 ::1 49704 2977473771 2344944530 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K...........` +3526 6.858213663 1 ::1 49704 ::1 55840 2344944530 2977473919 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +3528 6.858408213 0 ::1 55840 ::1 49704 2977473919 2344944562 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K...........` +3530 6.858586311 1 ::1 49704 ::1 55840 2344944562 2977474065 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +3532 6.858817339 0 ::1 55840 ::1 49704 2977474065 2344944594 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K...........` +3534 6.858999729 1 ::1 49704 ::1 55840 2344944594 2977474223 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3560 6.929622650 0 ::1 55840 ::1 49704 2977474223 2344944626 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3562 6.929834366 1 ::1 49704 ::1 55840 2344944626 2977474263 44 05000203100000002c000000640000001400000000000000000000001bcc48ab ........,...d.................H..`.E..z.h.>. +3564 6.930088282 0 ::1 55840 ::1 49704 2977474263 2344944670 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........H. +3566 6.931900740 1 ::1 49704 ::1 55840 2344944670 2977474347 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3568 6.932149887 0 ::1 55840 ::1 49704 2977474347 2344944698 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........H. +3570 6.932337999 1 ::1 49704 ::1 55840 2344944698 2977474407 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3572 6.932599783 0 ::1 55840 ::1 49704 2977474407 2344944790 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........H. +3574 6.932821512 1 ::1 49704 ::1 55840 2344944790 2977474515 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3576 6.933055639 0 ::1 55840 ::1 49704 2977474515 2344944822 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........H. +3578 6.933241606 1 ::1 49704 ::1 55840 2344944822 2977474627 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3580 6.933442831 0 ::1 55840 ::1 49704 2977474627 2344944854 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........H. +3582 6.933632612 1 ::1 49704 ::1 55840 2344944854 2977474733 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3584 6.933804989 0 ::1 55840 ::1 49704 2977474733 2344944886 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........H. +3586 6.934006929 1 ::1 49704 ::1 55840 2344944886 2977474841 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3588 6.934168100 0 ::1 55840 ::1 49704 2977474841 2344944918 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........H. +3590 6.934401751 1 ::1 49704 ::1 55840 2344944918 2977474959 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3592 6.934570789 0 ::1 55840 ::1 49704 2977474959 2344944950 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........H. +3594 6.934746027 1 ::1 49704 ::1 55840 2344944950 2977475077 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3596 6.934909821 0 ::1 55840 ::1 49704 2977475077 2344944982 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........H. +3598 6.935159445 1 ::1 49704 ::1 55840 2344944982 2977475207 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3600 6.935321331 0 ::1 55840 ::1 49704 2977475207 2344945014 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........H. +3602 6.935492992 1 ::1 49704 ::1 55840 2344945014 2977475311 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3604 6.935654879 0 ::1 55840 ::1 49704 2977475311 2344945046 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........H. +3606 6.935827971 1 ::1 49704 ::1 55840 2344945046 2977475429 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3608 6.936014652 0 ::1 55840 ::1 49704 2977475429 2344945078 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........H. +3610 6.936189651 1 ::1 49704 ::1 55840 2344945078 2977475545 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3612 6.936377048 0 ::1 55840 ::1 49704 2977475545 2344945110 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........H. +3614 6.936559439 1 ::1 49704 ::1 55840 2344945110 2977475659 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3616 6.937170982 0 ::1 55840 ::1 49704 2977475659 2344945142 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........H. +3618 6.937335730 1 ::1 49704 ::1 55840 2344945142 2977475787 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3620 6.937566996 0 ::1 55840 ::1 49704 2977475787 2344945174 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........H. +3622 6.937742949 1 ::1 49704 ::1 55840 2344945174 2977475907 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3624 6.937974453 0 ::1 55840 ::1 49704 2977475907 2344945206 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........H. +3626 6.938144445 1 ::1 49704 ::1 55840 2344945206 2977476027 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3628 6.938381672 0 ::1 55840 ::1 49704 2977476027 2344945238 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........H. +3630 6.938555241 1 ::1 49704 ::1 55840 2344945238 2977476149 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3632 6.938767433 0 ::1 55840 ::1 49704 2977476149 2344945270 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........H. +3634 6.938961029 1 ::1 49704 ::1 55840 2344945270 2977476283 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3636 6.939167500 0 ::1 55840 ::1 49704 2977476283 2344945302 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........H. +3638 6.939329147 1 ::1 49704 ::1 55840 2344945302 2977476415 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3640 6.939526320 0 ::1 55840 ::1 49704 2977476415 2344945334 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........H. +3642 6.939690590 1 ::1 49704 ::1 55840 2344945334 2977476545 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3644 6.939891338 0 ::1 55840 ::1 49704 2977476545 2344945366 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........H. +3646 6.940213203 1 ::1 49704 ::1 55840 2344945366 2977476683 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3648 6.940420151 0 ::1 55840 ::1 49704 2977476683 2344945398 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........H. +3650 6.940599680 1 ::1 49704 ::1 55840 2344945398 2977476827 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3652 6.940844774 0 ::1 55840 ::1 49704 2977476827 2344945430 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........H. +3654 6.941064358 1 ::1 49704 ::1 55840 2344945430 2977476971 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3656 6.941284895 0 ::1 55840 ::1 49704 2977476971 2344945462 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........H. +3658 6.941458464 1 ::1 49704 ::1 55840 2344945462 2977477087 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3660 6.941653013 0 ::1 55840 ::1 49704 2977477087 2344945494 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........H. +3662 6.941861868 1 ::1 49704 ::1 55840 2344945494 2977477217 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3664 6.942135572 0 ::1 55840 ::1 49704 2977477217 2344945526 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........H. +3666 6.942395449 1 ::1 49704 ::1 55840 2344945526 2977477355 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3668 6.942627430 0 ::1 55840 ::1 49704 2977477355 2344945558 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........H. +3670 6.942821741 1 ::1 49704 ::1 55840 2344945558 2977477485 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3672 6.943048239 0 ::1 55840 ::1 49704 2977477485 2344945590 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........H. +3674 6.943207979 1 ::1 49704 ::1 55840 2344945590 2977477607 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3676 6.943403959 0 ::1 55840 ::1 49704 2977477607 2344945622 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........H. +3678 6.943570137 1 ::1 49704 ::1 55840 2344945622 2977477729 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3680 6.943770885 0 ::1 55840 ::1 49704 2977477729 2344945654 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........H. +3682 6.944482803 1 ::1 49704 ::1 55840 2344945654 2977477863 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3684 6.944689989 0 ::1 55840 ::1 49704 2977477863 2344945686 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........H. +3686 6.944857836 1 ::1 49704 ::1 55840 2344945686 2977477991 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3688 6.945085764 0 ::1 55840 ::1 49704 2977477991 2344945718 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........H. +3690 6.945240736 1 ::1 49704 ::1 55840 2344945718 2977478115 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3722 6.977007389 0 ::1 55840 ::1 49704 2977478115 2344945750 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........H. +3724 6.977236748 1 ::1 49704 ::1 55840 2344945750 2977478631 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3747 7.012873888 0 ::1 55840 ::1 49704 2977478631 2344945778 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3749 7.013242006 1 ::1 49704 ::1 55840 2344945778 2977478671 44 05000203100000002c0000008600000014000000000000000000000027d64b66 ........,...................'.Kf.w}I..a~.|H. +3751 7.013449669 0 ::1 55840 ::1 49704 2977478671 2344945822 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........'.Kf +3753 7.015265703 1 ::1 49704 ::1 55840 2344945822 2977478783 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3755 7.015442133 0 ::1 55840 ::1 49704 2977478783 2344945850 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........'.Kf +3757 7.015648603 1 ::1 49704 ::1 55840 2344945850 2977478843 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3759 7.015893459 0 ::1 55840 ::1 49704 2977478843 2344945942 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'.Kf +3761 7.016112566 1 ::1 49704 ::1 55840 2344945942 2977478979 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3763 7.016275167 0 ::1 55840 ::1 49704 2977478979 2344945974 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'.Kf +3765 7.016448021 1 ::1 49704 ::1 55840 2344945974 2977479119 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3767 7.016609907 0 ::1 55840 ::1 49704 2977479119 2344946006 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........'.Kf +3769 7.016778708 1 ::1 49704 ::1 55840 2344946006 2977479253 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3771 7.016940355 0 ::1 55840 ::1 49704 2977479253 2344946038 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'.Kf +3773 7.017110586 1 ::1 49704 ::1 55840 2344946038 2977479389 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3775 7.017269373 0 ::1 55840 ::1 49704 2977479389 2344946070 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3777 7.017435551 1 ::1 49704 ::1 55840 2344946070 2977479535 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3779 7.017597437 0 ::1 55840 ::1 49704 2977479535 2344946102 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3781 7.017765045 1 ::1 49704 ::1 55840 2344946102 2977479681 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3783 7.017926931 0 ::1 55840 ::1 49704 2977479681 2344946134 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........'.Kf +3785 7.018147469 1 ::1 49704 ::1 55840 2344946134 2977479839 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3787 7.018344641 0 ::1 55840 ::1 49704 2977479839 2344946166 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........'.Kf +3789 7.018512487 1 ::1 49704 ::1 55840 2344946166 2977479971 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3791 7.018675089 0 ::1 55840 ::1 49704 2977479971 2344946198 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3793 7.018842936 1 ::1 49704 ::1 55840 2344946198 2977480117 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3795 7.019032717 0 ::1 55840 ::1 49704 2977480117 2344946230 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'.Kf +3797 7.019189358 1 ::1 49704 ::1 55840 2344946230 2977480261 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3799 7.019356489 0 ::1 55840 ::1 49704 2977480261 2344946262 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........'.Kf +3801 7.019524097 1 ::1 49704 ::1 55840 2344946262 2977480403 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3803 7.019732475 0 ::1 55840 ::1 49704 2977480403 2344946294 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........'.Kf +3805 7.019898891 1 ::1 49704 ::1 55840 2344946294 2977480563 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3807 7.020092964 0 ::1 55840 ::1 49704 2977480563 2344946326 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........'.Kf +3809 7.020262003 1 ::1 49704 ::1 55840 2344946326 2977480719 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3811 7.020452261 0 ::1 55840 ::1 49704 2977480719 2344946358 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'.Kf +3813 7.020620823 1 ::1 49704 ::1 55840 2344946358 2977480873 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3815 7.020802975 0 ::1 55840 ::1 49704 2977480873 2344946390 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3817 7.020975828 1 ::1 49704 ::1 55840 2344946390 2977481019 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3819 7.021195650 0 ::1 55840 ::1 49704 2977481019 2344946422 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'.Kf +3821 7.021366596 1 ::1 49704 ::1 55840 2344946422 2977481173 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3823 7.021540403 0 ::1 55840 ::1 49704 2977481173 2344946454 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........'.Kf +3825 7.021775007 1 ::1 49704 ::1 55840 2344946454 2977481323 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3827 7.021946430 0 ::1 55840 ::1 49704 2977481323 2344946486 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........'.Kf +3829 7.022330761 1 ::1 49704 ::1 55840 2344946486 2977481475 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3831 7.022497892 0 ::1 55840 ::1 49704 2977481475 2344946518 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'.Kf +3833 7.022662163 1 ::1 49704 ::1 55840 2344946518 2977481615 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3835 7.022916555 0 ::1 55840 ::1 49704 2977481615 2344946550 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........'.Kf +3837 7.023131609 1 ::1 49704 ::1 55840 2344946550 2977481763 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3839 7.023298979 0 ::1 55840 ::1 49704 2977481763 2344946582 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........'.Kf +3841 7.023463964 1 ::1 49704 ::1 55840 2344946582 2977481925 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3843 7.023672819 0 ::1 55840 ::1 49704 2977481925 2344946614 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........'.Kf +3845 7.023912907 1 ::1 49704 ::1 55840 2344946614 2977482097 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3847 7.024099827 0 ::1 55840 ::1 49704 2977482097 2344946646 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'.Kf +3849 7.024263382 1 ::1 49704 ::1 55840 2344946646 2977482241 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3855 7.031864643 0 ::1 55840 ::1 49704 2977482241 2344946678 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3857 7.032054901 1 ::1 49704 ::1 55840 2344946678 2977482281 44 05000203100000002c000000a0000000140000000000000000000000f90c4f39 ........,.....................O9.v.E."...>E. +3859 7.032248974 0 ::1 55840 ::1 49704 2977482281 2344946722 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K..........O9 +3861 7.033789158 1 ::1 49704 ::1 55840 2344946722 2977482409 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3863 7.033997774 0 ::1 55840 ::1 49704 2977482409 2344946750 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........O9 +3865 7.034161329 1 ::1 49704 ::1 55840 2344946750 2977482469 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3867 7.034413815 0 ::1 55840 ::1 49704 2977482469 2344946842 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........O9 +3869 7.034613132 1 ::1 49704 ::1 55840 2344946842 2977482621 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3871 7.034784555 0 ::1 55840 ::1 49704 2977482621 2344946874 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K..........O9 +3873 7.034957886 1 ::1 49704 ::1 55840 2344946874 2977482777 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3875 7.035142660 0 ::1 55840 ::1 49704 2977482777 2344946906 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........O9 +3877 7.035315990 1 ::1 49704 ::1 55840 2344946906 2977482927 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3879 7.035477638 0 ::1 55840 ::1 49704 2977482927 2344946938 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........O9 +3881 7.035650015 1 ::1 49704 ::1 55840 2344946938 2977483079 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3883 7.035811186 0 ::1 55840 ::1 49704 2977483079 2344946970 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........O9 +3885 7.036006689 1 ::1 49704 ::1 55840 2344946970 2977483241 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3887 7.036156416 0 ::1 55840 ::1 49704 2977483241 2344947002 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........O9 +3889 7.036324978 1 ::1 49704 ::1 55840 2344947002 2977483403 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3891 7.036485195 0 ::1 55840 ::1 49704 2977483403 2344947034 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K..........O9 +3893 7.036656857 1 ::1 49704 ::1 55840 2344947034 2977483577 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3895 7.036819458 0 ::1 55840 ::1 49704 2977483577 2344947066 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K..........O9 +3897 7.037014961 1 ::1 49704 ::1 55840 2344947066 2977483725 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3899 7.037167549 0 ::1 55840 ::1 49704 2977483725 2344947098 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........O9 +3901 7.037336588 1 ::1 49704 ::1 55840 2344947098 2977483887 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3903 7.037497044 0 ::1 55840 ::1 49704 2977483887 2344947130 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K..........O9 +3905 7.037666559 1 ::1 49704 ::1 55840 2344947130 2977484047 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3907 7.037894487 0 ::1 55840 ::1 49704 2977484047 2344947162 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K..........O9 +3909 7.038134813 1 ::1 49704 ::1 55840 2344947162 2977484205 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3911 7.038373470 0 ::1 55840 ::1 49704 2977484205 2344947194 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K..........O9 +3913 7.038547516 1 ::1 49704 ::1 55840 2344947194 2977484375 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3915 7.038743973 0 ::1 55840 ::1 49704 2977484375 2344947226 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K..........O9 +3917 7.038919687 1 ::1 49704 ::1 55840 2344947226 2977484557 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3927 7.046331644 0 ::1 55840 ::1 49704 2977484557 2344947258 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3929 7.046526432 1 ::1 49704 ::1 55840 2344947258 2977484597 44 05000203100000002c000000b000000014000000000000000000000057895ea8 ........,...................W.^.%..D.....c.. +3931 7.046718597 0 ::1 55840 ::1 49704 2977484597 2344947302 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K........W.^. +3933 7.048359632 1 ::1 49704 ::1 55840 2344947302 2977484693 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3935 7.048597336 0 ::1 55840 ::1 49704 2977484693 2344947330 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........W.^. +3937 7.048800230 1 ::1 49704 ::1 55840 2344947330 2977484753 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3939 7.049080610 0 ::1 55840 ::1 49704 2977484753 2344947422 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........W.^. +3941 7.049250126 1 ::1 49704 ::1 55840 2344947422 2977484873 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3943 7.049451828 0 ::1 55840 ::1 49704 2977484873 2344947454 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........W.^. +3945 7.049656630 1 ::1 49704 ::1 55840 2344947454 2977484997 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3947 7.049830914 0 ::1 55840 ::1 49704 2977484997 2344947486 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K........W.^. +3949 7.050026655 1 ::1 49704 ::1 55840 2344947486 2977485115 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3951 7.050191641 0 ::1 55840 ::1 49704 2977485115 2344947518 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........W.^. +3953 7.050353765 1 ::1 49704 ::1 55840 2344947518 2977485235 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3955 7.050512552 0 ::1 55840 ::1 49704 2977485235 2344947550 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3957 7.050678015 1 ::1 49704 ::1 55840 2344947550 2977485365 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3959 7.050832510 0 ::1 55840 ::1 49704 2977485365 2344947582 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3961 7.051021338 1 ::1 49704 ::1 55840 2344947582 2977485495 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3963 7.051470995 0 ::1 55840 ::1 49704 2977485495 2344947614 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........W.^. +3965 7.051635742 1 ::1 49704 ::1 55840 2344947614 2977485637 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3967 7.051793337 0 ::1 55840 ::1 49704 2977485637 2344947646 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K........W.^. +3969 7.051955938 1 ::1 49704 ::1 55840 2344947646 2977485753 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3971 7.052317619 0 ::1 55840 ::1 49704 2977485753 2344947678 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3973 7.052493811 1 ::1 49704 ::1 55840 2344947678 2977485883 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3975 7.052719593 0 ::1 55840 ::1 49704 2977485883 2344947710 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........W.^. +3977 7.052901030 1 ::1 49704 ::1 55840 2344947710 2977486011 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3979 7.053186655 0 ::1 55840 ::1 49704 2977486011 2344947742 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........W.^. +3981 7.053380013 1 ::1 49704 ::1 55840 2344947742 2977486137 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3983 7.053684950 0 ::1 55840 ::1 49704 2977486137 2344947774 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........W.^. +3985 7.053863287 1 ::1 49704 ::1 55840 2344947774 2977486263 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3987 7.054110527 0 ::1 55840 ::1 49704 2977486263 2344947806 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........W.^. +3989 7.054285288 1 ::1 49704 ::1 55840 2344947806 2977486395 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3991 7.054499388 0 ::1 55840 ::1 49704 2977486395 2344947838 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3993 7.054686308 1 ::1 49704 ::1 55840 2344947838 2977486525 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3995 7.054902792 0 ::1 55840 ::1 49704 2977486525 2344947870 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........W.^. +3997 7.055128574 1 ::1 49704 ::1 55840 2344947870 2977486663 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3999 7.055345297 0 ::1 55840 ::1 49704 2977486663 2344947902 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........W.^. +4001 7.055522919 1 ::1 49704 ::1 55840 2344947902 2977486799 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4003 7.055737972 0 ::1 55840 ::1 49704 2977486799 2344947934 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........W.^. +4005 7.055916548 1 ::1 49704 ::1 55840 2344947934 2977486931 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4007 7.056221485 0 ::1 55840 ::1 49704 2977486931 2344947966 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........W.^. +4009 7.056397676 1 ::1 49704 ::1 55840 2344947966 2977487073 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4011 7.056620598 0 ::1 55840 ::1 49704 2977487073 2344947998 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........W.^. +4013 7.056795359 1 ::1 49704 ::1 55840 2344947998 2977487221 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4029 7.096351385 0 ::1 55840 ::1 49704 2977487221 2344948030 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........H. +4031 7.096625566 1 ::1 49704 ::1 55840 2344948030 2977487511 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4068 7.172968149 0 ::1 55840 ::1 49704 2977487511 2344948058 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........H. +4070 7.173411131 1 ::1 49704 ::1 55840 2344948058 2977487717 28 05000203100000001c000000c7000000040000000100000001000000 ............................ diff --git a/captures/016-loopback-write-test-int-advised/nmx-stream-__1_49704-to-__1_55840.bin b/captures/016-loopback-write-test-int-advised/nmx-stream-__1_49704-to-__1_55840.bin new file mode 100644 index 0000000..be707db Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/nmx-stream-__1_49704-to-__1_55840.bin differ diff --git a/captures/016-loopback-write-test-int-advised/nmx-stream-__1_55840-to-__1_49704.bin b/captures/016-loopback-write-test-int-advised/nmx-stream-__1_55840-to-__1_49704.bin new file mode 100644 index 0000000..150a04b Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/nmx-stream-__1_55840-to-__1_49704.bin differ diff --git a/captures/016-loopback-write-test-int-advised/stderr.txt b/captures/016-loopback-write-test-int-advised/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/016-loopback-write-test-int-advised/stdout.txt b/captures/016-loopback-write-test-int-advised/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/016-loopback-write-test-int-advised/tcp-conversations.tsv b/captures/016-loopback-write-test-int-advised/tcp-conversations.tsv new file mode 100644 index 0000000..96a9d50 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-conversations.tsv @@ -0,0 +1,73 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2419 49190 0.000000000 22.126951694 +::1:49704 ::1:55840 400 32726 1.911347866 9.084758997 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55876 2 14170 18.582557678 18.650811672 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55850 2 13997 4.378963470 4.451200485 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55855 2 13978 5.978490114 6.047988892 +127.0.0.1:57608 127.0.0.1:57631 196 9926 0.224808216 21.861536980 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 21 8281 9.180310726 14.092734098 +::1:49704 ::1:49768 96 7398 3.760865927 3.786701202 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55856 3 2703 6.032549381 8.387028694 +::1:443 ::1:55862 6 2674 10.211721182 10.222743034 +::1:135 ::1:55839 20 2600 1.908699274 8.957476616 +::1:32571 ::1:55857 4 2196 6.465753078 6.471843004 +::1:443 ::1:55863 6 2054 10.226227522 10.240982533 +::1:808 ::1:55879 16 1990 18.957026482 18.967744112 +::1:808 ::1:55875 16 1985 18.520393610 18.531118631 +::1:808 ::1:55882 16 1980 19.236981392 19.248045683 +::1:808 ::1:55878 16 1975 18.812825441 18.823579788 +::1:808 ::1:55880 16 1969 19.096573114 19.108141422 +::1:808 ::1:55877 16 1964 18.662729502 18.673240900 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55884 3 1941 19.877577305 22.115302086 +::1:808 ::1:55885 16 1941 21.413616657 21.426492929 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59621 16 1939 10.276303530 10.286373615 +::1:80 ::1:55869 6 1821 14.205217123 14.211030483 +::1:80 ::1:55859 6 1820 7.174639225 7.181514740 +::1:80 ::1:55846 6 1793 3.756947279 3.764088869 +::1:80 ::1:55849 6 1793 4.372991800 4.379726648 +::1:80 ::1:55854 6 1793 5.409298658 5.415960312 +::1:80 ::1:55865 6 1793 13.758573294 13.764860153 +::1:80 ::1:55871 6 1793 14.376824141 14.384112597 +::1:80 ::1:55842 6 1792 3.184317827 3.190522671 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 20.385868788 20.386334181 +::1:80 ::1:55844 6 1788 3.291518211 3.298066378 +::1:80 ::1:55861 6 1788 9.068495035 9.074317694 +::1:80 ::1:55883 6 1788 19.238174438 19.243838549 +::1:80 ::1:55838 6 1787 1.593067408 1.600073814 +::1:80 ::1:55874 6 1784 16.239778757 16.245322704 +10.100.0.48:1433 10.100.0.48:49805 18 1503 2.134763956 22.136938095 +127.0.0.1:57470 127.0.0.1:57477 101 1292 0.028797388 22.063349247 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55852 2 1202 4.459047079 4.463536978 +::1:808 ::1:55800 2 1150 13.902113676 13.903146267 +127.0.0.1:57684 127.0.0.1:57745 89 1068 0.012597322 22.044378996 +127.0.0.1:57484 127.0.0.1:57746 88 1056 0.405255795 21.988131523 +127.0.0.1:57485 127.0.0.1:57747 88 1056 0.405326128 22.015065670 +10.100.0.48:1433 10.100.0.48:49792 8 1028 9.642751932 19.651063442 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55867 6 913 14.075527430 14.094157696 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55866 6 900 14.051484823 14.072686195 +::1:135 ::1:55847 6 876 3.759849072 3.778013706 +::1:808 ::1:49859 1 499 9.715287447 9.715287447 +::1:808 ::1:55769 1 488 0.403790236 0.403790236 +::1:80 ::1:55837 2 332 1.584677935 1.589709997 +::1:80 ::1:55841 2 332 3.176755190 3.180531502 +::1:80 ::1:55843 2 332 3.285124779 3.288151979 +::1:80 ::1:55845 2 332 3.750658035 3.753977537 +::1:80 ::1:55848 2 332 4.366019011 4.369587421 +::1:80 ::1:55853 2 332 5.401749134 5.405103207 +::1:80 ::1:55858 2 332 7.167825460 7.171376467 +::1:80 ::1:55860 2 332 9.061766624 9.065028906 +::1:80 ::1:55864 2 332 13.752135277 13.755406618 +::1:80 ::1:55868 2 332 14.199007750 14.202235222 +::1:80 ::1:55870 2 332 14.367199421 14.370547533 +::1:80 ::1:55873 2 332 16.233527899 16.236829281 +::1:80 ::1:55881 2 332 19.232139826 19.235693932 +::1:49704 ::1:49829 2 270 18.393181324 18.393544912 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55851 1 52 4.396470547 4.396470547 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55872 1 52 14.397706270 14.397706270 +127.0.0.1:61590 127.0.0.1:63342 5 30 0.984594345 20.987988472 +127.0.0.1:49787 127.0.0.1:49788 24 24 2.734308243 22.115037203 +10.100.0.48:1433 10.100.0.48:50767 2 2 9.123371601 9.291930199 +10.100.0.48:1433 10.100.0.48:49936 2 2 20.699594736 21.836356401 +10.100.0.48:1433 10.100.0.48:49934 2 2 21.240647554 22.016944885 +10.100.0.48:1433 10.100.0.48:49935 2 2 21.240831137 22.184411287 +10.100.0.48:1433 10.100.0.48:49933 1 1 21.291347980 21.291347980 diff --git a/captures/016-loopback-write-test-int-advised/tcp-payload-57415-57433-decoded.tsv b/captures/016-loopback-write-test-int-advised/tcp-payload-57415-57433-decoded.tsv new file mode 100644 index 0000000..ef4480f --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-payload-57415-57433-decoded.tsv @@ -0,0 +1,2420 @@ +frame time_relative direction src dst seq payload_len first_i32 second_i32 third_i32 first_u32_hex length_prefixed body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +1 0.000000000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580151 12 26 704208 0 0x0000001a 0 26 704208 0 1a 00 00 00 d0 be 0a 00 00 00 00 00 ............ +3 0.000165224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580163 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 119472128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +5 0.000554085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900140 12 -1 704208 0 0xffffffff 0 -1 704208 0 ff ff ff ff d0 be 0a 00 00 00 00 00 ............ +7 0.001000404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900152 12 22 695688 0 0x00000016 0 22 695688 0 16 00 00 00 88 9d 0a 00 00 00 00 00 ............ +9 0.001147985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900164 22 18 2033439 0 0x00000012 1 2033439 0 196609 0 12 00 00 00 1f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +11 0.001445532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580189 12 -1 695688 0 0xffffffff 0 -1 695688 0 ff ff ff ff 88 9d 0a 00 00 00 00 00 ............ +15 0.022741795 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580201 12 34 704209 0 0x00000022 0 34 704209 0 22 00 00 00 d1 be 0a 00 00 00 00 00 """..........." +17 0.022904634 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580213 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 3670016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 38 00 02 00 00 00 00 00 d2 e9 0e c3 9d 01 00 00 .....!...o3.......8............... +19 0.023039103 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580247 12 67 704210 0 0x00000043 0 67 704210 0 43 00 00 00 d2 be 0a 00 00 00 00 00 C........... +21 0.023157120 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580259 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 38 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 84 5b 4f 9a ?.....3...|8...........8.......=B.....&......... +23 0.023418665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900186 12 -1 704209 0 0xffffffff 0 -1 704209 0 ff ff ff ff d1 be 0a 00 00 00 00 00 ............ +25 0.023666859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900198 12 -1 704210 0 0xffffffff 0 -1 704210 0 ff ff ff ff d2 be 0a 00 00 00 00 00 ............ +27 0.024595737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900210 12 52 695689 0 0x00000034 0 52 695689 0 34 00 00 00 89 9d 0a 00 00 00 00 00 4........... +29 0.024871111 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900222 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 38 00 02 00 00 00 00 00 00 00 99 2a 21 6a 4a 01 00 00 "0...Dk.................L."".([.....8..........*!j" +31 0.025169849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580326 12 -1 695689 0 0xffffffff 0 -1 695689 0 ff ff ff ff 89 9d 0a 00 00 00 00 00 ............ +33 0.025903225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580338 12 30 704211 0 0x0000001e 0 30 704211 0 1e 00 00 00 d3 be 0a 00 00 00 00 00 ............ +35 0.026032209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580350 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 119603200 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +37 0.026318312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900274 12 -1 704211 0 0xffffffff 0 -1 704211 0 ff ff ff ff d3 be 0a 00 00 00 00 00 ............ +39 0.027037859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900286 12 26 695690 0 0x0000001a 0 26 695690 0 1a 00 00 00 8a 9d 0a 00 00 00 00 00 ............ +41 0.027239323 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900298 26 22 2033441 0 0x00000016 1 2033441 0 196609 0 16 00 00 00 21 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +43 0.027498484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580380 12 -1 695690 0 0xffffffff 0 -1 695690 0 ff ff ff ff 8a 9d 0a 00 00 00 00 00 ............ +48 0.103142262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580392 12 26 704212 0 0x0000001a 0 26 704212 0 1a 00 00 00 d4 be 0a 00 00 00 00 00 ............ +50 0.103340864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580404 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 119734272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 07 1f 00 00 00 00 00 ....T.c@.^1@......#....... +52 0.103740692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900324 12 -1 704212 0 0xffffffff 0 -1 704212 0 ff ff ff ff d4 be 0a 00 00 00 00 00 ............ +54 0.104053736 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900336 12 22 695691 0 0x00000016 0 22 695691 0 16 00 00 00 8b 9d 0a 00 00 00 00 00 ............ +56 0.104227781 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900348 22 18 2033443 0 0x00000012 1 2033443 0 196609 0 12 00 00 00 23 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +58 0.104443073 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580430 12 -1 695691 0 0xffffffff 0 -1 695691 0 ff ff ff ff 8b 9d 0a 00 00 00 00 00 ............ +61 0.205434799 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580442 12 26 704213 0 0x0000001a 0 26 704213 0 1a 00 00 00 d5 be 0a 00 00 00 00 00 ............ +63 0.205737591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580454 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 119865344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 07 1f 00 00 00 00 00 ....T.c@.^1@......%....... +65 0.206041098 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900370 12 -1 704213 0 0xffffffff 0 -1 704213 0 ff ff ff ff d5 be 0a 00 00 00 00 00 ............ +67 0.206580400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900382 12 22 695692 0 0x00000016 0 22 695692 0 16 00 00 00 8c 9d 0a 00 00 00 00 00 ............ +69 0.206786633 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900394 22 18 2033445 0 0x00000012 1 2033445 0 196609 0 12 00 00 00 25 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +71 0.207018614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580480 12 -1 695692 0 0xffffffff 0 -1 695692 0 ff ff ff ff 8c 9d 0a 00 00 00 00 00 ............ +75 0.308660984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580492 12 26 704214 0 0x0000001a 0 26 704214 0 1a 00 00 00 d6 be 0a 00 00 00 00 00 ............ +77 0.308844805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580504 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 119996416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 07 1f 00 00 00 00 00 ....T.c@.^1@......'....... +79 0.309276819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900416 12 -1 704214 0 0xffffffff 0 -1 704214 0 ff ff ff ff d6 be 0a 00 00 00 00 00 ............ +81 0.309797287 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900428 12 22 695693 0 0x00000016 0 22 695693 0 16 00 00 00 8d 9d 0a 00 00 00 00 00 ............ +83 0.309965372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900440 22 18 2033447 0 0x00000012 1 2033447 0 196609 0 12 00 00 00 27 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +85 0.310291767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580530 12 -1 695693 0 0xffffffff 0 -1 695693 0 ff ff ff ff 8d 9d 0a 00 00 00 00 00 ............ +87 0.327066422 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580542 12 101 704215 0 0x00000065 0 101 704215 0 65 00 00 00 d7 be 0a 00 00 00 00 00 e........... +89 0.327273846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580554 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 39 00 02 00 00 00 00 00 02 eb 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 39 00 02 00 00 00 00 .....!...o3.......9...............?.....3...|8.. +92 0.327549696 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900462 12 -2 79971 79988 0xfffffffe 0 -2 79971 79988 fe ff ff ff 63 38 01 00 74 38 01 00 ....c8..t8.. +97 0.327850580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900474 12 -1 704215 0 0xffffffff 0 -1 704215 0 ff ff ff ff d7 be 0a 00 00 00 00 00 ............ +99 0.328246355 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900486 12 52 695694 0 0x00000034 0 52 695694 0 34 00 00 00 8e 9d 0a 00 00 00 00 00 4........... +101 0.328398705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900498 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 39 00 02 00 00 00 00 00 00 00 dc 81 4f 6a 4a 01 00 00 "0...Dk.................L."".([.....9...........Oj" +103 0.328728199 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580655 12 -1 695694 0 0xffffffff 0 -1 695694 0 ff ff ff ff 8e 9d 0a 00 00 00 00 00 ............ +105 0.329505682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580667 12 30 704216 0 0x0000001e 0 30 704216 0 1e 00 00 00 d8 be 0a 00 00 00 00 00 ............ +107 0.329664946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580679 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 120127488 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +109 0.329946518 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900550 12 -1 704216 0 0xffffffff 0 -1 704216 0 ff ff ff ff d8 be 0a 00 00 00 00 00 ............ +111 0.330317497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900562 12 26 695695 0 0x0000001a 0 26 695695 0 1a 00 00 00 8f 9d 0a 00 00 00 00 00 ............ +113 0.330472469 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900574 26 22 2033449 0 0x00000016 1 2033449 0 196609 0 16 00 00 00 29 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +115 0.330716610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580709 12 -1 695695 0 0xffffffff 0 -1 695695 0 ff ff ff ff 8f 9d 0a 00 00 00 00 00 ............ +125 0.411456347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580721 12 26 704217 0 0x0000001a 0 26 704217 0 1a 00 00 00 d9 be 0a 00 00 00 00 00 ............ +127 0.411612749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580733 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 120258560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 07 1f 00 00 00 00 00 ....T.c@.^1@......+....... +129 0.411887169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900600 12 -1 704217 0 0xffffffff 0 -1 704217 0 ff ff ff ff d9 be 0a 00 00 00 00 00 ............ +131 0.412411690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900612 12 22 695696 0 0x00000016 0 22 695696 0 16 00 00 00 90 9d 0a 00 00 00 00 00 ............ +133 0.412569284 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900624 22 18 2033451 0 0x00000012 1 2033451 0 196609 0 12 00 00 00 2b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +135 0.412908316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580759 12 -1 695696 0 0xffffffff 0 -1 695696 0 ff ff ff ff 90 9d 0a 00 00 00 00 00 ............ +138 0.429546356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580771 12 -2 79989 79971 0xfffffffe 0 -2 79989 79971 fe ff ff ff 75 38 01 00 63 38 01 00 ....u8..c8.. +143 0.513609886 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580783 12 26 704218 0 0x0000001a 0 26 704218 0 1a 00 00 00 da be 0a 00 00 00 00 00 ............ +145 0.513777018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580795 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 120389632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 07 1f 00 00 00 00 00 ....T.c@.^1@......-....... +147 0.514097691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900646 12 -1 704218 0 0xffffffff 0 -1 704218 0 ff ff ff ff da be 0a 00 00 00 00 00 ............ +149 0.514573097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900658 12 22 695697 0 0x00000016 0 22 695697 0 16 00 00 00 91 9d 0a 00 00 00 00 00 ............ +153 0.514771938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900670 22 18 2033453 0 0x00000012 1 2033453 0 196609 0 12 00 00 00 2d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +155 0.515069008 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580821 12 -1 695697 0 0xffffffff 0 -1 695697 0 ff ff ff ff 91 9d 0a 00 00 00 00 00 ............ +159 0.616156816 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580833 12 26 704219 0 0x0000001a 0 26 704219 0 1a 00 00 00 db be 0a 00 00 00 00 00 ............ +161 0.616326809 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580845 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 120520704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 07 1f 00 00 00 00 00 ....T.c@.^1@....../....... +163 0.616643906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900692 12 -1 704219 0 0xffffffff 0 -1 704219 0 ff ff ff ff db be 0a 00 00 00 00 00 ............ +165 0.617335796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900704 12 22 695698 0 0x00000016 0 22 695698 0 16 00 00 00 92 9d 0a 00 00 00 00 00 ............ +167 0.617496014 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900716 22 18 2033455 0 0x00000012 1 2033455 0 196609 0 12 00 00 00 2f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +169 0.617778301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580871 12 -1 695698 0 0xffffffff 0 -1 695698 0 ff ff ff ff 92 9d 0a 00 00 00 00 00 ............ +171 0.630466223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580883 12 34 704220 0 0x00000022 0 34 704220 0 22 00 00 00 dc be 0a 00 00 00 00 00 """..........." +173 0.630652905 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580895 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 3801088 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3a 00 02 00 00 00 00 00 31 ec 0e c3 9d 01 00 00 .....!...o3.......:.......1....... +175 0.630784512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580929 12 67 704221 0 0x00000043 0 67 704221 0 43 00 00 00 dd be 0a 00 00 00 00 00 C........... +177 0.630866289 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331580941 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3a 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 c0 8c 73 9a ?.....3...|8...........:.......=B.....&......... +179 0.630983114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900738 12 -1 704220 0 0xffffffff 0 -1 704220 0 ff ff ff ff dc be 0a 00 00 00 00 00 ............ +181 0.631186247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900750 12 -1 704221 0 0xffffffff 0 -1 704221 0 ff ff ff ff dd be 0a 00 00 00 00 00 ............ +183 0.631912947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900762 12 52 695699 0 0x00000034 0 52 695699 0 34 00 00 00 93 9d 0a 00 00 00 00 00 4........... +185 0.632081032 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900774 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3a 00 02 00 00 00 00 00 00 00 fc d3 7d 6a 4a 01 00 00 "0...Dk.................L."".([.....:...........}j" +187 0.632321835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581008 12 -1 695699 0 0xffffffff 0 -1 695699 0 ff ff ff ff 93 9d 0a 00 00 00 00 00 ............ +189 0.633091211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581020 12 30 704222 0 0x0000001e 0 30 704222 0 1e 00 00 00 de be 0a 00 00 00 00 00 ............ +191 0.633248568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581032 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 120651776 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +193 0.633539915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900826 12 -1 704222 0 0xffffffff 0 -1 704222 0 ff ff ff ff de be 0a 00 00 00 00 00 ............ +195 0.634094715 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900838 12 26 695700 0 0x0000001a 0 26 695700 0 1a 00 00 00 94 9d 0a 00 00 00 00 00 ............ +197 0.634235382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900850 26 22 2033457 0 0x00000016 1 2033457 0 196609 0 16 00 00 00 31 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +199 0.634500504 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581062 12 -1 695700 0 0xffffffff 0 -1 695700 0 ff ff ff ff 94 9d 0a 00 00 00 00 00 ............ +201 0.719250202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581074 12 26 704223 0 0x0000001a 0 26 704223 0 1a 00 00 00 df be 0a 00 00 00 00 00 ............ +203 0.719407797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581086 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 120782848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 07 1f 00 00 00 00 00 ....T.c@.^1@......3....... +205 0.719770193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900876 12 -1 704223 0 0xffffffff 0 -1 704223 0 ff ff ff ff df be 0a 00 00 00 00 00 ............ +207 0.722665310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900888 12 22 695701 0 0x00000016 0 22 695701 0 16 00 00 00 95 9d 0a 00 00 00 00 00 ............ +209 0.722847462 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900900 22 18 2033459 0 0x00000012 1 2033459 0 196609 0 12 00 00 00 33 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +211 0.723070860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581112 12 -1 695701 0 0xffffffff 0 -1 695701 0 ff ff ff ff 95 9d 0a 00 00 00 00 00 ............ +215 0.825503349 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581124 12 26 704224 0 0x0000001a 0 26 704224 0 1a 00 00 00 e0 be 0a 00 00 00 00 00 ............ +217 0.825663805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581136 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 120913920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 07 1f 00 00 00 00 00 ....T.c@.^1@......5....... +219 0.826063395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900922 12 -1 704224 0 0xffffffff 0 -1 704224 0 ff ff ff ff e0 be 0a 00 00 00 00 00 ............ +221 0.826495409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900934 12 22 695702 0 0x00000016 0 22 695702 0 16 00 00 00 96 9d 0a 00 00 00 00 00 ............ +223 0.826674938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900946 22 18 2033461 0 0x00000012 1 2033461 0 196609 0 12 00 00 00 35 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +225 0.826995611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581162 12 -1 695702 0 0xffffffff 0 -1 695702 0 ff ff ff ff 96 9d 0a 00 00 00 00 00 ............ +228 0.828516245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900968 12 -2 79972 79989 0xfffffffe 0 -2 79972 79989 fe ff ff ff 64 38 01 00 75 38 01 00 ....d8..u8.. +239 0.928485155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581174 12 26 704225 0 0x0000001a 0 26 704225 0 1a 00 00 00 e1 be 0a 00 00 00 00 00 ............ +241 0.928707361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581186 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 121044992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 07 1f 00 00 00 00 00 ....T.c@.^1@......7....... +243 0.929250240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900980 12 -1 704225 0 0xffffffff 0 -1 704225 0 ff ff ff ff e1 be 0a 00 00 00 00 00 ............ +245 0.929618120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375900992 12 22 695703 0 0x00000016 0 22 695703 0 16 00 00 00 97 9d 0a 00 00 00 00 00 ............ +247 0.929794312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901004 22 18 2033463 0 0x00000012 1 2033463 0 196609 0 12 00 00 00 37 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +249 0.930005312 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581212 12 -1 695703 0 0xffffffff 0 -1 695703 0 ff ff ff ff 97 9d 0a 00 00 00 00 00 ............ +252 0.930196524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581224 12 -2 79990 79972 0xfffffffe 0 -2 79990 79972 fe ff ff ff 76 38 01 00 64 38 01 00 ....v8..d8.. +255 0.935210705 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581236 12 101 704226 0 0x00000065 0 101 704226 0 65 00 00 00 e2 be 0a 00 00 00 00 00 e........... +257 0.935416460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581248 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3b 00 02 00 00 00 00 00 63 ed 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3b 00 02 00 00 00 00 .....!...o3.......;.......c.......?.....3...|8.. +259 0.935877323 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901026 12 -1 704226 0 0xffffffff 0 -1 704226 0 ff ff ff ff e2 be 0a 00 00 00 00 00 ............ +261 0.937161446 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901038 12 52 695704 0 0x00000034 0 52 695704 0 34 00 00 00 98 9d 0a 00 00 00 00 00 4........... +263 0.937362909 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901050 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3b 00 02 00 00 00 00 00 00 00 ed 6a ac 6a 4a 01 00 00 "0...Dk.................L."".([.....;..........j.j" +265 0.937691689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581349 12 -1 695704 0 0xffffffff 0 -1 695704 0 ff ff ff ff 98 9d 0a 00 00 00 00 00 ............ +267 0.938519716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581361 12 30 704227 0 0x0000001e 0 30 704227 0 1e 00 00 00 e3 be 0a 00 00 00 00 00 ............ +269 0.938670397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581373 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 121176064 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +271 0.939039230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901102 12 -1 704227 0 0xffffffff 0 -1 704227 0 ff ff ff ff e3 be 0a 00 00 00 00 00 ............ +273 0.939397097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901114 12 26 695705 0 0x0000001a 0 26 695705 0 1a 00 00 00 99 9d 0a 00 00 00 00 00 ............ +275 0.939543724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901126 26 22 2033465 0 0x00000016 1 2033465 0 196609 0 16 00 00 00 39 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +277 0.939726591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581403 12 -1 695705 0 0xffffffff 0 -1 695705 0 ff ff ff ff 99 9d 0a 00 00 00 00 00 ............ +287 1.032993555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581415 12 26 704228 0 0x0000001a 0 26 704228 0 1a 00 00 00 e4 be 0a 00 00 00 00 00 ............ +289 1.033175468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581427 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 121307136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 07 1f 00 00 00 00 00 ....T.c@.^1@......;....... +291 1.033435106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901152 12 -1 704228 0 0xffffffff 0 -1 704228 0 ff ff ff ff e4 be 0a 00 00 00 00 00 ............ +293 1.034313679 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901164 12 22 695706 0 0x00000016 0 22 695706 0 16 00 00 00 9a 9d 0a 00 00 00 00 00 ............ +295 1.034533978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901176 22 18 2033467 0 0x00000012 1 2033467 0 196609 0 12 00 00 00 3b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +297 1.034906149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581453 12 -1 695706 0 0xffffffff 0 -1 695706 0 ff ff ff ff 9a 9d 0a 00 00 00 00 00 ............ +299 1.136361361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581465 12 26 704229 0 0x0000001a 0 26 704229 0 1a 00 00 00 e5 be 0a 00 00 00 00 00 ............ +301 1.136534452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581477 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 121438208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 07 1f 00 00 00 00 00 ....T.c@.^1@......=....... +303 1.136908531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901198 12 -1 704229 0 0xffffffff 0 -1 704229 0 ff ff ff ff e5 be 0a 00 00 00 00 00 ............ +305 1.138098001 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901210 12 22 695707 0 0x00000016 0 22 695707 0 16 00 00 00 9b 9d 0a 00 00 00 00 00 ............ +307 1.138261795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901222 22 18 2033469 0 0x00000012 1 2033469 0 196609 0 12 00 00 00 3d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +309 1.138521194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581503 12 -1 695707 0 0xffffffff 0 -1 695707 0 ff ff ff ff 9b 9d 0a 00 00 00 00 00 ............ +313 1.239511490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581515 12 101 704230 0 0x00000065 0 101 704230 0 65 00 00 00 e6 be 0a 00 00 00 00 00 e........... +315 1.239711046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581527 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3c 00 02 00 00 00 00 00 92 ee 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3c 00 02 00 00 00 00 .....!...o3.......<...............?.....3...|8.. +317 1.240061283 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901244 12 -1 704230 0 0xffffffff 0 -1 704230 0 ff ff ff ff e6 be 0a 00 00 00 00 00 ............ +319 1.241290569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581628 12 26 704231 0 0x0000001a 0 26 704231 0 1a 00 00 00 e7 be 0a 00 00 00 00 00 ............ +320 1.241290331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901256 12 52 695708 0 0x00000034 0 52 695708 0 34 00 00 00 9c 9d 0a 00 00 00 00 00 4........... +321 1.241420269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581640 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 121569280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 07 1f 00 00 00 00 00 ....T.c@.^1@......?....... +324 1.241535664 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901268 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3c 00 02 00 00 00 00 00 00 00 30 d1 da 6a 4a 01 00 00 "0...Dk.................L."".([.....<.........0..j" +326 1.241750479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901320 12 -1 704231 0 0xffffffff 0 -1 704231 0 ff ff ff ff e7 be 0a 00 00 00 00 00 ............ +327 1.241914034 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581666 12 -1 695708 0 0xffffffff 0 -1 695708 0 ff ff ff ff 9c 9d 0a 00 00 00 00 00 ............ +329 1.242209673 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901332 12 22 695709 0 0x00000016 0 22 695709 0 16 00 00 00 9d 9d 0a 00 00 00 00 00 ............ +331 1.242391109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901344 22 18 2033471 0 0x00000012 1 2033471 0 196609 0 12 00 00 00 3f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +333 1.242599249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581678 12 30 704232 0 0x0000001e 0 30 704232 0 1e 00 00 00 e8 be 0a 00 00 00 00 00 ............ +335 1.242858410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581690 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 121700352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +337 1.243173122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581720 12 -1 695709 0 0xffffffff 0 -1 695709 0 ff ff ff ff 9d 9d 0a 00 00 00 00 00 ............ +338 1.243314028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901366 12 -1 704232 0 0xffffffff 0 -1 704232 0 ff ff ff ff e8 be 0a 00 00 00 00 00 ............ +340 1.243897915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901378 12 26 695710 0 0x0000001a 0 26 695710 0 1a 00 00 00 9e 9d 0a 00 00 00 00 00 ............ +342 1.244058609 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901390 26 22 2033473 0 0x00000016 1 2033473 0 196609 0 16 00 00 00 41 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +344 1.244295835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581732 12 -1 695710 0 0xffffffff 0 -1 695710 0 ff ff ff ff 9e 9d 0a 00 00 00 00 00 ............ +346 1.328093290 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901416 12 -2 79973 79990 0xfffffffe 0 -2 79973 79990 fe ff ff ff 65 38 01 00 76 38 01 00 ....e8..v8.. +354 1.345080376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581744 12 26 704233 0 0x0000001a 0 26 704233 0 1a 00 00 00 e9 be 0a 00 00 00 00 00 ............ +356 1.345286131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581756 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 121831424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 07 1f 00 00 00 00 00 ....T.c@.^1@......C....... +358 1.345574617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901428 12 -1 704233 0 0xffffffff 0 -1 704233 0 ff ff ff ff e9 be 0a 00 00 00 00 00 ............ +360 1.346232891 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901440 12 22 695711 0 0x00000016 0 22 695711 0 16 00 00 00 9f 9d 0a 00 00 00 00 00 ............ +362 1.346396923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901452 22 18 2033475 0 0x00000012 1 2033475 0 196609 0 12 00 00 00 43 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +364 1.346600533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581782 12 -1 695711 0 0xffffffff 0 -1 695711 0 ff ff ff ff 9f 9d 0a 00 00 00 00 00 ............ +371 1.432573795 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581794 12 -2 79991 79973 0xfffffffe 0 -2 79991 79973 fe ff ff ff 77 38 01 00 65 38 01 00 ....w8..e8.. +374 1.448509693 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581806 12 26 704234 0 0x0000001a 0 26 704234 0 1a 00 00 00 ea be 0a 00 00 00 00 00 ............ +376 1.448699236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581818 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 121962496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 07 1f 00 00 00 00 00 ....T.c@.^1@......E....... +378 1.449090004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901474 12 -1 704234 0 0xffffffff 0 -1 704234 0 ff ff ff ff ea be 0a 00 00 00 00 00 ............ +380 1.449635744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901486 12 22 695712 0 0x00000016 0 22 695712 0 16 00 00 00 a0 9d 0a 00 00 00 00 00 ............ +382 1.449795961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901498 22 18 2033477 0 0x00000012 1 2033477 0 196609 0 12 00 00 00 45 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +384 1.450187683 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581844 12 -1 695712 0 0xffffffff 0 -1 695712 0 ff ff ff ff a0 9d 0a 00 00 00 00 00 ............ +392 1.543837547 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581856 12 101 704235 0 0x00000065 0 101 704235 0 65 00 00 00 eb be 0a 00 00 00 00 00 e........... +394 1.544049263 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581868 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3d 00 02 00 00 00 00 00 c3 ef 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3d 00 02 00 00 00 00 .....!...o3.......=...............?.....3...|8.. +396 1.544373512 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901520 12 -1 704235 0 0xffffffff 0 -1 704235 0 ff ff ff ff eb be 0a 00 00 00 00 00 ............ +398 1.545493603 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901532 12 52 695713 0 0x00000034 0 52 695713 0 34 00 00 00 a1 9d 0a 00 00 00 00 00 4........... +400 1.545658588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901544 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3d 00 02 00 00 00 00 00 00 00 cc 3e 09 6b 4a 01 00 00 "0...Dk.................L."".([.....=..........>.k" +402 1.545934916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581969 12 -1 695713 0 0xffffffff 0 -1 695713 0 ff ff ff ff a1 9d 0a 00 00 00 00 00 ............ +404 1.546732903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581981 12 30 704236 0 0x0000001e 0 30 704236 0 1e 00 00 00 ec be 0a 00 00 00 00 00 ............ +406 1.546900988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331581993 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 122093568 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 47 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......G........... +408 1.547280312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901596 12 -1 704236 0 0xffffffff 0 -1 704236 0 ff ff ff ff ec be 0a 00 00 00 00 00 ............ +410 1.547598600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901608 12 26 695714 0 0x0000001a 0 26 695714 0 1a 00 00 00 a2 9d 0a 00 00 00 00 00 ............ +412 1.547743320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901620 26 22 2033479 0 0x00000016 1 2033479 0 196609 0 16 00 00 00 47 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....G..................... +414 1.547983170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582023 12 -1 695714 0 0xffffffff 0 -1 695714 0 ff ff ff ff a2 9d 0a 00 00 00 00 00 ............ +416 1.551586628 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582035 12 26 704237 0 0x0000001a 0 26 704237 0 1a 00 00 00 ed be 0a 00 00 00 00 00 ............ +418 1.551737070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582047 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 122224640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 07 1f 00 00 00 00 00 ....T.c@.^1@......I....... +420 1.552175999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901646 12 -1 704237 0 0xffffffff 0 -1 704237 0 ff ff ff ff ed be 0a 00 00 00 00 00 ............ +422 1.552765131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901658 12 22 695715 0 0x00000016 0 22 695715 0 16 00 00 00 a3 9d 0a 00 00 00 00 00 ............ +424 1.552921295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901670 22 18 2033481 0 0x00000012 1 2033481 0 196609 0 12 00 00 00 49 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +426 1.553163767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582073 12 -1 695715 0 0xffffffff 0 -1 695715 0 ff ff ff ff a3 9d 0a 00 00 00 00 00 ............ +459 1.655227900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582085 12 26 704238 0 0x0000001a 0 26 704238 0 1a 00 00 00 ee be 0a 00 00 00 00 00 ............ +461 1.655418396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582097 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 122355712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 07 1f 00 00 00 00 00 ....T.c@.^1@......K....... +463 1.655894995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901692 12 -1 704238 0 0xffffffff 0 -1 704238 0 ff ff ff ff ee be 0a 00 00 00 00 00 ............ +465 1.656330824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901704 12 22 695716 0 0x00000016 0 22 695716 0 16 00 00 00 a4 9d 0a 00 00 00 00 00 ............ +467 1.656491518 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901716 22 18 2033483 0 0x00000012 1 2033483 0 196609 0 12 00 00 00 4b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +469 1.656807423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582123 12 -1 695716 0 0xffffffff 0 -1 695716 0 ff ff ff ff a4 9d 0a 00 00 00 00 00 ............ +474 1.759057522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582135 12 243 704239 0 0x000000f3 0 243 704239 0 f3 00 00 00 ef be 0a 00 00 00 00 00 ............ +476 1.759227753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582147 243 22 1080266580 1076977378 0x00000016 0 22 1080266580 1076977378 196609 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 07 1f 00 00 00 00 00 d5 00 00 00 89 3d b2 0a c6 79 86 4e 01 00 ff ff ff ff 00 01 00 00 00 05 00 00 00 4c 00 6f 00 63 00 61 00 6c 00 56 ....T.c@.^1@......M............=...y.N.......... +478 1.759597301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901738 12 -1 704239 0 0xffffffff 0 -1 704239 0 ff ff ff ff ef be 0a 00 00 00 00 00 ............ +480 1.761806965 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901750 12 22 695717 0 0x00000016 0 22 695717 0 16 00 00 00 a5 9d 0a 00 00 00 00 00 ............ +482 1.762013197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901762 22 18 2033485 0 0x00000012 1 2033485 0 196609 0 12 00 00 00 4d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +484 1.762294531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582390 12 -1 695717 0 0xffffffff 0 -1 695717 0 ff ff ff ff a5 9d 0a 00 00 00 00 00 ............ +486 1.800772905 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901784 12 77 695718 0 0x0000004d 0 77 695718 0 4d 00 00 00 a6 9d 0a 00 00 00 00 00 M........... +488 1.801002502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901796 77 73 238618099 1064498097 0x00000049 1 238618099 1064498097 -65535 318832639 49 00 00 00 f3 05 39 0e b1 f3 72 3f 01 00 ff ff ff ff 00 13 00 00 00 52 00 23 00 2e 00 43 00 61 00 63 00 68 00 65 00 2e 00 50 00 72 00 6f 00 63 00 65 00 73 00 73 00 69 00 6e 00 67 00 7d 91 0d I.....9...r?...........R.#...C.a.c.h.e...P.r.o.c +490 1.801273108 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582402 12 -1 695718 0 0xffffffff 0 -1 695718 0 ff ff ff ff a6 9d 0a 00 00 00 00 00 ............ +492 1.801690102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901873 12 32 695719 0 0x00000020 0 32 695719 0 20 00 00 00 a7 9d 0a 00 00 00 00 00 ........... +494 1.801881552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901885 32 28 -1528702273 -996712142 0x0000001c 1 -1528702273 -996712142 -65535 1560346623 1c 00 00 00 bf da e1 a4 32 61 97 c4 01 00 ff ff ff ff 00 5d 0f b2 74 56 4d 19 b4 01 00 00 00 01 ........2a.........]..tVM....... +496 1.802018404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901917 12 32 695720 0 0x00000020 0 32 695720 0 20 00 00 00 a8 9d 0a 00 00 00 00 00 ........... +498 1.802110672 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582414 12 -1 695719 0 0xffffffff 0 -1 695719 0 ff ff ff ff a7 9d 0a 00 00 00 00 00 ............ +500 1.802284479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901929 32 28 -1528702273 -996712142 0x0000001c 1 -1528702273 -996712142 -65535 1560346623 1c 00 00 00 bf da e1 a4 32 61 97 c4 01 00 ff ff ff ff 00 5d 0f b2 74 56 4d 19 b4 01 00 00 00 00 ........2a.........]..tVM....... +502 1.802606583 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582426 12 -1 695720 0 0xffffffff 0 -1 695720 0 ff ff ff ff a8 9d 0a 00 00 00 00 00 ............ +504 1.804748058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901961 12 27 695721 0 0x0000001b 0 27 695721 0 1b 00 00 00 a9 9d 0a 00 00 00 00 00 ............ +506 1.804938793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375901973 27 23 241777755 1631757502 0x00000017 1 241777755 1631757502 -65535 65535 17 00 00 00 5b 3c 69 0e be a4 42 61 01 00 ff ff ff ff 00 00 00 00 00 00 00 00 00 ....[............... +552 1.848724365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582556 12 67 704241 0 0x00000043 0 67 704241 0 43 00 00 00 f1 be 0a 00 00 00 00 00 C........... +554 1.848808765 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582568 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc cf 25 bc 9a ?.....3...|8...........>.......=B.....&......... +555 1.848882914 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902293 12 -1 704240 0 0xffffffff 0 -1 704240 0 ff ff ff ff f0 be 0a 00 00 00 00 00 ............ +556 1.848978281 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902305 12 -1 704241 0 0xffffffff 0 -1 704241 0 ff ff ff ff f1 be 0a 00 00 00 00 00 ............ +559 1.849909544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902317 12 52 695727 0 0x00000034 0 52 695727 0 34 00 00 00 af 9d 0a 00 00 00 00 00 4........... +561 1.850082636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902329 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3e 00 02 00 00 00 00 00 00 00 4b b2 37 6b 4a 01 00 00 "0...Dk.................L."".([.....>.........K.7k" +563 1.850329876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582635 12 -1 695727 0 0xffffffff 0 -1 695727 0 ff ff ff ff af 9d 0a 00 00 00 00 00 ............ +565 1.853183508 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582647 12 30 704242 0 0x0000001e 0 30 704242 0 1e 00 00 00 f2 be 0a 00 00 00 00 00 ............ +566 1.853330612 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582659 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 122617856 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......O........... +567 1.853640318 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902381 12 -1 704242 0 0xffffffff 0 -1 704242 0 ff ff ff ff f2 be 0a 00 00 00 00 00 ............ +569 1.854010105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902393 12 26 695728 0 0x0000001a 0 26 695728 0 1a 00 00 00 b0 9d 0a 00 00 00 00 00 ............ +571 1.854168415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902405 26 22 2033487 0 0x00000016 1 2033487 0 196609 0 16 00 00 00 4f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....O..................... +573 1.854360104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582689 12 -1 695728 0 0xffffffff 0 -1 695728 0 ff ff ff ff b0 9d 0a 00 00 00 00 00 ............ +575 1.863100052 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582701 12 26 704243 0 0x0000001a 0 26 704243 0 1a 00 00 00 f3 be 0a 00 00 00 00 00 ............ +577 1.863251209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582713 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 122748928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 07 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +579 1.863475084 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902431 12 -1 704243 0 0xffffffff 0 -1 704243 0 ff ff ff ff f3 be 0a 00 00 00 00 00 ............ +581 1.863890171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902443 12 22 695729 0 0x00000016 0 22 695729 0 16 00 00 00 b1 9d 0a 00 00 00 00 00 ............ +583 1.864037037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902455 22 18 2033489 0 0x00000012 1 2033489 0 196609 0 12 00 00 00 51 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +585 1.864275217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582739 12 -1 695729 0 0xffffffff 0 -1 695729 0 ff ff ff ff b1 9d 0a 00 00 00 00 00 ............ +587 1.883548260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902477 12 24 695730 0 0x00000018 0 24 695730 0 18 00 00 00 b2 9d 0a 00 00 00 00 00 ............ +589 1.883737326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902489 24 20 121786146 1305382478 0x00000014 1 121786146 1305382478 -65535 65535 14 00 00 00 22 4f 42 07 4e 8e ce 4d 01 00 ff ff ff ff 00 00 00 00 00 01 "....""OB.N..M............" +591 1.883989811 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582751 12 -1 695730 0 0xffffffff 0 -1 695730 0 ff ff ff ff b2 9d 0a 00 00 00 00 00 ............ +690 1.927354097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902513 12 212 695731 0 0x000000d4 0 212 695731 0 d4 00 00 00 b3 9d 0a 00 00 00 00 00 ............ +695 1.927555561 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902525 212 208 -282722438 667553208 0x000000d0 1 -282722438 667553208 196609 212860928 d0 00 00 00 7a ff 25 ef b8 0d ca 27 01 00 03 00 00 00 b0 0c 00 00 00 00 00 00 2b 03 00 00 00 00 00 00 57 00 00 00 48 00 61 00 6e 00 64 00 6c 00 65 00 50 00 72 00 6f 00 6a 00 65 00 63 00 74 00 ....z.%....'..............+.......W...H.a.n.d.l. +698 1.927899837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582763 12 -1 695731 0 0xffffffff 0 -1 695731 0 ff ff ff ff b3 9d 0a 00 00 00 00 00 ............ +702 1.934084415 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582775 12 -2 79992 79974 0xfffffffe 0 -2 79992 79974 fe ff ff ff 78 38 01 00 66 38 01 00 ....x8..f8.. +706 1.965315580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582787 12 26 704244 0 0x0000001a 0 26 704244 0 1a 00 00 00 f4 be 0a 00 00 00 00 00 ............ +708 1.965482473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582799 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 122880000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 07 1f 00 00 00 00 00 ....T.c@.^1@......S....... +710 1.966123104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902737 12 -1 704244 0 0xffffffff 0 -1 704244 0 ff ff ff ff f4 be 0a 00 00 00 00 00 ............ +714 1.974383116 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902749 12 22 695732 0 0x00000016 0 22 695732 0 16 00 00 00 b4 9d 0a 00 00 00 00 00 ............ +716 1.974549532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902761 22 18 2033491 0 0x00000012 1 2033491 0 196609 0 12 00 00 00 53 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +718 1.974861383 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582825 12 -1 695732 0 0xffffffff 0 -1 695732 0 ff ff ff ff b4 9d 0a 00 00 00 00 00 ............ +853 2.077420712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582837 12 26 704245 0 0x0000001a 0 26 704245 0 1a 00 00 00 f5 be 0a 00 00 00 00 00 ............ +855 2.077574968 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582849 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 123011072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 07 1f 00 00 00 00 00 ....T.c@.^1@......U....... +857 2.077950001 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902783 12 -1 704245 0 0xffffffff 0 -1 704245 0 ff ff ff ff f5 be 0a 00 00 00 00 00 ............ +859 2.078559160 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902795 12 22 695733 0 0x00000016 0 22 695733 0 16 00 00 00 b5 9d 0a 00 00 00 00 00 ............ +861 2.078737974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902807 22 18 2033493 0 0x00000012 1 2033493 0 196609 0 12 00 00 00 55 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +863 2.079100370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582875 12 -1 695733 0 0xffffffff 0 -1 695733 0 ff ff ff ff b5 9d 0a 00 00 00 00 00 ............ +871 2.128953218 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902829 12 235 695734 0 0x000000eb 0 235 695734 0 eb 00 00 00 b6 9d 0a 00 00 00 00 00 ............ +873 2.129197836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375902841 235 208 -282722438 667553208 0x000000d0 0 208 -282722438 667553208 196609 d0 00 00 00 7a ff 25 ef b8 0d ca 27 01 00 03 00 00 00 b4 0c 00 00 00 00 00 00 2c 03 00 00 00 00 00 00 57 00 00 00 48 00 61 00 6e 00 64 00 6c 00 65 00 50 00 72 00 6f 00 6a 00 65 00 63 00 74 00 ....z.%....'..............,.......W...H.a.n.d.l. +875 2.129466534 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582887 12 -1 695734 0 0xffffffff 0 -1 695734 0 ff ff ff ff b6 9d 0a 00 00 00 00 00 ............ +889 2.154176712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582899 12 101 704246 0 0x00000065 0 101 704246 0 65 00 00 00 f6 be 0a 00 00 00 00 00 e........... +891 2.154409885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331582911 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3f 00 02 00 00 00 00 00 26 f2 0e c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3f 00 02 00 00 00 00 .....!...o3.......?.......&.......?.....3...|8.. +893 2.154873848 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903076 12 -1 704246 0 0xffffffff 0 -1 704246 0 ff ff ff ff f6 be 0a 00 00 00 00 00 ............ +895 2.157826662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903088 12 52 695735 0 0x00000034 0 52 695735 0 34 00 00 00 b7 9d 0a 00 00 00 00 00 4........... +897 2.158137798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903100 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3f 00 02 00 00 00 00 00 00 00 f7 a7 66 6b 4a 01 00 00 "0...Dk.................L."".([.....?...........fk" +899 2.158411503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583012 12 -1 695735 0 0xffffffff 0 -1 695735 0 ff ff ff ff b7 9d 0a 00 00 00 00 00 ............ +901 2.159256935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583024 12 30 704247 0 0x0000001e 0 30 704247 0 1e 00 00 00 f7 be 0a 00 00 00 00 00 ............ +903 2.159415245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583036 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 123142144 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 57 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......W........... +905 2.159652472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903152 12 -1 704247 0 0xffffffff 0 -1 704247 0 ff ff ff ff f7 be 0a 00 00 00 00 00 ............ +907 2.160196304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903164 12 26 695736 0 0x0000001a 0 26 695736 0 1a 00 00 00 b8 9d 0a 00 00 00 00 00 ............ +909 2.160398722 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903176 26 22 2033495 0 0x00000016 1 2033495 0 196609 0 16 00 00 00 57 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....W..................... +911 2.160773277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583066 12 -1 695736 0 0xffffffff 0 -1 695736 0 ff ff ff ff b8 9d 0a 00 00 00 00 00 ............ +913 2.179936647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903202 12 766 695737 0 0x000002fe 0 766 695737 0 fe 02 00 00 b9 9d 0a 00 00 00 00 00 ............ +915 2.180184603 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903214 766 762 -480140524 -1161981530 0x000002fa 1 -480140524 -1161981530 -65535 65535 fa 02 00 00 14 a3 61 e3 a6 91 bd ba 01 00 ff ff ff ff 00 00 00 00 00 08 00 00 00 59 74 51 6d f0 a6 24 ac 44 00 00 00 02 00 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 05 04 00 00 2d ......a....................YtQm..$.D.......-...n +917 2.180476904 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583078 12 -1 695737 0 0xffffffff 0 -1 695737 0 ff ff ff ff b9 9d 0a 00 00 00 00 00 ............ +919 2.180755377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583090 12 26 704248 0 0x0000001a 0 26 704248 0 1a 00 00 00 f8 be 0a 00 00 00 00 00 ............ +921 2.180942297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583102 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 123273216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 07 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +923 2.181303740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903980 12 -1 704248 0 0xffffffff 0 -1 704248 0 ff ff ff ff f8 be 0a 00 00 00 00 00 ............ +926 2.181595802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375903992 12 22 695738 0 0x00000016 0 22 695738 0 16 00 00 00 ba 9d 0a 00 00 00 00 00 ............ +928 2.181759834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904004 22 18 2033497 0 0x00000012 1 2033497 0 196609 0 12 00 00 00 59 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +930 2.182078123 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583128 12 -1 695738 0 0xffffffff 0 -1 695738 0 ff ff ff ff ba 9d 0a 00 00 00 00 00 ............ +1002 2.284324169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583140 12 26 704249 0 0x0000001a 0 26 704249 0 1a 00 00 00 f9 be 0a 00 00 00 00 00 ............ +1004 2.284518242 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583152 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 123404288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 07 1f 00 00 00 00 00 ....T.c@.^1@......[....... +1006 2.284916162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904026 12 -1 704249 0 0xffffffff 0 -1 704249 0 ff ff ff ff f9 be 0a 00 00 00 00 00 ............ +1008 2.285460472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904038 12 22 695739 0 0x00000016 0 22 695739 0 16 00 00 00 bb 9d 0a 00 00 00 00 00 ............ +1010 2.285679102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904050 22 18 2033499 0 0x00000012 1 2033499 0 196609 0 12 00 00 00 5b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +1012 2.285950899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583178 12 -1 695739 0 0xffffffff 0 -1 695739 0 ff ff ff ff bb 9d 0a 00 00 00 00 00 ............ +1051 2.329008341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904072 12 -2 79975 79992 0xfffffffe 0 -2 79975 79992 fe ff ff ff 67 38 01 00 78 38 01 00 ....g8..x8.. +1069 2.360042095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904084 12 24 695740 0 0x00000018 0 24 695740 0 18 00 00 00 bc 9d 0a 00 00 00 00 00 ............ +1071 2.360262871 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904096 24 20 121786146 1305382478 0x00000014 1 121786146 1305382478 -65535 65535 14 00 00 00 22 4f 42 07 4e 8e ce 4d 01 00 ff ff ff ff 00 00 00 00 00 00 "....""OB.N..M............" +1073 2.360569239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583190 12 -1 695740 0 0xffffffff 0 -1 695740 0 ff ff ff ff bc 9d 0a 00 00 00 00 00 ............ +1134 2.366349220 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904120 12 680 695741 0 0x000002a8 0 680 695741 0 a8 02 00 00 bd 9d 0a 00 00 00 00 00 ............ +1139 2.366586447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904132 680 676 -480140524 -1161981530 0x000002a4 1 -480140524 -1161981530 -65535 65535 a4 02 00 00 14 a3 61 e3 a6 91 bd ba 01 00 ff ff ff ff 00 00 00 00 00 08 00 00 00 59 74 51 6d f0 a6 24 ac 44 00 00 00 02 00 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 05 04 00 00 2d ......a....................YtQm..$.D.......-...n +1144 2.366863489 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583202 12 -1 695741 0 0xffffffff 0 -1 695741 0 ff ff ff ff bd 9d 0a 00 00 00 00 00 ............ +1147 2.388061047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583214 12 26 704250 0 0x0000001a 0 26 704250 0 1a 00 00 00 fa be 0a 00 00 00 00 00 ............ +1149 2.388235331 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583226 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 123535360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 07 1f 00 00 00 00 00 ....T.c@.^1@......]....... +1151 2.388627529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904812 12 -1 704250 0 0xffffffff 0 -1 704250 0 ff ff ff ff fa be 0a 00 00 00 00 00 ............ +1153 2.389134407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904824 12 22 695742 0 0x00000016 0 22 695742 0 16 00 00 00 be 9d 0a 00 00 00 00 00 ............ +1155 2.389350891 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904836 22 18 2033501 0 0x00000012 1 2033501 0 196609 0 12 00 00 00 5d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +1157 2.389730453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583252 12 -1 695742 0 0xffffffff 0 -1 695742 0 ff ff ff ff be 9d 0a 00 00 00 00 00 ............ +1165 2.435003281 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583264 12 -2 79993 79975 0xfffffffe 0 -2 79993 79975 fe ff ff ff 79 38 01 00 67 38 01 00 ....y8..g8.. +1168 2.460309744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583276 12 34 704251 0 0x00000022 0 34 704251 0 22 00 00 00 fb be 0a 00 00 00 00 00 """..........." +1170 2.460563660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583288 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 4194304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 40 00 02 00 00 00 00 00 57 f3 0e c3 9d 01 00 00 .....!...o3.......@.......W....... +1172 2.460749865 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583322 12 67 704252 0 0x00000043 0 67 704252 0 43 00 00 00 fc be 0a 00 00 00 00 00 C........... +1174 2.460861683 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583334 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 40 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 53 9e e0 9a ?.....3...|8...........@.......=B.....&......... +1175 2.460907221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904858 12 -1 704251 0 0xffffffff 0 -1 704251 0 ff ff ff ff fb be 0a 00 00 00 00 00 ............ +1178 2.461166382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904870 12 -1 704252 0 0xffffffff 0 -1 704252 0 ff ff ff ff fc be 0a 00 00 00 00 00 ............ +1180 2.462513685 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904882 12 52 695743 0 0x00000034 0 52 695743 0 34 00 00 00 bf 9d 0a 00 00 00 00 00 4........... +1182 2.462739944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904894 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 40 00 02 00 00 00 00 00 00 00 5a 27 95 6b 4a 01 00 00 "0...Dk.................L."".([.....@.........Z'.k" +1184 2.463040113 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583401 12 -1 695743 0 0xffffffff 0 -1 695743 0 ff ff ff ff bf 9d 0a 00 00 00 00 00 ............ +1186 2.464177132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583413 12 30 704253 0 0x0000001e 0 30 704253 0 1e 00 00 00 fd be 0a 00 00 00 00 00 ............ +1188 2.464393139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583425 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 123666432 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......_........... +1190 2.464703321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904946 12 -1 704253 0 0xffffffff 0 -1 704253 0 ff ff ff ff fd be 0a 00 00 00 00 00 ............ +1192 2.465753317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904958 12 26 695744 0 0x0000001a 0 26 695744 0 1a 00 00 00 c0 9d 0a 00 00 00 00 00 ............ +1194 2.466053486 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904970 26 22 2033503 0 0x00000016 1 2033503 0 196609 0 16 00 00 00 5f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...._..................... +1196 2.466316223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583455 12 -1 695744 0 0xffffffff 0 -1 695744 0 ff ff ff ff c0 9d 0a 00 00 00 00 00 ............ +1200 2.476098776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375904996 12 766 695745 0 0x000002fe 0 766 695745 0 fe 02 00 00 c1 9d 0a 00 00 00 00 00 ............ +1202 2.476247311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905008 766 762 -480140524 -1161981530 0x000002fa 1 -480140524 -1161981530 -65535 65535 fa 02 00 00 14 a3 61 e3 a6 91 bd ba 01 00 ff ff ff ff 00 00 00 00 00 08 00 00 00 59 74 51 6d f0 a6 24 ac 44 00 00 00 02 00 00 00 2d 92 7f 15 6e 99 5d 94 08 00 00 00 53 03 00 00 05 04 00 00 2d ......a....................YtQm..$.D.......-...n +1204 2.476533175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583467 12 -1 695745 0 0xffffffff 0 -1 695745 0 ff ff ff ff c1 9d 0a 00 00 00 00 00 ............ +1206 2.492054224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583479 12 26 704254 0 0x0000001a 0 26 704254 0 1a 00 00 00 fe be 0a 00 00 00 00 00 ............ +1208 2.492237806 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583491 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 123797504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 07 1f 00 00 00 00 00 ....T.c@.^1@......a....... +1210 2.492705822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905774 12 -1 704254 0 0xffffffff 0 -1 704254 0 ff ff ff ff fe be 0a 00 00 00 00 00 ............ +1212 2.493037701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905786 12 22 695746 0 0x00000016 0 22 695746 0 16 00 00 00 c2 9d 0a 00 00 00 00 00 ............ +1214 2.493205309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905798 22 18 2033505 0 0x00000012 1 2033505 0 196609 0 12 00 00 00 61 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +1216 2.493559361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583517 12 -1 695746 0 0xffffffff 0 -1 695746 0 ff ff ff ff c2 9d 0a 00 00 00 00 00 ............ +1223 2.586408615 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905820 12 24 695747 0 0x00000018 0 24 695747 0 18 00 00 00 c3 9d 0a 00 00 00 00 00 ............ +1225 2.586683750 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905832 24 20 121786146 1305382478 0x00000014 1 121786146 1305382478 -65535 65535 14 00 00 00 22 4f 42 07 4e 8e ce 4d 01 00 ff ff ff ff 00 00 00 00 00 01 "....""OB.N..M............" +1227 2.586976528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583529 12 -1 695747 0 0xffffffff 0 -1 695747 0 ff ff ff ff c3 9d 0a 00 00 00 00 00 ............ +1229 2.594666481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583541 12 26 704255 0 0x0000001a 0 26 704255 0 1a 00 00 00 ff be 0a 00 00 00 00 00 ............ +1231 2.594794750 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583553 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 123928576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 07 1f 00 00 00 00 00 ....T.c@.^1@......c....... +1233 2.595194817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905856 12 -1 704255 0 0xffffffff 0 -1 704255 0 ff ff ff ff ff be 0a 00 00 00 00 00 ............ +1235 2.595784426 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905868 12 22 695748 0 0x00000016 0 22 695748 0 16 00 00 00 c4 9d 0a 00 00 00 00 00 ............ +1237 2.595995426 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905880 22 18 2033507 0 0x00000012 1 2033507 0 196609 0 12 00 00 00 63 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +1239 2.596215010 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583579 12 -1 695748 0 0xffffffff 0 -1 695748 0 ff ff ff ff c4 9d 0a 00 00 00 00 00 ............ +1242 2.698736668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583591 12 26 704256 0 0x0000001a 0 26 704256 0 1a 00 00 00 00 bf 0a 00 00 00 00 00 ............ +1244 2.698934555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583603 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 124059648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 07 1f 00 00 00 00 00 ....T.c@.^1@......e....... +1246 2.699311018 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905902 12 -1 704256 0 0xffffffff 0 -1 704256 0 ff ff ff ff 00 bf 0a 00 00 00 00 00 ............ +1248 2.699763298 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905914 12 22 695749 0 0x00000016 0 22 695749 0 16 00 00 00 c5 9d 0a 00 00 00 00 00 ............ +1250 2.700031042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905926 22 18 2033509 0 0x00000012 1 2033509 0 196609 0 12 00 00 00 65 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +1252 2.700300217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583629 12 -1 695749 0 0xffffffff 0 -1 695749 0 ff ff ff ff c5 9d 0a 00 00 00 00 00 ............ +1259 2.766100407 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583641 12 34 704257 0 0x00000022 0 34 704257 0 22 00 00 00 01 bf 0a 00 00 00 00 00 """..........." +1261 2.766308784 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583653 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 4259840 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 41 00 02 00 00 00 00 00 89 f4 0e c3 9d 01 00 00 .....!...o3.......A............... +1263 2.766452074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583687 12 67 704258 0 0x00000043 0 67 704258 0 43 00 00 00 02 bf 0a 00 00 00 00 00 C........... +1265 2.766551018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583699 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 41 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 d8 d4 f2 9a ?.....3...|8...........A.......=B.....&......... +1266 2.766620159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905948 12 -1 704257 0 0xffffffff 0 -1 704257 0 ff ff ff ff 01 bf 0a 00 00 00 00 00 ............ +1269 2.766858101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905960 12 -1 704258 0 0xffffffff 0 -1 704258 0 ff ff ff ff 02 bf 0a 00 00 00 00 00 ............ +1271 2.767488003 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905972 12 52 695750 0 0x00000034 0 52 695750 0 34 00 00 00 c6 9d 0a 00 00 00 00 00 4........... +1273 2.767644405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375905984 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 41 00 02 00 00 00 00 00 00 00 1d b5 c3 6b 4a 01 00 00 "0...Dk.................L."".([.....A............k" +1275 2.767919064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583766 12 -1 695750 0 0xffffffff 0 -1 695750 0 ff ff ff ff c6 9d 0a 00 00 00 00 00 ............ +1276 2.768584728 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583778 12 30 704259 0 0x0000001e 0 30 704259 0 1e 00 00 00 03 bf 0a 00 00 00 00 00 ............ +1278 2.768727779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583790 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 124190720 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 67 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......g........... +1280 2.769005537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906036 12 -1 704259 0 0xffffffff 0 -1 704259 0 ff ff ff ff 03 bf 0a 00 00 00 00 00 ............ +1282 2.770341396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906048 12 26 695751 0 0x0000001a 0 26 695751 0 1a 00 00 00 c7 9d 0a 00 00 00 00 00 ............ +1284 2.770496130 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906060 26 22 2033511 0 0x00000016 1 2033511 0 196609 0 16 00 00 00 67 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....g..................... +1286 2.770752907 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583820 12 -1 695751 0 0xffffffff 0 -1 695751 0 ff ff ff ff c7 9d 0a 00 00 00 00 00 ............ +1288 2.801274300 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583832 12 26 704260 0 0x0000001a 0 26 704260 0 1a 00 00 00 04 bf 0a 00 00 00 00 00 ............ +1290 2.801449060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583844 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 124321792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 07 1f 00 00 00 00 00 ....T.c@.^1@......i....... +1292 2.801852703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906086 12 -1 704260 0 0xffffffff 0 -1 704260 0 ff ff ff ff 04 bf 0a 00 00 00 00 00 ............ +1294 2.806162119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906098 12 22 695752 0 0x00000016 0 22 695752 0 16 00 00 00 c8 9d 0a 00 00 00 00 00 ............ +1296 2.806371689 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906110 22 18 2033513 0 0x00000012 1 2033513 0 196609 0 12 00 00 00 69 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +1298 2.806626558 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583870 12 -1 695752 0 0xffffffff 0 -1 695752 0 ff ff ff ff c8 9d 0a 00 00 00 00 00 ............ +1300 2.830508232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906132 12 -2 79976 79993 0xfffffffe 0 -2 79976 79993 fe ff ff ff 68 38 01 00 79 38 01 00 ....h8..y8.. +1309 2.907622814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583882 12 26 704261 0 0x0000001a 0 26 704261 0 1a 00 00 00 05 bf 0a 00 00 00 00 00 ............ +1311 2.907850027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583894 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 124452864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 07 1f 00 00 00 00 00 ....T.c@.^1@......k....... +1313 2.908302307 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906144 12 -1 704261 0 0xffffffff 0 -1 704261 0 ff ff ff ff 05 bf 0a 00 00 00 00 00 ............ +1315 2.908912420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906156 12 22 695753 0 0x00000016 0 22 695753 0 16 00 00 00 c9 9d 0a 00 00 00 00 00 ............ +1317 2.909099817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906168 22 18 2033515 0 0x00000012 1 2033515 0 196609 0 12 00 00 00 6b 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +1321 2.909327030 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583920 12 -1 695753 0 0xffffffff 0 -1 695753 0 ff ff ff ff c9 9d 0a 00 00 00 00 00 ............ +1325 2.937048674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583932 12 -2 79994 79976 0xfffffffe 0 -2 79994 79976 fe ff ff ff 7a 38 01 00 68 38 01 00 ....z8..h8.. +1331 2.982178211 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906190 12 24 695754 0 0x00000018 0 24 695754 0 18 00 00 00 ca 9d 0a 00 00 00 00 00 ............ +1333 2.982359886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906202 24 20 800731535 884781590 0x00000014 1 800731535 884781590 -65535 65535 14 00 00 00 8f 31 ba 2f 16 b2 bc 34 01 00 ff ff ff ff 00 00 00 00 00 01 .....1./...4............ +1335 2.982616901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583944 12 -1 695754 0 0xffffffff 0 -1 695754 0 ff ff ff ff ca 9d 0a 00 00 00 00 00 ............ +1337 3.010727167 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583956 12 26 704262 0 0x0000001a 0 26 704262 0 1a 00 00 00 06 bf 0a 00 00 00 00 00 ............ +1339 3.010935068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583968 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 124583936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 07 1f 00 00 00 00 00 ....T.c@.^1@......m....... +1341 3.011230230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906226 12 -1 704262 0 0xffffffff 0 -1 704262 0 ff ff ff ff 06 bf 0a 00 00 00 00 00 ............ +1343 3.011780262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906238 12 22 695755 0 0x00000016 0 22 695755 0 16 00 00 00 cb 9d 0a 00 00 00 00 00 ............ +1345 3.011964321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906250 22 18 2033517 0 0x00000012 1 2033517 0 196609 0 12 00 00 00 6d 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +1347 3.012148142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331583994 12 -1 695755 0 0xffffffff 0 -1 695755 0 ff ff ff ff cb 9d 0a 00 00 00 00 00 ............ +1353 3.069219828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584006 12 34 704263 0 0x00000022 0 34 704263 0 22 00 00 00 07 bf 0a 00 00 00 00 00 """..........." +1355 3.069593668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584018 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 4325376 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 42 00 02 00 00 00 00 00 b8 f5 0e c3 9d 01 00 00 .....!...o3.......B............... +1357 3.069722891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584052 12 67 704264 0 0x00000043 0 67 704264 0 43 00 00 00 08 bf 0a 00 00 00 00 00 C........... +1359 3.069805622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584064 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 42 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c 38 eb 04 9b ?.....3...|8...........B.......=B.....&......... +1361 3.070073128 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906272 12 -1 704263 0 0xffffffff 0 -1 704263 0 ff ff ff ff 07 bf 0a 00 00 00 00 00 ............ +1363 3.070341110 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906284 12 -1 704264 0 0xffffffff 0 -1 704264 0 ff ff ff ff 08 bf 0a 00 00 00 00 00 ............ +1365 3.071153402 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906296 12 52 695756 0 0x00000034 0 52 695756 0 34 00 00 00 cc 9d 0a 00 00 00 00 00 4........... +1367 3.071288824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906308 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 42 00 02 00 00 00 00 00 00 00 28 0c f2 6b 4a 01 00 00 "0...Dk.................L."".([.....B.........(..k" +1369 3.071557760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584131 12 -1 695756 0 0xffffffff 0 -1 695756 0 ff ff ff ff cc 9d 0a 00 00 00 00 00 ............ +1371 3.072360277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584143 12 30 704265 0 0x0000001e 0 30 704265 0 1e 00 00 00 09 bf 0a 00 00 00 00 00 ............ +1373 3.072540760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584155 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 124715008 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6f 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......o........... +1375 3.072858810 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906360 12 -1 704265 0 0xffffffff 0 -1 704265 0 ff ff ff ff 09 bf 0a 00 00 00 00 00 ............ +1377 3.073110104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906372 12 26 695757 0 0x0000001a 0 26 695757 0 1a 00 00 00 cd 9d 0a 00 00 00 00 00 ............ +1379 3.073243618 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906384 26 22 2033519 0 0x00000016 1 2033519 0 196609 0 16 00 00 00 6f 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....o..................... +1381 3.073452950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584185 12 -1 695757 0 0xffffffff 0 -1 695757 0 ff ff ff ff cd 9d 0a 00 00 00 00 00 ............ +1383 3.114014626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584197 12 26 704266 0 0x0000001a 0 26 704266 0 1a 00 00 00 0a bf 0a 00 00 00 00 00 ............ +1385 3.114186764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584209 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 124846080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 07 1f 00 00 00 00 00 ....T.c@.^1@......q....... +1387 3.114536762 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906410 12 -1 704266 0 0xffffffff 0 -1 704266 0 ff ff ff ff 0a bf 0a 00 00 00 00 00 ............ +1389 3.115024328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906422 12 22 695758 0 0x00000016 0 22 695758 0 16 00 00 00 ce 9d 0a 00 00 00 00 00 ............ +1391 3.115187168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906434 22 18 2033521 0 0x00000012 1 2033521 0 196609 0 12 00 00 00 71 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +1393 3.115433455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331584235 12 -1 695758 0 0xffffffff 0 -1 695758 0 ff ff ff ff ce 9d 0a 00 00 00 00 00 ............ +1406 3.133916140 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906456 12 26 695759 0 0x0000001a 0 26 695759 0 1a 00 00 00 cf 9d 0a 00 00 00 00 00 ............ +1408 3.134081602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375906468 26 22 241777755 1631757502 0x00000016 1 241777755 1631757502 196609 0 16 00 00 00 5b 3c 69 0e be a4 42 61 01 00 03 00 00 00 00 00 00 00 01 00 00 00 ....[......." +2755 6.116022110 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587500 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 4980736 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4c 00 02 00 00 00 00 00 9f 01 0f c3 9d 01 00 00 .....!...o3.......L............... +2757 6.116162777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587534 12 67 704319 0 0x00000043 0 67 704319 0 43 00 00 00 3f bf 0a 00 00 00 00 00 C...?....... +2759 6.116250515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587546 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4c 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 45 81 ba 9b ?.....3...|8...........L.......=B.....&......... +2760 6.116302490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909652 12 -1 704318 0 0xffffffff 0 -1 704318 0 ff ff ff ff 3e bf 0a 00 00 00 00 00 ....>....... +2761 6.116398573 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909664 12 -1 704319 0 0xffffffff 0 -1 704319 0 ff ff ff ff 3f bf 0a 00 00 00 00 00 ....?....... +2764 6.117435217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909676 12 52 695811 0 0x00000034 0 52 695811 0 34 00 00 00 03 9e 0a 00 00 00 00 00 4........... +2766 6.117620468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909688 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4c 00 02 00 00 00 00 00 00 00 cb dd c2 6d 4a 01 00 00 "0...Dk.................L."".([.....L............m" +2768 6.117999315 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587613 12 -1 695811 0 0xffffffff 0 -1 695811 0 ff ff ff ff 03 9e 0a 00 00 00 00 00 ............ +2769 6.118703604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587625 12 30 704320 0 0x0000001e 0 30 704320 0 1e 00 00 00 40 bf 0a 00 00 00 00 00 ....@....... +2770 6.118812799 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587637 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 129957888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2771 6.119048357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909740 12 -1 704320 0 0xffffffff 0 -1 704320 0 ff ff ff ff 40 bf 0a 00 00 00 00 00 ....@....... +2773 6.119556189 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909752 12 26 695812 0 0x0000001a 0 26 695812 0 1a 00 00 00 04 9e 0a 00 00 00 00 00 ............ +2775 6.119703293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909764 26 22 2033599 0 0x00000016 1 2033599 0 196609 0 16 00 00 00 bf 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2777 6.120026588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587667 12 -1 695812 0 0xffffffff 0 -1 695812 0 ff ff ff ff 04 9e 0a 00 00 00 00 00 ............ +2780 6.215647221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587679 12 26 704321 0 0x0000001a 0 26 704321 0 1a 00 00 00 41 bf 0a 00 00 00 00 00 ....A....... +2782 6.215835333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587691 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 130088960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2784 6.216222525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909790 12 -1 704321 0 0xffffffff 0 -1 704321 0 ff ff ff ff 41 bf 0a 00 00 00 00 00 ....A....... +2786 6.216744661 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909802 12 22 695813 0 0x00000016 0 22 695813 0 16 00 00 00 05 9e 0a 00 00 00 00 00 ............ +2788 6.216940641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909814 22 18 2033601 0 0x00000012 1 2033601 0 196609 0 12 00 00 00 c1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2790 6.217279673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587717 12 -1 695813 0 0xffffffff 0 -1 695813 0 ff ff ff ff 05 9e 0a 00 00 00 00 00 ............ +2795 6.318629503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587729 12 26 704322 0 0x0000001a 0 26 704322 0 1a 00 00 00 42 bf 0a 00 00 00 00 00 ....B....... +2797 6.318802595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587741 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 130220032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2799 6.319208860 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909836 12 -1 704322 0 0xffffffff 0 -1 704322 0 ff ff ff ff 42 bf 0a 00 00 00 00 00 ....B....... +2801 6.319935083 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909848 12 22 695814 0 0x00000016 0 22 695814 0 16 00 00 00 06 9e 0a 00 00 00 00 00 ............ +2803 6.320162535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909860 22 18 2033603 0 0x00000012 1 2033603 0 196609 0 12 00 00 00 c3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2805 6.320446014 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587767 12 -1 695814 0 0xffffffff 0 -1 695814 0 ff ff ff ff 06 9e 0a 00 00 00 00 00 ............ +2807 6.334403276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909882 12 -2 79983 80000 0xfffffffe 0 -2 79983 80000 fe ff ff ff 6f 38 01 00 80 38 01 00 ....o8...8.. +2822 6.421185255 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587779 12 101 704323 0 0x00000065 0 101 704323 0 65 00 00 00 43 bf 0a 00 00 00 00 00 e...C....... +2824 6.421427011 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587791 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4d 00 02 00 00 00 00 00 d0 02 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4d 00 02 00 00 00 00 .....!...o3.......M...............?.....3...|8.. +2826 6.421556473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587892 12 26 704324 0 0x0000001a 0 26 704324 0 1a 00 00 00 44 bf 0a 00 00 00 00 00 ....D....... +2828 6.421644926 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587904 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 130351104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2830 6.421708107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909894 12 -1 704323 0 0xffffffff 0 -1 704323 0 ff ff ff ff 43 bf 0a 00 00 00 00 00 ....C....... +2832 6.422045708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909906 12 -1 704324 0 0xffffffff 0 -1 704324 0 ff ff ff ff 44 bf 0a 00 00 00 00 00 ....D....... +2834 6.422347069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909918 12 22 695815 0 0x00000016 0 22 695815 0 16 00 00 00 07 9e 0a 00 00 00 00 00 ............ +2836 6.422514915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909930 22 18 2033605 0 0x00000012 1 2033605 0 196609 0 12 00 00 00 c5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2838 6.422678709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909952 12 52 695816 0 0x00000034 0 52 695816 0 34 00 00 00 08 9e 0a 00 00 00 00 00 4........... +2840 6.422767878 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375909964 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4d 00 02 00 00 00 00 00 00 00 84 71 f1 6d 4a 01 00 00 "0...Dk.................L."".([.....M..........q.m" +2841 6.422813892 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587930 12 -1 695815 0 0xffffffff 0 -1 695815 0 ff ff ff ff 07 9e 0a 00 00 00 00 00 ............ +2844 6.423054218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587942 12 -1 695816 0 0xffffffff 0 -1 695816 0 ff ff ff ff 08 9e 0a 00 00 00 00 00 ............ +2846 6.423755884 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587954 12 30 704325 0 0x0000001e 0 30 704325 0 1e 00 00 00 45 bf 0a 00 00 00 00 00 ....E....... +2848 6.423906326 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587966 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 130482176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2850 6.424295187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910016 12 -1 704325 0 0xffffffff 0 -1 704325 0 ff ff ff ff 45 bf 0a 00 00 00 00 00 ....E....... +2851 6.424601555 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910028 12 26 695817 0 0x0000001a 0 26 695817 0 1a 00 00 00 09 9e 0a 00 00 00 00 00 ............ +2853 6.424751997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910040 26 22 2033607 0 0x00000016 1 2033607 0 196609 0 16 00 00 00 c7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2855 6.425021410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331587996 12 -1 695817 0 0xffffffff 0 -1 695817 0 ff ff ff ff 09 9e 0a 00 00 00 00 00 ............ +2857 6.444626093 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588008 12 -2 80001 79983 0xfffffffe 0 -2 80001 79983 fe ff ff ff 81 38 01 00 6f 38 01 00 .....8..o8.. +2875 6.523786545 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588020 12 26 704326 0 0x0000001a 0 26 704326 0 1a 00 00 00 46 bf 0a 00 00 00 00 00 ....F....... +2877 6.523966074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588032 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 130613248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2881 6.524363995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910066 12 -1 704326 0 0xffffffff 0 -1 704326 0 ff ff ff ff 46 bf 0a 00 00 00 00 00 ....F....... +2883 6.524827480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910078 12 22 695818 0 0x00000016 0 22 695818 0 16 00 00 00 0a 9e 0a 00 00 00 00 00 ............ +2885 6.525004864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910090 22 18 2033609 0 0x00000012 1 2033609 0 196609 0 12 00 00 00 c9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2887 6.525325537 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588058 12 -1 695818 0 0xffffffff 0 -1 695818 0 ff ff ff ff 0a 9e 0a 00 00 00 00 00 ............ +2891 6.626435995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588070 12 26 704327 0 0x0000001a 0 26 704327 0 1a 00 00 00 47 bf 0a 00 00 00 00 00 ....G....... +2893 6.626657486 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588082 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 130744320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2895 6.627006531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910112 12 -1 704327 0 0xffffffff 0 -1 704327 0 ff ff ff ff 47 bf 0a 00 00 00 00 00 ....G....... +2897 6.627515316 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910124 12 22 695819 0 0x00000016 0 22 695819 0 16 00 00 00 0b 9e 0a 00 00 00 00 00 ............ +2899 6.627677679 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910136 22 18 2033611 0 0x00000012 1 2033611 0 196609 0 12 00 00 00 cb 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2901 6.627974510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588108 12 -1 695819 0 0xffffffff 0 -1 695819 0 ff ff ff ff 0b 9e 0a 00 00 00 00 00 ............ +2903 6.724671364 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588120 12 34 704328 0 0x00000022 0 34 704328 0 22 00 00 00 48 bf 0a 00 00 00 00 00 """...H......." +2905 6.724881649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588132 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 5111808 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4e 00 02 00 00 00 00 00 00 04 0f c3 9d 01 00 00 .....!...o3.......N............... +2907 6.724973440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588166 12 67 704329 0 0x00000043 0 67 704329 0 43 00 00 00 49 bf 0a 00 00 00 00 00 C...I....... +2909 6.725058317 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588178 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d8 53 ca de 9b ?.....3...|8...........N.......=B.....&......... +2911 6.725230217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910158 12 -1 704328 0 0xffffffff 0 -1 704328 0 ff ff ff ff 48 bf 0a 00 00 00 00 00 ....H....... +2913 6.725508928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910170 12 -1 704329 0 0xffffffff 0 -1 704329 0 ff ff ff ff 49 bf 0a 00 00 00 00 00 ....I....... +2915 6.726584435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910182 12 52 695820 0 0x00000034 0 52 695820 0 34 00 00 00 0c 9e 0a 00 00 00 00 00 4........... +2917 6.726840019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910194 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4e 00 02 00 00 00 00 00 00 00 4c ce 1f 6e 4a 01 00 00 "0...Dk.................L."".([.....N.........L..n" +2919 6.727066517 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588245 12 -1 695820 0 0xffffffff 0 -1 695820 0 ff ff ff ff 0c 9e 0a 00 00 00 00 00 ............ +2921 6.727889776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588257 12 30 704330 0 0x0000001e 0 30 704330 0 1e 00 00 00 4a bf 0a 00 00 00 00 00 ....J....... +2923 6.728033781 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588269 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 130875392 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cd 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2925 6.728365660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910246 12 -1 704330 0 0xffffffff 0 -1 704330 0 ff ff ff ff 4a bf 0a 00 00 00 00 00 ....J....... +2927 6.728847265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910258 12 26 695821 0 0x0000001a 0 26 695821 0 1a 00 00 00 0d 9e 0a 00 00 00 00 00 ............ +2929 6.729089975 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910270 26 22 2033613 0 0x00000016 1 2033613 0 196609 0 16 00 00 00 cd 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2931 6.729252100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588299 12 26 704331 0 0x0000001a 0 26 704331 0 1a 00 00 00 4b bf 0a 00 00 00 00 00 ....K....... +2932 6.729266405 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588311 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 131006464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2934 6.729413271 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588337 12 -1 695821 0 0xffffffff 0 -1 695821 0 ff ff ff ff 0d 9e 0a 00 00 00 00 00 ............ +2936 6.729608297 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910296 12 -1 704331 0 0xffffffff 0 -1 704331 0 ff ff ff ff 4b bf 0a 00 00 00 00 00 ....K....... +2937 6.729979753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910308 12 22 695822 0 0x00000016 0 22 695822 0 16 00 00 00 0e 9e 0a 00 00 00 00 00 ............ +2939 6.730169773 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910320 22 18 2033615 0 0x00000012 1 2033615 0 196609 0 12 00 00 00 cf 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2941 6.730870724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588349 12 -1 695822 0 0xffffffff 0 -1 695822 0 ff ff ff ff 0e 9e 0a 00 00 00 00 00 ............ +2945 6.831794739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588361 12 26 704332 0 0x0000001a 0 26 704332 0 1a 00 00 00 4c bf 0a 00 00 00 00 00 ....L....... +2947 6.831983566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588373 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 131137536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2949 6.832336187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910342 12 -1 704332 0 0xffffffff 0 -1 704332 0 ff ff ff ff 4c bf 0a 00 00 00 00 00 ....L....... +2951 6.833175421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910354 12 22 695823 0 0x00000016 0 22 695823 0 16 00 00 00 0f 9e 0a 00 00 00 00 00 ............ +2953 6.833383799 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910366 22 18 2033617 0 0x00000012 1 2033617 0 196609 0 12 00 00 00 d1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2955 6.833677769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588399 12 -1 695823 0 0xffffffff 0 -1 695823 0 ff ff ff ff 0f 9e 0a 00 00 00 00 00 ............ +2957 6.834458590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910388 12 -2 79984 80001 0xfffffffe 0 -2 79984 80001 fe ff ff ff 70 38 01 00 81 38 01 00 ....p8...8.. +2969 6.934598684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588411 12 26 704333 0 0x0000001a 0 26 704333 0 1a 00 00 00 4d bf 0a 00 00 00 00 00 ....M....... +2971 6.934772491 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588423 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 131268608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +2973 6.935157299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910400 12 -1 704333 0 0xffffffff 0 -1 704333 0 ff ff ff ff 4d bf 0a 00 00 00 00 00 ....M....... +2975 6.935575485 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910412 12 22 695824 0 0x00000016 0 22 695824 0 16 00 00 00 10 9e 0a 00 00 00 00 00 ............ +2977 6.935761690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910424 22 18 2033619 0 0x00000012 1 2033619 0 196609 0 12 00 00 00 d3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2979 6.936071873 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588449 12 -1 695824 0 0xffffffff 0 -1 695824 0 ff ff ff ff 10 9e 0a 00 00 00 00 00 ............ +2981 6.945398808 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588461 12 -2 80002 79984 0xfffffffe 0 -2 80002 79984 fe ff ff ff 82 38 01 00 70 38 01 00 .....8..p8.. +2989 7.029647350 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588473 12 101 704334 0 0x00000065 0 101 704334 0 65 00 00 00 4e bf 0a 00 00 00 00 00 e...N....... +2991 7.029848099 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588485 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4f 00 02 00 00 00 00 00 31 05 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4f 00 02 00 00 00 00 .....!...o3.......O.......1.......?.....3...|8.. +2993 7.030112743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910446 12 -1 704334 0 0xffffffff 0 -1 704334 0 ff ff ff ff 4e bf 0a 00 00 00 00 00 ....N....... +2995 7.031249046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910458 12 52 695825 0 0x00000034 0 52 695825 0 34 00 00 00 11 9e 0a 00 00 00 00 00 4........... +2997 7.031395197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910470 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4f 00 02 00 00 00 00 00 00 00 da 4d 4e 6e 4a 01 00 00 "0...Dk.................L."".([.....O..........MNn" +2999 7.031656265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588586 12 -1 695825 0 0xffffffff 0 -1 695825 0 ff ff ff ff 11 9e 0a 00 00 00 00 00 ............ +3001 7.032411098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588598 12 30 704335 0 0x0000001e 0 30 704335 0 1e 00 00 00 4f bf 0a 00 00 00 00 00 ....O....... +3003 7.032553673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588610 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 131399680 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d5 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3005 7.032911301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910522 12 -1 704335 0 0xffffffff 0 -1 704335 0 ff ff ff ff 4f bf 0a 00 00 00 00 00 ....O....... +3007 7.033279896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910534 12 26 695826 0 0x0000001a 0 26 695826 0 1a 00 00 00 12 9e 0a 00 00 00 00 00 ............ +3009 7.033502340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910546 26 22 2033621 0 0x00000016 1 2033621 0 196609 0 16 00 00 00 d5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3011 7.033751011 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588640 12 -1 695826 0 0xffffffff 0 -1 695826 0 ff ff ff ff 12 9e 0a 00 00 00 00 00 ............ +3013 7.038446426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588652 12 26 704336 0 0x0000001a 0 26 704336 0 1a 00 00 00 50 bf 0a 00 00 00 00 00 ....P....... +3015 7.038589239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588664 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 131530752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3017 7.038888454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910572 12 -1 704336 0 0xffffffff 0 -1 704336 0 ff ff ff ff 50 bf 0a 00 00 00 00 00 ....P....... +3019 7.039202213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910584 12 22 695827 0 0x00000016 0 22 695827 0 16 00 00 00 13 9e 0a 00 00 00 00 00 ............ +3021 7.039339542 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910596 22 18 2033623 0 0x00000012 1 2033623 0 196609 0 12 00 00 00 d7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3025 7.039567232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588690 12 -1 695827 0 0xffffffff 0 -1 695827 0 ff ff ff ff 13 9e 0a 00 00 00 00 00 ............ +3027 7.140641451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588702 12 26 704337 0 0x0000001a 0 26 704337 0 1a 00 00 00 51 bf 0a 00 00 00 00 00 ....Q....... +3029 7.140850067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588714 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 131661824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3031 7.141192436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910618 12 -1 704337 0 0xffffffff 0 -1 704337 0 ff ff ff ff 51 bf 0a 00 00 00 00 00 ....Q....... +3033 7.141672611 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910630 12 22 695828 0 0x00000016 0 22 695828 0 16 00 00 00 14 9e 0a 00 00 00 00 00 ............ +3035 7.141833544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910642 22 18 2033625 0 0x00000012 1 2033625 0 196609 0 12 00 00 00 d9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3037 7.142093658 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588740 12 -1 695828 0 0xffffffff 0 -1 695828 0 ff ff ff ff 14 9e 0a 00 00 00 00 00 ............ +3071 7.243328810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588752 12 26 704338 0 0x0000001a 0 26 704338 0 1a 00 00 00 52 bf 0a 00 00 00 00 00 ....R....... +3073 7.243500710 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588764 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 131792896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3075 7.243980169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910664 12 -1 704338 0 0xffffffff 0 -1 704338 0 ff ff ff ff 52 bf 0a 00 00 00 00 00 ....R....... +3077 7.244352818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910676 12 22 695829 0 0x00000016 0 22 695829 0 16 00 00 00 15 9e 0a 00 00 00 00 00 ............ +3079 7.244519711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910688 22 18 2033627 0 0x00000012 1 2033627 0 196609 0 12 00 00 00 db 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3081 7.244762897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588790 12 -1 695829 0 0xffffffff 0 -1 695829 0 ff ff ff ff 15 9e 0a 00 00 00 00 00 ............ +3083 7.334392786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588802 12 34 704339 0 0x00000022 0 34 704339 0 22 00 00 00 53 bf 0a 00 00 00 00 00 """...S......." +3084 7.334520102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910710 12 -2 79985 80002 0xfffffffe 0 -2 79985 80002 fe ff ff ff 71 38 01 00 82 38 01 00 ....q8...8.. +3088 7.334729671 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588814 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 5242880 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 50 00 02 00 00 00 00 00 62 06 0f c3 9d 01 00 00 .....!...o3.......P.......b....... +3089 7.334742308 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588848 12 67 704340 0 0x00000043 0 67 704340 0 43 00 00 00 54 bf 0a 00 00 00 00 00 C...T....... +3090 7.334752798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588860 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 50 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 6e 2b 03 9c ?.....3...|8...........P.......=B.....&......... +3092 7.335003138 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910722 12 -1 704339 0 0xffffffff 0 -1 704339 0 ff ff ff ff 53 bf 0a 00 00 00 00 00 ....S....... +3094 7.335197687 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910734 12 -1 704340 0 0xffffffff 0 -1 704340 0 ff ff ff ff 54 bf 0a 00 00 00 00 00 ....T....... +3096 7.336262703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910746 12 52 695830 0 0x00000034 0 52 695830 0 34 00 00 00 16 9e 0a 00 00 00 00 00 4........... +3098 7.336450815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910758 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 50 00 02 00 00 00 00 00 00 00 6c d6 7c 6e 4a 01 00 00 "0...Dk.................L."".([.....P.........l.|n" +3100 7.336740255 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588927 12 -1 695830 0 0xffffffff 0 -1 695830 0 ff ff ff ff 16 9e 0a 00 00 00 00 00 ............ +3102 7.337685585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588939 12 30 704341 0 0x0000001e 0 30 704341 0 1e 00 00 00 55 bf 0a 00 00 00 00 00 ....U....... +3104 7.337831020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588951 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 131923968 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 dd 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3108 7.338253021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910810 12 -1 704341 0 0xffffffff 0 -1 704341 0 ff ff ff ff 55 bf 0a 00 00 00 00 00 ....U....... +3112 7.338599682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910822 12 26 695831 0 0x0000001a 0 26 695831 0 1a 00 00 00 17 9e 0a 00 00 00 00 00 ............ +3114 7.338812590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910834 26 22 2033629 0 0x00000016 1 2033629 0 196609 0 16 00 00 00 dd 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3116 7.339080572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588981 12 -1 695831 0 0xffffffff 0 -1 695831 0 ff ff ff ff 17 9e 0a 00 00 00 00 00 ............ +3118 7.346533775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331588993 12 26 704342 0 0x0000001a 0 26 704342 0 1a 00 00 00 56 bf 0a 00 00 00 00 00 ....V....... +3120 7.346675158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589005 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 132055040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3122 7.346967459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910860 12 -1 704342 0 0xffffffff 0 -1 704342 0 ff ff ff ff 56 bf 0a 00 00 00 00 00 ....V....... +3124 7.347434998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910872 12 22 695832 0 0x00000016 0 22 695832 0 16 00 00 00 18 9e 0a 00 00 00 00 00 ............ +3126 7.347596407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910884 22 18 2033631 0 0x00000012 1 2033631 0 196609 0 12 00 00 00 df 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3128 7.347930670 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589031 12 -1 695832 0 0xffffffff 0 -1 695832 0 ff ff ff ff 18 9e 0a 00 00 00 00 00 ............ +3134 7.447771788 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589043 12 -2 80003 79985 0xfffffffe 0 -2 80003 79985 fe ff ff ff 83 38 01 00 71 38 01 00 .....8..q8.. +3138 7.450026035 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589055 12 26 704343 0 0x0000001a 0 26 704343 0 1a 00 00 00 57 bf 0a 00 00 00 00 00 ....W....... +3140 7.450188637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589067 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 132186112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3142 7.450617790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910906 12 -1 704343 0 0xffffffff 0 -1 704343 0 ff ff ff ff 57 bf 0a 00 00 00 00 00 ....W....... +3144 7.451246262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910918 12 22 695833 0 0x00000016 0 22 695833 0 16 00 00 00 19 9e 0a 00 00 00 00 00 ............ +3146 7.451518059 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910930 22 18 2033633 0 0x00000012 1 2033633 0 196609 0 12 00 00 00 e1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3148 7.451787233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589093 12 -1 695833 0 0xffffffff 0 -1 695833 0 ff ff ff ff 19 9e 0a 00 00 00 00 00 ............ +3156 7.554149389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589105 12 26 704344 0 0x0000001a 0 26 704344 0 1a 00 00 00 58 bf 0a 00 00 00 00 00 ....X....... +3158 7.554329395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589117 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 132317184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3160 7.554717779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910952 12 -1 704344 0 0xffffffff 0 -1 704344 0 ff ff ff ff 58 bf 0a 00 00 00 00 00 ....X....... +3162 7.555399179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910964 12 22 695834 0 0x00000016 0 22 695834 0 16 00 00 00 1a 9e 0a 00 00 00 00 00 ............ +3164 7.555558205 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910976 22 18 2033635 0 0x00000012 1 2033635 0 196609 0 12 00 00 00 e3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3166 7.555770397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589143 12 -1 695834 0 0xffffffff 0 -1 695834 0 ff ff ff ff 1a 9e 0a 00 00 00 00 00 ............ +3168 7.640393496 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589155 12 34 704345 0 0x00000022 0 34 704345 0 22 00 00 00 59 bf 0a 00 00 00 00 00 """...Y......." +3170 7.640597343 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589167 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 5308416 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 51 00 02 00 00 00 00 00 93 07 0f c3 9d 01 00 00 .....!...o3.......Q............... +3172 7.640684605 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589201 12 67 704346 0 0x00000043 0 67 704346 0 43 00 00 00 5a bf 0a 00 00 00 00 00 C...Z....... +3174 7.640767097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589213 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 51 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 c5 5e 15 9c ?.....3...|8...........Q.......=B.....&......... +3176 7.640914440 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375910998 12 -1 704345 0 0xffffffff 0 -1 704345 0 ff ff ff ff 59 bf 0a 00 00 00 00 00 ....Y....... +3178 7.641122341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911010 12 -1 704346 0 0xffffffff 0 -1 704346 0 ff ff ff ff 5a bf 0a 00 00 00 00 00 ....Z....... +3180 7.641990662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911022 12 52 695835 0 0x00000034 0 52 695835 0 34 00 00 00 1b 9e 0a 00 00 00 00 00 4........... +3182 7.642149925 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911034 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 51 00 02 00 00 00 00 00 00 00 c9 7e ab 6e 4a 01 00 00 "0...Dk.................L."".([.....Q..........~.n" +3184 7.642428160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589280 12 -1 695835 0 0xffffffff 0 -1 695835 0 ff ff ff ff 1b 9e 0a 00 00 00 00 00 ............ +3186 7.643167019 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589292 12 30 704347 0 0x0000001e 0 30 704347 0 1e 00 00 00 5b bf 0a 00 00 00 00 00 ....[....... +3188 7.643305540 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589304 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 132448256 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e5 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3190 7.643612623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911086 12 -1 704347 0 0xffffffff 0 -1 704347 0 ff ff ff ff 5b bf 0a 00 00 00 00 00 ....[....... +3192 7.644004107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911098 12 26 695836 0 0x0000001a 0 26 695836 0 1a 00 00 00 1c 9e 0a 00 00 00 00 00 ............ +3194 7.644204855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911110 26 22 2033637 0 0x00000016 1 2033637 0 196609 0 16 00 00 00 e5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3196 7.644477129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589334 12 -1 695836 0 0xffffffff 0 -1 695836 0 ff ff ff ff 1c 9e 0a 00 00 00 00 00 ............ +3198 7.657983780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589346 12 26 704348 0 0x0000001a 0 26 704348 0 1a 00 00 00 5c bf 0a 00 00 00 00 00 ....\....... +3200 7.658120632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589358 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 132579328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3202 7.658636093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911136 12 -1 704348 0 0xffffffff 0 -1 704348 0 ff ff ff ff 5c bf 0a 00 00 00 00 00 ....\....... +3204 7.659243345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911148 12 22 695837 0 0x00000016 0 22 695837 0 16 00 00 00 1d 9e 0a 00 00 00 00 00 ............ +3206 7.659416914 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911160 22 18 2033639 0 0x00000012 1 2033639 0 196609 0 12 00 00 00 e7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3208 7.659712315 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589384 12 -1 695837 0 0xffffffff 0 -1 695837 0 ff ff ff ff 1d 9e 0a 00 00 00 00 00 ............ +3214 7.760956287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589396 12 26 704349 0 0x0000001a 0 26 704349 0 1a 00 00 00 5d bf 0a 00 00 00 00 00 ....]....... +3216 7.761123419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589408 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 132710400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3218 7.761482716 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911182 12 -1 704349 0 0xffffffff 0 -1 704349 0 ff ff ff ff 5d bf 0a 00 00 00 00 00 ....]....... +3220 7.761930466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911194 12 22 695838 0 0x00000016 0 22 695838 0 16 00 00 00 1e 9e 0a 00 00 00 00 00 ............ +3222 7.762100458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911206 22 18 2033641 0 0x00000012 1 2033641 0 196609 0 12 00 00 00 e9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3224 7.762360811 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589434 12 -1 695838 0 0xffffffff 0 -1 695838 0 ff ff ff ff 1e 9e 0a 00 00 00 00 00 ............ +3227 7.835287094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911228 12 -2 79986 80003 0xfffffffe 0 -2 79986 80003 fe ff ff ff 72 38 01 00 83 38 01 00 ....r8...8.. +3234 7.864115000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589446 12 26 704350 0 0x0000001a 0 26 704350 0 1a 00 00 00 5e bf 0a 00 00 00 00 00 ....^....... +3236 7.864283800 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589458 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 132841472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3238 7.864628792 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911240 12 -1 704350 0 0xffffffff 0 -1 704350 0 ff ff ff ff 5e bf 0a 00 00 00 00 00 ....^....... +3240 7.865286112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911252 12 22 695839 0 0x00000016 0 22 695839 0 16 00 00 00 1f 9e 0a 00 00 00 00 00 ............ +3242 7.865484238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911264 22 18 2033643 0 0x00000012 1 2033643 0 196609 0 12 00 00 00 eb 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3244 7.865844250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589484 12 -1 695839 0 0xffffffff 0 -1 695839 0 ff ff ff ff 1f 9e 0a 00 00 00 00 00 ............ +3250 7.944316864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589496 12 101 704351 0 0x00000065 0 101 704351 0 65 00 00 00 5f bf 0a 00 00 00 00 00 e..._....... +3252 7.944526672 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589508 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 52 00 02 00 00 00 00 00 c3 08 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 52 00 02 00 00 00 00 .....!...o3.......R...............?.....3...|8.. +3254 7.944988966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911286 12 -1 704351 0 0xffffffff 0 -1 704351 0 ff ff ff ff 5f bf 0a 00 00 00 00 00 ...._....... +3256 7.945941687 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911298 12 52 695840 0 0x00000034 0 52 695840 0 34 00 00 00 20 9e 0a 00 00 00 00 00 4... ....... +3258 7.946103096 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911310 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 52 00 02 00 00 00 00 00 00 00 fb df d9 6e 4a 01 00 00 "0...Dk.................L."".([.....R............n" +3260 7.946372986 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589609 12 -1 695840 0 0xffffffff 0 -1 695840 0 ff ff ff ff 20 9e 0a 00 00 00 00 00 .... ....... +3262 7.947144985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589621 12 30 704352 0 0x0000001e 0 30 704352 0 1e 00 00 00 60 bf 0a 00 00 00 00 00 ....`....... +3264 7.947251320 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589633 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 132972544 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ed 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3266 7.947575331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911362 12 -1 704352 0 0xffffffff 0 -1 704352 0 ff ff ff ff 60 bf 0a 00 00 00 00 00 ....`....... +3268 7.948065042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911374 12 26 695841 0 0x0000001a 0 26 695841 0 1a 00 00 00 21 9e 0a 00 00 00 00 00 ....!....... +3270 7.948205948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911386 26 22 2033645 0 0x00000016 1 2033645 0 196609 0 16 00 00 00 ed 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3272 7.948395729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589663 12 -1 695841 0 0xffffffff 0 -1 695841 0 ff ff ff ff 21 9e 0a 00 00 00 00 00 ....!....... +3274 7.948743105 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589675 12 -2 80004 79986 0xfffffffe 0 -2 80004 79986 fe ff ff ff 84 38 01 00 72 38 01 00 .....8..r8.. +3278 7.966918468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589687 12 26 704353 0 0x0000001a 0 26 704353 0 1a 00 00 00 61 bf 0a 00 00 00 00 00 ....a....... +3280 7.967067480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589699 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 133103616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3282 7.967402697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911412 12 -1 704353 0 0xffffffff 0 -1 704353 0 ff ff ff ff 61 bf 0a 00 00 00 00 00 ....a....... +3284 7.967857122 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911424 12 22 695842 0 0x00000016 0 22 695842 0 16 00 00 00 22 9e 0a 00 00 00 00 00 "....""......." +3286 7.968046427 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911436 22 18 2033647 0 0x00000012 1 2033647 0 196609 0 12 00 00 00 ef 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3288 7.968323708 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589725 12 -1 695842 0 0xffffffff 0 -1 695842 0 ff ff ff ff 22 9e 0a 00 00 00 00 00 "....""......." +3296 8.070845366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589737 12 26 704354 0 0x0000001a 0 26 704354 0 1a 00 00 00 62 bf 0a 00 00 00 00 00 ....b....... +3298 8.071064711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589749 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 133234688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3300 8.071374416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911458 12 -1 704354 0 0xffffffff 0 -1 704354 0 ff ff ff ff 62 bf 0a 00 00 00 00 00 ....b....... +3302 8.071919918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911470 12 22 695843 0 0x00000016 0 22 695843 0 16 00 00 00 23 9e 0a 00 00 00 00 00 ....#....... +3304 8.072141409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911482 22 18 2033649 0 0x00000012 1 2033649 0 196609 0 12 00 00 00 f1 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3306 8.072419167 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589775 12 -1 695843 0 0xffffffff 0 -1 695843 0 ff ff ff ff 23 9e 0a 00 00 00 00 00 ....#....... +3308 8.173566580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589787 12 26 704355 0 0x0000001a 0 26 704355 0 1a 00 00 00 63 bf 0a 00 00 00 00 00 ....c....... +3310 8.173757792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589799 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 133365760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3312 8.174156189 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911504 12 -1 704355 0 0xffffffff 0 -1 704355 0 ff ff ff ff 63 bf 0a 00 00 00 00 00 ....c....... +3314 8.174662352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911516 12 22 695844 0 0x00000016 0 22 695844 0 16 00 00 00 24 9e 0a 00 00 00 00 00 ....$....... +3316 8.174830914 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911528 22 18 2033651 0 0x00000012 1 2033651 0 196609 0 12 00 00 00 f3 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3318 8.175186157 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589825 12 -1 695844 0 0xffffffff 0 -1 695844 0 ff ff ff ff 24 9e 0a 00 00 00 00 00 ....$....... +3322 8.248211384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589837 12 101 704356 0 0x00000065 0 101 704356 0 65 00 00 00 64 bf 0a 00 00 00 00 00 e...d....... +3324 8.248379946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589849 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 53 00 02 00 00 00 00 00 f3 09 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 53 00 02 00 00 00 00 .....!...o3.......S...............?.....3...|8.. +3326 8.248746872 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911550 12 -1 704356 0 0xffffffff 0 -1 704356 0 ff ff ff ff 64 bf 0a 00 00 00 00 00 ....d....... +3328 8.249778986 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911562 12 52 695845 0 0x00000034 0 52 695845 0 34 00 00 00 25 9e 0a 00 00 00 00 00 4...%....... +3330 8.249983311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911574 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 53 00 02 00 00 00 00 00 00 00 55 3a 08 6f 4a 01 00 00 "0...Dk.................L."".([.....S.........U:.o" +3332 8.250307798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589950 12 -1 695845 0 0xffffffff 0 -1 695845 0 ff ff ff ff 25 9e 0a 00 00 00 00 00 ....%....... +3334 8.251012564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589962 12 30 704357 0 0x0000001e 0 30 704357 0 1e 00 00 00 65 bf 0a 00 00 00 00 00 ....e....... +3336 8.251178026 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331589974 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 133496832 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f5 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3338 8.251450062 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911626 12 -1 704357 0 0xffffffff 0 -1 704357 0 ff ff ff ff 65 bf 0a 00 00 00 00 00 ....e....... +3340 8.251771212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911638 12 26 695846 0 0x0000001a 0 26 695846 0 1a 00 00 00 26 9e 0a 00 00 00 00 00 ....&....... +3342 8.251921415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911650 26 22 2033653 0 0x00000016 1 2033653 0 196609 0 16 00 00 00 f5 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3344 8.252209425 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590004 12 -1 695846 0 0xffffffff 0 -1 695846 0 ff ff ff ff 26 9e 0a 00 00 00 00 00 ....&....... +3346 8.277606249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590016 12 26 704358 0 0x0000001a 0 26 704358 0 1a 00 00 00 66 bf 0a 00 00 00 00 00 ....f....... +3348 8.277772427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590028 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 133627904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3350 8.278089046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911676 12 -1 704358 0 0xffffffff 0 -1 704358 0 ff ff ff ff 66 bf 0a 00 00 00 00 00 ....f....... +3352 8.278577328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911688 12 22 695847 0 0x00000016 0 22 695847 0 16 00 00 00 27 9e 0a 00 00 00 00 00 ....'....... +3354 8.278796196 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911700 22 18 2033655 0 0x00000012 1 2033655 0 196609 0 12 00 00 00 f7 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3356 8.279058218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590054 12 -1 695847 0 0xffffffff 0 -1 695847 0 ff ff ff ff 27 9e 0a 00 00 00 00 00 ....'....... +3359 8.337023497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911722 12 -2 79987 80004 0xfffffffe 0 -2 79987 80004 fe ff ff ff 73 38 01 00 84 38 01 00 ....s8...8.. +3366 8.380803585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590066 12 26 704359 0 0x0000001a 0 26 704359 0 1a 00 00 00 67 bf 0a 00 00 00 00 00 ....g....... +3368 8.380974770 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590078 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 133758976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3370 8.381362915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911734 12 -1 704359 0 0xffffffff 0 -1 704359 0 ff ff ff ff 67 bf 0a 00 00 00 00 00 ....g....... +3372 8.382211447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911746 12 22 695848 0 0x00000016 0 22 695848 0 16 00 00 00 28 9e 0a 00 00 00 00 00 ....(....... +3374 8.382374048 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911758 22 18 2033657 0 0x00000012 1 2033657 0 196609 0 12 00 00 00 f9 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3376 8.382652044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590104 12 -1 695848 0 0xffffffff 0 -1 695848 0 ff ff ff ff 28 9e 0a 00 00 00 00 00 ....(....... +3388 8.450296164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590116 12 -2 80005 79987 0xfffffffe 0 -2 80005 79987 fe ff ff ff 85 38 01 00 73 38 01 00 .....8..s8.. +3394 8.484314203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590128 12 26 704360 0 0x0000001a 0 26 704360 0 1a 00 00 00 68 bf 0a 00 00 00 00 00 ....h....... +3396 8.484472513 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590140 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 133890048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3398 8.484771013 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911780 12 -1 704360 0 0xffffffff 0 -1 704360 0 ff ff ff ff 68 bf 0a 00 00 00 00 00 ....h....... +3400 8.485359907 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911792 12 22 695849 0 0x00000016 0 22 695849 0 16 00 00 00 29 9e 0a 00 00 00 00 00 ....)....... +3402 8.485530615 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911804 22 18 2033659 0 0x00000012 1 2033659 0 196609 0 12 00 00 00 fb 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3404 8.485884666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590166 12 -1 695849 0 0xffffffff 0 -1 695849 0 ff ff ff ff 29 9e 0a 00 00 00 00 00 ....)....... +3410 8.551763296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590178 12 101 704361 0 0x00000065 0 101 704361 0 65 00 00 00 69 bf 0a 00 00 00 00 00 e...i....... +3412 8.551962137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590190 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 54 00 02 00 00 00 00 00 23 0b 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 54 00 02 00 00 00 00 .....!...o3.......T.......#.......?.....3...|8.. +3414 8.552245617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911826 12 -1 704361 0 0xffffffff 0 -1 704361 0 ff ff ff ff 69 bf 0a 00 00 00 00 00 ....i....... +3416 8.553390741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911838 12 52 695850 0 0x00000034 0 52 695850 0 34 00 00 00 2a 9e 0a 00 00 00 00 00 4...*....... +3418 8.553593397 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911850 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 54 00 02 00 00 00 00 00 00 00 d5 8f 36 6f 4a 01 00 00 "0...Dk.................L."".([.....T...........6o" +3420 8.553867579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590291 12 -1 695850 0 0xffffffff 0 -1 695850 0 ff ff ff ff 2a 9e 0a 00 00 00 00 00 ....*....... +3422 8.554656506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590303 12 30 704362 0 0x0000001e 0 30 704362 0 1e 00 00 00 6a bf 0a 00 00 00 00 00 ....j....... +3424 8.554797649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590315 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 134021120 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fd 07 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3426 8.555155993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911902 12 -1 704362 0 0xffffffff 0 -1 704362 0 ff ff ff ff 6a bf 0a 00 00 00 00 00 ....j....... +3428 8.557299614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911914 12 26 695851 0 0x0000001a 0 26 695851 0 1a 00 00 00 2b 9e 0a 00 00 00 00 00 ....+....... +3430 8.557448626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911926 26 22 2033661 0 0x00000016 1 2033661 0 196609 0 16 00 00 00 fd 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3432 8.557695150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590345 12 -1 695851 0 0xffffffff 0 -1 695851 0 ff ff ff ff 2b 9e 0a 00 00 00 00 00 ....+....... +3434 8.588428259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590357 12 26 704363 0 0x0000001a 0 26 704363 0 1a 00 00 00 6b bf 0a 00 00 00 00 00 ....k....... +3436 8.588583946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590369 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 134152192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 07 1f 00 00 00 00 00 ....T.c@.^1@.............. +3438 8.588821650 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911952 12 -1 704363 0 0xffffffff 0 -1 704363 0 ff ff ff ff 6b bf 0a 00 00 00 00 00 ....k....... +3440 8.589334726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911964 12 22 695852 0 0x00000016 0 22 695852 0 16 00 00 00 2c 9e 0a 00 00 00 00 00 ....,....... +3442 8.589497566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911976 22 18 2033663 0 0x00000012 1 2033663 0 196609 0 12 00 00 00 ff 07 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3444 8.589773893 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590395 12 -1 695852 0 0xffffffff 0 -1 695852 0 ff ff ff ff 2c 9e 0a 00 00 00 00 00 ....,....... +3446 8.692407846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590407 12 26 704364 0 0x0000001a 0 26 704364 0 1a 00 00 00 6c bf 0a 00 00 00 00 00 ....l....... +3448 8.692604780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590419 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 134283264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +3450 8.693102121 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375911998 12 -1 704364 0 0xffffffff 0 -1 704364 0 ff ff ff ff 6c bf 0a 00 00 00 00 00 ....l....... +3452 8.693507910 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912010 12 22 695853 0 0x00000016 0 22 695853 0 16 00 00 00 2d 9e 0a 00 00 00 00 00 ....-....... +3454 8.693678141 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912022 22 18 2033665 0 0x00000012 1 2033665 0 196609 0 12 00 00 00 01 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3456 8.694037914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590445 12 -1 695853 0 0xffffffff 0 -1 695853 0 ff ff ff ff 2d 9e 0a 00 00 00 00 00 ....-....... +3536 8.796555996 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590457 12 26 704365 0 0x0000001a 0 26 704365 0 1a 00 00 00 6d bf 0a 00 00 00 00 00 ....m....... +3538 8.796776533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590469 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 134414336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +3540 8.797192812 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912044 12 -1 704365 0 0xffffffff 0 -1 704365 0 ff ff ff ff 6d bf 0a 00 00 00 00 00 ....m....... +3542 8.797617197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912056 12 22 695854 0 0x00000016 0 22 695854 0 16 00 00 00 2e 9e 0a 00 00 00 00 00 ............ +3544 8.797777176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912068 22 18 2033667 0 0x00000012 1 2033667 0 196609 0 12 00 00 00 03 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3546 8.798025131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590495 12 -1 695854 0 0xffffffff 0 -1 695854 0 ff ff ff ff 2e 9e 0a 00 00 00 00 00 ............ +3549 8.837540150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912090 12 -2 79988 80005 0xfffffffe 0 -2 79988 80005 fe ff ff ff 74 38 01 00 85 38 01 00 ....t8...8.. +3692 8.856661081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590507 12 34 704366 0 0x00000022 0 34 704366 0 22 00 00 00 6e bf 0a 00 00 00 00 00 """...n......." +3694 8.856816769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590519 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 5570560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 55 00 02 00 00 00 00 00 54 0c 0f c3 9d 01 00 00 .....!...o3.......U.......T....... +3696 8.856950045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590553 12 67 704367 0 0x00000043 0 67 704367 0 43 00 00 00 6f bf 0a 00 00 00 00 00 C...o....... +3698 8.857032776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590565 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 55 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 0c e7 5d 9c ?.....3...|8...........U.......=B.....&......... +3700 8.857138872 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912102 12 -1 704366 0 0xffffffff 0 -1 704366 0 ff ff ff ff 6e bf 0a 00 00 00 00 00 ....n....... +3702 8.857368231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912114 12 -1 704367 0 0xffffffff 0 -1 704367 0 ff ff ff ff 6f bf 0a 00 00 00 00 00 ....o....... +3704 8.859470606 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912126 12 52 695855 0 0x00000034 0 52 695855 0 34 00 00 00 2f 9e 0a 00 00 00 00 00 4.../....... +3706 8.859685421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912138 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 55 00 02 00 00 00 00 00 00 00 9b 42 65 6f 4a 01 00 00 "0...Dk.................L."".([.....U..........Beo" +3708 8.860022783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590632 12 -1 695855 0 0xffffffff 0 -1 695855 0 ff ff ff ff 2f 9e 0a 00 00 00 00 00 ..../....... +3710 8.860781908 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590644 12 30 704368 0 0x0000001e 0 30 704368 0 1e 00 00 00 70 bf 0a 00 00 00 00 00 ....p....... +3712 8.860918045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590656 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 134545408 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3714 8.861212015 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912190 12 -1 704368 0 0xffffffff 0 -1 704368 0 ff ff ff ff 70 bf 0a 00 00 00 00 00 ....p....... +3716 8.861645699 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912202 12 26 695856 0 0x0000001a 0 26 695856 0 1a 00 00 00 30 9e 0a 00 00 00 00 00 ....0....... +3718 8.861791849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912214 26 22 2033669 0 0x00000016 1 2033669 0 196609 0 16 00 00 00 05 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3720 8.862076759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590686 12 -1 695856 0 0xffffffff 0 -1 695856 0 ff ff ff ff 30 9e 0a 00 00 00 00 00 ....0....... +3727 8.899022102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590698 12 26 704369 0 0x0000001a 0 26 704369 0 1a 00 00 00 71 bf 0a 00 00 00 00 00 ....q....... +3729 8.899192572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590710 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 134676480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +3731 8.899646521 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912240 12 -1 704369 0 0xffffffff 0 -1 704369 0 ff ff ff ff 71 bf 0a 00 00 00 00 00 ....q....... +3733 8.900144815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912252 12 22 695857 0 0x00000016 0 22 695857 0 16 00 00 00 31 9e 0a 00 00 00 00 00 ....1....... +3735 8.900325537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912264 22 18 2033671 0 0x00000012 1 2033671 0 196609 0 12 00 00 00 07 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3737 8.900603771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590736 12 -1 695857 0 0xffffffff 0 -1 695857 0 ff ff ff ff 31 9e 0a 00 00 00 00 00 ....1....... +3919 8.951164722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590748 12 -2 80006 79988 0xfffffffe 0 -2 80006 79988 fe ff ff ff 86 38 01 00 74 38 01 00 .....8..t8.. +4017 9.002161980 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590760 12 26 704370 0 0x0000001a 0 26 704370 0 1a 00 00 00 72 bf 0a 00 00 00 00 00 ....r....... +4019 9.002363682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590772 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 134807552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4021 9.002747774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912286 12 -1 704370 0 0xffffffff 0 -1 704370 0 ff ff ff ff 72 bf 0a 00 00 00 00 00 ....r....... +4023 9.003312826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912298 12 22 695858 0 0x00000016 0 22 695858 0 16 00 00 00 32 9e 0a 00 00 00 00 00 ....2....... +4025 9.003556967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912310 22 18 2033673 0 0x00000012 1 2033673 0 196609 0 12 00 00 00 09 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4027 9.003955126 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590798 12 -1 695858 0 0xffffffff 0 -1 695858 0 ff ff ff ff 32 9e 0a 00 00 00 00 00 ....2....... +4072 9.106504440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590810 12 26 704371 0 0x0000001a 0 26 704371 0 1a 00 00 00 73 bf 0a 00 00 00 00 00 ....s....... +4074 9.106665373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590822 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 134938624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4076 9.106985807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912332 12 -1 704371 0 0xffffffff 0 -1 704371 0 ff ff ff ff 73 bf 0a 00 00 00 00 00 ....s....... +4078 9.109556913 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912344 12 22 695859 0 0x00000016 0 22 695859 0 16 00 00 00 33 9e 0a 00 00 00 00 00 ....3....... +4080 9.109713793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912356 22 18 2033675 0 0x00000012 1 2033675 0 196609 0 12 00 00 00 0b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4082 9.109984875 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590848 12 -1 695859 0 0xffffffff 0 -1 695859 0 ff ff ff ff 33 9e 0a 00 00 00 00 00 ....3....... +4087 9.162879944 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590860 12 101 704372 0 0x00000065 0 101 704372 0 65 00 00 00 74 bf 0a 00 00 00 00 00 e...t....... +4089 9.163039446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590872 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 56 00 02 00 00 00 00 00 86 0d 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 56 00 02 00 00 00 00 .....!...o3.......V...............?.....3...|8.. +4091 9.163404703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912378 12 -1 704372 0 0xffffffff 0 -1 704372 0 ff ff ff ff 74 bf 0a 00 00 00 00 00 ....t....... +4093 9.164061308 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912390 12 52 695860 0 0x00000034 0 52 695860 0 34 00 00 00 34 9e 0a 00 00 00 00 00 4...4....... +4095 9.164228916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912402 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 56 00 02 00 00 00 00 00 00 00 4b c1 93 6f 4a 01 00 00 "0...Dk.................L."".([.....V.........K..o" +4097 9.164481878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590973 12 -1 695860 0 0xffffffff 0 -1 695860 0 ff ff ff ff 34 9e 0a 00 00 00 00 00 ....4....... +4099 9.165255070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590985 12 30 704373 0 0x0000001e 0 30 704373 0 1e 00 00 00 75 bf 0a 00 00 00 00 00 ....u....... +4101 9.165424109 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331590997 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 135069696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4103 9.165715694 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912454 12 -1 704373 0 0xffffffff 0 -1 704373 0 ff ff ff ff 75 bf 0a 00 00 00 00 00 ....u....... +4105 9.166069508 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912466 12 26 695861 0 0x0000001a 0 26 695861 0 1a 00 00 00 35 9e 0a 00 00 00 00 00 ....5....... +4107 9.166210413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912478 26 22 2033677 0 0x00000016 1 2033677 0 196609 0 16 00 00 00 0d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4109 9.166546822 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591027 12 -1 695861 0 0xffffffff 0 -1 695861 0 ff ff ff ff 35 9e 0a 00 00 00 00 00 ....5....... +4121 9.211126089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591039 12 26 704374 0 0x0000001a 0 26 704374 0 1a 00 00 00 76 bf 0a 00 00 00 00 00 ....v....... +4123 9.211293697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591051 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 135200768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4125 9.211629152 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912504 12 -1 704374 0 0xffffffff 0 -1 704374 0 ff ff ff ff 76 bf 0a 00 00 00 00 00 ....v....... +4127 9.212205172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912516 12 22 695862 0 0x00000016 0 22 695862 0 16 00 00 00 36 9e 0a 00 00 00 00 00 ....6....... +4129 9.212436438 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912528 22 18 2033679 0 0x00000012 1 2033679 0 196609 0 12 00 00 00 0f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4131 9.212729931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591077 12 -1 695862 0 0xffffffff 0 -1 695862 0 ff ff ff ff 36 9e 0a 00 00 00 00 00 ....6....... +4138 9.314085484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591089 12 26 704375 0 0x0000001a 0 26 704375 0 1a 00 00 00 77 bf 0a 00 00 00 00 00 ....w....... +4140 9.314257622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591101 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 135331840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4142 9.314630508 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912550 12 -1 704375 0 0xffffffff 0 -1 704375 0 ff ff ff ff 77 bf 0a 00 00 00 00 00 ....w....... +4144 9.315021276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912562 12 22 695863 0 0x00000016 0 22 695863 0 16 00 00 00 37 9e 0a 00 00 00 00 00 ....7....... +4146 9.315183163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912574 22 18 2033681 0 0x00000012 1 2033681 0 196609 0 12 00 00 00 11 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4148 9.315559626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591127 12 -1 695863 0 0xffffffff 0 -1 695863 0 ff ff ff ff 37 9e 0a 00 00 00 00 00 ....7....... +4150 9.338674545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912596 12 -2 79989 80006 0xfffffffe 0 -2 79989 80006 fe ff ff ff 75 38 01 00 86 38 01 00 ....u8...8.. +4159 9.417116880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591139 12 26 704376 0 0x0000001a 0 26 704376 0 1a 00 00 00 78 bf 0a 00 00 00 00 00 ....x....... +4161 9.417360306 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591151 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 135462912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4163 9.417620659 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912608 12 -1 704376 0 0xffffffff 0 -1 704376 0 ff ff ff ff 78 bf 0a 00 00 00 00 00 ....x....... +4165 9.418052912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912620 12 22 695864 0 0x00000016 0 22 695864 0 16 00 00 00 38 9e 0a 00 00 00 00 00 ....8....... +4167 9.418212175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912632 22 18 2033683 0 0x00000012 1 2033683 0 196609 0 12 00 00 00 13 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4169 9.418447018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591177 12 -1 695864 0 0xffffffff 0 -1 695864 0 ff ff ff ff 38 9e 0a 00 00 00 00 00 ....8....... +4176 9.451747894 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591189 12 -2 80007 79989 0xfffffffe 0 -2 80007 79989 fe ff ff ff 87 38 01 00 75 38 01 00 .....8..u8.. +4180 9.467999220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591201 12 34 704377 0 0x00000022 0 34 704377 0 22 00 00 00 79 bf 0a 00 00 00 00 00 """...y......." +4182 9.468160152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591213 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 5701632 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 00 02 00 00 00 00 00 b8 0e 0f c3 9d 01 00 00 .....!...o3.......W............... +4184 9.468314409 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591247 12 67 704378 0 0x00000043 0 67 704378 0 43 00 00 00 7a bf 0a 00 00 00 00 00 C...z....... +4186 9.468419552 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591259 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 57 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e0 f5 58 82 9c ?.....3...|8...........W.......=B.....&......... +4188 9.468595743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912654 12 -1 704377 0 0xffffffff 0 -1 704377 0 ff ff ff ff 79 bf 0a 00 00 00 00 00 ....y....... +4190 9.468905926 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912666 12 -1 704378 0 0xffffffff 0 -1 704378 0 ff ff ff ff 7a bf 0a 00 00 00 00 00 ....z....... +4192 9.469676733 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912678 12 52 695865 0 0x00000034 0 52 695865 0 34 00 00 00 39 9e 0a 00 00 00 00 00 4...9....... +4194 9.469921112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912690 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 57 00 02 00 00 00 00 00 00 00 f3 60 c2 6f 4a 01 00 00 "0...Dk.................L."".([.....W..........`.o" +4196 9.470180988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591326 12 -1 695865 0 0xffffffff 0 -1 695865 0 ff ff ff ff 39 9e 0a 00 00 00 00 00 ....9....... +4198 9.470961094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591338 12 30 704379 0 0x0000001e 0 30 704379 0 1e 00 00 00 7b bf 0a 00 00 00 00 00 ....{....... +4200 9.471101761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591350 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 135593984 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4202 9.471402407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912742 12 -1 704379 0 0xffffffff 0 -1 704379 0 ff ff ff ff 7b bf 0a 00 00 00 00 00 ....{....... +4204 9.471727133 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912754 12 26 695866 0 0x0000001a 0 26 695866 0 1a 00 00 00 3a 9e 0a 00 00 00 00 00 ....:....... +4206 9.471993685 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912766 26 22 2033685 0 0x00000016 1 2033685 0 196609 0 16 00 00 00 15 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4208 9.472243309 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591380 12 -1 695866 0 0xffffffff 0 -1 695866 0 ff ff ff ff 3a 9e 0a 00 00 00 00 00 ....:....... +4212 9.519444227 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591392 12 26 704380 0 0x0000001a 0 26 704380 0 1a 00 00 00 7c bf 0a 00 00 00 00 00 ....|....... +4214 9.519612074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591404 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 135725056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4216 9.520007849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912792 12 -1 704380 0 0xffffffff 0 -1 704380 0 ff ff ff ff 7c bf 0a 00 00 00 00 00 ....|....... +4218 9.520450830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912804 12 22 695867 0 0x00000016 0 22 695867 0 16 00 00 00 3b 9e 0a 00 00 00 00 00 ....;....... +4220 9.520618916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912816 22 18 2033687 0 0x00000012 1 2033687 0 196609 0 12 00 00 00 17 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4222 9.521106482 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591430 12 -1 695867 0 0xffffffff 0 -1 695867 0 ff ff ff ff 3b 9e 0a 00 00 00 00 00 ....;....... +4229 9.623486519 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591442 12 26 704381 0 0x0000001a 0 26 704381 0 1a 00 00 00 7d bf 0a 00 00 00 00 00 ....}....... +4231 9.623663902 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591454 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 135856128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4233 9.624082565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912838 12 -1 704381 0 0xffffffff 0 -1 704381 0 ff ff ff ff 7d bf 0a 00 00 00 00 00 ....}....... +4235 9.624580145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912850 12 22 695868 0 0x00000016 0 22 695868 0 16 00 00 00 3c 9e 0a 00 00 00 00 00 ....<....... +4237 9.624750853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912862 22 18 2033689 0 0x00000012 1 2033689 0 196609 0 12 00 00 00 19 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4239 9.625081778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591480 12 -1 695868 0 0xffffffff 0 -1 695868 0 ff ff ff ff 3c 9e 0a 00 00 00 00 00 ....<....... +4252 9.726535320 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591492 12 26 704382 0 0x0000001a 0 26 704382 0 1a 00 00 00 7e bf 0a 00 00 00 00 00 ....~....... +4254 9.726763010 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591504 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 135987200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4256 9.727100849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912884 12 -1 704382 0 0xffffffff 0 -1 704382 0 ff ff ff ff 7e bf 0a 00 00 00 00 00 ....~....... +4258 9.727578163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912896 12 22 695869 0 0x00000016 0 22 695869 0 16 00 00 00 3d 9e 0a 00 00 00 00 00 ....=....... +4260 9.727725506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912908 22 18 2033691 0 0x00000012 1 2033691 0 196609 0 12 00 00 00 1b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4262 9.728026628 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591530 12 -1 695869 0 0xffffffff 0 -1 695869 0 ff ff ff ff 3d 9e 0a 00 00 00 00 00 ....=....... +4266 9.772814751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591542 12 101 704383 0 0x00000065 0 101 704383 0 65 00 00 00 7f bf 0a 00 00 00 00 00 e........... +4268 9.772975445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591554 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 00 02 00 00 00 00 00 e8 0f 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 58 00 02 00 00 00 00 .....!...o3.......X...............?.....3...|8.. +4270 9.773321152 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912930 12 -1 704383 0 0xffffffff 0 -1 704383 0 ff ff ff ff 7f bf 0a 00 00 00 00 00 ............ +4272 9.774517775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912942 12 52 695870 0 0x00000034 0 52 695870 0 34 00 00 00 3e 9e 0a 00 00 00 00 00 4...>....... +4274 9.774676323 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375912954 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 58 00 02 00 00 00 00 00 00 00 e7 e4 f0 6f 4a 01 00 00 "0...Dk.................L."".([.....X............o" +4276 9.774945974 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591655 12 -1 695870 0 0xffffffff 0 -1 695870 0 ff ff ff ff 3e 9e 0a 00 00 00 00 00 ....>....... +4278 9.775739670 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591667 12 30 704384 0 0x0000001e 0 30 704384 0 1e 00 00 00 80 bf 0a 00 00 00 00 00 ............ +4280 9.775918245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591679 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 136118272 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4282 9.776125908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913006 12 -1 704384 0 0xffffffff 0 -1 704384 0 ff ff ff ff 80 bf 0a 00 00 00 00 00 ............ +4284 9.776463032 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913018 12 26 695871 0 0x0000001a 0 26 695871 0 1a 00 00 00 3f 9e 0a 00 00 00 00 00 ....?....... +4286 9.776602983 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913030 26 22 2033693 0 0x00000016 1 2033693 0 196609 0 16 00 00 00 1d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4288 9.776862621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591709 12 -1 695871 0 0xffffffff 0 -1 695871 0 ff ff ff ff 3f 9e 0a 00 00 00 00 00 ....?....... +4291 9.829723597 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591721 12 26 704385 0 0x0000001a 0 26 704385 0 1a 00 00 00 81 bf 0a 00 00 00 00 00 ............ +4293 9.829895020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591733 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 136249344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +4295 9.830211639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913056 12 -1 704385 0 0xffffffff 0 -1 704385 0 ff ff ff ff 81 bf 0a 00 00 00 00 00 ............ +4297 9.830658913 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913068 12 22 695872 0 0x00000016 0 22 695872 0 16 00 00 00 40 9e 0a 00 00 00 00 00 ....@....... +4299 9.830833197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913080 22 18 2033695 0 0x00000012 1 2033695 0 196609 0 12 00 00 00 1f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4301 9.831099033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591759 12 -1 695872 0 0xffffffff 0 -1 695872 0 ff ff ff ff 40 9e 0a 00 00 00 00 00 ....@....... +4304 9.840055943 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913102 12 -2 79990 80007 0xfffffffe 0 -2 79990 80007 fe ff ff ff 76 38 01 00 87 38 01 00 ....v8...8.. +4316 9.933583021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591771 12 26 704386 0 0x0000001a 0 26 704386 0 1a 00 00 00 82 bf 0a 00 00 00 00 00 ............ +4318 9.933765173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591783 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 136380416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 08 1f 00 00 00 00 00 ....T.c@.^1@......!....... +4320 9.934069395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913114 12 -1 704386 0 0xffffffff 0 -1 704386 0 ff ff ff ff 82 bf 0a 00 00 00 00 00 ............ +4322 9.934668303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913126 12 22 695873 0 0x00000016 0 22 695873 0 16 00 00 00 41 9e 0a 00 00 00 00 00 ....A....... +4324 9.934873819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913138 22 18 2033697 0 0x00000012 1 2033697 0 196609 0 12 00 00 00 21 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +4326 9.935166597 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591809 12 -1 695873 0 0xffffffff 0 -1 695873 0 ff ff ff ff 41 9e 0a 00 00 00 00 00 ....A....... +4328 9.952883482 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591821 12 -2 80008 79990 0xfffffffe 0 -2 80008 79990 fe ff ff ff 88 38 01 00 76 38 01 00 .....8..v8.. +4337 10.036181211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591833 12 26 704387 0 0x0000001a 0 26 704387 0 1a 00 00 00 83 bf 0a 00 00 00 00 00 ............ +4339 10.036354303 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591845 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 136511488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 08 1f 00 00 00 00 00 ....T.c@.^1@......#....... +4341 10.036740541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913160 12 -1 704387 0 0xffffffff 0 -1 704387 0 ff ff ff ff 83 bf 0a 00 00 00 00 00 ............ +4343 10.037563801 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913172 12 22 695874 0 0x00000016 0 22 695874 0 16 00 00 00 42 9e 0a 00 00 00 00 00 ....B....... +4345 10.037712336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913184 22 18 2033699 0 0x00000012 1 2033699 0 196609 0 12 00 00 00 23 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +4347 10.038035870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591871 12 -1 695874 0 0xffffffff 0 -1 695874 0 ff ff ff ff 42 9e 0a 00 00 00 00 00 ....B....... +4351 10.077334642 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591883 12 34 704388 0 0x00000022 0 34 704388 0 22 00 00 00 84 bf 0a 00 00 00 00 00 """..........." +4353 10.077542543 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591895 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 5832704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 00 02 00 00 00 00 00 18 11 0f c3 9d 01 00 00 .....!...o3.......Y............... +4355 10.077716827 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591929 12 67 704389 0 0x00000043 0 67 704389 0 43 00 00 00 85 bf 0a 00 00 00 00 00 C........... +4357 10.077802420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331591941 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 59 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 16 a2 a6 9c ?.....3...|8...........Y.......=B.....&......... +4359 10.077928543 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913206 12 -1 704388 0 0xffffffff 0 -1 704388 0 ff ff ff ff 84 bf 0a 00 00 00 00 00 ............ +4361 10.078096390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913218 12 -1 704389 0 0xffffffff 0 -1 704389 0 ff ff ff ff 85 bf 0a 00 00 00 00 00 ............ +4363 10.078829288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913230 12 52 695875 0 0x00000034 0 52 695875 0 34 00 00 00 43 9e 0a 00 00 00 00 00 4...C....... +4365 10.079032898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913242 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 59 00 02 00 00 00 00 00 00 00 2c 4e 1f 70 4a 01 00 00 "0...Dk.................L."".([.....Y.........,N.p" +4367 10.079243422 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592008 12 -1 695875 0 0xffffffff 0 -1 695875 0 ff ff ff ff 43 9e 0a 00 00 00 00 00 ....C....... +4369 10.079989433 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592020 12 30 704390 0 0x0000001e 0 30 704390 0 1e 00 00 00 86 bf 0a 00 00 00 00 00 ............ +4371 10.080127716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592032 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 136642560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +4373 10.080439329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913294 12 -1 704390 0 0xffffffff 0 -1 704390 0 ff ff ff ff 86 bf 0a 00 00 00 00 00 ............ +4375 10.081205368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913306 12 26 695876 0 0x0000001a 0 26 695876 0 1a 00 00 00 44 9e 0a 00 00 00 00 00 ....D....... +4377 10.081400871 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913318 26 22 2033701 0 0x00000016 1 2033701 0 196609 0 16 00 00 00 25 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +4379 10.081766844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592062 12 -1 695876 0 0xffffffff 0 -1 695876 0 ff ff ff ff 44 9e 0a 00 00 00 00 00 ....D....... +4382 10.139042377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592074 12 26 704391 0 0x0000001a 0 26 704391 0 1a 00 00 00 87 bf 0a 00 00 00 00 00 ............ +4384 10.139205933 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592086 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 136773632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 08 1f 00 00 00 00 00 ....T.c@.^1@......'....... +4386 10.139474869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913344 12 -1 704391 0 0xffffffff 0 -1 704391 0 ff ff ff ff 87 bf 0a 00 00 00 00 00 ............ +4388 10.139964104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913356 12 22 695877 0 0x00000016 0 22 695877 0 16 00 00 00 45 9e 0a 00 00 00 00 00 ....E....... +4390 10.140136957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913368 22 18 2033703 0 0x00000012 1 2033703 0 196609 0 12 00 00 00 27 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +4392 10.140405655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592112 12 -1 695877 0 0xffffffff 0 -1 695877 0 ff ff ff ff 45 9e 0a 00 00 00 00 00 ....E....... +4424 10.241214514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592124 12 26 704392 0 0x0000001a 0 26 704392 0 1a 00 00 00 88 bf 0a 00 00 00 00 00 ............ +4426 10.241380215 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592136 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 136904704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 08 1f 00 00 00 00 00 ....T.c@.^1@......)....... +4428 10.241802454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913390 12 -1 704392 0 0xffffffff 0 -1 704392 0 ff ff ff ff 88 bf 0a 00 00 00 00 00 ............ +4431 10.242300749 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913402 12 22 695878 0 0x00000016 0 22 695878 0 16 00 00 00 46 9e 0a 00 00 00 00 00 ....F....... +4434 10.242469311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913414 22 18 2033705 0 0x00000012 1 2033705 0 196609 0 12 00 00 00 29 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +4436 10.242892742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592162 12 -1 695878 0 0xffffffff 0 -1 695878 0 ff ff ff ff 46 9e 0a 00 00 00 00 00 ....F....... +4470 10.341148853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913436 12 -2 79991 80008 0xfffffffe 0 -2 79991 80008 fe ff ff ff 77 38 01 00 88 38 01 00 ....w8...8.. +4478 10.345373631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592174 12 26 704393 0 0x0000001a 0 26 704393 0 1a 00 00 00 89 bf 0a 00 00 00 00 00 ............ +4480 10.345547676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592186 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 137035776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 08 1f 00 00 00 00 00 ....T.c@.^1@......+....... +4482 10.345839739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913448 12 -1 704393 0 0xffffffff 0 -1 704393 0 ff ff ff ff 89 bf 0a 00 00 00 00 00 ............ +4484 10.346310854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913460 12 22 695879 0 0x00000016 0 22 695879 0 16 00 00 00 47 9e 0a 00 00 00 00 00 ....G....... +4486 10.346584082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913472 22 18 2033707 0 0x00000012 1 2033707 0 196609 0 12 00 00 00 2b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +4488 10.347003937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592212 12 -1 695879 0 0xffffffff 0 -1 695879 0 ff ff ff ff 47 9e 0a 00 00 00 00 00 ....G....... +4490 10.381730080 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592224 12 101 704394 0 0x00000065 0 101 704394 0 65 00 00 00 8a bf 0a 00 00 00 00 00 e........... +4492 10.381933212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592236 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5a 00 02 00 00 00 00 00 48 12 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5a 00 02 00 00 00 00 .....!...o3.......Z.......H.......?.....3...|8.. +4494 10.382269621 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913494 12 -1 704394 0 0xffffffff 0 -1 704394 0 ff ff ff ff 8a bf 0a 00 00 00 00 00 ............ +4496 10.383301497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913506 12 52 695880 0 0x00000034 0 52 695880 0 34 00 00 00 48 9e 0a 00 00 00 00 00 4...H....... +4498 10.383494854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913518 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5a 00 02 00 00 00 00 00 00 00 fb c6 4d 70 4a 01 00 00 "0...Dk.................L."".([.....Z...........Mp" +4500 10.383889914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592337 12 -1 695880 0 0xffffffff 0 -1 695880 0 ff ff ff ff 48 9e 0a 00 00 00 00 00 ....H....... +4502 10.384693384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592349 12 30 704395 0 0x0000001e 0 30 704395 0 1e 00 00 00 8b bf 0a 00 00 00 00 00 ............ +4504 10.384852648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592361 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 137166848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +4506 10.385149240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913570 12 -1 704395 0 0xffffffff 0 -1 704395 0 ff ff ff ff 8b bf 0a 00 00 00 00 00 ............ +4508 10.385528803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913582 12 26 695881 0 0x0000001a 0 26 695881 0 1a 00 00 00 49 9e 0a 00 00 00 00 00 ....I....... +4510 10.385724306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913594 26 22 2033709 0 0x00000016 1 2033709 0 196609 0 16 00 00 00 2d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +4512 10.385987520 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592391 12 -1 695881 0 0xffffffff 0 -1 695881 0 ff ff ff ff 49 9e 0a 00 00 00 00 00 ....I....... +4518 10.448378563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592403 12 26 704396 0 0x0000001a 0 26 704396 0 1a 00 00 00 8c bf 0a 00 00 00 00 00 ............ +4520 10.448545456 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592415 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 137297920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 08 1f 00 00 00 00 00 ....T.c@.^1@....../....... +4522 10.448845625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913620 12 -1 704396 0 0xffffffff 0 -1 704396 0 ff ff ff ff 8c bf 0a 00 00 00 00 00 ............ +4524 10.449402571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913632 12 22 695882 0 0x00000016 0 22 695882 0 16 00 00 00 4a 9e 0a 00 00 00 00 00 ....J....... +4526 10.449552774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913644 22 18 2033711 0 0x00000012 1 2033711 0 196609 0 12 00 00 00 2f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +4528 10.449829340 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592441 12 -1 695882 0 0xffffffff 0 -1 695882 0 ff ff ff ff 4a 9e 0a 00 00 00 00 00 ....J....... +4530 10.453342676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592453 12 -2 80009 79991 0xfffffffe 0 -2 80009 79991 fe ff ff ff 89 38 01 00 77 38 01 00 .....8..w8.. +4540 10.551538944 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592465 12 26 704397 0 0x0000001a 0 26 704397 0 1a 00 00 00 8d bf 0a 00 00 00 00 00 ............ +4542 10.551708221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592477 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 137428992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 08 1f 00 00 00 00 00 ....T.c@.^1@......1....... +4544 10.552097321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913666 12 -1 704397 0 0xffffffff 0 -1 704397 0 ff ff ff ff 8d bf 0a 00 00 00 00 00 ............ +4546 10.552656889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913678 12 22 695883 0 0x00000016 0 22 695883 0 16 00 00 00 4b 9e 0a 00 00 00 00 00 ....K....... +4548 10.552947998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913690 22 18 2033713 0 0x00000012 1 2033713 0 196609 0 12 00 00 00 31 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +4550 10.553274870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592503 12 -1 695883 0 0xffffffff 0 -1 695883 0 ff ff ff ff 4b 9e 0a 00 00 00 00 00 ....K....... +4552 10.654239416 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592515 12 26 704398 0 0x0000001a 0 26 704398 0 1a 00 00 00 8e bf 0a 00 00 00 00 00 ............ +4554 10.654464722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592527 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 137560064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 08 1f 00 00 00 00 00 ....T.c@.^1@......3....... +4556 10.654893160 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913712 12 -1 704398 0 0xffffffff 0 -1 704398 0 ff ff ff ff 8e bf 0a 00 00 00 00 00 ............ +4558 10.655378580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913724 12 22 695884 0 0x00000016 0 22 695884 0 16 00 00 00 4c 9e 0a 00 00 00 00 00 ....L....... +4560 10.655596018 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913736 22 18 2033715 0 0x00000012 1 2033715 0 196609 0 12 00 00 00 33 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +4562 10.655877113 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592553 12 -1 695884 0 0xffffffff 0 -1 695884 0 ff ff ff ff 4c 9e 0a 00 00 00 00 00 ....L....... +4564 10.686573029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592565 12 101 704399 0 0x00000065 0 101 704399 0 65 00 00 00 8f bf 0a 00 00 00 00 00 e........... +4566 10.686779261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592577 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5b 00 02 00 00 00 00 00 79 13 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5b 00 02 00 00 00 00 .....!...o3.......[.......y.......?.....3...|8.. +4568 10.687134027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913758 12 -1 704399 0 0xffffffff 0 -1 704399 0 ff ff ff ff 8f bf 0a 00 00 00 00 00 ............ +4570 10.687984705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913770 12 52 695885 0 0x00000034 0 52 695885 0 34 00 00 00 4d 9e 0a 00 00 00 00 00 4...M....... +4572 10.688142538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913782 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5b 00 02 00 00 00 00 00 00 00 28 45 7c 70 4a 01 00 00 "0...Dk.................L."".([.....[.........(E|p" +4574 10.688401222 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592678 12 -1 695885 0 0xffffffff 0 -1 695885 0 ff ff ff ff 4d 9e 0a 00 00 00 00 00 ....M....... +4576 10.689481497 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592690 12 30 704400 0 0x0000001e 0 30 704400 0 1e 00 00 00 90 bf 0a 00 00 00 00 00 ............ +4578 10.689611673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592702 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 137691136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +4580 10.689998388 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913834 12 -1 704400 0 0xffffffff 0 -1 704400 0 ff ff ff ff 90 bf 0a 00 00 00 00 00 ............ +4582 10.690505505 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913846 12 26 695886 0 0x0000001a 0 26 695886 0 1a 00 00 00 4e 9e 0a 00 00 00 00 00 ....N....... +4584 10.690783501 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913858 26 22 2033717 0 0x00000016 1 2033717 0 196609 0 16 00 00 00 35 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +4586 10.691077471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592732 12 -1 695886 0 0xffffffff 0 -1 695886 0 ff ff ff ff 4e 9e 0a 00 00 00 00 00 ....N....... +4590 10.758102655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592744 12 26 704401 0 0x0000001a 0 26 704401 0 1a 00 00 00 91 bf 0a 00 00 00 00 00 ............ +4592 10.758276224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592756 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 137822208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 08 1f 00 00 00 00 00 ....T.c@.^1@......7....... +4594 10.758654118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913884 12 -1 704401 0 0xffffffff 0 -1 704401 0 ff ff ff ff 91 bf 0a 00 00 00 00 00 ............ +4596 10.759088755 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913896 12 22 695887 0 0x00000016 0 22 695887 0 16 00 00 00 4f 9e 0a 00 00 00 00 00 ....O....... +4598 10.759250879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913908 22 18 2033719 0 0x00000012 1 2033719 0 196609 0 12 00 00 00 37 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +4600 10.759544611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592782 12 -1 695887 0 0xffffffff 0 -1 695887 0 ff ff ff ff 4f 9e 0a 00 00 00 00 00 ....O....... +4603 10.841344357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913930 12 -2 79992 80009 0xfffffffe 0 -2 79992 80009 fe ff ff ff 78 38 01 00 89 38 01 00 ....x8...8.. +4610 10.861186504 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592794 12 26 704402 0 0x0000001a 0 26 704402 0 1a 00 00 00 92 bf 0a 00 00 00 00 00 ............ +4612 10.861366510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592806 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 137953280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 08 1f 00 00 00 00 00 ....T.c@.^1@......9....... +4614 10.861784220 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913942 12 -1 704402 0 0xffffffff 0 -1 704402 0 ff ff ff ff 92 bf 0a 00 00 00 00 00 ............ +4616 10.862300634 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913954 12 22 695888 0 0x00000016 0 22 695888 0 16 00 00 00 50 9e 0a 00 00 00 00 00 ....P....... +4618 10.862457752 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913966 22 18 2033721 0 0x00000012 1 2033721 0 196609 0 12 00 00 00 39 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +4620 10.862809896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592832 12 -1 695888 0 0xffffffff 0 -1 695888 0 ff ff ff ff 50 9e 0a 00 00 00 00 00 ....P....... +4626 10.955027580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592844 12 -2 80010 79992 0xfffffffe 0 -2 80010 79992 fe ff ff ff 8a 38 01 00 78 38 01 00 .....8..x8.. +4630 10.965321779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592856 12 26 704403 0 0x0000001a 0 26 704403 0 1a 00 00 00 93 bf 0a 00 00 00 00 00 ............ +4632 10.965532541 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592868 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 138084352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 08 1f 00 00 00 00 00 ....T.c@.^1@......;....... +4634 10.965948343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375913988 12 -1 704403 0 0xffffffff 0 -1 704403 0 ff ff ff ff 93 bf 0a 00 00 00 00 00 ............ +4636 10.966496229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914000 12 22 695889 0 0x00000016 0 22 695889 0 16 00 00 00 51 9e 0a 00 00 00 00 00 ....Q....... +4638 10.966738939 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914012 22 18 2033723 0 0x00000012 1 2033723 0 196609 0 12 00 00 00 3b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +4640 10.967069149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592894 12 -1 695889 0 0xffffffff 0 -1 695889 0 ff ff ff ff 51 9e 0a 00 00 00 00 00 ....Q....... +4647 10.990730286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592906 12 101 704404 0 0x00000065 0 101 704404 0 65 00 00 00 94 bf 0a 00 00 00 00 00 e........... +4649 10.991050720 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331592918 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5c 00 02 00 00 00 00 00 aa 14 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5c 00 02 00 00 00 00 .....!...o3.......\...............?.....3...|8.. +4651 10.991499424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914034 12 -1 704404 0 0xffffffff 0 -1 704404 0 ff ff ff ff 94 bf 0a 00 00 00 00 00 ............ +4653 10.993397236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914046 12 52 695890 0 0x00000034 0 52 695890 0 34 00 00 00 52 9e 0a 00 00 00 00 00 4...R....... +4655 10.993556023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914058 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5c 00 02 00 00 00 00 00 00 00 26 e0 aa 70 4a 01 00 00 "0...Dk.................L."".([.....\.........&..p" +4657 10.993827820 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593019 12 -1 695890 0 0xffffffff 0 -1 695890 0 ff ff ff ff 52 9e 0a 00 00 00 00 00 ....R....... +4659 10.995486021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593031 12 30 704405 0 0x0000001e 0 30 704405 0 1e 00 00 00 95 bf 0a 00 00 00 00 00 ............ +4661 10.995632648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593043 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 138215424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +4663 10.995978832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914110 12 -1 704405 0 0xffffffff 0 -1 704405 0 ff ff ff ff 95 bf 0a 00 00 00 00 00 ............ +4665 10.996276140 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914122 12 26 695891 0 0x0000001a 0 26 695891 0 1a 00 00 00 53 9e 0a 00 00 00 00 00 ....S....... +4667 10.996506929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914134 26 22 2033725 0 0x00000016 1 2033725 0 196609 0 16 00 00 00 3d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +4669 10.996767998 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593073 12 -1 695891 0 0xffffffff 0 -1 695891 0 ff ff ff ff 53 9e 0a 00 00 00 00 00 ....S....... +4675 11.069302320 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593085 12 26 704406 0 0x0000001a 0 26 704406 0 1a 00 00 00 96 bf 0a 00 00 00 00 00 ............ +4677 11.069500685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593097 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 138346496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 08 1f 00 00 00 00 00 ....T.c@.^1@......?....... +4679 11.069866657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914160 12 -1 704406 0 0xffffffff 0 -1 704406 0 ff ff ff ff 96 bf 0a 00 00 00 00 00 ............ +4681 11.070508718 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914172 12 22 695892 0 0x00000016 0 22 695892 0 16 00 00 00 54 9e 0a 00 00 00 00 00 ....T....... +4683 11.070719719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914184 22 18 2033727 0 0x00000012 1 2033727 0 196609 0 12 00 00 00 3f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +4685 11.070966482 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593123 12 -1 695892 0 0xffffffff 0 -1 695892 0 ff ff ff ff 54 9e 0a 00 00 00 00 00 ....T....... +4688 11.172525644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593135 12 26 704407 0 0x0000001a 0 26 704407 0 1a 00 00 00 97 bf 0a 00 00 00 00 00 ............ +4690 11.172725201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593147 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 138477568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 08 1f 00 00 00 00 00 ....T.c@.^1@......A....... +4692 11.173019886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914206 12 -1 704407 0 0xffffffff 0 -1 704407 0 ff ff ff ff 97 bf 0a 00 00 00 00 00 ............ +4694 11.173554420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914218 12 22 695893 0 0x00000016 0 22 695893 0 16 00 00 00 55 9e 0a 00 00 00 00 00 ....U....... +4696 11.173694372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914230 22 18 2033729 0 0x00000012 1 2033729 0 196609 0 12 00 00 00 41 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +4698 11.173963547 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593173 12 -1 695893 0 0xffffffff 0 -1 695893 0 ff ff ff ff 55 9e 0a 00 00 00 00 00 ....U....... +4703 11.276404619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593185 12 26 704408 0 0x0000001a 0 26 704408 0 1a 00 00 00 98 bf 0a 00 00 00 00 00 ............ +4705 11.276553392 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593197 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 138608640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 08 1f 00 00 00 00 00 ....T.c@.^1@......C....... +4707 11.276913881 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914252 12 -1 704408 0 0xffffffff 0 -1 704408 0 ff ff ff ff 98 bf 0a 00 00 00 00 00 ............ +4709 11.277331591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914264 12 22 695894 0 0x00000016 0 22 695894 0 16 00 00 00 56 9e 0a 00 00 00 00 00 ....V....... +4711 11.277495861 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914276 22 18 2033731 0 0x00000012 1 2033731 0 196609 0 12 00 00 00 43 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +4713 11.277806997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593223 12 -1 695894 0 0xffffffff 0 -1 695894 0 ff ff ff ff 56 9e 0a 00 00 00 00 00 ....V....... +4715 11.297595024 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593235 12 101 704409 0 0x00000065 0 101 704409 0 65 00 00 00 99 bf 0a 00 00 00 00 00 e........... +4717 11.297755480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593247 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5d 00 02 00 00 00 00 00 dd 15 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5d 00 02 00 00 00 00 .....!...o3.......]...............?.....3...|8.. +4719 11.298142195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914298 12 -1 704409 0 0xffffffff 0 -1 704409 0 ff ff ff ff 99 bf 0a 00 00 00 00 00 ............ +4721 11.299546003 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914310 12 52 695895 0 0x00000034 0 52 695895 0 34 00 00 00 57 9e 0a 00 00 00 00 00 4...W....... +4723 11.299961805 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914322 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5d 00 02 00 00 00 00 00 00 00 89 8d d9 70 4a 01 00 00 "0...Dk.................L."".([.....]............p" +4725 11.300238609 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593348 12 -1 695895 0 0xffffffff 0 -1 695895 0 ff ff ff ff 57 9e 0a 00 00 00 00 00 ....W....... +4727 11.300978422 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593360 12 30 704410 0 0x0000001e 0 30 704410 0 1e 00 00 00 9a bf 0a 00 00 00 00 00 ............ +4729 11.301153660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593372 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 138739712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......E........... +4731 11.301453114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914374 12 -1 704410 0 0xffffffff 0 -1 704410 0 ff ff ff ff 9a bf 0a 00 00 00 00 00 ............ +4733 11.301879168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914386 12 26 695896 0 0x0000001a 0 26 695896 0 1a 00 00 00 58 9e 0a 00 00 00 00 00 ....X....... +4735 11.302033424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914398 26 22 2033733 0 0x00000016 1 2033733 0 196609 0 16 00 00 00 45 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E..................... +4737 11.302352428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593402 12 -1 695896 0 0xffffffff 0 -1 695896 0 ff ff ff ff 58 9e 0a 00 00 00 00 00 ....X....... +4741 11.341516733 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914424 12 -2 79993 80010 0xfffffffe 0 -2 79993 80010 fe ff ff ff 79 38 01 00 8a 38 01 00 ....y8...8.. +4748 11.378646374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593414 12 26 704411 0 0x0000001a 0 26 704411 0 1a 00 00 00 9b bf 0a 00 00 00 00 00 ............ +4750 11.378813028 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593426 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 138870784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 08 1f 00 00 00 00 00 ....T.c@.^1@......G....... +4752 11.379117727 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914436 12 -1 704411 0 0xffffffff 0 -1 704411 0 ff ff ff ff 9b bf 0a 00 00 00 00 00 ............ +4754 11.379648924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914448 12 22 695897 0 0x00000016 0 22 695897 0 16 00 00 00 59 9e 0a 00 00 00 00 00 ....Y....... +4756 11.379796028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914460 22 18 2033735 0 0x00000012 1 2033735 0 196609 0 12 00 00 00 47 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +4758 11.380037069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593452 12 -1 695897 0 0xffffffff 0 -1 695897 0 ff ff ff ff 59 9e 0a 00 00 00 00 00 ....Y....... +4765 11.456954956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593464 12 -2 80011 79993 0xfffffffe 0 -2 80011 79993 fe ff ff ff 8b 38 01 00 79 38 01 00 .....8..y8.. +4769 11.480936527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593476 12 26 704412 0 0x0000001a 0 26 704412 0 1a 00 00 00 9c bf 0a 00 00 00 00 00 ............ +4771 11.481116056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593488 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 139001856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 08 1f 00 00 00 00 00 ....T.c@.^1@......I....... +4773 11.481528997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914482 12 -1 704412 0 0xffffffff 0 -1 704412 0 ff ff ff ff 9c bf 0a 00 00 00 00 00 ............ +4775 11.481988907 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914494 12 22 695898 0 0x00000016 0 22 695898 0 16 00 00 00 5a 9e 0a 00 00 00 00 00 ....Z....... +4777 11.482193232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914506 22 18 2033737 0 0x00000012 1 2033737 0 196609 0 12 00 00 00 49 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +4779 11.482437372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593514 12 -1 695898 0 0xffffffff 0 -1 695898 0 ff ff ff ff 5a 9e 0a 00 00 00 00 00 ....Z....... +4801 11.584804773 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593526 12 26 704413 0 0x0000001a 0 26 704413 0 1a 00 00 00 9d bf 0a 00 00 00 00 00 ............ +4803 11.585107803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593538 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 139132928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 08 1f 00 00 00 00 00 ....T.c@.^1@......K....... +4805 11.585426331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914528 12 -1 704413 0 0xffffffff 0 -1 704413 0 ff ff ff ff 9d bf 0a 00 00 00 00 00 ............ +4807 11.585827351 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914540 12 22 695899 0 0x00000016 0 22 695899 0 16 00 00 00 5b 9e 0a 00 00 00 00 00 ....[....... +4809 11.586028814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914552 22 18 2033739 0 0x00000012 1 2033739 0 196609 0 12 00 00 00 4b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +4811 11.586300850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593564 12 -1 695899 0 0xffffffff 0 -1 695899 0 ff ff ff ff 5b 9e 0a 00 00 00 00 00 ....[....... +4813 11.601831198 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593576 12 101 704414 0 0x00000065 0 101 704414 0 65 00 00 00 9e bf 0a 00 00 00 00 00 e........... +4815 11.602078676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593588 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5e 00 02 00 00 00 00 00 0d 17 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5e 00 02 00 00 00 00 .....!...o3.......^...............?.....3...|8.. +4817 11.602469206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914574 12 -1 704414 0 0xffffffff 0 -1 704414 0 ff ff ff ff 9e bf 0a 00 00 00 00 00 ............ +4819 11.603539705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914586 12 52 695900 0 0x00000034 0 52 695900 0 34 00 00 00 5c 9e 0a 00 00 00 00 00 4...\....... +4821 11.603748322 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914598 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5e 00 02 00 00 00 00 00 00 00 c9 f7 07 71 4a 01 00 00 "0...Dk.................L."".([.....^............q" +4823 11.603996992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593689 12 -1 695900 0 0xffffffff 0 -1 695900 0 ff ff ff ff 5c 9e 0a 00 00 00 00 00 ....\....... +4825 11.604903221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593701 12 30 704415 0 0x0000001e 0 30 704415 0 1e 00 00 00 9f bf 0a 00 00 00 00 00 ............ +4827 11.605589390 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593713 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 139264000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......M........... +4829 11.605957747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914650 12 -1 704415 0 0xffffffff 0 -1 704415 0 ff ff ff ff 9f bf 0a 00 00 00 00 00 ............ +4831 11.606851578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914662 12 26 695901 0 0x0000001a 0 26 695901 0 1a 00 00 00 5d 9e 0a 00 00 00 00 00 ....]....... +4833 11.606995583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914674 26 22 2033741 0 0x00000016 1 2033741 0 196609 0 16 00 00 00 4d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M..................... +4835 11.607301712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593743 12 -1 695901 0 0xffffffff 0 -1 695901 0 ff ff ff ff 5d 9e 0a 00 00 00 00 00 ....]....... +4851 11.687899351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593755 12 26 704416 0 0x0000001a 0 26 704416 0 1a 00 00 00 a0 bf 0a 00 00 00 00 00 ............ +4853 11.688097715 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593767 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 139395072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 08 1f 00 00 00 00 00 ....T.c@.^1@......O....... +4855 11.688344955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914700 12 -1 704416 0 0xffffffff 0 -1 704416 0 ff ff ff ff a0 bf 0a 00 00 00 00 00 ............ +4857 11.688830614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914712 12 22 695902 0 0x00000016 0 22 695902 0 16 00 00 00 5e 9e 0a 00 00 00 00 00 ....^....... +4859 11.689033747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914724 22 18 2033743 0 0x00000012 1 2033743 0 196609 0 12 00 00 00 4f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +4861 11.689370632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593793 12 -1 695902 0 0xffffffff 0 -1 695902 0 ff ff ff ff 5e 9e 0a 00 00 00 00 00 ....^....... +4868 11.790725470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593805 12 26 704417 0 0x0000001a 0 26 704417 0 1a 00 00 00 a1 bf 0a 00 00 00 00 00 ............ +4870 11.790907621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593817 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 139526144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 08 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +4872 11.791373491 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914746 12 -1 704417 0 0xffffffff 0 -1 704417 0 ff ff ff ff a1 bf 0a 00 00 00 00 00 ............ +4874 11.791903019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914758 12 22 695903 0 0x00000016 0 22 695903 0 16 00 00 00 5f 9e 0a 00 00 00 00 00 ...._....... +4876 11.792104006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914770 22 18 2033745 0 0x00000012 1 2033745 0 196609 0 12 00 00 00 51 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +4878 11.792422056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593843 12 -1 695903 0 0xffffffff 0 -1 695903 0 ff ff ff ff 5f 9e 0a 00 00 00 00 00 ...._....... +4881 11.842477798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914792 12 -2 79994 80011 0xfffffffe 0 -2 79994 80011 fe ff ff ff 7a 38 01 00 8b 38 01 00 ....z8...8.. +4890 11.893489838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593855 12 26 704418 0 0x0000001a 0 26 704418 0 1a 00 00 00 a2 bf 0a 00 00 00 00 00 ............ +4892 11.893746376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593867 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 139657216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 08 1f 00 00 00 00 00 ....T.c@.^1@......S....... +4894 11.894140720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914804 12 -1 704418 0 0xffffffff 0 -1 704418 0 ff ff ff ff a2 bf 0a 00 00 00 00 00 ............ +4896 11.897041798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914816 12 22 695904 0 0x00000016 0 22 695904 0 16 00 00 00 60 9e 0a 00 00 00 00 00 ....`....... +4898 11.897202492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914828 22 18 2033747 0 0x00000012 1 2033747 0 196609 0 12 00 00 00 53 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +4900 11.897401810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593893 12 -1 695904 0 0xffffffff 0 -1 695904 0 ff ff ff ff 60 9e 0a 00 00 00 00 00 ....`....... +4902 11.905971527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593905 12 34 704419 0 0x00000022 0 34 704419 0 22 00 00 00 a3 bf 0a 00 00 00 00 00 """..........." +4904 11.906136274 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593917 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 6225920 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5f 00 02 00 00 00 00 00 3d 18 0f c3 9d 01 00 00 .....!...o3......._.......=....... +4906 11.906223297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593951 12 67 704420 0 0x00000043 0 67 704420 0 43 00 00 00 a4 bf 0a 00 00 00 00 00 C........... +4908 11.906305790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331593963 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5f 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 00 ac 13 9d ?.....3...|8..........._.......=B.....&......... +4910 11.906392336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914850 12 -1 704419 0 0xffffffff 0 -1 704419 0 ff ff ff ff a3 bf 0a 00 00 00 00 00 ............ +4912 11.906564236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914862 12 -1 704420 0 0xffffffff 0 -1 704420 0 ff ff ff ff a4 bf 0a 00 00 00 00 00 ............ +4914 11.907364607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914874 12 52 695905 0 0x00000034 0 52 695905 0 34 00 00 00 61 9e 0a 00 00 00 00 00 4...a....... +4916 11.907514811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914886 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5f 00 02 00 00 00 00 00 00 00 b0 57 36 71 4a 01 00 00 "0...Dk.................L."".([....._..........W6q" +4918 11.907732725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594030 12 -1 695905 0 0xffffffff 0 -1 695905 0 ff ff ff ff 61 9e 0a 00 00 00 00 00 ....a....... +4920 11.908504963 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594042 12 30 704421 0 0x0000001e 0 30 704421 0 1e 00 00 00 a5 bf 0a 00 00 00 00 00 ............ +4922 11.908644915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594054 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 139788288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......U........... +4924 11.908940554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914938 12 -1 704421 0 0xffffffff 0 -1 704421 0 ff ff ff ff a5 bf 0a 00 00 00 00 00 ............ +4926 11.909288645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914950 12 26 695906 0 0x0000001a 0 26 695906 0 1a 00 00 00 62 9e 0a 00 00 00 00 00 ....b....... +4928 11.909430742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914962 26 22 2033749 0 0x00000016 1 2033749 0 196609 0 16 00 00 00 55 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U..................... +4930 11.909627199 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594084 12 -1 695906 0 0xffffffff 0 -1 695906 0 ff ff ff ff 62 9e 0a 00 00 00 00 00 ....b....... +4937 11.958170652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594096 12 -2 80012 79994 0xfffffffe 0 -2 80012 79994 fe ff ff ff 8c 38 01 00 7a 38 01 00 .....8..z8.. +4944 11.999707699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594108 12 26 704422 0 0x0000001a 0 26 704422 0 1a 00 00 00 a6 bf 0a 00 00 00 00 00 ............ +4946 11.999896526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594120 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 139919360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 08 1f 00 00 00 00 00 ....T.c@.^1@......W....... +4948 12.000202179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375914988 12 -1 704422 0 0xffffffff 0 -1 704422 0 ff ff ff ff a6 bf 0a 00 00 00 00 00 ............ +4950 12.000653267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915000 12 22 695907 0 0x00000016 0 22 695907 0 16 00 00 00 63 9e 0a 00 00 00 00 00 ....c....... +4952 12.000815392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915012 22 18 2033751 0 0x00000012 1 2033751 0 196609 0 12 00 00 00 57 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +4954 12.001086712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594146 12 -1 695907 0 0xffffffff 0 -1 695907 0 ff ff ff ff 63 9e 0a 00 00 00 00 00 ....c....... +4962 12.102280617 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594158 12 26 704423 0 0x0000001a 0 26 704423 0 1a 00 00 00 a7 bf 0a 00 00 00 00 00 ............ +4964 12.102491856 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594170 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 140050432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 08 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +4966 12.102838039 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915034 12 -1 704423 0 0xffffffff 0 -1 704423 0 ff ff ff ff a7 bf 0a 00 00 00 00 00 ............ +4968 12.103283405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915046 12 22 695908 0 0x00000016 0 22 695908 0 16 00 00 00 64 9e 0a 00 00 00 00 00 ....d....... +4970 12.103448153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915058 22 18 2033753 0 0x00000012 1 2033753 0 196609 0 12 00 00 00 59 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +4972 12.103695631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594196 12 -1 695908 0 0xffffffff 0 -1 695908 0 ff ff ff ff 64 9e 0a 00 00 00 00 00 ....d....... +4988 12.204681873 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594208 12 26 704424 0 0x0000001a 0 26 704424 0 1a 00 00 00 a8 bf 0a 00 00 00 00 00 ............ +4990 12.204848528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594220 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 140181504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 08 1f 00 00 00 00 00 ....T.c@.^1@......[....... +4992 12.205260992 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915080 12 -1 704424 0 0xffffffff 0 -1 704424 0 ff ff ff ff a8 bf 0a 00 00 00 00 00 ............ +4994 12.208918333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915092 12 22 695909 0 0x00000016 0 22 695909 0 16 00 00 00 65 9e 0a 00 00 00 00 00 ....e....... +4996 12.209083319 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915104 22 18 2033755 0 0x00000012 1 2033755 0 196609 0 12 00 00 00 5b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +4998 12.209393024 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594246 12 -1 695909 0 0xffffffff 0 -1 695909 0 ff ff ff ff 65 9e 0a 00 00 00 00 00 ....e....... +5000 12.209969521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594258 12 101 704425 0 0x00000065 0 101 704425 0 65 00 00 00 a9 bf 0a 00 00 00 00 00 e........... +5002 12.210133314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594270 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 60 00 02 00 00 00 00 00 6d 19 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 60 00 02 00 00 00 00 .....!...o3.......`.......m.......?.....3...|8.. +5004 12.210418463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915126 12 -1 704425 0 0xffffffff 0 -1 704425 0 ff ff ff ff a9 bf 0a 00 00 00 00 00 ............ +5006 12.213521242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915138 12 52 695910 0 0x00000034 0 52 695910 0 34 00 00 00 66 9e 0a 00 00 00 00 00 4...f....... +5008 12.213667870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915150 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 60 00 02 00 00 00 00 00 00 00 1d 0d 65 71 4a 01 00 00 "0...Dk.................L."".([.....`...........eq" +5010 12.213900089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594371 12 -1 695910 0 0xffffffff 0 -1 695910 0 ff ff ff ff 66 9e 0a 00 00 00 00 00 ....f....... +5012 12.214638472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594383 12 30 704426 0 0x0000001e 0 30 704426 0 1e 00 00 00 aa bf 0a 00 00 00 00 00 ............ +5014 12.214778900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594395 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 140312576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +5016 12.215269804 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915202 12 -1 704426 0 0xffffffff 0 -1 704426 0 ff ff ff ff aa bf 0a 00 00 00 00 00 ............ +5018 12.215570450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915214 12 26 695911 0 0x0000001a 0 26 695911 0 1a 00 00 00 67 9e 0a 00 00 00 00 00 ....g....... +5020 12.215728998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915226 26 22 2033757 0 0x00000016 1 2033757 0 196609 0 16 00 00 00 5d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +5022 12.216032505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594425 12 -1 695911 0 0xffffffff 0 -1 695911 0 ff ff ff ff 67 9e 0a 00 00 00 00 00 ....g....... +5026 12.311235905 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594437 12 26 704427 0 0x0000001a 0 26 704427 0 1a 00 00 00 ab bf 0a 00 00 00 00 00 ............ +5028 12.311448812 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594449 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 140443648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 08 1f 00 00 00 00 00 ....T.c@.^1@......_....... +5030 12.311865807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915252 12 -1 704427 0 0xffffffff 0 -1 704427 0 ff ff ff ff ab bf 0a 00 00 00 00 00 ............ +5032 12.312440395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915264 12 22 695912 0 0x00000016 0 22 695912 0 16 00 00 00 68 9e 0a 00 00 00 00 00 ....h....... +5034 12.312652588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915276 22 18 2033759 0 0x00000012 1 2033759 0 196609 0 12 00 00 00 5f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +5036 12.312953472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594475 12 -1 695912 0 0xffffffff 0 -1 695912 0 ff ff ff ff 68 9e 0a 00 00 00 00 00 ....h....... +5039 12.344208717 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915298 12 -2 79995 80012 0xfffffffe 0 -2 79995 80012 fe ff ff ff 7b 38 01 00 8c 38 01 00 ....{8...8.. +5047 12.415135622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594487 12 26 704428 0 0x0000001a 0 26 704428 0 1a 00 00 00 ac bf 0a 00 00 00 00 00 ............ +5049 12.415311813 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594499 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 140574720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 08 1f 00 00 00 00 00 ....T.c@.^1@......a....... +5051 12.415657520 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915310 12 -1 704428 0 0xffffffff 0 -1 704428 0 ff ff ff ff ac bf 0a 00 00 00 00 00 ............ +5053 12.416101933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915322 12 22 695913 0 0x00000016 0 22 695913 0 16 00 00 00 69 9e 0a 00 00 00 00 00 ....i....... +5055 12.416259527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915334 22 18 2033761 0 0x00000012 1 2033761 0 196609 0 12 00 00 00 61 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +5057 12.416560650 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594525 12 -1 695913 0 0xffffffff 0 -1 695913 0 ff ff ff ff 69 9e 0a 00 00 00 00 00 ....i....... +5064 12.460415840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594537 12 -2 80013 79995 0xfffffffe 0 -2 80013 79995 fe ff ff ff 8d 38 01 00 7b 38 01 00 .....8..{8.. +5070 12.516990662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594549 12 34 704429 0 0x00000022 0 34 704429 0 22 00 00 00 ad bf 0a 00 00 00 00 00 """..........." +5072 12.517144918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594561 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 6356992 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 61 00 02 00 00 00 00 00 a0 1a 0f c3 9d 01 00 00 .....!...o3.......a............... +5074 12.517235518 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594595 12 67 704430 0 0x00000043 0 67 704430 0 43 00 00 00 ae bf 0a 00 00 00 00 00 C........... +5076 12.517319918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594607 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 61 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 90 08 38 9d ?.....3...|8...........a.......=B.....&......... +5078 12.517548561 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915356 12 -1 704429 0 0xffffffff 0 -1 704429 0 ff ff ff ff ad bf 0a 00 00 00 00 00 ............ +5080 12.517739058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915368 12 -1 704430 0 0xffffffff 0 -1 704430 0 ff ff ff ff ae bf 0a 00 00 00 00 00 ............ +5082 12.518508911 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915380 12 52 695914 0 0x00000034 0 52 695914 0 34 00 00 00 6a 9e 0a 00 00 00 00 00 4...j....... +5083 12.518550396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594674 12 26 704431 0 0x0000001a 0 26 704431 0 1a 00 00 00 af bf 0a 00 00 00 00 00 ............ +5086 12.518711090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594686 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 140705792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 08 1f 00 00 00 00 00 ....T.c@.^1@......c....... +5087 12.518745661 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915392 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 61 00 02 00 00 00 00 00 00 00 43 96 93 71 4a 01 00 00 "0...Dk.................L."".([.....a.........C..q" +5090 12.519024372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594712 12 -1 695914 0 0xffffffff 0 -1 695914 0 ff ff ff ff 6a 9e 0a 00 00 00 00 00 ....j....... +5091 12.519166231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915444 12 -1 704431 0 0xffffffff 0 -1 704431 0 ff ff ff ff af bf 0a 00 00 00 00 00 ............ +5092 12.519431591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915456 12 22 695915 0 0x00000016 0 22 695915 0 16 00 00 00 6b 9e 0a 00 00 00 00 00 ....k....... +5094 12.519621611 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915468 22 18 2033763 0 0x00000012 1 2033763 0 196609 0 12 00 00 00 63 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +5096 12.519762278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594724 12 30 704432 0 0x0000001e 0 30 704432 0 1e 00 00 00 b0 bf 0a 00 00 00 00 00 ............ +5098 12.519905806 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594736 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 140836864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +5100 12.520190477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594766 12 -1 695915 0 0xffffffff 0 -1 695915 0 ff ff ff ff 6b 9e 0a 00 00 00 00 00 ....k....... +5101 12.520231247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915490 12 -1 704432 0 0xffffffff 0 -1 704432 0 ff ff ff ff b0 bf 0a 00 00 00 00 00 ............ +5104 12.520583153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915502 12 26 695916 0 0x0000001a 0 26 695916 0 1a 00 00 00 6c 9e 0a 00 00 00 00 00 ....l....... +5106 12.520728350 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915514 26 22 2033765 0 0x00000016 1 2033765 0 196609 0 16 00 00 00 65 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +5108 12.520959377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594778 12 -1 695916 0 0xffffffff 0 -1 695916 0 ff ff ff ff 6c 9e 0a 00 00 00 00 00 ....l....... +5115 12.621351004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594790 12 26 704433 0 0x0000001a 0 26 704433 0 1a 00 00 00 b1 bf 0a 00 00 00 00 00 ............ +5117 12.621529341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594802 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 140967936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 08 1f 00 00 00 00 00 ....T.c@.^1@......g....... +5119 12.621914625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915540 12 -1 704433 0 0xffffffff 0 -1 704433 0 ff ff ff ff b1 bf 0a 00 00 00 00 00 ............ +5121 12.622253418 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915552 12 22 695917 0 0x00000016 0 22 695917 0 16 00 00 00 6d 9e 0a 00 00 00 00 00 ....m....... +5123 12.622411966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915564 22 18 2033767 0 0x00000012 1 2033767 0 196609 0 12 00 00 00 67 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +5125 12.622853994 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594828 12 -1 695917 0 0xffffffff 0 -1 695917 0 ff ff ff ff 6d 9e 0a 00 00 00 00 00 ....m....... +5128 12.724227190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594840 12 26 704434 0 0x0000001a 0 26 704434 0 1a 00 00 00 b2 bf 0a 00 00 00 00 00 ............ +5130 12.724400282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594852 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 141099008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 08 1f 00 00 00 00 00 ....T.c@.^1@......i....... +5132 12.724898338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915586 12 -1 704434 0 0xffffffff 0 -1 704434 0 ff ff ff ff b2 bf 0a 00 00 00 00 00 ............ +5134 12.725392342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915598 12 22 695918 0 0x00000016 0 22 695918 0 16 00 00 00 6e 9e 0a 00 00 00 00 00 ....n....... +5136 12.725626230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915610 22 18 2033769 0 0x00000012 1 2033769 0 196609 0 12 00 00 00 69 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +5138 12.725911617 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594878 12 -1 695918 0 0xffffffff 0 -1 695918 0 ff ff ff ff 6e 9e 0a 00 00 00 00 00 ....n....... +5145 12.821789503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594890 12 101 704435 0 0x00000065 0 101 704435 0 65 00 00 00 b3 bf 0a 00 00 00 00 00 e........... +5147 12.821943760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331594902 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 62 00 02 00 00 00 00 00 d1 1b 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 62 00 02 00 00 00 00 .....!...o3.......b...............?.....3...|8.. +5149 12.822575569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915632 12 -1 704435 0 0xffffffff 0 -1 704435 0 ff ff ff ff b3 bf 0a 00 00 00 00 00 ............ +5151 12.823815107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915644 12 52 695919 0 0x00000034 0 52 695919 0 34 00 00 00 6f 9e 0a 00 00 00 00 00 4...o....... +5153 12.823974609 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915656 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 62 00 02 00 00 00 00 00 00 00 ae 2d c2 71 4a 01 00 00 "0...Dk.................L."".([.....b..........-.q" +5155 12.824425459 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595003 12 -1 695919 0 0xffffffff 0 -1 695919 0 ff ff ff ff 6f 9e 0a 00 00 00 00 00 ....o....... +5157 12.824957848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595015 12 30 704436 0 0x0000001e 0 30 704436 0 1e 00 00 00 b4 bf 0a 00 00 00 00 00 ............ +5159 12.825122595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595027 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 141230080 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......k........... +5161 12.825409651 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915708 12 -1 704436 0 0xffffffff 0 -1 704436 0 ff ff ff ff b4 bf 0a 00 00 00 00 00 ............ +5163 12.825797558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915720 12 26 695920 0 0x0000001a 0 26 695920 0 1a 00 00 00 70 9e 0a 00 00 00 00 00 ....p....... +5165 12.825944662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915732 26 22 2033771 0 0x00000016 1 2033771 0 196609 0 16 00 00 00 6b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....k..................... +5167 12.826130629 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595057 12 -1 695920 0 0xffffffff 0 -1 695920 0 ff ff ff ff 70 9e 0a 00 00 00 00 00 ....p....... +5169 12.827168703 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595069 12 26 704437 0 0x0000001a 0 26 704437 0 1a 00 00 00 b5 bf 0a 00 00 00 00 00 ............ +5171 12.827313662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595081 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 141361152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 08 1f 00 00 00 00 00 ....T.c@.^1@......m....... +5173 12.827593565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915758 12 -1 704437 0 0xffffffff 0 -1 704437 0 ff ff ff ff b5 bf 0a 00 00 00 00 00 ............ +5175 12.827948332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915770 12 22 695921 0 0x00000016 0 22 695921 0 16 00 00 00 71 9e 0a 00 00 00 00 00 ....q....... +5177 12.828076839 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915782 22 18 2033773 0 0x00000012 1 2033773 0 196609 0 12 00 00 00 6d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +5179 12.828306675 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595107 12 -1 695921 0 0xffffffff 0 -1 695921 0 ff ff ff ff 71 9e 0a 00 00 00 00 00 ....q....... +5183 12.846332788 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915804 12 -2 79996 80013 0xfffffffe 0 -2 79996 80013 fe ff ff ff 7c 38 01 00 8d 38 01 00 ....|8...8.. +5193 12.929675102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595119 12 26 704438 0 0x0000001a 0 26 704438 0 1a 00 00 00 b6 bf 0a 00 00 00 00 00 ............ +5195 12.929837942 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595131 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 141492224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 08 1f 00 00 00 00 00 ....T.c@.^1@......o....... +5197 12.930149078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915816 12 -1 704438 0 0xffffffff 0 -1 704438 0 ff ff ff ff b6 bf 0a 00 00 00 00 00 ............ +5199 12.930667877 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915828 12 22 695922 0 0x00000016 0 22 695922 0 16 00 00 00 72 9e 0a 00 00 00 00 00 ....r....... +5201 12.930811882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915840 22 18 2033775 0 0x00000012 1 2033775 0 196609 0 12 00 00 00 6f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +5203 12.931127787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595157 12 -1 695922 0 0xffffffff 0 -1 695922 0 ff ff ff ff 72 9e 0a 00 00 00 00 00 ....r....... +5205 12.961280107 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595169 12 -2 80014 79996 0xfffffffe 0 -2 80014 79996 fe ff ff ff 8e 38 01 00 7c 38 01 00 .....8..|8.. +5211 13.032334566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595181 12 26 704439 0 0x0000001a 0 26 704439 0 1a 00 00 00 b7 bf 0a 00 00 00 00 00 ............ +5214 13.032498837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595193 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 141623296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 08 1f 00 00 00 00 00 ....T.c@.^1@......q....... +5217 13.032814026 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915862 12 -1 704439 0 0xffffffff 0 -1 704439 0 ff ff ff ff b7 bf 0a 00 00 00 00 00 ............ +5219 13.033328533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915874 12 22 695923 0 0x00000016 0 22 695923 0 16 00 00 00 73 9e 0a 00 00 00 00 00 ....s....... +5221 13.033486605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915886 22 18 2033777 0 0x00000012 1 2033777 0 196609 0 12 00 00 00 71 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +5223 13.033752918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595219 12 -1 695923 0 0xffffffff 0 -1 695923 0 ff ff ff ff 73 9e 0a 00 00 00 00 00 ....s....... +5227 13.126144648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595231 12 34 704440 0 0x00000022 0 34 704440 0 22 00 00 00 b8 bf 0a 00 00 00 00 00 """..........." +5229 13.126369476 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595243 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 6488064 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 63 00 02 00 00 00 00 00 01 1d 0f c3 9d 01 00 00 .....!...o3.......c............... +5231 13.126463413 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595277 12 67 704441 0 0x00000043 0 67 704441 0 43 00 00 00 b9 bf 0a 00 00 00 00 00 C........... +5233 13.126549244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595289 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 63 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c 8f 59 5c 9d ?.....3...|8...........c.......=B.....&......... +5235 13.126935720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915908 12 -1 704440 0 0xffffffff 0 -1 704440 0 ff ff ff ff b8 bf 0a 00 00 00 00 00 ............ +5237 13.127174139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915920 12 -1 704441 0 0xffffffff 0 -1 704441 0 ff ff ff ff b9 bf 0a 00 00 00 00 00 ............ +5239 13.128139019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915932 12 52 695924 0 0x00000034 0 52 695924 0 34 00 00 00 74 9e 0a 00 00 00 00 00 4...t....... +5241 13.128347158 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915944 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 63 00 02 00 00 00 00 00 00 00 d3 9c f0 71 4a 01 00 00 "0...Dk.................L."".([.....c............q" +5243 13.128616810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595356 12 -1 695924 0 0xffffffff 0 -1 695924 0 ff ff ff ff 74 9e 0a 00 00 00 00 00 ....t....... +5245 13.129436016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595368 12 30 704442 0 0x0000001e 0 30 704442 0 1e 00 00 00 ba bf 0a 00 00 00 00 00 ............ +5247 13.129588127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595380 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 141754368 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 73 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......s........... +5249 13.129845858 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375915996 12 -1 704442 0 0xffffffff 0 -1 704442 0 ff ff ff ff ba bf 0a 00 00 00 00 00 ............ +5251 13.130248547 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916008 12 26 695925 0 0x0000001a 0 26 695925 0 1a 00 00 00 75 9e 0a 00 00 00 00 00 ....u....... +5253 13.130459309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916020 26 22 2033779 0 0x00000016 1 2033779 0 196609 0 16 00 00 00 73 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....s..................... +5255 13.130629063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595410 12 -1 695925 0 0xffffffff 0 -1 695925 0 ff ff ff ff 75 9e 0a 00 00 00 00 00 ....u....... +5257 13.135907412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595422 12 26 704443 0 0x0000001a 0 26 704443 0 1a 00 00 00 bb bf 0a 00 00 00 00 00 ............ +5259 13.136059761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595434 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 141885440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 08 1f 00 00 00 00 00 ....T.c@.^1@......u....... +5261 13.136267424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916046 12 -1 704443 0 0xffffffff 0 -1 704443 0 ff ff ff ff bb bf 0a 00 00 00 00 00 ............ +5263 13.136739016 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916058 12 22 695926 0 0x00000016 0 22 695926 0 16 00 00 00 76 9e 0a 00 00 00 00 00 ....v....... +5265 13.136938095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916070 22 18 2033781 0 0x00000012 1 2033781 0 196609 0 12 00 00 00 75 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +5267 13.137323618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595460 12 -1 695926 0 0xffffffff 0 -1 695926 0 ff ff ff ff 76 9e 0a 00 00 00 00 00 ....v....... +5269 13.238462210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595472 12 26 704444 0 0x0000001a 0 26 704444 0 1a 00 00 00 bc bf 0a 00 00 00 00 00 ............ +5271 13.238666296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595484 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 142016512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 08 1f 00 00 00 00 00 ....T.c@.^1@......w....... +5273 13.239019394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916092 12 -1 704444 0 0xffffffff 0 -1 704444 0 ff ff ff ff bc bf 0a 00 00 00 00 00 ............ +5275 13.239436626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916104 12 22 695927 0 0x00000016 0 22 695927 0 16 00 00 00 77 9e 0a 00 00 00 00 00 ....w....... +5277 13.239600658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916116 22 18 2033783 0 0x00000012 1 2033783 0 196609 0 12 00 00 00 77 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +5279 13.239967585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595510 12 -1 695927 0 0xffffffff 0 -1 695927 0 ff ff ff ff 77 9e 0a 00 00 00 00 00 ....w....... +5283 13.342540979 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595522 12 26 704445 0 0x0000001a 0 26 704445 0 1a 00 00 00 bd bf 0a 00 00 00 00 00 ............ +5285 13.342842102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595534 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 142147584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 08 1f 00 00 00 00 00 ....T.c@.^1@......y....... +5287 13.343187332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916138 12 -1 704445 0 0xffffffff 0 -1 704445 0 ff ff ff ff bd bf 0a 00 00 00 00 00 ............ +5289 13.343887329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916150 12 22 695928 0 0x00000016 0 22 695928 0 16 00 00 00 78 9e 0a 00 00 00 00 00 ....x....... +5291 13.344220877 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916162 22 18 2033785 0 0x00000012 1 2033785 0 196609 0 12 00 00 00 79 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +5293 13.344510794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595560 12 -1 695928 0 0xffffffff 0 -1 695928 0 ff ff ff ff 78 9e 0a 00 00 00 00 00 ....x....... +5297 13.347423077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916184 12 -2 79997 80014 0xfffffffe 0 -2 79997 80014 fe ff ff ff 7d 38 01 00 8e 38 01 00 ....}8...8.. +5307 13.431098700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595572 12 101 704446 0 0x00000065 0 101 704446 0 65 00 00 00 be bf 0a 00 00 00 00 00 e........... +5309 13.431297779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595584 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 64 00 02 00 00 00 00 00 32 1e 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 64 00 02 00 00 00 00 .....!...o3.......d.......2.......?.....3...|8.. +5311 13.431620598 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916196 12 -1 704446 0 0xffffffff 0 -1 704446 0 ff ff ff ff be bf 0a 00 00 00 00 00 ............ +5313 13.433017015 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916208 12 52 695929 0 0x00000034 0 52 695929 0 34 00 00 00 79 9e 0a 00 00 00 00 00 4...y....... +5315 13.433213711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916220 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 64 00 02 00 00 00 00 00 00 00 8f 22 1f 72 4a 01 00 00 "0...Dk.................L."".([.....d.........."".r" +5317 13.433476210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595685 12 -1 695929 0 0xffffffff 0 -1 695929 0 ff ff ff ff 79 9e 0a 00 00 00 00 00 ....y....... +5319 13.434309006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595697 12 30 704447 0 0x0000001e 0 30 704447 0 1e 00 00 00 bf bf 0a 00 00 00 00 00 ............ +5321 13.434441090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595709 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 142278656 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......{........... +5323 13.434804916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916272 12 -1 704447 0 0xffffffff 0 -1 704447 0 ff ff ff ff bf bf 0a 00 00 00 00 00 ............ +5325 13.435358524 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916284 12 26 695930 0 0x0000001a 0 26 695930 0 1a 00 00 00 7a 9e 0a 00 00 00 00 00 ....z....... +5327 13.435518503 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916296 26 22 2033787 0 0x00000016 1 2033787 0 196609 0 16 00 00 00 7b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....{..................... +5329 13.435744047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595739 12 -1 695930 0 0xffffffff 0 -1 695930 0 ff ff ff ff 7a 9e 0a 00 00 00 00 00 ....z....... +5331 13.447457314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595751 12 26 704448 0 0x0000001a 0 26 704448 0 1a 00 00 00 c0 bf 0a 00 00 00 00 00 ............ +5333 13.447620392 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595763 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 142409728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 08 1f 00 00 00 00 00 ....T.c@.^1@......}....... +5335 13.447926521 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916322 12 -1 704448 0 0xffffffff 0 -1 704448 0 ff ff ff ff c0 bf 0a 00 00 00 00 00 ............ +5337 13.448402166 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916334 12 22 695931 0 0x00000016 0 22 695931 0 16 00 00 00 7b 9e 0a 00 00 00 00 00 ....{....... +5339 13.448565483 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916346 22 18 2033789 0 0x00000012 1 2033789 0 196609 0 12 00 00 00 7d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +5341 13.448819399 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595789 12 -1 695931 0 0xffffffff 0 -1 695931 0 ff ff ff ff 7b 9e 0a 00 00 00 00 00 ....{....... +5343 13.463159561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595801 12 -2 80015 79997 0xfffffffe 0 -2 80015 79997 fe ff ff ff 8f 38 01 00 7d 38 01 00 .....8..}8.. +5353 13.551492453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595813 12 26 704449 0 0x0000001a 0 26 704449 0 1a 00 00 00 c1 bf 0a 00 00 00 00 00 ............ +5355 13.551656961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595825 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 142540800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5357 13.551979065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916368 12 -1 704449 0 0xffffffff 0 -1 704449 0 ff ff ff ff c1 bf 0a 00 00 00 00 00 ............ +5359 13.552389383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916380 12 22 695932 0 0x00000016 0 22 695932 0 16 00 00 00 7c 9e 0a 00 00 00 00 00 ....|....... +5361 13.552548170 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916392 22 18 2033791 0 0x00000012 1 2033791 0 196609 0 12 00 00 00 7f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5363 13.552821636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595851 12 -1 695932 0 0xffffffff 0 -1 695932 0 ff ff ff ff 7c 9e 0a 00 00 00 00 00 ....|....... +5365 13.654562950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595863 12 26 704450 0 0x0000001a 0 26 704450 0 1a 00 00 00 c2 bf 0a 00 00 00 00 00 ............ +5367 13.654740810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595875 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 142671872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5369 13.655260324 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916414 12 -1 704450 0 0xffffffff 0 -1 704450 0 ff ff ff ff c2 bf 0a 00 00 00 00 00 ............ +5371 13.655559540 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916426 12 22 695933 0 0x00000016 0 22 695933 0 16 00 00 00 7d 9e 0a 00 00 00 00 00 ....}....... +5373 13.655723095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916438 22 18 2033793 0 0x00000012 1 2033793 0 196609 0 12 00 00 00 81 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5375 13.656077147 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595901 12 -1 695933 0 0xffffffff 0 -1 695933 0 ff ff ff ff 7d 9e 0a 00 00 00 00 00 ....}....... +5377 13.735796928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595913 12 34 704451 0 0x00000022 0 34 704451 0 22 00 00 00 c3 bf 0a 00 00 00 00 00 """..........." +5379 13.735997915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595925 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 6619136 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 65 00 02 00 00 00 00 00 63 1f 0f c3 9d 01 00 00 .....!...o3.......e.......c....... +5381 13.736101627 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595959 12 67 704452 0 0x00000043 0 67 704452 0 43 00 00 00 c4 bf 0a 00 00 00 00 00 C........... +5383 13.736186981 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331595971 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 65 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 56 b1 80 9d ?.....3...|8...........e.......=B.....&......... +5385 13.736427307 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916460 12 -1 704451 0 0xffffffff 0 -1 704451 0 ff ff ff ff c3 bf 0a 00 00 00 00 00 ............ +5387 13.736628056 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916472 12 -1 704452 0 0xffffffff 0 -1 704452 0 ff ff ff ff c4 bf 0a 00 00 00 00 00 ............ +5389 13.737405539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916484 12 52 695934 0 0x00000034 0 52 695934 0 34 00 00 00 7e 9e 0a 00 00 00 00 00 4...~....... +5391 13.737562656 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916496 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 65 00 02 00 00 00 00 00 00 00 36 95 4d 72 4a 01 00 00 "0...Dk.................L."".([.....e.........6.Mr" +5393 13.737771511 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596038 12 -1 695934 0 0xffffffff 0 -1 695934 0 ff ff ff ff 7e 9e 0a 00 00 00 00 00 ....~....... +5395 13.738524914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596050 12 30 704453 0 0x0000001e 0 30 704453 0 1e 00 00 00 c5 bf 0a 00 00 00 00 00 ............ +5397 13.738669872 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596062 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 142802944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 83 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5399 13.739016056 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916548 12 -1 704453 0 0xffffffff 0 -1 704453 0 ff ff ff ff c5 bf 0a 00 00 00 00 00 ............ +5401 13.739541054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916560 12 26 695935 0 0x0000001a 0 26 695935 0 1a 00 00 00 7f 9e 0a 00 00 00 00 00 ............ +5403 13.739678621 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916572 26 22 2033795 0 0x00000016 1 2033795 0 196609 0 16 00 00 00 83 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5405 13.739856958 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596092 12 -1 695935 0 0xffffffff 0 -1 695935 0 ff ff ff ff 7f 9e 0a 00 00 00 00 00 ............ +5420 13.757453680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596104 12 26 704454 0 0x0000001a 0 26 704454 0 1a 00 00 00 c6 bf 0a 00 00 00 00 00 ............ +5422 13.757617474 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596116 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 142934016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5424 13.757916927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916598 12 -1 704454 0 0xffffffff 0 -1 704454 0 ff ff ff ff c6 bf 0a 00 00 00 00 00 ............ +5429 13.758288383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916610 12 22 695936 0 0x00000016 0 22 695936 0 16 00 00 00 80 9e 0a 00 00 00 00 00 ............ +5431 13.758435726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916622 22 18 2033797 0 0x00000012 1 2033797 0 196609 0 12 00 00 00 85 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5435 13.758680820 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596142 12 -1 695936 0 0xffffffff 0 -1 695936 0 ff ff ff ff 80 9e 0a 00 00 00 00 00 ............ +5453 13.847978115 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916644 12 -2 79998 80015 0xfffffffe 0 -2 79998 80015 fe ff ff ff 7e 38 01 00 8f 38 01 00 ....~8...8.. +5459 13.860040903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596154 12 26 704455 0 0x0000001a 0 26 704455 0 1a 00 00 00 c7 bf 0a 00 00 00 00 00 ............ +5461 13.860210419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596166 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 143065088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5463 13.860574484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916656 12 -1 704455 0 0xffffffff 0 -1 704455 0 ff ff ff ff c7 bf 0a 00 00 00 00 00 ............ +5465 13.860974550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916668 12 22 695937 0 0x00000016 0 22 695937 0 16 00 00 00 81 9e 0a 00 00 00 00 00 ............ +5467 13.861133814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916680 22 18 2033799 0 0x00000012 1 2033799 0 196609 0 12 00 00 00 87 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5469 13.861407518 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596192 12 -1 695937 0 0xffffffff 0 -1 695937 0 ff ff ff ff 81 9e 0a 00 00 00 00 00 ............ +5479 13.963901758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596204 12 -2 80016 79998 0xfffffffe 0 -2 80016 79998 fe ff ff ff 90 38 01 00 7e 38 01 00 .....8..~8.. +5483 13.964113712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596216 12 26 704456 0 0x0000001a 0 26 704456 0 1a 00 00 00 c8 bf 0a 00 00 00 00 00 ............ +5485 13.964281797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596228 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 143196160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5487 13.964669228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916702 12 -1 704456 0 0xffffffff 0 -1 704456 0 ff ff ff ff c8 bf 0a 00 00 00 00 00 ............ +5489 13.965179920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916714 12 22 695938 0 0x00000016 0 22 695938 0 16 00 00 00 82 9e 0a 00 00 00 00 00 ............ +5491 13.965389490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916726 22 18 2033801 0 0x00000012 1 2033801 0 196609 0 12 00 00 00 89 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5493 13.965686798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596254 12 -1 695938 0 0xffffffff 0 -1 695938 0 ff ff ff ff 82 9e 0a 00 00 00 00 00 ............ +5499 14.039184809 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596266 12 34 704457 0 0x00000022 0 34 704457 0 22 00 00 00 c9 bf 0a 00 00 00 00 00 """..........." +5501 14.039447069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596278 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 6684672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 66 00 02 00 00 00 00 00 92 20 0f c3 9d 01 00 00 .....!...o3.......f........ ...... +5503 14.039565563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596312 12 67 704458 0 0x00000043 0 67 704458 0 43 00 00 00 ca bf 0a 00 00 00 00 00 C........... +5505 14.039661169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596324 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 66 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 c3 c6 92 9d ?.....3...|8...........f.......=B.....&......... +5506 14.039740562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916748 12 -1 704457 0 0xffffffff 0 -1 704457 0 ff ff ff ff c9 bf 0a 00 00 00 00 00 ............ +5507 14.039835930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916760 12 -1 704458 0 0xffffffff 0 -1 704458 0 ff ff ff ff ca bf 0a 00 00 00 00 00 ............ +5510 14.041131496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916772 12 52 695939 0 0x00000034 0 52 695939 0 34 00 00 00 83 9e 0a 00 00 00 00 00 4........... +5512 14.041308165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916784 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 66 00 02 00 00 00 00 00 00 00 80 ec 7b 72 4a 01 00 00 "0...Dk.................L."".([.....f...........{r" +5514 14.041582823 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596391 12 -1 695939 0 0xffffffff 0 -1 695939 0 ff ff ff ff 83 9e 0a 00 00 00 00 00 ............ +5515 14.042425156 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596403 12 30 704459 0 0x0000001e 0 30 704459 0 1e 00 00 00 cb bf 0a 00 00 00 00 00 ............ +5516 14.042581081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596415 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 143327232 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5517 14.042986393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916836 12 -1 704459 0 0xffffffff 0 -1 704459 0 ff ff ff ff cb bf 0a 00 00 00 00 00 ............ +5519 14.043882847 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916848 12 26 695940 0 0x0000001a 0 26 695940 0 1a 00 00 00 84 9e 0a 00 00 00 00 00 ............ +5521 14.044072628 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916860 26 22 2033803 0 0x00000016 1 2033803 0 196609 0 16 00 00 00 8b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5523 14.044330835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596445 12 -1 695940 0 0xffffffff 0 -1 695940 0 ff ff ff ff 84 9e 0a 00 00 00 00 00 ............ +5546 14.066474915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596457 12 26 704460 0 0x0000001a 0 26 704460 0 1a 00 00 00 cc bf 0a 00 00 00 00 00 ............ +5548 14.066635609 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596469 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 143458304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5550 14.066920280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916886 12 -1 704460 0 0xffffffff 0 -1 704460 0 ff ff ff ff cc bf 0a 00 00 00 00 00 ............ +5552 14.067369223 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916898 12 22 695941 0 0x00000016 0 22 695941 0 16 00 00 00 85 9e 0a 00 00 00 00 00 ............ +5554 14.067531347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916910 22 18 2033805 0 0x00000012 1 2033805 0 196609 0 12 00 00 00 8d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5556 14.067802429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596495 12 -1 695941 0 0xffffffff 0 -1 695941 0 ff ff ff ff 85 9e 0a 00 00 00 00 00 ............ +5609 14.168899298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596507 12 26 704461 0 0x0000001a 0 26 704461 0 1a 00 00 00 cd bf 0a 00 00 00 00 00 ............ +5611 14.169091940 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596519 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 143589376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5613 14.169582605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916932 12 -1 704461 0 0xffffffff 0 -1 704461 0 ff ff ff ff cd bf 0a 00 00 00 00 00 ............ +5615 14.169960499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916944 12 22 695942 0 0x00000016 0 22 695942 0 16 00 00 00 86 9e 0a 00 00 00 00 00 ............ +5617 14.170117855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916956 22 18 2033807 0 0x00000012 1 2033807 0 196609 0 12 00 00 00 8f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5619 14.170413017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596545 12 -1 695942 0 0xffffffff 0 -1 695942 0 ff ff ff ff 86 9e 0a 00 00 00 00 00 ............ +5653 14.272956848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596557 12 26 704462 0 0x0000001a 0 26 704462 0 1a 00 00 00 ce bf 0a 00 00 00 00 00 ............ +5655 14.273122072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596569 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 143720448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5657 14.273497581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916978 12 -1 704462 0 0xffffffff 0 -1 704462 0 ff ff ff ff ce bf 0a 00 00 00 00 00 ............ +5659 14.274557590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375916990 12 22 695943 0 0x00000016 0 22 695943 0 16 00 00 00 87 9e 0a 00 00 00 00 00 ............ +5661 14.274717331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917002 22 18 2033809 0 0x00000012 1 2033809 0 196609 0 12 00 00 00 91 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5663 14.274968863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596595 12 -1 695943 0 0xffffffff 0 -1 695943 0 ff ff ff ff 87 9e 0a 00 00 00 00 00 ............ +5665 14.344563484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596607 12 101 704463 0 0x00000065 0 101 704463 0 65 00 00 00 cf bf 0a 00 00 00 00 00 e........... +5667 14.344758987 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596619 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 00 02 00 00 00 00 00 c3 21 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 67 00 02 00 00 00 00 .....!...o3.......g........!......?.....3...|8.. +5669 14.345126152 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917024 12 -1 704463 0 0xffffffff 0 -1 704463 0 ff ff ff ff cf bf 0a 00 00 00 00 00 ............ +5672 14.346198797 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917036 12 52 695944 0 0x00000034 0 52 695944 0 34 00 00 00 88 9e 0a 00 00 00 00 00 4........... +5675 14.346408606 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917048 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 67 00 02 00 00 00 00 00 00 00 39 7a aa 72 4a 01 00 00 "0...Dk.................L."".([.....g.........9z.r" +5677 14.346628666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596720 12 -1 695944 0 0xffffffff 0 -1 695944 0 ff ff ff ff 88 9e 0a 00 00 00 00 00 ............ +5679 14.347355843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596732 12 30 704464 0 0x0000001e 0 30 704464 0 1e 00 00 00 d0 bf 0a 00 00 00 00 00 ............ +5681 14.347495317 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596744 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 143851520 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5683 14.347779989 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917100 12 -1 704464 0 0xffffffff 0 -1 704464 0 ff ff ff ff d0 bf 0a 00 00 00 00 00 ............ +5685 14.348019600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917112 12 -2 79999 80016 0xfffffffe 0 -2 79999 80016 fe ff ff ff 7f 38 01 00 90 38 01 00 .....8...8.. +5691 14.348830700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917124 12 26 695945 0 0x0000001a 0 26 695945 0 1a 00 00 00 89 9e 0a 00 00 00 00 00 ............ +5693 14.348989487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917136 26 22 2033811 0 0x00000016 1 2033811 0 196609 0 16 00 00 00 93 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5695 14.349318027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596774 12 -1 695945 0 0xffffffff 0 -1 695945 0 ff ff ff ff 89 9e 0a 00 00 00 00 00 ............ +5708 14.375865221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596786 12 26 704465 0 0x0000001a 0 26 704465 0 1a 00 00 00 d1 bf 0a 00 00 00 00 00 ............ +5711 14.376035452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596798 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 143982592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5715 14.376427650 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917162 12 -1 704465 0 0xffffffff 0 -1 704465 0 ff ff ff ff d1 bf 0a 00 00 00 00 00 ............ +5717 14.376801729 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917174 12 22 695946 0 0x00000016 0 22 695946 0 16 00 00 00 8a 9e 0a 00 00 00 00 00 ............ +5721 14.376964569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917186 22 18 2033813 0 0x00000012 1 2033813 0 196609 0 12 00 00 00 95 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5723 14.377256393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596824 12 -1 695946 0 0xffffffff 0 -1 695946 0 ff ff ff ff 8a 9e 0a 00 00 00 00 00 ............ +5750 14.465757132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596836 12 -2 80017 79999 0xfffffffe 0 -2 80017 79999 fe ff ff ff 91 38 01 00 7f 38 01 00 .....8...8.. +5753 14.478839636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596848 12 26 704466 0 0x0000001a 0 26 704466 0 1a 00 00 00 d2 bf 0a 00 00 00 00 00 ............ +5755 14.478999615 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596860 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 144113664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5757 14.479440689 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917208 12 -1 704466 0 0xffffffff 0 -1 704466 0 ff ff ff ff d2 bf 0a 00 00 00 00 00 ............ +5759 14.479826927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917220 12 22 695947 0 0x00000016 0 22 695947 0 16 00 00 00 8b 9e 0a 00 00 00 00 00 ............ +5761 14.480540991 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917232 22 18 2033815 0 0x00000012 1 2033815 0 196609 0 12 00 00 00 97 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5763 14.480824232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596886 12 -1 695947 0 0xffffffff 0 -1 695947 0 ff ff ff ff 8b 9e 0a 00 00 00 00 00 ............ +5771 14.582011223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596898 12 26 704467 0 0x0000001a 0 26 704467 0 1a 00 00 00 d3 bf 0a 00 00 00 00 00 ............ +5773 14.582207918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596910 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 144244736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5775 14.582605124 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917254 12 -1 704467 0 0xffffffff 0 -1 704467 0 ff ff ff ff d3 bf 0a 00 00 00 00 00 ............ +5777 14.583194256 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917266 12 22 695948 0 0x00000016 0 22 695948 0 16 00 00 00 8c 9e 0a 00 00 00 00 00 ............ +5779 14.583417177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917278 22 18 2033817 0 0x00000012 1 2033817 0 196609 0 12 00 00 00 99 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5781 14.583756208 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596936 12 -1 695948 0 0xffffffff 0 -1 695948 0 ff ff ff ff 8c 9e 0a 00 00 00 00 00 ............ +5783 14.648716450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596948 12 101 704468 0 0x00000065 0 101 704468 0 65 00 00 00 d4 bf 0a 00 00 00 00 00 e........... +5785 14.648901224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331596960 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 00 02 00 00 00 00 00 f4 22 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 68 00 02 00 00 00 00 ".....!...o3.......h........""......?.....3...|8.." +5787 14.649312973 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917300 12 -1 704468 0 0xffffffff 0 -1 704468 0 ff ff ff ff d4 bf 0a 00 00 00 00 00 ............ +5789 14.651300669 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917312 12 52 695949 0 0x00000034 0 52 695949 0 34 00 00 00 8d 9e 0a 00 00 00 00 00 4........... +5791 14.651460409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917324 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 68 00 02 00 00 00 00 00 00 00 de 07 d9 72 4a 01 00 00 "0...Dk.................L."".([.....h............r" +5793 14.651679277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597061 12 -1 695949 0 0xffffffff 0 -1 695949 0 ff ff ff ff 8d 9e 0a 00 00 00 00 00 ............ +5795 14.652546644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597073 12 30 704469 0 0x0000001e 0 30 704469 0 1e 00 00 00 d5 bf 0a 00 00 00 00 00 ............ +5797 14.652797461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597085 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 144375808 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5799 14.653049231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917376 12 -1 704469 0 0xffffffff 0 -1 704469 0 ff ff ff ff d5 bf 0a 00 00 00 00 00 ............ +5801 14.653474092 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917388 12 26 695950 0 0x0000001a 0 26 695950 0 1a 00 00 00 8e 9e 0a 00 00 00 00 00 ............ +5803 14.653646946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917400 26 22 2033819 0 0x00000016 1 2033819 0 196609 0 16 00 00 00 9b 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5805 14.653879881 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597115 12 -1 695950 0 0xffffffff 0 -1 695950 0 ff ff ff ff 8e 9e 0a 00 00 00 00 00 ............ +5807 14.686395407 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597127 12 26 704470 0 0x0000001a 0 26 704470 0 1a 00 00 00 d6 bf 0a 00 00 00 00 00 ............ +5809 14.686577082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597139 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 144506880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5811 14.686943531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917426 12 -1 704470 0 0xffffffff 0 -1 704470 0 ff ff ff ff d6 bf 0a 00 00 00 00 00 ............ +5813 14.687361002 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917438 12 22 695951 0 0x00000016 0 22 695951 0 16 00 00 00 8f 9e 0a 00 00 00 00 00 ............ +5815 14.687514782 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917450 22 18 2033821 0 0x00000012 1 2033821 0 196609 0 12 00 00 00 9d 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5817 14.687810183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597165 12 -1 695951 0 0xffffffff 0 -1 695951 0 ff ff ff ff 8f 9e 0a 00 00 00 00 00 ............ +5821 14.790482283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597177 12 26 704471 0 0x0000001a 0 26 704471 0 1a 00 00 00 d7 bf 0a 00 00 00 00 00 ............ +5823 14.790722132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597189 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 144637952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5825 14.791549206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917472 12 -1 704471 0 0xffffffff 0 -1 704471 0 ff ff ff ff d7 bf 0a 00 00 00 00 00 ............ +5827 14.792384386 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917484 12 22 695952 0 0x00000016 0 22 695952 0 16 00 00 00 90 9e 0a 00 00 00 00 00 ............ +5829 14.792544603 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917496 22 18 2033823 0 0x00000012 1 2033823 0 196609 0 12 00 00 00 9f 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5831 14.793054819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597215 12 -1 695952 0 0xffffffff 0 -1 695952 0 ff ff ff ff 90 9e 0a 00 00 00 00 00 ............ +5835 14.849383116 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917518 12 -2 80000 80017 0xfffffffe 0 -2 80000 80017 fe ff ff ff 80 38 01 00 91 38 01 00 .....8...8.. +5841 14.894223928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597227 12 26 704472 0 0x0000001a 0 26 704472 0 1a 00 00 00 d8 bf 0a 00 00 00 00 00 ............ +5843 14.894436359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597239 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 144769024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5845 14.894801617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917530 12 -1 704472 0 0xffffffff 0 -1 704472 0 ff ff ff ff d8 bf 0a 00 00 00 00 00 ............ +5847 14.895197630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917542 12 22 695953 0 0x00000016 0 22 695953 0 16 00 00 00 91 9e 0a 00 00 00 00 00 ............ +5849 14.895353079 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917554 22 18 2033825 0 0x00000012 1 2033825 0 196609 0 12 00 00 00 a1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5851 14.895775795 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597265 12 -1 695953 0 0xffffffff 0 -1 695953 0 ff ff ff ff 91 9e 0a 00 00 00 00 00 ............ +5857 14.953314543 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597277 12 34 704473 0 0x00000022 0 34 704473 0 22 00 00 00 d9 bf 0a 00 00 00 00 00 """..........." +5859 14.953514576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597289 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 6881280 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 69 00 02 00 00 00 00 00 24 24 0f c3 9d 01 00 00 .....!...o3.......i.......$$...... +5861 14.953604937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597323 12 67 704474 0 0x00000043 0 67 704474 0 43 00 00 00 da bf 0a 00 00 00 00 00 C........... +5863 14.953687429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597335 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 69 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 91 43 c9 9d ?.....3...|8...........i.......=B.....&......... +5865 14.953934193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917576 12 -1 704473 0 0xffffffff 0 -1 704473 0 ff ff ff ff d9 bf 0a 00 00 00 00 00 ............ +5867 14.954131365 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917588 12 -1 704474 0 0xffffffff 0 -1 704474 0 ff ff ff ff da bf 0a 00 00 00 00 00 ............ +5869 14.954853296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917600 12 52 695954 0 0x00000034 0 52 695954 0 34 00 00 00 92 9e 0a 00 00 00 00 00 4........... +5871 14.954998255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917612 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 69 00 02 00 00 00 00 00 00 00 4a 59 07 73 4a 01 00 00 "0...Dk.................L."".([.....i.........JY.s" +5873 14.955359697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597402 12 -1 695954 0 0xffffffff 0 -1 695954 0 ff ff ff ff 92 9e 0a 00 00 00 00 00 ............ +5875 14.956105709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597414 12 30 704475 0 0x0000001e 0 30 704475 0 1e 00 00 00 db bf 0a 00 00 00 00 00 ............ +5877 14.956244707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597426 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 144900096 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5879 14.956462145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917664 12 -1 704475 0 0xffffffff 0 -1 704475 0 ff ff ff ff db bf 0a 00 00 00 00 00 ............ +5881 14.956952572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917676 12 26 695955 0 0x0000001a 0 26 695955 0 1a 00 00 00 93 9e 0a 00 00 00 00 00 ............ +5883 14.957161188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917688 26 22 2033827 0 0x00000016 1 2033827 0 196609 0 16 00 00 00 a3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5885 14.957515478 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597456 12 -1 695955 0 0xffffffff 0 -1 695955 0 ff ff ff ff 93 9e 0a 00 00 00 00 00 ............ +5888 14.966780901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597468 12 -2 80018 80000 0xfffffffe 0 -2 80018 80000 fe ff ff ff 92 38 01 00 80 38 01 00 .....8...8.. +5893 14.997444391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597480 12 26 704476 0 0x0000001a 0 26 704476 0 1a 00 00 00 dc bf 0a 00 00 00 00 00 ............ +5895 14.997640848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597492 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 145031168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5897 14.998160362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917714 12 -1 704476 0 0xffffffff 0 -1 704476 0 ff ff ff ff dc bf 0a 00 00 00 00 00 ............ +5899 14.998646498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917726 12 22 695956 0 0x00000016 0 22 695956 0 16 00 00 00 94 9e 0a 00 00 00 00 00 ............ +5901 14.998866320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917738 22 18 2033829 0 0x00000012 1 2033829 0 196609 0 12 00 00 00 a5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5903 14.999139786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597518 12 -1 695956 0 0xffffffff 0 -1 695956 0 ff ff ff ff 94 9e 0a 00 00 00 00 00 ............ +5909 15.102054596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597530 12 26 704477 0 0x0000001a 0 26 704477 0 1a 00 00 00 dd bf 0a 00 00 00 00 00 ............ +5911 15.102296829 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597542 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 145162240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5913 15.102767229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917760 12 -1 704477 0 0xffffffff 0 -1 704477 0 ff ff ff ff dd bf 0a 00 00 00 00 00 ............ +5915 15.103454113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917772 12 22 695957 0 0x00000016 0 22 695957 0 16 00 00 00 95 9e 0a 00 00 00 00 00 ............ +5917 15.103618145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917784 22 18 2033831 0 0x00000012 1 2033831 0 196609 0 12 00 00 00 a7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5919 15.103905916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597568 12 -1 695957 0 0xffffffff 0 -1 695957 0 ff ff ff ff 95 9e 0a 00 00 00 00 00 ............ +5921 15.204889297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597580 12 26 704478 0 0x0000001a 0 26 704478 0 1a 00 00 00 de bf 0a 00 00 00 00 00 ............ +5923 15.205096006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597592 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 145293312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5925 15.205513954 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917806 12 -1 704478 0 0xffffffff 0 -1 704478 0 ff ff ff ff de bf 0a 00 00 00 00 00 ............ +5927 15.206053495 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917818 12 22 695958 0 0x00000016 0 22 695958 0 16 00 00 00 96 9e 0a 00 00 00 00 00 ............ +5929 15.206209898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917830 22 18 2033833 0 0x00000012 1 2033833 0 196609 0 12 00 00 00 a9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5931 15.206509590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597618 12 -1 695958 0 0xffffffff 0 -1 695958 0 ff ff ff ff 96 9e 0a 00 00 00 00 00 ............ +5935 15.258374929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597630 12 101 704479 0 0x00000065 0 101 704479 0 65 00 00 00 df bf 0a 00 00 00 00 00 e........... +5937 15.258550882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597642 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 00 02 00 00 00 00 00 55 25 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6a 00 02 00 00 00 00 .....!...o3.......j.......U%......?.....3...|8.. +5939 15.258819342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917852 12 -1 704479 0 0xffffffff 0 -1 704479 0 ff ff ff ff df bf 0a 00 00 00 00 00 ............ +5941 15.259702206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917864 12 52 695959 0 0x00000034 0 52 695959 0 34 00 00 00 97 9e 0a 00 00 00 00 00 4........... +5943 15.259864330 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917876 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6a 00 02 00 00 00 00 00 00 00 d3 dd 35 73 4a 01 00 00 "0...Dk.................L."".([.....j...........5s" +5945 15.260215521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597743 12 -1 695959 0 0xffffffff 0 -1 695959 0 ff ff ff ff 97 9e 0a 00 00 00 00 00 ............ +5947 15.261016369 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597755 12 30 704480 0 0x0000001e 0 30 704480 0 1e 00 00 00 e0 bf 0a 00 00 00 00 00 ............ +5949 15.261174202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597767 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 145424384 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5951 15.261427402 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917928 12 -1 704480 0 0xffffffff 0 -1 704480 0 ff ff ff ff e0 bf 0a 00 00 00 00 00 ............ +5953 15.261903763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917940 12 26 695960 0 0x0000001a 0 26 695960 0 1a 00 00 00 98 9e 0a 00 00 00 00 00 ............ +5955 15.262043715 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917952 26 22 2033835 0 0x00000016 1 2033835 0 196609 0 16 00 00 00 ab 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5957 15.262325525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597797 12 -1 695960 0 0xffffffff 0 -1 695960 0 ff ff ff ff 98 9e 0a 00 00 00 00 00 ............ +5959 15.307500839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597809 12 26 704481 0 0x0000001a 0 26 704481 0 1a 00 00 00 e1 bf 0a 00 00 00 00 00 ............ +5961 15.307680130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597821 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 145555456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5963 15.308105230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917978 12 -1 704481 0 0xffffffff 0 -1 704481 0 ff ff ff ff e1 bf 0a 00 00 00 00 00 ............ +5965 15.308757782 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375917990 12 22 695961 0 0x00000016 0 22 695961 0 16 00 00 00 99 9e 0a 00 00 00 00 00 ............ +5967 15.308948517 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918002 22 18 2033837 0 0x00000012 1 2033837 0 196609 0 12 00 00 00 ad 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5969 15.309311628 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597847 12 -1 695961 0 0xffffffff 0 -1 695961 0 ff ff ff ff 99 9e 0a 00 00 00 00 00 ............ +5973 15.350424528 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918024 12 -2 80001 80018 0xfffffffe 0 -2 80001 80018 fe ff ff ff 81 38 01 00 92 38 01 00 .....8...8.. +5979 15.410500526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597859 12 26 704482 0 0x0000001a 0 26 704482 0 1a 00 00 00 e2 bf 0a 00 00 00 00 00 ............ +5981 15.410728931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597871 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 145686528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +5983 15.411100626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918036 12 -1 704482 0 0xffffffff 0 -1 704482 0 ff ff ff ff e2 bf 0a 00 00 00 00 00 ............ +5985 15.411610365 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918048 12 22 695962 0 0x00000016 0 22 695962 0 16 00 00 00 9a 9e 0a 00 00 00 00 00 ............ +5987 15.411778927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918060 22 18 2033839 0 0x00000012 1 2033839 0 196609 0 12 00 00 00 af 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5989 15.412094116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597897 12 -1 695962 0 0xffffffff 0 -1 695962 0 ff ff ff ff 9a 9e 0a 00 00 00 00 00 ............ +5995 15.469126940 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597909 12 -2 80019 80001 0xfffffffe 0 -2 80019 80001 fe ff ff ff 93 38 01 00 81 38 01 00 .....8...8.. +6002 15.514291048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597921 12 26 704483 0 0x0000001a 0 26 704483 0 1a 00 00 00 e3 bf 0a 00 00 00 00 00 ............ +6004 15.514453888 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597933 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 145817600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6006 15.514878273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918082 12 -1 704483 0 0xffffffff 0 -1 704483 0 ff ff ff ff e3 bf 0a 00 00 00 00 00 ............ +6008 15.516246080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918094 12 22 695963 0 0x00000016 0 22 695963 0 16 00 00 00 9b 9e 0a 00 00 00 00 00 ............ +6010 15.516406775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918106 22 18 2033841 0 0x00000012 1 2033841 0 196609 0 12 00 00 00 b1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6012 15.516719341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597959 12 -1 695963 0 0xffffffff 0 -1 695963 0 ff ff ff ff 9b 9e 0a 00 00 00 00 00 ............ +6018 15.562807083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597971 12 101 704484 0 0x00000065 0 101 704484 0 65 00 00 00 e4 bf 0a 00 00 00 00 00 e........... +6020 15.562994003 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331597983 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6b 00 02 00 00 00 00 00 86 26 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6b 00 02 00 00 00 00 .....!...o3.......k........&......?.....3...|8.. +6022 15.563383102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918128 12 -1 704484 0 0xffffffff 0 -1 704484 0 ff ff ff ff e4 bf 0a 00 00 00 00 00 ............ +6024 15.564121246 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918140 12 52 695964 0 0x00000034 0 52 695964 0 34 00 00 00 9c 9e 0a 00 00 00 00 00 4........... +6026 15.564287663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918152 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6b 00 02 00 00 00 00 00 00 00 09 51 64 73 4a 01 00 00 "0...Dk.................L."".([.....k..........Qds" +6028 15.564637184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598084 12 -1 695964 0 0xffffffff 0 -1 695964 0 ff ff ff ff 9c 9e 0a 00 00 00 00 00 ............ +6030 15.565437794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598096 12 30 704485 0 0x0000001e 0 30 704485 0 1e 00 00 00 e5 bf 0a 00 00 00 00 00 ............ +6032 15.565600872 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598108 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 145948672 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6034 15.565945864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918204 12 -1 704485 0 0xffffffff 0 -1 704485 0 ff ff ff ff e5 bf 0a 00 00 00 00 00 ............ +6036 15.566298723 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918216 12 26 695965 0 0x0000001a 0 26 695965 0 1a 00 00 00 9d 9e 0a 00 00 00 00 00 ............ +6038 15.566456318 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918228 26 22 2033843 0 0x00000016 1 2033843 0 196609 0 16 00 00 00 b3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6040 15.566657305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598138 12 -1 695965 0 0xffffffff 0 -1 695965 0 ff ff ff ff 9d 9e 0a 00 00 00 00 00 ............ +6043 15.619463444 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598150 12 26 704486 0 0x0000001a 0 26 704486 0 1a 00 00 00 e6 bf 0a 00 00 00 00 00 ............ +6045 15.619642496 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598162 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 146079744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6047 15.620041132 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918254 12 -1 704486 0 0xffffffff 0 -1 704486 0 ff ff ff ff e6 bf 0a 00 00 00 00 00 ............ +6049 15.620476723 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918266 12 22 695966 0 0x00000016 0 22 695966 0 16 00 00 00 9e 9e 0a 00 00 00 00 00 ............ +6051 15.620631695 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918278 22 18 2033845 0 0x00000012 1 2033845 0 196609 0 12 00 00 00 b5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6053 15.620977402 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598188 12 -1 695966 0 0xffffffff 0 -1 695966 0 ff ff ff ff 9e 9e 0a 00 00 00 00 00 ............ +6056 15.721902370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598200 12 26 704487 0 0x0000001a 0 26 704487 0 1a 00 00 00 e7 bf 0a 00 00 00 00 00 ............ +6058 15.722067595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598212 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 146210816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6060 15.722393513 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918300 12 -1 704487 0 0xffffffff 0 -1 704487 0 ff ff ff ff e7 bf 0a 00 00 00 00 00 ............ +6062 15.723180294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918312 12 22 695967 0 0x00000016 0 22 695967 0 16 00 00 00 9f 9e 0a 00 00 00 00 00 ............ +6064 15.723339796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918324 22 18 2033847 0 0x00000012 1 2033847 0 196609 0 12 00 00 00 b7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6066 15.723603010 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598238 12 -1 695967 0 0xffffffff 0 -1 695967 0 ff ff ff ff 9f 9e 0a 00 00 00 00 00 ............ +6071 15.826524019 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598250 12 26 704488 0 0x0000001a 0 26 704488 0 1a 00 00 00 e8 bf 0a 00 00 00 00 00 ............ +6073 15.826705217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598262 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 146341888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6075 15.827168465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918346 12 -1 704488 0 0xffffffff 0 -1 704488 0 ff ff ff ff e8 bf 0a 00 00 00 00 00 ............ +6077 15.827682257 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918358 12 22 695968 0 0x00000016 0 22 695968 0 16 00 00 00 a0 9e 0a 00 00 00 00 00 ............ +6079 15.827912331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918370 22 18 2033849 0 0x00000012 1 2033849 0 196609 0 12 00 00 00 b9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6081 15.828179598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598288 12 -1 695968 0 0xffffffff 0 -1 695968 0 ff ff ff ff a0 9e 0a 00 00 00 00 00 ............ +6085 15.850392818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918392 12 -2 80002 80019 0xfffffffe 0 -2 80002 80019 fe ff ff ff 82 38 01 00 93 38 01 00 .....8...8.. +6091 15.866858482 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598300 12 34 704489 0 0x00000022 0 34 704489 0 22 00 00 00 e9 bf 0a 00 00 00 00 00 """..........." +6093 15.867016315 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598312 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 7077888 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6c 00 02 00 00 00 00 00 b6 27 0f c3 9d 01 00 00 .....!...o3.......l........'...... +6095 15.867168188 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598346 12 67 704490 0 0x00000043 0 67 704490 0 43 00 00 00 ea bf 0a 00 00 00 00 00 C........... +6097 15.867372990 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598358 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6c 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 c4 c2 ff 9d ?.....3...|8...........l.......=B.....&......... +6098 15.867381573 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918404 12 -1 704489 0 0xffffffff 0 -1 704489 0 ff ff ff ff e9 bf 0a 00 00 00 00 00 ............ +6101 15.867650747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918416 12 -1 704490 0 0xffffffff 0 -1 704490 0 ff ff ff ff ea bf 0a 00 00 00 00 00 ............ +6103 15.868451118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918428 12 52 695969 0 0x00000034 0 52 695969 0 34 00 00 00 a1 9e 0a 00 00 00 00 00 4........... +6105 15.868619442 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918440 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6c 00 02 00 00 00 00 00 00 00 9c bf 92 73 4a 01 00 00 "0...Dk.................L."".([.....l............s" +6107 15.868967295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598425 12 -1 695969 0 0xffffffff 0 -1 695969 0 ff ff ff ff a1 9e 0a 00 00 00 00 00 ............ +6108 15.869820595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598437 12 30 704491 0 0x0000001e 0 30 704491 0 1e 00 00 00 eb bf 0a 00 00 00 00 00 ............ +6110 15.869952917 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598449 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 146472960 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6112 15.870356798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918492 12 -1 704491 0 0xffffffff 0 -1 704491 0 ff ff ff ff eb bf 0a 00 00 00 00 00 ............ +6114 15.870689154 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918504 12 26 695970 0 0x0000001a 0 26 695970 0 1a 00 00 00 a2 9e 0a 00 00 00 00 00 ............ +6116 15.870906115 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918516 26 22 2033851 0 0x00000016 1 2033851 0 196609 0 16 00 00 00 bb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6118 15.871161938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598479 12 -1 695970 0 0xffffffff 0 -1 695970 0 ff ff ff ff a2 9e 0a 00 00 00 00 00 ............ +6122 15.930357695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598491 12 26 704492 0 0x0000001a 0 26 704492 0 1a 00 00 00 ec bf 0a 00 00 00 00 00 ............ +6124 15.930532455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598503 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 146604032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6126 15.930822134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918542 12 -1 704492 0 0xffffffff 0 -1 704492 0 ff ff ff ff ec bf 0a 00 00 00 00 00 ............ +6130 15.931660414 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918554 12 22 695971 0 0x00000016 0 22 695971 0 16 00 00 00 a3 9e 0a 00 00 00 00 00 ............ +6132 15.931919575 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918566 22 18 2033853 0 0x00000012 1 2033853 0 196609 0 12 00 00 00 bd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6134 15.932201147 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598529 12 -1 695971 0 0xffffffff 0 -1 695971 0 ff ff ff ff a3 9e 0a 00 00 00 00 00 ............ +6137 15.970098257 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598541 12 -2 80020 80002 0xfffffffe 0 -2 80020 80002 fe ff ff ff 94 38 01 00 82 38 01 00 .....8...8.. +6145 16.033192635 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598553 12 26 704493 0 0x0000001a 0 26 704493 0 1a 00 00 00 ed bf 0a 00 00 00 00 00 ............ +6147 16.033388138 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598565 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 146735104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6149 16.033763170 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918588 12 -1 704493 0 0xffffffff 0 -1 704493 0 ff ff ff ff ed bf 0a 00 00 00 00 00 ............ +6151 16.034283161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918600 12 22 695972 0 0x00000016 0 22 695972 0 16 00 00 00 a4 9e 0a 00 00 00 00 00 ............ +6153 16.034428596 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918612 22 18 2033855 0 0x00000012 1 2033855 0 196609 0 12 00 00 00 bf 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6155 16.034671783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598591 12 -1 695972 0 0xffffffff 0 -1 695972 0 ff ff ff ff a4 9e 0a 00 00 00 00 00 ............ +6162 16.135837078 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598603 12 26 704494 0 0x0000001a 0 26 704494 0 1a 00 00 00 ee bf 0a 00 00 00 00 00 ............ +6164 16.136004210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598615 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 146866176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6166 16.136377335 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918634 12 -1 704494 0 0xffffffff 0 -1 704494 0 ff ff ff ff ee bf 0a 00 00 00 00 00 ............ +6168 16.136928320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918646 12 22 695973 0 0x00000016 0 22 695973 0 16 00 00 00 a5 9e 0a 00 00 00 00 00 ............ +6170 16.137091160 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918658 22 18 2033857 0 0x00000012 1 2033857 0 196609 0 12 00 00 00 c1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6172 16.137388468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598641 12 -1 695973 0 0xffffffff 0 -1 695973 0 ff ff ff ff a5 9e 0a 00 00 00 00 00 ............ +6175 16.171160936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598653 12 101 704495 0 0x00000065 0 101 704495 0 65 00 00 00 ef bf 0a 00 00 00 00 00 e........... +6177 16.171304226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598665 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 00 02 00 00 00 00 00 e6 28 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6d 00 02 00 00 00 00 .....!...o3.......m........(......?.....3...|8.. +6179 16.171627522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918680 12 -1 704495 0 0xffffffff 0 -1 704495 0 ff ff ff ff ef bf 0a 00 00 00 00 00 ............ +6181 16.172860622 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918692 12 52 695974 0 0x00000034 0 52 695974 0 34 00 00 00 a6 9e 0a 00 00 00 00 00 4........... +6183 16.173019648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918704 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6d 00 02 00 00 00 00 00 00 00 26 32 c1 73 4a 01 00 00 "0...Dk.................L."".([.....m.........&2.s" +6185 16.173276424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598766 12 -1 695974 0 0xffffffff 0 -1 695974 0 ff ff ff ff a6 9e 0a 00 00 00 00 00 ............ +6187 16.174048901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598778 12 30 704496 0 0x0000001e 0 30 704496 0 1e 00 00 00 f0 bf 0a 00 00 00 00 00 ............ +6189 16.174221039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598790 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 146997248 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6191 16.174503803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918756 12 -1 704496 0 0xffffffff 0 -1 704496 0 ff ff ff ff f0 bf 0a 00 00 00 00 00 ............ +6193 16.174925089 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918768 12 26 695975 0 0x0000001a 0 26 695975 0 1a 00 00 00 a7 9e 0a 00 00 00 00 00 ............ +6195 16.175091267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918780 26 22 2033859 0 0x00000016 1 2033859 0 196609 0 16 00 00 00 c3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6197 16.175397635 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598820 12 -1 695975 0 0xffffffff 0 -1 695975 0 ff ff ff ff a7 9e 0a 00 00 00 00 00 ............ +6210 16.238626480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598832 12 26 704497 0 0x0000001a 0 26 704497 0 1a 00 00 00 f1 bf 0a 00 00 00 00 00 ............ +6212 16.238789797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598844 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 147128320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6214 16.239200592 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918806 12 -1 704497 0 0xffffffff 0 -1 704497 0 ff ff ff ff f1 bf 0a 00 00 00 00 00 ............ +6219 16.239651680 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918818 12 22 695976 0 0x00000016 0 22 695976 0 16 00 00 00 a8 9e 0a 00 00 00 00 00 ............ +6222 16.239809752 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918830 22 18 2033861 0 0x00000012 1 2033861 0 196609 0 12 00 00 00 c5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6225 16.240077972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598870 12 -1 695976 0 0xffffffff 0 -1 695976 0 ff ff ff ff a8 9e 0a 00 00 00 00 00 ............ +6244 16.341295481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598882 12 26 704498 0 0x0000001a 0 26 704498 0 1a 00 00 00 f2 bf 0a 00 00 00 00 00 ............ +6246 16.341478348 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598894 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 147259392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6248 16.341963530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918852 12 -1 704498 0 0xffffffff 0 -1 704498 0 ff ff ff ff f2 bf 0a 00 00 00 00 00 ............ +6250 16.342404604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918864 12 22 695977 0 0x00000016 0 22 695977 0 16 00 00 00 a9 9e 0a 00 00 00 00 00 ............ +6252 16.342565536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918876 22 18 2033863 0 0x00000012 1 2033863 0 196609 0 12 00 00 00 c7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6254 16.342882395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598920 12 -1 695977 0 0xffffffff 0 -1 695977 0 ff ff ff ff a9 9e 0a 00 00 00 00 00 ............ +6258 16.351068497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918898 12 -2 80003 80020 0xfffffffe 0 -2 80003 80020 fe ff ff ff 83 38 01 00 94 38 01 00 .....8...8.. +6269 16.444815636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598932 12 26 704499 0 0x0000001a 0 26 704499 0 1a 00 00 00 f3 bf 0a 00 00 00 00 00 ............ +6271 16.445052385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598944 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 147390464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6273 16.446207047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918910 12 -1 704499 0 0xffffffff 0 -1 704499 0 ff ff ff ff f3 bf 0a 00 00 00 00 00 ............ +6275 16.446542978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918922 12 22 695978 0 0x00000016 0 22 695978 0 16 00 00 00 aa 9e 0a 00 00 00 00 00 ............ +6277 16.446736097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918934 22 18 2033865 0 0x00000012 1 2033865 0 196609 0 12 00 00 00 c9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6279 16.447031498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598970 12 -1 695978 0 0xffffffff 0 -1 695978 0 ff ff ff ff aa 9e 0a 00 00 00 00 00 ............ +6281 16.470854521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598982 12 -2 80021 80003 0xfffffffe 0 -2 80021 80003 fe ff ff ff 95 38 01 00 83 38 01 00 .....8...8.. +6285 16.476489067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331598994 12 101 704500 0 0x00000065 0 101 704500 0 65 00 00 00 f4 bf 0a 00 00 00 00 00 e........... +6287 16.476637363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599006 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6e 00 02 00 00 00 00 00 17 2a 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6e 00 02 00 00 00 00 .....!...o3.......n........*......?.....3...|8.. +6289 16.476961136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918956 12 -1 704500 0 0xffffffff 0 -1 704500 0 ff ff ff ff f4 bf 0a 00 00 00 00 00 ............ +6291 16.477985144 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918968 12 52 695979 0 0x00000034 0 52 695979 0 34 00 00 00 ab 9e 0a 00 00 00 00 00 4........... +6293 16.478145123 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375918980 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6e 00 02 00 00 00 00 00 00 00 ee c2 ef 73 4a 01 00 00 "0...Dk.................L."".([.....n............s" +6295 16.478400707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599107 12 -1 695979 0 0xffffffff 0 -1 695979 0 ff ff ff ff ab 9e 0a 00 00 00 00 00 ............ +6297 16.479165792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599119 12 30 704501 0 0x0000001e 0 30 704501 0 1e 00 00 00 f5 bf 0a 00 00 00 00 00 ............ +6299 16.479310751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599131 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 147521536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6301 16.480274916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919032 12 -1 704501 0 0xffffffff 0 -1 704501 0 ff ff ff ff f5 bf 0a 00 00 00 00 00 ............ +6303 16.480876923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919044 12 26 695980 0 0x0000001a 0 26 695980 0 1a 00 00 00 ac 9e 0a 00 00 00 00 00 ............ +6305 16.481118441 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919056 26 22 2033867 0 0x00000016 1 2033867 0 196609 0 16 00 00 00 cb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6308 16.481485128 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599161 12 -1 695980 0 0xffffffff 0 -1 695980 0 ff ff ff ff ac 9e 0a 00 00 00 00 00 ............ +6314 16.548977375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599173 12 26 704502 0 0x0000001a 0 26 704502 0 1a 00 00 00 f6 bf 0a 00 00 00 00 00 ............ +6316 16.549145699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599185 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 147652608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6318 16.549504042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919082 12 -1 704502 0 0xffffffff 0 -1 704502 0 ff ff ff ff f6 bf 0a 00 00 00 00 00 ............ +6320 16.550012827 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919094 12 22 695981 0 0x00000016 0 22 695981 0 16 00 00 00 ad 9e 0a 00 00 00 00 00 ............ +6322 16.550180912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919106 22 18 2033869 0 0x00000012 1 2033869 0 196609 0 12 00 00 00 cd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6324 16.550534725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599211 12 -1 695981 0 0xffffffff 0 -1 695981 0 ff ff ff ff ad 9e 0a 00 00 00 00 00 ............ +6329 16.651936293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599223 12 26 704503 0 0x0000001a 0 26 704503 0 1a 00 00 00 f7 bf 0a 00 00 00 00 00 ............ +6331 16.652183056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599235 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 147783680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6333 16.652523994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919128 12 -1 704503 0 0xffffffff 0 -1 704503 0 ff ff ff ff f7 bf 0a 00 00 00 00 00 ............ +6335 16.653188944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919140 12 22 695982 0 0x00000016 0 22 695982 0 16 00 00 00 ae 9e 0a 00 00 00 00 00 ............ +6337 16.653376341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919152 22 18 2033871 0 0x00000012 1 2033871 0 196609 0 12 00 00 00 cf 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6339 16.653759718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599261 12 -1 695982 0 0xffffffff 0 -1 695982 0 ff ff ff ff ae 9e 0a 00 00 00 00 00 ............ +6344 16.754621506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599273 12 26 704504 0 0x0000001a 0 26 704504 0 1a 00 00 00 f8 bf 0a 00 00 00 00 00 ............ +6346 16.754795790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599285 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 147914752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6348 16.755137444 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919174 12 -1 704504 0 0xffffffff 0 -1 704504 0 ff ff ff ff f8 bf 0a 00 00 00 00 00 ............ +6350 16.755748987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919186 12 22 695983 0 0x00000016 0 22 695983 0 16 00 00 00 af 9e 0a 00 00 00 00 00 ............ +6352 16.755958080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919198 22 18 2033873 0 0x00000012 1 2033873 0 196609 0 12 00 00 00 d1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6354 16.756303549 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599311 12 -1 695983 0 0xffffffff 0 -1 695983 0 ff ff ff ff af 9e 0a 00 00 00 00 00 ............ +6358 16.779844999 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599323 12 101 704505 0 0x00000065 0 101 704505 0 65 00 00 00 f9 bf 0a 00 00 00 00 00 e........... +6360 16.780051947 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599335 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6f 00 02 00 00 00 00 00 47 2b 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6f 00 02 00 00 00 00 .....!...o3.......o.......G+......?.....3...|8.. +6362 16.780385971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919220 12 -1 704505 0 0xffffffff 0 -1 704505 0 ff ff ff ff f9 bf 0a 00 00 00 00 00 ............ +6364 16.781082630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919232 12 52 695984 0 0x00000034 0 52 695984 0 34 00 00 00 b0 9e 0a 00 00 00 00 00 4........... +6366 16.781247139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919244 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6f 00 02 00 00 00 00 00 00 00 4b 01 1e 74 4a 01 00 00 "0...Dk.................L."".([.....o.........K..t" +6368 16.781502485 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599436 12 -1 695984 0 0xffffffff 0 -1 695984 0 ff ff ff ff b0 9e 0a 00 00 00 00 00 ............ +6370 16.782228470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599448 12 30 704506 0 0x0000001e 0 30 704506 0 1e 00 00 00 fa bf 0a 00 00 00 00 00 ............ +6372 16.782392502 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599460 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 148045824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6374 16.782669544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919296 12 -1 704506 0 0xffffffff 0 -1 704506 0 ff ff ff ff fa bf 0a 00 00 00 00 00 ............ +6376 16.783008814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919308 12 26 695985 0 0x0000001a 0 26 695985 0 1a 00 00 00 b1 9e 0a 00 00 00 00 00 ............ +6378 16.783148766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919320 26 22 2033875 0 0x00000016 1 2033875 0 196609 0 16 00 00 00 d3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6380 16.783390045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599490 12 -1 695985 0 0xffffffff 0 -1 695985 0 ff ff ff ff b1 9e 0a 00 00 00 00 00 ............ +6384 16.851751804 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919346 12 -2 80004 80021 0xfffffffe 0 -2 80004 80021 fe ff ff ff 84 38 01 00 95 38 01 00 .....8...8.. +6390 16.858795881 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599502 12 26 704507 0 0x0000001a 0 26 704507 0 1a 00 00 00 fb bf 0a 00 00 00 00 00 ............ +6392 16.858984709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599514 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 148176896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6394 16.859340668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919358 12 -1 704507 0 0xffffffff 0 -1 704507 0 ff ff ff ff fb bf 0a 00 00 00 00 00 ............ +6396 16.859825134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919370 12 22 695986 0 0x00000016 0 22 695986 0 16 00 00 00 b2 9e 0a 00 00 00 00 00 ............ +6398 16.859992027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919382 22 18 2033877 0 0x00000012 1 2033877 0 196609 0 12 00 00 00 d5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6400 16.860389233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599540 12 -1 695986 0 0xffffffff 0 -1 695986 0 ff ff ff ff b2 9e 0a 00 00 00 00 00 ............ +6406 16.962117195 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599552 12 26 704508 0 0x0000001a 0 26 704508 0 1a 00 00 00 fc bf 0a 00 00 00 00 00 ............ +6408 16.962290525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599564 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 148307968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6410 16.962736130 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919404 12 -1 704508 0 0xffffffff 0 -1 704508 0 ff ff ff ff fc bf 0a 00 00 00 00 00 ............ +6412 16.963442087 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919416 12 22 695987 0 0x00000016 0 22 695987 0 16 00 00 00 b3 9e 0a 00 00 00 00 00 ............ +6414 16.963761330 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919428 22 18 2033879 0 0x00000012 1 2033879 0 196609 0 12 00 00 00 d7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6416 16.964103460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599590 12 -1 695987 0 0xffffffff 0 -1 695987 0 ff ff ff ff b3 9e 0a 00 00 00 00 00 ............ +6418 16.971816301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599602 12 -2 80022 80004 0xfffffffe 0 -2 80022 80004 fe ff ff ff 96 38 01 00 84 38 01 00 .....8...8.. +6428 17.066097498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599614 12 26 704509 0 0x0000001a 0 26 704509 0 1a 00 00 00 fd bf 0a 00 00 00 00 00 ............ +6430 17.066304684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599626 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 148439040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6432 17.066715956 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919450 12 -1 704509 0 0xffffffff 0 -1 704509 0 ff ff ff ff fd bf 0a 00 00 00 00 00 ............ +6434 17.067219734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919462 12 22 695988 0 0x00000016 0 22 695988 0 16 00 00 00 b4 9e 0a 00 00 00 00 00 ............ +6436 17.067423820 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919474 22 18 2033881 0 0x00000012 1 2033881 0 196609 0 12 00 00 00 d9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6438 17.067745924 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599652 12 -1 695988 0 0xffffffff 0 -1 695988 0 ff ff ff ff b4 9e 0a 00 00 00 00 00 ............ +6440 17.084104538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599664 12 34 704510 0 0x00000022 0 34 704510 0 22 00 00 00 fe bf 0a 00 00 00 00 00 """..........." +6442 17.084326506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599676 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 7340032 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 70 00 02 00 00 00 00 00 77 2c 0f c3 9d 01 00 00 .....!...o3.......p.......w,...... +6444 17.084530830 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599710 12 67 704511 0 0x00000043 0 67 704511 0 43 00 00 00 ff bf 0a 00 00 00 00 00 C........... +6446 17.084641933 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599722 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 70 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 a6 47 48 9e ?.....3...|8...........p.......=B.....&......... +6447 17.084651947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919496 12 -1 704510 0 0xffffffff 0 -1 704510 0 ff ff ff ff fe bf 0a 00 00 00 00 00 ............ +6450 17.084868908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919508 12 -1 704511 0 0xffffffff 0 -1 704511 0 ff ff ff ff ff bf 0a 00 00 00 00 00 ............ +6452 17.085940838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919520 12 52 695989 0 0x00000034 0 52 695989 0 34 00 00 00 b5 9e 0a 00 00 00 00 00 4........... +6454 17.086082697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919532 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 70 00 02 00 00 00 00 00 00 00 e3 87 4c 74 4a 01 00 00 "0...Dk.................L."".([.....p...........Lt" +6456 17.086314678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599789 12 -1 695989 0 0xffffffff 0 -1 695989 0 ff ff ff ff b5 9e 0a 00 00 00 00 00 ............ +6457 17.087040901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599801 12 30 704512 0 0x0000001e 0 30 704512 0 1e 00 00 00 00 c0 0a 00 00 00 00 00 ............ +6459 17.087182283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599813 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 148570112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6461 17.087472200 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919584 12 -1 704512 0 0xffffffff 0 -1 704512 0 ff ff ff ff 00 c0 0a 00 00 00 00 00 ............ +6463 17.088043213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919596 12 26 695990 0 0x0000001a 0 26 695990 0 1a 00 00 00 b6 9e 0a 00 00 00 00 00 ............ +6465 17.088199139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919608 26 22 2033883 0 0x00000016 1 2033883 0 196609 0 16 00 00 00 db 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6467 17.088428736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599843 12 -1 695990 0 0xffffffff 0 -1 695990 0 ff ff ff ff b6 9e 0a 00 00 00 00 00 ............ +6469 17.169230223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599855 12 26 704513 0 0x0000001a 0 26 704513 0 1a 00 00 00 01 c0 0a 00 00 00 00 00 ............ +6471 17.169426203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599867 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 148701184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6473 17.169792652 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919634 12 -1 704513 0 0xffffffff 0 -1 704513 0 ff ff ff ff 01 c0 0a 00 00 00 00 00 ............ +6475 17.170766830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919646 12 22 695991 0 0x00000016 0 22 695991 0 16 00 00 00 b7 9e 0a 00 00 00 00 00 ............ +6477 17.171031237 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919658 22 18 2033885 0 0x00000012 1 2033885 0 196609 0 12 00 00 00 dd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6479 17.171291351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599893 12 -1 695991 0 0xffffffff 0 -1 695991 0 ff ff ff ff b7 9e 0a 00 00 00 00 00 ............ +6483 17.273917437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599905 12 26 704514 0 0x0000001a 0 26 704514 0 1a 00 00 00 02 c0 0a 00 00 00 00 00 ............ +6485 17.274086237 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599917 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 148832256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6487 17.274472237 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919680 12 -1 704514 0 0xffffffff 0 -1 704514 0 ff ff ff ff 02 c0 0a 00 00 00 00 00 ............ +6489 17.274897337 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919692 12 22 695992 0 0x00000016 0 22 695992 0 16 00 00 00 b8 9e 0a 00 00 00 00 00 ............ +6491 17.275060177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919704 22 18 2033887 0 0x00000012 1 2033887 0 196609 0 12 00 00 00 df 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6493 17.275271893 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599943 12 -1 695992 0 0xffffffff 0 -1 695992 0 ff ff ff ff b8 9e 0a 00 00 00 00 00 ............ +6497 17.352951765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919726 12 -2 80005 80022 0xfffffffe 0 -2 80005 80022 fe ff ff ff 85 38 01 00 96 38 01 00 .....8...8.. +6503 17.376966715 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599955 12 26 704515 0 0x0000001a 0 26 704515 0 1a 00 00 00 03 c0 0a 00 00 00 00 00 ............ +6505 17.377135277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599967 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 148963328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6507 17.377528191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919738 12 -1 704515 0 0xffffffff 0 -1 704515 0 ff ff ff ff 03 c0 0a 00 00 00 00 00 ............ +6509 17.377866983 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919750 12 22 695993 0 0x00000016 0 22 695993 0 16 00 00 00 b9 9e 0a 00 00 00 00 00 ............ +6511 17.378036022 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919762 22 18 2033889 0 0x00000012 1 2033889 0 196609 0 12 00 00 00 e1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6513 17.378386497 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331599993 12 -1 695993 0 0xffffffff 0 -1 695993 0 ff ff ff ff b9 9e 0a 00 00 00 00 00 ............ +6515 17.388408184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600005 12 34 704516 0 0x00000022 0 34 704516 0 22 00 00 00 04 c0 0a 00 00 00 00 00 """..........." +6517 17.388618708 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600017 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 7405568 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 71 00 02 00 00 00 00 00 a7 2d 0f c3 9d 01 00 00 .....!...o3.......q........-...... +6519 17.388759613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600051 12 67 704517 0 0x00000043 0 67 704517 0 43 00 00 00 05 c0 0a 00 00 00 00 00 C........... +6521 17.388847589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600063 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 71 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e0 a6 73 5a 9e ?.....3...|8...........q.......=B.....&......... +6523 17.388921499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919784 12 -1 704516 0 0xffffffff 0 -1 704516 0 ff ff ff ff 04 c0 0a 00 00 00 00 00 ............ +6525 17.389081955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919796 12 -1 704517 0 0xffffffff 0 -1 704517 0 ff ff ff ff 05 c0 0a 00 00 00 00 00 ............ +6527 17.389972925 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919808 12 52 695994 0 0x00000034 0 52 695994 0 34 00 00 00 ba 9e 0a 00 00 00 00 00 4........... +6529 17.390132189 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919820 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 71 00 02 00 00 00 00 00 00 00 d8 e9 7a 74 4a 01 00 00 "0...Dk.................L."".([.....q...........zt" +6531 17.390473127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600130 12 -1 695994 0 0xffffffff 0 -1 695994 0 ff ff ff ff ba 9e 0a 00 00 00 00 00 ............ +6533 17.391448498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600142 12 30 704518 0 0x0000001e 0 30 704518 0 1e 00 00 00 06 c0 0a 00 00 00 00 00 ............ +6535 17.391596794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600154 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 149094400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6537 17.391876459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919872 12 -1 704518 0 0xffffffff 0 -1 704518 0 ff ff ff ff 06 c0 0a 00 00 00 00 00 ............ +6539 17.392331600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919884 12 26 695995 0 0x0000001a 0 26 695995 0 1a 00 00 00 bb 9e 0a 00 00 00 00 00 ............ +6541 17.392556906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919896 26 22 2033891 0 0x00000016 1 2033891 0 196609 0 16 00 00 00 e3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6543 17.392860174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600184 12 -1 695995 0 0xffffffff 0 -1 695995 0 ff ff ff ff bb 9e 0a 00 00 00 00 00 ............ +6550 17.474340916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600196 12 -2 80023 80005 0xfffffffe 0 -2 80023 80005 fe ff ff ff 97 38 01 00 85 38 01 00 .....8...8.. +6553 17.479380846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600208 12 26 704519 0 0x0000001a 0 26 704519 0 1a 00 00 00 07 c0 0a 00 00 00 00 00 ............ +6555 17.479540586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600220 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 149225472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6557 17.480372429 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919922 12 -1 704519 0 0xffffffff 0 -1 704519 0 ff ff ff ff 07 c0 0a 00 00 00 00 00 ............ +6559 17.480747461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919934 12 22 695996 0 0x00000016 0 22 695996 0 16 00 00 00 bc 9e 0a 00 00 00 00 00 ............ +6561 17.480919123 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919946 22 18 2033893 0 0x00000012 1 2033893 0 196609 0 12 00 00 00 e5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6563 17.481178522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600246 12 -1 695996 0 0xffffffff 0 -1 695996 0 ff ff ff ff bc 9e 0a 00 00 00 00 00 ............ +6571 17.582132816 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600258 12 26 704520 0 0x0000001a 0 26 704520 0 1a 00 00 00 08 c0 0a 00 00 00 00 00 ............ +6573 17.582306147 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600270 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 149356544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6575 17.582753181 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919968 12 -1 704520 0 0xffffffff 0 -1 704520 0 ff ff ff ff 08 c0 0a 00 00 00 00 00 ............ +6577 17.583246946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919980 12 22 695997 0 0x00000016 0 22 695997 0 16 00 00 00 bd 9e 0a 00 00 00 00 00 ............ +6579 17.583440304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375919992 22 18 2033895 0 0x00000012 1 2033895 0 196609 0 12 00 00 00 e7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6581 17.583781004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600296 12 -1 695997 0 0xffffffff 0 -1 695997 0 ff ff ff ff bd 9e 0a 00 00 00 00 00 ............ +6583 17.684645414 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600308 12 26 704521 0 0x0000001a 0 26 704521 0 1a 00 00 00 09 c0 0a 00 00 00 00 00 ............ +6585 17.684845209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600320 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 149487616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6587 17.685321808 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920014 12 -1 704521 0 0xffffffff 0 -1 704521 0 ff ff ff ff 09 c0 0a 00 00 00 00 00 ............ +6589 17.685985565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920026 12 22 695998 0 0x00000016 0 22 695998 0 16 00 00 00 be 9e 0a 00 00 00 00 00 ............ +6591 17.686187983 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920038 22 18 2033897 0 0x00000012 1 2033897 0 196609 0 12 00 00 00 e9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6593 17.686645269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600346 12 -1 695998 0 0xffffffff 0 -1 695998 0 ff ff ff ff be 9e 0a 00 00 00 00 00 ............ +6595 17.692589045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600358 12 34 704522 0 0x00000022 0 34 704522 0 22 00 00 00 0a c0 0a 00 00 00 00 00 """..........." +6597 17.692818403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600370 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 7471104 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 72 00 02 00 00 00 00 00 d8 2e 0f c3 9d 01 00 00 .....!...o3.......r............... +6599 17.692989349 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600404 12 67 704523 0 0x00000043 0 67 704523 0 43 00 00 00 0b c0 0a 00 00 00 00 00 C........... +6601 17.693117857 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600416 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 72 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 a0 8d 6c 9e ?.....3...|8...........r.......=B.....&......... +6602 17.693239450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920060 12 -1 704522 0 0xffffffff 0 -1 704522 0 ff ff ff ff 0a c0 0a 00 00 00 00 00 ............ +6604 17.693495750 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920072 12 -1 704523 0 0xffffffff 0 -1 704523 0 ff ff ff ff 0b c0 0a 00 00 00 00 00 ............ +6606 17.694506645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920084 12 52 695999 0 0x00000034 0 52 695999 0 34 00 00 00 bf 9e 0a 00 00 00 00 00 4........... +6608 17.694712877 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920096 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 72 00 02 00 00 00 00 00 00 00 85 64 a9 74 4a 01 00 00 "0...Dk.................L."".([.....r..........d.t" +6610 17.694920778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600483 12 -1 695999 0 0xffffffff 0 -1 695999 0 ff ff ff ff bf 9e 0a 00 00 00 00 00 ............ +6612 17.695661306 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600495 12 30 704524 0 0x0000001e 0 30 704524 0 1e 00 00 00 0c c0 0a 00 00 00 00 00 ............ +6614 17.695805788 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600507 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 149618688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6616 17.696099997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920148 12 -1 704524 0 0xffffffff 0 -1 704524 0 ff ff ff ff 0c c0 0a 00 00 00 00 00 ............ +6618 17.696432114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920160 12 26 696000 0 0x0000001a 0 26 696000 0 1a 00 00 00 c0 9e 0a 00 00 00 00 00 ............ +6620 17.696593761 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920172 26 22 2033899 0 0x00000016 1 2033899 0 196609 0 16 00 00 00 eb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6622 17.696843147 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600537 12 -1 696000 0 0xffffffff 0 -1 696000 0 ff ff ff ff c0 9e 0a 00 00 00 00 00 ............ +6628 17.787871122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600549 12 26 704525 0 0x0000001a 0 26 704525 0 1a 00 00 00 0d c0 0a 00 00 00 00 00 ............ +6630 17.788029671 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600561 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 149749760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6632 17.788358927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920198 12 -1 704525 0 0xffffffff 0 -1 704525 0 ff ff ff ff 0d c0 0a 00 00 00 00 00 ............ +6634 17.788878918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920210 12 22 696001 0 0x00000016 0 22 696001 0 16 00 00 00 c1 9e 0a 00 00 00 00 00 ............ +6636 17.789106607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920222 22 18 2033901 0 0x00000012 1 2033901 0 196609 0 12 00 00 00 ed 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6638 17.789387941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600587 12 -1 696001 0 0xffffffff 0 -1 696001 0 ff ff ff ff c1 9e 0a 00 00 00 00 00 ............ +6642 17.852781057 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920244 12 -2 80006 80023 0xfffffffe 0 -2 80006 80023 fe ff ff ff 86 38 01 00 97 38 01 00 .....8...8.. +6648 17.890660524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600599 12 26 704526 0 0x0000001a 0 26 704526 0 1a 00 00 00 0e c0 0a 00 00 00 00 00 ............ +6650 17.890835524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600611 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 149880832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6652 17.891225100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920256 12 -1 704526 0 0xffffffff 0 -1 704526 0 ff ff ff ff 0e c0 0a 00 00 00 00 00 ............ +6654 17.891574383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920268 12 22 696002 0 0x00000016 0 22 696002 0 16 00 00 00 c2 9e 0a 00 00 00 00 00 ............ +6656 17.891731501 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920280 22 18 2033903 0 0x00000012 1 2033903 0 196609 0 12 00 00 00 ef 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6658 17.892130136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600637 12 -1 696002 0 0xffffffff 0 -1 696002 0 ff ff ff ff c2 9e 0a 00 00 00 00 00 ............ +6665 17.976258278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600649 12 -2 80024 80006 0xfffffffe 0 -2 80024 80006 fe ff ff ff 98 38 01 00 86 38 01 00 .....8...8.. +6668 17.994502068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600661 12 26 704527 0 0x0000001a 0 26 704527 0 1a 00 00 00 0f c0 0a 00 00 00 00 00 ............ +6670 17.994699478 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600673 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 150011904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6672 17.995105505 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920302 12 -1 704527 0 0xffffffff 0 -1 704527 0 ff ff ff ff 0f c0 0a 00 00 00 00 00 ............ +6674 17.996127605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920314 12 22 696003 0 0x00000016 0 22 696003 0 16 00 00 00 c3 9e 0a 00 00 00 00 00 ............ +6676 17.996332407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920326 22 18 2033905 0 0x00000012 1 2033905 0 196609 0 12 00 00 00 f1 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6678 17.996658802 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600699 12 -1 696003 0 0xffffffff 0 -1 696003 0 ff ff ff ff c3 9e 0a 00 00 00 00 00 ............ +6680 17.997830153 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600711 12 101 704528 0 0x00000065 0 101 704528 0 65 00 00 00 10 c0 0a 00 00 00 00 00 e........... +6682 17.998013735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600723 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 73 00 02 00 00 00 00 00 09 30 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 73 00 02 00 00 00 00 .....!...o3.......s........0......?.....3...|8.. +6684 17.998261690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920348 12 -1 704528 0 0xffffffff 0 -1 704528 0 ff ff ff ff 10 c0 0a 00 00 00 00 00 ............ +6686 17.999404192 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920360 12 52 696004 0 0x00000034 0 52 696004 0 34 00 00 00 c4 9e 0a 00 00 00 00 00 4........... +6688 17.999591827 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920372 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 73 00 02 00 00 00 00 00 00 00 d1 e6 d7 74 4a 01 00 00 "0...Dk.................L."".([.....s............t" +6690 17.999895334 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600824 12 -1 696004 0 0xffffffff 0 -1 696004 0 ff ff ff ff c4 9e 0a 00 00 00 00 00 ............ +6692 18.000522614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600836 12 30 704529 0 0x0000001e 0 30 704529 0 1e 00 00 00 11 c0 0a 00 00 00 00 00 ............ +6694 18.000659466 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600848 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 150142976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6696 18.001056910 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920424 12 -1 704529 0 0xffffffff 0 -1 704529 0 ff ff ff ff 11 c0 0a 00 00 00 00 00 ............ +6698 18.001386642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920436 12 26 696005 0 0x0000001a 0 26 696005 0 1a 00 00 00 c5 9e 0a 00 00 00 00 00 ............ +6700 18.001563072 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920448 26 22 2033907 0 0x00000016 1 2033907 0 196609 0 16 00 00 00 f3 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6702 18.001798153 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600878 12 -1 696005 0 0xffffffff 0 -1 696005 0 ff ff ff ff c5 9e 0a 00 00 00 00 00 ............ +6710 18.097956896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600890 12 26 704530 0 0x0000001a 0 26 704530 0 1a 00 00 00 12 c0 0a 00 00 00 00 00 ............ +6712 18.098197222 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600902 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 150274048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6714 18.098612070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920474 12 -1 704530 0 0xffffffff 0 -1 704530 0 ff ff ff ff 12 c0 0a 00 00 00 00 00 ............ +6716 18.099075317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920486 12 22 696006 0 0x00000016 0 22 696006 0 16 00 00 00 c6 9e 0a 00 00 00 00 00 ............ +6718 18.099259377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920498 22 18 2033909 0 0x00000012 1 2033909 0 196609 0 12 00 00 00 f5 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6720 18.099525928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600928 12 -1 696006 0 0xffffffff 0 -1 696006 0 ff ff ff ff c6 9e 0a 00 00 00 00 00 ............ +6722 18.200907946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600940 12 26 704531 0 0x0000001a 0 26 704531 0 1a 00 00 00 13 c0 0a 00 00 00 00 00 ............ +6724 18.201158285 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600952 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 150405120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6726 18.201379061 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920520 12 -1 704531 0 0xffffffff 0 -1 704531 0 ff ff ff ff 13 c0 0a 00 00 00 00 00 ............ +6728 18.201949358 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920532 12 22 696007 0 0x00000016 0 22 696007 0 16 00 00 00 c7 9e 0a 00 00 00 00 00 ............ +6730 18.202181816 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920544 22 18 2033911 0 0x00000012 1 2033911 0 196609 0 12 00 00 00 f7 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6732 18.202489614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600978 12 -1 696007 0 0xffffffff 0 -1 696007 0 ff ff ff ff c7 9e 0a 00 00 00 00 00 ............ +6736 18.302273512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331600990 12 101 704532 0 0x00000065 0 101 704532 0 65 00 00 00 14 c0 0a 00 00 00 00 00 e........... +6738 18.302459240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601002 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 74 00 02 00 00 00 00 00 39 31 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 74 00 02 00 00 00 00 .....!...o3.......t.......91......?.....3...|8.. +6740 18.302769423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920566 12 -1 704532 0 0xffffffff 0 -1 704532 0 ff ff ff ff 14 c0 0a 00 00 00 00 00 ............ +6742 18.303346395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601103 12 26 704533 0 0x0000001a 0 26 704533 0 1a 00 00 00 15 c0 0a 00 00 00 00 00 ............ +6744 18.303496838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601115 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 150536192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6746 18.303892612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920578 12 -1 704533 0 0xffffffff 0 -1 704533 0 ff ff ff ff 15 c0 0a 00 00 00 00 00 ............ +6748 18.304186821 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920590 12 52 696008 0 0x00000034 0 52 696008 0 34 00 00 00 c8 9e 0a 00 00 00 00 00 4........... +6750 18.304392815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920602 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 74 00 02 00 00 00 00 00 00 00 63 5e 06 75 4a 01 00 00 "0...Dk.................L."".([.....t.........c^.u" +6752 18.304648399 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920654 12 22 696009 0 0x00000016 0 22 696009 0 16 00 00 00 c9 9e 0a 00 00 00 00 00 ............ +6753 18.304668903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601141 12 -1 696008 0 0xffffffff 0 -1 696008 0 ff ff ff ff c8 9e 0a 00 00 00 00 00 ............ +6754 18.304774046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920666 22 18 2033913 0 0x00000012 1 2033913 0 196609 0 12 00 00 00 f9 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6756 18.305028677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601153 12 -1 696009 0 0xffffffff 0 -1 696009 0 ff ff ff ff c9 9e 0a 00 00 00 00 00 ............ +6758 18.305448294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601165 12 30 704534 0 0x0000001e 0 30 704534 0 1e 00 00 00 16 c0 0a 00 00 00 00 00 ............ +6760 18.305591106 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601177 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 150667264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 08 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6762 18.305850029 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920688 12 -1 704534 0 0xffffffff 0 -1 704534 0 ff ff ff ff 16 c0 0a 00 00 00 00 00 ............ +6763 18.306400537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920700 12 26 696010 0 0x0000001a 0 26 696010 0 1a 00 00 00 ca 9e 0a 00 00 00 00 00 ............ +6764 18.306517601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920712 26 22 2033915 0 0x00000016 1 2033915 0 196609 0 16 00 00 00 fb 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6765 18.306701899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601207 12 -1 696010 0 0xffffffff 0 -1 696010 0 ff ff ff ff ca 9e 0a 00 00 00 00 00 ............ +6769 18.353391886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920738 12 -2 80007 80024 0xfffffffe 0 -2 80007 80024 fe ff ff ff 87 38 01 00 98 38 01 00 .....8...8.. +6779 18.406521797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601219 12 26 704535 0 0x0000001a 0 26 704535 0 1a 00 00 00 17 c0 0a 00 00 00 00 00 ............ +6781 18.406683445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601231 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 150798336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6783 18.407158136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920750 12 -1 704535 0 0xffffffff 0 -1 704535 0 ff ff ff ff 17 c0 0a 00 00 00 00 00 ............ +6785 18.407588959 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920762 12 22 696011 0 0x00000016 0 22 696011 0 16 00 00 00 cb 9e 0a 00 00 00 00 00 ............ +6787 18.407758236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920774 22 18 2033917 0 0x00000012 1 2033917 0 196609 0 12 00 00 00 fd 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6789 18.408062935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601257 12 -1 696011 0 0xffffffff 0 -1 696011 0 ff ff ff ff cb 9e 0a 00 00 00 00 00 ............ +6796 18.476883888 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601269 12 -2 80025 80007 0xfffffffe 0 -2 80025 80007 fe ff ff ff 99 38 01 00 87 38 01 00 .....8...8.. +6801 18.509213686 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601281 12 26 704536 0 0x0000001a 0 26 704536 0 1a 00 00 00 18 c0 0a 00 00 00 00 00 ............ +6803 18.509388208 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601293 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 150929408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 08 1f 00 00 00 00 00 ....T.c@.^1@.............. +6805 18.509720802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920796 12 -1 704536 0 0xffffffff 0 -1 704536 0 ff ff ff ff 18 c0 0a 00 00 00 00 00 ............ +6807 18.510368824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920808 12 22 696012 0 0x00000016 0 22 696012 0 16 00 00 00 cc 9e 0a 00 00 00 00 00 ............ +6809 18.510586500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920820 22 18 2033919 0 0x00000012 1 2033919 0 196609 0 12 00 00 00 ff 08 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6811 18.510839701 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601319 12 -1 696012 0 0xffffffff 0 -1 696012 0 ff ff ff ff cc 9e 0a 00 00 00 00 00 ............ +6867 18.606933355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601331 12 34 704537 0 0x00000022 0 34 704537 0 22 00 00 00 19 c0 0a 00 00 00 00 00 """..........." +6869 18.607113123 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601343 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 7667712 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 75 00 02 00 00 00 00 00 6a 32 0f c3 9d 01 00 00 .....!...o3.......u.......j2...... +6871 18.607264280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601377 12 67 704538 0 0x00000043 0 67 704538 0 43 00 00 00 1a c0 0a 00 00 00 00 00 C........... +6873 18.607354403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601389 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 75 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 46 10 a3 9e ?.....3...|8...........u.......=B.....&......... +6875 18.607452154 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920842 12 -1 704537 0 0xffffffff 0 -1 704537 0 ff ff ff ff 19 c0 0a 00 00 00 00 00 ............ +6877 18.607656479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920854 12 -1 704538 0 0xffffffff 0 -1 704538 0 ff ff ff ff 1a c0 0a 00 00 00 00 00 ............ +6879 18.608315706 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920866 12 52 696013 0 0x00000034 0 52 696013 0 34 00 00 00 cd 9e 0a 00 00 00 00 00 4........... +6881 18.608517408 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920878 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 75 00 02 00 00 00 00 00 00 00 fb d2 34 75 4a 01 00 00 "0...Dk.................L."".([.....u...........4u" +6883 18.608792305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601456 12 -1 696013 0 0xffffffff 0 -1 696013 0 ff ff ff ff cd 9e 0a 00 00 00 00 00 ............ +6885 18.609756947 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601468 12 30 704539 0 0x0000001e 0 30 704539 0 1e 00 00 00 1b c0 0a 00 00 00 00 00 ............ +6887 18.609906435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601480 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 151060480 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 01 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6889 18.610202551 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920930 12 -1 704539 0 0xffffffff 0 -1 704539 0 ff ff ff ff 1b c0 0a 00 00 00 00 00 ............ +6891 18.610820532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920942 12 26 696014 0 0x0000001a 0 26 696014 0 1a 00 00 00 ce 9e 0a 00 00 00 00 00 ............ +6893 18.610991716 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920954 26 22 2033921 0 0x00000016 1 2033921 0 196609 0 16 00 00 00 01 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6895 18.611212015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601510 12 -1 696014 0 0xffffffff 0 -1 696014 0 ff ff ff ff ce 9e 0a 00 00 00 00 00 ............ +6897 18.612004995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601522 12 26 704540 0 0x0000001a 0 26 704540 0 1a 00 00 00 1c c0 0a 00 00 00 00 00 ............ +6899 18.612147808 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601534 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 151191552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +6901 18.612498045 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920980 12 -1 704540 0 0xffffffff 0 -1 704540 0 ff ff ff ff 1c c0 0a 00 00 00 00 00 ............ +6903 18.612980366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375920992 12 22 696015 0 0x00000016 0 22 696015 0 16 00 00 00 cf 9e 0a 00 00 00 00 00 ............ +6905 18.613154888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921004 22 18 2033923 0 0x00000012 1 2033923 0 196609 0 12 00 00 00 03 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6907 18.613494635 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601560 12 -1 696015 0 0xffffffff 0 -1 696015 0 ff ff ff ff cf 9e 0a 00 00 00 00 00 ............ +6956 18.716053724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601572 12 26 704541 0 0x0000001a 0 26 704541 0 1a 00 00 00 1d c0 0a 00 00 00 00 00 ............ +6958 18.716245413 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601584 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 151322624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +6960 18.716775417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921026 12 -1 704541 0 0xffffffff 0 -1 704541 0 ff ff ff ff 1d c0 0a 00 00 00 00 00 ............ +6962 18.717261553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921038 12 22 696016 0 0x00000016 0 22 696016 0 16 00 00 00 d0 9e 0a 00 00 00 00 00 ............ +6964 18.717425585 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921050 22 18 2033925 0 0x00000012 1 2033925 0 196609 0 12 00 00 00 05 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6966 18.717650414 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601610 12 -1 696016 0 0xffffffff 0 -1 696016 0 ff ff ff ff d0 9e 0a 00 00 00 00 00 ............ +6995 18.819793701 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601622 12 26 704542 0 0x0000001a 0 26 704542 0 1a 00 00 00 1e c0 0a 00 00 00 00 00 ............ +6997 18.819965124 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601634 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 151453696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7002 18.820408106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921072 12 -1 704542 0 0xffffffff 0 -1 704542 0 ff ff ff ff 1e c0 0a 00 00 00 00 00 ............ +7006 18.820773602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921084 12 22 696017 0 0x00000016 0 22 696017 0 16 00 00 00 d1 9e 0a 00 00 00 00 00 ............ +7009 18.820941210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921096 22 18 2033927 0 0x00000012 1 2033927 0 196609 0 12 00 00 00 07 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7013 18.821236372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601660 12 -1 696017 0 0xffffffff 0 -1 696017 0 ff ff ff ff d1 9e 0a 00 00 00 00 00 ............ +7023 18.854617357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921118 12 -2 80008 80025 0xfffffffe 0 -2 80008 80025 fe ff ff ff 88 38 01 00 99 38 01 00 .....8...8.. +7029 18.910718441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601672 12 101 704543 0 0x00000065 0 101 704543 0 65 00 00 00 1f c0 0a 00 00 00 00 00 e........... +7031 18.910923004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601684 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 76 00 02 00 00 00 00 00 9a 33 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 76 00 02 00 00 00 00 .....!...o3.......v........3......?.....3...|8.. +7033 18.911345482 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921130 12 -1 704543 0 0xffffffff 0 -1 704543 0 ff ff ff ff 1f c0 0a 00 00 00 00 00 ............ +7035 18.912346125 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921142 12 52 696018 0 0x00000034 0 52 696018 0 34 00 00 00 d2 9e 0a 00 00 00 00 00 4........... +7037 18.912529945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921154 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 76 00 02 00 00 00 00 00 00 00 3d 37 63 75 4a 01 00 00 "0...Dk.................L."".([.....v.........=7cu" +7039 18.912915230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601785 12 -1 696018 0 0xffffffff 0 -1 696018 0 ff ff ff ff d2 9e 0a 00 00 00 00 00 ............ +7041 18.913757563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601797 12 30 704544 0 0x0000001e 0 30 704544 0 1e 00 00 00 20 c0 0a 00 00 00 00 00 .... ....... +7043 18.913929939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601809 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 151584768 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7045 18.914138794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921206 12 -1 704544 0 0xffffffff 0 -1 704544 0 ff ff ff ff 20 c0 0a 00 00 00 00 00 .... ....... +7047 18.914608955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921218 12 26 696019 0 0x0000001a 0 26 696019 0 1a 00 00 00 d3 9e 0a 00 00 00 00 00 ............ +7049 18.914775610 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921230 26 22 2033929 0 0x00000016 1 2033929 0 196609 0 16 00 00 00 09 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7051 18.915099859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601839 12 -1 696019 0 0xffffffff 0 -1 696019 0 ff ff ff ff d3 9e 0a 00 00 00 00 00 ............ +7053 18.923269510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601851 12 26 704545 0 0x0000001a 0 26 704545 0 1a 00 00 00 21 c0 0a 00 00 00 00 00 ....!....... +7055 18.923414707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601863 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 151715840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7057 18.923716307 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921256 12 -1 704545 0 0xffffffff 0 -1 704545 0 ff ff ff ff 21 c0 0a 00 00 00 00 00 ....!....... +7059 18.924278498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921268 12 22 696020 0 0x00000016 0 22 696020 0 16 00 00 00 d4 9e 0a 00 00 00 00 00 ............ +7061 18.924478054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921280 22 18 2033931 0 0x00000012 1 2033931 0 196609 0 12 00 00 00 0b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7063 18.924730301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601889 12 -1 696020 0 0xffffffff 0 -1 696020 0 ff ff ff ff d4 9e 0a 00 00 00 00 00 ............ +7109 18.978242636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601901 12 -2 80026 80008 0xfffffffe 0 -2 80026 80008 fe ff ff ff 9a 38 01 00 88 38 01 00 .....8...8.. +7114 19.026412725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601913 12 26 704546 0 0x0000001a 0 26 704546 0 1a 00 00 00 22 c0 0a 00 00 00 00 00 "....""......." +7116 19.026571512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601925 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 151846912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7118 19.026914120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921302 12 -1 704546 0 0xffffffff 0 -1 704546 0 ff ff ff ff 22 c0 0a 00 00 00 00 00 "....""......." +7120 19.028610229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921314 12 22 696021 0 0x00000016 0 22 696021 0 16 00 00 00 d5 9e 0a 00 00 00 00 00 ............ +7122 19.028770447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921326 22 18 2033933 0 0x00000012 1 2033933 0 196609 0 12 00 00 00 0d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7124 19.029006481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601951 12 -1 696021 0 0xffffffff 0 -1 696021 0 ff ff ff ff d5 9e 0a 00 00 00 00 00 ............ +7169 19.130522013 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601963 12 26 704547 0 0x0000001a 0 26 704547 0 1a 00 00 00 23 c0 0a 00 00 00 00 00 ....#....... +7171 19.130727530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331601975 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 151977984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7173 19.131185770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921348 12 -1 704547 0 0xffffffff 0 -1 704547 0 ff ff ff ff 23 c0 0a 00 00 00 00 00 ....#....... +7175 19.131795645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921360 12 22 696022 0 0x00000016 0 22 696022 0 16 00 00 00 d6 9e 0a 00 00 00 00 00 ............ +7177 19.131970406 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921372 22 18 2033935 0 0x00000012 1 2033935 0 196609 0 12 00 00 00 0f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7179 19.132167101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602001 12 -1 696022 0 0xffffffff 0 -1 696022 0 ff ff ff ff d6 9e 0a 00 00 00 00 00 ............ +7181 19.215647697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602013 12 101 704548 0 0x00000065 0 101 704548 0 65 00 00 00 24 c0 0a 00 00 00 00 00 e...$....... +7183 19.215846539 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602025 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 77 00 02 00 00 00 00 00 cb 34 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 77 00 02 00 00 00 00 .....!...o3.......w........4......?.....3...|8.. +7185 19.216283083 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921394 12 -1 704548 0 0xffffffff 0 -1 704548 0 ff ff ff ff 24 c0 0a 00 00 00 00 00 ....$....... +7187 19.217108488 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921406 12 52 696023 0 0x00000034 0 52 696023 0 34 00 00 00 d7 9e 0a 00 00 00 00 00 4........... +7189 19.217297316 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921418 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 77 00 02 00 00 00 00 00 00 00 98 b6 91 75 4a 01 00 00 "0...Dk.................L."".([.....w............u" +7191 19.217651844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602126 12 -1 696023 0 0xffffffff 0 -1 696023 0 ff ff ff ff d7 9e 0a 00 00 00 00 00 ............ +7193 19.218431950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602138 12 30 704549 0 0x0000001e 0 30 704549 0 1e 00 00 00 25 c0 0a 00 00 00 00 00 ....%....... +7195 19.218589544 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602150 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 152109056 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 11 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7197 19.218998909 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921470 12 -1 704549 0 0xffffffff 0 -1 704549 0 ff ff ff ff 25 c0 0a 00 00 00 00 00 ....%....... +7199 19.219420195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921482 12 26 696024 0 0x0000001a 0 26 696024 0 1a 00 00 00 d8 9e 0a 00 00 00 00 00 ............ +7201 19.219578266 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921494 26 22 2033937 0 0x00000016 1 2033937 0 196609 0 16 00 00 00 11 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7203 19.219910622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602180 12 -1 696024 0 0xffffffff 0 -1 696024 0 ff ff ff ff d8 9e 0a 00 00 00 00 00 ............ +7210 19.234484911 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602192 12 26 704550 0 0x0000001a 0 26 704550 0 1a 00 00 00 26 c0 0a 00 00 00 00 00 ....&....... +7212 19.234642267 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602204 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 152240128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7214 19.235003948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921520 12 -1 704550 0 0xffffffff 0 -1 704550 0 ff ff ff ff 26 c0 0a 00 00 00 00 00 ....&....... +7216 19.235337019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921532 12 22 696025 0 0x00000016 0 22 696025 0 16 00 00 00 d9 9e 0a 00 00 00 00 00 ............ +7218 19.235494137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921544 22 18 2033939 0 0x00000012 1 2033939 0 196609 0 12 00 00 00 13 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7221 19.235770941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602230 12 -1 696025 0 0xffffffff 0 -1 696025 0 ff ff ff ff d9 9e 0a 00 00 00 00 00 ............ +7288 19.338204622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602242 12 26 704551 0 0x0000001a 0 26 704551 0 1a 00 00 00 27 c0 0a 00 00 00 00 00 ....'....... +7290 19.338394880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602254 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 152371200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7292 19.338759184 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921566 12 -1 704551 0 0xffffffff 0 -1 704551 0 ff ff ff ff 27 c0 0a 00 00 00 00 00 ....'....... +7294 19.339189529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921578 12 22 696026 0 0x00000016 0 22 696026 0 16 00 00 00 da 9e 0a 00 00 00 00 00 ............ +7296 19.339351416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921590 22 18 2033941 0 0x00000012 1 2033941 0 196609 0 12 00 00 00 15 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7298 19.339651585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602280 12 -1 696026 0 0xffffffff 0 -1 696026 0 ff ff ff ff da 9e 0a 00 00 00 00 00 ............ +7302 19.357126713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921612 12 -2 80009 80026 0xfffffffe 0 -2 80009 80026 fe ff ff ff 89 38 01 00 9a 38 01 00 .....8...8.. +7312 19.441346645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602292 12 26 704552 0 0x0000001a 0 26 704552 0 1a 00 00 00 28 c0 0a 00 00 00 00 00 ....(....... +7314 19.441579580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602304 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 152502272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7316 19.441988707 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921624 12 -1 704552 0 0xffffffff 0 -1 704552 0 ff ff ff ff 28 c0 0a 00 00 00 00 00 ....(....... +7318 19.442810059 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921636 12 22 696027 0 0x00000016 0 22 696027 0 16 00 00 00 db 9e 0a 00 00 00 00 00 ............ +7320 19.442970753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921648 22 18 2033943 0 0x00000012 1 2033943 0 196609 0 12 00 00 00 17 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7322 19.443238735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602330 12 -1 696027 0 0xffffffff 0 -1 696027 0 ff ff ff ff db 9e 0a 00 00 00 00 00 ............ +7325 19.480714560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602342 12 -2 80027 80009 0xfffffffe 0 -2 80027 80009 fe ff ff ff 9b 38 01 00 89 38 01 00 .....8...8.. +7330 19.520696640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602354 12 101 704553 0 0x00000065 0 101 704553 0 65 00 00 00 29 c0 0a 00 00 00 00 00 e...)....... +7332 19.520887613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602366 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 78 00 02 00 00 00 00 00 fc 35 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 78 00 02 00 00 00 00 .....!...o3.......x........5......?.....3...|8.. +7334 19.521298647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921670 12 -1 704553 0 0xffffffff 0 -1 704553 0 ff ff ff ff 29 c0 0a 00 00 00 00 00 ....)....... +7336 19.522019625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921682 12 52 696028 0 0x00000034 0 52 696028 0 34 00 00 00 dc 9e 0a 00 00 00 00 00 4........... +7338 19.522263527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921694 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 78 00 02 00 00 00 00 00 00 00 5e 3e c0 75 4a 01 00 00 "0...Dk.................L."".([.....x.........^>.u" +7340 19.522521019 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602467 12 -1 696028 0 0xffffffff 0 -1 696028 0 ff ff ff ff dc 9e 0a 00 00 00 00 00 ............ +7342 19.523530006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602479 12 30 704554 0 0x0000001e 0 30 704554 0 1e 00 00 00 2a c0 0a 00 00 00 00 00 ....*....... +7344 19.523767710 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602491 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 152633344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7346 19.524061918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921746 12 -1 704554 0 0xffffffff 0 -1 704554 0 ff ff ff ff 2a c0 0a 00 00 00 00 00 ....*....... +7348 19.525474310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921758 12 26 696029 0 0x0000001a 0 26 696029 0 1a 00 00 00 dd 9e 0a 00 00 00 00 00 ............ +7350 19.525616646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921770 26 22 2033945 0 0x00000016 1 2033945 0 196609 0 16 00 00 00 19 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7352 19.525901556 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602521 12 -1 696029 0 0xffffffff 0 -1 696029 0 ff ff ff ff dd 9e 0a 00 00 00 00 00 ............ +7356 19.545295000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602533 12 26 704555 0 0x0000001a 0 26 704555 0 1a 00 00 00 2b c0 0a 00 00 00 00 00 ....+....... +7358 19.545463085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602545 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 152764416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7360 19.545826197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921796 12 -1 704555 0 0xffffffff 0 -1 704555 0 ff ff ff ff 2b c0 0a 00 00 00 00 00 ....+....... +7362 19.546366215 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921808 12 22 696030 0 0x00000016 0 22 696030 0 16 00 00 00 de 9e 0a 00 00 00 00 00 ............ +7364 19.546524286 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921820 22 18 2033947 0 0x00000012 1 2033947 0 196609 0 12 00 00 00 1b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7366 19.546786070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602571 12 -1 696030 0 0xffffffff 0 -1 696030 0 ff ff ff ff de 9e 0a 00 00 00 00 00 ............ +7372 19.649590015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602583 12 26 704556 0 0x0000001a 0 26 704556 0 1a 00 00 00 2c c0 0a 00 00 00 00 00 ....,....... +7374 19.649760485 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602595 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 152895488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7377 19.650159597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921842 12 -1 704556 0 0xffffffff 0 -1 704556 0 ff ff ff ff 2c c0 0a 00 00 00 00 00 ....,....... +7384 19.652064800 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921854 12 22 696031 0 0x00000016 0 22 696031 0 16 00 00 00 df 9e 0a 00 00 00 00 00 ............ +7386 19.652224541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921866 22 18 2033949 0 0x00000012 1 2033949 0 196609 0 12 00 00 00 1d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7388 19.652516842 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602621 12 -1 696031 0 0xffffffff 0 -1 696031 0 ff ff ff ff df 9e 0a 00 00 00 00 00 ............ +7392 19.753907919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602633 12 26 704557 0 0x0000001a 0 26 704557 0 1a 00 00 00 2d c0 0a 00 00 00 00 00 ....-....... +7394 19.754080057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602645 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 153026560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 09 1f 00 00 00 00 00 ....T.c@.^1@.............. +7396 19.754510641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921888 12 -1 704557 0 0xffffffff 0 -1 704557 0 ff ff ff ff 2d c0 0a 00 00 00 00 00 ....-....... +7398 19.754914999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921900 12 22 696032 0 0x00000016 0 22 696032 0 16 00 00 00 e0 9e 0a 00 00 00 00 00 ............ +7400 19.755072832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921912 22 18 2033951 0 0x00000012 1 2033951 0 196609 0 12 00 00 00 1f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7402 19.755429029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602671 12 -1 696032 0 0xffffffff 0 -1 696032 0 ff ff ff ff e0 9e 0a 00 00 00 00 00 ............ +7405 19.825260878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602683 12 101 704558 0 0x00000065 0 101 704558 0 65 00 00 00 2e c0 0a 00 00 00 00 00 e........... +7407 19.825414181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602695 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 79 00 02 00 00 00 00 00 2c 37 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 79 00 02 00 00 00 00 .....!...o3.......y.......,7......?.....3...|8.. +7409 19.825687647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921934 12 -1 704558 0 0xffffffff 0 -1 704558 0 ff ff ff ff 2e c0 0a 00 00 00 00 00 ............ +7411 19.826816320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921946 12 52 696033 0 0x00000034 0 52 696033 0 34 00 00 00 e1 9e 0a 00 00 00 00 00 4........... +7413 19.827011585 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375921958 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 79 00 02 00 00 00 00 00 00 00 eb bd ee 75 4a 01 00 00 "0...Dk.................L."".([.....y............u" +7415 19.827321768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602796 12 -1 696033 0 0xffffffff 0 -1 696033 0 ff ff ff ff e1 9e 0a 00 00 00 00 00 ............ +7417 19.828083992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602808 12 30 704559 0 0x0000001e 0 30 704559 0 1e 00 00 00 2f c0 0a 00 00 00 00 00 ..../....... +7419 19.828265190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602820 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 153157632 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +7421 19.828569174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922010 12 -1 704559 0 0xffffffff 0 -1 704559 0 ff ff ff ff 2f c0 0a 00 00 00 00 00 ..../....... +7423 19.828914165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922022 12 26 696034 0 0x0000001a 0 26 696034 0 1a 00 00 00 e2 9e 0a 00 00 00 00 00 ............ +7425 19.829096317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922034 26 22 2033953 0 0x00000016 1 2033953 0 196609 0 16 00 00 00 21 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +7427 19.829339504 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602850 12 -1 696034 0 0xffffffff 0 -1 696034 0 ff ff ff ff e2 9e 0a 00 00 00 00 00 ............ +7431 19.857429266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602862 12 26 704560 0 0x0000001a 0 26 704560 0 1a 00 00 00 30 c0 0a 00 00 00 00 00 ....0....... +7433 19.857631445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602874 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 153288704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 09 1f 00 00 00 00 00 ....T.c@.^1@......#....... +7435 19.857972383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922060 12 -1 704560 0 0xffffffff 0 -1 704560 0 ff ff ff ff 30 c0 0a 00 00 00 00 00 ....0....... +7437 19.858324766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922072 12 22 696035 0 0x00000016 0 22 696035 0 16 00 00 00 e3 9e 0a 00 00 00 00 00 ............ +7440 19.858539581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922084 22 18 2033955 0 0x00000012 1 2033955 0 196609 0 12 00 00 00 23 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +7443 19.858792543 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922106 12 -2 80010 80027 0xfffffffe 0 -2 80010 80027 fe ff ff ff 8a 38 01 00 9b 38 01 00 .....8...8.. +7445 19.858876944 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602900 12 -1 696035 0 0xffffffff 0 -1 696035 0 ff ff ff ff e3 9e 0a 00 00 00 00 00 ............ +7468 19.960640669 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602912 12 26 704561 0 0x0000001a 0 26 704561 0 1a 00 00 00 31 c0 0a 00 00 00 00 00 ....1....... +7470 19.960878372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602924 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 153419776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 09 1f 00 00 00 00 00 ....T.c@.^1@......%....... +7472 19.961326361 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922118 12 -1 704561 0 0xffffffff 0 -1 704561 0 ff ff ff ff 31 c0 0a 00 00 00 00 00 ....1....... +7474 19.962060452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922130 12 22 696036 0 0x00000016 0 22 696036 0 16 00 00 00 e4 9e 0a 00 00 00 00 00 ............ +7476 19.962305546 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922142 22 18 2033957 0 0x00000012 1 2033957 0 196609 0 12 00 00 00 25 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +7478 19.962598324 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602950 12 -1 696036 0 0xffffffff 0 -1 696036 0 ff ff ff ff e4 9e 0a 00 00 00 00 00 ............ +7480 19.982386827 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602962 12 -2 80028 80010 0xfffffffe 0 -2 80028 80010 fe ff ff ff 9c 38 01 00 8a 38 01 00 .....8...8.. +7492 20.063762903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602974 12 26 704562 0 0x0000001a 0 26 704562 0 1a 00 00 00 32 c0 0a 00 00 00 00 00 ....2....... +7494 20.063922405 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331602986 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 153550848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 09 1f 00 00 00 00 00 ....T.c@.^1@......'....... +7496 20.064294815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922164 12 -1 704562 0 0xffffffff 0 -1 704562 0 ff ff ff ff 32 c0 0a 00 00 00 00 00 ....2....... +7498 20.064868689 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922176 12 22 696037 0 0x00000016 0 22 696037 0 16 00 00 00 e5 9e 0a 00 00 00 00 00 ............ +7500 20.065126419 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922188 22 18 2033959 0 0x00000012 1 2033959 0 196609 0 12 00 00 00 27 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +7502 20.065389633 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603012 12 -1 696037 0 0xffffffff 0 -1 696037 0 ff ff ff ff e5 9e 0a 00 00 00 00 00 ............ +7505 20.129141569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603024 12 34 704563 0 0x00000022 0 34 704563 0 22 00 00 00 33 c0 0a 00 00 00 00 00 """...3......." +7507 20.129312038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603036 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 7995392 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7a 00 02 00 00 00 00 00 5c 38 0f c3 9d 01 00 00 .....!...o3.......z.......\8...... +7509 20.129411697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603070 12 67 704564 0 0x00000043 0 67 704564 0 43 00 00 00 34 c0 0a 00 00 00 00 00 C...4....... +7511 20.129498005 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603082 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7a 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 90 55 c1 fd 9e ?.....3...|8...........z.......=B.....&......... +7513 20.129596710 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922210 12 -1 704563 0 0xffffffff 0 -1 704563 0 ff ff ff ff 33 c0 0a 00 00 00 00 00 ....3....... +7515 20.129788160 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922222 12 -1 704564 0 0xffffffff 0 -1 704564 0 ff ff ff ff 34 c0 0a 00 00 00 00 00 ....4....... +7517 20.130424500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922234 12 52 696038 0 0x00000034 0 52 696038 0 34 00 00 00 e6 9e 0a 00 00 00 00 00 4........... +7519 20.130636930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922246 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7a 00 02 00 00 00 00 00 00 00 c1 12 1d 76 4a 01 00 00 "0...Dk.................L."".([.....z............v" +7521 20.130918503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603149 12 -1 696038 0 0xffffffff 0 -1 696038 0 ff ff ff ff e6 9e 0a 00 00 00 00 00 ............ +7523 20.131727457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603161 12 30 704565 0 0x0000001e 0 30 704565 0 1e 00 00 00 35 c0 0a 00 00 00 00 00 ....5....... +7525 20.131889820 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603173 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 153681920 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +7527 20.132519007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922298 12 -1 704565 0 0xffffffff 0 -1 704565 0 ff ff ff ff 35 c0 0a 00 00 00 00 00 ....5....... +7529 20.132898092 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922310 12 26 696039 0 0x0000001a 0 26 696039 0 1a 00 00 00 e7 9e 0a 00 00 00 00 00 ............ +7531 20.133141994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922322 26 22 2033961 0 0x00000016 1 2033961 0 196609 0 16 00 00 00 29 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +7533 20.133397341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603203 12 -1 696039 0 0xffffffff 0 -1 696039 0 ff ff ff ff e7 9e 0a 00 00 00 00 00 ............ +7536 20.166598558 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603215 12 26 704566 0 0x0000001a 0 26 704566 0 1a 00 00 00 36 c0 0a 00 00 00 00 00 ....6....... +7538 20.166751146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603227 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 153812992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 09 1f 00 00 00 00 00 ....T.c@.^1@......+....... +7540 20.167176247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922348 12 -1 704566 0 0xffffffff 0 -1 704566 0 ff ff ff ff 36 c0 0a 00 00 00 00 00 ....6....... +7542 20.167647839 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922360 12 22 696040 0 0x00000016 0 22 696040 0 16 00 00 00 e8 9e 0a 00 00 00 00 00 ............ +7544 20.167816401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922372 22 18 2033963 0 0x00000012 1 2033963 0 196609 0 12 00 00 00 2b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +7546 20.168102264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603253 12 -1 696040 0 0xffffffff 0 -1 696040 0 ff ff ff ff e8 9e 0a 00 00 00 00 00 ............ +7552 20.269136429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603265 12 26 704567 0 0x0000001a 0 26 704567 0 1a 00 00 00 37 c0 0a 00 00 00 00 00 ....7....... +7554 20.269287586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603277 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 153944064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 09 1f 00 00 00 00 00 ....T.c@.^1@......-....... +7556 20.269634008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922394 12 -1 704567 0 0xffffffff 0 -1 704567 0 ff ff ff ff 37 c0 0a 00 00 00 00 00 ....7....... +7558 20.270295620 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922406 12 22 696041 0 0x00000016 0 22 696041 0 16 00 00 00 e9 9e 0a 00 00 00 00 00 ............ +7560 20.270465136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922418 22 18 2033965 0 0x00000012 1 2033965 0 196609 0 12 00 00 00 2d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +7562 20.270715714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603303 12 -1 696041 0 0xffffffff 0 -1 696041 0 ff ff ff ff e9 9e 0a 00 00 00 00 00 ............ +7567 20.359255075 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922440 12 -2 80011 80028 0xfffffffe 0 -2 80011 80028 fe ff ff ff 8b 38 01 00 9c 38 01 00 .....8...8.. +7573 20.372723818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603315 12 26 704568 0 0x0000001a 0 26 704568 0 1a 00 00 00 38 c0 0a 00 00 00 00 00 ....8....... +7575 20.372904539 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603327 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 154075136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 09 1f 00 00 00 00 00 ....T.c@.^1@....../....... +7577 20.373282671 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922452 12 -1 704568 0 0xffffffff 0 -1 704568 0 ff ff ff ff 38 c0 0a 00 00 00 00 00 ....8....... +7579 20.373708487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922464 12 22 696042 0 0x00000016 0 22 696042 0 16 00 00 00 ea 9e 0a 00 00 00 00 00 ............ +7581 20.373872042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922476 22 18 2033967 0 0x00000012 1 2033967 0 196609 0 12 00 00 00 2f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +7583 20.374243021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603353 12 -1 696042 0 0xffffffff 0 -1 696042 0 ff ff ff ff ea 9e 0a 00 00 00 00 00 ............ +7590 20.432889700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603365 12 101 704569 0 0x00000065 0 101 704569 0 65 00 00 00 39 c0 0a 00 00 00 00 00 e...9....... +7592 20.433083296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603377 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7b 00 02 00 00 00 00 00 8c 39 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7b 00 02 00 00 00 00 .....!...o3.......{........9......?.....3...|8.. +7594 20.433402300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922498 12 -1 704569 0 0xffffffff 0 -1 704569 0 ff ff ff ff 39 c0 0a 00 00 00 00 00 ....9....... +7596 20.434319019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922510 12 52 696043 0 0x00000034 0 52 696043 0 34 00 00 00 eb 9e 0a 00 00 00 00 00 4........... +7598 20.434480906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922522 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7b 00 02 00 00 00 00 00 00 00 4b 72 4b 76 4a 01 00 00 "0...Dk.................L."".([.....{.........KrKv" +7602 20.434925079 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603478 12 -1 696043 0 0xffffffff 0 -1 696043 0 ff ff ff ff eb 9e 0a 00 00 00 00 00 ............ +7604 20.435605049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603490 12 30 704570 0 0x0000001e 0 30 704570 0 1e 00 00 00 3a c0 0a 00 00 00 00 00 ....:....... +7606 20.435745716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603502 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 154206208 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +7608 20.436161280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922574 12 -1 704570 0 0xffffffff 0 -1 704570 0 ff ff ff ff 3a c0 0a 00 00 00 00 00 ....:....... +7610 20.436496973 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922586 12 26 696044 0 0x0000001a 0 26 696044 0 1a 00 00 00 ec 9e 0a 00 00 00 00 00 ............ +7612 20.436658382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922598 26 22 2033969 0 0x00000016 1 2033969 0 196609 0 16 00 00 00 31 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +7614 20.436989784 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603532 12 -1 696044 0 0xffffffff 0 -1 696044 0 ff ff ff ff ec 9e 0a 00 00 00 00 00 ............ +7619 20.475086689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603544 12 26 704571 0 0x0000001a 0 26 704571 0 1a 00 00 00 3b c0 0a 00 00 00 00 00 ....;....... +7621 20.475261211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603556 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 154337280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 09 1f 00 00 00 00 00 ....T.c@.^1@......3....... +7623 20.475666285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922624 12 -1 704571 0 0xffffffff 0 -1 704571 0 ff ff ff ff 3b c0 0a 00 00 00 00 00 ....;....... +7625 20.476230621 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922636 12 22 696045 0 0x00000016 0 22 696045 0 16 00 00 00 ed 9e 0a 00 00 00 00 00 ............ +7627 20.476396322 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922648 22 18 2033971 0 0x00000012 1 2033971 0 196609 0 12 00 00 00 33 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +7629 20.476674557 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603582 12 -1 696045 0 0xffffffff 0 -1 696045 0 ff ff ff ff ed 9e 0a 00 00 00 00 00 ............ +7632 20.483971596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603594 12 -2 80029 80011 0xfffffffe 0 -2 80029 80011 fe ff ff ff 9d 38 01 00 8b 38 01 00 .....8...8.. +7644 20.578107119 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603606 12 26 704572 0 0x0000001a 0 26 704572 0 1a 00 00 00 3c c0 0a 00 00 00 00 00 ....<....... +7646 20.578276396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603618 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 154468352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 09 1f 00 00 00 00 00 ....T.c@.^1@......5....... +7648 20.578725576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922670 12 -1 704572 0 0xffffffff 0 -1 704572 0 ff ff ff ff 3c c0 0a 00 00 00 00 00 ....<....... +7650 20.579150915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922682 12 22 696046 0 0x00000016 0 22 696046 0 16 00 00 00 ee 9e 0a 00 00 00 00 00 ............ +7652 20.579310417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922694 22 18 2033973 0 0x00000012 1 2033973 0 196609 0 12 00 00 00 35 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +7654 20.579626322 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603644 12 -1 696046 0 0xffffffff 0 -1 696046 0 ff ff ff ff ee 9e 0a 00 00 00 00 00 ............ +7659 20.680902719 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603656 12 26 704573 0 0x0000001a 0 26 704573 0 1a 00 00 00 3d c0 0a 00 00 00 00 00 ....=....... +7661 20.681091309 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603668 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 154599424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 09 1f 00 00 00 00 00 ....T.c@.^1@......7....... +7663 20.681468248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922716 12 -1 704573 0 0xffffffff 0 -1 704573 0 ff ff ff ff 3d c0 0a 00 00 00 00 00 ....=....... +7665 20.681966782 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922728 12 22 696047 0 0x00000016 0 22 696047 0 16 00 00 00 ef 9e 0a 00 00 00 00 00 ............ +7667 20.682126760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922740 22 18 2033975 0 0x00000012 1 2033975 0 196609 0 12 00 00 00 37 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +7669 20.682788134 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603694 12 -1 696047 0 0xffffffff 0 -1 696047 0 ff ff ff ff ef 9e 0a 00 00 00 00 00 ............ +7674 20.737375975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603706 12 101 704574 0 0x00000065 0 101 704574 0 65 00 00 00 3e c0 0a 00 00 00 00 00 e...>....... +7676 20.737560987 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603718 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7c 00 02 00 00 00 00 00 bc 3a 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7c 00 02 00 00 00 00 .....!...o3.......|........:......?.....3...|8.. +7678 20.737905502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922762 12 -1 704574 0 0xffffffff 0 -1 704574 0 ff ff ff ff 3e c0 0a 00 00 00 00 00 ....>....... +7680 20.738719463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922774 12 52 696048 0 0x00000034 0 52 696048 0 34 00 00 00 f0 9e 0a 00 00 00 00 00 4........... +7682 20.738879204 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922786 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7c 00 02 00 00 00 00 00 00 00 bf e5 79 76 4a 01 00 00 "0...Dk.................L."".([.....|...........yv" +7684 20.739131212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603819 12 -1 696048 0 0xffffffff 0 -1 696048 0 ff ff ff ff f0 9e 0a 00 00 00 00 00 ............ +7686 20.739930391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603831 12 30 704575 0 0x0000001e 0 30 704575 0 1e 00 00 00 3f c0 0a 00 00 00 00 00 ....?....... +7688 20.740074635 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603843 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 154730496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +7690 20.740383625 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922838 12 -1 704575 0 0xffffffff 0 -1 704575 0 ff ff ff ff 3f c0 0a 00 00 00 00 00 ....?....... +7692 20.740715027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922850 12 26 696049 0 0x0000001a 0 26 696049 0 1a 00 00 00 f1 9e 0a 00 00 00 00 00 ............ +7694 20.740877390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922862 26 22 2033977 0 0x00000016 1 2033977 0 196609 0 16 00 00 00 39 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +7696 20.741113186 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603873 12 -1 696049 0 0xffffffff 0 -1 696049 0 ff ff ff ff f1 9e 0a 00 00 00 00 00 ............ +7702 20.783915997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603885 12 26 704576 0 0x0000001a 0 26 704576 0 1a 00 00 00 40 c0 0a 00 00 00 00 00 ....@....... +7704 20.784077168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603897 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 154861568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 09 1f 00 00 00 00 00 ....T.c@.^1@......;....... +7706 20.784442186 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922888 12 -1 704576 0 0xffffffff 0 -1 704576 0 ff ff ff ff 40 c0 0a 00 00 00 00 00 ....@....... +7708 20.785031319 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922900 12 22 696050 0 0x00000016 0 22 696050 0 16 00 00 00 f2 9e 0a 00 00 00 00 00 ............ +7710 20.785199881 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922912 22 18 2033979 0 0x00000012 1 2033979 0 196609 0 12 00 00 00 3b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +7712 20.785458565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603923 12 -1 696050 0 0xffffffff 0 -1 696050 0 ff ff ff ff f2 9e 0a 00 00 00 00 00 ............ +7717 20.859920502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922934 12 -2 80012 80029 0xfffffffe 0 -2 80012 80029 fe ff ff ff 8c 38 01 00 9d 38 01 00 .....8...8.. +7725 20.886296749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603935 12 26 704577 0 0x0000001a 0 26 704577 0 1a 00 00 00 41 c0 0a 00 00 00 00 00 ....A....... +7727 20.886476755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603947 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 154992640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 09 1f 00 00 00 00 00 ....T.c@.^1@......=....... +7729 20.886812449 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922946 12 -1 704577 0 0xffffffff 0 -1 704577 0 ff ff ff ff 41 c0 0a 00 00 00 00 00 ....A....... +7731 20.887342215 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922958 12 22 696051 0 0x00000016 0 22 696051 0 16 00 00 00 f3 9e 0a 00 00 00 00 00 ............ +7733 20.887505531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922970 22 18 2033981 0 0x00000012 1 2033981 0 196609 0 12 00 00 00 3d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +7735 20.887789726 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603973 12 -1 696051 0 0xffffffff 0 -1 696051 0 ff ff ff ff f3 9e 0a 00 00 00 00 00 ............ +7744 20.985055208 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603985 12 -2 80030 80012 0xfffffffe 0 -2 80030 80012 fe ff ff ff 9e 38 01 00 8c 38 01 00 .....8...8.. +7750 20.989044905 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331603997 12 26 704578 0 0x0000001a 0 26 704578 0 1a 00 00 00 42 c0 0a 00 00 00 00 00 ....B....... +7752 20.989200354 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604009 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 155123712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 09 1f 00 00 00 00 00 ....T.c@.^1@......?....... +7754 20.989585638 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375922992 12 -1 704578 0 0xffffffff 0 -1 704578 0 ff ff ff ff 42 c0 0a 00 00 00 00 00 ....B....... +7756 20.990185022 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923004 12 22 696052 0 0x00000016 0 22 696052 0 16 00 00 00 f4 9e 0a 00 00 00 00 00 ............ +7758 20.990378857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923016 22 18 2033983 0 0x00000012 1 2033983 0 196609 0 12 00 00 00 3f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +7760 20.990701914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604035 12 -1 696052 0 0xffffffff 0 -1 696052 0 ff ff ff ff f4 9e 0a 00 00 00 00 00 ............ +7765 21.041342735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604047 12 34 704579 0 0x00000022 0 34 704579 0 22 00 00 00 43 c0 0a 00 00 00 00 00 """...C......." +7767 21.041489124 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604059 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 8192000 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7d 00 02 00 00 00 00 00 ec 3b 0f c3 9d 01 00 00 .....!...o3.......}........;...... +7769 21.041589022 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604093 12 67 704580 0 0x00000043 0 67 704580 0 43 00 00 00 44 c0 0a 00 00 00 00 00 C...D....... +7771 21.041672707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604105 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7d 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 aa 21 34 9f ?.....3...|8...........}.......=B.....&......... +7773 21.041760206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923038 12 -1 704579 0 0xffffffff 0 -1 704579 0 ff ff ff ff 43 c0 0a 00 00 00 00 00 ....C....... +7777 21.041949511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923050 12 -1 704580 0 0xffffffff 0 -1 704580 0 ff ff ff ff 44 c0 0a 00 00 00 00 00 ....D....... +7779 21.042818308 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923062 12 52 696053 0 0x00000034 0 52 696053 0 34 00 00 00 f5 9e 0a 00 00 00 00 00 4........... +7781 21.043007612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923074 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7d 00 02 00 00 00 00 00 00 00 6e 4b a8 76 4a 01 00 00 "0...Dk.................L."".([.....}.........nK.v" +7783 21.043265104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604172 12 -1 696053 0 0xffffffff 0 -1 696053 0 ff ff ff ff f5 9e 0a 00 00 00 00 00 ............ +7785 21.044168949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604184 12 30 704581 0 0x0000001e 0 30 704581 0 1e 00 00 00 45 c0 0a 00 00 00 00 00 ....E....... +7787 21.044306755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604196 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 155254784 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +7789 21.044623613 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923126 12 -1 704581 0 0xffffffff 0 -1 704581 0 ff ff ff ff 45 c0 0a 00 00 00 00 00 ....E....... +7791 21.045046806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923138 12 26 696054 0 0x0000001a 0 26 696054 0 1a 00 00 00 f6 9e 0a 00 00 00 00 00 ............ +7793 21.045245171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923150 26 22 2033985 0 0x00000016 1 2033985 0 196609 0 16 00 00 00 41 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +7795 21.045528889 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604226 12 -1 696054 0 0xffffffff 0 -1 696054 0 ff ff ff ff f6 9e 0a 00 00 00 00 00 ............ +7800 21.093125582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604238 12 26 704582 0 0x0000001a 0 26 704582 0 1a 00 00 00 46 c0 0a 00 00 00 00 00 ....F....... +7802 21.093281507 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604250 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 155385856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 09 1f 00 00 00 00 00 ....T.c@.^1@......C....... +7804 21.093580484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923176 12 -1 704582 0 0xffffffff 0 -1 704582 0 ff ff ff ff 46 c0 0a 00 00 00 00 00 ....F....... +7806 21.094170094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923188 12 22 696055 0 0x00000016 0 22 696055 0 16 00 00 00 f7 9e 0a 00 00 00 00 00 ............ +7808 21.094365835 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923200 22 18 2033987 0 0x00000012 1 2033987 0 196609 0 12 00 00 00 43 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +7810 21.094646215 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604276 12 -1 696055 0 0xffffffff 0 -1 696055 0 ff ff ff ff f7 9e 0a 00 00 00 00 00 ............ +7814 21.196537495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604288 12 26 704583 0 0x0000001a 0 26 704583 0 1a 00 00 00 47 c0 0a 00 00 00 00 00 ....G....... +7816 21.196708202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604300 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 155516928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 09 1f 00 00 00 00 00 ....T.c@.^1@......E....... +7818 21.197005510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923222 12 -1 704583 0 0xffffffff 0 -1 704583 0 ff ff ff ff 47 c0 0a 00 00 00 00 00 ....G....... +7820 21.197428703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923234 12 22 696056 0 0x00000016 0 22 696056 0 16 00 00 00 f8 9e 0a 00 00 00 00 00 ............ +7822 21.197590828 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923246 22 18 2033989 0 0x00000012 1 2033989 0 196609 0 12 00 00 00 45 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +7824 21.197861671 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604326 12 -1 696056 0 0xffffffff 0 -1 696056 0 ff ff ff ff f8 9e 0a 00 00 00 00 00 ............ +7834 21.299859762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604338 12 26 704584 0 0x0000001a 0 26 704584 0 1a 00 00 00 48 c0 0a 00 00 00 00 00 ....H....... +7836 21.300044060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604350 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 155648000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 09 1f 00 00 00 00 00 ....T.c@.^1@......G....... +7838 21.300518990 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923268 12 -1 704584 0 0xffffffff 0 -1 704584 0 ff ff ff ff 48 c0 0a 00 00 00 00 00 ....H....... +7840 21.301103830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923280 12 22 696057 0 0x00000016 0 22 696057 0 16 00 00 00 f9 9e 0a 00 00 00 00 00 ............ +7842 21.301305294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923292 22 18 2033991 0 0x00000012 1 2033991 0 196609 0 12 00 00 00 47 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +7844 21.301525831 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604376 12 -1 696057 0 0xffffffff 0 -1 696057 0 ff ff ff ff f9 9e 0a 00 00 00 00 00 ............ +7847 21.344879627 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604388 12 34 704585 0 0x00000022 0 34 704585 0 22 00 00 00 49 c0 0a 00 00 00 00 00 """...I......." +7849 21.345137596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604400 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 8257536 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7e 00 02 00 00 00 00 00 1c 3d 0f c3 9d 01 00 00 .....!...o3.......~........=...... +7851 21.345287085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604434 12 67 704586 0 0x00000043 0 67 704586 0 43 00 00 00 4a c0 0a 00 00 00 00 00 C...J....... +7853 21.345376253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604446 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7e 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c 1a 3a 46 9f ?.....3...|8...........~.......=B.....&......... +7855 21.345465422 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923314 12 -1 704585 0 0xffffffff 0 -1 704585 0 ff ff ff ff 49 c0 0a 00 00 00 00 00 ....I....... +7857 21.345659733 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923326 12 -1 704586 0 0xffffffff 0 -1 704586 0 ff ff ff ff 4a c0 0a 00 00 00 00 00 ....J....... +7859 21.346802473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923338 12 52 696058 0 0x00000034 0 52 696058 0 34 00 00 00 fa 9e 0a 00 00 00 00 00 4........... +7861 21.346999407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923350 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7e 00 02 00 00 00 00 00 00 00 48 ae d6 76 4a 01 00 00 "0...Dk.................L."".([.....~.........H..v" +7863 21.347271442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604513 12 -1 696058 0 0xffffffff 0 -1 696058 0 ff ff ff ff fa 9e 0a 00 00 00 00 00 ............ +7865 21.348037958 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604525 12 30 704587 0 0x0000001e 0 30 704587 0 1e 00 00 00 4b c0 0a 00 00 00 00 00 ....K....... +7867 21.348288298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604537 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 155779072 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +7869 21.348718643 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923402 12 -1 704587 0 0xffffffff 0 -1 704587 0 ff ff ff ff 4b c0 0a 00 00 00 00 00 ....K....... +7871 21.349103212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923414 12 26 696059 0 0x0000001a 0 26 696059 0 1a 00 00 00 fb 9e 0a 00 00 00 00 00 ............ +7873 21.349241018 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923426 26 22 2033993 0 0x00000016 1 2033993 0 196609 0 16 00 00 00 49 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +7875 21.349513769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604567 12 -1 696059 0 0xffffffff 0 -1 696059 0 ff ff ff ff fb 9e 0a 00 00 00 00 00 ............ +7879 21.360555172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923452 12 -2 80013 80030 0xfffffffe 0 -2 80013 80030 fe ff ff ff 8d 38 01 00 9e 38 01 00 .....8...8.. +7885 21.402431250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604579 12 26 704588 0 0x0000001a 0 26 704588 0 1a 00 00 00 4c c0 0a 00 00 00 00 00 ....L....... +7887 21.402597189 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604591 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 155910144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 09 1f 00 00 00 00 00 ....T.c@.^1@......K....... +7889 21.403010607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923464 12 -1 704588 0 0xffffffff 0 -1 704588 0 ff ff ff ff 4c c0 0a 00 00 00 00 00 ....L....... +7891 21.403439999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923476 12 22 696060 0 0x00000016 0 22 696060 0 16 00 00 00 fc 9e 0a 00 00 00 00 00 ............ +7893 21.403601885 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923488 22 18 2033995 0 0x00000012 1 2033995 0 196609 0 12 00 00 00 4b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +7895 21.403858423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604617 12 -1 696060 0 0xffffffff 0 -1 696060 0 ff ff ff ff fc 9e 0a 00 00 00 00 00 ............ +7940 21.486252546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604629 12 -2 80031 80013 0xfffffffe 0 -2 80031 80013 fe ff ff ff 9f 38 01 00 8d 38 01 00 .....8...8.. +7944 21.505446911 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604641 12 26 704589 0 0x0000001a 0 26 704589 0 1a 00 00 00 4d c0 0a 00 00 00 00 00 ....M....... +7946 21.505613089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604653 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 156041216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 09 1f 00 00 00 00 00 ....T.c@.^1@......M....... +7948 21.505983353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923510 12 -1 704589 0 0xffffffff 0 -1 704589 0 ff ff ff ff 4d c0 0a 00 00 00 00 00 ....M....... +7950 21.506322384 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923522 12 22 696061 0 0x00000016 0 22 696061 0 16 00 00 00 fd 9e 0a 00 00 00 00 00 ............ +7952 21.506490707 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923534 22 18 2033997 0 0x00000012 1 2033997 0 196609 0 12 00 00 00 4d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +7954 21.506752491 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604679 12 -1 696061 0 0xffffffff 0 -1 696061 0 ff ff ff ff fd 9e 0a 00 00 00 00 00 ............ +7963 21.608588457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604691 12 26 704590 0 0x0000001a 0 26 704590 0 1a 00 00 00 4e c0 0a 00 00 00 00 00 ....N....... +7965 21.608759165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604703 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 156172288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 09 1f 00 00 00 00 00 ....T.c@.^1@......O....... +7967 21.609129190 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923556 12 -1 704590 0 0xffffffff 0 -1 704590 0 ff ff ff ff 4e c0 0a 00 00 00 00 00 ....N....... +7969 21.609637737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923568 12 22 696062 0 0x00000016 0 22 696062 0 16 00 00 00 fe 9e 0a 00 00 00 00 00 ............ +7971 21.609799623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923580 22 18 2033999 0 0x00000012 1 2033999 0 196609 0 12 00 00 00 4f 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +7973 21.610037565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604729 12 -1 696062 0 0xffffffff 0 -1 696062 0 ff ff ff ff fe 9e 0a 00 00 00 00 00 ............ +7976 21.648938417 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604741 12 101 704591 0 0x00000065 0 101 704591 0 65 00 00 00 4f c0 0a 00 00 00 00 00 e...O....... +7978 21.649102211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604753 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7f 00 02 00 00 00 00 00 4c 3e 0f c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7f 00 02 00 00 00 00 .....!...o3...............L>......?.....3...|8.. +7980 21.649456263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923602 12 -1 704591 0 0xffffffff 0 -1 704591 0 ff ff ff ff 4f c0 0a 00 00 00 00 00 ....O....... +7982 21.650440216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923614 12 52 696063 0 0x00000034 0 52 696063 0 34 00 00 00 ff 9e 0a 00 00 00 00 00 4........... +7984 21.650646448 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923626 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7f 00 02 00 00 00 00 00 00 00 f4 00 05 77 4a 01 00 00 "0...Dk.................L."".([..................w" +7986 21.650913239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604854 12 -1 696063 0 0xffffffff 0 -1 696063 0 ff ff ff ff ff 9e 0a 00 00 00 00 00 ............ +7988 21.651692867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604866 12 30 704592 0 0x0000001e 0 30 704592 0 1e 00 00 00 50 c0 0a 00 00 00 00 00 ....P....... +7990 21.651827812 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604878 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 156303360 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +7992 21.652243853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923678 12 -1 704592 0 0xffffffff 0 -1 704592 0 ff ff ff ff 50 c0 0a 00 00 00 00 00 ....P....... +7994 21.652700424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923690 12 26 696064 0 0x0000001a 0 26 696064 0 1a 00 00 00 00 9f 0a 00 00 00 00 00 ............ +7996 21.652849197 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923702 26 22 2034001 0 0x00000016 1 2034001 0 196609 0 16 00 00 00 51 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +7998 21.653087616 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604908 12 -1 696064 0 0xffffffff 0 -1 696064 0 ff ff ff ff 00 9f 0a 00 00 00 00 00 ............ +8000 21.711639404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604920 12 26 704593 0 0x0000001a 0 26 704593 0 1a 00 00 00 51 c0 0a 00 00 00 00 00 ....Q....... +8002 21.711793423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604932 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 156434432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 09 1f 00 00 00 00 00 ....T.c@.^1@......S....... +8004 21.712150097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923728 12 -1 704593 0 0xffffffff 0 -1 704593 0 ff ff ff ff 51 c0 0a 00 00 00 00 00 ....Q....... +8006 21.712574482 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923740 12 22 696065 0 0x00000016 0 22 696065 0 16 00 00 00 01 9f 0a 00 00 00 00 00 ............ +8008 21.712769032 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923752 22 18 2034003 0 0x00000012 1 2034003 0 196609 0 12 00 00 00 53 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +8010 21.713069439 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604958 12 -1 696065 0 0xffffffff 0 -1 696065 0 ff ff ff ff 01 9f 0a 00 00 00 00 00 ............ +8015 21.814455271 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604970 12 26 704594 0 0x0000001a 0 26 704594 0 1a 00 00 00 52 c0 0a 00 00 00 00 00 ....R....... +8017 21.814634323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331604982 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 156565504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 09 1f 00 00 00 00 00 ....T.c@.^1@......U....... +8019 21.814982653 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923774 12 -1 704594 0 0xffffffff 0 -1 704594 0 ff ff ff ff 52 c0 0a 00 00 00 00 00 ....R....... +8021 21.815608978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923786 12 22 696066 0 0x00000016 0 22 696066 0 16 00 00 00 02 9f 0a 00 00 00 00 00 ............ +8023 21.815819740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923798 22 18 2034005 0 0x00000012 1 2034005 0 196609 0 12 00 00 00 55 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +8025 21.816047192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605008 12 -1 696066 0 0xffffffff 0 -1 696066 0 ff ff ff ff 02 9f 0a 00 00 00 00 00 ............ +8031 21.861489058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923820 12 -2 80014 80031 0xfffffffe 0 -2 80014 80031 fe ff ff ff 8e 38 01 00 9f 38 01 00 .....8...8.. +8038 21.918502331 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605020 12 26 704595 0 0x0000001a 0 26 704595 0 1a 00 00 00 53 c0 0a 00 00 00 00 00 ....S....... +8040 21.918676615 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605032 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 156696576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 09 1f 00 00 00 00 00 ....T.c@.^1@......W....... +8042 21.919028282 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923832 12 -1 704595 0 0xffffffff 0 -1 704595 0 ff ff ff ff 53 c0 0a 00 00 00 00 00 ....S....... +8044 21.919646740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923844 12 22 696067 0 0x00000016 0 22 696067 0 16 00 00 00 03 9f 0a 00 00 00 00 00 ............ +8046 21.919928789 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923856 22 18 2034007 0 0x00000012 1 2034007 0 196609 0 12 00 00 00 57 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +8048 21.920210361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605058 12 -1 696067 0 0xffffffff 0 -1 696067 0 ff ff ff ff 03 9f 0a 00 00 00 00 00 ............ +8054 21.952646494 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605070 12 34 704596 0 0x00000022 0 34 704596 0 22 00 00 00 54 c0 0a 00 00 00 00 00 """...T......." +8056 21.952859402 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605082 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 8388608 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 80 00 02 00 00 00 00 00 7c 3f 0f c3 9d 01 00 00 .....!...o3...............|?...... +8058 21.952985525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605116 12 67 704597 0 0x00000043 0 67 704597 0 43 00 00 00 55 c0 0a 00 00 00 00 00 C...U....... +8060 21.953069925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605128 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 80 00 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 96 74 6a 9f ?.....3...|8...................=B.....&......... +8062 21.953229427 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923878 12 -1 704596 0 0xffffffff 0 -1 704596 0 ff ff ff ff 54 c0 0a 00 00 00 00 00 ....T....... +8064 21.953413725 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923890 12 -1 704597 0 0xffffffff 0 -1 704597 0 ff ff ff ff 55 c0 0a 00 00 00 00 00 ....U....... +8066 21.954448700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923902 12 52 696068 0 0x00000034 0 52 696068 0 34 00 00 00 04 9f 0a 00 00 00 00 00 4........... +8068 21.954603672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923914 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 80 00 02 00 00 00 00 00 00 00 56 66 33 77 4a 01 00 00 "0...Dk.................L."".([...............Vf3w" +8070 21.954931259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605195 12 -1 696068 0 0xffffffff 0 -1 696068 0 ff ff ff ff 04 9f 0a 00 00 00 00 00 ............ +8072 21.955627918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605207 12 30 704598 0 0x0000001e 0 30 704598 0 1e 00 00 00 56 c0 0a 00 00 00 00 00 ....V....... +8074 21.955798149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605219 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 156827648 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 09 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +8076 21.956079721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923966 12 -1 704598 0 0xffffffff 0 -1 704598 0 ff ff ff ff 56 c0 0a 00 00 00 00 00 ....V....... +8078 21.956492662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923978 12 26 696069 0 0x0000001a 0 26 696069 0 1a 00 00 00 05 9f 0a 00 00 00 00 00 ............ +8080 21.956636667 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375923990 26 22 2034009 0 0x00000016 1 2034009 0 196609 0 16 00 00 00 59 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +8082 21.956944704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605249 12 -1 696069 0 0xffffffff 0 -1 696069 0 ff ff ff ff 05 9f 0a 00 00 00 00 00 ............ +8084 21.988096714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605261 12 -2 80032 80014 0xfffffffe 0 -2 80032 80014 fe ff ff ff a0 38 01 00 8e 38 01 00 .....8...8.. +8092 22.021260262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605273 12 26 704599 0 0x0000001a 0 26 704599 0 1a 00 00 00 57 c0 0a 00 00 00 00 00 ....W....... +8094 22.021418571 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605285 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 156958720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 09 1f 00 00 00 00 00 ....T.c@.^1@......[....... +8096 22.021746159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375924016 12 -1 704599 0 0xffffffff 0 -1 704599 0 ff ff ff ff 57 c0 0a 00 00 00 00 00 ....W....... +8098 22.022252798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375924028 12 22 696070 0 0x00000016 0 22 696070 0 16 00 00 00 06 9f 0a 00 00 00 00 00 ............ +8100 22.022401810 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375924040 22 18 2034011 0 0x00000012 1 2034011 0 196609 0 12 00 00 00 5b 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +8102 22.022729158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605311 12 -1 696070 0 0xffffffff 0 -1 696070 0 ff ff ff ff 06 9f 0a 00 00 00 00 00 ............ +8115 22.125372887 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605323 12 26 704600 0 0x0000001a 0 26 704600 0 1a 00 00 00 58 c0 0a 00 00 00 00 00 ....X....... +8117 22.125564575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605335 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 157089792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 09 1f 00 00 00 00 00 ....T.c@.^1@......]....... +8119 22.126020908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375924062 12 -1 704600 0 0xffffffff 0 -1 704600 0 ff ff ff ff 58 c0 0a 00 00 00 00 00 ....X....... +8121 22.126406431 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375924074 12 22 696071 0 0x00000016 0 22 696071 0 16 00 00 00 07 9f 0a 00 00 00 00 00 ............ +8123 22.126566172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 375924086 22 18 2034013 0 0x00000012 1 2034013 0 196609 0 12 00 00 00 5d 09 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +8125 22.126951694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3331605361 12 -1 696071 0 0xffffffff 0 -1 696071 0 ff ff ff ff 07 9f 0a 00 00 00 00 00 ............ diff --git a/captures/016-loopback-write-test-int-advised/tcp-payload-packets.tsv b/captures/016-loopback-write-test-int-advised/tcp-payload-packets.tsv new file mode 100644 index 0000000..e9b3e07 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-payload-packets.tsv @@ -0,0 +1,3172 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +1 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3331580151 12 1a000000d0be0a0000000000 ............ +3 0.000165224 127.0.0.1:57415 127.0.0.1:57433 3331580163 26 16000000548f6340e25e31400100030000001f071f0000000000 ....T.c@.^1@.............. +5 0.000554085 127.0.0.1:57433 127.0.0.1:57415 375900140 12 ffffffffd0be0a0000000000 ............ +7 0.001000404 127.0.0.1:57433 127.0.0.1:57415 375900152 12 16000000889d0a0000000000 ............ +9 0.001147985 127.0.0.1:57433 127.0.0.1:57415 375900164 22 120000001f071f000000000001000300000000000000 ...................... +11 0.001445532 127.0.0.1:57415 127.0.0.1:57433 3331580189 12 ffffffff889d0a0000000000 ............ +15 0.022741795 127.0.0.1:57415 127.0.0.1:57433 3331580201 12 22000000d1be0a0000000000 "........... +17 0.022904634 127.0.0.1:57415 127.0.0.1:57433 3331580213 34 1e0000001c2118d0c46f33bb0100030000003800020000000000d2e90ec39d01 .....!...o3.......8............... +19 0.023039103 127.0.0.1:57415 127.0.0.1:57433 3331580247 12 43000000d2be0a0000000000 C........... +21 0.023157120 127.0.0.1:57415 127.0.0.1:57433 3331580259 67 3f000000980433cb0cb47c38010003000000010000000038000200000000003d ?.....3...|8...........8.......=B.....&......... +23 0.023418665 127.0.0.1:57433 127.0.0.1:57415 375900186 12 ffffffffd1be0a0000000000 ............ +25 0.023666859 127.0.0.1:57433 127.0.0.1:57415 375900198 12 ffffffffd2be0a0000000000 ............ +27 0.024595737 127.0.0.1:57433 127.0.0.1:57415 375900210 12 34000000899d0a0000000000 4........... +29 0.024871111 127.0.0.1:57433 127.0.0.1:57415 375900222 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....8..........*!j +31 0.025169849 127.0.0.1:57415 127.0.0.1:57433 3331580326 12 ffffffff899d0a0000000000 ............ +33 0.025903225 127.0.0.1:57415 127.0.0.1:57433 3331580338 12 1e000000d3be0a0000000000 ............ +35 0.026032209 127.0.0.1:57415 127.0.0.1:57433 3331580350 30 1a00000055ceff62b21b3a5001000300000021071f000000000000000000 ....U..b..:P......!........... +37 0.026318312 127.0.0.1:57433 127.0.0.1:57415 375900274 12 ffffffffd3be0a0000000000 ............ +39 0.027037859 127.0.0.1:57433 127.0.0.1:57415 375900286 12 1a0000008a9d0a0000000000 ............ +41 0.027239323 127.0.0.1:57433 127.0.0.1:57415 375900298 26 1600000021071f00000000000100030000000000000000000000 ....!..................... +43 0.027498484 127.0.0.1:57415 127.0.0.1:57433 3331580380 12 ffffffff8a9d0a0000000000 ............ +48 0.103142262 127.0.0.1:57415 127.0.0.1:57433 3331580392 12 1a000000d4be0a0000000000 ............ +50 0.103340864 127.0.0.1:57415 127.0.0.1:57433 3331580404 26 16000000548f6340e25e314001000300000023071f0000000000 ....T.c@.^1@......#....... +52 0.103740692 127.0.0.1:57433 127.0.0.1:57415 375900324 12 ffffffffd4be0a0000000000 ............ +54 0.104053736 127.0.0.1:57433 127.0.0.1:57415 375900336 12 160000008b9d0a0000000000 ............ +56 0.104227781 127.0.0.1:57433 127.0.0.1:57415 375900348 22 1200000023071f000000000001000300000000000000 ....#................. +58 0.104443073 127.0.0.1:57415 127.0.0.1:57433 3331580430 12 ffffffff8b9d0a0000000000 ............ +61 0.205434799 127.0.0.1:57415 127.0.0.1:57433 3331580442 12 1a000000d5be0a0000000000 ............ +63 0.205737591 127.0.0.1:57415 127.0.0.1:57433 3331580454 26 16000000548f6340e25e314001000300000025071f0000000000 ....T.c@.^1@......%....... +65 0.206041098 127.0.0.1:57433 127.0.0.1:57415 375900370 12 ffffffffd5be0a0000000000 ............ +67 0.206580400 127.0.0.1:57433 127.0.0.1:57415 375900382 12 160000008c9d0a0000000000 ............ +69 0.206786633 127.0.0.1:57433 127.0.0.1:57415 375900394 22 1200000025071f000000000001000300000000000000 ....%................. +71 0.207018614 127.0.0.1:57415 127.0.0.1:57433 3331580480 12 ffffffff8c9d0a0000000000 ............ +75 0.308660984 127.0.0.1:57415 127.0.0.1:57433 3331580492 12 1a000000d6be0a0000000000 ............ +77 0.308844805 127.0.0.1:57415 127.0.0.1:57433 3331580504 26 16000000548f6340e25e314001000300000027071f0000000000 ....T.c@.^1@......'....... +79 0.309276819 127.0.0.1:57433 127.0.0.1:57415 375900416 12 ffffffffd6be0a0000000000 ............ +81 0.309797287 127.0.0.1:57433 127.0.0.1:57415 375900428 12 160000008d9d0a0000000000 ............ +83 0.309965372 127.0.0.1:57433 127.0.0.1:57415 375900440 22 1200000027071f000000000001000300000000000000 ....'................. +85 0.310291767 127.0.0.1:57415 127.0.0.1:57433 3331580530 12 ffffffff8d9d0a0000000000 ............ +87 0.327066422 127.0.0.1:57415 127.0.0.1:57433 3331580542 12 65000000d7be0a0000000000 e........... +89 0.327273846 127.0.0.1:57415 127.0.0.1:57433 3331580554 101 1e0000001c2118d0c46f33bb010003000000390002000000000002eb0ec39d01 .....!...o3.......9...............?.....3...|8.. +92 0.327549696 127.0.0.1:57433 127.0.0.1:57415 375900462 12 feffffff6338010074380100 ....c8..t8.. +97 0.327850580 127.0.0.1:57433 127.0.0.1:57415 375900474 12 ffffffffd7be0a0000000000 ............ +99 0.328246355 127.0.0.1:57433 127.0.0.1:57415 375900486 12 340000008e9d0a0000000000 4........... +101 0.328398705 127.0.0.1:57433 127.0.0.1:57415 375900498 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....9...........Oj +103 0.328728199 127.0.0.1:57415 127.0.0.1:57433 3331580655 12 ffffffff8e9d0a0000000000 ............ +105 0.329505682 127.0.0.1:57415 127.0.0.1:57433 3331580667 12 1e000000d8be0a0000000000 ............ +107 0.329664946 127.0.0.1:57415 127.0.0.1:57433 3331580679 30 1a00000055ceff62b21b3a5001000300000029071f000000000000000000 ....U..b..:P......)........... +109 0.329946518 127.0.0.1:57433 127.0.0.1:57415 375900550 12 ffffffffd8be0a0000000000 ............ +111 0.330317497 127.0.0.1:57433 127.0.0.1:57415 375900562 12 1a0000008f9d0a0000000000 ............ +113 0.330472469 127.0.0.1:57433 127.0.0.1:57415 375900574 26 1600000029071f00000000000100030000000000000000000000 ....)..................... +115 0.330716610 127.0.0.1:57415 127.0.0.1:57433 3331580709 12 ffffffff8f9d0a0000000000 ............ +125 0.411456347 127.0.0.1:57415 127.0.0.1:57433 3331580721 12 1a000000d9be0a0000000000 ............ +127 0.411612749 127.0.0.1:57415 127.0.0.1:57433 3331580733 26 16000000548f6340e25e31400100030000002b071f0000000000 ....T.c@.^1@......+....... +129 0.411887169 127.0.0.1:57433 127.0.0.1:57415 375900600 12 ffffffffd9be0a0000000000 ............ +131 0.412411690 127.0.0.1:57433 127.0.0.1:57415 375900612 12 16000000909d0a0000000000 ............ +133 0.412569284 127.0.0.1:57433 127.0.0.1:57415 375900624 22 120000002b071f000000000001000300000000000000 ....+................. +135 0.412908316 127.0.0.1:57415 127.0.0.1:57433 3331580759 12 ffffffff909d0a0000000000 ............ +138 0.429546356 127.0.0.1:57415 127.0.0.1:57433 3331580771 12 feffffff7538010063380100 ....u8..c8.. +143 0.513609886 127.0.0.1:57415 127.0.0.1:57433 3331580783 12 1a000000dabe0a0000000000 ............ +145 0.513777018 127.0.0.1:57415 127.0.0.1:57433 3331580795 26 16000000548f6340e25e31400100030000002d071f0000000000 ....T.c@.^1@......-....... +147 0.514097691 127.0.0.1:57433 127.0.0.1:57415 375900646 12 ffffffffdabe0a0000000000 ............ +149 0.514573097 127.0.0.1:57433 127.0.0.1:57415 375900658 12 16000000919d0a0000000000 ............ +153 0.514771938 127.0.0.1:57433 127.0.0.1:57415 375900670 22 120000002d071f000000000001000300000000000000 ....-................. +155 0.515069008 127.0.0.1:57415 127.0.0.1:57433 3331580821 12 ffffffff919d0a0000000000 ............ +159 0.616156816 127.0.0.1:57415 127.0.0.1:57433 3331580833 12 1a000000dbbe0a0000000000 ............ +161 0.616326809 127.0.0.1:57415 127.0.0.1:57433 3331580845 26 16000000548f6340e25e31400100030000002f071f0000000000 ....T.c@.^1@....../....... +163 0.616643906 127.0.0.1:57433 127.0.0.1:57415 375900692 12 ffffffffdbbe0a0000000000 ............ +165 0.617335796 127.0.0.1:57433 127.0.0.1:57415 375900704 12 16000000929d0a0000000000 ............ +167 0.617496014 127.0.0.1:57433 127.0.0.1:57415 375900716 22 120000002f071f000000000001000300000000000000 ..../................. +169 0.617778301 127.0.0.1:57415 127.0.0.1:57433 3331580871 12 ffffffff929d0a0000000000 ............ +171 0.630466223 127.0.0.1:57415 127.0.0.1:57433 3331580883 12 22000000dcbe0a0000000000 "........... +173 0.630652905 127.0.0.1:57415 127.0.0.1:57433 3331580895 34 1e0000001c2118d0c46f33bb0100030000003a0002000000000031ec0ec39d01 .....!...o3.......:.......1....... +175 0.630784512 127.0.0.1:57415 127.0.0.1:57433 3331580929 12 43000000ddbe0a0000000000 C........... +177 0.630866289 127.0.0.1:57415 127.0.0.1:57433 3331580941 67 3f000000980433cb0cb47c3801000300000001000000003a000200000000003d ?.....3...|8...........:.......=B.....&......... +179 0.630983114 127.0.0.1:57433 127.0.0.1:57415 375900738 12 ffffffffdcbe0a0000000000 ............ +181 0.631186247 127.0.0.1:57433 127.0.0.1:57415 375900750 12 ffffffffddbe0a0000000000 ............ +183 0.631912947 127.0.0.1:57433 127.0.0.1:57415 375900762 12 34000000939d0a0000000000 4........... +185 0.632081032 127.0.0.1:57433 127.0.0.1:57415 375900774 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....:...........}j +187 0.632321835 127.0.0.1:57415 127.0.0.1:57433 3331581008 12 ffffffff939d0a0000000000 ............ +189 0.633091211 127.0.0.1:57415 127.0.0.1:57433 3331581020 12 1e000000debe0a0000000000 ............ +191 0.633248568 127.0.0.1:57415 127.0.0.1:57433 3331581032 30 1a00000055ceff62b21b3a5001000300000031071f000000000000000000 ....U..b..:P......1........... +193 0.633539915 127.0.0.1:57433 127.0.0.1:57415 375900826 12 ffffffffdebe0a0000000000 ............ +195 0.634094715 127.0.0.1:57433 127.0.0.1:57415 375900838 12 1a000000949d0a0000000000 ............ +197 0.634235382 127.0.0.1:57433 127.0.0.1:57415 375900850 26 1600000031071f00000000000100030000000000000000000000 ....1..................... +199 0.634500504 127.0.0.1:57415 127.0.0.1:57433 3331581062 12 ffffffff949d0a0000000000 ............ +201 0.719250202 127.0.0.1:57415 127.0.0.1:57433 3331581074 12 1a000000dfbe0a0000000000 ............ +203 0.719407797 127.0.0.1:57415 127.0.0.1:57433 3331581086 26 16000000548f6340e25e314001000300000033071f0000000000 ....T.c@.^1@......3....... +205 0.719770193 127.0.0.1:57433 127.0.0.1:57415 375900876 12 ffffffffdfbe0a0000000000 ............ +207 0.722665310 127.0.0.1:57433 127.0.0.1:57415 375900888 12 16000000959d0a0000000000 ............ +209 0.722847462 127.0.0.1:57433 127.0.0.1:57415 375900900 22 1200000033071f000000000001000300000000000000 ....3................. +211 0.723070860 127.0.0.1:57415 127.0.0.1:57433 3331581112 12 ffffffff959d0a0000000000 ............ +215 0.825503349 127.0.0.1:57415 127.0.0.1:57433 3331581124 12 1a000000e0be0a0000000000 ............ +217 0.825663805 127.0.0.1:57415 127.0.0.1:57433 3331581136 26 16000000548f6340e25e314001000300000035071f0000000000 ....T.c@.^1@......5....... +219 0.826063395 127.0.0.1:57433 127.0.0.1:57415 375900922 12 ffffffffe0be0a0000000000 ............ +221 0.826495409 127.0.0.1:57433 127.0.0.1:57415 375900934 12 16000000969d0a0000000000 ............ +223 0.826674938 127.0.0.1:57433 127.0.0.1:57415 375900946 22 1200000035071f000000000001000300000000000000 ....5................. +225 0.826995611 127.0.0.1:57415 127.0.0.1:57433 3331581162 12 ffffffff969d0a0000000000 ............ +228 0.828516245 127.0.0.1:57433 127.0.0.1:57415 375900968 12 feffffff6438010075380100 ....d8..u8.. +239 0.928485155 127.0.0.1:57415 127.0.0.1:57433 3331581174 12 1a000000e1be0a0000000000 ............ +241 0.928707361 127.0.0.1:57415 127.0.0.1:57433 3331581186 26 16000000548f6340e25e314001000300000037071f0000000000 ....T.c@.^1@......7....... +243 0.929250240 127.0.0.1:57433 127.0.0.1:57415 375900980 12 ffffffffe1be0a0000000000 ............ +245 0.929618120 127.0.0.1:57433 127.0.0.1:57415 375900992 12 16000000979d0a0000000000 ............ +247 0.929794312 127.0.0.1:57433 127.0.0.1:57415 375901004 22 1200000037071f000000000001000300000000000000 ....7................. +249 0.930005312 127.0.0.1:57415 127.0.0.1:57433 3331581212 12 ffffffff979d0a0000000000 ............ +252 0.930196524 127.0.0.1:57415 127.0.0.1:57433 3331581224 12 feffffff7638010064380100 ....v8..d8.. +255 0.935210705 127.0.0.1:57415 127.0.0.1:57433 3331581236 12 65000000e2be0a0000000000 e........... +257 0.935416460 127.0.0.1:57415 127.0.0.1:57433 3331581248 101 1e0000001c2118d0c46f33bb0100030000003b0002000000000063ed0ec39d01 .....!...o3.......;.......c.......?.....3...|8.. +259 0.935877323 127.0.0.1:57433 127.0.0.1:57415 375901026 12 ffffffffe2be0a0000000000 ............ +261 0.937161446 127.0.0.1:57433 127.0.0.1:57415 375901038 12 34000000989d0a0000000000 4........... +263 0.937362909 127.0.0.1:57433 127.0.0.1:57415 375901050 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....;..........j.j +265 0.937691689 127.0.0.1:57415 127.0.0.1:57433 3331581349 12 ffffffff989d0a0000000000 ............ +267 0.938519716 127.0.0.1:57415 127.0.0.1:57433 3331581361 12 1e000000e3be0a0000000000 ............ +269 0.938670397 127.0.0.1:57415 127.0.0.1:57433 3331581373 30 1a00000055ceff62b21b3a5001000300000039071f000000000000000000 ....U..b..:P......9........... +271 0.939039230 127.0.0.1:57433 127.0.0.1:57415 375901102 12 ffffffffe3be0a0000000000 ............ +273 0.939397097 127.0.0.1:57433 127.0.0.1:57415 375901114 12 1a000000999d0a0000000000 ............ +275 0.939543724 127.0.0.1:57433 127.0.0.1:57415 375901126 26 1600000039071f00000000000100030000000000000000000000 ....9..................... +277 0.939726591 127.0.0.1:57415 127.0.0.1:57433 3331581403 12 ffffffff999d0a0000000000 ............ +287 1.032993555 127.0.0.1:57415 127.0.0.1:57433 3331581415 12 1a000000e4be0a0000000000 ............ +289 1.033175468 127.0.0.1:57415 127.0.0.1:57433 3331581427 26 16000000548f6340e25e31400100030000003b071f0000000000 ....T.c@.^1@......;....... +291 1.033435106 127.0.0.1:57433 127.0.0.1:57415 375901152 12 ffffffffe4be0a0000000000 ............ +293 1.034313679 127.0.0.1:57433 127.0.0.1:57415 375901164 12 160000009a9d0a0000000000 ............ +295 1.034533978 127.0.0.1:57433 127.0.0.1:57415 375901176 22 120000003b071f000000000001000300000000000000 ....;................. +297 1.034906149 127.0.0.1:57415 127.0.0.1:57433 3331581453 12 ffffffff9a9d0a0000000000 ............ +299 1.136361361 127.0.0.1:57415 127.0.0.1:57433 3331581465 12 1a000000e5be0a0000000000 ............ +301 1.136534452 127.0.0.1:57415 127.0.0.1:57433 3331581477 26 16000000548f6340e25e31400100030000003d071f0000000000 ....T.c@.^1@......=....... +303 1.136908531 127.0.0.1:57433 127.0.0.1:57415 375901198 12 ffffffffe5be0a0000000000 ............ +305 1.138098001 127.0.0.1:57433 127.0.0.1:57415 375901210 12 160000009b9d0a0000000000 ............ +307 1.138261795 127.0.0.1:57433 127.0.0.1:57415 375901222 22 120000003d071f000000000001000300000000000000 ....=................. +309 1.138521194 127.0.0.1:57415 127.0.0.1:57433 3331581503 12 ffffffff9b9d0a0000000000 ............ +313 1.239511490 127.0.0.1:57415 127.0.0.1:57433 3331581515 12 65000000e6be0a0000000000 e........... +315 1.239711046 127.0.0.1:57415 127.0.0.1:57433 3331581527 101 1e0000001c2118d0c46f33bb0100030000003c0002000000000092ee0ec39d01 .....!...o3.......<...............?.....3...|8.. +317 1.240061283 127.0.0.1:57433 127.0.0.1:57415 375901244 12 ffffffffe6be0a0000000000 ............ +320 1.241290331 127.0.0.1:57433 127.0.0.1:57415 375901256 12 340000009c9d0a0000000000 4........... +319 1.241290569 127.0.0.1:57415 127.0.0.1:57433 3331581628 12 1a000000e7be0a0000000000 ............ +321 1.241420269 127.0.0.1:57415 127.0.0.1:57433 3331581640 26 16000000548f6340e25e31400100030000003f071f0000000000 ....T.c@.^1@......?....... +324 1.241535664 127.0.0.1:57433 127.0.0.1:57415 375901268 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....<.........0..j +326 1.241750479 127.0.0.1:57433 127.0.0.1:57415 375901320 12 ffffffffe7be0a0000000000 ............ +327 1.241914034 127.0.0.1:57415 127.0.0.1:57433 3331581666 12 ffffffff9c9d0a0000000000 ............ +329 1.242209673 127.0.0.1:57433 127.0.0.1:57415 375901332 12 160000009d9d0a0000000000 ............ +331 1.242391109 127.0.0.1:57433 127.0.0.1:57415 375901344 22 120000003f071f000000000001000300000000000000 ....?................. +333 1.242599249 127.0.0.1:57415 127.0.0.1:57433 3331581678 12 1e000000e8be0a0000000000 ............ +335 1.242858410 127.0.0.1:57415 127.0.0.1:57433 3331581690 30 1a00000055ceff62b21b3a5001000300000041071f000000000000000000 ....U..b..:P......A........... +337 1.243173122 127.0.0.1:57415 127.0.0.1:57433 3331581720 12 ffffffff9d9d0a0000000000 ............ +338 1.243314028 127.0.0.1:57433 127.0.0.1:57415 375901366 12 ffffffffe8be0a0000000000 ............ +340 1.243897915 127.0.0.1:57433 127.0.0.1:57415 375901378 12 1a0000009e9d0a0000000000 ............ +342 1.244058609 127.0.0.1:57433 127.0.0.1:57415 375901390 26 1600000041071f00000000000100030000000000000000000000 ....A..................... +344 1.244295835 127.0.0.1:57415 127.0.0.1:57433 3331581732 12 ffffffff9e9d0a0000000000 ............ +346 1.328093290 127.0.0.1:57433 127.0.0.1:57415 375901416 12 feffffff6538010076380100 ....e8..v8.. +354 1.345080376 127.0.0.1:57415 127.0.0.1:57433 3331581744 12 1a000000e9be0a0000000000 ............ +356 1.345286131 127.0.0.1:57415 127.0.0.1:57433 3331581756 26 16000000548f6340e25e314001000300000043071f0000000000 ....T.c@.^1@......C....... +358 1.345574617 127.0.0.1:57433 127.0.0.1:57415 375901428 12 ffffffffe9be0a0000000000 ............ +360 1.346232891 127.0.0.1:57433 127.0.0.1:57415 375901440 12 160000009f9d0a0000000000 ............ +362 1.346396923 127.0.0.1:57433 127.0.0.1:57415 375901452 22 1200000043071f000000000001000300000000000000 ....C................. +364 1.346600533 127.0.0.1:57415 127.0.0.1:57433 3331581782 12 ffffffff9f9d0a0000000000 ............ +371 1.432573795 127.0.0.1:57415 127.0.0.1:57433 3331581794 12 feffffff7738010065380100 ....w8..e8.. +374 1.448509693 127.0.0.1:57415 127.0.0.1:57433 3331581806 12 1a000000eabe0a0000000000 ............ +376 1.448699236 127.0.0.1:57415 127.0.0.1:57433 3331581818 26 16000000548f6340e25e314001000300000045071f0000000000 ....T.c@.^1@......E....... +378 1.449090004 127.0.0.1:57433 127.0.0.1:57415 375901474 12 ffffffffeabe0a0000000000 ............ +380 1.449635744 127.0.0.1:57433 127.0.0.1:57415 375901486 12 16000000a09d0a0000000000 ............ +382 1.449795961 127.0.0.1:57433 127.0.0.1:57415 375901498 22 1200000045071f000000000001000300000000000000 ....E................. +384 1.450187683 127.0.0.1:57415 127.0.0.1:57433 3331581844 12 ffffffffa09d0a0000000000 ............ +392 1.543837547 127.0.0.1:57415 127.0.0.1:57433 3331581856 12 65000000ebbe0a0000000000 e........... +394 1.544049263 127.0.0.1:57415 127.0.0.1:57433 3331581868 101 1e0000001c2118d0c46f33bb0100030000003d00020000000000c3ef0ec39d01 .....!...o3.......=...............?.....3...|8.. +396 1.544373512 127.0.0.1:57433 127.0.0.1:57415 375901520 12 ffffffffebbe0a0000000000 ............ +398 1.545493603 127.0.0.1:57433 127.0.0.1:57415 375901532 12 34000000a19d0a0000000000 4........... +400 1.545658588 127.0.0.1:57433 127.0.0.1:57415 375901544 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....=..........>.k +402 1.545934916 127.0.0.1:57415 127.0.0.1:57433 3331581969 12 ffffffffa19d0a0000000000 ............ +404 1.546732903 127.0.0.1:57415 127.0.0.1:57433 3331581981 12 1e000000ecbe0a0000000000 ............ +406 1.546900988 127.0.0.1:57415 127.0.0.1:57433 3331581993 30 1a00000055ceff62b21b3a5001000300000047071f000000000000000000 ....U..b..:P......G........... +408 1.547280312 127.0.0.1:57433 127.0.0.1:57415 375901596 12 ffffffffecbe0a0000000000 ............ +410 1.547598600 127.0.0.1:57433 127.0.0.1:57415 375901608 12 1a000000a29d0a0000000000 ............ +412 1.547743320 127.0.0.1:57433 127.0.0.1:57415 375901620 26 1600000047071f00000000000100030000000000000000000000 ....G..................... +414 1.547983170 127.0.0.1:57415 127.0.0.1:57433 3331582023 12 ffffffffa29d0a0000000000 ............ +416 1.551586628 127.0.0.1:57415 127.0.0.1:57433 3331582035 12 1a000000edbe0a0000000000 ............ +418 1.551737070 127.0.0.1:57415 127.0.0.1:57433 3331582047 26 16000000548f6340e25e314001000300000049071f0000000000 ....T.c@.^1@......I....... +420 1.552175999 127.0.0.1:57433 127.0.0.1:57415 375901646 12 ffffffffedbe0a0000000000 ............ +422 1.552765131 127.0.0.1:57433 127.0.0.1:57415 375901658 12 16000000a39d0a0000000000 ............ +424 1.552921295 127.0.0.1:57433 127.0.0.1:57415 375901670 22 1200000049071f000000000001000300000000000000 ....I................. +426 1.553163767 127.0.0.1:57415 127.0.0.1:57433 3331582073 12 ffffffffa39d0a0000000000 ............ +459 1.655227900 127.0.0.1:57415 127.0.0.1:57433 3331582085 12 1a000000eebe0a0000000000 ............ +461 1.655418396 127.0.0.1:57415 127.0.0.1:57433 3331582097 26 16000000548f6340e25e31400100030000004b071f0000000000 ....T.c@.^1@......K....... +463 1.655894995 127.0.0.1:57433 127.0.0.1:57415 375901692 12 ffffffffeebe0a0000000000 ............ +465 1.656330824 127.0.0.1:57433 127.0.0.1:57415 375901704 12 16000000a49d0a0000000000 ............ +467 1.656491518 127.0.0.1:57433 127.0.0.1:57415 375901716 22 120000004b071f000000000001000300000000000000 ....K................. +469 1.656807423 127.0.0.1:57415 127.0.0.1:57433 3331582123 12 ffffffffa49d0a0000000000 ............ +474 1.759057522 127.0.0.1:57415 127.0.0.1:57433 3331582135 12 f3000000efbe0a0000000000 ............ +476 1.759227753 127.0.0.1:57415 127.0.0.1:57433 3331582147 243 16000000548f6340e25e31400100030000004d071f0000000000d5000000893d ....T.c@.^1@......M............=...y.N.......... +478 1.759597301 127.0.0.1:57433 127.0.0.1:57415 375901738 12 ffffffffefbe0a0000000000 ............ +480 1.761806965 127.0.0.1:57433 127.0.0.1:57415 375901750 12 16000000a59d0a0000000000 ............ +482 1.762013197 127.0.0.1:57433 127.0.0.1:57415 375901762 22 120000004d071f000000000001000300000000000000 ....M................. +484 1.762294531 127.0.0.1:57415 127.0.0.1:57433 3331582390 12 ffffffffa59d0a0000000000 ............ +486 1.800772905 127.0.0.1:57433 127.0.0.1:57415 375901784 12 4d000000a69d0a0000000000 M........... +488 1.801002502 127.0.0.1:57433 127.0.0.1:57415 375901796 77 49000000f305390eb1f3723f0100ffffffff0013000000520023002e00430061 I.....9...r?...........R.#...C.a.c.h.e...P.r.o.c +490 1.801273108 127.0.0.1:57415 127.0.0.1:57433 3331582402 12 ffffffffa69d0a0000000000 ............ +492 1.801690102 127.0.0.1:57433 127.0.0.1:57415 375901873 12 20000000a79d0a0000000000 ........... +494 1.801881552 127.0.0.1:57433 127.0.0.1:57415 375901885 32 1c000000bfdae1a4326197c40100ffffffff005d0fb274564d19b40100000001 ........2a.........]..tVM....... +496 1.802018404 127.0.0.1:57433 127.0.0.1:57415 375901917 12 20000000a89d0a0000000000 ........... +498 1.802110672 127.0.0.1:57415 127.0.0.1:57433 3331582414 12 ffffffffa79d0a0000000000 ............ +500 1.802284479 127.0.0.1:57433 127.0.0.1:57415 375901929 32 1c000000bfdae1a4326197c40100ffffffff005d0fb274564d19b40100000000 ........2a.........]..tVM....... +502 1.802606583 127.0.0.1:57415 127.0.0.1:57433 3331582426 12 ffffffffa89d0a0000000000 ............ +504 1.804748058 127.0.0.1:57433 127.0.0.1:57415 375901961 12 1b000000a99d0a0000000000 ............ +506 1.804938793 127.0.0.1:57433 127.0.0.1:57415 375901973 27 170000005b3c690ebea442610100ffffffff000000000000000000 ....[............... +552 1.848724365 127.0.0.1:57415 127.0.0.1:57433 3331582556 12 43000000f1be0a0000000000 C........... +554 1.848808765 127.0.0.1:57415 127.0.0.1:57433 3331582568 67 3f000000980433cb0cb47c3801000300000001000000003e000200000000003d ?.....3...|8...........>.......=B.....&......... +555 1.848882914 127.0.0.1:57433 127.0.0.1:57415 375902293 12 fffffffff0be0a0000000000 ............ +556 1.848978281 127.0.0.1:57433 127.0.0.1:57415 375902305 12 fffffffff1be0a0000000000 ............ +559 1.849909544 127.0.0.1:57433 127.0.0.1:57415 375902317 12 34000000af9d0a0000000000 4........... +561 1.850082636 127.0.0.1:57433 127.0.0.1:57415 375902329 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....>.........K.7k +563 1.850329876 127.0.0.1:57415 127.0.0.1:57433 3331582635 12 ffffffffaf9d0a0000000000 ............ +565 1.853183508 127.0.0.1:57415 127.0.0.1:57433 3331582647 12 1e000000f2be0a0000000000 ............ +566 1.853330612 127.0.0.1:57415 127.0.0.1:57433 3331582659 30 1a00000055ceff62b21b3a500100030000004f071f000000000000000000 ....U..b..:P......O........... +567 1.853640318 127.0.0.1:57433 127.0.0.1:57415 375902381 12 fffffffff2be0a0000000000 ............ +569 1.854010105 127.0.0.1:57433 127.0.0.1:57415 375902393 12 1a000000b09d0a0000000000 ............ +571 1.854168415 127.0.0.1:57433 127.0.0.1:57415 375902405 26 160000004f071f00000000000100030000000000000000000000 ....O..................... +573 1.854360104 127.0.0.1:57415 127.0.0.1:57433 3331582689 12 ffffffffb09d0a0000000000 ............ +575 1.863100052 127.0.0.1:57415 127.0.0.1:57433 3331582701 12 1a000000f3be0a0000000000 ............ +577 1.863251209 127.0.0.1:57415 127.0.0.1:57433 3331582713 26 16000000548f6340e25e314001000300000051071f0000000000 ....T.c@.^1@......Q....... +579 1.863475084 127.0.0.1:57433 127.0.0.1:57415 375902431 12 fffffffff3be0a0000000000 ............ +581 1.863890171 127.0.0.1:57433 127.0.0.1:57415 375902443 12 16000000b19d0a0000000000 ............ +583 1.864037037 127.0.0.1:57433 127.0.0.1:57415 375902455 22 1200000051071f000000000001000300000000000000 ....Q................. +585 1.864275217 127.0.0.1:57415 127.0.0.1:57433 3331582739 12 ffffffffb19d0a0000000000 ............ +587 1.883548260 127.0.0.1:57433 127.0.0.1:57415 375902477 12 18000000b29d0a0000000000 ............ +589 1.883737326 127.0.0.1:57433 127.0.0.1:57415 375902489 24 14000000224f42074e8ece4d0100ffffffff000000000001 ...."OB.N..M............ +591 1.883989811 127.0.0.1:57415 127.0.0.1:57433 3331582751 12 ffffffffb29d0a0000000000 ............ +690 1.927354097 127.0.0.1:57433 127.0.0.1:57415 375902513 12 d4000000b39d0a0000000000 ............ +695 1.927555561 127.0.0.1:57433 127.0.0.1:57415 375902525 212 d00000007aff25efb80dca27010003000000b00c0000000000002b0300000000 ....z.%....'..............+.......W...H.a.n.d.l. +698 1.927899837 127.0.0.1:57415 127.0.0.1:57433 3331582763 12 ffffffffb39d0a0000000000 ............ +702 1.934084415 127.0.0.1:57415 127.0.0.1:57433 3331582775 12 feffffff7838010066380100 ....x8..f8.. +706 1.965315580 127.0.0.1:57415 127.0.0.1:57433 3331582787 12 1a000000f4be0a0000000000 ............ +708 1.965482473 127.0.0.1:57415 127.0.0.1:57433 3331582799 26 16000000548f6340e25e314001000300000053071f0000000000 ....T.c@.^1@......S....... +710 1.966123104 127.0.0.1:57433 127.0.0.1:57415 375902737 12 fffffffff4be0a0000000000 ............ +714 1.974383116 127.0.0.1:57433 127.0.0.1:57415 375902749 12 16000000b49d0a0000000000 ............ +716 1.974549532 127.0.0.1:57433 127.0.0.1:57415 375902761 22 1200000053071f000000000001000300000000000000 ....S................. +718 1.974861383 127.0.0.1:57415 127.0.0.1:57433 3331582825 12 ffffffffb49d0a0000000000 ............ +853 2.077420712 127.0.0.1:57415 127.0.0.1:57433 3331582837 12 1a000000f5be0a0000000000 ............ +855 2.077574968 127.0.0.1:57415 127.0.0.1:57433 3331582849 26 16000000548f6340e25e314001000300000055071f0000000000 ....T.c@.^1@......U....... +857 2.077950001 127.0.0.1:57433 127.0.0.1:57415 375902783 12 fffffffff5be0a0000000000 ............ +859 2.078559160 127.0.0.1:57433 127.0.0.1:57415 375902795 12 16000000b59d0a0000000000 ............ +861 2.078737974 127.0.0.1:57433 127.0.0.1:57415 375902807 22 1200000055071f000000000001000300000000000000 ....U................. +863 2.079100370 127.0.0.1:57415 127.0.0.1:57433 3331582875 12 ffffffffb59d0a0000000000 ............ +871 2.128953218 127.0.0.1:57433 127.0.0.1:57415 375902829 12 eb000000b69d0a0000000000 ............ +873 2.129197836 127.0.0.1:57433 127.0.0.1:57415 375902841 235 d00000007aff25efb80dca27010003000000b40c0000000000002c0300000000 ....z.%....'..............,.......W...H.a.n.d.l. +875 2.129466534 127.0.0.1:57415 127.0.0.1:57433 3331582887 12 ffffffffb69d0a0000000000 ............ +889 2.154176712 127.0.0.1:57415 127.0.0.1:57433 3331582899 12 65000000f6be0a0000000000 e........... +891 2.154409885 127.0.0.1:57415 127.0.0.1:57433 3331582911 101 1e0000001c2118d0c46f33bb0100030000003f0002000000000026f20ec39d01 .....!...o3.......?.......&.......?.....3...|8.. +893 2.154873848 127.0.0.1:57433 127.0.0.1:57415 375903076 12 fffffffff6be0a0000000000 ............ +895 2.157826662 127.0.0.1:57433 127.0.0.1:57415 375903088 12 34000000b79d0a0000000000 4........... +897 2.158137798 127.0.0.1:57433 127.0.0.1:57415 375903100 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....?...........fk +899 2.158411503 127.0.0.1:57415 127.0.0.1:57433 3331583012 12 ffffffffb79d0a0000000000 ............ +901 2.159256935 127.0.0.1:57415 127.0.0.1:57433 3331583024 12 1e000000f7be0a0000000000 ............ +903 2.159415245 127.0.0.1:57415 127.0.0.1:57433 3331583036 30 1a00000055ceff62b21b3a5001000300000057071f000000000000000000 ....U..b..:P......W........... +905 2.159652472 127.0.0.1:57433 127.0.0.1:57415 375903152 12 fffffffff7be0a0000000000 ............ +907 2.160196304 127.0.0.1:57433 127.0.0.1:57415 375903164 12 1a000000b89d0a0000000000 ............ +909 2.160398722 127.0.0.1:57433 127.0.0.1:57415 375903176 26 1600000057071f00000000000100030000000000000000000000 ....W..................... +911 2.160773277 127.0.0.1:57415 127.0.0.1:57433 3331583066 12 ffffffffb89d0a0000000000 ............ +913 2.179936647 127.0.0.1:57433 127.0.0.1:57415 375903202 12 fe020000b99d0a0000000000 ............ +915 2.180184603 127.0.0.1:57433 127.0.0.1:57415 375903214 766 fa02000014a361e3a691bdba0100ffffffff0000000000080000005974516df0 ......a....................YtQm..$.D.......-...n +917 2.180476904 127.0.0.1:57415 127.0.0.1:57433 3331583078 12 ffffffffb99d0a0000000000 ............ +919 2.180755377 127.0.0.1:57415 127.0.0.1:57433 3331583090 12 1a000000f8be0a0000000000 ............ +921 2.180942297 127.0.0.1:57415 127.0.0.1:57433 3331583102 26 16000000548f6340e25e314001000300000059071f0000000000 ....T.c@.^1@......Y....... +923 2.181303740 127.0.0.1:57433 127.0.0.1:57415 375903980 12 fffffffff8be0a0000000000 ............ +926 2.181595802 127.0.0.1:57433 127.0.0.1:57415 375903992 12 16000000ba9d0a0000000000 ............ +928 2.181759834 127.0.0.1:57433 127.0.0.1:57415 375904004 22 1200000059071f000000000001000300000000000000 ....Y................. +930 2.182078123 127.0.0.1:57415 127.0.0.1:57433 3331583128 12 ffffffffba9d0a0000000000 ............ +1002 2.284324169 127.0.0.1:57415 127.0.0.1:57433 3331583140 12 1a000000f9be0a0000000000 ............ +1004 2.284518242 127.0.0.1:57415 127.0.0.1:57433 3331583152 26 16000000548f6340e25e31400100030000005b071f0000000000 ....T.c@.^1@......[....... +1006 2.284916162 127.0.0.1:57433 127.0.0.1:57415 375904026 12 fffffffff9be0a0000000000 ............ +1008 2.285460472 127.0.0.1:57433 127.0.0.1:57415 375904038 12 16000000bb9d0a0000000000 ............ +1010 2.285679102 127.0.0.1:57433 127.0.0.1:57415 375904050 22 120000005b071f000000000001000300000000000000 ....[................. +1012 2.285950899 127.0.0.1:57415 127.0.0.1:57433 3331583178 12 ffffffffbb9d0a0000000000 ............ +1051 2.329008341 127.0.0.1:57433 127.0.0.1:57415 375904072 12 feffffff6738010078380100 ....g8..x8.. +1069 2.360042095 127.0.0.1:57433 127.0.0.1:57415 375904084 12 18000000bc9d0a0000000000 ............ +1071 2.360262871 127.0.0.1:57433 127.0.0.1:57415 375904096 24 14000000224f42074e8ece4d0100ffffffff000000000000 ...."OB.N..M............ +1073 2.360569239 127.0.0.1:57415 127.0.0.1:57433 3331583190 12 ffffffffbc9d0a0000000000 ............ +1134 2.366349220 127.0.0.1:57433 127.0.0.1:57415 375904120 12 a8020000bd9d0a0000000000 ............ +1139 2.366586447 127.0.0.1:57433 127.0.0.1:57415 375904132 680 a402000014a361e3a691bdba0100ffffffff0000000000080000005974516df0 ......a....................YtQm..$.D.......-...n +1144 2.366863489 127.0.0.1:57415 127.0.0.1:57433 3331583202 12 ffffffffbd9d0a0000000000 ............ +1147 2.388061047 127.0.0.1:57415 127.0.0.1:57433 3331583214 12 1a000000fabe0a0000000000 ............ +1149 2.388235331 127.0.0.1:57415 127.0.0.1:57433 3331583226 26 16000000548f6340e25e31400100030000005d071f0000000000 ....T.c@.^1@......]....... +1151 2.388627529 127.0.0.1:57433 127.0.0.1:57415 375904812 12 fffffffffabe0a0000000000 ............ +1153 2.389134407 127.0.0.1:57433 127.0.0.1:57415 375904824 12 16000000be9d0a0000000000 ............ +1155 2.389350891 127.0.0.1:57433 127.0.0.1:57415 375904836 22 120000005d071f000000000001000300000000000000 ....]................. +1157 2.389730453 127.0.0.1:57415 127.0.0.1:57433 3331583252 12 ffffffffbe9d0a0000000000 ............ +1165 2.435003281 127.0.0.1:57415 127.0.0.1:57433 3331583264 12 feffffff7938010067380100 ....y8..g8.. +1168 2.460309744 127.0.0.1:57415 127.0.0.1:57433 3331583276 12 22000000fbbe0a0000000000 "........... +1170 2.460563660 127.0.0.1:57415 127.0.0.1:57433 3331583288 34 1e0000001c2118d0c46f33bb010003000000400002000000000057f30ec39d01 .....!...o3.......@.......W....... +1172 2.460749865 127.0.0.1:57415 127.0.0.1:57433 3331583322 12 43000000fcbe0a0000000000 C........... +1174 2.460861683 127.0.0.1:57415 127.0.0.1:57433 3331583334 67 3f000000980433cb0cb47c38010003000000010000000040000200000000003d ?.....3...|8...........@.......=B.....&......... +1175 2.460907221 127.0.0.1:57433 127.0.0.1:57415 375904858 12 fffffffffbbe0a0000000000 ............ +1178 2.461166382 127.0.0.1:57433 127.0.0.1:57415 375904870 12 fffffffffcbe0a0000000000 ............ +1180 2.462513685 127.0.0.1:57433 127.0.0.1:57415 375904882 12 34000000bf9d0a0000000000 4........... +1182 2.462739944 127.0.0.1:57433 127.0.0.1:57415 375904894 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....@.........Z'.k +1184 2.463040113 127.0.0.1:57415 127.0.0.1:57433 3331583401 12 ffffffffbf9d0a0000000000 ............ +1186 2.464177132 127.0.0.1:57415 127.0.0.1:57433 3331583413 12 1e000000fdbe0a0000000000 ............ +1188 2.464393139 127.0.0.1:57415 127.0.0.1:57433 3331583425 30 1a00000055ceff62b21b3a500100030000005f071f000000000000000000 ....U..b..:P......_........... +1190 2.464703321 127.0.0.1:57433 127.0.0.1:57415 375904946 12 fffffffffdbe0a0000000000 ............ +1192 2.465753317 127.0.0.1:57433 127.0.0.1:57415 375904958 12 1a000000c09d0a0000000000 ............ +1194 2.466053486 127.0.0.1:57433 127.0.0.1:57415 375904970 26 160000005f071f00000000000100030000000000000000000000 ...._..................... +1196 2.466316223 127.0.0.1:57415 127.0.0.1:57433 3331583455 12 ffffffffc09d0a0000000000 ............ +1200 2.476098776 127.0.0.1:57433 127.0.0.1:57415 375904996 12 fe020000c19d0a0000000000 ............ +1202 2.476247311 127.0.0.1:57433 127.0.0.1:57415 375905008 766 fa02000014a361e3a691bdba0100ffffffff0000000000080000005974516df0 ......a....................YtQm..$.D.......-...n +1204 2.476533175 127.0.0.1:57415 127.0.0.1:57433 3331583467 12 ffffffffc19d0a0000000000 ............ +1206 2.492054224 127.0.0.1:57415 127.0.0.1:57433 3331583479 12 1a000000febe0a0000000000 ............ +1208 2.492237806 127.0.0.1:57415 127.0.0.1:57433 3331583491 26 16000000548f6340e25e314001000300000061071f0000000000 ....T.c@.^1@......a....... +1210 2.492705822 127.0.0.1:57433 127.0.0.1:57415 375905774 12 fffffffffebe0a0000000000 ............ +1212 2.493037701 127.0.0.1:57433 127.0.0.1:57415 375905786 12 16000000c29d0a0000000000 ............ +1214 2.493205309 127.0.0.1:57433 127.0.0.1:57415 375905798 22 1200000061071f000000000001000300000000000000 ....a................. +1216 2.493559361 127.0.0.1:57415 127.0.0.1:57433 3331583517 12 ffffffffc29d0a0000000000 ............ +1223 2.586408615 127.0.0.1:57433 127.0.0.1:57415 375905820 12 18000000c39d0a0000000000 ............ +1225 2.586683750 127.0.0.1:57433 127.0.0.1:57415 375905832 24 14000000224f42074e8ece4d0100ffffffff000000000001 ...."OB.N..M............ +1227 2.586976528 127.0.0.1:57415 127.0.0.1:57433 3331583529 12 ffffffffc39d0a0000000000 ............ +1229 2.594666481 127.0.0.1:57415 127.0.0.1:57433 3331583541 12 1a000000ffbe0a0000000000 ............ +1231 2.594794750 127.0.0.1:57415 127.0.0.1:57433 3331583553 26 16000000548f6340e25e314001000300000063071f0000000000 ....T.c@.^1@......c....... +1233 2.595194817 127.0.0.1:57433 127.0.0.1:57415 375905856 12 ffffffffffbe0a0000000000 ............ +1235 2.595784426 127.0.0.1:57433 127.0.0.1:57415 375905868 12 16000000c49d0a0000000000 ............ +1237 2.595995426 127.0.0.1:57433 127.0.0.1:57415 375905880 22 1200000063071f000000000001000300000000000000 ....c................. +1239 2.596215010 127.0.0.1:57415 127.0.0.1:57433 3331583579 12 ffffffffc49d0a0000000000 ............ +1242 2.698736668 127.0.0.1:57415 127.0.0.1:57433 3331583591 12 1a00000000bf0a0000000000 ............ +1244 2.698934555 127.0.0.1:57415 127.0.0.1:57433 3331583603 26 16000000548f6340e25e314001000300000065071f0000000000 ....T.c@.^1@......e....... +1246 2.699311018 127.0.0.1:57433 127.0.0.1:57415 375905902 12 ffffffff00bf0a0000000000 ............ +1248 2.699763298 127.0.0.1:57433 127.0.0.1:57415 375905914 12 16000000c59d0a0000000000 ............ +1250 2.700031042 127.0.0.1:57433 127.0.0.1:57415 375905926 22 1200000065071f000000000001000300000000000000 ....e................. +1252 2.700300217 127.0.0.1:57415 127.0.0.1:57433 3331583629 12 ffffffffc59d0a0000000000 ............ +1259 2.766100407 127.0.0.1:57415 127.0.0.1:57433 3331583641 12 2200000001bf0a0000000000 "........... +1261 2.766308784 127.0.0.1:57415 127.0.0.1:57433 3331583653 34 1e0000001c2118d0c46f33bb010003000000410002000000000089f40ec39d01 .....!...o3.......A............... +1263 2.766452074 127.0.0.1:57415 127.0.0.1:57433 3331583687 12 4300000002bf0a0000000000 C........... +1265 2.766551018 127.0.0.1:57415 127.0.0.1:57433 3331583699 67 3f000000980433cb0cb47c38010003000000010000000041000200000000003d ?.....3...|8...........A.......=B.....&......... +1266 2.766620159 127.0.0.1:57433 127.0.0.1:57415 375905948 12 ffffffff01bf0a0000000000 ............ +1269 2.766858101 127.0.0.1:57433 127.0.0.1:57415 375905960 12 ffffffff02bf0a0000000000 ............ +1271 2.767488003 127.0.0.1:57433 127.0.0.1:57415 375905972 12 34000000c69d0a0000000000 4........... +1273 2.767644405 127.0.0.1:57433 127.0.0.1:57415 375905984 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....A............k +1275 2.767919064 127.0.0.1:57415 127.0.0.1:57433 3331583766 12 ffffffffc69d0a0000000000 ............ +1276 2.768584728 127.0.0.1:57415 127.0.0.1:57433 3331583778 12 1e00000003bf0a0000000000 ............ +1278 2.768727779 127.0.0.1:57415 127.0.0.1:57433 3331583790 30 1a00000055ceff62b21b3a5001000300000067071f000000000000000000 ....U..b..:P......g........... +1280 2.769005537 127.0.0.1:57433 127.0.0.1:57415 375906036 12 ffffffff03bf0a0000000000 ............ +1282 2.770341396 127.0.0.1:57433 127.0.0.1:57415 375906048 12 1a000000c79d0a0000000000 ............ +1284 2.770496130 127.0.0.1:57433 127.0.0.1:57415 375906060 26 1600000067071f00000000000100030000000000000000000000 ....g..................... +1286 2.770752907 127.0.0.1:57415 127.0.0.1:57433 3331583820 12 ffffffffc79d0a0000000000 ............ +1288 2.801274300 127.0.0.1:57415 127.0.0.1:57433 3331583832 12 1a00000004bf0a0000000000 ............ +1290 2.801449060 127.0.0.1:57415 127.0.0.1:57433 3331583844 26 16000000548f6340e25e314001000300000069071f0000000000 ....T.c@.^1@......i....... +1292 2.801852703 127.0.0.1:57433 127.0.0.1:57415 375906086 12 ffffffff04bf0a0000000000 ............ +1294 2.806162119 127.0.0.1:57433 127.0.0.1:57415 375906098 12 16000000c89d0a0000000000 ............ +1296 2.806371689 127.0.0.1:57433 127.0.0.1:57415 375906110 22 1200000069071f000000000001000300000000000000 ....i................. +1298 2.806626558 127.0.0.1:57415 127.0.0.1:57433 3331583870 12 ffffffffc89d0a0000000000 ............ +1300 2.830508232 127.0.0.1:57433 127.0.0.1:57415 375906132 12 feffffff6838010079380100 ....h8..y8.. +1309 2.907622814 127.0.0.1:57415 127.0.0.1:57433 3331583882 12 1a00000005bf0a0000000000 ............ +1311 2.907850027 127.0.0.1:57415 127.0.0.1:57433 3331583894 26 16000000548f6340e25e31400100030000006b071f0000000000 ....T.c@.^1@......k....... +1313 2.908302307 127.0.0.1:57433 127.0.0.1:57415 375906144 12 ffffffff05bf0a0000000000 ............ +1315 2.908912420 127.0.0.1:57433 127.0.0.1:57415 375906156 12 16000000c99d0a0000000000 ............ +1317 2.909099817 127.0.0.1:57433 127.0.0.1:57415 375906168 22 120000006b071f000000000001000300000000000000 ....k................. +1321 2.909327030 127.0.0.1:57415 127.0.0.1:57433 3331583920 12 ffffffffc99d0a0000000000 ............ +1325 2.937048674 127.0.0.1:57415 127.0.0.1:57433 3331583932 12 feffffff7a38010068380100 ....z8..h8.. +1331 2.982178211 127.0.0.1:57433 127.0.0.1:57415 375906190 12 18000000ca9d0a0000000000 ............ +1333 2.982359886 127.0.0.1:57433 127.0.0.1:57415 375906202 24 140000008f31ba2f16b2bc340100ffffffff000000000001 .....1./...4............ +1335 2.982616901 127.0.0.1:57415 127.0.0.1:57433 3331583944 12 ffffffffca9d0a0000000000 ............ +1337 3.010727167 127.0.0.1:57415 127.0.0.1:57433 3331583956 12 1a00000006bf0a0000000000 ............ +1339 3.010935068 127.0.0.1:57415 127.0.0.1:57433 3331583968 26 16000000548f6340e25e31400100030000006d071f0000000000 ....T.c@.^1@......m....... +1341 3.011230230 127.0.0.1:57433 127.0.0.1:57415 375906226 12 ffffffff06bf0a0000000000 ............ +1343 3.011780262 127.0.0.1:57433 127.0.0.1:57415 375906238 12 16000000cb9d0a0000000000 ............ +1345 3.011964321 127.0.0.1:57433 127.0.0.1:57415 375906250 22 120000006d071f000000000001000300000000000000 ....m................. +1347 3.012148142 127.0.0.1:57415 127.0.0.1:57433 3331583994 12 ffffffffcb9d0a0000000000 ............ +1353 3.069219828 127.0.0.1:57415 127.0.0.1:57433 3331584006 12 2200000007bf0a0000000000 "........... +1355 3.069593668 127.0.0.1:57415 127.0.0.1:57433 3331584018 34 1e0000001c2118d0c46f33bb0100030000004200020000000000b8f50ec39d01 .....!...o3.......B............... +1357 3.069722891 127.0.0.1:57415 127.0.0.1:57433 3331584052 12 4300000008bf0a0000000000 C........... +1359 3.069805622 127.0.0.1:57415 127.0.0.1:57433 3331584064 67 3f000000980433cb0cb47c38010003000000010000000042000200000000003d ?.....3...|8...........B.......=B.....&......... +1361 3.070073128 127.0.0.1:57433 127.0.0.1:57415 375906272 12 ffffffff07bf0a0000000000 ............ +1363 3.070341110 127.0.0.1:57433 127.0.0.1:57415 375906284 12 ffffffff08bf0a0000000000 ............ +1365 3.071153402 127.0.0.1:57433 127.0.0.1:57415 375906296 12 34000000cc9d0a0000000000 4........... +1367 3.071288824 127.0.0.1:57433 127.0.0.1:57415 375906308 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....B.........(..k +1369 3.071557760 127.0.0.1:57415 127.0.0.1:57433 3331584131 12 ffffffffcc9d0a0000000000 ............ +1371 3.072360277 127.0.0.1:57415 127.0.0.1:57433 3331584143 12 1e00000009bf0a0000000000 ............ +1373 3.072540760 127.0.0.1:57415 127.0.0.1:57433 3331584155 30 1a00000055ceff62b21b3a500100030000006f071f000000000000000000 ....U..b..:P......o........... +1375 3.072858810 127.0.0.1:57433 127.0.0.1:57415 375906360 12 ffffffff09bf0a0000000000 ............ +1377 3.073110104 127.0.0.1:57433 127.0.0.1:57415 375906372 12 1a000000cd9d0a0000000000 ............ +1379 3.073243618 127.0.0.1:57433 127.0.0.1:57415 375906384 26 160000006f071f00000000000100030000000000000000000000 ....o..................... +1381 3.073452950 127.0.0.1:57415 127.0.0.1:57433 3331584185 12 ffffffffcd9d0a0000000000 ............ +1383 3.114014626 127.0.0.1:57415 127.0.0.1:57433 3331584197 12 1a0000000abf0a0000000000 ............ +1385 3.114186764 127.0.0.1:57415 127.0.0.1:57433 3331584209 26 16000000548f6340e25e314001000300000071071f0000000000 ....T.c@.^1@......q....... +1387 3.114536762 127.0.0.1:57433 127.0.0.1:57415 375906410 12 ffffffff0abf0a0000000000 ............ +1389 3.115024328 127.0.0.1:57433 127.0.0.1:57415 375906422 12 16000000ce9d0a0000000000 ............ +1391 3.115187168 127.0.0.1:57433 127.0.0.1:57415 375906434 22 1200000071071f000000000001000300000000000000 ....q................. +1393 3.115433455 127.0.0.1:57415 127.0.0.1:57433 3331584235 12 ffffffffce9d0a0000000000 ............ +1406 3.133916140 127.0.0.1:57433 127.0.0.1:57415 375906456 12 1a000000cf9d0a0000000000 ............ +1408 3.134081602 127.0.0.1:57433 127.0.0.1:57415 375906468 26 160000005b3c690ebea442610100030000000000000001000000 ....[....... +2755 6.116022110 127.0.0.1:57415 127.0.0.1:57433 3331587500 34 1e0000001c2118d0c46f33bb0100030000004c000200000000009f010fc39d01 .....!...o3.......L............... +2757 6.116162777 127.0.0.1:57415 127.0.0.1:57433 3331587534 12 430000003fbf0a0000000000 C...?....... +2759 6.116250515 127.0.0.1:57415 127.0.0.1:57433 3331587546 67 3f000000980433cb0cb47c3801000300000001000000004c000200000000003d ?.....3...|8...........L.......=B.....&......... +2760 6.116302490 127.0.0.1:57433 127.0.0.1:57415 375909652 12 ffffffff3ebf0a0000000000 ....>....... +2761 6.116398573 127.0.0.1:57433 127.0.0.1:57415 375909664 12 ffffffff3fbf0a0000000000 ....?....... +2764 6.117435217 127.0.0.1:57433 127.0.0.1:57415 375909676 12 34000000039e0a0000000000 4........... +2766 6.117620468 127.0.0.1:57433 127.0.0.1:57415 375909688 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....L............m +2768 6.117999315 127.0.0.1:57415 127.0.0.1:57433 3331587613 12 ffffffff039e0a0000000000 ............ +2769 6.118703604 127.0.0.1:57415 127.0.0.1:57433 3331587625 12 1e00000040bf0a0000000000 ....@....... +2770 6.118812799 127.0.0.1:57415 127.0.0.1:57433 3331587637 30 1a00000055ceff62b21b3a50010003000000bf071f000000000000000000 ....U..b..:P.................. +2771 6.119048357 127.0.0.1:57433 127.0.0.1:57415 375909740 12 ffffffff40bf0a0000000000 ....@....... +2773 6.119556189 127.0.0.1:57433 127.0.0.1:57415 375909752 12 1a000000049e0a0000000000 ............ +2775 6.119703293 127.0.0.1:57433 127.0.0.1:57415 375909764 26 16000000bf071f00000000000100030000000000000000000000 .......................... +2777 6.120026588 127.0.0.1:57415 127.0.0.1:57433 3331587667 12 ffffffff049e0a0000000000 ............ +2780 6.215647221 127.0.0.1:57415 127.0.0.1:57433 3331587679 12 1a00000041bf0a0000000000 ....A....... +2782 6.215835333 127.0.0.1:57415 127.0.0.1:57433 3331587691 26 16000000548f6340e25e3140010003000000c1071f0000000000 ....T.c@.^1@.............. +2784 6.216222525 127.0.0.1:57433 127.0.0.1:57415 375909790 12 ffffffff41bf0a0000000000 ....A....... +2786 6.216744661 127.0.0.1:57433 127.0.0.1:57415 375909802 12 16000000059e0a0000000000 ............ +2788 6.216940641 127.0.0.1:57433 127.0.0.1:57415 375909814 22 12000000c1071f000000000001000300000000000000 ...................... +2790 6.217279673 127.0.0.1:57415 127.0.0.1:57433 3331587717 12 ffffffff059e0a0000000000 ............ +2795 6.318629503 127.0.0.1:57415 127.0.0.1:57433 3331587729 12 1a00000042bf0a0000000000 ....B....... +2797 6.318802595 127.0.0.1:57415 127.0.0.1:57433 3331587741 26 16000000548f6340e25e3140010003000000c3071f0000000000 ....T.c@.^1@.............. +2799 6.319208860 127.0.0.1:57433 127.0.0.1:57415 375909836 12 ffffffff42bf0a0000000000 ....B....... +2801 6.319935083 127.0.0.1:57433 127.0.0.1:57415 375909848 12 16000000069e0a0000000000 ............ +2803 6.320162535 127.0.0.1:57433 127.0.0.1:57415 375909860 22 12000000c3071f000000000001000300000000000000 ...................... +2805 6.320446014 127.0.0.1:57415 127.0.0.1:57433 3331587767 12 ffffffff069e0a0000000000 ............ +2807 6.334403276 127.0.0.1:57433 127.0.0.1:57415 375909882 12 feffffff6f38010080380100 ....o8...8.. +2822 6.421185255 127.0.0.1:57415 127.0.0.1:57433 3331587779 12 6500000043bf0a0000000000 e...C....... +2824 6.421427011 127.0.0.1:57415 127.0.0.1:57433 3331587791 101 1e0000001c2118d0c46f33bb0100030000004d00020000000000d0020fc39d01 .....!...o3.......M...............?.....3...|8.. +2826 6.421556473 127.0.0.1:57415 127.0.0.1:57433 3331587892 12 1a00000044bf0a0000000000 ....D....... +2828 6.421644926 127.0.0.1:57415 127.0.0.1:57433 3331587904 26 16000000548f6340e25e3140010003000000c5071f0000000000 ....T.c@.^1@.............. +2830 6.421708107 127.0.0.1:57433 127.0.0.1:57415 375909894 12 ffffffff43bf0a0000000000 ....C....... +2832 6.422045708 127.0.0.1:57433 127.0.0.1:57415 375909906 12 ffffffff44bf0a0000000000 ....D....... +2834 6.422347069 127.0.0.1:57433 127.0.0.1:57415 375909918 12 16000000079e0a0000000000 ............ +2836 6.422514915 127.0.0.1:57433 127.0.0.1:57415 375909930 22 12000000c5071f000000000001000300000000000000 ...................... +2838 6.422678709 127.0.0.1:57433 127.0.0.1:57415 375909952 12 34000000089e0a0000000000 4........... +2840 6.422767878 127.0.0.1:57433 127.0.0.1:57415 375909964 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....M..........q.m +2841 6.422813892 127.0.0.1:57415 127.0.0.1:57433 3331587930 12 ffffffff079e0a0000000000 ............ +2844 6.423054218 127.0.0.1:57415 127.0.0.1:57433 3331587942 12 ffffffff089e0a0000000000 ............ +2846 6.423755884 127.0.0.1:57415 127.0.0.1:57433 3331587954 12 1e00000045bf0a0000000000 ....E....... +2848 6.423906326 127.0.0.1:57415 127.0.0.1:57433 3331587966 30 1a00000055ceff62b21b3a50010003000000c7071f000000000000000000 ....U..b..:P.................. +2850 6.424295187 127.0.0.1:57433 127.0.0.1:57415 375910016 12 ffffffff45bf0a0000000000 ....E....... +2851 6.424601555 127.0.0.1:57433 127.0.0.1:57415 375910028 12 1a000000099e0a0000000000 ............ +2853 6.424751997 127.0.0.1:57433 127.0.0.1:57415 375910040 26 16000000c7071f00000000000100030000000000000000000000 .......................... +2855 6.425021410 127.0.0.1:57415 127.0.0.1:57433 3331587996 12 ffffffff099e0a0000000000 ............ +2857 6.444626093 127.0.0.1:57415 127.0.0.1:57433 3331588008 12 feffffff813801006f380100 .....8..o8.. +2875 6.523786545 127.0.0.1:57415 127.0.0.1:57433 3331588020 12 1a00000046bf0a0000000000 ....F....... +2877 6.523966074 127.0.0.1:57415 127.0.0.1:57433 3331588032 26 16000000548f6340e25e3140010003000000c9071f0000000000 ....T.c@.^1@.............. +2881 6.524363995 127.0.0.1:57433 127.0.0.1:57415 375910066 12 ffffffff46bf0a0000000000 ....F....... +2883 6.524827480 127.0.0.1:57433 127.0.0.1:57415 375910078 12 160000000a9e0a0000000000 ............ +2885 6.525004864 127.0.0.1:57433 127.0.0.1:57415 375910090 22 12000000c9071f000000000001000300000000000000 ...................... +2887 6.525325537 127.0.0.1:57415 127.0.0.1:57433 3331588058 12 ffffffff0a9e0a0000000000 ............ +2891 6.626435995 127.0.0.1:57415 127.0.0.1:57433 3331588070 12 1a00000047bf0a0000000000 ....G....... +2893 6.626657486 127.0.0.1:57415 127.0.0.1:57433 3331588082 26 16000000548f6340e25e3140010003000000cb071f0000000000 ....T.c@.^1@.............. +2895 6.627006531 127.0.0.1:57433 127.0.0.1:57415 375910112 12 ffffffff47bf0a0000000000 ....G....... +2897 6.627515316 127.0.0.1:57433 127.0.0.1:57415 375910124 12 160000000b9e0a0000000000 ............ +2899 6.627677679 127.0.0.1:57433 127.0.0.1:57415 375910136 22 12000000cb071f000000000001000300000000000000 ...................... +2901 6.627974510 127.0.0.1:57415 127.0.0.1:57433 3331588108 12 ffffffff0b9e0a0000000000 ............ +2903 6.724671364 127.0.0.1:57415 127.0.0.1:57433 3331588120 12 2200000048bf0a0000000000 "...H....... +2905 6.724881649 127.0.0.1:57415 127.0.0.1:57433 3331588132 34 1e0000001c2118d0c46f33bb0100030000004e0002000000000000040fc39d01 .....!...o3.......N............... +2907 6.724973440 127.0.0.1:57415 127.0.0.1:57433 3331588166 12 4300000049bf0a0000000000 C...I....... +2909 6.725058317 127.0.0.1:57415 127.0.0.1:57433 3331588178 67 3f000000980433cb0cb47c3801000300000001000000004e000200000000003d ?.....3...|8...........N.......=B.....&......... +2911 6.725230217 127.0.0.1:57433 127.0.0.1:57415 375910158 12 ffffffff48bf0a0000000000 ....H....... +2913 6.725508928 127.0.0.1:57433 127.0.0.1:57415 375910170 12 ffffffff49bf0a0000000000 ....I....... +2915 6.726584435 127.0.0.1:57433 127.0.0.1:57415 375910182 12 340000000c9e0a0000000000 4........... +2917 6.726840019 127.0.0.1:57433 127.0.0.1:57415 375910194 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....N.........L..n +2919 6.727066517 127.0.0.1:57415 127.0.0.1:57433 3331588245 12 ffffffff0c9e0a0000000000 ............ +2921 6.727889776 127.0.0.1:57415 127.0.0.1:57433 3331588257 12 1e0000004abf0a0000000000 ....J....... +2923 6.728033781 127.0.0.1:57415 127.0.0.1:57433 3331588269 30 1a00000055ceff62b21b3a50010003000000cd071f000000000000000000 ....U..b..:P.................. +2925 6.728365660 127.0.0.1:57433 127.0.0.1:57415 375910246 12 ffffffff4abf0a0000000000 ....J....... +2927 6.728847265 127.0.0.1:57433 127.0.0.1:57415 375910258 12 1a0000000d9e0a0000000000 ............ +2929 6.729089975 127.0.0.1:57433 127.0.0.1:57415 375910270 26 16000000cd071f00000000000100030000000000000000000000 .......................... +2931 6.729252100 127.0.0.1:57415 127.0.0.1:57433 3331588299 12 1a0000004bbf0a0000000000 ....K....... +2932 6.729266405 127.0.0.1:57415 127.0.0.1:57433 3331588311 26 16000000548f6340e25e3140010003000000cf071f0000000000 ....T.c@.^1@.............. +2934 6.729413271 127.0.0.1:57415 127.0.0.1:57433 3331588337 12 ffffffff0d9e0a0000000000 ............ +2936 6.729608297 127.0.0.1:57433 127.0.0.1:57415 375910296 12 ffffffff4bbf0a0000000000 ....K....... +2937 6.729979753 127.0.0.1:57433 127.0.0.1:57415 375910308 12 160000000e9e0a0000000000 ............ +2939 6.730169773 127.0.0.1:57433 127.0.0.1:57415 375910320 22 12000000cf071f000000000001000300000000000000 ...................... +2941 6.730870724 127.0.0.1:57415 127.0.0.1:57433 3331588349 12 ffffffff0e9e0a0000000000 ............ +2945 6.831794739 127.0.0.1:57415 127.0.0.1:57433 3331588361 12 1a0000004cbf0a0000000000 ....L....... +2947 6.831983566 127.0.0.1:57415 127.0.0.1:57433 3331588373 26 16000000548f6340e25e3140010003000000d1071f0000000000 ....T.c@.^1@.............. +2949 6.832336187 127.0.0.1:57433 127.0.0.1:57415 375910342 12 ffffffff4cbf0a0000000000 ....L....... +2951 6.833175421 127.0.0.1:57433 127.0.0.1:57415 375910354 12 160000000f9e0a0000000000 ............ +2953 6.833383799 127.0.0.1:57433 127.0.0.1:57415 375910366 22 12000000d1071f000000000001000300000000000000 ...................... +2955 6.833677769 127.0.0.1:57415 127.0.0.1:57433 3331588399 12 ffffffff0f9e0a0000000000 ............ +2957 6.834458590 127.0.0.1:57433 127.0.0.1:57415 375910388 12 feffffff7038010081380100 ....p8...8.. +2969 6.934598684 127.0.0.1:57415 127.0.0.1:57433 3331588411 12 1a0000004dbf0a0000000000 ....M....... +2971 6.934772491 127.0.0.1:57415 127.0.0.1:57433 3331588423 26 16000000548f6340e25e3140010003000000d3071f0000000000 ....T.c@.^1@.............. +2973 6.935157299 127.0.0.1:57433 127.0.0.1:57415 375910400 12 ffffffff4dbf0a0000000000 ....M....... +2975 6.935575485 127.0.0.1:57433 127.0.0.1:57415 375910412 12 16000000109e0a0000000000 ............ +2977 6.935761690 127.0.0.1:57433 127.0.0.1:57415 375910424 22 12000000d3071f000000000001000300000000000000 ...................... +2979 6.936071873 127.0.0.1:57415 127.0.0.1:57433 3331588449 12 ffffffff109e0a0000000000 ............ +2981 6.945398808 127.0.0.1:57415 127.0.0.1:57433 3331588461 12 feffffff8238010070380100 .....8..p8.. +2989 7.029647350 127.0.0.1:57415 127.0.0.1:57433 3331588473 12 650000004ebf0a0000000000 e...N....... +2991 7.029848099 127.0.0.1:57415 127.0.0.1:57433 3331588485 101 1e0000001c2118d0c46f33bb0100030000004f0002000000000031050fc39d01 .....!...o3.......O.......1.......?.....3...|8.. +2993 7.030112743 127.0.0.1:57433 127.0.0.1:57415 375910446 12 ffffffff4ebf0a0000000000 ....N....... +2995 7.031249046 127.0.0.1:57433 127.0.0.1:57415 375910458 12 34000000119e0a0000000000 4........... +2997 7.031395197 127.0.0.1:57433 127.0.0.1:57415 375910470 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....O..........MNn +2999 7.031656265 127.0.0.1:57415 127.0.0.1:57433 3331588586 12 ffffffff119e0a0000000000 ............ +3001 7.032411098 127.0.0.1:57415 127.0.0.1:57433 3331588598 12 1e0000004fbf0a0000000000 ....O....... +3003 7.032553673 127.0.0.1:57415 127.0.0.1:57433 3331588610 30 1a00000055ceff62b21b3a50010003000000d5071f000000000000000000 ....U..b..:P.................. +3005 7.032911301 127.0.0.1:57433 127.0.0.1:57415 375910522 12 ffffffff4fbf0a0000000000 ....O....... +3007 7.033279896 127.0.0.1:57433 127.0.0.1:57415 375910534 12 1a000000129e0a0000000000 ............ +3009 7.033502340 127.0.0.1:57433 127.0.0.1:57415 375910546 26 16000000d5071f00000000000100030000000000000000000000 .......................... +3011 7.033751011 127.0.0.1:57415 127.0.0.1:57433 3331588640 12 ffffffff129e0a0000000000 ............ +3013 7.038446426 127.0.0.1:57415 127.0.0.1:57433 3331588652 12 1a00000050bf0a0000000000 ....P....... +3015 7.038589239 127.0.0.1:57415 127.0.0.1:57433 3331588664 26 16000000548f6340e25e3140010003000000d7071f0000000000 ....T.c@.^1@.............. +3017 7.038888454 127.0.0.1:57433 127.0.0.1:57415 375910572 12 ffffffff50bf0a0000000000 ....P....... +3019 7.039202213 127.0.0.1:57433 127.0.0.1:57415 375910584 12 16000000139e0a0000000000 ............ +3021 7.039339542 127.0.0.1:57433 127.0.0.1:57415 375910596 22 12000000d7071f000000000001000300000000000000 ...................... +3025 7.039567232 127.0.0.1:57415 127.0.0.1:57433 3331588690 12 ffffffff139e0a0000000000 ............ +3027 7.140641451 127.0.0.1:57415 127.0.0.1:57433 3331588702 12 1a00000051bf0a0000000000 ....Q....... +3029 7.140850067 127.0.0.1:57415 127.0.0.1:57433 3331588714 26 16000000548f6340e25e3140010003000000d9071f0000000000 ....T.c@.^1@.............. +3031 7.141192436 127.0.0.1:57433 127.0.0.1:57415 375910618 12 ffffffff51bf0a0000000000 ....Q....... +3033 7.141672611 127.0.0.1:57433 127.0.0.1:57415 375910630 12 16000000149e0a0000000000 ............ +3035 7.141833544 127.0.0.1:57433 127.0.0.1:57415 375910642 22 12000000d9071f000000000001000300000000000000 ...................... +3037 7.142093658 127.0.0.1:57415 127.0.0.1:57433 3331588740 12 ffffffff149e0a0000000000 ............ +3071 7.243328810 127.0.0.1:57415 127.0.0.1:57433 3331588752 12 1a00000052bf0a0000000000 ....R....... +3073 7.243500710 127.0.0.1:57415 127.0.0.1:57433 3331588764 26 16000000548f6340e25e3140010003000000db071f0000000000 ....T.c@.^1@.............. +3075 7.243980169 127.0.0.1:57433 127.0.0.1:57415 375910664 12 ffffffff52bf0a0000000000 ....R....... +3077 7.244352818 127.0.0.1:57433 127.0.0.1:57415 375910676 12 16000000159e0a0000000000 ............ +3079 7.244519711 127.0.0.1:57433 127.0.0.1:57415 375910688 22 12000000db071f000000000001000300000000000000 ...................... +3081 7.244762897 127.0.0.1:57415 127.0.0.1:57433 3331588790 12 ffffffff159e0a0000000000 ............ +3083 7.334392786 127.0.0.1:57415 127.0.0.1:57433 3331588802 12 2200000053bf0a0000000000 "...S....... +3084 7.334520102 127.0.0.1:57433 127.0.0.1:57415 375910710 12 feffffff7138010082380100 ....q8...8.. +3088 7.334729671 127.0.0.1:57415 127.0.0.1:57433 3331588814 34 1e0000001c2118d0c46f33bb010003000000500002000000000062060fc39d01 .....!...o3.......P.......b....... +3089 7.334742308 127.0.0.1:57415 127.0.0.1:57433 3331588848 12 4300000054bf0a0000000000 C...T....... +3090 7.334752798 127.0.0.1:57415 127.0.0.1:57433 3331588860 67 3f000000980433cb0cb47c38010003000000010000000050000200000000003d ?.....3...|8...........P.......=B.....&......... +3092 7.335003138 127.0.0.1:57433 127.0.0.1:57415 375910722 12 ffffffff53bf0a0000000000 ....S....... +3094 7.335197687 127.0.0.1:57433 127.0.0.1:57415 375910734 12 ffffffff54bf0a0000000000 ....T....... +3096 7.336262703 127.0.0.1:57433 127.0.0.1:57415 375910746 12 34000000169e0a0000000000 4........... +3098 7.336450815 127.0.0.1:57433 127.0.0.1:57415 375910758 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....P.........l.|n +3100 7.336740255 127.0.0.1:57415 127.0.0.1:57433 3331588927 12 ffffffff169e0a0000000000 ............ +3102 7.337685585 127.0.0.1:57415 127.0.0.1:57433 3331588939 12 1e00000055bf0a0000000000 ....U....... +3104 7.337831020 127.0.0.1:57415 127.0.0.1:57433 3331588951 30 1a00000055ceff62b21b3a50010003000000dd071f000000000000000000 ....U..b..:P.................. +3108 7.338253021 127.0.0.1:57433 127.0.0.1:57415 375910810 12 ffffffff55bf0a0000000000 ....U....... +3112 7.338599682 127.0.0.1:57433 127.0.0.1:57415 375910822 12 1a000000179e0a0000000000 ............ +3114 7.338812590 127.0.0.1:57433 127.0.0.1:57415 375910834 26 16000000dd071f00000000000100030000000000000000000000 .......................... +3116 7.339080572 127.0.0.1:57415 127.0.0.1:57433 3331588981 12 ffffffff179e0a0000000000 ............ +3118 7.346533775 127.0.0.1:57415 127.0.0.1:57433 3331588993 12 1a00000056bf0a0000000000 ....V....... +3120 7.346675158 127.0.0.1:57415 127.0.0.1:57433 3331589005 26 16000000548f6340e25e3140010003000000df071f0000000000 ....T.c@.^1@.............. +3122 7.346967459 127.0.0.1:57433 127.0.0.1:57415 375910860 12 ffffffff56bf0a0000000000 ....V....... +3124 7.347434998 127.0.0.1:57433 127.0.0.1:57415 375910872 12 16000000189e0a0000000000 ............ +3126 7.347596407 127.0.0.1:57433 127.0.0.1:57415 375910884 22 12000000df071f000000000001000300000000000000 ...................... +3128 7.347930670 127.0.0.1:57415 127.0.0.1:57433 3331589031 12 ffffffff189e0a0000000000 ............ +3134 7.447771788 127.0.0.1:57415 127.0.0.1:57433 3331589043 12 feffffff8338010071380100 .....8..q8.. +3138 7.450026035 127.0.0.1:57415 127.0.0.1:57433 3331589055 12 1a00000057bf0a0000000000 ....W....... +3140 7.450188637 127.0.0.1:57415 127.0.0.1:57433 3331589067 26 16000000548f6340e25e3140010003000000e1071f0000000000 ....T.c@.^1@.............. +3142 7.450617790 127.0.0.1:57433 127.0.0.1:57415 375910906 12 ffffffff57bf0a0000000000 ....W....... +3144 7.451246262 127.0.0.1:57433 127.0.0.1:57415 375910918 12 16000000199e0a0000000000 ............ +3146 7.451518059 127.0.0.1:57433 127.0.0.1:57415 375910930 22 12000000e1071f000000000001000300000000000000 ...................... +3148 7.451787233 127.0.0.1:57415 127.0.0.1:57433 3331589093 12 ffffffff199e0a0000000000 ............ +3156 7.554149389 127.0.0.1:57415 127.0.0.1:57433 3331589105 12 1a00000058bf0a0000000000 ....X....... +3158 7.554329395 127.0.0.1:57415 127.0.0.1:57433 3331589117 26 16000000548f6340e25e3140010003000000e3071f0000000000 ....T.c@.^1@.............. +3160 7.554717779 127.0.0.1:57433 127.0.0.1:57415 375910952 12 ffffffff58bf0a0000000000 ....X....... +3162 7.555399179 127.0.0.1:57433 127.0.0.1:57415 375910964 12 160000001a9e0a0000000000 ............ +3164 7.555558205 127.0.0.1:57433 127.0.0.1:57415 375910976 22 12000000e3071f000000000001000300000000000000 ...................... +3166 7.555770397 127.0.0.1:57415 127.0.0.1:57433 3331589143 12 ffffffff1a9e0a0000000000 ............ +3168 7.640393496 127.0.0.1:57415 127.0.0.1:57433 3331589155 12 2200000059bf0a0000000000 "...Y....... +3170 7.640597343 127.0.0.1:57415 127.0.0.1:57433 3331589167 34 1e0000001c2118d0c46f33bb010003000000510002000000000093070fc39d01 .....!...o3.......Q............... +3172 7.640684605 127.0.0.1:57415 127.0.0.1:57433 3331589201 12 430000005abf0a0000000000 C...Z....... +3174 7.640767097 127.0.0.1:57415 127.0.0.1:57433 3331589213 67 3f000000980433cb0cb47c38010003000000010000000051000200000000003d ?.....3...|8...........Q.......=B.....&......... +3176 7.640914440 127.0.0.1:57433 127.0.0.1:57415 375910998 12 ffffffff59bf0a0000000000 ....Y....... +3178 7.641122341 127.0.0.1:57433 127.0.0.1:57415 375911010 12 ffffffff5abf0a0000000000 ....Z....... +3180 7.641990662 127.0.0.1:57433 127.0.0.1:57415 375911022 12 340000001b9e0a0000000000 4........... +3182 7.642149925 127.0.0.1:57433 127.0.0.1:57415 375911034 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Q..........~.n +3184 7.642428160 127.0.0.1:57415 127.0.0.1:57433 3331589280 12 ffffffff1b9e0a0000000000 ............ +3186 7.643167019 127.0.0.1:57415 127.0.0.1:57433 3331589292 12 1e0000005bbf0a0000000000 ....[....... +3188 7.643305540 127.0.0.1:57415 127.0.0.1:57433 3331589304 30 1a00000055ceff62b21b3a50010003000000e5071f000000000000000000 ....U..b..:P.................. +3190 7.643612623 127.0.0.1:57433 127.0.0.1:57415 375911086 12 ffffffff5bbf0a0000000000 ....[....... +3192 7.644004107 127.0.0.1:57433 127.0.0.1:57415 375911098 12 1a0000001c9e0a0000000000 ............ +3194 7.644204855 127.0.0.1:57433 127.0.0.1:57415 375911110 26 16000000e5071f00000000000100030000000000000000000000 .......................... +3196 7.644477129 127.0.0.1:57415 127.0.0.1:57433 3331589334 12 ffffffff1c9e0a0000000000 ............ +3198 7.657983780 127.0.0.1:57415 127.0.0.1:57433 3331589346 12 1a0000005cbf0a0000000000 ....\....... +3200 7.658120632 127.0.0.1:57415 127.0.0.1:57433 3331589358 26 16000000548f6340e25e3140010003000000e7071f0000000000 ....T.c@.^1@.............. +3202 7.658636093 127.0.0.1:57433 127.0.0.1:57415 375911136 12 ffffffff5cbf0a0000000000 ....\....... +3204 7.659243345 127.0.0.1:57433 127.0.0.1:57415 375911148 12 160000001d9e0a0000000000 ............ +3206 7.659416914 127.0.0.1:57433 127.0.0.1:57415 375911160 22 12000000e7071f000000000001000300000000000000 ...................... +3208 7.659712315 127.0.0.1:57415 127.0.0.1:57433 3331589384 12 ffffffff1d9e0a0000000000 ............ +3214 7.760956287 127.0.0.1:57415 127.0.0.1:57433 3331589396 12 1a0000005dbf0a0000000000 ....]....... +3216 7.761123419 127.0.0.1:57415 127.0.0.1:57433 3331589408 26 16000000548f6340e25e3140010003000000e9071f0000000000 ....T.c@.^1@.............. +3218 7.761482716 127.0.0.1:57433 127.0.0.1:57415 375911182 12 ffffffff5dbf0a0000000000 ....]....... +3220 7.761930466 127.0.0.1:57433 127.0.0.1:57415 375911194 12 160000001e9e0a0000000000 ............ +3222 7.762100458 127.0.0.1:57433 127.0.0.1:57415 375911206 22 12000000e9071f000000000001000300000000000000 ...................... +3224 7.762360811 127.0.0.1:57415 127.0.0.1:57433 3331589434 12 ffffffff1e9e0a0000000000 ............ +3227 7.835287094 127.0.0.1:57433 127.0.0.1:57415 375911228 12 feffffff7238010083380100 ....r8...8.. +3234 7.864115000 127.0.0.1:57415 127.0.0.1:57433 3331589446 12 1a0000005ebf0a0000000000 ....^....... +3236 7.864283800 127.0.0.1:57415 127.0.0.1:57433 3331589458 26 16000000548f6340e25e3140010003000000eb071f0000000000 ....T.c@.^1@.............. +3238 7.864628792 127.0.0.1:57433 127.0.0.1:57415 375911240 12 ffffffff5ebf0a0000000000 ....^....... +3240 7.865286112 127.0.0.1:57433 127.0.0.1:57415 375911252 12 160000001f9e0a0000000000 ............ +3242 7.865484238 127.0.0.1:57433 127.0.0.1:57415 375911264 22 12000000eb071f000000000001000300000000000000 ...................... +3244 7.865844250 127.0.0.1:57415 127.0.0.1:57433 3331589484 12 ffffffff1f9e0a0000000000 ............ +3250 7.944316864 127.0.0.1:57415 127.0.0.1:57433 3331589496 12 650000005fbf0a0000000000 e..._....... +3252 7.944526672 127.0.0.1:57415 127.0.0.1:57433 3331589508 101 1e0000001c2118d0c46f33bb0100030000005200020000000000c3080fc39d01 .....!...o3.......R...............?.....3...|8.. +3254 7.944988966 127.0.0.1:57433 127.0.0.1:57415 375911286 12 ffffffff5fbf0a0000000000 ...._....... +3256 7.945941687 127.0.0.1:57433 127.0.0.1:57415 375911298 12 34000000209e0a0000000000 4... ....... +3258 7.946103096 127.0.0.1:57433 127.0.0.1:57415 375911310 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....R............n +3260 7.946372986 127.0.0.1:57415 127.0.0.1:57433 3331589609 12 ffffffff209e0a0000000000 .... ....... +3262 7.947144985 127.0.0.1:57415 127.0.0.1:57433 3331589621 12 1e00000060bf0a0000000000 ....`....... +3264 7.947251320 127.0.0.1:57415 127.0.0.1:57433 3331589633 30 1a00000055ceff62b21b3a50010003000000ed071f000000000000000000 ....U..b..:P.................. +3266 7.947575331 127.0.0.1:57433 127.0.0.1:57415 375911362 12 ffffffff60bf0a0000000000 ....`....... +3268 7.948065042 127.0.0.1:57433 127.0.0.1:57415 375911374 12 1a000000219e0a0000000000 ....!....... +3270 7.948205948 127.0.0.1:57433 127.0.0.1:57415 375911386 26 16000000ed071f00000000000100030000000000000000000000 .......................... +3272 7.948395729 127.0.0.1:57415 127.0.0.1:57433 3331589663 12 ffffffff219e0a0000000000 ....!....... +3274 7.948743105 127.0.0.1:57415 127.0.0.1:57433 3331589675 12 feffffff8438010072380100 .....8..r8.. +3278 7.966918468 127.0.0.1:57415 127.0.0.1:57433 3331589687 12 1a00000061bf0a0000000000 ....a....... +3280 7.967067480 127.0.0.1:57415 127.0.0.1:57433 3331589699 26 16000000548f6340e25e3140010003000000ef071f0000000000 ....T.c@.^1@.............. +3282 7.967402697 127.0.0.1:57433 127.0.0.1:57415 375911412 12 ffffffff61bf0a0000000000 ....a....... +3284 7.967857122 127.0.0.1:57433 127.0.0.1:57415 375911424 12 16000000229e0a0000000000 ...."....... +3286 7.968046427 127.0.0.1:57433 127.0.0.1:57415 375911436 22 12000000ef071f000000000001000300000000000000 ...................... +3288 7.968323708 127.0.0.1:57415 127.0.0.1:57433 3331589725 12 ffffffff229e0a0000000000 ...."....... +3296 8.070845366 127.0.0.1:57415 127.0.0.1:57433 3331589737 12 1a00000062bf0a0000000000 ....b....... +3298 8.071064711 127.0.0.1:57415 127.0.0.1:57433 3331589749 26 16000000548f6340e25e3140010003000000f1071f0000000000 ....T.c@.^1@.............. +3300 8.071374416 127.0.0.1:57433 127.0.0.1:57415 375911458 12 ffffffff62bf0a0000000000 ....b....... +3302 8.071919918 127.0.0.1:57433 127.0.0.1:57415 375911470 12 16000000239e0a0000000000 ....#....... +3304 8.072141409 127.0.0.1:57433 127.0.0.1:57415 375911482 22 12000000f1071f000000000001000300000000000000 ...................... +3306 8.072419167 127.0.0.1:57415 127.0.0.1:57433 3331589775 12 ffffffff239e0a0000000000 ....#....... +3308 8.173566580 127.0.0.1:57415 127.0.0.1:57433 3331589787 12 1a00000063bf0a0000000000 ....c....... +3310 8.173757792 127.0.0.1:57415 127.0.0.1:57433 3331589799 26 16000000548f6340e25e3140010003000000f3071f0000000000 ....T.c@.^1@.............. +3312 8.174156189 127.0.0.1:57433 127.0.0.1:57415 375911504 12 ffffffff63bf0a0000000000 ....c....... +3314 8.174662352 127.0.0.1:57433 127.0.0.1:57415 375911516 12 16000000249e0a0000000000 ....$....... +3316 8.174830914 127.0.0.1:57433 127.0.0.1:57415 375911528 22 12000000f3071f000000000001000300000000000000 ...................... +3318 8.175186157 127.0.0.1:57415 127.0.0.1:57433 3331589825 12 ffffffff249e0a0000000000 ....$....... +3322 8.248211384 127.0.0.1:57415 127.0.0.1:57433 3331589837 12 6500000064bf0a0000000000 e...d....... +3324 8.248379946 127.0.0.1:57415 127.0.0.1:57433 3331589849 101 1e0000001c2118d0c46f33bb0100030000005300020000000000f3090fc39d01 .....!...o3.......S...............?.....3...|8.. +3326 8.248746872 127.0.0.1:57433 127.0.0.1:57415 375911550 12 ffffffff64bf0a0000000000 ....d....... +3328 8.249778986 127.0.0.1:57433 127.0.0.1:57415 375911562 12 34000000259e0a0000000000 4...%....... +3330 8.249983311 127.0.0.1:57433 127.0.0.1:57415 375911574 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....S.........U:.o +3332 8.250307798 127.0.0.1:57415 127.0.0.1:57433 3331589950 12 ffffffff259e0a0000000000 ....%....... +3334 8.251012564 127.0.0.1:57415 127.0.0.1:57433 3331589962 12 1e00000065bf0a0000000000 ....e....... +3336 8.251178026 127.0.0.1:57415 127.0.0.1:57433 3331589974 30 1a00000055ceff62b21b3a50010003000000f5071f000000000000000000 ....U..b..:P.................. +3338 8.251450062 127.0.0.1:57433 127.0.0.1:57415 375911626 12 ffffffff65bf0a0000000000 ....e....... +3340 8.251771212 127.0.0.1:57433 127.0.0.1:57415 375911638 12 1a000000269e0a0000000000 ....&....... +3342 8.251921415 127.0.0.1:57433 127.0.0.1:57415 375911650 26 16000000f5071f00000000000100030000000000000000000000 .......................... +3344 8.252209425 127.0.0.1:57415 127.0.0.1:57433 3331590004 12 ffffffff269e0a0000000000 ....&....... +3346 8.277606249 127.0.0.1:57415 127.0.0.1:57433 3331590016 12 1a00000066bf0a0000000000 ....f....... +3348 8.277772427 127.0.0.1:57415 127.0.0.1:57433 3331590028 26 16000000548f6340e25e3140010003000000f7071f0000000000 ....T.c@.^1@.............. +3350 8.278089046 127.0.0.1:57433 127.0.0.1:57415 375911676 12 ffffffff66bf0a0000000000 ....f....... +3352 8.278577328 127.0.0.1:57433 127.0.0.1:57415 375911688 12 16000000279e0a0000000000 ....'....... +3354 8.278796196 127.0.0.1:57433 127.0.0.1:57415 375911700 22 12000000f7071f000000000001000300000000000000 ...................... +3356 8.279058218 127.0.0.1:57415 127.0.0.1:57433 3331590054 12 ffffffff279e0a0000000000 ....'....... +3359 8.337023497 127.0.0.1:57433 127.0.0.1:57415 375911722 12 feffffff7338010084380100 ....s8...8.. +3366 8.380803585 127.0.0.1:57415 127.0.0.1:57433 3331590066 12 1a00000067bf0a0000000000 ....g....... +3368 8.380974770 127.0.0.1:57415 127.0.0.1:57433 3331590078 26 16000000548f6340e25e3140010003000000f9071f0000000000 ....T.c@.^1@.............. +3370 8.381362915 127.0.0.1:57433 127.0.0.1:57415 375911734 12 ffffffff67bf0a0000000000 ....g....... +3372 8.382211447 127.0.0.1:57433 127.0.0.1:57415 375911746 12 16000000289e0a0000000000 ....(....... +3374 8.382374048 127.0.0.1:57433 127.0.0.1:57415 375911758 22 12000000f9071f000000000001000300000000000000 ...................... +3376 8.382652044 127.0.0.1:57415 127.0.0.1:57433 3331590104 12 ffffffff289e0a0000000000 ....(....... +3388 8.450296164 127.0.0.1:57415 127.0.0.1:57433 3331590116 12 feffffff8538010073380100 .....8..s8.. +3394 8.484314203 127.0.0.1:57415 127.0.0.1:57433 3331590128 12 1a00000068bf0a0000000000 ....h....... +3396 8.484472513 127.0.0.1:57415 127.0.0.1:57433 3331590140 26 16000000548f6340e25e3140010003000000fb071f0000000000 ....T.c@.^1@.............. +3398 8.484771013 127.0.0.1:57433 127.0.0.1:57415 375911780 12 ffffffff68bf0a0000000000 ....h....... +3400 8.485359907 127.0.0.1:57433 127.0.0.1:57415 375911792 12 16000000299e0a0000000000 ....)....... +3402 8.485530615 127.0.0.1:57433 127.0.0.1:57415 375911804 22 12000000fb071f000000000001000300000000000000 ...................... +3404 8.485884666 127.0.0.1:57415 127.0.0.1:57433 3331590166 12 ffffffff299e0a0000000000 ....)....... +3410 8.551763296 127.0.0.1:57415 127.0.0.1:57433 3331590178 12 6500000069bf0a0000000000 e...i....... +3412 8.551962137 127.0.0.1:57415 127.0.0.1:57433 3331590190 101 1e0000001c2118d0c46f33bb0100030000005400020000000000230b0fc39d01 .....!...o3.......T.......#.......?.....3...|8.. +3414 8.552245617 127.0.0.1:57433 127.0.0.1:57415 375911826 12 ffffffff69bf0a0000000000 ....i....... +3416 8.553390741 127.0.0.1:57433 127.0.0.1:57415 375911838 12 340000002a9e0a0000000000 4...*....... +3418 8.553593397 127.0.0.1:57433 127.0.0.1:57415 375911850 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....T...........6o +3420 8.553867579 127.0.0.1:57415 127.0.0.1:57433 3331590291 12 ffffffff2a9e0a0000000000 ....*....... +3422 8.554656506 127.0.0.1:57415 127.0.0.1:57433 3331590303 12 1e0000006abf0a0000000000 ....j....... +3424 8.554797649 127.0.0.1:57415 127.0.0.1:57433 3331590315 30 1a00000055ceff62b21b3a50010003000000fd071f000000000000000000 ....U..b..:P.................. +3426 8.555155993 127.0.0.1:57433 127.0.0.1:57415 375911902 12 ffffffff6abf0a0000000000 ....j....... +3428 8.557299614 127.0.0.1:57433 127.0.0.1:57415 375911914 12 1a0000002b9e0a0000000000 ....+....... +3430 8.557448626 127.0.0.1:57433 127.0.0.1:57415 375911926 26 16000000fd071f00000000000100030000000000000000000000 .......................... +3432 8.557695150 127.0.0.1:57415 127.0.0.1:57433 3331590345 12 ffffffff2b9e0a0000000000 ....+....... +3434 8.588428259 127.0.0.1:57415 127.0.0.1:57433 3331590357 12 1a0000006bbf0a0000000000 ....k....... +3436 8.588583946 127.0.0.1:57415 127.0.0.1:57433 3331590369 26 16000000548f6340e25e3140010003000000ff071f0000000000 ....T.c@.^1@.............. +3438 8.588821650 127.0.0.1:57433 127.0.0.1:57415 375911952 12 ffffffff6bbf0a0000000000 ....k....... +3440 8.589334726 127.0.0.1:57433 127.0.0.1:57415 375911964 12 160000002c9e0a0000000000 ....,....... +3442 8.589497566 127.0.0.1:57433 127.0.0.1:57415 375911976 22 12000000ff071f000000000001000300000000000000 ...................... +3444 8.589773893 127.0.0.1:57415 127.0.0.1:57433 3331590395 12 ffffffff2c9e0a0000000000 ....,....... +3446 8.692407846 127.0.0.1:57415 127.0.0.1:57433 3331590407 12 1a0000006cbf0a0000000000 ....l....... +3448 8.692604780 127.0.0.1:57415 127.0.0.1:57433 3331590419 26 16000000548f6340e25e314001000300000001081f0000000000 ....T.c@.^1@.............. +3450 8.693102121 127.0.0.1:57433 127.0.0.1:57415 375911998 12 ffffffff6cbf0a0000000000 ....l....... +3452 8.693507910 127.0.0.1:57433 127.0.0.1:57415 375912010 12 160000002d9e0a0000000000 ....-....... +3454 8.693678141 127.0.0.1:57433 127.0.0.1:57415 375912022 22 1200000001081f000000000001000300000000000000 ...................... +3456 8.694037914 127.0.0.1:57415 127.0.0.1:57433 3331590445 12 ffffffff2d9e0a0000000000 ....-....... +3536 8.796555996 127.0.0.1:57415 127.0.0.1:57433 3331590457 12 1a0000006dbf0a0000000000 ....m....... +3538 8.796776533 127.0.0.1:57415 127.0.0.1:57433 3331590469 26 16000000548f6340e25e314001000300000003081f0000000000 ....T.c@.^1@.............. +3540 8.797192812 127.0.0.1:57433 127.0.0.1:57415 375912044 12 ffffffff6dbf0a0000000000 ....m....... +3542 8.797617197 127.0.0.1:57433 127.0.0.1:57415 375912056 12 160000002e9e0a0000000000 ............ +3544 8.797777176 127.0.0.1:57433 127.0.0.1:57415 375912068 22 1200000003081f000000000001000300000000000000 ...................... +3546 8.798025131 127.0.0.1:57415 127.0.0.1:57433 3331590495 12 ffffffff2e9e0a0000000000 ............ +3549 8.837540150 127.0.0.1:57433 127.0.0.1:57415 375912090 12 feffffff7438010085380100 ....t8...8.. +3692 8.856661081 127.0.0.1:57415 127.0.0.1:57433 3331590507 12 220000006ebf0a0000000000 "...n....... +3694 8.856816769 127.0.0.1:57415 127.0.0.1:57433 3331590519 34 1e0000001c2118d0c46f33bb0100030000005500020000000000540c0fc39d01 .....!...o3.......U.......T....... +3696 8.856950045 127.0.0.1:57415 127.0.0.1:57433 3331590553 12 430000006fbf0a0000000000 C...o....... +3698 8.857032776 127.0.0.1:57415 127.0.0.1:57433 3331590565 67 3f000000980433cb0cb47c38010003000000010000000055000200000000003d ?.....3...|8...........U.......=B.....&......... +3700 8.857138872 127.0.0.1:57433 127.0.0.1:57415 375912102 12 ffffffff6ebf0a0000000000 ....n....... +3702 8.857368231 127.0.0.1:57433 127.0.0.1:57415 375912114 12 ffffffff6fbf0a0000000000 ....o....... +3704 8.859470606 127.0.0.1:57433 127.0.0.1:57415 375912126 12 340000002f9e0a0000000000 4.../....... +3706 8.859685421 127.0.0.1:57433 127.0.0.1:57415 375912138 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....U..........Beo +3708 8.860022783 127.0.0.1:57415 127.0.0.1:57433 3331590632 12 ffffffff2f9e0a0000000000 ..../....... +3710 8.860781908 127.0.0.1:57415 127.0.0.1:57433 3331590644 12 1e00000070bf0a0000000000 ....p....... +3712 8.860918045 127.0.0.1:57415 127.0.0.1:57433 3331590656 30 1a00000055ceff62b21b3a5001000300000005081f000000000000000000 ....U..b..:P.................. +3714 8.861212015 127.0.0.1:57433 127.0.0.1:57415 375912190 12 ffffffff70bf0a0000000000 ....p....... +3716 8.861645699 127.0.0.1:57433 127.0.0.1:57415 375912202 12 1a000000309e0a0000000000 ....0....... +3718 8.861791849 127.0.0.1:57433 127.0.0.1:57415 375912214 26 1600000005081f00000000000100030000000000000000000000 .......................... +3720 8.862076759 127.0.0.1:57415 127.0.0.1:57433 3331590686 12 ffffffff309e0a0000000000 ....0....... +3727 8.899022102 127.0.0.1:57415 127.0.0.1:57433 3331590698 12 1a00000071bf0a0000000000 ....q....... +3729 8.899192572 127.0.0.1:57415 127.0.0.1:57433 3331590710 26 16000000548f6340e25e314001000300000007081f0000000000 ....T.c@.^1@.............. +3731 8.899646521 127.0.0.1:57433 127.0.0.1:57415 375912240 12 ffffffff71bf0a0000000000 ....q....... +3733 8.900144815 127.0.0.1:57433 127.0.0.1:57415 375912252 12 16000000319e0a0000000000 ....1....... +3735 8.900325537 127.0.0.1:57433 127.0.0.1:57415 375912264 22 1200000007081f000000000001000300000000000000 ...................... +3737 8.900603771 127.0.0.1:57415 127.0.0.1:57433 3331590736 12 ffffffff319e0a0000000000 ....1....... +3919 8.951164722 127.0.0.1:57415 127.0.0.1:57433 3331590748 12 feffffff8638010074380100 .....8..t8.. +4017 9.002161980 127.0.0.1:57415 127.0.0.1:57433 3331590760 12 1a00000072bf0a0000000000 ....r....... +4019 9.002363682 127.0.0.1:57415 127.0.0.1:57433 3331590772 26 16000000548f6340e25e314001000300000009081f0000000000 ....T.c@.^1@.............. +4021 9.002747774 127.0.0.1:57433 127.0.0.1:57415 375912286 12 ffffffff72bf0a0000000000 ....r....... +4023 9.003312826 127.0.0.1:57433 127.0.0.1:57415 375912298 12 16000000329e0a0000000000 ....2....... +4025 9.003556967 127.0.0.1:57433 127.0.0.1:57415 375912310 22 1200000009081f000000000001000300000000000000 ...................... +4027 9.003955126 127.0.0.1:57415 127.0.0.1:57433 3331590798 12 ffffffff329e0a0000000000 ....2....... +4072 9.106504440 127.0.0.1:57415 127.0.0.1:57433 3331590810 12 1a00000073bf0a0000000000 ....s....... +4074 9.106665373 127.0.0.1:57415 127.0.0.1:57433 3331590822 26 16000000548f6340e25e31400100030000000b081f0000000000 ....T.c@.^1@.............. +4076 9.106985807 127.0.0.1:57433 127.0.0.1:57415 375912332 12 ffffffff73bf0a0000000000 ....s....... +4078 9.109556913 127.0.0.1:57433 127.0.0.1:57415 375912344 12 16000000339e0a0000000000 ....3....... +4080 9.109713793 127.0.0.1:57433 127.0.0.1:57415 375912356 22 120000000b081f000000000001000300000000000000 ...................... +4082 9.109984875 127.0.0.1:57415 127.0.0.1:57433 3331590848 12 ffffffff339e0a0000000000 ....3....... +4087 9.162879944 127.0.0.1:57415 127.0.0.1:57433 3331590860 12 6500000074bf0a0000000000 e...t....... +4089 9.163039446 127.0.0.1:57415 127.0.0.1:57433 3331590872 101 1e0000001c2118d0c46f33bb0100030000005600020000000000860d0fc39d01 .....!...o3.......V...............?.....3...|8.. +4091 9.163404703 127.0.0.1:57433 127.0.0.1:57415 375912378 12 ffffffff74bf0a0000000000 ....t....... +4093 9.164061308 127.0.0.1:57433 127.0.0.1:57415 375912390 12 34000000349e0a0000000000 4...4....... +4095 9.164228916 127.0.0.1:57433 127.0.0.1:57415 375912402 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....V.........K..o +4097 9.164481878 127.0.0.1:57415 127.0.0.1:57433 3331590973 12 ffffffff349e0a0000000000 ....4....... +4099 9.165255070 127.0.0.1:57415 127.0.0.1:57433 3331590985 12 1e00000075bf0a0000000000 ....u....... +4101 9.165424109 127.0.0.1:57415 127.0.0.1:57433 3331590997 30 1a00000055ceff62b21b3a500100030000000d081f000000000000000000 ....U..b..:P.................. +4103 9.165715694 127.0.0.1:57433 127.0.0.1:57415 375912454 12 ffffffff75bf0a0000000000 ....u....... +4105 9.166069508 127.0.0.1:57433 127.0.0.1:57415 375912466 12 1a000000359e0a0000000000 ....5....... +4107 9.166210413 127.0.0.1:57433 127.0.0.1:57415 375912478 26 160000000d081f00000000000100030000000000000000000000 .......................... +4109 9.166546822 127.0.0.1:57415 127.0.0.1:57433 3331591027 12 ffffffff359e0a0000000000 ....5....... +4121 9.211126089 127.0.0.1:57415 127.0.0.1:57433 3331591039 12 1a00000076bf0a0000000000 ....v....... +4123 9.211293697 127.0.0.1:57415 127.0.0.1:57433 3331591051 26 16000000548f6340e25e31400100030000000f081f0000000000 ....T.c@.^1@.............. +4125 9.211629152 127.0.0.1:57433 127.0.0.1:57415 375912504 12 ffffffff76bf0a0000000000 ....v....... +4127 9.212205172 127.0.0.1:57433 127.0.0.1:57415 375912516 12 16000000369e0a0000000000 ....6....... +4129 9.212436438 127.0.0.1:57433 127.0.0.1:57415 375912528 22 120000000f081f000000000001000300000000000000 ...................... +4131 9.212729931 127.0.0.1:57415 127.0.0.1:57433 3331591077 12 ffffffff369e0a0000000000 ....6....... +4138 9.314085484 127.0.0.1:57415 127.0.0.1:57433 3331591089 12 1a00000077bf0a0000000000 ....w....... +4140 9.314257622 127.0.0.1:57415 127.0.0.1:57433 3331591101 26 16000000548f6340e25e314001000300000011081f0000000000 ....T.c@.^1@.............. +4142 9.314630508 127.0.0.1:57433 127.0.0.1:57415 375912550 12 ffffffff77bf0a0000000000 ....w....... +4144 9.315021276 127.0.0.1:57433 127.0.0.1:57415 375912562 12 16000000379e0a0000000000 ....7....... +4146 9.315183163 127.0.0.1:57433 127.0.0.1:57415 375912574 22 1200000011081f000000000001000300000000000000 ...................... +4148 9.315559626 127.0.0.1:57415 127.0.0.1:57433 3331591127 12 ffffffff379e0a0000000000 ....7....... +4150 9.338674545 127.0.0.1:57433 127.0.0.1:57415 375912596 12 feffffff7538010086380100 ....u8...8.. +4159 9.417116880 127.0.0.1:57415 127.0.0.1:57433 3331591139 12 1a00000078bf0a0000000000 ....x....... +4161 9.417360306 127.0.0.1:57415 127.0.0.1:57433 3331591151 26 16000000548f6340e25e314001000300000013081f0000000000 ....T.c@.^1@.............. +4163 9.417620659 127.0.0.1:57433 127.0.0.1:57415 375912608 12 ffffffff78bf0a0000000000 ....x....... +4165 9.418052912 127.0.0.1:57433 127.0.0.1:57415 375912620 12 16000000389e0a0000000000 ....8....... +4167 9.418212175 127.0.0.1:57433 127.0.0.1:57415 375912632 22 1200000013081f000000000001000300000000000000 ...................... +4169 9.418447018 127.0.0.1:57415 127.0.0.1:57433 3331591177 12 ffffffff389e0a0000000000 ....8....... +4176 9.451747894 127.0.0.1:57415 127.0.0.1:57433 3331591189 12 feffffff8738010075380100 .....8..u8.. +4180 9.467999220 127.0.0.1:57415 127.0.0.1:57433 3331591201 12 2200000079bf0a0000000000 "...y....... +4182 9.468160152 127.0.0.1:57415 127.0.0.1:57433 3331591213 34 1e0000001c2118d0c46f33bb0100030000005700020000000000b80e0fc39d01 .....!...o3.......W............... +4184 9.468314409 127.0.0.1:57415 127.0.0.1:57433 3331591247 12 430000007abf0a0000000000 C...z....... +4186 9.468419552 127.0.0.1:57415 127.0.0.1:57433 3331591259 67 3f000000980433cb0cb47c38010003000000010000000057000200000000003d ?.....3...|8...........W.......=B.....&......... +4188 9.468595743 127.0.0.1:57433 127.0.0.1:57415 375912654 12 ffffffff79bf0a0000000000 ....y....... +4190 9.468905926 127.0.0.1:57433 127.0.0.1:57415 375912666 12 ffffffff7abf0a0000000000 ....z....... +4192 9.469676733 127.0.0.1:57433 127.0.0.1:57415 375912678 12 34000000399e0a0000000000 4...9....... +4194 9.469921112 127.0.0.1:57433 127.0.0.1:57415 375912690 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....W..........`.o +4196 9.470180988 127.0.0.1:57415 127.0.0.1:57433 3331591326 12 ffffffff399e0a0000000000 ....9....... +4198 9.470961094 127.0.0.1:57415 127.0.0.1:57433 3331591338 12 1e0000007bbf0a0000000000 ....{....... +4200 9.471101761 127.0.0.1:57415 127.0.0.1:57433 3331591350 30 1a00000055ceff62b21b3a5001000300000015081f000000000000000000 ....U..b..:P.................. +4202 9.471402407 127.0.0.1:57433 127.0.0.1:57415 375912742 12 ffffffff7bbf0a0000000000 ....{....... +4204 9.471727133 127.0.0.1:57433 127.0.0.1:57415 375912754 12 1a0000003a9e0a0000000000 ....:....... +4206 9.471993685 127.0.0.1:57433 127.0.0.1:57415 375912766 26 1600000015081f00000000000100030000000000000000000000 .......................... +4208 9.472243309 127.0.0.1:57415 127.0.0.1:57433 3331591380 12 ffffffff3a9e0a0000000000 ....:....... +4212 9.519444227 127.0.0.1:57415 127.0.0.1:57433 3331591392 12 1a0000007cbf0a0000000000 ....|....... +4214 9.519612074 127.0.0.1:57415 127.0.0.1:57433 3331591404 26 16000000548f6340e25e314001000300000017081f0000000000 ....T.c@.^1@.............. +4216 9.520007849 127.0.0.1:57433 127.0.0.1:57415 375912792 12 ffffffff7cbf0a0000000000 ....|....... +4218 9.520450830 127.0.0.1:57433 127.0.0.1:57415 375912804 12 160000003b9e0a0000000000 ....;....... +4220 9.520618916 127.0.0.1:57433 127.0.0.1:57415 375912816 22 1200000017081f000000000001000300000000000000 ...................... +4222 9.521106482 127.0.0.1:57415 127.0.0.1:57433 3331591430 12 ffffffff3b9e0a0000000000 ....;....... +4229 9.623486519 127.0.0.1:57415 127.0.0.1:57433 3331591442 12 1a0000007dbf0a0000000000 ....}....... +4231 9.623663902 127.0.0.1:57415 127.0.0.1:57433 3331591454 26 16000000548f6340e25e314001000300000019081f0000000000 ....T.c@.^1@.............. +4233 9.624082565 127.0.0.1:57433 127.0.0.1:57415 375912838 12 ffffffff7dbf0a0000000000 ....}....... +4235 9.624580145 127.0.0.1:57433 127.0.0.1:57415 375912850 12 160000003c9e0a0000000000 ....<....... +4237 9.624750853 127.0.0.1:57433 127.0.0.1:57415 375912862 22 1200000019081f000000000001000300000000000000 ...................... +4239 9.625081778 127.0.0.1:57415 127.0.0.1:57433 3331591480 12 ffffffff3c9e0a0000000000 ....<....... +4252 9.726535320 127.0.0.1:57415 127.0.0.1:57433 3331591492 12 1a0000007ebf0a0000000000 ....~....... +4254 9.726763010 127.0.0.1:57415 127.0.0.1:57433 3331591504 26 16000000548f6340e25e31400100030000001b081f0000000000 ....T.c@.^1@.............. +4256 9.727100849 127.0.0.1:57433 127.0.0.1:57415 375912884 12 ffffffff7ebf0a0000000000 ....~....... +4258 9.727578163 127.0.0.1:57433 127.0.0.1:57415 375912896 12 160000003d9e0a0000000000 ....=....... +4260 9.727725506 127.0.0.1:57433 127.0.0.1:57415 375912908 22 120000001b081f000000000001000300000000000000 ...................... +4262 9.728026628 127.0.0.1:57415 127.0.0.1:57433 3331591530 12 ffffffff3d9e0a0000000000 ....=....... +4266 9.772814751 127.0.0.1:57415 127.0.0.1:57433 3331591542 12 650000007fbf0a0000000000 e........... +4268 9.772975445 127.0.0.1:57415 127.0.0.1:57433 3331591554 101 1e0000001c2118d0c46f33bb0100030000005800020000000000e80f0fc39d01 .....!...o3.......X...............?.....3...|8.. +4270 9.773321152 127.0.0.1:57433 127.0.0.1:57415 375912930 12 ffffffff7fbf0a0000000000 ............ +4272 9.774517775 127.0.0.1:57433 127.0.0.1:57415 375912942 12 340000003e9e0a0000000000 4...>....... +4274 9.774676323 127.0.0.1:57433 127.0.0.1:57415 375912954 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....X............o +4276 9.774945974 127.0.0.1:57415 127.0.0.1:57433 3331591655 12 ffffffff3e9e0a0000000000 ....>....... +4278 9.775739670 127.0.0.1:57415 127.0.0.1:57433 3331591667 12 1e00000080bf0a0000000000 ............ +4280 9.775918245 127.0.0.1:57415 127.0.0.1:57433 3331591679 30 1a00000055ceff62b21b3a500100030000001d081f000000000000000000 ....U..b..:P.................. +4282 9.776125908 127.0.0.1:57433 127.0.0.1:57415 375913006 12 ffffffff80bf0a0000000000 ............ +4284 9.776463032 127.0.0.1:57433 127.0.0.1:57415 375913018 12 1a0000003f9e0a0000000000 ....?....... +4286 9.776602983 127.0.0.1:57433 127.0.0.1:57415 375913030 26 160000001d081f00000000000100030000000000000000000000 .......................... +4288 9.776862621 127.0.0.1:57415 127.0.0.1:57433 3331591709 12 ffffffff3f9e0a0000000000 ....?....... +4291 9.829723597 127.0.0.1:57415 127.0.0.1:57433 3331591721 12 1a00000081bf0a0000000000 ............ +4293 9.829895020 127.0.0.1:57415 127.0.0.1:57433 3331591733 26 16000000548f6340e25e31400100030000001f081f0000000000 ....T.c@.^1@.............. +4295 9.830211639 127.0.0.1:57433 127.0.0.1:57415 375913056 12 ffffffff81bf0a0000000000 ............ +4297 9.830658913 127.0.0.1:57433 127.0.0.1:57415 375913068 12 16000000409e0a0000000000 ....@....... +4299 9.830833197 127.0.0.1:57433 127.0.0.1:57415 375913080 22 120000001f081f000000000001000300000000000000 ...................... +4301 9.831099033 127.0.0.1:57415 127.0.0.1:57433 3331591759 12 ffffffff409e0a0000000000 ....@....... +4304 9.840055943 127.0.0.1:57433 127.0.0.1:57415 375913102 12 feffffff7638010087380100 ....v8...8.. +4316 9.933583021 127.0.0.1:57415 127.0.0.1:57433 3331591771 12 1a00000082bf0a0000000000 ............ +4318 9.933765173 127.0.0.1:57415 127.0.0.1:57433 3331591783 26 16000000548f6340e25e314001000300000021081f0000000000 ....T.c@.^1@......!....... +4320 9.934069395 127.0.0.1:57433 127.0.0.1:57415 375913114 12 ffffffff82bf0a0000000000 ............ +4322 9.934668303 127.0.0.1:57433 127.0.0.1:57415 375913126 12 16000000419e0a0000000000 ....A....... +4324 9.934873819 127.0.0.1:57433 127.0.0.1:57415 375913138 22 1200000021081f000000000001000300000000000000 ....!................. +4326 9.935166597 127.0.0.1:57415 127.0.0.1:57433 3331591809 12 ffffffff419e0a0000000000 ....A....... +4328 9.952883482 127.0.0.1:57415 127.0.0.1:57433 3331591821 12 feffffff8838010076380100 .....8..v8.. +4337 10.036181211 127.0.0.1:57415 127.0.0.1:57433 3331591833 12 1a00000083bf0a0000000000 ............ +4339 10.036354303 127.0.0.1:57415 127.0.0.1:57433 3331591845 26 16000000548f6340e25e314001000300000023081f0000000000 ....T.c@.^1@......#....... +4341 10.036740541 127.0.0.1:57433 127.0.0.1:57415 375913160 12 ffffffff83bf0a0000000000 ............ +4343 10.037563801 127.0.0.1:57433 127.0.0.1:57415 375913172 12 16000000429e0a0000000000 ....B....... +4345 10.037712336 127.0.0.1:57433 127.0.0.1:57415 375913184 22 1200000023081f000000000001000300000000000000 ....#................. +4347 10.038035870 127.0.0.1:57415 127.0.0.1:57433 3331591871 12 ffffffff429e0a0000000000 ....B....... +4351 10.077334642 127.0.0.1:57415 127.0.0.1:57433 3331591883 12 2200000084bf0a0000000000 "........... +4353 10.077542543 127.0.0.1:57415 127.0.0.1:57433 3331591895 34 1e0000001c2118d0c46f33bb010003000000590002000000000018110fc39d01 .....!...o3.......Y............... +4355 10.077716827 127.0.0.1:57415 127.0.0.1:57433 3331591929 12 4300000085bf0a0000000000 C........... +4357 10.077802420 127.0.0.1:57415 127.0.0.1:57433 3331591941 67 3f000000980433cb0cb47c38010003000000010000000059000200000000003d ?.....3...|8...........Y.......=B.....&......... +4359 10.077928543 127.0.0.1:57433 127.0.0.1:57415 375913206 12 ffffffff84bf0a0000000000 ............ +4361 10.078096390 127.0.0.1:57433 127.0.0.1:57415 375913218 12 ffffffff85bf0a0000000000 ............ +4363 10.078829288 127.0.0.1:57433 127.0.0.1:57415 375913230 12 34000000439e0a0000000000 4...C....... +4365 10.079032898 127.0.0.1:57433 127.0.0.1:57415 375913242 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Y.........,N.p +4367 10.079243422 127.0.0.1:57415 127.0.0.1:57433 3331592008 12 ffffffff439e0a0000000000 ....C....... +4369 10.079989433 127.0.0.1:57415 127.0.0.1:57433 3331592020 12 1e00000086bf0a0000000000 ............ +4371 10.080127716 127.0.0.1:57415 127.0.0.1:57433 3331592032 30 1a00000055ceff62b21b3a5001000300000025081f000000000000000000 ....U..b..:P......%........... +4373 10.080439329 127.0.0.1:57433 127.0.0.1:57415 375913294 12 ffffffff86bf0a0000000000 ............ +4375 10.081205368 127.0.0.1:57433 127.0.0.1:57415 375913306 12 1a000000449e0a0000000000 ....D....... +4377 10.081400871 127.0.0.1:57433 127.0.0.1:57415 375913318 26 1600000025081f00000000000100030000000000000000000000 ....%..................... +4379 10.081766844 127.0.0.1:57415 127.0.0.1:57433 3331592062 12 ffffffff449e0a0000000000 ....D....... +4382 10.139042377 127.0.0.1:57415 127.0.0.1:57433 3331592074 12 1a00000087bf0a0000000000 ............ +4384 10.139205933 127.0.0.1:57415 127.0.0.1:57433 3331592086 26 16000000548f6340e25e314001000300000027081f0000000000 ....T.c@.^1@......'....... +4386 10.139474869 127.0.0.1:57433 127.0.0.1:57415 375913344 12 ffffffff87bf0a0000000000 ............ +4388 10.139964104 127.0.0.1:57433 127.0.0.1:57415 375913356 12 16000000459e0a0000000000 ....E....... +4390 10.140136957 127.0.0.1:57433 127.0.0.1:57415 375913368 22 1200000027081f000000000001000300000000000000 ....'................. +4392 10.140405655 127.0.0.1:57415 127.0.0.1:57433 3331592112 12 ffffffff459e0a0000000000 ....E....... +4424 10.241214514 127.0.0.1:57415 127.0.0.1:57433 3331592124 12 1a00000088bf0a0000000000 ............ +4426 10.241380215 127.0.0.1:57415 127.0.0.1:57433 3331592136 26 16000000548f6340e25e314001000300000029081f0000000000 ....T.c@.^1@......)....... +4428 10.241802454 127.0.0.1:57433 127.0.0.1:57415 375913390 12 ffffffff88bf0a0000000000 ............ +4431 10.242300749 127.0.0.1:57433 127.0.0.1:57415 375913402 12 16000000469e0a0000000000 ....F....... +4434 10.242469311 127.0.0.1:57433 127.0.0.1:57415 375913414 22 1200000029081f000000000001000300000000000000 ....)................. +4436 10.242892742 127.0.0.1:57415 127.0.0.1:57433 3331592162 12 ffffffff469e0a0000000000 ....F....... +4470 10.341148853 127.0.0.1:57433 127.0.0.1:57415 375913436 12 feffffff7738010088380100 ....w8...8.. +4478 10.345373631 127.0.0.1:57415 127.0.0.1:57433 3331592174 12 1a00000089bf0a0000000000 ............ +4480 10.345547676 127.0.0.1:57415 127.0.0.1:57433 3331592186 26 16000000548f6340e25e31400100030000002b081f0000000000 ....T.c@.^1@......+....... +4482 10.345839739 127.0.0.1:57433 127.0.0.1:57415 375913448 12 ffffffff89bf0a0000000000 ............ +4484 10.346310854 127.0.0.1:57433 127.0.0.1:57415 375913460 12 16000000479e0a0000000000 ....G....... +4486 10.346584082 127.0.0.1:57433 127.0.0.1:57415 375913472 22 120000002b081f000000000001000300000000000000 ....+................. +4488 10.347003937 127.0.0.1:57415 127.0.0.1:57433 3331592212 12 ffffffff479e0a0000000000 ....G....... +4490 10.381730080 127.0.0.1:57415 127.0.0.1:57433 3331592224 12 650000008abf0a0000000000 e........... +4492 10.381933212 127.0.0.1:57415 127.0.0.1:57433 3331592236 101 1e0000001c2118d0c46f33bb0100030000005a0002000000000048120fc39d01 .....!...o3.......Z.......H.......?.....3...|8.. +4494 10.382269621 127.0.0.1:57433 127.0.0.1:57415 375913494 12 ffffffff8abf0a0000000000 ............ +4496 10.383301497 127.0.0.1:57433 127.0.0.1:57415 375913506 12 34000000489e0a0000000000 4...H....... +4498 10.383494854 127.0.0.1:57433 127.0.0.1:57415 375913518 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Z...........Mp +4500 10.383889914 127.0.0.1:57415 127.0.0.1:57433 3331592337 12 ffffffff489e0a0000000000 ....H....... +4502 10.384693384 127.0.0.1:57415 127.0.0.1:57433 3331592349 12 1e0000008bbf0a0000000000 ............ +4504 10.384852648 127.0.0.1:57415 127.0.0.1:57433 3331592361 30 1a00000055ceff62b21b3a500100030000002d081f000000000000000000 ....U..b..:P......-........... +4506 10.385149240 127.0.0.1:57433 127.0.0.1:57415 375913570 12 ffffffff8bbf0a0000000000 ............ +4508 10.385528803 127.0.0.1:57433 127.0.0.1:57415 375913582 12 1a000000499e0a0000000000 ....I....... +4510 10.385724306 127.0.0.1:57433 127.0.0.1:57415 375913594 26 160000002d081f00000000000100030000000000000000000000 ....-..................... +4512 10.385987520 127.0.0.1:57415 127.0.0.1:57433 3331592391 12 ffffffff499e0a0000000000 ....I....... +4518 10.448378563 127.0.0.1:57415 127.0.0.1:57433 3331592403 12 1a0000008cbf0a0000000000 ............ +4520 10.448545456 127.0.0.1:57415 127.0.0.1:57433 3331592415 26 16000000548f6340e25e31400100030000002f081f0000000000 ....T.c@.^1@....../....... +4522 10.448845625 127.0.0.1:57433 127.0.0.1:57415 375913620 12 ffffffff8cbf0a0000000000 ............ +4524 10.449402571 127.0.0.1:57433 127.0.0.1:57415 375913632 12 160000004a9e0a0000000000 ....J....... +4526 10.449552774 127.0.0.1:57433 127.0.0.1:57415 375913644 22 120000002f081f000000000001000300000000000000 ..../................. +4528 10.449829340 127.0.0.1:57415 127.0.0.1:57433 3331592441 12 ffffffff4a9e0a0000000000 ....J....... +4530 10.453342676 127.0.0.1:57415 127.0.0.1:57433 3331592453 12 feffffff8938010077380100 .....8..w8.. +4540 10.551538944 127.0.0.1:57415 127.0.0.1:57433 3331592465 12 1a0000008dbf0a0000000000 ............ +4542 10.551708221 127.0.0.1:57415 127.0.0.1:57433 3331592477 26 16000000548f6340e25e314001000300000031081f0000000000 ....T.c@.^1@......1....... +4544 10.552097321 127.0.0.1:57433 127.0.0.1:57415 375913666 12 ffffffff8dbf0a0000000000 ............ +4546 10.552656889 127.0.0.1:57433 127.0.0.1:57415 375913678 12 160000004b9e0a0000000000 ....K....... +4548 10.552947998 127.0.0.1:57433 127.0.0.1:57415 375913690 22 1200000031081f000000000001000300000000000000 ....1................. +4550 10.553274870 127.0.0.1:57415 127.0.0.1:57433 3331592503 12 ffffffff4b9e0a0000000000 ....K....... +4552 10.654239416 127.0.0.1:57415 127.0.0.1:57433 3331592515 12 1a0000008ebf0a0000000000 ............ +4554 10.654464722 127.0.0.1:57415 127.0.0.1:57433 3331592527 26 16000000548f6340e25e314001000300000033081f0000000000 ....T.c@.^1@......3....... +4556 10.654893160 127.0.0.1:57433 127.0.0.1:57415 375913712 12 ffffffff8ebf0a0000000000 ............ +4558 10.655378580 127.0.0.1:57433 127.0.0.1:57415 375913724 12 160000004c9e0a0000000000 ....L....... +4560 10.655596018 127.0.0.1:57433 127.0.0.1:57415 375913736 22 1200000033081f000000000001000300000000000000 ....3................. +4562 10.655877113 127.0.0.1:57415 127.0.0.1:57433 3331592553 12 ffffffff4c9e0a0000000000 ....L....... +4564 10.686573029 127.0.0.1:57415 127.0.0.1:57433 3331592565 12 650000008fbf0a0000000000 e........... +4566 10.686779261 127.0.0.1:57415 127.0.0.1:57433 3331592577 101 1e0000001c2118d0c46f33bb0100030000005b0002000000000079130fc39d01 .....!...o3.......[.......y.......?.....3...|8.. +4568 10.687134027 127.0.0.1:57433 127.0.0.1:57415 375913758 12 ffffffff8fbf0a0000000000 ............ +4570 10.687984705 127.0.0.1:57433 127.0.0.1:57415 375913770 12 340000004d9e0a0000000000 4...M....... +4572 10.688142538 127.0.0.1:57433 127.0.0.1:57415 375913782 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....[.........(E|p +4574 10.688401222 127.0.0.1:57415 127.0.0.1:57433 3331592678 12 ffffffff4d9e0a0000000000 ....M....... +4576 10.689481497 127.0.0.1:57415 127.0.0.1:57433 3331592690 12 1e00000090bf0a0000000000 ............ +4578 10.689611673 127.0.0.1:57415 127.0.0.1:57433 3331592702 30 1a00000055ceff62b21b3a5001000300000035081f000000000000000000 ....U..b..:P......5........... +4580 10.689998388 127.0.0.1:57433 127.0.0.1:57415 375913834 12 ffffffff90bf0a0000000000 ............ +4582 10.690505505 127.0.0.1:57433 127.0.0.1:57415 375913846 12 1a0000004e9e0a0000000000 ....N....... +4584 10.690783501 127.0.0.1:57433 127.0.0.1:57415 375913858 26 1600000035081f00000000000100030000000000000000000000 ....5..................... +4586 10.691077471 127.0.0.1:57415 127.0.0.1:57433 3331592732 12 ffffffff4e9e0a0000000000 ....N....... +4590 10.758102655 127.0.0.1:57415 127.0.0.1:57433 3331592744 12 1a00000091bf0a0000000000 ............ +4592 10.758276224 127.0.0.1:57415 127.0.0.1:57433 3331592756 26 16000000548f6340e25e314001000300000037081f0000000000 ....T.c@.^1@......7....... +4594 10.758654118 127.0.0.1:57433 127.0.0.1:57415 375913884 12 ffffffff91bf0a0000000000 ............ +4596 10.759088755 127.0.0.1:57433 127.0.0.1:57415 375913896 12 160000004f9e0a0000000000 ....O....... +4598 10.759250879 127.0.0.1:57433 127.0.0.1:57415 375913908 22 1200000037081f000000000001000300000000000000 ....7................. +4600 10.759544611 127.0.0.1:57415 127.0.0.1:57433 3331592782 12 ffffffff4f9e0a0000000000 ....O....... +4603 10.841344357 127.0.0.1:57433 127.0.0.1:57415 375913930 12 feffffff7838010089380100 ....x8...8.. +4610 10.861186504 127.0.0.1:57415 127.0.0.1:57433 3331592794 12 1a00000092bf0a0000000000 ............ +4612 10.861366510 127.0.0.1:57415 127.0.0.1:57433 3331592806 26 16000000548f6340e25e314001000300000039081f0000000000 ....T.c@.^1@......9....... +4614 10.861784220 127.0.0.1:57433 127.0.0.1:57415 375913942 12 ffffffff92bf0a0000000000 ............ +4616 10.862300634 127.0.0.1:57433 127.0.0.1:57415 375913954 12 16000000509e0a0000000000 ....P....... +4618 10.862457752 127.0.0.1:57433 127.0.0.1:57415 375913966 22 1200000039081f000000000001000300000000000000 ....9................. +4620 10.862809896 127.0.0.1:57415 127.0.0.1:57433 3331592832 12 ffffffff509e0a0000000000 ....P....... +4626 10.955027580 127.0.0.1:57415 127.0.0.1:57433 3331592844 12 feffffff8a38010078380100 .....8..x8.. +4630 10.965321779 127.0.0.1:57415 127.0.0.1:57433 3331592856 12 1a00000093bf0a0000000000 ............ +4632 10.965532541 127.0.0.1:57415 127.0.0.1:57433 3331592868 26 16000000548f6340e25e31400100030000003b081f0000000000 ....T.c@.^1@......;....... +4634 10.965948343 127.0.0.1:57433 127.0.0.1:57415 375913988 12 ffffffff93bf0a0000000000 ............ +4636 10.966496229 127.0.0.1:57433 127.0.0.1:57415 375914000 12 16000000519e0a0000000000 ....Q....... +4638 10.966738939 127.0.0.1:57433 127.0.0.1:57415 375914012 22 120000003b081f000000000001000300000000000000 ....;................. +4640 10.967069149 127.0.0.1:57415 127.0.0.1:57433 3331592894 12 ffffffff519e0a0000000000 ....Q....... +4647 10.990730286 127.0.0.1:57415 127.0.0.1:57433 3331592906 12 6500000094bf0a0000000000 e........... +4649 10.991050720 127.0.0.1:57415 127.0.0.1:57433 3331592918 101 1e0000001c2118d0c46f33bb0100030000005c00020000000000aa140fc39d01 .....!...o3.......\...............?.....3...|8.. +4651 10.991499424 127.0.0.1:57433 127.0.0.1:57415 375914034 12 ffffffff94bf0a0000000000 ............ +4653 10.993397236 127.0.0.1:57433 127.0.0.1:57415 375914046 12 34000000529e0a0000000000 4...R....... +4655 10.993556023 127.0.0.1:57433 127.0.0.1:57415 375914058 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....\.........&..p +4657 10.993827820 127.0.0.1:57415 127.0.0.1:57433 3331593019 12 ffffffff529e0a0000000000 ....R....... +4659 10.995486021 127.0.0.1:57415 127.0.0.1:57433 3331593031 12 1e00000095bf0a0000000000 ............ +4661 10.995632648 127.0.0.1:57415 127.0.0.1:57433 3331593043 30 1a00000055ceff62b21b3a500100030000003d081f000000000000000000 ....U..b..:P......=........... +4663 10.995978832 127.0.0.1:57433 127.0.0.1:57415 375914110 12 ffffffff95bf0a0000000000 ............ +4665 10.996276140 127.0.0.1:57433 127.0.0.1:57415 375914122 12 1a000000539e0a0000000000 ....S....... +4667 10.996506929 127.0.0.1:57433 127.0.0.1:57415 375914134 26 160000003d081f00000000000100030000000000000000000000 ....=..................... +4669 10.996767998 127.0.0.1:57415 127.0.0.1:57433 3331593073 12 ffffffff539e0a0000000000 ....S....... +4675 11.069302320 127.0.0.1:57415 127.0.0.1:57433 3331593085 12 1a00000096bf0a0000000000 ............ +4677 11.069500685 127.0.0.1:57415 127.0.0.1:57433 3331593097 26 16000000548f6340e25e31400100030000003f081f0000000000 ....T.c@.^1@......?....... +4679 11.069866657 127.0.0.1:57433 127.0.0.1:57415 375914160 12 ffffffff96bf0a0000000000 ............ +4681 11.070508718 127.0.0.1:57433 127.0.0.1:57415 375914172 12 16000000549e0a0000000000 ....T....... +4683 11.070719719 127.0.0.1:57433 127.0.0.1:57415 375914184 22 120000003f081f000000000001000300000000000000 ....?................. +4685 11.070966482 127.0.0.1:57415 127.0.0.1:57433 3331593123 12 ffffffff549e0a0000000000 ....T....... +4688 11.172525644 127.0.0.1:57415 127.0.0.1:57433 3331593135 12 1a00000097bf0a0000000000 ............ +4690 11.172725201 127.0.0.1:57415 127.0.0.1:57433 3331593147 26 16000000548f6340e25e314001000300000041081f0000000000 ....T.c@.^1@......A....... +4692 11.173019886 127.0.0.1:57433 127.0.0.1:57415 375914206 12 ffffffff97bf0a0000000000 ............ +4694 11.173554420 127.0.0.1:57433 127.0.0.1:57415 375914218 12 16000000559e0a0000000000 ....U....... +4696 11.173694372 127.0.0.1:57433 127.0.0.1:57415 375914230 22 1200000041081f000000000001000300000000000000 ....A................. +4698 11.173963547 127.0.0.1:57415 127.0.0.1:57433 3331593173 12 ffffffff559e0a0000000000 ....U....... +4703 11.276404619 127.0.0.1:57415 127.0.0.1:57433 3331593185 12 1a00000098bf0a0000000000 ............ +4705 11.276553392 127.0.0.1:57415 127.0.0.1:57433 3331593197 26 16000000548f6340e25e314001000300000043081f0000000000 ....T.c@.^1@......C....... +4707 11.276913881 127.0.0.1:57433 127.0.0.1:57415 375914252 12 ffffffff98bf0a0000000000 ............ +4709 11.277331591 127.0.0.1:57433 127.0.0.1:57415 375914264 12 16000000569e0a0000000000 ....V....... +4711 11.277495861 127.0.0.1:57433 127.0.0.1:57415 375914276 22 1200000043081f000000000001000300000000000000 ....C................. +4713 11.277806997 127.0.0.1:57415 127.0.0.1:57433 3331593223 12 ffffffff569e0a0000000000 ....V....... +4715 11.297595024 127.0.0.1:57415 127.0.0.1:57433 3331593235 12 6500000099bf0a0000000000 e........... +4717 11.297755480 127.0.0.1:57415 127.0.0.1:57433 3331593247 101 1e0000001c2118d0c46f33bb0100030000005d00020000000000dd150fc39d01 .....!...o3.......]...............?.....3...|8.. +4719 11.298142195 127.0.0.1:57433 127.0.0.1:57415 375914298 12 ffffffff99bf0a0000000000 ............ +4721 11.299546003 127.0.0.1:57433 127.0.0.1:57415 375914310 12 34000000579e0a0000000000 4...W....... +4723 11.299961805 127.0.0.1:57433 127.0.0.1:57415 375914322 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....]............p +4725 11.300238609 127.0.0.1:57415 127.0.0.1:57433 3331593348 12 ffffffff579e0a0000000000 ....W....... +4727 11.300978422 127.0.0.1:57415 127.0.0.1:57433 3331593360 12 1e0000009abf0a0000000000 ............ +4729 11.301153660 127.0.0.1:57415 127.0.0.1:57433 3331593372 30 1a00000055ceff62b21b3a5001000300000045081f000000000000000000 ....U..b..:P......E........... +4731 11.301453114 127.0.0.1:57433 127.0.0.1:57415 375914374 12 ffffffff9abf0a0000000000 ............ +4733 11.301879168 127.0.0.1:57433 127.0.0.1:57415 375914386 12 1a000000589e0a0000000000 ....X....... +4735 11.302033424 127.0.0.1:57433 127.0.0.1:57415 375914398 26 1600000045081f00000000000100030000000000000000000000 ....E..................... +4737 11.302352428 127.0.0.1:57415 127.0.0.1:57433 3331593402 12 ffffffff589e0a0000000000 ....X....... +4741 11.341516733 127.0.0.1:57433 127.0.0.1:57415 375914424 12 feffffff793801008a380100 ....y8...8.. +4748 11.378646374 127.0.0.1:57415 127.0.0.1:57433 3331593414 12 1a0000009bbf0a0000000000 ............ +4750 11.378813028 127.0.0.1:57415 127.0.0.1:57433 3331593426 26 16000000548f6340e25e314001000300000047081f0000000000 ....T.c@.^1@......G....... +4752 11.379117727 127.0.0.1:57433 127.0.0.1:57415 375914436 12 ffffffff9bbf0a0000000000 ............ +4754 11.379648924 127.0.0.1:57433 127.0.0.1:57415 375914448 12 16000000599e0a0000000000 ....Y....... +4756 11.379796028 127.0.0.1:57433 127.0.0.1:57415 375914460 22 1200000047081f000000000001000300000000000000 ....G................. +4758 11.380037069 127.0.0.1:57415 127.0.0.1:57433 3331593452 12 ffffffff599e0a0000000000 ....Y....... +4765 11.456954956 127.0.0.1:57415 127.0.0.1:57433 3331593464 12 feffffff8b38010079380100 .....8..y8.. +4769 11.480936527 127.0.0.1:57415 127.0.0.1:57433 3331593476 12 1a0000009cbf0a0000000000 ............ +4771 11.481116056 127.0.0.1:57415 127.0.0.1:57433 3331593488 26 16000000548f6340e25e314001000300000049081f0000000000 ....T.c@.^1@......I....... +4773 11.481528997 127.0.0.1:57433 127.0.0.1:57415 375914482 12 ffffffff9cbf0a0000000000 ............ +4775 11.481988907 127.0.0.1:57433 127.0.0.1:57415 375914494 12 160000005a9e0a0000000000 ....Z....... +4777 11.482193232 127.0.0.1:57433 127.0.0.1:57415 375914506 22 1200000049081f000000000001000300000000000000 ....I................. +4779 11.482437372 127.0.0.1:57415 127.0.0.1:57433 3331593514 12 ffffffff5a9e0a0000000000 ....Z....... +4801 11.584804773 127.0.0.1:57415 127.0.0.1:57433 3331593526 12 1a0000009dbf0a0000000000 ............ +4803 11.585107803 127.0.0.1:57415 127.0.0.1:57433 3331593538 26 16000000548f6340e25e31400100030000004b081f0000000000 ....T.c@.^1@......K....... +4805 11.585426331 127.0.0.1:57433 127.0.0.1:57415 375914528 12 ffffffff9dbf0a0000000000 ............ +4807 11.585827351 127.0.0.1:57433 127.0.0.1:57415 375914540 12 160000005b9e0a0000000000 ....[....... +4809 11.586028814 127.0.0.1:57433 127.0.0.1:57415 375914552 22 120000004b081f000000000001000300000000000000 ....K................. +4811 11.586300850 127.0.0.1:57415 127.0.0.1:57433 3331593564 12 ffffffff5b9e0a0000000000 ....[....... +4813 11.601831198 127.0.0.1:57415 127.0.0.1:57433 3331593576 12 650000009ebf0a0000000000 e........... +4815 11.602078676 127.0.0.1:57415 127.0.0.1:57433 3331593588 101 1e0000001c2118d0c46f33bb0100030000005e000200000000000d170fc39d01 .....!...o3.......^...............?.....3...|8.. +4817 11.602469206 127.0.0.1:57433 127.0.0.1:57415 375914574 12 ffffffff9ebf0a0000000000 ............ +4819 11.603539705 127.0.0.1:57433 127.0.0.1:57415 375914586 12 340000005c9e0a0000000000 4...\....... +4821 11.603748322 127.0.0.1:57433 127.0.0.1:57415 375914598 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....^............q +4823 11.603996992 127.0.0.1:57415 127.0.0.1:57433 3331593689 12 ffffffff5c9e0a0000000000 ....\....... +4825 11.604903221 127.0.0.1:57415 127.0.0.1:57433 3331593701 12 1e0000009fbf0a0000000000 ............ +4827 11.605589390 127.0.0.1:57415 127.0.0.1:57433 3331593713 30 1a00000055ceff62b21b3a500100030000004d081f000000000000000000 ....U..b..:P......M........... +4829 11.605957747 127.0.0.1:57433 127.0.0.1:57415 375914650 12 ffffffff9fbf0a0000000000 ............ +4831 11.606851578 127.0.0.1:57433 127.0.0.1:57415 375914662 12 1a0000005d9e0a0000000000 ....]....... +4833 11.606995583 127.0.0.1:57433 127.0.0.1:57415 375914674 26 160000004d081f00000000000100030000000000000000000000 ....M..................... +4835 11.607301712 127.0.0.1:57415 127.0.0.1:57433 3331593743 12 ffffffff5d9e0a0000000000 ....]....... +4851 11.687899351 127.0.0.1:57415 127.0.0.1:57433 3331593755 12 1a000000a0bf0a0000000000 ............ +4853 11.688097715 127.0.0.1:57415 127.0.0.1:57433 3331593767 26 16000000548f6340e25e31400100030000004f081f0000000000 ....T.c@.^1@......O....... +4855 11.688344955 127.0.0.1:57433 127.0.0.1:57415 375914700 12 ffffffffa0bf0a0000000000 ............ +4857 11.688830614 127.0.0.1:57433 127.0.0.1:57415 375914712 12 160000005e9e0a0000000000 ....^....... +4859 11.689033747 127.0.0.1:57433 127.0.0.1:57415 375914724 22 120000004f081f000000000001000300000000000000 ....O................. +4861 11.689370632 127.0.0.1:57415 127.0.0.1:57433 3331593793 12 ffffffff5e9e0a0000000000 ....^....... +4868 11.790725470 127.0.0.1:57415 127.0.0.1:57433 3331593805 12 1a000000a1bf0a0000000000 ............ +4870 11.790907621 127.0.0.1:57415 127.0.0.1:57433 3331593817 26 16000000548f6340e25e314001000300000051081f0000000000 ....T.c@.^1@......Q....... +4872 11.791373491 127.0.0.1:57433 127.0.0.1:57415 375914746 12 ffffffffa1bf0a0000000000 ............ +4874 11.791903019 127.0.0.1:57433 127.0.0.1:57415 375914758 12 160000005f9e0a0000000000 ...._....... +4876 11.792104006 127.0.0.1:57433 127.0.0.1:57415 375914770 22 1200000051081f000000000001000300000000000000 ....Q................. +4878 11.792422056 127.0.0.1:57415 127.0.0.1:57433 3331593843 12 ffffffff5f9e0a0000000000 ...._....... +4881 11.842477798 127.0.0.1:57433 127.0.0.1:57415 375914792 12 feffffff7a3801008b380100 ....z8...8.. +4890 11.893489838 127.0.0.1:57415 127.0.0.1:57433 3331593855 12 1a000000a2bf0a0000000000 ............ +4892 11.893746376 127.0.0.1:57415 127.0.0.1:57433 3331593867 26 16000000548f6340e25e314001000300000053081f0000000000 ....T.c@.^1@......S....... +4894 11.894140720 127.0.0.1:57433 127.0.0.1:57415 375914804 12 ffffffffa2bf0a0000000000 ............ +4896 11.897041798 127.0.0.1:57433 127.0.0.1:57415 375914816 12 16000000609e0a0000000000 ....`....... +4898 11.897202492 127.0.0.1:57433 127.0.0.1:57415 375914828 22 1200000053081f000000000001000300000000000000 ....S................. +4900 11.897401810 127.0.0.1:57415 127.0.0.1:57433 3331593893 12 ffffffff609e0a0000000000 ....`....... +4902 11.905971527 127.0.0.1:57415 127.0.0.1:57433 3331593905 12 22000000a3bf0a0000000000 "........... +4904 11.906136274 127.0.0.1:57415 127.0.0.1:57433 3331593917 34 1e0000001c2118d0c46f33bb0100030000005f000200000000003d180fc39d01 .....!...o3......._.......=....... +4906 11.906223297 127.0.0.1:57415 127.0.0.1:57433 3331593951 12 43000000a4bf0a0000000000 C........... +4908 11.906305790 127.0.0.1:57415 127.0.0.1:57433 3331593963 67 3f000000980433cb0cb47c3801000300000001000000005f000200000000003d ?.....3...|8..........._.......=B.....&......... +4910 11.906392336 127.0.0.1:57433 127.0.0.1:57415 375914850 12 ffffffffa3bf0a0000000000 ............ +4912 11.906564236 127.0.0.1:57433 127.0.0.1:57415 375914862 12 ffffffffa4bf0a0000000000 ............ +4914 11.907364607 127.0.0.1:57433 127.0.0.1:57415 375914874 12 34000000619e0a0000000000 4...a....... +4916 11.907514811 127.0.0.1:57433 127.0.0.1:57415 375914886 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([....._..........W6q +4918 11.907732725 127.0.0.1:57415 127.0.0.1:57433 3331594030 12 ffffffff619e0a0000000000 ....a....... +4920 11.908504963 127.0.0.1:57415 127.0.0.1:57433 3331594042 12 1e000000a5bf0a0000000000 ............ +4922 11.908644915 127.0.0.1:57415 127.0.0.1:57433 3331594054 30 1a00000055ceff62b21b3a5001000300000055081f000000000000000000 ....U..b..:P......U........... +4924 11.908940554 127.0.0.1:57433 127.0.0.1:57415 375914938 12 ffffffffa5bf0a0000000000 ............ +4926 11.909288645 127.0.0.1:57433 127.0.0.1:57415 375914950 12 1a000000629e0a0000000000 ....b....... +4928 11.909430742 127.0.0.1:57433 127.0.0.1:57415 375914962 26 1600000055081f00000000000100030000000000000000000000 ....U..................... +4930 11.909627199 127.0.0.1:57415 127.0.0.1:57433 3331594084 12 ffffffff629e0a0000000000 ....b....... +4937 11.958170652 127.0.0.1:57415 127.0.0.1:57433 3331594096 12 feffffff8c3801007a380100 .....8..z8.. +4944 11.999707699 127.0.0.1:57415 127.0.0.1:57433 3331594108 12 1a000000a6bf0a0000000000 ............ +4946 11.999896526 127.0.0.1:57415 127.0.0.1:57433 3331594120 26 16000000548f6340e25e314001000300000057081f0000000000 ....T.c@.^1@......W....... +4948 12.000202179 127.0.0.1:57433 127.0.0.1:57415 375914988 12 ffffffffa6bf0a0000000000 ............ +4950 12.000653267 127.0.0.1:57433 127.0.0.1:57415 375915000 12 16000000639e0a0000000000 ....c....... +4952 12.000815392 127.0.0.1:57433 127.0.0.1:57415 375915012 22 1200000057081f000000000001000300000000000000 ....W................. +4954 12.001086712 127.0.0.1:57415 127.0.0.1:57433 3331594146 12 ffffffff639e0a0000000000 ....c....... +4962 12.102280617 127.0.0.1:57415 127.0.0.1:57433 3331594158 12 1a000000a7bf0a0000000000 ............ +4964 12.102491856 127.0.0.1:57415 127.0.0.1:57433 3331594170 26 16000000548f6340e25e314001000300000059081f0000000000 ....T.c@.^1@......Y....... +4966 12.102838039 127.0.0.1:57433 127.0.0.1:57415 375915034 12 ffffffffa7bf0a0000000000 ............ +4968 12.103283405 127.0.0.1:57433 127.0.0.1:57415 375915046 12 16000000649e0a0000000000 ....d....... +4970 12.103448153 127.0.0.1:57433 127.0.0.1:57415 375915058 22 1200000059081f000000000001000300000000000000 ....Y................. +4972 12.103695631 127.0.0.1:57415 127.0.0.1:57433 3331594196 12 ffffffff649e0a0000000000 ....d....... +4988 12.204681873 127.0.0.1:57415 127.0.0.1:57433 3331594208 12 1a000000a8bf0a0000000000 ............ +4990 12.204848528 127.0.0.1:57415 127.0.0.1:57433 3331594220 26 16000000548f6340e25e31400100030000005b081f0000000000 ....T.c@.^1@......[....... +4992 12.205260992 127.0.0.1:57433 127.0.0.1:57415 375915080 12 ffffffffa8bf0a0000000000 ............ +4994 12.208918333 127.0.0.1:57433 127.0.0.1:57415 375915092 12 16000000659e0a0000000000 ....e....... +4996 12.209083319 127.0.0.1:57433 127.0.0.1:57415 375915104 22 120000005b081f000000000001000300000000000000 ....[................. +4998 12.209393024 127.0.0.1:57415 127.0.0.1:57433 3331594246 12 ffffffff659e0a0000000000 ....e....... +5000 12.209969521 127.0.0.1:57415 127.0.0.1:57433 3331594258 12 65000000a9bf0a0000000000 e........... +5002 12.210133314 127.0.0.1:57415 127.0.0.1:57433 3331594270 101 1e0000001c2118d0c46f33bb01000300000060000200000000006d190fc39d01 .....!...o3.......`.......m.......?.....3...|8.. +5004 12.210418463 127.0.0.1:57433 127.0.0.1:57415 375915126 12 ffffffffa9bf0a0000000000 ............ +5006 12.213521242 127.0.0.1:57433 127.0.0.1:57415 375915138 12 34000000669e0a0000000000 4...f....... +5008 12.213667870 127.0.0.1:57433 127.0.0.1:57415 375915150 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....`...........eq +5010 12.213900089 127.0.0.1:57415 127.0.0.1:57433 3331594371 12 ffffffff669e0a0000000000 ....f....... +5012 12.214638472 127.0.0.1:57415 127.0.0.1:57433 3331594383 12 1e000000aabf0a0000000000 ............ +5014 12.214778900 127.0.0.1:57415 127.0.0.1:57433 3331594395 30 1a00000055ceff62b21b3a500100030000005d081f000000000000000000 ....U..b..:P......]........... +5016 12.215269804 127.0.0.1:57433 127.0.0.1:57415 375915202 12 ffffffffaabf0a0000000000 ............ +5018 12.215570450 127.0.0.1:57433 127.0.0.1:57415 375915214 12 1a000000679e0a0000000000 ....g....... +5020 12.215728998 127.0.0.1:57433 127.0.0.1:57415 375915226 26 160000005d081f00000000000100030000000000000000000000 ....]..................... +5022 12.216032505 127.0.0.1:57415 127.0.0.1:57433 3331594425 12 ffffffff679e0a0000000000 ....g....... +5026 12.311235905 127.0.0.1:57415 127.0.0.1:57433 3331594437 12 1a000000abbf0a0000000000 ............ +5028 12.311448812 127.0.0.1:57415 127.0.0.1:57433 3331594449 26 16000000548f6340e25e31400100030000005f081f0000000000 ....T.c@.^1@......_....... +5030 12.311865807 127.0.0.1:57433 127.0.0.1:57415 375915252 12 ffffffffabbf0a0000000000 ............ +5032 12.312440395 127.0.0.1:57433 127.0.0.1:57415 375915264 12 16000000689e0a0000000000 ....h....... +5034 12.312652588 127.0.0.1:57433 127.0.0.1:57415 375915276 22 120000005f081f000000000001000300000000000000 ...._................. +5036 12.312953472 127.0.0.1:57415 127.0.0.1:57433 3331594475 12 ffffffff689e0a0000000000 ....h....... +5039 12.344208717 127.0.0.1:57433 127.0.0.1:57415 375915298 12 feffffff7b3801008c380100 ....{8...8.. +5047 12.415135622 127.0.0.1:57415 127.0.0.1:57433 3331594487 12 1a000000acbf0a0000000000 ............ +5049 12.415311813 127.0.0.1:57415 127.0.0.1:57433 3331594499 26 16000000548f6340e25e314001000300000061081f0000000000 ....T.c@.^1@......a....... +5051 12.415657520 127.0.0.1:57433 127.0.0.1:57415 375915310 12 ffffffffacbf0a0000000000 ............ +5053 12.416101933 127.0.0.1:57433 127.0.0.1:57415 375915322 12 16000000699e0a0000000000 ....i....... +5055 12.416259527 127.0.0.1:57433 127.0.0.1:57415 375915334 22 1200000061081f000000000001000300000000000000 ....a................. +5057 12.416560650 127.0.0.1:57415 127.0.0.1:57433 3331594525 12 ffffffff699e0a0000000000 ....i....... +5064 12.460415840 127.0.0.1:57415 127.0.0.1:57433 3331594537 12 feffffff8d3801007b380100 .....8..{8.. +5070 12.516990662 127.0.0.1:57415 127.0.0.1:57433 3331594549 12 22000000adbf0a0000000000 "........... +5072 12.517144918 127.0.0.1:57415 127.0.0.1:57433 3331594561 34 1e0000001c2118d0c46f33bb0100030000006100020000000000a01a0fc39d01 .....!...o3.......a............... +5074 12.517235518 127.0.0.1:57415 127.0.0.1:57433 3331594595 12 43000000aebf0a0000000000 C........... +5076 12.517319918 127.0.0.1:57415 127.0.0.1:57433 3331594607 67 3f000000980433cb0cb47c38010003000000010000000061000200000000003d ?.....3...|8...........a.......=B.....&......... +5078 12.517548561 127.0.0.1:57433 127.0.0.1:57415 375915356 12 ffffffffadbf0a0000000000 ............ +5080 12.517739058 127.0.0.1:57433 127.0.0.1:57415 375915368 12 ffffffffaebf0a0000000000 ............ +5082 12.518508911 127.0.0.1:57433 127.0.0.1:57415 375915380 12 340000006a9e0a0000000000 4...j....... +5083 12.518550396 127.0.0.1:57415 127.0.0.1:57433 3331594674 12 1a000000afbf0a0000000000 ............ +5086 12.518711090 127.0.0.1:57415 127.0.0.1:57433 3331594686 26 16000000548f6340e25e314001000300000063081f0000000000 ....T.c@.^1@......c....... +5087 12.518745661 127.0.0.1:57433 127.0.0.1:57415 375915392 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....a.........C..q +5090 12.519024372 127.0.0.1:57415 127.0.0.1:57433 3331594712 12 ffffffff6a9e0a0000000000 ....j....... +5091 12.519166231 127.0.0.1:57433 127.0.0.1:57415 375915444 12 ffffffffafbf0a0000000000 ............ +5092 12.519431591 127.0.0.1:57433 127.0.0.1:57415 375915456 12 160000006b9e0a0000000000 ....k....... +5094 12.519621611 127.0.0.1:57433 127.0.0.1:57415 375915468 22 1200000063081f000000000001000300000000000000 ....c................. +5096 12.519762278 127.0.0.1:57415 127.0.0.1:57433 3331594724 12 1e000000b0bf0a0000000000 ............ +5098 12.519905806 127.0.0.1:57415 127.0.0.1:57433 3331594736 30 1a00000055ceff62b21b3a5001000300000065081f000000000000000000 ....U..b..:P......e........... +5100 12.520190477 127.0.0.1:57415 127.0.0.1:57433 3331594766 12 ffffffff6b9e0a0000000000 ....k....... +5101 12.520231247 127.0.0.1:57433 127.0.0.1:57415 375915490 12 ffffffffb0bf0a0000000000 ............ +5104 12.520583153 127.0.0.1:57433 127.0.0.1:57415 375915502 12 1a0000006c9e0a0000000000 ....l....... +5106 12.520728350 127.0.0.1:57433 127.0.0.1:57415 375915514 26 1600000065081f00000000000100030000000000000000000000 ....e..................... +5108 12.520959377 127.0.0.1:57415 127.0.0.1:57433 3331594778 12 ffffffff6c9e0a0000000000 ....l....... +5115 12.621351004 127.0.0.1:57415 127.0.0.1:57433 3331594790 12 1a000000b1bf0a0000000000 ............ +5117 12.621529341 127.0.0.1:57415 127.0.0.1:57433 3331594802 26 16000000548f6340e25e314001000300000067081f0000000000 ....T.c@.^1@......g....... +5119 12.621914625 127.0.0.1:57433 127.0.0.1:57415 375915540 12 ffffffffb1bf0a0000000000 ............ +5121 12.622253418 127.0.0.1:57433 127.0.0.1:57415 375915552 12 160000006d9e0a0000000000 ....m....... +5123 12.622411966 127.0.0.1:57433 127.0.0.1:57415 375915564 22 1200000067081f000000000001000300000000000000 ....g................. +5125 12.622853994 127.0.0.1:57415 127.0.0.1:57433 3331594828 12 ffffffff6d9e0a0000000000 ....m....... +5128 12.724227190 127.0.0.1:57415 127.0.0.1:57433 3331594840 12 1a000000b2bf0a0000000000 ............ +5130 12.724400282 127.0.0.1:57415 127.0.0.1:57433 3331594852 26 16000000548f6340e25e314001000300000069081f0000000000 ....T.c@.^1@......i....... +5132 12.724898338 127.0.0.1:57433 127.0.0.1:57415 375915586 12 ffffffffb2bf0a0000000000 ............ +5134 12.725392342 127.0.0.1:57433 127.0.0.1:57415 375915598 12 160000006e9e0a0000000000 ....n....... +5136 12.725626230 127.0.0.1:57433 127.0.0.1:57415 375915610 22 1200000069081f000000000001000300000000000000 ....i................. +5138 12.725911617 127.0.0.1:57415 127.0.0.1:57433 3331594878 12 ffffffff6e9e0a0000000000 ....n....... +5145 12.821789503 127.0.0.1:57415 127.0.0.1:57433 3331594890 12 65000000b3bf0a0000000000 e........... +5147 12.821943760 127.0.0.1:57415 127.0.0.1:57433 3331594902 101 1e0000001c2118d0c46f33bb0100030000006200020000000000d11b0fc39d01 .....!...o3.......b...............?.....3...|8.. +5149 12.822575569 127.0.0.1:57433 127.0.0.1:57415 375915632 12 ffffffffb3bf0a0000000000 ............ +5151 12.823815107 127.0.0.1:57433 127.0.0.1:57415 375915644 12 340000006f9e0a0000000000 4...o....... +5153 12.823974609 127.0.0.1:57433 127.0.0.1:57415 375915656 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....b..........-.q +5155 12.824425459 127.0.0.1:57415 127.0.0.1:57433 3331595003 12 ffffffff6f9e0a0000000000 ....o....... +5157 12.824957848 127.0.0.1:57415 127.0.0.1:57433 3331595015 12 1e000000b4bf0a0000000000 ............ +5159 12.825122595 127.0.0.1:57415 127.0.0.1:57433 3331595027 30 1a00000055ceff62b21b3a500100030000006b081f000000000000000000 ....U..b..:P......k........... +5161 12.825409651 127.0.0.1:57433 127.0.0.1:57415 375915708 12 ffffffffb4bf0a0000000000 ............ +5163 12.825797558 127.0.0.1:57433 127.0.0.1:57415 375915720 12 1a000000709e0a0000000000 ....p....... +5165 12.825944662 127.0.0.1:57433 127.0.0.1:57415 375915732 26 160000006b081f00000000000100030000000000000000000000 ....k..................... +5167 12.826130629 127.0.0.1:57415 127.0.0.1:57433 3331595057 12 ffffffff709e0a0000000000 ....p....... +5169 12.827168703 127.0.0.1:57415 127.0.0.1:57433 3331595069 12 1a000000b5bf0a0000000000 ............ +5171 12.827313662 127.0.0.1:57415 127.0.0.1:57433 3331595081 26 16000000548f6340e25e31400100030000006d081f0000000000 ....T.c@.^1@......m....... +5173 12.827593565 127.0.0.1:57433 127.0.0.1:57415 375915758 12 ffffffffb5bf0a0000000000 ............ +5175 12.827948332 127.0.0.1:57433 127.0.0.1:57415 375915770 12 16000000719e0a0000000000 ....q....... +5177 12.828076839 127.0.0.1:57433 127.0.0.1:57415 375915782 22 120000006d081f000000000001000300000000000000 ....m................. +5179 12.828306675 127.0.0.1:57415 127.0.0.1:57433 3331595107 12 ffffffff719e0a0000000000 ....q....... +5183 12.846332788 127.0.0.1:57433 127.0.0.1:57415 375915804 12 feffffff7c3801008d380100 ....|8...8.. +5193 12.929675102 127.0.0.1:57415 127.0.0.1:57433 3331595119 12 1a000000b6bf0a0000000000 ............ +5195 12.929837942 127.0.0.1:57415 127.0.0.1:57433 3331595131 26 16000000548f6340e25e31400100030000006f081f0000000000 ....T.c@.^1@......o....... +5197 12.930149078 127.0.0.1:57433 127.0.0.1:57415 375915816 12 ffffffffb6bf0a0000000000 ............ +5199 12.930667877 127.0.0.1:57433 127.0.0.1:57415 375915828 12 16000000729e0a0000000000 ....r....... +5201 12.930811882 127.0.0.1:57433 127.0.0.1:57415 375915840 22 120000006f081f000000000001000300000000000000 ....o................. +5203 12.931127787 127.0.0.1:57415 127.0.0.1:57433 3331595157 12 ffffffff729e0a0000000000 ....r....... +5205 12.961280107 127.0.0.1:57415 127.0.0.1:57433 3331595169 12 feffffff8e3801007c380100 .....8..|8.. +5211 13.032334566 127.0.0.1:57415 127.0.0.1:57433 3331595181 12 1a000000b7bf0a0000000000 ............ +5214 13.032498837 127.0.0.1:57415 127.0.0.1:57433 3331595193 26 16000000548f6340e25e314001000300000071081f0000000000 ....T.c@.^1@......q....... +5217 13.032814026 127.0.0.1:57433 127.0.0.1:57415 375915862 12 ffffffffb7bf0a0000000000 ............ +5219 13.033328533 127.0.0.1:57433 127.0.0.1:57415 375915874 12 16000000739e0a0000000000 ....s....... +5221 13.033486605 127.0.0.1:57433 127.0.0.1:57415 375915886 22 1200000071081f000000000001000300000000000000 ....q................. +5223 13.033752918 127.0.0.1:57415 127.0.0.1:57433 3331595219 12 ffffffff739e0a0000000000 ....s....... +5227 13.126144648 127.0.0.1:57415 127.0.0.1:57433 3331595231 12 22000000b8bf0a0000000000 "........... +5229 13.126369476 127.0.0.1:57415 127.0.0.1:57433 3331595243 34 1e0000001c2118d0c46f33bb0100030000006300020000000000011d0fc39d01 .....!...o3.......c............... +5231 13.126463413 127.0.0.1:57415 127.0.0.1:57433 3331595277 12 43000000b9bf0a0000000000 C........... +5233 13.126549244 127.0.0.1:57415 127.0.0.1:57433 3331595289 67 3f000000980433cb0cb47c38010003000000010000000063000200000000003d ?.....3...|8...........c.......=B.....&......... +5235 13.126935720 127.0.0.1:57433 127.0.0.1:57415 375915908 12 ffffffffb8bf0a0000000000 ............ +5237 13.127174139 127.0.0.1:57433 127.0.0.1:57415 375915920 12 ffffffffb9bf0a0000000000 ............ +5239 13.128139019 127.0.0.1:57433 127.0.0.1:57415 375915932 12 34000000749e0a0000000000 4...t....... +5241 13.128347158 127.0.0.1:57433 127.0.0.1:57415 375915944 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....c............q +5243 13.128616810 127.0.0.1:57415 127.0.0.1:57433 3331595356 12 ffffffff749e0a0000000000 ....t....... +5245 13.129436016 127.0.0.1:57415 127.0.0.1:57433 3331595368 12 1e000000babf0a0000000000 ............ +5247 13.129588127 127.0.0.1:57415 127.0.0.1:57433 3331595380 30 1a00000055ceff62b21b3a5001000300000073081f000000000000000000 ....U..b..:P......s........... +5249 13.129845858 127.0.0.1:57433 127.0.0.1:57415 375915996 12 ffffffffbabf0a0000000000 ............ +5251 13.130248547 127.0.0.1:57433 127.0.0.1:57415 375916008 12 1a000000759e0a0000000000 ....u....... +5253 13.130459309 127.0.0.1:57433 127.0.0.1:57415 375916020 26 1600000073081f00000000000100030000000000000000000000 ....s..................... +5255 13.130629063 127.0.0.1:57415 127.0.0.1:57433 3331595410 12 ffffffff759e0a0000000000 ....u....... +5257 13.135907412 127.0.0.1:57415 127.0.0.1:57433 3331595422 12 1a000000bbbf0a0000000000 ............ +5259 13.136059761 127.0.0.1:57415 127.0.0.1:57433 3331595434 26 16000000548f6340e25e314001000300000075081f0000000000 ....T.c@.^1@......u....... +5261 13.136267424 127.0.0.1:57433 127.0.0.1:57415 375916046 12 ffffffffbbbf0a0000000000 ............ +5263 13.136739016 127.0.0.1:57433 127.0.0.1:57415 375916058 12 16000000769e0a0000000000 ....v....... +5265 13.136938095 127.0.0.1:57433 127.0.0.1:57415 375916070 22 1200000075081f000000000001000300000000000000 ....u................. +5267 13.137323618 127.0.0.1:57415 127.0.0.1:57433 3331595460 12 ffffffff769e0a0000000000 ....v....... +5269 13.238462210 127.0.0.1:57415 127.0.0.1:57433 3331595472 12 1a000000bcbf0a0000000000 ............ +5271 13.238666296 127.0.0.1:57415 127.0.0.1:57433 3331595484 26 16000000548f6340e25e314001000300000077081f0000000000 ....T.c@.^1@......w....... +5273 13.239019394 127.0.0.1:57433 127.0.0.1:57415 375916092 12 ffffffffbcbf0a0000000000 ............ +5275 13.239436626 127.0.0.1:57433 127.0.0.1:57415 375916104 12 16000000779e0a0000000000 ....w....... +5277 13.239600658 127.0.0.1:57433 127.0.0.1:57415 375916116 22 1200000077081f000000000001000300000000000000 ....w................. +5279 13.239967585 127.0.0.1:57415 127.0.0.1:57433 3331595510 12 ffffffff779e0a0000000000 ....w....... +5283 13.342540979 127.0.0.1:57415 127.0.0.1:57433 3331595522 12 1a000000bdbf0a0000000000 ............ +5285 13.342842102 127.0.0.1:57415 127.0.0.1:57433 3331595534 26 16000000548f6340e25e314001000300000079081f0000000000 ....T.c@.^1@......y....... +5287 13.343187332 127.0.0.1:57433 127.0.0.1:57415 375916138 12 ffffffffbdbf0a0000000000 ............ +5289 13.343887329 127.0.0.1:57433 127.0.0.1:57415 375916150 12 16000000789e0a0000000000 ....x....... +5291 13.344220877 127.0.0.1:57433 127.0.0.1:57415 375916162 22 1200000079081f000000000001000300000000000000 ....y................. +5293 13.344510794 127.0.0.1:57415 127.0.0.1:57433 3331595560 12 ffffffff789e0a0000000000 ....x....... +5297 13.347423077 127.0.0.1:57433 127.0.0.1:57415 375916184 12 feffffff7d3801008e380100 ....}8...8.. +5307 13.431098700 127.0.0.1:57415 127.0.0.1:57433 3331595572 12 65000000bebf0a0000000000 e........... +5309 13.431297779 127.0.0.1:57415 127.0.0.1:57433 3331595584 101 1e0000001c2118d0c46f33bb0100030000006400020000000000321e0fc39d01 .....!...o3.......d.......2.......?.....3...|8.. +5311 13.431620598 127.0.0.1:57433 127.0.0.1:57415 375916196 12 ffffffffbebf0a0000000000 ............ +5313 13.433017015 127.0.0.1:57433 127.0.0.1:57415 375916208 12 34000000799e0a0000000000 4...y....... +5315 13.433213711 127.0.0.1:57433 127.0.0.1:57415 375916220 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....d..........".r +5317 13.433476210 127.0.0.1:57415 127.0.0.1:57433 3331595685 12 ffffffff799e0a0000000000 ....y....... +5319 13.434309006 127.0.0.1:57415 127.0.0.1:57433 3331595697 12 1e000000bfbf0a0000000000 ............ +5321 13.434441090 127.0.0.1:57415 127.0.0.1:57433 3331595709 30 1a00000055ceff62b21b3a500100030000007b081f000000000000000000 ....U..b..:P......{........... +5323 13.434804916 127.0.0.1:57433 127.0.0.1:57415 375916272 12 ffffffffbfbf0a0000000000 ............ +5325 13.435358524 127.0.0.1:57433 127.0.0.1:57415 375916284 12 1a0000007a9e0a0000000000 ....z....... +5327 13.435518503 127.0.0.1:57433 127.0.0.1:57415 375916296 26 160000007b081f00000000000100030000000000000000000000 ....{..................... +5329 13.435744047 127.0.0.1:57415 127.0.0.1:57433 3331595739 12 ffffffff7a9e0a0000000000 ....z....... +5331 13.447457314 127.0.0.1:57415 127.0.0.1:57433 3331595751 12 1a000000c0bf0a0000000000 ............ +5333 13.447620392 127.0.0.1:57415 127.0.0.1:57433 3331595763 26 16000000548f6340e25e31400100030000007d081f0000000000 ....T.c@.^1@......}....... +5335 13.447926521 127.0.0.1:57433 127.0.0.1:57415 375916322 12 ffffffffc0bf0a0000000000 ............ +5337 13.448402166 127.0.0.1:57433 127.0.0.1:57415 375916334 12 160000007b9e0a0000000000 ....{....... +5339 13.448565483 127.0.0.1:57433 127.0.0.1:57415 375916346 22 120000007d081f000000000001000300000000000000 ....}................. +5341 13.448819399 127.0.0.1:57415 127.0.0.1:57433 3331595789 12 ffffffff7b9e0a0000000000 ....{....... +5343 13.463159561 127.0.0.1:57415 127.0.0.1:57433 3331595801 12 feffffff8f3801007d380100 .....8..}8.. +5353 13.551492453 127.0.0.1:57415 127.0.0.1:57433 3331595813 12 1a000000c1bf0a0000000000 ............ +5355 13.551656961 127.0.0.1:57415 127.0.0.1:57433 3331595825 26 16000000548f6340e25e31400100030000007f081f0000000000 ....T.c@.^1@.............. +5357 13.551979065 127.0.0.1:57433 127.0.0.1:57415 375916368 12 ffffffffc1bf0a0000000000 ............ +5359 13.552389383 127.0.0.1:57433 127.0.0.1:57415 375916380 12 160000007c9e0a0000000000 ....|....... +5361 13.552548170 127.0.0.1:57433 127.0.0.1:57415 375916392 22 120000007f081f000000000001000300000000000000 ...................... +5363 13.552821636 127.0.0.1:57415 127.0.0.1:57433 3331595851 12 ffffffff7c9e0a0000000000 ....|....... +5365 13.654562950 127.0.0.1:57415 127.0.0.1:57433 3331595863 12 1a000000c2bf0a0000000000 ............ +5367 13.654740810 127.0.0.1:57415 127.0.0.1:57433 3331595875 26 16000000548f6340e25e314001000300000081081f0000000000 ....T.c@.^1@.............. +5369 13.655260324 127.0.0.1:57433 127.0.0.1:57415 375916414 12 ffffffffc2bf0a0000000000 ............ +5371 13.655559540 127.0.0.1:57433 127.0.0.1:57415 375916426 12 160000007d9e0a0000000000 ....}....... +5373 13.655723095 127.0.0.1:57433 127.0.0.1:57415 375916438 22 1200000081081f000000000001000300000000000000 ...................... +5375 13.656077147 127.0.0.1:57415 127.0.0.1:57433 3331595901 12 ffffffff7d9e0a0000000000 ....}....... +5377 13.735796928 127.0.0.1:57415 127.0.0.1:57433 3331595913 12 22000000c3bf0a0000000000 "........... +5379 13.735997915 127.0.0.1:57415 127.0.0.1:57433 3331595925 34 1e0000001c2118d0c46f33bb0100030000006500020000000000631f0fc39d01 .....!...o3.......e.......c....... +5381 13.736101627 127.0.0.1:57415 127.0.0.1:57433 3331595959 12 43000000c4bf0a0000000000 C........... +5383 13.736186981 127.0.0.1:57415 127.0.0.1:57433 3331595971 67 3f000000980433cb0cb47c38010003000000010000000065000200000000003d ?.....3...|8...........e.......=B.....&......... +5385 13.736427307 127.0.0.1:57433 127.0.0.1:57415 375916460 12 ffffffffc3bf0a0000000000 ............ +5387 13.736628056 127.0.0.1:57433 127.0.0.1:57415 375916472 12 ffffffffc4bf0a0000000000 ............ +5389 13.737405539 127.0.0.1:57433 127.0.0.1:57415 375916484 12 340000007e9e0a0000000000 4...~....... +5391 13.737562656 127.0.0.1:57433 127.0.0.1:57415 375916496 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....e.........6.Mr +5393 13.737771511 127.0.0.1:57415 127.0.0.1:57433 3331596038 12 ffffffff7e9e0a0000000000 ....~....... +5395 13.738524914 127.0.0.1:57415 127.0.0.1:57433 3331596050 12 1e000000c5bf0a0000000000 ............ +5397 13.738669872 127.0.0.1:57415 127.0.0.1:57433 3331596062 30 1a00000055ceff62b21b3a5001000300000083081f000000000000000000 ....U..b..:P.................. +5399 13.739016056 127.0.0.1:57433 127.0.0.1:57415 375916548 12 ffffffffc5bf0a0000000000 ............ +5401 13.739541054 127.0.0.1:57433 127.0.0.1:57415 375916560 12 1a0000007f9e0a0000000000 ............ +5403 13.739678621 127.0.0.1:57433 127.0.0.1:57415 375916572 26 1600000083081f00000000000100030000000000000000000000 .......................... +5405 13.739856958 127.0.0.1:57415 127.0.0.1:57433 3331596092 12 ffffffff7f9e0a0000000000 ............ +5420 13.757453680 127.0.0.1:57415 127.0.0.1:57433 3331596104 12 1a000000c6bf0a0000000000 ............ +5422 13.757617474 127.0.0.1:57415 127.0.0.1:57433 3331596116 26 16000000548f6340e25e314001000300000085081f0000000000 ....T.c@.^1@.............. +5424 13.757916927 127.0.0.1:57433 127.0.0.1:57415 375916598 12 ffffffffc6bf0a0000000000 ............ +5429 13.758288383 127.0.0.1:57433 127.0.0.1:57415 375916610 12 16000000809e0a0000000000 ............ +5431 13.758435726 127.0.0.1:57433 127.0.0.1:57415 375916622 22 1200000085081f000000000001000300000000000000 ...................... +5435 13.758680820 127.0.0.1:57415 127.0.0.1:57433 3331596142 12 ffffffff809e0a0000000000 ............ +5453 13.847978115 127.0.0.1:57433 127.0.0.1:57415 375916644 12 feffffff7e3801008f380100 ....~8...8.. +5459 13.860040903 127.0.0.1:57415 127.0.0.1:57433 3331596154 12 1a000000c7bf0a0000000000 ............ +5461 13.860210419 127.0.0.1:57415 127.0.0.1:57433 3331596166 26 16000000548f6340e25e314001000300000087081f0000000000 ....T.c@.^1@.............. +5463 13.860574484 127.0.0.1:57433 127.0.0.1:57415 375916656 12 ffffffffc7bf0a0000000000 ............ +5465 13.860974550 127.0.0.1:57433 127.0.0.1:57415 375916668 12 16000000819e0a0000000000 ............ +5467 13.861133814 127.0.0.1:57433 127.0.0.1:57415 375916680 22 1200000087081f000000000001000300000000000000 ...................... +5469 13.861407518 127.0.0.1:57415 127.0.0.1:57433 3331596192 12 ffffffff819e0a0000000000 ............ +5479 13.963901758 127.0.0.1:57415 127.0.0.1:57433 3331596204 12 feffffff903801007e380100 .....8..~8.. +5483 13.964113712 127.0.0.1:57415 127.0.0.1:57433 3331596216 12 1a000000c8bf0a0000000000 ............ +5485 13.964281797 127.0.0.1:57415 127.0.0.1:57433 3331596228 26 16000000548f6340e25e314001000300000089081f0000000000 ....T.c@.^1@.............. +5487 13.964669228 127.0.0.1:57433 127.0.0.1:57415 375916702 12 ffffffffc8bf0a0000000000 ............ +5489 13.965179920 127.0.0.1:57433 127.0.0.1:57415 375916714 12 16000000829e0a0000000000 ............ +5491 13.965389490 127.0.0.1:57433 127.0.0.1:57415 375916726 22 1200000089081f000000000001000300000000000000 ...................... +5493 13.965686798 127.0.0.1:57415 127.0.0.1:57433 3331596254 12 ffffffff829e0a0000000000 ............ +5499 14.039184809 127.0.0.1:57415 127.0.0.1:57433 3331596266 12 22000000c9bf0a0000000000 "........... +5501 14.039447069 127.0.0.1:57415 127.0.0.1:57433 3331596278 34 1e0000001c2118d0c46f33bb010003000000660002000000000092200fc39d01 .....!...o3.......f........ ...... +5503 14.039565563 127.0.0.1:57415 127.0.0.1:57433 3331596312 12 43000000cabf0a0000000000 C........... +5505 14.039661169 127.0.0.1:57415 127.0.0.1:57433 3331596324 67 3f000000980433cb0cb47c38010003000000010000000066000200000000003d ?.....3...|8...........f.......=B.....&......... +5506 14.039740562 127.0.0.1:57433 127.0.0.1:57415 375916748 12 ffffffffc9bf0a0000000000 ............ +5507 14.039835930 127.0.0.1:57433 127.0.0.1:57415 375916760 12 ffffffffcabf0a0000000000 ............ +5510 14.041131496 127.0.0.1:57433 127.0.0.1:57415 375916772 12 34000000839e0a0000000000 4........... +5512 14.041308165 127.0.0.1:57433 127.0.0.1:57415 375916784 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....f...........{r +5514 14.041582823 127.0.0.1:57415 127.0.0.1:57433 3331596391 12 ffffffff839e0a0000000000 ............ +5515 14.042425156 127.0.0.1:57415 127.0.0.1:57433 3331596403 12 1e000000cbbf0a0000000000 ............ +5516 14.042581081 127.0.0.1:57415 127.0.0.1:57433 3331596415 30 1a00000055ceff62b21b3a500100030000008b081f000000000000000000 ....U..b..:P.................. +5517 14.042986393 127.0.0.1:57433 127.0.0.1:57415 375916836 12 ffffffffcbbf0a0000000000 ............ +5519 14.043882847 127.0.0.1:57433 127.0.0.1:57415 375916848 12 1a000000849e0a0000000000 ............ +5521 14.044072628 127.0.0.1:57433 127.0.0.1:57415 375916860 26 160000008b081f00000000000100030000000000000000000000 .......................... +5523 14.044330835 127.0.0.1:57415 127.0.0.1:57433 3331596445 12 ffffffff849e0a0000000000 ............ +5546 14.066474915 127.0.0.1:57415 127.0.0.1:57433 3331596457 12 1a000000ccbf0a0000000000 ............ +5548 14.066635609 127.0.0.1:57415 127.0.0.1:57433 3331596469 26 16000000548f6340e25e31400100030000008d081f0000000000 ....T.c@.^1@.............. +5550 14.066920280 127.0.0.1:57433 127.0.0.1:57415 375916886 12 ffffffffccbf0a0000000000 ............ +5552 14.067369223 127.0.0.1:57433 127.0.0.1:57415 375916898 12 16000000859e0a0000000000 ............ +5554 14.067531347 127.0.0.1:57433 127.0.0.1:57415 375916910 22 120000008d081f000000000001000300000000000000 ...................... +5556 14.067802429 127.0.0.1:57415 127.0.0.1:57433 3331596495 12 ffffffff859e0a0000000000 ............ +5609 14.168899298 127.0.0.1:57415 127.0.0.1:57433 3331596507 12 1a000000cdbf0a0000000000 ............ +5611 14.169091940 127.0.0.1:57415 127.0.0.1:57433 3331596519 26 16000000548f6340e25e31400100030000008f081f0000000000 ....T.c@.^1@.............. +5613 14.169582605 127.0.0.1:57433 127.0.0.1:57415 375916932 12 ffffffffcdbf0a0000000000 ............ +5615 14.169960499 127.0.0.1:57433 127.0.0.1:57415 375916944 12 16000000869e0a0000000000 ............ +5617 14.170117855 127.0.0.1:57433 127.0.0.1:57415 375916956 22 120000008f081f000000000001000300000000000000 ...................... +5619 14.170413017 127.0.0.1:57415 127.0.0.1:57433 3331596545 12 ffffffff869e0a0000000000 ............ +5653 14.272956848 127.0.0.1:57415 127.0.0.1:57433 3331596557 12 1a000000cebf0a0000000000 ............ +5655 14.273122072 127.0.0.1:57415 127.0.0.1:57433 3331596569 26 16000000548f6340e25e314001000300000091081f0000000000 ....T.c@.^1@.............. +5657 14.273497581 127.0.0.1:57433 127.0.0.1:57415 375916978 12 ffffffffcebf0a0000000000 ............ +5659 14.274557590 127.0.0.1:57433 127.0.0.1:57415 375916990 12 16000000879e0a0000000000 ............ +5661 14.274717331 127.0.0.1:57433 127.0.0.1:57415 375917002 22 1200000091081f000000000001000300000000000000 ...................... +5663 14.274968863 127.0.0.1:57415 127.0.0.1:57433 3331596595 12 ffffffff879e0a0000000000 ............ +5665 14.344563484 127.0.0.1:57415 127.0.0.1:57433 3331596607 12 65000000cfbf0a0000000000 e........... +5667 14.344758987 127.0.0.1:57415 127.0.0.1:57433 3331596619 101 1e0000001c2118d0c46f33bb0100030000006700020000000000c3210fc39d01 .....!...o3.......g........!......?.....3...|8.. +5669 14.345126152 127.0.0.1:57433 127.0.0.1:57415 375917024 12 ffffffffcfbf0a0000000000 ............ +5672 14.346198797 127.0.0.1:57433 127.0.0.1:57415 375917036 12 34000000889e0a0000000000 4........... +5675 14.346408606 127.0.0.1:57433 127.0.0.1:57415 375917048 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....g.........9z.r +5677 14.346628666 127.0.0.1:57415 127.0.0.1:57433 3331596720 12 ffffffff889e0a0000000000 ............ +5679 14.347355843 127.0.0.1:57415 127.0.0.1:57433 3331596732 12 1e000000d0bf0a0000000000 ............ +5681 14.347495317 127.0.0.1:57415 127.0.0.1:57433 3331596744 30 1a00000055ceff62b21b3a5001000300000093081f000000000000000000 ....U..b..:P.................. +5683 14.347779989 127.0.0.1:57433 127.0.0.1:57415 375917100 12 ffffffffd0bf0a0000000000 ............ +5685 14.348019600 127.0.0.1:57433 127.0.0.1:57415 375917112 12 feffffff7f38010090380100 .....8...8.. +5691 14.348830700 127.0.0.1:57433 127.0.0.1:57415 375917124 12 1a000000899e0a0000000000 ............ +5693 14.348989487 127.0.0.1:57433 127.0.0.1:57415 375917136 26 1600000093081f00000000000100030000000000000000000000 .......................... +5695 14.349318027 127.0.0.1:57415 127.0.0.1:57433 3331596774 12 ffffffff899e0a0000000000 ............ +5708 14.375865221 127.0.0.1:57415 127.0.0.1:57433 3331596786 12 1a000000d1bf0a0000000000 ............ +5711 14.376035452 127.0.0.1:57415 127.0.0.1:57433 3331596798 26 16000000548f6340e25e314001000300000095081f0000000000 ....T.c@.^1@.............. +5715 14.376427650 127.0.0.1:57433 127.0.0.1:57415 375917162 12 ffffffffd1bf0a0000000000 ............ +5717 14.376801729 127.0.0.1:57433 127.0.0.1:57415 375917174 12 160000008a9e0a0000000000 ............ +5721 14.376964569 127.0.0.1:57433 127.0.0.1:57415 375917186 22 1200000095081f000000000001000300000000000000 ...................... +5723 14.377256393 127.0.0.1:57415 127.0.0.1:57433 3331596824 12 ffffffff8a9e0a0000000000 ............ +5750 14.465757132 127.0.0.1:57415 127.0.0.1:57433 3331596836 12 feffffff913801007f380100 .....8...8.. +5753 14.478839636 127.0.0.1:57415 127.0.0.1:57433 3331596848 12 1a000000d2bf0a0000000000 ............ +5755 14.478999615 127.0.0.1:57415 127.0.0.1:57433 3331596860 26 16000000548f6340e25e314001000300000097081f0000000000 ....T.c@.^1@.............. +5757 14.479440689 127.0.0.1:57433 127.0.0.1:57415 375917208 12 ffffffffd2bf0a0000000000 ............ +5759 14.479826927 127.0.0.1:57433 127.0.0.1:57415 375917220 12 160000008b9e0a0000000000 ............ +5761 14.480540991 127.0.0.1:57433 127.0.0.1:57415 375917232 22 1200000097081f000000000001000300000000000000 ...................... +5763 14.480824232 127.0.0.1:57415 127.0.0.1:57433 3331596886 12 ffffffff8b9e0a0000000000 ............ +5771 14.582011223 127.0.0.1:57415 127.0.0.1:57433 3331596898 12 1a000000d3bf0a0000000000 ............ +5773 14.582207918 127.0.0.1:57415 127.0.0.1:57433 3331596910 26 16000000548f6340e25e314001000300000099081f0000000000 ....T.c@.^1@.............. +5775 14.582605124 127.0.0.1:57433 127.0.0.1:57415 375917254 12 ffffffffd3bf0a0000000000 ............ +5777 14.583194256 127.0.0.1:57433 127.0.0.1:57415 375917266 12 160000008c9e0a0000000000 ............ +5779 14.583417177 127.0.0.1:57433 127.0.0.1:57415 375917278 22 1200000099081f000000000001000300000000000000 ...................... +5781 14.583756208 127.0.0.1:57415 127.0.0.1:57433 3331596936 12 ffffffff8c9e0a0000000000 ............ +5783 14.648716450 127.0.0.1:57415 127.0.0.1:57433 3331596948 12 65000000d4bf0a0000000000 e........... +5785 14.648901224 127.0.0.1:57415 127.0.0.1:57433 3331596960 101 1e0000001c2118d0c46f33bb0100030000006800020000000000f4220fc39d01 .....!...o3.......h........"......?.....3...|8.. +5787 14.649312973 127.0.0.1:57433 127.0.0.1:57415 375917300 12 ffffffffd4bf0a0000000000 ............ +5789 14.651300669 127.0.0.1:57433 127.0.0.1:57415 375917312 12 340000008d9e0a0000000000 4........... +5791 14.651460409 127.0.0.1:57433 127.0.0.1:57415 375917324 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....h............r +5793 14.651679277 127.0.0.1:57415 127.0.0.1:57433 3331597061 12 ffffffff8d9e0a0000000000 ............ +5795 14.652546644 127.0.0.1:57415 127.0.0.1:57433 3331597073 12 1e000000d5bf0a0000000000 ............ +5797 14.652797461 127.0.0.1:57415 127.0.0.1:57433 3331597085 30 1a00000055ceff62b21b3a500100030000009b081f000000000000000000 ....U..b..:P.................. +5799 14.653049231 127.0.0.1:57433 127.0.0.1:57415 375917376 12 ffffffffd5bf0a0000000000 ............ +5801 14.653474092 127.0.0.1:57433 127.0.0.1:57415 375917388 12 1a0000008e9e0a0000000000 ............ +5803 14.653646946 127.0.0.1:57433 127.0.0.1:57415 375917400 26 160000009b081f00000000000100030000000000000000000000 .......................... +5805 14.653879881 127.0.0.1:57415 127.0.0.1:57433 3331597115 12 ffffffff8e9e0a0000000000 ............ +5807 14.686395407 127.0.0.1:57415 127.0.0.1:57433 3331597127 12 1a000000d6bf0a0000000000 ............ +5809 14.686577082 127.0.0.1:57415 127.0.0.1:57433 3331597139 26 16000000548f6340e25e31400100030000009d081f0000000000 ....T.c@.^1@.............. +5811 14.686943531 127.0.0.1:57433 127.0.0.1:57415 375917426 12 ffffffffd6bf0a0000000000 ............ +5813 14.687361002 127.0.0.1:57433 127.0.0.1:57415 375917438 12 160000008f9e0a0000000000 ............ +5815 14.687514782 127.0.0.1:57433 127.0.0.1:57415 375917450 22 120000009d081f000000000001000300000000000000 ...................... +5817 14.687810183 127.0.0.1:57415 127.0.0.1:57433 3331597165 12 ffffffff8f9e0a0000000000 ............ +5821 14.790482283 127.0.0.1:57415 127.0.0.1:57433 3331597177 12 1a000000d7bf0a0000000000 ............ +5823 14.790722132 127.0.0.1:57415 127.0.0.1:57433 3331597189 26 16000000548f6340e25e31400100030000009f081f0000000000 ....T.c@.^1@.............. +5825 14.791549206 127.0.0.1:57433 127.0.0.1:57415 375917472 12 ffffffffd7bf0a0000000000 ............ +5827 14.792384386 127.0.0.1:57433 127.0.0.1:57415 375917484 12 16000000909e0a0000000000 ............ +5829 14.792544603 127.0.0.1:57433 127.0.0.1:57415 375917496 22 120000009f081f000000000001000300000000000000 ...................... +5831 14.793054819 127.0.0.1:57415 127.0.0.1:57433 3331597215 12 ffffffff909e0a0000000000 ............ +5835 14.849383116 127.0.0.1:57433 127.0.0.1:57415 375917518 12 feffffff8038010091380100 .....8...8.. +5841 14.894223928 127.0.0.1:57415 127.0.0.1:57433 3331597227 12 1a000000d8bf0a0000000000 ............ +5843 14.894436359 127.0.0.1:57415 127.0.0.1:57433 3331597239 26 16000000548f6340e25e3140010003000000a1081f0000000000 ....T.c@.^1@.............. +5845 14.894801617 127.0.0.1:57433 127.0.0.1:57415 375917530 12 ffffffffd8bf0a0000000000 ............ +5847 14.895197630 127.0.0.1:57433 127.0.0.1:57415 375917542 12 16000000919e0a0000000000 ............ +5849 14.895353079 127.0.0.1:57433 127.0.0.1:57415 375917554 22 12000000a1081f000000000001000300000000000000 ...................... +5851 14.895775795 127.0.0.1:57415 127.0.0.1:57433 3331597265 12 ffffffff919e0a0000000000 ............ +5857 14.953314543 127.0.0.1:57415 127.0.0.1:57433 3331597277 12 22000000d9bf0a0000000000 "........... +5859 14.953514576 127.0.0.1:57415 127.0.0.1:57433 3331597289 34 1e0000001c2118d0c46f33bb010003000000690002000000000024240fc39d01 .....!...o3.......i.......$$...... +5861 14.953604937 127.0.0.1:57415 127.0.0.1:57433 3331597323 12 43000000dabf0a0000000000 C........... +5863 14.953687429 127.0.0.1:57415 127.0.0.1:57433 3331597335 67 3f000000980433cb0cb47c38010003000000010000000069000200000000003d ?.....3...|8...........i.......=B.....&......... +5865 14.953934193 127.0.0.1:57433 127.0.0.1:57415 375917576 12 ffffffffd9bf0a0000000000 ............ +5867 14.954131365 127.0.0.1:57433 127.0.0.1:57415 375917588 12 ffffffffdabf0a0000000000 ............ +5869 14.954853296 127.0.0.1:57433 127.0.0.1:57415 375917600 12 34000000929e0a0000000000 4........... +5871 14.954998255 127.0.0.1:57433 127.0.0.1:57415 375917612 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....i.........JY.s +5873 14.955359697 127.0.0.1:57415 127.0.0.1:57433 3331597402 12 ffffffff929e0a0000000000 ............ +5875 14.956105709 127.0.0.1:57415 127.0.0.1:57433 3331597414 12 1e000000dbbf0a0000000000 ............ +5877 14.956244707 127.0.0.1:57415 127.0.0.1:57433 3331597426 30 1a00000055ceff62b21b3a50010003000000a3081f000000000000000000 ....U..b..:P.................. +5879 14.956462145 127.0.0.1:57433 127.0.0.1:57415 375917664 12 ffffffffdbbf0a0000000000 ............ +5881 14.956952572 127.0.0.1:57433 127.0.0.1:57415 375917676 12 1a000000939e0a0000000000 ............ +5883 14.957161188 127.0.0.1:57433 127.0.0.1:57415 375917688 26 16000000a3081f00000000000100030000000000000000000000 .......................... +5885 14.957515478 127.0.0.1:57415 127.0.0.1:57433 3331597456 12 ffffffff939e0a0000000000 ............ +5888 14.966780901 127.0.0.1:57415 127.0.0.1:57433 3331597468 12 feffffff9238010080380100 .....8...8.. +5893 14.997444391 127.0.0.1:57415 127.0.0.1:57433 3331597480 12 1a000000dcbf0a0000000000 ............ +5895 14.997640848 127.0.0.1:57415 127.0.0.1:57433 3331597492 26 16000000548f6340e25e3140010003000000a5081f0000000000 ....T.c@.^1@.............. +5897 14.998160362 127.0.0.1:57433 127.0.0.1:57415 375917714 12 ffffffffdcbf0a0000000000 ............ +5899 14.998646498 127.0.0.1:57433 127.0.0.1:57415 375917726 12 16000000949e0a0000000000 ............ +5901 14.998866320 127.0.0.1:57433 127.0.0.1:57415 375917738 22 12000000a5081f000000000001000300000000000000 ...................... +5903 14.999139786 127.0.0.1:57415 127.0.0.1:57433 3331597518 12 ffffffff949e0a0000000000 ............ +5909 15.102054596 127.0.0.1:57415 127.0.0.1:57433 3331597530 12 1a000000ddbf0a0000000000 ............ +5911 15.102296829 127.0.0.1:57415 127.0.0.1:57433 3331597542 26 16000000548f6340e25e3140010003000000a7081f0000000000 ....T.c@.^1@.............. +5913 15.102767229 127.0.0.1:57433 127.0.0.1:57415 375917760 12 ffffffffddbf0a0000000000 ............ +5915 15.103454113 127.0.0.1:57433 127.0.0.1:57415 375917772 12 16000000959e0a0000000000 ............ +5917 15.103618145 127.0.0.1:57433 127.0.0.1:57415 375917784 22 12000000a7081f000000000001000300000000000000 ...................... +5919 15.103905916 127.0.0.1:57415 127.0.0.1:57433 3331597568 12 ffffffff959e0a0000000000 ............ +5921 15.204889297 127.0.0.1:57415 127.0.0.1:57433 3331597580 12 1a000000debf0a0000000000 ............ +5923 15.205096006 127.0.0.1:57415 127.0.0.1:57433 3331597592 26 16000000548f6340e25e3140010003000000a9081f0000000000 ....T.c@.^1@.............. +5925 15.205513954 127.0.0.1:57433 127.0.0.1:57415 375917806 12 ffffffffdebf0a0000000000 ............ +5927 15.206053495 127.0.0.1:57433 127.0.0.1:57415 375917818 12 16000000969e0a0000000000 ............ +5929 15.206209898 127.0.0.1:57433 127.0.0.1:57415 375917830 22 12000000a9081f000000000001000300000000000000 ...................... +5931 15.206509590 127.0.0.1:57415 127.0.0.1:57433 3331597618 12 ffffffff969e0a0000000000 ............ +5935 15.258374929 127.0.0.1:57415 127.0.0.1:57433 3331597630 12 65000000dfbf0a0000000000 e........... +5937 15.258550882 127.0.0.1:57415 127.0.0.1:57433 3331597642 101 1e0000001c2118d0c46f33bb0100030000006a0002000000000055250fc39d01 .....!...o3.......j.......U%......?.....3...|8.. +5939 15.258819342 127.0.0.1:57433 127.0.0.1:57415 375917852 12 ffffffffdfbf0a0000000000 ............ +5941 15.259702206 127.0.0.1:57433 127.0.0.1:57415 375917864 12 34000000979e0a0000000000 4........... +5943 15.259864330 127.0.0.1:57433 127.0.0.1:57415 375917876 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....j...........5s +5945 15.260215521 127.0.0.1:57415 127.0.0.1:57433 3331597743 12 ffffffff979e0a0000000000 ............ +5947 15.261016369 127.0.0.1:57415 127.0.0.1:57433 3331597755 12 1e000000e0bf0a0000000000 ............ +5949 15.261174202 127.0.0.1:57415 127.0.0.1:57433 3331597767 30 1a00000055ceff62b21b3a50010003000000ab081f000000000000000000 ....U..b..:P.................. +5951 15.261427402 127.0.0.1:57433 127.0.0.1:57415 375917928 12 ffffffffe0bf0a0000000000 ............ +5953 15.261903763 127.0.0.1:57433 127.0.0.1:57415 375917940 12 1a000000989e0a0000000000 ............ +5955 15.262043715 127.0.0.1:57433 127.0.0.1:57415 375917952 26 16000000ab081f00000000000100030000000000000000000000 .......................... +5957 15.262325525 127.0.0.1:57415 127.0.0.1:57433 3331597797 12 ffffffff989e0a0000000000 ............ +5959 15.307500839 127.0.0.1:57415 127.0.0.1:57433 3331597809 12 1a000000e1bf0a0000000000 ............ +5961 15.307680130 127.0.0.1:57415 127.0.0.1:57433 3331597821 26 16000000548f6340e25e3140010003000000ad081f0000000000 ....T.c@.^1@.............. +5963 15.308105230 127.0.0.1:57433 127.0.0.1:57415 375917978 12 ffffffffe1bf0a0000000000 ............ +5965 15.308757782 127.0.0.1:57433 127.0.0.1:57415 375917990 12 16000000999e0a0000000000 ............ +5967 15.308948517 127.0.0.1:57433 127.0.0.1:57415 375918002 22 12000000ad081f000000000001000300000000000000 ...................... +5969 15.309311628 127.0.0.1:57415 127.0.0.1:57433 3331597847 12 ffffffff999e0a0000000000 ............ +5973 15.350424528 127.0.0.1:57433 127.0.0.1:57415 375918024 12 feffffff8138010092380100 .....8...8.. +5979 15.410500526 127.0.0.1:57415 127.0.0.1:57433 3331597859 12 1a000000e2bf0a0000000000 ............ +5981 15.410728931 127.0.0.1:57415 127.0.0.1:57433 3331597871 26 16000000548f6340e25e3140010003000000af081f0000000000 ....T.c@.^1@.............. +5983 15.411100626 127.0.0.1:57433 127.0.0.1:57415 375918036 12 ffffffffe2bf0a0000000000 ............ +5985 15.411610365 127.0.0.1:57433 127.0.0.1:57415 375918048 12 160000009a9e0a0000000000 ............ +5987 15.411778927 127.0.0.1:57433 127.0.0.1:57415 375918060 22 12000000af081f000000000001000300000000000000 ...................... +5989 15.412094116 127.0.0.1:57415 127.0.0.1:57433 3331597897 12 ffffffff9a9e0a0000000000 ............ +5995 15.469126940 127.0.0.1:57415 127.0.0.1:57433 3331597909 12 feffffff9338010081380100 .....8...8.. +6002 15.514291048 127.0.0.1:57415 127.0.0.1:57433 3331597921 12 1a000000e3bf0a0000000000 ............ +6004 15.514453888 127.0.0.1:57415 127.0.0.1:57433 3331597933 26 16000000548f6340e25e3140010003000000b1081f0000000000 ....T.c@.^1@.............. +6006 15.514878273 127.0.0.1:57433 127.0.0.1:57415 375918082 12 ffffffffe3bf0a0000000000 ............ +6008 15.516246080 127.0.0.1:57433 127.0.0.1:57415 375918094 12 160000009b9e0a0000000000 ............ +6010 15.516406775 127.0.0.1:57433 127.0.0.1:57415 375918106 22 12000000b1081f000000000001000300000000000000 ...................... +6012 15.516719341 127.0.0.1:57415 127.0.0.1:57433 3331597959 12 ffffffff9b9e0a0000000000 ............ +6018 15.562807083 127.0.0.1:57415 127.0.0.1:57433 3331597971 12 65000000e4bf0a0000000000 e........... +6020 15.562994003 127.0.0.1:57415 127.0.0.1:57433 3331597983 101 1e0000001c2118d0c46f33bb0100030000006b0002000000000086260fc39d01 .....!...o3.......k........&......?.....3...|8.. +6022 15.563383102 127.0.0.1:57433 127.0.0.1:57415 375918128 12 ffffffffe4bf0a0000000000 ............ +6024 15.564121246 127.0.0.1:57433 127.0.0.1:57415 375918140 12 340000009c9e0a0000000000 4........... +6026 15.564287663 127.0.0.1:57433 127.0.0.1:57415 375918152 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....k..........Qds +6028 15.564637184 127.0.0.1:57415 127.0.0.1:57433 3331598084 12 ffffffff9c9e0a0000000000 ............ +6030 15.565437794 127.0.0.1:57415 127.0.0.1:57433 3331598096 12 1e000000e5bf0a0000000000 ............ +6032 15.565600872 127.0.0.1:57415 127.0.0.1:57433 3331598108 30 1a00000055ceff62b21b3a50010003000000b3081f000000000000000000 ....U..b..:P.................. +6034 15.565945864 127.0.0.1:57433 127.0.0.1:57415 375918204 12 ffffffffe5bf0a0000000000 ............ +6036 15.566298723 127.0.0.1:57433 127.0.0.1:57415 375918216 12 1a0000009d9e0a0000000000 ............ +6038 15.566456318 127.0.0.1:57433 127.0.0.1:57415 375918228 26 16000000b3081f00000000000100030000000000000000000000 .......................... +6040 15.566657305 127.0.0.1:57415 127.0.0.1:57433 3331598138 12 ffffffff9d9e0a0000000000 ............ +6043 15.619463444 127.0.0.1:57415 127.0.0.1:57433 3331598150 12 1a000000e6bf0a0000000000 ............ +6045 15.619642496 127.0.0.1:57415 127.0.0.1:57433 3331598162 26 16000000548f6340e25e3140010003000000b5081f0000000000 ....T.c@.^1@.............. +6047 15.620041132 127.0.0.1:57433 127.0.0.1:57415 375918254 12 ffffffffe6bf0a0000000000 ............ +6049 15.620476723 127.0.0.1:57433 127.0.0.1:57415 375918266 12 160000009e9e0a0000000000 ............ +6051 15.620631695 127.0.0.1:57433 127.0.0.1:57415 375918278 22 12000000b5081f000000000001000300000000000000 ...................... +6053 15.620977402 127.0.0.1:57415 127.0.0.1:57433 3331598188 12 ffffffff9e9e0a0000000000 ............ +6056 15.721902370 127.0.0.1:57415 127.0.0.1:57433 3331598200 12 1a000000e7bf0a0000000000 ............ +6058 15.722067595 127.0.0.1:57415 127.0.0.1:57433 3331598212 26 16000000548f6340e25e3140010003000000b7081f0000000000 ....T.c@.^1@.............. +6060 15.722393513 127.0.0.1:57433 127.0.0.1:57415 375918300 12 ffffffffe7bf0a0000000000 ............ +6062 15.723180294 127.0.0.1:57433 127.0.0.1:57415 375918312 12 160000009f9e0a0000000000 ............ +6064 15.723339796 127.0.0.1:57433 127.0.0.1:57415 375918324 22 12000000b7081f000000000001000300000000000000 ...................... +6066 15.723603010 127.0.0.1:57415 127.0.0.1:57433 3331598238 12 ffffffff9f9e0a0000000000 ............ +6071 15.826524019 127.0.0.1:57415 127.0.0.1:57433 3331598250 12 1a000000e8bf0a0000000000 ............ +6073 15.826705217 127.0.0.1:57415 127.0.0.1:57433 3331598262 26 16000000548f6340e25e3140010003000000b9081f0000000000 ....T.c@.^1@.............. +6075 15.827168465 127.0.0.1:57433 127.0.0.1:57415 375918346 12 ffffffffe8bf0a0000000000 ............ +6077 15.827682257 127.0.0.1:57433 127.0.0.1:57415 375918358 12 16000000a09e0a0000000000 ............ +6079 15.827912331 127.0.0.1:57433 127.0.0.1:57415 375918370 22 12000000b9081f000000000001000300000000000000 ...................... +6081 15.828179598 127.0.0.1:57415 127.0.0.1:57433 3331598288 12 ffffffffa09e0a0000000000 ............ +6085 15.850392818 127.0.0.1:57433 127.0.0.1:57415 375918392 12 feffffff8238010093380100 .....8...8.. +6091 15.866858482 127.0.0.1:57415 127.0.0.1:57433 3331598300 12 22000000e9bf0a0000000000 "........... +6093 15.867016315 127.0.0.1:57415 127.0.0.1:57433 3331598312 34 1e0000001c2118d0c46f33bb0100030000006c00020000000000b6270fc39d01 .....!...o3.......l........'...... +6095 15.867168188 127.0.0.1:57415 127.0.0.1:57433 3331598346 12 43000000eabf0a0000000000 C........... +6097 15.867372990 127.0.0.1:57415 127.0.0.1:57433 3331598358 67 3f000000980433cb0cb47c3801000300000001000000006c000200000000003d ?.....3...|8...........l.......=B.....&......... +6098 15.867381573 127.0.0.1:57433 127.0.0.1:57415 375918404 12 ffffffffe9bf0a0000000000 ............ +6101 15.867650747 127.0.0.1:57433 127.0.0.1:57415 375918416 12 ffffffffeabf0a0000000000 ............ +6103 15.868451118 127.0.0.1:57433 127.0.0.1:57415 375918428 12 34000000a19e0a0000000000 4........... +6105 15.868619442 127.0.0.1:57433 127.0.0.1:57415 375918440 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....l............s +6107 15.868967295 127.0.0.1:57415 127.0.0.1:57433 3331598425 12 ffffffffa19e0a0000000000 ............ +6108 15.869820595 127.0.0.1:57415 127.0.0.1:57433 3331598437 12 1e000000ebbf0a0000000000 ............ +6110 15.869952917 127.0.0.1:57415 127.0.0.1:57433 3331598449 30 1a00000055ceff62b21b3a50010003000000bb081f000000000000000000 ....U..b..:P.................. +6112 15.870356798 127.0.0.1:57433 127.0.0.1:57415 375918492 12 ffffffffebbf0a0000000000 ............ +6114 15.870689154 127.0.0.1:57433 127.0.0.1:57415 375918504 12 1a000000a29e0a0000000000 ............ +6116 15.870906115 127.0.0.1:57433 127.0.0.1:57415 375918516 26 16000000bb081f00000000000100030000000000000000000000 .......................... +6118 15.871161938 127.0.0.1:57415 127.0.0.1:57433 3331598479 12 ffffffffa29e0a0000000000 ............ +6122 15.930357695 127.0.0.1:57415 127.0.0.1:57433 3331598491 12 1a000000ecbf0a0000000000 ............ +6124 15.930532455 127.0.0.1:57415 127.0.0.1:57433 3331598503 26 16000000548f6340e25e3140010003000000bd081f0000000000 ....T.c@.^1@.............. +6126 15.930822134 127.0.0.1:57433 127.0.0.1:57415 375918542 12 ffffffffecbf0a0000000000 ............ +6130 15.931660414 127.0.0.1:57433 127.0.0.1:57415 375918554 12 16000000a39e0a0000000000 ............ +6132 15.931919575 127.0.0.1:57433 127.0.0.1:57415 375918566 22 12000000bd081f000000000001000300000000000000 ...................... +6134 15.932201147 127.0.0.1:57415 127.0.0.1:57433 3331598529 12 ffffffffa39e0a0000000000 ............ +6137 15.970098257 127.0.0.1:57415 127.0.0.1:57433 3331598541 12 feffffff9438010082380100 .....8...8.. +6145 16.033192635 127.0.0.1:57415 127.0.0.1:57433 3331598553 12 1a000000edbf0a0000000000 ............ +6147 16.033388138 127.0.0.1:57415 127.0.0.1:57433 3331598565 26 16000000548f6340e25e3140010003000000bf081f0000000000 ....T.c@.^1@.............. +6149 16.033763170 127.0.0.1:57433 127.0.0.1:57415 375918588 12 ffffffffedbf0a0000000000 ............ +6151 16.034283161 127.0.0.1:57433 127.0.0.1:57415 375918600 12 16000000a49e0a0000000000 ............ +6153 16.034428596 127.0.0.1:57433 127.0.0.1:57415 375918612 22 12000000bf081f000000000001000300000000000000 ...................... +6155 16.034671783 127.0.0.1:57415 127.0.0.1:57433 3331598591 12 ffffffffa49e0a0000000000 ............ +6162 16.135837078 127.0.0.1:57415 127.0.0.1:57433 3331598603 12 1a000000eebf0a0000000000 ............ +6164 16.136004210 127.0.0.1:57415 127.0.0.1:57433 3331598615 26 16000000548f6340e25e3140010003000000c1081f0000000000 ....T.c@.^1@.............. +6166 16.136377335 127.0.0.1:57433 127.0.0.1:57415 375918634 12 ffffffffeebf0a0000000000 ............ +6168 16.136928320 127.0.0.1:57433 127.0.0.1:57415 375918646 12 16000000a59e0a0000000000 ............ +6170 16.137091160 127.0.0.1:57433 127.0.0.1:57415 375918658 22 12000000c1081f000000000001000300000000000000 ...................... +6172 16.137388468 127.0.0.1:57415 127.0.0.1:57433 3331598641 12 ffffffffa59e0a0000000000 ............ +6175 16.171160936 127.0.0.1:57415 127.0.0.1:57433 3331598653 12 65000000efbf0a0000000000 e........... +6177 16.171304226 127.0.0.1:57415 127.0.0.1:57433 3331598665 101 1e0000001c2118d0c46f33bb0100030000006d00020000000000e6280fc39d01 .....!...o3.......m........(......?.....3...|8.. +6179 16.171627522 127.0.0.1:57433 127.0.0.1:57415 375918680 12 ffffffffefbf0a0000000000 ............ +6181 16.172860622 127.0.0.1:57433 127.0.0.1:57415 375918692 12 34000000a69e0a0000000000 4........... +6183 16.173019648 127.0.0.1:57433 127.0.0.1:57415 375918704 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....m.........&2.s +6185 16.173276424 127.0.0.1:57415 127.0.0.1:57433 3331598766 12 ffffffffa69e0a0000000000 ............ +6187 16.174048901 127.0.0.1:57415 127.0.0.1:57433 3331598778 12 1e000000f0bf0a0000000000 ............ +6189 16.174221039 127.0.0.1:57415 127.0.0.1:57433 3331598790 30 1a00000055ceff62b21b3a50010003000000c3081f000000000000000000 ....U..b..:P.................. +6191 16.174503803 127.0.0.1:57433 127.0.0.1:57415 375918756 12 fffffffff0bf0a0000000000 ............ +6193 16.174925089 127.0.0.1:57433 127.0.0.1:57415 375918768 12 1a000000a79e0a0000000000 ............ +6195 16.175091267 127.0.0.1:57433 127.0.0.1:57415 375918780 26 16000000c3081f00000000000100030000000000000000000000 .......................... +6197 16.175397635 127.0.0.1:57415 127.0.0.1:57433 3331598820 12 ffffffffa79e0a0000000000 ............ +6210 16.238626480 127.0.0.1:57415 127.0.0.1:57433 3331598832 12 1a000000f1bf0a0000000000 ............ +6212 16.238789797 127.0.0.1:57415 127.0.0.1:57433 3331598844 26 16000000548f6340e25e3140010003000000c5081f0000000000 ....T.c@.^1@.............. +6214 16.239200592 127.0.0.1:57433 127.0.0.1:57415 375918806 12 fffffffff1bf0a0000000000 ............ +6219 16.239651680 127.0.0.1:57433 127.0.0.1:57415 375918818 12 16000000a89e0a0000000000 ............ +6222 16.239809752 127.0.0.1:57433 127.0.0.1:57415 375918830 22 12000000c5081f000000000001000300000000000000 ...................... +6225 16.240077972 127.0.0.1:57415 127.0.0.1:57433 3331598870 12 ffffffffa89e0a0000000000 ............ +6244 16.341295481 127.0.0.1:57415 127.0.0.1:57433 3331598882 12 1a000000f2bf0a0000000000 ............ +6246 16.341478348 127.0.0.1:57415 127.0.0.1:57433 3331598894 26 16000000548f6340e25e3140010003000000c7081f0000000000 ....T.c@.^1@.............. +6248 16.341963530 127.0.0.1:57433 127.0.0.1:57415 375918852 12 fffffffff2bf0a0000000000 ............ +6250 16.342404604 127.0.0.1:57433 127.0.0.1:57415 375918864 12 16000000a99e0a0000000000 ............ +6252 16.342565536 127.0.0.1:57433 127.0.0.1:57415 375918876 22 12000000c7081f000000000001000300000000000000 ...................... +6254 16.342882395 127.0.0.1:57415 127.0.0.1:57433 3331598920 12 ffffffffa99e0a0000000000 ............ +6258 16.351068497 127.0.0.1:57433 127.0.0.1:57415 375918898 12 feffffff8338010094380100 .....8...8.. +6269 16.444815636 127.0.0.1:57415 127.0.0.1:57433 3331598932 12 1a000000f3bf0a0000000000 ............ +6271 16.445052385 127.0.0.1:57415 127.0.0.1:57433 3331598944 26 16000000548f6340e25e3140010003000000c9081f0000000000 ....T.c@.^1@.............. +6273 16.446207047 127.0.0.1:57433 127.0.0.1:57415 375918910 12 fffffffff3bf0a0000000000 ............ +6275 16.446542978 127.0.0.1:57433 127.0.0.1:57415 375918922 12 16000000aa9e0a0000000000 ............ +6277 16.446736097 127.0.0.1:57433 127.0.0.1:57415 375918934 22 12000000c9081f000000000001000300000000000000 ...................... +6279 16.447031498 127.0.0.1:57415 127.0.0.1:57433 3331598970 12 ffffffffaa9e0a0000000000 ............ +6281 16.470854521 127.0.0.1:57415 127.0.0.1:57433 3331598982 12 feffffff9538010083380100 .....8...8.. +6285 16.476489067 127.0.0.1:57415 127.0.0.1:57433 3331598994 12 65000000f4bf0a0000000000 e........... +6287 16.476637363 127.0.0.1:57415 127.0.0.1:57433 3331599006 101 1e0000001c2118d0c46f33bb0100030000006e00020000000000172a0fc39d01 .....!...o3.......n........*......?.....3...|8.. +6289 16.476961136 127.0.0.1:57433 127.0.0.1:57415 375918956 12 fffffffff4bf0a0000000000 ............ +6291 16.477985144 127.0.0.1:57433 127.0.0.1:57415 375918968 12 34000000ab9e0a0000000000 4........... +6293 16.478145123 127.0.0.1:57433 127.0.0.1:57415 375918980 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....n............s +6295 16.478400707 127.0.0.1:57415 127.0.0.1:57433 3331599107 12 ffffffffab9e0a0000000000 ............ +6297 16.479165792 127.0.0.1:57415 127.0.0.1:57433 3331599119 12 1e000000f5bf0a0000000000 ............ +6299 16.479310751 127.0.0.1:57415 127.0.0.1:57433 3331599131 30 1a00000055ceff62b21b3a50010003000000cb081f000000000000000000 ....U..b..:P.................. +6301 16.480274916 127.0.0.1:57433 127.0.0.1:57415 375919032 12 fffffffff5bf0a0000000000 ............ +6303 16.480876923 127.0.0.1:57433 127.0.0.1:57415 375919044 12 1a000000ac9e0a0000000000 ............ +6305 16.481118441 127.0.0.1:57433 127.0.0.1:57415 375919056 26 16000000cb081f00000000000100030000000000000000000000 .......................... +6308 16.481485128 127.0.0.1:57415 127.0.0.1:57433 3331599161 12 ffffffffac9e0a0000000000 ............ +6314 16.548977375 127.0.0.1:57415 127.0.0.1:57433 3331599173 12 1a000000f6bf0a0000000000 ............ +6316 16.549145699 127.0.0.1:57415 127.0.0.1:57433 3331599185 26 16000000548f6340e25e3140010003000000cd081f0000000000 ....T.c@.^1@.............. +6318 16.549504042 127.0.0.1:57433 127.0.0.1:57415 375919082 12 fffffffff6bf0a0000000000 ............ +6320 16.550012827 127.0.0.1:57433 127.0.0.1:57415 375919094 12 16000000ad9e0a0000000000 ............ +6322 16.550180912 127.0.0.1:57433 127.0.0.1:57415 375919106 22 12000000cd081f000000000001000300000000000000 ...................... +6324 16.550534725 127.0.0.1:57415 127.0.0.1:57433 3331599211 12 ffffffffad9e0a0000000000 ............ +6329 16.651936293 127.0.0.1:57415 127.0.0.1:57433 3331599223 12 1a000000f7bf0a0000000000 ............ +6331 16.652183056 127.0.0.1:57415 127.0.0.1:57433 3331599235 26 16000000548f6340e25e3140010003000000cf081f0000000000 ....T.c@.^1@.............. +6333 16.652523994 127.0.0.1:57433 127.0.0.1:57415 375919128 12 fffffffff7bf0a0000000000 ............ +6335 16.653188944 127.0.0.1:57433 127.0.0.1:57415 375919140 12 16000000ae9e0a0000000000 ............ +6337 16.653376341 127.0.0.1:57433 127.0.0.1:57415 375919152 22 12000000cf081f000000000001000300000000000000 ...................... +6339 16.653759718 127.0.0.1:57415 127.0.0.1:57433 3331599261 12 ffffffffae9e0a0000000000 ............ +6344 16.754621506 127.0.0.1:57415 127.0.0.1:57433 3331599273 12 1a000000f8bf0a0000000000 ............ +6346 16.754795790 127.0.0.1:57415 127.0.0.1:57433 3331599285 26 16000000548f6340e25e3140010003000000d1081f0000000000 ....T.c@.^1@.............. +6348 16.755137444 127.0.0.1:57433 127.0.0.1:57415 375919174 12 fffffffff8bf0a0000000000 ............ +6350 16.755748987 127.0.0.1:57433 127.0.0.1:57415 375919186 12 16000000af9e0a0000000000 ............ +6352 16.755958080 127.0.0.1:57433 127.0.0.1:57415 375919198 22 12000000d1081f000000000001000300000000000000 ...................... +6354 16.756303549 127.0.0.1:57415 127.0.0.1:57433 3331599311 12 ffffffffaf9e0a0000000000 ............ +6358 16.779844999 127.0.0.1:57415 127.0.0.1:57433 3331599323 12 65000000f9bf0a0000000000 e........... +6360 16.780051947 127.0.0.1:57415 127.0.0.1:57433 3331599335 101 1e0000001c2118d0c46f33bb0100030000006f00020000000000472b0fc39d01 .....!...o3.......o.......G+......?.....3...|8.. +6362 16.780385971 127.0.0.1:57433 127.0.0.1:57415 375919220 12 fffffffff9bf0a0000000000 ............ +6364 16.781082630 127.0.0.1:57433 127.0.0.1:57415 375919232 12 34000000b09e0a0000000000 4........... +6366 16.781247139 127.0.0.1:57433 127.0.0.1:57415 375919244 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....o.........K..t +6368 16.781502485 127.0.0.1:57415 127.0.0.1:57433 3331599436 12 ffffffffb09e0a0000000000 ............ +6370 16.782228470 127.0.0.1:57415 127.0.0.1:57433 3331599448 12 1e000000fabf0a0000000000 ............ +6372 16.782392502 127.0.0.1:57415 127.0.0.1:57433 3331599460 30 1a00000055ceff62b21b3a50010003000000d3081f000000000000000000 ....U..b..:P.................. +6374 16.782669544 127.0.0.1:57433 127.0.0.1:57415 375919296 12 fffffffffabf0a0000000000 ............ +6376 16.783008814 127.0.0.1:57433 127.0.0.1:57415 375919308 12 1a000000b19e0a0000000000 ............ +6378 16.783148766 127.0.0.1:57433 127.0.0.1:57415 375919320 26 16000000d3081f00000000000100030000000000000000000000 .......................... +6380 16.783390045 127.0.0.1:57415 127.0.0.1:57433 3331599490 12 ffffffffb19e0a0000000000 ............ +6384 16.851751804 127.0.0.1:57433 127.0.0.1:57415 375919346 12 feffffff8438010095380100 .....8...8.. +6390 16.858795881 127.0.0.1:57415 127.0.0.1:57433 3331599502 12 1a000000fbbf0a0000000000 ............ +6392 16.858984709 127.0.0.1:57415 127.0.0.1:57433 3331599514 26 16000000548f6340e25e3140010003000000d5081f0000000000 ....T.c@.^1@.............. +6394 16.859340668 127.0.0.1:57433 127.0.0.1:57415 375919358 12 fffffffffbbf0a0000000000 ............ +6396 16.859825134 127.0.0.1:57433 127.0.0.1:57415 375919370 12 16000000b29e0a0000000000 ............ +6398 16.859992027 127.0.0.1:57433 127.0.0.1:57415 375919382 22 12000000d5081f000000000001000300000000000000 ...................... +6400 16.860389233 127.0.0.1:57415 127.0.0.1:57433 3331599540 12 ffffffffb29e0a0000000000 ............ +6406 16.962117195 127.0.0.1:57415 127.0.0.1:57433 3331599552 12 1a000000fcbf0a0000000000 ............ +6408 16.962290525 127.0.0.1:57415 127.0.0.1:57433 3331599564 26 16000000548f6340e25e3140010003000000d7081f0000000000 ....T.c@.^1@.............. +6410 16.962736130 127.0.0.1:57433 127.0.0.1:57415 375919404 12 fffffffffcbf0a0000000000 ............ +6412 16.963442087 127.0.0.1:57433 127.0.0.1:57415 375919416 12 16000000b39e0a0000000000 ............ +6414 16.963761330 127.0.0.1:57433 127.0.0.1:57415 375919428 22 12000000d7081f000000000001000300000000000000 ...................... +6416 16.964103460 127.0.0.1:57415 127.0.0.1:57433 3331599590 12 ffffffffb39e0a0000000000 ............ +6418 16.971816301 127.0.0.1:57415 127.0.0.1:57433 3331599602 12 feffffff9638010084380100 .....8...8.. +6428 17.066097498 127.0.0.1:57415 127.0.0.1:57433 3331599614 12 1a000000fdbf0a0000000000 ............ +6430 17.066304684 127.0.0.1:57415 127.0.0.1:57433 3331599626 26 16000000548f6340e25e3140010003000000d9081f0000000000 ....T.c@.^1@.............. +6432 17.066715956 127.0.0.1:57433 127.0.0.1:57415 375919450 12 fffffffffdbf0a0000000000 ............ +6434 17.067219734 127.0.0.1:57433 127.0.0.1:57415 375919462 12 16000000b49e0a0000000000 ............ +6436 17.067423820 127.0.0.1:57433 127.0.0.1:57415 375919474 22 12000000d9081f000000000001000300000000000000 ...................... +6438 17.067745924 127.0.0.1:57415 127.0.0.1:57433 3331599652 12 ffffffffb49e0a0000000000 ............ +6440 17.084104538 127.0.0.1:57415 127.0.0.1:57433 3331599664 12 22000000febf0a0000000000 "........... +6442 17.084326506 127.0.0.1:57415 127.0.0.1:57433 3331599676 34 1e0000001c2118d0c46f33bb0100030000007000020000000000772c0fc39d01 .....!...o3.......p.......w,...... +6444 17.084530830 127.0.0.1:57415 127.0.0.1:57433 3331599710 12 43000000ffbf0a0000000000 C........... +6446 17.084641933 127.0.0.1:57415 127.0.0.1:57433 3331599722 67 3f000000980433cb0cb47c38010003000000010000000070000200000000003d ?.....3...|8...........p.......=B.....&......... +6447 17.084651947 127.0.0.1:57433 127.0.0.1:57415 375919496 12 fffffffffebf0a0000000000 ............ +6450 17.084868908 127.0.0.1:57433 127.0.0.1:57415 375919508 12 ffffffffffbf0a0000000000 ............ +6452 17.085940838 127.0.0.1:57433 127.0.0.1:57415 375919520 12 34000000b59e0a0000000000 4........... +6454 17.086082697 127.0.0.1:57433 127.0.0.1:57415 375919532 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....p...........Lt +6456 17.086314678 127.0.0.1:57415 127.0.0.1:57433 3331599789 12 ffffffffb59e0a0000000000 ............ +6457 17.087040901 127.0.0.1:57415 127.0.0.1:57433 3331599801 12 1e00000000c00a0000000000 ............ +6459 17.087182283 127.0.0.1:57415 127.0.0.1:57433 3331599813 30 1a00000055ceff62b21b3a50010003000000db081f000000000000000000 ....U..b..:P.................. +6461 17.087472200 127.0.0.1:57433 127.0.0.1:57415 375919584 12 ffffffff00c00a0000000000 ............ +6463 17.088043213 127.0.0.1:57433 127.0.0.1:57415 375919596 12 1a000000b69e0a0000000000 ............ +6465 17.088199139 127.0.0.1:57433 127.0.0.1:57415 375919608 26 16000000db081f00000000000100030000000000000000000000 .......................... +6467 17.088428736 127.0.0.1:57415 127.0.0.1:57433 3331599843 12 ffffffffb69e0a0000000000 ............ +6469 17.169230223 127.0.0.1:57415 127.0.0.1:57433 3331599855 12 1a00000001c00a0000000000 ............ +6471 17.169426203 127.0.0.1:57415 127.0.0.1:57433 3331599867 26 16000000548f6340e25e3140010003000000dd081f0000000000 ....T.c@.^1@.............. +6473 17.169792652 127.0.0.1:57433 127.0.0.1:57415 375919634 12 ffffffff01c00a0000000000 ............ +6475 17.170766830 127.0.0.1:57433 127.0.0.1:57415 375919646 12 16000000b79e0a0000000000 ............ +6477 17.171031237 127.0.0.1:57433 127.0.0.1:57415 375919658 22 12000000dd081f000000000001000300000000000000 ...................... +6479 17.171291351 127.0.0.1:57415 127.0.0.1:57433 3331599893 12 ffffffffb79e0a0000000000 ............ +6483 17.273917437 127.0.0.1:57415 127.0.0.1:57433 3331599905 12 1a00000002c00a0000000000 ............ +6485 17.274086237 127.0.0.1:57415 127.0.0.1:57433 3331599917 26 16000000548f6340e25e3140010003000000df081f0000000000 ....T.c@.^1@.............. +6487 17.274472237 127.0.0.1:57433 127.0.0.1:57415 375919680 12 ffffffff02c00a0000000000 ............ +6489 17.274897337 127.0.0.1:57433 127.0.0.1:57415 375919692 12 16000000b89e0a0000000000 ............ +6491 17.275060177 127.0.0.1:57433 127.0.0.1:57415 375919704 22 12000000df081f000000000001000300000000000000 ...................... +6493 17.275271893 127.0.0.1:57415 127.0.0.1:57433 3331599943 12 ffffffffb89e0a0000000000 ............ +6497 17.352951765 127.0.0.1:57433 127.0.0.1:57415 375919726 12 feffffff8538010096380100 .....8...8.. +6503 17.376966715 127.0.0.1:57415 127.0.0.1:57433 3331599955 12 1a00000003c00a0000000000 ............ +6505 17.377135277 127.0.0.1:57415 127.0.0.1:57433 3331599967 26 16000000548f6340e25e3140010003000000e1081f0000000000 ....T.c@.^1@.............. +6507 17.377528191 127.0.0.1:57433 127.0.0.1:57415 375919738 12 ffffffff03c00a0000000000 ............ +6509 17.377866983 127.0.0.1:57433 127.0.0.1:57415 375919750 12 16000000b99e0a0000000000 ............ +6511 17.378036022 127.0.0.1:57433 127.0.0.1:57415 375919762 22 12000000e1081f000000000001000300000000000000 ...................... +6513 17.378386497 127.0.0.1:57415 127.0.0.1:57433 3331599993 12 ffffffffb99e0a0000000000 ............ +6515 17.388408184 127.0.0.1:57415 127.0.0.1:57433 3331600005 12 2200000004c00a0000000000 "........... +6517 17.388618708 127.0.0.1:57415 127.0.0.1:57433 3331600017 34 1e0000001c2118d0c46f33bb0100030000007100020000000000a72d0fc39d01 .....!...o3.......q........-...... +6519 17.388759613 127.0.0.1:57415 127.0.0.1:57433 3331600051 12 4300000005c00a0000000000 C........... +6521 17.388847589 127.0.0.1:57415 127.0.0.1:57433 3331600063 67 3f000000980433cb0cb47c38010003000000010000000071000200000000003d ?.....3...|8...........q.......=B.....&......... +6523 17.388921499 127.0.0.1:57433 127.0.0.1:57415 375919784 12 ffffffff04c00a0000000000 ............ +6525 17.389081955 127.0.0.1:57433 127.0.0.1:57415 375919796 12 ffffffff05c00a0000000000 ............ +6527 17.389972925 127.0.0.1:57433 127.0.0.1:57415 375919808 12 34000000ba9e0a0000000000 4........... +6529 17.390132189 127.0.0.1:57433 127.0.0.1:57415 375919820 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....q...........zt +6531 17.390473127 127.0.0.1:57415 127.0.0.1:57433 3331600130 12 ffffffffba9e0a0000000000 ............ +6533 17.391448498 127.0.0.1:57415 127.0.0.1:57433 3331600142 12 1e00000006c00a0000000000 ............ +6535 17.391596794 127.0.0.1:57415 127.0.0.1:57433 3331600154 30 1a00000055ceff62b21b3a50010003000000e3081f000000000000000000 ....U..b..:P.................. +6537 17.391876459 127.0.0.1:57433 127.0.0.1:57415 375919872 12 ffffffff06c00a0000000000 ............ +6539 17.392331600 127.0.0.1:57433 127.0.0.1:57415 375919884 12 1a000000bb9e0a0000000000 ............ +6541 17.392556906 127.0.0.1:57433 127.0.0.1:57415 375919896 26 16000000e3081f00000000000100030000000000000000000000 .......................... +6543 17.392860174 127.0.0.1:57415 127.0.0.1:57433 3331600184 12 ffffffffbb9e0a0000000000 ............ +6550 17.474340916 127.0.0.1:57415 127.0.0.1:57433 3331600196 12 feffffff9738010085380100 .....8...8.. +6553 17.479380846 127.0.0.1:57415 127.0.0.1:57433 3331600208 12 1a00000007c00a0000000000 ............ +6555 17.479540586 127.0.0.1:57415 127.0.0.1:57433 3331600220 26 16000000548f6340e25e3140010003000000e5081f0000000000 ....T.c@.^1@.............. +6557 17.480372429 127.0.0.1:57433 127.0.0.1:57415 375919922 12 ffffffff07c00a0000000000 ............ +6559 17.480747461 127.0.0.1:57433 127.0.0.1:57415 375919934 12 16000000bc9e0a0000000000 ............ +6561 17.480919123 127.0.0.1:57433 127.0.0.1:57415 375919946 22 12000000e5081f000000000001000300000000000000 ...................... +6563 17.481178522 127.0.0.1:57415 127.0.0.1:57433 3331600246 12 ffffffffbc9e0a0000000000 ............ +6571 17.582132816 127.0.0.1:57415 127.0.0.1:57433 3331600258 12 1a00000008c00a0000000000 ............ +6573 17.582306147 127.0.0.1:57415 127.0.0.1:57433 3331600270 26 16000000548f6340e25e3140010003000000e7081f0000000000 ....T.c@.^1@.............. +6575 17.582753181 127.0.0.1:57433 127.0.0.1:57415 375919968 12 ffffffff08c00a0000000000 ............ +6577 17.583246946 127.0.0.1:57433 127.0.0.1:57415 375919980 12 16000000bd9e0a0000000000 ............ +6579 17.583440304 127.0.0.1:57433 127.0.0.1:57415 375919992 22 12000000e7081f000000000001000300000000000000 ...................... +6581 17.583781004 127.0.0.1:57415 127.0.0.1:57433 3331600296 12 ffffffffbd9e0a0000000000 ............ +6583 17.684645414 127.0.0.1:57415 127.0.0.1:57433 3331600308 12 1a00000009c00a0000000000 ............ +6585 17.684845209 127.0.0.1:57415 127.0.0.1:57433 3331600320 26 16000000548f6340e25e3140010003000000e9081f0000000000 ....T.c@.^1@.............. +6587 17.685321808 127.0.0.1:57433 127.0.0.1:57415 375920014 12 ffffffff09c00a0000000000 ............ +6589 17.685985565 127.0.0.1:57433 127.0.0.1:57415 375920026 12 16000000be9e0a0000000000 ............ +6591 17.686187983 127.0.0.1:57433 127.0.0.1:57415 375920038 22 12000000e9081f000000000001000300000000000000 ...................... +6593 17.686645269 127.0.0.1:57415 127.0.0.1:57433 3331600346 12 ffffffffbe9e0a0000000000 ............ +6595 17.692589045 127.0.0.1:57415 127.0.0.1:57433 3331600358 12 220000000ac00a0000000000 "........... +6597 17.692818403 127.0.0.1:57415 127.0.0.1:57433 3331600370 34 1e0000001c2118d0c46f33bb0100030000007200020000000000d82e0fc39d01 .....!...o3.......r............... +6599 17.692989349 127.0.0.1:57415 127.0.0.1:57433 3331600404 12 430000000bc00a0000000000 C........... +6601 17.693117857 127.0.0.1:57415 127.0.0.1:57433 3331600416 67 3f000000980433cb0cb47c38010003000000010000000072000200000000003d ?.....3...|8...........r.......=B.....&......... +6602 17.693239450 127.0.0.1:57433 127.0.0.1:57415 375920060 12 ffffffff0ac00a0000000000 ............ +6604 17.693495750 127.0.0.1:57433 127.0.0.1:57415 375920072 12 ffffffff0bc00a0000000000 ............ +6606 17.694506645 127.0.0.1:57433 127.0.0.1:57415 375920084 12 34000000bf9e0a0000000000 4........... +6608 17.694712877 127.0.0.1:57433 127.0.0.1:57415 375920096 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....r..........d.t +6610 17.694920778 127.0.0.1:57415 127.0.0.1:57433 3331600483 12 ffffffffbf9e0a0000000000 ............ +6612 17.695661306 127.0.0.1:57415 127.0.0.1:57433 3331600495 12 1e0000000cc00a0000000000 ............ +6614 17.695805788 127.0.0.1:57415 127.0.0.1:57433 3331600507 30 1a00000055ceff62b21b3a50010003000000eb081f000000000000000000 ....U..b..:P.................. +6616 17.696099997 127.0.0.1:57433 127.0.0.1:57415 375920148 12 ffffffff0cc00a0000000000 ............ +6618 17.696432114 127.0.0.1:57433 127.0.0.1:57415 375920160 12 1a000000c09e0a0000000000 ............ +6620 17.696593761 127.0.0.1:57433 127.0.0.1:57415 375920172 26 16000000eb081f00000000000100030000000000000000000000 .......................... +6622 17.696843147 127.0.0.1:57415 127.0.0.1:57433 3331600537 12 ffffffffc09e0a0000000000 ............ +6628 17.787871122 127.0.0.1:57415 127.0.0.1:57433 3331600549 12 1a0000000dc00a0000000000 ............ +6630 17.788029671 127.0.0.1:57415 127.0.0.1:57433 3331600561 26 16000000548f6340e25e3140010003000000ed081f0000000000 ....T.c@.^1@.............. +6632 17.788358927 127.0.0.1:57433 127.0.0.1:57415 375920198 12 ffffffff0dc00a0000000000 ............ +6634 17.788878918 127.0.0.1:57433 127.0.0.1:57415 375920210 12 16000000c19e0a0000000000 ............ +6636 17.789106607 127.0.0.1:57433 127.0.0.1:57415 375920222 22 12000000ed081f000000000001000300000000000000 ...................... +6638 17.789387941 127.0.0.1:57415 127.0.0.1:57433 3331600587 12 ffffffffc19e0a0000000000 ............ +6642 17.852781057 127.0.0.1:57433 127.0.0.1:57415 375920244 12 feffffff8638010097380100 .....8...8.. +6648 17.890660524 127.0.0.1:57415 127.0.0.1:57433 3331600599 12 1a0000000ec00a0000000000 ............ +6650 17.890835524 127.0.0.1:57415 127.0.0.1:57433 3331600611 26 16000000548f6340e25e3140010003000000ef081f0000000000 ....T.c@.^1@.............. +6652 17.891225100 127.0.0.1:57433 127.0.0.1:57415 375920256 12 ffffffff0ec00a0000000000 ............ +6654 17.891574383 127.0.0.1:57433 127.0.0.1:57415 375920268 12 16000000c29e0a0000000000 ............ +6656 17.891731501 127.0.0.1:57433 127.0.0.1:57415 375920280 22 12000000ef081f000000000001000300000000000000 ...................... +6658 17.892130136 127.0.0.1:57415 127.0.0.1:57433 3331600637 12 ffffffffc29e0a0000000000 ............ +6665 17.976258278 127.0.0.1:57415 127.0.0.1:57433 3331600649 12 feffffff9838010086380100 .....8...8.. +6668 17.994502068 127.0.0.1:57415 127.0.0.1:57433 3331600661 12 1a0000000fc00a0000000000 ............ +6670 17.994699478 127.0.0.1:57415 127.0.0.1:57433 3331600673 26 16000000548f6340e25e3140010003000000f1081f0000000000 ....T.c@.^1@.............. +6672 17.995105505 127.0.0.1:57433 127.0.0.1:57415 375920302 12 ffffffff0fc00a0000000000 ............ +6674 17.996127605 127.0.0.1:57433 127.0.0.1:57415 375920314 12 16000000c39e0a0000000000 ............ +6676 17.996332407 127.0.0.1:57433 127.0.0.1:57415 375920326 22 12000000f1081f000000000001000300000000000000 ...................... +6678 17.996658802 127.0.0.1:57415 127.0.0.1:57433 3331600699 12 ffffffffc39e0a0000000000 ............ +6680 17.997830153 127.0.0.1:57415 127.0.0.1:57433 3331600711 12 6500000010c00a0000000000 e........... +6682 17.998013735 127.0.0.1:57415 127.0.0.1:57433 3331600723 101 1e0000001c2118d0c46f33bb010003000000730002000000000009300fc39d01 .....!...o3.......s........0......?.....3...|8.. +6684 17.998261690 127.0.0.1:57433 127.0.0.1:57415 375920348 12 ffffffff10c00a0000000000 ............ +6686 17.999404192 127.0.0.1:57433 127.0.0.1:57415 375920360 12 34000000c49e0a0000000000 4........... +6688 17.999591827 127.0.0.1:57433 127.0.0.1:57415 375920372 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....s............t +6690 17.999895334 127.0.0.1:57415 127.0.0.1:57433 3331600824 12 ffffffffc49e0a0000000000 ............ +6692 18.000522614 127.0.0.1:57415 127.0.0.1:57433 3331600836 12 1e00000011c00a0000000000 ............ +6694 18.000659466 127.0.0.1:57415 127.0.0.1:57433 3331600848 30 1a00000055ceff62b21b3a50010003000000f3081f000000000000000000 ....U..b..:P.................. +6696 18.001056910 127.0.0.1:57433 127.0.0.1:57415 375920424 12 ffffffff11c00a0000000000 ............ +6698 18.001386642 127.0.0.1:57433 127.0.0.1:57415 375920436 12 1a000000c59e0a0000000000 ............ +6700 18.001563072 127.0.0.1:57433 127.0.0.1:57415 375920448 26 16000000f3081f00000000000100030000000000000000000000 .......................... +6702 18.001798153 127.0.0.1:57415 127.0.0.1:57433 3331600878 12 ffffffffc59e0a0000000000 ............ +6710 18.097956896 127.0.0.1:57415 127.0.0.1:57433 3331600890 12 1a00000012c00a0000000000 ............ +6712 18.098197222 127.0.0.1:57415 127.0.0.1:57433 3331600902 26 16000000548f6340e25e3140010003000000f5081f0000000000 ....T.c@.^1@.............. +6714 18.098612070 127.0.0.1:57433 127.0.0.1:57415 375920474 12 ffffffff12c00a0000000000 ............ +6716 18.099075317 127.0.0.1:57433 127.0.0.1:57415 375920486 12 16000000c69e0a0000000000 ............ +6718 18.099259377 127.0.0.1:57433 127.0.0.1:57415 375920498 22 12000000f5081f000000000001000300000000000000 ...................... +6720 18.099525928 127.0.0.1:57415 127.0.0.1:57433 3331600928 12 ffffffffc69e0a0000000000 ............ +6722 18.200907946 127.0.0.1:57415 127.0.0.1:57433 3331600940 12 1a00000013c00a0000000000 ............ +6724 18.201158285 127.0.0.1:57415 127.0.0.1:57433 3331600952 26 16000000548f6340e25e3140010003000000f7081f0000000000 ....T.c@.^1@.............. +6726 18.201379061 127.0.0.1:57433 127.0.0.1:57415 375920520 12 ffffffff13c00a0000000000 ............ +6728 18.201949358 127.0.0.1:57433 127.0.0.1:57415 375920532 12 16000000c79e0a0000000000 ............ +6730 18.202181816 127.0.0.1:57433 127.0.0.1:57415 375920544 22 12000000f7081f000000000001000300000000000000 ...................... +6732 18.202489614 127.0.0.1:57415 127.0.0.1:57433 3331600978 12 ffffffffc79e0a0000000000 ............ +6736 18.302273512 127.0.0.1:57415 127.0.0.1:57433 3331600990 12 6500000014c00a0000000000 e........... +6738 18.302459240 127.0.0.1:57415 127.0.0.1:57433 3331601002 101 1e0000001c2118d0c46f33bb010003000000740002000000000039310fc39d01 .....!...o3.......t.......91......?.....3...|8.. +6740 18.302769423 127.0.0.1:57433 127.0.0.1:57415 375920566 12 ffffffff14c00a0000000000 ............ +6742 18.303346395 127.0.0.1:57415 127.0.0.1:57433 3331601103 12 1a00000015c00a0000000000 ............ +6744 18.303496838 127.0.0.1:57415 127.0.0.1:57433 3331601115 26 16000000548f6340e25e3140010003000000f9081f0000000000 ....T.c@.^1@.............. +6746 18.303892612 127.0.0.1:57433 127.0.0.1:57415 375920578 12 ffffffff15c00a0000000000 ............ +6748 18.304186821 127.0.0.1:57433 127.0.0.1:57415 375920590 12 34000000c89e0a0000000000 4........... +6750 18.304392815 127.0.0.1:57433 127.0.0.1:57415 375920602 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....t.........c^.u +6752 18.304648399 127.0.0.1:57433 127.0.0.1:57415 375920654 12 16000000c99e0a0000000000 ............ +6753 18.304668903 127.0.0.1:57415 127.0.0.1:57433 3331601141 12 ffffffffc89e0a0000000000 ............ +6754 18.304774046 127.0.0.1:57433 127.0.0.1:57415 375920666 22 12000000f9081f000000000001000300000000000000 ...................... +6756 18.305028677 127.0.0.1:57415 127.0.0.1:57433 3331601153 12 ffffffffc99e0a0000000000 ............ +6758 18.305448294 127.0.0.1:57415 127.0.0.1:57433 3331601165 12 1e00000016c00a0000000000 ............ +6760 18.305591106 127.0.0.1:57415 127.0.0.1:57433 3331601177 30 1a00000055ceff62b21b3a50010003000000fb081f000000000000000000 ....U..b..:P.................. +6762 18.305850029 127.0.0.1:57433 127.0.0.1:57415 375920688 12 ffffffff16c00a0000000000 ............ +6763 18.306400537 127.0.0.1:57433 127.0.0.1:57415 375920700 12 1a000000ca9e0a0000000000 ............ +6764 18.306517601 127.0.0.1:57433 127.0.0.1:57415 375920712 26 16000000fb081f00000000000100030000000000000000000000 .......................... +6765 18.306701899 127.0.0.1:57415 127.0.0.1:57433 3331601207 12 ffffffffca9e0a0000000000 ............ +6769 18.353391886 127.0.0.1:57433 127.0.0.1:57415 375920738 12 feffffff8738010098380100 .....8...8.. +6779 18.406521797 127.0.0.1:57415 127.0.0.1:57433 3331601219 12 1a00000017c00a0000000000 ............ +6781 18.406683445 127.0.0.1:57415 127.0.0.1:57433 3331601231 26 16000000548f6340e25e3140010003000000fd081f0000000000 ....T.c@.^1@.............. +6783 18.407158136 127.0.0.1:57433 127.0.0.1:57415 375920750 12 ffffffff17c00a0000000000 ............ +6785 18.407588959 127.0.0.1:57433 127.0.0.1:57415 375920762 12 16000000cb9e0a0000000000 ............ +6787 18.407758236 127.0.0.1:57433 127.0.0.1:57415 375920774 22 12000000fd081f000000000001000300000000000000 ...................... +6789 18.408062935 127.0.0.1:57415 127.0.0.1:57433 3331601257 12 ffffffffcb9e0a0000000000 ............ +6796 18.476883888 127.0.0.1:57415 127.0.0.1:57433 3331601269 12 feffffff9938010087380100 .....8...8.. +6801 18.509213686 127.0.0.1:57415 127.0.0.1:57433 3331601281 12 1a00000018c00a0000000000 ............ +6803 18.509388208 127.0.0.1:57415 127.0.0.1:57433 3331601293 26 16000000548f6340e25e3140010003000000ff081f0000000000 ....T.c@.^1@.............. +6805 18.509720802 127.0.0.1:57433 127.0.0.1:57415 375920796 12 ffffffff18c00a0000000000 ............ +6807 18.510368824 127.0.0.1:57433 127.0.0.1:57415 375920808 12 16000000cc9e0a0000000000 ............ +6809 18.510586500 127.0.0.1:57433 127.0.0.1:57415 375920820 22 12000000ff081f000000000001000300000000000000 ...................... +6811 18.510839701 127.0.0.1:57415 127.0.0.1:57433 3331601319 12 ffffffffcc9e0a0000000000 ............ +6867 18.606933355 127.0.0.1:57415 127.0.0.1:57433 3331601331 12 2200000019c00a0000000000 "........... +6869 18.607113123 127.0.0.1:57415 127.0.0.1:57433 3331601343 34 1e0000001c2118d0c46f33bb01000300000075000200000000006a320fc39d01 .....!...o3.......u.......j2...... +6871 18.607264280 127.0.0.1:57415 127.0.0.1:57433 3331601377 12 430000001ac00a0000000000 C........... +6873 18.607354403 127.0.0.1:57415 127.0.0.1:57433 3331601389 67 3f000000980433cb0cb47c38010003000000010000000075000200000000003d ?.....3...|8...........u.......=B.....&......... +6875 18.607452154 127.0.0.1:57433 127.0.0.1:57415 375920842 12 ffffffff19c00a0000000000 ............ +6877 18.607656479 127.0.0.1:57433 127.0.0.1:57415 375920854 12 ffffffff1ac00a0000000000 ............ +6879 18.608315706 127.0.0.1:57433 127.0.0.1:57415 375920866 12 34000000cd9e0a0000000000 4........... +6881 18.608517408 127.0.0.1:57433 127.0.0.1:57415 375920878 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....u...........4u +6883 18.608792305 127.0.0.1:57415 127.0.0.1:57433 3331601456 12 ffffffffcd9e0a0000000000 ............ +6885 18.609756947 127.0.0.1:57415 127.0.0.1:57433 3331601468 12 1e0000001bc00a0000000000 ............ +6887 18.609906435 127.0.0.1:57415 127.0.0.1:57433 3331601480 30 1a00000055ceff62b21b3a5001000300000001091f000000000000000000 ....U..b..:P.................. +6889 18.610202551 127.0.0.1:57433 127.0.0.1:57415 375920930 12 ffffffff1bc00a0000000000 ............ +6891 18.610820532 127.0.0.1:57433 127.0.0.1:57415 375920942 12 1a000000ce9e0a0000000000 ............ +6893 18.610991716 127.0.0.1:57433 127.0.0.1:57415 375920954 26 1600000001091f00000000000100030000000000000000000000 .......................... +6895 18.611212015 127.0.0.1:57415 127.0.0.1:57433 3331601510 12 ffffffffce9e0a0000000000 ............ +6897 18.612004995 127.0.0.1:57415 127.0.0.1:57433 3331601522 12 1a0000001cc00a0000000000 ............ +6899 18.612147808 127.0.0.1:57415 127.0.0.1:57433 3331601534 26 16000000548f6340e25e314001000300000003091f0000000000 ....T.c@.^1@.............. +6901 18.612498045 127.0.0.1:57433 127.0.0.1:57415 375920980 12 ffffffff1cc00a0000000000 ............ +6903 18.612980366 127.0.0.1:57433 127.0.0.1:57415 375920992 12 16000000cf9e0a0000000000 ............ +6905 18.613154888 127.0.0.1:57433 127.0.0.1:57415 375921004 22 1200000003091f000000000001000300000000000000 ...................... +6907 18.613494635 127.0.0.1:57415 127.0.0.1:57433 3331601560 12 ffffffffcf9e0a0000000000 ............ +6956 18.716053724 127.0.0.1:57415 127.0.0.1:57433 3331601572 12 1a0000001dc00a0000000000 ............ +6958 18.716245413 127.0.0.1:57415 127.0.0.1:57433 3331601584 26 16000000548f6340e25e314001000300000005091f0000000000 ....T.c@.^1@.............. +6960 18.716775417 127.0.0.1:57433 127.0.0.1:57415 375921026 12 ffffffff1dc00a0000000000 ............ +6962 18.717261553 127.0.0.1:57433 127.0.0.1:57415 375921038 12 16000000d09e0a0000000000 ............ +6964 18.717425585 127.0.0.1:57433 127.0.0.1:57415 375921050 22 1200000005091f000000000001000300000000000000 ...................... +6966 18.717650414 127.0.0.1:57415 127.0.0.1:57433 3331601610 12 ffffffffd09e0a0000000000 ............ +6995 18.819793701 127.0.0.1:57415 127.0.0.1:57433 3331601622 12 1a0000001ec00a0000000000 ............ +6997 18.819965124 127.0.0.1:57415 127.0.0.1:57433 3331601634 26 16000000548f6340e25e314001000300000007091f0000000000 ....T.c@.^1@.............. +7002 18.820408106 127.0.0.1:57433 127.0.0.1:57415 375921072 12 ffffffff1ec00a0000000000 ............ +7006 18.820773602 127.0.0.1:57433 127.0.0.1:57415 375921084 12 16000000d19e0a0000000000 ............ +7009 18.820941210 127.0.0.1:57433 127.0.0.1:57415 375921096 22 1200000007091f000000000001000300000000000000 ...................... +7013 18.821236372 127.0.0.1:57415 127.0.0.1:57433 3331601660 12 ffffffffd19e0a0000000000 ............ +7023 18.854617357 127.0.0.1:57433 127.0.0.1:57415 375921118 12 feffffff8838010099380100 .....8...8.. +7029 18.910718441 127.0.0.1:57415 127.0.0.1:57433 3331601672 12 650000001fc00a0000000000 e........... +7031 18.910923004 127.0.0.1:57415 127.0.0.1:57433 3331601684 101 1e0000001c2118d0c46f33bb01000300000076000200000000009a330fc39d01 .....!...o3.......v........3......?.....3...|8.. +7033 18.911345482 127.0.0.1:57433 127.0.0.1:57415 375921130 12 ffffffff1fc00a0000000000 ............ +7035 18.912346125 127.0.0.1:57433 127.0.0.1:57415 375921142 12 34000000d29e0a0000000000 4........... +7037 18.912529945 127.0.0.1:57433 127.0.0.1:57415 375921154 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....v.........=7cu +7039 18.912915230 127.0.0.1:57415 127.0.0.1:57433 3331601785 12 ffffffffd29e0a0000000000 ............ +7041 18.913757563 127.0.0.1:57415 127.0.0.1:57433 3331601797 12 1e00000020c00a0000000000 .... ....... +7043 18.913929939 127.0.0.1:57415 127.0.0.1:57433 3331601809 30 1a00000055ceff62b21b3a5001000300000009091f000000000000000000 ....U..b..:P.................. +7045 18.914138794 127.0.0.1:57433 127.0.0.1:57415 375921206 12 ffffffff20c00a0000000000 .... ....... +7047 18.914608955 127.0.0.1:57433 127.0.0.1:57415 375921218 12 1a000000d39e0a0000000000 ............ +7049 18.914775610 127.0.0.1:57433 127.0.0.1:57415 375921230 26 1600000009091f00000000000100030000000000000000000000 .......................... +7051 18.915099859 127.0.0.1:57415 127.0.0.1:57433 3331601839 12 ffffffffd39e0a0000000000 ............ +7053 18.923269510 127.0.0.1:57415 127.0.0.1:57433 3331601851 12 1a00000021c00a0000000000 ....!....... +7055 18.923414707 127.0.0.1:57415 127.0.0.1:57433 3331601863 26 16000000548f6340e25e31400100030000000b091f0000000000 ....T.c@.^1@.............. +7057 18.923716307 127.0.0.1:57433 127.0.0.1:57415 375921256 12 ffffffff21c00a0000000000 ....!....... +7059 18.924278498 127.0.0.1:57433 127.0.0.1:57415 375921268 12 16000000d49e0a0000000000 ............ +7061 18.924478054 127.0.0.1:57433 127.0.0.1:57415 375921280 22 120000000b091f000000000001000300000000000000 ...................... +7063 18.924730301 127.0.0.1:57415 127.0.0.1:57433 3331601889 12 ffffffffd49e0a0000000000 ............ +7109 18.978242636 127.0.0.1:57415 127.0.0.1:57433 3331601901 12 feffffff9a38010088380100 .....8...8.. +7114 19.026412725 127.0.0.1:57415 127.0.0.1:57433 3331601913 12 1a00000022c00a0000000000 ...."....... +7116 19.026571512 127.0.0.1:57415 127.0.0.1:57433 3331601925 26 16000000548f6340e25e31400100030000000d091f0000000000 ....T.c@.^1@.............. +7118 19.026914120 127.0.0.1:57433 127.0.0.1:57415 375921302 12 ffffffff22c00a0000000000 ...."....... +7120 19.028610229 127.0.0.1:57433 127.0.0.1:57415 375921314 12 16000000d59e0a0000000000 ............ +7122 19.028770447 127.0.0.1:57433 127.0.0.1:57415 375921326 22 120000000d091f000000000001000300000000000000 ...................... +7124 19.029006481 127.0.0.1:57415 127.0.0.1:57433 3331601951 12 ffffffffd59e0a0000000000 ............ +7169 19.130522013 127.0.0.1:57415 127.0.0.1:57433 3331601963 12 1a00000023c00a0000000000 ....#....... +7171 19.130727530 127.0.0.1:57415 127.0.0.1:57433 3331601975 26 16000000548f6340e25e31400100030000000f091f0000000000 ....T.c@.^1@.............. +7173 19.131185770 127.0.0.1:57433 127.0.0.1:57415 375921348 12 ffffffff23c00a0000000000 ....#....... +7175 19.131795645 127.0.0.1:57433 127.0.0.1:57415 375921360 12 16000000d69e0a0000000000 ............ +7177 19.131970406 127.0.0.1:57433 127.0.0.1:57415 375921372 22 120000000f091f000000000001000300000000000000 ...................... +7179 19.132167101 127.0.0.1:57415 127.0.0.1:57433 3331602001 12 ffffffffd69e0a0000000000 ............ +7181 19.215647697 127.0.0.1:57415 127.0.0.1:57433 3331602013 12 6500000024c00a0000000000 e...$....... +7183 19.215846539 127.0.0.1:57415 127.0.0.1:57433 3331602025 101 1e0000001c2118d0c46f33bb0100030000007700020000000000cb340fc39d01 .....!...o3.......w........4......?.....3...|8.. +7185 19.216283083 127.0.0.1:57433 127.0.0.1:57415 375921394 12 ffffffff24c00a0000000000 ....$....... +7187 19.217108488 127.0.0.1:57433 127.0.0.1:57415 375921406 12 34000000d79e0a0000000000 4........... +7189 19.217297316 127.0.0.1:57433 127.0.0.1:57415 375921418 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....w............u +7191 19.217651844 127.0.0.1:57415 127.0.0.1:57433 3331602126 12 ffffffffd79e0a0000000000 ............ +7193 19.218431950 127.0.0.1:57415 127.0.0.1:57433 3331602138 12 1e00000025c00a0000000000 ....%....... +7195 19.218589544 127.0.0.1:57415 127.0.0.1:57433 3331602150 30 1a00000055ceff62b21b3a5001000300000011091f000000000000000000 ....U..b..:P.................. +7197 19.218998909 127.0.0.1:57433 127.0.0.1:57415 375921470 12 ffffffff25c00a0000000000 ....%....... +7199 19.219420195 127.0.0.1:57433 127.0.0.1:57415 375921482 12 1a000000d89e0a0000000000 ............ +7201 19.219578266 127.0.0.1:57433 127.0.0.1:57415 375921494 26 1600000011091f00000000000100030000000000000000000000 .......................... +7203 19.219910622 127.0.0.1:57415 127.0.0.1:57433 3331602180 12 ffffffffd89e0a0000000000 ............ +7210 19.234484911 127.0.0.1:57415 127.0.0.1:57433 3331602192 12 1a00000026c00a0000000000 ....&....... +7212 19.234642267 127.0.0.1:57415 127.0.0.1:57433 3331602204 26 16000000548f6340e25e314001000300000013091f0000000000 ....T.c@.^1@.............. +7214 19.235003948 127.0.0.1:57433 127.0.0.1:57415 375921520 12 ffffffff26c00a0000000000 ....&....... +7216 19.235337019 127.0.0.1:57433 127.0.0.1:57415 375921532 12 16000000d99e0a0000000000 ............ +7218 19.235494137 127.0.0.1:57433 127.0.0.1:57415 375921544 22 1200000013091f000000000001000300000000000000 ...................... +7221 19.235770941 127.0.0.1:57415 127.0.0.1:57433 3331602230 12 ffffffffd99e0a0000000000 ............ +7288 19.338204622 127.0.0.1:57415 127.0.0.1:57433 3331602242 12 1a00000027c00a0000000000 ....'....... +7290 19.338394880 127.0.0.1:57415 127.0.0.1:57433 3331602254 26 16000000548f6340e25e314001000300000015091f0000000000 ....T.c@.^1@.............. +7292 19.338759184 127.0.0.1:57433 127.0.0.1:57415 375921566 12 ffffffff27c00a0000000000 ....'....... +7294 19.339189529 127.0.0.1:57433 127.0.0.1:57415 375921578 12 16000000da9e0a0000000000 ............ +7296 19.339351416 127.0.0.1:57433 127.0.0.1:57415 375921590 22 1200000015091f000000000001000300000000000000 ...................... +7298 19.339651585 127.0.0.1:57415 127.0.0.1:57433 3331602280 12 ffffffffda9e0a0000000000 ............ +7302 19.357126713 127.0.0.1:57433 127.0.0.1:57415 375921612 12 feffffff893801009a380100 .....8...8.. +7312 19.441346645 127.0.0.1:57415 127.0.0.1:57433 3331602292 12 1a00000028c00a0000000000 ....(....... +7314 19.441579580 127.0.0.1:57415 127.0.0.1:57433 3331602304 26 16000000548f6340e25e314001000300000017091f0000000000 ....T.c@.^1@.............. +7316 19.441988707 127.0.0.1:57433 127.0.0.1:57415 375921624 12 ffffffff28c00a0000000000 ....(....... +7318 19.442810059 127.0.0.1:57433 127.0.0.1:57415 375921636 12 16000000db9e0a0000000000 ............ +7320 19.442970753 127.0.0.1:57433 127.0.0.1:57415 375921648 22 1200000017091f000000000001000300000000000000 ...................... +7322 19.443238735 127.0.0.1:57415 127.0.0.1:57433 3331602330 12 ffffffffdb9e0a0000000000 ............ +7325 19.480714560 127.0.0.1:57415 127.0.0.1:57433 3331602342 12 feffffff9b38010089380100 .....8...8.. +7330 19.520696640 127.0.0.1:57415 127.0.0.1:57433 3331602354 12 6500000029c00a0000000000 e...)....... +7332 19.520887613 127.0.0.1:57415 127.0.0.1:57433 3331602366 101 1e0000001c2118d0c46f33bb0100030000007800020000000000fc350fc39d01 .....!...o3.......x........5......?.....3...|8.. +7334 19.521298647 127.0.0.1:57433 127.0.0.1:57415 375921670 12 ffffffff29c00a0000000000 ....)....... +7336 19.522019625 127.0.0.1:57433 127.0.0.1:57415 375921682 12 34000000dc9e0a0000000000 4........... +7338 19.522263527 127.0.0.1:57433 127.0.0.1:57415 375921694 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....x.........^>.u +7340 19.522521019 127.0.0.1:57415 127.0.0.1:57433 3331602467 12 ffffffffdc9e0a0000000000 ............ +7342 19.523530006 127.0.0.1:57415 127.0.0.1:57433 3331602479 12 1e0000002ac00a0000000000 ....*....... +7344 19.523767710 127.0.0.1:57415 127.0.0.1:57433 3331602491 30 1a00000055ceff62b21b3a5001000300000019091f000000000000000000 ....U..b..:P.................. +7346 19.524061918 127.0.0.1:57433 127.0.0.1:57415 375921746 12 ffffffff2ac00a0000000000 ....*....... +7348 19.525474310 127.0.0.1:57433 127.0.0.1:57415 375921758 12 1a000000dd9e0a0000000000 ............ +7350 19.525616646 127.0.0.1:57433 127.0.0.1:57415 375921770 26 1600000019091f00000000000100030000000000000000000000 .......................... +7352 19.525901556 127.0.0.1:57415 127.0.0.1:57433 3331602521 12 ffffffffdd9e0a0000000000 ............ +7356 19.545295000 127.0.0.1:57415 127.0.0.1:57433 3331602533 12 1a0000002bc00a0000000000 ....+....... +7358 19.545463085 127.0.0.1:57415 127.0.0.1:57433 3331602545 26 16000000548f6340e25e31400100030000001b091f0000000000 ....T.c@.^1@.............. +7360 19.545826197 127.0.0.1:57433 127.0.0.1:57415 375921796 12 ffffffff2bc00a0000000000 ....+....... +7362 19.546366215 127.0.0.1:57433 127.0.0.1:57415 375921808 12 16000000de9e0a0000000000 ............ +7364 19.546524286 127.0.0.1:57433 127.0.0.1:57415 375921820 22 120000001b091f000000000001000300000000000000 ...................... +7366 19.546786070 127.0.0.1:57415 127.0.0.1:57433 3331602571 12 ffffffffde9e0a0000000000 ............ +7372 19.649590015 127.0.0.1:57415 127.0.0.1:57433 3331602583 12 1a0000002cc00a0000000000 ....,....... +7374 19.649760485 127.0.0.1:57415 127.0.0.1:57433 3331602595 26 16000000548f6340e25e31400100030000001d091f0000000000 ....T.c@.^1@.............. +7377 19.650159597 127.0.0.1:57433 127.0.0.1:57415 375921842 12 ffffffff2cc00a0000000000 ....,....... +7384 19.652064800 127.0.0.1:57433 127.0.0.1:57415 375921854 12 16000000df9e0a0000000000 ............ +7386 19.652224541 127.0.0.1:57433 127.0.0.1:57415 375921866 22 120000001d091f000000000001000300000000000000 ...................... +7388 19.652516842 127.0.0.1:57415 127.0.0.1:57433 3331602621 12 ffffffffdf9e0a0000000000 ............ +7392 19.753907919 127.0.0.1:57415 127.0.0.1:57433 3331602633 12 1a0000002dc00a0000000000 ....-....... +7394 19.754080057 127.0.0.1:57415 127.0.0.1:57433 3331602645 26 16000000548f6340e25e31400100030000001f091f0000000000 ....T.c@.^1@.............. +7396 19.754510641 127.0.0.1:57433 127.0.0.1:57415 375921888 12 ffffffff2dc00a0000000000 ....-....... +7398 19.754914999 127.0.0.1:57433 127.0.0.1:57415 375921900 12 16000000e09e0a0000000000 ............ +7400 19.755072832 127.0.0.1:57433 127.0.0.1:57415 375921912 22 120000001f091f000000000001000300000000000000 ...................... +7402 19.755429029 127.0.0.1:57415 127.0.0.1:57433 3331602671 12 ffffffffe09e0a0000000000 ............ +7405 19.825260878 127.0.0.1:57415 127.0.0.1:57433 3331602683 12 650000002ec00a0000000000 e........... +7407 19.825414181 127.0.0.1:57415 127.0.0.1:57433 3331602695 101 1e0000001c2118d0c46f33bb01000300000079000200000000002c370fc39d01 .....!...o3.......y.......,7......?.....3...|8.. +7409 19.825687647 127.0.0.1:57433 127.0.0.1:57415 375921934 12 ffffffff2ec00a0000000000 ............ +7411 19.826816320 127.0.0.1:57433 127.0.0.1:57415 375921946 12 34000000e19e0a0000000000 4........... +7413 19.827011585 127.0.0.1:57433 127.0.0.1:57415 375921958 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....y............u +7415 19.827321768 127.0.0.1:57415 127.0.0.1:57433 3331602796 12 ffffffffe19e0a0000000000 ............ +7417 19.828083992 127.0.0.1:57415 127.0.0.1:57433 3331602808 12 1e0000002fc00a0000000000 ..../....... +7419 19.828265190 127.0.0.1:57415 127.0.0.1:57433 3331602820 30 1a00000055ceff62b21b3a5001000300000021091f000000000000000000 ....U..b..:P......!........... +7421 19.828569174 127.0.0.1:57433 127.0.0.1:57415 375922010 12 ffffffff2fc00a0000000000 ..../....... +7423 19.828914165 127.0.0.1:57433 127.0.0.1:57415 375922022 12 1a000000e29e0a0000000000 ............ +7425 19.829096317 127.0.0.1:57433 127.0.0.1:57415 375922034 26 1600000021091f00000000000100030000000000000000000000 ....!..................... +7427 19.829339504 127.0.0.1:57415 127.0.0.1:57433 3331602850 12 ffffffffe29e0a0000000000 ............ +7431 19.857429266 127.0.0.1:57415 127.0.0.1:57433 3331602862 12 1a00000030c00a0000000000 ....0....... +7433 19.857631445 127.0.0.1:57415 127.0.0.1:57433 3331602874 26 16000000548f6340e25e314001000300000023091f0000000000 ....T.c@.^1@......#....... +7435 19.857972383 127.0.0.1:57433 127.0.0.1:57415 375922060 12 ffffffff30c00a0000000000 ....0....... +7437 19.858324766 127.0.0.1:57433 127.0.0.1:57415 375922072 12 16000000e39e0a0000000000 ............ +7440 19.858539581 127.0.0.1:57433 127.0.0.1:57415 375922084 22 1200000023091f000000000001000300000000000000 ....#................. +7443 19.858792543 127.0.0.1:57433 127.0.0.1:57415 375922106 12 feffffff8a3801009b380100 .....8...8.. +7445 19.858876944 127.0.0.1:57415 127.0.0.1:57433 3331602900 12 ffffffffe39e0a0000000000 ............ +7468 19.960640669 127.0.0.1:57415 127.0.0.1:57433 3331602912 12 1a00000031c00a0000000000 ....1....... +7470 19.960878372 127.0.0.1:57415 127.0.0.1:57433 3331602924 26 16000000548f6340e25e314001000300000025091f0000000000 ....T.c@.^1@......%....... +7472 19.961326361 127.0.0.1:57433 127.0.0.1:57415 375922118 12 ffffffff31c00a0000000000 ....1....... +7474 19.962060452 127.0.0.1:57433 127.0.0.1:57415 375922130 12 16000000e49e0a0000000000 ............ +7476 19.962305546 127.0.0.1:57433 127.0.0.1:57415 375922142 22 1200000025091f000000000001000300000000000000 ....%................. +7478 19.962598324 127.0.0.1:57415 127.0.0.1:57433 3331602950 12 ffffffffe49e0a0000000000 ............ +7480 19.982386827 127.0.0.1:57415 127.0.0.1:57433 3331602962 12 feffffff9c3801008a380100 .....8...8.. +7492 20.063762903 127.0.0.1:57415 127.0.0.1:57433 3331602974 12 1a00000032c00a0000000000 ....2....... +7494 20.063922405 127.0.0.1:57415 127.0.0.1:57433 3331602986 26 16000000548f6340e25e314001000300000027091f0000000000 ....T.c@.^1@......'....... +7496 20.064294815 127.0.0.1:57433 127.0.0.1:57415 375922164 12 ffffffff32c00a0000000000 ....2....... +7498 20.064868689 127.0.0.1:57433 127.0.0.1:57415 375922176 12 16000000e59e0a0000000000 ............ +7500 20.065126419 127.0.0.1:57433 127.0.0.1:57415 375922188 22 1200000027091f000000000001000300000000000000 ....'................. +7502 20.065389633 127.0.0.1:57415 127.0.0.1:57433 3331603012 12 ffffffffe59e0a0000000000 ............ +7505 20.129141569 127.0.0.1:57415 127.0.0.1:57433 3331603024 12 2200000033c00a0000000000 "...3....... +7507 20.129312038 127.0.0.1:57415 127.0.0.1:57433 3331603036 34 1e0000001c2118d0c46f33bb0100030000007a000200000000005c380fc39d01 .....!...o3.......z.......\8...... +7509 20.129411697 127.0.0.1:57415 127.0.0.1:57433 3331603070 12 4300000034c00a0000000000 C...4....... +7511 20.129498005 127.0.0.1:57415 127.0.0.1:57433 3331603082 67 3f000000980433cb0cb47c3801000300000001000000007a000200000000003d ?.....3...|8...........z.......=B.....&......... +7513 20.129596710 127.0.0.1:57433 127.0.0.1:57415 375922210 12 ffffffff33c00a0000000000 ....3....... +7515 20.129788160 127.0.0.1:57433 127.0.0.1:57415 375922222 12 ffffffff34c00a0000000000 ....4....... +7517 20.130424500 127.0.0.1:57433 127.0.0.1:57415 375922234 12 34000000e69e0a0000000000 4........... +7519 20.130636930 127.0.0.1:57433 127.0.0.1:57415 375922246 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....z............v +7521 20.130918503 127.0.0.1:57415 127.0.0.1:57433 3331603149 12 ffffffffe69e0a0000000000 ............ +7523 20.131727457 127.0.0.1:57415 127.0.0.1:57433 3331603161 12 1e00000035c00a0000000000 ....5....... +7525 20.131889820 127.0.0.1:57415 127.0.0.1:57433 3331603173 30 1a00000055ceff62b21b3a5001000300000029091f000000000000000000 ....U..b..:P......)........... +7527 20.132519007 127.0.0.1:57433 127.0.0.1:57415 375922298 12 ffffffff35c00a0000000000 ....5....... +7529 20.132898092 127.0.0.1:57433 127.0.0.1:57415 375922310 12 1a000000e79e0a0000000000 ............ +7531 20.133141994 127.0.0.1:57433 127.0.0.1:57415 375922322 26 1600000029091f00000000000100030000000000000000000000 ....)..................... +7533 20.133397341 127.0.0.1:57415 127.0.0.1:57433 3331603203 12 ffffffffe79e0a0000000000 ............ +7536 20.166598558 127.0.0.1:57415 127.0.0.1:57433 3331603215 12 1a00000036c00a0000000000 ....6....... +7538 20.166751146 127.0.0.1:57415 127.0.0.1:57433 3331603227 26 16000000548f6340e25e31400100030000002b091f0000000000 ....T.c@.^1@......+....... +7540 20.167176247 127.0.0.1:57433 127.0.0.1:57415 375922348 12 ffffffff36c00a0000000000 ....6....... +7542 20.167647839 127.0.0.1:57433 127.0.0.1:57415 375922360 12 16000000e89e0a0000000000 ............ +7544 20.167816401 127.0.0.1:57433 127.0.0.1:57415 375922372 22 120000002b091f000000000001000300000000000000 ....+................. +7546 20.168102264 127.0.0.1:57415 127.0.0.1:57433 3331603253 12 ffffffffe89e0a0000000000 ............ +7552 20.269136429 127.0.0.1:57415 127.0.0.1:57433 3331603265 12 1a00000037c00a0000000000 ....7....... +7554 20.269287586 127.0.0.1:57415 127.0.0.1:57433 3331603277 26 16000000548f6340e25e31400100030000002d091f0000000000 ....T.c@.^1@......-....... +7556 20.269634008 127.0.0.1:57433 127.0.0.1:57415 375922394 12 ffffffff37c00a0000000000 ....7....... +7558 20.270295620 127.0.0.1:57433 127.0.0.1:57415 375922406 12 16000000e99e0a0000000000 ............ +7560 20.270465136 127.0.0.1:57433 127.0.0.1:57415 375922418 22 120000002d091f000000000001000300000000000000 ....-................. +7562 20.270715714 127.0.0.1:57415 127.0.0.1:57433 3331603303 12 ffffffffe99e0a0000000000 ............ +7567 20.359255075 127.0.0.1:57433 127.0.0.1:57415 375922440 12 feffffff8b3801009c380100 .....8...8.. +7573 20.372723818 127.0.0.1:57415 127.0.0.1:57433 3331603315 12 1a00000038c00a0000000000 ....8....... +7575 20.372904539 127.0.0.1:57415 127.0.0.1:57433 3331603327 26 16000000548f6340e25e31400100030000002f091f0000000000 ....T.c@.^1@....../....... +7577 20.373282671 127.0.0.1:57433 127.0.0.1:57415 375922452 12 ffffffff38c00a0000000000 ....8....... +7579 20.373708487 127.0.0.1:57433 127.0.0.1:57415 375922464 12 16000000ea9e0a0000000000 ............ +7581 20.373872042 127.0.0.1:57433 127.0.0.1:57415 375922476 22 120000002f091f000000000001000300000000000000 ..../................. +7583 20.374243021 127.0.0.1:57415 127.0.0.1:57433 3331603353 12 ffffffffea9e0a0000000000 ............ +7590 20.432889700 127.0.0.1:57415 127.0.0.1:57433 3331603365 12 6500000039c00a0000000000 e...9....... +7592 20.433083296 127.0.0.1:57415 127.0.0.1:57433 3331603377 101 1e0000001c2118d0c46f33bb0100030000007b000200000000008c390fc39d01 .....!...o3.......{........9......?.....3...|8.. +7594 20.433402300 127.0.0.1:57433 127.0.0.1:57415 375922498 12 ffffffff39c00a0000000000 ....9....... +7596 20.434319019 127.0.0.1:57433 127.0.0.1:57415 375922510 12 34000000eb9e0a0000000000 4........... +7598 20.434480906 127.0.0.1:57433 127.0.0.1:57415 375922522 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....{.........KrKv +7602 20.434925079 127.0.0.1:57415 127.0.0.1:57433 3331603478 12 ffffffffeb9e0a0000000000 ............ +7604 20.435605049 127.0.0.1:57415 127.0.0.1:57433 3331603490 12 1e0000003ac00a0000000000 ....:....... +7606 20.435745716 127.0.0.1:57415 127.0.0.1:57433 3331603502 30 1a00000055ceff62b21b3a5001000300000031091f000000000000000000 ....U..b..:P......1........... +7608 20.436161280 127.0.0.1:57433 127.0.0.1:57415 375922574 12 ffffffff3ac00a0000000000 ....:....... +7610 20.436496973 127.0.0.1:57433 127.0.0.1:57415 375922586 12 1a000000ec9e0a0000000000 ............ +7612 20.436658382 127.0.0.1:57433 127.0.0.1:57415 375922598 26 1600000031091f00000000000100030000000000000000000000 ....1..................... +7614 20.436989784 127.0.0.1:57415 127.0.0.1:57433 3331603532 12 ffffffffec9e0a0000000000 ............ +7619 20.475086689 127.0.0.1:57415 127.0.0.1:57433 3331603544 12 1a0000003bc00a0000000000 ....;....... +7621 20.475261211 127.0.0.1:57415 127.0.0.1:57433 3331603556 26 16000000548f6340e25e314001000300000033091f0000000000 ....T.c@.^1@......3....... +7623 20.475666285 127.0.0.1:57433 127.0.0.1:57415 375922624 12 ffffffff3bc00a0000000000 ....;....... +7625 20.476230621 127.0.0.1:57433 127.0.0.1:57415 375922636 12 16000000ed9e0a0000000000 ............ +7627 20.476396322 127.0.0.1:57433 127.0.0.1:57415 375922648 22 1200000033091f000000000001000300000000000000 ....3................. +7629 20.476674557 127.0.0.1:57415 127.0.0.1:57433 3331603582 12 ffffffffed9e0a0000000000 ............ +7632 20.483971596 127.0.0.1:57415 127.0.0.1:57433 3331603594 12 feffffff9d3801008b380100 .....8...8.. +7644 20.578107119 127.0.0.1:57415 127.0.0.1:57433 3331603606 12 1a0000003cc00a0000000000 ....<....... +7646 20.578276396 127.0.0.1:57415 127.0.0.1:57433 3331603618 26 16000000548f6340e25e314001000300000035091f0000000000 ....T.c@.^1@......5....... +7648 20.578725576 127.0.0.1:57433 127.0.0.1:57415 375922670 12 ffffffff3cc00a0000000000 ....<....... +7650 20.579150915 127.0.0.1:57433 127.0.0.1:57415 375922682 12 16000000ee9e0a0000000000 ............ +7652 20.579310417 127.0.0.1:57433 127.0.0.1:57415 375922694 22 1200000035091f000000000001000300000000000000 ....5................. +7654 20.579626322 127.0.0.1:57415 127.0.0.1:57433 3331603644 12 ffffffffee9e0a0000000000 ............ +7659 20.680902719 127.0.0.1:57415 127.0.0.1:57433 3331603656 12 1a0000003dc00a0000000000 ....=....... +7661 20.681091309 127.0.0.1:57415 127.0.0.1:57433 3331603668 26 16000000548f6340e25e314001000300000037091f0000000000 ....T.c@.^1@......7....... +7663 20.681468248 127.0.0.1:57433 127.0.0.1:57415 375922716 12 ffffffff3dc00a0000000000 ....=....... +7665 20.681966782 127.0.0.1:57433 127.0.0.1:57415 375922728 12 16000000ef9e0a0000000000 ............ +7667 20.682126760 127.0.0.1:57433 127.0.0.1:57415 375922740 22 1200000037091f000000000001000300000000000000 ....7................. +7669 20.682788134 127.0.0.1:57415 127.0.0.1:57433 3331603694 12 ffffffffef9e0a0000000000 ............ +7674 20.737375975 127.0.0.1:57415 127.0.0.1:57433 3331603706 12 650000003ec00a0000000000 e...>....... +7676 20.737560987 127.0.0.1:57415 127.0.0.1:57433 3331603718 101 1e0000001c2118d0c46f33bb0100030000007c00020000000000bc3a0fc39d01 .....!...o3.......|........:......?.....3...|8.. +7678 20.737905502 127.0.0.1:57433 127.0.0.1:57415 375922762 12 ffffffff3ec00a0000000000 ....>....... +7680 20.738719463 127.0.0.1:57433 127.0.0.1:57415 375922774 12 34000000f09e0a0000000000 4........... +7682 20.738879204 127.0.0.1:57433 127.0.0.1:57415 375922786 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....|...........yv +7684 20.739131212 127.0.0.1:57415 127.0.0.1:57433 3331603819 12 fffffffff09e0a0000000000 ............ +7686 20.739930391 127.0.0.1:57415 127.0.0.1:57433 3331603831 12 1e0000003fc00a0000000000 ....?....... +7688 20.740074635 127.0.0.1:57415 127.0.0.1:57433 3331603843 30 1a00000055ceff62b21b3a5001000300000039091f000000000000000000 ....U..b..:P......9........... +7690 20.740383625 127.0.0.1:57433 127.0.0.1:57415 375922838 12 ffffffff3fc00a0000000000 ....?....... +7692 20.740715027 127.0.0.1:57433 127.0.0.1:57415 375922850 12 1a000000f19e0a0000000000 ............ +7694 20.740877390 127.0.0.1:57433 127.0.0.1:57415 375922862 26 1600000039091f00000000000100030000000000000000000000 ....9..................... +7696 20.741113186 127.0.0.1:57415 127.0.0.1:57433 3331603873 12 fffffffff19e0a0000000000 ............ +7702 20.783915997 127.0.0.1:57415 127.0.0.1:57433 3331603885 12 1a00000040c00a0000000000 ....@....... +7704 20.784077168 127.0.0.1:57415 127.0.0.1:57433 3331603897 26 16000000548f6340e25e31400100030000003b091f0000000000 ....T.c@.^1@......;....... +7706 20.784442186 127.0.0.1:57433 127.0.0.1:57415 375922888 12 ffffffff40c00a0000000000 ....@....... +7708 20.785031319 127.0.0.1:57433 127.0.0.1:57415 375922900 12 16000000f29e0a0000000000 ............ +7710 20.785199881 127.0.0.1:57433 127.0.0.1:57415 375922912 22 120000003b091f000000000001000300000000000000 ....;................. +7712 20.785458565 127.0.0.1:57415 127.0.0.1:57433 3331603923 12 fffffffff29e0a0000000000 ............ +7717 20.859920502 127.0.0.1:57433 127.0.0.1:57415 375922934 12 feffffff8c3801009d380100 .....8...8.. +7725 20.886296749 127.0.0.1:57415 127.0.0.1:57433 3331603935 12 1a00000041c00a0000000000 ....A....... +7727 20.886476755 127.0.0.1:57415 127.0.0.1:57433 3331603947 26 16000000548f6340e25e31400100030000003d091f0000000000 ....T.c@.^1@......=....... +7729 20.886812449 127.0.0.1:57433 127.0.0.1:57415 375922946 12 ffffffff41c00a0000000000 ....A....... +7731 20.887342215 127.0.0.1:57433 127.0.0.1:57415 375922958 12 16000000f39e0a0000000000 ............ +7733 20.887505531 127.0.0.1:57433 127.0.0.1:57415 375922970 22 120000003d091f000000000001000300000000000000 ....=................. +7735 20.887789726 127.0.0.1:57415 127.0.0.1:57433 3331603973 12 fffffffff39e0a0000000000 ............ +7744 20.985055208 127.0.0.1:57415 127.0.0.1:57433 3331603985 12 feffffff9e3801008c380100 .....8...8.. +7750 20.989044905 127.0.0.1:57415 127.0.0.1:57433 3331603997 12 1a00000042c00a0000000000 ....B....... +7752 20.989200354 127.0.0.1:57415 127.0.0.1:57433 3331604009 26 16000000548f6340e25e31400100030000003f091f0000000000 ....T.c@.^1@......?....... +7754 20.989585638 127.0.0.1:57433 127.0.0.1:57415 375922992 12 ffffffff42c00a0000000000 ....B....... +7756 20.990185022 127.0.0.1:57433 127.0.0.1:57415 375923004 12 16000000f49e0a0000000000 ............ +7758 20.990378857 127.0.0.1:57433 127.0.0.1:57415 375923016 22 120000003f091f000000000001000300000000000000 ....?................. +7760 20.990701914 127.0.0.1:57415 127.0.0.1:57433 3331604035 12 fffffffff49e0a0000000000 ............ +7765 21.041342735 127.0.0.1:57415 127.0.0.1:57433 3331604047 12 2200000043c00a0000000000 "...C....... +7767 21.041489124 127.0.0.1:57415 127.0.0.1:57433 3331604059 34 1e0000001c2118d0c46f33bb0100030000007d00020000000000ec3b0fc39d01 .....!...o3.......}........;...... +7769 21.041589022 127.0.0.1:57415 127.0.0.1:57433 3331604093 12 4300000044c00a0000000000 C...D....... +7771 21.041672707 127.0.0.1:57415 127.0.0.1:57433 3331604105 67 3f000000980433cb0cb47c3801000300000001000000007d000200000000003d ?.....3...|8...........}.......=B.....&......... +7773 21.041760206 127.0.0.1:57433 127.0.0.1:57415 375923038 12 ffffffff43c00a0000000000 ....C....... +7777 21.041949511 127.0.0.1:57433 127.0.0.1:57415 375923050 12 ffffffff44c00a0000000000 ....D....... +7779 21.042818308 127.0.0.1:57433 127.0.0.1:57415 375923062 12 34000000f59e0a0000000000 4........... +7781 21.043007612 127.0.0.1:57433 127.0.0.1:57415 375923074 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....}.........nK.v +7783 21.043265104 127.0.0.1:57415 127.0.0.1:57433 3331604172 12 fffffffff59e0a0000000000 ............ +7785 21.044168949 127.0.0.1:57415 127.0.0.1:57433 3331604184 12 1e00000045c00a0000000000 ....E....... +7787 21.044306755 127.0.0.1:57415 127.0.0.1:57433 3331604196 30 1a00000055ceff62b21b3a5001000300000041091f000000000000000000 ....U..b..:P......A........... +7789 21.044623613 127.0.0.1:57433 127.0.0.1:57415 375923126 12 ffffffff45c00a0000000000 ....E....... +7791 21.045046806 127.0.0.1:57433 127.0.0.1:57415 375923138 12 1a000000f69e0a0000000000 ............ +7793 21.045245171 127.0.0.1:57433 127.0.0.1:57415 375923150 26 1600000041091f00000000000100030000000000000000000000 ....A..................... +7795 21.045528889 127.0.0.1:57415 127.0.0.1:57433 3331604226 12 fffffffff69e0a0000000000 ............ +7800 21.093125582 127.0.0.1:57415 127.0.0.1:57433 3331604238 12 1a00000046c00a0000000000 ....F....... +7802 21.093281507 127.0.0.1:57415 127.0.0.1:57433 3331604250 26 16000000548f6340e25e314001000300000043091f0000000000 ....T.c@.^1@......C....... +7804 21.093580484 127.0.0.1:57433 127.0.0.1:57415 375923176 12 ffffffff46c00a0000000000 ....F....... +7806 21.094170094 127.0.0.1:57433 127.0.0.1:57415 375923188 12 16000000f79e0a0000000000 ............ +7808 21.094365835 127.0.0.1:57433 127.0.0.1:57415 375923200 22 1200000043091f000000000001000300000000000000 ....C................. +7810 21.094646215 127.0.0.1:57415 127.0.0.1:57433 3331604276 12 fffffffff79e0a0000000000 ............ +7814 21.196537495 127.0.0.1:57415 127.0.0.1:57433 3331604288 12 1a00000047c00a0000000000 ....G....... +7816 21.196708202 127.0.0.1:57415 127.0.0.1:57433 3331604300 26 16000000548f6340e25e314001000300000045091f0000000000 ....T.c@.^1@......E....... +7818 21.197005510 127.0.0.1:57433 127.0.0.1:57415 375923222 12 ffffffff47c00a0000000000 ....G....... +7820 21.197428703 127.0.0.1:57433 127.0.0.1:57415 375923234 12 16000000f89e0a0000000000 ............ +7822 21.197590828 127.0.0.1:57433 127.0.0.1:57415 375923246 22 1200000045091f000000000001000300000000000000 ....E................. +7824 21.197861671 127.0.0.1:57415 127.0.0.1:57433 3331604326 12 fffffffff89e0a0000000000 ............ +7834 21.299859762 127.0.0.1:57415 127.0.0.1:57433 3331604338 12 1a00000048c00a0000000000 ....H....... +7836 21.300044060 127.0.0.1:57415 127.0.0.1:57433 3331604350 26 16000000548f6340e25e314001000300000047091f0000000000 ....T.c@.^1@......G....... +7838 21.300518990 127.0.0.1:57433 127.0.0.1:57415 375923268 12 ffffffff48c00a0000000000 ....H....... +7840 21.301103830 127.0.0.1:57433 127.0.0.1:57415 375923280 12 16000000f99e0a0000000000 ............ +7842 21.301305294 127.0.0.1:57433 127.0.0.1:57415 375923292 22 1200000047091f000000000001000300000000000000 ....G................. +7844 21.301525831 127.0.0.1:57415 127.0.0.1:57433 3331604376 12 fffffffff99e0a0000000000 ............ +7847 21.344879627 127.0.0.1:57415 127.0.0.1:57433 3331604388 12 2200000049c00a0000000000 "...I....... +7849 21.345137596 127.0.0.1:57415 127.0.0.1:57433 3331604400 34 1e0000001c2118d0c46f33bb0100030000007e000200000000001c3d0fc39d01 .....!...o3.......~........=...... +7851 21.345287085 127.0.0.1:57415 127.0.0.1:57433 3331604434 12 430000004ac00a0000000000 C...J....... +7853 21.345376253 127.0.0.1:57415 127.0.0.1:57433 3331604446 67 3f000000980433cb0cb47c3801000300000001000000007e000200000000003d ?.....3...|8...........~.......=B.....&......... +7855 21.345465422 127.0.0.1:57433 127.0.0.1:57415 375923314 12 ffffffff49c00a0000000000 ....I....... +7857 21.345659733 127.0.0.1:57433 127.0.0.1:57415 375923326 12 ffffffff4ac00a0000000000 ....J....... +7859 21.346802473 127.0.0.1:57433 127.0.0.1:57415 375923338 12 34000000fa9e0a0000000000 4........... +7861 21.346999407 127.0.0.1:57433 127.0.0.1:57415 375923350 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....~.........H..v +7863 21.347271442 127.0.0.1:57415 127.0.0.1:57433 3331604513 12 fffffffffa9e0a0000000000 ............ +7865 21.348037958 127.0.0.1:57415 127.0.0.1:57433 3331604525 12 1e0000004bc00a0000000000 ....K....... +7867 21.348288298 127.0.0.1:57415 127.0.0.1:57433 3331604537 30 1a00000055ceff62b21b3a5001000300000049091f000000000000000000 ....U..b..:P......I........... +7869 21.348718643 127.0.0.1:57433 127.0.0.1:57415 375923402 12 ffffffff4bc00a0000000000 ....K....... +7871 21.349103212 127.0.0.1:57433 127.0.0.1:57415 375923414 12 1a000000fb9e0a0000000000 ............ +7873 21.349241018 127.0.0.1:57433 127.0.0.1:57415 375923426 26 1600000049091f00000000000100030000000000000000000000 ....I..................... +7875 21.349513769 127.0.0.1:57415 127.0.0.1:57433 3331604567 12 fffffffffb9e0a0000000000 ............ +7879 21.360555172 127.0.0.1:57433 127.0.0.1:57415 375923452 12 feffffff8d3801009e380100 .....8...8.. +7885 21.402431250 127.0.0.1:57415 127.0.0.1:57433 3331604579 12 1a0000004cc00a0000000000 ....L....... +7887 21.402597189 127.0.0.1:57415 127.0.0.1:57433 3331604591 26 16000000548f6340e25e31400100030000004b091f0000000000 ....T.c@.^1@......K....... +7889 21.403010607 127.0.0.1:57433 127.0.0.1:57415 375923464 12 ffffffff4cc00a0000000000 ....L....... +7891 21.403439999 127.0.0.1:57433 127.0.0.1:57415 375923476 12 16000000fc9e0a0000000000 ............ +7893 21.403601885 127.0.0.1:57433 127.0.0.1:57415 375923488 22 120000004b091f000000000001000300000000000000 ....K................. +7895 21.403858423 127.0.0.1:57415 127.0.0.1:57433 3331604617 12 fffffffffc9e0a0000000000 ............ +7940 21.486252546 127.0.0.1:57415 127.0.0.1:57433 3331604629 12 feffffff9f3801008d380100 .....8...8.. +7944 21.505446911 127.0.0.1:57415 127.0.0.1:57433 3331604641 12 1a0000004dc00a0000000000 ....M....... +7946 21.505613089 127.0.0.1:57415 127.0.0.1:57433 3331604653 26 16000000548f6340e25e31400100030000004d091f0000000000 ....T.c@.^1@......M....... +7948 21.505983353 127.0.0.1:57433 127.0.0.1:57415 375923510 12 ffffffff4dc00a0000000000 ....M....... +7950 21.506322384 127.0.0.1:57433 127.0.0.1:57415 375923522 12 16000000fd9e0a0000000000 ............ +7952 21.506490707 127.0.0.1:57433 127.0.0.1:57415 375923534 22 120000004d091f000000000001000300000000000000 ....M................. +7954 21.506752491 127.0.0.1:57415 127.0.0.1:57433 3331604679 12 fffffffffd9e0a0000000000 ............ +7963 21.608588457 127.0.0.1:57415 127.0.0.1:57433 3331604691 12 1a0000004ec00a0000000000 ....N....... +7965 21.608759165 127.0.0.1:57415 127.0.0.1:57433 3331604703 26 16000000548f6340e25e31400100030000004f091f0000000000 ....T.c@.^1@......O....... +7967 21.609129190 127.0.0.1:57433 127.0.0.1:57415 375923556 12 ffffffff4ec00a0000000000 ....N....... +7969 21.609637737 127.0.0.1:57433 127.0.0.1:57415 375923568 12 16000000fe9e0a0000000000 ............ +7971 21.609799623 127.0.0.1:57433 127.0.0.1:57415 375923580 22 120000004f091f000000000001000300000000000000 ....O................. +7973 21.610037565 127.0.0.1:57415 127.0.0.1:57433 3331604729 12 fffffffffe9e0a0000000000 ............ +7976 21.648938417 127.0.0.1:57415 127.0.0.1:57433 3331604741 12 650000004fc00a0000000000 e...O....... +7978 21.649102211 127.0.0.1:57415 127.0.0.1:57433 3331604753 101 1e0000001c2118d0c46f33bb0100030000007f000200000000004c3e0fc39d01 .....!...o3...............L>......?.....3...|8.. +7980 21.649456263 127.0.0.1:57433 127.0.0.1:57415 375923602 12 ffffffff4fc00a0000000000 ....O....... +7982 21.650440216 127.0.0.1:57433 127.0.0.1:57415 375923614 12 34000000ff9e0a0000000000 4........... +7984 21.650646448 127.0.0.1:57433 127.0.0.1:57415 375923626 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................w +7986 21.650913239 127.0.0.1:57415 127.0.0.1:57433 3331604854 12 ffffffffff9e0a0000000000 ............ +7988 21.651692867 127.0.0.1:57415 127.0.0.1:57433 3331604866 12 1e00000050c00a0000000000 ....P....... +7990 21.651827812 127.0.0.1:57415 127.0.0.1:57433 3331604878 30 1a00000055ceff62b21b3a5001000300000051091f000000000000000000 ....U..b..:P......Q........... +7992 21.652243853 127.0.0.1:57433 127.0.0.1:57415 375923678 12 ffffffff50c00a0000000000 ....P....... +7994 21.652700424 127.0.0.1:57433 127.0.0.1:57415 375923690 12 1a000000009f0a0000000000 ............ +7996 21.652849197 127.0.0.1:57433 127.0.0.1:57415 375923702 26 1600000051091f00000000000100030000000000000000000000 ....Q..................... +7998 21.653087616 127.0.0.1:57415 127.0.0.1:57433 3331604908 12 ffffffff009f0a0000000000 ............ +8000 21.711639404 127.0.0.1:57415 127.0.0.1:57433 3331604920 12 1a00000051c00a0000000000 ....Q....... +8002 21.711793423 127.0.0.1:57415 127.0.0.1:57433 3331604932 26 16000000548f6340e25e314001000300000053091f0000000000 ....T.c@.^1@......S....... +8004 21.712150097 127.0.0.1:57433 127.0.0.1:57415 375923728 12 ffffffff51c00a0000000000 ....Q....... +8006 21.712574482 127.0.0.1:57433 127.0.0.1:57415 375923740 12 16000000019f0a0000000000 ............ +8008 21.712769032 127.0.0.1:57433 127.0.0.1:57415 375923752 22 1200000053091f000000000001000300000000000000 ....S................. +8010 21.713069439 127.0.0.1:57415 127.0.0.1:57433 3331604958 12 ffffffff019f0a0000000000 ............ +8015 21.814455271 127.0.0.1:57415 127.0.0.1:57433 3331604970 12 1a00000052c00a0000000000 ....R....... +8017 21.814634323 127.0.0.1:57415 127.0.0.1:57433 3331604982 26 16000000548f6340e25e314001000300000055091f0000000000 ....T.c@.^1@......U....... +8019 21.814982653 127.0.0.1:57433 127.0.0.1:57415 375923774 12 ffffffff52c00a0000000000 ....R....... +8021 21.815608978 127.0.0.1:57433 127.0.0.1:57415 375923786 12 16000000029f0a0000000000 ............ +8023 21.815819740 127.0.0.1:57433 127.0.0.1:57415 375923798 22 1200000055091f000000000001000300000000000000 ....U................. +8025 21.816047192 127.0.0.1:57415 127.0.0.1:57433 3331605008 12 ffffffff029f0a0000000000 ............ +8031 21.861489058 127.0.0.1:57433 127.0.0.1:57415 375923820 12 feffffff8e3801009f380100 .....8...8.. +8038 21.918502331 127.0.0.1:57415 127.0.0.1:57433 3331605020 12 1a00000053c00a0000000000 ....S....... +8040 21.918676615 127.0.0.1:57415 127.0.0.1:57433 3331605032 26 16000000548f6340e25e314001000300000057091f0000000000 ....T.c@.^1@......W....... +8042 21.919028282 127.0.0.1:57433 127.0.0.1:57415 375923832 12 ffffffff53c00a0000000000 ....S....... +8044 21.919646740 127.0.0.1:57433 127.0.0.1:57415 375923844 12 16000000039f0a0000000000 ............ +8046 21.919928789 127.0.0.1:57433 127.0.0.1:57415 375923856 22 1200000057091f000000000001000300000000000000 ....W................. +8048 21.920210361 127.0.0.1:57415 127.0.0.1:57433 3331605058 12 ffffffff039f0a0000000000 ............ +8054 21.952646494 127.0.0.1:57415 127.0.0.1:57433 3331605070 12 2200000054c00a0000000000 "...T....... +8056 21.952859402 127.0.0.1:57415 127.0.0.1:57433 3331605082 34 1e0000001c2118d0c46f33bb01000300000080000200000000007c3f0fc39d01 .....!...o3...............|?...... +8058 21.952985525 127.0.0.1:57415 127.0.0.1:57433 3331605116 12 4300000055c00a0000000000 C...U....... +8060 21.953069925 127.0.0.1:57415 127.0.0.1:57433 3331605128 67 3f000000980433cb0cb47c38010003000000010000000080000200000000003d ?.....3...|8...................=B.....&......... +8062 21.953229427 127.0.0.1:57433 127.0.0.1:57415 375923878 12 ffffffff54c00a0000000000 ....T....... +8064 21.953413725 127.0.0.1:57433 127.0.0.1:57415 375923890 12 ffffffff55c00a0000000000 ....U....... +8066 21.954448700 127.0.0.1:57433 127.0.0.1:57415 375923902 12 34000000049f0a0000000000 4........... +8068 21.954603672 127.0.0.1:57433 127.0.0.1:57415 375923914 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............Vf3w +8070 21.954931259 127.0.0.1:57415 127.0.0.1:57433 3331605195 12 ffffffff049f0a0000000000 ............ +8072 21.955627918 127.0.0.1:57415 127.0.0.1:57433 3331605207 12 1e00000056c00a0000000000 ....V....... +8074 21.955798149 127.0.0.1:57415 127.0.0.1:57433 3331605219 30 1a00000055ceff62b21b3a5001000300000059091f000000000000000000 ....U..b..:P......Y........... +8076 21.956079721 127.0.0.1:57433 127.0.0.1:57415 375923966 12 ffffffff56c00a0000000000 ....V....... +8078 21.956492662 127.0.0.1:57433 127.0.0.1:57415 375923978 12 1a000000059f0a0000000000 ............ +8080 21.956636667 127.0.0.1:57433 127.0.0.1:57415 375923990 26 1600000059091f00000000000100030000000000000000000000 ....Y..................... +8082 21.956944704 127.0.0.1:57415 127.0.0.1:57433 3331605249 12 ffffffff059f0a0000000000 ............ +8084 21.988096714 127.0.0.1:57415 127.0.0.1:57433 3331605261 12 feffffffa03801008e380100 .....8...8.. +8092 22.021260262 127.0.0.1:57415 127.0.0.1:57433 3331605273 12 1a00000057c00a0000000000 ....W....... +8094 22.021418571 127.0.0.1:57415 127.0.0.1:57433 3331605285 26 16000000548f6340e25e31400100030000005b091f0000000000 ....T.c@.^1@......[....... +8096 22.021746159 127.0.0.1:57433 127.0.0.1:57415 375924016 12 ffffffff57c00a0000000000 ....W....... +8098 22.022252798 127.0.0.1:57433 127.0.0.1:57415 375924028 12 16000000069f0a0000000000 ............ +8100 22.022401810 127.0.0.1:57433 127.0.0.1:57415 375924040 22 120000005b091f000000000001000300000000000000 ....[................. +8102 22.022729158 127.0.0.1:57415 127.0.0.1:57433 3331605311 12 ffffffff069f0a0000000000 ............ +8115 22.125372887 127.0.0.1:57415 127.0.0.1:57433 3331605323 12 1a00000058c00a0000000000 ....X....... +8117 22.125564575 127.0.0.1:57415 127.0.0.1:57433 3331605335 26 16000000548f6340e25e31400100030000005d091f0000000000 ....T.c@.^1@......]....... +8119 22.126020908 127.0.0.1:57433 127.0.0.1:57415 375924062 12 ffffffff58c00a0000000000 ....X....... +8121 22.126406431 127.0.0.1:57433 127.0.0.1:57415 375924074 12 16000000079f0a0000000000 ............ +8123 22.126566172 127.0.0.1:57433 127.0.0.1:57415 375924086 22 120000005d091f000000000001000300000000000000 ....]................. +8125 22.126951694 127.0.0.1:57415 127.0.0.1:57433 3331605361 12 ffffffff079f0a0000000000 ............ +611 0.000000000 ::1:55840 ::1:49704 2977462135 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +613 0.000390291 ::1:49704 ::1:55840 2344940942 84 05000c03100000005400000002000000d016d016b6b900000600343937303400 ........T.................49704..........]...... +615 0.000541449 ::1:55840 ::1:49704 2977462251 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +617 0.000767946 ::1:49704 ::1:55840 2344941026 44 05000203100000002c00000002000000140000000000000000000000c40e241d ........,.....................$....J....<.jx +619 0.000974655 ::1:55840 ::1:49704 2977462291 72 05000e03100000004800000003000000d016d016b6b900000100000001000100 ........H.......................K....k.F.@.`..Q. +621 0.001127481 ::1:49704 ::1:55840 2344941070 56 05000f03100000003800000003000000d016d016b6b900000000000001000000 ........8............................].......... +623 0.001311064 ::1:55840 ::1:49704 2977462363 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K..........$. +625 0.002803564 ::1:49704 ::1:55840 2344941126 28 05000203100000001c00000003000000040000000100000001000000 ............................ +627 0.002973795 ::1:55840 ::1:49704 2977462459 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........$. +629 0.003149748 ::1:49704 ::1:55840 2344941154 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +631 0.003448009 ::1:55840 ::1:49704 2977462519 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........$. +633 0.003631592 ::1:49704 ::1:55840 2344941246 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +635 0.003790855 ::1:55840 ::1:49704 2977462639 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........$. +637 0.003954172 ::1:49704 ::1:55840 2344941278 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +639 0.004108429 ::1:55840 ::1:49704 2977462763 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K..........$. +641 0.004358530 ::1:49704 ::1:55840 2344941310 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +643 0.004521132 ::1:55840 ::1:49704 2977462881 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........$. +645 0.004693270 ::1:49704 ::1:55840 2344941342 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +647 0.004847765 ::1:55840 ::1:49704 2977463001 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........$. +649 0.005021095 ::1:49704 ::1:55840 2344941374 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +651 0.005173683 ::1:55840 ::1:49704 2977463131 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........$. +653 0.005386114 ::1:49704 ::1:55840 2344941406 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +655 0.005558729 ::1:55840 ::1:49704 2977463261 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........$. +657 0.005720139 ::1:49704 ::1:55840 2344941438 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +659 0.005870342 ::1:55840 ::1:49704 2977463403 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K..........$. +661 0.006029129 ::1:49704 ::1:55840 2344941470 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +663 0.006334305 ::1:55840 ::1:49704 2977463519 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........$. +665 0.006498814 ::1:49704 ::1:55840 2344941502 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +667 0.006652355 ::1:55840 ::1:49704 2977463649 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........$. +669 0.006812572 ::1:49704 ::1:55840 2344941534 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +671 0.006962538 ::1:55840 ::1:49704 2977463777 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K..........$. +673 0.007121325 ::1:49704 ::1:55840 2344941566 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +675 0.007713318 ::1:55840 ::1:49704 2977463903 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........$. +677 0.007875443 ::1:49704 ::1:55840 2344941598 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +679 0.008077621 ::1:55840 ::1:49704 2977464035 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........$. +681 0.008239746 ::1:49704 ::1:55840 2344941630 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +728 0.129045963 ::1:55840 ::1:49704 2977464187 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +730 0.129302979 ::1:49704 ::1:55840 2344941662 44 05000203100000002c0000001200000014000000000000000000000051d33468 ........,...................Q.4h^|.J....4.Wg +732 0.129876852 ::1:55840 ::1:49704 2977464227 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........Q.4h +734 0.131438494 ::1:49704 ::1:55840 2344941706 28 05000203100000001c00000013000000040000000100000001000000 ............................ +736 0.131633043 ::1:55840 ::1:49704 2977464335 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........Q.4h +738 0.131814241 ::1:49704 ::1:55840 2344941734 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +740 0.132059336 ::1:55840 ::1:49704 2977464395 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Q.4h +742 0.132235527 ::1:49704 ::1:55840 2344941826 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +744 0.132392645 ::1:55840 ::1:49704 2977464527 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........Q.4h +746 0.132775545 ::1:49704 ::1:55840 2344941858 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +748 0.132943392 ::1:55840 ::1:49704 2977464663 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........Q.4h +750 0.133112431 ::1:49704 ::1:55840 2344941890 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +752 0.133263826 ::1:55840 ::1:49704 2977464793 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Q.4h +754 0.133422375 ::1:49704 ::1:55840 2344941922 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +756 0.133573055 ::1:55840 ::1:49704 2977464925 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Q.4h +758 0.133787870 ::1:49704 ::1:55840 2344941954 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +760 0.133939505 ::1:55840 ::1:49704 2977465067 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Q.4h +762 0.134098291 ::1:49704 ::1:55840 2344941986 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +764 0.134249210 ::1:55840 ::1:49704 2977465209 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........Q.4h +766 0.134406567 ::1:49704 ::1:55840 2344942018 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +768 0.134556293 ::1:55840 ::1:49704 2977465363 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........Q.4h +770 0.134765387 ::1:49704 ::1:55840 2344942050 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +772 0.134917736 ::1:55840 ::1:49704 2977465491 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Q.4h +774 0.135076284 ::1:49704 ::1:55840 2344942082 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +776 0.135230780 ::1:55840 ::1:49704 2977465633 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........Q.4h +778 0.135390520 ::1:49704 ::1:55840 2344942114 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +780 0.135578632 ::1:55840 ::1:49704 2977465773 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Q.4h +782 0.135817289 ::1:49704 ::1:55840 2344942146 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +788 0.153560638 ::1:55840 ::1:49704 2977465911 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +790 0.153720140 ::1:49704 ::1:55840 2344942178 44 05000203100000002c00000020000000140000000000000000000000fe2ba58f ........,... ................+.....F.k>.T... +792 0.153919935 ::1:55840 ::1:49704 2977465951 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K.........+.. +794 0.155527830 ::1:49704 ::1:55840 2344942222 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +796 0.155739784 ::1:55840 ::1:49704 2977466055 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K.........+.. +798 0.155921459 ::1:49704 ::1:55840 2344942250 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +800 0.156168222 ::1:55840 ::1:49704 2977466115 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K.........+.. +802 0.156393290 ::1:49704 ::1:55840 2344942342 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +804 0.156583548 ::1:55840 ::1:49704 2977466243 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K.........+.. +806 0.156757832 ::1:49704 ::1:55840 2344942374 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +808 0.156979322 ::1:55840 ::1:49704 2977466375 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K.........+.. +810 0.157407522 ::1:49704 ::1:55840 2344942406 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +812 0.157588720 ::1:55840 ::1:49704 2977466501 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K.........+.. +814 0.157840729 ::1:49704 ::1:55840 2344942438 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +816 0.158050060 ::1:55840 ::1:49704 2977466629 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K.........+.. +818 0.158242464 ::1:49704 ::1:55840 2344942470 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +820 0.158403397 ::1:55840 ::1:49704 2977466767 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K.........+.. +822 0.158580542 ::1:49704 ::1:55840 2344942502 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +824 0.158731461 ::1:55840 ::1:49704 2977466905 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K.........+.. +826 0.158910990 ::1:49704 ::1:55840 2344942534 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +828 0.159105062 ::1:55840 ::1:49704 2977467055 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K.........+.. +830 0.159296513 ::1:49704 ::1:55840 2344942566 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +832 0.159457445 ::1:55840 ::1:49704 2977467179 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K.........+.. +834 0.159662485 ::1:49704 ::1:55840 2344942598 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +837 0.159811974 ::1:55840 ::1:49704 2977467317 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K.........+.. +839 0.159985542 ::1:49704 ::1:55840 2344942630 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +841 0.160135031 ::1:55840 ::1:49704 2977467453 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K.........+.. +843 0.160509348 ::1:49704 ::1:55840 2344942662 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +845 0.160741568 ::1:55840 ::1:49704 2977467587 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........+.. +847 0.160941601 ::1:49704 ::1:55840 2344942694 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +849 0.161102772 ::1:55840 ::1:49704 2977467727 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K.........+.. +851 0.161326408 ::1:49704 ::1:55840 2344942726 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +936 0.290163755 ::1:55840 ::1:49704 2977467873 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +938 0.290415049 ::1:49704 ::1:55840 2344942758 44 05000203100000002c000000300000001400000000000000000000008f40b158 ........,...0................@.X...A.7..8..3 +940 0.290677786 ::1:55840 ::1:49704 2977467913 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K.........@.X +942 0.292432070 ::1:49704 ::1:55840 2344942802 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +944 0.292705059 ::1:55840 ::1:49704 2977468025 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K.........@.X +946 0.292894125 ::1:49704 ::1:55840 2344942830 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +948 0.293145657 ::1:55840 ::1:49704 2977468085 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K.........@.X +950 0.293391228 ::1:49704 ::1:55840 2344942922 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +952 0.293613434 ::1:55840 ::1:49704 2977468221 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K.........@.X +954 0.293798447 ::1:49704 ::1:55840 2344942954 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +956 0.293992758 ::1:55840 ::1:49704 2977468361 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K.........@.X +958 0.294210672 ::1:49704 ::1:55840 2344942986 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +960 0.294426918 ::1:55840 ::1:49704 2977468495 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K.........@.X +962 0.294647455 ::1:49704 ::1:55840 2344943018 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +964 0.294837236 ::1:55840 ::1:49704 2977468631 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K.........@.X +966 0.295069456 ::1:49704 ::1:55840 2344943050 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +968 0.295240164 ::1:55840 ::1:49704 2977468777 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K.........@.X +970 0.295425653 ::1:49704 ::1:55840 2344943082 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +972 0.295633078 ::1:55840 ::1:49704 2977468923 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K.........@.X +974 0.295814276 ::1:49704 ::1:55840 2344943114 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +976 0.295967579 ::1:55840 ::1:49704 2977469081 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K.........@.X +978 0.296200991 ::1:49704 ::1:55840 2344943146 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +980 0.296381950 ::1:55840 ::1:49704 2977469213 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K.........@.X +982 0.296637297 ::1:49704 ::1:55840 2344943178 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +984 0.296807289 ::1:55840 ::1:49704 2977469359 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K.........@.X +986 0.297019958 ::1:49704 ::1:55840 2344943210 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +988 0.297259569 ::1:55840 ::1:49704 2977469503 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K.........@.X +990 0.297463179 ::1:49704 ::1:55840 2344943242 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +992 0.297840357 ::1:55840 ::1:49704 2977469645 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K.........@.X +994 0.298062801 ::1:49704 ::1:55840 2344943274 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +996 0.298329830 ::1:55840 ::1:49704 2977469793 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K.........@.X +998 0.298542738 ::1:49704 ::1:55840 2344943306 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +1063 0.447123051 ::1:55840 ::1:49704 2977469947 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +1065 0.447425842 ::1:49704 ::1:55840 2344943338 44 05000203100000002c000000400000001400000000000000000000003ac09456 ........,...@...............:..VHh.A..Y..... +1067 0.447622061 ::1:55840 ::1:49704 2977469987 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........:..V +1075 0.449462175 ::1:49704 ::1:55840 2344943382 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +1077 0.449638605 ::1:55840 ::1:49704 2977470079 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........:..V +1079 0.449892998 ::1:49704 ::1:55840 2344943410 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1081 0.450145245 ::1:55840 ::1:49704 2977470139 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........:..V +1083 0.450445414 ::1:49704 ::1:55840 2344943502 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1085 0.450595617 ::1:55840 ::1:49704 2977470255 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........:..V +1087 0.450791121 ::1:49704 ::1:55840 2344943534 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1089 0.450973034 ::1:55840 ::1:49704 2977470375 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........:..V +1091 0.451155901 ::1:49704 ::1:55840 2344943566 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1093 0.451350689 ::1:55840 ::1:49704 2977470489 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........:..V +1095 0.451659679 ::1:49704 ::1:55840 2344943598 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1097 0.451813936 ::1:55840 ::1:49704 2977470605 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........:..V +1099 0.452018261 ::1:49704 ::1:55840 2344943630 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1101 0.452198029 ::1:55840 ::1:49704 2977470731 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........:..V +1103 0.452389240 ::1:49704 ::1:55840 2344943662 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1105 0.452542305 ::1:55840 ::1:49704 2977470857 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........:..V +1107 0.452724457 ::1:49704 ::1:55840 2344943694 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1109 0.452874899 ::1:55840 ::1:49704 2977470995 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........:..V +1111 0.453050137 ::1:49704 ::1:55840 2344943726 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1113 0.453203440 ::1:55840 ::1:49704 2977471107 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........:..V +1115 0.453375340 ::1:49704 ::1:55840 2344943758 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1117 0.453571558 ::1:55840 ::1:49704 2977471233 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........:..V +1119 0.453745127 ::1:49704 ::1:55840 2344943790 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1121 0.453890324 ::1:55840 ::1:49704 2977471357 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........:..V +1123 0.454095364 ::1:49704 ::1:55840 2344943822 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1125 0.454273224 ::1:55840 ::1:49704 2977471479 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........:..V +1127 0.454437256 ::1:49704 ::1:55840 2344943854 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1129 0.454623699 ::1:55840 ::1:49704 2977471607 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........:..V +1131 0.454804659 ::1:49704 ::1:55840 2344943886 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1133 0.454969406 ::1:55840 ::1:49704 2977471741 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........:..V +1136 0.455142260 ::1:49704 ::1:55840 2344943918 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1140 0.455296516 ::1:55840 ::1:49704 2977471871 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........:..V +1143 0.455515862 ::1:49704 ::1:55840 2344943950 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3464 6.850693464 ::1:55840 ::1:49704 2977471999 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3466 6.850955009 ::1:49704 ::1:55840 2344943982 44 05000203100000002c00000052000000140000000000000000000000f3afbe60 ........,...R..................`.^.N....;... +3468 6.851159334 ::1:55840 ::1:49704 2977472039 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K...........` +3470 6.853059292 ::1:49704 ::1:55840 2344944026 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3472 6.853229046 ::1:55840 ::1:49704 2977472139 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K...........` +3474 6.853446007 ::1:49704 ::1:55840 2344944054 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3476 6.853691339 ::1:55840 ::1:49704 2977472199 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K...........` +3478 6.853917837 ::1:49704 ::1:55840 2344944146 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3480 6.854079962 ::1:55840 ::1:49704 2977472323 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K...........` +3482 6.854262114 ::1:49704 ::1:55840 2344944178 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3484 6.854444981 ::1:55840 ::1:49704 2977472451 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K...........` +3486 6.854627132 ::1:49704 ::1:55840 2344944210 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3488 6.854786396 ::1:55840 ::1:49704 2977472573 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K...........` +3490 6.854968548 ::1:49704 ::1:55840 2344944242 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3492 6.855127335 ::1:55840 ::1:49704 2977472697 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K...........` +3494 6.855314493 ::1:49704 ::1:55840 2344944274 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3496 6.855515718 ::1:55840 ::1:49704 2977472831 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K...........` +3498 6.855699062 ::1:49704 ::1:55840 2344944306 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3500 6.855854750 ::1:55840 ::1:49704 2977472965 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K...........` +3502 6.856034040 ::1:49704 ::1:55840 2344944338 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3504 6.856200933 ::1:55840 ::1:49704 2977473111 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K...........` +3506 6.856409073 ::1:49704 ::1:55840 2344944370 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3508 6.856575727 ::1:55840 ::1:49704 2977473231 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K...........` +3510 6.856766224 ::1:49704 ::1:55840 2344944402 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3512 6.856922150 ::1:55840 ::1:49704 2977473365 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K...........` +3514 6.857098341 ::1:49704 ::1:55840 2344944434 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3516 6.857252121 ::1:55840 ::1:49704 2977473497 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K...........` +3518 6.857454300 ::1:49704 ::1:55840 2344944466 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +3520 6.857686281 ::1:55840 ::1:49704 2977473627 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K...........` +3522 6.857870340 ::1:49704 ::1:55840 2344944498 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +3524 6.858035803 ::1:55840 ::1:49704 2977473771 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K...........` +3526 6.858213663 ::1:49704 ::1:55840 2344944530 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +3528 6.858408213 ::1:55840 ::1:49704 2977473919 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K...........` +3530 6.858586311 ::1:49704 ::1:55840 2344944562 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +3532 6.858817339 ::1:55840 ::1:49704 2977474065 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K...........` +3534 6.858999729 ::1:49704 ::1:55840 2344944594 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3560 6.929622650 ::1:55840 ::1:49704 2977474223 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3562 6.929834366 ::1:49704 ::1:55840 2344944626 44 05000203100000002c000000640000001400000000000000000000001bcc48ab ........,...d.................H..`.E..z.h.>. +3564 6.930088282 ::1:55840 ::1:49704 2977474263 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........H. +3566 6.931900740 ::1:49704 ::1:55840 2344944670 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3568 6.932149887 ::1:55840 ::1:49704 2977474347 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........H. +3570 6.932337999 ::1:49704 ::1:55840 2344944698 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3572 6.932599783 ::1:55840 ::1:49704 2977474407 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........H. +3574 6.932821512 ::1:49704 ::1:55840 2344944790 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3576 6.933055639 ::1:55840 ::1:49704 2977474515 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........H. +3578 6.933241606 ::1:49704 ::1:55840 2344944822 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3580 6.933442831 ::1:55840 ::1:49704 2977474627 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........H. +3582 6.933632612 ::1:49704 ::1:55840 2344944854 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3584 6.933804989 ::1:55840 ::1:49704 2977474733 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........H. +3586 6.934006929 ::1:49704 ::1:55840 2344944886 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3588 6.934168100 ::1:55840 ::1:49704 2977474841 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........H. +3590 6.934401751 ::1:49704 ::1:55840 2344944918 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3592 6.934570789 ::1:55840 ::1:49704 2977474959 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........H. +3594 6.934746027 ::1:49704 ::1:55840 2344944950 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3596 6.934909821 ::1:55840 ::1:49704 2977475077 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........H. +3598 6.935159445 ::1:49704 ::1:55840 2344944982 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3600 6.935321331 ::1:55840 ::1:49704 2977475207 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........H. +3602 6.935492992 ::1:49704 ::1:55840 2344945014 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3604 6.935654879 ::1:55840 ::1:49704 2977475311 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........H. +3606 6.935827971 ::1:49704 ::1:55840 2344945046 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3608 6.936014652 ::1:55840 ::1:49704 2977475429 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........H. +3610 6.936189651 ::1:49704 ::1:55840 2344945078 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3612 6.936377048 ::1:55840 ::1:49704 2977475545 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........H. +3614 6.936559439 ::1:49704 ::1:55840 2344945110 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3616 6.937170982 ::1:55840 ::1:49704 2977475659 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........H. +3618 6.937335730 ::1:49704 ::1:55840 2344945142 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3620 6.937566996 ::1:55840 ::1:49704 2977475787 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........H. +3622 6.937742949 ::1:49704 ::1:55840 2344945174 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3624 6.937974453 ::1:55840 ::1:49704 2977475907 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........H. +3626 6.938144445 ::1:49704 ::1:55840 2344945206 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3628 6.938381672 ::1:55840 ::1:49704 2977476027 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........H. +3630 6.938555241 ::1:49704 ::1:55840 2344945238 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3632 6.938767433 ::1:55840 ::1:49704 2977476149 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........H. +3634 6.938961029 ::1:49704 ::1:55840 2344945270 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3636 6.939167500 ::1:55840 ::1:49704 2977476283 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........H. +3638 6.939329147 ::1:49704 ::1:55840 2344945302 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3640 6.939526320 ::1:55840 ::1:49704 2977476415 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........H. +3642 6.939690590 ::1:49704 ::1:55840 2344945334 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3644 6.939891338 ::1:55840 ::1:49704 2977476545 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........H. +3646 6.940213203 ::1:49704 ::1:55840 2344945366 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3648 6.940420151 ::1:55840 ::1:49704 2977476683 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........H. +3650 6.940599680 ::1:49704 ::1:55840 2344945398 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3652 6.940844774 ::1:55840 ::1:49704 2977476827 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........H. +3654 6.941064358 ::1:49704 ::1:55840 2344945430 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3656 6.941284895 ::1:55840 ::1:49704 2977476971 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........H. +3658 6.941458464 ::1:49704 ::1:55840 2344945462 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3660 6.941653013 ::1:55840 ::1:49704 2977477087 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........H. +3662 6.941861868 ::1:49704 ::1:55840 2344945494 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3664 6.942135572 ::1:55840 ::1:49704 2977477217 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........H. +3666 6.942395449 ::1:49704 ::1:55840 2344945526 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3668 6.942627430 ::1:55840 ::1:49704 2977477355 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........H. +3670 6.942821741 ::1:49704 ::1:55840 2344945558 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3672 6.943048239 ::1:55840 ::1:49704 2977477485 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........H. +3674 6.943207979 ::1:49704 ::1:55840 2344945590 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3676 6.943403959 ::1:55840 ::1:49704 2977477607 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........H. +3678 6.943570137 ::1:49704 ::1:55840 2344945622 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3680 6.943770885 ::1:55840 ::1:49704 2977477729 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........H. +3682 6.944482803 ::1:49704 ::1:55840 2344945654 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3684 6.944689989 ::1:55840 ::1:49704 2977477863 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........H. +3686 6.944857836 ::1:49704 ::1:55840 2344945686 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3688 6.945085764 ::1:55840 ::1:49704 2977477991 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........H. +3690 6.945240736 ::1:49704 ::1:55840 2344945718 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3722 6.977007389 ::1:55840 ::1:49704 2977478115 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........H. +3724 6.977236748 ::1:49704 ::1:55840 2344945750 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3747 7.012873888 ::1:55840 ::1:49704 2977478631 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3749 7.013242006 ::1:49704 ::1:55840 2344945778 44 05000203100000002c0000008600000014000000000000000000000027d64b66 ........,...................'.Kf.w}I..a~.|H. +3751 7.013449669 ::1:55840 ::1:49704 2977478671 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........'.Kf +3753 7.015265703 ::1:49704 ::1:55840 2344945822 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3755 7.015442133 ::1:55840 ::1:49704 2977478783 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........'.Kf +3757 7.015648603 ::1:49704 ::1:55840 2344945850 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3759 7.015893459 ::1:55840 ::1:49704 2977478843 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'.Kf +3761 7.016112566 ::1:49704 ::1:55840 2344945942 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3763 7.016275167 ::1:55840 ::1:49704 2977478979 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'.Kf +3765 7.016448021 ::1:49704 ::1:55840 2344945974 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3767 7.016609907 ::1:55840 ::1:49704 2977479119 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........'.Kf +3769 7.016778708 ::1:49704 ::1:55840 2344946006 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3771 7.016940355 ::1:55840 ::1:49704 2977479253 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........'.Kf +3773 7.017110586 ::1:49704 ::1:55840 2344946038 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3775 7.017269373 ::1:55840 ::1:49704 2977479389 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3777 7.017435551 ::1:49704 ::1:55840 2344946070 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3779 7.017597437 ::1:55840 ::1:49704 2977479535 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3781 7.017765045 ::1:49704 ::1:55840 2344946102 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3783 7.017926931 ::1:55840 ::1:49704 2977479681 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........'.Kf +3785 7.018147469 ::1:49704 ::1:55840 2344946134 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3787 7.018344641 ::1:55840 ::1:49704 2977479839 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........'.Kf +3789 7.018512487 ::1:49704 ::1:55840 2344946166 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3791 7.018675089 ::1:55840 ::1:49704 2977479971 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3793 7.018842936 ::1:49704 ::1:55840 2344946198 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3795 7.019032717 ::1:55840 ::1:49704 2977480117 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'.Kf +3797 7.019189358 ::1:49704 ::1:55840 2344946230 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3799 7.019356489 ::1:55840 ::1:49704 2977480261 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........'.Kf +3801 7.019524097 ::1:49704 ::1:55840 2344946262 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3803 7.019732475 ::1:55840 ::1:49704 2977480403 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........'.Kf +3805 7.019898891 ::1:49704 ::1:55840 2344946294 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3807 7.020092964 ::1:55840 ::1:49704 2977480563 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........'.Kf +3809 7.020262003 ::1:49704 ::1:55840 2344946326 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3811 7.020452261 ::1:55840 ::1:49704 2977480719 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'.Kf +3813 7.020620823 ::1:49704 ::1:55840 2344946358 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3815 7.020802975 ::1:55840 ::1:49704 2977480873 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........'.Kf +3817 7.020975828 ::1:49704 ::1:55840 2344946390 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3819 7.021195650 ::1:55840 ::1:49704 2977481019 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........'.Kf +3821 7.021366596 ::1:49704 ::1:55840 2344946422 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3823 7.021540403 ::1:55840 ::1:49704 2977481173 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........'.Kf +3825 7.021775007 ::1:49704 ::1:55840 2344946454 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3827 7.021946430 ::1:55840 ::1:49704 2977481323 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........'.Kf +3829 7.022330761 ::1:49704 ::1:55840 2344946486 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3831 7.022497892 ::1:55840 ::1:49704 2977481475 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........'.Kf +3833 7.022662163 ::1:49704 ::1:55840 2344946518 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3835 7.022916555 ::1:55840 ::1:49704 2977481615 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........'.Kf +3837 7.023131609 ::1:49704 ::1:55840 2344946550 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3839 7.023298979 ::1:55840 ::1:49704 2977481763 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........'.Kf +3841 7.023463964 ::1:49704 ::1:55840 2344946582 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3843 7.023672819 ::1:55840 ::1:49704 2977481925 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........'.Kf +3845 7.023912907 ::1:49704 ::1:55840 2344946614 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3847 7.024099827 ::1:55840 ::1:49704 2977482097 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........'.Kf +3849 7.024263382 ::1:49704 ::1:55840 2344946646 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3855 7.031864643 ::1:55840 ::1:49704 2977482241 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3857 7.032054901 ::1:49704 ::1:55840 2344946678 44 05000203100000002c000000a0000000140000000000000000000000f90c4f39 ........,.....................O9.v.E."...>E. +3859 7.032248974 ::1:55840 ::1:49704 2977482281 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K..........O9 +3861 7.033789158 ::1:49704 ::1:55840 2344946722 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3863 7.033997774 ::1:55840 ::1:49704 2977482409 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........O9 +3865 7.034161329 ::1:49704 ::1:55840 2344946750 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3867 7.034413815 ::1:55840 ::1:49704 2977482469 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........O9 +3869 7.034613132 ::1:49704 ::1:55840 2344946842 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3871 7.034784555 ::1:55840 ::1:49704 2977482621 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K..........O9 +3873 7.034957886 ::1:49704 ::1:55840 2344946874 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3875 7.035142660 ::1:55840 ::1:49704 2977482777 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........O9 +3877 7.035315990 ::1:49704 ::1:55840 2344946906 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3879 7.035477638 ::1:55840 ::1:49704 2977482927 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........O9 +3881 7.035650015 ::1:49704 ::1:55840 2344946938 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3883 7.035811186 ::1:55840 ::1:49704 2977483079 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........O9 +3885 7.036006689 ::1:49704 ::1:55840 2344946970 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3887 7.036156416 ::1:55840 ::1:49704 2977483241 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........O9 +3889 7.036324978 ::1:49704 ::1:55840 2344947002 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3891 7.036485195 ::1:55840 ::1:49704 2977483403 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K..........O9 +3893 7.036656857 ::1:49704 ::1:55840 2344947034 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3895 7.036819458 ::1:55840 ::1:49704 2977483577 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K..........O9 +3897 7.037014961 ::1:49704 ::1:55840 2344947066 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3899 7.037167549 ::1:55840 ::1:49704 2977483725 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........O9 +3901 7.037336588 ::1:49704 ::1:55840 2344947098 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3903 7.037497044 ::1:55840 ::1:49704 2977483887 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K..........O9 +3905 7.037666559 ::1:49704 ::1:55840 2344947130 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3907 7.037894487 ::1:55840 ::1:49704 2977484047 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K..........O9 +3909 7.038134813 ::1:49704 ::1:55840 2344947162 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3911 7.038373470 ::1:55840 ::1:49704 2977484205 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K..........O9 +3913 7.038547516 ::1:49704 ::1:55840 2344947194 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3915 7.038743973 ::1:55840 ::1:49704 2977484375 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K..........O9 +3917 7.038919687 ::1:49704 ::1:55840 2344947226 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3927 7.046331644 ::1:55840 ::1:49704 2977484557 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3929 7.046526432 ::1:49704 ::1:55840 2344947258 44 05000203100000002c000000b000000014000000000000000000000057895ea8 ........,...................W.^.%..D.....c.. +3931 7.046718597 ::1:55840 ::1:49704 2977484597 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K........W.^. +3933 7.048359632 ::1:49704 ::1:55840 2344947302 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3935 7.048597336 ::1:55840 ::1:49704 2977484693 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........W.^. +3937 7.048800230 ::1:49704 ::1:55840 2344947330 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3939 7.049080610 ::1:55840 ::1:49704 2977484753 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........W.^. +3941 7.049250126 ::1:49704 ::1:55840 2344947422 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3943 7.049451828 ::1:55840 ::1:49704 2977484873 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........W.^. +3945 7.049656630 ::1:49704 ::1:55840 2344947454 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3947 7.049830914 ::1:55840 ::1:49704 2977484997 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K........W.^. +3949 7.050026655 ::1:49704 ::1:55840 2344947486 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3951 7.050191641 ::1:55840 ::1:49704 2977485115 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........W.^. +3953 7.050353765 ::1:49704 ::1:55840 2344947518 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3955 7.050512552 ::1:55840 ::1:49704 2977485235 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3957 7.050678015 ::1:49704 ::1:55840 2344947550 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3959 7.050832510 ::1:55840 ::1:49704 2977485365 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3961 7.051021338 ::1:49704 ::1:55840 2344947582 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3963 7.051470995 ::1:55840 ::1:49704 2977485495 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........W.^. +3965 7.051635742 ::1:49704 ::1:55840 2344947614 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3967 7.051793337 ::1:55840 ::1:49704 2977485637 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K........W.^. +3969 7.051955938 ::1:49704 ::1:55840 2344947646 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3971 7.052317619 ::1:55840 ::1:49704 2977485753 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3973 7.052493811 ::1:49704 ::1:55840 2344947678 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3975 7.052719593 ::1:55840 ::1:49704 2977485883 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........W.^. +3977 7.052901030 ::1:49704 ::1:55840 2344947710 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3979 7.053186655 ::1:55840 ::1:49704 2977486011 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........W.^. +3981 7.053380013 ::1:49704 ::1:55840 2344947742 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3983 7.053684950 ::1:55840 ::1:49704 2977486137 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........W.^. +3985 7.053863287 ::1:49704 ::1:55840 2344947774 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3987 7.054110527 ::1:55840 ::1:49704 2977486263 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........W.^. +3989 7.054285288 ::1:49704 ::1:55840 2344947806 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3991 7.054499388 ::1:55840 ::1:49704 2977486395 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........W.^. +3993 7.054686308 ::1:49704 ::1:55840 2344947838 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3995 7.054902792 ::1:55840 ::1:49704 2977486525 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........W.^. +3997 7.055128574 ::1:49704 ::1:55840 2344947870 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3999 7.055345297 ::1:55840 ::1:49704 2977486663 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........W.^. +4001 7.055522919 ::1:49704 ::1:55840 2344947902 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4003 7.055737972 ::1:55840 ::1:49704 2977486799 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........W.^. +4005 7.055916548 ::1:49704 ::1:55840 2344947934 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4007 7.056221485 ::1:55840 ::1:49704 2977486931 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........W.^. +4009 7.056397676 ::1:49704 ::1:55840 2344947966 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4011 7.056620598 ::1:55840 ::1:49704 2977487073 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........W.^. +4013 7.056795359 ::1:49704 ::1:55840 2344947998 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4029 7.096351385 ::1:55840 ::1:49704 2977487221 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........H. +4031 7.096625566 ::1:49704 ::1:55840 2344948030 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4068 7.172968149 ::1:55840 ::1:49704 2977487511 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........H. +4070 7.173411131 ::1:49704 ::1:55840 2344948058 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +6861 0.000000000 fe80::3608:256c:365:cc73:55876 fe80::3608:256c:365:cc73:55555 3741656038 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +6911 0.068253994 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55876 3335804191 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +2089 0.000000000 fe80::3608:256c:365:cc73:55850 fe80::3608:256c:365:cc73:55555 331401948 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +2118 0.072237015 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55850 3261830755 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +2699 0.000000000 fe80::3608:256c:365:cc73:55855 fe80::3608:256c:365:cc73:55555 1674439160 77 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +2736 0.069498777 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55855 3535796150 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +73 0.000000000 127.0.0.1:57631 127.0.0.1:57608 2622281030 12 feffffffe5350100de370100 .....5...7.. +117 0.106537819 127.0.0.1:57608 127.0.0.1:57631 2779578408 12 feffffffdf370100e5350100 .....7...5.. +213 0.501343012 127.0.0.1:57631 127.0.0.1:57608 2622281042 12 feffffffe6350100df370100 .....5...7.. +233 0.607916355 127.0.0.1:57608 127.0.0.1:57631 2779578420 12 feffffffe0370100e6350100 .....7...5.. +311 1.002261639 127.0.0.1:57631 127.0.0.1:57608 2622281054 12 feffffffe7350100e0370100 .....5...7.. +352 1.108100891 127.0.0.1:57608 127.0.0.1:57631 2779578432 12 feffffffe1370100e7350100 .....7...5.. +471 1.503197908 127.0.0.1:57631 127.0.0.1:57608 2622281066 12 feffffffe8350100e1370100 .....5...7.. +522 1.600548029 127.0.0.1:57608 127.0.0.1:57631 2779578444 12 98020000dd2d000000000000 .....-...... +526 1.600727081 127.0.0.1:57608 127.0.0.1:57631 2779578456 664 9402000044932ca2ac77ce2800000c9b0f00000000000300000056ff91e9f0ad ....D.,..w.(..............V.....N.........n.e.t. +529 1.601127863 127.0.0.1:57631 127.0.0.1:57608 2622281078 12 ffffffffdd2d000000000000 .....-...... +546 1.608364820 127.0.0.1:57608 127.0.0.1:57631 2779579120 12 feffffffe2370100e8350100 .....7...5.. +683 1.701009989 127.0.0.1:57631 127.0.0.1:57608 2622281090 12 16000000ef37000000000000 .....7...... +685 1.701173782 127.0.0.1:57631 127.0.0.1:57608 2622281102 22 120000000c9b0f000000000000000000000000000000 ...................... +687 1.701483011 127.0.0.1:57608 127.0.0.1:57631 2779579132 12 ffffffffef37000000000000 .....7...... +689 1.702496052 127.0.0.1:57608 127.0.0.1:57631 2779579144 12 98020000de2d000000000000 .....-...... +692 1.702656746 127.0.0.1:57608 127.0.0.1:57631 2779579156 664 9402000044932ca2ac77ce2800000e9b0f00000000000300000056ff91e9f0ad ....D.,..w.(..............V.....N.........n.e.t. +697 1.703038454 127.0.0.1:57631 127.0.0.1:57608 2622281124 12 ffffffffde2d000000000000 .....-...... +865 1.902681112 127.0.0.1:57631 127.0.0.1:57608 2622281136 12 16000000f037000000000000 .....7...... +867 1.902890682 127.0.0.1:57631 127.0.0.1:57608 2622281148 22 120000000e9b0f000000000000000000000000000000 ...................... +869 1.903551340 127.0.0.1:57608 127.0.0.1:57631 2779579820 12 fffffffff037000000000000 .....7...... +1000 2.003468990 127.0.0.1:57631 127.0.0.1:57608 2622281170 12 feffffffe9350100e2370100 .....5...7.. +1015 2.096535921 127.0.0.1:57608 127.0.0.1:57631 2779579832 12 f1000000df2d000000000000 .....-...... +1017 2.096789837 127.0.0.1:57608 127.0.0.1:57631 2779579844 241 ed000000cfe7c8a3aa41373c0000109b0f000000000006000000430041003100 .........A7<..............C.A.1.8.2.2.........n. +1019 2.097178459 127.0.0.1:57631 127.0.0.1:57608 2622281182 12 ffffffffdf2d000000000000 .....-...... +1021 2.097440481 127.0.0.1:57631 127.0.0.1:57608 2622281194 12 17000000f137000000000000 .....7...... +1023 2.097607851 127.0.0.1:57631 127.0.0.1:57608 2622281206 23 13000000109b0f00000000000000000000000102000000 ....................... +1025 2.097996235 127.0.0.1:57608 127.0.0.1:57631 2779580085 12 fffffffff137000000000000 .....7...... +1027 2.098459005 127.0.0.1:57608 127.0.0.1:57631 2779580097 12 f1000000e02d000000000000 .....-...... +1029 2.098642111 127.0.0.1:57608 127.0.0.1:57631 2779580109 241 ed000000cfe7c8a3aa41373c0000129b0f000000000006000000430041003100 .........A7<..............C.A.1.8.2.2.........n. +1031 2.098968029 127.0.0.1:57631 127.0.0.1:57608 2622281229 12 ffffffffe02d000000000000 .....-...... +1033 2.099141598 127.0.0.1:57631 127.0.0.1:57608 2622281241 12 17000000f237000000000000 .....7...... +1035 2.099245071 127.0.0.1:57631 127.0.0.1:57608 2622281253 23 13000000129b0f00000000000000000000000102000000 ....................... +1037 2.099559069 127.0.0.1:57608 127.0.0.1:57631 2779580350 12 fffffffff237000000000000 .....7...... +1039 2.099955797 127.0.0.1:57608 127.0.0.1:57631 2779580362 12 f1000000e12d000000000000 .....-...... +1041 2.100109577 127.0.0.1:57608 127.0.0.1:57631 2779580374 241 ed000000cfe7c8a3aa41373c0000149b0f000000000006000000430041003100 .........A7<..............C.A.1.8.5.9.........n. +1043 2.100380898 127.0.0.1:57631 127.0.0.1:57608 2622281276 12 ffffffffe12d000000000000 .....-...... +1045 2.100538492 127.0.0.1:57631 127.0.0.1:57608 2622281288 12 17000000f337000000000000 .....7...... +1047 2.100685835 127.0.0.1:57631 127.0.0.1:57608 2622281300 23 13000000149b0f00000000000000000000000102000000 ....................... +1049 2.101098776 127.0.0.1:57608 127.0.0.1:57631 2779580615 12 fffffffff337000000000000 .....7...... +1057 2.108766079 127.0.0.1:57608 127.0.0.1:57631 2779580627 12 feffffffe3370100e9350100 .....7...5.. +1254 2.503935099 127.0.0.1:57631 127.0.0.1:57608 2622281323 12 feffffffea350100e3370100 .....5...7.. +1306 2.610108614 127.0.0.1:57608 127.0.0.1:57631 2779580639 12 feffffffe4370100ea350100 .....7...5.. +1395 2.907169580 127.0.0.1:57631 127.0.0.1:57608 2622281335 12 16010000f437000000000000 .....7...... +1397 2.907335758 127.0.0.1:57631 127.0.0.1:57608 2622281347 278 12010000cf5faafde0a35a5b00006d00000043003a005c005500730065007200 ....._....Z[..m...C.:.\.U.s.e.r.s.\.d.o.h.e.r.t. +1399 2.907495022 127.0.0.1:57631 127.0.0.1:57608 2622281625 12 23000000f537000000000000 #....7...... +1401 2.907580376 127.0.0.1:57631 127.0.0.1:57608 2622281637 35 1f00000058feec0e0a9dc86000001b0300000000000000000000000000000000 ....X......`....................... +1402 2.907660723 127.0.0.1:57608 127.0.0.1:57631 2779580651 12 fffffffff437000000000000 .....7...... +1404 2.907874823 127.0.0.1:57608 127.0.0.1:57631 2779580663 12 fffffffff537000000000000 .....7...... +1460 3.004971981 127.0.0.1:57631 127.0.0.1:57608 2622281672 12 feffffffeb350100e4370100 .....5...7.. +1510 3.110614061 127.0.0.1:57608 127.0.0.1:57631 2779580675 12 feffffffe5370100eb350100 .....7...5.. +1616 3.505169153 127.0.0.1:57631 127.0.0.1:57608 2622281684 12 feffffffec350100e5370100 .....5...7.. +1881 3.611406088 127.0.0.1:57608 127.0.0.1:57631 2779580687 12 feffffffe6370100ec350100 .....7...5.. +1945 3.813811779 127.0.0.1:57608 127.0.0.1:57631 2779580699 12 ed000000e22d000000000000 .....-...... +1947 3.813981533 127.0.0.1:57608 127.0.0.1:57631 2779580711 237 e9000000d60437fe7076ac750000169b0f0000000000620500000b0000000700 ......7.pv.u..........b...........n.e.t.1.0...0. +1949 3.814272642 127.0.0.1:57631 127.0.0.1:57608 2622281696 12 ffffffffe22d000000000000 .....-...... +1975 4.006299973 127.0.0.1:57631 127.0.0.1:57608 2622281708 12 feffffffed350100e6370100 .....5...7.. +2031 4.070624113 127.0.0.1:57608 127.0.0.1:57631 2779580948 12 16000000e32d000000000000 .....-...... +2033 4.070857048 127.0.0.1:57608 127.0.0.1:57631 2779580960 22 12000000aed518478c33e3d50000189b0f0000000000 .......G.3............ +2035 4.071201324 127.0.0.1:57631 127.0.0.1:57608 2622281720 12 ffffffffe32d000000000000 .....-...... +2037 4.092356682 127.0.0.1:57631 127.0.0.1:57608 2622281732 12 2a000000f637000000000000 *....7...... +2039 4.092544794 127.0.0.1:57631 127.0.0.1:57608 2622281744 42 26000000189b0f000000000000000000000000d0bd2700000000a0b2e2140000 &....................'.............@.5.... +2041 4.092918158 127.0.0.1:57608 127.0.0.1:57631 2779580982 12 fffffffff637000000000000 .....7...... +2049 4.111074209 127.0.0.1:57608 127.0.0.1:57631 2779580994 12 feffffffe7370100ed350100 .....7...5.. +2155 4.259065390 127.0.0.1:57631 127.0.0.1:57608 2622281786 12 e40a0000f737000000000000 .....7...... +2157 4.259232759 127.0.0.1:57631 127.0.0.1:57608 2622281798 2788 e00a0000169b0f000000000000000000000003000000590000004d0065006d00 ......................Y...M.e.m.b.e.r. .'.R.e.a. +2159 4.259660482 127.0.0.1:57608 127.0.0.1:57631 2779581006 12 fffffffff737000000000000 .....7...... +2161 4.261636257 127.0.0.1:57608 127.0.0.1:57631 2779581018 12 f1000000e42d000000000000 .....-...... +2163 4.261793613 127.0.0.1:57608 127.0.0.1:57631 2779581030 241 ed000000cfe7c8a3aa41373c00001a9b0f000000000006000000430041003100 .........A7<..............C.A.1.8.2.2.........n. +2165 4.262057781 127.0.0.1:57631 127.0.0.1:57608 2622284586 12 ffffffffe42d000000000000 .....-...... +2167 4.262283087 127.0.0.1:57631 127.0.0.1:57608 2622284598 12 17000000f837000000000000 .....7...... +2169 4.262436628 127.0.0.1:57631 127.0.0.1:57608 2622284610 23 130000001a9b0f00000000000000000000000102000000 ....................... +2171 4.262808323 127.0.0.1:57608 127.0.0.1:57631 2779581271 12 fffffffff837000000000000 .....7...... +2173 4.263048649 127.0.0.1:57608 127.0.0.1:57631 2779581283 12 f1000000e52d000000000000 .....-...... +2175 4.263187408 127.0.0.1:57608 127.0.0.1:57631 2779581295 241 ed000000cfe7c8a3aa41373c00001c9b0f000000000006000000430041003100 .........A7<..............C.A.1.8.2.2.........n. +2177 4.263439417 127.0.0.1:57631 127.0.0.1:57608 2622284633 12 ffffffffe52d000000000000 .....-...... +2179 4.263664246 127.0.0.1:57631 127.0.0.1:57608 2622284645 12 17000000f937000000000000 .....7...... +2181 4.263801336 127.0.0.1:57631 127.0.0.1:57608 2622284657 23 130000001c9b0f00000000000000000000000102000000 ....................... +2183 4.264081001 127.0.0.1:57608 127.0.0.1:57631 2779581536 12 fffffffff937000000000000 .....7...... +2185 4.264411926 127.0.0.1:57608 127.0.0.1:57631 2779581548 12 f1000000e62d000000000000 .....-...... +2187 4.264591217 127.0.0.1:57608 127.0.0.1:57631 2779581560 241 ed000000cfe7c8a3aa41373c00001e9b0f000000000006000000430041003100 .........A7<..............C.A.1.8.2.2.........n. +2189 4.264839888 127.0.0.1:57631 127.0.0.1:57608 2622284680 12 ffffffffe62d000000000000 .....-...... +2191 4.264998913 127.0.0.1:57631 127.0.0.1:57608 2622284692 12 17000000fa37000000000000 .....7...... +2193 4.265136957 127.0.0.1:57631 127.0.0.1:57608 2622284704 23 130000001e9b0f00000000000000000000000102000000 ....................... +2195 4.265421867 127.0.0.1:57608 127.0.0.1:57631 2779581801 12 fffffffffa37000000000000 .....7...... +2197 4.265763998 127.0.0.1:57608 127.0.0.1:57631 2779581813 12 f1000000e72d000000000000 .....-...... +2199 4.265899897 127.0.0.1:57608 127.0.0.1:57631 2779581825 241 ed000000cfe7c8a3aa41373c0000209b0f000000000006000000430041003100 .........A7<.. ...........C.A.1.8.2.2.........n. +2201 4.266147137 127.0.0.1:57631 127.0.0.1:57608 2622284727 12 ffffffffe72d000000000000 .....-...... +2203 4.266311169 127.0.0.1:57631 127.0.0.1:57608 2622284739 12 17000000fb37000000000000 .....7...... +2205 4.266444683 127.0.0.1:57631 127.0.0.1:57608 2622284751 23 13000000209b0f00000000000000000000000102000000 .... .................. +2207 4.266799927 127.0.0.1:57608 127.0.0.1:57631 2779582066 12 fffffffffb37000000000000 .....7...... +2209 4.267028809 127.0.0.1:57608 127.0.0.1:57631 2779582078 12 f1000000e82d000000000000 .....-...... +2211 4.267168283 127.0.0.1:57608 127.0.0.1:57631 2779582090 241 ed000000cfe7c8a3aa41373c0000229b0f000000000006000000430041003100 .........A7<.."...........C.A.1.8.5.9.........n. +2213 4.267430782 127.0.0.1:57631 127.0.0.1:57608 2622284774 12 ffffffffe82d000000000000 .....-...... +2215 4.267611980 127.0.0.1:57631 127.0.0.1:57608 2622284786 12 17000000fc37000000000000 .....7...... +2217 4.267746449 127.0.0.1:57631 127.0.0.1:57608 2622284798 23 13000000229b0f00000000000000000000000102000000 ....".................. +2219 4.268052816 127.0.0.1:57608 127.0.0.1:57631 2779582331 12 fffffffffc37000000000000 .....7...... +2221 4.268377304 127.0.0.1:57608 127.0.0.1:57631 2779582343 12 f1000000e92d000000000000 .....-...... +2223 4.268524647 127.0.0.1:57608 127.0.0.1:57631 2779582355 241 ed000000cfe7c8a3aa41373c0000249b0f000000000006000000430041003100 .........A7<..$...........C.A.1.8.5.9.........n. +2225 4.268799543 127.0.0.1:57631 127.0.0.1:57608 2622284821 12 ffffffffe92d000000000000 .....-...... +2227 4.268997908 127.0.0.1:57631 127.0.0.1:57608 2622284833 12 17000000fd37000000000000 .....7...... +2229 4.269134283 127.0.0.1:57631 127.0.0.1:57608 2622284845 23 13000000249b0f00000000000000000000000102000000 ....$.................. +2231 4.269491911 127.0.0.1:57608 127.0.0.1:57631 2779582596 12 fffffffffd37000000000000 .....7...... +2237 4.332754135 127.0.0.1:57608 127.0.0.1:57631 2779582608 12 f1000000ea2d000000000000 .....-...... +2239 4.332920790 127.0.0.1:57608 127.0.0.1:57631 2779582620 241 ed000000cfe7c8a3aa41373c0000269b0f000000000006000000430041003100 .........A7<..&...........C.A.1.8.2.2.........n. +2241 4.333263159 127.0.0.1:57631 127.0.0.1:57608 2622284868 12 ffffffffea2d000000000000 .....-...... +2243 4.333686113 127.0.0.1:57631 127.0.0.1:57608 2622284880 12 17000000fe37000000000000 .....7...... +2245 4.333880901 127.0.0.1:57631 127.0.0.1:57608 2622284892 23 13000000269b0f00000000000000000000000102000000 ....&.................. +2247 4.334265947 127.0.0.1:57608 127.0.0.1:57631 2779582861 12 fffffffffe37000000000000 .....7...... +2249 4.334721804 127.0.0.1:57608 127.0.0.1:57631 2779582873 12 f1000000eb2d000000000000 .....-...... +2251 4.334869862 127.0.0.1:57608 127.0.0.1:57631 2779582885 241 ed000000cfe7c8a3aa41373c0000289b0f000000000006000000430041003100 .........A7<..(...........C.A.1.8.2.2.........n. +2253 4.335148335 127.0.0.1:57631 127.0.0.1:57608 2622284915 12 ffffffffeb2d000000000000 .....-...... +2255 4.335327148 127.0.0.1:57631 127.0.0.1:57608 2622284927 12 17000000ff37000000000000 .....7...... +2257 4.335472345 127.0.0.1:57631 127.0.0.1:57608 2622284939 23 13000000289b0f00000000000000000000000102000000 ....(.................. +2259 4.335783720 127.0.0.1:57608 127.0.0.1:57631 2779583126 12 ffffffffff37000000000000 .....7...... +2261 4.336038351 127.0.0.1:57608 127.0.0.1:57631 2779583138 12 f1000000ec2d000000000000 .....-...... +2263 4.336204290 127.0.0.1:57608 127.0.0.1:57631 2779583150 241 ed000000cfe7c8a3aa41373c00002a9b0f000000000006000000430041003100 .........A7<..*...........C.A.1.8.5.9.........n. +2267 4.336583614 127.0.0.1:57631 127.0.0.1:57608 2622284962 12 ffffffffec2d000000000000 .....-...... +2271 4.336793423 127.0.0.1:57631 127.0.0.1:57608 2622284974 12 170000000038000000000000 .....8...... +2275 4.336933851 127.0.0.1:57631 127.0.0.1:57608 2622284986 23 130000002a9b0f00000000000000000000000102000000 ....*.................. +2277 4.337204695 127.0.0.1:57608 127.0.0.1:57631 2779583391 12 ffffffff0038000000000000 .....8...... +2344 4.507355213 127.0.0.1:57631 127.0.0.1:57608 2622285009 12 feffffffee350100e7370100 .....5...7.. +2364 4.610768080 127.0.0.1:57608 127.0.0.1:57631 2779583403 12 feffffffe8370100ee350100 .....7...5.. +2476 5.007261276 127.0.0.1:57631 127.0.0.1:57608 2622285021 12 feffffffef350100e8370100 .....5...7.. +2497 5.110618830 127.0.0.1:57608 127.0.0.1:57631 2779583415 12 feffffffe9370100ef350100 .....7...5.. +2624 5.508547068 127.0.0.1:57631 127.0.0.1:57608 2622285033 12 fefffffff0350100e9370100 .....5...7.. +2666 5.610897064 127.0.0.1:57608 127.0.0.1:57631 2779583427 12 feffffffea370100f0350100 .....7...5.. +2792 6.009646893 127.0.0.1:57631 127.0.0.1:57608 2622285045 12 fefffffff1350100ea370100 .....5...7.. +2811 6.112517834 127.0.0.1:57608 127.0.0.1:57631 2779583439 12 feffffffeb370100f1350100 .....7...5.. +2943 6.510533333 127.0.0.1:57631 127.0.0.1:57608 2622285057 12 fefffffff2350100eb370100 .....5...7.. +2961 6.613571405 127.0.0.1:57608 127.0.0.1:57631 2779583451 12 feffffffec370100f2350100 .....7...5.. +3069 7.011243343 127.0.0.1:57631 127.0.0.1:57608 2622285069 12 fefffffff3350100ec370100 .....5...7.. +3107 7.113416433 127.0.0.1:57608 127.0.0.1:57631 2779583463 12 feffffffed370100f3350100 .....7...5.. +3212 7.512058020 127.0.0.1:57631 127.0.0.1:57608 2622285081 12 fefffffff4350100ed370100 .....5...7.. +3231 7.614162445 127.0.0.1:57608 127.0.0.1:57631 2779583475 12 feffffffee370100f4350100 .....7...5.. +3320 8.013363838 127.0.0.1:57631 127.0.0.1:57608 2622285093 12 fefffffff5350100ee370100 .....5...7.. +3364 8.115030527 127.0.0.1:57608 127.0.0.1:57631 2779583487 12 feffffffef370100f5350100 .....7...5.. +3458 8.514603138 127.0.0.1:57631 127.0.0.1:57608 2622285105 12 fefffffff6350100ef370100 .....5...7.. +3556 8.615937710 127.0.0.1:57608 127.0.0.1:57631 2779583499 12 fefffffff0370100f6350100 .....7...5.. +4134 9.015467405 127.0.0.1:57631 127.0.0.1:57608 2622285117 12 fefffffff7350100f0370100 .....5...7.. +4156 9.118075371 127.0.0.1:57608 127.0.0.1:57631 2779583511 12 fefffffff1370100f7350100 .....7...5.. +4264 9.516407728 127.0.0.1:57631 127.0.0.1:57608 2622285129 12 fefffffff8350100f1370100 .....5...7.. +4307 9.618170023 127.0.0.1:57608 127.0.0.1:57631 2779583523 12 fefffffff2370100f8350100 .....7...5.. +4430 10.017451763 127.0.0.1:57631 127.0.0.1:57608 2622285141 12 fefffffff9350100f2370100 .....5...7.. +4474 10.118576765 127.0.0.1:57608 127.0.0.1:57631 2779583535 12 fefffffff3370100f9350100 .....7...5.. +4588 10.518130302 127.0.0.1:57631 127.0.0.1:57608 2622285153 12 fefffffffa350100f3370100 .....5...7.. +4606 10.619914293 127.0.0.1:57608 127.0.0.1:57631 2779583547 12 fefffffff4370100fa350100 .....7...5.. +4701 11.018958092 127.0.0.1:57631 127.0.0.1:57608 2622285165 12 fefffffffb350100f4370100 .....5...7.. +4744 11.119642973 127.0.0.1:57608 127.0.0.1:57631 2779583559 12 fefffffff5370100fb350100 .....7...5.. +4837 11.403397799 127.0.0.1:57608 127.0.0.1:57631 2779583571 12 16000000ed2d000000000000 .....-...... +4839 11.403576136 127.0.0.1:57608 127.0.0.1:57631 2779583583 22 12000000aed518478c33e3d500002c9b0f0000000000 .......G.3....,....... +4841 11.403881550 127.0.0.1:57631 127.0.0.1:57608 2622285177 12 ffffffffed2d000000000000 .....-...... +4845 11.453103304 127.0.0.1:57631 127.0.0.1:57608 2622285189 12 2a0000000138000000000000 *....8...... +4847 11.453312635 127.0.0.1:57631 127.0.0.1:57608 2622285201 42 260000002c9b0f000000000000000000000000c0bd2700000000186333150000 &...,................'.....c3......@.5.... +4849 11.453613043 127.0.0.1:57608 127.0.0.1:57631 2779583605 12 ffffffff0138000000000000 .....8...... +4864 11.519932508 127.0.0.1:57631 127.0.0.1:57608 2622285243 12 fefffffffc350100f5370100 .....5...7.. +4885 11.620703697 127.0.0.1:57608 127.0.0.1:57631 2779583617 12 fefffffff6370100fc350100 .....7...5.. +5024 12.019760609 127.0.0.1:57631 127.0.0.1:57608 2622285255 12 fefffffffd350100f6370100 .....5...7.. +5043 12.122116089 127.0.0.1:57608 127.0.0.1:57631 2779583629 12 fefffffff7370100fd350100 .....7...5.. +5142 12.520379782 127.0.0.1:57631 127.0.0.1:57608 2622285267 12 fefffffffe350100f7370100 .....5...7.. +5185 12.622955561 127.0.0.1:57608 127.0.0.1:57631 2779583641 12 fefffffff8370100fe350100 .....7...5.. +5281 13.020404577 127.0.0.1:57631 127.0.0.1:57608 2622285279 12 feffffffff350100f8370100 .....5...7.. +5299 13.123752594 127.0.0.1:57608 127.0.0.1:57631 2779583653 12 fefffffff9370100ff350100 .....7...5.. +5407 13.520478487 127.0.0.1:57631 127.0.0.1:57608 2622285291 12 feffffff00360100f9370100 .....6...7.. +5454 13.623238325 127.0.0.1:57608 127.0.0.1:57631 2779583665 12 fefffffffa37010000360100 .....7...6.. +5651 14.020970345 127.0.0.1:57631 127.0.0.1:57608 2622285303 12 feffffff01360100fa370100 .....6...7.. +5686 14.123300791 127.0.0.1:57608 127.0.0.1:57631 2779583677 12 fefffffffb37010001360100 .....7...6.. +5819 14.521418810 127.0.0.1:57631 127.0.0.1:57608 2622285315 12 feffffff02360100fb370100 .....6...7.. +5837 14.624694109 127.0.0.1:57608 127.0.0.1:57631 2779583689 12 fefffffffc37010002360100 .....7...6.. +5933 15.022317886 127.0.0.1:57631 127.0.0.1:57608 2622285327 12 feffffff03360100fc370100 .....6...7.. +5974 15.125704288 127.0.0.1:57608 127.0.0.1:57631 2779583701 12 fefffffffd37010003360100 .....7...6.. +6068 15.523004532 127.0.0.1:57631 127.0.0.1:57608 2622285339 12 feffffff04360100fd370100 .....6...7.. +6086 15.625638485 127.0.0.1:57608 127.0.0.1:57631 2779583713 12 fefffffffe37010004360100 .....7...6.. +6241 16.023626804 127.0.0.1:57631 127.0.0.1:57608 2622285351 12 feffffff05360100fe370100 .....6...7.. +6260 16.126353264 127.0.0.1:57608 127.0.0.1:57631 2779583725 12 feffffffff37010005360100 .....7...6.. +6342 16.523875237 127.0.0.1:57631 127.0.0.1:57608 2622285363 12 feffffff06360100ff370100 .....6...7.. +6388 16.627224445 127.0.0.1:57608 127.0.0.1:57631 2779583737 12 feffffff0038010006360100 .....8...6.. +6481 17.024279594 127.0.0.1:57631 127.0.0.1:57608 2622285375 12 feffffff0736010000380100 .....6...8.. +6501 17.128328085 127.0.0.1:57608 127.0.0.1:57631 2779583749 12 feffffff0138010007360100 .....8...6.. +6626 17.525264502 127.0.0.1:57631 127.0.0.1:57608 2622285387 12 feffffff0836010001380100 .....6...8.. +6646 17.631017685 127.0.0.1:57608 127.0.0.1:57631 2779583761 12 feffffff0238010008360100 .....8...6.. +6734 18.025758982 127.0.0.1:57631 127.0.0.1:57608 2622285399 12 feffffff0936010002380100 .....6...8.. +6773 18.132816076 127.0.0.1:57608 127.0.0.1:57631 2779583773 12 feffffff0338010009360100 .....8...6.. +6968 18.525965929 127.0.0.1:57631 127.0.0.1:57608 2622285411 12 feffffff0a36010003380100 .....6...8.. +7027 18.633622408 127.0.0.1:57608 127.0.0.1:57631 2779583785 12 feffffff043801000a360100 .....8...6.. +7286 19.026721239 127.0.0.1:57631 127.0.0.1:57608 2622285423 12 feffffff0b36010004380100 .....6...8.. +7306 19.134314299 127.0.0.1:57608 127.0.0.1:57631 2779583797 12 feffffff053801000b360100 .....8...6.. +7390 19.526901245 127.0.0.1:57631 127.0.0.1:57608 2622285435 12 feffffff0c36010005380100 .....6...8.. +7447 19.635823965 127.0.0.1:57608 127.0.0.1:57631 2779583809 12 feffffff063801000c360100 .....8...6.. +7549 20.027682543 127.0.0.1:57631 127.0.0.1:57608 2622285447 12 feffffff0d36010006380100 .....6...8.. +7571 20.135737181 127.0.0.1:57608 127.0.0.1:57631 2779583821 12 feffffff073801000d360100 .....8...6.. +7698 20.528254032 127.0.0.1:57631 127.0.0.1:57608 2622285459 12 feffffff0e36010007380100 .....6...8.. +7718 20.635114193 127.0.0.1:57608 127.0.0.1:57631 2779583833 12 feffffff083801000e360100 .....8...6.. +7830 21.029201746 127.0.0.1:57631 127.0.0.1:57608 2622285471 12 feffffff0f36010008380100 .....6...8.. +7880 21.135799170 127.0.0.1:57608 127.0.0.1:57631 2779583845 12 feffffff093801000f360100 .....8...6.. +8013 21.530552149 127.0.0.1:57631 127.0.0.1:57608 2622285483 12 feffffff1036010009380100 .....6...8.. +8032 21.636728764 127.0.0.1:57608 127.0.0.1:57631 2779583857 12 feffffff0a38010010360100 .....8...6.. +4111 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148575402 1284 17030304ff000000000000038dc4bf58a8bebc918a4ff83965b81c54328fe23e ...............X.....O.9e..T2..>v...'.ti....-... +4113 0.005259275 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242182 54 170303003100000000000003e7ce9fdb352f9d0ba4961f9f993360e2d5beef68 ....1...........5/.......3`....h.<..F.W.S....7oZ +4115 0.005639791 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148576686 105 1703030064000000000000038e92cfe39785bf5d1a578ed2c047ff0580f0eae9 ....d..............].W...G.......*.V2N..<....d.. +4117 0.006493330 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242236 264 170303010300000000000003e868d270d02d78a989f21bf3cf4f00dfc42128ab .............h.p.-x......O...!(.Vv4..3.:`.o.+M.. +4119 0.006836414 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242500 34 170303001d00000000000003e966bcacc7ba34568363300f3ecdb72c1cab83f5 .............f....4V.c0.>..,...... +5536 4.875575066 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148576791 1284 17030304ff000000000000038f130d94442e8a968687f5d27d84f91a5e1d7547 ................D.......}...^.uG-X..@..b:...R..M +5538 4.880393505 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242534 54 170303003100000000000003ea2923a87af555fc8009fc4aff26e31de2d45eb2 ....1........)#.z.U....J.&....^.<.k.$.&_.".L[.g. +5540 4.880876541 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148578075 117 170303007000000000000003905d66808be9b474e389ac58b035081b3c7da9cb ....p........]f....t...X.5..<}.......b.........X +5542 4.883365393 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242588 173 17030300a800000000000003eb169178552b7bb4f462b6f0f9621d6ca6ab5736 ...............xU+{..b...b.l..W6.5e..i.k.Q..d.`} +5544 4.884552956 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148578192 1284 17030304ff0000000000000391026dcddc4efcb17d013fe76906e9711bf84275 ..............m..N..}.?.i..q..Bu7......[l.C.S... +5558 4.888370991 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242761 54 170303003100000000000003ec7162fa6fa5eb59ea288077033c35d4af5991cb ....1........qb.o..Y.(.w.<5..Y...r..K...df..$... +5560 4.888797283 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148579476 117 17030300700000000000000392419ed7b2faf07fcc8f05d43d5a3e14bbdc668c ....p........A..........=Z>...f...x.G/.U.d..C-lC +5562 4.890691280 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242815 173 17030300a800000000000003edd5e952a3396562ee4c6a4c4be80223d90e4921 ...............R.9eb.LjLK..#..I!m...Y..O.....Qe, +5583 4.898876905 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148579593 1285 17030305000000000000000393ca8a54e2847bd43f6ab1455e63591d4e21ce87 ...............T..{.?j.E^cY.N!..O...}..ax.me.... +5585 4.902983189 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088242988 54 170303003100000000000003ee156f7c90774f0266e2835fdd8b7fb994e78e02 ....1.........o|.wO.f.._..............l.YRM.7... +5587 4.903308153 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148580878 130 170303007d000000000000039464045c166214916e0bfe326ec985181b1513b4 ....}........d.\.b..n..2n..........\.aV.J.(..w.# +5589 4.905321598 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088243042 173 17030300a800000000000003ef5c2d5c41ac6ea13a6d611ee5c4a7cbd77a84b6 .............\-\A.n.:ma......z........L...K..n.. +5591 4.906176329 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148581008 1285 170303050000000000000003959a7ccaaaf03b082a7b8575532e36f715718666 ..............|...;.*{.uS.6..q.f.....o|..L....Uw +5593 4.910091877 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088243215 54 170303003100000000000003f0b39b3933b47d377b6a1188630991d4f698827b ....1..........93.}7{j..c......{...9e3......V*k. +5595 4.910409927 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148582293 130 170303007d00000000000003961797610fdd545301ed87ec5bea2dafa1d41349 ....}..........a..TS....[.-....I.. .....P.&.m1.. +5597 4.912423372 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088243269 173 17030300a800000000000003f19fa5f4a7dbbe94a1a8567d636c699dde6f7cb4 ......................V}cli..o|..H.Rg0..\G...... +1665 0.000000000 ::1:49768 ::1:49704 1041118008 40 05000083100000002800000010bb010000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +1667 0.000231504 ::1:49704 ::1:49768 2171927355 44 05000203100000002c00000010bb0100140000000000000000000000c6d93052 ........,.....................0R..sL...P.H.. +1669 0.000492811 ::1:49768 ::1:49704 1041118048 104 05000083100000006800000011bb010040000000010000008c9e288562f29747 ........h.......@.........(.b..G..>K..........0R +1671 0.000781775 ::1:49704 ::1:49768 2171927399 28 05000203100000001c00000011bb0100040000000100000001000000 ............................ +1673 0.000993729 ::1:49768 ::1:49704 1041118152 60 05000083100000003c00000012bb010014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........0R +1675 0.001169920 ::1:49704 ::1:49768 2171927427 92 05000203100000005c00000012bb010044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +1677 0.001468658 ::1:49768 ::1:49704 1041118212 128 05000083100000008000000013bb010058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........0R +1679 0.001735687 ::1:49704 ::1:49768 2171927519 32 05000203100000002000000013bb010008000000010000008a03000001000000 ........ ....................... +1681 0.001919031 ::1:49768 ::1:49704 1041118340 132 05000083100000008400000014bb01005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........0R +1684 0.002094507 ::1:49704 ::1:49768 2171927551 32 05000203100000002000000014bb010008000000010000008b03000001000000 ........ ....................... +1687 0.002264738 ::1:49768 ::1:49704 1041118472 126 05000083100000007e00000015bb010056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K..........0R +1689 0.002431870 ::1:49704 ::1:49768 2171927583 32 05000203100000002000000015bb010008000000010000008c03000001000000 ........ ....................... +1693 0.002598286 ::1:49768 ::1:49704 1041118598 128 05000083100000008000000016bb010058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........0R +1695 0.002838135 ::1:49704 ::1:49768 2171927615 32 05000203100000002000000016bb010008000000010000008d03000001000000 ........ ....................... +1697 0.003006458 ::1:49768 ::1:49704 1041118726 138 05000083100000008a00000017bb010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........0R +1699 0.003172159 ::1:49704 ::1:49768 2171927647 32 05000203100000002000000017bb010008000000010000008e03000001000000 ........ ....................... +1703 0.003336668 ::1:49768 ::1:49704 1041118864 138 05000083100000008a00000018bb010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........0R +1706 0.003502369 ::1:49704 ::1:49768 2171927679 32 05000203100000002000000018bb010008000000010000008f03000001000000 ........ ....................... +1711 0.003669739 ::1:49768 ::1:49704 1041119002 150 05000083100000009600000019bb01006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........0R +1713 0.003878355 ::1:49704 ::1:49768 2171927711 32 05000203100000002000000019bb010008000000010000009003000001000000 ........ ....................... +1715 0.004076004 ::1:49768 ::1:49704 1041119152 124 05000083100000007c0000001abb010054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........0R +1717 0.004267931 ::1:49704 ::1:49768 2171927743 32 0500020310000000200000001abb010008000000010000009103000001000000 ........ ....................... +1719 0.004458904 ::1:49768 ::1:49704 1041119276 138 05000083100000008a0000001bbb010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........0R +1721 0.004662752 ::1:49704 ::1:49768 2171927775 32 0500020310000000200000001bbb010008000000010000009203000001000000 ........ ....................... +1723 0.004822969 ::1:49768 ::1:49704 1041119414 136 0500008310000000880000001cbb010060000000010003008c9e288562f29747 ................`.........(.b..G..>K..........0R +1725 0.004992485 ::1:49704 ::1:49768 2171927807 32 0500020310000000200000001cbb010008000000010000009303000001000000 ........ ....................... +1727 0.005159378 ::1:49768 ::1:49704 1041119550 134 0500008310000000860000001dbb01005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........0R +1729 0.005328178 ::1:49704 ::1:49768 2171927839 32 0500020310000000200000001dbb010008000000010000009403000001000000 ........ ....................... +1731 0.005494833 ::1:49768 ::1:49704 1041119684 138 05000083100000008a0000001ebb010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........0R +1733 0.005687475 ::1:49704 ::1:49768 2171927871 32 0500020310000000200000001ebb010008000000010000009503000001000000 ........ ....................... +1735 0.006063223 ::1:49768 ::1:49704 1041119822 60 05000083100000003c0000001fbb010014000000000001008c9e288562f29747 ........<.................(.b..G..>K..........0R +1737 0.006221533 ::1:49704 ::1:49768 2171927903 44 05000203100000002c0000001fbb010014000000000000000000000000000000 ........,................................... +1743 0.008172512 ::1:49768 ::1:49704 1041119882 40 05000083100000002800000020bb010000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +1745 0.008426666 ::1:49704 ::1:49768 2171927947 44 05000203100000002c00000020bb01001400000000000000000000000507283c ........,... .................(<._K..........(< +1749 0.008973360 ::1:49704 ::1:49768 2171927991 28 05000203100000001c00000021bb0100040000000100000001000000 ............!............... +1751 0.009162903 ::1:49768 ::1:49704 1041120026 60 05000083100000003c00000022bb010014000000010002008c9e288562f29747 ........<...".............(.b..G..>K..........(< +1753 0.009417057 ::1:49704 ::1:49768 2171928019 92 05000203100000005c00000022bb010044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +1755 0.009696007 ::1:49768 ::1:49704 1041120086 128 05000083100000008000000023bb010058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K..........(< +1757 0.009967089 ::1:49704 ::1:49768 2171928111 32 05000203100000002000000023bb010008000000010000008a03000001000000 ........ ...#................... +1759 0.010156870 ::1:49768 ::1:49704 1041120214 132 05000083100000008400000024bb01005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K..........(< +1761 0.010413170 ::1:49704 ::1:49768 2171928143 32 05000203100000002000000024bb010008000000010000008b03000001000000 ........ ...$................... +1763 0.010593176 ::1:49768 ::1:49704 1041120346 126 05000083100000007e00000025bb010056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K..........(< +1765 0.010982037 ::1:49704 ::1:49768 2171928175 32 05000203100000002000000025bb010008000000010000008c03000001000000 ........ ...%................... +1767 0.011168480 ::1:49768 ::1:49704 1041120472 128 05000083100000008000000026bb010058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K..........(< +1769 0.011425257 ::1:49704 ::1:49768 2171928207 32 05000203100000002000000026bb010008000000010000008d03000001000000 ........ ...&................... +1771 0.011608601 ::1:49768 ::1:49704 1041120600 138 05000083100000008a00000027bb010062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K..........(< +1773 0.011941671 ::1:49704 ::1:49768 2171928239 32 05000203100000002000000027bb010008000000010000008e03000001000000 ........ ...'................... +1775 0.012119293 ::1:49768 ::1:49704 1041120738 138 05000083100000008a00000028bb010062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K..........(< +1777 0.012323856 ::1:49704 ::1:49768 2171928271 32 05000203100000002000000028bb010008000000010000008f03000001000000 ........ ...(................... +1779 0.012498856 ::1:49768 ::1:49704 1041120876 150 05000083100000009600000029bb01006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K..........(< +1781 0.012736797 ::1:49704 ::1:49768 2171928303 32 05000203100000002000000029bb010008000000010000009003000001000000 ........ ...)................... +1783 0.012951612 ::1:49768 ::1:49704 1041121026 124 05000083100000007c0000002abb010054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K..........(< +1785 0.013155222 ::1:49704 ::1:49768 2171928335 32 0500020310000000200000002abb010008000000010000009103000001000000 ........ ...*................... +1787 0.013331413 ::1:49768 ::1:49704 1041121150 138 05000083100000008a0000002bbb010062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K..........(< +1789 0.013531923 ::1:49704 ::1:49768 2171928367 32 0500020310000000200000002bbb010008000000010000009203000001000000 ........ ...+................... +1791 0.013710260 ::1:49768 ::1:49704 1041121288 136 0500008310000000880000002cbb010060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K..........(< +1793 0.013911009 ::1:49704 ::1:49768 2171928399 32 0500020310000000200000002cbb010008000000010000009303000001000000 ........ ...,................... +1795 0.014085770 ::1:49768 ::1:49704 1041121424 134 0500008310000000860000002dbb01005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K..........(< +1797 0.014284372 ::1:49704 ::1:49768 2171928431 32 0500020310000000200000002dbb010008000000010000009403000001000000 ........ ...-................... +1799 0.014458179 ::1:49768 ::1:49704 1041121558 138 05000083100000008a0000002ebb010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........(< +1801 0.014695883 ::1:49704 ::1:49768 2171928463 32 0500020310000000200000002ebb010008000000010000009503000001000000 ........ ....................... +1803 0.014997721 ::1:49768 ::1:49704 1041121696 60 05000083100000003c0000002fbb010014000000000001008c9e288562f29747 ........<.../.............(.b..G..>K..........(< +1805 0.015179396 ::1:49704 ::1:49768 2171928495 44 05000203100000002c0000002fbb010014000000000000000000000000000000 ........,.../............................... +1811 0.017347097 ::1:49768 ::1:49704 1041121756 40 05000083100000002800000030bb010000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +1813 0.017524719 ::1:49704 ::1:49768 2171928539 44 05000203100000002c00000030bb0100140000000000000000000000e48200ce ........,...0....................7"L.k..0... +1815 0.017732143 ::1:49768 ::1:49704 1041121796 104 05000083100000006800000031bb010040000000010000008c9e288562f29747 ........h...1...@.........(.b..G..>K............ +1817 0.017987013 ::1:49704 ::1:49768 2171928583 28 05000203100000001c00000031bb0100040000000100000001000000 ............1............... +1819 0.018172264 ::1:49768 ::1:49704 1041121900 60 05000083100000003c00000032bb010014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K............ +1821 0.018397093 ::1:49704 ::1:49768 2171928611 92 05000203100000005c00000032bb010044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +1823 0.018671513 ::1:49768 ::1:49704 1041121960 128 05000083100000008000000033bb010058000000010003008c9e288562f29747 ............3...X.........(.b..G..>K............ +1825 0.019058704 ::1:49704 ::1:49768 2171928703 32 05000203100000002000000033bb010008000000010000008a03000001000000 ........ ...3................... +1827 0.019251585 ::1:49768 ::1:49704 1041122088 132 05000083100000008400000034bb01005c000000010003008c9e288562f29747 ............4...\.........(.b..G..>K............ +1829 0.019482613 ::1:49704 ::1:49768 2171928735 32 05000203100000002000000034bb010008000000010000008b03000001000000 ........ ...4................... +1831 0.019687414 ::1:49768 ::1:49704 1041122220 126 05000083100000007e00000035bb010056000000010003008c9e288562f29747 ........~...5...V.........(.b..G..>K............ +1833 0.019892454 ::1:49704 ::1:49768 2171928767 32 05000203100000002000000035bb010008000000010000008c03000001000000 ........ ...5................... +1835 0.020068169 ::1:49768 ::1:49704 1041122346 128 05000083100000008000000036bb010058000000010003008c9e288562f29747 ............6...X.........(.b..G..>K............ +1837 0.020273209 ::1:49704 ::1:49768 2171928799 32 05000203100000002000000036bb010008000000010000008d03000001000000 ........ ...6................... +1839 0.020447016 ::1:49768 ::1:49704 1041122474 138 05000083100000008a00000037bb010062000000010003008c9e288562f29747 ............7...b.........(.b..G..>K............ +1841 0.020687103 ::1:49704 ::1:49768 2171928831 32 05000203100000002000000037bb010008000000010000008e03000001000000 ........ ...7................... +1843 0.020847797 ::1:49768 ::1:49704 1041122612 138 05000083100000008a00000038bb010062000000010003008c9e288562f29747 ............8...b.........(.b..G..>K............ +1845 0.021053314 ::1:49704 ::1:49768 2171928863 32 05000203100000002000000038bb010008000000010000008f03000001000000 ........ ...8................... +1847 0.021229267 ::1:49768 ::1:49704 1041122750 150 05000083100000009600000039bb01006e000000010003008c9e288562f29747 ............9...n.........(.b..G..>K............ +1849 0.021433115 ::1:49704 ::1:49768 2171928895 32 05000203100000002000000039bb010008000000010000009003000001000000 ........ ...9................... +1851 0.021608114 ::1:49768 ::1:49704 1041122900 124 05000083100000007c0000003abb010054000000010003008c9e288562f29747 ........|...:...T.........(.b..G..>K............ +1853 0.021881104 ::1:49704 ::1:49768 2171928927 32 0500020310000000200000003abb010008000000010000009103000001000000 ........ ...:................... +1855 0.022061348 ::1:49768 ::1:49704 1041123024 138 05000083100000008a0000003bbb010062000000010003008c9e288562f29747 ............;...b.........(.b..G..>K............ +1857 0.022265911 ::1:49704 ::1:49768 2171928959 32 0500020310000000200000003bbb010008000000010000009203000001000000 ........ ...;................... +1859 0.022450447 ::1:49768 ::1:49704 1041123162 136 0500008310000000880000003cbb010060000000010003008c9e288562f29747 ............<...`.........(.b..G..>K............ +1861 0.022696972 ::1:49704 ::1:49768 2171928991 32 0500020310000000200000003cbb010008000000010000009303000001000000 ........ ...<................... +1863 0.022834539 ::1:49768 ::1:49704 1041123298 134 0500008310000000860000003dbb01005e000000010003008c9e288562f29747 ............=...^.........(.b..G..>K............ +1865 0.023043871 ::1:49704 ::1:49768 2171929023 32 0500020310000000200000003dbb010008000000010000009403000001000000 ........ ...=................... +1867 0.023228884 ::1:49768 ::1:49704 1041123432 138 05000083100000008a0000003ebb010062000000010003008c9e288562f29747 ............>...b.........(.b..G..>K............ +1869 0.023436069 ::1:49704 ::1:49768 2171929055 32 0500020310000000200000003ebb010008000000010000009503000001000000 ........ ...>................... +1871 0.025661230 ::1:49768 ::1:49704 1041123570 60 05000083100000003c0000003fbb010014000000000001008c9e288562f29747 ........<...?.............(.b..G..>K............ +1873 0.025835276 ::1:49704 ::1:49768 2171929087 44 05000203100000002c0000003fbb010014000000000000000000000000000000 ........,...?............................... +2728 0.000000000 fe80::3608:256c:365:cc73:55856 fe80::3608:256c:365:cc73:55555 4239283976 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +2816 0.370179653 fe80::3608:256c:365:cc73:55856 fe80::3608:256c:365:cc73:55555 4239284181 508 000001fc000087b3000000000000000b00010000000002000000100007025343 ..............................SCHNEIDR......M.DE +3380 2.354479313 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:55856 1229057410 1990 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1861..Content-T +4397 0.000000000 ::1:55862 ::1:443 3010806194 203 16030300c6010000c2030369ec4d95df92d357549fb0aa935694ff0bd2b4491b ...........i.M....WT....V.....I.<..h;..C.YT .(.. +4399 0.000764847 ::1:443 ::1:55862 454111947 141 160303005502000051030369ec4d95662729d2f0c3831ce0ef6ed82fad5f2fe1 ....U...Q..i.M.f').......n./._/.....w...... .(.. +4401 0.002975941 ::1:55862 ::1:443 3010806397 360 14030300010116030300280000000000000000c14bfa689d362b97cf63bbf72c ..........(.........K.h.6+..c..,.OOb[..........- +4403 0.004853487 ::1:443 ::1:55862 454112088 925 170303039800000000000000019424f998b8d169b2aab9e4e2caaacdbde88858 ..............$....i...........X...l...t.....|.. +4405 0.006276131 ::1:55862 ::1:443 3010806757 325 170303014000000000000000027f65dc8eee649d493d11ebb0a54d0e6ef16d3c ....@.........e...d.I=....M.n.m<..t...i8...,k... +4407 0.011021852 ::1:443 ::1:55862 454113013 720 17030302cb000000000000000274e75f0e44b2ba84f6274520624b42716a1228 .............t._.D....'E bKBqj.(h...2..q...../O. +604 0.000000000 ::1:55839 ::1:135 2991299744 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +606 0.000512123 ::1:135 ::1:55839 1692691789 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +724 0.130774975 ::1:55839 ::1:135 2991299900 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +726 0.131450176 ::1:135 ::1:55839 1692691941 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +784 0.155238867 ::1:55839 ::1:135 2991300056 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +786 0.155999184 ::1:135 ::1:55839 1692692093 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +932 0.291906595 ::1:55839 ::1:135 2991300212 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +934 0.292562485 ::1:135 ::1:55839 1692692245 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1059 0.448948860 ::1:55839 ::1:135 2991300368 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1061 0.449573994 ::1:135 ::1:55839 1692692397 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3460 6.852471352 ::1:55839 ::1:135 2991300524 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3462 6.853122234 ::1:135 ::1:55839 1692692549 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3552 6.931521416 ::1:55839 ::1:135 2991300680 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3557 6.932061672 ::1:135 ::1:55839 1692692701 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3743 7.014789581 ::1:55839 ::1:135 2991300836 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3745 7.015313864 ::1:135 ::1:55839 1692692853 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3851 7.033763409 ::1:55839 ::1:135 2991300992 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3853 7.034309626 ::1:135 ::1:55839 1692693005 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3923 7.048077822 ::1:55839 ::1:135 2991301148 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3925 7.048777342 ::1:135 ::1:55839 1692693157 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2864 0.000000000 ::1:55857 ::1:32571 901270396 275 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +2866 0.000771761 ::1:32571 ::1:55857 432066645 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +2868 0.001956224 ::1:55857 ::1:32571 901270671 291 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +2870 0.006089926 ::1:32571 ::1:55857 432067541 734 485454502f312e3120323030204f4b0d0a43616368652d436f6e74726f6c3a20 HTTP/1.1 200 OK..Cache-Control: public,max-age=1 diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..b2403de Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..f8fd466 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57608-to-127_0_0_1_57631.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57608-to-127_0_0_1_57631.bin new file mode 100644 index 0000000..0bd062d Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57608-to-127_0_0_1_57631.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57631-to-127_0_0_1_57608.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57631-to-127_0_0_1_57608.bin new file mode 100644 index 0000000..09da2c6 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-127_0_0_1_57631-to-127_0_0_1_57608.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-57415-to-57433-frames.tsv b/captures/016-loopback-write-test-int-advised/tcp-stream-57415-to-57433-frames.tsv new file mode 100644 index 0000000..0a187cd --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-57415-to-57433-frames.tsv @@ -0,0 +1,3 @@ +index offset length complete i32_0 i32_1 i32_2 i32_3 u32_0_hex u32_1_hex hex_prefix ascii_preview note +0 0x00000000 26 1 704208 0 22 1080266580 0x000abed0 0x00000000 d0 be 0a 00 00 00 00 00 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ............T.c@.^1@...... +1 0x0000001e 2033439 0 1f 07 1f 00 00 00 00 00 ff ff ff ff 88 9d 0a 00 00 00 00 00 22 00 00 00 d1 be 0a 00 00 00 00 00 "....................""..........." invalid length diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-57433-to-57415-frames.tsv b/captures/016-loopback-write-test-int-advised/tcp-stream-57433-to-57415-frames.tsv new file mode 100644 index 0000000..e61d6ab --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-57433-to-57415-frames.tsv @@ -0,0 +1,2 @@ +index offset length complete i32_0 i32_1 i32_2 i32_3 u32_0_hex u32_1_hex hex_prefix ascii_preview note +0 0x00000000 4294967295 0 ff ff ff ff d0 be 0a 00 00 00 00 00 16 00 00 00 88 9d 0a 00 00 00 00 00 12 00 00 00 1f 07 1f 00 ................................ invalid length diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_135-to-__1_55839.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_135-to-__1_55839.bin new file mode 100644 index 0000000..230a0ba Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_135-to-__1_55839.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_32571-to-__1_55857.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_32571-to-__1_55857.bin new file mode 100644 index 0000000..66400bb --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_32571-to-__1_55857.bin @@ -0,0 +1,28 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVwori2o8zUWN78FXzPQMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAKF3o09y1NwBAAAAAA== +Date: Sat, 25 Apr 2026 05:13:54 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 200 OK +Cache-Control: public,max-age=15770000 +Content-Type: image/svg+xml +Last-Modified: Mon, 06 Apr 2020 03:33:02 GMT +Accept-Ranges: bytes +ETag: "1d60bc413576a8a" +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAADJwxxCFgM+swAAAAA= +Date: Sat, 25 Apr 2026 05:13:54 GMT +Content-Length: 394 + + + + + \ No newline at end of file diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_443-to-__1_55862.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_443-to-__1_55862.bin new file mode 100644 index 0000000..f6de421 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_443-to-__1_55862.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49704-to-__1_49768.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49704-to-__1_49768.bin new file mode 100644 index 0000000..6209694 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49704-to-__1_49768.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49704-to-__1_55840.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49704-to-__1_55840.bin new file mode 100644 index 0000000..be707db Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49704-to-__1_55840.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49768-to-__1_49704.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49768-to-__1_49704.bin new file mode 100644 index 0000000..8616aad Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_49768-to-__1_49704.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55839-to-__1_135.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55839-to-__1_135.bin new file mode 100644 index 0000000..ba9cc67 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55839-to-__1_135.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55840-to-__1_49704.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55840-to-__1_49704.bin new file mode 100644 index 0000000..150a04b Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55840-to-__1_49704.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55857-to-__1_32571.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55857-to-__1_32571.bin new file mode 100644 index 0000000..4dd17f0 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55857-to-__1_32571.bin @@ -0,0 +1,8 @@ +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate YGwGBisGAQUFAqBiMGCgGjAYBgorBgEEAYI3AgIKBgorBgEEAYI3AgIeokIEQE5UTE1TU1AAAQAAAJeyCOIJAAkANwAAAA8ADwAoAAAACgBhSgAAAA9ERVNLVE9QLTZKTDNLS09XT1JLR1JPVVA= +Host: localhost:32571 + +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAAD1K9xVIiiUmRgv6nX5baxlSjEgQQAQAAABZr8Qio/CWxAAAAAA== +Host: localhost:32571 + diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55862-to-__1_443.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55862-to-__1_443.bin new file mode 100644 index 0000000..a291205 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-__1_55862-to-__1_443.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..259147b Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55850.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55850.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55850.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55855.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55855.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55855.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55856.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55856.bin new file mode 100644 index 0000000..659f3b3 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55856.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55876.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55876.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_55876.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55850-to-fe80__3608_256c_365_cc73_55555.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55850-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55850-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55855-to-fe80__3608_256c_365_cc73_55555.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55855-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..189e721 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55855-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,3 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 + diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55856-to-fe80__3608_256c_365_cc73_55555.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55856-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..bb159a1 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55856-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55876-to-fe80__3608_256c_365_cc73_55555.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55876-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_55876-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..d57d429 Binary files /dev/null and b/captures/016-loopback-write-test-int-advised/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/017-loopback-write-test-int-100/command.txt b/captures/017-loopback-write-test-int-100/command.txt new file mode 100644 index 0000000..cae0a17 --- /dev/null +++ b/captures/017-loopback-write-test-int-100/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=write --duration=8 --tag=TestChildObject.TestInt --type=int --value=100 --user-id=1 --write-delay-ms=1200 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\017-loopback-write-test-int-100\harness.log --client=MxProtoTraceHarness-017-loopback-write-test-int-100 diff --git a/captures/017-loopback-write-test-int-100/dcerpc-49704.tsv b/captures/017-loopback-write-test-int-100/dcerpc-49704.tsv new file mode 100644 index 0000000..ec03f78 --- /dev/null +++ b/captures/017-loopback-write-test-int-100/dcerpc-49704.tsv @@ -0,0 +1,402 @@ +691 1.929789900 15 11 2 0,1 4e0c90df-e39d-4164-a421-ace89484c602,4e0c90df-e39d-4164-a421-ace89484c602 116 0 Bind: call_id: 2, Fragment: Single, 2 context items: 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (32bit NDR), 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (6cb71c2c-9812-4540-0300-000000000000) +693 1.930431700 15 12 2 84 0 Bind_ack: call_id: 2, Fragment: Single, max_xmit: 5840 max_recv: 5840, 2 results: Acceptance, Negotiate ACK +695 1.930612000 15 0 2 0 0 40 0 Request: call_id: 2, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +697 1.930865800 15 2 2 0 0 44 0 Response: call_id: 2, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +699 1.931098800 15 14 3 1 1981974b-6bf7-46cb-9640-0260bbb551ba 72 0 Alter_context: call_id: 3, Fragment: Single, 1 context items: 1981974b-6bf7-46cb-9640-0260bbb551ba V1.0 (32bit NDR) +701 1.931255300 15 15 3 56 0 Alter_context_resp: call_id: 3, Fragment: Single, max_xmit: 5840 max_recv: 5840, 1 results: Acceptance +703 1.931418000 15 0 3 1 0 96 0 Request: call_id: 3, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +705 1.934067600 15 2 3 1 0 28 0 Response: call_id: 3, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +707 1.934256900 15 0 4 1 2 60 0 Request: call_id: 4, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +709 1.934471400 15 2 4 1 2 92 0 Response: call_id: 4, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +711 1.934797700 15 0 5 1 3 120 0 Request: call_id: 5, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +713 1.935008400 15 2 5 1 3 32 0 Response: call_id: 5, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +715 1.935189900 15 0 6 1 3 124 0 Request: call_id: 6, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +717 1.935374300 15 2 6 1 3 32 0 Response: call_id: 6, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +719 1.935544700 15 0 7 1 3 118 0 Request: call_id: 7, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +721 1.935766700 15 2 7 1 3 32 0 Response: call_id: 7, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +723 1.935927500 15 0 8 1 3 120 0 Request: call_id: 8, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +725 1.936151800 15 2 8 1 3 32 0 Response: call_id: 8, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +727 1.936287600 15 0 9 1 3 130 0 Request: call_id: 9, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +729 1.936459000 15 2 9 1 3 32 0 Response: call_id: 9, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +731 1.936641300 15 0 10 1 3 130 0 Request: call_id: 10, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +733 1.936849700 15 2 10 1 3 32 0 Response: call_id: 10, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +735 1.937018800 15 0 11 1 3 142 0 Request: call_id: 11, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +737 1.937211000 15 2 11 1 3 32 0 Response: call_id: 11, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +739 1.937418400 15 0 12 1 3 116 0 Request: call_id: 12, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +741 1.937618400 15 2 12 1 3 32 0 Response: call_id: 12, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +743 1.937861200 15 0 13 1 3 130 0 Request: call_id: 13, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +745 1.938032500 15 2 13 1 3 32 0 Response: call_id: 13, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +747 1.938197700 15 0 14 1 3 128 0 Request: call_id: 14, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +749 1.938373400 15 2 14 1 3 32 0 Response: call_id: 14, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +751 1.938540600 15 0 15 1 3 126 0 Request: call_id: 15, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +753 1.938771400 15 2 15 1 3 32 0 Response: call_id: 15, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +755 1.939362600 15 0 16 1 3 132 0 Request: call_id: 16, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +757 1.939553800 15 2 16 1 3 32 0 Response: call_id: 16, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +759 1.939791700 15 0 17 1 3 152 0 Request: call_id: 17, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +761 1.939969000 15 2 17 1 3 32 0 Response: call_id: 17, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +784 2.053346800 15 0 18 0 0 40 0 Request: call_id: 18, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +786 2.053636400 15 2 18 0 0 44 0 Response: call_id: 18, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +788 2.054124500 15 0 19 1 0 108 0 Request: call_id: 19, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +790 2.055702700 15 2 19 1 0 28 0 Response: call_id: 19, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +792 2.055907600 15 0 20 1 2 60 0 Request: call_id: 20, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +794 2.056134400 15 2 20 1 2 92 0 Response: call_id: 20, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +796 2.056389600 15 0 21 1 3 132 0 Request: call_id: 21, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +798 2.056599800 15 2 21 1 3 32 0 Response: call_id: 21, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +800 2.056810100 15 0 22 1 3 136 0 Request: call_id: 22, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +802 2.056997900 15 2 22 1 3 32 0 Response: call_id: 22, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +804 2.057166800 15 0 23 1 3 130 0 Request: call_id: 23, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +806 2.057352900 15 2 23 1 3 32 0 Response: call_id: 23, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +808 2.057518000 15 0 24 1 3 132 0 Request: call_id: 24, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +810 2.057743100 15 2 24 1 3 32 0 Response: call_id: 24, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +812 2.057935600 15 0 25 1 3 142 0 Request: call_id: 25, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +814 2.058122800 15 2 25 1 3 32 0 Response: call_id: 25, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +816 2.058290400 15 0 26 1 3 142 0 Request: call_id: 26, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +818 2.058474400 15 2 26 1 3 32 0 Response: call_id: 26, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +820 2.058638600 15 0 27 1 3 154 0 Request: call_id: 27, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +822 2.058832700 15 2 27 1 3 32 0 Response: call_id: 27, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +824 2.059007800 15 0 28 1 3 128 0 Request: call_id: 28, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +826 2.059109800 15 2 28 1 3 32 0 Response: call_id: 28, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +828 2.059275200 15 0 29 1 3 142 0 Request: call_id: 29, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +830 2.059458000 15 2 29 1 3 32 0 Response: call_id: 29, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +832 2.059621400 15 0 30 1 3 140 0 Request: call_id: 30, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +834 2.059880100 15 2 30 1 3 32 0 Response: call_id: 30, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +836 2.060049200 15 0 31 1 3 138 0 Request: call_id: 31, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +838 2.060233400 15 2 31 1 3 32 0 Response: call_id: 31, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +844 2.078480200 15 0 32 0 0 40 0 Request: call_id: 32, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +846 2.078679800 15 2 32 0 0 44 0 Response: call_id: 32, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +848 2.078964600 15 0 33 1 0 104 0 Request: call_id: 33, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +850 2.081057300 15 2 33 1 0 28 0 Response: call_id: 33, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +852 2.081236200 15 0 34 1 2 60 0 Request: call_id: 34, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +854 2.081392700 15 2 34 1 2 92 0 Response: call_id: 34, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +856 2.081671100 15 0 35 1 3 128 0 Request: call_id: 35, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +858 2.081892700 15 2 35 1 3 32 0 Response: call_id: 35, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +860 2.082051100 15 0 36 1 3 132 0 Request: call_id: 36, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +862 2.082234400 15 2 36 1 3 32 0 Response: call_id: 36, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +864 2.082381600 15 0 37 1 3 126 0 Request: call_id: 37, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +866 2.082524700 15 2 37 1 3 32 0 Response: call_id: 37, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +868 2.082720800 15 0 38 1 3 128 0 Request: call_id: 38, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +870 2.082883000 15 2 38 1 3 32 0 Response: call_id: 38, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +872 2.083032700 15 0 39 1 3 138 0 Request: call_id: 39, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +874 2.083176700 15 2 39 1 3 32 0 Response: call_id: 39, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +876 2.083341200 15 0 40 1 3 138 0 Request: call_id: 40, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +878 2.083509900 15 2 40 1 3 32 0 Response: call_id: 40, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +880 2.083681700 15 0 41 1 3 150 0 Request: call_id: 41, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +882 2.083825100 15 2 41 1 3 32 0 Response: call_id: 41, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +884 2.083974200 15 0 42 1 3 124 0 Request: call_id: 42, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +886 2.084119700 15 2 42 1 3 32 0 Response: call_id: 42, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +888 2.084265200 15 0 43 1 3 138 0 Request: call_id: 43, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +890 2.084451800 15 2 43 1 3 32 0 Response: call_id: 43, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +892 2.084603100 15 0 44 1 3 136 0 Request: call_id: 44, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +894 2.084765100 15 2 44 1 3 32 0 Response: call_id: 44, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +896 2.084905800 15 0 45 1 3 134 0 Request: call_id: 45, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +898 2.085048300 15 2 45 1 3 32 0 Response: call_id: 45, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +900 2.085242900 15 0 46 1 3 140 0 Request: call_id: 46, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +902 2.085389700 15 2 46 1 3 32 0 Response: call_id: 46, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +904 2.085561800 15 0 47 1 3 146 0 Request: call_id: 47, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +906 2.085753200 15 2 47 1 3 32 0 Response: call_id: 47, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +939 2.196585400 15 0 48 0 0 40 0 Request: call_id: 48, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +941 2.196823400 15 2 48 0 0 44 0 Response: call_id: 48, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +943 2.196991100 15 0 49 1 0 112 0 Request: call_id: 49, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +945 2.198433700 15 2 49 1 0 28 0 Response: call_id: 49, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +947 2.198571600 15 0 50 1 2 60 0 Request: call_id: 50, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +949 2.198768100 15 2 50 1 2 92 0 Response: call_id: 50, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +951 2.198979900 15 0 51 1 3 136 0 Request: call_id: 51, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +953 2.199197800 15 2 51 1 3 32 0 Response: call_id: 51, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +955 2.199336200 15 0 52 1 3 140 0 Request: call_id: 52, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +957 2.199528200 15 2 52 1 3 32 0 Response: call_id: 52, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +959 2.199705100 15 0 53 1 3 134 0 Request: call_id: 53, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +961 2.199906300 15 2 53 1 3 32 0 Response: call_id: 53, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +963 2.200040300 15 0 54 1 3 136 0 Request: call_id: 54, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +965 2.200207300 15 2 54 1 3 32 0 Response: call_id: 54, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +967 2.200341100 15 0 55 1 3 146 0 Request: call_id: 55, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +969 2.200505900 15 2 55 1 3 32 0 Response: call_id: 55, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +971 2.200638000 15 0 56 1 3 146 0 Request: call_id: 56, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +973 2.200805900 15 2 56 1 3 32 0 Response: call_id: 56, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +975 2.200936700 15 0 57 1 3 158 0 Request: call_id: 57, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +977 2.201102400 15 2 57 1 3 32 0 Response: call_id: 57, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +979 2.201235900 15 0 58 1 3 132 0 Request: call_id: 58, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +981 2.201398800 15 2 58 1 3 32 0 Response: call_id: 58, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +983 2.201578000 15 0 59 1 3 146 0 Request: call_id: 59, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +985 2.201769400 15 2 59 1 3 32 0 Response: call_id: 59, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +987 2.201901800 15 0 60 1 3 144 0 Request: call_id: 60, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +989 2.202065600 15 2 60 1 3 32 0 Response: call_id: 60, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +991 2.202198100 15 0 61 1 3 142 0 Request: call_id: 61, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +993 2.202362500 15 2 61 1 3 32 0 Response: call_id: 61, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +995 2.202543200 15 0 62 1 3 148 0 Request: call_id: 62, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +997 2.202736400 15 2 62 1 3 32 0 Response: call_id: 62, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +999 2.202878900 15 0 63 1 3 154 0 Request: call_id: 63, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1001 2.203043300 15 2 63 1 3 32 0 Response: call_id: 63, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1067 2.330509300 15 0 64 0 0 40 0 Request: call_id: 64, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +1069 2.330788400 15 2 64 0 0 44 0 Response: call_id: 64, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +1071 2.330957600 15 0 65 1 0 92 0 Request: call_id: 65, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1073 2.332560200 15 2 65 1 0 28 0 Response: call_id: 65, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1075 2.332737000 15 0 66 1 2 60 0 Request: call_id: 66, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1077 2.332961400 15 2 66 1 2 92 0 Response: call_id: 66, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1079 2.333186200 15 0 67 1 3 116 0 Request: call_id: 67, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1081 2.333426900 15 2 67 1 3 32 0 Response: call_id: 67, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1083 2.333573900 15 0 68 1 3 120 0 Request: call_id: 68, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1085 2.333803200 15 2 68 1 3 32 0 Response: call_id: 68, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1087 2.333949500 15 0 69 1 3 114 0 Request: call_id: 69, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1089 2.334055300 15 2 69 1 3 32 0 Response: call_id: 69, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1091 2.334195400 15 0 70 1 3 116 0 Request: call_id: 70, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1093 2.334367300 15 2 70 1 3 32 0 Response: call_id: 70, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1095 2.334503800 15 0 71 1 3 126 0 Request: call_id: 71, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1097 2.334711500 15 2 71 1 3 32 0 Response: call_id: 71, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1099 2.334854400 15 0 72 1 3 126 0 Request: call_id: 72, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1101 2.335029000 15 2 72 1 3 32 0 Response: call_id: 72, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1103 2.335226400 15 0 73 1 3 138 0 Request: call_id: 73, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1105 2.335434900 15 2 73 1 3 32 0 Response: call_id: 73, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1107 2.335624800 15 0 74 1 3 112 0 Request: call_id: 74, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1109 2.335824400 15 2 74 1 3 32 0 Response: call_id: 74, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1111 2.336027000 15 0 75 1 3 126 0 Request: call_id: 75, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1113 2.336205000 15 2 75 1 3 32 0 Response: call_id: 75, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1115 2.336393700 15 0 76 1 3 124 0 Request: call_id: 76, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1117 2.336582200 15 2 76 1 3 32 0 Response: call_id: 76, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1119 2.336778000 15 0 77 1 3 122 0 Request: call_id: 77, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1121 2.336973500 15 2 77 1 3 32 0 Response: call_id: 77, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1123 2.337215900 15 0 78 1 3 128 0 Request: call_id: 78, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1125 2.337416300 15 2 78 1 3 32 0 Response: call_id: 78, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1127 2.337702000 15 0 79 1 3 134 0 Request: call_id: 79, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1129 2.338127900 15 2 79 1 3 32 0 Response: call_id: 79, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1131 2.338382600 15 0 80 1 3 130 0 Request: call_id: 80, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1133 2.338568800 15 2 80 1 3 32 0 Response: call_id: 80, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1135 2.338794000 15 0 81 1 3 128 0 Request: call_id: 81, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1137 2.339041500 15 2 81 1 3 32 0 Response: call_id: 81, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3748 10.911340300 15 0 82 0 0 40 0 Request: call_id: 82, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3750 10.911567000 15 2 82 0 0 44 0 Response: call_id: 82, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3752 10.911736500 15 0 83 1 0 100 0 Request: call_id: 83, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3754 10.913721600 15 2 83 1 0 28 0 Response: call_id: 83, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3756 10.913883100 15 0 84 1 2 60 0 Request: call_id: 84, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3758 10.914148500 15 2 84 1 2 92 0 Response: call_id: 84, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3760 10.914378700 15 0 85 1 3 124 0 Request: call_id: 85, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3762 10.914643200 15 2 85 1 3 32 0 Response: call_id: 85, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3764 10.914785300 15 0 86 1 3 128 0 Request: call_id: 86, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3766 10.914988600 15 2 86 1 3 32 0 Response: call_id: 86, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3768 10.915143400 15 0 87 1 3 122 0 Request: call_id: 87, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3770 10.915307000 15 2 87 1 3 32 0 Response: call_id: 87, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3772 10.915441200 15 0 88 1 3 124 0 Request: call_id: 88, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3774 10.915667200 15 2 88 1 3 32 0 Response: call_id: 88, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3776 10.915810500 15 0 89 1 3 134 0 Request: call_id: 89, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3778 10.916025100 15 2 89 1 3 32 0 Response: call_id: 89, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3780 10.916163000 15 0 90 1 3 134 0 Request: call_id: 90, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3782 10.916324200 15 2 90 1 3 32 0 Response: call_id: 90, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3784 10.916458000 15 0 91 1 3 146 0 Request: call_id: 91, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3786 10.916620500 15 2 91 1 3 32 0 Response: call_id: 91, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3788 10.916753700 15 0 92 1 3 120 0 Request: call_id: 92, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3790 10.916911600 15 2 92 1 3 32 0 Response: call_id: 92, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3792 10.917071000 15 0 93 1 3 134 0 Request: call_id: 93, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3794 10.917237600 15 2 93 1 3 32 0 Response: call_id: 93, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3796 10.917420600 15 0 94 1 3 132 0 Request: call_id: 94, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3798 10.917589400 15 2 94 1 3 32 0 Response: call_id: 94, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3800 10.917730800 15 0 95 1 3 130 0 Request: call_id: 95, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3802 10.917893300 15 2 95 1 3 32 0 Response: call_id: 95, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3804 10.918132600 15 0 96 1 3 144 0 Request: call_id: 96, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3806 10.918295900 15 2 96 1 3 32 0 Response: call_id: 96, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3808 10.918457100 15 0 97 1 3 148 0 Request: call_id: 97, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3810 10.918622100 15 2 97 1 3 32 0 Response: call_id: 97, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3812 10.918764100 15 0 98 1 3 146 0 Request: call_id: 98, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3814 10.918924800 15 2 98 1 3 32 0 Response: call_id: 98, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3816 10.919195000 15 0 99 1 3 158 0 Request: call_id: 99, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3818 10.919359500 15 2 99 1 3 32 0 Response: call_id: 99, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3824 10.996463000 15 0 100 0 0 40 0 Request: call_id: 100, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3826 10.996692900 15 2 100 0 0 44 0 Response: call_id: 100, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3828 10.996966300 15 0 101 1 0 84 0 Request: call_id: 101, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3830 10.998874200 15 2 101 1 0 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3832 10.998977400 15 0 102 1 2 60 0 Request: call_id: 102, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3834 10.999288900 15 2 102 1 2 92 0 Response: call_id: 102, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3839 10.999537800 15 0 103 1 3 108 0 Request: call_id: 103, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3842 10.999796100 15 2 103 1 3 32 0 Response: call_id: 103, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3845 10.999953500 15 0 104 1 3 112 0 Request: call_id: 104, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3848 11.000138800 15 2 104 1 3 32 0 Response: call_id: 104, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3850 11.000303900 15 0 105 1 3 106 0 Request: call_id: 105, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3853 11.000475200 15 2 105 1 3 32 0 Response: call_id: 105, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3858 11.000633400 15 0 106 1 3 108 0 Request: call_id: 106, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3861 11.000863700 15 2 106 1 3 32 0 Response: call_id: 106, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3864 11.001066200 15 0 107 1 3 118 0 Request: call_id: 107, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3866 11.001183000 15 2 107 1 3 32 0 Response: call_id: 107, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3868 11.001368300 15 0 108 1 3 118 0 Request: call_id: 108, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3870 11.001566600 15 2 108 1 3 32 0 Response: call_id: 108, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3872 11.001782300 15 0 109 1 3 130 0 Request: call_id: 109, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3874 11.002001800 15 2 109 1 3 32 0 Response: call_id: 109, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3876 11.002159500 15 0 110 1 3 104 0 Request: call_id: 110, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3878 11.002320200 15 2 110 1 3 32 0 Response: call_id: 110, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3880 11.002472700 15 0 111 1 3 118 0 Request: call_id: 111, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3882 11.002657300 15 2 111 1 3 32 0 Response: call_id: 111, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3884 11.002875100 15 0 112 1 3 116 0 Request: call_id: 112, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3886 11.003103000 15 2 112 1 3 32 0 Response: call_id: 112, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3888 11.003260500 15 0 113 1 3 114 0 Request: call_id: 113, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3890 11.003422200 15 2 113 1 3 32 0 Response: call_id: 113, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3892 11.003993600 15 0 114 1 3 128 0 Request: call_id: 114, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3894 11.004149700 15 2 114 1 3 32 0 Response: call_id: 114, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3896 11.004350400 15 0 115 1 3 120 0 Request: call_id: 115, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3898 11.004595800 15 2 115 1 3 32 0 Response: call_id: 115, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3900 11.004891200 15 0 116 1 3 120 0 Request: call_id: 116, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3902 11.005282600 15 2 116 1 3 32 0 Response: call_id: 116, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3904 11.005546800 15 0 117 1 3 122 0 Request: call_id: 117, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3906 11.005787900 15 2 117 1 3 32 0 Response: call_id: 117, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3908 11.005981000 15 0 118 1 3 134 0 Request: call_id: 118, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3910 11.006151600 15 2 118 1 3 32 0 Response: call_id: 118, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3912 11.006371200 15 0 119 1 3 132 0 Request: call_id: 119, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3914 11.006536900 15 2 119 1 3 32 0 Response: call_id: 119, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3916 11.006729800 15 0 120 1 3 130 0 Request: call_id: 120, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3918 11.006970800 15 2 120 1 3 32 0 Response: call_id: 120, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3920 11.007169600 15 0 121 1 3 138 0 Request: call_id: 121, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3922 11.007376800 15 2 121 1 3 32 0 Response: call_id: 121, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3924 11.007621400 15 0 122 1 3 144 0 Request: call_id: 122, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3926 11.007841500 15 2 122 1 3 32 0 Response: call_id: 122, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3928 11.008066900 15 0 123 1 3 144 0 Request: call_id: 123, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3930 11.008277700 15 2 123 1 3 32 0 Response: call_id: 123, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3932 11.008481600 15 0 124 1 3 116 0 Request: call_id: 124, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3934 11.008641100 15 2 124 1 3 32 0 Response: call_id: 124, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3936 11.008886700 15 0 125 1 3 130 0 Request: call_id: 125, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3938 11.009046200 15 2 125 1 3 32 0 Response: call_id: 125, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3940 11.009239800 15 0 126 1 3 138 0 Request: call_id: 126, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3942 11.009438700 15 2 126 1 3 32 0 Response: call_id: 126, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3944 11.009626500 15 0 127 1 3 130 0 Request: call_id: 127, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3946 11.009837300 15 2 127 1 3 32 0 Response: call_id: 127, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3948 11.010023700 15 0 128 1 3 122 0 Request: call_id: 128, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3950 11.010234600 15 2 128 1 3 32 0 Response: call_id: 128, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3952 11.010426900 15 0 129 1 3 122 0 Request: call_id: 129, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3954 11.010591300 15 2 129 1 3 32 0 Response: call_id: 129, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3956 11.010818400 15 0 130 1 3 134 0 Request: call_id: 130, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3958 11.011009300 15 2 130 1 3 32 0 Response: call_id: 130, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3960 11.011217400 15 0 131 1 3 128 0 Request: call_id: 131, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3962 11.011387100 15 2 131 1 3 32 0 Response: call_id: 131, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3964 11.011579400 15 0 132 1 3 124 0 Request: call_id: 132, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3966 11.011810500 15 2 132 1 3 32 0 Response: call_id: 132, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3972 11.045935300 15 0 133 1 5 516 0 Request: call_id: 133, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3974 11.046177400 15 2 133 1 5 28 0 Response: call_id: 133, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4010 11.083624800 15 0 134 0 0 40 0 Request: call_id: 134, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4012 11.083874800 15 2 134 0 0 44 0 Response: call_id: 134, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4014 11.084065900 15 0 135 1 0 112 0 Request: call_id: 135, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4016 11.086035900 15 2 135 1 0 28 0 Response: call_id: 135, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4017 11.086234200 15 0 136 1 2 60 0 Request: call_id: 136, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4019 11.086337200 15 2 136 1 2 92 0 Response: call_id: 136, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4021 11.086575400 15 0 137 1 3 136 0 Request: call_id: 137, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4023 11.086767100 15 2 137 1 3 32 0 Response: call_id: 137, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4025 11.086919800 15 0 138 1 3 140 0 Request: call_id: 138, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4027 11.087076400 15 2 138 1 3 32 0 Response: call_id: 138, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4029 11.087246200 15 0 139 1 3 134 0 Request: call_id: 139, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4031 11.087438700 15 2 139 1 3 32 0 Response: call_id: 139, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4033 11.087597000 15 0 140 1 3 136 0 Request: call_id: 140, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4035 11.087803000 15 2 140 1 3 32 0 Response: call_id: 140, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4037 11.087952300 15 0 141 1 3 146 0 Request: call_id: 141, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4039 11.088155700 15 2 141 1 3 32 0 Response: call_id: 141, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4041 11.088305300 15 0 142 1 3 146 0 Request: call_id: 142, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4043 11.088456300 15 2 142 1 3 32 0 Response: call_id: 142, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4045 11.088601200 15 0 143 1 3 158 0 Request: call_id: 143, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4047 11.088750600 15 2 143 1 3 32 0 Response: call_id: 143, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4049 11.088892600 15 0 144 1 3 132 0 Request: call_id: 144, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4051 11.089096500 15 2 144 1 3 32 0 Response: call_id: 144, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4053 11.089345700 15 0 145 1 3 146 0 Request: call_id: 145, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4055 11.089581200 15 2 145 1 3 32 0 Response: call_id: 145, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4057 11.089748400 15 0 146 1 3 144 0 Request: call_id: 146, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4059 11.089986500 15 2 146 1 3 32 0 Response: call_id: 146, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4061 11.090189500 15 0 147 1 3 142 0 Request: call_id: 147, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4063 11.090429300 15 2 147 1 3 32 0 Response: call_id: 147, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4065 11.090657200 15 0 148 1 3 160 0 Request: call_id: 148, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4067 11.090818300 15 2 148 1 3 32 0 Response: call_id: 148, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4069 11.090998500 15 0 149 1 3 156 0 Request: call_id: 149, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4071 11.091195300 15 2 149 1 3 32 0 Response: call_id: 149, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4073 11.091418300 15 0 150 1 3 154 0 Request: call_id: 150, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4075 11.091589800 15 2 150 1 3 32 0 Response: call_id: 150, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4077 11.091754900 15 0 151 1 3 146 0 Request: call_id: 151, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4079 11.091907900 15 2 151 1 3 32 0 Response: call_id: 151, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4081 11.092059600 15 0 152 1 3 154 0 Request: call_id: 152, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4083 11.092704500 15 2 152 1 3 32 0 Response: call_id: 152, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4085 11.092860100 15 0 153 1 3 150 0 Request: call_id: 153, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4087 11.093014600 15 2 153 1 3 32 0 Response: call_id: 153, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4089 11.093167800 15 0 154 1 3 152 0 Request: call_id: 154, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4091 11.093361000 15 2 154 1 3 32 0 Response: call_id: 154, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4093 11.093525200 15 0 155 1 3 140 0 Request: call_id: 155, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4095 11.093677800 15 2 155 1 3 32 0 Response: call_id: 155, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4097 11.093853400 15 0 156 1 3 148 0 Request: call_id: 156, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4099 11.094033300 15 2 156 1 3 32 0 Response: call_id: 156, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4101 11.094250800 15 0 157 1 3 162 0 Request: call_id: 157, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4103 11.094431800 15 2 157 1 3 32 0 Response: call_id: 157, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4105 11.094591500 15 0 158 1 3 172 0 Request: call_id: 158, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4107 11.094747900 15 2 158 1 3 32 0 Response: call_id: 158, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4109 11.095016800 15 0 159 1 3 144 0 Request: call_id: 159, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4111 11.095238500 15 2 159 1 3 32 0 Response: call_id: 159, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4117 11.103570700 15 0 160 0 0 40 0 Request: call_id: 160, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4121 11.103760600 15 2 160 0 0 44 0 Response: call_id: 160, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4125 11.103941400 15 0 161 1 0 128 0 Request: call_id: 161, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4135 11.105752300 15 2 161 1 0 28 0 Response: call_id: 161, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4137 11.105912000 15 0 162 1 2 60 0 Request: call_id: 162, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4139 11.106116000 15 2 162 1 2 92 0 Response: call_id: 162, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4141 11.106416800 15 0 163 1 3 152 0 Request: call_id: 163, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4143 11.106615800 15 2 163 1 3 32 0 Response: call_id: 163, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4145 11.106778000 15 0 164 1 3 156 0 Request: call_id: 164, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4147 11.106943600 15 2 164 1 3 32 0 Response: call_id: 164, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4149 11.107096500 15 0 165 1 3 150 0 Request: call_id: 165, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4151 11.107286200 15 2 165 1 3 32 0 Response: call_id: 165, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4153 11.107440000 15 0 166 1 3 152 0 Request: call_id: 166, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4155 11.107597800 15 2 166 1 3 32 0 Response: call_id: 166, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4157 11.107748100 15 0 167 1 3 162 0 Request: call_id: 167, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4159 11.107907400 15 2 167 1 3 32 0 Response: call_id: 167, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4161 11.108057600 15 0 168 1 3 162 0 Request: call_id: 168, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4163 11.108302300 15 2 168 1 3 32 0 Response: call_id: 168, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4165 11.108488000 15 0 169 1 3 174 0 Request: call_id: 169, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4167 11.108654200 15 2 169 1 3 32 0 Response: call_id: 169, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4169 11.108804600 15 0 170 1 3 148 0 Request: call_id: 170, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4171 11.108960700 15 2 170 1 3 32 0 Response: call_id: 170, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4173 11.109149100 15 0 171 1 3 162 0 Request: call_id: 171, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4175 11.109398400 15 2 171 1 3 32 0 Response: call_id: 171, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4177 11.110014000 15 0 172 1 3 160 0 Request: call_id: 172, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4179 11.110229200 15 2 172 1 3 32 0 Response: call_id: 172, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4181 11.110406900 15 0 173 1 3 158 0 Request: call_id: 173, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4183 11.110574900 15 2 173 1 3 32 0 Response: call_id: 173, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4185 11.110800800 15 0 174 1 3 170 0 Request: call_id: 174, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4187 11.110957700 15 2 174 1 3 32 0 Response: call_id: 174, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4189 11.111154000 15 0 175 1 3 182 0 Request: call_id: 175, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4191 11.111317000 15 2 175 1 3 32 0 Response: call_id: 175, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4197 11.118280400 15 0 176 0 0 40 0 Request: call_id: 176, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4199 11.118455100 15 2 176 0 0 44 0 Response: call_id: 176, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4201 11.118601200 15 0 177 1 0 96 0 Request: call_id: 177, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4203 11.120220800 15 2 177 1 0 28 0 Response: call_id: 177, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4205 11.120362800 15 0 178 1 2 60 0 Request: call_id: 178, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4207 11.120524400 15 2 178 1 2 92 0 Response: call_id: 178, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4209 11.120784300 15 0 179 1 3 120 0 Request: call_id: 179, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4211 11.120959200 15 2 179 1 3 32 0 Response: call_id: 179, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4213 11.121099900 15 0 180 1 3 124 0 Request: call_id: 180, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4215 11.121303600 15 2 180 1 3 32 0 Response: call_id: 180, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4217 11.121433700 15 0 181 1 3 118 0 Request: call_id: 181, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4219 11.121582300 15 2 181 1 3 32 0 Response: call_id: 181, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4221 11.121710000 15 0 182 1 3 120 0 Request: call_id: 182, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4223 11.121858500 15 2 182 1 3 32 0 Response: call_id: 182, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4225 11.121987000 15 0 183 1 3 130 0 Request: call_id: 183, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4227 11.122138100 15 2 183 1 3 32 0 Response: call_id: 183, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4229 11.122296000 15 0 184 1 3 130 0 Request: call_id: 184, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4231 11.122444200 15 2 184 1 3 32 0 Response: call_id: 184, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4233 11.122574800 15 0 185 1 3 142 0 Request: call_id: 185, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4235 11.122804200 15 2 185 1 3 32 0 Response: call_id: 185, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4237 11.122933200 15 0 186 1 3 116 0 Request: call_id: 186, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4239 11.123110800 15 2 186 1 3 32 0 Response: call_id: 186, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4241 11.123286900 15 0 187 1 3 130 0 Request: call_id: 187, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4243 11.123443800 15 2 187 1 3 32 0 Response: call_id: 187, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4245 11.123613600 15 0 188 1 3 128 0 Request: call_id: 188, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4247 11.123766400 15 2 188 1 3 32 0 Response: call_id: 188, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4249 11.123896800 15 0 189 1 3 126 0 Request: call_id: 189, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4251 11.124049200 15 2 189 1 3 32 0 Response: call_id: 189, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4253 11.124274700 15 0 190 1 3 126 0 Request: call_id: 190, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4255 11.124424100 15 2 190 1 3 32 0 Response: call_id: 190, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4257 11.124604600 15 0 191 1 3 132 0 Request: call_id: 191, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4259 11.124883200 15 2 191 1 3 32 0 Response: call_id: 191, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4261 11.125025900 15 0 192 1 3 130 0 Request: call_id: 192, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4263 11.125206100 15 2 192 1 3 32 0 Response: call_id: 192, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4265 11.125344700 15 0 193 1 3 138 0 Request: call_id: 193, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4267 11.125527400 15 2 193 1 3 32 0 Response: call_id: 193, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4269 11.125733900 15 0 194 1 3 136 0 Request: call_id: 194, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4271 11.125992000 15 2 194 1 3 32 0 Response: call_id: 194, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4273 11.126170500 15 0 195 1 3 132 0 Request: call_id: 195, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4275 11.126359600 15 2 195 1 3 32 0 Response: call_id: 195, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4277 11.126586300 15 0 196 1 3 142 0 Request: call_id: 196, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4279 11.126748900 15 2 196 1 3 32 0 Response: call_id: 196, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4281 11.126946900 15 0 197 1 3 148 0 Request: call_id: 197, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4283 11.127103400 15 2 197 1 3 32 0 Response: call_id: 197, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4293 11.164503900 15 0 198 1 5 290 0 Request: call_id: 198, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4295 11.164877000 15 2 198 1 5 28 0 Response: call_id: 198, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4317 11.242031500 15 0 199 1 5 206 0 Request: call_id: 199, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4319 11.242324700 15 2 199 1 5 28 0 Response: call_id: 199, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +6882 20.552636300 58 0 98 1 5 242 0 Request: call_id: 98, Fragment: Single, opnum: 5, Ctx: 1 +6884 20.553011300 58 2 98 1 28 0 Response: call_id: 98, Fragment: Single, Ctx: 1 diff --git a/captures/017-loopback-write-test-int-100/dumpcap.stderr.txt b/captures/017-loopback-write-test-int-100/dumpcap.stderr.txt new file mode 100644 index 0000000..1d5927d --- /dev/null +++ b/captures/017-loopback-write-test-int-100/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\017-loopback-write-test-int-100\loopback.pcapng diff --git a/captures/017-loopback-write-test-int-100/dumpcap.stdout.txt b/captures/017-loopback-write-test-int-100/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/017-loopback-write-test-int-100/exit.txt b/captures/017-loopback-write-test-int-100/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/017-loopback-write-test-int-100/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/017-loopback-write-test-int-100/harness.log b/captures/017-loopback-write-test-int-100/harness.log new file mode 100644 index 0000000..a5c2cea --- /dev/null +++ b/captures/017-loopback-write-test-int-100/harness.log @@ -0,0 +1,19 @@ +2026-04-25T05:35:16.8861425+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-017-loopback-write-test-int-100","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"100","UserId":1,"WriteDelayMilliseconds":1200,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:35:25.9145169+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-017-loopback-write-test-int-100"} +2026-04-25T05:35:26.2861133+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:35:26.2861133+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:35:26.2881011+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:26.2891146+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:26.2900443+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:26.5385424+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"99"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:35:27.5164642+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"100"},"UserId":1} +2026-04-25T05:35:27.5175261+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:27.7242635+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"100"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:35:27.640 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:35:27.7272664+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:35:35.5446036+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:35.5456154+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:35.5456154+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:35.5466026+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:35.5466026+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:35:39.3582952+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:35:39.3633598+00:00 harness.stop {} diff --git a/captures/017-loopback-write-test-int-100/loopback.pcapng b/captures/017-loopback-write-test-int-100/loopback.pcapng new file mode 100644 index 0000000..4f02ec8 Binary files /dev/null and b/captures/017-loopback-write-test-int-100/loopback.pcapng differ diff --git a/captures/017-loopback-write-test-int-100/mixed-stream-57415-to-57433.tsv b/captures/017-loopback-write-test-int-100/mixed-stream-57415-to-57433.tsv new file mode 100644 index 0000000..e92904c --- /dev/null +++ b/captures/017-loopback-write-test-int-100/mixed-stream-57415-to-57433.tsv @@ -0,0 +1,1333 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 26 727069 0 26 727069 0 1a 00 00 00 1d 18 0b 00 00 00 00 00 ............ +1 0x0000000c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1994981376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2 0x00000026 control 12 -1 717587 0 -1 717587 0 ff ff ff ff 13 f3 0a 00 00 00 00 00 ............ +3 0x00000032 control 12 101 727070 0 101 727070 0 65 00 00 00 1e 18 0b 00 00 00 00 00 e........... +4 0x0000003e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280100864 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b2 10 02 00 00 00 00 00 a7 8e 22 c3 9d 01 00 00 ".....!...o3.................""....." +5 0x00000060 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b2 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 aa 3b 0d c6 82 a9 18 ?.....3...|8...................=B.....&......... +6 0x000000a3 control 12 -1 717588 0 -1 717588 0 ff ff ff ff 14 f3 0a 00 00 00 00 00 ............ +7 0x000000af control 12 30 727071 0 30 727071 0 1e 00 00 00 1f 18 0b 00 00 00 00 00 ............ +8 0x000000bb data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1994850304 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +9 0x000000d9 control 12 -1 717589 0 -1 717589 0 ff ff ff ff 15 f3 0a 00 00 00 00 00 ............ +10 0x000000e5 control 12 26 727072 0 26 727072 0 1a 00 00 00 20 18 0b 00 00 00 00 00 .... ....... +11 0x000000f1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1994719232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +12 0x0000010b control 12 -1 717590 0 -1 717590 0 ff ff ff ff 16 f3 0a 00 00 00 00 00 ............ +13 0x00000117 control 12 -2 82557 82539 -2 82557 82539 fe ff ff ff 7d 42 01 00 6b 42 01 00 ....}B..kB.. +14 0x00000123 control 12 26 727073 0 26 727073 0 1a 00 00 00 21 18 0b 00 00 00 00 00 ....!....... +15 0x0000012f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1994588160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +16 0x00000149 control 12 -1 717591 0 -1 717591 0 ff ff ff ff 17 f3 0a 00 00 00 00 00 ............ +17 0x00000155 control 12 26 727074 0 26 727074 0 1a 00 00 00 22 18 0b 00 00 00 00 00 "....""......." +18 0x00000161 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1994457088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +19 0x0000017b control 12 -1 717592 0 -1 717592 0 ff ff ff ff 18 f3 0a 00 00 00 00 00 ............ +20 0x00000187 control 12 34 727075 0 34 727075 0 22 00 00 00 23 18 0b 00 00 00 00 00 """...#......." +21 0x00000193 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280166400 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b3 10 02 00 00 00 00 00 d8 8f 22 c3 9d 01 00 00 ".....!...o3.................""....." +22 0x000001b5 control 12 67 727076 0 67 727076 0 43 00 00 00 24 18 0b 00 00 00 00 00 C...$....... +23 0x000001c1 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 9a 6f 1f c6 82 a9 18 ?.....3...|8...................=B.....&......... +24 0x00000204 control 12 -1 717593 0 -1 717593 0 ff ff ff ff 19 f3 0a 00 00 00 00 00 ............ +25 0x00000210 control 12 30 727077 0 30 727077 0 1e 00 00 00 25 18 0b 00 00 00 00 00 ....%....... +26 0x0000021c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1994326016 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +27 0x0000023a control 12 -1 717594 0 -1 717594 0 ff ff ff ff 1a f3 0a 00 00 00 00 00 ............ +28 0x00000246 control 12 26 727078 0 26 727078 0 1a 00 00 00 26 18 0b 00 00 00 00 00 ....&....... +29 0x00000252 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1994194944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 89 1f 00 00 00 00 00 ....T.c@.^1@......#....... +30 0x0000026c control 12 -1 717595 0 -1 717595 0 ff ff ff ff 1b f3 0a 00 00 00 00 00 ............ +31 0x00000278 control 12 26 727079 0 26 727079 0 1a 00 00 00 27 18 0b 00 00 00 00 00 ....'....... +32 0x00000284 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1994063872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 89 1f 00 00 00 00 00 ....T.c@.^1@......%....... +33 0x0000029e control 12 -1 717596 0 -1 717596 0 ff ff ff ff 1c f3 0a 00 00 00 00 00 ............ +34 0x000002aa control 12 26 727080 0 26 727080 0 1a 00 00 00 28 18 0b 00 00 00 00 00 ....(....... +35 0x000002b6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1993932800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 89 1f 00 00 00 00 00 ....T.c@.^1@......'....... +36 0x000002d0 control 12 -1 717597 0 -1 717597 0 ff ff ff ff 1d f3 0a 00 00 00 00 00 ............ +37 0x000002dc control 12 -2 82558 82540 -2 82558 82540 fe ff ff ff 7e 42 01 00 6c 42 01 00 ....~B..lB.. +38 0x000002e8 control 12 34 727081 0 34 727081 0 22 00 00 00 29 18 0b 00 00 00 00 00 """...)......." +39 0x000002f4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280231936 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b4 10 02 00 00 00 00 00 09 91 22 c3 9d 01 00 00 ".....!...o3.................""....." +40 0x00000316 control 12 67 727082 0 67 727082 0 43 00 00 00 2a 18 0b 00 00 00 00 00 C...*....... +41 0x00000322 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b4 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 ae ab 31 c6 82 a9 18 ?.....3...|8...................=B.....&......... +42 0x00000365 control 12 -1 717598 0 -1 717598 0 ff ff ff ff 1e f3 0a 00 00 00 00 00 ............ +43 0x00000371 control 12 30 727083 0 30 727083 0 1e 00 00 00 2b 18 0b 00 00 00 00 00 ....+....... +44 0x0000037d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1993801728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +45 0x0000039b control 12 -1 717599 0 -1 717599 0 ff ff ff ff 1f f3 0a 00 00 00 00 00 ............ +46 0x000003a7 control 12 26 727084 0 26 727084 0 1a 00 00 00 2c 18 0b 00 00 00 00 00 ....,....... +47 0x000003b3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1993670656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 89 1f 00 00 00 00 00 ....T.c@.^1@......+....... +48 0x000003cd control 12 -1 717600 0 -1 717600 0 ff ff ff ff 20 f3 0a 00 00 00 00 00 .... ....... +49 0x000003d9 control 12 26 727085 0 26 727085 0 1a 00 00 00 2d 18 0b 00 00 00 00 00 ....-....... +50 0x000003e5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1993539584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 89 1f 00 00 00 00 00 ....T.c@.^1@......-....... +51 0x000003ff control 12 -1 717601 0 -1 717601 0 ff ff ff ff 21 f3 0a 00 00 00 00 00 ....!....... +52 0x0000040b control 12 26 727086 0 26 727086 0 1a 00 00 00 2e 18 0b 00 00 00 00 00 ............ +53 0x00000417 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1993408512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 89 1f 00 00 00 00 00 ....T.c@.^1@....../....... +54 0x00000431 control 12 -1 717602 0 -1 717602 0 ff ff ff ff 22 f3 0a 00 00 00 00 00 "....""......." +55 0x0000043d control 12 101 727087 0 101 727087 0 65 00 00 00 2f 18 0b 00 00 00 00 00 e.../....... +56 0x00000449 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280297472 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b5 10 02 00 00 00 00 00 39 92 22 c3 9d 01 00 00 ".....!...o3...............9.""....." +57 0x0000046b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b5 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c 6a bb 43 c6 82 a9 18 ?.....3...|8...................=B.....&......... +58 0x000004ae control 12 -1 717603 0 -1 717603 0 ff ff ff ff 23 f3 0a 00 00 00 00 00 ....#....... +59 0x000004ba control 12 30 727088 0 30 727088 0 1e 00 00 00 30 18 0b 00 00 00 00 00 ....0....... +60 0x000004c6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1993277440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +61 0x000004e4 control 12 -1 717604 0 -1 717604 0 ff ff ff ff 24 f3 0a 00 00 00 00 00 ....$....... +62 0x000004f0 control 12 26 727089 0 26 727089 0 1a 00 00 00 31 18 0b 00 00 00 00 00 ....1....... +63 0x000004fc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1993146368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 89 1f 00 00 00 00 00 ....T.c@.^1@......3....... +64 0x00000516 control 12 -1 717605 0 -1 717605 0 ff ff ff ff 25 f3 0a 00 00 00 00 00 ....%....... +65 0x00000522 control 12 26 727090 0 26 727090 0 1a 00 00 00 32 18 0b 00 00 00 00 00 ....2....... +66 0x0000052e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1993015296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 89 1f 00 00 00 00 00 ....T.c@.^1@......5....... +67 0x00000548 control 12 -1 717606 0 -1 717606 0 ff ff ff ff 26 f3 0a 00 00 00 00 00 ....&....... +68 0x00000554 control 12 -2 82559 82541 -2 82559 82541 fe ff ff ff 7f 42 01 00 6d 42 01 00 .....B..mB.. +69 0x00000560 control 12 26 727091 0 26 727091 0 1a 00 00 00 33 18 0b 00 00 00 00 00 ....3....... +70 0x0000056c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1992884224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 89 1f 00 00 00 00 00 ....T.c@.^1@......7....... +71 0x00000586 control 12 -1 717607 0 -1 717607 0 ff ff ff ff 27 f3 0a 00 00 00 00 00 ....'....... +72 0x00000592 control 12 34 727092 0 34 727092 0 22 00 00 00 34 18 0b 00 00 00 00 00 """...4......." +73 0x0000059e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280363008 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b6 10 02 00 00 00 00 00 6a 93 22 c3 9d 01 00 00 ".....!...o3...............j.""....." +74 0x000005c0 control 12 67 727093 0 67 727093 0 43 00 00 00 35 18 0b 00 00 00 00 00 C...5....... +75 0x000005cc data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ac c2 e9 55 c6 82 a9 18 ?.....3...|8...................=B.....&......... +76 0x0000060f control 12 -1 717608 0 -1 717608 0 ff ff ff ff 28 f3 0a 00 00 00 00 00 ....(....... +77 0x0000061b control 12 30 727094 0 30 727094 0 1e 00 00 00 36 18 0b 00 00 00 00 00 ....6....... +78 0x00000627 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1992753152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +79 0x00000645 control 12 -1 717609 0 -1 717609 0 ff ff ff ff 29 f3 0a 00 00 00 00 00 ....)....... +80 0x00000651 control 12 26 727095 0 26 727095 0 1a 00 00 00 37 18 0b 00 00 00 00 00 ....7....... +81 0x0000065d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1992622080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 89 1f 00 00 00 00 00 ....T.c@.^1@......;....... +82 0x00000677 control 12 -1 717610 0 -1 717610 0 ff ff ff ff 2a f3 0a 00 00 00 00 00 ....*....... +83 0x00000683 control 12 26 727096 0 26 727096 0 1a 00 00 00 38 18 0b 00 00 00 00 00 ....8....... +84 0x0000068f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1992491008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 89 1f 00 00 00 00 00 ....T.c@.^1@......=....... +85 0x000006a9 control 12 -1 717611 0 -1 717611 0 ff ff ff ff 2b f3 0a 00 00 00 00 00 ....+....... +86 0x000006b5 control 12 26 727097 0 26 727097 0 1a 00 00 00 39 18 0b 00 00 00 00 00 ....9....... +87 0x000006c1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1992359936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 89 1f 00 00 00 00 00 ....T.c@.^1@......?....... +88 0x000006db control 12 -1 717612 0 -1 717612 0 ff ff ff ff 2c f3 0a 00 00 00 00 00 ....,....... +89 0x000006e7 control 12 34 727098 0 34 727098 0 22 00 00 00 3a 18 0b 00 00 00 00 00 """...:......." +90 0x000006f3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280428544 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b7 10 02 00 00 00 00 00 9b 94 22 c3 9d 01 00 00 ".....!...o3.................""....." +91 0x00000715 control 12 67 727099 0 67 727099 0 43 00 00 00 3b 18 0b 00 00 00 00 00 C...;....... +92 0x00000721 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 a7 19 68 c6 82 a9 18 ?.....3...|8...................=B.....&......... +93 0x00000764 control 12 -1 717613 0 -1 717613 0 ff ff ff ff 2d f3 0a 00 00 00 00 00 ....-....... +94 0x00000770 control 12 30 727100 0 30 727100 0 1e 00 00 00 3c 18 0b 00 00 00 00 00 ....<....... +95 0x0000077c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1992228864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +96 0x0000079a control 12 -1 717614 0 -1 717614 0 ff ff ff ff 2e f3 0a 00 00 00 00 00 ............ +97 0x000007a6 control 12 -2 82560 82542 -2 82560 82542 fe ff ff ff 80 42 01 00 6e 42 01 00 .....B..nB.. +98 0x000007b2 control 12 26 727101 0 26 727101 0 1a 00 00 00 3d 18 0b 00 00 00 00 00 ....=....... +99 0x000007be data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1992097792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 89 1f 00 00 00 00 00 ....T.c@.^1@......C....... +100 0x000007d8 control 12 -1 717615 0 -1 717615 0 ff ff ff ff 2f f3 0a 00 00 00 00 00 ..../....... +101 0x000007e4 control 12 26 727102 0 26 727102 0 1a 00 00 00 3e 18 0b 00 00 00 00 00 ....>....... +102 0x000007f0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1991966720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 89 1f 00 00 00 00 00 ....T.c@.^1@......E....... +103 0x0000080a control 12 -1 717616 0 -1 717616 0 ff ff ff ff 30 f3 0a 00 00 00 00 00 ....0....... +104 0x00000816 control 12 26 727103 0 26 727103 0 1a 00 00 00 3f 18 0b 00 00 00 00 00 ....?....... +105 0x00000822 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1991835648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 89 1f 00 00 00 00 00 ....T.c@.^1@......G....... +106 0x0000083c control 12 -1 717617 0 -1 717617 0 ff ff ff ff 31 f3 0a 00 00 00 00 00 ....1....... +107 0x00000848 control 12 101 727104 0 101 727104 0 65 00 00 00 40 18 0b 00 00 00 00 00 e...@....... +108 0x00000854 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280494080 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b8 10 02 00 00 00 00 00 cb 95 22 c3 9d 01 00 00 ".....!...o3.................""....." +109 0x00000876 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b8 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 5f 2a 7a c6 82 a9 18 ?.....3...|8...................=B.....&......... +110 0x000008b9 control 12 -1 717618 0 -1 717618 0 ff ff ff ff 32 f3 0a 00 00 00 00 00 ....2....... +111 0x000008c5 control 12 30 727105 0 30 727105 0 1e 00 00 00 41 18 0b 00 00 00 00 00 ....A....... +112 0x000008d1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1991704576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +113 0x000008ef control 12 -1 717619 0 -1 717619 0 ff ff ff ff 33 f3 0a 00 00 00 00 00 ....3....... +114 0x000008fb control 12 26 727106 0 26 727106 0 1a 00 00 00 42 18 0b 00 00 00 00 00 ....B....... +115 0x00000907 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1991573504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 89 1f 00 00 00 00 00 ....T.c@.^1@......K....... +116 0x00000921 control 12 -1 717620 0 -1 717620 0 ff ff ff ff 34 f3 0a 00 00 00 00 00 ....4....... +117 0x0000092d control 12 26 727107 0 26 727107 0 1a 00 00 00 43 18 0b 00 00 00 00 00 ....C....... +118 0x00000939 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1991442432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 89 1f 00 00 00 00 00 ....T.c@.^1@......M....... +119 0x00000953 control 12 -1 717621 0 -1 717621 0 ff ff ff ff 35 f3 0a 00 00 00 00 00 ....5....... +120 0x0000095f control 12 -2 82561 82543 -2 82561 82543 fe ff ff ff 81 42 01 00 6f 42 01 00 .....B..oB.. +121 0x0000096b control 12 26 727108 0 26 727108 0 1a 00 00 00 44 18 0b 00 00 00 00 00 ....D....... +122 0x00000977 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1991311360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 89 1f 00 00 00 00 00 ....T.c@.^1@......O....... +123 0x00000991 control 12 -1 717622 0 -1 717622 0 ff ff ff ff 36 f3 0a 00 00 00 00 00 ....6....... +124 0x0000099d control 12 34 727109 0 34 727109 0 22 00 00 00 45 18 0b 00 00 00 00 00 """...E......." +125 0x000009a9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280559616 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b9 10 02 00 00 00 00 00 fc 96 22 c3 9d 01 00 00 ".....!...o3.................""....." +126 0x000009cb control 12 67 727110 0 67 727110 0 43 00 00 00 46 18 0b 00 00 00 00 00 C...F....... +127 0x000009d7 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b9 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f cc 57 58 8c c6 82 a9 18 ?.....3...|8...................=B.....&......... +128 0x00000a1a control 12 -1 717623 0 -1 717623 0 ff ff ff ff 37 f3 0a 00 00 00 00 00 ....7....... +129 0x00000a26 control 12 30 727111 0 30 727111 0 1e 00 00 00 47 18 0b 00 00 00 00 00 ....G....... +130 0x00000a32 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1991180288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +131 0x00000a50 control 12 -1 717624 0 -1 717624 0 ff ff ff ff 38 f3 0a 00 00 00 00 00 ....8....... +132 0x00000a5c control 12 26 727112 0 26 727112 0 1a 00 00 00 48 18 0b 00 00 00 00 00 ....H....... +133 0x00000a68 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1991049216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 89 1f 00 00 00 00 00 ....T.c@.^1@......S....... +134 0x00000a82 control 12 -1 717625 0 -1 717625 0 ff ff ff ff 39 f3 0a 00 00 00 00 00 ....9....... +135 0x00000a8e control 12 26 727113 0 26 727113 0 1a 00 00 00 49 18 0b 00 00 00 00 00 ....I....... +136 0x00000a9a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1990918144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 89 1f 00 00 00 00 00 ....T.c@.^1@......U....... +137 0x00000ab4 control 12 -1 717626 0 -1 717626 0 ff ff ff ff 3a f3 0a 00 00 00 00 00 ....:....... +138 0x00000ac0 control 12 26 727114 0 26 727114 0 1a 00 00 00 4a 18 0b 00 00 00 00 00 ....J....... +139 0x00000acc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1990787072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 89 1f 00 00 00 00 00 ....T.c@.^1@......W....... +140 0x00000ae6 control 12 -1 717627 0 -1 717627 0 ff ff ff ff 3b f3 0a 00 00 00 00 00 ....;....... +141 0x00000af2 control 12 101 727115 0 101 727115 0 65 00 00 00 4b 18 0b 00 00 00 00 00 e...K....... +142 0x00000afe data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280625152 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ba 10 02 00 00 00 00 00 2c 98 22 c3 9d 01 00 00 ".....!...o3...............,.""....." +143 0x00000b20 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ba 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 07 77 9e c6 82 a9 18 ?.....3...|8...................=B.....&......... +144 0x00000b63 control 12 -1 717628 0 -1 717628 0 ff ff ff ff 3c f3 0a 00 00 00 00 00 ....<....... +145 0x00000b6f control 12 30 727116 0 30 727116 0 1e 00 00 00 4c 18 0b 00 00 00 00 00 ....L....... +146 0x00000b7b data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1990656000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +147 0x00000b99 control 12 -1 717629 0 -1 717629 0 ff ff ff ff 3d f3 0a 00 00 00 00 00 ....=....... +148 0x00000ba5 control 12 26 727117 0 26 727117 0 1a 00 00 00 4d 18 0b 00 00 00 00 00 ....M....... +149 0x00000bb1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1990524928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 89 1f 00 00 00 00 00 ....T.c@.^1@......[....... +150 0x00000bcb control 12 -1 717630 0 -1 717630 0 ff ff ff ff 3e f3 0a 00 00 00 00 00 ....>....... +151 0x00000bd7 control 12 -2 82562 82544 -2 82562 82544 fe ff ff ff 82 42 01 00 70 42 01 00 .....B..pB.. +152 0x00000be3 control 12 26 727118 0 26 727118 0 1a 00 00 00 4e 18 0b 00 00 00 00 00 ....N....... +153 0x00000bef data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1990393856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 89 1f 00 00 00 00 00 ....T.c@.^1@......]....... +154 0x00000c09 control 12 -1 717631 0 -1 717631 0 ff ff ff ff 3f f3 0a 00 00 00 00 00 ....?....... +155 0x00000c15 control 12 101 727119 0 101 727119 0 65 00 00 00 4f 18 0b 00 00 00 00 00 e...O....... +156 0x00000c21 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280690688 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bb 10 02 00 00 00 00 00 5d 99 22 c3 9d 01 00 00 ".....!...o3...............].""....." +157 0x00000c43 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bb 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 97 b4 b0 c6 82 a9 18 ?.....3...|8...................=B.....&......... +158 0x00000c86 control 12 -1 717632 0 -1 717632 0 ff ff ff ff 40 f3 0a 00 00 00 00 00 ....@....... +159 0x00000c92 control 12 26 727120 0 26 727120 0 1a 00 00 00 50 18 0b 00 00 00 00 00 ....P....... +160 0x00000c9e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1990262784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 89 1f 00 00 00 00 00 ....T.c@.^1@......_....... +161 0x00000cb8 control 12 30 727121 0 30 727121 0 1e 00 00 00 51 18 0b 00 00 00 00 00 ....Q....... +162 0x00000cc4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1990131712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +163 0x00000ce2 control 12 -1 717633 0 -1 717633 0 ff ff ff ff 41 f3 0a 00 00 00 00 00 ....A....... +164 0x00000cee control 12 -1 717634 0 -1 717634 0 ff ff ff ff 42 f3 0a 00 00 00 00 00 ....B....... +165 0x00000cfa control 12 26 727122 0 26 727122 0 1a 00 00 00 52 18 0b 00 00 00 00 00 ....R....... +166 0x00000d06 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1990000640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 89 1f 00 00 00 00 00 ....T.c@.^1@......c....... +167 0x00000d20 control 12 -1 717635 0 -1 717635 0 ff ff ff ff 43 f3 0a 00 00 00 00 00 ....C....... +168 0x00000d2c control 12 26 727123 0 26 727123 0 1a 00 00 00 53 18 0b 00 00 00 00 00 ....S....... +169 0x00000d38 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1989869568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 89 1f 00 00 00 00 00 ....T.c@.^1@......e....... +170 0x00000d52 control 12 -1 717636 0 -1 717636 0 ff ff ff ff 44 f3 0a 00 00 00 00 00 ....D....... +171 0x00000d5e control 12 34 727124 0 34 727124 0 22 00 00 00 54 18 0b 00 00 00 00 00 """...T......." +172 0x00000d6a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280756224 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bc 10 02 00 00 00 00 00 8d 9a 22 c3 9d 01 00 00 ".....!...o3.................""....." +173 0x00000d8c control 12 67 727125 0 67 727125 0 43 00 00 00 55 18 0b 00 00 00 00 00 C...U....... +174 0x00000d98 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bc 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 e3 d3 c2 c6 82 a9 18 ?.....3...|8...................=B.....&......... +175 0x00000ddb control 12 -1 717637 0 -1 717637 0 ff ff ff ff 45 f3 0a 00 00 00 00 00 ....E....... +176 0x00000de7 control 12 30 727126 0 30 727126 0 1e 00 00 00 56 18 0b 00 00 00 00 00 ....V....... +177 0x00000df3 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1989738496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 67 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......g........... +178 0x00000e11 control 12 -1 717638 0 -1 717638 0 ff ff ff ff 46 f3 0a 00 00 00 00 00 ....F....... +179 0x00000e1d control 12 26 727127 0 26 727127 0 1a 00 00 00 57 18 0b 00 00 00 00 00 ....W....... +180 0x00000e29 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1989607424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 89 1f 00 00 00 00 00 ....T.c@.^1@......i....... +181 0x00000e43 control 12 -1 717639 0 -1 717639 0 ff ff ff ff 47 f3 0a 00 00 00 00 00 ....G....... +182 0x00000e4f control 12 -2 82563 82545 -2 82563 82545 fe ff ff ff 83 42 01 00 71 42 01 00 .....B..qB.. +183 0x00000e5b control 12 26 727128 0 26 727128 0 1a 00 00 00 58 18 0b 00 00 00 00 00 ....X....... +184 0x00000e67 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1989476352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 89 1f 00 00 00 00 00 ....T.c@.^1@......k....... +185 0x00000e81 control 12 -1 717640 0 -1 717640 0 ff ff ff ff 48 f3 0a 00 00 00 00 00 ....H....... +186 0x00000e8d control 12 26 727129 0 26 727129 0 1a 00 00 00 59 18 0b 00 00 00 00 00 ....Y....... +187 0x00000e99 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1989345280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 89 1f 00 00 00 00 00 ....T.c@.^1@......m....... +188 0x00000eb3 control 12 -1 717641 0 -1 717641 0 ff ff ff ff 49 f3 0a 00 00 00 00 00 ....I....... +189 0x00000ebf control 12 101 727130 0 101 727130 0 65 00 00 00 5a 18 0b 00 00 00 00 00 e...Z....... +190 0x00000ecb data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280821760 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bd 10 02 00 00 00 00 00 be 9b 22 c3 9d 01 00 00 ".....!...o3.................""....." +191 0x00000eed data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bd 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 9e f1 d4 c6 82 a9 18 ?.....3...|8...................=B.....&......... +192 0x00000f30 control 12 -1 717642 0 -1 717642 0 ff ff ff ff 4a f3 0a 00 00 00 00 00 ....J....... +193 0x00000f3c control 12 30 727131 0 30 727131 0 1e 00 00 00 5b 18 0b 00 00 00 00 00 ....[....... +194 0x00000f48 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1989214208 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......o........... +195 0x00000f66 control 12 -1 717643 0 -1 717643 0 ff ff ff ff 4b f3 0a 00 00 00 00 00 ....K....... +196 0x00000f72 control 12 26 727132 0 26 727132 0 1a 00 00 00 5c 18 0b 00 00 00 00 00 ....\....... +197 0x00000f7e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1989083136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 89 1f 00 00 00 00 00 ....T.c@.^1@......q....... +198 0x00000f98 control 12 -1 717644 0 -1 717644 0 ff ff ff ff 4c f3 0a 00 00 00 00 00 ....L....... +199 0x00000fa4 control 12 26 727133 0 26 727133 0 1a 00 00 00 5d 18 0b 00 00 00 00 00 ....]....... +200 0x00000fb0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1988952064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 89 1f 00 00 00 00 00 ....T.c@.^1@......s....... +201 0x00000fca control 12 -1 717645 0 -1 717645 0 ff ff ff ff 4d f3 0a 00 00 00 00 00 ....M....... +202 0x00000fd6 control 12 26 727134 0 26 727134 0 1a 00 00 00 5e 18 0b 00 00 00 00 00 ....^....... +203 0x00000fe2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1988820992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 89 1f 00 00 00 00 00 ....T.c@.^1@......u....... +204 0x00000ffc control 12 -1 717646 0 -1 717646 0 ff ff ff ff 4e f3 0a 00 00 00 00 00 ....N....... +205 0x00001008 control 12 -2 82564 82546 -2 82564 82546 fe ff ff ff 84 42 01 00 72 42 01 00 .....B..rB.. +206 0x00001014 control 12 34 727135 0 34 727135 0 22 00 00 00 5f 18 0b 00 00 00 00 00 """..._......." +207 0x00001020 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280887296 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 be 10 02 00 00 00 00 00 ef 9c 22 c3 9d 01 00 00 ".....!...o3.................""....." +208 0x00001042 control 12 67 727136 0 67 727136 0 43 00 00 00 60 18 0b 00 00 00 00 00 C...`....... +209 0x0000104e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 be 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b8 e9 2e e7 c6 82 a9 18 ?.....3...|8...................=B.....&......... +210 0x00001091 control 12 -1 717647 0 -1 717647 0 ff ff ff ff 4f f3 0a 00 00 00 00 00 ....O....... +211 0x0000109d control 12 30 727137 0 30 727137 0 1e 00 00 00 61 18 0b 00 00 00 00 00 ....a....... +212 0x000010a9 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1988689920 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 77 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......w........... +213 0x000010c7 control 12 -1 717648 0 -1 717648 0 ff ff ff ff 50 f3 0a 00 00 00 00 00 ....P....... +214 0x000010d3 control 12 26 727138 0 26 727138 0 1a 00 00 00 62 18 0b 00 00 00 00 00 ....b....... +215 0x000010df data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1988558848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 89 1f 00 00 00 00 00 ....T.c@.^1@......y....... +216 0x000010f9 control 12 -1 717649 0 -1 717649 0 ff ff ff ff 51 f3 0a 00 00 00 00 00 ....Q....... +217 0x00001105 control 12 26 727139 0 26 727139 0 1a 00 00 00 63 18 0b 00 00 00 00 00 ....c....... +218 0x00001111 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1988427776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 89 1f 00 00 00 00 00 ....T.c@.^1@......{....... +219 0x0000112b control 12 -1 717650 0 -1 717650 0 ff ff ff ff 52 f3 0a 00 00 00 00 00 ....R....... +220 0x00001137 control 12 26 727140 0 26 727140 0 1a 00 00 00 64 18 0b 00 00 00 00 00 ....d....... +221 0x00001143 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1988296704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 89 1f 00 00 00 00 00 ....T.c@.^1@......}....... +222 0x0000115d control 12 -1 717651 0 -1 717651 0 ff ff ff ff 53 f3 0a 00 00 00 00 00 ....S....... +223 0x00001169 control 12 101 727141 0 101 727141 0 65 00 00 00 65 18 0b 00 00 00 00 00 e...e....... +224 0x00001175 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 280952832 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bf 10 02 00 00 00 00 00 1f 9e 22 c3 9d 01 00 00 ".....!...o3.................""....." +225 0x00001197 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bf 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b8 85 3f f9 c6 82 a9 18 ?.....3...|8...................=B.....&......... +226 0x000011da control 12 -1 717652 0 -1 717652 0 ff ff ff ff 54 f3 0a 00 00 00 00 00 ....T....... +227 0x000011e6 control 12 30 727142 0 30 727142 0 1e 00 00 00 66 18 0b 00 00 00 00 00 ....f....... +228 0x000011f2 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1988165632 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +229 0x00001210 control 12 -1 717653 0 -1 717653 0 ff ff ff ff 55 f3 0a 00 00 00 00 00 ....U....... +230 0x0000121c control 12 26 727143 0 26 727143 0 1a 00 00 00 67 18 0b 00 00 00 00 00 ....g....... +231 0x00001228 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1988034560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +232 0x00001242 control 12 -1 717654 0 -1 717654 0 ff ff ff ff 56 f3 0a 00 00 00 00 00 ....V....... +233 0x0000124e control 12 26 727144 0 26 727144 0 1a 00 00 00 68 18 0b 00 00 00 00 00 ....h....... +234 0x0000125a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1987903488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +235 0x00001274 control 12 -1 717655 0 -1 717655 0 ff ff ff ff 57 f3 0a 00 00 00 00 00 ....W....... +236 0x00001280 control 12 -2 82565 82547 -2 82565 82547 fe ff ff ff 85 42 01 00 73 42 01 00 .....B..sB.. +237 0x0000128c control 12 26 727145 0 26 727145 0 1a 00 00 00 69 18 0b 00 00 00 00 00 ....i....... +238 0x00001298 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1987772416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +239 0x000012b2 control 12 -1 717656 0 -1 717656 0 ff ff ff ff 58 f3 0a 00 00 00 00 00 ....X....... +240 0x000012be control 12 101 727146 0 101 727146 0 65 00 00 00 6a 18 0b 00 00 00 00 00 e...j....... +241 0x000012ca data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281018368 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c0 10 02 00 00 00 00 00 50 9f 22 c3 9d 01 00 00 ".....!...o3...............P.""....." +242 0x000012ec data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c0 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 dc 78 0b c7 82 a9 18 ?.....3...|8...................=B.....&......... +243 0x0000132f control 12 -1 717657 0 -1 717657 0 ff ff ff ff 59 f3 0a 00 00 00 00 00 ....Y....... +244 0x0000133b control 12 30 727147 0 30 727147 0 1e 00 00 00 6b 18 0b 00 00 00 00 00 ....k....... +245 0x00001347 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1987641344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 87 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +246 0x00001365 control 12 -1 717658 0 -1 717658 0 ff ff ff ff 5a f3 0a 00 00 00 00 00 ....Z....... +247 0x00001371 control 12 26 727148 0 26 727148 0 1a 00 00 00 6c 18 0b 00 00 00 00 00 ....l....... +248 0x0000137d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1987510272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +249 0x00001397 control 12 -1 717659 0 -1 717659 0 ff ff ff ff 5b f3 0a 00 00 00 00 00 ....[....... +250 0x000013a3 control 12 26 727149 0 26 727149 0 1a 00 00 00 6d 18 0b 00 00 00 00 00 ....m....... +251 0x000013af data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1987379200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +252 0x000013c9 control 12 -1 717660 0 -1 717660 0 ff ff ff ff 5c f3 0a 00 00 00 00 00 ....\....... +253 0x000013d5 control 12 26 727150 0 26 727150 0 1a 00 00 00 6e 18 0b 00 00 00 00 00 ....n....... +254 0x000013e1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1987248128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +255 0x000013fb control 12 -1 717661 0 -1 717661 0 ff ff ff ff 5d f3 0a 00 00 00 00 00 ....]....... +256 0x00001407 control 12 101 727151 0 101 727151 0 65 00 00 00 6f 18 0b 00 00 00 00 00 e...o....... +257 0x00001413 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281083904 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c1 10 02 00 00 00 00 00 82 a0 22 c3 9d 01 00 00 ".....!...o3.................""....." +258 0x00001435 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c1 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 e7 b5 1d c7 82 a9 18 ?.....3...|8...................=B.....&......... +259 0x00001478 control 12 -1 717662 0 -1 717662 0 ff ff ff ff 5e f3 0a 00 00 00 00 00 ....^....... +260 0x00001484 control 12 30 727152 0 30 727152 0 1e 00 00 00 70 18 0b 00 00 00 00 00 ....p....... +261 0x00001490 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1987117056 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +262 0x000014ae control 12 -1 717663 0 -1 717663 0 ff ff ff ff 5f f3 0a 00 00 00 00 00 ...._....... +263 0x000014ba control 12 26 727153 0 26 727153 0 1a 00 00 00 71 18 0b 00 00 00 00 00 ....q....... +264 0x000014c6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1986985984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +265 0x000014e0 control 12 -2 82566 82548 -2 82566 82548 fe ff ff ff 86 42 01 00 74 42 01 00 .....B..tB.. +266 0x000014ec control 12 -1 717664 0 -1 717664 0 ff ff ff ff 60 f3 0a 00 00 00 00 00 ....`....... +267 0x000014f8 control 12 26 727154 0 26 727154 0 1a 00 00 00 72 18 0b 00 00 00 00 00 ....r....... +268 0x00001504 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1986854912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +269 0x0000151e control 12 -1 717665 0 -1 717665 0 ff ff ff ff 61 f3 0a 00 00 00 00 00 ....a....... +270 0x0000152a control 12 26 727155 0 26 727155 0 1a 00 00 00 73 18 0b 00 00 00 00 00 ....s....... +271 0x00001536 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1986723840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +272 0x00001550 control 12 -1 717666 0 -1 717666 0 ff ff ff ff 62 f3 0a 00 00 00 00 00 ....b....... +273 0x0000155c control 12 101 727156 0 101 727156 0 65 00 00 00 74 18 0b 00 00 00 00 00 e...t....... +274 0x00001568 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281149440 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c2 10 02 00 00 00 00 00 b2 a1 22 c3 9d 01 00 00 ".....!...o3.................""....." +275 0x0000158a data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c2 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 9c 57 cb 2f c7 82 a9 18 ?.....3...|8...................=B.....&......... +276 0x000015cd control 12 -1 717667 0 -1 717667 0 ff ff ff ff 63 f3 0a 00 00 00 00 00 ....c....... +277 0x000015d9 control 12 30 727157 0 30 727157 0 1e 00 00 00 75 18 0b 00 00 00 00 00 ....u....... +278 0x000015e5 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1986592768 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +279 0x00001603 control 12 -1 717668 0 -1 717668 0 ff ff ff ff 64 f3 0a 00 00 00 00 00 ....d....... +280 0x0000160f control 12 26 727158 0 26 727158 0 1a 00 00 00 76 18 0b 00 00 00 00 00 ....v....... +281 0x0000161b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1986461696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +282 0x00001635 control 12 -1 717669 0 -1 717669 0 ff ff ff ff 65 f3 0a 00 00 00 00 00 ....e....... +283 0x00001641 control 12 26 727159 0 26 727159 0 1a 00 00 00 77 18 0b 00 00 00 00 00 ....w....... +284 0x0000164d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1986330624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +285 0x00001667 control 12 -1 717670 0 -1 717670 0 ff ff ff ff 66 f3 0a 00 00 00 00 00 ....f....... +286 0x00001673 control 12 -2 82567 82549 -2 82567 82549 fe ff ff ff 87 42 01 00 75 42 01 00 .....B..uB.. +287 0x0000167f control 12 26 727160 0 26 727160 0 1a 00 00 00 78 18 0b 00 00 00 00 00 ....x....... +288 0x0000168b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1986199552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +289 0x000016a5 control 12 -1 717671 0 -1 717671 0 ff ff ff ff 67 f3 0a 00 00 00 00 00 ....g....... +290 0x000016b1 control 12 101 727161 0 101 727161 0 65 00 00 00 79 18 0b 00 00 00 00 00 e...y....... +291 0x000016bd data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281214976 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c3 10 02 00 00 00 00 00 e1 a2 22 c3 9d 01 00 00 ".....!...o3.................""....." +292 0x000016df data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 44 f3 e3 41 c7 82 a9 18 ?.....3...|8...................=B.....&......... +293 0x00001722 control 12 -1 717672 0 -1 717672 0 ff ff ff ff 68 f3 0a 00 00 00 00 00 ....h....... +294 0x0000172e control 12 30 727162 0 30 727162 0 1e 00 00 00 7a 18 0b 00 00 00 00 00 ....z....... +295 0x0000173a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1986068480 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +296 0x00001758 control 12 -1 717673 0 -1 717673 0 ff ff ff ff 69 f3 0a 00 00 00 00 00 ....i....... +297 0x00001764 control 12 26 727163 0 26 727163 0 1a 00 00 00 7b 18 0b 00 00 00 00 00 ....{....... +298 0x00001770 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1985937408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +299 0x0000178a control 12 -1 717674 0 -1 717674 0 ff ff ff ff 6a f3 0a 00 00 00 00 00 ....j....... +300 0x00001796 control 12 26 727164 0 26 727164 0 1a 00 00 00 7c 18 0b 00 00 00 00 00 ....|....... +301 0x000017a2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1985806336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +302 0x000017bc control 12 -1 717675 0 -1 717675 0 ff ff ff ff 6b f3 0a 00 00 00 00 00 ....k....... +303 0x000017c8 control 12 26 727165 0 26 727165 0 1a 00 00 00 7d 18 0b 00 00 00 00 00 ....}....... +304 0x000017d4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1985675264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +305 0x000017ee control 12 -1 717676 0 -1 717676 0 ff ff ff ff 6c f3 0a 00 00 00 00 00 ....l....... +306 0x000017fa control 12 101 727166 0 101 727166 0 65 00 00 00 7e 18 0b 00 00 00 00 00 e...~....... +307 0x00001806 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281280512 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c4 10 02 00 00 00 00 00 13 a4 22 c3 9d 01 00 00 ".....!...o3.................""....." +308 0x00001828 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c4 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 c2 1d 54 c7 82 a9 18 ?.....3...|8...................=B.....&......... +309 0x0000186b control 12 -1 717677 0 -1 717677 0 ff ff ff ff 6d f3 0a 00 00 00 00 00 ....m....... +310 0x00001877 control 12 30 727167 0 30 727167 0 1e 00 00 00 7f 18 0b 00 00 00 00 00 ............ +311 0x00001883 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1985544192 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +312 0x000018a1 control 12 -1 717678 0 -1 717678 0 ff ff ff ff 6e f3 0a 00 00 00 00 00 ....n....... +313 0x000018ad control 12 26 727168 0 26 727168 0 1a 00 00 00 80 18 0b 00 00 00 00 00 ............ +314 0x000018b9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1985413120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +315 0x000018d3 control 12 -1 717679 0 -1 717679 0 ff ff ff ff 6f f3 0a 00 00 00 00 00 ....o....... +316 0x000018df control 12 -2 82568 82550 -2 82568 82550 fe ff ff ff 88 42 01 00 76 42 01 00 .....B..vB.. +317 0x000018eb control 12 26 727169 0 26 727169 0 1a 00 00 00 81 18 0b 00 00 00 00 00 ............ +318 0x000018f7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1985282048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +319 0x00001911 control 12 -1 717680 0 -1 717680 0 ff ff ff ff 70 f3 0a 00 00 00 00 00 ....p....... +320 0x0000191d control 12 26 727170 0 26 727170 0 1a 00 00 00 82 18 0b 00 00 00 00 00 ............ +321 0x00001929 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1985150976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +322 0x00001943 control 12 -1 717681 0 -1 717681 0 ff ff ff ff 71 f3 0a 00 00 00 00 00 ....q....... +323 0x0000194f control 12 101 727171 0 101 727171 0 65 00 00 00 83 18 0b 00 00 00 00 00 e........... +324 0x0000195b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281346048 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c5 10 02 00 00 00 00 00 44 a5 22 c3 9d 01 00 00 ".....!...o3...............D.""....." +325 0x0000197d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c5 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e4 bc 4b 66 c7 82 a9 18 ?.....3...|8...................=B.....&......... +326 0x000019c0 control 12 -1 717682 0 -1 717682 0 ff ff ff ff 72 f3 0a 00 00 00 00 00 ....r....... +327 0x000019cc control 12 30 727172 0 30 727172 0 1e 00 00 00 84 18 0b 00 00 00 00 00 ............ +328 0x000019d8 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1985019904 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +329 0x000019f6 control 12 -1 717683 0 -1 717683 0 ff ff ff ff 73 f3 0a 00 00 00 00 00 ....s....... +330 0x00001a02 control 12 26 727173 0 26 727173 0 1a 00 00 00 85 18 0b 00 00 00 00 00 ............ +331 0x00001a0e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1984888832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +332 0x00001a28 control 12 -1 717684 0 -1 717684 0 ff ff ff ff 74 f3 0a 00 00 00 00 00 ....t....... +333 0x00001a34 control 12 26 727174 0 26 727174 0 1a 00 00 00 86 18 0b 00 00 00 00 00 ............ +334 0x00001a40 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1984757760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +335 0x00001a5a control 12 -1 717685 0 -1 717685 0 ff ff ff ff 75 f3 0a 00 00 00 00 00 ....u....... +336 0x00001a66 control 12 26 727175 0 26 727175 0 1a 00 00 00 87 18 0b 00 00 00 00 00 ............ +337 0x00001a72 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1984626688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +338 0x00001a8c control 12 -1 717686 0 -1 717686 0 ff ff ff ff 76 f3 0a 00 00 00 00 00 ....v....... +339 0x00001a98 control 12 101 727176 0 101 727176 0 65 00 00 00 88 18 0b 00 00 00 00 00 e........... +340 0x00001aa4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281411584 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c6 10 02 00 00 00 00 00 75 a6 22 c3 9d 01 00 00 ".....!...o3...............u.""....." +341 0x00001ac6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 a6 79 78 c7 82 a9 18 ?.....3...|8...................=B.....&......... +342 0x00001b09 control 12 -1 717687 0 -1 717687 0 ff ff ff ff 77 f3 0a 00 00 00 00 00 ....w....... +343 0x00001b15 control 12 30 727177 0 30 727177 0 1e 00 00 00 89 18 0b 00 00 00 00 00 ............ +344 0x00001b21 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1984495616 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +345 0x00001b3f control 12 -1 717688 0 -1 717688 0 ff ff ff ff 78 f3 0a 00 00 00 00 00 ....x....... +346 0x00001b4b control 12 -2 82569 82551 -2 82569 82551 fe ff ff ff 89 42 01 00 77 42 01 00 .....B..wB.. +347 0x00001b57 control 12 26 727178 0 26 727178 0 1a 00 00 00 8a 18 0b 00 00 00 00 00 ............ +348 0x00001b63 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1984364544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +349 0x00001b7d control 12 -1 717689 0 -1 717689 0 ff ff ff ff 79 f3 0a 00 00 00 00 00 ....y....... +350 0x00001b89 control 12 26 727179 0 26 727179 0 1a 00 00 00 8b 18 0b 00 00 00 00 00 ............ +351 0x00001b95 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1984233472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +352 0x00001baf control 12 -1 717690 0 -1 717690 0 ff ff ff ff 7a f3 0a 00 00 00 00 00 ....z....... +353 0x00001bbb control 12 26 727180 0 26 727180 0 1a 00 00 00 8c 18 0b 00 00 00 00 00 ............ +354 0x00001bc7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1984102400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +355 0x00001be1 control 12 -1 717691 0 -1 717691 0 ff ff ff ff 7b f3 0a 00 00 00 00 00 ....{....... +356 0x00001bed control 12 34 727181 0 34 727181 0 22 00 00 00 8d 18 0b 00 00 00 00 00 """..........." +357 0x00001bf9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281477120 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c7 10 02 00 00 00 00 00 a7 a7 22 c3 9d 01 00 00 ".....!...o3.................""....." +358 0x00001c1b control 12 67 727182 0 67 727182 0 43 00 00 00 8e 18 0b 00 00 00 00 00 C........... +359 0x00001c27 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 54 ad 8a c7 82 a9 18 ?.....3...|8...................=B.....&......... +360 0x00001c6a control 12 -1 717692 0 -1 717692 0 ff ff ff ff 7c f3 0a 00 00 00 00 00 ....|....... +361 0x00001c76 control 12 30 727183 0 30 727183 0 1e 00 00 00 8f 18 0b 00 00 00 00 00 ............ +362 0x00001c82 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1983971328 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +363 0x00001ca0 control 12 -1 717693 0 -1 717693 0 ff ff ff ff 7d f3 0a 00 00 00 00 00 ....}....... +364 0x00001cac control 12 26 727184 0 26 727184 0 1a 00 00 00 90 18 0b 00 00 00 00 00 ............ +365 0x00001cb8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1983840256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +366 0x00001cd2 control 12 -1 717694 0 -1 717694 0 ff ff ff ff 7e f3 0a 00 00 00 00 00 ....~....... +367 0x00001cde control 12 26 727185 0 26 727185 0 1a 00 00 00 91 18 0b 00 00 00 00 00 ............ +368 0x00001cea data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1983709184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +369 0x00001d04 control 12 -1 717695 0 -1 717695 0 ff ff ff ff 7f f3 0a 00 00 00 00 00 ............ +370 0x00001d10 control 12 -2 82570 82552 -2 82570 82552 fe ff ff ff 8a 42 01 00 78 42 01 00 .....B..xB.. +371 0x00001d1c control 12 26 727186 0 26 727186 0 1a 00 00 00 92 18 0b 00 00 00 00 00 ............ +372 0x00001d28 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1983578112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +373 0x00001d42 control 12 -1 717696 0 -1 717696 0 ff ff ff ff 80 f3 0a 00 00 00 00 00 ............ +374 0x00001d4e control 12 101 727187 0 101 727187 0 65 00 00 00 93 18 0b 00 00 00 00 00 e........... +375 0x00001d5a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281542656 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c8 10 02 00 00 00 00 00 d8 a8 22 c3 9d 01 00 00 ".....!...o3.................""....." +376 0x00001d7c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c8 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 ed e9 9c c7 82 a9 18 ?.....3...|8...................=B.....&......... +377 0x00001dbf control 12 -1 717697 0 -1 717697 0 ff ff ff ff 81 f3 0a 00 00 00 00 00 ............ +378 0x00001dcb control 12 30 727188 0 30 727188 0 1e 00 00 00 94 18 0b 00 00 00 00 00 ............ +379 0x00001dd7 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1983447040 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +380 0x00001df5 control 12 -1 717698 0 -1 717698 0 ff ff ff ff 82 f3 0a 00 00 00 00 00 ............ +381 0x00001e01 control 12 26 727189 0 26 727189 0 1a 00 00 00 95 18 0b 00 00 00 00 00 ............ +382 0x00001e0d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1983315968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +383 0x00001e27 control 12 -1 717699 0 -1 717699 0 ff ff ff ff 83 f3 0a 00 00 00 00 00 ............ +384 0x00001e33 control 12 26 727190 0 26 727190 0 1a 00 00 00 96 18 0b 00 00 00 00 00 ............ +385 0x00001e3f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1983184896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +386 0x00001e59 control 12 -1 717700 0 -1 717700 0 ff ff ff ff 84 f3 0a 00 00 00 00 00 ............ +387 0x00001e65 control 12 26 727191 0 26 727191 0 1a 00 00 00 97 18 0b 00 00 00 00 00 ............ +388 0x00001e71 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1983053824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +389 0x00001e8b control 12 -1 717701 0 -1 717701 0 ff ff ff ff 85 f3 0a 00 00 00 00 00 ............ +390 0x00001e97 control 12 101 727192 0 101 727192 0 65 00 00 00 98 18 0b 00 00 00 00 00 e........... +391 0x00001ea3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281608192 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c9 10 02 00 00 00 00 00 09 aa 22 c3 9d 01 00 00 ".....!...o3.................""....." +392 0x00001ec5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c9 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 a0 0b af c7 82 a9 18 ?.....3...|8...................=B.....&......... +393 0x00001f08 control 12 -1 717702 0 -1 717702 0 ff ff ff ff 86 f3 0a 00 00 00 00 00 ............ +394 0x00001f14 control 12 30 727193 0 30 727193 0 1e 00 00 00 99 18 0b 00 00 00 00 00 ............ +395 0x00001f20 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1982922752 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cf 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +396 0x00001f3e control 12 -1 717703 0 -1 717703 0 ff ff ff ff 87 f3 0a 00 00 00 00 00 ............ +397 0x00001f4a control 12 26 727194 0 26 727194 0 1a 00 00 00 9a 18 0b 00 00 00 00 00 ............ +398 0x00001f56 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1982791680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +399 0x00001f70 control 12 -1 717704 0 -1 717704 0 ff ff ff ff 88 f3 0a 00 00 00 00 00 ............ +400 0x00001f7c control 12 -2 82571 82553 -2 82571 82553 fe ff ff ff 8b 42 01 00 79 42 01 00 .....B..yB.. +401 0x00001f88 control 12 26 727195 0 26 727195 0 1a 00 00 00 9b 18 0b 00 00 00 00 00 ............ +402 0x00001f94 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1982660608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +403 0x00001fae control 12 -1 717705 0 -1 717705 0 ff ff ff ff 89 f3 0a 00 00 00 00 00 ............ +404 0x00001fba control 12 26 727196 0 26 727196 0 1a 00 00 00 9c 18 0b 00 00 00 00 00 ............ +405 0x00001fc6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1982529536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +406 0x00001fe0 control 12 -1 717706 0 -1 717706 0 ff ff ff ff 8a f3 0a 00 00 00 00 00 ............ +407 0x00001fec control 12 101 727197 0 101 727197 0 65 00 00 00 9d 18 0b 00 00 00 00 00 e........... +408 0x00001ff8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281673728 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ca 10 02 00 00 00 00 00 3a ab 22 c3 9d 01 00 00 ".....!...o3...............:.""....." +409 0x0000201a data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ca 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 08 cc 3f c1 c7 82 a9 18 ?.....3...|8...................=B.....&......... +410 0x0000205d control 12 -1 717707 0 -1 717707 0 ff ff ff ff 8b f3 0a 00 00 00 00 00 ............ +411 0x00002069 control 12 30 727198 0 30 727198 0 1e 00 00 00 9e 18 0b 00 00 00 00 00 ............ +412 0x00002075 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1982398464 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +413 0x00002093 control 12 -1 717708 0 -1 717708 0 ff ff ff ff 8c f3 0a 00 00 00 00 00 ............ +414 0x0000209f control 12 26 727199 0 26 727199 0 1a 00 00 00 9f 18 0b 00 00 00 00 00 ............ +415 0x000020ab data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1982267392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +416 0x000020c5 control 12 -1 717709 0 -1 717709 0 ff ff ff ff 8d f3 0a 00 00 00 00 00 ............ +417 0x000020d1 control 12 26 727200 0 26 727200 0 1a 00 00 00 a0 18 0b 00 00 00 00 00 ............ +418 0x000020dd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1982136320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +419 0x000020f7 control 12 -1 717710 0 -1 717710 0 ff ff ff ff 8e f3 0a 00 00 00 00 00 ............ +420 0x00002103 control 12 26 727201 0 26 727201 0 1a 00 00 00 a1 18 0b 00 00 00 00 00 ............ +421 0x0000210f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1982005248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +422 0x00002129 control 12 -1 717711 0 -1 717711 0 ff ff ff ff 8f f3 0a 00 00 00 00 00 ............ +423 0x00002135 control 12 -2 82572 82554 -2 82572 82554 fe ff ff ff 8c 42 01 00 7a 42 01 00 .....B..zB.. +424 0x00002141 control 12 34 727202 0 34 727202 0 22 00 00 00 a2 18 0b 00 00 00 00 00 """..........." +425 0x0000214d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281739264 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cb 10 02 00 00 00 00 00 6b ac 22 c3 9d 01 00 00 ".....!...o3...............k.""....." +426 0x0000216f control 12 67 727203 0 67 727203 0 43 00 00 00 a3 18 0b 00 00 00 00 00 C........... +427 0x0000217b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cb 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c 49 76 d3 c7 82 a9 18 ?.....3...|8...................=B.....&......... +428 0x000021be control 12 -1 717712 0 -1 717712 0 ff ff ff ff 90 f3 0a 00 00 00 00 00 ............ +429 0x000021ca control 12 30 727204 0 30 727204 0 1e 00 00 00 a4 18 0b 00 00 00 00 00 ............ +430 0x000021d6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1981874176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 df 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +431 0x000021f4 control 12 -1 717713 0 -1 717713 0 ff ff ff ff 91 f3 0a 00 00 00 00 00 ............ +432 0x00002200 control 12 26 727205 0 26 727205 0 1a 00 00 00 a5 18 0b 00 00 00 00 00 ............ +433 0x0000220c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1981743104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +434 0x00002226 control 12 -1 717714 0 -1 717714 0 ff ff ff ff 92 f3 0a 00 00 00 00 00 ............ +435 0x00002232 control 12 26 727206 0 26 727206 0 1a 00 00 00 a6 18 0b 00 00 00 00 00 ............ +436 0x0000223e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1981612032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +437 0x00002258 control 12 -1 717715 0 -1 717715 0 ff ff ff ff 93 f3 0a 00 00 00 00 00 ............ +438 0x00002264 control 12 26 727207 0 26 727207 0 1a 00 00 00 a7 18 0b 00 00 00 00 00 ............ +439 0x00002270 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1981480960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +440 0x0000228a control 12 -1 717716 0 -1 717716 0 ff ff ff ff 94 f3 0a 00 00 00 00 00 ............ +441 0x00002296 control 12 101 727208 0 101 727208 0 65 00 00 00 a8 18 0b 00 00 00 00 00 e........... +442 0x000022a2 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281804800 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cc 10 02 00 00 00 00 00 9a ad 22 c3 9d 01 00 00 ".....!...o3.................""....." +443 0x000022c4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cc 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c 29 90 e5 c7 82 a9 18 ?.....3...|8...................=B.....&......... +444 0x00002307 control 12 -1 717717 0 -1 717717 0 ff ff ff ff 95 f3 0a 00 00 00 00 00 ............ +445 0x00002313 control 12 30 727209 0 30 727209 0 1e 00 00 00 a9 18 0b 00 00 00 00 00 ............ +446 0x0000231f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1981349888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +447 0x0000233d control 12 -1 717718 0 -1 717718 0 ff ff ff ff 96 f3 0a 00 00 00 00 00 ............ +448 0x00002349 control 12 26 727210 0 26 727210 0 1a 00 00 00 aa 18 0b 00 00 00 00 00 ............ +449 0x00002355 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1981218816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +450 0x0000236f control 12 -1 717719 0 -1 717719 0 ff ff ff ff 97 f3 0a 00 00 00 00 00 ............ +451 0x0000237b control 12 26 727211 0 26 727211 0 1a 00 00 00 ab 18 0b 00 00 00 00 00 ............ +452 0x00002387 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1981087744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +453 0x000023a1 control 12 -2 82573 82555 -2 82573 82555 fe ff ff ff 8d 42 01 00 7b 42 01 00 .....B..{B.. +454 0x000023ad control 12 -1 717720 0 -1 717720 0 ff ff ff ff 98 f3 0a 00 00 00 00 00 ............ +455 0x000023b9 control 12 26 727212 0 26 727212 0 1a 00 00 00 ac 18 0b 00 00 00 00 00 ............ +456 0x000023c5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1980956672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +457 0x000023df control 12 -1 717721 0 -1 717721 0 ff ff ff ff 99 f3 0a 00 00 00 00 00 ............ +458 0x000023eb control 12 101 727213 0 101 727213 0 65 00 00 00 ad 18 0b 00 00 00 00 00 e........... +459 0x000023f7 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281870336 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cd 10 02 00 00 00 00 00 cc ae 22 c3 9d 01 00 00 ".....!...o3.................""....." +460 0x00002419 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cd 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 92 b9 f7 c7 82 a9 18 ?.....3...|8...................=B.....&......... +461 0x0000245c control 12 -1 717722 0 -1 717722 0 ff ff ff ff 9a f3 0a 00 00 00 00 00 ............ +462 0x00002468 control 12 30 727214 0 30 727214 0 1e 00 00 00 ae 18 0b 00 00 00 00 00 ............ +463 0x00002474 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1980825600 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ef 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +464 0x00002492 control 12 -1 717723 0 -1 717723 0 ff ff ff ff 9b f3 0a 00 00 00 00 00 ............ +465 0x0000249e control 12 26 727215 0 26 727215 0 1a 00 00 00 af 18 0b 00 00 00 00 00 ............ +466 0x000024aa data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1980694528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +467 0x000024c4 control 12 -1 717724 0 -1 717724 0 ff ff ff ff 9c f3 0a 00 00 00 00 00 ............ +468 0x000024d0 control 12 26 727216 0 26 727216 0 1a 00 00 00 b0 18 0b 00 00 00 00 00 ............ +469 0x000024dc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1980563456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +470 0x000024f6 control 12 -1 717725 0 -1 717725 0 ff ff ff ff 9d f3 0a 00 00 00 00 00 ............ +471 0x00002502 control 12 26 727217 0 26 727217 0 1a 00 00 00 b1 18 0b 00 00 00 00 00 ............ +472 0x0000250e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1980432384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +473 0x00002528 control 12 -1 717726 0 -1 717726 0 ff ff ff ff 9e f3 0a 00 00 00 00 00 ............ +474 0x00002534 control 12 101 727218 0 101 727218 0 65 00 00 00 b2 18 0b 00 00 00 00 00 e........... +475 0x00002540 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 281935872 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ce 10 02 00 00 00 00 00 fc af 22 c3 9d 01 00 00 ".....!...o3.................""....." +476 0x00002562 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ce 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c 6f dd 09 c8 82 a9 18 ?.....3...|8...................=B.....&......... +477 0x000025a5 control 12 -1 717727 0 -1 717727 0 ff ff ff ff 9f f3 0a 00 00 00 00 00 ............ +478 0x000025b1 control 12 30 727219 0 30 727219 0 1e 00 00 00 b3 18 0b 00 00 00 00 00 ............ +479 0x000025bd data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1980301312 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +480 0x000025db control 12 -1 717728 0 -1 717728 0 ff ff ff ff a0 f3 0a 00 00 00 00 00 ............ +481 0x000025e7 control 12 -2 82574 82556 -2 82574 82556 fe ff ff ff 8e 42 01 00 7c 42 01 00 .....B..|B.. +482 0x000025f3 control 12 26 727220 0 26 727220 0 1a 00 00 00 b4 18 0b 00 00 00 00 00 ............ +483 0x000025ff data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1980170240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +484 0x00002619 control 12 -1 717729 0 -1 717729 0 ff ff ff ff a1 f3 0a 00 00 00 00 00 ............ +485 0x00002625 control 12 26 727221 0 26 727221 0 1a 00 00 00 b5 18 0b 00 00 00 00 00 ............ +486 0x00002631 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1980039168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +487 0x0000264b control 12 -1 717730 0 -1 717730 0 ff ff ff ff a2 f3 0a 00 00 00 00 00 ............ +488 0x00002657 control 12 26 727222 0 26 727222 0 1a 00 00 00 b6 18 0b 00 00 00 00 00 ............ +489 0x00002663 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1979908096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +490 0x0000267d control 12 101 727223 0 101 727223 0 65 00 00 00 b7 18 0b 00 00 00 00 00 e........... +491 0x00002689 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282001408 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cf 10 02 00 00 00 00 00 2c b1 22 c3 9d 01 00 00 ".....!...o3...............,.""....." +492 0x000026ab data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cf 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 fd 05 1c c8 82 a9 18 ?.....3...|8...................=B.....&......... +493 0x000026ee control 12 -1 717731 0 -1 717731 0 ff ff ff ff a3 f3 0a 00 00 00 00 00 ............ +494 0x000026fa control 12 -1 717732 0 -1 717732 0 ff ff ff ff a4 f3 0a 00 00 00 00 00 ............ +495 0x00002706 control 12 30 727224 0 30 727224 0 1e 00 00 00 b8 18 0b 00 00 00 00 00 ............ +496 0x00002712 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1979777024 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ff 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +497 0x00002730 control 12 -1 717733 0 -1 717733 0 ff ff ff ff a5 f3 0a 00 00 00 00 00 ............ +498 0x0000273c control 12 26 727225 0 26 727225 0 1a 00 00 00 b9 18 0b 00 00 00 00 00 ............ +499 0x00002748 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1979645952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +500 0x00002762 control 12 -1 717734 0 -1 717734 0 ff ff ff ff a6 f3 0a 00 00 00 00 00 ............ +501 0x0000276e control 12 26 727226 0 26 727226 0 1a 00 00 00 ba 18 0b 00 00 00 00 00 ............ +502 0x0000277a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1979514880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +503 0x00002794 control 12 -1 717735 0 -1 717735 0 ff ff ff ff a7 f3 0a 00 00 00 00 00 ............ +504 0x000027a0 control 12 -2 82575 82557 -2 82575 82557 fe ff ff ff 8f 42 01 00 7d 42 01 00 .....B..}B.. +505 0x000027ac control 12 34 727227 0 34 727227 0 22 00 00 00 bb 18 0b 00 00 00 00 00 """..........." +506 0x000027b8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282066944 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d0 10 02 00 00 00 00 00 5e b2 22 c3 9d 01 00 00 ".....!...o3...............^.""....." +507 0x000027da control 12 67 727228 0 67 727228 0 43 00 00 00 bc 18 0b 00 00 00 00 00 C........... +508 0x000027e6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d0 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 50 7e 2d 2e c8 82 a9 18 ?.....3...|8...................=B.....&......... +509 0x00002829 control 12 -1 717736 0 -1 717736 0 ff ff ff ff a8 f3 0a 00 00 00 00 00 ............ +510 0x00002835 control 12 30 727229 0 30 727229 0 1e 00 00 00 bd 18 0b 00 00 00 00 00 ............ +511 0x00002841 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1979383808 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +512 0x0000285f control 12 26 727230 0 26 727230 0 1a 00 00 00 be 18 0b 00 00 00 00 00 ............ +513 0x0000286b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1979252736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +514 0x00002885 control 12 -1 717737 0 -1 717737 0 ff ff ff ff a9 f3 0a 00 00 00 00 00 ............ +515 0x00002891 control 12 -1 717738 0 -1 717738 0 ff ff ff ff aa f3 0a 00 00 00 00 00 ............ +516 0x0000289d control 12 26 727231 0 26 727231 0 1a 00 00 00 bf 18 0b 00 00 00 00 00 ............ +517 0x000028a9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1979121664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +518 0x000028c3 control 12 -1 717739 0 -1 717739 0 ff ff ff ff ab f3 0a 00 00 00 00 00 ............ +519 0x000028cf control 12 26 727232 0 26 727232 0 1a 00 00 00 c0 18 0b 00 00 00 00 00 ............ +520 0x000028db data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1978990592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +521 0x000028f5 control 12 -1 717740 0 -1 717740 0 ff ff ff ff ac f3 0a 00 00 00 00 00 ............ +522 0x00002901 control 12 34 727233 0 34 727233 0 22 00 00 00 c1 18 0b 00 00 00 00 00 """..........." +523 0x0000290d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282132480 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d1 10 02 00 00 00 00 00 8e b3 22 c3 9d 01 00 00 ".....!...o3.................""....." +524 0x0000292f control 12 67 727234 0 67 727234 0 43 00 00 00 c2 18 0b 00 00 00 00 00 C........... +525 0x0000293b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d1 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 ae 66 40 c8 82 a9 18 ?.....3...|8...................=B.....&......... +526 0x0000297e control 12 -1 717741 0 -1 717741 0 ff ff ff ff ad f3 0a 00 00 00 00 00 ............ +527 0x0000298a control 12 30 727235 0 30 727235 0 1e 00 00 00 c3 18 0b 00 00 00 00 00 ............ +528 0x00002996 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1978859520 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +529 0x000029b4 control 12 -1 717742 0 -1 717742 0 ff ff ff ff ae f3 0a 00 00 00 00 00 ............ +530 0x000029c0 control 12 26 727236 0 26 727236 0 1a 00 00 00 c4 18 0b 00 00 00 00 00 ............ +531 0x000029cc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1978728448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +532 0x000029e6 control 12 -1 717743 0 -1 717743 0 ff ff ff ff af f3 0a 00 00 00 00 00 ............ +533 0x000029f2 control 12 26 727237 0 26 727237 0 1a 00 00 00 c5 18 0b 00 00 00 00 00 ............ +534 0x000029fe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1978597376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +535 0x00002a18 control 12 -1 717744 0 -1 717744 0 ff ff ff ff b0 f3 0a 00 00 00 00 00 ............ +536 0x00002a24 control 12 -2 82576 82558 -2 82576 82558 fe ff ff ff 90 42 01 00 7e 42 01 00 .....B..~B.. +537 0x00002a30 control 12 26 727238 0 26 727238 0 1a 00 00 00 c6 18 0b 00 00 00 00 00 ............ +538 0x00002a3c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1978466304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +539 0x00002a56 control 12 -1 717745 0 -1 717745 0 ff ff ff ff b1 f3 0a 00 00 00 00 00 ............ +540 0x00002a62 control 12 34 727239 0 34 727239 0 22 00 00 00 c7 18 0b 00 00 00 00 00 """..........." +541 0x00002a6e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282198016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d2 10 02 00 00 00 00 00 bf b4 22 c3 9d 01 00 00 ".....!...o3.................""....." +542 0x00002a90 control 12 67 727240 0 67 727240 0 43 00 00 00 c8 18 0b 00 00 00 00 00 C........... +543 0x00002a9c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d2 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 44 9f 80 52 c8 82 a9 18 ?.....3...|8...................=B.....&......... +544 0x00002adf control 12 -1 717746 0 -1 717746 0 ff ff ff ff b2 f3 0a 00 00 00 00 00 ............ +545 0x00002aeb control 12 30 727241 0 30 727241 0 1e 00 00 00 c9 18 0b 00 00 00 00 00 ............ +546 0x00002af7 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1978335232 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +547 0x00002b15 control 12 -1 717747 0 -1 717747 0 ff ff ff ff b3 f3 0a 00 00 00 00 00 ............ +548 0x00002b21 control 12 26 727242 0 26 727242 0 1a 00 00 00 ca 18 0b 00 00 00 00 00 ............ +549 0x00002b2d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1978204160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +550 0x00002b47 control 12 -1 717748 0 -1 717748 0 ff ff ff ff b4 f3 0a 00 00 00 00 00 ............ +551 0x00002b53 control 12 26 727243 0 26 727243 0 1a 00 00 00 cb 18 0b 00 00 00 00 00 ............ +552 0x00002b5f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1978073088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +553 0x00002b79 control 12 -1 717749 0 -1 717749 0 ff ff ff ff b5 f3 0a 00 00 00 00 00 ............ +554 0x00002b85 control 12 26 727244 0 26 727244 0 1a 00 00 00 cc 18 0b 00 00 00 00 00 ............ +555 0x00002b91 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1977942016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +556 0x00002bab control 12 -1 717750 0 -1 717750 0 ff ff ff ff b6 f3 0a 00 00 00 00 00 ............ +557 0x00002bb7 control 12 101 727245 0 101 727245 0 65 00 00 00 cd 18 0b 00 00 00 00 00 e........... +558 0x00002bc3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282263552 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d3 10 02 00 00 00 00 00 ef b5 22 c3 9d 01 00 00 ".....!...o3.................""....." +559 0x00002be5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 c4 af 64 c8 82 a9 18 ?.....3...|8...................=B.....&......... +560 0x00002c28 control 12 -1 717751 0 -1 717751 0 ff ff ff ff b7 f3 0a 00 00 00 00 00 ............ +561 0x00002c34 control 12 30 727246 0 30 727246 0 1e 00 00 00 ce 18 0b 00 00 00 00 00 ............ +562 0x00002c40 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1977810944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +563 0x00002c5e control 12 -1 717752 0 -1 717752 0 ff ff ff ff b8 f3 0a 00 00 00 00 00 ............ +564 0x00002c6a control 12 26 727247 0 26 727247 0 1a 00 00 00 cf 18 0b 00 00 00 00 00 ............ +565 0x00002c76 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1977679872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +566 0x00002c90 control 12 -1 717753 0 -1 717753 0 ff ff ff ff b9 f3 0a 00 00 00 00 00 ............ +567 0x00002c9c control 12 -2 82577 82559 -2 82577 82559 fe ff ff ff 91 42 01 00 7f 42 01 00 .....B...B.. +568 0x00002ca8 control 12 26 727248 0 26 727248 0 1a 00 00 00 d0 18 0b 00 00 00 00 00 ............ +569 0x00002cb4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1977548800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 8a 1f 00 00 00 00 00 ....T.c@.^1@......!....... +570 0x00002cce control 12 -1 717754 0 -1 717754 0 ff ff ff ff ba f3 0a 00 00 00 00 00 ............ +571 0x00002cda control 12 26 727249 0 26 727249 0 1a 00 00 00 d1 18 0b 00 00 00 00 00 ............ +572 0x00002ce6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1977417728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 8a 1f 00 00 00 00 00 ....T.c@.^1@......#....... +573 0x00002d00 control 12 -1 717755 0 -1 717755 0 ff ff ff ff bb f3 0a 00 00 00 00 00 ............ +574 0x00002d0c control 12 101 727250 0 101 727250 0 65 00 00 00 d2 18 0b 00 00 00 00 00 e........... +575 0x00002d18 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282329088 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d4 10 02 00 00 00 00 00 20 b7 22 c3 9d 01 00 00 ".....!...o3............... .""....." +576 0x00002d3a data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d4 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f cc 31 c4 76 c8 82 a9 18 ?.....3...|8...................=B.....&......... +577 0x00002d7d control 12 -1 717756 0 -1 717756 0 ff ff ff ff bc f3 0a 00 00 00 00 00 ............ +578 0x00002d89 control 12 30 727251 0 30 727251 0 1e 00 00 00 d3 18 0b 00 00 00 00 00 ............ +579 0x00002d95 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1977286656 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +580 0x00002db3 control 12 -1 717757 0 -1 717757 0 ff ff ff ff bd f3 0a 00 00 00 00 00 ............ +581 0x00002dbf control 12 26 727252 0 26 727252 0 1a 00 00 00 d4 18 0b 00 00 00 00 00 ............ +582 0x00002dcb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1977155584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 8a 1f 00 00 00 00 00 ....T.c@.^1@......'....... +583 0x00002de5 control 12 -1 717758 0 -1 717758 0 ff ff ff ff be f3 0a 00 00 00 00 00 ............ +584 0x00002df1 control 12 26 727253 0 26 727253 0 1a 00 00 00 d5 18 0b 00 00 00 00 00 ............ +585 0x00002dfd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1977024512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 8a 1f 00 00 00 00 00 ....T.c@.^1@......)....... +586 0x00002e17 control 12 -1 717759 0 -1 717759 0 ff ff ff ff bf f3 0a 00 00 00 00 00 ............ +587 0x00002e23 control 12 26 727254 0 26 727254 0 1a 00 00 00 d6 18 0b 00 00 00 00 00 ............ +588 0x00002e2f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1976893440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 8a 1f 00 00 00 00 00 ....T.c@.^1@......+....... +589 0x00002e49 control 12 -1 717760 0 -1 717760 0 ff ff ff ff c0 f3 0a 00 00 00 00 00 ............ +590 0x00002e55 control 12 -2 82578 82560 -2 82578 82560 fe ff ff ff 92 42 01 00 80 42 01 00 .....B...B.. +591 0x00002e61 control 12 101 727255 0 101 727255 0 65 00 00 00 d7 18 0b 00 00 00 00 00 e........... +592 0x00002e6d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282394624 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d5 10 02 00 00 00 00 00 4f b8 22 c3 9d 01 00 00 ".....!...o3...............O.""....." +593 0x00002e8f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d5 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 72 d9 88 c8 82 a9 18 ?.....3...|8...................=B.....&......... +594 0x00002ed2 control 12 -1 717761 0 -1 717761 0 ff ff ff ff c1 f3 0a 00 00 00 00 00 ............ +595 0x00002ede control 12 30 727256 0 30 727256 0 1e 00 00 00 d8 18 0b 00 00 00 00 00 ............ +596 0x00002eea data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1976762368 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +597 0x00002f08 control 12 -1 717762 0 -1 717762 0 ff ff ff ff c2 f3 0a 00 00 00 00 00 ............ +598 0x00002f14 control 12 26 727257 0 26 727257 0 1a 00 00 00 d9 18 0b 00 00 00 00 00 ............ +599 0x00002f20 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1976631296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 8a 1f 00 00 00 00 00 ....T.c@.^1@....../....... +600 0x00002f3a control 12 -1 717763 0 -1 717763 0 ff ff ff ff c3 f3 0a 00 00 00 00 00 ............ +601 0x00002f46 control 12 26 727258 0 26 727258 0 1a 00 00 00 da 18 0b 00 00 00 00 00 ............ +602 0x00002f52 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1976500224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 8a 1f 00 00 00 00 00 ....T.c@.^1@......1....... +603 0x00002f6c control 12 -1 717764 0 -1 717764 0 ff ff ff ff c4 f3 0a 00 00 00 00 00 ............ +604 0x00002f78 control 12 26 727259 0 26 727259 0 1a 00 00 00 db 18 0b 00 00 00 00 00 ............ +605 0x00002f84 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1976369152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 8a 1f 00 00 00 00 00 ....T.c@.^1@......3....... +606 0x00002f9e control 12 -1 717765 0 -1 717765 0 ff ff ff ff c5 f3 0a 00 00 00 00 00 ............ +607 0x00002faa control 12 34 727260 0 34 727260 0 22 00 00 00 dc 18 0b 00 00 00 00 00 """..........." +608 0x00002fb6 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282460160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d6 10 02 00 00 00 00 00 81 b9 22 c3 9d 01 00 00 ".....!...o3.................""....." +609 0x00002fd8 control 12 67 727261 0 67 727261 0 43 00 00 00 dd 18 0b 00 00 00 00 00 C........... +610 0x00002fe4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 14 16 9b c8 82 a9 18 ?.....3...|8...................=B.....&......... +611 0x00003027 control 12 -1 717766 0 -1 717766 0 ff ff ff ff c6 f3 0a 00 00 00 00 00 ............ +612 0x00003033 control 12 30 727262 0 30 727262 0 1e 00 00 00 de 18 0b 00 00 00 00 00 ............ +613 0x0000303f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1976238080 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +614 0x0000305d control 12 -1 717767 0 -1 717767 0 ff ff ff ff c7 f3 0a 00 00 00 00 00 ............ +615 0x00003069 control 12 26 727263 0 26 727263 0 1a 00 00 00 df 18 0b 00 00 00 00 00 ............ +616 0x00003075 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1976107008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 8a 1f 00 00 00 00 00 ....T.c@.^1@......7....... +617 0x0000308f control 12 -1 717768 0 -1 717768 0 ff ff ff ff c8 f3 0a 00 00 00 00 00 ............ +618 0x0000309b control 12 26 727264 0 26 727264 0 1a 00 00 00 e0 18 0b 00 00 00 00 00 ............ +619 0x000030a7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1975975936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 8a 1f 00 00 00 00 00 ....T.c@.^1@......9....... +620 0x000030c1 control 12 -1 717769 0 -1 717769 0 ff ff ff ff c9 f3 0a 00 00 00 00 00 ............ +621 0x000030cd control 12 -2 82579 82561 -2 82579 82561 fe ff ff ff 93 42 01 00 81 42 01 00 .....B...B.. +622 0x000030d9 control 12 26 727265 0 26 727265 0 1a 00 00 00 e1 18 0b 00 00 00 00 00 ............ +623 0x000030e5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1975844864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 8a 1f 00 00 00 00 00 ....T.c@.^1@......;....... +624 0x000030ff control 12 -1 717770 0 -1 717770 0 ff ff ff ff ca f3 0a 00 00 00 00 00 ............ +625 0x0000310b control 12 101 727266 0 101 727266 0 65 00 00 00 e2 18 0b 00 00 00 00 00 e........... +626 0x00003117 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282525696 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d7 10 02 00 00 00 00 00 b1 ba 22 c3 9d 01 00 00 ".....!...o3.................""....." +627 0x00003139 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 10 b5 34 ad c8 82 a9 18 ?.....3...|8...................=B.....&......... +628 0x0000317c control 12 -1 717771 0 -1 717771 0 ff ff ff ff cb f3 0a 00 00 00 00 00 ............ +629 0x00003188 control 12 30 727267 0 30 727267 0 1e 00 00 00 e3 18 0b 00 00 00 00 00 ............ +630 0x00003194 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1975713792 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +631 0x000031b2 control 12 -1 717772 0 -1 717772 0 ff ff ff ff cc f3 0a 00 00 00 00 00 ............ +632 0x000031be control 12 26 727268 0 26 727268 0 1a 00 00 00 e4 18 0b 00 00 00 00 00 ............ +633 0x000031ca data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1975582720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 8a 1f 00 00 00 00 00 ....T.c@.^1@......?....... +634 0x000031e4 control 12 -1 717773 0 -1 717773 0 ff ff ff ff cd f3 0a 00 00 00 00 00 ............ +635 0x000031f0 control 12 26 727269 0 26 727269 0 1a 00 00 00 e5 18 0b 00 00 00 00 00 ............ +636 0x000031fc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1975451648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 8a 1f 00 00 00 00 00 ....T.c@.^1@......A....... +637 0x00003216 control 12 -1 717774 0 -1 717774 0 ff ff ff ff ce f3 0a 00 00 00 00 00 ............ +638 0x00003222 control 12 26 727270 0 26 727270 0 1a 00 00 00 e6 18 0b 00 00 00 00 00 ............ +639 0x0000322e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1975320576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 8a 1f 00 00 00 00 00 ....T.c@.^1@......C....... +640 0x00003248 control 12 -1 717775 0 -1 717775 0 ff ff ff ff cf f3 0a 00 00 00 00 00 ............ +641 0x00003254 control 12 101 727271 0 101 727271 0 65 00 00 00 e7 18 0b 00 00 00 00 00 e........... +642 0x00003260 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282591232 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d8 10 02 00 00 00 00 00 e1 bb 22 c3 9d 01 00 00 ".....!...o3.................""....." +643 0x00003282 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d8 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 f6 4f bf c8 82 a9 18 ?.....3...|8...................=B.....&......... +644 0x000032c5 control 12 -1 717776 0 -1 717776 0 ff ff ff ff d0 f3 0a 00 00 00 00 00 ............ +645 0x000032d1 control 12 30 727272 0 30 727272 0 1e 00 00 00 e8 18 0b 00 00 00 00 00 ............ +646 0x000032dd data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1975189504 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......E........... +647 0x000032fb control 12 -1 717777 0 -1 717777 0 ff ff ff ff d1 f3 0a 00 00 00 00 00 ............ +648 0x00003307 control 12 -2 82580 82562 -2 82580 82562 fe ff ff ff 94 42 01 00 82 42 01 00 .....B...B.. +649 0x00003313 control 12 26 727273 0 26 727273 0 1a 00 00 00 e9 18 0b 00 00 00 00 00 ............ +650 0x0000331f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1975058432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 8a 1f 00 00 00 00 00 ....T.c@.^1@......G....... +651 0x00003339 control 12 -1 717778 0 -1 717778 0 ff ff ff ff d2 f3 0a 00 00 00 00 00 ............ +652 0x00003345 control 12 26 727274 0 26 727274 0 1a 00 00 00 ea 18 0b 00 00 00 00 00 ............ +653 0x00003351 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1974927360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 8a 1f 00 00 00 00 00 ....T.c@.^1@......I....... +654 0x0000336b control 12 -1 717779 0 -1 717779 0 ff ff ff ff d3 f3 0a 00 00 00 00 00 ............ +655 0x00003377 control 12 26 727275 0 26 727275 0 1a 00 00 00 eb 18 0b 00 00 00 00 00 ............ +656 0x00003383 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1974796288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 8a 1f 00 00 00 00 00 ....T.c@.^1@......K....... +657 0x0000339d control 12 -1 717780 0 -1 717780 0 ff ff ff ff d4 f3 0a 00 00 00 00 00 ............ +658 0x000033a9 control 12 101 727276 0 101 727276 0 65 00 00 00 ec 18 0b 00 00 00 00 00 e........... +659 0x000033b5 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282656768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d9 10 02 00 00 00 00 00 11 bd 22 c3 9d 01 00 00 ".....!...o3.................""....." +660 0x000033d7 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d9 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 90 53 79 d1 c8 82 a9 18 ?.....3...|8...................=B.....&......... +661 0x0000341a control 12 -1 717781 0 -1 717781 0 ff ff ff ff d5 f3 0a 00 00 00 00 00 ............ +662 0x00003426 control 12 30 727277 0 30 727277 0 1e 00 00 00 ed 18 0b 00 00 00 00 00 ............ +663 0x00003432 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1974665216 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......M........... +664 0x00003450 control 12 -1 717782 0 -1 717782 0 ff ff ff ff d6 f3 0a 00 00 00 00 00 ............ +665 0x0000345c control 12 26 727278 0 26 727278 0 1a 00 00 00 ee 18 0b 00 00 00 00 00 ............ +666 0x00003468 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1974534144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 8a 1f 00 00 00 00 00 ....T.c@.^1@......O....... +667 0x00003482 control 12 -1 717783 0 -1 717783 0 ff ff ff ff d7 f3 0a 00 00 00 00 00 ............ +668 0x0000348e control 12 26 727279 0 26 727279 0 1a 00 00 00 ef 18 0b 00 00 00 00 00 ............ +669 0x0000349a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1974403072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 8a 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +670 0x000034b4 control 12 -1 717784 0 -1 717784 0 ff ff ff ff d8 f3 0a 00 00 00 00 00 ............ +671 0x000034c0 control 12 -2 82581 82563 -2 82581 82563 fe ff ff ff 95 42 01 00 83 42 01 00 .....B...B.. +672 0x000034cc control 12 26 727280 0 26 727280 0 1a 00 00 00 f0 18 0b 00 00 00 00 00 ............ +673 0x000034d8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1974272000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8a 1f 00 00 00 00 00 ....T.c@.^1@......S....... +674 0x000034f2 control 12 -1 717785 0 -1 717785 0 ff ff ff ff d9 f3 0a 00 00 00 00 00 ............ +675 0x000034fe control 12 101 727281 0 101 727281 0 65 00 00 00 f1 18 0b 00 00 00 00 00 e........... +676 0x0000350a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282722304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 da 10 02 00 00 00 00 00 41 be 22 c3 9d 01 00 00 ".....!...o3...............A.""....." +677 0x0000352c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 da 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c aa 95 e3 c8 82 a9 18 ?.....3...|8...................=B.....&......... +678 0x0000356f control 12 -1 717786 0 -1 717786 0 ff ff ff ff da f3 0a 00 00 00 00 00 ............ +679 0x0000357b control 12 30 727282 0 30 727282 0 1e 00 00 00 f2 18 0b 00 00 00 00 00 ............ +680 0x00003587 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1974140928 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......U........... +681 0x000035a5 control 12 -1 717787 0 -1 717787 0 ff ff ff ff db f3 0a 00 00 00 00 00 ............ +682 0x000035b1 control 12 26 727283 0 26 727283 0 1a 00 00 00 f3 18 0b 00 00 00 00 00 ............ +683 0x000035bd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1974009856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8a 1f 00 00 00 00 00 ....T.c@.^1@......W....... +684 0x000035d7 control 12 -1 717788 0 -1 717788 0 ff ff ff ff dc f3 0a 00 00 00 00 00 ............ +685 0x000035e3 control 12 26 727284 0 26 727284 0 1a 00 00 00 f4 18 0b 00 00 00 00 00 ............ +686 0x000035ef data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1973878784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 8a 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +687 0x00003609 control 12 -1 717789 0 -1 717789 0 ff ff ff ff dd f3 0a 00 00 00 00 00 ............ +688 0x00003615 control 12 26 727285 0 26 727285 0 1a 00 00 00 f5 18 0b 00 00 00 00 00 ............ +689 0x00003621 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1973747712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8a 1f 00 00 00 00 00 ....T.c@.^1@......[....... +690 0x0000363b control 12 -1 717790 0 -1 717790 0 ff ff ff ff de f3 0a 00 00 00 00 00 ............ +691 0x00003647 control 12 101 727286 0 101 727286 0 65 00 00 00 f6 18 0b 00 00 00 00 00 e........... +692 0x00003653 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282787840 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 db 10 02 00 00 00 00 00 72 bf 22 c3 9d 01 00 00 ".....!...o3...............r.""....." +693 0x00003675 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 db 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e4 99 bf f5 c8 82 a9 18 ?.....3...|8...................=B.....&......... +694 0x000036b8 control 12 -1 717791 0 -1 717791 0 ff ff ff ff df f3 0a 00 00 00 00 00 ............ +695 0x000036c4 control 12 30 727287 0 30 727287 0 1e 00 00 00 f7 18 0b 00 00 00 00 00 ............ +696 0x000036d0 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1973616640 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +697 0x000036ee control 12 -1 717792 0 -1 717792 0 ff ff ff ff e0 f3 0a 00 00 00 00 00 ............ +698 0x000036fa control 12 26 727288 0 26 727288 0 1a 00 00 00 f8 18 0b 00 00 00 00 00 ............ +699 0x00003706 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1973485568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8a 1f 00 00 00 00 00 ....T.c@.^1@......_....... +700 0x00003720 control 12 -1 717793 0 -1 717793 0 ff ff ff ff e1 f3 0a 00 00 00 00 00 ............ +701 0x0000372c control 12 -2 82582 82564 -2 82582 82564 fe ff ff ff 96 42 01 00 84 42 01 00 .....B...B.. +702 0x00003738 control 12 26 727289 0 26 727289 0 1a 00 00 00 f9 18 0b 00 00 00 00 00 ............ +703 0x00003744 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1973354496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 8a 1f 00 00 00 00 00 ....T.c@.^1@......a....... +704 0x0000375e control 12 -1 717794 0 -1 717794 0 ff ff ff ff e2 f3 0a 00 00 00 00 00 ............ +705 0x0000376a control 12 26 727290 0 26 727290 0 1a 00 00 00 fa 18 0b 00 00 00 00 00 ............ +706 0x00003776 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1973223424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8a 1f 00 00 00 00 00 ....T.c@.^1@......c....... +707 0x00003790 control 12 -1 717795 0 -1 717795 0 ff ff ff ff e3 f3 0a 00 00 00 00 00 ............ +708 0x0000379c control 12 101 727291 0 101 727291 0 65 00 00 00 fb 18 0b 00 00 00 00 00 e........... +709 0x000037a8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282853376 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dc 10 02 00 00 00 00 00 a3 c0 22 c3 9d 01 00 00 ".....!...o3.................""....." +710 0x000037ca data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dc 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 b0 ed 07 c9 82 a9 18 ?.....3...|8...................=B.....&......... +711 0x0000380d control 12 -1 717796 0 -1 717796 0 ff ff ff ff e4 f3 0a 00 00 00 00 00 ............ +712 0x00003819 control 12 30 727292 0 30 727292 0 1e 00 00 00 fc 18 0b 00 00 00 00 00 ............ +713 0x00003825 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1973092352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +714 0x00003843 control 12 -1 717797 0 -1 717797 0 ff ff ff ff e5 f3 0a 00 00 00 00 00 ............ +715 0x0000384f control 12 26 727293 0 26 727293 0 1a 00 00 00 fd 18 0b 00 00 00 00 00 ............ +716 0x0000385b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1972961280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8a 1f 00 00 00 00 00 ....T.c@.^1@......g....... +717 0x00003875 control 12 -1 717798 0 -1 717798 0 ff ff ff ff e6 f3 0a 00 00 00 00 00 ............ +718 0x00003881 control 12 26 727294 0 26 727294 0 1a 00 00 00 fe 18 0b 00 00 00 00 00 ............ +719 0x0000388d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1972830208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 8a 1f 00 00 00 00 00 ....T.c@.^1@......i....... +720 0x000038a7 control 12 -1 717799 0 -1 717799 0 ff ff ff ff e7 f3 0a 00 00 00 00 00 ............ +721 0x000038b3 control 12 26 727295 0 26 727295 0 1a 00 00 00 ff 18 0b 00 00 00 00 00 ............ +722 0x000038bf data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1972699136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8a 1f 00 00 00 00 00 ....T.c@.^1@......k....... +723 0x000038d9 control 12 -1 717800 0 -1 717800 0 ff ff ff ff e8 f3 0a 00 00 00 00 00 ............ +724 0x000038e5 control 12 101 727296 0 101 727296 0 65 00 00 00 00 19 0b 00 00 00 00 00 e........... +725 0x000038f1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282918912 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dd 10 02 00 00 00 00 00 d3 c1 22 c3 9d 01 00 00 ".....!...o3.................""....." +726 0x00003913 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dd 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 d7 10 1a c9 82 a9 18 ?.....3...|8...................=B.....&......... +727 0x00003956 control 12 -1 717801 0 -1 717801 0 ff ff ff ff e9 f3 0a 00 00 00 00 00 ............ +728 0x00003962 control 12 30 727297 0 30 727297 0 1e 00 00 00 01 19 0b 00 00 00 00 00 ............ +729 0x0000396e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1972568064 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......m........... +730 0x0000398c control 12 -1 717802 0 -1 717802 0 ff ff ff ff ea f3 0a 00 00 00 00 00 ............ +731 0x00003998 control 12 -2 82583 82565 -2 82583 82565 fe ff ff ff 97 42 01 00 85 42 01 00 .....B...B.. +732 0x000039a4 control 12 26 727298 0 26 727298 0 1a 00 00 00 02 19 0b 00 00 00 00 00 ............ +733 0x000039b0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1972436992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 8a 1f 00 00 00 00 00 ....T.c@.^1@......o....... +734 0x000039ca control 12 -1 717803 0 -1 717803 0 ff ff ff ff eb f3 0a 00 00 00 00 00 ............ +735 0x000039d6 control 12 26 727299 0 26 727299 0 1a 00 00 00 03 19 0b 00 00 00 00 00 ............ +736 0x000039e2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1972305920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 8a 1f 00 00 00 00 00 ....T.c@.^1@......q....... +737 0x000039fc control 12 -1 717804 0 -1 717804 0 ff ff ff ff ec f3 0a 00 00 00 00 00 ............ +738 0x00003a08 control 12 26 727300 0 26 727300 0 1a 00 00 00 04 19 0b 00 00 00 00 00 ............ +739 0x00003a14 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1972174848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 8a 1f 00 00 00 00 00 ....T.c@.^1@......s....... +740 0x00003a2e control 12 -1 717805 0 -1 717805 0 ff ff ff ff ed f3 0a 00 00 00 00 00 ............ +741 0x00003a3a control 12 101 727301 0 101 727301 0 65 00 00 00 05 19 0b 00 00 00 00 00 e........... +742 0x00003a46 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 282984448 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 de 10 02 00 00 00 00 00 05 c3 22 c3 9d 01 00 00 ".....!...o3.................""....." +743 0x00003a68 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 de 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c0 b4 46 2c c9 82 a9 18 ?.....3...|8...................=B.....&......... +744 0x00003aab control 12 -1 717806 0 -1 717806 0 ff ff ff ff ee f3 0a 00 00 00 00 00 ............ +745 0x00003ab7 control 12 30 727302 0 30 727302 0 1e 00 00 00 06 19 0b 00 00 00 00 00 ............ +746 0x00003ac3 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1972043776 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 75 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......u........... +747 0x00003ae1 control 12 -1 717807 0 -1 717807 0 ff ff ff ff ef f3 0a 00 00 00 00 00 ............ +748 0x00003aed control 12 26 727303 0 26 727303 0 1a 00 00 00 07 19 0b 00 00 00 00 00 ............ +749 0x00003af9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1971912704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 8a 1f 00 00 00 00 00 ....T.c@.^1@......w....... +750 0x00003b13 control 12 -1 717808 0 -1 717808 0 ff ff ff ff f0 f3 0a 00 00 00 00 00 ............ +751 0x00003b1f control 12 26 727304 0 26 727304 0 1a 00 00 00 08 19 0b 00 00 00 00 00 ............ +752 0x00003b2b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1971781632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 8a 1f 00 00 00 00 00 ....T.c@.^1@......y....... +753 0x00003b45 control 12 -1 717809 0 -1 717809 0 ff ff ff ff f1 f3 0a 00 00 00 00 00 ............ +754 0x00003b51 control 12 -2 82584 82566 -2 82584 82566 fe ff ff ff 98 42 01 00 86 42 01 00 .....B...B.. +755 0x00003b5d control 12 26 727305 0 26 727305 0 1a 00 00 00 09 19 0b 00 00 00 00 00 ............ +756 0x00003b69 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1971650560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 8a 1f 00 00 00 00 00 ....T.c@.^1@......{....... +757 0x00003b83 control 12 -1 717810 0 -1 717810 0 ff ff ff ff f2 f3 0a 00 00 00 00 00 ............ +758 0x00003b8f control 12 34 727306 0 34 727306 0 22 00 00 00 0a 19 0b 00 00 00 00 00 """..........." +759 0x00003b9b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283049984 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 df 10 02 00 00 00 00 00 36 c4 22 c3 9d 01 00 00 ".....!...o3...............6.""....." +760 0x00003bbd control 12 67 727307 0 67 727307 0 43 00 00 00 0b 19 0b 00 00 00 00 00 C........... +761 0x00003bc9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 df 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 f4 74 3e c9 82 a9 18 ?.....3...|8...................=B.....&......... +762 0x00003c0c control 12 -1 717811 0 -1 717811 0 ff ff ff ff f3 f3 0a 00 00 00 00 00 ............ +763 0x00003c18 control 12 30 727308 0 30 727308 0 1e 00 00 00 0c 19 0b 00 00 00 00 00 ............ +764 0x00003c24 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1971519488 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......}........... +765 0x00003c42 control 12 -1 717812 0 -1 717812 0 ff ff ff ff f4 f3 0a 00 00 00 00 00 ............ +766 0x00003c4e control 12 26 727309 0 26 727309 0 1a 00 00 00 0d 19 0b 00 00 00 00 00 ............ +767 0x00003c5a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1971388416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +768 0x00003c74 control 12 -1 717813 0 -1 717813 0 ff ff ff ff f5 f3 0a 00 00 00 00 00 ............ +769 0x00003c80 control 12 26 727310 0 26 727310 0 1a 00 00 00 0e 19 0b 00 00 00 00 00 ............ +770 0x00003c8c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1971257344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +771 0x00003ca6 control 12 -1 717814 0 -1 717814 0 ff ff ff ff f6 f3 0a 00 00 00 00 00 ............ +772 0x00003cb2 control 12 26 727311 0 26 727311 0 1a 00 00 00 0f 19 0b 00 00 00 00 00 ............ +773 0x00003cbe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1971126272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +774 0x00003cd8 control 12 -1 717815 0 -1 717815 0 ff ff ff ff f7 f3 0a 00 00 00 00 00 ............ +775 0x00003ce4 control 12 101 727312 0 101 727312 0 65 00 00 00 10 19 0b 00 00 00 00 00 e........... +776 0x00003cf0 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283115520 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e0 10 02 00 00 00 00 00 66 c5 22 c3 9d 01 00 00 ".....!...o3...............f.""....." +777 0x00003d12 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e0 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 1f 92 50 c9 82 a9 18 ?.....3...|8...................=B.....&......... +778 0x00003d55 control 12 -1 717816 0 -1 717816 0 ff ff ff ff f8 f3 0a 00 00 00 00 00 ............ +779 0x00003d61 control 12 30 727313 0 30 727313 0 1e 00 00 00 11 19 0b 00 00 00 00 00 ............ +780 0x00003d6d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1970995200 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 85 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +781 0x00003d8b control 12 -1 717817 0 -1 717817 0 ff ff ff ff f9 f3 0a 00 00 00 00 00 ............ +782 0x00003d97 control 12 26 727314 0 26 727314 0 1a 00 00 00 12 19 0b 00 00 00 00 00 ............ +783 0x00003da3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1970864128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +784 0x00003dbd control 12 -1 717818 0 -1 717818 0 ff ff ff ff fa f3 0a 00 00 00 00 00 ............ +785 0x00003dc9 control 12 -2 82585 82567 -2 82585 82567 fe ff ff ff 99 42 01 00 87 42 01 00 .....B...B.. +786 0x00003dd5 control 12 26 727315 0 26 727315 0 1a 00 00 00 13 19 0b 00 00 00 00 00 ............ +787 0x00003de1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1970733056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +788 0x00003dfb control 12 -1 717819 0 -1 717819 0 ff ff ff ff fb f3 0a 00 00 00 00 00 ............ +789 0x00003e07 control 12 26 727316 0 26 727316 0 1a 00 00 00 14 19 0b 00 00 00 00 00 ............ +790 0x00003e13 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1970601984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +791 0x00003e2d control 12 101 727317 0 101 727317 0 65 00 00 00 15 19 0b 00 00 00 00 00 e........... +792 0x00003e39 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283181056 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e1 10 02 00 00 00 00 00 97 c6 22 c3 9d 01 00 00 ".....!...o3.................""....." +793 0x00003e5b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e1 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a0 59 c2 62 c9 82 a9 18 ?.....3...|8...................=B.....&......... +794 0x00003e9e control 12 -1 717820 0 -1 717820 0 ff ff ff ff fc f3 0a 00 00 00 00 00 ............ +795 0x00003eaa control 12 -1 717821 0 -1 717821 0 ff ff ff ff fd f3 0a 00 00 00 00 00 ............ +796 0x00003eb6 control 12 30 727318 0 30 727318 0 1e 00 00 00 16 19 0b 00 00 00 00 00 ............ +797 0x00003ec2 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1970470912 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +798 0x00003ee0 control 12 -1 717822 0 -1 717822 0 ff ff ff ff fe f3 0a 00 00 00 00 00 ............ +799 0x00003eec control 12 26 727319 0 26 727319 0 1a 00 00 00 17 19 0b 00 00 00 00 00 ............ +800 0x00003ef8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1970339840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +801 0x00003f12 control 12 -1 717823 0 -1 717823 0 ff ff ff ff ff f3 0a 00 00 00 00 00 ............ +802 0x00003f1e control 12 26 727320 0 26 727320 0 1a 00 00 00 18 19 0b 00 00 00 00 00 ............ +803 0x00003f2a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1970208768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +804 0x00003f44 control 12 -1 717824 0 -1 717824 0 ff ff ff ff 00 f4 0a 00 00 00 00 00 ............ +805 0x00003f50 control 12 34 727321 0 34 727321 0 22 00 00 00 19 19 0b 00 00 00 00 00 """..........." +806 0x00003f5c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283246592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e2 10 02 00 00 00 00 00 c8 c7 22 c3 9d 01 00 00 ".....!...o3.................""....." +807 0x00003f7e control 12 67 727322 0 67 727322 0 43 00 00 00 1a 19 0b 00 00 00 00 00 C........... +808 0x00003f8a data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e2 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 0e 02 75 c9 82 a9 18 ?.....3...|8...................=B.....&......... +809 0x00003fcd control 12 -1 717825 0 -1 717825 0 ff ff ff ff 01 f4 0a 00 00 00 00 00 ............ +810 0x00003fd9 control 12 30 727323 0 30 727323 0 1e 00 00 00 1b 19 0b 00 00 00 00 00 ............ +811 0x00003fe5 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1970077696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +812 0x00004003 control 12 26 727324 0 26 727324 0 1a 00 00 00 1c 19 0b 00 00 00 00 00 ............ +813 0x0000400f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1969946624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +814 0x00004029 control 12 -1 717826 0 -1 717826 0 ff ff ff ff 02 f4 0a 00 00 00 00 00 ............ +815 0x00004035 control 12 -2 82586 82568 -2 82586 82568 fe ff ff ff 9a 42 01 00 88 42 01 00 .....B...B.. +816 0x00004041 control 12 26 727325 0 26 727325 0 1a 00 00 00 1d 19 0b 00 00 00 00 00 ............ +817 0x0000404d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1969815552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +818 0x00004067 control 12 -1 717827 0 -1 717827 0 ff ff ff ff 03 f4 0a 00 00 00 00 00 ............ +819 0x00004073 control 12 26 727326 0 26 727326 0 1a 00 00 00 1e 19 0b 00 00 00 00 00 ............ +820 0x0000407f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1969684480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +821 0x00004099 control 12 -1 717828 0 -1 717828 0 ff ff ff ff 04 f4 0a 00 00 00 00 00 ............ +822 0x000040a5 control 12 34 727327 0 34 727327 0 22 00 00 00 1f 19 0b 00 00 00 00 00 """..........." +823 0x000040b1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283312128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e3 10 02 00 00 00 00 00 f9 c8 22 c3 9d 01 00 00 ".....!...o3.................""....." +824 0x000040d3 control 12 67 727328 0 67 727328 0 43 00 00 00 20 19 0b 00 00 00 00 00 C... ....... +825 0x000040df data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 ea 24 87 c9 82 a9 18 ?.....3...|8...................=B.....&......... +826 0x00004122 control 12 -1 717829 0 -1 717829 0 ff ff ff ff 05 f4 0a 00 00 00 00 00 ............ +827 0x0000412e control 12 30 727329 0 30 727329 0 1e 00 00 00 21 19 0b 00 00 00 00 00 ....!....... +828 0x0000413a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1969553408 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +829 0x00004158 control 12 -1 717830 0 -1 717830 0 ff ff ff ff 06 f4 0a 00 00 00 00 00 ............ +830 0x00004164 control 12 26 727330 0 26 727330 0 1a 00 00 00 22 19 0b 00 00 00 00 00 "....""......." +831 0x00004170 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1969422336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +832 0x0000418a control 12 -1 717831 0 -1 717831 0 ff ff ff ff 07 f4 0a 00 00 00 00 00 ............ +833 0x00004196 control 12 26 727331 0 26 727331 0 1a 00 00 00 23 19 0b 00 00 00 00 00 ....#....... +834 0x000041a2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1969291264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +835 0x000041bc control 12 -1 717832 0 -1 717832 0 ff ff ff ff 08 f4 0a 00 00 00 00 00 ............ +836 0x000041c8 control 12 -2 82587 82569 -2 82587 82569 fe ff ff ff 9b 42 01 00 89 42 01 00 .....B...B.. +837 0x000041d4 control 12 26 727332 0 26 727332 0 1a 00 00 00 24 19 0b 00 00 00 00 00 ....$....... +838 0x000041e0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1969160192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +839 0x000041fa control 12 -1 717833 0 -1 717833 0 ff ff ff ff 09 f4 0a 00 00 00 00 00 ............ +840 0x00004206 control 12 34 727333 0 34 727333 0 22 00 00 00 25 19 0b 00 00 00 00 00 """...%......." +841 0x00004212 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283377664 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e4 10 02 00 00 00 00 00 2a ca 22 c3 9d 01 00 00 ".....!...o3...............*.""....." +842 0x00004234 control 12 67 727334 0 67 727334 0 43 00 00 00 26 19 0b 00 00 00 00 00 C...&....... +843 0x00004240 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e4 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 20 70 4f 99 c9 82 a9 18 ?.....3...|8...................=B.....&......... +844 0x00004283 control 12 -1 717834 0 -1 717834 0 ff ff ff ff 0a f4 0a 00 00 00 00 00 ............ +845 0x0000428f control 12 30 727335 0 30 727335 0 1e 00 00 00 27 19 0b 00 00 00 00 00 ....'....... +846 0x0000429b data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1969029120 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +847 0x000042b9 control 12 -1 717835 0 -1 717835 0 ff ff ff ff 0b f4 0a 00 00 00 00 00 ............ +848 0x000042c5 control 12 26 727336 0 26 727336 0 1a 00 00 00 28 19 0b 00 00 00 00 00 ....(....... +849 0x000042d1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1968898048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +850 0x000042eb control 12 -1 717836 0 -1 717836 0 ff ff ff ff 0c f4 0a 00 00 00 00 00 ............ +851 0x000042f7 control 12 26 727337 0 26 727337 0 1a 00 00 00 29 19 0b 00 00 00 00 00 ....)....... +852 0x00004303 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1968766976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +853 0x0000431d control 12 -1 717837 0 -1 717837 0 ff ff ff ff 0d f4 0a 00 00 00 00 00 ............ +854 0x00004329 control 12 26 727338 0 26 727338 0 1a 00 00 00 2a 19 0b 00 00 00 00 00 ....*....... +855 0x00004335 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1968635904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +856 0x0000434f control 12 -1 717838 0 -1 717838 0 ff ff ff ff 0e f4 0a 00 00 00 00 00 ............ +857 0x0000435b control 12 34 727339 0 34 727339 0 22 00 00 00 2b 19 0b 00 00 00 00 00 """...+......." +858 0x00004367 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283443200 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e5 10 02 00 00 00 00 00 5b cb 22 c3 9d 01 00 00 ".....!...o3...............[.""....." +859 0x00004389 control 12 67 727340 0 67 727340 0 43 00 00 00 2c 19 0b 00 00 00 00 00 C...,....... +860 0x00004395 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e5 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 8b 82 ab c9 82 a9 18 ?.....3...|8...................=B.....&......... +861 0x000043d8 control 12 -1 717839 0 -1 717839 0 ff ff ff ff 0f f4 0a 00 00 00 00 00 ............ +862 0x000043e4 control 12 30 727341 0 30 727341 0 1e 00 00 00 2d 19 0b 00 00 00 00 00 ....-....... +863 0x000043f0 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1968504832 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +864 0x0000440e control 12 -1 717840 0 -1 717840 0 ff ff ff ff 10 f4 0a 00 00 00 00 00 ............ +865 0x0000441a control 12 26 727342 0 26 727342 0 1a 00 00 00 2e 19 0b 00 00 00 00 00 ............ +866 0x00004426 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1968373760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +867 0x00004440 control 12 -1 717841 0 -1 717841 0 ff ff ff ff 11 f4 0a 00 00 00 00 00 ............ +868 0x0000444c control 12 -2 82588 82570 -2 82588 82570 fe ff ff ff 9c 42 01 00 8a 42 01 00 .....B...B.. +869 0x00004458 control 12 26 727343 0 26 727343 0 1a 00 00 00 2f 19 0b 00 00 00 00 00 ..../....... +870 0x00004464 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1968242688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +871 0x0000447e control 12 -1 717842 0 -1 717842 0 ff ff ff ff 12 f4 0a 00 00 00 00 00 ............ +872 0x0000448a control 12 26 727344 0 26 727344 0 1a 00 00 00 30 19 0b 00 00 00 00 00 ....0....... +873 0x00004496 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1968111616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +874 0x000044b0 control 12 -1 717843 0 -1 717843 0 ff ff ff ff 13 f4 0a 00 00 00 00 00 ............ +875 0x000044bc control 12 101 727345 0 101 727345 0 65 00 00 00 31 19 0b 00 00 00 00 00 e...1....... +876 0x000044c8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283508736 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e6 10 02 00 00 00 00 00 8b cc 22 c3 9d 01 00 00 ".....!...o3.................""....." +877 0x000044ea data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a0 7b 9f bd c9 82 a9 18 ?.....3...|8...................=B.....&......... +878 0x0000452d control 12 -1 717844 0 -1 717844 0 ff ff ff ff 14 f4 0a 00 00 00 00 00 ............ +879 0x00004539 control 12 30 727346 0 30 727346 0 1e 00 00 00 32 19 0b 00 00 00 00 00 ....2....... +880 0x00004545 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1967980544 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +881 0x00004563 control 12 -1 717845 0 -1 717845 0 ff ff ff ff 15 f4 0a 00 00 00 00 00 ............ +882 0x0000456f control 12 26 727347 0 26 727347 0 1a 00 00 00 33 19 0b 00 00 00 00 00 ....3....... +883 0x0000457b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1967849472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +884 0x00004595 control 12 -1 717846 0 -1 717846 0 ff ff ff ff 16 f4 0a 00 00 00 00 00 ............ +885 0x000045a1 control 12 26 727348 0 26 727348 0 1a 00 00 00 34 19 0b 00 00 00 00 00 ....4....... +886 0x000045ad data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1967718400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +887 0x000045c7 control 12 -1 717847 0 -1 717847 0 ff ff ff ff 17 f4 0a 00 00 00 00 00 ............ +888 0x000045d3 control 12 26 727349 0 26 727349 0 1a 00 00 00 35 19 0b 00 00 00 00 00 ....5....... +889 0x000045df data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1967587328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +890 0x000045f9 control 12 -1 717848 0 -1 717848 0 ff ff ff ff 18 f4 0a 00 00 00 00 00 ............ +891 0x00004605 control 12 -2 82589 82571 -2 82589 82571 fe ff ff ff 9d 42 01 00 8b 42 01 00 .....B...B.. +892 0x00004611 control 12 101 727350 0 101 727350 0 65 00 00 00 36 19 0b 00 00 00 00 00 e...6....... +893 0x0000461d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283574272 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e7 10 02 00 00 00 00 00 bb cd 22 c3 9d 01 00 00 ".....!...o3.................""....." +894 0x0000463f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 08 3c ce cf c9 82 a9 18 ?.....3...|8...................=B.....&......... +895 0x00004682 control 12 -1 717849 0 -1 717849 0 ff ff ff ff 19 f4 0a 00 00 00 00 00 ............ +896 0x0000468e control 12 30 727351 0 30 727351 0 1e 00 00 00 37 19 0b 00 00 00 00 00 ....7....... +897 0x0000469a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1967456256 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +898 0x000046b8 control 12 -1 717850 0 -1 717850 0 ff ff ff ff 1a f4 0a 00 00 00 00 00 ............ +899 0x000046c4 control 12 26 727352 0 26 727352 0 1a 00 00 00 38 19 0b 00 00 00 00 00 ....8....... +900 0x000046d0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1967325184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +901 0x000046ea control 12 -1 717851 0 -1 717851 0 ff ff ff ff 1b f4 0a 00 00 00 00 00 ............ +902 0x000046f6 control 12 26 727353 0 26 727353 0 1a 00 00 00 39 19 0b 00 00 00 00 00 ....9....... +903 0x00004702 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1967194112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +904 0x0000471c control 12 -1 717852 0 -1 717852 0 ff ff ff ff 1c f4 0a 00 00 00 00 00 ............ +905 0x00004728 control 12 26 727354 0 26 727354 0 1a 00 00 00 3a 19 0b 00 00 00 00 00 ....:....... +906 0x00004734 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1967063040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +907 0x0000474e control 12 -1 717853 0 -1 717853 0 ff ff ff ff 1d f4 0a 00 00 00 00 00 ............ +908 0x0000475a control 12 101 727355 0 101 727355 0 65 00 00 00 3b 19 0b 00 00 00 00 00 e...;....... +909 0x00004766 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283639808 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e8 10 02 00 00 00 00 00 ef ce 22 c3 9d 01 00 00 ".....!...o3.................""....." +910 0x00004788 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e8 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 8b 12 e2 c9 82 a9 18 ?.....3...|8...................=B.....&......... +911 0x000047cb control 12 -1 717854 0 -1 717854 0 ff ff ff ff 1e f4 0a 00 00 00 00 00 ............ +912 0x000047d7 control 12 30 727356 0 30 727356 0 1e 00 00 00 3c 19 0b 00 00 00 00 00 ....<....... +913 0x000047e3 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1966931968 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +914 0x00004801 control 12 -1 717855 0 -1 717855 0 ff ff ff ff 1f f4 0a 00 00 00 00 00 ............ +915 0x0000480d control 12 26 727357 0 26 727357 0 1a 00 00 00 3d 19 0b 00 00 00 00 00 ....=....... +916 0x00004819 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1966800896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +917 0x00004833 control 12 -1 717856 0 -1 717856 0 ff ff ff ff 20 f4 0a 00 00 00 00 00 .... ....... +918 0x0000483f control 12 26 727358 0 26 727358 0 1a 00 00 00 3e 19 0b 00 00 00 00 00 ....>....... +919 0x0000484b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1966669824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +920 0x00004865 control 12 -1 717857 0 -1 717857 0 ff ff ff ff 21 f4 0a 00 00 00 00 00 ....!....... +921 0x00004871 control 12 -2 82590 82572 -2 82590 82572 fe ff ff ff 9e 42 01 00 8c 42 01 00 .....B...B.. +922 0x0000487d control 12 26 727359 0 26 727359 0 1a 00 00 00 3f 19 0b 00 00 00 00 00 ....?....... +923 0x00004889 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1966538752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +924 0x000048a3 control 12 -1 717858 0 -1 717858 0 ff ff ff ff 22 f4 0a 00 00 00 00 00 "....""......." +925 0x000048af control 12 34 727360 0 34 727360 0 22 00 00 00 40 19 0b 00 00 00 00 00 """...@......." +926 0x000048bb data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283705344 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e9 10 02 00 00 00 00 00 20 d0 22 c3 9d 01 00 00 ".....!...o3............... .""....." +927 0x000048dd control 12 67 727361 0 67 727361 0 43 00 00 00 41 19 0b 00 00 00 00 00 C...A....... +928 0x000048e9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e9 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 95 43 f4 c9 82 a9 18 ?.....3...|8...................=B.....&......... +929 0x0000492c control 12 -1 717859 0 -1 717859 0 ff ff ff ff 23 f4 0a 00 00 00 00 00 ....#....... +930 0x00004938 control 12 30 727362 0 30 727362 0 1e 00 00 00 42 19 0b 00 00 00 00 00 ....B....... +931 0x00004944 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1966407680 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +932 0x00004962 control 12 -1 717860 0 -1 717860 0 ff ff ff ff 24 f4 0a 00 00 00 00 00 ....$....... +933 0x0000496e control 12 26 727363 0 26 727363 0 1a 00 00 00 43 19 0b 00 00 00 00 00 ....C....... +934 0x0000497a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1966276608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +935 0x00004994 control 12 -1 717861 0 -1 717861 0 ff ff ff ff 25 f4 0a 00 00 00 00 00 ....%....... +936 0x000049a0 control 12 26 727364 0 26 727364 0 1a 00 00 00 44 19 0b 00 00 00 00 00 ....D....... +937 0x000049ac data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1966145536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +938 0x000049c6 control 12 -1 717862 0 -1 717862 0 ff ff ff ff 26 f4 0a 00 00 00 00 00 ....&....... +939 0x000049d2 control 12 26 727365 0 26 727365 0 1a 00 00 00 45 19 0b 00 00 00 00 00 ....E....... +940 0x000049de data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1966014464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +941 0x000049f8 control 12 -1 717863 0 -1 717863 0 ff ff ff ff 27 f4 0a 00 00 00 00 00 ....'....... +942 0x00004a04 control 12 34 727366 0 34 727366 0 22 00 00 00 46 19 0b 00 00 00 00 00 """...F......." +943 0x00004a10 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283770880 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ea 10 02 00 00 00 00 00 50 d1 22 c3 9d 01 00 00 ".....!...o3...............P.""....." +944 0x00004a32 control 12 67 727367 0 67 727367 0 43 00 00 00 47 19 0b 00 00 00 00 00 C...G....... +945 0x00004a3e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ea 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 03 6a 06 ca 82 a9 18 ?.....3...|8...................=B.....&......... +946 0x00004a81 control 12 -1 717864 0 -1 717864 0 ff ff ff ff 28 f4 0a 00 00 00 00 00 ....(....... +947 0x00004a8d control 12 30 727368 0 30 727368 0 1e 00 00 00 48 19 0b 00 00 00 00 00 ....H....... +948 0x00004a99 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1965883392 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +949 0x00004ab7 control 12 -1 717865 0 -1 717865 0 ff ff ff ff 29 f4 0a 00 00 00 00 00 ....)....... +950 0x00004ac3 control 12 26 727369 0 26 727369 0 1a 00 00 00 49 19 0b 00 00 00 00 00 ....I....... +951 0x00004acf data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1965752320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +952 0x00004ae9 control 12 -1 717866 0 -1 717866 0 ff ff ff ff 2a f4 0a 00 00 00 00 00 ....*....... +953 0x00004af5 control 12 -2 82591 82573 -2 82591 82573 fe ff ff ff 9f 42 01 00 8d 42 01 00 .....B...B.. +954 0x00004b01 control 12 26 727370 0 26 727370 0 1a 00 00 00 4a 19 0b 00 00 00 00 00 ....J....... +955 0x00004b0d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1965621248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +956 0x00004b27 control 12 -1 717867 0 -1 717867 0 ff ff ff ff 2b f4 0a 00 00 00 00 00 ....+....... +957 0x00004b33 control 12 26 727371 0 26 727371 0 1a 00 00 00 4b 19 0b 00 00 00 00 00 ....K....... +958 0x00004b3f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1965490176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +959 0x00004b59 control 12 -1 717868 0 -1 717868 0 ff ff ff ff 2c f4 0a 00 00 00 00 00 ....,....... +960 0x00004b65 control 12 34 727372 0 34 727372 0 22 00 00 00 4c 19 0b 00 00 00 00 00 """...L......." +961 0x00004b71 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283836416 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 eb 10 02 00 00 00 00 00 81 d2 22 c3 9d 01 00 00 ".....!...o3.................""....." +962 0x00004b93 control 12 67 727373 0 67 727373 0 43 00 00 00 4d 19 0b 00 00 00 00 00 C...M....... +963 0x00004b9f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 eb 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc 86 93 18 ca 82 a9 18 ?.....3...|8...................=B.....&......... +964 0x00004be2 control 12 -1 717869 0 -1 717869 0 ff ff ff ff 2d f4 0a 00 00 00 00 00 ....-....... +965 0x00004bee control 12 30 727374 0 30 727374 0 1e 00 00 00 4e 19 0b 00 00 00 00 00 ....N....... +966 0x00004bfa data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1965359104 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +967 0x00004c18 control 12 -1 717870 0 -1 717870 0 ff ff ff ff 2e f4 0a 00 00 00 00 00 ............ +968 0x00004c24 control 12 26 727375 0 26 727375 0 1a 00 00 00 4f 19 0b 00 00 00 00 00 ....O....... +969 0x00004c30 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1965228032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +970 0x00004c4a control 12 -1 717871 0 -1 717871 0 ff ff ff ff 2f f4 0a 00 00 00 00 00 ..../....... +971 0x00004c56 control 12 26 727376 0 26 727376 0 1a 00 00 00 50 19 0b 00 00 00 00 00 ....P....... +972 0x00004c62 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1965096960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +973 0x00004c7c control 12 -1 717872 0 -1 717872 0 ff ff ff ff 30 f4 0a 00 00 00 00 00 ....0....... +974 0x00004c88 control 12 26 727377 0 26 727377 0 1a 00 00 00 51 19 0b 00 00 00 00 00 ....Q....... +975 0x00004c94 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1964965888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +976 0x00004cae control 12 -1 717873 0 -1 717873 0 ff ff ff ff 31 f4 0a 00 00 00 00 00 ....1....... +977 0x00004cba control 12 -2 82592 82574 -2 82592 82574 fe ff ff ff a0 42 01 00 8e 42 01 00 .....B...B.. +978 0x00004cc6 control 12 101 727378 0 101 727378 0 65 00 00 00 52 19 0b 00 00 00 00 00 e...R....... +979 0x00004cd2 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283901952 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ec 10 02 00 00 00 00 00 b1 d3 22 c3 9d 01 00 00 ".....!...o3.................""....." +980 0x00004cf4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ec 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 9c ba ab 2a ca 82 a9 18 ?.....3...|8...................=B.....&......... +981 0x00004d37 control 12 -1 717874 0 -1 717874 0 ff ff ff ff 32 f4 0a 00 00 00 00 00 ....2....... +982 0x00004d43 control 12 30 727379 0 30 727379 0 1e 00 00 00 53 19 0b 00 00 00 00 00 ....S....... +983 0x00004d4f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1964834816 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +984 0x00004d6d control 12 -1 717875 0 -1 717875 0 ff ff ff ff 33 f4 0a 00 00 00 00 00 ....3....... +985 0x00004d79 control 12 26 727380 0 26 727380 0 1a 00 00 00 54 19 0b 00 00 00 00 00 ....T....... +986 0x00004d85 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1964703744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +987 0x00004d9f control 12 -1 717876 0 -1 717876 0 ff ff ff ff 34 f4 0a 00 00 00 00 00 ....4....... +988 0x00004dab control 12 26 727381 0 26 727381 0 1a 00 00 00 55 19 0b 00 00 00 00 00 ....U....... +989 0x00004db7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1964572672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +990 0x00004dd1 control 12 -1 717877 0 -1 717877 0 ff ff ff ff 35 f4 0a 00 00 00 00 00 ....5....... +991 0x00004ddd control 12 26 727382 0 26 727382 0 1a 00 00 00 56 19 0b 00 00 00 00 00 ....V....... +992 0x00004de9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1964441600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +993 0x00004e03 control 12 -1 717878 0 -1 717878 0 ff ff ff ff 36 f4 0a 00 00 00 00 00 ....6....... +994 0x00004e0f control 12 101 727383 0 101 727383 0 65 00 00 00 57 19 0b 00 00 00 00 00 e...W....... +995 0x00004e1b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 283967488 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ed 10 02 00 00 00 00 00 e1 d4 22 c3 9d 01 00 00 ".....!...o3.................""....." +996 0x00004e3d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ed 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 84 d3 3c ca 82 a9 18 ?.....3...|8...................=B.....&......... +997 0x00004e80 control 12 -1 717879 0 -1 717879 0 ff ff ff ff 37 f4 0a 00 00 00 00 00 ....7....... +998 0x00004e8c control 12 30 727384 0 30 727384 0 1e 00 00 00 58 19 0b 00 00 00 00 00 ....X....... +999 0x00004e98 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1964310528 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1000 0x00004eb6 control 12 -1 717880 0 -1 717880 0 ff ff ff ff 38 f4 0a 00 00 00 00 00 ....8....... +1001 0x00004ec2 control 12 26 727385 0 26 727385 0 1a 00 00 00 59 19 0b 00 00 00 00 00 ....Y....... +1002 0x00004ece data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1964179456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1003 0x00004ee8 control 12 -1 717881 0 -1 717881 0 ff ff ff ff 39 f4 0a 00 00 00 00 00 ....9....... +1004 0x00004ef4 control 12 26 727386 0 26 727386 0 1a 00 00 00 5a 19 0b 00 00 00 00 00 ....Z....... +1005 0x00004f00 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1964048384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1006 0x00004f1a control 12 -1 717882 0 -1 717882 0 ff ff ff ff 3a f4 0a 00 00 00 00 00 ....:....... +1007 0x00004f26 control 12 -2 82593 82575 -2 82593 82575 fe ff ff ff a1 42 01 00 8f 42 01 00 .....B...B.. +1008 0x00004f32 control 12 26 727387 0 26 727387 0 1a 00 00 00 5b 19 0b 00 00 00 00 00 ....[....... +1009 0x00004f3e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1963917312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1010 0x00004f58 control 12 -1 717883 0 -1 717883 0 ff ff ff ff 3b f4 0a 00 00 00 00 00 ....;....... +1011 0x00004f64 control 12 101 727388 0 101 727388 0 65 00 00 00 5c 19 0b 00 00 00 00 00 e...\....... +1012 0x00004f70 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284033024 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ee 10 02 00 00 00 00 00 13 d6 22 c3 9d 01 00 00 ".....!...o3.................""....." +1013 0x00004f92 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ee 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c 42 17 4f ca 82 a9 18 ?.....3...|8...................=B.....&......... +1014 0x00004fd5 control 12 -1 717884 0 -1 717884 0 ff ff ff ff 3c f4 0a 00 00 00 00 00 ....<....... +1015 0x00004fe1 control 12 30 727389 0 30 727389 0 1e 00 00 00 5d 19 0b 00 00 00 00 00 ....]....... +1016 0x00004fed data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1963786240 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1017 0x0000500b control 12 -1 717885 0 -1 717885 0 ff ff ff ff 3d f4 0a 00 00 00 00 00 ....=....... +1018 0x00005017 control 12 26 727390 0 26 727390 0 1a 00 00 00 5e 19 0b 00 00 00 00 00 ....^....... +1019 0x00005023 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1963655168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1020 0x0000503d control 12 -1 717886 0 -1 717886 0 ff ff ff ff 3e f4 0a 00 00 00 00 00 ....>....... +1021 0x00005049 control 12 26 727391 0 26 727391 0 1a 00 00 00 5f 19 0b 00 00 00 00 00 ...._....... +1022 0x00005055 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1963524096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1023 0x0000506f control 12 -1 717887 0 -1 717887 0 ff ff ff ff 3f f4 0a 00 00 00 00 00 ....?....... +1024 0x0000507b control 12 26 727392 0 26 727392 0 1a 00 00 00 60 19 0b 00 00 00 00 00 ....`....... +1025 0x00005087 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1963393024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1026 0x000050a1 control 12 -1 717888 0 -1 717888 0 ff ff ff ff 40 f4 0a 00 00 00 00 00 ....@....... +1027 0x000050ad control 12 34 727393 0 34 727393 0 22 00 00 00 61 19 0b 00 00 00 00 00 """...a......." +1028 0x000050b9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284098560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ef 10 02 00 00 00 00 00 43 d7 22 c3 9d 01 00 00 ".....!...o3...............C.""....." +1029 0x000050db control 12 67 727394 0 67 727394 0 43 00 00 00 62 19 0b 00 00 00 00 00 C...b....... +1030 0x000050e7 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ef 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 8a 28 61 ca 82 a9 18 ?.....3...|8...................=B.....&......... +1031 0x0000512a control 12 -1 717889 0 -1 717889 0 ff ff ff ff 41 f4 0a 00 00 00 00 00 ....A....... +1032 0x00005136 control 12 30 727395 0 30 727395 0 1e 00 00 00 63 19 0b 00 00 00 00 00 ....c....... +1033 0x00005142 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1963261952 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1034 0x00005160 control 12 -1 717890 0 -1 717890 0 ff ff ff ff 42 f4 0a 00 00 00 00 00 ....B....... +1035 0x0000516c control 12 -2 82594 82576 -2 82594 82576 fe ff ff ff a2 42 01 00 90 42 01 00 .....B...B.. +1036 0x00005178 control 12 26 727396 0 26 727396 0 1a 00 00 00 64 19 0b 00 00 00 00 00 ....d....... +1037 0x00005184 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1963130880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1038 0x0000519e control 12 -1 717891 0 -1 717891 0 ff ff ff ff 43 f4 0a 00 00 00 00 00 ....C....... +1039 0x000051aa control 12 26 727397 0 26 727397 0 1a 00 00 00 65 19 0b 00 00 00 00 00 ....e....... +1040 0x000051b6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1962999808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +1041 0x000051d0 control 12 -1 717892 0 -1 717892 0 ff ff ff ff 44 f4 0a 00 00 00 00 00 ....D....... +1042 0x000051dc control 12 26 727398 0 26 727398 0 1a 00 00 00 66 19 0b 00 00 00 00 00 ....f....... +1043 0x000051e8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1962868736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1044 0x00005202 control 12 -1 717893 0 -1 717893 0 ff ff ff ff 45 f4 0a 00 00 00 00 00 ....E....... +1045 0x0000520e control 12 34 727399 0 34 727399 0 22 00 00 00 67 19 0b 00 00 00 00 00 """...g......." +1046 0x0000521a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284164096 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f0 10 02 00 00 00 00 00 74 d8 22 c3 9d 01 00 00 ".....!...o3...............t.""....." +1047 0x0000523c control 12 67 727400 0 67 727400 0 43 00 00 00 68 19 0b 00 00 00 00 00 C...h....... +1048 0x00005248 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f0 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 08 c3 57 73 ca 82 a9 18 ?.....3...|8...................=B.....&......... +1049 0x0000528b control 12 -1 717894 0 -1 717894 0 ff ff ff ff 46 f4 0a 00 00 00 00 00 ....F....... +1050 0x00005297 control 12 30 727401 0 30 727401 0 1e 00 00 00 69 19 0b 00 00 00 00 00 ....i....... +1051 0x000052a3 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1962737664 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1052 0x000052c1 control 12 -1 717895 0 -1 717895 0 ff ff ff ff 47 f4 0a 00 00 00 00 00 ....G....... +1053 0x000052cd control 12 26 727402 0 26 727402 0 1a 00 00 00 6a 19 0b 00 00 00 00 00 ....j....... +1054 0x000052d9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1962606592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1055 0x000052f3 control 12 -1 717896 0 -1 717896 0 ff ff ff ff 48 f4 0a 00 00 00 00 00 ....H....... +1056 0x000052ff control 12 26 727403 0 26 727403 0 1a 00 00 00 6b 19 0b 00 00 00 00 00 ....k....... +1057 0x0000530b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1962475520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1058 0x00005325 control 12 -1 717897 0 -1 717897 0 ff ff ff ff 49 f4 0a 00 00 00 00 00 ....I....... +1059 0x00005331 control 12 -2 82595 82577 -2 82595 82577 fe ff ff ff a3 42 01 00 91 42 01 00 .....B...B.. +1060 0x0000533d control 12 26 727404 0 26 727404 0 1a 00 00 00 6c 19 0b 00 00 00 00 00 ....l....... +1061 0x00005349 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1962344448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1062 0x00005363 control 12 -1 717898 0 -1 717898 0 ff ff ff ff 4a f4 0a 00 00 00 00 00 ....J....... +1063 0x0000536f control 12 101 727405 0 101 727405 0 65 00 00 00 6d 19 0b 00 00 00 00 00 e...m....... +1064 0x0000537b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284229632 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f1 10 02 00 00 00 00 00 a4 d9 22 c3 9d 01 00 00 ".....!...o3.................""....." +1065 0x0000539d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f1 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b0 d5 71 85 ca 82 a9 18 ?.....3...|8...................=B.....&......... +1066 0x000053e0 control 12 -1 717899 0 -1 717899 0 ff ff ff ff 4b f4 0a 00 00 00 00 00 ....K....... +1067 0x000053ec control 12 30 727406 0 30 727406 0 1e 00 00 00 6e 19 0b 00 00 00 00 00 ....n....... +1068 0x000053f8 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1962213376 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0b 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1069 0x00005416 control 12 -1 717900 0 -1 717900 0 ff ff ff ff 4c f4 0a 00 00 00 00 00 ....L....... +1070 0x00005422 control 12 26 727407 0 26 727407 0 1a 00 00 00 6f 19 0b 00 00 00 00 00 ....o....... +1071 0x0000542e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1962082304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1072 0x00005448 control 12 -1 717901 0 -1 717901 0 ff ff ff ff 4d f4 0a 00 00 00 00 00 ....M....... +1073 0x00005454 control 12 26 727408 0 26 727408 0 1a 00 00 00 70 19 0b 00 00 00 00 00 ....p....... +1074 0x00005460 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1961951232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1075 0x0000547a control 12 -1 717902 0 -1 717902 0 ff ff ff ff 4e f4 0a 00 00 00 00 00 ....N....... +1076 0x00005486 control 12 26 727409 0 26 727409 0 1a 00 00 00 71 19 0b 00 00 00 00 00 ....q....... +1077 0x00005492 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1961820160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1078 0x000054ac control 12 -1 717903 0 -1 717903 0 ff ff ff ff 4f f4 0a 00 00 00 00 00 ....O....... +1079 0x000054b8 control 12 101 727410 0 101 727410 0 65 00 00 00 72 19 0b 00 00 00 00 00 e...r....... +1080 0x000054c4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284295168 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f2 10 02 00 00 00 00 00 d5 da 22 c3 9d 01 00 00 ".....!...o3.................""....." +1081 0x000054e6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f2 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 10 72 a9 97 ca 82 a9 18 ?.....3...|8...................=B.....&......... +1082 0x00005529 control 12 -1 717904 0 -1 717904 0 ff ff ff ff 50 f4 0a 00 00 00 00 00 ....P....... +1083 0x00005535 control 12 30 727411 0 30 727411 0 1e 00 00 00 73 19 0b 00 00 00 00 00 ....s....... +1084 0x00005541 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1961689088 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 13 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1085 0x0000555f control 12 -1 717905 0 -1 717905 0 ff ff ff ff 51 f4 0a 00 00 00 00 00 ....Q....... +1086 0x0000556b control 12 26 727412 0 26 727412 0 1a 00 00 00 74 19 0b 00 00 00 00 00 ....t....... +1087 0x00005577 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1961558016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1088 0x00005591 control 12 -1 717906 0 -1 717906 0 ff ff ff ff 52 f4 0a 00 00 00 00 00 ....R....... +1089 0x0000559d control 12 -2 82596 82578 -2 82596 82578 fe ff ff ff a4 42 01 00 92 42 01 00 .....B...B.. +1090 0x000055a9 control 12 26 727413 0 26 727413 0 1a 00 00 00 75 19 0b 00 00 00 00 00 ....u....... +1091 0x000055b5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1961426944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1092 0x000055cf control 12 -1 717907 0 -1 717907 0 ff ff ff ff 53 f4 0a 00 00 00 00 00 ....S....... +1093 0x000055db control 12 26 727414 0 26 727414 0 1a 00 00 00 76 19 0b 00 00 00 00 00 ....v....... +1094 0x000055e7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1961295872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1095 0x00005601 control 12 -1 717908 0 -1 717908 0 ff ff ff ff 54 f4 0a 00 00 00 00 00 ....T....... +1096 0x0000560d control 12 34 727415 0 34 727415 0 22 00 00 00 77 19 0b 00 00 00 00 00 """...w......." +1097 0x00005619 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284360704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f3 10 02 00 00 00 00 00 06 dc 22 c3 9d 01 00 00 ".....!...o3.................""....." +1098 0x0000563b control 12 67 727416 0 67 727416 0 43 00 00 00 78 19 0b 00 00 00 00 00 C...x....... +1099 0x00005647 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 94 cf a9 ca 82 a9 18 ?.....3...|8...................=B.....&......... +1100 0x0000568a control 12 -1 717909 0 -1 717909 0 ff ff ff ff 55 f4 0a 00 00 00 00 00 ....U....... +1101 0x00005696 control 12 30 727417 0 30 727417 0 1e 00 00 00 79 19 0b 00 00 00 00 00 ....y....... +1102 0x000056a2 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1961164800 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1b 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1103 0x000056c0 control 12 -1 717910 0 -1 717910 0 ff ff ff ff 56 f4 0a 00 00 00 00 00 ....V....... +1104 0x000056cc control 12 -1 717911 0 -1 717911 0 ff ff ff ff 57 f4 0a 00 00 00 00 00 ....W....... +1105 0x000056d8 control 12 24 727418 0 24 727418 0 18 00 00 00 7a 19 0b 00 00 00 00 00 ....z....... +1106 0x000056e4 data 24 20 1005192 0 1005192 0 -65535 65535 14 00 00 00 88 56 0f 00 00 00 00 00 01 00 ff ff ff ff 00 00 00 00 00 00 .....V.................. +1107 0x000056fc control 12 26 727419 0 26 727419 0 1a 00 00 00 7b 19 0b 00 00 00 00 00 ....{....... +1108 0x00005708 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1961033728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1109 0x00005722 control 12 -1 717912 0 -1 717912 0 ff ff ff ff 58 f4 0a 00 00 00 00 00 ....X....... +1110 0x0000572e control 12 26 727420 0 26 727420 0 1a 00 00 00 7c 19 0b 00 00 00 00 00 ....|....... +1111 0x0000573a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1960902656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1112 0x00005754 control 12 -1 717913 0 -1 717913 0 ff ff ff ff 59 f4 0a 00 00 00 00 00 ....Y....... +1113 0x00005760 control 12 26 727421 0 26 727421 0 1a 00 00 00 7d 19 0b 00 00 00 00 00 ....}....... +1114 0x0000576c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1960771584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 8b 1f 00 00 00 00 00 ....T.c@.^1@......!....... +1115 0x00005786 control 12 101 727422 0 101 727422 0 65 00 00 00 7e 19 0b 00 00 00 00 00 e...~....... +1116 0x00005792 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284426240 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f4 10 02 00 00 00 00 00 36 dd 22 c3 9d 01 00 00 ".....!...o3...............6.""....." +1117 0x000057b4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f4 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 e4 f0 bb ca 82 a9 18 ?.....3...|8...................=B.....&......... +1118 0x000057f7 control 12 -1 717914 0 -1 717914 0 ff ff ff ff 5a f4 0a 00 00 00 00 00 ....Z....... +1119 0x00005803 control 12 -1 717915 0 -1 717915 0 ff ff ff ff 5b f4 0a 00 00 00 00 00 ....[....... +1120 0x0000580f control 12 30 727423 0 30 727423 0 1e 00 00 00 7f 19 0b 00 00 00 00 00 ............ +1121 0x0000581b data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1960640512 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 23 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......#........... +1122 0x00005839 control 12 -1 717916 0 -1 717916 0 ff ff ff ff 5c f4 0a 00 00 00 00 00 ....\....... +1123 0x00005845 control 12 -2 82597 82579 -2 82597 82579 fe ff ff ff a5 42 01 00 93 42 01 00 .....B...B.. +1124 0x00005851 control 12 26 727424 0 26 727424 0 1a 00 00 00 80 19 0b 00 00 00 00 00 ............ +1125 0x0000585d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1960509440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 8b 1f 00 00 00 00 00 ....T.c@.^1@......%....... +1126 0x00005877 control 12 -1 717917 0 -1 717917 0 ff ff ff ff 5d f4 0a 00 00 00 00 00 ....]....... +1127 0x00005883 control 12 26 727425 0 26 727425 0 1a 00 00 00 81 19 0b 00 00 00 00 00 ............ +1128 0x0000588f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1960378368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 8b 1f 00 00 00 00 00 ....T.c@.^1@......'....... +1129 0x000058a9 control 12 -1 717918 0 -1 717918 0 ff ff ff ff 5e f4 0a 00 00 00 00 00 ....^....... +1130 0x000058b5 control 12 101 727426 0 101 727426 0 65 00 00 00 82 19 0b 00 00 00 00 00 e........... +1131 0x000058c1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284491776 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f5 10 02 00 00 00 00 00 68 de 22 c3 9d 01 00 00 ".....!...o3...............h.""....." +1132 0x000058e3 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f5 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 59 33 ce ca 82 a9 18 ?.....3...|8...................=B.....&......... +1133 0x00005926 control 12 -1 717919 0 -1 717919 0 ff ff ff ff 5f f4 0a 00 00 00 00 00 ...._....... +1134 0x00005932 control 12 26 727427 0 26 727427 0 1a 00 00 00 83 19 0b 00 00 00 00 00 ............ +1135 0x0000593e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1960247296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 8b 1f 00 00 00 00 00 ....T.c@.^1@......)....... +1136 0x00005958 control 12 30 727428 0 30 727428 0 1e 00 00 00 84 19 0b 00 00 00 00 00 ............ +1137 0x00005964 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1960116224 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2b 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......+........... +1138 0x00005982 control 12 -1 717920 0 -1 717920 0 ff ff ff ff 60 f4 0a 00 00 00 00 00 ....`....... +1139 0x0000598e control 12 -1 717921 0 -1 717921 0 ff ff ff ff 61 f4 0a 00 00 00 00 00 ....a....... +1140 0x0000599a control 12 26 727429 0 26 727429 0 1a 00 00 00 85 19 0b 00 00 00 00 00 ............ +1141 0x000059a6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1959985152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 8b 1f 00 00 00 00 00 ....T.c@.^1@......-....... +1142 0x000059c0 control 12 -1 717922 0 -1 717922 0 ff ff ff ff 62 f4 0a 00 00 00 00 00 ....b....... +1143 0x000059cc control 12 26 727430 0 26 727430 0 1a 00 00 00 86 19 0b 00 00 00 00 00 ............ +1144 0x000059d8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1959854080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 8b 1f 00 00 00 00 00 ....T.c@.^1@....../....... +1145 0x000059f2 control 12 -1 717923 0 -1 717923 0 ff ff ff ff 63 f4 0a 00 00 00 00 00 ....c....... +1146 0x000059fe control 12 -2 82598 82580 -2 82598 82580 fe ff ff ff a6 42 01 00 94 42 01 00 .....B...B.. +1147 0x00005a0a control 12 34 727431 0 34 727431 0 22 00 00 00 87 19 0b 00 00 00 00 00 """..........." +1148 0x00005a16 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284557312 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f6 10 02 00 00 00 00 00 9a df 22 c3 9d 01 00 00 ".....!...o3.................""....." +1149 0x00005a38 control 12 67 727432 0 67 727432 0 43 00 00 00 88 19 0b 00 00 00 00 00 C........... +1150 0x00005a44 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 0a 65 e0 ca 82 a9 18 ?.....3...|8...................=B.....&......... +1151 0x00005a87 control 12 -1 717924 0 -1 717924 0 ff ff ff ff 64 f4 0a 00 00 00 00 00 ....d....... +1152 0x00005a93 control 12 30 727433 0 30 727433 0 1e 00 00 00 89 19 0b 00 00 00 00 00 ............ +1153 0x00005a9f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1959723008 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +1154 0x00005abd control 12 -1 717925 0 -1 717925 0 ff ff ff ff 65 f4 0a 00 00 00 00 00 ....e....... +1155 0x00005ac9 control 12 26 727434 0 26 727434 0 1a 00 00 00 8a 19 0b 00 00 00 00 00 ............ +1156 0x00005ad5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1959591936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 8b 1f 00 00 00 00 00 ....T.c@.^1@......3....... +1157 0x00005aef control 12 -1 717926 0 -1 717926 0 ff ff ff ff 66 f4 0a 00 00 00 00 00 ....f....... +1158 0x00005afb control 12 26 727435 0 26 727435 0 1a 00 00 00 8b 19 0b 00 00 00 00 00 ............ +1159 0x00005b07 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1959460864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 8b 1f 00 00 00 00 00 ....T.c@.^1@......5....... +1160 0x00005b21 control 12 -1 717927 0 -1 717927 0 ff ff ff ff 67 f4 0a 00 00 00 00 00 ....g....... +1161 0x00005b2d control 12 26 727436 0 26 727436 0 1a 00 00 00 8c 19 0b 00 00 00 00 00 ............ +1162 0x00005b39 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1959329792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 8b 1f 00 00 00 00 00 ....T.c@.^1@......7....... +1163 0x00005b53 control 12 -1 717928 0 -1 717928 0 ff ff ff ff 68 f4 0a 00 00 00 00 00 ....h....... +1164 0x00005b5f control 12 34 727437 0 34 727437 0 22 00 00 00 8d 19 0b 00 00 00 00 00 """..........." +1165 0x00005b6b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284622848 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f7 10 02 00 00 00 00 00 ca e0 22 c3 9d 01 00 00 ".....!...o3.................""....." +1166 0x00005b8d control 12 67 727438 0 67 727438 0 43 00 00 00 8e 19 0b 00 00 00 00 00 C........... +1167 0x00005b99 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 34 b3 84 f2 ca 82 a9 18 ?.....3...|8...................=B.....&......... +1168 0x00005bdc control 12 -1 717929 0 -1 717929 0 ff ff ff ff 69 f4 0a 00 00 00 00 00 ....i....... +1169 0x00005be8 control 12 30 727439 0 30 727439 0 1e 00 00 00 8f 19 0b 00 00 00 00 00 ............ +1170 0x00005bf4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1959198720 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +1171 0x00005c12 control 12 -1 717930 0 -1 717930 0 ff ff ff ff 6a f4 0a 00 00 00 00 00 ....j....... +1172 0x00005c1e control 12 26 727440 0 26 727440 0 1a 00 00 00 90 19 0b 00 00 00 00 00 ............ +1173 0x00005c2a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1959067648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 8b 1f 00 00 00 00 00 ....T.c@.^1@......;....... +1174 0x00005c44 control 12 -1 717931 0 -1 717931 0 ff ff ff ff 6b f4 0a 00 00 00 00 00 ....k....... +1175 0x00005c50 control 12 26 727441 0 26 727441 0 1a 00 00 00 91 19 0b 00 00 00 00 00 ............ +1176 0x00005c5c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1958936576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 8b 1f 00 00 00 00 00 ....T.c@.^1@......=....... +1177 0x00005c76 control 12 -1 717932 0 -1 717932 0 ff ff ff ff 6c f4 0a 00 00 00 00 00 ....l....... +1178 0x00005c82 control 12 -2 82599 82581 -2 82599 82581 fe ff ff ff a7 42 01 00 95 42 01 00 .....B...B.. +1179 0x00005c8e control 12 26 727442 0 26 727442 0 1a 00 00 00 92 19 0b 00 00 00 00 00 ............ +1180 0x00005c9a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1958805504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 8b 1f 00 00 00 00 00 ....T.c@.^1@......?....... +1181 0x00005cb4 control 12 -1 717933 0 -1 717933 0 ff ff ff ff 6d f4 0a 00 00 00 00 00 ....m....... +1182 0x00005cc0 control 12 101 727443 0 101 727443 0 65 00 00 00 93 19 0b 00 00 00 00 00 e........... +1183 0x00005ccc data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284688384 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f8 10 02 00 00 00 00 00 fc e1 22 c3 9d 01 00 00 ".....!...o3.................""....." +1184 0x00005cee data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f8 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c b2 c1 04 cb 82 a9 18 ?.....3...|8...................=B.....&......... +1185 0x00005d31 control 12 -1 717934 0 -1 717934 0 ff ff ff ff 6e f4 0a 00 00 00 00 00 ....n....... +1186 0x00005d3d control 12 30 727444 0 30 727444 0 1e 00 00 00 94 19 0b 00 00 00 00 00 ............ +1187 0x00005d49 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1958674432 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +1188 0x00005d67 control 12 -1 717935 0 -1 717935 0 ff ff ff ff 6f f4 0a 00 00 00 00 00 ....o....... +1189 0x00005d73 control 12 26 727445 0 26 727445 0 1a 00 00 00 95 19 0b 00 00 00 00 00 ............ +1190 0x00005d7f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1958543360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 8b 1f 00 00 00 00 00 ....T.c@.^1@......C....... +1191 0x00005d99 control 12 -1 717936 0 -1 717936 0 ff ff ff ff 70 f4 0a 00 00 00 00 00 ....p....... +1192 0x00005da5 control 12 26 727446 0 26 727446 0 1a 00 00 00 96 19 0b 00 00 00 00 00 ............ +1193 0x00005db1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1958412288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 8b 1f 00 00 00 00 00 ....T.c@.^1@......E....... +1194 0x00005dcb control 12 -1 717937 0 -1 717937 0 ff ff ff ff 71 f4 0a 00 00 00 00 00 ....q....... +1195 0x00005dd7 control 12 26 727447 0 26 727447 0 1a 00 00 00 97 19 0b 00 00 00 00 00 ............ +1196 0x00005de3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1958281216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 8b 1f 00 00 00 00 00 ....T.c@.^1@......G....... +1197 0x00005dfd control 12 -1 717938 0 -1 717938 0 ff ff ff ff 72 f4 0a 00 00 00 00 00 ....r....... +1198 0x00005e09 control 12 101 727448 0 101 727448 0 65 00 00 00 98 19 0b 00 00 00 00 00 e........... +1199 0x00005e15 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284753920 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f9 10 02 00 00 00 00 00 2b e3 22 c3 9d 01 00 00 ".....!...o3...............+.""....." +1200 0x00005e37 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f9 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 80 8c db 16 cb 82 a9 18 ?.....3...|8...................=B.....&......... +1201 0x00005e7a control 12 -1 717939 0 -1 717939 0 ff ff ff ff 73 f4 0a 00 00 00 00 00 ....s....... +1202 0x00005e86 control 12 30 727449 0 30 727449 0 1e 00 00 00 99 19 0b 00 00 00 00 00 ............ +1203 0x00005e92 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1958150144 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +1204 0x00005eb0 control 12 -1 717940 0 -1 717940 0 ff ff ff ff 74 f4 0a 00 00 00 00 00 ....t....... +1205 0x00005ebc control 12 -2 82600 82582 -2 82600 82582 fe ff ff ff a8 42 01 00 96 42 01 00 .....B...B.. +1206 0x00005ec8 control 12 26 727450 0 26 727450 0 1a 00 00 00 9a 19 0b 00 00 00 00 00 ............ +1207 0x00005ed4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1958019072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 8b 1f 00 00 00 00 00 ....T.c@.^1@......K....... +1208 0x00005eee control 12 -1 717941 0 -1 717941 0 ff ff ff ff 75 f4 0a 00 00 00 00 00 ....u....... +1209 0x00005efa control 12 26 727451 0 26 727451 0 1a 00 00 00 9b 19 0b 00 00 00 00 00 ............ +1210 0x00005f06 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1957888000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 8b 1f 00 00 00 00 00 ....T.c@.^1@......M....... +1211 0x00005f20 control 12 -1 717942 0 -1 717942 0 ff ff ff ff 76 f4 0a 00 00 00 00 00 ....v....... +1212 0x00005f2c control 12 26 727452 0 26 727452 0 1a 00 00 00 9c 19 0b 00 00 00 00 00 ............ +1213 0x00005f38 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1957756928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 8b 1f 00 00 00 00 00 ....T.c@.^1@......O....... +1214 0x00005f52 control 12 -1 717943 0 -1 717943 0 ff ff ff ff 77 f4 0a 00 00 00 00 00 ....w....... +1215 0x00005f5e control 12 34 727453 0 34 727453 0 22 00 00 00 9d 19 0b 00 00 00 00 00 """..........." +1216 0x00005f6a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284819456 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fa 10 02 00 00 00 00 00 5c e4 22 c3 9d 01 00 00 ".....!...o3...............\.""....." +1217 0x00005f8c control 12 67 727454 0 67 727454 0 43 00 00 00 9e 19 0b 00 00 00 00 00 C........... +1218 0x00005f98 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fa 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc 46 03 29 cb 82 a9 18 ?.....3...|8...................=B.....&......... +1219 0x00005fdb control 12 -1 717944 0 -1 717944 0 ff ff ff ff 78 f4 0a 00 00 00 00 00 ....x....... +1220 0x00005fe7 control 12 30 727455 0 30 727455 0 1e 00 00 00 9f 19 0b 00 00 00 00 00 ............ +1221 0x00005ff3 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1957625856 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +1222 0x00006011 control 12 -1 717945 0 -1 717945 0 ff ff ff ff 79 f4 0a 00 00 00 00 00 ....y....... +1223 0x0000601d control 12 26 727456 0 26 727456 0 1a 00 00 00 a0 19 0b 00 00 00 00 00 ............ +1224 0x00006029 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1957494784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8b 1f 00 00 00 00 00 ....T.c@.^1@......S....... +1225 0x00006043 control 12 -1 717946 0 -1 717946 0 ff ff ff ff 7a f4 0a 00 00 00 00 00 ....z....... +1226 0x0000604f control 12 26 727457 0 26 727457 0 1a 00 00 00 a1 19 0b 00 00 00 00 00 ............ +1227 0x0000605b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1957363712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 8b 1f 00 00 00 00 00 ....T.c@.^1@......U....... +1228 0x00006075 control 12 -1 717947 0 -1 717947 0 ff ff ff ff 7b f4 0a 00 00 00 00 00 ....{....... +1229 0x00006081 control 12 -2 82601 82583 -2 82601 82583 fe ff ff ff a9 42 01 00 97 42 01 00 .....B...B.. +1230 0x0000608d control 12 26 727458 0 26 727458 0 1a 00 00 00 a2 19 0b 00 00 00 00 00 ............ +1231 0x00006099 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1957232640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8b 1f 00 00 00 00 00 ....T.c@.^1@......W....... +1232 0x000060b3 control 12 -1 717948 0 -1 717948 0 ff ff ff ff 7c f4 0a 00 00 00 00 00 ....|....... +1233 0x000060bf control 12 101 727459 0 101 727459 0 65 00 00 00 a3 19 0b 00 00 00 00 00 e........... +1234 0x000060cb data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284884992 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fb 10 02 00 00 00 00 00 8d e5 22 c3 9d 01 00 00 ".....!...o3.................""....." +1235 0x000060ed data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fb 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 c4 36 3b cb 82 a9 18 ?.....3...|8...................=B.....&......... +1236 0x00006130 control 12 -1 717949 0 -1 717949 0 ff ff ff ff 7d f4 0a 00 00 00 00 00 ....}....... +1237 0x0000613c control 12 30 727460 0 30 727460 0 1e 00 00 00 a4 19 0b 00 00 00 00 00 ............ +1238 0x00006148 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1957101568 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +1239 0x00006166 control 12 -1 717950 0 -1 717950 0 ff ff ff ff 7e f4 0a 00 00 00 00 00 ....~....... +1240 0x00006172 control 12 26 727461 0 26 727461 0 1a 00 00 00 a5 19 0b 00 00 00 00 00 ............ +1241 0x0000617e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1956970496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8b 1f 00 00 00 00 00 ....T.c@.^1@......[....... +1242 0x00006198 control 12 -1 717951 0 -1 717951 0 ff ff ff ff 7f f4 0a 00 00 00 00 00 ............ +1243 0x000061a4 control 12 26 727462 0 26 727462 0 1a 00 00 00 a6 19 0b 00 00 00 00 00 ............ +1244 0x000061b0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1956839424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 8b 1f 00 00 00 00 00 ....T.c@.^1@......]....... +1245 0x000061ca control 12 -1 717952 0 -1 717952 0 ff ff ff ff 80 f4 0a 00 00 00 00 00 ............ +1246 0x000061d6 control 12 26 727463 0 26 727463 0 1a 00 00 00 a7 19 0b 00 00 00 00 00 ............ +1247 0x000061e2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1956708352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8b 1f 00 00 00 00 00 ....T.c@.^1@......_....... +1248 0x000061fc control 12 -1 717953 0 -1 717953 0 ff ff ff ff 81 f4 0a 00 00 00 00 00 ............ +1249 0x00006208 control 12 101 727464 0 101 727464 0 65 00 00 00 a8 19 0b 00 00 00 00 00 e........... +1250 0x00006214 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 284950528 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fc 10 02 00 00 00 00 00 bf e6 22 c3 9d 01 00 00 ".....!...o3.................""....." +1251 0x00006236 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fc 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a0 ba 6f 4d cb 82 a9 18 ?.....3...|8...................=B.....&......... +1252 0x00006279 control 12 -1 717954 0 -1 717954 0 ff ff ff ff 82 f4 0a 00 00 00 00 00 ............ +1253 0x00006285 control 12 30 727465 0 30 727465 0 1e 00 00 00 a9 19 0b 00 00 00 00 00 ............ +1254 0x00006291 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1956577280 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +1255 0x000062af control 12 -1 717955 0 -1 717955 0 ff ff ff ff 83 f4 0a 00 00 00 00 00 ............ +1256 0x000062bb control 12 26 727466 0 26 727466 0 1a 00 00 00 aa 19 0b 00 00 00 00 00 ............ +1257 0x000062c7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1956446208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8b 1f 00 00 00 00 00 ....T.c@.^1@......c....... +1258 0x000062e1 control 12 -1 717956 0 -1 717956 0 ff ff ff ff 84 f4 0a 00 00 00 00 00 ............ +1259 0x000062ed control 12 -2 82602 82584 -2 82602 82584 fe ff ff ff aa 42 01 00 98 42 01 00 .....B...B.. +1260 0x000062f9 control 12 26 727467 0 26 727467 0 1a 00 00 00 ab 19 0b 00 00 00 00 00 ............ +1261 0x00006305 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1956315136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 8b 1f 00 00 00 00 00 ....T.c@.^1@......e....... +1262 0x0000631f control 12 -1 717957 0 -1 717957 0 ff ff ff ff 85 f4 0a 00 00 00 00 00 ............ +1263 0x0000632b control 12 26 727468 0 26 727468 0 1a 00 00 00 ac 19 0b 00 00 00 00 00 ............ +1264 0x00006337 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1956184064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8b 1f 00 00 00 00 00 ....T.c@.^1@......g....... +1265 0x00006351 control 12 -1 717958 0 -1 717958 0 ff ff ff ff 86 f4 0a 00 00 00 00 00 ............ +1266 0x0000635d control 12 101 727469 0 101 727469 0 65 00 00 00 ad 19 0b 00 00 00 00 00 e........... +1267 0x00006369 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 285016064 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fd 10 02 00 00 00 00 00 f0 e7 22 c3 9d 01 00 00 ".....!...o3.................""....." +1268 0x0000638b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fd 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c 03 a4 5f cb 82 a9 18 ?.....3...|8...................=B.....&......... +1269 0x000063ce control 12 -1 717959 0 -1 717959 0 ff ff ff ff 87 f4 0a 00 00 00 00 00 ............ +1270 0x000063da control 12 30 727470 0 30 727470 0 1e 00 00 00 ae 19 0b 00 00 00 00 00 ............ +1271 0x000063e6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1956052992 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 69 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......i........... +1272 0x00006404 control 12 -1 717960 0 -1 717960 0 ff ff ff ff 88 f4 0a 00 00 00 00 00 ............ +1273 0x00006410 control 12 26 727471 0 26 727471 0 1a 00 00 00 af 19 0b 00 00 00 00 00 ............ +1274 0x0000641c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1955921920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8b 1f 00 00 00 00 00 ....T.c@.^1@......k....... +1275 0x00006436 control 12 -1 717961 0 -1 717961 0 ff ff ff ff 89 f4 0a 00 00 00 00 00 ............ +1276 0x00006442 control 12 26 727472 0 26 727472 0 1a 00 00 00 b0 19 0b 00 00 00 00 00 ............ +1277 0x0000644e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1955790848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 8b 1f 00 00 00 00 00 ....T.c@.^1@......m....... +1278 0x00006468 control 12 -1 717962 0 -1 717962 0 ff ff ff ff 8a f4 0a 00 00 00 00 00 ............ +1279 0x00006474 control 12 26 727473 0 26 727473 0 1a 00 00 00 b1 19 0b 00 00 00 00 00 ............ +1280 0x00006480 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1955659776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 8b 1f 00 00 00 00 00 ....T.c@.^1@......o....... +1281 0x0000649a control 12 -1 717963 0 -1 717963 0 ff ff ff ff 8b f4 0a 00 00 00 00 00 ............ +1282 0x000064a6 control 12 -2 82603 82585 -2 82603 82585 fe ff ff ff ab 42 01 00 99 42 01 00 .....B...B.. +1283 0x000064b2 control 12 34 727474 0 34 727474 0 22 00 00 00 b2 19 0b 00 00 00 00 00 """..........." +1284 0x000064be data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 285081600 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fe 10 02 00 00 00 00 00 22 e9 22 c3 9d 01 00 00 ".....!...o3..............."".""....." +1285 0x000064e0 control 12 67 727475 0 67 727475 0 43 00 00 00 b3 19 0b 00 00 00 00 00 C........... +1286 0x000064ec data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fe 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c e1 db 71 cb 82 a9 18 ?.....3...|8...................=B.....&......... +1287 0x0000652f control 12 -1 717964 0 -1 717964 0 ff ff ff ff 8c f4 0a 00 00 00 00 00 ............ +1288 0x0000653b control 12 30 727476 0 30 727476 0 1e 00 00 00 b4 19 0b 00 00 00 00 00 ............ +1289 0x00006547 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1955528704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 71 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......q........... +1290 0x00006565 control 12 -1 717965 0 -1 717965 0 ff ff ff ff 8d f4 0a 00 00 00 00 00 ............ +1291 0x00006571 control 12 26 727477 0 26 727477 0 1a 00 00 00 b5 19 0b 00 00 00 00 00 ............ +1292 0x0000657d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1955397632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 8b 1f 00 00 00 00 00 ....T.c@.^1@......s....... +1293 0x00006597 control 12 -1 717966 0 -1 717966 0 ff ff ff ff 8e f4 0a 00 00 00 00 00 ............ +1294 0x000065a3 control 12 26 727478 0 26 727478 0 1a 00 00 00 b6 19 0b 00 00 00 00 00 ............ +1295 0x000065af data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1955266560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 8b 1f 00 00 00 00 00 ....T.c@.^1@......u....... +1296 0x000065c9 control 12 -1 717967 0 -1 717967 0 ff ff ff ff 8f f4 0a 00 00 00 00 00 ............ +1297 0x000065d5 control 12 26 727479 0 26 727479 0 1a 00 00 00 b7 19 0b 00 00 00 00 00 ............ +1298 0x000065e1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1955135488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 8b 1f 00 00 00 00 00 ....T.c@.^1@......w....... +1299 0x000065fb control 12 -1 717968 0 -1 717968 0 ff ff ff ff 90 f4 0a 00 00 00 00 00 ............ +1300 0x00006607 control 12 101 727480 0 101 727480 0 65 00 00 00 b8 19 0b 00 00 00 00 00 e........... +1301 0x00006613 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 285147136 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ff 10 02 00 00 00 00 00 53 ea 22 c3 9d 01 00 00 ".....!...o3...............S.""....." +1302 0x00006635 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ff 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 90 2d 17 84 cb 82 a9 18 ?.....3...|8...................=B.....&......... +1303 0x00006678 control 12 -1 717969 0 -1 717969 0 ff ff ff ff 91 f4 0a 00 00 00 00 00 ............ +1304 0x00006684 control 12 30 727481 0 30 727481 0 1e 00 00 00 b9 19 0b 00 00 00 00 00 ............ +1305 0x00006690 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1955004416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 79 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......y........... +1306 0x000066ae control 12 -1 717970 0 -1 717970 0 ff ff ff ff 92 f4 0a 00 00 00 00 00 ............ +1307 0x000066ba control 12 26 727482 0 26 727482 0 1a 00 00 00 ba 19 0b 00 00 00 00 00 ............ +1308 0x000066c6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1954873344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 8b 1f 00 00 00 00 00 ....T.c@.^1@......{....... +1309 0x000066e0 control 12 -1 717971 0 -1 717971 0 ff ff ff ff 93 f4 0a 00 00 00 00 00 ............ +1310 0x000066ec control 12 26 727483 0 26 727483 0 1a 00 00 00 bb 19 0b 00 00 00 00 00 ............ +1311 0x000066f8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1954742272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 8b 1f 00 00 00 00 00 ....T.c@.^1@......}....... +1312 0x00006712 control 12 -1 717972 0 -1 717972 0 ff ff ff ff 94 f4 0a 00 00 00 00 00 ............ +1313 0x0000671e control 12 -2 82604 82586 -2 82604 82586 fe ff ff ff ac 42 01 00 9a 42 01 00 .....B...B.. +1314 0x0000672a control 12 26 727484 0 26 727484 0 1a 00 00 00 bc 19 0b 00 00 00 00 00 ............ +1315 0x00006736 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1954611200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1316 0x00006750 control 12 -1 717973 0 -1 717973 0 ff ff ff ff 95 f4 0a 00 00 00 00 00 ............ +1317 0x0000675c control 12 34 727485 0 34 727485 0 22 00 00 00 bd 19 0b 00 00 00 00 00 """..........." +1318 0x00006768 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 285212672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 00 11 02 00 00 00 00 00 83 eb 22 c3 9d 01 00 00 ".....!...o3.................""....." +1319 0x0000678a control 12 67 727486 0 67 727486 0 43 00 00 00 be 19 0b 00 00 00 00 00 C........... +1320 0x00006796 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 00 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 68 05 2d 96 cb 82 a9 18 ?.....3...|8...................=B.....&......... +1321 0x000067d9 control 12 -1 717974 0 -1 717974 0 ff ff ff ff 96 f4 0a 00 00 00 00 00 ............ +1322 0x000067e5 control 12 30 727487 0 30 727487 0 1e 00 00 00 bf 19 0b 00 00 00 00 00 ............ +1323 0x000067f1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1954480128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 81 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1324 0x0000680f control 12 -1 717975 0 -1 717975 0 ff ff ff ff 97 f4 0a 00 00 00 00 00 ............ +1325 0x0000681b control 12 26 727488 0 26 727488 0 1a 00 00 00 c0 19 0b 00 00 00 00 00 ............ +1326 0x00006827 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1954349056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1327 0x00006841 control 12 -1 717976 0 -1 717976 0 ff ff ff ff 98 f4 0a 00 00 00 00 00 ............ +1328 0x0000684d control 12 26 727489 0 26 727489 0 1a 00 00 00 c1 19 0b 00 00 00 00 00 ............ +1329 0x00006859 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1954217984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +1330 0x00006873 control 12 -1 717977 0 -1 717977 0 ff ff ff ff 99 f4 0a 00 00 00 00 00 ............ +1331 0x0000687f unknown 12 26 727490 0 26 727490 0 1a 00 00 00 c2 19 0b 00 00 00 00 00 ............ diff --git a/captures/017-loopback-write-test-int-100/mixed-stream-57433-to-57415.tsv b/captures/017-loopback-write-test-int-100/mixed-stream-57433-to-57415.tsv new file mode 100644 index 0000000..acaa74c --- /dev/null +++ b/captures/017-loopback-write-test-int-100/mixed-stream-57433-to-57415.tsv @@ -0,0 +1,1253 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 -1 727069 0 -1 727069 0 ff ff ff ff 1d 18 0b 00 00 00 00 00 ............ +1 0x0000000c control 12 22 717587 0 22 717587 0 16 00 00 00 13 f3 0a 00 00 00 00 00 ............ +2 0x00000018 data 22 18 2066711 0 2066711 0 196609 0 12 00 00 00 17 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3 0x0000002e control 12 -1 727070 0 -1 727070 0 ff ff ff ff 1e 18 0b 00 00 00 00 00 ............ +4 0x0000003a control 12 52 717588 0 52 717588 0 34 00 00 00 14 f3 0a 00 00 00 00 00 4........... +5 0x00000046 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b2 10 02 00 00 00 00 00 00 00 4c f0 77 69 4d 01 00 00 "0...Dk.................L."".([...............L.wi" +6 0x0000007a control 12 -1 727071 0 -1 727071 0 ff ff ff ff 1f 18 0b 00 00 00 00 00 ............ +7 0x00000086 control 12 26 717589 0 26 717589 0 1a 00 00 00 15 f3 0a 00 00 00 00 00 ............ +8 0x00000092 data 26 22 2066713 0 2066713 0 196609 0 16 00 00 00 19 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +9 0x000000ac control 12 -1 727072 0 -1 727072 0 ff ff ff ff 20 18 0b 00 00 00 00 00 .... ....... +10 0x000000b8 control 12 22 717590 0 22 717590 0 16 00 00 00 16 f3 0a 00 00 00 00 00 ............ +11 0x000000c4 data 22 18 2066715 0 2066715 0 196609 0 12 00 00 00 1b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +12 0x000000da control 12 -2 82539 82556 -2 82539 82556 fe ff ff ff 6b 42 01 00 7c 42 01 00 ....kB..|B.. +13 0x000000e6 control 12 -1 727073 0 -1 727073 0 ff ff ff ff 21 18 0b 00 00 00 00 00 ....!....... +14 0x000000f2 control 12 22 717591 0 22 717591 0 16 00 00 00 17 f3 0a 00 00 00 00 00 ............ +15 0x000000fe data 22 18 2066717 0 2066717 0 196609 0 12 00 00 00 1d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +16 0x00000114 control 12 -1 727074 0 -1 727074 0 ff ff ff ff 22 18 0b 00 00 00 00 00 "....""......." +17 0x00000120 control 12 22 717592 0 22 717592 0 16 00 00 00 18 f3 0a 00 00 00 00 00 ............ +18 0x0000012c data 22 18 2066719 0 2066719 0 196609 0 12 00 00 00 1f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +19 0x00000142 control 12 -1 727075 0 -1 727075 0 ff ff ff ff 23 18 0b 00 00 00 00 00 ....#....... +20 0x0000014e control 12 -1 727076 0 -1 727076 0 ff ff ff ff 24 18 0b 00 00 00 00 00 ....$....... +21 0x0000015a control 12 52 717593 0 52 717593 0 34 00 00 00 19 f3 0a 00 00 00 00 00 4........... +22 0x00000166 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b3 10 02 00 00 00 00 00 00 00 5e a9 a6 69 4d 01 00 00 "0...Dk.................L."".([...............^..i" +23 0x0000019a control 12 -1 727077 0 -1 727077 0 ff ff ff ff 25 18 0b 00 00 00 00 00 ....%....... +24 0x000001a6 control 12 26 717594 0 26 717594 0 1a 00 00 00 1a f3 0a 00 00 00 00 00 ............ +25 0x000001b2 data 26 22 2066721 0 2066721 0 196609 0 16 00 00 00 21 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +26 0x000001cc control 12 -1 727078 0 -1 727078 0 ff ff ff ff 26 18 0b 00 00 00 00 00 ....&....... +27 0x000001d8 control 12 22 717595 0 22 717595 0 16 00 00 00 1b f3 0a 00 00 00 00 00 ............ +28 0x000001e4 data 22 18 2066723 0 2066723 0 196609 0 12 00 00 00 23 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +29 0x000001fa control 12 -1 727079 0 -1 727079 0 ff ff ff ff 27 18 0b 00 00 00 00 00 ....'....... +30 0x00000206 control 12 22 717596 0 22 717596 0 16 00 00 00 1c f3 0a 00 00 00 00 00 ............ +31 0x00000212 data 22 18 2066725 0 2066725 0 196609 0 12 00 00 00 25 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +32 0x00000228 control 12 -2 82540 82557 -2 82540 82557 fe ff ff ff 6c 42 01 00 7d 42 01 00 ....lB..}B.. +33 0x00000234 control 12 -1 727080 0 -1 727080 0 ff ff ff ff 28 18 0b 00 00 00 00 00 ....(....... +34 0x00000240 control 12 22 717597 0 22 717597 0 16 00 00 00 1d f3 0a 00 00 00 00 00 ............ +35 0x0000024c data 22 18 2066727 0 2066727 0 196609 0 12 00 00 00 27 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +36 0x00000262 control 12 -1 727081 0 -1 727081 0 ff ff ff ff 29 18 0b 00 00 00 00 00 ....)....... +37 0x0000026e control 12 -1 727082 0 -1 727082 0 ff ff ff ff 2a 18 0b 00 00 00 00 00 ....*....... +38 0x0000027a control 12 52 717598 0 52 717598 0 34 00 00 00 1e f3 0a 00 00 00 00 00 4........... +39 0x00000286 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b4 10 02 00 00 00 00 00 00 00 92 16 d5 69 4d 01 00 00 "0...Dk.................L."".([..................i" +40 0x000002ba control 12 -1 727083 0 -1 727083 0 ff ff ff ff 2b 18 0b 00 00 00 00 00 ....+....... +41 0x000002c6 control 12 26 717599 0 26 717599 0 1a 00 00 00 1f f3 0a 00 00 00 00 00 ............ +42 0x000002d2 data 26 22 2066729 0 2066729 0 196609 0 16 00 00 00 29 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +43 0x000002ec control 12 -1 727084 0 -1 727084 0 ff ff ff ff 2c 18 0b 00 00 00 00 00 ....,....... +44 0x000002f8 control 12 22 717600 0 22 717600 0 16 00 00 00 20 f3 0a 00 00 00 00 00 .... ....... +45 0x00000304 data 22 18 2066731 0 2066731 0 196609 0 12 00 00 00 2b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +46 0x0000031a control 12 -1 727085 0 -1 727085 0 ff ff ff ff 2d 18 0b 00 00 00 00 00 ....-....... +47 0x00000326 control 12 22 717601 0 22 717601 0 16 00 00 00 21 f3 0a 00 00 00 00 00 ....!....... +48 0x00000332 data 22 18 2066733 0 2066733 0 196609 0 12 00 00 00 2d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +49 0x00000348 control 12 -1 727086 0 -1 727086 0 ff ff ff ff 2e 18 0b 00 00 00 00 00 ............ +50 0x00000354 control 12 22 717602 0 22 717602 0 16 00 00 00 22 f3 0a 00 00 00 00 00 "....""......." +51 0x00000360 data 22 18 2066735 0 2066735 0 196609 0 12 00 00 00 2f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +52 0x00000376 control 12 -1 727087 0 -1 727087 0 ff ff ff ff 2f 18 0b 00 00 00 00 00 ..../....... +53 0x00000382 control 12 52 717603 0 52 717603 0 34 00 00 00 23 f3 0a 00 00 00 00 00 4...#....... +54 0x0000038e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b5 10 02 00 00 00 00 00 00 00 fe 88 03 6a 4d 01 00 00 "0...Dk.................L."".([..................j" +55 0x000003c2 control 12 -1 727088 0 -1 727088 0 ff ff ff ff 30 18 0b 00 00 00 00 00 ....0....... +56 0x000003ce control 12 26 717604 0 26 717604 0 1a 00 00 00 24 f3 0a 00 00 00 00 00 ....$....... +57 0x000003da data 26 22 2066737 0 2066737 0 196609 0 16 00 00 00 31 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +58 0x000003f4 control 12 -1 727089 0 -1 727089 0 ff ff ff ff 31 18 0b 00 00 00 00 00 ....1....... +59 0x00000400 control 12 22 717605 0 22 717605 0 16 00 00 00 25 f3 0a 00 00 00 00 00 ....%....... +60 0x0000040c data 22 18 2066739 0 2066739 0 196609 0 12 00 00 00 33 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +61 0x00000422 control 12 -2 82541 82558 -2 82541 82558 fe ff ff ff 6d 42 01 00 7e 42 01 00 ....mB..~B.. +62 0x0000042e control 12 -1 727090 0 -1 727090 0 ff ff ff ff 32 18 0b 00 00 00 00 00 ....2....... +63 0x0000043a control 12 22 717606 0 22 717606 0 16 00 00 00 26 f3 0a 00 00 00 00 00 ....&....... +64 0x00000446 data 22 18 2066741 0 2066741 0 196609 0 12 00 00 00 35 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +65 0x0000045c control 12 -1 727091 0 -1 727091 0 ff ff ff ff 33 18 0b 00 00 00 00 00 ....3....... +66 0x00000468 control 12 22 717607 0 22 717607 0 16 00 00 00 27 f3 0a 00 00 00 00 00 ....'....... +67 0x00000474 data 22 18 2066743 0 2066743 0 196609 0 12 00 00 00 37 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +68 0x0000048a control 12 -1 727092 0 -1 727092 0 ff ff ff ff 34 18 0b 00 00 00 00 00 ....4....... +69 0x00000496 control 12 -1 727093 0 -1 727093 0 ff ff ff ff 35 18 0b 00 00 00 00 00 ....5....... +70 0x000004a2 control 12 52 717608 0 52 717608 0 34 00 00 00 28 f3 0a 00 00 00 00 00 4...(....... +71 0x000004ae data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b6 10 02 00 00 00 00 00 00 00 73 f2 31 6a 4d 01 00 00 "0...Dk.................L."".([...............s.1j" +72 0x000004e2 control 12 -1 727094 0 -1 727094 0 ff ff ff ff 36 18 0b 00 00 00 00 00 ....6....... +73 0x000004ee control 12 26 717609 0 26 717609 0 1a 00 00 00 29 f3 0a 00 00 00 00 00 ....)....... +74 0x000004fa data 26 22 2066745 0 2066745 0 196609 0 16 00 00 00 39 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +75 0x00000514 control 12 -1 727095 0 -1 727095 0 ff ff ff ff 37 18 0b 00 00 00 00 00 ....7....... +76 0x00000520 control 12 22 717610 0 22 717610 0 16 00 00 00 2a f3 0a 00 00 00 00 00 ....*....... +77 0x0000052c data 22 18 2066747 0 2066747 0 196609 0 12 00 00 00 3b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +78 0x00000542 control 12 -1 727096 0 -1 727096 0 ff ff ff ff 38 18 0b 00 00 00 00 00 ....8....... +79 0x0000054e control 12 22 717611 0 22 717611 0 16 00 00 00 2b f3 0a 00 00 00 00 00 ....+....... +80 0x0000055a data 22 18 2066749 0 2066749 0 196609 0 12 00 00 00 3d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +81 0x00000570 control 12 -1 727097 0 -1 727097 0 ff ff ff ff 39 18 0b 00 00 00 00 00 ....9....... +82 0x0000057c control 12 22 717612 0 22 717612 0 16 00 00 00 2c f3 0a 00 00 00 00 00 ....,....... +83 0x00000588 data 22 18 2066751 0 2066751 0 196609 0 12 00 00 00 3f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +84 0x0000059e control 12 -1 727098 0 -1 727098 0 ff ff ff ff 3a 18 0b 00 00 00 00 00 ....:....... +85 0x000005aa control 12 -1 727099 0 -1 727099 0 ff ff ff ff 3b 18 0b 00 00 00 00 00 ....;....... +86 0x000005b6 control 12 52 717613 0 52 717613 0 34 00 00 00 2d f3 0a 00 00 00 00 00 4...-....... +87 0x000005c2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b7 10 02 00 00 00 00 00 00 00 4e 65 60 6a 4d 01 00 00 "0...Dk.................L."".([...............Ne`j" +88 0x000005f6 control 12 -1 727100 0 -1 727100 0 ff ff ff ff 3c 18 0b 00 00 00 00 00 ....<....... +89 0x00000602 control 12 26 717614 0 26 717614 0 1a 00 00 00 2e f3 0a 00 00 00 00 00 ............ +90 0x0000060e data 26 22 2066753 0 2066753 0 196609 0 16 00 00 00 41 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +91 0x00000628 control 12 -2 82542 82559 -2 82542 82559 fe ff ff ff 6e 42 01 00 7f 42 01 00 ....nB...B.. +92 0x00000634 control 12 -1 727101 0 -1 727101 0 ff ff ff ff 3d 18 0b 00 00 00 00 00 ....=....... +93 0x00000640 control 12 22 717615 0 22 717615 0 16 00 00 00 2f f3 0a 00 00 00 00 00 ..../....... +94 0x0000064c data 22 18 2066755 0 2066755 0 196609 0 12 00 00 00 43 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +95 0x00000662 control 12 -1 727102 0 -1 727102 0 ff ff ff ff 3e 18 0b 00 00 00 00 00 ....>....... +96 0x0000066e control 12 22 717616 0 22 717616 0 16 00 00 00 30 f3 0a 00 00 00 00 00 ....0....... +97 0x0000067a data 22 18 2066757 0 2066757 0 196609 0 12 00 00 00 45 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +98 0x00000690 control 12 -1 727103 0 -1 727103 0 ff ff ff ff 3f 18 0b 00 00 00 00 00 ....?....... +99 0x0000069c control 12 22 717617 0 22 717617 0 16 00 00 00 31 f3 0a 00 00 00 00 00 ....1....... +100 0x000006a8 data 22 18 2066759 0 2066759 0 196609 0 12 00 00 00 47 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +101 0x000006be control 12 -1 727104 0 -1 727104 0 ff ff ff ff 40 18 0b 00 00 00 00 00 ....@....... +102 0x000006ca control 12 52 717618 0 52 717618 0 34 00 00 00 32 f3 0a 00 00 00 00 00 4...2....... +103 0x000006d6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b8 10 02 00 00 00 00 00 00 00 0d c1 8e 6a 4d 01 00 00 "0...Dk.................L."".([..................j" +104 0x0000070a control 12 -1 727105 0 -1 727105 0 ff ff ff ff 41 18 0b 00 00 00 00 00 ....A....... +105 0x00000716 control 12 26 717619 0 26 717619 0 1a 00 00 00 33 f3 0a 00 00 00 00 00 ....3....... +106 0x00000722 data 26 22 2066761 0 2066761 0 196609 0 16 00 00 00 49 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +107 0x0000073c control 12 -1 727106 0 -1 727106 0 ff ff ff ff 42 18 0b 00 00 00 00 00 ....B....... +108 0x00000748 control 12 22 717620 0 22 717620 0 16 00 00 00 34 f3 0a 00 00 00 00 00 ....4....... +109 0x00000754 data 22 18 2066763 0 2066763 0 196609 0 12 00 00 00 4b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +110 0x0000076a control 12 -1 727107 0 -1 727107 0 ff ff ff ff 43 18 0b 00 00 00 00 00 ....C....... +111 0x00000776 control 12 22 717621 0 22 717621 0 16 00 00 00 35 f3 0a 00 00 00 00 00 ....5....... +112 0x00000782 data 22 18 2066765 0 2066765 0 196609 0 12 00 00 00 4d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +113 0x00000798 control 12 -2 82543 82560 -2 82543 82560 fe ff ff ff 6f 42 01 00 80 42 01 00 ....oB...B.. +114 0x000007a4 control 12 -1 727108 0 -1 727108 0 ff ff ff ff 44 18 0b 00 00 00 00 00 ....D....... +115 0x000007b0 control 12 22 717622 0 22 717622 0 16 00 00 00 36 f3 0a 00 00 00 00 00 ....6....... +116 0x000007bc data 22 18 2066767 0 2066767 0 196609 0 12 00 00 00 4f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +117 0x000007d2 control 12 -1 727109 0 -1 727109 0 ff ff ff ff 45 18 0b 00 00 00 00 00 ....E....... +118 0x000007de control 12 -1 727110 0 -1 727110 0 ff ff ff ff 46 18 0b 00 00 00 00 00 ....F....... +119 0x000007ea control 12 52 717623 0 52 717623 0 34 00 00 00 37 f3 0a 00 00 00 00 00 4...7....... +120 0x000007f6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b9 10 02 00 00 00 00 00 00 00 a6 42 bd 6a 4d 01 00 00 "0...Dk.................L."".([................B.j" +121 0x0000082a control 12 -1 727111 0 -1 727111 0 ff ff ff ff 47 18 0b 00 00 00 00 00 ....G....... +122 0x00000836 control 12 26 717624 0 26 717624 0 1a 00 00 00 38 f3 0a 00 00 00 00 00 ....8....... +123 0x00000842 data 26 22 2066769 0 2066769 0 196609 0 16 00 00 00 51 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +124 0x0000085c control 12 -1 727112 0 -1 727112 0 ff ff ff ff 48 18 0b 00 00 00 00 00 ....H....... +125 0x00000868 control 12 22 717625 0 22 717625 0 16 00 00 00 39 f3 0a 00 00 00 00 00 ....9....... +126 0x00000874 data 22 18 2066771 0 2066771 0 196609 0 12 00 00 00 53 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +127 0x0000088a control 12 -1 727113 0 -1 727113 0 ff ff ff ff 49 18 0b 00 00 00 00 00 ....I....... +128 0x00000896 control 12 22 717626 0 22 717626 0 16 00 00 00 3a f3 0a 00 00 00 00 00 ....:....... +129 0x000008a2 data 22 18 2066773 0 2066773 0 196609 0 12 00 00 00 55 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +130 0x000008b8 control 12 -1 727114 0 -1 727114 0 ff ff ff ff 4a 18 0b 00 00 00 00 00 ....J....... +131 0x000008c4 control 12 22 717627 0 22 717627 0 16 00 00 00 3b f3 0a 00 00 00 00 00 ....;....... +132 0x000008d0 data 22 18 2066775 0 2066775 0 196609 0 12 00 00 00 57 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +133 0x000008e6 control 12 -1 727115 0 -1 727115 0 ff ff ff ff 4b 18 0b 00 00 00 00 00 ....K....... +134 0x000008f2 control 12 52 717628 0 52 717628 0 34 00 00 00 3c f3 0a 00 00 00 00 00 4...<....... +135 0x000008fe data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ba 10 02 00 00 00 00 00 00 00 34 b6 eb 6a 4d 01 00 00 "0...Dk.................L."".([...............4..j" +136 0x00000932 control 12 -1 727116 0 -1 727116 0 ff ff ff ff 4c 18 0b 00 00 00 00 00 ....L....... +137 0x0000093e control 12 26 717629 0 26 717629 0 1a 00 00 00 3d f3 0a 00 00 00 00 00 ....=....... +138 0x0000094a data 26 22 2066777 0 2066777 0 196609 0 16 00 00 00 59 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +139 0x00000964 control 12 -1 727117 0 -1 727117 0 ff ff ff ff 4d 18 0b 00 00 00 00 00 ....M....... +140 0x00000970 control 12 22 717630 0 22 717630 0 16 00 00 00 3e f3 0a 00 00 00 00 00 ....>....... +141 0x0000097c data 22 18 2066779 0 2066779 0 196609 0 12 00 00 00 5b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +142 0x00000992 control 12 -2 82544 82561 -2 82544 82561 fe ff ff ff 70 42 01 00 81 42 01 00 ....pB...B.. +143 0x0000099e control 12 -1 727118 0 -1 727118 0 ff ff ff ff 4e 18 0b 00 00 00 00 00 ....N....... +144 0x000009aa control 12 22 717631 0 22 717631 0 16 00 00 00 3f f3 0a 00 00 00 00 00 ....?....... +145 0x000009b6 data 22 18 2066781 0 2066781 0 196609 0 12 00 00 00 5d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +146 0x000009cc control 12 -1 727119 0 -1 727119 0 ff ff ff ff 4f 18 0b 00 00 00 00 00 ....O....... +147 0x000009d8 control 12 52 717632 0 52 717632 0 34 00 00 00 40 f3 0a 00 00 00 00 00 4...@....... +148 0x000009e4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bb 10 02 00 00 00 00 00 00 00 5f 3e 1a 6b 4d 01 00 00 "0...Dk.................L."".([..............._>.k" +149 0x00000a18 control 12 -1 727120 0 -1 727120 0 ff ff ff ff 50 18 0b 00 00 00 00 00 ....P....... +150 0x00000a24 control 12 -1 727121 0 -1 727121 0 ff ff ff ff 51 18 0b 00 00 00 00 00 ....Q....... +151 0x00000a30 control 12 22 717633 0 22 717633 0 16 00 00 00 41 f3 0a 00 00 00 00 00 ....A....... +152 0x00000a3c data 22 18 2066783 0 2066783 0 196609 0 12 00 00 00 5f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +153 0x00000a52 control 12 26 717634 0 26 717634 0 1a 00 00 00 42 f3 0a 00 00 00 00 00 ....B....... +154 0x00000a5e data 26 22 2066785 0 2066785 0 196609 0 16 00 00 00 61 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +155 0x00000a78 control 12 -1 727122 0 -1 727122 0 ff ff ff ff 52 18 0b 00 00 00 00 00 ....R....... +156 0x00000a84 control 12 22 717635 0 22 717635 0 16 00 00 00 43 f3 0a 00 00 00 00 00 ....C....... +157 0x00000a90 data 22 18 2066787 0 2066787 0 196609 0 12 00 00 00 63 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +158 0x00000aa6 control 12 -1 727123 0 -1 727123 0 ff ff ff ff 53 18 0b 00 00 00 00 00 ....S....... +159 0x00000ab2 control 12 22 717636 0 22 717636 0 16 00 00 00 44 f3 0a 00 00 00 00 00 ....D....... +160 0x00000abe data 22 18 2066789 0 2066789 0 196609 0 12 00 00 00 65 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +161 0x00000ad4 control 12 -1 727124 0 -1 727124 0 ff ff ff ff 54 18 0b 00 00 00 00 00 ....T....... +162 0x00000ae0 control 12 -1 727125 0 -1 727125 0 ff ff ff ff 55 18 0b 00 00 00 00 00 ....U....... +163 0x00000aec control 12 52 717637 0 52 717637 0 34 00 00 00 45 f3 0a 00 00 00 00 00 4...E....... +164 0x00000af8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bc 10 02 00 00 00 00 00 00 00 95 b0 48 6b 4d 01 00 00 "0...Dk.................L."".([.................Hk" +165 0x00000b2c control 12 -2 82545 82562 -2 82545 82562 fe ff ff ff 71 42 01 00 82 42 01 00 ....qB...B.. +166 0x00000b38 control 12 26 717638 0 26 717638 0 1a 00 00 00 46 f3 0a 00 00 00 00 00 ....F....... +167 0x00000b44 data 26 22 2066791 0 2066791 0 196609 0 16 00 00 00 67 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....g..................... +168 0x00000b5e control 12 -1 727126 0 -1 727126 0 ff ff ff ff 56 18 0b 00 00 00 00 00 ....V....... +169 0x00000b6a control 12 -1 727127 0 -1 727127 0 ff ff ff ff 57 18 0b 00 00 00 00 00 ....W....... +170 0x00000b76 control 12 22 717639 0 22 717639 0 16 00 00 00 47 f3 0a 00 00 00 00 00 ....G....... +171 0x00000b82 data 22 18 2066793 0 2066793 0 196609 0 12 00 00 00 69 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +172 0x00000b98 control 12 -1 727128 0 -1 727128 0 ff ff ff ff 58 18 0b 00 00 00 00 00 ....X....... +173 0x00000ba4 control 12 22 717640 0 22 717640 0 16 00 00 00 48 f3 0a 00 00 00 00 00 ....H....... +174 0x00000bb0 data 22 18 2066795 0 2066795 0 196609 0 12 00 00 00 6b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +175 0x00000bc6 control 12 -1 727129 0 -1 727129 0 ff ff ff ff 59 18 0b 00 00 00 00 00 ....Y....... +176 0x00000bd2 control 12 22 717641 0 22 717641 0 16 00 00 00 49 f3 0a 00 00 00 00 00 ....I....... +177 0x00000bde data 22 18 2066797 0 2066797 0 196609 0 12 00 00 00 6d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +178 0x00000bf4 control 12 -1 727130 0 -1 727130 0 ff ff ff ff 5a 18 0b 00 00 00 00 00 ....Z....... +179 0x00000c00 control 12 52 717642 0 52 717642 0 34 00 00 00 4a f3 0a 00 00 00 00 00 4...J....... +180 0x00000c0c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bd 10 02 00 00 00 00 00 00 00 ef 27 77 6b 4d 01 00 00 "0...Dk.................L."".([................'wk" +181 0x00000c40 control 12 -1 727131 0 -1 727131 0 ff ff ff ff 5b 18 0b 00 00 00 00 00 ....[....... +182 0x00000c4c control 12 26 717643 0 26 717643 0 1a 00 00 00 4b f3 0a 00 00 00 00 00 ....K....... +183 0x00000c58 data 26 22 2066799 0 2066799 0 196609 0 16 00 00 00 6f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....o..................... +184 0x00000c72 control 12 -1 727132 0 -1 727132 0 ff ff ff ff 5c 18 0b 00 00 00 00 00 ....\....... +185 0x00000c7e control 12 22 717644 0 22 717644 0 16 00 00 00 4c f3 0a 00 00 00 00 00 ....L....... +186 0x00000c8a data 22 18 2066801 0 2066801 0 196609 0 12 00 00 00 71 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +187 0x00000ca0 control 12 -1 727133 0 -1 727133 0 ff ff ff ff 5d 18 0b 00 00 00 00 00 ....]....... +188 0x00000cac control 12 22 717645 0 22 717645 0 16 00 00 00 4d f3 0a 00 00 00 00 00 ....M....... +189 0x00000cb8 data 22 18 2066803 0 2066803 0 196609 0 12 00 00 00 73 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +190 0x00000cce control 12 -2 82546 82563 -2 82546 82563 fe ff ff ff 72 42 01 00 83 42 01 00 ....rB...B.. +191 0x00000cda control 12 -1 727134 0 -1 727134 0 ff ff ff ff 5e 18 0b 00 00 00 00 00 ....^....... +192 0x00000ce6 control 12 22 717646 0 22 717646 0 16 00 00 00 4e f3 0a 00 00 00 00 00 ....N....... +193 0x00000cf2 data 22 18 2066805 0 2066805 0 196609 0 12 00 00 00 75 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +194 0x00000d08 control 12 -1 727135 0 -1 727135 0 ff ff ff ff 5f 18 0b 00 00 00 00 00 ...._....... +195 0x00000d14 control 12 -1 727136 0 -1 727136 0 ff ff ff ff 60 18 0b 00 00 00 00 00 ....`....... +196 0x00000d20 control 12 52 717647 0 52 717647 0 34 00 00 00 4f f3 0a 00 00 00 00 00 4...O....... +197 0x00000d2c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 be 10 02 00 00 00 00 00 00 00 e0 b7 a5 6b 4d 01 00 00 "0...Dk.................L."".([..................k" +198 0x00000d60 control 12 -1 727137 0 -1 727137 0 ff ff ff ff 61 18 0b 00 00 00 00 00 ....a....... +199 0x00000d6c control 12 26 717648 0 26 717648 0 1a 00 00 00 50 f3 0a 00 00 00 00 00 ....P....... +200 0x00000d78 data 26 22 2066807 0 2066807 0 196609 0 16 00 00 00 77 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....w..................... +201 0x00000d92 control 12 -1 727138 0 -1 727138 0 ff ff ff ff 62 18 0b 00 00 00 00 00 ....b....... +202 0x00000d9e control 12 22 717649 0 22 717649 0 16 00 00 00 51 f3 0a 00 00 00 00 00 ....Q....... +203 0x00000daa data 22 18 2066809 0 2066809 0 196609 0 12 00 00 00 79 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +204 0x00000dc0 control 12 -1 727139 0 -1 727139 0 ff ff ff ff 63 18 0b 00 00 00 00 00 ....c....... +205 0x00000dcc control 12 22 717650 0 22 717650 0 16 00 00 00 52 f3 0a 00 00 00 00 00 ....R....... +206 0x00000dd8 data 22 18 2066811 0 2066811 0 196609 0 12 00 00 00 7b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +207 0x00000dee control 12 -1 727140 0 -1 727140 0 ff ff ff ff 64 18 0b 00 00 00 00 00 ....d....... +208 0x00000dfa control 12 22 717651 0 22 717651 0 16 00 00 00 53 f3 0a 00 00 00 00 00 ....S....... +209 0x00000e06 data 22 18 2066813 0 2066813 0 196609 0 12 00 00 00 7d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +210 0x00000e1c control 12 -1 727141 0 -1 727141 0 ff ff ff ff 65 18 0b 00 00 00 00 00 ....e....... +211 0x00000e28 control 12 52 717652 0 52 717652 0 34 00 00 00 54 f3 0a 00 00 00 00 00 4...T....... +212 0x00000e34 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bf 10 02 00 00 00 00 00 00 00 49 2b d4 6b 4d 01 00 00 "0...Dk.................L."".([...............I+.k" +213 0x00000e68 control 12 -1 727142 0 -1 727142 0 ff ff ff ff 66 18 0b 00 00 00 00 00 ....f....... +214 0x00000e74 control 12 26 717653 0 26 717653 0 1a 00 00 00 55 f3 0a 00 00 00 00 00 ....U....... +215 0x00000e80 data 26 22 2066815 0 2066815 0 196609 0 16 00 00 00 7f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +216 0x00000e9a control 12 -1 727143 0 -1 727143 0 ff ff ff ff 67 18 0b 00 00 00 00 00 ....g....... +217 0x00000ea6 control 12 22 717654 0 22 717654 0 16 00 00 00 56 f3 0a 00 00 00 00 00 ....V....... +218 0x00000eb2 data 22 18 2066817 0 2066817 0 196609 0 12 00 00 00 81 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +219 0x00000ec8 control 12 -2 82547 82564 -2 82547 82564 fe ff ff ff 73 42 01 00 84 42 01 00 ....sB...B.. +220 0x00000ed4 control 12 -1 727144 0 -1 727144 0 ff ff ff ff 68 18 0b 00 00 00 00 00 ....h....... +221 0x00000ee0 control 12 22 717655 0 22 717655 0 16 00 00 00 57 f3 0a 00 00 00 00 00 ....W....... +222 0x00000eec data 22 18 2066819 0 2066819 0 196609 0 12 00 00 00 83 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +223 0x00000f02 control 12 -1 727145 0 -1 727145 0 ff ff ff ff 69 18 0b 00 00 00 00 00 ....i....... +224 0x00000f0e control 12 22 717656 0 22 717656 0 16 00 00 00 58 f3 0a 00 00 00 00 00 ....X....... +225 0x00000f1a data 22 18 2066821 0 2066821 0 196609 0 12 00 00 00 85 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +226 0x00000f30 control 12 -1 727146 0 -1 727146 0 ff ff ff ff 6a 18 0b 00 00 00 00 00 ....j....... +227 0x00000f3c control 12 52 717657 0 52 717657 0 34 00 00 00 59 f3 0a 00 00 00 00 00 4...Y....... +228 0x00000f48 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c0 10 02 00 00 00 00 00 00 00 91 ba 02 6c 4d 01 00 00 "0...Dk.................L."".([..................l" +229 0x00000f7c control 12 -1 727147 0 -1 727147 0 ff ff ff ff 6b 18 0b 00 00 00 00 00 ....k....... +230 0x00000f88 control 12 26 717658 0 26 717658 0 1a 00 00 00 5a f3 0a 00 00 00 00 00 ....Z....... +231 0x00000f94 data 26 22 2066823 0 2066823 0 196609 0 16 00 00 00 87 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +232 0x00000fae control 12 -1 727148 0 -1 727148 0 ff ff ff ff 6c 18 0b 00 00 00 00 00 ....l....... +233 0x00000fba control 12 22 717659 0 22 717659 0 16 00 00 00 5b f3 0a 00 00 00 00 00 ....[....... +234 0x00000fc6 data 22 18 2066825 0 2066825 0 196609 0 12 00 00 00 89 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +235 0x00000fdc control 12 -1 727149 0 -1 727149 0 ff ff ff ff 6d 18 0b 00 00 00 00 00 ....m....... +236 0x00000fe8 control 12 22 717660 0 22 717660 0 16 00 00 00 5c f3 0a 00 00 00 00 00 ....\....... +237 0x00000ff4 data 22 18 2066827 0 2066827 0 196609 0 12 00 00 00 8b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +238 0x0000100a control 12 -1 727150 0 -1 727150 0 ff ff ff ff 6e 18 0b 00 00 00 00 00 ....n....... +239 0x00001016 control 12 22 717661 0 22 717661 0 16 00 00 00 5d f3 0a 00 00 00 00 00 ....]....... +240 0x00001022 data 22 18 2066829 0 2066829 0 196609 0 12 00 00 00 8d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +241 0x00001038 control 12 -2 82548 82565 -2 82548 82565 fe ff ff ff 74 42 01 00 85 42 01 00 ....tB...B.. +242 0x00001044 control 12 -1 727151 0 -1 727151 0 ff ff ff ff 6f 18 0b 00 00 00 00 00 ....o....... +243 0x00001050 control 12 52 717662 0 52 717662 0 34 00 00 00 5e f3 0a 00 00 00 00 00 4...^....... +244 0x0000105c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c1 10 02 00 00 00 00 00 00 00 4c 5c 31 6c 4d 01 00 00 "0...Dk.................L."".([...............L\1l" +245 0x00001090 control 12 -1 727152 0 -1 727152 0 ff ff ff ff 70 18 0b 00 00 00 00 00 ....p....... +246 0x0000109c control 12 26 717663 0 26 717663 0 1a 00 00 00 5f f3 0a 00 00 00 00 00 ...._....... +247 0x000010a8 data 26 22 2066831 0 2066831 0 196609 0 16 00 00 00 8f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +248 0x000010c2 control 12 -1 727153 0 -1 727153 0 ff ff ff ff 71 18 0b 00 00 00 00 00 ....q....... +249 0x000010ce control 12 22 717664 0 22 717664 0 16 00 00 00 60 f3 0a 00 00 00 00 00 ....`....... +250 0x000010da data 22 18 2066833 0 2066833 0 196609 0 12 00 00 00 91 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +251 0x000010f0 control 12 -1 727154 0 -1 727154 0 ff ff ff ff 72 18 0b 00 00 00 00 00 ....r....... +252 0x000010fc control 12 22 717665 0 22 717665 0 16 00 00 00 61 f3 0a 00 00 00 00 00 ....a....... +253 0x00001108 data 22 18 2066835 0 2066835 0 196609 0 12 00 00 00 93 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +254 0x0000111e control 12 -1 727155 0 -1 727155 0 ff ff ff ff 73 18 0b 00 00 00 00 00 ....s....... +255 0x0000112a control 12 22 717666 0 22 717666 0 16 00 00 00 62 f3 0a 00 00 00 00 00 ....b....... +256 0x00001136 data 22 18 2066837 0 2066837 0 196609 0 12 00 00 00 95 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +257 0x0000114c control 12 -1 727156 0 -1 727156 0 ff ff ff ff 74 18 0b 00 00 00 00 00 ....t....... +258 0x00001158 control 12 52 717667 0 52 717667 0 34 00 00 00 63 f3 0a 00 00 00 00 00 4...c....... +259 0x00001164 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c2 10 02 00 00 00 00 00 00 00 e4 ba 5f 6c 4d 01 00 00 "0...Dk.................L."".([................._l" +260 0x00001198 control 12 -1 727157 0 -1 727157 0 ff ff ff ff 75 18 0b 00 00 00 00 00 ....u....... +261 0x000011a4 control 12 26 717668 0 26 717668 0 1a 00 00 00 64 f3 0a 00 00 00 00 00 ....d....... +262 0x000011b0 data 26 22 2066839 0 2066839 0 196609 0 16 00 00 00 97 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +263 0x000011ca control 12 -1 727158 0 -1 727158 0 ff ff ff ff 76 18 0b 00 00 00 00 00 ....v....... +264 0x000011d6 control 12 22 717669 0 22 717669 0 16 00 00 00 65 f3 0a 00 00 00 00 00 ....e....... +265 0x000011e2 data 22 18 2066841 0 2066841 0 196609 0 12 00 00 00 99 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +266 0x000011f8 control 12 -1 727159 0 -1 727159 0 ff ff ff ff 77 18 0b 00 00 00 00 00 ....w....... +267 0x00001204 control 12 22 717670 0 22 717670 0 16 00 00 00 66 f3 0a 00 00 00 00 00 ....f....... +268 0x00001210 data 22 18 2066843 0 2066843 0 196609 0 12 00 00 00 9b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +269 0x00001226 control 12 -2 82549 82566 -2 82549 82566 fe ff ff ff 75 42 01 00 86 42 01 00 ....uB...B.. +270 0x00001232 control 12 -1 727160 0 -1 727160 0 ff ff ff ff 78 18 0b 00 00 00 00 00 ....x....... +271 0x0000123e control 12 22 717671 0 22 717671 0 16 00 00 00 67 f3 0a 00 00 00 00 00 ....g....... +272 0x0000124a data 22 18 2066845 0 2066845 0 196609 0 12 00 00 00 9d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +273 0x00001260 control 12 -1 727161 0 -1 727161 0 ff ff ff ff 79 18 0b 00 00 00 00 00 ....y....... +274 0x0000126c control 12 52 717672 0 52 717672 0 34 00 00 00 68 f3 0a 00 00 00 00 00 4...h....... +275 0x00001278 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c3 10 02 00 00 00 00 00 00 00 1a 1b 8e 6c 4d 01 00 00 "0...Dk.................L."".([..................l" +276 0x000012ac control 12 -1 727162 0 -1 727162 0 ff ff ff ff 7a 18 0b 00 00 00 00 00 ....z....... +277 0x000012b8 control 12 26 717673 0 26 717673 0 1a 00 00 00 69 f3 0a 00 00 00 00 00 ....i....... +278 0x000012c4 data 26 22 2066847 0 2066847 0 196609 0 16 00 00 00 9f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +279 0x000012de control 12 -1 727163 0 -1 727163 0 ff ff ff ff 7b 18 0b 00 00 00 00 00 ....{....... +280 0x000012ea control 12 22 717674 0 22 717674 0 16 00 00 00 6a f3 0a 00 00 00 00 00 ....j....... +281 0x000012f6 data 22 18 2066849 0 2066849 0 196609 0 12 00 00 00 a1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +282 0x0000130c control 12 -1 727164 0 -1 727164 0 ff ff ff ff 7c 18 0b 00 00 00 00 00 ....|....... +283 0x00001318 control 12 22 717675 0 22 717675 0 16 00 00 00 6b f3 0a 00 00 00 00 00 ....k....... +284 0x00001324 data 22 18 2066851 0 2066851 0 196609 0 12 00 00 00 a3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +285 0x0000133a control 12 -1 727165 0 -1 727165 0 ff ff ff ff 7d 18 0b 00 00 00 00 00 ....}....... +286 0x00001346 control 12 22 717676 0 22 717676 0 16 00 00 00 6c f3 0a 00 00 00 00 00 ....l....... +287 0x00001352 data 22 18 2066853 0 2066853 0 196609 0 12 00 00 00 a5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +288 0x00001368 control 12 -1 727166 0 -1 727166 0 ff ff ff ff 7e 18 0b 00 00 00 00 00 ....~....... +289 0x00001374 control 12 52 717677 0 52 717677 0 34 00 00 00 6d f3 0a 00 00 00 00 00 4...m....... +290 0x00001380 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c4 10 02 00 00 00 00 00 00 00 b2 bf bc 6c 4d 01 00 00 "0...Dk.................L."".([..................l" +291 0x000013b4 control 12 -1 727167 0 -1 727167 0 ff ff ff ff 7f 18 0b 00 00 00 00 00 ............ +292 0x000013c0 control 12 26 717678 0 26 717678 0 1a 00 00 00 6e f3 0a 00 00 00 00 00 ....n....... +293 0x000013cc data 26 22 2066855 0 2066855 0 196609 0 16 00 00 00 a7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +294 0x000013e6 control 12 -1 727168 0 -1 727168 0 ff ff ff ff 80 18 0b 00 00 00 00 00 ............ +295 0x000013f2 control 12 22 717679 0 22 717679 0 16 00 00 00 6f f3 0a 00 00 00 00 00 ....o....... +296 0x000013fe data 22 18 2066857 0 2066857 0 196609 0 12 00 00 00 a9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +297 0x00001414 control 12 -2 82550 82567 -2 82550 82567 fe ff ff ff 76 42 01 00 87 42 01 00 ....vB...B.. +298 0x00001420 control 12 -1 727169 0 -1 727169 0 ff ff ff ff 81 18 0b 00 00 00 00 00 ............ +299 0x0000142c control 12 22 717680 0 22 717680 0 16 00 00 00 70 f3 0a 00 00 00 00 00 ....p....... +300 0x00001438 data 22 18 2066859 0 2066859 0 196609 0 12 00 00 00 ab 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +301 0x0000144e control 12 -1 727170 0 -1 727170 0 ff ff ff ff 82 18 0b 00 00 00 00 00 ............ +302 0x0000145a control 12 22 717681 0 22 717681 0 16 00 00 00 71 f3 0a 00 00 00 00 00 ....q....... +303 0x00001466 data 22 18 2066861 0 2066861 0 196609 0 12 00 00 00 ad 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +304 0x0000147c control 12 -1 727171 0 -1 727171 0 ff ff ff ff 83 18 0b 00 00 00 00 00 ............ +305 0x00001488 control 12 52 717682 0 52 717682 0 34 00 00 00 72 f3 0a 00 00 00 00 00 4...r....... +306 0x00001494 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c5 10 02 00 00 00 00 00 00 00 31 4c eb 6c 4d 01 00 00 "0...Dk.................L."".([...............1L.l" +307 0x000014c8 control 12 -1 727172 0 -1 727172 0 ff ff ff ff 84 18 0b 00 00 00 00 00 ............ +308 0x000014d4 control 12 26 717683 0 26 717683 0 1a 00 00 00 73 f3 0a 00 00 00 00 00 ....s....... +309 0x000014e0 data 26 22 2066863 0 2066863 0 196609 0 16 00 00 00 af 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +310 0x000014fa control 12 -1 727173 0 -1 727173 0 ff ff ff ff 85 18 0b 00 00 00 00 00 ............ +311 0x00001506 control 12 22 717684 0 22 717684 0 16 00 00 00 74 f3 0a 00 00 00 00 00 ....t....... +312 0x00001512 data 22 18 2066865 0 2066865 0 196609 0 12 00 00 00 b1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +313 0x00001528 control 12 -1 727174 0 -1 727174 0 ff ff ff ff 86 18 0b 00 00 00 00 00 ............ +314 0x00001534 control 12 22 717685 0 22 717685 0 16 00 00 00 75 f3 0a 00 00 00 00 00 ....u....... +315 0x00001540 data 22 18 2066867 0 2066867 0 196609 0 12 00 00 00 b3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +316 0x00001556 control 12 -1 727175 0 -1 727175 0 ff ff ff ff 87 18 0b 00 00 00 00 00 ............ +317 0x00001562 control 12 22 717686 0 22 717686 0 16 00 00 00 76 f3 0a 00 00 00 00 00 ....v....... +318 0x0000156e data 22 18 2066869 0 2066869 0 196609 0 12 00 00 00 b5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +319 0x00001584 control 12 -2 82551 82568 -2 82551 82568 fe ff ff ff 77 42 01 00 88 42 01 00 ....wB...B.. +320 0x00001590 control 12 -1 727176 0 -1 727176 0 ff ff ff ff 88 18 0b 00 00 00 00 00 ............ +321 0x0000159c control 12 52 717687 0 52 717687 0 34 00 00 00 77 f3 0a 00 00 00 00 00 4...w....... +322 0x000015a8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c6 10 02 00 00 00 00 00 00 00 6b cf 19 6d 4d 01 00 00 "0...Dk.................L."".([...............k..m" +323 0x000015dc control 12 -1 727177 0 -1 727177 0 ff ff ff ff 89 18 0b 00 00 00 00 00 ............ +324 0x000015e8 control 12 26 717688 0 26 717688 0 1a 00 00 00 78 f3 0a 00 00 00 00 00 ....x....... +325 0x000015f4 data 26 22 2066871 0 2066871 0 196609 0 16 00 00 00 b7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +326 0x0000160e control 12 -1 727178 0 -1 727178 0 ff ff ff ff 8a 18 0b 00 00 00 00 00 ............ +327 0x0000161a control 12 22 717689 0 22 717689 0 16 00 00 00 79 f3 0a 00 00 00 00 00 ....y....... +328 0x00001626 data 22 18 2066873 0 2066873 0 196609 0 12 00 00 00 b9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +329 0x0000163c control 12 -1 727179 0 -1 727179 0 ff ff ff ff 8b 18 0b 00 00 00 00 00 ............ +330 0x00001648 control 12 22 717690 0 22 717690 0 16 00 00 00 7a f3 0a 00 00 00 00 00 ....z....... +331 0x00001654 data 22 18 2066875 0 2066875 0 196609 0 12 00 00 00 bb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +332 0x0000166a control 12 -1 727180 0 -1 727180 0 ff ff ff ff 8c 18 0b 00 00 00 00 00 ............ +333 0x00001676 control 12 22 717691 0 22 717691 0 16 00 00 00 7b f3 0a 00 00 00 00 00 ....{....... +334 0x00001682 data 22 18 2066877 0 2066877 0 196609 0 12 00 00 00 bd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +335 0x00001698 control 12 -1 727181 0 -1 727181 0 ff ff ff ff 8d 18 0b 00 00 00 00 00 ............ +336 0x000016a4 control 12 -1 727182 0 -1 727182 0 ff ff ff ff 8e 18 0b 00 00 00 00 00 ............ +337 0x000016b0 control 12 52 717692 0 52 717692 0 34 00 00 00 7c f3 0a 00 00 00 00 00 4...|....... +338 0x000016bc data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c7 10 02 00 00 00 00 00 00 00 b8 65 48 6d 4d 01 00 00 "0...Dk.................L."".([................eHm" +339 0x000016f0 control 12 -1 727183 0 -1 727183 0 ff ff ff ff 8f 18 0b 00 00 00 00 00 ............ +340 0x000016fc control 12 26 717693 0 26 717693 0 1a 00 00 00 7d f3 0a 00 00 00 00 00 ....}....... +341 0x00001708 data 26 22 2066879 0 2066879 0 196609 0 16 00 00 00 bf 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +342 0x00001722 control 12 -1 727184 0 -1 727184 0 ff ff ff ff 90 18 0b 00 00 00 00 00 ............ +343 0x0000172e control 12 22 717694 0 22 717694 0 16 00 00 00 7e f3 0a 00 00 00 00 00 ....~....... +344 0x0000173a data 22 18 2066881 0 2066881 0 196609 0 12 00 00 00 c1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +345 0x00001750 control 12 -2 82552 82569 -2 82552 82569 fe ff ff ff 78 42 01 00 89 42 01 00 ....xB...B.. +346 0x0000175c control 12 -1 727185 0 -1 727185 0 ff ff ff ff 91 18 0b 00 00 00 00 00 ............ +347 0x00001768 control 12 22 717695 0 22 717695 0 16 00 00 00 7f f3 0a 00 00 00 00 00 ............ +348 0x00001774 data 22 18 2066883 0 2066883 0 196609 0 12 00 00 00 c3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +349 0x0000178a control 12 -1 727186 0 -1 727186 0 ff ff ff ff 92 18 0b 00 00 00 00 00 ............ +350 0x00001796 control 12 22 717696 0 22 717696 0 16 00 00 00 80 f3 0a 00 00 00 00 00 ............ +351 0x000017a2 data 22 18 2066885 0 2066885 0 196609 0 12 00 00 00 c5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +352 0x000017b8 control 12 -1 727187 0 -1 727187 0 ff ff ff ff 93 18 0b 00 00 00 00 00 ............ +353 0x000017c4 control 12 52 717697 0 52 717697 0 34 00 00 00 81 f3 0a 00 00 00 00 00 4........... +354 0x000017d0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c8 10 02 00 00 00 00 00 00 00 48 fd 76 6d 4d 01 00 00 "0...Dk.................L."".([...............H.vm" +355 0x00001804 control 12 -1 727188 0 -1 727188 0 ff ff ff ff 94 18 0b 00 00 00 00 00 ............ +356 0x00001810 control 12 26 717698 0 26 717698 0 1a 00 00 00 82 f3 0a 00 00 00 00 00 ............ +357 0x0000181c data 26 22 2066887 0 2066887 0 196609 0 16 00 00 00 c7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +358 0x00001836 control 12 -1 727189 0 -1 727189 0 ff ff ff ff 95 18 0b 00 00 00 00 00 ............ +359 0x00001842 control 12 22 717699 0 22 717699 0 16 00 00 00 83 f3 0a 00 00 00 00 00 ............ +360 0x0000184e data 22 18 2066889 0 2066889 0 196609 0 12 00 00 00 c9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +361 0x00001864 control 12 -1 727190 0 -1 727190 0 ff ff ff ff 96 18 0b 00 00 00 00 00 ............ +362 0x00001870 control 12 22 717700 0 22 717700 0 16 00 00 00 84 f3 0a 00 00 00 00 00 ............ +363 0x0000187c data 22 18 2066891 0 2066891 0 196609 0 12 00 00 00 cb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +364 0x00001892 control 12 -1 727191 0 -1 727191 0 ff ff ff ff 97 18 0b 00 00 00 00 00 ............ +365 0x0000189e control 12 22 717701 0 22 717701 0 16 00 00 00 85 f3 0a 00 00 00 00 00 ............ +366 0x000018aa data 22 18 2066893 0 2066893 0 196609 0 12 00 00 00 cd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +367 0x000018c0 control 12 -1 727192 0 -1 727192 0 ff ff ff ff 98 18 0b 00 00 00 00 00 ............ +368 0x000018cc control 12 52 717702 0 52 717702 0 34 00 00 00 86 f3 0a 00 00 00 00 00 4........... +369 0x000018d8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c9 10 02 00 00 00 00 00 00 00 8b 87 a5 6d 4d 01 00 00 "0...Dk.................L."".([..................m" +370 0x0000190c control 12 -1 727193 0 -1 727193 0 ff ff ff ff 99 18 0b 00 00 00 00 00 ............ +371 0x00001918 control 12 26 717703 0 26 717703 0 1a 00 00 00 87 f3 0a 00 00 00 00 00 ............ +372 0x00001924 data 26 22 2066895 0 2066895 0 196609 0 16 00 00 00 cf 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +373 0x0000193e control 12 -2 82553 82570 -2 82553 82570 fe ff ff ff 79 42 01 00 8a 42 01 00 ....yB...B.. +374 0x0000194a control 12 -1 727194 0 -1 727194 0 ff ff ff ff 9a 18 0b 00 00 00 00 00 ............ +375 0x00001956 control 12 22 717704 0 22 717704 0 16 00 00 00 88 f3 0a 00 00 00 00 00 ............ +376 0x00001962 data 22 18 2066897 0 2066897 0 196609 0 12 00 00 00 d1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +377 0x00001978 control 12 -1 727195 0 -1 727195 0 ff ff ff ff 9b 18 0b 00 00 00 00 00 ............ +378 0x00001984 control 12 22 717705 0 22 717705 0 16 00 00 00 89 f3 0a 00 00 00 00 00 ............ +379 0x00001990 data 22 18 2066899 0 2066899 0 196609 0 12 00 00 00 d3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +380 0x000019a6 control 12 -1 727196 0 -1 727196 0 ff ff ff ff 9c 18 0b 00 00 00 00 00 ............ +381 0x000019b2 control 12 22 717706 0 22 717706 0 16 00 00 00 8a f3 0a 00 00 00 00 00 ............ +382 0x000019be data 22 18 2066901 0 2066901 0 196609 0 12 00 00 00 d5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +383 0x000019d4 control 12 -1 727197 0 -1 727197 0 ff ff ff ff 9d 18 0b 00 00 00 00 00 ............ +384 0x000019e0 control 12 52 717707 0 52 717707 0 34 00 00 00 8b f3 0a 00 00 00 00 00 4........... +385 0x000019ec data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ca 10 02 00 00 00 00 00 00 00 2d 1a d4 6d 4d 01 00 00 "0...Dk.................L."".([...............-..m" +386 0x00001a20 control 12 -1 727198 0 -1 727198 0 ff ff ff ff 9e 18 0b 00 00 00 00 00 ............ +387 0x00001a2c control 12 26 717708 0 26 717708 0 1a 00 00 00 8c f3 0a 00 00 00 00 00 ............ +388 0x00001a38 data 26 22 2066903 0 2066903 0 196609 0 16 00 00 00 d7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +389 0x00001a52 control 12 -1 727199 0 -1 727199 0 ff ff ff ff 9f 18 0b 00 00 00 00 00 ............ +390 0x00001a5e control 12 22 717709 0 22 717709 0 16 00 00 00 8d f3 0a 00 00 00 00 00 ............ +391 0x00001a6a data 22 18 2066905 0 2066905 0 196609 0 12 00 00 00 d9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +392 0x00001a80 control 12 -1 727200 0 -1 727200 0 ff ff ff ff a0 18 0b 00 00 00 00 00 ............ +393 0x00001a8c control 12 22 717710 0 22 717710 0 16 00 00 00 8e f3 0a 00 00 00 00 00 ............ +394 0x00001a98 data 22 18 2066907 0 2066907 0 196609 0 12 00 00 00 db 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +395 0x00001aae control 12 -2 82554 82571 -2 82554 82571 fe ff ff ff 7a 42 01 00 8b 42 01 00 ....zB...B.. +396 0x00001aba control 12 -1 727201 0 -1 727201 0 ff ff ff ff a1 18 0b 00 00 00 00 00 ............ +397 0x00001ac6 control 12 22 717711 0 22 717711 0 16 00 00 00 8f f3 0a 00 00 00 00 00 ............ +398 0x00001ad2 data 22 18 2066909 0 2066909 0 196609 0 12 00 00 00 dd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +399 0x00001ae8 control 12 -1 727202 0 -1 727202 0 ff ff ff ff a2 18 0b 00 00 00 00 00 ............ +400 0x00001af4 control 12 -1 727203 0 -1 727203 0 ff ff ff ff a3 18 0b 00 00 00 00 00 ............ +401 0x00001b00 control 12 52 717712 0 52 717712 0 34 00 00 00 90 f3 0a 00 00 00 00 00 4........... +402 0x00001b0c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cb 10 02 00 00 00 00 00 00 00 60 94 02 6e 4d 01 00 00 "0...Dk.................L."".([...............`..n" +403 0x00001b40 control 12 -1 727204 0 -1 727204 0 ff ff ff ff a4 18 0b 00 00 00 00 00 ............ +404 0x00001b4c control 12 26 717713 0 26 717713 0 1a 00 00 00 91 f3 0a 00 00 00 00 00 ............ +405 0x00001b58 data 26 22 2066911 0 2066911 0 196609 0 16 00 00 00 df 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +406 0x00001b72 control 12 -1 727205 0 -1 727205 0 ff ff ff ff a5 18 0b 00 00 00 00 00 ............ +407 0x00001b7e control 12 22 717714 0 22 717714 0 16 00 00 00 92 f3 0a 00 00 00 00 00 ............ +408 0x00001b8a data 22 18 2066913 0 2066913 0 196609 0 12 00 00 00 e1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +409 0x00001ba0 control 12 -1 727206 0 -1 727206 0 ff ff ff ff a6 18 0b 00 00 00 00 00 ............ +410 0x00001bac control 12 22 717715 0 22 717715 0 16 00 00 00 93 f3 0a 00 00 00 00 00 ............ +411 0x00001bb8 data 22 18 2066915 0 2066915 0 196609 0 12 00 00 00 e3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +412 0x00001bce control 12 -1 727207 0 -1 727207 0 ff ff ff ff a7 18 0b 00 00 00 00 00 ............ +413 0x00001bda control 12 22 717716 0 22 717716 0 16 00 00 00 94 f3 0a 00 00 00 00 00 ............ +414 0x00001be6 data 22 18 2066917 0 2066917 0 196609 0 12 00 00 00 e5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +415 0x00001bfc control 12 -1 727208 0 -1 727208 0 ff ff ff ff a8 18 0b 00 00 00 00 00 ............ +416 0x00001c08 control 12 52 717717 0 52 717717 0 34 00 00 00 95 f3 0a 00 00 00 00 00 4........... +417 0x00001c14 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cc 10 02 00 00 00 00 00 00 00 c2 ee 30 6e 4d 01 00 00 "0...Dk.................L."".([.................0n" +418 0x00001c48 control 12 -1 727209 0 -1 727209 0 ff ff ff ff a9 18 0b 00 00 00 00 00 ............ +419 0x00001c54 control 12 26 717718 0 26 717718 0 1a 00 00 00 96 f3 0a 00 00 00 00 00 ............ +420 0x00001c60 data 26 22 2066919 0 2066919 0 196609 0 16 00 00 00 e7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +421 0x00001c7a control 12 -1 727210 0 -1 727210 0 ff ff ff ff aa 18 0b 00 00 00 00 00 ............ +422 0x00001c86 control 12 22 717719 0 22 717719 0 16 00 00 00 97 f3 0a 00 00 00 00 00 ............ +423 0x00001c92 data 22 18 2066921 0 2066921 0 196609 0 12 00 00 00 e9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +424 0x00001ca8 control 12 -2 82555 82572 -2 82555 82572 fe ff ff ff 7b 42 01 00 8c 42 01 00 ....{B...B.. +425 0x00001cb4 control 12 -1 727211 0 -1 727211 0 ff ff ff ff ab 18 0b 00 00 00 00 00 ............ +426 0x00001cc0 control 12 22 717720 0 22 717720 0 16 00 00 00 98 f3 0a 00 00 00 00 00 ............ +427 0x00001ccc data 22 18 2066923 0 2066923 0 196609 0 12 00 00 00 eb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +428 0x00001ce2 control 12 -1 727212 0 -1 727212 0 ff ff ff ff ac 18 0b 00 00 00 00 00 ............ +429 0x00001cee control 12 22 717721 0 22 717721 0 16 00 00 00 99 f3 0a 00 00 00 00 00 ............ +430 0x00001cfa data 22 18 2066925 0 2066925 0 196609 0 12 00 00 00 ed 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +431 0x00001d10 control 12 -1 727213 0 -1 727213 0 ff ff ff ff ad 18 0b 00 00 00 00 00 ............ +432 0x00001d1c control 12 52 717722 0 52 717722 0 34 00 00 00 9a f3 0a 00 00 00 00 00 4........... +433 0x00001d28 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cd 10 02 00 00 00 00 00 00 00 aa 92 5f 6e 4d 01 00 00 "0...Dk.................L."".([................._n" +434 0x00001d5c control 12 -1 727214 0 -1 727214 0 ff ff ff ff ae 18 0b 00 00 00 00 00 ............ +435 0x00001d68 control 12 26 717723 0 26 717723 0 1a 00 00 00 9b f3 0a 00 00 00 00 00 ............ +436 0x00001d74 data 26 22 2066927 0 2066927 0 196609 0 16 00 00 00 ef 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +437 0x00001d8e control 12 -1 727215 0 -1 727215 0 ff ff ff ff af 18 0b 00 00 00 00 00 ............ +438 0x00001d9a control 12 22 717724 0 22 717724 0 16 00 00 00 9c f3 0a 00 00 00 00 00 ............ +439 0x00001da6 data 22 18 2066929 0 2066929 0 196609 0 12 00 00 00 f1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +440 0x00001dbc control 12 -1 727216 0 -1 727216 0 ff ff ff ff b0 18 0b 00 00 00 00 00 ............ +441 0x00001dc8 control 12 22 717725 0 22 717725 0 16 00 00 00 9d f3 0a 00 00 00 00 00 ............ +442 0x00001dd4 data 22 18 2066931 0 2066931 0 196609 0 12 00 00 00 f3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +443 0x00001dea control 12 -1 727217 0 -1 727217 0 ff ff ff ff b1 18 0b 00 00 00 00 00 ............ +444 0x00001df6 control 12 22 717726 0 22 717726 0 16 00 00 00 9e f3 0a 00 00 00 00 00 ............ +445 0x00001e02 data 22 18 2066933 0 2066933 0 196609 0 12 00 00 00 f5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +446 0x00001e18 control 12 -1 727218 0 -1 727218 0 ff ff ff ff b2 18 0b 00 00 00 00 00 ............ +447 0x00001e24 control 12 52 717727 0 52 717727 0 34 00 00 00 9f f3 0a 00 00 00 00 00 4........... +448 0x00001e30 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ce 10 02 00 00 00 00 00 00 00 43 fd 8d 6e 4d 01 00 00 "0...Dk.................L."".([...............C..n" +449 0x00001e64 control 12 -1 727219 0 -1 727219 0 ff ff ff ff b3 18 0b 00 00 00 00 00 ............ +450 0x00001e70 control 12 26 717728 0 26 717728 0 1a 00 00 00 a0 f3 0a 00 00 00 00 00 ............ +451 0x00001e7c data 26 22 2066935 0 2066935 0 196609 0 16 00 00 00 f7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +452 0x00001e96 control 12 -2 82556 82573 -2 82556 82573 fe ff ff ff 7c 42 01 00 8d 42 01 00 ....|B...B.. +453 0x00001ea2 control 12 -1 727220 0 -1 727220 0 ff ff ff ff b4 18 0b 00 00 00 00 00 ............ +454 0x00001eae control 12 22 717729 0 22 717729 0 16 00 00 00 a1 f3 0a 00 00 00 00 00 ............ +455 0x00001eba data 22 18 2066937 0 2066937 0 196609 0 12 00 00 00 f9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +456 0x00001ed0 control 12 -1 727221 0 -1 727221 0 ff ff ff ff b5 18 0b 00 00 00 00 00 ............ +457 0x00001edc control 12 22 717730 0 22 717730 0 16 00 00 00 a2 f3 0a 00 00 00 00 00 ............ +458 0x00001ee8 data 22 18 2066939 0 2066939 0 196609 0 12 00 00 00 fb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +459 0x00001efe control 12 -1 727222 0 -1 727222 0 ff ff ff ff b6 18 0b 00 00 00 00 00 ............ +460 0x00001f0a control 12 -1 727223 0 -1 727223 0 ff ff ff ff b7 18 0b 00 00 00 00 00 ............ +461 0x00001f16 control 12 22 717731 0 22 717731 0 16 00 00 00 a3 f3 0a 00 00 00 00 00 ............ +462 0x00001f22 data 22 18 2066941 0 2066941 0 196609 0 12 00 00 00 fd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +463 0x00001f38 control 12 52 717732 0 52 717732 0 34 00 00 00 a4 f3 0a 00 00 00 00 00 4........... +464 0x00001f44 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cf 10 02 00 00 00 00 00 00 00 23 5f bc 6e 4d 01 00 00 "0...Dk.................L."".([...............#_.n" +465 0x00001f78 control 12 -1 727224 0 -1 727224 0 ff ff ff ff b8 18 0b 00 00 00 00 00 ............ +466 0x00001f84 control 12 26 717733 0 26 717733 0 1a 00 00 00 a5 f3 0a 00 00 00 00 00 ............ +467 0x00001f90 data 26 22 2066943 0 2066943 0 196609 0 16 00 00 00 ff 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +468 0x00001faa control 12 -1 727225 0 -1 727225 0 ff ff ff ff b9 18 0b 00 00 00 00 00 ............ +469 0x00001fb6 control 12 22 717734 0 22 717734 0 16 00 00 00 a6 f3 0a 00 00 00 00 00 ............ +470 0x00001fc2 data 22 18 2066945 0 2066945 0 196609 0 12 00 00 00 01 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +471 0x00001fd8 control 12 -1 727226 0 -1 727226 0 ff ff ff ff ba 18 0b 00 00 00 00 00 ............ +472 0x00001fe4 control 12 22 717735 0 22 717735 0 16 00 00 00 a7 f3 0a 00 00 00 00 00 ............ +473 0x00001ff0 data 22 18 2066947 0 2066947 0 196609 0 12 00 00 00 03 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +474 0x00002006 control 12 -2 82557 82574 -2 82557 82574 fe ff ff ff 7d 42 01 00 8e 42 01 00 ....}B...B.. +475 0x00002012 control 12 -1 727227 0 -1 727227 0 ff ff ff ff bb 18 0b 00 00 00 00 00 ............ +476 0x0000201e control 12 -1 727228 0 -1 727228 0 ff ff ff ff bc 18 0b 00 00 00 00 00 ............ +477 0x0000202a control 12 52 717736 0 52 717736 0 34 00 00 00 a8 f3 0a 00 00 00 00 00 4........... +478 0x00002036 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d0 10 02 00 00 00 00 00 00 00 8a e6 ea 6e 4d 01 00 00 "0...Dk.................L."".([..................n" +479 0x0000206a control 12 -1 727229 0 -1 727229 0 ff ff ff ff bd 18 0b 00 00 00 00 00 ............ +480 0x00002076 control 12 -1 727230 0 -1 727230 0 ff ff ff ff be 18 0b 00 00 00 00 00 ............ +481 0x00002082 control 12 26 717737 0 26 717737 0 1a 00 00 00 a9 f3 0a 00 00 00 00 00 ............ +482 0x0000208e data 26 22 2066949 0 2066949 0 196609 0 16 00 00 00 05 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +483 0x000020a8 control 12 22 717738 0 22 717738 0 16 00 00 00 aa f3 0a 00 00 00 00 00 ............ +484 0x000020b4 data 22 18 2066951 0 2066951 0 196609 0 12 00 00 00 07 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +485 0x000020ca control 12 -1 727231 0 -1 727231 0 ff ff ff ff bf 18 0b 00 00 00 00 00 ............ +486 0x000020d6 control 12 22 717739 0 22 717739 0 16 00 00 00 ab f3 0a 00 00 00 00 00 ............ +487 0x000020e2 data 22 18 2066953 0 2066953 0 196609 0 12 00 00 00 09 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +488 0x000020f8 control 12 -1 727232 0 -1 727232 0 ff ff ff ff c0 18 0b 00 00 00 00 00 ............ +489 0x00002104 control 12 22 717740 0 22 717740 0 16 00 00 00 ac f3 0a 00 00 00 00 00 ............ +490 0x00002110 data 22 18 2066955 0 2066955 0 196609 0 12 00 00 00 0b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +491 0x00002126 control 12 -1 727233 0 -1 727233 0 ff ff ff ff c1 18 0b 00 00 00 00 00 ............ +492 0x00002132 control 12 -1 727234 0 -1 727234 0 ff ff ff ff c2 18 0b 00 00 00 00 00 ............ +493 0x0000213e control 12 52 717741 0 52 717741 0 34 00 00 00 ad f3 0a 00 00 00 00 00 4........... +494 0x0000214a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d1 10 02 00 00 00 00 00 00 00 6e 7d 19 6f 4d 01 00 00 "0...Dk.................L."".([...............n}.o" +495 0x0000217e control 12 -1 727235 0 -1 727235 0 ff ff ff ff c3 18 0b 00 00 00 00 00 ............ +496 0x0000218a control 12 26 717742 0 26 717742 0 1a 00 00 00 ae f3 0a 00 00 00 00 00 ............ +497 0x00002196 data 26 22 2066957 0 2066957 0 196609 0 16 00 00 00 0d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +498 0x000021b0 control 12 -1 727236 0 -1 727236 0 ff ff ff ff c4 18 0b 00 00 00 00 00 ............ +499 0x000021bc control 12 22 717743 0 22 717743 0 16 00 00 00 af f3 0a 00 00 00 00 00 ............ +500 0x000021c8 data 22 18 2066959 0 2066959 0 196609 0 12 00 00 00 0f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +501 0x000021de control 12 -1 727237 0 -1 727237 0 ff ff ff ff c5 18 0b 00 00 00 00 00 ............ +502 0x000021ea control 12 -2 82558 82575 -2 82558 82575 fe ff ff ff 7e 42 01 00 8f 42 01 00 ....~B...B.. +503 0x000021f6 control 12 22 717744 0 22 717744 0 16 00 00 00 b0 f3 0a 00 00 00 00 00 ............ +504 0x00002202 data 22 18 2066961 0 2066961 0 196609 0 12 00 00 00 11 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +505 0x00002218 control 12 -1 727238 0 -1 727238 0 ff ff ff ff c6 18 0b 00 00 00 00 00 ............ +506 0x00002224 control 12 22 717745 0 22 717745 0 16 00 00 00 b1 f3 0a 00 00 00 00 00 ............ +507 0x00002230 data 22 18 2066963 0 2066963 0 196609 0 12 00 00 00 13 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +508 0x00002246 control 12 -1 727239 0 -1 727239 0 ff ff ff ff c7 18 0b 00 00 00 00 00 ............ +509 0x00002252 control 12 -1 727240 0 -1 727240 0 ff ff ff ff c8 18 0b 00 00 00 00 00 ............ +510 0x0000225e control 12 52 717746 0 52 717746 0 34 00 00 00 b2 f3 0a 00 00 00 00 00 4........... +511 0x0000226a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d2 10 02 00 00 00 00 00 00 00 42 08 48 6f 4d 01 00 00 "0...Dk.................L."".([...............B.Ho" +512 0x0000229e control 12 -1 727241 0 -1 727241 0 ff ff ff ff c9 18 0b 00 00 00 00 00 ............ +513 0x000022aa control 12 26 717747 0 26 717747 0 1a 00 00 00 b3 f3 0a 00 00 00 00 00 ............ +514 0x000022b6 data 26 22 2066965 0 2066965 0 196609 0 16 00 00 00 15 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +515 0x000022d0 control 12 -1 727242 0 -1 727242 0 ff ff ff ff ca 18 0b 00 00 00 00 00 ............ +516 0x000022dc control 12 22 717748 0 22 717748 0 16 00 00 00 b4 f3 0a 00 00 00 00 00 ............ +517 0x000022e8 data 22 18 2066967 0 2066967 0 196609 0 12 00 00 00 17 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +518 0x000022fe control 12 -1 727243 0 -1 727243 0 ff ff ff ff cb 18 0b 00 00 00 00 00 ............ +519 0x0000230a control 12 22 717749 0 22 717749 0 16 00 00 00 b5 f3 0a 00 00 00 00 00 ............ +520 0x00002316 data 22 18 2066969 0 2066969 0 196609 0 12 00 00 00 19 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +521 0x0000232c control 12 -1 727244 0 -1 727244 0 ff ff ff ff cc 18 0b 00 00 00 00 00 ............ +522 0x00002338 control 12 22 717750 0 22 717750 0 16 00 00 00 b6 f3 0a 00 00 00 00 00 ............ +523 0x00002344 data 22 18 2066971 0 2066971 0 196609 0 12 00 00 00 1b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +524 0x0000235a control 12 -1 727245 0 -1 727245 0 ff ff ff ff cd 18 0b 00 00 00 00 00 ............ +525 0x00002366 control 12 52 717751 0 52 717751 0 34 00 00 00 b7 f3 0a 00 00 00 00 00 4........... +526 0x00002372 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d3 10 02 00 00 00 00 00 00 00 9f 6b 76 6f 4d 01 00 00 "0...Dk.................L."".([................kvo" +527 0x000023a6 control 12 -1 727246 0 -1 727246 0 ff ff ff ff ce 18 0b 00 00 00 00 00 ............ +528 0x000023b2 control 12 -2 82559 82576 -2 82559 82576 fe ff ff ff 7f 42 01 00 90 42 01 00 .....B...B.. +529 0x000023be control 12 26 717752 0 26 717752 0 1a 00 00 00 b8 f3 0a 00 00 00 00 00 ............ +530 0x000023ca data 26 22 2066973 0 2066973 0 196609 0 16 00 00 00 1d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +531 0x000023e4 control 12 -1 727247 0 -1 727247 0 ff ff ff ff cf 18 0b 00 00 00 00 00 ............ +532 0x000023f0 control 12 22 717753 0 22 717753 0 16 00 00 00 b9 f3 0a 00 00 00 00 00 ............ +533 0x000023fc data 22 18 2066975 0 2066975 0 196609 0 12 00 00 00 1f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +534 0x00002412 control 12 -1 727248 0 -1 727248 0 ff ff ff ff d0 18 0b 00 00 00 00 00 ............ +535 0x0000241e control 12 22 717754 0 22 717754 0 16 00 00 00 ba f3 0a 00 00 00 00 00 ............ +536 0x0000242a data 22 18 2066977 0 2066977 0 196609 0 12 00 00 00 21 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +537 0x00002440 control 12 -1 727249 0 -1 727249 0 ff ff ff ff d1 18 0b 00 00 00 00 00 ............ +538 0x0000244c control 12 22 717755 0 22 717755 0 16 00 00 00 bb f3 0a 00 00 00 00 00 ............ +539 0x00002458 data 22 18 2066979 0 2066979 0 196609 0 12 00 00 00 23 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +540 0x0000246e control 12 -1 727250 0 -1 727250 0 ff ff ff ff d2 18 0b 00 00 00 00 00 ............ +541 0x0000247a control 12 52 717756 0 52 717756 0 34 00 00 00 bc f3 0a 00 00 00 00 00 4........... +542 0x00002486 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d4 10 02 00 00 00 00 00 00 00 2f c8 a4 6f 4d 01 00 00 "0...Dk.................L."".([.............../..o" +543 0x000024ba control 12 -1 727251 0 -1 727251 0 ff ff ff ff d3 18 0b 00 00 00 00 00 ............ +544 0x000024c6 control 12 26 717757 0 26 717757 0 1a 00 00 00 bd f3 0a 00 00 00 00 00 ............ +545 0x000024d2 data 26 22 2066981 0 2066981 0 196609 0 16 00 00 00 25 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +546 0x000024ec control 12 -1 727252 0 -1 727252 0 ff ff ff ff d4 18 0b 00 00 00 00 00 ............ +547 0x000024f8 control 12 22 717758 0 22 717758 0 16 00 00 00 be f3 0a 00 00 00 00 00 ............ +548 0x00002504 data 22 18 2066983 0 2066983 0 196609 0 12 00 00 00 27 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +549 0x0000251a control 12 -1 727253 0 -1 727253 0 ff ff ff ff d5 18 0b 00 00 00 00 00 ............ +550 0x00002526 control 12 22 717759 0 22 717759 0 16 00 00 00 bf f3 0a 00 00 00 00 00 ............ +551 0x00002532 data 22 18 2066985 0 2066985 0 196609 0 12 00 00 00 29 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +552 0x00002548 control 12 -2 82560 82577 -2 82560 82577 fe ff ff ff 80 42 01 00 91 42 01 00 .....B...B.. +553 0x00002554 control 12 -1 727254 0 -1 727254 0 ff ff ff ff d6 18 0b 00 00 00 00 00 ............ +554 0x00002560 control 12 22 717760 0 22 717760 0 16 00 00 00 c0 f3 0a 00 00 00 00 00 ............ +555 0x0000256c data 22 18 2066987 0 2066987 0 196609 0 12 00 00 00 2b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +556 0x00002582 control 12 -1 727255 0 -1 727255 0 ff ff ff ff d7 18 0b 00 00 00 00 00 ............ +557 0x0000258e control 12 52 717761 0 52 717761 0 34 00 00 00 c1 f3 0a 00 00 00 00 00 4........... +558 0x0000259a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d5 10 02 00 00 00 00 00 00 00 6a 19 d3 6f 4d 01 00 00 "0...Dk.................L."".([...............j..o" +559 0x000025ce control 12 -1 727256 0 -1 727256 0 ff ff ff ff d8 18 0b 00 00 00 00 00 ............ +560 0x000025da control 12 26 717762 0 26 717762 0 1a 00 00 00 c2 f3 0a 00 00 00 00 00 ............ +561 0x000025e6 data 26 22 2066989 0 2066989 0 196609 0 16 00 00 00 2d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +562 0x00002600 control 12 -1 727257 0 -1 727257 0 ff ff ff ff d9 18 0b 00 00 00 00 00 ............ +563 0x0000260c control 12 22 717763 0 22 717763 0 16 00 00 00 c3 f3 0a 00 00 00 00 00 ............ +564 0x00002618 data 22 18 2066991 0 2066991 0 196609 0 12 00 00 00 2f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +565 0x0000262e control 12 -1 727258 0 -1 727258 0 ff ff ff ff da 18 0b 00 00 00 00 00 ............ +566 0x0000263a control 12 22 717764 0 22 717764 0 16 00 00 00 c4 f3 0a 00 00 00 00 00 ............ +567 0x00002646 data 22 18 2066993 0 2066993 0 196609 0 12 00 00 00 31 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +568 0x0000265c control 12 -1 727259 0 -1 727259 0 ff ff ff ff db 18 0b 00 00 00 00 00 ............ +569 0x00002668 control 12 22 717765 0 22 717765 0 16 00 00 00 c5 f3 0a 00 00 00 00 00 ............ +570 0x00002674 data 22 18 2066995 0 2066995 0 196609 0 12 00 00 00 33 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +571 0x0000268a control 12 -1 727260 0 -1 727260 0 ff ff ff ff dc 18 0b 00 00 00 00 00 ............ +572 0x00002696 control 12 -1 727261 0 -1 727261 0 ff ff ff ff dd 18 0b 00 00 00 00 00 ............ +573 0x000026a2 control 12 52 717766 0 52 717766 0 34 00 00 00 c6 f3 0a 00 00 00 00 00 4........... +574 0x000026ae data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d6 10 02 00 00 00 00 00 00 00 dc a9 01 70 4d 01 00 00 "0...Dk.................L."".([..................p" +575 0x000026e2 control 12 -1 727262 0 -1 727262 0 ff ff ff ff de 18 0b 00 00 00 00 00 ............ +576 0x000026ee control 12 26 717767 0 26 717767 0 1a 00 00 00 c7 f3 0a 00 00 00 00 00 ............ +577 0x000026fa data 26 22 2066997 0 2066997 0 196609 0 16 00 00 00 35 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +578 0x00002714 control 12 -1 727263 0 -1 727263 0 ff ff ff ff df 18 0b 00 00 00 00 00 ............ +579 0x00002720 control 12 22 717768 0 22 717768 0 16 00 00 00 c8 f3 0a 00 00 00 00 00 ............ +580 0x0000272c data 22 18 2066999 0 2066999 0 196609 0 12 00 00 00 37 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +581 0x00002742 control 12 -2 82561 82578 -2 82561 82578 fe ff ff ff 81 42 01 00 92 42 01 00 .....B...B.. +582 0x0000274e control 12 -1 727264 0 -1 727264 0 ff ff ff ff e0 18 0b 00 00 00 00 00 ............ +583 0x0000275a control 12 22 717769 0 22 717769 0 16 00 00 00 c9 f3 0a 00 00 00 00 00 ............ +584 0x00002766 data 22 18 2067001 0 2067001 0 196609 0 12 00 00 00 39 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +585 0x0000277c control 12 -1 727265 0 -1 727265 0 ff ff ff ff e1 18 0b 00 00 00 00 00 ............ +586 0x00002788 control 12 22 717770 0 22 717770 0 16 00 00 00 ca f3 0a 00 00 00 00 00 ............ +587 0x00002794 data 22 18 2067003 0 2067003 0 196609 0 12 00 00 00 3b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +588 0x000027aa control 12 -1 727266 0 -1 727266 0 ff ff ff ff e2 18 0b 00 00 00 00 00 ............ +589 0x000027b6 control 12 52 717771 0 52 717771 0 34 00 00 00 cb f3 0a 00 00 00 00 00 4........... +590 0x000027c2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d7 10 02 00 00 00 00 00 00 00 ce 1a 30 70 4d 01 00 00 "0...Dk.................L."".([.................0p" +591 0x000027f6 control 12 -1 727267 0 -1 727267 0 ff ff ff ff e3 18 0b 00 00 00 00 00 ............ +592 0x00002802 control 12 26 717772 0 26 717772 0 1a 00 00 00 cc f3 0a 00 00 00 00 00 ............ +593 0x0000280e data 26 22 2067005 0 2067005 0 196609 0 16 00 00 00 3d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +594 0x00002828 control 12 -1 727268 0 -1 727268 0 ff ff ff ff e4 18 0b 00 00 00 00 00 ............ +595 0x00002834 control 12 22 717773 0 22 717773 0 16 00 00 00 cd f3 0a 00 00 00 00 00 ............ +596 0x00002840 data 22 18 2067007 0 2067007 0 196609 0 12 00 00 00 3f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +597 0x00002856 control 12 -1 727269 0 -1 727269 0 ff ff ff ff e5 18 0b 00 00 00 00 00 ............ +598 0x00002862 control 12 22 717774 0 22 717774 0 16 00 00 00 ce f3 0a 00 00 00 00 00 ............ +599 0x0000286e data 22 18 2067009 0 2067009 0 196609 0 12 00 00 00 41 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +600 0x00002884 control 12 -1 727270 0 -1 727270 0 ff ff ff ff e6 18 0b 00 00 00 00 00 ............ +601 0x00002890 control 12 22 717775 0 22 717775 0 16 00 00 00 cf f3 0a 00 00 00 00 00 ............ +602 0x0000289c data 22 18 2067011 0 2067011 0 196609 0 12 00 00 00 43 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +603 0x000028b2 control 12 -2 82562 82579 -2 82562 82579 fe ff ff ff 82 42 01 00 93 42 01 00 .....B...B.. +604 0x000028be control 12 -1 727271 0 -1 727271 0 ff ff ff ff e7 18 0b 00 00 00 00 00 ............ +605 0x000028ca control 12 52 717776 0 52 717776 0 34 00 00 00 d0 f3 0a 00 00 00 00 00 4........... +606 0x000028d6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d8 10 02 00 00 00 00 00 00 00 d0 8c 5e 70 4d 01 00 00 "0...Dk.................L."".([.................^p" +607 0x0000290a control 12 -1 727272 0 -1 727272 0 ff ff ff ff e8 18 0b 00 00 00 00 00 ............ +608 0x00002916 control 12 26 717777 0 26 717777 0 1a 00 00 00 d1 f3 0a 00 00 00 00 00 ............ +609 0x00002922 data 26 22 2067013 0 2067013 0 196609 0 16 00 00 00 45 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E..................... +610 0x0000293c control 12 -1 727273 0 -1 727273 0 ff ff ff ff e9 18 0b 00 00 00 00 00 ............ +611 0x00002948 control 12 22 717778 0 22 717778 0 16 00 00 00 d2 f3 0a 00 00 00 00 00 ............ +612 0x00002954 data 22 18 2067015 0 2067015 0 196609 0 12 00 00 00 47 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +613 0x0000296a control 12 -1 727274 0 -1 727274 0 ff ff ff ff ea 18 0b 00 00 00 00 00 ............ +614 0x00002976 control 12 22 717779 0 22 717779 0 16 00 00 00 d3 f3 0a 00 00 00 00 00 ............ +615 0x00002982 data 22 18 2067017 0 2067017 0 196609 0 12 00 00 00 49 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +616 0x00002998 control 12 -1 727275 0 -1 727275 0 ff ff ff ff eb 18 0b 00 00 00 00 00 ............ +617 0x000029a4 control 12 22 717780 0 22 717780 0 16 00 00 00 d4 f3 0a 00 00 00 00 00 ............ +618 0x000029b0 data 22 18 2067019 0 2067019 0 196609 0 12 00 00 00 4b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +619 0x000029c6 control 12 -1 727276 0 -1 727276 0 ff ff ff ff ec 18 0b 00 00 00 00 00 ............ +620 0x000029d2 control 12 52 717781 0 52 717781 0 34 00 00 00 d5 f3 0a 00 00 00 00 00 4........... +621 0x000029de data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d9 10 02 00 00 00 00 00 00 00 4f f4 8c 70 4d 01 00 00 "0...Dk.................L."".([...............O..p" +622 0x00002a12 control 12 -1 727277 0 -1 727277 0 ff ff ff ff ed 18 0b 00 00 00 00 00 ............ +623 0x00002a1e control 12 26 717782 0 26 717782 0 1a 00 00 00 d6 f3 0a 00 00 00 00 00 ............ +624 0x00002a2a data 26 22 2067021 0 2067021 0 196609 0 16 00 00 00 4d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M..................... +625 0x00002a44 control 12 -1 727278 0 -1 727278 0 ff ff ff ff ee 18 0b 00 00 00 00 00 ............ +626 0x00002a50 control 12 22 717783 0 22 717783 0 16 00 00 00 d7 f3 0a 00 00 00 00 00 ............ +627 0x00002a5c data 22 18 2067023 0 2067023 0 196609 0 12 00 00 00 4f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +628 0x00002a72 control 12 -1 727279 0 -1 727279 0 ff ff ff ff ef 18 0b 00 00 00 00 00 ............ +629 0x00002a7e control 12 22 717784 0 22 717784 0 16 00 00 00 d8 f3 0a 00 00 00 00 00 ............ +630 0x00002a8a data 22 18 2067025 0 2067025 0 196609 0 12 00 00 00 51 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +631 0x00002aa0 control 12 -2 82563 82580 -2 82563 82580 fe ff ff ff 83 42 01 00 94 42 01 00 .....B...B.. +632 0x00002aac control 12 -1 727280 0 -1 727280 0 ff ff ff ff f0 18 0b 00 00 00 00 00 ............ +633 0x00002ab8 control 12 22 717785 0 22 717785 0 16 00 00 00 d9 f3 0a 00 00 00 00 00 ............ +634 0x00002ac4 data 22 18 2067027 0 2067027 0 196609 0 12 00 00 00 53 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +635 0x00002ada control 12 -1 727281 0 -1 727281 0 ff ff ff ff f1 18 0b 00 00 00 00 00 ............ +636 0x00002ae6 control 12 52 717786 0 52 717786 0 34 00 00 00 da f3 0a 00 00 00 00 00 4........... +637 0x00002af2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 da 10 02 00 00 00 00 00 00 00 03 54 bb 70 4d 01 00 00 "0...Dk.................L."".([................T.p" +638 0x00002b26 control 12 -1 727282 0 -1 727282 0 ff ff ff ff f2 18 0b 00 00 00 00 00 ............ +639 0x00002b32 control 12 26 717787 0 26 717787 0 1a 00 00 00 db f3 0a 00 00 00 00 00 ............ +640 0x00002b3e data 26 22 2067029 0 2067029 0 196609 0 16 00 00 00 55 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U..................... +641 0x00002b58 control 12 -1 727283 0 -1 727283 0 ff ff ff ff f3 18 0b 00 00 00 00 00 ............ +642 0x00002b64 control 12 22 717788 0 22 717788 0 16 00 00 00 dc f3 0a 00 00 00 00 00 ............ +643 0x00002b70 data 22 18 2067031 0 2067031 0 196609 0 12 00 00 00 57 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +644 0x00002b86 control 12 -1 727284 0 -1 727284 0 ff ff ff ff f4 18 0b 00 00 00 00 00 ............ +645 0x00002b92 control 12 22 717789 0 22 717789 0 16 00 00 00 dd f3 0a 00 00 00 00 00 ............ +646 0x00002b9e data 22 18 2067033 0 2067033 0 196609 0 12 00 00 00 59 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +647 0x00002bb4 control 12 -1 727285 0 -1 727285 0 ff ff ff ff f5 18 0b 00 00 00 00 00 ............ +648 0x00002bc0 control 12 22 717790 0 22 717790 0 16 00 00 00 de f3 0a 00 00 00 00 00 ............ +649 0x00002bcc data 22 18 2067035 0 2067035 0 196609 0 12 00 00 00 5b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +650 0x00002be2 control 12 -1 727286 0 -1 727286 0 ff ff ff ff f6 18 0b 00 00 00 00 00 ............ +651 0x00002bee control 12 52 717791 0 52 717791 0 34 00 00 00 df f3 0a 00 00 00 00 00 4........... +652 0x00002bfa data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 db 10 02 00 00 00 00 00 00 00 71 cb e9 70 4d 01 00 00 "0...Dk.................L."".([...............q..p" +653 0x00002c2e control 12 -1 727287 0 -1 727287 0 ff ff ff ff f7 18 0b 00 00 00 00 00 ............ +654 0x00002c3a control 12 26 717792 0 26 717792 0 1a 00 00 00 e0 f3 0a 00 00 00 00 00 ............ +655 0x00002c46 data 26 22 2067037 0 2067037 0 196609 0 16 00 00 00 5d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +656 0x00002c60 control 12 -1 727288 0 -1 727288 0 ff ff ff ff f8 18 0b 00 00 00 00 00 ............ +657 0x00002c6c control 12 22 717793 0 22 717793 0 16 00 00 00 e1 f3 0a 00 00 00 00 00 ............ +658 0x00002c78 data 22 18 2067039 0 2067039 0 196609 0 12 00 00 00 5f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +659 0x00002c8e control 12 -2 82564 82581 -2 82564 82581 fe ff ff ff 84 42 01 00 95 42 01 00 .....B...B.. +660 0x00002c9a control 12 -1 727289 0 -1 727289 0 ff ff ff ff f9 18 0b 00 00 00 00 00 ............ +661 0x00002ca6 control 12 22 717794 0 22 717794 0 16 00 00 00 e2 f3 0a 00 00 00 00 00 ............ +662 0x00002cb2 data 22 18 2067041 0 2067041 0 196609 0 12 00 00 00 61 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +663 0x00002cc8 control 12 -1 727290 0 -1 727290 0 ff ff ff ff fa 18 0b 00 00 00 00 00 ............ +664 0x00002cd4 control 12 22 717795 0 22 717795 0 16 00 00 00 e3 f3 0a 00 00 00 00 00 ............ +665 0x00002ce0 data 22 18 2067043 0 2067043 0 196609 0 12 00 00 00 63 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +666 0x00002cf6 control 12 -1 727291 0 -1 727291 0 ff ff ff ff fb 18 0b 00 00 00 00 00 ............ +667 0x00002d02 control 12 52 717796 0 52 717796 0 34 00 00 00 e4 f3 0a 00 00 00 00 00 4........... +668 0x00002d0e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dc 10 02 00 00 00 00 00 00 00 20 66 18 71 4d 01 00 00 "0...Dk.................L."".([............... f.q" +669 0x00002d42 control 12 -1 727292 0 -1 727292 0 ff ff ff ff fc 18 0b 00 00 00 00 00 ............ +670 0x00002d4e control 12 26 717797 0 26 717797 0 1a 00 00 00 e5 f3 0a 00 00 00 00 00 ............ +671 0x00002d5a data 26 22 2067045 0 2067045 0 196609 0 16 00 00 00 65 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +672 0x00002d74 control 12 -1 727293 0 -1 727293 0 ff ff ff ff fd 18 0b 00 00 00 00 00 ............ +673 0x00002d80 control 12 22 717798 0 22 717798 0 16 00 00 00 e6 f3 0a 00 00 00 00 00 ............ +674 0x00002d8c data 22 18 2067047 0 2067047 0 196609 0 12 00 00 00 67 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +675 0x00002da2 control 12 -1 727294 0 -1 727294 0 ff ff ff ff fe 18 0b 00 00 00 00 00 ............ +676 0x00002dae control 12 22 717799 0 22 717799 0 16 00 00 00 e7 f3 0a 00 00 00 00 00 ............ +677 0x00002dba data 22 18 2067049 0 2067049 0 196609 0 12 00 00 00 69 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +678 0x00002dd0 control 12 -2 82565 82582 -2 82565 82582 fe ff ff ff 85 42 01 00 96 42 01 00 .....B...B.. +679 0x00002ddc control 12 -1 727295 0 -1 727295 0 ff ff ff ff ff 18 0b 00 00 00 00 00 ............ +680 0x00002de8 control 12 22 717800 0 22 717800 0 16 00 00 00 e8 f3 0a 00 00 00 00 00 ............ +681 0x00002df4 data 22 18 2067051 0 2067051 0 196609 0 12 00 00 00 6b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +682 0x00002e0a control 12 -1 727296 0 -1 727296 0 ff ff ff ff 00 19 0b 00 00 00 00 00 ............ +683 0x00002e16 control 12 52 717801 0 52 717801 0 34 00 00 00 e9 f3 0a 00 00 00 00 00 4........... +684 0x00002e22 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dd 10 02 00 00 00 00 00 00 00 51 cf 46 71 4d 01 00 00 "0...Dk.................L."".([...............Q.Fq" +685 0x00002e56 control 12 -1 727297 0 -1 727297 0 ff ff ff ff 01 19 0b 00 00 00 00 00 ............ +686 0x00002e62 control 12 26 717802 0 26 717802 0 1a 00 00 00 ea f3 0a 00 00 00 00 00 ............ +687 0x00002e6e data 26 22 2067053 0 2067053 0 196609 0 16 00 00 00 6d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....m..................... +688 0x00002e88 control 12 -1 727298 0 -1 727298 0 ff ff ff ff 02 19 0b 00 00 00 00 00 ............ +689 0x00002e94 control 12 22 717803 0 22 717803 0 16 00 00 00 eb f3 0a 00 00 00 00 00 ............ +690 0x00002ea0 data 22 18 2067055 0 2067055 0 196609 0 12 00 00 00 6f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +691 0x00002eb6 control 12 -1 727299 0 -1 727299 0 ff ff ff ff 03 19 0b 00 00 00 00 00 ............ +692 0x00002ec2 control 12 22 717804 0 22 717804 0 16 00 00 00 ec f3 0a 00 00 00 00 00 ............ +693 0x00002ece data 22 18 2067057 0 2067057 0 196609 0 12 00 00 00 71 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +694 0x00002ee4 control 12 -1 727300 0 -1 727300 0 ff ff ff ff 04 19 0b 00 00 00 00 00 ............ +695 0x00002ef0 control 12 22 717805 0 22 717805 0 16 00 00 00 ed f3 0a 00 00 00 00 00 ............ +696 0x00002efc data 22 18 2067059 0 2067059 0 196609 0 12 00 00 00 73 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +697 0x00002f12 control 12 -1 727301 0 -1 727301 0 ff ff ff ff 05 19 0b 00 00 00 00 00 ............ +698 0x00002f1e control 12 52 717806 0 52 717806 0 34 00 00 00 ee f3 0a 00 00 00 00 00 4........... +699 0x00002f2a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 de 10 02 00 00 00 00 00 00 00 a0 6f 75 71 4d 01 00 00 "0...Dk.................L."".([................ouq" +700 0x00002f5e control 12 -1 727302 0 -1 727302 0 ff ff ff ff 06 19 0b 00 00 00 00 00 ............ +701 0x00002f6a control 12 26 717807 0 26 717807 0 1a 00 00 00 ef f3 0a 00 00 00 00 00 ............ +702 0x00002f76 data 26 22 2067061 0 2067061 0 196609 0 16 00 00 00 75 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....u..................... +703 0x00002f90 control 12 -1 727303 0 -1 727303 0 ff ff ff ff 07 19 0b 00 00 00 00 00 ............ +704 0x00002f9c control 12 22 717808 0 22 717808 0 16 00 00 00 f0 f3 0a 00 00 00 00 00 ............ +705 0x00002fa8 data 22 18 2067063 0 2067063 0 196609 0 12 00 00 00 77 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +706 0x00002fbe control 12 -2 82566 82583 -2 82566 82583 fe ff ff ff 86 42 01 00 97 42 01 00 .....B...B.. +707 0x00002fca control 12 -1 727304 0 -1 727304 0 ff ff ff ff 08 19 0b 00 00 00 00 00 ............ +708 0x00002fd6 control 12 22 717809 0 22 717809 0 16 00 00 00 f1 f3 0a 00 00 00 00 00 ............ +709 0x00002fe2 data 22 18 2067065 0 2067065 0 196609 0 12 00 00 00 79 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +710 0x00002ff8 control 12 -1 727305 0 -1 727305 0 ff ff ff ff 09 19 0b 00 00 00 00 00 ............ +711 0x00003004 control 12 22 717810 0 22 717810 0 16 00 00 00 f2 f3 0a 00 00 00 00 00 ............ +712 0x00003010 data 22 18 2067067 0 2067067 0 196609 0 12 00 00 00 7b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +713 0x00003026 control 12 -1 727306 0 -1 727306 0 ff ff ff ff 0a 19 0b 00 00 00 00 00 ............ +714 0x00003032 control 12 -1 727307 0 -1 727307 0 ff ff ff ff 0b 19 0b 00 00 00 00 00 ............ +715 0x0000303e control 12 52 717811 0 52 717811 0 34 00 00 00 f3 f3 0a 00 00 00 00 00 4........... +716 0x0000304a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 df 10 02 00 00 00 00 00 00 00 bb e1 a3 71 4d 01 00 00 "0...Dk.................L."".([..................q" +717 0x0000307e control 12 -1 727308 0 -1 727308 0 ff ff ff ff 0c 19 0b 00 00 00 00 00 ............ +718 0x0000308a control 12 26 717812 0 26 717812 0 1a 00 00 00 f4 f3 0a 00 00 00 00 00 ............ +719 0x00003096 data 26 22 2067069 0 2067069 0 196609 0 16 00 00 00 7d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....}..................... +720 0x000030b0 control 12 -1 727309 0 -1 727309 0 ff ff ff ff 0d 19 0b 00 00 00 00 00 ............ +721 0x000030bc control 12 22 717813 0 22 717813 0 16 00 00 00 f5 f3 0a 00 00 00 00 00 ............ +722 0x000030c8 data 22 18 2067071 0 2067071 0 196609 0 12 00 00 00 7f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +723 0x000030de control 12 -1 727310 0 -1 727310 0 ff ff ff ff 0e 19 0b 00 00 00 00 00 ............ +724 0x000030ea control 12 22 717814 0 22 717814 0 16 00 00 00 f6 f3 0a 00 00 00 00 00 ............ +725 0x000030f6 data 22 18 2067073 0 2067073 0 196609 0 12 00 00 00 81 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +726 0x0000310c control 12 -1 727311 0 -1 727311 0 ff ff ff ff 0f 19 0b 00 00 00 00 00 ............ +727 0x00003118 control 12 22 717815 0 22 717815 0 16 00 00 00 f7 f3 0a 00 00 00 00 00 ............ +728 0x00003124 data 22 18 2067075 0 2067075 0 196609 0 12 00 00 00 83 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +729 0x0000313a control 12 -1 727312 0 -1 727312 0 ff ff ff ff 10 19 0b 00 00 00 00 00 ............ +730 0x00003146 control 12 52 717816 0 52 717816 0 34 00 00 00 f8 f3 0a 00 00 00 00 00 4........... +731 0x00003152 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e0 10 02 00 00 00 00 00 00 00 07 66 d2 71 4d 01 00 00 "0...Dk.................L."".([................f.q" +732 0x00003186 control 12 -1 727313 0 -1 727313 0 ff ff ff ff 11 19 0b 00 00 00 00 00 ............ +733 0x00003192 control 12 26 717817 0 26 717817 0 1a 00 00 00 f9 f3 0a 00 00 00 00 00 ............ +734 0x0000319e data 26 22 2067077 0 2067077 0 196609 0 16 00 00 00 85 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +735 0x000031b8 control 12 -2 82567 82584 -2 82567 82584 fe ff ff ff 87 42 01 00 98 42 01 00 .....B...B.. +736 0x000031c4 control 12 -1 727314 0 -1 727314 0 ff ff ff ff 12 19 0b 00 00 00 00 00 ............ +737 0x000031d0 control 12 22 717818 0 22 717818 0 16 00 00 00 fa f3 0a 00 00 00 00 00 ............ +738 0x000031dc data 22 18 2067079 0 2067079 0 196609 0 12 00 00 00 87 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +739 0x000031f2 control 12 -1 727315 0 -1 727315 0 ff ff ff ff 13 19 0b 00 00 00 00 00 ............ +740 0x000031fe control 12 22 717819 0 22 717819 0 16 00 00 00 fb f3 0a 00 00 00 00 00 ............ +741 0x0000320a data 22 18 2067081 0 2067081 0 196609 0 12 00 00 00 89 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +742 0x00003220 control 12 -1 727316 0 -1 727316 0 ff ff ff ff 14 19 0b 00 00 00 00 00 ............ +743 0x0000322c control 12 -1 727317 0 -1 727317 0 ff ff ff ff 15 19 0b 00 00 00 00 00 ............ +744 0x00003238 control 12 22 717820 0 22 717820 0 16 00 00 00 fc f3 0a 00 00 00 00 00 ............ +745 0x00003244 data 22 18 2067083 0 2067083 0 196609 0 12 00 00 00 8b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +746 0x0000325a control 12 52 717821 0 52 717821 0 34 00 00 00 fd f3 0a 00 00 00 00 00 4........... +747 0x00003266 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e1 10 02 00 00 00 00 00 00 00 a3 e6 00 72 4d 01 00 00 "0...Dk.................L."".([..................r" +748 0x0000329a control 12 -1 727318 0 -1 727318 0 ff ff ff ff 16 19 0b 00 00 00 00 00 ............ +749 0x000032a6 control 12 26 717822 0 26 717822 0 1a 00 00 00 fe f3 0a 00 00 00 00 00 ............ +750 0x000032b2 data 26 22 2067085 0 2067085 0 196609 0 16 00 00 00 8d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +751 0x000032cc control 12 -1 727319 0 -1 727319 0 ff ff ff ff 17 19 0b 00 00 00 00 00 ............ +752 0x000032d8 control 12 22 717823 0 22 717823 0 16 00 00 00 ff f3 0a 00 00 00 00 00 ............ +753 0x000032e4 data 22 18 2067087 0 2067087 0 196609 0 12 00 00 00 8f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +754 0x000032fa control 12 -1 727320 0 -1 727320 0 ff ff ff ff 18 19 0b 00 00 00 00 00 ............ +755 0x00003306 control 12 22 717824 0 22 717824 0 16 00 00 00 00 f4 0a 00 00 00 00 00 ............ +756 0x00003312 data 22 18 2067089 0 2067089 0 196609 0 12 00 00 00 91 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +757 0x00003328 control 12 -2 82568 82585 -2 82568 82585 fe ff ff ff 88 42 01 00 99 42 01 00 .....B...B.. +758 0x00003334 control 12 -1 727321 0 -1 727321 0 ff ff ff ff 19 19 0b 00 00 00 00 00 ............ +759 0x00003340 control 12 -1 727322 0 -1 727322 0 ff ff ff ff 1a 19 0b 00 00 00 00 00 ............ +760 0x0000334c control 12 52 717825 0 52 717825 0 34 00 00 00 01 f4 0a 00 00 00 00 00 4........... +761 0x00003358 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e2 10 02 00 00 00 00 00 00 00 65 87 2f 72 4d 01 00 00 "0...Dk.................L."".([...............e./r" +762 0x0000338c control 12 -1 727323 0 -1 727323 0 ff ff ff ff 1b 19 0b 00 00 00 00 00 ............ +763 0x00003398 control 12 48 717826 0 48 717826 0 30 00 00 00 02 f4 0a 00 00 00 00 00 0........... +764 0x000033a4 data 26 22 2067091 0 2067091 0 196609 0 16 00 00 00 93 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +765 0x000033be data 22 18 2067093 0 2067093 0 196609 0 12 00 00 00 95 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +766 0x000033d4 control 12 -1 727324 0 -1 727324 0 ff ff ff ff 1c 19 0b 00 00 00 00 00 ............ +767 0x000033e0 control 12 -1 727325 0 -1 727325 0 ff ff ff ff 1d 19 0b 00 00 00 00 00 ............ +768 0x000033ec control 12 22 717827 0 22 717827 0 16 00 00 00 03 f4 0a 00 00 00 00 00 ............ +769 0x000033f8 data 22 18 2067095 0 2067095 0 196609 0 12 00 00 00 97 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +770 0x0000340e control 12 -1 727326 0 -1 727326 0 ff ff ff ff 1e 19 0b 00 00 00 00 00 ............ +771 0x0000341a control 12 22 717828 0 22 717828 0 16 00 00 00 04 f4 0a 00 00 00 00 00 ............ +772 0x00003426 data 22 18 2067097 0 2067097 0 196609 0 12 00 00 00 99 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +773 0x0000343c control 12 -1 727327 0 -1 727327 0 ff ff ff ff 1f 19 0b 00 00 00 00 00 ............ +774 0x00003448 control 12 -1 727328 0 -1 727328 0 ff ff ff ff 20 19 0b 00 00 00 00 00 .... ....... +775 0x00003454 control 12 52 717829 0 52 717829 0 34 00 00 00 05 f4 0a 00 00 00 00 00 4........... +776 0x00003460 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e3 10 02 00 00 00 00 00 00 00 16 18 5e 72 4d 01 00 00 "0...Dk.................L."".([.................^r" +777 0x00003494 control 12 -1 727329 0 -1 727329 0 ff ff ff ff 21 19 0b 00 00 00 00 00 ....!....... +778 0x000034a0 control 12 26 717830 0 26 717830 0 1a 00 00 00 06 f4 0a 00 00 00 00 00 ............ +779 0x000034ac data 26 22 2067099 0 2067099 0 196609 0 16 00 00 00 9b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +780 0x000034c6 control 12 -1 727330 0 -1 727330 0 ff ff ff ff 22 19 0b 00 00 00 00 00 "....""......." +781 0x000034d2 control 12 22 717831 0 22 717831 0 16 00 00 00 07 f4 0a 00 00 00 00 00 ............ +782 0x000034de data 22 18 2067101 0 2067101 0 196609 0 12 00 00 00 9d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +783 0x000034f4 control 12 -1 727331 0 -1 727331 0 ff ff ff ff 23 19 0b 00 00 00 00 00 ....#....... +784 0x00003500 control 12 22 717832 0 22 717832 0 16 00 00 00 08 f4 0a 00 00 00 00 00 ............ +785 0x0000350c data 22 18 2067103 0 2067103 0 196609 0 12 00 00 00 9f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +786 0x00003522 control 12 -2 82569 82586 -2 82569 82586 fe ff ff ff 89 42 01 00 9a 42 01 00 .....B...B.. +787 0x0000352e control 12 -1 727332 0 -1 727332 0 ff ff ff ff 24 19 0b 00 00 00 00 00 ....$....... +788 0x0000353a control 12 22 717833 0 22 717833 0 16 00 00 00 09 f4 0a 00 00 00 00 00 ............ +789 0x00003546 data 22 18 2067105 0 2067105 0 196609 0 12 00 00 00 a1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +790 0x0000355c control 12 -1 727333 0 -1 727333 0 ff ff ff ff 25 19 0b 00 00 00 00 00 ....%....... +791 0x00003568 control 12 -1 727334 0 -1 727334 0 ff ff ff ff 26 19 0b 00 00 00 00 00 ....&....... +792 0x00003574 control 12 52 717834 0 52 717834 0 34 00 00 00 0a f4 0a 00 00 00 00 00 4........... +793 0x00003580 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e4 10 02 00 00 00 00 00 00 00 5d 85 8c 72 4d 01 00 00 "0...Dk.................L."".([...............]..r" +794 0x000035b4 control 12 -1 727335 0 -1 727335 0 ff ff ff ff 27 19 0b 00 00 00 00 00 ....'....... +795 0x000035c0 control 12 26 717835 0 26 717835 0 1a 00 00 00 0b f4 0a 00 00 00 00 00 ............ +796 0x000035cc data 26 22 2067107 0 2067107 0 196609 0 16 00 00 00 a3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +797 0x000035e6 control 12 -1 727336 0 -1 727336 0 ff ff ff ff 28 19 0b 00 00 00 00 00 ....(....... +798 0x000035f2 control 12 22 717836 0 22 717836 0 16 00 00 00 0c f4 0a 00 00 00 00 00 ............ +799 0x000035fe data 22 18 2067109 0 2067109 0 196609 0 12 00 00 00 a5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +800 0x00003614 control 12 -1 727337 0 -1 727337 0 ff ff ff ff 29 19 0b 00 00 00 00 00 ....)....... +801 0x00003620 control 12 22 717837 0 22 717837 0 16 00 00 00 0d f4 0a 00 00 00 00 00 ............ +802 0x0000362c data 22 18 2067111 0 2067111 0 196609 0 12 00 00 00 a7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +803 0x00003642 control 12 -1 727338 0 -1 727338 0 ff ff ff ff 2a 19 0b 00 00 00 00 00 ....*....... +804 0x0000364e control 12 22 717838 0 22 717838 0 16 00 00 00 0e f4 0a 00 00 00 00 00 ............ +805 0x0000365a data 22 18 2067113 0 2067113 0 196609 0 12 00 00 00 a9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +806 0x00003670 control 12 -1 727339 0 -1 727339 0 ff ff ff ff 2b 19 0b 00 00 00 00 00 ....+....... +807 0x0000367c control 12 -1 727340 0 -1 727340 0 ff ff ff ff 2c 19 0b 00 00 00 00 00 ....,....... +808 0x00003688 control 12 52 717839 0 52 717839 0 34 00 00 00 0f f4 0a 00 00 00 00 00 4........... +809 0x00003694 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e5 10 02 00 00 00 00 00 00 00 94 1c bb 72 4d 01 00 00 "0...Dk.................L."".([..................r" +810 0x000036c8 control 12 -1 727341 0 -1 727341 0 ff ff ff ff 2d 19 0b 00 00 00 00 00 ....-....... +811 0x000036d4 control 12 26 717840 0 26 717840 0 1a 00 00 00 10 f4 0a 00 00 00 00 00 ............ +812 0x000036e0 data 26 22 2067115 0 2067115 0 196609 0 16 00 00 00 ab 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +813 0x000036fa control 12 -1 727342 0 -1 727342 0 ff ff ff ff 2e 19 0b 00 00 00 00 00 ............ +814 0x00003706 control 12 22 717841 0 22 717841 0 16 00 00 00 11 f4 0a 00 00 00 00 00 ............ +815 0x00003712 data 22 18 2067117 0 2067117 0 196609 0 12 00 00 00 ad 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +816 0x00003728 control 12 -2 82570 82587 -2 82570 82587 fe ff ff ff 8a 42 01 00 9b 42 01 00 .....B...B.. +817 0x00003734 control 12 -1 727343 0 -1 727343 0 ff ff ff ff 2f 19 0b 00 00 00 00 00 ..../....... +818 0x00003740 control 12 22 717842 0 22 717842 0 16 00 00 00 12 f4 0a 00 00 00 00 00 ............ +819 0x0000374c data 22 18 2067119 0 2067119 0 196609 0 12 00 00 00 af 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +820 0x00003762 control 12 -1 727344 0 -1 727344 0 ff ff ff ff 30 19 0b 00 00 00 00 00 ....0....... +821 0x0000376e control 12 22 717843 0 22 717843 0 16 00 00 00 13 f4 0a 00 00 00 00 00 ............ +822 0x0000377a data 22 18 2067121 0 2067121 0 196609 0 12 00 00 00 b1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +823 0x00003790 control 12 -1 727345 0 -1 727345 0 ff ff ff ff 31 19 0b 00 00 00 00 00 ....1....... +824 0x0000379c control 12 52 717844 0 52 717844 0 34 00 00 00 14 f4 0a 00 00 00 00 00 4........... +825 0x000037a8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e6 10 02 00 00 00 00 00 00 00 9b 8a e9 72 4d 01 00 00 "0...Dk.................L."".([..................r" +826 0x000037dc control 12 -1 727346 0 -1 727346 0 ff ff ff ff 32 19 0b 00 00 00 00 00 ....2....... +827 0x000037e8 control 12 26 717845 0 26 717845 0 1a 00 00 00 15 f4 0a 00 00 00 00 00 ............ +828 0x000037f4 data 26 22 2067123 0 2067123 0 196609 0 16 00 00 00 b3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +829 0x0000380e control 12 -1 727347 0 -1 727347 0 ff ff ff ff 33 19 0b 00 00 00 00 00 ....3....... +830 0x0000381a control 12 22 717846 0 22 717846 0 16 00 00 00 16 f4 0a 00 00 00 00 00 ............ +831 0x00003826 data 22 18 2067125 0 2067125 0 196609 0 12 00 00 00 b5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +832 0x0000383c control 12 -1 727348 0 -1 727348 0 ff ff ff ff 34 19 0b 00 00 00 00 00 ....4....... +833 0x00003848 control 12 22 717847 0 22 717847 0 16 00 00 00 17 f4 0a 00 00 00 00 00 ............ +834 0x00003854 data 22 18 2067127 0 2067127 0 196609 0 12 00 00 00 b7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +835 0x0000386a control 12 -1 727349 0 -1 727349 0 ff ff ff ff 35 19 0b 00 00 00 00 00 ....5....... +836 0x00003876 control 12 22 717848 0 22 717848 0 16 00 00 00 18 f4 0a 00 00 00 00 00 ............ +837 0x00003882 data 22 18 2067129 0 2067129 0 196609 0 12 00 00 00 b9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +838 0x00003898 control 12 -2 82571 82588 -2 82571 82588 fe ff ff ff 8b 42 01 00 9c 42 01 00 .....B...B.. +839 0x000038a4 control 12 -1 727350 0 -1 727350 0 ff ff ff ff 36 19 0b 00 00 00 00 00 ....6....... +840 0x000038b0 control 12 52 717849 0 52 717849 0 34 00 00 00 19 f4 0a 00 00 00 00 00 4........... +841 0x000038bc data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e7 10 02 00 00 00 00 00 00 00 ee 55 18 73 4d 01 00 00 "0...Dk.................L."".([................U.s" +842 0x000038f0 control 12 -1 727351 0 -1 727351 0 ff ff ff ff 37 19 0b 00 00 00 00 00 ....7....... +843 0x000038fc control 12 26 717850 0 26 717850 0 1a 00 00 00 1a f4 0a 00 00 00 00 00 ............ +844 0x00003908 data 26 22 2067131 0 2067131 0 196609 0 16 00 00 00 bb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +845 0x00003922 control 12 -1 727352 0 -1 727352 0 ff ff ff ff 38 19 0b 00 00 00 00 00 ....8....... +846 0x0000392e control 12 22 717851 0 22 717851 0 16 00 00 00 1b f4 0a 00 00 00 00 00 ............ +847 0x0000393a data 22 18 2067133 0 2067133 0 196609 0 12 00 00 00 bd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +848 0x00003950 control 12 -1 727353 0 -1 727353 0 ff ff ff ff 39 19 0b 00 00 00 00 00 ....9....... +849 0x0000395c control 12 22 717852 0 22 717852 0 16 00 00 00 1c f4 0a 00 00 00 00 00 ............ +850 0x00003968 data 22 18 2067135 0 2067135 0 196609 0 12 00 00 00 bf 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +851 0x0000397e control 12 -1 727354 0 -1 727354 0 ff ff ff ff 3a 19 0b 00 00 00 00 00 ....:....... +852 0x0000398a control 12 22 717853 0 22 717853 0 16 00 00 00 1d f4 0a 00 00 00 00 00 ............ +853 0x00003996 data 22 18 2067137 0 2067137 0 196609 0 12 00 00 00 c1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +854 0x000039ac control 12 -1 727355 0 -1 727355 0 ff ff ff ff 3b 19 0b 00 00 00 00 00 ....;....... +855 0x000039b8 control 12 52 717854 0 52 717854 0 34 00 00 00 1e f4 0a 00 00 00 00 00 4........... +856 0x000039c4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e8 10 02 00 00 00 00 00 00 00 82 d5 46 73 4d 01 00 00 "0...Dk.................L."".([.................Fs" +857 0x000039f8 control 12 -1 727356 0 -1 727356 0 ff ff ff ff 3c 19 0b 00 00 00 00 00 ....<....... +858 0x00003a04 control 12 26 717855 0 26 717855 0 1a 00 00 00 1f f4 0a 00 00 00 00 00 ............ +859 0x00003a10 data 26 22 2067139 0 2067139 0 196609 0 16 00 00 00 c3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +860 0x00003a2a control 12 -1 727357 0 -1 727357 0 ff ff ff ff 3d 19 0b 00 00 00 00 00 ....=....... +861 0x00003a36 control 12 22 717856 0 22 717856 0 16 00 00 00 20 f4 0a 00 00 00 00 00 .... ....... +862 0x00003a42 data 22 18 2067141 0 2067141 0 196609 0 12 00 00 00 c5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +863 0x00003a58 control 12 -2 82572 82589 -2 82572 82589 fe ff ff ff 8c 42 01 00 9d 42 01 00 .....B...B.. +864 0x00003a64 control 12 -1 727358 0 -1 727358 0 ff ff ff ff 3e 19 0b 00 00 00 00 00 ....>....... +865 0x00003a70 control 12 22 717857 0 22 717857 0 16 00 00 00 21 f4 0a 00 00 00 00 00 ....!....... +866 0x00003a7c data 22 18 2067143 0 2067143 0 196609 0 12 00 00 00 c7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +867 0x00003a92 control 12 -1 727359 0 -1 727359 0 ff ff ff ff 3f 19 0b 00 00 00 00 00 ....?....... +868 0x00003a9e control 12 22 717858 0 22 717858 0 16 00 00 00 22 f4 0a 00 00 00 00 00 "....""......." +869 0x00003aaa data 22 18 2067145 0 2067145 0 196609 0 12 00 00 00 c9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +870 0x00003ac0 control 12 -1 727360 0 -1 727360 0 ff ff ff ff 40 19 0b 00 00 00 00 00 ....@....... +871 0x00003acc control 12 -1 727361 0 -1 727361 0 ff ff ff ff 41 19 0b 00 00 00 00 00 ....A....... +872 0x00003ad8 control 12 52 717859 0 52 717859 0 34 00 00 00 23 f4 0a 00 00 00 00 00 4...#....... +873 0x00003ae4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e9 10 02 00 00 00 00 00 00 00 da 62 75 73 4d 01 00 00 "0...Dk.................L."".([................bus" +874 0x00003b18 control 12 -1 727362 0 -1 727362 0 ff ff ff ff 42 19 0b 00 00 00 00 00 ....B....... +875 0x00003b24 control 12 26 717860 0 26 717860 0 1a 00 00 00 24 f4 0a 00 00 00 00 00 ....$....... +876 0x00003b30 data 26 22 2067147 0 2067147 0 196609 0 16 00 00 00 cb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +877 0x00003b4a control 12 -1 727363 0 -1 727363 0 ff ff ff ff 43 19 0b 00 00 00 00 00 ....C....... +878 0x00003b56 control 12 22 717861 0 22 717861 0 16 00 00 00 25 f4 0a 00 00 00 00 00 ....%....... +879 0x00003b62 data 22 18 2067149 0 2067149 0 196609 0 12 00 00 00 cd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +880 0x00003b78 control 12 -1 727364 0 -1 727364 0 ff ff ff ff 44 19 0b 00 00 00 00 00 ....D....... +881 0x00003b84 control 12 22 717862 0 22 717862 0 16 00 00 00 26 f4 0a 00 00 00 00 00 ....&....... +882 0x00003b90 data 22 18 2067151 0 2067151 0 196609 0 12 00 00 00 cf 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +883 0x00003ba6 control 12 -1 727365 0 -1 727365 0 ff ff ff ff 45 19 0b 00 00 00 00 00 ....E....... +884 0x00003bb2 control 12 22 717863 0 22 717863 0 16 00 00 00 27 f4 0a 00 00 00 00 00 ....'....... +885 0x00003bbe data 22 18 2067153 0 2067153 0 196609 0 12 00 00 00 d1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +886 0x00003bd4 control 12 -1 727366 0 -1 727366 0 ff ff ff ff 46 19 0b 00 00 00 00 00 ....F....... +887 0x00003be0 control 12 -1 727367 0 -1 727367 0 ff ff ff ff 47 19 0b 00 00 00 00 00 ....G....... +888 0x00003bec control 12 52 717864 0 52 717864 0 34 00 00 00 28 f4 0a 00 00 00 00 00 4...(....... +889 0x00003bf8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ea 10 02 00 00 00 00 00 00 00 57 09 a4 73 4d 01 00 00 "0...Dk.................L."".([...............W..s" +890 0x00003c2c control 12 -1 727368 0 -1 727368 0 ff ff ff ff 48 19 0b 00 00 00 00 00 ....H....... +891 0x00003c38 control 12 26 717865 0 26 717865 0 1a 00 00 00 29 f4 0a 00 00 00 00 00 ....)....... +892 0x00003c44 data 26 22 2067155 0 2067155 0 196609 0 16 00 00 00 d3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +893 0x00003c5e control 12 -2 82573 82590 -2 82573 82590 fe ff ff ff 8d 42 01 00 9e 42 01 00 .....B...B.. +894 0x00003c6a control 12 -1 727369 0 -1 727369 0 ff ff ff ff 49 19 0b 00 00 00 00 00 ....I....... +895 0x00003c76 control 12 22 717866 0 22 717866 0 16 00 00 00 2a f4 0a 00 00 00 00 00 ....*....... +896 0x00003c82 data 22 18 2067157 0 2067157 0 196609 0 12 00 00 00 d5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +897 0x00003c98 control 12 -1 727370 0 -1 727370 0 ff ff ff ff 4a 19 0b 00 00 00 00 00 ....J....... +898 0x00003ca4 control 12 22 717867 0 22 717867 0 16 00 00 00 2b f4 0a 00 00 00 00 00 ....+....... +899 0x00003cb0 data 22 18 2067159 0 2067159 0 196609 0 12 00 00 00 d7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +900 0x00003cc6 control 12 -1 727371 0 -1 727371 0 ff ff ff ff 4b 19 0b 00 00 00 00 00 ....K....... +901 0x00003cd2 control 12 22 717868 0 22 717868 0 16 00 00 00 2c f4 0a 00 00 00 00 00 ....,....... +902 0x00003cde data 22 18 2067161 0 2067161 0 196609 0 12 00 00 00 d9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +903 0x00003cf4 control 12 -1 727372 0 -1 727372 0 ff ff ff ff 4c 19 0b 00 00 00 00 00 ....L....... +904 0x00003d00 control 12 -1 727373 0 -1 727373 0 ff ff ff ff 4d 19 0b 00 00 00 00 00 ....M....... +905 0x00003d0c control 12 52 717869 0 52 717869 0 34 00 00 00 2d f4 0a 00 00 00 00 00 4...-....... +906 0x00003d18 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 eb 10 02 00 00 00 00 00 00 00 cf 5f d2 73 4d 01 00 00 "0...Dk.................L."".([................_.s" +907 0x00003d4c control 12 -1 727374 0 -1 727374 0 ff ff ff ff 4e 19 0b 00 00 00 00 00 ....N....... +908 0x00003d58 control 12 26 717870 0 26 717870 0 1a 00 00 00 2e f4 0a 00 00 00 00 00 ............ +909 0x00003d64 data 26 22 2067163 0 2067163 0 196609 0 16 00 00 00 db 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +910 0x00003d7e control 12 -1 727375 0 -1 727375 0 ff ff ff ff 4f 19 0b 00 00 00 00 00 ....O....... +911 0x00003d8a control 12 22 717871 0 22 717871 0 16 00 00 00 2f f4 0a 00 00 00 00 00 ..../....... +912 0x00003d96 data 22 18 2067165 0 2067165 0 196609 0 12 00 00 00 dd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +913 0x00003dac control 12 -1 727376 0 -1 727376 0 ff ff ff ff 50 19 0b 00 00 00 00 00 ....P....... +914 0x00003db8 control 12 22 717872 0 22 717872 0 16 00 00 00 30 f4 0a 00 00 00 00 00 ....0....... +915 0x00003dc4 data 22 18 2067167 0 2067167 0 196609 0 12 00 00 00 df 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +916 0x00003dda control 12 -2 82574 82591 -2 82574 82591 fe ff ff ff 8e 42 01 00 9f 42 01 00 .....B...B.. +917 0x00003de6 control 12 -1 727377 0 -1 727377 0 ff ff ff ff 51 19 0b 00 00 00 00 00 ....Q....... +918 0x00003df2 control 12 22 717873 0 22 717873 0 16 00 00 00 31 f4 0a 00 00 00 00 00 ....1....... +919 0x00003dfe data 22 18 2067169 0 2067169 0 196609 0 12 00 00 00 e1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +920 0x00003e14 control 12 -1 727378 0 -1 727378 0 ff ff ff ff 52 19 0b 00 00 00 00 00 ....R....... +921 0x00003e20 control 12 52 717874 0 52 717874 0 34 00 00 00 32 f4 0a 00 00 00 00 00 4...2....... +922 0x00003e2c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ec 10 02 00 00 00 00 00 00 00 f1 b0 00 74 4d 01 00 00 "0...Dk.................L."".([..................t" +923 0x00003e60 control 12 -1 727379 0 -1 727379 0 ff ff ff ff 53 19 0b 00 00 00 00 00 ....S....... +924 0x00003e6c control 12 26 717875 0 26 717875 0 1a 00 00 00 33 f4 0a 00 00 00 00 00 ....3....... +925 0x00003e78 data 26 22 2067171 0 2067171 0 196609 0 16 00 00 00 e3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +926 0x00003e92 control 12 -1 727380 0 -1 727380 0 ff ff ff ff 54 19 0b 00 00 00 00 00 ....T....... +927 0x00003e9e control 12 22 717876 0 22 717876 0 16 00 00 00 34 f4 0a 00 00 00 00 00 ....4....... +928 0x00003eaa data 22 18 2067173 0 2067173 0 196609 0 12 00 00 00 e5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +929 0x00003ec0 control 12 -1 727381 0 -1 727381 0 ff ff ff ff 55 19 0b 00 00 00 00 00 ....U....... +930 0x00003ecc control 12 22 717877 0 22 717877 0 16 00 00 00 35 f4 0a 00 00 00 00 00 ....5....... +931 0x00003ed8 data 22 18 2067175 0 2067175 0 196609 0 12 00 00 00 e7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +932 0x00003eee control 12 -1 727382 0 -1 727382 0 ff ff ff ff 56 19 0b 00 00 00 00 00 ....V....... +933 0x00003efa control 12 22 717878 0 22 717878 0 16 00 00 00 36 f4 0a 00 00 00 00 00 ....6....... +934 0x00003f06 data 22 18 2067177 0 2067177 0 196609 0 12 00 00 00 e9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +935 0x00003f1c control 12 -1 727383 0 -1 727383 0 ff ff ff ff 57 19 0b 00 00 00 00 00 ....W....... +936 0x00003f28 control 12 52 717879 0 52 717879 0 34 00 00 00 37 f4 0a 00 00 00 00 00 4...7....... +937 0x00003f34 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ed 10 02 00 00 00 00 00 00 00 25 2f 2f 74 4d 01 00 00 "0...Dk.................L."".([...............%//t" +938 0x00003f68 control 12 -1 727384 0 -1 727384 0 ff ff ff ff 58 19 0b 00 00 00 00 00 ....X....... +939 0x00003f74 control 12 26 717880 0 26 717880 0 1a 00 00 00 38 f4 0a 00 00 00 00 00 ....8....... +940 0x00003f80 data 26 22 2067179 0 2067179 0 196609 0 16 00 00 00 eb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +941 0x00003f9a control 12 -1 727385 0 -1 727385 0 ff ff ff ff 59 19 0b 00 00 00 00 00 ....Y....... +942 0x00003fa6 control 12 22 717881 0 22 717881 0 16 00 00 00 39 f4 0a 00 00 00 00 00 ....9....... +943 0x00003fb2 data 22 18 2067181 0 2067181 0 196609 0 12 00 00 00 ed 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +944 0x00003fc8 control 12 -2 82575 82592 -2 82575 82592 fe ff ff ff 8f 42 01 00 a0 42 01 00 .....B...B.. +945 0x00003fd4 control 12 -1 727386 0 -1 727386 0 ff ff ff ff 5a 19 0b 00 00 00 00 00 ....Z....... +946 0x00003fe0 control 12 22 717882 0 22 717882 0 16 00 00 00 3a f4 0a 00 00 00 00 00 ....:....... +947 0x00003fec data 22 18 2067183 0 2067183 0 196609 0 12 00 00 00 ef 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +948 0x00004002 control 12 -1 727387 0 -1 727387 0 ff ff ff ff 5b 19 0b 00 00 00 00 00 ....[....... +949 0x0000400e control 12 22 717883 0 22 717883 0 16 00 00 00 3b f4 0a 00 00 00 00 00 ....;....... +950 0x0000401a data 22 18 2067185 0 2067185 0 196609 0 12 00 00 00 f1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +951 0x00004030 control 12 -1 727388 0 -1 727388 0 ff ff ff ff 5c 19 0b 00 00 00 00 00 ....\....... +952 0x0000403c control 12 52 717884 0 52 717884 0 34 00 00 00 3c f4 0a 00 00 00 00 00 4...<....... +953 0x00004048 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ee 10 02 00 00 00 00 00 00 00 7a c8 5d 74 4d 01 00 00 "0...Dk.................L."".([...............z.]t" +954 0x0000407c control 12 -1 727389 0 -1 727389 0 ff ff ff ff 5d 19 0b 00 00 00 00 00 ....]....... +955 0x00004088 control 12 26 717885 0 26 717885 0 1a 00 00 00 3d f4 0a 00 00 00 00 00 ....=....... +956 0x00004094 data 26 22 2067187 0 2067187 0 196609 0 16 00 00 00 f3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +957 0x000040ae control 12 -1 727390 0 -1 727390 0 ff ff ff ff 5e 19 0b 00 00 00 00 00 ....^....... +958 0x000040ba control 12 22 717886 0 22 717886 0 16 00 00 00 3e f4 0a 00 00 00 00 00 ....>....... +959 0x000040c6 data 22 18 2067189 0 2067189 0 196609 0 12 00 00 00 f5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +960 0x000040dc control 12 -1 727391 0 -1 727391 0 ff ff ff ff 5f 19 0b 00 00 00 00 00 ...._....... +961 0x000040e8 control 12 22 717887 0 22 717887 0 16 00 00 00 3f f4 0a 00 00 00 00 00 ....?....... +962 0x000040f4 data 22 18 2067191 0 2067191 0 196609 0 12 00 00 00 f7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +963 0x0000410a control 12 -1 727392 0 -1 727392 0 ff ff ff ff 60 19 0b 00 00 00 00 00 ....`....... +964 0x00004116 control 12 22 717888 0 22 717888 0 16 00 00 00 40 f4 0a 00 00 00 00 00 ....@....... +965 0x00004122 data 22 18 2067193 0 2067193 0 196609 0 12 00 00 00 f9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +966 0x00004138 control 12 -2 82576 82593 -2 82576 82593 fe ff ff ff 90 42 01 00 a1 42 01 00 .....B...B.. +967 0x00004144 control 12 -1 727393 0 -1 727393 0 ff ff ff ff 61 19 0b 00 00 00 00 00 ....a....... +968 0x00004150 control 12 -1 727394 0 -1 727394 0 ff ff ff ff 62 19 0b 00 00 00 00 00 ....b....... +969 0x0000415c control 12 52 717889 0 52 717889 0 34 00 00 00 41 f4 0a 00 00 00 00 00 4...A....... +970 0x00004168 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ef 10 02 00 00 00 00 00 00 00 11 1f 8c 74 4d 01 00 00 "0...Dk.................L."".([..................t" +971 0x0000419c control 12 -1 727395 0 -1 727395 0 ff ff ff ff 63 19 0b 00 00 00 00 00 ....c....... +972 0x000041a8 control 12 26 717890 0 26 717890 0 1a 00 00 00 42 f4 0a 00 00 00 00 00 ....B....... +973 0x000041b4 data 26 22 2067195 0 2067195 0 196609 0 16 00 00 00 fb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +974 0x000041ce control 12 -1 727396 0 -1 727396 0 ff ff ff ff 64 19 0b 00 00 00 00 00 ....d....... +975 0x000041da control 12 22 717891 0 22 717891 0 16 00 00 00 43 f4 0a 00 00 00 00 00 ....C....... +976 0x000041e6 data 22 18 2067197 0 2067197 0 196609 0 12 00 00 00 fd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +977 0x000041fc control 12 -1 727397 0 -1 727397 0 ff ff ff ff 65 19 0b 00 00 00 00 00 ....e....... +978 0x00004208 control 12 22 717892 0 22 717892 0 16 00 00 00 44 f4 0a 00 00 00 00 00 ....D....... +979 0x00004214 data 22 18 2067199 0 2067199 0 196609 0 12 00 00 00 ff 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +980 0x0000422a control 12 -1 727398 0 -1 727398 0 ff ff ff ff 66 19 0b 00 00 00 00 00 ....f....... +981 0x00004236 control 12 22 717893 0 22 717893 0 16 00 00 00 45 f4 0a 00 00 00 00 00 ....E....... +982 0x00004242 data 22 18 2067201 0 2067201 0 196609 0 12 00 00 00 01 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +983 0x00004258 control 12 -1 727399 0 -1 727399 0 ff ff ff ff 67 19 0b 00 00 00 00 00 ....g....... +984 0x00004264 control 12 -1 727400 0 -1 727400 0 ff ff ff ff 68 19 0b 00 00 00 00 00 ....h....... +985 0x00004270 control 12 52 717894 0 52 717894 0 34 00 00 00 46 f4 0a 00 00 00 00 00 4...F....... +986 0x0000427c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f0 10 02 00 00 00 00 00 00 00 ca b3 ba 74 4d 01 00 00 "0...Dk.................L."".([..................t" +987 0x000042b0 control 12 -1 727401 0 -1 727401 0 ff ff ff ff 69 19 0b 00 00 00 00 00 ....i....... +988 0x000042bc control 12 26 717895 0 26 717895 0 1a 00 00 00 47 f4 0a 00 00 00 00 00 ....G....... +989 0x000042c8 data 26 22 2067203 0 2067203 0 196609 0 16 00 00 00 03 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +990 0x000042e2 control 12 -1 727402 0 -1 727402 0 ff ff ff ff 6a 19 0b 00 00 00 00 00 ....j....... +991 0x000042ee control 12 22 717896 0 22 717896 0 16 00 00 00 48 f4 0a 00 00 00 00 00 ....H....... +992 0x000042fa data 22 18 2067205 0 2067205 0 196609 0 12 00 00 00 05 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +993 0x00004310 control 12 -1 727403 0 -1 727403 0 ff ff ff ff 6b 19 0b 00 00 00 00 00 ....k....... +994 0x0000431c control 12 22 717897 0 22 717897 0 16 00 00 00 49 f4 0a 00 00 00 00 00 ....I....... +995 0x00004328 data 22 18 2067207 0 2067207 0 196609 0 12 00 00 00 07 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +996 0x0000433e control 12 -2 82577 82594 -2 82577 82594 fe ff ff ff 91 42 01 00 a2 42 01 00 .....B...B.. +997 0x0000434a control 12 -1 727404 0 -1 727404 0 ff ff ff ff 6c 19 0b 00 00 00 00 00 ....l....... +998 0x00004356 control 12 22 717898 0 22 717898 0 16 00 00 00 4a f4 0a 00 00 00 00 00 ....J....... +999 0x00004362 data 22 18 2067209 0 2067209 0 196609 0 12 00 00 00 09 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1000 0x00004378 control 12 -1 727405 0 -1 727405 0 ff ff ff ff 6d 19 0b 00 00 00 00 00 ....m....... +1001 0x00004384 control 12 52 717899 0 52 717899 0 34 00 00 00 4b f4 0a 00 00 00 00 00 4...K....... +1002 0x00004390 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f1 10 02 00 00 00 00 00 00 00 d4 14 e9 74 4d 01 00 00 "0...Dk.................L."".([..................t" +1003 0x000043c4 control 12 -1 727406 0 -1 727406 0 ff ff ff ff 6e 19 0b 00 00 00 00 00 ....n....... +1004 0x000043d0 control 12 26 717900 0 26 717900 0 1a 00 00 00 4c f4 0a 00 00 00 00 00 ....L....... +1005 0x000043dc data 26 22 2067211 0 2067211 0 196609 0 16 00 00 00 0b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1006 0x000043f6 control 12 -1 727407 0 -1 727407 0 ff ff ff ff 6f 19 0b 00 00 00 00 00 ....o....... +1007 0x00004402 control 12 22 717901 0 22 717901 0 16 00 00 00 4d f4 0a 00 00 00 00 00 ....M....... +1008 0x0000440e data 22 18 2067213 0 2067213 0 196609 0 12 00 00 00 0d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1009 0x00004424 control 12 -1 727408 0 -1 727408 0 ff ff ff ff 70 19 0b 00 00 00 00 00 ....p....... +1010 0x00004430 control 12 22 717902 0 22 717902 0 16 00 00 00 4e f4 0a 00 00 00 00 00 ....N....... +1011 0x0000443c data 22 18 2067215 0 2067215 0 196609 0 12 00 00 00 0f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1012 0x00004452 control 12 -1 727409 0 -1 727409 0 ff ff ff ff 71 19 0b 00 00 00 00 00 ....q....... +1013 0x0000445e control 12 22 717903 0 22 717903 0 16 00 00 00 4f f4 0a 00 00 00 00 00 ....O....... +1014 0x0000446a data 22 18 2067217 0 2067217 0 196609 0 12 00 00 00 11 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1015 0x00004480 control 12 -1 727410 0 -1 727410 0 ff ff ff ff 72 19 0b 00 00 00 00 00 ....r....... +1016 0x0000448c control 12 52 717904 0 52 717904 0 34 00 00 00 50 f4 0a 00 00 00 00 00 4...P....... +1017 0x00004498 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f2 10 02 00 00 00 00 00 00 00 73 b3 17 75 4d 01 00 00 "0...Dk.................L."".([...............s..u" +1018 0x000044cc control 12 -1 727411 0 -1 727411 0 ff ff ff ff 73 19 0b 00 00 00 00 00 ....s....... +1019 0x000044d8 control 12 26 717905 0 26 717905 0 1a 00 00 00 51 f4 0a 00 00 00 00 00 ....Q....... +1020 0x000044e4 data 26 22 2067219 0 2067219 0 196609 0 16 00 00 00 13 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1021 0x000044fe control 12 -2 82578 82595 -2 82578 82595 fe ff ff ff 92 42 01 00 a3 42 01 00 .....B...B.. +1022 0x0000450a control 12 -1 727412 0 -1 727412 0 ff ff ff ff 74 19 0b 00 00 00 00 00 ....t....... +1023 0x00004516 control 12 22 717906 0 22 717906 0 16 00 00 00 52 f4 0a 00 00 00 00 00 ....R....... +1024 0x00004522 data 22 18 2067221 0 2067221 0 196609 0 12 00 00 00 15 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1025 0x00004538 control 12 -1 727413 0 -1 727413 0 ff ff ff ff 75 19 0b 00 00 00 00 00 ....u....... +1026 0x00004544 control 12 22 717907 0 22 717907 0 16 00 00 00 53 f4 0a 00 00 00 00 00 ....S....... +1027 0x00004550 data 22 18 2067223 0 2067223 0 196609 0 12 00 00 00 17 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1028 0x00004566 control 12 -1 727414 0 -1 727414 0 ff ff ff ff 76 19 0b 00 00 00 00 00 ....v....... +1029 0x00004572 control 12 22 717908 0 22 717908 0 16 00 00 00 54 f4 0a 00 00 00 00 00 ....T....... +1030 0x0000457e data 22 18 2067225 0 2067225 0 196609 0 12 00 00 00 19 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1031 0x00004594 control 12 -1 727415 0 -1 727415 0 ff ff ff ff 77 19 0b 00 00 00 00 00 ....w....... +1032 0x000045a0 control 12 -1 727416 0 -1 727416 0 ff ff ff ff 78 19 0b 00 00 00 00 00 ....x....... +1033 0x000045ac control 12 52 717909 0 52 717909 0 34 00 00 00 55 f4 0a 00 00 00 00 00 4...U....... +1034 0x000045b8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f3 10 02 00 00 00 00 00 00 00 eb 27 46 75 4d 01 00 00 "0...Dk.................L."".([................'Fu" +1035 0x000045ec control 12 -1 727417 0 -1 727417 0 ff ff ff ff 79 19 0b 00 00 00 00 00 ....y....... +1036 0x000045f8 control 12 26 717910 0 26 717910 0 1a 00 00 00 56 f4 0a 00 00 00 00 00 ....V....... +1037 0x00004604 data 26 22 2067227 0 2067227 0 196609 0 16 00 00 00 1b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1038 0x0000461e control 12 27 717911 0 27 717911 0 1b 00 00 00 57 f4 0a 00 00 00 00 00 ....W....... +1039 0x0000462a data 27 23 -76199334 -1054115807 -76199334 -1054115807 -65535 -2013200385 17 00 00 00 5a 4a 75 fb 21 78 2b c1 01 00 ff ff ff ff 00 88 56 0f 00 00 00 00 00 ....ZJu.!x+.........V...... +1040 0x00004645 control 12 -1 727418 0 -1 727418 0 ff ff ff ff 7a 19 0b 00 00 00 00 00 ....z....... +1041 0x00004651 control 12 -1 727419 0 -1 727419 0 ff ff ff ff 7b 19 0b 00 00 00 00 00 ....{....... +1042 0x0000465d control 12 22 717912 0 22 717912 0 16 00 00 00 58 f4 0a 00 00 00 00 00 ....X....... +1043 0x00004669 data 22 18 2067229 0 2067229 0 196609 0 12 00 00 00 1d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1044 0x0000467f control 12 -1 727420 0 -1 727420 0 ff ff ff ff 7c 19 0b 00 00 00 00 00 ....|....... +1045 0x0000468b control 12 22 717913 0 22 717913 0 16 00 00 00 59 f4 0a 00 00 00 00 00 ....Y....... +1046 0x00004697 data 22 18 2067231 0 2067231 0 196609 0 12 00 00 00 1f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1047 0x000046ad control 12 -2 82579 82596 -2 82579 82596 fe ff ff ff 93 42 01 00 a4 42 01 00 .....B...B.. +1048 0x000046b9 control 12 -1 727421 0 -1 727421 0 ff ff ff ff 7d 19 0b 00 00 00 00 00 ....}....... +1049 0x000046c5 control 12 22 717914 0 22 717914 0 16 00 00 00 5a f4 0a 00 00 00 00 00 ....Z....... +1050 0x000046d1 data 22 18 2067233 0 2067233 0 196609 0 12 00 00 00 21 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +1051 0x000046e7 control 12 -1 727422 0 -1 727422 0 ff ff ff ff 7e 19 0b 00 00 00 00 00 ....~....... +1052 0x000046f3 control 12 52 717915 0 52 717915 0 34 00 00 00 5b f4 0a 00 00 00 00 00 4...[....... +1053 0x000046ff data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f4 10 02 00 00 00 00 00 00 00 86 a5 74 75 4d 01 00 00 "0...Dk.................L."".([.................tu" +1054 0x00004733 control 12 -1 727423 0 -1 727423 0 ff ff ff ff 7f 19 0b 00 00 00 00 00 ............ +1055 0x0000473f control 12 26 717916 0 26 717916 0 1a 00 00 00 5c f4 0a 00 00 00 00 00 ....\....... +1056 0x0000474b data 26 22 2067235 0 2067235 0 196609 0 16 00 00 00 23 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....#..................... +1057 0x00004765 control 12 -1 727424 0 -1 727424 0 ff ff ff ff 80 19 0b 00 00 00 00 00 ............ +1058 0x00004771 control 12 22 717917 0 22 717917 0 16 00 00 00 5d f4 0a 00 00 00 00 00 ....]....... +1059 0x0000477d data 22 18 2067237 0 2067237 0 196609 0 12 00 00 00 25 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +1060 0x00004793 control 12 -1 727425 0 -1 727425 0 ff ff ff ff 81 19 0b 00 00 00 00 00 ............ +1061 0x0000479f control 12 22 717918 0 22 717918 0 16 00 00 00 5e f4 0a 00 00 00 00 00 ....^....... +1062 0x000047ab data 22 18 2067239 0 2067239 0 196609 0 12 00 00 00 27 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +1063 0x000047c1 control 12 -1 727426 0 -1 727426 0 ff ff ff ff 82 19 0b 00 00 00 00 00 ............ +1064 0x000047cd control 12 52 717919 0 52 717919 0 34 00 00 00 5f f4 0a 00 00 00 00 00 4..._....... +1065 0x000047d9 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f5 10 02 00 00 00 00 00 00 00 5d 4c a3 75 4d 01 00 00 "0...Dk.................L."".([...............]L.u" +1066 0x0000480d control 12 -1 727427 0 -1 727427 0 ff ff ff ff 83 19 0b 00 00 00 00 00 ............ +1067 0x00004819 control 12 -1 727428 0 -1 727428 0 ff ff ff ff 84 19 0b 00 00 00 00 00 ............ +1068 0x00004825 control 12 22 717920 0 22 717920 0 16 00 00 00 60 f4 0a 00 00 00 00 00 ....`....... +1069 0x00004831 data 22 18 2067241 0 2067241 0 196609 0 12 00 00 00 29 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +1070 0x00004847 control 12 26 717921 0 26 717921 0 1a 00 00 00 61 f4 0a 00 00 00 00 00 ....a....... +1071 0x00004853 data 26 22 2067243 0 2067243 0 196609 0 16 00 00 00 2b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....+..................... +1072 0x0000486d control 12 -1 727429 0 -1 727429 0 ff ff ff ff 85 19 0b 00 00 00 00 00 ............ +1073 0x00004879 control 12 22 717922 0 22 717922 0 16 00 00 00 62 f4 0a 00 00 00 00 00 ....b....... +1074 0x00004885 data 22 18 2067245 0 2067245 0 196609 0 12 00 00 00 2d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +1075 0x0000489b control 12 -2 82580 82597 -2 82580 82597 fe ff ff ff 94 42 01 00 a5 42 01 00 .....B...B.. +1076 0x000048a7 control 12 -1 727430 0 -1 727430 0 ff ff ff ff 86 19 0b 00 00 00 00 00 ............ +1077 0x000048b3 control 12 22 717923 0 22 717923 0 16 00 00 00 63 f4 0a 00 00 00 00 00 ....c....... +1078 0x000048bf data 22 18 2067247 0 2067247 0 196609 0 12 00 00 00 2f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +1079 0x000048d5 control 12 -1 727431 0 -1 727431 0 ff ff ff ff 87 19 0b 00 00 00 00 00 ............ +1080 0x000048e1 control 12 -1 727432 0 -1 727432 0 ff ff ff ff 88 19 0b 00 00 00 00 00 ............ +1081 0x000048ed control 12 52 717924 0 52 717924 0 34 00 00 00 64 f4 0a 00 00 00 00 00 4...d....... +1082 0x000048f9 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f6 10 02 00 00 00 00 00 00 00 dd d0 d1 75 4d 01 00 00 "0...Dk.................L."".([..................u" +1083 0x0000492d control 12 -1 727433 0 -1 727433 0 ff ff ff ff 89 19 0b 00 00 00 00 00 ............ +1084 0x00004939 control 12 26 717925 0 26 717925 0 1a 00 00 00 65 f4 0a 00 00 00 00 00 ....e....... +1085 0x00004945 data 26 22 2067249 0 2067249 0 196609 0 16 00 00 00 31 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +1086 0x0000495f control 12 -1 727434 0 -1 727434 0 ff ff ff ff 8a 19 0b 00 00 00 00 00 ............ +1087 0x0000496b control 12 22 717926 0 22 717926 0 16 00 00 00 66 f4 0a 00 00 00 00 00 ....f....... +1088 0x00004977 data 22 18 2067251 0 2067251 0 196609 0 12 00 00 00 33 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +1089 0x0000498d control 12 -1 727435 0 -1 727435 0 ff ff ff ff 8b 19 0b 00 00 00 00 00 ............ +1090 0x00004999 control 12 22 717927 0 22 717927 0 16 00 00 00 67 f4 0a 00 00 00 00 00 ....g....... +1091 0x000049a5 data 22 18 2067253 0 2067253 0 196609 0 12 00 00 00 35 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +1092 0x000049bb control 12 -1 727436 0 -1 727436 0 ff ff ff ff 8c 19 0b 00 00 00 00 00 ............ +1093 0x000049c7 control 12 22 717928 0 22 717928 0 16 00 00 00 68 f4 0a 00 00 00 00 00 ....h....... +1094 0x000049d3 data 22 18 2067255 0 2067255 0 196609 0 12 00 00 00 37 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +1095 0x000049e9 control 12 -1 727437 0 -1 727437 0 ff ff ff ff 8d 19 0b 00 00 00 00 00 ............ +1096 0x000049f5 control 12 -1 727438 0 -1 727438 0 ff ff ff ff 8e 19 0b 00 00 00 00 00 ............ +1097 0x00004a01 control 12 52 717929 0 52 717929 0 34 00 00 00 69 f4 0a 00 00 00 00 00 4...i....... +1098 0x00004a0d data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f7 10 02 00 00 00 00 00 00 00 f9 5c 00 76 4d 01 00 00 "0...Dk.................L."".([................\.v" +1099 0x00004a41 control 12 -1 727439 0 -1 727439 0 ff ff ff ff 8f 19 0b 00 00 00 00 00 ............ +1100 0x00004a4d control 12 26 717930 0 26 717930 0 1a 00 00 00 6a f4 0a 00 00 00 00 00 ....j....... +1101 0x00004a59 data 26 22 2067257 0 2067257 0 196609 0 16 00 00 00 39 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +1102 0x00004a73 control 12 -1 727440 0 -1 727440 0 ff ff ff ff 90 19 0b 00 00 00 00 00 ............ +1103 0x00004a7f control 12 22 717931 0 22 717931 0 16 00 00 00 6b f4 0a 00 00 00 00 00 ....k....... +1104 0x00004a8b data 22 18 2067259 0 2067259 0 196609 0 12 00 00 00 3b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +1105 0x00004aa1 control 12 -2 82581 82598 -2 82581 82598 fe ff ff ff 95 42 01 00 a6 42 01 00 .....B...B.. +1106 0x00004aad control 12 -1 727441 0 -1 727441 0 ff ff ff ff 91 19 0b 00 00 00 00 00 ............ +1107 0x00004ab9 control 12 22 717932 0 22 717932 0 16 00 00 00 6c f4 0a 00 00 00 00 00 ....l....... +1108 0x00004ac5 data 22 18 2067261 0 2067261 0 196609 0 12 00 00 00 3d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +1109 0x00004adb control 12 -1 727442 0 -1 727442 0 ff ff ff ff 92 19 0b 00 00 00 00 00 ............ +1110 0x00004ae7 control 12 22 717933 0 22 717933 0 16 00 00 00 6d f4 0a 00 00 00 00 00 ....m....... +1111 0x00004af3 data 22 18 2067263 0 2067263 0 196609 0 12 00 00 00 3f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +1112 0x00004b09 control 12 -1 727443 0 -1 727443 0 ff ff ff ff 93 19 0b 00 00 00 00 00 ............ +1113 0x00004b15 control 12 52 717934 0 52 717934 0 34 00 00 00 6e f4 0a 00 00 00 00 00 4...n....... +1114 0x00004b21 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f8 10 02 00 00 00 00 00 00 00 f5 f4 2e 76 4d 01 00 00 "0...Dk.................L."".([..................v" +1115 0x00004b55 control 12 -1 727444 0 -1 727444 0 ff ff ff ff 94 19 0b 00 00 00 00 00 ............ +1116 0x00004b61 control 12 26 717935 0 26 717935 0 1a 00 00 00 6f f4 0a 00 00 00 00 00 ....o....... +1117 0x00004b6d data 26 22 2067265 0 2067265 0 196609 0 16 00 00 00 41 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +1118 0x00004b87 control 12 -1 727445 0 -1 727445 0 ff ff ff ff 95 19 0b 00 00 00 00 00 ............ +1119 0x00004b93 control 12 22 717936 0 22 717936 0 16 00 00 00 70 f4 0a 00 00 00 00 00 ....p....... +1120 0x00004b9f data 22 18 2067267 0 2067267 0 196609 0 12 00 00 00 43 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +1121 0x00004bb5 control 12 -1 727446 0 -1 727446 0 ff ff ff ff 96 19 0b 00 00 00 00 00 ............ +1122 0x00004bc1 control 12 22 717937 0 22 717937 0 16 00 00 00 71 f4 0a 00 00 00 00 00 ....q....... +1123 0x00004bcd data 22 18 2067269 0 2067269 0 196609 0 12 00 00 00 45 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +1124 0x00004be3 control 12 -1 727447 0 -1 727447 0 ff ff ff ff 97 19 0b 00 00 00 00 00 ............ +1125 0x00004bef control 12 22 717938 0 22 717938 0 16 00 00 00 72 f4 0a 00 00 00 00 00 ....r....... +1126 0x00004bfb data 22 18 2067271 0 2067271 0 196609 0 12 00 00 00 47 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +1127 0x00004c11 control 12 -2 82582 82599 -2 82582 82599 fe ff ff ff 96 42 01 00 a7 42 01 00 .....B...B.. +1128 0x00004c1d control 12 -1 727448 0 -1 727448 0 ff ff ff ff 98 19 0b 00 00 00 00 00 ............ +1129 0x00004c29 control 12 52 717939 0 52 717939 0 34 00 00 00 73 f4 0a 00 00 00 00 00 4...s....... +1130 0x00004c35 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f9 10 02 00 00 00 00 00 00 00 be 5d 5d 76 4d 01 00 00 "0...Dk.................L."".([................]]v" +1131 0x00004c69 control 12 -1 727449 0 -1 727449 0 ff ff ff ff 99 19 0b 00 00 00 00 00 ............ +1132 0x00004c75 control 12 26 717940 0 26 717940 0 1a 00 00 00 74 f4 0a 00 00 00 00 00 ....t....... +1133 0x00004c81 data 26 22 2067273 0 2067273 0 196609 0 16 00 00 00 49 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +1134 0x00004c9b control 12 -1 727450 0 -1 727450 0 ff ff ff ff 9a 19 0b 00 00 00 00 00 ............ +1135 0x00004ca7 control 12 22 717941 0 22 717941 0 16 00 00 00 75 f4 0a 00 00 00 00 00 ....u....... +1136 0x00004cb3 data 22 18 2067275 0 2067275 0 196609 0 12 00 00 00 4b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +1137 0x00004cc9 control 12 -1 727451 0 -1 727451 0 ff ff ff ff 9b 19 0b 00 00 00 00 00 ............ +1138 0x00004cd5 control 12 22 717942 0 22 717942 0 16 00 00 00 76 f4 0a 00 00 00 00 00 ....v....... +1139 0x00004ce1 data 22 18 2067277 0 2067277 0 196609 0 12 00 00 00 4d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +1140 0x00004cf7 control 12 -1 727452 0 -1 727452 0 ff ff ff ff 9c 19 0b 00 00 00 00 00 ............ +1141 0x00004d03 control 12 22 717943 0 22 717943 0 16 00 00 00 77 f4 0a 00 00 00 00 00 ....w....... +1142 0x00004d0f data 22 18 2067279 0 2067279 0 196609 0 12 00 00 00 4f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +1143 0x00004d25 control 12 -1 727453 0 -1 727453 0 ff ff ff ff 9d 19 0b 00 00 00 00 00 ............ +1144 0x00004d31 control 12 -1 727454 0 -1 727454 0 ff ff ff ff 9e 19 0b 00 00 00 00 00 ............ +1145 0x00004d3d control 12 52 717944 0 52 717944 0 34 00 00 00 78 f4 0a 00 00 00 00 00 4...x....... +1146 0x00004d49 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fa 10 02 00 00 00 00 00 00 00 ea d4 8b 76 4d 01 00 00 "0...Dk.................L."".([..................v" +1147 0x00004d7d control 12 -1 727455 0 -1 727455 0 ff ff ff ff 9f 19 0b 00 00 00 00 00 ............ +1148 0x00004d89 control 12 26 717945 0 26 717945 0 1a 00 00 00 79 f4 0a 00 00 00 00 00 ....y....... +1149 0x00004d95 data 26 22 2067281 0 2067281 0 196609 0 16 00 00 00 51 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +1150 0x00004daf control 12 -1 727456 0 -1 727456 0 ff ff ff ff a0 19 0b 00 00 00 00 00 ............ +1151 0x00004dbb control 12 22 717946 0 22 717946 0 16 00 00 00 7a f4 0a 00 00 00 00 00 ....z....... +1152 0x00004dc7 data 22 18 2067283 0 2067283 0 196609 0 12 00 00 00 53 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +1153 0x00004ddd control 12 -1 727457 0 -1 727457 0 ff ff ff ff a1 19 0b 00 00 00 00 00 ............ +1154 0x00004de9 control 12 22 717947 0 22 717947 0 16 00 00 00 7b f4 0a 00 00 00 00 00 ....{....... +1155 0x00004df5 data 22 18 2067285 0 2067285 0 196609 0 12 00 00 00 55 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +1156 0x00004e0b control 12 -2 82583 82600 -2 82583 82600 fe ff ff ff 97 42 01 00 a8 42 01 00 .....B...B.. +1157 0x00004e17 control 12 -1 727458 0 -1 727458 0 ff ff ff ff a2 19 0b 00 00 00 00 00 ............ +1158 0x00004e23 control 12 22 717948 0 22 717948 0 16 00 00 00 7c f4 0a 00 00 00 00 00 ....|....... +1159 0x00004e2f data 22 18 2067287 0 2067287 0 196609 0 12 00 00 00 57 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +1160 0x00004e45 control 12 -1 727459 0 -1 727459 0 ff ff ff ff a3 19 0b 00 00 00 00 00 ............ +1161 0x00004e51 control 12 52 717949 0 52 717949 0 34 00 00 00 7d f4 0a 00 00 00 00 00 4...}....... +1162 0x00004e5d data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fb 10 02 00 00 00 00 00 00 00 fc 72 ba 76 4d 01 00 00 "0...Dk.................L."".([................r.v" +1163 0x00004e91 control 12 -1 727460 0 -1 727460 0 ff ff ff ff a4 19 0b 00 00 00 00 00 ............ +1164 0x00004e9d control 12 26 717950 0 26 717950 0 1a 00 00 00 7e f4 0a 00 00 00 00 00 ....~....... +1165 0x00004ea9 data 26 22 2067289 0 2067289 0 196609 0 16 00 00 00 59 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +1166 0x00004ec3 control 12 -1 727461 0 -1 727461 0 ff ff ff ff a5 19 0b 00 00 00 00 00 ............ +1167 0x00004ecf control 12 22 717951 0 22 717951 0 16 00 00 00 7f f4 0a 00 00 00 00 00 ............ +1168 0x00004edb data 22 18 2067291 0 2067291 0 196609 0 12 00 00 00 5b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +1169 0x00004ef1 control 12 -1 727462 0 -1 727462 0 ff ff ff ff a6 19 0b 00 00 00 00 00 ............ +1170 0x00004efd control 12 22 717952 0 22 717952 0 16 00 00 00 80 f4 0a 00 00 00 00 00 ............ +1171 0x00004f09 data 22 18 2067293 0 2067293 0 196609 0 12 00 00 00 5d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +1172 0x00004f1f control 12 -1 727463 0 -1 727463 0 ff ff ff ff a7 19 0b 00 00 00 00 00 ............ +1173 0x00004f2b control 12 22 717953 0 22 717953 0 16 00 00 00 81 f4 0a 00 00 00 00 00 ............ +1174 0x00004f37 data 22 18 2067295 0 2067295 0 196609 0 12 00 00 00 5f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +1175 0x00004f4d control 12 -1 727464 0 -1 727464 0 ff ff ff ff a8 19 0b 00 00 00 00 00 ............ +1176 0x00004f59 control 12 52 717954 0 52 717954 0 34 00 00 00 82 f4 0a 00 00 00 00 00 4........... +1177 0x00004f65 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fc 10 02 00 00 00 00 00 00 00 59 15 e9 76 4d 01 00 00 "0...Dk.................L."".([...............Y..v" +1178 0x00004f99 control 12 -1 727465 0 -1 727465 0 ff ff ff ff a9 19 0b 00 00 00 00 00 ............ +1179 0x00004fa5 control 12 26 717955 0 26 717955 0 1a 00 00 00 83 f4 0a 00 00 00 00 00 ............ +1180 0x00004fb1 data 26 22 2067297 0 2067297 0 196609 0 16 00 00 00 61 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +1181 0x00004fcb control 12 -2 82584 82601 -2 82584 82601 fe ff ff ff 98 42 01 00 a9 42 01 00 .....B...B.. +1182 0x00004fd7 control 12 -1 727466 0 -1 727466 0 ff ff ff ff aa 19 0b 00 00 00 00 00 ............ +1183 0x00004fe3 control 12 22 717956 0 22 717956 0 16 00 00 00 84 f4 0a 00 00 00 00 00 ............ +1184 0x00004fef data 22 18 2067299 0 2067299 0 196609 0 12 00 00 00 63 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +1185 0x00005005 control 12 -1 727467 0 -1 727467 0 ff ff ff ff ab 19 0b 00 00 00 00 00 ............ +1186 0x00005011 control 12 22 717957 0 22 717957 0 16 00 00 00 85 f4 0a 00 00 00 00 00 ............ +1187 0x0000501d data 22 18 2067301 0 2067301 0 196609 0 12 00 00 00 65 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +1188 0x00005033 control 12 -1 727468 0 -1 727468 0 ff ff ff ff ac 19 0b 00 00 00 00 00 ............ +1189 0x0000503f control 12 22 717958 0 22 717958 0 16 00 00 00 86 f4 0a 00 00 00 00 00 ............ +1190 0x0000504b data 22 18 2067303 0 2067303 0 196609 0 12 00 00 00 67 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +1191 0x00005061 control 12 -1 727469 0 -1 727469 0 ff ff ff ff ad 19 0b 00 00 00 00 00 ............ +1192 0x0000506d control 12 52 717959 0 52 717959 0 34 00 00 00 87 f4 0a 00 00 00 00 00 4........... +1193 0x00005079 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fd 10 02 00 00 00 00 00 00 00 bc aa 17 77 4d 01 00 00 "0...Dk.................L."".([..................w" +1194 0x000050ad control 12 -1 727470 0 -1 727470 0 ff ff ff ff ae 19 0b 00 00 00 00 00 ............ +1195 0x000050b9 control 12 26 717960 0 26 717960 0 1a 00 00 00 88 f4 0a 00 00 00 00 00 ............ +1196 0x000050c5 data 26 22 2067305 0 2067305 0 196609 0 16 00 00 00 69 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....i..................... +1197 0x000050df control 12 -1 727471 0 -1 727471 0 ff ff ff ff af 19 0b 00 00 00 00 00 ............ +1198 0x000050eb control 12 22 717961 0 22 717961 0 16 00 00 00 89 f4 0a 00 00 00 00 00 ............ +1199 0x000050f7 data 22 18 2067307 0 2067307 0 196609 0 12 00 00 00 6b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +1200 0x0000510d control 12 -1 727472 0 -1 727472 0 ff ff ff ff b0 19 0b 00 00 00 00 00 ............ +1201 0x00005119 control 12 22 717962 0 22 717962 0 16 00 00 00 8a f4 0a 00 00 00 00 00 ............ +1202 0x00005125 data 22 18 2067309 0 2067309 0 196609 0 12 00 00 00 6d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +1203 0x0000513b control 12 -2 82585 82602 -2 82585 82602 fe ff ff ff 99 42 01 00 aa 42 01 00 .....B...B.. +1204 0x00005147 control 12 -1 727473 0 -1 727473 0 ff ff ff ff b1 19 0b 00 00 00 00 00 ............ +1205 0x00005153 control 12 22 717963 0 22 717963 0 16 00 00 00 8b f4 0a 00 00 00 00 00 ............ +1206 0x0000515f data 22 18 2067311 0 2067311 0 196609 0 12 00 00 00 6f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +1207 0x00005175 control 12 -1 727474 0 -1 727474 0 ff ff ff ff b2 19 0b 00 00 00 00 00 ............ +1208 0x00005181 control 12 -1 727475 0 -1 727475 0 ff ff ff ff b3 19 0b 00 00 00 00 00 ............ +1209 0x0000518d control 12 52 717964 0 52 717964 0 34 00 00 00 8c f4 0a 00 00 00 00 00 4........... +1210 0x00005199 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fe 10 02 00 00 00 00 00 00 00 c0 32 46 77 4d 01 00 00 "0...Dk.................L."".([................2Fw" +1211 0x000051cd control 12 -1 727476 0 -1 727476 0 ff ff ff ff b4 19 0b 00 00 00 00 00 ............ +1212 0x000051d9 control 12 26 717965 0 26 717965 0 1a 00 00 00 8d f4 0a 00 00 00 00 00 ............ +1213 0x000051e5 data 26 22 2067313 0 2067313 0 196609 0 16 00 00 00 71 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....q..................... +1214 0x000051ff control 12 -1 727477 0 -1 727477 0 ff ff ff ff b5 19 0b 00 00 00 00 00 ............ +1215 0x0000520b control 12 22 717966 0 22 717966 0 16 00 00 00 8e f4 0a 00 00 00 00 00 ............ +1216 0x00005217 data 22 18 2067315 0 2067315 0 196609 0 12 00 00 00 73 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +1217 0x0000522d control 12 -1 727478 0 -1 727478 0 ff ff ff ff b6 19 0b 00 00 00 00 00 ............ +1218 0x00005239 control 12 22 717967 0 22 717967 0 16 00 00 00 8f f4 0a 00 00 00 00 00 ............ +1219 0x00005245 data 22 18 2067317 0 2067317 0 196609 0 12 00 00 00 75 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +1220 0x0000525b control 12 -1 727479 0 -1 727479 0 ff ff ff ff b7 19 0b 00 00 00 00 00 ............ +1221 0x00005267 control 12 22 717968 0 22 717968 0 16 00 00 00 90 f4 0a 00 00 00 00 00 ............ +1222 0x00005273 data 22 18 2067319 0 2067319 0 196609 0 12 00 00 00 77 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +1223 0x00005289 control 12 -1 727480 0 -1 727480 0 ff ff ff ff b8 19 0b 00 00 00 00 00 ............ +1224 0x00005295 control 12 52 717969 0 52 717969 0 34 00 00 00 91 f4 0a 00 00 00 00 00 4........... +1225 0x000052a1 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ff 10 02 00 00 00 00 00 00 00 4f e2 74 77 4d 01 00 00 "0...Dk.................L."".([...............O.tw" +1226 0x000052d5 control 12 -1 727481 0 -1 727481 0 ff ff ff ff b9 19 0b 00 00 00 00 00 ............ +1227 0x000052e1 control 12 26 717970 0 26 717970 0 1a 00 00 00 92 f4 0a 00 00 00 00 00 ............ +1228 0x000052ed data 26 22 2067321 0 2067321 0 196609 0 16 00 00 00 79 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....y..................... +1229 0x00005307 control 12 -1 727482 0 -1 727482 0 ff ff ff ff ba 19 0b 00 00 00 00 00 ............ +1230 0x00005313 control 12 22 717971 0 22 717971 0 16 00 00 00 93 f4 0a 00 00 00 00 00 ............ +1231 0x0000531f data 22 18 2067323 0 2067323 0 196609 0 12 00 00 00 7b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +1232 0x00005335 control 12 -2 82586 82603 -2 82586 82603 fe ff ff ff 9a 42 01 00 ab 42 01 00 .....B...B.. +1233 0x00005341 control 12 -1 727483 0 -1 727483 0 ff ff ff ff bb 19 0b 00 00 00 00 00 ............ +1234 0x0000534d control 12 22 717972 0 22 717972 0 16 00 00 00 94 f4 0a 00 00 00 00 00 ............ +1235 0x00005359 data 22 18 2067325 0 2067325 0 196609 0 12 00 00 00 7d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +1236 0x0000536f control 12 -1 727484 0 -1 727484 0 ff ff ff ff bc 19 0b 00 00 00 00 00 ............ +1237 0x0000537b control 12 22 717973 0 22 717973 0 16 00 00 00 95 f4 0a 00 00 00 00 00 ............ +1238 0x00005387 data 22 18 2067327 0 2067327 0 196609 0 12 00 00 00 7f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1239 0x0000539d control 12 -1 727485 0 -1 727485 0 ff ff ff ff bd 19 0b 00 00 00 00 00 ............ +1240 0x000053a9 control 12 -1 727486 0 -1 727486 0 ff ff ff ff be 19 0b 00 00 00 00 00 ............ +1241 0x000053b5 control 12 52 717974 0 52 717974 0 34 00 00 00 96 f4 0a 00 00 00 00 00 4........... +1242 0x000053c1 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 00 11 02 00 00 00 00 00 00 00 3d 4a a3 77 4d 01 00 00 "0...Dk.................L."".([...............=J.w" +1243 0x000053f5 control 12 -1 727487 0 -1 727487 0 ff ff ff ff bf 19 0b 00 00 00 00 00 ............ +1244 0x00005401 control 12 26 717975 0 26 717975 0 1a 00 00 00 97 f4 0a 00 00 00 00 00 ............ +1245 0x0000540d data 26 22 2067329 0 2067329 0 196609 0 16 00 00 00 81 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1246 0x00005427 control 12 -1 727488 0 -1 727488 0 ff ff ff ff c0 19 0b 00 00 00 00 00 ............ +1247 0x00005433 control 12 22 717976 0 22 717976 0 16 00 00 00 98 f4 0a 00 00 00 00 00 ............ +1248 0x0000543f data 22 18 2067331 0 2067331 0 196609 0 12 00 00 00 83 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1249 0x00005455 control 12 -1 727489 0 -1 727489 0 ff ff ff ff c1 19 0b 00 00 00 00 00 ............ +1250 0x00005461 control 12 22 717977 0 22 717977 0 16 00 00 00 99 f4 0a 00 00 00 00 00 ............ +1251 0x0000546d data 22 18 2067333 0 2067333 0 196609 0 12 00 00 00 85 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... diff --git a/captures/017-loopback-write-test-int-100/nmx-conversations.tsv b/captures/017-loopback-write-test-int-100/nmx-conversations.tsv new file mode 100644 index 0000000..d4c178f --- /dev/null +++ b/captures/017-loopback-write-test-int-100/nmx-conversations.tsv @@ -0,0 +1,6 @@ +capture selected_a selected_b payload_packets payload_bytes +captures\017-loopback-write-test-int-100\loopback.pcapng ::1:49704 ::1:53692 400 32726 + +conversation_a conversation_b payload_packets payload_bytes +::1:49704 ::1:53692 400 32726 +::1:49704 ::1:49829 2 270 diff --git a/captures/017-loopback-write-test-int-100/nmx-payload-packets.tsv b/captures/017-loopback-write-test-int-100/nmx-payload-packets.tsv new file mode 100644 index 0000000..5994c4e --- /dev/null +++ b/captures/017-loopback-write-test-int-100/nmx-payload-packets.tsv @@ -0,0 +1,401 @@ +frame time_relative from_service src sport dst dport seq ack payload_len hex_prefix ascii_preview +691 0.000000000 0 ::1 53692 ::1 49704 2123108705 4243993040 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +693 0.000641823 1 ::1 49704 ::1 53692 4243993040 2123108821 84 05000c03100000005400000002000000d016d016b7b900000600343937303400 ........T.................49704..........]...... +695 0.000822067 0 ::1 53692 ::1 49704 2123108821 4243993124 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +697 0.001075983 1 ::1 49704 ::1 53692 4243993124 2123108861 44 05000203100000002c00000002000000140000000000000000000000af3620d4 ........,....................6 ...rJ.."jR@.. +699 0.001308918 0 ::1 53692 ::1 49704 2123108861 4243993168 72 05000e03100000004800000003000000d016d016b7b900000100000001000100 ........H.......................K....k.F.@.`..Q. +701 0.001465321 1 ::1 49704 ::1 53692 4243993168 2123108933 56 05000f03100000003800000003000000d016d016b7b900000000000001000000 ........8............................].......... +703 0.001628160 0 ::1 53692 ::1 49704 2123108933 4243993224 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........6 . +705 0.004277706 1 ::1 49704 ::1 53692 4243993224 2123109029 28 05000203100000001c00000003000000040000000100000001000000 ............................ +707 0.004467010 0 ::1 53692 ::1 49704 2123109029 4243993252 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........6 . +709 0.004681587 1 ::1 49704 ::1 53692 4243993252 2123109089 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +711 0.005007744 0 ::1 53692 ::1 49704 2123109089 4243993344 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6 . +713 0.005218506 1 ::1 49704 ::1 53692 4243993344 2123109209 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +715 0.005399942 0 ::1 53692 ::1 49704 2123109209 4243993376 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........6 . +717 0.005584478 1 ::1 49704 ::1 53692 4243993376 2123109333 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +719 0.005754709 0 ::1 53692 ::1 49704 2123109333 4243993408 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........6 . +721 0.005976915 1 ::1 49704 ::1 53692 4243993408 2123109451 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +723 0.006137609 0 ::1 53692 ::1 49704 2123109451 4243993440 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6 . +725 0.006361961 1 ::1 49704 ::1 53692 4243993440 2123109571 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +727 0.006497622 0 ::1 53692 ::1 49704 2123109571 4243993472 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6 . +729 0.006669044 1 ::1 49704 ::1 53692 4243993472 2123109701 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +731 0.006851435 0 ::1 53692 ::1 49704 2123109701 4243993504 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6 . +733 0.007059813 1 ::1 49704 ::1 53692 4243993504 2123109831 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +735 0.007228851 0 ::1 53692 ::1 49704 2123109831 4243993536 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........6 . +737 0.007421017 1 ::1 49704 ::1 53692 4243993536 2123109973 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +739 0.007628441 0 ::1 53692 ::1 49704 2123109973 4243993568 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........6 . +741 0.007828474 1 ::1 49704 ::1 53692 4243993568 2123110089 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +743 0.008071423 0 ::1 53692 ::1 49704 2123110089 4243993600 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6 . +745 0.008242607 1 ::1 49704 ::1 53692 4243993600 2123110219 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +747 0.008407831 0 ::1 53692 ::1 49704 2123110219 4243993632 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........6 . +749 0.008583546 1 ::1 49704 ::1 53692 4243993632 2123110347 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +751 0.008750677 0 ::1 53692 ::1 49704 2123110347 4243993664 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........6 . +753 0.008981466 1 ::1 49704 ::1 53692 4243993664 2123110473 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +755 0.009572744 0 ::1 53692 ::1 49704 2123110473 4243993696 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........6 . +757 0.009763956 1 ::1 49704 ::1 53692 4243993696 2123110605 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +759 0.010001898 0 ::1 53692 ::1 49704 2123110605 4243993728 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........6 . +761 0.010179043 1 ::1 49704 ::1 53692 4243993728 2123110757 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +784 0.123556852 0 ::1 53692 ::1 49704 2123110757 4243993760 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +786 0.123846531 1 ::1 49704 ::1 53692 4243993760 2123110797 44 05000203100000002c00000012000000140000000000000000000000b3028f1a ........,......................./MwL..d.>?.w +788 0.124334574 0 ::1 53692 ::1 49704 2123110797 4243993804 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K............ +790 0.125912905 1 ::1 49704 ::1 53692 4243993804 2123110905 28 05000203100000001c00000013000000040000000100000001000000 ............................ +792 0.126117706 0 ::1 53692 ::1 49704 2123110905 4243993832 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +794 0.126344442 1 ::1 49704 ::1 53692 4243993832 2123110965 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +796 0.126599789 0 ::1 53692 ::1 49704 2123110965 4243993924 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +798 0.126809835 1 ::1 49704 ::1 53692 4243993924 2123111097 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +800 0.127020121 0 ::1 53692 ::1 49704 2123111097 4243993956 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +802 0.127207994 1 ::1 49704 ::1 53692 4243993956 2123111233 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +804 0.127376795 0 ::1 53692 ::1 49704 2123111233 4243993988 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +806 0.127563000 1 ::1 49704 ::1 53692 4243993988 2123111363 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +808 0.127728224 0 ::1 53692 ::1 49704 2123111363 4243994020 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +810 0.127953291 1 ::1 49704 ::1 53692 4243994020 2123111495 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +812 0.128145695 0 ::1 53692 ::1 49704 2123111495 4243994052 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +814 0.128332853 1 ::1 49704 ::1 53692 4243994052 2123111637 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +816 0.128500462 0 ::1 53692 ::1 49704 2123111637 4243994084 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +818 0.128684521 1 ::1 49704 ::1 53692 4243994084 2123111779 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +820 0.128848791 0 ::1 53692 ::1 49704 2123111779 4243994116 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +822 0.129042864 1 ::1 49704 ::1 53692 4243994116 2123111933 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +824 0.129217863 0 ::1 53692 ::1 49704 2123111933 4243994148 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +826 0.129319906 1 ::1 49704 ::1 53692 4243994148 2123112061 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +828 0.129485369 0 ::1 53692 ::1 49704 2123112061 4243994180 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +830 0.129667997 1 ::1 49704 ::1 53692 4243994180 2123112203 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +832 0.129831553 0 ::1 53692 ::1 49704 2123112203 4243994212 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +834 0.130090237 1 ::1 49704 ::1 53692 4243994212 2123112343 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +836 0.130259275 0 ::1 53692 ::1 49704 2123112343 4243994244 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +838 0.130443573 1 ::1 49704 ::1 53692 4243994244 2123112481 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +844 0.148690224 0 ::1 53692 ::1 49704 2123112481 4243994276 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +846 0.148890018 1 ::1 49704 ::1 53692 4243994276 2123112521 44 05000203100000002c00000020000000140000000000000000000000cec45d78 ........,... .................]x.>.F.O....G. +848 0.149174690 0 ::1 53692 ::1 49704 2123112521 4243994320 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K..........]x +850 0.151267290 1 ::1 49704 ::1 53692 4243994320 2123112625 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +852 0.151446342 0 ::1 53692 ::1 49704 2123112625 4243994348 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K..........]x +854 0.151602745 1 ::1 49704 ::1 53692 4243994348 2123112685 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +856 0.151881218 0 ::1 53692 ::1 49704 2123112685 4243994440 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K..........]x +858 0.152102709 1 ::1 49704 ::1 53692 4243994440 2123112813 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +860 0.152261257 0 ::1 53692 ::1 49704 2123112813 4243994472 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K..........]x +862 0.152444601 1 ::1 49704 ::1 53692 4243994472 2123112945 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +864 0.152591705 0 ::1 53692 ::1 49704 2123112945 4243994504 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K..........]x +866 0.152734756 1 ::1 49704 ::1 53692 4243994504 2123113071 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +868 0.152930975 0 ::1 53692 ::1 49704 2123113071 4243994536 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K..........]x +870 0.153093100 1 ::1 49704 ::1 53692 4243994536 2123113199 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +872 0.153242826 0 ::1 53692 ::1 49704 2123113199 4243994568 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K..........]x +874 0.153386831 1 ::1 49704 ::1 53692 4243994568 2123113337 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +876 0.153551340 0 ::1 53692 ::1 49704 2123113337 4243994600 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K..........]x +878 0.153719902 1 ::1 49704 ::1 53692 4243994600 2123113475 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +880 0.153891802 0 ::1 53692 ::1 49704 2123113475 4243994632 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K..........]x +882 0.154035091 1 ::1 49704 ::1 53692 4243994632 2123113625 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +884 0.154184341 0 ::1 53692 ::1 49704 2123113625 4243994664 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K..........]x +886 0.154329777 1 ::1 49704 ::1 53692 4243994664 2123113749 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +888 0.154475212 0 ::1 53692 ::1 49704 2123113749 4243994696 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K..........]x +890 0.154661894 1 ::1 49704 ::1 53692 4243994696 2123113887 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +892 0.154813290 0 ::1 53692 ::1 49704 2123113887 4243994728 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K..........]x +894 0.154975176 1 ::1 49704 ::1 53692 4243994728 2123114023 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +896 0.155115843 0 ::1 53692 ::1 49704 2123114023 4243994760 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K..........]x +898 0.155258417 1 ::1 49704 ::1 53692 4243994760 2123114157 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +900 0.155452967 0 ::1 53692 ::1 49704 2123114157 4243994792 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........]x +902 0.155599833 1 ::1 49704 ::1 53692 4243994792 2123114297 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +904 0.155771971 0 ::1 53692 ::1 49704 2123114297 4243994824 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K..........]x +906 0.155963421 1 ::1 49704 ::1 53692 4243994824 2123114443 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +939 0.266795397 0 ::1 53692 ::1 49704 2123114443 4243994856 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +941 0.267033577 1 ::1 49704 ::1 53692 4243994856 2123114483 44 05000203100000002c000000300000001400000000000000000000001952a003 ........,...0................R...SnG.8N...RM +943 0.267201185 0 ::1 53692 ::1 49704 2123114483 4243994900 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K.........R.. +945 0.268643856 1 ::1 49704 ::1 53692 4243994900 2123114595 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +947 0.268781662 0 ::1 53692 ::1 49704 2123114595 4243994928 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K.........R.. +949 0.268978119 1 ::1 49704 ::1 53692 4243994928 2123114655 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +951 0.269190073 0 ::1 53692 ::1 49704 2123114655 4243995020 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K.........R.. +953 0.269407988 1 ::1 49704 ::1 53692 4243995020 2123114791 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +955 0.269546270 0 ::1 53692 ::1 49704 2123114791 4243995052 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K.........R.. +957 0.269738197 1 ::1 49704 ::1 53692 4243995052 2123114931 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +959 0.269915104 0 ::1 53692 ::1 49704 2123114931 4243995084 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K.........R.. +961 0.270116329 1 ::1 49704 ::1 53692 4243995084 2123115065 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +963 0.270250320 0 ::1 53692 ::1 49704 2123115065 4243995116 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K.........R.. +965 0.270417452 1 ::1 49704 ::1 53692 4243995116 2123115201 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +967 0.270551205 0 ::1 53692 ::1 49704 2123115201 4243995148 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K.........R.. +969 0.270715952 1 ::1 49704 ::1 53692 4243995148 2123115347 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +971 0.270848036 0 ::1 53692 ::1 49704 2123115347 4243995180 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K.........R.. +973 0.271016121 1 ::1 49704 ::1 53692 4243995180 2123115493 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +975 0.271146774 0 ::1 53692 ::1 49704 2123115493 4243995212 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K.........R.. +977 0.271312475 1 ::1 49704 ::1 53692 4243995212 2123115651 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +979 0.271445990 0 ::1 53692 ::1 49704 2123115651 4243995244 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K.........R.. +981 0.271608829 1 ::1 49704 ::1 53692 4243995244 2123115783 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +983 0.271788120 0 ::1 53692 ::1 49704 2123115783 4243995276 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K.........R.. +985 0.271979570 1 ::1 49704 ::1 53692 4243995276 2123115929 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +987 0.272111893 0 ::1 53692 ::1 49704 2123115929 4243995308 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K.........R.. +989 0.272275686 1 ::1 49704 ::1 53692 4243995308 2123116073 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +991 0.272408247 0 ::1 53692 ::1 49704 2123116073 4243995340 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K.........R.. +993 0.272572517 1 ::1 49704 ::1 53692 4243995340 2123116215 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +995 0.272753239 0 ::1 53692 ::1 49704 2123116215 4243995372 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K.........R.. +997 0.272946596 1 ::1 49704 ::1 53692 4243995372 2123116363 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +999 0.273088932 0 ::1 53692 ::1 49704 2123116363 4243995404 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K.........R.. +1001 0.273253441 1 ::1 49704 ::1 53692 4243995404 2123116517 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +1067 0.400719404 0 ::1 53692 ::1 49704 2123116517 4243995436 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +1069 0.400998592 1 ::1 49704 ::1 53692 4243995436 2123116557 44 05000203100000002c00000040000000140000000000000000000000dd57216c ........,...@................W!l..OI.8rv...L +1071 0.401167631 0 ::1 53692 ::1 49704 2123116557 4243995480 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K.........W!l +1073 0.402770281 1 ::1 49704 ::1 53692 4243995480 2123116649 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +1075 0.402947187 0 ::1 53692 ::1 49704 2123116649 4243995508 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K.........W!l +1077 0.403171539 1 ::1 49704 ::1 53692 4243995508 2123116709 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1079 0.403396368 0 ::1 53692 ::1 49704 2123116709 4243995600 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K.........W!l +1081 0.403636932 1 ::1 49704 ::1 53692 4243995600 2123116825 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1083 0.403784037 0 ::1 53692 ::1 49704 2123116825 4243995632 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K.........W!l +1085 0.404013395 1 ::1 49704 ::1 53692 4243995632 2123116945 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1087 0.404159546 0 ::1 53692 ::1 49704 2123116945 4243995664 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K.........W!l +1089 0.404265404 1 ::1 49704 ::1 53692 4243995664 2123117059 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1091 0.404405594 0 ::1 53692 ::1 49704 2123117059 4243995696 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K.........W!l +1093 0.404577494 1 ::1 49704 ::1 53692 4243995696 2123117175 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1095 0.404713869 0 ::1 53692 ::1 49704 2123117175 4243995728 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K.........W!l +1097 0.404921532 1 ::1 49704 ::1 53692 4243995728 2123117301 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1099 0.405064583 0 ::1 53692 ::1 49704 2123117301 4243995760 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K.........W!l +1101 0.405239105 1 ::1 49704 ::1 53692 4243995760 2123117427 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1103 0.405436516 0 ::1 53692 ::1 49704 2123117427 4243995792 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K.........W!l +1105 0.405644894 1 ::1 49704 ::1 53692 4243995792 2123117565 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1107 0.405834913 0 ::1 53692 ::1 49704 2123117565 4243995824 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K.........W!l +1109 0.406034470 1 ::1 49704 ::1 53692 4243995824 2123117677 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1111 0.406237125 0 ::1 53692 ::1 49704 2123117677 4243995856 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K.........W!l +1113 0.406415224 1 ::1 49704 ::1 53692 4243995856 2123117803 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1115 0.406603813 0 ::1 53692 ::1 49704 2123117803 4243995888 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K.........W!l +1117 0.406792402 1 ::1 49704 ::1 53692 4243995888 2123117927 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1119 0.406988144 0 ::1 53692 ::1 49704 2123117927 4243995920 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K.........W!l +1121 0.407183647 1 ::1 49704 ::1 53692 4243995920 2123118049 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1123 0.407426119 0 ::1 53692 ::1 49704 2123118049 4243995952 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K.........W!l +1125 0.407626390 1 ::1 49704 ::1 53692 4243995952 2123118177 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1127 0.407912016 0 ::1 53692 ::1 49704 2123118177 4243995984 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K.........W!l +1129 0.408338070 1 ::1 49704 ::1 53692 4243995984 2123118311 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1131 0.408592701 0 ::1 53692 ::1 49704 2123118311 4243996016 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K.........W!l +1133 0.408778906 1 ::1 49704 ::1 53692 4243996016 2123118441 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1135 0.409004211 0 ::1 53692 ::1 49704 2123118441 4243996048 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K.........W!l +1137 0.409251690 1 ::1 49704 ::1 53692 4243996048 2123118569 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3748 8.981550455 0 ::1 53692 ::1 49704 2123118569 4243996080 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3750 8.981777191 1 ::1 49704 ::1 53692 4243996080 2123118609 44 05000203100000002c00000052000000140000000000000000000000ca1b92eb ........,...R...................hD.B...I.... +3752 8.981946707 0 ::1 53692 ::1 49704 2123118609 4243996124 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K............ +3754 8.983931780 1 ::1 49704 ::1 53692 4243996124 2123118709 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3756 8.984093189 0 ::1 53692 ::1 49704 2123118709 4243996152 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K............ +3758 8.984358549 1 ::1 49704 ::1 53692 4243996152 2123118769 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3760 8.984588861 0 ::1 53692 ::1 49704 2123118769 4243996244 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K............ +3762 8.984853268 1 ::1 49704 ::1 53692 4243996244 2123118893 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3764 8.984995365 0 ::1 53692 ::1 49704 2123118893 4243996276 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K............ +3766 8.985198736 1 ::1 49704 ::1 53692 4243996276 2123119021 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3768 8.985353470 0 ::1 53692 ::1 49704 2123119021 4243996308 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K............ +3770 8.985517025 1 ::1 49704 ::1 53692 4243996308 2123119143 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3772 8.985651255 0 ::1 53692 ::1 49704 2123119143 4243996340 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K............ +3774 8.985877275 1 ::1 49704 ::1 53692 4243996340 2123119267 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3776 8.986020565 0 ::1 53692 ::1 49704 2123119267 4243996372 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K............ +3778 8.986235142 1 ::1 49704 ::1 53692 4243996372 2123119401 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3780 8.986373186 0 ::1 53692 ::1 49704 2123119401 4243996404 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K............ +3782 8.986534357 1 ::1 49704 ::1 53692 4243996404 2123119535 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3784 8.986668110 0 ::1 53692 ::1 49704 2123119535 4243996436 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K............ +3786 8.986830711 1 ::1 49704 ::1 53692 4243996436 2123119681 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3788 8.986963749 0 ::1 53692 ::1 49704 2123119681 4243996468 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K............ +3790 8.987121820 1 ::1 49704 ::1 53692 4243996468 2123119801 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3792 8.987281084 0 ::1 53692 ::1 49704 2123119801 4243996500 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K............ +3794 8.987447739 1 ::1 49704 ::1 53692 4243996500 2123119935 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3796 8.987630606 0 ::1 53692 ::1 49704 2123119935 4243996532 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K............ +3798 8.987799406 1 ::1 49704 ::1 53692 4243996532 2123120067 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3800 8.987941027 0 ::1 53692 ::1 49704 2123120067 4243996564 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K............ +3802 8.988103390 1 ::1 49704 ::1 53692 4243996564 2123120197 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +3804 8.988342762 0 ::1 53692 ::1 49704 2123120197 4243996596 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K............ +3806 8.988506079 1 ::1 49704 ::1 53692 4243996596 2123120341 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +3808 8.988667250 0 ::1 53692 ::1 49704 2123120341 4243996628 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K............ +3810 8.988832235 1 ::1 49704 ::1 53692 4243996628 2123120489 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +3812 8.988974094 0 ::1 53692 ::1 49704 2123120489 4243996660 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K............ +3814 8.989135027 1 ::1 49704 ::1 53692 4243996660 2123120635 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +3816 8.989405155 0 ::1 53692 ::1 49704 2123120635 4243996692 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K............ +3818 8.989569664 1 ::1 49704 ::1 53692 4243996692 2123120793 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3824 9.066673040 0 ::1 53692 ::1 49704 2123120793 4243996724 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3826 9.066903114 1 ::1 49704 ::1 53692 4243996724 2123120833 44 05000203100000002c00000064000000140000000000000000000000bc28a26b ........,...d................(.k.M.G.....g.. +3828 9.067176342 0 ::1 53692 ::1 49704 2123120833 4243996768 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K.........(.k +3830 9.069084406 1 ::1 49704 ::1 53692 4243996768 2123120917 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3832 9.069187403 0 ::1 53692 ::1 49704 2123120917 4243996796 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K.........(.k +3834 9.069499016 1 ::1 49704 ::1 53692 4243996796 2123120977 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3839 9.069747925 0 ::1 53692 ::1 49704 2123120977 4243996888 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K.........(.k +3842 9.070006132 1 ::1 49704 ::1 53692 4243996888 2123121085 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3845 9.070163727 0 ::1 53692 ::1 49704 2123121085 4243996920 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K.........(.k +3848 9.070348978 1 ::1 49704 ::1 53692 4243996920 2123121197 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3850 9.070513964 0 ::1 53692 ::1 49704 2123121197 4243996952 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K.........(.k +3853 9.070685387 1 ::1 49704 ::1 53692 4243996952 2123121303 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3858 9.070843458 0 ::1 53692 ::1 49704 2123121303 4243996984 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K.........(.k +3861 9.071073771 1 ::1 49704 ::1 53692 4243996984 2123121411 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3864 9.071276426 0 ::1 53692 ::1 49704 2123121411 4243997016 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K.........(.k +3866 9.071393013 1 ::1 49704 ::1 53692 4243997016 2123121529 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3868 9.071578503 0 ::1 53692 ::1 49704 2123121529 4243997048 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K.........(.k +3870 9.071776628 1 ::1 49704 ::1 53692 4243997048 2123121647 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3872 9.071992397 0 ::1 53692 ::1 49704 2123121647 4243997080 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K.........(.k +3874 9.072211981 1 ::1 49704 ::1 53692 4243997080 2123121777 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3876 9.072369576 0 ::1 53692 ::1 49704 2123121777 4243997112 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K.........(.k +3878 9.072530270 1 ::1 49704 ::1 53692 4243997112 2123121881 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3880 9.072682858 0 ::1 53692 ::1 49704 2123121881 4243997144 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K.........(.k +3882 9.072867393 1 ::1 49704 ::1 53692 4243997144 2123121999 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3884 9.073085308 0 ::1 53692 ::1 49704 2123121999 4243997176 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K.........(.k +3886 9.073312998 1 ::1 49704 ::1 53692 4243997176 2123122115 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3888 9.073470592 0 ::1 53692 ::1 49704 2123122115 4243997208 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K.........(.k +3890 9.073632240 1 ::1 49704 ::1 53692 4243997208 2123122229 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3892 9.074203730 0 ::1 53692 ::1 49704 2123122229 4243997240 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K.........(.k +3894 9.074359894 1 ::1 49704 ::1 53692 4243997240 2123122357 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3896 9.074560404 0 ::1 53692 ::1 49704 2123122357 4243997272 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K.........(.k +3898 9.074805975 1 ::1 49704 ::1 53692 4243997272 2123122477 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3900 9.075101376 0 ::1 53692 ::1 49704 2123122477 4243997304 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K.........(.k +3902 9.075492620 1 ::1 49704 ::1 53692 4243997304 2123122597 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3904 9.075757027 0 ::1 53692 ::1 49704 2123122597 4243997336 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K.........(.k +3906 9.075998068 1 ::1 49704 ::1 53692 4243997336 2123122719 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3908 9.076191187 0 ::1 53692 ::1 49704 2123122719 4243997368 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K.........(.k +3910 9.076361656 1 ::1 49704 ::1 53692 4243997368 2123122853 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3912 9.076581240 0 ::1 53692 ::1 49704 2123122853 4243997400 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K.........(.k +3914 9.076746941 1 ::1 49704 ::1 53692 4243997400 2123122985 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3916 9.076939821 0 ::1 53692 ::1 49704 2123122985 4243997432 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K.........(.k +3918 9.077180862 1 ::1 49704 ::1 53692 4243997432 2123123115 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3920 9.077379704 0 ::1 53692 ::1 49704 2123123115 4243997464 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K.........(.k +3922 9.077586889 1 ::1 49704 ::1 53692 4243997464 2123123253 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3924 9.077831507 0 ::1 53692 ::1 49704 2123123253 4243997496 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K.........(.k +3926 9.078051567 1 ::1 49704 ::1 53692 4243997496 2123123397 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3928 9.078277111 0 ::1 53692 ::1 49704 2123123397 4243997528 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K.........(.k +3930 9.078487873 1 ::1 49704 ::1 53692 4243997528 2123123541 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3932 9.078691721 0 ::1 53692 ::1 49704 2123123541 4243997560 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K.........(.k +3934 9.078851223 1 ::1 49704 ::1 53692 4243997560 2123123657 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3936 9.079096794 0 ::1 53692 ::1 49704 2123123657 4243997592 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K.........(.k +3938 9.079256296 1 ::1 49704 ::1 53692 4243997592 2123123787 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3940 9.079449892 0 ::1 53692 ::1 49704 2123123787 4243997624 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K.........(.k +3942 9.079648733 1 ::1 49704 ::1 53692 4243997624 2123123925 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3944 9.079836607 0 ::1 53692 ::1 49704 2123123925 4243997656 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........(.k +3946 9.080047369 1 ::1 49704 ::1 53692 4243997656 2123124055 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3948 9.080233812 0 ::1 53692 ::1 49704 2123124055 4243997688 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........(.k +3950 9.080444813 1 ::1 49704 ::1 53692 4243997688 2123124177 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3952 9.080636978 0 ::1 53692 ::1 49704 2123124177 4243997720 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........(.k +3954 9.080801487 1 ::1 49704 ::1 53692 4243997720 2123124299 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3956 9.081028461 0 ::1 53692 ::1 49704 2123124299 4243997752 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........(.k +3958 9.081219435 1 ::1 49704 ::1 53692 4243997752 2123124433 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3960 9.081427574 0 ::1 53692 ::1 49704 2123124433 4243997784 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........(.k +3962 9.081597090 1 ::1 49704 ::1 53692 4243997784 2123124561 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3964 9.081789494 0 ::1 53692 ::1 49704 2123124561 4243997816 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........(.k +3966 9.082020521 1 ::1 49704 ::1 53692 4243997816 2123124685 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3972 9.116145372 0 ::1 53692 ::1 49704 2123124685 4243997848 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K.........(.k +3974 9.116387606 1 ::1 49704 ::1 53692 4243997848 2123125201 28 05000203100000001c00000085000000040000000100000001000000 ............................ +4010 9.153834820 0 ::1 53692 ::1 49704 2123125201 4243997876 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4012 9.154084921 1 ::1 49704 ::1 53692 4243997876 2123125241 44 05000203100000002c000000860000001400000000000000000000008cb1298a ........,.....................)..n.@..=..... +4014 9.154275894 0 ::1 53692 ::1 49704 2123125241 4243997920 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K..........). +4016 9.156245947 1 ::1 49704 ::1 53692 4243997920 2123125353 28 05000203100000001c00000087000000040000000100000001000000 ............................ +4017 9.156444311 0 ::1 53692 ::1 49704 2123125353 4243997948 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........). +4019 9.156547308 1 ::1 49704 ::1 53692 4243997948 2123125413 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4021 9.156785488 0 ::1 53692 ::1 49704 2123125413 4243998040 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K..........). +4023 9.156977177 1 ::1 49704 ::1 53692 4243998040 2123125549 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +4025 9.157130003 0 ::1 53692 ::1 49704 2123125549 4243998072 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........). +4027 9.157286406 1 ::1 49704 ::1 53692 4243998072 2123125689 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +4029 9.157456398 0 ::1 53692 ::1 49704 2123125689 4243998104 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........). +4031 9.157648802 1 ::1 49704 ::1 53692 4243998104 2123125823 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +4033 9.157807112 0 ::1 53692 ::1 49704 2123125823 4243998136 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K..........). +4035 9.158013105 1 ::1 49704 ::1 53692 4243998136 2123125959 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +4037 9.158162355 0 ::1 53692 ::1 49704 2123125959 4243998168 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4039 9.158365726 1 ::1 49704 ::1 53692 4243998168 2123126105 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +4041 9.158515453 0 ::1 53692 ::1 49704 2123126105 4243998200 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4043 9.158666372 1 ::1 49704 ::1 53692 4243998200 2123126251 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +4045 9.158811331 0 ::1 53692 ::1 49704 2123126251 4243998232 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K..........). +4047 9.158960819 1 ::1 49704 ::1 53692 4243998232 2123126409 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +4049 9.159102678 0 ::1 53692 ::1 49704 2123126409 4243998264 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........). +4051 9.159306526 1 ::1 49704 ::1 53692 4243998264 2123126541 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +4053 9.159555912 0 ::1 53692 ::1 49704 2123126541 4243998296 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4055 9.159791231 1 ::1 49704 ::1 53692 4243998296 2123126687 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +4057 9.159958601 0 ::1 53692 ::1 49704 2123126687 4243998328 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K..........). +4059 9.160196543 1 ::1 49704 ::1 53692 4243998328 2123126831 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +4061 9.160399675 0 ::1 53692 ::1 49704 2123126831 4243998360 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........). +4063 9.160639524 1 ::1 49704 ::1 53692 4243998360 2123126973 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +4065 9.160867214 0 ::1 53692 ::1 49704 2123126973 4243998392 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K..........). +4067 9.161028385 1 ::1 49704 ::1 53692 4243998392 2123127133 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +4069 9.161208630 0 ::1 53692 ::1 49704 2123127133 4243998424 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K..........). +4071 9.161405325 1 ::1 49704 ::1 53692 4243998424 2123127289 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +4073 9.161628485 0 ::1 53692 ::1 49704 2123127289 4243998456 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K..........). +4075 9.161799908 1 ::1 49704 ::1 53692 4243998456 2123127443 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +4077 9.161964893 0 ::1 53692 ::1 49704 2123127443 4243998488 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4079 9.162117958 1 ::1 49704 ::1 53692 4243998488 2123127589 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +4081 9.162269592 0 ::1 53692 ::1 49704 2123127589 4243998520 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K..........). +4083 9.162914515 1 ::1 49704 ::1 53692 4243998520 2123127743 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +4085 9.163070202 0 ::1 53692 ::1 49704 2123127743 4243998552 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........). +4087 9.163224697 1 ::1 49704 ::1 53692 4243998552 2123127893 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +4089 9.163378000 0 ::1 53692 ::1 49704 2123127893 4243998584 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........). +4091 9.163571119 1 ::1 49704 ::1 53692 4243998584 2123128045 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +4093 9.163735390 0 ::1 53692 ::1 49704 2123128045 4243998616 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........). +4095 9.163887978 1 ::1 49704 ::1 53692 4243998616 2123128185 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +4097 9.164063454 0 ::1 53692 ::1 49704 2123128185 4243998648 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K..........). +4099 9.164243460 1 ::1 49704 ::1 53692 4243998648 2123128333 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +4101 9.164460897 0 ::1 53692 ::1 49704 2123128333 4243998680 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........). +4103 9.164641857 1 ::1 49704 ::1 53692 4243998680 2123128495 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +4105 9.164801598 0 ::1 53692 ::1 49704 2123128495 4243998712 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K..........). +4107 9.164958000 1 ::1 49704 ::1 53692 4243998712 2123128667 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +4109 9.165226936 0 ::1 53692 ::1 49704 2123128667 4243998744 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K..........). +4111 9.165448666 1 ::1 49704 ::1 53692 4243998744 2123128811 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +4117 9.173780918 0 ::1 53692 ::1 49704 2123128811 4243998776 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4121 9.173970699 1 ::1 49704 ::1 53692 4243998776 2123128851 44 05000203100000002c000000a0000000140000000000000000000000b7c932e9 ........,.....................2...&G....7... +4125 9.174151421 0 ::1 53692 ::1 49704 2123128851 4243998820 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K..........2. +4135 9.175962448 1 ::1 49704 ::1 53692 4243998820 2123128979 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +4137 9.176122189 0 ::1 53692 ::1 49704 2123128979 4243998848 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........2. +4139 9.176326036 1 ::1 49704 ::1 53692 4243998848 2123129039 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4141 9.176626921 0 ::1 53692 ::1 49704 2123129039 4243998940 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........2. +4143 9.176826000 1 ::1 49704 ::1 53692 4243998940 2123129191 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +4145 9.176988125 0 ::1 53692 ::1 49704 2123129191 4243998972 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K..........2. +4147 9.177153826 1 ::1 49704 ::1 53692 4243998972 2123129347 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +4149 9.177306652 0 ::1 53692 ::1 49704 2123129347 4243999004 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........2. +4151 9.177496195 1 ::1 49704 ::1 53692 4243999004 2123129497 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +4153 9.177650213 0 ::1 53692 ::1 49704 2123129497 4243999036 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........2. +4155 9.177807808 1 ::1 49704 ::1 53692 4243999036 2123129649 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +4157 9.177958250 0 ::1 53692 ::1 49704 2123129649 4243999068 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........2. +4159 9.178117514 1 ::1 49704 ::1 53692 4243999068 2123129811 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +4161 9.178267717 0 ::1 53692 ::1 49704 2123129811 4243999100 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........2. +4163 9.178512335 1 ::1 49704 ::1 53692 4243999100 2123129973 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +4165 9.178698063 0 ::1 53692 ::1 49704 2123129973 4243999132 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K..........2. +4167 9.178864241 1 ::1 49704 ::1 53692 4243999132 2123130147 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +4169 9.179014683 0 ::1 53692 ::1 49704 2123130147 4243999164 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K..........2. +4171 9.179170847 1 ::1 49704 ::1 53692 4243999164 2123130295 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +4173 9.179359198 0 ::1 53692 ::1 49704 2123130295 4243999196 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........2. +4175 9.179608583 1 ::1 49704 ::1 53692 4243999196 2123130457 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +4177 9.180224180 0 ::1 53692 ::1 49704 2123130457 4243999228 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K..........2. +4179 9.180439234 1 ::1 49704 ::1 53692 4243999228 2123130617 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +4181 9.180617094 0 ::1 53692 ::1 49704 2123130617 4243999260 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K..........2. +4183 9.180784941 1 ::1 49704 ::1 53692 4243999260 2123130775 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +4185 9.181010962 0 ::1 53692 ::1 49704 2123130775 4243999292 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K..........2. +4187 9.181167841 1 ::1 49704 ::1 53692 4243999292 2123130945 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +4189 9.181364059 0 ::1 53692 ::1 49704 2123130945 4243999324 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K..........2. +4191 9.181527138 1 ::1 49704 ::1 53692 4243999324 2123131127 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +4197 9.188490391 0 ::1 53692 ::1 49704 2123131127 4243999356 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4199 9.188665152 1 ::1 49704 ::1 53692 4243999356 2123131167 44 05000203100000002c000000b0000000140000000000000000000000d6368360 ........,....................6.`/..N.:...*.. +4201 9.188811302 0 ::1 53692 ::1 49704 2123131167 4243999400 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........6.` +4203 9.190430880 1 ::1 49704 ::1 53692 4243999400 2123131263 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +4205 9.190572977 0 ::1 53692 ::1 49704 2123131263 4243999428 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........6.` +4207 9.190734625 1 ::1 49704 ::1 53692 4243999428 2123131323 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4209 9.190994501 0 ::1 53692 ::1 49704 2123131323 4243999520 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6.` +4211 9.191169262 1 ::1 49704 ::1 53692 4243999520 2123131443 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +4213 9.191309929 0 ::1 53692 ::1 49704 2123131443 4243999552 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........6.` +4215 9.191513777 1 ::1 49704 ::1 53692 4243999552 2123131567 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +4217 9.191643715 0 ::1 53692 ::1 49704 2123131567 4243999584 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........6.` +4219 9.191792488 1 ::1 49704 ::1 53692 4243999584 2123131685 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +4221 9.191920042 0 ::1 53692 ::1 49704 2123131685 4243999616 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6.` +4223 9.192068577 1 ::1 49704 ::1 53692 4243999616 2123131805 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +4225 9.192197084 0 ::1 53692 ::1 49704 2123131805 4243999648 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4227 9.192348242 1 ::1 49704 ::1 53692 4243999648 2123131935 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +4229 9.192506075 0 ::1 53692 ::1 49704 2123131935 4243999680 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4231 9.192654371 1 ::1 49704 ::1 53692 4243999680 2123132065 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +4233 9.192785025 0 ::1 53692 ::1 49704 2123132065 4243999712 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........6.` +4235 9.193014383 1 ::1 49704 ::1 53692 4243999712 2123132207 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +4237 9.193143368 0 ::1 53692 ::1 49704 2123132207 4243999744 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........6.` +4239 9.193320990 1 ::1 49704 ::1 53692 4243999744 2123132323 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +4241 9.193496943 0 ::1 53692 ::1 49704 2123132323 4243999776 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4243 9.193653822 1 ::1 49704 ::1 53692 4243999776 2123132453 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +4245 9.193823814 0 ::1 53692 ::1 49704 2123132453 4243999808 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........6.` +4247 9.193976402 1 ::1 49704 ::1 53692 4243999808 2123132581 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +4249 9.194106817 0 ::1 53692 ::1 49704 2123132581 4243999840 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........6.` +4251 9.194259405 1 ::1 49704 ::1 53692 4243999840 2123132707 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +4253 9.194484711 0 ::1 53692 ::1 49704 2123132707 4243999872 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........6.` +4255 9.194634199 1 ::1 49704 ::1 53692 4243999872 2123132833 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +4257 9.194814682 0 ::1 53692 ::1 49704 2123132833 4243999904 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........6.` +4259 9.195093393 1 ::1 49704 ::1 53692 4243999904 2123132965 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +4261 9.195235968 0 ::1 53692 ::1 49704 2123132965 4243999936 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4263 9.195416212 1 ::1 49704 ::1 53692 4243999936 2123133095 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +4265 9.195554733 0 ::1 53692 ::1 49704 2123133095 4243999968 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........6.` +4267 9.195737600 1 ::1 49704 ::1 53692 4243999968 2123133233 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +4269 9.195944071 0 ::1 53692 ::1 49704 2123133233 4244000000 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........6.` +4271 9.196202040 1 ::1 49704 ::1 53692 4244000000 2123133369 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4273 9.196380615 0 ::1 53692 ::1 49704 2123133369 4244000032 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........6.` +4275 9.196569681 1 ::1 49704 ::1 53692 4244000032 2123133501 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4277 9.196796417 0 ::1 53692 ::1 49704 2123133501 4244000064 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........6.` +4279 9.196959019 1 ::1 49704 ::1 53692 4244000064 2123133643 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4281 9.197156906 0 ::1 53692 ::1 49704 2123133643 4244000096 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........6.` +4283 9.197313547 1 ::1 49704 ::1 53692 4244000096 2123133791 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4293 9.234714031 0 ::1 53692 ::1 49704 2123133791 4244000128 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K.........(.k +4295 9.235087156 1 ::1 49704 ::1 53692 4244000128 2123134081 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4317 9.312241554 0 ::1 53692 ::1 49704 2123134081 4244000156 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K.........(.k +4319 9.312534809 1 ::1 49704 ::1 53692 4244000156 2123134287 28 05000203100000001c000000c7000000040000000100000001000000 ............................ diff --git a/captures/017-loopback-write-test-int-100/nmx-stream-__1_49704-to-__1_53692.bin b/captures/017-loopback-write-test-int-100/nmx-stream-__1_49704-to-__1_53692.bin new file mode 100644 index 0000000..3bba2f0 Binary files /dev/null and b/captures/017-loopback-write-test-int-100/nmx-stream-__1_49704-to-__1_53692.bin differ diff --git a/captures/017-loopback-write-test-int-100/nmx-stream-__1_53692-to-__1_49704.bin b/captures/017-loopback-write-test-int-100/nmx-stream-__1_53692-to-__1_49704.bin new file mode 100644 index 0000000..2b50760 Binary files /dev/null and b/captures/017-loopback-write-test-int-100/nmx-stream-__1_53692-to-__1_49704.bin differ diff --git a/captures/017-loopback-write-test-int-100/stderr.txt b/captures/017-loopback-write-test-int-100/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/017-loopback-write-test-int-100/stdout.txt b/captures/017-loopback-write-test-int-100/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/017-loopback-write-test-int-100/tcp-conversations.tsv b/captures/017-loopback-write-test-int-100/tcp-conversations.tsv new file mode 100644 index 0000000..2826b45 --- /dev/null +++ b/captures/017-loopback-write-test-int-100/tcp-conversations.tsv @@ -0,0 +1,70 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2532 48398 0.032012939 24.129876137 +::1:49704 ::1:53692 400 32726 1.929789782 11.242324591 +fe80::3608:256c:365:cc73:53725 fe80::3608:256c:365:cc73:55555 2 14170 20.742325068 20.807974577 +fe80::3608:256c:365:cc73:53684 fe80::3608:256c:365:cc73:55555 2 13997 0.442075014 0.507267475 +fe80::3608:256c:365:cc73:53701 fe80::3608:256c:365:cc73:55555 2 13997 6.442221403 6.510187387 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 21 8281 12.106013298 19.243115902 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 32 3878 7.847247124 22.968593597 +::1:808 ::1:53694 16 2882 2.977779627 2.989975929 +::1:808 ::1:53693 16 2880 2.825201273 2.836961985 +::1:808 ::1:53687 16 2870 1.150949717 1.161853790 +::1:808 ::1:53686 16 2868 1.004144907 1.015384912 +fe80::3608:256c:365:cc73:53708 fe80::3608:256c:365:cc73:55555 3 2703 8.084433317 10.518767834 +::1:135 ::1:53691 20 2600 1.926482439 11.118055105 +::1:32571 ::1:53715 4 2196 11.866253376 11.873194456 +fe80::3608:256c:365:cc73:53688 fe80::3608:256c:365:cc73:55555 3 1941 1.885463238 4.335511684 +::1:80 ::1:53719 6 1821 16.982288361 16.988838434 +::1:80 ::1:53714 6 1820 9.959660292 9.966046333 +::1:80 ::1:53704 6 1793 6.724516392 6.732150793 +::1:80 ::1:53707 6 1793 7.336541176 7.343629360 +::1:80 ::1:53710 6 1793 8.274720669 8.282285213 +::1:80 ::1:53717 6 1793 16.730435610 16.737404346 +::1:80 ::1:53722 6 1793 17.343608141 17.351579189 +::1:80 ::1:53698 6 1792 6.055049896 6.061878204 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 23.325521469 23.325967073 +::1:80 ::1:53690 6 1788 1.918711901 1.925806522 +::1:80 ::1:53700 6 1788 6.133325577 6.139866590 +::1:80 ::1:53727 6 1788 21.919631481 21.926628828 +::1:80 ::1:53729 6 1788 22.035992622 22.042614460 +::1:80 ::1:53696 6 1787 4.464081287 4.470276594 +::1:80 ::1:53712 6 1784 9.284097910 9.289524794 +fe80::3608:256c:365:cc73:53685 fe80::3608:256c:365:cc73:55555 2 1202 0.509984493 0.514144421 +fe80::3608:256c:365:cc73:53702 fe80::3608:256c:365:cc73:55555 2 1202 6.517572641 6.523656607 +127.0.0.1:57684 127.0.0.1:57745 97 1164 0.000000000 24.030325174 +127.0.0.1:57608 127.0.0.1:57631 97 1164 0.005995512 24.039368391 +127.0.0.1:57470 127.0.0.1:57477 96 1152 0.140560389 23.728892803 +127.0.0.1:57484 127.0.0.1:57746 96 1152 0.143447161 23.920021772 +127.0.0.1:57485 127.0.0.1:57747 96 1152 0.188566446 23.915691853 +::1:808 ::1:55800 2 1150 16.953164339 16.953747272 +10.100.0.48:1433 10.100.0.48:49792 8 1028 6.422014713 16.428812981 +10.100.0.48:1433 10.100.0.48:49805 12 1002 4.824698687 14.827930689 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53724 6 913 19.224145412 19.244776726 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53723 6 900 19.198850393 19.221549988 +fe80::3608:256c:365:cc73:53730 fe80::3608:256c:365:cc73:55555 2 661 22.052742004 22.053309679 +::1:808 ::1:49859 1 499 12.543954134 12.543954134 +::1:808 ::1:55769 1 488 3.463908434 3.463908434 +::1:80 ::1:53689 2 332 1.911880493 1.915456295 +::1:80 ::1:53695 2 332 4.456342936 4.460227489 +::1:80 ::1:53697 2 332 6.047742367 6.051459551 +::1:80 ::1:53699 2 332 6.124667645 6.128223658 +::1:80 ::1:53703 2 332 6.717080832 6.720506668 +::1:80 ::1:53706 2 332 7.328810692 7.332525492 +::1:80 ::1:53709 2 332 8.266743660 8.270502329 +::1:80 ::1:53711 2 332 9.277491808 9.280807972 +::1:80 ::1:53713 2 332 9.952991247 9.956530809 +::1:80 ::1:53716 2 332 16.722407103 16.726256371 +::1:80 ::1:53718 2 332 16.974781990 16.978461266 +::1:80 ::1:53721 2 332 17.333484650 17.337900400 +::1:80 ::1:53726 2 332 21.912481308 21.915997028 +::1:80 ::1:53728 2 332 22.028113604 22.031753063 +::1:49704 ::1:49829 2 270 20.552636147 20.553011179 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53705 1 52 7.235880852 7.235880852 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53720 1 52 17.237113476 17.237113476 +127.0.0.1:49787 127.0.0.1:49788 31 31 0.442350388 22.053095818 +127.0.0.1:57471 127.0.0.1:63342 4 24 4.246703863 19.248844385 +10.100.0.48:1433 10.100.0.48:50767 2 2 11.856192589 12.028496981 +10.100.0.48:1433 10.100.0.48:49936 1 1 23.430858374 23.430858374 +10.100.0.48:1433 10.100.0.48:49935 1 1 23.994510889 23.994510889 +10.100.0.48:1433 10.100.0.48:49933 1 1 24.013372660 24.013372660 +10.100.0.48:1433 10.100.0.48:49934 1 1 24.013736486 24.013736486 diff --git a/captures/017-loopback-write-test-int-100/tcp-payload-57415-57433-decoded.tsv b/captures/017-loopback-write-test-int-100/tcp-payload-57415-57433-decoded.tsv new file mode 100644 index 0000000..9b7f530 --- /dev/null +++ b/captures/017-loopback-write-test-int-100/tcp-payload-57415-57433-decoded.tsv @@ -0,0 +1,2533 @@ +frame time_relative direction src dst seq payload_len first_i32 second_i32 third_i32 first_u32_hex length_prefixed body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +5 0.000000000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333286816 12 26 727069 0 0x0000001a 0 26 727069 0 1a 00 00 00 1d 18 0b 00 00 00 00 00 ............ +7 0.000191927 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333286828 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1994981376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +9 0.000476122 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267763 12 -1 727069 0 0xffffffff 0 -1 727069 0 ff ff ff ff 1d 18 0b 00 00 00 00 00 ............ +11 0.000900030 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267775 12 22 717587 0 0x00000016 0 22 717587 0 16 00 00 00 13 f3 0a 00 00 00 00 00 ............ +13 0.001066923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267787 22 18 2066711 0 0x00000012 1 2066711 0 196609 0 12 00 00 00 17 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +15 0.001381159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333286854 12 -1 717587 0 0xffffffff 0 -1 717587 0 ff ff ff ff 13 f3 0a 00 00 00 00 00 ............ +17 0.062152624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333286866 12 101 727070 0 0x00000065 0 101 727070 0 65 00 00 00 1e 18 0b 00 00 00 00 00 e........... +19 0.062356949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333286878 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b2 10 02 00 00 00 00 00 a7 8e 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b2 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +21 0.062706947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267809 12 -1 727070 0 0xffffffff 0 -1 727070 0 ff ff ff ff 1e 18 0b 00 00 00 00 00 ............ +23 0.063734055 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267821 12 52 717588 0 0x00000034 0 52 717588 0 34 00 00 00 14 f3 0a 00 00 00 00 00 4........... +25 0.063937187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267833 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b2 10 02 00 00 00 00 00 00 00 4c f0 77 69 4d 01 00 00 "0...Dk.................L."".([...............L.wi" +27 0.064235449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333286979 12 -1 717588 0 0xffffffff 0 -1 717588 0 ff ff ff ff 14 f3 0a 00 00 00 00 00 ............ +29 0.065073252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333286991 12 30 727071 0 0x0000001e 0 30 727071 0 1e 00 00 00 1f 18 0b 00 00 00 00 00 ............ +31 0.065276146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287003 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1994850304 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +33 0.065578699 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267885 12 -1 727071 0 0xffffffff 0 -1 727071 0 ff ff ff ff 1f 18 0b 00 00 00 00 00 ............ +35 0.065982819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267897 12 26 717589 0 0x0000001a 0 26 717589 0 1a 00 00 00 15 f3 0a 00 00 00 00 00 ............ +37 0.066232920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267909 26 22 2066713 0 0x00000016 1 2066713 0 196609 0 16 00 00 00 19 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +39 0.066497803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287033 12 -1 717589 0 0xffffffff 0 -1 717589 0 ff ff ff ff 15 f3 0a 00 00 00 00 00 ............ +41 0.103799582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287045 12 26 727072 0 0x0000001a 0 26 727072 0 1a 00 00 00 20 18 0b 00 00 00 00 00 .... ....... +43 0.103978157 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287057 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1994719232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +45 0.104352713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267935 12 -1 727072 0 0xffffffff 0 -1 727072 0 ff ff ff ff 20 18 0b 00 00 00 00 00 .... ....... +47 0.104785442 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267947 12 22 717590 0 0x00000016 0 22 717590 0 16 00 00 00 16 f3 0a 00 00 00 00 00 ............ +49 0.104946136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267959 22 18 2066715 0 0x00000012 1 2066715 0 196609 0 12 00 00 00 1b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +51 0.105269194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287083 12 -1 717590 0 0xffffffff 0 -1 717590 0 ff ff ff ff 16 f3 0a 00 00 00 00 00 ............ +53 0.105755091 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267981 12 -2 82539 82556 0xfffffffe 0 -2 82539 82556 fe ff ff ff 6b 42 01 00 7c 42 01 00 ....kB..|B.. +64 0.156553745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287095 12 -2 82557 82539 0xfffffffe 0 -2 82557 82539 fe ff ff ff 7d 42 01 00 6b 42 01 00 ....}B..kB.. +69 0.207743168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287107 12 26 727073 0 0x0000001a 0 26 727073 0 1a 00 00 00 21 18 0b 00 00 00 00 00 ....!....... +71 0.207932472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287119 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1994588160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +73 0.208339930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377267993 12 -1 727073 0 0xffffffff 0 -1 727073 0 ff ff ff ff 21 18 0b 00 00 00 00 00 ....!....... +75 0.208754778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268005 12 22 717591 0 0x00000016 0 22 717591 0 16 00 00 00 17 f3 0a 00 00 00 00 00 ............ +77 0.208923101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268017 22 18 2066717 0 0x00000012 1 2066717 0 196609 0 12 00 00 00 1d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +79 0.209311962 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287145 12 -1 717591 0 0xffffffff 0 -1 717591 0 ff ff ff ff 17 f3 0a 00 00 00 00 00 ............ +81 0.311100006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287157 12 26 727074 0 0x0000001a 0 26 727074 0 1a 00 00 00 22 18 0b 00 00 00 00 00 "....""......." +83 0.311287403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287169 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1994457088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +85 0.311662674 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268039 12 -1 727074 0 0xffffffff 0 -1 727074 0 ff ff ff ff 22 18 0b 00 00 00 00 00 "....""......." +87 0.312063217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268051 12 22 717592 0 0x00000016 0 22 717592 0 16 00 00 00 18 f3 0a 00 00 00 00 00 ............ +89 0.312224865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268063 22 18 2066719 0 0x00000012 1 2066719 0 196609 0 12 00 00 00 1f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +91 0.312634468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287195 12 -1 717592 0 0xffffffff 0 -1 717592 0 ff ff ff ff 18 f3 0a 00 00 00 00 00 ............ +97 0.367356777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287207 12 34 727075 0 0x00000022 0 34 727075 0 22 00 00 00 23 18 0b 00 00 00 00 00 """...#......." +99 0.367557049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287219 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 280166400 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b3 10 02 00 00 00 00 00 d8 8f 22 c3 9d 01 00 00 ".....!...o3.................""....." +101 0.367686510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287253 12 67 727076 0 0x00000043 0 67 727076 0 43 00 00 00 24 18 0b 00 00 00 00 00 C...$....... +103 0.367773533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287265 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 9a 6f 1f c6 ?.....3...|8...................=B.....&......... +105 0.367872000 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268085 12 -1 727075 0 0xffffffff 0 -1 727075 0 ff ff ff ff 23 18 0b 00 00 00 00 00 ....#....... +107 0.368042707 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268097 12 -1 727076 0 0xffffffff 0 -1 727076 0 ff ff ff ff 24 18 0b 00 00 00 00 00 ....$....... +109 0.369893312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268109 12 52 717593 0 0x00000034 0 52 717593 0 34 00 00 00 19 f3 0a 00 00 00 00 00 4........... +111 0.370058060 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268121 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b3 10 02 00 00 00 00 00 00 00 5e a9 a6 69 4d 01 00 00 "0...Dk.................L."".([...............^..i" +113 0.370328665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287332 12 -1 717593 0 0xffffffff 0 -1 717593 0 ff ff ff ff 19 f3 0a 00 00 00 00 00 ............ +115 0.371201992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287344 12 30 727077 0 0x0000001e 0 30 727077 0 1e 00 00 00 25 18 0b 00 00 00 00 00 ....%....... +117 0.371351957 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287356 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1994326016 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +119 0.371643782 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268173 12 -1 727077 0 0xffffffff 0 -1 727077 0 ff ff ff ff 25 18 0b 00 00 00 00 00 ....%....... +121 0.372008562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268185 12 26 717594 0 0x0000001a 0 26 717594 0 1a 00 00 00 1a f3 0a 00 00 00 00 00 ............ +123 0.372158766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268197 26 22 2066721 0 0x00000016 1 2066721 0 196609 0 16 00 00 00 21 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +125 0.372453451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287386 12 -1 717594 0 0xffffffff 0 -1 717594 0 ff ff ff ff 1a f3 0a 00 00 00 00 00 ............ +136 0.414031506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287398 12 26 727078 0 0x0000001a 0 26 727078 0 1a 00 00 00 26 18 0b 00 00 00 00 00 ....&....... +138 0.414195538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287410 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1994194944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 89 1f 00 00 00 00 00 ....T.c@.^1@......#....... +140 0.414552450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268223 12 -1 727078 0 0xffffffff 0 -1 727078 0 ff ff ff ff 26 18 0b 00 00 00 00 00 ....&....... +142 0.414931774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268235 12 22 717595 0 0x00000016 0 22 717595 0 16 00 00 00 1b f3 0a 00 00 00 00 00 ............ +144 0.415096760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268247 22 18 2066723 0 0x00000012 1 2066723 0 196609 0 12 00 00 00 23 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +146 0.415358067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287436 12 -1 717595 0 0xffffffff 0 -1 717595 0 ff ff ff ff 1b f3 0a 00 00 00 00 00 ............ +177 0.516933441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287448 12 26 727079 0 0x0000001a 0 26 727079 0 1a 00 00 00 27 18 0b 00 00 00 00 00 ....'....... +179 0.517127037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287460 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1994063872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 89 1f 00 00 00 00 00 ....T.c@.^1@......%....... +181 0.517473459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268269 12 -1 727079 0 0xffffffff 0 -1 727079 0 ff ff ff ff 27 18 0b 00 00 00 00 00 ....'....... +183 0.517925739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268281 12 22 717596 0 0x00000016 0 22 717596 0 16 00 00 00 1c f3 0a 00 00 00 00 00 ............ +185 0.518096924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268293 22 18 2066725 0 0x00000012 1 2066725 0 196609 0 12 00 00 00 25 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +187 0.518417358 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287486 12 -1 717596 0 0xffffffff 0 -1 717596 0 ff ff ff ff 1c f3 0a 00 00 00 00 00 ............ +192 0.606731892 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268315 12 -2 82540 82557 0xfffffffe 0 -2 82540 82557 fe ff ff ff 6c 42 01 00 7d 42 01 00 ....lB..}B.. +201 0.621152401 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287498 12 26 727080 0 0x0000001a 0 26 727080 0 1a 00 00 00 28 18 0b 00 00 00 00 00 ....(....... +203 0.621333838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287510 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1993932800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 89 1f 00 00 00 00 00 ....T.c@.^1@......'....... +205 0.621697664 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268327 12 -1 727080 0 0xffffffff 0 -1 727080 0 ff ff ff ff 28 18 0b 00 00 00 00 00 ....(....... +207 0.626363039 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268339 12 22 717597 0 0x00000016 0 22 717597 0 16 00 00 00 1d f3 0a 00 00 00 00 00 ............ +209 0.626552582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268351 22 18 2066727 0 0x00000012 1 2066727 0 196609 0 12 00 00 00 27 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +211 0.626886368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287536 12 -1 717597 0 0xffffffff 0 -1 717597 0 ff ff ff ff 1d f3 0a 00 00 00 00 00 ............ +214 0.659226894 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287548 12 -2 82558 82540 0xfffffffe 0 -2 82558 82540 fe ff ff ff 7e 42 01 00 6c 42 01 00 ....~B..lB.. +219 0.672510624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287560 12 34 727081 0 0x00000022 0 34 727081 0 22 00 00 00 29 18 0b 00 00 00 00 00 """...)......." +221 0.672688961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287572 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 280231936 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b4 10 02 00 00 00 00 00 09 91 22 c3 9d 01 00 00 ".....!...o3.................""....." +223 0.672796488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287606 12 67 727082 0 0x00000043 0 67 727082 0 43 00 00 00 2a 18 0b 00 00 00 00 00 C...*....... +225 0.672884941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287618 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b4 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 ae ab 31 c6 ?.....3...|8...................=B.....&......... +226 0.672931194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268373 12 -1 727081 0 0xffffffff 0 -1 727081 0 ff ff ff ff 29 18 0b 00 00 00 00 00 ....)....... +229 0.673152924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268385 12 -1 727082 0 0xffffffff 0 -1 727082 0 ff ff ff ff 2a 18 0b 00 00 00 00 00 ....*....... +231 0.674153805 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268397 12 52 717598 0 0x00000034 0 52 717598 0 34 00 00 00 1e f3 0a 00 00 00 00 00 4........... +233 0.674327374 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268409 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b4 10 02 00 00 00 00 00 00 00 92 16 d5 69 4d 01 00 00 "0...Dk.................L."".([..................i" +235 0.674644709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287685 12 -1 717598 0 0xffffffff 0 -1 717598 0 ff ff ff ff 1e f3 0a 00 00 00 00 00 ............ +236 0.675351143 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287697 12 30 727083 0 0x0000001e 0 30 727083 0 1e 00 00 00 2b 18 0b 00 00 00 00 00 ....+....... +238 0.675588846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287709 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1993801728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +240 0.675880909 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268461 12 -1 727083 0 0xffffffff 0 -1 727083 0 ff ff ff ff 2b 18 0b 00 00 00 00 00 ....+....... +242 0.678501844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268473 12 26 717599 0 0x0000001a 0 26 717599 0 1a 00 00 00 1f f3 0a 00 00 00 00 00 ............ +244 0.678872347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268485 26 22 2066729 0 0x00000016 1 2066729 0 196609 0 16 00 00 00 29 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +246 0.679122925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287739 12 -1 717599 0 0xffffffff 0 -1 717599 0 ff ff ff ff 1f f3 0a 00 00 00 00 00 ............ +248 0.728105068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287751 12 26 727084 0 0x0000001a 0 26 727084 0 1a 00 00 00 2c 18 0b 00 00 00 00 00 ....,....... +250 0.728297234 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287763 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1993670656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 89 1f 00 00 00 00 00 ....T.c@.^1@......+....... +252 0.728712082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268511 12 -1 727084 0 0xffffffff 0 -1 727084 0 ff ff ff ff 2c 18 0b 00 00 00 00 00 ....,....... +254 0.729128361 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268523 12 22 717600 0 0x00000016 0 22 717600 0 16 00 00 00 20 f3 0a 00 00 00 00 00 .... ....... +256 0.729297638 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268535 22 18 2066731 0 0x00000012 1 2066731 0 196609 0 12 00 00 00 2b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +258 0.729560614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287789 12 -1 717600 0 0xffffffff 0 -1 717600 0 ff ff ff ff 20 f3 0a 00 00 00 00 00 .... ....... +260 0.832078457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287801 12 26 727085 0 0x0000001a 0 26 727085 0 1a 00 00 00 2d 18 0b 00 00 00 00 00 ....-....... +262 0.832259655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287813 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1993539584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 89 1f 00 00 00 00 00 ....T.c@.^1@......-....... +264 0.832660198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268557 12 -1 727085 0 0xffffffff 0 -1 727085 0 ff ff ff ff 2d 18 0b 00 00 00 00 00 ....-....... +266 0.833052397 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268569 12 22 717601 0 0x00000016 0 22 717601 0 16 00 00 00 21 f3 0a 00 00 00 00 00 ....!....... +268 0.833217859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268581 22 18 2066733 0 0x00000012 1 2066733 0 196609 0 12 00 00 00 2d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +270 0.833524704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287839 12 -1 717601 0 0xffffffff 0 -1 717601 0 ff ff ff ff 21 f3 0a 00 00 00 00 00 ....!....... +276 0.936131954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287851 12 26 727086 0 0x0000001a 0 26 727086 0 1a 00 00 00 2e 18 0b 00 00 00 00 00 ............ +278 0.936320782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287863 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1993408512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 89 1f 00 00 00 00 00 ....T.c@.^1@....../....... +280 0.936715603 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268603 12 -1 727086 0 0xffffffff 0 -1 727086 0 ff ff ff ff 2e 18 0b 00 00 00 00 00 ............ +282 0.937049627 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268615 12 22 717602 0 0x00000016 0 22 717602 0 16 00 00 00 22 f3 0a 00 00 00 00 00 "....""......." +284 0.937216282 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268627 22 18 2066735 0 0x00000012 1 2066735 0 196609 0 12 00 00 00 2f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +286 0.937526464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287889 12 -1 717602 0 0xffffffff 0 -1 717602 0 ff ff ff ff 22 f3 0a 00 00 00 00 00 "....""......." +307 0.976489305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287901 12 101 727087 0 0x00000065 0 101 727087 0 65 00 00 00 2f 18 0b 00 00 00 00 00 e.../....... +311 0.976689339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333287913 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b5 10 02 00 00 00 00 00 39 92 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b5 10 02 00 00 00 00 ".....!...o3...............9."".....?.....3...|8.." +313 0.977019787 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268649 12 -1 727087 0 0xffffffff 0 -1 727087 0 ff ff ff ff 2f 18 0b 00 00 00 00 00 ..../....... +320 0.978544950 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268661 12 52 717603 0 0x00000034 0 52 717603 0 34 00 00 00 23 f3 0a 00 00 00 00 00 4...#....... +325 0.978772163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268673 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b5 10 02 00 00 00 00 00 00 00 fe 88 03 6a 4d 01 00 00 "0...Dk.................L."".([..................j" +327 0.979037762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288014 12 -1 717603 0 0xffffffff 0 -1 717603 0 ff ff ff ff 23 f3 0a 00 00 00 00 00 ....#....... +333 0.979956627 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288026 12 30 727088 0 0x0000001e 0 30 727088 0 1e 00 00 00 30 18 0b 00 00 00 00 00 ....0....... +337 0.980155230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288038 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1993277440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +341 0.980667591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268725 12 -1 727088 0 0xffffffff 0 -1 727088 0 ff ff ff ff 30 18 0b 00 00 00 00 00 ....0....... +343 0.980935812 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268737 12 26 717604 0 0x0000001a 0 26 717604 0 1a 00 00 00 24 f3 0a 00 00 00 00 00 ....$....... +345 0.981083155 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268749 26 22 2066737 0 0x00000016 1 2066737 0 196609 0 16 00 00 00 31 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +347 0.981348038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288068 12 -1 717604 0 0xffffffff 0 -1 717604 0 ff ff ff ff 24 f3 0a 00 00 00 00 00 ....$....... +355 1.040248632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288080 12 26 727089 0 0x0000001a 0 26 727089 0 1a 00 00 00 31 18 0b 00 00 00 00 00 ....1....... +357 1.040430546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288092 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1993146368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 89 1f 00 00 00 00 00 ....T.c@.^1@......3....... +359 1.040779829 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268775 12 -1 727089 0 0xffffffff 0 -1 727089 0 ff ff ff ff 31 18 0b 00 00 00 00 00 ....1....... +361 1.041137457 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268787 12 22 717605 0 0x00000016 0 22 717605 0 16 00 00 00 25 f3 0a 00 00 00 00 00 ....%....... +363 1.041299105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268799 22 18 2066739 0 0x00000012 1 2066739 0 196609 0 12 00 00 00 33 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +365 1.041534662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288118 12 -1 717605 0 0xffffffff 0 -1 717605 0 ff ff ff ff 25 f3 0a 00 00 00 00 00 ....%....... +367 1.107649326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268821 12 -2 82541 82558 0xfffffffe 0 -2 82541 82558 fe ff ff ff 6d 42 01 00 7e 42 01 00 ....mB..~B.. +416 1.145547390 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288130 12 26 727090 0 0x0000001a 0 26 727090 0 1a 00 00 00 32 18 0b 00 00 00 00 00 ....2....... +418 1.145750523 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288142 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1993015296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 89 1f 00 00 00 00 00 ....T.c@.^1@......5....... +420 1.146068811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268833 12 -1 727090 0 0xffffffff 0 -1 727090 0 ff ff ff ff 32 18 0b 00 00 00 00 00 ....2....... +422 1.146524906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268845 12 22 717606 0 0x00000016 0 22 717606 0 16 00 00 00 26 f3 0a 00 00 00 00 00 ....&....... +424 1.146692753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268857 22 18 2066741 0 0x00000012 1 2066741 0 196609 0 12 00 00 00 35 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +426 1.146911860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288168 12 -1 717606 0 0xffffffff 0 -1 717606 0 ff ff ff ff 26 f3 0a 00 00 00 00 00 ....&....... +428 1.160757303 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288180 12 -2 82559 82541 0xfffffffe 0 -2 82559 82541 fe ff ff ff 7f 42 01 00 6d 42 01 00 .....B..mB.. +434 1.249292135 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288192 12 26 727091 0 0x0000001a 0 26 727091 0 1a 00 00 00 33 18 0b 00 00 00 00 00 ....3....... +436 1.249520063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288204 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1992884224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 89 1f 00 00 00 00 00 ....T.c@.^1@......7....... +438 1.249861717 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268879 12 -1 727091 0 0xffffffff 0 -1 727091 0 ff ff ff ff 33 18 0b 00 00 00 00 00 ....3....... +440 1.250221014 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268891 12 22 717607 0 0x00000016 0 22 717607 0 16 00 00 00 27 f3 0a 00 00 00 00 00 ....'....... +442 1.250388145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268903 22 18 2066743 0 0x00000012 1 2066743 0 196609 0 12 00 00 00 37 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +444 1.250706673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288230 12 -1 717607 0 0xffffffff 0 -1 717607 0 ff ff ff ff 27 f3 0a 00 00 00 00 00 ....'....... +446 1.281310558 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288242 12 34 727092 0 0x00000022 0 34 727092 0 22 00 00 00 34 18 0b 00 00 00 00 00 """...4......." +448 1.281514168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288254 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 280363008 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b6 10 02 00 00 00 00 00 6a 93 22 c3 9d 01 00 00 ".....!...o3...............j.""....." +450 1.281656027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288288 12 67 727093 0 0x00000043 0 67 727093 0 43 00 00 00 35 18 0b 00 00 00 00 00 C...5....... +452 1.281745672 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288300 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ac c2 e9 55 c6 ?.....3...|8...................=B.....&......... +454 1.281859398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268925 12 -1 727092 0 0xffffffff 0 -1 727092 0 ff ff ff ff 34 18 0b 00 00 00 00 00 ....4....... +456 1.282075644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268937 12 -1 727093 0 0xffffffff 0 -1 727093 0 ff ff ff ff 35 18 0b 00 00 00 00 00 ....5....... +458 1.282735825 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268949 12 52 717608 0 0x00000034 0 52 717608 0 34 00 00 00 28 f3 0a 00 00 00 00 00 4...(....... +460 1.282918692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377268961 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b6 10 02 00 00 00 00 00 00 00 73 f2 31 6a 4d 01 00 00 "0...Dk.................L."".([...............s.1j" +462 1.283182621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288367 12 -1 717608 0 0xffffffff 0 -1 717608 0 ff ff ff ff 28 f3 0a 00 00 00 00 00 ....(....... +464 1.283987522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288379 12 30 727094 0 0x0000001e 0 30 727094 0 1e 00 00 00 36 18 0b 00 00 00 00 00 ....6....... +466 1.284133911 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288391 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1992753152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +468 1.284780502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269013 12 -1 727094 0 0xffffffff 0 -1 727094 0 ff ff ff ff 36 18 0b 00 00 00 00 00 ....6....... +470 1.285075426 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269025 12 26 717609 0 0x0000001a 0 26 717609 0 1a 00 00 00 29 f3 0a 00 00 00 00 00 ....)....... +472 1.285278320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269037 26 22 2066745 0 0x00000016 1 2066745 0 196609 0 16 00 00 00 39 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +474 1.285628557 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288421 12 -1 717609 0 0xffffffff 0 -1 717609 0 ff ff ff ff 29 f3 0a 00 00 00 00 00 ....)....... +477 1.352166176 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288433 12 26 727095 0 0x0000001a 0 26 727095 0 1a 00 00 00 37 18 0b 00 00 00 00 00 ....7....... +479 1.352416039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288445 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1992622080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 89 1f 00 00 00 00 00 ....T.c@.^1@......;....... +482 1.352868795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269063 12 -1 727095 0 0xffffffff 0 -1 727095 0 ff ff ff ff 37 18 0b 00 00 00 00 00 ....7....... +485 1.353282213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269075 12 22 717610 0 0x00000016 0 22 717610 0 16 00 00 00 2a f3 0a 00 00 00 00 00 ....*....... +487 1.353500366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269087 22 18 2066747 0 0x00000012 1 2066747 0 196609 0 12 00 00 00 3b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +489 1.353905201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288471 12 -1 717610 0 0xffffffff 0 -1 717610 0 ff ff ff ff 2a f3 0a 00 00 00 00 00 ....*....... +494 1.456344366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288483 12 26 727096 0 0x0000001a 0 26 727096 0 1a 00 00 00 38 18 0b 00 00 00 00 00 ....8....... +496 1.456542015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288495 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1992491008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 89 1f 00 00 00 00 00 ....T.c@.^1@......=....... +498 1.456903219 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269109 12 -1 727096 0 0xffffffff 0 -1 727096 0 ff ff ff ff 38 18 0b 00 00 00 00 00 ....8....... +500 1.457195044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269121 12 22 717611 0 0x00000016 0 22 717611 0 16 00 00 00 2b f3 0a 00 00 00 00 00 ....+....... +502 1.457367420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269133 22 18 2066749 0 0x00000012 1 2066749 0 196609 0 12 00 00 00 3d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +504 1.457671404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288521 12 -1 717611 0 0xffffffff 0 -1 717611 0 ff ff ff ff 2b f3 0a 00 00 00 00 00 ....+....... +511 1.559637070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288533 12 26 727097 0 0x0000001a 0 26 727097 0 1a 00 00 00 39 18 0b 00 00 00 00 00 ....9....... +513 1.559909821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288545 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1992359936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 89 1f 00 00 00 00 00 ....T.c@.^1@......?....... +515 1.560328007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269155 12 -1 727097 0 0xffffffff 0 -1 727097 0 ff ff ff ff 39 18 0b 00 00 00 00 00 ....9....... +517 1.560654879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269167 12 22 717612 0 0x00000016 0 22 717612 0 16 00 00 00 2c f3 0a 00 00 00 00 00 ....,....... +519 1.560871363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269179 22 18 2066751 0 0x00000012 1 2066751 0 196609 0 12 00 00 00 3f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +521 1.561237574 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288571 12 -1 717612 0 0xffffffff 0 -1 717612 0 ff ff ff ff 2c f3 0a 00 00 00 00 00 ....,....... +523 1.585691929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288583 12 34 727098 0 0x00000022 0 34 727098 0 22 00 00 00 3a 18 0b 00 00 00 00 00 """...:......." +525 1.585873365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288595 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 280428544 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b7 10 02 00 00 00 00 00 9b 94 22 c3 9d 01 00 00 ".....!...o3.................""....." +527 1.586017609 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288629 12 67 727099 0 0x00000043 0 67 727099 0 43 00 00 00 3b 18 0b 00 00 00 00 00 C...;....... +529 1.586106062 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288641 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 a7 19 68 c6 ?.....3...|8...................=B.....&......... +531 1.586244106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269201 12 -1 727098 0 0xffffffff 0 -1 727098 0 ff ff ff ff 3a 18 0b 00 00 00 00 00 ....:....... +533 1.586428165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269213 12 -1 727099 0 0xffffffff 0 -1 727099 0 ff ff ff ff 3b 18 0b 00 00 00 00 00 ....;....... +535 1.587143660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269225 12 52 717613 0 0x00000034 0 52 717613 0 34 00 00 00 2d f3 0a 00 00 00 00 00 4...-....... +537 1.587315559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269237 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b7 10 02 00 00 00 00 00 00 00 4e 65 60 6a 4d 01 00 00 "0...Dk.................L."".([...............Ne`j" +539 1.587632418 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288708 12 -1 717613 0 0xffffffff 0 -1 717613 0 ff ff ff ff 2d f3 0a 00 00 00 00 00 ....-....... +541 1.588719368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288720 12 30 727100 0 0x0000001e 0 30 727100 0 1e 00 00 00 3c 18 0b 00 00 00 00 00 ....<....... +543 1.588922977 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288732 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1992228864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +545 1.589273930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269289 12 -1 727100 0 0xffffffff 0 -1 727100 0 ff ff ff ff 3c 18 0b 00 00 00 00 00 ....<....... +547 1.589964390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269301 12 26 717614 0 0x0000001a 0 26 717614 0 1a 00 00 00 2e f3 0a 00 00 00 00 00 ............ +549 1.590120316 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269313 26 22 2066753 0 0x00000016 1 2066753 0 196609 0 16 00 00 00 41 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +551 1.590358257 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288762 12 -1 717614 0 0xffffffff 0 -1 717614 0 ff ff ff ff 2e f3 0a 00 00 00 00 00 ............ +553 1.609394550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269339 12 -2 82542 82559 0xfffffffe 0 -2 82542 82559 fe ff ff ff 6e 42 01 00 7f 42 01 00 ....nB...B.. +564 1.661457300 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288774 12 -2 82560 82542 0xfffffffe 0 -2 82560 82542 fe ff ff ff 80 42 01 00 6e 42 01 00 .....B..nB.. +568 1.663018227 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288786 12 26 727101 0 0x0000001a 0 26 727101 0 1a 00 00 00 3d 18 0b 00 00 00 00 00 ....=....... +570 1.663285732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288798 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1992097792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 89 1f 00 00 00 00 00 ....T.c@.^1@......C....... +572 1.663630247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269351 12 -1 727101 0 0xffffffff 0 -1 727101 0 ff ff ff ff 3d 18 0b 00 00 00 00 00 ....=....... +574 1.664179802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269363 12 22 717615 0 0x00000016 0 22 717615 0 16 00 00 00 2f f3 0a 00 00 00 00 00 ..../....... +576 1.664348602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269375 22 18 2066755 0 0x00000012 1 2066755 0 196609 0 12 00 00 00 43 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +578 1.664650679 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288824 12 -1 717615 0 0xffffffff 0 -1 717615 0 ff ff ff ff 2f f3 0a 00 00 00 00 00 ..../....... +583 1.766365290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288836 12 26 727102 0 0x0000001a 0 26 727102 0 1a 00 00 00 3e 18 0b 00 00 00 00 00 ....>....... +585 1.766557455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288848 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1991966720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 89 1f 00 00 00 00 00 ....T.c@.^1@......E....... +587 1.766954422 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269397 12 -1 727102 0 0xffffffff 0 -1 727102 0 ff ff ff ff 3e 18 0b 00 00 00 00 00 ....>....... +589 1.767287493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269409 12 22 717616 0 0x00000016 0 22 717616 0 16 00 00 00 30 f3 0a 00 00 00 00 00 ....0....... +591 1.767446280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269421 22 18 2066757 0 0x00000012 1 2066757 0 196609 0 12 00 00 00 45 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +593 1.767843962 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288874 12 -1 717616 0 0xffffffff 0 -1 717616 0 ff ff ff ff 30 f3 0a 00 00 00 00 00 ....0....... +611 1.869407177 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288886 12 26 727103 0 0x0000001a 0 26 727103 0 1a 00 00 00 3f 18 0b 00 00 00 00 00 ....?....... +613 1.869586945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288898 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1991835648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 89 1f 00 00 00 00 00 ....T.c@.^1@......G....... +615 1.869930029 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269443 12 -1 727103 0 0xffffffff 0 -1 727103 0 ff ff ff ff 3f 18 0b 00 00 00 00 00 ....?....... +617 1.870384455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269455 12 22 717617 0 0x00000016 0 22 717617 0 16 00 00 00 31 f3 0a 00 00 00 00 00 ....1....... +619 1.870545149 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269467 22 18 2066759 0 0x00000012 1 2066759 0 196609 0 12 00 00 00 47 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +621 1.870841742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288924 12 -1 717617 0 0xffffffff 0 -1 717617 0 ff ff ff ff 31 f3 0a 00 00 00 00 00 ....1....... +646 1.889521122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288936 12 101 727104 0 0x00000065 0 101 727104 0 65 00 00 00 40 18 0b 00 00 00 00 00 e...@....... +648 1.889734745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333288948 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b8 10 02 00 00 00 00 00 cb 95 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b8 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +650 1.890043736 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269489 12 -1 727104 0 0xffffffff 0 -1 727104 0 ff ff ff ff 40 18 0b 00 00 00 00 00 ....@....... +652 1.890955210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269501 12 52 717618 0 0x00000034 0 52 717618 0 34 00 00 00 32 f3 0a 00 00 00 00 00 4...2....... +654 1.891108274 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269513 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b8 10 02 00 00 00 00 00 00 00 0d c1 8e 6a 4d 01 00 00 "0...Dk.................L."".([..................j" +656 1.891358137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289049 12 -1 717618 0 0xffffffff 0 -1 717618 0 ff ff ff ff 32 f3 0a 00 00 00 00 00 ....2....... +658 1.892300844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289061 12 30 727105 0 0x0000001e 0 30 727105 0 1e 00 00 00 41 18 0b 00 00 00 00 00 ....A....... +660 1.892523050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289073 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1991704576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +664 1.892898560 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269565 12 -1 727105 0 0xffffffff 0 -1 727105 0 ff ff ff ff 41 18 0b 00 00 00 00 00 ....A....... +668 1.893136978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269577 12 26 717619 0 0x0000001a 0 26 717619 0 1a 00 00 00 33 f3 0a 00 00 00 00 00 ....3....... +670 1.893332958 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269589 26 22 2066761 0 0x00000016 1 2066761 0 196609 0 16 00 00 00 49 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +672 1.893594027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289103 12 -1 717619 0 0xffffffff 0 -1 717619 0 ff ff ff ff 33 f3 0a 00 00 00 00 00 ....3....... +766 1.972316265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289115 12 26 727106 0 0x0000001a 0 26 727106 0 1a 00 00 00 42 18 0b 00 00 00 00 00 ....B....... +768 1.972499847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289127 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1991573504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 89 1f 00 00 00 00 00 ....T.c@.^1@......K....... +770 1.972928047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269615 12 -1 727106 0 0xffffffff 0 -1 727106 0 ff ff ff ff 42 18 0b 00 00 00 00 00 ....B....... +772 1.973234653 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269627 12 22 717620 0 0x00000016 0 22 717620 0 16 00 00 00 34 f3 0a 00 00 00 00 00 ....4....... +774 1.973397255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269639 22 18 2066763 0 0x00000012 1 2066763 0 196609 0 12 00 00 00 4b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +776 1.973711967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289153 12 -1 717620 0 0xffffffff 0 -1 717620 0 ff ff ff ff 34 f3 0a 00 00 00 00 00 ....4....... +908 2.076429129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289165 12 26 727107 0 0x0000001a 0 26 727107 0 1a 00 00 00 43 18 0b 00 00 00 00 00 ....C....... +910 2.076622963 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289177 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1991442432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 89 1f 00 00 00 00 00 ....T.c@.^1@......M....... +912 2.077100754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269661 12 -1 727107 0 0xffffffff 0 -1 727107 0 ff ff ff ff 43 18 0b 00 00 00 00 00 ....C....... +914 2.077521563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269673 12 22 717621 0 0x00000016 0 22 717621 0 16 00 00 00 35 f3 0a 00 00 00 00 00 ....5....... +916 2.077764511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269685 22 18 2066765 0 0x00000012 1 2066765 0 196609 0 12 00 00 00 4d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +919 2.078548908 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289203 12 -1 717621 0 0xffffffff 0 -1 717621 0 ff ff ff ff 35 f3 0a 00 00 00 00 00 ....5....... +921 2.110113144 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269707 12 -2 82543 82560 0xfffffffe 0 -2 82543 82560 fe ff ff ff 6f 42 01 00 80 42 01 00 ....oB...B.. +931 2.163183212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289215 12 -2 82561 82543 0xfffffffe 0 -2 82561 82543 fe ff ff ff 81 42 01 00 6f 42 01 00 .....B..oB.. +1005 2.180208683 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289227 12 26 727108 0 0x0000001a 0 26 727108 0 1a 00 00 00 44 18 0b 00 00 00 00 00 ....D....... +1007 2.180366278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289239 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1991311360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 89 1f 00 00 00 00 00 ....T.c@.^1@......O....... +1009 2.180761814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269719 12 -1 727108 0 0xffffffff 0 -1 727108 0 ff ff ff ff 44 18 0b 00 00 00 00 00 ....D....... +1012 2.182473660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269731 12 22 717622 0 0x00000016 0 22 717622 0 16 00 00 00 36 f3 0a 00 00 00 00 00 ....6....... +1014 2.182639122 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269743 22 18 2066767 0 0x00000012 1 2066767 0 196609 0 12 00 00 00 4f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +1016 2.182924509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289265 12 -1 717622 0 0xffffffff 0 -1 717622 0 ff ff ff ff 36 f3 0a 00 00 00 00 00 ....6....... +1018 2.194288731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289277 12 34 727109 0 0x00000022 0 34 727109 0 22 00 00 00 45 18 0b 00 00 00 00 00 """...E......." +1020 2.194443226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289289 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 280559616 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b9 10 02 00 00 00 00 00 fc 96 22 c3 9d 01 00 00 ".....!...o3.................""....." +1022 2.194569349 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289323 12 67 727110 0 0x00000043 0 67 727110 0 43 00 00 00 46 18 0b 00 00 00 00 00 C...F....... +1024 2.194686651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289335 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b9 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f cc 57 58 8c c6 ?.....3...|8...................=B.....&......... +1026 2.194765329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269765 12 -1 727109 0 0xffffffff 0 -1 727109 0 ff ff ff ff 45 18 0b 00 00 00 00 00 ....E....... +1028 2.194943428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269777 12 -1 727110 0 0xffffffff 0 -1 727110 0 ff ff ff ff 46 18 0b 00 00 00 00 00 ....F....... +1030 2.195715666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269789 12 52 717623 0 0x00000034 0 52 717623 0 34 00 00 00 37 f3 0a 00 00 00 00 00 4...7....... +1032 2.195866823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269801 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b9 10 02 00 00 00 00 00 00 00 a6 42 bd 6a 4d 01 00 00 "0...Dk.................L."".([................B.j" +1034 2.196137667 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289402 12 -1 717623 0 0xffffffff 0 -1 717623 0 ff ff ff ff 37 f3 0a 00 00 00 00 00 ....7....... +1036 2.196979046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289414 12 30 727111 0 0x0000001e 0 30 727111 0 1e 00 00 00 47 18 0b 00 00 00 00 00 ....G....... +1038 2.197118521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289426 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1991180288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +1040 2.197419882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269853 12 -1 727111 0 0xffffffff 0 -1 727111 0 ff ff ff ff 47 18 0b 00 00 00 00 00 ....G....... +1042 2.197838545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269865 12 26 717624 0 0x0000001a 0 26 717624 0 1a 00 00 00 38 f3 0a 00 00 00 00 00 ....8....... +1044 2.197989941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269877 26 22 2066769 0 0x00000016 1 2066769 0 196609 0 16 00 00 00 51 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +1046 2.198313236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289456 12 -1 717624 0 0xffffffff 0 -1 717624 0 ff ff ff ff 38 f3 0a 00 00 00 00 00 ....8....... +1050 2.284319162 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289468 12 26 727112 0 0x0000001a 0 26 727112 0 1a 00 00 00 48 18 0b 00 00 00 00 00 ....H....... +1052 2.284510374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289480 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1991049216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 89 1f 00 00 00 00 00 ....T.c@.^1@......S....... +1054 2.285003662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269903 12 -1 727112 0 0xffffffff 0 -1 727112 0 ff ff ff ff 48 18 0b 00 00 00 00 00 ....H....... +1056 2.285501957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269915 12 22 717625 0 0x00000016 0 22 717625 0 16 00 00 00 39 f3 0a 00 00 00 00 00 ....9....... +1058 2.285701036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269927 22 18 2066771 0 0x00000012 1 2066771 0 196609 0 12 00 00 00 53 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +1060 2.286016226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289506 12 -1 717625 0 0xffffffff 0 -1 717625 0 ff ff ff ff 39 f3 0a 00 00 00 00 00 ....9....... +1143 2.388320446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289518 12 26 727113 0 0x0000001a 0 26 727113 0 1a 00 00 00 49 18 0b 00 00 00 00 00 ....I....... +1145 2.388519526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289530 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1990918144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 89 1f 00 00 00 00 00 ....T.c@.^1@......U....... +1147 2.388782263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269949 12 -1 727113 0 0xffffffff 0 -1 727113 0 ff ff ff ff 49 18 0b 00 00 00 00 00 ....I....... +1149 2.390062094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269961 12 22 717626 0 0x00000016 0 22 717626 0 16 00 00 00 3a f3 0a 00 00 00 00 00 ....:....... +1151 2.390235662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269973 22 18 2066773 0 0x00000012 1 2066773 0 196609 0 12 00 00 00 55 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +1153 2.390493393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289556 12 -1 717626 0 0xffffffff 0 -1 717626 0 ff ff ff ff 3a f3 0a 00 00 00 00 00 ....:....... +1160 2.492380142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289568 12 26 727114 0 0x0000001a 0 26 727114 0 1a 00 00 00 4a 18 0b 00 00 00 00 00 ....J....... +1162 2.492565155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289580 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1990787072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 89 1f 00 00 00 00 00 ....T.c@.^1@......W....... +1164 2.493031502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377269995 12 -1 727114 0 0xffffffff 0 -1 727114 0 ff ff ff ff 4a 18 0b 00 00 00 00 00 ....J....... +1166 2.495183468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270007 12 22 717627 0 0x00000016 0 22 717627 0 16 00 00 00 3b f3 0a 00 00 00 00 00 ....;....... +1168 2.495344877 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270019 22 18 2066775 0 0x00000012 1 2066775 0 196609 0 12 00 00 00 57 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +1170 2.495666265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289606 12 -1 717627 0 0xffffffff 0 -1 717627 0 ff ff ff ff 3b f3 0a 00 00 00 00 00 ....;....... +1172 2.498668432 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289618 12 101 727115 0 0x00000065 0 101 727115 0 65 00 00 00 4b 18 0b 00 00 00 00 00 e...K....... +1174 2.498820066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289630 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ba 10 02 00 00 00 00 00 2c 98 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ba 10 02 00 00 00 00 ".....!...o3...............,."".....?.....3...|8.." +1176 2.499056339 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270041 12 -1 727115 0 0xffffffff 0 -1 727115 0 ff ff ff ff 4b 18 0b 00 00 00 00 00 ....K....... +1178 2.500126123 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270053 12 52 717628 0 0x00000034 0 52 717628 0 34 00 00 00 3c f3 0a 00 00 00 00 00 4...<....... +1180 2.500268221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270065 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ba 10 02 00 00 00 00 00 00 00 34 b6 eb 6a 4d 01 00 00 "0...Dk.................L."".([...............4..j" +1182 2.500459909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289731 12 -1 717628 0 0xffffffff 0 -1 717628 0 ff ff ff ff 3c f3 0a 00 00 00 00 00 ....<....... +1184 2.501435518 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289743 12 30 727116 0 0x0000001e 0 30 727116 0 1e 00 00 00 4c 18 0b 00 00 00 00 00 ....L....... +1186 2.501582623 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289755 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1990656000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +1188 2.501924276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270117 12 -1 727116 0 0xffffffff 0 -1 727116 0 ff ff ff ff 4c 18 0b 00 00 00 00 00 ....L....... +1190 2.502698183 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270129 12 26 717629 0 0x0000001a 0 26 717629 0 1a 00 00 00 3d f3 0a 00 00 00 00 00 ....=....... +1192 2.502841711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270141 26 22 2066777 0 0x00000016 1 2066777 0 196609 0 16 00 00 00 59 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +1194 2.503012896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289785 12 -1 717629 0 0xffffffff 0 -1 717629 0 ff ff ff ff 3d f3 0a 00 00 00 00 00 ....=....... +1197 2.598366737 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289797 12 26 727117 0 0x0000001a 0 26 727117 0 1a 00 00 00 4d 18 0b 00 00 00 00 00 ....M....... +1199 2.598553896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289809 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1990524928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 89 1f 00 00 00 00 00 ....T.c@.^1@......[....... +1201 2.598952770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270167 12 -1 727117 0 0xffffffff 0 -1 727117 0 ff ff ff ff 4d 18 0b 00 00 00 00 00 ....M....... +1203 2.599326849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270179 12 22 717630 0 0x00000016 0 22 717630 0 16 00 00 00 3e f3 0a 00 00 00 00 00 ....>....... +1205 2.599515915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270191 22 18 2066779 0 0x00000012 1 2066779 0 196609 0 12 00 00 00 5b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +1207 2.599779129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289835 12 -1 717630 0 0xffffffff 0 -1 717630 0 ff ff ff ff 3e f3 0a 00 00 00 00 00 ....>....... +1212 2.611276150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270213 12 -2 82544 82561 0xfffffffe 0 -2 82544 82561 fe ff ff ff 70 42 01 00 81 42 01 00 ....pB...B.. +1220 2.664160013 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289847 12 -2 82562 82544 0xfffffffe 0 -2 82562 82544 fe ff ff ff 82 42 01 00 70 42 01 00 .....B..pB.. +1225 2.701298952 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289859 12 26 727118 0 0x0000001a 0 26 727118 0 1a 00 00 00 4e 18 0b 00 00 00 00 00 ....N....... +1227 2.701467991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289871 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1990393856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 89 1f 00 00 00 00 00 ....T.c@.^1@......]....... +1229 2.701937437 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270225 12 -1 727118 0 0xffffffff 0 -1 727118 0 ff ff ff ff 4e 18 0b 00 00 00 00 00 ....N....... +1231 2.703405619 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270237 12 22 717631 0 0x00000016 0 22 717631 0 16 00 00 00 3f f3 0a 00 00 00 00 00 ....?....... +1233 2.703614235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270249 22 18 2066781 0 0x00000012 1 2066781 0 196609 0 12 00 00 00 5d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +1235 2.703939915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289897 12 -1 717631 0 0xffffffff 0 -1 717631 0 ff ff ff ff 3f f3 0a 00 00 00 00 00 ....?....... +1270 2.803912640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289909 12 101 727119 0 0x00000065 0 101 727119 0 65 00 00 00 4f 18 0b 00 00 00 00 00 e...O....... +1272 2.804090738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333289921 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bb 10 02 00 00 00 00 00 5d 99 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bb 10 02 00 00 00 00 ".....!...o3...............]."".....?.....3...|8.." +1274 2.804422617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270271 12 -1 727119 0 0xffffffff 0 -1 727119 0 ff ff ff ff 4f 18 0b 00 00 00 00 00 ....O....... +1278 2.805096865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270283 12 52 717632 0 0x00000034 0 52 717632 0 34 00 00 00 40 f3 0a 00 00 00 00 00 4...@....... +1281 2.805260897 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270295 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bb 10 02 00 00 00 00 00 00 00 5f 3e 1a 6b 4d 01 00 00 "0...Dk.................L."".([..............._>.k" +1286 2.805582047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290022 12 -1 717632 0 0xffffffff 0 -1 717632 0 ff ff ff ff 40 f3 0a 00 00 00 00 00 ....@....... +1288 2.806174755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290034 12 26 727120 0 0x0000001a 0 26 727120 0 1a 00 00 00 50 18 0b 00 00 00 00 00 ....P....... +1290 2.806338072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290046 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1990262784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 89 1f 00 00 00 00 00 ....T.c@.^1@......_....... +1292 2.806506157 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290072 12 30 727121 0 0x0000001e 0 30 727121 0 1e 00 00 00 51 18 0b 00 00 00 00 00 ....Q....... +1294 2.806595325 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290084 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1990131712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +1295 2.806638002 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270347 12 -1 727120 0 0xffffffff 0 -1 727120 0 ff ff ff ff 50 18 0b 00 00 00 00 00 ....P....... +1296 2.806780100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270359 12 -1 727121 0 0xffffffff 0 -1 727121 0 ff ff ff ff 51 18 0b 00 00 00 00 00 ....Q....... +1299 2.807068825 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270371 12 22 717633 0 0x00000016 0 22 717633 0 16 00 00 00 41 f3 0a 00 00 00 00 00 ....A....... +1301 2.807232857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270383 22 18 2066783 0 0x00000012 1 2066783 0 196609 0 12 00 00 00 5f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +1303 2.807372332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270405 12 26 717634 0 0x0000001a 0 26 717634 0 1a 00 00 00 42 f3 0a 00 00 00 00 00 ....B....... +1305 2.807457209 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270417 26 22 2066785 0 0x00000016 1 2066785 0 196609 0 16 00 00 00 61 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +1306 2.807497025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290114 12 -1 717633 0 0xffffffff 0 -1 717633 0 ff ff ff ff 41 f3 0a 00 00 00 00 00 ....A....... +1307 2.807724714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290126 12 -1 717634 0 0xffffffff 0 -1 717634 0 ff ff ff ff 42 f3 0a 00 00 00 00 00 ....B....... +1313 2.910314083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290138 12 26 727122 0 0x0000001a 0 26 727122 0 1a 00 00 00 52 18 0b 00 00 00 00 00 ....R....... +1315 2.910484314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290150 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1990000640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 89 1f 00 00 00 00 00 ....T.c@.^1@......c....... +1317 2.910945415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270443 12 -1 727122 0 0xffffffff 0 -1 727122 0 ff ff ff ff 52 18 0b 00 00 00 00 00 ....R....... +1319 2.911284685 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270455 12 22 717635 0 0x00000016 0 22 717635 0 16 00 00 00 43 f3 0a 00 00 00 00 00 ....C....... +1321 2.911453247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270467 22 18 2066787 0 0x00000012 1 2066787 0 196609 0 12 00 00 00 63 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +1323 2.911878347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290176 12 -1 717635 0 0xffffffff 0 -1 717635 0 ff ff ff ff 43 f3 0a 00 00 00 00 00 ....C....... +1368 3.014278650 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290188 12 26 727123 0 0x0000001a 0 26 727123 0 1a 00 00 00 53 18 0b 00 00 00 00 00 ....S....... +1370 3.014458179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290200 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1989869568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 89 1f 00 00 00 00 00 ....T.c@.^1@......e....... +1372 3.014925241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270489 12 -1 727123 0 0xffffffff 0 -1 727123 0 ff ff ff ff 53 18 0b 00 00 00 00 00 ....S....... +1374 3.015426874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270501 12 22 717636 0 0x00000016 0 22 717636 0 16 00 00 00 44 f3 0a 00 00 00 00 00 ....D....... +1376 3.015589952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270513 22 18 2066789 0 0x00000012 1 2066789 0 196609 0 12 00 00 00 65 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +1378 3.015952587 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290226 12 -1 717636 0 0xffffffff 0 -1 717636 0 ff ff ff ff 44 f3 0a 00 00 00 00 00 ....D....... +1380 3.107884169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290238 12 34 727124 0 0x00000022 0 34 727124 0 22 00 00 00 54 18 0b 00 00 00 00 00 """...T......." +1382 3.108130217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290250 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 280756224 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bc 10 02 00 00 00 00 00 8d 9a 22 c3 9d 01 00 00 ".....!...o3.................""....." +1384 3.108281851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290284 12 67 727125 0 0x00000043 0 67 727125 0 43 00 00 00 55 18 0b 00 00 00 00 00 C...U....... +1386 3.108374834 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290296 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bc 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 e3 d3 c2 c6 ?.....3...|8...................=B.....&......... +1387 3.108431339 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270535 12 -1 727124 0 0xffffffff 0 -1 727124 0 ff ff ff ff 54 18 0b 00 00 00 00 00 ....T....... +1388 3.108532906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270547 12 -1 727125 0 0xffffffff 0 -1 727125 0 ff ff ff ff 55 18 0b 00 00 00 00 00 ....U....... +1391 3.109525681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270559 12 52 717637 0 0x00000034 0 52 717637 0 34 00 00 00 45 f3 0a 00 00 00 00 00 4...E....... +1393 3.109744310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270571 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bc 10 02 00 00 00 00 00 00 00 95 b0 48 6b 4d 01 00 00 "0...Dk.................L."".([.................Hk" +1395 3.109956264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290363 12 -1 717637 0 0xffffffff 0 -1 717637 0 ff ff ff ff 45 f3 0a 00 00 00 00 00 ....E....... +1396 3.110897064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290375 12 30 727126 0 0x0000001e 0 30 727126 0 1e 00 00 00 56 18 0b 00 00 00 00 00 ....V....... +1397 3.111028194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290387 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1989738496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 67 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......g........... +1399 3.111400604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270623 12 -2 82545 82562 0xfffffffe 0 -2 82545 82562 fe ff ff ff 71 42 01 00 82 42 01 00 ....qB...B.. +1405 3.111627102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270635 12 26 717638 0 0x0000001a 0 26 717638 0 1a 00 00 00 46 f3 0a 00 00 00 00 00 ....F....... +1408 3.111800194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270647 26 22 2066791 0 0x00000016 1 2066791 0 196609 0 16 00 00 00 67 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....g..................... +1410 3.111998558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270673 12 -1 727126 0 0xffffffff 0 -1 727126 0 ff ff ff ff 56 18 0b 00 00 00 00 00 ....V....... +1411 3.112007618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290417 12 -1 717638 0 0xffffffff 0 -1 717638 0 ff ff ff ff 46 f3 0a 00 00 00 00 00 ....F....... +1415 3.117296934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290429 12 26 727127 0 0x0000001a 0 26 727127 0 1a 00 00 00 57 18 0b 00 00 00 00 00 ....W....... +1416 3.117417336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290441 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1989607424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 89 1f 00 00 00 00 00 ....T.c@.^1@......i....... +1417 3.117719650 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270685 12 -1 727127 0 0xffffffff 0 -1 727127 0 ff ff ff ff 57 18 0b 00 00 00 00 00 ....W....... +1419 3.118219376 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270697 12 22 717639 0 0x00000016 0 22 717639 0 16 00 00 00 47 f3 0a 00 00 00 00 00 ....G....... +1421 3.118370056 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270709 22 18 2066793 0 0x00000012 1 2066793 0 196609 0 12 00 00 00 69 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +1423 3.118578672 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290467 12 -1 717639 0 0xffffffff 0 -1 717639 0 ff ff ff ff 47 f3 0a 00 00 00 00 00 ....G....... +1425 3.166170120 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290479 12 -2 82563 82545 0xfffffffe 0 -2 82563 82545 fe ff ff ff 83 42 01 00 71 42 01 00 .....B..qB.. +1431 3.220360041 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290491 12 26 727128 0 0x0000001a 0 26 727128 0 1a 00 00 00 58 18 0b 00 00 00 00 00 ....X....... +1433 3.220539331 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290503 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1989476352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 89 1f 00 00 00 00 00 ....T.c@.^1@......k....... +1435 3.220933437 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270731 12 -1 727128 0 0xffffffff 0 -1 727128 0 ff ff ff ff 58 18 0b 00 00 00 00 00 ....X....... +1437 3.221305370 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270743 12 22 717640 0 0x00000016 0 22 717640 0 16 00 00 00 48 f3 0a 00 00 00 00 00 ....H....... +1439 3.221463919 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270755 22 18 2066795 0 0x00000012 1 2066795 0 196609 0 12 00 00 00 6b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +1441 3.221753836 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290529 12 -1 717640 0 0xffffffff 0 -1 717640 0 ff ff ff ff 48 f3 0a 00 00 00 00 00 ....H....... +1443 3.323443651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290541 12 26 727129 0 0x0000001a 0 26 727129 0 1a 00 00 00 59 18 0b 00 00 00 00 00 ....Y....... +1445 3.323637247 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290553 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1989345280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 89 1f 00 00 00 00 00 ....T.c@.^1@......m....... +1447 3.324119568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270777 12 -1 727129 0 0xffffffff 0 -1 727129 0 ff ff ff ff 59 18 0b 00 00 00 00 00 ....Y....... +1449 3.324456453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270789 12 22 717641 0 0x00000016 0 22 717641 0 16 00 00 00 49 f3 0a 00 00 00 00 00 ....I....... +1451 3.324618340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270801 22 18 2066797 0 0x00000012 1 2066797 0 196609 0 12 00 00 00 6d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +1453 3.324984074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290579 12 -1 717641 0 0xffffffff 0 -1 717641 0 ff ff ff ff 49 f3 0a 00 00 00 00 00 ....I....... +1459 3.412746906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290591 12 101 727130 0 0x00000065 0 101 727130 0 65 00 00 00 5a 18 0b 00 00 00 00 00 e...Z....... +1461 3.412934065 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290603 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bd 10 02 00 00 00 00 00 be 9b 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bd 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +1463 3.413189888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270823 12 -1 727130 0 0xffffffff 0 -1 727130 0 ff ff ff ff 5a 18 0b 00 00 00 00 00 ....Z....... +1465 3.414014339 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270835 12 52 717642 0 0x00000034 0 52 717642 0 34 00 00 00 4a f3 0a 00 00 00 00 00 4...J....... +1467 3.414172888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270847 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bd 10 02 00 00 00 00 00 00 00 ef 27 77 6b 4d 01 00 00 "0...Dk.................L."".([................'wk" +1469 3.414455652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290704 12 -1 717642 0 0xffffffff 0 -1 717642 0 ff ff ff ff 4a f3 0a 00 00 00 00 00 ....J....... +1471 3.415367365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290716 12 30 727131 0 0x0000001e 0 30 727131 0 1e 00 00 00 5b 18 0b 00 00 00 00 00 ....[....... +1473 3.415536165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290728 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1989214208 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......o........... +1475 3.415885448 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270899 12 -1 727131 0 0xffffffff 0 -1 727131 0 ff ff ff ff 5b 18 0b 00 00 00 00 00 ....[....... +1477 3.416388988 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270911 12 26 717643 0 0x0000001a 0 26 717643 0 1a 00 00 00 4b f3 0a 00 00 00 00 00 ....K....... +1479 3.416529655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270923 26 22 2066799 0 0x00000016 1 2066799 0 196609 0 16 00 00 00 6f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....o..................... +1481 3.416845083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290758 12 -1 717643 0 0xffffffff 0 -1 717643 0 ff ff ff ff 4b f3 0a 00 00 00 00 00 ....K....... +1483 3.427133799 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290770 12 26 727132 0 0x0000001a 0 26 727132 0 1a 00 00 00 5c 18 0b 00 00 00 00 00 ....\....... +1485 3.427330256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290782 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1989083136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 89 1f 00 00 00 00 00 ....T.c@.^1@......q....... +1487 3.427661896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270949 12 -1 727132 0 0xffffffff 0 -1 727132 0 ff ff ff ff 5c 18 0b 00 00 00 00 00 ....\....... +1489 3.428010702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270961 12 22 717644 0 0x00000016 0 22 717644 0 16 00 00 00 4c f3 0a 00 00 00 00 00 ....L....... +1491 3.428168535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270973 22 18 2066801 0 0x00000012 1 2066801 0 196609 0 12 00 00 00 71 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +1493 3.428428173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290808 12 -1 717644 0 0xffffffff 0 -1 717644 0 ff ff ff ff 4c f3 0a 00 00 00 00 00 ....L....... +1501 3.530319929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290820 12 26 727133 0 0x0000001a 0 26 727133 0 1a 00 00 00 5d 18 0b 00 00 00 00 00 ....]....... +1503 3.530561924 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290832 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1988952064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 89 1f 00 00 00 00 00 ....T.c@.^1@......s....... +1505 3.530923605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377270995 12 -1 727133 0 0xffffffff 0 -1 727133 0 ff ff ff ff 5d 18 0b 00 00 00 00 00 ....]....... +1507 3.531497955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271007 12 22 717645 0 0x00000016 0 22 717645 0 16 00 00 00 4d f3 0a 00 00 00 00 00 ....M....... +1509 3.531736851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271019 22 18 2066803 0 0x00000012 1 2066803 0 196609 0 12 00 00 00 73 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +1511 3.532019854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290858 12 -1 717645 0 0xffffffff 0 -1 717645 0 ff ff ff ff 4d f3 0a 00 00 00 00 00 ....M....... +1513 3.611494541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271041 12 -2 82546 82563 0xfffffffe 0 -2 82546 82563 fe ff ff ff 72 42 01 00 83 42 01 00 ....rB...B.. +1523 3.633144140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290870 12 26 727134 0 0x0000001a 0 26 727134 0 1a 00 00 00 5e 18 0b 00 00 00 00 00 ....^....... +1525 3.633364916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290882 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1988820992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 89 1f 00 00 00 00 00 ....T.c@.^1@......u....... +1527 3.633912086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271053 12 -1 727134 0 0xffffffff 0 -1 727134 0 ff ff ff ff 5e 18 0b 00 00 00 00 00 ....^....... +1529 3.634569168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271065 12 22 717646 0 0x00000016 0 22 717646 0 16 00 00 00 4e f3 0a 00 00 00 00 00 ....N....... +1531 3.634777546 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271077 22 18 2066805 0 0x00000012 1 2066805 0 196609 0 12 00 00 00 75 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +1533 3.635058165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290908 12 -1 717646 0 0xffffffff 0 -1 717646 0 ff ff ff ff 4e f3 0a 00 00 00 00 00 ....N....... +1535 3.667056084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290920 12 -2 82564 82546 0xfffffffe 0 -2 82564 82546 fe ff ff ff 84 42 01 00 72 42 01 00 .....B..rB.. +1541 3.717789173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290932 12 34 727135 0 0x00000022 0 34 727135 0 22 00 00 00 5f 18 0b 00 00 00 00 00 """..._......." +1543 3.717996836 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290944 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 280887296 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 be 10 02 00 00 00 00 00 ef 9c 22 c3 9d 01 00 00 ".....!...o3.................""....." +1545 3.718137980 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290978 12 67 727136 0 0x00000043 0 67 727136 0 43 00 00 00 60 18 0b 00 00 00 00 00 C...`....... +1547 3.718225002 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333290990 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 be 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b8 e9 2e e7 c6 ?.....3...|8...................=B.....&......... +1549 3.718359709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271099 12 -1 727135 0 0xffffffff 0 -1 727135 0 ff ff ff ff 5f 18 0b 00 00 00 00 00 ...._....... +1551 3.718567371 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271111 12 -1 727136 0 0xffffffff 0 -1 727136 0 ff ff ff ff 60 18 0b 00 00 00 00 00 ....`....... +1553 3.719163179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271123 12 52 717647 0 0x00000034 0 52 717647 0 34 00 00 00 4f f3 0a 00 00 00 00 00 4...O....... +1555 3.719326019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271135 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 be 10 02 00 00 00 00 00 00 00 e0 b7 a5 6b 4d 01 00 00 "0...Dk.................L."".([..................k" +1557 3.719591379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291057 12 -1 717647 0 0xffffffff 0 -1 717647 0 ff ff ff ff 4f f3 0a 00 00 00 00 00 ....O....... +1559 3.720834970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291069 12 30 727137 0 0x0000001e 0 30 727137 0 1e 00 00 00 61 18 0b 00 00 00 00 00 ....a....... +1561 3.720978260 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291081 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1988689920 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 77 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......w........... +1563 3.721599102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271187 12 -1 727137 0 0xffffffff 0 -1 727137 0 ff ff ff ff 61 18 0b 00 00 00 00 00 ....a....... +1565 3.721886396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271199 12 26 717648 0 0x0000001a 0 26 717648 0 1a 00 00 00 50 f3 0a 00 00 00 00 00 ....P....... +1567 3.722033262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271211 26 22 2066807 0 0x00000016 1 2066807 0 196609 0 16 00 00 00 77 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....w..................... +1569 3.722272158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291111 12 -1 717648 0 0xffffffff 0 -1 717648 0 ff ff ff ff 50 f3 0a 00 00 00 00 00 ....P....... +1571 3.737185955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291123 12 26 727138 0 0x0000001a 0 26 727138 0 1a 00 00 00 62 18 0b 00 00 00 00 00 ....b....... +1573 3.737370491 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291135 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1988558848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 89 1f 00 00 00 00 00 ....T.c@.^1@......y....... +1575 3.737677097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271237 12 -1 727138 0 0xffffffff 0 -1 727138 0 ff ff ff ff 62 18 0b 00 00 00 00 00 ....b....... +1577 3.737999439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271249 12 22 717649 0 0x00000016 0 22 717649 0 16 00 00 00 51 f3 0a 00 00 00 00 00 ....Q....... +1579 3.738145590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271261 22 18 2066809 0 0x00000012 1 2066809 0 196609 0 12 00 00 00 79 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +1581 3.738403559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291161 12 -1 717649 0 0xffffffff 0 -1 717649 0 ff ff ff ff 51 f3 0a 00 00 00 00 00 ....Q....... +1583 3.840648413 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291173 12 26 727139 0 0x0000001a 0 26 727139 0 1a 00 00 00 63 18 0b 00 00 00 00 00 ....c....... +1585 3.840916634 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291185 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1988427776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 89 1f 00 00 00 00 00 ....T.c@.^1@......{....... +1587 3.841248989 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271283 12 -1 727139 0 0xffffffff 0 -1 727139 0 ff ff ff ff 63 18 0b 00 00 00 00 00 ....c....... +1589 3.841804743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271295 12 22 717650 0 0x00000016 0 22 717650 0 16 00 00 00 52 f3 0a 00 00 00 00 00 ....R....... +1591 3.842047930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271307 22 18 2066811 0 0x00000012 1 2066811 0 196609 0 12 00 00 00 7b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +1593 3.842455864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291211 12 -1 717650 0 0xffffffff 0 -1 717650 0 ff ff ff ff 52 f3 0a 00 00 00 00 00 ....R....... +1599 3.943502665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291223 12 26 727140 0 0x0000001a 0 26 727140 0 1a 00 00 00 64 18 0b 00 00 00 00 00 ....d....... +1601 3.943698406 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291235 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1988296704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 89 1f 00 00 00 00 00 ....T.c@.^1@......}....... +1603 3.944073439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271329 12 -1 727140 0 0xffffffff 0 -1 727140 0 ff ff ff ff 64 18 0b 00 00 00 00 00 ....d....... +1605 3.944470644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271341 12 22 717651 0 0x00000016 0 22 717651 0 16 00 00 00 53 f3 0a 00 00 00 00 00 ....S....... +1607 3.944631100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271353 22 18 2066813 0 0x00000012 1 2066813 0 196609 0 12 00 00 00 7d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +1609 3.944888353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291261 12 -1 717651 0 0xffffffff 0 -1 717651 0 ff ff ff ff 53 f3 0a 00 00 00 00 00 ....S....... +1615 4.021862745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291273 12 101 727141 0 0x00000065 0 101 727141 0 65 00 00 00 65 18 0b 00 00 00 00 00 e...e....... +1617 4.022050142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291285 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bf 10 02 00 00 00 00 00 1f 9e 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bf 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +1619 4.022385359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271375 12 -1 727141 0 0xffffffff 0 -1 727141 0 ff ff ff ff 65 18 0b 00 00 00 00 00 ....e....... +1621 4.023571253 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271387 12 52 717652 0 0x00000034 0 52 717652 0 34 00 00 00 54 f3 0a 00 00 00 00 00 4...T....... +1623 4.023763180 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271399 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bf 10 02 00 00 00 00 00 00 00 49 2b d4 6b 4d 01 00 00 "0...Dk.................L."".([...............I+.k" +1625 4.024035692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291386 12 -1 717652 0 0xffffffff 0 -1 717652 0 ff ff ff ff 54 f3 0a 00 00 00 00 00 ....T....... +1627 4.024799109 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291398 12 30 727142 0 0x0000001e 0 30 727142 0 1e 00 00 00 66 18 0b 00 00 00 00 00 ....f....... +1629 4.024989843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291410 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1988165632 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1631 4.025275230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271451 12 -1 727142 0 0xffffffff 0 -1 727142 0 ff ff ff ff 66 18 0b 00 00 00 00 00 ....f....... +1633 4.025619507 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271463 12 26 717653 0 0x0000001a 0 26 717653 0 1a 00 00 00 55 f3 0a 00 00 00 00 00 ....U....... +1635 4.025798559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271475 26 22 2066815 0 0x00000016 1 2066815 0 196609 0 16 00 00 00 7f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1637 4.026008606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291440 12 -1 717653 0 0xffffffff 0 -1 717653 0 ff ff ff ff 55 f3 0a 00 00 00 00 00 ....U....... +1639 4.046367645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291452 12 26 727143 0 0x0000001a 0 26 727143 0 1a 00 00 00 67 18 0b 00 00 00 00 00 ....g....... +1641 4.046543360 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291464 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1988034560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1643 4.046825171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271501 12 -1 727143 0 0xffffffff 0 -1 727143 0 ff ff ff ff 67 18 0b 00 00 00 00 00 ....g....... +1645 4.047137737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271513 12 22 717654 0 0x00000016 0 22 717654 0 16 00 00 00 56 f3 0a 00 00 00 00 00 ....V....... +1647 4.047299147 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271525 22 18 2066817 0 0x00000012 1 2066817 0 196609 0 12 00 00 00 81 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1649 4.047563076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291490 12 -1 717654 0 0xffffffff 0 -1 717654 0 ff ff ff ff 56 f3 0a 00 00 00 00 00 ....V....... +1651 4.111204624 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271547 12 -2 82547 82564 0xfffffffe 0 -2 82547 82564 fe ff ff ff 73 42 01 00 84 42 01 00 ....sB...B.. +1661 4.149141550 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291502 12 26 727144 0 0x0000001a 0 26 727144 0 1a 00 00 00 68 18 0b 00 00 00 00 00 ....h....... +1663 4.149317503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291514 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1987903488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1665 4.149729013 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271559 12 -1 727144 0 0xffffffff 0 -1 727144 0 ff ff ff ff 68 18 0b 00 00 00 00 00 ....h....... +1667 4.150375605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271571 12 22 717655 0 0x00000016 0 22 717655 0 16 00 00 00 57 f3 0a 00 00 00 00 00 ....W....... +1669 4.150568962 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271583 22 18 2066819 0 0x00000012 1 2066819 0 196609 0 12 00 00 00 83 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1671 4.150861263 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291540 12 -1 717655 0 0xffffffff 0 -1 717655 0 ff ff ff ff 57 f3 0a 00 00 00 00 00 ....W....... +1675 4.167861462 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291552 12 -2 82565 82547 0xfffffffe 0 -2 82565 82547 fe ff ff ff 85 42 01 00 73 42 01 00 .....B..sB.. +1681 4.252254725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291564 12 26 727145 0 0x0000001a 0 26 727145 0 1a 00 00 00 69 18 0b 00 00 00 00 00 ....i....... +1683 4.252461672 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291576 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1987772416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1685 4.252896547 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271605 12 -1 727145 0 0xffffffff 0 -1 727145 0 ff ff ff ff 69 18 0b 00 00 00 00 00 ....i....... +1687 4.253744602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271617 12 22 717656 0 0x00000016 0 22 717656 0 16 00 00 00 58 f3 0a 00 00 00 00 00 ....X....... +1689 4.253903627 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271629 22 18 2066821 0 0x00000012 1 2066821 0 196609 0 12 00 00 00 85 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1691 4.254111290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291602 12 -1 717656 0 0xffffffff 0 -1 717656 0 ff ff ff ff 58 f3 0a 00 00 00 00 00 ....X....... +1699 4.326876163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291614 12 101 727146 0 0x00000065 0 101 727146 0 65 00 00 00 6a 18 0b 00 00 00 00 00 e...j....... +1701 4.327057362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291626 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c0 10 02 00 00 00 00 00 50 9f 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c0 10 02 00 00 00 00 ".....!...o3...............P."".....?.....3...|8.." +1703 4.327384472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271651 12 -1 727146 0 0xffffffff 0 -1 727146 0 ff ff ff ff 6a 18 0b 00 00 00 00 00 ....j....... +1705 4.328726530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271663 12 52 717657 0 0x00000034 0 52 717657 0 34 00 00 00 59 f3 0a 00 00 00 00 00 4...Y....... +1707 4.328900337 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271675 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c0 10 02 00 00 00 00 00 00 00 91 ba 02 6c 4d 01 00 00 "0...Dk.................L."".([..................l" +1709 4.329188585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291727 12 -1 717657 0 0xffffffff 0 -1 717657 0 ff ff ff ff 59 f3 0a 00 00 00 00 00 ....Y....... +1711 4.329920053 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291739 12 30 727147 0 0x0000001e 0 30 727147 0 1e 00 00 00 6b 18 0b 00 00 00 00 00 ....k....... +1713 4.330064535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291751 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1987641344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 87 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1715 4.330299139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271727 12 -1 727147 0 0xffffffff 0 -1 727147 0 ff ff ff ff 6b 18 0b 00 00 00 00 00 ....k....... +1717 4.330765724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271739 12 26 717658 0 0x0000001a 0 26 717658 0 1a 00 00 00 5a f3 0a 00 00 00 00 00 ....Z....... +1719 4.330923796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271751 26 22 2066823 0 0x00000016 1 2066823 0 196609 0 16 00 00 00 87 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1721 4.331241608 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291781 12 -1 717658 0 0xffffffff 0 -1 717658 0 ff ff ff ff 5a f3 0a 00 00 00 00 00 ....Z....... +1723 4.356121778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291793 12 26 727148 0 0x0000001a 0 26 727148 0 1a 00 00 00 6c 18 0b 00 00 00 00 00 ....l....... +1725 4.356301069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291805 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1987510272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1727 4.356643438 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271777 12 -1 727148 0 0xffffffff 0 -1 727148 0 ff ff ff ff 6c 18 0b 00 00 00 00 00 ....l....... +1729 4.356973648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271789 12 22 717659 0 0x00000016 0 22 717659 0 16 00 00 00 5b f3 0a 00 00 00 00 00 ....[....... +1732 4.357146740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271801 22 18 2066825 0 0x00000012 1 2066825 0 196609 0 12 00 00 00 89 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1735 4.357414246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291831 12 -1 717659 0 0xffffffff 0 -1 717659 0 ff ff ff ff 5b f3 0a 00 00 00 00 00 ....[....... +1770 4.459516764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291843 12 26 727149 0 0x0000001a 0 26 727149 0 1a 00 00 00 6d 18 0b 00 00 00 00 00 ....m....... +1772 4.459690332 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291855 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1987379200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1774 4.460063934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271823 12 -1 727149 0 0xffffffff 0 -1 727149 0 ff ff ff ff 6d 18 0b 00 00 00 00 00 ....m....... +1776 4.460549116 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271835 12 22 717660 0 0x00000016 0 22 717660 0 16 00 00 00 5c f3 0a 00 00 00 00 00 ....\....... +1778 4.460723400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271847 22 18 2066827 0 0x00000012 1 2066827 0 196609 0 12 00 00 00 8b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1780 4.461112261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291881 12 -1 717660 0 0xffffffff 0 -1 717660 0 ff ff ff ff 5c f3 0a 00 00 00 00 00 ....\....... +1787 4.562906981 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291893 12 26 727150 0 0x0000001a 0 26 727150 0 1a 00 00 00 6e 18 0b 00 00 00 00 00 ....n....... +1789 4.563102245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291905 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1987248128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1791 4.563468933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271869 12 -1 727150 0 0xffffffff 0 -1 727150 0 ff ff ff ff 6e 18 0b 00 00 00 00 00 ....n....... +1793 4.563913822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271881 12 22 717661 0 0x00000016 0 22 717661 0 16 00 00 00 5d f3 0a 00 00 00 00 00 ....]....... +1795 4.564090967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271893 22 18 2066829 0 0x00000012 1 2066829 0 196609 0 12 00 00 00 8d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1797 4.564394236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291931 12 -1 717661 0 0xffffffff 0 -1 717661 0 ff ff ff ff 5d f3 0a 00 00 00 00 00 ....]....... +1799 4.611744642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271915 12 -2 82548 82565 0xfffffffe 0 -2 82548 82565 fe ff ff ff 74 42 01 00 85 42 01 00 ....tB...B.. +1809 4.632760525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291943 12 101 727151 0 0x00000065 0 101 727151 0 65 00 00 00 6f 18 0b 00 00 00 00 00 e...o....... +1811 4.632925272 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333291955 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c1 10 02 00 00 00 00 00 82 a0 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c1 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +1813 4.633181810 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271927 12 -1 727151 0 0xffffffff 0 -1 727151 0 ff ff ff ff 6f 18 0b 00 00 00 00 00 ....o....... +1815 4.634322405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271939 12 52 717662 0 0x00000034 0 52 717662 0 34 00 00 00 5e f3 0a 00 00 00 00 00 4...^....... +1817 4.634484768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377271951 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c1 10 02 00 00 00 00 00 00 00 4c 5c 31 6c 4d 01 00 00 "0...Dk.................L."".([...............L\1l" +1819 4.634841204 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292056 12 -1 717662 0 0xffffffff 0 -1 717662 0 ff ff ff ff 5e f3 0a 00 00 00 00 00 ....^....... +1821 4.635917664 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292068 12 30 727152 0 0x0000001e 0 30 727152 0 1e 00 00 00 70 18 0b 00 00 00 00 00 ....p....... +1823 4.636113167 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292080 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1987117056 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1825 4.636419535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272003 12 -1 727152 0 0xffffffff 0 -1 727152 0 ff ff ff ff 70 18 0b 00 00 00 00 00 ....p....... +1827 4.636801243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272015 12 26 717663 0 0x0000001a 0 26 717663 0 1a 00 00 00 5f f3 0a 00 00 00 00 00 ...._....... +1829 4.636966705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272027 26 22 2066831 0 0x00000016 1 2066831 0 196609 0 16 00 00 00 8f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1831 4.637281179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292110 12 -1 717663 0 0xffffffff 0 -1 717663 0 ff ff ff ff 5f f3 0a 00 00 00 00 00 ...._....... +1833 4.667313337 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292122 12 26 727153 0 0x0000001a 0 26 727153 0 1a 00 00 00 71 18 0b 00 00 00 00 00 ....q....... +1835 4.667551994 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292134 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1986985984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1837 4.668100834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272053 12 -1 727153 0 0xffffffff 0 -1 727153 0 ff ff ff ff 71 18 0b 00 00 00 00 00 ....q....... +1839 4.668810844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272065 12 22 717664 0 0x00000016 0 22 717664 0 16 00 00 00 60 f3 0a 00 00 00 00 00 ....`....... +1843 4.668987274 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292160 12 -2 82566 82548 0xfffffffe 0 -2 82566 82548 fe ff ff ff 86 42 01 00 74 42 01 00 .....B..tB.. +1844 4.669104338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272077 22 18 2066833 0 0x00000012 1 2066833 0 196609 0 12 00 00 00 91 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1847 4.669536591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292172 12 -1 717664 0 0xffffffff 0 -1 717664 0 ff ff ff ff 60 f3 0a 00 00 00 00 00 ....`....... +1852 4.771314383 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292184 12 26 727154 0 0x0000001a 0 26 727154 0 1a 00 00 00 72 18 0b 00 00 00 00 00 ....r....... +1854 4.771555424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292196 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1986854912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1856 4.771885157 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272099 12 -1 727154 0 0xffffffff 0 -1 727154 0 ff ff ff ff 72 18 0b 00 00 00 00 00 ....r....... +1858 4.772269726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272111 12 22 717665 0 0x00000016 0 22 717665 0 16 00 00 00 61 f3 0a 00 00 00 00 00 ....a....... +1860 4.772431850 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272123 22 18 2066835 0 0x00000012 1 2066835 0 196609 0 12 00 00 00 93 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1862 4.772670746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292222 12 -1 717665 0 0xffffffff 0 -1 717665 0 ff ff ff ff 61 f3 0a 00 00 00 00 00 ....a....... +1882 4.874481201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292234 12 26 727155 0 0x0000001a 0 26 727155 0 1a 00 00 00 73 18 0b 00 00 00 00 00 ....s....... +1884 4.874678135 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292246 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1986723840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1886 4.874932289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272145 12 -1 727155 0 0xffffffff 0 -1 727155 0 ff ff ff ff 73 18 0b 00 00 00 00 00 ....s....... +1888 4.875414133 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272157 12 22 717666 0 0x00000016 0 22 717666 0 16 00 00 00 62 f3 0a 00 00 00 00 00 ....b....... +1890 4.875582218 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272169 22 18 2066837 0 0x00000012 1 2066837 0 196609 0 12 00 00 00 95 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1892 4.875860929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292272 12 -1 717666 0 0xffffffff 0 -1 717666 0 ff ff ff ff 62 f3 0a 00 00 00 00 00 ....b....... +1896 4.936740160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292284 12 101 727156 0 0x00000065 0 101 727156 0 65 00 00 00 74 18 0b 00 00 00 00 00 e...t....... +1898 4.937027216 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292296 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c2 10 02 00 00 00 00 00 b2 a1 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c2 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +1900 4.937339067 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272191 12 -1 727156 0 0xffffffff 0 -1 727156 0 ff ff ff ff 74 18 0b 00 00 00 00 00 ....t....... +1902 4.938189030 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272203 12 52 717667 0 0x00000034 0 52 717667 0 34 00 00 00 63 f3 0a 00 00 00 00 00 4...c....... +1904 4.938345194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272215 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c2 10 02 00 00 00 00 00 00 00 e4 ba 5f 6c 4d 01 00 00 "0...Dk.................L."".([................._l" +1906 4.938617229 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292397 12 -1 717667 0 0xffffffff 0 -1 717667 0 ff ff ff ff 63 f3 0a 00 00 00 00 00 ....c....... +1908 4.939421892 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292409 12 30 727157 0 0x0000001e 0 30 727157 0 1e 00 00 00 75 18 0b 00 00 00 00 00 ....u....... +1910 4.939594269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292421 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1986592768 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1912 4.939913273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272267 12 -1 727157 0 0xffffffff 0 -1 727157 0 ff ff ff ff 75 18 0b 00 00 00 00 00 ....u....... +1914 4.940263987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272279 12 26 717668 0 0x0000001a 0 26 717668 0 1a 00 00 00 64 f3 0a 00 00 00 00 00 ....d....... +1916 4.940410376 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272291 26 22 2066839 0 0x00000016 1 2066839 0 196609 0 16 00 00 00 97 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1918 4.940768719 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292451 12 -1 717668 0 0xffffffff 0 -1 717668 0 ff ff ff ff 64 f3 0a 00 00 00 00 00 ....d....... +1922 4.977108240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292463 12 26 727158 0 0x0000001a 0 26 727158 0 1a 00 00 00 76 18 0b 00 00 00 00 00 ....v....... +1924 4.977301598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292475 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1986461696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1926 4.977626324 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272317 12 -1 727158 0 0xffffffff 0 -1 727158 0 ff ff ff ff 76 18 0b 00 00 00 00 00 ....v....... +1928 4.977919340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272329 12 22 717669 0 0x00000016 0 22 717669 0 16 00 00 00 65 f3 0a 00 00 00 00 00 ....e....... +1930 4.978150368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272341 22 18 2066841 0 0x00000012 1 2066841 0 196609 0 12 00 00 00 99 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1932 4.978429079 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292501 12 -1 717669 0 0xffffffff 0 -1 717669 0 ff ff ff ff 65 f3 0a 00 00 00 00 00 ....e....... +1938 5.080462694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292513 12 26 727159 0 0x0000001a 0 26 727159 0 1a 00 00 00 77 18 0b 00 00 00 00 00 ....w....... +1940 5.080735683 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292525 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1986330624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1942 5.081009626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272363 12 -1 727159 0 0xffffffff 0 -1 727159 0 ff ff ff ff 77 18 0b 00 00 00 00 00 ....w....... +1944 5.081467628 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272375 12 22 717670 0 0x00000016 0 22 717670 0 16 00 00 00 66 f3 0a 00 00 00 00 00 ....f....... +1946 5.081681490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272387 22 18 2066843 0 0x00000012 1 2066843 0 196609 0 12 00 00 00 9b 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1948 5.081994057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292551 12 -1 717670 0 0xffffffff 0 -1 717670 0 ff ff ff ff 66 f3 0a 00 00 00 00 00 ....f....... +1951 5.113036156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272409 12 -2 82549 82566 0xfffffffe 0 -2 82549 82566 fe ff ff ff 75 42 01 00 86 42 01 00 ....uB...B.. +1963 5.171118736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292563 12 -2 82567 82549 0xfffffffe 0 -2 82567 82549 fe ff ff ff 87 42 01 00 75 42 01 00 .....B..uB.. +1968 5.183317184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292575 12 26 727160 0 0x0000001a 0 26 727160 0 1a 00 00 00 78 18 0b 00 00 00 00 00 ....x....... +1970 5.183536291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292587 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1986199552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +1972 5.183904648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272421 12 -1 727160 0 0xffffffff 0 -1 727160 0 ff ff ff ff 78 18 0b 00 00 00 00 00 ....x....... +1974 5.184536219 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272433 12 22 717671 0 0x00000016 0 22 717671 0 16 00 00 00 67 f3 0a 00 00 00 00 00 ....g....... +1976 5.184769630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272445 22 18 2066845 0 0x00000012 1 2066845 0 196609 0 12 00 00 00 9d 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1978 5.185094833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292613 12 -1 717671 0 0xffffffff 0 -1 717671 0 ff ff ff ff 67 f3 0a 00 00 00 00 00 ....g....... +1982 5.240518093 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292625 12 101 727161 0 0x00000065 0 101 727161 0 65 00 00 00 79 18 0b 00 00 00 00 00 e...y....... +1984 5.240700722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292637 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c3 10 02 00 00 00 00 00 e1 a2 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c3 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +1986 5.241040945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272467 12 -1 727161 0 0xffffffff 0 -1 727161 0 ff ff ff ff 79 18 0b 00 00 00 00 00 ....y....... +1988 5.242128134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272479 12 52 717672 0 0x00000034 0 52 717672 0 34 00 00 00 68 f3 0a 00 00 00 00 00 4...h....... +1990 5.242299318 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272491 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c3 10 02 00 00 00 00 00 00 00 1a 1b 8e 6c 4d 01 00 00 "0...Dk.................L."".([..................l" +1992 5.242696762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292738 12 -1 717672 0 0xffffffff 0 -1 717672 0 ff ff ff ff 68 f3 0a 00 00 00 00 00 ....h....... +1994 5.243569613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292750 12 30 727162 0 0x0000001e 0 30 727162 0 1e 00 00 00 7a 18 0b 00 00 00 00 00 ....z....... +1996 5.243730068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292762 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1986068480 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1998 5.244061470 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272543 12 -1 727162 0 0xffffffff 0 -1 727162 0 ff ff ff ff 7a 18 0b 00 00 00 00 00 ....z....... +2000 5.244612694 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272555 12 26 717673 0 0x0000001a 0 26 717673 0 1a 00 00 00 69 f3 0a 00 00 00 00 00 ....i....... +2002 5.244772434 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272567 26 22 2066847 0 0x00000016 1 2066847 0 196609 0 16 00 00 00 9f 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2004 5.245015144 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292792 12 -1 717673 0 0xffffffff 0 -1 717673 0 ff ff ff ff 69 f3 0a 00 00 00 00 00 ....i....... +2006 5.285968304 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292804 12 26 727163 0 0x0000001a 0 26 727163 0 1a 00 00 00 7b 18 0b 00 00 00 00 00 ....{....... +2008 5.286131144 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292816 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1985937408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2010 5.286492825 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272593 12 -1 727163 0 0xffffffff 0 -1 727163 0 ff ff ff ff 7b 18 0b 00 00 00 00 00 ....{....... +2012 5.286864996 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272605 12 22 717674 0 0x00000016 0 22 717674 0 16 00 00 00 6a f3 0a 00 00 00 00 00 ....j....... +2014 5.287025213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272617 22 18 2066849 0 0x00000012 1 2066849 0 196609 0 12 00 00 00 a1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2016 5.287255526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292842 12 -1 717674 0 0xffffffff 0 -1 717674 0 ff ff ff ff 6a f3 0a 00 00 00 00 00 ....j....... +2024 5.389078856 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292854 12 26 727164 0 0x0000001a 0 26 727164 0 1a 00 00 00 7c 18 0b 00 00 00 00 00 ....|....... +2026 5.389290333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292866 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1985806336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2028 5.389647961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272639 12 -1 727164 0 0xffffffff 0 -1 727164 0 ff ff ff ff 7c 18 0b 00 00 00 00 00 ....|....... +2030 5.390135050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272651 12 22 717675 0 0x00000016 0 22 717675 0 16 00 00 00 6b f3 0a 00 00 00 00 00 ....k....... +2032 5.390296459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272663 22 18 2066851 0 0x00000012 1 2066851 0 196609 0 12 00 00 00 a3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2034 5.390758038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292892 12 -1 717675 0 0xffffffff 0 -1 717675 0 ff ff ff ff 6b f3 0a 00 00 00 00 00 ....k....... +2042 5.492799044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292904 12 26 727165 0 0x0000001a 0 26 727165 0 1a 00 00 00 7d 18 0b 00 00 00 00 00 ....}....... +2044 5.492982149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292916 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1985675264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2046 5.493314505 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272685 12 -1 727165 0 0xffffffff 0 -1 727165 0 ff ff ff ff 7d 18 0b 00 00 00 00 00 ....}....... +2048 5.493748188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272697 12 22 717676 0 0x00000016 0 22 717676 0 16 00 00 00 6c f3 0a 00 00 00 00 00 ....l....... +2050 5.493907213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272709 22 18 2066853 0 0x00000012 1 2066853 0 196609 0 12 00 00 00 a5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2052 5.494184732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292942 12 -1 717676 0 0xffffffff 0 -1 717676 0 ff ff ff ff 6c f3 0a 00 00 00 00 00 ....l....... +2057 5.546270132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292954 12 101 727166 0 0x00000065 0 101 727166 0 65 00 00 00 7e 18 0b 00 00 00 00 00 e...~....... +2059 5.546420097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333292966 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c4 10 02 00 00 00 00 00 13 a4 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c4 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +2061 5.546736717 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272731 12 -1 727166 0 0xffffffff 0 -1 727166 0 ff ff ff ff 7e 18 0b 00 00 00 00 00 ....~....... +2063 5.547804832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272743 12 52 717677 0 0x00000034 0 52 717677 0 34 00 00 00 6d f3 0a 00 00 00 00 00 4...m....... +2065 5.547966957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272755 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c4 10 02 00 00 00 00 00 00 00 b2 bf bc 6c 4d 01 00 00 "0...Dk.................L."".([..................l" +2067 5.548292637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293067 12 -1 717677 0 0xffffffff 0 -1 717677 0 ff ff ff ff 6d f3 0a 00 00 00 00 00 ....m....... +2069 5.549214602 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293079 12 30 727167 0 0x0000001e 0 30 727167 0 1e 00 00 00 7f 18 0b 00 00 00 00 00 ............ +2071 5.549405336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293091 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1985544192 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2073 5.549713612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272807 12 -1 727167 0 0xffffffff 0 -1 727167 0 ff ff ff ff 7f 18 0b 00 00 00 00 00 ............ +2075 5.550116539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272819 12 26 717678 0 0x0000001a 0 26 717678 0 1a 00 00 00 6e f3 0a 00 00 00 00 00 ....n....... +2077 5.550399065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272831 26 22 2066855 0 0x00000016 1 2066855 0 196609 0 16 00 00 00 a7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2079 5.550781727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293121 12 -1 717678 0 0xffffffff 0 -1 717678 0 ff ff ff ff 6e f3 0a 00 00 00 00 00 ....n....... +2082 5.595777988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293133 12 26 727168 0 0x0000001a 0 26 727168 0 1a 00 00 00 80 18 0b 00 00 00 00 00 ............ +2084 5.595942974 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293145 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1985413120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2086 5.596281528 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272857 12 -1 727168 0 0xffffffff 0 -1 727168 0 ff ff ff ff 80 18 0b 00 00 00 00 00 ............ +2088 5.597241640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272869 12 22 717679 0 0x00000016 0 22 717679 0 16 00 00 00 6f f3 0a 00 00 00 00 00 ....o....... +2090 5.597442389 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272881 22 18 2066857 0 0x00000012 1 2066857 0 196609 0 12 00 00 00 a9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2092 5.597733021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293171 12 -1 717679 0 0xffffffff 0 -1 717679 0 ff ff ff ff 6f f3 0a 00 00 00 00 00 ....o....... +2094 5.613994360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272903 12 -2 82550 82567 0xfffffffe 0 -2 82550 82567 fe ff ff ff 76 42 01 00 87 42 01 00 ....vB...B.. +2106 5.671695471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293183 12 -2 82568 82550 0xfffffffe 0 -2 82568 82550 fe ff ff ff 88 42 01 00 76 42 01 00 .....B..vB.. +2112 5.698765278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293195 12 26 727169 0 0x0000001a 0 26 727169 0 1a 00 00 00 81 18 0b 00 00 00 00 00 ............ +2114 5.698946476 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293207 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1985282048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2116 5.699310303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272915 12 -1 727169 0 0xffffffff 0 -1 727169 0 ff ff ff ff 81 18 0b 00 00 00 00 00 ............ +2118 5.699829340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272927 12 22 717680 0 0x00000016 0 22 717680 0 16 00 00 00 70 f3 0a 00 00 00 00 00 ....p....... +2120 5.699985266 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272939 22 18 2066859 0 0x00000012 1 2066859 0 196609 0 12 00 00 00 ab 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2122 5.700240850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293233 12 -1 717680 0 0xffffffff 0 -1 717680 0 ff ff ff ff 70 f3 0a 00 00 00 00 00 ....p....... +2125 5.801679611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293245 12 26 727170 0 0x0000001a 0 26 727170 0 1a 00 00 00 82 18 0b 00 00 00 00 00 ............ +2127 5.801855564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293257 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1985150976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2129 5.802197218 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272961 12 -1 727170 0 0xffffffff 0 -1 727170 0 ff ff ff ff 82 18 0b 00 00 00 00 00 ............ +2131 5.802634954 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272973 12 22 717681 0 0x00000016 0 22 717681 0 16 00 00 00 71 f3 0a 00 00 00 00 00 ....q....... +2133 5.802779913 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377272985 22 18 2066861 0 0x00000012 1 2066861 0 196609 0 12 00 00 00 ad 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2135 5.803014040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293283 12 -1 717681 0 0xffffffff 0 -1 717681 0 ff ff ff ff 71 f3 0a 00 00 00 00 00 ....q....... +2137 5.851462126 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293295 12 101 727171 0 0x00000065 0 101 727171 0 65 00 00 00 83 18 0b 00 00 00 00 00 e........... +2139 5.851633310 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293307 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c5 10 02 00 00 00 00 00 44 a5 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c5 10 02 00 00 00 00 ".....!...o3...............D."".....?.....3...|8.." +2141 5.851974010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273007 12 -1 727171 0 0xffffffff 0 -1 727171 0 ff ff ff ff 83 18 0b 00 00 00 00 00 ............ +2143 5.852940559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273019 12 52 717682 0 0x00000034 0 52 717682 0 34 00 00 00 72 f3 0a 00 00 00 00 00 4...r....... +2145 5.853103161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273031 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c5 10 02 00 00 00 00 00 00 00 31 4c eb 6c 4d 01 00 00 "0...Dk.................L."".([...............1L.l" +2147 5.853380919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293408 12 -1 717682 0 0xffffffff 0 -1 717682 0 ff ff ff ff 72 f3 0a 00 00 00 00 00 ....r....... +2149 5.854282618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293420 12 30 727172 0 0x0000001e 0 30 727172 0 1e 00 00 00 84 18 0b 00 00 00 00 00 ............ +2151 5.854488373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293432 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1985019904 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2153 5.854988813 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273083 12 -1 727172 0 0xffffffff 0 -1 727172 0 ff ff ff ff 84 18 0b 00 00 00 00 00 ............ +2155 5.855298758 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273095 12 26 717683 0 0x0000001a 0 26 717683 0 1a 00 00 00 73 f3 0a 00 00 00 00 00 ....s....... +2157 5.855479717 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273107 26 22 2066863 0 0x00000016 1 2066863 0 196609 0 16 00 00 00 af 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2159 5.855764389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293462 12 -1 717683 0 0xffffffff 0 -1 717683 0 ff ff ff ff 73 f3 0a 00 00 00 00 00 ....s....... +2166 5.904944420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293474 12 26 727173 0 0x0000001a 0 26 727173 0 1a 00 00 00 85 18 0b 00 00 00 00 00 ............ +2168 5.905210972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293486 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1984888832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2170 5.905612469 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273133 12 -1 727173 0 0xffffffff 0 -1 727173 0 ff ff ff ff 85 18 0b 00 00 00 00 00 ............ +2172 5.905981302 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273145 12 22 717684 0 0x00000016 0 22 717684 0 16 00 00 00 74 f3 0a 00 00 00 00 00 ....t....... +2174 5.906145096 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273157 22 18 2066865 0 0x00000012 1 2066865 0 196609 0 12 00 00 00 b1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2176 5.906512976 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293512 12 -1 717684 0 0xffffffff 0 -1 717684 0 ff ff ff ff 74 f3 0a 00 00 00 00 00 ....t....... +2182 6.008524418 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293524 12 26 727174 0 0x0000001a 0 26 727174 0 1a 00 00 00 86 18 0b 00 00 00 00 00 ............ +2184 6.008762360 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293536 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1984757760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2186 6.009054184 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273179 12 -1 727174 0 0xffffffff 0 -1 727174 0 ff ff ff ff 86 18 0b 00 00 00 00 00 ............ +2188 6.009466171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273191 12 22 717685 0 0x00000016 0 22 717685 0 16 00 00 00 75 f3 0a 00 00 00 00 00 ....u....... +2190 6.009625435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273203 22 18 2066867 0 0x00000012 1 2066867 0 196609 0 12 00 00 00 b3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2192 6.009935141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293562 12 -1 717685 0 0xffffffff 0 -1 717685 0 ff ff ff ff 75 f3 0a 00 00 00 00 00 ....u....... +2254 6.111973047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293574 12 26 727175 0 0x0000001a 0 26 727175 0 1a 00 00 00 87 18 0b 00 00 00 00 00 ............ +2256 6.112193346 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293586 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1984626688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2258 6.112569332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273225 12 -1 727175 0 0xffffffff 0 -1 727175 0 ff ff ff ff 87 18 0b 00 00 00 00 00 ............ +2260 6.112985134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273237 12 22 717686 0 0x00000016 0 22 717686 0 16 00 00 00 76 f3 0a 00 00 00 00 00 ....v....... +2262 6.113152742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273249 22 18 2066869 0 0x00000012 1 2066869 0 196609 0 12 00 00 00 b5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2264 6.113476515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293612 12 -1 717686 0 0xffffffff 0 -1 717686 0 ff ff ff ff 76 f3 0a 00 00 00 00 00 ....v....... +2266 6.114652634 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273271 12 -2 82551 82568 0xfffffffe 0 -2 82551 82568 fe ff ff ff 77 42 01 00 88 42 01 00 ....wB...B.. +2276 6.156218529 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293624 12 101 727176 0 0x00000065 0 101 727176 0 65 00 00 00 88 18 0b 00 00 00 00 00 e........... +2278 6.156411171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293636 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c6 10 02 00 00 00 00 00 75 a6 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c6 10 02 00 00 00 00 ".....!...o3...............u."".....?.....3...|8.." +2280 6.156672955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273283 12 -1 727176 0 0xffffffff 0 -1 727176 0 ff ff ff ff 88 18 0b 00 00 00 00 00 ............ +2282 6.157702923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273295 12 52 717687 0 0x00000034 0 52 717687 0 34 00 00 00 77 f3 0a 00 00 00 00 00 4...w....... +2284 6.157866240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273307 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c6 10 02 00 00 00 00 00 00 00 6b cf 19 6d 4d 01 00 00 "0...Dk.................L."".([...............k..m" +2286 6.158133268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293737 12 -1 717687 0 0xffffffff 0 -1 717687 0 ff ff ff ff 77 f3 0a 00 00 00 00 00 ....w....... +2288 6.159310579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293749 12 30 727177 0 0x0000001e 0 30 727177 0 1e 00 00 00 89 18 0b 00 00 00 00 00 ............ +2290 6.159505606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293761 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1984495616 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2292 6.159786940 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273359 12 -1 727177 0 0xffffffff 0 -1 727177 0 ff ff ff ff 89 18 0b 00 00 00 00 00 ............ +2294 6.160151243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273371 12 26 717688 0 0x0000001a 0 26 717688 0 1a 00 00 00 78 f3 0a 00 00 00 00 00 ....x....... +2296 6.160353899 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273383 26 22 2066871 0 0x00000016 1 2066871 0 196609 0 16 00 00 00 b7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2298 6.160651922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293791 12 -1 717688 0 0xffffffff 0 -1 717688 0 ff ff ff ff 78 f3 0a 00 00 00 00 00 ....x....... +2301 6.172580004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293803 12 -2 82569 82551 0xfffffffe 0 -2 82569 82551 fe ff ff ff 89 42 01 00 77 42 01 00 .....B..wB.. +2306 6.214817047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293815 12 26 727178 0 0x0000001a 0 26 727178 0 1a 00 00 00 8a 18 0b 00 00 00 00 00 ............ +2308 6.214990139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293827 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1984364544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2310 6.215342999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273409 12 -1 727178 0 0xffffffff 0 -1 727178 0 ff ff ff ff 8a 18 0b 00 00 00 00 00 ............ +2312 6.215715647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273421 12 22 717689 0 0x00000016 0 22 717689 0 16 00 00 00 79 f3 0a 00 00 00 00 00 ....y....... +2314 6.215875387 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273433 22 18 2066873 0 0x00000012 1 2066873 0 196609 0 12 00 00 00 b9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2316 6.216147184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293853 12 -1 717689 0 0xffffffff 0 -1 717689 0 ff ff ff ff 79 f3 0a 00 00 00 00 00 ....y....... +2319 6.317978621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293865 12 26 727179 0 0x0000001a 0 26 727179 0 1a 00 00 00 8b 18 0b 00 00 00 00 00 ............ +2321 6.318171740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293877 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1984233472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2323 6.318568945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273455 12 -1 727179 0 0xffffffff 0 -1 727179 0 ff ff ff ff 8b 18 0b 00 00 00 00 00 ............ +2325 6.318974733 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273467 12 22 717690 0 0x00000016 0 22 717690 0 16 00 00 00 7a f3 0a 00 00 00 00 00 ....z....... +2327 6.319141865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273479 22 18 2066875 0 0x00000012 1 2066875 0 196609 0 12 00 00 00 bb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2329 6.319437027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293903 12 -1 717690 0 0xffffffff 0 -1 717690 0 ff ff ff ff 7a f3 0a 00 00 00 00 00 ....z....... +2353 6.421054125 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293915 12 26 727180 0 0x0000001a 0 26 727180 0 1a 00 00 00 8c 18 0b 00 00 00 00 00 ............ +2355 6.421264172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293927 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1984102400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2357 6.421574354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273501 12 -1 727180 0 0xffffffff 0 -1 727180 0 ff ff ff ff 8c 18 0b 00 00 00 00 00 ............ +2359 6.422091484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273513 12 22 717691 0 0x00000016 0 22 717691 0 16 00 00 00 7b f3 0a 00 00 00 00 00 ....{....... +2361 6.422252655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273525 22 18 2066877 0 0x00000012 1 2066877 0 196609 0 12 00 00 00 bd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2363 6.422644854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293953 12 -1 717691 0 0xffffffff 0 -1 717691 0 ff ff ff ff 7b f3 0a 00 00 00 00 00 ....{....... +2365 6.461514235 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293965 12 34 727181 0 0x00000022 0 34 727181 0 22 00 00 00 8d 18 0b 00 00 00 00 00 """..........." +2367 6.461785316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333293977 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 281477120 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c7 10 02 00 00 00 00 00 a7 a7 22 c3 9d 01 00 00 ".....!...o3.................""....." +2369 6.461873531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294011 12 67 727182 0 0x00000043 0 67 727182 0 43 00 00 00 8e 18 0b 00 00 00 00 00 C........... +2371 6.461956978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294023 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 54 ad 8a c7 ?.....3...|8...................=B.....&......... +2373 6.462048531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273547 12 -1 727181 0 0xffffffff 0 -1 727181 0 ff ff ff ff 8d 18 0b 00 00 00 00 00 ............ +2375 6.462205648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273559 12 -1 727182 0 0xffffffff 0 -1 727182 0 ff ff ff ff 8e 18 0b 00 00 00 00 00 ............ +2377 6.462985516 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273571 12 52 717692 0 0x00000034 0 52 717692 0 34 00 00 00 7c f3 0a 00 00 00 00 00 4...|....... +2379 6.463158369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273583 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c7 10 02 00 00 00 00 00 00 00 b8 65 48 6d 4d 01 00 00 "0...Dk.................L."".([................eHm" +2381 6.463397264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294090 12 -1 717692 0 0xffffffff 0 -1 717692 0 ff ff ff ff 7c f3 0a 00 00 00 00 00 ....|....... +2383 6.464193583 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294102 12 30 727183 0 0x0000001e 0 30 727183 0 1e 00 00 00 8f 18 0b 00 00 00 00 00 ............ +2385 6.464322567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294114 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1983971328 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2387 6.464644909 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273635 12 -1 727183 0 0xffffffff 0 -1 727183 0 ff ff ff ff 8f 18 0b 00 00 00 00 00 ............ +2389 6.465568542 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273647 12 26 717693 0 0x0000001a 0 26 717693 0 1a 00 00 00 7d f3 0a 00 00 00 00 00 ....}....... +2391 6.465708971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273659 26 22 2066879 0 0x00000016 1 2066879 0 196609 0 16 00 00 00 bf 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2393 6.465897322 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294144 12 -1 717693 0 0xffffffff 0 -1 717693 0 ff ff ff ff 7d f3 0a 00 00 00 00 00 ....}....... +2425 6.523964882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294156 12 26 727184 0 0x0000001a 0 26 727184 0 1a 00 00 00 90 18 0b 00 00 00 00 00 ............ +2427 6.524136305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294168 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1983840256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2429 6.524603844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273685 12 -1 727184 0 0xffffffff 0 -1 727184 0 ff ff ff ff 90 18 0b 00 00 00 00 00 ............ +2431 6.524853230 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273697 12 22 717694 0 0x00000016 0 22 717694 0 16 00 00 00 7e f3 0a 00 00 00 00 00 ....~....... +2433 6.525011301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273709 22 18 2066881 0 0x00000012 1 2066881 0 196609 0 12 00 00 00 c1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2435 6.525362253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294194 12 -1 717694 0 0xffffffff 0 -1 717694 0 ff ff ff ff 7e f3 0a 00 00 00 00 00 ....~....... +2442 6.615893841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273731 12 -2 82552 82569 0xfffffffe 0 -2 82552 82569 fe ff ff ff 78 42 01 00 89 42 01 00 ....xB...B.. +2448 6.627004623 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294206 12 26 727185 0 0x0000001a 0 26 727185 0 1a 00 00 00 91 18 0b 00 00 00 00 00 ............ +2450 6.627275229 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294218 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1983709184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2452 6.627573013 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273743 12 -1 727185 0 0xffffffff 0 -1 727185 0 ff ff ff ff 91 18 0b 00 00 00 00 00 ............ +2454 6.628181696 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273755 12 22 717695 0 0x00000016 0 22 717695 0 16 00 00 00 7f f3 0a 00 00 00 00 00 ............ +2456 6.628376961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273767 22 18 2066883 0 0x00000012 1 2066883 0 196609 0 12 00 00 00 c3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2458 6.628743410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294244 12 -1 717695 0 0xffffffff 0 -1 717695 0 ff ff ff ff 7f f3 0a 00 00 00 00 00 ............ +2461 6.673944473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294256 12 -2 82570 82552 0xfffffffe 0 -2 82570 82552 fe ff ff ff 8a 42 01 00 78 42 01 00 .....B..xB.. +2497 6.731317997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294268 12 26 727186 0 0x0000001a 0 26 727186 0 1a 00 00 00 92 18 0b 00 00 00 00 00 ............ +2499 6.731517076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294280 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1983578112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2501 6.731966496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273789 12 -1 727186 0 0xffffffff 0 -1 727186 0 ff ff ff ff 92 18 0b 00 00 00 00 00 ............ +2503 6.732588768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273801 12 22 717696 0 0x00000016 0 22 717696 0 16 00 00 00 80 f3 0a 00 00 00 00 00 ............ +2505 6.732809305 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273813 22 18 2066885 0 0x00000012 1 2066885 0 196609 0 12 00 00 00 c5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2507 6.733108759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294306 12 -1 717696 0 0xffffffff 0 -1 717696 0 ff ff ff ff 80 f3 0a 00 00 00 00 00 ............ +2509 6.766778231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294318 12 101 727187 0 0x00000065 0 101 727187 0 65 00 00 00 93 18 0b 00 00 00 00 00 e........... +2511 6.766977549 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294330 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c8 10 02 00 00 00 00 00 d8 a8 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c8 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +2513 6.767340422 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273835 12 -1 727187 0 0xffffffff 0 -1 727187 0 ff ff ff ff 93 18 0b 00 00 00 00 00 ............ +2515 6.768358946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273847 12 52 717697 0 0x00000034 0 52 717697 0 34 00 00 00 81 f3 0a 00 00 00 00 00 4........... +2517 6.768519402 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273859 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c8 10 02 00 00 00 00 00 00 00 48 fd 76 6d 4d 01 00 00 "0...Dk.................L."".([...............H.vm" +2519 6.768875837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294431 12 -1 717697 0 0xffffffff 0 -1 717697 0 ff ff ff ff 81 f3 0a 00 00 00 00 00 ............ +2521 6.770153522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294443 12 30 727188 0 0x0000001e 0 30 727188 0 1e 00 00 00 94 18 0b 00 00 00 00 00 ............ +2523 6.770320654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294455 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1983447040 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2525 6.770761967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273911 12 -1 727188 0 0xffffffff 0 -1 727188 0 ff ff ff ff 94 18 0b 00 00 00 00 00 ............ +2527 6.771094084 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273923 12 26 717698 0 0x0000001a 0 26 717698 0 1a 00 00 00 82 f3 0a 00 00 00 00 00 ............ +2529 6.771253347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273935 26 22 2066887 0 0x00000016 1 2066887 0 196609 0 16 00 00 00 c7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2531 6.771548271 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294485 12 -1 717698 0 0xffffffff 0 -1 717698 0 ff ff ff ff 82 f3 0a 00 00 00 00 00 ............ +2534 6.834219933 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294497 12 26 727189 0 0x0000001a 0 26 727189 0 1a 00 00 00 95 18 0b 00 00 00 00 00 ............ +2536 6.834395170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294509 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1983315968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2538 6.834763765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273961 12 -1 727189 0 0xffffffff 0 -1 727189 0 ff ff ff ff 95 18 0b 00 00 00 00 00 ............ +2540 6.835414410 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273973 12 22 717699 0 0x00000016 0 22 717699 0 16 00 00 00 83 f3 0a 00 00 00 00 00 ............ +2542 6.835559130 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377273985 22 18 2066889 0 0x00000012 1 2066889 0 196609 0 12 00 00 00 c9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2544 6.835830212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294535 12 -1 717699 0 0xffffffff 0 -1 717699 0 ff ff ff ff 83 f3 0a 00 00 00 00 00 ............ +2551 6.936810732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294547 12 26 727190 0 0x0000001a 0 26 727190 0 1a 00 00 00 96 18 0b 00 00 00 00 00 ............ +2553 6.937060356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294559 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1983184896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2555 6.937482834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274007 12 -1 727190 0 0xffffffff 0 -1 727190 0 ff ff ff ff 96 18 0b 00 00 00 00 00 ............ +2557 6.938034534 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274019 12 22 717700 0 0x00000016 0 22 717700 0 16 00 00 00 84 f3 0a 00 00 00 00 00 ............ +2559 6.938180208 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274031 22 18 2066891 0 0x00000012 1 2066891 0 196609 0 12 00 00 00 cb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2561 6.938488245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294585 12 -1 717700 0 0xffffffff 0 -1 717700 0 ff ff ff ff 84 f3 0a 00 00 00 00 00 ............ +2568 7.040423393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294597 12 26 727191 0 0x0000001a 0 26 727191 0 1a 00 00 00 97 18 0b 00 00 00 00 00 ............ +2570 7.040659666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294609 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1983053824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2572 7.041094542 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274053 12 -1 727191 0 0xffffffff 0 -1 727191 0 ff ff ff ff 97 18 0b 00 00 00 00 00 ............ +2574 7.041517496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274065 12 22 717701 0 0x00000016 0 22 717701 0 16 00 00 00 85 f3 0a 00 00 00 00 00 ............ +2576 7.041685104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274077 22 18 2066893 0 0x00000012 1 2066893 0 196609 0 12 00 00 00 cd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2578 7.042009592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294635 12 -1 717701 0 0xffffffff 0 -1 717701 0 ff ff ff ff 85 f3 0a 00 00 00 00 00 ............ +2580 7.071761131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294647 12 101 727192 0 0x00000065 0 101 727192 0 65 00 00 00 98 18 0b 00 00 00 00 00 e........... +2582 7.071938992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294659 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c9 10 02 00 00 00 00 00 09 aa 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c9 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +2584 7.072292328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274099 12 -1 727192 0 0xffffffff 0 -1 727192 0 ff ff ff ff 98 18 0b 00 00 00 00 00 ............ +2586 7.073391199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274111 12 52 717702 0 0x00000034 0 52 717702 0 34 00 00 00 86 f3 0a 00 00 00 00 00 4........... +2588 7.073556662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274123 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c9 10 02 00 00 00 00 00 00 00 8b 87 a5 6d 4d 01 00 00 "0...Dk.................L."".([..................m" +2590 7.073877335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294760 12 -1 717702 0 0xffffffff 0 -1 717702 0 ff ff ff ff 86 f3 0a 00 00 00 00 00 ............ +2592 7.074773550 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294772 12 30 727193 0 0x0000001e 0 30 727193 0 1e 00 00 00 99 18 0b 00 00 00 00 00 ............ +2594 7.074938059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294784 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1982922752 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cf 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2596 7.075258017 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274175 12 -1 727193 0 0xffffffff 0 -1 727193 0 ff ff ff ff 99 18 0b 00 00 00 00 00 ............ +2598 7.075643778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274187 12 26 717703 0 0x0000001a 0 26 717703 0 1a 00 00 00 87 f3 0a 00 00 00 00 00 ............ +2600 7.075840235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274199 26 22 2066895 0 0x00000016 1 2066895 0 196609 0 16 00 00 00 cf 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2602 7.076238394 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294814 12 -1 717703 0 0xffffffff 0 -1 717703 0 ff ff ff ff 87 f3 0a 00 00 00 00 00 ............ +2608 7.116778851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274225 12 -2 82553 82570 0xfffffffe 0 -2 82553 82570 fe ff ff ff 79 42 01 00 8a 42 01 00 ....yB...B.. +2615 7.143345356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294826 12 26 727194 0 0x0000001a 0 26 727194 0 1a 00 00 00 9a 18 0b 00 00 00 00 00 ............ +2617 7.143511295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294838 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1982791680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2619 7.143815994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274237 12 -1 727194 0 0xffffffff 0 -1 727194 0 ff ff ff ff 9a 18 0b 00 00 00 00 00 ............ +2621 7.144275904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274249 12 22 717704 0 0x00000016 0 22 717704 0 16 00 00 00 88 f3 0a 00 00 00 00 00 ............ +2623 7.144434452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274261 22 18 2066897 0 0x00000012 1 2066897 0 196609 0 12 00 00 00 d1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2625 7.144703627 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294864 12 -1 717704 0 0xffffffff 0 -1 717704 0 ff ff ff ff 88 f3 0a 00 00 00 00 00 ............ +2628 7.175260782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294876 12 -2 82571 82553 0xfffffffe 0 -2 82571 82553 fe ff ff ff 8b 42 01 00 79 42 01 00 .....B..yB.. +2639 7.247071505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294888 12 26 727195 0 0x0000001a 0 26 727195 0 1a 00 00 00 9b 18 0b 00 00 00 00 00 ............ +2641 7.247256756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294900 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1982660608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2643 7.247724295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274283 12 -1 727195 0 0xffffffff 0 -1 727195 0 ff ff ff ff 9b 18 0b 00 00 00 00 00 ............ +2646 7.248146057 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274295 12 22 717705 0 0x00000016 0 22 717705 0 16 00 00 00 89 f3 0a 00 00 00 00 00 ............ +2648 7.248306990 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274307 22 18 2066899 0 0x00000012 1 2066899 0 196609 0 12 00 00 00 d3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2650 7.248771429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294926 12 -1 717705 0 0xffffffff 0 -1 717705 0 ff ff ff ff 89 f3 0a 00 00 00 00 00 ............ +2682 7.350815773 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294938 12 26 727196 0 0x0000001a 0 26 727196 0 1a 00 00 00 9c 18 0b 00 00 00 00 00 ............ +2684 7.350994825 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294950 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1982529536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2686 7.351326466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274329 12 -1 727196 0 0xffffffff 0 -1 727196 0 ff ff ff ff 9c 18 0b 00 00 00 00 00 ............ +2688 7.351883650 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274341 12 22 717706 0 0x00000016 0 22 717706 0 16 00 00 00 8a f3 0a 00 00 00 00 00 ............ +2690 7.352047682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274353 22 18 2066901 0 0x00000012 1 2066901 0 196609 0 12 00 00 00 d5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2692 7.352411747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294976 12 -1 717706 0 0xffffffff 0 -1 717706 0 ff ff ff ff 8a f3 0a 00 00 00 00 00 ............ +2699 7.377049685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333294988 12 101 727197 0 0x00000065 0 101 727197 0 65 00 00 00 9d 18 0b 00 00 00 00 00 e........... +2701 7.377310038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295000 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ca 10 02 00 00 00 00 00 3a ab 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ca 10 02 00 00 00 00 ".....!...o3...............:."".....?.....3...|8.." +2703 7.377647400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274375 12 -1 727197 0 0xffffffff 0 -1 727197 0 ff ff ff ff 9d 18 0b 00 00 00 00 00 ............ +2705 7.378565550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274387 12 52 717707 0 0x00000034 0 52 717707 0 34 00 00 00 8b f3 0a 00 00 00 00 00 4........... +2707 7.378728151 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274399 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ca 10 02 00 00 00 00 00 00 00 2d 1a d4 6d 4d 01 00 00 "0...Dk.................L."".([...............-..m" +2709 7.379003048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295101 12 -1 717707 0 0xffffffff 0 -1 717707 0 ff ff ff ff 8b f3 0a 00 00 00 00 00 ............ +2711 7.379844904 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295113 12 30 727198 0 0x0000001e 0 30 727198 0 1e 00 00 00 9e 18 0b 00 00 00 00 00 ............ +2713 7.380012989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295125 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1982398464 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2715 7.380359650 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274451 12 -1 727198 0 0xffffffff 0 -1 727198 0 ff ff ff ff 9e 18 0b 00 00 00 00 00 ............ +2717 7.380659580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274463 12 26 717708 0 0x0000001a 0 26 717708 0 1a 00 00 00 8c f3 0a 00 00 00 00 00 ............ +2719 7.380791187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274475 26 22 2066903 0 0x00000016 1 2066903 0 196609 0 16 00 00 00 d7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2721 7.380977631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295155 12 -1 717708 0 0xffffffff 0 -1 717708 0 ff ff ff ff 8c f3 0a 00 00 00 00 00 ............ +2723 7.453709364 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295167 12 26 727199 0 0x0000001a 0 26 727199 0 1a 00 00 00 9f 18 0b 00 00 00 00 00 ............ +2725 7.453887939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295179 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1982267392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2727 7.454275846 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274501 12 -1 727199 0 0xffffffff 0 -1 727199 0 ff ff ff ff 9f 18 0b 00 00 00 00 00 ............ +2729 7.454552412 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274513 12 22 717709 0 0x00000016 0 22 717709 0 16 00 00 00 8d f3 0a 00 00 00 00 00 ............ +2731 7.454716682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274525 22 18 2066905 0 0x00000012 1 2066905 0 196609 0 12 00 00 00 d9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2733 7.455056429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295205 12 -1 717709 0 0xffffffff 0 -1 717709 0 ff ff ff ff 8d f3 0a 00 00 00 00 00 ............ +2740 7.556909561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295217 12 26 727200 0 0x0000001a 0 26 727200 0 1a 00 00 00 a0 18 0b 00 00 00 00 00 ............ +2742 7.557092667 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295229 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1982136320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2744 7.557389021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274547 12 -1 727200 0 0xffffffff 0 -1 727200 0 ff ff ff ff a0 18 0b 00 00 00 00 00 ............ +2746 7.557777405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274559 12 22 717710 0 0x00000016 0 22 717710 0 16 00 00 00 8e f3 0a 00 00 00 00 00 ............ +2748 7.557937145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274571 22 18 2066907 0 0x00000012 1 2066907 0 196609 0 12 00 00 00 db 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2750 7.558202267 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295255 12 -1 717710 0 0xffffffff 0 -1 717710 0 ff ff ff ff 8e f3 0a 00 00 00 00 00 ............ +2755 7.616833448 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274593 12 -2 82554 82571 0xfffffffe 0 -2 82554 82571 fe ff ff ff 7a 42 01 00 8b 42 01 00 ....zB...B.. +2762 7.659121752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295267 12 26 727201 0 0x0000001a 0 26 727201 0 1a 00 00 00 a1 18 0b 00 00 00 00 00 ............ +2764 7.659281969 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295279 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1982005248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2766 7.659583330 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274605 12 -1 727201 0 0xffffffff 0 -1 727201 0 ff ff ff ff a1 18 0b 00 00 00 00 00 ............ +2768 7.659978867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274617 12 22 717711 0 0x00000016 0 22 717711 0 16 00 00 00 8f f3 0a 00 00 00 00 00 ............ +2770 7.660146952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274629 22 18 2066909 0 0x00000012 1 2066909 0 196609 0 12 00 00 00 dd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2772 7.660396338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295305 12 -1 717711 0 0xffffffff 0 -1 717711 0 ff ff ff ff 8f f3 0a 00 00 00 00 00 ............ +2774 7.675961018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295317 12 -2 82572 82554 0xfffffffe 0 -2 82572 82554 fe ff ff ff 8c 42 01 00 7a 42 01 00 .....B..zB.. +2780 7.681868792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295329 12 34 727202 0 0x00000022 0 34 727202 0 22 00 00 00 a2 18 0b 00 00 00 00 00 """..........." +2782 7.682056427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295341 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 281739264 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cb 10 02 00 00 00 00 00 6b ac 22 c3 9d 01 00 00 ".....!...o3...............k.""....." +2784 7.682186842 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295375 12 67 727203 0 0x00000043 0 67 727203 0 43 00 00 00 a3 18 0b 00 00 00 00 00 C........... +2786 7.682271004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295387 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cb 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c 49 76 d3 c7 ?.....3...|8...................=B.....&......... +2788 7.682357550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274651 12 -1 727202 0 0xffffffff 0 -1 727202 0 ff ff ff ff a2 18 0b 00 00 00 00 00 ............ +2790 7.682530165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274663 12 -1 727203 0 0xffffffff 0 -1 727203 0 ff ff ff ff a3 18 0b 00 00 00 00 00 ............ +2792 7.683186769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274675 12 52 717712 0 0x00000034 0 52 717712 0 34 00 00 00 90 f3 0a 00 00 00 00 00 4........... +2794 7.683354855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274687 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cb 10 02 00 00 00 00 00 00 00 60 94 02 6e 4d 01 00 00 "0...Dk.................L."".([...............`..n" +2796 7.683669567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295454 12 -1 717712 0 0xffffffff 0 -1 717712 0 ff ff ff ff 90 f3 0a 00 00 00 00 00 ............ +2798 7.684558630 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295466 12 30 727204 0 0x0000001e 0 30 727204 0 1e 00 00 00 a4 18 0b 00 00 00 00 00 ............ +2800 7.684709787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295478 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1981874176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 df 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2802 7.685049057 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274739 12 -1 727204 0 0xffffffff 0 -1 727204 0 ff ff ff ff a4 18 0b 00 00 00 00 00 ............ +2804 7.685470104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274751 12 26 717713 0 0x0000001a 0 26 717713 0 1a 00 00 00 91 f3 0a 00 00 00 00 00 ............ +2806 7.685715675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274763 26 22 2066911 0 0x00000016 1 2066911 0 196609 0 16 00 00 00 df 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2808 7.685986757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295508 12 -1 717713 0 0xffffffff 0 -1 717713 0 ff ff ff ff 91 f3 0a 00 00 00 00 00 ............ +2810 7.762709618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295520 12 26 727205 0 0x0000001a 0 26 727205 0 1a 00 00 00 a5 18 0b 00 00 00 00 00 ............ +2812 7.762914419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295532 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1981743104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2814 7.763280869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274789 12 -1 727205 0 0xffffffff 0 -1 727205 0 ff ff ff ff a5 18 0b 00 00 00 00 00 ............ +2816 7.763828754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274801 12 22 717714 0 0x00000016 0 22 717714 0 16 00 00 00 92 f3 0a 00 00 00 00 00 ............ +2818 7.763991356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274813 22 18 2066913 0 0x00000012 1 2066913 0 196609 0 12 00 00 00 e1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2820 7.764386654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295558 12 -1 717714 0 0xffffffff 0 -1 717714 0 ff ff ff ff 92 f3 0a 00 00 00 00 00 ............ +2856 7.866885424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295570 12 26 727206 0 0x0000001a 0 26 727206 0 1a 00 00 00 a6 18 0b 00 00 00 00 00 ............ +2858 7.867063284 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295582 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1981612032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2860 7.867452860 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274835 12 -1 727206 0 0xffffffff 0 -1 727206 0 ff ff ff ff a6 18 0b 00 00 00 00 00 ............ +2864 7.867945433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274847 12 22 717715 0 0x00000016 0 22 717715 0 16 00 00 00 93 f3 0a 00 00 00 00 00 ............ +2866 7.868105412 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274859 22 18 2066915 0 0x00000012 1 2066915 0 196609 0 12 00 00 00 e3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2868 7.868371964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295608 12 -1 717715 0 0xffffffff 0 -1 717715 0 ff ff ff ff 93 f3 0a 00 00 00 00 00 ............ +2870 7.969973564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295620 12 26 727207 0 0x0000001a 0 26 727207 0 1a 00 00 00 a7 18 0b 00 00 00 00 00 ............ +2872 7.970175028 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295632 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1981480960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2874 7.970466375 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274881 12 -1 727207 0 0xffffffff 0 -1 727207 0 ff ff ff ff a7 18 0b 00 00 00 00 00 ............ +2876 7.971007824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274893 12 22 717716 0 0x00000016 0 22 717716 0 16 00 00 00 94 f3 0a 00 00 00 00 00 ............ +2878 7.971190929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274905 22 18 2066917 0 0x00000012 1 2066917 0 196609 0 12 00 00 00 e5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2880 7.971624613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295658 12 -1 717716 0 0xffffffff 0 -1 717716 0 ff ff ff ff 94 f3 0a 00 00 00 00 00 ............ +2886 7.985486984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295670 12 101 727208 0 0x00000065 0 101 727208 0 65 00 00 00 a8 18 0b 00 00 00 00 00 e........... +2888 7.985627890 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295682 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cc 10 02 00 00 00 00 00 9a ad 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cc 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +2890 7.985945702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274927 12 -1 727208 0 0xffffffff 0 -1 727208 0 ff ff ff ff a8 18 0b 00 00 00 00 00 ............ +2892 7.987027407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274939 12 52 717717 0 0x00000034 0 52 717717 0 34 00 00 00 95 f3 0a 00 00 00 00 00 4........... +2894 7.987189531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377274951 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cc 10 02 00 00 00 00 00 00 00 c2 ee 30 6e 4d 01 00 00 "0...Dk.................L."".([.................0n" +2896 7.987483263 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295783 12 -1 717717 0 0xffffffff 0 -1 717717 0 ff ff ff ff 95 f3 0a 00 00 00 00 00 ............ +2898 7.988317728 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295795 12 30 727209 0 0x0000001e 0 30 727209 0 1e 00 00 00 a9 18 0b 00 00 00 00 00 ............ +2900 7.988498926 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295807 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1981349888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2902 7.988778114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275003 12 -1 727209 0 0xffffffff 0 -1 727209 0 ff ff ff ff a9 18 0b 00 00 00 00 00 ............ +2904 7.989213705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275015 12 26 717718 0 0x0000001a 0 26 717718 0 1a 00 00 00 96 f3 0a 00 00 00 00 00 ............ +2906 7.989357948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275027 26 22 2066919 0 0x00000016 1 2066919 0 196609 0 16 00 00 00 e7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2908 7.989694118 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295837 12 -1 717718 0 0xffffffff 0 -1 717718 0 ff ff ff ff 96 f3 0a 00 00 00 00 00 ............ +2921 8.072927952 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295849 12 26 727210 0 0x0000001a 0 26 727210 0 1a 00 00 00 aa 18 0b 00 00 00 00 00 ............ +2923 8.073101997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295861 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1981218816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2925 8.073456049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275053 12 -1 727210 0 0xffffffff 0 -1 727210 0 ff ff ff ff aa 18 0b 00 00 00 00 00 ............ +2927 8.073900223 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275065 12 22 717719 0 0x00000016 0 22 717719 0 16 00 00 00 97 f3 0a 00 00 00 00 00 ............ +2929 8.074064970 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275077 22 18 2066921 0 0x00000012 1 2066921 0 196609 0 12 00 00 00 e9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2931 8.074398279 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295887 12 -1 717719 0 0xffffffff 0 -1 717719 0 ff ff ff ff 97 f3 0a 00 00 00 00 00 ............ +2938 8.118097544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275099 12 -2 82555 82572 0xfffffffe 0 -2 82555 82572 fe ff ff ff 7b 42 01 00 8c 42 01 00 ....{B...B.. +2943 8.176173210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295899 12 26 727211 0 0x0000001a 0 26 727211 0 1a 00 00 00 ab 18 0b 00 00 00 00 00 ............ +2945 8.176346779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295911 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1981087744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2947 8.176808834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275111 12 -1 727211 0 0xffffffff 0 -1 727211 0 ff ff ff ff ab 18 0b 00 00 00 00 00 ............ +2948 8.176923752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295937 12 -2 82573 82555 0xfffffffe 0 -2 82573 82555 fe ff ff ff 8d 42 01 00 7b 42 01 00 .....B..{B.. +2952 8.177224874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275123 12 22 717720 0 0x00000016 0 22 717720 0 16 00 00 00 98 f3 0a 00 00 00 00 00 ............ +2954 8.177390575 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275135 22 18 2066923 0 0x00000012 1 2066923 0 196609 0 12 00 00 00 eb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2956 8.177674294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295949 12 -1 717720 0 0xffffffff 0 -1 717720 0 ff ff ff ff 98 f3 0a 00 00 00 00 00 ............ +2990 8.279451132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295961 12 26 727212 0 0x0000001a 0 26 727212 0 1a 00 00 00 ac 18 0b 00 00 00 00 00 ............ +2992 8.279638529 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295973 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1980956672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +2994 8.279998064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275157 12 -1 727212 0 0xffffffff 0 -1 727212 0 ff ff ff ff ac 18 0b 00 00 00 00 00 ............ +2996 8.280528069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275169 12 22 717721 0 0x00000016 0 22 717721 0 16 00 00 00 99 f3 0a 00 00 00 00 00 ............ +2998 8.280693293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275181 22 18 2066925 0 0x00000012 1 2066925 0 196609 0 12 00 00 00 ed 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3000 8.281028509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333295999 12 -1 717721 0 0xffffffff 0 -1 717721 0 ff ff ff ff 99 f3 0a 00 00 00 00 00 ............ +3002 8.291115761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296011 12 101 727213 0 0x00000065 0 101 727213 0 65 00 00 00 ad 18 0b 00 00 00 00 00 e........... +3004 8.291289091 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296023 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cd 10 02 00 00 00 00 00 cc ae 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cd 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +3006 8.291573763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275203 12 -1 727213 0 0xffffffff 0 -1 727213 0 ff ff ff ff ad 18 0b 00 00 00 00 00 ............ +3008 8.292597294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275215 12 52 717722 0 0x00000034 0 52 717722 0 34 00 00 00 9a f3 0a 00 00 00 00 00 4........... +3010 8.292754889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275227 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cd 10 02 00 00 00 00 00 00 00 aa 92 5f 6e 4d 01 00 00 "0...Dk.................L."".([................._n" +3012 8.292952299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296124 12 -1 717722 0 0xffffffff 0 -1 717722 0 ff ff ff ff 9a f3 0a 00 00 00 00 00 ............ +3014 8.293964624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296136 12 30 727214 0 0x0000001e 0 30 727214 0 1e 00 00 00 ae 18 0b 00 00 00 00 00 ............ +3016 8.294124365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296148 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1980825600 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ef 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3018 8.294366360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275279 12 -1 727214 0 0xffffffff 0 -1 727214 0 ff ff ff ff ae 18 0b 00 00 00 00 00 ............ +3020 8.294765949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275291 12 26 717723 0 0x0000001a 0 26 717723 0 1a 00 00 00 9b f3 0a 00 00 00 00 00 ............ +3022 8.294905424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275303 26 22 2066927 0 0x00000016 1 2066927 0 196609 0 16 00 00 00 ef 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3024 8.295089006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296178 12 -1 717723 0 0xffffffff 0 -1 717723 0 ff ff ff ff 9b f3 0a 00 00 00 00 00 ............ +3031 8.382397652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296190 12 26 727215 0 0x0000001a 0 26 727215 0 1a 00 00 00 af 18 0b 00 00 00 00 00 ............ +3033 8.382590294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296202 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1980694528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +3035 8.382927418 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275329 12 -1 727215 0 0xffffffff 0 -1 727215 0 ff ff ff ff af 18 0b 00 00 00 00 00 ............ +3037 8.383404255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275341 12 22 717724 0 0x00000016 0 22 717724 0 16 00 00 00 9c f3 0a 00 00 00 00 00 ............ +3039 8.383758545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275353 22 18 2066929 0 0x00000012 1 2066929 0 196609 0 12 00 00 00 f1 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3041 8.384049416 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296228 12 -1 717724 0 0xffffffff 0 -1 717724 0 ff ff ff ff 9c f3 0a 00 00 00 00 00 ............ +3048 8.485259056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296240 12 26 727216 0 0x0000001a 0 26 727216 0 1a 00 00 00 b0 18 0b 00 00 00 00 00 ............ +3051 8.485438824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296252 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1980563456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +3054 8.485840321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275375 12 -1 727216 0 0xffffffff 0 -1 727216 0 ff ff ff ff b0 18 0b 00 00 00 00 00 ............ +3056 8.486297369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275387 12 22 717725 0 0x00000016 0 22 717725 0 16 00 00 00 9d f3 0a 00 00 00 00 00 ............ +3058 8.486456156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275399 22 18 2066931 0 0x00000012 1 2066931 0 196609 0 12 00 00 00 f3 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3060 8.486748219 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296278 12 -1 717725 0 0xffffffff 0 -1 717725 0 ff ff ff ff 9d f3 0a 00 00 00 00 00 ............ +3063 8.588092804 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296290 12 26 727217 0 0x0000001a 0 26 727217 0 1a 00 00 00 b1 18 0b 00 00 00 00 00 ............ +3065 8.588273048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296302 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1980432384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +3067 8.588772535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275421 12 -1 727217 0 0xffffffff 0 -1 727217 0 ff ff ff ff b1 18 0b 00 00 00 00 00 ............ +3069 8.589277744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275433 12 22 717726 0 0x00000016 0 22 717726 0 16 00 00 00 9e f3 0a 00 00 00 00 00 ............ +3071 8.589487314 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275445 22 18 2066933 0 0x00000012 1 2066933 0 196609 0 12 00 00 00 f5 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3073 8.589778662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296328 12 -1 717726 0 0xffffffff 0 -1 717726 0 ff ff ff ff 9e f3 0a 00 00 00 00 00 ............ +3075 8.595207453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296340 12 101 727218 0 0x00000065 0 101 727218 0 65 00 00 00 b2 18 0b 00 00 00 00 00 e........... +3077 8.595350266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296352 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ce 10 02 00 00 00 00 00 fc af 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ce 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +3079 8.595677137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275467 12 -1 727218 0 0xffffffff 0 -1 727218 0 ff ff ff ff b2 18 0b 00 00 00 00 00 ............ +3081 8.596781969 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275479 12 52 717727 0 0x00000034 0 52 717727 0 34 00 00 00 9f f3 0a 00 00 00 00 00 4........... +3083 8.596927404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275491 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ce 10 02 00 00 00 00 00 00 00 43 fd 8d 6e 4d 01 00 00 "0...Dk.................L."".([...............C..n" +3085 8.597196817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296453 12 -1 717727 0 0xffffffff 0 -1 717727 0 ff ff ff ff 9f f3 0a 00 00 00 00 00 ............ +3087 8.598031282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296465 12 30 727219 0 0x0000001e 0 30 727219 0 1e 00 00 00 b3 18 0b 00 00 00 00 00 ............ +3089 8.598189592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296477 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1980301312 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f7 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3091 8.598583221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275543 12 -1 727219 0 0xffffffff 0 -1 727219 0 ff ff ff ff b3 18 0b 00 00 00 00 00 ............ +3093 8.598926783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275555 12 26 717728 0 0x0000001a 0 26 717728 0 1a 00 00 00 a0 f3 0a 00 00 00 00 00 ............ +3095 8.599065781 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275567 26 22 2066935 0 0x00000016 1 2066935 0 196609 0 16 00 00 00 f7 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3097 8.599298954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296507 12 -1 717728 0 0xffffffff 0 -1 717728 0 ff ff ff ff a0 f3 0a 00 00 00 00 00 ............ +3103 8.618142366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275593 12 -2 82556 82573 0xfffffffe 0 -2 82556 82573 fe ff ff ff 7c 42 01 00 8d 42 01 00 ....|B...B.. +3110 8.678949356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296519 12 -2 82574 82556 0xfffffffe 0 -2 82574 82556 fe ff ff ff 8e 42 01 00 7c 42 01 00 .....B..|B.. +3116 8.691304445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296531 12 26 727220 0 0x0000001a 0 26 727220 0 1a 00 00 00 b4 18 0b 00 00 00 00 00 ............ +3118 8.691501856 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296543 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1980170240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +3120 8.691859484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275605 12 -1 727220 0 0xffffffff 0 -1 727220 0 ff ff ff ff b4 18 0b 00 00 00 00 00 ............ +3122 8.692381144 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275617 12 22 717729 0 0x00000016 0 22 717729 0 16 00 00 00 a1 f3 0a 00 00 00 00 00 ............ +3124 8.692580938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275629 22 18 2066937 0 0x00000012 1 2066937 0 196609 0 12 00 00 00 f9 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3126 8.692948580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296569 12 -1 717729 0 0xffffffff 0 -1 717729 0 ff ff ff ff a1 f3 0a 00 00 00 00 00 ............ +3129 8.794821978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296581 12 26 727221 0 0x0000001a 0 26 727221 0 1a 00 00 00 b5 18 0b 00 00 00 00 00 ............ +3131 8.795031548 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296593 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1980039168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +3133 8.795361519 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275651 12 -1 727221 0 0xffffffff 0 -1 727221 0 ff ff ff ff b5 18 0b 00 00 00 00 00 ............ +3135 8.796051264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275663 12 22 717730 0 0x00000016 0 22 717730 0 16 00 00 00 a2 f3 0a 00 00 00 00 00 ............ +3137 8.796261311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275675 22 18 2066939 0 0x00000012 1 2066939 0 196609 0 12 00 00 00 fb 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3139 8.796542406 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296619 12 -1 717730 0 0xffffffff 0 -1 717730 0 ff ff ff ff a2 f3 0a 00 00 00 00 00 ............ +3145 8.898987532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296631 12 26 727222 0 0x0000001a 0 26 727222 0 1a 00 00 00 b6 18 0b 00 00 00 00 00 ............ +3147 8.899215460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296643 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1979908096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 89 1f 00 00 00 00 00 ....T.c@.^1@.............. +3150 8.899354458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296669 12 101 727223 0 0x00000065 0 101 727223 0 65 00 00 00 b7 18 0b 00 00 00 00 00 e........... +3152 8.899443626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296681 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cf 10 02 00 00 00 00 00 2c b1 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cf 10 02 00 00 00 00 ".....!...o3...............,."".....?.....3...|8.." +3154 8.899544239 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275697 12 -1 727222 0 0xffffffff 0 -1 727222 0 ff ff ff ff b6 18 0b 00 00 00 00 00 ............ +3156 8.899736881 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275709 12 -1 727223 0 0xffffffff 0 -1 727223 0 ff ff ff ff b7 18 0b 00 00 00 00 00 ............ +3158 8.900092840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275721 12 22 717731 0 0x00000016 0 22 717731 0 16 00 00 00 a3 f3 0a 00 00 00 00 00 ............ +3160 8.900272608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275733 22 18 2066941 0 0x00000012 1 2066941 0 196609 0 12 00 00 00 fd 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3162 8.900519371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296782 12 -1 717731 0 0xffffffff 0 -1 717731 0 ff ff ff ff a3 f3 0a 00 00 00 00 00 ............ +3164 8.900782585 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275755 12 52 717732 0 0x00000034 0 52 717732 0 34 00 00 00 a4 f3 0a 00 00 00 00 00 4........... +3166 8.900953054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275767 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cf 10 02 00 00 00 00 00 00 00 23 5f bc 6e 4d 01 00 00 "0...Dk.................L."".([...............#_.n" +3168 8.901330948 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296794 12 -1 717732 0 0xffffffff 0 -1 717732 0 ff ff ff ff a4 f3 0a 00 00 00 00 00 ............ +3170 8.902072906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296806 12 30 727224 0 0x0000001e 0 30 727224 0 1e 00 00 00 b8 18 0b 00 00 00 00 00 ............ +3172 8.902256489 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296818 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1979777024 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ff 89 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3174 8.902459383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275819 12 -1 727224 0 0xffffffff 0 -1 727224 0 ff ff ff ff b8 18 0b 00 00 00 00 00 ............ +3176 8.902797937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275831 12 26 717733 0 0x0000001a 0 26 717733 0 1a 00 00 00 a5 f3 0a 00 00 00 00 00 ............ +3178 8.902945518 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275843 26 22 2066943 0 0x00000016 1 2066943 0 196609 0 16 00 00 00 ff 89 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3180 8.903202534 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296848 12 -1 717733 0 0xffffffff 0 -1 717733 0 ff ff ff ff a5 f3 0a 00 00 00 00 00 ............ +3186 9.001860380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296860 12 26 727225 0 0x0000001a 0 26 727225 0 1a 00 00 00 b9 18 0b 00 00 00 00 00 ............ +3188 9.002077103 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296872 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1979645952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3190 9.002408504 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275869 12 -1 727225 0 0xffffffff 0 -1 727225 0 ff ff ff ff b9 18 0b 00 00 00 00 00 ............ +3192 9.002931595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275881 12 22 717734 0 0x00000016 0 22 717734 0 16 00 00 00 a6 f3 0a 00 00 00 00 00 ............ +3194 9.003093481 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275893 22 18 2066945 0 0x00000012 1 2066945 0 196609 0 12 00 00 00 01 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3196 9.003410339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296898 12 -1 717734 0 0xffffffff 0 -1 717734 0 ff ff ff ff a6 f3 0a 00 00 00 00 00 ............ +3199 9.104399443 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296910 12 26 727226 0 0x0000001a 0 26 727226 0 1a 00 00 00 ba 18 0b 00 00 00 00 00 ............ +3201 9.104597569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296922 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1979514880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3203 9.104973555 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275915 12 -1 727226 0 0xffffffff 0 -1 727226 0 ff ff ff ff ba 18 0b 00 00 00 00 00 ............ +3205 9.105460405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275927 12 22 717735 0 0x00000016 0 22 717735 0 16 00 00 00 a7 f3 0a 00 00 00 00 00 ............ +3207 9.105715513 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275939 22 18 2066947 0 0x00000012 1 2066947 0 196609 0 12 00 00 00 03 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3209 9.105978251 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296948 12 -1 717735 0 0xffffffff 0 -1 717735 0 ff ff ff ff a7 f3 0a 00 00 00 00 00 ............ +3217 9.119635105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275961 12 -2 82557 82574 0xfffffffe 0 -2 82557 82574 fe ff ff ff 7d 42 01 00 8e 42 01 00 ....}B...B.. +3223 9.180026054 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296960 12 -2 82575 82557 0xfffffffe 0 -2 82575 82557 fe ff ff ff 8f 42 01 00 7d 42 01 00 .....B..}B.. +3228 9.204265833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296972 12 34 727227 0 0x00000022 0 34 727227 0 22 00 00 00 bb 18 0b 00 00 00 00 00 """..........." +3230 9.204431057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333296984 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 282066944 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d0 10 02 00 00 00 00 00 5e b2 22 c3 9d 01 00 00 ".....!...o3...............^.""....." +3232 9.204571247 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297018 12 67 727228 0 0x00000043 0 67 727228 0 43 00 00 00 bc 18 0b 00 00 00 00 00 C........... +3234 9.204656363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297030 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d0 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 50 7e 2d 2e c8 ?.....3...|8...................=B.....&......... +3236 9.204787731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275973 12 -1 727227 0 0xffffffff 0 -1 727227 0 ff ff ff ff bb 18 0b 00 00 00 00 00 ............ +3238 9.204954863 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275985 12 -1 727228 0 0xffffffff 0 -1 727228 0 ff ff ff ff bc 18 0b 00 00 00 00 00 ............ +3240 9.205748558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377275997 12 52 717736 0 0x00000034 0 52 717736 0 34 00 00 00 a8 f3 0a 00 00 00 00 00 4........... +3242 9.205909729 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276009 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d0 10 02 00 00 00 00 00 00 00 8a e6 ea 6e 4d 01 00 00 "0...Dk.................L."".([..................n" +3244 9.206184864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297097 12 -1 717736 0 0xffffffff 0 -1 717736 0 ff ff ff ff a8 f3 0a 00 00 00 00 00 ............ +3246 9.207042933 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297109 12 30 727229 0 0x0000001e 0 30 727229 0 1e 00 00 00 bd 18 0b 00 00 00 00 00 ............ +3248 9.207160711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297121 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1979383808 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3250 9.207299232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297151 12 26 727230 0 0x0000001a 0 26 727230 0 1a 00 00 00 be 18 0b 00 00 00 00 00 ............ +3252 9.207384109 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297163 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1979252736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3254 9.207444429 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276061 12 -1 727229 0 0xffffffff 0 -1 727229 0 ff ff ff ff bd 18 0b 00 00 00 00 00 ............ +3256 9.207656384 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276073 12 -1 727230 0 0xffffffff 0 -1 727230 0 ff ff ff ff be 18 0b 00 00 00 00 00 ............ +3258 9.207821369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276085 12 26 717737 0 0x0000001a 0 26 717737 0 1a 00 00 00 a9 f3 0a 00 00 00 00 00 ............ +3260 9.207992077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276097 26 22 2066949 0 0x00000016 1 2066949 0 196609 0 16 00 00 00 05 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3262 9.208079338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276123 12 22 717738 0 0x00000016 0 22 717738 0 16 00 00 00 aa f3 0a 00 00 00 00 00 ............ +3264 9.208162069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276135 22 18 2066951 0 0x00000012 1 2066951 0 196609 0 12 00 00 00 07 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3265 9.208161592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297189 12 -1 717737 0 0xffffffff 0 -1 717737 0 ff ff ff ff a9 f3 0a 00 00 00 00 00 ............ +3268 9.208360434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297201 12 -1 717738 0 0xffffffff 0 -1 717738 0 ff ff ff ff aa f3 0a 00 00 00 00 00 ............ +3303 9.310448885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297213 12 26 727231 0 0x0000001a 0 26 727231 0 1a 00 00 00 bf 18 0b 00 00 00 00 00 ............ +3305 9.310663462 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297225 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1979121664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3307 9.311038494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276157 12 -1 727231 0 0xffffffff 0 -1 727231 0 ff ff ff ff bf 18 0b 00 00 00 00 00 ............ +3309 9.311372519 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276169 12 22 717739 0 0x00000016 0 22 717739 0 16 00 00 00 ab f3 0a 00 00 00 00 00 ............ +3311 9.311535597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276181 22 18 2066953 0 0x00000012 1 2066953 0 196609 0 12 00 00 00 09 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3313 9.311816931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297251 12 -1 717739 0 0xffffffff 0 -1 717739 0 ff ff ff ff ab f3 0a 00 00 00 00 00 ............ +3320 9.413762808 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297263 12 26 727232 0 0x0000001a 0 26 727232 0 1a 00 00 00 c0 18 0b 00 00 00 00 00 ............ +3322 9.413948774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297275 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1978990592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3324 9.414255857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276203 12 -1 727232 0 0xffffffff 0 -1 727232 0 ff ff ff ff c0 18 0b 00 00 00 00 00 ............ +3326 9.414695740 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276215 12 22 717740 0 0x00000016 0 22 717740 0 16 00 00 00 ac f3 0a 00 00 00 00 00 ............ +3328 9.414854527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276227 22 18 2066955 0 0x00000012 1 2066955 0 196609 0 12 00 00 00 0b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3330 9.415454388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297301 12 -1 717740 0 0xffffffff 0 -1 717740 0 ff ff ff ff ac f3 0a 00 00 00 00 00 ............ +3337 9.509494305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297313 12 34 727233 0 0x00000022 0 34 727233 0 22 00 00 00 c1 18 0b 00 00 00 00 00 """..........." +3339 9.509690046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297325 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 282132480 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d1 10 02 00 00 00 00 00 8e b3 22 c3 9d 01 00 00 ".....!...o3.................""....." +3341 9.509833097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297359 12 67 727234 0 0x00000043 0 67 727234 0 43 00 00 00 c2 18 0b 00 00 00 00 00 C........... +3343 9.509917259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297371 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d1 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 ae 66 40 c8 ?.....3...|8...................=B.....&......... +3345 9.510022163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276249 12 -1 727233 0 0xffffffff 0 -1 727233 0 ff ff ff ff c1 18 0b 00 00 00 00 00 ............ +3347 9.510277987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276261 12 -1 727234 0 0xffffffff 0 -1 727234 0 ff ff ff ff c2 18 0b 00 00 00 00 00 ............ +3349 9.511041164 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276273 12 52 717741 0 0x00000034 0 52 717741 0 34 00 00 00 ad f3 0a 00 00 00 00 00 4........... +3351 9.511198521 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276285 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d1 10 02 00 00 00 00 00 00 00 6e 7d 19 6f 4d 01 00 00 "0...Dk.................L."".([...............n}.o" +3353 9.511478662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297438 12 -1 717741 0 0xffffffff 0 -1 717741 0 ff ff ff ff ad f3 0a 00 00 00 00 00 ............ +3355 9.512467146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297450 12 30 727235 0 0x0000001e 0 30 727235 0 1e 00 00 00 c3 18 0b 00 00 00 00 00 ............ +3357 9.512613297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297462 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1978859520 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3359 9.512873888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276337 12 -1 727235 0 0xffffffff 0 -1 727235 0 ff ff ff ff c3 18 0b 00 00 00 00 00 ............ +3361 9.513208628 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276349 12 26 717742 0 0x0000001a 0 26 717742 0 1a 00 00 00 ae f3 0a 00 00 00 00 00 ............ +3363 9.513348579 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276361 26 22 2066957 0 0x00000016 1 2066957 0 196609 0 16 00 00 00 0d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3365 9.513607502 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297492 12 -1 717742 0 0xffffffff 0 -1 717742 0 ff ff ff ff ae f3 0a 00 00 00 00 00 ............ +3367 9.517992973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297504 12 26 727236 0 0x0000001a 0 26 727236 0 1a 00 00 00 c4 18 0b 00 00 00 00 00 ............ +3369 9.518168688 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297516 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1978728448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3371 9.518540859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276387 12 -1 727236 0 0xffffffff 0 -1 727236 0 ff ff ff ff c4 18 0b 00 00 00 00 00 ............ +3373 9.518817663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276399 12 22 717743 0 0x00000016 0 22 717743 0 16 00 00 00 af f3 0a 00 00 00 00 00 ............ +3375 9.518917322 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276411 22 18 2066959 0 0x00000012 1 2066959 0 196609 0 12 00 00 00 0f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3377 9.519178152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297542 12 -1 717743 0 0xffffffff 0 -1 717743 0 ff ff ff ff af f3 0a 00 00 00 00 00 ............ +3384 9.620872736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297554 12 26 727237 0 0x0000001a 0 26 727237 0 1a 00 00 00 c5 18 0b 00 00 00 00 00 ............ +3386 9.621189833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297566 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1978597376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3388 9.621565819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276433 12 -1 727237 0 0xffffffff 0 -1 727237 0 ff ff ff ff c5 18 0b 00 00 00 00 00 ............ +3391 9.621783495 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276445 12 -2 82558 82575 0xfffffffe 0 -2 82558 82575 fe ff ff ff 7e 42 01 00 8f 42 01 00 ....~B...B.. +3394 9.622138739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276457 12 22 717744 0 0x00000016 0 22 717744 0 16 00 00 00 b0 f3 0a 00 00 00 00 00 ............ +3396 9.622304916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276469 22 18 2066961 0 0x00000012 1 2066961 0 196609 0 12 00 00 00 11 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3398 9.622595787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297592 12 -1 717744 0 0xffffffff 0 -1 717744 0 ff ff ff ff b0 f3 0a 00 00 00 00 00 ............ +3405 9.681611061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297604 12 -2 82576 82558 0xfffffffe 0 -2 82576 82558 fe ff ff ff 90 42 01 00 7e 42 01 00 .....B..~B.. +3408 9.725709438 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297616 12 26 727238 0 0x0000001a 0 26 727238 0 1a 00 00 00 c6 18 0b 00 00 00 00 00 ............ +3410 9.725883007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297628 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1978466304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3412 9.726230621 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276491 12 -1 727238 0 0xffffffff 0 -1 727238 0 ff ff ff ff c6 18 0b 00 00 00 00 00 ............ +3414 9.726597309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276503 12 22 717745 0 0x00000016 0 22 717745 0 16 00 00 00 b1 f3 0a 00 00 00 00 00 ............ +3416 9.726766348 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276515 22 18 2066963 0 0x00000012 1 2066963 0 196609 0 12 00 00 00 13 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3418 9.727190018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297654 12 -1 717745 0 0xffffffff 0 -1 717745 0 ff ff ff ff b1 f3 0a 00 00 00 00 00 ............ +3420 9.814025640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297666 12 34 727239 0 0x00000022 0 34 727239 0 22 00 00 00 c7 18 0b 00 00 00 00 00 """..........." +3422 9.814300060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297678 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 282198016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d2 10 02 00 00 00 00 00 bf b4 22 c3 9d 01 00 00 ".....!...o3.................""....." +3424 9.814485550 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297712 12 67 727240 0 0x00000043 0 67 727240 0 43 00 00 00 c8 18 0b 00 00 00 00 00 C........... +3426 9.814576864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297724 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d2 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 44 9f 80 52 c8 ?.....3...|8...................=B.....&......... +3428 9.814669371 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276537 12 -1 727239 0 0xffffffff 0 -1 727239 0 ff ff ff ff c7 18 0b 00 00 00 00 00 ............ +3430 9.814848423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276549 12 -1 727240 0 0xffffffff 0 -1 727240 0 ff ff ff ff c8 18 0b 00 00 00 00 00 ............ +3432 9.816071272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276561 12 52 717746 0 0x00000034 0 52 717746 0 34 00 00 00 b2 f3 0a 00 00 00 00 00 4........... +3434 9.816246510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276573 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d2 10 02 00 00 00 00 00 00 00 42 08 48 6f 4d 01 00 00 "0...Dk.................L."".([...............B.Ho" +3436 9.816437244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297791 12 -1 717746 0 0xffffffff 0 -1 717746 0 ff ff ff ff b2 f3 0a 00 00 00 00 00 ............ +3438 9.817461014 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297803 12 30 727241 0 0x0000001e 0 30 727241 0 1e 00 00 00 c9 18 0b 00 00 00 00 00 ............ +3440 9.817611456 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297815 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1978335232 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3442 9.817917347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276625 12 -1 727241 0 0xffffffff 0 -1 727241 0 ff ff ff ff c9 18 0b 00 00 00 00 00 ............ +3444 9.818357229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276637 12 26 717747 0 0x0000001a 0 26 717747 0 1a 00 00 00 b3 f3 0a 00 00 00 00 00 ............ +3446 9.818499088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276649 26 22 2066965 0 0x00000016 1 2066965 0 196609 0 16 00 00 00 15 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3448 9.818715811 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297845 12 -1 717747 0 0xffffffff 0 -1 717747 0 ff ff ff ff b3 f3 0a 00 00 00 00 00 ............ +3450 9.829686165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297857 12 26 727242 0 0x0000001a 0 26 727242 0 1a 00 00 00 ca 18 0b 00 00 00 00 00 ............ +3452 9.829845190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297869 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1978204160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3454 9.830132961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276675 12 -1 727242 0 0xffffffff 0 -1 727242 0 ff ff ff ff ca 18 0b 00 00 00 00 00 ............ +3456 9.830676317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276687 12 22 717748 0 0x00000016 0 22 717748 0 16 00 00 00 b4 f3 0a 00 00 00 00 00 ............ +3458 9.830833912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276699 22 18 2066967 0 0x00000012 1 2066967 0 196609 0 12 00 00 00 17 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3460 9.831126213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297895 12 -1 717748 0 0xffffffff 0 -1 717748 0 ff ff ff ff b4 f3 0a 00 00 00 00 00 ............ +3490 9.933852434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297907 12 26 727243 0 0x0000001a 0 26 727243 0 1a 00 00 00 cb 18 0b 00 00 00 00 00 ............ +3492 9.934026718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297919 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1978073088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3498 9.934393406 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276721 12 -1 727243 0 0xffffffff 0 -1 727243 0 ff ff ff ff cb 18 0b 00 00 00 00 00 ............ +3502 9.934734583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276733 12 22 717749 0 0x00000016 0 22 717749 0 16 00 00 00 b5 f3 0a 00 00 00 00 00 ............ +3504 9.934886456 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276745 22 18 2066969 0 0x00000012 1 2066969 0 196609 0 12 00 00 00 19 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3506 9.935215473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297945 12 -1 717749 0 0xffffffff 0 -1 717749 0 ff ff ff ff b5 f3 0a 00 00 00 00 00 ............ +3512 10.038056850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297957 12 26 727244 0 0x0000001a 0 26 727244 0 1a 00 00 00 cc 18 0b 00 00 00 00 00 ............ +3514 10.038246632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297969 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1977942016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3516 10.038669348 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276767 12 -1 727244 0 0xffffffff 0 -1 727244 0 ff ff ff ff cc 18 0b 00 00 00 00 00 ............ +3518 10.039047480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276779 12 22 717750 0 0x00000016 0 22 717750 0 16 00 00 00 b6 f3 0a 00 00 00 00 00 ............ +3520 10.039207458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276791 22 18 2066971 0 0x00000012 1 2066971 0 196609 0 12 00 00 00 1b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3522 10.039572716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333297995 12 -1 717750 0 0xffffffff 0 -1 717750 0 ff ff ff ff b6 f3 0a 00 00 00 00 00 ............ +3524 10.118463993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298007 12 101 727245 0 0x00000065 0 101 727245 0 65 00 00 00 cd 18 0b 00 00 00 00 00 e........... +3526 10.118717194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298019 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d3 10 02 00 00 00 00 00 ef b5 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d3 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +3530 10.118966579 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276813 12 -1 727245 0 0xffffffff 0 -1 727245 0 ff ff ff ff cd 18 0b 00 00 00 00 00 ............ +3534 10.120096207 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276825 12 52 717751 0 0x00000034 0 52 717751 0 34 00 00 00 b7 f3 0a 00 00 00 00 00 4........... +3536 10.120313644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276837 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d3 10 02 00 00 00 00 00 00 00 9f 6b 76 6f 4d 01 00 00 "0...Dk.................L."".([................kvo" +3538 10.120486259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298120 12 -1 717751 0 0xffffffff 0 -1 717751 0 ff ff ff ff b7 f3 0a 00 00 00 00 00 ............ +3542 10.121322870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298132 12 30 727246 0 0x0000001e 0 30 727246 0 1e 00 00 00 ce 18 0b 00 00 00 00 00 ............ +3544 10.121517181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298144 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1977810944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3546 10.121810913 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276889 12 -1 727246 0 0xffffffff 0 -1 727246 0 ff ff ff ff ce 18 0b 00 00 00 00 00 ............ +3548 10.122035265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276901 12 -2 82559 82576 0xfffffffe 0 -2 82559 82576 fe ff ff ff 7f 42 01 00 90 42 01 00 .....B...B.. +3550 10.122309923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276913 12 26 717752 0 0x0000001a 0 26 717752 0 1a 00 00 00 b8 f3 0a 00 00 00 00 00 ............ +3552 10.122474670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276925 26 22 2066973 0 0x00000016 1 2066973 0 196609 0 16 00 00 00 1d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3554 10.122710705 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298174 12 -1 717752 0 0xffffffff 0 -1 717752 0 ff ff ff ff b8 f3 0a 00 00 00 00 00 ............ +3558 10.140717268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298186 12 26 727247 0 0x0000001a 0 26 727247 0 1a 00 00 00 cf 18 0b 00 00 00 00 00 ............ +3560 10.140882254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298198 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1977679872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +3562 10.141167164 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276951 12 -1 727247 0 0xffffffff 0 -1 727247 0 ff ff ff ff cf 18 0b 00 00 00 00 00 ............ +3564 10.141579628 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276963 12 22 717753 0 0x00000016 0 22 717753 0 16 00 00 00 b9 f3 0a 00 00 00 00 00 ............ +3566 10.141739368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276975 22 18 2066975 0 0x00000012 1 2066975 0 196609 0 12 00 00 00 1f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3568 10.142050266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298224 12 -1 717753 0 0xffffffff 0 -1 717753 0 ff ff ff ff b9 f3 0a 00 00 00 00 00 ............ +3573 10.182579756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298236 12 -2 82577 82559 0xfffffffe 0 -2 82577 82559 fe ff ff ff 91 42 01 00 7f 42 01 00 .....B...B.. +3576 10.244122982 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298248 12 26 727248 0 0x0000001a 0 26 727248 0 1a 00 00 00 d0 18 0b 00 00 00 00 00 ............ +3578 10.244315147 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298260 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1977548800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 8a 1f 00 00 00 00 00 ....T.c@.^1@......!....... +3580 10.244650126 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377276997 12 -1 727248 0 0xffffffff 0 -1 727248 0 ff ff ff ff d0 18 0b 00 00 00 00 00 ............ +3582 10.245042562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277009 12 22 717754 0 0x00000016 0 22 717754 0 16 00 00 00 ba f3 0a 00 00 00 00 00 ............ +3584 10.245207548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277021 22 18 2066977 0 0x00000012 1 2066977 0 196609 0 12 00 00 00 21 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +3586 10.245472431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298286 12 -1 717754 0 0xffffffff 0 -1 717754 0 ff ff ff ff ba f3 0a 00 00 00 00 00 ............ +3588 10.347316265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298298 12 26 727249 0 0x0000001a 0 26 727249 0 1a 00 00 00 d1 18 0b 00 00 00 00 00 ............ +3590 10.347514153 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298310 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1977417728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 8a 1f 00 00 00 00 00 ....T.c@.^1@......#....... +3592 10.347898960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277043 12 -1 727249 0 0xffffffff 0 -1 727249 0 ff ff ff ff d1 18 0b 00 00 00 00 00 ............ +3594 10.348387003 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277055 12 22 717755 0 0x00000016 0 22 717755 0 16 00 00 00 bb f3 0a 00 00 00 00 00 ............ +3596 10.348590851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277067 22 18 2066979 0 0x00000012 1 2066979 0 196609 0 12 00 00 00 23 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +3598 10.348858833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298336 12 -1 717755 0 0xffffffff 0 -1 717755 0 ff ff ff ff bb f3 0a 00 00 00 00 00 ............ +3604 10.422680616 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298348 12 101 727250 0 0x00000065 0 101 727250 0 65 00 00 00 d2 18 0b 00 00 00 00 00 e........... +3606 10.422864437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298360 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d4 10 02 00 00 00 00 00 20 b7 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d4 10 02 00 00 00 00 ".....!...o3............... ."".....?.....3...|8.." +3608 10.423243999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277089 12 -1 727250 0 0xffffffff 0 -1 727250 0 ff ff ff ff d2 18 0b 00 00 00 00 00 ............ +3610 10.423858404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277101 12 52 717756 0 0x00000034 0 52 717756 0 34 00 00 00 bc f3 0a 00 00 00 00 00 4........... +3612 10.424016237 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277113 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d4 10 02 00 00 00 00 00 00 00 2f c8 a4 6f 4d 01 00 00 "0...Dk.................L."".([.............../..o" +3614 10.424221039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298461 12 -1 717756 0 0xffffffff 0 -1 717756 0 ff ff ff ff bc f3 0a 00 00 00 00 00 ............ +3616 10.425042629 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298473 12 30 727251 0 0x0000001e 0 30 727251 0 1e 00 00 00 d3 18 0b 00 00 00 00 00 ............ +3618 10.425212145 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298485 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1977286656 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +3620 10.425549746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277165 12 -1 727251 0 0xffffffff 0 -1 727251 0 ff ff ff ff d3 18 0b 00 00 00 00 00 ............ +3622 10.425971508 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277177 12 26 717757 0 0x0000001a 0 26 717757 0 1a 00 00 00 bd f3 0a 00 00 00 00 00 ............ +3624 10.426112413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277189 26 22 2066981 0 0x00000016 1 2066981 0 196609 0 16 00 00 00 25 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +3626 10.426295757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298515 12 -1 717757 0 0xffffffff 0 -1 717757 0 ff ff ff ff bd f3 0a 00 00 00 00 00 ............ +3628 10.451970816 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298527 12 26 727252 0 0x0000001a 0 26 727252 0 1a 00 00 00 d4 18 0b 00 00 00 00 00 ............ +3630 10.452133656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298539 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1977155584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 8a 1f 00 00 00 00 00 ....T.c@.^1@......'....... +3632 10.452957153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277215 12 -1 727252 0 0xffffffff 0 -1 727252 0 ff ff ff ff d4 18 0b 00 00 00 00 00 ............ +3634 10.453554153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277227 12 22 717758 0 0x00000016 0 22 717758 0 16 00 00 00 be f3 0a 00 00 00 00 00 ............ +3636 10.453708887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277239 22 18 2066983 0 0x00000012 1 2066983 0 196609 0 12 00 00 00 27 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +3638 10.454026461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298565 12 -1 717758 0 0xffffffff 0 -1 717758 0 ff ff ff ff be f3 0a 00 00 00 00 00 ............ +3652 10.555014849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298577 12 26 727253 0 0x0000001a 0 26 727253 0 1a 00 00 00 d5 18 0b 00 00 00 00 00 ............ +3654 10.555189610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298589 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1977024512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 8a 1f 00 00 00 00 00 ....T.c@.^1@......)....... +3656 10.555614471 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277261 12 -1 727253 0 0xffffffff 0 -1 727253 0 ff ff ff ff d5 18 0b 00 00 00 00 00 ............ +3658 10.555924892 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277273 12 22 717759 0 0x00000016 0 22 717759 0 16 00 00 00 bf f3 0a 00 00 00 00 00 ............ +3660 10.556086063 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277285 22 18 2066985 0 0x00000012 1 2066985 0 196609 0 12 00 00 00 29 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +3662 10.556293488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298615 12 -1 717759 0 0xffffffff 0 -1 717759 0 ff ff ff ff bf f3 0a 00 00 00 00 00 ............ +3670 10.623503447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277307 12 -2 82560 82577 0xfffffffe 0 -2 82560 82577 fe ff ff ff 80 42 01 00 91 42 01 00 .....B...B.. +3674 10.658532381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298627 12 26 727254 0 0x0000001a 0 26 727254 0 1a 00 00 00 d6 18 0b 00 00 00 00 00 ............ +3676 10.658737659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298639 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1976893440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 8a 1f 00 00 00 00 00 ....T.c@.^1@......+....... +3678 10.658951998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277319 12 -1 727254 0 0xffffffff 0 -1 727254 0 ff ff ff ff d6 18 0b 00 00 00 00 00 ............ +3680 10.659333467 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277331 12 22 717760 0 0x00000016 0 22 717760 0 16 00 00 00 c0 f3 0a 00 00 00 00 00 ............ +3682 10.659494638 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277343 22 18 2066987 0 0x00000012 1 2066987 0 196609 0 12 00 00 00 2b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +3684 10.659850359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298665 12 -1 717760 0 0xffffffff 0 -1 717760 0 ff ff ff ff c0 f3 0a 00 00 00 00 00 ............ +3688 10.684888363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298677 12 -2 82578 82560 0xfffffffe 0 -2 82578 82560 fe ff ff ff 92 42 01 00 80 42 01 00 .....B...B.. +3692 10.725761652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298689 12 101 727255 0 0x00000065 0 101 727255 0 65 00 00 00 d7 18 0b 00 00 00 00 00 e........... +3694 10.725997925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298701 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d5 10 02 00 00 00 00 00 4f b8 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d5 10 02 00 00 00 00 ".....!...o3...............O."".....?.....3...|8.." +3696 10.726250172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277365 12 -1 727255 0 0xffffffff 0 -1 727255 0 ff ff ff ff d7 18 0b 00 00 00 00 00 ............ +3698 10.727485180 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277377 12 52 717761 0 0x00000034 0 52 717761 0 34 00 00 00 c1 f3 0a 00 00 00 00 00 4........... +3700 10.727657795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277389 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d5 10 02 00 00 00 00 00 00 00 6a 19 d3 6f 4d 01 00 00 "0...Dk.................L."".([...............j..o" +3702 10.728000402 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298802 12 -1 717761 0 0xffffffff 0 -1 717761 0 ff ff ff ff c1 f3 0a 00 00 00 00 00 ............ +3704 10.728698254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298814 12 30 727256 0 0x0000001e 0 30 727256 0 1e 00 00 00 d8 18 0b 00 00 00 00 00 ............ +3706 10.728880644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298826 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1976762368 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +3708 10.729180813 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277441 12 -1 727256 0 0xffffffff 0 -1 727256 0 ff ff ff ff d8 18 0b 00 00 00 00 00 ............ +3710 10.729590178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277453 12 26 717762 0 0x0000001a 0 26 717762 0 1a 00 00 00 c2 f3 0a 00 00 00 00 00 ............ +3712 10.729736090 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277465 26 22 2066989 0 0x00000016 1 2066989 0 196609 0 16 00 00 00 2d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +3714 10.730115652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298856 12 -1 717762 0 0xffffffff 0 -1 717762 0 ff ff ff ff c2 f3 0a 00 00 00 00 00 ............ +3716 10.761491776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298868 12 26 727257 0 0x0000001a 0 26 727257 0 1a 00 00 00 d9 18 0b 00 00 00 00 00 ............ +3718 10.761653900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298880 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1976631296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 8a 1f 00 00 00 00 00 ....T.c@.^1@....../....... +3720 10.761990070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277491 12 -1 727257 0 0xffffffff 0 -1 727257 0 ff ff ff ff d9 18 0b 00 00 00 00 00 ............ +3722 10.762276649 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277503 12 22 717763 0 0x00000016 0 22 717763 0 16 00 00 00 c3 f3 0a 00 00 00 00 00 ............ +3724 10.762443781 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277515 22 18 2066991 0 0x00000012 1 2066991 0 196609 0 12 00 00 00 2f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +3726 10.762848616 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298906 12 -1 717763 0 0xffffffff 0 -1 717763 0 ff ff ff ff c3 f3 0a 00 00 00 00 00 ............ +3730 10.864727497 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298918 12 26 727258 0 0x0000001a 0 26 727258 0 1a 00 00 00 da 18 0b 00 00 00 00 00 ............ +3732 10.864968300 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298930 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1976500224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 8a 1f 00 00 00 00 00 ....T.c@.^1@......1....... +3734 10.865364552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277537 12 -1 727258 0 0xffffffff 0 -1 727258 0 ff ff ff ff da 18 0b 00 00 00 00 00 ............ +3736 10.865825891 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277549 12 22 717764 0 0x00000016 0 22 717764 0 16 00 00 00 c4 f3 0a 00 00 00 00 00 ............ +3738 10.866054058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277561 22 18 2066993 0 0x00000012 1 2066993 0 196609 0 12 00 00 00 31 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +3740 10.866351366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298956 12 -1 717764 0 0xffffffff 0 -1 717764 0 ff ff ff ff c4 f3 0a 00 00 00 00 00 ............ +3835 10.967312813 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298968 12 26 727259 0 0x0000001a 0 26 727259 0 1a 00 00 00 db 18 0b 00 00 00 00 00 ............ +3838 10.967483521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333298980 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1976369152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 8a 1f 00 00 00 00 00 ....T.c@.^1@......3....... +3844 10.967883587 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277583 12 -1 727259 0 0xffffffff 0 -1 727259 0 ff ff ff ff db 18 0b 00 00 00 00 00 ............ +3851 10.968354702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277595 12 22 717765 0 0x00000016 0 22 717765 0 16 00 00 00 c5 f3 0a 00 00 00 00 00 ............ +3856 10.968529701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277607 22 18 2066995 0 0x00000012 1 2066995 0 196609 0 12 00 00 00 33 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +3860 10.968807220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299006 12 -1 717765 0 0xffffffff 0 -1 717765 0 ff ff ff ff c5 f3 0a 00 00 00 00 00 ............ +3976 11.031175852 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299018 12 34 727260 0 0x00000022 0 34 727260 0 22 00 00 00 dc 18 0b 00 00 00 00 00 """..........." +3978 11.031341553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299030 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 282460160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d6 10 02 00 00 00 00 00 81 b9 22 c3 9d 01 00 00 ".....!...o3.................""....." +3980 11.031480312 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299064 12 67 727261 0 0x00000043 0 67 727261 0 43 00 00 00 dd 18 0b 00 00 00 00 00 C........... +3982 11.031568050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299076 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 14 16 9b c8 ?.....3...|8...................=B.....&......... +3984 11.031654119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277629 12 -1 727260 0 0xffffffff 0 -1 727260 0 ff ff ff ff dc 18 0b 00 00 00 00 00 ............ +3986 11.031839848 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277641 12 -1 727261 0 0xffffffff 0 -1 727261 0 ff ff ff ff dd 18 0b 00 00 00 00 00 ............ +3988 11.032620192 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277653 12 52 717766 0 0x00000034 0 52 717766 0 34 00 00 00 c6 f3 0a 00 00 00 00 00 4........... +3990 11.032792091 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277665 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d6 10 02 00 00 00 00 00 00 00 dc a9 01 70 4d 01 00 00 "0...Dk.................L."".([..................p" +3992 11.033066273 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299143 12 -1 717766 0 0xffffffff 0 -1 717766 0 ff ff ff ff c6 f3 0a 00 00 00 00 00 ............ +3994 11.033861876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299155 12 30 727262 0 0x0000001e 0 30 727262 0 1e 00 00 00 de 18 0b 00 00 00 00 00 ............ +3996 11.034081697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299167 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1976238080 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +3998 11.034383535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277717 12 -1 727262 0 0xffffffff 0 -1 727262 0 ff ff ff ff de 18 0b 00 00 00 00 00 ............ +4000 11.034722090 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277729 12 26 717767 0 0x0000001a 0 26 717767 0 1a 00 00 00 c7 f3 0a 00 00 00 00 00 ............ +4002 11.034905672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277741 26 22 2066997 0 0x00000016 1 2066997 0 196609 0 16 00 00 00 35 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +4004 11.035152435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299197 12 -1 717767 0 0xffffffff 0 -1 717767 0 ff ff ff ff c7 f3 0a 00 00 00 00 00 ............ +4118 11.071610689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299209 12 26 727263 0 0x0000001a 0 26 727263 0 1a 00 00 00 df 18 0b 00 00 00 00 00 ............ +4122 11.071808577 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299221 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1976107008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 8a 1f 00 00 00 00 00 ....T.c@.^1@......7....... +4127 11.072237968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277767 12 -1 727263 0 0xffffffff 0 -1 727263 0 ff ff ff ff df 18 0b 00 00 00 00 00 ............ +4129 11.072609901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277779 12 22 717768 0 0x00000016 0 22 717768 0 16 00 00 00 c8 f3 0a 00 00 00 00 00 ............ +4131 11.072777748 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277791 22 18 2066999 0 0x00000012 1 2066999 0 196609 0 12 00 00 00 37 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +4133 11.073026180 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299247 12 -1 717768 0 0xffffffff 0 -1 717768 0 ff ff ff ff c8 f3 0a 00 00 00 00 00 ............ +4291 11.125263929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277813 12 -2 82561 82578 0xfffffffe 0 -2 82561 82578 fe ff ff ff 81 42 01 00 92 42 01 00 .....B...B.. +4299 11.175267696 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299259 12 26 727264 0 0x0000001a 0 26 727264 0 1a 00 00 00 e0 18 0b 00 00 00 00 00 ............ +4301 11.175439596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299271 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1975975936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 8a 1f 00 00 00 00 00 ....T.c@.^1@......9....... +4303 11.175837517 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277825 12 -1 727264 0 0xffffffff 0 -1 727264 0 ff ff ff ff e0 18 0b 00 00 00 00 00 ............ +4305 11.176168442 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277837 12 22 717769 0 0x00000016 0 22 717769 0 16 00 00 00 c9 f3 0a 00 00 00 00 00 ............ +4307 11.176327705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277849 22 18 2067001 0 0x00000012 1 2067001 0 196609 0 12 00 00 00 39 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +4309 11.176630020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299297 12 -1 717769 0 0xffffffff 0 -1 717769 0 ff ff ff ff c9 f3 0a 00 00 00 00 00 ............ +4313 11.186023235 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299309 12 -2 82579 82561 0xfffffffe 0 -2 82579 82561 fe ff ff ff 93 42 01 00 81 42 01 00 .....B...B.. +4321 11.278245449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299321 12 26 727265 0 0x0000001a 0 26 727265 0 1a 00 00 00 e1 18 0b 00 00 00 00 00 ............ +4323 11.278444290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299333 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1975844864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 8a 1f 00 00 00 00 00 ....T.c@.^1@......;....... +4325 11.278777838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277871 12 -1 727265 0 0xffffffff 0 -1 727265 0 ff ff ff ff e1 18 0b 00 00 00 00 00 ............ +4327 11.279272795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277883 12 22 717770 0 0x00000016 0 22 717770 0 16 00 00 00 ca f3 0a 00 00 00 00 00 ............ +4329 11.279440165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277895 22 18 2067003 0 0x00000012 1 2067003 0 196609 0 12 00 00 00 3b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +4331 11.279728651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299359 12 -1 717770 0 0xffffffff 0 -1 717770 0 ff ff ff ff ca f3 0a 00 00 00 00 00 ............ +4333 11.335458279 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299371 12 101 727266 0 0x00000065 0 101 727266 0 65 00 00 00 e2 18 0b 00 00 00 00 00 e........... +4335 11.335653543 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299383 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d7 10 02 00 00 00 00 00 b1 ba 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d7 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +4337 11.335983753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277917 12 -1 727266 0 0xffffffff 0 -1 727266 0 ff ff ff ff e2 18 0b 00 00 00 00 00 ............ +4339 11.337064266 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277929 12 52 717771 0 0x00000034 0 52 717771 0 34 00 00 00 cb f3 0a 00 00 00 00 00 4........... +4341 11.337231636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277941 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d7 10 02 00 00 00 00 00 00 00 ce 1a 30 70 4d 01 00 00 "0...Dk.................L."".([.................0p" +4343 11.337525845 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299484 12 -1 717771 0 0xffffffff 0 -1 717771 0 ff ff ff ff cb f3 0a 00 00 00 00 00 ............ +4345 11.338330746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299496 12 30 727267 0 0x0000001e 0 30 727267 0 1e 00 00 00 e3 18 0b 00 00 00 00 00 ............ +4347 11.338479280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299508 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1975713792 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +4349 11.338776350 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377277993 12 -1 727267 0 0xffffffff 0 -1 727267 0 ff ff ff ff e3 18 0b 00 00 00 00 00 ............ +4351 11.339159012 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278005 12 26 717772 0 0x0000001a 0 26 717772 0 1a 00 00 00 cc f3 0a 00 00 00 00 00 ............ +4353 11.339319229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278017 26 22 2067005 0 0x00000016 1 2067005 0 196609 0 16 00 00 00 3d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +4355 11.339562654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299538 12 -1 717772 0 0xffffffff 0 -1 717772 0 ff ff ff ff cc f3 0a 00 00 00 00 00 ............ +4361 11.382505417 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299550 12 26 727268 0 0x0000001a 0 26 727268 0 1a 00 00 00 e4 18 0b 00 00 00 00 00 ............ +4363 11.382687807 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299562 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1975582720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 8a 1f 00 00 00 00 00 ....T.c@.^1@......?....... +4365 11.382982254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278043 12 -1 727268 0 0xffffffff 0 -1 727268 0 ff ff ff ff e4 18 0b 00 00 00 00 00 ............ +4367 11.383515120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278055 12 22 717773 0 0x00000016 0 22 717773 0 16 00 00 00 cd f3 0a 00 00 00 00 00 ............ +4369 11.383674860 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278067 22 18 2067007 0 0x00000012 1 2067007 0 196609 0 12 00 00 00 3f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +4371 11.384209156 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299588 12 -1 717773 0 0xffffffff 0 -1 717773 0 ff ff ff ff cd f3 0a 00 00 00 00 00 ............ +4375 11.485658407 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299600 12 26 727269 0 0x0000001a 0 26 727269 0 1a 00 00 00 e5 18 0b 00 00 00 00 00 ............ +4377 11.485864401 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299612 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1975451648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 8a 1f 00 00 00 00 00 ....T.c@.^1@......A....... +4379 11.486159801 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278089 12 -1 727269 0 0xffffffff 0 -1 727269 0 ff ff ff ff e5 18 0b 00 00 00 00 00 ............ +4381 11.486610174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278101 12 22 717774 0 0x00000016 0 22 717774 0 16 00 00 00 ce f3 0a 00 00 00 00 00 ............ +4383 11.486769915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278113 22 18 2067009 0 0x00000012 1 2067009 0 196609 0 12 00 00 00 41 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +4385 11.487126827 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299638 12 -1 717774 0 0xffffffff 0 -1 717774 0 ff ff ff ff ce f3 0a 00 00 00 00 00 ............ +4389 11.588681221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299650 12 26 727270 0 0x0000001a 0 26 727270 0 1a 00 00 00 e6 18 0b 00 00 00 00 00 ............ +4391 11.588918209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299662 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1975320576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 8a 1f 00 00 00 00 00 ....T.c@.^1@......C....... +4393 11.589296341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278135 12 -1 727270 0 0xffffffff 0 -1 727270 0 ff ff ff ff e6 18 0b 00 00 00 00 00 ............ +4395 11.589762211 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278147 12 22 717775 0 0x00000016 0 22 717775 0 16 00 00 00 cf f3 0a 00 00 00 00 00 ............ +4397 11.589932203 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278159 22 18 2067011 0 0x00000012 1 2067011 0 196609 0 12 00 00 00 43 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +4399 11.590286732 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299688 12 -1 717775 0 0xffffffff 0 -1 717775 0 ff ff ff ff cf f3 0a 00 00 00 00 00 ............ +4407 11.626405478 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278181 12 -2 82562 82579 0xfffffffe 0 -2 82562 82579 fe ff ff ff 82 42 01 00 93 42 01 00 .....B...B.. +4411 11.639639139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299700 12 101 727271 0 0x00000065 0 101 727271 0 65 00 00 00 e7 18 0b 00 00 00 00 00 e........... +4413 11.639838934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299712 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d8 10 02 00 00 00 00 00 e1 bb 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d8 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +4415 11.640184402 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278193 12 -1 727271 0 0xffffffff 0 -1 727271 0 ff ff ff ff e7 18 0b 00 00 00 00 00 ............ +4417 11.641382694 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278205 12 52 717776 0 0x00000034 0 52 717776 0 34 00 00 00 d0 f3 0a 00 00 00 00 00 4........... +4419 11.641546249 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278217 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d8 10 02 00 00 00 00 00 00 00 d0 8c 5e 70 4d 01 00 00 "0...Dk.................L."".([.................^p" +4421 11.641956329 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299813 12 -1 717776 0 0xffffffff 0 -1 717776 0 ff ff ff ff d0 f3 0a 00 00 00 00 00 ............ +4423 11.643209696 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299825 12 30 727272 0 0x0000001e 0 30 727272 0 1e 00 00 00 e8 18 0b 00 00 00 00 00 ............ +4425 11.643486261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299837 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1975189504 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......E........... +4427 11.643901110 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278269 12 -1 727272 0 0xffffffff 0 -1 727272 0 ff ff ff ff e8 18 0b 00 00 00 00 00 ............ +4429 11.644247532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278281 12 26 717777 0 0x0000001a 0 26 717777 0 1a 00 00 00 d1 f3 0a 00 00 00 00 00 ............ +4431 11.644515514 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278293 26 22 2067013 0 0x00000016 1 2067013 0 196609 0 16 00 00 00 45 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E..................... +4433 11.644850731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299867 12 -1 717777 0 0xffffffff 0 -1 717777 0 ff ff ff ff d1 f3 0a 00 00 00 00 00 ............ +4437 11.686908722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299879 12 -2 82580 82562 0xfffffffe 0 -2 82580 82562 fe ff ff ff 94 42 01 00 82 42 01 00 .....B...B.. +4441 11.692281246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299891 12 26 727273 0 0x0000001a 0 26 727273 0 1a 00 00 00 e9 18 0b 00 00 00 00 00 ............ +4443 11.692448139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299903 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1975058432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 8a 1f 00 00 00 00 00 ....T.c@.^1@......G....... +4445 11.692786932 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278319 12 -1 727273 0 0xffffffff 0 -1 727273 0 ff ff ff ff e9 18 0b 00 00 00 00 00 ............ +4447 11.693223953 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278331 12 22 717778 0 0x00000016 0 22 717778 0 16 00 00 00 d2 f3 0a 00 00 00 00 00 ............ +4449 11.693425655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278343 22 18 2067015 0 0x00000012 1 2067015 0 196609 0 12 00 00 00 47 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +4451 11.693809032 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299929 12 -1 717778 0 0xffffffff 0 -1 717778 0 ff ff ff ff d2 f3 0a 00 00 00 00 00 ............ +4453 11.795031071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299941 12 26 727274 0 0x0000001a 0 26 727274 0 1a 00 00 00 ea 18 0b 00 00 00 00 00 ............ +4455 11.795208931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299953 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1974927360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 8a 1f 00 00 00 00 00 ....T.c@.^1@......I....... +4457 11.795551300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278365 12 -1 727274 0 0xffffffff 0 -1 727274 0 ff ff ff ff ea 18 0b 00 00 00 00 00 ............ +4459 11.796053648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278377 12 22 717779 0 0x00000016 0 22 717779 0 16 00 00 00 d3 f3 0a 00 00 00 00 00 ............ +4461 11.796211720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278389 22 18 2067017 0 0x00000012 1 2067017 0 196609 0 12 00 00 00 49 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +4463 11.796401262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299979 12 -1 717779 0 0xffffffff 0 -1 717779 0 ff ff ff ff d3 f3 0a 00 00 00 00 00 ............ +4482 11.898090601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333299991 12 26 727275 0 0x0000001a 0 26 727275 0 1a 00 00 00 eb 18 0b 00 00 00 00 00 ............ +4484 11.898291588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300003 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1974796288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 8a 1f 00 00 00 00 00 ....T.c@.^1@......K....... +4486 11.898662567 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278411 12 -1 727275 0 0xffffffff 0 -1 727275 0 ff ff ff ff eb 18 0b 00 00 00 00 00 ............ +4488 11.899230719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278423 12 22 717780 0 0x00000016 0 22 717780 0 16 00 00 00 d4 f3 0a 00 00 00 00 00 ............ +4490 11.899447441 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278435 22 18 2067019 0 0x00000012 1 2067019 0 196609 0 12 00 00 00 4b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +4492 11.899770021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300029 12 -1 717780 0 0xffffffff 0 -1 717780 0 ff ff ff ff d4 f3 0a 00 00 00 00 00 ............ +4494 11.944242239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300041 12 101 727276 0 0x00000065 0 101 727276 0 65 00 00 00 ec 18 0b 00 00 00 00 00 e........... +4496 11.944493771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300053 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d9 10 02 00 00 00 00 00 11 bd 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d9 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +4498 11.944844007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278457 12 -1 727276 0 0xffffffff 0 -1 727276 0 ff ff ff ff ec 18 0b 00 00 00 00 00 ............ +4500 11.945621490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278469 12 52 717781 0 0x00000034 0 52 717781 0 34 00 00 00 d5 f3 0a 00 00 00 00 00 4........... +4502 11.945790768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278481 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d9 10 02 00 00 00 00 00 00 00 4f f4 8c 70 4d 01 00 00 "0...Dk.................L."".([...............O..p" +4504 11.946083546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300154 12 -1 717781 0 0xffffffff 0 -1 717781 0 ff ff ff ff d5 f3 0a 00 00 00 00 00 ............ +4506 11.947131634 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300166 12 30 727277 0 0x0000001e 0 30 727277 0 1e 00 00 00 ed 18 0b 00 00 00 00 00 ............ +4508 11.947287560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300178 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1974665216 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......M........... +4510 11.947640657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278533 12 -1 727277 0 0xffffffff 0 -1 727277 0 ff ff ff ff ed 18 0b 00 00 00 00 00 ............ +4512 11.948034286 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278545 12 26 717782 0 0x0000001a 0 26 717782 0 1a 00 00 00 d6 f3 0a 00 00 00 00 00 ............ +4514 11.948182106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278557 26 22 2067021 0 0x00000016 1 2067021 0 196609 0 16 00 00 00 4d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M..................... +4516 11.948465586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300208 12 -1 717782 0 0xffffffff 0 -1 717782 0 ff ff ff ff d6 f3 0a 00 00 00 00 00 ............ +4524 12.000811100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300220 12 26 727278 0 0x0000001a 0 26 727278 0 1a 00 00 00 ee 18 0b 00 00 00 00 00 ............ +4526 12.000976562 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300232 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1974534144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 8a 1f 00 00 00 00 00 ....T.c@.^1@......O....... +4528 12.001276731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278583 12 -1 727278 0 0xffffffff 0 -1 727278 0 ff ff ff ff ee 18 0b 00 00 00 00 00 ............ +4530 12.001659393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278595 12 22 717783 0 0x00000016 0 22 717783 0 16 00 00 00 d7 f3 0a 00 00 00 00 00 ............ +4532 12.001822233 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278607 22 18 2067023 0 0x00000012 1 2067023 0 196609 0 12 00 00 00 4f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +4534 12.002076149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300258 12 -1 717783 0 0xffffffff 0 -1 717783 0 ff ff ff ff d7 f3 0a 00 00 00 00 00 ............ +4546 12.104979277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300270 12 26 727279 0 0x0000001a 0 26 727279 0 1a 00 00 00 ef 18 0b 00 00 00 00 00 ............ +4548 12.105200768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300282 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1974403072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 8a 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +4550 12.105580568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278629 12 -1 727279 0 0xffffffff 0 -1 727279 0 ff ff ff ff ef 18 0b 00 00 00 00 00 ............ +4552 12.106126785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278641 12 22 717784 0 0x00000016 0 22 717784 0 16 00 00 00 d8 f3 0a 00 00 00 00 00 ............ +4554 12.106372356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278653 22 18 2067025 0 0x00000012 1 2067025 0 196609 0 12 00 00 00 51 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +4556 12.106747150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300308 12 -1 717784 0 0xffffffff 0 -1 717784 0 ff ff ff ff d8 f3 0a 00 00 00 00 00 ............ +4564 12.127939224 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278675 12 -2 82563 82580 0xfffffffe 0 -2 82563 82580 fe ff ff ff 83 42 01 00 94 42 01 00 .....B...B.. +4570 12.188444614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300320 12 -2 82581 82563 0xfffffffe 0 -2 82581 82563 fe ff ff ff 95 42 01 00 83 42 01 00 .....B...B.. +4574 12.207852840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300332 12 26 727280 0 0x0000001a 0 26 727280 0 1a 00 00 00 f0 18 0b 00 00 00 00 00 ............ +4576 12.208022356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300344 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1974272000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8a 1f 00 00 00 00 00 ....T.c@.^1@......S....... +4578 12.208401918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278687 12 -1 727280 0 0xffffffff 0 -1 727280 0 ff ff ff ff f0 18 0b 00 00 00 00 00 ............ +4580 12.208844662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278699 12 22 717785 0 0x00000016 0 22 717785 0 16 00 00 00 d9 f3 0a 00 00 00 00 00 ............ +4582 12.209005833 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278711 22 18 2067027 0 0x00000012 1 2067027 0 196609 0 12 00 00 00 53 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +4584 12.209425449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300370 12 -1 717785 0 0xffffffff 0 -1 717785 0 ff ff ff ff d9 f3 0a 00 00 00 00 00 ............ +4586 12.248237133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300382 12 101 727281 0 0x00000065 0 101 727281 0 65 00 00 00 f1 18 0b 00 00 00 00 00 e........... +4588 12.248421907 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300394 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 da 10 02 00 00 00 00 00 41 be 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 da 10 02 00 00 00 00 ".....!...o3...............A."".....?.....3...|8.." +4590 12.248734236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278733 12 -1 727281 0 0xffffffff 0 -1 727281 0 ff ff ff ff f1 18 0b 00 00 00 00 00 ............ +4592 12.249429464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278745 12 52 717786 0 0x00000034 0 52 717786 0 34 00 00 00 da f3 0a 00 00 00 00 00 4........... +4594 12.249588490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278757 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 da 10 02 00 00 00 00 00 00 00 03 54 bb 70 4d 01 00 00 "0...Dk.................L."".([................T.p" +4596 12.249898434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300495 12 -1 717786 0 0xffffffff 0 -1 717786 0 ff ff ff ff da f3 0a 00 00 00 00 00 ............ +4598 12.250751495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300507 12 30 727282 0 0x0000001e 0 30 727282 0 1e 00 00 00 f2 18 0b 00 00 00 00 00 ............ +4600 12.250894785 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300519 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1974140928 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......U........... +4602 12.251305580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278809 12 -1 727282 0 0xffffffff 0 -1 727282 0 ff ff ff ff f2 18 0b 00 00 00 00 00 ............ +4604 12.251611471 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278821 12 26 717787 0 0x0000001a 0 26 717787 0 1a 00 00 00 db f3 0a 00 00 00 00 00 ............ +4606 12.251765966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278833 26 22 2067029 0 0x00000016 1 2067029 0 196609 0 16 00 00 00 55 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U..................... +4608 12.252040625 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300549 12 -1 717787 0 0xffffffff 0 -1 717787 0 ff ff ff ff db f3 0a 00 00 00 00 00 ............ +4610 12.312216520 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300561 12 26 727283 0 0x0000001a 0 26 727283 0 1a 00 00 00 f3 18 0b 00 00 00 00 00 ............ +4612 12.312407255 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300573 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1974009856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8a 1f 00 00 00 00 00 ....T.c@.^1@......W....... +4614 12.312766552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278859 12 -1 727283 0 0xffffffff 0 -1 727283 0 ff ff ff ff f3 18 0b 00 00 00 00 00 ............ +4616 12.313107967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278871 12 22 717788 0 0x00000016 0 22 717788 0 16 00 00 00 dc f3 0a 00 00 00 00 00 ............ +4618 12.313265085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278883 22 18 2067031 0 0x00000012 1 2067031 0 196609 0 12 00 00 00 57 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +4620 12.313572645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300599 12 -1 717788 0 0xffffffff 0 -1 717788 0 ff ff ff ff dc f3 0a 00 00 00 00 00 ............ +4626 12.416306257 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300611 12 26 727284 0 0x0000001a 0 26 727284 0 1a 00 00 00 f4 18 0b 00 00 00 00 00 ............ +4628 12.416607857 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300623 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1973878784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 8a 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +4630 12.416979313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278905 12 -1 727284 0 0xffffffff 0 -1 727284 0 ff ff ff ff f4 18 0b 00 00 00 00 00 ............ +4632 12.417529345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278917 12 22 717789 0 0x00000016 0 22 717789 0 16 00 00 00 dd f3 0a 00 00 00 00 00 ............ +4634 12.417731047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278929 22 18 2067033 0 0x00000012 1 2067033 0 196609 0 12 00 00 00 59 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +4636 12.418060064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300649 12 -1 717789 0 0xffffffff 0 -1 717789 0 ff ff ff ff dd f3 0a 00 00 00 00 00 ............ +4644 12.520748854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300661 12 26 727285 0 0x0000001a 0 26 727285 0 1a 00 00 00 f5 18 0b 00 00 00 00 00 ............ +4646 12.520982027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300673 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1973747712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8a 1f 00 00 00 00 00 ....T.c@.^1@......[....... +4648 12.521304131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278951 12 -1 727285 0 0xffffffff 0 -1 727285 0 ff ff ff ff f5 18 0b 00 00 00 00 00 ............ +4650 12.521746874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278963 12 22 717790 0 0x00000016 0 22 717790 0 16 00 00 00 de f3 0a 00 00 00 00 00 ............ +4652 12.521952629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278975 22 18 2067035 0 0x00000012 1 2067035 0 196609 0 12 00 00 00 5b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +4654 12.522233725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300699 12 -1 717790 0 0xffffffff 0 -1 717790 0 ff ff ff ff de f3 0a 00 00 00 00 00 ............ +4656 12.552187920 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300711 12 101 727286 0 0x00000065 0 101 727286 0 65 00 00 00 f6 18 0b 00 00 00 00 00 e........... +4658 12.552398205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300723 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 db 10 02 00 00 00 00 00 72 bf 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 db 10 02 00 00 00 00 ".....!...o3...............r."".....?.....3...|8.." +4660 12.552750826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278997 12 -1 727286 0 0xffffffff 0 -1 727286 0 ff ff ff ff f6 18 0b 00 00 00 00 00 ............ +4662 12.553937912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279009 12 52 717791 0 0x00000034 0 52 717791 0 34 00 00 00 df f3 0a 00 00 00 00 00 4........... +4664 12.554099798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279021 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 db 10 02 00 00 00 00 00 00 00 71 cb e9 70 4d 01 00 00 "0...Dk.................L."".([...............q..p" +4666 12.554444075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300824 12 -1 717791 0 0xffffffff 0 -1 717791 0 ff ff ff ff df f3 0a 00 00 00 00 00 ............ +4668 12.555155039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300836 12 30 727287 0 0x0000001e 0 30 727287 0 1e 00 00 00 f7 18 0b 00 00 00 00 00 ............ +4670 12.555355787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300848 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1973616640 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +4672 12.555658817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279073 12 -1 727287 0 0xffffffff 0 -1 727287 0 ff ff ff ff f7 18 0b 00 00 00 00 00 ............ +4674 12.555969238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279085 12 26 717792 0 0x0000001a 0 26 717792 0 1a 00 00 00 e0 f3 0a 00 00 00 00 00 ............ +4676 12.556113482 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279097 26 22 2067037 0 0x00000016 1 2067037 0 196609 0 16 00 00 00 5d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +4678 12.556413889 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300878 12 -1 717792 0 0xffffffff 0 -1 717792 0 ff ff ff ff e0 f3 0a 00 00 00 00 00 ............ +4684 12.623642445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300890 12 26 727288 0 0x0000001a 0 26 727288 0 1a 00 00 00 f8 18 0b 00 00 00 00 00 ............ +4686 12.623828173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300902 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1973485568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8a 1f 00 00 00 00 00 ....T.c@.^1@......_....... +4688 12.624156713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279123 12 -1 727288 0 0xffffffff 0 -1 727288 0 ff ff ff ff f8 18 0b 00 00 00 00 00 ............ +4690 12.625012875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279135 12 22 717793 0 0x00000016 0 22 717793 0 16 00 00 00 e1 f3 0a 00 00 00 00 00 ............ +4692 12.625196457 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279147 22 18 2067039 0 0x00000012 1 2067039 0 196609 0 12 00 00 00 5f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +4694 12.625592709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300928 12 -1 717793 0 0xffffffff 0 -1 717793 0 ff ff ff ff e1 f3 0a 00 00 00 00 00 ............ +4698 12.629793644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279169 12 -2 82564 82581 0xfffffffe 0 -2 82564 82581 fe ff ff ff 84 42 01 00 95 42 01 00 .....B...B.. +4704 12.690485001 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300940 12 -2 82582 82564 0xfffffffe 0 -2 82582 82564 fe ff ff ff 96 42 01 00 84 42 01 00 .....B...B.. +4708 12.728060484 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300952 12 26 727289 0 0x0000001a 0 26 727289 0 1a 00 00 00 f9 18 0b 00 00 00 00 00 ............ +4710 12.728255033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300964 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1973354496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 8a 1f 00 00 00 00 00 ....T.c@.^1@......a....... +4712 12.728816748 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279181 12 -1 727289 0 0xffffffff 0 -1 727289 0 ff ff ff ff f9 18 0b 00 00 00 00 00 ............ +4714 12.729130507 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279193 12 22 717794 0 0x00000016 0 22 717794 0 16 00 00 00 e2 f3 0a 00 00 00 00 00 ............ +4716 12.729296923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279205 22 18 2067041 0 0x00000012 1 2067041 0 196609 0 12 00 00 00 61 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +4718 12.729646206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300990 12 -1 717794 0 0xffffffff 0 -1 717794 0 ff ff ff ff e2 f3 0a 00 00 00 00 00 ............ +4720 12.831143379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301002 12 26 727290 0 0x0000001a 0 26 727290 0 1a 00 00 00 fa 18 0b 00 00 00 00 00 ............ +4722 12.831341028 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301014 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1973223424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8a 1f 00 00 00 00 00 ....T.c@.^1@......c....... +4724 12.831677675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279227 12 -1 727290 0 0xffffffff 0 -1 727290 0 ff ff ff ff fa 18 0b 00 00 00 00 00 ............ +4726 12.832255363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279239 12 22 717795 0 0x00000016 0 22 717795 0 16 00 00 00 e3 f3 0a 00 00 00 00 00 ............ +4728 12.832447529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279251 22 18 2067043 0 0x00000012 1 2067043 0 196609 0 12 00 00 00 63 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +4730 12.832653999 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301040 12 -1 717795 0 0xffffffff 0 -1 717795 0 ff ff ff ff e3 f3 0a 00 00 00 00 00 ............ +4732 12.857891083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301052 12 101 727291 0 0x00000065 0 101 727291 0 65 00 00 00 fb 18 0b 00 00 00 00 00 e........... +4734 12.858133554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301064 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dc 10 02 00 00 00 00 00 a3 c0 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dc 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +4736 12.858482361 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279273 12 -1 727291 0 0xffffffff 0 -1 727291 0 ff ff ff ff fb 18 0b 00 00 00 00 00 ............ +4738 12.859396458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279285 12 52 717796 0 0x00000034 0 52 717796 0 34 00 00 00 e4 f3 0a 00 00 00 00 00 4........... +4740 12.859552622 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279297 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dc 10 02 00 00 00 00 00 00 00 20 66 18 71 4d 01 00 00 "0...Dk.................L."".([............... f.q" +4742 12.859829903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301165 12 -1 717796 0 0xffffffff 0 -1 717796 0 ff ff ff ff e4 f3 0a 00 00 00 00 00 ............ +4744 12.860748768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301177 12 30 727292 0 0x0000001e 0 30 727292 0 1e 00 00 00 fc 18 0b 00 00 00 00 00 ............ +4746 12.860966444 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301189 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1973092352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +4748 12.861281633 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279349 12 -1 727292 0 0xffffffff 0 -1 727292 0 ff ff ff ff fc 18 0b 00 00 00 00 00 ............ +4750 12.861651421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279361 12 26 717797 0 0x0000001a 0 26 717797 0 1a 00 00 00 e5 f3 0a 00 00 00 00 00 ............ +4752 12.861807108 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279373 26 22 2067045 0 0x00000016 1 2067045 0 196609 0 16 00 00 00 65 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +4754 12.862086058 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301219 12 -1 717797 0 0xffffffff 0 -1 717797 0 ff ff ff ff e5 f3 0a 00 00 00 00 00 ............ +4760 12.935224533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301231 12 26 727293 0 0x0000001a 0 26 727293 0 1a 00 00 00 fd 18 0b 00 00 00 00 00 ............ +4762 12.935402870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301243 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1972961280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8a 1f 00 00 00 00 00 ....T.c@.^1@......g....... +4764 12.935872793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279399 12 -1 727293 0 0xffffffff 0 -1 727293 0 ff ff ff ff fd 18 0b 00 00 00 00 00 ............ +4766 12.936200857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279411 12 22 717798 0 0x00000016 0 22 717798 0 16 00 00 00 e6 f3 0a 00 00 00 00 00 ............ +4768 12.936359644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279423 22 18 2067047 0 0x00000012 1 2067047 0 196609 0 12 00 00 00 67 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +4770 12.936687708 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301269 12 -1 717798 0 0xffffffff 0 -1 717798 0 ff ff ff ff e6 f3 0a 00 00 00 00 00 ............ +4776 13.039326906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301281 12 26 727294 0 0x0000001a 0 26 727294 0 1a 00 00 00 fe 18 0b 00 00 00 00 00 ............ +4778 13.039497375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301293 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1972830208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 8a 1f 00 00 00 00 00 ....T.c@.^1@......i....... +4780 13.039848566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279445 12 -1 727294 0 0xffffffff 0 -1 727294 0 ff ff ff ff fe 18 0b 00 00 00 00 00 ............ +4782 13.040309906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279457 12 22 717799 0 0x00000016 0 22 717799 0 16 00 00 00 e7 f3 0a 00 00 00 00 00 ............ +4784 13.040481091 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279469 22 18 2067049 0 0x00000012 1 2067049 0 196609 0 12 00 00 00 69 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +4786 13.040706635 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301319 12 -1 717799 0 0xffffffff 0 -1 717799 0 ff ff ff ff e7 f3 0a 00 00 00 00 00 ............ +4794 13.130722284 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279491 12 -2 82565 82582 0xfffffffe 0 -2 82565 82582 fe ff ff ff 85 42 01 00 96 42 01 00 .....B...B.. +4798 13.141741037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301331 12 26 727295 0 0x0000001a 0 26 727295 0 1a 00 00 00 ff 18 0b 00 00 00 00 00 ............ +4800 13.141912460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301343 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1972699136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8a 1f 00 00 00 00 00 ....T.c@.^1@......k....... +4802 13.142231464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279503 12 -1 727295 0 0xffffffff 0 -1 727295 0 ff ff ff ff ff 18 0b 00 00 00 00 00 ............ +4804 13.142779112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279515 12 22 717800 0 0x00000016 0 22 717800 0 16 00 00 00 e8 f3 0a 00 00 00 00 00 ............ +4806 13.142947912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279527 22 18 2067051 0 0x00000012 1 2067051 0 196609 0 12 00 00 00 6b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +4808 13.143270969 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301369 12 -1 717800 0 0xffffffff 0 -1 717800 0 ff ff ff ff e8 f3 0a 00 00 00 00 00 ............ +4810 13.162250280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301381 12 101 727296 0 0x00000065 0 101 727296 0 65 00 00 00 00 19 0b 00 00 00 00 00 e........... +4812 13.162397861 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301393 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dd 10 02 00 00 00 00 00 d3 c1 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dd 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +4814 13.162756920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279549 12 -1 727296 0 0xffffffff 0 -1 727296 0 ff ff ff ff 00 19 0b 00 00 00 00 00 ............ +4816 13.163563251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279561 12 52 717801 0 0x00000034 0 52 717801 0 34 00 00 00 e9 f3 0a 00 00 00 00 00 4........... +4818 13.163769960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279573 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dd 10 02 00 00 00 00 00 00 00 51 cf 46 71 4d 01 00 00 "0...Dk.................L."".([...............Q.Fq" +4820 13.164040804 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301494 12 -1 717801 0 0xffffffff 0 -1 717801 0 ff ff ff ff e9 f3 0a 00 00 00 00 00 ............ +4822 13.164918423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301506 12 30 727297 0 0x0000001e 0 30 727297 0 1e 00 00 00 01 19 0b 00 00 00 00 00 ............ +4824 13.165060997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301518 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1972568064 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......m........... +4826 13.165338516 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279625 12 -1 727297 0 0xffffffff 0 -1 727297 0 ff ff ff ff 01 19 0b 00 00 00 00 00 ............ +4828 13.165711403 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279637 12 26 717802 0 0x0000001a 0 26 717802 0 1a 00 00 00 ea f3 0a 00 00 00 00 00 ............ +4830 13.165867567 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279649 26 22 2067053 0 0x00000016 1 2067053 0 196609 0 16 00 00 00 6d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....m..................... +4832 13.166129351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301548 12 -1 717802 0 0xffffffff 0 -1 717802 0 ff ff ff ff ea f3 0a 00 00 00 00 00 ............ +4836 13.191521406 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301560 12 -2 82583 82565 0xfffffffe 0 -2 82583 82565 fe ff ff ff 97 42 01 00 85 42 01 00 .....B...B.. +4840 13.244758129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301572 12 26 727298 0 0x0000001a 0 26 727298 0 1a 00 00 00 02 19 0b 00 00 00 00 00 ............ +4842 13.244946718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301584 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1972436992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 8a 1f 00 00 00 00 00 ....T.c@.^1@......o....... +4844 13.245305777 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279675 12 -1 727298 0 0xffffffff 0 -1 727298 0 ff ff ff ff 02 19 0b 00 00 00 00 00 ............ +4846 13.246482849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279687 12 22 717803 0 0x00000016 0 22 717803 0 16 00 00 00 eb f3 0a 00 00 00 00 00 ............ +4848 13.246712685 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279699 22 18 2067055 0 0x00000012 1 2067055 0 196609 0 12 00 00 00 6f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +4850 13.247003555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301610 12 -1 717803 0 0xffffffff 0 -1 717803 0 ff ff ff ff eb f3 0a 00 00 00 00 00 ............ +4852 13.347993851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301622 12 26 727299 0 0x0000001a 0 26 727299 0 1a 00 00 00 03 19 0b 00 00 00 00 00 ............ +4854 13.348178148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301634 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1972305920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 8a 1f 00 00 00 00 00 ....T.c@.^1@......q....... +4856 13.348522663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279721 12 -1 727299 0 0xffffffff 0 -1 727299 0 ff ff ff ff 03 19 0b 00 00 00 00 00 ............ +4858 13.349116802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279733 12 22 717804 0 0x00000016 0 22 717804 0 16 00 00 00 ec f3 0a 00 00 00 00 00 ............ +4860 13.349286556 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279745 22 18 2067057 0 0x00000012 1 2067057 0 196609 0 12 00 00 00 71 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +4862 13.349565506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301660 12 -1 717804 0 0xffffffff 0 -1 717804 0 ff ff ff ff ec f3 0a 00 00 00 00 00 ............ +4868 13.451050997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301672 12 26 727300 0 0x0000001a 0 26 727300 0 1a 00 00 00 04 19 0b 00 00 00 00 00 ............ +4870 13.451225042 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301684 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1972174848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 8a 1f 00 00 00 00 00 ....T.c@.^1@......s....... +4872 13.451509476 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279767 12 -1 727300 0 0xffffffff 0 -1 727300 0 ff ff ff ff 04 19 0b 00 00 00 00 00 ............ +4874 13.452038050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279779 12 22 717805 0 0x00000016 0 22 717805 0 16 00 00 00 ed f3 0a 00 00 00 00 00 ............ +4876 13.452206612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279791 22 18 2067059 0 0x00000012 1 2067059 0 196609 0 12 00 00 00 73 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +4878 13.452987909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301710 12 -1 717805 0 0xffffffff 0 -1 717805 0 ff ff ff ff ed f3 0a 00 00 00 00 00 ............ +4880 13.467654943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301722 12 101 727301 0 0x00000065 0 101 727301 0 65 00 00 00 05 19 0b 00 00 00 00 00 e........... +4882 13.467868805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301734 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 de 10 02 00 00 00 00 00 05 c3 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 de 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +4884 13.468235016 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279813 12 -1 727301 0 0xffffffff 0 -1 727301 0 ff ff ff ff 05 19 0b 00 00 00 00 00 ............ +4886 13.469190836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279825 12 52 717806 0 0x00000034 0 52 717806 0 34 00 00 00 ee f3 0a 00 00 00 00 00 4........... +4888 13.469354153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279837 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 de 10 02 00 00 00 00 00 00 00 a0 6f 75 71 4d 01 00 00 "0...Dk.................L."".([................ouq" +4890 13.469609261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301835 12 -1 717806 0 0xffffffff 0 -1 717806 0 ff ff ff ff ee f3 0a 00 00 00 00 00 ............ +4892 13.470393181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301847 12 30 727302 0 0x0000001e 0 30 727302 0 1e 00 00 00 06 19 0b 00 00 00 00 00 ............ +4894 13.470558405 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301859 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1972043776 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 75 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......u........... +4896 13.470950127 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279889 12 -1 727302 0 0xffffffff 0 -1 727302 0 ff ff ff ff 06 19 0b 00 00 00 00 00 ............ +4898 13.471274137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279901 12 26 717807 0 0x0000001a 0 26 717807 0 1a 00 00 00 ef f3 0a 00 00 00 00 00 ............ +4900 13.471421957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279913 26 22 2067061 0 0x00000016 1 2067061 0 196609 0 16 00 00 00 75 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....u..................... +4902 13.471648932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301889 12 -1 717807 0 0xffffffff 0 -1 717807 0 ff ff ff ff ef f3 0a 00 00 00 00 00 ............ +4908 13.554572582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301901 12 26 727303 0 0x0000001a 0 26 727303 0 1a 00 00 00 07 19 0b 00 00 00 00 00 ............ +4910 13.554757595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301913 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1971912704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 8a 1f 00 00 00 00 00 ....T.c@.^1@......w....... +4912 13.555198908 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279939 12 -1 727303 0 0xffffffff 0 -1 727303 0 ff ff ff ff 07 19 0b 00 00 00 00 00 ............ +4914 13.555551767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279951 12 22 717808 0 0x00000016 0 22 717808 0 16 00 00 00 f0 f3 0a 00 00 00 00 00 ............ +4916 13.555710316 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279963 22 18 2067063 0 0x00000012 1 2067063 0 196609 0 12 00 00 00 77 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +4918 13.556011438 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301939 12 -1 717808 0 0xffffffff 0 -1 717808 0 ff ff ff ff f0 f3 0a 00 00 00 00 00 ............ +4926 13.631581545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279985 12 -2 82566 82583 0xfffffffe 0 -2 82566 82583 fe ff ff ff 86 42 01 00 97 42 01 00 .....B...B.. +4930 13.657318592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301951 12 26 727304 0 0x0000001a 0 26 727304 0 1a 00 00 00 08 19 0b 00 00 00 00 00 ............ +4932 13.657488108 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301963 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1971781632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 8a 1f 00 00 00 00 00 ....T.c@.^1@......y....... +4934 13.657833576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279997 12 -1 727304 0 0xffffffff 0 -1 727304 0 ff ff ff ff 08 19 0b 00 00 00 00 00 ............ +4936 13.658214569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280009 12 22 717809 0 0x00000016 0 22 717809 0 16 00 00 00 f1 f3 0a 00 00 00 00 00 ............ +4938 13.658371925 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280021 22 18 2067065 0 0x00000012 1 2067065 0 196609 0 12 00 00 00 79 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +4940 13.658791065 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301989 12 -1 717809 0 0xffffffff 0 -1 717809 0 ff ff ff ff f1 f3 0a 00 00 00 00 00 ............ +4944 13.693430901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302001 12 -2 82584 82566 0xfffffffe 0 -2 82584 82566 fe ff ff ff 98 42 01 00 86 42 01 00 .....B...B.. +4948 13.760558367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302013 12 26 727305 0 0x0000001a 0 26 727305 0 1a 00 00 00 09 19 0b 00 00 00 00 00 ............ +4950 13.760749817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302025 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1971650560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 8a 1f 00 00 00 00 00 ....T.c@.^1@......{....... +4952 13.761051178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280043 12 -1 727305 0 0xffffffff 0 -1 727305 0 ff ff ff ff 09 19 0b 00 00 00 00 00 ............ +4954 13.761466265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280055 12 22 717810 0 0x00000016 0 22 717810 0 16 00 00 00 f2 f3 0a 00 00 00 00 00 ............ +4956 13.761631489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280067 22 18 2067067 0 0x00000012 1 2067067 0 196609 0 12 00 00 00 7b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +4958 13.761966705 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302051 12 -1 717810 0 0xffffffff 0 -1 717810 0 ff ff ff ff f2 f3 0a 00 00 00 00 00 ............ +4960 13.771986723 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302063 12 34 727306 0 0x00000022 0 34 727306 0 22 00 00 00 0a 19 0b 00 00 00 00 00 """..........." +4962 13.772147655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302075 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283049984 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 df 10 02 00 00 00 00 00 36 c4 22 c3 9d 01 00 00 ".....!...o3...............6.""....." +4964 13.772282839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302109 12 67 727307 0 0x00000043 0 67 727307 0 43 00 00 00 0b 19 0b 00 00 00 00 00 C........... +4966 13.772366047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302121 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 df 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 f4 74 3e c9 ?.....3...|8...................=B.....&......... +4968 13.772425890 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280089 12 -1 727306 0 0xffffffff 0 -1 727306 0 ff ff ff ff 0a 19 0b 00 00 00 00 00 ............ +4970 13.772577286 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280101 12 -1 727307 0 0xffffffff 0 -1 727307 0 ff ff ff ff 0b 19 0b 00 00 00 00 00 ............ +4972 13.773432255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280113 12 52 717811 0 0x00000034 0 52 717811 0 34 00 00 00 f3 f3 0a 00 00 00 00 00 4........... +4974 13.773579597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280125 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 df 10 02 00 00 00 00 00 00 00 bb e1 a3 71 4d 01 00 00 "0...Dk.................L."".([..................q" +4976 13.773889065 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302188 12 -1 717811 0 0xffffffff 0 -1 717811 0 ff ff ff ff f3 f3 0a 00 00 00 00 00 ............ +4978 13.774968624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302200 12 30 727308 0 0x0000001e 0 30 727308 0 1e 00 00 00 0c 19 0b 00 00 00 00 00 ............ +4980 13.775104284 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302212 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1971519488 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......}........... +4982 13.775482416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280177 12 -1 727308 0 0xffffffff 0 -1 727308 0 ff ff ff ff 0c 19 0b 00 00 00 00 00 ............ +4984 13.775907516 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280189 12 26 717812 0 0x0000001a 0 26 717812 0 1a 00 00 00 f4 f3 0a 00 00 00 00 00 ............ +4986 13.776062965 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280201 26 22 2067069 0 0x00000016 1 2067069 0 196609 0 16 00 00 00 7d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....}..................... +4988 13.776293516 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302242 12 -1 717812 0 0xffffffff 0 -1 717812 0 ff ff ff ff f4 f3 0a 00 00 00 00 00 ............ +4990 13.863349915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302254 12 26 727309 0 0x0000001a 0 26 727309 0 1a 00 00 00 0d 19 0b 00 00 00 00 00 ............ +4992 13.863541365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302266 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1971388416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +4994 13.863976955 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280227 12 -1 727309 0 0xffffffff 0 -1 727309 0 ff ff ff ff 0d 19 0b 00 00 00 00 00 ............ +4996 13.864392757 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280239 12 22 717813 0 0x00000016 0 22 717813 0 16 00 00 00 f5 f3 0a 00 00 00 00 00 ............ +4998 13.864558935 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280251 22 18 2067071 0 0x00000012 1 2067071 0 196609 0 12 00 00 00 7f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5000 13.864878654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302292 12 -1 717813 0 0xffffffff 0 -1 717813 0 ff ff ff ff f5 f3 0a 00 00 00 00 00 ............ +5006 13.967997074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302304 12 26 727310 0 0x0000001a 0 26 727310 0 1a 00 00 00 0e 19 0b 00 00 00 00 00 ............ +5008 13.968187094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302316 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1971257344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5010 13.968494177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280273 12 -1 727310 0 0xffffffff 0 -1 727310 0 ff ff ff ff 0e 19 0b 00 00 00 00 00 ............ +5012 13.969065189 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280285 12 22 717814 0 0x00000016 0 22 717814 0 16 00 00 00 f6 f3 0a 00 00 00 00 00 ............ +5014 13.969298601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280297 22 18 2067073 0 0x00000012 1 2067073 0 196609 0 12 00 00 00 81 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5016 13.969651699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302342 12 -1 717814 0 0xffffffff 0 -1 717814 0 ff ff ff ff f6 f3 0a 00 00 00 00 00 ............ +5022 14.071318150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302354 12 26 727311 0 0x0000001a 0 26 727311 0 1a 00 00 00 0f 19 0b 00 00 00 00 00 ............ +5024 14.071493626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302366 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1971126272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5026 14.071816921 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280319 12 -1 727311 0 0xffffffff 0 -1 727311 0 ff ff ff ff 0f 19 0b 00 00 00 00 00 ............ +5028 14.072301865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280331 12 22 717815 0 0x00000016 0 22 717815 0 16 00 00 00 f7 f3 0a 00 00 00 00 00 ............ +5030 14.072462082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280343 22 18 2067075 0 0x00000012 1 2067075 0 196609 0 12 00 00 00 83 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5032 14.072979212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302392 12 -1 717815 0 0xffffffff 0 -1 717815 0 ff ff ff ff f7 f3 0a 00 00 00 00 00 ............ +5034 14.076550007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302404 12 101 727312 0 0x00000065 0 101 727312 0 65 00 00 00 10 19 0b 00 00 00 00 00 e........... +5036 14.076791525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302416 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e0 10 02 00 00 00 00 00 66 c5 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e0 10 02 00 00 00 00 ".....!...o3...............f."".....?.....3...|8.." +5038 14.077022552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280365 12 -1 727312 0 0xffffffff 0 -1 727312 0 ff ff ff ff 10 19 0b 00 00 00 00 00 ............ +5040 14.078351736 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280377 12 52 717816 0 0x00000034 0 52 717816 0 34 00 00 00 f8 f3 0a 00 00 00 00 00 4........... +5042 14.078509331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280389 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e0 10 02 00 00 00 00 00 00 00 07 66 d2 71 4d 01 00 00 "0...Dk.................L."".([................f.q" +5044 14.078815699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302517 12 -1 717816 0 0xffffffff 0 -1 717816 0 ff ff ff ff f8 f3 0a 00 00 00 00 00 ............ +5046 14.079801083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302529 12 30 727313 0 0x0000001e 0 30 727313 0 1e 00 00 00 11 19 0b 00 00 00 00 00 ............ +5048 14.079954863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302541 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1970995200 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 85 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5050 14.080230236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280441 12 -1 727313 0 0xffffffff 0 -1 727313 0 ff ff ff ff 11 19 0b 00 00 00 00 00 ............ +5052 14.080654860 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280453 12 26 717817 0 0x0000001a 0 26 717817 0 1a 00 00 00 f9 f3 0a 00 00 00 00 00 ............ +5054 14.080876589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280465 26 22 2067077 0 0x00000016 1 2067077 0 196609 0 16 00 00 00 85 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5056 14.081132650 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302571 12 -1 717817 0 0xffffffff 0 -1 717817 0 ff ff ff ff f9 f3 0a 00 00 00 00 00 ............ +5064 14.131993532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280491 12 -2 82567 82584 0xfffffffe 0 -2 82567 82584 fe ff ff ff 87 42 01 00 98 42 01 00 .....B...B.. +5068 14.174329281 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302583 12 26 727314 0 0x0000001a 0 26 727314 0 1a 00 00 00 12 19 0b 00 00 00 00 00 ............ +5070 14.174505949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302595 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1970864128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5072 14.174840927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280503 12 -1 727314 0 0xffffffff 0 -1 727314 0 ff ff ff ff 12 19 0b 00 00 00 00 00 ............ +5074 14.175485373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280515 12 22 717818 0 0x00000016 0 22 717818 0 16 00 00 00 fa f3 0a 00 00 00 00 00 ............ +5076 14.175645590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280527 22 18 2067079 0 0x00000012 1 2067079 0 196609 0 12 00 00 00 87 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5078 14.175866842 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302621 12 -1 717818 0 0xffffffff 0 -1 717818 0 ff ff ff ff fa f3 0a 00 00 00 00 00 ............ +5083 14.193999052 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302633 12 -2 82585 82567 0xfffffffe 0 -2 82585 82567 fe ff ff ff 99 42 01 00 87 42 01 00 .....B...B.. +5088 14.277109861 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302645 12 26 727315 0 0x0000001a 0 26 727315 0 1a 00 00 00 13 19 0b 00 00 00 00 00 ............ +5090 14.277278423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302657 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1970733056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5092 14.277609587 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280549 12 -1 727315 0 0xffffffff 0 -1 727315 0 ff ff ff ff 13 19 0b 00 00 00 00 00 ............ +5094 14.278094530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280561 12 22 717819 0 0x00000016 0 22 717819 0 16 00 00 00 fb f3 0a 00 00 00 00 00 ............ +5096 14.278255701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280573 22 18 2067081 0 0x00000012 1 2067081 0 196609 0 12 00 00 00 89 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5098 14.278634071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302683 12 -1 717819 0 0xffffffff 0 -1 717819 0 ff ff ff ff fb f3 0a 00 00 00 00 00 ............ +5104 14.381510258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302695 12 26 727316 0 0x0000001a 0 26 727316 0 1a 00 00 00 14 19 0b 00 00 00 00 00 ............ +5106 14.381704569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302707 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1970601984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5108 14.381841421 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302733 12 101 727317 0 0x00000065 0 101 727317 0 65 00 00 00 15 19 0b 00 00 00 00 00 e........... +5110 14.381969213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302745 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e1 10 02 00 00 00 00 00 97 c6 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e1 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +5112 14.382035494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280595 12 -1 727316 0 0xffffffff 0 -1 727316 0 ff ff ff ff 14 19 0b 00 00 00 00 00 ............ +5114 14.382211208 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280607 12 -1 727317 0 0xffffffff 0 -1 727317 0 ff ff ff ff 15 19 0b 00 00 00 00 00 ............ +5116 14.382436991 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280619 12 22 717820 0 0x00000016 0 22 717820 0 16 00 00 00 fc f3 0a 00 00 00 00 00 ............ +5118 14.382601738 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280631 22 18 2067083 0 0x00000012 1 2067083 0 196609 0 12 00 00 00 8b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5120 14.382880211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302846 12 -1 717820 0 0xffffffff 0 -1 717820 0 ff ff ff ff fc f3 0a 00 00 00 00 00 ............ +5122 14.383042336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280653 12 52 717821 0 0x00000034 0 52 717821 0 34 00 00 00 fd f3 0a 00 00 00 00 00 4........... +5124 14.383181334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280665 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e1 10 02 00 00 00 00 00 00 00 a3 e6 00 72 4d 01 00 00 "0...Dk.................L."".([..................r" +5126 14.383424282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302858 12 -1 717821 0 0xffffffff 0 -1 717821 0 ff ff ff ff fd f3 0a 00 00 00 00 00 ............ +5128 14.384255171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302870 12 30 727318 0 0x0000001e 0 30 727318 0 1e 00 00 00 16 19 0b 00 00 00 00 00 ............ +5130 14.384402752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302882 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1970470912 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8d 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5132 14.384707928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280717 12 -1 727318 0 0xffffffff 0 -1 727318 0 ff ff ff ff 16 19 0b 00 00 00 00 00 ............ +5134 14.385067225 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280729 12 26 717822 0 0x0000001a 0 26 717822 0 1a 00 00 00 fe f3 0a 00 00 00 00 00 ............ +5136 14.385206461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280741 26 22 2067085 0 0x00000016 1 2067085 0 196609 0 16 00 00 00 8d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5138 14.385456562 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302912 12 -1 717822 0 0xffffffff 0 -1 717822 0 ff ff ff ff fe f3 0a 00 00 00 00 00 ............ +5141 14.484864235 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302924 12 26 727319 0 0x0000001a 0 26 727319 0 1a 00 00 00 17 19 0b 00 00 00 00 00 ............ +5144 14.485060930 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302936 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1970339840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5146 14.485484600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280767 12 -1 727319 0 0xffffffff 0 -1 727319 0 ff ff ff ff 17 19 0b 00 00 00 00 00 ............ +5148 14.485885859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280779 12 22 717823 0 0x00000016 0 22 717823 0 16 00 00 00 ff f3 0a 00 00 00 00 00 ............ +5150 14.486053228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280791 22 18 2067087 0 0x00000012 1 2067087 0 196609 0 12 00 00 00 8f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5152 14.486403942 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302962 12 -1 717823 0 0xffffffff 0 -1 717823 0 ff ff ff ff ff f3 0a 00 00 00 00 00 ............ +5156 14.587526798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302974 12 26 727320 0 0x0000001a 0 26 727320 0 1a 00 00 00 18 19 0b 00 00 00 00 00 ............ +5158 14.587698698 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333302986 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1970208768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5160 14.588017464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280813 12 -1 727320 0 0xffffffff 0 -1 727320 0 ff ff ff ff 18 19 0b 00 00 00 00 00 ............ +5162 14.588395119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280825 12 22 717824 0 0x00000016 0 22 717824 0 16 00 00 00 00 f4 0a 00 00 00 00 00 ............ +5164 14.588551044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280837 22 18 2067089 0 0x00000012 1 2067089 0 196609 0 12 00 00 00 91 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5166 14.588938236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303012 12 -1 717824 0 0xffffffff 0 -1 717824 0 ff ff ff ff 00 f4 0a 00 00 00 00 00 ............ +5174 14.633106709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280859 12 -2 82568 82585 0xfffffffe 0 -2 82568 82585 fe ff ff ff 88 42 01 00 99 42 01 00 .....B...B.. +5180 14.687053442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303024 12 34 727321 0 0x00000022 0 34 727321 0 22 00 00 00 19 19 0b 00 00 00 00 00 """..........." +5181 14.687071085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303036 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283246592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e2 10 02 00 00 00 00 00 c8 c7 22 c3 9d 01 00 00 ".....!...o3.................""....." +5183 14.687371969 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303070 12 67 727322 0 0x00000043 0 67 727322 0 43 00 00 00 1a 19 0b 00 00 00 00 00 C........... +5184 14.687383413 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303082 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e2 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 0e 02 75 c9 ?.....3...|8...................=B.....&......... +5185 14.687428236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280871 12 -1 727321 0 0xffffffff 0 -1 727321 0 ff ff ff ff 19 19 0b 00 00 00 00 00 ............ +5188 14.687635660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280883 12 -1 727322 0 0xffffffff 0 -1 727322 0 ff ff ff ff 1a 19 0b 00 00 00 00 00 ............ +5190 14.688672066 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280895 12 52 717825 0 0x00000034 0 52 717825 0 34 00 00 00 01 f4 0a 00 00 00 00 00 4........... +5192 14.688831806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280907 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e2 10 02 00 00 00 00 00 00 00 65 87 2f 72 4d 01 00 00 "0...Dk.................L."".([...............e./r" +5194 14.689144611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303149 12 -1 717825 0 0xffffffff 0 -1 717825 0 ff ff ff ff 01 f4 0a 00 00 00 00 00 ............ +5195 14.689858437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303161 12 30 727323 0 0x0000001e 0 30 727323 0 1e 00 00 00 1b 19 0b 00 00 00 00 00 ............ +5196 14.690022945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303173 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1970077696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5197 14.690229893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280959 12 -1 727323 0 0xffffffff 0 -1 727323 0 ff ff ff ff 1b 19 0b 00 00 00 00 00 ............ +5198 14.690337896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303203 38 26 727324 0 0x0000001a 0 26 727324 0 22 1a 00 00 00 1c 19 0b 00 00 00 00 00 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 8a 1f 00 00 00 00 00 ................T.c@.^1@.............. +5199 14.690673828 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280971 12 48 717826 0 0x00000030 0 48 717826 0 30 00 00 00 02 f4 0a 00 00 00 00 00 0........... +5201 14.690846682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377280983 48 22 2067091 0 0x00000016 0 22 2067091 0 196609 16 00 00 00 93 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 12 00 00 00 95 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ................................................ +5203 14.691130877 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303241 12 -1 717826 0 0xffffffff 0 -1 717826 0 ff ff ff ff 02 f4 0a 00 00 00 00 00 ............ +5204 14.691153288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281031 12 -1 727324 0 0xffffffff 0 -1 727324 0 ff ff ff ff 1c 19 0b 00 00 00 00 00 ............ +5207 14.695402384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303253 12 -2 82586 82568 0xfffffffe 0 -2 82586 82568 fe ff ff ff 9a 42 01 00 88 42 01 00 .....B...B.. +5210 14.792674065 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303265 12 26 727325 0 0x0000001a 0 26 727325 0 1a 00 00 00 1d 19 0b 00 00 00 00 00 ............ +5214 14.793024540 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303277 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1969815552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5216 14.793385744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281043 12 -1 727325 0 0xffffffff 0 -1 727325 0 ff ff ff ff 1d 19 0b 00 00 00 00 00 ............ +5218 14.793804169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281055 12 22 717827 0 0x00000016 0 22 717827 0 16 00 00 00 03 f4 0a 00 00 00 00 00 ............ +5220 14.793996811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281067 22 18 2067095 0 0x00000012 1 2067095 0 196609 0 12 00 00 00 97 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5224 14.794307232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303303 12 -1 717827 0 0xffffffff 0 -1 717827 0 ff ff ff ff 03 f4 0a 00 00 00 00 00 ............ +5238 14.895813465 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303315 12 26 727326 0 0x0000001a 0 26 727326 0 1a 00 00 00 1e 19 0b 00 00 00 00 00 ............ +5240 14.896014214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303327 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1969684480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5242 14.896405458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281089 12 -1 727326 0 0xffffffff 0 -1 727326 0 ff ff ff ff 1e 19 0b 00 00 00 00 00 ............ +5244 14.896779299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281101 12 22 717828 0 0x00000016 0 22 717828 0 16 00 00 00 04 f4 0a 00 00 00 00 00 ............ +5246 14.896936893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281113 22 18 2067097 0 0x00000012 1 2067097 0 196609 0 12 00 00 00 99 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5248 14.897340775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303353 12 -1 717828 0 0xffffffff 0 -1 717828 0 ff ff ff ff 04 f4 0a 00 00 00 00 00 ............ +5252 14.992277384 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303365 12 34 727327 0 0x00000022 0 34 727327 0 22 00 00 00 1f 19 0b 00 00 00 00 00 """..........." +5254 14.992469072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303377 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283312128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e3 10 02 00 00 00 00 00 f9 c8 22 c3 9d 01 00 00 ".....!...o3.................""....." +5256 14.992612362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303411 12 67 727328 0 0x00000043 0 67 727328 0 43 00 00 00 20 19 0b 00 00 00 00 00 C... ....... +5258 14.992699623 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303423 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 ea 24 87 c9 ?.....3...|8...................=B.....&......... +5260 14.993065834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281135 12 -1 727327 0 0xffffffff 0 -1 727327 0 ff ff ff ff 1f 19 0b 00 00 00 00 00 ............ +5262 14.993283272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281147 12 -1 727328 0 0xffffffff 0 -1 727328 0 ff ff ff ff 20 19 0b 00 00 00 00 00 .... ....... +5264 14.993827343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281159 12 52 717829 0 0x00000034 0 52 717829 0 34 00 00 00 05 f4 0a 00 00 00 00 00 4........... +5266 14.994000912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281171 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e3 10 02 00 00 00 00 00 00 00 16 18 5e 72 4d 01 00 00 "0...Dk.................L."".([.................^r" +5268 14.994324207 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303490 12 -1 717829 0 0xffffffff 0 -1 717829 0 ff ff ff ff 05 f4 0a 00 00 00 00 00 ............ +5270 14.995170116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303502 12 30 727329 0 0x0000001e 0 30 727329 0 1e 00 00 00 21 19 0b 00 00 00 00 00 ....!....... +5272 14.995329380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303514 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1969553408 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5274 14.995518446 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281223 12 -1 727329 0 0xffffffff 0 -1 727329 0 ff ff ff ff 21 19 0b 00 00 00 00 00 ....!....... +5277 14.995927811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281235 12 26 717830 0 0x0000001a 0 26 717830 0 1a 00 00 00 06 f4 0a 00 00 00 00 00 ............ +5280 14.996091127 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281247 26 22 2067099 0 0x00000016 1 2067099 0 196609 0 16 00 00 00 9b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5282 14.996477127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303544 12 -1 717830 0 0xffffffff 0 -1 717830 0 ff ff ff ff 06 f4 0a 00 00 00 00 00 ............ +5284 14.999748468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303556 12 26 727330 0 0x0000001a 0 26 727330 0 1a 00 00 00 22 19 0b 00 00 00 00 00 "....""......." +5286 14.999893427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303568 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1969422336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5288 15.000164747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281273 12 -1 727330 0 0xffffffff 0 -1 727330 0 ff ff ff ff 22 19 0b 00 00 00 00 00 "....""......." +5290 15.000704527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281285 12 22 717831 0 0x00000016 0 22 717831 0 16 00 00 00 07 f4 0a 00 00 00 00 00 ............ +5292 15.000846148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281297 22 18 2067101 0 0x00000012 1 2067101 0 196609 0 12 00 00 00 9d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5294 15.001112938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303594 12 -1 717831 0 0xffffffff 0 -1 717831 0 ff ff ff ff 07 f4 0a 00 00 00 00 00 ............ +5296 15.102721453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303606 12 26 727331 0 0x0000001a 0 26 727331 0 1a 00 00 00 23 19 0b 00 00 00 00 00 ....#....... +5298 15.102983475 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303618 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1969291264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5300 15.103329420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281319 12 -1 727331 0 0xffffffff 0 -1 727331 0 ff ff ff ff 23 19 0b 00 00 00 00 00 ....#....... +5302 15.103751659 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281331 12 22 717832 0 0x00000016 0 22 717832 0 16 00 00 00 08 f4 0a 00 00 00 00 00 ............ +5304 15.103948832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281343 22 18 2067103 0 0x00000012 1 2067103 0 196609 0 12 00 00 00 9f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5306 15.104225636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303644 12 -1 717832 0 0xffffffff 0 -1 717832 0 ff ff ff ff 08 f4 0a 00 00 00 00 00 ............ +5314 15.134290695 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281365 12 -2 82569 82586 0xfffffffe 0 -2 82569 82586 fe ff ff ff 89 42 01 00 9a 42 01 00 .....B...B.. +5320 15.197448492 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303656 12 -2 82587 82569 0xfffffffe 0 -2 82587 82569 fe ff ff ff 9b 42 01 00 89 42 01 00 .....B...B.. +5324 15.205549955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303668 12 26 727332 0 0x0000001a 0 26 727332 0 1a 00 00 00 24 19 0b 00 00 00 00 00 ....$....... +5326 15.205723763 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303680 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1969160192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5328 15.206078768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281377 12 -1 727332 0 0xffffffff 0 -1 727332 0 ff ff ff ff 24 19 0b 00 00 00 00 00 ....$....... +5330 15.206459045 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281389 12 22 717833 0 0x00000016 0 22 717833 0 16 00 00 00 09 f4 0a 00 00 00 00 00 ............ +5332 15.206621885 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281401 22 18 2067105 0 0x00000012 1 2067105 0 196609 0 12 00 00 00 a1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5334 15.206971645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303706 12 -1 717833 0 0xffffffff 0 -1 717833 0 ff ff ff ff 09 f4 0a 00 00 00 00 00 ............ +5337 15.296344995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303718 12 34 727333 0 0x00000022 0 34 727333 0 22 00 00 00 25 19 0b 00 00 00 00 00 """...%......." +5339 15.296532869 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303730 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283377664 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e4 10 02 00 00 00 00 00 2a ca 22 c3 9d 01 00 00 ".....!...o3...............*.""....." +5341 15.296669006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303764 12 67 727334 0 0x00000043 0 67 727334 0 43 00 00 00 26 19 0b 00 00 00 00 00 C...&....... +5343 15.296755075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303776 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e4 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 20 70 4f 99 c9 ?.....3...|8...................=B.....&......... +5345 15.296865702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281423 12 -1 727333 0 0xffffffff 0 -1 727333 0 ff ff ff ff 25 19 0b 00 00 00 00 00 ....%....... +5347 15.297091722 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281435 12 -1 727334 0 0xffffffff 0 -1 727334 0 ff ff ff ff 26 19 0b 00 00 00 00 00 ....&....... +5349 15.298134089 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281447 12 52 717834 0 0x00000034 0 52 717834 0 34 00 00 00 0a f4 0a 00 00 00 00 00 4........... +5351 15.298297644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281459 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e4 10 02 00 00 00 00 00 00 00 5d 85 8c 72 4d 01 00 00 "0...Dk.................L."".([...............]..r" +5353 15.298792362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303843 12 -1 717834 0 0xffffffff 0 -1 717834 0 ff ff ff ff 0a f4 0a 00 00 00 00 00 ............ +5355 15.299432039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303855 12 30 727335 0 0x0000001e 0 30 727335 0 1e 00 00 00 27 19 0b 00 00 00 00 00 ....'....... +5357 15.299572468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303867 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1969029120 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5359 15.299852610 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281511 12 -1 727335 0 0xffffffff 0 -1 727335 0 ff ff ff ff 27 19 0b 00 00 00 00 00 ....'....... +5361 15.300274372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281523 12 26 717835 0 0x0000001a 0 26 717835 0 1a 00 00 00 0b f4 0a 00 00 00 00 00 ............ +5363 15.300417900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281535 26 22 2067107 0 0x00000016 1 2067107 0 196609 0 16 00 00 00 a3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5365 15.300679445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303897 12 -1 717835 0 0xffffffff 0 -1 717835 0 ff ff ff ff 0b f4 0a 00 00 00 00 00 ............ +5367 15.308458805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303909 12 26 727336 0 0x0000001a 0 26 727336 0 1a 00 00 00 28 19 0b 00 00 00 00 00 ....(....... +5369 15.308631659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303921 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1968898048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5371 15.308858156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281561 12 -1 727336 0 0xffffffff 0 -1 727336 0 ff ff ff ff 28 19 0b 00 00 00 00 00 ....(....... +5373 15.309308052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281573 12 22 717836 0 0x00000016 0 22 717836 0 16 00 00 00 0c f4 0a 00 00 00 00 00 ............ +5375 15.309451342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281585 22 18 2067109 0 0x00000012 1 2067109 0 196609 0 12 00 00 00 a5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5377 15.309755325 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303947 12 -1 717836 0 0xffffffff 0 -1 717836 0 ff ff ff ff 0c f4 0a 00 00 00 00 00 ............ +5384 15.410776377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303959 12 26 727337 0 0x0000001a 0 26 727337 0 1a 00 00 00 29 19 0b 00 00 00 00 00 ....)....... +5386 15.411044359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303971 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1968766976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5388 15.411289454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281607 12 -1 727337 0 0xffffffff 0 -1 727337 0 ff ff ff ff 29 19 0b 00 00 00 00 00 ....)....... +5390 15.411821842 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281619 12 22 717837 0 0x00000016 0 22 717837 0 16 00 00 00 0d f4 0a 00 00 00 00 00 ............ +5392 15.412014246 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281631 22 18 2067111 0 0x00000012 1 2067111 0 196609 0 12 00 00 00 a7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5394 15.412318230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333303997 12 -1 717837 0 0xffffffff 0 -1 717837 0 ff ff ff ff 0d f4 0a 00 00 00 00 00 ............ +5401 15.514916420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304009 12 26 727338 0 0x0000001a 0 26 727338 0 1a 00 00 00 2a 19 0b 00 00 00 00 00 ....*....... +5403 15.515096903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304021 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1968635904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5405 15.515502453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281653 12 -1 727338 0 0xffffffff 0 -1 727338 0 ff ff ff ff 2a 19 0b 00 00 00 00 00 ....*....... +5407 15.515863657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281665 12 22 717838 0 0x00000016 0 22 717838 0 16 00 00 00 0e f4 0a 00 00 00 00 00 ............ +5409 15.516024113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281677 22 18 2067113 0 0x00000012 1 2067113 0 196609 0 12 00 00 00 a9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5411 15.516245365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304047 12 -1 717838 0 0xffffffff 0 -1 717838 0 ff ff ff ff 0e f4 0a 00 00 00 00 00 ............ +5416 15.601740122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304059 12 34 727339 0 0x00000022 0 34 727339 0 22 00 00 00 2b 19 0b 00 00 00 00 00 """...+......." +5418 15.601930141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304071 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283443200 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e5 10 02 00 00 00 00 00 5b cb 22 c3 9d 01 00 00 ".....!...o3...............[.""....." +5420 15.602018833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304105 12 67 727340 0 0x00000043 0 67 727340 0 43 00 00 00 2c 19 0b 00 00 00 00 00 C...,....... +5422 15.602102995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304117 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e5 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 8b 82 ab c9 ?.....3...|8...................=B.....&......... +5423 15.602181435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281699 12 -1 727339 0 0xffffffff 0 -1 727339 0 ff ff ff ff 2b 19 0b 00 00 00 00 00 ....+....... +5424 15.602316856 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281711 12 -1 727340 0 0xffffffff 0 -1 727340 0 ff ff ff ff 2c 19 0b 00 00 00 00 00 ....,....... +5427 15.603473663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281723 12 52 717839 0 0x00000034 0 52 717839 0 34 00 00 00 0f f4 0a 00 00 00 00 00 4........... +5429 15.603649855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281735 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e5 10 02 00 00 00 00 00 00 00 94 1c bb 72 4d 01 00 00 "0...Dk.................L."".([..................r" +5431 15.604015350 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304184 12 -1 717839 0 0xffffffff 0 -1 717839 0 ff ff ff ff 0f f4 0a 00 00 00 00 00 ............ +5432 15.605046749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304196 12 30 727341 0 0x0000001e 0 30 727341 0 1e 00 00 00 2d 19 0b 00 00 00 00 00 ....-....... +5433 15.605184555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304208 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1968504832 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5434 15.605532885 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281787 12 -1 727341 0 0xffffffff 0 -1 727341 0 ff ff ff ff 2d 19 0b 00 00 00 00 00 ....-....... +5436 15.605858326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281799 12 26 717840 0 0x0000001a 0 26 717840 0 1a 00 00 00 10 f4 0a 00 00 00 00 00 ............ +5438 15.606020212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281811 26 22 2067115 0 0x00000016 1 2067115 0 196609 0 16 00 00 00 ab 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5440 15.606281519 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304238 12 -1 717840 0 0xffffffff 0 -1 717840 0 ff ff ff ff 10 f4 0a 00 00 00 00 00 ............ +5442 15.617884159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304250 12 26 727342 0 0x0000001a 0 26 727342 0 1a 00 00 00 2e 19 0b 00 00 00 00 00 ............ +5444 15.618348598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304262 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1968373760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5446 15.618665218 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281837 12 -1 727342 0 0xffffffff 0 -1 727342 0 ff ff ff ff 2e 19 0b 00 00 00 00 00 ............ +5448 15.619159460 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281849 12 22 717841 0 0x00000016 0 22 717841 0 16 00 00 00 11 f4 0a 00 00 00 00 00 ............ +5450 15.619363546 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281861 22 18 2067117 0 0x00000012 1 2067117 0 196609 0 12 00 00 00 ad 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5452 15.619688988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304288 12 -1 717841 0 0xffffffff 0 -1 717841 0 ff ff ff ff 11 f4 0a 00 00 00 00 00 ............ +5460 15.635017633 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281883 12 -2 82570 82587 0xfffffffe 0 -2 82570 82587 fe ff ff ff 8a 42 01 00 9b 42 01 00 .....B...B.. +5467 15.698601961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304300 12 -2 82588 82570 0xfffffffe 0 -2 82588 82570 fe ff ff ff 9c 42 01 00 8a 42 01 00 .....B...B.. +5471 15.721021652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304312 12 26 727343 0 0x0000001a 0 26 727343 0 1a 00 00 00 2f 19 0b 00 00 00 00 00 ..../....... +5473 15.721204996 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304324 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1968242688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5475 15.721722841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281895 12 -1 727343 0 0xffffffff 0 -1 727343 0 ff ff ff ff 2f 19 0b 00 00 00 00 00 ..../....... +5477 15.721961260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281907 12 22 717842 0 0x00000016 0 22 717842 0 16 00 00 00 12 f4 0a 00 00 00 00 00 ............ +5479 15.722123146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281919 22 18 2067119 0 0x00000012 1 2067119 0 196609 0 12 00 00 00 af 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5481 15.722377539 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304350 12 -1 717842 0 0xffffffff 0 -1 717842 0 ff ff ff ff 12 f4 0a 00 00 00 00 00 ............ +5484 15.824308872 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304362 12 26 727344 0 0x0000001a 0 26 727344 0 1a 00 00 00 30 19 0b 00 00 00 00 00 ....0....... +5486 15.824510336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304374 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1968111616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5488 15.824774981 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281941 12 -1 727344 0 0xffffffff 0 -1 727344 0 ff ff ff ff 30 19 0b 00 00 00 00 00 ....0....... +5490 15.825223684 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281953 12 22 717843 0 0x00000016 0 22 717843 0 16 00 00 00 13 f4 0a 00 00 00 00 00 ............ +5492 15.825436354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281965 22 18 2067121 0 0x00000012 1 2067121 0 196609 0 12 00 00 00 b1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5494 15.825706244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304400 12 -1 717843 0 0xffffffff 0 -1 717843 0 ff ff ff ff 13 f4 0a 00 00 00 00 00 ............ +5501 15.906125069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304412 12 101 727345 0 0x00000065 0 101 727345 0 65 00 00 00 31 19 0b 00 00 00 00 00 e...1....... +5503 15.906352997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304424 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e6 10 02 00 00 00 00 00 8b cc 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e6 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +5505 15.906780243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281987 12 -1 727345 0 0xffffffff 0 -1 727345 0 ff ff ff ff 31 19 0b 00 00 00 00 00 ....1....... +5507 15.907769918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377281999 12 52 717844 0 0x00000034 0 52 717844 0 34 00 00 00 14 f4 0a 00 00 00 00 00 4........... +5509 15.907932043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282011 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e6 10 02 00 00 00 00 00 00 00 9b 8a e9 72 4d 01 00 00 "0...Dk.................L."".([..................r" +5511 15.908274412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304525 12 -1 717844 0 0xffffffff 0 -1 717844 0 ff ff ff ff 14 f4 0a 00 00 00 00 00 ............ +5513 15.909056664 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304537 12 30 727346 0 0x0000001e 0 30 727346 0 1e 00 00 00 32 19 0b 00 00 00 00 00 ....2....... +5515 15.909201860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304549 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1967980544 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5517 15.909487963 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282063 12 -1 727346 0 0xffffffff 0 -1 727346 0 ff ff ff ff 32 19 0b 00 00 00 00 00 ....2....... +5519 15.909853458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282075 12 26 717845 0 0x0000001a 0 26 717845 0 1a 00 00 00 15 f4 0a 00 00 00 00 00 ............ +5521 15.909995079 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282087 26 22 2067123 0 0x00000016 1 2067123 0 196609 0 16 00 00 00 b3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5523 15.910242081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304579 12 -1 717845 0 0xffffffff 0 -1 717845 0 ff ff ff ff 15 f4 0a 00 00 00 00 00 ............ +5525 15.927200079 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304591 12 26 727347 0 0x0000001a 0 26 727347 0 1a 00 00 00 33 19 0b 00 00 00 00 00 ....3....... +5527 15.927369595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304603 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1967849472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5529 15.927742243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282113 12 -1 727347 0 0xffffffff 0 -1 727347 0 ff ff ff ff 33 19 0b 00 00 00 00 00 ....3....... +5531 15.928181648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282125 12 22 717846 0 0x00000016 0 22 717846 0 16 00 00 00 16 f4 0a 00 00 00 00 00 ............ +5533 15.928325176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282137 22 18 2067125 0 0x00000012 1 2067125 0 196609 0 12 00 00 00 b5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5535 15.928588867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304629 12 -1 717846 0 0xffffffff 0 -1 717846 0 ff ff ff ff 16 f4 0a 00 00 00 00 00 ............ +5542 16.031563282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304641 12 26 727348 0 0x0000001a 0 26 727348 0 1a 00 00 00 34 19 0b 00 00 00 00 00 ....4....... +5544 16.031740665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304653 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1967718400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5546 16.032034397 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282159 12 -1 727348 0 0xffffffff 0 -1 727348 0 ff ff ff ff 34 19 0b 00 00 00 00 00 ....4....... +5548 16.032530785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282171 12 22 717847 0 0x00000016 0 22 717847 0 16 00 00 00 17 f4 0a 00 00 00 00 00 ............ +5550 16.032690525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282183 22 18 2067127 0 0x00000012 1 2067127 0 196609 0 12 00 00 00 b7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5552 16.032995462 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304679 12 -1 717847 0 0xffffffff 0 -1 717847 0 ff ff ff ff 17 f4 0a 00 00 00 00 00 ............ +5561 16.134211779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304691 12 26 727349 0 0x0000001a 0 26 727349 0 1a 00 00 00 35 19 0b 00 00 00 00 00 ....5....... +5563 16.134393692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304703 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1967587328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5565 16.134804487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282205 12 -1 727349 0 0xffffffff 0 -1 727349 0 ff ff ff ff 35 19 0b 00 00 00 00 00 ....5....... +5567 16.135310888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282217 12 22 717848 0 0x00000016 0 22 717848 0 16 00 00 00 18 f4 0a 00 00 00 00 00 ............ +5569 16.135504484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282229 22 18 2067129 0 0x00000012 1 2067129 0 196609 0 12 00 00 00 b9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5571 16.135824203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304729 12 -1 717848 0 0xffffffff 0 -1 717848 0 ff ff ff ff 18 f4 0a 00 00 00 00 00 ............ +5573 16.136265039 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282251 12 -2 82571 82588 0xfffffffe 0 -2 82571 82588 fe ff ff ff 8b 42 01 00 9c 42 01 00 .....B...B.. +5579 16.199705839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304741 12 -2 82589 82571 0xfffffffe 0 -2 82589 82571 fe ff ff ff 9d 42 01 00 8b 42 01 00 .....B...B.. +5583 16.210539341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304753 12 101 727350 0 0x00000065 0 101 727350 0 65 00 00 00 36 19 0b 00 00 00 00 00 e...6....... +5585 16.210795641 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304765 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e7 10 02 00 00 00 00 00 bb cd 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e7 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +5587 16.211151361 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282263 12 -1 727350 0 0xffffffff 0 -1 727350 0 ff ff ff ff 36 19 0b 00 00 00 00 00 ....6....... +5589 16.214382648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282275 12 52 717849 0 0x00000034 0 52 717849 0 34 00 00 00 19 f4 0a 00 00 00 00 00 4........... +5591 16.214614868 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282287 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e7 10 02 00 00 00 00 00 00 00 ee 55 18 73 4d 01 00 00 "0...Dk.................L."".([................U.s" +5593 16.214899778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304866 12 -1 717849 0 0xffffffff 0 -1 717849 0 ff ff ff ff 19 f4 0a 00 00 00 00 00 ............ +5595 16.215985298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304878 12 30 727351 0 0x0000001e 0 30 727351 0 1e 00 00 00 37 19 0b 00 00 00 00 00 ....7....... +5597 16.216160059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304890 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1967456256 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5599 16.216503859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282339 12 -1 727351 0 0xffffffff 0 -1 727351 0 ff ff ff ff 37 19 0b 00 00 00 00 00 ....7....... +5601 16.216917038 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282351 12 26 717850 0 0x0000001a 0 26 717850 0 1a 00 00 00 1a f4 0a 00 00 00 00 00 ............ +5603 16.217065334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282363 26 22 2067131 0 0x00000016 1 2067131 0 196609 0 16 00 00 00 bb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5605 16.217405558 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304920 12 -1 717850 0 0xffffffff 0 -1 717850 0 ff ff ff ff 1a f4 0a 00 00 00 00 00 ............ +5608 16.236715555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304932 12 26 727352 0 0x0000001a 0 26 727352 0 1a 00 00 00 38 19 0b 00 00 00 00 00 ....8....... +5610 16.236903429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304944 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1967325184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5612 16.237233400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282389 12 -1 727352 0 0xffffffff 0 -1 727352 0 ff ff ff ff 38 19 0b 00 00 00 00 00 ....8....... +5614 16.237838507 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282401 12 22 717851 0 0x00000016 0 22 717851 0 16 00 00 00 1b f4 0a 00 00 00 00 00 ............ +5616 16.238010406 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282413 22 18 2067133 0 0x00000012 1 2067133 0 196609 0 12 00 00 00 bd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5618 16.238286734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304970 12 -1 717851 0 0xffffffff 0 -1 717851 0 ff ff ff ff 1b f4 0a 00 00 00 00 00 ............ +5620 16.340170860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304982 12 26 727353 0 0x0000001a 0 26 727353 0 1a 00 00 00 39 19 0b 00 00 00 00 00 ....9....... +5622 16.340358734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333304994 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1967194112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5624 16.340725422 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282435 12 -1 727353 0 0xffffffff 0 -1 727353 0 ff ff ff ff 39 19 0b 00 00 00 00 00 ....9....... +5626 16.341194630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282447 12 22 717852 0 0x00000016 0 22 717852 0 16 00 00 00 1c f4 0a 00 00 00 00 00 ............ +5628 16.341368437 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282459 22 18 2067135 0 0x00000012 1 2067135 0 196609 0 12 00 00 00 bf 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5630 16.342094183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305020 12 -1 717852 0 0xffffffff 0 -1 717852 0 ff ff ff ff 1c f4 0a 00 00 00 00 00 ............ +5645 16.443053961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305032 12 26 727354 0 0x0000001a 0 26 727354 0 1a 00 00 00 3a 19 0b 00 00 00 00 00 ....:....... +5647 16.443227768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305044 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1967063040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5649 16.443518877 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282481 12 -1 727354 0 0xffffffff 0 -1 727354 0 ff ff ff ff 3a 19 0b 00 00 00 00 00 ....:....... +5651 16.444050550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282493 12 22 717853 0 0x00000016 0 22 717853 0 16 00 00 00 1d f4 0a 00 00 00 00 00 ............ +5653 16.444222450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282505 22 18 2067137 0 0x00000012 1 2067137 0 196609 0 12 00 00 00 c1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5655 16.444480419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305070 12 -1 717853 0 0xffffffff 0 -1 717853 0 ff ff ff ff 1d f4 0a 00 00 00 00 00 ............ +5662 16.517627239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305082 12 101 727355 0 0x00000065 0 101 727355 0 65 00 00 00 3b 19 0b 00 00 00 00 00 e...;....... +5664 16.517856598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305094 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e8 10 02 00 00 00 00 00 ef ce 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e8 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +5666 16.518374920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282527 12 -1 727355 0 0xffffffff 0 -1 727355 0 ff ff ff ff 3b 19 0b 00 00 00 00 00 ....;....... +5668 16.519114256 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282539 12 52 717854 0 0x00000034 0 52 717854 0 34 00 00 00 1e f4 0a 00 00 00 00 00 4........... +5670 16.519279242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282551 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e8 10 02 00 00 00 00 00 00 00 82 d5 46 73 4d 01 00 00 "0...Dk.................L."".([.................Fs" +5672 16.519560575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305195 12 -1 717854 0 0xffffffff 0 -1 717854 0 ff ff ff ff 1e f4 0a 00 00 00 00 00 ............ +5674 16.520364761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305207 12 30 727356 0 0x0000001e 0 30 727356 0 1e 00 00 00 3c 19 0b 00 00 00 00 00 ....<....... +5676 16.520524502 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305219 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1966931968 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5678 16.520838737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282603 12 -1 727356 0 0xffffffff 0 -1 727356 0 ff ff ff ff 3c 19 0b 00 00 00 00 00 ....<....... +5680 16.521285057 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282615 12 26 717855 0 0x0000001a 0 26 717855 0 1a 00 00 00 1f f4 0a 00 00 00 00 00 ............ +5682 16.521436214 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282627 26 22 2067139 0 0x00000016 1 2067139 0 196609 0 16 00 00 00 c3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5684 16.521705389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305249 12 -1 717855 0 0xffffffff 0 -1 717855 0 ff ff ff ff 1f f4 0a 00 00 00 00 00 ............ +5686 16.546403885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305261 12 26 727357 0 0x0000001a 0 26 727357 0 1a 00 00 00 3d 19 0b 00 00 00 00 00 ....=....... +5688 16.546566725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305273 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1966800896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5690 16.546893597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282653 12 -1 727357 0 0xffffffff 0 -1 727357 0 ff ff ff ff 3d 19 0b 00 00 00 00 00 ....=....... +5692 16.547194719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282665 12 22 717856 0 0x00000016 0 22 717856 0 16 00 00 00 20 f4 0a 00 00 00 00 00 .... ....... +5694 16.547364235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282677 22 18 2067141 0 0x00000012 1 2067141 0 196609 0 12 00 00 00 c5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5696 16.547686338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305299 12 -1 717856 0 0xffffffff 0 -1 717856 0 ff ff ff ff 20 f4 0a 00 00 00 00 00 .... ....... +5704 16.636146307 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282699 12 -2 82572 82589 0xfffffffe 0 -2 82572 82589 fe ff ff ff 8c 42 01 00 9d 42 01 00 .....B...B.. +5708 16.649590254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305311 12 26 727358 0 0x0000001a 0 26 727358 0 1a 00 00 00 3e 19 0b 00 00 00 00 00 ....>....... +5710 16.649758101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305323 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1966669824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5712 16.650130987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282711 12 -1 727358 0 0xffffffff 0 -1 727358 0 ff ff ff ff 3e 19 0b 00 00 00 00 00 ....>....... +5714 16.650837421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282723 12 22 717857 0 0x00000016 0 22 717857 0 16 00 00 00 21 f4 0a 00 00 00 00 00 ....!....... +5716 16.650985718 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282735 22 18 2067143 0 0x00000012 1 2067143 0 196609 0 12 00 00 00 c7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5718 16.651292801 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305349 12 -1 717857 0 0xffffffff 0 -1 717857 0 ff ff ff ff 21 f4 0a 00 00 00 00 00 ....!....... +5742 16.701551914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305361 12 -2 82590 82572 0xfffffffe 0 -2 82590 82572 fe ff ff ff 9e 42 01 00 8c 42 01 00 .....B...B.. +5756 16.752706528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305373 12 26 727359 0 0x0000001a 0 26 727359 0 1a 00 00 00 3f 19 0b 00 00 00 00 00 ....?....... +5758 16.752889395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305385 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1966538752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5760 16.753277302 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282757 12 -1 727359 0 0xffffffff 0 -1 727359 0 ff ff ff ff 3f 19 0b 00 00 00 00 00 ....?....... +5762 16.753730536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282769 12 22 717858 0 0x00000016 0 22 717858 0 16 00 00 00 22 f4 0a 00 00 00 00 00 "....""......." +5764 16.753887415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282781 22 18 2067145 0 0x00000012 1 2067145 0 196609 0 12 00 00 00 c9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5766 16.754135132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305411 12 -1 717858 0 0xffffffff 0 -1 717858 0 ff ff ff ff 22 f4 0a 00 00 00 00 00 "....""......." +5768 16.822273731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305423 12 34 727360 0 0x00000022 0 34 727360 0 22 00 00 00 40 19 0b 00 00 00 00 00 """...@......." +5770 16.822495222 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305435 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283705344 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 e9 10 02 00 00 00 00 00 20 d0 22 c3 9d 01 00 00 ".....!...o3............... .""....." +5772 16.822683096 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305469 12 67 727361 0 0x00000043 0 67 727361 0 43 00 00 00 41 19 0b 00 00 00 00 00 C...A....... +5774 16.822770357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305481 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 e9 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 95 43 f4 c9 ?.....3...|8...................=B.....&......... +5776 16.822905064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282803 12 -1 727360 0 0xffffffff 0 -1 727360 0 ff ff ff ff 40 19 0b 00 00 00 00 00 ....@....... +5778 16.823111057 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282815 12 -1 727361 0 0xffffffff 0 -1 727361 0 ff ff ff ff 41 19 0b 00 00 00 00 00 ....A....... +5780 16.824179649 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282827 12 52 717859 0 0x00000034 0 52 717859 0 34 00 00 00 23 f4 0a 00 00 00 00 00 4...#....... +5782 16.824384928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282839 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 e9 10 02 00 00 00 00 00 00 00 da 62 75 73 4d 01 00 00 "0...Dk.................L."".([................bus" +5784 16.824773550 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305548 12 -1 717859 0 0xffffffff 0 -1 717859 0 ff ff ff ff 23 f4 0a 00 00 00 00 00 ....#....... +5786 16.825536489 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305560 12 30 727362 0 0x0000001e 0 30 727362 0 1e 00 00 00 42 19 0b 00 00 00 00 00 ....B....... +5788 16.825695038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305572 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1966407680 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5790 16.826140165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282891 12 -1 727362 0 0xffffffff 0 -1 727362 0 ff ff ff ff 42 19 0b 00 00 00 00 00 ....B....... +5792 16.826408386 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282903 12 26 717860 0 0x0000001a 0 26 717860 0 1a 00 00 00 24 f4 0a 00 00 00 00 00 ....$....... +5794 16.826631784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282915 26 22 2067147 0 0x00000016 1 2067147 0 196609 0 16 00 00 00 cb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5796 16.827013731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305602 12 -1 717860 0 0xffffffff 0 -1 717860 0 ff ff ff ff 24 f4 0a 00 00 00 00 00 ....$....... +5798 16.855489969 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305614 12 26 727363 0 0x0000001a 0 26 727363 0 1a 00 00 00 43 19 0b 00 00 00 00 00 ....C....... +5800 16.855669498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305626 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1966276608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5802 16.856054068 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282941 12 -1 727363 0 0xffffffff 0 -1 727363 0 ff ff ff ff 43 19 0b 00 00 00 00 00 ....C....... +5804 16.856557846 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282953 12 22 717861 0 0x00000016 0 22 717861 0 16 00 00 00 25 f4 0a 00 00 00 00 00 ....%....... +5806 16.856717587 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282965 22 18 2067149 0 0x00000012 1 2067149 0 196609 0 12 00 00 00 cd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5808 16.857044935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305652 12 -1 717861 0 0xffffffff 0 -1 717861 0 ff ff ff ff 25 f4 0a 00 00 00 00 00 ....%....... +5848 16.958849192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305664 12 26 727364 0 0x0000001a 0 26 727364 0 1a 00 00 00 44 19 0b 00 00 00 00 00 ....D....... +5850 16.959024668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305676 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1966145536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5852 16.959413290 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282987 12 -1 727364 0 0xffffffff 0 -1 727364 0 ff ff ff ff 44 19 0b 00 00 00 00 00 ....D....... +5854 16.959726572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377282999 12 22 717862 0 0x00000016 0 22 717862 0 16 00 00 00 26 f4 0a 00 00 00 00 00 ....&....... +5856 16.959885836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283011 22 18 2067151 0 0x00000012 1 2067151 0 196609 0 12 00 00 00 cf 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5858 16.960294247 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305702 12 -1 717862 0 0xffffffff 0 -1 717862 0 ff ff ff ff 26 f4 0a 00 00 00 00 00 ....&....... +5864 17.062957048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305714 12 26 727365 0 0x0000001a 0 26 727365 0 1a 00 00 00 45 19 0b 00 00 00 00 00 ....E....... +5866 17.063147783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305726 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1966014464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5868 17.063394785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283033 12 -1 727365 0 0xffffffff 0 -1 727365 0 ff ff ff ff 45 19 0b 00 00 00 00 00 ....E....... +5870 17.063912392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283045 12 22 717863 0 0x00000016 0 22 717863 0 16 00 00 00 27 f4 0a 00 00 00 00 00 ....'....... +5872 17.064070940 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283057 22 18 2067153 0 0x00000012 1 2067153 0 196609 0 12 00 00 00 d1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5874 17.064422369 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305752 12 -1 717863 0 0xffffffff 0 -1 717863 0 ff ff ff ff 27 f4 0a 00 00 00 00 00 ....'....... +5876 17.127306223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305764 12 34 727366 0 0x00000022 0 34 727366 0 22 00 00 00 46 19 0b 00 00 00 00 00 """...F......." +5878 17.127551317 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305776 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283770880 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ea 10 02 00 00 00 00 00 50 d1 22 c3 9d 01 00 00 ".....!...o3...............P.""....." +5880 17.127694845 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305810 12 67 727367 0 0x00000043 0 67 727367 0 43 00 00 00 47 19 0b 00 00 00 00 00 C...G....... +5882 17.127778530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305822 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ea 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 03 6a 06 ca ?.....3...|8...................=B.....&......... +5884 17.127821684 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283079 12 -1 727366 0 0xffffffff 0 -1 727366 0 ff ff ff ff 46 19 0b 00 00 00 00 00 ....F....... +5888 17.128045559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283091 12 -1 727367 0 0xffffffff 0 -1 727367 0 ff ff ff ff 47 19 0b 00 00 00 00 00 ....G....... +5890 17.129921198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283103 12 52 717864 0 0x00000034 0 52 717864 0 34 00 00 00 28 f4 0a 00 00 00 00 00 4...(....... +5892 17.130116940 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283115 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ea 10 02 00 00 00 00 00 00 00 57 09 a4 73 4d 01 00 00 "0...Dk.................L."".([...............W..s" +5894 17.130408049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305889 12 -1 717864 0 0xffffffff 0 -1 717864 0 ff ff ff ff 28 f4 0a 00 00 00 00 00 ....(....... +5896 17.131204367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305901 12 30 727368 0 0x0000001e 0 30 727368 0 1e 00 00 00 48 19 0b 00 00 00 00 00 ....H....... +5899 17.131378412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305913 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1965883392 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5901 17.131908178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283167 12 -1 727368 0 0xffffffff 0 -1 727368 0 ff ff ff ff 48 19 0b 00 00 00 00 00 ....H....... +5903 17.132127047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283179 12 26 717865 0 0x0000001a 0 26 717865 0 1a 00 00 00 29 f4 0a 00 00 00 00 00 ....)....... +5905 17.132280827 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283191 26 22 2067155 0 0x00000016 1 2067155 0 196609 0 16 00 00 00 d3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5907 17.132677317 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305943 12 -1 717865 0 0xffffffff 0 -1 717865 0 ff ff ff ff 29 f4 0a 00 00 00 00 00 ....)....... +5911 17.137059450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283217 12 -2 82573 82590 0xfffffffe 0 -2 82573 82590 fe ff ff ff 8d 42 01 00 9e 42 01 00 .....B...B.. +5915 17.165914774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305955 12 26 727369 0 0x0000001a 0 26 727369 0 1a 00 00 00 49 19 0b 00 00 00 00 00 ....I....... +5917 17.166082859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305967 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1965752320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5919 17.166487217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283229 12 -1 727369 0 0xffffffff 0 -1 727369 0 ff ff ff ff 49 19 0b 00 00 00 00 00 ....I....... +5921 17.166855335 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283241 12 22 717866 0 0x00000016 0 22 717866 0 16 00 00 00 2a f4 0a 00 00 00 00 00 ....*....... +5923 17.167017937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283253 22 18 2067157 0 0x00000012 1 2067157 0 196609 0 12 00 00 00 d5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5925 17.167327404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333305993 12 -1 717866 0 0xffffffff 0 -1 717866 0 ff ff ff ff 2a f4 0a 00 00 00 00 00 ....*....... +5929 17.203077078 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306005 12 -2 82591 82573 0xfffffffe 0 -2 82591 82573 fe ff ff ff 9f 42 01 00 8d 42 01 00 .....B...B.. +5939 17.268981934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306017 12 26 727370 0 0x0000001a 0 26 727370 0 1a 00 00 00 4a 19 0b 00 00 00 00 00 ....J....... +5941 17.269275904 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306029 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1965621248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5943 17.269868851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283275 12 -1 727370 0 0xffffffff 0 -1 727370 0 ff ff ff ff 4a 19 0b 00 00 00 00 00 ....J....... +5945 17.270402670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283287 12 22 717867 0 0x00000016 0 22 717867 0 16 00 00 00 2b f4 0a 00 00 00 00 00 ....+....... +5947 17.270560741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283299 22 18 2067159 0 0x00000012 1 2067159 0 196609 0 12 00 00 00 d7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5949 17.270883322 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306055 12 -1 717867 0 0xffffffff 0 -1 717867 0 ff ff ff ff 2b f4 0a 00 00 00 00 00 ....+....... +5981 17.373912811 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306067 12 26 727371 0 0x0000001a 0 26 727371 0 1a 00 00 00 4b 19 0b 00 00 00 00 00 ....K....... +5983 17.374217749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306079 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1965490176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +5987 17.374552011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283321 12 -1 727371 0 0xffffffff 0 -1 727371 0 ff ff ff ff 4b 19 0b 00 00 00 00 00 ....K....... +5989 17.375104427 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283333 12 22 717868 0 0x00000016 0 22 717868 0 16 00 00 00 2c f4 0a 00 00 00 00 00 ....,....... +5991 17.375266075 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283345 22 18 2067161 0 0x00000012 1 2067161 0 196609 0 12 00 00 00 d9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5993 17.375568867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306105 12 -1 717868 0 0xffffffff 0 -1 717868 0 ff ff ff ff 2c f4 0a 00 00 00 00 00 ....,....... +5997 17.431974173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306117 12 34 727372 0 0x00000022 0 34 727372 0 22 00 00 00 4c 19 0b 00 00 00 00 00 """...L......." +5999 17.432189226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306129 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 283836416 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 eb 10 02 00 00 00 00 00 81 d2 22 c3 9d 01 00 00 ".....!...o3.................""....." +6001 17.432353735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306163 12 67 727373 0 0x00000043 0 67 727373 0 43 00 00 00 4d 19 0b 00 00 00 00 00 C...M....... +6003 17.432438850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306175 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 eb 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc 86 93 18 ca ?.....3...|8...................=B.....&......... +6004 17.432516336 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283367 12 -1 727372 0 0xffffffff 0 -1 727372 0 ff ff ff ff 4c 19 0b 00 00 00 00 00 ....L....... +6005 17.432611465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283379 12 -1 727373 0 0xffffffff 0 -1 727373 0 ff ff ff ff 4d 19 0b 00 00 00 00 00 ....M....... +6008 17.433598280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283391 12 52 717869 0 0x00000034 0 52 717869 0 34 00 00 00 2d f4 0a 00 00 00 00 00 4...-....... +6010 17.433762312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283403 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 eb 10 02 00 00 00 00 00 00 00 cf 5f d2 73 4d 01 00 00 "0...Dk.................L."".([................_.s" +6012 17.434022188 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306242 12 -1 717869 0 0xffffffff 0 -1 717869 0 ff ff ff ff 2d f4 0a 00 00 00 00 00 ....-....... +6013 17.434865236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306254 12 30 727374 0 0x0000001e 0 30 727374 0 1e 00 00 00 4e 19 0b 00 00 00 00 00 ....N....... +6014 17.434973240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306266 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1965359104 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6015 17.435231924 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283455 12 -1 727374 0 0xffffffff 0 -1 727374 0 ff ff ff ff 4e 19 0b 00 00 00 00 00 ....N....... +6017 17.435690641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283467 12 26 717870 0 0x0000001a 0 26 717870 0 1a 00 00 00 2e f4 0a 00 00 00 00 00 ............ +6019 17.435832262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283479 26 22 2067163 0 0x00000016 1 2067163 0 196609 0 16 00 00 00 db 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6021 17.436079264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306296 12 -1 717870 0 0xffffffff 0 -1 717870 0 ff ff ff ff 2e f4 0a 00 00 00 00 00 ............ +6023 17.477047205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306308 12 26 727375 0 0x0000001a 0 26 727375 0 1a 00 00 00 4f 19 0b 00 00 00 00 00 ....O....... +6025 17.477310658 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306320 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1965228032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6027 17.477632046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283505 12 -1 727375 0 0xffffffff 0 -1 727375 0 ff ff ff ff 4f 19 0b 00 00 00 00 00 ....O....... +6029 17.478207350 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283517 12 22 717871 0 0x00000016 0 22 717871 0 16 00 00 00 2f f4 0a 00 00 00 00 00 ..../....... +6031 17.478365660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283529 22 18 2067165 0 0x00000012 1 2067165 0 196609 0 12 00 00 00 dd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6033 17.478641033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306346 12 -1 717871 0 0xffffffff 0 -1 717871 0 ff ff ff ff 2f f4 0a 00 00 00 00 00 ..../....... +6040 17.580862522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306358 12 26 727376 0 0x0000001a 0 26 727376 0 1a 00 00 00 50 19 0b 00 00 00 00 00 ....P....... +6042 17.581089973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306370 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1965096960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6044 17.581413746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283551 12 -1 727376 0 0xffffffff 0 -1 727376 0 ff ff ff ff 50 19 0b 00 00 00 00 00 ....P....... +6046 17.581808567 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283563 12 22 717872 0 0x00000016 0 22 717872 0 16 00 00 00 30 f4 0a 00 00 00 00 00 ....0....... +6048 17.582221985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283575 22 18 2067167 0 0x00000012 1 2067167 0 196609 0 12 00 00 00 df 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6050 17.582466364 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306396 12 -1 717872 0 0xffffffff 0 -1 717872 0 ff ff ff ff 30 f4 0a 00 00 00 00 00 ....0....... +6059 17.637427568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283597 12 -2 82574 82591 0xfffffffe 0 -2 82574 82591 fe ff ff ff 8e 42 01 00 9f 42 01 00 .....B...B.. +6063 17.684134960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306408 12 26 727377 0 0x0000001a 0 26 727377 0 1a 00 00 00 51 19 0b 00 00 00 00 00 ....Q....... +6065 17.684310198 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306420 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1964965888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6067 17.684638739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283609 12 -1 727377 0 0xffffffff 0 -1 727377 0 ff ff ff ff 51 19 0b 00 00 00 00 00 ....Q....... +6069 17.685116053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283621 12 22 717873 0 0x00000016 0 22 717873 0 16 00 00 00 31 f4 0a 00 00 00 00 00 ....1....... +6071 17.685276985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283633 22 18 2067169 0 0x00000012 1 2067169 0 196609 0 12 00 00 00 e1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6073 17.685539246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306446 12 -1 717873 0 0xffffffff 0 -1 717873 0 ff ff ff ff 31 f4 0a 00 00 00 00 00 ....1....... +6077 17.704536200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306458 12 -2 82592 82574 0xfffffffe 0 -2 82592 82574 fe ff ff ff a0 42 01 00 8e 42 01 00 .....B...B.. +6082 17.735694408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306470 12 101 727378 0 0x00000065 0 101 727378 0 65 00 00 00 52 19 0b 00 00 00 00 00 e...R....... +6084 17.735912085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306482 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ec 10 02 00 00 00 00 00 b1 d3 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ec 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +6086 17.736230135 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283655 12 -1 727378 0 0xffffffff 0 -1 727378 0 ff ff ff ff 52 19 0b 00 00 00 00 00 ....R....... +6088 17.737238646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283667 12 52 717874 0 0x00000034 0 52 717874 0 34 00 00 00 32 f4 0a 00 00 00 00 00 4...2....... +6090 17.737425327 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283679 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ec 10 02 00 00 00 00 00 00 00 f1 b0 00 74 4d 01 00 00 "0...Dk.................L."".([..................t" +6092 17.737700939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306583 12 -1 717874 0 0xffffffff 0 -1 717874 0 ff ff ff ff 32 f4 0a 00 00 00 00 00 ....2....... +6094 17.738464832 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306595 12 30 727379 0 0x0000001e 0 30 727379 0 1e 00 00 00 53 19 0b 00 00 00 00 00 ....S....... +6096 17.738607407 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306607 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1964834816 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6098 17.738964081 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283731 12 -1 727379 0 0xffffffff 0 -1 727379 0 ff ff ff ff 53 19 0b 00 00 00 00 00 ....S....... +6100 17.739260435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283743 12 26 717875 0 0x0000001a 0 26 717875 0 1a 00 00 00 33 f4 0a 00 00 00 00 00 ....3....... +6102 17.739420414 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283755 26 22 2067171 0 0x00000016 1 2067171 0 196609 0 16 00 00 00 e3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6104 17.739603519 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306637 12 -1 717875 0 0xffffffff 0 -1 717875 0 ff ff ff ff 33 f4 0a 00 00 00 00 00 ....3....... +6106 17.787245512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306649 12 26 727380 0 0x0000001a 0 26 727380 0 1a 00 00 00 54 19 0b 00 00 00 00 00 ....T....... +6108 17.787415981 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306661 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1964703744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6110 17.787762642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283781 12 -1 727380 0 0xffffffff 0 -1 727380 0 ff ff ff ff 54 19 0b 00 00 00 00 00 ....T....... +6112 17.788171291 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283793 12 22 717876 0 0x00000016 0 22 717876 0 16 00 00 00 34 f4 0a 00 00 00 00 00 ....4....... +6114 17.788326502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283805 22 18 2067173 0 0x00000012 1 2067173 0 196609 0 12 00 00 00 e5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6116 17.788580656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306687 12 -1 717876 0 0xffffffff 0 -1 717876 0 ff ff ff ff 34 f4 0a 00 00 00 00 00 ....4....... +6123 17.890122652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306699 12 26 727381 0 0x0000001a 0 26 727381 0 1a 00 00 00 55 19 0b 00 00 00 00 00 ....U....... +6125 17.890326262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306711 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1964572672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6127 17.890631199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283827 12 -1 727381 0 0xffffffff 0 -1 727381 0 ff ff ff ff 55 19 0b 00 00 00 00 00 ....U....... +6129 17.891173124 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283839 12 22 717877 0 0x00000016 0 22 717877 0 16 00 00 00 35 f4 0a 00 00 00 00 00 ....5....... +6131 17.891346455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283851 22 18 2067175 0 0x00000012 1 2067175 0 196609 0 12 00 00 00 e7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6133 17.891751766 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306737 12 -1 717877 0 0xffffffff 0 -1 717877 0 ff ff ff ff 35 f4 0a 00 00 00 00 00 ....5....... +6138 17.994059801 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306749 12 26 727382 0 0x0000001a 0 26 727382 0 1a 00 00 00 56 19 0b 00 00 00 00 00 ....V....... +6140 17.994261265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306761 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1964441600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6142 17.994599342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283873 12 -1 727382 0 0xffffffff 0 -1 727382 0 ff ff ff ff 56 19 0b 00 00 00 00 00 ....V....... +6144 17.994991064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283885 12 22 717878 0 0x00000016 0 22 717878 0 16 00 00 00 36 f4 0a 00 00 00 00 00 ....6....... +6146 17.995148182 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283897 22 18 2067177 0 0x00000012 1 2067177 0 196609 0 12 00 00 00 e9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6148 17.995465755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306787 12 -1 717878 0 0xffffffff 0 -1 717878 0 ff ff ff ff 36 f4 0a 00 00 00 00 00 ....6....... +6152 18.040245056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306799 12 101 727383 0 0x00000065 0 101 727383 0 65 00 00 00 57 19 0b 00 00 00 00 00 e...W....... +6154 18.040439367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306811 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ed 10 02 00 00 00 00 00 e1 d4 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ed 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +6156 18.040746927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283919 12 -1 727383 0 0xffffffff 0 -1 727383 0 ff ff ff ff 57 19 0b 00 00 00 00 00 ....W....... +6158 18.041822910 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283931 12 52 717879 0 0x00000034 0 52 717879 0 34 00 00 00 37 f4 0a 00 00 00 00 00 4...7....... +6160 18.041985512 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283943 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ed 10 02 00 00 00 00 00 00 00 25 2f 2f 74 4d 01 00 00 "0...Dk.................L."".([...............%//t" +6162 18.042240381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306912 12 -1 717879 0 0xffffffff 0 -1 717879 0 ff ff ff ff 37 f4 0a 00 00 00 00 00 ....7....... +6164 18.043069839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306924 12 30 727384 0 0x0000001e 0 30 727384 0 1e 00 00 00 58 19 0b 00 00 00 00 00 ....X....... +6166 18.043213606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306936 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1964310528 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6168 18.043521166 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377283995 12 -1 727384 0 0xffffffff 0 -1 727384 0 ff ff ff ff 58 19 0b 00 00 00 00 00 ....X....... +6170 18.043893337 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284007 12 26 717880 0 0x0000001a 0 26 717880 0 1a 00 00 00 38 f4 0a 00 00 00 00 00 ....8....... +6172 18.044064522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284019 26 22 2067179 0 0x00000016 1 2067179 0 196609 0 16 00 00 00 eb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6174 18.044317245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306966 12 -1 717880 0 0xffffffff 0 -1 717880 0 ff ff ff ff 38 f4 0a 00 00 00 00 00 ....8....... +6177 18.097199440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306978 12 26 727385 0 0x0000001a 0 26 727385 0 1a 00 00 00 59 19 0b 00 00 00 00 00 ....Y....... +6179 18.097370148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333306990 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1964179456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6181 18.097785711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284045 12 -1 727385 0 0xffffffff 0 -1 727385 0 ff ff ff ff 59 19 0b 00 00 00 00 00 ....Y....... +6183 18.098194838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284057 12 22 717881 0 0x00000016 0 22 717881 0 16 00 00 00 39 f4 0a 00 00 00 00 00 ....9....... +6185 18.098359585 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284069 22 18 2067181 0 0x00000012 1 2067181 0 196609 0 12 00 00 00 ed 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6187 18.098710775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307016 12 -1 717881 0 0xffffffff 0 -1 717881 0 ff ff ff ff 39 f4 0a 00 00 00 00 00 ....9....... +6195 18.139170647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284091 12 -2 82575 82592 0xfffffffe 0 -2 82575 82592 fe ff ff ff 8f 42 01 00 a0 42 01 00 .....B...B.. +6202 18.201484680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307028 12 26 727386 0 0x0000001a 0 26 727386 0 1a 00 00 00 5a 19 0b 00 00 00 00 00 ....Z....... +6204 18.201673269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307040 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1964048384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6206 18.201973677 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284103 12 -1 727386 0 0xffffffff 0 -1 727386 0 ff ff ff ff 5a 19 0b 00 00 00 00 00 ....Z....... +6208 18.202815056 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284115 12 22 717882 0 0x00000016 0 22 717882 0 16 00 00 00 3a f4 0a 00 00 00 00 00 ....:....... +6210 18.203058481 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284127 22 18 2067183 0 0x00000012 1 2067183 0 196609 0 12 00 00 00 ef 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6212 18.203348160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307066 12 -1 717882 0 0xffffffff 0 -1 717882 0 ff ff ff ff 3a f4 0a 00 00 00 00 00 ....:....... +6214 18.205144644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307078 12 -2 82593 82575 0xfffffffe 0 -2 82593 82575 fe ff ff ff a1 42 01 00 8f 42 01 00 .....B...B.. +6219 18.305126429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307090 12 26 727387 0 0x0000001a 0 26 727387 0 1a 00 00 00 5b 19 0b 00 00 00 00 00 ....[....... +6221 18.305317640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307102 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1963917312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6223 18.305656195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284149 12 -1 727387 0 0xffffffff 0 -1 727387 0 ff ff ff ff 5b 19 0b 00 00 00 00 00 ....[....... +6225 18.306116581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284161 12 22 717883 0 0x00000016 0 22 717883 0 16 00 00 00 3b f4 0a 00 00 00 00 00 ....;....... +6227 18.306277037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284173 22 18 2067185 0 0x00000012 1 2067185 0 196609 0 12 00 00 00 f1 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6229 18.306560755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307128 12 -1 717883 0 0xffffffff 0 -1 717883 0 ff ff ff ff 3b f4 0a 00 00 00 00 00 ....;....... +6231 18.345849037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307140 12 101 727388 0 0x00000065 0 101 727388 0 65 00 00 00 5c 19 0b 00 00 00 00 00 e...\....... +6233 18.346031666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307152 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ee 10 02 00 00 00 00 00 13 d6 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ee 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +6235 18.346370459 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284195 12 -1 727388 0 0xffffffff 0 -1 727388 0 ff ff ff ff 5c 19 0b 00 00 00 00 00 ....\....... +6237 18.347269773 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284207 12 52 717884 0 0x00000034 0 52 717884 0 34 00 00 00 3c f4 0a 00 00 00 00 00 4...<....... +6239 18.347430229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284219 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ee 10 02 00 00 00 00 00 00 00 7a c8 5d 74 4d 01 00 00 "0...Dk.................L."".([...............z.]t" +6241 18.347787142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307253 12 -1 717884 0 0xffffffff 0 -1 717884 0 ff ff ff ff 3c f4 0a 00 00 00 00 00 ....<....... +6243 18.348586798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307265 12 30 727389 0 0x0000001e 0 30 727389 0 1e 00 00 00 5d 19 0b 00 00 00 00 00 ....]....... +6245 18.348731756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307277 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1963786240 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6247 18.349039793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284271 12 -1 727389 0 0xffffffff 0 -1 727389 0 ff ff ff ff 5d 19 0b 00 00 00 00 00 ....]....... +6249 18.349469900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284283 12 26 717885 0 0x0000001a 0 26 717885 0 1a 00 00 00 3d f4 0a 00 00 00 00 00 ....=....... +6251 18.349627256 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284295 26 22 2067187 0 0x00000016 1 2067187 0 196609 0 16 00 00 00 f3 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6253 18.349904299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307307 12 -1 717885 0 0xffffffff 0 -1 717885 0 ff ff ff ff 3d f4 0a 00 00 00 00 00 ....=....... +6260 18.409474611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307319 12 26 727390 0 0x0000001a 0 26 727390 0 1a 00 00 00 5e 19 0b 00 00 00 00 00 ....^....... +6262 18.409713745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307331 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1963655168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6264 18.410013437 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284321 12 -1 727390 0 0xffffffff 0 -1 727390 0 ff ff ff ff 5e 19 0b 00 00 00 00 00 ....^....... +6266 18.410338879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284333 12 22 717886 0 0x00000016 0 22 717886 0 16 00 00 00 3e f4 0a 00 00 00 00 00 ....>....... +6268 18.410497904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284345 22 18 2067189 0 0x00000012 1 2067189 0 196609 0 12 00 00 00 f5 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6270 18.410834074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307357 12 -1 717886 0 0xffffffff 0 -1 717886 0 ff ff ff ff 3e f4 0a 00 00 00 00 00 ....>....... +6277 18.512535810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307369 12 26 727391 0 0x0000001a 0 26 727391 0 1a 00 00 00 5f 19 0b 00 00 00 00 00 ...._....... +6279 18.512708902 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307381 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1963524096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6281 18.513075829 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284367 12 -1 727391 0 0xffffffff 0 -1 727391 0 ff ff ff ff 5f 19 0b 00 00 00 00 00 ...._....... +6283 18.513543844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284379 12 22 717887 0 0x00000016 0 22 717887 0 16 00 00 00 3f f4 0a 00 00 00 00 00 ....?....... +6285 18.513704538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284391 22 18 2067191 0 0x00000012 1 2067191 0 196609 0 12 00 00 00 f7 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6287 18.513997316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307407 12 -1 717887 0 0xffffffff 0 -1 717887 0 ff ff ff ff 3f f4 0a 00 00 00 00 00 ....?....... +6290 18.615626335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307419 12 26 727392 0 0x0000001a 0 26 727392 0 1a 00 00 00 60 19 0b 00 00 00 00 00 ....`....... +6292 18.615812778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307431 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1963393024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6294 18.616174936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284413 12 -1 727392 0 0xffffffff 0 -1 727392 0 ff ff ff ff 60 19 0b 00 00 00 00 00 ....`....... +6296 18.616640806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284425 12 22 717888 0 0x00000016 0 22 717888 0 16 00 00 00 40 f4 0a 00 00 00 00 00 ....@....... +6298 18.616800070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284437 22 18 2067193 0 0x00000012 1 2067193 0 196609 0 12 00 00 00 f9 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6300 18.617214203 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307457 12 -1 717888 0 0xffffffff 0 -1 717888 0 ff ff ff ff 40 f4 0a 00 00 00 00 00 ....@....... +6308 18.640247107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284459 12 -2 82576 82593 0xfffffffe 0 -2 82576 82593 fe ff ff ff 90 42 01 00 a1 42 01 00 .....B...B.. +6310 18.649621964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307469 12 34 727393 0 0x00000022 0 34 727393 0 22 00 00 00 61 19 0b 00 00 00 00 00 """...a......." +6312 18.649819136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307481 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 284098560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ef 10 02 00 00 00 00 00 43 d7 22 c3 9d 01 00 00 ".....!...o3...............C.""....." +6314 18.649984360 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307515 12 67 727394 0 0x00000043 0 67 727394 0 43 00 00 00 62 19 0b 00 00 00 00 00 C...b....... +6316 18.650068283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307527 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ef 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 8a 28 61 ca ?.....3...|8...................=B.....&......... +6318 18.650167465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284471 12 -1 727393 0 0xffffffff 0 -1 727393 0 ff ff ff ff 61 19 0b 00 00 00 00 00 ....a....... +6320 18.650335789 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284483 12 -1 727394 0 0xffffffff 0 -1 727394 0 ff ff ff ff 62 19 0b 00 00 00 00 00 ....b....... +6322 18.650936842 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284495 12 52 717889 0 0x00000034 0 52 717889 0 34 00 00 00 41 f4 0a 00 00 00 00 00 4...A....... +6324 18.651128054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284507 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ef 10 02 00 00 00 00 00 00 00 11 1f 8c 74 4d 01 00 00 "0...Dk.................L."".([..................t" +6326 18.651447535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307594 12 -1 717889 0 0xffffffff 0 -1 717889 0 ff ff ff ff 41 f4 0a 00 00 00 00 00 ....A....... +6328 18.652218342 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307606 12 30 727395 0 0x0000001e 0 30 727395 0 1e 00 00 00 63 19 0b 00 00 00 00 00 ....c....... +6330 18.652352810 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307618 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1963261952 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 8a 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6332 18.652793407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284559 12 -1 727395 0 0xffffffff 0 -1 727395 0 ff ff ff ff 63 19 0b 00 00 00 00 00 ....c....... +6334 18.653519869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284571 12 26 717890 0 0x0000001a 0 26 717890 0 1a 00 00 00 42 f4 0a 00 00 00 00 00 ....B....... +6336 18.653805733 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284583 26 22 2067195 0 0x00000016 1 2067195 0 196609 0 16 00 00 00 fb 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6338 18.654326677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307648 12 -1 717890 0 0xffffffff 0 -1 717890 0 ff ff ff ff 42 f4 0a 00 00 00 00 00 ....B....... +6344 18.706198931 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307660 12 -2 82594 82576 0xfffffffe 0 -2 82594 82576 fe ff ff ff a2 42 01 00 90 42 01 00 .....B...B.. +6349 18.719641685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307672 12 26 727396 0 0x0000001a 0 26 727396 0 1a 00 00 00 64 19 0b 00 00 00 00 00 ....d....... +6351 18.719812632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307684 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1963130880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6353 18.720163822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284609 12 -1 727396 0 0xffffffff 0 -1 727396 0 ff ff ff ff 64 19 0b 00 00 00 00 00 ....d....... +6355 18.720589161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284621 12 22 717891 0 0x00000016 0 22 717891 0 16 00 00 00 43 f4 0a 00 00 00 00 00 ....C....... +6357 18.720866680 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284633 22 18 2067197 0 0x00000012 1 2067197 0 196609 0 12 00 00 00 fd 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6359 18.721292496 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307710 12 -1 717891 0 0xffffffff 0 -1 717891 0 ff ff ff ff 43 f4 0a 00 00 00 00 00 ....C....... +6361 18.822988510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307722 12 26 727397 0 0x0000001a 0 26 727397 0 1a 00 00 00 65 19 0b 00 00 00 00 00 ....e....... +6363 18.823217630 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307734 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1962999808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 8a 1f 00 00 00 00 00 ....T.c@.^1@.............. +6365 18.823543549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284655 12 -1 727397 0 0xffffffff 0 -1 727397 0 ff ff ff ff 65 19 0b 00 00 00 00 00 ....e....... +6367 18.824075937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284667 12 22 717892 0 0x00000016 0 22 717892 0 16 00 00 00 44 f4 0a 00 00 00 00 00 ....D....... +6369 18.824277163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284679 22 18 2067199 0 0x00000012 1 2067199 0 196609 0 12 00 00 00 ff 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6371 18.824619770 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307760 12 -1 717892 0 0xffffffff 0 -1 717892 0 ff ff ff ff 44 f4 0a 00 00 00 00 00 ....D....... +6377 18.926496029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307772 12 26 727398 0 0x0000001a 0 26 727398 0 1a 00 00 00 66 19 0b 00 00 00 00 00 ....f....... +6379 18.926706553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307784 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1962868736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6381 18.927125692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284701 12 -1 727398 0 0xffffffff 0 -1 727398 0 ff ff ff ff 66 19 0b 00 00 00 00 00 ....f....... +6383 18.927505970 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284713 12 22 717893 0 0x00000016 0 22 717893 0 16 00 00 00 45 f4 0a 00 00 00 00 00 ....E....... +6385 18.927666903 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284725 22 18 2067201 0 0x00000012 1 2067201 0 196609 0 12 00 00 00 01 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6387 18.928062439 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307810 12 -1 717893 0 0xffffffff 0 -1 717893 0 ff ff ff ff 45 f4 0a 00 00 00 00 00 ....E....... +6389 18.954504251 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307822 12 34 727399 0 0x00000022 0 34 727399 0 22 00 00 00 67 19 0b 00 00 00 00 00 """...g......." +6391 18.954688549 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307834 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 284164096 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f0 10 02 00 00 00 00 00 74 d8 22 c3 9d 01 00 00 ".....!...o3...............t.""....." +6393 18.954826355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307868 12 67 727400 0 0x00000043 0 67 727400 0 43 00 00 00 68 19 0b 00 00 00 00 00 C...h....... +6395 18.954910040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307880 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f0 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 08 c3 57 73 ca ?.....3...|8...................=B.....&......... +6397 18.955063343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284747 12 -1 727399 0 0xffffffff 0 -1 727399 0 ff ff ff ff 67 19 0b 00 00 00 00 00 ....g....... +6399 18.955244780 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284759 12 -1 727400 0 0xffffffff 0 -1 727400 0 ff ff ff ff 68 19 0b 00 00 00 00 00 ....h....... +6401 18.956256151 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284771 12 52 717894 0 0x00000034 0 52 717894 0 34 00 00 00 46 f4 0a 00 00 00 00 00 4...F....... +6403 18.956471205 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284783 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f0 10 02 00 00 00 00 00 00 00 ca b3 ba 74 4d 01 00 00 "0...Dk.................L."".([..................t" +6405 18.956827402 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307947 12 -1 717894 0 0xffffffff 0 -1 717894 0 ff ff ff ff 46 f4 0a 00 00 00 00 00 ....F....... +6407 18.957518816 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307959 12 30 727401 0 0x0000001e 0 30 727401 0 1e 00 00 00 69 19 0b 00 00 00 00 00 ....i....... +6409 18.957690716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333307971 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1962737664 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6411 18.958009005 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284835 12 -1 727401 0 0xffffffff 0 -1 727401 0 ff ff ff ff 69 19 0b 00 00 00 00 00 ....i....... +6413 18.958442688 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284847 12 26 717895 0 0x0000001a 0 26 717895 0 1a 00 00 00 47 f4 0a 00 00 00 00 00 ....G....... +6415 18.958648205 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284859 26 22 2067203 0 0x00000016 1 2067203 0 196609 0 16 00 00 00 03 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6417 18.958984852 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308001 12 -1 717895 0 0xffffffff 0 -1 717895 0 ff ff ff ff 47 f4 0a 00 00 00 00 00 ....G....... +6423 19.029448271 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308013 12 26 727402 0 0x0000001a 0 26 727402 0 1a 00 00 00 6a 19 0b 00 00 00 00 00 ....j....... +6425 19.029613495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308025 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1962606592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6427 19.029980421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284885 12 -1 727402 0 0xffffffff 0 -1 727402 0 ff ff ff ff 6a 19 0b 00 00 00 00 00 ....j....... +6429 19.030352116 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284897 12 22 717896 0 0x00000016 0 22 717896 0 16 00 00 00 48 f4 0a 00 00 00 00 00 ....H....... +6431 19.030523300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284909 22 18 2067205 0 0x00000012 1 2067205 0 196609 0 12 00 00 00 05 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6433 19.030856133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308051 12 -1 717896 0 0xffffffff 0 -1 717896 0 ff ff ff ff 48 f4 0a 00 00 00 00 00 ....H....... +6437 19.132283449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308063 12 26 727403 0 0x0000001a 0 26 727403 0 1a 00 00 00 6b 19 0b 00 00 00 00 00 ....k....... +6440 19.132462502 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308075 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1962475520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6443 19.132657766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284931 12 -1 727403 0 0xffffffff 0 -1 727403 0 ff ff ff ff 6b 19 0b 00 00 00 00 00 ....k....... +6445 19.133239746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284943 12 22 717897 0 0x00000016 0 22 717897 0 16 00 00 00 49 f4 0a 00 00 00 00 00 ....I....... +6447 19.133409023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284955 22 18 2067207 0 0x00000012 1 2067207 0 196609 0 12 00 00 00 07 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6449 19.133676529 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308101 12 -1 717897 0 0xffffffff 0 -1 717897 0 ff ff ff ff 49 f4 0a 00 00 00 00 00 ....I....... +6453 19.140251398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284977 12 -2 82577 82594 0xfffffffe 0 -2 82577 82594 fe ff ff ff 91 42 01 00 a2 42 01 00 .....B...B.. +6513 19.206976652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308113 12 -2 82595 82577 0xfffffffe 0 -2 82595 82577 fe ff ff ff a3 42 01 00 91 42 01 00 .....B...B.. +6535 19.236342907 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308125 12 26 727404 0 0x0000001a 0 26 727404 0 1a 00 00 00 6c 19 0b 00 00 00 00 00 ....l....... +6537 19.236505270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308137 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1962344448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6539 19.236910820 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377284989 12 -1 727404 0 0xffffffff 0 -1 727404 0 ff ff ff ff 6c 19 0b 00 00 00 00 00 ....l....... +6541 19.237344742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285001 12 22 717898 0 0x00000016 0 22 717898 0 16 00 00 00 4a f4 0a 00 00 00 00 00 ....J....... +6543 19.237511158 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285013 22 18 2067209 0 0x00000012 1 2067209 0 196609 0 12 00 00 00 09 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6545 19.237806559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308163 12 -1 717898 0 0xffffffff 0 -1 717898 0 ff ff ff ff 4a f4 0a 00 00 00 00 00 ....J....... +6547 19.258690834 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308175 12 101 727405 0 0x00000065 0 101 727405 0 65 00 00 00 6d 19 0b 00 00 00 00 00 e...m....... +6549 19.258913279 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308187 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f1 10 02 00 00 00 00 00 a4 d9 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f1 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +6551 19.259228706 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285035 12 -1 727405 0 0xffffffff 0 -1 727405 0 ff ff ff ff 6d 19 0b 00 00 00 00 00 ....m....... +6553 19.260128021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285047 12 52 717899 0 0x00000034 0 52 717899 0 34 00 00 00 4b f4 0a 00 00 00 00 00 4...K....... +6555 19.260292768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285059 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f1 10 02 00 00 00 00 00 00 00 d4 14 e9 74 4d 01 00 00 "0...Dk.................L."".([..................t" +6557 19.260552168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308288 12 -1 717899 0 0xffffffff 0 -1 717899 0 ff ff ff ff 4b f4 0a 00 00 00 00 00 ....K....... +6559 19.261433125 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308300 12 30 727406 0 0x0000001e 0 30 727406 0 1e 00 00 00 6e 19 0b 00 00 00 00 00 ....n....... +6561 19.261583328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308312 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1962213376 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0b 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6563 19.261861086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285111 12 -1 727406 0 0xffffffff 0 -1 727406 0 ff ff ff ff 6e 19 0b 00 00 00 00 00 ....n....... +6565 19.262186766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285123 12 26 717900 0 0x0000001a 0 26 717900 0 1a 00 00 00 4c f4 0a 00 00 00 00 00 ....L....... +6567 19.262419939 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285135 26 22 2067211 0 0x00000016 1 2067211 0 196609 0 16 00 00 00 0b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6569 19.262666941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308342 12 -1 717900 0 0xffffffff 0 -1 717900 0 ff ff ff ff 4c f4 0a 00 00 00 00 00 ....L....... +6571 19.339365005 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308354 12 26 727407 0 0x0000001a 0 26 727407 0 1a 00 00 00 6f 19 0b 00 00 00 00 00 ....o....... +6573 19.339547396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308366 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1962082304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6575 19.339895725 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285161 12 -1 727407 0 0xffffffff 0 -1 727407 0 ff ff ff ff 6f 19 0b 00 00 00 00 00 ....o....... +6577 19.340481043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285173 12 22 717901 0 0x00000016 0 22 717901 0 16 00 00 00 4d f4 0a 00 00 00 00 00 ....M....... +6579 19.340690136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285185 22 18 2067213 0 0x00000012 1 2067213 0 196609 0 12 00 00 00 0d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6581 19.340972900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308392 12 -1 717901 0 0xffffffff 0 -1 717901 0 ff ff ff ff 4d f4 0a 00 00 00 00 00 ....M....... +6587 19.443492174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308404 12 26 727408 0 0x0000001a 0 26 727408 0 1a 00 00 00 70 19 0b 00 00 00 00 00 ....p....... +6589 19.443732023 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308416 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1961951232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6591 19.444087982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285207 12 -1 727408 0 0xffffffff 0 -1 727408 0 ff ff ff ff 70 19 0b 00 00 00 00 00 ....p....... +6593 19.444716454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285219 12 22 717902 0 0x00000016 0 22 717902 0 16 00 00 00 4e f4 0a 00 00 00 00 00 ....N....... +6595 19.444879532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285231 22 18 2067215 0 0x00000012 1 2067215 0 196609 0 12 00 00 00 0f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6597 19.445193291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308442 12 -1 717902 0 0xffffffff 0 -1 717902 0 ff ff ff ff 4e f4 0a 00 00 00 00 00 ....N....... +6603 19.548085690 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308454 12 26 727409 0 0x0000001a 0 26 727409 0 1a 00 00 00 71 19 0b 00 00 00 00 00 ....q....... +6605 19.548342943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308466 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1961820160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6607 19.548781872 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285253 12 -1 727409 0 0xffffffff 0 -1 727409 0 ff ff ff ff 71 19 0b 00 00 00 00 00 ....q....... +6609 19.549180746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285265 12 22 717903 0 0x00000016 0 22 717903 0 16 00 00 00 4f f4 0a 00 00 00 00 00 ....O....... +6611 19.549379349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285277 22 18 2067217 0 0x00000012 1 2067217 0 196609 0 12 00 00 00 11 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6613 19.549756765 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308492 12 -1 717903 0 0xffffffff 0 -1 717903 0 ff ff ff ff 4f f4 0a 00 00 00 00 00 ....O....... +6615 19.564149618 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308504 12 101 727410 0 0x00000065 0 101 727410 0 65 00 00 00 72 19 0b 00 00 00 00 00 e...r....... +6617 19.564399242 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308516 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f2 10 02 00 00 00 00 00 d5 da 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f2 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +6619 19.564794302 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285299 12 -1 727410 0 0xffffffff 0 -1 727410 0 ff ff ff ff 72 19 0b 00 00 00 00 00 ....r....... +6621 19.565701485 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285311 12 52 717904 0 0x00000034 0 52 717904 0 34 00 00 00 50 f4 0a 00 00 00 00 00 4...P....... +6623 19.565860033 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285323 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f2 10 02 00 00 00 00 00 00 00 73 b3 17 75 4d 01 00 00 "0...Dk.................L."".([...............s..u" +6625 19.566143274 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308617 12 -1 717904 0 0xffffffff 0 -1 717904 0 ff ff ff ff 50 f4 0a 00 00 00 00 00 ....P....... +6627 19.567088127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308629 12 30 727411 0 0x0000001e 0 30 727411 0 1e 00 00 00 73 19 0b 00 00 00 00 00 ....s....... +6629 19.567265749 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308641 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1961689088 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 13 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6631 19.567654371 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285375 12 -1 727411 0 0xffffffff 0 -1 727411 0 ff ff ff ff 73 19 0b 00 00 00 00 00 ....s....... +6633 19.567991972 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285387 12 26 717905 0 0x0000001a 0 26 717905 0 1a 00 00 00 51 f4 0a 00 00 00 00 00 ....Q....... +6635 19.568150043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285399 26 22 2067219 0 0x00000016 1 2067219 0 196609 0 16 00 00 00 13 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6637 19.568419218 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308671 12 -1 717905 0 0xffffffff 0 -1 717905 0 ff ff ff ff 51 f4 0a 00 00 00 00 00 ....Q....... +6645 19.640599966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285425 12 -2 82578 82595 0xfffffffe 0 -2 82578 82595 fe ff ff ff 92 42 01 00 a3 42 01 00 .....B...B.. +6647 19.652698755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308683 12 26 727412 0 0x0000001a 0 26 727412 0 1a 00 00 00 74 19 0b 00 00 00 00 00 ....t....... +6649 19.652884245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308695 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1961558016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6651 19.653201342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285437 12 -1 727412 0 0xffffffff 0 -1 727412 0 ff ff ff ff 74 19 0b 00 00 00 00 00 ....t....... +6653 19.653818369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285449 12 22 717906 0 0x00000016 0 22 717906 0 16 00 00 00 52 f4 0a 00 00 00 00 00 ....R....... +6655 19.653984547 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285461 22 18 2067221 0 0x00000012 1 2067221 0 196609 0 12 00 00 00 15 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6657 19.654232740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308721 12 -1 717906 0 0xffffffff 0 -1 717906 0 ff ff ff ff 52 f4 0a 00 00 00 00 00 ....R....... +6664 19.707903862 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308733 12 -2 82596 82578 0xfffffffe 0 -2 82596 82578 fe ff ff ff a4 42 01 00 92 42 01 00 .....B...B.. +6667 19.756186485 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308745 12 26 727413 0 0x0000001a 0 26 727413 0 1a 00 00 00 75 19 0b 00 00 00 00 00 ....u....... +6669 19.756371737 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308757 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1961426944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6671 19.756759405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285483 12 -1 727413 0 0xffffffff 0 -1 727413 0 ff ff ff ff 75 19 0b 00 00 00 00 00 ....u....... +6673 19.757216454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285495 12 22 717907 0 0x00000016 0 22 717907 0 16 00 00 00 53 f4 0a 00 00 00 00 00 ....S....... +6675 19.757385015 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285507 22 18 2067223 0 0x00000012 1 2067223 0 196609 0 12 00 00 00 17 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6677 19.757759333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308783 12 -1 717907 0 0xffffffff 0 -1 717907 0 ff ff ff ff 53 f4 0a 00 00 00 00 00 ....S....... +6680 19.860529184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308795 12 26 727414 0 0x0000001a 0 26 727414 0 1a 00 00 00 76 19 0b 00 00 00 00 00 ....v....... +6682 19.860738993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308807 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1961295872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6684 19.861014366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285529 12 -1 727414 0 0xffffffff 0 -1 727414 0 ff ff ff ff 76 19 0b 00 00 00 00 00 ....v....... +6686 19.861567974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285541 12 22 717908 0 0x00000016 0 22 717908 0 16 00 00 00 54 f4 0a 00 00 00 00 00 ....T....... +6688 19.861863852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285553 22 18 2067225 0 0x00000012 1 2067225 0 196609 0 12 00 00 00 19 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6690 19.862293243 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308833 12 -1 717908 0 0xffffffff 0 -1 717908 0 ff ff ff ff 54 f4 0a 00 00 00 00 00 ....T....... +6692 19.868633986 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308845 12 34 727415 0 0x00000022 0 34 727415 0 22 00 00 00 77 19 0b 00 00 00 00 00 """...w......." +6694 19.868856907 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308857 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 284360704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f3 10 02 00 00 00 00 00 06 dc 22 c3 9d 01 00 00 ".....!...o3.................""....." +6696 19.869009972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308891 12 67 727416 0 0x00000043 0 67 727416 0 43 00 00 00 78 19 0b 00 00 00 00 00 C...x....... +6698 19.869095802 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308903 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f3 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 94 cf a9 ca ?.....3...|8...................=B.....&......... +6699 19.869149208 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285575 12 -1 727415 0 0xffffffff 0 -1 727415 0 ff ff ff ff 77 19 0b 00 00 00 00 00 ....w....... +6700 19.869282961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285587 12 -1 727416 0 0xffffffff 0 -1 727416 0 ff ff ff ff 78 19 0b 00 00 00 00 00 ....x....... +6703 19.870137215 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285599 12 52 717909 0 0x00000034 0 52 717909 0 34 00 00 00 55 f4 0a 00 00 00 00 00 4...U....... +6705 19.870370865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285611 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f3 10 02 00 00 00 00 00 00 00 eb 27 46 75 4d 01 00 00 "0...Dk.................L."".([................'Fu" +6707 19.870720148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308970 12 -1 717909 0 0xffffffff 0 -1 717909 0 ff ff ff ff 55 f4 0a 00 00 00 00 00 ....U....... +6708 19.871420145 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308982 12 30 727417 0 0x0000001e 0 30 727417 0 1e 00 00 00 79 19 0b 00 00 00 00 00 ....y....... +6709 19.871522188 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333308994 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1961164800 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1b 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6710 19.871734142 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285663 12 -1 727417 0 0xffffffff 0 -1 727417 0 ff ff ff ff 79 19 0b 00 00 00 00 00 ....y....... +6712 19.872373104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285675 12 26 717910 0 0x0000001a 0 26 717910 0 1a 00 00 00 56 f4 0a 00 00 00 00 00 ....V....... +6714 19.872593641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285687 26 22 2067227 0 0x00000016 1 2067227 0 196609 0 16 00 00 00 1b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6716 19.872941256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309024 12 -1 717910 0 0xffffffff 0 -1 717910 0 ff ff ff ff 56 f4 0a 00 00 00 00 00 ....V....... +6722 19.927084923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285713 12 27 717911 0 0x0000001b 0 27 717911 0 1b 00 00 00 57 f4 0a 00 00 00 00 00 ....W....... +6724 19.927369833 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285725 27 23 -76199334 -1054115807 0x00000017 1 -76199334 -1054115807 -65535 -2013200385 17 00 00 00 5a 4a 75 fb 21 78 2b c1 01 00 ff ff ff ff 00 88 56 0f 00 00 00 00 00 ....ZJu.!x+.........V...... +6726 19.927656174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309036 12 -1 717911 0 0xffffffff 0 -1 717911 0 ff ff ff ff 57 f4 0a 00 00 00 00 00 ....W....... +6728 19.929094315 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309048 12 24 727418 0 0x00000018 0 24 727418 0 18 00 00 00 7a 19 0b 00 00 00 00 00 ....z....... +6730 19.929259539 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309060 24 20 1005192 0 0x00000014 1 1005192 0 -65535 65535 14 00 00 00 88 56 0f 00 00 00 00 00 01 00 ff ff ff ff 00 00 00 00 00 00 .....V.................. +6732 19.929551601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285752 12 -1 727418 0 0xffffffff 0 -1 727418 0 ff ff ff ff 7a 19 0b 00 00 00 00 00 ....z....... +6734 19.963422298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309084 12 26 727419 0 0x0000001a 0 26 727419 0 1a 00 00 00 7b 19 0b 00 00 00 00 00 ....{....... +6736 19.963580132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309096 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1961033728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6738 19.963869333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285764 12 -1 727419 0 0xffffffff 0 -1 727419 0 ff ff ff ff 7b 19 0b 00 00 00 00 00 ....{....... +6740 19.964325428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285776 12 22 717912 0 0x00000016 0 22 717912 0 16 00 00 00 58 f4 0a 00 00 00 00 00 ....X....... +6742 19.964530945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285788 22 18 2067229 0 0x00000012 1 2067229 0 196609 0 12 00 00 00 1d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6744 19.964819670 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309122 12 -1 717912 0 0xffffffff 0 -1 717912 0 ff ff ff ff 58 f4 0a 00 00 00 00 00 ....X....... +6750 20.067705154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309134 12 26 727420 0 0x0000001a 0 26 727420 0 1a 00 00 00 7c 19 0b 00 00 00 00 00 ....|....... +6752 20.067879200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309146 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1960902656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +6754 20.068292379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285810 12 -1 727420 0 0xffffffff 0 -1 727420 0 ff ff ff ff 7c 19 0b 00 00 00 00 00 ....|....... +6756 20.068760872 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285822 12 22 717913 0 0x00000016 0 22 717913 0 16 00 00 00 59 f4 0a 00 00 00 00 00 ....Y....... +6758 20.068966389 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285834 22 18 2067231 0 0x00000012 1 2067231 0 196609 0 12 00 00 00 1f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6760 20.069473505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309172 12 -1 717913 0 0xffffffff 0 -1 717913 0 ff ff ff ff 59 f4 0a 00 00 00 00 00 ....Y....... +6768 20.142442942 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285856 12 -2 82579 82596 0xfffffffe 0 -2 82579 82596 fe ff ff ff 93 42 01 00 a4 42 01 00 .....B...B.. +6772 20.171651125 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309184 12 26 727421 0 0x0000001a 0 26 727421 0 1a 00 00 00 7d 19 0b 00 00 00 00 00 ....}....... +6774 20.171827555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309196 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1960771584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 8b 1f 00 00 00 00 00 ....T.c@.^1@......!....... +6776 20.172181129 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285868 12 -1 727421 0 0xffffffff 0 -1 727421 0 ff ff ff ff 7d 19 0b 00 00 00 00 00 ....}....... +6778 20.172691345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285880 12 22 717914 0 0x00000016 0 22 717914 0 16 00 00 00 5a f4 0a 00 00 00 00 00 ....Z....... +6780 20.172850370 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285892 22 18 2067233 0 0x00000012 1 2067233 0 196609 0 12 00 00 00 21 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +6781 20.172907352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309222 12 101 727422 0 0x00000065 0 101 727422 0 65 00 00 00 7e 19 0b 00 00 00 00 00 e...~....... +6784 20.173177242 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309234 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f4 10 02 00 00 00 00 00 36 dd 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f4 10 02 00 00 00 00 ".....!...o3...............6."".....?.....3...|8.." +6786 20.173628807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285914 12 -1 727422 0 0xffffffff 0 -1 727422 0 ff ff ff ff 7e 19 0b 00 00 00 00 00 ....~....... +6787 20.173671961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309335 12 -1 717914 0 0xffffffff 0 -1 717914 0 ff ff ff ff 5a f4 0a 00 00 00 00 00 ....Z....... +6790 20.174774408 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285926 12 52 717915 0 0x00000034 0 52 717915 0 34 00 00 00 5b f4 0a 00 00 00 00 00 4...[....... +6792 20.174949169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285938 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f4 10 02 00 00 00 00 00 00 00 86 a5 74 75 4d 01 00 00 "0...Dk.................L."".([.................tu" +6794 20.175131559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309347 12 -1 717915 0 0xffffffff 0 -1 717915 0 ff ff ff ff 5b f4 0a 00 00 00 00 00 ....[....... +6796 20.176436424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309359 12 30 727423 0 0x0000001e 0 30 727423 0 1e 00 00 00 7f 19 0b 00 00 00 00 00 ............ +6798 20.176587343 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309371 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1960640512 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 23 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......#........... +6800 20.176908255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377285990 12 -1 727423 0 0xffffffff 0 -1 727423 0 ff ff ff ff 7f 19 0b 00 00 00 00 00 ............ +6802 20.177526236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286002 12 26 717916 0 0x0000001a 0 26 717916 0 1a 00 00 00 5c f4 0a 00 00 00 00 00 ....\....... +6804 20.177667379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286014 26 22 2067235 0 0x00000016 1 2067235 0 196609 0 16 00 00 00 23 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....#..................... +6806 20.177949429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309401 12 -1 717916 0 0xffffffff 0 -1 717916 0 ff ff ff ff 5c f4 0a 00 00 00 00 00 ....\....... +6811 20.210300922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309413 12 -2 82597 82579 0xfffffffe 0 -2 82597 82579 fe ff ff ff a5 42 01 00 93 42 01 00 .....B...B.. +6814 20.275774240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309425 12 26 727424 0 0x0000001a 0 26 727424 0 1a 00 00 00 80 19 0b 00 00 00 00 00 ............ +6816 20.275962114 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309437 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1960509440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 8b 1f 00 00 00 00 00 ....T.c@.^1@......%....... +6818 20.276362419 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286040 12 -1 727424 0 0xffffffff 0 -1 727424 0 ff ff ff ff 80 19 0b 00 00 00 00 00 ............ +6820 20.276894808 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286052 12 22 717917 0 0x00000016 0 22 717917 0 16 00 00 00 5d f4 0a 00 00 00 00 00 ....]....... +6822 20.277058363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286064 22 18 2067237 0 0x00000012 1 2067237 0 196609 0 12 00 00 00 25 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +6824 20.277344465 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309463 12 -1 717917 0 0xffffffff 0 -1 717917 0 ff ff ff ff 5d f4 0a 00 00 00 00 00 ....]....... +6826 20.378577471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309475 12 26 727425 0 0x0000001a 0 26 727425 0 1a 00 00 00 81 19 0b 00 00 00 00 00 ............ +6829 20.378763914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309487 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1960378368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 8b 1f 00 00 00 00 00 ....T.c@.^1@......'....... +6832 20.379203081 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286086 12 -1 727425 0 0xffffffff 0 -1 727425 0 ff ff ff ff 81 19 0b 00 00 00 00 00 ............ +6834 20.379695415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286098 12 22 717918 0 0x00000016 0 22 717918 0 16 00 00 00 5e f4 0a 00 00 00 00 00 ....^....... +6836 20.379900694 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286110 22 18 2067239 0 0x00000012 1 2067239 0 196609 0 12 00 00 00 27 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +6838 20.380182743 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309513 12 -1 717918 0 0xffffffff 0 -1 717918 0 ff ff ff ff 5e f4 0a 00 00 00 00 00 ....^....... +6842 20.478515863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309525 12 101 727426 0 0x00000065 0 101 727426 0 65 00 00 00 82 19 0b 00 00 00 00 00 e........... +6844 20.478703260 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309537 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f5 10 02 00 00 00 00 00 68 de 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f5 10 02 00 00 00 00 ".....!...o3...............h."".....?.....3...|8.." +6846 20.479079723 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286132 12 -1 727426 0 0xffffffff 0 -1 727426 0 ff ff ff ff 82 19 0b 00 00 00 00 00 ............ +6848 20.480807066 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286144 12 52 717919 0 0x00000034 0 52 717919 0 34 00 00 00 5f f4 0a 00 00 00 00 00 4..._....... +6850 20.480975866 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286156 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f5 10 02 00 00 00 00 00 00 00 5d 4c a3 75 4d 01 00 00 "0...Dk.................L."".([...............]L.u" +6852 20.481365204 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309638 12 -1 717919 0 0xffffffff 0 -1 717919 0 ff ff ff ff 5f f4 0a 00 00 00 00 00 ...._....... +6854 20.481640339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309650 12 26 727427 0 0x0000001a 0 26 727427 0 1a 00 00 00 83 19 0b 00 00 00 00 00 ............ +6856 20.481799841 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309662 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1960247296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 8b 1f 00 00 00 00 00 ....T.c@.^1@......)....... +6858 20.481936455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309688 12 30 727428 0 0x0000001e 0 30 727428 0 1e 00 00 00 84 19 0b 00 00 00 00 00 ............ +6860 20.482021570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309700 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1960116224 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2b 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......+........... +6862 20.482115984 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286208 12 -1 727427 0 0xffffffff 0 -1 727427 0 ff ff ff ff 83 19 0b 00 00 00 00 00 ............ +6864 20.482309818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286220 12 -1 727428 0 0xffffffff 0 -1 727428 0 ff ff ff ff 84 19 0b 00 00 00 00 00 ............ +6866 20.482493639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286232 12 22 717920 0 0x00000016 0 22 717920 0 16 00 00 00 60 f4 0a 00 00 00 00 00 ....`....... +6868 20.482640266 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286244 22 18 2067241 0 0x00000012 1 2067241 0 196609 0 12 00 00 00 29 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +6870 20.482778788 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286266 12 26 717921 0 0x0000001a 0 26 717921 0 1a 00 00 00 61 f4 0a 00 00 00 00 00 ....a....... +6872 20.482866287 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286278 26 22 2067243 0 0x00000016 1 2067243 0 196609 0 16 00 00 00 2b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....+..................... +6874 20.482959032 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309730 12 -1 717920 0 0xffffffff 0 -1 717920 0 ff ff ff ff 60 f4 0a 00 00 00 00 00 ....`....... +6876 20.483251572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309742 12 -1 717921 0 0xffffffff 0 -1 717921 0 ff ff ff ff 61 f4 0a 00 00 00 00 00 ....a....... +6888 20.584049463 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309754 12 26 727429 0 0x0000001a 0 26 727429 0 1a 00 00 00 85 19 0b 00 00 00 00 00 ............ +6890 20.584277630 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309766 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1959985152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 8b 1f 00 00 00 00 00 ....T.c@.^1@......-....... +6892 20.584580898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286304 12 -1 727429 0 0xffffffff 0 -1 727429 0 ff ff ff ff 85 19 0b 00 00 00 00 00 ............ +6894 20.585357428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286316 12 22 717922 0 0x00000016 0 22 717922 0 16 00 00 00 62 f4 0a 00 00 00 00 00 ....b....... +6896 20.585504770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286328 22 18 2067245 0 0x00000012 1 2067245 0 196609 0 12 00 00 00 2d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +6898 20.585712194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309792 12 -1 717922 0 0xffffffff 0 -1 717922 0 ff ff ff ff 62 f4 0a 00 00 00 00 00 ....b....... +6906 20.642100573 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286350 12 -2 82580 82597 0xfffffffe 0 -2 82580 82597 fe ff ff ff 94 42 01 00 a5 42 01 00 .....B...B.. +6910 20.687237501 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309804 12 26 727430 0 0x0000001a 0 26 727430 0 1a 00 00 00 86 19 0b 00 00 00 00 00 ............ +6912 20.687430382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309816 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1959854080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 8b 1f 00 00 00 00 00 ....T.c@.^1@....../....... +6914 20.687881231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286362 12 -1 727430 0 0xffffffff 0 -1 727430 0 ff ff ff ff 86 19 0b 00 00 00 00 00 ............ +6916 20.688191891 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286374 12 22 717923 0 0x00000016 0 22 717923 0 16 00 00 00 63 f4 0a 00 00 00 00 00 ....c....... +6918 20.688350201 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286386 22 18 2067247 0 0x00000012 1 2067247 0 196609 0 12 00 00 00 2f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +6920 20.688644171 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309842 12 -1 717923 0 0xffffffff 0 -1 717923 0 ff ff ff ff 63 f4 0a 00 00 00 00 00 ....c....... +6936 20.711019993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309854 12 -2 82598 82580 0xfffffffe 0 -2 82598 82580 fe ff ff ff a6 42 01 00 94 42 01 00 .....B...B.. +6947 20.783899784 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309866 12 34 727431 0 0x00000022 0 34 727431 0 22 00 00 00 87 19 0b 00 00 00 00 00 """..........." +6949 20.784100533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309878 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 284557312 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f6 10 02 00 00 00 00 00 9a df 22 c3 9d 01 00 00 ".....!...o3.................""....." +6951 20.784229040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309912 12 67 727432 0 0x00000043 0 67 727432 0 43 00 00 00 88 19 0b 00 00 00 00 00 C........... +6953 20.784314156 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309924 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f6 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 0a 65 e0 ca ?.....3...|8...................=B.....&......... +6955 20.784408331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286408 12 -1 727431 0 0xffffffff 0 -1 727431 0 ff ff ff ff 87 19 0b 00 00 00 00 00 ............ +6957 20.784672499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286420 12 -1 727432 0 0xffffffff 0 -1 727432 0 ff ff ff ff 88 19 0b 00 00 00 00 00 ............ +6959 20.785373688 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286432 12 52 717924 0 0x00000034 0 52 717924 0 34 00 00 00 64 f4 0a 00 00 00 00 00 4...d....... +6961 20.785588741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286444 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f6 10 02 00 00 00 00 00 00 00 dd d0 d1 75 4d 01 00 00 "0...Dk.................L."".([..................u" +6963 20.785903454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333309991 12 -1 717924 0 0xffffffff 0 -1 717924 0 ff ff ff ff 64 f4 0a 00 00 00 00 00 ....d....... +6965 20.786934137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310003 12 30 727433 0 0x0000001e 0 30 727433 0 1e 00 00 00 89 19 0b 00 00 00 00 00 ............ +6967 20.787102938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310015 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1959723008 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +6969 20.787385464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286496 12 -1 727433 0 0xffffffff 0 -1 727433 0 ff ff ff ff 89 19 0b 00 00 00 00 00 ............ +6971 20.787824631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286508 12 26 717925 0 0x0000001a 0 26 717925 0 1a 00 00 00 65 f4 0a 00 00 00 00 00 ....e....... +6973 20.787972927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286520 26 22 2067249 0 0x00000016 1 2067249 0 196609 0 16 00 00 00 31 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +6975 20.788210154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310045 12 -1 717925 0 0xffffffff 0 -1 717925 0 ff ff ff ff 65 f4 0a 00 00 00 00 00 ....e....... +6977 20.789979458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310057 12 26 727434 0 0x0000001a 0 26 727434 0 1a 00 00 00 8a 19 0b 00 00 00 00 00 ............ +6979 20.790123463 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310069 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1959591936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 8b 1f 00 00 00 00 00 ....T.c@.^1@......3....... +6981 20.790389776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286546 12 -1 727434 0 0xffffffff 0 -1 727434 0 ff ff ff ff 8a 19 0b 00 00 00 00 00 ............ +6983 20.790739536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286558 12 22 717926 0 0x00000016 0 22 717926 0 16 00 00 00 66 f4 0a 00 00 00 00 00 ....f....... +6985 20.790885687 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286570 22 18 2067251 0 0x00000012 1 2067251 0 196609 0 12 00 00 00 33 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +6987 20.791076899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310095 12 -1 717926 0 0xffffffff 0 -1 717926 0 ff ff ff ff 66 f4 0a 00 00 00 00 00 ....f....... +6993 20.892446280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310107 12 26 727435 0 0x0000001a 0 26 727435 0 1a 00 00 00 8b 19 0b 00 00 00 00 00 ............ +6995 20.892741680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310119 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1959460864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 8b 1f 00 00 00 00 00 ....T.c@.^1@......5....... +6997 20.893090487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286592 12 -1 727435 0 0xffffffff 0 -1 727435 0 ff ff ff ff 8b 19 0b 00 00 00 00 00 ............ +6999 20.893601179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286604 12 22 717927 0 0x00000016 0 22 717927 0 16 00 00 00 67 f4 0a 00 00 00 00 00 ....g....... +7001 20.893770933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286616 22 18 2067253 0 0x00000012 1 2067253 0 196609 0 12 00 00 00 35 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +7003 20.894111395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310145 12 -1 717927 0 0xffffffff 0 -1 717927 0 ff ff ff ff 67 f4 0a 00 00 00 00 00 ....g....... +7007 20.995473146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310157 12 26 727436 0 0x0000001a 0 26 727436 0 1a 00 00 00 8c 19 0b 00 00 00 00 00 ............ +7009 20.995749235 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310169 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1959329792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 8b 1f 00 00 00 00 00 ....T.c@.^1@......7....... +7011 20.996076822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286638 12 -1 727436 0 0xffffffff 0 -1 727436 0 ff ff ff ff 8c 19 0b 00 00 00 00 00 ............ +7013 20.996764421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286650 12 22 717928 0 0x00000016 0 22 717928 0 16 00 00 00 68 f4 0a 00 00 00 00 00 ....h....... +7015 20.996930599 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286662 22 18 2067255 0 0x00000012 1 2067255 0 196609 0 12 00 00 00 37 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +7017 20.997225761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310195 12 -1 717928 0 0xffffffff 0 -1 717928 0 ff ff ff ff 68 f4 0a 00 00 00 00 00 ....h....... +7021 21.088614225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310207 12 34 727437 0 0x00000022 0 34 727437 0 22 00 00 00 8d 19 0b 00 00 00 00 00 """..........." +7023 21.088825464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310219 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 284622848 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f7 10 02 00 00 00 00 00 ca e0 22 c3 9d 01 00 00 ".....!...o3.................""....." +7025 21.088916302 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310253 12 67 727438 0 0x00000043 0 67 727438 0 43 00 00 00 8e 19 0b 00 00 00 00 00 C........... +7027 21.089034319 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310265 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f7 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 34 b3 84 f2 ca ?.....3...|8...................=B.....&......... +7028 21.089123249 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286684 12 -1 727437 0 0xffffffff 0 -1 727437 0 ff ff ff ff 8d 19 0b 00 00 00 00 00 ............ +7031 21.089362860 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286696 12 -1 727438 0 0xffffffff 0 -1 727438 0 ff ff ff ff 8e 19 0b 00 00 00 00 00 ............ +7033 21.090653896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286708 12 52 717929 0 0x00000034 0 52 717929 0 34 00 00 00 69 f4 0a 00 00 00 00 00 4...i....... +7035 21.090872526 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286720 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f7 10 02 00 00 00 00 00 00 00 f9 5c 00 76 4d 01 00 00 "0...Dk.................L."".([................\.v" +7037 21.091149807 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310332 12 -1 717929 0 0xffffffff 0 -1 717929 0 ff ff ff ff 69 f4 0a 00 00 00 00 00 ....i....... +7038 21.092137814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310344 12 30 727439 0 0x0000001e 0 30 727439 0 1e 00 00 00 8f 19 0b 00 00 00 00 00 ............ +7040 21.092299938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310356 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1959198720 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +7042 21.092617273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286772 12 -1 727439 0 0xffffffff 0 -1 727439 0 ff ff ff ff 8f 19 0b 00 00 00 00 00 ............ +7044 21.092925310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286784 12 26 717930 0 0x0000001a 0 26 717930 0 1a 00 00 00 6a f4 0a 00 00 00 00 00 ....j....... +7046 21.093065977 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286796 26 22 2067257 0 0x00000016 1 2067257 0 196609 0 16 00 00 00 39 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +7048 21.093305588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310386 12 -1 717930 0 0xffffffff 0 -1 717930 0 ff ff ff ff 6a f4 0a 00 00 00 00 00 ....j....... +7050 21.100016356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310398 12 26 727440 0 0x0000001a 0 26 727440 0 1a 00 00 00 90 19 0b 00 00 00 00 00 ............ +7052 21.100161552 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310410 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1959067648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 8b 1f 00 00 00 00 00 ....T.c@.^1@......;....... +7054 21.100438595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286822 12 -1 727440 0 0xffffffff 0 -1 727440 0 ff ff ff ff 90 19 0b 00 00 00 00 00 ............ +7056 21.100872040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286834 12 22 717931 0 0x00000016 0 22 717931 0 16 00 00 00 6b f4 0a 00 00 00 00 00 ....k....... +7058 21.101017475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286846 22 18 2067259 0 0x00000012 1 2067259 0 196609 0 12 00 00 00 3b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +7060 21.101249695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310436 12 -1 717931 0 0xffffffff 0 -1 717931 0 ff ff ff ff 6b f4 0a 00 00 00 00 00 ....k....... +7068 21.144228935 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286868 12 -2 82581 82598 0xfffffffe 0 -2 82581 82598 fe ff ff ff 95 42 01 00 a6 42 01 00 .....B...B.. +7074 21.202919483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310448 12 26 727441 0 0x0000001a 0 26 727441 0 1a 00 00 00 91 19 0b 00 00 00 00 00 ............ +7076 21.203099251 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310460 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1958936576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 8b 1f 00 00 00 00 00 ....T.c@.^1@......=....... +7078 21.203406572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286880 12 -1 727441 0 0xffffffff 0 -1 727441 0 ff ff ff ff 91 19 0b 00 00 00 00 00 ............ +7080 21.204324484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286892 12 22 717932 0 0x00000016 0 22 717932 0 16 00 00 00 6c f4 0a 00 00 00 00 00 ....l....... +7082 21.204485416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286904 22 18 2067261 0 0x00000012 1 2067261 0 196609 0 12 00 00 00 3d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +7084 21.204817057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310486 12 -1 717932 0 0xffffffff 0 -1 717932 0 ff ff ff ff 6c f4 0a 00 00 00 00 00 ....l....... +7086 21.211946249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310498 12 -2 82599 82581 0xfffffffe 0 -2 82599 82581 fe ff ff ff a7 42 01 00 95 42 01 00 .....B...B.. +7090 21.306189775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310510 12 26 727442 0 0x0000001a 0 26 727442 0 1a 00 00 00 92 19 0b 00 00 00 00 00 ............ +7092 21.306381464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310522 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1958805504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 8b 1f 00 00 00 00 00 ....T.c@.^1@......?....... +7094 21.306741238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286926 12 -1 727442 0 0xffffffff 0 -1 727442 0 ff ff ff ff 92 19 0b 00 00 00 00 00 ............ +7096 21.307177544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286938 12 22 717933 0 0x00000016 0 22 717933 0 16 00 00 00 6d f4 0a 00 00 00 00 00 ....m....... +7098 21.307387114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286950 22 18 2067263 0 0x00000012 1 2067263 0 196609 0 12 00 00 00 3f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +7100 21.307832956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310548 12 -1 717933 0 0xffffffff 0 -1 717933 0 ff ff ff ff 6d f4 0a 00 00 00 00 00 ....m....... +7106 21.394504070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310560 12 101 727443 0 0x00000065 0 101 727443 0 65 00 00 00 93 19 0b 00 00 00 00 00 e........... +7108 21.394710541 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310572 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f8 10 02 00 00 00 00 00 fc e1 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f8 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +7110 21.394968987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286972 12 -1 727443 0 0xffffffff 0 -1 727443 0 ff ff ff ff 93 19 0b 00 00 00 00 00 ............ +7112 21.395863533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286984 12 52 717934 0 0x00000034 0 52 717934 0 34 00 00 00 6e f4 0a 00 00 00 00 00 4...n....... +7114 21.396027088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377286996 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f8 10 02 00 00 00 00 00 00 00 f5 f4 2e 76 4d 01 00 00 "0...Dk.................L."".([..................v" +7116 21.396299601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310673 12 -1 717934 0 0xffffffff 0 -1 717934 0 ff ff ff ff 6e f4 0a 00 00 00 00 00 ....n....... +7118 21.397099018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310685 12 30 727444 0 0x0000001e 0 30 727444 0 1e 00 00 00 94 19 0b 00 00 00 00 00 ............ +7120 21.397258282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310697 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1958674432 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +7122 21.397569180 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287048 12 -1 727444 0 0xffffffff 0 -1 727444 0 ff ff ff ff 94 19 0b 00 00 00 00 00 ............ +7124 21.397965193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287060 12 26 717935 0 0x0000001a 0 26 717935 0 1a 00 00 00 6f f4 0a 00 00 00 00 00 ....o....... +7126 21.398219347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287072 26 22 2067265 0 0x00000016 1 2067265 0 196609 0 16 00 00 00 41 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +7128 21.398447990 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310727 12 -1 717935 0 0xffffffff 0 -1 717935 0 ff ff ff ff 6f f4 0a 00 00 00 00 00 ....o....... +7130 21.409033298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310739 12 26 727445 0 0x0000001a 0 26 727445 0 1a 00 00 00 95 19 0b 00 00 00 00 00 ............ +7132 21.409194231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310751 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1958543360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 8b 1f 00 00 00 00 00 ....T.c@.^1@......C....... +7134 21.409575224 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287098 12 -1 727445 0 0xffffffff 0 -1 727445 0 ff ff ff ff 95 19 0b 00 00 00 00 00 ............ +7136 21.409822464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287110 12 22 717936 0 0x00000016 0 22 717936 0 16 00 00 00 70 f4 0a 00 00 00 00 00 ....p....... +7138 21.409969330 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287122 22 18 2067267 0 0x00000012 1 2067267 0 196609 0 12 00 00 00 43 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +7140 21.410233498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310777 12 -1 717936 0 0xffffffff 0 -1 717936 0 ff ff ff ff 70 f4 0a 00 00 00 00 00 ....p....... +7146 21.511466503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310789 12 26 727446 0 0x0000001a 0 26 727446 0 1a 00 00 00 96 19 0b 00 00 00 00 00 ............ +7148 21.511638165 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310801 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1958412288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 8b 1f 00 00 00 00 00 ....T.c@.^1@......E....... +7150 21.511970520 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287144 12 -1 727446 0 0xffffffff 0 -1 727446 0 ff ff ff ff 96 19 0b 00 00 00 00 00 ............ +7152 21.512265205 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287156 12 22 717937 0 0x00000016 0 22 717937 0 16 00 00 00 71 f4 0a 00 00 00 00 00 ....q....... +7154 21.512423992 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287168 22 18 2067269 0 0x00000012 1 2067269 0 196609 0 12 00 00 00 45 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +7156 21.512738466 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310827 12 -1 717937 0 0xffffffff 0 -1 717937 0 ff ff ff ff 71 f4 0a 00 00 00 00 00 ....q....... +7158 21.614642143 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310839 12 26 727447 0 0x0000001a 0 26 727447 0 1a 00 00 00 97 19 0b 00 00 00 00 00 ............ +7160 21.614887238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310851 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1958281216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 8b 1f 00 00 00 00 00 ....T.c@.^1@......G....... +7162 21.615210772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287190 12 -1 727447 0 0xffffffff 0 -1 727447 0 ff ff ff ff 97 19 0b 00 00 00 00 00 ............ +7164 21.615599394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287202 12 22 717938 0 0x00000016 0 22 717938 0 16 00 00 00 72 f4 0a 00 00 00 00 00 ....r....... +7166 21.615793228 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287214 22 18 2067271 0 0x00000012 1 2067271 0 196609 0 12 00 00 00 47 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +7168 21.616084576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310877 12 -1 717938 0 0xffffffff 0 -1 717938 0 ff ff ff ff 72 f4 0a 00 00 00 00 00 ....r....... +7176 21.644315481 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287236 12 -2 82582 82599 0xfffffffe 0 -2 82582 82599 fe ff ff ff 96 42 01 00 a7 42 01 00 .....B...B.. +7182 21.698314190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310889 12 101 727448 0 0x00000065 0 101 727448 0 65 00 00 00 98 19 0b 00 00 00 00 00 e........... +7184 21.698532104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333310901 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 f9 10 02 00 00 00 00 00 2b e3 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 f9 10 02 00 00 00 00 ".....!...o3...............+."".....?.....3...|8.." +7186 21.698858976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287248 12 -1 727448 0 0xffffffff 0 -1 727448 0 ff ff ff ff 98 19 0b 00 00 00 00 00 ............ +7188 21.699951649 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287260 12 52 717939 0 0x00000034 0 52 717939 0 34 00 00 00 73 f4 0a 00 00 00 00 00 4...s....... +7190 21.700112343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287272 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 f9 10 02 00 00 00 00 00 00 00 be 5d 5d 76 4d 01 00 00 "0...Dk.................L."".([................]]v" +7192 21.700484514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311002 12 -1 717939 0 0xffffffff 0 -1 717939 0 ff ff ff ff 73 f4 0a 00 00 00 00 00 ....s....... +7194 21.701486826 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311014 12 30 727449 0 0x0000001e 0 30 727449 0 1e 00 00 00 99 19 0b 00 00 00 00 00 ............ +7196 21.701633453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311026 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1958150144 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +7198 21.702362299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287324 12 -1 727449 0 0xffffffff 0 -1 727449 0 ff ff ff ff 99 19 0b 00 00 00 00 00 ............ +7200 21.702917576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287336 12 26 717940 0 0x0000001a 0 26 717940 0 1a 00 00 00 74 f4 0a 00 00 00 00 00 ....t....... +7202 21.703060150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287348 26 22 2067273 0 0x00000016 1 2067273 0 196609 0 16 00 00 00 49 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +7204 21.703371763 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311056 12 -1 717940 0 0xffffffff 0 -1 717940 0 ff ff ff ff 74 f4 0a 00 00 00 00 00 ....t....... +7206 21.712573051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311068 12 -2 82600 82582 0xfffffffe 0 -2 82600 82582 fe ff ff ff a8 42 01 00 96 42 01 00 .....B...B.. +7210 21.717779160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311080 12 26 727450 0 0x0000001a 0 26 727450 0 1a 00 00 00 9a 19 0b 00 00 00 00 00 ............ +7212 21.717942238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311092 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1958019072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 8b 1f 00 00 00 00 00 ....T.c@.^1@......K....... +7214 21.718286276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287374 12 -1 727450 0 0xffffffff 0 -1 727450 0 ff ff ff ff 9a 19 0b 00 00 00 00 00 ............ +7216 21.718685865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287386 12 22 717941 0 0x00000016 0 22 717941 0 16 00 00 00 75 f4 0a 00 00 00 00 00 ....u....... +7218 21.718837976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287398 22 18 2067275 0 0x00000012 1 2067275 0 196609 0 12 00 00 00 4b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +7220 21.719172478 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311118 12 -1 717941 0 0xffffffff 0 -1 717941 0 ff ff ff ff 75 f4 0a 00 00 00 00 00 ....u....... +7222 21.820109606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311130 12 26 727451 0 0x0000001a 0 26 727451 0 1a 00 00 00 9b 19 0b 00 00 00 00 00 ............ +7224 21.820350647 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311142 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1957888000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 8b 1f 00 00 00 00 00 ....T.c@.^1@......M....... +7226 21.820743561 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287420 12 -1 727451 0 0xffffffff 0 -1 727451 0 ff ff ff ff 9b 19 0b 00 00 00 00 00 ............ +7228 21.821266413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287432 12 22 717942 0 0x00000016 0 22 717942 0 16 00 00 00 76 f4 0a 00 00 00 00 00 ....v....... +7230 21.821459770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287444 22 18 2067277 0 0x00000012 1 2067277 0 196609 0 12 00 00 00 4d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +7232 21.821641445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311168 12 -1 717942 0 0xffffffff 0 -1 717942 0 ff ff ff ff 76 f4 0a 00 00 00 00 00 ....v....... +7268 21.923454046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311180 12 26 727452 0 0x0000001a 0 26 727452 0 1a 00 00 00 9c 19 0b 00 00 00 00 00 ............ +7270 21.923770666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311192 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1957756928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 8b 1f 00 00 00 00 00 ....T.c@.^1@......O....... +7272 21.924162865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287466 12 -1 727452 0 0xffffffff 0 -1 727452 0 ff ff ff ff 9c 19 0b 00 00 00 00 00 ............ +7274 21.924716949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287478 12 22 717943 0 0x00000016 0 22 717943 0 16 00 00 00 77 f4 0a 00 00 00 00 00 ....w....... +7276 21.924878359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287490 22 18 2067279 0 0x00000012 1 2067279 0 196609 0 12 00 00 00 4f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +7278 21.925155878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311218 12 -1 717943 0 0xffffffff 0 -1 717943 0 ff ff ff ff 77 f4 0a 00 00 00 00 00 ....w....... +7293 22.002852917 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311230 12 34 727453 0 0x00000022 0 34 727453 0 22 00 00 00 9d 19 0b 00 00 00 00 00 """..........." +7295 22.003042221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311242 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 284819456 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fa 10 02 00 00 00 00 00 5c e4 22 c3 9d 01 00 00 ".....!...o3...............\.""....." +7297 22.003188133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311276 12 67 727454 0 0x00000043 0 67 727454 0 43 00 00 00 9e 19 0b 00 00 00 00 00 C........... +7299 22.003274202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311288 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fa 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc 46 03 29 cb ?.....3...|8...................=B.....&......... +7300 22.003336668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287512 12 -1 727453 0 0xffffffff 0 -1 727453 0 ff ff ff ff 9d 19 0b 00 00 00 00 00 ............ +7304 22.003552675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287524 12 -1 727454 0 0xffffffff 0 -1 727454 0 ff ff ff ff 9e 19 0b 00 00 00 00 00 ............ +7310 22.004466295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287536 12 52 717944 0 0x00000034 0 52 717944 0 34 00 00 00 78 f4 0a 00 00 00 00 00 4...x....... +7312 22.004690647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287548 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fa 10 02 00 00 00 00 00 00 00 ea d4 8b 76 4d 01 00 00 "0...Dk.................L."".([..................v" +7317 22.005020142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311355 12 -1 717944 0 0xffffffff 0 -1 717944 0 ff ff ff ff 78 f4 0a 00 00 00 00 00 ....x....... +7319 22.005911827 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311367 12 30 727455 0 0x0000001e 0 30 727455 0 1e 00 00 00 9f 19 0b 00 00 00 00 00 ............ +7323 22.006090641 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311379 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1957625856 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +7325 22.006365538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287600 12 -1 727455 0 0xffffffff 0 -1 727455 0 ff ff ff ff 9f 19 0b 00 00 00 00 00 ............ +7327 22.006824493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287612 12 26 717945 0 0x0000001a 0 26 717945 0 1a 00 00 00 79 f4 0a 00 00 00 00 00 ....y....... +7329 22.007156849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287624 26 22 2067281 0 0x00000016 1 2067281 0 196609 0 16 00 00 00 51 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +7331 22.007571220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311409 12 -1 717945 0 0xffffffff 0 -1 717945 0 ff ff ff ff 79 f4 0a 00 00 00 00 00 ....y....... +7356 22.027373314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311421 12 26 727456 0 0x0000001a 0 26 727456 0 1a 00 00 00 a0 19 0b 00 00 00 00 00 ............ +7358 22.027545929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311433 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1957494784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8b 1f 00 00 00 00 00 ....T.c@.^1@......S....... +7360 22.027901888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287650 12 -1 727456 0 0xffffffff 0 -1 727456 0 ff ff ff ff a0 19 0b 00 00 00 00 00 ............ +7362 22.028390646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287662 12 22 717946 0 0x00000016 0 22 717946 0 16 00 00 00 7a f4 0a 00 00 00 00 00 ....z....... +7364 22.028587818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287674 22 18 2067283 0 0x00000012 1 2067283 0 196609 0 12 00 00 00 53 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +7366 22.028897762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311459 12 -1 717946 0 0xffffffff 0 -1 717946 0 ff ff ff ff 7a f4 0a 00 00 00 00 00 ....z....... +7368 22.131418467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311471 12 26 727457 0 0x0000001a 0 26 727457 0 1a 00 00 00 a1 19 0b 00 00 00 00 00 ............ +7370 22.131618261 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311483 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1957363712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 8b 1f 00 00 00 00 00 ....T.c@.^1@......U....... +7372 22.131976843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287696 12 -1 727457 0 0xffffffff 0 -1 727457 0 ff ff ff ff a1 19 0b 00 00 00 00 00 ............ +7374 22.132467270 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287708 12 22 717947 0 0x00000016 0 22 717947 0 16 00 00 00 7b f4 0a 00 00 00 00 00 ....{....... +7376 22.132629156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287720 22 18 2067285 0 0x00000012 1 2067285 0 196609 0 12 00 00 00 55 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +7378 22.132880449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311509 12 -1 717947 0 0xffffffff 0 -1 717947 0 ff ff ff ff 7b f4 0a 00 00 00 00 00 ....{....... +7386 22.144573450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287742 12 -2 82583 82600 0xfffffffe 0 -2 82583 82600 fe ff ff ff 97 42 01 00 a8 42 01 00 .....B...B.. +7393 22.214575291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311521 12 -2 82601 82583 0xfffffffe 0 -2 82601 82583 fe ff ff ff a9 42 01 00 97 42 01 00 .....B...B.. +7396 22.235821962 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311533 12 26 727458 0 0x0000001a 0 26 727458 0 1a 00 00 00 a2 19 0b 00 00 00 00 00 ............ +7398 22.236040115 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311545 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1957232640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8b 1f 00 00 00 00 00 ....T.c@.^1@......W....... +7400 22.236409903 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287754 12 -1 727458 0 0xffffffff 0 -1 727458 0 ff ff ff ff a2 19 0b 00 00 00 00 00 ............ +7402 22.236953020 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287766 12 22 717948 0 0x00000016 0 22 717948 0 16 00 00 00 7c f4 0a 00 00 00 00 00 ....|....... +7404 22.237156153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287778 22 18 2067287 0 0x00000012 1 2067287 0 196609 0 12 00 00 00 57 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +7406 22.237583876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311571 12 -1 717948 0 0xffffffff 0 -1 717948 0 ff ff ff ff 7c f4 0a 00 00 00 00 00 ....|....... +7408 22.308248758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311583 12 101 727459 0 0x00000065 0 101 727459 0 65 00 00 00 a3 19 0b 00 00 00 00 00 e........... +7410 22.308491230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311595 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fb 10 02 00 00 00 00 00 8d e5 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fb 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +7412 22.308818102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287800 12 -1 727459 0 0xffffffff 0 -1 727459 0 ff ff ff ff a3 19 0b 00 00 00 00 00 ............ +7414 22.310042858 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287812 12 52 717949 0 0x00000034 0 52 717949 0 34 00 00 00 7d f4 0a 00 00 00 00 00 4...}....... +7416 22.310216904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287824 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fb 10 02 00 00 00 00 00 00 00 fc 72 ba 76 4d 01 00 00 "0...Dk.................L."".([................r.v" +7418 22.310576200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311696 12 -1 717949 0 0xffffffff 0 -1 717949 0 ff ff ff ff 7d f4 0a 00 00 00 00 00 ....}....... +7420 22.311464548 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311708 12 30 727460 0 0x0000001e 0 30 727460 0 1e 00 00 00 a4 19 0b 00 00 00 00 00 ............ +7422 22.311610460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311720 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1957101568 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +7424 22.311904907 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287876 12 -1 727460 0 0xffffffff 0 -1 727460 0 ff ff ff ff a4 19 0b 00 00 00 00 00 ............ +7426 22.312393427 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287888 12 26 717950 0 0x0000001a 0 26 717950 0 1a 00 00 00 7e f4 0a 00 00 00 00 00 ....~....... +7428 22.312560558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287900 26 22 2067289 0 0x00000016 1 2067289 0 196609 0 16 00 00 00 59 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +7430 22.312914371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311750 12 -1 717950 0 0xffffffff 0 -1 717950 0 ff ff ff ff 7e f4 0a 00 00 00 00 00 ....~....... +7432 22.339628220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311762 12 26 727461 0 0x0000001a 0 26 727461 0 1a 00 00 00 a5 19 0b 00 00 00 00 00 ............ +7434 22.339856148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311774 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1956970496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8b 1f 00 00 00 00 00 ....T.c@.^1@......[....... +7436 22.340185881 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287926 12 -1 727461 0 0xffffffff 0 -1 727461 0 ff ff ff ff a5 19 0b 00 00 00 00 00 ............ +7438 22.340634823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287938 12 22 717951 0 0x00000016 0 22 717951 0 16 00 00 00 7f f4 0a 00 00 00 00 00 ............ +7440 22.340800047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287950 22 18 2067291 0 0x00000012 1 2067291 0 196609 0 12 00 00 00 5b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +7442 22.341379642 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311800 12 -1 717951 0 0xffffffff 0 -1 717951 0 ff ff ff ff 7f f4 0a 00 00 00 00 00 ............ +7448 22.443915367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311812 12 26 727462 0 0x0000001a 0 26 727462 0 1a 00 00 00 a6 19 0b 00 00 00 00 00 ............ +7450 22.444114923 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311824 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1956839424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 8b 1f 00 00 00 00 00 ....T.c@.^1@......]....... +7452 22.444423676 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287972 12 -1 727462 0 0xffffffff 0 -1 727462 0 ff ff ff ff a6 19 0b 00 00 00 00 00 ............ +7454 22.444788933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287984 12 22 717952 0 0x00000016 0 22 717952 0 16 00 00 00 80 f4 0a 00 00 00 00 00 ............ +7456 22.444949865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377287996 22 18 2067293 0 0x00000012 1 2067293 0 196609 0 12 00 00 00 5d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +7458 22.445499182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311850 12 -1 717952 0 0xffffffff 0 -1 717952 0 ff ff ff ff 80 f4 0a 00 00 00 00 00 ............ +7464 22.547842503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311862 12 26 727463 0 0x0000001a 0 26 727463 0 1a 00 00 00 a7 19 0b 00 00 00 00 00 ............ +7466 22.548139095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311874 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1956708352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8b 1f 00 00 00 00 00 ....T.c@.^1@......_....... +7468 22.548481703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288018 12 -1 727463 0 0xffffffff 0 -1 727463 0 ff ff ff ff a7 19 0b 00 00 00 00 00 ............ +7470 22.548858166 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288030 12 22 717953 0 0x00000016 0 22 717953 0 16 00 00 00 81 f4 0a 00 00 00 00 00 ............ +7472 22.549074411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288042 22 18 2067295 0 0x00000012 1 2067295 0 196609 0 12 00 00 00 5f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +7474 22.549355984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311900 12 -1 717953 0 0xffffffff 0 -1 717953 0 ff ff ff ff 81 f4 0a 00 00 00 00 00 ............ +7476 22.613897562 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311912 12 101 727464 0 0x00000065 0 101 727464 0 65 00 00 00 a8 19 0b 00 00 00 00 00 e........... +7478 22.614134789 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333311924 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fc 10 02 00 00 00 00 00 bf e6 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fc 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +7480 22.614382267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288064 12 -1 727464 0 0xffffffff 0 -1 727464 0 ff ff ff ff a8 19 0b 00 00 00 00 00 ............ +7482 22.615574837 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288076 12 52 717954 0 0x00000034 0 52 717954 0 34 00 00 00 82 f4 0a 00 00 00 00 00 4........... +7484 22.615736008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288088 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fc 10 02 00 00 00 00 00 00 00 59 15 e9 76 4d 01 00 00 "0...Dk.................L."".([...............Y..v" +7486 22.616112709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312025 12 -1 717954 0 0xffffffff 0 -1 717954 0 ff ff ff ff 82 f4 0a 00 00 00 00 00 ............ +7488 22.616842747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312037 12 30 727465 0 0x0000001e 0 30 727465 0 1e 00 00 00 a9 19 0b 00 00 00 00 00 ............ +7490 22.617112637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312049 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1956577280 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +7492 22.617393970 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288140 12 -1 727465 0 0xffffffff 0 -1 727465 0 ff ff ff ff a9 19 0b 00 00 00 00 00 ............ +7494 22.617772341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288152 12 26 717955 0 0x0000001a 0 26 717955 0 1a 00 00 00 83 f4 0a 00 00 00 00 00 ............ +7496 22.617958784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288164 26 22 2067297 0 0x00000016 1 2067297 0 196609 0 16 00 00 00 61 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +7498 22.618232012 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312079 12 -1 717955 0 0xffffffff 0 -1 717955 0 ff ff ff ff 83 f4 0a 00 00 00 00 00 ............ +7506 22.646660328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288190 12 -2 82584 82601 0xfffffffe 0 -2 82584 82601 fe ff ff ff 98 42 01 00 a9 42 01 00 .....B...B.. +7508 22.651585579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312091 12 26 727466 0 0x0000001a 0 26 727466 0 1a 00 00 00 aa 19 0b 00 00 00 00 00 ............ +7510 22.651751757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312103 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1956446208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8b 1f 00 00 00 00 00 ....T.c@.^1@......c....... +7512 22.652025700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288202 12 -1 727466 0 0xffffffff 0 -1 727466 0 ff ff ff ff aa 19 0b 00 00 00 00 00 ............ +7514 22.652336359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288214 12 22 717956 0 0x00000016 0 22 717956 0 16 00 00 00 84 f4 0a 00 00 00 00 00 ............ +7516 22.652488232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288226 22 18 2067299 0 0x00000012 1 2067299 0 196609 0 12 00 00 00 63 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +7518 22.652699232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312129 12 -1 717956 0 0xffffffff 0 -1 717956 0 ff ff ff ff 84 f4 0a 00 00 00 00 00 ............ +7524 22.716084719 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312141 12 -2 82602 82584 0xfffffffe 0 -2 82602 82584 fe ff ff ff aa 42 01 00 98 42 01 00 .....B...B.. +7528 22.754047632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312153 12 26 727467 0 0x0000001a 0 26 727467 0 1a 00 00 00 ab 19 0b 00 00 00 00 00 ............ +7530 22.754294157 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312165 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1956315136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 8b 1f 00 00 00 00 00 ....T.c@.^1@......e....... +7532 22.754689455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288248 12 -1 727467 0 0xffffffff 0 -1 727467 0 ff ff ff ff ab 19 0b 00 00 00 00 00 ............ +7534 22.755203247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288260 12 22 717957 0 0x00000016 0 22 717957 0 16 00 00 00 85 f4 0a 00 00 00 00 00 ............ +7536 22.755365133 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288272 22 18 2067301 0 0x00000012 1 2067301 0 196609 0 12 00 00 00 65 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +7538 22.755634308 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312191 12 -1 717957 0 0xffffffff 0 -1 717957 0 ff ff ff ff 85 f4 0a 00 00 00 00 00 ............ +7540 22.857688665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312203 12 26 727468 0 0x0000001a 0 26 727468 0 1a 00 00 00 ac 19 0b 00 00 00 00 00 ............ +7542 22.857869864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312215 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1956184064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8b 1f 00 00 00 00 00 ....T.c@.^1@......g....... +7544 22.858250618 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288294 12 -1 727468 0 0xffffffff 0 -1 727468 0 ff ff ff ff ac 19 0b 00 00 00 00 00 ............ +7546 22.858701468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288306 12 22 717958 0 0x00000016 0 22 717958 0 16 00 00 00 86 f4 0a 00 00 00 00 00 ............ +7548 22.858862638 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288318 22 18 2067303 0 0x00000012 1 2067303 0 196609 0 12 00 00 00 67 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +7550 22.859218359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312241 12 -1 717958 0 0xffffffff 0 -1 717958 0 ff ff ff ff 86 f4 0a 00 00 00 00 00 ............ +7556 22.919434309 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312253 12 101 727469 0 0x00000065 0 101 727469 0 65 00 00 00 ad 19 0b 00 00 00 00 00 e........... +7558 22.919621944 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312265 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fd 10 02 00 00 00 00 00 f0 e7 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fd 10 02 00 00 00 00 ".....!...o3................."".....?.....3...|8.." +7560 22.919932604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288340 12 -1 727469 0 0xffffffff 0 -1 727469 0 ff ff ff ff ad 19 0b 00 00 00 00 00 ............ +7562 22.920976162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288352 12 52 717959 0 0x00000034 0 52 717959 0 34 00 00 00 87 f4 0a 00 00 00 00 00 4........... +7564 22.921139956 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288364 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fd 10 02 00 00 00 00 00 00 00 bc aa 17 77 4d 01 00 00 "0...Dk.................L."".([..................w" +7566 22.921735048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312366 12 -1 717959 0 0xffffffff 0 -1 717959 0 ff ff ff ff 87 f4 0a 00 00 00 00 00 ............ +7568 22.922648430 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312378 12 30 727470 0 0x0000001e 0 30 727470 0 1e 00 00 00 ae 19 0b 00 00 00 00 00 ............ +7570 22.922888517 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312390 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1956052992 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 69 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......i........... +7572 22.923241615 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288416 12 -1 727470 0 0xffffffff 0 -1 727470 0 ff ff ff ff ae 19 0b 00 00 00 00 00 ............ +7574 22.923626423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288428 12 26 717960 0 0x0000001a 0 26 717960 0 1a 00 00 00 88 f4 0a 00 00 00 00 00 ............ +7576 22.923768520 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288440 26 22 2067305 0 0x00000016 1 2067305 0 196609 0 16 00 00 00 69 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....i..................... +7578 22.924056292 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312420 12 -1 717960 0 0xffffffff 0 -1 717960 0 ff ff ff ff 88 f4 0a 00 00 00 00 00 ............ +7612 22.961488724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312432 12 26 727471 0 0x0000001a 0 26 727471 0 1a 00 00 00 af 19 0b 00 00 00 00 00 ............ +7614 22.961691380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312444 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1955921920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8b 1f 00 00 00 00 00 ....T.c@.^1@......k....... +7616 22.962008238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288466 12 -1 727471 0 0xffffffff 0 -1 727471 0 ff ff ff ff af 19 0b 00 00 00 00 00 ............ +7618 22.962404728 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288478 12 22 717961 0 0x00000016 0 22 717961 0 16 00 00 00 89 f4 0a 00 00 00 00 00 ............ +7620 22.962570906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288490 22 18 2067307 0 0x00000012 1 2067307 0 196609 0 12 00 00 00 6b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +7622 22.962891102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312470 12 -1 717961 0 0xffffffff 0 -1 717961 0 ff ff ff ff 89 f4 0a 00 00 00 00 00 ............ +7628 23.064343691 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312482 12 26 727472 0 0x0000001a 0 26 727472 0 1a 00 00 00 b0 19 0b 00 00 00 00 00 ............ +7630 23.064527035 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312494 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1955790848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 8b 1f 00 00 00 00 00 ....T.c@.^1@......m....... +7632 23.064857006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288512 12 -1 727472 0 0xffffffff 0 -1 727472 0 ff ff ff ff b0 19 0b 00 00 00 00 00 ............ +7634 23.065159798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288524 12 22 717962 0 0x00000016 0 22 717962 0 16 00 00 00 8a f4 0a 00 00 00 00 00 ............ +7636 23.065324783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288536 22 18 2067309 0 0x00000012 1 2067309 0 196609 0 12 00 00 00 6d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +7638 23.065582991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312520 12 -1 717962 0 0xffffffff 0 -1 717962 0 ff ff ff ff 8a f4 0a 00 00 00 00 00 ............ +7646 23.146248579 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288558 12 -2 82585 82602 0xfffffffe 0 -2 82585 82602 fe ff ff ff 99 42 01 00 aa 42 01 00 .....B...B.. +7650 23.167674780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312532 12 26 727473 0 0x0000001a 0 26 727473 0 1a 00 00 00 b1 19 0b 00 00 00 00 00 ............ +7652 23.167839050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312544 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1955659776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 8b 1f 00 00 00 00 00 ....T.c@.^1@......o....... +7654 23.168285131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288570 12 -1 727473 0 0xffffffff 0 -1 727473 0 ff ff ff ff b1 19 0b 00 00 00 00 00 ............ +7656 23.168643236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288582 12 22 717963 0 0x00000016 0 22 717963 0 16 00 00 00 8b f4 0a 00 00 00 00 00 ............ +7658 23.168812275 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288594 22 18 2067311 0 0x00000012 1 2067311 0 196609 0 12 00 00 00 6f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +7660 23.169193268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312570 12 -1 717963 0 0xffffffff 0 -1 717963 0 ff ff ff ff 8b f4 0a 00 00 00 00 00 ............ +7665 23.217518330 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312582 12 -2 82603 82585 0xfffffffe 0 -2 82603 82585 fe ff ff ff ab 42 01 00 99 42 01 00 .....B...B.. +7668 23.224344730 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312594 12 34 727474 0 0x00000022 0 34 727474 0 22 00 00 00 b2 19 0b 00 00 00 00 00 """..........." +7670 23.224502087 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312606 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 285081600 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 fe 10 02 00 00 00 00 00 22 e9 22 c3 9d 01 00 00 ".....!...o3..............."".""....." +7672 23.224651098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312640 12 67 727475 0 0x00000043 0 67 727475 0 43 00 00 00 b3 19 0b 00 00 00 00 00 C........... +7674 23.224736929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312652 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 fe 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c e1 db 71 cb ?.....3...|8...................=B.....&......... +7676 23.224858761 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288616 12 -1 727474 0 0xffffffff 0 -1 727474 0 ff ff ff ff b2 19 0b 00 00 00 00 00 ............ +7678 23.225110769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288628 12 -1 727475 0 0xffffffff 0 -1 727475 0 ff ff ff ff b3 19 0b 00 00 00 00 00 ............ +7680 23.225866318 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288640 12 52 717964 0 0x00000034 0 52 717964 0 34 00 00 00 8c f4 0a 00 00 00 00 00 4........... +7682 23.226121664 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288652 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 fe 10 02 00 00 00 00 00 00 00 c0 32 46 77 4d 01 00 00 "0...Dk.................L."".([................2Fw" +7684 23.226395845 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312719 12 -1 717964 0 0xffffffff 0 -1 717964 0 ff ff ff ff 8c f4 0a 00 00 00 00 00 ............ +7686 23.227514744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312731 12 30 727476 0 0x0000001e 0 30 727476 0 1e 00 00 00 b4 19 0b 00 00 00 00 00 ............ +7688 23.227665186 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312743 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1955528704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 71 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......q........... +7690 23.228035688 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288704 12 -1 727476 0 0xffffffff 0 -1 727476 0 ff ff ff ff b4 19 0b 00 00 00 00 00 ............ +7692 23.228543758 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288716 12 26 717965 0 0x0000001a 0 26 717965 0 1a 00 00 00 8d f4 0a 00 00 00 00 00 ............ +7694 23.228742838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288728 26 22 2067313 0 0x00000016 1 2067313 0 196609 0 16 00 00 00 71 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....q..................... +7696 23.229069710 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312773 12 -1 717965 0 0xffffffff 0 -1 717965 0 ff ff ff ff 8d f4 0a 00 00 00 00 00 ............ +7698 23.270827293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312785 12 26 727477 0 0x0000001a 0 26 727477 0 1a 00 00 00 b5 19 0b 00 00 00 00 00 ............ +7700 23.271091461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312797 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1955397632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 8b 1f 00 00 00 00 00 ....T.c@.^1@......s....... +7702 23.271463156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288754 12 -1 727477 0 0xffffffff 0 -1 727477 0 ff ff ff ff b5 19 0b 00 00 00 00 00 ............ +7704 23.271851540 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288766 12 22 717966 0 0x00000016 0 22 717966 0 16 00 00 00 8e f4 0a 00 00 00 00 00 ............ +7706 23.272058249 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288778 22 18 2067315 0 0x00000012 1 2067315 0 196609 0 12 00 00 00 73 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +7708 23.272424221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312823 12 -1 717966 0 0xffffffff 0 -1 717966 0 ff ff ff ff 8e f4 0a 00 00 00 00 00 ............ +7714 23.374482870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312835 12 26 727478 0 0x0000001a 0 26 727478 0 1a 00 00 00 b6 19 0b 00 00 00 00 00 ............ +7716 23.374701500 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312847 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1955266560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 8b 1f 00 00 00 00 00 ....T.c@.^1@......u....... +7718 23.375077724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288800 12 -1 727478 0 0xffffffff 0 -1 727478 0 ff ff ff ff b6 19 0b 00 00 00 00 00 ............ +7720 23.375519276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288812 12 22 717967 0 0x00000016 0 22 717967 0 16 00 00 00 8f f4 0a 00 00 00 00 00 ............ +7722 23.375721216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288824 22 18 2067317 0 0x00000012 1 2067317 0 196609 0 12 00 00 00 75 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +7724 23.375975847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312873 12 -1 717967 0 0xffffffff 0 -1 717967 0 ff ff ff ff 8f f4 0a 00 00 00 00 00 ............ +7732 23.478780270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312885 12 26 727479 0 0x0000001a 0 26 727479 0 1a 00 00 00 b7 19 0b 00 00 00 00 00 ............ +7734 23.479043245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312897 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1955135488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 8b 1f 00 00 00 00 00 ....T.c@.^1@......w....... +7736 23.479386091 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288846 12 -1 727479 0 0xffffffff 0 -1 727479 0 ff ff ff ff b7 19 0b 00 00 00 00 00 ............ +7738 23.479821444 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288858 12 22 717968 0 0x00000016 0 22 717968 0 16 00 00 00 90 f4 0a 00 00 00 00 00 ............ +7740 23.480047941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288870 22 18 2067319 0 0x00000012 1 2067319 0 196609 0 12 00 00 00 77 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +7742 23.480410337 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312923 12 -1 717968 0 0xffffffff 0 -1 717968 0 ff ff ff ff 90 f4 0a 00 00 00 00 00 ............ +7748 23.530157804 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312935 12 101 727480 0 0x00000065 0 101 727480 0 65 00 00 00 b8 19 0b 00 00 00 00 00 e........... +7750 23.530380964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333312947 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ff 10 02 00 00 00 00 00 53 ea 22 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ff 10 02 00 00 00 00 ".....!...o3...............S."".....?.....3...|8.." +7752 23.531012535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288892 12 -1 727480 0 0xffffffff 0 -1 727480 0 ff ff ff ff b8 19 0b 00 00 00 00 00 ............ +7754 23.531796217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288904 12 52 717969 0 0x00000034 0 52 717969 0 34 00 00 00 91 f4 0a 00 00 00 00 00 4........... +7756 23.532004833 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288916 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ff 10 02 00 00 00 00 00 00 00 4f e2 74 77 4d 01 00 00 "0...Dk.................L."".([...............O.tw" +7758 23.532214880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313048 12 -1 717969 0 0xffffffff 0 -1 717969 0 ff ff ff ff 91 f4 0a 00 00 00 00 00 ............ +7760 23.533330917 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313060 12 30 727481 0 0x0000001e 0 30 727481 0 1e 00 00 00 b9 19 0b 00 00 00 00 00 ............ +7762 23.533550501 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313072 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1955004416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 79 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......y........... +7764 23.533858299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288968 12 -1 727481 0 0xffffffff 0 -1 727481 0 ff ff ff ff b9 19 0b 00 00 00 00 00 ............ +7766 23.534230709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288980 12 26 717970 0 0x0000001a 0 26 717970 0 1a 00 00 00 92 f4 0a 00 00 00 00 00 ............ +7768 23.534420252 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377288992 26 22 2067321 0 0x00000016 1 2067321 0 196609 0 16 00 00 00 79 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....y..................... +7770 23.534598827 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313102 12 -1 717970 0 0xffffffff 0 -1 717970 0 ff ff ff ff 92 f4 0a 00 00 00 00 00 ............ +7772 23.581766367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313114 12 26 727482 0 0x0000001a 0 26 727482 0 1a 00 00 00 ba 19 0b 00 00 00 00 00 ............ +7774 23.581985712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313126 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1954873344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 8b 1f 00 00 00 00 00 ....T.c@.^1@......{....... +7776 23.582322359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289018 12 -1 727482 0 0xffffffff 0 -1 727482 0 ff ff ff ff ba 19 0b 00 00 00 00 00 ............ +7778 23.583219767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289030 12 22 717971 0 0x00000016 0 22 717971 0 16 00 00 00 93 f4 0a 00 00 00 00 00 ............ +7780 23.583456755 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289042 22 18 2067323 0 0x00000012 1 2067323 0 196609 0 12 00 00 00 7b 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +7782 23.583793163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313152 12 -1 717971 0 0xffffffff 0 -1 717971 0 ff ff ff ff 93 f4 0a 00 00 00 00 00 ............ +7790 23.646642208 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289064 12 -2 82586 82603 0xfffffffe 0 -2 82586 82603 fe ff ff ff 9a 42 01 00 ab 42 01 00 .....B...B.. +7794 23.684810638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313164 12 26 727483 0 0x0000001a 0 26 727483 0 1a 00 00 00 bb 19 0b 00 00 00 00 00 ............ +7796 23.684981108 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313176 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1954742272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 8b 1f 00 00 00 00 00 ....T.c@.^1@......}....... +7798 23.685528278 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289076 12 -1 727483 0 0xffffffff 0 -1 727483 0 ff ff ff ff bb 19 0b 00 00 00 00 00 ............ +7800 23.685849428 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289088 12 22 717972 0 0x00000016 0 22 717972 0 16 00 00 00 94 f4 0a 00 00 00 00 00 ............ +7802 23.686017036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289100 22 18 2067325 0 0x00000012 1 2067325 0 196609 0 12 00 00 00 7d 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +7804 23.686346531 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313202 12 -1 717972 0 0xffffffff 0 -1 717972 0 ff ff ff ff 94 f4 0a 00 00 00 00 00 ............ +7808 23.718586445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313214 12 -2 82604 82586 0xfffffffe 0 -2 82604 82586 fe ff ff ff ac 42 01 00 9a 42 01 00 .....B...B.. +7812 23.789061546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313226 12 26 727484 0 0x0000001a 0 26 727484 0 1a 00 00 00 bc 19 0b 00 00 00 00 00 ............ +7814 23.789278746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313238 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1954611200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +7816 23.789607763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289122 12 -1 727484 0 0xffffffff 0 -1 727484 0 ff ff ff ff bc 19 0b 00 00 00 00 00 ............ +7818 23.790068626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289134 12 22 717973 0 0x00000016 0 22 717973 0 16 00 00 00 95 f4 0a 00 00 00 00 00 ............ +7820 23.790227890 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289146 22 18 2067327 0 0x00000012 1 2067327 0 196609 0 12 00 00 00 7f 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7822 23.790542841 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313264 12 -1 717973 0 0xffffffff 0 -1 717973 0 ff ff ff ff 95 f4 0a 00 00 00 00 00 ............ +7824 23.834377766 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313276 12 34 727485 0 0x00000022 0 34 727485 0 22 00 00 00 bd 19 0b 00 00 00 00 00 """..........." +7826 23.834550381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313288 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 285212672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 00 11 02 00 00 00 00 00 83 eb 22 c3 9d 01 00 00 ".....!...o3.................""....." +7828 23.834687948 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313322 12 67 727486 0 0x00000043 0 67 727486 0 43 00 00 00 be 19 0b 00 00 00 00 00 C........... +7830 23.834773302 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313334 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 00 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 68 05 2d 96 cb ?.....3...|8...................=B.....&......... +7832 23.835086823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289168 12 -1 727485 0 0xffffffff 0 -1 727485 0 ff ff ff ff bd 19 0b 00 00 00 00 00 ............ +7834 23.835279465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289180 12 -1 727486 0 0xffffffff 0 -1 727486 0 ff ff ff ff be 19 0b 00 00 00 00 00 ............ +7836 23.835926294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289192 12 52 717974 0 0x00000034 0 52 717974 0 34 00 00 00 96 f4 0a 00 00 00 00 00 4........... +7838 23.836091280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289204 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 00 11 02 00 00 00 00 00 00 00 3d 4a a3 77 4d 01 00 00 "0...Dk.................L."".([...............=J.w" +7840 23.836412668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313401 12 -1 717974 0 0xffffffff 0 -1 717974 0 ff ff ff ff 96 f4 0a 00 00 00 00 00 ............ +7842 23.837339163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313413 12 30 727487 0 0x0000001e 0 30 727487 0 1e 00 00 00 bf 19 0b 00 00 00 00 00 ............ +7844 23.837514877 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313425 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1954480128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 81 8b 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7846 23.837916613 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289256 12 -1 727487 0 0xffffffff 0 -1 727487 0 ff ff ff ff bf 19 0b 00 00 00 00 00 ............ +7848 23.838237762 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289268 12 26 717975 0 0x0000001a 0 26 717975 0 1a 00 00 00 97 f4 0a 00 00 00 00 00 ............ +7850 23.838488102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289280 26 22 2067329 0 0x00000016 1 2067329 0 196609 0 16 00 00 00 81 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7852 23.838673353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313455 12 -1 717975 0 0xffffffff 0 -1 717975 0 ff ff ff ff 97 f4 0a 00 00 00 00 00 ............ +7858 23.892096758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313467 12 26 727488 0 0x0000001a 0 26 727488 0 1a 00 00 00 c0 19 0b 00 00 00 00 00 ............ +7860 23.892312288 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313479 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1954349056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +7862 23.892575741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289306 12 -1 727488 0 0xffffffff 0 -1 727488 0 ff ff ff ff c0 19 0b 00 00 00 00 00 ............ +7864 23.893146276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289318 12 22 717976 0 0x00000016 0 22 717976 0 16 00 00 00 98 f4 0a 00 00 00 00 00 ............ +7866 23.893317938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289330 22 18 2067331 0 0x00000012 1 2067331 0 196609 0 12 00 00 00 83 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7868 23.893586159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313505 12 -1 717976 0 0xffffffff 0 -1 717976 0 ff ff ff ff 98 f4 0a 00 00 00 00 00 ............ +7876 23.994761467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313517 12 26 727489 0 0x0000001a 0 26 727489 0 1a 00 00 00 c1 19 0b 00 00 00 00 00 ............ +7878 23.994992018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313529 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1954217984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 8b 1f 00 00 00 00 00 ....T.c@.^1@.............. +7880 23.995422840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289352 12 -1 727489 0 0xffffffff 0 -1 727489 0 ff ff ff ff c1 19 0b 00 00 00 00 00 ............ +7882 23.996112347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289364 12 22 717977 0 0x00000016 0 22 717977 0 16 00 00 00 99 f4 0a 00 00 00 00 00 ............ +7884 23.996302843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377289376 22 18 2067333 0 0x00000012 1 2067333 0 196609 0 12 00 00 00 85 8b 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7886 23.996654987 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313555 12 -1 717977 0 0xffffffff 0 -1 717977 0 ff ff ff ff 99 f4 0a 00 00 00 00 00 ............ +7892 24.097863197 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333313567 12 26 727490 0 0x0000001a 0 26 727490 0 1a 00 00 00 c2 19 0b 00 00 00 00 00 ............ diff --git a/captures/017-loopback-write-test-int-100/tcp-payload-packets.tsv b/captures/017-loopback-write-test-int-100/tcp-payload-packets.tsv new file mode 100644 index 0000000..ecb6f8c --- /dev/null +++ b/captures/017-loopback-write-test-int-100/tcp-payload-packets.tsv @@ -0,0 +1,3059 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +5 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3333286816 12 1a0000001d180b0000000000 ............ +7 0.000191927 127.0.0.1:57415 127.0.0.1:57433 3333286828 26 16000000548f6340e25e314001000300000017891f0000000000 ....T.c@.^1@.............. +9 0.000476122 127.0.0.1:57433 127.0.0.1:57415 377267763 12 ffffffff1d180b0000000000 ............ +11 0.000900030 127.0.0.1:57433 127.0.0.1:57415 377267775 12 1600000013f30a0000000000 ............ +13 0.001066923 127.0.0.1:57433 127.0.0.1:57415 377267787 22 1200000017891f000000000001000300000000000000 ...................... +15 0.001381159 127.0.0.1:57415 127.0.0.1:57433 3333286854 12 ffffffff13f30a0000000000 ............ +17 0.062152624 127.0.0.1:57415 127.0.0.1:57433 3333286866 12 650000001e180b0000000000 e........... +19 0.062356949 127.0.0.1:57415 127.0.0.1:57433 3333286878 101 1e0000001c2118d0c46f33bb010003000000b210020000000000a78e22c39d01 .....!...o3.................".....?.....3...|8.. +21 0.062706947 127.0.0.1:57433 127.0.0.1:57415 377267809 12 ffffffff1e180b0000000000 ............ +23 0.063734055 127.0.0.1:57433 127.0.0.1:57415 377267821 12 3400000014f30a0000000000 4........... +25 0.063937187 127.0.0.1:57433 127.0.0.1:57415 377267833 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............L.wi +27 0.064235449 127.0.0.1:57415 127.0.0.1:57433 3333286979 12 ffffffff14f30a0000000000 ............ +29 0.065073252 127.0.0.1:57415 127.0.0.1:57433 3333286991 12 1e0000001f180b0000000000 ............ +31 0.065276146 127.0.0.1:57415 127.0.0.1:57433 3333287003 30 1a00000055ceff62b21b3a5001000300000019891f000000000000000000 ....U..b..:P.................. +33 0.065578699 127.0.0.1:57433 127.0.0.1:57415 377267885 12 ffffffff1f180b0000000000 ............ +35 0.065982819 127.0.0.1:57433 127.0.0.1:57415 377267897 12 1a00000015f30a0000000000 ............ +37 0.066232920 127.0.0.1:57433 127.0.0.1:57415 377267909 26 1600000019891f00000000000100030000000000000000000000 .......................... +39 0.066497803 127.0.0.1:57415 127.0.0.1:57433 3333287033 12 ffffffff15f30a0000000000 ............ +41 0.103799582 127.0.0.1:57415 127.0.0.1:57433 3333287045 12 1a00000020180b0000000000 .... ....... +43 0.103978157 127.0.0.1:57415 127.0.0.1:57433 3333287057 26 16000000548f6340e25e31400100030000001b891f0000000000 ....T.c@.^1@.............. +45 0.104352713 127.0.0.1:57433 127.0.0.1:57415 377267935 12 ffffffff20180b0000000000 .... ....... +47 0.104785442 127.0.0.1:57433 127.0.0.1:57415 377267947 12 1600000016f30a0000000000 ............ +49 0.104946136 127.0.0.1:57433 127.0.0.1:57415 377267959 22 120000001b891f000000000001000300000000000000 ...................... +51 0.105269194 127.0.0.1:57415 127.0.0.1:57433 3333287083 12 ffffffff16f30a0000000000 ............ +53 0.105755091 127.0.0.1:57433 127.0.0.1:57415 377267981 12 feffffff6b4201007c420100 ....kB..|B.. +64 0.156553745 127.0.0.1:57415 127.0.0.1:57433 3333287095 12 feffffff7d4201006b420100 ....}B..kB.. +69 0.207743168 127.0.0.1:57415 127.0.0.1:57433 3333287107 12 1a00000021180b0000000000 ....!....... +71 0.207932472 127.0.0.1:57415 127.0.0.1:57433 3333287119 26 16000000548f6340e25e31400100030000001d891f0000000000 ....T.c@.^1@.............. +73 0.208339930 127.0.0.1:57433 127.0.0.1:57415 377267993 12 ffffffff21180b0000000000 ....!....... +75 0.208754778 127.0.0.1:57433 127.0.0.1:57415 377268005 12 1600000017f30a0000000000 ............ +77 0.208923101 127.0.0.1:57433 127.0.0.1:57415 377268017 22 120000001d891f000000000001000300000000000000 ...................... +79 0.209311962 127.0.0.1:57415 127.0.0.1:57433 3333287145 12 ffffffff17f30a0000000000 ............ +81 0.311100006 127.0.0.1:57415 127.0.0.1:57433 3333287157 12 1a00000022180b0000000000 ...."....... +83 0.311287403 127.0.0.1:57415 127.0.0.1:57433 3333287169 26 16000000548f6340e25e31400100030000001f891f0000000000 ....T.c@.^1@.............. +85 0.311662674 127.0.0.1:57433 127.0.0.1:57415 377268039 12 ffffffff22180b0000000000 ...."....... +87 0.312063217 127.0.0.1:57433 127.0.0.1:57415 377268051 12 1600000018f30a0000000000 ............ +89 0.312224865 127.0.0.1:57433 127.0.0.1:57415 377268063 22 120000001f891f000000000001000300000000000000 ...................... +91 0.312634468 127.0.0.1:57415 127.0.0.1:57433 3333287195 12 ffffffff18f30a0000000000 ............ +97 0.367356777 127.0.0.1:57415 127.0.0.1:57433 3333287207 12 2200000023180b0000000000 "...#....... +99 0.367557049 127.0.0.1:57415 127.0.0.1:57433 3333287219 34 1e0000001c2118d0c46f33bb010003000000b310020000000000d88f22c39d01 .....!...o3................."..... +101 0.367686510 127.0.0.1:57415 127.0.0.1:57433 3333287253 12 4300000024180b0000000000 C...$....... +103 0.367773533 127.0.0.1:57415 127.0.0.1:57433 3333287265 67 3f000000980433cb0cb47c380100030000000100000000b3100200000000003d ?.....3...|8...................=B.....&......... +105 0.367872000 127.0.0.1:57433 127.0.0.1:57415 377268085 12 ffffffff23180b0000000000 ....#....... +107 0.368042707 127.0.0.1:57433 127.0.0.1:57415 377268097 12 ffffffff24180b0000000000 ....$....... +109 0.369893312 127.0.0.1:57433 127.0.0.1:57415 377268109 12 3400000019f30a0000000000 4........... +111 0.370058060 127.0.0.1:57433 127.0.0.1:57415 377268121 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............^..i +113 0.370328665 127.0.0.1:57415 127.0.0.1:57433 3333287332 12 ffffffff19f30a0000000000 ............ +115 0.371201992 127.0.0.1:57415 127.0.0.1:57433 3333287344 12 1e00000025180b0000000000 ....%....... +117 0.371351957 127.0.0.1:57415 127.0.0.1:57433 3333287356 30 1a00000055ceff62b21b3a5001000300000021891f000000000000000000 ....U..b..:P......!........... +119 0.371643782 127.0.0.1:57433 127.0.0.1:57415 377268173 12 ffffffff25180b0000000000 ....%....... +121 0.372008562 127.0.0.1:57433 127.0.0.1:57415 377268185 12 1a0000001af30a0000000000 ............ +123 0.372158766 127.0.0.1:57433 127.0.0.1:57415 377268197 26 1600000021891f00000000000100030000000000000000000000 ....!..................... +125 0.372453451 127.0.0.1:57415 127.0.0.1:57433 3333287386 12 ffffffff1af30a0000000000 ............ +136 0.414031506 127.0.0.1:57415 127.0.0.1:57433 3333287398 12 1a00000026180b0000000000 ....&....... +138 0.414195538 127.0.0.1:57415 127.0.0.1:57433 3333287410 26 16000000548f6340e25e314001000300000023891f0000000000 ....T.c@.^1@......#....... +140 0.414552450 127.0.0.1:57433 127.0.0.1:57415 377268223 12 ffffffff26180b0000000000 ....&....... +142 0.414931774 127.0.0.1:57433 127.0.0.1:57415 377268235 12 160000001bf30a0000000000 ............ +144 0.415096760 127.0.0.1:57433 127.0.0.1:57415 377268247 22 1200000023891f000000000001000300000000000000 ....#................. +146 0.415358067 127.0.0.1:57415 127.0.0.1:57433 3333287436 12 ffffffff1bf30a0000000000 ............ +177 0.516933441 127.0.0.1:57415 127.0.0.1:57433 3333287448 12 1a00000027180b0000000000 ....'....... +179 0.517127037 127.0.0.1:57415 127.0.0.1:57433 3333287460 26 16000000548f6340e25e314001000300000025891f0000000000 ....T.c@.^1@......%....... +181 0.517473459 127.0.0.1:57433 127.0.0.1:57415 377268269 12 ffffffff27180b0000000000 ....'....... +183 0.517925739 127.0.0.1:57433 127.0.0.1:57415 377268281 12 160000001cf30a0000000000 ............ +185 0.518096924 127.0.0.1:57433 127.0.0.1:57415 377268293 22 1200000025891f000000000001000300000000000000 ....%................. +187 0.518417358 127.0.0.1:57415 127.0.0.1:57433 3333287486 12 ffffffff1cf30a0000000000 ............ +192 0.606731892 127.0.0.1:57433 127.0.0.1:57415 377268315 12 feffffff6c4201007d420100 ....lB..}B.. +201 0.621152401 127.0.0.1:57415 127.0.0.1:57433 3333287498 12 1a00000028180b0000000000 ....(....... +203 0.621333838 127.0.0.1:57415 127.0.0.1:57433 3333287510 26 16000000548f6340e25e314001000300000027891f0000000000 ....T.c@.^1@......'....... +205 0.621697664 127.0.0.1:57433 127.0.0.1:57415 377268327 12 ffffffff28180b0000000000 ....(....... +207 0.626363039 127.0.0.1:57433 127.0.0.1:57415 377268339 12 160000001df30a0000000000 ............ +209 0.626552582 127.0.0.1:57433 127.0.0.1:57415 377268351 22 1200000027891f000000000001000300000000000000 ....'................. +211 0.626886368 127.0.0.1:57415 127.0.0.1:57433 3333287536 12 ffffffff1df30a0000000000 ............ +214 0.659226894 127.0.0.1:57415 127.0.0.1:57433 3333287548 12 feffffff7e4201006c420100 ....~B..lB.. +219 0.672510624 127.0.0.1:57415 127.0.0.1:57433 3333287560 12 2200000029180b0000000000 "...)....... +221 0.672688961 127.0.0.1:57415 127.0.0.1:57433 3333287572 34 1e0000001c2118d0c46f33bb010003000000b410020000000000099122c39d01 .....!...o3................."..... +223 0.672796488 127.0.0.1:57415 127.0.0.1:57433 3333287606 12 430000002a180b0000000000 C...*....... +225 0.672884941 127.0.0.1:57415 127.0.0.1:57433 3333287618 67 3f000000980433cb0cb47c380100030000000100000000b4100200000000003d ?.....3...|8...................=B.....&......... +226 0.672931194 127.0.0.1:57433 127.0.0.1:57415 377268373 12 ffffffff29180b0000000000 ....)....... +229 0.673152924 127.0.0.1:57433 127.0.0.1:57415 377268385 12 ffffffff2a180b0000000000 ....*....... +231 0.674153805 127.0.0.1:57433 127.0.0.1:57415 377268397 12 340000001ef30a0000000000 4........... +233 0.674327374 127.0.0.1:57433 127.0.0.1:57415 377268409 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................i +235 0.674644709 127.0.0.1:57415 127.0.0.1:57433 3333287685 12 ffffffff1ef30a0000000000 ............ +236 0.675351143 127.0.0.1:57415 127.0.0.1:57433 3333287697 12 1e0000002b180b0000000000 ....+....... +238 0.675588846 127.0.0.1:57415 127.0.0.1:57433 3333287709 30 1a00000055ceff62b21b3a5001000300000029891f000000000000000000 ....U..b..:P......)........... +240 0.675880909 127.0.0.1:57433 127.0.0.1:57415 377268461 12 ffffffff2b180b0000000000 ....+....... +242 0.678501844 127.0.0.1:57433 127.0.0.1:57415 377268473 12 1a0000001ff30a0000000000 ............ +244 0.678872347 127.0.0.1:57433 127.0.0.1:57415 377268485 26 1600000029891f00000000000100030000000000000000000000 ....)..................... +246 0.679122925 127.0.0.1:57415 127.0.0.1:57433 3333287739 12 ffffffff1ff30a0000000000 ............ +248 0.728105068 127.0.0.1:57415 127.0.0.1:57433 3333287751 12 1a0000002c180b0000000000 ....,....... +250 0.728297234 127.0.0.1:57415 127.0.0.1:57433 3333287763 26 16000000548f6340e25e31400100030000002b891f0000000000 ....T.c@.^1@......+....... +252 0.728712082 127.0.0.1:57433 127.0.0.1:57415 377268511 12 ffffffff2c180b0000000000 ....,....... +254 0.729128361 127.0.0.1:57433 127.0.0.1:57415 377268523 12 1600000020f30a0000000000 .... ....... +256 0.729297638 127.0.0.1:57433 127.0.0.1:57415 377268535 22 120000002b891f000000000001000300000000000000 ....+................. +258 0.729560614 127.0.0.1:57415 127.0.0.1:57433 3333287789 12 ffffffff20f30a0000000000 .... ....... +260 0.832078457 127.0.0.1:57415 127.0.0.1:57433 3333287801 12 1a0000002d180b0000000000 ....-....... +262 0.832259655 127.0.0.1:57415 127.0.0.1:57433 3333287813 26 16000000548f6340e25e31400100030000002d891f0000000000 ....T.c@.^1@......-....... +264 0.832660198 127.0.0.1:57433 127.0.0.1:57415 377268557 12 ffffffff2d180b0000000000 ....-....... +266 0.833052397 127.0.0.1:57433 127.0.0.1:57415 377268569 12 1600000021f30a0000000000 ....!....... +268 0.833217859 127.0.0.1:57433 127.0.0.1:57415 377268581 22 120000002d891f000000000001000300000000000000 ....-................. +270 0.833524704 127.0.0.1:57415 127.0.0.1:57433 3333287839 12 ffffffff21f30a0000000000 ....!....... +276 0.936131954 127.0.0.1:57415 127.0.0.1:57433 3333287851 12 1a0000002e180b0000000000 ............ +278 0.936320782 127.0.0.1:57415 127.0.0.1:57433 3333287863 26 16000000548f6340e25e31400100030000002f891f0000000000 ....T.c@.^1@....../....... +280 0.936715603 127.0.0.1:57433 127.0.0.1:57415 377268603 12 ffffffff2e180b0000000000 ............ +282 0.937049627 127.0.0.1:57433 127.0.0.1:57415 377268615 12 1600000022f30a0000000000 ...."....... +284 0.937216282 127.0.0.1:57433 127.0.0.1:57415 377268627 22 120000002f891f000000000001000300000000000000 ..../................. +286 0.937526464 127.0.0.1:57415 127.0.0.1:57433 3333287889 12 ffffffff22f30a0000000000 ...."....... +307 0.976489305 127.0.0.1:57415 127.0.0.1:57433 3333287901 12 650000002f180b0000000000 e.../....... +311 0.976689339 127.0.0.1:57415 127.0.0.1:57433 3333287913 101 1e0000001c2118d0c46f33bb010003000000b510020000000000399222c39d01 .....!...o3...............9.".....?.....3...|8.. +313 0.977019787 127.0.0.1:57433 127.0.0.1:57415 377268649 12 ffffffff2f180b0000000000 ..../....... +320 0.978544950 127.0.0.1:57433 127.0.0.1:57415 377268661 12 3400000023f30a0000000000 4...#....... +325 0.978772163 127.0.0.1:57433 127.0.0.1:57415 377268673 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................j +327 0.979037762 127.0.0.1:57415 127.0.0.1:57433 3333288014 12 ffffffff23f30a0000000000 ....#....... +333 0.979956627 127.0.0.1:57415 127.0.0.1:57433 3333288026 12 1e00000030180b0000000000 ....0....... +337 0.980155230 127.0.0.1:57415 127.0.0.1:57433 3333288038 30 1a00000055ceff62b21b3a5001000300000031891f000000000000000000 ....U..b..:P......1........... +341 0.980667591 127.0.0.1:57433 127.0.0.1:57415 377268725 12 ffffffff30180b0000000000 ....0....... +343 0.980935812 127.0.0.1:57433 127.0.0.1:57415 377268737 12 1a00000024f30a0000000000 ....$....... +345 0.981083155 127.0.0.1:57433 127.0.0.1:57415 377268749 26 1600000031891f00000000000100030000000000000000000000 ....1..................... +347 0.981348038 127.0.0.1:57415 127.0.0.1:57433 3333288068 12 ffffffff24f30a0000000000 ....$....... +355 1.040248632 127.0.0.1:57415 127.0.0.1:57433 3333288080 12 1a00000031180b0000000000 ....1....... +357 1.040430546 127.0.0.1:57415 127.0.0.1:57433 3333288092 26 16000000548f6340e25e314001000300000033891f0000000000 ....T.c@.^1@......3....... +359 1.040779829 127.0.0.1:57433 127.0.0.1:57415 377268775 12 ffffffff31180b0000000000 ....1....... +361 1.041137457 127.0.0.1:57433 127.0.0.1:57415 377268787 12 1600000025f30a0000000000 ....%....... +363 1.041299105 127.0.0.1:57433 127.0.0.1:57415 377268799 22 1200000033891f000000000001000300000000000000 ....3................. +365 1.041534662 127.0.0.1:57415 127.0.0.1:57433 3333288118 12 ffffffff25f30a0000000000 ....%....... +367 1.107649326 127.0.0.1:57433 127.0.0.1:57415 377268821 12 feffffff6d4201007e420100 ....mB..~B.. +416 1.145547390 127.0.0.1:57415 127.0.0.1:57433 3333288130 12 1a00000032180b0000000000 ....2....... +418 1.145750523 127.0.0.1:57415 127.0.0.1:57433 3333288142 26 16000000548f6340e25e314001000300000035891f0000000000 ....T.c@.^1@......5....... +420 1.146068811 127.0.0.1:57433 127.0.0.1:57415 377268833 12 ffffffff32180b0000000000 ....2....... +422 1.146524906 127.0.0.1:57433 127.0.0.1:57415 377268845 12 1600000026f30a0000000000 ....&....... +424 1.146692753 127.0.0.1:57433 127.0.0.1:57415 377268857 22 1200000035891f000000000001000300000000000000 ....5................. +426 1.146911860 127.0.0.1:57415 127.0.0.1:57433 3333288168 12 ffffffff26f30a0000000000 ....&....... +428 1.160757303 127.0.0.1:57415 127.0.0.1:57433 3333288180 12 feffffff7f4201006d420100 .....B..mB.. +434 1.249292135 127.0.0.1:57415 127.0.0.1:57433 3333288192 12 1a00000033180b0000000000 ....3....... +436 1.249520063 127.0.0.1:57415 127.0.0.1:57433 3333288204 26 16000000548f6340e25e314001000300000037891f0000000000 ....T.c@.^1@......7....... +438 1.249861717 127.0.0.1:57433 127.0.0.1:57415 377268879 12 ffffffff33180b0000000000 ....3....... +440 1.250221014 127.0.0.1:57433 127.0.0.1:57415 377268891 12 1600000027f30a0000000000 ....'....... +442 1.250388145 127.0.0.1:57433 127.0.0.1:57415 377268903 22 1200000037891f000000000001000300000000000000 ....7................. +444 1.250706673 127.0.0.1:57415 127.0.0.1:57433 3333288230 12 ffffffff27f30a0000000000 ....'....... +446 1.281310558 127.0.0.1:57415 127.0.0.1:57433 3333288242 12 2200000034180b0000000000 "...4....... +448 1.281514168 127.0.0.1:57415 127.0.0.1:57433 3333288254 34 1e0000001c2118d0c46f33bb010003000000b6100200000000006a9322c39d01 .....!...o3...............j."..... +450 1.281656027 127.0.0.1:57415 127.0.0.1:57433 3333288288 12 4300000035180b0000000000 C...5....... +452 1.281745672 127.0.0.1:57415 127.0.0.1:57433 3333288300 67 3f000000980433cb0cb47c380100030000000100000000b6100200000000003d ?.....3...|8...................=B.....&......... +454 1.281859398 127.0.0.1:57433 127.0.0.1:57415 377268925 12 ffffffff34180b0000000000 ....4....... +456 1.282075644 127.0.0.1:57433 127.0.0.1:57415 377268937 12 ffffffff35180b0000000000 ....5....... +458 1.282735825 127.0.0.1:57433 127.0.0.1:57415 377268949 12 3400000028f30a0000000000 4...(....... +460 1.282918692 127.0.0.1:57433 127.0.0.1:57415 377268961 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............s.1j +462 1.283182621 127.0.0.1:57415 127.0.0.1:57433 3333288367 12 ffffffff28f30a0000000000 ....(....... +464 1.283987522 127.0.0.1:57415 127.0.0.1:57433 3333288379 12 1e00000036180b0000000000 ....6....... +466 1.284133911 127.0.0.1:57415 127.0.0.1:57433 3333288391 30 1a00000055ceff62b21b3a5001000300000039891f000000000000000000 ....U..b..:P......9........... +468 1.284780502 127.0.0.1:57433 127.0.0.1:57415 377269013 12 ffffffff36180b0000000000 ....6....... +470 1.285075426 127.0.0.1:57433 127.0.0.1:57415 377269025 12 1a00000029f30a0000000000 ....)....... +472 1.285278320 127.0.0.1:57433 127.0.0.1:57415 377269037 26 1600000039891f00000000000100030000000000000000000000 ....9..................... +474 1.285628557 127.0.0.1:57415 127.0.0.1:57433 3333288421 12 ffffffff29f30a0000000000 ....)....... +477 1.352166176 127.0.0.1:57415 127.0.0.1:57433 3333288433 12 1a00000037180b0000000000 ....7....... +479 1.352416039 127.0.0.1:57415 127.0.0.1:57433 3333288445 26 16000000548f6340e25e31400100030000003b891f0000000000 ....T.c@.^1@......;....... +482 1.352868795 127.0.0.1:57433 127.0.0.1:57415 377269063 12 ffffffff37180b0000000000 ....7....... +485 1.353282213 127.0.0.1:57433 127.0.0.1:57415 377269075 12 160000002af30a0000000000 ....*....... +487 1.353500366 127.0.0.1:57433 127.0.0.1:57415 377269087 22 120000003b891f000000000001000300000000000000 ....;................. +489 1.353905201 127.0.0.1:57415 127.0.0.1:57433 3333288471 12 ffffffff2af30a0000000000 ....*....... +494 1.456344366 127.0.0.1:57415 127.0.0.1:57433 3333288483 12 1a00000038180b0000000000 ....8....... +496 1.456542015 127.0.0.1:57415 127.0.0.1:57433 3333288495 26 16000000548f6340e25e31400100030000003d891f0000000000 ....T.c@.^1@......=....... +498 1.456903219 127.0.0.1:57433 127.0.0.1:57415 377269109 12 ffffffff38180b0000000000 ....8....... +500 1.457195044 127.0.0.1:57433 127.0.0.1:57415 377269121 12 160000002bf30a0000000000 ....+....... +502 1.457367420 127.0.0.1:57433 127.0.0.1:57415 377269133 22 120000003d891f000000000001000300000000000000 ....=................. +504 1.457671404 127.0.0.1:57415 127.0.0.1:57433 3333288521 12 ffffffff2bf30a0000000000 ....+....... +511 1.559637070 127.0.0.1:57415 127.0.0.1:57433 3333288533 12 1a00000039180b0000000000 ....9....... +513 1.559909821 127.0.0.1:57415 127.0.0.1:57433 3333288545 26 16000000548f6340e25e31400100030000003f891f0000000000 ....T.c@.^1@......?....... +515 1.560328007 127.0.0.1:57433 127.0.0.1:57415 377269155 12 ffffffff39180b0000000000 ....9....... +517 1.560654879 127.0.0.1:57433 127.0.0.1:57415 377269167 12 160000002cf30a0000000000 ....,....... +519 1.560871363 127.0.0.1:57433 127.0.0.1:57415 377269179 22 120000003f891f000000000001000300000000000000 ....?................. +521 1.561237574 127.0.0.1:57415 127.0.0.1:57433 3333288571 12 ffffffff2cf30a0000000000 ....,....... +523 1.585691929 127.0.0.1:57415 127.0.0.1:57433 3333288583 12 220000003a180b0000000000 "...:....... +525 1.585873365 127.0.0.1:57415 127.0.0.1:57433 3333288595 34 1e0000001c2118d0c46f33bb010003000000b7100200000000009b9422c39d01 .....!...o3................."..... +527 1.586017609 127.0.0.1:57415 127.0.0.1:57433 3333288629 12 430000003b180b0000000000 C...;....... +529 1.586106062 127.0.0.1:57415 127.0.0.1:57433 3333288641 67 3f000000980433cb0cb47c380100030000000100000000b7100200000000003d ?.....3...|8...................=B.....&......... +531 1.586244106 127.0.0.1:57433 127.0.0.1:57415 377269201 12 ffffffff3a180b0000000000 ....:....... +533 1.586428165 127.0.0.1:57433 127.0.0.1:57415 377269213 12 ffffffff3b180b0000000000 ....;....... +535 1.587143660 127.0.0.1:57433 127.0.0.1:57415 377269225 12 340000002df30a0000000000 4...-....... +537 1.587315559 127.0.0.1:57433 127.0.0.1:57415 377269237 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............Ne`j +539 1.587632418 127.0.0.1:57415 127.0.0.1:57433 3333288708 12 ffffffff2df30a0000000000 ....-....... +541 1.588719368 127.0.0.1:57415 127.0.0.1:57433 3333288720 12 1e0000003c180b0000000000 ....<....... +543 1.588922977 127.0.0.1:57415 127.0.0.1:57433 3333288732 30 1a00000055ceff62b21b3a5001000300000041891f000000000000000000 ....U..b..:P......A........... +545 1.589273930 127.0.0.1:57433 127.0.0.1:57415 377269289 12 ffffffff3c180b0000000000 ....<....... +547 1.589964390 127.0.0.1:57433 127.0.0.1:57415 377269301 12 1a0000002ef30a0000000000 ............ +549 1.590120316 127.0.0.1:57433 127.0.0.1:57415 377269313 26 1600000041891f00000000000100030000000000000000000000 ....A..................... +551 1.590358257 127.0.0.1:57415 127.0.0.1:57433 3333288762 12 ffffffff2ef30a0000000000 ............ +553 1.609394550 127.0.0.1:57433 127.0.0.1:57415 377269339 12 feffffff6e4201007f420100 ....nB...B.. +564 1.661457300 127.0.0.1:57415 127.0.0.1:57433 3333288774 12 feffffff804201006e420100 .....B..nB.. +568 1.663018227 127.0.0.1:57415 127.0.0.1:57433 3333288786 12 1a0000003d180b0000000000 ....=....... +570 1.663285732 127.0.0.1:57415 127.0.0.1:57433 3333288798 26 16000000548f6340e25e314001000300000043891f0000000000 ....T.c@.^1@......C....... +572 1.663630247 127.0.0.1:57433 127.0.0.1:57415 377269351 12 ffffffff3d180b0000000000 ....=....... +574 1.664179802 127.0.0.1:57433 127.0.0.1:57415 377269363 12 160000002ff30a0000000000 ..../....... +576 1.664348602 127.0.0.1:57433 127.0.0.1:57415 377269375 22 1200000043891f000000000001000300000000000000 ....C................. +578 1.664650679 127.0.0.1:57415 127.0.0.1:57433 3333288824 12 ffffffff2ff30a0000000000 ..../....... +583 1.766365290 127.0.0.1:57415 127.0.0.1:57433 3333288836 12 1a0000003e180b0000000000 ....>....... +585 1.766557455 127.0.0.1:57415 127.0.0.1:57433 3333288848 26 16000000548f6340e25e314001000300000045891f0000000000 ....T.c@.^1@......E....... +587 1.766954422 127.0.0.1:57433 127.0.0.1:57415 377269397 12 ffffffff3e180b0000000000 ....>....... +589 1.767287493 127.0.0.1:57433 127.0.0.1:57415 377269409 12 1600000030f30a0000000000 ....0....... +591 1.767446280 127.0.0.1:57433 127.0.0.1:57415 377269421 22 1200000045891f000000000001000300000000000000 ....E................. +593 1.767843962 127.0.0.1:57415 127.0.0.1:57433 3333288874 12 ffffffff30f30a0000000000 ....0....... +611 1.869407177 127.0.0.1:57415 127.0.0.1:57433 3333288886 12 1a0000003f180b0000000000 ....?....... +613 1.869586945 127.0.0.1:57415 127.0.0.1:57433 3333288898 26 16000000548f6340e25e314001000300000047891f0000000000 ....T.c@.^1@......G....... +615 1.869930029 127.0.0.1:57433 127.0.0.1:57415 377269443 12 ffffffff3f180b0000000000 ....?....... +617 1.870384455 127.0.0.1:57433 127.0.0.1:57415 377269455 12 1600000031f30a0000000000 ....1....... +619 1.870545149 127.0.0.1:57433 127.0.0.1:57415 377269467 22 1200000047891f000000000001000300000000000000 ....G................. +621 1.870841742 127.0.0.1:57415 127.0.0.1:57433 3333288924 12 ffffffff31f30a0000000000 ....1....... +646 1.889521122 127.0.0.1:57415 127.0.0.1:57433 3333288936 12 6500000040180b0000000000 e...@....... +648 1.889734745 127.0.0.1:57415 127.0.0.1:57433 3333288948 101 1e0000001c2118d0c46f33bb010003000000b810020000000000cb9522c39d01 .....!...o3.................".....?.....3...|8.. +650 1.890043736 127.0.0.1:57433 127.0.0.1:57415 377269489 12 ffffffff40180b0000000000 ....@....... +652 1.890955210 127.0.0.1:57433 127.0.0.1:57415 377269501 12 3400000032f30a0000000000 4...2....... +654 1.891108274 127.0.0.1:57433 127.0.0.1:57415 377269513 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................j +656 1.891358137 127.0.0.1:57415 127.0.0.1:57433 3333289049 12 ffffffff32f30a0000000000 ....2....... +658 1.892300844 127.0.0.1:57415 127.0.0.1:57433 3333289061 12 1e00000041180b0000000000 ....A....... +660 1.892523050 127.0.0.1:57415 127.0.0.1:57433 3333289073 30 1a00000055ceff62b21b3a5001000300000049891f000000000000000000 ....U..b..:P......I........... +664 1.892898560 127.0.0.1:57433 127.0.0.1:57415 377269565 12 ffffffff41180b0000000000 ....A....... +668 1.893136978 127.0.0.1:57433 127.0.0.1:57415 377269577 12 1a00000033f30a0000000000 ....3....... +670 1.893332958 127.0.0.1:57433 127.0.0.1:57415 377269589 26 1600000049891f00000000000100030000000000000000000000 ....I..................... +672 1.893594027 127.0.0.1:57415 127.0.0.1:57433 3333289103 12 ffffffff33f30a0000000000 ....3....... +766 1.972316265 127.0.0.1:57415 127.0.0.1:57433 3333289115 12 1a00000042180b0000000000 ....B....... +768 1.972499847 127.0.0.1:57415 127.0.0.1:57433 3333289127 26 16000000548f6340e25e31400100030000004b891f0000000000 ....T.c@.^1@......K....... +770 1.972928047 127.0.0.1:57433 127.0.0.1:57415 377269615 12 ffffffff42180b0000000000 ....B....... +772 1.973234653 127.0.0.1:57433 127.0.0.1:57415 377269627 12 1600000034f30a0000000000 ....4....... +774 1.973397255 127.0.0.1:57433 127.0.0.1:57415 377269639 22 120000004b891f000000000001000300000000000000 ....K................. +776 1.973711967 127.0.0.1:57415 127.0.0.1:57433 3333289153 12 ffffffff34f30a0000000000 ....4....... +908 2.076429129 127.0.0.1:57415 127.0.0.1:57433 3333289165 12 1a00000043180b0000000000 ....C....... +910 2.076622963 127.0.0.1:57415 127.0.0.1:57433 3333289177 26 16000000548f6340e25e31400100030000004d891f0000000000 ....T.c@.^1@......M....... +912 2.077100754 127.0.0.1:57433 127.0.0.1:57415 377269661 12 ffffffff43180b0000000000 ....C....... +914 2.077521563 127.0.0.1:57433 127.0.0.1:57415 377269673 12 1600000035f30a0000000000 ....5....... +916 2.077764511 127.0.0.1:57433 127.0.0.1:57415 377269685 22 120000004d891f000000000001000300000000000000 ....M................. +919 2.078548908 127.0.0.1:57415 127.0.0.1:57433 3333289203 12 ffffffff35f30a0000000000 ....5....... +921 2.110113144 127.0.0.1:57433 127.0.0.1:57415 377269707 12 feffffff6f42010080420100 ....oB...B.. +931 2.163183212 127.0.0.1:57415 127.0.0.1:57433 3333289215 12 feffffff814201006f420100 .....B..oB.. +1005 2.180208683 127.0.0.1:57415 127.0.0.1:57433 3333289227 12 1a00000044180b0000000000 ....D....... +1007 2.180366278 127.0.0.1:57415 127.0.0.1:57433 3333289239 26 16000000548f6340e25e31400100030000004f891f0000000000 ....T.c@.^1@......O....... +1009 2.180761814 127.0.0.1:57433 127.0.0.1:57415 377269719 12 ffffffff44180b0000000000 ....D....... +1012 2.182473660 127.0.0.1:57433 127.0.0.1:57415 377269731 12 1600000036f30a0000000000 ....6....... +1014 2.182639122 127.0.0.1:57433 127.0.0.1:57415 377269743 22 120000004f891f000000000001000300000000000000 ....O................. +1016 2.182924509 127.0.0.1:57415 127.0.0.1:57433 3333289265 12 ffffffff36f30a0000000000 ....6....... +1018 2.194288731 127.0.0.1:57415 127.0.0.1:57433 3333289277 12 2200000045180b0000000000 "...E....... +1020 2.194443226 127.0.0.1:57415 127.0.0.1:57433 3333289289 34 1e0000001c2118d0c46f33bb010003000000b910020000000000fc9622c39d01 .....!...o3................."..... +1022 2.194569349 127.0.0.1:57415 127.0.0.1:57433 3333289323 12 4300000046180b0000000000 C...F....... +1024 2.194686651 127.0.0.1:57415 127.0.0.1:57433 3333289335 67 3f000000980433cb0cb47c380100030000000100000000b9100200000000003d ?.....3...|8...................=B.....&......... +1026 2.194765329 127.0.0.1:57433 127.0.0.1:57415 377269765 12 ffffffff45180b0000000000 ....E....... +1028 2.194943428 127.0.0.1:57433 127.0.0.1:57415 377269777 12 ffffffff46180b0000000000 ....F....... +1030 2.195715666 127.0.0.1:57433 127.0.0.1:57415 377269789 12 3400000037f30a0000000000 4...7....... +1032 2.195866823 127.0.0.1:57433 127.0.0.1:57415 377269801 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................B.j +1034 2.196137667 127.0.0.1:57415 127.0.0.1:57433 3333289402 12 ffffffff37f30a0000000000 ....7....... +1036 2.196979046 127.0.0.1:57415 127.0.0.1:57433 3333289414 12 1e00000047180b0000000000 ....G....... +1038 2.197118521 127.0.0.1:57415 127.0.0.1:57433 3333289426 30 1a00000055ceff62b21b3a5001000300000051891f000000000000000000 ....U..b..:P......Q........... +1040 2.197419882 127.0.0.1:57433 127.0.0.1:57415 377269853 12 ffffffff47180b0000000000 ....G....... +1042 2.197838545 127.0.0.1:57433 127.0.0.1:57415 377269865 12 1a00000038f30a0000000000 ....8....... +1044 2.197989941 127.0.0.1:57433 127.0.0.1:57415 377269877 26 1600000051891f00000000000100030000000000000000000000 ....Q..................... +1046 2.198313236 127.0.0.1:57415 127.0.0.1:57433 3333289456 12 ffffffff38f30a0000000000 ....8....... +1050 2.284319162 127.0.0.1:57415 127.0.0.1:57433 3333289468 12 1a00000048180b0000000000 ....H....... +1052 2.284510374 127.0.0.1:57415 127.0.0.1:57433 3333289480 26 16000000548f6340e25e314001000300000053891f0000000000 ....T.c@.^1@......S....... +1054 2.285003662 127.0.0.1:57433 127.0.0.1:57415 377269903 12 ffffffff48180b0000000000 ....H....... +1056 2.285501957 127.0.0.1:57433 127.0.0.1:57415 377269915 12 1600000039f30a0000000000 ....9....... +1058 2.285701036 127.0.0.1:57433 127.0.0.1:57415 377269927 22 1200000053891f000000000001000300000000000000 ....S................. +1060 2.286016226 127.0.0.1:57415 127.0.0.1:57433 3333289506 12 ffffffff39f30a0000000000 ....9....... +1143 2.388320446 127.0.0.1:57415 127.0.0.1:57433 3333289518 12 1a00000049180b0000000000 ....I....... +1145 2.388519526 127.0.0.1:57415 127.0.0.1:57433 3333289530 26 16000000548f6340e25e314001000300000055891f0000000000 ....T.c@.^1@......U....... +1147 2.388782263 127.0.0.1:57433 127.0.0.1:57415 377269949 12 ffffffff49180b0000000000 ....I....... +1149 2.390062094 127.0.0.1:57433 127.0.0.1:57415 377269961 12 160000003af30a0000000000 ....:....... +1151 2.390235662 127.0.0.1:57433 127.0.0.1:57415 377269973 22 1200000055891f000000000001000300000000000000 ....U................. +1153 2.390493393 127.0.0.1:57415 127.0.0.1:57433 3333289556 12 ffffffff3af30a0000000000 ....:....... +1160 2.492380142 127.0.0.1:57415 127.0.0.1:57433 3333289568 12 1a0000004a180b0000000000 ....J....... +1162 2.492565155 127.0.0.1:57415 127.0.0.1:57433 3333289580 26 16000000548f6340e25e314001000300000057891f0000000000 ....T.c@.^1@......W....... +1164 2.493031502 127.0.0.1:57433 127.0.0.1:57415 377269995 12 ffffffff4a180b0000000000 ....J....... +1166 2.495183468 127.0.0.1:57433 127.0.0.1:57415 377270007 12 160000003bf30a0000000000 ....;....... +1168 2.495344877 127.0.0.1:57433 127.0.0.1:57415 377270019 22 1200000057891f000000000001000300000000000000 ....W................. +1170 2.495666265 127.0.0.1:57415 127.0.0.1:57433 3333289606 12 ffffffff3bf30a0000000000 ....;....... +1172 2.498668432 127.0.0.1:57415 127.0.0.1:57433 3333289618 12 650000004b180b0000000000 e...K....... +1174 2.498820066 127.0.0.1:57415 127.0.0.1:57433 3333289630 101 1e0000001c2118d0c46f33bb010003000000ba100200000000002c9822c39d01 .....!...o3...............,.".....?.....3...|8.. +1176 2.499056339 127.0.0.1:57433 127.0.0.1:57415 377270041 12 ffffffff4b180b0000000000 ....K....... +1178 2.500126123 127.0.0.1:57433 127.0.0.1:57415 377270053 12 340000003cf30a0000000000 4...<....... +1180 2.500268221 127.0.0.1:57433 127.0.0.1:57415 377270065 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............4..j +1182 2.500459909 127.0.0.1:57415 127.0.0.1:57433 3333289731 12 ffffffff3cf30a0000000000 ....<....... +1184 2.501435518 127.0.0.1:57415 127.0.0.1:57433 3333289743 12 1e0000004c180b0000000000 ....L....... +1186 2.501582623 127.0.0.1:57415 127.0.0.1:57433 3333289755 30 1a00000055ceff62b21b3a5001000300000059891f000000000000000000 ....U..b..:P......Y........... +1188 2.501924276 127.0.0.1:57433 127.0.0.1:57415 377270117 12 ffffffff4c180b0000000000 ....L....... +1190 2.502698183 127.0.0.1:57433 127.0.0.1:57415 377270129 12 1a0000003df30a0000000000 ....=....... +1192 2.502841711 127.0.0.1:57433 127.0.0.1:57415 377270141 26 1600000059891f00000000000100030000000000000000000000 ....Y..................... +1194 2.503012896 127.0.0.1:57415 127.0.0.1:57433 3333289785 12 ffffffff3df30a0000000000 ....=....... +1197 2.598366737 127.0.0.1:57415 127.0.0.1:57433 3333289797 12 1a0000004d180b0000000000 ....M....... +1199 2.598553896 127.0.0.1:57415 127.0.0.1:57433 3333289809 26 16000000548f6340e25e31400100030000005b891f0000000000 ....T.c@.^1@......[....... +1201 2.598952770 127.0.0.1:57433 127.0.0.1:57415 377270167 12 ffffffff4d180b0000000000 ....M....... +1203 2.599326849 127.0.0.1:57433 127.0.0.1:57415 377270179 12 160000003ef30a0000000000 ....>....... +1205 2.599515915 127.0.0.1:57433 127.0.0.1:57415 377270191 22 120000005b891f000000000001000300000000000000 ....[................. +1207 2.599779129 127.0.0.1:57415 127.0.0.1:57433 3333289835 12 ffffffff3ef30a0000000000 ....>....... +1212 2.611276150 127.0.0.1:57433 127.0.0.1:57415 377270213 12 feffffff7042010081420100 ....pB...B.. +1220 2.664160013 127.0.0.1:57415 127.0.0.1:57433 3333289847 12 feffffff8242010070420100 .....B..pB.. +1225 2.701298952 127.0.0.1:57415 127.0.0.1:57433 3333289859 12 1a0000004e180b0000000000 ....N....... +1227 2.701467991 127.0.0.1:57415 127.0.0.1:57433 3333289871 26 16000000548f6340e25e31400100030000005d891f0000000000 ....T.c@.^1@......]....... +1229 2.701937437 127.0.0.1:57433 127.0.0.1:57415 377270225 12 ffffffff4e180b0000000000 ....N....... +1231 2.703405619 127.0.0.1:57433 127.0.0.1:57415 377270237 12 160000003ff30a0000000000 ....?....... +1233 2.703614235 127.0.0.1:57433 127.0.0.1:57415 377270249 22 120000005d891f000000000001000300000000000000 ....]................. +1235 2.703939915 127.0.0.1:57415 127.0.0.1:57433 3333289897 12 ffffffff3ff30a0000000000 ....?....... +1270 2.803912640 127.0.0.1:57415 127.0.0.1:57433 3333289909 12 650000004f180b0000000000 e...O....... +1272 2.804090738 127.0.0.1:57415 127.0.0.1:57433 3333289921 101 1e0000001c2118d0c46f33bb010003000000bb100200000000005d9922c39d01 .....!...o3...............].".....?.....3...|8.. +1274 2.804422617 127.0.0.1:57433 127.0.0.1:57415 377270271 12 ffffffff4f180b0000000000 ....O....... +1278 2.805096865 127.0.0.1:57433 127.0.0.1:57415 377270283 12 3400000040f30a0000000000 4...@....... +1281 2.805260897 127.0.0.1:57433 127.0.0.1:57415 377270295 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..............._>.k +1286 2.805582047 127.0.0.1:57415 127.0.0.1:57433 3333290022 12 ffffffff40f30a0000000000 ....@....... +1288 2.806174755 127.0.0.1:57415 127.0.0.1:57433 3333290034 12 1a00000050180b0000000000 ....P....... +1290 2.806338072 127.0.0.1:57415 127.0.0.1:57433 3333290046 26 16000000548f6340e25e31400100030000005f891f0000000000 ....T.c@.^1@......_....... +1292 2.806506157 127.0.0.1:57415 127.0.0.1:57433 3333290072 12 1e00000051180b0000000000 ....Q....... +1294 2.806595325 127.0.0.1:57415 127.0.0.1:57433 3333290084 30 1a00000055ceff62b21b3a5001000300000061891f000000000000000000 ....U..b..:P......a........... +1295 2.806638002 127.0.0.1:57433 127.0.0.1:57415 377270347 12 ffffffff50180b0000000000 ....P....... +1296 2.806780100 127.0.0.1:57433 127.0.0.1:57415 377270359 12 ffffffff51180b0000000000 ....Q....... +1299 2.807068825 127.0.0.1:57433 127.0.0.1:57415 377270371 12 1600000041f30a0000000000 ....A....... +1301 2.807232857 127.0.0.1:57433 127.0.0.1:57415 377270383 22 120000005f891f000000000001000300000000000000 ...._................. +1303 2.807372332 127.0.0.1:57433 127.0.0.1:57415 377270405 12 1a00000042f30a0000000000 ....B....... +1305 2.807457209 127.0.0.1:57433 127.0.0.1:57415 377270417 26 1600000061891f00000000000100030000000000000000000000 ....a..................... +1306 2.807497025 127.0.0.1:57415 127.0.0.1:57433 3333290114 12 ffffffff41f30a0000000000 ....A....... +1307 2.807724714 127.0.0.1:57415 127.0.0.1:57433 3333290126 12 ffffffff42f30a0000000000 ....B....... +1313 2.910314083 127.0.0.1:57415 127.0.0.1:57433 3333290138 12 1a00000052180b0000000000 ....R....... +1315 2.910484314 127.0.0.1:57415 127.0.0.1:57433 3333290150 26 16000000548f6340e25e314001000300000063891f0000000000 ....T.c@.^1@......c....... +1317 2.910945415 127.0.0.1:57433 127.0.0.1:57415 377270443 12 ffffffff52180b0000000000 ....R....... +1319 2.911284685 127.0.0.1:57433 127.0.0.1:57415 377270455 12 1600000043f30a0000000000 ....C....... +1321 2.911453247 127.0.0.1:57433 127.0.0.1:57415 377270467 22 1200000063891f000000000001000300000000000000 ....c................. +1323 2.911878347 127.0.0.1:57415 127.0.0.1:57433 3333290176 12 ffffffff43f30a0000000000 ....C....... +1368 3.014278650 127.0.0.1:57415 127.0.0.1:57433 3333290188 12 1a00000053180b0000000000 ....S....... +1370 3.014458179 127.0.0.1:57415 127.0.0.1:57433 3333290200 26 16000000548f6340e25e314001000300000065891f0000000000 ....T.c@.^1@......e....... +1372 3.014925241 127.0.0.1:57433 127.0.0.1:57415 377270489 12 ffffffff53180b0000000000 ....S....... +1374 3.015426874 127.0.0.1:57433 127.0.0.1:57415 377270501 12 1600000044f30a0000000000 ....D....... +1376 3.015589952 127.0.0.1:57433 127.0.0.1:57415 377270513 22 1200000065891f000000000001000300000000000000 ....e................. +1378 3.015952587 127.0.0.1:57415 127.0.0.1:57433 3333290226 12 ffffffff44f30a0000000000 ....D....... +1380 3.107884169 127.0.0.1:57415 127.0.0.1:57433 3333290238 12 2200000054180b0000000000 "...T....... +1382 3.108130217 127.0.0.1:57415 127.0.0.1:57433 3333290250 34 1e0000001c2118d0c46f33bb010003000000bc100200000000008d9a22c39d01 .....!...o3................."..... +1384 3.108281851 127.0.0.1:57415 127.0.0.1:57433 3333290284 12 4300000055180b0000000000 C...U....... +1386 3.108374834 127.0.0.1:57415 127.0.0.1:57433 3333290296 67 3f000000980433cb0cb47c380100030000000100000000bc100200000000003d ?.....3...|8...................=B.....&......... +1387 3.108431339 127.0.0.1:57433 127.0.0.1:57415 377270535 12 ffffffff54180b0000000000 ....T....... +1388 3.108532906 127.0.0.1:57433 127.0.0.1:57415 377270547 12 ffffffff55180b0000000000 ....U....... +1391 3.109525681 127.0.0.1:57433 127.0.0.1:57415 377270559 12 3400000045f30a0000000000 4...E....... +1393 3.109744310 127.0.0.1:57433 127.0.0.1:57415 377270571 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................Hk +1395 3.109956264 127.0.0.1:57415 127.0.0.1:57433 3333290363 12 ffffffff45f30a0000000000 ....E....... +1396 3.110897064 127.0.0.1:57415 127.0.0.1:57433 3333290375 12 1e00000056180b0000000000 ....V....... +1397 3.111028194 127.0.0.1:57415 127.0.0.1:57433 3333290387 30 1a00000055ceff62b21b3a5001000300000067891f000000000000000000 ....U..b..:P......g........... +1399 3.111400604 127.0.0.1:57433 127.0.0.1:57415 377270623 12 feffffff7142010082420100 ....qB...B.. +1405 3.111627102 127.0.0.1:57433 127.0.0.1:57415 377270635 12 1a00000046f30a0000000000 ....F....... +1408 3.111800194 127.0.0.1:57433 127.0.0.1:57415 377270647 26 1600000067891f00000000000100030000000000000000000000 ....g..................... +1410 3.111998558 127.0.0.1:57433 127.0.0.1:57415 377270673 12 ffffffff56180b0000000000 ....V....... +1411 3.112007618 127.0.0.1:57415 127.0.0.1:57433 3333290417 12 ffffffff46f30a0000000000 ....F....... +1415 3.117296934 127.0.0.1:57415 127.0.0.1:57433 3333290429 12 1a00000057180b0000000000 ....W....... +1416 3.117417336 127.0.0.1:57415 127.0.0.1:57433 3333290441 26 16000000548f6340e25e314001000300000069891f0000000000 ....T.c@.^1@......i....... +1417 3.117719650 127.0.0.1:57433 127.0.0.1:57415 377270685 12 ffffffff57180b0000000000 ....W....... +1419 3.118219376 127.0.0.1:57433 127.0.0.1:57415 377270697 12 1600000047f30a0000000000 ....G....... +1421 3.118370056 127.0.0.1:57433 127.0.0.1:57415 377270709 22 1200000069891f000000000001000300000000000000 ....i................. +1423 3.118578672 127.0.0.1:57415 127.0.0.1:57433 3333290467 12 ffffffff47f30a0000000000 ....G....... +1425 3.166170120 127.0.0.1:57415 127.0.0.1:57433 3333290479 12 feffffff8342010071420100 .....B..qB.. +1431 3.220360041 127.0.0.1:57415 127.0.0.1:57433 3333290491 12 1a00000058180b0000000000 ....X....... +1433 3.220539331 127.0.0.1:57415 127.0.0.1:57433 3333290503 26 16000000548f6340e25e31400100030000006b891f0000000000 ....T.c@.^1@......k....... +1435 3.220933437 127.0.0.1:57433 127.0.0.1:57415 377270731 12 ffffffff58180b0000000000 ....X....... +1437 3.221305370 127.0.0.1:57433 127.0.0.1:57415 377270743 12 1600000048f30a0000000000 ....H....... +1439 3.221463919 127.0.0.1:57433 127.0.0.1:57415 377270755 22 120000006b891f000000000001000300000000000000 ....k................. +1441 3.221753836 127.0.0.1:57415 127.0.0.1:57433 3333290529 12 ffffffff48f30a0000000000 ....H....... +1443 3.323443651 127.0.0.1:57415 127.0.0.1:57433 3333290541 12 1a00000059180b0000000000 ....Y....... +1445 3.323637247 127.0.0.1:57415 127.0.0.1:57433 3333290553 26 16000000548f6340e25e31400100030000006d891f0000000000 ....T.c@.^1@......m....... +1447 3.324119568 127.0.0.1:57433 127.0.0.1:57415 377270777 12 ffffffff59180b0000000000 ....Y....... +1449 3.324456453 127.0.0.1:57433 127.0.0.1:57415 377270789 12 1600000049f30a0000000000 ....I....... +1451 3.324618340 127.0.0.1:57433 127.0.0.1:57415 377270801 22 120000006d891f000000000001000300000000000000 ....m................. +1453 3.324984074 127.0.0.1:57415 127.0.0.1:57433 3333290579 12 ffffffff49f30a0000000000 ....I....... +1459 3.412746906 127.0.0.1:57415 127.0.0.1:57433 3333290591 12 650000005a180b0000000000 e...Z....... +1461 3.412934065 127.0.0.1:57415 127.0.0.1:57433 3333290603 101 1e0000001c2118d0c46f33bb010003000000bd10020000000000be9b22c39d01 .....!...o3.................".....?.....3...|8.. +1463 3.413189888 127.0.0.1:57433 127.0.0.1:57415 377270823 12 ffffffff5a180b0000000000 ....Z....... +1465 3.414014339 127.0.0.1:57433 127.0.0.1:57415 377270835 12 340000004af30a0000000000 4...J....... +1467 3.414172888 127.0.0.1:57433 127.0.0.1:57415 377270847 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................'wk +1469 3.414455652 127.0.0.1:57415 127.0.0.1:57433 3333290704 12 ffffffff4af30a0000000000 ....J....... +1471 3.415367365 127.0.0.1:57415 127.0.0.1:57433 3333290716 12 1e0000005b180b0000000000 ....[....... +1473 3.415536165 127.0.0.1:57415 127.0.0.1:57433 3333290728 30 1a00000055ceff62b21b3a500100030000006f891f000000000000000000 ....U..b..:P......o........... +1475 3.415885448 127.0.0.1:57433 127.0.0.1:57415 377270899 12 ffffffff5b180b0000000000 ....[....... +1477 3.416388988 127.0.0.1:57433 127.0.0.1:57415 377270911 12 1a0000004bf30a0000000000 ....K....... +1479 3.416529655 127.0.0.1:57433 127.0.0.1:57415 377270923 26 160000006f891f00000000000100030000000000000000000000 ....o..................... +1481 3.416845083 127.0.0.1:57415 127.0.0.1:57433 3333290758 12 ffffffff4bf30a0000000000 ....K....... +1483 3.427133799 127.0.0.1:57415 127.0.0.1:57433 3333290770 12 1a0000005c180b0000000000 ....\....... +1485 3.427330256 127.0.0.1:57415 127.0.0.1:57433 3333290782 26 16000000548f6340e25e314001000300000071891f0000000000 ....T.c@.^1@......q....... +1487 3.427661896 127.0.0.1:57433 127.0.0.1:57415 377270949 12 ffffffff5c180b0000000000 ....\....... +1489 3.428010702 127.0.0.1:57433 127.0.0.1:57415 377270961 12 160000004cf30a0000000000 ....L....... +1491 3.428168535 127.0.0.1:57433 127.0.0.1:57415 377270973 22 1200000071891f000000000001000300000000000000 ....q................. +1493 3.428428173 127.0.0.1:57415 127.0.0.1:57433 3333290808 12 ffffffff4cf30a0000000000 ....L....... +1501 3.530319929 127.0.0.1:57415 127.0.0.1:57433 3333290820 12 1a0000005d180b0000000000 ....]....... +1503 3.530561924 127.0.0.1:57415 127.0.0.1:57433 3333290832 26 16000000548f6340e25e314001000300000073891f0000000000 ....T.c@.^1@......s....... +1505 3.530923605 127.0.0.1:57433 127.0.0.1:57415 377270995 12 ffffffff5d180b0000000000 ....]....... +1507 3.531497955 127.0.0.1:57433 127.0.0.1:57415 377271007 12 160000004df30a0000000000 ....M....... +1509 3.531736851 127.0.0.1:57433 127.0.0.1:57415 377271019 22 1200000073891f000000000001000300000000000000 ....s................. +1511 3.532019854 127.0.0.1:57415 127.0.0.1:57433 3333290858 12 ffffffff4df30a0000000000 ....M....... +1513 3.611494541 127.0.0.1:57433 127.0.0.1:57415 377271041 12 feffffff7242010083420100 ....rB...B.. +1523 3.633144140 127.0.0.1:57415 127.0.0.1:57433 3333290870 12 1a0000005e180b0000000000 ....^....... +1525 3.633364916 127.0.0.1:57415 127.0.0.1:57433 3333290882 26 16000000548f6340e25e314001000300000075891f0000000000 ....T.c@.^1@......u....... +1527 3.633912086 127.0.0.1:57433 127.0.0.1:57415 377271053 12 ffffffff5e180b0000000000 ....^....... +1529 3.634569168 127.0.0.1:57433 127.0.0.1:57415 377271065 12 160000004ef30a0000000000 ....N....... +1531 3.634777546 127.0.0.1:57433 127.0.0.1:57415 377271077 22 1200000075891f000000000001000300000000000000 ....u................. +1533 3.635058165 127.0.0.1:57415 127.0.0.1:57433 3333290908 12 ffffffff4ef30a0000000000 ....N....... +1535 3.667056084 127.0.0.1:57415 127.0.0.1:57433 3333290920 12 feffffff8442010072420100 .....B..rB.. +1541 3.717789173 127.0.0.1:57415 127.0.0.1:57433 3333290932 12 220000005f180b0000000000 "..._....... +1543 3.717996836 127.0.0.1:57415 127.0.0.1:57433 3333290944 34 1e0000001c2118d0c46f33bb010003000000be10020000000000ef9c22c39d01 .....!...o3................."..... +1545 3.718137980 127.0.0.1:57415 127.0.0.1:57433 3333290978 12 4300000060180b0000000000 C...`....... +1547 3.718225002 127.0.0.1:57415 127.0.0.1:57433 3333290990 67 3f000000980433cb0cb47c380100030000000100000000be100200000000003d ?.....3...|8...................=B.....&......... +1549 3.718359709 127.0.0.1:57433 127.0.0.1:57415 377271099 12 ffffffff5f180b0000000000 ...._....... +1551 3.718567371 127.0.0.1:57433 127.0.0.1:57415 377271111 12 ffffffff60180b0000000000 ....`....... +1553 3.719163179 127.0.0.1:57433 127.0.0.1:57415 377271123 12 340000004ff30a0000000000 4...O....... +1555 3.719326019 127.0.0.1:57433 127.0.0.1:57415 377271135 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................k +1557 3.719591379 127.0.0.1:57415 127.0.0.1:57433 3333291057 12 ffffffff4ff30a0000000000 ....O....... +1559 3.720834970 127.0.0.1:57415 127.0.0.1:57433 3333291069 12 1e00000061180b0000000000 ....a....... +1561 3.720978260 127.0.0.1:57415 127.0.0.1:57433 3333291081 30 1a00000055ceff62b21b3a5001000300000077891f000000000000000000 ....U..b..:P......w........... +1563 3.721599102 127.0.0.1:57433 127.0.0.1:57415 377271187 12 ffffffff61180b0000000000 ....a....... +1565 3.721886396 127.0.0.1:57433 127.0.0.1:57415 377271199 12 1a00000050f30a0000000000 ....P....... +1567 3.722033262 127.0.0.1:57433 127.0.0.1:57415 377271211 26 1600000077891f00000000000100030000000000000000000000 ....w..................... +1569 3.722272158 127.0.0.1:57415 127.0.0.1:57433 3333291111 12 ffffffff50f30a0000000000 ....P....... +1571 3.737185955 127.0.0.1:57415 127.0.0.1:57433 3333291123 12 1a00000062180b0000000000 ....b....... +1573 3.737370491 127.0.0.1:57415 127.0.0.1:57433 3333291135 26 16000000548f6340e25e314001000300000079891f0000000000 ....T.c@.^1@......y....... +1575 3.737677097 127.0.0.1:57433 127.0.0.1:57415 377271237 12 ffffffff62180b0000000000 ....b....... +1577 3.737999439 127.0.0.1:57433 127.0.0.1:57415 377271249 12 1600000051f30a0000000000 ....Q....... +1579 3.738145590 127.0.0.1:57433 127.0.0.1:57415 377271261 22 1200000079891f000000000001000300000000000000 ....y................. +1581 3.738403559 127.0.0.1:57415 127.0.0.1:57433 3333291161 12 ffffffff51f30a0000000000 ....Q....... +1583 3.840648413 127.0.0.1:57415 127.0.0.1:57433 3333291173 12 1a00000063180b0000000000 ....c....... +1585 3.840916634 127.0.0.1:57415 127.0.0.1:57433 3333291185 26 16000000548f6340e25e31400100030000007b891f0000000000 ....T.c@.^1@......{....... +1587 3.841248989 127.0.0.1:57433 127.0.0.1:57415 377271283 12 ffffffff63180b0000000000 ....c....... +1589 3.841804743 127.0.0.1:57433 127.0.0.1:57415 377271295 12 1600000052f30a0000000000 ....R....... +1591 3.842047930 127.0.0.1:57433 127.0.0.1:57415 377271307 22 120000007b891f000000000001000300000000000000 ....{................. +1593 3.842455864 127.0.0.1:57415 127.0.0.1:57433 3333291211 12 ffffffff52f30a0000000000 ....R....... +1599 3.943502665 127.0.0.1:57415 127.0.0.1:57433 3333291223 12 1a00000064180b0000000000 ....d....... +1601 3.943698406 127.0.0.1:57415 127.0.0.1:57433 3333291235 26 16000000548f6340e25e31400100030000007d891f0000000000 ....T.c@.^1@......}....... +1603 3.944073439 127.0.0.1:57433 127.0.0.1:57415 377271329 12 ffffffff64180b0000000000 ....d....... +1605 3.944470644 127.0.0.1:57433 127.0.0.1:57415 377271341 12 1600000053f30a0000000000 ....S....... +1607 3.944631100 127.0.0.1:57433 127.0.0.1:57415 377271353 22 120000007d891f000000000001000300000000000000 ....}................. +1609 3.944888353 127.0.0.1:57415 127.0.0.1:57433 3333291261 12 ffffffff53f30a0000000000 ....S....... +1615 4.021862745 127.0.0.1:57415 127.0.0.1:57433 3333291273 12 6500000065180b0000000000 e...e....... +1617 4.022050142 127.0.0.1:57415 127.0.0.1:57433 3333291285 101 1e0000001c2118d0c46f33bb010003000000bf100200000000001f9e22c39d01 .....!...o3.................".....?.....3...|8.. +1619 4.022385359 127.0.0.1:57433 127.0.0.1:57415 377271375 12 ffffffff65180b0000000000 ....e....... +1621 4.023571253 127.0.0.1:57433 127.0.0.1:57415 377271387 12 3400000054f30a0000000000 4...T....... +1623 4.023763180 127.0.0.1:57433 127.0.0.1:57415 377271399 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............I+.k +1625 4.024035692 127.0.0.1:57415 127.0.0.1:57433 3333291386 12 ffffffff54f30a0000000000 ....T....... +1627 4.024799109 127.0.0.1:57415 127.0.0.1:57433 3333291398 12 1e00000066180b0000000000 ....f....... +1629 4.024989843 127.0.0.1:57415 127.0.0.1:57433 3333291410 30 1a00000055ceff62b21b3a500100030000007f891f000000000000000000 ....U..b..:P.................. +1631 4.025275230 127.0.0.1:57433 127.0.0.1:57415 377271451 12 ffffffff66180b0000000000 ....f....... +1633 4.025619507 127.0.0.1:57433 127.0.0.1:57415 377271463 12 1a00000055f30a0000000000 ....U....... +1635 4.025798559 127.0.0.1:57433 127.0.0.1:57415 377271475 26 160000007f891f00000000000100030000000000000000000000 .......................... +1637 4.026008606 127.0.0.1:57415 127.0.0.1:57433 3333291440 12 ffffffff55f30a0000000000 ....U....... +1639 4.046367645 127.0.0.1:57415 127.0.0.1:57433 3333291452 12 1a00000067180b0000000000 ....g....... +1641 4.046543360 127.0.0.1:57415 127.0.0.1:57433 3333291464 26 16000000548f6340e25e314001000300000081891f0000000000 ....T.c@.^1@.............. +1643 4.046825171 127.0.0.1:57433 127.0.0.1:57415 377271501 12 ffffffff67180b0000000000 ....g....... +1645 4.047137737 127.0.0.1:57433 127.0.0.1:57415 377271513 12 1600000056f30a0000000000 ....V....... +1647 4.047299147 127.0.0.1:57433 127.0.0.1:57415 377271525 22 1200000081891f000000000001000300000000000000 ...................... +1649 4.047563076 127.0.0.1:57415 127.0.0.1:57433 3333291490 12 ffffffff56f30a0000000000 ....V....... +1651 4.111204624 127.0.0.1:57433 127.0.0.1:57415 377271547 12 feffffff7342010084420100 ....sB...B.. +1661 4.149141550 127.0.0.1:57415 127.0.0.1:57433 3333291502 12 1a00000068180b0000000000 ....h....... +1663 4.149317503 127.0.0.1:57415 127.0.0.1:57433 3333291514 26 16000000548f6340e25e314001000300000083891f0000000000 ....T.c@.^1@.............. +1665 4.149729013 127.0.0.1:57433 127.0.0.1:57415 377271559 12 ffffffff68180b0000000000 ....h....... +1667 4.150375605 127.0.0.1:57433 127.0.0.1:57415 377271571 12 1600000057f30a0000000000 ....W....... +1669 4.150568962 127.0.0.1:57433 127.0.0.1:57415 377271583 22 1200000083891f000000000001000300000000000000 ...................... +1671 4.150861263 127.0.0.1:57415 127.0.0.1:57433 3333291540 12 ffffffff57f30a0000000000 ....W....... +1675 4.167861462 127.0.0.1:57415 127.0.0.1:57433 3333291552 12 feffffff8542010073420100 .....B..sB.. +1681 4.252254725 127.0.0.1:57415 127.0.0.1:57433 3333291564 12 1a00000069180b0000000000 ....i....... +1683 4.252461672 127.0.0.1:57415 127.0.0.1:57433 3333291576 26 16000000548f6340e25e314001000300000085891f0000000000 ....T.c@.^1@.............. +1685 4.252896547 127.0.0.1:57433 127.0.0.1:57415 377271605 12 ffffffff69180b0000000000 ....i....... +1687 4.253744602 127.0.0.1:57433 127.0.0.1:57415 377271617 12 1600000058f30a0000000000 ....X....... +1689 4.253903627 127.0.0.1:57433 127.0.0.1:57415 377271629 22 1200000085891f000000000001000300000000000000 ...................... +1691 4.254111290 127.0.0.1:57415 127.0.0.1:57433 3333291602 12 ffffffff58f30a0000000000 ....X....... +1699 4.326876163 127.0.0.1:57415 127.0.0.1:57433 3333291614 12 650000006a180b0000000000 e...j....... +1701 4.327057362 127.0.0.1:57415 127.0.0.1:57433 3333291626 101 1e0000001c2118d0c46f33bb010003000000c010020000000000509f22c39d01 .....!...o3...............P.".....?.....3...|8.. +1703 4.327384472 127.0.0.1:57433 127.0.0.1:57415 377271651 12 ffffffff6a180b0000000000 ....j....... +1705 4.328726530 127.0.0.1:57433 127.0.0.1:57415 377271663 12 3400000059f30a0000000000 4...Y....... +1707 4.328900337 127.0.0.1:57433 127.0.0.1:57415 377271675 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................l +1709 4.329188585 127.0.0.1:57415 127.0.0.1:57433 3333291727 12 ffffffff59f30a0000000000 ....Y....... +1711 4.329920053 127.0.0.1:57415 127.0.0.1:57433 3333291739 12 1e0000006b180b0000000000 ....k....... +1713 4.330064535 127.0.0.1:57415 127.0.0.1:57433 3333291751 30 1a00000055ceff62b21b3a5001000300000087891f000000000000000000 ....U..b..:P.................. +1715 4.330299139 127.0.0.1:57433 127.0.0.1:57415 377271727 12 ffffffff6b180b0000000000 ....k....... +1717 4.330765724 127.0.0.1:57433 127.0.0.1:57415 377271739 12 1a0000005af30a0000000000 ....Z....... +1719 4.330923796 127.0.0.1:57433 127.0.0.1:57415 377271751 26 1600000087891f00000000000100030000000000000000000000 .......................... +1721 4.331241608 127.0.0.1:57415 127.0.0.1:57433 3333291781 12 ffffffff5af30a0000000000 ....Z....... +1723 4.356121778 127.0.0.1:57415 127.0.0.1:57433 3333291793 12 1a0000006c180b0000000000 ....l....... +1725 4.356301069 127.0.0.1:57415 127.0.0.1:57433 3333291805 26 16000000548f6340e25e314001000300000089891f0000000000 ....T.c@.^1@.............. +1727 4.356643438 127.0.0.1:57433 127.0.0.1:57415 377271777 12 ffffffff6c180b0000000000 ....l....... +1729 4.356973648 127.0.0.1:57433 127.0.0.1:57415 377271789 12 160000005bf30a0000000000 ....[....... +1732 4.357146740 127.0.0.1:57433 127.0.0.1:57415 377271801 22 1200000089891f000000000001000300000000000000 ...................... +1735 4.357414246 127.0.0.1:57415 127.0.0.1:57433 3333291831 12 ffffffff5bf30a0000000000 ....[....... +1770 4.459516764 127.0.0.1:57415 127.0.0.1:57433 3333291843 12 1a0000006d180b0000000000 ....m....... +1772 4.459690332 127.0.0.1:57415 127.0.0.1:57433 3333291855 26 16000000548f6340e25e31400100030000008b891f0000000000 ....T.c@.^1@.............. +1774 4.460063934 127.0.0.1:57433 127.0.0.1:57415 377271823 12 ffffffff6d180b0000000000 ....m....... +1776 4.460549116 127.0.0.1:57433 127.0.0.1:57415 377271835 12 160000005cf30a0000000000 ....\....... +1778 4.460723400 127.0.0.1:57433 127.0.0.1:57415 377271847 22 120000008b891f000000000001000300000000000000 ...................... +1780 4.461112261 127.0.0.1:57415 127.0.0.1:57433 3333291881 12 ffffffff5cf30a0000000000 ....\....... +1787 4.562906981 127.0.0.1:57415 127.0.0.1:57433 3333291893 12 1a0000006e180b0000000000 ....n....... +1789 4.563102245 127.0.0.1:57415 127.0.0.1:57433 3333291905 26 16000000548f6340e25e31400100030000008d891f0000000000 ....T.c@.^1@.............. +1791 4.563468933 127.0.0.1:57433 127.0.0.1:57415 377271869 12 ffffffff6e180b0000000000 ....n....... +1793 4.563913822 127.0.0.1:57433 127.0.0.1:57415 377271881 12 160000005df30a0000000000 ....]....... +1795 4.564090967 127.0.0.1:57433 127.0.0.1:57415 377271893 22 120000008d891f000000000001000300000000000000 ...................... +1797 4.564394236 127.0.0.1:57415 127.0.0.1:57433 3333291931 12 ffffffff5df30a0000000000 ....]....... +1799 4.611744642 127.0.0.1:57433 127.0.0.1:57415 377271915 12 feffffff7442010085420100 ....tB...B.. +1809 4.632760525 127.0.0.1:57415 127.0.0.1:57433 3333291943 12 650000006f180b0000000000 e...o....... +1811 4.632925272 127.0.0.1:57415 127.0.0.1:57433 3333291955 101 1e0000001c2118d0c46f33bb010003000000c11002000000000082a022c39d01 .....!...o3.................".....?.....3...|8.. +1813 4.633181810 127.0.0.1:57433 127.0.0.1:57415 377271927 12 ffffffff6f180b0000000000 ....o....... +1815 4.634322405 127.0.0.1:57433 127.0.0.1:57415 377271939 12 340000005ef30a0000000000 4...^....... +1817 4.634484768 127.0.0.1:57433 127.0.0.1:57415 377271951 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............L\1l +1819 4.634841204 127.0.0.1:57415 127.0.0.1:57433 3333292056 12 ffffffff5ef30a0000000000 ....^....... +1821 4.635917664 127.0.0.1:57415 127.0.0.1:57433 3333292068 12 1e00000070180b0000000000 ....p....... +1823 4.636113167 127.0.0.1:57415 127.0.0.1:57433 3333292080 30 1a00000055ceff62b21b3a500100030000008f891f000000000000000000 ....U..b..:P.................. +1825 4.636419535 127.0.0.1:57433 127.0.0.1:57415 377272003 12 ffffffff70180b0000000000 ....p....... +1827 4.636801243 127.0.0.1:57433 127.0.0.1:57415 377272015 12 1a0000005ff30a0000000000 ...._....... +1829 4.636966705 127.0.0.1:57433 127.0.0.1:57415 377272027 26 160000008f891f00000000000100030000000000000000000000 .......................... +1831 4.637281179 127.0.0.1:57415 127.0.0.1:57433 3333292110 12 ffffffff5ff30a0000000000 ...._....... +1833 4.667313337 127.0.0.1:57415 127.0.0.1:57433 3333292122 12 1a00000071180b0000000000 ....q....... +1835 4.667551994 127.0.0.1:57415 127.0.0.1:57433 3333292134 26 16000000548f6340e25e314001000300000091891f0000000000 ....T.c@.^1@.............. +1837 4.668100834 127.0.0.1:57433 127.0.0.1:57415 377272053 12 ffffffff71180b0000000000 ....q....... +1839 4.668810844 127.0.0.1:57433 127.0.0.1:57415 377272065 12 1600000060f30a0000000000 ....`....... +1843 4.668987274 127.0.0.1:57415 127.0.0.1:57433 3333292160 12 feffffff8642010074420100 .....B..tB.. +1844 4.669104338 127.0.0.1:57433 127.0.0.1:57415 377272077 22 1200000091891f000000000001000300000000000000 ...................... +1847 4.669536591 127.0.0.1:57415 127.0.0.1:57433 3333292172 12 ffffffff60f30a0000000000 ....`....... +1852 4.771314383 127.0.0.1:57415 127.0.0.1:57433 3333292184 12 1a00000072180b0000000000 ....r....... +1854 4.771555424 127.0.0.1:57415 127.0.0.1:57433 3333292196 26 16000000548f6340e25e314001000300000093891f0000000000 ....T.c@.^1@.............. +1856 4.771885157 127.0.0.1:57433 127.0.0.1:57415 377272099 12 ffffffff72180b0000000000 ....r....... +1858 4.772269726 127.0.0.1:57433 127.0.0.1:57415 377272111 12 1600000061f30a0000000000 ....a....... +1860 4.772431850 127.0.0.1:57433 127.0.0.1:57415 377272123 22 1200000093891f000000000001000300000000000000 ...................... +1862 4.772670746 127.0.0.1:57415 127.0.0.1:57433 3333292222 12 ffffffff61f30a0000000000 ....a....... +1882 4.874481201 127.0.0.1:57415 127.0.0.1:57433 3333292234 12 1a00000073180b0000000000 ....s....... +1884 4.874678135 127.0.0.1:57415 127.0.0.1:57433 3333292246 26 16000000548f6340e25e314001000300000095891f0000000000 ....T.c@.^1@.............. +1886 4.874932289 127.0.0.1:57433 127.0.0.1:57415 377272145 12 ffffffff73180b0000000000 ....s....... +1888 4.875414133 127.0.0.1:57433 127.0.0.1:57415 377272157 12 1600000062f30a0000000000 ....b....... +1890 4.875582218 127.0.0.1:57433 127.0.0.1:57415 377272169 22 1200000095891f000000000001000300000000000000 ...................... +1892 4.875860929 127.0.0.1:57415 127.0.0.1:57433 3333292272 12 ffffffff62f30a0000000000 ....b....... +1896 4.936740160 127.0.0.1:57415 127.0.0.1:57433 3333292284 12 6500000074180b0000000000 e...t....... +1898 4.937027216 127.0.0.1:57415 127.0.0.1:57433 3333292296 101 1e0000001c2118d0c46f33bb010003000000c210020000000000b2a122c39d01 .....!...o3.................".....?.....3...|8.. +1900 4.937339067 127.0.0.1:57433 127.0.0.1:57415 377272191 12 ffffffff74180b0000000000 ....t....... +1902 4.938189030 127.0.0.1:57433 127.0.0.1:57415 377272203 12 3400000063f30a0000000000 4...c....... +1904 4.938345194 127.0.0.1:57433 127.0.0.1:57415 377272215 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................._l +1906 4.938617229 127.0.0.1:57415 127.0.0.1:57433 3333292397 12 ffffffff63f30a0000000000 ....c....... +1908 4.939421892 127.0.0.1:57415 127.0.0.1:57433 3333292409 12 1e00000075180b0000000000 ....u....... +1910 4.939594269 127.0.0.1:57415 127.0.0.1:57433 3333292421 30 1a00000055ceff62b21b3a5001000300000097891f000000000000000000 ....U..b..:P.................. +1912 4.939913273 127.0.0.1:57433 127.0.0.1:57415 377272267 12 ffffffff75180b0000000000 ....u....... +1914 4.940263987 127.0.0.1:57433 127.0.0.1:57415 377272279 12 1a00000064f30a0000000000 ....d....... +1916 4.940410376 127.0.0.1:57433 127.0.0.1:57415 377272291 26 1600000097891f00000000000100030000000000000000000000 .......................... +1918 4.940768719 127.0.0.1:57415 127.0.0.1:57433 3333292451 12 ffffffff64f30a0000000000 ....d....... +1922 4.977108240 127.0.0.1:57415 127.0.0.1:57433 3333292463 12 1a00000076180b0000000000 ....v....... +1924 4.977301598 127.0.0.1:57415 127.0.0.1:57433 3333292475 26 16000000548f6340e25e314001000300000099891f0000000000 ....T.c@.^1@.............. +1926 4.977626324 127.0.0.1:57433 127.0.0.1:57415 377272317 12 ffffffff76180b0000000000 ....v....... +1928 4.977919340 127.0.0.1:57433 127.0.0.1:57415 377272329 12 1600000065f30a0000000000 ....e....... +1930 4.978150368 127.0.0.1:57433 127.0.0.1:57415 377272341 22 1200000099891f000000000001000300000000000000 ...................... +1932 4.978429079 127.0.0.1:57415 127.0.0.1:57433 3333292501 12 ffffffff65f30a0000000000 ....e....... +1938 5.080462694 127.0.0.1:57415 127.0.0.1:57433 3333292513 12 1a00000077180b0000000000 ....w....... +1940 5.080735683 127.0.0.1:57415 127.0.0.1:57433 3333292525 26 16000000548f6340e25e31400100030000009b891f0000000000 ....T.c@.^1@.............. +1942 5.081009626 127.0.0.1:57433 127.0.0.1:57415 377272363 12 ffffffff77180b0000000000 ....w....... +1944 5.081467628 127.0.0.1:57433 127.0.0.1:57415 377272375 12 1600000066f30a0000000000 ....f....... +1946 5.081681490 127.0.0.1:57433 127.0.0.1:57415 377272387 22 120000009b891f000000000001000300000000000000 ...................... +1948 5.081994057 127.0.0.1:57415 127.0.0.1:57433 3333292551 12 ffffffff66f30a0000000000 ....f....... +1951 5.113036156 127.0.0.1:57433 127.0.0.1:57415 377272409 12 feffffff7542010086420100 ....uB...B.. +1963 5.171118736 127.0.0.1:57415 127.0.0.1:57433 3333292563 12 feffffff8742010075420100 .....B..uB.. +1968 5.183317184 127.0.0.1:57415 127.0.0.1:57433 3333292575 12 1a00000078180b0000000000 ....x....... +1970 5.183536291 127.0.0.1:57415 127.0.0.1:57433 3333292587 26 16000000548f6340e25e31400100030000009d891f0000000000 ....T.c@.^1@.............. +1972 5.183904648 127.0.0.1:57433 127.0.0.1:57415 377272421 12 ffffffff78180b0000000000 ....x....... +1974 5.184536219 127.0.0.1:57433 127.0.0.1:57415 377272433 12 1600000067f30a0000000000 ....g....... +1976 5.184769630 127.0.0.1:57433 127.0.0.1:57415 377272445 22 120000009d891f000000000001000300000000000000 ...................... +1978 5.185094833 127.0.0.1:57415 127.0.0.1:57433 3333292613 12 ffffffff67f30a0000000000 ....g....... +1982 5.240518093 127.0.0.1:57415 127.0.0.1:57433 3333292625 12 6500000079180b0000000000 e...y....... +1984 5.240700722 127.0.0.1:57415 127.0.0.1:57433 3333292637 101 1e0000001c2118d0c46f33bb010003000000c310020000000000e1a222c39d01 .....!...o3.................".....?.....3...|8.. +1986 5.241040945 127.0.0.1:57433 127.0.0.1:57415 377272467 12 ffffffff79180b0000000000 ....y....... +1988 5.242128134 127.0.0.1:57433 127.0.0.1:57415 377272479 12 3400000068f30a0000000000 4...h....... +1990 5.242299318 127.0.0.1:57433 127.0.0.1:57415 377272491 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................l +1992 5.242696762 127.0.0.1:57415 127.0.0.1:57433 3333292738 12 ffffffff68f30a0000000000 ....h....... +1994 5.243569613 127.0.0.1:57415 127.0.0.1:57433 3333292750 12 1e0000007a180b0000000000 ....z....... +1996 5.243730068 127.0.0.1:57415 127.0.0.1:57433 3333292762 30 1a00000055ceff62b21b3a500100030000009f891f000000000000000000 ....U..b..:P.................. +1998 5.244061470 127.0.0.1:57433 127.0.0.1:57415 377272543 12 ffffffff7a180b0000000000 ....z....... +2000 5.244612694 127.0.0.1:57433 127.0.0.1:57415 377272555 12 1a00000069f30a0000000000 ....i....... +2002 5.244772434 127.0.0.1:57433 127.0.0.1:57415 377272567 26 160000009f891f00000000000100030000000000000000000000 .......................... +2004 5.245015144 127.0.0.1:57415 127.0.0.1:57433 3333292792 12 ffffffff69f30a0000000000 ....i....... +2006 5.285968304 127.0.0.1:57415 127.0.0.1:57433 3333292804 12 1a0000007b180b0000000000 ....{....... +2008 5.286131144 127.0.0.1:57415 127.0.0.1:57433 3333292816 26 16000000548f6340e25e3140010003000000a1891f0000000000 ....T.c@.^1@.............. +2010 5.286492825 127.0.0.1:57433 127.0.0.1:57415 377272593 12 ffffffff7b180b0000000000 ....{....... +2012 5.286864996 127.0.0.1:57433 127.0.0.1:57415 377272605 12 160000006af30a0000000000 ....j....... +2014 5.287025213 127.0.0.1:57433 127.0.0.1:57415 377272617 22 12000000a1891f000000000001000300000000000000 ...................... +2016 5.287255526 127.0.0.1:57415 127.0.0.1:57433 3333292842 12 ffffffff6af30a0000000000 ....j....... +2024 5.389078856 127.0.0.1:57415 127.0.0.1:57433 3333292854 12 1a0000007c180b0000000000 ....|....... +2026 5.389290333 127.0.0.1:57415 127.0.0.1:57433 3333292866 26 16000000548f6340e25e3140010003000000a3891f0000000000 ....T.c@.^1@.............. +2028 5.389647961 127.0.0.1:57433 127.0.0.1:57415 377272639 12 ffffffff7c180b0000000000 ....|....... +2030 5.390135050 127.0.0.1:57433 127.0.0.1:57415 377272651 12 160000006bf30a0000000000 ....k....... +2032 5.390296459 127.0.0.1:57433 127.0.0.1:57415 377272663 22 12000000a3891f000000000001000300000000000000 ...................... +2034 5.390758038 127.0.0.1:57415 127.0.0.1:57433 3333292892 12 ffffffff6bf30a0000000000 ....k....... +2042 5.492799044 127.0.0.1:57415 127.0.0.1:57433 3333292904 12 1a0000007d180b0000000000 ....}....... +2044 5.492982149 127.0.0.1:57415 127.0.0.1:57433 3333292916 26 16000000548f6340e25e3140010003000000a5891f0000000000 ....T.c@.^1@.............. +2046 5.493314505 127.0.0.1:57433 127.0.0.1:57415 377272685 12 ffffffff7d180b0000000000 ....}....... +2048 5.493748188 127.0.0.1:57433 127.0.0.1:57415 377272697 12 160000006cf30a0000000000 ....l....... +2050 5.493907213 127.0.0.1:57433 127.0.0.1:57415 377272709 22 12000000a5891f000000000001000300000000000000 ...................... +2052 5.494184732 127.0.0.1:57415 127.0.0.1:57433 3333292942 12 ffffffff6cf30a0000000000 ....l....... +2057 5.546270132 127.0.0.1:57415 127.0.0.1:57433 3333292954 12 650000007e180b0000000000 e...~....... +2059 5.546420097 127.0.0.1:57415 127.0.0.1:57433 3333292966 101 1e0000001c2118d0c46f33bb010003000000c41002000000000013a422c39d01 .....!...o3.................".....?.....3...|8.. +2061 5.546736717 127.0.0.1:57433 127.0.0.1:57415 377272731 12 ffffffff7e180b0000000000 ....~....... +2063 5.547804832 127.0.0.1:57433 127.0.0.1:57415 377272743 12 340000006df30a0000000000 4...m....... +2065 5.547966957 127.0.0.1:57433 127.0.0.1:57415 377272755 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................l +2067 5.548292637 127.0.0.1:57415 127.0.0.1:57433 3333293067 12 ffffffff6df30a0000000000 ....m....... +2069 5.549214602 127.0.0.1:57415 127.0.0.1:57433 3333293079 12 1e0000007f180b0000000000 ............ +2071 5.549405336 127.0.0.1:57415 127.0.0.1:57433 3333293091 30 1a00000055ceff62b21b3a50010003000000a7891f000000000000000000 ....U..b..:P.................. +2073 5.549713612 127.0.0.1:57433 127.0.0.1:57415 377272807 12 ffffffff7f180b0000000000 ............ +2075 5.550116539 127.0.0.1:57433 127.0.0.1:57415 377272819 12 1a0000006ef30a0000000000 ....n....... +2077 5.550399065 127.0.0.1:57433 127.0.0.1:57415 377272831 26 16000000a7891f00000000000100030000000000000000000000 .......................... +2079 5.550781727 127.0.0.1:57415 127.0.0.1:57433 3333293121 12 ffffffff6ef30a0000000000 ....n....... +2082 5.595777988 127.0.0.1:57415 127.0.0.1:57433 3333293133 12 1a00000080180b0000000000 ............ +2084 5.595942974 127.0.0.1:57415 127.0.0.1:57433 3333293145 26 16000000548f6340e25e3140010003000000a9891f0000000000 ....T.c@.^1@.............. +2086 5.596281528 127.0.0.1:57433 127.0.0.1:57415 377272857 12 ffffffff80180b0000000000 ............ +2088 5.597241640 127.0.0.1:57433 127.0.0.1:57415 377272869 12 160000006ff30a0000000000 ....o....... +2090 5.597442389 127.0.0.1:57433 127.0.0.1:57415 377272881 22 12000000a9891f000000000001000300000000000000 ...................... +2092 5.597733021 127.0.0.1:57415 127.0.0.1:57433 3333293171 12 ffffffff6ff30a0000000000 ....o....... +2094 5.613994360 127.0.0.1:57433 127.0.0.1:57415 377272903 12 feffffff7642010087420100 ....vB...B.. +2106 5.671695471 127.0.0.1:57415 127.0.0.1:57433 3333293183 12 feffffff8842010076420100 .....B..vB.. +2112 5.698765278 127.0.0.1:57415 127.0.0.1:57433 3333293195 12 1a00000081180b0000000000 ............ +2114 5.698946476 127.0.0.1:57415 127.0.0.1:57433 3333293207 26 16000000548f6340e25e3140010003000000ab891f0000000000 ....T.c@.^1@.............. +2116 5.699310303 127.0.0.1:57433 127.0.0.1:57415 377272915 12 ffffffff81180b0000000000 ............ +2118 5.699829340 127.0.0.1:57433 127.0.0.1:57415 377272927 12 1600000070f30a0000000000 ....p....... +2120 5.699985266 127.0.0.1:57433 127.0.0.1:57415 377272939 22 12000000ab891f000000000001000300000000000000 ...................... +2122 5.700240850 127.0.0.1:57415 127.0.0.1:57433 3333293233 12 ffffffff70f30a0000000000 ....p....... +2125 5.801679611 127.0.0.1:57415 127.0.0.1:57433 3333293245 12 1a00000082180b0000000000 ............ +2127 5.801855564 127.0.0.1:57415 127.0.0.1:57433 3333293257 26 16000000548f6340e25e3140010003000000ad891f0000000000 ....T.c@.^1@.............. +2129 5.802197218 127.0.0.1:57433 127.0.0.1:57415 377272961 12 ffffffff82180b0000000000 ............ +2131 5.802634954 127.0.0.1:57433 127.0.0.1:57415 377272973 12 1600000071f30a0000000000 ....q....... +2133 5.802779913 127.0.0.1:57433 127.0.0.1:57415 377272985 22 12000000ad891f000000000001000300000000000000 ...................... +2135 5.803014040 127.0.0.1:57415 127.0.0.1:57433 3333293283 12 ffffffff71f30a0000000000 ....q....... +2137 5.851462126 127.0.0.1:57415 127.0.0.1:57433 3333293295 12 6500000083180b0000000000 e........... +2139 5.851633310 127.0.0.1:57415 127.0.0.1:57433 3333293307 101 1e0000001c2118d0c46f33bb010003000000c51002000000000044a522c39d01 .....!...o3...............D.".....?.....3...|8.. +2141 5.851974010 127.0.0.1:57433 127.0.0.1:57415 377273007 12 ffffffff83180b0000000000 ............ +2143 5.852940559 127.0.0.1:57433 127.0.0.1:57415 377273019 12 3400000072f30a0000000000 4...r....... +2145 5.853103161 127.0.0.1:57433 127.0.0.1:57415 377273031 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............1L.l +2147 5.853380919 127.0.0.1:57415 127.0.0.1:57433 3333293408 12 ffffffff72f30a0000000000 ....r....... +2149 5.854282618 127.0.0.1:57415 127.0.0.1:57433 3333293420 12 1e00000084180b0000000000 ............ +2151 5.854488373 127.0.0.1:57415 127.0.0.1:57433 3333293432 30 1a00000055ceff62b21b3a50010003000000af891f000000000000000000 ....U..b..:P.................. +2153 5.854988813 127.0.0.1:57433 127.0.0.1:57415 377273083 12 ffffffff84180b0000000000 ............ +2155 5.855298758 127.0.0.1:57433 127.0.0.1:57415 377273095 12 1a00000073f30a0000000000 ....s....... +2157 5.855479717 127.0.0.1:57433 127.0.0.1:57415 377273107 26 16000000af891f00000000000100030000000000000000000000 .......................... +2159 5.855764389 127.0.0.1:57415 127.0.0.1:57433 3333293462 12 ffffffff73f30a0000000000 ....s....... +2166 5.904944420 127.0.0.1:57415 127.0.0.1:57433 3333293474 12 1a00000085180b0000000000 ............ +2168 5.905210972 127.0.0.1:57415 127.0.0.1:57433 3333293486 26 16000000548f6340e25e3140010003000000b1891f0000000000 ....T.c@.^1@.............. +2170 5.905612469 127.0.0.1:57433 127.0.0.1:57415 377273133 12 ffffffff85180b0000000000 ............ +2172 5.905981302 127.0.0.1:57433 127.0.0.1:57415 377273145 12 1600000074f30a0000000000 ....t....... +2174 5.906145096 127.0.0.1:57433 127.0.0.1:57415 377273157 22 12000000b1891f000000000001000300000000000000 ...................... +2176 5.906512976 127.0.0.1:57415 127.0.0.1:57433 3333293512 12 ffffffff74f30a0000000000 ....t....... +2182 6.008524418 127.0.0.1:57415 127.0.0.1:57433 3333293524 12 1a00000086180b0000000000 ............ +2184 6.008762360 127.0.0.1:57415 127.0.0.1:57433 3333293536 26 16000000548f6340e25e3140010003000000b3891f0000000000 ....T.c@.^1@.............. +2186 6.009054184 127.0.0.1:57433 127.0.0.1:57415 377273179 12 ffffffff86180b0000000000 ............ +2188 6.009466171 127.0.0.1:57433 127.0.0.1:57415 377273191 12 1600000075f30a0000000000 ....u....... +2190 6.009625435 127.0.0.1:57433 127.0.0.1:57415 377273203 22 12000000b3891f000000000001000300000000000000 ...................... +2192 6.009935141 127.0.0.1:57415 127.0.0.1:57433 3333293562 12 ffffffff75f30a0000000000 ....u....... +2254 6.111973047 127.0.0.1:57415 127.0.0.1:57433 3333293574 12 1a00000087180b0000000000 ............ +2256 6.112193346 127.0.0.1:57415 127.0.0.1:57433 3333293586 26 16000000548f6340e25e3140010003000000b5891f0000000000 ....T.c@.^1@.............. +2258 6.112569332 127.0.0.1:57433 127.0.0.1:57415 377273225 12 ffffffff87180b0000000000 ............ +2260 6.112985134 127.0.0.1:57433 127.0.0.1:57415 377273237 12 1600000076f30a0000000000 ....v....... +2262 6.113152742 127.0.0.1:57433 127.0.0.1:57415 377273249 22 12000000b5891f000000000001000300000000000000 ...................... +2264 6.113476515 127.0.0.1:57415 127.0.0.1:57433 3333293612 12 ffffffff76f30a0000000000 ....v....... +2266 6.114652634 127.0.0.1:57433 127.0.0.1:57415 377273271 12 feffffff7742010088420100 ....wB...B.. +2276 6.156218529 127.0.0.1:57415 127.0.0.1:57433 3333293624 12 6500000088180b0000000000 e........... +2278 6.156411171 127.0.0.1:57415 127.0.0.1:57433 3333293636 101 1e0000001c2118d0c46f33bb010003000000c61002000000000075a622c39d01 .....!...o3...............u.".....?.....3...|8.. +2280 6.156672955 127.0.0.1:57433 127.0.0.1:57415 377273283 12 ffffffff88180b0000000000 ............ +2282 6.157702923 127.0.0.1:57433 127.0.0.1:57415 377273295 12 3400000077f30a0000000000 4...w....... +2284 6.157866240 127.0.0.1:57433 127.0.0.1:57415 377273307 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............k..m +2286 6.158133268 127.0.0.1:57415 127.0.0.1:57433 3333293737 12 ffffffff77f30a0000000000 ....w....... +2288 6.159310579 127.0.0.1:57415 127.0.0.1:57433 3333293749 12 1e00000089180b0000000000 ............ +2290 6.159505606 127.0.0.1:57415 127.0.0.1:57433 3333293761 30 1a00000055ceff62b21b3a50010003000000b7891f000000000000000000 ....U..b..:P.................. +2292 6.159786940 127.0.0.1:57433 127.0.0.1:57415 377273359 12 ffffffff89180b0000000000 ............ +2294 6.160151243 127.0.0.1:57433 127.0.0.1:57415 377273371 12 1a00000078f30a0000000000 ....x....... +2296 6.160353899 127.0.0.1:57433 127.0.0.1:57415 377273383 26 16000000b7891f00000000000100030000000000000000000000 .......................... +2298 6.160651922 127.0.0.1:57415 127.0.0.1:57433 3333293791 12 ffffffff78f30a0000000000 ....x....... +2301 6.172580004 127.0.0.1:57415 127.0.0.1:57433 3333293803 12 feffffff8942010077420100 .....B..wB.. +2306 6.214817047 127.0.0.1:57415 127.0.0.1:57433 3333293815 12 1a0000008a180b0000000000 ............ +2308 6.214990139 127.0.0.1:57415 127.0.0.1:57433 3333293827 26 16000000548f6340e25e3140010003000000b9891f0000000000 ....T.c@.^1@.............. +2310 6.215342999 127.0.0.1:57433 127.0.0.1:57415 377273409 12 ffffffff8a180b0000000000 ............ +2312 6.215715647 127.0.0.1:57433 127.0.0.1:57415 377273421 12 1600000079f30a0000000000 ....y....... +2314 6.215875387 127.0.0.1:57433 127.0.0.1:57415 377273433 22 12000000b9891f000000000001000300000000000000 ...................... +2316 6.216147184 127.0.0.1:57415 127.0.0.1:57433 3333293853 12 ffffffff79f30a0000000000 ....y....... +2319 6.317978621 127.0.0.1:57415 127.0.0.1:57433 3333293865 12 1a0000008b180b0000000000 ............ +2321 6.318171740 127.0.0.1:57415 127.0.0.1:57433 3333293877 26 16000000548f6340e25e3140010003000000bb891f0000000000 ....T.c@.^1@.............. +2323 6.318568945 127.0.0.1:57433 127.0.0.1:57415 377273455 12 ffffffff8b180b0000000000 ............ +2325 6.318974733 127.0.0.1:57433 127.0.0.1:57415 377273467 12 160000007af30a0000000000 ....z....... +2327 6.319141865 127.0.0.1:57433 127.0.0.1:57415 377273479 22 12000000bb891f000000000001000300000000000000 ...................... +2329 6.319437027 127.0.0.1:57415 127.0.0.1:57433 3333293903 12 ffffffff7af30a0000000000 ....z....... +2353 6.421054125 127.0.0.1:57415 127.0.0.1:57433 3333293915 12 1a0000008c180b0000000000 ............ +2355 6.421264172 127.0.0.1:57415 127.0.0.1:57433 3333293927 26 16000000548f6340e25e3140010003000000bd891f0000000000 ....T.c@.^1@.............. +2357 6.421574354 127.0.0.1:57433 127.0.0.1:57415 377273501 12 ffffffff8c180b0000000000 ............ +2359 6.422091484 127.0.0.1:57433 127.0.0.1:57415 377273513 12 160000007bf30a0000000000 ....{....... +2361 6.422252655 127.0.0.1:57433 127.0.0.1:57415 377273525 22 12000000bd891f000000000001000300000000000000 ...................... +2363 6.422644854 127.0.0.1:57415 127.0.0.1:57433 3333293953 12 ffffffff7bf30a0000000000 ....{....... +2365 6.461514235 127.0.0.1:57415 127.0.0.1:57433 3333293965 12 220000008d180b0000000000 "........... +2367 6.461785316 127.0.0.1:57415 127.0.0.1:57433 3333293977 34 1e0000001c2118d0c46f33bb010003000000c710020000000000a7a722c39d01 .....!...o3................."..... +2369 6.461873531 127.0.0.1:57415 127.0.0.1:57433 3333294011 12 430000008e180b0000000000 C........... +2371 6.461956978 127.0.0.1:57415 127.0.0.1:57433 3333294023 67 3f000000980433cb0cb47c380100030000000100000000c7100200000000003d ?.....3...|8...................=B.....&......... +2373 6.462048531 127.0.0.1:57433 127.0.0.1:57415 377273547 12 ffffffff8d180b0000000000 ............ +2375 6.462205648 127.0.0.1:57433 127.0.0.1:57415 377273559 12 ffffffff8e180b0000000000 ............ +2377 6.462985516 127.0.0.1:57433 127.0.0.1:57415 377273571 12 340000007cf30a0000000000 4...|....... +2379 6.463158369 127.0.0.1:57433 127.0.0.1:57415 377273583 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................eHm +2381 6.463397264 127.0.0.1:57415 127.0.0.1:57433 3333294090 12 ffffffff7cf30a0000000000 ....|....... +2383 6.464193583 127.0.0.1:57415 127.0.0.1:57433 3333294102 12 1e0000008f180b0000000000 ............ +2385 6.464322567 127.0.0.1:57415 127.0.0.1:57433 3333294114 30 1a00000055ceff62b21b3a50010003000000bf891f000000000000000000 ....U..b..:P.................. +2387 6.464644909 127.0.0.1:57433 127.0.0.1:57415 377273635 12 ffffffff8f180b0000000000 ............ +2389 6.465568542 127.0.0.1:57433 127.0.0.1:57415 377273647 12 1a0000007df30a0000000000 ....}....... +2391 6.465708971 127.0.0.1:57433 127.0.0.1:57415 377273659 26 16000000bf891f00000000000100030000000000000000000000 .......................... +2393 6.465897322 127.0.0.1:57415 127.0.0.1:57433 3333294144 12 ffffffff7df30a0000000000 ....}....... +2425 6.523964882 127.0.0.1:57415 127.0.0.1:57433 3333294156 12 1a00000090180b0000000000 ............ +2427 6.524136305 127.0.0.1:57415 127.0.0.1:57433 3333294168 26 16000000548f6340e25e3140010003000000c1891f0000000000 ....T.c@.^1@.............. +2429 6.524603844 127.0.0.1:57433 127.0.0.1:57415 377273685 12 ffffffff90180b0000000000 ............ +2431 6.524853230 127.0.0.1:57433 127.0.0.1:57415 377273697 12 160000007ef30a0000000000 ....~....... +2433 6.525011301 127.0.0.1:57433 127.0.0.1:57415 377273709 22 12000000c1891f000000000001000300000000000000 ...................... +2435 6.525362253 127.0.0.1:57415 127.0.0.1:57433 3333294194 12 ffffffff7ef30a0000000000 ....~....... +2442 6.615893841 127.0.0.1:57433 127.0.0.1:57415 377273731 12 feffffff7842010089420100 ....xB...B.. +2448 6.627004623 127.0.0.1:57415 127.0.0.1:57433 3333294206 12 1a00000091180b0000000000 ............ +2450 6.627275229 127.0.0.1:57415 127.0.0.1:57433 3333294218 26 16000000548f6340e25e3140010003000000c3891f0000000000 ....T.c@.^1@.............. +2452 6.627573013 127.0.0.1:57433 127.0.0.1:57415 377273743 12 ffffffff91180b0000000000 ............ +2454 6.628181696 127.0.0.1:57433 127.0.0.1:57415 377273755 12 160000007ff30a0000000000 ............ +2456 6.628376961 127.0.0.1:57433 127.0.0.1:57415 377273767 22 12000000c3891f000000000001000300000000000000 ...................... +2458 6.628743410 127.0.0.1:57415 127.0.0.1:57433 3333294244 12 ffffffff7ff30a0000000000 ............ +2461 6.673944473 127.0.0.1:57415 127.0.0.1:57433 3333294256 12 feffffff8a42010078420100 .....B..xB.. +2497 6.731317997 127.0.0.1:57415 127.0.0.1:57433 3333294268 12 1a00000092180b0000000000 ............ +2499 6.731517076 127.0.0.1:57415 127.0.0.1:57433 3333294280 26 16000000548f6340e25e3140010003000000c5891f0000000000 ....T.c@.^1@.............. +2501 6.731966496 127.0.0.1:57433 127.0.0.1:57415 377273789 12 ffffffff92180b0000000000 ............ +2503 6.732588768 127.0.0.1:57433 127.0.0.1:57415 377273801 12 1600000080f30a0000000000 ............ +2505 6.732809305 127.0.0.1:57433 127.0.0.1:57415 377273813 22 12000000c5891f000000000001000300000000000000 ...................... +2507 6.733108759 127.0.0.1:57415 127.0.0.1:57433 3333294306 12 ffffffff80f30a0000000000 ............ +2509 6.766778231 127.0.0.1:57415 127.0.0.1:57433 3333294318 12 6500000093180b0000000000 e........... +2511 6.766977549 127.0.0.1:57415 127.0.0.1:57433 3333294330 101 1e0000001c2118d0c46f33bb010003000000c810020000000000d8a822c39d01 .....!...o3.................".....?.....3...|8.. +2513 6.767340422 127.0.0.1:57433 127.0.0.1:57415 377273835 12 ffffffff93180b0000000000 ............ +2515 6.768358946 127.0.0.1:57433 127.0.0.1:57415 377273847 12 3400000081f30a0000000000 4........... +2517 6.768519402 127.0.0.1:57433 127.0.0.1:57415 377273859 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............H.vm +2519 6.768875837 127.0.0.1:57415 127.0.0.1:57433 3333294431 12 ffffffff81f30a0000000000 ............ +2521 6.770153522 127.0.0.1:57415 127.0.0.1:57433 3333294443 12 1e00000094180b0000000000 ............ +2523 6.770320654 127.0.0.1:57415 127.0.0.1:57433 3333294455 30 1a00000055ceff62b21b3a50010003000000c7891f000000000000000000 ....U..b..:P.................. +2525 6.770761967 127.0.0.1:57433 127.0.0.1:57415 377273911 12 ffffffff94180b0000000000 ............ +2527 6.771094084 127.0.0.1:57433 127.0.0.1:57415 377273923 12 1a00000082f30a0000000000 ............ +2529 6.771253347 127.0.0.1:57433 127.0.0.1:57415 377273935 26 16000000c7891f00000000000100030000000000000000000000 .......................... +2531 6.771548271 127.0.0.1:57415 127.0.0.1:57433 3333294485 12 ffffffff82f30a0000000000 ............ +2534 6.834219933 127.0.0.1:57415 127.0.0.1:57433 3333294497 12 1a00000095180b0000000000 ............ +2536 6.834395170 127.0.0.1:57415 127.0.0.1:57433 3333294509 26 16000000548f6340e25e3140010003000000c9891f0000000000 ....T.c@.^1@.............. +2538 6.834763765 127.0.0.1:57433 127.0.0.1:57415 377273961 12 ffffffff95180b0000000000 ............ +2540 6.835414410 127.0.0.1:57433 127.0.0.1:57415 377273973 12 1600000083f30a0000000000 ............ +2542 6.835559130 127.0.0.1:57433 127.0.0.1:57415 377273985 22 12000000c9891f000000000001000300000000000000 ...................... +2544 6.835830212 127.0.0.1:57415 127.0.0.1:57433 3333294535 12 ffffffff83f30a0000000000 ............ +2551 6.936810732 127.0.0.1:57415 127.0.0.1:57433 3333294547 12 1a00000096180b0000000000 ............ +2553 6.937060356 127.0.0.1:57415 127.0.0.1:57433 3333294559 26 16000000548f6340e25e3140010003000000cb891f0000000000 ....T.c@.^1@.............. +2555 6.937482834 127.0.0.1:57433 127.0.0.1:57415 377274007 12 ffffffff96180b0000000000 ............ +2557 6.938034534 127.0.0.1:57433 127.0.0.1:57415 377274019 12 1600000084f30a0000000000 ............ +2559 6.938180208 127.0.0.1:57433 127.0.0.1:57415 377274031 22 12000000cb891f000000000001000300000000000000 ...................... +2561 6.938488245 127.0.0.1:57415 127.0.0.1:57433 3333294585 12 ffffffff84f30a0000000000 ............ +2568 7.040423393 127.0.0.1:57415 127.0.0.1:57433 3333294597 12 1a00000097180b0000000000 ............ +2570 7.040659666 127.0.0.1:57415 127.0.0.1:57433 3333294609 26 16000000548f6340e25e3140010003000000cd891f0000000000 ....T.c@.^1@.............. +2572 7.041094542 127.0.0.1:57433 127.0.0.1:57415 377274053 12 ffffffff97180b0000000000 ............ +2574 7.041517496 127.0.0.1:57433 127.0.0.1:57415 377274065 12 1600000085f30a0000000000 ............ +2576 7.041685104 127.0.0.1:57433 127.0.0.1:57415 377274077 22 12000000cd891f000000000001000300000000000000 ...................... +2578 7.042009592 127.0.0.1:57415 127.0.0.1:57433 3333294635 12 ffffffff85f30a0000000000 ............ +2580 7.071761131 127.0.0.1:57415 127.0.0.1:57433 3333294647 12 6500000098180b0000000000 e........... +2582 7.071938992 127.0.0.1:57415 127.0.0.1:57433 3333294659 101 1e0000001c2118d0c46f33bb010003000000c91002000000000009aa22c39d01 .....!...o3.................".....?.....3...|8.. +2584 7.072292328 127.0.0.1:57433 127.0.0.1:57415 377274099 12 ffffffff98180b0000000000 ............ +2586 7.073391199 127.0.0.1:57433 127.0.0.1:57415 377274111 12 3400000086f30a0000000000 4........... +2588 7.073556662 127.0.0.1:57433 127.0.0.1:57415 377274123 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................m +2590 7.073877335 127.0.0.1:57415 127.0.0.1:57433 3333294760 12 ffffffff86f30a0000000000 ............ +2592 7.074773550 127.0.0.1:57415 127.0.0.1:57433 3333294772 12 1e00000099180b0000000000 ............ +2594 7.074938059 127.0.0.1:57415 127.0.0.1:57433 3333294784 30 1a00000055ceff62b21b3a50010003000000cf891f000000000000000000 ....U..b..:P.................. +2596 7.075258017 127.0.0.1:57433 127.0.0.1:57415 377274175 12 ffffffff99180b0000000000 ............ +2598 7.075643778 127.0.0.1:57433 127.0.0.1:57415 377274187 12 1a00000087f30a0000000000 ............ +2600 7.075840235 127.0.0.1:57433 127.0.0.1:57415 377274199 26 16000000cf891f00000000000100030000000000000000000000 .......................... +2602 7.076238394 127.0.0.1:57415 127.0.0.1:57433 3333294814 12 ffffffff87f30a0000000000 ............ +2608 7.116778851 127.0.0.1:57433 127.0.0.1:57415 377274225 12 feffffff794201008a420100 ....yB...B.. +2615 7.143345356 127.0.0.1:57415 127.0.0.1:57433 3333294826 12 1a0000009a180b0000000000 ............ +2617 7.143511295 127.0.0.1:57415 127.0.0.1:57433 3333294838 26 16000000548f6340e25e3140010003000000d1891f0000000000 ....T.c@.^1@.............. +2619 7.143815994 127.0.0.1:57433 127.0.0.1:57415 377274237 12 ffffffff9a180b0000000000 ............ +2621 7.144275904 127.0.0.1:57433 127.0.0.1:57415 377274249 12 1600000088f30a0000000000 ............ +2623 7.144434452 127.0.0.1:57433 127.0.0.1:57415 377274261 22 12000000d1891f000000000001000300000000000000 ...................... +2625 7.144703627 127.0.0.1:57415 127.0.0.1:57433 3333294864 12 ffffffff88f30a0000000000 ............ +2628 7.175260782 127.0.0.1:57415 127.0.0.1:57433 3333294876 12 feffffff8b42010079420100 .....B..yB.. +2639 7.247071505 127.0.0.1:57415 127.0.0.1:57433 3333294888 12 1a0000009b180b0000000000 ............ +2641 7.247256756 127.0.0.1:57415 127.0.0.1:57433 3333294900 26 16000000548f6340e25e3140010003000000d3891f0000000000 ....T.c@.^1@.............. +2643 7.247724295 127.0.0.1:57433 127.0.0.1:57415 377274283 12 ffffffff9b180b0000000000 ............ +2646 7.248146057 127.0.0.1:57433 127.0.0.1:57415 377274295 12 1600000089f30a0000000000 ............ +2648 7.248306990 127.0.0.1:57433 127.0.0.1:57415 377274307 22 12000000d3891f000000000001000300000000000000 ...................... +2650 7.248771429 127.0.0.1:57415 127.0.0.1:57433 3333294926 12 ffffffff89f30a0000000000 ............ +2682 7.350815773 127.0.0.1:57415 127.0.0.1:57433 3333294938 12 1a0000009c180b0000000000 ............ +2684 7.350994825 127.0.0.1:57415 127.0.0.1:57433 3333294950 26 16000000548f6340e25e3140010003000000d5891f0000000000 ....T.c@.^1@.............. +2686 7.351326466 127.0.0.1:57433 127.0.0.1:57415 377274329 12 ffffffff9c180b0000000000 ............ +2688 7.351883650 127.0.0.1:57433 127.0.0.1:57415 377274341 12 160000008af30a0000000000 ............ +2690 7.352047682 127.0.0.1:57433 127.0.0.1:57415 377274353 22 12000000d5891f000000000001000300000000000000 ...................... +2692 7.352411747 127.0.0.1:57415 127.0.0.1:57433 3333294976 12 ffffffff8af30a0000000000 ............ +2699 7.377049685 127.0.0.1:57415 127.0.0.1:57433 3333294988 12 650000009d180b0000000000 e........... +2701 7.377310038 127.0.0.1:57415 127.0.0.1:57433 3333295000 101 1e0000001c2118d0c46f33bb010003000000ca100200000000003aab22c39d01 .....!...o3...............:.".....?.....3...|8.. +2703 7.377647400 127.0.0.1:57433 127.0.0.1:57415 377274375 12 ffffffff9d180b0000000000 ............ +2705 7.378565550 127.0.0.1:57433 127.0.0.1:57415 377274387 12 340000008bf30a0000000000 4........... +2707 7.378728151 127.0.0.1:57433 127.0.0.1:57415 377274399 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............-..m +2709 7.379003048 127.0.0.1:57415 127.0.0.1:57433 3333295101 12 ffffffff8bf30a0000000000 ............ +2711 7.379844904 127.0.0.1:57415 127.0.0.1:57433 3333295113 12 1e0000009e180b0000000000 ............ +2713 7.380012989 127.0.0.1:57415 127.0.0.1:57433 3333295125 30 1a00000055ceff62b21b3a50010003000000d7891f000000000000000000 ....U..b..:P.................. +2715 7.380359650 127.0.0.1:57433 127.0.0.1:57415 377274451 12 ffffffff9e180b0000000000 ............ +2717 7.380659580 127.0.0.1:57433 127.0.0.1:57415 377274463 12 1a0000008cf30a0000000000 ............ +2719 7.380791187 127.0.0.1:57433 127.0.0.1:57415 377274475 26 16000000d7891f00000000000100030000000000000000000000 .......................... +2721 7.380977631 127.0.0.1:57415 127.0.0.1:57433 3333295155 12 ffffffff8cf30a0000000000 ............ +2723 7.453709364 127.0.0.1:57415 127.0.0.1:57433 3333295167 12 1a0000009f180b0000000000 ............ +2725 7.453887939 127.0.0.1:57415 127.0.0.1:57433 3333295179 26 16000000548f6340e25e3140010003000000d9891f0000000000 ....T.c@.^1@.............. +2727 7.454275846 127.0.0.1:57433 127.0.0.1:57415 377274501 12 ffffffff9f180b0000000000 ............ +2729 7.454552412 127.0.0.1:57433 127.0.0.1:57415 377274513 12 160000008df30a0000000000 ............ +2731 7.454716682 127.0.0.1:57433 127.0.0.1:57415 377274525 22 12000000d9891f000000000001000300000000000000 ...................... +2733 7.455056429 127.0.0.1:57415 127.0.0.1:57433 3333295205 12 ffffffff8df30a0000000000 ............ +2740 7.556909561 127.0.0.1:57415 127.0.0.1:57433 3333295217 12 1a000000a0180b0000000000 ............ +2742 7.557092667 127.0.0.1:57415 127.0.0.1:57433 3333295229 26 16000000548f6340e25e3140010003000000db891f0000000000 ....T.c@.^1@.............. +2744 7.557389021 127.0.0.1:57433 127.0.0.1:57415 377274547 12 ffffffffa0180b0000000000 ............ +2746 7.557777405 127.0.0.1:57433 127.0.0.1:57415 377274559 12 160000008ef30a0000000000 ............ +2748 7.557937145 127.0.0.1:57433 127.0.0.1:57415 377274571 22 12000000db891f000000000001000300000000000000 ...................... +2750 7.558202267 127.0.0.1:57415 127.0.0.1:57433 3333295255 12 ffffffff8ef30a0000000000 ............ +2755 7.616833448 127.0.0.1:57433 127.0.0.1:57415 377274593 12 feffffff7a4201008b420100 ....zB...B.. +2762 7.659121752 127.0.0.1:57415 127.0.0.1:57433 3333295267 12 1a000000a1180b0000000000 ............ +2764 7.659281969 127.0.0.1:57415 127.0.0.1:57433 3333295279 26 16000000548f6340e25e3140010003000000dd891f0000000000 ....T.c@.^1@.............. +2766 7.659583330 127.0.0.1:57433 127.0.0.1:57415 377274605 12 ffffffffa1180b0000000000 ............ +2768 7.659978867 127.0.0.1:57433 127.0.0.1:57415 377274617 12 160000008ff30a0000000000 ............ +2770 7.660146952 127.0.0.1:57433 127.0.0.1:57415 377274629 22 12000000dd891f000000000001000300000000000000 ...................... +2772 7.660396338 127.0.0.1:57415 127.0.0.1:57433 3333295305 12 ffffffff8ff30a0000000000 ............ +2774 7.675961018 127.0.0.1:57415 127.0.0.1:57433 3333295317 12 feffffff8c4201007a420100 .....B..zB.. +2780 7.681868792 127.0.0.1:57415 127.0.0.1:57433 3333295329 12 22000000a2180b0000000000 "........... +2782 7.682056427 127.0.0.1:57415 127.0.0.1:57433 3333295341 34 1e0000001c2118d0c46f33bb010003000000cb100200000000006bac22c39d01 .....!...o3...............k."..... +2784 7.682186842 127.0.0.1:57415 127.0.0.1:57433 3333295375 12 43000000a3180b0000000000 C........... +2786 7.682271004 127.0.0.1:57415 127.0.0.1:57433 3333295387 67 3f000000980433cb0cb47c380100030000000100000000cb100200000000003d ?.....3...|8...................=B.....&......... +2788 7.682357550 127.0.0.1:57433 127.0.0.1:57415 377274651 12 ffffffffa2180b0000000000 ............ +2790 7.682530165 127.0.0.1:57433 127.0.0.1:57415 377274663 12 ffffffffa3180b0000000000 ............ +2792 7.683186769 127.0.0.1:57433 127.0.0.1:57415 377274675 12 3400000090f30a0000000000 4........... +2794 7.683354855 127.0.0.1:57433 127.0.0.1:57415 377274687 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............`..n +2796 7.683669567 127.0.0.1:57415 127.0.0.1:57433 3333295454 12 ffffffff90f30a0000000000 ............ +2798 7.684558630 127.0.0.1:57415 127.0.0.1:57433 3333295466 12 1e000000a4180b0000000000 ............ +2800 7.684709787 127.0.0.1:57415 127.0.0.1:57433 3333295478 30 1a00000055ceff62b21b3a50010003000000df891f000000000000000000 ....U..b..:P.................. +2802 7.685049057 127.0.0.1:57433 127.0.0.1:57415 377274739 12 ffffffffa4180b0000000000 ............ +2804 7.685470104 127.0.0.1:57433 127.0.0.1:57415 377274751 12 1a00000091f30a0000000000 ............ +2806 7.685715675 127.0.0.1:57433 127.0.0.1:57415 377274763 26 16000000df891f00000000000100030000000000000000000000 .......................... +2808 7.685986757 127.0.0.1:57415 127.0.0.1:57433 3333295508 12 ffffffff91f30a0000000000 ............ +2810 7.762709618 127.0.0.1:57415 127.0.0.1:57433 3333295520 12 1a000000a5180b0000000000 ............ +2812 7.762914419 127.0.0.1:57415 127.0.0.1:57433 3333295532 26 16000000548f6340e25e3140010003000000e1891f0000000000 ....T.c@.^1@.............. +2814 7.763280869 127.0.0.1:57433 127.0.0.1:57415 377274789 12 ffffffffa5180b0000000000 ............ +2816 7.763828754 127.0.0.1:57433 127.0.0.1:57415 377274801 12 1600000092f30a0000000000 ............ +2818 7.763991356 127.0.0.1:57433 127.0.0.1:57415 377274813 22 12000000e1891f000000000001000300000000000000 ...................... +2820 7.764386654 127.0.0.1:57415 127.0.0.1:57433 3333295558 12 ffffffff92f30a0000000000 ............ +2856 7.866885424 127.0.0.1:57415 127.0.0.1:57433 3333295570 12 1a000000a6180b0000000000 ............ +2858 7.867063284 127.0.0.1:57415 127.0.0.1:57433 3333295582 26 16000000548f6340e25e3140010003000000e3891f0000000000 ....T.c@.^1@.............. +2860 7.867452860 127.0.0.1:57433 127.0.0.1:57415 377274835 12 ffffffffa6180b0000000000 ............ +2864 7.867945433 127.0.0.1:57433 127.0.0.1:57415 377274847 12 1600000093f30a0000000000 ............ +2866 7.868105412 127.0.0.1:57433 127.0.0.1:57415 377274859 22 12000000e3891f000000000001000300000000000000 ...................... +2868 7.868371964 127.0.0.1:57415 127.0.0.1:57433 3333295608 12 ffffffff93f30a0000000000 ............ +2870 7.969973564 127.0.0.1:57415 127.0.0.1:57433 3333295620 12 1a000000a7180b0000000000 ............ +2872 7.970175028 127.0.0.1:57415 127.0.0.1:57433 3333295632 26 16000000548f6340e25e3140010003000000e5891f0000000000 ....T.c@.^1@.............. +2874 7.970466375 127.0.0.1:57433 127.0.0.1:57415 377274881 12 ffffffffa7180b0000000000 ............ +2876 7.971007824 127.0.0.1:57433 127.0.0.1:57415 377274893 12 1600000094f30a0000000000 ............ +2878 7.971190929 127.0.0.1:57433 127.0.0.1:57415 377274905 22 12000000e5891f000000000001000300000000000000 ...................... +2880 7.971624613 127.0.0.1:57415 127.0.0.1:57433 3333295658 12 ffffffff94f30a0000000000 ............ +2886 7.985486984 127.0.0.1:57415 127.0.0.1:57433 3333295670 12 65000000a8180b0000000000 e........... +2888 7.985627890 127.0.0.1:57415 127.0.0.1:57433 3333295682 101 1e0000001c2118d0c46f33bb010003000000cc100200000000009aad22c39d01 .....!...o3.................".....?.....3...|8.. +2890 7.985945702 127.0.0.1:57433 127.0.0.1:57415 377274927 12 ffffffffa8180b0000000000 ............ +2892 7.987027407 127.0.0.1:57433 127.0.0.1:57415 377274939 12 3400000095f30a0000000000 4........... +2894 7.987189531 127.0.0.1:57433 127.0.0.1:57415 377274951 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................0n +2896 7.987483263 127.0.0.1:57415 127.0.0.1:57433 3333295783 12 ffffffff95f30a0000000000 ............ +2898 7.988317728 127.0.0.1:57415 127.0.0.1:57433 3333295795 12 1e000000a9180b0000000000 ............ +2900 7.988498926 127.0.0.1:57415 127.0.0.1:57433 3333295807 30 1a00000055ceff62b21b3a50010003000000e7891f000000000000000000 ....U..b..:P.................. +2902 7.988778114 127.0.0.1:57433 127.0.0.1:57415 377275003 12 ffffffffa9180b0000000000 ............ +2904 7.989213705 127.0.0.1:57433 127.0.0.1:57415 377275015 12 1a00000096f30a0000000000 ............ +2906 7.989357948 127.0.0.1:57433 127.0.0.1:57415 377275027 26 16000000e7891f00000000000100030000000000000000000000 .......................... +2908 7.989694118 127.0.0.1:57415 127.0.0.1:57433 3333295837 12 ffffffff96f30a0000000000 ............ +2921 8.072927952 127.0.0.1:57415 127.0.0.1:57433 3333295849 12 1a000000aa180b0000000000 ............ +2923 8.073101997 127.0.0.1:57415 127.0.0.1:57433 3333295861 26 16000000548f6340e25e3140010003000000e9891f0000000000 ....T.c@.^1@.............. +2925 8.073456049 127.0.0.1:57433 127.0.0.1:57415 377275053 12 ffffffffaa180b0000000000 ............ +2927 8.073900223 127.0.0.1:57433 127.0.0.1:57415 377275065 12 1600000097f30a0000000000 ............ +2929 8.074064970 127.0.0.1:57433 127.0.0.1:57415 377275077 22 12000000e9891f000000000001000300000000000000 ...................... +2931 8.074398279 127.0.0.1:57415 127.0.0.1:57433 3333295887 12 ffffffff97f30a0000000000 ............ +2938 8.118097544 127.0.0.1:57433 127.0.0.1:57415 377275099 12 feffffff7b4201008c420100 ....{B...B.. +2943 8.176173210 127.0.0.1:57415 127.0.0.1:57433 3333295899 12 1a000000ab180b0000000000 ............ +2945 8.176346779 127.0.0.1:57415 127.0.0.1:57433 3333295911 26 16000000548f6340e25e3140010003000000eb891f0000000000 ....T.c@.^1@.............. +2947 8.176808834 127.0.0.1:57433 127.0.0.1:57415 377275111 12 ffffffffab180b0000000000 ............ +2948 8.176923752 127.0.0.1:57415 127.0.0.1:57433 3333295937 12 feffffff8d4201007b420100 .....B..{B.. +2952 8.177224874 127.0.0.1:57433 127.0.0.1:57415 377275123 12 1600000098f30a0000000000 ............ +2954 8.177390575 127.0.0.1:57433 127.0.0.1:57415 377275135 22 12000000eb891f000000000001000300000000000000 ...................... +2956 8.177674294 127.0.0.1:57415 127.0.0.1:57433 3333295949 12 ffffffff98f30a0000000000 ............ +2990 8.279451132 127.0.0.1:57415 127.0.0.1:57433 3333295961 12 1a000000ac180b0000000000 ............ +2992 8.279638529 127.0.0.1:57415 127.0.0.1:57433 3333295973 26 16000000548f6340e25e3140010003000000ed891f0000000000 ....T.c@.^1@.............. +2994 8.279998064 127.0.0.1:57433 127.0.0.1:57415 377275157 12 ffffffffac180b0000000000 ............ +2996 8.280528069 127.0.0.1:57433 127.0.0.1:57415 377275169 12 1600000099f30a0000000000 ............ +2998 8.280693293 127.0.0.1:57433 127.0.0.1:57415 377275181 22 12000000ed891f000000000001000300000000000000 ...................... +3000 8.281028509 127.0.0.1:57415 127.0.0.1:57433 3333295999 12 ffffffff99f30a0000000000 ............ +3002 8.291115761 127.0.0.1:57415 127.0.0.1:57433 3333296011 12 65000000ad180b0000000000 e........... +3004 8.291289091 127.0.0.1:57415 127.0.0.1:57433 3333296023 101 1e0000001c2118d0c46f33bb010003000000cd10020000000000ccae22c39d01 .....!...o3.................".....?.....3...|8.. +3006 8.291573763 127.0.0.1:57433 127.0.0.1:57415 377275203 12 ffffffffad180b0000000000 ............ +3008 8.292597294 127.0.0.1:57433 127.0.0.1:57415 377275215 12 340000009af30a0000000000 4........... +3010 8.292754889 127.0.0.1:57433 127.0.0.1:57415 377275227 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................._n +3012 8.292952299 127.0.0.1:57415 127.0.0.1:57433 3333296124 12 ffffffff9af30a0000000000 ............ +3014 8.293964624 127.0.0.1:57415 127.0.0.1:57433 3333296136 12 1e000000ae180b0000000000 ............ +3016 8.294124365 127.0.0.1:57415 127.0.0.1:57433 3333296148 30 1a00000055ceff62b21b3a50010003000000ef891f000000000000000000 ....U..b..:P.................. +3018 8.294366360 127.0.0.1:57433 127.0.0.1:57415 377275279 12 ffffffffae180b0000000000 ............ +3020 8.294765949 127.0.0.1:57433 127.0.0.1:57415 377275291 12 1a0000009bf30a0000000000 ............ +3022 8.294905424 127.0.0.1:57433 127.0.0.1:57415 377275303 26 16000000ef891f00000000000100030000000000000000000000 .......................... +3024 8.295089006 127.0.0.1:57415 127.0.0.1:57433 3333296178 12 ffffffff9bf30a0000000000 ............ +3031 8.382397652 127.0.0.1:57415 127.0.0.1:57433 3333296190 12 1a000000af180b0000000000 ............ +3033 8.382590294 127.0.0.1:57415 127.0.0.1:57433 3333296202 26 16000000548f6340e25e3140010003000000f1891f0000000000 ....T.c@.^1@.............. +3035 8.382927418 127.0.0.1:57433 127.0.0.1:57415 377275329 12 ffffffffaf180b0000000000 ............ +3037 8.383404255 127.0.0.1:57433 127.0.0.1:57415 377275341 12 160000009cf30a0000000000 ............ +3039 8.383758545 127.0.0.1:57433 127.0.0.1:57415 377275353 22 12000000f1891f000000000001000300000000000000 ...................... +3041 8.384049416 127.0.0.1:57415 127.0.0.1:57433 3333296228 12 ffffffff9cf30a0000000000 ............ +3048 8.485259056 127.0.0.1:57415 127.0.0.1:57433 3333296240 12 1a000000b0180b0000000000 ............ +3051 8.485438824 127.0.0.1:57415 127.0.0.1:57433 3333296252 26 16000000548f6340e25e3140010003000000f3891f0000000000 ....T.c@.^1@.............. +3054 8.485840321 127.0.0.1:57433 127.0.0.1:57415 377275375 12 ffffffffb0180b0000000000 ............ +3056 8.486297369 127.0.0.1:57433 127.0.0.1:57415 377275387 12 160000009df30a0000000000 ............ +3058 8.486456156 127.0.0.1:57433 127.0.0.1:57415 377275399 22 12000000f3891f000000000001000300000000000000 ...................... +3060 8.486748219 127.0.0.1:57415 127.0.0.1:57433 3333296278 12 ffffffff9df30a0000000000 ............ +3063 8.588092804 127.0.0.1:57415 127.0.0.1:57433 3333296290 12 1a000000b1180b0000000000 ............ +3065 8.588273048 127.0.0.1:57415 127.0.0.1:57433 3333296302 26 16000000548f6340e25e3140010003000000f5891f0000000000 ....T.c@.^1@.............. +3067 8.588772535 127.0.0.1:57433 127.0.0.1:57415 377275421 12 ffffffffb1180b0000000000 ............ +3069 8.589277744 127.0.0.1:57433 127.0.0.1:57415 377275433 12 160000009ef30a0000000000 ............ +3071 8.589487314 127.0.0.1:57433 127.0.0.1:57415 377275445 22 12000000f5891f000000000001000300000000000000 ...................... +3073 8.589778662 127.0.0.1:57415 127.0.0.1:57433 3333296328 12 ffffffff9ef30a0000000000 ............ +3075 8.595207453 127.0.0.1:57415 127.0.0.1:57433 3333296340 12 65000000b2180b0000000000 e........... +3077 8.595350266 127.0.0.1:57415 127.0.0.1:57433 3333296352 101 1e0000001c2118d0c46f33bb010003000000ce10020000000000fcaf22c39d01 .....!...o3.................".....?.....3...|8.. +3079 8.595677137 127.0.0.1:57433 127.0.0.1:57415 377275467 12 ffffffffb2180b0000000000 ............ +3081 8.596781969 127.0.0.1:57433 127.0.0.1:57415 377275479 12 340000009ff30a0000000000 4........... +3083 8.596927404 127.0.0.1:57433 127.0.0.1:57415 377275491 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............C..n +3085 8.597196817 127.0.0.1:57415 127.0.0.1:57433 3333296453 12 ffffffff9ff30a0000000000 ............ +3087 8.598031282 127.0.0.1:57415 127.0.0.1:57433 3333296465 12 1e000000b3180b0000000000 ............ +3089 8.598189592 127.0.0.1:57415 127.0.0.1:57433 3333296477 30 1a00000055ceff62b21b3a50010003000000f7891f000000000000000000 ....U..b..:P.................. +3091 8.598583221 127.0.0.1:57433 127.0.0.1:57415 377275543 12 ffffffffb3180b0000000000 ............ +3093 8.598926783 127.0.0.1:57433 127.0.0.1:57415 377275555 12 1a000000a0f30a0000000000 ............ +3095 8.599065781 127.0.0.1:57433 127.0.0.1:57415 377275567 26 16000000f7891f00000000000100030000000000000000000000 .......................... +3097 8.599298954 127.0.0.1:57415 127.0.0.1:57433 3333296507 12 ffffffffa0f30a0000000000 ............ +3103 8.618142366 127.0.0.1:57433 127.0.0.1:57415 377275593 12 feffffff7c4201008d420100 ....|B...B.. +3110 8.678949356 127.0.0.1:57415 127.0.0.1:57433 3333296519 12 feffffff8e4201007c420100 .....B..|B.. +3116 8.691304445 127.0.0.1:57415 127.0.0.1:57433 3333296531 12 1a000000b4180b0000000000 ............ +3118 8.691501856 127.0.0.1:57415 127.0.0.1:57433 3333296543 26 16000000548f6340e25e3140010003000000f9891f0000000000 ....T.c@.^1@.............. +3120 8.691859484 127.0.0.1:57433 127.0.0.1:57415 377275605 12 ffffffffb4180b0000000000 ............ +3122 8.692381144 127.0.0.1:57433 127.0.0.1:57415 377275617 12 16000000a1f30a0000000000 ............ +3124 8.692580938 127.0.0.1:57433 127.0.0.1:57415 377275629 22 12000000f9891f000000000001000300000000000000 ...................... +3126 8.692948580 127.0.0.1:57415 127.0.0.1:57433 3333296569 12 ffffffffa1f30a0000000000 ............ +3129 8.794821978 127.0.0.1:57415 127.0.0.1:57433 3333296581 12 1a000000b5180b0000000000 ............ +3131 8.795031548 127.0.0.1:57415 127.0.0.1:57433 3333296593 26 16000000548f6340e25e3140010003000000fb891f0000000000 ....T.c@.^1@.............. +3133 8.795361519 127.0.0.1:57433 127.0.0.1:57415 377275651 12 ffffffffb5180b0000000000 ............ +3135 8.796051264 127.0.0.1:57433 127.0.0.1:57415 377275663 12 16000000a2f30a0000000000 ............ +3137 8.796261311 127.0.0.1:57433 127.0.0.1:57415 377275675 22 12000000fb891f000000000001000300000000000000 ...................... +3139 8.796542406 127.0.0.1:57415 127.0.0.1:57433 3333296619 12 ffffffffa2f30a0000000000 ............ +3145 8.898987532 127.0.0.1:57415 127.0.0.1:57433 3333296631 12 1a000000b6180b0000000000 ............ +3147 8.899215460 127.0.0.1:57415 127.0.0.1:57433 3333296643 26 16000000548f6340e25e3140010003000000fd891f0000000000 ....T.c@.^1@.............. +3150 8.899354458 127.0.0.1:57415 127.0.0.1:57433 3333296669 12 65000000b7180b0000000000 e........... +3152 8.899443626 127.0.0.1:57415 127.0.0.1:57433 3333296681 101 1e0000001c2118d0c46f33bb010003000000cf100200000000002cb122c39d01 .....!...o3...............,.".....?.....3...|8.. +3154 8.899544239 127.0.0.1:57433 127.0.0.1:57415 377275697 12 ffffffffb6180b0000000000 ............ +3156 8.899736881 127.0.0.1:57433 127.0.0.1:57415 377275709 12 ffffffffb7180b0000000000 ............ +3158 8.900092840 127.0.0.1:57433 127.0.0.1:57415 377275721 12 16000000a3f30a0000000000 ............ +3160 8.900272608 127.0.0.1:57433 127.0.0.1:57415 377275733 22 12000000fd891f000000000001000300000000000000 ...................... +3162 8.900519371 127.0.0.1:57415 127.0.0.1:57433 3333296782 12 ffffffffa3f30a0000000000 ............ +3164 8.900782585 127.0.0.1:57433 127.0.0.1:57415 377275755 12 34000000a4f30a0000000000 4........... +3166 8.900953054 127.0.0.1:57433 127.0.0.1:57415 377275767 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............#_.n +3168 8.901330948 127.0.0.1:57415 127.0.0.1:57433 3333296794 12 ffffffffa4f30a0000000000 ............ +3170 8.902072906 127.0.0.1:57415 127.0.0.1:57433 3333296806 12 1e000000b8180b0000000000 ............ +3172 8.902256489 127.0.0.1:57415 127.0.0.1:57433 3333296818 30 1a00000055ceff62b21b3a50010003000000ff891f000000000000000000 ....U..b..:P.................. +3174 8.902459383 127.0.0.1:57433 127.0.0.1:57415 377275819 12 ffffffffb8180b0000000000 ............ +3176 8.902797937 127.0.0.1:57433 127.0.0.1:57415 377275831 12 1a000000a5f30a0000000000 ............ +3178 8.902945518 127.0.0.1:57433 127.0.0.1:57415 377275843 26 16000000ff891f00000000000100030000000000000000000000 .......................... +3180 8.903202534 127.0.0.1:57415 127.0.0.1:57433 3333296848 12 ffffffffa5f30a0000000000 ............ +3186 9.001860380 127.0.0.1:57415 127.0.0.1:57433 3333296860 12 1a000000b9180b0000000000 ............ +3188 9.002077103 127.0.0.1:57415 127.0.0.1:57433 3333296872 26 16000000548f6340e25e3140010003000000018a1f0000000000 ....T.c@.^1@.............. +3190 9.002408504 127.0.0.1:57433 127.0.0.1:57415 377275869 12 ffffffffb9180b0000000000 ............ +3192 9.002931595 127.0.0.1:57433 127.0.0.1:57415 377275881 12 16000000a6f30a0000000000 ............ +3194 9.003093481 127.0.0.1:57433 127.0.0.1:57415 377275893 22 12000000018a1f000000000001000300000000000000 ...................... +3196 9.003410339 127.0.0.1:57415 127.0.0.1:57433 3333296898 12 ffffffffa6f30a0000000000 ............ +3199 9.104399443 127.0.0.1:57415 127.0.0.1:57433 3333296910 12 1a000000ba180b0000000000 ............ +3201 9.104597569 127.0.0.1:57415 127.0.0.1:57433 3333296922 26 16000000548f6340e25e3140010003000000038a1f0000000000 ....T.c@.^1@.............. +3203 9.104973555 127.0.0.1:57433 127.0.0.1:57415 377275915 12 ffffffffba180b0000000000 ............ +3205 9.105460405 127.0.0.1:57433 127.0.0.1:57415 377275927 12 16000000a7f30a0000000000 ............ +3207 9.105715513 127.0.0.1:57433 127.0.0.1:57415 377275939 22 12000000038a1f000000000001000300000000000000 ...................... +3209 9.105978251 127.0.0.1:57415 127.0.0.1:57433 3333296948 12 ffffffffa7f30a0000000000 ............ +3217 9.119635105 127.0.0.1:57433 127.0.0.1:57415 377275961 12 feffffff7d4201008e420100 ....}B...B.. +3223 9.180026054 127.0.0.1:57415 127.0.0.1:57433 3333296960 12 feffffff8f4201007d420100 .....B..}B.. +3228 9.204265833 127.0.0.1:57415 127.0.0.1:57433 3333296972 12 22000000bb180b0000000000 "........... +3230 9.204431057 127.0.0.1:57415 127.0.0.1:57433 3333296984 34 1e0000001c2118d0c46f33bb010003000000d0100200000000005eb222c39d01 .....!...o3...............^."..... +3232 9.204571247 127.0.0.1:57415 127.0.0.1:57433 3333297018 12 43000000bc180b0000000000 C........... +3234 9.204656363 127.0.0.1:57415 127.0.0.1:57433 3333297030 67 3f000000980433cb0cb47c380100030000000100000000d0100200000000003d ?.....3...|8...................=B.....&......... +3236 9.204787731 127.0.0.1:57433 127.0.0.1:57415 377275973 12 ffffffffbb180b0000000000 ............ +3238 9.204954863 127.0.0.1:57433 127.0.0.1:57415 377275985 12 ffffffffbc180b0000000000 ............ +3240 9.205748558 127.0.0.1:57433 127.0.0.1:57415 377275997 12 34000000a8f30a0000000000 4........... +3242 9.205909729 127.0.0.1:57433 127.0.0.1:57415 377276009 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................n +3244 9.206184864 127.0.0.1:57415 127.0.0.1:57433 3333297097 12 ffffffffa8f30a0000000000 ............ +3246 9.207042933 127.0.0.1:57415 127.0.0.1:57433 3333297109 12 1e000000bd180b0000000000 ............ +3248 9.207160711 127.0.0.1:57415 127.0.0.1:57433 3333297121 30 1a00000055ceff62b21b3a50010003000000058a1f000000000000000000 ....U..b..:P.................. +3250 9.207299232 127.0.0.1:57415 127.0.0.1:57433 3333297151 12 1a000000be180b0000000000 ............ +3252 9.207384109 127.0.0.1:57415 127.0.0.1:57433 3333297163 26 16000000548f6340e25e3140010003000000078a1f0000000000 ....T.c@.^1@.............. +3254 9.207444429 127.0.0.1:57433 127.0.0.1:57415 377276061 12 ffffffffbd180b0000000000 ............ +3256 9.207656384 127.0.0.1:57433 127.0.0.1:57415 377276073 12 ffffffffbe180b0000000000 ............ +3258 9.207821369 127.0.0.1:57433 127.0.0.1:57415 377276085 12 1a000000a9f30a0000000000 ............ +3260 9.207992077 127.0.0.1:57433 127.0.0.1:57415 377276097 26 16000000058a1f00000000000100030000000000000000000000 .......................... +3262 9.208079338 127.0.0.1:57433 127.0.0.1:57415 377276123 12 16000000aaf30a0000000000 ............ +3265 9.208161592 127.0.0.1:57415 127.0.0.1:57433 3333297189 12 ffffffffa9f30a0000000000 ............ +3264 9.208162069 127.0.0.1:57433 127.0.0.1:57415 377276135 22 12000000078a1f000000000001000300000000000000 ...................... +3268 9.208360434 127.0.0.1:57415 127.0.0.1:57433 3333297201 12 ffffffffaaf30a0000000000 ............ +3303 9.310448885 127.0.0.1:57415 127.0.0.1:57433 3333297213 12 1a000000bf180b0000000000 ............ +3305 9.310663462 127.0.0.1:57415 127.0.0.1:57433 3333297225 26 16000000548f6340e25e3140010003000000098a1f0000000000 ....T.c@.^1@.............. +3307 9.311038494 127.0.0.1:57433 127.0.0.1:57415 377276157 12 ffffffffbf180b0000000000 ............ +3309 9.311372519 127.0.0.1:57433 127.0.0.1:57415 377276169 12 16000000abf30a0000000000 ............ +3311 9.311535597 127.0.0.1:57433 127.0.0.1:57415 377276181 22 12000000098a1f000000000001000300000000000000 ...................... +3313 9.311816931 127.0.0.1:57415 127.0.0.1:57433 3333297251 12 ffffffffabf30a0000000000 ............ +3320 9.413762808 127.0.0.1:57415 127.0.0.1:57433 3333297263 12 1a000000c0180b0000000000 ............ +3322 9.413948774 127.0.0.1:57415 127.0.0.1:57433 3333297275 26 16000000548f6340e25e31400100030000000b8a1f0000000000 ....T.c@.^1@.............. +3324 9.414255857 127.0.0.1:57433 127.0.0.1:57415 377276203 12 ffffffffc0180b0000000000 ............ +3326 9.414695740 127.0.0.1:57433 127.0.0.1:57415 377276215 12 16000000acf30a0000000000 ............ +3328 9.414854527 127.0.0.1:57433 127.0.0.1:57415 377276227 22 120000000b8a1f000000000001000300000000000000 ...................... +3330 9.415454388 127.0.0.1:57415 127.0.0.1:57433 3333297301 12 ffffffffacf30a0000000000 ............ +3337 9.509494305 127.0.0.1:57415 127.0.0.1:57433 3333297313 12 22000000c1180b0000000000 "........... +3339 9.509690046 127.0.0.1:57415 127.0.0.1:57433 3333297325 34 1e0000001c2118d0c46f33bb010003000000d1100200000000008eb322c39d01 .....!...o3................."..... +3341 9.509833097 127.0.0.1:57415 127.0.0.1:57433 3333297359 12 43000000c2180b0000000000 C........... +3343 9.509917259 127.0.0.1:57415 127.0.0.1:57433 3333297371 67 3f000000980433cb0cb47c380100030000000100000000d1100200000000003d ?.....3...|8...................=B.....&......... +3345 9.510022163 127.0.0.1:57433 127.0.0.1:57415 377276249 12 ffffffffc1180b0000000000 ............ +3347 9.510277987 127.0.0.1:57433 127.0.0.1:57415 377276261 12 ffffffffc2180b0000000000 ............ +3349 9.511041164 127.0.0.1:57433 127.0.0.1:57415 377276273 12 34000000adf30a0000000000 4........... +3351 9.511198521 127.0.0.1:57433 127.0.0.1:57415 377276285 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............n}.o +3353 9.511478662 127.0.0.1:57415 127.0.0.1:57433 3333297438 12 ffffffffadf30a0000000000 ............ +3355 9.512467146 127.0.0.1:57415 127.0.0.1:57433 3333297450 12 1e000000c3180b0000000000 ............ +3357 9.512613297 127.0.0.1:57415 127.0.0.1:57433 3333297462 30 1a00000055ceff62b21b3a500100030000000d8a1f000000000000000000 ....U..b..:P.................. +3359 9.512873888 127.0.0.1:57433 127.0.0.1:57415 377276337 12 ffffffffc3180b0000000000 ............ +3361 9.513208628 127.0.0.1:57433 127.0.0.1:57415 377276349 12 1a000000aef30a0000000000 ............ +3363 9.513348579 127.0.0.1:57433 127.0.0.1:57415 377276361 26 160000000d8a1f00000000000100030000000000000000000000 .......................... +3365 9.513607502 127.0.0.1:57415 127.0.0.1:57433 3333297492 12 ffffffffaef30a0000000000 ............ +3367 9.517992973 127.0.0.1:57415 127.0.0.1:57433 3333297504 12 1a000000c4180b0000000000 ............ +3369 9.518168688 127.0.0.1:57415 127.0.0.1:57433 3333297516 26 16000000548f6340e25e31400100030000000f8a1f0000000000 ....T.c@.^1@.............. +3371 9.518540859 127.0.0.1:57433 127.0.0.1:57415 377276387 12 ffffffffc4180b0000000000 ............ +3373 9.518817663 127.0.0.1:57433 127.0.0.1:57415 377276399 12 16000000aff30a0000000000 ............ +3375 9.518917322 127.0.0.1:57433 127.0.0.1:57415 377276411 22 120000000f8a1f000000000001000300000000000000 ...................... +3377 9.519178152 127.0.0.1:57415 127.0.0.1:57433 3333297542 12 ffffffffaff30a0000000000 ............ +3384 9.620872736 127.0.0.1:57415 127.0.0.1:57433 3333297554 12 1a000000c5180b0000000000 ............ +3386 9.621189833 127.0.0.1:57415 127.0.0.1:57433 3333297566 26 16000000548f6340e25e3140010003000000118a1f0000000000 ....T.c@.^1@.............. +3388 9.621565819 127.0.0.1:57433 127.0.0.1:57415 377276433 12 ffffffffc5180b0000000000 ............ +3391 9.621783495 127.0.0.1:57433 127.0.0.1:57415 377276445 12 feffffff7e4201008f420100 ....~B...B.. +3394 9.622138739 127.0.0.1:57433 127.0.0.1:57415 377276457 12 16000000b0f30a0000000000 ............ +3396 9.622304916 127.0.0.1:57433 127.0.0.1:57415 377276469 22 12000000118a1f000000000001000300000000000000 ...................... +3398 9.622595787 127.0.0.1:57415 127.0.0.1:57433 3333297592 12 ffffffffb0f30a0000000000 ............ +3405 9.681611061 127.0.0.1:57415 127.0.0.1:57433 3333297604 12 feffffff904201007e420100 .....B..~B.. +3408 9.725709438 127.0.0.1:57415 127.0.0.1:57433 3333297616 12 1a000000c6180b0000000000 ............ +3410 9.725883007 127.0.0.1:57415 127.0.0.1:57433 3333297628 26 16000000548f6340e25e3140010003000000138a1f0000000000 ....T.c@.^1@.............. +3412 9.726230621 127.0.0.1:57433 127.0.0.1:57415 377276491 12 ffffffffc6180b0000000000 ............ +3414 9.726597309 127.0.0.1:57433 127.0.0.1:57415 377276503 12 16000000b1f30a0000000000 ............ +3416 9.726766348 127.0.0.1:57433 127.0.0.1:57415 377276515 22 12000000138a1f000000000001000300000000000000 ...................... +3418 9.727190018 127.0.0.1:57415 127.0.0.1:57433 3333297654 12 ffffffffb1f30a0000000000 ............ +3420 9.814025640 127.0.0.1:57415 127.0.0.1:57433 3333297666 12 22000000c7180b0000000000 "........... +3422 9.814300060 127.0.0.1:57415 127.0.0.1:57433 3333297678 34 1e0000001c2118d0c46f33bb010003000000d210020000000000bfb422c39d01 .....!...o3................."..... +3424 9.814485550 127.0.0.1:57415 127.0.0.1:57433 3333297712 12 43000000c8180b0000000000 C........... +3426 9.814576864 127.0.0.1:57415 127.0.0.1:57433 3333297724 67 3f000000980433cb0cb47c380100030000000100000000d2100200000000003d ?.....3...|8...................=B.....&......... +3428 9.814669371 127.0.0.1:57433 127.0.0.1:57415 377276537 12 ffffffffc7180b0000000000 ............ +3430 9.814848423 127.0.0.1:57433 127.0.0.1:57415 377276549 12 ffffffffc8180b0000000000 ............ +3432 9.816071272 127.0.0.1:57433 127.0.0.1:57415 377276561 12 34000000b2f30a0000000000 4........... +3434 9.816246510 127.0.0.1:57433 127.0.0.1:57415 377276573 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............B.Ho +3436 9.816437244 127.0.0.1:57415 127.0.0.1:57433 3333297791 12 ffffffffb2f30a0000000000 ............ +3438 9.817461014 127.0.0.1:57415 127.0.0.1:57433 3333297803 12 1e000000c9180b0000000000 ............ +3440 9.817611456 127.0.0.1:57415 127.0.0.1:57433 3333297815 30 1a00000055ceff62b21b3a50010003000000158a1f000000000000000000 ....U..b..:P.................. +3442 9.817917347 127.0.0.1:57433 127.0.0.1:57415 377276625 12 ffffffffc9180b0000000000 ............ +3444 9.818357229 127.0.0.1:57433 127.0.0.1:57415 377276637 12 1a000000b3f30a0000000000 ............ +3446 9.818499088 127.0.0.1:57433 127.0.0.1:57415 377276649 26 16000000158a1f00000000000100030000000000000000000000 .......................... +3448 9.818715811 127.0.0.1:57415 127.0.0.1:57433 3333297845 12 ffffffffb3f30a0000000000 ............ +3450 9.829686165 127.0.0.1:57415 127.0.0.1:57433 3333297857 12 1a000000ca180b0000000000 ............ +3452 9.829845190 127.0.0.1:57415 127.0.0.1:57433 3333297869 26 16000000548f6340e25e3140010003000000178a1f0000000000 ....T.c@.^1@.............. +3454 9.830132961 127.0.0.1:57433 127.0.0.1:57415 377276675 12 ffffffffca180b0000000000 ............ +3456 9.830676317 127.0.0.1:57433 127.0.0.1:57415 377276687 12 16000000b4f30a0000000000 ............ +3458 9.830833912 127.0.0.1:57433 127.0.0.1:57415 377276699 22 12000000178a1f000000000001000300000000000000 ...................... +3460 9.831126213 127.0.0.1:57415 127.0.0.1:57433 3333297895 12 ffffffffb4f30a0000000000 ............ +3490 9.933852434 127.0.0.1:57415 127.0.0.1:57433 3333297907 12 1a000000cb180b0000000000 ............ +3492 9.934026718 127.0.0.1:57415 127.0.0.1:57433 3333297919 26 16000000548f6340e25e3140010003000000198a1f0000000000 ....T.c@.^1@.............. +3498 9.934393406 127.0.0.1:57433 127.0.0.1:57415 377276721 12 ffffffffcb180b0000000000 ............ +3502 9.934734583 127.0.0.1:57433 127.0.0.1:57415 377276733 12 16000000b5f30a0000000000 ............ +3504 9.934886456 127.0.0.1:57433 127.0.0.1:57415 377276745 22 12000000198a1f000000000001000300000000000000 ...................... +3506 9.935215473 127.0.0.1:57415 127.0.0.1:57433 3333297945 12 ffffffffb5f30a0000000000 ............ +3512 10.038056850 127.0.0.1:57415 127.0.0.1:57433 3333297957 12 1a000000cc180b0000000000 ............ +3514 10.038246632 127.0.0.1:57415 127.0.0.1:57433 3333297969 26 16000000548f6340e25e31400100030000001b8a1f0000000000 ....T.c@.^1@.............. +3516 10.038669348 127.0.0.1:57433 127.0.0.1:57415 377276767 12 ffffffffcc180b0000000000 ............ +3518 10.039047480 127.0.0.1:57433 127.0.0.1:57415 377276779 12 16000000b6f30a0000000000 ............ +3520 10.039207458 127.0.0.1:57433 127.0.0.1:57415 377276791 22 120000001b8a1f000000000001000300000000000000 ...................... +3522 10.039572716 127.0.0.1:57415 127.0.0.1:57433 3333297995 12 ffffffffb6f30a0000000000 ............ +3524 10.118463993 127.0.0.1:57415 127.0.0.1:57433 3333298007 12 65000000cd180b0000000000 e........... +3526 10.118717194 127.0.0.1:57415 127.0.0.1:57433 3333298019 101 1e0000001c2118d0c46f33bb010003000000d310020000000000efb522c39d01 .....!...o3.................".....?.....3...|8.. +3530 10.118966579 127.0.0.1:57433 127.0.0.1:57415 377276813 12 ffffffffcd180b0000000000 ............ +3534 10.120096207 127.0.0.1:57433 127.0.0.1:57415 377276825 12 34000000b7f30a0000000000 4........... +3536 10.120313644 127.0.0.1:57433 127.0.0.1:57415 377276837 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................kvo +3538 10.120486259 127.0.0.1:57415 127.0.0.1:57433 3333298120 12 ffffffffb7f30a0000000000 ............ +3542 10.121322870 127.0.0.1:57415 127.0.0.1:57433 3333298132 12 1e000000ce180b0000000000 ............ +3544 10.121517181 127.0.0.1:57415 127.0.0.1:57433 3333298144 30 1a00000055ceff62b21b3a500100030000001d8a1f000000000000000000 ....U..b..:P.................. +3546 10.121810913 127.0.0.1:57433 127.0.0.1:57415 377276889 12 ffffffffce180b0000000000 ............ +3548 10.122035265 127.0.0.1:57433 127.0.0.1:57415 377276901 12 feffffff7f42010090420100 .....B...B.. +3550 10.122309923 127.0.0.1:57433 127.0.0.1:57415 377276913 12 1a000000b8f30a0000000000 ............ +3552 10.122474670 127.0.0.1:57433 127.0.0.1:57415 377276925 26 160000001d8a1f00000000000100030000000000000000000000 .......................... +3554 10.122710705 127.0.0.1:57415 127.0.0.1:57433 3333298174 12 ffffffffb8f30a0000000000 ............ +3558 10.140717268 127.0.0.1:57415 127.0.0.1:57433 3333298186 12 1a000000cf180b0000000000 ............ +3560 10.140882254 127.0.0.1:57415 127.0.0.1:57433 3333298198 26 16000000548f6340e25e31400100030000001f8a1f0000000000 ....T.c@.^1@.............. +3562 10.141167164 127.0.0.1:57433 127.0.0.1:57415 377276951 12 ffffffffcf180b0000000000 ............ +3564 10.141579628 127.0.0.1:57433 127.0.0.1:57415 377276963 12 16000000b9f30a0000000000 ............ +3566 10.141739368 127.0.0.1:57433 127.0.0.1:57415 377276975 22 120000001f8a1f000000000001000300000000000000 ...................... +3568 10.142050266 127.0.0.1:57415 127.0.0.1:57433 3333298224 12 ffffffffb9f30a0000000000 ............ +3573 10.182579756 127.0.0.1:57415 127.0.0.1:57433 3333298236 12 feffffff914201007f420100 .....B...B.. +3576 10.244122982 127.0.0.1:57415 127.0.0.1:57433 3333298248 12 1a000000d0180b0000000000 ............ +3578 10.244315147 127.0.0.1:57415 127.0.0.1:57433 3333298260 26 16000000548f6340e25e3140010003000000218a1f0000000000 ....T.c@.^1@......!....... +3580 10.244650126 127.0.0.1:57433 127.0.0.1:57415 377276997 12 ffffffffd0180b0000000000 ............ +3582 10.245042562 127.0.0.1:57433 127.0.0.1:57415 377277009 12 16000000baf30a0000000000 ............ +3584 10.245207548 127.0.0.1:57433 127.0.0.1:57415 377277021 22 12000000218a1f000000000001000300000000000000 ....!................. +3586 10.245472431 127.0.0.1:57415 127.0.0.1:57433 3333298286 12 ffffffffbaf30a0000000000 ............ +3588 10.347316265 127.0.0.1:57415 127.0.0.1:57433 3333298298 12 1a000000d1180b0000000000 ............ +3590 10.347514153 127.0.0.1:57415 127.0.0.1:57433 3333298310 26 16000000548f6340e25e3140010003000000238a1f0000000000 ....T.c@.^1@......#....... +3592 10.347898960 127.0.0.1:57433 127.0.0.1:57415 377277043 12 ffffffffd1180b0000000000 ............ +3594 10.348387003 127.0.0.1:57433 127.0.0.1:57415 377277055 12 16000000bbf30a0000000000 ............ +3596 10.348590851 127.0.0.1:57433 127.0.0.1:57415 377277067 22 12000000238a1f000000000001000300000000000000 ....#................. +3598 10.348858833 127.0.0.1:57415 127.0.0.1:57433 3333298336 12 ffffffffbbf30a0000000000 ............ +3604 10.422680616 127.0.0.1:57415 127.0.0.1:57433 3333298348 12 65000000d2180b0000000000 e........... +3606 10.422864437 127.0.0.1:57415 127.0.0.1:57433 3333298360 101 1e0000001c2118d0c46f33bb010003000000d41002000000000020b722c39d01 .....!...o3............... .".....?.....3...|8.. +3608 10.423243999 127.0.0.1:57433 127.0.0.1:57415 377277089 12 ffffffffd2180b0000000000 ............ +3610 10.423858404 127.0.0.1:57433 127.0.0.1:57415 377277101 12 34000000bcf30a0000000000 4........... +3612 10.424016237 127.0.0.1:57433 127.0.0.1:57415 377277113 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.............../..o +3614 10.424221039 127.0.0.1:57415 127.0.0.1:57433 3333298461 12 ffffffffbcf30a0000000000 ............ +3616 10.425042629 127.0.0.1:57415 127.0.0.1:57433 3333298473 12 1e000000d3180b0000000000 ............ +3618 10.425212145 127.0.0.1:57415 127.0.0.1:57433 3333298485 30 1a00000055ceff62b21b3a50010003000000258a1f000000000000000000 ....U..b..:P......%........... +3620 10.425549746 127.0.0.1:57433 127.0.0.1:57415 377277165 12 ffffffffd3180b0000000000 ............ +3622 10.425971508 127.0.0.1:57433 127.0.0.1:57415 377277177 12 1a000000bdf30a0000000000 ............ +3624 10.426112413 127.0.0.1:57433 127.0.0.1:57415 377277189 26 16000000258a1f00000000000100030000000000000000000000 ....%..................... +3626 10.426295757 127.0.0.1:57415 127.0.0.1:57433 3333298515 12 ffffffffbdf30a0000000000 ............ +3628 10.451970816 127.0.0.1:57415 127.0.0.1:57433 3333298527 12 1a000000d4180b0000000000 ............ +3630 10.452133656 127.0.0.1:57415 127.0.0.1:57433 3333298539 26 16000000548f6340e25e3140010003000000278a1f0000000000 ....T.c@.^1@......'....... +3632 10.452957153 127.0.0.1:57433 127.0.0.1:57415 377277215 12 ffffffffd4180b0000000000 ............ +3634 10.453554153 127.0.0.1:57433 127.0.0.1:57415 377277227 12 16000000bef30a0000000000 ............ +3636 10.453708887 127.0.0.1:57433 127.0.0.1:57415 377277239 22 12000000278a1f000000000001000300000000000000 ....'................. +3638 10.454026461 127.0.0.1:57415 127.0.0.1:57433 3333298565 12 ffffffffbef30a0000000000 ............ +3652 10.555014849 127.0.0.1:57415 127.0.0.1:57433 3333298577 12 1a000000d5180b0000000000 ............ +3654 10.555189610 127.0.0.1:57415 127.0.0.1:57433 3333298589 26 16000000548f6340e25e3140010003000000298a1f0000000000 ....T.c@.^1@......)....... +3656 10.555614471 127.0.0.1:57433 127.0.0.1:57415 377277261 12 ffffffffd5180b0000000000 ............ +3658 10.555924892 127.0.0.1:57433 127.0.0.1:57415 377277273 12 16000000bff30a0000000000 ............ +3660 10.556086063 127.0.0.1:57433 127.0.0.1:57415 377277285 22 12000000298a1f000000000001000300000000000000 ....)................. +3662 10.556293488 127.0.0.1:57415 127.0.0.1:57433 3333298615 12 ffffffffbff30a0000000000 ............ +3670 10.623503447 127.0.0.1:57433 127.0.0.1:57415 377277307 12 feffffff8042010091420100 .....B...B.. +3674 10.658532381 127.0.0.1:57415 127.0.0.1:57433 3333298627 12 1a000000d6180b0000000000 ............ +3676 10.658737659 127.0.0.1:57415 127.0.0.1:57433 3333298639 26 16000000548f6340e25e31400100030000002b8a1f0000000000 ....T.c@.^1@......+....... +3678 10.658951998 127.0.0.1:57433 127.0.0.1:57415 377277319 12 ffffffffd6180b0000000000 ............ +3680 10.659333467 127.0.0.1:57433 127.0.0.1:57415 377277331 12 16000000c0f30a0000000000 ............ +3682 10.659494638 127.0.0.1:57433 127.0.0.1:57415 377277343 22 120000002b8a1f000000000001000300000000000000 ....+................. +3684 10.659850359 127.0.0.1:57415 127.0.0.1:57433 3333298665 12 ffffffffc0f30a0000000000 ............ +3688 10.684888363 127.0.0.1:57415 127.0.0.1:57433 3333298677 12 feffffff9242010080420100 .....B...B.. +3692 10.725761652 127.0.0.1:57415 127.0.0.1:57433 3333298689 12 65000000d7180b0000000000 e........... +3694 10.725997925 127.0.0.1:57415 127.0.0.1:57433 3333298701 101 1e0000001c2118d0c46f33bb010003000000d5100200000000004fb822c39d01 .....!...o3...............O.".....?.....3...|8.. +3696 10.726250172 127.0.0.1:57433 127.0.0.1:57415 377277365 12 ffffffffd7180b0000000000 ............ +3698 10.727485180 127.0.0.1:57433 127.0.0.1:57415 377277377 12 34000000c1f30a0000000000 4........... +3700 10.727657795 127.0.0.1:57433 127.0.0.1:57415 377277389 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............j..o +3702 10.728000402 127.0.0.1:57415 127.0.0.1:57433 3333298802 12 ffffffffc1f30a0000000000 ............ +3704 10.728698254 127.0.0.1:57415 127.0.0.1:57433 3333298814 12 1e000000d8180b0000000000 ............ +3706 10.728880644 127.0.0.1:57415 127.0.0.1:57433 3333298826 30 1a00000055ceff62b21b3a500100030000002d8a1f000000000000000000 ....U..b..:P......-........... +3708 10.729180813 127.0.0.1:57433 127.0.0.1:57415 377277441 12 ffffffffd8180b0000000000 ............ +3710 10.729590178 127.0.0.1:57433 127.0.0.1:57415 377277453 12 1a000000c2f30a0000000000 ............ +3712 10.729736090 127.0.0.1:57433 127.0.0.1:57415 377277465 26 160000002d8a1f00000000000100030000000000000000000000 ....-..................... +3714 10.730115652 127.0.0.1:57415 127.0.0.1:57433 3333298856 12 ffffffffc2f30a0000000000 ............ +3716 10.761491776 127.0.0.1:57415 127.0.0.1:57433 3333298868 12 1a000000d9180b0000000000 ............ +3718 10.761653900 127.0.0.1:57415 127.0.0.1:57433 3333298880 26 16000000548f6340e25e31400100030000002f8a1f0000000000 ....T.c@.^1@....../....... +3720 10.761990070 127.0.0.1:57433 127.0.0.1:57415 377277491 12 ffffffffd9180b0000000000 ............ +3722 10.762276649 127.0.0.1:57433 127.0.0.1:57415 377277503 12 16000000c3f30a0000000000 ............ +3724 10.762443781 127.0.0.1:57433 127.0.0.1:57415 377277515 22 120000002f8a1f000000000001000300000000000000 ..../................. +3726 10.762848616 127.0.0.1:57415 127.0.0.1:57433 3333298906 12 ffffffffc3f30a0000000000 ............ +3730 10.864727497 127.0.0.1:57415 127.0.0.1:57433 3333298918 12 1a000000da180b0000000000 ............ +3732 10.864968300 127.0.0.1:57415 127.0.0.1:57433 3333298930 26 16000000548f6340e25e3140010003000000318a1f0000000000 ....T.c@.^1@......1....... +3734 10.865364552 127.0.0.1:57433 127.0.0.1:57415 377277537 12 ffffffffda180b0000000000 ............ +3736 10.865825891 127.0.0.1:57433 127.0.0.1:57415 377277549 12 16000000c4f30a0000000000 ............ +3738 10.866054058 127.0.0.1:57433 127.0.0.1:57415 377277561 22 12000000318a1f000000000001000300000000000000 ....1................. +3740 10.866351366 127.0.0.1:57415 127.0.0.1:57433 3333298956 12 ffffffffc4f30a0000000000 ............ +3835 10.967312813 127.0.0.1:57415 127.0.0.1:57433 3333298968 12 1a000000db180b0000000000 ............ +3838 10.967483521 127.0.0.1:57415 127.0.0.1:57433 3333298980 26 16000000548f6340e25e3140010003000000338a1f0000000000 ....T.c@.^1@......3....... +3844 10.967883587 127.0.0.1:57433 127.0.0.1:57415 377277583 12 ffffffffdb180b0000000000 ............ +3851 10.968354702 127.0.0.1:57433 127.0.0.1:57415 377277595 12 16000000c5f30a0000000000 ............ +3856 10.968529701 127.0.0.1:57433 127.0.0.1:57415 377277607 22 12000000338a1f000000000001000300000000000000 ....3................. +3860 10.968807220 127.0.0.1:57415 127.0.0.1:57433 3333299006 12 ffffffffc5f30a0000000000 ............ +3976 11.031175852 127.0.0.1:57415 127.0.0.1:57433 3333299018 12 22000000dc180b0000000000 "........... +3978 11.031341553 127.0.0.1:57415 127.0.0.1:57433 3333299030 34 1e0000001c2118d0c46f33bb010003000000d61002000000000081b922c39d01 .....!...o3................."..... +3980 11.031480312 127.0.0.1:57415 127.0.0.1:57433 3333299064 12 43000000dd180b0000000000 C........... +3982 11.031568050 127.0.0.1:57415 127.0.0.1:57433 3333299076 67 3f000000980433cb0cb47c380100030000000100000000d6100200000000003d ?.....3...|8...................=B.....&......... +3984 11.031654119 127.0.0.1:57433 127.0.0.1:57415 377277629 12 ffffffffdc180b0000000000 ............ +3986 11.031839848 127.0.0.1:57433 127.0.0.1:57415 377277641 12 ffffffffdd180b0000000000 ............ +3988 11.032620192 127.0.0.1:57433 127.0.0.1:57415 377277653 12 34000000c6f30a0000000000 4........... +3990 11.032792091 127.0.0.1:57433 127.0.0.1:57415 377277665 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................p +3992 11.033066273 127.0.0.1:57415 127.0.0.1:57433 3333299143 12 ffffffffc6f30a0000000000 ............ +3994 11.033861876 127.0.0.1:57415 127.0.0.1:57433 3333299155 12 1e000000de180b0000000000 ............ +3996 11.034081697 127.0.0.1:57415 127.0.0.1:57433 3333299167 30 1a00000055ceff62b21b3a50010003000000358a1f000000000000000000 ....U..b..:P......5........... +3998 11.034383535 127.0.0.1:57433 127.0.0.1:57415 377277717 12 ffffffffde180b0000000000 ............ +4000 11.034722090 127.0.0.1:57433 127.0.0.1:57415 377277729 12 1a000000c7f30a0000000000 ............ +4002 11.034905672 127.0.0.1:57433 127.0.0.1:57415 377277741 26 16000000358a1f00000000000100030000000000000000000000 ....5..................... +4004 11.035152435 127.0.0.1:57415 127.0.0.1:57433 3333299197 12 ffffffffc7f30a0000000000 ............ +4118 11.071610689 127.0.0.1:57415 127.0.0.1:57433 3333299209 12 1a000000df180b0000000000 ............ +4122 11.071808577 127.0.0.1:57415 127.0.0.1:57433 3333299221 26 16000000548f6340e25e3140010003000000378a1f0000000000 ....T.c@.^1@......7....... +4127 11.072237968 127.0.0.1:57433 127.0.0.1:57415 377277767 12 ffffffffdf180b0000000000 ............ +4129 11.072609901 127.0.0.1:57433 127.0.0.1:57415 377277779 12 16000000c8f30a0000000000 ............ +4131 11.072777748 127.0.0.1:57433 127.0.0.1:57415 377277791 22 12000000378a1f000000000001000300000000000000 ....7................. +4133 11.073026180 127.0.0.1:57415 127.0.0.1:57433 3333299247 12 ffffffffc8f30a0000000000 ............ +4291 11.125263929 127.0.0.1:57433 127.0.0.1:57415 377277813 12 feffffff8142010092420100 .....B...B.. +4299 11.175267696 127.0.0.1:57415 127.0.0.1:57433 3333299259 12 1a000000e0180b0000000000 ............ +4301 11.175439596 127.0.0.1:57415 127.0.0.1:57433 3333299271 26 16000000548f6340e25e3140010003000000398a1f0000000000 ....T.c@.^1@......9....... +4303 11.175837517 127.0.0.1:57433 127.0.0.1:57415 377277825 12 ffffffffe0180b0000000000 ............ +4305 11.176168442 127.0.0.1:57433 127.0.0.1:57415 377277837 12 16000000c9f30a0000000000 ............ +4307 11.176327705 127.0.0.1:57433 127.0.0.1:57415 377277849 22 12000000398a1f000000000001000300000000000000 ....9................. +4309 11.176630020 127.0.0.1:57415 127.0.0.1:57433 3333299297 12 ffffffffc9f30a0000000000 ............ +4313 11.186023235 127.0.0.1:57415 127.0.0.1:57433 3333299309 12 feffffff9342010081420100 .....B...B.. +4321 11.278245449 127.0.0.1:57415 127.0.0.1:57433 3333299321 12 1a000000e1180b0000000000 ............ +4323 11.278444290 127.0.0.1:57415 127.0.0.1:57433 3333299333 26 16000000548f6340e25e31400100030000003b8a1f0000000000 ....T.c@.^1@......;....... +4325 11.278777838 127.0.0.1:57433 127.0.0.1:57415 377277871 12 ffffffffe1180b0000000000 ............ +4327 11.279272795 127.0.0.1:57433 127.0.0.1:57415 377277883 12 16000000caf30a0000000000 ............ +4329 11.279440165 127.0.0.1:57433 127.0.0.1:57415 377277895 22 120000003b8a1f000000000001000300000000000000 ....;................. +4331 11.279728651 127.0.0.1:57415 127.0.0.1:57433 3333299359 12 ffffffffcaf30a0000000000 ............ +4333 11.335458279 127.0.0.1:57415 127.0.0.1:57433 3333299371 12 65000000e2180b0000000000 e........... +4335 11.335653543 127.0.0.1:57415 127.0.0.1:57433 3333299383 101 1e0000001c2118d0c46f33bb010003000000d710020000000000b1ba22c39d01 .....!...o3.................".....?.....3...|8.. +4337 11.335983753 127.0.0.1:57433 127.0.0.1:57415 377277917 12 ffffffffe2180b0000000000 ............ +4339 11.337064266 127.0.0.1:57433 127.0.0.1:57415 377277929 12 34000000cbf30a0000000000 4........... +4341 11.337231636 127.0.0.1:57433 127.0.0.1:57415 377277941 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................0p +4343 11.337525845 127.0.0.1:57415 127.0.0.1:57433 3333299484 12 ffffffffcbf30a0000000000 ............ +4345 11.338330746 127.0.0.1:57415 127.0.0.1:57433 3333299496 12 1e000000e3180b0000000000 ............ +4347 11.338479280 127.0.0.1:57415 127.0.0.1:57433 3333299508 30 1a00000055ceff62b21b3a500100030000003d8a1f000000000000000000 ....U..b..:P......=........... +4349 11.338776350 127.0.0.1:57433 127.0.0.1:57415 377277993 12 ffffffffe3180b0000000000 ............ +4351 11.339159012 127.0.0.1:57433 127.0.0.1:57415 377278005 12 1a000000ccf30a0000000000 ............ +4353 11.339319229 127.0.0.1:57433 127.0.0.1:57415 377278017 26 160000003d8a1f00000000000100030000000000000000000000 ....=..................... +4355 11.339562654 127.0.0.1:57415 127.0.0.1:57433 3333299538 12 ffffffffccf30a0000000000 ............ +4361 11.382505417 127.0.0.1:57415 127.0.0.1:57433 3333299550 12 1a000000e4180b0000000000 ............ +4363 11.382687807 127.0.0.1:57415 127.0.0.1:57433 3333299562 26 16000000548f6340e25e31400100030000003f8a1f0000000000 ....T.c@.^1@......?....... +4365 11.382982254 127.0.0.1:57433 127.0.0.1:57415 377278043 12 ffffffffe4180b0000000000 ............ +4367 11.383515120 127.0.0.1:57433 127.0.0.1:57415 377278055 12 16000000cdf30a0000000000 ............ +4369 11.383674860 127.0.0.1:57433 127.0.0.1:57415 377278067 22 120000003f8a1f000000000001000300000000000000 ....?................. +4371 11.384209156 127.0.0.1:57415 127.0.0.1:57433 3333299588 12 ffffffffcdf30a0000000000 ............ +4375 11.485658407 127.0.0.1:57415 127.0.0.1:57433 3333299600 12 1a000000e5180b0000000000 ............ +4377 11.485864401 127.0.0.1:57415 127.0.0.1:57433 3333299612 26 16000000548f6340e25e3140010003000000418a1f0000000000 ....T.c@.^1@......A....... +4379 11.486159801 127.0.0.1:57433 127.0.0.1:57415 377278089 12 ffffffffe5180b0000000000 ............ +4381 11.486610174 127.0.0.1:57433 127.0.0.1:57415 377278101 12 16000000cef30a0000000000 ............ +4383 11.486769915 127.0.0.1:57433 127.0.0.1:57415 377278113 22 12000000418a1f000000000001000300000000000000 ....A................. +4385 11.487126827 127.0.0.1:57415 127.0.0.1:57433 3333299638 12 ffffffffcef30a0000000000 ............ +4389 11.588681221 127.0.0.1:57415 127.0.0.1:57433 3333299650 12 1a000000e6180b0000000000 ............ +4391 11.588918209 127.0.0.1:57415 127.0.0.1:57433 3333299662 26 16000000548f6340e25e3140010003000000438a1f0000000000 ....T.c@.^1@......C....... +4393 11.589296341 127.0.0.1:57433 127.0.0.1:57415 377278135 12 ffffffffe6180b0000000000 ............ +4395 11.589762211 127.0.0.1:57433 127.0.0.1:57415 377278147 12 16000000cff30a0000000000 ............ +4397 11.589932203 127.0.0.1:57433 127.0.0.1:57415 377278159 22 12000000438a1f000000000001000300000000000000 ....C................. +4399 11.590286732 127.0.0.1:57415 127.0.0.1:57433 3333299688 12 ffffffffcff30a0000000000 ............ +4407 11.626405478 127.0.0.1:57433 127.0.0.1:57415 377278181 12 feffffff8242010093420100 .....B...B.. +4411 11.639639139 127.0.0.1:57415 127.0.0.1:57433 3333299700 12 65000000e7180b0000000000 e........... +4413 11.639838934 127.0.0.1:57415 127.0.0.1:57433 3333299712 101 1e0000001c2118d0c46f33bb010003000000d810020000000000e1bb22c39d01 .....!...o3.................".....?.....3...|8.. +4415 11.640184402 127.0.0.1:57433 127.0.0.1:57415 377278193 12 ffffffffe7180b0000000000 ............ +4417 11.641382694 127.0.0.1:57433 127.0.0.1:57415 377278205 12 34000000d0f30a0000000000 4........... +4419 11.641546249 127.0.0.1:57433 127.0.0.1:57415 377278217 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................^p +4421 11.641956329 127.0.0.1:57415 127.0.0.1:57433 3333299813 12 ffffffffd0f30a0000000000 ............ +4423 11.643209696 127.0.0.1:57415 127.0.0.1:57433 3333299825 12 1e000000e8180b0000000000 ............ +4425 11.643486261 127.0.0.1:57415 127.0.0.1:57433 3333299837 30 1a00000055ceff62b21b3a50010003000000458a1f000000000000000000 ....U..b..:P......E........... +4427 11.643901110 127.0.0.1:57433 127.0.0.1:57415 377278269 12 ffffffffe8180b0000000000 ............ +4429 11.644247532 127.0.0.1:57433 127.0.0.1:57415 377278281 12 1a000000d1f30a0000000000 ............ +4431 11.644515514 127.0.0.1:57433 127.0.0.1:57415 377278293 26 16000000458a1f00000000000100030000000000000000000000 ....E..................... +4433 11.644850731 127.0.0.1:57415 127.0.0.1:57433 3333299867 12 ffffffffd1f30a0000000000 ............ +4437 11.686908722 127.0.0.1:57415 127.0.0.1:57433 3333299879 12 feffffff9442010082420100 .....B...B.. +4441 11.692281246 127.0.0.1:57415 127.0.0.1:57433 3333299891 12 1a000000e9180b0000000000 ............ +4443 11.692448139 127.0.0.1:57415 127.0.0.1:57433 3333299903 26 16000000548f6340e25e3140010003000000478a1f0000000000 ....T.c@.^1@......G....... +4445 11.692786932 127.0.0.1:57433 127.0.0.1:57415 377278319 12 ffffffffe9180b0000000000 ............ +4447 11.693223953 127.0.0.1:57433 127.0.0.1:57415 377278331 12 16000000d2f30a0000000000 ............ +4449 11.693425655 127.0.0.1:57433 127.0.0.1:57415 377278343 22 12000000478a1f000000000001000300000000000000 ....G................. +4451 11.693809032 127.0.0.1:57415 127.0.0.1:57433 3333299929 12 ffffffffd2f30a0000000000 ............ +4453 11.795031071 127.0.0.1:57415 127.0.0.1:57433 3333299941 12 1a000000ea180b0000000000 ............ +4455 11.795208931 127.0.0.1:57415 127.0.0.1:57433 3333299953 26 16000000548f6340e25e3140010003000000498a1f0000000000 ....T.c@.^1@......I....... +4457 11.795551300 127.0.0.1:57433 127.0.0.1:57415 377278365 12 ffffffffea180b0000000000 ............ +4459 11.796053648 127.0.0.1:57433 127.0.0.1:57415 377278377 12 16000000d3f30a0000000000 ............ +4461 11.796211720 127.0.0.1:57433 127.0.0.1:57415 377278389 22 12000000498a1f000000000001000300000000000000 ....I................. +4463 11.796401262 127.0.0.1:57415 127.0.0.1:57433 3333299979 12 ffffffffd3f30a0000000000 ............ +4482 11.898090601 127.0.0.1:57415 127.0.0.1:57433 3333299991 12 1a000000eb180b0000000000 ............ +4484 11.898291588 127.0.0.1:57415 127.0.0.1:57433 3333300003 26 16000000548f6340e25e31400100030000004b8a1f0000000000 ....T.c@.^1@......K....... +4486 11.898662567 127.0.0.1:57433 127.0.0.1:57415 377278411 12 ffffffffeb180b0000000000 ............ +4488 11.899230719 127.0.0.1:57433 127.0.0.1:57415 377278423 12 16000000d4f30a0000000000 ............ +4490 11.899447441 127.0.0.1:57433 127.0.0.1:57415 377278435 22 120000004b8a1f000000000001000300000000000000 ....K................. +4492 11.899770021 127.0.0.1:57415 127.0.0.1:57433 3333300029 12 ffffffffd4f30a0000000000 ............ +4494 11.944242239 127.0.0.1:57415 127.0.0.1:57433 3333300041 12 65000000ec180b0000000000 e........... +4496 11.944493771 127.0.0.1:57415 127.0.0.1:57433 3333300053 101 1e0000001c2118d0c46f33bb010003000000d91002000000000011bd22c39d01 .....!...o3.................".....?.....3...|8.. +4498 11.944844007 127.0.0.1:57433 127.0.0.1:57415 377278457 12 ffffffffec180b0000000000 ............ +4500 11.945621490 127.0.0.1:57433 127.0.0.1:57415 377278469 12 34000000d5f30a0000000000 4........... +4502 11.945790768 127.0.0.1:57433 127.0.0.1:57415 377278481 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............O..p +4504 11.946083546 127.0.0.1:57415 127.0.0.1:57433 3333300154 12 ffffffffd5f30a0000000000 ............ +4506 11.947131634 127.0.0.1:57415 127.0.0.1:57433 3333300166 12 1e000000ed180b0000000000 ............ +4508 11.947287560 127.0.0.1:57415 127.0.0.1:57433 3333300178 30 1a00000055ceff62b21b3a500100030000004d8a1f000000000000000000 ....U..b..:P......M........... +4510 11.947640657 127.0.0.1:57433 127.0.0.1:57415 377278533 12 ffffffffed180b0000000000 ............ +4512 11.948034286 127.0.0.1:57433 127.0.0.1:57415 377278545 12 1a000000d6f30a0000000000 ............ +4514 11.948182106 127.0.0.1:57433 127.0.0.1:57415 377278557 26 160000004d8a1f00000000000100030000000000000000000000 ....M..................... +4516 11.948465586 127.0.0.1:57415 127.0.0.1:57433 3333300208 12 ffffffffd6f30a0000000000 ............ +4524 12.000811100 127.0.0.1:57415 127.0.0.1:57433 3333300220 12 1a000000ee180b0000000000 ............ +4526 12.000976562 127.0.0.1:57415 127.0.0.1:57433 3333300232 26 16000000548f6340e25e31400100030000004f8a1f0000000000 ....T.c@.^1@......O....... +4528 12.001276731 127.0.0.1:57433 127.0.0.1:57415 377278583 12 ffffffffee180b0000000000 ............ +4530 12.001659393 127.0.0.1:57433 127.0.0.1:57415 377278595 12 16000000d7f30a0000000000 ............ +4532 12.001822233 127.0.0.1:57433 127.0.0.1:57415 377278607 22 120000004f8a1f000000000001000300000000000000 ....O................. +4534 12.002076149 127.0.0.1:57415 127.0.0.1:57433 3333300258 12 ffffffffd7f30a0000000000 ............ +4546 12.104979277 127.0.0.1:57415 127.0.0.1:57433 3333300270 12 1a000000ef180b0000000000 ............ +4548 12.105200768 127.0.0.1:57415 127.0.0.1:57433 3333300282 26 16000000548f6340e25e3140010003000000518a1f0000000000 ....T.c@.^1@......Q....... +4550 12.105580568 127.0.0.1:57433 127.0.0.1:57415 377278629 12 ffffffffef180b0000000000 ............ +4552 12.106126785 127.0.0.1:57433 127.0.0.1:57415 377278641 12 16000000d8f30a0000000000 ............ +4554 12.106372356 127.0.0.1:57433 127.0.0.1:57415 377278653 22 12000000518a1f000000000001000300000000000000 ....Q................. +4556 12.106747150 127.0.0.1:57415 127.0.0.1:57433 3333300308 12 ffffffffd8f30a0000000000 ............ +4564 12.127939224 127.0.0.1:57433 127.0.0.1:57415 377278675 12 feffffff8342010094420100 .....B...B.. +4570 12.188444614 127.0.0.1:57415 127.0.0.1:57433 3333300320 12 feffffff9542010083420100 .....B...B.. +4574 12.207852840 127.0.0.1:57415 127.0.0.1:57433 3333300332 12 1a000000f0180b0000000000 ............ +4576 12.208022356 127.0.0.1:57415 127.0.0.1:57433 3333300344 26 16000000548f6340e25e3140010003000000538a1f0000000000 ....T.c@.^1@......S....... +4578 12.208401918 127.0.0.1:57433 127.0.0.1:57415 377278687 12 fffffffff0180b0000000000 ............ +4580 12.208844662 127.0.0.1:57433 127.0.0.1:57415 377278699 12 16000000d9f30a0000000000 ............ +4582 12.209005833 127.0.0.1:57433 127.0.0.1:57415 377278711 22 12000000538a1f000000000001000300000000000000 ....S................. +4584 12.209425449 127.0.0.1:57415 127.0.0.1:57433 3333300370 12 ffffffffd9f30a0000000000 ............ +4586 12.248237133 127.0.0.1:57415 127.0.0.1:57433 3333300382 12 65000000f1180b0000000000 e........... +4588 12.248421907 127.0.0.1:57415 127.0.0.1:57433 3333300394 101 1e0000001c2118d0c46f33bb010003000000da1002000000000041be22c39d01 .....!...o3...............A.".....?.....3...|8.. +4590 12.248734236 127.0.0.1:57433 127.0.0.1:57415 377278733 12 fffffffff1180b0000000000 ............ +4592 12.249429464 127.0.0.1:57433 127.0.0.1:57415 377278745 12 34000000daf30a0000000000 4........... +4594 12.249588490 127.0.0.1:57433 127.0.0.1:57415 377278757 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................T.p +4596 12.249898434 127.0.0.1:57415 127.0.0.1:57433 3333300495 12 ffffffffdaf30a0000000000 ............ +4598 12.250751495 127.0.0.1:57415 127.0.0.1:57433 3333300507 12 1e000000f2180b0000000000 ............ +4600 12.250894785 127.0.0.1:57415 127.0.0.1:57433 3333300519 30 1a00000055ceff62b21b3a50010003000000558a1f000000000000000000 ....U..b..:P......U........... +4602 12.251305580 127.0.0.1:57433 127.0.0.1:57415 377278809 12 fffffffff2180b0000000000 ............ +4604 12.251611471 127.0.0.1:57433 127.0.0.1:57415 377278821 12 1a000000dbf30a0000000000 ............ +4606 12.251765966 127.0.0.1:57433 127.0.0.1:57415 377278833 26 16000000558a1f00000000000100030000000000000000000000 ....U..................... +4608 12.252040625 127.0.0.1:57415 127.0.0.1:57433 3333300549 12 ffffffffdbf30a0000000000 ............ +4610 12.312216520 127.0.0.1:57415 127.0.0.1:57433 3333300561 12 1a000000f3180b0000000000 ............ +4612 12.312407255 127.0.0.1:57415 127.0.0.1:57433 3333300573 26 16000000548f6340e25e3140010003000000578a1f0000000000 ....T.c@.^1@......W....... +4614 12.312766552 127.0.0.1:57433 127.0.0.1:57415 377278859 12 fffffffff3180b0000000000 ............ +4616 12.313107967 127.0.0.1:57433 127.0.0.1:57415 377278871 12 16000000dcf30a0000000000 ............ +4618 12.313265085 127.0.0.1:57433 127.0.0.1:57415 377278883 22 12000000578a1f000000000001000300000000000000 ....W................. +4620 12.313572645 127.0.0.1:57415 127.0.0.1:57433 3333300599 12 ffffffffdcf30a0000000000 ............ +4626 12.416306257 127.0.0.1:57415 127.0.0.1:57433 3333300611 12 1a000000f4180b0000000000 ............ +4628 12.416607857 127.0.0.1:57415 127.0.0.1:57433 3333300623 26 16000000548f6340e25e3140010003000000598a1f0000000000 ....T.c@.^1@......Y....... +4630 12.416979313 127.0.0.1:57433 127.0.0.1:57415 377278905 12 fffffffff4180b0000000000 ............ +4632 12.417529345 127.0.0.1:57433 127.0.0.1:57415 377278917 12 16000000ddf30a0000000000 ............ +4634 12.417731047 127.0.0.1:57433 127.0.0.1:57415 377278929 22 12000000598a1f000000000001000300000000000000 ....Y................. +4636 12.418060064 127.0.0.1:57415 127.0.0.1:57433 3333300649 12 ffffffffddf30a0000000000 ............ +4644 12.520748854 127.0.0.1:57415 127.0.0.1:57433 3333300661 12 1a000000f5180b0000000000 ............ +4646 12.520982027 127.0.0.1:57415 127.0.0.1:57433 3333300673 26 16000000548f6340e25e31400100030000005b8a1f0000000000 ....T.c@.^1@......[....... +4648 12.521304131 127.0.0.1:57433 127.0.0.1:57415 377278951 12 fffffffff5180b0000000000 ............ +4650 12.521746874 127.0.0.1:57433 127.0.0.1:57415 377278963 12 16000000def30a0000000000 ............ +4652 12.521952629 127.0.0.1:57433 127.0.0.1:57415 377278975 22 120000005b8a1f000000000001000300000000000000 ....[................. +4654 12.522233725 127.0.0.1:57415 127.0.0.1:57433 3333300699 12 ffffffffdef30a0000000000 ............ +4656 12.552187920 127.0.0.1:57415 127.0.0.1:57433 3333300711 12 65000000f6180b0000000000 e........... +4658 12.552398205 127.0.0.1:57415 127.0.0.1:57433 3333300723 101 1e0000001c2118d0c46f33bb010003000000db1002000000000072bf22c39d01 .....!...o3...............r.".....?.....3...|8.. +4660 12.552750826 127.0.0.1:57433 127.0.0.1:57415 377278997 12 fffffffff6180b0000000000 ............ +4662 12.553937912 127.0.0.1:57433 127.0.0.1:57415 377279009 12 34000000dff30a0000000000 4........... +4664 12.554099798 127.0.0.1:57433 127.0.0.1:57415 377279021 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............q..p +4666 12.554444075 127.0.0.1:57415 127.0.0.1:57433 3333300824 12 ffffffffdff30a0000000000 ............ +4668 12.555155039 127.0.0.1:57415 127.0.0.1:57433 3333300836 12 1e000000f7180b0000000000 ............ +4670 12.555355787 127.0.0.1:57415 127.0.0.1:57433 3333300848 30 1a00000055ceff62b21b3a500100030000005d8a1f000000000000000000 ....U..b..:P......]........... +4672 12.555658817 127.0.0.1:57433 127.0.0.1:57415 377279073 12 fffffffff7180b0000000000 ............ +4674 12.555969238 127.0.0.1:57433 127.0.0.1:57415 377279085 12 1a000000e0f30a0000000000 ............ +4676 12.556113482 127.0.0.1:57433 127.0.0.1:57415 377279097 26 160000005d8a1f00000000000100030000000000000000000000 ....]..................... +4678 12.556413889 127.0.0.1:57415 127.0.0.1:57433 3333300878 12 ffffffffe0f30a0000000000 ............ +4684 12.623642445 127.0.0.1:57415 127.0.0.1:57433 3333300890 12 1a000000f8180b0000000000 ............ +4686 12.623828173 127.0.0.1:57415 127.0.0.1:57433 3333300902 26 16000000548f6340e25e31400100030000005f8a1f0000000000 ....T.c@.^1@......_....... +4688 12.624156713 127.0.0.1:57433 127.0.0.1:57415 377279123 12 fffffffff8180b0000000000 ............ +4690 12.625012875 127.0.0.1:57433 127.0.0.1:57415 377279135 12 16000000e1f30a0000000000 ............ +4692 12.625196457 127.0.0.1:57433 127.0.0.1:57415 377279147 22 120000005f8a1f000000000001000300000000000000 ...._................. +4694 12.625592709 127.0.0.1:57415 127.0.0.1:57433 3333300928 12 ffffffffe1f30a0000000000 ............ +4698 12.629793644 127.0.0.1:57433 127.0.0.1:57415 377279169 12 feffffff8442010095420100 .....B...B.. +4704 12.690485001 127.0.0.1:57415 127.0.0.1:57433 3333300940 12 feffffff9642010084420100 .....B...B.. +4708 12.728060484 127.0.0.1:57415 127.0.0.1:57433 3333300952 12 1a000000f9180b0000000000 ............ +4710 12.728255033 127.0.0.1:57415 127.0.0.1:57433 3333300964 26 16000000548f6340e25e3140010003000000618a1f0000000000 ....T.c@.^1@......a....... +4712 12.728816748 127.0.0.1:57433 127.0.0.1:57415 377279181 12 fffffffff9180b0000000000 ............ +4714 12.729130507 127.0.0.1:57433 127.0.0.1:57415 377279193 12 16000000e2f30a0000000000 ............ +4716 12.729296923 127.0.0.1:57433 127.0.0.1:57415 377279205 22 12000000618a1f000000000001000300000000000000 ....a................. +4718 12.729646206 127.0.0.1:57415 127.0.0.1:57433 3333300990 12 ffffffffe2f30a0000000000 ............ +4720 12.831143379 127.0.0.1:57415 127.0.0.1:57433 3333301002 12 1a000000fa180b0000000000 ............ +4722 12.831341028 127.0.0.1:57415 127.0.0.1:57433 3333301014 26 16000000548f6340e25e3140010003000000638a1f0000000000 ....T.c@.^1@......c....... +4724 12.831677675 127.0.0.1:57433 127.0.0.1:57415 377279227 12 fffffffffa180b0000000000 ............ +4726 12.832255363 127.0.0.1:57433 127.0.0.1:57415 377279239 12 16000000e3f30a0000000000 ............ +4728 12.832447529 127.0.0.1:57433 127.0.0.1:57415 377279251 22 12000000638a1f000000000001000300000000000000 ....c................. +4730 12.832653999 127.0.0.1:57415 127.0.0.1:57433 3333301040 12 ffffffffe3f30a0000000000 ............ +4732 12.857891083 127.0.0.1:57415 127.0.0.1:57433 3333301052 12 65000000fb180b0000000000 e........... +4734 12.858133554 127.0.0.1:57415 127.0.0.1:57433 3333301064 101 1e0000001c2118d0c46f33bb010003000000dc10020000000000a3c022c39d01 .....!...o3.................".....?.....3...|8.. +4736 12.858482361 127.0.0.1:57433 127.0.0.1:57415 377279273 12 fffffffffb180b0000000000 ............ +4738 12.859396458 127.0.0.1:57433 127.0.0.1:57415 377279285 12 34000000e4f30a0000000000 4........... +4740 12.859552622 127.0.0.1:57433 127.0.0.1:57415 377279297 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([............... f.q +4742 12.859829903 127.0.0.1:57415 127.0.0.1:57433 3333301165 12 ffffffffe4f30a0000000000 ............ +4744 12.860748768 127.0.0.1:57415 127.0.0.1:57433 3333301177 12 1e000000fc180b0000000000 ............ +4746 12.860966444 127.0.0.1:57415 127.0.0.1:57433 3333301189 30 1a00000055ceff62b21b3a50010003000000658a1f000000000000000000 ....U..b..:P......e........... +4748 12.861281633 127.0.0.1:57433 127.0.0.1:57415 377279349 12 fffffffffc180b0000000000 ............ +4750 12.861651421 127.0.0.1:57433 127.0.0.1:57415 377279361 12 1a000000e5f30a0000000000 ............ +4752 12.861807108 127.0.0.1:57433 127.0.0.1:57415 377279373 26 16000000658a1f00000000000100030000000000000000000000 ....e..................... +4754 12.862086058 127.0.0.1:57415 127.0.0.1:57433 3333301219 12 ffffffffe5f30a0000000000 ............ +4760 12.935224533 127.0.0.1:57415 127.0.0.1:57433 3333301231 12 1a000000fd180b0000000000 ............ +4762 12.935402870 127.0.0.1:57415 127.0.0.1:57433 3333301243 26 16000000548f6340e25e3140010003000000678a1f0000000000 ....T.c@.^1@......g....... +4764 12.935872793 127.0.0.1:57433 127.0.0.1:57415 377279399 12 fffffffffd180b0000000000 ............ +4766 12.936200857 127.0.0.1:57433 127.0.0.1:57415 377279411 12 16000000e6f30a0000000000 ............ +4768 12.936359644 127.0.0.1:57433 127.0.0.1:57415 377279423 22 12000000678a1f000000000001000300000000000000 ....g................. +4770 12.936687708 127.0.0.1:57415 127.0.0.1:57433 3333301269 12 ffffffffe6f30a0000000000 ............ +4776 13.039326906 127.0.0.1:57415 127.0.0.1:57433 3333301281 12 1a000000fe180b0000000000 ............ +4778 13.039497375 127.0.0.1:57415 127.0.0.1:57433 3333301293 26 16000000548f6340e25e3140010003000000698a1f0000000000 ....T.c@.^1@......i....... +4780 13.039848566 127.0.0.1:57433 127.0.0.1:57415 377279445 12 fffffffffe180b0000000000 ............ +4782 13.040309906 127.0.0.1:57433 127.0.0.1:57415 377279457 12 16000000e7f30a0000000000 ............ +4784 13.040481091 127.0.0.1:57433 127.0.0.1:57415 377279469 22 12000000698a1f000000000001000300000000000000 ....i................. +4786 13.040706635 127.0.0.1:57415 127.0.0.1:57433 3333301319 12 ffffffffe7f30a0000000000 ............ +4794 13.130722284 127.0.0.1:57433 127.0.0.1:57415 377279491 12 feffffff8542010096420100 .....B...B.. +4798 13.141741037 127.0.0.1:57415 127.0.0.1:57433 3333301331 12 1a000000ff180b0000000000 ............ +4800 13.141912460 127.0.0.1:57415 127.0.0.1:57433 3333301343 26 16000000548f6340e25e31400100030000006b8a1f0000000000 ....T.c@.^1@......k....... +4802 13.142231464 127.0.0.1:57433 127.0.0.1:57415 377279503 12 ffffffffff180b0000000000 ............ +4804 13.142779112 127.0.0.1:57433 127.0.0.1:57415 377279515 12 16000000e8f30a0000000000 ............ +4806 13.142947912 127.0.0.1:57433 127.0.0.1:57415 377279527 22 120000006b8a1f000000000001000300000000000000 ....k................. +4808 13.143270969 127.0.0.1:57415 127.0.0.1:57433 3333301369 12 ffffffffe8f30a0000000000 ............ +4810 13.162250280 127.0.0.1:57415 127.0.0.1:57433 3333301381 12 6500000000190b0000000000 e........... +4812 13.162397861 127.0.0.1:57415 127.0.0.1:57433 3333301393 101 1e0000001c2118d0c46f33bb010003000000dd10020000000000d3c122c39d01 .....!...o3.................".....?.....3...|8.. +4814 13.162756920 127.0.0.1:57433 127.0.0.1:57415 377279549 12 ffffffff00190b0000000000 ............ +4816 13.163563251 127.0.0.1:57433 127.0.0.1:57415 377279561 12 34000000e9f30a0000000000 4........... +4818 13.163769960 127.0.0.1:57433 127.0.0.1:57415 377279573 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............Q.Fq +4820 13.164040804 127.0.0.1:57415 127.0.0.1:57433 3333301494 12 ffffffffe9f30a0000000000 ............ +4822 13.164918423 127.0.0.1:57415 127.0.0.1:57433 3333301506 12 1e00000001190b0000000000 ............ +4824 13.165060997 127.0.0.1:57415 127.0.0.1:57433 3333301518 30 1a00000055ceff62b21b3a500100030000006d8a1f000000000000000000 ....U..b..:P......m........... +4826 13.165338516 127.0.0.1:57433 127.0.0.1:57415 377279625 12 ffffffff01190b0000000000 ............ +4828 13.165711403 127.0.0.1:57433 127.0.0.1:57415 377279637 12 1a000000eaf30a0000000000 ............ +4830 13.165867567 127.0.0.1:57433 127.0.0.1:57415 377279649 26 160000006d8a1f00000000000100030000000000000000000000 ....m..................... +4832 13.166129351 127.0.0.1:57415 127.0.0.1:57433 3333301548 12 ffffffffeaf30a0000000000 ............ +4836 13.191521406 127.0.0.1:57415 127.0.0.1:57433 3333301560 12 feffffff9742010085420100 .....B...B.. +4840 13.244758129 127.0.0.1:57415 127.0.0.1:57433 3333301572 12 1a00000002190b0000000000 ............ +4842 13.244946718 127.0.0.1:57415 127.0.0.1:57433 3333301584 26 16000000548f6340e25e31400100030000006f8a1f0000000000 ....T.c@.^1@......o....... +4844 13.245305777 127.0.0.1:57433 127.0.0.1:57415 377279675 12 ffffffff02190b0000000000 ............ +4846 13.246482849 127.0.0.1:57433 127.0.0.1:57415 377279687 12 16000000ebf30a0000000000 ............ +4848 13.246712685 127.0.0.1:57433 127.0.0.1:57415 377279699 22 120000006f8a1f000000000001000300000000000000 ....o................. +4850 13.247003555 127.0.0.1:57415 127.0.0.1:57433 3333301610 12 ffffffffebf30a0000000000 ............ +4852 13.347993851 127.0.0.1:57415 127.0.0.1:57433 3333301622 12 1a00000003190b0000000000 ............ +4854 13.348178148 127.0.0.1:57415 127.0.0.1:57433 3333301634 26 16000000548f6340e25e3140010003000000718a1f0000000000 ....T.c@.^1@......q....... +4856 13.348522663 127.0.0.1:57433 127.0.0.1:57415 377279721 12 ffffffff03190b0000000000 ............ +4858 13.349116802 127.0.0.1:57433 127.0.0.1:57415 377279733 12 16000000ecf30a0000000000 ............ +4860 13.349286556 127.0.0.1:57433 127.0.0.1:57415 377279745 22 12000000718a1f000000000001000300000000000000 ....q................. +4862 13.349565506 127.0.0.1:57415 127.0.0.1:57433 3333301660 12 ffffffffecf30a0000000000 ............ +4868 13.451050997 127.0.0.1:57415 127.0.0.1:57433 3333301672 12 1a00000004190b0000000000 ............ +4870 13.451225042 127.0.0.1:57415 127.0.0.1:57433 3333301684 26 16000000548f6340e25e3140010003000000738a1f0000000000 ....T.c@.^1@......s....... +4872 13.451509476 127.0.0.1:57433 127.0.0.1:57415 377279767 12 ffffffff04190b0000000000 ............ +4874 13.452038050 127.0.0.1:57433 127.0.0.1:57415 377279779 12 16000000edf30a0000000000 ............ +4876 13.452206612 127.0.0.1:57433 127.0.0.1:57415 377279791 22 12000000738a1f000000000001000300000000000000 ....s................. +4878 13.452987909 127.0.0.1:57415 127.0.0.1:57433 3333301710 12 ffffffffedf30a0000000000 ............ +4880 13.467654943 127.0.0.1:57415 127.0.0.1:57433 3333301722 12 6500000005190b0000000000 e........... +4882 13.467868805 127.0.0.1:57415 127.0.0.1:57433 3333301734 101 1e0000001c2118d0c46f33bb010003000000de1002000000000005c322c39d01 .....!...o3.................".....?.....3...|8.. +4884 13.468235016 127.0.0.1:57433 127.0.0.1:57415 377279813 12 ffffffff05190b0000000000 ............ +4886 13.469190836 127.0.0.1:57433 127.0.0.1:57415 377279825 12 34000000eef30a0000000000 4........... +4888 13.469354153 127.0.0.1:57433 127.0.0.1:57415 377279837 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................ouq +4890 13.469609261 127.0.0.1:57415 127.0.0.1:57433 3333301835 12 ffffffffeef30a0000000000 ............ +4892 13.470393181 127.0.0.1:57415 127.0.0.1:57433 3333301847 12 1e00000006190b0000000000 ............ +4894 13.470558405 127.0.0.1:57415 127.0.0.1:57433 3333301859 30 1a00000055ceff62b21b3a50010003000000758a1f000000000000000000 ....U..b..:P......u........... +4896 13.470950127 127.0.0.1:57433 127.0.0.1:57415 377279889 12 ffffffff06190b0000000000 ............ +4898 13.471274137 127.0.0.1:57433 127.0.0.1:57415 377279901 12 1a000000eff30a0000000000 ............ +4900 13.471421957 127.0.0.1:57433 127.0.0.1:57415 377279913 26 16000000758a1f00000000000100030000000000000000000000 ....u..................... +4902 13.471648932 127.0.0.1:57415 127.0.0.1:57433 3333301889 12 ffffffffeff30a0000000000 ............ +4908 13.554572582 127.0.0.1:57415 127.0.0.1:57433 3333301901 12 1a00000007190b0000000000 ............ +4910 13.554757595 127.0.0.1:57415 127.0.0.1:57433 3333301913 26 16000000548f6340e25e3140010003000000778a1f0000000000 ....T.c@.^1@......w....... +4912 13.555198908 127.0.0.1:57433 127.0.0.1:57415 377279939 12 ffffffff07190b0000000000 ............ +4914 13.555551767 127.0.0.1:57433 127.0.0.1:57415 377279951 12 16000000f0f30a0000000000 ............ +4916 13.555710316 127.0.0.1:57433 127.0.0.1:57415 377279963 22 12000000778a1f000000000001000300000000000000 ....w................. +4918 13.556011438 127.0.0.1:57415 127.0.0.1:57433 3333301939 12 fffffffff0f30a0000000000 ............ +4926 13.631581545 127.0.0.1:57433 127.0.0.1:57415 377279985 12 feffffff8642010097420100 .....B...B.. +4930 13.657318592 127.0.0.1:57415 127.0.0.1:57433 3333301951 12 1a00000008190b0000000000 ............ +4932 13.657488108 127.0.0.1:57415 127.0.0.1:57433 3333301963 26 16000000548f6340e25e3140010003000000798a1f0000000000 ....T.c@.^1@......y....... +4934 13.657833576 127.0.0.1:57433 127.0.0.1:57415 377279997 12 ffffffff08190b0000000000 ............ +4936 13.658214569 127.0.0.1:57433 127.0.0.1:57415 377280009 12 16000000f1f30a0000000000 ............ +4938 13.658371925 127.0.0.1:57433 127.0.0.1:57415 377280021 22 12000000798a1f000000000001000300000000000000 ....y................. +4940 13.658791065 127.0.0.1:57415 127.0.0.1:57433 3333301989 12 fffffffff1f30a0000000000 ............ +4944 13.693430901 127.0.0.1:57415 127.0.0.1:57433 3333302001 12 feffffff9842010086420100 .....B...B.. +4948 13.760558367 127.0.0.1:57415 127.0.0.1:57433 3333302013 12 1a00000009190b0000000000 ............ +4950 13.760749817 127.0.0.1:57415 127.0.0.1:57433 3333302025 26 16000000548f6340e25e31400100030000007b8a1f0000000000 ....T.c@.^1@......{....... +4952 13.761051178 127.0.0.1:57433 127.0.0.1:57415 377280043 12 ffffffff09190b0000000000 ............ +4954 13.761466265 127.0.0.1:57433 127.0.0.1:57415 377280055 12 16000000f2f30a0000000000 ............ +4956 13.761631489 127.0.0.1:57433 127.0.0.1:57415 377280067 22 120000007b8a1f000000000001000300000000000000 ....{................. +4958 13.761966705 127.0.0.1:57415 127.0.0.1:57433 3333302051 12 fffffffff2f30a0000000000 ............ +4960 13.771986723 127.0.0.1:57415 127.0.0.1:57433 3333302063 12 220000000a190b0000000000 "........... +4962 13.772147655 127.0.0.1:57415 127.0.0.1:57433 3333302075 34 1e0000001c2118d0c46f33bb010003000000df1002000000000036c422c39d01 .....!...o3...............6."..... +4964 13.772282839 127.0.0.1:57415 127.0.0.1:57433 3333302109 12 430000000b190b0000000000 C........... +4966 13.772366047 127.0.0.1:57415 127.0.0.1:57433 3333302121 67 3f000000980433cb0cb47c380100030000000100000000df100200000000003d ?.....3...|8...................=B.....&......... +4968 13.772425890 127.0.0.1:57433 127.0.0.1:57415 377280089 12 ffffffff0a190b0000000000 ............ +4970 13.772577286 127.0.0.1:57433 127.0.0.1:57415 377280101 12 ffffffff0b190b0000000000 ............ +4972 13.773432255 127.0.0.1:57433 127.0.0.1:57415 377280113 12 34000000f3f30a0000000000 4........... +4974 13.773579597 127.0.0.1:57433 127.0.0.1:57415 377280125 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................q +4976 13.773889065 127.0.0.1:57415 127.0.0.1:57433 3333302188 12 fffffffff3f30a0000000000 ............ +4978 13.774968624 127.0.0.1:57415 127.0.0.1:57433 3333302200 12 1e0000000c190b0000000000 ............ +4980 13.775104284 127.0.0.1:57415 127.0.0.1:57433 3333302212 30 1a00000055ceff62b21b3a500100030000007d8a1f000000000000000000 ....U..b..:P......}........... +4982 13.775482416 127.0.0.1:57433 127.0.0.1:57415 377280177 12 ffffffff0c190b0000000000 ............ +4984 13.775907516 127.0.0.1:57433 127.0.0.1:57415 377280189 12 1a000000f4f30a0000000000 ............ +4986 13.776062965 127.0.0.1:57433 127.0.0.1:57415 377280201 26 160000007d8a1f00000000000100030000000000000000000000 ....}..................... +4988 13.776293516 127.0.0.1:57415 127.0.0.1:57433 3333302242 12 fffffffff4f30a0000000000 ............ +4990 13.863349915 127.0.0.1:57415 127.0.0.1:57433 3333302254 12 1a0000000d190b0000000000 ............ +4992 13.863541365 127.0.0.1:57415 127.0.0.1:57433 3333302266 26 16000000548f6340e25e31400100030000007f8a1f0000000000 ....T.c@.^1@.............. +4994 13.863976955 127.0.0.1:57433 127.0.0.1:57415 377280227 12 ffffffff0d190b0000000000 ............ +4996 13.864392757 127.0.0.1:57433 127.0.0.1:57415 377280239 12 16000000f5f30a0000000000 ............ +4998 13.864558935 127.0.0.1:57433 127.0.0.1:57415 377280251 22 120000007f8a1f000000000001000300000000000000 ...................... +5000 13.864878654 127.0.0.1:57415 127.0.0.1:57433 3333302292 12 fffffffff5f30a0000000000 ............ +5006 13.967997074 127.0.0.1:57415 127.0.0.1:57433 3333302304 12 1a0000000e190b0000000000 ............ +5008 13.968187094 127.0.0.1:57415 127.0.0.1:57433 3333302316 26 16000000548f6340e25e3140010003000000818a1f0000000000 ....T.c@.^1@.............. +5010 13.968494177 127.0.0.1:57433 127.0.0.1:57415 377280273 12 ffffffff0e190b0000000000 ............ +5012 13.969065189 127.0.0.1:57433 127.0.0.1:57415 377280285 12 16000000f6f30a0000000000 ............ +5014 13.969298601 127.0.0.1:57433 127.0.0.1:57415 377280297 22 12000000818a1f000000000001000300000000000000 ...................... +5016 13.969651699 127.0.0.1:57415 127.0.0.1:57433 3333302342 12 fffffffff6f30a0000000000 ............ +5022 14.071318150 127.0.0.1:57415 127.0.0.1:57433 3333302354 12 1a0000000f190b0000000000 ............ +5024 14.071493626 127.0.0.1:57415 127.0.0.1:57433 3333302366 26 16000000548f6340e25e3140010003000000838a1f0000000000 ....T.c@.^1@.............. +5026 14.071816921 127.0.0.1:57433 127.0.0.1:57415 377280319 12 ffffffff0f190b0000000000 ............ +5028 14.072301865 127.0.0.1:57433 127.0.0.1:57415 377280331 12 16000000f7f30a0000000000 ............ +5030 14.072462082 127.0.0.1:57433 127.0.0.1:57415 377280343 22 12000000838a1f000000000001000300000000000000 ...................... +5032 14.072979212 127.0.0.1:57415 127.0.0.1:57433 3333302392 12 fffffffff7f30a0000000000 ............ +5034 14.076550007 127.0.0.1:57415 127.0.0.1:57433 3333302404 12 6500000010190b0000000000 e........... +5036 14.076791525 127.0.0.1:57415 127.0.0.1:57433 3333302416 101 1e0000001c2118d0c46f33bb010003000000e01002000000000066c522c39d01 .....!...o3...............f.".....?.....3...|8.. +5038 14.077022552 127.0.0.1:57433 127.0.0.1:57415 377280365 12 ffffffff10190b0000000000 ............ +5040 14.078351736 127.0.0.1:57433 127.0.0.1:57415 377280377 12 34000000f8f30a0000000000 4........... +5042 14.078509331 127.0.0.1:57433 127.0.0.1:57415 377280389 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................f.q +5044 14.078815699 127.0.0.1:57415 127.0.0.1:57433 3333302517 12 fffffffff8f30a0000000000 ............ +5046 14.079801083 127.0.0.1:57415 127.0.0.1:57433 3333302529 12 1e00000011190b0000000000 ............ +5048 14.079954863 127.0.0.1:57415 127.0.0.1:57433 3333302541 30 1a00000055ceff62b21b3a50010003000000858a1f000000000000000000 ....U..b..:P.................. +5050 14.080230236 127.0.0.1:57433 127.0.0.1:57415 377280441 12 ffffffff11190b0000000000 ............ +5052 14.080654860 127.0.0.1:57433 127.0.0.1:57415 377280453 12 1a000000f9f30a0000000000 ............ +5054 14.080876589 127.0.0.1:57433 127.0.0.1:57415 377280465 26 16000000858a1f00000000000100030000000000000000000000 .......................... +5056 14.081132650 127.0.0.1:57415 127.0.0.1:57433 3333302571 12 fffffffff9f30a0000000000 ............ +5064 14.131993532 127.0.0.1:57433 127.0.0.1:57415 377280491 12 feffffff8742010098420100 .....B...B.. +5068 14.174329281 127.0.0.1:57415 127.0.0.1:57433 3333302583 12 1a00000012190b0000000000 ............ +5070 14.174505949 127.0.0.1:57415 127.0.0.1:57433 3333302595 26 16000000548f6340e25e3140010003000000878a1f0000000000 ....T.c@.^1@.............. +5072 14.174840927 127.0.0.1:57433 127.0.0.1:57415 377280503 12 ffffffff12190b0000000000 ............ +5074 14.175485373 127.0.0.1:57433 127.0.0.1:57415 377280515 12 16000000faf30a0000000000 ............ +5076 14.175645590 127.0.0.1:57433 127.0.0.1:57415 377280527 22 12000000878a1f000000000001000300000000000000 ...................... +5078 14.175866842 127.0.0.1:57415 127.0.0.1:57433 3333302621 12 fffffffffaf30a0000000000 ............ +5083 14.193999052 127.0.0.1:57415 127.0.0.1:57433 3333302633 12 feffffff9942010087420100 .....B...B.. +5088 14.277109861 127.0.0.1:57415 127.0.0.1:57433 3333302645 12 1a00000013190b0000000000 ............ +5090 14.277278423 127.0.0.1:57415 127.0.0.1:57433 3333302657 26 16000000548f6340e25e3140010003000000898a1f0000000000 ....T.c@.^1@.............. +5092 14.277609587 127.0.0.1:57433 127.0.0.1:57415 377280549 12 ffffffff13190b0000000000 ............ +5094 14.278094530 127.0.0.1:57433 127.0.0.1:57415 377280561 12 16000000fbf30a0000000000 ............ +5096 14.278255701 127.0.0.1:57433 127.0.0.1:57415 377280573 22 12000000898a1f000000000001000300000000000000 ...................... +5098 14.278634071 127.0.0.1:57415 127.0.0.1:57433 3333302683 12 fffffffffbf30a0000000000 ............ +5104 14.381510258 127.0.0.1:57415 127.0.0.1:57433 3333302695 12 1a00000014190b0000000000 ............ +5106 14.381704569 127.0.0.1:57415 127.0.0.1:57433 3333302707 26 16000000548f6340e25e31400100030000008b8a1f0000000000 ....T.c@.^1@.............. +5108 14.381841421 127.0.0.1:57415 127.0.0.1:57433 3333302733 12 6500000015190b0000000000 e........... +5110 14.381969213 127.0.0.1:57415 127.0.0.1:57433 3333302745 101 1e0000001c2118d0c46f33bb010003000000e11002000000000097c622c39d01 .....!...o3.................".....?.....3...|8.. +5112 14.382035494 127.0.0.1:57433 127.0.0.1:57415 377280595 12 ffffffff14190b0000000000 ............ +5114 14.382211208 127.0.0.1:57433 127.0.0.1:57415 377280607 12 ffffffff15190b0000000000 ............ +5116 14.382436991 127.0.0.1:57433 127.0.0.1:57415 377280619 12 16000000fcf30a0000000000 ............ +5118 14.382601738 127.0.0.1:57433 127.0.0.1:57415 377280631 22 120000008b8a1f000000000001000300000000000000 ...................... +5120 14.382880211 127.0.0.1:57415 127.0.0.1:57433 3333302846 12 fffffffffcf30a0000000000 ............ +5122 14.383042336 127.0.0.1:57433 127.0.0.1:57415 377280653 12 34000000fdf30a0000000000 4........... +5124 14.383181334 127.0.0.1:57433 127.0.0.1:57415 377280665 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................r +5126 14.383424282 127.0.0.1:57415 127.0.0.1:57433 3333302858 12 fffffffffdf30a0000000000 ............ +5128 14.384255171 127.0.0.1:57415 127.0.0.1:57433 3333302870 12 1e00000016190b0000000000 ............ +5130 14.384402752 127.0.0.1:57415 127.0.0.1:57433 3333302882 30 1a00000055ceff62b21b3a500100030000008d8a1f000000000000000000 ....U..b..:P.................. +5132 14.384707928 127.0.0.1:57433 127.0.0.1:57415 377280717 12 ffffffff16190b0000000000 ............ +5134 14.385067225 127.0.0.1:57433 127.0.0.1:57415 377280729 12 1a000000fef30a0000000000 ............ +5136 14.385206461 127.0.0.1:57433 127.0.0.1:57415 377280741 26 160000008d8a1f00000000000100030000000000000000000000 .......................... +5138 14.385456562 127.0.0.1:57415 127.0.0.1:57433 3333302912 12 fffffffffef30a0000000000 ............ +5141 14.484864235 127.0.0.1:57415 127.0.0.1:57433 3333302924 12 1a00000017190b0000000000 ............ +5144 14.485060930 127.0.0.1:57415 127.0.0.1:57433 3333302936 26 16000000548f6340e25e31400100030000008f8a1f0000000000 ....T.c@.^1@.............. +5146 14.485484600 127.0.0.1:57433 127.0.0.1:57415 377280767 12 ffffffff17190b0000000000 ............ +5148 14.485885859 127.0.0.1:57433 127.0.0.1:57415 377280779 12 16000000fff30a0000000000 ............ +5150 14.486053228 127.0.0.1:57433 127.0.0.1:57415 377280791 22 120000008f8a1f000000000001000300000000000000 ...................... +5152 14.486403942 127.0.0.1:57415 127.0.0.1:57433 3333302962 12 fffffffffff30a0000000000 ............ +5156 14.587526798 127.0.0.1:57415 127.0.0.1:57433 3333302974 12 1a00000018190b0000000000 ............ +5158 14.587698698 127.0.0.1:57415 127.0.0.1:57433 3333302986 26 16000000548f6340e25e3140010003000000918a1f0000000000 ....T.c@.^1@.............. +5160 14.588017464 127.0.0.1:57433 127.0.0.1:57415 377280813 12 ffffffff18190b0000000000 ............ +5162 14.588395119 127.0.0.1:57433 127.0.0.1:57415 377280825 12 1600000000f40a0000000000 ............ +5164 14.588551044 127.0.0.1:57433 127.0.0.1:57415 377280837 22 12000000918a1f000000000001000300000000000000 ...................... +5166 14.588938236 127.0.0.1:57415 127.0.0.1:57433 3333303012 12 ffffffff00f40a0000000000 ............ +5174 14.633106709 127.0.0.1:57433 127.0.0.1:57415 377280859 12 feffffff8842010099420100 .....B...B.. +5180 14.687053442 127.0.0.1:57415 127.0.0.1:57433 3333303024 12 2200000019190b0000000000 "........... +5181 14.687071085 127.0.0.1:57415 127.0.0.1:57433 3333303036 34 1e0000001c2118d0c46f33bb010003000000e210020000000000c8c722c39d01 .....!...o3................."..... +5183 14.687371969 127.0.0.1:57415 127.0.0.1:57433 3333303070 12 430000001a190b0000000000 C........... +5184 14.687383413 127.0.0.1:57415 127.0.0.1:57433 3333303082 67 3f000000980433cb0cb47c380100030000000100000000e2100200000000003d ?.....3...|8...................=B.....&......... +5185 14.687428236 127.0.0.1:57433 127.0.0.1:57415 377280871 12 ffffffff19190b0000000000 ............ +5188 14.687635660 127.0.0.1:57433 127.0.0.1:57415 377280883 12 ffffffff1a190b0000000000 ............ +5190 14.688672066 127.0.0.1:57433 127.0.0.1:57415 377280895 12 3400000001f40a0000000000 4........... +5192 14.688831806 127.0.0.1:57433 127.0.0.1:57415 377280907 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............e./r +5194 14.689144611 127.0.0.1:57415 127.0.0.1:57433 3333303149 12 ffffffff01f40a0000000000 ............ +5195 14.689858437 127.0.0.1:57415 127.0.0.1:57433 3333303161 12 1e0000001b190b0000000000 ............ +5196 14.690022945 127.0.0.1:57415 127.0.0.1:57433 3333303173 30 1a00000055ceff62b21b3a50010003000000938a1f000000000000000000 ....U..b..:P.................. +5197 14.690229893 127.0.0.1:57433 127.0.0.1:57415 377280959 12 ffffffff1b190b0000000000 ............ +5198 14.690337896 127.0.0.1:57415 127.0.0.1:57433 3333303203 38 1a0000001c190b000000000016000000548f6340e25e3140010003000000958a ................T.c@.^1@.............. +5199 14.690673828 127.0.0.1:57433 127.0.0.1:57415 377280971 12 3000000002f40a0000000000 0........... +5201 14.690846682 127.0.0.1:57433 127.0.0.1:57415 377280983 48 16000000938a1f0000000000010003000000000000000000000012000000958a ................................................ +5203 14.691130877 127.0.0.1:57415 127.0.0.1:57433 3333303241 12 ffffffff02f40a0000000000 ............ +5204 14.691153288 127.0.0.1:57433 127.0.0.1:57415 377281031 12 ffffffff1c190b0000000000 ............ +5207 14.695402384 127.0.0.1:57415 127.0.0.1:57433 3333303253 12 feffffff9a42010088420100 .....B...B.. +5210 14.792674065 127.0.0.1:57415 127.0.0.1:57433 3333303265 12 1a0000001d190b0000000000 ............ +5214 14.793024540 127.0.0.1:57415 127.0.0.1:57433 3333303277 26 16000000548f6340e25e3140010003000000978a1f0000000000 ....T.c@.^1@.............. +5216 14.793385744 127.0.0.1:57433 127.0.0.1:57415 377281043 12 ffffffff1d190b0000000000 ............ +5218 14.793804169 127.0.0.1:57433 127.0.0.1:57415 377281055 12 1600000003f40a0000000000 ............ +5220 14.793996811 127.0.0.1:57433 127.0.0.1:57415 377281067 22 12000000978a1f000000000001000300000000000000 ...................... +5224 14.794307232 127.0.0.1:57415 127.0.0.1:57433 3333303303 12 ffffffff03f40a0000000000 ............ +5238 14.895813465 127.0.0.1:57415 127.0.0.1:57433 3333303315 12 1a0000001e190b0000000000 ............ +5240 14.896014214 127.0.0.1:57415 127.0.0.1:57433 3333303327 26 16000000548f6340e25e3140010003000000998a1f0000000000 ....T.c@.^1@.............. +5242 14.896405458 127.0.0.1:57433 127.0.0.1:57415 377281089 12 ffffffff1e190b0000000000 ............ +5244 14.896779299 127.0.0.1:57433 127.0.0.1:57415 377281101 12 1600000004f40a0000000000 ............ +5246 14.896936893 127.0.0.1:57433 127.0.0.1:57415 377281113 22 12000000998a1f000000000001000300000000000000 ...................... +5248 14.897340775 127.0.0.1:57415 127.0.0.1:57433 3333303353 12 ffffffff04f40a0000000000 ............ +5252 14.992277384 127.0.0.1:57415 127.0.0.1:57433 3333303365 12 220000001f190b0000000000 "........... +5254 14.992469072 127.0.0.1:57415 127.0.0.1:57433 3333303377 34 1e0000001c2118d0c46f33bb010003000000e310020000000000f9c822c39d01 .....!...o3................."..... +5256 14.992612362 127.0.0.1:57415 127.0.0.1:57433 3333303411 12 4300000020190b0000000000 C... ....... +5258 14.992699623 127.0.0.1:57415 127.0.0.1:57433 3333303423 67 3f000000980433cb0cb47c380100030000000100000000e3100200000000003d ?.....3...|8...................=B.....&......... +5260 14.993065834 127.0.0.1:57433 127.0.0.1:57415 377281135 12 ffffffff1f190b0000000000 ............ +5262 14.993283272 127.0.0.1:57433 127.0.0.1:57415 377281147 12 ffffffff20190b0000000000 .... ....... +5264 14.993827343 127.0.0.1:57433 127.0.0.1:57415 377281159 12 3400000005f40a0000000000 4........... +5266 14.994000912 127.0.0.1:57433 127.0.0.1:57415 377281171 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................^r +5268 14.994324207 127.0.0.1:57415 127.0.0.1:57433 3333303490 12 ffffffff05f40a0000000000 ............ +5270 14.995170116 127.0.0.1:57415 127.0.0.1:57433 3333303502 12 1e00000021190b0000000000 ....!....... +5272 14.995329380 127.0.0.1:57415 127.0.0.1:57433 3333303514 30 1a00000055ceff62b21b3a500100030000009b8a1f000000000000000000 ....U..b..:P.................. +5274 14.995518446 127.0.0.1:57433 127.0.0.1:57415 377281223 12 ffffffff21190b0000000000 ....!....... +5277 14.995927811 127.0.0.1:57433 127.0.0.1:57415 377281235 12 1a00000006f40a0000000000 ............ +5280 14.996091127 127.0.0.1:57433 127.0.0.1:57415 377281247 26 160000009b8a1f00000000000100030000000000000000000000 .......................... +5282 14.996477127 127.0.0.1:57415 127.0.0.1:57433 3333303544 12 ffffffff06f40a0000000000 ............ +5284 14.999748468 127.0.0.1:57415 127.0.0.1:57433 3333303556 12 1a00000022190b0000000000 ...."....... +5286 14.999893427 127.0.0.1:57415 127.0.0.1:57433 3333303568 26 16000000548f6340e25e31400100030000009d8a1f0000000000 ....T.c@.^1@.............. +5288 15.000164747 127.0.0.1:57433 127.0.0.1:57415 377281273 12 ffffffff22190b0000000000 ...."....... +5290 15.000704527 127.0.0.1:57433 127.0.0.1:57415 377281285 12 1600000007f40a0000000000 ............ +5292 15.000846148 127.0.0.1:57433 127.0.0.1:57415 377281297 22 120000009d8a1f000000000001000300000000000000 ...................... +5294 15.001112938 127.0.0.1:57415 127.0.0.1:57433 3333303594 12 ffffffff07f40a0000000000 ............ +5296 15.102721453 127.0.0.1:57415 127.0.0.1:57433 3333303606 12 1a00000023190b0000000000 ....#....... +5298 15.102983475 127.0.0.1:57415 127.0.0.1:57433 3333303618 26 16000000548f6340e25e31400100030000009f8a1f0000000000 ....T.c@.^1@.............. +5300 15.103329420 127.0.0.1:57433 127.0.0.1:57415 377281319 12 ffffffff23190b0000000000 ....#....... +5302 15.103751659 127.0.0.1:57433 127.0.0.1:57415 377281331 12 1600000008f40a0000000000 ............ +5304 15.103948832 127.0.0.1:57433 127.0.0.1:57415 377281343 22 120000009f8a1f000000000001000300000000000000 ...................... +5306 15.104225636 127.0.0.1:57415 127.0.0.1:57433 3333303644 12 ffffffff08f40a0000000000 ............ +5314 15.134290695 127.0.0.1:57433 127.0.0.1:57415 377281365 12 feffffff894201009a420100 .....B...B.. +5320 15.197448492 127.0.0.1:57415 127.0.0.1:57433 3333303656 12 feffffff9b42010089420100 .....B...B.. +5324 15.205549955 127.0.0.1:57415 127.0.0.1:57433 3333303668 12 1a00000024190b0000000000 ....$....... +5326 15.205723763 127.0.0.1:57415 127.0.0.1:57433 3333303680 26 16000000548f6340e25e3140010003000000a18a1f0000000000 ....T.c@.^1@.............. +5328 15.206078768 127.0.0.1:57433 127.0.0.1:57415 377281377 12 ffffffff24190b0000000000 ....$....... +5330 15.206459045 127.0.0.1:57433 127.0.0.1:57415 377281389 12 1600000009f40a0000000000 ............ +5332 15.206621885 127.0.0.1:57433 127.0.0.1:57415 377281401 22 12000000a18a1f000000000001000300000000000000 ...................... +5334 15.206971645 127.0.0.1:57415 127.0.0.1:57433 3333303706 12 ffffffff09f40a0000000000 ............ +5337 15.296344995 127.0.0.1:57415 127.0.0.1:57433 3333303718 12 2200000025190b0000000000 "...%....... +5339 15.296532869 127.0.0.1:57415 127.0.0.1:57433 3333303730 34 1e0000001c2118d0c46f33bb010003000000e4100200000000002aca22c39d01 .....!...o3...............*."..... +5341 15.296669006 127.0.0.1:57415 127.0.0.1:57433 3333303764 12 4300000026190b0000000000 C...&....... +5343 15.296755075 127.0.0.1:57415 127.0.0.1:57433 3333303776 67 3f000000980433cb0cb47c380100030000000100000000e4100200000000003d ?.....3...|8...................=B.....&......... +5345 15.296865702 127.0.0.1:57433 127.0.0.1:57415 377281423 12 ffffffff25190b0000000000 ....%....... +5347 15.297091722 127.0.0.1:57433 127.0.0.1:57415 377281435 12 ffffffff26190b0000000000 ....&....... +5349 15.298134089 127.0.0.1:57433 127.0.0.1:57415 377281447 12 340000000af40a0000000000 4........... +5351 15.298297644 127.0.0.1:57433 127.0.0.1:57415 377281459 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............]..r +5353 15.298792362 127.0.0.1:57415 127.0.0.1:57433 3333303843 12 ffffffff0af40a0000000000 ............ +5355 15.299432039 127.0.0.1:57415 127.0.0.1:57433 3333303855 12 1e00000027190b0000000000 ....'....... +5357 15.299572468 127.0.0.1:57415 127.0.0.1:57433 3333303867 30 1a00000055ceff62b21b3a50010003000000a38a1f000000000000000000 ....U..b..:P.................. +5359 15.299852610 127.0.0.1:57433 127.0.0.1:57415 377281511 12 ffffffff27190b0000000000 ....'....... +5361 15.300274372 127.0.0.1:57433 127.0.0.1:57415 377281523 12 1a0000000bf40a0000000000 ............ +5363 15.300417900 127.0.0.1:57433 127.0.0.1:57415 377281535 26 16000000a38a1f00000000000100030000000000000000000000 .......................... +5365 15.300679445 127.0.0.1:57415 127.0.0.1:57433 3333303897 12 ffffffff0bf40a0000000000 ............ +5367 15.308458805 127.0.0.1:57415 127.0.0.1:57433 3333303909 12 1a00000028190b0000000000 ....(....... +5369 15.308631659 127.0.0.1:57415 127.0.0.1:57433 3333303921 26 16000000548f6340e25e3140010003000000a58a1f0000000000 ....T.c@.^1@.............. +5371 15.308858156 127.0.0.1:57433 127.0.0.1:57415 377281561 12 ffffffff28190b0000000000 ....(....... +5373 15.309308052 127.0.0.1:57433 127.0.0.1:57415 377281573 12 160000000cf40a0000000000 ............ +5375 15.309451342 127.0.0.1:57433 127.0.0.1:57415 377281585 22 12000000a58a1f000000000001000300000000000000 ...................... +5377 15.309755325 127.0.0.1:57415 127.0.0.1:57433 3333303947 12 ffffffff0cf40a0000000000 ............ +5384 15.410776377 127.0.0.1:57415 127.0.0.1:57433 3333303959 12 1a00000029190b0000000000 ....)....... +5386 15.411044359 127.0.0.1:57415 127.0.0.1:57433 3333303971 26 16000000548f6340e25e3140010003000000a78a1f0000000000 ....T.c@.^1@.............. +5388 15.411289454 127.0.0.1:57433 127.0.0.1:57415 377281607 12 ffffffff29190b0000000000 ....)....... +5390 15.411821842 127.0.0.1:57433 127.0.0.1:57415 377281619 12 160000000df40a0000000000 ............ +5392 15.412014246 127.0.0.1:57433 127.0.0.1:57415 377281631 22 12000000a78a1f000000000001000300000000000000 ...................... +5394 15.412318230 127.0.0.1:57415 127.0.0.1:57433 3333303997 12 ffffffff0df40a0000000000 ............ +5401 15.514916420 127.0.0.1:57415 127.0.0.1:57433 3333304009 12 1a0000002a190b0000000000 ....*....... +5403 15.515096903 127.0.0.1:57415 127.0.0.1:57433 3333304021 26 16000000548f6340e25e3140010003000000a98a1f0000000000 ....T.c@.^1@.............. +5405 15.515502453 127.0.0.1:57433 127.0.0.1:57415 377281653 12 ffffffff2a190b0000000000 ....*....... +5407 15.515863657 127.0.0.1:57433 127.0.0.1:57415 377281665 12 160000000ef40a0000000000 ............ +5409 15.516024113 127.0.0.1:57433 127.0.0.1:57415 377281677 22 12000000a98a1f000000000001000300000000000000 ...................... +5411 15.516245365 127.0.0.1:57415 127.0.0.1:57433 3333304047 12 ffffffff0ef40a0000000000 ............ +5416 15.601740122 127.0.0.1:57415 127.0.0.1:57433 3333304059 12 220000002b190b0000000000 "...+....... +5418 15.601930141 127.0.0.1:57415 127.0.0.1:57433 3333304071 34 1e0000001c2118d0c46f33bb010003000000e5100200000000005bcb22c39d01 .....!...o3...............[."..... +5420 15.602018833 127.0.0.1:57415 127.0.0.1:57433 3333304105 12 430000002c190b0000000000 C...,....... +5422 15.602102995 127.0.0.1:57415 127.0.0.1:57433 3333304117 67 3f000000980433cb0cb47c380100030000000100000000e5100200000000003d ?.....3...|8...................=B.....&......... +5423 15.602181435 127.0.0.1:57433 127.0.0.1:57415 377281699 12 ffffffff2b190b0000000000 ....+....... +5424 15.602316856 127.0.0.1:57433 127.0.0.1:57415 377281711 12 ffffffff2c190b0000000000 ....,....... +5427 15.603473663 127.0.0.1:57433 127.0.0.1:57415 377281723 12 340000000ff40a0000000000 4........... +5429 15.603649855 127.0.0.1:57433 127.0.0.1:57415 377281735 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................r +5431 15.604015350 127.0.0.1:57415 127.0.0.1:57433 3333304184 12 ffffffff0ff40a0000000000 ............ +5432 15.605046749 127.0.0.1:57415 127.0.0.1:57433 3333304196 12 1e0000002d190b0000000000 ....-....... +5433 15.605184555 127.0.0.1:57415 127.0.0.1:57433 3333304208 30 1a00000055ceff62b21b3a50010003000000ab8a1f000000000000000000 ....U..b..:P.................. +5434 15.605532885 127.0.0.1:57433 127.0.0.1:57415 377281787 12 ffffffff2d190b0000000000 ....-....... +5436 15.605858326 127.0.0.1:57433 127.0.0.1:57415 377281799 12 1a00000010f40a0000000000 ............ +5438 15.606020212 127.0.0.1:57433 127.0.0.1:57415 377281811 26 16000000ab8a1f00000000000100030000000000000000000000 .......................... +5440 15.606281519 127.0.0.1:57415 127.0.0.1:57433 3333304238 12 ffffffff10f40a0000000000 ............ +5442 15.617884159 127.0.0.1:57415 127.0.0.1:57433 3333304250 12 1a0000002e190b0000000000 ............ +5444 15.618348598 127.0.0.1:57415 127.0.0.1:57433 3333304262 26 16000000548f6340e25e3140010003000000ad8a1f0000000000 ....T.c@.^1@.............. +5446 15.618665218 127.0.0.1:57433 127.0.0.1:57415 377281837 12 ffffffff2e190b0000000000 ............ +5448 15.619159460 127.0.0.1:57433 127.0.0.1:57415 377281849 12 1600000011f40a0000000000 ............ +5450 15.619363546 127.0.0.1:57433 127.0.0.1:57415 377281861 22 12000000ad8a1f000000000001000300000000000000 ...................... +5452 15.619688988 127.0.0.1:57415 127.0.0.1:57433 3333304288 12 ffffffff11f40a0000000000 ............ +5460 15.635017633 127.0.0.1:57433 127.0.0.1:57415 377281883 12 feffffff8a4201009b420100 .....B...B.. +5467 15.698601961 127.0.0.1:57415 127.0.0.1:57433 3333304300 12 feffffff9c4201008a420100 .....B...B.. +5471 15.721021652 127.0.0.1:57415 127.0.0.1:57433 3333304312 12 1a0000002f190b0000000000 ..../....... +5473 15.721204996 127.0.0.1:57415 127.0.0.1:57433 3333304324 26 16000000548f6340e25e3140010003000000af8a1f0000000000 ....T.c@.^1@.............. +5475 15.721722841 127.0.0.1:57433 127.0.0.1:57415 377281895 12 ffffffff2f190b0000000000 ..../....... +5477 15.721961260 127.0.0.1:57433 127.0.0.1:57415 377281907 12 1600000012f40a0000000000 ............ +5479 15.722123146 127.0.0.1:57433 127.0.0.1:57415 377281919 22 12000000af8a1f000000000001000300000000000000 ...................... +5481 15.722377539 127.0.0.1:57415 127.0.0.1:57433 3333304350 12 ffffffff12f40a0000000000 ............ +5484 15.824308872 127.0.0.1:57415 127.0.0.1:57433 3333304362 12 1a00000030190b0000000000 ....0....... +5486 15.824510336 127.0.0.1:57415 127.0.0.1:57433 3333304374 26 16000000548f6340e25e3140010003000000b18a1f0000000000 ....T.c@.^1@.............. +5488 15.824774981 127.0.0.1:57433 127.0.0.1:57415 377281941 12 ffffffff30190b0000000000 ....0....... +5490 15.825223684 127.0.0.1:57433 127.0.0.1:57415 377281953 12 1600000013f40a0000000000 ............ +5492 15.825436354 127.0.0.1:57433 127.0.0.1:57415 377281965 22 12000000b18a1f000000000001000300000000000000 ...................... +5494 15.825706244 127.0.0.1:57415 127.0.0.1:57433 3333304400 12 ffffffff13f40a0000000000 ............ +5501 15.906125069 127.0.0.1:57415 127.0.0.1:57433 3333304412 12 6500000031190b0000000000 e...1....... +5503 15.906352997 127.0.0.1:57415 127.0.0.1:57433 3333304424 101 1e0000001c2118d0c46f33bb010003000000e6100200000000008bcc22c39d01 .....!...o3.................".....?.....3...|8.. +5505 15.906780243 127.0.0.1:57433 127.0.0.1:57415 377281987 12 ffffffff31190b0000000000 ....1....... +5507 15.907769918 127.0.0.1:57433 127.0.0.1:57415 377281999 12 3400000014f40a0000000000 4........... +5509 15.907932043 127.0.0.1:57433 127.0.0.1:57415 377282011 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................r +5511 15.908274412 127.0.0.1:57415 127.0.0.1:57433 3333304525 12 ffffffff14f40a0000000000 ............ +5513 15.909056664 127.0.0.1:57415 127.0.0.1:57433 3333304537 12 1e00000032190b0000000000 ....2....... +5515 15.909201860 127.0.0.1:57415 127.0.0.1:57433 3333304549 30 1a00000055ceff62b21b3a50010003000000b38a1f000000000000000000 ....U..b..:P.................. +5517 15.909487963 127.0.0.1:57433 127.0.0.1:57415 377282063 12 ffffffff32190b0000000000 ....2....... +5519 15.909853458 127.0.0.1:57433 127.0.0.1:57415 377282075 12 1a00000015f40a0000000000 ............ +5521 15.909995079 127.0.0.1:57433 127.0.0.1:57415 377282087 26 16000000b38a1f00000000000100030000000000000000000000 .......................... +5523 15.910242081 127.0.0.1:57415 127.0.0.1:57433 3333304579 12 ffffffff15f40a0000000000 ............ +5525 15.927200079 127.0.0.1:57415 127.0.0.1:57433 3333304591 12 1a00000033190b0000000000 ....3....... +5527 15.927369595 127.0.0.1:57415 127.0.0.1:57433 3333304603 26 16000000548f6340e25e3140010003000000b58a1f0000000000 ....T.c@.^1@.............. +5529 15.927742243 127.0.0.1:57433 127.0.0.1:57415 377282113 12 ffffffff33190b0000000000 ....3....... +5531 15.928181648 127.0.0.1:57433 127.0.0.1:57415 377282125 12 1600000016f40a0000000000 ............ +5533 15.928325176 127.0.0.1:57433 127.0.0.1:57415 377282137 22 12000000b58a1f000000000001000300000000000000 ...................... +5535 15.928588867 127.0.0.1:57415 127.0.0.1:57433 3333304629 12 ffffffff16f40a0000000000 ............ +5542 16.031563282 127.0.0.1:57415 127.0.0.1:57433 3333304641 12 1a00000034190b0000000000 ....4....... +5544 16.031740665 127.0.0.1:57415 127.0.0.1:57433 3333304653 26 16000000548f6340e25e3140010003000000b78a1f0000000000 ....T.c@.^1@.............. +5546 16.032034397 127.0.0.1:57433 127.0.0.1:57415 377282159 12 ffffffff34190b0000000000 ....4....... +5548 16.032530785 127.0.0.1:57433 127.0.0.1:57415 377282171 12 1600000017f40a0000000000 ............ +5550 16.032690525 127.0.0.1:57433 127.0.0.1:57415 377282183 22 12000000b78a1f000000000001000300000000000000 ...................... +5552 16.032995462 127.0.0.1:57415 127.0.0.1:57433 3333304679 12 ffffffff17f40a0000000000 ............ +5561 16.134211779 127.0.0.1:57415 127.0.0.1:57433 3333304691 12 1a00000035190b0000000000 ....5....... +5563 16.134393692 127.0.0.1:57415 127.0.0.1:57433 3333304703 26 16000000548f6340e25e3140010003000000b98a1f0000000000 ....T.c@.^1@.............. +5565 16.134804487 127.0.0.1:57433 127.0.0.1:57415 377282205 12 ffffffff35190b0000000000 ....5....... +5567 16.135310888 127.0.0.1:57433 127.0.0.1:57415 377282217 12 1600000018f40a0000000000 ............ +5569 16.135504484 127.0.0.1:57433 127.0.0.1:57415 377282229 22 12000000b98a1f000000000001000300000000000000 ...................... +5571 16.135824203 127.0.0.1:57415 127.0.0.1:57433 3333304729 12 ffffffff18f40a0000000000 ............ +5573 16.136265039 127.0.0.1:57433 127.0.0.1:57415 377282251 12 feffffff8b4201009c420100 .....B...B.. +5579 16.199705839 127.0.0.1:57415 127.0.0.1:57433 3333304741 12 feffffff9d4201008b420100 .....B...B.. +5583 16.210539341 127.0.0.1:57415 127.0.0.1:57433 3333304753 12 6500000036190b0000000000 e...6....... +5585 16.210795641 127.0.0.1:57415 127.0.0.1:57433 3333304765 101 1e0000001c2118d0c46f33bb010003000000e710020000000000bbcd22c39d01 .....!...o3.................".....?.....3...|8.. +5587 16.211151361 127.0.0.1:57433 127.0.0.1:57415 377282263 12 ffffffff36190b0000000000 ....6....... +5589 16.214382648 127.0.0.1:57433 127.0.0.1:57415 377282275 12 3400000019f40a0000000000 4........... +5591 16.214614868 127.0.0.1:57433 127.0.0.1:57415 377282287 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................U.s +5593 16.214899778 127.0.0.1:57415 127.0.0.1:57433 3333304866 12 ffffffff19f40a0000000000 ............ +5595 16.215985298 127.0.0.1:57415 127.0.0.1:57433 3333304878 12 1e00000037190b0000000000 ....7....... +5597 16.216160059 127.0.0.1:57415 127.0.0.1:57433 3333304890 30 1a00000055ceff62b21b3a50010003000000bb8a1f000000000000000000 ....U..b..:P.................. +5599 16.216503859 127.0.0.1:57433 127.0.0.1:57415 377282339 12 ffffffff37190b0000000000 ....7....... +5601 16.216917038 127.0.0.1:57433 127.0.0.1:57415 377282351 12 1a0000001af40a0000000000 ............ +5603 16.217065334 127.0.0.1:57433 127.0.0.1:57415 377282363 26 16000000bb8a1f00000000000100030000000000000000000000 .......................... +5605 16.217405558 127.0.0.1:57415 127.0.0.1:57433 3333304920 12 ffffffff1af40a0000000000 ............ +5608 16.236715555 127.0.0.1:57415 127.0.0.1:57433 3333304932 12 1a00000038190b0000000000 ....8....... +5610 16.236903429 127.0.0.1:57415 127.0.0.1:57433 3333304944 26 16000000548f6340e25e3140010003000000bd8a1f0000000000 ....T.c@.^1@.............. +5612 16.237233400 127.0.0.1:57433 127.0.0.1:57415 377282389 12 ffffffff38190b0000000000 ....8....... +5614 16.237838507 127.0.0.1:57433 127.0.0.1:57415 377282401 12 160000001bf40a0000000000 ............ +5616 16.238010406 127.0.0.1:57433 127.0.0.1:57415 377282413 22 12000000bd8a1f000000000001000300000000000000 ...................... +5618 16.238286734 127.0.0.1:57415 127.0.0.1:57433 3333304970 12 ffffffff1bf40a0000000000 ............ +5620 16.340170860 127.0.0.1:57415 127.0.0.1:57433 3333304982 12 1a00000039190b0000000000 ....9....... +5622 16.340358734 127.0.0.1:57415 127.0.0.1:57433 3333304994 26 16000000548f6340e25e3140010003000000bf8a1f0000000000 ....T.c@.^1@.............. +5624 16.340725422 127.0.0.1:57433 127.0.0.1:57415 377282435 12 ffffffff39190b0000000000 ....9....... +5626 16.341194630 127.0.0.1:57433 127.0.0.1:57415 377282447 12 160000001cf40a0000000000 ............ +5628 16.341368437 127.0.0.1:57433 127.0.0.1:57415 377282459 22 12000000bf8a1f000000000001000300000000000000 ...................... +5630 16.342094183 127.0.0.1:57415 127.0.0.1:57433 3333305020 12 ffffffff1cf40a0000000000 ............ +5645 16.443053961 127.0.0.1:57415 127.0.0.1:57433 3333305032 12 1a0000003a190b0000000000 ....:....... +5647 16.443227768 127.0.0.1:57415 127.0.0.1:57433 3333305044 26 16000000548f6340e25e3140010003000000c18a1f0000000000 ....T.c@.^1@.............. +5649 16.443518877 127.0.0.1:57433 127.0.0.1:57415 377282481 12 ffffffff3a190b0000000000 ....:....... +5651 16.444050550 127.0.0.1:57433 127.0.0.1:57415 377282493 12 160000001df40a0000000000 ............ +5653 16.444222450 127.0.0.1:57433 127.0.0.1:57415 377282505 22 12000000c18a1f000000000001000300000000000000 ...................... +5655 16.444480419 127.0.0.1:57415 127.0.0.1:57433 3333305070 12 ffffffff1df40a0000000000 ............ +5662 16.517627239 127.0.0.1:57415 127.0.0.1:57433 3333305082 12 650000003b190b0000000000 e...;....... +5664 16.517856598 127.0.0.1:57415 127.0.0.1:57433 3333305094 101 1e0000001c2118d0c46f33bb010003000000e810020000000000efce22c39d01 .....!...o3.................".....?.....3...|8.. +5666 16.518374920 127.0.0.1:57433 127.0.0.1:57415 377282527 12 ffffffff3b190b0000000000 ....;....... +5668 16.519114256 127.0.0.1:57433 127.0.0.1:57415 377282539 12 340000001ef40a0000000000 4........... +5670 16.519279242 127.0.0.1:57433 127.0.0.1:57415 377282551 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................Fs +5672 16.519560575 127.0.0.1:57415 127.0.0.1:57433 3333305195 12 ffffffff1ef40a0000000000 ............ +5674 16.520364761 127.0.0.1:57415 127.0.0.1:57433 3333305207 12 1e0000003c190b0000000000 ....<....... +5676 16.520524502 127.0.0.1:57415 127.0.0.1:57433 3333305219 30 1a00000055ceff62b21b3a50010003000000c38a1f000000000000000000 ....U..b..:P.................. +5678 16.520838737 127.0.0.1:57433 127.0.0.1:57415 377282603 12 ffffffff3c190b0000000000 ....<....... +5680 16.521285057 127.0.0.1:57433 127.0.0.1:57415 377282615 12 1a0000001ff40a0000000000 ............ +5682 16.521436214 127.0.0.1:57433 127.0.0.1:57415 377282627 26 16000000c38a1f00000000000100030000000000000000000000 .......................... +5684 16.521705389 127.0.0.1:57415 127.0.0.1:57433 3333305249 12 ffffffff1ff40a0000000000 ............ +5686 16.546403885 127.0.0.1:57415 127.0.0.1:57433 3333305261 12 1a0000003d190b0000000000 ....=....... +5688 16.546566725 127.0.0.1:57415 127.0.0.1:57433 3333305273 26 16000000548f6340e25e3140010003000000c58a1f0000000000 ....T.c@.^1@.............. +5690 16.546893597 127.0.0.1:57433 127.0.0.1:57415 377282653 12 ffffffff3d190b0000000000 ....=....... +5692 16.547194719 127.0.0.1:57433 127.0.0.1:57415 377282665 12 1600000020f40a0000000000 .... ....... +5694 16.547364235 127.0.0.1:57433 127.0.0.1:57415 377282677 22 12000000c58a1f000000000001000300000000000000 ...................... +5696 16.547686338 127.0.0.1:57415 127.0.0.1:57433 3333305299 12 ffffffff20f40a0000000000 .... ....... +5704 16.636146307 127.0.0.1:57433 127.0.0.1:57415 377282699 12 feffffff8c4201009d420100 .....B...B.. +5708 16.649590254 127.0.0.1:57415 127.0.0.1:57433 3333305311 12 1a0000003e190b0000000000 ....>....... +5710 16.649758101 127.0.0.1:57415 127.0.0.1:57433 3333305323 26 16000000548f6340e25e3140010003000000c78a1f0000000000 ....T.c@.^1@.............. +5712 16.650130987 127.0.0.1:57433 127.0.0.1:57415 377282711 12 ffffffff3e190b0000000000 ....>....... +5714 16.650837421 127.0.0.1:57433 127.0.0.1:57415 377282723 12 1600000021f40a0000000000 ....!....... +5716 16.650985718 127.0.0.1:57433 127.0.0.1:57415 377282735 22 12000000c78a1f000000000001000300000000000000 ...................... +5718 16.651292801 127.0.0.1:57415 127.0.0.1:57433 3333305349 12 ffffffff21f40a0000000000 ....!....... +5742 16.701551914 127.0.0.1:57415 127.0.0.1:57433 3333305361 12 feffffff9e4201008c420100 .....B...B.. +5756 16.752706528 127.0.0.1:57415 127.0.0.1:57433 3333305373 12 1a0000003f190b0000000000 ....?....... +5758 16.752889395 127.0.0.1:57415 127.0.0.1:57433 3333305385 26 16000000548f6340e25e3140010003000000c98a1f0000000000 ....T.c@.^1@.............. +5760 16.753277302 127.0.0.1:57433 127.0.0.1:57415 377282757 12 ffffffff3f190b0000000000 ....?....... +5762 16.753730536 127.0.0.1:57433 127.0.0.1:57415 377282769 12 1600000022f40a0000000000 ...."....... +5764 16.753887415 127.0.0.1:57433 127.0.0.1:57415 377282781 22 12000000c98a1f000000000001000300000000000000 ...................... +5766 16.754135132 127.0.0.1:57415 127.0.0.1:57433 3333305411 12 ffffffff22f40a0000000000 ...."....... +5768 16.822273731 127.0.0.1:57415 127.0.0.1:57433 3333305423 12 2200000040190b0000000000 "...@....... +5770 16.822495222 127.0.0.1:57415 127.0.0.1:57433 3333305435 34 1e0000001c2118d0c46f33bb010003000000e91002000000000020d022c39d01 .....!...o3............... ."..... +5772 16.822683096 127.0.0.1:57415 127.0.0.1:57433 3333305469 12 4300000041190b0000000000 C...A....... +5774 16.822770357 127.0.0.1:57415 127.0.0.1:57433 3333305481 67 3f000000980433cb0cb47c380100030000000100000000e9100200000000003d ?.....3...|8...................=B.....&......... +5776 16.822905064 127.0.0.1:57433 127.0.0.1:57415 377282803 12 ffffffff40190b0000000000 ....@....... +5778 16.823111057 127.0.0.1:57433 127.0.0.1:57415 377282815 12 ffffffff41190b0000000000 ....A....... +5780 16.824179649 127.0.0.1:57433 127.0.0.1:57415 377282827 12 3400000023f40a0000000000 4...#....... +5782 16.824384928 127.0.0.1:57433 127.0.0.1:57415 377282839 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................bus +5784 16.824773550 127.0.0.1:57415 127.0.0.1:57433 3333305548 12 ffffffff23f40a0000000000 ....#....... +5786 16.825536489 127.0.0.1:57415 127.0.0.1:57433 3333305560 12 1e00000042190b0000000000 ....B....... +5788 16.825695038 127.0.0.1:57415 127.0.0.1:57433 3333305572 30 1a00000055ceff62b21b3a50010003000000cb8a1f000000000000000000 ....U..b..:P.................. +5790 16.826140165 127.0.0.1:57433 127.0.0.1:57415 377282891 12 ffffffff42190b0000000000 ....B....... +5792 16.826408386 127.0.0.1:57433 127.0.0.1:57415 377282903 12 1a00000024f40a0000000000 ....$....... +5794 16.826631784 127.0.0.1:57433 127.0.0.1:57415 377282915 26 16000000cb8a1f00000000000100030000000000000000000000 .......................... +5796 16.827013731 127.0.0.1:57415 127.0.0.1:57433 3333305602 12 ffffffff24f40a0000000000 ....$....... +5798 16.855489969 127.0.0.1:57415 127.0.0.1:57433 3333305614 12 1a00000043190b0000000000 ....C....... +5800 16.855669498 127.0.0.1:57415 127.0.0.1:57433 3333305626 26 16000000548f6340e25e3140010003000000cd8a1f0000000000 ....T.c@.^1@.............. +5802 16.856054068 127.0.0.1:57433 127.0.0.1:57415 377282941 12 ffffffff43190b0000000000 ....C....... +5804 16.856557846 127.0.0.1:57433 127.0.0.1:57415 377282953 12 1600000025f40a0000000000 ....%....... +5806 16.856717587 127.0.0.1:57433 127.0.0.1:57415 377282965 22 12000000cd8a1f000000000001000300000000000000 ...................... +5808 16.857044935 127.0.0.1:57415 127.0.0.1:57433 3333305652 12 ffffffff25f40a0000000000 ....%....... +5848 16.958849192 127.0.0.1:57415 127.0.0.1:57433 3333305664 12 1a00000044190b0000000000 ....D....... +5850 16.959024668 127.0.0.1:57415 127.0.0.1:57433 3333305676 26 16000000548f6340e25e3140010003000000cf8a1f0000000000 ....T.c@.^1@.............. +5852 16.959413290 127.0.0.1:57433 127.0.0.1:57415 377282987 12 ffffffff44190b0000000000 ....D....... +5854 16.959726572 127.0.0.1:57433 127.0.0.1:57415 377282999 12 1600000026f40a0000000000 ....&....... +5856 16.959885836 127.0.0.1:57433 127.0.0.1:57415 377283011 22 12000000cf8a1f000000000001000300000000000000 ...................... +5858 16.960294247 127.0.0.1:57415 127.0.0.1:57433 3333305702 12 ffffffff26f40a0000000000 ....&....... +5864 17.062957048 127.0.0.1:57415 127.0.0.1:57433 3333305714 12 1a00000045190b0000000000 ....E....... +5866 17.063147783 127.0.0.1:57415 127.0.0.1:57433 3333305726 26 16000000548f6340e25e3140010003000000d18a1f0000000000 ....T.c@.^1@.............. +5868 17.063394785 127.0.0.1:57433 127.0.0.1:57415 377283033 12 ffffffff45190b0000000000 ....E....... +5870 17.063912392 127.0.0.1:57433 127.0.0.1:57415 377283045 12 1600000027f40a0000000000 ....'....... +5872 17.064070940 127.0.0.1:57433 127.0.0.1:57415 377283057 22 12000000d18a1f000000000001000300000000000000 ...................... +5874 17.064422369 127.0.0.1:57415 127.0.0.1:57433 3333305752 12 ffffffff27f40a0000000000 ....'....... +5876 17.127306223 127.0.0.1:57415 127.0.0.1:57433 3333305764 12 2200000046190b0000000000 "...F....... +5878 17.127551317 127.0.0.1:57415 127.0.0.1:57433 3333305776 34 1e0000001c2118d0c46f33bb010003000000ea1002000000000050d122c39d01 .....!...o3...............P."..... +5880 17.127694845 127.0.0.1:57415 127.0.0.1:57433 3333305810 12 4300000047190b0000000000 C...G....... +5882 17.127778530 127.0.0.1:57415 127.0.0.1:57433 3333305822 67 3f000000980433cb0cb47c380100030000000100000000ea100200000000003d ?.....3...|8...................=B.....&......... +5884 17.127821684 127.0.0.1:57433 127.0.0.1:57415 377283079 12 ffffffff46190b0000000000 ....F....... +5888 17.128045559 127.0.0.1:57433 127.0.0.1:57415 377283091 12 ffffffff47190b0000000000 ....G....... +5890 17.129921198 127.0.0.1:57433 127.0.0.1:57415 377283103 12 3400000028f40a0000000000 4...(....... +5892 17.130116940 127.0.0.1:57433 127.0.0.1:57415 377283115 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............W..s +5894 17.130408049 127.0.0.1:57415 127.0.0.1:57433 3333305889 12 ffffffff28f40a0000000000 ....(....... +5896 17.131204367 127.0.0.1:57415 127.0.0.1:57433 3333305901 12 1e00000048190b0000000000 ....H....... +5899 17.131378412 127.0.0.1:57415 127.0.0.1:57433 3333305913 30 1a00000055ceff62b21b3a50010003000000d38a1f000000000000000000 ....U..b..:P.................. +5901 17.131908178 127.0.0.1:57433 127.0.0.1:57415 377283167 12 ffffffff48190b0000000000 ....H....... +5903 17.132127047 127.0.0.1:57433 127.0.0.1:57415 377283179 12 1a00000029f40a0000000000 ....)....... +5905 17.132280827 127.0.0.1:57433 127.0.0.1:57415 377283191 26 16000000d38a1f00000000000100030000000000000000000000 .......................... +5907 17.132677317 127.0.0.1:57415 127.0.0.1:57433 3333305943 12 ffffffff29f40a0000000000 ....)....... +5911 17.137059450 127.0.0.1:57433 127.0.0.1:57415 377283217 12 feffffff8d4201009e420100 .....B...B.. +5915 17.165914774 127.0.0.1:57415 127.0.0.1:57433 3333305955 12 1a00000049190b0000000000 ....I....... +5917 17.166082859 127.0.0.1:57415 127.0.0.1:57433 3333305967 26 16000000548f6340e25e3140010003000000d58a1f0000000000 ....T.c@.^1@.............. +5919 17.166487217 127.0.0.1:57433 127.0.0.1:57415 377283229 12 ffffffff49190b0000000000 ....I....... +5921 17.166855335 127.0.0.1:57433 127.0.0.1:57415 377283241 12 160000002af40a0000000000 ....*....... +5923 17.167017937 127.0.0.1:57433 127.0.0.1:57415 377283253 22 12000000d58a1f000000000001000300000000000000 ...................... +5925 17.167327404 127.0.0.1:57415 127.0.0.1:57433 3333305993 12 ffffffff2af40a0000000000 ....*....... +5929 17.203077078 127.0.0.1:57415 127.0.0.1:57433 3333306005 12 feffffff9f4201008d420100 .....B...B.. +5939 17.268981934 127.0.0.1:57415 127.0.0.1:57433 3333306017 12 1a0000004a190b0000000000 ....J....... +5941 17.269275904 127.0.0.1:57415 127.0.0.1:57433 3333306029 26 16000000548f6340e25e3140010003000000d78a1f0000000000 ....T.c@.^1@.............. +5943 17.269868851 127.0.0.1:57433 127.0.0.1:57415 377283275 12 ffffffff4a190b0000000000 ....J....... +5945 17.270402670 127.0.0.1:57433 127.0.0.1:57415 377283287 12 160000002bf40a0000000000 ....+....... +5947 17.270560741 127.0.0.1:57433 127.0.0.1:57415 377283299 22 12000000d78a1f000000000001000300000000000000 ...................... +5949 17.270883322 127.0.0.1:57415 127.0.0.1:57433 3333306055 12 ffffffff2bf40a0000000000 ....+....... +5981 17.373912811 127.0.0.1:57415 127.0.0.1:57433 3333306067 12 1a0000004b190b0000000000 ....K....... +5983 17.374217749 127.0.0.1:57415 127.0.0.1:57433 3333306079 26 16000000548f6340e25e3140010003000000d98a1f0000000000 ....T.c@.^1@.............. +5987 17.374552011 127.0.0.1:57433 127.0.0.1:57415 377283321 12 ffffffff4b190b0000000000 ....K....... +5989 17.375104427 127.0.0.1:57433 127.0.0.1:57415 377283333 12 160000002cf40a0000000000 ....,....... +5991 17.375266075 127.0.0.1:57433 127.0.0.1:57415 377283345 22 12000000d98a1f000000000001000300000000000000 ...................... +5993 17.375568867 127.0.0.1:57415 127.0.0.1:57433 3333306105 12 ffffffff2cf40a0000000000 ....,....... +5997 17.431974173 127.0.0.1:57415 127.0.0.1:57433 3333306117 12 220000004c190b0000000000 "...L....... +5999 17.432189226 127.0.0.1:57415 127.0.0.1:57433 3333306129 34 1e0000001c2118d0c46f33bb010003000000eb1002000000000081d222c39d01 .....!...o3................."..... +6001 17.432353735 127.0.0.1:57415 127.0.0.1:57433 3333306163 12 430000004d190b0000000000 C...M....... +6003 17.432438850 127.0.0.1:57415 127.0.0.1:57433 3333306175 67 3f000000980433cb0cb47c380100030000000100000000eb100200000000003d ?.....3...|8...................=B.....&......... +6004 17.432516336 127.0.0.1:57433 127.0.0.1:57415 377283367 12 ffffffff4c190b0000000000 ....L....... +6005 17.432611465 127.0.0.1:57433 127.0.0.1:57415 377283379 12 ffffffff4d190b0000000000 ....M....... +6008 17.433598280 127.0.0.1:57433 127.0.0.1:57415 377283391 12 340000002df40a0000000000 4...-....... +6010 17.433762312 127.0.0.1:57433 127.0.0.1:57415 377283403 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................_.s +6012 17.434022188 127.0.0.1:57415 127.0.0.1:57433 3333306242 12 ffffffff2df40a0000000000 ....-....... +6013 17.434865236 127.0.0.1:57415 127.0.0.1:57433 3333306254 12 1e0000004e190b0000000000 ....N....... +6014 17.434973240 127.0.0.1:57415 127.0.0.1:57433 3333306266 30 1a00000055ceff62b21b3a50010003000000db8a1f000000000000000000 ....U..b..:P.................. +6015 17.435231924 127.0.0.1:57433 127.0.0.1:57415 377283455 12 ffffffff4e190b0000000000 ....N....... +6017 17.435690641 127.0.0.1:57433 127.0.0.1:57415 377283467 12 1a0000002ef40a0000000000 ............ +6019 17.435832262 127.0.0.1:57433 127.0.0.1:57415 377283479 26 16000000db8a1f00000000000100030000000000000000000000 .......................... +6021 17.436079264 127.0.0.1:57415 127.0.0.1:57433 3333306296 12 ffffffff2ef40a0000000000 ............ +6023 17.477047205 127.0.0.1:57415 127.0.0.1:57433 3333306308 12 1a0000004f190b0000000000 ....O....... +6025 17.477310658 127.0.0.1:57415 127.0.0.1:57433 3333306320 26 16000000548f6340e25e3140010003000000dd8a1f0000000000 ....T.c@.^1@.............. +6027 17.477632046 127.0.0.1:57433 127.0.0.1:57415 377283505 12 ffffffff4f190b0000000000 ....O....... +6029 17.478207350 127.0.0.1:57433 127.0.0.1:57415 377283517 12 160000002ff40a0000000000 ..../....... +6031 17.478365660 127.0.0.1:57433 127.0.0.1:57415 377283529 22 12000000dd8a1f000000000001000300000000000000 ...................... +6033 17.478641033 127.0.0.1:57415 127.0.0.1:57433 3333306346 12 ffffffff2ff40a0000000000 ..../....... +6040 17.580862522 127.0.0.1:57415 127.0.0.1:57433 3333306358 12 1a00000050190b0000000000 ....P....... +6042 17.581089973 127.0.0.1:57415 127.0.0.1:57433 3333306370 26 16000000548f6340e25e3140010003000000df8a1f0000000000 ....T.c@.^1@.............. +6044 17.581413746 127.0.0.1:57433 127.0.0.1:57415 377283551 12 ffffffff50190b0000000000 ....P....... +6046 17.581808567 127.0.0.1:57433 127.0.0.1:57415 377283563 12 1600000030f40a0000000000 ....0....... +6048 17.582221985 127.0.0.1:57433 127.0.0.1:57415 377283575 22 12000000df8a1f000000000001000300000000000000 ...................... +6050 17.582466364 127.0.0.1:57415 127.0.0.1:57433 3333306396 12 ffffffff30f40a0000000000 ....0....... +6059 17.637427568 127.0.0.1:57433 127.0.0.1:57415 377283597 12 feffffff8e4201009f420100 .....B...B.. +6063 17.684134960 127.0.0.1:57415 127.0.0.1:57433 3333306408 12 1a00000051190b0000000000 ....Q....... +6065 17.684310198 127.0.0.1:57415 127.0.0.1:57433 3333306420 26 16000000548f6340e25e3140010003000000e18a1f0000000000 ....T.c@.^1@.............. +6067 17.684638739 127.0.0.1:57433 127.0.0.1:57415 377283609 12 ffffffff51190b0000000000 ....Q....... +6069 17.685116053 127.0.0.1:57433 127.0.0.1:57415 377283621 12 1600000031f40a0000000000 ....1....... +6071 17.685276985 127.0.0.1:57433 127.0.0.1:57415 377283633 22 12000000e18a1f000000000001000300000000000000 ...................... +6073 17.685539246 127.0.0.1:57415 127.0.0.1:57433 3333306446 12 ffffffff31f40a0000000000 ....1....... +6077 17.704536200 127.0.0.1:57415 127.0.0.1:57433 3333306458 12 feffffffa04201008e420100 .....B...B.. +6082 17.735694408 127.0.0.1:57415 127.0.0.1:57433 3333306470 12 6500000052190b0000000000 e...R....... +6084 17.735912085 127.0.0.1:57415 127.0.0.1:57433 3333306482 101 1e0000001c2118d0c46f33bb010003000000ec10020000000000b1d322c39d01 .....!...o3.................".....?.....3...|8.. +6086 17.736230135 127.0.0.1:57433 127.0.0.1:57415 377283655 12 ffffffff52190b0000000000 ....R....... +6088 17.737238646 127.0.0.1:57433 127.0.0.1:57415 377283667 12 3400000032f40a0000000000 4...2....... +6090 17.737425327 127.0.0.1:57433 127.0.0.1:57415 377283679 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................t +6092 17.737700939 127.0.0.1:57415 127.0.0.1:57433 3333306583 12 ffffffff32f40a0000000000 ....2....... +6094 17.738464832 127.0.0.1:57415 127.0.0.1:57433 3333306595 12 1e00000053190b0000000000 ....S....... +6096 17.738607407 127.0.0.1:57415 127.0.0.1:57433 3333306607 30 1a00000055ceff62b21b3a50010003000000e38a1f000000000000000000 ....U..b..:P.................. +6098 17.738964081 127.0.0.1:57433 127.0.0.1:57415 377283731 12 ffffffff53190b0000000000 ....S....... +6100 17.739260435 127.0.0.1:57433 127.0.0.1:57415 377283743 12 1a00000033f40a0000000000 ....3....... +6102 17.739420414 127.0.0.1:57433 127.0.0.1:57415 377283755 26 16000000e38a1f00000000000100030000000000000000000000 .......................... +6104 17.739603519 127.0.0.1:57415 127.0.0.1:57433 3333306637 12 ffffffff33f40a0000000000 ....3....... +6106 17.787245512 127.0.0.1:57415 127.0.0.1:57433 3333306649 12 1a00000054190b0000000000 ....T....... +6108 17.787415981 127.0.0.1:57415 127.0.0.1:57433 3333306661 26 16000000548f6340e25e3140010003000000e58a1f0000000000 ....T.c@.^1@.............. +6110 17.787762642 127.0.0.1:57433 127.0.0.1:57415 377283781 12 ffffffff54190b0000000000 ....T....... +6112 17.788171291 127.0.0.1:57433 127.0.0.1:57415 377283793 12 1600000034f40a0000000000 ....4....... +6114 17.788326502 127.0.0.1:57433 127.0.0.1:57415 377283805 22 12000000e58a1f000000000001000300000000000000 ...................... +6116 17.788580656 127.0.0.1:57415 127.0.0.1:57433 3333306687 12 ffffffff34f40a0000000000 ....4....... +6123 17.890122652 127.0.0.1:57415 127.0.0.1:57433 3333306699 12 1a00000055190b0000000000 ....U....... +6125 17.890326262 127.0.0.1:57415 127.0.0.1:57433 3333306711 26 16000000548f6340e25e3140010003000000e78a1f0000000000 ....T.c@.^1@.............. +6127 17.890631199 127.0.0.1:57433 127.0.0.1:57415 377283827 12 ffffffff55190b0000000000 ....U....... +6129 17.891173124 127.0.0.1:57433 127.0.0.1:57415 377283839 12 1600000035f40a0000000000 ....5....... +6131 17.891346455 127.0.0.1:57433 127.0.0.1:57415 377283851 22 12000000e78a1f000000000001000300000000000000 ...................... +6133 17.891751766 127.0.0.1:57415 127.0.0.1:57433 3333306737 12 ffffffff35f40a0000000000 ....5....... +6138 17.994059801 127.0.0.1:57415 127.0.0.1:57433 3333306749 12 1a00000056190b0000000000 ....V....... +6140 17.994261265 127.0.0.1:57415 127.0.0.1:57433 3333306761 26 16000000548f6340e25e3140010003000000e98a1f0000000000 ....T.c@.^1@.............. +6142 17.994599342 127.0.0.1:57433 127.0.0.1:57415 377283873 12 ffffffff56190b0000000000 ....V....... +6144 17.994991064 127.0.0.1:57433 127.0.0.1:57415 377283885 12 1600000036f40a0000000000 ....6....... +6146 17.995148182 127.0.0.1:57433 127.0.0.1:57415 377283897 22 12000000e98a1f000000000001000300000000000000 ...................... +6148 17.995465755 127.0.0.1:57415 127.0.0.1:57433 3333306787 12 ffffffff36f40a0000000000 ....6....... +6152 18.040245056 127.0.0.1:57415 127.0.0.1:57433 3333306799 12 6500000057190b0000000000 e...W....... +6154 18.040439367 127.0.0.1:57415 127.0.0.1:57433 3333306811 101 1e0000001c2118d0c46f33bb010003000000ed10020000000000e1d422c39d01 .....!...o3.................".....?.....3...|8.. +6156 18.040746927 127.0.0.1:57433 127.0.0.1:57415 377283919 12 ffffffff57190b0000000000 ....W....... +6158 18.041822910 127.0.0.1:57433 127.0.0.1:57415 377283931 12 3400000037f40a0000000000 4...7....... +6160 18.041985512 127.0.0.1:57433 127.0.0.1:57415 377283943 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............%//t +6162 18.042240381 127.0.0.1:57415 127.0.0.1:57433 3333306912 12 ffffffff37f40a0000000000 ....7....... +6164 18.043069839 127.0.0.1:57415 127.0.0.1:57433 3333306924 12 1e00000058190b0000000000 ....X....... +6166 18.043213606 127.0.0.1:57415 127.0.0.1:57433 3333306936 30 1a00000055ceff62b21b3a50010003000000eb8a1f000000000000000000 ....U..b..:P.................. +6168 18.043521166 127.0.0.1:57433 127.0.0.1:57415 377283995 12 ffffffff58190b0000000000 ....X....... +6170 18.043893337 127.0.0.1:57433 127.0.0.1:57415 377284007 12 1a00000038f40a0000000000 ....8....... +6172 18.044064522 127.0.0.1:57433 127.0.0.1:57415 377284019 26 16000000eb8a1f00000000000100030000000000000000000000 .......................... +6174 18.044317245 127.0.0.1:57415 127.0.0.1:57433 3333306966 12 ffffffff38f40a0000000000 ....8....... +6177 18.097199440 127.0.0.1:57415 127.0.0.1:57433 3333306978 12 1a00000059190b0000000000 ....Y....... +6179 18.097370148 127.0.0.1:57415 127.0.0.1:57433 3333306990 26 16000000548f6340e25e3140010003000000ed8a1f0000000000 ....T.c@.^1@.............. +6181 18.097785711 127.0.0.1:57433 127.0.0.1:57415 377284045 12 ffffffff59190b0000000000 ....Y....... +6183 18.098194838 127.0.0.1:57433 127.0.0.1:57415 377284057 12 1600000039f40a0000000000 ....9....... +6185 18.098359585 127.0.0.1:57433 127.0.0.1:57415 377284069 22 12000000ed8a1f000000000001000300000000000000 ...................... +6187 18.098710775 127.0.0.1:57415 127.0.0.1:57433 3333307016 12 ffffffff39f40a0000000000 ....9....... +6195 18.139170647 127.0.0.1:57433 127.0.0.1:57415 377284091 12 feffffff8f420100a0420100 .....B...B.. +6202 18.201484680 127.0.0.1:57415 127.0.0.1:57433 3333307028 12 1a0000005a190b0000000000 ....Z....... +6204 18.201673269 127.0.0.1:57415 127.0.0.1:57433 3333307040 26 16000000548f6340e25e3140010003000000ef8a1f0000000000 ....T.c@.^1@.............. +6206 18.201973677 127.0.0.1:57433 127.0.0.1:57415 377284103 12 ffffffff5a190b0000000000 ....Z....... +6208 18.202815056 127.0.0.1:57433 127.0.0.1:57415 377284115 12 160000003af40a0000000000 ....:....... +6210 18.203058481 127.0.0.1:57433 127.0.0.1:57415 377284127 22 12000000ef8a1f000000000001000300000000000000 ...................... +6212 18.203348160 127.0.0.1:57415 127.0.0.1:57433 3333307066 12 ffffffff3af40a0000000000 ....:....... +6214 18.205144644 127.0.0.1:57415 127.0.0.1:57433 3333307078 12 feffffffa14201008f420100 .....B...B.. +6219 18.305126429 127.0.0.1:57415 127.0.0.1:57433 3333307090 12 1a0000005b190b0000000000 ....[....... +6221 18.305317640 127.0.0.1:57415 127.0.0.1:57433 3333307102 26 16000000548f6340e25e3140010003000000f18a1f0000000000 ....T.c@.^1@.............. +6223 18.305656195 127.0.0.1:57433 127.0.0.1:57415 377284149 12 ffffffff5b190b0000000000 ....[....... +6225 18.306116581 127.0.0.1:57433 127.0.0.1:57415 377284161 12 160000003bf40a0000000000 ....;....... +6227 18.306277037 127.0.0.1:57433 127.0.0.1:57415 377284173 22 12000000f18a1f000000000001000300000000000000 ...................... +6229 18.306560755 127.0.0.1:57415 127.0.0.1:57433 3333307128 12 ffffffff3bf40a0000000000 ....;....... +6231 18.345849037 127.0.0.1:57415 127.0.0.1:57433 3333307140 12 650000005c190b0000000000 e...\....... +6233 18.346031666 127.0.0.1:57415 127.0.0.1:57433 3333307152 101 1e0000001c2118d0c46f33bb010003000000ee1002000000000013d622c39d01 .....!...o3.................".....?.....3...|8.. +6235 18.346370459 127.0.0.1:57433 127.0.0.1:57415 377284195 12 ffffffff5c190b0000000000 ....\....... +6237 18.347269773 127.0.0.1:57433 127.0.0.1:57415 377284207 12 340000003cf40a0000000000 4...<....... +6239 18.347430229 127.0.0.1:57433 127.0.0.1:57415 377284219 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............z.]t +6241 18.347787142 127.0.0.1:57415 127.0.0.1:57433 3333307253 12 ffffffff3cf40a0000000000 ....<....... +6243 18.348586798 127.0.0.1:57415 127.0.0.1:57433 3333307265 12 1e0000005d190b0000000000 ....]....... +6245 18.348731756 127.0.0.1:57415 127.0.0.1:57433 3333307277 30 1a00000055ceff62b21b3a50010003000000f38a1f000000000000000000 ....U..b..:P.................. +6247 18.349039793 127.0.0.1:57433 127.0.0.1:57415 377284271 12 ffffffff5d190b0000000000 ....]....... +6249 18.349469900 127.0.0.1:57433 127.0.0.1:57415 377284283 12 1a0000003df40a0000000000 ....=....... +6251 18.349627256 127.0.0.1:57433 127.0.0.1:57415 377284295 26 16000000f38a1f00000000000100030000000000000000000000 .......................... +6253 18.349904299 127.0.0.1:57415 127.0.0.1:57433 3333307307 12 ffffffff3df40a0000000000 ....=....... +6260 18.409474611 127.0.0.1:57415 127.0.0.1:57433 3333307319 12 1a0000005e190b0000000000 ....^....... +6262 18.409713745 127.0.0.1:57415 127.0.0.1:57433 3333307331 26 16000000548f6340e25e3140010003000000f58a1f0000000000 ....T.c@.^1@.............. +6264 18.410013437 127.0.0.1:57433 127.0.0.1:57415 377284321 12 ffffffff5e190b0000000000 ....^....... +6266 18.410338879 127.0.0.1:57433 127.0.0.1:57415 377284333 12 160000003ef40a0000000000 ....>....... +6268 18.410497904 127.0.0.1:57433 127.0.0.1:57415 377284345 22 12000000f58a1f000000000001000300000000000000 ...................... +6270 18.410834074 127.0.0.1:57415 127.0.0.1:57433 3333307357 12 ffffffff3ef40a0000000000 ....>....... +6277 18.512535810 127.0.0.1:57415 127.0.0.1:57433 3333307369 12 1a0000005f190b0000000000 ...._....... +6279 18.512708902 127.0.0.1:57415 127.0.0.1:57433 3333307381 26 16000000548f6340e25e3140010003000000f78a1f0000000000 ....T.c@.^1@.............. +6281 18.513075829 127.0.0.1:57433 127.0.0.1:57415 377284367 12 ffffffff5f190b0000000000 ...._....... +6283 18.513543844 127.0.0.1:57433 127.0.0.1:57415 377284379 12 160000003ff40a0000000000 ....?....... +6285 18.513704538 127.0.0.1:57433 127.0.0.1:57415 377284391 22 12000000f78a1f000000000001000300000000000000 ...................... +6287 18.513997316 127.0.0.1:57415 127.0.0.1:57433 3333307407 12 ffffffff3ff40a0000000000 ....?....... +6290 18.615626335 127.0.0.1:57415 127.0.0.1:57433 3333307419 12 1a00000060190b0000000000 ....`....... +6292 18.615812778 127.0.0.1:57415 127.0.0.1:57433 3333307431 26 16000000548f6340e25e3140010003000000f98a1f0000000000 ....T.c@.^1@.............. +6294 18.616174936 127.0.0.1:57433 127.0.0.1:57415 377284413 12 ffffffff60190b0000000000 ....`....... +6296 18.616640806 127.0.0.1:57433 127.0.0.1:57415 377284425 12 1600000040f40a0000000000 ....@....... +6298 18.616800070 127.0.0.1:57433 127.0.0.1:57415 377284437 22 12000000f98a1f000000000001000300000000000000 ...................... +6300 18.617214203 127.0.0.1:57415 127.0.0.1:57433 3333307457 12 ffffffff40f40a0000000000 ....@....... +6308 18.640247107 127.0.0.1:57433 127.0.0.1:57415 377284459 12 feffffff90420100a1420100 .....B...B.. +6310 18.649621964 127.0.0.1:57415 127.0.0.1:57433 3333307469 12 2200000061190b0000000000 "...a....... +6312 18.649819136 127.0.0.1:57415 127.0.0.1:57433 3333307481 34 1e0000001c2118d0c46f33bb010003000000ef1002000000000043d722c39d01 .....!...o3...............C."..... +6314 18.649984360 127.0.0.1:57415 127.0.0.1:57433 3333307515 12 4300000062190b0000000000 C...b....... +6316 18.650068283 127.0.0.1:57415 127.0.0.1:57433 3333307527 67 3f000000980433cb0cb47c380100030000000100000000ef100200000000003d ?.....3...|8...................=B.....&......... +6318 18.650167465 127.0.0.1:57433 127.0.0.1:57415 377284471 12 ffffffff61190b0000000000 ....a....... +6320 18.650335789 127.0.0.1:57433 127.0.0.1:57415 377284483 12 ffffffff62190b0000000000 ....b....... +6322 18.650936842 127.0.0.1:57433 127.0.0.1:57415 377284495 12 3400000041f40a0000000000 4...A....... +6324 18.651128054 127.0.0.1:57433 127.0.0.1:57415 377284507 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................t +6326 18.651447535 127.0.0.1:57415 127.0.0.1:57433 3333307594 12 ffffffff41f40a0000000000 ....A....... +6328 18.652218342 127.0.0.1:57415 127.0.0.1:57433 3333307606 12 1e00000063190b0000000000 ....c....... +6330 18.652352810 127.0.0.1:57415 127.0.0.1:57433 3333307618 30 1a00000055ceff62b21b3a50010003000000fb8a1f000000000000000000 ....U..b..:P.................. +6332 18.652793407 127.0.0.1:57433 127.0.0.1:57415 377284559 12 ffffffff63190b0000000000 ....c....... +6334 18.653519869 127.0.0.1:57433 127.0.0.1:57415 377284571 12 1a00000042f40a0000000000 ....B....... +6336 18.653805733 127.0.0.1:57433 127.0.0.1:57415 377284583 26 16000000fb8a1f00000000000100030000000000000000000000 .......................... +6338 18.654326677 127.0.0.1:57415 127.0.0.1:57433 3333307648 12 ffffffff42f40a0000000000 ....B....... +6344 18.706198931 127.0.0.1:57415 127.0.0.1:57433 3333307660 12 feffffffa242010090420100 .....B...B.. +6349 18.719641685 127.0.0.1:57415 127.0.0.1:57433 3333307672 12 1a00000064190b0000000000 ....d....... +6351 18.719812632 127.0.0.1:57415 127.0.0.1:57433 3333307684 26 16000000548f6340e25e3140010003000000fd8a1f0000000000 ....T.c@.^1@.............. +6353 18.720163822 127.0.0.1:57433 127.0.0.1:57415 377284609 12 ffffffff64190b0000000000 ....d....... +6355 18.720589161 127.0.0.1:57433 127.0.0.1:57415 377284621 12 1600000043f40a0000000000 ....C....... +6357 18.720866680 127.0.0.1:57433 127.0.0.1:57415 377284633 22 12000000fd8a1f000000000001000300000000000000 ...................... +6359 18.721292496 127.0.0.1:57415 127.0.0.1:57433 3333307710 12 ffffffff43f40a0000000000 ....C....... +6361 18.822988510 127.0.0.1:57415 127.0.0.1:57433 3333307722 12 1a00000065190b0000000000 ....e....... +6363 18.823217630 127.0.0.1:57415 127.0.0.1:57433 3333307734 26 16000000548f6340e25e3140010003000000ff8a1f0000000000 ....T.c@.^1@.............. +6365 18.823543549 127.0.0.1:57433 127.0.0.1:57415 377284655 12 ffffffff65190b0000000000 ....e....... +6367 18.824075937 127.0.0.1:57433 127.0.0.1:57415 377284667 12 1600000044f40a0000000000 ....D....... +6369 18.824277163 127.0.0.1:57433 127.0.0.1:57415 377284679 22 12000000ff8a1f000000000001000300000000000000 ...................... +6371 18.824619770 127.0.0.1:57415 127.0.0.1:57433 3333307760 12 ffffffff44f40a0000000000 ....D....... +6377 18.926496029 127.0.0.1:57415 127.0.0.1:57433 3333307772 12 1a00000066190b0000000000 ....f....... +6379 18.926706553 127.0.0.1:57415 127.0.0.1:57433 3333307784 26 16000000548f6340e25e3140010003000000018b1f0000000000 ....T.c@.^1@.............. +6381 18.927125692 127.0.0.1:57433 127.0.0.1:57415 377284701 12 ffffffff66190b0000000000 ....f....... +6383 18.927505970 127.0.0.1:57433 127.0.0.1:57415 377284713 12 1600000045f40a0000000000 ....E....... +6385 18.927666903 127.0.0.1:57433 127.0.0.1:57415 377284725 22 12000000018b1f000000000001000300000000000000 ...................... +6387 18.928062439 127.0.0.1:57415 127.0.0.1:57433 3333307810 12 ffffffff45f40a0000000000 ....E....... +6389 18.954504251 127.0.0.1:57415 127.0.0.1:57433 3333307822 12 2200000067190b0000000000 "...g....... +6391 18.954688549 127.0.0.1:57415 127.0.0.1:57433 3333307834 34 1e0000001c2118d0c46f33bb010003000000f01002000000000074d822c39d01 .....!...o3...............t."..... +6393 18.954826355 127.0.0.1:57415 127.0.0.1:57433 3333307868 12 4300000068190b0000000000 C...h....... +6395 18.954910040 127.0.0.1:57415 127.0.0.1:57433 3333307880 67 3f000000980433cb0cb47c380100030000000100000000f0100200000000003d ?.....3...|8...................=B.....&......... +6397 18.955063343 127.0.0.1:57433 127.0.0.1:57415 377284747 12 ffffffff67190b0000000000 ....g....... +6399 18.955244780 127.0.0.1:57433 127.0.0.1:57415 377284759 12 ffffffff68190b0000000000 ....h....... +6401 18.956256151 127.0.0.1:57433 127.0.0.1:57415 377284771 12 3400000046f40a0000000000 4...F....... +6403 18.956471205 127.0.0.1:57433 127.0.0.1:57415 377284783 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................t +6405 18.956827402 127.0.0.1:57415 127.0.0.1:57433 3333307947 12 ffffffff46f40a0000000000 ....F....... +6407 18.957518816 127.0.0.1:57415 127.0.0.1:57433 3333307959 12 1e00000069190b0000000000 ....i....... +6409 18.957690716 127.0.0.1:57415 127.0.0.1:57433 3333307971 30 1a00000055ceff62b21b3a50010003000000038b1f000000000000000000 ....U..b..:P.................. +6411 18.958009005 127.0.0.1:57433 127.0.0.1:57415 377284835 12 ffffffff69190b0000000000 ....i....... +6413 18.958442688 127.0.0.1:57433 127.0.0.1:57415 377284847 12 1a00000047f40a0000000000 ....G....... +6415 18.958648205 127.0.0.1:57433 127.0.0.1:57415 377284859 26 16000000038b1f00000000000100030000000000000000000000 .......................... +6417 18.958984852 127.0.0.1:57415 127.0.0.1:57433 3333308001 12 ffffffff47f40a0000000000 ....G....... +6423 19.029448271 127.0.0.1:57415 127.0.0.1:57433 3333308013 12 1a0000006a190b0000000000 ....j....... +6425 19.029613495 127.0.0.1:57415 127.0.0.1:57433 3333308025 26 16000000548f6340e25e3140010003000000058b1f0000000000 ....T.c@.^1@.............. +6427 19.029980421 127.0.0.1:57433 127.0.0.1:57415 377284885 12 ffffffff6a190b0000000000 ....j....... +6429 19.030352116 127.0.0.1:57433 127.0.0.1:57415 377284897 12 1600000048f40a0000000000 ....H....... +6431 19.030523300 127.0.0.1:57433 127.0.0.1:57415 377284909 22 12000000058b1f000000000001000300000000000000 ...................... +6433 19.030856133 127.0.0.1:57415 127.0.0.1:57433 3333308051 12 ffffffff48f40a0000000000 ....H....... +6437 19.132283449 127.0.0.1:57415 127.0.0.1:57433 3333308063 12 1a0000006b190b0000000000 ....k....... +6440 19.132462502 127.0.0.1:57415 127.0.0.1:57433 3333308075 26 16000000548f6340e25e3140010003000000078b1f0000000000 ....T.c@.^1@.............. +6443 19.132657766 127.0.0.1:57433 127.0.0.1:57415 377284931 12 ffffffff6b190b0000000000 ....k....... +6445 19.133239746 127.0.0.1:57433 127.0.0.1:57415 377284943 12 1600000049f40a0000000000 ....I....... +6447 19.133409023 127.0.0.1:57433 127.0.0.1:57415 377284955 22 12000000078b1f000000000001000300000000000000 ...................... +6449 19.133676529 127.0.0.1:57415 127.0.0.1:57433 3333308101 12 ffffffff49f40a0000000000 ....I....... +6453 19.140251398 127.0.0.1:57433 127.0.0.1:57415 377284977 12 feffffff91420100a2420100 .....B...B.. +6513 19.206976652 127.0.0.1:57415 127.0.0.1:57433 3333308113 12 feffffffa342010091420100 .....B...B.. +6535 19.236342907 127.0.0.1:57415 127.0.0.1:57433 3333308125 12 1a0000006c190b0000000000 ....l....... +6537 19.236505270 127.0.0.1:57415 127.0.0.1:57433 3333308137 26 16000000548f6340e25e3140010003000000098b1f0000000000 ....T.c@.^1@.............. +6539 19.236910820 127.0.0.1:57433 127.0.0.1:57415 377284989 12 ffffffff6c190b0000000000 ....l....... +6541 19.237344742 127.0.0.1:57433 127.0.0.1:57415 377285001 12 160000004af40a0000000000 ....J....... +6543 19.237511158 127.0.0.1:57433 127.0.0.1:57415 377285013 22 12000000098b1f000000000001000300000000000000 ...................... +6545 19.237806559 127.0.0.1:57415 127.0.0.1:57433 3333308163 12 ffffffff4af40a0000000000 ....J....... +6547 19.258690834 127.0.0.1:57415 127.0.0.1:57433 3333308175 12 650000006d190b0000000000 e...m....... +6549 19.258913279 127.0.0.1:57415 127.0.0.1:57433 3333308187 101 1e0000001c2118d0c46f33bb010003000000f110020000000000a4d922c39d01 .....!...o3.................".....?.....3...|8.. +6551 19.259228706 127.0.0.1:57433 127.0.0.1:57415 377285035 12 ffffffff6d190b0000000000 ....m....... +6553 19.260128021 127.0.0.1:57433 127.0.0.1:57415 377285047 12 340000004bf40a0000000000 4...K....... +6555 19.260292768 127.0.0.1:57433 127.0.0.1:57415 377285059 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................t +6557 19.260552168 127.0.0.1:57415 127.0.0.1:57433 3333308288 12 ffffffff4bf40a0000000000 ....K....... +6559 19.261433125 127.0.0.1:57415 127.0.0.1:57433 3333308300 12 1e0000006e190b0000000000 ....n....... +6561 19.261583328 127.0.0.1:57415 127.0.0.1:57433 3333308312 30 1a00000055ceff62b21b3a500100030000000b8b1f000000000000000000 ....U..b..:P.................. +6563 19.261861086 127.0.0.1:57433 127.0.0.1:57415 377285111 12 ffffffff6e190b0000000000 ....n....... +6565 19.262186766 127.0.0.1:57433 127.0.0.1:57415 377285123 12 1a0000004cf40a0000000000 ....L....... +6567 19.262419939 127.0.0.1:57433 127.0.0.1:57415 377285135 26 160000000b8b1f00000000000100030000000000000000000000 .......................... +6569 19.262666941 127.0.0.1:57415 127.0.0.1:57433 3333308342 12 ffffffff4cf40a0000000000 ....L....... +6571 19.339365005 127.0.0.1:57415 127.0.0.1:57433 3333308354 12 1a0000006f190b0000000000 ....o....... +6573 19.339547396 127.0.0.1:57415 127.0.0.1:57433 3333308366 26 16000000548f6340e25e31400100030000000d8b1f0000000000 ....T.c@.^1@.............. +6575 19.339895725 127.0.0.1:57433 127.0.0.1:57415 377285161 12 ffffffff6f190b0000000000 ....o....... +6577 19.340481043 127.0.0.1:57433 127.0.0.1:57415 377285173 12 160000004df40a0000000000 ....M....... +6579 19.340690136 127.0.0.1:57433 127.0.0.1:57415 377285185 22 120000000d8b1f000000000001000300000000000000 ...................... +6581 19.340972900 127.0.0.1:57415 127.0.0.1:57433 3333308392 12 ffffffff4df40a0000000000 ....M....... +6587 19.443492174 127.0.0.1:57415 127.0.0.1:57433 3333308404 12 1a00000070190b0000000000 ....p....... +6589 19.443732023 127.0.0.1:57415 127.0.0.1:57433 3333308416 26 16000000548f6340e25e31400100030000000f8b1f0000000000 ....T.c@.^1@.............. +6591 19.444087982 127.0.0.1:57433 127.0.0.1:57415 377285207 12 ffffffff70190b0000000000 ....p....... +6593 19.444716454 127.0.0.1:57433 127.0.0.1:57415 377285219 12 160000004ef40a0000000000 ....N....... +6595 19.444879532 127.0.0.1:57433 127.0.0.1:57415 377285231 22 120000000f8b1f000000000001000300000000000000 ...................... +6597 19.445193291 127.0.0.1:57415 127.0.0.1:57433 3333308442 12 ffffffff4ef40a0000000000 ....N....... +6603 19.548085690 127.0.0.1:57415 127.0.0.1:57433 3333308454 12 1a00000071190b0000000000 ....q....... +6605 19.548342943 127.0.0.1:57415 127.0.0.1:57433 3333308466 26 16000000548f6340e25e3140010003000000118b1f0000000000 ....T.c@.^1@.............. +6607 19.548781872 127.0.0.1:57433 127.0.0.1:57415 377285253 12 ffffffff71190b0000000000 ....q....... +6609 19.549180746 127.0.0.1:57433 127.0.0.1:57415 377285265 12 160000004ff40a0000000000 ....O....... +6611 19.549379349 127.0.0.1:57433 127.0.0.1:57415 377285277 22 12000000118b1f000000000001000300000000000000 ...................... +6613 19.549756765 127.0.0.1:57415 127.0.0.1:57433 3333308492 12 ffffffff4ff40a0000000000 ....O....... +6615 19.564149618 127.0.0.1:57415 127.0.0.1:57433 3333308504 12 6500000072190b0000000000 e...r....... +6617 19.564399242 127.0.0.1:57415 127.0.0.1:57433 3333308516 101 1e0000001c2118d0c46f33bb010003000000f210020000000000d5da22c39d01 .....!...o3.................".....?.....3...|8.. +6619 19.564794302 127.0.0.1:57433 127.0.0.1:57415 377285299 12 ffffffff72190b0000000000 ....r....... +6621 19.565701485 127.0.0.1:57433 127.0.0.1:57415 377285311 12 3400000050f40a0000000000 4...P....... +6623 19.565860033 127.0.0.1:57433 127.0.0.1:57415 377285323 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............s..u +6625 19.566143274 127.0.0.1:57415 127.0.0.1:57433 3333308617 12 ffffffff50f40a0000000000 ....P....... +6627 19.567088127 127.0.0.1:57415 127.0.0.1:57433 3333308629 12 1e00000073190b0000000000 ....s....... +6629 19.567265749 127.0.0.1:57415 127.0.0.1:57433 3333308641 30 1a00000055ceff62b21b3a50010003000000138b1f000000000000000000 ....U..b..:P.................. +6631 19.567654371 127.0.0.1:57433 127.0.0.1:57415 377285375 12 ffffffff73190b0000000000 ....s....... +6633 19.567991972 127.0.0.1:57433 127.0.0.1:57415 377285387 12 1a00000051f40a0000000000 ....Q....... +6635 19.568150043 127.0.0.1:57433 127.0.0.1:57415 377285399 26 16000000138b1f00000000000100030000000000000000000000 .......................... +6637 19.568419218 127.0.0.1:57415 127.0.0.1:57433 3333308671 12 ffffffff51f40a0000000000 ....Q....... +6645 19.640599966 127.0.0.1:57433 127.0.0.1:57415 377285425 12 feffffff92420100a3420100 .....B...B.. +6647 19.652698755 127.0.0.1:57415 127.0.0.1:57433 3333308683 12 1a00000074190b0000000000 ....t....... +6649 19.652884245 127.0.0.1:57415 127.0.0.1:57433 3333308695 26 16000000548f6340e25e3140010003000000158b1f0000000000 ....T.c@.^1@.............. +6651 19.653201342 127.0.0.1:57433 127.0.0.1:57415 377285437 12 ffffffff74190b0000000000 ....t....... +6653 19.653818369 127.0.0.1:57433 127.0.0.1:57415 377285449 12 1600000052f40a0000000000 ....R....... +6655 19.653984547 127.0.0.1:57433 127.0.0.1:57415 377285461 22 12000000158b1f000000000001000300000000000000 ...................... +6657 19.654232740 127.0.0.1:57415 127.0.0.1:57433 3333308721 12 ffffffff52f40a0000000000 ....R....... +6664 19.707903862 127.0.0.1:57415 127.0.0.1:57433 3333308733 12 feffffffa442010092420100 .....B...B.. +6667 19.756186485 127.0.0.1:57415 127.0.0.1:57433 3333308745 12 1a00000075190b0000000000 ....u....... +6669 19.756371737 127.0.0.1:57415 127.0.0.1:57433 3333308757 26 16000000548f6340e25e3140010003000000178b1f0000000000 ....T.c@.^1@.............. +6671 19.756759405 127.0.0.1:57433 127.0.0.1:57415 377285483 12 ffffffff75190b0000000000 ....u....... +6673 19.757216454 127.0.0.1:57433 127.0.0.1:57415 377285495 12 1600000053f40a0000000000 ....S....... +6675 19.757385015 127.0.0.1:57433 127.0.0.1:57415 377285507 22 12000000178b1f000000000001000300000000000000 ...................... +6677 19.757759333 127.0.0.1:57415 127.0.0.1:57433 3333308783 12 ffffffff53f40a0000000000 ....S....... +6680 19.860529184 127.0.0.1:57415 127.0.0.1:57433 3333308795 12 1a00000076190b0000000000 ....v....... +6682 19.860738993 127.0.0.1:57415 127.0.0.1:57433 3333308807 26 16000000548f6340e25e3140010003000000198b1f0000000000 ....T.c@.^1@.............. +6684 19.861014366 127.0.0.1:57433 127.0.0.1:57415 377285529 12 ffffffff76190b0000000000 ....v....... +6686 19.861567974 127.0.0.1:57433 127.0.0.1:57415 377285541 12 1600000054f40a0000000000 ....T....... +6688 19.861863852 127.0.0.1:57433 127.0.0.1:57415 377285553 22 12000000198b1f000000000001000300000000000000 ...................... +6690 19.862293243 127.0.0.1:57415 127.0.0.1:57433 3333308833 12 ffffffff54f40a0000000000 ....T....... +6692 19.868633986 127.0.0.1:57415 127.0.0.1:57433 3333308845 12 2200000077190b0000000000 "...w....... +6694 19.868856907 127.0.0.1:57415 127.0.0.1:57433 3333308857 34 1e0000001c2118d0c46f33bb010003000000f31002000000000006dc22c39d01 .....!...o3................."..... +6696 19.869009972 127.0.0.1:57415 127.0.0.1:57433 3333308891 12 4300000078190b0000000000 C...x....... +6698 19.869095802 127.0.0.1:57415 127.0.0.1:57433 3333308903 67 3f000000980433cb0cb47c380100030000000100000000f3100200000000003d ?.....3...|8...................=B.....&......... +6699 19.869149208 127.0.0.1:57433 127.0.0.1:57415 377285575 12 ffffffff77190b0000000000 ....w....... +6700 19.869282961 127.0.0.1:57433 127.0.0.1:57415 377285587 12 ffffffff78190b0000000000 ....x....... +6703 19.870137215 127.0.0.1:57433 127.0.0.1:57415 377285599 12 3400000055f40a0000000000 4...U....... +6705 19.870370865 127.0.0.1:57433 127.0.0.1:57415 377285611 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................'Fu +6707 19.870720148 127.0.0.1:57415 127.0.0.1:57433 3333308970 12 ffffffff55f40a0000000000 ....U....... +6708 19.871420145 127.0.0.1:57415 127.0.0.1:57433 3333308982 12 1e00000079190b0000000000 ....y....... +6709 19.871522188 127.0.0.1:57415 127.0.0.1:57433 3333308994 30 1a00000055ceff62b21b3a500100030000001b8b1f000000000000000000 ....U..b..:P.................. +6710 19.871734142 127.0.0.1:57433 127.0.0.1:57415 377285663 12 ffffffff79190b0000000000 ....y....... +6712 19.872373104 127.0.0.1:57433 127.0.0.1:57415 377285675 12 1a00000056f40a0000000000 ....V....... +6714 19.872593641 127.0.0.1:57433 127.0.0.1:57415 377285687 26 160000001b8b1f00000000000100030000000000000000000000 .......................... +6716 19.872941256 127.0.0.1:57415 127.0.0.1:57433 3333309024 12 ffffffff56f40a0000000000 ....V....... +6722 19.927084923 127.0.0.1:57433 127.0.0.1:57415 377285713 12 1b00000057f40a0000000000 ....W....... +6724 19.927369833 127.0.0.1:57433 127.0.0.1:57415 377285725 27 170000005a4a75fb21782bc10100ffffffff0088560f0000000000 ....ZJu.!x+.........V...... +6726 19.927656174 127.0.0.1:57415 127.0.0.1:57433 3333309036 12 ffffffff57f40a0000000000 ....W....... +6728 19.929094315 127.0.0.1:57415 127.0.0.1:57433 3333309048 12 180000007a190b0000000000 ....z....... +6730 19.929259539 127.0.0.1:57415 127.0.0.1:57433 3333309060 24 1400000088560f00000000000100ffffffff000000000000 .....V.................. +6732 19.929551601 127.0.0.1:57433 127.0.0.1:57415 377285752 12 ffffffff7a190b0000000000 ....z....... +6734 19.963422298 127.0.0.1:57415 127.0.0.1:57433 3333309084 12 1a0000007b190b0000000000 ....{....... +6736 19.963580132 127.0.0.1:57415 127.0.0.1:57433 3333309096 26 16000000548f6340e25e31400100030000001d8b1f0000000000 ....T.c@.^1@.............. +6738 19.963869333 127.0.0.1:57433 127.0.0.1:57415 377285764 12 ffffffff7b190b0000000000 ....{....... +6740 19.964325428 127.0.0.1:57433 127.0.0.1:57415 377285776 12 1600000058f40a0000000000 ....X....... +6742 19.964530945 127.0.0.1:57433 127.0.0.1:57415 377285788 22 120000001d8b1f000000000001000300000000000000 ...................... +6744 19.964819670 127.0.0.1:57415 127.0.0.1:57433 3333309122 12 ffffffff58f40a0000000000 ....X....... +6750 20.067705154 127.0.0.1:57415 127.0.0.1:57433 3333309134 12 1a0000007c190b0000000000 ....|....... +6752 20.067879200 127.0.0.1:57415 127.0.0.1:57433 3333309146 26 16000000548f6340e25e31400100030000001f8b1f0000000000 ....T.c@.^1@.............. +6754 20.068292379 127.0.0.1:57433 127.0.0.1:57415 377285810 12 ffffffff7c190b0000000000 ....|....... +6756 20.068760872 127.0.0.1:57433 127.0.0.1:57415 377285822 12 1600000059f40a0000000000 ....Y....... +6758 20.068966389 127.0.0.1:57433 127.0.0.1:57415 377285834 22 120000001f8b1f000000000001000300000000000000 ...................... +6760 20.069473505 127.0.0.1:57415 127.0.0.1:57433 3333309172 12 ffffffff59f40a0000000000 ....Y....... +6768 20.142442942 127.0.0.1:57433 127.0.0.1:57415 377285856 12 feffffff93420100a4420100 .....B...B.. +6772 20.171651125 127.0.0.1:57415 127.0.0.1:57433 3333309184 12 1a0000007d190b0000000000 ....}....... +6774 20.171827555 127.0.0.1:57415 127.0.0.1:57433 3333309196 26 16000000548f6340e25e3140010003000000218b1f0000000000 ....T.c@.^1@......!....... +6776 20.172181129 127.0.0.1:57433 127.0.0.1:57415 377285868 12 ffffffff7d190b0000000000 ....}....... +6778 20.172691345 127.0.0.1:57433 127.0.0.1:57415 377285880 12 160000005af40a0000000000 ....Z....... +6780 20.172850370 127.0.0.1:57433 127.0.0.1:57415 377285892 22 12000000218b1f000000000001000300000000000000 ....!................. +6781 20.172907352 127.0.0.1:57415 127.0.0.1:57433 3333309222 12 650000007e190b0000000000 e...~....... +6784 20.173177242 127.0.0.1:57415 127.0.0.1:57433 3333309234 101 1e0000001c2118d0c46f33bb010003000000f41002000000000036dd22c39d01 .....!...o3...............6.".....?.....3...|8.. +6786 20.173628807 127.0.0.1:57433 127.0.0.1:57415 377285914 12 ffffffff7e190b0000000000 ....~....... +6787 20.173671961 127.0.0.1:57415 127.0.0.1:57433 3333309335 12 ffffffff5af40a0000000000 ....Z....... +6790 20.174774408 127.0.0.1:57433 127.0.0.1:57415 377285926 12 340000005bf40a0000000000 4...[....... +6792 20.174949169 127.0.0.1:57433 127.0.0.1:57415 377285938 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................tu +6794 20.175131559 127.0.0.1:57415 127.0.0.1:57433 3333309347 12 ffffffff5bf40a0000000000 ....[....... +6796 20.176436424 127.0.0.1:57415 127.0.0.1:57433 3333309359 12 1e0000007f190b0000000000 ............ +6798 20.176587343 127.0.0.1:57415 127.0.0.1:57433 3333309371 30 1a00000055ceff62b21b3a50010003000000238b1f000000000000000000 ....U..b..:P......#........... +6800 20.176908255 127.0.0.1:57433 127.0.0.1:57415 377285990 12 ffffffff7f190b0000000000 ............ +6802 20.177526236 127.0.0.1:57433 127.0.0.1:57415 377286002 12 1a0000005cf40a0000000000 ....\....... +6804 20.177667379 127.0.0.1:57433 127.0.0.1:57415 377286014 26 16000000238b1f00000000000100030000000000000000000000 ....#..................... +6806 20.177949429 127.0.0.1:57415 127.0.0.1:57433 3333309401 12 ffffffff5cf40a0000000000 ....\....... +6811 20.210300922 127.0.0.1:57415 127.0.0.1:57433 3333309413 12 feffffffa542010093420100 .....B...B.. +6814 20.275774240 127.0.0.1:57415 127.0.0.1:57433 3333309425 12 1a00000080190b0000000000 ............ +6816 20.275962114 127.0.0.1:57415 127.0.0.1:57433 3333309437 26 16000000548f6340e25e3140010003000000258b1f0000000000 ....T.c@.^1@......%....... +6818 20.276362419 127.0.0.1:57433 127.0.0.1:57415 377286040 12 ffffffff80190b0000000000 ............ +6820 20.276894808 127.0.0.1:57433 127.0.0.1:57415 377286052 12 160000005df40a0000000000 ....]....... +6822 20.277058363 127.0.0.1:57433 127.0.0.1:57415 377286064 22 12000000258b1f000000000001000300000000000000 ....%................. +6824 20.277344465 127.0.0.1:57415 127.0.0.1:57433 3333309463 12 ffffffff5df40a0000000000 ....]....... +6826 20.378577471 127.0.0.1:57415 127.0.0.1:57433 3333309475 12 1a00000081190b0000000000 ............ +6829 20.378763914 127.0.0.1:57415 127.0.0.1:57433 3333309487 26 16000000548f6340e25e3140010003000000278b1f0000000000 ....T.c@.^1@......'....... +6832 20.379203081 127.0.0.1:57433 127.0.0.1:57415 377286086 12 ffffffff81190b0000000000 ............ +6834 20.379695415 127.0.0.1:57433 127.0.0.1:57415 377286098 12 160000005ef40a0000000000 ....^....... +6836 20.379900694 127.0.0.1:57433 127.0.0.1:57415 377286110 22 12000000278b1f000000000001000300000000000000 ....'................. +6838 20.380182743 127.0.0.1:57415 127.0.0.1:57433 3333309513 12 ffffffff5ef40a0000000000 ....^....... +6842 20.478515863 127.0.0.1:57415 127.0.0.1:57433 3333309525 12 6500000082190b0000000000 e........... +6844 20.478703260 127.0.0.1:57415 127.0.0.1:57433 3333309537 101 1e0000001c2118d0c46f33bb010003000000f51002000000000068de22c39d01 .....!...o3...............h.".....?.....3...|8.. +6846 20.479079723 127.0.0.1:57433 127.0.0.1:57415 377286132 12 ffffffff82190b0000000000 ............ +6848 20.480807066 127.0.0.1:57433 127.0.0.1:57415 377286144 12 340000005ff40a0000000000 4..._....... +6850 20.480975866 127.0.0.1:57433 127.0.0.1:57415 377286156 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............]L.u +6852 20.481365204 127.0.0.1:57415 127.0.0.1:57433 3333309638 12 ffffffff5ff40a0000000000 ...._....... +6854 20.481640339 127.0.0.1:57415 127.0.0.1:57433 3333309650 12 1a00000083190b0000000000 ............ +6856 20.481799841 127.0.0.1:57415 127.0.0.1:57433 3333309662 26 16000000548f6340e25e3140010003000000298b1f0000000000 ....T.c@.^1@......)....... +6858 20.481936455 127.0.0.1:57415 127.0.0.1:57433 3333309688 12 1e00000084190b0000000000 ............ +6860 20.482021570 127.0.0.1:57415 127.0.0.1:57433 3333309700 30 1a00000055ceff62b21b3a500100030000002b8b1f000000000000000000 ....U..b..:P......+........... +6862 20.482115984 127.0.0.1:57433 127.0.0.1:57415 377286208 12 ffffffff83190b0000000000 ............ +6864 20.482309818 127.0.0.1:57433 127.0.0.1:57415 377286220 12 ffffffff84190b0000000000 ............ +6866 20.482493639 127.0.0.1:57433 127.0.0.1:57415 377286232 12 1600000060f40a0000000000 ....`....... +6868 20.482640266 127.0.0.1:57433 127.0.0.1:57415 377286244 22 12000000298b1f000000000001000300000000000000 ....)................. +6870 20.482778788 127.0.0.1:57433 127.0.0.1:57415 377286266 12 1a00000061f40a0000000000 ....a....... +6872 20.482866287 127.0.0.1:57433 127.0.0.1:57415 377286278 26 160000002b8b1f00000000000100030000000000000000000000 ....+..................... +6874 20.482959032 127.0.0.1:57415 127.0.0.1:57433 3333309730 12 ffffffff60f40a0000000000 ....`....... +6876 20.483251572 127.0.0.1:57415 127.0.0.1:57433 3333309742 12 ffffffff61f40a0000000000 ....a....... +6888 20.584049463 127.0.0.1:57415 127.0.0.1:57433 3333309754 12 1a00000085190b0000000000 ............ +6890 20.584277630 127.0.0.1:57415 127.0.0.1:57433 3333309766 26 16000000548f6340e25e31400100030000002d8b1f0000000000 ....T.c@.^1@......-....... +6892 20.584580898 127.0.0.1:57433 127.0.0.1:57415 377286304 12 ffffffff85190b0000000000 ............ +6894 20.585357428 127.0.0.1:57433 127.0.0.1:57415 377286316 12 1600000062f40a0000000000 ....b....... +6896 20.585504770 127.0.0.1:57433 127.0.0.1:57415 377286328 22 120000002d8b1f000000000001000300000000000000 ....-................. +6898 20.585712194 127.0.0.1:57415 127.0.0.1:57433 3333309792 12 ffffffff62f40a0000000000 ....b....... +6906 20.642100573 127.0.0.1:57433 127.0.0.1:57415 377286350 12 feffffff94420100a5420100 .....B...B.. +6910 20.687237501 127.0.0.1:57415 127.0.0.1:57433 3333309804 12 1a00000086190b0000000000 ............ +6912 20.687430382 127.0.0.1:57415 127.0.0.1:57433 3333309816 26 16000000548f6340e25e31400100030000002f8b1f0000000000 ....T.c@.^1@....../....... +6914 20.687881231 127.0.0.1:57433 127.0.0.1:57415 377286362 12 ffffffff86190b0000000000 ............ +6916 20.688191891 127.0.0.1:57433 127.0.0.1:57415 377286374 12 1600000063f40a0000000000 ....c....... +6918 20.688350201 127.0.0.1:57433 127.0.0.1:57415 377286386 22 120000002f8b1f000000000001000300000000000000 ..../................. +6920 20.688644171 127.0.0.1:57415 127.0.0.1:57433 3333309842 12 ffffffff63f40a0000000000 ....c....... +6936 20.711019993 127.0.0.1:57415 127.0.0.1:57433 3333309854 12 feffffffa642010094420100 .....B...B.. +6947 20.783899784 127.0.0.1:57415 127.0.0.1:57433 3333309866 12 2200000087190b0000000000 "........... +6949 20.784100533 127.0.0.1:57415 127.0.0.1:57433 3333309878 34 1e0000001c2118d0c46f33bb010003000000f6100200000000009adf22c39d01 .....!...o3................."..... +6951 20.784229040 127.0.0.1:57415 127.0.0.1:57433 3333309912 12 4300000088190b0000000000 C........... +6953 20.784314156 127.0.0.1:57415 127.0.0.1:57433 3333309924 67 3f000000980433cb0cb47c380100030000000100000000f6100200000000003d ?.....3...|8...................=B.....&......... +6955 20.784408331 127.0.0.1:57433 127.0.0.1:57415 377286408 12 ffffffff87190b0000000000 ............ +6957 20.784672499 127.0.0.1:57433 127.0.0.1:57415 377286420 12 ffffffff88190b0000000000 ............ +6959 20.785373688 127.0.0.1:57433 127.0.0.1:57415 377286432 12 3400000064f40a0000000000 4...d....... +6961 20.785588741 127.0.0.1:57433 127.0.0.1:57415 377286444 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................u +6963 20.785903454 127.0.0.1:57415 127.0.0.1:57433 3333309991 12 ffffffff64f40a0000000000 ....d....... +6965 20.786934137 127.0.0.1:57415 127.0.0.1:57433 3333310003 12 1e00000089190b0000000000 ............ +6967 20.787102938 127.0.0.1:57415 127.0.0.1:57433 3333310015 30 1a00000055ceff62b21b3a50010003000000318b1f000000000000000000 ....U..b..:P......1........... +6969 20.787385464 127.0.0.1:57433 127.0.0.1:57415 377286496 12 ffffffff89190b0000000000 ............ +6971 20.787824631 127.0.0.1:57433 127.0.0.1:57415 377286508 12 1a00000065f40a0000000000 ....e....... +6973 20.787972927 127.0.0.1:57433 127.0.0.1:57415 377286520 26 16000000318b1f00000000000100030000000000000000000000 ....1..................... +6975 20.788210154 127.0.0.1:57415 127.0.0.1:57433 3333310045 12 ffffffff65f40a0000000000 ....e....... +6977 20.789979458 127.0.0.1:57415 127.0.0.1:57433 3333310057 12 1a0000008a190b0000000000 ............ +6979 20.790123463 127.0.0.1:57415 127.0.0.1:57433 3333310069 26 16000000548f6340e25e3140010003000000338b1f0000000000 ....T.c@.^1@......3....... +6981 20.790389776 127.0.0.1:57433 127.0.0.1:57415 377286546 12 ffffffff8a190b0000000000 ............ +6983 20.790739536 127.0.0.1:57433 127.0.0.1:57415 377286558 12 1600000066f40a0000000000 ....f....... +6985 20.790885687 127.0.0.1:57433 127.0.0.1:57415 377286570 22 12000000338b1f000000000001000300000000000000 ....3................. +6987 20.791076899 127.0.0.1:57415 127.0.0.1:57433 3333310095 12 ffffffff66f40a0000000000 ....f....... +6993 20.892446280 127.0.0.1:57415 127.0.0.1:57433 3333310107 12 1a0000008b190b0000000000 ............ +6995 20.892741680 127.0.0.1:57415 127.0.0.1:57433 3333310119 26 16000000548f6340e25e3140010003000000358b1f0000000000 ....T.c@.^1@......5....... +6997 20.893090487 127.0.0.1:57433 127.0.0.1:57415 377286592 12 ffffffff8b190b0000000000 ............ +6999 20.893601179 127.0.0.1:57433 127.0.0.1:57415 377286604 12 1600000067f40a0000000000 ....g....... +7001 20.893770933 127.0.0.1:57433 127.0.0.1:57415 377286616 22 12000000358b1f000000000001000300000000000000 ....5................. +7003 20.894111395 127.0.0.1:57415 127.0.0.1:57433 3333310145 12 ffffffff67f40a0000000000 ....g....... +7007 20.995473146 127.0.0.1:57415 127.0.0.1:57433 3333310157 12 1a0000008c190b0000000000 ............ +7009 20.995749235 127.0.0.1:57415 127.0.0.1:57433 3333310169 26 16000000548f6340e25e3140010003000000378b1f0000000000 ....T.c@.^1@......7....... +7011 20.996076822 127.0.0.1:57433 127.0.0.1:57415 377286638 12 ffffffff8c190b0000000000 ............ +7013 20.996764421 127.0.0.1:57433 127.0.0.1:57415 377286650 12 1600000068f40a0000000000 ....h....... +7015 20.996930599 127.0.0.1:57433 127.0.0.1:57415 377286662 22 12000000378b1f000000000001000300000000000000 ....7................. +7017 20.997225761 127.0.0.1:57415 127.0.0.1:57433 3333310195 12 ffffffff68f40a0000000000 ....h....... +7021 21.088614225 127.0.0.1:57415 127.0.0.1:57433 3333310207 12 220000008d190b0000000000 "........... +7023 21.088825464 127.0.0.1:57415 127.0.0.1:57433 3333310219 34 1e0000001c2118d0c46f33bb010003000000f710020000000000cae022c39d01 .....!...o3................."..... +7025 21.088916302 127.0.0.1:57415 127.0.0.1:57433 3333310253 12 430000008e190b0000000000 C........... +7027 21.089034319 127.0.0.1:57415 127.0.0.1:57433 3333310265 67 3f000000980433cb0cb47c380100030000000100000000f7100200000000003d ?.....3...|8...................=B.....&......... +7028 21.089123249 127.0.0.1:57433 127.0.0.1:57415 377286684 12 ffffffff8d190b0000000000 ............ +7031 21.089362860 127.0.0.1:57433 127.0.0.1:57415 377286696 12 ffffffff8e190b0000000000 ............ +7033 21.090653896 127.0.0.1:57433 127.0.0.1:57415 377286708 12 3400000069f40a0000000000 4...i....... +7035 21.090872526 127.0.0.1:57433 127.0.0.1:57415 377286720 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................\.v +7037 21.091149807 127.0.0.1:57415 127.0.0.1:57433 3333310332 12 ffffffff69f40a0000000000 ....i....... +7038 21.092137814 127.0.0.1:57415 127.0.0.1:57433 3333310344 12 1e0000008f190b0000000000 ............ +7040 21.092299938 127.0.0.1:57415 127.0.0.1:57433 3333310356 30 1a00000055ceff62b21b3a50010003000000398b1f000000000000000000 ....U..b..:P......9........... +7042 21.092617273 127.0.0.1:57433 127.0.0.1:57415 377286772 12 ffffffff8f190b0000000000 ............ +7044 21.092925310 127.0.0.1:57433 127.0.0.1:57415 377286784 12 1a0000006af40a0000000000 ....j....... +7046 21.093065977 127.0.0.1:57433 127.0.0.1:57415 377286796 26 16000000398b1f00000000000100030000000000000000000000 ....9..................... +7048 21.093305588 127.0.0.1:57415 127.0.0.1:57433 3333310386 12 ffffffff6af40a0000000000 ....j....... +7050 21.100016356 127.0.0.1:57415 127.0.0.1:57433 3333310398 12 1a00000090190b0000000000 ............ +7052 21.100161552 127.0.0.1:57415 127.0.0.1:57433 3333310410 26 16000000548f6340e25e31400100030000003b8b1f0000000000 ....T.c@.^1@......;....... +7054 21.100438595 127.0.0.1:57433 127.0.0.1:57415 377286822 12 ffffffff90190b0000000000 ............ +7056 21.100872040 127.0.0.1:57433 127.0.0.1:57415 377286834 12 160000006bf40a0000000000 ....k....... +7058 21.101017475 127.0.0.1:57433 127.0.0.1:57415 377286846 22 120000003b8b1f000000000001000300000000000000 ....;................. +7060 21.101249695 127.0.0.1:57415 127.0.0.1:57433 3333310436 12 ffffffff6bf40a0000000000 ....k....... +7068 21.144228935 127.0.0.1:57433 127.0.0.1:57415 377286868 12 feffffff95420100a6420100 .....B...B.. +7074 21.202919483 127.0.0.1:57415 127.0.0.1:57433 3333310448 12 1a00000091190b0000000000 ............ +7076 21.203099251 127.0.0.1:57415 127.0.0.1:57433 3333310460 26 16000000548f6340e25e31400100030000003d8b1f0000000000 ....T.c@.^1@......=....... +7078 21.203406572 127.0.0.1:57433 127.0.0.1:57415 377286880 12 ffffffff91190b0000000000 ............ +7080 21.204324484 127.0.0.1:57433 127.0.0.1:57415 377286892 12 160000006cf40a0000000000 ....l....... +7082 21.204485416 127.0.0.1:57433 127.0.0.1:57415 377286904 22 120000003d8b1f000000000001000300000000000000 ....=................. +7084 21.204817057 127.0.0.1:57415 127.0.0.1:57433 3333310486 12 ffffffff6cf40a0000000000 ....l....... +7086 21.211946249 127.0.0.1:57415 127.0.0.1:57433 3333310498 12 feffffffa742010095420100 .....B...B.. +7090 21.306189775 127.0.0.1:57415 127.0.0.1:57433 3333310510 12 1a00000092190b0000000000 ............ +7092 21.306381464 127.0.0.1:57415 127.0.0.1:57433 3333310522 26 16000000548f6340e25e31400100030000003f8b1f0000000000 ....T.c@.^1@......?....... +7094 21.306741238 127.0.0.1:57433 127.0.0.1:57415 377286926 12 ffffffff92190b0000000000 ............ +7096 21.307177544 127.0.0.1:57433 127.0.0.1:57415 377286938 12 160000006df40a0000000000 ....m....... +7098 21.307387114 127.0.0.1:57433 127.0.0.1:57415 377286950 22 120000003f8b1f000000000001000300000000000000 ....?................. +7100 21.307832956 127.0.0.1:57415 127.0.0.1:57433 3333310548 12 ffffffff6df40a0000000000 ....m....... +7106 21.394504070 127.0.0.1:57415 127.0.0.1:57433 3333310560 12 6500000093190b0000000000 e........... +7108 21.394710541 127.0.0.1:57415 127.0.0.1:57433 3333310572 101 1e0000001c2118d0c46f33bb010003000000f810020000000000fce122c39d01 .....!...o3.................".....?.....3...|8.. +7110 21.394968987 127.0.0.1:57433 127.0.0.1:57415 377286972 12 ffffffff93190b0000000000 ............ +7112 21.395863533 127.0.0.1:57433 127.0.0.1:57415 377286984 12 340000006ef40a0000000000 4...n....... +7114 21.396027088 127.0.0.1:57433 127.0.0.1:57415 377286996 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................v +7116 21.396299601 127.0.0.1:57415 127.0.0.1:57433 3333310673 12 ffffffff6ef40a0000000000 ....n....... +7118 21.397099018 127.0.0.1:57415 127.0.0.1:57433 3333310685 12 1e00000094190b0000000000 ............ +7120 21.397258282 127.0.0.1:57415 127.0.0.1:57433 3333310697 30 1a00000055ceff62b21b3a50010003000000418b1f000000000000000000 ....U..b..:P......A........... +7122 21.397569180 127.0.0.1:57433 127.0.0.1:57415 377287048 12 ffffffff94190b0000000000 ............ +7124 21.397965193 127.0.0.1:57433 127.0.0.1:57415 377287060 12 1a0000006ff40a0000000000 ....o....... +7126 21.398219347 127.0.0.1:57433 127.0.0.1:57415 377287072 26 16000000418b1f00000000000100030000000000000000000000 ....A..................... +7128 21.398447990 127.0.0.1:57415 127.0.0.1:57433 3333310727 12 ffffffff6ff40a0000000000 ....o....... +7130 21.409033298 127.0.0.1:57415 127.0.0.1:57433 3333310739 12 1a00000095190b0000000000 ............ +7132 21.409194231 127.0.0.1:57415 127.0.0.1:57433 3333310751 26 16000000548f6340e25e3140010003000000438b1f0000000000 ....T.c@.^1@......C....... +7134 21.409575224 127.0.0.1:57433 127.0.0.1:57415 377287098 12 ffffffff95190b0000000000 ............ +7136 21.409822464 127.0.0.1:57433 127.0.0.1:57415 377287110 12 1600000070f40a0000000000 ....p....... +7138 21.409969330 127.0.0.1:57433 127.0.0.1:57415 377287122 22 12000000438b1f000000000001000300000000000000 ....C................. +7140 21.410233498 127.0.0.1:57415 127.0.0.1:57433 3333310777 12 ffffffff70f40a0000000000 ....p....... +7146 21.511466503 127.0.0.1:57415 127.0.0.1:57433 3333310789 12 1a00000096190b0000000000 ............ +7148 21.511638165 127.0.0.1:57415 127.0.0.1:57433 3333310801 26 16000000548f6340e25e3140010003000000458b1f0000000000 ....T.c@.^1@......E....... +7150 21.511970520 127.0.0.1:57433 127.0.0.1:57415 377287144 12 ffffffff96190b0000000000 ............ +7152 21.512265205 127.0.0.1:57433 127.0.0.1:57415 377287156 12 1600000071f40a0000000000 ....q....... +7154 21.512423992 127.0.0.1:57433 127.0.0.1:57415 377287168 22 12000000458b1f000000000001000300000000000000 ....E................. +7156 21.512738466 127.0.0.1:57415 127.0.0.1:57433 3333310827 12 ffffffff71f40a0000000000 ....q....... +7158 21.614642143 127.0.0.1:57415 127.0.0.1:57433 3333310839 12 1a00000097190b0000000000 ............ +7160 21.614887238 127.0.0.1:57415 127.0.0.1:57433 3333310851 26 16000000548f6340e25e3140010003000000478b1f0000000000 ....T.c@.^1@......G....... +7162 21.615210772 127.0.0.1:57433 127.0.0.1:57415 377287190 12 ffffffff97190b0000000000 ............ +7164 21.615599394 127.0.0.1:57433 127.0.0.1:57415 377287202 12 1600000072f40a0000000000 ....r....... +7166 21.615793228 127.0.0.1:57433 127.0.0.1:57415 377287214 22 12000000478b1f000000000001000300000000000000 ....G................. +7168 21.616084576 127.0.0.1:57415 127.0.0.1:57433 3333310877 12 ffffffff72f40a0000000000 ....r....... +7176 21.644315481 127.0.0.1:57433 127.0.0.1:57415 377287236 12 feffffff96420100a7420100 .....B...B.. +7182 21.698314190 127.0.0.1:57415 127.0.0.1:57433 3333310889 12 6500000098190b0000000000 e........... +7184 21.698532104 127.0.0.1:57415 127.0.0.1:57433 3333310901 101 1e0000001c2118d0c46f33bb010003000000f9100200000000002be322c39d01 .....!...o3...............+.".....?.....3...|8.. +7186 21.698858976 127.0.0.1:57433 127.0.0.1:57415 377287248 12 ffffffff98190b0000000000 ............ +7188 21.699951649 127.0.0.1:57433 127.0.0.1:57415 377287260 12 3400000073f40a0000000000 4...s....... +7190 21.700112343 127.0.0.1:57433 127.0.0.1:57415 377287272 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................]]v +7192 21.700484514 127.0.0.1:57415 127.0.0.1:57433 3333311002 12 ffffffff73f40a0000000000 ....s....... +7194 21.701486826 127.0.0.1:57415 127.0.0.1:57433 3333311014 12 1e00000099190b0000000000 ............ +7196 21.701633453 127.0.0.1:57415 127.0.0.1:57433 3333311026 30 1a00000055ceff62b21b3a50010003000000498b1f000000000000000000 ....U..b..:P......I........... +7198 21.702362299 127.0.0.1:57433 127.0.0.1:57415 377287324 12 ffffffff99190b0000000000 ............ +7200 21.702917576 127.0.0.1:57433 127.0.0.1:57415 377287336 12 1a00000074f40a0000000000 ....t....... +7202 21.703060150 127.0.0.1:57433 127.0.0.1:57415 377287348 26 16000000498b1f00000000000100030000000000000000000000 ....I..................... +7204 21.703371763 127.0.0.1:57415 127.0.0.1:57433 3333311056 12 ffffffff74f40a0000000000 ....t....... +7206 21.712573051 127.0.0.1:57415 127.0.0.1:57433 3333311068 12 feffffffa842010096420100 .....B...B.. +7210 21.717779160 127.0.0.1:57415 127.0.0.1:57433 3333311080 12 1a0000009a190b0000000000 ............ +7212 21.717942238 127.0.0.1:57415 127.0.0.1:57433 3333311092 26 16000000548f6340e25e31400100030000004b8b1f0000000000 ....T.c@.^1@......K....... +7214 21.718286276 127.0.0.1:57433 127.0.0.1:57415 377287374 12 ffffffff9a190b0000000000 ............ +7216 21.718685865 127.0.0.1:57433 127.0.0.1:57415 377287386 12 1600000075f40a0000000000 ....u....... +7218 21.718837976 127.0.0.1:57433 127.0.0.1:57415 377287398 22 120000004b8b1f000000000001000300000000000000 ....K................. +7220 21.719172478 127.0.0.1:57415 127.0.0.1:57433 3333311118 12 ffffffff75f40a0000000000 ....u....... +7222 21.820109606 127.0.0.1:57415 127.0.0.1:57433 3333311130 12 1a0000009b190b0000000000 ............ +7224 21.820350647 127.0.0.1:57415 127.0.0.1:57433 3333311142 26 16000000548f6340e25e31400100030000004d8b1f0000000000 ....T.c@.^1@......M....... +7226 21.820743561 127.0.0.1:57433 127.0.0.1:57415 377287420 12 ffffffff9b190b0000000000 ............ +7228 21.821266413 127.0.0.1:57433 127.0.0.1:57415 377287432 12 1600000076f40a0000000000 ....v....... +7230 21.821459770 127.0.0.1:57433 127.0.0.1:57415 377287444 22 120000004d8b1f000000000001000300000000000000 ....M................. +7232 21.821641445 127.0.0.1:57415 127.0.0.1:57433 3333311168 12 ffffffff76f40a0000000000 ....v....... +7268 21.923454046 127.0.0.1:57415 127.0.0.1:57433 3333311180 12 1a0000009c190b0000000000 ............ +7270 21.923770666 127.0.0.1:57415 127.0.0.1:57433 3333311192 26 16000000548f6340e25e31400100030000004f8b1f0000000000 ....T.c@.^1@......O....... +7272 21.924162865 127.0.0.1:57433 127.0.0.1:57415 377287466 12 ffffffff9c190b0000000000 ............ +7274 21.924716949 127.0.0.1:57433 127.0.0.1:57415 377287478 12 1600000077f40a0000000000 ....w....... +7276 21.924878359 127.0.0.1:57433 127.0.0.1:57415 377287490 22 120000004f8b1f000000000001000300000000000000 ....O................. +7278 21.925155878 127.0.0.1:57415 127.0.0.1:57433 3333311218 12 ffffffff77f40a0000000000 ....w....... +7293 22.002852917 127.0.0.1:57415 127.0.0.1:57433 3333311230 12 220000009d190b0000000000 "........... +7295 22.003042221 127.0.0.1:57415 127.0.0.1:57433 3333311242 34 1e0000001c2118d0c46f33bb010003000000fa100200000000005ce422c39d01 .....!...o3...............\."..... +7297 22.003188133 127.0.0.1:57415 127.0.0.1:57433 3333311276 12 430000009e190b0000000000 C........... +7299 22.003274202 127.0.0.1:57415 127.0.0.1:57433 3333311288 67 3f000000980433cb0cb47c380100030000000100000000fa100200000000003d ?.....3...|8...................=B.....&......... +7300 22.003336668 127.0.0.1:57433 127.0.0.1:57415 377287512 12 ffffffff9d190b0000000000 ............ +7304 22.003552675 127.0.0.1:57433 127.0.0.1:57415 377287524 12 ffffffff9e190b0000000000 ............ +7310 22.004466295 127.0.0.1:57433 127.0.0.1:57415 377287536 12 3400000078f40a0000000000 4...x....... +7312 22.004690647 127.0.0.1:57433 127.0.0.1:57415 377287548 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................v +7317 22.005020142 127.0.0.1:57415 127.0.0.1:57433 3333311355 12 ffffffff78f40a0000000000 ....x....... +7319 22.005911827 127.0.0.1:57415 127.0.0.1:57433 3333311367 12 1e0000009f190b0000000000 ............ +7323 22.006090641 127.0.0.1:57415 127.0.0.1:57433 3333311379 30 1a00000055ceff62b21b3a50010003000000518b1f000000000000000000 ....U..b..:P......Q........... +7325 22.006365538 127.0.0.1:57433 127.0.0.1:57415 377287600 12 ffffffff9f190b0000000000 ............ +7327 22.006824493 127.0.0.1:57433 127.0.0.1:57415 377287612 12 1a00000079f40a0000000000 ....y....... +7329 22.007156849 127.0.0.1:57433 127.0.0.1:57415 377287624 26 16000000518b1f00000000000100030000000000000000000000 ....Q..................... +7331 22.007571220 127.0.0.1:57415 127.0.0.1:57433 3333311409 12 ffffffff79f40a0000000000 ....y....... +7356 22.027373314 127.0.0.1:57415 127.0.0.1:57433 3333311421 12 1a000000a0190b0000000000 ............ +7358 22.027545929 127.0.0.1:57415 127.0.0.1:57433 3333311433 26 16000000548f6340e25e3140010003000000538b1f0000000000 ....T.c@.^1@......S....... +7360 22.027901888 127.0.0.1:57433 127.0.0.1:57415 377287650 12 ffffffffa0190b0000000000 ............ +7362 22.028390646 127.0.0.1:57433 127.0.0.1:57415 377287662 12 160000007af40a0000000000 ....z....... +7364 22.028587818 127.0.0.1:57433 127.0.0.1:57415 377287674 22 12000000538b1f000000000001000300000000000000 ....S................. +7366 22.028897762 127.0.0.1:57415 127.0.0.1:57433 3333311459 12 ffffffff7af40a0000000000 ....z....... +7368 22.131418467 127.0.0.1:57415 127.0.0.1:57433 3333311471 12 1a000000a1190b0000000000 ............ +7370 22.131618261 127.0.0.1:57415 127.0.0.1:57433 3333311483 26 16000000548f6340e25e3140010003000000558b1f0000000000 ....T.c@.^1@......U....... +7372 22.131976843 127.0.0.1:57433 127.0.0.1:57415 377287696 12 ffffffffa1190b0000000000 ............ +7374 22.132467270 127.0.0.1:57433 127.0.0.1:57415 377287708 12 160000007bf40a0000000000 ....{....... +7376 22.132629156 127.0.0.1:57433 127.0.0.1:57415 377287720 22 12000000558b1f000000000001000300000000000000 ....U................. +7378 22.132880449 127.0.0.1:57415 127.0.0.1:57433 3333311509 12 ffffffff7bf40a0000000000 ....{....... +7386 22.144573450 127.0.0.1:57433 127.0.0.1:57415 377287742 12 feffffff97420100a8420100 .....B...B.. +7393 22.214575291 127.0.0.1:57415 127.0.0.1:57433 3333311521 12 feffffffa942010097420100 .....B...B.. +7396 22.235821962 127.0.0.1:57415 127.0.0.1:57433 3333311533 12 1a000000a2190b0000000000 ............ +7398 22.236040115 127.0.0.1:57415 127.0.0.1:57433 3333311545 26 16000000548f6340e25e3140010003000000578b1f0000000000 ....T.c@.^1@......W....... +7400 22.236409903 127.0.0.1:57433 127.0.0.1:57415 377287754 12 ffffffffa2190b0000000000 ............ +7402 22.236953020 127.0.0.1:57433 127.0.0.1:57415 377287766 12 160000007cf40a0000000000 ....|....... +7404 22.237156153 127.0.0.1:57433 127.0.0.1:57415 377287778 22 12000000578b1f000000000001000300000000000000 ....W................. +7406 22.237583876 127.0.0.1:57415 127.0.0.1:57433 3333311571 12 ffffffff7cf40a0000000000 ....|....... +7408 22.308248758 127.0.0.1:57415 127.0.0.1:57433 3333311583 12 65000000a3190b0000000000 e........... +7410 22.308491230 127.0.0.1:57415 127.0.0.1:57433 3333311595 101 1e0000001c2118d0c46f33bb010003000000fb100200000000008de522c39d01 .....!...o3.................".....?.....3...|8.. +7412 22.308818102 127.0.0.1:57433 127.0.0.1:57415 377287800 12 ffffffffa3190b0000000000 ............ +7414 22.310042858 127.0.0.1:57433 127.0.0.1:57415 377287812 12 340000007df40a0000000000 4...}....... +7416 22.310216904 127.0.0.1:57433 127.0.0.1:57415 377287824 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................r.v +7418 22.310576200 127.0.0.1:57415 127.0.0.1:57433 3333311696 12 ffffffff7df40a0000000000 ....}....... +7420 22.311464548 127.0.0.1:57415 127.0.0.1:57433 3333311708 12 1e000000a4190b0000000000 ............ +7422 22.311610460 127.0.0.1:57415 127.0.0.1:57433 3333311720 30 1a00000055ceff62b21b3a50010003000000598b1f000000000000000000 ....U..b..:P......Y........... +7424 22.311904907 127.0.0.1:57433 127.0.0.1:57415 377287876 12 ffffffffa4190b0000000000 ............ +7426 22.312393427 127.0.0.1:57433 127.0.0.1:57415 377287888 12 1a0000007ef40a0000000000 ....~....... +7428 22.312560558 127.0.0.1:57433 127.0.0.1:57415 377287900 26 16000000598b1f00000000000100030000000000000000000000 ....Y..................... +7430 22.312914371 127.0.0.1:57415 127.0.0.1:57433 3333311750 12 ffffffff7ef40a0000000000 ....~....... +7432 22.339628220 127.0.0.1:57415 127.0.0.1:57433 3333311762 12 1a000000a5190b0000000000 ............ +7434 22.339856148 127.0.0.1:57415 127.0.0.1:57433 3333311774 26 16000000548f6340e25e31400100030000005b8b1f0000000000 ....T.c@.^1@......[....... +7436 22.340185881 127.0.0.1:57433 127.0.0.1:57415 377287926 12 ffffffffa5190b0000000000 ............ +7438 22.340634823 127.0.0.1:57433 127.0.0.1:57415 377287938 12 160000007ff40a0000000000 ............ +7440 22.340800047 127.0.0.1:57433 127.0.0.1:57415 377287950 22 120000005b8b1f000000000001000300000000000000 ....[................. +7442 22.341379642 127.0.0.1:57415 127.0.0.1:57433 3333311800 12 ffffffff7ff40a0000000000 ............ +7448 22.443915367 127.0.0.1:57415 127.0.0.1:57433 3333311812 12 1a000000a6190b0000000000 ............ +7450 22.444114923 127.0.0.1:57415 127.0.0.1:57433 3333311824 26 16000000548f6340e25e31400100030000005d8b1f0000000000 ....T.c@.^1@......]....... +7452 22.444423676 127.0.0.1:57433 127.0.0.1:57415 377287972 12 ffffffffa6190b0000000000 ............ +7454 22.444788933 127.0.0.1:57433 127.0.0.1:57415 377287984 12 1600000080f40a0000000000 ............ +7456 22.444949865 127.0.0.1:57433 127.0.0.1:57415 377287996 22 120000005d8b1f000000000001000300000000000000 ....]................. +7458 22.445499182 127.0.0.1:57415 127.0.0.1:57433 3333311850 12 ffffffff80f40a0000000000 ............ +7464 22.547842503 127.0.0.1:57415 127.0.0.1:57433 3333311862 12 1a000000a7190b0000000000 ............ +7466 22.548139095 127.0.0.1:57415 127.0.0.1:57433 3333311874 26 16000000548f6340e25e31400100030000005f8b1f0000000000 ....T.c@.^1@......_....... +7468 22.548481703 127.0.0.1:57433 127.0.0.1:57415 377288018 12 ffffffffa7190b0000000000 ............ +7470 22.548858166 127.0.0.1:57433 127.0.0.1:57415 377288030 12 1600000081f40a0000000000 ............ +7472 22.549074411 127.0.0.1:57433 127.0.0.1:57415 377288042 22 120000005f8b1f000000000001000300000000000000 ...._................. +7474 22.549355984 127.0.0.1:57415 127.0.0.1:57433 3333311900 12 ffffffff81f40a0000000000 ............ +7476 22.613897562 127.0.0.1:57415 127.0.0.1:57433 3333311912 12 65000000a8190b0000000000 e........... +7478 22.614134789 127.0.0.1:57415 127.0.0.1:57433 3333311924 101 1e0000001c2118d0c46f33bb010003000000fc10020000000000bfe622c39d01 .....!...o3.................".....?.....3...|8.. +7480 22.614382267 127.0.0.1:57433 127.0.0.1:57415 377288064 12 ffffffffa8190b0000000000 ............ +7482 22.615574837 127.0.0.1:57433 127.0.0.1:57415 377288076 12 3400000082f40a0000000000 4........... +7484 22.615736008 127.0.0.1:57433 127.0.0.1:57415 377288088 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............Y..v +7486 22.616112709 127.0.0.1:57415 127.0.0.1:57433 3333312025 12 ffffffff82f40a0000000000 ............ +7488 22.616842747 127.0.0.1:57415 127.0.0.1:57433 3333312037 12 1e000000a9190b0000000000 ............ +7490 22.617112637 127.0.0.1:57415 127.0.0.1:57433 3333312049 30 1a00000055ceff62b21b3a50010003000000618b1f000000000000000000 ....U..b..:P......a........... +7492 22.617393970 127.0.0.1:57433 127.0.0.1:57415 377288140 12 ffffffffa9190b0000000000 ............ +7494 22.617772341 127.0.0.1:57433 127.0.0.1:57415 377288152 12 1a00000083f40a0000000000 ............ +7496 22.617958784 127.0.0.1:57433 127.0.0.1:57415 377288164 26 16000000618b1f00000000000100030000000000000000000000 ....a..................... +7498 22.618232012 127.0.0.1:57415 127.0.0.1:57433 3333312079 12 ffffffff83f40a0000000000 ............ +7506 22.646660328 127.0.0.1:57433 127.0.0.1:57415 377288190 12 feffffff98420100a9420100 .....B...B.. +7508 22.651585579 127.0.0.1:57415 127.0.0.1:57433 3333312091 12 1a000000aa190b0000000000 ............ +7510 22.651751757 127.0.0.1:57415 127.0.0.1:57433 3333312103 26 16000000548f6340e25e3140010003000000638b1f0000000000 ....T.c@.^1@......c....... +7512 22.652025700 127.0.0.1:57433 127.0.0.1:57415 377288202 12 ffffffffaa190b0000000000 ............ +7514 22.652336359 127.0.0.1:57433 127.0.0.1:57415 377288214 12 1600000084f40a0000000000 ............ +7516 22.652488232 127.0.0.1:57433 127.0.0.1:57415 377288226 22 12000000638b1f000000000001000300000000000000 ....c................. +7518 22.652699232 127.0.0.1:57415 127.0.0.1:57433 3333312129 12 ffffffff84f40a0000000000 ............ +7524 22.716084719 127.0.0.1:57415 127.0.0.1:57433 3333312141 12 feffffffaa42010098420100 .....B...B.. +7528 22.754047632 127.0.0.1:57415 127.0.0.1:57433 3333312153 12 1a000000ab190b0000000000 ............ +7530 22.754294157 127.0.0.1:57415 127.0.0.1:57433 3333312165 26 16000000548f6340e25e3140010003000000658b1f0000000000 ....T.c@.^1@......e....... +7532 22.754689455 127.0.0.1:57433 127.0.0.1:57415 377288248 12 ffffffffab190b0000000000 ............ +7534 22.755203247 127.0.0.1:57433 127.0.0.1:57415 377288260 12 1600000085f40a0000000000 ............ +7536 22.755365133 127.0.0.1:57433 127.0.0.1:57415 377288272 22 12000000658b1f000000000001000300000000000000 ....e................. +7538 22.755634308 127.0.0.1:57415 127.0.0.1:57433 3333312191 12 ffffffff85f40a0000000000 ............ +7540 22.857688665 127.0.0.1:57415 127.0.0.1:57433 3333312203 12 1a000000ac190b0000000000 ............ +7542 22.857869864 127.0.0.1:57415 127.0.0.1:57433 3333312215 26 16000000548f6340e25e3140010003000000678b1f0000000000 ....T.c@.^1@......g....... +7544 22.858250618 127.0.0.1:57433 127.0.0.1:57415 377288294 12 ffffffffac190b0000000000 ............ +7546 22.858701468 127.0.0.1:57433 127.0.0.1:57415 377288306 12 1600000086f40a0000000000 ............ +7548 22.858862638 127.0.0.1:57433 127.0.0.1:57415 377288318 22 12000000678b1f000000000001000300000000000000 ....g................. +7550 22.859218359 127.0.0.1:57415 127.0.0.1:57433 3333312241 12 ffffffff86f40a0000000000 ............ +7556 22.919434309 127.0.0.1:57415 127.0.0.1:57433 3333312253 12 65000000ad190b0000000000 e........... +7558 22.919621944 127.0.0.1:57415 127.0.0.1:57433 3333312265 101 1e0000001c2118d0c46f33bb010003000000fd10020000000000f0e722c39d01 .....!...o3.................".....?.....3...|8.. +7560 22.919932604 127.0.0.1:57433 127.0.0.1:57415 377288340 12 ffffffffad190b0000000000 ............ +7562 22.920976162 127.0.0.1:57433 127.0.0.1:57415 377288352 12 3400000087f40a0000000000 4........... +7564 22.921139956 127.0.0.1:57433 127.0.0.1:57415 377288364 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([..................w +7566 22.921735048 127.0.0.1:57415 127.0.0.1:57433 3333312366 12 ffffffff87f40a0000000000 ............ +7568 22.922648430 127.0.0.1:57415 127.0.0.1:57433 3333312378 12 1e000000ae190b0000000000 ............ +7570 22.922888517 127.0.0.1:57415 127.0.0.1:57433 3333312390 30 1a00000055ceff62b21b3a50010003000000698b1f000000000000000000 ....U..b..:P......i........... +7572 22.923241615 127.0.0.1:57433 127.0.0.1:57415 377288416 12 ffffffffae190b0000000000 ............ +7574 22.923626423 127.0.0.1:57433 127.0.0.1:57415 377288428 12 1a00000088f40a0000000000 ............ +7576 22.923768520 127.0.0.1:57433 127.0.0.1:57415 377288440 26 16000000698b1f00000000000100030000000000000000000000 ....i..................... +7578 22.924056292 127.0.0.1:57415 127.0.0.1:57433 3333312420 12 ffffffff88f40a0000000000 ............ +7612 22.961488724 127.0.0.1:57415 127.0.0.1:57433 3333312432 12 1a000000af190b0000000000 ............ +7614 22.961691380 127.0.0.1:57415 127.0.0.1:57433 3333312444 26 16000000548f6340e25e31400100030000006b8b1f0000000000 ....T.c@.^1@......k....... +7616 22.962008238 127.0.0.1:57433 127.0.0.1:57415 377288466 12 ffffffffaf190b0000000000 ............ +7618 22.962404728 127.0.0.1:57433 127.0.0.1:57415 377288478 12 1600000089f40a0000000000 ............ +7620 22.962570906 127.0.0.1:57433 127.0.0.1:57415 377288490 22 120000006b8b1f000000000001000300000000000000 ....k................. +7622 22.962891102 127.0.0.1:57415 127.0.0.1:57433 3333312470 12 ffffffff89f40a0000000000 ............ +7628 23.064343691 127.0.0.1:57415 127.0.0.1:57433 3333312482 12 1a000000b0190b0000000000 ............ +7630 23.064527035 127.0.0.1:57415 127.0.0.1:57433 3333312494 26 16000000548f6340e25e31400100030000006d8b1f0000000000 ....T.c@.^1@......m....... +7632 23.064857006 127.0.0.1:57433 127.0.0.1:57415 377288512 12 ffffffffb0190b0000000000 ............ +7634 23.065159798 127.0.0.1:57433 127.0.0.1:57415 377288524 12 160000008af40a0000000000 ............ +7636 23.065324783 127.0.0.1:57433 127.0.0.1:57415 377288536 22 120000006d8b1f000000000001000300000000000000 ....m................. +7638 23.065582991 127.0.0.1:57415 127.0.0.1:57433 3333312520 12 ffffffff8af40a0000000000 ............ +7646 23.146248579 127.0.0.1:57433 127.0.0.1:57415 377288558 12 feffffff99420100aa420100 .....B...B.. +7650 23.167674780 127.0.0.1:57415 127.0.0.1:57433 3333312532 12 1a000000b1190b0000000000 ............ +7652 23.167839050 127.0.0.1:57415 127.0.0.1:57433 3333312544 26 16000000548f6340e25e31400100030000006f8b1f0000000000 ....T.c@.^1@......o....... +7654 23.168285131 127.0.0.1:57433 127.0.0.1:57415 377288570 12 ffffffffb1190b0000000000 ............ +7656 23.168643236 127.0.0.1:57433 127.0.0.1:57415 377288582 12 160000008bf40a0000000000 ............ +7658 23.168812275 127.0.0.1:57433 127.0.0.1:57415 377288594 22 120000006f8b1f000000000001000300000000000000 ....o................. +7660 23.169193268 127.0.0.1:57415 127.0.0.1:57433 3333312570 12 ffffffff8bf40a0000000000 ............ +7665 23.217518330 127.0.0.1:57415 127.0.0.1:57433 3333312582 12 feffffffab42010099420100 .....B...B.. +7668 23.224344730 127.0.0.1:57415 127.0.0.1:57433 3333312594 12 22000000b2190b0000000000 "........... +7670 23.224502087 127.0.0.1:57415 127.0.0.1:57433 3333312606 34 1e0000001c2118d0c46f33bb010003000000fe1002000000000022e922c39d01 .....!...o3..............."."..... +7672 23.224651098 127.0.0.1:57415 127.0.0.1:57433 3333312640 12 43000000b3190b0000000000 C........... +7674 23.224736929 127.0.0.1:57415 127.0.0.1:57433 3333312652 67 3f000000980433cb0cb47c380100030000000100000000fe100200000000003d ?.....3...|8...................=B.....&......... +7676 23.224858761 127.0.0.1:57433 127.0.0.1:57415 377288616 12 ffffffffb2190b0000000000 ............ +7678 23.225110769 127.0.0.1:57433 127.0.0.1:57415 377288628 12 ffffffffb3190b0000000000 ............ +7680 23.225866318 127.0.0.1:57433 127.0.0.1:57415 377288640 12 340000008cf40a0000000000 4........... +7682 23.226121664 127.0.0.1:57433 127.0.0.1:57415 377288652 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................2Fw +7684 23.226395845 127.0.0.1:57415 127.0.0.1:57433 3333312719 12 ffffffff8cf40a0000000000 ............ +7686 23.227514744 127.0.0.1:57415 127.0.0.1:57433 3333312731 12 1e000000b4190b0000000000 ............ +7688 23.227665186 127.0.0.1:57415 127.0.0.1:57433 3333312743 30 1a00000055ceff62b21b3a50010003000000718b1f000000000000000000 ....U..b..:P......q........... +7690 23.228035688 127.0.0.1:57433 127.0.0.1:57415 377288704 12 ffffffffb4190b0000000000 ............ +7692 23.228543758 127.0.0.1:57433 127.0.0.1:57415 377288716 12 1a0000008df40a0000000000 ............ +7694 23.228742838 127.0.0.1:57433 127.0.0.1:57415 377288728 26 16000000718b1f00000000000100030000000000000000000000 ....q..................... +7696 23.229069710 127.0.0.1:57415 127.0.0.1:57433 3333312773 12 ffffffff8df40a0000000000 ............ +7698 23.270827293 127.0.0.1:57415 127.0.0.1:57433 3333312785 12 1a000000b5190b0000000000 ............ +7700 23.271091461 127.0.0.1:57415 127.0.0.1:57433 3333312797 26 16000000548f6340e25e3140010003000000738b1f0000000000 ....T.c@.^1@......s....... +7702 23.271463156 127.0.0.1:57433 127.0.0.1:57415 377288754 12 ffffffffb5190b0000000000 ............ +7704 23.271851540 127.0.0.1:57433 127.0.0.1:57415 377288766 12 160000008ef40a0000000000 ............ +7706 23.272058249 127.0.0.1:57433 127.0.0.1:57415 377288778 22 12000000738b1f000000000001000300000000000000 ....s................. +7708 23.272424221 127.0.0.1:57415 127.0.0.1:57433 3333312823 12 ffffffff8ef40a0000000000 ............ +7714 23.374482870 127.0.0.1:57415 127.0.0.1:57433 3333312835 12 1a000000b6190b0000000000 ............ +7716 23.374701500 127.0.0.1:57415 127.0.0.1:57433 3333312847 26 16000000548f6340e25e3140010003000000758b1f0000000000 ....T.c@.^1@......u....... +7718 23.375077724 127.0.0.1:57433 127.0.0.1:57415 377288800 12 ffffffffb6190b0000000000 ............ +7720 23.375519276 127.0.0.1:57433 127.0.0.1:57415 377288812 12 160000008ff40a0000000000 ............ +7722 23.375721216 127.0.0.1:57433 127.0.0.1:57415 377288824 22 12000000758b1f000000000001000300000000000000 ....u................. +7724 23.375975847 127.0.0.1:57415 127.0.0.1:57433 3333312873 12 ffffffff8ff40a0000000000 ............ +7732 23.478780270 127.0.0.1:57415 127.0.0.1:57433 3333312885 12 1a000000b7190b0000000000 ............ +7734 23.479043245 127.0.0.1:57415 127.0.0.1:57433 3333312897 26 16000000548f6340e25e3140010003000000778b1f0000000000 ....T.c@.^1@......w....... +7736 23.479386091 127.0.0.1:57433 127.0.0.1:57415 377288846 12 ffffffffb7190b0000000000 ............ +7738 23.479821444 127.0.0.1:57433 127.0.0.1:57415 377288858 12 1600000090f40a0000000000 ............ +7740 23.480047941 127.0.0.1:57433 127.0.0.1:57415 377288870 22 12000000778b1f000000000001000300000000000000 ....w................. +7742 23.480410337 127.0.0.1:57415 127.0.0.1:57433 3333312923 12 ffffffff90f40a0000000000 ............ +7748 23.530157804 127.0.0.1:57415 127.0.0.1:57433 3333312935 12 65000000b8190b0000000000 e........... +7750 23.530380964 127.0.0.1:57415 127.0.0.1:57433 3333312947 101 1e0000001c2118d0c46f33bb010003000000ff1002000000000053ea22c39d01 .....!...o3...............S.".....?.....3...|8.. +7752 23.531012535 127.0.0.1:57433 127.0.0.1:57415 377288892 12 ffffffffb8190b0000000000 ............ +7754 23.531796217 127.0.0.1:57433 127.0.0.1:57415 377288904 12 3400000091f40a0000000000 4........... +7756 23.532004833 127.0.0.1:57433 127.0.0.1:57415 377288916 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............O.tw +7758 23.532214880 127.0.0.1:57415 127.0.0.1:57433 3333313048 12 ffffffff91f40a0000000000 ............ +7760 23.533330917 127.0.0.1:57415 127.0.0.1:57433 3333313060 12 1e000000b9190b0000000000 ............ +7762 23.533550501 127.0.0.1:57415 127.0.0.1:57433 3333313072 30 1a00000055ceff62b21b3a50010003000000798b1f000000000000000000 ....U..b..:P......y........... +7764 23.533858299 127.0.0.1:57433 127.0.0.1:57415 377288968 12 ffffffffb9190b0000000000 ............ +7766 23.534230709 127.0.0.1:57433 127.0.0.1:57415 377288980 12 1a00000092f40a0000000000 ............ +7768 23.534420252 127.0.0.1:57433 127.0.0.1:57415 377288992 26 16000000798b1f00000000000100030000000000000000000000 ....y..................... +7770 23.534598827 127.0.0.1:57415 127.0.0.1:57433 3333313102 12 ffffffff92f40a0000000000 ............ +7772 23.581766367 127.0.0.1:57415 127.0.0.1:57433 3333313114 12 1a000000ba190b0000000000 ............ +7774 23.581985712 127.0.0.1:57415 127.0.0.1:57433 3333313126 26 16000000548f6340e25e31400100030000007b8b1f0000000000 ....T.c@.^1@......{....... +7776 23.582322359 127.0.0.1:57433 127.0.0.1:57415 377289018 12 ffffffffba190b0000000000 ............ +7778 23.583219767 127.0.0.1:57433 127.0.0.1:57415 377289030 12 1600000093f40a0000000000 ............ +7780 23.583456755 127.0.0.1:57433 127.0.0.1:57415 377289042 22 120000007b8b1f000000000001000300000000000000 ....{................. +7782 23.583793163 127.0.0.1:57415 127.0.0.1:57433 3333313152 12 ffffffff93f40a0000000000 ............ +7790 23.646642208 127.0.0.1:57433 127.0.0.1:57415 377289064 12 feffffff9a420100ab420100 .....B...B.. +7794 23.684810638 127.0.0.1:57415 127.0.0.1:57433 3333313164 12 1a000000bb190b0000000000 ............ +7796 23.684981108 127.0.0.1:57415 127.0.0.1:57433 3333313176 26 16000000548f6340e25e31400100030000007d8b1f0000000000 ....T.c@.^1@......}....... +7798 23.685528278 127.0.0.1:57433 127.0.0.1:57415 377289076 12 ffffffffbb190b0000000000 ............ +7800 23.685849428 127.0.0.1:57433 127.0.0.1:57415 377289088 12 1600000094f40a0000000000 ............ +7802 23.686017036 127.0.0.1:57433 127.0.0.1:57415 377289100 22 120000007d8b1f000000000001000300000000000000 ....}................. +7804 23.686346531 127.0.0.1:57415 127.0.0.1:57433 3333313202 12 ffffffff94f40a0000000000 ............ +7808 23.718586445 127.0.0.1:57415 127.0.0.1:57433 3333313214 12 feffffffac4201009a420100 .....B...B.. +7812 23.789061546 127.0.0.1:57415 127.0.0.1:57433 3333313226 12 1a000000bc190b0000000000 ............ +7814 23.789278746 127.0.0.1:57415 127.0.0.1:57433 3333313238 26 16000000548f6340e25e31400100030000007f8b1f0000000000 ....T.c@.^1@.............. +7816 23.789607763 127.0.0.1:57433 127.0.0.1:57415 377289122 12 ffffffffbc190b0000000000 ............ +7818 23.790068626 127.0.0.1:57433 127.0.0.1:57415 377289134 12 1600000095f40a0000000000 ............ +7820 23.790227890 127.0.0.1:57433 127.0.0.1:57415 377289146 22 120000007f8b1f000000000001000300000000000000 ...................... +7822 23.790542841 127.0.0.1:57415 127.0.0.1:57433 3333313264 12 ffffffff95f40a0000000000 ............ +7824 23.834377766 127.0.0.1:57415 127.0.0.1:57433 3333313276 12 22000000bd190b0000000000 "........... +7826 23.834550381 127.0.0.1:57415 127.0.0.1:57433 3333313288 34 1e0000001c2118d0c46f33bb010003000000001102000000000083eb22c39d01 .....!...o3................."..... +7828 23.834687948 127.0.0.1:57415 127.0.0.1:57433 3333313322 12 43000000be190b0000000000 C........... +7830 23.834773302 127.0.0.1:57415 127.0.0.1:57433 3333313334 67 3f000000980433cb0cb47c38010003000000010000000000110200000000003d ?.....3...|8...................=B.....&......... +7832 23.835086823 127.0.0.1:57433 127.0.0.1:57415 377289168 12 ffffffffbd190b0000000000 ............ +7834 23.835279465 127.0.0.1:57433 127.0.0.1:57415 377289180 12 ffffffffbe190b0000000000 ............ +7836 23.835926294 127.0.0.1:57433 127.0.0.1:57415 377289192 12 3400000096f40a0000000000 4........... +7838 23.836091280 127.0.0.1:57433 127.0.0.1:57415 377289204 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............=J.w +7840 23.836412668 127.0.0.1:57415 127.0.0.1:57433 3333313401 12 ffffffff96f40a0000000000 ............ +7842 23.837339163 127.0.0.1:57415 127.0.0.1:57433 3333313413 12 1e000000bf190b0000000000 ............ +7844 23.837514877 127.0.0.1:57415 127.0.0.1:57433 3333313425 30 1a00000055ceff62b21b3a50010003000000818b1f000000000000000000 ....U..b..:P.................. +7846 23.837916613 127.0.0.1:57433 127.0.0.1:57415 377289256 12 ffffffffbf190b0000000000 ............ +7848 23.838237762 127.0.0.1:57433 127.0.0.1:57415 377289268 12 1a00000097f40a0000000000 ............ +7850 23.838488102 127.0.0.1:57433 127.0.0.1:57415 377289280 26 16000000818b1f00000000000100030000000000000000000000 .......................... +7852 23.838673353 127.0.0.1:57415 127.0.0.1:57433 3333313455 12 ffffffff97f40a0000000000 ............ +7858 23.892096758 127.0.0.1:57415 127.0.0.1:57433 3333313467 12 1a000000c0190b0000000000 ............ +7860 23.892312288 127.0.0.1:57415 127.0.0.1:57433 3333313479 26 16000000548f6340e25e3140010003000000838b1f0000000000 ....T.c@.^1@.............. +7862 23.892575741 127.0.0.1:57433 127.0.0.1:57415 377289306 12 ffffffffc0190b0000000000 ............ +7864 23.893146276 127.0.0.1:57433 127.0.0.1:57415 377289318 12 1600000098f40a0000000000 ............ +7866 23.893317938 127.0.0.1:57433 127.0.0.1:57415 377289330 22 12000000838b1f000000000001000300000000000000 ...................... +7868 23.893586159 127.0.0.1:57415 127.0.0.1:57433 3333313505 12 ffffffff98f40a0000000000 ............ +7876 23.994761467 127.0.0.1:57415 127.0.0.1:57433 3333313517 12 1a000000c1190b0000000000 ............ +7878 23.994992018 127.0.0.1:57415 127.0.0.1:57433 3333313529 26 16000000548f6340e25e3140010003000000858b1f0000000000 ....T.c@.^1@.............. +7880 23.995422840 127.0.0.1:57433 127.0.0.1:57415 377289352 12 ffffffffc1190b0000000000 ............ +7882 23.996112347 127.0.0.1:57433 127.0.0.1:57415 377289364 12 1600000099f40a0000000000 ............ +7884 23.996302843 127.0.0.1:57433 127.0.0.1:57415 377289376 22 12000000858b1f000000000001000300000000000000 ...................... +7886 23.996654987 127.0.0.1:57415 127.0.0.1:57433 3333313555 12 ffffffff99f40a0000000000 ............ +7892 24.097863197 127.0.0.1:57415 127.0.0.1:57433 3333313567 12 1a000000c2190b0000000000 ............ +691 0.000000000 ::1:53692 ::1:49704 2123108705 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +693 0.000641823 ::1:49704 ::1:53692 4243993040 84 05000c03100000005400000002000000d016d016b7b900000600343937303400 ........T.................49704..........]...... +695 0.000822067 ::1:53692 ::1:49704 2123108821 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +697 0.001075983 ::1:49704 ::1:53692 4243993124 44 05000203100000002c00000002000000140000000000000000000000af3620d4 ........,....................6 ...rJ.."jR@.. +699 0.001308918 ::1:53692 ::1:49704 2123108861 72 05000e03100000004800000003000000d016d016b7b900000100000001000100 ........H.......................K....k.F.@.`..Q. +701 0.001465321 ::1:49704 ::1:53692 4243993168 56 05000f03100000003800000003000000d016d016b7b900000000000001000000 ........8............................].......... +703 0.001628160 ::1:53692 ::1:49704 2123108933 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........6 . +705 0.004277706 ::1:49704 ::1:53692 4243993224 28 05000203100000001c00000003000000040000000100000001000000 ............................ +707 0.004467010 ::1:53692 ::1:49704 2123109029 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........6 . +709 0.004681587 ::1:49704 ::1:53692 4243993252 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +711 0.005007744 ::1:53692 ::1:49704 2123109089 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6 . +713 0.005218506 ::1:49704 ::1:53692 4243993344 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +715 0.005399942 ::1:53692 ::1:49704 2123109209 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........6 . +717 0.005584478 ::1:49704 ::1:53692 4243993376 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +719 0.005754709 ::1:53692 ::1:49704 2123109333 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........6 . +721 0.005976915 ::1:49704 ::1:53692 4243993408 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +723 0.006137609 ::1:53692 ::1:49704 2123109451 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6 . +725 0.006361961 ::1:49704 ::1:53692 4243993440 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +727 0.006497622 ::1:53692 ::1:49704 2123109571 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6 . +729 0.006669044 ::1:49704 ::1:53692 4243993472 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +731 0.006851435 ::1:53692 ::1:49704 2123109701 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6 . +733 0.007059813 ::1:49704 ::1:53692 4243993504 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +735 0.007228851 ::1:53692 ::1:49704 2123109831 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........6 . +737 0.007421017 ::1:49704 ::1:53692 4243993536 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +739 0.007628441 ::1:53692 ::1:49704 2123109973 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........6 . +741 0.007828474 ::1:49704 ::1:53692 4243993568 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +743 0.008071423 ::1:53692 ::1:49704 2123110089 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6 . +745 0.008242607 ::1:49704 ::1:53692 4243993600 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +747 0.008407831 ::1:53692 ::1:49704 2123110219 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........6 . +749 0.008583546 ::1:49704 ::1:53692 4243993632 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +751 0.008750677 ::1:53692 ::1:49704 2123110347 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........6 . +753 0.008981466 ::1:49704 ::1:53692 4243993664 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +755 0.009572744 ::1:53692 ::1:49704 2123110473 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........6 . +757 0.009763956 ::1:49704 ::1:53692 4243993696 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +759 0.010001898 ::1:53692 ::1:49704 2123110605 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........6 . +761 0.010179043 ::1:49704 ::1:53692 4243993728 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +784 0.123556852 ::1:53692 ::1:49704 2123110757 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +786 0.123846531 ::1:49704 ::1:53692 4243993760 44 05000203100000002c00000012000000140000000000000000000000b3028f1a ........,......................./MwL..d.>?.w +788 0.124334574 ::1:53692 ::1:49704 2123110797 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K............ +790 0.125912905 ::1:49704 ::1:53692 4243993804 28 05000203100000001c00000013000000040000000100000001000000 ............................ +792 0.126117706 ::1:53692 ::1:49704 2123110905 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +794 0.126344442 ::1:49704 ::1:53692 4243993832 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +796 0.126599789 ::1:53692 ::1:49704 2123110965 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +798 0.126809835 ::1:49704 ::1:53692 4243993924 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +800 0.127020121 ::1:53692 ::1:49704 2123111097 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +802 0.127207994 ::1:49704 ::1:53692 4243993956 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +804 0.127376795 ::1:53692 ::1:49704 2123111233 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +806 0.127563000 ::1:49704 ::1:53692 4243993988 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +808 0.127728224 ::1:53692 ::1:49704 2123111363 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +810 0.127953291 ::1:49704 ::1:53692 4243994020 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +812 0.128145695 ::1:53692 ::1:49704 2123111495 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +814 0.128332853 ::1:49704 ::1:53692 4243994052 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +816 0.128500462 ::1:53692 ::1:49704 2123111637 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +818 0.128684521 ::1:49704 ::1:53692 4243994084 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +820 0.128848791 ::1:53692 ::1:49704 2123111779 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +822 0.129042864 ::1:49704 ::1:53692 4243994116 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +824 0.129217863 ::1:53692 ::1:49704 2123111933 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +826 0.129319906 ::1:49704 ::1:53692 4243994148 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +828 0.129485369 ::1:53692 ::1:49704 2123112061 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +830 0.129667997 ::1:49704 ::1:53692 4243994180 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +832 0.129831553 ::1:53692 ::1:49704 2123112203 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +834 0.130090237 ::1:49704 ::1:53692 4243994212 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +836 0.130259275 ::1:53692 ::1:49704 2123112343 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +838 0.130443573 ::1:49704 ::1:53692 4243994244 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +844 0.148690224 ::1:53692 ::1:49704 2123112481 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +846 0.148890018 ::1:49704 ::1:53692 4243994276 44 05000203100000002c00000020000000140000000000000000000000cec45d78 ........,... .................]x.>.F.O....G. +848 0.149174690 ::1:53692 ::1:49704 2123112521 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K..........]x +850 0.151267290 ::1:49704 ::1:53692 4243994320 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +852 0.151446342 ::1:53692 ::1:49704 2123112625 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K..........]x +854 0.151602745 ::1:49704 ::1:53692 4243994348 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +856 0.151881218 ::1:53692 ::1:49704 2123112685 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K..........]x +858 0.152102709 ::1:49704 ::1:53692 4243994440 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +860 0.152261257 ::1:53692 ::1:49704 2123112813 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K..........]x +862 0.152444601 ::1:49704 ::1:53692 4243994472 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +864 0.152591705 ::1:53692 ::1:49704 2123112945 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K..........]x +866 0.152734756 ::1:49704 ::1:53692 4243994504 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +868 0.152930975 ::1:53692 ::1:49704 2123113071 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K..........]x +870 0.153093100 ::1:49704 ::1:53692 4243994536 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +872 0.153242826 ::1:53692 ::1:49704 2123113199 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K..........]x +874 0.153386831 ::1:49704 ::1:53692 4243994568 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +876 0.153551340 ::1:53692 ::1:49704 2123113337 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K..........]x +878 0.153719902 ::1:49704 ::1:53692 4243994600 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +880 0.153891802 ::1:53692 ::1:49704 2123113475 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K..........]x +882 0.154035091 ::1:49704 ::1:53692 4243994632 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +884 0.154184341 ::1:53692 ::1:49704 2123113625 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K..........]x +886 0.154329777 ::1:49704 ::1:53692 4243994664 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +888 0.154475212 ::1:53692 ::1:49704 2123113749 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K..........]x +890 0.154661894 ::1:49704 ::1:53692 4243994696 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +892 0.154813290 ::1:53692 ::1:49704 2123113887 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K..........]x +894 0.154975176 ::1:49704 ::1:53692 4243994728 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +896 0.155115843 ::1:53692 ::1:49704 2123114023 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K..........]x +898 0.155258417 ::1:49704 ::1:53692 4243994760 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +900 0.155452967 ::1:53692 ::1:49704 2123114157 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........]x +902 0.155599833 ::1:49704 ::1:53692 4243994792 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +904 0.155771971 ::1:53692 ::1:49704 2123114297 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K..........]x +906 0.155963421 ::1:49704 ::1:53692 4243994824 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +939 0.266795397 ::1:53692 ::1:49704 2123114443 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +941 0.267033577 ::1:49704 ::1:53692 4243994856 44 05000203100000002c000000300000001400000000000000000000001952a003 ........,...0................R...SnG.8N...RM +943 0.267201185 ::1:53692 ::1:49704 2123114483 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K.........R.. +945 0.268643856 ::1:49704 ::1:53692 4243994900 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +947 0.268781662 ::1:53692 ::1:49704 2123114595 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K.........R.. +949 0.268978119 ::1:49704 ::1:53692 4243994928 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +951 0.269190073 ::1:53692 ::1:49704 2123114655 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K.........R.. +953 0.269407988 ::1:49704 ::1:53692 4243995020 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +955 0.269546270 ::1:53692 ::1:49704 2123114791 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K.........R.. +957 0.269738197 ::1:49704 ::1:53692 4243995052 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +959 0.269915104 ::1:53692 ::1:49704 2123114931 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K.........R.. +961 0.270116329 ::1:49704 ::1:53692 4243995084 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +963 0.270250320 ::1:53692 ::1:49704 2123115065 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K.........R.. +965 0.270417452 ::1:49704 ::1:53692 4243995116 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +967 0.270551205 ::1:53692 ::1:49704 2123115201 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K.........R.. +969 0.270715952 ::1:49704 ::1:53692 4243995148 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +971 0.270848036 ::1:53692 ::1:49704 2123115347 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K.........R.. +973 0.271016121 ::1:49704 ::1:53692 4243995180 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +975 0.271146774 ::1:53692 ::1:49704 2123115493 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K.........R.. +977 0.271312475 ::1:49704 ::1:53692 4243995212 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +979 0.271445990 ::1:53692 ::1:49704 2123115651 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K.........R.. +981 0.271608829 ::1:49704 ::1:53692 4243995244 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +983 0.271788120 ::1:53692 ::1:49704 2123115783 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K.........R.. +985 0.271979570 ::1:49704 ::1:53692 4243995276 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +987 0.272111893 ::1:53692 ::1:49704 2123115929 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K.........R.. +989 0.272275686 ::1:49704 ::1:53692 4243995308 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +991 0.272408247 ::1:53692 ::1:49704 2123116073 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K.........R.. +993 0.272572517 ::1:49704 ::1:53692 4243995340 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +995 0.272753239 ::1:53692 ::1:49704 2123116215 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K.........R.. +997 0.272946596 ::1:49704 ::1:53692 4243995372 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +999 0.273088932 ::1:53692 ::1:49704 2123116363 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K.........R.. +1001 0.273253441 ::1:49704 ::1:53692 4243995404 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +1067 0.400719404 ::1:53692 ::1:49704 2123116517 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +1069 0.400998592 ::1:49704 ::1:53692 4243995436 44 05000203100000002c00000040000000140000000000000000000000dd57216c ........,...@................W!l..OI.8rv...L +1071 0.401167631 ::1:53692 ::1:49704 2123116557 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K.........W!l +1073 0.402770281 ::1:49704 ::1:53692 4243995480 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +1075 0.402947187 ::1:53692 ::1:49704 2123116649 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K.........W!l +1077 0.403171539 ::1:49704 ::1:53692 4243995508 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1079 0.403396368 ::1:53692 ::1:49704 2123116709 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K.........W!l +1081 0.403636932 ::1:49704 ::1:53692 4243995600 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1083 0.403784037 ::1:53692 ::1:49704 2123116825 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K.........W!l +1085 0.404013395 ::1:49704 ::1:53692 4243995632 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1087 0.404159546 ::1:53692 ::1:49704 2123116945 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K.........W!l +1089 0.404265404 ::1:49704 ::1:53692 4243995664 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1091 0.404405594 ::1:53692 ::1:49704 2123117059 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K.........W!l +1093 0.404577494 ::1:49704 ::1:53692 4243995696 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1095 0.404713869 ::1:53692 ::1:49704 2123117175 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K.........W!l +1097 0.404921532 ::1:49704 ::1:53692 4243995728 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1099 0.405064583 ::1:53692 ::1:49704 2123117301 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K.........W!l +1101 0.405239105 ::1:49704 ::1:53692 4243995760 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1103 0.405436516 ::1:53692 ::1:49704 2123117427 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K.........W!l +1105 0.405644894 ::1:49704 ::1:53692 4243995792 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1107 0.405834913 ::1:53692 ::1:49704 2123117565 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K.........W!l +1109 0.406034470 ::1:49704 ::1:53692 4243995824 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1111 0.406237125 ::1:53692 ::1:49704 2123117677 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K.........W!l +1113 0.406415224 ::1:49704 ::1:53692 4243995856 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1115 0.406603813 ::1:53692 ::1:49704 2123117803 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K.........W!l +1117 0.406792402 ::1:49704 ::1:53692 4243995888 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1119 0.406988144 ::1:53692 ::1:49704 2123117927 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K.........W!l +1121 0.407183647 ::1:49704 ::1:53692 4243995920 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1123 0.407426119 ::1:53692 ::1:49704 2123118049 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K.........W!l +1125 0.407626390 ::1:49704 ::1:53692 4243995952 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1127 0.407912016 ::1:53692 ::1:49704 2123118177 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K.........W!l +1129 0.408338070 ::1:49704 ::1:53692 4243995984 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1131 0.408592701 ::1:53692 ::1:49704 2123118311 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K.........W!l +1133 0.408778906 ::1:49704 ::1:53692 4243996016 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1135 0.409004211 ::1:53692 ::1:49704 2123118441 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K.........W!l +1137 0.409251690 ::1:49704 ::1:53692 4243996048 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3748 8.981550455 ::1:53692 ::1:49704 2123118569 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3750 8.981777191 ::1:49704 ::1:53692 4243996080 44 05000203100000002c00000052000000140000000000000000000000ca1b92eb ........,...R...................hD.B...I.... +3752 8.981946707 ::1:53692 ::1:49704 2123118609 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K............ +3754 8.983931780 ::1:49704 ::1:53692 4243996124 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3756 8.984093189 ::1:53692 ::1:49704 2123118709 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K............ +3758 8.984358549 ::1:49704 ::1:53692 4243996152 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3760 8.984588861 ::1:53692 ::1:49704 2123118769 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K............ +3762 8.984853268 ::1:49704 ::1:53692 4243996244 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3764 8.984995365 ::1:53692 ::1:49704 2123118893 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K............ +3766 8.985198736 ::1:49704 ::1:53692 4243996276 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3768 8.985353470 ::1:53692 ::1:49704 2123119021 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K............ +3770 8.985517025 ::1:49704 ::1:53692 4243996308 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3772 8.985651255 ::1:53692 ::1:49704 2123119143 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K............ +3774 8.985877275 ::1:49704 ::1:53692 4243996340 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3776 8.986020565 ::1:53692 ::1:49704 2123119267 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K............ +3778 8.986235142 ::1:49704 ::1:53692 4243996372 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3780 8.986373186 ::1:53692 ::1:49704 2123119401 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K............ +3782 8.986534357 ::1:49704 ::1:53692 4243996404 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3784 8.986668110 ::1:53692 ::1:49704 2123119535 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K............ +3786 8.986830711 ::1:49704 ::1:53692 4243996436 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3788 8.986963749 ::1:53692 ::1:49704 2123119681 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K............ +3790 8.987121820 ::1:49704 ::1:53692 4243996468 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3792 8.987281084 ::1:53692 ::1:49704 2123119801 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K............ +3794 8.987447739 ::1:49704 ::1:53692 4243996500 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3796 8.987630606 ::1:53692 ::1:49704 2123119935 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K............ +3798 8.987799406 ::1:49704 ::1:53692 4243996532 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3800 8.987941027 ::1:53692 ::1:49704 2123120067 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K............ +3802 8.988103390 ::1:49704 ::1:53692 4243996564 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +3804 8.988342762 ::1:53692 ::1:49704 2123120197 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K............ +3806 8.988506079 ::1:49704 ::1:53692 4243996596 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +3808 8.988667250 ::1:53692 ::1:49704 2123120341 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K............ +3810 8.988832235 ::1:49704 ::1:53692 4243996628 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +3812 8.988974094 ::1:53692 ::1:49704 2123120489 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K............ +3814 8.989135027 ::1:49704 ::1:53692 4243996660 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +3816 8.989405155 ::1:53692 ::1:49704 2123120635 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K............ +3818 8.989569664 ::1:49704 ::1:53692 4243996692 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3824 9.066673040 ::1:53692 ::1:49704 2123120793 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3826 9.066903114 ::1:49704 ::1:53692 4243996724 44 05000203100000002c00000064000000140000000000000000000000bc28a26b ........,...d................(.k.M.G.....g.. +3828 9.067176342 ::1:53692 ::1:49704 2123120833 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K.........(.k +3830 9.069084406 ::1:49704 ::1:53692 4243996768 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3832 9.069187403 ::1:53692 ::1:49704 2123120917 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K.........(.k +3834 9.069499016 ::1:49704 ::1:53692 4243996796 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3839 9.069747925 ::1:53692 ::1:49704 2123120977 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K.........(.k +3842 9.070006132 ::1:49704 ::1:53692 4243996888 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3845 9.070163727 ::1:53692 ::1:49704 2123121085 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K.........(.k +3848 9.070348978 ::1:49704 ::1:53692 4243996920 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3850 9.070513964 ::1:53692 ::1:49704 2123121197 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K.........(.k +3853 9.070685387 ::1:49704 ::1:53692 4243996952 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3858 9.070843458 ::1:53692 ::1:49704 2123121303 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K.........(.k +3861 9.071073771 ::1:49704 ::1:53692 4243996984 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3864 9.071276426 ::1:53692 ::1:49704 2123121411 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K.........(.k +3866 9.071393013 ::1:49704 ::1:53692 4243997016 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3868 9.071578503 ::1:53692 ::1:49704 2123121529 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K.........(.k +3870 9.071776628 ::1:49704 ::1:53692 4243997048 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3872 9.071992397 ::1:53692 ::1:49704 2123121647 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K.........(.k +3874 9.072211981 ::1:49704 ::1:53692 4243997080 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3876 9.072369576 ::1:53692 ::1:49704 2123121777 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K.........(.k +3878 9.072530270 ::1:49704 ::1:53692 4243997112 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3880 9.072682858 ::1:53692 ::1:49704 2123121881 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K.........(.k +3882 9.072867393 ::1:49704 ::1:53692 4243997144 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3884 9.073085308 ::1:53692 ::1:49704 2123121999 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K.........(.k +3886 9.073312998 ::1:49704 ::1:53692 4243997176 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3888 9.073470592 ::1:53692 ::1:49704 2123122115 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K.........(.k +3890 9.073632240 ::1:49704 ::1:53692 4243997208 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3892 9.074203730 ::1:53692 ::1:49704 2123122229 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K.........(.k +3894 9.074359894 ::1:49704 ::1:53692 4243997240 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3896 9.074560404 ::1:53692 ::1:49704 2123122357 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K.........(.k +3898 9.074805975 ::1:49704 ::1:53692 4243997272 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3900 9.075101376 ::1:53692 ::1:49704 2123122477 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K.........(.k +3902 9.075492620 ::1:49704 ::1:53692 4243997304 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3904 9.075757027 ::1:53692 ::1:49704 2123122597 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K.........(.k +3906 9.075998068 ::1:49704 ::1:53692 4243997336 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3908 9.076191187 ::1:53692 ::1:49704 2123122719 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K.........(.k +3910 9.076361656 ::1:49704 ::1:53692 4243997368 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3912 9.076581240 ::1:53692 ::1:49704 2123122853 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K.........(.k +3914 9.076746941 ::1:49704 ::1:53692 4243997400 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3916 9.076939821 ::1:53692 ::1:49704 2123122985 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K.........(.k +3918 9.077180862 ::1:49704 ::1:53692 4243997432 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3920 9.077379704 ::1:53692 ::1:49704 2123123115 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K.........(.k +3922 9.077586889 ::1:49704 ::1:53692 4243997464 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3924 9.077831507 ::1:53692 ::1:49704 2123123253 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K.........(.k +3926 9.078051567 ::1:49704 ::1:53692 4243997496 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3928 9.078277111 ::1:53692 ::1:49704 2123123397 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K.........(.k +3930 9.078487873 ::1:49704 ::1:53692 4243997528 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3932 9.078691721 ::1:53692 ::1:49704 2123123541 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K.........(.k +3934 9.078851223 ::1:49704 ::1:53692 4243997560 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3936 9.079096794 ::1:53692 ::1:49704 2123123657 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K.........(.k +3938 9.079256296 ::1:49704 ::1:53692 4243997592 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3940 9.079449892 ::1:53692 ::1:49704 2123123787 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K.........(.k +3942 9.079648733 ::1:49704 ::1:53692 4243997624 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3944 9.079836607 ::1:53692 ::1:49704 2123123925 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........(.k +3946 9.080047369 ::1:49704 ::1:53692 4243997656 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3948 9.080233812 ::1:53692 ::1:49704 2123124055 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........(.k +3950 9.080444813 ::1:49704 ::1:53692 4243997688 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3952 9.080636978 ::1:53692 ::1:49704 2123124177 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K.........(.k +3954 9.080801487 ::1:49704 ::1:53692 4243997720 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3956 9.081028461 ::1:53692 ::1:49704 2123124299 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........(.k +3958 9.081219435 ::1:49704 ::1:53692 4243997752 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3960 9.081427574 ::1:53692 ::1:49704 2123124433 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........(.k +3962 9.081597090 ::1:49704 ::1:53692 4243997784 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3964 9.081789494 ::1:53692 ::1:49704 2123124561 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........(.k +3966 9.082020521 ::1:49704 ::1:53692 4243997816 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3972 9.116145372 ::1:53692 ::1:49704 2123124685 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K.........(.k +3974 9.116387606 ::1:49704 ::1:53692 4243997848 28 05000203100000001c00000085000000040000000100000001000000 ............................ +4010 9.153834820 ::1:53692 ::1:49704 2123125201 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4012 9.154084921 ::1:49704 ::1:53692 4243997876 44 05000203100000002c000000860000001400000000000000000000008cb1298a ........,.....................)..n.@..=..... +4014 9.154275894 ::1:53692 ::1:49704 2123125241 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K..........). +4016 9.156245947 ::1:49704 ::1:53692 4243997920 28 05000203100000001c00000087000000040000000100000001000000 ............................ +4017 9.156444311 ::1:53692 ::1:49704 2123125353 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........). +4019 9.156547308 ::1:49704 ::1:53692 4243997948 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4021 9.156785488 ::1:53692 ::1:49704 2123125413 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K..........). +4023 9.156977177 ::1:49704 ::1:53692 4243998040 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +4025 9.157130003 ::1:53692 ::1:49704 2123125549 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........). +4027 9.157286406 ::1:49704 ::1:53692 4243998072 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +4029 9.157456398 ::1:53692 ::1:49704 2123125689 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........). +4031 9.157648802 ::1:49704 ::1:53692 4243998104 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +4033 9.157807112 ::1:53692 ::1:49704 2123125823 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K..........). +4035 9.158013105 ::1:49704 ::1:53692 4243998136 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +4037 9.158162355 ::1:53692 ::1:49704 2123125959 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4039 9.158365726 ::1:49704 ::1:53692 4243998168 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +4041 9.158515453 ::1:53692 ::1:49704 2123126105 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4043 9.158666372 ::1:49704 ::1:53692 4243998200 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +4045 9.158811331 ::1:53692 ::1:49704 2123126251 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K..........). +4047 9.158960819 ::1:49704 ::1:53692 4243998232 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +4049 9.159102678 ::1:53692 ::1:49704 2123126409 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........). +4051 9.159306526 ::1:49704 ::1:53692 4243998264 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +4053 9.159555912 ::1:53692 ::1:49704 2123126541 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4055 9.159791231 ::1:49704 ::1:53692 4243998296 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +4057 9.159958601 ::1:53692 ::1:49704 2123126687 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K..........). +4059 9.160196543 ::1:49704 ::1:53692 4243998328 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +4061 9.160399675 ::1:53692 ::1:49704 2123126831 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........). +4063 9.160639524 ::1:49704 ::1:53692 4243998360 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +4065 9.160867214 ::1:53692 ::1:49704 2123126973 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K..........). +4067 9.161028385 ::1:49704 ::1:53692 4243998392 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +4069 9.161208630 ::1:53692 ::1:49704 2123127133 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K..........). +4071 9.161405325 ::1:49704 ::1:53692 4243998424 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +4073 9.161628485 ::1:53692 ::1:49704 2123127289 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K..........). +4075 9.161799908 ::1:49704 ::1:53692 4243998456 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +4077 9.161964893 ::1:53692 ::1:49704 2123127443 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K..........). +4079 9.162117958 ::1:49704 ::1:53692 4243998488 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +4081 9.162269592 ::1:53692 ::1:49704 2123127589 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K..........). +4083 9.162914515 ::1:49704 ::1:53692 4243998520 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +4085 9.163070202 ::1:53692 ::1:49704 2123127743 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........). +4087 9.163224697 ::1:49704 ::1:53692 4243998552 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +4089 9.163378000 ::1:53692 ::1:49704 2123127893 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........). +4091 9.163571119 ::1:49704 ::1:53692 4243998584 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +4093 9.163735390 ::1:53692 ::1:49704 2123128045 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........). +4095 9.163887978 ::1:49704 ::1:53692 4243998616 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +4097 9.164063454 ::1:53692 ::1:49704 2123128185 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K..........). +4099 9.164243460 ::1:49704 ::1:53692 4243998648 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +4101 9.164460897 ::1:53692 ::1:49704 2123128333 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........). +4103 9.164641857 ::1:49704 ::1:53692 4243998680 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +4105 9.164801598 ::1:53692 ::1:49704 2123128495 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K..........). +4107 9.164958000 ::1:49704 ::1:53692 4243998712 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +4109 9.165226936 ::1:53692 ::1:49704 2123128667 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K..........). +4111 9.165448666 ::1:49704 ::1:53692 4243998744 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +4117 9.173780918 ::1:53692 ::1:49704 2123128811 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4121 9.173970699 ::1:49704 ::1:53692 4243998776 44 05000203100000002c000000a0000000140000000000000000000000b7c932e9 ........,.....................2...&G....7... +4125 9.174151421 ::1:53692 ::1:49704 2123128851 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K..........2. +4135 9.175962448 ::1:49704 ::1:53692 4243998820 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +4137 9.176122189 ::1:53692 ::1:49704 2123128979 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........2. +4139 9.176326036 ::1:49704 ::1:53692 4243998848 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4141 9.176626921 ::1:53692 ::1:49704 2123129039 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........2. +4143 9.176826000 ::1:49704 ::1:53692 4243998940 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +4145 9.176988125 ::1:53692 ::1:49704 2123129191 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K..........2. +4147 9.177153826 ::1:49704 ::1:53692 4243998972 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +4149 9.177306652 ::1:53692 ::1:49704 2123129347 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........2. +4151 9.177496195 ::1:49704 ::1:53692 4243999004 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +4153 9.177650213 ::1:53692 ::1:49704 2123129497 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........2. +4155 9.177807808 ::1:49704 ::1:53692 4243999036 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +4157 9.177958250 ::1:53692 ::1:49704 2123129649 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........2. +4159 9.178117514 ::1:49704 ::1:53692 4243999068 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +4161 9.178267717 ::1:53692 ::1:49704 2123129811 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........2. +4163 9.178512335 ::1:49704 ::1:53692 4243999100 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +4165 9.178698063 ::1:53692 ::1:49704 2123129973 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K..........2. +4167 9.178864241 ::1:49704 ::1:53692 4243999132 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +4169 9.179014683 ::1:53692 ::1:49704 2123130147 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K..........2. +4171 9.179170847 ::1:49704 ::1:53692 4243999164 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +4173 9.179359198 ::1:53692 ::1:49704 2123130295 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........2. +4175 9.179608583 ::1:49704 ::1:53692 4243999196 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +4177 9.180224180 ::1:53692 ::1:49704 2123130457 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K..........2. +4179 9.180439234 ::1:49704 ::1:53692 4243999228 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +4181 9.180617094 ::1:53692 ::1:49704 2123130617 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K..........2. +4183 9.180784941 ::1:49704 ::1:53692 4243999260 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +4185 9.181010962 ::1:53692 ::1:49704 2123130775 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K..........2. +4187 9.181167841 ::1:49704 ::1:53692 4243999292 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +4189 9.181364059 ::1:53692 ::1:49704 2123130945 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K..........2. +4191 9.181527138 ::1:49704 ::1:53692 4243999324 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +4197 9.188490391 ::1:53692 ::1:49704 2123131127 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4199 9.188665152 ::1:49704 ::1:53692 4243999356 44 05000203100000002c000000b0000000140000000000000000000000d6368360 ........,....................6.`/..N.:...*.. +4201 9.188811302 ::1:53692 ::1:49704 2123131167 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........6.` +4203 9.190430880 ::1:49704 ::1:53692 4243999400 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +4205 9.190572977 ::1:53692 ::1:49704 2123131263 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........6.` +4207 9.190734625 ::1:49704 ::1:53692 4243999428 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4209 9.190994501 ::1:53692 ::1:49704 2123131323 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6.` +4211 9.191169262 ::1:49704 ::1:53692 4243999520 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +4213 9.191309929 ::1:53692 ::1:49704 2123131443 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........6.` +4215 9.191513777 ::1:49704 ::1:53692 4243999552 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +4217 9.191643715 ::1:53692 ::1:49704 2123131567 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........6.` +4219 9.191792488 ::1:49704 ::1:53692 4243999584 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +4221 9.191920042 ::1:53692 ::1:49704 2123131685 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........6.` +4223 9.192068577 ::1:49704 ::1:53692 4243999616 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +4225 9.192197084 ::1:53692 ::1:49704 2123131805 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4227 9.192348242 ::1:49704 ::1:53692 4243999648 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +4229 9.192506075 ::1:53692 ::1:49704 2123131935 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4231 9.192654371 ::1:49704 ::1:53692 4243999680 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +4233 9.192785025 ::1:53692 ::1:49704 2123132065 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........6.` +4235 9.193014383 ::1:49704 ::1:53692 4243999712 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +4237 9.193143368 ::1:53692 ::1:49704 2123132207 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........6.` +4239 9.193320990 ::1:49704 ::1:53692 4243999744 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +4241 9.193496943 ::1:53692 ::1:49704 2123132323 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4243 9.193653822 ::1:49704 ::1:53692 4243999776 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +4245 9.193823814 ::1:53692 ::1:49704 2123132453 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........6.` +4247 9.193976402 ::1:49704 ::1:53692 4243999808 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +4249 9.194106817 ::1:53692 ::1:49704 2123132581 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........6.` +4251 9.194259405 ::1:49704 ::1:53692 4243999840 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +4253 9.194484711 ::1:53692 ::1:49704 2123132707 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........6.` +4255 9.194634199 ::1:49704 ::1:53692 4243999872 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +4257 9.194814682 ::1:53692 ::1:49704 2123132833 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........6.` +4259 9.195093393 ::1:49704 ::1:53692 4243999904 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +4261 9.195235968 ::1:53692 ::1:49704 2123132965 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........6.` +4263 9.195416212 ::1:49704 ::1:53692 4243999936 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +4265 9.195554733 ::1:53692 ::1:49704 2123133095 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........6.` +4267 9.195737600 ::1:49704 ::1:53692 4243999968 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +4269 9.195944071 ::1:53692 ::1:49704 2123133233 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........6.` +4271 9.196202040 ::1:49704 ::1:53692 4244000000 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4273 9.196380615 ::1:53692 ::1:49704 2123133369 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........6.` +4275 9.196569681 ::1:49704 ::1:53692 4244000032 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4277 9.196796417 ::1:53692 ::1:49704 2123133501 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........6.` +4279 9.196959019 ::1:49704 ::1:53692 4244000064 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4281 9.197156906 ::1:53692 ::1:49704 2123133643 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........6.` +4283 9.197313547 ::1:49704 ::1:53692 4244000096 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4293 9.234714031 ::1:53692 ::1:49704 2123133791 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K.........(.k +4295 9.235087156 ::1:49704 ::1:53692 4244000128 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4317 9.312241554 ::1:53692 ::1:49704 2123134081 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K.........(.k +4319 9.312534809 ::1:49704 ::1:53692 4244000156 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +6929 0.000000000 fe80::3608:256c:365:cc73:53725 fe80::3608:256c:365:cc73:55555 2214582058 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +6941 0.065649509 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:53725 2180444376 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +130 0.000000000 fe80::3608:256c:365:cc73:53684 fe80::3608:256c:365:cc73:55555 1807756332 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +154 0.065192461 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:53684 4169135146 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +2347 0.000000000 fe80::3608:256c:365:cc73:53701 fe80::3608:256c:365:cc73:55555 264333083 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +2399 0.067965984 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:53701 348364391 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +4536 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148877305 1284 17030304ff000000000000053bebb682c20d0ce474e24a59458562efa03ac29b ............;.......t.JYE.b..:.....3..s.w....wu{ +4538 0.005960226 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088296362 54 170303003100000000000005c0f9e83e5cb278c1c198608541909442af1f641c ....1..........>\.x...`.A..B..d...(u..w...`/(?J. +4540 0.006425381 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148878589 105 1703030064000000000000053cdfdd9baed5d13469af24d21d6a512a26f12955 ....d.......<......4i.$..jQ*&.)U...k=u.......3.. +4542 0.007734537 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088296416 264 170303010300000000000005c176486bec4807daa45b0c23022e0954e9e0e5e7 .............vHk.H...[.#...T.....EWL....)=...>.^ +4544 0.008189917 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088296680 34 170303001d00000000000005c2f8a175f2a3170c782bd2716f5ac4f3c1e91010 ...............u....x+.qoZ.......F +6466 7.097607851 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148878694 1284 17030304ff000000000000053dfd7cd194c7700a9011c91016c55453738d2289 ............=.|...p.......TSs.".....#./.Q...R... +6468 7.103084803 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088296714 54 170303003100000000000005c3001b78826d5eb6399827823804e30d448c9a45 ....1..........x.m^.9.'.8...D..EXe".H)..*.).r.'x +6470 7.103571892 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148879978 117 1703030070000000000000053e0f7f50a95afe4b09e4933e7b9a96ff7e9d8651 ....p.......>..P.Z.K...>{...~..Q^....3..IA..ct.| +6472 7.106054068 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088296768 173 17030300a800000000000005c46f9700d41ec0b1af19ddb17ca1c25ad3f90b5e .............o..........|..Z...^.O.).|.;v5~CW..B +6474 7.107036591 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148880095 1284 17030304ff000000000000053fe547be694df63d238049591b1c7b0aa156c4cd ............?.G.iM.=#.IY..{..V...x91D@.C.5z"Y*.. +6476 7.111314297 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088296941 54 170303003100000000000005c56bdc3336fe2f888afa0e78c101e5181dbb5091 ....1........k.36./....x......P.3u.kYu..\Q?..js. +6478 7.111690044 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148881379 117 17030300700000000000000540fd1ea7655aabe54265acbd67f7038ee8b8b0d6 ....p.......@...eZ..Be..g.......%...B..v...]...c +6480 7.114018917 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088296995 173 17030300a800000000000005c60e28e675d503d3c2650650a82ecf6b4305610c ..............(.u....e.P...kC.a.].s..(.g....2y.. +6503 7.122120619 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148881496 1285 170303050000000000000005414cfcb0e622cb4320e07efe5fc3049415135a67 ............AL...".C .~._.....Zgn....k`Wto.p.t.. +6505 7.126513004 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088297168 54 170303003100000000000005c732cfd44d7538bd35125e83bede4112060d93a3 ....1........2..Mu8.5.^...A.........7m>...j}&... +6507 7.127063036 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148882781 130 170303007d0000000000000542d489354a1437c2740c99461b6f07a58b206475 ....}.......B..5J.7.t..F.o... du{....../4....... +6509 7.129557610 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088297222 173 17030300a800000000000005c84fe5bf79568b9c140a7693055e928d045ea67a .............O..yV....v..^...^.z......i.7.":1..b +6511 7.130510807 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148882911 1285 170303050000000000000005432f0719db8a5d33ee3a8ef475d7144d2117cbc8 ............C/....]3.:..u..M!...&.....g;EX...... +6517 7.134654284 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088297395 54 170303003100000000000005c9b2c8adc0917c9029f3d66536cc43d611479e44 ....1.............|.)..e6.C..G.D}.<..k..|...\.!. +6519 7.135125875 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148884196 130 170303007d0000000000000544380ccf229b61820aca9a53110c87e9d65ba241 ....}.......D8..".a....S.....[.A....lA....Td.v.2 +6521 7.137102604 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088297449 173 17030300a800000000000005ca16df027b88ad5c59c9a0245e1cd0af5e1ed366 ................{..\Y..$^...^..fM..x7.:.JHE..... +2822 0.000000000 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241043 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +2824 0.000245810 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241094 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +2826 0.001436949 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600992128 1 0a . +2828 0.002634764 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241117 5 160100006e ....n +2830 0.002759218 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241122 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +2832 0.003319979 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600992129 5 160100010f ..... +2834 0.003537655 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600992134 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +2836 0.004378319 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241232 5 1601000079 ....y +2838 0.004499674 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241237 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +2840 0.005462408 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600992405 5 140100001d ..... +2842 0.005608559 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600992410 29 a11b3019a0030a0100a312041001000000c7710f3ec81cd2d000000000 ..0...............q.>........ +2844 0.006289005 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241358 21 1100000001000000a6840b77e6f33c24010000008c ...........w..<$..... +2846 0.006506920 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600992439 21 11000000010000002114be331d3e0284010000000f ........!..3.>....... +2848 0.006942749 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116241379 1229 c9040000010000006bd71efbacc3bb2a020000002f9815bf043c94e369e5cee1 ........k......*..../....<..i...U......V.zIE..6. +2850 0.007281065 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116242608 21 1100000001000000157d963c56eb7e39030000009e .........}. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53701.bin b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53701.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53701.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53708.bin b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53708.bin new file mode 100644 index 0000000..ee2b57d Binary files /dev/null and b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53708.bin differ diff --git a/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53725.bin b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53725.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53725.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..a17217f Binary files /dev/null and b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_64442-to-fe80__3608_256c_365_cc73_808.bin b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_64442-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..5a75ae2 Binary files /dev/null and b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_64442-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_64442.bin b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_64442.bin new file mode 100644 index 0000000..dec816a Binary files /dev/null and b/captures/017-loopback-write-test-int-100/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_64442.bin differ diff --git a/captures/017-loopback-write-test-int-100/write-window-mixed-records.tsv b/captures/017-loopback-write-test-int-100/write-window-mixed-records.tsv new file mode 100644 index 0000000..66a19aa --- /dev/null +++ b/captures/017-loopback-write-test-int-100/write-window-mixed-records.tsv @@ -0,0 +1,119 @@ +capture frame packet_time_relative_to_write packet_time_relative_to_complete direction src dst tcp_seq payload_offset record_index record_type record_size announced_length i32_0 i32_1 i32_2 i32_3 signature16 signature24 hex ascii_preview +017-loopback-write-test-int-100 4564 -0.338042021 -0.548844099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278675 0 0 control 12 -2 82563 82580 fe ff ff ff 83 42 01 00 94 42 01 00 fe ff ff ff 83 42 01 00 94 42 01 00 fe ff ff ff 83 42 01 00 94 42 01 00 .....B...B.. +017-loopback-write-test-int-100 4570 -0.277536631 -0.488338709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300320 0 0 control 12 -2 82581 82563 fe ff ff ff 95 42 01 00 83 42 01 00 fe ff ff ff 95 42 01 00 83 42 01 00 fe ff ff ff 95 42 01 00 83 42 01 00 .....B...B.. +017-loopback-write-test-int-100 4574 -0.258128405 -0.468930483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300332 0 0 control_announce 12 26 727280 0 1a 00 00 00 f0 18 0b 00 00 00 00 00 1a 00 00 00 f0 18 0b 00 00 00 00 00 1a 00 00 00 f0 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4576 -0.257958889 -0.468760967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300344 0 0 data 26 22 1080266580 1076977378 196609 -1974272000 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 8a 1f 00 00 00 00 00 T.c@.^1@......S....... +017-loopback-write-test-int-100 4578 -0.257579327 -0.468381405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278687 0 0 control 12 -1 727280 0 ff ff ff ff f0 18 0b 00 00 00 00 00 ff ff ff ff f0 18 0b 00 00 00 00 00 ff ff ff ff f0 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4580 -0.257136583 -0.467938662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278699 0 0 control_announce 12 22 717785 0 16 00 00 00 d9 f3 0a 00 00 00 00 00 16 00 00 00 d9 f3 0a 00 00 00 00 00 16 00 00 00 d9 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4582 -0.256975412 -0.467777491 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278711 0 0 data 22 18 2067027 0 196609 0 53 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 53 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 53 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 S................. +017-loopback-write-test-int-100 4584 -0.256555796 -0.467357874 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300370 0 0 control 12 -1 717785 0 ff ff ff ff d9 f3 0a 00 00 00 00 00 ff ff ff ff d9 f3 0a 00 00 00 00 00 ff ff ff ff d9 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4586 -0.217744112 -0.428546190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300382 0 0 control_announce 12 101 727281 0 65 00 00 00 f1 18 0b 00 00 00 00 00 65 00 00 00 f1 18 0b 00 00 00 00 00 65 00 00 00 f1 18 0b 00 00 00 00 00 e........... +017-loopback-write-test-int-100 4588 -0.217559338 -0.428361416 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300394 0 0 data 34 30 -803725028 -1154256956 196609 282722304 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 da 10 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 da 10 02 00 00 00 00 00 41 be 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 da 10 02 00 00 00 00 00 41 be 22 c3 9d 01 00 00 ".!...o3...............A.""....." +017-loopback-write-test-int-100 4588 -0.217559338 -0.428361416 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300394 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 da 10 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 da 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c aa 95 e3 c8 82 a9 18 ..3...|8...................=B.....&............. +017-loopback-write-test-int-100 4590 -0.217247009 -0.428049088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278733 0 0 control 12 -1 727281 0 ff ff ff ff f1 18 0b 00 00 00 00 00 ff ff ff ff f1 18 0b 00 00 00 00 00 ff ff ff ff f1 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4592 -0.216551781 -0.427353859 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278745 0 0 control_announce 12 52 717786 0 34 00 00 00 da f3 0a 00 00 00 00 00 34 00 00 00 da f3 0a 00 00 00 00 00 34 00 00 00 da f3 0a 00 00 00 00 00 4........... +017-loopback-write-test-int-100 4594 -0.216392756 -0.427194834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278757 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 da 10 02 00 00 00 00 00 00 00 03 54 bb 70 4d 01 00 00 "Dk.................L."".([................T.pM..." +017-loopback-write-test-int-100 4596 -0.216082811 -0.426884890 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300495 0 0 control 12 -1 717786 0 ff ff ff ff da f3 0a 00 00 00 00 00 ff ff ff ff da f3 0a 00 00 00 00 00 ff ff ff ff da f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4598 -0.215229750 -0.426031828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300507 0 0 control_announce 12 30 727282 0 1e 00 00 00 f2 18 0b 00 00 00 00 00 1e 00 00 00 f2 18 0b 00 00 00 00 00 1e 00 00 00 f2 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4600 -0.215086460 -0.425888538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300519 0 0 data 30 26 1660931669 1345985458 196609 -1974140928 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 8a 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 8a 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 8a 1f 00 00 00 00 00 00 00 00 00 U..b..:P......U........... +017-loopback-write-test-int-100 4602 -0.214675665 -0.425477743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278809 0 0 control 12 -1 727282 0 ff ff ff ff f2 18 0b 00 00 00 00 00 ff ff ff ff f2 18 0b 00 00 00 00 00 ff ff ff ff f2 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4604 -0.214369774 -0.425171852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278821 0 0 control_announce 12 26 717787 0 1a 00 00 00 db f3 0a 00 00 00 00 00 1a 00 00 00 db f3 0a 00 00 00 00 00 1a 00 00 00 db f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4606 -0.214215279 -0.425017357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278833 0 0 data 26 22 2067029 0 196609 0 55 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 55 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 55 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 U..................... +017-loopback-write-test-int-100 4608 -0.213940620 -0.424742699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300549 0 0 control 12 -1 717787 0 ff ff ff ff db f3 0a 00 00 00 00 00 ff ff ff ff db f3 0a 00 00 00 00 00 ff ff ff ff db f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4610 -0.153764725 -0.364566803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300561 0 0 control_announce 12 26 727283 0 1a 00 00 00 f3 18 0b 00 00 00 00 00 1a 00 00 00 f3 18 0b 00 00 00 00 00 1a 00 00 00 f3 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4612 -0.153573990 -0.364376068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300573 0 0 data 26 22 1080266580 1076977378 196609 -1974009856 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 8a 1f 00 00 00 00 00 T.c@.^1@......W....... +017-loopback-write-test-int-100 4614 -0.153214693 -0.364016771 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278859 0 0 control 12 -1 727283 0 ff ff ff ff f3 18 0b 00 00 00 00 00 ff ff ff ff f3 18 0b 00 00 00 00 00 ff ff ff ff f3 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4616 -0.152873278 -0.363675356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278871 0 0 control_announce 12 22 717788 0 16 00 00 00 dc f3 0a 00 00 00 00 00 16 00 00 00 dc f3 0a 00 00 00 00 00 16 00 00 00 dc f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4618 -0.152716160 -0.363518238 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278883 0 0 data 22 18 2067031 0 196609 0 57 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 57 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 57 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 W................. +017-loopback-write-test-int-100 4620 -0.152408600 -0.363210678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300599 0 0 control 12 -1 717788 0 ff ff ff ff dc f3 0a 00 00 00 00 00 ff ff ff ff dc f3 0a 00 00 00 00 00 ff ff ff ff dc f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4626 -0.049674988 -0.260477066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300611 0 0 control_announce 12 26 727284 0 1a 00 00 00 f4 18 0b 00 00 00 00 00 1a 00 00 00 f4 18 0b 00 00 00 00 00 1a 00 00 00 f4 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4628 -0.049373388 -0.260175467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300623 0 0 data 26 22 1080266580 1076977378 196609 -1973878784 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 8a 1f 00 00 00 00 00 T.c@.^1@......Y....... +017-loopback-write-test-int-100 4630 -0.049001932 -0.259804010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278905 0 0 control 12 -1 727284 0 ff ff ff ff f4 18 0b 00 00 00 00 00 ff ff ff ff f4 18 0b 00 00 00 00 00 ff ff ff ff f4 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4632 -0.048451900 -0.259253979 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278917 0 0 control_announce 12 22 717789 0 16 00 00 00 dd f3 0a 00 00 00 00 00 16 00 00 00 dd f3 0a 00 00 00 00 00 16 00 00 00 dd f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4634 -0.048250198 -0.259052277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278929 0 0 data 22 18 2067033 0 196609 0 59 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 59 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 59 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 Y................. +017-loopback-write-test-int-100 4636 -0.047921181 -0.258723259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300649 0 0 control 12 -1 717789 0 ff ff ff ff dd f3 0a 00 00 00 00 00 ff ff ff ff dd f3 0a 00 00 00 00 00 ff ff ff ff dd f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4644 0.054767609 -0.156034470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300661 0 0 control_announce 12 26 727285 0 1a 00 00 00 f5 18 0b 00 00 00 00 00 1a 00 00 00 f5 18 0b 00 00 00 00 00 1a 00 00 00 f5 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4646 0.055000782 -0.155801296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300673 0 0 data 26 22 1080266580 1076977378 196609 -1973747712 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 8a 1f 00 00 00 00 00 T.c@.^1@......[....... +017-loopback-write-test-int-100 4648 0.055322886 -0.155479193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278951 0 0 control 12 -1 727285 0 ff ff ff ff f5 18 0b 00 00 00 00 00 ff ff ff ff f5 18 0b 00 00 00 00 00 ff ff ff ff f5 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4650 0.055765629 -0.155036449 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278963 0 0 control_announce 12 22 717790 0 16 00 00 00 de f3 0a 00 00 00 00 00 16 00 00 00 de f3 0a 00 00 00 00 00 16 00 00 00 de f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4652 0.055971384 -0.154830694 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278975 0 0 data 22 18 2067035 0 196609 0 5b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 5b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 5b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 [................. +017-loopback-write-test-int-100 4654 0.056252480 -0.154549599 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300699 0 0 control 12 -1 717790 0 ff ff ff ff de f3 0a 00 00 00 00 00 ff ff ff ff de f3 0a 00 00 00 00 00 ff ff ff ff de f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4656 0.086206675 -0.124595404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300711 0 0 control_announce 12 101 727286 0 65 00 00 00 f6 18 0b 00 00 00 00 00 65 00 00 00 f6 18 0b 00 00 00 00 00 65 00 00 00 f6 18 0b 00 00 00 00 00 e........... +017-loopback-write-test-int-100 4658 0.086416960 -0.124385118 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300723 0 0 data 34 30 -803725028 -1154256956 196609 282787840 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 db 10 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 db 10 02 00 00 00 00 00 72 bf 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 db 10 02 00 00 00 00 00 72 bf 22 c3 9d 01 00 00 ".!...o3...............r.""....." +017-loopback-write-test-int-100 4658 0.086416960 -0.124385118 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300723 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 db 10 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 db 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e4 99 bf f5 c8 82 a9 18 ..3...|8...................=B.....&............. +017-loopback-write-test-int-100 4660 0.086769581 -0.124032497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377278997 0 0 control 12 -1 727286 0 ff ff ff ff f6 18 0b 00 00 00 00 00 ff ff ff ff f6 18 0b 00 00 00 00 00 ff ff ff ff f6 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4662 0.087956667 -0.122845411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279009 0 0 control_announce 12 52 717791 0 34 00 00 00 df f3 0a 00 00 00 00 00 34 00 00 00 df f3 0a 00 00 00 00 00 34 00 00 00 df f3 0a 00 00 00 00 00 4........... +017-loopback-write-test-int-100 4664 0.088118553 -0.122683525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279021 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 db 10 02 00 00 00 00 00 00 00 71 cb e9 70 4d 01 00 00 "Dk.................L."".([...............q..pM..." +017-loopback-write-test-int-100 4666 0.088462830 -0.122339249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300824 0 0 control 12 -1 717791 0 ff ff ff ff df f3 0a 00 00 00 00 00 ff ff ff ff df f3 0a 00 00 00 00 00 ff ff ff ff df f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4668 0.089173794 -0.121628284 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300836 0 0 control_announce 12 30 727287 0 1e 00 00 00 f7 18 0b 00 00 00 00 00 1e 00 00 00 f7 18 0b 00 00 00 00 00 1e 00 00 00 f7 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4670 0.089374542 -0.121427536 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300848 0 0 data 30 26 1660931669 1345985458 196609 -1973616640 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 8a 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 8a 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 8a 1f 00 00 00 00 00 00 00 00 00 U..b..:P......]........... +017-loopback-write-test-int-100 4672 0.089677572 -0.121124506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279073 0 0 control 12 -1 727287 0 ff ff ff ff f7 18 0b 00 00 00 00 00 ff ff ff ff f7 18 0b 00 00 00 00 00 ff ff ff ff f7 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4674 0.089987993 -0.120814085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279085 0 0 control_announce 12 26 717792 0 1a 00 00 00 e0 f3 0a 00 00 00 00 00 1a 00 00 00 e0 f3 0a 00 00 00 00 00 1a 00 00 00 e0 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4676 0.090132236 -0.120669842 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279097 0 0 data 26 22 2067037 0 196609 0 5d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 5d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 5d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ]..................... +017-loopback-write-test-int-100 4678 0.090432644 -0.120369434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300878 0 0 control 12 -1 717792 0 ff ff ff ff e0 f3 0a 00 00 00 00 00 ff ff ff ff e0 f3 0a 00 00 00 00 00 ff ff ff ff e0 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4684 0.157661200 -0.053140879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300890 0 0 control_announce 12 26 727288 0 1a 00 00 00 f8 18 0b 00 00 00 00 00 1a 00 00 00 f8 18 0b 00 00 00 00 00 1a 00 00 00 f8 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4686 0.157846928 -0.052955151 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300902 0 0 data 26 22 1080266580 1076977378 196609 -1973485568 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 8a 1f 00 00 00 00 00 T.c@.^1@......_....... +017-loopback-write-test-int-100 4688 0.158175468 -0.052626610 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279123 0 0 control 12 -1 727288 0 ff ff ff ff f8 18 0b 00 00 00 00 00 ff ff ff ff f8 18 0b 00 00 00 00 00 ff ff ff ff f8 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4690 0.159031630 -0.051770449 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279135 0 0 control_announce 12 22 717793 0 16 00 00 00 e1 f3 0a 00 00 00 00 00 16 00 00 00 e1 f3 0a 00 00 00 00 00 16 00 00 00 e1 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4692 0.159215212 -0.051586866 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279147 0 0 data 22 18 2067039 0 196609 0 5f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 5f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 5f 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 _................. +017-loopback-write-test-int-100 4694 0.159611464 -0.051190615 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300928 0 0 control 12 -1 717793 0 ff ff ff ff e1 f3 0a 00 00 00 00 00 ff ff ff ff e1 f3 0a 00 00 00 00 00 ff ff ff ff e1 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4698 0.163812399 -0.046989679 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279169 0 0 control 12 -2 82564 82581 fe ff ff ff 84 42 01 00 95 42 01 00 fe ff ff ff 84 42 01 00 95 42 01 00 fe ff ff ff 84 42 01 00 95 42 01 00 .....B...B.. +017-loopback-write-test-int-100 4704 0.224503756 0.013701677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300940 0 0 control 12 -2 82582 82564 fe ff ff ff 96 42 01 00 84 42 01 00 fe ff ff ff 96 42 01 00 84 42 01 00 fe ff ff ff 96 42 01 00 84 42 01 00 .....B...B.. +017-loopback-write-test-int-100 4708 0.262079239 0.051277161 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300952 0 0 control_announce 12 26 727289 0 1a 00 00 00 f9 18 0b 00 00 00 00 00 1a 00 00 00 f9 18 0b 00 00 00 00 00 1a 00 00 00 f9 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4710 0.262273788 0.051471710 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300964 0 0 data 26 22 1080266580 1076977378 196609 -1973354496 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 8a 1f 00 00 00 00 00 T.c@.^1@......a....... +017-loopback-write-test-int-100 4712 0.262835503 0.052033424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279181 0 0 control 12 -1 727289 0 ff ff ff ff f9 18 0b 00 00 00 00 00 ff ff ff ff f9 18 0b 00 00 00 00 00 ff ff ff ff f9 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4714 0.263149261 0.052347183 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279193 0 0 control_announce 12 22 717794 0 16 00 00 00 e2 f3 0a 00 00 00 00 00 16 00 00 00 e2 f3 0a 00 00 00 00 00 16 00 00 00 e2 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4716 0.263315678 0.052513599 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279205 0 0 data 22 18 2067041 0 196609 0 61 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 61 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 61 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 a................. +017-loopback-write-test-int-100 4718 0.263664961 0.052862883 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333300990 0 0 control 12 -1 717794 0 ff ff ff ff e2 f3 0a 00 00 00 00 00 ff ff ff ff e2 f3 0a 00 00 00 00 00 ff ff ff ff e2 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4720 0.365162134 0.154360056 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301002 0 0 control_announce 12 26 727290 0 1a 00 00 00 fa 18 0b 00 00 00 00 00 1a 00 00 00 fa 18 0b 00 00 00 00 00 1a 00 00 00 fa 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4722 0.365359783 0.154557705 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301014 0 0 data 26 22 1080266580 1076977378 196609 -1973223424 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 8a 1f 00 00 00 00 00 T.c@.^1@......c....... +017-loopback-write-test-int-100 4724 0.365696430 0.154894352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279227 0 0 control 12 -1 727290 0 ff ff ff ff fa 18 0b 00 00 00 00 00 ff ff ff ff fa 18 0b 00 00 00 00 00 ff ff ff ff fa 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4726 0.366274118 0.155472040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279239 0 0 control_announce 12 22 717795 0 16 00 00 00 e3 f3 0a 00 00 00 00 00 16 00 00 00 e3 f3 0a 00 00 00 00 00 16 00 00 00 e3 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4728 0.366466284 0.155664206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279251 0 0 data 22 18 2067043 0 196609 0 63 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 63 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 63 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 c................. +017-loopback-write-test-int-100 4730 0.366672754 0.155870676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301040 0 0 control 12 -1 717795 0 ff ff ff ff e3 f3 0a 00 00 00 00 00 ff ff ff ff e3 f3 0a 00 00 00 00 00 ff ff ff ff e3 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4732 0.391909838 0.181107759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301052 0 0 control_announce 12 101 727291 0 65 00 00 00 fb 18 0b 00 00 00 00 00 65 00 00 00 fb 18 0b 00 00 00 00 00 65 00 00 00 fb 18 0b 00 00 00 00 00 e........... +017-loopback-write-test-int-100 4734 0.392152309 0.181350231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301064 0 0 data 34 30 -803725028 -1154256956 196609 282853376 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dc 10 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dc 10 02 00 00 00 00 00 a3 c0 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dc 10 02 00 00 00 00 00 a3 c0 22 c3 9d 01 00 00 ".!...o3.................""....." +017-loopback-write-test-int-100 4734 0.392152309 0.181350231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301064 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dc 10 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dc 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 b0 ed 07 c9 82 a9 18 ..3...|8...................=B.....&............. +017-loopback-write-test-int-100 4736 0.392501116 0.181699038 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279273 0 0 control 12 -1 727291 0 ff ff ff ff fb 18 0b 00 00 00 00 00 ff ff ff ff fb 18 0b 00 00 00 00 00 ff ff ff ff fb 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4738 0.393415213 0.182613134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279285 0 0 control_announce 12 52 717796 0 34 00 00 00 e4 f3 0a 00 00 00 00 00 34 00 00 00 e4 f3 0a 00 00 00 00 00 34 00 00 00 e4 f3 0a 00 00 00 00 00 4........... +017-loopback-write-test-int-100 4740 0.393571377 0.182769299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279297 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dc 10 02 00 00 00 00 00 00 00 20 66 18 71 4d 01 00 00 "Dk.................L."".([............... f.qM..." +017-loopback-write-test-int-100 4742 0.393848658 0.183046579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301165 0 0 control 12 -1 717796 0 ff ff ff ff e4 f3 0a 00 00 00 00 00 ff ff ff ff e4 f3 0a 00 00 00 00 00 ff ff ff ff e4 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4744 0.394767523 0.183965445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301177 0 0 control_announce 12 30 727292 0 1e 00 00 00 fc 18 0b 00 00 00 00 00 1e 00 00 00 fc 18 0b 00 00 00 00 00 1e 00 00 00 fc 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4746 0.394985199 0.184183121 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301189 0 0 data 30 26 1660931669 1345985458 196609 -1973092352 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 8a 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 8a 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 8a 1f 00 00 00 00 00 00 00 00 00 U..b..:P......e........... +017-loopback-write-test-int-100 4748 0.395300388 0.184498310 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279349 0 0 control 12 -1 727292 0 ff ff ff ff fc 18 0b 00 00 00 00 00 ff ff ff ff fc 18 0b 00 00 00 00 00 ff ff ff ff fc 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4750 0.395670176 0.184868097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279361 0 0 control_announce 12 26 717797 0 1a 00 00 00 e5 f3 0a 00 00 00 00 00 1a 00 00 00 e5 f3 0a 00 00 00 00 00 1a 00 00 00 e5 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4752 0.395825863 0.185023785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279373 0 0 data 26 22 2067045 0 196609 0 65 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 65 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 65 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 e..................... +017-loopback-write-test-int-100 4754 0.396104813 0.185302734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301219 0 0 control 12 -1 717797 0 ff ff ff ff e5 f3 0a 00 00 00 00 00 ff ff ff ff e5 f3 0a 00 00 00 00 00 ff ff ff ff e5 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4760 0.469243288 0.258441210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301231 0 0 control_announce 12 26 727293 0 1a 00 00 00 fd 18 0b 00 00 00 00 00 1a 00 00 00 fd 18 0b 00 00 00 00 00 1a 00 00 00 fd 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4762 0.469421625 0.258619547 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301243 0 0 data 26 22 1080266580 1076977378 196609 -1972961280 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 8a 1f 00 00 00 00 00 T.c@.^1@......g....... +017-loopback-write-test-int-100 4764 0.469891548 0.259089470 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279399 0 0 control 12 -1 727293 0 ff ff ff ff fd 18 0b 00 00 00 00 00 ff ff ff ff fd 18 0b 00 00 00 00 00 ff ff ff ff fd 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4766 0.470219612 0.259417534 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279411 0 0 control_announce 12 22 717798 0 16 00 00 00 e6 f3 0a 00 00 00 00 00 16 00 00 00 e6 f3 0a 00 00 00 00 00 16 00 00 00 e6 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4768 0.470378399 0.259576321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279423 0 0 data 22 18 2067047 0 196609 0 67 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 67 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 67 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 g................. +017-loopback-write-test-int-100 4770 0.470706463 0.259904385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301269 0 0 control 12 -1 717798 0 ff ff ff ff e6 f3 0a 00 00 00 00 00 ff ff ff ff e6 f3 0a 00 00 00 00 00 ff ff ff ff e6 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4776 0.573345661 0.362543583 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301281 0 0 control_announce 12 26 727294 0 1a 00 00 00 fe 18 0b 00 00 00 00 00 1a 00 00 00 fe 18 0b 00 00 00 00 00 1a 00 00 00 fe 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4778 0.573516130 0.362714052 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301293 0 0 data 26 22 1080266580 1076977378 196609 -1972830208 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 8a 1f 00 00 00 00 00 T.c@.^1@......i....... +017-loopback-write-test-int-100 4780 0.573867321 0.363065243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279445 0 0 control 12 -1 727294 0 ff ff ff ff fe 18 0b 00 00 00 00 00 ff ff ff ff fe 18 0b 00 00 00 00 00 ff ff ff ff fe 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4782 0.574328661 0.363526583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279457 0 0 control_announce 12 22 717799 0 16 00 00 00 e7 f3 0a 00 00 00 00 00 16 00 00 00 e7 f3 0a 00 00 00 00 00 16 00 00 00 e7 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4784 0.574499846 0.363697767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279469 0 0 data 22 18 2067049 0 196609 0 69 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 69 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 69 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 i................. +017-loopback-write-test-int-100 4786 0.574725389 0.363923311 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301319 0 0 control 12 -1 717799 0 ff ff ff ff e7 f3 0a 00 00 00 00 00 ff ff ff ff e7 f3 0a 00 00 00 00 00 ff ff ff ff e7 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4794 0.664741039 0.453938961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279491 0 0 control 12 -2 82565 82582 fe ff ff ff 85 42 01 00 96 42 01 00 fe ff ff ff 85 42 01 00 96 42 01 00 fe ff ff ff 85 42 01 00 96 42 01 00 .....B...B.. +017-loopback-write-test-int-100 4798 0.675759792 0.464957714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301331 0 0 control_announce 12 26 727295 0 1a 00 00 00 ff 18 0b 00 00 00 00 00 1a 00 00 00 ff 18 0b 00 00 00 00 00 1a 00 00 00 ff 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4800 0.675931215 0.465129137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301343 0 0 data 26 22 1080266580 1076977378 196609 -1972699136 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8a 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8a 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 8a 1f 00 00 00 00 00 T.c@.^1@......k....... +017-loopback-write-test-int-100 4802 0.676250219 0.465448141 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279503 0 0 control 12 -1 727295 0 ff ff ff ff ff 18 0b 00 00 00 00 00 ff ff ff ff ff 18 0b 00 00 00 00 00 ff ff ff ff ff 18 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4804 0.676797867 0.465995789 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279515 0 0 control_announce 12 22 717800 0 16 00 00 00 e8 f3 0a 00 00 00 00 00 16 00 00 00 e8 f3 0a 00 00 00 00 00 16 00 00 00 e8 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4806 0.676966667 0.466164589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279527 0 0 data 22 18 2067051 0 196609 0 6b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 6b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 6b 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 k................. +017-loopback-write-test-int-100 4808 0.677289724 0.466487646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301369 0 0 control 12 -1 717800 0 ff ff ff ff e8 f3 0a 00 00 00 00 00 ff ff ff ff e8 f3 0a 00 00 00 00 00 ff ff ff ff e8 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4810 0.696269035 0.485466957 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301381 0 0 control_announce 12 101 727296 0 65 00 00 00 00 19 0b 00 00 00 00 00 65 00 00 00 00 19 0b 00 00 00 00 00 65 00 00 00 00 19 0b 00 00 00 00 00 e........... +017-loopback-write-test-int-100 4812 0.696416616 0.485614538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301393 0 0 data 34 30 -803725028 -1154256956 196609 282918912 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dd 10 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dd 10 02 00 00 00 00 00 d3 c1 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dd 10 02 00 00 00 00 00 d3 c1 22 c3 9d 01 00 00 ".!...o3.................""....." +017-loopback-write-test-int-100 4812 0.696416616 0.485614538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301393 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dd 10 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dd 10 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 d7 10 1a c9 82 a9 18 ..3...|8...................=B.....&............. +017-loopback-write-test-int-100 4814 0.696775675 0.485973597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279549 0 0 control 12 -1 727296 0 ff ff ff ff 00 19 0b 00 00 00 00 00 ff ff ff ff 00 19 0b 00 00 00 00 00 ff ff ff ff 00 19 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4816 0.697582006 0.486779928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279561 0 0 control_announce 12 52 717801 0 34 00 00 00 e9 f3 0a 00 00 00 00 00 34 00 00 00 e9 f3 0a 00 00 00 00 00 34 00 00 00 e9 f3 0a 00 00 00 00 00 4........... +017-loopback-write-test-int-100 4818 0.697788715 0.486986637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279573 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dd 10 02 00 00 00 00 00 00 00 51 cf 46 71 4d 01 00 00 "Dk.................L."".([...............Q.FqM..." +017-loopback-write-test-int-100 4820 0.698059559 0.487257481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301494 0 0 control 12 -1 717801 0 ff ff ff ff e9 f3 0a 00 00 00 00 00 ff ff ff ff e9 f3 0a 00 00 00 00 00 ff ff ff ff e9 f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4822 0.698937178 0.488135099 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301506 0 0 control_announce 12 30 727297 0 1e 00 00 00 01 19 0b 00 00 00 00 00 1e 00 00 00 01 19 0b 00 00 00 00 00 1e 00 00 00 01 19 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4824 0.699079752 0.488277674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301518 0 0 data 30 26 1660931669 1345985458 196609 -1972568064 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 8a 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 8a 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 8a 1f 00 00 00 00 00 00 00 00 00 U..b..:P......m........... +017-loopback-write-test-int-100 4826 0.699357271 0.488555193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279625 0 0 control 12 -1 727297 0 ff ff ff ff 01 19 0b 00 00 00 00 00 ff ff ff ff 01 19 0b 00 00 00 00 00 ff ff ff ff 01 19 0b 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4828 0.699730158 0.488928080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279637 0 0 control_announce 12 26 717802 0 1a 00 00 00 ea f3 0a 00 00 00 00 00 1a 00 00 00 ea f3 0a 00 00 00 00 00 1a 00 00 00 ea f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4830 0.699886322 0.489084244 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377279649 0 0 data 26 22 2067053 0 196609 0 6d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 6d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 6d 8a 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 m..................... +017-loopback-write-test-int-100 4832 0.700148106 0.489346027 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301548 0 0 control 12 -1 717802 0 ff ff ff ff ea f3 0a 00 00 00 00 00 ff ff ff ff ea f3 0a 00 00 00 00 00 ff ff ff ff ea f3 0a 00 00 00 00 00 ............ +017-loopback-write-test-int-100 4836 0.725540161 0.514738083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333301560 0 0 control 12 -2 82583 82565 fe ff ff ff 97 42 01 00 85 42 01 00 fe ff ff ff 97 42 01 00 85 42 01 00 fe ff ff ff 97 42 01 00 85 42 01 00 .....B...B.. diff --git a/captures/018-loopback-write-test-int-101/command.txt b/captures/018-loopback-write-test-int-101/command.txt new file mode 100644 index 0000000..7a6a0b6 --- /dev/null +++ b/captures/018-loopback-write-test-int-101/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=write --duration=8 --tag=TestChildObject.TestInt --type=int --value=101 --user-id=1 --write-delay-ms=1200 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\018-loopback-write-test-int-101\harness.log --client=MxProtoTraceHarness-018-loopback-write-test-int-101 diff --git a/captures/018-loopback-write-test-int-101/dumpcap.stderr.txt b/captures/018-loopback-write-test-int-101/dumpcap.stderr.txt new file mode 100644 index 0000000..490b872 --- /dev/null +++ b/captures/018-loopback-write-test-int-101/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\018-loopback-write-test-int-101\loopback.pcapng diff --git a/captures/018-loopback-write-test-int-101/dumpcap.stdout.txt b/captures/018-loopback-write-test-int-101/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/018-loopback-write-test-int-101/exit.txt b/captures/018-loopback-write-test-int-101/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/018-loopback-write-test-int-101/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/018-loopback-write-test-int-101/harness.log b/captures/018-loopback-write-test-int-101/harness.log new file mode 100644 index 0000000..6378ef0 --- /dev/null +++ b/captures/018-loopback-write-test-int-101/harness.log @@ -0,0 +1,19 @@ +2026-04-25T05:35:41.7266877+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-018-loopback-write-test-int-101","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"101","UserId":1,"WriteDelayMilliseconds":1200,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:35:49.0492665+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-018-loopback-write-test-int-101"} +2026-04-25T05:35:49.4403346+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:35:49.4403346+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:35:49.4433389+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:49.4433389+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:49.4453366+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:49.6971267+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"100"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:35:27.640 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:35:50.6772467+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"101"},"UserId":1} +2026-04-25T05:35:50.6782430+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:50.8852399+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"101"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:35:50.795 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:35:50.8882408+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:35:58.7174201+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:58.7184224+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:58.7184224+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:58.7184224+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:35:58.7194255+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:36:02.9211518+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:36:02.9271454+00:00 harness.stop {} diff --git a/captures/018-loopback-write-test-int-101/loopback.pcapng b/captures/018-loopback-write-test-int-101/loopback.pcapng new file mode 100644 index 0000000..9fd863a Binary files /dev/null and b/captures/018-loopback-write-test-int-101/loopback.pcapng differ diff --git a/captures/018-loopback-write-test-int-101/stderr.txt b/captures/018-loopback-write-test-int-101/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/018-loopback-write-test-int-101/stdout.txt b/captures/018-loopback-write-test-int-101/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/019-loopback-write-test-int-101-rerun/command.txt b/captures/019-loopback-write-test-int-101-rerun/command.txt new file mode 100644 index 0000000..2945874 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=write --duration=8 --tag=TestChildObject.TestInt --type=int --value=101 --user-id=1 --write-delay-ms=1200 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\019-loopback-write-test-int-101-rerun\harness.log --client=MxProtoTraceHarness-019-loopback-write-test-int-101-rerun diff --git a/captures/019-loopback-write-test-int-101-rerun/dcerpc-49704.tsv b/captures/019-loopback-write-test-int-101-rerun/dcerpc-49704.tsv new file mode 100644 index 0000000..bd89952 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/dcerpc-49704.tsv @@ -0,0 +1,402 @@ +500 1.821613700 10 11 2 0,1 4e0c90df-e39d-4164-a421-ace89484c602,4e0c90df-e39d-4164-a421-ace89484c602 116 0 Bind: call_id: 2, Fragment: Single, 2 context items: 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (32bit NDR), 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (6cb71c2c-9812-4540-0300-000000000000) +502 1.822051800 10 12 2 84 0 Bind_ack: call_id: 2, Fragment: Single, max_xmit: 5840 max_recv: 5840, 2 results: Acceptance, Negotiate ACK +504 1.822259100 10 0 2 0 0 40 0 Request: call_id: 2, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +506 1.822498000 10 2 2 0 0 44 0 Response: call_id: 2, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +508 1.822737700 10 14 3 1 1981974b-6bf7-46cb-9640-0260bbb551ba 72 0 Alter_context: call_id: 3, Fragment: Single, 1 context items: 1981974b-6bf7-46cb-9640-0260bbb551ba V1.0 (32bit NDR) +510 1.822915500 10 15 3 56 0 Alter_context_resp: call_id: 3, Fragment: Single, max_xmit: 5840 max_recv: 5840, 1 results: Acceptance +512 1.823081400 10 0 3 1 0 96 0 Request: call_id: 3, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +514 1.824627900 10 2 3 1 0 28 0 Response: call_id: 3, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +516 1.824801200 10 0 4 1 2 60 0 Request: call_id: 4, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +518 1.824978500 10 2 4 1 2 92 0 Response: call_id: 4, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +520 1.825282300 10 0 5 1 3 120 0 Request: call_id: 5, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +522 1.825506900 10 2 5 1 3 32 0 Response: call_id: 5, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +524 1.825675500 10 0 6 1 3 124 0 Request: call_id: 6, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +526 1.825841900 10 2 6 1 3 32 0 Response: call_id: 6, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +528 1.825997000 10 0 7 1 3 118 0 Request: call_id: 7, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +530 1.826154100 10 2 7 1 3 32 0 Response: call_id: 7, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +532 1.826376100 10 0 8 1 3 120 0 Request: call_id: 8, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +534 1.826542500 10 2 8 1 3 32 0 Response: call_id: 8, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +536 1.826699900 10 0 9 1 3 130 0 Request: call_id: 9, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +538 1.826862600 10 2 9 1 3 32 0 Response: call_id: 9, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +540 1.827065200 10 0 10 1 3 130 0 Request: call_id: 10, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +542 1.827248300 10 2 10 1 3 32 0 Response: call_id: 10, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +544 1.827402100 10 0 11 1 3 142 0 Request: call_id: 11, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +546 1.827550300 10 2 11 1 3 32 0 Response: call_id: 11, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +548 1.827684600 10 0 12 1 3 116 0 Request: call_id: 12, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +550 1.827832800 10 2 12 1 3 32 0 Response: call_id: 12, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +552 1.827961200 10 0 13 1 3 130 0 Request: call_id: 13, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +556 1.828145600 10 2 13 1 3 32 0 Response: call_id: 13, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +558 1.828352400 10 0 14 1 3 128 0 Request: call_id: 14, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +560 1.828503900 10 2 14 1 3 32 0 Response: call_id: 14, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +562 1.828643700 10 0 15 1 3 126 0 Request: call_id: 15, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +564 1.828791600 10 2 15 1 3 32 0 Response: call_id: 15, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +566 1.829339700 10 0 16 1 3 132 0 Request: call_id: 16, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +568 1.829495400 10 2 16 1 3 32 0 Response: call_id: 16, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +570 1.829753800 10 0 17 1 3 152 0 Request: call_id: 17, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +572 1.829935900 10 2 17 1 3 32 0 Response: call_id: 17, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +598 1.943788600 10 0 18 0 0 40 0 Request: call_id: 18, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +600 1.944054000 10 2 18 0 0 44 0 Response: call_id: 18, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +602 1.944632300 10 0 19 1 0 108 0 Request: call_id: 19, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +604 1.946136400 10 2 19 1 0 28 0 Response: call_id: 19, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +606 1.946406600 10 0 20 1 2 60 0 Request: call_id: 20, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +608 1.946588100 10 2 20 1 2 92 0 Response: call_id: 20, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +610 1.946876100 10 0 21 1 3 132 0 Request: call_id: 21, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +612 1.947055400 10 2 21 1 3 32 0 Response: call_id: 21, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +614 1.947229800 10 0 22 1 3 136 0 Request: call_id: 22, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +616 1.947388100 10 2 22 1 3 32 0 Response: call_id: 22, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +618 1.947594900 10 0 23 1 3 130 0 Request: call_id: 23, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +620 1.947743300 10 2 23 1 3 32 0 Response: call_id: 23, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +622 1.947894300 10 0 24 1 3 132 0 Request: call_id: 24, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +624 1.948121800 10 2 24 1 3 32 0 Response: call_id: 24, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +626 1.948287200 10 0 25 1 3 142 0 Request: call_id: 25, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +628 1.948643700 10 2 25 1 3 32 0 Response: call_id: 25, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +630 1.948836100 10 0 26 1 3 142 0 Request: call_id: 26, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +632 1.949046600 10 2 26 1 3 32 0 Response: call_id: 26, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +634 1.949238600 10 0 27 1 3 154 0 Request: call_id: 27, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +636 1.949499800 10 2 27 1 3 32 0 Response: call_id: 27, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +638 1.949702000 10 0 28 1 3 128 0 Request: call_id: 28, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +640 1.949890600 10 2 28 1 3 32 0 Response: call_id: 28, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +642 1.950082000 10 0 29 1 3 142 0 Request: call_id: 29, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +644 1.950308400 10 2 29 1 3 32 0 Response: call_id: 29, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +646 1.951332800 10 0 30 1 3 140 0 Request: call_id: 30, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +648 1.951573000 10 2 30 1 3 32 0 Response: call_id: 30, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +650 1.951779100 10 0 31 1 3 138 0 Request: call_id: 31, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +652 1.951960400 10 2 31 1 3 32 0 Response: call_id: 31, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +658 1.969417700 10 0 32 0 0 40 0 Request: call_id: 32, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +660 1.969602900 10 2 32 0 0 44 0 Response: call_id: 32, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +662 1.969800600 10 0 33 1 0 104 0 Request: call_id: 33, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +664 1.971328500 10 2 33 1 0 28 0 Response: call_id: 33, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +666 1.971488600 10 0 34 1 2 60 0 Request: call_id: 34, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +668 1.971659900 10 2 34 1 2 92 0 Response: call_id: 34, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +670 1.971895600 10 0 35 1 3 128 0 Request: call_id: 35, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +672 1.972115300 10 2 35 1 3 32 0 Response: call_id: 35, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +674 1.972308900 10 0 36 1 3 132 0 Request: call_id: 36, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +676 1.972480200 10 2 36 1 3 32 0 Response: call_id: 36, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +678 1.972674500 10 0 37 1 3 126 0 Request: call_id: 37, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +680 1.972861300 10 2 37 1 3 32 0 Response: call_id: 37, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +682 1.973010400 10 0 38 1 3 128 0 Request: call_id: 38, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +684 1.973175000 10 2 38 1 3 32 0 Response: call_id: 38, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +686 1.973377400 10 0 39 1 3 138 0 Request: call_id: 39, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +688 1.973545700 10 2 39 1 3 32 0 Response: call_id: 39, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +690 1.973698500 10 0 40 1 3 138 0 Request: call_id: 40, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +692 1.973862800 10 2 40 1 3 32 0 Response: call_id: 40, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +694 1.974011800 10 0 41 1 3 150 0 Request: call_id: 41, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +696 1.974175700 10 2 41 1 3 32 0 Response: call_id: 41, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +698 1.974343700 10 0 42 1 3 124 0 Request: call_id: 42, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +700 1.974516500 10 2 42 1 3 32 0 Response: call_id: 42, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +702 1.974665300 10 0 43 1 3 138 0 Request: call_id: 43, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +704 1.974830700 10 2 43 1 3 32 0 Response: call_id: 43, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +706 1.974979300 10 0 44 1 3 136 0 Request: call_id: 44, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +708 1.975142800 10 2 44 1 3 32 0 Response: call_id: 44, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +710 1.975333900 10 0 45 1 3 134 0 Request: call_id: 45, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +712 1.975497800 10 2 45 1 3 32 0 Response: call_id: 45, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +714 1.975695100 10 0 46 1 3 140 0 Request: call_id: 46, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +716 1.975860600 10 2 46 1 3 32 0 Response: call_id: 46, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +718 1.976020500 10 0 47 1 3 146 0 Request: call_id: 47, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +720 1.976207300 10 2 47 1 3 32 0 Response: call_id: 47, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +778 2.089520300 10 0 48 0 0 40 0 Request: call_id: 48, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +780 2.089796200 10 2 48 0 0 44 0 Response: call_id: 48, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +782 2.089984800 10 0 49 1 0 112 0 Request: call_id: 49, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +784 2.091763600 10 2 49 1 0 28 0 Response: call_id: 49, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +786 2.091924500 10 0 50 1 2 60 0 Request: call_id: 50, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +788 2.092086800 10 2 50 1 2 92 0 Response: call_id: 50, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +790 2.092312000 10 0 51 1 3 136 0 Request: call_id: 51, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +792 2.092560700 10 2 51 1 3 32 0 Response: call_id: 51, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +794 2.092715500 10 0 52 1 3 140 0 Request: call_id: 52, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +796 2.092879000 10 2 52 1 3 32 0 Response: call_id: 52, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +798 2.093021400 10 0 53 1 3 134 0 Request: call_id: 53, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +800 2.093179400 10 2 53 1 3 32 0 Response: call_id: 53, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +802 2.093321000 10 0 54 1 3 136 0 Request: call_id: 54, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +804 2.093473600 10 2 54 1 3 32 0 Response: call_id: 54, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +806 2.093614900 10 0 55 1 3 146 0 Request: call_id: 55, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +808 2.093823300 10 2 55 1 3 32 0 Response: call_id: 55, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +810 2.093980300 10 0 56 1 3 146 0 Request: call_id: 56, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +812 2.094141500 10 2 56 1 3 32 0 Response: call_id: 56, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +814 2.094281500 10 0 57 1 3 158 0 Request: call_id: 57, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +816 2.094431800 10 2 57 1 3 32 0 Response: call_id: 57, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +818 2.094593200 10 0 58 1 3 132 0 Request: call_id: 58, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +820 2.094788900 10 2 58 1 3 32 0 Response: call_id: 58, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +822 2.094937700 10 0 59 1 3 146 0 Request: call_id: 59, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +824 2.095097500 10 2 59 1 3 32 0 Response: call_id: 59, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +826 2.095235700 10 0 60 1 3 144 0 Request: call_id: 60, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +828 2.095386400 10 2 60 1 3 32 0 Response: call_id: 60, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +830 2.095521900 10 0 61 1 3 142 0 Request: call_id: 61, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +832 2.095727000 10 2 61 1 3 32 0 Response: call_id: 61, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +834 2.095931000 10 0 62 1 3 148 0 Request: call_id: 62, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +836 2.096099900 10 2 62 1 3 32 0 Response: call_id: 62, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +838 2.096249200 10 0 63 1 3 154 0 Request: call_id: 63, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +840 2.096434400 10 2 63 1 3 32 0 Response: call_id: 63, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +887 2.236971700 10 0 64 0 0 40 0 Request: call_id: 64, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +889 2.237203500 10 2 64 0 0 44 0 Response: call_id: 64, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +891 2.237437200 10 0 65 1 0 92 0 Request: call_id: 65, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +893 2.239111400 10 2 65 1 0 28 0 Response: call_id: 65, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +895 2.239333700 10 0 66 1 2 60 0 Request: call_id: 66, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +897 2.239509700 10 2 66 1 2 92 0 Response: call_id: 66, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +899 2.239790700 10 0 67 1 3 116 0 Request: call_id: 67, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +901 2.240023000 10 2 67 1 3 32 0 Response: call_id: 67, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +903 2.240233300 10 0 68 1 3 120 0 Request: call_id: 68, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +905 2.240512500 10 2 68 1 3 32 0 Response: call_id: 68, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +907 2.240680000 10 0 69 1 3 114 0 Request: call_id: 69, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +909 2.240856900 10 2 69 1 3 32 0 Response: call_id: 69, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +911 2.241021100 10 0 70 1 3 116 0 Request: call_id: 70, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +913 2.241220600 10 2 70 1 3 32 0 Response: call_id: 70, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +915 2.241389500 10 0 71 1 3 126 0 Request: call_id: 71, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +917 2.241566400 10 2 71 1 3 32 0 Response: call_id: 71, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +919 2.241724700 10 0 72 1 3 126 0 Request: call_id: 72, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +921 2.241897100 10 2 72 1 3 32 0 Response: call_id: 72, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +923 2.242057800 10 0 73 1 3 138 0 Request: call_id: 73, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +925 2.242274300 10 2 73 1 3 32 0 Response: call_id: 73, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +927 2.242438000 10 0 74 1 3 112 0 Request: call_id: 74, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +929 2.242615600 10 2 74 1 3 32 0 Response: call_id: 74, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +931 2.242773000 10 0 75 1 3 126 0 Request: call_id: 75, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +933 2.242971700 10 2 75 1 3 32 0 Response: call_id: 75, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +935 2.243149100 10 0 76 1 3 124 0 Request: call_id: 76, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +937 2.243393300 10 2 76 1 3 32 0 Response: call_id: 76, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +939 2.243555800 10 0 77 1 3 122 0 Request: call_id: 77, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +941 2.243730000 10 2 77 1 3 32 0 Response: call_id: 77, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +943 2.243982000 10 0 78 1 3 128 0 Request: call_id: 78, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +945 2.244176900 10 2 78 1 3 32 0 Response: call_id: 78, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +947 2.244362300 10 0 79 1 3 134 0 Request: call_id: 79, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +949 2.244554900 10 2 79 1 3 32 0 Response: call_id: 79, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +951 2.244721600 10 0 80 1 3 130 0 Request: call_id: 80, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +953 2.244893500 10 2 80 1 3 32 0 Response: call_id: 80, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +955 2.245055300 10 0 81 1 3 128 0 Request: call_id: 81, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +957 2.245291200 10 2 81 1 3 32 0 Response: call_id: 81, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2826 8.766821300 10 0 82 0 0 40 0 Request: call_id: 82, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2828 8.767099900 10 2 82 0 0 44 0 Response: call_id: 82, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2830 8.767384900 10 0 83 1 0 100 0 Request: call_id: 83, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2832 8.769669000 10 2 83 1 0 28 0 Response: call_id: 83, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2834 8.769881600 10 0 84 1 2 60 0 Request: call_id: 84, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2836 8.770189600 10 2 84 1 2 92 0 Response: call_id: 84, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2838 8.770584500 10 0 85 1 3 124 0 Request: call_id: 85, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2840 8.771004800 10 2 85 1 3 32 0 Response: call_id: 85, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2842 8.771207500 10 0 86 1 3 128 0 Request: call_id: 86, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2844 8.771446300 10 2 86 1 3 32 0 Response: call_id: 86, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2846 8.771624700 10 0 87 1 3 122 0 Request: call_id: 87, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2848 8.771923100 10 2 87 1 3 32 0 Response: call_id: 87, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2850 8.772116000 10 0 88 1 3 124 0 Request: call_id: 88, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2852 8.772345600 10 2 88 1 3 32 0 Response: call_id: 88, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2854 8.772528100 10 0 89 1 3 134 0 Request: call_id: 89, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2856 8.772835500 10 2 89 1 3 32 0 Response: call_id: 89, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2858 8.773031300 10 0 90 1 3 134 0 Request: call_id: 90, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2860 8.773285100 10 2 90 1 3 32 0 Response: call_id: 90, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2862 8.773520100 10 0 91 1 3 146 0 Request: call_id: 91, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2864 8.773855100 10 2 91 1 3 32 0 Response: call_id: 91, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2866 8.774083200 10 0 92 1 3 120 0 Request: call_id: 92, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2868 8.774342100 10 2 92 1 3 32 0 Response: call_id: 92, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2870 8.774577200 10 0 93 1 3 134 0 Request: call_id: 93, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2872 8.774855500 10 2 93 1 3 32 0 Response: call_id: 93, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2874 8.775094600 10 0 94 1 3 132 0 Request: call_id: 94, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2876 8.775345500 10 2 94 1 3 32 0 Response: call_id: 94, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2878 8.775582800 10 0 95 1 3 130 0 Request: call_id: 95, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2880 8.775874100 10 2 95 1 3 32 0 Response: call_id: 95, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2882 8.776197900 10 0 96 1 3 144 0 Request: call_id: 96, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2884 8.776497800 10 2 96 1 3 32 0 Response: call_id: 96, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2886 8.776783900 10 0 97 1 3 148 0 Request: call_id: 97, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2888 8.777041800 10 2 97 1 3 32 0 Response: call_id: 97, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2890 8.777277700 10 0 98 1 3 146 0 Request: call_id: 98, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2892 8.777460600 10 2 98 1 3 32 0 Response: call_id: 98, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2894 8.777813700 10 0 99 1 3 158 0 Request: call_id: 99, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2896 8.777994700 10 2 99 1 3 32 0 Response: call_id: 99, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2918 8.855880600 10 0 100 0 0 40 0 Request: call_id: 100, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2920 8.856077600 10 2 100 0 0 44 0 Response: call_id: 100, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +2922 8.856311200 10 0 101 1 0 84 0 Request: call_id: 101, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2924 8.858564800 10 2 101 1 0 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2926 8.858825100 10 0 102 1 2 60 0 Request: call_id: 102, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2928 8.859053500 10 2 102 1 2 92 0 Response: call_id: 102, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2930 8.859373100 10 0 103 1 3 108 0 Request: call_id: 103, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2932 8.859589900 10 2 103 1 3 32 0 Response: call_id: 103, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2934 8.859833400 10 0 104 1 3 112 0 Request: call_id: 104, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2936 8.860007300 10 2 104 1 3 32 0 Response: call_id: 104, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2938 8.860232000 10 0 105 1 3 106 0 Request: call_id: 105, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2940 8.860439400 10 2 105 1 3 32 0 Response: call_id: 105, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2942 8.860577200 10 0 106 1 3 108 0 Request: call_id: 106, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2944 8.860781300 10 2 106 1 3 32 0 Response: call_id: 106, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2946 8.861047300 10 0 107 1 3 118 0 Request: call_id: 107, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2948 8.861201500 10 2 107 1 3 32 0 Response: call_id: 107, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2950 8.861412400 10 0 108 1 3 118 0 Request: call_id: 108, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2952 8.861731600 10 2 108 1 3 32 0 Response: call_id: 108, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2954 8.861908000 10 0 109 1 3 130 0 Request: call_id: 109, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2956 8.862137400 10 2 109 1 3 32 0 Response: call_id: 109, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2958 8.862274400 10 0 110 1 3 104 0 Request: call_id: 110, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2960 8.862449200 10 2 110 1 3 32 0 Response: call_id: 110, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2962 8.862669300 10 0 111 1 3 118 0 Request: call_id: 111, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2964 8.863137800 10 2 111 1 3 32 0 Response: call_id: 111, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2966 8.863264500 10 0 112 1 3 116 0 Request: call_id: 112, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2968 8.863434400 10 2 112 1 3 32 0 Response: call_id: 112, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2970 8.863634100 10 0 113 1 3 114 0 Request: call_id: 113, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2972 8.863903500 10 2 113 1 3 32 0 Response: call_id: 113, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2974 8.864599500 10 0 114 1 3 128 0 Request: call_id: 114, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2976 8.864838500 10 2 114 1 3 32 0 Response: call_id: 114, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2978 8.865136800 10 0 115 1 3 120 0 Request: call_id: 115, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2980 8.865348600 10 2 115 1 3 32 0 Response: call_id: 115, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2982 8.865602800 10 0 116 1 3 120 0 Request: call_id: 116, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2984 8.865822500 10 2 116 1 3 32 0 Response: call_id: 116, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2986 8.866061500 10 0 117 1 3 122 0 Request: call_id: 117, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2988 8.866227300 10 2 117 1 3 32 0 Response: call_id: 117, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2990 8.866472500 10 0 118 1 3 134 0 Request: call_id: 118, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2992 8.866644100 10 2 118 1 3 32 0 Response: call_id: 118, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2994 8.867030900 10 0 119 1 3 132 0 Request: call_id: 119, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2996 8.867197600 10 2 119 1 3 32 0 Response: call_id: 119, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +2998 8.867434000 10 0 120 1 3 130 0 Request: call_id: 120, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3000 8.867596000 10 2 120 1 3 32 0 Response: call_id: 120, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3002 8.867886100 10 0 121 1 3 138 0 Request: call_id: 121, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3004 8.868153100 10 2 121 1 3 32 0 Response: call_id: 121, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3006 8.868516400 10 0 122 1 3 144 0 Request: call_id: 122, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3008 8.868726900 10 2 122 1 3 32 0 Response: call_id: 122, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3010 8.868958900 10 0 123 1 3 144 0 Request: call_id: 123, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3012 8.869125600 10 2 123 1 3 32 0 Response: call_id: 123, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3014 8.869315500 10 0 124 1 3 116 0 Request: call_id: 124, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3016 8.869476200 10 2 124 1 3 32 0 Response: call_id: 124, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3018 8.869661400 10 0 125 1 3 130 0 Request: call_id: 125, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3020 8.869819900 10 2 125 1 3 32 0 Response: call_id: 125, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3022 8.870038300 10 0 126 1 3 138 0 Request: call_id: 126, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3024 8.870196700 10 2 126 1 3 32 0 Response: call_id: 126, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3026 8.870489900 10 0 127 1 3 130 0 Request: call_id: 127, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3028 8.870648600 10 2 127 1 3 32 0 Response: call_id: 127, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3030 8.870934000 10 0 128 1 3 122 0 Request: call_id: 128, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3032 8.871090200 10 2 128 1 3 32 0 Response: call_id: 128, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3034 8.871296700 10 0 129 1 3 122 0 Request: call_id: 129, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3036 8.871449700 10 2 129 1 3 32 0 Response: call_id: 129, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3038 8.871629600 10 0 130 1 3 134 0 Request: call_id: 130, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3040 8.872015400 10 2 130 1 3 32 0 Response: call_id: 130, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3042 8.872267400 10 0 131 1 3 128 0 Request: call_id: 131, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3044 8.872449700 10 2 131 1 3 32 0 Response: call_id: 131, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3046 8.872648800 10 0 132 1 3 124 0 Request: call_id: 132, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3048 8.872872500 10 2 132 1 3 32 0 Response: call_id: 132, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3050 8.905252500 10 0 133 1 5 516 0 Request: call_id: 133, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3052 8.905742900 10 2 133 1 5 28 0 Response: call_id: 133, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3070 8.941913200 10 0 134 0 0 40 0 Request: call_id: 134, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3072 8.942120300 10 2 134 0 0 44 0 Response: call_id: 134, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3074 8.942338000 10 0 135 1 0 112 0 Request: call_id: 135, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3084 8.944251600 10 2 135 1 0 28 0 Response: call_id: 135, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3086 8.944483900 10 0 136 1 2 60 0 Request: call_id: 136, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3088 8.944669900 10 2 136 1 2 92 0 Response: call_id: 136, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3090 8.944950000 10 0 137 1 3 136 0 Request: call_id: 137, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3092 8.945216500 10 2 137 1 3 32 0 Response: call_id: 137, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3094 8.945480800 10 0 138 1 3 140 0 Request: call_id: 138, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3096 8.945665500 10 2 138 1 3 32 0 Response: call_id: 138, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3098 8.945882400 10 0 139 1 3 134 0 Request: call_id: 139, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3100 8.946058100 10 2 139 1 3 32 0 Response: call_id: 139, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3102 8.946235400 10 0 140 1 3 136 0 Request: call_id: 140, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3104 8.946461300 10 2 140 1 3 32 0 Response: call_id: 140, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3106 8.946622800 10 0 141 1 3 146 0 Request: call_id: 141, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3108 8.946793100 10 2 141 1 3 32 0 Response: call_id: 141, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3110 8.946940400 10 0 142 1 3 146 0 Request: call_id: 142, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3112 8.947100900 10 2 142 1 3 32 0 Response: call_id: 142, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3114 8.947241500 10 0 143 1 3 158 0 Request: call_id: 143, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3116 8.947424800 10 2 143 1 3 32 0 Response: call_id: 143, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3118 8.947637600 10 0 144 1 3 132 0 Request: call_id: 144, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3120 8.947821500 10 2 144 1 3 32 0 Response: call_id: 144, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3122 8.948019600 10 0 145 1 3 146 0 Request: call_id: 145, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3124 8.948185500 10 2 145 1 3 32 0 Response: call_id: 145, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3126 8.948379200 10 0 146 1 3 144 0 Request: call_id: 146, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3128 8.948587200 10 2 146 1 3 32 0 Response: call_id: 146, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3130 8.948816600 10 0 147 1 3 142 0 Request: call_id: 147, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3132 8.949000500 10 2 147 1 3 32 0 Response: call_id: 147, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3134 8.949282600 10 0 148 1 3 160 0 Request: call_id: 148, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3136 8.949474700 10 2 148 1 3 32 0 Response: call_id: 148, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3138 8.949672300 10 0 149 1 3 156 0 Request: call_id: 149, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3140 8.949843000 10 2 149 1 3 32 0 Response: call_id: 149, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3142 8.950069100 10 0 150 1 3 154 0 Request: call_id: 150, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3144 8.950233600 10 2 150 1 3 32 0 Response: call_id: 150, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3146 8.950471300 10 0 151 1 3 146 0 Request: call_id: 151, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3148 8.950671200 10 2 151 1 3 32 0 Response: call_id: 151, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3150 8.950844200 10 0 152 1 3 154 0 Request: call_id: 152, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3152 8.951003300 10 2 152 1 3 32 0 Response: call_id: 152, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3154 8.951165700 10 0 153 1 3 150 0 Request: call_id: 153, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3156 8.951322500 10 2 153 1 3 32 0 Response: call_id: 153, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3158 8.951590300 10 0 154 1 3 152 0 Request: call_id: 154, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3160 8.951756600 10 2 154 1 3 32 0 Response: call_id: 154, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3162 8.951944500 10 0 155 1 3 140 0 Request: call_id: 155, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3164 8.952105300 10 2 155 1 3 32 0 Response: call_id: 155, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3166 8.952278700 10 0 156 1 3 148 0 Request: call_id: 156, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3168 8.952460200 10 2 156 1 3 32 0 Response: call_id: 156, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3170 8.952655200 10 0 157 1 3 162 0 Request: call_id: 157, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3172 8.952823200 10 2 157 1 3 32 0 Response: call_id: 157, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3174 8.953016500 10 0 158 1 3 172 0 Request: call_id: 158, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3176 8.953182900 10 2 158 1 3 32 0 Response: call_id: 158, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3178 8.953369700 10 0 159 1 3 144 0 Request: call_id: 159, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3180 8.953527100 10 2 159 1 3 32 0 Response: call_id: 159, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3186 8.962067700 10 0 160 0 0 40 0 Request: call_id: 160, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3188 8.962240700 10 2 160 0 0 44 0 Response: call_id: 160, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3190 8.962450900 10 0 161 1 0 128 0 Request: call_id: 161, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3192 8.964255800 10 2 161 1 0 28 0 Response: call_id: 161, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3194 8.964496400 10 0 162 1 2 60 0 Request: call_id: 162, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3196 8.964747000 10 2 162 1 2 92 0 Response: call_id: 162, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3198 8.965010900 10 0 163 1 3 152 0 Request: call_id: 163, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3200 8.965322900 10 2 163 1 3 32 0 Response: call_id: 163, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3202 8.965618400 10 0 164 1 3 156 0 Request: call_id: 164, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3204 8.965877600 10 2 164 1 3 32 0 Response: call_id: 164, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3206 8.966049700 10 0 165 1 3 150 0 Request: call_id: 165, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3208 8.966231500 10 2 165 1 3 32 0 Response: call_id: 165, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3210 8.966443100 10 0 166 1 3 152 0 Request: call_id: 166, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3212 8.966618700 10 2 166 1 3 32 0 Response: call_id: 166, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3214 8.966810400 10 0 167 1 3 162 0 Request: call_id: 167, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3216 8.966983200 10 2 167 1 3 32 0 Response: call_id: 167, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3218 8.967176400 10 0 168 1 3 162 0 Request: call_id: 168, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3220 8.967341400 10 2 168 1 3 32 0 Response: call_id: 168, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3222 8.967576500 10 0 169 1 3 174 0 Request: call_id: 169, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3224 8.967741300 10 2 169 1 3 32 0 Response: call_id: 169, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3226 8.967898700 10 0 170 1 3 148 0 Request: call_id: 170, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3228 8.968063300 10 2 170 1 3 32 0 Response: call_id: 170, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3230 8.968218100 10 0 171 1 3 162 0 Request: call_id: 171, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3232 8.968406600 10 2 171 1 3 32 0 Response: call_id: 171, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3234 8.968548000 10 0 172 1 3 160 0 Request: call_id: 172, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3236 8.968718000 10 2 172 1 3 32 0 Response: call_id: 172, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3238 8.968875300 10 0 173 1 3 158 0 Request: call_id: 173, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3240 8.969038900 10 2 173 1 3 32 0 Response: call_id: 173, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3242 8.969269800 10 0 174 1 3 170 0 Request: call_id: 174, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3244 8.969454800 10 2 174 1 3 32 0 Response: call_id: 174, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3246 8.969616500 10 0 175 1 3 182 0 Request: call_id: 175, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3248 8.969781400 10 2 175 1 3 32 0 Response: call_id: 175, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3254 8.976036700 10 0 176 0 0 40 0 Request: call_id: 176, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3256 8.976200400 10 2 176 0 0 44 0 Response: call_id: 176, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +3258 8.976426500 10 0 177 1 0 96 0 Request: call_id: 177, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3260 8.978057400 10 2 177 1 0 28 0 Response: call_id: 177, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3262 8.978236400 10 0 178 1 2 60 0 Request: call_id: 178, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3264 8.978440600 10 2 178 1 2 92 0 Response: call_id: 178, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3266 8.978701400 10 0 179 1 3 120 0 Request: call_id: 179, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3268 8.978887400 10 2 179 1 3 32 0 Response: call_id: 179, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3270 8.979050000 10 0 180 1 3 124 0 Request: call_id: 180, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3272 8.979211900 10 2 180 1 3 32 0 Response: call_id: 180, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3274 8.979403400 10 0 181 1 3 118 0 Request: call_id: 181, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3276 8.979561300 10 2 181 1 3 32 0 Response: call_id: 181, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3278 8.979731200 10 0 182 1 3 120 0 Request: call_id: 182, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3280 8.979895400 10 2 182 1 3 32 0 Response: call_id: 182, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3282 8.980052600 10 0 183 1 3 130 0 Request: call_id: 183, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3284 8.980274400 10 2 183 1 3 32 0 Response: call_id: 183, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3286 8.980458600 10 0 184 1 3 130 0 Request: call_id: 184, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3288 8.980648600 10 2 184 1 3 32 0 Response: call_id: 184, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3290 8.980838500 10 0 185 1 3 142 0 Request: call_id: 185, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3292 8.980999500 10 2 185 1 3 32 0 Response: call_id: 185, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3294 8.981152800 10 0 186 1 3 116 0 Request: call_id: 186, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3296 8.981309000 10 2 186 1 3 32 0 Response: call_id: 186, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3298 8.981542500 10 0 187 1 3 130 0 Request: call_id: 187, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3300 8.981728800 10 2 187 1 3 32 0 Response: call_id: 187, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3302 8.981892600 10 0 188 1 3 128 0 Request: call_id: 188, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3304 8.982051100 10 2 188 1 3 32 0 Response: call_id: 188, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3306 8.982203700 10 0 189 1 3 126 0 Request: call_id: 189, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3308 8.982387600 10 2 189 1 3 32 0 Response: call_id: 189, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3310 8.982648000 10 0 190 1 3 126 0 Request: call_id: 190, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3312 8.982812000 10 2 190 1 3 32 0 Response: call_id: 190, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3314 8.983003400 10 0 191 1 3 132 0 Request: call_id: 191, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3316 8.983165100 10 2 191 1 3 32 0 Response: call_id: 191, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3318 8.983328200 10 0 192 1 3 130 0 Request: call_id: 192, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3320 8.983568200 10 2 192 1 3 32 0 Response: call_id: 192, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3322 8.983731300 10 0 193 1 3 138 0 Request: call_id: 193, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3324 8.983891000 10 2 193 1 3 32 0 Response: call_id: 193, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3326 8.984051900 10 0 194 1 3 136 0 Request: call_id: 194, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3328 8.984209800 10 2 194 1 3 32 0 Response: call_id: 194, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3330 8.984401000 10 0 195 1 3 132 0 Request: call_id: 195, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3332 8.984541400 10 2 195 1 3 32 0 Response: call_id: 195, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3334 8.984728000 10 0 196 1 3 142 0 Request: call_id: 196, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3336 8.984917400 10 2 196 1 3 32 0 Response: call_id: 196, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3338 8.985083000 10 0 197 1 3 148 0 Request: call_id: 197, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3340 8.985243200 10 2 197 1 3 32 0 Response: call_id: 197, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3368 9.022736700 10 0 198 1 5 290 0 Request: call_id: 198, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3370 9.023091900 10 2 198 1 5 28 0 Response: call_id: 198, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3390 9.095928200 10 0 199 1 5 206 0 Request: call_id: 199, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +3392 9.096236400 10 2 199 1 5 28 0 Response: call_id: 199, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +6042 18.437757500 47 0 100 1 5 242 0 Request: call_id: 100, Fragment: Single, opnum: 5, Ctx: 1 +6044 18.438119600 47 2 100 1 28 0 Response: call_id: 100, Fragment: Single, Ctx: 1 diff --git a/captures/019-loopback-write-test-int-101-rerun/dumpcap.stderr.txt b/captures/019-loopback-write-test-int-101-rerun/dumpcap.stderr.txt new file mode 100644 index 0000000..d8c8317 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\019-loopback-write-test-int-101-rerun\loopback.pcapng diff --git a/captures/019-loopback-write-test-int-101-rerun/dumpcap.stdout.txt b/captures/019-loopback-write-test-int-101-rerun/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/019-loopback-write-test-int-101-rerun/exit.txt b/captures/019-loopback-write-test-int-101-rerun/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/019-loopback-write-test-int-101-rerun/harness.log b/captures/019-loopback-write-test-int-101-rerun/harness.log new file mode 100644 index 0000000..fa709d8 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/harness.log @@ -0,0 +1,18 @@ +2026-04-25T05:36:26.5961702+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-019-loopback-write-test-int-101-rerun","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"101","UserId":1,"WriteDelayMilliseconds":1200,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:36:33.5855664+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-019-loopback-write-test-int-101-rerun"} +2026-04-25T05:36:33.9572408+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:36:33.9572408+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:36:33.9592309+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:33.9592309+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:33.9612371+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:34.2048490+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"101"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:35:50.795 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:36:35.1843435+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"101"},"UserId":1} +2026-04-25T05:36:35.1863603+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:35.3950577+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:36:43.2424276+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:43.2434031+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:43.2434031+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:43.2434031+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:36:43.2434031+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:36:47.1741128+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:36:47.1791171+00:00 harness.stop {} diff --git a/captures/019-loopback-write-test-int-101-rerun/loopback.pcapng b/captures/019-loopback-write-test-int-101-rerun/loopback.pcapng new file mode 100644 index 0000000..c4a8deb Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/loopback.pcapng differ diff --git a/captures/019-loopback-write-test-int-101-rerun/nmx-conversations.tsv b/captures/019-loopback-write-test-int-101-rerun/nmx-conversations.tsv new file mode 100644 index 0000000..8bdbdc2 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/nmx-conversations.tsv @@ -0,0 +1,6 @@ +capture selected_a selected_b payload_packets payload_bytes +captures\019-loopback-write-test-int-101-rerun\loopback.pcapng ::1:49704 ::1:61584 400 32726 + +conversation_a conversation_b payload_packets payload_bytes +::1:49704 ::1:61584 400 32726 +::1:49704 ::1:49829 2 270 diff --git a/captures/019-loopback-write-test-int-101-rerun/nmx-payload-packets.tsv b/captures/019-loopback-write-test-int-101-rerun/nmx-payload-packets.tsv new file mode 100644 index 0000000..eee09b4 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/nmx-payload-packets.tsv @@ -0,0 +1,401 @@ +frame time_relative from_service src sport dst dport seq ack payload_len hex_prefix ascii_preview +500 0.000000000 0 ::1 61584 ::1 49704 620681763 527217765 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +502 0.000438213 1 ::1 49704 ::1 61584 527217765 620681879 84 05000c03100000005400000002000000d016d016b9b900000600343937303400 ........T.................49704..........]...... +504 0.000645399 0 ::1 61584 ::1 49704 620681879 527217849 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +506 0.000884295 1 ::1 49704 ::1 61584 527217849 620681919 44 05000203100000002c0000000200000014000000000000000000000009e2966b ........,......................k.S.M..0.Sc.S +508 0.001123905 0 ::1 61584 ::1 49704 620681919 527217893 72 05000e03100000004800000003000000d016d016b9b900000100000001000100 ........H.......................K....k.F.@.`..Q. +510 0.001301765 1 ::1 49704 ::1 61584 527217893 620681991 56 05000f03100000003800000003000000d016d016b9b900000000000001000000 ........8............................].......... +512 0.001467705 0 ::1 61584 ::1 49704 620681991 527217949 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K...........k +514 0.003014326 1 ::1 49704 ::1 61584 527217949 620682087 28 05000203100000001c00000003000000040000000100000001000000 ............................ +516 0.003187418 0 ::1 61584 ::1 49704 620682087 527217977 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........k +518 0.003364801 1 ::1 49704 ::1 61584 527217977 620682147 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +520 0.003668547 0 ::1 61584 ::1 49704 620682147 527218069 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........k +522 0.003893137 1 ::1 49704 ::1 61584 527218069 620682267 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +524 0.004061699 0 ::1 61584 ::1 49704 620682267 527218101 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K...........k +526 0.004228115 1 ::1 49704 ::1 61584 527218101 620682391 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +528 0.004383326 0 ::1 61584 ::1 49704 620682391 527218133 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K...........k +530 0.004540443 1 ::1 49704 ::1 61584 527218133 620682509 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +532 0.004762411 0 ::1 61584 ::1 49704 620682509 527218165 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........k +534 0.004928827 1 ::1 49704 ::1 61584 527218165 620682629 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +536 0.005086184 0 ::1 61584 ::1 49704 620682629 527218197 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........k +538 0.005249023 1 ::1 49704 ::1 61584 527218197 620682759 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +540 0.005451441 0 ::1 61584 ::1 49704 620682759 527218229 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........k +542 0.005634546 1 ::1 49704 ::1 61584 527218229 620682889 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +544 0.005788326 0 ::1 61584 ::1 49704 620682889 527218261 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........k +546 0.005936623 1 ::1 49704 ::1 61584 527218261 620683031 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +548 0.006070852 0 ::1 61584 ::1 49704 620683031 527218293 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K...........k +550 0.006219149 1 ::1 49704 ::1 61584 527218293 620683147 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +552 0.006347418 0 ::1 61584 ::1 49704 620683147 527218325 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........k +556 0.006531954 1 ::1 49704 ::1 61584 527218325 620683277 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +558 0.006738663 0 ::1 61584 ::1 49704 620683277 527218357 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........k +560 0.006890297 1 ::1 49704 ::1 61584 527218357 620683405 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +562 0.007030010 0 ::1 61584 ::1 49704 620683405 527218389 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........k +564 0.007177830 1 ::1 49704 ::1 61584 527218389 620683531 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +566 0.007725954 0 ::1 61584 ::1 49704 620683531 527218421 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........k +568 0.007881641 1 ::1 49704 ::1 61584 527218421 620683663 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +570 0.008140087 0 ::1 61584 ::1 49704 620683663 527218453 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K...........k +572 0.008322239 1 ::1 49704 ::1 61584 527218453 620683815 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +598 0.122174978 0 ::1 61584 ::1 49704 620683815 527218485 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +600 0.122440338 1 ::1 49704 ::1 61584 527218485 620683855 44 05000203100000002c000000120000001400000000000000000000000226a681 ........,....................&.._..L....c... +602 0.123018503 0 ::1 61584 ::1 49704 620683855 527218529 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K.........&.. +604 0.124522686 1 ::1 49704 ::1 61584 527218529 620683963 28 05000203100000001c00000013000000040000000100000001000000 ............................ +606 0.124792814 0 ::1 61584 ::1 49704 620683963 527218557 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........&.. +608 0.124974489 1 ::1 49704 ::1 61584 527218557 620684023 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +610 0.125262499 0 ::1 61584 ::1 49704 620684023 527218649 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........&.. +612 0.125441790 1 ::1 49704 ::1 61584 527218649 620684155 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +614 0.125616074 0 ::1 61584 ::1 49704 620684155 527218681 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........&.. +616 0.125774384 1 ::1 49704 ::1 61584 527218681 620684291 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +618 0.125981092 0 ::1 61584 ::1 49704 620684291 527218713 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........&.. +620 0.126129627 1 ::1 49704 ::1 61584 527218713 620684421 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +622 0.126280546 0 ::1 61584 ::1 49704 620684421 527218745 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........&.. +624 0.126507998 1 ::1 49704 ::1 61584 527218745 620684553 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +626 0.126673460 0 ::1 61584 ::1 49704 620684553 527218777 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........&.. +628 0.127029896 1 ::1 49704 ::1 61584 527218777 620684695 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +630 0.127222300 0 ::1 61584 ::1 49704 620684695 527218809 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........&.. +632 0.127432823 1 ::1 49704 ::1 61584 527218809 620684837 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +634 0.127624989 0 ::1 61584 ::1 49704 620684837 527218841 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........&.. +636 0.127886057 1 ::1 49704 ::1 61584 527218841 620684991 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +638 0.128088236 0 ::1 61584 ::1 49704 620684991 527218873 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........&.. +640 0.128276825 1 ::1 49704 ::1 61584 527218873 620685119 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +642 0.128468275 0 ::1 61584 ::1 49704 620685119 527218905 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........&.. +644 0.128694773 1 ::1 49704 ::1 61584 527218905 620685261 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +646 0.129719019 0 ::1 61584 ::1 49704 620685261 527218937 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........&.. +648 0.129959345 1 ::1 49704 ::1 61584 527218937 620685401 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +650 0.130165339 0 ::1 61584 ::1 49704 620685401 527218969 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........&.. +652 0.130346775 1 ::1 49704 ::1 61584 527218969 620685539 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +658 0.147804022 0 ::1 61584 ::1 49704 620685539 527219001 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +660 0.147989273 1 ::1 49704 ::1 61584 527219001 620685579 44 05000203100000002c000000200000001400000000000000000000001fbe62ce ........,... .................b....M.D....[. +662 0.148186922 0 ::1 61584 ::1 49704 620685579 527219045 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K..........b. +664 0.149714708 1 ::1 49704 ::1 61584 527219045 620685683 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +666 0.149874926 0 ::1 61584 ::1 49704 620685683 527219073 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K..........b. +668 0.150046110 1 ::1 49704 ::1 61584 527219073 620685743 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +670 0.150281906 0 ::1 61584 ::1 49704 620685743 527219165 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K..........b. +672 0.150501728 1 ::1 49704 ::1 61584 527219165 620685871 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +674 0.150695324 0 ::1 61584 ::1 49704 620685871 527219197 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K..........b. +676 0.150866508 1 ::1 49704 ::1 61584 527219197 620686003 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +678 0.151060820 0 ::1 61584 ::1 49704 620686003 527219229 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K..........b. +680 0.151247501 1 ::1 49704 ::1 61584 527219229 620686129 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +682 0.151396751 0 ::1 61584 ::1 49704 620686129 527219261 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K..........b. +684 0.151561260 1 ::1 49704 ::1 61584 527219261 620686257 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +686 0.151763678 0 ::1 61584 ::1 49704 620686257 527219293 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K..........b. +688 0.151932001 1 ::1 49704 ::1 61584 527219293 620686395 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +690 0.152084827 0 ::1 61584 ::1 49704 620686395 527219325 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K..........b. +692 0.152249098 1 ::1 49704 ::1 61584 527219325 620686533 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +694 0.152398109 0 ::1 61584 ::1 49704 620686533 527219357 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K..........b. +696 0.152561903 1 ::1 49704 ::1 61584 527219357 620686683 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +698 0.152729988 0 ::1 61584 ::1 49704 620686683 527219389 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K..........b. +700 0.152902842 1 ::1 49704 ::1 61584 527219389 620686807 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +702 0.153051615 0 ::1 61584 ::1 49704 620686807 527219421 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K..........b. +704 0.153217077 1 ::1 49704 ::1 61584 527219421 620686945 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +706 0.153365612 0 ::1 61584 ::1 49704 620686945 527219453 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K..........b. +708 0.153529167 1 ::1 49704 ::1 61584 527219453 620687081 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +710 0.153720140 0 ::1 61584 ::1 49704 620687081 527219485 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K..........b. +712 0.153884172 1 ::1 49704 ::1 61584 527219485 620687215 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +714 0.154081345 0 ::1 61584 ::1 49704 620687215 527219517 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........b. +716 0.154246807 1 ::1 49704 ::1 61584 527219517 620687355 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +718 0.154406786 0 ::1 61584 ::1 49704 620687355 527219549 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K..........b. +720 0.154593706 1 ::1 49704 ::1 61584 527219549 620687501 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +778 0.267906666 0 ::1 61584 ::1 49704 620687501 527219581 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +780 0.268182516 1 ::1 49704 ::1 61584 527219581 620687541 44 05000203100000002c00000030000000140000000000000000000000bb573678 ........,...0................W6x5\!I..._! .. +782 0.268371105 0 ::1 61584 ::1 49704 620687541 527219625 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K.........W6x +784 0.270149946 1 ::1 49704 ::1 61584 527219625 620687653 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +786 0.270310879 0 ::1 61584 ::1 49704 620687653 527219653 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K.........W6x +788 0.270473003 1 ::1 49704 ::1 61584 527219653 620687713 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +790 0.270698309 0 ::1 61584 ::1 49704 620687713 527219745 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K.........W6x +792 0.270946980 1 ::1 49704 ::1 61584 527219745 620687849 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +794 0.271101713 0 ::1 61584 ::1 49704 620687849 527219777 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K.........W6x +796 0.271265268 1 ::1 49704 ::1 61584 527219777 620687989 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +798 0.271407604 0 ::1 61584 ::1 49704 620687989 527219809 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K.........W6x +800 0.271565676 1 ::1 49704 ::1 61584 527219809 620688123 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +802 0.271707296 0 ::1 61584 ::1 49704 620688123 527219841 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K.........W6x +804 0.271859884 1 ::1 49704 ::1 61584 527219841 620688259 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +806 0.272001266 0 ::1 61584 ::1 49704 620688259 527219873 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K.........W6x +808 0.272209644 1 ::1 49704 ::1 61584 527219873 620688405 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +810 0.272366524 0 ::1 61584 ::1 49704 620688405 527219905 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K.........W6x +812 0.272527695 1 ::1 49704 ::1 61584 527219905 620688551 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +814 0.272667885 0 ::1 61584 ::1 49704 620688551 527219937 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K.........W6x +816 0.272818089 1 ::1 49704 ::1 61584 527219937 620688709 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +818 0.272979498 0 ::1 61584 ::1 49704 620688709 527219969 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K.........W6x +820 0.273175240 1 ::1 49704 ::1 61584 527219969 620688841 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +822 0.273324013 0 ::1 61584 ::1 49704 620688841 527220001 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K.........W6x +824 0.273483753 1 ::1 49704 ::1 61584 527220001 620688987 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +826 0.273622036 0 ::1 61584 ::1 49704 620688987 527220033 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K.........W6x +828 0.273772717 1 ::1 49704 ::1 61584 527220033 620689131 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +830 0.273908138 0 ::1 61584 ::1 49704 620689131 527220065 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K.........W6x +832 0.274113417 1 ::1 49704 ::1 61584 527220065 620689273 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +834 0.274317265 0 ::1 61584 ::1 49704 620689273 527220097 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K.........W6x +836 0.274486303 1 ::1 49704 ::1 61584 527220097 620689421 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +838 0.274635553 0 ::1 61584 ::1 49704 620689421 527220129 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K.........W6x +840 0.274820805 1 ::1 49704 ::1 61584 527220129 620689575 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +887 0.415358067 0 ::1 61584 ::1 49704 620689575 527220161 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +889 0.415589809 1 ::1 49704 ::1 61584 527220161 620689615 44 05000203100000002c0000004000000014000000000000000000000036173fa4 ........,...@...............6.?.FR.@..'a./}b +891 0.415823460 0 ::1 61584 ::1 49704 620689615 527220205 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........6.?. +893 0.417497635 1 ::1 49704 ::1 61584 527220205 620689707 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +895 0.417720079 0 ::1 61584 ::1 49704 620689707 527220233 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........6.?. +897 0.417896032 1 ::1 49704 ::1 61584 527220233 620689767 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +899 0.418177128 0 ::1 61584 ::1 49704 620689767 527220325 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........6.?. +901 0.418409348 1 ::1 49704 ::1 61584 527220325 620689883 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +903 0.418619633 0 ::1 61584 ::1 49704 620689883 527220357 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........6.?. +905 0.418898821 1 ::1 49704 ::1 61584 527220357 620690003 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +907 0.419066191 0 ::1 61584 ::1 49704 620690003 527220389 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........6.?. +909 0.419243097 1 ::1 49704 ::1 61584 527220389 620690117 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +911 0.419407368 0 ::1 61584 ::1 49704 620690117 527220421 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........6.?. +913 0.419606924 1 ::1 49704 ::1 61584 527220421 620690233 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +915 0.419775724 0 ::1 61584 ::1 49704 620690233 527220453 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........6.?. +917 0.419952631 1 ::1 49704 ::1 61584 527220453 620690359 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +919 0.420110941 0 ::1 61584 ::1 49704 620690359 527220485 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........6.?. +921 0.420283318 1 ::1 49704 ::1 61584 527220485 620690485 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +923 0.420444012 0 ::1 61584 ::1 49704 620690485 527220517 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........6.?. +925 0.420660496 1 ::1 49704 ::1 61584 527220517 620690623 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +927 0.420824289 0 ::1 61584 ::1 49704 620690623 527220549 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........6.?. +929 0.421001911 1 ::1 49704 ::1 61584 527220549 620690735 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +931 0.421159267 0 ::1 61584 ::1 49704 620690735 527220581 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........6.?. +933 0.421358109 1 ::1 49704 ::1 61584 527220581 620690861 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +935 0.421535492 0 ::1 61584 ::1 49704 620690861 527220613 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........6.?. +937 0.421779633 1 ::1 49704 ::1 61584 527220613 620690985 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +939 0.421941996 0 ::1 61584 ::1 49704 620690985 527220645 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........6.?. +941 0.422116280 1 ::1 49704 ::1 61584 527220645 620691107 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +943 0.422368288 0 ::1 61584 ::1 49704 620691107 527220677 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........6.?. +945 0.422563314 1 ::1 49704 ::1 61584 527220677 620691235 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +947 0.422748566 0 ::1 61584 ::1 49704 620691235 527220709 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........6.?. +949 0.422941208 1 ::1 49704 ::1 61584 527220709 620691369 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +951 0.423107862 0 ::1 61584 ::1 49704 620691369 527220741 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........6.?. +953 0.423279762 1 ::1 49704 ::1 61584 527220741 620691499 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +955 0.423441648 0 ::1 61584 ::1 49704 620691499 527220773 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........6.?. +957 0.423677444 1 ::1 49704 ::1 61584 527220773 620691627 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +2826 6.945207596 0 ::1 61584 ::1 49704 620691627 527220805 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +2828 6.945486307 1 ::1 49704 ::1 61584 527220805 620691667 44 05000203100000002c00000052000000140000000000000000000000c2b9b576 ........,...R..................v.).F.gRD.X.s +2830 6.945771217 0 ::1 61584 ::1 49704 620691667 527220849 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K...........v +2832 6.948055267 1 ::1 49704 ::1 61584 527220849 620691767 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +2834 6.948267937 0 ::1 61584 ::1 49704 620691767 527220877 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K...........v +2836 6.948575974 1 ::1 49704 ::1 61584 527220877 620691827 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +2838 6.948970795 0 ::1 61584 ::1 49704 620691827 527220969 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K...........v +2840 6.949391127 1 ::1 49704 ::1 61584 527220969 620691951 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +2842 6.949593782 0 ::1 61584 ::1 49704 620691951 527221001 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K...........v +2844 6.949832678 1 ::1 49704 ::1 61584 527221001 620692079 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +2846 6.950011015 0 ::1 61584 ::1 49704 620692079 527221033 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K...........v +2848 6.950309515 1 ::1 49704 ::1 61584 527221033 620692201 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +2850 6.950502396 0 ::1 61584 ::1 49704 620692201 527221065 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K...........v +2852 6.950731993 1 ::1 49704 ::1 61584 527221065 620692325 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +2854 6.950914383 0 ::1 61584 ::1 49704 620692325 527221097 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K...........v +2856 6.951221704 1 ::1 49704 ::1 61584 527221097 620692459 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +2858 6.951417685 0 ::1 61584 ::1 49704 620692459 527221129 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K...........v +2860 6.951671362 1 ::1 49704 ::1 61584 527221129 620692593 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +2862 6.951906443 0 ::1 61584 ::1 49704 620692593 527221161 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K...........v +2864 6.952241421 1 ::1 49704 ::1 61584 527221161 620692739 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +2866 6.952469587 0 ::1 61584 ::1 49704 620692739 527221193 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K...........v +2868 6.952728510 1 ::1 49704 ::1 61584 527221193 620692859 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +2870 6.952963591 0 ::1 61584 ::1 49704 620692859 527221225 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K...........v +2872 6.953241825 1 ::1 49704 ::1 61584 527221225 620692993 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +2874 6.953480959 0 ::1 61584 ::1 49704 620692993 527221257 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K...........v +2876 6.953731775 1 ::1 49704 ::1 61584 527221257 620693125 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +2878 6.953969002 0 ::1 61584 ::1 49704 620693125 527221289 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K...........v +2880 6.954260349 1 ::1 49704 ::1 61584 527221289 620693255 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +2882 6.954584122 0 ::1 61584 ::1 49704 620693255 527221321 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K...........v +2884 6.954884052 1 ::1 49704 ::1 61584 527221321 620693399 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +2886 6.955170155 0 ::1 61584 ::1 49704 620693399 527221353 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K...........v +2888 6.955428123 1 ::1 49704 ::1 61584 527221353 620693547 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +2890 6.955663919 0 ::1 61584 ::1 49704 620693547 527221385 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K...........v +2892 6.955847025 1 ::1 49704 ::1 61584 527221385 620693693 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +2894 6.956200123 0 ::1 61584 ::1 49704 620693693 527221417 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K...........v +2896 6.956381083 1 ::1 49704 ::1 61584 527221417 620693851 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +2918 7.034266949 0 ::1 61584 ::1 49704 620693851 527221449 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +2920 7.034463882 1 ::1 49704 ::1 61584 527221449 620693891 44 05000203100000002c00000064000000140000000000000000000000cb0c73c3 ........,...d.................s.%dqM.......] +2922 7.034697533 0 ::1 61584 ::1 49704 620693891 527221493 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........s. +2924 7.036951065 1 ::1 49704 ::1 61584 527221493 620693975 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +2926 7.037211418 0 ::1 61584 ::1 49704 620693975 527221521 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........s. +2928 7.037439823 1 ::1 49704 ::1 61584 527221521 620694035 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +2930 7.037759304 0 ::1 61584 ::1 49704 620694035 527221613 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........s. +2932 7.037976265 1 ::1 49704 ::1 61584 527221613 620694143 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +2934 7.038219690 0 ::1 61584 ::1 49704 620694143 527221645 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........s. +2936 7.038393497 1 ::1 49704 ::1 61584 527221645 620694255 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +2938 7.038618326 0 ::1 61584 ::1 49704 620694255 527221677 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........s. +2940 7.038825750 1 ::1 49704 ::1 61584 527221677 620694361 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +2942 7.038963556 0 ::1 61584 ::1 49704 620694361 527221709 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........s. +2944 7.039167643 1 ::1 49704 ::1 61584 527221709 620694469 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +2946 7.039433718 0 ::1 61584 ::1 49704 620694469 527221741 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........s. +2948 7.039587736 1 ::1 49704 ::1 61584 527221741 620694587 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +2950 7.039798737 0 ::1 61584 ::1 49704 620694587 527221773 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........s. +2952 7.040117979 1 ::1 49704 ::1 61584 527221773 620694705 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +2954 7.040294409 0 ::1 61584 ::1 49704 620694705 527221805 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........s. +2956 7.040523767 1 ::1 49704 ::1 61584 527221805 620694835 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +2958 7.040660620 0 ::1 61584 ::1 49704 620694835 527221837 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........s. +2960 7.040835619 1 ::1 49704 ::1 61584 527221837 620694939 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +2962 7.041055679 0 ::1 61584 ::1 49704 620694939 527221869 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........s. +2964 7.041524172 1 ::1 49704 ::1 61584 527221869 620695057 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +2966 7.041650772 0 ::1 61584 ::1 49704 620695057 527221901 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........s. +2968 7.041820765 1 ::1 49704 ::1 61584 527221901 620695173 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +2970 7.042020321 0 ::1 61584 ::1 49704 620695173 527221933 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........s. +2972 7.042289734 1 ::1 49704 ::1 61584 527221933 620695287 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +2974 7.042985916 0 ::1 61584 ::1 49704 620695287 527221965 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........s. +2976 7.043224812 1 ::1 49704 ::1 61584 527221965 620695415 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +2978 7.043523073 0 ::1 61584 ::1 49704 620695415 527221997 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........s. +2980 7.043735027 1 ::1 49704 ::1 61584 527221997 620695535 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +2982 7.043989182 0 ::1 61584 ::1 49704 620695535 527222029 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........s. +2984 7.044208765 1 ::1 49704 ::1 61584 527222029 620695655 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +2986 7.044447899 0 ::1 61584 ::1 49704 620695655 527222061 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........s. +2988 7.044613600 1 ::1 49704 ::1 61584 527222061 620695777 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +2990 7.044858694 0 ::1 61584 ::1 49704 620695777 527222093 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........s. +2992 7.045030355 1 ::1 49704 ::1 61584 527222093 620695911 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +2994 7.045417309 0 ::1 61584 ::1 49704 620695911 527222125 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........s. +2996 7.045583963 1 ::1 49704 ::1 61584 527222125 620696043 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +2998 7.045820236 0 ::1 61584 ::1 49704 620696043 527222157 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........s. +3000 7.045982361 1 ::1 49704 ::1 61584 527222157 620696173 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3002 7.046272516 0 ::1 61584 ::1 49704 620696173 527222189 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........s. +3004 7.046539307 1 ::1 49704 ::1 61584 527222189 620696311 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3006 7.046902657 0 ::1 61584 ::1 49704 620696311 527222221 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........s. +3008 7.047113180 1 ::1 49704 ::1 61584 527222221 620696455 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3010 7.047345161 0 ::1 61584 ::1 49704 620696455 527222253 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........s. +3012 7.047511816 1 ::1 49704 ::1 61584 527222253 620696599 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3014 7.047701836 0 ::1 61584 ::1 49704 620696599 527222285 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........s. +3016 7.047862530 1 ::1 49704 ::1 61584 527222285 620696715 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3018 7.048047781 0 ::1 61584 ::1 49704 620696715 527222317 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........s. +3020 7.048206091 1 ::1 49704 ::1 61584 527222317 620696845 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3022 7.048424721 0 ::1 61584 ::1 49704 620696845 527222349 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........s. +3024 7.048583031 1 ::1 49704 ::1 61584 527222349 620696983 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3026 7.048876286 0 ::1 61584 ::1 49704 620696983 527222381 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........s. +3028 7.049034834 1 ::1 49704 ::1 61584 527222381 620697113 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3030 7.049320221 0 ::1 61584 ::1 49704 620697113 527222413 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........s. +3032 7.049476624 1 ::1 49704 ::1 61584 527222413 620697235 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3034 7.049683094 0 ::1 61584 ::1 49704 620697235 527222445 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........s. +3036 7.049835920 1 ::1 49704 ::1 61584 527222445 620697357 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3038 7.050015926 0 ::1 61584 ::1 49704 620697357 527222477 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........s. +3040 7.050401688 1 ::1 49704 ::1 61584 527222477 620697491 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3042 7.050653696 0 ::1 61584 ::1 49704 620697491 527222509 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........s. +3044 7.050836086 1 ::1 49704 ::1 61584 527222509 620697619 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3046 7.051035166 0 ::1 61584 ::1 49704 620697619 527222541 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........s. +3048 7.051258802 1 ::1 49704 ::1 61584 527222541 620697743 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3050 7.083638906 0 ::1 61584 ::1 49704 620697743 527222573 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........s. +3052 7.084129095 1 ::1 49704 ::1 61584 527222573 620698259 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3070 7.120299578 0 ::1 61584 ::1 49704 620698259 527222601 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3072 7.120506525 1 ::1 49704 ::1 61584 527222601 620698299 44 05000203100000002c0000008600000014000000000000000000000080339a69 ........,....................3.i[.$G.M..xz.K +3074 7.120724201 0 ::1 61584 ::1 49704 620698299 527222645 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K.........3.i +3084 7.122637987 1 ::1 49704 ::1 61584 527222645 620698411 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3086 7.122870207 0 ::1 61584 ::1 49704 620698411 527222673 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........3.i +3088 7.123056173 1 ::1 49704 ::1 61584 527222673 620698471 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3090 7.123336315 0 ::1 61584 ::1 49704 620698471 527222765 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........3.i +3092 7.123602867 1 ::1 49704 ::1 61584 527222765 620698607 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3094 7.123867035 0 ::1 61584 ::1 49704 620698607 527222797 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........3.i +3096 7.124051809 1 ::1 49704 ::1 61584 527222797 620698747 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3098 7.124268770 0 ::1 61584 ::1 49704 620698747 527222829 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........3.i +3100 7.124444485 1 ::1 49704 ::1 61584 527222829 620698881 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3102 7.124621630 0 ::1 61584 ::1 49704 620698881 527222861 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........3.i +3104 7.124847651 1 ::1 49704 ::1 61584 527222861 620699017 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3106 7.125009060 0 ::1 61584 ::1 49704 620699017 527222893 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3108 7.125179291 1 ::1 49704 ::1 61584 527222893 620699163 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3110 7.125326633 0 ::1 61584 ::1 49704 620699163 527222925 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3112 7.125487328 1 ::1 49704 ::1 61584 527222925 620699309 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3114 7.125627756 0 ::1 61584 ::1 49704 620699309 527222957 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K.........3.i +3116 7.125811100 1 ::1 49704 ::1 61584 527222957 620699467 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3118 7.126024008 0 ::1 61584 ::1 49704 620699467 527222989 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........3.i +3120 7.126207829 1 ::1 49704 ::1 61584 527222989 620699599 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3122 7.126405954 0 ::1 61584 ::1 49704 620699599 527223021 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3124 7.126571894 1 ::1 49704 ::1 61584 527223021 620699745 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3126 7.126765490 0 ::1 61584 ::1 49704 620699745 527223053 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K.........3.i +3128 7.126973391 1 ::1 49704 ::1 61584 527223053 620699889 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3130 7.127202988 0 ::1 61584 ::1 49704 620699889 527223085 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........3.i +3132 7.127386808 1 ::1 49704 ::1 61584 527223085 620700031 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3134 7.127668858 0 ::1 61584 ::1 49704 620700031 527223117 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K.........3.i +3136 7.127861023 1 ::1 49704 ::1 61584 527223117 620700191 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3138 7.128058672 0 ::1 61584 ::1 49704 620700191 527223149 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K.........3.i +3140 7.128229380 1 ::1 49704 ::1 61584 527223149 620700347 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3142 7.128455400 0 ::1 61584 ::1 49704 620700347 527223181 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........3.i +3144 7.128619909 1 ::1 49704 ::1 61584 527223181 620700501 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3146 7.128857613 0 ::1 61584 ::1 49704 620700501 527223213 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3148 7.129057407 1 ::1 49704 ::1 61584 527223213 620700647 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3150 7.129230499 0 ::1 61584 ::1 49704 620700647 527223245 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........3.i +3152 7.129389524 1 ::1 49704 ::1 61584 527223245 620700801 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3154 7.129552126 0 ::1 61584 ::1 49704 620700801 527223277 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K.........3.i +3156 7.129708767 1 ::1 49704 ::1 61584 527223277 620700951 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3158 7.129976511 0 ::1 61584 ::1 49704 620700951 527223309 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........3.i +3160 7.130142927 1 ::1 49704 ::1 61584 527223309 620701103 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3162 7.130330801 0 ::1 61584 ::1 49704 620701103 527223341 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........3.i +3164 7.130491495 1 ::1 49704 ::1 61584 527223341 620701243 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3166 7.130665064 0 ::1 61584 ::1 49704 620701243 527223373 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........3.i +3168 7.130846500 1 ::1 49704 ::1 61584 527223373 620701391 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3170 7.131041527 0 ::1 61584 ::1 49704 620701391 527223405 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K.........3.i +3172 7.131209612 1 ::1 49704 ::1 61584 527223405 620701553 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3174 7.131402731 0 ::1 61584 ::1 49704 620701553 527223437 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K.........3.i +3176 7.131569147 1 ::1 49704 ::1 61584 527223437 620701725 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3178 7.131756067 0 ::1 61584 ::1 49704 620701725 527223469 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K.........3.i +3180 7.131913424 1 ::1 49704 ::1 61584 527223469 620701869 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3186 7.140454054 0 ::1 61584 ::1 49704 620701869 527223501 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3188 7.140626907 1 ::1 49704 ::1 61584 527223501 620701909 44 05000203100000002c000000a000000014000000000000000000000000d0e743 ........,......................C..3G..o...&. +3190 7.140837193 0 ::1 61584 ::1 49704 620701909 527223545 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K...........C +3192 7.142642021 1 ::1 49704 ::1 61584 527223545 620702037 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3194 7.142882824 0 ::1 61584 ::1 49704 620702037 527223573 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........C +3196 7.143133402 1 ::1 49704 ::1 61584 527223573 620702097 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3198 7.143397093 0 ::1 61584 ::1 49704 620702097 527223665 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K...........C +3200 7.143709183 1 ::1 49704 ::1 61584 527223665 620702249 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3202 7.144004822 0 ::1 61584 ::1 49704 620702249 527223697 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K...........C +3204 7.144263983 1 ::1 49704 ::1 61584 527223697 620702405 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3206 7.144436121 0 ::1 61584 ::1 49704 620702405 527223729 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K...........C +3208 7.144617796 1 ::1 49704 ::1 61584 527223729 620702555 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3210 7.144829512 0 ::1 61584 ::1 49704 620702555 527223761 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K...........C +3212 7.145004988 1 ::1 49704 ::1 61584 527223761 620702707 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3214 7.145196676 0 ::1 61584 ::1 49704 620702707 527223793 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K...........C +3216 7.145369530 1 ::1 49704 ::1 61584 527223793 620702869 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3218 7.145562649 0 ::1 61584 ::1 49704 620702869 527223825 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K...........C +3220 7.145727634 1 ::1 49704 ::1 61584 527223825 620703031 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3222 7.145962715 0 ::1 61584 ::1 49704 620703031 527223857 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K...........C +3224 7.146127701 1 ::1 49704 ::1 61584 527223857 620703205 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3226 7.146285057 0 ::1 61584 ::1 49704 620703205 527223889 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K...........C +3228 7.146449566 1 ::1 49704 ::1 61584 527223889 620703353 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3230 7.146604300 0 ::1 61584 ::1 49704 620703353 527223921 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K...........C +3232 7.146792889 1 ::1 49704 ::1 61584 527223921 620703515 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3234 7.146934271 0 ::1 61584 ::1 49704 620703515 527223953 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K...........C +3236 7.147104263 1 ::1 49704 ::1 61584 527223953 620703675 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3238 7.147261620 0 ::1 61584 ::1 49704 620703675 527223985 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K...........C +3240 7.147425175 1 ::1 49704 ::1 61584 527223985 620703833 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3242 7.147656202 0 ::1 61584 ::1 49704 620703833 527224017 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K...........C +3244 7.147841215 1 ::1 49704 ::1 61584 527224017 620704003 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3246 7.148002863 0 ::1 61584 ::1 49704 620704003 527224049 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K...........C +3248 7.148167610 1 ::1 49704 ::1 61584 527224049 620704185 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3254 7.154422998 0 ::1 61584 ::1 49704 620704185 527224081 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3256 7.154586792 1 ::1 49704 ::1 61584 527224081 620704225 44 05000203100000002c000000b0000000140000000000000000000000beefab51 ........,......................Q^n.@.C...... +3258 7.154812813 0 ::1 61584 ::1 49704 620704225 527224125 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K...........Q +3260 7.156443596 1 ::1 49704 ::1 61584 527224125 620704321 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3262 7.156622648 0 ::1 61584 ::1 49704 620704321 527224153 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........Q +3264 7.156826973 1 ::1 49704 ::1 61584 527224153 620704381 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3266 7.157087803 0 ::1 61584 ::1 49704 620704381 527224245 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........Q +3268 7.157273769 1 ::1 49704 ::1 61584 527224245 620704501 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3270 7.157436371 0 ::1 61584 ::1 49704 620704501 527224277 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K...........Q +3272 7.157598257 1 ::1 49704 ::1 61584 527224277 620704625 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3274 7.157789707 0 ::1 61584 ::1 49704 620704625 527224309 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K...........Q +3276 7.157947540 1 ::1 49704 ::1 61584 527224309 620704743 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3278 7.158117533 0 ::1 61584 ::1 49704 620704743 527224341 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........Q +3280 7.158281803 1 ::1 49704 ::1 61584 527224341 620704863 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3282 7.158438921 0 ::1 61584 ::1 49704 620704863 527224373 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3284 7.158660650 1 ::1 49704 ::1 61584 527224373 620704993 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3286 7.158844948 0 ::1 61584 ::1 49704 620704993 527224405 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3288 7.159034967 1 ::1 49704 ::1 61584 527224405 620705123 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3290 7.159224749 0 ::1 61584 ::1 49704 620705123 527224437 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........Q +3292 7.159385920 1 ::1 49704 ::1 61584 527224437 620705265 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3294 7.159539223 0 ::1 61584 ::1 49704 620705265 527224469 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K...........Q +3296 7.159695387 1 ::1 49704 ::1 61584 527224469 620705381 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3298 7.159928799 0 ::1 61584 ::1 49704 620705381 527224501 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3300 7.160115004 1 ::1 49704 ::1 61584 527224501 620705511 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3302 7.160278797 0 ::1 61584 ::1 49704 620705511 527224533 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........Q +3304 7.160437346 1 ::1 49704 ::1 61584 527224533 620705639 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3306 7.160589933 0 ::1 61584 ::1 49704 620705639 527224565 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........Q +3308 7.160773993 1 ::1 49704 ::1 61584 527224565 620705765 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3310 7.161034346 0 ::1 61584 ::1 49704 620705765 527224597 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........Q +3312 7.161198378 1 ::1 49704 ::1 61584 527224597 620705891 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3314 7.161389828 0 ::1 61584 ::1 49704 620705891 527224629 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........Q +3316 7.161551476 1 ::1 49704 ::1 61584 527224629 620706023 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3318 7.161714554 0 ::1 61584 ::1 49704 620706023 527224661 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3320 7.161954403 1 ::1 49704 ::1 61584 527224661 620706153 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3322 7.162117720 0 ::1 61584 ::1 49704 620706153 527224693 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K...........Q +3324 7.162277222 1 ::1 49704 ::1 61584 527224693 620706291 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3326 7.162438154 0 ::1 61584 ::1 49704 620706291 527224725 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K...........Q +3328 7.162596226 1 ::1 49704 ::1 61584 527224725 620706427 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3330 7.162787199 0 ::1 61584 ::1 49704 620706427 527224757 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........Q +3332 7.162927628 1 ::1 49704 ::1 61584 527224757 620706559 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3334 7.163114309 0 ::1 61584 ::1 49704 620706559 527224789 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........Q +3336 7.163303614 1 ::1 49704 ::1 61584 527224789 620706701 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3338 7.163469315 0 ::1 61584 ::1 49704 620706701 527224821 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K...........Q +3340 7.163629532 1 ::1 49704 ::1 61584 527224821 620706849 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3368 7.201122999 0 ::1 61584 ::1 49704 620706849 527224853 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........s. +3370 7.201478243 1 ::1 49704 ::1 61584 527224853 620707139 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3390 7.274314404 0 ::1 61584 ::1 49704 620707139 527224881 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........s. +3392 7.274622679 1 ::1 49704 ::1 61584 527224881 620707345 28 05000203100000001c000000c7000000040000000100000001000000 ............................ diff --git a/captures/019-loopback-write-test-int-101-rerun/nmx-stream-__1_49704-to-__1_61584.bin b/captures/019-loopback-write-test-int-101-rerun/nmx-stream-__1_49704-to-__1_61584.bin new file mode 100644 index 0000000..07132b5 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/nmx-stream-__1_49704-to-__1_61584.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/nmx-stream-__1_61584-to-__1_49704.bin b/captures/019-loopback-write-test-int-101-rerun/nmx-stream-__1_61584-to-__1_49704.bin new file mode 100644 index 0000000..bccf9c7 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/nmx-stream-__1_61584-to-__1_49704.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/stderr.txt b/captures/019-loopback-write-test-int-101-rerun/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/019-loopback-write-test-int-101-rerun/stdout.txt b/captures/019-loopback-write-test-int-101-rerun/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-conversations.tsv b/captures/019-loopback-write-test-int-101-rerun/tcp-conversations.tsv new file mode 100644 index 0000000..2bd9491 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-conversations.tsv @@ -0,0 +1,52 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2363 44849 0.025377512 22.281961918 +::1:49704 ::1:61584 400 32726 1.821613789 9.096236467 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61611 2 14170 18.613323212 18.680990934 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61586 2 13997 4.122543335 4.207241535 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 21 8281 2.291854143 9.561464310 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61592 3 2703 5.786557674 8.335045338 +::1:135 ::1:61583 20 2600 1.818969488 8.975749493 +::1:32571 ::1:61585 4 2196 2.141447544 2.147597551 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61614 3 1941 19.937263966 22.152673006 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 16 1939 13.631903172 13.643691778 +::1:80 ::1:61596 6 1821 7.173758984 7.180132389 +::1:80 ::1:61582 6 1820 0.148451805 0.156414270 +::1:80 ::1:61594 6 1793 6.928296328 6.936648130 +::1:80 ::1:61599 6 1793 7.541975975 7.548925161 +::1:80 ::1:61607 6 1793 16.927225113 16.934458971 +::1:80 ::1:61610 6 1793 17.545712233 17.552884102 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 13.521515131 13.522334814 +::1:80 ::1:61603 6 1788 12.118236542 12.125626802 +::1:80 ::1:61605 6 1788 12.220467806 12.226492167 +::1:80 ::1:61613 6 1784 19.505336285 19.512582064 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61587 2 1202 4.218102694 4.222707272 +::1:808 ::1:55800 2 1150 7.163369656 7.164112568 +127.0.0.1:57484 127.0.0.1:57746 90 1080 0.000000000 22.193759918 +127.0.0.1:57485 127.0.0.1:57747 90 1080 0.045070648 22.196920395 +127.0.0.1:57470 127.0.0.1:57477 89 1068 0.005459070 22.040819883 +127.0.0.1:57684 127.0.0.1:57745 88 1056 0.273072720 21.962315321 +127.0.0.1:57608 127.0.0.1:57631 88 1056 0.326564312 21.962295294 +10.100.0.48:1433 10.100.0.48:49792 8 1028 6.740667343 16.748473167 +10.100.0.48:1433 10.100.0.48:49805 12 1002 5.008180857 15.012050629 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61601 6 913 9.540649414 9.563248396 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61600 6 900 9.504416704 9.536962986 +::1:808 ::1:49859 1 499 2.734518528 2.734518528 +::1:80 ::1:61581 2 332 0.142004490 0.145492792 +::1:80 ::1:61593 2 332 6.917996883 6.922265291 +::1:80 ::1:61595 2 332 7.163655281 7.167507410 +::1:80 ::1:61598 2 332 7.534628153 7.538175583 +::1:80 ::1:61602 2 332 12.109789133 12.113690138 +::1:80 ::1:61604 2 332 12.213618279 12.217303038 +::1:80 ::1:61606 2 332 16.919490814 16.923739195 +::1:80 ::1:61609 2 332 17.536409616 17.541595459 +::1:80 ::1:61612 2 332 19.496050835 19.500209332 +::1:49704 ::1:49829 2 270 18.437757492 18.438119650 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61597 1 52 7.428865910 7.428865910 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61608 1 52 17.430578232 17.430578232 +127.0.0.1:57471 127.0.0.1:63342 4 24 4.438728333 19.441608429 +127.0.0.1:49787 127.0.0.1:49788 21 21 0.752757072 22.152352810 +10.100.0.48:1433 10.100.0.48:50767 2 2 2.040970802 2.213399410 +10.100.0.48:1433 10.100.0.48:49936 2 2 13.616199732 14.770181417 +10.100.0.48:1433 10.100.0.48:49935 2 2 14.189344406 15.145900726 +10.100.0.48:1433 10.100.0.48:49933 2 2 14.198451042 16.011182785 +10.100.0.48:1433 10.100.0.48:49934 2 2 14.198740244 14.973520756 diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-payload-57415-57433-decoded.tsv b/captures/019-loopback-write-test-int-101-rerun/tcp-payload-57415-57433-decoded.tsv new file mode 100644 index 0000000..bd9b365 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-payload-57415-57433-decoded.tsv @@ -0,0 +1,2364 @@ +frame time_relative direction src dst seq payload_len first_i32 second_i32 third_i32 first_u32_hex length_prefixed body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +5 0.000000000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374343 12 26 728294 0 0x0000001a 0 26 728294 0 1a 00 00 00 e6 1c 0b 00 00 00 00 00 ............ +7 0.000179052 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374355 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1876623360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 90 1f 00 00 00 00 00 ....T.c@.^1@......%....... +9 0.000552416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340813 12 -1 728294 0 0xffffffff 0 -1 728294 0 ff ff ff ff e6 1c 0b 00 00 00 00 00 ............ +11 0.001102686 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340825 12 22 718802 0 0x00000016 0 22 718802 0 16 00 00 00 d2 f7 0a 00 00 00 00 00 ............ +13 0.001311541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340837 22 18 2068517 0 0x00000012 1 2068517 0 196609 0 12 00 00 00 25 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +15 0.001587391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374381 12 -1 718802 0 0xffffffff 0 -1 718802 0 ff ff ff ff d2 f7 0a 00 00 00 00 00 ............ +17 0.019655704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374393 12 -2 82696 82678 0xfffffffe 0 -2 82696 82678 fe ff ff ff 08 43 01 00 f6 42 01 00 .....C...B.. +21 0.104050875 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374405 12 26 728295 0 0x0000001a 0 26 728295 0 1a 00 00 00 e7 1c 0b 00 00 00 00 00 ............ +23 0.104292870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374417 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1876492288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 90 1f 00 00 00 00 00 ....T.c@.^1@......'....... +25 0.104665995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340859 12 -1 728295 0 0xffffffff 0 -1 728295 0 ff ff ff ff e7 1c 0b 00 00 00 00 00 ............ +27 0.105087996 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340871 12 22 718803 0 0x00000016 0 22 718803 0 16 00 00 00 d3 f7 0a 00 00 00 00 00 ............ +29 0.105263472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340883 22 18 2068519 0 0x00000012 1 2068519 0 196609 0 12 00 00 00 27 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +31 0.105554104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374443 12 -1 718803 0 0xffffffff 0 -1 718803 0 ff ff ff ff d3 f7 0a 00 00 00 00 00 ............ +53 0.127744913 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374455 12 101 728296 0 0x00000065 0 101 728296 0 65 00 00 00 e8 1c 0b 00 00 00 00 00 e........... +55 0.127947569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374467 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 97 11 02 00 00 00 00 00 9b 9f 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 97 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +57 0.128386497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340905 12 -1 728296 0 0xffffffff 0 -1 728296 0 ff ff ff ff e8 1c 0b 00 00 00 00 00 ............ +59 0.129236937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340917 12 52 718804 0 0x00000034 0 52 718804 0 34 00 00 00 d4 f7 0a 00 00 00 00 00 4........... +61 0.129414320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340929 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 97 11 02 00 00 00 00 00 00 00 74 0c 1e 93 4d 01 00 00 "0...Dk.................L."".([...............t..." +67 0.130416870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374568 12 -1 718804 0 0xffffffff 0 -1 718804 0 ff ff ff ff d4 f7 0a 00 00 00 00 00 ............ +75 0.131664038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374580 12 30 728297 0 0x0000001e 0 30 728297 0 1e 00 00 00 e9 1c 0b 00 00 00 00 00 ............ +77 0.131865978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374592 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1876361216 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +79 0.132152557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340981 12 -1 728297 0 0xffffffff 0 -1 728297 0 ff ff ff ff e9 1c 0b 00 00 00 00 00 ............ +81 0.132600069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377340993 12 26 718805 0 0x0000001a 0 26 718805 0 1a 00 00 00 d5 f7 0a 00 00 00 00 00 ............ +83 0.132740974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341005 26 22 2068521 0 0x00000016 1 2068521 0 196609 0 16 00 00 00 29 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +85 0.133094072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374622 12 -1 718805 0 0xffffffff 0 -1 718805 0 ff ff ff ff d5 f7 0a 00 00 00 00 00 ............ +91 0.208076000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374634 12 26 728298 0 0x0000001a 0 26 728298 0 1a 00 00 00 ea 1c 0b 00 00 00 00 00 ............ +93 0.208369970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374646 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1876230144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 90 1f 00 00 00 00 00 ....T.c@.^1@......+....... +95 0.208716393 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341031 12 -1 728298 0 0xffffffff 0 -1 728298 0 ff ff ff ff ea 1c 0b 00 00 00 00 00 ............ +97 0.209105015 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341043 12 22 718806 0 0x00000016 0 22 718806 0 16 00 00 00 d6 f7 0a 00 00 00 00 00 ............ +99 0.209281206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341055 22 18 2068523 0 0x00000012 1 2068523 0 196609 0 12 00 00 00 2b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +101 0.209580660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374672 12 -1 718806 0 0xffffffff 0 -1 718806 0 ff ff ff ff d6 f7 0a 00 00 00 00 00 ............ +107 0.311349869 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374684 12 26 728299 0 0x0000001a 0 26 728299 0 1a 00 00 00 eb 1c 0b 00 00 00 00 00 ............ +109 0.311524868 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374696 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1876099072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 90 1f 00 00 00 00 00 ....T.c@.^1@......-....... +111 0.311853409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341077 12 -1 728299 0 0xffffffff 0 -1 728299 0 ff ff ff ff eb 1c 0b 00 00 00 00 00 ............ +113 0.313520670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341089 12 22 718807 0 0x00000016 0 22 718807 0 16 00 00 00 d7 f7 0a 00 00 00 00 00 ............ +115 0.313666344 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341101 22 18 2068525 0 0x00000012 1 2068525 0 196609 0 12 00 00 00 2d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +117 0.314015388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374722 12 -1 718807 0 0xffffffff 0 -1 718807 0 ff ff ff ff d7 f7 0a 00 00 00 00 00 ............ +121 0.404793501 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341123 12 -2 82679 82696 0xfffffffe 0 -2 82679 82696 fe ff ff ff f7 42 01 00 08 43 01 00 .....B...C.. +127 0.416707516 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374734 12 26 728300 0 0x0000001a 0 26 728300 0 1a 00 00 00 ec 1c 0b 00 00 00 00 00 ............ +129 0.416937828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374746 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1875968000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 90 1f 00 00 00 00 00 ....T.c@.^1@....../....... +131 0.417168379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341135 12 -1 728300 0 0xffffffff 0 -1 728300 0 ff ff ff ff ec 1c 0b 00 00 00 00 00 ............ +133 0.417649746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341147 12 22 718808 0 0x00000016 0 22 718808 0 16 00 00 00 d8 f7 0a 00 00 00 00 00 ............ +135 0.417816639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341159 22 18 2068527 0 0x00000012 1 2068527 0 196609 0 12 00 00 00 2f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +137 0.418119431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374772 12 -1 718808 0 0xffffffff 0 -1 718808 0 ff ff ff ff d8 f7 0a 00 00 00 00 00 ............ +139 0.432833195 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374784 12 34 728301 0 0x00000022 0 34 728301 0 22 00 00 00 ed 1c 0b 00 00 00 00 00 """..........." +141 0.433006287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374796 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 295174144 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 98 11 02 00 00 00 00 00 cc a0 23 c3 9d 01 00 00 .....!...o3.................#..... +143 0.433143139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374830 12 67 728302 0 0x00000043 0 67 728302 0 43 00 00 00 ee 1c 0b 00 00 00 00 00 C........... +145 0.433227539 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374842 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 98 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 2f 51 64 d6 ?.....3...|8...................=B.....&......... +147 0.433302164 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341181 12 -1 728301 0 0xffffffff 0 -1 728301 0 ff ff ff ff ed 1c 0b 00 00 00 00 00 ............ +149 0.433457136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341193 12 -1 728302 0 0xffffffff 0 -1 728302 0 ff ff ff ff ee 1c 0b 00 00 00 00 00 ............ +151 0.435561895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341205 12 52 718809 0 0x00000034 0 52 718809 0 34 00 00 00 d9 f7 0a 00 00 00 00 00 4........... +153 0.435723066 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341217 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 98 11 02 00 00 00 00 00 00 00 10 ca 4c 93 4d 01 00 00 "0...Dk.................L."".([.................L." +155 0.436121941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374909 12 -1 718809 0 0xffffffff 0 -1 718809 0 ff ff ff ff d9 f7 0a 00 00 00 00 00 ............ +157 0.437123060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374921 12 30 728303 0 0x0000001e 0 30 728303 0 1e 00 00 00 ef 1c 0b 00 00 00 00 00 ............ +159 0.437268496 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374933 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1875836928 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +161 0.437573195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341269 12 -1 728303 0 0xffffffff 0 -1 728303 0 ff ff ff ff ef 1c 0b 00 00 00 00 00 ............ +163 0.438045025 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341281 12 26 718810 0 0x0000001a 0 26 718810 0 1a 00 00 00 da f7 0a 00 00 00 00 00 ............ +165 0.438187838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341293 26 22 2068529 0 0x00000016 1 2068529 0 196609 0 16 00 00 00 31 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +167 0.438441515 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374963 12 -1 718810 0 0xffffffff 0 -1 718810 0 ff ff ff ff da f7 0a 00 00 00 00 00 ............ +173 0.520865440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374975 12 -2 82697 82679 0xfffffffe 0 -2 82697 82679 fe ff ff ff 09 43 01 00 f7 42 01 00 .....C...B.. +177 0.521158457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374987 12 26 728304 0 0x0000001a 0 26 728304 0 1a 00 00 00 f0 1c 0b 00 00 00 00 00 ............ +179 0.521352053 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333374999 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1875705856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 90 1f 00 00 00 00 00 ....T.c@.^1@......3....... +181 0.521846294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341319 12 -1 728304 0 0xffffffff 0 -1 728304 0 ff ff ff ff f0 1c 0b 00 00 00 00 00 ............ +183 0.524411678 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341331 12 22 718811 0 0x00000016 0 22 718811 0 16 00 00 00 db f7 0a 00 00 00 00 00 ............ +185 0.524608374 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341343 22 18 2068531 0 0x00000012 1 2068531 0 196609 0 12 00 00 00 33 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +187 0.524821758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375025 12 -1 718811 0 0xffffffff 0 -1 718811 0 ff ff ff ff db f7 0a 00 00 00 00 00 ............ +189 0.627282619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375037 12 26 728305 0 0x0000001a 0 26 728305 0 1a 00 00 00 f1 1c 0b 00 00 00 00 00 ............ +191 0.627604723 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375049 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1875574784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 90 1f 00 00 00 00 00 ....T.c@.^1@......5....... +193 0.628065109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341365 12 -1 728305 0 0xffffffff 0 -1 728305 0 ff ff ff ff f1 1c 0b 00 00 00 00 00 ............ +195 0.631654263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341377 12 22 718812 0 0x00000016 0 22 718812 0 16 00 00 00 dc f7 0a 00 00 00 00 00 ............ +197 0.631953001 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341389 22 18 2068533 0 0x00000012 1 2068533 0 196609 0 12 00 00 00 35 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +199 0.632214308 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375075 12 -1 718812 0 0xffffffff 0 -1 718812 0 ff ff ff ff dc f7 0a 00 00 00 00 00 ............ +207 0.733321905 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375087 12 26 728306 0 0x0000001a 0 26 728306 0 1a 00 00 00 f2 1c 0b 00 00 00 00 00 ............ +209 0.733522177 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375099 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1875443712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 90 1f 00 00 00 00 00 ....T.c@.^1@......7....... +211 0.733834982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341411 12 -1 728306 0 0xffffffff 0 -1 728306 0 ff ff ff ff f2 1c 0b 00 00 00 00 00 ............ +213 0.734311342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341423 12 22 718813 0 0x00000016 0 22 718813 0 16 00 00 00 dd f7 0a 00 00 00 00 00 ............ +215 0.734473467 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341435 22 18 2068535 0 0x00000012 1 2068535 0 196609 0 12 00 00 00 37 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +217 0.734894514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375125 12 -1 718813 0 0xffffffff 0 -1 718813 0 ff ff ff ff dd f7 0a 00 00 00 00 00 ............ +219 0.739497900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375137 12 34 728307 0 0x00000022 0 34 728307 0 22 00 00 00 f3 1c 0b 00 00 00 00 00 """..........." +221 0.739648581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375149 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 295239680 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 99 11 02 00 00 00 00 00 fe a1 23 c3 9d 01 00 00 .....!...o3.................#..... +223 0.739803791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375183 12 67 728308 0 0x00000043 0 67 728308 0 43 00 00 00 f4 1c 0b 00 00 00 00 00 C........... +225 0.739890814 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375195 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 99 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c 6a 9b 76 d6 ?.....3...|8...................=B.....&......... +226 0.739935875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341457 12 -1 728307 0 0xffffffff 0 -1 728307 0 ff ff ff ff f3 1c 0b 00 00 00 00 00 ............ +229 0.740128994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341469 12 -1 728308 0 0xffffffff 0 -1 728308 0 ff ff ff ff f4 1c 0b 00 00 00 00 00 ............ +231 0.741146803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341481 12 52 718814 0 0x00000034 0 52 718814 0 34 00 00 00 de f7 0a 00 00 00 00 00 4........... +233 0.741324186 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341493 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 99 11 02 00 00 00 00 00 00 00 2c 6b 7b 93 4d 01 00 00 "0...Dk.................L."".([...............,k{." +235 0.741599083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375262 12 -1 718814 0 0xffffffff 0 -1 718814 0 ff ff ff ff de f7 0a 00 00 00 00 00 ............ +236 0.742555380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375274 12 30 728309 0 0x0000001e 0 30 728309 0 1e 00 00 00 f5 1c 0b 00 00 00 00 00 ............ +238 0.742731094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375286 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1875312640 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +240 0.742934704 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341545 12 -1 728309 0 0xffffffff 0 -1 728309 0 ff ff ff ff f5 1c 0b 00 00 00 00 00 ............ +242 0.743303299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341557 12 26 718815 0 0x0000001a 0 26 718815 0 1a 00 00 00 df f7 0a 00 00 00 00 00 ............ +244 0.743442297 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341569 26 22 2068537 0 0x00000016 1 2068537 0 196609 0 16 00 00 00 39 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +246 0.743748665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375316 12 -1 718815 0 0xffffffff 0 -1 718815 0 ff ff ff ff df f7 0a 00 00 00 00 00 ............ +252 0.836396694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375328 12 26 728310 0 0x0000001a 0 26 728310 0 1a 00 00 00 f6 1c 0b 00 00 00 00 00 ............ +254 0.836706161 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375340 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1875181568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 90 1f 00 00 00 00 00 ....T.c@.^1@......;....... +256 0.837062120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341595 12 -1 728310 0 0xffffffff 0 -1 728310 0 ff ff ff ff f6 1c 0b 00 00 00 00 00 ............ +258 0.837703466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341607 12 22 718816 0 0x00000016 0 22 718816 0 16 00 00 00 e0 f7 0a 00 00 00 00 00 ............ +260 0.837859392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341619 22 18 2068539 0 0x00000012 1 2068539 0 196609 0 12 00 00 00 3b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +262 0.838161707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375366 12 -1 718816 0 0xffffffff 0 -1 718816 0 ff ff ff ff e0 f7 0a 00 00 00 00 00 ............ +268 0.905499697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341641 12 -2 82680 82697 0xfffffffe 0 -2 82680 82697 fe ff ff ff f8 42 01 00 09 43 01 00 .....B...C.. +272 0.939261913 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375378 12 26 728311 0 0x0000001a 0 26 728311 0 1a 00 00 00 f7 1c 0b 00 00 00 00 00 ............ +274 0.939434528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375390 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1875050496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 90 1f 00 00 00 00 00 ....T.c@.^1@......=....... +276 0.939697981 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341653 12 -1 728311 0 0xffffffff 0 -1 728311 0 ff ff ff ff f7 1c 0b 00 00 00 00 00 ............ +278 0.940181017 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341665 12 22 718817 0 0x00000016 0 22 718817 0 16 00 00 00 e1 f7 0a 00 00 00 00 00 ............ +280 0.940352440 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341677 22 18 2068541 0 0x00000012 1 2068541 0 196609 0 12 00 00 00 3d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +282 0.940654993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375416 12 -1 718817 0 0xffffffff 0 -1 718817 0 ff ff ff ff e1 f7 0a 00 00 00 00 00 ............ +289 1.023510933 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375428 12 -2 82698 82680 0xfffffffe 0 -2 82698 82680 fe ff ff ff 0a 43 01 00 f8 42 01 00 .....C...B.. +292 1.042470694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375440 12 26 728312 0 0x0000001a 0 26 728312 0 1a 00 00 00 f8 1c 0b 00 00 00 00 00 ............ +294 1.042631149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375452 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1874919424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 90 1f 00 00 00 00 00 ....T.c@.^1@......?....... +296 1.043031216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341699 12 -1 728312 0 0xffffffff 0 -1 728312 0 ff ff ff ff f8 1c 0b 00 00 00 00 00 ............ +298 1.043396473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341711 12 22 718818 0 0x00000016 0 22 718818 0 16 00 00 00 e2 f7 0a 00 00 00 00 00 ............ +300 1.043559074 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341723 22 18 2068543 0 0x00000012 1 2068543 0 196609 0 12 00 00 00 3f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +302 1.043803215 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375478 12 34 728313 0 0x00000022 0 34 728313 0 22 00 00 00 f9 1c 0b 00 00 00 00 00 """..........." +304 1.044015646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375490 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 295305216 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9a 11 02 00 00 00 00 00 2f a3 23 c3 9d 01 00 00 .....!...o3.............../.#..... +306 1.044188738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375524 12 67 728314 0 0x00000043 0 67 728314 0 43 00 00 00 fa 1c 0b 00 00 00 00 00 C........... +308 1.044275045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375536 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9a 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 68 61 c9 88 d6 ?.....3...|8...................=B.....&......... +309 1.044318914 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341745 12 -1 728313 0 0xffffffff 0 -1 728313 0 ff ff ff ff f9 1c 0b 00 00 00 00 00 ............ +312 1.044532299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341757 12 -1 728314 0 0xffffffff 0 -1 728314 0 ff ff ff ff fa 1c 0b 00 00 00 00 00 ............ +313 1.044565678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375603 12 -1 718818 0 0xffffffff 0 -1 718818 0 ff ff ff ff e2 f7 0a 00 00 00 00 00 ............ +315 1.045376301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341769 12 52 718819 0 0x00000034 0 52 718819 0 34 00 00 00 e3 f7 0a 00 00 00 00 00 4........... +316 1.045532942 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341781 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9a 11 02 00 00 00 00 00 00 00 77 d7 a9 93 4d 01 00 00 "0...Dk.................L."".([...............w..." +317 1.045820713 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375615 12 -1 718819 0 0xffffffff 0 -1 718819 0 ff ff ff ff e3 f7 0a 00 00 00 00 00 ............ +318 1.046695232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375627 12 30 728315 0 0x0000001e 0 30 728315 0 1e 00 00 00 fb 1c 0b 00 00 00 00 00 ............ +320 1.046838999 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375639 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1874788352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +322 1.047178268 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341833 12 -1 728315 0 0xffffffff 0 -1 728315 0 ff ff ff ff fb 1c 0b 00 00 00 00 00 ............ +324 1.048608065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341845 12 26 718820 0 0x0000001a 0 26 718820 0 1a 00 00 00 e4 f7 0a 00 00 00 00 00 ............ +326 1.048752069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341857 26 22 2068545 0 0x00000016 1 2068545 0 196609 0 16 00 00 00 41 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +328 1.049081326 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375669 12 -1 718820 0 0xffffffff 0 -1 718820 0 ff ff ff ff e4 f7 0a 00 00 00 00 00 ............ +334 1.146004677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375681 12 26 728316 0 0x0000001a 0 26 728316 0 1a 00 00 00 fc 1c 0b 00 00 00 00 00 ............ +336 1.146188498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375693 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1874657280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 90 1f 00 00 00 00 00 ....T.c@.^1@......C....... +338 1.146564722 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341883 12 -1 728316 0 0xffffffff 0 -1 728316 0 ff ff ff ff fc 1c 0b 00 00 00 00 00 ............ +340 1.146958590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341895 12 22 718821 0 0x00000016 0 22 718821 0 16 00 00 00 e5 f7 0a 00 00 00 00 00 ............ +342 1.147106171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341907 22 18 2068547 0 0x00000012 1 2068547 0 196609 0 12 00 00 00 43 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +344 1.147373199 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375719 12 -1 718821 0 0xffffffff 0 -1 718821 0 ff ff ff ff e5 f7 0a 00 00 00 00 00 ............ +348 1.250275135 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375731 12 26 728317 0 0x0000001a 0 26 728317 0 1a 00 00 00 fd 1c 0b 00 00 00 00 00 ............ +350 1.250439882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375743 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1874526208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 90 1f 00 00 00 00 00 ....T.c@.^1@......E....... +352 1.250798702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341929 12 -1 728317 0 0xffffffff 0 -1 728317 0 ff ff ff ff fd 1c 0b 00 00 00 00 00 ............ +354 1.251162052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341941 12 22 718822 0 0x00000016 0 22 718822 0 16 00 00 00 e6 f7 0a 00 00 00 00 00 ............ +356 1.251321554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341953 22 18 2068549 0 0x00000012 1 2068549 0 196609 0 12 00 00 00 45 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +358 1.251528978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375769 12 -1 718822 0 0xffffffff 0 -1 718822 0 ff ff ff ff e6 f7 0a 00 00 00 00 00 ............ +362 1.349023104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375781 12 101 728318 0 0x00000065 0 101 728318 0 65 00 00 00 fe 1c 0b 00 00 00 00 00 e........... +364 1.349215269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375793 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9b 11 02 00 00 00 00 00 60 a4 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9b 11 02 00 00 00 00 .....!...o3...............`.#.....?.....3...|8.. +366 1.349617004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341975 12 -1 728318 0 0xffffffff 0 -1 728318 0 ff ff ff ff fe 1c 0b 00 00 00 00 00 ............ +368 1.350903273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341987 12 52 718823 0 0x00000034 0 52 718823 0 34 00 00 00 e7 f7 0a 00 00 00 00 00 4........... +370 1.351069927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377341999 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9b 11 02 00 00 00 00 00 00 00 99 73 d8 93 4d 01 00 00 "0...Dk.................L."".([................s.." +372 1.351366043 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375894 12 -1 718823 0 0xffffffff 0 -1 718823 0 ff ff ff ff e7 f7 0a 00 00 00 00 00 ............ +374 1.352317095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375906 12 30 728319 0 0x0000001e 0 30 728319 0 1e 00 00 00 ff 1c 0b 00 00 00 00 00 ............ +376 1.352472782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375918 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1874395136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 47 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......G........... +378 1.352608681 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375948 12 26 728320 0 0x0000001a 0 26 728320 0 1a 00 00 00 00 1d 0b 00 00 00 00 00 ............ +380 1.352692604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375960 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1874264064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 90 1f 00 00 00 00 00 ....T.c@.^1@......I....... +382 1.352959156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342051 12 -1 728319 0 0xffffffff 0 -1 728319 0 ff ff ff ff ff 1c 0b 00 00 00 00 00 ............ +384 1.353203773 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342063 12 48 718824 0 0x00000030 0 48 718824 0 30 00 00 00 e8 f7 0a 00 00 00 00 00 0........... +386 1.353349686 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342075 48 22 2068551 0 0x00000016 0 22 2068551 0 196609 16 00 00 00 47 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 12 00 00 00 49 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G.........................I................. +388 1.353606701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342123 12 -1 728320 0 0xffffffff 0 -1 728320 0 ff ff ff ff 00 1d 0b 00 00 00 00 00 ............ +389 1.353643894 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375986 12 -1 718824 0 0xffffffff 0 -1 718824 0 ff ff ff ff e8 f7 0a 00 00 00 00 00 ............ +394 1.405652285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342135 12 -2 82681 82698 0xfffffffe 0 -2 82681 82698 fe ff ff ff f9 42 01 00 0a 43 01 00 .....B...C.. +400 1.455731869 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333375998 12 26 728321 0 0x0000001a 0 26 728321 0 1a 00 00 00 01 1d 0b 00 00 00 00 00 ............ +402 1.456007004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376010 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1874132992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 90 1f 00 00 00 00 00 ....T.c@.^1@......K....... +404 1.456328869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342147 12 -1 728321 0 0xffffffff 0 -1 728321 0 ff ff ff ff 01 1d 0b 00 00 00 00 00 ............ +406 1.456811666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342159 12 22 718825 0 0x00000016 0 22 718825 0 16 00 00 00 e9 f7 0a 00 00 00 00 00 ............ +408 1.456985235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342171 22 18 2068555 0 0x00000012 1 2068555 0 196609 0 12 00 00 00 4b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +410 1.457254648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376036 12 -1 718825 0 0xffffffff 0 -1 718825 0 ff ff ff ff e9 f7 0a 00 00 00 00 00 ............ +416 1.524308681 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376048 12 -2 82699 82681 0xfffffffe 0 -2 82699 82681 fe ff ff ff 0b 43 01 00 f9 42 01 00 .....C...B.. +420 1.558611393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376060 12 26 728322 0 0x0000001a 0 26 728322 0 1a 00 00 00 02 1d 0b 00 00 00 00 00 ............ +422 1.558790207 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376072 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1874001920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 90 1f 00 00 00 00 00 ....T.c@.^1@......M....... +424 1.559190273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342193 12 -1 728322 0 0xffffffff 0 -1 728322 0 ff ff ff ff 02 1d 0b 00 00 00 00 00 ............ +426 1.559581518 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342205 12 22 718826 0 0x00000016 0 22 718826 0 16 00 00 00 ea f7 0a 00 00 00 00 00 ............ +428 1.559733391 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342217 22 18 2068557 0 0x00000012 1 2068557 0 196609 0 12 00 00 00 4d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +430 1.559967279 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376098 12 -1 718826 0 0xffffffff 0 -1 718826 0 ff ff ff ff ea f7 0a 00 00 00 00 00 ............ +436 1.653919220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376110 12 101 728323 0 0x00000065 0 101 728323 0 65 00 00 00 03 1d 0b 00 00 00 00 00 e........... +438 1.654164076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376122 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9c 11 02 00 00 00 00 00 91 a5 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9c 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +440 1.654508114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342239 12 -1 728323 0 0xffffffff 0 -1 728323 0 ff ff ff ff 03 1d 0b 00 00 00 00 00 ............ +442 1.655914783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342251 12 52 718827 0 0x00000034 0 52 718827 0 34 00 00 00 eb f7 0a 00 00 00 00 00 4........... +444 1.656108141 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342263 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9c 11 02 00 00 00 00 00 00 00 60 fe 06 94 4d 01 00 00 "0...Dk.................L."".([...............`..." +446 1.656383753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376223 12 -1 718827 0 0xffffffff 0 -1 718827 0 ff ff ff ff eb f7 0a 00 00 00 00 00 ............ +448 1.657354355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376235 12 30 728324 0 0x0000001e 0 30 728324 0 1e 00 00 00 04 1d 0b 00 00 00 00 00 ............ +450 1.657548904 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376247 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1873870848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4f 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......O........... +452 1.657848597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342315 12 -1 728324 0 0xffffffff 0 -1 728324 0 ff ff ff ff 04 1d 0b 00 00 00 00 00 ............ +454 1.658446550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342327 12 26 718828 0 0x0000001a 0 26 718828 0 1a 00 00 00 ec f7 0a 00 00 00 00 00 ............ +456 1.658589840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342339 26 22 2068559 0 0x00000016 1 2068559 0 196609 0 16 00 00 00 4f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....O..................... +458 1.658927917 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376277 12 -1 718828 0 0xffffffff 0 -1 718828 0 ff ff ff ff ec f7 0a 00 00 00 00 00 ............ +460 1.661575794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376289 12 26 728325 0 0x0000001a 0 26 728325 0 1a 00 00 00 05 1d 0b 00 00 00 00 00 ............ +462 1.661782265 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376301 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1873739776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 90 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +464 1.662124157 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342365 12 -1 728325 0 0xffffffff 0 -1 728325 0 ff ff ff ff 05 1d 0b 00 00 00 00 00 ............ +466 1.662424803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342377 12 22 718829 0 0x00000016 0 22 718829 0 16 00 00 00 ed f7 0a 00 00 00 00 00 ............ +468 1.662587881 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342389 22 18 2068561 0 0x00000012 1 2068561 0 196609 0 12 00 00 00 51 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +470 1.662834644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376327 12 -1 718829 0 0xffffffff 0 -1 718829 0 ff ff ff ff ed f7 0a 00 00 00 00 00 ............ +474 1.766540527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376339 12 26 728326 0 0x0000001a 0 26 728326 0 1a 00 00 00 06 1d 0b 00 00 00 00 00 ............ +476 1.766779900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376351 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1873608704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 90 1f 00 00 00 00 00 ....T.c@.^1@......S....... +478 1.767153025 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342411 12 -1 728326 0 0xffffffff 0 -1 728326 0 ff ff ff ff 06 1d 0b 00 00 00 00 00 ............ +480 1.767512560 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342423 12 22 718830 0 0x00000016 0 22 718830 0 16 00 00 00 ee f7 0a 00 00 00 00 00 ............ +482 1.767673969 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342435 22 18 2068563 0 0x00000012 1 2068563 0 196609 0 12 00 00 00 53 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +484 1.767981768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376377 12 -1 718830 0 0xffffffff 0 -1 718830 0 ff ff ff ff ee f7 0a 00 00 00 00 00 ............ +574 1.869810581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376389 12 26 728327 0 0x0000001a 0 26 728327 0 1a 00 00 00 07 1d 0b 00 00 00 00 00 ............ +576 1.869986534 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376401 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1873477632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 90 1f 00 00 00 00 00 ....T.c@.^1@......U....... +578 1.870354176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342457 12 -1 728327 0 0xffffffff 0 -1 728327 0 ff ff ff ff 07 1d 0b 00 00 00 00 00 ............ +580 1.870706081 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342469 12 22 718831 0 0x00000016 0 22 718831 0 16 00 00 00 ef f7 0a 00 00 00 00 00 ............ +582 1.870870590 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342481 22 18 2068565 0 0x00000012 1 2068565 0 196609 0 12 00 00 00 55 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +584 1.871265888 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376427 12 -1 718831 0 0xffffffff 0 -1 718831 0 ff ff ff ff ef f7 0a 00 00 00 00 00 ............ +589 1.906534672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342503 12 -2 82682 82699 0xfffffffe 0 -2 82682 82699 fe ff ff ff fa 42 01 00 0b 43 01 00 .....B...C.. +722 1.959002733 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376439 12 34 728328 0 0x00000022 0 34 728328 0 22 00 00 00 08 1d 0b 00 00 00 00 00 """..........." +724 1.959163189 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376451 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 295501824 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9d 11 02 00 00 00 00 00 c2 a6 23 c3 9d 01 00 00 .....!...o3.................#..... +726 1.959293604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376485 12 67 728329 0 0x00000043 0 67 728329 0 43 00 00 00 09 1d 0b 00 00 00 00 00 C........... +728 1.959382772 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376497 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9d 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 28 2d 57 bf d6 ?.....3...|8...................=B.....&......... +730 1.959507704 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342515 12 -1 728328 0 0xffffffff 0 -1 728328 0 ff ff ff ff 08 1d 0b 00 00 00 00 00 ............ +732 1.959700823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342527 12 -1 728329 0 0xffffffff 0 -1 728329 0 ff ff ff ff 09 1d 0b 00 00 00 00 00 ............ +734 1.960674763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342539 12 52 718832 0 0x00000034 0 52 718832 0 34 00 00 00 f0 f7 0a 00 00 00 00 00 4........... +736 1.960841894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342551 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9d 11 02 00 00 00 00 00 00 00 a5 80 35 94 4d 01 00 00 "0...Dk.................L."".([.................5." +738 1.961100101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376564 12 -1 718832 0 0xffffffff 0 -1 718832 0 ff ff ff ff f0 f7 0a 00 00 00 00 00 ............ +740 1.962215185 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376576 12 30 728330 0 0x0000001e 0 30 728330 0 1e 00 00 00 0a 1d 0b 00 00 00 00 00 ............ +742 1.962388992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376588 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1873346560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 57 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......W........... +744 1.962738514 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342603 12 -1 728330 0 0xffffffff 0 -1 728330 0 ff ff ff ff 0a 1d 0b 00 00 00 00 00 ............ +746 1.964339256 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342615 12 26 718833 0 0x0000001a 0 26 718833 0 1a 00 00 00 f1 f7 0a 00 00 00 00 00 ............ +748 1.964487553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342627 26 22 2068567 0 0x00000016 1 2068567 0 196609 0 16 00 00 00 57 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....W..................... +750 1.964749575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376618 12 -1 718833 0 0xffffffff 0 -1 718833 0 ff ff ff ff f1 f7 0a 00 00 00 00 00 ............ +752 1.972515821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376630 12 26 728331 0 0x0000001a 0 26 728331 0 1a 00 00 00 0b 1d 0b 00 00 00 00 00 ............ +754 1.972718000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376642 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1873215488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 90 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +756 1.973059416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342653 12 -1 728331 0 0xffffffff 0 -1 728331 0 ff ff ff ff 0b 1d 0b 00 00 00 00 00 ............ +758 1.973458052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342665 12 22 718834 0 0x00000016 0 22 718834 0 16 00 00 00 f2 f7 0a 00 00 00 00 00 ............ +760 1.973598719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342677 22 18 2068569 0 0x00000012 1 2068569 0 196609 0 12 00 00 00 59 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +762 1.973934174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376668 12 -1 718834 0 0xffffffff 0 -1 718834 0 ff ff ff ff f2 f7 0a 00 00 00 00 00 ............ +770 2.025402069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376680 12 -2 82700 82682 0xfffffffe 0 -2 82700 82682 fe ff ff ff 0c 43 01 00 fa 42 01 00 .....C...B.. +842 2.075828314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376692 12 26 728332 0 0x0000001a 0 26 728332 0 1a 00 00 00 0c 1d 0b 00 00 00 00 00 ............ +844 2.075998783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376704 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1873084416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 90 1f 00 00 00 00 00 ....T.c@.^1@......[....... +846 2.076368093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342699 12 -1 728332 0 0xffffffff 0 -1 728332 0 ff ff ff ff 0c 1d 0b 00 00 00 00 00 ............ +848 2.076843023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342711 12 22 718835 0 0x00000016 0 22 718835 0 16 00 00 00 f3 f7 0a 00 00 00 00 00 ............ +850 2.076990366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342723 22 18 2068571 0 0x00000012 1 2068571 0 196609 0 12 00 00 00 5b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +852 2.077390194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376730 12 -1 718835 0 0xffffffff 0 -1 718835 0 ff ff ff ff f3 f7 0a 00 00 00 00 00 ............ +869 2.179527044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376742 12 26 728333 0 0x0000001a 0 26 728333 0 1a 00 00 00 0d 1d 0b 00 00 00 00 00 ............ +871 2.179796219 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376754 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1872953344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 90 1f 00 00 00 00 00 ....T.c@.^1@......]....... +873 2.180176497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342745 12 -1 728333 0 0xffffffff 0 -1 728333 0 ff ff ff ff 0d 1d 0b 00 00 00 00 00 ............ +875 2.180591345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342757 12 22 718836 0 0x00000016 0 22 718836 0 16 00 00 00 f4 f7 0a 00 00 00 00 00 ............ +877 2.180739641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342769 22 18 2068573 0 0x00000012 1 2068573 0 196609 0 12 00 00 00 5d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +879 2.181061745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376780 12 -1 718836 0 0xffffffff 0 -1 718836 0 ff ff ff ff f4 f7 0a 00 00 00 00 00 ............ +961 2.265738249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376792 12 34 728334 0 0x00000022 0 34 728334 0 22 00 00 00 0e 1d 0b 00 00 00 00 00 """..........." +963 2.265969038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376804 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 295567360 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9e 11 02 00 00 00 00 00 f4 a7 23 c3 9d 01 00 00 .....!...o3.................#..... +965 2.266227722 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376838 12 67 728335 0 0x00000043 0 67 728335 0 43 00 00 00 0f 1d 0b 00 00 00 00 00 C........... +967 2.266333818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376850 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9e 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a0 07 9d d1 d6 ?.....3...|8...................=B.....&......... +969 2.266395569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342791 12 -1 728334 0 0xffffffff 0 -1 728334 0 ff ff ff ff 0e 1d 0b 00 00 00 00 00 ............ +973 2.266585588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342803 12 -1 728335 0 0xffffffff 0 -1 728335 0 ff ff ff ff 0f 1d 0b 00 00 00 00 00 ............ +975 2.267528772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342815 12 52 718837 0 0x00000034 0 52 718837 0 34 00 00 00 f5 f7 0a 00 00 00 00 00 4........... +977 2.267696857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342827 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9e 11 02 00 00 00 00 00 00 00 1f 53 64 94 4d 01 00 00 "0...Dk.................L."".([................Sd." +979 2.267954588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376917 12 -1 718837 0 0xffffffff 0 -1 718837 0 ff ff ff ff f5 f7 0a 00 00 00 00 00 ............ +981 2.268798590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376929 12 30 728336 0 0x0000001e 0 30 728336 0 1e 00 00 00 10 1d 0b 00 00 00 00 00 ............ +983 2.268958807 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376941 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1872822272 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5f 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......_........... +985 2.269310951 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342879 12 -1 728336 0 0xffffffff 0 -1 728336 0 ff ff ff ff 10 1d 0b 00 00 00 00 00 ............ +987 2.269613504 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342891 12 26 718838 0 0x0000001a 0 26 718838 0 1a 00 00 00 f6 f7 0a 00 00 00 00 00 ............ +989 2.269752979 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342903 26 22 2068575 0 0x00000016 1 2068575 0 196609 0 16 00 00 00 5f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...._..................... +991 2.269985914 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376971 12 -1 718838 0 0xffffffff 0 -1 718838 0 ff ff ff ff f6 f7 0a 00 00 00 00 00 ............ +1001 2.283709764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376983 12 26 728337 0 0x0000001a 0 26 728337 0 1a 00 00 00 11 1d 0b 00 00 00 00 00 ............ +1003 2.283907890 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333376995 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1872691200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 90 1f 00 00 00 00 00 ....T.c@.^1@......a....... +1005 2.284328222 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342929 12 -1 728337 0 0xffffffff 0 -1 728337 0 ff ff ff ff 11 1d 0b 00 00 00 00 00 ............ +1007 2.285222530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342941 12 22 718839 0 0x00000016 0 22 718839 0 16 00 00 00 f7 f7 0a 00 00 00 00 00 ............ +1009 2.285368681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342953 22 18 2068577 0 0x00000012 1 2068577 0 196609 0 12 00 00 00 61 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +1011 2.285624743 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377021 12 -1 718839 0 0xffffffff 0 -1 718839 0 ff ff ff ff f7 f7 0a 00 00 00 00 00 ............ +1015 2.386878490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377033 12 26 728338 0 0x0000001a 0 26 728338 0 1a 00 00 00 12 1d 0b 00 00 00 00 00 ............ +1017 2.387106180 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377045 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1872560128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 90 1f 00 00 00 00 00 ....T.c@.^1@......c....... +1019 2.387448788 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342975 12 -1 728338 0 0xffffffff 0 -1 728338 0 ff ff ff ff 12 1d 0b 00 00 00 00 00 ............ +1021 2.388503551 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342987 12 22 718840 0 0x00000016 0 22 718840 0 16 00 00 00 f8 f7 0a 00 00 00 00 00 ............ +1023 2.388671398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377342999 22 18 2068579 0 0x00000012 1 2068579 0 196609 0 12 00 00 00 63 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +1025 2.388888359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377071 12 -1 718840 0 0xffffffff 0 -1 718840 0 ff ff ff ff f8 f7 0a 00 00 00 00 00 ............ +1032 2.407145023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343021 12 -2 82683 82700 0xfffffffe 0 -2 82683 82700 fe ff ff ff fb 42 01 00 0c 43 01 00 .....B...C.. +1039 2.491055965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377083 12 26 728339 0 0x0000001a 0 26 728339 0 1a 00 00 00 13 1d 0b 00 00 00 00 00 ............ +1041 2.491226673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377095 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1872429056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 90 1f 00 00 00 00 00 ....T.c@.^1@......e....... +1043 2.491631269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343033 12 -1 728339 0 0xffffffff 0 -1 728339 0 ff ff ff ff 13 1d 0b 00 00 00 00 00 ............ +1045 2.491981030 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343045 12 22 718841 0 0x00000016 0 22 718841 0 16 00 00 00 f9 f7 0a 00 00 00 00 00 ............ +1047 2.492147446 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343057 22 18 2068581 0 0x00000012 1 2068581 0 196609 0 12 00 00 00 65 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +1049 2.492503643 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377121 12 -1 718841 0 0xffffffff 0 -1 718841 0 ff ff ff ff f9 f7 0a 00 00 00 00 00 ............ +1051 2.527927160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377133 12 -2 82701 82683 0xfffffffe 0 -2 82701 82683 fe ff ff ff 0d 43 01 00 fb 42 01 00 .....C...B.. +1055 2.570348501 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377145 12 101 728340 0 0x00000065 0 101 728340 0 65 00 00 00 14 1d 0b 00 00 00 00 00 e........... +1057 2.570562124 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377157 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9f 11 02 00 00 00 00 00 25 a9 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9f 11 02 00 00 00 00 .....!...o3...............%.#.....?.....3...|8.. +1059 2.570893288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343079 12 -1 728340 0 0xffffffff 0 -1 728340 0 ff ff ff ff 14 1d 0b 00 00 00 00 00 ............ +1061 2.574358225 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343091 12 52 718842 0 0x00000034 0 52 718842 0 34 00 00 00 fa f7 0a 00 00 00 00 00 4........... +1063 2.574548006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343103 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9f 11 02 00 00 00 00 00 00 00 2d 24 93 94 4d 01 00 00 "0...Dk.................L."".([...............-$.." +1065 2.574802876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377258 12 -1 718842 0 0xffffffff 0 -1 718842 0 ff ff ff ff fa f7 0a 00 00 00 00 00 ............ +1067 2.575551748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377270 12 30 728341 0 0x0000001e 0 30 728341 0 1e 00 00 00 15 1d 0b 00 00 00 00 00 ............ +1069 2.575750351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377282 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1872297984 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 67 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......g........... +1071 2.576049328 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343155 12 -1 728341 0 0xffffffff 0 -1 728341 0 ff ff ff ff 15 1d 0b 00 00 00 00 00 ............ +1073 2.578233719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343167 12 26 718843 0 0x0000001a 0 26 718843 0 1a 00 00 00 fb f7 0a 00 00 00 00 00 ............ +1075 2.578390121 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343179 26 22 2068583 0 0x00000016 1 2068583 0 196609 0 16 00 00 00 67 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....g..................... +1077 2.578648090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377312 12 -1 718843 0 0xffffffff 0 -1 718843 0 ff ff ff ff fb f7 0a 00 00 00 00 00 ............ +1079 2.595094919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377324 12 26 728342 0 0x0000001a 0 26 728342 0 1a 00 00 00 16 1d 0b 00 00 00 00 00 ............ +1081 2.595265865 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377336 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1872166912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 90 1f 00 00 00 00 00 ....T.c@.^1@......i....... +1083 2.595588446 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343205 12 -1 728342 0 0xffffffff 0 -1 728342 0 ff ff ff ff 16 1d 0b 00 00 00 00 00 ............ +1085 2.595955849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343217 12 22 718844 0 0x00000016 0 22 718844 0 16 00 00 00 fc f7 0a 00 00 00 00 00 ............ +1087 2.596111298 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343229 22 18 2068585 0 0x00000012 1 2068585 0 196609 0 12 00 00 00 69 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +1089 2.596444607 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377362 12 -1 718844 0 0xffffffff 0 -1 718844 0 ff ff ff ff fc f7 0a 00 00 00 00 00 ............ +1095 2.698642731 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377374 12 26 728343 0 0x0000001a 0 26 728343 0 1a 00 00 00 17 1d 0b 00 00 00 00 00 ............ +1097 2.698828936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377386 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1872035840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 90 1f 00 00 00 00 00 ....T.c@.^1@......k....... +1099 2.699193239 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343251 12 -1 728343 0 0xffffffff 0 -1 728343 0 ff ff ff ff 17 1d 0b 00 00 00 00 00 ............ +1101 2.699569941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343263 12 22 718845 0 0x00000016 0 22 718845 0 16 00 00 00 fd f7 0a 00 00 00 00 00 ............ +1103 2.699728251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343275 22 18 2068587 0 0x00000012 1 2068587 0 196609 0 12 00 00 00 6b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +1105 2.700019598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377412 12 -1 718845 0 0xffffffff 0 -1 718845 0 ff ff ff ff fd f7 0a 00 00 00 00 00 ............ +1111 2.801980734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377424 12 26 728344 0 0x0000001a 0 26 728344 0 1a 00 00 00 18 1d 0b 00 00 00 00 00 ............ +1113 2.802161217 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377436 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1871904768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 90 1f 00 00 00 00 00 ....T.c@.^1@......m....... +1115 2.802623987 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343297 12 -1 728344 0 0xffffffff 0 -1 728344 0 ff ff ff ff 18 1d 0b 00 00 00 00 00 ............ +1117 2.802907944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343309 12 22 718846 0 0x00000016 0 22 718846 0 16 00 00 00 fe f7 0a 00 00 00 00 00 ............ +1119 2.803074837 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343321 22 18 2068589 0 0x00000012 1 2068589 0 196609 0 12 00 00 00 6d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +1123 2.803484440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377462 12 -1 718846 0 0xffffffff 0 -1 718846 0 ff ff ff ff fe f7 0a 00 00 00 00 00 ............ +1125 2.877099991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377474 12 101 728345 0 0x00000065 0 101 728345 0 65 00 00 00 19 1d 0b 00 00 00 00 00 e........... +1127 2.877413988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377486 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a0 11 02 00 00 00 00 00 58 aa 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a0 11 02 00 00 00 00 .....!...o3...............X.#.....?.....3...|8.. +1129 2.877841473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343343 12 -1 728345 0 0xffffffff 0 -1 728345 0 ff ff ff ff 19 1d 0b 00 00 00 00 00 ............ +1131 2.878729105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343355 12 52 718847 0 0x00000034 0 52 718847 0 34 00 00 00 ff f7 0a 00 00 00 00 00 4........... +1133 2.878927946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343367 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a0 11 02 00 00 00 00 00 00 00 c0 94 c1 94 4d 01 00 00 "0...Dk.................L."".([..................." +1135 2.879197121 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377587 12 -1 718847 0 0xffffffff 0 -1 718847 0 ff ff ff ff ff f7 0a 00 00 00 00 00 ............ +1137 2.880134344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377599 12 30 728346 0 0x0000001e 0 30 728346 0 1e 00 00 00 1a 1d 0b 00 00 00 00 00 ............ +1139 2.880320072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377611 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1871773696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6f 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......o........... +1141 2.880741358 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343419 12 -1 728346 0 0xffffffff 0 -1 728346 0 ff ff ff ff 1a 1d 0b 00 00 00 00 00 ............ +1143 2.881076574 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343431 12 26 718848 0 0x0000001a 0 26 718848 0 1a 00 00 00 00 f8 0a 00 00 00 00 00 ............ +1145 2.881338596 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343443 26 22 2068591 0 0x00000016 1 2068591 0 196609 0 16 00 00 00 6f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....o..................... +1147 2.881559610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377641 12 -1 718848 0 0xffffffff 0 -1 718848 0 ff ff ff ff 00 f8 0a 00 00 00 00 00 ............ +1149 2.905200243 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377653 12 26 728347 0 0x0000001a 0 26 728347 0 1a 00 00 00 1b 1d 0b 00 00 00 00 00 ............ +1151 2.905341148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377665 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1871642624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 90 1f 00 00 00 00 00 ....T.c@.^1@......q....... +1153 2.905690193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343469 12 -1 728347 0 0xffffffff 0 -1 728347 0 ff ff ff ff 1b 1d 0b 00 00 00 00 00 ............ +1155 2.906030416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343481 12 22 718849 0 0x00000016 0 22 718849 0 16 00 00 00 01 f8 0a 00 00 00 00 00 ............ +1157 2.906192064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343493 22 18 2068593 0 0x00000012 1 2068593 0 196609 0 12 00 00 00 71 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +1160 2.906558514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377691 12 -1 718849 0 0xffffffff 0 -1 718849 0 ff ff ff ff 01 f8 0a 00 00 00 00 00 ............ +1166 2.907087088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343515 12 -2 82684 82701 0xfffffffe 0 -2 82684 82701 fe ff ff ff fc 42 01 00 0d 43 01 00 .....B...C.. +1173 3.009217978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377703 12 26 728348 0 0x0000001a 0 26 728348 0 1a 00 00 00 1c 1d 0b 00 00 00 00 00 ............ +1175 3.009439945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377715 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1871511552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 90 1f 00 00 00 00 00 ....T.c@.^1@......s....... +1177 3.009772778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343527 12 -1 728348 0 0xffffffff 0 -1 728348 0 ff ff ff ff 1c 1d 0b 00 00 00 00 00 ............ +1179 3.010277271 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343539 12 22 718850 0 0x00000016 0 22 718850 0 16 00 00 00 02 f8 0a 00 00 00 00 00 ............ +1181 3.010487556 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343551 22 18 2068595 0 0x00000012 1 2068595 0 196609 0 12 00 00 00 73 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +1183 3.010786057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377741 12 -1 718850 0 0xffffffff 0 -1 718850 0 ff ff ff ff 02 f8 0a 00 00 00 00 00 ............ +1185 3.029031277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377753 12 -2 82702 82684 0xfffffffe 0 -2 82702 82684 fe ff ff ff 0e 43 01 00 fc 42 01 00 .....C...B.. +1189 3.112352610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377765 12 26 728349 0 0x0000001a 0 26 728349 0 1a 00 00 00 1d 1d 0b 00 00 00 00 00 ............ +1191 3.112573385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377777 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1871380480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 90 1f 00 00 00 00 00 ....T.c@.^1@......u....... +1193 3.112834692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343573 12 -1 728349 0 0xffffffff 0 -1 728349 0 ff ff ff ff 1d 1d 0b 00 00 00 00 00 ............ +1195 3.113236904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343585 12 22 718851 0 0x00000016 0 22 718851 0 16 00 00 00 03 f8 0a 00 00 00 00 00 ............ +1197 3.113402843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343597 22 18 2068597 0 0x00000012 1 2068597 0 196609 0 12 00 00 00 75 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +1199 3.113736391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377803 12 -1 718851 0 0xffffffff 0 -1 718851 0 ff ff ff ff 03 f8 0a 00 00 00 00 00 ............ +1205 3.181609869 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377815 12 101 728350 0 0x00000065 0 101 728350 0 65 00 00 00 1e 1d 0b 00 00 00 00 00 e........... +1207 3.181828737 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377827 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a1 11 02 00 00 00 00 00 88 ab 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a1 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +1209 3.182156324 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343619 12 -1 728350 0 0xffffffff 0 -1 728350 0 ff ff ff ff 1e 1d 0b 00 00 00 00 00 ............ +1211 3.183006048 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343631 12 52 718852 0 0x00000034 0 52 718852 0 34 00 00 00 04 f8 0a 00 00 00 00 00 4........... +1213 3.183170795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343643 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a1 11 02 00 00 00 00 00 00 00 b2 04 f0 94 4d 01 00 00 "0...Dk.................L."".([..................." +1215 3.183479786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377928 12 -1 718852 0 0xffffffff 0 -1 718852 0 ff ff ff ff 04 f8 0a 00 00 00 00 00 ............ +1217 3.184649467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377940 12 30 728351 0 0x0000001e 0 30 728351 0 1e 00 00 00 1f 1d 0b 00 00 00 00 00 ............ +1219 3.184860945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377952 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1871249408 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 77 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......w........... +1221 3.185160875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343695 12 -1 728351 0 0xffffffff 0 -1 728351 0 ff ff ff ff 1f 1d 0b 00 00 00 00 00 ............ +1223 3.185772419 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343707 12 26 718853 0 0x0000001a 0 26 718853 0 1a 00 00 00 05 f8 0a 00 00 00 00 00 ............ +1225 3.185907841 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343719 26 22 2068599 0 0x00000016 1 2068599 0 196609 0 16 00 00 00 77 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....w..................... +1227 3.186202765 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377982 12 -1 718853 0 0xffffffff 0 -1 718853 0 ff ff ff ff 05 f8 0a 00 00 00 00 00 ............ +1229 3.215268373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333377994 12 26 728352 0 0x0000001a 0 26 728352 0 1a 00 00 00 20 1d 0b 00 00 00 00 00 .... ....... +1231 3.215568066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378006 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1871118336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 90 1f 00 00 00 00 00 ....T.c@.^1@......y....... +1233 3.215863705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343745 12 -1 728352 0 0xffffffff 0 -1 728352 0 ff ff ff ff 20 1d 0b 00 00 00 00 00 .... ....... +1235 3.216359854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343757 12 22 718854 0 0x00000016 0 22 718854 0 16 00 00 00 06 f8 0a 00 00 00 00 00 ............ +1237 3.216539383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343769 22 18 2068601 0 0x00000012 1 2068601 0 196609 0 12 00 00 00 79 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +1239 3.216820002 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378032 12 -1 718854 0 0xffffffff 0 -1 718854 0 ff ff ff ff 06 f8 0a 00 00 00 00 00 ............ +1245 3.318210363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378044 12 26 728353 0 0x0000001a 0 26 728353 0 1a 00 00 00 21 1d 0b 00 00 00 00 00 ....!....... +1247 3.318503380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378056 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1870987264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 90 1f 00 00 00 00 00 ....T.c@.^1@......{....... +1249 3.318880796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343791 12 -1 728353 0 0xffffffff 0 -1 728353 0 ff ff ff ff 21 1d 0b 00 00 00 00 00 ....!....... +1251 3.319333315 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343803 12 22 718855 0 0x00000016 0 22 718855 0 16 00 00 00 07 f8 0a 00 00 00 00 00 ............ +1253 3.319541931 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343815 22 18 2068603 0 0x00000012 1 2068603 0 196609 0 12 00 00 00 7b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +1255 3.319754362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378082 12 -1 718855 0 0xffffffff 0 -1 718855 0 ff ff ff ff 07 f8 0a 00 00 00 00 00 ............ +1262 3.408105373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343837 12 -2 82685 82702 0xfffffffe 0 -2 82685 82702 fe ff ff ff fd 42 01 00 0e 43 01 00 .....B...C.. +1265 3.422209978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378094 12 26 728354 0 0x0000001a 0 26 728354 0 1a 00 00 00 22 1d 0b 00 00 00 00 00 "....""......." +1267 3.422415733 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378106 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1870856192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 90 1f 00 00 00 00 00 ....T.c@.^1@......}....... +1269 3.422860622 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343849 12 -1 728354 0 0xffffffff 0 -1 728354 0 ff ff ff ff 22 1d 0b 00 00 00 00 00 "....""......." +1271 3.425508499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343861 12 22 718856 0 0x00000016 0 22 718856 0 16 00 00 00 08 f8 0a 00 00 00 00 00 ............ +1273 3.425675631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343873 22 18 2068605 0 0x00000012 1 2068605 0 196609 0 12 00 00 00 7d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +1275 3.426119566 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378132 12 -1 718856 0 0xffffffff 0 -1 718856 0 ff ff ff ff 08 f8 0a 00 00 00 00 00 ............ +1281 3.487548590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378144 12 34 728355 0 0x00000022 0 34 728355 0 22 00 00 00 23 1d 0b 00 00 00 00 00 """...#......." +1283 3.487764359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378156 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 295829504 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a2 11 02 00 00 00 00 00 ba ac 23 c3 9d 01 00 00 .....!...o3.................#..... +1285 3.487944603 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378190 12 67 728356 0 0x00000043 0 67 728356 0 43 00 00 00 24 1d 0b 00 00 00 00 00 C...$....... +1287 3.488033295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378202 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a2 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 2e 63 1a d7 ?.....3...|8...................=B.....&......... +1289 3.488192558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343895 12 -1 728355 0 0xffffffff 0 -1 728355 0 ff ff ff ff 23 1d 0b 00 00 00 00 00 ....#....... +1291 3.488476276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343907 12 -1 728356 0 0xffffffff 0 -1 728356 0 ff ff ff ff 24 1d 0b 00 00 00 00 00 ....$....... +1293 3.489296198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343919 12 52 718857 0 0x00000034 0 52 718857 0 34 00 00 00 09 f8 0a 00 00 00 00 00 4........... +1295 3.489498377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343931 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a2 11 02 00 00 00 00 00 00 00 57 bf 1e 95 4d 01 00 00 "0...Dk.................L."".([...............W..." +1297 3.489822388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378269 12 -1 718857 0 0xffffffff 0 -1 718857 0 ff ff ff ff 09 f8 0a 00 00 00 00 00 ............ +1299 3.490775585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378281 12 30 728357 0 0x0000001e 0 30 728357 0 1e 00 00 00 25 1d 0b 00 00 00 00 00 ....%....... +1301 3.490995646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378293 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1870725120 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7f 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1303 3.491422415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343983 12 -1 728357 0 0xffffffff 0 -1 728357 0 ff ff ff ff 25 1d 0b 00 00 00 00 00 ....%....... +1305 3.491998196 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377343995 12 26 718858 0 0x0000001a 0 26 718858 0 1a 00 00 00 0a f8 0a 00 00 00 00 00 ............ +1307 3.492187262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344007 26 22 2068607 0 0x00000016 1 2068607 0 196609 0 16 00 00 00 7f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1309 3.492517233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378323 12 -1 718858 0 0xffffffff 0 -1 718858 0 ff ff ff ff 0a f8 0a 00 00 00 00 00 ............ +1311 3.528084993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378335 12 26 728358 0 0x0000001a 0 26 728358 0 1a 00 00 00 26 1d 0b 00 00 00 00 00 ....&....... +1313 3.528264761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378347 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1870594048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1315 3.528759480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344033 12 -1 728358 0 0xffffffff 0 -1 728358 0 ff ff ff ff 26 1d 0b 00 00 00 00 00 ....&....... +1317 3.529129028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344045 12 22 718859 0 0x00000016 0 22 718859 0 16 00 00 00 0b f8 0a 00 00 00 00 00 ............ +1319 3.529289246 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344057 22 18 2068609 0 0x00000012 1 2068609 0 196609 0 12 00 00 00 81 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1321 3.529690504 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378373 12 -1 718859 0 0xffffffff 0 -1 718859 0 ff ff ff ff 0b f8 0a 00 00 00 00 00 ............ +1324 3.530007839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378385 12 -2 82703 82685 0xfffffffe 0 -2 82703 82685 fe ff ff ff 0f 43 01 00 fd 42 01 00 .....C...B.. +1327 3.631152630 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378397 12 26 728359 0 0x0000001a 0 26 728359 0 1a 00 00 00 27 1d 0b 00 00 00 00 00 ....'....... +1329 3.631339788 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378409 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1870462976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1331 3.631694794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344079 12 -1 728359 0 0xffffffff 0 -1 728359 0 ff ff ff ff 27 1d 0b 00 00 00 00 00 ....'....... +1333 3.632076502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344091 12 22 718860 0 0x00000016 0 22 718860 0 16 00 00 00 0c f8 0a 00 00 00 00 00 ............ +1335 3.632243156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344103 22 18 2068611 0 0x00000012 1 2068611 0 196609 0 12 00 00 00 83 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1337 3.632636547 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378435 12 -1 718860 0 0xffffffff 0 -1 718860 0 ff ff ff ff 0c f8 0a 00 00 00 00 00 ............ +1343 3.736045837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378447 12 26 728360 0 0x0000001a 0 26 728360 0 1a 00 00 00 28 1d 0b 00 00 00 00 00 ....(....... +1345 3.736247778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378459 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1870331904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1347 3.736612558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344125 12 -1 728360 0 0xffffffff 0 -1 728360 0 ff ff ff ff 28 1d 0b 00 00 00 00 00 ....(....... +1349 3.737476826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344137 12 22 718861 0 0x00000016 0 22 718861 0 16 00 00 00 0d f8 0a 00 00 00 00 00 ............ +1351 3.737632036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344149 22 18 2068613 0 0x00000012 1 2068613 0 196609 0 12 00 00 00 85 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1353 3.737904072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378485 12 -1 718861 0 0xffffffff 0 -1 718861 0 ff ff ff ff 0d f8 0a 00 00 00 00 00 ............ +1357 3.792435646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378497 12 34 728361 0 0x00000022 0 34 728361 0 22 00 00 00 29 1d 0b 00 00 00 00 00 """...)......." +1359 3.792627573 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378509 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 295895040 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a3 11 02 00 00 00 00 00 eb ad 23 c3 9d 01 00 00 .....!...o3.................#..... +1361 3.792771339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378543 12 67 728362 0 0x00000043 0 67 728362 0 43 00 00 00 2a 1d 0b 00 00 00 00 00 C...*....... +1363 3.792860985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378555 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a3 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c 5f 9e 2c d7 ?.....3...|8...................=B.....&......... +1365 3.793049097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344171 12 -1 728361 0 0xffffffff 0 -1 728361 0 ff ff ff ff 29 1d 0b 00 00 00 00 00 ....)....... +1367 3.793254614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344183 12 -1 728362 0 0xffffffff 0 -1 728362 0 ff ff ff ff 2a 1d 0b 00 00 00 00 00 ....*....... +1369 3.795212269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344195 12 52 718862 0 0x00000034 0 52 718862 0 34 00 00 00 0e f8 0a 00 00 00 00 00 4........... +1371 3.795400858 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344207 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a3 11 02 00 00 00 00 00 00 00 d4 6d 4d 95 4d 01 00 00 "0...Dk.................L."".([................mM." +1373 3.795665264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378622 12 -1 718862 0 0xffffffff 0 -1 718862 0 ff ff ff ff 0e f8 0a 00 00 00 00 00 ............ +1375 3.796486616 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378634 12 30 728363 0 0x0000001e 0 30 728363 0 1e 00 00 00 2b 1d 0b 00 00 00 00 00 ....+....... +1377 3.796626806 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378646 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1870200832 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 87 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1379 3.796910524 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344259 12 -1 728363 0 0xffffffff 0 -1 728363 0 ff ff ff ff 2b 1d 0b 00 00 00 00 00 ....+....... +1381 3.798217535 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344271 12 26 718863 0 0x0000001a 0 26 718863 0 1a 00 00 00 0f f8 0a 00 00 00 00 00 ............ +1383 3.798388481 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344283 26 22 2068615 0 0x00000016 1 2068615 0 196609 0 16 00 00 00 87 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1385 3.798581362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378676 12 -1 718863 0 0xffffffff 0 -1 718863 0 ff ff ff ff 0f f8 0a 00 00 00 00 00 ............ +1389 3.839236259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378688 12 26 728364 0 0x0000001a 0 26 728364 0 1a 00 00 00 2c 1d 0b 00 00 00 00 00 ....,....... +1391 3.839445829 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378700 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1870069760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1393 3.839839935 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344309 12 -1 728364 0 0xffffffff 0 -1 728364 0 ff ff ff ff 2c 1d 0b 00 00 00 00 00 ....,....... +1395 3.840212584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344321 12 22 718864 0 0x00000016 0 22 718864 0 16 00 00 00 10 f8 0a 00 00 00 00 00 ............ +1397 3.840444565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344333 22 18 2068617 0 0x00000012 1 2068617 0 196609 0 12 00 00 00 89 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1399 3.840707779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378726 12 -1 718864 0 0xffffffff 0 -1 718864 0 ff ff ff ff 10 f8 0a 00 00 00 00 00 ............ +1404 3.909203053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344355 12 -2 82686 82703 0xfffffffe 0 -2 82686 82703 fe ff ff ff fe 42 01 00 0f 43 01 00 .....B...C.. +1409 3.942053080 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378738 12 26 728365 0 0x0000001a 0 26 728365 0 1a 00 00 00 2d 1d 0b 00 00 00 00 00 ....-....... +1411 3.942293882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378750 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1869938688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1413 3.942605734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344367 12 -1 728365 0 0xffffffff 0 -1 728365 0 ff ff ff ff 2d 1d 0b 00 00 00 00 00 ....-....... +1415 3.943103313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344379 12 22 718865 0 0x00000016 0 22 718865 0 16 00 00 00 11 f8 0a 00 00 00 00 00 ............ +1417 3.943279982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344391 22 18 2068619 0 0x00000012 1 2068619 0 196609 0 12 00 00 00 8b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1419 3.943919659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378776 12 -1 718865 0 0xffffffff 0 -1 718865 0 ff ff ff ff 11 f8 0a 00 00 00 00 00 ............ +1428 4.032243729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378788 12 -2 82704 82686 0xfffffffe 0 -2 82704 82686 fe ff ff ff 10 43 01 00 fe 42 01 00 .....C...B.. +1430 4.045611858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378800 12 26 728366 0 0x0000001a 0 26 728366 0 1a 00 00 00 2e 1d 0b 00 00 00 00 00 ............ +1432 4.045805454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378812 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1869807616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1434 4.046202421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344413 12 -1 728366 0 0xffffffff 0 -1 728366 0 ff ff ff ff 2e 1d 0b 00 00 00 00 00 ............ +1436 4.046661854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344425 12 22 718866 0 0x00000016 0 22 718866 0 16 00 00 00 12 f8 0a 00 00 00 00 00 ............ +1438 4.046823025 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344437 22 18 2068621 0 0x00000012 1 2068621 0 196609 0 12 00 00 00 8d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1440 4.047114849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378838 12 -1 718866 0 0xffffffff 0 -1 718866 0 ff ff ff ff 12 f8 0a 00 00 00 00 00 ............ +1452 4.098994493 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378850 12 101 728367 0 0x00000065 0 101 728367 0 65 00 00 00 2f 1d 0b 00 00 00 00 00 e.../....... +1454 4.099141121 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378862 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a4 11 02 00 00 00 00 00 1e af 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a4 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +1456 4.099446774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344459 12 -1 728367 0 0xffffffff 0 -1 728367 0 ff ff ff ff 2f 1d 0b 00 00 00 00 00 ..../....... +1458 4.100449085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344471 12 52 718867 0 0x00000034 0 52 718867 0 34 00 00 00 13 f8 0a 00 00 00 00 00 4........... +1460 4.100605726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344483 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a4 11 02 00 00 00 00 00 00 00 2b 01 7c 95 4d 01 00 00 "0...Dk.................L."".([...............+.|." +1462 4.100864172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378963 12 -1 718867 0 0xffffffff 0 -1 718867 0 ff ff ff ff 13 f8 0a 00 00 00 00 00 ............ +1464 4.101921797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378975 12 30 728368 0 0x0000001e 0 30 728368 0 1e 00 00 00 30 1d 0b 00 00 00 00 00 ....0....... +1466 4.102077723 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333378987 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1869676544 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8f 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1468 4.102382421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344535 12 -1 728368 0 0xffffffff 0 -1 728368 0 ff ff ff ff 30 1d 0b 00 00 00 00 00 ....0....... +1470 4.102805376 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344547 12 26 718868 0 0x0000001a 0 26 718868 0 1a 00 00 00 14 f8 0a 00 00 00 00 00 ............ +1472 4.102981329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344559 26 22 2068623 0 0x00000016 1 2068623 0 196609 0 16 00 00 00 8f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1474 4.103241205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379017 12 -1 718868 0 0xffffffff 0 -1 718868 0 ff ff ff ff 14 f8 0a 00 00 00 00 00 ............ +1480 4.149636030 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379029 12 26 728369 0 0x0000001a 0 26 728369 0 1a 00 00 00 31 1d 0b 00 00 00 00 00 ....1....... +1482 4.149834156 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379041 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1869545472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1484 4.150293350 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344585 12 -1 728369 0 0xffffffff 0 -1 728369 0 ff ff ff ff 31 1d 0b 00 00 00 00 00 ....1....... +1486 4.150841713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344597 12 22 718869 0 0x00000016 0 22 718869 0 16 00 00 00 15 f8 0a 00 00 00 00 00 ............ +1488 4.151090622 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344609 22 18 2068625 0 0x00000012 1 2068625 0 196609 0 12 00 00 00 91 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1490 4.151364803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379067 12 -1 718869 0 0xffffffff 0 -1 718869 0 ff ff ff ff 15 f8 0a 00 00 00 00 00 ............ +1520 4.252480984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379079 12 26 728370 0 0x0000001a 0 26 728370 0 1a 00 00 00 32 1d 0b 00 00 00 00 00 ....2....... +1522 4.252662182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379091 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1869414400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1524 4.252987385 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344631 12 -1 728370 0 0xffffffff 0 -1 728370 0 ff ff ff ff 32 1d 0b 00 00 00 00 00 ....2....... +1526 4.253589392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344643 12 22 718870 0 0x00000016 0 22 718870 0 16 00 00 00 16 f8 0a 00 00 00 00 00 ............ +1528 4.253767967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344655 22 18 2068627 0 0x00000012 1 2068627 0 196609 0 12 00 00 00 93 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1530 4.254110336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379117 12 -1 718870 0 0xffffffff 0 -1 718870 0 ff ff ff ff 16 f8 0a 00 00 00 00 00 ............ +1535 4.355569839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379129 12 26 728371 0 0x0000001a 0 26 728371 0 1a 00 00 00 33 1d 0b 00 00 00 00 00 ....3....... +1537 4.355761051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379141 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1869283328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1539 4.356211901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344677 12 -1 728371 0 0xffffffff 0 -1 728371 0 ff ff ff ff 33 1d 0b 00 00 00 00 00 ....3....... +1541 4.356730700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344689 12 22 718871 0 0x00000016 0 22 718871 0 16 00 00 00 17 f8 0a 00 00 00 00 00 ............ +1543 4.356911421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344701 22 18 2068629 0 0x00000012 1 2068629 0 196609 0 12 00 00 00 95 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1545 4.357133865 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379167 12 -1 718871 0 0xffffffff 0 -1 718871 0 ff ff ff ff 17 f8 0a 00 00 00 00 00 ............ +1548 4.402853727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379179 12 101 728372 0 0x00000065 0 101 728372 0 65 00 00 00 34 1d 0b 00 00 00 00 00 e...4....... +1550 4.403012276 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379191 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a5 11 02 00 00 00 00 00 4e b0 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a5 11 02 00 00 00 00 .....!...o3...............N.#.....?.....3...|8.. +1552 4.403326988 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344723 12 -1 728372 0 0xffffffff 0 -1 728372 0 ff ff ff ff 34 1d 0b 00 00 00 00 00 ....4....... +1554 4.404067993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344735 12 52 718872 0 0x00000034 0 52 718872 0 34 00 00 00 18 f8 0a 00 00 00 00 00 4........... +1556 4.404212713 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344747 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a5 11 02 00 00 00 00 00 00 00 2b 56 aa 95 4d 01 00 00 "0...Dk.................L."".([...............+V.." +1558 4.404565334 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379292 12 -1 718872 0 0xffffffff 0 -1 718872 0 ff ff ff ff 18 f8 0a 00 00 00 00 00 ............ +1560 4.405214787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379304 12 30 728373 0 0x0000001e 0 30 728373 0 1e 00 00 00 35 1d 0b 00 00 00 00 00 ....5....... +1562 4.405355215 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379316 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1869152256 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1564 4.405639887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344799 12 -1 728373 0 0xffffffff 0 -1 728373 0 ff ff ff ff 35 1d 0b 00 00 00 00 00 ....5....... +1566 4.406197309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344811 12 26 718873 0 0x0000001a 0 26 718873 0 1a 00 00 00 19 f8 0a 00 00 00 00 00 ............ +1568 4.406368256 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344823 26 22 2068631 0 0x00000016 1 2068631 0 196609 0 16 00 00 00 97 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1570 4.406630278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379346 12 -1 718873 0 0xffffffff 0 -1 718873 0 ff ff ff ff 19 f8 0a 00 00 00 00 00 ............ +1577 4.410788298 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344849 12 -2 82687 82704 0xfffffffe 0 -2 82687 82704 fe ff ff ff ff 42 01 00 10 43 01 00 .....B...C.. +1582 4.458555698 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379358 12 26 728374 0 0x0000001a 0 26 728374 0 1a 00 00 00 36 1d 0b 00 00 00 00 00 ....6....... +1584 4.458737373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379370 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1869021184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1586 4.459105015 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344861 12 -1 728374 0 0xffffffff 0 -1 728374 0 ff ff ff ff 36 1d 0b 00 00 00 00 00 ....6....... +1588 4.459533930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344873 12 22 718874 0 0x00000016 0 22 718874 0 16 00 00 00 1a f8 0a 00 00 00 00 00 ............ +1590 4.459717751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344885 22 18 2068633 0 0x00000012 1 2068633 0 196609 0 12 00 00 00 99 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1592 4.460095882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379396 12 -1 718874 0 0xffffffff 0 -1 718874 0 ff ff ff ff 1a f8 0a 00 00 00 00 00 ............ +1601 4.533143997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379408 12 -2 82705 82687 0xfffffffe 0 -2 82705 82687 fe ff ff ff 11 43 01 00 ff 42 01 00 .....C...B.. +1603 4.561592102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379420 12 26 728375 0 0x0000001a 0 26 728375 0 1a 00 00 00 37 1d 0b 00 00 00 00 00 ....7....... +1605 4.561773777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379432 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1868890112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1607 4.562145948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344907 12 -1 728375 0 0xffffffff 0 -1 728375 0 ff ff ff ff 37 1d 0b 00 00 00 00 00 ....7....... +1609 4.562604904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344919 12 22 718875 0 0x00000016 0 22 718875 0 16 00 00 00 1b f8 0a 00 00 00 00 00 ............ +1611 4.562770605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344931 22 18 2068635 0 0x00000012 1 2068635 0 196609 0 12 00 00 00 9b 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1613 4.563145638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379458 12 -1 718875 0 0xffffffff 0 -1 718875 0 ff ff ff ff 1b f8 0a 00 00 00 00 00 ............ +1620 4.664651632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379470 12 26 728376 0 0x0000001a 0 26 728376 0 1a 00 00 00 38 1d 0b 00 00 00 00 00 ....8....... +1622 4.664850950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379482 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1868759040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1624 4.665245771 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344953 12 -1 728376 0 0xffffffff 0 -1 728376 0 ff ff ff ff 38 1d 0b 00 00 00 00 00 ....8....... +1626 4.665680408 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344965 12 22 718876 0 0x00000016 0 22 718876 0 16 00 00 00 1c f8 0a 00 00 00 00 00 ............ +1628 4.665822506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344977 22 18 2068637 0 0x00000012 1 2068637 0 196609 0 12 00 00 00 9d 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1630 4.666184425 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379508 12 -1 718876 0 0xffffffff 0 -1 718876 0 ff ff ff ff 1c f8 0a 00 00 00 00 00 ............ +1632 4.706704855 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379520 12 34 728377 0 0x00000022 0 34 728377 0 22 00 00 00 39 1d 0b 00 00 00 00 00 """...9......." +1634 4.706916571 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379532 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 296091648 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a6 11 02 00 00 00 00 00 7e b1 23 c3 9d 01 00 00 .....!...o3...............~.#..... +1636 4.707086802 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379566 12 67 728378 0 0x00000043 0 67 728378 0 43 00 00 00 3a 1d 0b 00 00 00 00 00 C...:....... +1638 4.707172871 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379578 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a6 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b8 ce 12 63 d7 ?.....3...|8...................=B.....&......... +1640 4.707329273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377344999 12 -1 728377 0 0xffffffff 0 -1 728377 0 ff ff ff ff 39 1d 0b 00 00 00 00 00 ....9....... +1642 4.707516432 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345011 12 -1 728378 0 0xffffffff 0 -1 728378 0 ff ff ff ff 3a 1d 0b 00 00 00 00 00 ....:....... +1644 4.708107710 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345023 12 52 718877 0 0x00000034 0 52 718877 0 34 00 00 00 1d f8 0a 00 00 00 00 00 4........... +1646 4.708254576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345035 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a6 11 02 00 00 00 00 00 00 00 ff ba d8 95 4d 01 00 00 "0...Dk.................L."".([..................." +1648 4.708521128 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379645 12 -1 718877 0 0xffffffff 0 -1 718877 0 ff ff ff ff 1d f8 0a 00 00 00 00 00 ............ +1650 4.709283829 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379657 12 30 728379 0 0x0000001e 0 30 728379 0 1e 00 00 00 3b 1d 0b 00 00 00 00 00 ....;....... +1652 4.709428549 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379669 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1868627968 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1654 4.709873199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345087 12 -1 728379 0 0xffffffff 0 -1 728379 0 ff ff ff ff 3b 1d 0b 00 00 00 00 00 ....;....... +1656 4.710093498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345099 12 26 718878 0 0x0000001a 0 26 718878 0 1a 00 00 00 1e f8 0a 00 00 00 00 00 ............ +1658 4.710258961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345111 26 22 2068639 0 0x00000016 1 2068639 0 196609 0 16 00 00 00 9f 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1660 4.710506916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379699 12 -1 718878 0 0xffffffff 0 -1 718878 0 ff ff ff ff 1e f8 0a 00 00 00 00 00 ............ +1665 4.767481565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379711 12 26 728380 0 0x0000001a 0 26 728380 0 1a 00 00 00 3c 1d 0b 00 00 00 00 00 ....<....... +1667 4.767663717 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379723 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1868496896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1669 4.768006086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345137 12 -1 728380 0 0xffffffff 0 -1 728380 0 ff ff ff ff 3c 1d 0b 00 00 00 00 00 ....<....... +1671 4.768476248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345149 12 22 718879 0 0x00000016 0 22 718879 0 16 00 00 00 1f f8 0a 00 00 00 00 00 ............ +1673 4.768631697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345161 22 18 2068641 0 0x00000012 1 2068641 0 196609 0 12 00 00 00 a1 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1675 4.768856049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379749 12 -1 718879 0 0xffffffff 0 -1 718879 0 ff ff ff ff 1f f8 0a 00 00 00 00 00 ............ +1680 4.870548248 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379761 12 26 728381 0 0x0000001a 0 26 728381 0 1a 00 00 00 3d 1d 0b 00 00 00 00 00 ....=....... +1682 4.870742798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379773 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1868365824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1684 4.871147394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345183 12 -1 728381 0 0xffffffff 0 -1 728381 0 ff ff ff ff 3d 1d 0b 00 00 00 00 00 ....=....... +1686 4.871605396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345195 12 22 718880 0 0x00000016 0 22 718880 0 16 00 00 00 20 f8 0a 00 00 00 00 00 .... ....... +1688 4.871751785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345207 22 18 2068643 0 0x00000012 1 2068643 0 196609 0 12 00 00 00 a3 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1690 4.872116089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379799 12 -1 718880 0 0xffffffff 0 -1 718880 0 ff ff ff ff 20 f8 0a 00 00 00 00 00 .... ....... +1696 4.911944389 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345229 12 -2 82688 82705 0xfffffffe 0 -2 82688 82705 fe ff ff ff 00 43 01 00 11 43 01 00 .....C...C.. +1701 4.973756075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379811 12 26 728382 0 0x0000001a 0 26 728382 0 1a 00 00 00 3e 1d 0b 00 00 00 00 00 ....>....... +1703 4.973931074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379823 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1868234752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1705 4.974337578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345241 12 -1 728382 0 0xffffffff 0 -1 728382 0 ff ff ff ff 3e 1d 0b 00 00 00 00 00 ....>....... +1707 4.974765778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345253 12 22 718881 0 0x00000016 0 22 718881 0 16 00 00 00 21 f8 0a 00 00 00 00 00 ....!....... +1709 4.974959612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345265 22 18 2068645 0 0x00000012 1 2068645 0 196609 0 12 00 00 00 a5 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1711 4.975331545 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379849 12 -1 718881 0 0xffffffff 0 -1 718881 0 ff ff ff ff 21 f8 0a 00 00 00 00 00 ....!....... +1729 5.010776758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379861 12 34 728383 0 0x00000022 0 34 728383 0 22 00 00 00 3f 1d 0b 00 00 00 00 00 """...?......." +1731 5.010987520 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379873 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 296157184 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a7 11 02 00 00 00 00 00 ad b2 23 c3 9d 01 00 00 .....!...o3.................#..... +1733 5.011137724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379907 12 67 728384 0 0x00000043 0 67 728384 0 43 00 00 00 40 1d 0b 00 00 00 00 00 C...@....... +1735 5.011220932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379919 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a7 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 0f 2f 75 d7 ?.....3...|8...................=B.....&......... +1737 5.011395931 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345287 12 -1 728383 0 0xffffffff 0 -1 728383 0 ff ff ff ff 3f 1d 0b 00 00 00 00 00 ....?....... +1739 5.011603832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345299 12 -1 728384 0 0xffffffff 0 -1 728384 0 ff ff ff ff 40 1d 0b 00 00 00 00 00 ....@....... +1741 5.012284279 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345311 12 52 718882 0 0x00000034 0 52 718882 0 34 00 00 00 22 f8 0a 00 00 00 00 00 "4...""......." +1743 5.012453794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345323 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a7 11 02 00 00 00 00 00 00 00 d8 23 07 96 4d 01 00 00 "0...Dk.................L."".([................#.." +1745 5.012771368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379986 12 -1 718882 0 0xffffffff 0 -1 718882 0 ff ff ff ff 22 f8 0a 00 00 00 00 00 "....""......." +1747 5.013641596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333379998 12 30 728385 0 0x0000001e 0 30 728385 0 1e 00 00 00 41 1d 0b 00 00 00 00 00 ....A....... +1749 5.013838530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380010 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1868103680 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1751 5.014124870 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345375 12 -1 728385 0 0xffffffff 0 -1 728385 0 ff ff ff ff 41 1d 0b 00 00 00 00 00 ....A....... +1753 5.014463663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345387 12 26 718883 0 0x0000001a 0 26 718883 0 1a 00 00 00 23 f8 0a 00 00 00 00 00 ....#....... +1755 5.014616728 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345399 26 22 2068647 0 0x00000016 1 2068647 0 196609 0 16 00 00 00 a7 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1757 5.015367270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380040 12 -1 718883 0 0xffffffff 0 -1 718883 0 ff ff ff ff 23 f8 0a 00 00 00 00 00 ....#....... +1761 5.034045458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380052 12 -2 82706 82688 0xfffffffe 0 -2 82706 82688 fe ff ff ff 12 43 01 00 00 43 01 00 .....C...C.. +1764 5.077389479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380064 12 26 728386 0 0x0000001a 0 26 728386 0 1a 00 00 00 42 1d 0b 00 00 00 00 00 ....B....... +1766 5.077570677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380076 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1867972608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1768 5.077892303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345425 12 -1 728386 0 0xffffffff 0 -1 728386 0 ff ff ff ff 42 1d 0b 00 00 00 00 00 ....B....... +1770 5.078349352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345437 12 22 718884 0 0x00000016 0 22 718884 0 16 00 00 00 24 f8 0a 00 00 00 00 00 ....$....... +1772 5.078492641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345449 22 18 2068649 0 0x00000012 1 2068649 0 196609 0 12 00 00 00 a9 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1774 5.078812122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380102 12 -1 718884 0 0xffffffff 0 -1 718884 0 ff ff ff ff 24 f8 0a 00 00 00 00 00 ....$....... +1781 5.180772781 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380114 12 26 728387 0 0x0000001a 0 26 728387 0 1a 00 00 00 43 1d 0b 00 00 00 00 00 ....C....... +1783 5.180977821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380126 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1867841536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1785 5.181349993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345471 12 -1 728387 0 0xffffffff 0 -1 728387 0 ff ff ff ff 43 1d 0b 00 00 00 00 00 ....C....... +1787 5.181943893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345483 12 22 718885 0 0x00000016 0 22 718885 0 16 00 00 00 25 f8 0a 00 00 00 00 00 ....%....... +1789 5.182150364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345495 22 18 2068651 0 0x00000012 1 2068651 0 196609 0 12 00 00 00 ab 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1791 5.182422876 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380152 12 -1 718885 0 0xffffffff 0 -1 718885 0 ff ff ff ff 25 f8 0a 00 00 00 00 00 ....%....... +1795 5.283879995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380164 12 26 728388 0 0x0000001a 0 26 728388 0 1a 00 00 00 44 1d 0b 00 00 00 00 00 ....D....... +1797 5.284100294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380176 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1867710464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1799 5.284698248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345517 12 -1 728388 0 0xffffffff 0 -1 728388 0 ff ff ff ff 44 1d 0b 00 00 00 00 00 ....D....... +1801 5.285087824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345529 12 22 718886 0 0x00000016 0 22 718886 0 16 00 00 00 26 f8 0a 00 00 00 00 00 ....&....... +1803 5.285290003 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345541 22 18 2068653 0 0x00000012 1 2068653 0 196609 0 12 00 00 00 ad 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1805 5.285573721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380202 12 -1 718886 0 0xffffffff 0 -1 718886 0 ff ff ff ff 26 f8 0a 00 00 00 00 00 ....&....... +1809 5.315014601 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380214 12 101 728389 0 0x00000065 0 101 728389 0 65 00 00 00 45 1d 0b 00 00 00 00 00 e...E....... +1811 5.315265179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380226 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a8 11 02 00 00 00 00 00 de b3 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a8 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +1813 5.315552235 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345563 12 -1 728389 0 0xffffffff 0 -1 728389 0 ff ff ff ff 45 1d 0b 00 00 00 00 00 ....E....... +1815 5.316718340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345575 12 52 718887 0 0x00000034 0 52 718887 0 34 00 00 00 27 f8 0a 00 00 00 00 00 4...'....... +1817 5.316870928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345587 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a8 11 02 00 00 00 00 00 00 00 05 98 35 96 4d 01 00 00 "0...Dk.................L."".([.................5." +1819 5.317240000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380327 12 -1 718887 0 0xffffffff 0 -1 718887 0 ff ff ff ff 27 f8 0a 00 00 00 00 00 ....'....... +1821 5.318341494 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380339 12 30 728390 0 0x0000001e 0 30 728390 0 1e 00 00 00 46 1d 0b 00 00 00 00 00 ....F....... +1823 5.318492174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380351 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1867579392 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1825 5.318776608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345639 12 -1 728390 0 0xffffffff 0 -1 728390 0 ff ff ff ff 46 1d 0b 00 00 00 00 00 ....F....... +1827 5.321579218 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345651 12 26 718888 0 0x0000001a 0 26 718888 0 1a 00 00 00 28 f8 0a 00 00 00 00 00 ....(....... +1829 5.321724176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345663 26 22 2068655 0 0x00000016 1 2068655 0 196609 0 16 00 00 00 af 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1831 5.321977377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380381 12 -1 718888 0 0xffffffff 0 -1 718888 0 ff ff ff ff 28 f8 0a 00 00 00 00 00 ....(....... +1833 5.386917353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380393 12 26 728391 0 0x0000001a 0 26 728391 0 1a 00 00 00 47 1d 0b 00 00 00 00 00 ....G....... +1835 5.387102365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380405 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1867448320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1837 5.387433290 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345689 12 -1 728391 0 0xffffffff 0 -1 728391 0 ff ff ff ff 47 1d 0b 00 00 00 00 00 ....G....... +1839 5.388039112 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345701 12 22 718889 0 0x00000016 0 22 718889 0 16 00 00 00 29 f8 0a 00 00 00 00 00 ....)....... +1841 5.388294458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345713 22 18 2068657 0 0x00000012 1 2068657 0 196609 0 12 00 00 00 b1 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1843 5.388610363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380431 12 -1 718889 0 0xffffffff 0 -1 718889 0 ff ff ff ff 29 f8 0a 00 00 00 00 00 ....)....... +1849 5.412905693 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345735 12 -2 82689 82706 0xfffffffe 0 -2 82689 82706 fe ff ff ff 01 43 01 00 12 43 01 00 .....C...C.. +1855 5.491587162 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380443 12 26 728392 0 0x0000001a 0 26 728392 0 1a 00 00 00 48 1d 0b 00 00 00 00 00 ....H....... +1857 5.491803646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380455 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1867317248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1859 5.492129326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345747 12 -1 728392 0 0xffffffff 0 -1 728392 0 ff ff ff ff 48 1d 0b 00 00 00 00 00 ....H....... +1861 5.492609978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345759 12 22 718890 0 0x00000016 0 22 718890 0 16 00 00 00 2a f8 0a 00 00 00 00 00 ....*....... +1863 5.492776394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345771 22 18 2068659 0 0x00000012 1 2068659 0 196609 0 12 00 00 00 b3 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1867 5.493088007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380481 12 -1 718890 0 0xffffffff 0 -1 718890 0 ff ff ff ff 2a f8 0a 00 00 00 00 00 ....*....... +1871 5.535680294 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380493 12 -2 82707 82689 0xfffffffe 0 -2 82707 82689 fe ff ff ff 13 43 01 00 01 43 01 00 .....C...C.. +1873 5.595577002 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380505 12 26 728393 0 0x0000001a 0 26 728393 0 1a 00 00 00 49 1d 0b 00 00 00 00 00 ....I....... +1875 5.595775127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380517 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1867186176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1877 5.596179962 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345793 12 -1 728393 0 0xffffffff 0 -1 728393 0 ff ff ff ff 49 1d 0b 00 00 00 00 00 ....I....... +1879 5.596661329 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345805 12 22 718891 0 0x00000016 0 22 718891 0 16 00 00 00 2b f8 0a 00 00 00 00 00 ....+....... +1881 5.596823931 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345817 22 18 2068661 0 0x00000012 1 2068661 0 196609 0 12 00 00 00 b5 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1883 5.597151756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380543 12 -1 718891 0 0xffffffff 0 -1 718891 0 ff ff ff ff 2b f8 0a 00 00 00 00 00 ....+....... +1885 5.620187521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380555 12 101 728394 0 0x00000065 0 101 728394 0 65 00 00 00 4a 1d 0b 00 00 00 00 00 e...J....... +1887 5.620503426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380567 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a9 11 02 00 00 00 00 00 0f b5 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a9 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +1889 5.620976686 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345839 12 -1 728394 0 0xffffffff 0 -1 728394 0 ff ff ff ff 4a 1d 0b 00 00 00 00 00 ....J....... +1891 5.622174501 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345851 12 52 718892 0 0x00000034 0 52 718892 0 34 00 00 00 2c f8 0a 00 00 00 00 00 4...,....... +1893 5.622456312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345863 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a9 11 02 00 00 00 00 00 00 00 97 2d 64 96 4d 01 00 00 "0...Dk.................L."".([................-d." +1895 5.622877836 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380668 12 -1 718892 0 0xffffffff 0 -1 718892 0 ff ff ff ff 2c f8 0a 00 00 00 00 00 ....,....... +1897 5.623903513 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380680 12 30 728395 0 0x0000001e 0 30 728395 0 1e 00 00 00 4b 1d 0b 00 00 00 00 00 ....K....... +1899 5.624063492 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380692 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1867055104 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1901 5.624471903 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345915 12 -1 728395 0 0xffffffff 0 -1 728395 0 ff ff ff ff 4b 1d 0b 00 00 00 00 00 ....K....... +1903 5.625040293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345927 12 26 718893 0 0x0000001a 0 26 718893 0 1a 00 00 00 2d f8 0a 00 00 00 00 00 ....-....... +1905 5.625207424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345939 26 22 2068663 0 0x00000016 1 2068663 0 196609 0 16 00 00 00 b7 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1907 5.625431299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380722 12 -1 718893 0 0xffffffff 0 -1 718893 0 ff ff ff ff 2d f8 0a 00 00 00 00 00 ....-....... +1913 5.698202133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380734 12 26 728396 0 0x0000001a 0 26 728396 0 1a 00 00 00 4c 1d 0b 00 00 00 00 00 ....L....... +1915 5.698462009 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380746 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1866924032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1917 5.698951483 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345965 12 -1 728396 0 0xffffffff 0 -1 728396 0 ff ff ff ff 4c 1d 0b 00 00 00 00 00 ....L....... +1919 5.699310541 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345977 12 22 718894 0 0x00000016 0 22 718894 0 16 00 00 00 2e f8 0a 00 00 00 00 00 ............ +1921 5.699472666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377345989 22 18 2068665 0 0x00000012 1 2068665 0 196609 0 12 00 00 00 b9 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1923 5.699759960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380772 12 -1 718894 0 0xffffffff 0 -1 718894 0 ff ff ff ff 2e f8 0a 00 00 00 00 00 ............ +1940 5.801147699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380784 12 26 728397 0 0x0000001a 0 26 728397 0 1a 00 00 00 4d 1d 0b 00 00 00 00 00 ....M....... +1942 5.801448584 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380796 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1866792960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1944 5.801813364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346011 12 -1 728397 0 0xffffffff 0 -1 728397 0 ff ff ff ff 4d 1d 0b 00 00 00 00 00 ....M....... +1946 5.802301884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346023 12 22 718895 0 0x00000016 0 22 718895 0 16 00 00 00 2f f8 0a 00 00 00 00 00 ..../....... +1948 5.802502394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346035 22 18 2068667 0 0x00000012 1 2068667 0 196609 0 12 00 00 00 bb 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1950 5.802755356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380822 12 -1 718895 0 0xffffffff 0 -1 718895 0 ff ff ff ff 2f f8 0a 00 00 00 00 00 ..../....... +1954 5.904327393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380834 12 26 728398 0 0x0000001a 0 26 728398 0 1a 00 00 00 4e 1d 0b 00 00 00 00 00 ....N....... +1956 5.904512882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380846 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1866661888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +1958 5.904926300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346057 12 -1 728398 0 0xffffffff 0 -1 728398 0 ff ff ff ff 4e 1d 0b 00 00 00 00 00 ....N....... +1960 5.905285120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346069 12 22 718896 0 0x00000016 0 22 718896 0 16 00 00 00 30 f8 0a 00 00 00 00 00 ....0....... +1962 5.905449867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346081 22 18 2068669 0 0x00000012 1 2068669 0 196609 0 12 00 00 00 bd 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1964 5.905744076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380872 12 -1 718896 0 0xffffffff 0 -1 718896 0 ff ff ff ff 30 f8 0a 00 00 00 00 00 ....0....... +1970 5.911788702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346103 12 -2 82690 82707 0xfffffffe 0 -2 82690 82707 fe ff ff ff 02 43 01 00 13 43 01 00 .....C...C.. +1974 5.925534010 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380884 12 34 728399 0 0x00000022 0 34 728399 0 22 00 00 00 4f 1d 0b 00 00 00 00 00 """...O......." +1976 5.925711155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380896 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 296353792 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 aa 11 02 00 00 00 00 00 40 b6 23 c3 9d 01 00 00 .....!...o3...............@.#..... +1978 5.925856829 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380930 12 67 728400 0 0x00000043 0 67 728400 0 43 00 00 00 50 1d 0b 00 00 00 00 00 C...P....... +1980 5.925945282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333380942 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 aa 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 6d b4 ab d7 ?.....3...|8...................=B.....&......... +1981 5.925997257 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346115 12 -1 728399 0 0xffffffff 0 -1 728399 0 ff ff ff ff 4f 1d 0b 00 00 00 00 00 ....O....... +1984 5.926212549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346127 12 -1 728400 0 0xffffffff 0 -1 728400 0 ff ff ff ff 50 1d 0b 00 00 00 00 00 ....P....... +1986 5.926905394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346139 12 52 718897 0 0x00000034 0 52 718897 0 34 00 00 00 31 f8 0a 00 00 00 00 00 4...1....... +1988 5.927070856 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346151 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 aa 11 02 00 00 00 00 00 00 00 fc b3 92 96 4d 01 00 00 "0...Dk.................L."".([..................." +1990 5.927365541 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381009 12 -1 718897 0 0xffffffff 0 -1 718897 0 ff ff ff ff 31 f8 0a 00 00 00 00 00 ....1....... +1991 5.928185940 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381021 12 30 728401 0 0x0000001e 0 30 728401 0 1e 00 00 00 51 1d 0b 00 00 00 00 00 ....Q....... +1993 5.928338051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381033 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1866530816 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1995 5.928687096 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346203 12 -1 728401 0 0xffffffff 0 -1 728401 0 ff ff ff ff 51 1d 0b 00 00 00 00 00 ....Q....... +1997 5.929039240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346215 12 26 718898 0 0x0000001a 0 26 718898 0 1a 00 00 00 32 f8 0a 00 00 00 00 00 ....2....... +1999 5.929200411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346227 26 22 2068671 0 0x00000016 1 2068671 0 196609 0 16 00 00 00 bf 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2001 5.929548502 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381063 12 -1 718898 0 0xffffffff 0 -1 718898 0 ff ff ff ff 32 f8 0a 00 00 00 00 00 ....2....... +2007 6.007047176 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381075 12 26 728402 0 0x0000001a 0 26 728402 0 1a 00 00 00 52 1d 0b 00 00 00 00 00 ....R....... +2009 6.007250071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381087 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1866399744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2011 6.007628679 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346253 12 -1 728402 0 0xffffffff 0 -1 728402 0 ff ff ff ff 52 1d 0b 00 00 00 00 00 ....R....... +2013 6.008008957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346265 12 22 718899 0 0x00000016 0 22 718899 0 16 00 00 00 33 f8 0a 00 00 00 00 00 ....3....... +2015 6.008172512 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346277 22 18 2068673 0 0x00000012 1 2068673 0 196609 0 12 00 00 00 c1 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2017 6.008466244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381113 12 -1 718899 0 0xffffffff 0 -1 718899 0 ff ff ff ff 33 f8 0a 00 00 00 00 00 ....3....... +2021 6.036799431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381125 12 -2 82708 82690 0xfffffffe 0 -2 82708 82690 fe ff ff ff 14 43 01 00 02 43 01 00 .....C...C.. +2023 6.110412121 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381137 12 26 728403 0 0x0000001a 0 26 728403 0 1a 00 00 00 53 1d 0b 00 00 00 00 00 ....S....... +2025 6.110599518 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381149 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1866268672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2027 6.110956192 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346299 12 -1 728403 0 0xffffffff 0 -1 728403 0 ff ff ff ff 53 1d 0b 00 00 00 00 00 ....S....... +2029 6.111348391 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346311 12 22 718900 0 0x00000016 0 22 718900 0 16 00 00 00 34 f8 0a 00 00 00 00 00 ....4....... +2031 6.111507416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346323 22 18 2068675 0 0x00000012 1 2068675 0 196609 0 12 00 00 00 c3 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2033 6.111918688 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381175 12 -1 718900 0 0xffffffff 0 -1 718900 0 ff ff ff ff 34 f8 0a 00 00 00 00 00 ....4....... +2041 6.213924408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381187 12 26 728404 0 0x0000001a 0 26 728404 0 1a 00 00 00 54 1d 0b 00 00 00 00 00 ....T....... +2043 6.214110851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381199 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1866137600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2045 6.214539289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346345 12 -1 728404 0 0xffffffff 0 -1 728404 0 ff ff ff ff 54 1d 0b 00 00 00 00 00 ....T....... +2047 6.215528488 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346357 12 22 718901 0 0x00000016 0 22 718901 0 16 00 00 00 35 f8 0a 00 00 00 00 00 ....5....... +2049 6.215714455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346369 22 18 2068677 0 0x00000012 1 2068677 0 196609 0 12 00 00 00 c5 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2051 6.216052771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381225 12 -1 718901 0 0xffffffff 0 -1 718901 0 ff ff ff ff 35 f8 0a 00 00 00 00 00 ....5....... +2053 6.240337610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381237 12 101 728405 0 0x00000065 0 101 728405 0 65 00 00 00 55 1d 0b 00 00 00 00 00 e...U....... +2055 6.240516424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381249 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ab 11 02 00 00 00 00 00 7b b7 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ab 11 02 00 00 00 00 .....!...o3...............{.#.....?.....3...|8.. +2057 6.241088867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346391 12 -1 728405 0 0xffffffff 0 -1 728405 0 ff ff ff ff 55 1d 0b 00 00 00 00 00 ....U....... +2059 6.241612434 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346403 12 52 718902 0 0x00000034 0 52 718902 0 34 00 00 00 36 f8 0a 00 00 00 00 00 4...6....... +2061 6.241832256 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346415 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ab 11 02 00 00 00 00 00 00 00 81 bb c2 96 4d 01 00 00 "0...Dk.................L."".([..................." +2063 6.242136240 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381350 12 -1 718902 0 0xffffffff 0 -1 718902 0 ff ff ff ff 36 f8 0a 00 00 00 00 00 ....6....... +2065 6.243269682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381362 12 30 728406 0 0x0000001e 0 30 728406 0 1e 00 00 00 56 1d 0b 00 00 00 00 00 ....V....... +2067 6.243462563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381374 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1866006528 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2069 6.243822098 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346467 12 -1 728406 0 0xffffffff 0 -1 728406 0 ff ff ff ff 56 1d 0b 00 00 00 00 00 ....V....... +2071 6.244561672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346479 12 26 718903 0 0x0000001a 0 26 718903 0 1a 00 00 00 37 f8 0a 00 00 00 00 00 ....7....... +2073 6.244705915 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346491 26 22 2068679 0 0x00000016 1 2068679 0 196609 0 16 00 00 00 c7 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2075 6.245182991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381404 12 -1 718903 0 0xffffffff 0 -1 718903 0 ff ff ff ff 37 f8 0a 00 00 00 00 00 ....7....... +2081 6.317007780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381416 12 26 728407 0 0x0000001a 0 26 728407 0 1a 00 00 00 57 1d 0b 00 00 00 00 00 ....W....... +2083 6.317183018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381428 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1865875456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2085 6.317515373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346517 12 -1 728407 0 0xffffffff 0 -1 728407 0 ff ff ff ff 57 1d 0b 00 00 00 00 00 ....W....... +2087 6.317873240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346529 12 22 718904 0 0x00000016 0 22 718904 0 16 00 00 00 38 f8 0a 00 00 00 00 00 ....8....... +2089 6.318068743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346541 22 18 2068681 0 0x00000012 1 2068681 0 196609 0 12 00 00 00 c9 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2091 6.318405867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381454 12 -1 718904 0 0xffffffff 0 -1 718904 0 ff ff ff ff 38 f8 0a 00 00 00 00 00 ....8....... +2094 6.412730217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346563 12 -2 82691 82708 0xfffffffe 0 -2 82691 82708 fe ff ff ff 03 43 01 00 14 43 01 00 .....C...C.. +2101 6.419950724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381466 12 26 728408 0 0x0000001a 0 26 728408 0 1a 00 00 00 58 1d 0b 00 00 00 00 00 ....X....... +2103 6.420116663 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381478 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1865744384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2105 6.420466185 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346575 12 -1 728408 0 0xffffffff 0 -1 728408 0 ff ff ff ff 58 1d 0b 00 00 00 00 00 ....X....... +2107 6.421030760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346587 12 22 718905 0 0x00000016 0 22 718905 0 16 00 00 00 39 f8 0a 00 00 00 00 00 ....9....... +2109 6.421202898 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346599 22 18 2068683 0 0x00000012 1 2068683 0 196609 0 12 00 00 00 cb 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2111 6.421617985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381504 12 -1 718905 0 0xffffffff 0 -1 718905 0 ff ff ff ff 39 f8 0a 00 00 00 00 00 ....9....... +2117 6.522991896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381516 12 26 728409 0 0x0000001a 0 26 728409 0 1a 00 00 00 59 1d 0b 00 00 00 00 00 ....Y....... +2119 6.523182392 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381528 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1865613312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2121 6.523571730 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346621 12 -1 728409 0 0xffffffff 0 -1 728409 0 ff ff ff ff 59 1d 0b 00 00 00 00 00 ....Y....... +2123 6.524348259 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346633 12 22 718906 0 0x00000016 0 22 718906 0 16 00 00 00 3a f8 0a 00 00 00 00 00 ....:....... +2125 6.524582863 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346645 22 18 2068685 0 0x00000012 1 2068685 0 196609 0 12 00 00 00 cd 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2127 6.524907351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381554 12 -1 718906 0 0xffffffff 0 -1 718906 0 ff ff ff ff 3a f8 0a 00 00 00 00 00 ....:....... +2131 6.538982868 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381566 12 -2 82709 82691 0xfffffffe 0 -2 82709 82691 fe ff ff ff 15 43 01 00 03 43 01 00 .....C...C.. +2133 6.545459747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381578 12 101 728410 0 0x00000065 0 101 728410 0 65 00 00 00 5a 1d 0b 00 00 00 00 00 e...Z....... +2135 6.545658112 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381590 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ac 11 02 00 00 00 00 00 ac b8 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ac 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +2137 6.545958519 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346667 12 -1 728410 0 0xffffffff 0 -1 728410 0 ff ff ff ff 5a 1d 0b 00 00 00 00 00 ....Z....... +2139 6.546921492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346679 12 52 718907 0 0x00000034 0 52 718907 0 34 00 00 00 3b f8 0a 00 00 00 00 00 4...;....... +2141 6.547114611 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346691 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ac 11 02 00 00 00 00 00 00 00 45 4c f1 96 4d 01 00 00 "0...Dk.................L."".([...............EL.." +2143 6.547429085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381691 12 -1 718907 0 0xffffffff 0 -1 718907 0 ff ff ff ff 3b f8 0a 00 00 00 00 00 ....;....... +2145 6.548307657 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381703 12 30 728411 0 0x0000001e 0 30 728411 0 1e 00 00 00 5b 1d 0b 00 00 00 00 00 ....[....... +2147 6.548505306 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381715 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1865482240 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cf 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2149 6.548923016 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346743 12 -1 728411 0 0xffffffff 0 -1 728411 0 ff ff ff ff 5b 1d 0b 00 00 00 00 00 ....[....... +2151 6.549289703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346755 12 26 718908 0 0x0000001a 0 26 718908 0 1a 00 00 00 3c f8 0a 00 00 00 00 00 ....<....... +2153 6.549425840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346767 26 22 2068687 0 0x00000016 1 2068687 0 196609 0 16 00 00 00 cf 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2155 6.549642563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381745 12 -1 718908 0 0xffffffff 0 -1 718908 0 ff ff ff ff 3c f8 0a 00 00 00 00 00 ....<....... +2157 6.626861572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381757 12 26 728412 0 0x0000001a 0 26 728412 0 1a 00 00 00 5c 1d 0b 00 00 00 00 00 ....\....... +2159 6.627044439 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381769 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1865351168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2161 6.627440214 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346793 12 -1 728412 0 0xffffffff 0 -1 728412 0 ff ff ff ff 5c 1d 0b 00 00 00 00 00 ....\....... +2163 6.627748251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346805 12 22 718909 0 0x00000016 0 22 718909 0 16 00 00 00 3d f8 0a 00 00 00 00 00 ....=....... +2165 6.627909422 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346817 22 18 2068689 0 0x00000012 1 2068689 0 196609 0 12 00 00 00 d1 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2167 6.628181934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381795 12 -1 718909 0 0xffffffff 0 -1 718909 0 ff ff ff ff 3d f8 0a 00 00 00 00 00 ....=....... +2183 6.730073214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381807 12 26 728413 0 0x0000001a 0 26 728413 0 1a 00 00 00 5d 1d 0b 00 00 00 00 00 ....]....... +2185 6.730242252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381819 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1865220096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2187 6.730578423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346839 12 -1 728413 0 0xffffffff 0 -1 728413 0 ff ff ff ff 5d 1d 0b 00 00 00 00 00 ....]....... +2189 6.731048107 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346851 12 22 718910 0 0x00000016 0 22 718910 0 16 00 00 00 3e f8 0a 00 00 00 00 00 ....>....... +2191 6.731198549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346863 22 18 2068691 0 0x00000012 1 2068691 0 196609 0 12 00 00 00 d3 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2193 6.731479168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381845 12 -1 718910 0 0xffffffff 0 -1 718910 0 ff ff ff ff 3e f8 0a 00 00 00 00 00 ....>....... +2201 6.833995342 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381857 12 26 728414 0 0x0000001a 0 26 728414 0 1a 00 00 00 5e 1d 0b 00 00 00 00 00 ....^....... +2203 6.834317684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381869 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1865089024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2205 6.834722042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346885 12 -1 728414 0 0xffffffff 0 -1 728414 0 ff ff ff ff 5e 1d 0b 00 00 00 00 00 ....^....... +2207 6.835303783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346897 12 22 718911 0 0x00000016 0 22 718911 0 16 00 00 00 3f f8 0a 00 00 00 00 00 ....?....... +2209 6.835428953 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346909 22 18 2068693 0 0x00000012 1 2068693 0 196609 0 12 00 00 00 d5 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2211 6.835849524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381895 12 -1 718911 0 0xffffffff 0 -1 718911 0 ff ff ff ff 3f f8 0a 00 00 00 00 00 ....?....... +2213 6.849969387 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381907 12 101 728415 0 0x00000065 0 101 728415 0 65 00 00 00 5f 1d 0b 00 00 00 00 00 e..._....... +2215 6.850292921 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333381919 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ad 11 02 00 00 00 00 00 dd b9 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ad 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +2217 6.850677967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346931 12 -1 728415 0 0xffffffff 0 -1 728415 0 ff ff ff ff 5f 1d 0b 00 00 00 00 00 ...._....... +2219 6.851677179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346943 12 52 718912 0 0x00000034 0 52 718912 0 34 00 00 00 40 f8 0a 00 00 00 00 00 4...@....... +2221 6.851885557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377346955 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ad 11 02 00 00 00 00 00 00 00 4a d0 1f 97 4d 01 00 00 "0...Dk.................L."".([...............J..." +2223 6.852177382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382020 12 -1 718912 0 0xffffffff 0 -1 718912 0 ff ff ff ff 40 f8 0a 00 00 00 00 00 ....@....... +2225 6.853226900 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382032 12 30 728416 0 0x0000001e 0 30 728416 0 1e 00 00 00 60 1d 0b 00 00 00 00 00 ....`....... +2227 6.853477955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382044 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1864957952 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d7 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2229 6.853805780 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347007 12 -1 728416 0 0xffffffff 0 -1 728416 0 ff ff ff ff 60 1d 0b 00 00 00 00 00 ....`....... +2231 6.854458570 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347019 12 26 718913 0 0x0000001a 0 26 718913 0 1a 00 00 00 41 f8 0a 00 00 00 00 00 ....A....... +2233 6.854653358 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347031 26 22 2068695 0 0x00000016 1 2068695 0 196609 0 16 00 00 00 d7 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2235 6.854881287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382074 12 -1 718913 0 0xffffffff 0 -1 718913 0 ff ff ff ff 41 f8 0a 00 00 00 00 00 ....A....... +2270 6.914704800 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347057 12 -2 82692 82709 0xfffffffe 0 -2 82692 82709 fe ff ff ff 04 43 01 00 15 43 01 00 .....C...C.. +2277 6.936942339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382086 12 26 728417 0 0x0000001a 0 26 728417 0 1a 00 00 00 61 1d 0b 00 00 00 00 00 ....a....... +2279 6.937126875 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382098 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1864826880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2281 6.937619448 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347069 12 -1 728417 0 0xffffffff 0 -1 728417 0 ff ff ff ff 61 1d 0b 00 00 00 00 00 ....a....... +2283 6.937921286 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347081 12 22 718914 0 0x00000016 0 22 718914 0 16 00 00 00 42 f8 0a 00 00 00 00 00 ....B....... +2285 6.938134670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347093 22 18 2068697 0 0x00000012 1 2068697 0 196609 0 12 00 00 00 d9 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2287 6.938415051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382124 12 -1 718914 0 0xffffffff 0 -1 718914 0 ff ff ff ff 42 f8 0a 00 00 00 00 00 ....B....... +2297 7.039599895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382136 12 -2 82710 82692 0xfffffffe 0 -2 82710 82692 fe ff ff ff 16 43 01 00 04 43 01 00 .....C...C.. +2299 7.039967299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382148 12 26 728418 0 0x0000001a 0 26 728418 0 1a 00 00 00 62 1d 0b 00 00 00 00 00 ....b....... +2301 7.040183306 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382160 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1864695808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2303 7.040574312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347115 12 -1 728418 0 0xffffffff 0 -1 728418 0 ff ff ff ff 62 1d 0b 00 00 00 00 00 ....b....... +2305 7.041112661 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347127 12 22 718915 0 0x00000016 0 22 718915 0 16 00 00 00 43 f8 0a 00 00 00 00 00 ....C....... +2307 7.041318417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347139 22 18 2068699 0 0x00000012 1 2068699 0 196609 0 12 00 00 00 db 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2309 7.041539431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382186 12 -1 718915 0 0xffffffff 0 -1 718915 0 ff ff ff ff 43 f8 0a 00 00 00 00 00 ....C....... +2324 7.142767668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382198 12 26 728419 0 0x0000001a 0 26 728419 0 1a 00 00 00 63 1d 0b 00 00 00 00 00 ....c....... +2326 7.142936468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382210 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1864564736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2328 7.143301010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347161 12 -1 728419 0 0xffffffff 0 -1 728419 0 ff ff ff ff 63 1d 0b 00 00 00 00 00 ....c....... +2330 7.143746853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347173 12 22 718916 0 0x00000016 0 22 718916 0 16 00 00 00 44 f8 0a 00 00 00 00 00 ....D....... +2332 7.144173145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347185 22 18 2068701 0 0x00000012 1 2068701 0 196609 0 12 00 00 00 dd 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2334 7.144490719 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382236 12 -1 718916 0 0xffffffff 0 -1 718916 0 ff ff ff ff 44 f8 0a 00 00 00 00 00 ....D....... +2363 7.155721188 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382248 12 101 728420 0 0x00000065 0 101 728420 0 65 00 00 00 64 1d 0b 00 00 00 00 00 e...d....... +2365 7.155913115 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382260 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ae 11 02 00 00 00 00 00 0f bb 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ae 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +2367 7.156242847 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347207 12 -1 728420 0 0xffffffff 0 -1 728420 0 ff ff ff ff 64 1d 0b 00 00 00 00 00 ....d....... +2369 7.157157183 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347219 12 52 718917 0 0x00000034 0 52 718917 0 34 00 00 00 45 f8 0a 00 00 00 00 00 4...E....... +2371 7.157590389 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347231 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ae 11 02 00 00 00 00 00 00 00 bb 69 4e 97 4d 01 00 00 "0...Dk.................L."".([................iN." +2373 7.157918215 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382361 12 -1 718917 0 0xffffffff 0 -1 718917 0 ff ff ff ff 45 f8 0a 00 00 00 00 00 ....E....... +2375 7.158705950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382373 12 30 728421 0 0x0000001e 0 30 728421 0 1e 00 00 00 65 1d 0b 00 00 00 00 00 ....e....... +2377 7.158844709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382385 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1864433664 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 df 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2379 7.159255505 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347283 12 -1 728421 0 0xffffffff 0 -1 728421 0 ff ff ff ff 65 1d 0b 00 00 00 00 00 ....e....... +2381 7.159507990 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347295 12 26 718918 0 0x0000001a 0 26 718918 0 1a 00 00 00 46 f8 0a 00 00 00 00 00 ....F....... +2383 7.159673452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347307 26 22 2068703 0 0x00000016 1 2068703 0 196609 0 16 00 00 00 df 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2385 7.159961462 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382415 12 -1 718918 0 0xffffffff 0 -1 718918 0 ff ff ff ff 46 f8 0a 00 00 00 00 00 ....F....... +2389 7.246772289 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382427 12 26 728422 0 0x0000001a 0 26 728422 0 1a 00 00 00 66 1d 0b 00 00 00 00 00 ....f....... +2391 7.246997356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382439 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1864302592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2393 7.247366905 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347333 12 -1 728422 0 0xffffffff 0 -1 728422 0 ff ff ff ff 66 1d 0b 00 00 00 00 00 ....f....... +2395 7.247912407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347345 12 22 718919 0 0x00000016 0 22 718919 0 16 00 00 00 47 f8 0a 00 00 00 00 00 ....G....... +2397 7.248103619 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347357 22 18 2068705 0 0x00000012 1 2068705 0 196609 0 12 00 00 00 e1 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2399 7.248409748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382465 12 -1 718919 0 0xffffffff 0 -1 718919 0 ff ff ff ff 47 f8 0a 00 00 00 00 00 ....G....... +2407 7.350037813 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382477 12 26 728423 0 0x0000001a 0 26 728423 0 1a 00 00 00 67 1d 0b 00 00 00 00 00 ....g....... +2409 7.350265026 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382489 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1864171520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2411 7.350599527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347379 12 -1 728423 0 0xffffffff 0 -1 728423 0 ff ff ff ff 67 1d 0b 00 00 00 00 00 ....g....... +2413 7.351173162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347391 12 22 718920 0 0x00000016 0 22 718920 0 16 00 00 00 48 f8 0a 00 00 00 00 00 ....H....... +2415 7.351368189 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347403 22 18 2068707 0 0x00000012 1 2068707 0 196609 0 12 00 00 00 e3 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2417 7.351608038 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382515 12 -1 718920 0 0xffffffff 0 -1 718920 0 ff ff ff ff 48 f8 0a 00 00 00 00 00 ....H....... +2427 7.415039301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347425 12 -2 82693 82710 0xfffffffe 0 -2 82693 82710 fe ff ff ff 05 43 01 00 16 43 01 00 .....C...C.. +2435 7.453057528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382527 12 26 728424 0 0x0000001a 0 26 728424 0 1a 00 00 00 68 1d 0b 00 00 00 00 00 ....h....... +2437 7.453281879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382539 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1864040448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2439 7.453795433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347437 12 -1 728424 0 0xffffffff 0 -1 728424 0 ff ff ff ff 68 1d 0b 00 00 00 00 00 ....h....... +2441 7.454455137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347449 12 22 718921 0 0x00000016 0 22 718921 0 16 00 00 00 49 f8 0a 00 00 00 00 00 ....I....... +2443 7.454644680 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347461 22 18 2068709 0 0x00000012 1 2068709 0 196609 0 12 00 00 00 e5 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2445 7.454993963 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382565 12 -1 718921 0 0xffffffff 0 -1 718921 0 ff ff ff ff 49 f8 0a 00 00 00 00 00 ....I....... +2447 7.460166454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382577 12 34 728425 0 0x00000022 0 34 728425 0 22 00 00 00 69 1d 0b 00 00 00 00 00 """...i......." +2449 7.460389614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382589 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 296681472 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 af 11 02 00 00 00 00 00 3f bc 23 c3 9d 01 00 00 .....!...o3...............?.#..... +2451 7.460509300 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382623 12 67 728426 0 0x00000043 0 67 728426 0 43 00 00 00 6a 1d 0b 00 00 00 00 00 C...j....... +2453 7.460613489 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382635 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 af 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 df 2f 07 d8 ?.....3...|8...................=B.....&......... +2454 7.460629940 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347483 12 -1 728425 0 0xffffffff 0 -1 728425 0 ff ff ff ff 69 1d 0b 00 00 00 00 00 ....i....... +2457 7.460846186 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347495 12 -1 728426 0 0xffffffff 0 -1 728426 0 ff ff ff ff 6a 1d 0b 00 00 00 00 00 ....j....... +2459 7.462054968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347507 12 52 718922 0 0x00000034 0 52 718922 0 34 00 00 00 4a f8 0a 00 00 00 00 00 4...J....... +2461 7.462222576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347519 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 af 11 02 00 00 00 00 00 00 00 a6 ef 7c 97 4d 01 00 00 "0...Dk.................L."".([.................|." +2463 7.462519169 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382702 12 -1 718922 0 0xffffffff 0 -1 718922 0 ff ff ff ff 4a f8 0a 00 00 00 00 00 ....J....... +2464 7.463451862 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382714 12 30 728427 0 0x0000001e 0 30 728427 0 1e 00 00 00 6b 1d 0b 00 00 00 00 00 ....k....... +2466 7.463593245 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382726 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1863909376 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e7 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2468 7.463877439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347571 12 -1 728427 0 0xffffffff 0 -1 728427 0 ff ff ff ff 6b 1d 0b 00 00 00 00 00 ....k....... +2470 7.464572668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347583 12 26 718923 0 0x0000001a 0 26 718923 0 1a 00 00 00 4b f8 0a 00 00 00 00 00 ....K....... +2472 7.464722157 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347595 26 22 2068711 0 0x00000016 1 2068711 0 196609 0 16 00 00 00 e7 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2474 7.464979410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382756 12 -1 718923 0 0xffffffff 0 -1 718923 0 ff ff ff ff 4b f8 0a 00 00 00 00 00 ....K....... +2514 7.541517496 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382768 12 -2 82711 82693 0xfffffffe 0 -2 82711 82693 fe ff ff ff 17 43 01 00 05 43 01 00 .....C...C.. +2516 7.556862593 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382780 12 26 728428 0 0x0000001a 0 26 728428 0 1a 00 00 00 6c 1d 0b 00 00 00 00 00 ....l....... +2518 7.557058573 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382792 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1863778304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2520 7.557438135 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347621 12 -1 728428 0 0xffffffff 0 -1 728428 0 ff ff ff ff 6c 1d 0b 00 00 00 00 00 ....l....... +2522 7.558444500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347633 12 22 718924 0 0x00000016 0 22 718924 0 16 00 00 00 4c f8 0a 00 00 00 00 00 ....L....... +2524 7.558581591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347645 22 18 2068713 0 0x00000012 1 2068713 0 196609 0 12 00 00 00 e9 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2526 7.558918238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382818 12 -1 718924 0 0xffffffff 0 -1 718924 0 ff ff ff ff 4c f8 0a 00 00 00 00 00 ....L....... +2534 7.661173582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382830 12 26 728429 0 0x0000001a 0 26 728429 0 1a 00 00 00 6d 1d 0b 00 00 00 00 00 ....m....... +2536 7.661512375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382842 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1863647232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2538 7.661843300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347667 12 -1 728429 0 0xffffffff 0 -1 728429 0 ff ff ff ff 6d 1d 0b 00 00 00 00 00 ....m....... +2540 7.662331581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347679 12 22 718925 0 0x00000016 0 22 718925 0 16 00 00 00 4d f8 0a 00 00 00 00 00 ....M....... +2542 7.662479162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347691 22 18 2068715 0 0x00000012 1 2068715 0 196609 0 12 00 00 00 eb 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2544 7.662840366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382868 12 -1 718925 0 0xffffffff 0 -1 718925 0 ff ff ff ff 4d f8 0a 00 00 00 00 00 ....M....... +2550 7.763974190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382880 12 26 728430 0 0x0000001a 0 26 728430 0 1a 00 00 00 6e 1d 0b 00 00 00 00 00 ....n....... +2552 7.764149189 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382892 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1863516160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2554 7.764335632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382918 12 101 728431 0 0x00000065 0 101 728431 0 65 00 00 00 6f 1d 0b 00 00 00 00 00 e...o....... +2556 7.764443159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333382930 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b0 11 02 00 00 00 00 00 6f bd 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b0 11 02 00 00 00 00 .....!...o3...............o.#.....?.....3...|8.. +2557 7.764461279 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347713 12 -1 728430 0 0xffffffff 0 -1 728430 0 ff ff ff ff 6e 1d 0b 00 00 00 00 00 ....n....... +2560 7.765159369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347725 12 -1 728431 0 0xffffffff 0 -1 728431 0 ff ff ff ff 6f 1d 0b 00 00 00 00 00 ....o....... +2562 7.765602589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347737 12 22 718926 0 0x00000016 0 22 718926 0 16 00 00 00 4e f8 0a 00 00 00 00 00 ....N....... +2564 7.765801191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347749 22 18 2068717 0 0x00000012 1 2068717 0 196609 0 12 00 00 00 ed 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2566 7.766020298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383031 12 -1 718926 0 0xffffffff 0 -1 718926 0 ff ff ff ff 4e f8 0a 00 00 00 00 00 ....N....... +2567 7.767297268 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347771 12 52 718927 0 0x00000034 0 52 718927 0 34 00 00 00 4f f8 0a 00 00 00 00 00 4...O....... +2569 7.767452478 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347783 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b0 11 02 00 00 00 00 00 00 00 57 85 ab 97 4d 01 00 00 "0...Dk.................L."".([...............W..." +2571 7.767692804 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383043 12 -1 718927 0 0xffffffff 0 -1 718927 0 ff ff ff ff 4f f8 0a 00 00 00 00 00 ....O....... +2572 7.768525600 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383055 12 30 728432 0 0x0000001e 0 30 728432 0 1e 00 00 00 70 1d 0b 00 00 00 00 00 ....p....... +2573 7.768637896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383067 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1863385088 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ef 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2574 7.768863678 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347835 12 -1 728432 0 0xffffffff 0 -1 728432 0 ff ff ff ff 70 1d 0b 00 00 00 00 00 ....p....... +2576 7.770374775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347847 12 26 718928 0 0x0000001a 0 26 718928 0 1a 00 00 00 50 f8 0a 00 00 00 00 00 ....P....... +2578 7.770520687 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347859 26 22 2068719 0 0x00000016 1 2068719 0 196609 0 16 00 00 00 ef 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2580 7.770769596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383097 12 -1 718928 0 0xffffffff 0 -1 718928 0 ff ff ff ff 50 f8 0a 00 00 00 00 00 ....P....... +2586 7.868872404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383109 12 26 728433 0 0x0000001a 0 26 728433 0 1a 00 00 00 71 1d 0b 00 00 00 00 00 ....q....... +2588 7.869066000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383121 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1863254016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2590 7.869476080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347885 12 -1 728433 0 0xffffffff 0 -1 728433 0 ff ff ff ff 71 1d 0b 00 00 00 00 00 ....q....... +2592 7.869952679 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347897 12 22 718929 0 0x00000016 0 22 718929 0 16 00 00 00 51 f8 0a 00 00 00 00 00 ....Q....... +2594 7.870112896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347909 22 18 2068721 0 0x00000012 1 2068721 0 196609 0 12 00 00 00 f1 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2596 7.870565891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383147 12 -1 718929 0 0xffffffff 0 -1 718929 0 ff ff ff ff 51 f8 0a 00 00 00 00 00 ....Q....... +2603 7.915388584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347931 12 -2 82694 82711 0xfffffffe 0 -2 82694 82711 fe ff ff ff 06 43 01 00 17 43 01 00 .....C...C.. +2606 7.972576857 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383159 12 26 728434 0 0x0000001a 0 26 728434 0 1a 00 00 00 72 1d 0b 00 00 00 00 00 ....r....... +2608 7.972790003 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383171 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1863122944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2610 7.973147631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347943 12 -1 728434 0 0xffffffff 0 -1 728434 0 ff ff ff ff 72 1d 0b 00 00 00 00 00 ....r....... +2612 7.973609447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347955 12 22 718930 0 0x00000016 0 22 718930 0 16 00 00 00 52 f8 0a 00 00 00 00 00 ....R....... +2614 7.973772287 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347967 22 18 2068723 0 0x00000012 1 2068723 0 196609 0 12 00 00 00 f3 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2616 7.974191666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383197 12 -1 718930 0 0xffffffff 0 -1 718930 0 ff ff ff ff 52 f8 0a 00 00 00 00 00 ....R....... +2624 8.042154074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383209 12 -2 82712 82694 0xfffffffe 0 -2 82712 82694 fe ff ff ff 18 43 01 00 06 43 01 00 .....C...C.. +2626 8.070037603 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383221 12 34 728435 0 0x00000022 0 34 728435 0 22 00 00 00 73 1d 0b 00 00 00 00 00 """...s......." +2628 8.070235968 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383233 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 296812544 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b1 11 02 00 00 00 00 00 a2 be 23 c3 9d 01 00 00 .....!...o3.................#..... +2630 8.070418358 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383267 12 67 728436 0 0x00000043 0 67 728436 0 43 00 00 00 74 1d 0b 00 00 00 00 00 C...t....... +2632 8.070532084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383279 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b1 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec 3b 94 2b d8 ?.....3...|8...................=B.....&......... +2633 8.070585489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377347989 12 -1 728435 0 0xffffffff 0 -1 728435 0 ff ff ff ff 73 1d 0b 00 00 00 00 00 ....s....... +2636 8.070861578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348001 12 -1 728436 0 0xffffffff 0 -1 728436 0 ff ff ff ff 74 1d 0b 00 00 00 00 00 ....t....... +2638 8.071720600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348013 12 52 718931 0 0x00000034 0 52 718931 0 34 00 00 00 53 f8 0a 00 00 00 00 00 4...S....... +2640 8.071912766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348025 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b1 11 02 00 00 00 00 00 00 00 44 f9 d9 97 4d 01 00 00 "0...Dk.................L."".([...............D..." +2642 8.072226763 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383346 12 -1 718931 0 0xffffffff 0 -1 718931 0 ff ff ff ff 53 f8 0a 00 00 00 00 00 ....S....... +2643 8.073090792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383358 12 30 728437 0 0x0000001e 0 30 728437 0 1e 00 00 00 75 1d 0b 00 00 00 00 00 ....u....... +2644 8.073240280 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383370 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1862991872 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f5 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2645 8.073511600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348077 12 -1 728437 0 0xffffffff 0 -1 728437 0 ff ff ff ff 75 1d 0b 00 00 00 00 00 ....u....... +2647 8.073979139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348089 12 26 718932 0 0x0000001a 0 26 718932 0 1a 00 00 00 54 f8 0a 00 00 00 00 00 ....T....... +2649 8.074122190 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348101 26 22 2068725 0 0x00000016 1 2068725 0 196609 0 16 00 00 00 f5 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2651 8.074360132 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383400 12 -1 718932 0 0xffffffff 0 -1 718932 0 ff ff ff ff 54 f8 0a 00 00 00 00 00 ....T....... +2652 8.076329470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383412 12 26 728438 0 0x0000001a 0 26 728438 0 1a 00 00 00 76 1d 0b 00 00 00 00 00 ....v....... +2653 8.076445580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383424 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1862860800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2654 8.076708794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348127 12 -1 728438 0 0xffffffff 0 -1 728438 0 ff ff ff ff 76 1d 0b 00 00 00 00 00 ....v....... +2656 8.077036619 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348139 12 22 718933 0 0x00000016 0 22 718933 0 16 00 00 00 55 f8 0a 00 00 00 00 00 ....U....... +2658 8.077176332 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348151 22 18 2068727 0 0x00000012 1 2068727 0 196609 0 12 00 00 00 f7 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2660 8.077358246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383450 12 -1 718933 0 0xffffffff 0 -1 718933 0 ff ff ff ff 55 f8 0a 00 00 00 00 00 ....U....... +2666 8.180426598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383462 12 26 728439 0 0x0000001a 0 26 728439 0 1a 00 00 00 77 1d 0b 00 00 00 00 00 ....w....... +2668 8.180675268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383474 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1862729728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2670 8.180999041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348173 12 -1 728439 0 0xffffffff 0 -1 728439 0 ff ff ff ff 77 1d 0b 00 00 00 00 00 ....w....... +2672 8.181551456 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348185 12 22 718934 0 0x00000016 0 22 718934 0 16 00 00 00 56 f8 0a 00 00 00 00 00 ....V....... +2674 8.181709051 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348197 22 18 2068729 0 0x00000012 1 2068729 0 196609 0 12 00 00 00 f9 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2676 8.181997538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383500 12 -1 718934 0 0xffffffff 0 -1 718934 0 ff ff ff ff 56 f8 0a 00 00 00 00 00 ....V....... +2680 8.284245253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383512 12 26 728440 0 0x0000001a 0 26 728440 0 1a 00 00 00 78 1d 0b 00 00 00 00 00 ....x....... +2682 8.284481764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383524 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1862598656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2684 8.284801960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348219 12 -1 728440 0 0xffffffff 0 -1 728440 0 ff ff ff ff 78 1d 0b 00 00 00 00 00 ....x....... +2686 8.285437584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348231 12 22 718935 0 0x00000016 0 22 718935 0 16 00 00 00 57 f8 0a 00 00 00 00 00 ....W....... +2688 8.285611868 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348243 22 18 2068731 0 0x00000012 1 2068731 0 196609 0 12 00 00 00 fb 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2690 8.285988331 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383550 12 -1 718935 0 0xffffffff 0 -1 718935 0 ff ff ff ff 57 f8 0a 00 00 00 00 00 ....W....... +2700 8.375809193 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383562 12 101 728441 0 0x00000065 0 101 728441 0 65 00 00 00 79 1d 0b 00 00 00 00 00 e...y....... +2702 8.376036644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383574 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b2 11 02 00 00 00 00 00 d2 bf 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b2 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +2704 8.376370907 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348265 12 -1 728441 0 0xffffffff 0 -1 728441 0 ff ff ff ff 79 1d 0b 00 00 00 00 00 ....y....... +2706 8.377229691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348277 12 52 718936 0 0x00000034 0 52 718936 0 34 00 00 00 58 f8 0a 00 00 00 00 00 4...X....... +2708 8.377403259 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348289 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b2 11 02 00 00 00 00 00 00 00 ed 96 08 98 4d 01 00 00 "0...Dk.................L."".([..................." +2710 8.377802610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383675 12 -1 718936 0 0xffffffff 0 -1 718936 0 ff ff ff ff 58 f8 0a 00 00 00 00 00 ....X....... +2712 8.378702164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383687 12 30 728442 0 0x0000001e 0 30 728442 0 1e 00 00 00 7a 1d 0b 00 00 00 00 00 ....z....... +2714 8.378900051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383699 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1862467584 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fd 90 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2716 8.379218102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348341 12 -1 728442 0 0xffffffff 0 -1 728442 0 ff ff ff ff 7a 1d 0b 00 00 00 00 00 ....z....... +2718 8.379587173 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348353 12 26 718937 0 0x0000001a 0 26 718937 0 1a 00 00 00 59 f8 0a 00 00 00 00 00 ....Y....... +2720 8.379724741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348365 26 22 2068733 0 0x00000016 1 2068733 0 196609 0 16 00 00 00 fd 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2722 8.379974127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383729 12 -1 718937 0 0xffffffff 0 -1 718937 0 ff ff ff ff 59 f8 0a 00 00 00 00 00 ....Y....... +2724 8.388312578 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383741 12 26 728443 0 0x0000001a 0 26 728443 0 1a 00 00 00 7b 1d 0b 00 00 00 00 00 ....{....... +2726 8.388632298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383753 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1862336512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 90 1f 00 00 00 00 00 ....T.c@.^1@.............. +2728 8.388838530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348391 12 -1 728443 0 0xffffffff 0 -1 728443 0 ff ff ff ff 7b 1d 0b 00 00 00 00 00 ....{....... +2730 8.389229059 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348403 12 22 718938 0 0x00000016 0 22 718938 0 16 00 00 00 5a f8 0a 00 00 00 00 00 ....Z....... +2732 8.389392853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348415 22 18 2068735 0 0x00000012 1 2068735 0 196609 0 12 00 00 00 ff 90 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2734 8.390368223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383779 12 -1 718938 0 0xffffffff 0 -1 718938 0 ff ff ff ff 5a f8 0a 00 00 00 00 00 ....Z....... +2741 8.416287899 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348437 12 -2 82695 82712 0xfffffffe 0 -2 82695 82712 fe ff ff ff 07 43 01 00 18 43 01 00 .....C...C.. +2746 8.492280960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383791 12 26 728444 0 0x0000001a 0 26 728444 0 1a 00 00 00 7c 1d 0b 00 00 00 00 00 ....|....... +2748 8.492488146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383803 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1862205440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +2750 8.492853642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348449 12 -1 728444 0 0xffffffff 0 -1 728444 0 ff ff ff ff 7c 1d 0b 00 00 00 00 00 ....|....... +2752 8.493295193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348461 12 22 718939 0 0x00000016 0 22 718939 0 16 00 00 00 5b f8 0a 00 00 00 00 00 ....[....... +2754 8.493466377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348473 22 18 2068737 0 0x00000012 1 2068737 0 196609 0 12 00 00 00 01 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2756 8.493901968 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383829 12 -1 718939 0 0xffffffff 0 -1 718939 0 ff ff ff ff 5b f8 0a 00 00 00 00 00 ....[....... +2762 8.542684078 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383841 12 -2 82713 82695 0xfffffffe 0 -2 82713 82695 fe ff ff ff 19 43 01 00 07 43 01 00 .....C...C.. +2764 8.596092701 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383853 12 26 728445 0 0x0000001a 0 26 728445 0 1a 00 00 00 7d 1d 0b 00 00 00 00 00 ....}....... +2766 8.596281528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383865 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1862074368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +2768 8.596652985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348495 12 -1 728445 0 0xffffffff 0 -1 728445 0 ff ff ff ff 7d 1d 0b 00 00 00 00 00 ....}....... +2770 8.597160816 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348507 12 22 718940 0 0x00000016 0 22 718940 0 16 00 00 00 5c f8 0a 00 00 00 00 00 ....\....... +2772 8.597365379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348519 22 18 2068739 0 0x00000012 1 2068739 0 196609 0 12 00 00 00 03 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2774 8.597697258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383891 12 -1 718940 0 0xffffffff 0 -1 718940 0 ff ff ff ff 5c f8 0a 00 00 00 00 00 ....\....... +2780 8.680529356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383903 12 34 728446 0 0x00000022 0 34 728446 0 22 00 00 00 7e 1d 0b 00 00 00 00 00 """...~......." +2782 8.680772543 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383915 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 296943616 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b3 11 02 00 00 00 00 00 03 c1 23 c3 9d 01 00 00 .....!...o3.................#..... +2784 8.681016684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383949 12 67 728447 0 0x00000043 0 67 728447 0 43 00 00 00 7f 1d 0b 00 00 00 00 00 C........... +2786 8.681112051 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348541 12 -1 728446 0 0xffffffff 0 -1 728446 0 ff ff ff ff 7e 1d 0b 00 00 00 00 00 ....~....... +2788 8.681397200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333383961 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b3 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 19 f8 4f d8 ?.....3...|8...................=B.....&......... +2790 8.681672573 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348553 12 -1 728447 0 0xffffffff 0 -1 728447 0 ff ff ff ff 7f 1d 0b 00 00 00 00 00 ............ +2792 8.682414770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348565 12 52 718941 0 0x00000034 0 52 718941 0 34 00 00 00 5d f8 0a 00 00 00 00 00 4...]....... +2794 8.682571173 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348577 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b3 11 02 00 00 00 00 00 00 00 52 27 37 98 4d 01 00 00 "0...Dk.................L."".([...............R'7." +2796 8.682902575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384028 12 -1 718941 0 0xffffffff 0 -1 718941 0 ff ff ff ff 5d f8 0a 00 00 00 00 00 ....]....... +2798 8.683759689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384040 12 30 728448 0 0x0000001e 0 30 728448 0 1e 00 00 00 80 1d 0b 00 00 00 00 00 ............ +2800 8.683952093 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384052 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1861943296 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2802 8.684251547 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348629 12 -1 728448 0 0xffffffff 0 -1 728448 0 ff ff ff ff 80 1d 0b 00 00 00 00 00 ............ +2804 8.684644699 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348641 12 26 718942 0 0x0000001a 0 26 718942 0 1a 00 00 00 5e f8 0a 00 00 00 00 00 ....^....... +2806 8.684795856 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348653 26 22 2068741 0 0x00000016 1 2068741 0 196609 0 16 00 00 00 05 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2808 8.685088873 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384082 12 -1 718942 0 0xffffffff 0 -1 718942 0 ff ff ff ff 5e f8 0a 00 00 00 00 00 ....^....... +2810 8.698939800 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384094 12 26 728449 0 0x0000001a 0 26 728449 0 1a 00 00 00 81 1d 0b 00 00 00 00 00 ............ +2812 8.699108124 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384106 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1861812224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +2814 8.699423313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348679 12 -1 728449 0 0xffffffff 0 -1 728449 0 ff ff ff ff 81 1d 0b 00 00 00 00 00 ............ +2816 8.699698448 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348691 12 22 718943 0 0x00000016 0 22 718943 0 16 00 00 00 5f f8 0a 00 00 00 00 00 ...._....... +2818 8.699858189 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348703 22 18 2068743 0 0x00000012 1 2068743 0 196609 0 12 00 00 00 07 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2820 8.700065374 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384132 12 -1 718943 0 0xffffffff 0 -1 718943 0 ff ff ff ff 5f f8 0a 00 00 00 00 00 ...._....... +2900 8.802052498 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384144 12 26 728450 0 0x0000001a 0 26 728450 0 1a 00 00 00 82 1d 0b 00 00 00 00 00 ............ +2902 8.802242994 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384156 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1861681152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +2904 8.802581549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348725 12 -1 728450 0 0xffffffff 0 -1 728450 0 ff ff ff ff 82 1d 0b 00 00 00 00 00 ............ +2906 8.803071499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348737 12 22 718944 0 0x00000016 0 22 718944 0 16 00 00 00 60 f8 0a 00 00 00 00 00 ....`....... +2908 8.803231239 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348749 22 18 2068745 0 0x00000012 1 2068745 0 196609 0 12 00 00 00 09 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2910 8.803473473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384182 12 -1 718944 0 0xffffffff 0 -1 718944 0 ff ff ff ff 60 f8 0a 00 00 00 00 00 ....`....... +3054 8.904896975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384194 12 26 728451 0 0x0000001a 0 26 728451 0 1a 00 00 00 83 1d 0b 00 00 00 00 00 ............ +3056 8.905174255 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384206 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1861550080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3058 8.905505180 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348771 12 -1 728451 0 0xffffffff 0 -1 728451 0 ff ff ff ff 83 1d 0b 00 00 00 00 00 ............ +3060 8.906047583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348783 12 22 718945 0 0x00000016 0 22 718945 0 16 00 00 00 61 f8 0a 00 00 00 00 00 ....a....... +3062 8.906174421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348795 22 18 2068747 0 0x00000012 1 2068747 0 196609 0 12 00 00 00 0b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3064 8.906452417 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384232 12 -1 718945 0 0xffffffff 0 -1 718945 0 ff ff ff ff 61 f8 0a 00 00 00 00 00 ....a....... +3078 8.917584896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348817 12 -2 82696 82713 0xfffffffe 0 -2 82696 82713 fe ff ff ff 08 43 01 00 19 43 01 00 .....C...C.. +3342 8.984965563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384244 12 101 728452 0 0x00000065 0 101 728452 0 65 00 00 00 84 1d 0b 00 00 00 00 00 e........... +3344 8.985160112 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384256 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b4 11 02 00 00 00 00 00 34 c2 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b4 11 02 00 00 00 00 .....!...o3...............4.#.....?.....3...|8.. +3346 8.985507727 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348829 12 -1 728452 0 0xffffffff 0 -1 728452 0 ff ff ff ff 84 1d 0b 00 00 00 00 00 ............ +3348 8.986670732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348841 12 52 718946 0 0x00000034 0 52 718946 0 34 00 00 00 62 f8 0a 00 00 00 00 00 4...b....... +3350 8.986872673 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348853 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b4 11 02 00 00 00 00 00 00 00 97 91 65 98 4d 01 00 00 "0...Dk.................L."".([.................e." +3352 8.987240076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384357 12 -1 718946 0 0xffffffff 0 -1 718946 0 ff ff ff ff 62 f8 0a 00 00 00 00 00 ....b....... +3354 8.988028288 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384369 12 30 728453 0 0x0000001e 0 30 728453 0 1e 00 00 00 85 1d 0b 00 00 00 00 00 ............ +3356 8.988158464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384381 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1861419008 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3358 8.988445520 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348905 12 -1 728453 0 0xffffffff 0 -1 728453 0 ff ff ff ff 85 1d 0b 00 00 00 00 00 ............ +3360 8.988833666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348917 12 26 718947 0 0x0000001a 0 26 718947 0 1a 00 00 00 63 f8 0a 00 00 00 00 00 ....c....... +3362 8.989025116 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348929 26 22 2068749 0 0x00000016 1 2068749 0 196609 0 16 00 00 00 0d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3364 8.989305973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384411 12 -1 718947 0 0xffffffff 0 -1 718947 0 ff ff ff ff 63 f8 0a 00 00 00 00 00 ....c....... +3374 9.008737087 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384423 12 26 728454 0 0x0000001a 0 26 728454 0 1a 00 00 00 86 1d 0b 00 00 00 00 00 ............ +3376 9.008957863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384435 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1861287936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3378 9.009334803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348955 12 -1 728454 0 0xffffffff 0 -1 728454 0 ff ff ff ff 86 1d 0b 00 00 00 00 00 ............ +3380 9.010101795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348967 12 22 718948 0 0x00000016 0 22 718948 0 16 00 00 00 64 f8 0a 00 00 00 00 00 ....d....... +3382 9.010303497 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377348979 22 18 2068751 0 0x00000012 1 2068751 0 196609 0 12 00 00 00 0f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3384 9.010626554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384461 12 -1 718948 0 0xffffffff 0 -1 718948 0 ff ff ff ff 64 f8 0a 00 00 00 00 00 ....d....... +3388 9.044317961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384473 12 -2 82714 82696 0xfffffffe 0 -2 82714 82696 fe ff ff ff 1a 43 01 00 08 43 01 00 .....C...C.. +3394 9.112713099 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384485 12 26 728455 0 0x0000001a 0 26 728455 0 1a 00 00 00 87 1d 0b 00 00 00 00 00 ............ +3396 9.112965822 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384497 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1861156864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3398 9.113512993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349001 12 -1 728455 0 0xffffffff 0 -1 728455 0 ff ff ff ff 87 1d 0b 00 00 00 00 00 ............ +3400 9.114258289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349013 12 22 718949 0 0x00000016 0 22 718949 0 16 00 00 00 65 f8 0a 00 00 00 00 00 ....e....... +3402 9.114456415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349025 22 18 2068753 0 0x00000012 1 2068753 0 196609 0 12 00 00 00 11 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3404 9.114674568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384523 12 -1 718949 0 0xffffffff 0 -1 718949 0 ff ff ff ff 65 f8 0a 00 00 00 00 00 ....e....... +3410 9.217673779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384535 12 26 728456 0 0x0000001a 0 26 728456 0 1a 00 00 00 88 1d 0b 00 00 00 00 00 ............ +3412 9.217908621 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384547 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1861025792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3414 9.218296051 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349047 12 -1 728456 0 0xffffffff 0 -1 728456 0 ff ff ff ff 88 1d 0b 00 00 00 00 00 ............ +3416 9.218730688 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349059 12 22 718950 0 0x00000016 0 22 718950 0 16 00 00 00 66 f8 0a 00 00 00 00 00 ....f....... +3418 9.219187975 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349071 22 18 2068755 0 0x00000012 1 2068755 0 196609 0 12 00 00 00 13 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3420 9.219519854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384573 12 -1 718950 0 0xffffffff 0 -1 718950 0 ff ff ff ff 66 f8 0a 00 00 00 00 00 ....f....... +3424 9.290990591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384585 12 101 728457 0 0x00000065 0 101 728457 0 65 00 00 00 89 1d 0b 00 00 00 00 00 e........... +3426 9.291228771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384597 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b5 11 02 00 00 00 00 00 66 c3 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b5 11 02 00 00 00 00 .....!...o3...............f.#.....?.....3...|8.. +3428 9.291768789 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349093 12 -1 728457 0 0xffffffff 0 -1 728457 0 ff ff ff ff 89 1d 0b 00 00 00 00 00 ............ +3430 9.292588234 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349105 12 52 718951 0 0x00000034 0 52 718951 0 34 00 00 00 67 f8 0a 00 00 00 00 00 4...g....... +3432 9.292797089 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349117 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b5 11 02 00 00 00 00 00 00 00 9f 42 94 98 4d 01 00 00 "0...Dk.................L."".([................B.." +3434 9.293107986 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384698 12 -1 718951 0 0xffffffff 0 -1 718951 0 ff ff ff ff 67 f8 0a 00 00 00 00 00 ....g....... +3436 9.294049740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384710 12 30 728458 0 0x0000001e 0 30 728458 0 1e 00 00 00 8a 1d 0b 00 00 00 00 00 ............ +3438 9.294251204 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384722 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1860894720 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3440 9.294556379 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349169 12 -1 728458 0 0xffffffff 0 -1 728458 0 ff ff ff ff 8a 1d 0b 00 00 00 00 00 ............ +3442 9.294985771 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349181 12 26 718952 0 0x0000001a 0 26 718952 0 1a 00 00 00 68 f8 0a 00 00 00 00 00 ....h....... +3444 9.295166731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349193 26 22 2068757 0 0x00000016 1 2068757 0 196609 0 16 00 00 00 15 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3446 9.295433760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384752 12 -1 718952 0 0xffffffff 0 -1 718952 0 ff ff ff ff 68 f8 0a 00 00 00 00 00 ....h....... +3450 9.321608782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384764 12 26 728459 0 0x0000001a 0 26 728459 0 1a 00 00 00 8b 1d 0b 00 00 00 00 00 ............ +3452 9.321862459 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384776 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1860763648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3454 9.322180748 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349219 12 -1 728459 0 0xffffffff 0 -1 728459 0 ff ff ff ff 8b 1d 0b 00 00 00 00 00 ............ +3456 9.322573900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349231 12 22 718953 0 0x00000016 0 22 718953 0 16 00 00 00 69 f8 0a 00 00 00 00 00 ....i....... +3458 9.322820663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349243 22 18 2068759 0 0x00000012 1 2068759 0 196609 0 12 00 00 00 17 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3460 9.323126316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384802 12 -1 718953 0 0xffffffff 0 -1 718953 0 ff ff ff ff 69 f8 0a 00 00 00 00 00 ....i....... +3465 9.417319775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349265 12 -2 82697 82714 0xfffffffe 0 -2 82697 82714 fe ff ff ff 09 43 01 00 1a 43 01 00 .....C...C.. +3472 9.425427675 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384814 12 26 728460 0 0x0000001a 0 26 728460 0 1a 00 00 00 8c 1d 0b 00 00 00 00 00 ............ +3474 9.425674915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384826 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1860632576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3476 9.425924778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349277 12 -1 728460 0 0xffffffff 0 -1 728460 0 ff ff ff ff 8c 1d 0b 00 00 00 00 00 ............ +3478 9.426440001 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349289 12 22 718954 0 0x00000016 0 22 718954 0 16 00 00 00 6a f8 0a 00 00 00 00 00 ....j....... +3480 9.426597595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349301 22 18 2068761 0 0x00000012 1 2068761 0 196609 0 12 00 00 00 19 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3482 9.427208662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384852 12 -1 718954 0 0xffffffff 0 -1 718954 0 ff ff ff ff 6a f8 0a 00 00 00 00 00 ....j....... +3542 9.530147791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384864 12 26 728461 0 0x0000001a 0 26 728461 0 1a 00 00 00 8d 1d 0b 00 00 00 00 00 ............ +3544 9.530314684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384876 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1860501504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3546 9.530658722 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349323 12 -1 728461 0 0xffffffff 0 -1 728461 0 ff ff ff ff 8d 1d 0b 00 00 00 00 00 ............ +3548 9.531112909 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349335 12 22 718955 0 0x00000016 0 22 718955 0 16 00 00 00 6b f8 0a 00 00 00 00 00 ....k....... +3550 9.531285048 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349347 22 18 2068763 0 0x00000012 1 2068763 0 196609 0 12 00 00 00 1b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3552 9.531598806 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384902 12 -1 718955 0 0xffffffff 0 -1 718955 0 ff ff ff ff 6b f8 0a 00 00 00 00 00 ....k....... +3572 9.544872999 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384914 12 -2 82715 82697 0xfffffffe 0 -2 82715 82697 fe ff ff ff 1b 43 01 00 09 43 01 00 .....C...C.. +3574 9.595688820 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384926 12 101 728462 0 0x00000065 0 101 728462 0 65 00 00 00 8e 1d 0b 00 00 00 00 00 e........... +3576 9.595921993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333384938 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b6 11 02 00 00 00 00 00 96 c4 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b6 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +3578 9.596238852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349369 12 -1 728462 0 0xffffffff 0 -1 728462 0 ff ff ff ff 8e 1d 0b 00 00 00 00 00 ............ +3580 9.598688364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349381 12 52 718956 0 0x00000034 0 52 718956 0 34 00 00 00 6c f8 0a 00 00 00 00 00 4...l....... +3582 9.598854303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349393 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b6 11 02 00 00 00 00 00 00 00 c9 f6 c2 98 4d 01 00 00 "0...Dk.................L."".([..................." +3584 9.599110365 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385039 12 -1 718956 0 0xffffffff 0 -1 718956 0 ff ff ff ff 6c f8 0a 00 00 00 00 00 ....l....... +3586 9.600281477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385051 12 30 728463 0 0x0000001e 0 30 728463 0 1e 00 00 00 8f 1d 0b 00 00 00 00 00 ............ +3588 9.600468159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385063 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1860370432 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3590 9.600800037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349445 12 -1 728463 0 0xffffffff 0 -1 728463 0 ff ff ff ff 8f 1d 0b 00 00 00 00 00 ............ +3592 9.601219177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349457 12 26 718957 0 0x0000001a 0 26 718957 0 1a 00 00 00 6d f8 0a 00 00 00 00 00 ....m....... +3594 9.601425409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349469 26 22 2068765 0 0x00000016 1 2068765 0 196609 0 16 00 00 00 1d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3596 9.601811409 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385093 12 -1 718957 0 0xffffffff 0 -1 718957 0 ff ff ff ff 6d f8 0a 00 00 00 00 00 ....m....... +3598 9.633280993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385105 12 26 728464 0 0x0000001a 0 26 728464 0 1a 00 00 00 90 1d 0b 00 00 00 00 00 ............ +3600 9.633470774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385117 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1860239360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +3602 9.633896589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349495 12 -1 728464 0 0xffffffff 0 -1 728464 0 ff ff ff ff 90 1d 0b 00 00 00 00 00 ............ +3604 9.634264469 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349507 12 22 718958 0 0x00000016 0 22 718958 0 16 00 00 00 6e f8 0a 00 00 00 00 00 ....n....... +3606 9.634427309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349519 22 18 2068767 0 0x00000012 1 2068767 0 196609 0 12 00 00 00 1f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3608 9.634790897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385143 12 -1 718958 0 0xffffffff 0 -1 718958 0 ff ff ff ff 6e f8 0a 00 00 00 00 00 ....n....... +3615 9.737264872 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385155 12 26 728465 0 0x0000001a 0 26 728465 0 1a 00 00 00 91 1d 0b 00 00 00 00 00 ............ +3617 9.737495661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385167 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1860108288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 91 1f 00 00 00 00 00 ....T.c@.^1@......!....... +3619 9.737814426 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349541 12 -1 728465 0 0xffffffff 0 -1 728465 0 ff ff ff ff 91 1d 0b 00 00 00 00 00 ............ +3621 9.738256693 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349553 12 22 718959 0 0x00000016 0 22 718959 0 16 00 00 00 6f f8 0a 00 00 00 00 00 ....o....... +3623 9.738419771 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349565 22 18 2068769 0 0x00000012 1 2068769 0 196609 0 12 00 00 00 21 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +3625 9.738724232 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385193 12 -1 718959 0 0xffffffff 0 -1 718959 0 ff ff ff ff 6f f8 0a 00 00 00 00 00 ....o....... +3632 9.840050459 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385205 12 26 728466 0 0x0000001a 0 26 728466 0 1a 00 00 00 92 1d 0b 00 00 00 00 00 ............ +3634 9.840309381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385217 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1859977216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 91 1f 00 00 00 00 00 ....T.c@.^1@......#....... +3636 9.840716600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349587 12 -1 728466 0 0xffffffff 0 -1 728466 0 ff ff ff ff 92 1d 0b 00 00 00 00 00 ............ +3638 9.841147184 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349599 12 22 718960 0 0x00000016 0 22 718960 0 16 00 00 00 70 f8 0a 00 00 00 00 00 ....p....... +3640 9.841295004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349611 22 18 2068771 0 0x00000012 1 2068771 0 196609 0 12 00 00 00 23 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +3642 9.841587782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385243 12 -1 718960 0 0xffffffff 0 -1 718960 0 ff ff ff ff 70 f8 0a 00 00 00 00 00 ....p....... +3645 9.902580500 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385255 12 34 728467 0 0x00000022 0 34 728467 0 22 00 00 00 93 1d 0b 00 00 00 00 00 """..........." +3647 9.902765036 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385267 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297205760 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b7 11 02 00 00 00 00 00 c9 c5 23 c3 9d 01 00 00 .....!...o3.................#..... +3649 9.902909994 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385301 12 67 728468 0 0x00000043 0 67 728468 0 43 00 00 00 94 1d 0b 00 00 00 00 00 C........... +3651 9.902997971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385313 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b7 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 ae ce 98 d8 ?.....3...|8...................=B.....&......... +3652 9.903043985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349633 12 -1 728467 0 0xffffffff 0 -1 728467 0 ff ff ff ff 93 1d 0b 00 00 00 00 00 ............ +3653 9.903141975 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349645 12 -1 728468 0 0xffffffff 0 -1 728468 0 ff ff ff ff 94 1d 0b 00 00 00 00 00 ............ +3656 9.904536486 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349657 12 52 718961 0 0x00000034 0 52 718961 0 34 00 00 00 71 f8 0a 00 00 00 00 00 4...q....... +3658 9.904716015 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349669 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b7 11 02 00 00 00 00 00 00 00 74 9a f1 98 4d 01 00 00 "0...Dk.................L."".([...............t..." +3660 9.905133486 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385380 12 -1 718961 0 0xffffffff 0 -1 718961 0 ff ff ff ff 71 f8 0a 00 00 00 00 00 ....q....... +3662 9.905945301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385392 12 30 728469 0 0x0000001e 0 30 728469 0 1e 00 00 00 95 1d 0b 00 00 00 00 00 ............ +3664 9.906099319 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385404 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1859846144 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +3666 9.906376600 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349721 12 -1 728469 0 0xffffffff 0 -1 728469 0 ff ff ff ff 95 1d 0b 00 00 00 00 00 ............ +3668 9.907010794 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349733 12 26 718962 0 0x0000001a 0 26 718962 0 1a 00 00 00 72 f8 0a 00 00 00 00 00 ....r....... +3670 9.907157421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349745 26 22 2068773 0 0x00000016 1 2068773 0 196609 0 16 00 00 00 25 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +3672 9.907555342 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385434 12 -1 718962 0 0xffffffff 0 -1 718962 0 ff ff ff ff 72 f8 0a 00 00 00 00 00 ....r....... +3674 9.918031693 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349771 12 -2 82698 82715 0xfffffffe 0 -2 82698 82715 fe ff ff ff 0a 43 01 00 1b 43 01 00 .....C...C.. +3682 9.942923307 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385446 12 26 728470 0 0x0000001a 0 26 728470 0 1a 00 00 00 96 1d 0b 00 00 00 00 00 ............ +3684 9.943108082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385458 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1859715072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 91 1f 00 00 00 00 00 ....T.c@.^1@......'....... +3686 9.943461180 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349783 12 -1 728470 0 0xffffffff 0 -1 728470 0 ff ff ff ff 96 1d 0b 00 00 00 00 00 ............ +3688 9.944019079 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349795 12 22 718963 0 0x00000016 0 22 718963 0 16 00 00 00 73 f8 0a 00 00 00 00 00 ....s....... +3690 9.944185019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349807 22 18 2068775 0 0x00000012 1 2068775 0 196609 0 12 00 00 00 27 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +3692 9.944578886 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385484 12 -1 718963 0 0xffffffff 0 -1 718963 0 ff ff ff ff 73 f8 0a 00 00 00 00 00 ....s....... +3701 10.045840263 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385496 12 -2 82716 82698 0xfffffffe 0 -2 82716 82698 fe ff ff ff 1c 43 01 00 0a 43 01 00 .....C...C.. +3703 10.046154976 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385508 12 26 728471 0 0x0000001a 0 26 728471 0 1a 00 00 00 97 1d 0b 00 00 00 00 00 ............ +3705 10.046404362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385520 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1859584000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 91 1f 00 00 00 00 00 ....T.c@.^1@......)....... +3707 10.046787739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349829 12 -1 728471 0 0xffffffff 0 -1 728471 0 ff ff ff ff 97 1d 0b 00 00 00 00 00 ............ +3709 10.047324181 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349841 12 22 718964 0 0x00000016 0 22 718964 0 16 00 00 00 74 f8 0a 00 00 00 00 00 ....t....... +3711 10.047532797 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349853 22 18 2068777 0 0x00000012 1 2068777 0 196609 0 12 00 00 00 29 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +3713 10.047841311 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385546 12 -1 718964 0 0xffffffff 0 -1 718964 0 ff ff ff ff 74 f8 0a 00 00 00 00 00 ....t....... +3719 10.150988579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385558 12 26 728472 0 0x0000001a 0 26 728472 0 1a 00 00 00 98 1d 0b 00 00 00 00 00 ............ +3721 10.151226521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385570 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1859452928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 91 1f 00 00 00 00 00 ....T.c@.^1@......+....... +3723 10.151478529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349875 12 -1 728472 0 0xffffffff 0 -1 728472 0 ff ff ff ff 98 1d 0b 00 00 00 00 00 ............ +3725 10.152096033 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349887 12 22 718965 0 0x00000016 0 22 718965 0 16 00 00 00 75 f8 0a 00 00 00 00 00 ....u....... +3727 10.152278662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349899 22 18 2068779 0 0x00000012 1 2068779 0 196609 0 12 00 00 00 2b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +3729 10.152575254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385596 12 -1 718965 0 0xffffffff 0 -1 718965 0 ff ff ff ff 75 f8 0a 00 00 00 00 00 ....u....... +3733 10.207429409 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385608 12 101 728473 0 0x00000065 0 101 728473 0 65 00 00 00 99 1d 0b 00 00 00 00 00 e........... +3735 10.207611561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385620 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b8 11 02 00 00 00 00 00 fa c6 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b8 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +3737 10.207879066 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349921 12 -1 728473 0 0xffffffff 0 -1 728473 0 ff ff ff ff 99 1d 0b 00 00 00 00 00 ............ +3739 10.208747864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349933 12 52 718966 0 0x00000034 0 52 718966 0 34 00 00 00 76 f8 0a 00 00 00 00 00 4...v....... +3741 10.208904982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349945 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b8 11 02 00 00 00 00 00 00 00 97 0f 20 99 4d 01 00 00 "0...Dk.................L."".([................. ." +3743 10.209261894 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385721 12 -1 718966 0 0xffffffff 0 -1 718966 0 ff ff ff ff 76 f8 0a 00 00 00 00 00 ....v....... +3745 10.210013151 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385733 12 30 728474 0 0x0000001e 0 30 728474 0 1e 00 00 00 9a 1d 0b 00 00 00 00 00 ............ +3747 10.210154295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385745 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1859321856 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +3749 10.210373640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377349997 12 -1 728474 0 0xffffffff 0 -1 728474 0 ff ff ff ff 9a 1d 0b 00 00 00 00 00 ............ +3751 10.210846424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350009 12 26 718967 0 0x0000001a 0 26 718967 0 1a 00 00 00 77 f8 0a 00 00 00 00 00 ....w....... +3753 10.210999250 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350021 26 22 2068781 0 0x00000016 1 2068781 0 196609 0 16 00 00 00 2d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +3755 10.211235523 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385775 12 -1 718967 0 0xffffffff 0 -1 718967 0 ff ff ff ff 77 f8 0a 00 00 00 00 00 ....w....... +3758 10.253926277 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385787 12 26 728475 0 0x0000001a 0 26 728475 0 1a 00 00 00 9b 1d 0b 00 00 00 00 00 ............ +3760 10.254202843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385799 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1859190784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 91 1f 00 00 00 00 00 ....T.c@.^1@....../....... +3762 10.254535675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350047 12 -1 728475 0 0xffffffff 0 -1 728475 0 ff ff ff ff 9b 1d 0b 00 00 00 00 00 ............ +3764 10.254924536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350059 12 22 718968 0 0x00000016 0 22 718968 0 16 00 00 00 78 f8 0a 00 00 00 00 00 ....x....... +3766 10.255086184 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350071 22 18 2068783 0 0x00000012 1 2068783 0 196609 0 12 00 00 00 2f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +3768 10.255395174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385825 12 -1 718968 0 0xffffffff 0 -1 718968 0 ff ff ff ff 78 f8 0a 00 00 00 00 00 ....x....... +3775 10.356688738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385837 12 26 728476 0 0x0000001a 0 26 728476 0 1a 00 00 00 9c 1d 0b 00 00 00 00 00 ............ +3777 10.356951714 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385849 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1859059712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 91 1f 00 00 00 00 00 ....T.c@.^1@......1....... +3779 10.357254744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350093 12 -1 728476 0 0xffffffff 0 -1 728476 0 ff ff ff ff 9c 1d 0b 00 00 00 00 00 ............ +3781 10.357781172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350105 12 22 718969 0 0x00000016 0 22 718969 0 16 00 00 00 79 f8 0a 00 00 00 00 00 ....y....... +3783 10.357959986 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350117 22 18 2068785 0 0x00000012 1 2068785 0 196609 0 12 00 00 00 31 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +3785 10.358203173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385875 12 -1 718969 0 0xffffffff 0 -1 718969 0 ff ff ff ff 79 f8 0a 00 00 00 00 00 ....y....... +3787 10.417706966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350139 12 -2 82699 82716 0xfffffffe 0 -2 82699 82716 fe ff ff ff 0b 43 01 00 1c 43 01 00 .....C...C.. +3796 10.460787058 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385887 12 26 728477 0 0x0000001a 0 26 728477 0 1a 00 00 00 9d 1d 0b 00 00 00 00 00 ............ +3798 10.461142063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385899 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1858928640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 91 1f 00 00 00 00 00 ....T.c@.^1@......3....... +3800 10.461409092 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350151 12 -1 728477 0 0xffffffff 0 -1 728477 0 ff ff ff ff 9d 1d 0b 00 00 00 00 00 ............ +3802 10.461910486 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350163 12 22 718970 0 0x00000016 0 22 718970 0 16 00 00 00 7a f8 0a 00 00 00 00 00 ....z....... +3804 10.462146997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350175 22 18 2068787 0 0x00000012 1 2068787 0 196609 0 12 00 00 00 33 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +3806 10.462430716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385925 12 -1 718970 0 0xffffffff 0 -1 718970 0 ff ff ff ff 7a f8 0a 00 00 00 00 00 ....z....... +3812 10.512026072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385937 12 34 728478 0 0x00000022 0 34 728478 0 22 00 00 00 9e 1d 0b 00 00 00 00 00 """..........." +3814 10.512212753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385949 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297336832 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b9 11 02 00 00 00 00 00 2b c8 23 c3 9d 01 00 00 .....!...o3...............+.#..... +3816 10.512368202 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385983 12 67 728479 0 0x00000043 0 67 728479 0 43 00 00 00 9f 1d 0b 00 00 00 00 00 C........... +3818 10.512453556 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333385995 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b9 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 87 22 bd d8 ?.....3...|8...................=B.....&......... +3819 10.512474537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350197 12 -1 728478 0 0xffffffff 0 -1 728478 0 ff ff ff ff 9e 1d 0b 00 00 00 00 00 ............ +3822 10.512688160 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350209 12 -1 728479 0 0xffffffff 0 -1 728479 0 ff ff ff ff 9f 1d 0b 00 00 00 00 00 ............ +3824 10.513614893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350221 12 52 718971 0 0x00000034 0 52 718971 0 34 00 00 00 7b f8 0a 00 00 00 00 00 4...{....... +3826 10.513795376 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350233 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b9 11 02 00 00 00 00 00 00 00 a0 93 4e 99 4d 01 00 00 "0...Dk.................L."".([.................N." +3828 10.514064074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386062 12 -1 718971 0 0xffffffff 0 -1 718971 0 ff ff ff ff 7b f8 0a 00 00 00 00 00 ....{....... +3829 10.515470028 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386074 12 30 728480 0 0x0000001e 0 30 728480 0 1e 00 00 00 a0 1d 0b 00 00 00 00 00 ............ +3831 10.515658855 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386086 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1858797568 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +3833 10.515908480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350285 12 -1 728480 0 0xffffffff 0 -1 728480 0 ff ff ff ff a0 1d 0b 00 00 00 00 00 ............ +3835 10.516792536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350297 12 26 718972 0 0x0000001a 0 26 718972 0 1a 00 00 00 7c f8 0a 00 00 00 00 00 ....|....... +3837 10.516984463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350309 26 22 2068789 0 0x00000016 1 2068789 0 196609 0 16 00 00 00 35 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +3839 10.517279387 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386116 12 -1 718972 0 0xffffffff 0 -1 718972 0 ff ff ff ff 7c f8 0a 00 00 00 00 00 ....|....... +3844 10.547212839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386128 12 -2 82717 82699 0xfffffffe 0 -2 82717 82699 fe ff ff ff 1d 43 01 00 0b 43 01 00 .....C...C.. +3846 10.563495398 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386140 12 26 728481 0 0x0000001a 0 26 728481 0 1a 00 00 00 a1 1d 0b 00 00 00 00 00 ............ +3848 10.563665152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386152 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1858666496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 91 1f 00 00 00 00 00 ....T.c@.^1@......7....... +3850 10.563967466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350335 12 -1 728481 0 0xffffffff 0 -1 728481 0 ff ff ff ff a1 1d 0b 00 00 00 00 00 ............ +3852 10.564353466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350347 12 22 718973 0 0x00000016 0 22 718973 0 16 00 00 00 7d f8 0a 00 00 00 00 00 ....}....... +3854 10.564500809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350359 22 18 2068791 0 0x00000012 1 2068791 0 196609 0 12 00 00 00 37 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +3856 10.564759970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386178 12 -1 718973 0 0xffffffff 0 -1 718973 0 ff ff ff ff 7d f8 0a 00 00 00 00 00 ....}....... +3863 10.667743921 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386190 12 26 728482 0 0x0000001a 0 26 728482 0 1a 00 00 00 a2 1d 0b 00 00 00 00 00 ............ +3865 10.667980194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386202 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1858535424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 91 1f 00 00 00 00 00 ....T.c@.^1@......9....... +3867 10.668381929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350381 12 -1 728482 0 0xffffffff 0 -1 728482 0 ff ff ff ff a2 1d 0b 00 00 00 00 00 ............ +3869 10.668827772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350393 12 22 718974 0 0x00000016 0 22 718974 0 16 00 00 00 7e f8 0a 00 00 00 00 00 ....~....... +3871 10.669018745 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350405 22 18 2068793 0 0x00000012 1 2068793 0 196609 0 12 00 00 00 39 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +3873 10.669293404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386228 12 -1 718974 0 0xffffffff 0 -1 718974 0 ff ff ff ff 7e f8 0a 00 00 00 00 00 ....~....... +3880 10.770514727 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386240 12 26 728483 0 0x0000001a 0 26 728483 0 1a 00 00 00 a3 1d 0b 00 00 00 00 00 ............ +3882 10.770795345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386252 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1858404352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 91 1f 00 00 00 00 00 ....T.c@.^1@......;....... +3884 10.771048546 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350427 12 -1 728483 0 0xffffffff 0 -1 728483 0 ff ff ff ff a3 1d 0b 00 00 00 00 00 ............ +3886 10.771625042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350439 12 22 718975 0 0x00000016 0 22 718975 0 16 00 00 00 7f f8 0a 00 00 00 00 00 ............ +3888 10.771910191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350451 22 18 2068795 0 0x00000012 1 2068795 0 196609 0 12 00 00 00 3b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +3890 10.772116184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386278 12 -1 718975 0 0xffffffff 0 -1 718975 0 ff ff ff ff 7f f8 0a 00 00 00 00 00 ............ +3894 10.816834927 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386290 12 34 728484 0 0x00000022 0 34 728484 0 22 00 00 00 a4 1d 0b 00 00 00 00 00 """..........." +3896 10.817167044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386302 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297402368 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ba 11 02 00 00 00 00 00 5b c9 23 c3 9d 01 00 00 .....!...o3...............[.#..... +3898 10.817315102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386336 12 67 728485 0 0x00000043 0 67 728485 0 43 00 00 00 a5 1d 0b 00 00 00 00 00 C........... +3900 10.817437410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386348 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ba 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a0 98 4d cf d8 ?.....3...|8...................=B.....&......... +3901 10.817536592 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350473 12 -1 728484 0 0xffffffff 0 -1 728484 0 ff ff ff ff a4 1d 0b 00 00 00 00 00 ............ +3904 10.817840576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350485 12 -1 728485 0 0xffffffff 0 -1 728485 0 ff ff ff ff a5 1d 0b 00 00 00 00 00 ............ +3906 10.818581343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350497 12 52 718976 0 0x00000034 0 52 718976 0 34 00 00 00 80 f8 0a 00 00 00 00 00 4........... +3908 10.818850994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350509 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ba 11 02 00 00 00 00 00 00 00 a6 1c 7d 99 4d 01 00 00 "0...Dk.................L."".([.................}." +3910 10.819117308 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386415 12 -1 718976 0 0xffffffff 0 -1 718976 0 ff ff ff ff 80 f8 0a 00 00 00 00 00 ............ +3911 10.820139408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386427 12 30 728486 0 0x0000001e 0 30 728486 0 1e 00 00 00 a6 1d 0b 00 00 00 00 00 ............ +3912 10.820258856 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386439 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1858273280 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +3913 10.820489883 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350561 12 -1 728486 0 0xffffffff 0 -1 728486 0 ff ff ff ff a6 1d 0b 00 00 00 00 00 ............ +3915 10.820964098 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350573 12 26 718977 0 0x0000001a 0 26 718977 0 1a 00 00 00 81 f8 0a 00 00 00 00 00 ............ +3917 10.821115494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350585 26 22 2068797 0 0x00000016 1 2068797 0 196609 0 16 00 00 00 3d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +3919 10.821342230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386469 12 -1 718977 0 0xffffffff 0 -1 718977 0 ff ff ff ff 81 f8 0a 00 00 00 00 00 ............ +3922 10.874908209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386481 12 26 728487 0 0x0000001a 0 26 728487 0 1a 00 00 00 a7 1d 0b 00 00 00 00 00 ............ +3924 10.875065088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386493 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1858142208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 91 1f 00 00 00 00 00 ....T.c@.^1@......?....... +3926 10.875372648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350611 12 -1 728487 0 0xffffffff 0 -1 728487 0 ff ff ff ff a7 1d 0b 00 00 00 00 00 ............ +3928 10.875917673 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350623 12 22 718978 0 0x00000016 0 22 718978 0 16 00 00 00 82 f8 0a 00 00 00 00 00 ............ +3930 10.876023054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350635 22 18 2068799 0 0x00000012 1 2068799 0 196609 0 12 00 00 00 3f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +3932 10.876298666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386519 12 -1 718978 0 0xffffffff 0 -1 718978 0 ff ff ff ff 82 f8 0a 00 00 00 00 00 ............ +3937 10.919982195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350657 12 -2 82700 82717 0xfffffffe 0 -2 82700 82717 fe ff ff ff 0c 43 01 00 1d 43 01 00 .....C...C.. +3942 10.978120327 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386531 12 26 728488 0 0x0000001a 0 26 728488 0 1a 00 00 00 a8 1d 0b 00 00 00 00 00 ............ +3944 10.978462934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386543 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1858011136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 91 1f 00 00 00 00 00 ....T.c@.^1@......A....... +3946 10.978858948 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350669 12 -1 728488 0 0xffffffff 0 -1 728488 0 ff ff ff ff a8 1d 0b 00 00 00 00 00 ............ +3948 10.979604721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350681 12 22 718979 0 0x00000016 0 22 718979 0 16 00 00 00 83 f8 0a 00 00 00 00 00 ............ +3950 10.979771137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350693 22 18 2068801 0 0x00000012 1 2068801 0 196609 0 12 00 00 00 41 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +3952 10.980162382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386569 12 -1 718979 0 0xffffffff 0 -1 718979 0 ff ff ff ff 83 f8 0a 00 00 00 00 00 ............ +3960 11.047652483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386581 12 -2 82718 82700 0xfffffffe 0 -2 82718 82700 fe ff ff ff 1e 43 01 00 0c 43 01 00 .....C...C.. +3962 11.081741095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386593 12 26 728489 0 0x0000001a 0 26 728489 0 1a 00 00 00 a9 1d 0b 00 00 00 00 00 ............ +3964 11.081914663 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386605 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1857880064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 91 1f 00 00 00 00 00 ....T.c@.^1@......C....... +3966 11.082245588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350715 12 -1 728489 0 0xffffffff 0 -1 728489 0 ff ff ff ff a9 1d 0b 00 00 00 00 00 ............ +3968 11.082665920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350727 12 22 718980 0 0x00000016 0 22 718980 0 16 00 00 00 84 f8 0a 00 00 00 00 00 ............ +3970 11.082839251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350739 22 18 2068803 0 0x00000012 1 2068803 0 196609 0 12 00 00 00 43 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +3972 11.083188057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386631 12 -1 718980 0 0xffffffff 0 -1 718980 0 ff ff ff ff 84 f8 0a 00 00 00 00 00 ............ +3974 11.121049881 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386643 12 34 728490 0 0x00000022 0 34 728490 0 22 00 00 00 aa 1d 0b 00 00 00 00 00 """..........." +3976 11.121262550 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386655 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297467904 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bb 11 02 00 00 00 00 00 8c ca 23 c3 9d 01 00 00 .....!...o3.................#..... +3978 11.121400356 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386689 12 67 728491 0 0x00000043 0 67 728491 0 43 00 00 00 ab 1d 0b 00 00 00 00 00 C........... +3980 11.121484756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386701 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bb 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 dd 63 e1 d8 ?.....3...|8...................=B.....&......... +3982 11.121587992 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350761 12 -1 728490 0 0xffffffff 0 -1 728490 0 ff ff ff ff aa 1d 0b 00 00 00 00 00 ............ +3984 11.121794701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350773 12 -1 728491 0 0xffffffff 0 -1 728491 0 ff ff ff ff ab 1d 0b 00 00 00 00 00 ............ +3986 11.123008251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350785 12 52 718981 0 0x00000034 0 52 718981 0 34 00 00 00 85 f8 0a 00 00 00 00 00 4........... +3988 11.123239279 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350797 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bb 11 02 00 00 00 00 00 00 00 8a 8e ab 99 4d 01 00 00 "0...Dk.................L."".([..................." +3990 11.123508692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386768 12 -1 718981 0 0xffffffff 0 -1 718981 0 ff ff ff ff 85 f8 0a 00 00 00 00 00 ............ +3992 11.124266148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386780 12 30 728492 0 0x0000001e 0 30 728492 0 1e 00 00 00 ac 1d 0b 00 00 00 00 00 ............ +3994 11.124469042 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386792 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1857748992 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......E........... +3996 11.124730587 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350849 12 -1 728492 0 0xffffffff 0 -1 728492 0 ff ff ff ff ac 1d 0b 00 00 00 00 00 ............ +3998 11.125227928 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350861 12 26 718982 0 0x0000001a 0 26 718982 0 1a 00 00 00 86 f8 0a 00 00 00 00 00 ............ +4000 11.125382662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350873 26 22 2068805 0 0x00000016 1 2068805 0 196609 0 16 00 00 00 45 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E..................... +4002 11.125629425 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386822 12 -1 718982 0 0xffffffff 0 -1 718982 0 ff ff ff ff 86 f8 0a 00 00 00 00 00 ............ +4008 11.184822559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386834 12 26 728493 0 0x0000001a 0 26 728493 0 1a 00 00 00 ad 1d 0b 00 00 00 00 00 ............ +4010 11.185005426 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386846 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1857617920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 91 1f 00 00 00 00 00 ....T.c@.^1@......G....... +4012 11.185391188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350899 12 -1 728493 0 0xffffffff 0 -1 728493 0 ff ff ff ff ad 1d 0b 00 00 00 00 00 ............ +4014 11.186528683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350911 12 22 718983 0 0x00000016 0 22 718983 0 16 00 00 00 87 f8 0a 00 00 00 00 00 ............ +4016 11.186690092 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350923 22 18 2068807 0 0x00000012 1 2068807 0 196609 0 12 00 00 00 47 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +4018 11.186947823 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386872 12 -1 718983 0 0xffffffff 0 -1 718983 0 ff ff ff ff 87 f8 0a 00 00 00 00 00 ............ +4022 11.289911270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386884 12 26 728494 0 0x0000001a 0 26 728494 0 1a 00 00 00 ae 1d 0b 00 00 00 00 00 ............ +4024 11.290084839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386896 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1857486848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 91 1f 00 00 00 00 00 ....T.c@.^1@......I....... +4026 11.290409088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350945 12 -1 728494 0 0xffffffff 0 -1 728494 0 ff ff ff ff ae 1d 0b 00 00 00 00 00 ............ +4028 11.290943146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350957 12 22 718984 0 0x00000016 0 22 718984 0 16 00 00 00 88 f8 0a 00 00 00 00 00 ............ +4030 11.291172743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350969 22 18 2068809 0 0x00000012 1 2068809 0 196609 0 12 00 00 00 49 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +4032 11.291557789 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386922 12 -1 718984 0 0xffffffff 0 -1 718984 0 ff ff ff ff 88 f8 0a 00 00 00 00 00 ............ +4036 11.393971920 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386934 12 26 728495 0 0x0000001a 0 26 728495 0 1a 00 00 00 af 1d 0b 00 00 00 00 00 ............ +4038 11.394227028 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386946 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1857355776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 91 1f 00 00 00 00 00 ....T.c@.^1@......K....... +4040 11.394591093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377350991 12 -1 728495 0 0xffffffff 0 -1 728495 0 ff ff ff ff af 1d 0b 00 00 00 00 00 ............ +4042 11.395023584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351003 12 22 718985 0 0x00000016 0 22 718985 0 16 00 00 00 89 f8 0a 00 00 00 00 00 ............ +4044 11.395224571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351015 22 18 2068811 0 0x00000012 1 2068811 0 196609 0 12 00 00 00 4b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +4046 11.395696878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386972 12 -1 718985 0 0xffffffff 0 -1 718985 0 ff ff ff ff 89 f8 0a 00 00 00 00 00 ............ +4052 11.420807362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351037 12 -2 82701 82718 0xfffffffe 0 -2 82701 82718 fe ff ff ff 0d 43 01 00 1e 43 01 00 .....C...C.. +4056 11.425182343 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386984 12 34 728496 0 0x00000022 0 34 728496 0 22 00 00 00 b0 1d 0b 00 00 00 00 00 """..........." +4058 11.425371885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333386996 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297533440 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bc 11 02 00 00 00 00 00 bc cb 23 c3 9d 01 00 00 .....!...o3.................#..... +4060 11.425516844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387030 12 67 728497 0 0x00000043 0 67 728497 0 43 00 00 00 b1 1d 0b 00 00 00 00 00 C........... +4062 11.425603867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387042 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bc 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 cc 82 f3 d8 ?.....3...|8...................=B.....&......... +4063 11.425649405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351049 12 -1 728496 0 0xffffffff 0 -1 728496 0 ff ff ff ff b0 1d 0b 00 00 00 00 00 ............ +4066 11.425841808 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351061 12 -1 728497 0 0xffffffff 0 -1 728497 0 ff ff ff ff b1 1d 0b 00 00 00 00 00 ............ +4068 11.426698923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351073 12 52 718986 0 0x00000034 0 52 718986 0 34 00 00 00 8a f8 0a 00 00 00 00 00 4........... +4070 11.426852226 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351085 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bc 11 02 00 00 00 00 00 00 00 1b e7 d9 99 4d 01 00 00 "0...Dk.................L."".([..................." +4072 11.427164793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387109 12 -1 718986 0 0xffffffff 0 -1 718986 0 ff ff ff ff 8a f8 0a 00 00 00 00 00 ............ +4073 11.428551435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387121 12 30 728498 0 0x0000001e 0 30 728498 0 1e 00 00 00 b2 1d 0b 00 00 00 00 00 ............ +4075 11.428776264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387133 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1857224704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......M........... +4077 11.429233074 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351137 12 -1 728498 0 0xffffffff 0 -1 728498 0 ff ff ff ff b2 1d 0b 00 00 00 00 00 ............ +4079 11.429682732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351149 12 26 718987 0 0x0000001a 0 26 718987 0 1a 00 00 00 8b f8 0a 00 00 00 00 00 ............ +4081 11.429827929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351161 26 22 2068813 0 0x00000016 1 2068813 0 196609 0 16 00 00 00 4d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M..................... +4083 11.430170536 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387163 12 -1 718987 0 0xffffffff 0 -1 718987 0 ff ff ff ff 8b f8 0a 00 00 00 00 00 ............ +4085 11.496987581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387175 12 26 728499 0 0x0000001a 0 26 728499 0 1a 00 00 00 b3 1d 0b 00 00 00 00 00 ............ +4087 11.497278929 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387187 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1857093632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 91 1f 00 00 00 00 00 ....T.c@.^1@......O....... +4089 11.497650623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351187 12 -1 728499 0 0xffffffff 0 -1 728499 0 ff ff ff ff b3 1d 0b 00 00 00 00 00 ............ +4093 11.498090982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351199 12 22 718988 0 0x00000016 0 22 718988 0 16 00 00 00 8c f8 0a 00 00 00 00 00 ............ +4095 11.498278856 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351211 22 18 2068815 0 0x00000012 1 2068815 0 196609 0 12 00 00 00 4f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +4097 11.498576403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387213 12 -1 718988 0 0xffffffff 0 -1 718988 0 ff ff ff ff 8c f8 0a 00 00 00 00 00 ............ +4103 11.549474239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387225 12 -2 82719 82701 0xfffffffe 0 -2 82719 82701 fe ff ff ff 1f 43 01 00 0d 43 01 00 .....C...C.. +4105 11.600986004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387237 12 26 728500 0 0x0000001a 0 26 728500 0 1a 00 00 00 b4 1d 0b 00 00 00 00 00 ............ +4107 11.601280689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387249 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1856962560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 91 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +4109 11.601630449 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351233 12 -1 728500 0 0xffffffff 0 -1 728500 0 ff ff ff ff b4 1d 0b 00 00 00 00 00 ............ +4111 11.602077007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351245 12 22 718989 0 0x00000016 0 22 718989 0 16 00 00 00 8d f8 0a 00 00 00 00 00 ............ +4113 11.602318525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351257 22 18 2068817 0 0x00000012 1 2068817 0 196609 0 12 00 00 00 51 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +4115 11.602604389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387275 12 -1 718989 0 0xffffffff 0 -1 718989 0 ff ff ff ff 8d f8 0a 00 00 00 00 00 ............ +4121 11.703824759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387287 12 26 728501 0 0x0000001a 0 26 728501 0 1a 00 00 00 b5 1d 0b 00 00 00 00 00 ............ +4123 11.704012394 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387299 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1856831488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 91 1f 00 00 00 00 00 ....T.c@.^1@......S....... +4125 11.704341412 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351279 12 -1 728501 0 0xffffffff 0 -1 728501 0 ff ff ff ff b5 1d 0b 00 00 00 00 00 ............ +4127 11.704823494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351291 12 22 718990 0 0x00000016 0 22 718990 0 16 00 00 00 8e f8 0a 00 00 00 00 00 ............ +4129 11.704980373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351303 22 18 2068819 0 0x00000012 1 2068819 0 196609 0 12 00 00 00 53 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +4131 11.705293417 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387325 12 -1 718990 0 0xffffffff 0 -1 718990 0 ff ff ff ff 8e f8 0a 00 00 00 00 00 ............ +4133 11.731076002 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387337 12 34 728502 0 0x00000022 0 34 728502 0 22 00 00 00 b6 1d 0b 00 00 00 00 00 """..........." +4135 11.731298685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387349 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297598976 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bd 11 02 00 00 00 00 00 ee cc 23 c3 9d 01 00 00 .....!...o3.................#..... +4137 11.731434107 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387383 12 67 728503 0 0x00000043 0 67 728503 0 43 00 00 00 b7 1d 0b 00 00 00 00 00 C........... +4139 11.731522322 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387395 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bd 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c bf bf 05 d9 ?.....3...|8...................=B.....&......... +4141 11.731688023 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351325 12 -1 728502 0 0xffffffff 0 -1 728502 0 ff ff ff ff b6 1d 0b 00 00 00 00 00 ............ +4143 11.731875658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351337 12 -1 728503 0 0xffffffff 0 -1 728503 0 ff ff ff ff b7 1d 0b 00 00 00 00 00 ............ +4145 11.733888149 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351349 12 52 718991 0 0x00000034 0 52 718991 0 34 00 00 00 8f f8 0a 00 00 00 00 00 4........... +4147 11.734058857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351361 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bd 11 02 00 00 00 00 00 00 00 36 c6 08 9a 4d 01 00 00 "0...Dk.................L."".([...............6..." +4149 11.734416246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387462 12 -1 718991 0 0xffffffff 0 -1 718991 0 ff ff ff ff 8f f8 0a 00 00 00 00 00 ............ +4151 11.735271692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387474 12 30 728504 0 0x0000001e 0 30 728504 0 1e 00 00 00 b8 1d 0b 00 00 00 00 00 ............ +4153 11.735410690 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387486 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1856700416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......U........... +4155 11.735889673 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351413 12 -1 728504 0 0xffffffff 0 -1 728504 0 ff ff ff ff b8 1d 0b 00 00 00 00 00 ............ +4157 11.736134529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351425 12 26 718992 0 0x0000001a 0 26 718992 0 1a 00 00 00 90 f8 0a 00 00 00 00 00 ............ +4159 11.736311913 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351437 26 22 2068821 0 0x00000016 1 2068821 0 196609 0 16 00 00 00 55 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U..................... +4161 11.736489296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387516 12 -1 718992 0 0xffffffff 0 -1 718992 0 ff ff ff ff 90 f8 0a 00 00 00 00 00 ............ +4165 11.806945324 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387528 12 26 728505 0 0x0000001a 0 26 728505 0 1a 00 00 00 b9 1d 0b 00 00 00 00 00 ............ +4167 11.807224989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387540 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1856569344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 91 1f 00 00 00 00 00 ....T.c@.^1@......W....... +4169 11.807673931 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351463 12 -1 728505 0 0xffffffff 0 -1 728505 0 ff ff ff ff b9 1d 0b 00 00 00 00 00 ............ +4171 11.808019400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351475 12 22 718993 0 0x00000016 0 22 718993 0 16 00 00 00 91 f8 0a 00 00 00 00 00 ............ +4173 11.808213234 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351487 22 18 2068823 0 0x00000012 1 2068823 0 196609 0 12 00 00 00 57 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +4175 11.808441877 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387566 12 -1 718993 0 0xffffffff 0 -1 718993 0 ff ff ff ff 91 f8 0a 00 00 00 00 00 ............ +4179 11.910825729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387578 12 26 728506 0 0x0000001a 0 26 728506 0 1a 00 00 00 ba 1d 0b 00 00 00 00 00 ............ +4181 11.911358833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387590 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1856438272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 91 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +4183 11.911707640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351509 12 -1 728506 0 0xffffffff 0 -1 728506 0 ff ff ff ff ba 1d 0b 00 00 00 00 00 ............ +4185 11.912163734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351521 12 22 718994 0 0x00000016 0 22 718994 0 16 00 00 00 92 f8 0a 00 00 00 00 00 ............ +4187 11.912299156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351533 22 18 2068825 0 0x00000012 1 2068825 0 196609 0 12 00 00 00 59 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +4189 11.912615299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387616 12 -1 718994 0 0xffffffff 0 -1 718994 0 ff ff ff ff 92 f8 0a 00 00 00 00 00 ............ +4195 11.921078444 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351555 12 -2 82702 82719 0xfffffffe 0 -2 82702 82719 fe ff ff ff 0e 43 01 00 1f 43 01 00 .....C...C.. +4203 12.013929367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387628 12 26 728507 0 0x0000001a 0 26 728507 0 1a 00 00 00 bb 1d 0b 00 00 00 00 00 ............ +4205 12.014107943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387640 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1856307200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 91 1f 00 00 00 00 00 ....T.c@.^1@......[....... +4207 12.015003681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351567 12 -1 728507 0 0xffffffff 0 -1 728507 0 ff ff ff ff bb 1d 0b 00 00 00 00 00 ............ +4209 12.015590668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351579 12 22 718995 0 0x00000016 0 22 718995 0 16 00 00 00 93 f8 0a 00 00 00 00 00 ............ +4211 12.015781641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351591 22 18 2068827 0 0x00000012 1 2068827 0 196609 0 12 00 00 00 5b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +4213 12.016115189 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387666 12 -1 718995 0 0xffffffff 0 -1 718995 0 ff ff ff ff 93 f8 0a 00 00 00 00 00 ............ +4215 12.036541700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387678 12 101 728508 0 0x00000065 0 101 728508 0 65 00 00 00 bc 1d 0b 00 00 00 00 00 e........... +4217 12.036731005 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387690 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 be 11 02 00 00 00 00 00 20 ce 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 be 11 02 00 00 00 00 .....!...o3............... .#.....?.....3...|8.. +4219 12.037062168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351613 12 -1 728508 0 0xffffffff 0 -1 728508 0 ff ff ff ff bc 1d 0b 00 00 00 00 00 ............ +4221 12.038000584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351625 12 52 718996 0 0x00000034 0 52 718996 0 34 00 00 00 94 f8 0a 00 00 00 00 00 4........... +4223 12.038188457 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351637 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 be 11 02 00 00 00 00 00 00 00 00 2e 37 9a 4d 01 00 00 "0...Dk.................L."".([.................7." +4225 12.038554192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387791 12 -1 718996 0 0xffffffff 0 -1 718996 0 ff ff ff ff 94 f8 0a 00 00 00 00 00 ............ +4227 12.039738178 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387803 12 30 728509 0 0x0000001e 0 30 728509 0 1e 00 00 00 bd 1d 0b 00 00 00 00 00 ............ +4229 12.039883614 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387815 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1856176128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +4231 12.040203094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351689 12 -1 728509 0 0xffffffff 0 -1 728509 0 ff ff ff ff bd 1d 0b 00 00 00 00 00 ............ +4233 12.040759563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351701 12 26 718997 0 0x0000001a 0 26 718997 0 1a 00 00 00 95 f8 0a 00 00 00 00 00 ............ +4235 12.040917397 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351713 26 22 2068829 0 0x00000016 1 2068829 0 196609 0 16 00 00 00 5d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +4237 12.041208029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387845 12 -1 718997 0 0xffffffff 0 -1 718997 0 ff ff ff ff 95 f8 0a 00 00 00 00 00 ............ +4241 12.051422596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387857 12 -2 82720 82702 0xfffffffe 0 -2 82720 82702 fe ff ff ff 20 43 01 00 0e 43 01 00 .... C...C.. +4273 12.117761612 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387869 12 26 728510 0 0x0000001a 0 26 728510 0 1a 00 00 00 be 1d 0b 00 00 00 00 00 ............ +4275 12.117937803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387881 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1856045056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 91 1f 00 00 00 00 00 ....T.c@.^1@......_....... +4277 12.118406534 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351739 12 -1 728510 0 0xffffffff 0 -1 728510 0 ff ff ff ff be 1d 0b 00 00 00 00 00 ............ +4279 12.118827581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351751 12 22 718998 0 0x00000016 0 22 718998 0 16 00 00 00 96 f8 0a 00 00 00 00 00 ............ +4281 12.119025946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351763 22 18 2068831 0 0x00000012 1 2068831 0 196609 0 12 00 00 00 5f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +4283 12.119340897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387907 12 -1 718998 0 0xffffffff 0 -1 718998 0 ff ff ff ff 96 f8 0a 00 00 00 00 00 ............ +4319 12.220786572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387919 12 26 728511 0 0x0000001a 0 26 728511 0 1a 00 00 00 bf 1d 0b 00 00 00 00 00 ............ +4321 12.221070766 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387931 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1855913984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 91 1f 00 00 00 00 00 ....T.c@.^1@......a....... +4323 12.221453667 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351785 12 -1 728511 0 0xffffffff 0 -1 728511 0 ff ff ff ff bf 1d 0b 00 00 00 00 00 ............ +4325 12.221816301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351797 12 22 718999 0 0x00000016 0 22 718999 0 16 00 00 00 97 f8 0a 00 00 00 00 00 ............ +4327 12.221977949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351809 22 18 2068833 0 0x00000012 1 2068833 0 196609 0 12 00 00 00 61 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +4329 12.222345591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387957 12 -1 718999 0 0xffffffff 0 -1 718999 0 ff ff ff ff 97 f8 0a 00 00 00 00 00 ............ +4336 12.323608637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387969 12 26 728512 0 0x0000001a 0 26 728512 0 1a 00 00 00 c0 1d 0b 00 00 00 00 00 ............ +4338 12.323799133 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333387981 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1855782912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 91 1f 00 00 00 00 00 ....T.c@.^1@......c....... +4340 12.324206591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351831 12 -1 728512 0 0xffffffff 0 -1 728512 0 ff ff ff ff c0 1d 0b 00 00 00 00 00 ............ +4342 12.324584484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351843 12 22 719000 0 0x00000016 0 22 719000 0 16 00 00 00 98 f8 0a 00 00 00 00 00 ............ +4344 12.324751377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351855 22 18 2068835 0 0x00000012 1 2068835 0 196609 0 12 00 00 00 63 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +4346 12.325161457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388007 12 -1 719000 0 0xffffffff 0 -1 719000 0 ff ff ff ff 98 f8 0a 00 00 00 00 00 ............ +4348 12.341085196 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388019 12 34 728513 0 0x00000022 0 34 728513 0 22 00 00 00 c1 1d 0b 00 00 00 00 00 """..........." +4350 12.341363668 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388031 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297730048 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bf 11 02 00 00 00 00 00 50 cf 23 c3 9d 01 00 00 .....!...o3...............P.#..... +4352 12.341534376 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388065 12 67 728514 0 0x00000043 0 67 728514 0 43 00 00 00 c2 1d 0b 00 00 00 00 00 C........... +4354 12.341644764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388077 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bf 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 c0 27 2a d9 ?.....3...|8...................=B.....&......... +4355 12.341693878 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351877 12 -1 728513 0 0xffffffff 0 -1 728513 0 ff ff ff ff c1 1d 0b 00 00 00 00 00 ............ +4358 12.341958284 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351889 12 -1 728514 0 0xffffffff 0 -1 728514 0 ff ff ff ff c2 1d 0b 00 00 00 00 00 ............ +4360 12.343120813 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351901 12 52 719001 0 0x00000034 0 52 719001 0 34 00 00 00 99 f8 0a 00 00 00 00 00 4........... +4362 12.343279362 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351913 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bf 11 02 00 00 00 00 00 00 00 c6 bd 65 9a 4d 01 00 00 "0...Dk.................L."".([.................e." +4364 12.343726397 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388144 12 -1 719001 0 0xffffffff 0 -1 719001 0 ff ff ff ff 99 f8 0a 00 00 00 00 00 ............ +4365 12.344497442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388156 12 30 728515 0 0x0000001e 0 30 728515 0 1e 00 00 00 c3 1d 0b 00 00 00 00 00 ............ +4367 12.344677210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388168 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1855651840 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +4369 12.345138788 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351965 12 -1 728515 0 0xffffffff 0 -1 728515 0 ff ff ff ff c3 1d 0b 00 00 00 00 00 ............ +4371 12.345454931 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351977 12 26 719002 0 0x0000001a 0 26 719002 0 1a 00 00 00 9a f8 0a 00 00 00 00 00 ............ +4373 12.345627308 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377351989 26 22 2068837 0 0x00000016 1 2068837 0 196609 0 16 00 00 00 65 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +4375 12.345979452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388198 12 -1 719002 0 0xffffffff 0 -1 719002 0 ff ff ff ff 9a f8 0a 00 00 00 00 00 ............ +4382 12.421951294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352015 12 -2 82703 82720 0xfffffffe 0 -2 82703 82720 fe ff ff ff 0f 43 01 00 20 43 01 00 .....C.. C.. +4386 12.426687717 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388210 12 26 728516 0 0x0000001a 0 26 728516 0 1a 00 00 00 c4 1d 0b 00 00 00 00 00 ............ +4388 12.426927090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388222 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1855520768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 91 1f 00 00 00 00 00 ....T.c@.^1@......g....... +4390 12.427213669 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352027 12 -1 728516 0 0xffffffff 0 -1 728516 0 ff ff ff ff c4 1d 0b 00 00 00 00 00 ............ +4392 12.427805901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352039 12 22 719003 0 0x00000016 0 22 719003 0 16 00 00 00 9b f8 0a 00 00 00 00 00 ............ +4394 12.428005934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352051 22 18 2068839 0 0x00000012 1 2068839 0 196609 0 12 00 00 00 67 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +4396 12.428255796 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388248 12 -1 719003 0 0xffffffff 0 -1 719003 0 ff ff ff ff 9b f8 0a 00 00 00 00 00 ............ +4403 12.529604435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388260 12 26 728517 0 0x0000001a 0 26 728517 0 1a 00 00 00 c5 1d 0b 00 00 00 00 00 ............ +4405 12.529788971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388272 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1855389696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 91 1f 00 00 00 00 00 ....T.c@.^1@......i....... +4407 12.530125380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352073 12 -1 728517 0 0xffffffff 0 -1 728517 0 ff ff ff ff c5 1d 0b 00 00 00 00 00 ............ +4409 12.530770779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352085 12 22 719004 0 0x00000016 0 22 719004 0 16 00 00 00 9c f8 0a 00 00 00 00 00 ............ +4411 12.530984163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352097 22 18 2068841 0 0x00000012 1 2068841 0 196609 0 12 00 00 00 69 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +4413 12.531227827 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388298 12 -1 719004 0 0xffffffff 0 -1 719004 0 ff ff ff ff 9c f8 0a 00 00 00 00 00 ............ +4417 12.552103758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388310 12 -2 82721 82703 0xfffffffe 0 -2 82721 82703 fe ff ff ff 21 43 01 00 0f 43 01 00 ....!C...C.. +4420 12.632520437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388322 12 26 728518 0 0x0000001a 0 26 728518 0 1a 00 00 00 c6 1d 0b 00 00 00 00 00 ............ +4422 12.632754087 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388334 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1855258624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 91 1f 00 00 00 00 00 ....T.c@.^1@......k....... +4424 12.633120775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352119 12 -1 728518 0 0xffffffff 0 -1 728518 0 ff ff ff ff c6 1d 0b 00 00 00 00 00 ............ +4426 12.633737803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352131 12 22 719005 0 0x00000016 0 22 719005 0 16 00 00 00 9d f8 0a 00 00 00 00 00 ............ +4428 12.633905172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352143 22 18 2068843 0 0x00000012 1 2068843 0 196609 0 12 00 00 00 6b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +4430 12.634210110 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388360 12 -1 719005 0 0xffffffff 0 -1 719005 0 ff ff ff ff 9d f8 0a 00 00 00 00 00 ............ +4432 12.645892620 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388372 12 34 728519 0 0x00000022 0 34 728519 0 22 00 00 00 c7 1d 0b 00 00 00 00 00 """..........." +4434 12.646097422 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388384 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 297795584 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c0 11 02 00 00 00 00 00 81 d0 23 c3 9d 01 00 00 .....!...o3.................#..... +4436 12.646242619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388418 12 67 728520 0 0x00000043 0 67 728520 0 43 00 00 00 c8 1d 0b 00 00 00 00 00 C........... +4438 12.646329403 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352165 12 -1 728519 0 0xffffffff 0 -1 728519 0 ff ff ff ff c7 1d 0b 00 00 00 00 00 ............ +4439 12.646332264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388430 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c0 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 34 42 52 3c d9 ?.....3...|8...................=B.....&......... +4442 12.646511793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352177 12 -1 728520 0 0xffffffff 0 -1 728520 0 ff ff ff ff c8 1d 0b 00 00 00 00 00 ............ +4444 12.647430897 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352189 12 52 719006 0 0x00000034 0 52 719006 0 34 00 00 00 9e f8 0a 00 00 00 00 00 4........... +4446 12.647594690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352201 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c0 11 02 00 00 00 00 00 00 00 4b 2e 94 9a 4d 01 00 00 "0...Dk.................L."".([...............K..." +4448 12.647855997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388497 12 -1 719006 0 0xffffffff 0 -1 719006 0 ff ff ff ff 9e f8 0a 00 00 00 00 00 ............ +4450 12.648884296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388509 12 30 728521 0 0x0000001e 0 30 728521 0 1e 00 00 00 c9 1d 0b 00 00 00 00 00 ............ +4452 12.649084568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388521 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1855127552 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......m........... +4454 12.649353504 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352253 12 -1 728521 0 0xffffffff 0 -1 728521 0 ff ff ff ff c9 1d 0b 00 00 00 00 00 ............ +4456 12.649744272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352265 12 26 719007 0 0x0000001a 0 26 719007 0 1a 00 00 00 9f f8 0a 00 00 00 00 00 ............ +4458 12.649936438 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352277 26 22 2068845 0 0x00000016 1 2068845 0 196609 0 16 00 00 00 6d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....m..................... +4460 12.650243998 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388551 12 -1 719007 0 0xffffffff 0 -1 719007 0 ff ff ff ff 9f f8 0a 00 00 00 00 00 ............ +4467 12.735935211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388563 12 26 728522 0 0x0000001a 0 26 728522 0 1a 00 00 00 ca 1d 0b 00 00 00 00 00 ............ +4469 12.736079454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388575 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1854996480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 91 1f 00 00 00 00 00 ....T.c@.^1@......o....... +4471 12.736416578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352303 12 -1 728522 0 0xffffffff 0 -1 728522 0 ff ff ff ff ca 1d 0b 00 00 00 00 00 ............ +4473 12.737104893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352315 12 22 719008 0 0x00000016 0 22 719008 0 16 00 00 00 a0 f8 0a 00 00 00 00 00 ............ +4475 12.737311363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352327 22 18 2068847 0 0x00000012 1 2068847 0 196609 0 12 00 00 00 6f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +4477 12.737703085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388601 12 -1 719008 0 0xffffffff 0 -1 719008 0 ff ff ff ff a0 f8 0a 00 00 00 00 00 ............ +4484 12.840462685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388613 12 26 728523 0 0x0000001a 0 26 728523 0 1a 00 00 00 cb 1d 0b 00 00 00 00 00 ............ +4486 12.840748787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388625 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1854865408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 91 1f 00 00 00 00 00 ....T.c@.^1@......q....... +4488 12.841071606 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352349 12 -1 728523 0 0xffffffff 0 -1 728523 0 ff ff ff ff cb 1d 0b 00 00 00 00 00 ............ +4490 12.841603279 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352361 12 22 719009 0 0x00000016 0 22 719009 0 16 00 00 00 a1 f8 0a 00 00 00 00 00 ............ +4492 12.841765404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352373 22 18 2068849 0 0x00000012 1 2068849 0 196609 0 12 00 00 00 71 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +4494 12.842031479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388651 12 -1 719009 0 0xffffffff 0 -1 719009 0 ff ff ff ff a1 f8 0a 00 00 00 00 00 ............ +4500 12.922405005 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352395 12 -2 82704 82721 0xfffffffe 0 -2 82704 82721 fe ff ff ff 10 43 01 00 21 43 01 00 .....C..!C.. +4505 12.943651676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388663 12 26 728524 0 0x0000001a 0 26 728524 0 1a 00 00 00 cc 1d 0b 00 00 00 00 00 ............ +4507 12.943889141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388675 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1854734336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 91 1f 00 00 00 00 00 ....T.c@.^1@......s....... +4509 12.944246531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352407 12 -1 728524 0 0xffffffff 0 -1 728524 0 ff ff ff ff cc 1d 0b 00 00 00 00 00 ............ +4511 12.945096254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352419 12 22 719010 0 0x00000016 0 22 719010 0 16 00 00 00 a2 f8 0a 00 00 00 00 00 ............ +4513 12.945252895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352431 22 18 2068851 0 0x00000012 1 2068851 0 196609 0 12 00 00 00 73 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +4515 12.945465088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388701 12 -1 719010 0 0xffffffff 0 -1 719010 0 ff ff ff ff a2 f8 0a 00 00 00 00 00 ............ +4517 12.949839354 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388713 12 101 728525 0 0x00000065 0 101 728525 0 65 00 00 00 cd 1d 0b 00 00 00 00 00 e........... +4519 12.950411081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388725 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c1 11 02 00 00 00 00 00 b1 d1 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c1 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +4521 12.950690985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352453 12 -1 728525 0 0xffffffff 0 -1 728525 0 ff ff ff ff cd 1d 0b 00 00 00 00 00 ............ +4523 12.951758146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352465 12 52 719011 0 0x00000034 0 52 719011 0 34 00 00 00 a3 f8 0a 00 00 00 00 00 4........... +4525 12.951961994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352477 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c1 11 02 00 00 00 00 00 00 00 8e 9b c2 9a 4d 01 00 00 "0...Dk.................L."".([..................." +4527 12.952243090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388826 12 -1 719011 0 0xffffffff 0 -1 719011 0 ff ff ff ff a3 f8 0a 00 00 00 00 00 ............ +4529 12.953022480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388838 12 30 728526 0 0x0000001e 0 30 728526 0 1e 00 00 00 ce 1d 0b 00 00 00 00 00 ............ +4531 12.953250170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388850 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1854603264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 75 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......u........... +4533 12.953507900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352529 12 -1 728526 0 0xffffffff 0 -1 728526 0 ff ff ff ff ce 1d 0b 00 00 00 00 00 ............ +4535 12.954097033 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352541 12 26 719012 0 0x0000001a 0 26 719012 0 1a 00 00 00 a4 f8 0a 00 00 00 00 00 ............ +4537 12.954288006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352553 26 22 2068853 0 0x00000016 1 2068853 0 196609 0 16 00 00 00 75 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....u..................... +4539 12.954570293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388880 12 -1 719012 0 0xffffffff 0 -1 719012 0 ff ff ff ff a4 f8 0a 00 00 00 00 00 ............ +4545 13.046787977 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388892 12 26 728527 0 0x0000001a 0 26 728527 0 1a 00 00 00 cf 1d 0b 00 00 00 00 00 ............ +4547 13.047035694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388904 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1854472192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 91 1f 00 00 00 00 00 ....T.c@.^1@......w....... +4549 13.047506809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352579 12 -1 728527 0 0xffffffff 0 -1 728527 0 ff ff ff ff cf 1d 0b 00 00 00 00 00 ............ +4552 13.048264503 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352591 12 22 719013 0 0x00000016 0 22 719013 0 16 00 00 00 a5 f8 0a 00 00 00 00 00 ............ +4554 13.048436403 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352603 22 18 2068855 0 0x00000012 1 2068855 0 196609 0 12 00 00 00 77 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +4556 13.048701286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388930 12 -1 719013 0 0xffffffff 0 -1 719013 0 ff ff ff ff a5 f8 0a 00 00 00 00 00 ............ +4560 13.053300858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388942 12 -2 82722 82704 0xfffffffe 0 -2 82722 82704 fe ff ff ff 22 43 01 00 10 43 01 00 "....""C...C.." +4562 13.150655508 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388954 12 26 728528 0 0x0000001a 0 26 728528 0 1a 00 00 00 d0 1d 0b 00 00 00 00 00 ............ +4564 13.150888920 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388966 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1854341120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 91 1f 00 00 00 00 00 ....T.c@.^1@......y....... +4566 13.151251554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352625 12 -1 728528 0 0xffffffff 0 -1 728528 0 ff ff ff ff d0 1d 0b 00 00 00 00 00 ............ +4568 13.151903391 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352637 12 22 719014 0 0x00000016 0 22 719014 0 16 00 00 00 a6 f8 0a 00 00 00 00 00 ............ +4570 13.152052164 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352649 22 18 2068857 0 0x00000012 1 2068857 0 196609 0 12 00 00 00 79 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +4572 13.152332544 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333388992 12 -1 719014 0 0xffffffff 0 -1 719014 0 ff ff ff ff a6 f8 0a 00 00 00 00 00 ............ +4579 13.255410433 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389004 12 26 728529 0 0x0000001a 0 26 728529 0 1a 00 00 00 d1 1d 0b 00 00 00 00 00 ............ +4581 13.255669355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389016 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1854210048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 91 1f 00 00 00 00 00 ....T.c@.^1@......{....... +4583 13.255903482 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389042 12 101 728530 0 0x00000065 0 101 728530 0 65 00 00 00 d2 1d 0b 00 00 00 00 00 e........... +4585 13.256038189 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389054 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c2 11 02 00 00 00 00 00 e2 d2 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c2 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +4586 13.256088734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352671 12 -1 728529 0 0xffffffff 0 -1 728529 0 ff ff ff ff d1 1d 0b 00 00 00 00 00 ............ +4589 13.256361246 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352683 12 -1 728530 0 0xffffffff 0 -1 728530 0 ff ff ff ff d2 1d 0b 00 00 00 00 00 ............ +4591 13.256619453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352695 12 22 719015 0 0x00000016 0 22 719015 0 16 00 00 00 a7 f8 0a 00 00 00 00 00 ............ +4593 13.256817102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352707 22 18 2068859 0 0x00000012 1 2068859 0 196609 0 12 00 00 00 7b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +4595 13.257035971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389155 12 -1 719015 0 0xffffffff 0 -1 719015 0 ff ff ff ff a7 f8 0a 00 00 00 00 00 ............ +4596 13.257175922 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352729 12 52 719016 0 0x00000034 0 52 719016 0 34 00 00 00 a8 f8 0a 00 00 00 00 00 4........... +4598 13.257312775 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352741 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c2 11 02 00 00 00 00 00 00 00 19 37 f1 9a 4d 01 00 00 "0...Dk.................L."".([................7.." +4600 13.257540703 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389167 12 -1 719016 0 0xffffffff 0 -1 719016 0 ff ff ff ff a8 f8 0a 00 00 00 00 00 ............ +4601 13.258505106 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389179 12 30 728531 0 0x0000001e 0 30 728531 0 1e 00 00 00 d3 1d 0b 00 00 00 00 00 ............ +4603 13.258717775 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389191 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1854078976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7d 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......}........... +4605 13.259080410 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352793 12 -1 728531 0 0xffffffff 0 -1 728531 0 ff ff ff ff d3 1d 0b 00 00 00 00 00 ............ +4607 13.259429932 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352805 12 26 719017 0 0x0000001a 0 26 719017 0 1a 00 00 00 a9 f8 0a 00 00 00 00 00 ............ +4609 13.259582281 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352817 26 22 2068861 0 0x00000016 1 2068861 0 196609 0 16 00 00 00 7d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....}..................... +4611 13.259933233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389221 12 -1 719017 0 0xffffffff 0 -1 719017 0 ff ff ff ff a9 f8 0a 00 00 00 00 00 ............ +4618 13.358349085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389233 12 26 728532 0 0x0000001a 0 26 728532 0 1a 00 00 00 d4 1d 0b 00 00 00 00 00 ............ +4620 13.358528852 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389245 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1853947904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4622 13.358834267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352843 12 -1 728532 0 0xffffffff 0 -1 728532 0 ff ff ff ff d4 1d 0b 00 00 00 00 00 ............ +4624 13.359378099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352855 12 22 719018 0 0x00000016 0 22 719018 0 16 00 00 00 aa f8 0a 00 00 00 00 00 ............ +4626 13.359524012 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352867 22 18 2068863 0 0x00000012 1 2068863 0 196609 0 12 00 00 00 7f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4628 13.359793901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389271 12 -1 719018 0 0xffffffff 0 -1 719018 0 ff ff ff ff aa f8 0a 00 00 00 00 00 ............ +4635 13.421800137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352889 12 -2 82705 82722 0xfffffffe 0 -2 82705 82722 fe ff ff ff 11 43 01 00 22 43 01 00 ".....C..""C.." +4639 13.461738825 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389283 12 26 728533 0 0x0000001a 0 26 728533 0 1a 00 00 00 d5 1d 0b 00 00 00 00 00 ............ +4641 13.461945772 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389295 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1853816832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4643 13.462424755 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352901 12 -1 728533 0 0xffffffff 0 -1 728533 0 ff ff ff ff d5 1d 0b 00 00 00 00 00 ............ +4645 13.462836981 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352913 12 22 719019 0 0x00000016 0 22 719019 0 16 00 00 00 ab f8 0a 00 00 00 00 00 ............ +4647 13.463043213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352925 22 18 2068865 0 0x00000012 1 2068865 0 196609 0 12 00 00 00 81 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4649 13.463382483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389321 12 -1 719019 0 0xffffffff 0 -1 719019 0 ff ff ff ff ab f8 0a 00 00 00 00 00 ............ +4662 13.553945541 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389333 12 -2 82723 82705 0xfffffffe 0 -2 82723 82705 fe ff ff ff 23 43 01 00 11 43 01 00 ....#C...C.. +4664 13.559793472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389345 12 101 728534 0 0x00000065 0 101 728534 0 65 00 00 00 d6 1d 0b 00 00 00 00 00 e........... +4666 13.559998035 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389357 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c3 11 02 00 00 00 00 00 12 d4 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c3 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +4668 13.560396194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352947 12 -1 728534 0 0xffffffff 0 -1 728534 0 ff ff ff ff d6 1d 0b 00 00 00 00 00 ............ +4670 13.561310053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352959 12 52 719020 0 0x00000034 0 52 719020 0 34 00 00 00 ac f8 0a 00 00 00 00 00 4........... +4672 13.561470747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377352971 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c3 11 02 00 00 00 00 00 00 00 3b 9e 1f 9b 4d 01 00 00 "0...Dk.................L."".([...............;..." +4674 13.561895847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389458 12 -1 719020 0 0xffffffff 0 -1 719020 0 ff ff ff ff ac f8 0a 00 00 00 00 00 ............ +4676 13.562822342 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389470 12 30 728535 0 0x0000001e 0 30 728535 0 1e 00 00 00 d7 1d 0b 00 00 00 00 00 ............ +4678 13.563052177 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389482 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1853685760 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 83 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4680 13.563331127 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353023 12 -1 728535 0 0xffffffff 0 -1 728535 0 ff ff ff ff d7 1d 0b 00 00 00 00 00 ............ +4682 13.563729286 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353035 12 26 719021 0 0x0000001a 0 26 719021 0 1a 00 00 00 ad f8 0a 00 00 00 00 00 ............ +4684 13.563865185 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353047 26 22 2068867 0 0x00000016 1 2068867 0 196609 0 16 00 00 00 83 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4686 13.564211845 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389512 12 -1 719021 0 0xffffffff 0 -1 719021 0 ff ff ff ff ad f8 0a 00 00 00 00 00 ............ +4688 13.566196918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389524 12 26 728536 0 0x0000001a 0 26 728536 0 1a 00 00 00 d8 1d 0b 00 00 00 00 00 ............ +4690 13.566384792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389536 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1853554688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4692 13.566699028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353073 12 -1 728536 0 0xffffffff 0 -1 728536 0 ff ff ff ff d8 1d 0b 00 00 00 00 00 ............ +4694 13.567065001 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353085 12 22 719022 0 0x00000016 0 22 719022 0 16 00 00 00 ae f8 0a 00 00 00 00 00 ............ +4696 13.567231894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353097 22 18 2068869 0 0x00000012 1 2068869 0 196609 0 12 00 00 00 85 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4698 13.567562580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389562 12 -1 719022 0 0xffffffff 0 -1 719022 0 ff ff ff ff ae f8 0a 00 00 00 00 00 ............ +4738 13.670386314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389574 12 26 728537 0 0x0000001a 0 26 728537 0 1a 00 00 00 d9 1d 0b 00 00 00 00 00 ............ +4740 13.670577288 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389586 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1853423616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4742 13.670905113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353119 12 -1 728537 0 0xffffffff 0 -1 728537 0 ff ff ff ff d9 1d 0b 00 00 00 00 00 ............ +4744 13.671214819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353131 12 22 719023 0 0x00000016 0 22 719023 0 16 00 00 00 af f8 0a 00 00 00 00 00 ............ +4746 13.671393394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353143 22 18 2068871 0 0x00000012 1 2068871 0 196609 0 12 00 00 00 87 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4748 13.671679020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389612 12 -1 719023 0 0xffffffff 0 -1 719023 0 ff ff ff ff af f8 0a 00 00 00 00 00 ............ +4752 13.774157286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389624 12 26 728538 0 0x0000001a 0 26 728538 0 1a 00 00 00 da 1d 0b 00 00 00 00 00 ............ +4754 13.774439573 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389636 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1853292544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4756 13.774823427 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353165 12 -1 728538 0 0xffffffff 0 -1 728538 0 ff ff ff ff da 1d 0b 00 00 00 00 00 ............ +4758 13.775284767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353177 12 22 719024 0 0x00000016 0 22 719024 0 16 00 00 00 b0 f8 0a 00 00 00 00 00 ............ +4760 13.775451183 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353189 22 18 2068873 0 0x00000012 1 2068873 0 196609 0 12 00 00 00 89 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4762 13.775688410 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389662 12 -1 719024 0 0xffffffff 0 -1 719024 0 ff ff ff ff b0 f8 0a 00 00 00 00 00 ............ +4766 13.864563942 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389674 12 101 728539 0 0x00000065 0 101 728539 0 65 00 00 00 db 1d 0b 00 00 00 00 00 e........... +4768 13.864841700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389686 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c4 11 02 00 00 00 00 00 43 d5 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c4 11 02 00 00 00 00 .....!...o3...............C.#.....?.....3...|8.. +4770 13.865210533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353211 12 -1 728539 0 0xffffffff 0 -1 728539 0 ff ff ff ff db 1d 0b 00 00 00 00 00 ............ +4772 13.866070032 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353223 12 52 719025 0 0x00000034 0 52 719025 0 34 00 00 00 b1 f8 0a 00 00 00 00 00 4........... +4774 13.866300106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353235 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c4 11 02 00 00 00 00 00 00 00 08 1f 4e 9b 4d 01 00 00 "0...Dk.................L."".([.................N." +4776 13.866660357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389787 12 -1 719025 0 0xffffffff 0 -1 719025 0 ff ff ff ff b1 f8 0a 00 00 00 00 00 ............ +4778 13.867821932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389799 12 30 728540 0 0x0000001e 0 30 728540 0 1e 00 00 00 dc 1d 0b 00 00 00 00 00 ............ +4780 13.868015528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389811 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1853161472 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8b 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4782 13.868324280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353287 12 -1 728540 0 0xffffffff 0 -1 728540 0 ff ff ff ff dc 1d 0b 00 00 00 00 00 ............ +4784 13.868745565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353299 12 26 719026 0 0x0000001a 0 26 719026 0 1a 00 00 00 b2 f8 0a 00 00 00 00 00 ............ +4786 13.868906260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353311 26 22 2068875 0 0x00000016 1 2068875 0 196609 0 16 00 00 00 8b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4788 13.869095325 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389841 12 -1 719026 0 0xffffffff 0 -1 719026 0 ff ff ff ff b2 f8 0a 00 00 00 00 00 ............ +4790 13.876851082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389853 12 26 728541 0 0x0000001a 0 26 728541 0 1a 00 00 00 dd 1d 0b 00 00 00 00 00 ............ +4792 13.877008438 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389865 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1853030400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4794 13.877304077 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353337 12 -1 728541 0 0xffffffff 0 -1 728541 0 ff ff ff ff dd 1d 0b 00 00 00 00 00 ............ +4796 13.877816916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353349 12 22 719027 0 0x00000016 0 22 719027 0 16 00 00 00 b3 f8 0a 00 00 00 00 00 ............ +4798 13.877965450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353361 22 18 2068877 0 0x00000012 1 2068877 0 196609 0 12 00 00 00 8d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4800 13.878211975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389891 12 -1 719027 0 0xffffffff 0 -1 719027 0 ff ff ff ff b3 f8 0a 00 00 00 00 00 ............ +4806 13.922416687 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353383 12 -2 82706 82723 0xfffffffe 0 -2 82706 82723 fe ff ff ff 12 43 01 00 23 43 01 00 .....C..#C.. +4810 13.979895115 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389903 12 26 728542 0 0x0000001a 0 26 728542 0 1a 00 00 00 de 1d 0b 00 00 00 00 00 ............ +4812 13.980186224 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389915 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1852899328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4814 13.980515957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353395 12 -1 728542 0 0xffffffff 0 -1 728542 0 ff ff ff ff de 1d 0b 00 00 00 00 00 ............ +4816 13.980999231 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353407 12 22 719028 0 0x00000016 0 22 719028 0 16 00 00 00 b4 f8 0a 00 00 00 00 00 ............ +4818 13.981175900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353419 22 18 2068879 0 0x00000012 1 2068879 0 196609 0 12 00 00 00 8f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4820 13.981504679 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389941 12 -1 719028 0 0xffffffff 0 -1 719028 0 ff ff ff ff b4 f8 0a 00 00 00 00 00 ............ +4828 14.054456711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389953 12 -2 82724 82706 0xfffffffe 0 -2 82724 82706 fe ff ff ff 24 43 01 00 12 43 01 00 ....$C...C.. +4830 14.082707882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389965 12 26 728543 0 0x0000001a 0 26 728543 0 1a 00 00 00 df 1d 0b 00 00 00 00 00 ............ +4832 14.082927227 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333389977 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1852768256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4834 14.083333731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353441 12 -1 728543 0 0xffffffff 0 -1 728543 0 ff ff ff ff df 1d 0b 00 00 00 00 00 ............ +4836 14.083854675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353453 12 22 719029 0 0x00000016 0 22 719029 0 16 00 00 00 b5 f8 0a 00 00 00 00 00 ............ +4838 14.084046364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353465 22 18 2068881 0 0x00000012 1 2068881 0 196609 0 12 00 00 00 91 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4840 14.084361553 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390003 12 -1 719029 0 0xffffffff 0 -1 719029 0 ff ff ff ff b5 f8 0a 00 00 00 00 00 ............ +4848 14.169117451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390015 12 34 728544 0 0x00000022 0 34 728544 0 22 00 00 00 e0 1d 0b 00 00 00 00 00 """..........." +4850 14.169382095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390027 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 298123264 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c5 11 02 00 00 00 00 00 75 d6 23 c3 9d 01 00 00 .....!...o3...............u.#..... +4852 14.169557571 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390061 12 67 728545 0 0x00000043 0 67 728545 0 43 00 00 00 e1 1d 0b 00 00 00 00 00 C........... +4854 14.169665575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390073 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c5 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ac ce 1a 97 d9 ?.....3...|8...................=B.....&......... +4856 14.169816971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353487 12 -1 728544 0 0xffffffff 0 -1 728544 0 ff ff ff ff e0 1d 0b 00 00 00 00 00 ............ +4858 14.170035839 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353499 12 -1 728545 0 0xffffffff 0 -1 728545 0 ff ff ff ff e1 1d 0b 00 00 00 00 00 ............ +4860 14.171570778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353511 12 52 719030 0 0x00000034 0 52 719030 0 34 00 00 00 b6 f8 0a 00 00 00 00 00 4........... +4862 14.171791792 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353523 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c5 11 02 00 00 00 00 00 00 00 2e be 7c 9b 4d 01 00 00 "0...Dk.................L."".([.................|." +4864 14.172009468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390140 12 -1 719030 0 0xffffffff 0 -1 719030 0 ff ff ff ff b6 f8 0a 00 00 00 00 00 ............ +4867 14.173106432 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390152 12 30 728546 0 0x0000001e 0 30 728546 0 1e 00 00 00 e2 1d 0b 00 00 00 00 00 ............ +4870 14.173329830 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390164 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1852637184 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4874 14.173605204 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353575 12 -1 728546 0 0xffffffff 0 -1 728546 0 ff ff ff ff e2 1d 0b 00 00 00 00 00 ............ +4876 14.173990488 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353587 12 26 719031 0 0x0000001a 0 26 719031 0 1a 00 00 00 b7 f8 0a 00 00 00 00 00 ............ +4878 14.174174070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353599 26 22 2068883 0 0x00000016 1 2068883 0 196609 0 16 00 00 00 93 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4880 14.174483538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390194 12 -1 719031 0 0xffffffff 0 -1 719031 0 ff ff ff ff b7 f8 0a 00 00 00 00 00 ............ +4882 14.186524391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390206 12 26 728547 0 0x0000001a 0 26 728547 0 1a 00 00 00 e3 1d 0b 00 00 00 00 00 ............ +4884 14.186778069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390218 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1852506112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4886 14.187033415 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353625 12 -1 728547 0 0xffffffff 0 -1 728547 0 ff ff ff ff e3 1d 0b 00 00 00 00 00 ............ +4888 14.187349081 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353637 12 22 719032 0 0x00000016 0 22 719032 0 16 00 00 00 b8 f8 0a 00 00 00 00 00 ............ +4890 14.187566280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353649 22 18 2068885 0 0x00000012 1 2068885 0 196609 0 12 00 00 00 95 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4892 14.187963963 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390244 12 -1 719032 0 0xffffffff 0 -1 719032 0 ff ff ff ff b8 f8 0a 00 00 00 00 00 ............ +4896 14.290005922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390256 12 26 728548 0 0x0000001a 0 26 728548 0 1a 00 00 00 e4 1d 0b 00 00 00 00 00 ............ +4898 14.290263891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390268 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1852375040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4900 14.290620089 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353671 12 -1 728548 0 0xffffffff 0 -1 728548 0 ff ff ff ff e4 1d 0b 00 00 00 00 00 ............ +4902 14.291075706 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353683 12 22 719033 0 0x00000016 0 22 719033 0 16 00 00 00 b9 f8 0a 00 00 00 00 00 ............ +4904 14.291241646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353695 22 18 2068887 0 0x00000012 1 2068887 0 196609 0 12 00 00 00 97 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4906 14.291465282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390294 12 -1 719033 0 0xffffffff 0 -1 719033 0 ff ff ff ff b9 f8 0a 00 00 00 00 00 ............ +4910 14.393666506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390306 12 26 728549 0 0x0000001a 0 26 728549 0 1a 00 00 00 e5 1d 0b 00 00 00 00 00 ............ +4912 14.393935204 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390318 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1852243968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4914 14.394267082 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353717 12 -1 728549 0 0xffffffff 0 -1 728549 0 ff ff ff ff e5 1d 0b 00 00 00 00 00 ............ +4916 14.394670010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353729 12 22 719034 0 0x00000016 0 22 719034 0 16 00 00 00 ba f8 0a 00 00 00 00 00 ............ +4918 14.394833326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353741 22 18 2068889 0 0x00000012 1 2068889 0 196609 0 12 00 00 00 99 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4920 14.395135403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390344 12 -1 719034 0 0xffffffff 0 -1 719034 0 ff ff ff ff ba f8 0a 00 00 00 00 00 ............ +4925 14.423199654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353763 12 -2 82707 82724 0xfffffffe 0 -2 82707 82724 fe ff ff ff 13 43 01 00 24 43 01 00 .....C..$C.. +4932 14.475068092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390356 12 34 728550 0 0x00000022 0 34 728550 0 22 00 00 00 e6 1d 0b 00 00 00 00 00 """..........." +4934 14.475343943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390368 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 298188800 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c6 11 02 00 00 00 00 00 a6 d7 23 c3 9d 01 00 00 .....!...o3.................#..... +4936 14.475579977 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390402 12 67 728551 0 0x00000043 0 67 728551 0 43 00 00 00 e7 1d 0b 00 00 00 00 00 C........... +4938 14.475706339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390414 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c6 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 0c 4d 57 a9 d9 ?.....3...|8...................=B.....&......... +4939 14.475788593 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353775 12 -1 728550 0 0xffffffff 0 -1 728550 0 ff ff ff ff e6 1d 0b 00 00 00 00 00 ............ +4942 14.476049900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353787 12 -1 728551 0 0xffffffff 0 -1 728551 0 ff ff ff ff e7 1d 0b 00 00 00 00 00 ............ +4944 14.477191210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353799 12 52 719035 0 0x00000034 0 52 719035 0 34 00 00 00 bb f8 0a 00 00 00 00 00 4........... +4946 14.477357864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353811 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c6 11 02 00 00 00 00 00 00 00 d3 5c ab 9b 4d 01 00 00 "0...Dk.................L."".([................\.." +4948 14.477817774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390481 12 -1 719035 0 0xffffffff 0 -1 719035 0 ff ff ff ff bb f8 0a 00 00 00 00 00 ............ +4949 14.478839636 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390493 12 30 728552 0 0x0000001e 0 30 728552 0 1e 00 00 00 e8 1d 0b 00 00 00 00 00 ............ +4951 14.479112148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390505 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1852112896 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4953 14.479427099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353863 12 -1 728552 0 0xffffffff 0 -1 728552 0 ff ff ff ff e8 1d 0b 00 00 00 00 00 ............ +4955 14.479957342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353875 12 26 719036 0 0x0000001a 0 26 719036 0 1a 00 00 00 bc f8 0a 00 00 00 00 00 ............ +4957 14.480107784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353887 26 22 2068891 0 0x00000016 1 2068891 0 196609 0 16 00 00 00 9b 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4959 14.480388880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390535 12 -1 719036 0 0xffffffff 0 -1 719036 0 ff ff ff ff bc f8 0a 00 00 00 00 00 ............ +4961 14.496437073 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390547 12 26 728553 0 0x0000001a 0 26 728553 0 1a 00 00 00 e9 1d 0b 00 00 00 00 00 ............ +4963 14.496712685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390559 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1851981824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4965 14.497737169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353913 12 -1 728553 0 0xffffffff 0 -1 728553 0 ff ff ff ff e9 1d 0b 00 00 00 00 00 ............ +4967 14.498150826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353925 12 22 719037 0 0x00000016 0 22 719037 0 16 00 00 00 bd f8 0a 00 00 00 00 00 ............ +4969 14.498315096 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353937 22 18 2068893 0 0x00000012 1 2068893 0 196609 0 12 00 00 00 9d 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4971 14.498574972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390585 12 -1 719037 0 0xffffffff 0 -1 719037 0 ff ff ff ff bd f8 0a 00 00 00 00 00 ............ +4979 14.555969715 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390597 12 -2 82725 82707 0xfffffffe 0 -2 82725 82707 fe ff ff ff 25 43 01 00 13 43 01 00 ....%C...C.. +4981 14.600441456 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390609 12 26 728554 0 0x0000001a 0 26 728554 0 1a 00 00 00 ea 1d 0b 00 00 00 00 00 ............ +4983 14.600631237 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390621 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1851850752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +4985 14.600967884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353959 12 -1 728554 0 0xffffffff 0 -1 728554 0 ff ff ff ff ea 1d 0b 00 00 00 00 00 ............ +4987 14.601514101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353971 12 22 719038 0 0x00000016 0 22 719038 0 16 00 00 00 be f8 0a 00 00 00 00 00 ............ +4989 14.601739645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377353983 22 18 2068895 0 0x00000012 1 2068895 0 196609 0 12 00 00 00 9f 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4991 14.602067471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390647 12 -1 719038 0 0xffffffff 0 -1 719038 0 ff ff ff ff be f8 0a 00 00 00 00 00 ............ +4997 14.703322649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390659 12 26 728555 0 0x0000001a 0 26 728555 0 1a 00 00 00 eb 1d 0b 00 00 00 00 00 ............ +4999 14.703522682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390671 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1851719680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5001 14.703909159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354005 12 -1 728555 0 0xffffffff 0 -1 728555 0 ff ff ff ff eb 1d 0b 00 00 00 00 00 ............ +5003 14.704312086 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354017 12 22 719039 0 0x00000016 0 22 719039 0 16 00 00 00 bf f8 0a 00 00 00 00 00 ............ +5005 14.704481840 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354029 22 18 2068897 0 0x00000012 1 2068897 0 196609 0 12 00 00 00 a1 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5007 14.704862833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390697 12 -1 719039 0 0xffffffff 0 -1 719039 0 ff ff ff ff bf f8 0a 00 00 00 00 00 ............ +5013 14.779992819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390709 12 101 728556 0 0x00000065 0 101 728556 0 65 00 00 00 ec 1d 0b 00 00 00 00 00 e........... +5015 14.780222654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390721 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c7 11 02 00 00 00 00 00 d6 d8 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c7 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +5017 14.780517578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354051 12 -1 728556 0 0xffffffff 0 -1 728556 0 ff ff ff ff ec 1d 0b 00 00 00 00 00 ............ +5019 14.781819582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354063 12 52 719040 0 0x00000034 0 52 719040 0 34 00 00 00 c0 f8 0a 00 00 00 00 00 4........... +5021 14.782032013 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354075 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c7 11 02 00 00 00 00 00 00 00 f2 d9 d9 9b 4d 01 00 00 "0...Dk.................L."".([..................." +5023 14.782323837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390822 12 -1 719040 0 0xffffffff 0 -1 719040 0 ff ff ff ff c0 f8 0a 00 00 00 00 00 ............ +5025 14.783760071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390834 12 30 728557 0 0x0000001e 0 30 728557 0 1e 00 00 00 ed 1d 0b 00 00 00 00 00 ............ +5027 14.784143925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390846 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1851588608 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5029 14.784474611 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354127 12 -1 728557 0 0xffffffff 0 -1 728557 0 ff ff ff ff ed 1d 0b 00 00 00 00 00 ............ +5031 14.784863472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354139 12 26 719041 0 0x0000001a 0 26 719041 0 1a 00 00 00 c1 f8 0a 00 00 00 00 00 ............ +5033 14.785009623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354151 26 22 2068899 0 0x00000016 1 2068899 0 196609 0 16 00 00 00 a3 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5035 14.785272837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390876 12 -1 719041 0 0xffffffff 0 -1 719041 0 ff ff ff ff c1 f8 0a 00 00 00 00 00 ............ +5037 14.806507826 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390888 12 26 728558 0 0x0000001a 0 26 728558 0 1a 00 00 00 ee 1d 0b 00 00 00 00 00 ............ +5039 14.806792974 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390900 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1851457536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5041 14.807026386 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354177 12 -1 728558 0 0xffffffff 0 -1 728558 0 ff ff ff ff ee 1d 0b 00 00 00 00 00 ............ +5043 14.807470798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354189 12 22 719042 0 0x00000016 0 22 719042 0 16 00 00 00 c2 f8 0a 00 00 00 00 00 ............ +5045 14.807632685 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354201 22 18 2068901 0 0x00000012 1 2068901 0 196609 0 12 00 00 00 a5 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5047 14.807888508 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390926 12 -1 719042 0 0xffffffff 0 -1 719042 0 ff ff ff ff c2 f8 0a 00 00 00 00 00 ............ +5051 14.909110785 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390938 12 26 728559 0 0x0000001a 0 26 728559 0 1a 00 00 00 ef 1d 0b 00 00 00 00 00 ............ +5053 14.909301996 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390950 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1851326464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5055 14.909797430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354223 12 -1 728559 0 0xffffffff 0 -1 728559 0 ff ff ff ff ef 1d 0b 00 00 00 00 00 ............ +5057 14.910183191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354235 12 22 719043 0 0x00000016 0 22 719043 0 16 00 00 00 c3 f8 0a 00 00 00 00 00 ............ +5059 14.910348892 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354247 22 18 2068903 0 0x00000012 1 2068903 0 196609 0 12 00 00 00 a7 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5061 14.911005735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390976 12 -1 719043 0 0xffffffff 0 -1 719043 0 ff ff ff ff c3 f8 0a 00 00 00 00 00 ............ +5064 14.924044847 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354269 12 -2 82708 82725 0xfffffffe 0 -2 82708 82725 fe ff ff ff 14 43 01 00 25 43 01 00 .....C..%C.. +5087 15.012548208 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333390988 12 26 728560 0 0x0000001a 0 26 728560 0 1a 00 00 00 f0 1d 0b 00 00 00 00 00 ............ +5089 15.012762070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391000 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1851195392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5091 15.013132095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354281 12 -1 728560 0 0xffffffff 0 -1 728560 0 ff ff ff ff f0 1d 0b 00 00 00 00 00 ............ +5093 15.013680696 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354293 12 22 719044 0 0x00000016 0 22 719044 0 16 00 00 00 c4 f8 0a 00 00 00 00 00 ............ +5095 15.013905525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354305 22 18 2068905 0 0x00000012 1 2068905 0 196609 0 12 00 00 00 a9 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5097 15.014235735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391026 12 -1 719044 0 0xffffffff 0 -1 719044 0 ff ff ff ff c4 f8 0a 00 00 00 00 00 ............ +5103 15.056724072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391038 12 -2 82726 82708 0xfffffffe 0 -2 82726 82708 fe ff ff ff 26 43 01 00 14 43 01 00 ....&C...C.. +5106 15.085487843 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391050 12 34 728561 0 0x00000022 0 34 728561 0 22 00 00 00 f1 1d 0b 00 00 00 00 00 """..........." +5108 15.085733175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391062 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 298319872 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c8 11 02 00 00 00 00 00 08 da 23 c3 9d 01 00 00 .....!...o3.................#..... +5110 15.085904598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391096 12 67 728562 0 0x00000043 0 67 728562 0 43 00 00 00 f2 1d 0b 00 00 00 00 00 C........... +5112 15.085992098 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391108 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c8 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 68 66 ae cd d9 ?.....3...|8...................=B.....&......... +5113 15.086076260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354327 12 -1 728561 0 0xffffffff 0 -1 728561 0 ff ff ff ff f1 1d 0b 00 00 00 00 00 ............ +5116 15.086336136 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354339 12 -1 728562 0 0xffffffff 0 -1 728562 0 ff ff ff ff f2 1d 0b 00 00 00 00 00 ............ +5118 15.087171793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354351 12 52 719045 0 0x00000034 0 52 719045 0 34 00 00 00 c5 f8 0a 00 00 00 00 00 4........... +5120 15.087313414 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354363 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c8 11 02 00 00 00 00 00 00 00 0f 73 08 9c 4d 01 00 00 "0...Dk.................L."".([................s.." +5122 15.087618589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391175 12 -1 719045 0 0xffffffff 0 -1 719045 0 ff ff ff ff c5 f8 0a 00 00 00 00 00 ............ +5123 15.088370085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391187 12 30 728563 0 0x0000001e 0 30 728563 0 1e 00 00 00 f3 1d 0b 00 00 00 00 00 ............ +5124 15.088552475 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391199 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1851064320 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5125 15.089055777 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354415 12 -1 728563 0 0xffffffff 0 -1 728563 0 ff ff ff ff f3 1d 0b 00 00 00 00 00 ............ +5127 15.089318037 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354427 12 26 719046 0 0x0000001a 0 26 719046 0 1a 00 00 00 c6 f8 0a 00 00 00 00 00 ............ +5129 15.089484692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354439 26 22 2068907 0 0x00000016 1 2068907 0 196609 0 16 00 00 00 ab 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5131 15.089690685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391229 12 -1 719046 0 0xffffffff 0 -1 719046 0 ff ff ff ff c6 f8 0a 00 00 00 00 00 ............ +5133 15.116001368 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391241 12 26 728564 0 0x0000001a 0 26 728564 0 1a 00 00 00 f4 1d 0b 00 00 00 00 00 ............ +5135 15.116160154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391253 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1850933248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5137 15.116599798 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354465 12 -1 728564 0 0xffffffff 0 -1 728564 0 ff ff ff ff f4 1d 0b 00 00 00 00 00 ............ +5139 15.117091179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354477 12 22 719047 0 0x00000016 0 22 719047 0 16 00 00 00 c7 f8 0a 00 00 00 00 00 ............ +5141 15.117293596 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354489 22 18 2068909 0 0x00000012 1 2068909 0 196609 0 12 00 00 00 ad 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5143 15.117719412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391279 12 -1 719047 0 0xffffffff 0 -1 719047 0 ff ff ff ff c7 f8 0a 00 00 00 00 00 ............ +5152 15.220208168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391291 12 26 728565 0 0x0000001a 0 26 728565 0 1a 00 00 00 f5 1d 0b 00 00 00 00 00 ............ +5154 15.220393896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391303 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1850802176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5156 15.220761776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354511 12 -1 728565 0 0xffffffff 0 -1 728565 0 ff ff ff ff f5 1d 0b 00 00 00 00 00 ............ +5158 15.221345425 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354523 12 22 719048 0 0x00000016 0 22 719048 0 16 00 00 00 c8 f8 0a 00 00 00 00 00 ............ +5160 15.221527100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354535 22 18 2068911 0 0x00000012 1 2068911 0 196609 0 12 00 00 00 af 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5162 15.221835136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391329 12 -1 719048 0 0xffffffff 0 -1 719048 0 ff ff ff ff c8 f8 0a 00 00 00 00 00 ............ +5167 15.323222637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391341 12 26 728566 0 0x0000001a 0 26 728566 0 1a 00 00 00 f6 1d 0b 00 00 00 00 00 ............ +5169 15.323498487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391353 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1850671104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5171 15.323886156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354557 12 -1 728566 0 0xffffffff 0 -1 728566 0 ff ff ff ff f6 1d 0b 00 00 00 00 00 ............ +5174 15.324660540 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354569 12 22 719049 0 0x00000016 0 22 719049 0 16 00 00 00 c9 f8 0a 00 00 00 00 00 ............ +5177 15.324956894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354581 22 18 2068913 0 0x00000012 1 2068913 0 196609 0 12 00 00 00 b1 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5179 15.325523615 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391379 12 -1 719049 0 0xffffffff 0 -1 719049 0 ff ff ff ff c9 f8 0a 00 00 00 00 00 ............ +5181 15.390454769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391391 12 101 728567 0 0x00000065 0 101 728567 0 65 00 00 00 f7 1d 0b 00 00 00 00 00 e........... +5183 15.390689850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391403 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c9 11 02 00 00 00 00 00 3a db 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c9 11 02 00 00 00 00 .....!...o3...............:.#.....?.....3...|8.. +5185 15.391063690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354603 12 -1 728567 0 0xffffffff 0 -1 728567 0 ff ff ff ff f7 1d 0b 00 00 00 00 00 ............ +5187 15.392023802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354615 12 52 719050 0 0x00000034 0 52 719050 0 34 00 00 00 ca f8 0a 00 00 00 00 00 4........... +5189 15.392185926 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354627 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c9 11 02 00 00 00 00 00 00 00 b2 f5 36 9c 4d 01 00 00 "0...Dk.................L."".([.................6." +5191 15.392416239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391504 12 -1 719050 0 0xffffffff 0 -1 719050 0 ff ff ff ff ca f8 0a 00 00 00 00 00 ............ +5193 15.393491507 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391516 12 30 728568 0 0x0000001e 0 30 728568 0 1e 00 00 00 f8 1d 0b 00 00 00 00 00 ............ +5195 15.393652678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391528 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1850540032 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5197 15.394051790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354679 12 -1 728568 0 0xffffffff 0 -1 728568 0 ff ff ff ff f8 1d 0b 00 00 00 00 00 ............ +5199 15.394377232 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354691 12 26 719051 0 0x0000001a 0 26 719051 0 1a 00 00 00 cb f8 0a 00 00 00 00 00 ............ +5201 15.394585371 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354703 26 22 2068915 0 0x00000016 1 2068915 0 196609 0 16 00 00 00 b3 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5203 15.395000935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391558 12 -1 719051 0 0xffffffff 0 -1 719051 0 ff ff ff ff cb f8 0a 00 00 00 00 00 ............ +5206 15.425852537 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354729 12 -2 82709 82726 0xfffffffe 0 -2 82709 82726 fe ff ff ff 15 43 01 00 26 43 01 00 .....C..&C.. +5212 15.426654100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391570 12 26 728569 0 0x0000001a 0 26 728569 0 1a 00 00 00 f9 1d 0b 00 00 00 00 00 ............ +5214 15.426835299 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391582 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1850408960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5216 15.427215576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354741 12 -1 728569 0 0xffffffff 0 -1 728569 0 ff ff ff ff f9 1d 0b 00 00 00 00 00 ............ +5218 15.427713394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354753 12 22 719052 0 0x00000016 0 22 719052 0 16 00 00 00 cc f8 0a 00 00 00 00 00 ............ +5220 15.427878618 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354765 22 18 2068917 0 0x00000012 1 2068917 0 196609 0 12 00 00 00 b5 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5222 15.428310156 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391608 12 -1 719052 0 0xffffffff 0 -1 719052 0 ff ff ff ff cc f8 0a 00 00 00 00 00 ............ +5231 15.530509949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391620 12 26 728570 0 0x0000001a 0 26 728570 0 1a 00 00 00 fa 1d 0b 00 00 00 00 00 ............ +5233 15.530861139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391632 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1850277888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5235 15.531301737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354787 12 -1 728570 0 0xffffffff 0 -1 728570 0 ff ff ff ff fa 1d 0b 00 00 00 00 00 ............ +5237 15.531836510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354799 12 22 719053 0 0x00000016 0 22 719053 0 16 00 00 00 cd f8 0a 00 00 00 00 00 ............ +5239 15.532150984 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354811 22 18 2068919 0 0x00000012 1 2068919 0 196609 0 12 00 00 00 b7 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5241 15.532512903 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391658 12 -1 719053 0 0xffffffff 0 -1 719053 0 ff ff ff ff cd f8 0a 00 00 00 00 00 ............ +5245 15.557119131 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391670 12 -2 82727 82709 0xfffffffe 0 -2 82727 82709 fe ff ff ff 27 43 01 00 15 43 01 00 ....'C...C.. +5248 15.635389805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391682 12 26 728571 0 0x0000001a 0 26 728571 0 1a 00 00 00 fb 1d 0b 00 00 00 00 00 ............ +5250 15.635571718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391694 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1850146816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5252 15.636022806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354833 12 -1 728571 0 0xffffffff 0 -1 728571 0 ff ff ff ff fb 1d 0b 00 00 00 00 00 ............ +5254 15.636422873 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354845 12 22 719054 0 0x00000016 0 22 719054 0 16 00 00 00 ce f8 0a 00 00 00 00 00 ............ +5256 15.636588097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354857 22 18 2068921 0 0x00000012 1 2068921 0 196609 0 12 00 00 00 b9 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5258 15.637099266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391720 12 -1 719054 0 0xffffffff 0 -1 719054 0 ff ff ff ff ce f8 0a 00 00 00 00 00 ............ +5265 15.695041418 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391732 12 101 728572 0 0x00000065 0 101 728572 0 65 00 00 00 fc 1d 0b 00 00 00 00 00 e........... +5267 15.695297480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391744 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ca 11 02 00 00 00 00 00 69 dc 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ca 11 02 00 00 00 00 .....!...o3...............i.#.....?.....3...|8.. +5269 15.695647717 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354879 12 -1 728572 0 0xffffffff 0 -1 728572 0 ff ff ff ff fc 1d 0b 00 00 00 00 00 ............ +5271 15.697203398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354891 12 52 719055 0 0x00000034 0 52 719055 0 34 00 00 00 cf f8 0a 00 00 00 00 00 4........... +5273 15.697365761 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354903 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ca 11 02 00 00 00 00 00 00 00 45 7b 65 9c 4d 01 00 00 "0...Dk.................L."".([...............E{e." +5275 15.697705269 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391845 12 -1 719055 0 0xffffffff 0 -1 719055 0 ff ff ff ff cf f8 0a 00 00 00 00 00 ............ +5277 15.698921204 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391857 12 30 728573 0 0x0000001e 0 30 728573 0 1e 00 00 00 fd 1d 0b 00 00 00 00 00 ............ +5279 15.699089050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391869 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1850015744 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5281 15.699303865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354955 12 -1 728573 0 0xffffffff 0 -1 728573 0 ff ff ff ff fd 1d 0b 00 00 00 00 00 ............ +5283 15.699700356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354967 12 26 719056 0 0x0000001a 0 26 719056 0 1a 00 00 00 d0 f8 0a 00 00 00 00 00 ............ +5285 15.700060606 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377354979 26 22 2068923 0 0x00000016 1 2068923 0 196609 0 16 00 00 00 bb 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5287 15.700337648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391899 12 -1 719056 0 0xffffffff 0 -1 719056 0 ff ff ff ff d0 f8 0a 00 00 00 00 00 ............ +5292 15.739412785 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391911 12 26 728574 0 0x0000001a 0 26 728574 0 1a 00 00 00 fe 1d 0b 00 00 00 00 00 ............ +5294 15.739618778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391923 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1849884672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5296 15.740005732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355005 12 -1 728574 0 0xffffffff 0 -1 728574 0 ff ff ff ff fe 1d 0b 00 00 00 00 00 ............ +5298 15.740456104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355017 12 22 719057 0 0x00000016 0 22 719057 0 16 00 00 00 d1 f8 0a 00 00 00 00 00 ............ +5300 15.740616083 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355029 22 18 2068925 0 0x00000012 1 2068925 0 196609 0 12 00 00 00 bd 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5302 15.740900278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391949 12 -1 719057 0 0xffffffff 0 -1 719057 0 ff ff ff ff d1 f8 0a 00 00 00 00 00 ............ +5309 15.842582226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391961 12 26 728575 0 0x0000001a 0 26 728575 0 1a 00 00 00 ff 1d 0b 00 00 00 00 00 ............ +5311 15.842872381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391973 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1849753600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5313 15.843241930 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355051 12 -1 728575 0 0xffffffff 0 -1 728575 0 ff ff ff ff ff 1d 0b 00 00 00 00 00 ............ +5315 15.843692064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355063 12 22 719058 0 0x00000016 0 22 719058 0 16 00 00 00 d2 f8 0a 00 00 00 00 00 ............ +5317 15.843869448 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355075 22 18 2068927 0 0x00000012 1 2068927 0 196609 0 12 00 00 00 bf 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5319 15.844098568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333391999 12 -1 719058 0 0xffffffff 0 -1 719058 0 ff ff ff ff d2 f8 0a 00 00 00 00 00 ............ +5324 15.927471399 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355097 12 -2 82710 82727 0xfffffffe 0 -2 82710 82727 fe ff ff ff 16 43 01 00 27 43 01 00 .....C..'C.. +5331 15.945713520 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392011 12 26 728576 0 0x0000001a 0 26 728576 0 1a 00 00 00 00 1e 0b 00 00 00 00 00 ............ +5333 15.945970058 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392023 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1849622528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5335 15.946194410 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355109 12 -1 728576 0 0xffffffff 0 -1 728576 0 ff ff ff ff 00 1e 0b 00 00 00 00 00 ............ +5337 15.946730614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355121 12 22 719059 0 0x00000016 0 22 719059 0 16 00 00 00 d3 f8 0a 00 00 00 00 00 ............ +5339 15.946893215 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355133 22 18 2068929 0 0x00000012 1 2068929 0 196609 0 12 00 00 00 c1 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5341 15.947241783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392049 12 -1 719059 0 0xffffffff 0 -1 719059 0 ff ff ff ff d3 f8 0a 00 00 00 00 00 ............ +5346 16.000707388 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392061 12 34 728577 0 0x00000022 0 34 728577 0 22 00 00 00 01 1e 0b 00 00 00 00 00 """..........." +5348 16.001050949 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392073 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 298516480 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cb 11 02 00 00 00 00 00 9c dd 23 c3 9d 01 00 00 .....!...o3.................#..... +5350 16.001245022 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392107 12 67 728578 0 0x00000043 0 67 728578 0 43 00 00 00 02 1e 0b 00 00 00 00 00 C........... +5352 16.001352072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392119 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cb 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f4 b9 3d 04 da ?.....3...|8...................=B.....&......... +5354 16.001543999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355155 12 -1 728577 0 0xffffffff 0 -1 728577 0 ff ff ff ff 01 1e 0b 00 00 00 00 00 ............ +5356 16.001829386 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355167 12 -1 728578 0 0xffffffff 0 -1 728578 0 ff ff ff ff 02 1e 0b 00 00 00 00 00 ............ +5359 16.002938509 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355179 12 52 719060 0 0x00000034 0 52 719060 0 34 00 00 00 d4 f8 0a 00 00 00 00 00 4........... +5361 16.003118277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355191 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cb 11 02 00 00 00 00 00 00 00 b3 28 94 9c 4d 01 00 00 "0...Dk.................L."".([................(.." +5363 16.003409624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392186 12 -1 719060 0 0xffffffff 0 -1 719060 0 ff ff ff ff d4 f8 0a 00 00 00 00 00 ............ +5365 16.004698992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392198 12 30 728579 0 0x0000001e 0 30 728579 0 1e 00 00 00 03 1e 0b 00 00 00 00 00 ............ +5367 16.005148649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392210 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1849491456 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5369 16.005593300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355243 12 -1 728579 0 0xffffffff 0 -1 728579 0 ff ff ff ff 03 1e 0b 00 00 00 00 00 ............ +5371 16.006669998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355255 12 26 719061 0 0x0000001a 0 26 719061 0 1a 00 00 00 d5 f8 0a 00 00 00 00 00 ............ +5373 16.006857872 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355267 26 22 2068931 0 0x00000016 1 2068931 0 196609 0 16 00 00 00 c3 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5375 16.007102251 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392240 12 -1 719061 0 0xffffffff 0 -1 719061 0 ff ff ff ff d5 f8 0a 00 00 00 00 00 ............ +5381 16.048538685 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392252 12 26 728580 0 0x0000001a 0 26 728580 0 1a 00 00 00 04 1e 0b 00 00 00 00 00 ............ +5383 16.048721075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392264 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1849360384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5385 16.048999071 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355293 12 -1 728580 0 0xffffffff 0 -1 728580 0 ff ff ff ff 04 1e 0b 00 00 00 00 00 ............ +5387 16.049497604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355305 12 22 719062 0 0x00000016 0 22 719062 0 16 00 00 00 d6 f8 0a 00 00 00 00 00 ............ +5389 16.049689293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355317 22 18 2068933 0 0x00000012 1 2068933 0 196609 0 12 00 00 00 c5 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5391 16.050079823 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392290 12 -1 719062 0 0xffffffff 0 -1 719062 0 ff ff ff ff d6 f8 0a 00 00 00 00 00 ............ +5395 16.059050560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392302 12 -2 82728 82710 0xfffffffe 0 -2 82728 82710 fe ff ff ff 28 43 01 00 16 43 01 00 ....(C...C.. +5399 16.151360989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392314 12 26 728581 0 0x0000001a 0 26 728581 0 1a 00 00 00 05 1e 0b 00 00 00 00 00 ............ +5401 16.151729584 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392326 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1849229312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5403 16.152112007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355339 12 -1 728581 0 0xffffffff 0 -1 728581 0 ff ff ff ff 05 1e 0b 00 00 00 00 00 ............ +5405 16.152649879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355351 12 22 719063 0 0x00000016 0 22 719063 0 16 00 00 00 d7 f8 0a 00 00 00 00 00 ............ +5407 16.152796268 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355363 22 18 2068935 0 0x00000012 1 2068935 0 196609 0 12 00 00 00 c7 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5409 16.153022051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392352 12 -1 719063 0 0xffffffff 0 -1 719063 0 ff ff ff ff d7 f8 0a 00 00 00 00 00 ............ +5417 16.254233599 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392364 12 26 728582 0 0x0000001a 0 26 728582 0 1a 00 00 00 06 1e 0b 00 00 00 00 00 ............ +5419 16.254429579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392376 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1849098240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5421 16.254817724 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355385 12 -1 728582 0 0xffffffff 0 -1 728582 0 ff ff ff ff 06 1e 0b 00 00 00 00 00 ............ +5423 16.255400658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355397 12 22 719064 0 0x00000016 0 22 719064 0 16 00 00 00 d8 f8 0a 00 00 00 00 00 ............ +5425 16.255611420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355409 22 18 2068937 0 0x00000012 1 2068937 0 196609 0 12 00 00 00 c9 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5427 16.255830050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392402 12 -1 719064 0 0xffffffff 0 -1 719064 0 ff ff ff ff d8 f8 0a 00 00 00 00 00 ............ +5432 16.306725025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392414 12 34 728583 0 0x00000022 0 34 728583 0 22 00 00 00 07 1e 0b 00 00 00 00 00 """..........." +5434 16.306969881 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392426 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 298582016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cc 11 02 00 00 00 00 00 cd de 23 c3 9d 01 00 00 .....!...o3.................#..... +5436 16.307139158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392460 12 67 728584 0 0x00000043 0 67 728584 0 43 00 00 00 08 1e 0b 00 00 00 00 00 C........... +5438 16.307228327 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392472 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cc 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc b8 85 16 da ?.....3...|8...................=B.....&......... +5440 16.307391167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355431 12 -1 728583 0 0xffffffff 0 -1 728583 0 ff ff ff ff 07 1e 0b 00 00 00 00 00 ............ +5442 16.307618380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355443 12 -1 728584 0 0xffffffff 0 -1 728584 0 ff ff ff ff 08 1e 0b 00 00 00 00 00 ............ +5444 16.308366776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355455 12 52 719065 0 0x00000034 0 52 719065 0 34 00 00 00 d9 f8 0a 00 00 00 00 00 4........... +5446 16.308549404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355467 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cc 11 02 00 00 00 00 00 00 00 96 c8 c2 9c 4d 01 00 00 "0...Dk.................L."".([..................." +5448 16.309003115 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392539 12 -1 719065 0 0xffffffff 0 -1 719065 0 ff ff ff ff d9 f8 0a 00 00 00 00 00 ............ +5450 16.310035467 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392551 12 30 728585 0 0x0000001e 0 30 728585 0 1e 00 00 00 09 1e 0b 00 00 00 00 00 ............ +5452 16.310234785 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392563 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1848967168 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5454 16.310537100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355519 12 -1 728585 0 0xffffffff 0 -1 728585 0 ff ff ff ff 09 1e 0b 00 00 00 00 00 ............ +5456 16.311305761 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355531 12 26 719066 0 0x0000001a 0 26 719066 0 1a 00 00 00 da f8 0a 00 00 00 00 00 ............ +5458 16.311452627 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355543 26 22 2068939 0 0x00000016 1 2068939 0 196609 0 16 00 00 00 cb 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5460 16.311853170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392593 12 -1 719066 0 0xffffffff 0 -1 719066 0 ff ff ff ff da f8 0a 00 00 00 00 00 ............ +5465 16.357032061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392605 12 26 728586 0 0x0000001a 0 26 728586 0 1a 00 00 00 0a 1e 0b 00 00 00 00 00 ............ +5467 16.357223272 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392617 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1848836096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5469 16.357591629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355569 12 -1 728586 0 0xffffffff 0 -1 728586 0 ff ff ff ff 0a 1e 0b 00 00 00 00 00 ............ +5471 16.358027697 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355581 12 22 719067 0 0x00000016 0 22 719067 0 16 00 00 00 db f8 0a 00 00 00 00 00 ............ +5473 16.358199358 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355593 22 18 2068941 0 0x00000012 1 2068941 0 196609 0 12 00 00 00 cd 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5475 16.358739138 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392643 12 -1 719067 0 0xffffffff 0 -1 719067 0 ff ff ff ff db f8 0a 00 00 00 00 00 ............ +5478 16.428098202 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355615 12 -2 82711 82728 0xfffffffe 0 -2 82711 82728 fe ff ff ff 17 43 01 00 28 43 01 00 .....C..(C.. +5486 16.461953878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392655 12 26 728587 0 0x0000001a 0 26 728587 0 1a 00 00 00 0b 1e 0b 00 00 00 00 00 ............ +5488 16.462203503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392667 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1848705024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5490 16.462657213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355627 12 -1 728587 0 0xffffffff 0 -1 728587 0 ff ff ff ff 0b 1e 0b 00 00 00 00 00 ............ +5492 16.463205099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355639 12 22 719068 0 0x00000016 0 22 719068 0 16 00 00 00 dc f8 0a 00 00 00 00 00 ............ +5494 16.463444233 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355651 22 18 2068943 0 0x00000012 1 2068943 0 196609 0 12 00 00 00 cf 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5496 16.463744402 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392693 12 -1 719068 0 0xffffffff 0 -1 719068 0 ff ff ff ff dc f8 0a 00 00 00 00 00 ............ +5505 16.559779406 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392705 12 -2 82729 82711 0xfffffffe 0 -2 82729 82711 fe ff ff ff 29 43 01 00 17 43 01 00 ....)C...C.. +5507 16.565071821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392717 12 26 728588 0 0x0000001a 0 26 728588 0 1a 00 00 00 0c 1e 0b 00 00 00 00 00 ............ +5509 16.565226316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392729 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1848573952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5511 16.565647364 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355673 12 -1 728588 0 0xffffffff 0 -1 728588 0 ff ff ff ff 0c 1e 0b 00 00 00 00 00 ............ +5513 16.566166639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355685 12 22 719069 0 0x00000016 0 22 719069 0 16 00 00 00 dd f8 0a 00 00 00 00 00 ............ +5515 16.566336155 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355697 22 18 2068945 0 0x00000012 1 2068945 0 196609 0 12 00 00 00 d1 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5518 16.566733122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392755 12 -1 719069 0 0xffffffff 0 -1 719069 0 ff ff ff ff dd f8 0a 00 00 00 00 00 ............ +5520 16.611653805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392767 12 101 728589 0 0x00000065 0 101 728589 0 65 00 00 00 0d 1e 0b 00 00 00 00 00 e........... +5522 16.611839533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392779 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cd 11 02 00 00 00 00 00 fe df 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cd 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +5524 16.612127304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355719 12 -1 728589 0 0xffffffff 0 -1 728589 0 ff ff ff ff 0d 1e 0b 00 00 00 00 00 ............ +5526 16.613132954 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355731 12 52 719070 0 0x00000034 0 52 719070 0 34 00 00 00 de f8 0a 00 00 00 00 00 4........... +5528 16.613297701 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355743 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cd 11 02 00 00 00 00 00 00 00 72 49 f1 9c 4d 01 00 00 "0...Dk.................L."".([...............rI.." +5530 16.613601923 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392880 12 -1 719070 0 0xffffffff 0 -1 719070 0 ff ff ff ff de f8 0a 00 00 00 00 00 ............ +5532 16.614748478 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392892 12 30 728590 0 0x0000001e 0 30 728590 0 1e 00 00 00 0e 1e 0b 00 00 00 00 00 ............ +5534 16.614950895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392904 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1848442880 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5536 16.615269423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355795 12 -1 728590 0 0xffffffff 0 -1 728590 0 ff ff ff ff 0e 1e 0b 00 00 00 00 00 ............ +5538 16.615721703 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355807 12 26 719071 0 0x0000001a 0 26 719071 0 1a 00 00 00 df f8 0a 00 00 00 00 00 ............ +5540 16.615903139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355819 26 22 2068947 0 0x00000016 1 2068947 0 196609 0 16 00 00 00 d3 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5542 16.616153479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392934 12 -1 719071 0 0xffffffff 0 -1 719071 0 ff ff ff ff df f8 0a 00 00 00 00 00 ............ +5549 16.669082642 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392946 12 26 728591 0 0x0000001a 0 26 728591 0 1a 00 00 00 0f 1e 0b 00 00 00 00 00 ............ +5552 16.669327259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392958 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1848311808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5554 16.669670582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355845 12 -1 728591 0 0xffffffff 0 -1 728591 0 ff ff ff ff 0f 1e 0b 00 00 00 00 00 ............ +5556 16.670220852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355857 12 22 719072 0 0x00000016 0 22 719072 0 16 00 00 00 e0 f8 0a 00 00 00 00 00 ............ +5558 16.670382500 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355869 22 18 2068949 0 0x00000012 1 2068949 0 196609 0 12 00 00 00 d5 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5560 16.670786858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392984 12 -1 719072 0 0xffffffff 0 -1 719072 0 ff ff ff ff e0 f8 0a 00 00 00 00 00 ............ +5571 16.772159100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333392996 12 26 728592 0 0x0000001a 0 26 728592 0 1a 00 00 00 10 1e 0b 00 00 00 00 00 ............ +5573 16.772392035 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393008 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1848180736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5575 16.772727489 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355891 12 -1 728592 0 0xffffffff 0 -1 728592 0 ff ff ff ff 10 1e 0b 00 00 00 00 00 ............ +5579 16.773326874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355903 12 22 719073 0 0x00000016 0 22 719073 0 16 00 00 00 e1 f8 0a 00 00 00 00 00 ............ +5581 16.773554087 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355915 22 18 2068951 0 0x00000012 1 2068951 0 196609 0 12 00 00 00 d7 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5583 16.773782253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393034 12 -1 719073 0 0xffffffff 0 -1 719073 0 ff ff ff ff e1 f8 0a 00 00 00 00 00 ............ +5589 16.875245333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393046 12 26 728593 0 0x0000001a 0 26 728593 0 1a 00 00 00 11 1e 0b 00 00 00 00 00 ............ +5591 16.875422239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393058 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1848049664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5593 16.875776052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355937 12 -1 728593 0 0xffffffff 0 -1 728593 0 ff ff ff ff 11 1e 0b 00 00 00 00 00 ............ +5595 16.876739264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355949 12 22 719074 0 0x00000016 0 22 719074 0 16 00 00 00 e2 f8 0a 00 00 00 00 00 ............ +5597 16.876899004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355961 22 18 2068953 0 0x00000012 1 2068953 0 196609 0 12 00 00 00 d9 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5599 16.877181530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393084 12 -1 719074 0 0xffffffff 0 -1 719074 0 ff ff ff ff e2 f8 0a 00 00 00 00 00 ............ +5632 16.916715622 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393096 12 101 728594 0 0x00000065 0 101 728594 0 65 00 00 00 12 1e 0b 00 00 00 00 00 e........... +5634 16.916919947 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393108 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ce 11 02 00 00 00 00 00 2f e1 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ce 11 02 00 00 00 00 .....!...o3.............../.#.....?.....3...|8.. +5636 16.917359591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355983 12 -1 728594 0 0xffffffff 0 -1 728594 0 ff ff ff ff 12 1e 0b 00 00 00 00 00 ............ +5638 16.918398380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377355995 12 52 719075 0 0x00000034 0 52 719075 0 34 00 00 00 e3 f8 0a 00 00 00 00 00 4........... +5640 16.918593884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356007 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ce 11 02 00 00 00 00 00 00 00 8e d9 1f 9d 4d 01 00 00 "0...Dk.................L."".([..................." +5642 16.918893576 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393209 12 -1 719075 0 0xffffffff 0 -1 719075 0 ff ff ff ff e3 f8 0a 00 00 00 00 00 ............ +5644 16.919894934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393221 12 30 728595 0 0x0000001e 0 30 728595 0 1e 00 00 00 13 1e 0b 00 00 00 00 00 ............ +5646 16.920058250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393233 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1847918592 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5648 16.920490265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356059 12 -1 728595 0 0xffffffff 0 -1 728595 0 ff ff ff ff 13 1e 0b 00 00 00 00 00 ............ +5650 16.920762062 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356071 12 26 719076 0 0x0000001a 0 26 719076 0 1a 00 00 00 e4 f8 0a 00 00 00 00 00 ............ +5652 16.920918226 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356083 26 22 2068955 0 0x00000016 1 2068955 0 196609 0 16 00 00 00 db 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5654 16.921237469 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393263 12 -1 719076 0 0xffffffff 0 -1 719076 0 ff ff ff ff e4 f8 0a 00 00 00 00 00 ............ +5656 16.928912878 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356109 12 -2 82712 82729 0xfffffffe 0 -2 82712 82729 fe ff ff ff 18 43 01 00 29 43 01 00 .....C..)C.. +5664 16.979072571 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393275 12 26 728596 0 0x0000001a 0 26 728596 0 1a 00 00 00 14 1e 0b 00 00 00 00 00 ............ +5666 16.979260921 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393287 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1847787520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5668 16.979743719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356121 12 -1 728596 0 0xffffffff 0 -1 728596 0 ff ff ff ff 14 1e 0b 00 00 00 00 00 ............ +5670 16.980128050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356133 12 22 719077 0 0x00000016 0 22 719077 0 16 00 00 00 e5 f8 0a 00 00 00 00 00 ............ +5672 16.980302572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356145 22 18 2068957 0 0x00000012 1 2068957 0 196609 0 12 00 00 00 dd 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5674 16.980710268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393313 12 -1 719077 0 0xffffffff 0 -1 719077 0 ff ff ff ff e5 f8 0a 00 00 00 00 00 ............ +5683 17.061728716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393325 12 -2 82730 82712 0xfffffffe 0 -2 82730 82712 fe ff ff ff 2a 43 01 00 18 43 01 00 ....*C...C.. +5685 17.082173586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393337 12 26 728597 0 0x0000001a 0 26 728597 0 1a 00 00 00 15 1e 0b 00 00 00 00 00 ............ +5687 17.082355738 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393349 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1847656448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5689 17.082747221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356167 12 -1 728597 0 0xffffffff 0 -1 728597 0 ff ff ff ff 15 1e 0b 00 00 00 00 00 ............ +5691 17.083376169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356179 12 22 719078 0 0x00000016 0 22 719078 0 16 00 00 00 e6 f8 0a 00 00 00 00 00 ............ +5693 17.083574772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356191 22 18 2068959 0 0x00000012 1 2068959 0 196609 0 12 00 00 00 df 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5695 17.083816528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393375 12 -1 719078 0 0xffffffff 0 -1 719078 0 ff ff ff ff e6 f8 0a 00 00 00 00 00 ............ +5702 17.185266495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393387 12 26 728598 0 0x0000001a 0 26 728598 0 1a 00 00 00 16 1e 0b 00 00 00 00 00 ............ +5704 17.185496330 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393399 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1847525376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5706 17.185782671 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356213 12 -1 728598 0 0xffffffff 0 -1 728598 0 ff ff ff ff 16 1e 0b 00 00 00 00 00 ............ +5708 17.186290503 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356225 12 22 719079 0 0x00000016 0 22 719079 0 16 00 00 00 e7 f8 0a 00 00 00 00 00 ............ +5710 17.186487436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356237 22 18 2068961 0 0x00000012 1 2068961 0 196609 0 12 00 00 00 e1 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5712 17.186699390 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393425 12 -1 719079 0 0xffffffff 0 -1 719079 0 ff ff ff ff e7 f8 0a 00 00 00 00 00 ............ +5715 17.221566677 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393437 12 101 728599 0 0x00000065 0 101 728599 0 65 00 00 00 17 1e 0b 00 00 00 00 00 e........... +5717 17.221741438 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393449 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 cf 11 02 00 00 00 00 00 60 e2 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 cf 11 02 00 00 00 00 .....!...o3...............`.#.....?.....3...|8.. +5719 17.222062349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356259 12 -1 728599 0 0xffffffff 0 -1 728599 0 ff ff ff ff 17 1e 0b 00 00 00 00 00 ............ +5721 17.223239183 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356271 12 52 719080 0 0x00000034 0 52 719080 0 34 00 00 00 e8 f8 0a 00 00 00 00 00 4........... +5723 17.223390102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356283 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 cf 11 02 00 00 00 00 00 00 00 ce 61 4e 9d 4d 01 00 00 "0...Dk.................L."".([................aN." +5725 17.223755598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393550 12 -1 719080 0 0xffffffff 0 -1 719080 0 ff ff ff ff e8 f8 0a 00 00 00 00 00 ............ +5727 17.224619389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393562 12 30 728600 0 0x0000001e 0 30 728600 0 1e 00 00 00 18 1e 0b 00 00 00 00 00 ............ +5729 17.224766493 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393574 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1847394304 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5731 17.225075006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356335 12 -1 728600 0 0xffffffff 0 -1 728600 0 ff ff ff ff 18 1e 0b 00 00 00 00 00 ............ +5733 17.225476980 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356347 12 26 719081 0 0x0000001a 0 26 719081 0 1a 00 00 00 e9 f8 0a 00 00 00 00 00 ............ +5735 17.225619078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356359 26 22 2068963 0 0x00000016 1 2068963 0 196609 0 16 00 00 00 e3 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5737 17.226076841 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393604 12 -1 719081 0 0xffffffff 0 -1 719081 0 ff ff ff ff e9 f8 0a 00 00 00 00 00 ............ +5741 17.289277077 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393616 12 26 728601 0 0x0000001a 0 26 728601 0 1a 00 00 00 19 1e 0b 00 00 00 00 00 ............ +5743 17.289529324 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393628 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1847263232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5745 17.290086746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356385 12 -1 728601 0 0xffffffff 0 -1 728601 0 ff ff ff ff 19 1e 0b 00 00 00 00 00 ............ +5747 17.290535212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356397 12 22 719082 0 0x00000016 0 22 719082 0 16 00 00 00 ea f8 0a 00 00 00 00 00 ............ +5749 17.290720463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356409 22 18 2068965 0 0x00000012 1 2068965 0 196609 0 12 00 00 00 e5 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5751 17.291115999 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393654 12 -1 719082 0 0xffffffff 0 -1 719082 0 ff ff ff ff ea f8 0a 00 00 00 00 00 ............ +5756 17.392483711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393666 12 26 728602 0 0x0000001a 0 26 728602 0 1a 00 00 00 1a 1e 0b 00 00 00 00 00 ............ +5758 17.392738819 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393678 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1847132160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5760 17.393193245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356431 12 -1 728602 0 0xffffffff 0 -1 728602 0 ff ff ff ff 1a 1e 0b 00 00 00 00 00 ............ +5762 17.393619299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356443 12 22 719083 0 0x00000016 0 22 719083 0 16 00 00 00 eb f8 0a 00 00 00 00 00 ............ +5764 17.393801689 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356455 22 18 2068967 0 0x00000012 1 2068967 0 196609 0 12 00 00 00 e7 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5766 17.394016266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393704 12 -1 719083 0 0xffffffff 0 -1 719083 0 ff ff ff ff eb f8 0a 00 00 00 00 00 ............ +5778 17.430327177 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356477 12 -2 82713 82730 0xfffffffe 0 -2 82713 82730 fe ff ff ff 19 43 01 00 2a 43 01 00 .....C..*C.. +5783 17.496520758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393716 12 26 728603 0 0x0000001a 0 26 728603 0 1a 00 00 00 1b 1e 0b 00 00 00 00 00 ............ +5785 17.496770382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393728 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1847001088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5787 17.497165203 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356489 12 -1 728603 0 0xffffffff 0 -1 728603 0 ff ff ff ff 1b 1e 0b 00 00 00 00 00 ............ +5789 17.497818470 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356501 12 22 719084 0 0x00000016 0 22 719084 0 16 00 00 00 ec f8 0a 00 00 00 00 00 ............ +5791 17.497987747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356513 22 18 2068969 0 0x00000012 1 2068969 0 196609 0 12 00 00 00 e9 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5793 17.498366117 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393754 12 -1 719084 0 0xffffffff 0 -1 719084 0 ff ff ff ff ec f8 0a 00 00 00 00 00 ............ +5821 17.526502371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393766 12 101 728604 0 0x00000065 0 101 728604 0 65 00 00 00 1c 1e 0b 00 00 00 00 00 e........... +5824 17.526713610 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393778 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d0 11 02 00 00 00 00 00 91 e3 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d0 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +5827 17.527014494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356535 12 -1 728604 0 0xffffffff 0 -1 728604 0 ff ff ff ff 1c 1e 0b 00 00 00 00 00 ............ +5835 17.528073788 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356547 12 52 719085 0 0x00000034 0 52 719085 0 34 00 00 00 ed f8 0a 00 00 00 00 00 4........... +5837 17.528379202 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356559 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d0 11 02 00 00 00 00 00 00 00 4d e6 7c 9d 4d 01 00 00 "0...Dk.................L."".([...............M.|." +5839 17.528796673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393879 12 -1 719085 0 0xffffffff 0 -1 719085 0 ff ff ff ff ed f8 0a 00 00 00 00 00 ............ +5841 17.529727221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393891 12 30 728605 0 0x0000001e 0 30 728605 0 1e 00 00 00 1d 1e 0b 00 00 00 00 00 ............ +5843 17.529881239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393903 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1846870016 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5845 17.530103683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356611 12 -1 728605 0 0xffffffff 0 -1 728605 0 ff ff ff ff 1d 1e 0b 00 00 00 00 00 ............ +5847 17.530596495 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356623 12 26 719086 0 0x0000001a 0 26 719086 0 1a 00 00 00 ee f8 0a 00 00 00 00 00 ............ +5849 17.530753851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356635 26 22 2068971 0 0x00000016 1 2068971 0 196609 0 16 00 00 00 eb 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5851 17.531243086 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393933 12 -1 719086 0 0xffffffff 0 -1 719086 0 ff ff ff ff ee f8 0a 00 00 00 00 00 ............ +5856 17.564082861 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393945 12 -2 82731 82713 0xfffffffe 0 -2 82731 82713 fe ff ff ff 2b 43 01 00 19 43 01 00 ....+C...C.. +5858 17.600363970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393957 12 26 728606 0 0x0000001a 0 26 728606 0 1a 00 00 00 1e 1e 0b 00 00 00 00 00 ............ +5860 17.600548983 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393969 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1846738944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5862 17.600990772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356661 12 -1 728606 0 0xffffffff 0 -1 728606 0 ff ff ff ff 1e 1e 0b 00 00 00 00 00 ............ +5864 17.601536274 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356673 12 22 719087 0 0x00000016 0 22 719087 0 16 00 00 00 ef f8 0a 00 00 00 00 00 ............ +5866 17.601775646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356685 22 18 2068973 0 0x00000012 1 2068973 0 196609 0 12 00 00 00 ed 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5868 17.602120399 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333393995 12 -1 719087 0 0xffffffff 0 -1 719087 0 ff ff ff ff ef f8 0a 00 00 00 00 00 ............ +5875 17.703420639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394007 12 26 728607 0 0x0000001a 0 26 728607 0 1a 00 00 00 1f 1e 0b 00 00 00 00 00 ............ +5877 17.703713655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394019 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1846607872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5879 17.704203367 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356707 12 -1 728607 0 0xffffffff 0 -1 728607 0 ff ff ff ff 1f 1e 0b 00 00 00 00 00 ............ +5881 17.704748631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356719 12 22 719088 0 0x00000016 0 22 719088 0 16 00 00 00 f0 f8 0a 00 00 00 00 00 ............ +5883 17.705065250 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356731 22 18 2068975 0 0x00000012 1 2068975 0 196609 0 12 00 00 00 ef 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5885 17.705304861 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394045 12 -1 719088 0 0xffffffff 0 -1 719088 0 ff ff ff ff f0 f8 0a 00 00 00 00 00 ............ +5890 17.807308197 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394057 12 26 728608 0 0x0000001a 0 26 728608 0 1a 00 00 00 20 1e 0b 00 00 00 00 00 .... ....... +5892 17.807731152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394069 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1846476800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5894 17.808109522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356753 12 -1 728608 0 0xffffffff 0 -1 728608 0 ff ff ff ff 20 1e 0b 00 00 00 00 00 .... ....... +5896 17.808721066 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356765 12 22 719089 0 0x00000016 0 22 719089 0 16 00 00 00 f1 f8 0a 00 00 00 00 00 ............ +5898 17.808968067 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356777 22 18 2068977 0 0x00000012 1 2068977 0 196609 0 12 00 00 00 f1 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5900 17.809232235 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394095 12 -1 719089 0 0xffffffff 0 -1 719089 0 ff ff ff ff f1 f8 0a 00 00 00 00 00 ............ +5904 17.830642700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394107 12 34 728609 0 0x00000022 0 34 728609 0 22 00 00 00 21 1e 0b 00 00 00 00 00 """...!......." +5906 17.830846071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394119 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 298909696 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d1 11 02 00 00 00 00 00 c1 e4 23 c3 9d 01 00 00 .....!...o3.................#..... +5908 17.831014395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394153 12 67 728610 0 0x00000043 0 67 728610 0 43 00 00 00 22 1e 0b 00 00 00 00 00 "C...""......." +5910 17.831110001 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356799 12 -1 728609 0 0xffffffff 0 -1 728609 0 ff ff ff ff 21 1e 0b 00 00 00 00 00 ....!....... +5911 17.831123590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394165 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d1 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 40 4e 71 da ?.....3...|8...................=B.....&......... +5914 17.831318378 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356811 12 -1 728610 0 0xffffffff 0 -1 728610 0 ff ff ff ff 22 1e 0b 00 00 00 00 00 "....""......." +5916 17.841795683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356823 12 52 719090 0 0x00000034 0 52 719090 0 34 00 00 00 f2 f8 0a 00 00 00 00 00 4........... +5918 17.841956854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356835 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d1 11 02 00 00 00 00 00 00 00 b3 c2 ac 9d 4d 01 00 00 "0...Dk.................L."".([..................." +5920 17.842242479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394232 12 -1 719090 0 0xffffffff 0 -1 719090 0 ff ff ff ff f2 f8 0a 00 00 00 00 00 ............ +5922 17.843482256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394244 12 30 728611 0 0x0000001e 0 30 728611 0 1e 00 00 00 23 1e 0b 00 00 00 00 00 ....#....... +5924 17.843721628 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394256 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1846345728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5926 17.844493628 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356887 12 -1 728611 0 0xffffffff 0 -1 728611 0 ff ff ff ff 23 1e 0b 00 00 00 00 00 ....#....... +5928 17.845130682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356899 12 26 719091 0 0x0000001a 0 26 719091 0 1a 00 00 00 f3 f8 0a 00 00 00 00 00 ............ +5930 17.845338345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356911 26 22 2068979 0 0x00000016 1 2068979 0 196609 0 16 00 00 00 f3 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5932 17.845689774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394286 12 -1 719091 0 0xffffffff 0 -1 719091 0 ff ff ff ff f3 f8 0a 00 00 00 00 00 ............ +5934 17.910867214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394298 12 26 728612 0 0x0000001a 0 26 728612 0 1a 00 00 00 24 1e 0b 00 00 00 00 00 ....$....... +5936 17.911179066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394310 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1846214656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5938 17.911473751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356937 12 -1 728612 0 0xffffffff 0 -1 728612 0 ff ff ff ff 24 1e 0b 00 00 00 00 00 ....$....... +5940 17.911967516 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356949 12 22 719092 0 0x00000016 0 22 719092 0 16 00 00 00 f4 f8 0a 00 00 00 00 00 ............ +5942 17.912132502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356961 22 18 2068981 0 0x00000012 1 2068981 0 196609 0 12 00 00 00 f5 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5944 17.912413597 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394336 12 -1 719092 0 0xffffffff 0 -1 719092 0 ff ff ff ff f4 f8 0a 00 00 00 00 00 ............ +5946 17.930653811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356983 12 -2 82714 82731 0xfffffffe 0 -2 82714 82731 fe ff ff ff 1a 43 01 00 2b 43 01 00 .....C..+C.. +5956 18.014064074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394348 12 26 728613 0 0x0000001a 0 26 728613 0 1a 00 00 00 25 1e 0b 00 00 00 00 00 ....%....... +5958 18.014821529 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394360 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1846083584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5960 18.015189648 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377356995 12 -1 728613 0 0xffffffff 0 -1 728613 0 ff ff ff ff 25 1e 0b 00 00 00 00 00 ....%....... +5962 18.015754938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357007 12 22 719093 0 0x00000016 0 22 719093 0 16 00 00 00 f5 f8 0a 00 00 00 00 00 ............ +5964 18.015903950 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357019 22 18 2068983 0 0x00000012 1 2068983 0 196609 0 12 00 00 00 f7 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5966 18.016236544 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394386 12 -1 719093 0 0xffffffff 0 -1 719093 0 ff ff ff ff f5 f8 0a 00 00 00 00 00 ............ +5972 18.064654589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394398 12 -2 82732 82714 0xfffffffe 0 -2 82732 82714 fe ff ff ff 2c 43 01 00 1a 43 01 00 ....,C...C.. +5974 18.117640495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394410 12 26 728614 0 0x0000001a 0 26 728614 0 1a 00 00 00 26 1e 0b 00 00 00 00 00 ....&....... +5976 18.117877007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394422 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1845952512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +5978 18.118335485 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357041 12 -1 728614 0 0xffffffff 0 -1 728614 0 ff ff ff ff 26 1e 0b 00 00 00 00 00 ....&....... +5980 18.118958712 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357053 12 22 719094 0 0x00000016 0 22 719094 0 16 00 00 00 f6 f8 0a 00 00 00 00 00 ............ +5982 18.119390488 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357065 22 18 2068985 0 0x00000012 1 2068985 0 196609 0 12 00 00 00 f9 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5984 18.119801044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394448 12 -1 719094 0 0xffffffff 0 -1 719094 0 ff ff ff ff f6 f8 0a 00 00 00 00 00 ............ +5986 18.145292521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394460 12 101 728615 0 0x00000065 0 101 728615 0 65 00 00 00 27 1e 0b 00 00 00 00 00 e...'....... +5988 18.145502090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394472 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d2 11 02 00 00 00 00 00 fc e5 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d2 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +5990 18.145807028 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357087 12 -1 728615 0 0xffffffff 0 -1 728615 0 ff ff ff ff 27 1e 0b 00 00 00 00 00 ....'....... +5992 18.146787167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357099 12 52 719095 0 0x00000034 0 52 719095 0 34 00 00 00 f7 f8 0a 00 00 00 00 00 4........... +5994 18.146948814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357111 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d2 11 02 00 00 00 00 00 00 00 b9 4e db 9d 4d 01 00 00 "0...Dk.................L."".([................N.." +5996 18.147235870 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394573 12 -1 719095 0 0xffffffff 0 -1 719095 0 ff ff ff ff f7 f8 0a 00 00 00 00 00 ............ +5998 18.148252726 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394585 12 30 728616 0 0x0000001e 0 30 728616 0 1e 00 00 00 28 1e 0b 00 00 00 00 00 ....(....... +6000 18.148471355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394597 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1845821440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 91 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6002 18.148682117 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357163 12 -1 728616 0 0xffffffff 0 -1 728616 0 ff ff ff ff 28 1e 0b 00 00 00 00 00 ....(....... +6004 18.148933172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357175 12 26 719096 0 0x0000001a 0 26 719096 0 1a 00 00 00 f8 f8 0a 00 00 00 00 00 ............ +6006 18.149066925 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357187 26 22 2068987 0 0x00000016 1 2068987 0 196609 0 16 00 00 00 fb 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6008 18.149512768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394627 12 -1 719096 0 0xffffffff 0 -1 719096 0 ff ff ff ff f8 f8 0a 00 00 00 00 00 ............ +6014 18.220921040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394639 12 26 728617 0 0x0000001a 0 26 728617 0 1a 00 00 00 29 1e 0b 00 00 00 00 00 ....)....... +6016 18.221238375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394651 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1845690368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +6018 18.221574068 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357213 12 -1 728617 0 0xffffffff 0 -1 728617 0 ff ff ff ff 29 1e 0b 00 00 00 00 00 ....)....... +6020 18.222103596 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357225 12 22 719097 0 0x00000016 0 22 719097 0 16 00 00 00 f9 f8 0a 00 00 00 00 00 ............ +6022 18.222349882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357237 22 18 2068989 0 0x00000012 1 2068989 0 196609 0 12 00 00 00 fd 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6024 18.222641230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394677 12 -1 719097 0 0xffffffff 0 -1 719097 0 ff ff ff ff f9 f8 0a 00 00 00 00 00 ............ +6028 18.323996067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394689 12 26 728618 0 0x0000001a 0 26 728618 0 1a 00 00 00 2a 1e 0b 00 00 00 00 00 ....*....... +6030 18.324214458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394701 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1845559296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 91 1f 00 00 00 00 00 ....T.c@.^1@.............. +6032 18.324696302 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357259 12 -1 728618 0 0xffffffff 0 -1 728618 0 ff ff ff ff 2a 1e 0b 00 00 00 00 00 ....*....... +6034 18.325109482 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357271 12 22 719098 0 0x00000016 0 22 719098 0 16 00 00 00 fa f8 0a 00 00 00 00 00 ............ +6036 18.325304747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357283 22 18 2068991 0 0x00000012 1 2068991 0 196609 0 12 00 00 00 ff 91 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6038 18.325634480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394727 12 -1 719098 0 0xffffffff 0 -1 719098 0 ff ff ff ff fa f8 0a 00 00 00 00 00 ............ +6046 18.427143097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394739 12 26 728619 0 0x0000001a 0 26 728619 0 1a 00 00 00 2b 1e 0b 00 00 00 00 00 ....+....... +6048 18.427516460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394751 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1845428224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6050 18.427850723 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357305 12 -1 728619 0 0xffffffff 0 -1 728619 0 ff ff ff ff 2b 1e 0b 00 00 00 00 00 ....+....... +6052 18.428404331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357317 12 22 719099 0 0x00000016 0 22 719099 0 16 00 00 00 fb f8 0a 00 00 00 00 00 ............ +6054 18.428566694 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357329 22 18 2068993 0 0x00000012 1 2068993 0 196609 0 12 00 00 00 01 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6056 18.428849220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394777 12 -1 719099 0 0xffffffff 0 -1 719099 0 ff ff ff ff fb f8 0a 00 00 00 00 00 ............ +6059 18.430925369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357351 12 -2 82715 82732 0xfffffffe 0 -2 82715 82732 fe ff ff ff 1b 43 01 00 2c 43 01 00 .....C..,C.. +6066 18.449328661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394789 12 34 728620 0 0x00000022 0 34 728620 0 22 00 00 00 2c 1e 0b 00 00 00 00 00 """...,......." +6068 18.449651718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394801 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299040768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d3 11 02 00 00 00 00 00 2c e7 23 c3 9d 01 00 00 .....!...o3...............,.#..... +6070 18.449826717 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394835 12 67 728621 0 0x00000043 0 67 728621 0 43 00 00 00 2d 1e 0b 00 00 00 00 00 C...-....... +6072 18.449940681 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394847 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d3 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 5a 3c 96 da ?.....3...|8...................=B.....&......... +6074 18.450038195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357363 12 -1 728620 0 0xffffffff 0 -1 728620 0 ff ff ff ff 2c 1e 0b 00 00 00 00 00 ....,....... +6076 18.450252295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357375 12 -1 728621 0 0xffffffff 0 -1 728621 0 ff ff ff ff 2d 1e 0b 00 00 00 00 00 ....-....... +6078 18.451260567 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357387 12 52 719100 0 0x00000034 0 52 719100 0 34 00 00 00 fc f8 0a 00 00 00 00 00 4........... +6080 18.451425552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357399 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d3 11 02 00 00 00 00 00 00 00 5d c2 09 9e 4d 01 00 00 "0...Dk.................L."".([...............]..." +6082 18.451728821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394914 12 -1 719100 0 0xffffffff 0 -1 719100 0 ff ff ff ff fc f8 0a 00 00 00 00 00 ............ +6084 18.452660322 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394926 12 30 728622 0 0x0000001e 0 30 728622 0 1e 00 00 00 2e 1e 0b 00 00 00 00 00 ............ +6086 18.452813148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394938 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1845297152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6088 18.453194380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357451 12 -1 728622 0 0xffffffff 0 -1 728622 0 ff ff ff ff 2e 1e 0b 00 00 00 00 00 ............ +6090 18.453474998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357463 12 26 719101 0 0x0000001a 0 26 719101 0 1a 00 00 00 fd f8 0a 00 00 00 00 00 ............ +6092 18.453624487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357475 26 22 2068995 0 0x00000016 1 2068995 0 196609 0 16 00 00 00 03 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6094 18.453876734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394968 12 -1 719101 0 0xffffffff 0 -1 719101 0 ff ff ff ff fd f8 0a 00 00 00 00 00 ............ +6100 18.530998468 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394980 12 26 728623 0 0x0000001a 0 26 728623 0 1a 00 00 00 2f 1e 0b 00 00 00 00 00 ..../....... +6102 18.531174898 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333394992 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1845166080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6104 18.531584501 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357501 12 -1 728623 0 0xffffffff 0 -1 728623 0 ff ff ff ff 2f 1e 0b 00 00 00 00 00 ..../....... +6106 18.532009602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357513 12 22 719102 0 0x00000016 0 22 719102 0 16 00 00 00 fe f8 0a 00 00 00 00 00 ............ +6108 18.532205105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357525 22 18 2068997 0 0x00000012 1 2068997 0 196609 0 12 00 00 00 05 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6110 18.532441378 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395018 12 -1 719102 0 0xffffffff 0 -1 719102 0 ff ff ff ff fe f8 0a 00 00 00 00 00 ............ +6114 18.565657377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395030 12 -2 82733 82715 0xfffffffe 0 -2 82733 82715 fe ff ff ff 2d 43 01 00 1b 43 01 00 ....-C...C.. +6127 18.633846998 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395042 12 26 728624 0 0x0000001a 0 26 728624 0 1a 00 00 00 30 1e 0b 00 00 00 00 00 ....0....... +6129 18.634023905 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395054 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1845035008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6131 18.634521246 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357547 12 -1 728624 0 0xffffffff 0 -1 728624 0 ff ff ff ff 30 1e 0b 00 00 00 00 00 ....0....... +6133 18.635137320 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357559 12 22 719103 0 0x00000016 0 22 719103 0 16 00 00 00 ff f8 0a 00 00 00 00 00 ............ +6135 18.635315895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357571 22 18 2068999 0 0x00000012 1 2068999 0 196609 0 12 00 00 00 07 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6137 18.635603428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395080 12 -1 719103 0 0xffffffff 0 -1 719103 0 ff ff ff ff ff f8 0a 00 00 00 00 00 ............ +6151 18.736855268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395092 12 26 728625 0 0x0000001a 0 26 728625 0 1a 00 00 00 31 1e 0b 00 00 00 00 00 ....1....... +6153 18.737065554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395104 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1844903936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6155 18.737627268 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357593 12 -1 728625 0 0xffffffff 0 -1 728625 0 ff ff ff ff 31 1e 0b 00 00 00 00 00 ....1....... +6157 18.738102674 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357605 12 22 719104 0 0x00000016 0 22 719104 0 16 00 00 00 00 f9 0a 00 00 00 00 00 ............ +6159 18.738301754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357617 22 18 2069001 0 0x00000012 1 2069001 0 196609 0 12 00 00 00 09 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6161 18.738596678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395130 12 -1 719104 0 0xffffffff 0 -1 719104 0 ff ff ff ff 00 f9 0a 00 00 00 00 00 ............ +6163 18.755993605 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395142 12 34 728626 0 0x00000022 0 34 728626 0 22 00 00 00 32 1e 0b 00 00 00 00 00 """...2......." +6165 18.756160736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395154 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299106304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d4 11 02 00 00 00 00 00 5f e8 23 c3 9d 01 00 00 .....!...o3..............._.#..... +6167 18.756324530 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395188 12 67 728627 0 0x00000043 0 67 728627 0 43 00 00 00 33 1e 0b 00 00 00 00 00 C...3....... +6169 18.756417274 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395200 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d4 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 14 7a a8 da ?.....3...|8...................=B.....&......... +6170 18.756460667 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357639 12 -1 728626 0 0xffffffff 0 -1 728626 0 ff ff ff ff 32 1e 0b 00 00 00 00 00 ....2....... +6173 18.756620646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357651 12 -1 728627 0 0xffffffff 0 -1 728627 0 ff ff ff ff 33 1e 0b 00 00 00 00 00 ....3....... +6175 18.758219004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357663 12 52 719105 0 0x00000034 0 52 719105 0 34 00 00 00 01 f9 0a 00 00 00 00 00 4........... +6177 18.758367300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357675 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d4 11 02 00 00 00 00 00 00 00 e1 98 38 9e 4d 01 00 00 "0...Dk.................L."".([.................8." +6179 18.758589506 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395267 12 -1 719105 0 0xffffffff 0 -1 719105 0 ff ff ff ff 01 f9 0a 00 00 00 00 00 ............ +6181 18.760039568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395279 12 30 728628 0 0x0000001e 0 30 728628 0 1e 00 00 00 34 1e 0b 00 00 00 00 00 ....4....... +6183 18.760325193 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395291 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1844772864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0b 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6185 18.760584116 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357727 12 -1 728628 0 0xffffffff 0 -1 728628 0 ff ff ff ff 34 1e 0b 00 00 00 00 00 ....4....... +6187 18.761235952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357739 12 26 719106 0 0x0000001a 0 26 719106 0 1a 00 00 00 02 f9 0a 00 00 00 00 00 ............ +6189 18.761368752 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357751 26 22 2069003 0 0x00000016 1 2069003 0 196609 0 16 00 00 00 0b 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6191 18.761630535 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395321 12 -1 719106 0 0xffffffff 0 -1 719106 0 ff ff ff ff 02 f9 0a 00 00 00 00 00 ............ +6197 18.840077400 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395333 12 26 728629 0 0x0000001a 0 26 728629 0 1a 00 00 00 35 1e 0b 00 00 00 00 00 ....5....... +6199 18.840420961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395345 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1844641792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6201 18.840782404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357777 12 -1 728629 0 0xffffffff 0 -1 728629 0 ff ff ff ff 35 1e 0b 00 00 00 00 00 ....5....... +6203 18.841462851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357789 12 22 719107 0 0x00000016 0 22 719107 0 16 00 00 00 03 f9 0a 00 00 00 00 00 ............ +6205 18.841624975 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357801 22 18 2069005 0 0x00000012 1 2069005 0 196609 0 12 00 00 00 0d 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6207 18.842037678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395371 12 -1 719107 0 0xffffffff 0 -1 719107 0 ff ff ff ff 03 f9 0a 00 00 00 00 00 ............ +6210 18.931702852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357823 12 -2 82716 82733 0xfffffffe 0 -2 82716 82733 fe ff ff ff 1c 43 01 00 2d 43 01 00 .....C..-C.. +6217 18.944385052 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395383 12 26 728630 0 0x0000001a 0 26 728630 0 1a 00 00 00 36 1e 0b 00 00 00 00 00 ....6....... +6219 18.944661379 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395395 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1844510720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6221 18.945082188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357835 12 -1 728630 0 0xffffffff 0 -1 728630 0 ff ff ff ff 36 1e 0b 00 00 00 00 00 ....6....... +6223 18.945523262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357847 12 22 719108 0 0x00000016 0 22 719108 0 16 00 00 00 04 f9 0a 00 00 00 00 00 ............ +6225 18.945666552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357859 22 18 2069007 0 0x00000012 1 2069007 0 196609 0 12 00 00 00 0f 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6227 18.945853472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395421 12 -1 719108 0 0xffffffff 0 -1 719108 0 ff ff ff ff 04 f9 0a 00 00 00 00 00 ............ +6233 19.047877073 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395433 12 26 728631 0 0x0000001a 0 26 728631 0 1a 00 00 00 37 1e 0b 00 00 00 00 00 ....7....... +6235 19.048189640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395445 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1844379648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6237 19.048516273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357881 12 -1 728631 0 0xffffffff 0 -1 728631 0 ff ff ff ff 37 1e 0b 00 00 00 00 00 ....7....... +6239 19.049007416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357893 12 22 719109 0 0x00000016 0 22 719109 0 16 00 00 00 05 f9 0a 00 00 00 00 00 ............ +6241 19.049204826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357905 22 18 2069009 0 0x00000012 1 2069009 0 196609 0 12 00 00 00 11 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6243 19.049571037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395471 12 -1 719109 0 0xffffffff 0 -1 719109 0 ff ff ff ff 05 f9 0a 00 00 00 00 00 ............ +6247 19.061973333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395483 12 34 728632 0 0x00000022 0 34 728632 0 22 00 00 00 38 1e 0b 00 00 00 00 00 """...8......." +6249 19.062262297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395495 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299171840 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d5 11 02 00 00 00 00 00 91 e9 23 c3 9d 01 00 00 .....!...o3.................#..... +6251 19.062409163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395529 12 67 728633 0 0x00000043 0 67 728633 0 43 00 00 00 39 1e 0b 00 00 00 00 00 C...9....... +6252 19.062475681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357927 12 -1 728632 0 0xffffffff 0 -1 728632 0 ff ff ff ff 38 1e 0b 00 00 00 00 00 ....8....... +6254 19.062662125 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395541 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d5 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c c7 c3 ba da ?.....3...|8...................=B.....&......... +6256 19.062896729 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357939 12 -1 728633 0 0xffffffff 0 -1 728633 0 ff ff ff ff 39 1e 0b 00 00 00 00 00 ....9....... +6258 19.064332008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357951 12 52 719110 0 0x00000034 0 52 719110 0 34 00 00 00 06 f9 0a 00 00 00 00 00 4........... +6260 19.064517498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377357963 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d5 11 02 00 00 00 00 00 00 00 c9 50 67 9e 4d 01 00 00 "0...Dk.................L."".([................Pg." +6262 19.064739943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395608 12 -1 719110 0 0xffffffff 0 -1 719110 0 ff ff ff ff 06 f9 0a 00 00 00 00 00 ............ +6264 19.065612793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395620 12 30 728634 0 0x0000001e 0 30 728634 0 1e 00 00 00 3a 1e 0b 00 00 00 00 00 ....:....... +6266 19.065771818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395632 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1844248576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 13 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6268 19.065974236 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358015 12 -1 728634 0 0xffffffff 0 -1 728634 0 ff ff ff ff 3a 1e 0b 00 00 00 00 00 ....:....... +6270 19.066352606 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395662 12 -2 82734 82716 0xfffffffe 0 -2 82734 82716 fe ff ff ff 2e 43 01 00 1c 43 01 00 .....C...C.. +6271 19.066507101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358027 38 26 719111 0 0x0000001a 0 26 719111 0 22 1a 00 00 00 07 f9 0a 00 00 00 00 00 16 00 00 00 13 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...................................... +6273 19.066761017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395674 12 -1 719111 0 0xffffffff 0 -1 719111 0 ff ff ff ff 07 f9 0a 00 00 00 00 00 ............ +6275 19.150777340 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395686 12 26 728635 0 0x0000001a 0 26 728635 0 1a 00 00 00 3b 1e 0b 00 00 00 00 00 ....;....... +6277 19.151137114 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395698 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1844117504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6279 19.151523113 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358065 12 -1 728635 0 0xffffffff 0 -1 728635 0 ff ff ff ff 3b 1e 0b 00 00 00 00 00 ....;....... +6281 19.151983261 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358077 12 22 719112 0 0x00000016 0 22 719112 0 16 00 00 00 08 f9 0a 00 00 00 00 00 ............ +6283 19.152164221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358089 22 18 2069013 0 0x00000012 1 2069013 0 196609 0 12 00 00 00 15 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6285 19.152309179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395724 12 -1 719112 0 0xffffffff 0 -1 719112 0 ff ff ff ff 08 f9 0a 00 00 00 00 00 ............ +6291 19.253604412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395736 12 26 728636 0 0x0000001a 0 26 728636 0 1a 00 00 00 3c 1e 0b 00 00 00 00 00 ....<....... +6293 19.253904104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395748 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1843986432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6295 19.254417896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358111 12 -1 728636 0 0xffffffff 0 -1 728636 0 ff ff ff ff 3c 1e 0b 00 00 00 00 00 ....<....... +6297 19.255082607 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358123 12 22 719113 0 0x00000016 0 22 719113 0 16 00 00 00 09 f9 0a 00 00 00 00 00 ............ +6299 19.255300999 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358135 22 18 2069015 0 0x00000012 1 2069015 0 196609 0 12 00 00 00 17 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6301 19.255733967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395774 12 -1 719113 0 0xffffffff 0 -1 719113 0 ff ff ff ff 09 f9 0a 00 00 00 00 00 ............ +6307 19.357548475 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395786 12 26 728637 0 0x0000001a 0 26 728637 0 1a 00 00 00 3d 1e 0b 00 00 00 00 00 ....=....... +6309 19.357781172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395798 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1843855360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6311 19.358123779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358157 12 -1 728637 0 0xffffffff 0 -1 728637 0 ff ff ff ff 3d 1e 0b 00 00 00 00 00 ....=....... +6313 19.358782768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358169 12 22 719114 0 0x00000016 0 22 719114 0 16 00 00 00 0a f9 0a 00 00 00 00 00 ............ +6315 19.358956575 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358181 22 18 2069017 0 0x00000012 1 2069017 0 196609 0 12 00 00 00 19 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6317 19.359187603 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395824 12 -1 719114 0 0xffffffff 0 -1 719114 0 ff ff ff ff 0a f9 0a 00 00 00 00 00 ............ +6319 19.367968082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395836 12 101 728638 0 0x00000065 0 101 728638 0 65 00 00 00 3e 1e 0b 00 00 00 00 00 e...>....... +6321 19.368167877 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395848 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d6 11 02 00 00 00 00 00 c2 ea 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d6 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +6323 19.368463039 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358203 12 -1 728638 0 0xffffffff 0 -1 728638 0 ff ff ff ff 3e 1e 0b 00 00 00 00 00 ....>....... +6325 19.369583368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358215 12 52 719115 0 0x00000034 0 52 719115 0 34 00 00 00 0b f9 0a 00 00 00 00 00 4........... +6327 19.369816780 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358227 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d6 11 02 00 00 00 00 00 00 00 dc e3 95 9e 4d 01 00 00 "0...Dk.................L."".([..................." +6329 19.370094538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395949 12 -1 719115 0 0xffffffff 0 -1 719115 0 ff ff ff ff 0b f9 0a 00 00 00 00 00 ............ +6331 19.370914221 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395961 12 30 728639 0 0x0000001e 0 30 728639 0 1e 00 00 00 3f 1e 0b 00 00 00 00 00 ....?....... +6333 19.371181965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333395973 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1843724288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1b 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6335 19.371526480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358279 12 -1 728639 0 0xffffffff 0 -1 728639 0 ff ff ff ff 3f 1e 0b 00 00 00 00 00 ....?....... +6337 19.372250080 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358291 12 26 719116 0 0x0000001a 0 26 719116 0 1a 00 00 00 0c f9 0a 00 00 00 00 00 ............ +6339 19.372471333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358303 26 22 2069019 0 0x00000016 1 2069019 0 196609 0 16 00 00 00 1b 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6341 19.372748375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396003 12 -1 719116 0 0xffffffff 0 -1 719116 0 ff ff ff ff 0c f9 0a 00 00 00 00 00 ............ +6347 19.433268309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358329 12 -2 82717 82734 0xfffffffe 0 -2 82717 82734 fe ff ff ff 1d 43 01 00 2e 43 01 00 .....C...C.. +6353 19.460723162 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396015 12 26 728640 0 0x0000001a 0 26 728640 0 1a 00 00 00 40 1e 0b 00 00 00 00 00 ....@....... +6355 19.460946083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396027 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1843593216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6357 19.461425304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358341 12 -1 728640 0 0xffffffff 0 -1 728640 0 ff ff ff ff 40 1e 0b 00 00 00 00 00 ....@....... +6359 19.461975574 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358353 12 22 719117 0 0x00000016 0 22 719117 0 16 00 00 00 0d f9 0a 00 00 00 00 00 ............ +6361 19.462130070 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358365 22 18 2069021 0 0x00000012 1 2069021 0 196609 0 12 00 00 00 1d 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6363 19.462396860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396053 12 -1 719117 0 0xffffffff 0 -1 719117 0 ff ff ff ff 0d f9 0a 00 00 00 00 00 ............ +6401 19.565655947 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396065 12 26 728641 0 0x0000001a 0 26 728641 0 1a 00 00 00 41 1e 0b 00 00 00 00 00 ....A....... +6403 19.565868378 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396077 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1843462144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 92 1f 00 00 00 00 00 ....T.c@.^1@.............. +6405 19.566208124 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358387 12 -1 728641 0 0xffffffff 0 -1 728641 0 ff ff ff ff 41 1e 0b 00 00 00 00 00 ....A....... +6407 19.566655636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358399 12 22 719118 0 0x00000016 0 22 719118 0 16 00 00 00 0e f9 0a 00 00 00 00 00 ............ +6409 19.566899300 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358411 22 18 2069023 0 0x00000012 1 2069023 0 196609 0 12 00 00 00 1f 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6411 19.567192316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396103 12 -1 719118 0 0xffffffff 0 -1 719118 0 ff ff ff ff 0e f9 0a 00 00 00 00 00 ............ +6413 19.568250895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396115 12 -2 82735 82717 0xfffffffe 0 -2 82735 82717 fe ff ff ff 2f 43 01 00 1d 43 01 00 ..../C...C.. +6419 19.668594599 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396127 12 26 728642 0 0x0000001a 0 26 728642 0 1a 00 00 00 42 1e 0b 00 00 00 00 00 ....B....... +6421 19.668866396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396139 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1843331072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 92 1f 00 00 00 00 00 ....T.c@.^1@......!....... +6423 19.669192791 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358433 12 -1 728642 0 0xffffffff 0 -1 728642 0 ff ff ff ff 42 1e 0b 00 00 00 00 00 ....B....... +6425 19.669617176 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358445 12 22 719119 0 0x00000016 0 22 719119 0 16 00 00 00 0f f9 0a 00 00 00 00 00 ............ +6427 19.669793844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358457 22 18 2069025 0 0x00000012 1 2069025 0 196609 0 12 00 00 00 21 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +6429 19.670075655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396165 12 -1 719119 0 0xffffffff 0 -1 719119 0 ff ff ff ff 0f f9 0a 00 00 00 00 00 ............ +6431 19.671708345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396177 12 101 728643 0 0x00000065 0 101 728643 0 65 00 00 00 43 1e 0b 00 00 00 00 00 e...C....... +6433 19.671920061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396189 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d7 11 02 00 00 00 00 00 f3 eb 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d7 11 02 00 00 00 00 .....!...o3.................#.....?.....3...|8.. +6435 19.672215462 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358479 12 -1 728643 0 0xffffffff 0 -1 728643 0 ff ff ff ff 43 1e 0b 00 00 00 00 00 ....C....... +6437 19.673208475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358491 12 52 719120 0 0x00000034 0 52 719120 0 34 00 00 00 10 f9 0a 00 00 00 00 00 4........... +6439 19.673352718 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358503 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d7 11 02 00 00 00 00 00 00 00 93 39 c4 9e 4d 01 00 00 "0...Dk.................L."".([................9.." +6441 19.673601866 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396290 12 -1 719120 0 0xffffffff 0 -1 719120 0 ff ff ff ff 10 f9 0a 00 00 00 00 00 ............ +6443 19.674393415 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396302 12 30 728644 0 0x0000001e 0 30 728644 0 1e 00 00 00 44 1e 0b 00 00 00 00 00 ....D....... +6445 19.674541950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396314 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1843200000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 23 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......#........... +6447 19.674986839 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358555 12 -1 728644 0 0xffffffff 0 -1 728644 0 ff ff ff ff 44 1e 0b 00 00 00 00 00 ....D....... +6449 19.675322533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358567 12 26 719121 0 0x0000001a 0 26 719121 0 1a 00 00 00 11 f9 0a 00 00 00 00 00 ............ +6451 19.675473690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358579 26 22 2069027 0 0x00000016 1 2069027 0 196609 0 16 00 00 00 23 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....#..................... +6453 19.675708771 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396344 12 -1 719121 0 0xffffffff 0 -1 719121 0 ff ff ff ff 11 f9 0a 00 00 00 00 00 ............ +6455 19.772636175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396356 12 26 728645 0 0x0000001a 0 26 728645 0 1a 00 00 00 45 1e 0b 00 00 00 00 00 ....E....... +6457 19.772901297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396368 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1843068928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 92 1f 00 00 00 00 00 ....T.c@.^1@......%....... +6459 19.773216486 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358605 12 -1 728645 0 0xffffffff 0 -1 728645 0 ff ff ff ff 45 1e 0b 00 00 00 00 00 ....E....... +6461 19.773786306 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358617 12 22 719122 0 0x00000016 0 22 719122 0 16 00 00 00 12 f9 0a 00 00 00 00 00 ............ +6463 19.773971796 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358629 22 18 2069029 0 0x00000012 1 2069029 0 196609 0 12 00 00 00 25 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +6465 19.774301291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396394 12 -1 719122 0 0xffffffff 0 -1 719122 0 ff ff ff ff 12 f9 0a 00 00 00 00 00 ............ +6471 19.875479460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396406 12 26 728646 0 0x0000001a 0 26 728646 0 1a 00 00 00 46 1e 0b 00 00 00 00 00 ....F....... +6473 19.875679255 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396418 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1842937856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 92 1f 00 00 00 00 00 ....T.c@.^1@......'....... +6475 19.876597643 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358651 12 -1 728646 0 0xffffffff 0 -1 728646 0 ff ff ff ff 46 1e 0b 00 00 00 00 00 ....F....... +6477 19.876972437 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358663 12 22 719123 0 0x00000016 0 22 719123 0 16 00 00 00 13 f9 0a 00 00 00 00 00 ............ +6479 19.877150297 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358675 22 18 2069031 0 0x00000012 1 2069031 0 196609 0 12 00 00 00 27 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +6481 19.877433777 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396444 12 -1 719123 0 0xffffffff 0 -1 719123 0 ff ff ff ff 13 f9 0a 00 00 00 00 00 ............ +6494 19.933288574 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358697 12 -2 82718 82735 0xfffffffe 0 -2 82718 82735 fe ff ff ff 1e 43 01 00 2f 43 01 00 .....C../C.. +6502 19.977102995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396456 12 34 728647 0 0x00000022 0 34 728647 0 22 00 00 00 47 1e 0b 00 00 00 00 00 """...G......." +6504 19.977285385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396468 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299368448 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d8 11 02 00 00 00 00 00 24 ed 23 c3 9d 01 00 00 .....!...o3...............$.#..... +6506 19.977386951 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396502 12 67 728648 0 0x00000043 0 67 728648 0 43 00 00 00 48 1e 0b 00 00 00 00 00 C...H....... +6508 19.977473021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396514 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d8 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 b1 4a f1 da ?.....3...|8...................=B.....&......... +6510 19.977571487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358709 12 -1 728647 0 0xffffffff 0 -1 728647 0 ff ff ff ff 47 1e 0b 00 00 00 00 00 ....G....... +6512 19.977766514 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358721 12 -1 728648 0 0xffffffff 0 -1 728648 0 ff ff ff ff 48 1e 0b 00 00 00 00 00 ....H....... +6514 19.978643179 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358733 12 52 719124 0 0x00000034 0 52 719124 0 34 00 00 00 14 f9 0a 00 00 00 00 00 4........... +6516 19.978819370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396581 12 26 728649 0 0x0000001a 0 26 728649 0 1a 00 00 00 49 1e 0b 00 00 00 00 00 ....I....... +6517 19.978831768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396593 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1842806784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 92 1f 00 00 00 00 00 ....T.c@.^1@......)....... +6519 19.978990078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358745 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d8 11 02 00 00 00 00 00 00 00 ee d2 f2 9e 4d 01 00 00 "0...Dk.................L."".([..................." +6521 19.979150295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358797 12 -1 728649 0 0xffffffff 0 -1 728649 0 ff ff ff ff 49 1e 0b 00 00 00 00 00 ....I....... +6523 19.979262114 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396619 12 -1 719124 0 0xffffffff 0 -1 719124 0 ff ff ff ff 14 f9 0a 00 00 00 00 00 ............ +6525 19.979499578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358809 12 22 719125 0 0x00000016 0 22 719125 0 16 00 00 00 15 f9 0a 00 00 00 00 00 ............ +6527 19.979644299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358821 22 18 2069033 0 0x00000012 1 2069033 0 196609 0 12 00 00 00 29 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +6529 19.980013847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396631 12 -1 719125 0 0xffffffff 0 -1 719125 0 ff ff ff ff 15 f9 0a 00 00 00 00 00 ............ +6531 19.980329752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396643 12 30 728650 0 0x0000001e 0 30 728650 0 1e 00 00 00 4a 1e 0b 00 00 00 00 00 ....J....... +6533 19.980506182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396655 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1842675712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2b 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......+........... +6535 19.980813503 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358843 12 -1 728650 0 0xffffffff 0 -1 728650 0 ff ff ff ff 4a 1e 0b 00 00 00 00 00 ....J....... +6537 19.981351614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358855 12 26 719126 0 0x0000001a 0 26 719126 0 1a 00 00 00 16 f9 0a 00 00 00 00 00 ............ +6539 19.981498718 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358867 26 22 2069035 0 0x00000016 1 2069035 0 196609 0 16 00 00 00 2b 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....+..................... +6541 19.981716633 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396685 12 -1 719126 0 0xffffffff 0 -1 719126 0 ff ff ff ff 16 f9 0a 00 00 00 00 00 ............ +6549 20.069202185 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396697 12 -2 82736 82718 0xfffffffe 0 -2 82736 82718 fe ff ff ff 30 43 01 00 1e 43 01 00 ....0C...C.. +6551 20.082008839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396709 12 26 728651 0 0x0000001a 0 26 728651 0 1a 00 00 00 4b 1e 0b 00 00 00 00 00 ....K....... +6553 20.082264423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396721 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1842544640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 92 1f 00 00 00 00 00 ....T.c@.^1@......-....... +6555 20.082700491 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358893 12 -1 728651 0 0xffffffff 0 -1 728651 0 ff ff ff ff 4b 1e 0b 00 00 00 00 00 ....K....... +6557 20.083158255 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358905 12 22 719127 0 0x00000016 0 22 719127 0 16 00 00 00 17 f9 0a 00 00 00 00 00 ............ +6559 20.083350420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358917 22 18 2069037 0 0x00000012 1 2069037 0 196609 0 12 00 00 00 2d 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +6561 20.083664179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396747 12 -1 719127 0 0xffffffff 0 -1 719127 0 ff ff ff ff 17 f9 0a 00 00 00 00 00 ............ +6567 20.185514212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396759 12 26 728652 0 0x0000001a 0 26 728652 0 1a 00 00 00 4c 1e 0b 00 00 00 00 00 ....L....... +6569 20.185701609 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396771 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1842413568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 92 1f 00 00 00 00 00 ....T.c@.^1@....../....... +6571 20.186091900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358939 12 -1 728652 0 0xffffffff 0 -1 728652 0 ff ff ff ff 4c 1e 0b 00 00 00 00 00 ....L....... +6573 20.186520576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358951 12 22 719128 0 0x00000016 0 22 719128 0 16 00 00 00 18 f9 0a 00 00 00 00 00 ............ +6575 20.186699390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358963 22 18 2069039 0 0x00000012 1 2069039 0 196609 0 12 00 00 00 2f 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +6577 20.187185287 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396797 12 -1 719128 0 0xffffffff 0 -1 719128 0 ff ff ff ff 18 f9 0a 00 00 00 00 00 ............ +6581 20.282064676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396809 12 101 728653 0 0x00000065 0 101 728653 0 65 00 00 00 4d 1e 0b 00 00 00 00 00 e...M....... +6583 20.282253504 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396821 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 d9 11 02 00 00 00 00 00 55 ee 23 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 d9 11 02 00 00 00 00 .....!...o3...............U.#.....?.....3...|8.. +6585 20.282702684 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358985 12 -1 728653 0 0xffffffff 0 -1 728653 0 ff ff ff ff 4d 1e 0b 00 00 00 00 00 ....M....... +6587 20.283669472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377358997 12 52 719129 0 0x00000034 0 52 719129 0 34 00 00 00 19 f9 0a 00 00 00 00 00 4........... +6589 20.283908367 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359009 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 d9 11 02 00 00 00 00 00 00 00 b1 5d 21 9f 4d 01 00 00 "0...Dk.................L."".([................]!." +6591 20.284251451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396922 12 -1 719129 0 0xffffffff 0 -1 719129 0 ff ff ff ff 19 f9 0a 00 00 00 00 00 ............ +6593 20.285118818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396934 12 30 728654 0 0x0000001e 0 30 728654 0 1e 00 00 00 4e 1e 0b 00 00 00 00 00 ....N....... +6595 20.285260201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396946 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1842282496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +6597 20.285537481 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359061 12 -1 728654 0 0xffffffff 0 -1 728654 0 ff ff ff ff 4e 1e 0b 00 00 00 00 00 ....N....... +6599 20.286079407 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359073 12 26 719130 0 0x0000001a 0 26 719130 0 1a 00 00 00 1a f9 0a 00 00 00 00 00 ............ +6601 20.286238670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359085 26 22 2069041 0 0x00000016 1 2069041 0 196609 0 16 00 00 00 31 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +6603 20.286490440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396976 12 -1 719130 0 0xffffffff 0 -1 719130 0 ff ff ff ff 1a f9 0a 00 00 00 00 00 ............ +6605 20.289416552 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333396988 12 26 728655 0 0x0000001a 0 26 728655 0 1a 00 00 00 4f 1e 0b 00 00 00 00 00 ....O....... +6607 20.289626598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397000 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1842151424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 92 1f 00 00 00 00 00 ....T.c@.^1@......3....... +6609 20.290052414 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359111 12 -1 728655 0 0xffffffff 0 -1 728655 0 ff ff ff ff 4f 1e 0b 00 00 00 00 00 ....O....... +6611 20.290366888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359123 12 22 719131 0 0x00000016 0 22 719131 0 16 00 00 00 1b f9 0a 00 00 00 00 00 ............ +6613 20.290564060 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359135 22 18 2069043 0 0x00000012 1 2069043 0 196609 0 12 00 00 00 33 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +6615 20.290907860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397026 12 -1 719131 0 0xffffffff 0 -1 719131 0 ff ff ff ff 1b f9 0a 00 00 00 00 00 ............ +6619 20.392590284 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397038 12 26 728656 0 0x0000001a 0 26 728656 0 1a 00 00 00 50 1e 0b 00 00 00 00 00 ....P....... +6621 20.392896175 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397050 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1842020352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 92 1f 00 00 00 00 00 ....T.c@.^1@......5....... +6623 20.393260241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359157 12 -1 728656 0 0xffffffff 0 -1 728656 0 ff ff ff ff 50 1e 0b 00 00 00 00 00 ....P....... +6625 20.393815994 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359169 12 22 719132 0 0x00000016 0 22 719132 0 16 00 00 00 1c f9 0a 00 00 00 00 00 ............ +6627 20.394078016 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359181 22 18 2069045 0 0x00000012 1 2069045 0 196609 0 12 00 00 00 35 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +6629 20.394420624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397076 12 -1 719132 0 0xffffffff 0 -1 719132 0 ff ff ff ff 1c f9 0a 00 00 00 00 00 ............ +6632 20.434478998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359203 12 -2 82719 82736 0xfffffffe 0 -2 82719 82736 fe ff ff ff 1f 43 01 00 30 43 01 00 .....C..0C.. +6639 20.495588779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397088 12 26 728657 0 0x0000001a 0 26 728657 0 1a 00 00 00 51 1e 0b 00 00 00 00 00 ....Q....... +6641 20.495875359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397100 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1841889280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 92 1f 00 00 00 00 00 ....T.c@.^1@......7....... +6643 20.496297121 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359215 12 -1 728657 0 0xffffffff 0 -1 728657 0 ff ff ff ff 51 1e 0b 00 00 00 00 00 ....Q....... +6645 20.497019053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359227 12 22 719133 0 0x00000016 0 22 719133 0 16 00 00 00 1d f9 0a 00 00 00 00 00 ............ +6647 20.497229099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359239 22 18 2069047 0 0x00000012 1 2069047 0 196609 0 12 00 00 00 37 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +6649 20.497549295 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397126 12 -1 719133 0 0xffffffff 0 -1 719133 0 ff ff ff ff 1d f9 0a 00 00 00 00 00 ............ +6657 20.570442200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397138 12 -2 82737 82719 0xfffffffe 0 -2 82737 82719 fe ff ff ff 31 43 01 00 1f 43 01 00 ....1C...C.. +6659 20.587072372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397150 12 34 728658 0 0x00000022 0 34 728658 0 22 00 00 00 52 1e 0b 00 00 00 00 00 """...R......." +6661 20.587277651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397162 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299499520 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 da 11 02 00 00 00 00 00 86 ef 23 c3 9d 01 00 00 .....!...o3.................#..... +6663 20.587383986 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397196 12 67 728659 0 0x00000043 0 67 728659 0 43 00 00 00 53 1e 0b 00 00 00 00 00 C...S....... +6665 20.587473631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397208 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 da 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 fb 9b 15 db ?.....3...|8...................=B.....&......... +6666 20.587558985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359261 12 -1 728658 0 0xffffffff 0 -1 728658 0 ff ff ff ff 52 1e 0b 00 00 00 00 00 ....R....... +6669 20.587800980 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359273 12 -1 728659 0 0xffffffff 0 -1 728659 0 ff ff ff ff 53 1e 0b 00 00 00 00 00 ....S....... +6671 20.588546276 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359285 12 52 719134 0 0x00000034 0 52 719134 0 34 00 00 00 1e f9 0a 00 00 00 00 00 4........... +6673 20.588688612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359297 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 da 11 02 00 00 00 00 00 00 00 87 e3 4f 9f 4d 01 00 00 "0...Dk.................L."".([.................O." +6675 20.588902712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397275 12 -1 719134 0 0xffffffff 0 -1 719134 0 ff ff ff ff 1e f9 0a 00 00 00 00 00 ............ +6676 20.589789867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397287 12 30 728660 0 0x0000001e 0 30 728660 0 1e 00 00 00 54 1e 0b 00 00 00 00 00 ....T....... +6678 20.589940071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397299 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1841758208 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +6680 20.590221167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359349 12 -1 728660 0 0xffffffff 0 -1 728660 0 ff ff ff ff 54 1e 0b 00 00 00 00 00 ....T....... +6682 20.590493441 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359361 12 26 719135 0 0x0000001a 0 26 719135 0 1a 00 00 00 1f f9 0a 00 00 00 00 00 ............ +6684 20.590642691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359373 26 22 2069049 0 0x00000016 1 2069049 0 196609 0 16 00 00 00 39 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +6686 20.590843201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397329 12 -1 719135 0 0xffffffff 0 -1 719135 0 ff ff ff ff 1f f9 0a 00 00 00 00 00 ............ +6688 20.599507570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397341 12 26 728661 0 0x0000001a 0 26 728661 0 1a 00 00 00 55 1e 0b 00 00 00 00 00 ....U....... +6690 20.599673748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397353 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1841627136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 92 1f 00 00 00 00 00 ....T.c@.^1@......;....... +6692 20.599965334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359399 12 -1 728661 0 0xffffffff 0 -1 728661 0 ff ff ff ff 55 1e 0b 00 00 00 00 00 ....U....... +6694 20.600411892 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359411 12 22 719136 0 0x00000016 0 22 719136 0 16 00 00 00 20 f9 0a 00 00 00 00 00 .... ....... +6696 20.600555897 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359423 22 18 2069051 0 0x00000012 1 2069051 0 196609 0 12 00 00 00 3b 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +6698 20.600739956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397379 12 -1 719136 0 0xffffffff 0 -1 719136 0 ff ff ff ff 20 f9 0a 00 00 00 00 00 .... ....... +6704 20.702994585 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397391 12 26 728662 0 0x0000001a 0 26 728662 0 1a 00 00 00 56 1e 0b 00 00 00 00 00 ....V....... +6706 20.703209162 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397403 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1841496064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 92 1f 00 00 00 00 00 ....T.c@.^1@......=....... +6708 20.703546524 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359445 12 -1 728662 0 0xffffffff 0 -1 728662 0 ff ff ff ff 56 1e 0b 00 00 00 00 00 ....V....... +6710 20.704579353 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359457 12 22 719137 0 0x00000016 0 22 719137 0 16 00 00 00 21 f9 0a 00 00 00 00 00 ....!....... +6712 20.704783916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359469 22 18 2069053 0 0x00000012 1 2069053 0 196609 0 12 00 00 00 3d 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +6714 20.705113173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397429 12 -1 719137 0 0xffffffff 0 -1 719137 0 ff ff ff ff 21 f9 0a 00 00 00 00 00 ....!....... +6720 20.806796789 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397441 12 26 728663 0 0x0000001a 0 26 728663 0 1a 00 00 00 57 1e 0b 00 00 00 00 00 ....W....... +6722 20.806981564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397453 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1841364992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 92 1f 00 00 00 00 00 ....T.c@.^1@......?....... +6724 20.807345390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359491 12 -1 728663 0 0xffffffff 0 -1 728663 0 ff ff ff ff 57 1e 0b 00 00 00 00 00 ....W....... +6726 20.807861805 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359503 12 22 719138 0 0x00000016 0 22 719138 0 16 00 00 00 22 f9 0a 00 00 00 00 00 "....""......." +6728 20.808039904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359515 22 18 2069055 0 0x00000012 1 2069055 0 196609 0 12 00 00 00 3f 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +6730 20.808303118 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397479 12 -1 719138 0 0xffffffff 0 -1 719138 0 ff ff ff ff 22 f9 0a 00 00 00 00 00 "....""......." +6734 20.891135216 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397491 12 34 728664 0 0x00000022 0 34 728664 0 22 00 00 00 58 1e 0b 00 00 00 00 00 """...X......." +6736 20.891311884 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397503 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299565056 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 db 11 02 00 00 00 00 00 b6 f0 23 c3 9d 01 00 00 .....!...o3.................#..... +6738 20.891454935 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397537 12 67 728665 0 0x00000043 0 67 728665 0 43 00 00 00 59 1e 0b 00 00 00 00 00 C...Y....... +6740 20.891539574 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397549 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 db 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 9e c8 27 db ?.....3...|8...................=B.....&......... +6742 20.891665220 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359537 12 -1 728664 0 0xffffffff 0 -1 728664 0 ff ff ff ff 58 1e 0b 00 00 00 00 00 ....X....... +6744 20.891859770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359549 12 -1 728665 0 0xffffffff 0 -1 728665 0 ff ff ff ff 59 1e 0b 00 00 00 00 00 ....Y....... +6746 20.892934561 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359561 12 52 719139 0 0x00000034 0 52 719139 0 34 00 00 00 23 f9 0a 00 00 00 00 00 4...#....... +6748 20.893138170 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359573 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 db 11 02 00 00 00 00 00 00 00 0b 4e 7e 9f 4d 01 00 00 "0...Dk.................L."".([................N~." +6750 20.893399954 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397616 12 -1 719139 0 0xffffffff 0 -1 719139 0 ff ff ff ff 23 f9 0a 00 00 00 00 00 ....#....... +6752 20.894088268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397628 12 30 728666 0 0x0000001e 0 30 728666 0 1e 00 00 00 5a 1e 0b 00 00 00 00 00 ....Z....... +6754 20.894285440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397640 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1841233920 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +6756 20.894600391 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359625 12 -1 728666 0 0xffffffff 0 -1 728666 0 ff ff ff ff 5a 1e 0b 00 00 00 00 00 ....Z....... +6758 20.895295620 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359637 12 26 719140 0 0x0000001a 0 26 719140 0 1a 00 00 00 24 f9 0a 00 00 00 00 00 ....$....... +6760 20.895461321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359649 26 22 2069057 0 0x00000016 1 2069057 0 196609 0 16 00 00 00 41 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +6762 20.895713091 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397670 12 -1 719140 0 0xffffffff 0 -1 719140 0 ff ff ff ff 24 f9 0a 00 00 00 00 00 ....$....... +6764 20.909540415 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397682 12 26 728667 0 0x0000001a 0 26 728667 0 1a 00 00 00 5b 1e 0b 00 00 00 00 00 ....[....... +6766 20.909699440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397694 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1841102848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 92 1f 00 00 00 00 00 ....T.c@.^1@......C....... +6768 20.910062313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359675 12 -1 728667 0 0xffffffff 0 -1 728667 0 ff ff ff ff 5b 1e 0b 00 00 00 00 00 ....[....... +6770 20.910426855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359687 12 22 719141 0 0x00000016 0 22 719141 0 16 00 00 00 25 f9 0a 00 00 00 00 00 ....%....... +6772 20.910598040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359699 22 18 2069059 0 0x00000012 1 2069059 0 196609 0 12 00 00 00 43 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +6774 20.910831690 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397720 12 -1 719141 0 0xffffffff 0 -1 719141 0 ff ff ff ff 25 f9 0a 00 00 00 00 00 ....%....... +6777 20.935397148 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359721 12 -2 82720 82737 0xfffffffe 0 -2 82720 82737 fe ff ff ff 20 43 01 00 31 43 01 00 .... C..1C.. +6784 21.012677908 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397732 12 26 728668 0 0x0000001a 0 26 728668 0 1a 00 00 00 5c 1e 0b 00 00 00 00 00 ....\....... +6786 21.012943745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397744 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1840971776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 92 1f 00 00 00 00 00 ....T.c@.^1@......E....... +6788 21.013375998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359733 12 -1 728668 0 0xffffffff 0 -1 728668 0 ff ff ff ff 5c 1e 0b 00 00 00 00 00 ....\....... +6792 21.013872623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359745 12 22 719142 0 0x00000016 0 22 719142 0 16 00 00 00 26 f9 0a 00 00 00 00 00 ....&....... +6794 21.014548779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359757 22 18 2069061 0 0x00000012 1 2069061 0 196609 0 12 00 00 00 45 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +6796 21.014929533 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397770 12 -1 719142 0 0xffffffff 0 -1 719142 0 ff ff ff ff 26 f9 0a 00 00 00 00 00 ....&....... +6802 21.071208477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397782 12 -2 82738 82720 0xfffffffe 0 -2 82738 82720 fe ff ff ff 32 43 01 00 20 43 01 00 ....2C.. C.. +6804 21.116399527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397794 12 26 728669 0 0x0000001a 0 26 728669 0 1a 00 00 00 5d 1e 0b 00 00 00 00 00 ....]....... +6806 21.116595268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397806 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1840840704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 92 1f 00 00 00 00 00 ....T.c@.^1@......G....... +6808 21.117096663 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359779 12 -1 728669 0 0xffffffff 0 -1 728669 0 ff ff ff ff 5d 1e 0b 00 00 00 00 00 ....]....... +6810 21.117474079 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359791 12 22 719143 0 0x00000016 0 22 719143 0 16 00 00 00 27 f9 0a 00 00 00 00 00 ....'....... +6812 21.117647409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359803 22 18 2069063 0 0x00000012 1 2069063 0 196609 0 12 00 00 00 47 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +6814 21.117990971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397832 12 -1 719143 0 0xffffffff 0 -1 719143 0 ff ff ff ff 27 f9 0a 00 00 00 00 00 ....'....... +6820 21.196266174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397844 12 34 728670 0 0x00000022 0 34 728670 0 22 00 00 00 5e 1e 0b 00 00 00 00 00 """...^......." +6822 21.196490049 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397856 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299630592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dc 11 02 00 00 00 00 00 e8 f1 23 c3 9d 01 00 00 .....!...o3.................#..... +6824 21.196620464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397890 12 67 728671 0 0x00000043 0 67 728671 0 43 00 00 00 5f 1e 0b 00 00 00 00 00 C..._....... +6826 21.196707010 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397902 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dc 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 64 44 f3 39 db ?.....3...|8...................=B.....&......... +6828 21.196802378 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359825 12 -1 728670 0 0xffffffff 0 -1 728670 0 ff ff ff ff 5e 1e 0b 00 00 00 00 00 ....^....... +6830 21.197016478 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359837 12 -1 728671 0 0xffffffff 0 -1 728671 0 ff ff ff ff 5f 1e 0b 00 00 00 00 00 ...._....... +6832 21.197832108 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359849 12 52 719144 0 0x00000034 0 52 719144 0 34 00 00 00 28 f9 0a 00 00 00 00 00 4...(....... +6834 21.197985888 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359861 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dc 11 02 00 00 00 00 00 00 00 49 d9 ac 9f 4d 01 00 00 "0...Dk.................L."".([...............I..." +6836 21.198240519 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397969 12 -1 719144 0 0xffffffff 0 -1 719144 0 ff ff ff ff 28 f9 0a 00 00 00 00 00 ....(....... +6838 21.199234724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397981 12 30 728672 0 0x0000001e 0 30 728672 0 1e 00 00 00 60 1e 0b 00 00 00 00 00 ....`....... +6840 21.199378490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333397993 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1840709632 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +6842 21.199647188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359913 12 -1 728672 0 0xffffffff 0 -1 728672 0 ff ff ff ff 60 1e 0b 00 00 00 00 00 ....`....... +6844 21.200101614 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359925 12 26 719145 0 0x0000001a 0 26 719145 0 1a 00 00 00 29 f9 0a 00 00 00 00 00 ....)....... +6846 21.200244188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359937 26 22 2069065 0 0x00000016 1 2069065 0 196609 0 16 00 00 00 49 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +6848 21.200484037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398023 12 -1 719145 0 0xffffffff 0 -1 719145 0 ff ff ff ff 29 f9 0a 00 00 00 00 00 ....)....... +6850 21.220328569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398035 12 26 728673 0 0x0000001a 0 26 728673 0 1a 00 00 00 61 1e 0b 00 00 00 00 00 ....a....... +6852 21.220489740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398047 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1840578560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 92 1f 00 00 00 00 00 ....T.c@.^1@......K....... +6854 21.220839739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359963 12 -1 728673 0 0xffffffff 0 -1 728673 0 ff ff ff ff 61 1e 0b 00 00 00 00 00 ....a....... +6856 21.221168995 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359975 12 22 719146 0 0x00000016 0 22 719146 0 16 00 00 00 2a f9 0a 00 00 00 00 00 ....*....... +6858 21.221330643 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377359987 22 18 2069067 0 0x00000012 1 2069067 0 196609 0 12 00 00 00 4b 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +6860 21.221672773 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398073 12 -1 719146 0 0xffffffff 0 -1 719146 0 ff ff ff ff 2a f9 0a 00 00 00 00 00 ....*....... +6865 21.322828293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398085 12 26 728674 0 0x0000001a 0 26 728674 0 1a 00 00 00 62 1e 0b 00 00 00 00 00 ....b....... +6867 21.323009491 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398097 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1840447488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 92 1f 00 00 00 00 00 ....T.c@.^1@......M....... +6869 21.323361158 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360009 12 -1 728674 0 0xffffffff 0 -1 728674 0 ff ff ff ff 62 1e 0b 00 00 00 00 00 ....b....... +6871 21.323950291 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360021 12 22 719147 0 0x00000016 0 22 719147 0 16 00 00 00 2b f9 0a 00 00 00 00 00 ....+....... +6873 21.324096680 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360033 22 18 2069069 0 0x00000012 1 2069069 0 196609 0 12 00 00 00 4d 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +6875 21.324357271 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398123 12 -1 719147 0 0xffffffff 0 -1 719147 0 ff ff ff ff 2b f9 0a 00 00 00 00 00 ....+....... +6880 21.426053524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398135 12 26 728675 0 0x0000001a 0 26 728675 0 1a 00 00 00 63 1e 0b 00 00 00 00 00 ....c....... +6882 21.426242590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398147 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1840316416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 92 1f 00 00 00 00 00 ....T.c@.^1@......O....... +6884 21.426821709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360055 12 -1 728675 0 0xffffffff 0 -1 728675 0 ff ff ff ff 63 1e 0b 00 00 00 00 00 ....c....... +6886 21.427173853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360067 12 22 719148 0 0x00000016 0 22 719148 0 16 00 00 00 2c f9 0a 00 00 00 00 00 ....,....... +6888 21.427336216 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360079 22 18 2069071 0 0x00000012 1 2069071 0 196609 0 12 00 00 00 4f 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +6890 21.427966595 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398173 12 -1 719148 0 0xffffffff 0 -1 719148 0 ff ff ff ff 2c f9 0a 00 00 00 00 00 ....,....... +6895 21.436357498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360101 12 -2 82721 82738 0xfffffffe 0 -2 82721 82738 fe ff ff ff 21 43 01 00 32 43 01 00 ....!C..2C.. +6900 21.500650644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398185 12 34 728676 0 0x00000022 0 34 728676 0 22 00 00 00 64 1e 0b 00 00 00 00 00 """...d......." +6902 21.500907183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398197 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299696128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 dd 11 02 00 00 00 00 00 17 f3 23 c3 9d 01 00 00 .....!...o3.................#..... +6904 21.501096487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398231 12 67 728677 0 0x00000043 0 67 728677 0 43 00 00 00 65 1e 0b 00 00 00 00 00 C...e....... +6906 21.501217604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398243 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 dd 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 5c 1a 4c db ?.....3...|8...................=B.....&......... +6907 21.501297474 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360113 12 -1 728676 0 0xffffffff 0 -1 728676 0 ff ff ff ff 64 1e 0b 00 00 00 00 00 ....d....... +6908 21.501482010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360125 12 -1 728677 0 0xffffffff 0 -1 728677 0 ff ff ff ff 65 1e 0b 00 00 00 00 00 ....e....... +6911 21.502532482 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360137 12 52 719149 0 0x00000034 0 52 719149 0 34 00 00 00 2d f9 0a 00 00 00 00 00 4...-....... +6913 21.502823830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360149 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 dd 11 02 00 00 00 00 00 00 00 b9 58 db 9f 4d 01 00 00 "0...Dk.................L."".([................X.." +6916 21.503105164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398310 12 -1 719149 0 0xffffffff 0 -1 719149 0 ff ff ff ff 2d f9 0a 00 00 00 00 00 ....-....... +6917 21.504273653 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398322 12 30 728678 0 0x0000001e 0 30 728678 0 1e 00 00 00 66 1e 0b 00 00 00 00 00 ....f....... +6918 21.504433393 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398334 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1840185344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +6919 21.504768133 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360201 12 -1 728678 0 0xffffffff 0 -1 728678 0 ff ff ff ff 66 1e 0b 00 00 00 00 00 ....f....... +6921 21.505187273 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360213 12 26 719150 0 0x0000001a 0 26 719150 0 1a 00 00 00 2e f9 0a 00 00 00 00 00 ............ +6923 21.505352259 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360225 26 22 2069073 0 0x00000016 1 2069073 0 196609 0 16 00 00 00 51 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +6925 21.505626440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398364 12 -1 719150 0 0xffffffff 0 -1 719150 0 ff ff ff ff 2e f9 0a 00 00 00 00 00 ............ +6929 21.529752016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398376 12 26 728679 0 0x0000001a 0 26 728679 0 1a 00 00 00 67 1e 0b 00 00 00 00 00 ....g....... +6931 21.529927492 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398388 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1840054272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 92 1f 00 00 00 00 00 ....T.c@.^1@......S....... +6933 21.530277252 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360251 12 -1 728679 0 0xffffffff 0 -1 728679 0 ff ff ff ff 67 1e 0b 00 00 00 00 00 ....g....... +6935 21.530680895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360263 12 22 719151 0 0x00000016 0 22 719151 0 16 00 00 00 2f f9 0a 00 00 00 00 00 ..../....... +6937 21.530844927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360275 22 18 2069075 0 0x00000012 1 2069075 0 196609 0 12 00 00 00 53 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +6939 21.531270266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398414 12 -1 719151 0 0xffffffff 0 -1 719151 0 ff ff ff ff 2f f9 0a 00 00 00 00 00 ..../....... +6945 21.571695328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398426 12 -2 82739 82721 0xfffffffe 0 -2 82739 82721 fe ff ff ff 33 43 01 00 21 43 01 00 ....3C..!C.. +6948 21.633016109 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398438 12 26 728680 0 0x0000001a 0 26 728680 0 1a 00 00 00 68 1e 0b 00 00 00 00 00 ....h....... +6950 21.633236885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398450 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1839923200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 92 1f 00 00 00 00 00 ....T.c@.^1@......U....... +6952 21.634032011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360297 12 -1 728680 0 0xffffffff 0 -1 728680 0 ff ff ff ff 68 1e 0b 00 00 00 00 00 ....h....... +6954 21.634380817 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360309 12 22 719152 0 0x00000016 0 22 719152 0 16 00 00 00 30 f9 0a 00 00 00 00 00 ....0....... +6956 21.634557962 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360321 22 18 2069077 0 0x00000012 1 2069077 0 196609 0 12 00 00 00 55 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +6958 21.634805441 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398476 12 -1 719152 0 0xffffffff 0 -1 719152 0 ff ff ff ff 30 f9 0a 00 00 00 00 00 ....0....... +6965 21.737108231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398488 12 26 728681 0 0x0000001a 0 26 728681 0 1a 00 00 00 69 1e 0b 00 00 00 00 00 ....i....... +6967 21.737439394 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398500 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1839792128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 92 1f 00 00 00 00 00 ....T.c@.^1@......W....... +6969 21.737860918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360343 12 -1 728681 0 0xffffffff 0 -1 728681 0 ff ff ff ff 69 1e 0b 00 00 00 00 00 ....i....... +6971 21.738654137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360355 12 22 719153 0 0x00000016 0 22 719153 0 16 00 00 00 31 f9 0a 00 00 00 00 00 ....1....... +6973 21.738864899 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360367 22 18 2069079 0 0x00000012 1 2069079 0 196609 0 12 00 00 00 57 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +6975 21.739279270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398526 12 -1 719153 0 0xffffffff 0 -1 719153 0 ff ff ff ff 31 f9 0a 00 00 00 00 00 ....1....... +6979 21.805505753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398538 12 34 728682 0 0x00000022 0 34 728682 0 22 00 00 00 6a 1e 0b 00 00 00 00 00 """...j......." +6981 21.805843592 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398550 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299761664 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 de 11 02 00 00 00 00 00 48 f4 23 c3 9d 01 00 00 .....!...o3...............H.#..... +6983 21.806034088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398584 12 67 728683 0 0x00000043 0 67 728683 0 43 00 00 00 6b 1e 0b 00 00 00 00 00 C...k....... +6985 21.806145191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398596 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 de 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 5c 47 5e db ?.....3...|8...................=B.....&......... +6987 21.806260109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360389 12 -1 728682 0 0xffffffff 0 -1 728682 0 ff ff ff ff 6a 1e 0b 00 00 00 00 00 ....j....... +6989 21.806502581 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360401 12 -1 728683 0 0xffffffff 0 -1 728683 0 ff ff ff ff 6b 1e 0b 00 00 00 00 00 ....k....... +6991 21.807181597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360413 12 52 719154 0 0x00000034 0 52 719154 0 34 00 00 00 32 f9 0a 00 00 00 00 00 4...2....... +6993 21.807381630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360425 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 de 11 02 00 00 00 00 00 00 00 43 d6 09 a0 4d 01 00 00 "0...Dk.................L."".([...............C..." +6995 21.807701588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398663 12 -1 719154 0 0xffffffff 0 -1 719154 0 ff ff ff ff 32 f9 0a 00 00 00 00 00 ....2....... +6997 21.808798075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398675 12 30 728684 0 0x0000001e 0 30 728684 0 1e 00 00 00 6c 1e 0b 00 00 00 00 00 ....l....... +6999 21.809056282 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398687 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1839661056 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +7001 21.809404612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360477 12 -1 728684 0 0xffffffff 0 -1 728684 0 ff ff ff ff 6c 1e 0b 00 00 00 00 00 ....l....... +7003 21.809819221 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360489 12 26 719155 0 0x0000001a 0 26 719155 0 1a 00 00 00 33 f9 0a 00 00 00 00 00 ....3....... +7005 21.809962749 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360501 26 22 2069081 0 0x00000016 1 2069081 0 196609 0 16 00 00 00 59 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +7007 21.810250998 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398717 12 -1 719155 0 0xffffffff 0 -1 719155 0 ff ff ff ff 33 f9 0a 00 00 00 00 00 ....3....... +7012 21.841450930 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398729 12 26 728685 0 0x0000001a 0 26 728685 0 1a 00 00 00 6d 1e 0b 00 00 00 00 00 ....m....... +7014 21.841646910 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398741 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1839529984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 92 1f 00 00 00 00 00 ....T.c@.^1@......[....... +7016 21.843841791 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360527 12 -1 728685 0 0xffffffff 0 -1 728685 0 ff ff ff ff 6d 1e 0b 00 00 00 00 00 ....m....... +7018 21.844415665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360539 12 22 719156 0 0x00000016 0 22 719156 0 16 00 00 00 34 f9 0a 00 00 00 00 00 ....4....... +7020 21.844578743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360551 22 18 2069083 0 0x00000012 1 2069083 0 196609 0 12 00 00 00 5b 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +7022 21.844821453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398767 12 -1 719156 0 0xffffffff 0 -1 719156 0 ff ff ff ff 34 f9 0a 00 00 00 00 00 ....4....... +7029 21.937037945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360573 12 -2 82722 82739 0xfffffffe 0 -2 82722 82739 fe ff ff ff 22 43 01 00 33 43 01 00 "....""C..3C.." +7033 21.946355581 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398779 12 26 728686 0 0x0000001a 0 26 728686 0 1a 00 00 00 6e 1e 0b 00 00 00 00 00 ....n....... +7035 21.946598053 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398791 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1839398912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 92 1f 00 00 00 00 00 ....T.c@.^1@......]....... +7037 21.946846485 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360585 12 -1 728686 0 0xffffffff 0 -1 728686 0 ff ff ff ff 6e 1e 0b 00 00 00 00 00 ....n....... +7039 21.947337151 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360597 12 22 719157 0 0x00000016 0 22 719157 0 16 00 00 00 35 f9 0a 00 00 00 00 00 ....5....... +7041 21.947541714 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360609 22 18 2069085 0 0x00000012 1 2069085 0 196609 0 12 00 00 00 5d 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +7043 21.947912455 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398817 12 -1 719157 0 0xffffffff 0 -1 719157 0 ff ff ff ff 35 f9 0a 00 00 00 00 00 ....5....... +7050 22.049592257 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398829 12 26 728687 0 0x0000001a 0 26 728687 0 1a 00 00 00 6f 1e 0b 00 00 00 00 00 ....o....... +7052 22.049787283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398841 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1839267840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 92 1f 00 00 00 00 00 ....T.c@.^1@......_....... +7054 22.050304413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360631 12 -1 728687 0 0xffffffff 0 -1 728687 0 ff ff ff ff 6f 1e 0b 00 00 00 00 00 ....o....... +7056 22.050582886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360643 12 22 719158 0 0x00000016 0 22 719158 0 16 00 00 00 36 f9 0a 00 00 00 00 00 ....6....... +7058 22.050742388 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360655 22 18 2069087 0 0x00000012 1 2069087 0 196609 0 12 00 00 00 5f 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +7060 22.051025391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398867 12 -1 719158 0 0xffffffff 0 -1 719158 0 ff ff ff ff 36 f9 0a 00 00 00 00 00 ....6....... +7064 22.072351694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398879 12 -2 82740 82722 0xfffffffe 0 -2 82740 82722 fe ff ff ff 34 43 01 00 22 43 01 00 "....4C..""C.." +7066 22.110220194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398891 12 34 728688 0 0x00000022 0 34 728688 0 22 00 00 00 70 1e 0b 00 00 00 00 00 """...p......." +7068 22.110459328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398903 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 299827200 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 df 11 02 00 00 00 00 00 7a f5 23 c3 9d 01 00 00 .....!...o3...............z.#..... +7070 22.110602140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398937 12 67 728689 0 0x00000043 0 67 728689 0 43 00 00 00 71 1e 0b 00 00 00 00 00 C...q....... +7072 22.110715389 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333398949 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 df 11 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 42 70 70 db ?.....3...|8...................=B.....&......... +7074 22.110849380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360677 12 -1 728688 0 0xffffffff 0 -1 728688 0 ff ff ff ff 70 1e 0b 00 00 00 00 00 ....p....... +7076 22.111094475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360689 12 -1 728689 0 0xffffffff 0 -1 728689 0 ff ff ff ff 71 1e 0b 00 00 00 00 00 ....q....... +7078 22.111875772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360701 12 52 719159 0 0x00000034 0 52 719159 0 34 00 00 00 37 f9 0a 00 00 00 00 00 4...7....... +7080 22.112098932 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360713 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 df 11 02 00 00 00 00 00 00 00 38 54 38 a0 4d 01 00 00 "0...Dk.................L."".([...............8T8." +7082 22.112350225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399016 12 -1 719159 0 0xffffffff 0 -1 719159 0 ff ff ff ff 37 f9 0a 00 00 00 00 00 ....7....... +7084 22.113229990 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399028 12 30 728690 0 0x0000001e 0 30 728690 0 1e 00 00 00 72 1e 0b 00 00 00 00 00 ....r....... +7086 22.113434315 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399040 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1839136768 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 92 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +7088 22.113791704 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360765 12 -1 728690 0 0xffffffff 0 -1 728690 0 ff ff ff ff 72 1e 0b 00 00 00 00 00 ....r....... +7090 22.114380598 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360777 12 26 719160 0 0x0000001a 0 26 719160 0 1a 00 00 00 38 f9 0a 00 00 00 00 00 ....8....... +7092 22.114521027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360789 26 22 2069089 0 0x00000016 1 2069089 0 196609 0 16 00 00 00 61 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +7094 22.114702463 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399070 12 -1 719160 0 0xffffffff 0 -1 719160 0 ff ff ff ff 38 f9 0a 00 00 00 00 00 ....8....... +7102 22.152558565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399082 12 26 728691 0 0x0000001a 0 26 728691 0 1a 00 00 00 73 1e 0b 00 00 00 00 00 ....s....... +7105 22.153567076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399094 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1839005696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 92 1f 00 00 00 00 00 ....T.c@.^1@......c....... +7107 22.154007912 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360815 12 -1 728691 0 0xffffffff 0 -1 728691 0 ff ff ff ff 73 1e 0b 00 00 00 00 00 ....s....... +7109 22.154368162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360827 12 22 719161 0 0x00000016 0 22 719161 0 16 00 00 00 39 f9 0a 00 00 00 00 00 ....9....... +7111 22.154527903 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377360839 22 18 2069091 0 0x00000012 1 2069091 0 196609 0 12 00 00 00 63 92 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +7113 22.154834509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399120 12 -1 719161 0 0xffffffff 0 -1 719161 0 ff ff ff ff 39 f9 0a 00 00 00 00 00 ....9....... +7119 22.256584406 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333399132 12 26 728692 0 0x0000001a 0 26 728692 0 1a 00 00 00 74 1e 0b 00 00 00 00 00 ....t....... diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-payload-packets.tsv b/captures/019-loopback-write-test-int-101-rerun/tcp-payload-packets.tsv new file mode 100644 index 0000000..a95374e --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-payload-packets.tsv @@ -0,0 +1,2847 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +5 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3333374343 12 1a000000e61c0b0000000000 ............ +7 0.000179052 127.0.0.1:57415 127.0.0.1:57433 3333374355 26 16000000548f6340e25e314001000300000025901f0000000000 ....T.c@.^1@......%....... +9 0.000552416 127.0.0.1:57433 127.0.0.1:57415 377340813 12 ffffffffe61c0b0000000000 ............ +11 0.001102686 127.0.0.1:57433 127.0.0.1:57415 377340825 12 16000000d2f70a0000000000 ............ +13 0.001311541 127.0.0.1:57433 127.0.0.1:57415 377340837 22 1200000025901f000000000001000300000000000000 ....%................. +15 0.001587391 127.0.0.1:57415 127.0.0.1:57433 3333374381 12 ffffffffd2f70a0000000000 ............ +17 0.019655704 127.0.0.1:57415 127.0.0.1:57433 3333374393 12 feffffff08430100f6420100 .....C...B.. +21 0.104050875 127.0.0.1:57415 127.0.0.1:57433 3333374405 12 1a000000e71c0b0000000000 ............ +23 0.104292870 127.0.0.1:57415 127.0.0.1:57433 3333374417 26 16000000548f6340e25e314001000300000027901f0000000000 ....T.c@.^1@......'....... +25 0.104665995 127.0.0.1:57433 127.0.0.1:57415 377340859 12 ffffffffe71c0b0000000000 ............ +27 0.105087996 127.0.0.1:57433 127.0.0.1:57415 377340871 12 16000000d3f70a0000000000 ............ +29 0.105263472 127.0.0.1:57433 127.0.0.1:57415 377340883 22 1200000027901f000000000001000300000000000000 ....'................. +31 0.105554104 127.0.0.1:57415 127.0.0.1:57433 3333374443 12 ffffffffd3f70a0000000000 ............ +53 0.127744913 127.0.0.1:57415 127.0.0.1:57433 3333374455 12 65000000e81c0b0000000000 e........... +55 0.127947569 127.0.0.1:57415 127.0.0.1:57433 3333374467 101 1e0000001c2118d0c46f33bb01000300000097110200000000009b9f23c39d01 .....!...o3.................#.....?.....3...|8.. +57 0.128386497 127.0.0.1:57433 127.0.0.1:57415 377340905 12 ffffffffe81c0b0000000000 ............ +59 0.129236937 127.0.0.1:57433 127.0.0.1:57415 377340917 12 34000000d4f70a0000000000 4........... +61 0.129414320 127.0.0.1:57433 127.0.0.1:57415 377340929 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............t... +67 0.130416870 127.0.0.1:57415 127.0.0.1:57433 3333374568 12 ffffffffd4f70a0000000000 ............ +75 0.131664038 127.0.0.1:57415 127.0.0.1:57433 3333374580 12 1e000000e91c0b0000000000 ............ +77 0.131865978 127.0.0.1:57415 127.0.0.1:57433 3333374592 30 1a00000055ceff62b21b3a5001000300000029901f000000000000000000 ....U..b..:P......)........... +79 0.132152557 127.0.0.1:57433 127.0.0.1:57415 377340981 12 ffffffffe91c0b0000000000 ............ +81 0.132600069 127.0.0.1:57433 127.0.0.1:57415 377340993 12 1a000000d5f70a0000000000 ............ +83 0.132740974 127.0.0.1:57433 127.0.0.1:57415 377341005 26 1600000029901f00000000000100030000000000000000000000 ....)..................... +85 0.133094072 127.0.0.1:57415 127.0.0.1:57433 3333374622 12 ffffffffd5f70a0000000000 ............ +91 0.208076000 127.0.0.1:57415 127.0.0.1:57433 3333374634 12 1a000000ea1c0b0000000000 ............ +93 0.208369970 127.0.0.1:57415 127.0.0.1:57433 3333374646 26 16000000548f6340e25e31400100030000002b901f0000000000 ....T.c@.^1@......+....... +95 0.208716393 127.0.0.1:57433 127.0.0.1:57415 377341031 12 ffffffffea1c0b0000000000 ............ +97 0.209105015 127.0.0.1:57433 127.0.0.1:57415 377341043 12 16000000d6f70a0000000000 ............ +99 0.209281206 127.0.0.1:57433 127.0.0.1:57415 377341055 22 120000002b901f000000000001000300000000000000 ....+................. +101 0.209580660 127.0.0.1:57415 127.0.0.1:57433 3333374672 12 ffffffffd6f70a0000000000 ............ +107 0.311349869 127.0.0.1:57415 127.0.0.1:57433 3333374684 12 1a000000eb1c0b0000000000 ............ +109 0.311524868 127.0.0.1:57415 127.0.0.1:57433 3333374696 26 16000000548f6340e25e31400100030000002d901f0000000000 ....T.c@.^1@......-....... +111 0.311853409 127.0.0.1:57433 127.0.0.1:57415 377341077 12 ffffffffeb1c0b0000000000 ............ +113 0.313520670 127.0.0.1:57433 127.0.0.1:57415 377341089 12 16000000d7f70a0000000000 ............ +115 0.313666344 127.0.0.1:57433 127.0.0.1:57415 377341101 22 120000002d901f000000000001000300000000000000 ....-................. +117 0.314015388 127.0.0.1:57415 127.0.0.1:57433 3333374722 12 ffffffffd7f70a0000000000 ............ +121 0.404793501 127.0.0.1:57433 127.0.0.1:57415 377341123 12 fefffffff742010008430100 .....B...C.. +127 0.416707516 127.0.0.1:57415 127.0.0.1:57433 3333374734 12 1a000000ec1c0b0000000000 ............ +129 0.416937828 127.0.0.1:57415 127.0.0.1:57433 3333374746 26 16000000548f6340e25e31400100030000002f901f0000000000 ....T.c@.^1@....../....... +131 0.417168379 127.0.0.1:57433 127.0.0.1:57415 377341135 12 ffffffffec1c0b0000000000 ............ +133 0.417649746 127.0.0.1:57433 127.0.0.1:57415 377341147 12 16000000d8f70a0000000000 ............ +135 0.417816639 127.0.0.1:57433 127.0.0.1:57415 377341159 22 120000002f901f000000000001000300000000000000 ..../................. +137 0.418119431 127.0.0.1:57415 127.0.0.1:57433 3333374772 12 ffffffffd8f70a0000000000 ............ +139 0.432833195 127.0.0.1:57415 127.0.0.1:57433 3333374784 12 22000000ed1c0b0000000000 "........... +141 0.433006287 127.0.0.1:57415 127.0.0.1:57433 3333374796 34 1e0000001c2118d0c46f33bb0100030000009811020000000000cca023c39d01 .....!...o3.................#..... +143 0.433143139 127.0.0.1:57415 127.0.0.1:57433 3333374830 12 43000000ee1c0b0000000000 C........... +145 0.433227539 127.0.0.1:57415 127.0.0.1:57433 3333374842 67 3f000000980433cb0cb47c38010003000000010000000098110200000000003d ?.....3...|8...................=B.....&......... +147 0.433302164 127.0.0.1:57433 127.0.0.1:57415 377341181 12 ffffffffed1c0b0000000000 ............ +149 0.433457136 127.0.0.1:57433 127.0.0.1:57415 377341193 12 ffffffffee1c0b0000000000 ............ +151 0.435561895 127.0.0.1:57433 127.0.0.1:57415 377341205 12 34000000d9f70a0000000000 4........... +153 0.435723066 127.0.0.1:57433 127.0.0.1:57415 377341217 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................L. +155 0.436121941 127.0.0.1:57415 127.0.0.1:57433 3333374909 12 ffffffffd9f70a0000000000 ............ +157 0.437123060 127.0.0.1:57415 127.0.0.1:57433 3333374921 12 1e000000ef1c0b0000000000 ............ +159 0.437268496 127.0.0.1:57415 127.0.0.1:57433 3333374933 30 1a00000055ceff62b21b3a5001000300000031901f000000000000000000 ....U..b..:P......1........... +161 0.437573195 127.0.0.1:57433 127.0.0.1:57415 377341269 12 ffffffffef1c0b0000000000 ............ +163 0.438045025 127.0.0.1:57433 127.0.0.1:57415 377341281 12 1a000000daf70a0000000000 ............ +165 0.438187838 127.0.0.1:57433 127.0.0.1:57415 377341293 26 1600000031901f00000000000100030000000000000000000000 ....1..................... +167 0.438441515 127.0.0.1:57415 127.0.0.1:57433 3333374963 12 ffffffffdaf70a0000000000 ............ +173 0.520865440 127.0.0.1:57415 127.0.0.1:57433 3333374975 12 feffffff09430100f7420100 .....C...B.. +177 0.521158457 127.0.0.1:57415 127.0.0.1:57433 3333374987 12 1a000000f01c0b0000000000 ............ +179 0.521352053 127.0.0.1:57415 127.0.0.1:57433 3333374999 26 16000000548f6340e25e314001000300000033901f0000000000 ....T.c@.^1@......3....... +181 0.521846294 127.0.0.1:57433 127.0.0.1:57415 377341319 12 fffffffff01c0b0000000000 ............ +183 0.524411678 127.0.0.1:57433 127.0.0.1:57415 377341331 12 16000000dbf70a0000000000 ............ +185 0.524608374 127.0.0.1:57433 127.0.0.1:57415 377341343 22 1200000033901f000000000001000300000000000000 ....3................. +187 0.524821758 127.0.0.1:57415 127.0.0.1:57433 3333375025 12 ffffffffdbf70a0000000000 ............ +189 0.627282619 127.0.0.1:57415 127.0.0.1:57433 3333375037 12 1a000000f11c0b0000000000 ............ +191 0.627604723 127.0.0.1:57415 127.0.0.1:57433 3333375049 26 16000000548f6340e25e314001000300000035901f0000000000 ....T.c@.^1@......5....... +193 0.628065109 127.0.0.1:57433 127.0.0.1:57415 377341365 12 fffffffff11c0b0000000000 ............ +195 0.631654263 127.0.0.1:57433 127.0.0.1:57415 377341377 12 16000000dcf70a0000000000 ............ +197 0.631953001 127.0.0.1:57433 127.0.0.1:57415 377341389 22 1200000035901f000000000001000300000000000000 ....5................. +199 0.632214308 127.0.0.1:57415 127.0.0.1:57433 3333375075 12 ffffffffdcf70a0000000000 ............ +207 0.733321905 127.0.0.1:57415 127.0.0.1:57433 3333375087 12 1a000000f21c0b0000000000 ............ +209 0.733522177 127.0.0.1:57415 127.0.0.1:57433 3333375099 26 16000000548f6340e25e314001000300000037901f0000000000 ....T.c@.^1@......7....... +211 0.733834982 127.0.0.1:57433 127.0.0.1:57415 377341411 12 fffffffff21c0b0000000000 ............ +213 0.734311342 127.0.0.1:57433 127.0.0.1:57415 377341423 12 16000000ddf70a0000000000 ............ +215 0.734473467 127.0.0.1:57433 127.0.0.1:57415 377341435 22 1200000037901f000000000001000300000000000000 ....7................. +217 0.734894514 127.0.0.1:57415 127.0.0.1:57433 3333375125 12 ffffffffddf70a0000000000 ............ +219 0.739497900 127.0.0.1:57415 127.0.0.1:57433 3333375137 12 22000000f31c0b0000000000 "........... +221 0.739648581 127.0.0.1:57415 127.0.0.1:57433 3333375149 34 1e0000001c2118d0c46f33bb0100030000009911020000000000fea123c39d01 .....!...o3.................#..... +223 0.739803791 127.0.0.1:57415 127.0.0.1:57433 3333375183 12 43000000f41c0b0000000000 C........... +225 0.739890814 127.0.0.1:57415 127.0.0.1:57433 3333375195 67 3f000000980433cb0cb47c38010003000000010000000099110200000000003d ?.....3...|8...................=B.....&......... +226 0.739935875 127.0.0.1:57433 127.0.0.1:57415 377341457 12 fffffffff31c0b0000000000 ............ +229 0.740128994 127.0.0.1:57433 127.0.0.1:57415 377341469 12 fffffffff41c0b0000000000 ............ +231 0.741146803 127.0.0.1:57433 127.0.0.1:57415 377341481 12 34000000def70a0000000000 4........... +233 0.741324186 127.0.0.1:57433 127.0.0.1:57415 377341493 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............,k{. +235 0.741599083 127.0.0.1:57415 127.0.0.1:57433 3333375262 12 ffffffffdef70a0000000000 ............ +236 0.742555380 127.0.0.1:57415 127.0.0.1:57433 3333375274 12 1e000000f51c0b0000000000 ............ +238 0.742731094 127.0.0.1:57415 127.0.0.1:57433 3333375286 30 1a00000055ceff62b21b3a5001000300000039901f000000000000000000 ....U..b..:P......9........... +240 0.742934704 127.0.0.1:57433 127.0.0.1:57415 377341545 12 fffffffff51c0b0000000000 ............ +242 0.743303299 127.0.0.1:57433 127.0.0.1:57415 377341557 12 1a000000dff70a0000000000 ............ +244 0.743442297 127.0.0.1:57433 127.0.0.1:57415 377341569 26 1600000039901f00000000000100030000000000000000000000 ....9..................... +246 0.743748665 127.0.0.1:57415 127.0.0.1:57433 3333375316 12 ffffffffdff70a0000000000 ............ +252 0.836396694 127.0.0.1:57415 127.0.0.1:57433 3333375328 12 1a000000f61c0b0000000000 ............ +254 0.836706161 127.0.0.1:57415 127.0.0.1:57433 3333375340 26 16000000548f6340e25e31400100030000003b901f0000000000 ....T.c@.^1@......;....... +256 0.837062120 127.0.0.1:57433 127.0.0.1:57415 377341595 12 fffffffff61c0b0000000000 ............ +258 0.837703466 127.0.0.1:57433 127.0.0.1:57415 377341607 12 16000000e0f70a0000000000 ............ +260 0.837859392 127.0.0.1:57433 127.0.0.1:57415 377341619 22 120000003b901f000000000001000300000000000000 ....;................. +262 0.838161707 127.0.0.1:57415 127.0.0.1:57433 3333375366 12 ffffffffe0f70a0000000000 ............ +268 0.905499697 127.0.0.1:57433 127.0.0.1:57415 377341641 12 fefffffff842010009430100 .....B...C.. +272 0.939261913 127.0.0.1:57415 127.0.0.1:57433 3333375378 12 1a000000f71c0b0000000000 ............ +274 0.939434528 127.0.0.1:57415 127.0.0.1:57433 3333375390 26 16000000548f6340e25e31400100030000003d901f0000000000 ....T.c@.^1@......=....... +276 0.939697981 127.0.0.1:57433 127.0.0.1:57415 377341653 12 fffffffff71c0b0000000000 ............ +278 0.940181017 127.0.0.1:57433 127.0.0.1:57415 377341665 12 16000000e1f70a0000000000 ............ +280 0.940352440 127.0.0.1:57433 127.0.0.1:57415 377341677 22 120000003d901f000000000001000300000000000000 ....=................. +282 0.940654993 127.0.0.1:57415 127.0.0.1:57433 3333375416 12 ffffffffe1f70a0000000000 ............ +289 1.023510933 127.0.0.1:57415 127.0.0.1:57433 3333375428 12 feffffff0a430100f8420100 .....C...B.. +292 1.042470694 127.0.0.1:57415 127.0.0.1:57433 3333375440 12 1a000000f81c0b0000000000 ............ +294 1.042631149 127.0.0.1:57415 127.0.0.1:57433 3333375452 26 16000000548f6340e25e31400100030000003f901f0000000000 ....T.c@.^1@......?....... +296 1.043031216 127.0.0.1:57433 127.0.0.1:57415 377341699 12 fffffffff81c0b0000000000 ............ +298 1.043396473 127.0.0.1:57433 127.0.0.1:57415 377341711 12 16000000e2f70a0000000000 ............ +300 1.043559074 127.0.0.1:57433 127.0.0.1:57415 377341723 22 120000003f901f000000000001000300000000000000 ....?................. +302 1.043803215 127.0.0.1:57415 127.0.0.1:57433 3333375478 12 22000000f91c0b0000000000 "........... +304 1.044015646 127.0.0.1:57415 127.0.0.1:57433 3333375490 34 1e0000001c2118d0c46f33bb0100030000009a110200000000002fa323c39d01 .....!...o3.............../.#..... +306 1.044188738 127.0.0.1:57415 127.0.0.1:57433 3333375524 12 43000000fa1c0b0000000000 C........... +308 1.044275045 127.0.0.1:57415 127.0.0.1:57433 3333375536 67 3f000000980433cb0cb47c3801000300000001000000009a110200000000003d ?.....3...|8...................=B.....&......... +309 1.044318914 127.0.0.1:57433 127.0.0.1:57415 377341745 12 fffffffff91c0b0000000000 ............ +312 1.044532299 127.0.0.1:57433 127.0.0.1:57415 377341757 12 fffffffffa1c0b0000000000 ............ +313 1.044565678 127.0.0.1:57415 127.0.0.1:57433 3333375603 12 ffffffffe2f70a0000000000 ............ +315 1.045376301 127.0.0.1:57433 127.0.0.1:57415 377341769 12 34000000e3f70a0000000000 4........... +316 1.045532942 127.0.0.1:57433 127.0.0.1:57415 377341781 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............w... +317 1.045820713 127.0.0.1:57415 127.0.0.1:57433 3333375615 12 ffffffffe3f70a0000000000 ............ +318 1.046695232 127.0.0.1:57415 127.0.0.1:57433 3333375627 12 1e000000fb1c0b0000000000 ............ +320 1.046838999 127.0.0.1:57415 127.0.0.1:57433 3333375639 30 1a00000055ceff62b21b3a5001000300000041901f000000000000000000 ....U..b..:P......A........... +322 1.047178268 127.0.0.1:57433 127.0.0.1:57415 377341833 12 fffffffffb1c0b0000000000 ............ +324 1.048608065 127.0.0.1:57433 127.0.0.1:57415 377341845 12 1a000000e4f70a0000000000 ............ +326 1.048752069 127.0.0.1:57433 127.0.0.1:57415 377341857 26 1600000041901f00000000000100030000000000000000000000 ....A..................... +328 1.049081326 127.0.0.1:57415 127.0.0.1:57433 3333375669 12 ffffffffe4f70a0000000000 ............ +334 1.146004677 127.0.0.1:57415 127.0.0.1:57433 3333375681 12 1a000000fc1c0b0000000000 ............ +336 1.146188498 127.0.0.1:57415 127.0.0.1:57433 3333375693 26 16000000548f6340e25e314001000300000043901f0000000000 ....T.c@.^1@......C....... +338 1.146564722 127.0.0.1:57433 127.0.0.1:57415 377341883 12 fffffffffc1c0b0000000000 ............ +340 1.146958590 127.0.0.1:57433 127.0.0.1:57415 377341895 12 16000000e5f70a0000000000 ............ +342 1.147106171 127.0.0.1:57433 127.0.0.1:57415 377341907 22 1200000043901f000000000001000300000000000000 ....C................. +344 1.147373199 127.0.0.1:57415 127.0.0.1:57433 3333375719 12 ffffffffe5f70a0000000000 ............ +348 1.250275135 127.0.0.1:57415 127.0.0.1:57433 3333375731 12 1a000000fd1c0b0000000000 ............ +350 1.250439882 127.0.0.1:57415 127.0.0.1:57433 3333375743 26 16000000548f6340e25e314001000300000045901f0000000000 ....T.c@.^1@......E....... +352 1.250798702 127.0.0.1:57433 127.0.0.1:57415 377341929 12 fffffffffd1c0b0000000000 ............ +354 1.251162052 127.0.0.1:57433 127.0.0.1:57415 377341941 12 16000000e6f70a0000000000 ............ +356 1.251321554 127.0.0.1:57433 127.0.0.1:57415 377341953 22 1200000045901f000000000001000300000000000000 ....E................. +358 1.251528978 127.0.0.1:57415 127.0.0.1:57433 3333375769 12 ffffffffe6f70a0000000000 ............ +362 1.349023104 127.0.0.1:57415 127.0.0.1:57433 3333375781 12 65000000fe1c0b0000000000 e........... +364 1.349215269 127.0.0.1:57415 127.0.0.1:57433 3333375793 101 1e0000001c2118d0c46f33bb0100030000009b1102000000000060a423c39d01 .....!...o3...............`.#.....?.....3...|8.. +366 1.349617004 127.0.0.1:57433 127.0.0.1:57415 377341975 12 fffffffffe1c0b0000000000 ............ +368 1.350903273 127.0.0.1:57433 127.0.0.1:57415 377341987 12 34000000e7f70a0000000000 4........... +370 1.351069927 127.0.0.1:57433 127.0.0.1:57415 377341999 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................s.. +372 1.351366043 127.0.0.1:57415 127.0.0.1:57433 3333375894 12 ffffffffe7f70a0000000000 ............ +374 1.352317095 127.0.0.1:57415 127.0.0.1:57433 3333375906 12 1e000000ff1c0b0000000000 ............ +376 1.352472782 127.0.0.1:57415 127.0.0.1:57433 3333375918 30 1a00000055ceff62b21b3a5001000300000047901f000000000000000000 ....U..b..:P......G........... +378 1.352608681 127.0.0.1:57415 127.0.0.1:57433 3333375948 12 1a000000001d0b0000000000 ............ +380 1.352692604 127.0.0.1:57415 127.0.0.1:57433 3333375960 26 16000000548f6340e25e314001000300000049901f0000000000 ....T.c@.^1@......I....... +382 1.352959156 127.0.0.1:57433 127.0.0.1:57415 377342051 12 ffffffffff1c0b0000000000 ............ +384 1.353203773 127.0.0.1:57433 127.0.0.1:57415 377342063 12 30000000e8f70a0000000000 0........... +386 1.353349686 127.0.0.1:57433 127.0.0.1:57415 377342075 48 1600000047901f00000000000100030000000000000000000000120000004990 ....G.........................I................. +388 1.353606701 127.0.0.1:57433 127.0.0.1:57415 377342123 12 ffffffff001d0b0000000000 ............ +389 1.353643894 127.0.0.1:57415 127.0.0.1:57433 3333375986 12 ffffffffe8f70a0000000000 ............ +394 1.405652285 127.0.0.1:57433 127.0.0.1:57415 377342135 12 fefffffff94201000a430100 .....B...C.. +400 1.455731869 127.0.0.1:57415 127.0.0.1:57433 3333375998 12 1a000000011d0b0000000000 ............ +402 1.456007004 127.0.0.1:57415 127.0.0.1:57433 3333376010 26 16000000548f6340e25e31400100030000004b901f0000000000 ....T.c@.^1@......K....... +404 1.456328869 127.0.0.1:57433 127.0.0.1:57415 377342147 12 ffffffff011d0b0000000000 ............ +406 1.456811666 127.0.0.1:57433 127.0.0.1:57415 377342159 12 16000000e9f70a0000000000 ............ +408 1.456985235 127.0.0.1:57433 127.0.0.1:57415 377342171 22 120000004b901f000000000001000300000000000000 ....K................. +410 1.457254648 127.0.0.1:57415 127.0.0.1:57433 3333376036 12 ffffffffe9f70a0000000000 ............ +416 1.524308681 127.0.0.1:57415 127.0.0.1:57433 3333376048 12 feffffff0b430100f9420100 .....C...B.. +420 1.558611393 127.0.0.1:57415 127.0.0.1:57433 3333376060 12 1a000000021d0b0000000000 ............ +422 1.558790207 127.0.0.1:57415 127.0.0.1:57433 3333376072 26 16000000548f6340e25e31400100030000004d901f0000000000 ....T.c@.^1@......M....... +424 1.559190273 127.0.0.1:57433 127.0.0.1:57415 377342193 12 ffffffff021d0b0000000000 ............ +426 1.559581518 127.0.0.1:57433 127.0.0.1:57415 377342205 12 16000000eaf70a0000000000 ............ +428 1.559733391 127.0.0.1:57433 127.0.0.1:57415 377342217 22 120000004d901f000000000001000300000000000000 ....M................. +430 1.559967279 127.0.0.1:57415 127.0.0.1:57433 3333376098 12 ffffffffeaf70a0000000000 ............ +436 1.653919220 127.0.0.1:57415 127.0.0.1:57433 3333376110 12 65000000031d0b0000000000 e........... +438 1.654164076 127.0.0.1:57415 127.0.0.1:57433 3333376122 101 1e0000001c2118d0c46f33bb0100030000009c1102000000000091a523c39d01 .....!...o3.................#.....?.....3...|8.. +440 1.654508114 127.0.0.1:57433 127.0.0.1:57415 377342239 12 ffffffff031d0b0000000000 ............ +442 1.655914783 127.0.0.1:57433 127.0.0.1:57415 377342251 12 34000000ebf70a0000000000 4........... +444 1.656108141 127.0.0.1:57433 127.0.0.1:57415 377342263 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............`... +446 1.656383753 127.0.0.1:57415 127.0.0.1:57433 3333376223 12 ffffffffebf70a0000000000 ............ +448 1.657354355 127.0.0.1:57415 127.0.0.1:57433 3333376235 12 1e000000041d0b0000000000 ............ +450 1.657548904 127.0.0.1:57415 127.0.0.1:57433 3333376247 30 1a00000055ceff62b21b3a500100030000004f901f000000000000000000 ....U..b..:P......O........... +452 1.657848597 127.0.0.1:57433 127.0.0.1:57415 377342315 12 ffffffff041d0b0000000000 ............ +454 1.658446550 127.0.0.1:57433 127.0.0.1:57415 377342327 12 1a000000ecf70a0000000000 ............ +456 1.658589840 127.0.0.1:57433 127.0.0.1:57415 377342339 26 160000004f901f00000000000100030000000000000000000000 ....O..................... +458 1.658927917 127.0.0.1:57415 127.0.0.1:57433 3333376277 12 ffffffffecf70a0000000000 ............ +460 1.661575794 127.0.0.1:57415 127.0.0.1:57433 3333376289 12 1a000000051d0b0000000000 ............ +462 1.661782265 127.0.0.1:57415 127.0.0.1:57433 3333376301 26 16000000548f6340e25e314001000300000051901f0000000000 ....T.c@.^1@......Q....... +464 1.662124157 127.0.0.1:57433 127.0.0.1:57415 377342365 12 ffffffff051d0b0000000000 ............ +466 1.662424803 127.0.0.1:57433 127.0.0.1:57415 377342377 12 16000000edf70a0000000000 ............ +468 1.662587881 127.0.0.1:57433 127.0.0.1:57415 377342389 22 1200000051901f000000000001000300000000000000 ....Q................. +470 1.662834644 127.0.0.1:57415 127.0.0.1:57433 3333376327 12 ffffffffedf70a0000000000 ............ +474 1.766540527 127.0.0.1:57415 127.0.0.1:57433 3333376339 12 1a000000061d0b0000000000 ............ +476 1.766779900 127.0.0.1:57415 127.0.0.1:57433 3333376351 26 16000000548f6340e25e314001000300000053901f0000000000 ....T.c@.^1@......S....... +478 1.767153025 127.0.0.1:57433 127.0.0.1:57415 377342411 12 ffffffff061d0b0000000000 ............ +480 1.767512560 127.0.0.1:57433 127.0.0.1:57415 377342423 12 16000000eef70a0000000000 ............ +482 1.767673969 127.0.0.1:57433 127.0.0.1:57415 377342435 22 1200000053901f000000000001000300000000000000 ....S................. +484 1.767981768 127.0.0.1:57415 127.0.0.1:57433 3333376377 12 ffffffffeef70a0000000000 ............ +574 1.869810581 127.0.0.1:57415 127.0.0.1:57433 3333376389 12 1a000000071d0b0000000000 ............ +576 1.869986534 127.0.0.1:57415 127.0.0.1:57433 3333376401 26 16000000548f6340e25e314001000300000055901f0000000000 ....T.c@.^1@......U....... +578 1.870354176 127.0.0.1:57433 127.0.0.1:57415 377342457 12 ffffffff071d0b0000000000 ............ +580 1.870706081 127.0.0.1:57433 127.0.0.1:57415 377342469 12 16000000eff70a0000000000 ............ +582 1.870870590 127.0.0.1:57433 127.0.0.1:57415 377342481 22 1200000055901f000000000001000300000000000000 ....U................. +584 1.871265888 127.0.0.1:57415 127.0.0.1:57433 3333376427 12 ffffffffeff70a0000000000 ............ +589 1.906534672 127.0.0.1:57433 127.0.0.1:57415 377342503 12 fefffffffa4201000b430100 .....B...C.. +722 1.959002733 127.0.0.1:57415 127.0.0.1:57433 3333376439 12 22000000081d0b0000000000 "........... +724 1.959163189 127.0.0.1:57415 127.0.0.1:57433 3333376451 34 1e0000001c2118d0c46f33bb0100030000009d11020000000000c2a623c39d01 .....!...o3.................#..... +726 1.959293604 127.0.0.1:57415 127.0.0.1:57433 3333376485 12 43000000091d0b0000000000 C........... +728 1.959382772 127.0.0.1:57415 127.0.0.1:57433 3333376497 67 3f000000980433cb0cb47c3801000300000001000000009d110200000000003d ?.....3...|8...................=B.....&......... +730 1.959507704 127.0.0.1:57433 127.0.0.1:57415 377342515 12 ffffffff081d0b0000000000 ............ +732 1.959700823 127.0.0.1:57433 127.0.0.1:57415 377342527 12 ffffffff091d0b0000000000 ............ +734 1.960674763 127.0.0.1:57433 127.0.0.1:57415 377342539 12 34000000f0f70a0000000000 4........... +736 1.960841894 127.0.0.1:57433 127.0.0.1:57415 377342551 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................5. +738 1.961100101 127.0.0.1:57415 127.0.0.1:57433 3333376564 12 fffffffff0f70a0000000000 ............ +740 1.962215185 127.0.0.1:57415 127.0.0.1:57433 3333376576 12 1e0000000a1d0b0000000000 ............ +742 1.962388992 127.0.0.1:57415 127.0.0.1:57433 3333376588 30 1a00000055ceff62b21b3a5001000300000057901f000000000000000000 ....U..b..:P......W........... +744 1.962738514 127.0.0.1:57433 127.0.0.1:57415 377342603 12 ffffffff0a1d0b0000000000 ............ +746 1.964339256 127.0.0.1:57433 127.0.0.1:57415 377342615 12 1a000000f1f70a0000000000 ............ +748 1.964487553 127.0.0.1:57433 127.0.0.1:57415 377342627 26 1600000057901f00000000000100030000000000000000000000 ....W..................... +750 1.964749575 127.0.0.1:57415 127.0.0.1:57433 3333376618 12 fffffffff1f70a0000000000 ............ +752 1.972515821 127.0.0.1:57415 127.0.0.1:57433 3333376630 12 1a0000000b1d0b0000000000 ............ +754 1.972718000 127.0.0.1:57415 127.0.0.1:57433 3333376642 26 16000000548f6340e25e314001000300000059901f0000000000 ....T.c@.^1@......Y....... +756 1.973059416 127.0.0.1:57433 127.0.0.1:57415 377342653 12 ffffffff0b1d0b0000000000 ............ +758 1.973458052 127.0.0.1:57433 127.0.0.1:57415 377342665 12 16000000f2f70a0000000000 ............ +760 1.973598719 127.0.0.1:57433 127.0.0.1:57415 377342677 22 1200000059901f000000000001000300000000000000 ....Y................. +762 1.973934174 127.0.0.1:57415 127.0.0.1:57433 3333376668 12 fffffffff2f70a0000000000 ............ +770 2.025402069 127.0.0.1:57415 127.0.0.1:57433 3333376680 12 feffffff0c430100fa420100 .....C...B.. +842 2.075828314 127.0.0.1:57415 127.0.0.1:57433 3333376692 12 1a0000000c1d0b0000000000 ............ +844 2.075998783 127.0.0.1:57415 127.0.0.1:57433 3333376704 26 16000000548f6340e25e31400100030000005b901f0000000000 ....T.c@.^1@......[....... +846 2.076368093 127.0.0.1:57433 127.0.0.1:57415 377342699 12 ffffffff0c1d0b0000000000 ............ +848 2.076843023 127.0.0.1:57433 127.0.0.1:57415 377342711 12 16000000f3f70a0000000000 ............ +850 2.076990366 127.0.0.1:57433 127.0.0.1:57415 377342723 22 120000005b901f000000000001000300000000000000 ....[................. +852 2.077390194 127.0.0.1:57415 127.0.0.1:57433 3333376730 12 fffffffff3f70a0000000000 ............ +869 2.179527044 127.0.0.1:57415 127.0.0.1:57433 3333376742 12 1a0000000d1d0b0000000000 ............ +871 2.179796219 127.0.0.1:57415 127.0.0.1:57433 3333376754 26 16000000548f6340e25e31400100030000005d901f0000000000 ....T.c@.^1@......]....... +873 2.180176497 127.0.0.1:57433 127.0.0.1:57415 377342745 12 ffffffff0d1d0b0000000000 ............ +875 2.180591345 127.0.0.1:57433 127.0.0.1:57415 377342757 12 16000000f4f70a0000000000 ............ +877 2.180739641 127.0.0.1:57433 127.0.0.1:57415 377342769 22 120000005d901f000000000001000300000000000000 ....]................. +879 2.181061745 127.0.0.1:57415 127.0.0.1:57433 3333376780 12 fffffffff4f70a0000000000 ............ +961 2.265738249 127.0.0.1:57415 127.0.0.1:57433 3333376792 12 220000000e1d0b0000000000 "........... +963 2.265969038 127.0.0.1:57415 127.0.0.1:57433 3333376804 34 1e0000001c2118d0c46f33bb0100030000009e11020000000000f4a723c39d01 .....!...o3.................#..... +965 2.266227722 127.0.0.1:57415 127.0.0.1:57433 3333376838 12 430000000f1d0b0000000000 C........... +967 2.266333818 127.0.0.1:57415 127.0.0.1:57433 3333376850 67 3f000000980433cb0cb47c3801000300000001000000009e110200000000003d ?.....3...|8...................=B.....&......... +969 2.266395569 127.0.0.1:57433 127.0.0.1:57415 377342791 12 ffffffff0e1d0b0000000000 ............ +973 2.266585588 127.0.0.1:57433 127.0.0.1:57415 377342803 12 ffffffff0f1d0b0000000000 ............ +975 2.267528772 127.0.0.1:57433 127.0.0.1:57415 377342815 12 34000000f5f70a0000000000 4........... +977 2.267696857 127.0.0.1:57433 127.0.0.1:57415 377342827 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................Sd. +979 2.267954588 127.0.0.1:57415 127.0.0.1:57433 3333376917 12 fffffffff5f70a0000000000 ............ +981 2.268798590 127.0.0.1:57415 127.0.0.1:57433 3333376929 12 1e000000101d0b0000000000 ............ +983 2.268958807 127.0.0.1:57415 127.0.0.1:57433 3333376941 30 1a00000055ceff62b21b3a500100030000005f901f000000000000000000 ....U..b..:P......_........... +985 2.269310951 127.0.0.1:57433 127.0.0.1:57415 377342879 12 ffffffff101d0b0000000000 ............ +987 2.269613504 127.0.0.1:57433 127.0.0.1:57415 377342891 12 1a000000f6f70a0000000000 ............ +989 2.269752979 127.0.0.1:57433 127.0.0.1:57415 377342903 26 160000005f901f00000000000100030000000000000000000000 ...._..................... +991 2.269985914 127.0.0.1:57415 127.0.0.1:57433 3333376971 12 fffffffff6f70a0000000000 ............ +1001 2.283709764 127.0.0.1:57415 127.0.0.1:57433 3333376983 12 1a000000111d0b0000000000 ............ +1003 2.283907890 127.0.0.1:57415 127.0.0.1:57433 3333376995 26 16000000548f6340e25e314001000300000061901f0000000000 ....T.c@.^1@......a....... +1005 2.284328222 127.0.0.1:57433 127.0.0.1:57415 377342929 12 ffffffff111d0b0000000000 ............ +1007 2.285222530 127.0.0.1:57433 127.0.0.1:57415 377342941 12 16000000f7f70a0000000000 ............ +1009 2.285368681 127.0.0.1:57433 127.0.0.1:57415 377342953 22 1200000061901f000000000001000300000000000000 ....a................. +1011 2.285624743 127.0.0.1:57415 127.0.0.1:57433 3333377021 12 fffffffff7f70a0000000000 ............ +1015 2.386878490 127.0.0.1:57415 127.0.0.1:57433 3333377033 12 1a000000121d0b0000000000 ............ +1017 2.387106180 127.0.0.1:57415 127.0.0.1:57433 3333377045 26 16000000548f6340e25e314001000300000063901f0000000000 ....T.c@.^1@......c....... +1019 2.387448788 127.0.0.1:57433 127.0.0.1:57415 377342975 12 ffffffff121d0b0000000000 ............ +1021 2.388503551 127.0.0.1:57433 127.0.0.1:57415 377342987 12 16000000f8f70a0000000000 ............ +1023 2.388671398 127.0.0.1:57433 127.0.0.1:57415 377342999 22 1200000063901f000000000001000300000000000000 ....c................. +1025 2.388888359 127.0.0.1:57415 127.0.0.1:57433 3333377071 12 fffffffff8f70a0000000000 ............ +1032 2.407145023 127.0.0.1:57433 127.0.0.1:57415 377343021 12 fefffffffb4201000c430100 .....B...C.. +1039 2.491055965 127.0.0.1:57415 127.0.0.1:57433 3333377083 12 1a000000131d0b0000000000 ............ +1041 2.491226673 127.0.0.1:57415 127.0.0.1:57433 3333377095 26 16000000548f6340e25e314001000300000065901f0000000000 ....T.c@.^1@......e....... +1043 2.491631269 127.0.0.1:57433 127.0.0.1:57415 377343033 12 ffffffff131d0b0000000000 ............ +1045 2.491981030 127.0.0.1:57433 127.0.0.1:57415 377343045 12 16000000f9f70a0000000000 ............ +1047 2.492147446 127.0.0.1:57433 127.0.0.1:57415 377343057 22 1200000065901f000000000001000300000000000000 ....e................. +1049 2.492503643 127.0.0.1:57415 127.0.0.1:57433 3333377121 12 fffffffff9f70a0000000000 ............ +1051 2.527927160 127.0.0.1:57415 127.0.0.1:57433 3333377133 12 feffffff0d430100fb420100 .....C...B.. +1055 2.570348501 127.0.0.1:57415 127.0.0.1:57433 3333377145 12 65000000141d0b0000000000 e........... +1057 2.570562124 127.0.0.1:57415 127.0.0.1:57433 3333377157 101 1e0000001c2118d0c46f33bb0100030000009f1102000000000025a923c39d01 .....!...o3...............%.#.....?.....3...|8.. +1059 2.570893288 127.0.0.1:57433 127.0.0.1:57415 377343079 12 ffffffff141d0b0000000000 ............ +1061 2.574358225 127.0.0.1:57433 127.0.0.1:57415 377343091 12 34000000faf70a0000000000 4........... +1063 2.574548006 127.0.0.1:57433 127.0.0.1:57415 377343103 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............-$.. +1065 2.574802876 127.0.0.1:57415 127.0.0.1:57433 3333377258 12 fffffffffaf70a0000000000 ............ +1067 2.575551748 127.0.0.1:57415 127.0.0.1:57433 3333377270 12 1e000000151d0b0000000000 ............ +1069 2.575750351 127.0.0.1:57415 127.0.0.1:57433 3333377282 30 1a00000055ceff62b21b3a5001000300000067901f000000000000000000 ....U..b..:P......g........... +1071 2.576049328 127.0.0.1:57433 127.0.0.1:57415 377343155 12 ffffffff151d0b0000000000 ............ +1073 2.578233719 127.0.0.1:57433 127.0.0.1:57415 377343167 12 1a000000fbf70a0000000000 ............ +1075 2.578390121 127.0.0.1:57433 127.0.0.1:57415 377343179 26 1600000067901f00000000000100030000000000000000000000 ....g..................... +1077 2.578648090 127.0.0.1:57415 127.0.0.1:57433 3333377312 12 fffffffffbf70a0000000000 ............ +1079 2.595094919 127.0.0.1:57415 127.0.0.1:57433 3333377324 12 1a000000161d0b0000000000 ............ +1081 2.595265865 127.0.0.1:57415 127.0.0.1:57433 3333377336 26 16000000548f6340e25e314001000300000069901f0000000000 ....T.c@.^1@......i....... +1083 2.595588446 127.0.0.1:57433 127.0.0.1:57415 377343205 12 ffffffff161d0b0000000000 ............ +1085 2.595955849 127.0.0.1:57433 127.0.0.1:57415 377343217 12 16000000fcf70a0000000000 ............ +1087 2.596111298 127.0.0.1:57433 127.0.0.1:57415 377343229 22 1200000069901f000000000001000300000000000000 ....i................. +1089 2.596444607 127.0.0.1:57415 127.0.0.1:57433 3333377362 12 fffffffffcf70a0000000000 ............ +1095 2.698642731 127.0.0.1:57415 127.0.0.1:57433 3333377374 12 1a000000171d0b0000000000 ............ +1097 2.698828936 127.0.0.1:57415 127.0.0.1:57433 3333377386 26 16000000548f6340e25e31400100030000006b901f0000000000 ....T.c@.^1@......k....... +1099 2.699193239 127.0.0.1:57433 127.0.0.1:57415 377343251 12 ffffffff171d0b0000000000 ............ +1101 2.699569941 127.0.0.1:57433 127.0.0.1:57415 377343263 12 16000000fdf70a0000000000 ............ +1103 2.699728251 127.0.0.1:57433 127.0.0.1:57415 377343275 22 120000006b901f000000000001000300000000000000 ....k................. +1105 2.700019598 127.0.0.1:57415 127.0.0.1:57433 3333377412 12 fffffffffdf70a0000000000 ............ +1111 2.801980734 127.0.0.1:57415 127.0.0.1:57433 3333377424 12 1a000000181d0b0000000000 ............ +1113 2.802161217 127.0.0.1:57415 127.0.0.1:57433 3333377436 26 16000000548f6340e25e31400100030000006d901f0000000000 ....T.c@.^1@......m....... +1115 2.802623987 127.0.0.1:57433 127.0.0.1:57415 377343297 12 ffffffff181d0b0000000000 ............ +1117 2.802907944 127.0.0.1:57433 127.0.0.1:57415 377343309 12 16000000fef70a0000000000 ............ +1119 2.803074837 127.0.0.1:57433 127.0.0.1:57415 377343321 22 120000006d901f000000000001000300000000000000 ....m................. +1123 2.803484440 127.0.0.1:57415 127.0.0.1:57433 3333377462 12 fffffffffef70a0000000000 ............ +1125 2.877099991 127.0.0.1:57415 127.0.0.1:57433 3333377474 12 65000000191d0b0000000000 e........... +1127 2.877413988 127.0.0.1:57415 127.0.0.1:57433 3333377486 101 1e0000001c2118d0c46f33bb010003000000a01102000000000058aa23c39d01 .....!...o3...............X.#.....?.....3...|8.. +1129 2.877841473 127.0.0.1:57433 127.0.0.1:57415 377343343 12 ffffffff191d0b0000000000 ............ +1131 2.878729105 127.0.0.1:57433 127.0.0.1:57415 377343355 12 34000000fff70a0000000000 4........... +1133 2.878927946 127.0.0.1:57433 127.0.0.1:57415 377343367 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +1135 2.879197121 127.0.0.1:57415 127.0.0.1:57433 3333377587 12 fffffffffff70a0000000000 ............ +1137 2.880134344 127.0.0.1:57415 127.0.0.1:57433 3333377599 12 1e0000001a1d0b0000000000 ............ +1139 2.880320072 127.0.0.1:57415 127.0.0.1:57433 3333377611 30 1a00000055ceff62b21b3a500100030000006f901f000000000000000000 ....U..b..:P......o........... +1141 2.880741358 127.0.0.1:57433 127.0.0.1:57415 377343419 12 ffffffff1a1d0b0000000000 ............ +1143 2.881076574 127.0.0.1:57433 127.0.0.1:57415 377343431 12 1a00000000f80a0000000000 ............ +1145 2.881338596 127.0.0.1:57433 127.0.0.1:57415 377343443 26 160000006f901f00000000000100030000000000000000000000 ....o..................... +1147 2.881559610 127.0.0.1:57415 127.0.0.1:57433 3333377641 12 ffffffff00f80a0000000000 ............ +1149 2.905200243 127.0.0.1:57415 127.0.0.1:57433 3333377653 12 1a0000001b1d0b0000000000 ............ +1151 2.905341148 127.0.0.1:57415 127.0.0.1:57433 3333377665 26 16000000548f6340e25e314001000300000071901f0000000000 ....T.c@.^1@......q....... +1153 2.905690193 127.0.0.1:57433 127.0.0.1:57415 377343469 12 ffffffff1b1d0b0000000000 ............ +1155 2.906030416 127.0.0.1:57433 127.0.0.1:57415 377343481 12 1600000001f80a0000000000 ............ +1157 2.906192064 127.0.0.1:57433 127.0.0.1:57415 377343493 22 1200000071901f000000000001000300000000000000 ....q................. +1160 2.906558514 127.0.0.1:57415 127.0.0.1:57433 3333377691 12 ffffffff01f80a0000000000 ............ +1166 2.907087088 127.0.0.1:57433 127.0.0.1:57415 377343515 12 fefffffffc4201000d430100 .....B...C.. +1173 3.009217978 127.0.0.1:57415 127.0.0.1:57433 3333377703 12 1a0000001c1d0b0000000000 ............ +1175 3.009439945 127.0.0.1:57415 127.0.0.1:57433 3333377715 26 16000000548f6340e25e314001000300000073901f0000000000 ....T.c@.^1@......s....... +1177 3.009772778 127.0.0.1:57433 127.0.0.1:57415 377343527 12 ffffffff1c1d0b0000000000 ............ +1179 3.010277271 127.0.0.1:57433 127.0.0.1:57415 377343539 12 1600000002f80a0000000000 ............ +1181 3.010487556 127.0.0.1:57433 127.0.0.1:57415 377343551 22 1200000073901f000000000001000300000000000000 ....s................. +1183 3.010786057 127.0.0.1:57415 127.0.0.1:57433 3333377741 12 ffffffff02f80a0000000000 ............ +1185 3.029031277 127.0.0.1:57415 127.0.0.1:57433 3333377753 12 feffffff0e430100fc420100 .....C...B.. +1189 3.112352610 127.0.0.1:57415 127.0.0.1:57433 3333377765 12 1a0000001d1d0b0000000000 ............ +1191 3.112573385 127.0.0.1:57415 127.0.0.1:57433 3333377777 26 16000000548f6340e25e314001000300000075901f0000000000 ....T.c@.^1@......u....... +1193 3.112834692 127.0.0.1:57433 127.0.0.1:57415 377343573 12 ffffffff1d1d0b0000000000 ............ +1195 3.113236904 127.0.0.1:57433 127.0.0.1:57415 377343585 12 1600000003f80a0000000000 ............ +1197 3.113402843 127.0.0.1:57433 127.0.0.1:57415 377343597 22 1200000075901f000000000001000300000000000000 ....u................. +1199 3.113736391 127.0.0.1:57415 127.0.0.1:57433 3333377803 12 ffffffff03f80a0000000000 ............ +1205 3.181609869 127.0.0.1:57415 127.0.0.1:57433 3333377815 12 650000001e1d0b0000000000 e........... +1207 3.181828737 127.0.0.1:57415 127.0.0.1:57433 3333377827 101 1e0000001c2118d0c46f33bb010003000000a11102000000000088ab23c39d01 .....!...o3.................#.....?.....3...|8.. +1209 3.182156324 127.0.0.1:57433 127.0.0.1:57415 377343619 12 ffffffff1e1d0b0000000000 ............ +1211 3.183006048 127.0.0.1:57433 127.0.0.1:57415 377343631 12 3400000004f80a0000000000 4........... +1213 3.183170795 127.0.0.1:57433 127.0.0.1:57415 377343643 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +1215 3.183479786 127.0.0.1:57415 127.0.0.1:57433 3333377928 12 ffffffff04f80a0000000000 ............ +1217 3.184649467 127.0.0.1:57415 127.0.0.1:57433 3333377940 12 1e0000001f1d0b0000000000 ............ +1219 3.184860945 127.0.0.1:57415 127.0.0.1:57433 3333377952 30 1a00000055ceff62b21b3a5001000300000077901f000000000000000000 ....U..b..:P......w........... +1221 3.185160875 127.0.0.1:57433 127.0.0.1:57415 377343695 12 ffffffff1f1d0b0000000000 ............ +1223 3.185772419 127.0.0.1:57433 127.0.0.1:57415 377343707 12 1a00000005f80a0000000000 ............ +1225 3.185907841 127.0.0.1:57433 127.0.0.1:57415 377343719 26 1600000077901f00000000000100030000000000000000000000 ....w..................... +1227 3.186202765 127.0.0.1:57415 127.0.0.1:57433 3333377982 12 ffffffff05f80a0000000000 ............ +1229 3.215268373 127.0.0.1:57415 127.0.0.1:57433 3333377994 12 1a000000201d0b0000000000 .... ....... +1231 3.215568066 127.0.0.1:57415 127.0.0.1:57433 3333378006 26 16000000548f6340e25e314001000300000079901f0000000000 ....T.c@.^1@......y....... +1233 3.215863705 127.0.0.1:57433 127.0.0.1:57415 377343745 12 ffffffff201d0b0000000000 .... ....... +1235 3.216359854 127.0.0.1:57433 127.0.0.1:57415 377343757 12 1600000006f80a0000000000 ............ +1237 3.216539383 127.0.0.1:57433 127.0.0.1:57415 377343769 22 1200000079901f000000000001000300000000000000 ....y................. +1239 3.216820002 127.0.0.1:57415 127.0.0.1:57433 3333378032 12 ffffffff06f80a0000000000 ............ +1245 3.318210363 127.0.0.1:57415 127.0.0.1:57433 3333378044 12 1a000000211d0b0000000000 ....!....... +1247 3.318503380 127.0.0.1:57415 127.0.0.1:57433 3333378056 26 16000000548f6340e25e31400100030000007b901f0000000000 ....T.c@.^1@......{....... +1249 3.318880796 127.0.0.1:57433 127.0.0.1:57415 377343791 12 ffffffff211d0b0000000000 ....!....... +1251 3.319333315 127.0.0.1:57433 127.0.0.1:57415 377343803 12 1600000007f80a0000000000 ............ +1253 3.319541931 127.0.0.1:57433 127.0.0.1:57415 377343815 22 120000007b901f000000000001000300000000000000 ....{................. +1255 3.319754362 127.0.0.1:57415 127.0.0.1:57433 3333378082 12 ffffffff07f80a0000000000 ............ +1262 3.408105373 127.0.0.1:57433 127.0.0.1:57415 377343837 12 fefffffffd4201000e430100 .....B...C.. +1265 3.422209978 127.0.0.1:57415 127.0.0.1:57433 3333378094 12 1a000000221d0b0000000000 ...."....... +1267 3.422415733 127.0.0.1:57415 127.0.0.1:57433 3333378106 26 16000000548f6340e25e31400100030000007d901f0000000000 ....T.c@.^1@......}....... +1269 3.422860622 127.0.0.1:57433 127.0.0.1:57415 377343849 12 ffffffff221d0b0000000000 ...."....... +1271 3.425508499 127.0.0.1:57433 127.0.0.1:57415 377343861 12 1600000008f80a0000000000 ............ +1273 3.425675631 127.0.0.1:57433 127.0.0.1:57415 377343873 22 120000007d901f000000000001000300000000000000 ....}................. +1275 3.426119566 127.0.0.1:57415 127.0.0.1:57433 3333378132 12 ffffffff08f80a0000000000 ............ +1281 3.487548590 127.0.0.1:57415 127.0.0.1:57433 3333378144 12 22000000231d0b0000000000 "...#....... +1283 3.487764359 127.0.0.1:57415 127.0.0.1:57433 3333378156 34 1e0000001c2118d0c46f33bb010003000000a211020000000000baac23c39d01 .....!...o3.................#..... +1285 3.487944603 127.0.0.1:57415 127.0.0.1:57433 3333378190 12 43000000241d0b0000000000 C...$....... +1287 3.488033295 127.0.0.1:57415 127.0.0.1:57433 3333378202 67 3f000000980433cb0cb47c380100030000000100000000a2110200000000003d ?.....3...|8...................=B.....&......... +1289 3.488192558 127.0.0.1:57433 127.0.0.1:57415 377343895 12 ffffffff231d0b0000000000 ....#....... +1291 3.488476276 127.0.0.1:57433 127.0.0.1:57415 377343907 12 ffffffff241d0b0000000000 ....$....... +1293 3.489296198 127.0.0.1:57433 127.0.0.1:57415 377343919 12 3400000009f80a0000000000 4........... +1295 3.489498377 127.0.0.1:57433 127.0.0.1:57415 377343931 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............W... +1297 3.489822388 127.0.0.1:57415 127.0.0.1:57433 3333378269 12 ffffffff09f80a0000000000 ............ +1299 3.490775585 127.0.0.1:57415 127.0.0.1:57433 3333378281 12 1e000000251d0b0000000000 ....%....... +1301 3.490995646 127.0.0.1:57415 127.0.0.1:57433 3333378293 30 1a00000055ceff62b21b3a500100030000007f901f000000000000000000 ....U..b..:P.................. +1303 3.491422415 127.0.0.1:57433 127.0.0.1:57415 377343983 12 ffffffff251d0b0000000000 ....%....... +1305 3.491998196 127.0.0.1:57433 127.0.0.1:57415 377343995 12 1a0000000af80a0000000000 ............ +1307 3.492187262 127.0.0.1:57433 127.0.0.1:57415 377344007 26 160000007f901f00000000000100030000000000000000000000 .......................... +1309 3.492517233 127.0.0.1:57415 127.0.0.1:57433 3333378323 12 ffffffff0af80a0000000000 ............ +1311 3.528084993 127.0.0.1:57415 127.0.0.1:57433 3333378335 12 1a000000261d0b0000000000 ....&....... +1313 3.528264761 127.0.0.1:57415 127.0.0.1:57433 3333378347 26 16000000548f6340e25e314001000300000081901f0000000000 ....T.c@.^1@.............. +1315 3.528759480 127.0.0.1:57433 127.0.0.1:57415 377344033 12 ffffffff261d0b0000000000 ....&....... +1317 3.529129028 127.0.0.1:57433 127.0.0.1:57415 377344045 12 160000000bf80a0000000000 ............ +1319 3.529289246 127.0.0.1:57433 127.0.0.1:57415 377344057 22 1200000081901f000000000001000300000000000000 ...................... +1321 3.529690504 127.0.0.1:57415 127.0.0.1:57433 3333378373 12 ffffffff0bf80a0000000000 ............ +1324 3.530007839 127.0.0.1:57415 127.0.0.1:57433 3333378385 12 feffffff0f430100fd420100 .....C...B.. +1327 3.631152630 127.0.0.1:57415 127.0.0.1:57433 3333378397 12 1a000000271d0b0000000000 ....'....... +1329 3.631339788 127.0.0.1:57415 127.0.0.1:57433 3333378409 26 16000000548f6340e25e314001000300000083901f0000000000 ....T.c@.^1@.............. +1331 3.631694794 127.0.0.1:57433 127.0.0.1:57415 377344079 12 ffffffff271d0b0000000000 ....'....... +1333 3.632076502 127.0.0.1:57433 127.0.0.1:57415 377344091 12 160000000cf80a0000000000 ............ +1335 3.632243156 127.0.0.1:57433 127.0.0.1:57415 377344103 22 1200000083901f000000000001000300000000000000 ...................... +1337 3.632636547 127.0.0.1:57415 127.0.0.1:57433 3333378435 12 ffffffff0cf80a0000000000 ............ +1343 3.736045837 127.0.0.1:57415 127.0.0.1:57433 3333378447 12 1a000000281d0b0000000000 ....(....... +1345 3.736247778 127.0.0.1:57415 127.0.0.1:57433 3333378459 26 16000000548f6340e25e314001000300000085901f0000000000 ....T.c@.^1@.............. +1347 3.736612558 127.0.0.1:57433 127.0.0.1:57415 377344125 12 ffffffff281d0b0000000000 ....(....... +1349 3.737476826 127.0.0.1:57433 127.0.0.1:57415 377344137 12 160000000df80a0000000000 ............ +1351 3.737632036 127.0.0.1:57433 127.0.0.1:57415 377344149 22 1200000085901f000000000001000300000000000000 ...................... +1353 3.737904072 127.0.0.1:57415 127.0.0.1:57433 3333378485 12 ffffffff0df80a0000000000 ............ +1357 3.792435646 127.0.0.1:57415 127.0.0.1:57433 3333378497 12 22000000291d0b0000000000 "...)....... +1359 3.792627573 127.0.0.1:57415 127.0.0.1:57433 3333378509 34 1e0000001c2118d0c46f33bb010003000000a311020000000000ebad23c39d01 .....!...o3.................#..... +1361 3.792771339 127.0.0.1:57415 127.0.0.1:57433 3333378543 12 430000002a1d0b0000000000 C...*....... +1363 3.792860985 127.0.0.1:57415 127.0.0.1:57433 3333378555 67 3f000000980433cb0cb47c380100030000000100000000a3110200000000003d ?.....3...|8...................=B.....&......... +1365 3.793049097 127.0.0.1:57433 127.0.0.1:57415 377344171 12 ffffffff291d0b0000000000 ....)....... +1367 3.793254614 127.0.0.1:57433 127.0.0.1:57415 377344183 12 ffffffff2a1d0b0000000000 ....*....... +1369 3.795212269 127.0.0.1:57433 127.0.0.1:57415 377344195 12 340000000ef80a0000000000 4........... +1371 3.795400858 127.0.0.1:57433 127.0.0.1:57415 377344207 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................mM. +1373 3.795665264 127.0.0.1:57415 127.0.0.1:57433 3333378622 12 ffffffff0ef80a0000000000 ............ +1375 3.796486616 127.0.0.1:57415 127.0.0.1:57433 3333378634 12 1e0000002b1d0b0000000000 ....+....... +1377 3.796626806 127.0.0.1:57415 127.0.0.1:57433 3333378646 30 1a00000055ceff62b21b3a5001000300000087901f000000000000000000 ....U..b..:P.................. +1379 3.796910524 127.0.0.1:57433 127.0.0.1:57415 377344259 12 ffffffff2b1d0b0000000000 ....+....... +1381 3.798217535 127.0.0.1:57433 127.0.0.1:57415 377344271 12 1a0000000ff80a0000000000 ............ +1383 3.798388481 127.0.0.1:57433 127.0.0.1:57415 377344283 26 1600000087901f00000000000100030000000000000000000000 .......................... +1385 3.798581362 127.0.0.1:57415 127.0.0.1:57433 3333378676 12 ffffffff0ff80a0000000000 ............ +1389 3.839236259 127.0.0.1:57415 127.0.0.1:57433 3333378688 12 1a0000002c1d0b0000000000 ....,....... +1391 3.839445829 127.0.0.1:57415 127.0.0.1:57433 3333378700 26 16000000548f6340e25e314001000300000089901f0000000000 ....T.c@.^1@.............. +1393 3.839839935 127.0.0.1:57433 127.0.0.1:57415 377344309 12 ffffffff2c1d0b0000000000 ....,....... +1395 3.840212584 127.0.0.1:57433 127.0.0.1:57415 377344321 12 1600000010f80a0000000000 ............ +1397 3.840444565 127.0.0.1:57433 127.0.0.1:57415 377344333 22 1200000089901f000000000001000300000000000000 ...................... +1399 3.840707779 127.0.0.1:57415 127.0.0.1:57433 3333378726 12 ffffffff10f80a0000000000 ............ +1404 3.909203053 127.0.0.1:57433 127.0.0.1:57415 377344355 12 fefffffffe4201000f430100 .....B...C.. +1409 3.942053080 127.0.0.1:57415 127.0.0.1:57433 3333378738 12 1a0000002d1d0b0000000000 ....-....... +1411 3.942293882 127.0.0.1:57415 127.0.0.1:57433 3333378750 26 16000000548f6340e25e31400100030000008b901f0000000000 ....T.c@.^1@.............. +1413 3.942605734 127.0.0.1:57433 127.0.0.1:57415 377344367 12 ffffffff2d1d0b0000000000 ....-....... +1415 3.943103313 127.0.0.1:57433 127.0.0.1:57415 377344379 12 1600000011f80a0000000000 ............ +1417 3.943279982 127.0.0.1:57433 127.0.0.1:57415 377344391 22 120000008b901f000000000001000300000000000000 ...................... +1419 3.943919659 127.0.0.1:57415 127.0.0.1:57433 3333378776 12 ffffffff11f80a0000000000 ............ +1428 4.032243729 127.0.0.1:57415 127.0.0.1:57433 3333378788 12 feffffff10430100fe420100 .....C...B.. +1430 4.045611858 127.0.0.1:57415 127.0.0.1:57433 3333378800 12 1a0000002e1d0b0000000000 ............ +1432 4.045805454 127.0.0.1:57415 127.0.0.1:57433 3333378812 26 16000000548f6340e25e31400100030000008d901f0000000000 ....T.c@.^1@.............. +1434 4.046202421 127.0.0.1:57433 127.0.0.1:57415 377344413 12 ffffffff2e1d0b0000000000 ............ +1436 4.046661854 127.0.0.1:57433 127.0.0.1:57415 377344425 12 1600000012f80a0000000000 ............ +1438 4.046823025 127.0.0.1:57433 127.0.0.1:57415 377344437 22 120000008d901f000000000001000300000000000000 ...................... +1440 4.047114849 127.0.0.1:57415 127.0.0.1:57433 3333378838 12 ffffffff12f80a0000000000 ............ +1452 4.098994493 127.0.0.1:57415 127.0.0.1:57433 3333378850 12 650000002f1d0b0000000000 e.../....... +1454 4.099141121 127.0.0.1:57415 127.0.0.1:57433 3333378862 101 1e0000001c2118d0c46f33bb010003000000a4110200000000001eaf23c39d01 .....!...o3.................#.....?.....3...|8.. +1456 4.099446774 127.0.0.1:57433 127.0.0.1:57415 377344459 12 ffffffff2f1d0b0000000000 ..../....... +1458 4.100449085 127.0.0.1:57433 127.0.0.1:57415 377344471 12 3400000013f80a0000000000 4........... +1460 4.100605726 127.0.0.1:57433 127.0.0.1:57415 377344483 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............+.|. +1462 4.100864172 127.0.0.1:57415 127.0.0.1:57433 3333378963 12 ffffffff13f80a0000000000 ............ +1464 4.101921797 127.0.0.1:57415 127.0.0.1:57433 3333378975 12 1e000000301d0b0000000000 ....0....... +1466 4.102077723 127.0.0.1:57415 127.0.0.1:57433 3333378987 30 1a00000055ceff62b21b3a500100030000008f901f000000000000000000 ....U..b..:P.................. +1468 4.102382421 127.0.0.1:57433 127.0.0.1:57415 377344535 12 ffffffff301d0b0000000000 ....0....... +1470 4.102805376 127.0.0.1:57433 127.0.0.1:57415 377344547 12 1a00000014f80a0000000000 ............ +1472 4.102981329 127.0.0.1:57433 127.0.0.1:57415 377344559 26 160000008f901f00000000000100030000000000000000000000 .......................... +1474 4.103241205 127.0.0.1:57415 127.0.0.1:57433 3333379017 12 ffffffff14f80a0000000000 ............ +1480 4.149636030 127.0.0.1:57415 127.0.0.1:57433 3333379029 12 1a000000311d0b0000000000 ....1....... +1482 4.149834156 127.0.0.1:57415 127.0.0.1:57433 3333379041 26 16000000548f6340e25e314001000300000091901f0000000000 ....T.c@.^1@.............. +1484 4.150293350 127.0.0.1:57433 127.0.0.1:57415 377344585 12 ffffffff311d0b0000000000 ....1....... +1486 4.150841713 127.0.0.1:57433 127.0.0.1:57415 377344597 12 1600000015f80a0000000000 ............ +1488 4.151090622 127.0.0.1:57433 127.0.0.1:57415 377344609 22 1200000091901f000000000001000300000000000000 ...................... +1490 4.151364803 127.0.0.1:57415 127.0.0.1:57433 3333379067 12 ffffffff15f80a0000000000 ............ +1520 4.252480984 127.0.0.1:57415 127.0.0.1:57433 3333379079 12 1a000000321d0b0000000000 ....2....... +1522 4.252662182 127.0.0.1:57415 127.0.0.1:57433 3333379091 26 16000000548f6340e25e314001000300000093901f0000000000 ....T.c@.^1@.............. +1524 4.252987385 127.0.0.1:57433 127.0.0.1:57415 377344631 12 ffffffff321d0b0000000000 ....2....... +1526 4.253589392 127.0.0.1:57433 127.0.0.1:57415 377344643 12 1600000016f80a0000000000 ............ +1528 4.253767967 127.0.0.1:57433 127.0.0.1:57415 377344655 22 1200000093901f000000000001000300000000000000 ...................... +1530 4.254110336 127.0.0.1:57415 127.0.0.1:57433 3333379117 12 ffffffff16f80a0000000000 ............ +1535 4.355569839 127.0.0.1:57415 127.0.0.1:57433 3333379129 12 1a000000331d0b0000000000 ....3....... +1537 4.355761051 127.0.0.1:57415 127.0.0.1:57433 3333379141 26 16000000548f6340e25e314001000300000095901f0000000000 ....T.c@.^1@.............. +1539 4.356211901 127.0.0.1:57433 127.0.0.1:57415 377344677 12 ffffffff331d0b0000000000 ....3....... +1541 4.356730700 127.0.0.1:57433 127.0.0.1:57415 377344689 12 1600000017f80a0000000000 ............ +1543 4.356911421 127.0.0.1:57433 127.0.0.1:57415 377344701 22 1200000095901f000000000001000300000000000000 ...................... +1545 4.357133865 127.0.0.1:57415 127.0.0.1:57433 3333379167 12 ffffffff17f80a0000000000 ............ +1548 4.402853727 127.0.0.1:57415 127.0.0.1:57433 3333379179 12 65000000341d0b0000000000 e...4....... +1550 4.403012276 127.0.0.1:57415 127.0.0.1:57433 3333379191 101 1e0000001c2118d0c46f33bb010003000000a5110200000000004eb023c39d01 .....!...o3...............N.#.....?.....3...|8.. +1552 4.403326988 127.0.0.1:57433 127.0.0.1:57415 377344723 12 ffffffff341d0b0000000000 ....4....... +1554 4.404067993 127.0.0.1:57433 127.0.0.1:57415 377344735 12 3400000018f80a0000000000 4........... +1556 4.404212713 127.0.0.1:57433 127.0.0.1:57415 377344747 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............+V.. +1558 4.404565334 127.0.0.1:57415 127.0.0.1:57433 3333379292 12 ffffffff18f80a0000000000 ............ +1560 4.405214787 127.0.0.1:57415 127.0.0.1:57433 3333379304 12 1e000000351d0b0000000000 ....5....... +1562 4.405355215 127.0.0.1:57415 127.0.0.1:57433 3333379316 30 1a00000055ceff62b21b3a5001000300000097901f000000000000000000 ....U..b..:P.................. +1564 4.405639887 127.0.0.1:57433 127.0.0.1:57415 377344799 12 ffffffff351d0b0000000000 ....5....... +1566 4.406197309 127.0.0.1:57433 127.0.0.1:57415 377344811 12 1a00000019f80a0000000000 ............ +1568 4.406368256 127.0.0.1:57433 127.0.0.1:57415 377344823 26 1600000097901f00000000000100030000000000000000000000 .......................... +1570 4.406630278 127.0.0.1:57415 127.0.0.1:57433 3333379346 12 ffffffff19f80a0000000000 ............ +1577 4.410788298 127.0.0.1:57433 127.0.0.1:57415 377344849 12 feffffffff42010010430100 .....B...C.. +1582 4.458555698 127.0.0.1:57415 127.0.0.1:57433 3333379358 12 1a000000361d0b0000000000 ....6....... +1584 4.458737373 127.0.0.1:57415 127.0.0.1:57433 3333379370 26 16000000548f6340e25e314001000300000099901f0000000000 ....T.c@.^1@.............. +1586 4.459105015 127.0.0.1:57433 127.0.0.1:57415 377344861 12 ffffffff361d0b0000000000 ....6....... +1588 4.459533930 127.0.0.1:57433 127.0.0.1:57415 377344873 12 160000001af80a0000000000 ............ +1590 4.459717751 127.0.0.1:57433 127.0.0.1:57415 377344885 22 1200000099901f000000000001000300000000000000 ...................... +1592 4.460095882 127.0.0.1:57415 127.0.0.1:57433 3333379396 12 ffffffff1af80a0000000000 ............ +1601 4.533143997 127.0.0.1:57415 127.0.0.1:57433 3333379408 12 feffffff11430100ff420100 .....C...B.. +1603 4.561592102 127.0.0.1:57415 127.0.0.1:57433 3333379420 12 1a000000371d0b0000000000 ....7....... +1605 4.561773777 127.0.0.1:57415 127.0.0.1:57433 3333379432 26 16000000548f6340e25e31400100030000009b901f0000000000 ....T.c@.^1@.............. +1607 4.562145948 127.0.0.1:57433 127.0.0.1:57415 377344907 12 ffffffff371d0b0000000000 ....7....... +1609 4.562604904 127.0.0.1:57433 127.0.0.1:57415 377344919 12 160000001bf80a0000000000 ............ +1611 4.562770605 127.0.0.1:57433 127.0.0.1:57415 377344931 22 120000009b901f000000000001000300000000000000 ...................... +1613 4.563145638 127.0.0.1:57415 127.0.0.1:57433 3333379458 12 ffffffff1bf80a0000000000 ............ +1620 4.664651632 127.0.0.1:57415 127.0.0.1:57433 3333379470 12 1a000000381d0b0000000000 ....8....... +1622 4.664850950 127.0.0.1:57415 127.0.0.1:57433 3333379482 26 16000000548f6340e25e31400100030000009d901f0000000000 ....T.c@.^1@.............. +1624 4.665245771 127.0.0.1:57433 127.0.0.1:57415 377344953 12 ffffffff381d0b0000000000 ....8....... +1626 4.665680408 127.0.0.1:57433 127.0.0.1:57415 377344965 12 160000001cf80a0000000000 ............ +1628 4.665822506 127.0.0.1:57433 127.0.0.1:57415 377344977 22 120000009d901f000000000001000300000000000000 ...................... +1630 4.666184425 127.0.0.1:57415 127.0.0.1:57433 3333379508 12 ffffffff1cf80a0000000000 ............ +1632 4.706704855 127.0.0.1:57415 127.0.0.1:57433 3333379520 12 22000000391d0b0000000000 "...9....... +1634 4.706916571 127.0.0.1:57415 127.0.0.1:57433 3333379532 34 1e0000001c2118d0c46f33bb010003000000a6110200000000007eb123c39d01 .....!...o3...............~.#..... +1636 4.707086802 127.0.0.1:57415 127.0.0.1:57433 3333379566 12 430000003a1d0b0000000000 C...:....... +1638 4.707172871 127.0.0.1:57415 127.0.0.1:57433 3333379578 67 3f000000980433cb0cb47c380100030000000100000000a6110200000000003d ?.....3...|8...................=B.....&......... +1640 4.707329273 127.0.0.1:57433 127.0.0.1:57415 377344999 12 ffffffff391d0b0000000000 ....9....... +1642 4.707516432 127.0.0.1:57433 127.0.0.1:57415 377345011 12 ffffffff3a1d0b0000000000 ....:....... +1644 4.708107710 127.0.0.1:57433 127.0.0.1:57415 377345023 12 340000001df80a0000000000 4........... +1646 4.708254576 127.0.0.1:57433 127.0.0.1:57415 377345035 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +1648 4.708521128 127.0.0.1:57415 127.0.0.1:57433 3333379645 12 ffffffff1df80a0000000000 ............ +1650 4.709283829 127.0.0.1:57415 127.0.0.1:57433 3333379657 12 1e0000003b1d0b0000000000 ....;....... +1652 4.709428549 127.0.0.1:57415 127.0.0.1:57433 3333379669 30 1a00000055ceff62b21b3a500100030000009f901f000000000000000000 ....U..b..:P.................. +1654 4.709873199 127.0.0.1:57433 127.0.0.1:57415 377345087 12 ffffffff3b1d0b0000000000 ....;....... +1656 4.710093498 127.0.0.1:57433 127.0.0.1:57415 377345099 12 1a0000001ef80a0000000000 ............ +1658 4.710258961 127.0.0.1:57433 127.0.0.1:57415 377345111 26 160000009f901f00000000000100030000000000000000000000 .......................... +1660 4.710506916 127.0.0.1:57415 127.0.0.1:57433 3333379699 12 ffffffff1ef80a0000000000 ............ +1665 4.767481565 127.0.0.1:57415 127.0.0.1:57433 3333379711 12 1a0000003c1d0b0000000000 ....<....... +1667 4.767663717 127.0.0.1:57415 127.0.0.1:57433 3333379723 26 16000000548f6340e25e3140010003000000a1901f0000000000 ....T.c@.^1@.............. +1669 4.768006086 127.0.0.1:57433 127.0.0.1:57415 377345137 12 ffffffff3c1d0b0000000000 ....<....... +1671 4.768476248 127.0.0.1:57433 127.0.0.1:57415 377345149 12 160000001ff80a0000000000 ............ +1673 4.768631697 127.0.0.1:57433 127.0.0.1:57415 377345161 22 12000000a1901f000000000001000300000000000000 ...................... +1675 4.768856049 127.0.0.1:57415 127.0.0.1:57433 3333379749 12 ffffffff1ff80a0000000000 ............ +1680 4.870548248 127.0.0.1:57415 127.0.0.1:57433 3333379761 12 1a0000003d1d0b0000000000 ....=....... +1682 4.870742798 127.0.0.1:57415 127.0.0.1:57433 3333379773 26 16000000548f6340e25e3140010003000000a3901f0000000000 ....T.c@.^1@.............. +1684 4.871147394 127.0.0.1:57433 127.0.0.1:57415 377345183 12 ffffffff3d1d0b0000000000 ....=....... +1686 4.871605396 127.0.0.1:57433 127.0.0.1:57415 377345195 12 1600000020f80a0000000000 .... ....... +1688 4.871751785 127.0.0.1:57433 127.0.0.1:57415 377345207 22 12000000a3901f000000000001000300000000000000 ...................... +1690 4.872116089 127.0.0.1:57415 127.0.0.1:57433 3333379799 12 ffffffff20f80a0000000000 .... ....... +1696 4.911944389 127.0.0.1:57433 127.0.0.1:57415 377345229 12 feffffff0043010011430100 .....C...C.. +1701 4.973756075 127.0.0.1:57415 127.0.0.1:57433 3333379811 12 1a0000003e1d0b0000000000 ....>....... +1703 4.973931074 127.0.0.1:57415 127.0.0.1:57433 3333379823 26 16000000548f6340e25e3140010003000000a5901f0000000000 ....T.c@.^1@.............. +1705 4.974337578 127.0.0.1:57433 127.0.0.1:57415 377345241 12 ffffffff3e1d0b0000000000 ....>....... +1707 4.974765778 127.0.0.1:57433 127.0.0.1:57415 377345253 12 1600000021f80a0000000000 ....!....... +1709 4.974959612 127.0.0.1:57433 127.0.0.1:57415 377345265 22 12000000a5901f000000000001000300000000000000 ...................... +1711 4.975331545 127.0.0.1:57415 127.0.0.1:57433 3333379849 12 ffffffff21f80a0000000000 ....!....... +1729 5.010776758 127.0.0.1:57415 127.0.0.1:57433 3333379861 12 220000003f1d0b0000000000 "...?....... +1731 5.010987520 127.0.0.1:57415 127.0.0.1:57433 3333379873 34 1e0000001c2118d0c46f33bb010003000000a711020000000000adb223c39d01 .....!...o3.................#..... +1733 5.011137724 127.0.0.1:57415 127.0.0.1:57433 3333379907 12 43000000401d0b0000000000 C...@....... +1735 5.011220932 127.0.0.1:57415 127.0.0.1:57433 3333379919 67 3f000000980433cb0cb47c380100030000000100000000a7110200000000003d ?.....3...|8...................=B.....&......... +1737 5.011395931 127.0.0.1:57433 127.0.0.1:57415 377345287 12 ffffffff3f1d0b0000000000 ....?....... +1739 5.011603832 127.0.0.1:57433 127.0.0.1:57415 377345299 12 ffffffff401d0b0000000000 ....@....... +1741 5.012284279 127.0.0.1:57433 127.0.0.1:57415 377345311 12 3400000022f80a0000000000 4..."....... +1743 5.012453794 127.0.0.1:57433 127.0.0.1:57415 377345323 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................#.. +1745 5.012771368 127.0.0.1:57415 127.0.0.1:57433 3333379986 12 ffffffff22f80a0000000000 ...."....... +1747 5.013641596 127.0.0.1:57415 127.0.0.1:57433 3333379998 12 1e000000411d0b0000000000 ....A....... +1749 5.013838530 127.0.0.1:57415 127.0.0.1:57433 3333380010 30 1a00000055ceff62b21b3a50010003000000a7901f000000000000000000 ....U..b..:P.................. +1751 5.014124870 127.0.0.1:57433 127.0.0.1:57415 377345375 12 ffffffff411d0b0000000000 ....A....... +1753 5.014463663 127.0.0.1:57433 127.0.0.1:57415 377345387 12 1a00000023f80a0000000000 ....#....... +1755 5.014616728 127.0.0.1:57433 127.0.0.1:57415 377345399 26 16000000a7901f00000000000100030000000000000000000000 .......................... +1757 5.015367270 127.0.0.1:57415 127.0.0.1:57433 3333380040 12 ffffffff23f80a0000000000 ....#....... +1761 5.034045458 127.0.0.1:57415 127.0.0.1:57433 3333380052 12 feffffff1243010000430100 .....C...C.. +1764 5.077389479 127.0.0.1:57415 127.0.0.1:57433 3333380064 12 1a000000421d0b0000000000 ....B....... +1766 5.077570677 127.0.0.1:57415 127.0.0.1:57433 3333380076 26 16000000548f6340e25e3140010003000000a9901f0000000000 ....T.c@.^1@.............. +1768 5.077892303 127.0.0.1:57433 127.0.0.1:57415 377345425 12 ffffffff421d0b0000000000 ....B....... +1770 5.078349352 127.0.0.1:57433 127.0.0.1:57415 377345437 12 1600000024f80a0000000000 ....$....... +1772 5.078492641 127.0.0.1:57433 127.0.0.1:57415 377345449 22 12000000a9901f000000000001000300000000000000 ...................... +1774 5.078812122 127.0.0.1:57415 127.0.0.1:57433 3333380102 12 ffffffff24f80a0000000000 ....$....... +1781 5.180772781 127.0.0.1:57415 127.0.0.1:57433 3333380114 12 1a000000431d0b0000000000 ....C....... +1783 5.180977821 127.0.0.1:57415 127.0.0.1:57433 3333380126 26 16000000548f6340e25e3140010003000000ab901f0000000000 ....T.c@.^1@.............. +1785 5.181349993 127.0.0.1:57433 127.0.0.1:57415 377345471 12 ffffffff431d0b0000000000 ....C....... +1787 5.181943893 127.0.0.1:57433 127.0.0.1:57415 377345483 12 1600000025f80a0000000000 ....%....... +1789 5.182150364 127.0.0.1:57433 127.0.0.1:57415 377345495 22 12000000ab901f000000000001000300000000000000 ...................... +1791 5.182422876 127.0.0.1:57415 127.0.0.1:57433 3333380152 12 ffffffff25f80a0000000000 ....%....... +1795 5.283879995 127.0.0.1:57415 127.0.0.1:57433 3333380164 12 1a000000441d0b0000000000 ....D....... +1797 5.284100294 127.0.0.1:57415 127.0.0.1:57433 3333380176 26 16000000548f6340e25e3140010003000000ad901f0000000000 ....T.c@.^1@.............. +1799 5.284698248 127.0.0.1:57433 127.0.0.1:57415 377345517 12 ffffffff441d0b0000000000 ....D....... +1801 5.285087824 127.0.0.1:57433 127.0.0.1:57415 377345529 12 1600000026f80a0000000000 ....&....... +1803 5.285290003 127.0.0.1:57433 127.0.0.1:57415 377345541 22 12000000ad901f000000000001000300000000000000 ...................... +1805 5.285573721 127.0.0.1:57415 127.0.0.1:57433 3333380202 12 ffffffff26f80a0000000000 ....&....... +1809 5.315014601 127.0.0.1:57415 127.0.0.1:57433 3333380214 12 65000000451d0b0000000000 e...E....... +1811 5.315265179 127.0.0.1:57415 127.0.0.1:57433 3333380226 101 1e0000001c2118d0c46f33bb010003000000a811020000000000deb323c39d01 .....!...o3.................#.....?.....3...|8.. +1813 5.315552235 127.0.0.1:57433 127.0.0.1:57415 377345563 12 ffffffff451d0b0000000000 ....E....... +1815 5.316718340 127.0.0.1:57433 127.0.0.1:57415 377345575 12 3400000027f80a0000000000 4...'....... +1817 5.316870928 127.0.0.1:57433 127.0.0.1:57415 377345587 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................5. +1819 5.317240000 127.0.0.1:57415 127.0.0.1:57433 3333380327 12 ffffffff27f80a0000000000 ....'....... +1821 5.318341494 127.0.0.1:57415 127.0.0.1:57433 3333380339 12 1e000000461d0b0000000000 ....F....... +1823 5.318492174 127.0.0.1:57415 127.0.0.1:57433 3333380351 30 1a00000055ceff62b21b3a50010003000000af901f000000000000000000 ....U..b..:P.................. +1825 5.318776608 127.0.0.1:57433 127.0.0.1:57415 377345639 12 ffffffff461d0b0000000000 ....F....... +1827 5.321579218 127.0.0.1:57433 127.0.0.1:57415 377345651 12 1a00000028f80a0000000000 ....(....... +1829 5.321724176 127.0.0.1:57433 127.0.0.1:57415 377345663 26 16000000af901f00000000000100030000000000000000000000 .......................... +1831 5.321977377 127.0.0.1:57415 127.0.0.1:57433 3333380381 12 ffffffff28f80a0000000000 ....(....... +1833 5.386917353 127.0.0.1:57415 127.0.0.1:57433 3333380393 12 1a000000471d0b0000000000 ....G....... +1835 5.387102365 127.0.0.1:57415 127.0.0.1:57433 3333380405 26 16000000548f6340e25e3140010003000000b1901f0000000000 ....T.c@.^1@.............. +1837 5.387433290 127.0.0.1:57433 127.0.0.1:57415 377345689 12 ffffffff471d0b0000000000 ....G....... +1839 5.388039112 127.0.0.1:57433 127.0.0.1:57415 377345701 12 1600000029f80a0000000000 ....)....... +1841 5.388294458 127.0.0.1:57433 127.0.0.1:57415 377345713 22 12000000b1901f000000000001000300000000000000 ...................... +1843 5.388610363 127.0.0.1:57415 127.0.0.1:57433 3333380431 12 ffffffff29f80a0000000000 ....)....... +1849 5.412905693 127.0.0.1:57433 127.0.0.1:57415 377345735 12 feffffff0143010012430100 .....C...C.. +1855 5.491587162 127.0.0.1:57415 127.0.0.1:57433 3333380443 12 1a000000481d0b0000000000 ....H....... +1857 5.491803646 127.0.0.1:57415 127.0.0.1:57433 3333380455 26 16000000548f6340e25e3140010003000000b3901f0000000000 ....T.c@.^1@.............. +1859 5.492129326 127.0.0.1:57433 127.0.0.1:57415 377345747 12 ffffffff481d0b0000000000 ....H....... +1861 5.492609978 127.0.0.1:57433 127.0.0.1:57415 377345759 12 160000002af80a0000000000 ....*....... +1863 5.492776394 127.0.0.1:57433 127.0.0.1:57415 377345771 22 12000000b3901f000000000001000300000000000000 ...................... +1867 5.493088007 127.0.0.1:57415 127.0.0.1:57433 3333380481 12 ffffffff2af80a0000000000 ....*....... +1871 5.535680294 127.0.0.1:57415 127.0.0.1:57433 3333380493 12 feffffff1343010001430100 .....C...C.. +1873 5.595577002 127.0.0.1:57415 127.0.0.1:57433 3333380505 12 1a000000491d0b0000000000 ....I....... +1875 5.595775127 127.0.0.1:57415 127.0.0.1:57433 3333380517 26 16000000548f6340e25e3140010003000000b5901f0000000000 ....T.c@.^1@.............. +1877 5.596179962 127.0.0.1:57433 127.0.0.1:57415 377345793 12 ffffffff491d0b0000000000 ....I....... +1879 5.596661329 127.0.0.1:57433 127.0.0.1:57415 377345805 12 160000002bf80a0000000000 ....+....... +1881 5.596823931 127.0.0.1:57433 127.0.0.1:57415 377345817 22 12000000b5901f000000000001000300000000000000 ...................... +1883 5.597151756 127.0.0.1:57415 127.0.0.1:57433 3333380543 12 ffffffff2bf80a0000000000 ....+....... +1885 5.620187521 127.0.0.1:57415 127.0.0.1:57433 3333380555 12 650000004a1d0b0000000000 e...J....... +1887 5.620503426 127.0.0.1:57415 127.0.0.1:57433 3333380567 101 1e0000001c2118d0c46f33bb010003000000a9110200000000000fb523c39d01 .....!...o3.................#.....?.....3...|8.. +1889 5.620976686 127.0.0.1:57433 127.0.0.1:57415 377345839 12 ffffffff4a1d0b0000000000 ....J....... +1891 5.622174501 127.0.0.1:57433 127.0.0.1:57415 377345851 12 340000002cf80a0000000000 4...,....... +1893 5.622456312 127.0.0.1:57433 127.0.0.1:57415 377345863 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................-d. +1895 5.622877836 127.0.0.1:57415 127.0.0.1:57433 3333380668 12 ffffffff2cf80a0000000000 ....,....... +1897 5.623903513 127.0.0.1:57415 127.0.0.1:57433 3333380680 12 1e0000004b1d0b0000000000 ....K....... +1899 5.624063492 127.0.0.1:57415 127.0.0.1:57433 3333380692 30 1a00000055ceff62b21b3a50010003000000b7901f000000000000000000 ....U..b..:P.................. +1901 5.624471903 127.0.0.1:57433 127.0.0.1:57415 377345915 12 ffffffff4b1d0b0000000000 ....K....... +1903 5.625040293 127.0.0.1:57433 127.0.0.1:57415 377345927 12 1a0000002df80a0000000000 ....-....... +1905 5.625207424 127.0.0.1:57433 127.0.0.1:57415 377345939 26 16000000b7901f00000000000100030000000000000000000000 .......................... +1907 5.625431299 127.0.0.1:57415 127.0.0.1:57433 3333380722 12 ffffffff2df80a0000000000 ....-....... +1913 5.698202133 127.0.0.1:57415 127.0.0.1:57433 3333380734 12 1a0000004c1d0b0000000000 ....L....... +1915 5.698462009 127.0.0.1:57415 127.0.0.1:57433 3333380746 26 16000000548f6340e25e3140010003000000b9901f0000000000 ....T.c@.^1@.............. +1917 5.698951483 127.0.0.1:57433 127.0.0.1:57415 377345965 12 ffffffff4c1d0b0000000000 ....L....... +1919 5.699310541 127.0.0.1:57433 127.0.0.1:57415 377345977 12 160000002ef80a0000000000 ............ +1921 5.699472666 127.0.0.1:57433 127.0.0.1:57415 377345989 22 12000000b9901f000000000001000300000000000000 ...................... +1923 5.699759960 127.0.0.1:57415 127.0.0.1:57433 3333380772 12 ffffffff2ef80a0000000000 ............ +1940 5.801147699 127.0.0.1:57415 127.0.0.1:57433 3333380784 12 1a0000004d1d0b0000000000 ....M....... +1942 5.801448584 127.0.0.1:57415 127.0.0.1:57433 3333380796 26 16000000548f6340e25e3140010003000000bb901f0000000000 ....T.c@.^1@.............. +1944 5.801813364 127.0.0.1:57433 127.0.0.1:57415 377346011 12 ffffffff4d1d0b0000000000 ....M....... +1946 5.802301884 127.0.0.1:57433 127.0.0.1:57415 377346023 12 160000002ff80a0000000000 ..../....... +1948 5.802502394 127.0.0.1:57433 127.0.0.1:57415 377346035 22 12000000bb901f000000000001000300000000000000 ...................... +1950 5.802755356 127.0.0.1:57415 127.0.0.1:57433 3333380822 12 ffffffff2ff80a0000000000 ..../....... +1954 5.904327393 127.0.0.1:57415 127.0.0.1:57433 3333380834 12 1a0000004e1d0b0000000000 ....N....... +1956 5.904512882 127.0.0.1:57415 127.0.0.1:57433 3333380846 26 16000000548f6340e25e3140010003000000bd901f0000000000 ....T.c@.^1@.............. +1958 5.904926300 127.0.0.1:57433 127.0.0.1:57415 377346057 12 ffffffff4e1d0b0000000000 ....N....... +1960 5.905285120 127.0.0.1:57433 127.0.0.1:57415 377346069 12 1600000030f80a0000000000 ....0....... +1962 5.905449867 127.0.0.1:57433 127.0.0.1:57415 377346081 22 12000000bd901f000000000001000300000000000000 ...................... +1964 5.905744076 127.0.0.1:57415 127.0.0.1:57433 3333380872 12 ffffffff30f80a0000000000 ....0....... +1970 5.911788702 127.0.0.1:57433 127.0.0.1:57415 377346103 12 feffffff0243010013430100 .....C...C.. +1974 5.925534010 127.0.0.1:57415 127.0.0.1:57433 3333380884 12 220000004f1d0b0000000000 "...O....... +1976 5.925711155 127.0.0.1:57415 127.0.0.1:57433 3333380896 34 1e0000001c2118d0c46f33bb010003000000aa1102000000000040b623c39d01 .....!...o3...............@.#..... +1978 5.925856829 127.0.0.1:57415 127.0.0.1:57433 3333380930 12 43000000501d0b0000000000 C...P....... +1980 5.925945282 127.0.0.1:57415 127.0.0.1:57433 3333380942 67 3f000000980433cb0cb47c380100030000000100000000aa110200000000003d ?.....3...|8...................=B.....&......... +1981 5.925997257 127.0.0.1:57433 127.0.0.1:57415 377346115 12 ffffffff4f1d0b0000000000 ....O....... +1984 5.926212549 127.0.0.1:57433 127.0.0.1:57415 377346127 12 ffffffff501d0b0000000000 ....P....... +1986 5.926905394 127.0.0.1:57433 127.0.0.1:57415 377346139 12 3400000031f80a0000000000 4...1....... +1988 5.927070856 127.0.0.1:57433 127.0.0.1:57415 377346151 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +1990 5.927365541 127.0.0.1:57415 127.0.0.1:57433 3333381009 12 ffffffff31f80a0000000000 ....1....... +1991 5.928185940 127.0.0.1:57415 127.0.0.1:57433 3333381021 12 1e000000511d0b0000000000 ....Q....... +1993 5.928338051 127.0.0.1:57415 127.0.0.1:57433 3333381033 30 1a00000055ceff62b21b3a50010003000000bf901f000000000000000000 ....U..b..:P.................. +1995 5.928687096 127.0.0.1:57433 127.0.0.1:57415 377346203 12 ffffffff511d0b0000000000 ....Q....... +1997 5.929039240 127.0.0.1:57433 127.0.0.1:57415 377346215 12 1a00000032f80a0000000000 ....2....... +1999 5.929200411 127.0.0.1:57433 127.0.0.1:57415 377346227 26 16000000bf901f00000000000100030000000000000000000000 .......................... +2001 5.929548502 127.0.0.1:57415 127.0.0.1:57433 3333381063 12 ffffffff32f80a0000000000 ....2....... +2007 6.007047176 127.0.0.1:57415 127.0.0.1:57433 3333381075 12 1a000000521d0b0000000000 ....R....... +2009 6.007250071 127.0.0.1:57415 127.0.0.1:57433 3333381087 26 16000000548f6340e25e3140010003000000c1901f0000000000 ....T.c@.^1@.............. +2011 6.007628679 127.0.0.1:57433 127.0.0.1:57415 377346253 12 ffffffff521d0b0000000000 ....R....... +2013 6.008008957 127.0.0.1:57433 127.0.0.1:57415 377346265 12 1600000033f80a0000000000 ....3....... +2015 6.008172512 127.0.0.1:57433 127.0.0.1:57415 377346277 22 12000000c1901f000000000001000300000000000000 ...................... +2017 6.008466244 127.0.0.1:57415 127.0.0.1:57433 3333381113 12 ffffffff33f80a0000000000 ....3....... +2021 6.036799431 127.0.0.1:57415 127.0.0.1:57433 3333381125 12 feffffff1443010002430100 .....C...C.. +2023 6.110412121 127.0.0.1:57415 127.0.0.1:57433 3333381137 12 1a000000531d0b0000000000 ....S....... +2025 6.110599518 127.0.0.1:57415 127.0.0.1:57433 3333381149 26 16000000548f6340e25e3140010003000000c3901f0000000000 ....T.c@.^1@.............. +2027 6.110956192 127.0.0.1:57433 127.0.0.1:57415 377346299 12 ffffffff531d0b0000000000 ....S....... +2029 6.111348391 127.0.0.1:57433 127.0.0.1:57415 377346311 12 1600000034f80a0000000000 ....4....... +2031 6.111507416 127.0.0.1:57433 127.0.0.1:57415 377346323 22 12000000c3901f000000000001000300000000000000 ...................... +2033 6.111918688 127.0.0.1:57415 127.0.0.1:57433 3333381175 12 ffffffff34f80a0000000000 ....4....... +2041 6.213924408 127.0.0.1:57415 127.0.0.1:57433 3333381187 12 1a000000541d0b0000000000 ....T....... +2043 6.214110851 127.0.0.1:57415 127.0.0.1:57433 3333381199 26 16000000548f6340e25e3140010003000000c5901f0000000000 ....T.c@.^1@.............. +2045 6.214539289 127.0.0.1:57433 127.0.0.1:57415 377346345 12 ffffffff541d0b0000000000 ....T....... +2047 6.215528488 127.0.0.1:57433 127.0.0.1:57415 377346357 12 1600000035f80a0000000000 ....5....... +2049 6.215714455 127.0.0.1:57433 127.0.0.1:57415 377346369 22 12000000c5901f000000000001000300000000000000 ...................... +2051 6.216052771 127.0.0.1:57415 127.0.0.1:57433 3333381225 12 ffffffff35f80a0000000000 ....5....... +2053 6.240337610 127.0.0.1:57415 127.0.0.1:57433 3333381237 12 65000000551d0b0000000000 e...U....... +2055 6.240516424 127.0.0.1:57415 127.0.0.1:57433 3333381249 101 1e0000001c2118d0c46f33bb010003000000ab110200000000007bb723c39d01 .....!...o3...............{.#.....?.....3...|8.. +2057 6.241088867 127.0.0.1:57433 127.0.0.1:57415 377346391 12 ffffffff551d0b0000000000 ....U....... +2059 6.241612434 127.0.0.1:57433 127.0.0.1:57415 377346403 12 3400000036f80a0000000000 4...6....... +2061 6.241832256 127.0.0.1:57433 127.0.0.1:57415 377346415 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +2063 6.242136240 127.0.0.1:57415 127.0.0.1:57433 3333381350 12 ffffffff36f80a0000000000 ....6....... +2065 6.243269682 127.0.0.1:57415 127.0.0.1:57433 3333381362 12 1e000000561d0b0000000000 ....V....... +2067 6.243462563 127.0.0.1:57415 127.0.0.1:57433 3333381374 30 1a00000055ceff62b21b3a50010003000000c7901f000000000000000000 ....U..b..:P.................. +2069 6.243822098 127.0.0.1:57433 127.0.0.1:57415 377346467 12 ffffffff561d0b0000000000 ....V....... +2071 6.244561672 127.0.0.1:57433 127.0.0.1:57415 377346479 12 1a00000037f80a0000000000 ....7....... +2073 6.244705915 127.0.0.1:57433 127.0.0.1:57415 377346491 26 16000000c7901f00000000000100030000000000000000000000 .......................... +2075 6.245182991 127.0.0.1:57415 127.0.0.1:57433 3333381404 12 ffffffff37f80a0000000000 ....7....... +2081 6.317007780 127.0.0.1:57415 127.0.0.1:57433 3333381416 12 1a000000571d0b0000000000 ....W....... +2083 6.317183018 127.0.0.1:57415 127.0.0.1:57433 3333381428 26 16000000548f6340e25e3140010003000000c9901f0000000000 ....T.c@.^1@.............. +2085 6.317515373 127.0.0.1:57433 127.0.0.1:57415 377346517 12 ffffffff571d0b0000000000 ....W....... +2087 6.317873240 127.0.0.1:57433 127.0.0.1:57415 377346529 12 1600000038f80a0000000000 ....8....... +2089 6.318068743 127.0.0.1:57433 127.0.0.1:57415 377346541 22 12000000c9901f000000000001000300000000000000 ...................... +2091 6.318405867 127.0.0.1:57415 127.0.0.1:57433 3333381454 12 ffffffff38f80a0000000000 ....8....... +2094 6.412730217 127.0.0.1:57433 127.0.0.1:57415 377346563 12 feffffff0343010014430100 .....C...C.. +2101 6.419950724 127.0.0.1:57415 127.0.0.1:57433 3333381466 12 1a000000581d0b0000000000 ....X....... +2103 6.420116663 127.0.0.1:57415 127.0.0.1:57433 3333381478 26 16000000548f6340e25e3140010003000000cb901f0000000000 ....T.c@.^1@.............. +2105 6.420466185 127.0.0.1:57433 127.0.0.1:57415 377346575 12 ffffffff581d0b0000000000 ....X....... +2107 6.421030760 127.0.0.1:57433 127.0.0.1:57415 377346587 12 1600000039f80a0000000000 ....9....... +2109 6.421202898 127.0.0.1:57433 127.0.0.1:57415 377346599 22 12000000cb901f000000000001000300000000000000 ...................... +2111 6.421617985 127.0.0.1:57415 127.0.0.1:57433 3333381504 12 ffffffff39f80a0000000000 ....9....... +2117 6.522991896 127.0.0.1:57415 127.0.0.1:57433 3333381516 12 1a000000591d0b0000000000 ....Y....... +2119 6.523182392 127.0.0.1:57415 127.0.0.1:57433 3333381528 26 16000000548f6340e25e3140010003000000cd901f0000000000 ....T.c@.^1@.............. +2121 6.523571730 127.0.0.1:57433 127.0.0.1:57415 377346621 12 ffffffff591d0b0000000000 ....Y....... +2123 6.524348259 127.0.0.1:57433 127.0.0.1:57415 377346633 12 160000003af80a0000000000 ....:....... +2125 6.524582863 127.0.0.1:57433 127.0.0.1:57415 377346645 22 12000000cd901f000000000001000300000000000000 ...................... +2127 6.524907351 127.0.0.1:57415 127.0.0.1:57433 3333381554 12 ffffffff3af80a0000000000 ....:....... +2131 6.538982868 127.0.0.1:57415 127.0.0.1:57433 3333381566 12 feffffff1543010003430100 .....C...C.. +2133 6.545459747 127.0.0.1:57415 127.0.0.1:57433 3333381578 12 650000005a1d0b0000000000 e...Z....... +2135 6.545658112 127.0.0.1:57415 127.0.0.1:57433 3333381590 101 1e0000001c2118d0c46f33bb010003000000ac11020000000000acb823c39d01 .....!...o3.................#.....?.....3...|8.. +2137 6.545958519 127.0.0.1:57433 127.0.0.1:57415 377346667 12 ffffffff5a1d0b0000000000 ....Z....... +2139 6.546921492 127.0.0.1:57433 127.0.0.1:57415 377346679 12 340000003bf80a0000000000 4...;....... +2141 6.547114611 127.0.0.1:57433 127.0.0.1:57415 377346691 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............EL.. +2143 6.547429085 127.0.0.1:57415 127.0.0.1:57433 3333381691 12 ffffffff3bf80a0000000000 ....;....... +2145 6.548307657 127.0.0.1:57415 127.0.0.1:57433 3333381703 12 1e0000005b1d0b0000000000 ....[....... +2147 6.548505306 127.0.0.1:57415 127.0.0.1:57433 3333381715 30 1a00000055ceff62b21b3a50010003000000cf901f000000000000000000 ....U..b..:P.................. +2149 6.548923016 127.0.0.1:57433 127.0.0.1:57415 377346743 12 ffffffff5b1d0b0000000000 ....[....... +2151 6.549289703 127.0.0.1:57433 127.0.0.1:57415 377346755 12 1a0000003cf80a0000000000 ....<....... +2153 6.549425840 127.0.0.1:57433 127.0.0.1:57415 377346767 26 16000000cf901f00000000000100030000000000000000000000 .......................... +2155 6.549642563 127.0.0.1:57415 127.0.0.1:57433 3333381745 12 ffffffff3cf80a0000000000 ....<....... +2157 6.626861572 127.0.0.1:57415 127.0.0.1:57433 3333381757 12 1a0000005c1d0b0000000000 ....\....... +2159 6.627044439 127.0.0.1:57415 127.0.0.1:57433 3333381769 26 16000000548f6340e25e3140010003000000d1901f0000000000 ....T.c@.^1@.............. +2161 6.627440214 127.0.0.1:57433 127.0.0.1:57415 377346793 12 ffffffff5c1d0b0000000000 ....\....... +2163 6.627748251 127.0.0.1:57433 127.0.0.1:57415 377346805 12 160000003df80a0000000000 ....=....... +2165 6.627909422 127.0.0.1:57433 127.0.0.1:57415 377346817 22 12000000d1901f000000000001000300000000000000 ...................... +2167 6.628181934 127.0.0.1:57415 127.0.0.1:57433 3333381795 12 ffffffff3df80a0000000000 ....=....... +2183 6.730073214 127.0.0.1:57415 127.0.0.1:57433 3333381807 12 1a0000005d1d0b0000000000 ....]....... +2185 6.730242252 127.0.0.1:57415 127.0.0.1:57433 3333381819 26 16000000548f6340e25e3140010003000000d3901f0000000000 ....T.c@.^1@.............. +2187 6.730578423 127.0.0.1:57433 127.0.0.1:57415 377346839 12 ffffffff5d1d0b0000000000 ....]....... +2189 6.731048107 127.0.0.1:57433 127.0.0.1:57415 377346851 12 160000003ef80a0000000000 ....>....... +2191 6.731198549 127.0.0.1:57433 127.0.0.1:57415 377346863 22 12000000d3901f000000000001000300000000000000 ...................... +2193 6.731479168 127.0.0.1:57415 127.0.0.1:57433 3333381845 12 ffffffff3ef80a0000000000 ....>....... +2201 6.833995342 127.0.0.1:57415 127.0.0.1:57433 3333381857 12 1a0000005e1d0b0000000000 ....^....... +2203 6.834317684 127.0.0.1:57415 127.0.0.1:57433 3333381869 26 16000000548f6340e25e3140010003000000d5901f0000000000 ....T.c@.^1@.............. +2205 6.834722042 127.0.0.1:57433 127.0.0.1:57415 377346885 12 ffffffff5e1d0b0000000000 ....^....... +2207 6.835303783 127.0.0.1:57433 127.0.0.1:57415 377346897 12 160000003ff80a0000000000 ....?....... +2209 6.835428953 127.0.0.1:57433 127.0.0.1:57415 377346909 22 12000000d5901f000000000001000300000000000000 ...................... +2211 6.835849524 127.0.0.1:57415 127.0.0.1:57433 3333381895 12 ffffffff3ff80a0000000000 ....?....... +2213 6.849969387 127.0.0.1:57415 127.0.0.1:57433 3333381907 12 650000005f1d0b0000000000 e..._....... +2215 6.850292921 127.0.0.1:57415 127.0.0.1:57433 3333381919 101 1e0000001c2118d0c46f33bb010003000000ad11020000000000ddb923c39d01 .....!...o3.................#.....?.....3...|8.. +2217 6.850677967 127.0.0.1:57433 127.0.0.1:57415 377346931 12 ffffffff5f1d0b0000000000 ...._....... +2219 6.851677179 127.0.0.1:57433 127.0.0.1:57415 377346943 12 3400000040f80a0000000000 4...@....... +2221 6.851885557 127.0.0.1:57433 127.0.0.1:57415 377346955 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............J... +2223 6.852177382 127.0.0.1:57415 127.0.0.1:57433 3333382020 12 ffffffff40f80a0000000000 ....@....... +2225 6.853226900 127.0.0.1:57415 127.0.0.1:57433 3333382032 12 1e000000601d0b0000000000 ....`....... +2227 6.853477955 127.0.0.1:57415 127.0.0.1:57433 3333382044 30 1a00000055ceff62b21b3a50010003000000d7901f000000000000000000 ....U..b..:P.................. +2229 6.853805780 127.0.0.1:57433 127.0.0.1:57415 377347007 12 ffffffff601d0b0000000000 ....`....... +2231 6.854458570 127.0.0.1:57433 127.0.0.1:57415 377347019 12 1a00000041f80a0000000000 ....A....... +2233 6.854653358 127.0.0.1:57433 127.0.0.1:57415 377347031 26 16000000d7901f00000000000100030000000000000000000000 .......................... +2235 6.854881287 127.0.0.1:57415 127.0.0.1:57433 3333382074 12 ffffffff41f80a0000000000 ....A....... +2270 6.914704800 127.0.0.1:57433 127.0.0.1:57415 377347057 12 feffffff0443010015430100 .....C...C.. +2277 6.936942339 127.0.0.1:57415 127.0.0.1:57433 3333382086 12 1a000000611d0b0000000000 ....a....... +2279 6.937126875 127.0.0.1:57415 127.0.0.1:57433 3333382098 26 16000000548f6340e25e3140010003000000d9901f0000000000 ....T.c@.^1@.............. +2281 6.937619448 127.0.0.1:57433 127.0.0.1:57415 377347069 12 ffffffff611d0b0000000000 ....a....... +2283 6.937921286 127.0.0.1:57433 127.0.0.1:57415 377347081 12 1600000042f80a0000000000 ....B....... +2285 6.938134670 127.0.0.1:57433 127.0.0.1:57415 377347093 22 12000000d9901f000000000001000300000000000000 ...................... +2287 6.938415051 127.0.0.1:57415 127.0.0.1:57433 3333382124 12 ffffffff42f80a0000000000 ....B....... +2297 7.039599895 127.0.0.1:57415 127.0.0.1:57433 3333382136 12 feffffff1643010004430100 .....C...C.. +2299 7.039967299 127.0.0.1:57415 127.0.0.1:57433 3333382148 12 1a000000621d0b0000000000 ....b....... +2301 7.040183306 127.0.0.1:57415 127.0.0.1:57433 3333382160 26 16000000548f6340e25e3140010003000000db901f0000000000 ....T.c@.^1@.............. +2303 7.040574312 127.0.0.1:57433 127.0.0.1:57415 377347115 12 ffffffff621d0b0000000000 ....b....... +2305 7.041112661 127.0.0.1:57433 127.0.0.1:57415 377347127 12 1600000043f80a0000000000 ....C....... +2307 7.041318417 127.0.0.1:57433 127.0.0.1:57415 377347139 22 12000000db901f000000000001000300000000000000 ...................... +2309 7.041539431 127.0.0.1:57415 127.0.0.1:57433 3333382186 12 ffffffff43f80a0000000000 ....C....... +2324 7.142767668 127.0.0.1:57415 127.0.0.1:57433 3333382198 12 1a000000631d0b0000000000 ....c....... +2326 7.142936468 127.0.0.1:57415 127.0.0.1:57433 3333382210 26 16000000548f6340e25e3140010003000000dd901f0000000000 ....T.c@.^1@.............. +2328 7.143301010 127.0.0.1:57433 127.0.0.1:57415 377347161 12 ffffffff631d0b0000000000 ....c....... +2330 7.143746853 127.0.0.1:57433 127.0.0.1:57415 377347173 12 1600000044f80a0000000000 ....D....... +2332 7.144173145 127.0.0.1:57433 127.0.0.1:57415 377347185 22 12000000dd901f000000000001000300000000000000 ...................... +2334 7.144490719 127.0.0.1:57415 127.0.0.1:57433 3333382236 12 ffffffff44f80a0000000000 ....D....... +2363 7.155721188 127.0.0.1:57415 127.0.0.1:57433 3333382248 12 65000000641d0b0000000000 e...d....... +2365 7.155913115 127.0.0.1:57415 127.0.0.1:57433 3333382260 101 1e0000001c2118d0c46f33bb010003000000ae110200000000000fbb23c39d01 .....!...o3.................#.....?.....3...|8.. +2367 7.156242847 127.0.0.1:57433 127.0.0.1:57415 377347207 12 ffffffff641d0b0000000000 ....d....... +2369 7.157157183 127.0.0.1:57433 127.0.0.1:57415 377347219 12 3400000045f80a0000000000 4...E....... +2371 7.157590389 127.0.0.1:57433 127.0.0.1:57415 377347231 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................iN. +2373 7.157918215 127.0.0.1:57415 127.0.0.1:57433 3333382361 12 ffffffff45f80a0000000000 ....E....... +2375 7.158705950 127.0.0.1:57415 127.0.0.1:57433 3333382373 12 1e000000651d0b0000000000 ....e....... +2377 7.158844709 127.0.0.1:57415 127.0.0.1:57433 3333382385 30 1a00000055ceff62b21b3a50010003000000df901f000000000000000000 ....U..b..:P.................. +2379 7.159255505 127.0.0.1:57433 127.0.0.1:57415 377347283 12 ffffffff651d0b0000000000 ....e....... +2381 7.159507990 127.0.0.1:57433 127.0.0.1:57415 377347295 12 1a00000046f80a0000000000 ....F....... +2383 7.159673452 127.0.0.1:57433 127.0.0.1:57415 377347307 26 16000000df901f00000000000100030000000000000000000000 .......................... +2385 7.159961462 127.0.0.1:57415 127.0.0.1:57433 3333382415 12 ffffffff46f80a0000000000 ....F....... +2389 7.246772289 127.0.0.1:57415 127.0.0.1:57433 3333382427 12 1a000000661d0b0000000000 ....f....... +2391 7.246997356 127.0.0.1:57415 127.0.0.1:57433 3333382439 26 16000000548f6340e25e3140010003000000e1901f0000000000 ....T.c@.^1@.............. +2393 7.247366905 127.0.0.1:57433 127.0.0.1:57415 377347333 12 ffffffff661d0b0000000000 ....f....... +2395 7.247912407 127.0.0.1:57433 127.0.0.1:57415 377347345 12 1600000047f80a0000000000 ....G....... +2397 7.248103619 127.0.0.1:57433 127.0.0.1:57415 377347357 22 12000000e1901f000000000001000300000000000000 ...................... +2399 7.248409748 127.0.0.1:57415 127.0.0.1:57433 3333382465 12 ffffffff47f80a0000000000 ....G....... +2407 7.350037813 127.0.0.1:57415 127.0.0.1:57433 3333382477 12 1a000000671d0b0000000000 ....g....... +2409 7.350265026 127.0.0.1:57415 127.0.0.1:57433 3333382489 26 16000000548f6340e25e3140010003000000e3901f0000000000 ....T.c@.^1@.............. +2411 7.350599527 127.0.0.1:57433 127.0.0.1:57415 377347379 12 ffffffff671d0b0000000000 ....g....... +2413 7.351173162 127.0.0.1:57433 127.0.0.1:57415 377347391 12 1600000048f80a0000000000 ....H....... +2415 7.351368189 127.0.0.1:57433 127.0.0.1:57415 377347403 22 12000000e3901f000000000001000300000000000000 ...................... +2417 7.351608038 127.0.0.1:57415 127.0.0.1:57433 3333382515 12 ffffffff48f80a0000000000 ....H....... +2427 7.415039301 127.0.0.1:57433 127.0.0.1:57415 377347425 12 feffffff0543010016430100 .....C...C.. +2435 7.453057528 127.0.0.1:57415 127.0.0.1:57433 3333382527 12 1a000000681d0b0000000000 ....h....... +2437 7.453281879 127.0.0.1:57415 127.0.0.1:57433 3333382539 26 16000000548f6340e25e3140010003000000e5901f0000000000 ....T.c@.^1@.............. +2439 7.453795433 127.0.0.1:57433 127.0.0.1:57415 377347437 12 ffffffff681d0b0000000000 ....h....... +2441 7.454455137 127.0.0.1:57433 127.0.0.1:57415 377347449 12 1600000049f80a0000000000 ....I....... +2443 7.454644680 127.0.0.1:57433 127.0.0.1:57415 377347461 22 12000000e5901f000000000001000300000000000000 ...................... +2445 7.454993963 127.0.0.1:57415 127.0.0.1:57433 3333382565 12 ffffffff49f80a0000000000 ....I....... +2447 7.460166454 127.0.0.1:57415 127.0.0.1:57433 3333382577 12 22000000691d0b0000000000 "...i....... +2449 7.460389614 127.0.0.1:57415 127.0.0.1:57433 3333382589 34 1e0000001c2118d0c46f33bb010003000000af110200000000003fbc23c39d01 .....!...o3...............?.#..... +2451 7.460509300 127.0.0.1:57415 127.0.0.1:57433 3333382623 12 430000006a1d0b0000000000 C...j....... +2453 7.460613489 127.0.0.1:57415 127.0.0.1:57433 3333382635 67 3f000000980433cb0cb47c380100030000000100000000af110200000000003d ?.....3...|8...................=B.....&......... +2454 7.460629940 127.0.0.1:57433 127.0.0.1:57415 377347483 12 ffffffff691d0b0000000000 ....i....... +2457 7.460846186 127.0.0.1:57433 127.0.0.1:57415 377347495 12 ffffffff6a1d0b0000000000 ....j....... +2459 7.462054968 127.0.0.1:57433 127.0.0.1:57415 377347507 12 340000004af80a0000000000 4...J....... +2461 7.462222576 127.0.0.1:57433 127.0.0.1:57415 377347519 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................|. +2463 7.462519169 127.0.0.1:57415 127.0.0.1:57433 3333382702 12 ffffffff4af80a0000000000 ....J....... +2464 7.463451862 127.0.0.1:57415 127.0.0.1:57433 3333382714 12 1e0000006b1d0b0000000000 ....k....... +2466 7.463593245 127.0.0.1:57415 127.0.0.1:57433 3333382726 30 1a00000055ceff62b21b3a50010003000000e7901f000000000000000000 ....U..b..:P.................. +2468 7.463877439 127.0.0.1:57433 127.0.0.1:57415 377347571 12 ffffffff6b1d0b0000000000 ....k....... +2470 7.464572668 127.0.0.1:57433 127.0.0.1:57415 377347583 12 1a0000004bf80a0000000000 ....K....... +2472 7.464722157 127.0.0.1:57433 127.0.0.1:57415 377347595 26 16000000e7901f00000000000100030000000000000000000000 .......................... +2474 7.464979410 127.0.0.1:57415 127.0.0.1:57433 3333382756 12 ffffffff4bf80a0000000000 ....K....... +2514 7.541517496 127.0.0.1:57415 127.0.0.1:57433 3333382768 12 feffffff1743010005430100 .....C...C.. +2516 7.556862593 127.0.0.1:57415 127.0.0.1:57433 3333382780 12 1a0000006c1d0b0000000000 ....l....... +2518 7.557058573 127.0.0.1:57415 127.0.0.1:57433 3333382792 26 16000000548f6340e25e3140010003000000e9901f0000000000 ....T.c@.^1@.............. +2520 7.557438135 127.0.0.1:57433 127.0.0.1:57415 377347621 12 ffffffff6c1d0b0000000000 ....l....... +2522 7.558444500 127.0.0.1:57433 127.0.0.1:57415 377347633 12 160000004cf80a0000000000 ....L....... +2524 7.558581591 127.0.0.1:57433 127.0.0.1:57415 377347645 22 12000000e9901f000000000001000300000000000000 ...................... +2526 7.558918238 127.0.0.1:57415 127.0.0.1:57433 3333382818 12 ffffffff4cf80a0000000000 ....L....... +2534 7.661173582 127.0.0.1:57415 127.0.0.1:57433 3333382830 12 1a0000006d1d0b0000000000 ....m....... +2536 7.661512375 127.0.0.1:57415 127.0.0.1:57433 3333382842 26 16000000548f6340e25e3140010003000000eb901f0000000000 ....T.c@.^1@.............. +2538 7.661843300 127.0.0.1:57433 127.0.0.1:57415 377347667 12 ffffffff6d1d0b0000000000 ....m....... +2540 7.662331581 127.0.0.1:57433 127.0.0.1:57415 377347679 12 160000004df80a0000000000 ....M....... +2542 7.662479162 127.0.0.1:57433 127.0.0.1:57415 377347691 22 12000000eb901f000000000001000300000000000000 ...................... +2544 7.662840366 127.0.0.1:57415 127.0.0.1:57433 3333382868 12 ffffffff4df80a0000000000 ....M....... +2550 7.763974190 127.0.0.1:57415 127.0.0.1:57433 3333382880 12 1a0000006e1d0b0000000000 ....n....... +2552 7.764149189 127.0.0.1:57415 127.0.0.1:57433 3333382892 26 16000000548f6340e25e3140010003000000ed901f0000000000 ....T.c@.^1@.............. +2554 7.764335632 127.0.0.1:57415 127.0.0.1:57433 3333382918 12 650000006f1d0b0000000000 e...o....... +2556 7.764443159 127.0.0.1:57415 127.0.0.1:57433 3333382930 101 1e0000001c2118d0c46f33bb010003000000b0110200000000006fbd23c39d01 .....!...o3...............o.#.....?.....3...|8.. +2557 7.764461279 127.0.0.1:57433 127.0.0.1:57415 377347713 12 ffffffff6e1d0b0000000000 ....n....... +2560 7.765159369 127.0.0.1:57433 127.0.0.1:57415 377347725 12 ffffffff6f1d0b0000000000 ....o....... +2562 7.765602589 127.0.0.1:57433 127.0.0.1:57415 377347737 12 160000004ef80a0000000000 ....N....... +2564 7.765801191 127.0.0.1:57433 127.0.0.1:57415 377347749 22 12000000ed901f000000000001000300000000000000 ...................... +2566 7.766020298 127.0.0.1:57415 127.0.0.1:57433 3333383031 12 ffffffff4ef80a0000000000 ....N....... +2567 7.767297268 127.0.0.1:57433 127.0.0.1:57415 377347771 12 340000004ff80a0000000000 4...O....... +2569 7.767452478 127.0.0.1:57433 127.0.0.1:57415 377347783 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............W... +2571 7.767692804 127.0.0.1:57415 127.0.0.1:57433 3333383043 12 ffffffff4ff80a0000000000 ....O....... +2572 7.768525600 127.0.0.1:57415 127.0.0.1:57433 3333383055 12 1e000000701d0b0000000000 ....p....... +2573 7.768637896 127.0.0.1:57415 127.0.0.1:57433 3333383067 30 1a00000055ceff62b21b3a50010003000000ef901f000000000000000000 ....U..b..:P.................. +2574 7.768863678 127.0.0.1:57433 127.0.0.1:57415 377347835 12 ffffffff701d0b0000000000 ....p....... +2576 7.770374775 127.0.0.1:57433 127.0.0.1:57415 377347847 12 1a00000050f80a0000000000 ....P....... +2578 7.770520687 127.0.0.1:57433 127.0.0.1:57415 377347859 26 16000000ef901f00000000000100030000000000000000000000 .......................... +2580 7.770769596 127.0.0.1:57415 127.0.0.1:57433 3333383097 12 ffffffff50f80a0000000000 ....P....... +2586 7.868872404 127.0.0.1:57415 127.0.0.1:57433 3333383109 12 1a000000711d0b0000000000 ....q....... +2588 7.869066000 127.0.0.1:57415 127.0.0.1:57433 3333383121 26 16000000548f6340e25e3140010003000000f1901f0000000000 ....T.c@.^1@.............. +2590 7.869476080 127.0.0.1:57433 127.0.0.1:57415 377347885 12 ffffffff711d0b0000000000 ....q....... +2592 7.869952679 127.0.0.1:57433 127.0.0.1:57415 377347897 12 1600000051f80a0000000000 ....Q....... +2594 7.870112896 127.0.0.1:57433 127.0.0.1:57415 377347909 22 12000000f1901f000000000001000300000000000000 ...................... +2596 7.870565891 127.0.0.1:57415 127.0.0.1:57433 3333383147 12 ffffffff51f80a0000000000 ....Q....... +2603 7.915388584 127.0.0.1:57433 127.0.0.1:57415 377347931 12 feffffff0643010017430100 .....C...C.. +2606 7.972576857 127.0.0.1:57415 127.0.0.1:57433 3333383159 12 1a000000721d0b0000000000 ....r....... +2608 7.972790003 127.0.0.1:57415 127.0.0.1:57433 3333383171 26 16000000548f6340e25e3140010003000000f3901f0000000000 ....T.c@.^1@.............. +2610 7.973147631 127.0.0.1:57433 127.0.0.1:57415 377347943 12 ffffffff721d0b0000000000 ....r....... +2612 7.973609447 127.0.0.1:57433 127.0.0.1:57415 377347955 12 1600000052f80a0000000000 ....R....... +2614 7.973772287 127.0.0.1:57433 127.0.0.1:57415 377347967 22 12000000f3901f000000000001000300000000000000 ...................... +2616 7.974191666 127.0.0.1:57415 127.0.0.1:57433 3333383197 12 ffffffff52f80a0000000000 ....R....... +2624 8.042154074 127.0.0.1:57415 127.0.0.1:57433 3333383209 12 feffffff1843010006430100 .....C...C.. +2626 8.070037603 127.0.0.1:57415 127.0.0.1:57433 3333383221 12 22000000731d0b0000000000 "...s....... +2628 8.070235968 127.0.0.1:57415 127.0.0.1:57433 3333383233 34 1e0000001c2118d0c46f33bb010003000000b111020000000000a2be23c39d01 .....!...o3.................#..... +2630 8.070418358 127.0.0.1:57415 127.0.0.1:57433 3333383267 12 43000000741d0b0000000000 C...t....... +2632 8.070532084 127.0.0.1:57415 127.0.0.1:57433 3333383279 67 3f000000980433cb0cb47c380100030000000100000000b1110200000000003d ?.....3...|8...................=B.....&......... +2633 8.070585489 127.0.0.1:57433 127.0.0.1:57415 377347989 12 ffffffff731d0b0000000000 ....s....... +2636 8.070861578 127.0.0.1:57433 127.0.0.1:57415 377348001 12 ffffffff741d0b0000000000 ....t....... +2638 8.071720600 127.0.0.1:57433 127.0.0.1:57415 377348013 12 3400000053f80a0000000000 4...S....... +2640 8.071912766 127.0.0.1:57433 127.0.0.1:57415 377348025 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............D... +2642 8.072226763 127.0.0.1:57415 127.0.0.1:57433 3333383346 12 ffffffff53f80a0000000000 ....S....... +2643 8.073090792 127.0.0.1:57415 127.0.0.1:57433 3333383358 12 1e000000751d0b0000000000 ....u....... +2644 8.073240280 127.0.0.1:57415 127.0.0.1:57433 3333383370 30 1a00000055ceff62b21b3a50010003000000f5901f000000000000000000 ....U..b..:P.................. +2645 8.073511600 127.0.0.1:57433 127.0.0.1:57415 377348077 12 ffffffff751d0b0000000000 ....u....... +2647 8.073979139 127.0.0.1:57433 127.0.0.1:57415 377348089 12 1a00000054f80a0000000000 ....T....... +2649 8.074122190 127.0.0.1:57433 127.0.0.1:57415 377348101 26 16000000f5901f00000000000100030000000000000000000000 .......................... +2651 8.074360132 127.0.0.1:57415 127.0.0.1:57433 3333383400 12 ffffffff54f80a0000000000 ....T....... +2652 8.076329470 127.0.0.1:57415 127.0.0.1:57433 3333383412 12 1a000000761d0b0000000000 ....v....... +2653 8.076445580 127.0.0.1:57415 127.0.0.1:57433 3333383424 26 16000000548f6340e25e3140010003000000f7901f0000000000 ....T.c@.^1@.............. +2654 8.076708794 127.0.0.1:57433 127.0.0.1:57415 377348127 12 ffffffff761d0b0000000000 ....v....... +2656 8.077036619 127.0.0.1:57433 127.0.0.1:57415 377348139 12 1600000055f80a0000000000 ....U....... +2658 8.077176332 127.0.0.1:57433 127.0.0.1:57415 377348151 22 12000000f7901f000000000001000300000000000000 ...................... +2660 8.077358246 127.0.0.1:57415 127.0.0.1:57433 3333383450 12 ffffffff55f80a0000000000 ....U....... +2666 8.180426598 127.0.0.1:57415 127.0.0.1:57433 3333383462 12 1a000000771d0b0000000000 ....w....... +2668 8.180675268 127.0.0.1:57415 127.0.0.1:57433 3333383474 26 16000000548f6340e25e3140010003000000f9901f0000000000 ....T.c@.^1@.............. +2670 8.180999041 127.0.0.1:57433 127.0.0.1:57415 377348173 12 ffffffff771d0b0000000000 ....w....... +2672 8.181551456 127.0.0.1:57433 127.0.0.1:57415 377348185 12 1600000056f80a0000000000 ....V....... +2674 8.181709051 127.0.0.1:57433 127.0.0.1:57415 377348197 22 12000000f9901f000000000001000300000000000000 ...................... +2676 8.181997538 127.0.0.1:57415 127.0.0.1:57433 3333383500 12 ffffffff56f80a0000000000 ....V....... +2680 8.284245253 127.0.0.1:57415 127.0.0.1:57433 3333383512 12 1a000000781d0b0000000000 ....x....... +2682 8.284481764 127.0.0.1:57415 127.0.0.1:57433 3333383524 26 16000000548f6340e25e3140010003000000fb901f0000000000 ....T.c@.^1@.............. +2684 8.284801960 127.0.0.1:57433 127.0.0.1:57415 377348219 12 ffffffff781d0b0000000000 ....x....... +2686 8.285437584 127.0.0.1:57433 127.0.0.1:57415 377348231 12 1600000057f80a0000000000 ....W....... +2688 8.285611868 127.0.0.1:57433 127.0.0.1:57415 377348243 22 12000000fb901f000000000001000300000000000000 ...................... +2690 8.285988331 127.0.0.1:57415 127.0.0.1:57433 3333383550 12 ffffffff57f80a0000000000 ....W....... +2700 8.375809193 127.0.0.1:57415 127.0.0.1:57433 3333383562 12 65000000791d0b0000000000 e...y....... +2702 8.376036644 127.0.0.1:57415 127.0.0.1:57433 3333383574 101 1e0000001c2118d0c46f33bb010003000000b211020000000000d2bf23c39d01 .....!...o3.................#.....?.....3...|8.. +2704 8.376370907 127.0.0.1:57433 127.0.0.1:57415 377348265 12 ffffffff791d0b0000000000 ....y....... +2706 8.377229691 127.0.0.1:57433 127.0.0.1:57415 377348277 12 3400000058f80a0000000000 4...X....... +2708 8.377403259 127.0.0.1:57433 127.0.0.1:57415 377348289 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +2710 8.377802610 127.0.0.1:57415 127.0.0.1:57433 3333383675 12 ffffffff58f80a0000000000 ....X....... +2712 8.378702164 127.0.0.1:57415 127.0.0.1:57433 3333383687 12 1e0000007a1d0b0000000000 ....z....... +2714 8.378900051 127.0.0.1:57415 127.0.0.1:57433 3333383699 30 1a00000055ceff62b21b3a50010003000000fd901f000000000000000000 ....U..b..:P.................. +2716 8.379218102 127.0.0.1:57433 127.0.0.1:57415 377348341 12 ffffffff7a1d0b0000000000 ....z....... +2718 8.379587173 127.0.0.1:57433 127.0.0.1:57415 377348353 12 1a00000059f80a0000000000 ....Y....... +2720 8.379724741 127.0.0.1:57433 127.0.0.1:57415 377348365 26 16000000fd901f00000000000100030000000000000000000000 .......................... +2722 8.379974127 127.0.0.1:57415 127.0.0.1:57433 3333383729 12 ffffffff59f80a0000000000 ....Y....... +2724 8.388312578 127.0.0.1:57415 127.0.0.1:57433 3333383741 12 1a0000007b1d0b0000000000 ....{....... +2726 8.388632298 127.0.0.1:57415 127.0.0.1:57433 3333383753 26 16000000548f6340e25e3140010003000000ff901f0000000000 ....T.c@.^1@.............. +2728 8.388838530 127.0.0.1:57433 127.0.0.1:57415 377348391 12 ffffffff7b1d0b0000000000 ....{....... +2730 8.389229059 127.0.0.1:57433 127.0.0.1:57415 377348403 12 160000005af80a0000000000 ....Z....... +2732 8.389392853 127.0.0.1:57433 127.0.0.1:57415 377348415 22 12000000ff901f000000000001000300000000000000 ...................... +2734 8.390368223 127.0.0.1:57415 127.0.0.1:57433 3333383779 12 ffffffff5af80a0000000000 ....Z....... +2741 8.416287899 127.0.0.1:57433 127.0.0.1:57415 377348437 12 feffffff0743010018430100 .....C...C.. +2746 8.492280960 127.0.0.1:57415 127.0.0.1:57433 3333383791 12 1a0000007c1d0b0000000000 ....|....... +2748 8.492488146 127.0.0.1:57415 127.0.0.1:57433 3333383803 26 16000000548f6340e25e314001000300000001911f0000000000 ....T.c@.^1@.............. +2750 8.492853642 127.0.0.1:57433 127.0.0.1:57415 377348449 12 ffffffff7c1d0b0000000000 ....|....... +2752 8.493295193 127.0.0.1:57433 127.0.0.1:57415 377348461 12 160000005bf80a0000000000 ....[....... +2754 8.493466377 127.0.0.1:57433 127.0.0.1:57415 377348473 22 1200000001911f000000000001000300000000000000 ...................... +2756 8.493901968 127.0.0.1:57415 127.0.0.1:57433 3333383829 12 ffffffff5bf80a0000000000 ....[....... +2762 8.542684078 127.0.0.1:57415 127.0.0.1:57433 3333383841 12 feffffff1943010007430100 .....C...C.. +2764 8.596092701 127.0.0.1:57415 127.0.0.1:57433 3333383853 12 1a0000007d1d0b0000000000 ....}....... +2766 8.596281528 127.0.0.1:57415 127.0.0.1:57433 3333383865 26 16000000548f6340e25e314001000300000003911f0000000000 ....T.c@.^1@.............. +2768 8.596652985 127.0.0.1:57433 127.0.0.1:57415 377348495 12 ffffffff7d1d0b0000000000 ....}....... +2770 8.597160816 127.0.0.1:57433 127.0.0.1:57415 377348507 12 160000005cf80a0000000000 ....\....... +2772 8.597365379 127.0.0.1:57433 127.0.0.1:57415 377348519 22 1200000003911f000000000001000300000000000000 ...................... +2774 8.597697258 127.0.0.1:57415 127.0.0.1:57433 3333383891 12 ffffffff5cf80a0000000000 ....\....... +2780 8.680529356 127.0.0.1:57415 127.0.0.1:57433 3333383903 12 220000007e1d0b0000000000 "...~....... +2782 8.680772543 127.0.0.1:57415 127.0.0.1:57433 3333383915 34 1e0000001c2118d0c46f33bb010003000000b31102000000000003c123c39d01 .....!...o3.................#..... +2784 8.681016684 127.0.0.1:57415 127.0.0.1:57433 3333383949 12 430000007f1d0b0000000000 C........... +2786 8.681112051 127.0.0.1:57433 127.0.0.1:57415 377348541 12 ffffffff7e1d0b0000000000 ....~....... +2788 8.681397200 127.0.0.1:57415 127.0.0.1:57433 3333383961 67 3f000000980433cb0cb47c380100030000000100000000b3110200000000003d ?.....3...|8...................=B.....&......... +2790 8.681672573 127.0.0.1:57433 127.0.0.1:57415 377348553 12 ffffffff7f1d0b0000000000 ............ +2792 8.682414770 127.0.0.1:57433 127.0.0.1:57415 377348565 12 340000005df80a0000000000 4...]....... +2794 8.682571173 127.0.0.1:57433 127.0.0.1:57415 377348577 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............R'7. +2796 8.682902575 127.0.0.1:57415 127.0.0.1:57433 3333384028 12 ffffffff5df80a0000000000 ....]....... +2798 8.683759689 127.0.0.1:57415 127.0.0.1:57433 3333384040 12 1e000000801d0b0000000000 ............ +2800 8.683952093 127.0.0.1:57415 127.0.0.1:57433 3333384052 30 1a00000055ceff62b21b3a5001000300000005911f000000000000000000 ....U..b..:P.................. +2802 8.684251547 127.0.0.1:57433 127.0.0.1:57415 377348629 12 ffffffff801d0b0000000000 ............ +2804 8.684644699 127.0.0.1:57433 127.0.0.1:57415 377348641 12 1a0000005ef80a0000000000 ....^....... +2806 8.684795856 127.0.0.1:57433 127.0.0.1:57415 377348653 26 1600000005911f00000000000100030000000000000000000000 .......................... +2808 8.685088873 127.0.0.1:57415 127.0.0.1:57433 3333384082 12 ffffffff5ef80a0000000000 ....^....... +2810 8.698939800 127.0.0.1:57415 127.0.0.1:57433 3333384094 12 1a000000811d0b0000000000 ............ +2812 8.699108124 127.0.0.1:57415 127.0.0.1:57433 3333384106 26 16000000548f6340e25e314001000300000007911f0000000000 ....T.c@.^1@.............. +2814 8.699423313 127.0.0.1:57433 127.0.0.1:57415 377348679 12 ffffffff811d0b0000000000 ............ +2816 8.699698448 127.0.0.1:57433 127.0.0.1:57415 377348691 12 160000005ff80a0000000000 ...._....... +2818 8.699858189 127.0.0.1:57433 127.0.0.1:57415 377348703 22 1200000007911f000000000001000300000000000000 ...................... +2820 8.700065374 127.0.0.1:57415 127.0.0.1:57433 3333384132 12 ffffffff5ff80a0000000000 ...._....... +2900 8.802052498 127.0.0.1:57415 127.0.0.1:57433 3333384144 12 1a000000821d0b0000000000 ............ +2902 8.802242994 127.0.0.1:57415 127.0.0.1:57433 3333384156 26 16000000548f6340e25e314001000300000009911f0000000000 ....T.c@.^1@.............. +2904 8.802581549 127.0.0.1:57433 127.0.0.1:57415 377348725 12 ffffffff821d0b0000000000 ............ +2906 8.803071499 127.0.0.1:57433 127.0.0.1:57415 377348737 12 1600000060f80a0000000000 ....`....... +2908 8.803231239 127.0.0.1:57433 127.0.0.1:57415 377348749 22 1200000009911f000000000001000300000000000000 ...................... +2910 8.803473473 127.0.0.1:57415 127.0.0.1:57433 3333384182 12 ffffffff60f80a0000000000 ....`....... +3054 8.904896975 127.0.0.1:57415 127.0.0.1:57433 3333384194 12 1a000000831d0b0000000000 ............ +3056 8.905174255 127.0.0.1:57415 127.0.0.1:57433 3333384206 26 16000000548f6340e25e31400100030000000b911f0000000000 ....T.c@.^1@.............. +3058 8.905505180 127.0.0.1:57433 127.0.0.1:57415 377348771 12 ffffffff831d0b0000000000 ............ +3060 8.906047583 127.0.0.1:57433 127.0.0.1:57415 377348783 12 1600000061f80a0000000000 ....a....... +3062 8.906174421 127.0.0.1:57433 127.0.0.1:57415 377348795 22 120000000b911f000000000001000300000000000000 ...................... +3064 8.906452417 127.0.0.1:57415 127.0.0.1:57433 3333384232 12 ffffffff61f80a0000000000 ....a....... +3078 8.917584896 127.0.0.1:57433 127.0.0.1:57415 377348817 12 feffffff0843010019430100 .....C...C.. +3342 8.984965563 127.0.0.1:57415 127.0.0.1:57433 3333384244 12 65000000841d0b0000000000 e........... +3344 8.985160112 127.0.0.1:57415 127.0.0.1:57433 3333384256 101 1e0000001c2118d0c46f33bb010003000000b41102000000000034c223c39d01 .....!...o3...............4.#.....?.....3...|8.. +3346 8.985507727 127.0.0.1:57433 127.0.0.1:57415 377348829 12 ffffffff841d0b0000000000 ............ +3348 8.986670732 127.0.0.1:57433 127.0.0.1:57415 377348841 12 3400000062f80a0000000000 4...b....... +3350 8.986872673 127.0.0.1:57433 127.0.0.1:57415 377348853 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................e. +3352 8.987240076 127.0.0.1:57415 127.0.0.1:57433 3333384357 12 ffffffff62f80a0000000000 ....b....... +3354 8.988028288 127.0.0.1:57415 127.0.0.1:57433 3333384369 12 1e000000851d0b0000000000 ............ +3356 8.988158464 127.0.0.1:57415 127.0.0.1:57433 3333384381 30 1a00000055ceff62b21b3a500100030000000d911f000000000000000000 ....U..b..:P.................. +3358 8.988445520 127.0.0.1:57433 127.0.0.1:57415 377348905 12 ffffffff851d0b0000000000 ............ +3360 8.988833666 127.0.0.1:57433 127.0.0.1:57415 377348917 12 1a00000063f80a0000000000 ....c....... +3362 8.989025116 127.0.0.1:57433 127.0.0.1:57415 377348929 26 160000000d911f00000000000100030000000000000000000000 .......................... +3364 8.989305973 127.0.0.1:57415 127.0.0.1:57433 3333384411 12 ffffffff63f80a0000000000 ....c....... +3374 9.008737087 127.0.0.1:57415 127.0.0.1:57433 3333384423 12 1a000000861d0b0000000000 ............ +3376 9.008957863 127.0.0.1:57415 127.0.0.1:57433 3333384435 26 16000000548f6340e25e31400100030000000f911f0000000000 ....T.c@.^1@.............. +3378 9.009334803 127.0.0.1:57433 127.0.0.1:57415 377348955 12 ffffffff861d0b0000000000 ............ +3380 9.010101795 127.0.0.1:57433 127.0.0.1:57415 377348967 12 1600000064f80a0000000000 ....d....... +3382 9.010303497 127.0.0.1:57433 127.0.0.1:57415 377348979 22 120000000f911f000000000001000300000000000000 ...................... +3384 9.010626554 127.0.0.1:57415 127.0.0.1:57433 3333384461 12 ffffffff64f80a0000000000 ....d....... +3388 9.044317961 127.0.0.1:57415 127.0.0.1:57433 3333384473 12 feffffff1a43010008430100 .....C...C.. +3394 9.112713099 127.0.0.1:57415 127.0.0.1:57433 3333384485 12 1a000000871d0b0000000000 ............ +3396 9.112965822 127.0.0.1:57415 127.0.0.1:57433 3333384497 26 16000000548f6340e25e314001000300000011911f0000000000 ....T.c@.^1@.............. +3398 9.113512993 127.0.0.1:57433 127.0.0.1:57415 377349001 12 ffffffff871d0b0000000000 ............ +3400 9.114258289 127.0.0.1:57433 127.0.0.1:57415 377349013 12 1600000065f80a0000000000 ....e....... +3402 9.114456415 127.0.0.1:57433 127.0.0.1:57415 377349025 22 1200000011911f000000000001000300000000000000 ...................... +3404 9.114674568 127.0.0.1:57415 127.0.0.1:57433 3333384523 12 ffffffff65f80a0000000000 ....e....... +3410 9.217673779 127.0.0.1:57415 127.0.0.1:57433 3333384535 12 1a000000881d0b0000000000 ............ +3412 9.217908621 127.0.0.1:57415 127.0.0.1:57433 3333384547 26 16000000548f6340e25e314001000300000013911f0000000000 ....T.c@.^1@.............. +3414 9.218296051 127.0.0.1:57433 127.0.0.1:57415 377349047 12 ffffffff881d0b0000000000 ............ +3416 9.218730688 127.0.0.1:57433 127.0.0.1:57415 377349059 12 1600000066f80a0000000000 ....f....... +3418 9.219187975 127.0.0.1:57433 127.0.0.1:57415 377349071 22 1200000013911f000000000001000300000000000000 ...................... +3420 9.219519854 127.0.0.1:57415 127.0.0.1:57433 3333384573 12 ffffffff66f80a0000000000 ....f....... +3424 9.290990591 127.0.0.1:57415 127.0.0.1:57433 3333384585 12 65000000891d0b0000000000 e........... +3426 9.291228771 127.0.0.1:57415 127.0.0.1:57433 3333384597 101 1e0000001c2118d0c46f33bb010003000000b51102000000000066c323c39d01 .....!...o3...............f.#.....?.....3...|8.. +3428 9.291768789 127.0.0.1:57433 127.0.0.1:57415 377349093 12 ffffffff891d0b0000000000 ............ +3430 9.292588234 127.0.0.1:57433 127.0.0.1:57415 377349105 12 3400000067f80a0000000000 4...g....... +3432 9.292797089 127.0.0.1:57433 127.0.0.1:57415 377349117 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................B.. +3434 9.293107986 127.0.0.1:57415 127.0.0.1:57433 3333384698 12 ffffffff67f80a0000000000 ....g....... +3436 9.294049740 127.0.0.1:57415 127.0.0.1:57433 3333384710 12 1e0000008a1d0b0000000000 ............ +3438 9.294251204 127.0.0.1:57415 127.0.0.1:57433 3333384722 30 1a00000055ceff62b21b3a5001000300000015911f000000000000000000 ....U..b..:P.................. +3440 9.294556379 127.0.0.1:57433 127.0.0.1:57415 377349169 12 ffffffff8a1d0b0000000000 ............ +3442 9.294985771 127.0.0.1:57433 127.0.0.1:57415 377349181 12 1a00000068f80a0000000000 ....h....... +3444 9.295166731 127.0.0.1:57433 127.0.0.1:57415 377349193 26 1600000015911f00000000000100030000000000000000000000 .......................... +3446 9.295433760 127.0.0.1:57415 127.0.0.1:57433 3333384752 12 ffffffff68f80a0000000000 ....h....... +3450 9.321608782 127.0.0.1:57415 127.0.0.1:57433 3333384764 12 1a0000008b1d0b0000000000 ............ +3452 9.321862459 127.0.0.1:57415 127.0.0.1:57433 3333384776 26 16000000548f6340e25e314001000300000017911f0000000000 ....T.c@.^1@.............. +3454 9.322180748 127.0.0.1:57433 127.0.0.1:57415 377349219 12 ffffffff8b1d0b0000000000 ............ +3456 9.322573900 127.0.0.1:57433 127.0.0.1:57415 377349231 12 1600000069f80a0000000000 ....i....... +3458 9.322820663 127.0.0.1:57433 127.0.0.1:57415 377349243 22 1200000017911f000000000001000300000000000000 ...................... +3460 9.323126316 127.0.0.1:57415 127.0.0.1:57433 3333384802 12 ffffffff69f80a0000000000 ....i....... +3465 9.417319775 127.0.0.1:57433 127.0.0.1:57415 377349265 12 feffffff094301001a430100 .....C...C.. +3472 9.425427675 127.0.0.1:57415 127.0.0.1:57433 3333384814 12 1a0000008c1d0b0000000000 ............ +3474 9.425674915 127.0.0.1:57415 127.0.0.1:57433 3333384826 26 16000000548f6340e25e314001000300000019911f0000000000 ....T.c@.^1@.............. +3476 9.425924778 127.0.0.1:57433 127.0.0.1:57415 377349277 12 ffffffff8c1d0b0000000000 ............ +3478 9.426440001 127.0.0.1:57433 127.0.0.1:57415 377349289 12 160000006af80a0000000000 ....j....... +3480 9.426597595 127.0.0.1:57433 127.0.0.1:57415 377349301 22 1200000019911f000000000001000300000000000000 ...................... +3482 9.427208662 127.0.0.1:57415 127.0.0.1:57433 3333384852 12 ffffffff6af80a0000000000 ....j....... +3542 9.530147791 127.0.0.1:57415 127.0.0.1:57433 3333384864 12 1a0000008d1d0b0000000000 ............ +3544 9.530314684 127.0.0.1:57415 127.0.0.1:57433 3333384876 26 16000000548f6340e25e31400100030000001b911f0000000000 ....T.c@.^1@.............. +3546 9.530658722 127.0.0.1:57433 127.0.0.1:57415 377349323 12 ffffffff8d1d0b0000000000 ............ +3548 9.531112909 127.0.0.1:57433 127.0.0.1:57415 377349335 12 160000006bf80a0000000000 ....k....... +3550 9.531285048 127.0.0.1:57433 127.0.0.1:57415 377349347 22 120000001b911f000000000001000300000000000000 ...................... +3552 9.531598806 127.0.0.1:57415 127.0.0.1:57433 3333384902 12 ffffffff6bf80a0000000000 ....k....... +3572 9.544872999 127.0.0.1:57415 127.0.0.1:57433 3333384914 12 feffffff1b43010009430100 .....C...C.. +3574 9.595688820 127.0.0.1:57415 127.0.0.1:57433 3333384926 12 650000008e1d0b0000000000 e........... +3576 9.595921993 127.0.0.1:57415 127.0.0.1:57433 3333384938 101 1e0000001c2118d0c46f33bb010003000000b61102000000000096c423c39d01 .....!...o3.................#.....?.....3...|8.. +3578 9.596238852 127.0.0.1:57433 127.0.0.1:57415 377349369 12 ffffffff8e1d0b0000000000 ............ +3580 9.598688364 127.0.0.1:57433 127.0.0.1:57415 377349381 12 340000006cf80a0000000000 4...l....... +3582 9.598854303 127.0.0.1:57433 127.0.0.1:57415 377349393 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +3584 9.599110365 127.0.0.1:57415 127.0.0.1:57433 3333385039 12 ffffffff6cf80a0000000000 ....l....... +3586 9.600281477 127.0.0.1:57415 127.0.0.1:57433 3333385051 12 1e0000008f1d0b0000000000 ............ +3588 9.600468159 127.0.0.1:57415 127.0.0.1:57433 3333385063 30 1a00000055ceff62b21b3a500100030000001d911f000000000000000000 ....U..b..:P.................. +3590 9.600800037 127.0.0.1:57433 127.0.0.1:57415 377349445 12 ffffffff8f1d0b0000000000 ............ +3592 9.601219177 127.0.0.1:57433 127.0.0.1:57415 377349457 12 1a0000006df80a0000000000 ....m....... +3594 9.601425409 127.0.0.1:57433 127.0.0.1:57415 377349469 26 160000001d911f00000000000100030000000000000000000000 .......................... +3596 9.601811409 127.0.0.1:57415 127.0.0.1:57433 3333385093 12 ffffffff6df80a0000000000 ....m....... +3598 9.633280993 127.0.0.1:57415 127.0.0.1:57433 3333385105 12 1a000000901d0b0000000000 ............ +3600 9.633470774 127.0.0.1:57415 127.0.0.1:57433 3333385117 26 16000000548f6340e25e31400100030000001f911f0000000000 ....T.c@.^1@.............. +3602 9.633896589 127.0.0.1:57433 127.0.0.1:57415 377349495 12 ffffffff901d0b0000000000 ............ +3604 9.634264469 127.0.0.1:57433 127.0.0.1:57415 377349507 12 160000006ef80a0000000000 ....n....... +3606 9.634427309 127.0.0.1:57433 127.0.0.1:57415 377349519 22 120000001f911f000000000001000300000000000000 ...................... +3608 9.634790897 127.0.0.1:57415 127.0.0.1:57433 3333385143 12 ffffffff6ef80a0000000000 ....n....... +3615 9.737264872 127.0.0.1:57415 127.0.0.1:57433 3333385155 12 1a000000911d0b0000000000 ............ +3617 9.737495661 127.0.0.1:57415 127.0.0.1:57433 3333385167 26 16000000548f6340e25e314001000300000021911f0000000000 ....T.c@.^1@......!....... +3619 9.737814426 127.0.0.1:57433 127.0.0.1:57415 377349541 12 ffffffff911d0b0000000000 ............ +3621 9.738256693 127.0.0.1:57433 127.0.0.1:57415 377349553 12 160000006ff80a0000000000 ....o....... +3623 9.738419771 127.0.0.1:57433 127.0.0.1:57415 377349565 22 1200000021911f000000000001000300000000000000 ....!................. +3625 9.738724232 127.0.0.1:57415 127.0.0.1:57433 3333385193 12 ffffffff6ff80a0000000000 ....o....... +3632 9.840050459 127.0.0.1:57415 127.0.0.1:57433 3333385205 12 1a000000921d0b0000000000 ............ +3634 9.840309381 127.0.0.1:57415 127.0.0.1:57433 3333385217 26 16000000548f6340e25e314001000300000023911f0000000000 ....T.c@.^1@......#....... +3636 9.840716600 127.0.0.1:57433 127.0.0.1:57415 377349587 12 ffffffff921d0b0000000000 ............ +3638 9.841147184 127.0.0.1:57433 127.0.0.1:57415 377349599 12 1600000070f80a0000000000 ....p....... +3640 9.841295004 127.0.0.1:57433 127.0.0.1:57415 377349611 22 1200000023911f000000000001000300000000000000 ....#................. +3642 9.841587782 127.0.0.1:57415 127.0.0.1:57433 3333385243 12 ffffffff70f80a0000000000 ....p....... +3645 9.902580500 127.0.0.1:57415 127.0.0.1:57433 3333385255 12 22000000931d0b0000000000 "........... +3647 9.902765036 127.0.0.1:57415 127.0.0.1:57433 3333385267 34 1e0000001c2118d0c46f33bb010003000000b711020000000000c9c523c39d01 .....!...o3.................#..... +3649 9.902909994 127.0.0.1:57415 127.0.0.1:57433 3333385301 12 43000000941d0b0000000000 C........... +3651 9.902997971 127.0.0.1:57415 127.0.0.1:57433 3333385313 67 3f000000980433cb0cb47c380100030000000100000000b7110200000000003d ?.....3...|8...................=B.....&......... +3652 9.903043985 127.0.0.1:57433 127.0.0.1:57415 377349633 12 ffffffff931d0b0000000000 ............ +3653 9.903141975 127.0.0.1:57433 127.0.0.1:57415 377349645 12 ffffffff941d0b0000000000 ............ +3656 9.904536486 127.0.0.1:57433 127.0.0.1:57415 377349657 12 3400000071f80a0000000000 4...q....... +3658 9.904716015 127.0.0.1:57433 127.0.0.1:57415 377349669 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............t... +3660 9.905133486 127.0.0.1:57415 127.0.0.1:57433 3333385380 12 ffffffff71f80a0000000000 ....q....... +3662 9.905945301 127.0.0.1:57415 127.0.0.1:57433 3333385392 12 1e000000951d0b0000000000 ............ +3664 9.906099319 127.0.0.1:57415 127.0.0.1:57433 3333385404 30 1a00000055ceff62b21b3a5001000300000025911f000000000000000000 ....U..b..:P......%........... +3666 9.906376600 127.0.0.1:57433 127.0.0.1:57415 377349721 12 ffffffff951d0b0000000000 ............ +3668 9.907010794 127.0.0.1:57433 127.0.0.1:57415 377349733 12 1a00000072f80a0000000000 ....r....... +3670 9.907157421 127.0.0.1:57433 127.0.0.1:57415 377349745 26 1600000025911f00000000000100030000000000000000000000 ....%..................... +3672 9.907555342 127.0.0.1:57415 127.0.0.1:57433 3333385434 12 ffffffff72f80a0000000000 ....r....... +3674 9.918031693 127.0.0.1:57433 127.0.0.1:57415 377349771 12 feffffff0a4301001b430100 .....C...C.. +3682 9.942923307 127.0.0.1:57415 127.0.0.1:57433 3333385446 12 1a000000961d0b0000000000 ............ +3684 9.943108082 127.0.0.1:57415 127.0.0.1:57433 3333385458 26 16000000548f6340e25e314001000300000027911f0000000000 ....T.c@.^1@......'....... +3686 9.943461180 127.0.0.1:57433 127.0.0.1:57415 377349783 12 ffffffff961d0b0000000000 ............ +3688 9.944019079 127.0.0.1:57433 127.0.0.1:57415 377349795 12 1600000073f80a0000000000 ....s....... +3690 9.944185019 127.0.0.1:57433 127.0.0.1:57415 377349807 22 1200000027911f000000000001000300000000000000 ....'................. +3692 9.944578886 127.0.0.1:57415 127.0.0.1:57433 3333385484 12 ffffffff73f80a0000000000 ....s....... +3701 10.045840263 127.0.0.1:57415 127.0.0.1:57433 3333385496 12 feffffff1c4301000a430100 .....C...C.. +3703 10.046154976 127.0.0.1:57415 127.0.0.1:57433 3333385508 12 1a000000971d0b0000000000 ............ +3705 10.046404362 127.0.0.1:57415 127.0.0.1:57433 3333385520 26 16000000548f6340e25e314001000300000029911f0000000000 ....T.c@.^1@......)....... +3707 10.046787739 127.0.0.1:57433 127.0.0.1:57415 377349829 12 ffffffff971d0b0000000000 ............ +3709 10.047324181 127.0.0.1:57433 127.0.0.1:57415 377349841 12 1600000074f80a0000000000 ....t....... +3711 10.047532797 127.0.0.1:57433 127.0.0.1:57415 377349853 22 1200000029911f000000000001000300000000000000 ....)................. +3713 10.047841311 127.0.0.1:57415 127.0.0.1:57433 3333385546 12 ffffffff74f80a0000000000 ....t....... +3719 10.150988579 127.0.0.1:57415 127.0.0.1:57433 3333385558 12 1a000000981d0b0000000000 ............ +3721 10.151226521 127.0.0.1:57415 127.0.0.1:57433 3333385570 26 16000000548f6340e25e31400100030000002b911f0000000000 ....T.c@.^1@......+....... +3723 10.151478529 127.0.0.1:57433 127.0.0.1:57415 377349875 12 ffffffff981d0b0000000000 ............ +3725 10.152096033 127.0.0.1:57433 127.0.0.1:57415 377349887 12 1600000075f80a0000000000 ....u....... +3727 10.152278662 127.0.0.1:57433 127.0.0.1:57415 377349899 22 120000002b911f000000000001000300000000000000 ....+................. +3729 10.152575254 127.0.0.1:57415 127.0.0.1:57433 3333385596 12 ffffffff75f80a0000000000 ....u....... +3733 10.207429409 127.0.0.1:57415 127.0.0.1:57433 3333385608 12 65000000991d0b0000000000 e........... +3735 10.207611561 127.0.0.1:57415 127.0.0.1:57433 3333385620 101 1e0000001c2118d0c46f33bb010003000000b811020000000000fac623c39d01 .....!...o3.................#.....?.....3...|8.. +3737 10.207879066 127.0.0.1:57433 127.0.0.1:57415 377349921 12 ffffffff991d0b0000000000 ............ +3739 10.208747864 127.0.0.1:57433 127.0.0.1:57415 377349933 12 3400000076f80a0000000000 4...v....... +3741 10.208904982 127.0.0.1:57433 127.0.0.1:57415 377349945 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................. . +3743 10.209261894 127.0.0.1:57415 127.0.0.1:57433 3333385721 12 ffffffff76f80a0000000000 ....v....... +3745 10.210013151 127.0.0.1:57415 127.0.0.1:57433 3333385733 12 1e0000009a1d0b0000000000 ............ +3747 10.210154295 127.0.0.1:57415 127.0.0.1:57433 3333385745 30 1a00000055ceff62b21b3a500100030000002d911f000000000000000000 ....U..b..:P......-........... +3749 10.210373640 127.0.0.1:57433 127.0.0.1:57415 377349997 12 ffffffff9a1d0b0000000000 ............ +3751 10.210846424 127.0.0.1:57433 127.0.0.1:57415 377350009 12 1a00000077f80a0000000000 ....w....... +3753 10.210999250 127.0.0.1:57433 127.0.0.1:57415 377350021 26 160000002d911f00000000000100030000000000000000000000 ....-..................... +3755 10.211235523 127.0.0.1:57415 127.0.0.1:57433 3333385775 12 ffffffff77f80a0000000000 ....w....... +3758 10.253926277 127.0.0.1:57415 127.0.0.1:57433 3333385787 12 1a0000009b1d0b0000000000 ............ +3760 10.254202843 127.0.0.1:57415 127.0.0.1:57433 3333385799 26 16000000548f6340e25e31400100030000002f911f0000000000 ....T.c@.^1@....../....... +3762 10.254535675 127.0.0.1:57433 127.0.0.1:57415 377350047 12 ffffffff9b1d0b0000000000 ............ +3764 10.254924536 127.0.0.1:57433 127.0.0.1:57415 377350059 12 1600000078f80a0000000000 ....x....... +3766 10.255086184 127.0.0.1:57433 127.0.0.1:57415 377350071 22 120000002f911f000000000001000300000000000000 ..../................. +3768 10.255395174 127.0.0.1:57415 127.0.0.1:57433 3333385825 12 ffffffff78f80a0000000000 ....x....... +3775 10.356688738 127.0.0.1:57415 127.0.0.1:57433 3333385837 12 1a0000009c1d0b0000000000 ............ +3777 10.356951714 127.0.0.1:57415 127.0.0.1:57433 3333385849 26 16000000548f6340e25e314001000300000031911f0000000000 ....T.c@.^1@......1....... +3779 10.357254744 127.0.0.1:57433 127.0.0.1:57415 377350093 12 ffffffff9c1d0b0000000000 ............ +3781 10.357781172 127.0.0.1:57433 127.0.0.1:57415 377350105 12 1600000079f80a0000000000 ....y....... +3783 10.357959986 127.0.0.1:57433 127.0.0.1:57415 377350117 22 1200000031911f000000000001000300000000000000 ....1................. +3785 10.358203173 127.0.0.1:57415 127.0.0.1:57433 3333385875 12 ffffffff79f80a0000000000 ....y....... +3787 10.417706966 127.0.0.1:57433 127.0.0.1:57415 377350139 12 feffffff0b4301001c430100 .....C...C.. +3796 10.460787058 127.0.0.1:57415 127.0.0.1:57433 3333385887 12 1a0000009d1d0b0000000000 ............ +3798 10.461142063 127.0.0.1:57415 127.0.0.1:57433 3333385899 26 16000000548f6340e25e314001000300000033911f0000000000 ....T.c@.^1@......3....... +3800 10.461409092 127.0.0.1:57433 127.0.0.1:57415 377350151 12 ffffffff9d1d0b0000000000 ............ +3802 10.461910486 127.0.0.1:57433 127.0.0.1:57415 377350163 12 160000007af80a0000000000 ....z....... +3804 10.462146997 127.0.0.1:57433 127.0.0.1:57415 377350175 22 1200000033911f000000000001000300000000000000 ....3................. +3806 10.462430716 127.0.0.1:57415 127.0.0.1:57433 3333385925 12 ffffffff7af80a0000000000 ....z....... +3812 10.512026072 127.0.0.1:57415 127.0.0.1:57433 3333385937 12 220000009e1d0b0000000000 "........... +3814 10.512212753 127.0.0.1:57415 127.0.0.1:57433 3333385949 34 1e0000001c2118d0c46f33bb010003000000b9110200000000002bc823c39d01 .....!...o3...............+.#..... +3816 10.512368202 127.0.0.1:57415 127.0.0.1:57433 3333385983 12 430000009f1d0b0000000000 C........... +3818 10.512453556 127.0.0.1:57415 127.0.0.1:57433 3333385995 67 3f000000980433cb0cb47c380100030000000100000000b9110200000000003d ?.....3...|8...................=B.....&......... +3819 10.512474537 127.0.0.1:57433 127.0.0.1:57415 377350197 12 ffffffff9e1d0b0000000000 ............ +3822 10.512688160 127.0.0.1:57433 127.0.0.1:57415 377350209 12 ffffffff9f1d0b0000000000 ............ +3824 10.513614893 127.0.0.1:57433 127.0.0.1:57415 377350221 12 340000007bf80a0000000000 4...{....... +3826 10.513795376 127.0.0.1:57433 127.0.0.1:57415 377350233 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................N. +3828 10.514064074 127.0.0.1:57415 127.0.0.1:57433 3333386062 12 ffffffff7bf80a0000000000 ....{....... +3829 10.515470028 127.0.0.1:57415 127.0.0.1:57433 3333386074 12 1e000000a01d0b0000000000 ............ +3831 10.515658855 127.0.0.1:57415 127.0.0.1:57433 3333386086 30 1a00000055ceff62b21b3a5001000300000035911f000000000000000000 ....U..b..:P......5........... +3833 10.515908480 127.0.0.1:57433 127.0.0.1:57415 377350285 12 ffffffffa01d0b0000000000 ............ +3835 10.516792536 127.0.0.1:57433 127.0.0.1:57415 377350297 12 1a0000007cf80a0000000000 ....|....... +3837 10.516984463 127.0.0.1:57433 127.0.0.1:57415 377350309 26 1600000035911f00000000000100030000000000000000000000 ....5..................... +3839 10.517279387 127.0.0.1:57415 127.0.0.1:57433 3333386116 12 ffffffff7cf80a0000000000 ....|....... +3844 10.547212839 127.0.0.1:57415 127.0.0.1:57433 3333386128 12 feffffff1d4301000b430100 .....C...C.. +3846 10.563495398 127.0.0.1:57415 127.0.0.1:57433 3333386140 12 1a000000a11d0b0000000000 ............ +3848 10.563665152 127.0.0.1:57415 127.0.0.1:57433 3333386152 26 16000000548f6340e25e314001000300000037911f0000000000 ....T.c@.^1@......7....... +3850 10.563967466 127.0.0.1:57433 127.0.0.1:57415 377350335 12 ffffffffa11d0b0000000000 ............ +3852 10.564353466 127.0.0.1:57433 127.0.0.1:57415 377350347 12 160000007df80a0000000000 ....}....... +3854 10.564500809 127.0.0.1:57433 127.0.0.1:57415 377350359 22 1200000037911f000000000001000300000000000000 ....7................. +3856 10.564759970 127.0.0.1:57415 127.0.0.1:57433 3333386178 12 ffffffff7df80a0000000000 ....}....... +3863 10.667743921 127.0.0.1:57415 127.0.0.1:57433 3333386190 12 1a000000a21d0b0000000000 ............ +3865 10.667980194 127.0.0.1:57415 127.0.0.1:57433 3333386202 26 16000000548f6340e25e314001000300000039911f0000000000 ....T.c@.^1@......9....... +3867 10.668381929 127.0.0.1:57433 127.0.0.1:57415 377350381 12 ffffffffa21d0b0000000000 ............ +3869 10.668827772 127.0.0.1:57433 127.0.0.1:57415 377350393 12 160000007ef80a0000000000 ....~....... +3871 10.669018745 127.0.0.1:57433 127.0.0.1:57415 377350405 22 1200000039911f000000000001000300000000000000 ....9................. +3873 10.669293404 127.0.0.1:57415 127.0.0.1:57433 3333386228 12 ffffffff7ef80a0000000000 ....~....... +3880 10.770514727 127.0.0.1:57415 127.0.0.1:57433 3333386240 12 1a000000a31d0b0000000000 ............ +3882 10.770795345 127.0.0.1:57415 127.0.0.1:57433 3333386252 26 16000000548f6340e25e31400100030000003b911f0000000000 ....T.c@.^1@......;....... +3884 10.771048546 127.0.0.1:57433 127.0.0.1:57415 377350427 12 ffffffffa31d0b0000000000 ............ +3886 10.771625042 127.0.0.1:57433 127.0.0.1:57415 377350439 12 160000007ff80a0000000000 ............ +3888 10.771910191 127.0.0.1:57433 127.0.0.1:57415 377350451 22 120000003b911f000000000001000300000000000000 ....;................. +3890 10.772116184 127.0.0.1:57415 127.0.0.1:57433 3333386278 12 ffffffff7ff80a0000000000 ............ +3894 10.816834927 127.0.0.1:57415 127.0.0.1:57433 3333386290 12 22000000a41d0b0000000000 "........... +3896 10.817167044 127.0.0.1:57415 127.0.0.1:57433 3333386302 34 1e0000001c2118d0c46f33bb010003000000ba110200000000005bc923c39d01 .....!...o3...............[.#..... +3898 10.817315102 127.0.0.1:57415 127.0.0.1:57433 3333386336 12 43000000a51d0b0000000000 C........... +3900 10.817437410 127.0.0.1:57415 127.0.0.1:57433 3333386348 67 3f000000980433cb0cb47c380100030000000100000000ba110200000000003d ?.....3...|8...................=B.....&......... +3901 10.817536592 127.0.0.1:57433 127.0.0.1:57415 377350473 12 ffffffffa41d0b0000000000 ............ +3904 10.817840576 127.0.0.1:57433 127.0.0.1:57415 377350485 12 ffffffffa51d0b0000000000 ............ +3906 10.818581343 127.0.0.1:57433 127.0.0.1:57415 377350497 12 3400000080f80a0000000000 4........... +3908 10.818850994 127.0.0.1:57433 127.0.0.1:57415 377350509 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................}. +3910 10.819117308 127.0.0.1:57415 127.0.0.1:57433 3333386415 12 ffffffff80f80a0000000000 ............ +3911 10.820139408 127.0.0.1:57415 127.0.0.1:57433 3333386427 12 1e000000a61d0b0000000000 ............ +3912 10.820258856 127.0.0.1:57415 127.0.0.1:57433 3333386439 30 1a00000055ceff62b21b3a500100030000003d911f000000000000000000 ....U..b..:P......=........... +3913 10.820489883 127.0.0.1:57433 127.0.0.1:57415 377350561 12 ffffffffa61d0b0000000000 ............ +3915 10.820964098 127.0.0.1:57433 127.0.0.1:57415 377350573 12 1a00000081f80a0000000000 ............ +3917 10.821115494 127.0.0.1:57433 127.0.0.1:57415 377350585 26 160000003d911f00000000000100030000000000000000000000 ....=..................... +3919 10.821342230 127.0.0.1:57415 127.0.0.1:57433 3333386469 12 ffffffff81f80a0000000000 ............ +3922 10.874908209 127.0.0.1:57415 127.0.0.1:57433 3333386481 12 1a000000a71d0b0000000000 ............ +3924 10.875065088 127.0.0.1:57415 127.0.0.1:57433 3333386493 26 16000000548f6340e25e31400100030000003f911f0000000000 ....T.c@.^1@......?....... +3926 10.875372648 127.0.0.1:57433 127.0.0.1:57415 377350611 12 ffffffffa71d0b0000000000 ............ +3928 10.875917673 127.0.0.1:57433 127.0.0.1:57415 377350623 12 1600000082f80a0000000000 ............ +3930 10.876023054 127.0.0.1:57433 127.0.0.1:57415 377350635 22 120000003f911f000000000001000300000000000000 ....?................. +3932 10.876298666 127.0.0.1:57415 127.0.0.1:57433 3333386519 12 ffffffff82f80a0000000000 ............ +3937 10.919982195 127.0.0.1:57433 127.0.0.1:57415 377350657 12 feffffff0c4301001d430100 .....C...C.. +3942 10.978120327 127.0.0.1:57415 127.0.0.1:57433 3333386531 12 1a000000a81d0b0000000000 ............ +3944 10.978462934 127.0.0.1:57415 127.0.0.1:57433 3333386543 26 16000000548f6340e25e314001000300000041911f0000000000 ....T.c@.^1@......A....... +3946 10.978858948 127.0.0.1:57433 127.0.0.1:57415 377350669 12 ffffffffa81d0b0000000000 ............ +3948 10.979604721 127.0.0.1:57433 127.0.0.1:57415 377350681 12 1600000083f80a0000000000 ............ +3950 10.979771137 127.0.0.1:57433 127.0.0.1:57415 377350693 22 1200000041911f000000000001000300000000000000 ....A................. +3952 10.980162382 127.0.0.1:57415 127.0.0.1:57433 3333386569 12 ffffffff83f80a0000000000 ............ +3960 11.047652483 127.0.0.1:57415 127.0.0.1:57433 3333386581 12 feffffff1e4301000c430100 .....C...C.. +3962 11.081741095 127.0.0.1:57415 127.0.0.1:57433 3333386593 12 1a000000a91d0b0000000000 ............ +3964 11.081914663 127.0.0.1:57415 127.0.0.1:57433 3333386605 26 16000000548f6340e25e314001000300000043911f0000000000 ....T.c@.^1@......C....... +3966 11.082245588 127.0.0.1:57433 127.0.0.1:57415 377350715 12 ffffffffa91d0b0000000000 ............ +3968 11.082665920 127.0.0.1:57433 127.0.0.1:57415 377350727 12 1600000084f80a0000000000 ............ +3970 11.082839251 127.0.0.1:57433 127.0.0.1:57415 377350739 22 1200000043911f000000000001000300000000000000 ....C................. +3972 11.083188057 127.0.0.1:57415 127.0.0.1:57433 3333386631 12 ffffffff84f80a0000000000 ............ +3974 11.121049881 127.0.0.1:57415 127.0.0.1:57433 3333386643 12 22000000aa1d0b0000000000 "........... +3976 11.121262550 127.0.0.1:57415 127.0.0.1:57433 3333386655 34 1e0000001c2118d0c46f33bb010003000000bb110200000000008cca23c39d01 .....!...o3.................#..... +3978 11.121400356 127.0.0.1:57415 127.0.0.1:57433 3333386689 12 43000000ab1d0b0000000000 C........... +3980 11.121484756 127.0.0.1:57415 127.0.0.1:57433 3333386701 67 3f000000980433cb0cb47c380100030000000100000000bb110200000000003d ?.....3...|8...................=B.....&......... +3982 11.121587992 127.0.0.1:57433 127.0.0.1:57415 377350761 12 ffffffffaa1d0b0000000000 ............ +3984 11.121794701 127.0.0.1:57433 127.0.0.1:57415 377350773 12 ffffffffab1d0b0000000000 ............ +3986 11.123008251 127.0.0.1:57433 127.0.0.1:57415 377350785 12 3400000085f80a0000000000 4........... +3988 11.123239279 127.0.0.1:57433 127.0.0.1:57415 377350797 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +3990 11.123508692 127.0.0.1:57415 127.0.0.1:57433 3333386768 12 ffffffff85f80a0000000000 ............ +3992 11.124266148 127.0.0.1:57415 127.0.0.1:57433 3333386780 12 1e000000ac1d0b0000000000 ............ +3994 11.124469042 127.0.0.1:57415 127.0.0.1:57433 3333386792 30 1a00000055ceff62b21b3a5001000300000045911f000000000000000000 ....U..b..:P......E........... +3996 11.124730587 127.0.0.1:57433 127.0.0.1:57415 377350849 12 ffffffffac1d0b0000000000 ............ +3998 11.125227928 127.0.0.1:57433 127.0.0.1:57415 377350861 12 1a00000086f80a0000000000 ............ +4000 11.125382662 127.0.0.1:57433 127.0.0.1:57415 377350873 26 1600000045911f00000000000100030000000000000000000000 ....E..................... +4002 11.125629425 127.0.0.1:57415 127.0.0.1:57433 3333386822 12 ffffffff86f80a0000000000 ............ +4008 11.184822559 127.0.0.1:57415 127.0.0.1:57433 3333386834 12 1a000000ad1d0b0000000000 ............ +4010 11.185005426 127.0.0.1:57415 127.0.0.1:57433 3333386846 26 16000000548f6340e25e314001000300000047911f0000000000 ....T.c@.^1@......G....... +4012 11.185391188 127.0.0.1:57433 127.0.0.1:57415 377350899 12 ffffffffad1d0b0000000000 ............ +4014 11.186528683 127.0.0.1:57433 127.0.0.1:57415 377350911 12 1600000087f80a0000000000 ............ +4016 11.186690092 127.0.0.1:57433 127.0.0.1:57415 377350923 22 1200000047911f000000000001000300000000000000 ....G................. +4018 11.186947823 127.0.0.1:57415 127.0.0.1:57433 3333386872 12 ffffffff87f80a0000000000 ............ +4022 11.289911270 127.0.0.1:57415 127.0.0.1:57433 3333386884 12 1a000000ae1d0b0000000000 ............ +4024 11.290084839 127.0.0.1:57415 127.0.0.1:57433 3333386896 26 16000000548f6340e25e314001000300000049911f0000000000 ....T.c@.^1@......I....... +4026 11.290409088 127.0.0.1:57433 127.0.0.1:57415 377350945 12 ffffffffae1d0b0000000000 ............ +4028 11.290943146 127.0.0.1:57433 127.0.0.1:57415 377350957 12 1600000088f80a0000000000 ............ +4030 11.291172743 127.0.0.1:57433 127.0.0.1:57415 377350969 22 1200000049911f000000000001000300000000000000 ....I................. +4032 11.291557789 127.0.0.1:57415 127.0.0.1:57433 3333386922 12 ffffffff88f80a0000000000 ............ +4036 11.393971920 127.0.0.1:57415 127.0.0.1:57433 3333386934 12 1a000000af1d0b0000000000 ............ +4038 11.394227028 127.0.0.1:57415 127.0.0.1:57433 3333386946 26 16000000548f6340e25e31400100030000004b911f0000000000 ....T.c@.^1@......K....... +4040 11.394591093 127.0.0.1:57433 127.0.0.1:57415 377350991 12 ffffffffaf1d0b0000000000 ............ +4042 11.395023584 127.0.0.1:57433 127.0.0.1:57415 377351003 12 1600000089f80a0000000000 ............ +4044 11.395224571 127.0.0.1:57433 127.0.0.1:57415 377351015 22 120000004b911f000000000001000300000000000000 ....K................. +4046 11.395696878 127.0.0.1:57415 127.0.0.1:57433 3333386972 12 ffffffff89f80a0000000000 ............ +4052 11.420807362 127.0.0.1:57433 127.0.0.1:57415 377351037 12 feffffff0d4301001e430100 .....C...C.. +4056 11.425182343 127.0.0.1:57415 127.0.0.1:57433 3333386984 12 22000000b01d0b0000000000 "........... +4058 11.425371885 127.0.0.1:57415 127.0.0.1:57433 3333386996 34 1e0000001c2118d0c46f33bb010003000000bc11020000000000bccb23c39d01 .....!...o3.................#..... +4060 11.425516844 127.0.0.1:57415 127.0.0.1:57433 3333387030 12 43000000b11d0b0000000000 C........... +4062 11.425603867 127.0.0.1:57415 127.0.0.1:57433 3333387042 67 3f000000980433cb0cb47c380100030000000100000000bc110200000000003d ?.....3...|8...................=B.....&......... +4063 11.425649405 127.0.0.1:57433 127.0.0.1:57415 377351049 12 ffffffffb01d0b0000000000 ............ +4066 11.425841808 127.0.0.1:57433 127.0.0.1:57415 377351061 12 ffffffffb11d0b0000000000 ............ +4068 11.426698923 127.0.0.1:57433 127.0.0.1:57415 377351073 12 340000008af80a0000000000 4........... +4070 11.426852226 127.0.0.1:57433 127.0.0.1:57415 377351085 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +4072 11.427164793 127.0.0.1:57415 127.0.0.1:57433 3333387109 12 ffffffff8af80a0000000000 ............ +4073 11.428551435 127.0.0.1:57415 127.0.0.1:57433 3333387121 12 1e000000b21d0b0000000000 ............ +4075 11.428776264 127.0.0.1:57415 127.0.0.1:57433 3333387133 30 1a00000055ceff62b21b3a500100030000004d911f000000000000000000 ....U..b..:P......M........... +4077 11.429233074 127.0.0.1:57433 127.0.0.1:57415 377351137 12 ffffffffb21d0b0000000000 ............ +4079 11.429682732 127.0.0.1:57433 127.0.0.1:57415 377351149 12 1a0000008bf80a0000000000 ............ +4081 11.429827929 127.0.0.1:57433 127.0.0.1:57415 377351161 26 160000004d911f00000000000100030000000000000000000000 ....M..................... +4083 11.430170536 127.0.0.1:57415 127.0.0.1:57433 3333387163 12 ffffffff8bf80a0000000000 ............ +4085 11.496987581 127.0.0.1:57415 127.0.0.1:57433 3333387175 12 1a000000b31d0b0000000000 ............ +4087 11.497278929 127.0.0.1:57415 127.0.0.1:57433 3333387187 26 16000000548f6340e25e31400100030000004f911f0000000000 ....T.c@.^1@......O....... +4089 11.497650623 127.0.0.1:57433 127.0.0.1:57415 377351187 12 ffffffffb31d0b0000000000 ............ +4093 11.498090982 127.0.0.1:57433 127.0.0.1:57415 377351199 12 160000008cf80a0000000000 ............ +4095 11.498278856 127.0.0.1:57433 127.0.0.1:57415 377351211 22 120000004f911f000000000001000300000000000000 ....O................. +4097 11.498576403 127.0.0.1:57415 127.0.0.1:57433 3333387213 12 ffffffff8cf80a0000000000 ............ +4103 11.549474239 127.0.0.1:57415 127.0.0.1:57433 3333387225 12 feffffff1f4301000d430100 .....C...C.. +4105 11.600986004 127.0.0.1:57415 127.0.0.1:57433 3333387237 12 1a000000b41d0b0000000000 ............ +4107 11.601280689 127.0.0.1:57415 127.0.0.1:57433 3333387249 26 16000000548f6340e25e314001000300000051911f0000000000 ....T.c@.^1@......Q....... +4109 11.601630449 127.0.0.1:57433 127.0.0.1:57415 377351233 12 ffffffffb41d0b0000000000 ............ +4111 11.602077007 127.0.0.1:57433 127.0.0.1:57415 377351245 12 160000008df80a0000000000 ............ +4113 11.602318525 127.0.0.1:57433 127.0.0.1:57415 377351257 22 1200000051911f000000000001000300000000000000 ....Q................. +4115 11.602604389 127.0.0.1:57415 127.0.0.1:57433 3333387275 12 ffffffff8df80a0000000000 ............ +4121 11.703824759 127.0.0.1:57415 127.0.0.1:57433 3333387287 12 1a000000b51d0b0000000000 ............ +4123 11.704012394 127.0.0.1:57415 127.0.0.1:57433 3333387299 26 16000000548f6340e25e314001000300000053911f0000000000 ....T.c@.^1@......S....... +4125 11.704341412 127.0.0.1:57433 127.0.0.1:57415 377351279 12 ffffffffb51d0b0000000000 ............ +4127 11.704823494 127.0.0.1:57433 127.0.0.1:57415 377351291 12 160000008ef80a0000000000 ............ +4129 11.704980373 127.0.0.1:57433 127.0.0.1:57415 377351303 22 1200000053911f000000000001000300000000000000 ....S................. +4131 11.705293417 127.0.0.1:57415 127.0.0.1:57433 3333387325 12 ffffffff8ef80a0000000000 ............ +4133 11.731076002 127.0.0.1:57415 127.0.0.1:57433 3333387337 12 22000000b61d0b0000000000 "........... +4135 11.731298685 127.0.0.1:57415 127.0.0.1:57433 3333387349 34 1e0000001c2118d0c46f33bb010003000000bd11020000000000eecc23c39d01 .....!...o3.................#..... +4137 11.731434107 127.0.0.1:57415 127.0.0.1:57433 3333387383 12 43000000b71d0b0000000000 C........... +4139 11.731522322 127.0.0.1:57415 127.0.0.1:57433 3333387395 67 3f000000980433cb0cb47c380100030000000100000000bd110200000000003d ?.....3...|8...................=B.....&......... +4141 11.731688023 127.0.0.1:57433 127.0.0.1:57415 377351325 12 ffffffffb61d0b0000000000 ............ +4143 11.731875658 127.0.0.1:57433 127.0.0.1:57415 377351337 12 ffffffffb71d0b0000000000 ............ +4145 11.733888149 127.0.0.1:57433 127.0.0.1:57415 377351349 12 340000008ff80a0000000000 4........... +4147 11.734058857 127.0.0.1:57433 127.0.0.1:57415 377351361 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............6... +4149 11.734416246 127.0.0.1:57415 127.0.0.1:57433 3333387462 12 ffffffff8ff80a0000000000 ............ +4151 11.735271692 127.0.0.1:57415 127.0.0.1:57433 3333387474 12 1e000000b81d0b0000000000 ............ +4153 11.735410690 127.0.0.1:57415 127.0.0.1:57433 3333387486 30 1a00000055ceff62b21b3a5001000300000055911f000000000000000000 ....U..b..:P......U........... +4155 11.735889673 127.0.0.1:57433 127.0.0.1:57415 377351413 12 ffffffffb81d0b0000000000 ............ +4157 11.736134529 127.0.0.1:57433 127.0.0.1:57415 377351425 12 1a00000090f80a0000000000 ............ +4159 11.736311913 127.0.0.1:57433 127.0.0.1:57415 377351437 26 1600000055911f00000000000100030000000000000000000000 ....U..................... +4161 11.736489296 127.0.0.1:57415 127.0.0.1:57433 3333387516 12 ffffffff90f80a0000000000 ............ +4165 11.806945324 127.0.0.1:57415 127.0.0.1:57433 3333387528 12 1a000000b91d0b0000000000 ............ +4167 11.807224989 127.0.0.1:57415 127.0.0.1:57433 3333387540 26 16000000548f6340e25e314001000300000057911f0000000000 ....T.c@.^1@......W....... +4169 11.807673931 127.0.0.1:57433 127.0.0.1:57415 377351463 12 ffffffffb91d0b0000000000 ............ +4171 11.808019400 127.0.0.1:57433 127.0.0.1:57415 377351475 12 1600000091f80a0000000000 ............ +4173 11.808213234 127.0.0.1:57433 127.0.0.1:57415 377351487 22 1200000057911f000000000001000300000000000000 ....W................. +4175 11.808441877 127.0.0.1:57415 127.0.0.1:57433 3333387566 12 ffffffff91f80a0000000000 ............ +4179 11.910825729 127.0.0.1:57415 127.0.0.1:57433 3333387578 12 1a000000ba1d0b0000000000 ............ +4181 11.911358833 127.0.0.1:57415 127.0.0.1:57433 3333387590 26 16000000548f6340e25e314001000300000059911f0000000000 ....T.c@.^1@......Y....... +4183 11.911707640 127.0.0.1:57433 127.0.0.1:57415 377351509 12 ffffffffba1d0b0000000000 ............ +4185 11.912163734 127.0.0.1:57433 127.0.0.1:57415 377351521 12 1600000092f80a0000000000 ............ +4187 11.912299156 127.0.0.1:57433 127.0.0.1:57415 377351533 22 1200000059911f000000000001000300000000000000 ....Y................. +4189 11.912615299 127.0.0.1:57415 127.0.0.1:57433 3333387616 12 ffffffff92f80a0000000000 ............ +4195 11.921078444 127.0.0.1:57433 127.0.0.1:57415 377351555 12 feffffff0e4301001f430100 .....C...C.. +4203 12.013929367 127.0.0.1:57415 127.0.0.1:57433 3333387628 12 1a000000bb1d0b0000000000 ............ +4205 12.014107943 127.0.0.1:57415 127.0.0.1:57433 3333387640 26 16000000548f6340e25e31400100030000005b911f0000000000 ....T.c@.^1@......[....... +4207 12.015003681 127.0.0.1:57433 127.0.0.1:57415 377351567 12 ffffffffbb1d0b0000000000 ............ +4209 12.015590668 127.0.0.1:57433 127.0.0.1:57415 377351579 12 1600000093f80a0000000000 ............ +4211 12.015781641 127.0.0.1:57433 127.0.0.1:57415 377351591 22 120000005b911f000000000001000300000000000000 ....[................. +4213 12.016115189 127.0.0.1:57415 127.0.0.1:57433 3333387666 12 ffffffff93f80a0000000000 ............ +4215 12.036541700 127.0.0.1:57415 127.0.0.1:57433 3333387678 12 65000000bc1d0b0000000000 e........... +4217 12.036731005 127.0.0.1:57415 127.0.0.1:57433 3333387690 101 1e0000001c2118d0c46f33bb010003000000be1102000000000020ce23c39d01 .....!...o3............... .#.....?.....3...|8.. +4219 12.037062168 127.0.0.1:57433 127.0.0.1:57415 377351613 12 ffffffffbc1d0b0000000000 ............ +4221 12.038000584 127.0.0.1:57433 127.0.0.1:57415 377351625 12 3400000094f80a0000000000 4........... +4223 12.038188457 127.0.0.1:57433 127.0.0.1:57415 377351637 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................7. +4225 12.038554192 127.0.0.1:57415 127.0.0.1:57433 3333387791 12 ffffffff94f80a0000000000 ............ +4227 12.039738178 127.0.0.1:57415 127.0.0.1:57433 3333387803 12 1e000000bd1d0b0000000000 ............ +4229 12.039883614 127.0.0.1:57415 127.0.0.1:57433 3333387815 30 1a00000055ceff62b21b3a500100030000005d911f000000000000000000 ....U..b..:P......]........... +4231 12.040203094 127.0.0.1:57433 127.0.0.1:57415 377351689 12 ffffffffbd1d0b0000000000 ............ +4233 12.040759563 127.0.0.1:57433 127.0.0.1:57415 377351701 12 1a00000095f80a0000000000 ............ +4235 12.040917397 127.0.0.1:57433 127.0.0.1:57415 377351713 26 160000005d911f00000000000100030000000000000000000000 ....]..................... +4237 12.041208029 127.0.0.1:57415 127.0.0.1:57433 3333387845 12 ffffffff95f80a0000000000 ............ +4241 12.051422596 127.0.0.1:57415 127.0.0.1:57433 3333387857 12 feffffff204301000e430100 .... C...C.. +4273 12.117761612 127.0.0.1:57415 127.0.0.1:57433 3333387869 12 1a000000be1d0b0000000000 ............ +4275 12.117937803 127.0.0.1:57415 127.0.0.1:57433 3333387881 26 16000000548f6340e25e31400100030000005f911f0000000000 ....T.c@.^1@......_....... +4277 12.118406534 127.0.0.1:57433 127.0.0.1:57415 377351739 12 ffffffffbe1d0b0000000000 ............ +4279 12.118827581 127.0.0.1:57433 127.0.0.1:57415 377351751 12 1600000096f80a0000000000 ............ +4281 12.119025946 127.0.0.1:57433 127.0.0.1:57415 377351763 22 120000005f911f000000000001000300000000000000 ...._................. +4283 12.119340897 127.0.0.1:57415 127.0.0.1:57433 3333387907 12 ffffffff96f80a0000000000 ............ +4319 12.220786572 127.0.0.1:57415 127.0.0.1:57433 3333387919 12 1a000000bf1d0b0000000000 ............ +4321 12.221070766 127.0.0.1:57415 127.0.0.1:57433 3333387931 26 16000000548f6340e25e314001000300000061911f0000000000 ....T.c@.^1@......a....... +4323 12.221453667 127.0.0.1:57433 127.0.0.1:57415 377351785 12 ffffffffbf1d0b0000000000 ............ +4325 12.221816301 127.0.0.1:57433 127.0.0.1:57415 377351797 12 1600000097f80a0000000000 ............ +4327 12.221977949 127.0.0.1:57433 127.0.0.1:57415 377351809 22 1200000061911f000000000001000300000000000000 ....a................. +4329 12.222345591 127.0.0.1:57415 127.0.0.1:57433 3333387957 12 ffffffff97f80a0000000000 ............ +4336 12.323608637 127.0.0.1:57415 127.0.0.1:57433 3333387969 12 1a000000c01d0b0000000000 ............ +4338 12.323799133 127.0.0.1:57415 127.0.0.1:57433 3333387981 26 16000000548f6340e25e314001000300000063911f0000000000 ....T.c@.^1@......c....... +4340 12.324206591 127.0.0.1:57433 127.0.0.1:57415 377351831 12 ffffffffc01d0b0000000000 ............ +4342 12.324584484 127.0.0.1:57433 127.0.0.1:57415 377351843 12 1600000098f80a0000000000 ............ +4344 12.324751377 127.0.0.1:57433 127.0.0.1:57415 377351855 22 1200000063911f000000000001000300000000000000 ....c................. +4346 12.325161457 127.0.0.1:57415 127.0.0.1:57433 3333388007 12 ffffffff98f80a0000000000 ............ +4348 12.341085196 127.0.0.1:57415 127.0.0.1:57433 3333388019 12 22000000c11d0b0000000000 "........... +4350 12.341363668 127.0.0.1:57415 127.0.0.1:57433 3333388031 34 1e0000001c2118d0c46f33bb010003000000bf1102000000000050cf23c39d01 .....!...o3...............P.#..... +4352 12.341534376 127.0.0.1:57415 127.0.0.1:57433 3333388065 12 43000000c21d0b0000000000 C........... +4354 12.341644764 127.0.0.1:57415 127.0.0.1:57433 3333388077 67 3f000000980433cb0cb47c380100030000000100000000bf110200000000003d ?.....3...|8...................=B.....&......... +4355 12.341693878 127.0.0.1:57433 127.0.0.1:57415 377351877 12 ffffffffc11d0b0000000000 ............ +4358 12.341958284 127.0.0.1:57433 127.0.0.1:57415 377351889 12 ffffffffc21d0b0000000000 ............ +4360 12.343120813 127.0.0.1:57433 127.0.0.1:57415 377351901 12 3400000099f80a0000000000 4........... +4362 12.343279362 127.0.0.1:57433 127.0.0.1:57415 377351913 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................e. +4364 12.343726397 127.0.0.1:57415 127.0.0.1:57433 3333388144 12 ffffffff99f80a0000000000 ............ +4365 12.344497442 127.0.0.1:57415 127.0.0.1:57433 3333388156 12 1e000000c31d0b0000000000 ............ +4367 12.344677210 127.0.0.1:57415 127.0.0.1:57433 3333388168 30 1a00000055ceff62b21b3a5001000300000065911f000000000000000000 ....U..b..:P......e........... +4369 12.345138788 127.0.0.1:57433 127.0.0.1:57415 377351965 12 ffffffffc31d0b0000000000 ............ +4371 12.345454931 127.0.0.1:57433 127.0.0.1:57415 377351977 12 1a0000009af80a0000000000 ............ +4373 12.345627308 127.0.0.1:57433 127.0.0.1:57415 377351989 26 1600000065911f00000000000100030000000000000000000000 ....e..................... +4375 12.345979452 127.0.0.1:57415 127.0.0.1:57433 3333388198 12 ffffffff9af80a0000000000 ............ +4382 12.421951294 127.0.0.1:57433 127.0.0.1:57415 377352015 12 feffffff0f43010020430100 .....C.. C.. +4386 12.426687717 127.0.0.1:57415 127.0.0.1:57433 3333388210 12 1a000000c41d0b0000000000 ............ +4388 12.426927090 127.0.0.1:57415 127.0.0.1:57433 3333388222 26 16000000548f6340e25e314001000300000067911f0000000000 ....T.c@.^1@......g....... +4390 12.427213669 127.0.0.1:57433 127.0.0.1:57415 377352027 12 ffffffffc41d0b0000000000 ............ +4392 12.427805901 127.0.0.1:57433 127.0.0.1:57415 377352039 12 160000009bf80a0000000000 ............ +4394 12.428005934 127.0.0.1:57433 127.0.0.1:57415 377352051 22 1200000067911f000000000001000300000000000000 ....g................. +4396 12.428255796 127.0.0.1:57415 127.0.0.1:57433 3333388248 12 ffffffff9bf80a0000000000 ............ +4403 12.529604435 127.0.0.1:57415 127.0.0.1:57433 3333388260 12 1a000000c51d0b0000000000 ............ +4405 12.529788971 127.0.0.1:57415 127.0.0.1:57433 3333388272 26 16000000548f6340e25e314001000300000069911f0000000000 ....T.c@.^1@......i....... +4407 12.530125380 127.0.0.1:57433 127.0.0.1:57415 377352073 12 ffffffffc51d0b0000000000 ............ +4409 12.530770779 127.0.0.1:57433 127.0.0.1:57415 377352085 12 160000009cf80a0000000000 ............ +4411 12.530984163 127.0.0.1:57433 127.0.0.1:57415 377352097 22 1200000069911f000000000001000300000000000000 ....i................. +4413 12.531227827 127.0.0.1:57415 127.0.0.1:57433 3333388298 12 ffffffff9cf80a0000000000 ............ +4417 12.552103758 127.0.0.1:57415 127.0.0.1:57433 3333388310 12 feffffff214301000f430100 ....!C...C.. +4420 12.632520437 127.0.0.1:57415 127.0.0.1:57433 3333388322 12 1a000000c61d0b0000000000 ............ +4422 12.632754087 127.0.0.1:57415 127.0.0.1:57433 3333388334 26 16000000548f6340e25e31400100030000006b911f0000000000 ....T.c@.^1@......k....... +4424 12.633120775 127.0.0.1:57433 127.0.0.1:57415 377352119 12 ffffffffc61d0b0000000000 ............ +4426 12.633737803 127.0.0.1:57433 127.0.0.1:57415 377352131 12 160000009df80a0000000000 ............ +4428 12.633905172 127.0.0.1:57433 127.0.0.1:57415 377352143 22 120000006b911f000000000001000300000000000000 ....k................. +4430 12.634210110 127.0.0.1:57415 127.0.0.1:57433 3333388360 12 ffffffff9df80a0000000000 ............ +4432 12.645892620 127.0.0.1:57415 127.0.0.1:57433 3333388372 12 22000000c71d0b0000000000 "........... +4434 12.646097422 127.0.0.1:57415 127.0.0.1:57433 3333388384 34 1e0000001c2118d0c46f33bb010003000000c01102000000000081d023c39d01 .....!...o3.................#..... +4436 12.646242619 127.0.0.1:57415 127.0.0.1:57433 3333388418 12 43000000c81d0b0000000000 C........... +4438 12.646329403 127.0.0.1:57433 127.0.0.1:57415 377352165 12 ffffffffc71d0b0000000000 ............ +4439 12.646332264 127.0.0.1:57415 127.0.0.1:57433 3333388430 67 3f000000980433cb0cb47c380100030000000100000000c0110200000000003d ?.....3...|8...................=B.....&......... +4442 12.646511793 127.0.0.1:57433 127.0.0.1:57415 377352177 12 ffffffffc81d0b0000000000 ............ +4444 12.647430897 127.0.0.1:57433 127.0.0.1:57415 377352189 12 340000009ef80a0000000000 4........... +4446 12.647594690 127.0.0.1:57433 127.0.0.1:57415 377352201 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............K... +4448 12.647855997 127.0.0.1:57415 127.0.0.1:57433 3333388497 12 ffffffff9ef80a0000000000 ............ +4450 12.648884296 127.0.0.1:57415 127.0.0.1:57433 3333388509 12 1e000000c91d0b0000000000 ............ +4452 12.649084568 127.0.0.1:57415 127.0.0.1:57433 3333388521 30 1a00000055ceff62b21b3a500100030000006d911f000000000000000000 ....U..b..:P......m........... +4454 12.649353504 127.0.0.1:57433 127.0.0.1:57415 377352253 12 ffffffffc91d0b0000000000 ............ +4456 12.649744272 127.0.0.1:57433 127.0.0.1:57415 377352265 12 1a0000009ff80a0000000000 ............ +4458 12.649936438 127.0.0.1:57433 127.0.0.1:57415 377352277 26 160000006d911f00000000000100030000000000000000000000 ....m..................... +4460 12.650243998 127.0.0.1:57415 127.0.0.1:57433 3333388551 12 ffffffff9ff80a0000000000 ............ +4467 12.735935211 127.0.0.1:57415 127.0.0.1:57433 3333388563 12 1a000000ca1d0b0000000000 ............ +4469 12.736079454 127.0.0.1:57415 127.0.0.1:57433 3333388575 26 16000000548f6340e25e31400100030000006f911f0000000000 ....T.c@.^1@......o....... +4471 12.736416578 127.0.0.1:57433 127.0.0.1:57415 377352303 12 ffffffffca1d0b0000000000 ............ +4473 12.737104893 127.0.0.1:57433 127.0.0.1:57415 377352315 12 16000000a0f80a0000000000 ............ +4475 12.737311363 127.0.0.1:57433 127.0.0.1:57415 377352327 22 120000006f911f000000000001000300000000000000 ....o................. +4477 12.737703085 127.0.0.1:57415 127.0.0.1:57433 3333388601 12 ffffffffa0f80a0000000000 ............ +4484 12.840462685 127.0.0.1:57415 127.0.0.1:57433 3333388613 12 1a000000cb1d0b0000000000 ............ +4486 12.840748787 127.0.0.1:57415 127.0.0.1:57433 3333388625 26 16000000548f6340e25e314001000300000071911f0000000000 ....T.c@.^1@......q....... +4488 12.841071606 127.0.0.1:57433 127.0.0.1:57415 377352349 12 ffffffffcb1d0b0000000000 ............ +4490 12.841603279 127.0.0.1:57433 127.0.0.1:57415 377352361 12 16000000a1f80a0000000000 ............ +4492 12.841765404 127.0.0.1:57433 127.0.0.1:57415 377352373 22 1200000071911f000000000001000300000000000000 ....q................. +4494 12.842031479 127.0.0.1:57415 127.0.0.1:57433 3333388651 12 ffffffffa1f80a0000000000 ............ +4500 12.922405005 127.0.0.1:57433 127.0.0.1:57415 377352395 12 feffffff1043010021430100 .....C..!C.. +4505 12.943651676 127.0.0.1:57415 127.0.0.1:57433 3333388663 12 1a000000cc1d0b0000000000 ............ +4507 12.943889141 127.0.0.1:57415 127.0.0.1:57433 3333388675 26 16000000548f6340e25e314001000300000073911f0000000000 ....T.c@.^1@......s....... +4509 12.944246531 127.0.0.1:57433 127.0.0.1:57415 377352407 12 ffffffffcc1d0b0000000000 ............ +4511 12.945096254 127.0.0.1:57433 127.0.0.1:57415 377352419 12 16000000a2f80a0000000000 ............ +4513 12.945252895 127.0.0.1:57433 127.0.0.1:57415 377352431 22 1200000073911f000000000001000300000000000000 ....s................. +4515 12.945465088 127.0.0.1:57415 127.0.0.1:57433 3333388701 12 ffffffffa2f80a0000000000 ............ +4517 12.949839354 127.0.0.1:57415 127.0.0.1:57433 3333388713 12 65000000cd1d0b0000000000 e........... +4519 12.950411081 127.0.0.1:57415 127.0.0.1:57433 3333388725 101 1e0000001c2118d0c46f33bb010003000000c111020000000000b1d123c39d01 .....!...o3.................#.....?.....3...|8.. +4521 12.950690985 127.0.0.1:57433 127.0.0.1:57415 377352453 12 ffffffffcd1d0b0000000000 ............ +4523 12.951758146 127.0.0.1:57433 127.0.0.1:57415 377352465 12 34000000a3f80a0000000000 4........... +4525 12.951961994 127.0.0.1:57433 127.0.0.1:57415 377352477 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +4527 12.952243090 127.0.0.1:57415 127.0.0.1:57433 3333388826 12 ffffffffa3f80a0000000000 ............ +4529 12.953022480 127.0.0.1:57415 127.0.0.1:57433 3333388838 12 1e000000ce1d0b0000000000 ............ +4531 12.953250170 127.0.0.1:57415 127.0.0.1:57433 3333388850 30 1a00000055ceff62b21b3a5001000300000075911f000000000000000000 ....U..b..:P......u........... +4533 12.953507900 127.0.0.1:57433 127.0.0.1:57415 377352529 12 ffffffffce1d0b0000000000 ............ +4535 12.954097033 127.0.0.1:57433 127.0.0.1:57415 377352541 12 1a000000a4f80a0000000000 ............ +4537 12.954288006 127.0.0.1:57433 127.0.0.1:57415 377352553 26 1600000075911f00000000000100030000000000000000000000 ....u..................... +4539 12.954570293 127.0.0.1:57415 127.0.0.1:57433 3333388880 12 ffffffffa4f80a0000000000 ............ +4545 13.046787977 127.0.0.1:57415 127.0.0.1:57433 3333388892 12 1a000000cf1d0b0000000000 ............ +4547 13.047035694 127.0.0.1:57415 127.0.0.1:57433 3333388904 26 16000000548f6340e25e314001000300000077911f0000000000 ....T.c@.^1@......w....... +4549 13.047506809 127.0.0.1:57433 127.0.0.1:57415 377352579 12 ffffffffcf1d0b0000000000 ............ +4552 13.048264503 127.0.0.1:57433 127.0.0.1:57415 377352591 12 16000000a5f80a0000000000 ............ +4554 13.048436403 127.0.0.1:57433 127.0.0.1:57415 377352603 22 1200000077911f000000000001000300000000000000 ....w................. +4556 13.048701286 127.0.0.1:57415 127.0.0.1:57433 3333388930 12 ffffffffa5f80a0000000000 ............ +4560 13.053300858 127.0.0.1:57415 127.0.0.1:57433 3333388942 12 feffffff2243010010430100 ...."C...C.. +4562 13.150655508 127.0.0.1:57415 127.0.0.1:57433 3333388954 12 1a000000d01d0b0000000000 ............ +4564 13.150888920 127.0.0.1:57415 127.0.0.1:57433 3333388966 26 16000000548f6340e25e314001000300000079911f0000000000 ....T.c@.^1@......y....... +4566 13.151251554 127.0.0.1:57433 127.0.0.1:57415 377352625 12 ffffffffd01d0b0000000000 ............ +4568 13.151903391 127.0.0.1:57433 127.0.0.1:57415 377352637 12 16000000a6f80a0000000000 ............ +4570 13.152052164 127.0.0.1:57433 127.0.0.1:57415 377352649 22 1200000079911f000000000001000300000000000000 ....y................. +4572 13.152332544 127.0.0.1:57415 127.0.0.1:57433 3333388992 12 ffffffffa6f80a0000000000 ............ +4579 13.255410433 127.0.0.1:57415 127.0.0.1:57433 3333389004 12 1a000000d11d0b0000000000 ............ +4581 13.255669355 127.0.0.1:57415 127.0.0.1:57433 3333389016 26 16000000548f6340e25e31400100030000007b911f0000000000 ....T.c@.^1@......{....... +4583 13.255903482 127.0.0.1:57415 127.0.0.1:57433 3333389042 12 65000000d21d0b0000000000 e........... +4585 13.256038189 127.0.0.1:57415 127.0.0.1:57433 3333389054 101 1e0000001c2118d0c46f33bb010003000000c211020000000000e2d223c39d01 .....!...o3.................#.....?.....3...|8.. +4586 13.256088734 127.0.0.1:57433 127.0.0.1:57415 377352671 12 ffffffffd11d0b0000000000 ............ +4589 13.256361246 127.0.0.1:57433 127.0.0.1:57415 377352683 12 ffffffffd21d0b0000000000 ............ +4591 13.256619453 127.0.0.1:57433 127.0.0.1:57415 377352695 12 16000000a7f80a0000000000 ............ +4593 13.256817102 127.0.0.1:57433 127.0.0.1:57415 377352707 22 120000007b911f000000000001000300000000000000 ....{................. +4595 13.257035971 127.0.0.1:57415 127.0.0.1:57433 3333389155 12 ffffffffa7f80a0000000000 ............ +4596 13.257175922 127.0.0.1:57433 127.0.0.1:57415 377352729 12 34000000a8f80a0000000000 4........... +4598 13.257312775 127.0.0.1:57433 127.0.0.1:57415 377352741 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................7.. +4600 13.257540703 127.0.0.1:57415 127.0.0.1:57433 3333389167 12 ffffffffa8f80a0000000000 ............ +4601 13.258505106 127.0.0.1:57415 127.0.0.1:57433 3333389179 12 1e000000d31d0b0000000000 ............ +4603 13.258717775 127.0.0.1:57415 127.0.0.1:57433 3333389191 30 1a00000055ceff62b21b3a500100030000007d911f000000000000000000 ....U..b..:P......}........... +4605 13.259080410 127.0.0.1:57433 127.0.0.1:57415 377352793 12 ffffffffd31d0b0000000000 ............ +4607 13.259429932 127.0.0.1:57433 127.0.0.1:57415 377352805 12 1a000000a9f80a0000000000 ............ +4609 13.259582281 127.0.0.1:57433 127.0.0.1:57415 377352817 26 160000007d911f00000000000100030000000000000000000000 ....}..................... +4611 13.259933233 127.0.0.1:57415 127.0.0.1:57433 3333389221 12 ffffffffa9f80a0000000000 ............ +4618 13.358349085 127.0.0.1:57415 127.0.0.1:57433 3333389233 12 1a000000d41d0b0000000000 ............ +4620 13.358528852 127.0.0.1:57415 127.0.0.1:57433 3333389245 26 16000000548f6340e25e31400100030000007f911f0000000000 ....T.c@.^1@.............. +4622 13.358834267 127.0.0.1:57433 127.0.0.1:57415 377352843 12 ffffffffd41d0b0000000000 ............ +4624 13.359378099 127.0.0.1:57433 127.0.0.1:57415 377352855 12 16000000aaf80a0000000000 ............ +4626 13.359524012 127.0.0.1:57433 127.0.0.1:57415 377352867 22 120000007f911f000000000001000300000000000000 ...................... +4628 13.359793901 127.0.0.1:57415 127.0.0.1:57433 3333389271 12 ffffffffaaf80a0000000000 ............ +4635 13.421800137 127.0.0.1:57433 127.0.0.1:57415 377352889 12 feffffff1143010022430100 .....C.."C.. +4639 13.461738825 127.0.0.1:57415 127.0.0.1:57433 3333389283 12 1a000000d51d0b0000000000 ............ +4641 13.461945772 127.0.0.1:57415 127.0.0.1:57433 3333389295 26 16000000548f6340e25e314001000300000081911f0000000000 ....T.c@.^1@.............. +4643 13.462424755 127.0.0.1:57433 127.0.0.1:57415 377352901 12 ffffffffd51d0b0000000000 ............ +4645 13.462836981 127.0.0.1:57433 127.0.0.1:57415 377352913 12 16000000abf80a0000000000 ............ +4647 13.463043213 127.0.0.1:57433 127.0.0.1:57415 377352925 22 1200000081911f000000000001000300000000000000 ...................... +4649 13.463382483 127.0.0.1:57415 127.0.0.1:57433 3333389321 12 ffffffffabf80a0000000000 ............ +4662 13.553945541 127.0.0.1:57415 127.0.0.1:57433 3333389333 12 feffffff2343010011430100 ....#C...C.. +4664 13.559793472 127.0.0.1:57415 127.0.0.1:57433 3333389345 12 65000000d61d0b0000000000 e........... +4666 13.559998035 127.0.0.1:57415 127.0.0.1:57433 3333389357 101 1e0000001c2118d0c46f33bb010003000000c31102000000000012d423c39d01 .....!...o3.................#.....?.....3...|8.. +4668 13.560396194 127.0.0.1:57433 127.0.0.1:57415 377352947 12 ffffffffd61d0b0000000000 ............ +4670 13.561310053 127.0.0.1:57433 127.0.0.1:57415 377352959 12 34000000acf80a0000000000 4........... +4672 13.561470747 127.0.0.1:57433 127.0.0.1:57415 377352971 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............;... +4674 13.561895847 127.0.0.1:57415 127.0.0.1:57433 3333389458 12 ffffffffacf80a0000000000 ............ +4676 13.562822342 127.0.0.1:57415 127.0.0.1:57433 3333389470 12 1e000000d71d0b0000000000 ............ +4678 13.563052177 127.0.0.1:57415 127.0.0.1:57433 3333389482 30 1a00000055ceff62b21b3a5001000300000083911f000000000000000000 ....U..b..:P.................. +4680 13.563331127 127.0.0.1:57433 127.0.0.1:57415 377353023 12 ffffffffd71d0b0000000000 ............ +4682 13.563729286 127.0.0.1:57433 127.0.0.1:57415 377353035 12 1a000000adf80a0000000000 ............ +4684 13.563865185 127.0.0.1:57433 127.0.0.1:57415 377353047 26 1600000083911f00000000000100030000000000000000000000 .......................... +4686 13.564211845 127.0.0.1:57415 127.0.0.1:57433 3333389512 12 ffffffffadf80a0000000000 ............ +4688 13.566196918 127.0.0.1:57415 127.0.0.1:57433 3333389524 12 1a000000d81d0b0000000000 ............ +4690 13.566384792 127.0.0.1:57415 127.0.0.1:57433 3333389536 26 16000000548f6340e25e314001000300000085911f0000000000 ....T.c@.^1@.............. +4692 13.566699028 127.0.0.1:57433 127.0.0.1:57415 377353073 12 ffffffffd81d0b0000000000 ............ +4694 13.567065001 127.0.0.1:57433 127.0.0.1:57415 377353085 12 16000000aef80a0000000000 ............ +4696 13.567231894 127.0.0.1:57433 127.0.0.1:57415 377353097 22 1200000085911f000000000001000300000000000000 ...................... +4698 13.567562580 127.0.0.1:57415 127.0.0.1:57433 3333389562 12 ffffffffaef80a0000000000 ............ +4738 13.670386314 127.0.0.1:57415 127.0.0.1:57433 3333389574 12 1a000000d91d0b0000000000 ............ +4740 13.670577288 127.0.0.1:57415 127.0.0.1:57433 3333389586 26 16000000548f6340e25e314001000300000087911f0000000000 ....T.c@.^1@.............. +4742 13.670905113 127.0.0.1:57433 127.0.0.1:57415 377353119 12 ffffffffd91d0b0000000000 ............ +4744 13.671214819 127.0.0.1:57433 127.0.0.1:57415 377353131 12 16000000aff80a0000000000 ............ +4746 13.671393394 127.0.0.1:57433 127.0.0.1:57415 377353143 22 1200000087911f000000000001000300000000000000 ...................... +4748 13.671679020 127.0.0.1:57415 127.0.0.1:57433 3333389612 12 ffffffffaff80a0000000000 ............ +4752 13.774157286 127.0.0.1:57415 127.0.0.1:57433 3333389624 12 1a000000da1d0b0000000000 ............ +4754 13.774439573 127.0.0.1:57415 127.0.0.1:57433 3333389636 26 16000000548f6340e25e314001000300000089911f0000000000 ....T.c@.^1@.............. +4756 13.774823427 127.0.0.1:57433 127.0.0.1:57415 377353165 12 ffffffffda1d0b0000000000 ............ +4758 13.775284767 127.0.0.1:57433 127.0.0.1:57415 377353177 12 16000000b0f80a0000000000 ............ +4760 13.775451183 127.0.0.1:57433 127.0.0.1:57415 377353189 22 1200000089911f000000000001000300000000000000 ...................... +4762 13.775688410 127.0.0.1:57415 127.0.0.1:57433 3333389662 12 ffffffffb0f80a0000000000 ............ +4766 13.864563942 127.0.0.1:57415 127.0.0.1:57433 3333389674 12 65000000db1d0b0000000000 e........... +4768 13.864841700 127.0.0.1:57415 127.0.0.1:57433 3333389686 101 1e0000001c2118d0c46f33bb010003000000c41102000000000043d523c39d01 .....!...o3...............C.#.....?.....3...|8.. +4770 13.865210533 127.0.0.1:57433 127.0.0.1:57415 377353211 12 ffffffffdb1d0b0000000000 ............ +4772 13.866070032 127.0.0.1:57433 127.0.0.1:57415 377353223 12 34000000b1f80a0000000000 4........... +4774 13.866300106 127.0.0.1:57433 127.0.0.1:57415 377353235 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................N. +4776 13.866660357 127.0.0.1:57415 127.0.0.1:57433 3333389787 12 ffffffffb1f80a0000000000 ............ +4778 13.867821932 127.0.0.1:57415 127.0.0.1:57433 3333389799 12 1e000000dc1d0b0000000000 ............ +4780 13.868015528 127.0.0.1:57415 127.0.0.1:57433 3333389811 30 1a00000055ceff62b21b3a500100030000008b911f000000000000000000 ....U..b..:P.................. +4782 13.868324280 127.0.0.1:57433 127.0.0.1:57415 377353287 12 ffffffffdc1d0b0000000000 ............ +4784 13.868745565 127.0.0.1:57433 127.0.0.1:57415 377353299 12 1a000000b2f80a0000000000 ............ +4786 13.868906260 127.0.0.1:57433 127.0.0.1:57415 377353311 26 160000008b911f00000000000100030000000000000000000000 .......................... +4788 13.869095325 127.0.0.1:57415 127.0.0.1:57433 3333389841 12 ffffffffb2f80a0000000000 ............ +4790 13.876851082 127.0.0.1:57415 127.0.0.1:57433 3333389853 12 1a000000dd1d0b0000000000 ............ +4792 13.877008438 127.0.0.1:57415 127.0.0.1:57433 3333389865 26 16000000548f6340e25e31400100030000008d911f0000000000 ....T.c@.^1@.............. +4794 13.877304077 127.0.0.1:57433 127.0.0.1:57415 377353337 12 ffffffffdd1d0b0000000000 ............ +4796 13.877816916 127.0.0.1:57433 127.0.0.1:57415 377353349 12 16000000b3f80a0000000000 ............ +4798 13.877965450 127.0.0.1:57433 127.0.0.1:57415 377353361 22 120000008d911f000000000001000300000000000000 ...................... +4800 13.878211975 127.0.0.1:57415 127.0.0.1:57433 3333389891 12 ffffffffb3f80a0000000000 ............ +4806 13.922416687 127.0.0.1:57433 127.0.0.1:57415 377353383 12 feffffff1243010023430100 .....C..#C.. +4810 13.979895115 127.0.0.1:57415 127.0.0.1:57433 3333389903 12 1a000000de1d0b0000000000 ............ +4812 13.980186224 127.0.0.1:57415 127.0.0.1:57433 3333389915 26 16000000548f6340e25e31400100030000008f911f0000000000 ....T.c@.^1@.............. +4814 13.980515957 127.0.0.1:57433 127.0.0.1:57415 377353395 12 ffffffffde1d0b0000000000 ............ +4816 13.980999231 127.0.0.1:57433 127.0.0.1:57415 377353407 12 16000000b4f80a0000000000 ............ +4818 13.981175900 127.0.0.1:57433 127.0.0.1:57415 377353419 22 120000008f911f000000000001000300000000000000 ...................... +4820 13.981504679 127.0.0.1:57415 127.0.0.1:57433 3333389941 12 ffffffffb4f80a0000000000 ............ +4828 14.054456711 127.0.0.1:57415 127.0.0.1:57433 3333389953 12 feffffff2443010012430100 ....$C...C.. +4830 14.082707882 127.0.0.1:57415 127.0.0.1:57433 3333389965 12 1a000000df1d0b0000000000 ............ +4832 14.082927227 127.0.0.1:57415 127.0.0.1:57433 3333389977 26 16000000548f6340e25e314001000300000091911f0000000000 ....T.c@.^1@.............. +4834 14.083333731 127.0.0.1:57433 127.0.0.1:57415 377353441 12 ffffffffdf1d0b0000000000 ............ +4836 14.083854675 127.0.0.1:57433 127.0.0.1:57415 377353453 12 16000000b5f80a0000000000 ............ +4838 14.084046364 127.0.0.1:57433 127.0.0.1:57415 377353465 22 1200000091911f000000000001000300000000000000 ...................... +4840 14.084361553 127.0.0.1:57415 127.0.0.1:57433 3333390003 12 ffffffffb5f80a0000000000 ............ +4848 14.169117451 127.0.0.1:57415 127.0.0.1:57433 3333390015 12 22000000e01d0b0000000000 "........... +4850 14.169382095 127.0.0.1:57415 127.0.0.1:57433 3333390027 34 1e0000001c2118d0c46f33bb010003000000c51102000000000075d623c39d01 .....!...o3...............u.#..... +4852 14.169557571 127.0.0.1:57415 127.0.0.1:57433 3333390061 12 43000000e11d0b0000000000 C........... +4854 14.169665575 127.0.0.1:57415 127.0.0.1:57433 3333390073 67 3f000000980433cb0cb47c380100030000000100000000c5110200000000003d ?.....3...|8...................=B.....&......... +4856 14.169816971 127.0.0.1:57433 127.0.0.1:57415 377353487 12 ffffffffe01d0b0000000000 ............ +4858 14.170035839 127.0.0.1:57433 127.0.0.1:57415 377353499 12 ffffffffe11d0b0000000000 ............ +4860 14.171570778 127.0.0.1:57433 127.0.0.1:57415 377353511 12 34000000b6f80a0000000000 4........... +4862 14.171791792 127.0.0.1:57433 127.0.0.1:57415 377353523 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................|. +4864 14.172009468 127.0.0.1:57415 127.0.0.1:57433 3333390140 12 ffffffffb6f80a0000000000 ............ +4867 14.173106432 127.0.0.1:57415 127.0.0.1:57433 3333390152 12 1e000000e21d0b0000000000 ............ +4870 14.173329830 127.0.0.1:57415 127.0.0.1:57433 3333390164 30 1a00000055ceff62b21b3a5001000300000093911f000000000000000000 ....U..b..:P.................. +4874 14.173605204 127.0.0.1:57433 127.0.0.1:57415 377353575 12 ffffffffe21d0b0000000000 ............ +4876 14.173990488 127.0.0.1:57433 127.0.0.1:57415 377353587 12 1a000000b7f80a0000000000 ............ +4878 14.174174070 127.0.0.1:57433 127.0.0.1:57415 377353599 26 1600000093911f00000000000100030000000000000000000000 .......................... +4880 14.174483538 127.0.0.1:57415 127.0.0.1:57433 3333390194 12 ffffffffb7f80a0000000000 ............ +4882 14.186524391 127.0.0.1:57415 127.0.0.1:57433 3333390206 12 1a000000e31d0b0000000000 ............ +4884 14.186778069 127.0.0.1:57415 127.0.0.1:57433 3333390218 26 16000000548f6340e25e314001000300000095911f0000000000 ....T.c@.^1@.............. +4886 14.187033415 127.0.0.1:57433 127.0.0.1:57415 377353625 12 ffffffffe31d0b0000000000 ............ +4888 14.187349081 127.0.0.1:57433 127.0.0.1:57415 377353637 12 16000000b8f80a0000000000 ............ +4890 14.187566280 127.0.0.1:57433 127.0.0.1:57415 377353649 22 1200000095911f000000000001000300000000000000 ...................... +4892 14.187963963 127.0.0.1:57415 127.0.0.1:57433 3333390244 12 ffffffffb8f80a0000000000 ............ +4896 14.290005922 127.0.0.1:57415 127.0.0.1:57433 3333390256 12 1a000000e41d0b0000000000 ............ +4898 14.290263891 127.0.0.1:57415 127.0.0.1:57433 3333390268 26 16000000548f6340e25e314001000300000097911f0000000000 ....T.c@.^1@.............. +4900 14.290620089 127.0.0.1:57433 127.0.0.1:57415 377353671 12 ffffffffe41d0b0000000000 ............ +4902 14.291075706 127.0.0.1:57433 127.0.0.1:57415 377353683 12 16000000b9f80a0000000000 ............ +4904 14.291241646 127.0.0.1:57433 127.0.0.1:57415 377353695 22 1200000097911f000000000001000300000000000000 ...................... +4906 14.291465282 127.0.0.1:57415 127.0.0.1:57433 3333390294 12 ffffffffb9f80a0000000000 ............ +4910 14.393666506 127.0.0.1:57415 127.0.0.1:57433 3333390306 12 1a000000e51d0b0000000000 ............ +4912 14.393935204 127.0.0.1:57415 127.0.0.1:57433 3333390318 26 16000000548f6340e25e314001000300000099911f0000000000 ....T.c@.^1@.............. +4914 14.394267082 127.0.0.1:57433 127.0.0.1:57415 377353717 12 ffffffffe51d0b0000000000 ............ +4916 14.394670010 127.0.0.1:57433 127.0.0.1:57415 377353729 12 16000000baf80a0000000000 ............ +4918 14.394833326 127.0.0.1:57433 127.0.0.1:57415 377353741 22 1200000099911f000000000001000300000000000000 ...................... +4920 14.395135403 127.0.0.1:57415 127.0.0.1:57433 3333390344 12 ffffffffbaf80a0000000000 ............ +4925 14.423199654 127.0.0.1:57433 127.0.0.1:57415 377353763 12 feffffff1343010024430100 .....C..$C.. +4932 14.475068092 127.0.0.1:57415 127.0.0.1:57433 3333390356 12 22000000e61d0b0000000000 "........... +4934 14.475343943 127.0.0.1:57415 127.0.0.1:57433 3333390368 34 1e0000001c2118d0c46f33bb010003000000c611020000000000a6d723c39d01 .....!...o3.................#..... +4936 14.475579977 127.0.0.1:57415 127.0.0.1:57433 3333390402 12 43000000e71d0b0000000000 C........... +4938 14.475706339 127.0.0.1:57415 127.0.0.1:57433 3333390414 67 3f000000980433cb0cb47c380100030000000100000000c6110200000000003d ?.....3...|8...................=B.....&......... +4939 14.475788593 127.0.0.1:57433 127.0.0.1:57415 377353775 12 ffffffffe61d0b0000000000 ............ +4942 14.476049900 127.0.0.1:57433 127.0.0.1:57415 377353787 12 ffffffffe71d0b0000000000 ............ +4944 14.477191210 127.0.0.1:57433 127.0.0.1:57415 377353799 12 34000000bbf80a0000000000 4........... +4946 14.477357864 127.0.0.1:57433 127.0.0.1:57415 377353811 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................\.. +4948 14.477817774 127.0.0.1:57415 127.0.0.1:57433 3333390481 12 ffffffffbbf80a0000000000 ............ +4949 14.478839636 127.0.0.1:57415 127.0.0.1:57433 3333390493 12 1e000000e81d0b0000000000 ............ +4951 14.479112148 127.0.0.1:57415 127.0.0.1:57433 3333390505 30 1a00000055ceff62b21b3a500100030000009b911f000000000000000000 ....U..b..:P.................. +4953 14.479427099 127.0.0.1:57433 127.0.0.1:57415 377353863 12 ffffffffe81d0b0000000000 ............ +4955 14.479957342 127.0.0.1:57433 127.0.0.1:57415 377353875 12 1a000000bcf80a0000000000 ............ +4957 14.480107784 127.0.0.1:57433 127.0.0.1:57415 377353887 26 160000009b911f00000000000100030000000000000000000000 .......................... +4959 14.480388880 127.0.0.1:57415 127.0.0.1:57433 3333390535 12 ffffffffbcf80a0000000000 ............ +4961 14.496437073 127.0.0.1:57415 127.0.0.1:57433 3333390547 12 1a000000e91d0b0000000000 ............ +4963 14.496712685 127.0.0.1:57415 127.0.0.1:57433 3333390559 26 16000000548f6340e25e31400100030000009d911f0000000000 ....T.c@.^1@.............. +4965 14.497737169 127.0.0.1:57433 127.0.0.1:57415 377353913 12 ffffffffe91d0b0000000000 ............ +4967 14.498150826 127.0.0.1:57433 127.0.0.1:57415 377353925 12 16000000bdf80a0000000000 ............ +4969 14.498315096 127.0.0.1:57433 127.0.0.1:57415 377353937 22 120000009d911f000000000001000300000000000000 ...................... +4971 14.498574972 127.0.0.1:57415 127.0.0.1:57433 3333390585 12 ffffffffbdf80a0000000000 ............ +4979 14.555969715 127.0.0.1:57415 127.0.0.1:57433 3333390597 12 feffffff2543010013430100 ....%C...C.. +4981 14.600441456 127.0.0.1:57415 127.0.0.1:57433 3333390609 12 1a000000ea1d0b0000000000 ............ +4983 14.600631237 127.0.0.1:57415 127.0.0.1:57433 3333390621 26 16000000548f6340e25e31400100030000009f911f0000000000 ....T.c@.^1@.............. +4985 14.600967884 127.0.0.1:57433 127.0.0.1:57415 377353959 12 ffffffffea1d0b0000000000 ............ +4987 14.601514101 127.0.0.1:57433 127.0.0.1:57415 377353971 12 16000000bef80a0000000000 ............ +4989 14.601739645 127.0.0.1:57433 127.0.0.1:57415 377353983 22 120000009f911f000000000001000300000000000000 ...................... +4991 14.602067471 127.0.0.1:57415 127.0.0.1:57433 3333390647 12 ffffffffbef80a0000000000 ............ +4997 14.703322649 127.0.0.1:57415 127.0.0.1:57433 3333390659 12 1a000000eb1d0b0000000000 ............ +4999 14.703522682 127.0.0.1:57415 127.0.0.1:57433 3333390671 26 16000000548f6340e25e3140010003000000a1911f0000000000 ....T.c@.^1@.............. +5001 14.703909159 127.0.0.1:57433 127.0.0.1:57415 377354005 12 ffffffffeb1d0b0000000000 ............ +5003 14.704312086 127.0.0.1:57433 127.0.0.1:57415 377354017 12 16000000bff80a0000000000 ............ +5005 14.704481840 127.0.0.1:57433 127.0.0.1:57415 377354029 22 12000000a1911f000000000001000300000000000000 ...................... +5007 14.704862833 127.0.0.1:57415 127.0.0.1:57433 3333390697 12 ffffffffbff80a0000000000 ............ +5013 14.779992819 127.0.0.1:57415 127.0.0.1:57433 3333390709 12 65000000ec1d0b0000000000 e........... +5015 14.780222654 127.0.0.1:57415 127.0.0.1:57433 3333390721 101 1e0000001c2118d0c46f33bb010003000000c711020000000000d6d823c39d01 .....!...o3.................#.....?.....3...|8.. +5017 14.780517578 127.0.0.1:57433 127.0.0.1:57415 377354051 12 ffffffffec1d0b0000000000 ............ +5019 14.781819582 127.0.0.1:57433 127.0.0.1:57415 377354063 12 34000000c0f80a0000000000 4........... +5021 14.782032013 127.0.0.1:57433 127.0.0.1:57415 377354075 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +5023 14.782323837 127.0.0.1:57415 127.0.0.1:57433 3333390822 12 ffffffffc0f80a0000000000 ............ +5025 14.783760071 127.0.0.1:57415 127.0.0.1:57433 3333390834 12 1e000000ed1d0b0000000000 ............ +5027 14.784143925 127.0.0.1:57415 127.0.0.1:57433 3333390846 30 1a00000055ceff62b21b3a50010003000000a3911f000000000000000000 ....U..b..:P.................. +5029 14.784474611 127.0.0.1:57433 127.0.0.1:57415 377354127 12 ffffffffed1d0b0000000000 ............ +5031 14.784863472 127.0.0.1:57433 127.0.0.1:57415 377354139 12 1a000000c1f80a0000000000 ............ +5033 14.785009623 127.0.0.1:57433 127.0.0.1:57415 377354151 26 16000000a3911f00000000000100030000000000000000000000 .......................... +5035 14.785272837 127.0.0.1:57415 127.0.0.1:57433 3333390876 12 ffffffffc1f80a0000000000 ............ +5037 14.806507826 127.0.0.1:57415 127.0.0.1:57433 3333390888 12 1a000000ee1d0b0000000000 ............ +5039 14.806792974 127.0.0.1:57415 127.0.0.1:57433 3333390900 26 16000000548f6340e25e3140010003000000a5911f0000000000 ....T.c@.^1@.............. +5041 14.807026386 127.0.0.1:57433 127.0.0.1:57415 377354177 12 ffffffffee1d0b0000000000 ............ +5043 14.807470798 127.0.0.1:57433 127.0.0.1:57415 377354189 12 16000000c2f80a0000000000 ............ +5045 14.807632685 127.0.0.1:57433 127.0.0.1:57415 377354201 22 12000000a5911f000000000001000300000000000000 ...................... +5047 14.807888508 127.0.0.1:57415 127.0.0.1:57433 3333390926 12 ffffffffc2f80a0000000000 ............ +5051 14.909110785 127.0.0.1:57415 127.0.0.1:57433 3333390938 12 1a000000ef1d0b0000000000 ............ +5053 14.909301996 127.0.0.1:57415 127.0.0.1:57433 3333390950 26 16000000548f6340e25e3140010003000000a7911f0000000000 ....T.c@.^1@.............. +5055 14.909797430 127.0.0.1:57433 127.0.0.1:57415 377354223 12 ffffffffef1d0b0000000000 ............ +5057 14.910183191 127.0.0.1:57433 127.0.0.1:57415 377354235 12 16000000c3f80a0000000000 ............ +5059 14.910348892 127.0.0.1:57433 127.0.0.1:57415 377354247 22 12000000a7911f000000000001000300000000000000 ...................... +5061 14.911005735 127.0.0.1:57415 127.0.0.1:57433 3333390976 12 ffffffffc3f80a0000000000 ............ +5064 14.924044847 127.0.0.1:57433 127.0.0.1:57415 377354269 12 feffffff1443010025430100 .....C..%C.. +5087 15.012548208 127.0.0.1:57415 127.0.0.1:57433 3333390988 12 1a000000f01d0b0000000000 ............ +5089 15.012762070 127.0.0.1:57415 127.0.0.1:57433 3333391000 26 16000000548f6340e25e3140010003000000a9911f0000000000 ....T.c@.^1@.............. +5091 15.013132095 127.0.0.1:57433 127.0.0.1:57415 377354281 12 fffffffff01d0b0000000000 ............ +5093 15.013680696 127.0.0.1:57433 127.0.0.1:57415 377354293 12 16000000c4f80a0000000000 ............ +5095 15.013905525 127.0.0.1:57433 127.0.0.1:57415 377354305 22 12000000a9911f000000000001000300000000000000 ...................... +5097 15.014235735 127.0.0.1:57415 127.0.0.1:57433 3333391026 12 ffffffffc4f80a0000000000 ............ +5103 15.056724072 127.0.0.1:57415 127.0.0.1:57433 3333391038 12 feffffff2643010014430100 ....&C...C.. +5106 15.085487843 127.0.0.1:57415 127.0.0.1:57433 3333391050 12 22000000f11d0b0000000000 "........... +5108 15.085733175 127.0.0.1:57415 127.0.0.1:57433 3333391062 34 1e0000001c2118d0c46f33bb010003000000c81102000000000008da23c39d01 .....!...o3.................#..... +5110 15.085904598 127.0.0.1:57415 127.0.0.1:57433 3333391096 12 43000000f21d0b0000000000 C........... +5112 15.085992098 127.0.0.1:57415 127.0.0.1:57433 3333391108 67 3f000000980433cb0cb47c380100030000000100000000c8110200000000003d ?.....3...|8...................=B.....&......... +5113 15.086076260 127.0.0.1:57433 127.0.0.1:57415 377354327 12 fffffffff11d0b0000000000 ............ +5116 15.086336136 127.0.0.1:57433 127.0.0.1:57415 377354339 12 fffffffff21d0b0000000000 ............ +5118 15.087171793 127.0.0.1:57433 127.0.0.1:57415 377354351 12 34000000c5f80a0000000000 4........... +5120 15.087313414 127.0.0.1:57433 127.0.0.1:57415 377354363 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................s.. +5122 15.087618589 127.0.0.1:57415 127.0.0.1:57433 3333391175 12 ffffffffc5f80a0000000000 ............ +5123 15.088370085 127.0.0.1:57415 127.0.0.1:57433 3333391187 12 1e000000f31d0b0000000000 ............ +5124 15.088552475 127.0.0.1:57415 127.0.0.1:57433 3333391199 30 1a00000055ceff62b21b3a50010003000000ab911f000000000000000000 ....U..b..:P.................. +5125 15.089055777 127.0.0.1:57433 127.0.0.1:57415 377354415 12 fffffffff31d0b0000000000 ............ +5127 15.089318037 127.0.0.1:57433 127.0.0.1:57415 377354427 12 1a000000c6f80a0000000000 ............ +5129 15.089484692 127.0.0.1:57433 127.0.0.1:57415 377354439 26 16000000ab911f00000000000100030000000000000000000000 .......................... +5131 15.089690685 127.0.0.1:57415 127.0.0.1:57433 3333391229 12 ffffffffc6f80a0000000000 ............ +5133 15.116001368 127.0.0.1:57415 127.0.0.1:57433 3333391241 12 1a000000f41d0b0000000000 ............ +5135 15.116160154 127.0.0.1:57415 127.0.0.1:57433 3333391253 26 16000000548f6340e25e3140010003000000ad911f0000000000 ....T.c@.^1@.............. +5137 15.116599798 127.0.0.1:57433 127.0.0.1:57415 377354465 12 fffffffff41d0b0000000000 ............ +5139 15.117091179 127.0.0.1:57433 127.0.0.1:57415 377354477 12 16000000c7f80a0000000000 ............ +5141 15.117293596 127.0.0.1:57433 127.0.0.1:57415 377354489 22 12000000ad911f000000000001000300000000000000 ...................... +5143 15.117719412 127.0.0.1:57415 127.0.0.1:57433 3333391279 12 ffffffffc7f80a0000000000 ............ +5152 15.220208168 127.0.0.1:57415 127.0.0.1:57433 3333391291 12 1a000000f51d0b0000000000 ............ +5154 15.220393896 127.0.0.1:57415 127.0.0.1:57433 3333391303 26 16000000548f6340e25e3140010003000000af911f0000000000 ....T.c@.^1@.............. +5156 15.220761776 127.0.0.1:57433 127.0.0.1:57415 377354511 12 fffffffff51d0b0000000000 ............ +5158 15.221345425 127.0.0.1:57433 127.0.0.1:57415 377354523 12 16000000c8f80a0000000000 ............ +5160 15.221527100 127.0.0.1:57433 127.0.0.1:57415 377354535 22 12000000af911f000000000001000300000000000000 ...................... +5162 15.221835136 127.0.0.1:57415 127.0.0.1:57433 3333391329 12 ffffffffc8f80a0000000000 ............ +5167 15.323222637 127.0.0.1:57415 127.0.0.1:57433 3333391341 12 1a000000f61d0b0000000000 ............ +5169 15.323498487 127.0.0.1:57415 127.0.0.1:57433 3333391353 26 16000000548f6340e25e3140010003000000b1911f0000000000 ....T.c@.^1@.............. +5171 15.323886156 127.0.0.1:57433 127.0.0.1:57415 377354557 12 fffffffff61d0b0000000000 ............ +5174 15.324660540 127.0.0.1:57433 127.0.0.1:57415 377354569 12 16000000c9f80a0000000000 ............ +5177 15.324956894 127.0.0.1:57433 127.0.0.1:57415 377354581 22 12000000b1911f000000000001000300000000000000 ...................... +5179 15.325523615 127.0.0.1:57415 127.0.0.1:57433 3333391379 12 ffffffffc9f80a0000000000 ............ +5181 15.390454769 127.0.0.1:57415 127.0.0.1:57433 3333391391 12 65000000f71d0b0000000000 e........... +5183 15.390689850 127.0.0.1:57415 127.0.0.1:57433 3333391403 101 1e0000001c2118d0c46f33bb010003000000c9110200000000003adb23c39d01 .....!...o3...............:.#.....?.....3...|8.. +5185 15.391063690 127.0.0.1:57433 127.0.0.1:57415 377354603 12 fffffffff71d0b0000000000 ............ +5187 15.392023802 127.0.0.1:57433 127.0.0.1:57415 377354615 12 34000000caf80a0000000000 4........... +5189 15.392185926 127.0.0.1:57433 127.0.0.1:57415 377354627 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................6. +5191 15.392416239 127.0.0.1:57415 127.0.0.1:57433 3333391504 12 ffffffffcaf80a0000000000 ............ +5193 15.393491507 127.0.0.1:57415 127.0.0.1:57433 3333391516 12 1e000000f81d0b0000000000 ............ +5195 15.393652678 127.0.0.1:57415 127.0.0.1:57433 3333391528 30 1a00000055ceff62b21b3a50010003000000b3911f000000000000000000 ....U..b..:P.................. +5197 15.394051790 127.0.0.1:57433 127.0.0.1:57415 377354679 12 fffffffff81d0b0000000000 ............ +5199 15.394377232 127.0.0.1:57433 127.0.0.1:57415 377354691 12 1a000000cbf80a0000000000 ............ +5201 15.394585371 127.0.0.1:57433 127.0.0.1:57415 377354703 26 16000000b3911f00000000000100030000000000000000000000 .......................... +5203 15.395000935 127.0.0.1:57415 127.0.0.1:57433 3333391558 12 ffffffffcbf80a0000000000 ............ +5206 15.425852537 127.0.0.1:57433 127.0.0.1:57415 377354729 12 feffffff1543010026430100 .....C..&C.. +5212 15.426654100 127.0.0.1:57415 127.0.0.1:57433 3333391570 12 1a000000f91d0b0000000000 ............ +5214 15.426835299 127.0.0.1:57415 127.0.0.1:57433 3333391582 26 16000000548f6340e25e3140010003000000b5911f0000000000 ....T.c@.^1@.............. +5216 15.427215576 127.0.0.1:57433 127.0.0.1:57415 377354741 12 fffffffff91d0b0000000000 ............ +5218 15.427713394 127.0.0.1:57433 127.0.0.1:57415 377354753 12 16000000ccf80a0000000000 ............ +5220 15.427878618 127.0.0.1:57433 127.0.0.1:57415 377354765 22 12000000b5911f000000000001000300000000000000 ...................... +5222 15.428310156 127.0.0.1:57415 127.0.0.1:57433 3333391608 12 ffffffffccf80a0000000000 ............ +5231 15.530509949 127.0.0.1:57415 127.0.0.1:57433 3333391620 12 1a000000fa1d0b0000000000 ............ +5233 15.530861139 127.0.0.1:57415 127.0.0.1:57433 3333391632 26 16000000548f6340e25e3140010003000000b7911f0000000000 ....T.c@.^1@.............. +5235 15.531301737 127.0.0.1:57433 127.0.0.1:57415 377354787 12 fffffffffa1d0b0000000000 ............ +5237 15.531836510 127.0.0.1:57433 127.0.0.1:57415 377354799 12 16000000cdf80a0000000000 ............ +5239 15.532150984 127.0.0.1:57433 127.0.0.1:57415 377354811 22 12000000b7911f000000000001000300000000000000 ...................... +5241 15.532512903 127.0.0.1:57415 127.0.0.1:57433 3333391658 12 ffffffffcdf80a0000000000 ............ +5245 15.557119131 127.0.0.1:57415 127.0.0.1:57433 3333391670 12 feffffff2743010015430100 ....'C...C.. +5248 15.635389805 127.0.0.1:57415 127.0.0.1:57433 3333391682 12 1a000000fb1d0b0000000000 ............ +5250 15.635571718 127.0.0.1:57415 127.0.0.1:57433 3333391694 26 16000000548f6340e25e3140010003000000b9911f0000000000 ....T.c@.^1@.............. +5252 15.636022806 127.0.0.1:57433 127.0.0.1:57415 377354833 12 fffffffffb1d0b0000000000 ............ +5254 15.636422873 127.0.0.1:57433 127.0.0.1:57415 377354845 12 16000000cef80a0000000000 ............ +5256 15.636588097 127.0.0.1:57433 127.0.0.1:57415 377354857 22 12000000b9911f000000000001000300000000000000 ...................... +5258 15.637099266 127.0.0.1:57415 127.0.0.1:57433 3333391720 12 ffffffffcef80a0000000000 ............ +5265 15.695041418 127.0.0.1:57415 127.0.0.1:57433 3333391732 12 65000000fc1d0b0000000000 e........... +5267 15.695297480 127.0.0.1:57415 127.0.0.1:57433 3333391744 101 1e0000001c2118d0c46f33bb010003000000ca1102000000000069dc23c39d01 .....!...o3...............i.#.....?.....3...|8.. +5269 15.695647717 127.0.0.1:57433 127.0.0.1:57415 377354879 12 fffffffffc1d0b0000000000 ............ +5271 15.697203398 127.0.0.1:57433 127.0.0.1:57415 377354891 12 34000000cff80a0000000000 4........... +5273 15.697365761 127.0.0.1:57433 127.0.0.1:57415 377354903 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............E{e. +5275 15.697705269 127.0.0.1:57415 127.0.0.1:57433 3333391845 12 ffffffffcff80a0000000000 ............ +5277 15.698921204 127.0.0.1:57415 127.0.0.1:57433 3333391857 12 1e000000fd1d0b0000000000 ............ +5279 15.699089050 127.0.0.1:57415 127.0.0.1:57433 3333391869 30 1a00000055ceff62b21b3a50010003000000bb911f000000000000000000 ....U..b..:P.................. +5281 15.699303865 127.0.0.1:57433 127.0.0.1:57415 377354955 12 fffffffffd1d0b0000000000 ............ +5283 15.699700356 127.0.0.1:57433 127.0.0.1:57415 377354967 12 1a000000d0f80a0000000000 ............ +5285 15.700060606 127.0.0.1:57433 127.0.0.1:57415 377354979 26 16000000bb911f00000000000100030000000000000000000000 .......................... +5287 15.700337648 127.0.0.1:57415 127.0.0.1:57433 3333391899 12 ffffffffd0f80a0000000000 ............ +5292 15.739412785 127.0.0.1:57415 127.0.0.1:57433 3333391911 12 1a000000fe1d0b0000000000 ............ +5294 15.739618778 127.0.0.1:57415 127.0.0.1:57433 3333391923 26 16000000548f6340e25e3140010003000000bd911f0000000000 ....T.c@.^1@.............. +5296 15.740005732 127.0.0.1:57433 127.0.0.1:57415 377355005 12 fffffffffe1d0b0000000000 ............ +5298 15.740456104 127.0.0.1:57433 127.0.0.1:57415 377355017 12 16000000d1f80a0000000000 ............ +5300 15.740616083 127.0.0.1:57433 127.0.0.1:57415 377355029 22 12000000bd911f000000000001000300000000000000 ...................... +5302 15.740900278 127.0.0.1:57415 127.0.0.1:57433 3333391949 12 ffffffffd1f80a0000000000 ............ +5309 15.842582226 127.0.0.1:57415 127.0.0.1:57433 3333391961 12 1a000000ff1d0b0000000000 ............ +5311 15.842872381 127.0.0.1:57415 127.0.0.1:57433 3333391973 26 16000000548f6340e25e3140010003000000bf911f0000000000 ....T.c@.^1@.............. +5313 15.843241930 127.0.0.1:57433 127.0.0.1:57415 377355051 12 ffffffffff1d0b0000000000 ............ +5315 15.843692064 127.0.0.1:57433 127.0.0.1:57415 377355063 12 16000000d2f80a0000000000 ............ +5317 15.843869448 127.0.0.1:57433 127.0.0.1:57415 377355075 22 12000000bf911f000000000001000300000000000000 ...................... +5319 15.844098568 127.0.0.1:57415 127.0.0.1:57433 3333391999 12 ffffffffd2f80a0000000000 ............ +5324 15.927471399 127.0.0.1:57433 127.0.0.1:57415 377355097 12 feffffff1643010027430100 .....C..'C.. +5331 15.945713520 127.0.0.1:57415 127.0.0.1:57433 3333392011 12 1a000000001e0b0000000000 ............ +5333 15.945970058 127.0.0.1:57415 127.0.0.1:57433 3333392023 26 16000000548f6340e25e3140010003000000c1911f0000000000 ....T.c@.^1@.............. +5335 15.946194410 127.0.0.1:57433 127.0.0.1:57415 377355109 12 ffffffff001e0b0000000000 ............ +5337 15.946730614 127.0.0.1:57433 127.0.0.1:57415 377355121 12 16000000d3f80a0000000000 ............ +5339 15.946893215 127.0.0.1:57433 127.0.0.1:57415 377355133 22 12000000c1911f000000000001000300000000000000 ...................... +5341 15.947241783 127.0.0.1:57415 127.0.0.1:57433 3333392049 12 ffffffffd3f80a0000000000 ............ +5346 16.000707388 127.0.0.1:57415 127.0.0.1:57433 3333392061 12 22000000011e0b0000000000 "........... +5348 16.001050949 127.0.0.1:57415 127.0.0.1:57433 3333392073 34 1e0000001c2118d0c46f33bb010003000000cb110200000000009cdd23c39d01 .....!...o3.................#..... +5350 16.001245022 127.0.0.1:57415 127.0.0.1:57433 3333392107 12 43000000021e0b0000000000 C........... +5352 16.001352072 127.0.0.1:57415 127.0.0.1:57433 3333392119 67 3f000000980433cb0cb47c380100030000000100000000cb110200000000003d ?.....3...|8...................=B.....&......... +5354 16.001543999 127.0.0.1:57433 127.0.0.1:57415 377355155 12 ffffffff011e0b0000000000 ............ +5356 16.001829386 127.0.0.1:57433 127.0.0.1:57415 377355167 12 ffffffff021e0b0000000000 ............ +5359 16.002938509 127.0.0.1:57433 127.0.0.1:57415 377355179 12 34000000d4f80a0000000000 4........... +5361 16.003118277 127.0.0.1:57433 127.0.0.1:57415 377355191 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................(.. +5363 16.003409624 127.0.0.1:57415 127.0.0.1:57433 3333392186 12 ffffffffd4f80a0000000000 ............ +5365 16.004698992 127.0.0.1:57415 127.0.0.1:57433 3333392198 12 1e000000031e0b0000000000 ............ +5367 16.005148649 127.0.0.1:57415 127.0.0.1:57433 3333392210 30 1a00000055ceff62b21b3a50010003000000c3911f000000000000000000 ....U..b..:P.................. +5369 16.005593300 127.0.0.1:57433 127.0.0.1:57415 377355243 12 ffffffff031e0b0000000000 ............ +5371 16.006669998 127.0.0.1:57433 127.0.0.1:57415 377355255 12 1a000000d5f80a0000000000 ............ +5373 16.006857872 127.0.0.1:57433 127.0.0.1:57415 377355267 26 16000000c3911f00000000000100030000000000000000000000 .......................... +5375 16.007102251 127.0.0.1:57415 127.0.0.1:57433 3333392240 12 ffffffffd5f80a0000000000 ............ +5381 16.048538685 127.0.0.1:57415 127.0.0.1:57433 3333392252 12 1a000000041e0b0000000000 ............ +5383 16.048721075 127.0.0.1:57415 127.0.0.1:57433 3333392264 26 16000000548f6340e25e3140010003000000c5911f0000000000 ....T.c@.^1@.............. +5385 16.048999071 127.0.0.1:57433 127.0.0.1:57415 377355293 12 ffffffff041e0b0000000000 ............ +5387 16.049497604 127.0.0.1:57433 127.0.0.1:57415 377355305 12 16000000d6f80a0000000000 ............ +5389 16.049689293 127.0.0.1:57433 127.0.0.1:57415 377355317 22 12000000c5911f000000000001000300000000000000 ...................... +5391 16.050079823 127.0.0.1:57415 127.0.0.1:57433 3333392290 12 ffffffffd6f80a0000000000 ............ +5395 16.059050560 127.0.0.1:57415 127.0.0.1:57433 3333392302 12 feffffff2843010016430100 ....(C...C.. +5399 16.151360989 127.0.0.1:57415 127.0.0.1:57433 3333392314 12 1a000000051e0b0000000000 ............ +5401 16.151729584 127.0.0.1:57415 127.0.0.1:57433 3333392326 26 16000000548f6340e25e3140010003000000c7911f0000000000 ....T.c@.^1@.............. +5403 16.152112007 127.0.0.1:57433 127.0.0.1:57415 377355339 12 ffffffff051e0b0000000000 ............ +5405 16.152649879 127.0.0.1:57433 127.0.0.1:57415 377355351 12 16000000d7f80a0000000000 ............ +5407 16.152796268 127.0.0.1:57433 127.0.0.1:57415 377355363 22 12000000c7911f000000000001000300000000000000 ...................... +5409 16.153022051 127.0.0.1:57415 127.0.0.1:57433 3333392352 12 ffffffffd7f80a0000000000 ............ +5417 16.254233599 127.0.0.1:57415 127.0.0.1:57433 3333392364 12 1a000000061e0b0000000000 ............ +5419 16.254429579 127.0.0.1:57415 127.0.0.1:57433 3333392376 26 16000000548f6340e25e3140010003000000c9911f0000000000 ....T.c@.^1@.............. +5421 16.254817724 127.0.0.1:57433 127.0.0.1:57415 377355385 12 ffffffff061e0b0000000000 ............ +5423 16.255400658 127.0.0.1:57433 127.0.0.1:57415 377355397 12 16000000d8f80a0000000000 ............ +5425 16.255611420 127.0.0.1:57433 127.0.0.1:57415 377355409 22 12000000c9911f000000000001000300000000000000 ...................... +5427 16.255830050 127.0.0.1:57415 127.0.0.1:57433 3333392402 12 ffffffffd8f80a0000000000 ............ +5432 16.306725025 127.0.0.1:57415 127.0.0.1:57433 3333392414 12 22000000071e0b0000000000 "........... +5434 16.306969881 127.0.0.1:57415 127.0.0.1:57433 3333392426 34 1e0000001c2118d0c46f33bb010003000000cc11020000000000cdde23c39d01 .....!...o3.................#..... +5436 16.307139158 127.0.0.1:57415 127.0.0.1:57433 3333392460 12 43000000081e0b0000000000 C........... +5438 16.307228327 127.0.0.1:57415 127.0.0.1:57433 3333392472 67 3f000000980433cb0cb47c380100030000000100000000cc110200000000003d ?.....3...|8...................=B.....&......... +5440 16.307391167 127.0.0.1:57433 127.0.0.1:57415 377355431 12 ffffffff071e0b0000000000 ............ +5442 16.307618380 127.0.0.1:57433 127.0.0.1:57415 377355443 12 ffffffff081e0b0000000000 ............ +5444 16.308366776 127.0.0.1:57433 127.0.0.1:57415 377355455 12 34000000d9f80a0000000000 4........... +5446 16.308549404 127.0.0.1:57433 127.0.0.1:57415 377355467 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +5448 16.309003115 127.0.0.1:57415 127.0.0.1:57433 3333392539 12 ffffffffd9f80a0000000000 ............ +5450 16.310035467 127.0.0.1:57415 127.0.0.1:57433 3333392551 12 1e000000091e0b0000000000 ............ +5452 16.310234785 127.0.0.1:57415 127.0.0.1:57433 3333392563 30 1a00000055ceff62b21b3a50010003000000cb911f000000000000000000 ....U..b..:P.................. +5454 16.310537100 127.0.0.1:57433 127.0.0.1:57415 377355519 12 ffffffff091e0b0000000000 ............ +5456 16.311305761 127.0.0.1:57433 127.0.0.1:57415 377355531 12 1a000000daf80a0000000000 ............ +5458 16.311452627 127.0.0.1:57433 127.0.0.1:57415 377355543 26 16000000cb911f00000000000100030000000000000000000000 .......................... +5460 16.311853170 127.0.0.1:57415 127.0.0.1:57433 3333392593 12 ffffffffdaf80a0000000000 ............ +5465 16.357032061 127.0.0.1:57415 127.0.0.1:57433 3333392605 12 1a0000000a1e0b0000000000 ............ +5467 16.357223272 127.0.0.1:57415 127.0.0.1:57433 3333392617 26 16000000548f6340e25e3140010003000000cd911f0000000000 ....T.c@.^1@.............. +5469 16.357591629 127.0.0.1:57433 127.0.0.1:57415 377355569 12 ffffffff0a1e0b0000000000 ............ +5471 16.358027697 127.0.0.1:57433 127.0.0.1:57415 377355581 12 16000000dbf80a0000000000 ............ +5473 16.358199358 127.0.0.1:57433 127.0.0.1:57415 377355593 22 12000000cd911f000000000001000300000000000000 ...................... +5475 16.358739138 127.0.0.1:57415 127.0.0.1:57433 3333392643 12 ffffffffdbf80a0000000000 ............ +5478 16.428098202 127.0.0.1:57433 127.0.0.1:57415 377355615 12 feffffff1743010028430100 .....C..(C.. +5486 16.461953878 127.0.0.1:57415 127.0.0.1:57433 3333392655 12 1a0000000b1e0b0000000000 ............ +5488 16.462203503 127.0.0.1:57415 127.0.0.1:57433 3333392667 26 16000000548f6340e25e3140010003000000cf911f0000000000 ....T.c@.^1@.............. +5490 16.462657213 127.0.0.1:57433 127.0.0.1:57415 377355627 12 ffffffff0b1e0b0000000000 ............ +5492 16.463205099 127.0.0.1:57433 127.0.0.1:57415 377355639 12 16000000dcf80a0000000000 ............ +5494 16.463444233 127.0.0.1:57433 127.0.0.1:57415 377355651 22 12000000cf911f000000000001000300000000000000 ...................... +5496 16.463744402 127.0.0.1:57415 127.0.0.1:57433 3333392693 12 ffffffffdcf80a0000000000 ............ +5505 16.559779406 127.0.0.1:57415 127.0.0.1:57433 3333392705 12 feffffff2943010017430100 ....)C...C.. +5507 16.565071821 127.0.0.1:57415 127.0.0.1:57433 3333392717 12 1a0000000c1e0b0000000000 ............ +5509 16.565226316 127.0.0.1:57415 127.0.0.1:57433 3333392729 26 16000000548f6340e25e3140010003000000d1911f0000000000 ....T.c@.^1@.............. +5511 16.565647364 127.0.0.1:57433 127.0.0.1:57415 377355673 12 ffffffff0c1e0b0000000000 ............ +5513 16.566166639 127.0.0.1:57433 127.0.0.1:57415 377355685 12 16000000ddf80a0000000000 ............ +5515 16.566336155 127.0.0.1:57433 127.0.0.1:57415 377355697 22 12000000d1911f000000000001000300000000000000 ...................... +5518 16.566733122 127.0.0.1:57415 127.0.0.1:57433 3333392755 12 ffffffffddf80a0000000000 ............ +5520 16.611653805 127.0.0.1:57415 127.0.0.1:57433 3333392767 12 650000000d1e0b0000000000 e........... +5522 16.611839533 127.0.0.1:57415 127.0.0.1:57433 3333392779 101 1e0000001c2118d0c46f33bb010003000000cd11020000000000fedf23c39d01 .....!...o3.................#.....?.....3...|8.. +5524 16.612127304 127.0.0.1:57433 127.0.0.1:57415 377355719 12 ffffffff0d1e0b0000000000 ............ +5526 16.613132954 127.0.0.1:57433 127.0.0.1:57415 377355731 12 34000000def80a0000000000 4........... +5528 16.613297701 127.0.0.1:57433 127.0.0.1:57415 377355743 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............rI.. +5530 16.613601923 127.0.0.1:57415 127.0.0.1:57433 3333392880 12 ffffffffdef80a0000000000 ............ +5532 16.614748478 127.0.0.1:57415 127.0.0.1:57433 3333392892 12 1e0000000e1e0b0000000000 ............ +5534 16.614950895 127.0.0.1:57415 127.0.0.1:57433 3333392904 30 1a00000055ceff62b21b3a50010003000000d3911f000000000000000000 ....U..b..:P.................. +5536 16.615269423 127.0.0.1:57433 127.0.0.1:57415 377355795 12 ffffffff0e1e0b0000000000 ............ +5538 16.615721703 127.0.0.1:57433 127.0.0.1:57415 377355807 12 1a000000dff80a0000000000 ............ +5540 16.615903139 127.0.0.1:57433 127.0.0.1:57415 377355819 26 16000000d3911f00000000000100030000000000000000000000 .......................... +5542 16.616153479 127.0.0.1:57415 127.0.0.1:57433 3333392934 12 ffffffffdff80a0000000000 ............ +5549 16.669082642 127.0.0.1:57415 127.0.0.1:57433 3333392946 12 1a0000000f1e0b0000000000 ............ +5552 16.669327259 127.0.0.1:57415 127.0.0.1:57433 3333392958 26 16000000548f6340e25e3140010003000000d5911f0000000000 ....T.c@.^1@.............. +5554 16.669670582 127.0.0.1:57433 127.0.0.1:57415 377355845 12 ffffffff0f1e0b0000000000 ............ +5556 16.670220852 127.0.0.1:57433 127.0.0.1:57415 377355857 12 16000000e0f80a0000000000 ............ +5558 16.670382500 127.0.0.1:57433 127.0.0.1:57415 377355869 22 12000000d5911f000000000001000300000000000000 ...................... +5560 16.670786858 127.0.0.1:57415 127.0.0.1:57433 3333392984 12 ffffffffe0f80a0000000000 ............ +5571 16.772159100 127.0.0.1:57415 127.0.0.1:57433 3333392996 12 1a000000101e0b0000000000 ............ +5573 16.772392035 127.0.0.1:57415 127.0.0.1:57433 3333393008 26 16000000548f6340e25e3140010003000000d7911f0000000000 ....T.c@.^1@.............. +5575 16.772727489 127.0.0.1:57433 127.0.0.1:57415 377355891 12 ffffffff101e0b0000000000 ............ +5579 16.773326874 127.0.0.1:57433 127.0.0.1:57415 377355903 12 16000000e1f80a0000000000 ............ +5581 16.773554087 127.0.0.1:57433 127.0.0.1:57415 377355915 22 12000000d7911f000000000001000300000000000000 ...................... +5583 16.773782253 127.0.0.1:57415 127.0.0.1:57433 3333393034 12 ffffffffe1f80a0000000000 ............ +5589 16.875245333 127.0.0.1:57415 127.0.0.1:57433 3333393046 12 1a000000111e0b0000000000 ............ +5591 16.875422239 127.0.0.1:57415 127.0.0.1:57433 3333393058 26 16000000548f6340e25e3140010003000000d9911f0000000000 ....T.c@.^1@.............. +5593 16.875776052 127.0.0.1:57433 127.0.0.1:57415 377355937 12 ffffffff111e0b0000000000 ............ +5595 16.876739264 127.0.0.1:57433 127.0.0.1:57415 377355949 12 16000000e2f80a0000000000 ............ +5597 16.876899004 127.0.0.1:57433 127.0.0.1:57415 377355961 22 12000000d9911f000000000001000300000000000000 ...................... +5599 16.877181530 127.0.0.1:57415 127.0.0.1:57433 3333393084 12 ffffffffe2f80a0000000000 ............ +5632 16.916715622 127.0.0.1:57415 127.0.0.1:57433 3333393096 12 65000000121e0b0000000000 e........... +5634 16.916919947 127.0.0.1:57415 127.0.0.1:57433 3333393108 101 1e0000001c2118d0c46f33bb010003000000ce110200000000002fe123c39d01 .....!...o3.............../.#.....?.....3...|8.. +5636 16.917359591 127.0.0.1:57433 127.0.0.1:57415 377355983 12 ffffffff121e0b0000000000 ............ +5638 16.918398380 127.0.0.1:57433 127.0.0.1:57415 377355995 12 34000000e3f80a0000000000 4........... +5640 16.918593884 127.0.0.1:57433 127.0.0.1:57415 377356007 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +5642 16.918893576 127.0.0.1:57415 127.0.0.1:57433 3333393209 12 ffffffffe3f80a0000000000 ............ +5644 16.919894934 127.0.0.1:57415 127.0.0.1:57433 3333393221 12 1e000000131e0b0000000000 ............ +5646 16.920058250 127.0.0.1:57415 127.0.0.1:57433 3333393233 30 1a00000055ceff62b21b3a50010003000000db911f000000000000000000 ....U..b..:P.................. +5648 16.920490265 127.0.0.1:57433 127.0.0.1:57415 377356059 12 ffffffff131e0b0000000000 ............ +5650 16.920762062 127.0.0.1:57433 127.0.0.1:57415 377356071 12 1a000000e4f80a0000000000 ............ +5652 16.920918226 127.0.0.1:57433 127.0.0.1:57415 377356083 26 16000000db911f00000000000100030000000000000000000000 .......................... +5654 16.921237469 127.0.0.1:57415 127.0.0.1:57433 3333393263 12 ffffffffe4f80a0000000000 ............ +5656 16.928912878 127.0.0.1:57433 127.0.0.1:57415 377356109 12 feffffff1843010029430100 .....C..)C.. +5664 16.979072571 127.0.0.1:57415 127.0.0.1:57433 3333393275 12 1a000000141e0b0000000000 ............ +5666 16.979260921 127.0.0.1:57415 127.0.0.1:57433 3333393287 26 16000000548f6340e25e3140010003000000dd911f0000000000 ....T.c@.^1@.............. +5668 16.979743719 127.0.0.1:57433 127.0.0.1:57415 377356121 12 ffffffff141e0b0000000000 ............ +5670 16.980128050 127.0.0.1:57433 127.0.0.1:57415 377356133 12 16000000e5f80a0000000000 ............ +5672 16.980302572 127.0.0.1:57433 127.0.0.1:57415 377356145 22 12000000dd911f000000000001000300000000000000 ...................... +5674 16.980710268 127.0.0.1:57415 127.0.0.1:57433 3333393313 12 ffffffffe5f80a0000000000 ............ +5683 17.061728716 127.0.0.1:57415 127.0.0.1:57433 3333393325 12 feffffff2a43010018430100 ....*C...C.. +5685 17.082173586 127.0.0.1:57415 127.0.0.1:57433 3333393337 12 1a000000151e0b0000000000 ............ +5687 17.082355738 127.0.0.1:57415 127.0.0.1:57433 3333393349 26 16000000548f6340e25e3140010003000000df911f0000000000 ....T.c@.^1@.............. +5689 17.082747221 127.0.0.1:57433 127.0.0.1:57415 377356167 12 ffffffff151e0b0000000000 ............ +5691 17.083376169 127.0.0.1:57433 127.0.0.1:57415 377356179 12 16000000e6f80a0000000000 ............ +5693 17.083574772 127.0.0.1:57433 127.0.0.1:57415 377356191 22 12000000df911f000000000001000300000000000000 ...................... +5695 17.083816528 127.0.0.1:57415 127.0.0.1:57433 3333393375 12 ffffffffe6f80a0000000000 ............ +5702 17.185266495 127.0.0.1:57415 127.0.0.1:57433 3333393387 12 1a000000161e0b0000000000 ............ +5704 17.185496330 127.0.0.1:57415 127.0.0.1:57433 3333393399 26 16000000548f6340e25e3140010003000000e1911f0000000000 ....T.c@.^1@.............. +5706 17.185782671 127.0.0.1:57433 127.0.0.1:57415 377356213 12 ffffffff161e0b0000000000 ............ +5708 17.186290503 127.0.0.1:57433 127.0.0.1:57415 377356225 12 16000000e7f80a0000000000 ............ +5710 17.186487436 127.0.0.1:57433 127.0.0.1:57415 377356237 22 12000000e1911f000000000001000300000000000000 ...................... +5712 17.186699390 127.0.0.1:57415 127.0.0.1:57433 3333393425 12 ffffffffe7f80a0000000000 ............ +5715 17.221566677 127.0.0.1:57415 127.0.0.1:57433 3333393437 12 65000000171e0b0000000000 e........... +5717 17.221741438 127.0.0.1:57415 127.0.0.1:57433 3333393449 101 1e0000001c2118d0c46f33bb010003000000cf1102000000000060e223c39d01 .....!...o3...............`.#.....?.....3...|8.. +5719 17.222062349 127.0.0.1:57433 127.0.0.1:57415 377356259 12 ffffffff171e0b0000000000 ............ +5721 17.223239183 127.0.0.1:57433 127.0.0.1:57415 377356271 12 34000000e8f80a0000000000 4........... +5723 17.223390102 127.0.0.1:57433 127.0.0.1:57415 377356283 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................aN. +5725 17.223755598 127.0.0.1:57415 127.0.0.1:57433 3333393550 12 ffffffffe8f80a0000000000 ............ +5727 17.224619389 127.0.0.1:57415 127.0.0.1:57433 3333393562 12 1e000000181e0b0000000000 ............ +5729 17.224766493 127.0.0.1:57415 127.0.0.1:57433 3333393574 30 1a00000055ceff62b21b3a50010003000000e3911f000000000000000000 ....U..b..:P.................. +5731 17.225075006 127.0.0.1:57433 127.0.0.1:57415 377356335 12 ffffffff181e0b0000000000 ............ +5733 17.225476980 127.0.0.1:57433 127.0.0.1:57415 377356347 12 1a000000e9f80a0000000000 ............ +5735 17.225619078 127.0.0.1:57433 127.0.0.1:57415 377356359 26 16000000e3911f00000000000100030000000000000000000000 .......................... +5737 17.226076841 127.0.0.1:57415 127.0.0.1:57433 3333393604 12 ffffffffe9f80a0000000000 ............ +5741 17.289277077 127.0.0.1:57415 127.0.0.1:57433 3333393616 12 1a000000191e0b0000000000 ............ +5743 17.289529324 127.0.0.1:57415 127.0.0.1:57433 3333393628 26 16000000548f6340e25e3140010003000000e5911f0000000000 ....T.c@.^1@.............. +5745 17.290086746 127.0.0.1:57433 127.0.0.1:57415 377356385 12 ffffffff191e0b0000000000 ............ +5747 17.290535212 127.0.0.1:57433 127.0.0.1:57415 377356397 12 16000000eaf80a0000000000 ............ +5749 17.290720463 127.0.0.1:57433 127.0.0.1:57415 377356409 22 12000000e5911f000000000001000300000000000000 ...................... +5751 17.291115999 127.0.0.1:57415 127.0.0.1:57433 3333393654 12 ffffffffeaf80a0000000000 ............ +5756 17.392483711 127.0.0.1:57415 127.0.0.1:57433 3333393666 12 1a0000001a1e0b0000000000 ............ +5758 17.392738819 127.0.0.1:57415 127.0.0.1:57433 3333393678 26 16000000548f6340e25e3140010003000000e7911f0000000000 ....T.c@.^1@.............. +5760 17.393193245 127.0.0.1:57433 127.0.0.1:57415 377356431 12 ffffffff1a1e0b0000000000 ............ +5762 17.393619299 127.0.0.1:57433 127.0.0.1:57415 377356443 12 16000000ebf80a0000000000 ............ +5764 17.393801689 127.0.0.1:57433 127.0.0.1:57415 377356455 22 12000000e7911f000000000001000300000000000000 ...................... +5766 17.394016266 127.0.0.1:57415 127.0.0.1:57433 3333393704 12 ffffffffebf80a0000000000 ............ +5778 17.430327177 127.0.0.1:57433 127.0.0.1:57415 377356477 12 feffffff194301002a430100 .....C..*C.. +5783 17.496520758 127.0.0.1:57415 127.0.0.1:57433 3333393716 12 1a0000001b1e0b0000000000 ............ +5785 17.496770382 127.0.0.1:57415 127.0.0.1:57433 3333393728 26 16000000548f6340e25e3140010003000000e9911f0000000000 ....T.c@.^1@.............. +5787 17.497165203 127.0.0.1:57433 127.0.0.1:57415 377356489 12 ffffffff1b1e0b0000000000 ............ +5789 17.497818470 127.0.0.1:57433 127.0.0.1:57415 377356501 12 16000000ecf80a0000000000 ............ +5791 17.497987747 127.0.0.1:57433 127.0.0.1:57415 377356513 22 12000000e9911f000000000001000300000000000000 ...................... +5793 17.498366117 127.0.0.1:57415 127.0.0.1:57433 3333393754 12 ffffffffecf80a0000000000 ............ +5821 17.526502371 127.0.0.1:57415 127.0.0.1:57433 3333393766 12 650000001c1e0b0000000000 e........... +5824 17.526713610 127.0.0.1:57415 127.0.0.1:57433 3333393778 101 1e0000001c2118d0c46f33bb010003000000d01102000000000091e323c39d01 .....!...o3.................#.....?.....3...|8.. +5827 17.527014494 127.0.0.1:57433 127.0.0.1:57415 377356535 12 ffffffff1c1e0b0000000000 ............ +5835 17.528073788 127.0.0.1:57433 127.0.0.1:57415 377356547 12 34000000edf80a0000000000 4........... +5837 17.528379202 127.0.0.1:57433 127.0.0.1:57415 377356559 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............M.|. +5839 17.528796673 127.0.0.1:57415 127.0.0.1:57433 3333393879 12 ffffffffedf80a0000000000 ............ +5841 17.529727221 127.0.0.1:57415 127.0.0.1:57433 3333393891 12 1e0000001d1e0b0000000000 ............ +5843 17.529881239 127.0.0.1:57415 127.0.0.1:57433 3333393903 30 1a00000055ceff62b21b3a50010003000000eb911f000000000000000000 ....U..b..:P.................. +5845 17.530103683 127.0.0.1:57433 127.0.0.1:57415 377356611 12 ffffffff1d1e0b0000000000 ............ +5847 17.530596495 127.0.0.1:57433 127.0.0.1:57415 377356623 12 1a000000eef80a0000000000 ............ +5849 17.530753851 127.0.0.1:57433 127.0.0.1:57415 377356635 26 16000000eb911f00000000000100030000000000000000000000 .......................... +5851 17.531243086 127.0.0.1:57415 127.0.0.1:57433 3333393933 12 ffffffffeef80a0000000000 ............ +5856 17.564082861 127.0.0.1:57415 127.0.0.1:57433 3333393945 12 feffffff2b43010019430100 ....+C...C.. +5858 17.600363970 127.0.0.1:57415 127.0.0.1:57433 3333393957 12 1a0000001e1e0b0000000000 ............ +5860 17.600548983 127.0.0.1:57415 127.0.0.1:57433 3333393969 26 16000000548f6340e25e3140010003000000ed911f0000000000 ....T.c@.^1@.............. +5862 17.600990772 127.0.0.1:57433 127.0.0.1:57415 377356661 12 ffffffff1e1e0b0000000000 ............ +5864 17.601536274 127.0.0.1:57433 127.0.0.1:57415 377356673 12 16000000eff80a0000000000 ............ +5866 17.601775646 127.0.0.1:57433 127.0.0.1:57415 377356685 22 12000000ed911f000000000001000300000000000000 ...................... +5868 17.602120399 127.0.0.1:57415 127.0.0.1:57433 3333393995 12 ffffffffeff80a0000000000 ............ +5875 17.703420639 127.0.0.1:57415 127.0.0.1:57433 3333394007 12 1a0000001f1e0b0000000000 ............ +5877 17.703713655 127.0.0.1:57415 127.0.0.1:57433 3333394019 26 16000000548f6340e25e3140010003000000ef911f0000000000 ....T.c@.^1@.............. +5879 17.704203367 127.0.0.1:57433 127.0.0.1:57415 377356707 12 ffffffff1f1e0b0000000000 ............ +5881 17.704748631 127.0.0.1:57433 127.0.0.1:57415 377356719 12 16000000f0f80a0000000000 ............ +5883 17.705065250 127.0.0.1:57433 127.0.0.1:57415 377356731 22 12000000ef911f000000000001000300000000000000 ...................... +5885 17.705304861 127.0.0.1:57415 127.0.0.1:57433 3333394045 12 fffffffff0f80a0000000000 ............ +5890 17.807308197 127.0.0.1:57415 127.0.0.1:57433 3333394057 12 1a000000201e0b0000000000 .... ....... +5892 17.807731152 127.0.0.1:57415 127.0.0.1:57433 3333394069 26 16000000548f6340e25e3140010003000000f1911f0000000000 ....T.c@.^1@.............. +5894 17.808109522 127.0.0.1:57433 127.0.0.1:57415 377356753 12 ffffffff201e0b0000000000 .... ....... +5896 17.808721066 127.0.0.1:57433 127.0.0.1:57415 377356765 12 16000000f1f80a0000000000 ............ +5898 17.808968067 127.0.0.1:57433 127.0.0.1:57415 377356777 22 12000000f1911f000000000001000300000000000000 ...................... +5900 17.809232235 127.0.0.1:57415 127.0.0.1:57433 3333394095 12 fffffffff1f80a0000000000 ............ +5904 17.830642700 127.0.0.1:57415 127.0.0.1:57433 3333394107 12 22000000211e0b0000000000 "...!....... +5906 17.830846071 127.0.0.1:57415 127.0.0.1:57433 3333394119 34 1e0000001c2118d0c46f33bb010003000000d111020000000000c1e423c39d01 .....!...o3.................#..... +5908 17.831014395 127.0.0.1:57415 127.0.0.1:57433 3333394153 12 43000000221e0b0000000000 C..."....... +5910 17.831110001 127.0.0.1:57433 127.0.0.1:57415 377356799 12 ffffffff211e0b0000000000 ....!....... +5911 17.831123590 127.0.0.1:57415 127.0.0.1:57433 3333394165 67 3f000000980433cb0cb47c380100030000000100000000d1110200000000003d ?.....3...|8...................=B.....&......... +5914 17.831318378 127.0.0.1:57433 127.0.0.1:57415 377356811 12 ffffffff221e0b0000000000 ...."....... +5916 17.841795683 127.0.0.1:57433 127.0.0.1:57415 377356823 12 34000000f2f80a0000000000 4........... +5918 17.841956854 127.0.0.1:57433 127.0.0.1:57415 377356835 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +5920 17.842242479 127.0.0.1:57415 127.0.0.1:57433 3333394232 12 fffffffff2f80a0000000000 ............ +5922 17.843482256 127.0.0.1:57415 127.0.0.1:57433 3333394244 12 1e000000231e0b0000000000 ....#....... +5924 17.843721628 127.0.0.1:57415 127.0.0.1:57433 3333394256 30 1a00000055ceff62b21b3a50010003000000f3911f000000000000000000 ....U..b..:P.................. +5926 17.844493628 127.0.0.1:57433 127.0.0.1:57415 377356887 12 ffffffff231e0b0000000000 ....#....... +5928 17.845130682 127.0.0.1:57433 127.0.0.1:57415 377356899 12 1a000000f3f80a0000000000 ............ +5930 17.845338345 127.0.0.1:57433 127.0.0.1:57415 377356911 26 16000000f3911f00000000000100030000000000000000000000 .......................... +5932 17.845689774 127.0.0.1:57415 127.0.0.1:57433 3333394286 12 fffffffff3f80a0000000000 ............ +5934 17.910867214 127.0.0.1:57415 127.0.0.1:57433 3333394298 12 1a000000241e0b0000000000 ....$....... +5936 17.911179066 127.0.0.1:57415 127.0.0.1:57433 3333394310 26 16000000548f6340e25e3140010003000000f5911f0000000000 ....T.c@.^1@.............. +5938 17.911473751 127.0.0.1:57433 127.0.0.1:57415 377356937 12 ffffffff241e0b0000000000 ....$....... +5940 17.911967516 127.0.0.1:57433 127.0.0.1:57415 377356949 12 16000000f4f80a0000000000 ............ +5942 17.912132502 127.0.0.1:57433 127.0.0.1:57415 377356961 22 12000000f5911f000000000001000300000000000000 ...................... +5944 17.912413597 127.0.0.1:57415 127.0.0.1:57433 3333394336 12 fffffffff4f80a0000000000 ............ +5946 17.930653811 127.0.0.1:57433 127.0.0.1:57415 377356983 12 feffffff1a4301002b430100 .....C..+C.. +5956 18.014064074 127.0.0.1:57415 127.0.0.1:57433 3333394348 12 1a000000251e0b0000000000 ....%....... +5958 18.014821529 127.0.0.1:57415 127.0.0.1:57433 3333394360 26 16000000548f6340e25e3140010003000000f7911f0000000000 ....T.c@.^1@.............. +5960 18.015189648 127.0.0.1:57433 127.0.0.1:57415 377356995 12 ffffffff251e0b0000000000 ....%....... +5962 18.015754938 127.0.0.1:57433 127.0.0.1:57415 377357007 12 16000000f5f80a0000000000 ............ +5964 18.015903950 127.0.0.1:57433 127.0.0.1:57415 377357019 22 12000000f7911f000000000001000300000000000000 ...................... +5966 18.016236544 127.0.0.1:57415 127.0.0.1:57433 3333394386 12 fffffffff5f80a0000000000 ............ +5972 18.064654589 127.0.0.1:57415 127.0.0.1:57433 3333394398 12 feffffff2c4301001a430100 ....,C...C.. +5974 18.117640495 127.0.0.1:57415 127.0.0.1:57433 3333394410 12 1a000000261e0b0000000000 ....&....... +5976 18.117877007 127.0.0.1:57415 127.0.0.1:57433 3333394422 26 16000000548f6340e25e3140010003000000f9911f0000000000 ....T.c@.^1@.............. +5978 18.118335485 127.0.0.1:57433 127.0.0.1:57415 377357041 12 ffffffff261e0b0000000000 ....&....... +5980 18.118958712 127.0.0.1:57433 127.0.0.1:57415 377357053 12 16000000f6f80a0000000000 ............ +5982 18.119390488 127.0.0.1:57433 127.0.0.1:57415 377357065 22 12000000f9911f000000000001000300000000000000 ...................... +5984 18.119801044 127.0.0.1:57415 127.0.0.1:57433 3333394448 12 fffffffff6f80a0000000000 ............ +5986 18.145292521 127.0.0.1:57415 127.0.0.1:57433 3333394460 12 65000000271e0b0000000000 e...'....... +5988 18.145502090 127.0.0.1:57415 127.0.0.1:57433 3333394472 101 1e0000001c2118d0c46f33bb010003000000d211020000000000fce523c39d01 .....!...o3.................#.....?.....3...|8.. +5990 18.145807028 127.0.0.1:57433 127.0.0.1:57415 377357087 12 ffffffff271e0b0000000000 ....'....... +5992 18.146787167 127.0.0.1:57433 127.0.0.1:57415 377357099 12 34000000f7f80a0000000000 4........... +5994 18.146948814 127.0.0.1:57433 127.0.0.1:57415 377357111 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................N.. +5996 18.147235870 127.0.0.1:57415 127.0.0.1:57433 3333394573 12 fffffffff7f80a0000000000 ............ +5998 18.148252726 127.0.0.1:57415 127.0.0.1:57433 3333394585 12 1e000000281e0b0000000000 ....(....... +6000 18.148471355 127.0.0.1:57415 127.0.0.1:57433 3333394597 30 1a00000055ceff62b21b3a50010003000000fb911f000000000000000000 ....U..b..:P.................. +6002 18.148682117 127.0.0.1:57433 127.0.0.1:57415 377357163 12 ffffffff281e0b0000000000 ....(....... +6004 18.148933172 127.0.0.1:57433 127.0.0.1:57415 377357175 12 1a000000f8f80a0000000000 ............ +6006 18.149066925 127.0.0.1:57433 127.0.0.1:57415 377357187 26 16000000fb911f00000000000100030000000000000000000000 .......................... +6008 18.149512768 127.0.0.1:57415 127.0.0.1:57433 3333394627 12 fffffffff8f80a0000000000 ............ +6014 18.220921040 127.0.0.1:57415 127.0.0.1:57433 3333394639 12 1a000000291e0b0000000000 ....)....... +6016 18.221238375 127.0.0.1:57415 127.0.0.1:57433 3333394651 26 16000000548f6340e25e3140010003000000fd911f0000000000 ....T.c@.^1@.............. +6018 18.221574068 127.0.0.1:57433 127.0.0.1:57415 377357213 12 ffffffff291e0b0000000000 ....)....... +6020 18.222103596 127.0.0.1:57433 127.0.0.1:57415 377357225 12 16000000f9f80a0000000000 ............ +6022 18.222349882 127.0.0.1:57433 127.0.0.1:57415 377357237 22 12000000fd911f000000000001000300000000000000 ...................... +6024 18.222641230 127.0.0.1:57415 127.0.0.1:57433 3333394677 12 fffffffff9f80a0000000000 ............ +6028 18.323996067 127.0.0.1:57415 127.0.0.1:57433 3333394689 12 1a0000002a1e0b0000000000 ....*....... +6030 18.324214458 127.0.0.1:57415 127.0.0.1:57433 3333394701 26 16000000548f6340e25e3140010003000000ff911f0000000000 ....T.c@.^1@.............. +6032 18.324696302 127.0.0.1:57433 127.0.0.1:57415 377357259 12 ffffffff2a1e0b0000000000 ....*....... +6034 18.325109482 127.0.0.1:57433 127.0.0.1:57415 377357271 12 16000000faf80a0000000000 ............ +6036 18.325304747 127.0.0.1:57433 127.0.0.1:57415 377357283 22 12000000ff911f000000000001000300000000000000 ...................... +6038 18.325634480 127.0.0.1:57415 127.0.0.1:57433 3333394727 12 fffffffffaf80a0000000000 ............ +6046 18.427143097 127.0.0.1:57415 127.0.0.1:57433 3333394739 12 1a0000002b1e0b0000000000 ....+....... +6048 18.427516460 127.0.0.1:57415 127.0.0.1:57433 3333394751 26 16000000548f6340e25e314001000300000001921f0000000000 ....T.c@.^1@.............. +6050 18.427850723 127.0.0.1:57433 127.0.0.1:57415 377357305 12 ffffffff2b1e0b0000000000 ....+....... +6052 18.428404331 127.0.0.1:57433 127.0.0.1:57415 377357317 12 16000000fbf80a0000000000 ............ +6054 18.428566694 127.0.0.1:57433 127.0.0.1:57415 377357329 22 1200000001921f000000000001000300000000000000 ...................... +6056 18.428849220 127.0.0.1:57415 127.0.0.1:57433 3333394777 12 fffffffffbf80a0000000000 ............ +6059 18.430925369 127.0.0.1:57433 127.0.0.1:57415 377357351 12 feffffff1b4301002c430100 .....C..,C.. +6066 18.449328661 127.0.0.1:57415 127.0.0.1:57433 3333394789 12 220000002c1e0b0000000000 "...,....... +6068 18.449651718 127.0.0.1:57415 127.0.0.1:57433 3333394801 34 1e0000001c2118d0c46f33bb010003000000d3110200000000002ce723c39d01 .....!...o3...............,.#..... +6070 18.449826717 127.0.0.1:57415 127.0.0.1:57433 3333394835 12 430000002d1e0b0000000000 C...-....... +6072 18.449940681 127.0.0.1:57415 127.0.0.1:57433 3333394847 67 3f000000980433cb0cb47c380100030000000100000000d3110200000000003d ?.....3...|8...................=B.....&......... +6074 18.450038195 127.0.0.1:57433 127.0.0.1:57415 377357363 12 ffffffff2c1e0b0000000000 ....,....... +6076 18.450252295 127.0.0.1:57433 127.0.0.1:57415 377357375 12 ffffffff2d1e0b0000000000 ....-....... +6078 18.451260567 127.0.0.1:57433 127.0.0.1:57415 377357387 12 34000000fcf80a0000000000 4........... +6080 18.451425552 127.0.0.1:57433 127.0.0.1:57415 377357399 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............]... +6082 18.451728821 127.0.0.1:57415 127.0.0.1:57433 3333394914 12 fffffffffcf80a0000000000 ............ +6084 18.452660322 127.0.0.1:57415 127.0.0.1:57433 3333394926 12 1e0000002e1e0b0000000000 ............ +6086 18.452813148 127.0.0.1:57415 127.0.0.1:57433 3333394938 30 1a00000055ceff62b21b3a5001000300000003921f000000000000000000 ....U..b..:P.................. +6088 18.453194380 127.0.0.1:57433 127.0.0.1:57415 377357451 12 ffffffff2e1e0b0000000000 ............ +6090 18.453474998 127.0.0.1:57433 127.0.0.1:57415 377357463 12 1a000000fdf80a0000000000 ............ +6092 18.453624487 127.0.0.1:57433 127.0.0.1:57415 377357475 26 1600000003921f00000000000100030000000000000000000000 .......................... +6094 18.453876734 127.0.0.1:57415 127.0.0.1:57433 3333394968 12 fffffffffdf80a0000000000 ............ +6100 18.530998468 127.0.0.1:57415 127.0.0.1:57433 3333394980 12 1a0000002f1e0b0000000000 ..../....... +6102 18.531174898 127.0.0.1:57415 127.0.0.1:57433 3333394992 26 16000000548f6340e25e314001000300000005921f0000000000 ....T.c@.^1@.............. +6104 18.531584501 127.0.0.1:57433 127.0.0.1:57415 377357501 12 ffffffff2f1e0b0000000000 ..../....... +6106 18.532009602 127.0.0.1:57433 127.0.0.1:57415 377357513 12 16000000fef80a0000000000 ............ +6108 18.532205105 127.0.0.1:57433 127.0.0.1:57415 377357525 22 1200000005921f000000000001000300000000000000 ...................... +6110 18.532441378 127.0.0.1:57415 127.0.0.1:57433 3333395018 12 fffffffffef80a0000000000 ............ +6114 18.565657377 127.0.0.1:57415 127.0.0.1:57433 3333395030 12 feffffff2d4301001b430100 ....-C...C.. +6127 18.633846998 127.0.0.1:57415 127.0.0.1:57433 3333395042 12 1a000000301e0b0000000000 ....0....... +6129 18.634023905 127.0.0.1:57415 127.0.0.1:57433 3333395054 26 16000000548f6340e25e314001000300000007921f0000000000 ....T.c@.^1@.............. +6131 18.634521246 127.0.0.1:57433 127.0.0.1:57415 377357547 12 ffffffff301e0b0000000000 ....0....... +6133 18.635137320 127.0.0.1:57433 127.0.0.1:57415 377357559 12 16000000fff80a0000000000 ............ +6135 18.635315895 127.0.0.1:57433 127.0.0.1:57415 377357571 22 1200000007921f000000000001000300000000000000 ...................... +6137 18.635603428 127.0.0.1:57415 127.0.0.1:57433 3333395080 12 fffffffffff80a0000000000 ............ +6151 18.736855268 127.0.0.1:57415 127.0.0.1:57433 3333395092 12 1a000000311e0b0000000000 ....1....... +6153 18.737065554 127.0.0.1:57415 127.0.0.1:57433 3333395104 26 16000000548f6340e25e314001000300000009921f0000000000 ....T.c@.^1@.............. +6155 18.737627268 127.0.0.1:57433 127.0.0.1:57415 377357593 12 ffffffff311e0b0000000000 ....1....... +6157 18.738102674 127.0.0.1:57433 127.0.0.1:57415 377357605 12 1600000000f90a0000000000 ............ +6159 18.738301754 127.0.0.1:57433 127.0.0.1:57415 377357617 22 1200000009921f000000000001000300000000000000 ...................... +6161 18.738596678 127.0.0.1:57415 127.0.0.1:57433 3333395130 12 ffffffff00f90a0000000000 ............ +6163 18.755993605 127.0.0.1:57415 127.0.0.1:57433 3333395142 12 22000000321e0b0000000000 "...2....... +6165 18.756160736 127.0.0.1:57415 127.0.0.1:57433 3333395154 34 1e0000001c2118d0c46f33bb010003000000d4110200000000005fe823c39d01 .....!...o3..............._.#..... +6167 18.756324530 127.0.0.1:57415 127.0.0.1:57433 3333395188 12 43000000331e0b0000000000 C...3....... +6169 18.756417274 127.0.0.1:57415 127.0.0.1:57433 3333395200 67 3f000000980433cb0cb47c380100030000000100000000d4110200000000003d ?.....3...|8...................=B.....&......... +6170 18.756460667 127.0.0.1:57433 127.0.0.1:57415 377357639 12 ffffffff321e0b0000000000 ....2....... +6173 18.756620646 127.0.0.1:57433 127.0.0.1:57415 377357651 12 ffffffff331e0b0000000000 ....3....... +6175 18.758219004 127.0.0.1:57433 127.0.0.1:57415 377357663 12 3400000001f90a0000000000 4........... +6177 18.758367300 127.0.0.1:57433 127.0.0.1:57415 377357675 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................8. +6179 18.758589506 127.0.0.1:57415 127.0.0.1:57433 3333395267 12 ffffffff01f90a0000000000 ............ +6181 18.760039568 127.0.0.1:57415 127.0.0.1:57433 3333395279 12 1e000000341e0b0000000000 ....4....... +6183 18.760325193 127.0.0.1:57415 127.0.0.1:57433 3333395291 30 1a00000055ceff62b21b3a500100030000000b921f000000000000000000 ....U..b..:P.................. +6185 18.760584116 127.0.0.1:57433 127.0.0.1:57415 377357727 12 ffffffff341e0b0000000000 ....4....... +6187 18.761235952 127.0.0.1:57433 127.0.0.1:57415 377357739 12 1a00000002f90a0000000000 ............ +6189 18.761368752 127.0.0.1:57433 127.0.0.1:57415 377357751 26 160000000b921f00000000000100030000000000000000000000 .......................... +6191 18.761630535 127.0.0.1:57415 127.0.0.1:57433 3333395321 12 ffffffff02f90a0000000000 ............ +6197 18.840077400 127.0.0.1:57415 127.0.0.1:57433 3333395333 12 1a000000351e0b0000000000 ....5....... +6199 18.840420961 127.0.0.1:57415 127.0.0.1:57433 3333395345 26 16000000548f6340e25e31400100030000000d921f0000000000 ....T.c@.^1@.............. +6201 18.840782404 127.0.0.1:57433 127.0.0.1:57415 377357777 12 ffffffff351e0b0000000000 ....5....... +6203 18.841462851 127.0.0.1:57433 127.0.0.1:57415 377357789 12 1600000003f90a0000000000 ............ +6205 18.841624975 127.0.0.1:57433 127.0.0.1:57415 377357801 22 120000000d921f000000000001000300000000000000 ...................... +6207 18.842037678 127.0.0.1:57415 127.0.0.1:57433 3333395371 12 ffffffff03f90a0000000000 ............ +6210 18.931702852 127.0.0.1:57433 127.0.0.1:57415 377357823 12 feffffff1c4301002d430100 .....C..-C.. +6217 18.944385052 127.0.0.1:57415 127.0.0.1:57433 3333395383 12 1a000000361e0b0000000000 ....6....... +6219 18.944661379 127.0.0.1:57415 127.0.0.1:57433 3333395395 26 16000000548f6340e25e31400100030000000f921f0000000000 ....T.c@.^1@.............. +6221 18.945082188 127.0.0.1:57433 127.0.0.1:57415 377357835 12 ffffffff361e0b0000000000 ....6....... +6223 18.945523262 127.0.0.1:57433 127.0.0.1:57415 377357847 12 1600000004f90a0000000000 ............ +6225 18.945666552 127.0.0.1:57433 127.0.0.1:57415 377357859 22 120000000f921f000000000001000300000000000000 ...................... +6227 18.945853472 127.0.0.1:57415 127.0.0.1:57433 3333395421 12 ffffffff04f90a0000000000 ............ +6233 19.047877073 127.0.0.1:57415 127.0.0.1:57433 3333395433 12 1a000000371e0b0000000000 ....7....... +6235 19.048189640 127.0.0.1:57415 127.0.0.1:57433 3333395445 26 16000000548f6340e25e314001000300000011921f0000000000 ....T.c@.^1@.............. +6237 19.048516273 127.0.0.1:57433 127.0.0.1:57415 377357881 12 ffffffff371e0b0000000000 ....7....... +6239 19.049007416 127.0.0.1:57433 127.0.0.1:57415 377357893 12 1600000005f90a0000000000 ............ +6241 19.049204826 127.0.0.1:57433 127.0.0.1:57415 377357905 22 1200000011921f000000000001000300000000000000 ...................... +6243 19.049571037 127.0.0.1:57415 127.0.0.1:57433 3333395471 12 ffffffff05f90a0000000000 ............ +6247 19.061973333 127.0.0.1:57415 127.0.0.1:57433 3333395483 12 22000000381e0b0000000000 "...8....... +6249 19.062262297 127.0.0.1:57415 127.0.0.1:57433 3333395495 34 1e0000001c2118d0c46f33bb010003000000d51102000000000091e923c39d01 .....!...o3.................#..... +6251 19.062409163 127.0.0.1:57415 127.0.0.1:57433 3333395529 12 43000000391e0b0000000000 C...9....... +6252 19.062475681 127.0.0.1:57433 127.0.0.1:57415 377357927 12 ffffffff381e0b0000000000 ....8....... +6254 19.062662125 127.0.0.1:57415 127.0.0.1:57433 3333395541 67 3f000000980433cb0cb47c380100030000000100000000d5110200000000003d ?.....3...|8...................=B.....&......... +6256 19.062896729 127.0.0.1:57433 127.0.0.1:57415 377357939 12 ffffffff391e0b0000000000 ....9....... +6258 19.064332008 127.0.0.1:57433 127.0.0.1:57415 377357951 12 3400000006f90a0000000000 4........... +6260 19.064517498 127.0.0.1:57433 127.0.0.1:57415 377357963 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................Pg. +6262 19.064739943 127.0.0.1:57415 127.0.0.1:57433 3333395608 12 ffffffff06f90a0000000000 ............ +6264 19.065612793 127.0.0.1:57415 127.0.0.1:57433 3333395620 12 1e0000003a1e0b0000000000 ....:....... +6266 19.065771818 127.0.0.1:57415 127.0.0.1:57433 3333395632 30 1a00000055ceff62b21b3a5001000300000013921f000000000000000000 ....U..b..:P.................. +6268 19.065974236 127.0.0.1:57433 127.0.0.1:57415 377358015 12 ffffffff3a1e0b0000000000 ....:....... +6270 19.066352606 127.0.0.1:57415 127.0.0.1:57433 3333395662 12 feffffff2e4301001c430100 .....C...C.. +6271 19.066507101 127.0.0.1:57433 127.0.0.1:57415 377358027 38 1a00000007f90a00000000001600000013921f00000000000100030000000000 ...................................... +6273 19.066761017 127.0.0.1:57415 127.0.0.1:57433 3333395674 12 ffffffff07f90a0000000000 ............ +6275 19.150777340 127.0.0.1:57415 127.0.0.1:57433 3333395686 12 1a0000003b1e0b0000000000 ....;....... +6277 19.151137114 127.0.0.1:57415 127.0.0.1:57433 3333395698 26 16000000548f6340e25e314001000300000015921f0000000000 ....T.c@.^1@.............. +6279 19.151523113 127.0.0.1:57433 127.0.0.1:57415 377358065 12 ffffffff3b1e0b0000000000 ....;....... +6281 19.151983261 127.0.0.1:57433 127.0.0.1:57415 377358077 12 1600000008f90a0000000000 ............ +6283 19.152164221 127.0.0.1:57433 127.0.0.1:57415 377358089 22 1200000015921f000000000001000300000000000000 ...................... +6285 19.152309179 127.0.0.1:57415 127.0.0.1:57433 3333395724 12 ffffffff08f90a0000000000 ............ +6291 19.253604412 127.0.0.1:57415 127.0.0.1:57433 3333395736 12 1a0000003c1e0b0000000000 ....<....... +6293 19.253904104 127.0.0.1:57415 127.0.0.1:57433 3333395748 26 16000000548f6340e25e314001000300000017921f0000000000 ....T.c@.^1@.............. +6295 19.254417896 127.0.0.1:57433 127.0.0.1:57415 377358111 12 ffffffff3c1e0b0000000000 ....<....... +6297 19.255082607 127.0.0.1:57433 127.0.0.1:57415 377358123 12 1600000009f90a0000000000 ............ +6299 19.255300999 127.0.0.1:57433 127.0.0.1:57415 377358135 22 1200000017921f000000000001000300000000000000 ...................... +6301 19.255733967 127.0.0.1:57415 127.0.0.1:57433 3333395774 12 ffffffff09f90a0000000000 ............ +6307 19.357548475 127.0.0.1:57415 127.0.0.1:57433 3333395786 12 1a0000003d1e0b0000000000 ....=....... +6309 19.357781172 127.0.0.1:57415 127.0.0.1:57433 3333395798 26 16000000548f6340e25e314001000300000019921f0000000000 ....T.c@.^1@.............. +6311 19.358123779 127.0.0.1:57433 127.0.0.1:57415 377358157 12 ffffffff3d1e0b0000000000 ....=....... +6313 19.358782768 127.0.0.1:57433 127.0.0.1:57415 377358169 12 160000000af90a0000000000 ............ +6315 19.358956575 127.0.0.1:57433 127.0.0.1:57415 377358181 22 1200000019921f000000000001000300000000000000 ...................... +6317 19.359187603 127.0.0.1:57415 127.0.0.1:57433 3333395824 12 ffffffff0af90a0000000000 ............ +6319 19.367968082 127.0.0.1:57415 127.0.0.1:57433 3333395836 12 650000003e1e0b0000000000 e...>....... +6321 19.368167877 127.0.0.1:57415 127.0.0.1:57433 3333395848 101 1e0000001c2118d0c46f33bb010003000000d611020000000000c2ea23c39d01 .....!...o3.................#.....?.....3...|8.. +6323 19.368463039 127.0.0.1:57433 127.0.0.1:57415 377358203 12 ffffffff3e1e0b0000000000 ....>....... +6325 19.369583368 127.0.0.1:57433 127.0.0.1:57415 377358215 12 340000000bf90a0000000000 4........... +6327 19.369816780 127.0.0.1:57433 127.0.0.1:57415 377358227 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +6329 19.370094538 127.0.0.1:57415 127.0.0.1:57433 3333395949 12 ffffffff0bf90a0000000000 ............ +6331 19.370914221 127.0.0.1:57415 127.0.0.1:57433 3333395961 12 1e0000003f1e0b0000000000 ....?....... +6333 19.371181965 127.0.0.1:57415 127.0.0.1:57433 3333395973 30 1a00000055ceff62b21b3a500100030000001b921f000000000000000000 ....U..b..:P.................. +6335 19.371526480 127.0.0.1:57433 127.0.0.1:57415 377358279 12 ffffffff3f1e0b0000000000 ....?....... +6337 19.372250080 127.0.0.1:57433 127.0.0.1:57415 377358291 12 1a0000000cf90a0000000000 ............ +6339 19.372471333 127.0.0.1:57433 127.0.0.1:57415 377358303 26 160000001b921f00000000000100030000000000000000000000 .......................... +6341 19.372748375 127.0.0.1:57415 127.0.0.1:57433 3333396003 12 ffffffff0cf90a0000000000 ............ +6347 19.433268309 127.0.0.1:57433 127.0.0.1:57415 377358329 12 feffffff1d4301002e430100 .....C...C.. +6353 19.460723162 127.0.0.1:57415 127.0.0.1:57433 3333396015 12 1a000000401e0b0000000000 ....@....... +6355 19.460946083 127.0.0.1:57415 127.0.0.1:57433 3333396027 26 16000000548f6340e25e31400100030000001d921f0000000000 ....T.c@.^1@.............. +6357 19.461425304 127.0.0.1:57433 127.0.0.1:57415 377358341 12 ffffffff401e0b0000000000 ....@....... +6359 19.461975574 127.0.0.1:57433 127.0.0.1:57415 377358353 12 160000000df90a0000000000 ............ +6361 19.462130070 127.0.0.1:57433 127.0.0.1:57415 377358365 22 120000001d921f000000000001000300000000000000 ...................... +6363 19.462396860 127.0.0.1:57415 127.0.0.1:57433 3333396053 12 ffffffff0df90a0000000000 ............ +6401 19.565655947 127.0.0.1:57415 127.0.0.1:57433 3333396065 12 1a000000411e0b0000000000 ....A....... +6403 19.565868378 127.0.0.1:57415 127.0.0.1:57433 3333396077 26 16000000548f6340e25e31400100030000001f921f0000000000 ....T.c@.^1@.............. +6405 19.566208124 127.0.0.1:57433 127.0.0.1:57415 377358387 12 ffffffff411e0b0000000000 ....A....... +6407 19.566655636 127.0.0.1:57433 127.0.0.1:57415 377358399 12 160000000ef90a0000000000 ............ +6409 19.566899300 127.0.0.1:57433 127.0.0.1:57415 377358411 22 120000001f921f000000000001000300000000000000 ...................... +6411 19.567192316 127.0.0.1:57415 127.0.0.1:57433 3333396103 12 ffffffff0ef90a0000000000 ............ +6413 19.568250895 127.0.0.1:57415 127.0.0.1:57433 3333396115 12 feffffff2f4301001d430100 ..../C...C.. +6419 19.668594599 127.0.0.1:57415 127.0.0.1:57433 3333396127 12 1a000000421e0b0000000000 ....B....... +6421 19.668866396 127.0.0.1:57415 127.0.0.1:57433 3333396139 26 16000000548f6340e25e314001000300000021921f0000000000 ....T.c@.^1@......!....... +6423 19.669192791 127.0.0.1:57433 127.0.0.1:57415 377358433 12 ffffffff421e0b0000000000 ....B....... +6425 19.669617176 127.0.0.1:57433 127.0.0.1:57415 377358445 12 160000000ff90a0000000000 ............ +6427 19.669793844 127.0.0.1:57433 127.0.0.1:57415 377358457 22 1200000021921f000000000001000300000000000000 ....!................. +6429 19.670075655 127.0.0.1:57415 127.0.0.1:57433 3333396165 12 ffffffff0ff90a0000000000 ............ +6431 19.671708345 127.0.0.1:57415 127.0.0.1:57433 3333396177 12 65000000431e0b0000000000 e...C....... +6433 19.671920061 127.0.0.1:57415 127.0.0.1:57433 3333396189 101 1e0000001c2118d0c46f33bb010003000000d711020000000000f3eb23c39d01 .....!...o3.................#.....?.....3...|8.. +6435 19.672215462 127.0.0.1:57433 127.0.0.1:57415 377358479 12 ffffffff431e0b0000000000 ....C....... +6437 19.673208475 127.0.0.1:57433 127.0.0.1:57415 377358491 12 3400000010f90a0000000000 4........... +6439 19.673352718 127.0.0.1:57433 127.0.0.1:57415 377358503 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................9.. +6441 19.673601866 127.0.0.1:57415 127.0.0.1:57433 3333396290 12 ffffffff10f90a0000000000 ............ +6443 19.674393415 127.0.0.1:57415 127.0.0.1:57433 3333396302 12 1e000000441e0b0000000000 ....D....... +6445 19.674541950 127.0.0.1:57415 127.0.0.1:57433 3333396314 30 1a00000055ceff62b21b3a5001000300000023921f000000000000000000 ....U..b..:P......#........... +6447 19.674986839 127.0.0.1:57433 127.0.0.1:57415 377358555 12 ffffffff441e0b0000000000 ....D....... +6449 19.675322533 127.0.0.1:57433 127.0.0.1:57415 377358567 12 1a00000011f90a0000000000 ............ +6451 19.675473690 127.0.0.1:57433 127.0.0.1:57415 377358579 26 1600000023921f00000000000100030000000000000000000000 ....#..................... +6453 19.675708771 127.0.0.1:57415 127.0.0.1:57433 3333396344 12 ffffffff11f90a0000000000 ............ +6455 19.772636175 127.0.0.1:57415 127.0.0.1:57433 3333396356 12 1a000000451e0b0000000000 ....E....... +6457 19.772901297 127.0.0.1:57415 127.0.0.1:57433 3333396368 26 16000000548f6340e25e314001000300000025921f0000000000 ....T.c@.^1@......%....... +6459 19.773216486 127.0.0.1:57433 127.0.0.1:57415 377358605 12 ffffffff451e0b0000000000 ....E....... +6461 19.773786306 127.0.0.1:57433 127.0.0.1:57415 377358617 12 1600000012f90a0000000000 ............ +6463 19.773971796 127.0.0.1:57433 127.0.0.1:57415 377358629 22 1200000025921f000000000001000300000000000000 ....%................. +6465 19.774301291 127.0.0.1:57415 127.0.0.1:57433 3333396394 12 ffffffff12f90a0000000000 ............ +6471 19.875479460 127.0.0.1:57415 127.0.0.1:57433 3333396406 12 1a000000461e0b0000000000 ....F....... +6473 19.875679255 127.0.0.1:57415 127.0.0.1:57433 3333396418 26 16000000548f6340e25e314001000300000027921f0000000000 ....T.c@.^1@......'....... +6475 19.876597643 127.0.0.1:57433 127.0.0.1:57415 377358651 12 ffffffff461e0b0000000000 ....F....... +6477 19.876972437 127.0.0.1:57433 127.0.0.1:57415 377358663 12 1600000013f90a0000000000 ............ +6479 19.877150297 127.0.0.1:57433 127.0.0.1:57415 377358675 22 1200000027921f000000000001000300000000000000 ....'................. +6481 19.877433777 127.0.0.1:57415 127.0.0.1:57433 3333396444 12 ffffffff13f90a0000000000 ............ +6494 19.933288574 127.0.0.1:57433 127.0.0.1:57415 377358697 12 feffffff1e4301002f430100 .....C../C.. +6502 19.977102995 127.0.0.1:57415 127.0.0.1:57433 3333396456 12 22000000471e0b0000000000 "...G....... +6504 19.977285385 127.0.0.1:57415 127.0.0.1:57433 3333396468 34 1e0000001c2118d0c46f33bb010003000000d81102000000000024ed23c39d01 .....!...o3...............$.#..... +6506 19.977386951 127.0.0.1:57415 127.0.0.1:57433 3333396502 12 43000000481e0b0000000000 C...H....... +6508 19.977473021 127.0.0.1:57415 127.0.0.1:57433 3333396514 67 3f000000980433cb0cb47c380100030000000100000000d8110200000000003d ?.....3...|8...................=B.....&......... +6510 19.977571487 127.0.0.1:57433 127.0.0.1:57415 377358709 12 ffffffff471e0b0000000000 ....G....... +6512 19.977766514 127.0.0.1:57433 127.0.0.1:57415 377358721 12 ffffffff481e0b0000000000 ....H....... +6514 19.978643179 127.0.0.1:57433 127.0.0.1:57415 377358733 12 3400000014f90a0000000000 4........... +6516 19.978819370 127.0.0.1:57415 127.0.0.1:57433 3333396581 12 1a000000491e0b0000000000 ....I....... +6517 19.978831768 127.0.0.1:57415 127.0.0.1:57433 3333396593 26 16000000548f6340e25e314001000300000029921f0000000000 ....T.c@.^1@......)....... +6519 19.978990078 127.0.0.1:57433 127.0.0.1:57415 377358745 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +6521 19.979150295 127.0.0.1:57433 127.0.0.1:57415 377358797 12 ffffffff491e0b0000000000 ....I....... +6523 19.979262114 127.0.0.1:57415 127.0.0.1:57433 3333396619 12 ffffffff14f90a0000000000 ............ +6525 19.979499578 127.0.0.1:57433 127.0.0.1:57415 377358809 12 1600000015f90a0000000000 ............ +6527 19.979644299 127.0.0.1:57433 127.0.0.1:57415 377358821 22 1200000029921f000000000001000300000000000000 ....)................. +6529 19.980013847 127.0.0.1:57415 127.0.0.1:57433 3333396631 12 ffffffff15f90a0000000000 ............ +6531 19.980329752 127.0.0.1:57415 127.0.0.1:57433 3333396643 12 1e0000004a1e0b0000000000 ....J....... +6533 19.980506182 127.0.0.1:57415 127.0.0.1:57433 3333396655 30 1a00000055ceff62b21b3a500100030000002b921f000000000000000000 ....U..b..:P......+........... +6535 19.980813503 127.0.0.1:57433 127.0.0.1:57415 377358843 12 ffffffff4a1e0b0000000000 ....J....... +6537 19.981351614 127.0.0.1:57433 127.0.0.1:57415 377358855 12 1a00000016f90a0000000000 ............ +6539 19.981498718 127.0.0.1:57433 127.0.0.1:57415 377358867 26 160000002b921f00000000000100030000000000000000000000 ....+..................... +6541 19.981716633 127.0.0.1:57415 127.0.0.1:57433 3333396685 12 ffffffff16f90a0000000000 ............ +6549 20.069202185 127.0.0.1:57415 127.0.0.1:57433 3333396697 12 feffffff304301001e430100 ....0C...C.. +6551 20.082008839 127.0.0.1:57415 127.0.0.1:57433 3333396709 12 1a0000004b1e0b0000000000 ....K....... +6553 20.082264423 127.0.0.1:57415 127.0.0.1:57433 3333396721 26 16000000548f6340e25e31400100030000002d921f0000000000 ....T.c@.^1@......-....... +6555 20.082700491 127.0.0.1:57433 127.0.0.1:57415 377358893 12 ffffffff4b1e0b0000000000 ....K....... +6557 20.083158255 127.0.0.1:57433 127.0.0.1:57415 377358905 12 1600000017f90a0000000000 ............ +6559 20.083350420 127.0.0.1:57433 127.0.0.1:57415 377358917 22 120000002d921f000000000001000300000000000000 ....-................. +6561 20.083664179 127.0.0.1:57415 127.0.0.1:57433 3333396747 12 ffffffff17f90a0000000000 ............ +6567 20.185514212 127.0.0.1:57415 127.0.0.1:57433 3333396759 12 1a0000004c1e0b0000000000 ....L....... +6569 20.185701609 127.0.0.1:57415 127.0.0.1:57433 3333396771 26 16000000548f6340e25e31400100030000002f921f0000000000 ....T.c@.^1@....../....... +6571 20.186091900 127.0.0.1:57433 127.0.0.1:57415 377358939 12 ffffffff4c1e0b0000000000 ....L....... +6573 20.186520576 127.0.0.1:57433 127.0.0.1:57415 377358951 12 1600000018f90a0000000000 ............ +6575 20.186699390 127.0.0.1:57433 127.0.0.1:57415 377358963 22 120000002f921f000000000001000300000000000000 ..../................. +6577 20.187185287 127.0.0.1:57415 127.0.0.1:57433 3333396797 12 ffffffff18f90a0000000000 ............ +6581 20.282064676 127.0.0.1:57415 127.0.0.1:57433 3333396809 12 650000004d1e0b0000000000 e...M....... +6583 20.282253504 127.0.0.1:57415 127.0.0.1:57433 3333396821 101 1e0000001c2118d0c46f33bb010003000000d91102000000000055ee23c39d01 .....!...o3...............U.#.....?.....3...|8.. +6585 20.282702684 127.0.0.1:57433 127.0.0.1:57415 377358985 12 ffffffff4d1e0b0000000000 ....M....... +6587 20.283669472 127.0.0.1:57433 127.0.0.1:57415 377358997 12 3400000019f90a0000000000 4........... +6589 20.283908367 127.0.0.1:57433 127.0.0.1:57415 377359009 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................]!. +6591 20.284251451 127.0.0.1:57415 127.0.0.1:57433 3333396922 12 ffffffff19f90a0000000000 ............ +6593 20.285118818 127.0.0.1:57415 127.0.0.1:57433 3333396934 12 1e0000004e1e0b0000000000 ....N....... +6595 20.285260201 127.0.0.1:57415 127.0.0.1:57433 3333396946 30 1a00000055ceff62b21b3a5001000300000031921f000000000000000000 ....U..b..:P......1........... +6597 20.285537481 127.0.0.1:57433 127.0.0.1:57415 377359061 12 ffffffff4e1e0b0000000000 ....N....... +6599 20.286079407 127.0.0.1:57433 127.0.0.1:57415 377359073 12 1a0000001af90a0000000000 ............ +6601 20.286238670 127.0.0.1:57433 127.0.0.1:57415 377359085 26 1600000031921f00000000000100030000000000000000000000 ....1..................... +6603 20.286490440 127.0.0.1:57415 127.0.0.1:57433 3333396976 12 ffffffff1af90a0000000000 ............ +6605 20.289416552 127.0.0.1:57415 127.0.0.1:57433 3333396988 12 1a0000004f1e0b0000000000 ....O....... +6607 20.289626598 127.0.0.1:57415 127.0.0.1:57433 3333397000 26 16000000548f6340e25e314001000300000033921f0000000000 ....T.c@.^1@......3....... +6609 20.290052414 127.0.0.1:57433 127.0.0.1:57415 377359111 12 ffffffff4f1e0b0000000000 ....O....... +6611 20.290366888 127.0.0.1:57433 127.0.0.1:57415 377359123 12 160000001bf90a0000000000 ............ +6613 20.290564060 127.0.0.1:57433 127.0.0.1:57415 377359135 22 1200000033921f000000000001000300000000000000 ....3................. +6615 20.290907860 127.0.0.1:57415 127.0.0.1:57433 3333397026 12 ffffffff1bf90a0000000000 ............ +6619 20.392590284 127.0.0.1:57415 127.0.0.1:57433 3333397038 12 1a000000501e0b0000000000 ....P....... +6621 20.392896175 127.0.0.1:57415 127.0.0.1:57433 3333397050 26 16000000548f6340e25e314001000300000035921f0000000000 ....T.c@.^1@......5....... +6623 20.393260241 127.0.0.1:57433 127.0.0.1:57415 377359157 12 ffffffff501e0b0000000000 ....P....... +6625 20.393815994 127.0.0.1:57433 127.0.0.1:57415 377359169 12 160000001cf90a0000000000 ............ +6627 20.394078016 127.0.0.1:57433 127.0.0.1:57415 377359181 22 1200000035921f000000000001000300000000000000 ....5................. +6629 20.394420624 127.0.0.1:57415 127.0.0.1:57433 3333397076 12 ffffffff1cf90a0000000000 ............ +6632 20.434478998 127.0.0.1:57433 127.0.0.1:57415 377359203 12 feffffff1f43010030430100 .....C..0C.. +6639 20.495588779 127.0.0.1:57415 127.0.0.1:57433 3333397088 12 1a000000511e0b0000000000 ....Q....... +6641 20.495875359 127.0.0.1:57415 127.0.0.1:57433 3333397100 26 16000000548f6340e25e314001000300000037921f0000000000 ....T.c@.^1@......7....... +6643 20.496297121 127.0.0.1:57433 127.0.0.1:57415 377359215 12 ffffffff511e0b0000000000 ....Q....... +6645 20.497019053 127.0.0.1:57433 127.0.0.1:57415 377359227 12 160000001df90a0000000000 ............ +6647 20.497229099 127.0.0.1:57433 127.0.0.1:57415 377359239 22 1200000037921f000000000001000300000000000000 ....7................. +6649 20.497549295 127.0.0.1:57415 127.0.0.1:57433 3333397126 12 ffffffff1df90a0000000000 ............ +6657 20.570442200 127.0.0.1:57415 127.0.0.1:57433 3333397138 12 feffffff314301001f430100 ....1C...C.. +6659 20.587072372 127.0.0.1:57415 127.0.0.1:57433 3333397150 12 22000000521e0b0000000000 "...R....... +6661 20.587277651 127.0.0.1:57415 127.0.0.1:57433 3333397162 34 1e0000001c2118d0c46f33bb010003000000da1102000000000086ef23c39d01 .....!...o3.................#..... +6663 20.587383986 127.0.0.1:57415 127.0.0.1:57433 3333397196 12 43000000531e0b0000000000 C...S....... +6665 20.587473631 127.0.0.1:57415 127.0.0.1:57433 3333397208 67 3f000000980433cb0cb47c380100030000000100000000da110200000000003d ?.....3...|8...................=B.....&......... +6666 20.587558985 127.0.0.1:57433 127.0.0.1:57415 377359261 12 ffffffff521e0b0000000000 ....R....... +6669 20.587800980 127.0.0.1:57433 127.0.0.1:57415 377359273 12 ffffffff531e0b0000000000 ....S....... +6671 20.588546276 127.0.0.1:57433 127.0.0.1:57415 377359285 12 340000001ef90a0000000000 4........... +6673 20.588688612 127.0.0.1:57433 127.0.0.1:57415 377359297 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.................O. +6675 20.588902712 127.0.0.1:57415 127.0.0.1:57433 3333397275 12 ffffffff1ef90a0000000000 ............ +6676 20.589789867 127.0.0.1:57415 127.0.0.1:57433 3333397287 12 1e000000541e0b0000000000 ....T....... +6678 20.589940071 127.0.0.1:57415 127.0.0.1:57433 3333397299 30 1a00000055ceff62b21b3a5001000300000039921f000000000000000000 ....U..b..:P......9........... +6680 20.590221167 127.0.0.1:57433 127.0.0.1:57415 377359349 12 ffffffff541e0b0000000000 ....T....... +6682 20.590493441 127.0.0.1:57433 127.0.0.1:57415 377359361 12 1a0000001ff90a0000000000 ............ +6684 20.590642691 127.0.0.1:57433 127.0.0.1:57415 377359373 26 1600000039921f00000000000100030000000000000000000000 ....9..................... +6686 20.590843201 127.0.0.1:57415 127.0.0.1:57433 3333397329 12 ffffffff1ff90a0000000000 ............ +6688 20.599507570 127.0.0.1:57415 127.0.0.1:57433 3333397341 12 1a000000551e0b0000000000 ....U....... +6690 20.599673748 127.0.0.1:57415 127.0.0.1:57433 3333397353 26 16000000548f6340e25e31400100030000003b921f0000000000 ....T.c@.^1@......;....... +6692 20.599965334 127.0.0.1:57433 127.0.0.1:57415 377359399 12 ffffffff551e0b0000000000 ....U....... +6694 20.600411892 127.0.0.1:57433 127.0.0.1:57415 377359411 12 1600000020f90a0000000000 .... ....... +6696 20.600555897 127.0.0.1:57433 127.0.0.1:57415 377359423 22 120000003b921f000000000001000300000000000000 ....;................. +6698 20.600739956 127.0.0.1:57415 127.0.0.1:57433 3333397379 12 ffffffff20f90a0000000000 .... ....... +6704 20.702994585 127.0.0.1:57415 127.0.0.1:57433 3333397391 12 1a000000561e0b0000000000 ....V....... +6706 20.703209162 127.0.0.1:57415 127.0.0.1:57433 3333397403 26 16000000548f6340e25e31400100030000003d921f0000000000 ....T.c@.^1@......=....... +6708 20.703546524 127.0.0.1:57433 127.0.0.1:57415 377359445 12 ffffffff561e0b0000000000 ....V....... +6710 20.704579353 127.0.0.1:57433 127.0.0.1:57415 377359457 12 1600000021f90a0000000000 ....!....... +6712 20.704783916 127.0.0.1:57433 127.0.0.1:57415 377359469 22 120000003d921f000000000001000300000000000000 ....=................. +6714 20.705113173 127.0.0.1:57415 127.0.0.1:57433 3333397429 12 ffffffff21f90a0000000000 ....!....... +6720 20.806796789 127.0.0.1:57415 127.0.0.1:57433 3333397441 12 1a000000571e0b0000000000 ....W....... +6722 20.806981564 127.0.0.1:57415 127.0.0.1:57433 3333397453 26 16000000548f6340e25e31400100030000003f921f0000000000 ....T.c@.^1@......?....... +6724 20.807345390 127.0.0.1:57433 127.0.0.1:57415 377359491 12 ffffffff571e0b0000000000 ....W....... +6726 20.807861805 127.0.0.1:57433 127.0.0.1:57415 377359503 12 1600000022f90a0000000000 ...."....... +6728 20.808039904 127.0.0.1:57433 127.0.0.1:57415 377359515 22 120000003f921f000000000001000300000000000000 ....?................. +6730 20.808303118 127.0.0.1:57415 127.0.0.1:57433 3333397479 12 ffffffff22f90a0000000000 ...."....... +6734 20.891135216 127.0.0.1:57415 127.0.0.1:57433 3333397491 12 22000000581e0b0000000000 "...X....... +6736 20.891311884 127.0.0.1:57415 127.0.0.1:57433 3333397503 34 1e0000001c2118d0c46f33bb010003000000db11020000000000b6f023c39d01 .....!...o3.................#..... +6738 20.891454935 127.0.0.1:57415 127.0.0.1:57433 3333397537 12 43000000591e0b0000000000 C...Y....... +6740 20.891539574 127.0.0.1:57415 127.0.0.1:57433 3333397549 67 3f000000980433cb0cb47c380100030000000100000000db110200000000003d ?.....3...|8...................=B.....&......... +6742 20.891665220 127.0.0.1:57433 127.0.0.1:57415 377359537 12 ffffffff581e0b0000000000 ....X....... +6744 20.891859770 127.0.0.1:57433 127.0.0.1:57415 377359549 12 ffffffff591e0b0000000000 ....Y....... +6746 20.892934561 127.0.0.1:57433 127.0.0.1:57415 377359561 12 3400000023f90a0000000000 4...#....... +6748 20.893138170 127.0.0.1:57433 127.0.0.1:57415 377359573 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................N~. +6750 20.893399954 127.0.0.1:57415 127.0.0.1:57433 3333397616 12 ffffffff23f90a0000000000 ....#....... +6752 20.894088268 127.0.0.1:57415 127.0.0.1:57433 3333397628 12 1e0000005a1e0b0000000000 ....Z....... +6754 20.894285440 127.0.0.1:57415 127.0.0.1:57433 3333397640 30 1a00000055ceff62b21b3a5001000300000041921f000000000000000000 ....U..b..:P......A........... +6756 20.894600391 127.0.0.1:57433 127.0.0.1:57415 377359625 12 ffffffff5a1e0b0000000000 ....Z....... +6758 20.895295620 127.0.0.1:57433 127.0.0.1:57415 377359637 12 1a00000024f90a0000000000 ....$....... +6760 20.895461321 127.0.0.1:57433 127.0.0.1:57415 377359649 26 1600000041921f00000000000100030000000000000000000000 ....A..................... +6762 20.895713091 127.0.0.1:57415 127.0.0.1:57433 3333397670 12 ffffffff24f90a0000000000 ....$....... +6764 20.909540415 127.0.0.1:57415 127.0.0.1:57433 3333397682 12 1a0000005b1e0b0000000000 ....[....... +6766 20.909699440 127.0.0.1:57415 127.0.0.1:57433 3333397694 26 16000000548f6340e25e314001000300000043921f0000000000 ....T.c@.^1@......C....... +6768 20.910062313 127.0.0.1:57433 127.0.0.1:57415 377359675 12 ffffffff5b1e0b0000000000 ....[....... +6770 20.910426855 127.0.0.1:57433 127.0.0.1:57415 377359687 12 1600000025f90a0000000000 ....%....... +6772 20.910598040 127.0.0.1:57433 127.0.0.1:57415 377359699 22 1200000043921f000000000001000300000000000000 ....C................. +6774 20.910831690 127.0.0.1:57415 127.0.0.1:57433 3333397720 12 ffffffff25f90a0000000000 ....%....... +6777 20.935397148 127.0.0.1:57433 127.0.0.1:57415 377359721 12 feffffff2043010031430100 .... C..1C.. +6784 21.012677908 127.0.0.1:57415 127.0.0.1:57433 3333397732 12 1a0000005c1e0b0000000000 ....\....... +6786 21.012943745 127.0.0.1:57415 127.0.0.1:57433 3333397744 26 16000000548f6340e25e314001000300000045921f0000000000 ....T.c@.^1@......E....... +6788 21.013375998 127.0.0.1:57433 127.0.0.1:57415 377359733 12 ffffffff5c1e0b0000000000 ....\....... +6792 21.013872623 127.0.0.1:57433 127.0.0.1:57415 377359745 12 1600000026f90a0000000000 ....&....... +6794 21.014548779 127.0.0.1:57433 127.0.0.1:57415 377359757 22 1200000045921f000000000001000300000000000000 ....E................. +6796 21.014929533 127.0.0.1:57415 127.0.0.1:57433 3333397770 12 ffffffff26f90a0000000000 ....&....... +6802 21.071208477 127.0.0.1:57415 127.0.0.1:57433 3333397782 12 feffffff3243010020430100 ....2C.. C.. +6804 21.116399527 127.0.0.1:57415 127.0.0.1:57433 3333397794 12 1a0000005d1e0b0000000000 ....]....... +6806 21.116595268 127.0.0.1:57415 127.0.0.1:57433 3333397806 26 16000000548f6340e25e314001000300000047921f0000000000 ....T.c@.^1@......G....... +6808 21.117096663 127.0.0.1:57433 127.0.0.1:57415 377359779 12 ffffffff5d1e0b0000000000 ....]....... +6810 21.117474079 127.0.0.1:57433 127.0.0.1:57415 377359791 12 1600000027f90a0000000000 ....'....... +6812 21.117647409 127.0.0.1:57433 127.0.0.1:57415 377359803 22 1200000047921f000000000001000300000000000000 ....G................. +6814 21.117990971 127.0.0.1:57415 127.0.0.1:57433 3333397832 12 ffffffff27f90a0000000000 ....'....... +6820 21.196266174 127.0.0.1:57415 127.0.0.1:57433 3333397844 12 220000005e1e0b0000000000 "...^....... +6822 21.196490049 127.0.0.1:57415 127.0.0.1:57433 3333397856 34 1e0000001c2118d0c46f33bb010003000000dc11020000000000e8f123c39d01 .....!...o3.................#..... +6824 21.196620464 127.0.0.1:57415 127.0.0.1:57433 3333397890 12 430000005f1e0b0000000000 C..._....... +6826 21.196707010 127.0.0.1:57415 127.0.0.1:57433 3333397902 67 3f000000980433cb0cb47c380100030000000100000000dc110200000000003d ?.....3...|8...................=B.....&......... +6828 21.196802378 127.0.0.1:57433 127.0.0.1:57415 377359825 12 ffffffff5e1e0b0000000000 ....^....... +6830 21.197016478 127.0.0.1:57433 127.0.0.1:57415 377359837 12 ffffffff5f1e0b0000000000 ...._....... +6832 21.197832108 127.0.0.1:57433 127.0.0.1:57415 377359849 12 3400000028f90a0000000000 4...(....... +6834 21.197985888 127.0.0.1:57433 127.0.0.1:57415 377359861 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............I... +6836 21.198240519 127.0.0.1:57415 127.0.0.1:57433 3333397969 12 ffffffff28f90a0000000000 ....(....... +6838 21.199234724 127.0.0.1:57415 127.0.0.1:57433 3333397981 12 1e000000601e0b0000000000 ....`....... +6840 21.199378490 127.0.0.1:57415 127.0.0.1:57433 3333397993 30 1a00000055ceff62b21b3a5001000300000049921f000000000000000000 ....U..b..:P......I........... +6842 21.199647188 127.0.0.1:57433 127.0.0.1:57415 377359913 12 ffffffff601e0b0000000000 ....`....... +6844 21.200101614 127.0.0.1:57433 127.0.0.1:57415 377359925 12 1a00000029f90a0000000000 ....)....... +6846 21.200244188 127.0.0.1:57433 127.0.0.1:57415 377359937 26 1600000049921f00000000000100030000000000000000000000 ....I..................... +6848 21.200484037 127.0.0.1:57415 127.0.0.1:57433 3333398023 12 ffffffff29f90a0000000000 ....)....... +6850 21.220328569 127.0.0.1:57415 127.0.0.1:57433 3333398035 12 1a000000611e0b0000000000 ....a....... +6852 21.220489740 127.0.0.1:57415 127.0.0.1:57433 3333398047 26 16000000548f6340e25e31400100030000004b921f0000000000 ....T.c@.^1@......K....... +6854 21.220839739 127.0.0.1:57433 127.0.0.1:57415 377359963 12 ffffffff611e0b0000000000 ....a....... +6856 21.221168995 127.0.0.1:57433 127.0.0.1:57415 377359975 12 160000002af90a0000000000 ....*....... +6858 21.221330643 127.0.0.1:57433 127.0.0.1:57415 377359987 22 120000004b921f000000000001000300000000000000 ....K................. +6860 21.221672773 127.0.0.1:57415 127.0.0.1:57433 3333398073 12 ffffffff2af90a0000000000 ....*....... +6865 21.322828293 127.0.0.1:57415 127.0.0.1:57433 3333398085 12 1a000000621e0b0000000000 ....b....... +6867 21.323009491 127.0.0.1:57415 127.0.0.1:57433 3333398097 26 16000000548f6340e25e31400100030000004d921f0000000000 ....T.c@.^1@......M....... +6869 21.323361158 127.0.0.1:57433 127.0.0.1:57415 377360009 12 ffffffff621e0b0000000000 ....b....... +6871 21.323950291 127.0.0.1:57433 127.0.0.1:57415 377360021 12 160000002bf90a0000000000 ....+....... +6873 21.324096680 127.0.0.1:57433 127.0.0.1:57415 377360033 22 120000004d921f000000000001000300000000000000 ....M................. +6875 21.324357271 127.0.0.1:57415 127.0.0.1:57433 3333398123 12 ffffffff2bf90a0000000000 ....+....... +6880 21.426053524 127.0.0.1:57415 127.0.0.1:57433 3333398135 12 1a000000631e0b0000000000 ....c....... +6882 21.426242590 127.0.0.1:57415 127.0.0.1:57433 3333398147 26 16000000548f6340e25e31400100030000004f921f0000000000 ....T.c@.^1@......O....... +6884 21.426821709 127.0.0.1:57433 127.0.0.1:57415 377360055 12 ffffffff631e0b0000000000 ....c....... +6886 21.427173853 127.0.0.1:57433 127.0.0.1:57415 377360067 12 160000002cf90a0000000000 ....,....... +6888 21.427336216 127.0.0.1:57433 127.0.0.1:57415 377360079 22 120000004f921f000000000001000300000000000000 ....O................. +6890 21.427966595 127.0.0.1:57415 127.0.0.1:57433 3333398173 12 ffffffff2cf90a0000000000 ....,....... +6895 21.436357498 127.0.0.1:57433 127.0.0.1:57415 377360101 12 feffffff2143010032430100 ....!C..2C.. +6900 21.500650644 127.0.0.1:57415 127.0.0.1:57433 3333398185 12 22000000641e0b0000000000 "...d....... +6902 21.500907183 127.0.0.1:57415 127.0.0.1:57433 3333398197 34 1e0000001c2118d0c46f33bb010003000000dd1102000000000017f323c39d01 .....!...o3.................#..... +6904 21.501096487 127.0.0.1:57415 127.0.0.1:57433 3333398231 12 43000000651e0b0000000000 C...e....... +6906 21.501217604 127.0.0.1:57415 127.0.0.1:57433 3333398243 67 3f000000980433cb0cb47c380100030000000100000000dd110200000000003d ?.....3...|8...................=B.....&......... +6907 21.501297474 127.0.0.1:57433 127.0.0.1:57415 377360113 12 ffffffff641e0b0000000000 ....d....... +6908 21.501482010 127.0.0.1:57433 127.0.0.1:57415 377360125 12 ffffffff651e0b0000000000 ....e....... +6911 21.502532482 127.0.0.1:57433 127.0.0.1:57415 377360137 12 340000002df90a0000000000 4...-....... +6913 21.502823830 127.0.0.1:57433 127.0.0.1:57415 377360149 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................X.. +6916 21.503105164 127.0.0.1:57415 127.0.0.1:57433 3333398310 12 ffffffff2df90a0000000000 ....-....... +6917 21.504273653 127.0.0.1:57415 127.0.0.1:57433 3333398322 12 1e000000661e0b0000000000 ....f....... +6918 21.504433393 127.0.0.1:57415 127.0.0.1:57433 3333398334 30 1a00000055ceff62b21b3a5001000300000051921f000000000000000000 ....U..b..:P......Q........... +6919 21.504768133 127.0.0.1:57433 127.0.0.1:57415 377360201 12 ffffffff661e0b0000000000 ....f....... +6921 21.505187273 127.0.0.1:57433 127.0.0.1:57415 377360213 12 1a0000002ef90a0000000000 ............ +6923 21.505352259 127.0.0.1:57433 127.0.0.1:57415 377360225 26 1600000051921f00000000000100030000000000000000000000 ....Q..................... +6925 21.505626440 127.0.0.1:57415 127.0.0.1:57433 3333398364 12 ffffffff2ef90a0000000000 ............ +6929 21.529752016 127.0.0.1:57415 127.0.0.1:57433 3333398376 12 1a000000671e0b0000000000 ....g....... +6931 21.529927492 127.0.0.1:57415 127.0.0.1:57433 3333398388 26 16000000548f6340e25e314001000300000053921f0000000000 ....T.c@.^1@......S....... +6933 21.530277252 127.0.0.1:57433 127.0.0.1:57415 377360251 12 ffffffff671e0b0000000000 ....g....... +6935 21.530680895 127.0.0.1:57433 127.0.0.1:57415 377360263 12 160000002ff90a0000000000 ..../....... +6937 21.530844927 127.0.0.1:57433 127.0.0.1:57415 377360275 22 1200000053921f000000000001000300000000000000 ....S................. +6939 21.531270266 127.0.0.1:57415 127.0.0.1:57433 3333398414 12 ffffffff2ff90a0000000000 ..../....... +6945 21.571695328 127.0.0.1:57415 127.0.0.1:57433 3333398426 12 feffffff3343010021430100 ....3C..!C.. +6948 21.633016109 127.0.0.1:57415 127.0.0.1:57433 3333398438 12 1a000000681e0b0000000000 ....h....... +6950 21.633236885 127.0.0.1:57415 127.0.0.1:57433 3333398450 26 16000000548f6340e25e314001000300000055921f0000000000 ....T.c@.^1@......U....... +6952 21.634032011 127.0.0.1:57433 127.0.0.1:57415 377360297 12 ffffffff681e0b0000000000 ....h....... +6954 21.634380817 127.0.0.1:57433 127.0.0.1:57415 377360309 12 1600000030f90a0000000000 ....0....... +6956 21.634557962 127.0.0.1:57433 127.0.0.1:57415 377360321 22 1200000055921f000000000001000300000000000000 ....U................. +6958 21.634805441 127.0.0.1:57415 127.0.0.1:57433 3333398476 12 ffffffff30f90a0000000000 ....0....... +6965 21.737108231 127.0.0.1:57415 127.0.0.1:57433 3333398488 12 1a000000691e0b0000000000 ....i....... +6967 21.737439394 127.0.0.1:57415 127.0.0.1:57433 3333398500 26 16000000548f6340e25e314001000300000057921f0000000000 ....T.c@.^1@......W....... +6969 21.737860918 127.0.0.1:57433 127.0.0.1:57415 377360343 12 ffffffff691e0b0000000000 ....i....... +6971 21.738654137 127.0.0.1:57433 127.0.0.1:57415 377360355 12 1600000031f90a0000000000 ....1....... +6973 21.738864899 127.0.0.1:57433 127.0.0.1:57415 377360367 22 1200000057921f000000000001000300000000000000 ....W................. +6975 21.739279270 127.0.0.1:57415 127.0.0.1:57433 3333398526 12 ffffffff31f90a0000000000 ....1....... +6979 21.805505753 127.0.0.1:57415 127.0.0.1:57433 3333398538 12 220000006a1e0b0000000000 "...j....... +6981 21.805843592 127.0.0.1:57415 127.0.0.1:57433 3333398550 34 1e0000001c2118d0c46f33bb010003000000de1102000000000048f423c39d01 .....!...o3...............H.#..... +6983 21.806034088 127.0.0.1:57415 127.0.0.1:57433 3333398584 12 430000006b1e0b0000000000 C...k....... +6985 21.806145191 127.0.0.1:57415 127.0.0.1:57433 3333398596 67 3f000000980433cb0cb47c380100030000000100000000de110200000000003d ?.....3...|8...................=B.....&......... +6987 21.806260109 127.0.0.1:57433 127.0.0.1:57415 377360389 12 ffffffff6a1e0b0000000000 ....j....... +6989 21.806502581 127.0.0.1:57433 127.0.0.1:57415 377360401 12 ffffffff6b1e0b0000000000 ....k....... +6991 21.807181597 127.0.0.1:57433 127.0.0.1:57415 377360413 12 3400000032f90a0000000000 4...2....... +6993 21.807381630 127.0.0.1:57433 127.0.0.1:57415 377360425 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............C... +6995 21.807701588 127.0.0.1:57415 127.0.0.1:57433 3333398663 12 ffffffff32f90a0000000000 ....2....... +6997 21.808798075 127.0.0.1:57415 127.0.0.1:57433 3333398675 12 1e0000006c1e0b0000000000 ....l....... +6999 21.809056282 127.0.0.1:57415 127.0.0.1:57433 3333398687 30 1a00000055ceff62b21b3a5001000300000059921f000000000000000000 ....U..b..:P......Y........... +7001 21.809404612 127.0.0.1:57433 127.0.0.1:57415 377360477 12 ffffffff6c1e0b0000000000 ....l....... +7003 21.809819221 127.0.0.1:57433 127.0.0.1:57415 377360489 12 1a00000033f90a0000000000 ....3....... +7005 21.809962749 127.0.0.1:57433 127.0.0.1:57415 377360501 26 1600000059921f00000000000100030000000000000000000000 ....Y..................... +7007 21.810250998 127.0.0.1:57415 127.0.0.1:57433 3333398717 12 ffffffff33f90a0000000000 ....3....... +7012 21.841450930 127.0.0.1:57415 127.0.0.1:57433 3333398729 12 1a0000006d1e0b0000000000 ....m....... +7014 21.841646910 127.0.0.1:57415 127.0.0.1:57433 3333398741 26 16000000548f6340e25e31400100030000005b921f0000000000 ....T.c@.^1@......[....... +7016 21.843841791 127.0.0.1:57433 127.0.0.1:57415 377360527 12 ffffffff6d1e0b0000000000 ....m....... +7018 21.844415665 127.0.0.1:57433 127.0.0.1:57415 377360539 12 1600000034f90a0000000000 ....4....... +7020 21.844578743 127.0.0.1:57433 127.0.0.1:57415 377360551 22 120000005b921f000000000001000300000000000000 ....[................. +7022 21.844821453 127.0.0.1:57415 127.0.0.1:57433 3333398767 12 ffffffff34f90a0000000000 ....4....... +7029 21.937037945 127.0.0.1:57433 127.0.0.1:57415 377360573 12 feffffff2243010033430100 ...."C..3C.. +7033 21.946355581 127.0.0.1:57415 127.0.0.1:57433 3333398779 12 1a0000006e1e0b0000000000 ....n....... +7035 21.946598053 127.0.0.1:57415 127.0.0.1:57433 3333398791 26 16000000548f6340e25e31400100030000005d921f0000000000 ....T.c@.^1@......]....... +7037 21.946846485 127.0.0.1:57433 127.0.0.1:57415 377360585 12 ffffffff6e1e0b0000000000 ....n....... +7039 21.947337151 127.0.0.1:57433 127.0.0.1:57415 377360597 12 1600000035f90a0000000000 ....5....... +7041 21.947541714 127.0.0.1:57433 127.0.0.1:57415 377360609 22 120000005d921f000000000001000300000000000000 ....]................. +7043 21.947912455 127.0.0.1:57415 127.0.0.1:57433 3333398817 12 ffffffff35f90a0000000000 ....5....... +7050 22.049592257 127.0.0.1:57415 127.0.0.1:57433 3333398829 12 1a0000006f1e0b0000000000 ....o....... +7052 22.049787283 127.0.0.1:57415 127.0.0.1:57433 3333398841 26 16000000548f6340e25e31400100030000005f921f0000000000 ....T.c@.^1@......_....... +7054 22.050304413 127.0.0.1:57433 127.0.0.1:57415 377360631 12 ffffffff6f1e0b0000000000 ....o....... +7056 22.050582886 127.0.0.1:57433 127.0.0.1:57415 377360643 12 1600000036f90a0000000000 ....6....... +7058 22.050742388 127.0.0.1:57433 127.0.0.1:57415 377360655 22 120000005f921f000000000001000300000000000000 ...._................. +7060 22.051025391 127.0.0.1:57415 127.0.0.1:57433 3333398867 12 ffffffff36f90a0000000000 ....6....... +7064 22.072351694 127.0.0.1:57415 127.0.0.1:57433 3333398879 12 feffffff3443010022430100 ....4C.."C.. +7066 22.110220194 127.0.0.1:57415 127.0.0.1:57433 3333398891 12 22000000701e0b0000000000 "...p....... +7068 22.110459328 127.0.0.1:57415 127.0.0.1:57433 3333398903 34 1e0000001c2118d0c46f33bb010003000000df110200000000007af523c39d01 .....!...o3...............z.#..... +7070 22.110602140 127.0.0.1:57415 127.0.0.1:57433 3333398937 12 43000000711e0b0000000000 C...q....... +7072 22.110715389 127.0.0.1:57415 127.0.0.1:57433 3333398949 67 3f000000980433cb0cb47c380100030000000100000000df110200000000003d ?.....3...|8...................=B.....&......... +7074 22.110849380 127.0.0.1:57433 127.0.0.1:57415 377360677 12 ffffffff701e0b0000000000 ....p....... +7076 22.111094475 127.0.0.1:57433 127.0.0.1:57415 377360689 12 ffffffff711e0b0000000000 ....q....... +7078 22.111875772 127.0.0.1:57433 127.0.0.1:57415 377360701 12 3400000037f90a0000000000 4...7....... +7080 22.112098932 127.0.0.1:57433 127.0.0.1:57415 377360713 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............8T8. +7082 22.112350225 127.0.0.1:57415 127.0.0.1:57433 3333399016 12 ffffffff37f90a0000000000 ....7....... +7084 22.113229990 127.0.0.1:57415 127.0.0.1:57433 3333399028 12 1e000000721e0b0000000000 ....r....... +7086 22.113434315 127.0.0.1:57415 127.0.0.1:57433 3333399040 30 1a00000055ceff62b21b3a5001000300000061921f000000000000000000 ....U..b..:P......a........... +7088 22.113791704 127.0.0.1:57433 127.0.0.1:57415 377360765 12 ffffffff721e0b0000000000 ....r....... +7090 22.114380598 127.0.0.1:57433 127.0.0.1:57415 377360777 12 1a00000038f90a0000000000 ....8....... +7092 22.114521027 127.0.0.1:57433 127.0.0.1:57415 377360789 26 1600000061921f00000000000100030000000000000000000000 ....a..................... +7094 22.114702463 127.0.0.1:57415 127.0.0.1:57433 3333399070 12 ffffffff38f90a0000000000 ....8....... +7102 22.152558565 127.0.0.1:57415 127.0.0.1:57433 3333399082 12 1a000000731e0b0000000000 ....s....... +7105 22.153567076 127.0.0.1:57415 127.0.0.1:57433 3333399094 26 16000000548f6340e25e314001000300000063921f0000000000 ....T.c@.^1@......c....... +7107 22.154007912 127.0.0.1:57433 127.0.0.1:57415 377360815 12 ffffffff731e0b0000000000 ....s....... +7109 22.154368162 127.0.0.1:57433 127.0.0.1:57415 377360827 12 1600000039f90a0000000000 ....9....... +7111 22.154527903 127.0.0.1:57433 127.0.0.1:57415 377360839 22 1200000063921f000000000001000300000000000000 ....c................. +7113 22.154834509 127.0.0.1:57415 127.0.0.1:57433 3333399120 12 ffffffff39f90a0000000000 ....9....... +7119 22.256584406 127.0.0.1:57415 127.0.0.1:57433 3333399132 12 1a000000741e0b0000000000 ....t....... +500 0.000000000 ::1:61584 ::1:49704 620681763 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +502 0.000438213 ::1:49704 ::1:61584 527217765 84 05000c03100000005400000002000000d016d016b9b900000600343937303400 ........T.................49704..........]...... +504 0.000645399 ::1:61584 ::1:49704 620681879 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +506 0.000884295 ::1:49704 ::1:61584 527217849 44 05000203100000002c0000000200000014000000000000000000000009e2966b ........,......................k.S.M..0.Sc.S +508 0.001123905 ::1:61584 ::1:49704 620681919 72 05000e03100000004800000003000000d016d016b9b900000100000001000100 ........H.......................K....k.F.@.`..Q. +510 0.001301765 ::1:49704 ::1:61584 527217893 56 05000f03100000003800000003000000d016d016b9b900000000000001000000 ........8............................].......... +512 0.001467705 ::1:61584 ::1:49704 620681991 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K...........k +514 0.003014326 ::1:49704 ::1:61584 527217949 28 05000203100000001c00000003000000040000000100000001000000 ............................ +516 0.003187418 ::1:61584 ::1:49704 620682087 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........k +518 0.003364801 ::1:49704 ::1:61584 527217977 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +520 0.003668547 ::1:61584 ::1:49704 620682147 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........k +522 0.003893137 ::1:49704 ::1:61584 527218069 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +524 0.004061699 ::1:61584 ::1:49704 620682267 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K...........k +526 0.004228115 ::1:49704 ::1:61584 527218101 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +528 0.004383326 ::1:61584 ::1:49704 620682391 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K...........k +530 0.004540443 ::1:49704 ::1:61584 527218133 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +532 0.004762411 ::1:61584 ::1:49704 620682509 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........k +534 0.004928827 ::1:49704 ::1:61584 527218165 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +536 0.005086184 ::1:61584 ::1:49704 620682629 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........k +538 0.005249023 ::1:49704 ::1:61584 527218197 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +540 0.005451441 ::1:61584 ::1:49704 620682759 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........k +542 0.005634546 ::1:49704 ::1:61584 527218229 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +544 0.005788326 ::1:61584 ::1:49704 620682889 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........k +546 0.005936623 ::1:49704 ::1:61584 527218261 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +548 0.006070852 ::1:61584 ::1:49704 620683031 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K...........k +550 0.006219149 ::1:49704 ::1:61584 527218293 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +552 0.006347418 ::1:61584 ::1:49704 620683147 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........k +556 0.006531954 ::1:49704 ::1:61584 527218325 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +558 0.006738663 ::1:61584 ::1:49704 620683277 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........k +560 0.006890297 ::1:49704 ::1:61584 527218357 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +562 0.007030010 ::1:61584 ::1:49704 620683405 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........k +564 0.007177830 ::1:49704 ::1:61584 527218389 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +566 0.007725954 ::1:61584 ::1:49704 620683531 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........k +568 0.007881641 ::1:49704 ::1:61584 527218421 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +570 0.008140087 ::1:61584 ::1:49704 620683663 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K...........k +572 0.008322239 ::1:49704 ::1:61584 527218453 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +598 0.122174978 ::1:61584 ::1:49704 620683815 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +600 0.122440338 ::1:49704 ::1:61584 527218485 44 05000203100000002c000000120000001400000000000000000000000226a681 ........,....................&.._..L....c... +602 0.123018503 ::1:61584 ::1:49704 620683855 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K.........&.. +604 0.124522686 ::1:49704 ::1:61584 527218529 28 05000203100000001c00000013000000040000000100000001000000 ............................ +606 0.124792814 ::1:61584 ::1:49704 620683963 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........&.. +608 0.124974489 ::1:49704 ::1:61584 527218557 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +610 0.125262499 ::1:61584 ::1:49704 620684023 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........&.. +612 0.125441790 ::1:49704 ::1:61584 527218649 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +614 0.125616074 ::1:61584 ::1:49704 620684155 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........&.. +616 0.125774384 ::1:49704 ::1:61584 527218681 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +618 0.125981092 ::1:61584 ::1:49704 620684291 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........&.. +620 0.126129627 ::1:49704 ::1:61584 527218713 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +622 0.126280546 ::1:61584 ::1:49704 620684421 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........&.. +624 0.126507998 ::1:49704 ::1:61584 527218745 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +626 0.126673460 ::1:61584 ::1:49704 620684553 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........&.. +628 0.127029896 ::1:49704 ::1:61584 527218777 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +630 0.127222300 ::1:61584 ::1:49704 620684695 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........&.. +632 0.127432823 ::1:49704 ::1:61584 527218809 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +634 0.127624989 ::1:61584 ::1:49704 620684837 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........&.. +636 0.127886057 ::1:49704 ::1:61584 527218841 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +638 0.128088236 ::1:61584 ::1:49704 620684991 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........&.. +640 0.128276825 ::1:49704 ::1:61584 527218873 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +642 0.128468275 ::1:61584 ::1:49704 620685119 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........&.. +644 0.128694773 ::1:49704 ::1:61584 527218905 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +646 0.129719019 ::1:61584 ::1:49704 620685261 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........&.. +648 0.129959345 ::1:49704 ::1:61584 527218937 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +650 0.130165339 ::1:61584 ::1:49704 620685401 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........&.. +652 0.130346775 ::1:49704 ::1:61584 527218969 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +658 0.147804022 ::1:61584 ::1:49704 620685539 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +660 0.147989273 ::1:49704 ::1:61584 527219001 44 05000203100000002c000000200000001400000000000000000000001fbe62ce ........,... .................b....M.D....[. +662 0.148186922 ::1:61584 ::1:49704 620685579 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K..........b. +664 0.149714708 ::1:49704 ::1:61584 527219045 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +666 0.149874926 ::1:61584 ::1:49704 620685683 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K..........b. +668 0.150046110 ::1:49704 ::1:61584 527219073 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +670 0.150281906 ::1:61584 ::1:49704 620685743 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K..........b. +672 0.150501728 ::1:49704 ::1:61584 527219165 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +674 0.150695324 ::1:61584 ::1:49704 620685871 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K..........b. +676 0.150866508 ::1:49704 ::1:61584 527219197 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +678 0.151060820 ::1:61584 ::1:49704 620686003 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K..........b. +680 0.151247501 ::1:49704 ::1:61584 527219229 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +682 0.151396751 ::1:61584 ::1:49704 620686129 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K..........b. +684 0.151561260 ::1:49704 ::1:61584 527219261 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +686 0.151763678 ::1:61584 ::1:49704 620686257 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K..........b. +688 0.151932001 ::1:49704 ::1:61584 527219293 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +690 0.152084827 ::1:61584 ::1:49704 620686395 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K..........b. +692 0.152249098 ::1:49704 ::1:61584 527219325 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +694 0.152398109 ::1:61584 ::1:49704 620686533 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K..........b. +696 0.152561903 ::1:49704 ::1:61584 527219357 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +698 0.152729988 ::1:61584 ::1:49704 620686683 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K..........b. +700 0.152902842 ::1:49704 ::1:61584 527219389 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +702 0.153051615 ::1:61584 ::1:49704 620686807 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K..........b. +704 0.153217077 ::1:49704 ::1:61584 527219421 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +706 0.153365612 ::1:61584 ::1:49704 620686945 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K..........b. +708 0.153529167 ::1:49704 ::1:61584 527219453 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +710 0.153720140 ::1:61584 ::1:49704 620687081 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K..........b. +712 0.153884172 ::1:49704 ::1:61584 527219485 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +714 0.154081345 ::1:61584 ::1:49704 620687215 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........b. +716 0.154246807 ::1:49704 ::1:61584 527219517 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +718 0.154406786 ::1:61584 ::1:49704 620687355 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K..........b. +720 0.154593706 ::1:49704 ::1:61584 527219549 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +778 0.267906666 ::1:61584 ::1:49704 620687501 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +780 0.268182516 ::1:49704 ::1:61584 527219581 44 05000203100000002c00000030000000140000000000000000000000bb573678 ........,...0................W6x5\!I..._! .. +782 0.268371105 ::1:61584 ::1:49704 620687541 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K.........W6x +784 0.270149946 ::1:49704 ::1:61584 527219625 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +786 0.270310879 ::1:61584 ::1:49704 620687653 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K.........W6x +788 0.270473003 ::1:49704 ::1:61584 527219653 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +790 0.270698309 ::1:61584 ::1:49704 620687713 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K.........W6x +792 0.270946980 ::1:49704 ::1:61584 527219745 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +794 0.271101713 ::1:61584 ::1:49704 620687849 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K.........W6x +796 0.271265268 ::1:49704 ::1:61584 527219777 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +798 0.271407604 ::1:61584 ::1:49704 620687989 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K.........W6x +800 0.271565676 ::1:49704 ::1:61584 527219809 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +802 0.271707296 ::1:61584 ::1:49704 620688123 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K.........W6x +804 0.271859884 ::1:49704 ::1:61584 527219841 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +806 0.272001266 ::1:61584 ::1:49704 620688259 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K.........W6x +808 0.272209644 ::1:49704 ::1:61584 527219873 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +810 0.272366524 ::1:61584 ::1:49704 620688405 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K.........W6x +812 0.272527695 ::1:49704 ::1:61584 527219905 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +814 0.272667885 ::1:61584 ::1:49704 620688551 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K.........W6x +816 0.272818089 ::1:49704 ::1:61584 527219937 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +818 0.272979498 ::1:61584 ::1:49704 620688709 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K.........W6x +820 0.273175240 ::1:49704 ::1:61584 527219969 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +822 0.273324013 ::1:61584 ::1:49704 620688841 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K.........W6x +824 0.273483753 ::1:49704 ::1:61584 527220001 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +826 0.273622036 ::1:61584 ::1:49704 620688987 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K.........W6x +828 0.273772717 ::1:49704 ::1:61584 527220033 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +830 0.273908138 ::1:61584 ::1:49704 620689131 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K.........W6x +832 0.274113417 ::1:49704 ::1:61584 527220065 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +834 0.274317265 ::1:61584 ::1:49704 620689273 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K.........W6x +836 0.274486303 ::1:49704 ::1:61584 527220097 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +838 0.274635553 ::1:61584 ::1:49704 620689421 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K.........W6x +840 0.274820805 ::1:49704 ::1:61584 527220129 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +887 0.415358067 ::1:61584 ::1:49704 620689575 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +889 0.415589809 ::1:49704 ::1:61584 527220161 44 05000203100000002c0000004000000014000000000000000000000036173fa4 ........,...@...............6.?.FR.@..'a./}b +891 0.415823460 ::1:61584 ::1:49704 620689615 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........6.?. +893 0.417497635 ::1:49704 ::1:61584 527220205 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +895 0.417720079 ::1:61584 ::1:49704 620689707 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........6.?. +897 0.417896032 ::1:49704 ::1:61584 527220233 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +899 0.418177128 ::1:61584 ::1:49704 620689767 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........6.?. +901 0.418409348 ::1:49704 ::1:61584 527220325 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +903 0.418619633 ::1:61584 ::1:49704 620689883 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........6.?. +905 0.418898821 ::1:49704 ::1:61584 527220357 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +907 0.419066191 ::1:61584 ::1:49704 620690003 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........6.?. +909 0.419243097 ::1:49704 ::1:61584 527220389 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +911 0.419407368 ::1:61584 ::1:49704 620690117 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........6.?. +913 0.419606924 ::1:49704 ::1:61584 527220421 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +915 0.419775724 ::1:61584 ::1:49704 620690233 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........6.?. +917 0.419952631 ::1:49704 ::1:61584 527220453 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +919 0.420110941 ::1:61584 ::1:49704 620690359 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........6.?. +921 0.420283318 ::1:49704 ::1:61584 527220485 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +923 0.420444012 ::1:61584 ::1:49704 620690485 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........6.?. +925 0.420660496 ::1:49704 ::1:61584 527220517 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +927 0.420824289 ::1:61584 ::1:49704 620690623 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........6.?. +929 0.421001911 ::1:49704 ::1:61584 527220549 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +931 0.421159267 ::1:61584 ::1:49704 620690735 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........6.?. +933 0.421358109 ::1:49704 ::1:61584 527220581 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +935 0.421535492 ::1:61584 ::1:49704 620690861 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........6.?. +937 0.421779633 ::1:49704 ::1:61584 527220613 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +939 0.421941996 ::1:61584 ::1:49704 620690985 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........6.?. +941 0.422116280 ::1:49704 ::1:61584 527220645 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +943 0.422368288 ::1:61584 ::1:49704 620691107 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........6.?. +945 0.422563314 ::1:49704 ::1:61584 527220677 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +947 0.422748566 ::1:61584 ::1:49704 620691235 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........6.?. +949 0.422941208 ::1:49704 ::1:61584 527220709 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +951 0.423107862 ::1:61584 ::1:49704 620691369 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........6.?. +953 0.423279762 ::1:49704 ::1:61584 527220741 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +955 0.423441648 ::1:61584 ::1:49704 620691499 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........6.?. +957 0.423677444 ::1:49704 ::1:61584 527220773 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +2826 6.945207596 ::1:61584 ::1:49704 620691627 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +2828 6.945486307 ::1:49704 ::1:61584 527220805 44 05000203100000002c00000052000000140000000000000000000000c2b9b576 ........,...R..................v.).F.gRD.X.s +2830 6.945771217 ::1:61584 ::1:49704 620691667 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K...........v +2832 6.948055267 ::1:49704 ::1:61584 527220849 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +2834 6.948267937 ::1:61584 ::1:49704 620691767 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K...........v +2836 6.948575974 ::1:49704 ::1:61584 527220877 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +2838 6.948970795 ::1:61584 ::1:49704 620691827 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K...........v +2840 6.949391127 ::1:49704 ::1:61584 527220969 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +2842 6.949593782 ::1:61584 ::1:49704 620691951 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K...........v +2844 6.949832678 ::1:49704 ::1:61584 527221001 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +2846 6.950011015 ::1:61584 ::1:49704 620692079 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K...........v +2848 6.950309515 ::1:49704 ::1:61584 527221033 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +2850 6.950502396 ::1:61584 ::1:49704 620692201 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K...........v +2852 6.950731993 ::1:49704 ::1:61584 527221065 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +2854 6.950914383 ::1:61584 ::1:49704 620692325 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K...........v +2856 6.951221704 ::1:49704 ::1:61584 527221097 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +2858 6.951417685 ::1:61584 ::1:49704 620692459 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K...........v +2860 6.951671362 ::1:49704 ::1:61584 527221129 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +2862 6.951906443 ::1:61584 ::1:49704 620692593 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K...........v +2864 6.952241421 ::1:49704 ::1:61584 527221161 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +2866 6.952469587 ::1:61584 ::1:49704 620692739 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K...........v +2868 6.952728510 ::1:49704 ::1:61584 527221193 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +2870 6.952963591 ::1:61584 ::1:49704 620692859 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K...........v +2872 6.953241825 ::1:49704 ::1:61584 527221225 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +2874 6.953480959 ::1:61584 ::1:49704 620692993 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K...........v +2876 6.953731775 ::1:49704 ::1:61584 527221257 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +2878 6.953969002 ::1:61584 ::1:49704 620693125 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K...........v +2880 6.954260349 ::1:49704 ::1:61584 527221289 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +2882 6.954584122 ::1:61584 ::1:49704 620693255 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K...........v +2884 6.954884052 ::1:49704 ::1:61584 527221321 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +2886 6.955170155 ::1:61584 ::1:49704 620693399 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K...........v +2888 6.955428123 ::1:49704 ::1:61584 527221353 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +2890 6.955663919 ::1:61584 ::1:49704 620693547 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K...........v +2892 6.955847025 ::1:49704 ::1:61584 527221385 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +2894 6.956200123 ::1:61584 ::1:49704 620693693 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K...........v +2896 6.956381083 ::1:49704 ::1:61584 527221417 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +2918 7.034266949 ::1:61584 ::1:49704 620693851 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +2920 7.034463882 ::1:49704 ::1:61584 527221449 44 05000203100000002c00000064000000140000000000000000000000cb0c73c3 ........,...d.................s.%dqM.......] +2922 7.034697533 ::1:61584 ::1:49704 620693891 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........s. +2924 7.036951065 ::1:49704 ::1:61584 527221493 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +2926 7.037211418 ::1:61584 ::1:49704 620693975 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........s. +2928 7.037439823 ::1:49704 ::1:61584 527221521 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +2930 7.037759304 ::1:61584 ::1:49704 620694035 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........s. +2932 7.037976265 ::1:49704 ::1:61584 527221613 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +2934 7.038219690 ::1:61584 ::1:49704 620694143 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........s. +2936 7.038393497 ::1:49704 ::1:61584 527221645 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +2938 7.038618326 ::1:61584 ::1:49704 620694255 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........s. +2940 7.038825750 ::1:49704 ::1:61584 527221677 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +2942 7.038963556 ::1:61584 ::1:49704 620694361 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........s. +2944 7.039167643 ::1:49704 ::1:61584 527221709 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +2946 7.039433718 ::1:61584 ::1:49704 620694469 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........s. +2948 7.039587736 ::1:49704 ::1:61584 527221741 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +2950 7.039798737 ::1:61584 ::1:49704 620694587 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........s. +2952 7.040117979 ::1:49704 ::1:61584 527221773 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +2954 7.040294409 ::1:61584 ::1:49704 620694705 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........s. +2956 7.040523767 ::1:49704 ::1:61584 527221805 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +2958 7.040660620 ::1:61584 ::1:49704 620694835 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........s. +2960 7.040835619 ::1:49704 ::1:61584 527221837 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +2962 7.041055679 ::1:61584 ::1:49704 620694939 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........s. +2964 7.041524172 ::1:49704 ::1:61584 527221869 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +2966 7.041650772 ::1:61584 ::1:49704 620695057 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........s. +2968 7.041820765 ::1:49704 ::1:61584 527221901 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +2970 7.042020321 ::1:61584 ::1:49704 620695173 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........s. +2972 7.042289734 ::1:49704 ::1:61584 527221933 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +2974 7.042985916 ::1:61584 ::1:49704 620695287 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........s. +2976 7.043224812 ::1:49704 ::1:61584 527221965 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +2978 7.043523073 ::1:61584 ::1:49704 620695415 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........s. +2980 7.043735027 ::1:49704 ::1:61584 527221997 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +2982 7.043989182 ::1:61584 ::1:49704 620695535 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........s. +2984 7.044208765 ::1:49704 ::1:61584 527222029 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +2986 7.044447899 ::1:61584 ::1:49704 620695655 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........s. +2988 7.044613600 ::1:49704 ::1:61584 527222061 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +2990 7.044858694 ::1:61584 ::1:49704 620695777 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........s. +2992 7.045030355 ::1:49704 ::1:61584 527222093 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +2994 7.045417309 ::1:61584 ::1:49704 620695911 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........s. +2996 7.045583963 ::1:49704 ::1:61584 527222125 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +2998 7.045820236 ::1:61584 ::1:49704 620696043 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........s. +3000 7.045982361 ::1:49704 ::1:61584 527222157 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3002 7.046272516 ::1:61584 ::1:49704 620696173 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........s. +3004 7.046539307 ::1:49704 ::1:61584 527222189 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3006 7.046902657 ::1:61584 ::1:49704 620696311 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........s. +3008 7.047113180 ::1:49704 ::1:61584 527222221 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3010 7.047345161 ::1:61584 ::1:49704 620696455 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........s. +3012 7.047511816 ::1:49704 ::1:61584 527222253 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3014 7.047701836 ::1:61584 ::1:49704 620696599 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........s. +3016 7.047862530 ::1:49704 ::1:61584 527222285 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3018 7.048047781 ::1:61584 ::1:49704 620696715 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........s. +3020 7.048206091 ::1:49704 ::1:61584 527222317 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3022 7.048424721 ::1:61584 ::1:49704 620696845 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........s. +3024 7.048583031 ::1:49704 ::1:61584 527222349 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3026 7.048876286 ::1:61584 ::1:49704 620696983 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........s. +3028 7.049034834 ::1:49704 ::1:61584 527222381 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3030 7.049320221 ::1:61584 ::1:49704 620697113 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........s. +3032 7.049476624 ::1:49704 ::1:61584 527222413 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3034 7.049683094 ::1:61584 ::1:49704 620697235 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........s. +3036 7.049835920 ::1:49704 ::1:61584 527222445 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3038 7.050015926 ::1:61584 ::1:49704 620697357 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........s. +3040 7.050401688 ::1:49704 ::1:61584 527222477 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3042 7.050653696 ::1:61584 ::1:49704 620697491 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........s. +3044 7.050836086 ::1:49704 ::1:61584 527222509 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3046 7.051035166 ::1:61584 ::1:49704 620697619 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........s. +3048 7.051258802 ::1:49704 ::1:61584 527222541 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3050 7.083638906 ::1:61584 ::1:49704 620697743 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........s. +3052 7.084129095 ::1:49704 ::1:61584 527222573 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3070 7.120299578 ::1:61584 ::1:49704 620698259 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3072 7.120506525 ::1:49704 ::1:61584 527222601 44 05000203100000002c0000008600000014000000000000000000000080339a69 ........,....................3.i[.$G.M..xz.K +3074 7.120724201 ::1:61584 ::1:49704 620698299 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K.........3.i +3084 7.122637987 ::1:49704 ::1:61584 527222645 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3086 7.122870207 ::1:61584 ::1:49704 620698411 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........3.i +3088 7.123056173 ::1:49704 ::1:61584 527222673 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3090 7.123336315 ::1:61584 ::1:49704 620698471 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........3.i +3092 7.123602867 ::1:49704 ::1:61584 527222765 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3094 7.123867035 ::1:61584 ::1:49704 620698607 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........3.i +3096 7.124051809 ::1:49704 ::1:61584 527222797 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3098 7.124268770 ::1:61584 ::1:49704 620698747 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........3.i +3100 7.124444485 ::1:49704 ::1:61584 527222829 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3102 7.124621630 ::1:61584 ::1:49704 620698881 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........3.i +3104 7.124847651 ::1:49704 ::1:61584 527222861 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3106 7.125009060 ::1:61584 ::1:49704 620699017 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3108 7.125179291 ::1:49704 ::1:61584 527222893 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3110 7.125326633 ::1:61584 ::1:49704 620699163 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3112 7.125487328 ::1:49704 ::1:61584 527222925 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3114 7.125627756 ::1:61584 ::1:49704 620699309 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K.........3.i +3116 7.125811100 ::1:49704 ::1:61584 527222957 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3118 7.126024008 ::1:61584 ::1:49704 620699467 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........3.i +3120 7.126207829 ::1:49704 ::1:61584 527222989 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3122 7.126405954 ::1:61584 ::1:49704 620699599 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3124 7.126571894 ::1:49704 ::1:61584 527223021 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3126 7.126765490 ::1:61584 ::1:49704 620699745 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K.........3.i +3128 7.126973391 ::1:49704 ::1:61584 527223053 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3130 7.127202988 ::1:61584 ::1:49704 620699889 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........3.i +3132 7.127386808 ::1:49704 ::1:61584 527223085 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3134 7.127668858 ::1:61584 ::1:49704 620700031 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K.........3.i +3136 7.127861023 ::1:49704 ::1:61584 527223117 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3138 7.128058672 ::1:61584 ::1:49704 620700191 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K.........3.i +3140 7.128229380 ::1:49704 ::1:61584 527223149 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3142 7.128455400 ::1:61584 ::1:49704 620700347 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........3.i +3144 7.128619909 ::1:49704 ::1:61584 527223181 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3146 7.128857613 ::1:61584 ::1:49704 620700501 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........3.i +3148 7.129057407 ::1:49704 ::1:61584 527223213 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3150 7.129230499 ::1:61584 ::1:49704 620700647 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........3.i +3152 7.129389524 ::1:49704 ::1:61584 527223245 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3154 7.129552126 ::1:61584 ::1:49704 620700801 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K.........3.i +3156 7.129708767 ::1:49704 ::1:61584 527223277 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3158 7.129976511 ::1:61584 ::1:49704 620700951 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........3.i +3160 7.130142927 ::1:49704 ::1:61584 527223309 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3162 7.130330801 ::1:61584 ::1:49704 620701103 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........3.i +3164 7.130491495 ::1:49704 ::1:61584 527223341 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3166 7.130665064 ::1:61584 ::1:49704 620701243 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........3.i +3168 7.130846500 ::1:49704 ::1:61584 527223373 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3170 7.131041527 ::1:61584 ::1:49704 620701391 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K.........3.i +3172 7.131209612 ::1:49704 ::1:61584 527223405 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3174 7.131402731 ::1:61584 ::1:49704 620701553 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K.........3.i +3176 7.131569147 ::1:49704 ::1:61584 527223437 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3178 7.131756067 ::1:61584 ::1:49704 620701725 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K.........3.i +3180 7.131913424 ::1:49704 ::1:61584 527223469 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3186 7.140454054 ::1:61584 ::1:49704 620701869 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3188 7.140626907 ::1:49704 ::1:61584 527223501 44 05000203100000002c000000a000000014000000000000000000000000d0e743 ........,......................C..3G..o...&. +3190 7.140837193 ::1:61584 ::1:49704 620701909 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K...........C +3192 7.142642021 ::1:49704 ::1:61584 527223545 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3194 7.142882824 ::1:61584 ::1:49704 620702037 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........C +3196 7.143133402 ::1:49704 ::1:61584 527223573 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3198 7.143397093 ::1:61584 ::1:49704 620702097 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K...........C +3200 7.143709183 ::1:49704 ::1:61584 527223665 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3202 7.144004822 ::1:61584 ::1:49704 620702249 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K...........C +3204 7.144263983 ::1:49704 ::1:61584 527223697 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3206 7.144436121 ::1:61584 ::1:49704 620702405 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K...........C +3208 7.144617796 ::1:49704 ::1:61584 527223729 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3210 7.144829512 ::1:61584 ::1:49704 620702555 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K...........C +3212 7.145004988 ::1:49704 ::1:61584 527223761 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3214 7.145196676 ::1:61584 ::1:49704 620702707 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K...........C +3216 7.145369530 ::1:49704 ::1:61584 527223793 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3218 7.145562649 ::1:61584 ::1:49704 620702869 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K...........C +3220 7.145727634 ::1:49704 ::1:61584 527223825 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3222 7.145962715 ::1:61584 ::1:49704 620703031 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K...........C +3224 7.146127701 ::1:49704 ::1:61584 527223857 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3226 7.146285057 ::1:61584 ::1:49704 620703205 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K...........C +3228 7.146449566 ::1:49704 ::1:61584 527223889 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3230 7.146604300 ::1:61584 ::1:49704 620703353 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K...........C +3232 7.146792889 ::1:49704 ::1:61584 527223921 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3234 7.146934271 ::1:61584 ::1:49704 620703515 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K...........C +3236 7.147104263 ::1:49704 ::1:61584 527223953 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3238 7.147261620 ::1:61584 ::1:49704 620703675 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K...........C +3240 7.147425175 ::1:49704 ::1:61584 527223985 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3242 7.147656202 ::1:61584 ::1:49704 620703833 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K...........C +3244 7.147841215 ::1:49704 ::1:61584 527224017 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3246 7.148002863 ::1:61584 ::1:49704 620704003 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K...........C +3248 7.148167610 ::1:49704 ::1:61584 527224049 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3254 7.154422998 ::1:61584 ::1:49704 620704185 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3256 7.154586792 ::1:49704 ::1:61584 527224081 44 05000203100000002c000000b0000000140000000000000000000000beefab51 ........,......................Q^n.@.C...... +3258 7.154812813 ::1:61584 ::1:49704 620704225 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K...........Q +3260 7.156443596 ::1:49704 ::1:61584 527224125 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3262 7.156622648 ::1:61584 ::1:49704 620704321 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K...........Q +3264 7.156826973 ::1:49704 ::1:61584 527224153 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3266 7.157087803 ::1:61584 ::1:49704 620704381 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........Q +3268 7.157273769 ::1:49704 ::1:61584 527224245 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3270 7.157436371 ::1:61584 ::1:49704 620704501 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K...........Q +3272 7.157598257 ::1:49704 ::1:61584 527224277 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3274 7.157789707 ::1:61584 ::1:49704 620704625 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K...........Q +3276 7.157947540 ::1:49704 ::1:61584 527224309 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3278 7.158117533 ::1:61584 ::1:49704 620704743 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K...........Q +3280 7.158281803 ::1:49704 ::1:61584 527224341 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3282 7.158438921 ::1:61584 ::1:49704 620704863 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3284 7.158660650 ::1:49704 ::1:61584 527224373 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3286 7.158844948 ::1:61584 ::1:49704 620704993 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3288 7.159034967 ::1:49704 ::1:61584 527224405 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3290 7.159224749 ::1:61584 ::1:49704 620705123 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........Q +3292 7.159385920 ::1:49704 ::1:61584 527224437 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3294 7.159539223 ::1:61584 ::1:49704 620705265 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K...........Q +3296 7.159695387 ::1:49704 ::1:61584 527224469 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3298 7.159928799 ::1:61584 ::1:49704 620705381 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3300 7.160115004 ::1:49704 ::1:61584 527224501 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3302 7.160278797 ::1:61584 ::1:49704 620705511 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........Q +3304 7.160437346 ::1:49704 ::1:61584 527224533 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3306 7.160589933 ::1:61584 ::1:49704 620705639 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........Q +3308 7.160773993 ::1:49704 ::1:61584 527224565 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3310 7.161034346 ::1:61584 ::1:49704 620705765 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K...........Q +3312 7.161198378 ::1:49704 ::1:61584 527224597 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3314 7.161389828 ::1:61584 ::1:49704 620705891 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........Q +3316 7.161551476 ::1:49704 ::1:61584 527224629 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3318 7.161714554 ::1:61584 ::1:49704 620706023 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........Q +3320 7.161954403 ::1:49704 ::1:61584 527224661 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3322 7.162117720 ::1:61584 ::1:49704 620706153 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K...........Q +3324 7.162277222 ::1:49704 ::1:61584 527224693 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3326 7.162438154 ::1:61584 ::1:49704 620706291 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K...........Q +3328 7.162596226 ::1:49704 ::1:61584 527224725 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3330 7.162787199 ::1:61584 ::1:49704 620706427 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K...........Q +3332 7.162927628 ::1:49704 ::1:61584 527224757 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3334 7.163114309 ::1:61584 ::1:49704 620706559 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K...........Q +3336 7.163303614 ::1:49704 ::1:61584 527224789 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3338 7.163469315 ::1:61584 ::1:49704 620706701 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K...........Q +3340 7.163629532 ::1:49704 ::1:61584 527224821 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3368 7.201122999 ::1:61584 ::1:49704 620706849 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........s. +3370 7.201478243 ::1:49704 ::1:61584 527224853 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3390 7.274314404 ::1:61584 ::1:49704 620707139 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........s. +3392 7.274622679 ::1:49704 ::1:61584 527224881 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +6121 0.000000000 fe80::3608:256c:365:cc73:61611 fe80::3608:256c:365:cc73:55555 1690328998 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +6141 0.067667723 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61611 3039006211 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +1446 0.000000000 fe80::3608:256c:365:cc73:61586 fe80::3608:256c:365:cc73:55555 3644926096 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +1494 0.084698200 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61586 3205959160 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +970 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148891347 1284 17030304ff000000000000054f473b6202dc3119c2af888bcee71d6e4daa0042 ............OG;b..1........nM..B.......k..%..... +993 0.005445004 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088298882 54 170303003100000000000005d6f813cb0faf09d03244dd904448149420b4339e ....1...............2D..DH.. .3......"}.c.K%p.I. +995 0.005853653 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148892631 105 1703030064000000000000055034e4969ba29c267054e8f85549a4e590991de0 ....d.......P4.....&pT..UI.......B.....Er....!.. +997 0.006574631 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088298936 264 170303010300000000000005d7d4fc7de8ca50fd62b519a1d7cb9e7018ae6e70 ...............}..P.b......p..np..k..P..O..#.x.. +999 0.007004499 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299200 34 170303001d00000000000005d83476df0590fc36d0cee7c7f10bfa1b3857dac9 .............4v....6........8W..Ep +3495 7.226697206 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148892736 1284 17030304ff00000000000005519da91a703542677a4919d8baab2218be054f43 ............Q...p5BgzI...."...OC..[.p.`..*o...e. +3497 7.232026100 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299234 54 170303003100000000000005d989e2c2797754dea7a63e0fefb192522dca1bf3 ....1...........ywT...>....R-...Cj..n.2.....9=M. +3499 7.232409716 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148894020 117 17030300700000000000000552710de92c0e919a86ea8475b5f7c5abd3d3561d ....p.......Rq..,......u......V..gr=_.=..}...... +3501 7.235041857 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299288 173 17030300a800000000000005dac1248615d039351a66ad7aedc8ef4d9abf3940 ..............$...95.f.z...M..9@......!gs"..zJ.q +3505 7.236558914 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148894137 1284 17030304ff00000000000005535c0ee85234b336e65052620f64cfe3fa53b6f0 ............S\..R4.6.PRb.d...S...f.6..y...M^.}.. +3507 7.240777731 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299461 54 170303003100000000000005dba68daa6a744714983f01e84822a330be8163b9 ....1...........jtG..?..H".0..c.R.....?.G.E.@.L. +3509 7.241244078 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148895421 117 1703030070000000000000055468bd43e98cc2c8743e97251ded19fbfb701a9b ....p.......Th.C....t>.%.....p...A#.FTw$..[....z +3511 7.243199348 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299515 173 17030300a800000000000005dc7594b8ca23b5068cf5815c23a38fa55b604f0f .............u...#.....\#...[`O.....*..k.`h..V.] +3532 7.253540516 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148895538 1285 170303050000000000000005559c8818d9db6d1144f4163da130205051bb3a21 ............U.....m.D..=.0 PQ.:!...(I..a...<.F.. +3534 7.258581161 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299688 54 170303003100000000000005dd446cab5f8b54cb020c0c3c07693004cae53649 ....1........Dl._.T....<.i0...6I.N..ehAUe...\... +3536 7.258949041 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148896823 130 170303007d0000000000000556b48d1bce63805a0e34ad2be2322f65c33a27d5 ....}.......V....c.Z.4.+.2/e.:'.b......H;.S*.p.. +3538 7.261799812 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299742 173 17030300a800000000000005de20cff9abc0822c4770a35d640be26f092009a1 ............. .....,Gp.]d..o. ...A)q........h... +3540 7.262778282 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148896953 1285 17030305000000000000000557f5c4680337ac18362637bb2610718de4eb0307 ............W..h.7..6&7.&.q..........}.......... +3554 7.267250538 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299915 54 170303003100000000000005df41a54fce1429ce872a3ce9fbaef0c6226666af ....1........A.O..)..*<....."ff./...<..y..%..\.s +3556 7.267700672 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148898238 130 170303007d00000000000005587f33561c1dd86052290fec3c9117d90fe11ad3 ....}.......X.3V...`R)..<.......;..+r.p.y..sw... +3558 7.269610167 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088299969 173 17030300a800000000000005e053ce7569eede1f812070c1ba39c6c6ff30c4fc .............S.ui.... p..9...0..U.F{..r>4.I.a... +1936 0.000000000 fe80::3608:256c:365:cc73:61592 fe80::3608:256c:365:cc73:55555 2388693417 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +2035 0.369484186 fe80::3608:256c:365:cc73:61592 fe80::3608:256c:365:cc73:55555 2388693622 508 000001fc00006b92000000000000000b00010000000002000000100007025343 ......k.......................SCHNEIDR......M.DE +2694 2.548487663 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61592 1215815759 1990 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1861..Content-T +493 0.000000000 ::1:61583 ::1:135 3469307614 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +495 0.000567436 ::1:135 ::1:61583 3760738673 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +594 0.123856783 ::1:61583 ::1:135 3469307770 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +596 0.124516249 ::1:135 ::1:61583 3760738825 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +654 0.149388313 ::1:61583 ::1:135 3469307926 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +656 0.150151730 ::1:135 ::1:61583 3760738977 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +774 0.269668818 ::1:61583 ::1:135 3469308082 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +776 0.270303726 ::1:135 ::1:61583 3760739129 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +883 0.417142868 ::1:61583 ::1:135 3469308238 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +885 0.417762518 ::1:135 ::1:61583 3760739281 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2822 6.946524620 ::1:61583 ::1:135 3469308394 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +2824 6.947450876 ::1:135 ::1:61583 3760739433 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2914 7.035827875 ::1:61583 ::1:135 3469308550 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +2916 7.036532402 ::1:135 ::1:61583 3760739585 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3066 7.122006893 ::1:61583 ::1:135 3469308706 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3068 7.122633457 ::1:135 ::1:61583 3760739737 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3182 7.142160892 ::1:61583 ::1:135 3469308862 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3184 7.142865896 ::1:135 ::1:61583 3760739889 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3250 7.156220675 ::1:61583 ::1:135 3469309018 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3252 7.156780005 ::1:135 ::1:61583 3760740041 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +857 0.000000000 ::1:61585 ::1:32571 1463476294 275 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +859 0.001007557 ::1:32571 ::1:61585 318337345 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +861 0.002150774 ::1:61585 ::1:32571 1463476569 291 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +863 0.006150007 ::1:32571 ::1:61585 318338241 734 485454502f312e3120323030204f4b0d0a43616368652d436f6e74726f6c3a20 HTTP/1.1 200 OK..Cache-Control: public,max-age=1 +6486 0.000000000 fe80::3608:256c:365:cc73:61614 fe80::3608:256c:365:cc73:55555 2669435897 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +6492 0.000274897 fe80::3608:256c:365:cc73:61614 fe80::3608:256c:365:cc73:55555 2669436102 456 000001c80000c07f000000000000000b00010000000002000000100007025343 ..............................SCHNEIDR......M.DE +7098 2.215409040 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61614 1736395531 1280 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1151..Content-T +4702 0.000000000 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116248973 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +4704 0.000290394 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116249024 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +4706 0.001743078 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600993893 1 0a . +4708 0.002852917 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116249047 5 160100006e ....n +4710 0.002984047 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116249052 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +4712 0.003839254 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600993894 5 160100010f ..... +4714 0.004065275 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600993899 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +4716 0.005298138 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116249162 5 1601000079 ....y +4718 0.005436420 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116249167 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +4720 0.006587505 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600994170 5 140100001d ..... +4722 0.006758690 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600994175 29 a11b3019a0030a0100a312041001000000606604c5c3e1644300000000 ..0..............`f....dC.... +4724 0.007505655 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116249288 21 1100000001000000e5804f5e640ecc660100000058 ..........O^d..f....X +4726 0.007724524 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600994204 21 1100000001000000e7be080d32a9ec3a010000004a ............2..:....J +4728 0.008275986 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116249309 1229 c904000001000000661f228111707681020000002cb6f69dd2a181226cbeff7f ........f."..pv.....,......"l...m....__..e...g.. +4730 0.008684635 fe80::3608:256c:365:cc73:64442 fe80::3608:256c:365:cc73:808 2116250538 21 1100000001000000791e0bf6d4b539860300000015 ........y.....9...... +4732 0.011788607 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 3600994225 21 1100000001000000ca897570e120e51b02000000f3 ..........up. ....... +2345 0.000000000 ::1:61596 ::1:80 2416913730 347 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +2347 0.001126289 ::1:80 ::1:61596 2656615485 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +2349 0.002493382 ::1:61596 ::1:80 2416914077 354 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +2353 0.005363941 ::1:80 ::1:61596 2656616381 25 485454502f312e312031303020436f6e74696e75650d0a0d0a HTTP/1.1 100 Continue.... +2355 0.005640984 ::1:61596 ::1:80 2416914431 23 224576656e74486973746f72697a65725f313838363822 "EventHistorizer_18868" +2357 0.006373405 ::1:80 ::1:61596 2656616406 176 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 0..Server: Micr +47 0.000000000 ::1:61582 ::1:80 479906212 347 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +49 0.001169443 ::1:80 ::1:61582 3678404609 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +51 0.002240181 ::1:61582 ::1:80 479906559 354 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +63 0.006800890 ::1:80 ::1:61582 3678405505 25 485454502f312e312031303020436f6e74696e75650d0a0d0a HTTP/1.1 100 Continue.... +65 0.007089376 ::1:61582 ::1:80 479906913 22 224576656e74486973746f72697a65725f3735363022 "EventHistorizer_7560" +69 0.007962465 ::1:80 ::1:61582 3678405530 176 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 0..Server: Micr diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..f83063d Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..7cd698b Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_135-to-__1_61583.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_135-to-__1_61583.bin new file mode 100644 index 0000000..230a0ba Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_135-to-__1_61583.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_32571-to-__1_61585.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_32571-to-__1_61585.bin new file mode 100644 index 0000000..88f9ed6 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_32571-to-__1_61585.bin @@ -0,0 +1,28 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworicZM1hk6NEh51QwMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAOKs+HV11NwBAAAAAA== +Date: Sat, 25 Apr 2026 05:36:26 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 200 OK +Cache-Control: public,max-age=15770000 +Content-Type: image/svg+xml +Last-Modified: Mon, 06 Apr 2020 03:33:02 GMT +Accept-Ranges: bytes +ETag: "1d60bc413576a8a" +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAACnqdJNo3PoQgAAAAA= +Date: Sat, 25 Apr 2026 05:36:26 GMT +Content-Length: 394 + + + + + \ No newline at end of file diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_49704-to-__1_61584.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_49704-to-__1_61584.bin new file mode 100644 index 0000000..07132b5 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_49704-to-__1_61584.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61582-to-__1_80.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61582-to-__1_80.bin new file mode 100644 index 0000000..f91d84b --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61582-to-__1_80.bin @@ -0,0 +1,16 @@ +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate YIGCBgYrBgEFBQKgeDB2oDAwLgYKKwYBBAGCNwICCgYJKoZIgvcSAQICBgkqhkiG9xIBAgIGCisGAQQBgjcCAh6iQgRATlRMTVNTUAABAAAAl7II4gkACQA3AAAADwAPACgAAAAKAGFKAAAAD0RFU0tUT1AtNkpMM0tLT1dPUktHUk9VUA== +Host: localhost +Content-Length: 0 + +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAAD1SNEkvNh8nek48HExNzlGujEgQQAQAAAPxMRdIxmzu4AAAAAA== +Host: localhost +Content-Length: 22 +Expect: 100-continue + +"EventHistorizer_7560" \ No newline at end of file diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61583-to-__1_135.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61583-to-__1_135.bin new file mode 100644 index 0000000..ba9cc67 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61583-to-__1_135.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61584-to-__1_49704.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61584-to-__1_49704.bin new file mode 100644 index 0000000..bccf9c7 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61584-to-__1_49704.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61585-to-__1_32571.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61585-to-__1_32571.bin new file mode 100644 index 0000000..068d48c --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61585-to-__1_32571.bin @@ -0,0 +1,8 @@ +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate YGwGBisGAQUFAqBiMGCgGjAYBgorBgEEAYI3AgIKBgorBgEEAYI3AgIeokIEQE5UTE1TU1AAAQAAAJeyCOIJAAkANwAAAA8ADwAoAAAACgBhSgAAAA9ERVNLVE9QLTZKTDNLS09XT1JLR1JPVVA= +Host: localhost:32571 + +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAAD93f0rW1ZV+K+8VPULyx6ZqjEgQQAQAAAG4r9lX/1ZxBAAAAAA== +Host: localhost:32571 + diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61596-to-__1_80.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61596-to-__1_80.bin new file mode 100644 index 0000000..06691c4 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_61596-to-__1_80.bin @@ -0,0 +1,16 @@ +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate YIGCBgYrBgEFBQKgeDB2oDAwLgYKKwYBBAGCNwICCgYJKoZIgvcSAQICBgkqhkiG9xIBAgIGCisGAQQBgjcCAh6iQgRATlRMTVNTUAABAAAAl7II4gkACQA3AAAADwAPACgAAAAKAGFKAAAAD0RFU0tUT1AtNkpMM0tLT1dPUktHUk9VUA== +Host: localhost +Content-Length: 0 + +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAAD9SBUG6uKBI37AM6LNpmjjajEgQQAQAAAJxakHivvSp7AAAAAA== +Host: localhost +Content-Length: 23 +Expect: 100-continue + +"EventHistorizer_18868" \ No newline at end of file diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_80-to-__1_61582.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_80-to-__1_61582.bin new file mode 100644 index 0000000..e872aa6 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_80-to-__1_61582.bin @@ -0,0 +1,21 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVwori6vXpeK8kqZt0QwMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAPSOyHR11NwBAAAAAA== +Date: Sat, 25 Apr 2026 05:36:24 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 100 Continue + +HTTP/1.1 200 OK +Content-Length: 0 +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAACBIWTGmz2y8AAAAAA= +Date: Sat, 25 Apr 2026 05:36:24 GMT + diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_80-to-__1_61596.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_80-to-__1_61596.bin new file mode 100644 index 0000000..b2a1b31 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-__1_80-to-__1_61596.bin @@ -0,0 +1,21 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworiO3Xkc6xN1Q93QwMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAONz+Hh11NwBAAAAAA== +Date: Sat, 25 Apr 2026 05:36:31 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 100 Continue + +HTTP/1.1 200 OK +Content-Length: 0 +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAAAbF/d6dpMelgAAAAA= +Date: Sat, 25 Apr 2026 05:36:31 GMT + diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..dc57f85 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61586.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61586.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61586.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61592.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61592.bin new file mode 100644 index 0000000..11d219e Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61592.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61611.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61611.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61611.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61614.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61614.bin new file mode 100644 index 0000000..f101486 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61614.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61586-to-fe80__3608_256c_365_cc73_55555.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61586-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61586-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61592-to-fe80__3608_256c_365_cc73_55555.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61592-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..9879a97 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61592-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61611-to-fe80__3608_256c_365_cc73_55555.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61611-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61611-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61614-to-fe80__3608_256c_365_cc73_55555.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61614-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..e61a02f Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61614-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..0577ab8 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_64442-to-fe80__3608_256c_365_cc73_808.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_64442-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..180cfae Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_64442-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_64442.bin b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_64442.bin new file mode 100644 index 0000000..4813562 Binary files /dev/null and b/captures/019-loopback-write-test-int-101-rerun/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_64442.bin differ diff --git a/captures/020-loopback-write-test-int-102/command.txt b/captures/020-loopback-write-test-int-102/command.txt new file mode 100644 index 0000000..3192a52 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=write --duration=8 --tag=TestChildObject.TestInt --type=int --value=102 --user-id=1 --write-delay-ms=1200 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\020-loopback-write-test-int-102\harness.log --client=MxProtoTraceHarness-020-loopback-write-test-int-102 diff --git a/captures/020-loopback-write-test-int-102/dcerpc-49704.tsv b/captures/020-loopback-write-test-int-102/dcerpc-49704.tsv new file mode 100644 index 0000000..8a0b56b --- /dev/null +++ b/captures/020-loopback-write-test-int-102/dcerpc-49704.tsv @@ -0,0 +1,498 @@ +604 1.901763300 16 11 2 0,1 4e0c90df-e39d-4164-a421-ace89484c602,4e0c90df-e39d-4164-a421-ace89484c602 116 0 Bind: call_id: 2, Fragment: Single, 2 context items: 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (32bit NDR), 4e0c90df-e39d-4164-a421-ace89484c602 V1.0 (6cb71c2c-9812-4540-0300-000000000000) +610 1.902282100 16 12 2 84 0 Bind_ack: call_id: 2, Fragment: Single, max_xmit: 5840 max_recv: 5840, 2 results: Acceptance, Negotiate ACK +612 1.902489800 16 0 2 0 0 40 0 Request: call_id: 2, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +614 1.902697400 16 2 2 0 0 44 0 Response: call_id: 2, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +616 1.902867200 16 14 3 1 1981974b-6bf7-46cb-9640-0260bbb551ba 72 0 Alter_context: call_id: 3, Fragment: Single, 1 context items: 1981974b-6bf7-46cb-9640-0260bbb551ba V1.0 (32bit NDR) +618 1.903021900 16 15 3 56 0 Alter_context_resp: call_id: 3, Fragment: Single, max_xmit: 5840 max_recv: 5840, 1 results: Acceptance +620 1.903283600 16 0 3 1 0 96 0 Request: call_id: 3, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +622 1.905385900 16 2 3 1 0 28 0 Response: call_id: 3, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +624 1.905568300 16 0 4 1 2 60 0 Request: call_id: 4, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +626 1.905751700 16 2 4 1 2 92 0 Response: call_id: 4, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +628 1.906015500 16 0 5 1 3 120 0 Request: call_id: 5, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +630 1.906203800 16 2 5 1 3 32 0 Response: call_id: 5, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +632 1.906388700 16 0 6 1 3 124 0 Request: call_id: 6, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +634 1.906548000 16 2 6 1 3 32 0 Response: call_id: 6, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +636 1.906710900 16 0 7 1 3 118 0 Request: call_id: 7, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +638 1.906835200 16 2 7 1 3 32 0 Response: call_id: 7, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +640 1.906994600 16 0 8 1 3 120 0 Request: call_id: 8, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +642 1.907153900 16 2 8 1 3 32 0 Response: call_id: 8, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +644 1.907311700 16 0 9 1 3 130 0 Request: call_id: 9, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +646 1.907538500 16 2 9 1 3 32 0 Response: call_id: 9, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +648 1.907695400 16 0 10 1 3 130 0 Request: call_id: 10, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +650 1.907852500 16 2 10 1 3 32 0 Response: call_id: 10, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +652 1.908006200 16 0 11 1 3 142 0 Request: call_id: 11, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +654 1.908169700 16 2 11 1 3 32 0 Response: call_id: 11, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +656 1.908355400 16 0 12 1 3 116 0 Request: call_id: 12, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +658 1.908485200 16 2 12 1 3 32 0 Response: call_id: 12, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +660 1.908639500 16 0 13 1 3 130 0 Request: call_id: 13, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +662 1.908798400 16 2 13 1 3 32 0 Response: call_id: 13, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +667 1.908955300 16 0 14 1 3 128 0 Request: call_id: 14, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +670 1.909113700 16 2 14 1 3 32 0 Response: call_id: 14, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +672 1.909267400 16 0 15 1 3 126 0 Request: call_id: 15, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +674 1.909505100 16 2 15 1 3 32 0 Response: call_id: 15, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +676 1.910102200 16 0 16 1 3 132 0 Request: call_id: 16, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +678 1.910353300 16 2 16 1 3 32 0 Response: call_id: 16, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +680 1.910602600 16 0 17 1 3 152 0 Request: call_id: 17, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +682 1.910772500 16 2 17 1 3 32 0 Response: call_id: 17, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +704 2.011390400 16 0 18 0 0 40 0 Request: call_id: 18, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +706 2.011733700 16 2 18 0 0 44 0 Response: call_id: 18, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +708 2.012332100 16 0 19 1 0 108 0 Request: call_id: 19, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +710 2.014254400 16 2 19 1 0 28 0 Response: call_id: 19, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +712 2.014481000 16 0 20 1 2 60 0 Request: call_id: 20, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +714 2.014709000 16 2 20 1 2 92 0 Response: call_id: 20, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +716 2.015008100 16 0 21 1 3 132 0 Request: call_id: 21, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +718 2.015238700 16 2 21 1 3 32 0 Response: call_id: 21, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +720 2.015416400 16 0 22 1 3 136 0 Request: call_id: 22, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +722 2.015655600 16 2 22 1 3 32 0 Response: call_id: 22, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +724 2.015843200 16 0 23 1 3 130 0 Request: call_id: 23, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +726 2.016019100 16 2 23 1 3 32 0 Response: call_id: 23, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +728 2.016186500 16 0 24 1 3 132 0 Request: call_id: 24, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +730 2.016450900 16 2 24 1 3 32 0 Response: call_id: 24, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +732 2.016615000 16 0 25 1 3 142 0 Request: call_id: 25, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +734 2.016778400 16 2 25 1 3 32 0 Response: call_id: 25, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +736 2.016985300 16 0 26 1 3 142 0 Request: call_id: 26, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +738 2.017154600 16 2 26 1 3 32 0 Response: call_id: 26, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +740 2.017353700 16 0 27 1 3 154 0 Request: call_id: 27, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +742 2.017513600 16 2 27 1 3 32 0 Response: call_id: 27, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +744 2.017689300 16 0 28 1 3 128 0 Request: call_id: 28, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +746 2.017850900 16 2 28 1 3 32 0 Response: call_id: 28, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +748 2.018015600 16 0 29 1 3 142 0 Request: call_id: 29, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +750 2.018172600 16 2 29 1 3 32 0 Response: call_id: 29, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +752 2.018358100 16 0 30 1 3 140 0 Request: call_id: 30, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +754 2.018514100 16 2 30 1 3 32 0 Response: call_id: 30, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +756 2.018680900 16 0 31 1 3 138 0 Request: call_id: 31, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +758 2.018839200 16 2 31 1 3 32 0 Response: call_id: 31, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +764 2.036227900 16 0 32 0 0 40 0 Request: call_id: 32, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +766 2.036503400 16 2 32 0 0 44 0 Response: call_id: 32, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +768 2.036705300 16 0 33 1 0 104 0 Request: call_id: 33, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +770 2.038329000 16 2 33 1 0 28 0 Response: call_id: 33, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +772 2.038511300 16 0 34 1 2 60 0 Request: call_id: 34, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +774 2.038735100 16 2 34 1 2 92 0 Response: call_id: 34, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +776 2.038991200 16 0 35 1 3 128 0 Request: call_id: 35, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +778 2.039375200 16 2 35 1 3 32 0 Response: call_id: 35, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +780 2.039490200 16 0 36 1 3 132 0 Request: call_id: 36, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +782 2.039844700 16 2 36 1 3 32 0 Response: call_id: 36, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +784 2.040034200 16 0 37 1 3 126 0 Request: call_id: 37, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +786 2.040268700 16 2 37 1 3 32 0 Response: call_id: 37, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +788 2.040471800 16 0 38 1 3 128 0 Request: call_id: 38, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +790 2.040700800 16 2 38 1 3 32 0 Response: call_id: 38, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +792 2.040884800 16 0 39 1 3 138 0 Request: call_id: 39, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +794 2.041118100 16 2 39 1 3 32 0 Response: call_id: 39, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +796 2.041328800 16 0 40 1 3 138 0 Request: call_id: 40, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +798 2.041558500 16 2 40 1 3 32 0 Response: call_id: 40, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +800 2.041738600 16 0 41 1 3 150 0 Request: call_id: 41, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +802 2.041969100 16 2 41 1 3 32 0 Response: call_id: 41, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +804 2.042150400 16 0 42 1 3 124 0 Request: call_id: 42, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +806 2.042460000 16 2 42 1 3 32 0 Response: call_id: 42, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +808 2.042638300 16 0 43 1 3 138 0 Request: call_id: 43, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +810 2.042858100 16 2 43 1 3 32 0 Response: call_id: 43, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +812 2.043033800 16 0 44 1 3 136 0 Request: call_id: 44, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +814 2.043258900 16 2 44 1 3 32 0 Response: call_id: 44, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +816 2.043435100 16 0 45 1 3 134 0 Request: call_id: 45, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +818 2.043663400 16 2 45 1 3 32 0 Response: call_id: 45, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +820 2.043934800 16 0 46 1 3 140 0 Request: call_id: 46, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +822 2.044170400 16 2 46 1 3 32 0 Response: call_id: 46, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +824 2.044380900 16 0 47 1 3 146 0 Request: call_id: 47, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +826 2.044617900 16 2 47 1 3 32 0 Response: call_id: 47, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +868 2.149938000 16 0 48 0 0 40 0 Request: call_id: 48, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +870 2.150233100 16 2 48 0 0 44 0 Response: call_id: 48, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +872 2.150417900 16 0 49 1 0 112 0 Request: call_id: 49, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +874 2.152204600 16 2 49 1 0 28 0 Response: call_id: 49, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +876 2.152356900 16 0 50 1 2 60 0 Request: call_id: 50, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +878 2.152539700 16 2 50 1 2 92 0 Response: call_id: 50, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +880 2.152776700 16 0 51 1 3 136 0 Request: call_id: 51, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +882 2.153020000 16 2 51 1 3 32 0 Response: call_id: 51, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +884 2.153203900 16 0 52 1 3 140 0 Request: call_id: 52, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +886 2.153533700 16 2 52 1 3 32 0 Response: call_id: 52, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +888 2.153699900 16 0 53 1 3 134 0 Request: call_id: 53, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +890 2.153894200 16 2 53 1 3 32 0 Response: call_id: 53, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +892 2.154046500 16 0 54 1 3 136 0 Request: call_id: 54, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +894 2.154313500 16 2 54 1 3 32 0 Response: call_id: 54, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +896 2.154475900 16 0 55 1 3 146 0 Request: call_id: 55, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +898 2.154766900 16 2 55 1 3 32 0 Response: call_id: 55, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +900 2.154921800 16 0 56 1 3 146 0 Request: call_id: 56, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +902 2.155127800 16 2 56 1 3 32 0 Response: call_id: 56, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +904 2.155311800 16 0 57 1 3 158 0 Request: call_id: 57, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +906 2.155491900 16 2 57 1 3 32 0 Response: call_id: 57, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +908 2.155640600 16 0 58 1 3 132 0 Request: call_id: 58, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +910 2.155814800 16 2 58 1 3 32 0 Response: call_id: 58, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +912 2.155964400 16 0 59 1 3 146 0 Request: call_id: 59, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +914 2.156165900 16 2 59 1 3 32 0 Response: call_id: 59, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +916 2.156320300 16 0 60 1 3 144 0 Request: call_id: 60, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +918 2.156492900 16 2 60 1 3 32 0 Response: call_id: 60, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +920 2.156643700 16 0 61 1 3 142 0 Request: call_id: 61, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +922 2.156816300 16 2 61 1 3 32 0 Response: call_id: 61, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +924 2.157011500 16 0 62 1 3 148 0 Request: call_id: 62, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +926 2.157235800 16 2 62 1 3 32 0 Response: call_id: 62, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +928 2.157396300 16 0 63 1 3 154 0 Request: call_id: 63, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +930 2.157582000 16 2 63 1 3 32 0 Response: call_id: 63, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +970 2.311576300 16 0 64 0 0 40 0 Request: call_id: 64, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +972 2.311837200 16 2 64 0 0 44 0 Response: call_id: 64, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +974 2.312022900 16 0 65 1 0 92 0 Request: call_id: 65, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +976 2.313847400 16 2 65 1 0 28 0 Response: call_id: 65, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +978 2.314029000 16 0 66 1 2 60 0 Request: call_id: 66, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +980 2.314274200 16 2 66 1 2 92 0 Response: call_id: 66, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +982 2.314512500 16 0 67 1 3 116 0 Request: call_id: 67, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +984 2.314761700 16 2 67 1 3 32 0 Response: call_id: 67, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +986 2.314918300 16 0 68 1 3 120 0 Request: call_id: 68, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +988 2.315103400 16 2 68 1 3 32 0 Response: call_id: 68, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +990 2.315260000 16 0 69 1 3 114 0 Request: call_id: 69, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +992 2.315507300 16 2 69 1 3 32 0 Response: call_id: 69, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +994 2.315671400 16 0 70 1 3 116 0 Request: call_id: 70, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +996 2.315870100 16 2 70 1 3 32 0 Response: call_id: 70, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +998 2.316027100 16 0 71 1 3 126 0 Request: call_id: 71, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1000 2.316252700 16 2 71 1 3 32 0 Response: call_id: 71, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1002 2.316402400 16 0 72 1 3 126 0 Request: call_id: 72, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1004 2.316583000 16 2 72 1 3 32 0 Response: call_id: 72, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1006 2.316734600 16 0 73 1 3 138 0 Request: call_id: 73, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1008 2.316912900 16 2 73 1 3 32 0 Response: call_id: 73, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1010 2.317076100 16 0 74 1 3 112 0 Request: call_id: 74, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1012 2.317402800 16 2 74 1 3 32 0 Response: call_id: 74, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1014 2.317596400 16 0 75 1 3 126 0 Request: call_id: 75, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1016 2.317795800 16 2 75 1 3 32 0 Response: call_id: 75, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1018 2.317952700 16 0 76 1 3 124 0 Request: call_id: 76, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1020 2.318131000 16 2 76 1 3 32 0 Response: call_id: 76, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1022 2.318301900 16 0 77 1 3 122 0 Request: call_id: 77, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1024 2.318506200 16 2 77 1 3 32 0 Response: call_id: 77, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1026 2.318701900 16 0 78 1 3 128 0 Request: call_id: 78, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1028 2.318881000 16 2 78 1 3 32 0 Response: call_id: 78, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1030 2.319039400 16 0 79 1 3 134 0 Request: call_id: 79, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1032 2.319253500 16 2 79 1 3 32 0 Response: call_id: 79, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1034 2.319457200 16 0 80 1 3 130 0 Request: call_id: 80, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1036 2.319782400 16 2 80 1 3 32 0 Response: call_id: 80, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1038 2.319990900 16 0 81 1 3 128 0 Request: call_id: 81, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +1040 2.320247500 16 2 81 1 3 32 0 Response: call_id: 81, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4235 8.789788400 16 0 82 0 0 40 0 Request: call_id: 82, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4237 8.790106800 16 2 82 0 0 44 0 Response: call_id: 82, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4239 8.790290400 16 0 83 1 0 100 0 Request: call_id: 83, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4241 8.792272300 16 2 83 1 0 28 0 Response: call_id: 83, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4242 8.792421000 16 0 84 1 2 60 0 Request: call_id: 84, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4244 8.792638900 16 2 84 1 2 92 0 Response: call_id: 84, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4246 8.792866600 16 0 85 1 3 124 0 Request: call_id: 85, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4248 8.793088500 16 2 85 1 3 32 0 Response: call_id: 85, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4250 8.793266700 16 0 86 1 3 128 0 Request: call_id: 86, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4252 8.793540800 16 2 86 1 3 32 0 Response: call_id: 86, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4254 8.793709500 16 0 87 1 3 122 0 Request: call_id: 87, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4256 8.793886300 16 2 87 1 3 32 0 Response: call_id: 87, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4258 8.794053400 16 0 88 1 3 124 0 Request: call_id: 88, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4260 8.794221200 16 2 88 1 3 32 0 Response: call_id: 88, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4262 8.794436600 16 0 89 1 3 134 0 Request: call_id: 89, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4264 8.794602600 16 2 89 1 3 32 0 Response: call_id: 89, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4266 8.794767200 16 0 90 1 3 134 0 Request: call_id: 90, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4268 8.794933400 16 2 90 1 3 32 0 Response: call_id: 90, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4270 8.795095800 16 0 91 1 3 146 0 Request: call_id: 91, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4272 8.795261800 16 2 91 1 3 32 0 Response: call_id: 91, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4274 8.795474300 16 0 92 1 3 120 0 Request: call_id: 92, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4276 8.795641100 16 2 92 1 3 32 0 Response: call_id: 92, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4278 8.795804000 16 0 93 1 3 134 0 Request: call_id: 93, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4280 8.795971300 16 2 93 1 3 32 0 Response: call_id: 93, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4282 8.796132200 16 0 94 1 3 132 0 Request: call_id: 94, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4284 8.796296500 16 2 94 1 3 32 0 Response: call_id: 94, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4286 8.796507300 16 0 95 1 3 130 0 Request: call_id: 95, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4288 8.796674600 16 2 95 1 3 32 0 Response: call_id: 95, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4290 8.796884300 16 0 96 1 3 144 0 Request: call_id: 96, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4292 8.797053500 16 2 96 1 3 32 0 Response: call_id: 96, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4294 8.797226100 16 0 97 1 3 148 0 Request: call_id: 97, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4296 8.797426800 16 2 97 1 3 32 0 Response: call_id: 97, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4298 8.797598400 16 0 98 1 3 146 0 Request: call_id: 98, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4300 8.797766700 16 2 98 1 3 32 0 Response: call_id: 98, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4302 8.798005600 16 0 99 1 3 158 0 Request: call_id: 99, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4304 8.798175700 16 2 99 1 3 32 0 Response: call_id: 99, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4342 8.874116400 16 0 100 0 0 40 0 Request: call_id: 100, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4344 8.874412700 16 2 100 0 0 44 0 Response: call_id: 100, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4346 8.874547900 16 0 101 1 0 84 0 Request: call_id: 101, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4348 8.876504800 16 2 101 1 0 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4350 8.876687300 16 0 102 1 2 60 0 Request: call_id: 102, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4352 8.876873900 16 2 102 1 2 92 0 Response: call_id: 102, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4354 8.877151400 16 0 103 1 3 108 0 Request: call_id: 103, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4356 8.877421500 16 2 103 1 3 32 0 Response: call_id: 103, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4358 8.877594700 16 0 104 1 3 112 0 Request: call_id: 104, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4360 8.877767100 16 2 104 1 3 32 0 Response: call_id: 104, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4362 8.877929500 16 0 105 1 3 106 0 Request: call_id: 105, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4364 8.878092600 16 2 105 1 3 32 0 Response: call_id: 105, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4366 8.878267100 16 0 106 1 3 108 0 Request: call_id: 106, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4368 8.878522600 16 2 106 1 3 32 0 Response: call_id: 106, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4370 8.878677600 16 0 107 1 3 118 0 Request: call_id: 107, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4372 8.878898800 16 2 107 1 3 32 0 Response: call_id: 107, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4374 8.879081900 16 0 108 1 3 118 0 Request: call_id: 108, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4376 8.879253900 16 2 108 1 3 32 0 Response: call_id: 108, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4378 8.879463900 16 0 109 1 3 130 0 Request: call_id: 109, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4380 8.879624800 16 2 109 1 3 32 0 Response: call_id: 109, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4382 8.879780900 16 0 110 1 3 104 0 Request: call_id: 110, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4384 8.879939000 16 2 110 1 3 32 0 Response: call_id: 110, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4386 8.880092500 16 0 111 1 3 118 0 Request: call_id: 111, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4388 8.880249500 16 2 111 1 3 32 0 Response: call_id: 111, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4390 8.880431500 16 0 112 1 3 116 0 Request: call_id: 112, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4392 8.880601000 16 2 112 1 3 32 0 Response: call_id: 112, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4394 8.880807000 16 0 113 1 3 114 0 Request: call_id: 113, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4396 8.880988300 16 2 113 1 3 32 0 Response: call_id: 113, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4398 8.881532600 16 0 114 1 3 128 0 Request: call_id: 114, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4400 8.881691900 16 2 114 1 3 32 0 Response: call_id: 114, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4402 8.881917700 16 0 115 1 3 120 0 Request: call_id: 115, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4404 8.882084900 16 2 115 1 3 32 0 Response: call_id: 115, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4406 8.882295700 16 0 116 1 3 120 0 Request: call_id: 116, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4408 8.882526600 16 2 116 1 3 32 0 Response: call_id: 116, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4410 8.882720600 16 0 117 1 3 122 0 Request: call_id: 117, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4412 8.882884600 16 2 117 1 3 32 0 Response: call_id: 117, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4414 8.883078300 16 0 118 1 3 134 0 Request: call_id: 118, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4416 8.883241200 16 2 118 1 3 32 0 Response: call_id: 118, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4418 8.883545000 16 0 119 1 3 132 0 Request: call_id: 119, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4420 8.883709300 16 2 119 1 3 32 0 Response: call_id: 119, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4422 8.883906100 16 0 120 1 3 130 0 Request: call_id: 120, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4424 8.884068500 16 2 120 1 3 32 0 Response: call_id: 120, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4426 8.884266600 16 0 121 1 3 138 0 Request: call_id: 121, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4428 8.884519800 16 2 121 1 3 32 0 Response: call_id: 121, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4430 8.884722500 16 0 122 1 3 144 0 Request: call_id: 122, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4432 8.884884200 16 2 122 1 3 32 0 Response: call_id: 122, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4434 8.885100900 16 0 123 1 3 144 0 Request: call_id: 123, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4436 8.885262400 16 2 123 1 3 32 0 Response: call_id: 123, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4438 8.885517900 16 0 124 1 3 116 0 Request: call_id: 124, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4440 8.885689100 16 2 124 1 3 32 0 Response: call_id: 124, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4442 8.885884400 16 0 125 1 3 130 0 Request: call_id: 125, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4444 8.886047400 16 2 125 1 3 32 0 Response: call_id: 125, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4446 8.886238300 16 0 126 1 3 138 0 Request: call_id: 126, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4448 8.886450400 16 2 126 1 3 32 0 Response: call_id: 126, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4450 8.886641300 16 0 127 1 3 130 0 Request: call_id: 127, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4452 8.886806000 16 2 127 1 3 32 0 Response: call_id: 127, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4454 8.886999300 16 0 128 1 3 122 0 Request: call_id: 128, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4456 8.887159800 16 2 128 1 3 32 0 Response: call_id: 128, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4458 8.887350100 16 0 129 1 3 122 0 Request: call_id: 129, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4460 8.887561400 16 2 129 1 3 32 0 Response: call_id: 129, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4462 8.887780500 16 0 130 1 3 134 0 Request: call_id: 130, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4464 8.887950500 16 2 130 1 3 32 0 Response: call_id: 130, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4466 8.888162800 16 0 131 1 3 128 0 Request: call_id: 131, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4468 8.888326400 16 2 131 1 3 32 0 Response: call_id: 131, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4470 8.888569000 16 0 132 1 3 124 0 Request: call_id: 132, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4472 8.888731100 16 2 132 1 3 32 0 Response: call_id: 132, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4496 8.922337500 16 0 133 1 5 516 0 Request: call_id: 133, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4498 8.922654200 16 2 133 1 5 28 0 Response: call_id: 133, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4534 8.957365900 16 0 134 0 0 40 0 Request: call_id: 134, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4536 8.957589400 16 2 134 0 0 44 0 Response: call_id: 134, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4538 8.957793300 16 0 135 1 0 112 0 Request: call_id: 135, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4540 8.959794500 16 2 135 1 0 28 0 Response: call_id: 135, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4542 8.959988800 16 0 136 1 2 60 0 Request: call_id: 136, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4544 8.960184800 16 2 136 1 2 92 0 Response: call_id: 136, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4546 8.960452000 16 0 137 1 3 136 0 Request: call_id: 137, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4548 8.960696500 16 2 137 1 3 32 0 Response: call_id: 137, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4550 8.960883900 16 0 138 1 3 140 0 Request: call_id: 138, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4552 8.961077000 16 2 138 1 3 32 0 Response: call_id: 138, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4554 8.961250700 16 0 139 1 3 134 0 Request: call_id: 139, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4556 8.961482500 16 2 139 1 3 32 0 Response: call_id: 139, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4558 8.961651200 16 0 140 1 3 136 0 Request: call_id: 140, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4560 8.961906000 16 2 140 1 3 32 0 Response: call_id: 140, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4562 8.962105600 16 0 141 1 3 146 0 Request: call_id: 141, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4564 8.962397900 16 2 141 1 3 32 0 Response: call_id: 141, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4566 8.962602700 16 0 142 1 3 146 0 Request: call_id: 142, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4568 8.962748300 16 2 142 1 3 32 0 Response: call_id: 142, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4570 8.962932100 16 0 143 1 3 158 0 Request: call_id: 143, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4572 8.963198700 16 2 143 1 3 32 0 Response: call_id: 143, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4574 8.963455900 16 0 144 1 3 132 0 Request: call_id: 144, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4576 8.963648000 16 2 144 1 3 32 0 Response: call_id: 144, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4578 8.963810800 16 0 145 1 3 146 0 Request: call_id: 145, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4580 8.964005200 16 2 145 1 3 32 0 Response: call_id: 145, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4582 8.964204900 16 0 146 1 3 144 0 Request: call_id: 146, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4584 8.964440400 16 2 146 1 3 32 0 Response: call_id: 146, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4586 8.964627500 16 0 147 1 3 142 0 Request: call_id: 147, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4588 8.964809900 16 2 147 1 3 32 0 Response: call_id: 147, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4590 8.965030200 16 0 148 1 3 160 0 Request: call_id: 148, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4592 8.965245900 16 2 148 1 3 32 0 Response: call_id: 148, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4594 8.965447300 16 0 149 1 3 156 0 Request: call_id: 149, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4596 8.965593400 16 2 149 1 3 32 0 Response: call_id: 149, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4598 8.965790700 16 0 150 1 3 154 0 Request: call_id: 150, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4600 8.966491800 16 2 150 1 3 32 0 Response: call_id: 150, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4602 8.966711300 16 0 151 1 3 146 0 Request: call_id: 151, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4604 8.966897200 16 2 151 1 3 32 0 Response: call_id: 151, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4606 8.967094500 16 0 152 1 3 154 0 Request: call_id: 152, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4608 8.967331300 16 2 152 1 3 32 0 Response: call_id: 152, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4610 8.967501500 16 0 153 1 3 150 0 Request: call_id: 153, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4612 8.967678100 16 2 153 1 3 32 0 Response: call_id: 153, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4614 8.967848200 16 0 154 1 3 152 0 Request: call_id: 154, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4616 8.968022900 16 2 154 1 3 32 0 Response: call_id: 154, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4618 8.968192000 16 0 155 1 3 140 0 Request: call_id: 155, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4620 8.968383900 16 2 155 1 3 32 0 Response: call_id: 155, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4622 8.968545600 16 0 156 1 3 148 0 Request: call_id: 156, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4624 8.968715400 16 2 156 1 3 32 0 Response: call_id: 156, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4626 8.968882100 16 0 157 1 3 162 0 Request: call_id: 157, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4628 8.969053100 16 2 157 1 3 32 0 Response: call_id: 157, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4630 8.969241400 16 0 158 1 3 172 0 Request: call_id: 158, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4632 8.969409400 16 2 158 1 3 32 0 Response: call_id: 158, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4634 8.969573300 16 0 159 1 3 144 0 Request: call_id: 159, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4636 8.969740500 16 2 159 1 3 32 0 Response: call_id: 159, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4642 8.976869400 16 0 160 0 0 40 0 Request: call_id: 160, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4644 8.977034100 16 2 160 0 0 44 0 Response: call_id: 160, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4646 8.977208500 16 0 161 1 0 128 0 Request: call_id: 161, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4648 8.978832100 16 2 161 1 0 28 0 Response: call_id: 161, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4650 8.978983800 16 0 162 1 2 60 0 Request: call_id: 162, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4652 8.979156400 16 2 162 1 2 92 0 Response: call_id: 162, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4654 8.979408000 16 0 163 1 3 152 0 Request: call_id: 163, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4656 8.979601400 16 2 163 1 3 32 0 Response: call_id: 163, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4658 8.979749000 16 0 164 1 3 156 0 Request: call_id: 164, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4660 8.979924600 16 2 164 1 3 32 0 Response: call_id: 164, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4662 8.980080100 16 0 165 1 3 150 0 Request: call_id: 165, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4664 8.980251000 16 2 165 1 3 32 0 Response: call_id: 165, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4666 8.980400000 16 0 166 1 3 152 0 Request: call_id: 166, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4668 8.980572300 16 2 166 1 3 32 0 Response: call_id: 166, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4670 8.980748100 16 0 167 1 3 162 0 Request: call_id: 167, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4672 8.980923400 16 2 167 1 3 32 0 Response: call_id: 167, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4674 8.981082300 16 0 168 1 3 162 0 Request: call_id: 168, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4676 8.981290300 16 2 168 1 3 32 0 Response: call_id: 168, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4678 8.981423200 16 0 169 1 3 174 0 Request: call_id: 169, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4680 8.981597200 16 2 169 1 3 32 0 Response: call_id: 169, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4682 8.981770500 16 0 170 1 3 148 0 Request: call_id: 170, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4684 8.981952000 16 2 170 1 3 32 0 Response: call_id: 170, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4686 8.982112900 16 0 171 1 3 162 0 Request: call_id: 171, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4688 8.982312000 16 2 171 1 3 32 0 Response: call_id: 171, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4690 8.982459300 16 0 172 1 3 160 0 Request: call_id: 172, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4692 8.982633700 16 2 172 1 3 32 0 Response: call_id: 172, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4694 8.982798800 16 0 173 1 3 158 0 Request: call_id: 173, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4696 8.982974400 16 2 173 1 3 32 0 Response: call_id: 173, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4698 8.983219700 16 0 174 1 3 170 0 Request: call_id: 174, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4700 8.983447700 16 2 174 1 3 32 0 Response: call_id: 174, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4702 8.983613900 16 0 175 1 3 182 0 Request: call_id: 175, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4704 8.983787500 16 2 175 1 3 32 0 Response: call_id: 175, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4710 8.989429500 16 0 176 0 0 40 0 Request: call_id: 176, Fragment: Single, opnum: 0, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4712 8.989668700 16 2 176 0 0 44 0 Response: call_id: 176, Fragment: Single, Ctx: 0 4e0c90df-e39d-4164-a421-ace89484c602 V1 +4714 8.989851100 16 0 177 1 0 96 0 Request: call_id: 177, Fragment: Single, opnum: 0, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4716 8.991455600 16 2 177 1 0 28 0 Response: call_id: 177, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4718 8.991633100 16 0 178 1 2 60 0 Request: call_id: 178, Fragment: Single, opnum: 2, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4720 8.991815000 16 2 178 1 2 92 0 Response: call_id: 178, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4722 8.992058100 16 0 179 1 3 120 0 Request: call_id: 179, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4724 8.992239600 16 2 179 1 3 32 0 Response: call_id: 179, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4726 8.992455600 16 0 180 1 3 124 0 Request: call_id: 180, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4728 8.992627000 16 2 180 1 3 32 0 Response: call_id: 180, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4730 8.992787600 16 0 181 1 3 118 0 Request: call_id: 181, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4732 8.992957400 16 2 181 1 3 32 0 Response: call_id: 181, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4734 8.993118100 16 0 182 1 3 120 0 Request: call_id: 182, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4736 8.993340800 16 2 182 1 3 32 0 Response: call_id: 182, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4738 8.993509900 16 0 183 1 3 130 0 Request: call_id: 183, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4740 8.993685100 16 2 183 1 3 32 0 Response: call_id: 183, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4742 8.993873600 16 0 184 1 3 130 0 Request: call_id: 184, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4744 8.994054000 16 2 184 1 3 32 0 Response: call_id: 184, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4746 8.994216500 16 0 185 1 3 142 0 Request: call_id: 185, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4748 8.994434300 16 2 185 1 3 32 0 Response: call_id: 185, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4750 8.994589200 16 0 186 1 3 116 0 Request: call_id: 186, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4752 8.994758600 16 2 186 1 3 32 0 Response: call_id: 186, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4754 8.994913100 16 0 187 1 3 130 0 Request: call_id: 187, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4756 8.995078300 16 2 187 1 3 32 0 Response: call_id: 187, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4758 8.995233500 16 0 188 1 3 128 0 Request: call_id: 188, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4760 8.995457200 16 2 188 1 3 32 0 Response: call_id: 188, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4762 8.995610900 16 0 189 1 3 126 0 Request: call_id: 189, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4764 8.995778900 16 2 189 1 3 32 0 Response: call_id: 189, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4766 8.995978900 16 0 190 1 3 126 0 Request: call_id: 190, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4768 8.996145800 16 2 190 1 3 32 0 Response: call_id: 190, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4770 8.996334400 16 0 191 1 3 132 0 Request: call_id: 191, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4772 8.996503700 16 2 191 1 3 32 0 Response: call_id: 191, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4774 8.996669800 16 0 192 1 3 130 0 Request: call_id: 192, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4776 8.996836600 16 2 192 1 3 32 0 Response: call_id: 192, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4778 8.997001000 16 0 193 1 3 138 0 Request: call_id: 193, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4780 8.997167800 16 2 193 1 3 32 0 Response: call_id: 193, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4782 8.997355700 16 0 194 1 3 136 0 Request: call_id: 194, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4784 8.997523900 16 2 194 1 3 32 0 Response: call_id: 194, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4786 8.997694300 16 0 195 1 3 132 0 Request: call_id: 195, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4788 8.997862100 16 2 195 1 3 32 0 Response: call_id: 195, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4790 8.998027600 16 0 196 1 3 142 0 Request: call_id: 196, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4792 8.998196800 16 2 196 1 3 32 0 Response: call_id: 196, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4794 8.998366300 16 0 197 1 3 148 0 Request: call_id: 197, Fragment: Single, opnum: 3, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4796 8.998531100 16 2 197 1 3 32 0 Response: call_id: 197, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4812 9.035201800 16 0 198 1 5 290 0 Request: call_id: 198, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4814 9.035625700 16 2 198 1 5 28 0 Response: call_id: 198, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4845 9.126021800 16 0 199 1 5 206 0 Request: call_id: 199, Fragment: Single, opnum: 5, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +4847 9.126452700 16 2 199 1 5 28 0 Response: call_id: 199, Fragment: Single, Ctx: 1 1981974b-6bf7-46cb-9640-0260bbb551ba V1 +7566 18.422312700 56 0 101 1 5 242 0 Request: call_id: 101, Fragment: Single, opnum: 5, Ctx: 1 +7568 18.422744300 56 2 101 1 28 0 Response: call_id: 101, Fragment: Single, Ctx: 1 +9027 20.984202700 69 0 114624 0 0 40 0 Request: call_id: 114624, Fragment: Single, opnum: 0, Ctx: 0 +9029 20.984432600 69 2 114624 0 44 0 Response: call_id: 114624, Fragment: Single, Ctx: 0 +9031 20.984643800 69 0 114625 1 0 104 0 Request: call_id: 114625, Fragment: Single, opnum: 0, Ctx: 1 +9033 20.984976700 69 2 114625 1 28 0 Response: call_id: 114625, Fragment: Single, Ctx: 1 +9035 20.985261800 69 0 114626 1 2 60 0 Request: call_id: 114626, Fragment: Single, opnum: 2, Ctx: 1 +9037 20.985433200 69 2 114626 1 92 0 Response: call_id: 114626, Fragment: Single, Ctx: 1 +9039 20.985723900 69 0 114627 1 3 128 0 Request: call_id: 114627, Fragment: Single, opnum: 3, Ctx: 1 +9041 20.986116700 69 2 114627 1 32 0 Response: call_id: 114627, Fragment: Single, Ctx: 1 +9043 20.986327600 69 0 114628 1 3 132 0 Request: call_id: 114628, Fragment: Single, opnum: 3, Ctx: 1 +9046 20.986538400 69 2 114628 1 32 0 Response: call_id: 114628, Fragment: Single, Ctx: 1 +9048 20.986741200 69 0 114629 1 3 126 0 Request: call_id: 114629, Fragment: Single, opnum: 3, Ctx: 1 +9050 20.986930700 69 2 114629 1 32 0 Response: call_id: 114629, Fragment: Single, Ctx: 1 +9052 20.987199600 69 0 114630 1 3 128 0 Request: call_id: 114630, Fragment: Single, opnum: 3, Ctx: 1 +9054 20.987371000 69 2 114630 1 32 0 Response: call_id: 114630, Fragment: Single, Ctx: 1 +9056 20.987541900 69 0 114631 1 3 138 0 Request: call_id: 114631, Fragment: Single, opnum: 3, Ctx: 1 +9058 20.987714600 69 2 114631 1 32 0 Response: call_id: 114631, Fragment: Single, Ctx: 1 +9060 20.987899000 69 0 114632 1 3 138 0 Request: call_id: 114632, Fragment: Single, opnum: 3, Ctx: 1 +9062 20.988138600 69 2 114632 1 32 0 Response: call_id: 114632, Fragment: Single, Ctx: 1 +9064 20.988351000 69 0 114633 1 3 150 0 Request: call_id: 114633, Fragment: Single, opnum: 3, Ctx: 1 +9066 20.988562900 69 2 114633 1 32 0 Response: call_id: 114633, Fragment: Single, Ctx: 1 +9068 20.988741700 69 0 114634 1 3 124 0 Request: call_id: 114634, Fragment: Single, opnum: 3, Ctx: 1 +9070 20.988907700 69 2 114634 1 32 0 Response: call_id: 114634, Fragment: Single, Ctx: 1 +9072 20.989159200 69 0 114635 1 3 138 0 Request: call_id: 114635, Fragment: Single, opnum: 3, Ctx: 1 +9074 20.989325800 69 2 114635 1 32 0 Response: call_id: 114635, Fragment: Single, Ctx: 1 +9076 20.989491600 69 0 114636 1 3 136 0 Request: call_id: 114636, Fragment: Single, opnum: 3, Ctx: 1 +9078 20.989653100 69 2 114636 1 32 0 Response: call_id: 114636, Fragment: Single, Ctx: 1 +9080 20.989817400 69 0 114637 1 3 134 0 Request: call_id: 114637, Fragment: Single, opnum: 3, Ctx: 1 +9082 20.990027900 69 2 114637 1 32 0 Response: call_id: 114637, Fragment: Single, Ctx: 1 +9084 20.990200100 69 0 114638 1 3 138 0 Request: call_id: 114638, Fragment: Single, opnum: 3, Ctx: 1 +9086 20.990368700 69 2 114638 1 32 0 Response: call_id: 114638, Fragment: Single, Ctx: 1 +9088 20.990765300 69 0 114639 0 1 60 0 Request: call_id: 114639, Fragment: Single, opnum: 1, Ctx: 0 +9090 20.991053200 69 2 114639 0 44 0 Response: call_id: 114639, Fragment: Single, Ctx: 0 +9096 20.993066300 69 0 114640 0 0 40 0 Request: call_id: 114640, Fragment: Single, opnum: 0, Ctx: 0 +9098 20.993243000 69 2 114640 0 44 0 Response: call_id: 114640, Fragment: Single, Ctx: 0 +9100 20.993444500 69 0 114641 1 0 104 0 Request: call_id: 114641, Fragment: Single, opnum: 0, Ctx: 1 +9102 20.993653700 69 2 114641 1 28 0 Response: call_id: 114641, Fragment: Single, Ctx: 1 +9104 20.993821100 69 0 114642 1 2 60 0 Request: call_id: 114642, Fragment: Single, opnum: 2, Ctx: 1 +9106 20.994020800 69 2 114642 1 92 0 Response: call_id: 114642, Fragment: Single, Ctx: 1 +9108 20.994272200 69 0 114643 1 3 128 0 Request: call_id: 114643, Fragment: Single, opnum: 3, Ctx: 1 +9110 20.994448500 69 2 114643 1 32 0 Response: call_id: 114643, Fragment: Single, Ctx: 1 +9112 20.994803500 69 0 114644 1 3 132 0 Request: call_id: 114644, Fragment: Single, opnum: 3, Ctx: 1 +9114 20.995000100 69 2 114644 1 32 0 Response: call_id: 114644, Fragment: Single, Ctx: 1 +9116 20.995266000 69 0 114645 1 3 126 0 Request: call_id: 114645, Fragment: Single, opnum: 3, Ctx: 1 +9118 20.995454600 69 2 114645 1 32 0 Response: call_id: 114645, Fragment: Single, Ctx: 1 +9120 20.995679500 69 0 114646 1 3 128 0 Request: call_id: 114646, Fragment: Single, opnum: 3, Ctx: 1 +9122 20.995847400 69 2 114646 1 32 0 Response: call_id: 114646, Fragment: Single, Ctx: 1 +9124 20.996040700 69 0 114647 1 3 138 0 Request: call_id: 114647, Fragment: Single, opnum: 3, Ctx: 1 +9126 20.996200900 69 2 114647 1 32 0 Response: call_id: 114647, Fragment: Single, Ctx: 1 +9128 20.996365200 69 0 114648 1 3 138 0 Request: call_id: 114648, Fragment: Single, opnum: 3, Ctx: 1 +9130 20.996529500 69 2 114648 1 32 0 Response: call_id: 114648, Fragment: Single, Ctx: 1 +9132 20.996710200 69 0 114649 1 3 150 0 Request: call_id: 114649, Fragment: Single, opnum: 3, Ctx: 1 +9134 20.996879900 69 2 114649 1 32 0 Response: call_id: 114649, Fragment: Single, Ctx: 1 +9136 20.997075800 69 0 114650 1 3 124 0 Request: call_id: 114650, Fragment: Single, opnum: 3, Ctx: 1 +9138 20.997230900 69 2 114650 1 32 0 Response: call_id: 114650, Fragment: Single, Ctx: 1 +9140 20.997396800 69 0 114651 1 3 138 0 Request: call_id: 114651, Fragment: Single, opnum: 3, Ctx: 1 +9142 20.997559000 69 2 114651 1 32 0 Response: call_id: 114651, Fragment: Single, Ctx: 1 +9144 20.997724700 69 0 114652 1 3 136 0 Request: call_id: 114652, Fragment: Single, opnum: 3, Ctx: 1 +9146 20.997887000 69 2 114652 1 32 0 Response: call_id: 114652, Fragment: Single, Ctx: 1 +9148 20.998102800 69 0 114653 1 3 134 0 Request: call_id: 114653, Fragment: Single, opnum: 3, Ctx: 1 +9150 20.998263700 69 2 114653 1 32 0 Response: call_id: 114653, Fragment: Single, Ctx: 1 +9152 20.998427800 69 0 114654 1 3 138 0 Request: call_id: 114654, Fragment: Single, opnum: 3, Ctx: 1 +9154 20.998589300 69 2 114654 1 32 0 Response: call_id: 114654, Fragment: Single, Ctx: 1 +9156 20.998895200 69 0 114655 0 1 60 0 Request: call_id: 114655, Fragment: Single, opnum: 1, Ctx: 0 +9158 20.999099800 69 2 114655 0 44 0 Response: call_id: 114655, Fragment: Single, Ctx: 0 +9166 21.001031100 69 0 114656 0 0 40 0 Request: call_id: 114656, Fragment: Single, opnum: 0, Ctx: 0 +9168 21.001182900 69 2 114656 0 44 0 Response: call_id: 114656, Fragment: Single, Ctx: 0 +9170 21.001360500 69 0 114657 1 0 104 0 Request: call_id: 114657, Fragment: Single, opnum: 0, Ctx: 1 +9172 21.001578600 69 2 114657 1 28 0 Response: call_id: 114657, Fragment: Single, Ctx: 1 +9174 21.001743700 69 0 114658 1 2 60 0 Request: call_id: 114658, Fragment: Single, opnum: 2, Ctx: 1 +9176 21.001899100 69 2 114658 1 92 0 Response: call_id: 114658, Fragment: Single, Ctx: 1 +9178 21.002193600 69 0 114659 1 3 128 0 Request: call_id: 114659, Fragment: Single, opnum: 3, Ctx: 1 +9180 21.002358700 69 2 114659 1 32 0 Response: call_id: 114659, Fragment: Single, Ctx: 1 +9182 21.002615200 69 0 114660 1 3 132 0 Request: call_id: 114660, Fragment: Single, opnum: 3, Ctx: 1 +9184 21.002786800 69 2 114660 1 32 0 Response: call_id: 114660, Fragment: Single, Ctx: 1 +9186 21.002955500 69 0 114661 1 3 126 0 Request: call_id: 114661, Fragment: Single, opnum: 3, Ctx: 1 +9188 21.003106400 69 2 114661 1 32 0 Response: call_id: 114661, Fragment: Single, Ctx: 1 +9190 21.003272000 69 0 114662 1 3 128 0 Request: call_id: 114662, Fragment: Single, opnum: 3, Ctx: 1 +9192 21.003516300 69 2 114662 1 32 0 Response: call_id: 114662, Fragment: Single, Ctx: 1 +9194 21.003729700 69 0 114663 1 3 138 0 Request: call_id: 114663, Fragment: Single, opnum: 3, Ctx: 1 +9197 21.003892100 69 2 114663 1 32 0 Response: call_id: 114663, Fragment: Single, Ctx: 1 +9203 21.004498300 69 0 114664 1 3 138 0 Request: call_id: 114664, Fragment: Single, opnum: 3, Ctx: 1 +9205 21.004673600 69 2 114664 1 32 0 Response: call_id: 114664, Fragment: Single, Ctx: 1 +9207 21.004894400 69 0 114665 1 3 150 0 Request: call_id: 114665, Fragment: Single, opnum: 3, Ctx: 1 +9209 21.005211400 69 2 114665 1 32 0 Response: call_id: 114665, Fragment: Single, Ctx: 1 +9211 21.005467600 69 0 114666 1 3 124 0 Request: call_id: 114666, Fragment: Single, opnum: 3, Ctx: 1 +9213 21.005652400 69 2 114666 1 32 0 Response: call_id: 114666, Fragment: Single, Ctx: 1 +9215 21.005828600 69 0 114667 1 3 138 0 Request: call_id: 114667, Fragment: Single, opnum: 3, Ctx: 1 +9217 21.006074200 69 2 114667 1 32 0 Response: call_id: 114667, Fragment: Single, Ctx: 1 +9219 21.006228200 69 0 114668 1 3 136 0 Request: call_id: 114668, Fragment: Single, opnum: 3, Ctx: 1 +9221 21.006443300 69 2 114668 1 32 0 Response: call_id: 114668, Fragment: Single, Ctx: 1 +9223 21.006637500 69 0 114669 1 3 134 0 Request: call_id: 114669, Fragment: Single, opnum: 3, Ctx: 1 +9225 21.006925300 69 2 114669 1 32 0 Response: call_id: 114669, Fragment: Single, Ctx: 1 +9227 21.007230900 69 0 114670 1 3 138 0 Request: call_id: 114670, Fragment: Single, opnum: 3, Ctx: 1 +9229 21.007445900 69 2 114670 1 32 0 Response: call_id: 114670, Fragment: Single, Ctx: 1 +9232 21.010558900 69 0 114671 0 1 60 0 Request: call_id: 114671, Fragment: Single, opnum: 1, Ctx: 0 +9234 21.010777300 69 2 114671 0 44 0 Response: call_id: 114671, Fragment: Single, Ctx: 0 diff --git a/captures/020-loopback-write-test-int-102/dumpcap.stderr.txt b/captures/020-loopback-write-test-int-102/dumpcap.stderr.txt new file mode 100644 index 0000000..9757c34 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\020-loopback-write-test-int-102\loopback.pcapng diff --git a/captures/020-loopback-write-test-int-102/dumpcap.stdout.txt b/captures/020-loopback-write-test-int-102/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/020-loopback-write-test-int-102/exit.txt b/captures/020-loopback-write-test-int-102/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/020-loopback-write-test-int-102/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/020-loopback-write-test-int-102/harness.log b/captures/020-loopback-write-test-int-102/harness.log new file mode 100644 index 0000000..66c1ef5 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/harness.log @@ -0,0 +1,19 @@ +2026-04-25T05:38:33.1198818+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-020-loopback-write-test-int-102","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"102","UserId":1,"WriteDelayMilliseconds":1200,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:38:40.0548243+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-020-loopback-write-test-int-102"} +2026-04-25T05:38:40.4247870+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:38:40.4258532+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:38:40.4267869+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:40.4278325+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:40.4287897+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:40.6727967+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"101"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:35:50.795 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:38:41.6478281+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"102"},"UserId":1} +2026-04-25T05:38:41.6488060+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:41.8552930+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"102"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:38:41.796 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:38:41.8583401+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:38:49.6721352+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:49.6731333+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:49.6731333+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:49.6741350+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:38:49.6741350+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:38:53.4460713+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:38:53.4510709+00:00 harness.stop {} diff --git a/captures/020-loopback-write-test-int-102/loopback.pcapng b/captures/020-loopback-write-test-int-102/loopback.pcapng new file mode 100644 index 0000000..cf0400c Binary files /dev/null and b/captures/020-loopback-write-test-int-102/loopback.pcapng differ diff --git a/captures/020-loopback-write-test-int-102/mixed-stream-57415-to-57433.tsv b/captures/020-loopback-write-test-int-102/mixed-stream-57415-to-57433.tsv new file mode 100644 index 0000000..71875b2 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/mixed-stream-57415-to-57433.tsv @@ -0,0 +1,1237 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 26 730528 0 26 730528 0 1a 00 00 00 a0 25 0b 00 00 00 00 00 .....%...... +1 0x0000000c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1661927424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +2 0x00000026 control 12 -1 720854 0 -1 720854 0 ff ff ff ff d6 ff 0a 00 00 00 00 00 ............ +3 0x00000032 control 12 26 730529 0 26 730529 0 1a 00 00 00 a1 25 0b 00 00 00 00 00 .....%...... +4 0x0000003e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1661796352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +5 0x00000058 control 12 -1 720855 0 -1 720855 0 ff ff ff ff d7 ff 0a 00 00 00 00 00 ............ +6 0x00000064 control 12 34 730530 0 34 730530 0 22 00 00 00 a2 25 0b 00 00 00 00 00 """....%......" +7 0x00000070 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322306048 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 36 13 02 00 00 00 00 00 c4 8d 25 c3 9d 01 00 00 .....!...o3.......6.........%..... +8 0x00000092 control 12 67 730531 0 67 730531 0 43 00 00 00 a3 25 0b 00 00 00 00 00 C....%...... +9 0x0000009e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 36 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 5d 7f c6 f3 82 a9 18 ?.....3...|8...........6.......=B.....&......... +10 0x000000e1 control 12 -1 720856 0 -1 720856 0 ff ff ff ff d8 ff 0a 00 00 00 00 00 ............ +11 0x000000ed control 12 30 730532 0 30 730532 0 1e 00 00 00 a4 25 0b 00 00 00 00 00 .....%...... +12 0x000000f9 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1661665280 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f5 9c 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +13 0x00000117 control 12 -1 720857 0 -1 720857 0 ff ff ff ff d9 ff 0a 00 00 00 00 00 ............ +14 0x00000123 control 12 26 730533 0 26 730533 0 1a 00 00 00 a5 25 0b 00 00 00 00 00 .....%...... +15 0x0000012f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1661534208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +16 0x00000149 control 12 -1 720858 0 -1 720858 0 ff ff ff ff da ff 0a 00 00 00 00 00 ............ +17 0x00000155 control 12 26 730534 0 26 730534 0 1a 00 00 00 a6 25 0b 00 00 00 00 00 .....%...... +18 0x00000161 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1661403136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +19 0x0000017b control 12 -1 720859 0 -1 720859 0 ff ff ff ff db ff 0a 00 00 00 00 00 ............ +20 0x00000187 control 12 -2 82949 82931 -2 82949 82931 fe ff ff ff 05 44 01 00 f3 43 01 00 .....D...C.. +21 0x00000193 control 12 26 730535 0 26 730535 0 1a 00 00 00 a7 25 0b 00 00 00 00 00 .....%...... +22 0x0000019f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1661272064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +23 0x000001b9 control 12 -1 720860 0 -1 720860 0 ff ff ff ff dc ff 0a 00 00 00 00 00 ............ +24 0x000001c5 control 12 34 730536 0 34 730536 0 22 00 00 00 a8 25 0b 00 00 00 00 00 """....%......" +25 0x000001d1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322371584 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 37 13 02 00 00 00 00 00 f6 8e 25 c3 9d 01 00 00 .....!...o3.......7.........%..... +26 0x000001f3 control 12 67 730537 0 67 730537 0 43 00 00 00 a9 25 0b 00 00 00 00 00 C....%...... +27 0x000001ff data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 37 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 9c 8d ab d8 f3 82 a9 18 ?.....3...|8...........7.......=B.....&......... +28 0x00000242 control 12 -1 720861 0 -1 720861 0 ff ff ff ff dd ff 0a 00 00 00 00 00 ............ +29 0x0000024e control 12 30 730538 0 30 730538 0 1e 00 00 00 aa 25 0b 00 00 00 00 00 .....%...... +30 0x0000025a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1661140992 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fd 9c 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +31 0x00000278 control 12 -1 720862 0 -1 720862 0 ff ff ff ff de ff 0a 00 00 00 00 00 ............ +32 0x00000284 control 12 26 730539 0 26 730539 0 1a 00 00 00 ab 25 0b 00 00 00 00 00 .....%...... +33 0x00000290 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1661009920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +34 0x000002aa control 12 -1 720863 0 -1 720863 0 ff ff ff ff df ff 0a 00 00 00 00 00 ............ +35 0x000002b6 control 12 26 730540 0 26 730540 0 1a 00 00 00 ac 25 0b 00 00 00 00 00 .....%...... +36 0x000002c2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1660878848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +37 0x000002dc control 12 -1 720864 0 -1 720864 0 ff ff ff ff e0 ff 0a 00 00 00 00 00 ............ +38 0x000002e8 control 12 26 730541 0 26 730541 0 1a 00 00 00 ad 25 0b 00 00 00 00 00 .....%...... +39 0x000002f4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1660747776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +40 0x0000030e control 12 -1 720865 0 -1 720865 0 ff ff ff ff e1 ff 0a 00 00 00 00 00 ............ +41 0x0000031a control 12 34 730542 0 34 730542 0 22 00 00 00 ae 25 0b 00 00 00 00 00 """....%......" +42 0x00000326 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322437120 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 38 13 02 00 00 00 00 00 28 90 25 c3 9d 01 00 00 .....!...o3.......8.......(.%..... +43 0x00000348 control 12 67 730543 0 67 730543 0 43 00 00 00 af 25 0b 00 00 00 00 00 C....%...... +44 0x00000354 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 38 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 d5 e9 ea f3 82 a9 18 ?.....3...|8...........8.......=B.....&......... +45 0x00000397 control 12 -1 720866 0 -1 720866 0 ff ff ff ff e2 ff 0a 00 00 00 00 00 ............ +46 0x000003a3 control 12 30 730544 0 30 730544 0 1e 00 00 00 b0 25 0b 00 00 00 00 00 .....%...... +47 0x000003af data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1660616704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +48 0x000003cd control 12 -1 720867 0 -1 720867 0 ff ff ff ff e3 ff 0a 00 00 00 00 00 ............ +49 0x000003d9 control 12 26 730545 0 26 730545 0 1a 00 00 00 b1 25 0b 00 00 00 00 00 .....%...... +50 0x000003e5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1660485632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +51 0x000003ff control 12 -1 720868 0 -1 720868 0 ff ff ff ff e4 ff 0a 00 00 00 00 00 ............ +52 0x0000040b control 12 -2 82950 82932 -2 82950 82932 fe ff ff ff 06 44 01 00 f4 43 01 00 .....D...C.. +53 0x00000417 control 12 26 730546 0 26 730546 0 1a 00 00 00 b2 25 0b 00 00 00 00 00 .....%...... +54 0x00000423 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1660354560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +55 0x0000043d control 12 -1 720869 0 -1 720869 0 ff ff ff ff e5 ff 0a 00 00 00 00 00 ............ +56 0x00000449 control 12 26 730547 0 26 730547 0 1a 00 00 00 b3 25 0b 00 00 00 00 00 .....%...... +57 0x00000455 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1660223488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +58 0x0000046f control 12 -1 720870 0 -1 720870 0 ff ff ff ff e6 ff 0a 00 00 00 00 00 ............ +59 0x0000047b control 12 101 730548 0 101 730548 0 65 00 00 00 b4 25 0b 00 00 00 00 00 e....%...... +60 0x00000487 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322502656 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 39 13 02 00 00 00 00 00 58 91 25 c3 9d 01 00 00 .....!...o3.......9.......X.%..... +61 0x000004a9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 39 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 58 91 1c fd f3 82 a9 18 ?.....3...|8...........9.......=B.....&......... +62 0x000004ec control 12 -1 720871 0 -1 720871 0 ff ff ff ff e7 ff 0a 00 00 00 00 00 ............ +63 0x000004f8 control 12 30 730549 0 30 730549 0 1e 00 00 00 b5 25 0b 00 00 00 00 00 .....%...... +64 0x00000504 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1660092416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +65 0x00000522 control 12 -1 720872 0 -1 720872 0 ff ff ff ff e8 ff 0a 00 00 00 00 00 ............ +66 0x0000052e control 12 26 730550 0 26 730550 0 1a 00 00 00 b6 25 0b 00 00 00 00 00 .....%...... +67 0x0000053a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1659961344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +68 0x00000554 control 12 -1 720873 0 -1 720873 0 ff ff ff ff e9 ff 0a 00 00 00 00 00 ............ +69 0x00000560 control 12 26 730551 0 26 730551 0 1a 00 00 00 b7 25 0b 00 00 00 00 00 .....%...... +70 0x0000056c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1659830272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +71 0x00000586 control 12 -1 720874 0 -1 720874 0 ff ff ff ff ea ff 0a 00 00 00 00 00 ............ +72 0x00000592 control 12 26 730552 0 26 730552 0 1a 00 00 00 b8 25 0b 00 00 00 00 00 .....%...... +73 0x0000059e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1659699200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +74 0x000005b8 control 12 -1 720875 0 -1 720875 0 ff ff ff ff eb ff 0a 00 00 00 00 00 ............ +75 0x000005c4 control 12 -2 82951 82933 -2 82951 82933 fe ff ff ff 07 44 01 00 f5 43 01 00 .....D...C.. +76 0x000005d0 control 12 101 730553 0 101 730553 0 65 00 00 00 b9 25 0b 00 00 00 00 00 e....%...... +77 0x000005dc data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322568192 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3a 13 02 00 00 00 00 00 89 92 25 c3 9d 01 00 00 .....!...o3.......:.........%..... +78 0x000005fe data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 ca 4b 0f f4 82 a9 18 ?.....3...|8...........:.......=B.....&......... +79 0x00000641 control 12 -1 720876 0 -1 720876 0 ff ff ff ff ec ff 0a 00 00 00 00 00 ............ +80 0x0000064d control 12 30 730554 0 30 730554 0 1e 00 00 00 ba 25 0b 00 00 00 00 00 .....%...... +81 0x00000659 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1659568128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +82 0x00000677 control 12 -1 720877 0 -1 720877 0 ff ff ff ff ed ff 0a 00 00 00 00 00 ............ +83 0x00000683 control 12 26 730555 0 26 730555 0 1a 00 00 00 bb 25 0b 00 00 00 00 00 .....%...... +84 0x0000068f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1659437056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +85 0x000006a9 control 12 -1 720878 0 -1 720878 0 ff ff ff ff ee ff 0a 00 00 00 00 00 ............ +86 0x000006b5 control 12 26 730556 0 26 730556 0 1a 00 00 00 bc 25 0b 00 00 00 00 00 .....%...... +87 0x000006c1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1659305984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +88 0x000006db control 12 -1 720879 0 -1 720879 0 ff ff ff ff ef ff 0a 00 00 00 00 00 ............ +89 0x000006e7 control 12 26 730557 0 26 730557 0 1a 00 00 00 bd 25 0b 00 00 00 00 00 .....%...... +90 0x000006f3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1659174912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +91 0x0000070d control 12 -1 720880 0 -1 720880 0 ff ff ff ff f0 ff 0a 00 00 00 00 00 ............ +92 0x00000719 control 12 34 730558 0 34 730558 0 22 00 00 00 be 25 0b 00 00 00 00 00 """....%......" +93 0x00000725 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322633728 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3b 13 02 00 00 00 00 00 ba 93 25 c3 9d 01 00 00 .....!...o3.......;.........%..... +94 0x00000747 control 12 67 730559 0 67 730559 0 43 00 00 00 bf 25 0b 00 00 00 00 00 C....%...... +95 0x00000753 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 34 7e 21 f4 82 a9 18 ?.....3...|8...........;.......=B.....&......... +96 0x00000796 control 12 -1 720881 0 -1 720881 0 ff ff ff ff f1 ff 0a 00 00 00 00 00 ............ +97 0x000007a2 control 12 30 730560 0 30 730560 0 1e 00 00 00 c0 25 0b 00 00 00 00 00 .....%...... +98 0x000007ae data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1659043840 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +99 0x000007cc control 12 -1 720882 0 -1 720882 0 ff ff ff ff f2 ff 0a 00 00 00 00 00 ............ +100 0x000007d8 control 12 26 730561 0 26 730561 0 1a 00 00 00 c1 25 0b 00 00 00 00 00 .....%...... +101 0x000007e4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1658912768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +102 0x000007fe control 12 -1 720883 0 -1 720883 0 ff ff ff ff f3 ff 0a 00 00 00 00 00 ............ +103 0x0000080a control 12 26 730562 0 26 730562 0 1a 00 00 00 c2 25 0b 00 00 00 00 00 .....%...... +104 0x00000816 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1658781696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 9d 1f 00 00 00 00 00 ....T.c@.^1@......!....... +105 0x00000830 control 12 -1 720884 0 -1 720884 0 ff ff ff ff f4 ff 0a 00 00 00 00 00 ............ +106 0x0000083c control 12 -2 82952 82934 -2 82952 82934 fe ff ff ff 08 44 01 00 f6 43 01 00 .....D...C.. +107 0x00000848 control 12 26 730563 0 26 730563 0 1a 00 00 00 c3 25 0b 00 00 00 00 00 .....%...... +108 0x00000854 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1658650624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 9d 1f 00 00 00 00 00 ....T.c@.^1@......#....... +109 0x0000086e control 12 -1 720885 0 -1 720885 0 ff ff ff ff f5 ff 0a 00 00 00 00 00 ............ +110 0x0000087a control 12 101 730564 0 101 730564 0 65 00 00 00 c4 25 0b 00 00 00 00 00 e....%...... +111 0x00000886 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322699264 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3c 13 02 00 00 00 00 00 ee 94 25 c3 9d 01 00 00 .....!...o3.......<.........%..... +112 0x000008a8 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3c 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c 89 d7 33 f4 82 a9 18 ?.....3...|8...........<.......=B.....&......... +113 0x000008eb control 12 -1 720886 0 -1 720886 0 ff ff ff ff f6 ff 0a 00 00 00 00 00 ............ +114 0x000008f7 control 12 30 730565 0 30 730565 0 1e 00 00 00 c5 25 0b 00 00 00 00 00 .....%...... +115 0x00000903 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1658519552 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +116 0x00000921 control 12 -1 720887 0 -1 720887 0 ff ff ff ff f7 ff 0a 00 00 00 00 00 ............ +117 0x0000092d control 12 26 730566 0 26 730566 0 1a 00 00 00 c6 25 0b 00 00 00 00 00 .....%...... +118 0x00000939 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1658388480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 9d 1f 00 00 00 00 00 ....T.c@.^1@......'....... +119 0x00000953 control 12 -1 720888 0 -1 720888 0 ff ff ff ff f8 ff 0a 00 00 00 00 00 ............ +120 0x0000095f control 12 26 730567 0 26 730567 0 1a 00 00 00 c7 25 0b 00 00 00 00 00 .....%...... +121 0x0000096b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1658257408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 9d 1f 00 00 00 00 00 ....T.c@.^1@......)....... +122 0x00000985 control 12 -1 720889 0 -1 720889 0 ff ff ff ff f9 ff 0a 00 00 00 00 00 ............ +123 0x00000991 control 12 26 730568 0 26 730568 0 1a 00 00 00 c8 25 0b 00 00 00 00 00 .....%...... +124 0x0000099d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1658126336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 9d 1f 00 00 00 00 00 ....T.c@.^1@......+....... +125 0x000009b7 control 12 -1 720890 0 -1 720890 0 ff ff ff ff fa ff 0a 00 00 00 00 00 ............ +126 0x000009c3 control 12 34 730569 0 34 730569 0 22 00 00 00 c9 25 0b 00 00 00 00 00 """....%......" +127 0x000009cf data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322764800 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3d 13 02 00 00 00 00 00 20 96 25 c3 9d 01 00 00 .....!...o3.......=....... .%..... +128 0x000009f1 control 12 67 730570 0 67 730570 0 43 00 00 00 ca 25 0b 00 00 00 00 00 C....%...... +129 0x000009fd data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 fa 00 46 f4 82 a9 18 ?.....3...|8...........=.......=B.....&......... +130 0x00000a40 control 12 -1 720891 0 -1 720891 0 ff ff ff ff fb ff 0a 00 00 00 00 00 ............ +131 0x00000a4c control 12 30 730571 0 30 730571 0 1e 00 00 00 cb 25 0b 00 00 00 00 00 .....%...... +132 0x00000a58 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1657995264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +133 0x00000a76 control 12 -1 720892 0 -1 720892 0 ff ff ff ff fc ff 0a 00 00 00 00 00 ............ +134 0x00000a82 control 12 26 730572 0 26 730572 0 1a 00 00 00 cc 25 0b 00 00 00 00 00 .....%...... +135 0x00000a8e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1657864192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 9d 1f 00 00 00 00 00 ....T.c@.^1@....../....... +136 0x00000aa8 control 12 -1 720893 0 -1 720893 0 ff ff ff ff fd ff 0a 00 00 00 00 00 ............ +137 0x00000ab4 control 12 -2 82953 82935 -2 82953 82935 fe ff ff ff 09 44 01 00 f7 43 01 00 .....D...C.. +138 0x00000ac0 control 12 26 730573 0 26 730573 0 1a 00 00 00 cd 25 0b 00 00 00 00 00 .....%...... +139 0x00000acc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1657733120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 9d 1f 00 00 00 00 00 ....T.c@.^1@......1....... +140 0x00000ae6 control 12 -1 720894 0 -1 720894 0 ff ff ff ff fe ff 0a 00 00 00 00 00 ............ +141 0x00000af2 control 12 26 730574 0 26 730574 0 1a 00 00 00 ce 25 0b 00 00 00 00 00 .....%...... +142 0x00000afe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1657602048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 9d 1f 00 00 00 00 00 ....T.c@.^1@......3....... +143 0x00000b18 control 12 -1 720895 0 -1 720895 0 ff ff ff ff ff ff 0a 00 00 00 00 00 ............ +144 0x00000b24 control 12 101 730575 0 101 730575 0 65 00 00 00 cf 25 0b 00 00 00 00 00 e....%...... +145 0x00000b30 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322830336 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3e 13 02 00 00 00 00 00 51 97 25 c3 9d 01 00 00 .....!...o3.......>.......Q.%..... +146 0x00000b52 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3e 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 98 62 2d 58 f4 82 a9 18 ?.....3...|8...........>.......=B.....&......... +147 0x00000b95 control 12 -1 720896 0 -1 720896 0 ff ff ff ff 00 00 0b 00 00 00 00 00 ............ +148 0x00000ba1 control 12 30 730576 0 30 730576 0 1e 00 00 00 d0 25 0b 00 00 00 00 00 .....%...... +149 0x00000bad data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1657470976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +150 0x00000bcb control 12 -1 720897 0 -1 720897 0 ff ff ff ff 01 00 0b 00 00 00 00 00 ............ +151 0x00000bd7 control 12 26 730577 0 26 730577 0 1a 00 00 00 d1 25 0b 00 00 00 00 00 .....%...... +152 0x00000be3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1657339904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 9d 1f 00 00 00 00 00 ....T.c@.^1@......7....... +153 0x00000bfd control 12 -1 720898 0 -1 720898 0 ff ff ff ff 02 00 0b 00 00 00 00 00 ............ +154 0x00000c09 control 12 26 730578 0 26 730578 0 1a 00 00 00 d2 25 0b 00 00 00 00 00 .....%...... +155 0x00000c15 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1657208832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 9d 1f 00 00 00 00 00 ....T.c@.^1@......9....... +156 0x00000c2f control 12 -1 720899 0 -1 720899 0 ff ff ff ff 03 00 0b 00 00 00 00 00 ............ +157 0x00000c3b control 12 -2 82954 82936 -2 82954 82936 fe ff ff ff 0a 44 01 00 f8 43 01 00 .....D...C.. +158 0x00000c47 control 12 26 730579 0 26 730579 0 1a 00 00 00 d3 25 0b 00 00 00 00 00 .....%...... +159 0x00000c53 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1657077760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 9d 1f 00 00 00 00 00 ....T.c@.^1@......;....... +160 0x00000c6d control 12 -1 720900 0 -1 720900 0 ff ff ff ff 04 00 0b 00 00 00 00 00 ............ +161 0x00000c79 control 12 34 730580 0 34 730580 0 22 00 00 00 d4 25 0b 00 00 00 00 00 """....%......" +162 0x00000c85 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322895872 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3f 13 02 00 00 00 00 00 81 98 25 c3 9d 01 00 00 .....!...o3.......?.........%..... +163 0x00000ca7 control 12 67 730581 0 67 730581 0 43 00 00 00 d5 25 0b 00 00 00 00 00 C....%...... +164 0x00000cb3 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 28 e3 5f 6a f4 82 a9 18 ?.....3...|8...........?.......=B.....&......... +165 0x00000cf6 control 12 -1 720901 0 -1 720901 0 ff ff ff ff 05 00 0b 00 00 00 00 00 ............ +166 0x00000d02 control 12 30 730582 0 30 730582 0 1e 00 00 00 d6 25 0b 00 00 00 00 00 .....%...... +167 0x00000d0e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1656946688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +168 0x00000d2c control 12 -1 720902 0 -1 720902 0 ff ff ff ff 06 00 0b 00 00 00 00 00 ............ +169 0x00000d38 control 12 26 730583 0 26 730583 0 1a 00 00 00 d7 25 0b 00 00 00 00 00 .....%...... +170 0x00000d44 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1656815616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 9d 1f 00 00 00 00 00 ....T.c@.^1@......?....... +171 0x00000d5e control 12 -1 720903 0 -1 720903 0 ff ff ff ff 07 00 0b 00 00 00 00 00 ............ +172 0x00000d6a control 12 26 730584 0 26 730584 0 1a 00 00 00 d8 25 0b 00 00 00 00 00 .....%...... +173 0x00000d76 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1656684544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 9d 1f 00 00 00 00 00 ....T.c@.^1@......A....... +174 0x00000d90 control 12 -1 720904 0 -1 720904 0 ff ff ff ff 08 00 0b 00 00 00 00 00 ............ +175 0x00000d9c control 12 26 730585 0 26 730585 0 1a 00 00 00 d9 25 0b 00 00 00 00 00 .....%...... +176 0x00000da8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1656553472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 9d 1f 00 00 00 00 00 ....T.c@.^1@......C....... +177 0x00000dc2 control 12 -1 720905 0 -1 720905 0 ff ff ff ff 09 00 0b 00 00 00 00 00 ............ +178 0x00000dce control 12 34 730586 0 34 730586 0 22 00 00 00 da 25 0b 00 00 00 00 00 """....%......" +179 0x00000dda data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 322961408 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 40 13 02 00 00 00 00 00 b3 99 25 c3 9d 01 00 00 .....!...o3.......@.........%..... +180 0x00000dfc control 12 67 730587 0 67 730587 0 43 00 00 00 db 25 0b 00 00 00 00 00 C....%...... +181 0x00000e08 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 40 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d8 12 a0 7c f4 82 a9 18 ?.....3...|8...........@.......=B.....&......... +182 0x00000e4b control 12 -1 720906 0 -1 720906 0 ff ff ff ff 0a 00 0b 00 00 00 00 00 ............ +183 0x00000e57 control 12 30 730588 0 30 730588 0 1e 00 00 00 dc 25 0b 00 00 00 00 00 .....%...... +184 0x00000e63 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1656422400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......E........... +185 0x00000e81 control 12 -1 720907 0 -1 720907 0 ff ff ff ff 0b 00 0b 00 00 00 00 00 ............ +186 0x00000e8d control 12 26 730589 0 26 730589 0 1a 00 00 00 dd 25 0b 00 00 00 00 00 .....%...... +187 0x00000e99 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1656291328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 9d 1f 00 00 00 00 00 ....T.c@.^1@......G....... +188 0x00000eb3 control 12 -1 720908 0 -1 720908 0 ff ff ff ff 0c 00 0b 00 00 00 00 00 ............ +189 0x00000ebf control 12 -2 82955 82937 -2 82955 82937 fe ff ff ff 0b 44 01 00 f9 43 01 00 .....D...C.. +190 0x00000ecb control 12 26 730590 0 26 730590 0 1a 00 00 00 de 25 0b 00 00 00 00 00 .....%...... +191 0x00000ed7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1656160256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 9d 1f 00 00 00 00 00 ....T.c@.^1@......I....... +192 0x00000ef1 control 12 -1 720909 0 -1 720909 0 ff ff ff ff 0d 00 0b 00 00 00 00 00 ............ +193 0x00000efd control 12 26 730591 0 26 730591 0 1a 00 00 00 df 25 0b 00 00 00 00 00 .....%...... +194 0x00000f09 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1656029184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 9d 1f 00 00 00 00 00 ....T.c@.^1@......K....... +195 0x00000f23 control 12 -1 720910 0 -1 720910 0 ff ff ff ff 0e 00 0b 00 00 00 00 00 ............ +196 0x00000f2f control 12 101 730592 0 101 730592 0 65 00 00 00 e0 25 0b 00 00 00 00 00 e....%...... +197 0x00000f3b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323026944 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 41 13 02 00 00 00 00 00 e4 9a 25 c3 9d 01 00 00 .....!...o3.......A.........%..... +198 0x00000f5d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 41 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 79 b2 8e f4 82 a9 18 ?.....3...|8...........A.......=B.....&......... +199 0x00000fa0 control 12 -1 720911 0 -1 720911 0 ff ff ff ff 0f 00 0b 00 00 00 00 00 ............ +200 0x00000fac control 12 30 730593 0 30 730593 0 1e 00 00 00 e1 25 0b 00 00 00 00 00 .....%...... +201 0x00000fb8 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1655898112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......M........... +202 0x00000fd6 control 12 -1 720912 0 -1 720912 0 ff ff ff ff 10 00 0b 00 00 00 00 00 ............ +203 0x00000fe2 control 12 26 730594 0 26 730594 0 1a 00 00 00 e2 25 0b 00 00 00 00 00 .....%...... +204 0x00000fee data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1655767040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 9d 1f 00 00 00 00 00 ....T.c@.^1@......O....... +205 0x00001008 control 12 -1 720913 0 -1 720913 0 ff ff ff ff 11 00 0b 00 00 00 00 00 ............ +206 0x00001014 control 12 26 730595 0 26 730595 0 1a 00 00 00 e3 25 0b 00 00 00 00 00 .....%...... +207 0x00001020 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1655635968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 9d 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +208 0x0000103a control 12 -1 720914 0 -1 720914 0 ff ff ff ff 12 00 0b 00 00 00 00 00 ............ +209 0x00001046 control 12 26 730596 0 26 730596 0 1a 00 00 00 e4 25 0b 00 00 00 00 00 .....%...... +210 0x00001052 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1655504896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 9d 1f 00 00 00 00 00 ....T.c@.^1@......S....... +211 0x0000106c control 12 -1 720915 0 -1 720915 0 ff ff ff ff 13 00 0b 00 00 00 00 00 ............ +212 0x00001078 control 12 101 730597 0 101 730597 0 65 00 00 00 e5 25 0b 00 00 00 00 00 e....%...... +213 0x00001084 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323092480 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 42 13 02 00 00 00 00 00 13 9c 25 c3 9d 01 00 00 .....!...o3.......B.........%..... +214 0x000010a6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 42 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c0 70 cc a0 f4 82 a9 18 ?.....3...|8...........B.......=B.....&......... +215 0x000010e9 control 12 -1 720916 0 -1 720916 0 ff ff ff ff 14 00 0b 00 00 00 00 00 ............ +216 0x000010f5 control 12 30 730598 0 30 730598 0 1e 00 00 00 e6 25 0b 00 00 00 00 00 .....%...... +217 0x00001101 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1655373824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......U........... +218 0x0000111f control 12 -1 720917 0 -1 720917 0 ff ff ff ff 15 00 0b 00 00 00 00 00 ............ +219 0x0000112b control 12 -2 82956 82938 -2 82956 82938 fe ff ff ff 0c 44 01 00 fa 43 01 00 .....D...C.. +220 0x00001137 control 12 26 730599 0 26 730599 0 1a 00 00 00 e7 25 0b 00 00 00 00 00 .....%...... +221 0x00001143 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1655242752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 9d 1f 00 00 00 00 00 ....T.c@.^1@......W....... +222 0x0000115d control 12 -1 720918 0 -1 720918 0 ff ff ff ff 16 00 0b 00 00 00 00 00 ............ +223 0x00001169 control 12 26 730600 0 26 730600 0 1a 00 00 00 e8 25 0b 00 00 00 00 00 .....%...... +224 0x00001175 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1655111680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 9d 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +225 0x0000118f control 12 -1 720919 0 -1 720919 0 ff ff ff ff 17 00 0b 00 00 00 00 00 ............ +226 0x0000119b control 12 26 730601 0 26 730601 0 1a 00 00 00 e9 25 0b 00 00 00 00 00 .....%...... +227 0x000011a7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1654980608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 9d 1f 00 00 00 00 00 ....T.c@.^1@......[....... +228 0x000011c1 control 12 -1 720920 0 -1 720920 0 ff ff ff ff 18 00 0b 00 00 00 00 00 ............ +229 0x000011cd control 12 101 730602 0 101 730602 0 65 00 00 00 ea 25 0b 00 00 00 00 00 e....%...... +230 0x000011d9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323158016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 43 13 02 00 00 00 00 00 44 9d 25 c3 9d 01 00 00 .....!...o3.......C.......D.%..... +231 0x000011fb data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 43 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 68 fa b2 f4 82 a9 18 ?.....3...|8...........C.......=B.....&......... +232 0x0000123e control 12 -1 720921 0 -1 720921 0 ff ff ff ff 19 00 0b 00 00 00 00 00 ............ +233 0x0000124a control 12 30 730603 0 30 730603 0 1e 00 00 00 eb 25 0b 00 00 00 00 00 .....%...... +234 0x00001256 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1654849536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +235 0x00001274 control 12 -1 720922 0 -1 720922 0 ff ff ff ff 1a 00 0b 00 00 00 00 00 ............ +236 0x00001280 control 12 26 730604 0 26 730604 0 1a 00 00 00 ec 25 0b 00 00 00 00 00 .....%...... +237 0x0000128c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1654718464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 9d 1f 00 00 00 00 00 ....T.c@.^1@......_....... +238 0x000012a6 control 12 -1 720923 0 -1 720923 0 ff ff ff ff 1b 00 0b 00 00 00 00 00 ............ +239 0x000012b2 control 12 26 730605 0 26 730605 0 1a 00 00 00 ed 25 0b 00 00 00 00 00 .....%...... +240 0x000012be data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1654587392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 9d 1f 00 00 00 00 00 ....T.c@.^1@......a....... +241 0x000012d8 control 12 -1 720924 0 -1 720924 0 ff ff ff ff 1c 00 0b 00 00 00 00 00 ............ +242 0x000012e4 control 12 -2 82957 82939 -2 82957 82939 fe ff ff ff 0d 44 01 00 fb 43 01 00 .....D...C.. +243 0x000012f0 control 12 26 730606 0 26 730606 0 1a 00 00 00 ee 25 0b 00 00 00 00 00 .....%...... +244 0x000012fc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1654456320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 9d 1f 00 00 00 00 00 ....T.c@.^1@......c....... +245 0x00001316 control 12 -1 720925 0 -1 720925 0 ff ff ff ff 1d 00 0b 00 00 00 00 00 ............ +246 0x00001322 control 12 34 730607 0 34 730607 0 22 00 00 00 ef 25 0b 00 00 00 00 00 """....%......" +247 0x0000132e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323223552 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 44 13 02 00 00 00 00 00 74 9e 25 c3 9d 01 00 00 .....!...o3.......D.......t.%..... +248 0x00001350 control 12 67 730608 0 67 730608 0 43 00 00 00 f0 25 0b 00 00 00 00 00 C....%...... +249 0x0000135c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 44 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 44 43 24 c5 f4 82 a9 18 ?.....3...|8...........D.......=B.....&......... +250 0x0000139f control 12 -1 720926 0 -1 720926 0 ff ff ff ff 1e 00 0b 00 00 00 00 00 ............ +251 0x000013ab control 12 30 730609 0 30 730609 0 1e 00 00 00 f1 25 0b 00 00 00 00 00 .....%...... +252 0x000013b7 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1654325248 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +253 0x000013d5 control 12 -1 720927 0 -1 720927 0 ff ff ff ff 1f 00 0b 00 00 00 00 00 ............ +254 0x000013e1 control 12 26 730610 0 26 730610 0 1a 00 00 00 f2 25 0b 00 00 00 00 00 .....%...... +255 0x000013ed data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1654194176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 9d 1f 00 00 00 00 00 ....T.c@.^1@......g....... +256 0x00001407 control 12 -1 720928 0 -1 720928 0 ff ff ff ff 20 00 0b 00 00 00 00 00 .... ....... +257 0x00001413 control 12 26 730611 0 26 730611 0 1a 00 00 00 f3 25 0b 00 00 00 00 00 .....%...... +258 0x0000141f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1654063104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 9d 1f 00 00 00 00 00 ....T.c@.^1@......i....... +259 0x00001439 control 12 -1 720929 0 -1 720929 0 ff ff ff ff 21 00 0b 00 00 00 00 00 ....!....... +260 0x00001445 control 12 26 730612 0 26 730612 0 1a 00 00 00 f4 25 0b 00 00 00 00 00 .....%...... +261 0x00001451 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1653932032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 9d 1f 00 00 00 00 00 ....T.c@.^1@......k....... +262 0x0000146b control 12 -1 720930 0 -1 720930 0 ff ff ff ff 22 00 0b 00 00 00 00 00 "....""......." +263 0x00001477 control 12 34 730613 0 34 730613 0 22 00 00 00 f5 25 0b 00 00 00 00 00 """....%......" +264 0x00001483 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323289088 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 45 13 02 00 00 00 00 00 a6 9f 25 c3 9d 01 00 00 .....!...o3.......E.........%..... +265 0x000014a5 control 12 67 730614 0 67 730614 0 43 00 00 00 f6 25 0b 00 00 00 00 00 C....%...... +266 0x000014b1 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 45 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 15 4f d7 f4 82 a9 18 ?.....3...|8...........E.......=B.....&......... +267 0x000014f4 control 12 -1 720931 0 -1 720931 0 ff ff ff ff 23 00 0b 00 00 00 00 00 ....#....... +268 0x00001500 control 12 30 730615 0 30 730615 0 1e 00 00 00 f7 25 0b 00 00 00 00 00 .....%...... +269 0x0000150c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1653800960 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......m........... +270 0x0000152a control 12 -1 720932 0 -1 720932 0 ff ff ff ff 24 00 0b 00 00 00 00 00 ....$....... +271 0x00001536 control 12 26 730616 0 26 730616 0 1a 00 00 00 f8 25 0b 00 00 00 00 00 .....%...... +272 0x00001542 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1653669888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 9d 1f 00 00 00 00 00 ....T.c@.^1@......o....... +273 0x0000155c control 12 -1 720933 0 -1 720933 0 ff ff ff ff 25 00 0b 00 00 00 00 00 ....%....... +274 0x00001568 control 12 -2 82958 82940 -2 82958 82940 fe ff ff ff 0e 44 01 00 fc 43 01 00 .....D...C.. +275 0x00001574 control 12 26 730617 0 26 730617 0 1a 00 00 00 f9 25 0b 00 00 00 00 00 .....%...... +276 0x00001580 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1653538816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 9d 1f 00 00 00 00 00 ....T.c@.^1@......q....... +277 0x0000159a control 12 -1 720934 0 -1 720934 0 ff ff ff ff 26 00 0b 00 00 00 00 00 ....&....... +278 0x000015a6 control 12 26 730618 0 26 730618 0 1a 00 00 00 fa 25 0b 00 00 00 00 00 .....%...... +279 0x000015b2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1653407744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 9d 1f 00 00 00 00 00 ....T.c@.^1@......s....... +280 0x000015cc control 12 34 730619 0 34 730619 0 22 00 00 00 fb 25 0b 00 00 00 00 00 """....%......" +281 0x000015d8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323354624 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 46 13 02 00 00 00 00 00 d6 a0 25 c3 9d 01 00 00 .....!...o3.......F.........%..... +282 0x000015fa control 12 67 730620 0 67 730620 0 43 00 00 00 fc 25 0b 00 00 00 00 00 C....%...... +283 0x00001606 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 46 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc b4 80 e9 f4 82 a9 18 ?.....3...|8...........F.......=B.....&......... +284 0x00001649 control 12 -1 720935 0 -1 720935 0 ff ff ff ff 27 00 0b 00 00 00 00 00 ....'....... +285 0x00001655 control 12 -1 720936 0 -1 720936 0 ff ff ff ff 28 00 0b 00 00 00 00 00 ....(....... +286 0x00001661 control 12 30 730621 0 30 730621 0 1e 00 00 00 fd 25 0b 00 00 00 00 00 .....%...... +287 0x0000166d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1653276672 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 75 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......u........... +288 0x0000168b control 12 -1 720937 0 -1 720937 0 ff ff ff ff 29 00 0b 00 00 00 00 00 ....)....... +289 0x00001697 control 12 26 730622 0 26 730622 0 1a 00 00 00 fe 25 0b 00 00 00 00 00 .....%...... +290 0x000016a3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1653145600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 9d 1f 00 00 00 00 00 ....T.c@.^1@......w....... +291 0x000016bd control 12 -1 720938 0 -1 720938 0 ff ff ff ff 2a 00 0b 00 00 00 00 00 ....*....... +292 0x000016c9 control 12 26 730623 0 26 730623 0 1a 00 00 00 ff 25 0b 00 00 00 00 00 .....%...... +293 0x000016d5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1653014528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 9d 1f 00 00 00 00 00 ....T.c@.^1@......y....... +294 0x000016ef control 12 -1 720939 0 -1 720939 0 ff ff ff ff 2b 00 0b 00 00 00 00 00 ....+....... +295 0x000016fb control 12 34 730624 0 34 730624 0 22 00 00 00 00 26 0b 00 00 00 00 00 """....&......" +296 0x00001707 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323420160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 47 13 02 00 00 00 00 00 08 a2 25 c3 9d 01 00 00 .....!...o3.......G.........%..... +297 0x00001729 control 12 67 730625 0 67 730625 0 43 00 00 00 01 26 0b 00 00 00 00 00 C....&...... +298 0x00001735 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 47 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 79 b2 fb f4 82 a9 18 ?.....3...|8...........G.......=B.....&......... +299 0x00001778 control 12 -1 720940 0 -1 720940 0 ff ff ff ff 2c 00 0b 00 00 00 00 00 ....,....... +300 0x00001784 control 12 26 730626 0 26 730626 0 1a 00 00 00 02 26 0b 00 00 00 00 00 .....&...... +301 0x00001790 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1652883456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 9d 1f 00 00 00 00 00 ....T.c@.^1@......{....... +302 0x000017aa control 12 30 730627 0 30 730627 0 1e 00 00 00 03 26 0b 00 00 00 00 00 .....&...... +303 0x000017b6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1652752384 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......}........... +304 0x000017d4 control 12 -1 720941 0 -1 720941 0 ff ff ff ff 2d 00 0b 00 00 00 00 00 ....-....... +305 0x000017e0 control 12 -1 720942 0 -1 720942 0 ff ff ff ff 2e 00 0b 00 00 00 00 00 ............ +306 0x000017ec control 12 -2 82959 82941 -2 82959 82941 fe ff ff ff 0f 44 01 00 fd 43 01 00 .....D...C.. +307 0x000017f8 control 12 26 730628 0 26 730628 0 1a 00 00 00 04 26 0b 00 00 00 00 00 .....&...... +308 0x00001804 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1652621312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +309 0x0000181e control 12 -1 720943 0 -1 720943 0 ff ff ff ff 2f 00 0b 00 00 00 00 00 ..../....... +310 0x0000182a control 12 26 730629 0 26 730629 0 1a 00 00 00 05 26 0b 00 00 00 00 00 .....&...... +311 0x00001836 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1652490240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +312 0x00001850 control 12 -1 720944 0 -1 720944 0 ff ff ff ff 30 00 0b 00 00 00 00 00 ....0....... +313 0x0000185c control 12 34 730630 0 34 730630 0 22 00 00 00 06 26 0b 00 00 00 00 00 """....&......" +314 0x00001868 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323485696 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 48 13 02 00 00 00 00 00 38 a3 25 c3 9d 01 00 00 .....!...o3.......H.......8.%..... +315 0x0000188a control 12 67 730631 0 67 730631 0 43 00 00 00 07 26 0b 00 00 00 00 00 C....&...... +316 0x00001896 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 48 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec 1f de 0d f5 82 a9 18 ?.....3...|8...........H.......=B.....&......... +317 0x000018d9 control 12 -1 720945 0 -1 720945 0 ff ff ff ff 31 00 0b 00 00 00 00 00 ....1....... +318 0x000018e5 control 12 30 730632 0 30 730632 0 1e 00 00 00 08 26 0b 00 00 00 00 00 .....&...... +319 0x000018f1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1652359168 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 83 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +320 0x0000190f control 12 -1 720946 0 -1 720946 0 ff ff ff ff 32 00 0b 00 00 00 00 00 ....2....... +321 0x0000191b control 12 26 730633 0 26 730633 0 1a 00 00 00 09 26 0b 00 00 00 00 00 .....&...... +322 0x00001927 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1652228096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +323 0x00001941 control 12 -1 720947 0 -1 720947 0 ff ff ff ff 33 00 0b 00 00 00 00 00 ....3....... +324 0x0000194d control 12 26 730634 0 26 730634 0 1a 00 00 00 0a 26 0b 00 00 00 00 00 .....&...... +325 0x00001959 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1652097024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +326 0x00001973 control 12 -1 720948 0 -1 720948 0 ff ff ff ff 34 00 0b 00 00 00 00 00 ....4....... +327 0x0000197f control 12 -2 82960 82942 -2 82960 82942 fe ff ff ff 10 44 01 00 fe 43 01 00 .....D...C.. +328 0x0000198b control 12 26 730635 0 26 730635 0 1a 00 00 00 0b 26 0b 00 00 00 00 00 .....&...... +329 0x00001997 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1651965952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +330 0x000019b1 control 12 -1 720949 0 -1 720949 0 ff ff ff ff 35 00 0b 00 00 00 00 00 ....5....... +331 0x000019bd control 12 34 730636 0 34 730636 0 22 00 00 00 0c 26 0b 00 00 00 00 00 """....&......" +332 0x000019c9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323551232 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 49 13 02 00 00 00 00 00 69 a4 25 c3 9d 01 00 00 .....!...o3.......I.......i.%..... +333 0x000019eb control 12 67 730637 0 67 730637 0 43 00 00 00 0d 26 0b 00 00 00 00 00 C....&...... +334 0x000019f7 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 49 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c e7 f9 1f f5 82 a9 18 ?.....3...|8...........I.......=B.....&......... +335 0x00001a3a control 12 -1 720950 0 -1 720950 0 ff ff ff ff 36 00 0b 00 00 00 00 00 ....6....... +336 0x00001a46 control 12 30 730638 0 30 730638 0 1e 00 00 00 0e 26 0b 00 00 00 00 00 .....&...... +337 0x00001a52 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1651834880 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8b 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +338 0x00001a70 control 12 -1 720951 0 -1 720951 0 ff ff ff ff 37 00 0b 00 00 00 00 00 ....7....... +339 0x00001a7c control 12 26 730639 0 26 730639 0 1a 00 00 00 0f 26 0b 00 00 00 00 00 .....&...... +340 0x00001a88 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1651703808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +341 0x00001aa2 control 12 -1 720952 0 -1 720952 0 ff ff ff ff 38 00 0b 00 00 00 00 00 ....8....... +342 0x00001aae control 12 26 730640 0 26 730640 0 1a 00 00 00 10 26 0b 00 00 00 00 00 .....&...... +343 0x00001aba data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1651572736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +344 0x00001ad4 control 12 -1 720953 0 -1 720953 0 ff ff ff ff 39 00 0b 00 00 00 00 00 ....9....... +345 0x00001ae0 control 12 26 730641 0 26 730641 0 1a 00 00 00 11 26 0b 00 00 00 00 00 .....&...... +346 0x00001aec data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1651441664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +347 0x00001b06 control 12 -1 720954 0 -1 720954 0 ff ff ff ff 3a 00 0b 00 00 00 00 00 ....:....... +348 0x00001b12 control 12 34 730642 0 34 730642 0 22 00 00 00 12 26 0b 00 00 00 00 00 """....&......" +349 0x00001b1e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323616768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4a 13 02 00 00 00 00 00 9a a5 25 c3 9d 01 00 00 .....!...o3.......J.........%..... +350 0x00001b40 control 12 67 730643 0 67 730643 0 43 00 00 00 13 26 0b 00 00 00 00 00 C....&...... +351 0x00001b4c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 46 37 32 f5 82 a9 18 ?.....3...|8...........J.......=B.....&......... +352 0x00001b8f control 12 -1 720955 0 -1 720955 0 ff ff ff ff 3b 00 0b 00 00 00 00 00 ....;....... +353 0x00001b9b control 12 30 730644 0 30 730644 0 1e 00 00 00 14 26 0b 00 00 00 00 00 .....&...... +354 0x00001ba7 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1651310592 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +355 0x00001bc5 control 12 -1 720956 0 -1 720956 0 ff ff ff ff 3c 00 0b 00 00 00 00 00 ....<....... +356 0x00001bd1 control 12 26 730645 0 26 730645 0 1a 00 00 00 15 26 0b 00 00 00 00 00 .....&...... +357 0x00001bdd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1651179520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +358 0x00001bf7 control 12 -1 720957 0 -1 720957 0 ff ff ff ff 3d 00 0b 00 00 00 00 00 ....=....... +359 0x00001c03 control 12 -2 82961 82943 -2 82961 82943 fe ff ff ff 11 44 01 00 ff 43 01 00 .....D...C.. +360 0x00001c0f control 12 26 730646 0 26 730646 0 1a 00 00 00 16 26 0b 00 00 00 00 00 .....&...... +361 0x00001c1b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1651048448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +362 0x00001c35 control 12 -1 720958 0 -1 720958 0 ff ff ff ff 3e 00 0b 00 00 00 00 00 ....>....... +363 0x00001c41 control 12 26 730647 0 26 730647 0 1a 00 00 00 17 26 0b 00 00 00 00 00 .....&...... +364 0x00001c4d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1650917376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +365 0x00001c67 control 12 -1 720959 0 -1 720959 0 ff ff ff ff 3f 00 0b 00 00 00 00 00 ....?....... +366 0x00001c73 control 12 101 730648 0 101 730648 0 65 00 00 00 18 26 0b 00 00 00 00 00 e....&...... +367 0x00001c7f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323682304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4b 13 02 00 00 00 00 00 ca a6 25 c3 9d 01 00 00 .....!...o3.......K.........%..... +368 0x00001ca1 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 5d 48 44 f5 82 a9 18 ?.....3...|8...........K.......=B.....&......... +369 0x00001ce4 control 12 -1 720960 0 -1 720960 0 ff ff ff ff 40 00 0b 00 00 00 00 00 ....@....... +370 0x00001cf0 control 12 30 730649 0 30 730649 0 1e 00 00 00 19 26 0b 00 00 00 00 00 .....&...... +371 0x00001cfc data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1650786304 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +372 0x00001d1a control 12 -1 720961 0 -1 720961 0 ff ff ff ff 41 00 0b 00 00 00 00 00 ....A....... +373 0x00001d26 control 12 26 730650 0 26 730650 0 1a 00 00 00 1a 26 0b 00 00 00 00 00 .....&...... +374 0x00001d32 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1650655232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +375 0x00001d4c control 12 -1 720962 0 -1 720962 0 ff ff ff ff 42 00 0b 00 00 00 00 00 ....B....... +376 0x00001d58 control 12 26 730651 0 26 730651 0 1a 00 00 00 1b 26 0b 00 00 00 00 00 .....&...... +377 0x00001d64 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1650524160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +378 0x00001d7e control 12 -1 720963 0 -1 720963 0 ff ff ff ff 43 00 0b 00 00 00 00 00 ....C....... +379 0x00001d8a control 12 26 730652 0 26 730652 0 1a 00 00 00 1c 26 0b 00 00 00 00 00 .....&...... +380 0x00001d96 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1650393088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +381 0x00001db0 control 12 -1 720964 0 -1 720964 0 ff ff ff ff 44 00 0b 00 00 00 00 00 ....D....... +382 0x00001dbc control 12 -2 82962 82944 -2 82962 82944 fe ff ff ff 12 44 01 00 00 44 01 00 .....D...D.. +383 0x00001dc8 control 12 101 730653 0 101 730653 0 65 00 00 00 1d 26 0b 00 00 00 00 00 e....&...... +384 0x00001dd4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323747840 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4c 13 02 00 00 00 00 00 fa a7 25 c3 9d 01 00 00 .....!...o3.......L.........%..... +385 0x00001df6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4c 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c 15 7a 56 f5 82 a9 18 ?.....3...|8...........L.......=B.....&......... +386 0x00001e39 control 12 -1 720965 0 -1 720965 0 ff ff ff ff 45 00 0b 00 00 00 00 00 ....E....... +387 0x00001e45 control 12 30 730654 0 30 730654 0 1e 00 00 00 1e 26 0b 00 00 00 00 00 .....&...... +388 0x00001e51 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1650262016 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +389 0x00001e6f control 12 -1 720966 0 -1 720966 0 ff ff ff ff 46 00 0b 00 00 00 00 00 ....F....... +390 0x00001e7b control 12 26 730655 0 26 730655 0 1a 00 00 00 1f 26 0b 00 00 00 00 00 .....&...... +391 0x00001e87 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1650130944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +392 0x00001ea1 control 12 -1 720967 0 -1 720967 0 ff ff ff ff 47 00 0b 00 00 00 00 00 ....G....... +393 0x00001ead control 12 26 730656 0 26 730656 0 1a 00 00 00 20 26 0b 00 00 00 00 00 .... &...... +394 0x00001eb9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1649999872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +395 0x00001ed3 control 12 -1 720968 0 -1 720968 0 ff ff ff ff 48 00 0b 00 00 00 00 00 ....H....... +396 0x00001edf control 12 26 730657 0 26 730657 0 1a 00 00 00 21 26 0b 00 00 00 00 00 ....!&...... +397 0x00001eeb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1649868800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +398 0x00001f05 control 12 -1 720969 0 -1 720969 0 ff ff ff ff 49 00 0b 00 00 00 00 00 ....I....... +399 0x00001f11 control 12 34 730658 0 34 730658 0 22 00 00 00 22 26 0b 00 00 00 00 00 """...""&......" +400 0x00001f1d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323813376 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4d 13 02 00 00 00 00 00 2d a9 25 c3 9d 01 00 00 .....!...o3.......M.......-.%..... +401 0x00001f3f control 12 67 730659 0 67 730659 0 43 00 00 00 23 26 0b 00 00 00 00 00 C...#&...... +402 0x00001f4b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 e2 bd 68 f5 82 a9 18 ?.....3...|8...........M.......=B.....&......... +403 0x00001f8e control 12 -1 720970 0 -1 720970 0 ff ff ff ff 4a 00 0b 00 00 00 00 00 ....J....... +404 0x00001f9a control 12 30 730660 0 30 730660 0 1e 00 00 00 24 26 0b 00 00 00 00 00 ....$&...... +405 0x00001fa6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1649737728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +406 0x00001fc4 control 12 -1 720971 0 -1 720971 0 ff ff ff ff 4b 00 0b 00 00 00 00 00 ....K....... +407 0x00001fd0 control 12 26 730661 0 26 730661 0 1a 00 00 00 25 26 0b 00 00 00 00 00 ....%&...... +408 0x00001fdc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1649606656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +409 0x00001ff6 control 12 -1 720972 0 -1 720972 0 ff ff ff ff 4c 00 0b 00 00 00 00 00 ....L....... +410 0x00002002 control 12 26 730662 0 26 730662 0 1a 00 00 00 26 26 0b 00 00 00 00 00 ....&&...... +411 0x0000200e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1649475584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +412 0x00002028 control 12 -1 720973 0 -1 720973 0 ff ff ff ff 4d 00 0b 00 00 00 00 00 ....M....... +413 0x00002034 control 12 -2 82963 82945 -2 82963 82945 fe ff ff ff 13 44 01 00 01 44 01 00 .....D...D.. +414 0x00002040 control 12 26 730663 0 26 730663 0 1a 00 00 00 27 26 0b 00 00 00 00 00 ....'&...... +415 0x0000204c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1649344512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +416 0x00002066 control 12 -1 720974 0 -1 720974 0 ff ff ff ff 4e 00 0b 00 00 00 00 00 ....N....... +417 0x00002072 control 12 34 730664 0 34 730664 0 22 00 00 00 28 26 0b 00 00 00 00 00 """...(&......" +418 0x0000207e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323878912 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4e 13 02 00 00 00 00 00 5e aa 25 c3 9d 01 00 00 .....!...o3.......N.......^.%..... +419 0x000020a0 control 12 67 730665 0 67 730665 0 43 00 00 00 29 26 0b 00 00 00 00 00 C...)&...... +420 0x000020ac data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4e 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 d3 e4 7a f5 82 a9 18 ?.....3...|8...........N.......=B.....&......... +421 0x000020ef control 12 -1 720975 0 -1 720975 0 ff ff ff ff 4f 00 0b 00 00 00 00 00 ....O....... +422 0x000020fb control 12 30 730666 0 30 730666 0 1e 00 00 00 2a 26 0b 00 00 00 00 00 ....*&...... +423 0x00002107 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1649213440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +424 0x00002125 control 12 -1 720976 0 -1 720976 0 ff ff ff ff 50 00 0b 00 00 00 00 00 ....P....... +425 0x00002131 control 12 26 730667 0 26 730667 0 1a 00 00 00 2b 26 0b 00 00 00 00 00 ....+&...... +426 0x0000213d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1649082368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +427 0x00002157 control 12 -1 720977 0 -1 720977 0 ff ff ff ff 51 00 0b 00 00 00 00 00 ....Q....... +428 0x00002163 control 12 26 730668 0 26 730668 0 1a 00 00 00 2c 26 0b 00 00 00 00 00 ....,&...... +429 0x0000216f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1648951296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +430 0x00002189 control 12 -1 720978 0 -1 720978 0 ff ff ff ff 52 00 0b 00 00 00 00 00 ....R....... +431 0x00002195 control 12 26 730669 0 26 730669 0 1a 00 00 00 2d 26 0b 00 00 00 00 00 ....-&...... +432 0x000021a1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1648820224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +433 0x000021bb control 12 -1 720979 0 -1 720979 0 ff ff ff ff 53 00 0b 00 00 00 00 00 ....S....... +434 0x000021c7 control 12 34 730670 0 34 730670 0 22 00 00 00 2e 26 0b 00 00 00 00 00 """....&......" +435 0x000021d3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 323944448 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4f 13 02 00 00 00 00 00 8f ab 25 c3 9d 01 00 00 .....!...o3.......O.........%..... +436 0x000021f5 control 12 67 730671 0 67 730671 0 43 00 00 00 2f 26 0b 00 00 00 00 00 C.../&...... +437 0x00002201 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 45 12 8d f5 82 a9 18 ?.....3...|8...........O.......=B.....&......... +438 0x00002244 control 12 -1 720980 0 -1 720980 0 ff ff ff ff 54 00 0b 00 00 00 00 00 ....T....... +439 0x00002250 control 12 30 730672 0 30 730672 0 1e 00 00 00 30 26 0b 00 00 00 00 00 ....0&...... +440 0x0000225c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1648689152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +441 0x0000227a control 12 -1 720981 0 -1 720981 0 ff ff ff ff 55 00 0b 00 00 00 00 00 ....U....... +442 0x00002286 control 12 26 730673 0 26 730673 0 1a 00 00 00 31 26 0b 00 00 00 00 00 ....1&...... +443 0x00002292 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1648558080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +444 0x000022ac control 12 -1 720982 0 -1 720982 0 ff ff ff ff 56 00 0b 00 00 00 00 00 ....V....... +445 0x000022b8 control 12 -2 82964 82946 -2 82964 82946 fe ff ff ff 14 44 01 00 02 44 01 00 .....D...D.. +446 0x000022c4 control 12 26 730674 0 26 730674 0 1a 00 00 00 32 26 0b 00 00 00 00 00 ....2&...... +447 0x000022d0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1648427008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +448 0x000022ea control 12 -1 720983 0 -1 720983 0 ff ff ff ff 57 00 0b 00 00 00 00 00 ....W....... +449 0x000022f6 control 12 26 730675 0 26 730675 0 1a 00 00 00 33 26 0b 00 00 00 00 00 ....3&...... +450 0x00002302 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1648295936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +451 0x0000231c control 12 -1 720984 0 -1 720984 0 ff ff ff ff 58 00 0b 00 00 00 00 00 ....X....... +452 0x00002328 control 12 34 730676 0 34 730676 0 22 00 00 00 34 26 0b 00 00 00 00 00 """...4&......" +453 0x00002334 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324009984 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 50 13 02 00 00 00 00 00 bf ac 25 c3 9d 01 00 00 .....!...o3.......P.........%..... +454 0x00002356 control 12 67 730677 0 67 730677 0 43 00 00 00 35 26 0b 00 00 00 00 00 C...5&...... +455 0x00002362 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 50 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 64 48 3d 9f f5 82 a9 18 ?.....3...|8...........P.......=B.....&......... +456 0x000023a5 control 12 -1 720985 0 -1 720985 0 ff ff ff ff 59 00 0b 00 00 00 00 00 ....Y....... +457 0x000023b1 control 12 30 730678 0 30 730678 0 1e 00 00 00 36 26 0b 00 00 00 00 00 ....6&...... +458 0x000023bd data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1648164864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +459 0x000023db control 12 -1 720986 0 -1 720986 0 ff ff ff ff 5a 00 0b 00 00 00 00 00 ....Z....... +460 0x000023e7 control 12 26 730679 0 26 730679 0 1a 00 00 00 37 26 0b 00 00 00 00 00 ....7&...... +461 0x000023f3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1648033792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +462 0x0000240d control 12 -1 720987 0 -1 720987 0 ff ff ff ff 5b 00 0b 00 00 00 00 00 ....[....... +463 0x00002419 control 12 26 730680 0 26 730680 0 1a 00 00 00 38 26 0b 00 00 00 00 00 ....8&...... +464 0x00002425 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1647902720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +465 0x0000243f control 12 -1 720988 0 -1 720988 0 ff ff ff ff 5c 00 0b 00 00 00 00 00 ....\....... +466 0x0000244b control 12 26 730681 0 26 730681 0 1a 00 00 00 39 26 0b 00 00 00 00 00 ....9&...... +467 0x00002457 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1647771648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +468 0x00002471 control 12 -1 720989 0 -1 720989 0 ff ff ff ff 5d 00 0b 00 00 00 00 00 ....]....... +469 0x0000247d control 12 -2 82965 82947 -2 82965 82947 fe ff ff ff 15 44 01 00 03 44 01 00 .....D...D.. +470 0x00002489 control 12 34 730682 0 34 730682 0 22 00 00 00 3a 26 0b 00 00 00 00 00 """...:&......" +471 0x00002495 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324075520 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 51 13 02 00 00 00 00 00 f0 ad 25 c3 9d 01 00 00 .....!...o3.......Q.........%..... +472 0x000024b7 control 12 67 730683 0 67 730683 0 43 00 00 00 3b 26 0b 00 00 00 00 00 C...;&...... +473 0x000024c3 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 51 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c 11 5d b1 f5 82 a9 18 ?.....3...|8...........Q.......=B.....&......... +474 0x00002506 control 12 -1 720990 0 -1 720990 0 ff ff ff ff 5e 00 0b 00 00 00 00 00 ....^....... +475 0x00002512 control 12 30 730684 0 30 730684 0 1e 00 00 00 3c 26 0b 00 00 00 00 00 ....<&...... +476 0x0000251e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1647640576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +477 0x0000253c control 12 -1 720991 0 -1 720991 0 ff ff ff ff 5f 00 0b 00 00 00 00 00 ...._....... +478 0x00002548 control 12 26 730685 0 26 730685 0 1a 00 00 00 3d 26 0b 00 00 00 00 00 ....=&...... +479 0x00002554 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1647509504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +480 0x0000256e control 12 -1 720992 0 -1 720992 0 ff ff ff ff 60 00 0b 00 00 00 00 00 ....`....... +481 0x0000257a control 12 26 730686 0 26 730686 0 1a 00 00 00 3e 26 0b 00 00 00 00 00 ....>&...... +482 0x00002586 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1647378432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +483 0x000025a0 control 12 -1 720993 0 -1 720993 0 ff ff ff ff 61 00 0b 00 00 00 00 00 ....a....... +484 0x000025ac control 12 26 730687 0 26 730687 0 1a 00 00 00 3f 26 0b 00 00 00 00 00 ....?&...... +485 0x000025b8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1647247360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +486 0x000025d2 control 12 -1 720994 0 -1 720994 0 ff ff ff ff 62 00 0b 00 00 00 00 00 ....b....... +487 0x000025de control 12 101 730688 0 101 730688 0 65 00 00 00 40 26 0b 00 00 00 00 00 e...@&...... +488 0x000025ea data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324141056 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 52 13 02 00 00 00 00 00 20 af 25 c3 9d 01 00 00 .....!...o3.......R....... .%..... +489 0x0000260c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 52 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c 29 8e c3 f5 82 a9 18 ?.....3...|8...........R.......=B.....&......... +490 0x0000264f control 12 -1 720995 0 -1 720995 0 ff ff ff ff 63 00 0b 00 00 00 00 00 ....c....... +491 0x0000265b control 12 30 730689 0 30 730689 0 1e 00 00 00 41 26 0b 00 00 00 00 00 ....A&...... +492 0x00002667 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1647116288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +493 0x00002685 control 12 -1 720996 0 -1 720996 0 ff ff ff ff 64 00 0b 00 00 00 00 00 ....d....... +494 0x00002691 control 12 26 730690 0 26 730690 0 1a 00 00 00 42 26 0b 00 00 00 00 00 ....B&...... +495 0x0000269d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1646985216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +496 0x000026b7 control 12 -1 720997 0 -1 720997 0 ff ff ff ff 65 00 0b 00 00 00 00 00 ....e....... +497 0x000026c3 control 12 -2 82966 82948 -2 82966 82948 fe ff ff ff 16 44 01 00 04 44 01 00 .....D...D.. +498 0x000026cf control 12 26 730691 0 26 730691 0 1a 00 00 00 43 26 0b 00 00 00 00 00 ....C&...... +499 0x000026db data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1646854144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +500 0x000026f5 control 12 -1 720998 0 -1 720998 0 ff ff ff ff 66 00 0b 00 00 00 00 00 ....f....... +501 0x00002701 control 12 26 730692 0 26 730692 0 1a 00 00 00 44 26 0b 00 00 00 00 00 ....D&...... +502 0x0000270d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1646723072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +503 0x00002727 control 12 -1 720999 0 -1 720999 0 ff ff ff ff 67 00 0b 00 00 00 00 00 ....g....... +504 0x00002733 control 12 34 730693 0 34 730693 0 22 00 00 00 45 26 0b 00 00 00 00 00 """...E&......" +505 0x0000273f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324206592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 53 13 02 00 00 00 00 00 52 b0 25 c3 9d 01 00 00 .....!...o3.......S.......R.%..... +506 0x00002761 control 12 67 730694 0 67 730694 0 43 00 00 00 46 26 0b 00 00 00 00 00 C...F&...... +507 0x0000276d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 53 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 34 69 bb d5 f5 82 a9 18 ?.....3...|8...........S.......=B.....&......... +508 0x000027b0 control 12 -1 721000 0 -1 721000 0 ff ff ff ff 68 00 0b 00 00 00 00 00 ....h....... +509 0x000027bc control 12 30 730695 0 30 730695 0 1e 00 00 00 47 26 0b 00 00 00 00 00 ....G&...... +510 0x000027c8 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1646592000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +511 0x000027e6 control 12 -1 721001 0 -1 721001 0 ff ff ff ff 69 00 0b 00 00 00 00 00 ....i....... +512 0x000027f2 control 12 26 730696 0 26 730696 0 1a 00 00 00 48 26 0b 00 00 00 00 00 ....H&...... +513 0x000027fe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1646460928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +514 0x00002818 control 12 -1 721002 0 -1 721002 0 ff ff ff ff 6a 00 0b 00 00 00 00 00 ....j....... +515 0x00002824 control 12 26 730697 0 26 730697 0 1a 00 00 00 49 26 0b 00 00 00 00 00 ....I&...... +516 0x00002830 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1646329856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +517 0x0000284a control 12 -1 721003 0 -1 721003 0 ff ff ff ff 6b 00 0b 00 00 00 00 00 ....k....... +518 0x00002856 control 12 26 730698 0 26 730698 0 1a 00 00 00 4a 26 0b 00 00 00 00 00 ....J&...... +519 0x00002862 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1646198784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +520 0x0000287c control 12 -1 721004 0 -1 721004 0 ff ff ff ff 6c 00 0b 00 00 00 00 00 ....l....... +521 0x00002888 control 12 34 730699 0 34 730699 0 22 00 00 00 4b 26 0b 00 00 00 00 00 """...K&......" +522 0x00002894 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324272128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 54 13 02 00 00 00 00 00 83 b1 25 c3 9d 01 00 00 .....!...o3.......T.........%..... +523 0x000028b6 control 12 67 730700 0 67 730700 0 43 00 00 00 4c 26 0b 00 00 00 00 00 C...L&...... +524 0x000028c2 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 54 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 6d e9 e7 f5 82 a9 18 ?.....3...|8...........T.......=B.....&......... +525 0x00002905 control 12 -1 721005 0 -1 721005 0 ff ff ff ff 6d 00 0b 00 00 00 00 00 ....m....... +526 0x00002911 control 12 30 730701 0 30 730701 0 1e 00 00 00 4d 26 0b 00 00 00 00 00 ....M&...... +527 0x0000291d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1646067712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +528 0x0000293b control 12 -1 721006 0 -1 721006 0 ff ff ff ff 6e 00 0b 00 00 00 00 00 ....n....... +529 0x00002947 control 12 -2 82967 82949 -2 82967 82949 fe ff ff ff 17 44 01 00 05 44 01 00 .....D...D.. +530 0x00002953 control 12 26 730702 0 26 730702 0 1a 00 00 00 4e 26 0b 00 00 00 00 00 ....N&...... +531 0x0000295f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1645936640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +532 0x00002979 control 12 -1 721007 0 -1 721007 0 ff ff ff ff 6f 00 0b 00 00 00 00 00 ....o....... +533 0x00002985 control 12 26 730703 0 26 730703 0 1a 00 00 00 4f 26 0b 00 00 00 00 00 ....O&...... +534 0x00002991 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1645805568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +535 0x000029ab control 12 -1 721008 0 -1 721008 0 ff ff ff ff 70 00 0b 00 00 00 00 00 ....p....... +536 0x000029b7 control 12 26 730704 0 26 730704 0 1a 00 00 00 50 26 0b 00 00 00 00 00 ....P&...... +537 0x000029c3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1645674496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +538 0x000029dd control 12 -1 721009 0 -1 721009 0 ff ff ff ff 71 00 0b 00 00 00 00 00 ....q....... +539 0x000029e9 control 12 101 730705 0 101 730705 0 65 00 00 00 51 26 0b 00 00 00 00 00 e...Q&...... +540 0x000029f5 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324337664 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 55 13 02 00 00 00 00 00 b3 b2 25 c3 9d 01 00 00 .....!...o3.......U.........%..... +541 0x00002a17 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 55 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 03 08 fa f5 82 a9 18 ?.....3...|8...........U.......=B.....&......... +542 0x00002a5a control 12 -1 721010 0 -1 721010 0 ff ff ff ff 72 00 0b 00 00 00 00 00 ....r....... +543 0x00002a66 control 12 30 730706 0 30 730706 0 1e 00 00 00 52 26 0b 00 00 00 00 00 ....R&...... +544 0x00002a72 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1645543424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +545 0x00002a90 control 12 -1 721011 0 -1 721011 0 ff ff ff ff 73 00 0b 00 00 00 00 00 ....s....... +546 0x00002a9c control 12 26 730707 0 26 730707 0 1a 00 00 00 53 26 0b 00 00 00 00 00 ....S&...... +547 0x00002aa8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1645412352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +548 0x00002ac2 control 12 -1 721012 0 -1 721012 0 ff ff ff ff 74 00 0b 00 00 00 00 00 ....t....... +549 0x00002ace control 12 26 730708 0 26 730708 0 1a 00 00 00 54 26 0b 00 00 00 00 00 ....T&...... +550 0x00002ada data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1645281280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +551 0x00002af4 control 12 -1 721013 0 -1 721013 0 ff ff ff ff 75 00 0b 00 00 00 00 00 ....u....... +552 0x00002b00 control 12 -2 82968 82950 -2 82968 82950 fe ff ff ff 18 44 01 00 06 44 01 00 .....D...D.. +553 0x00002b0c control 12 26 730709 0 26 730709 0 1a 00 00 00 55 26 0b 00 00 00 00 00 ....U&...... +554 0x00002b18 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1645150208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +555 0x00002b32 control 12 -1 721014 0 -1 721014 0 ff ff ff ff 76 00 0b 00 00 00 00 00 ....v....... +556 0x00002b3e control 12 101 730710 0 101 730710 0 65 00 00 00 56 26 0b 00 00 00 00 00 e...V&...... +557 0x00002b4a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324403200 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 56 13 02 00 00 00 00 00 e4 b3 25 c3 9d 01 00 00 .....!...o3.......V.........%..... +558 0x00002b6c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 56 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc 6b 41 0c f6 82 a9 18 ?.....3...|8...........V.......=B.....&......... +559 0x00002baf control 12 -1 721015 0 -1 721015 0 ff ff ff ff 77 00 0b 00 00 00 00 00 ....w....... +560 0x00002bbb control 12 30 730711 0 30 730711 0 1e 00 00 00 57 26 0b 00 00 00 00 00 ....W&...... +561 0x00002bc7 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1645019136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +562 0x00002be5 control 12 -1 721016 0 -1 721016 0 ff ff ff ff 78 00 0b 00 00 00 00 00 ....x....... +563 0x00002bf1 control 12 26 730712 0 26 730712 0 1a 00 00 00 58 26 0b 00 00 00 00 00 ....X&...... +564 0x00002bfd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1644888064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +565 0x00002c17 control 12 -1 721017 0 -1 721017 0 ff ff ff ff 79 00 0b 00 00 00 00 00 ....y....... +566 0x00002c23 control 12 26 730713 0 26 730713 0 1a 00 00 00 59 26 0b 00 00 00 00 00 ....Y&...... +567 0x00002c2f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1644756992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +568 0x00002c49 control 12 -1 721018 0 -1 721018 0 ff ff ff ff 7a 00 0b 00 00 00 00 00 ....z....... +569 0x00002c55 control 12 26 730714 0 26 730714 0 1a 00 00 00 5a 26 0b 00 00 00 00 00 ....Z&...... +570 0x00002c61 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1644625920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +571 0x00002c7b control 12 -1 721019 0 -1 721019 0 ff ff ff ff 7b 00 0b 00 00 00 00 00 ....{....... +572 0x00002c87 control 12 34 730715 0 34 730715 0 22 00 00 00 5b 26 0b 00 00 00 00 00 """...[&......" +573 0x00002c93 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324468736 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 13 02 00 00 00 00 00 15 b5 25 c3 9d 01 00 00 .....!...o3.......W.........%..... +574 0x00002cb5 control 12 67 730716 0 67 730716 0 43 00 00 00 5c 26 0b 00 00 00 00 00 C...\&...... +575 0x00002cc1 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 57 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 fd 63 1e f6 82 a9 18 ?.....3...|8...........W.......=B.....&......... +576 0x00002d04 control 12 -1 721020 0 -1 721020 0 ff ff ff ff 7c 00 0b 00 00 00 00 00 ....|....... +577 0x00002d10 control 12 30 730717 0 30 730717 0 1e 00 00 00 5d 26 0b 00 00 00 00 00 ....]&...... +578 0x00002d1c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1644494848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +579 0x00002d3a control 12 -1 721021 0 -1 721021 0 ff ff ff ff 7d 00 0b 00 00 00 00 00 ....}....... +580 0x00002d46 control 12 26 730718 0 26 730718 0 1a 00 00 00 5e 26 0b 00 00 00 00 00 ....^&...... +581 0x00002d52 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1644363776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +582 0x00002d6c control 12 -1 721022 0 -1 721022 0 ff ff ff ff 7e 00 0b 00 00 00 00 00 ....~....... +583 0x00002d78 control 12 -2 82969 82951 -2 82969 82951 fe ff ff ff 19 44 01 00 07 44 01 00 .....D...D.. +584 0x00002d84 control 12 26 730719 0 26 730719 0 1a 00 00 00 5f 26 0b 00 00 00 00 00 ...._&...... +585 0x00002d90 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1644232704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +586 0x00002daa control 12 -1 721023 0 -1 721023 0 ff ff ff ff 7f 00 0b 00 00 00 00 00 ............ +587 0x00002db6 control 12 26 730720 0 26 730720 0 1a 00 00 00 60 26 0b 00 00 00 00 00 ....`&...... +588 0x00002dc2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1644101632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +589 0x00002ddc control 12 101 730721 0 101 730721 0 65 00 00 00 61 26 0b 00 00 00 00 00 e...a&...... +590 0x00002de8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324534272 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 13 02 00 00 00 00 00 46 b6 25 c3 9d 01 00 00 .....!...o3.......X.......F.%..... +591 0x00002e0a data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 58 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc fe 89 30 f6 82 a9 18 ?.....3...|8...........X.......=B.....&......... +592 0x00002e4d control 12 -1 721024 0 -1 721024 0 ff ff ff ff 80 00 0b 00 00 00 00 00 ............ +593 0x00002e59 control 12 -1 721025 0 -1 721025 0 ff ff ff ff 81 00 0b 00 00 00 00 00 ............ +594 0x00002e65 control 12 30 730722 0 30 730722 0 1e 00 00 00 62 26 0b 00 00 00 00 00 ....b&...... +595 0x00002e71 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1643970560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +596 0x00002e8f control 12 -1 721026 0 -1 721026 0 ff ff ff ff 82 00 0b 00 00 00 00 00 ............ +597 0x00002e9b control 12 26 730723 0 26 730723 0 1a 00 00 00 63 26 0b 00 00 00 00 00 ....c&...... +598 0x00002ea7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1643839488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +599 0x00002ec1 control 12 -1 721027 0 -1 721027 0 ff ff ff ff 83 00 0b 00 00 00 00 00 ............ +600 0x00002ecd control 12 26 730724 0 26 730724 0 1a 00 00 00 64 26 0b 00 00 00 00 00 ....d&...... +601 0x00002ed9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1643708416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +602 0x00002ef3 control 12 -1 721028 0 -1 721028 0 ff ff ff ff 84 00 0b 00 00 00 00 00 ............ +603 0x00002eff control 12 101 730725 0 101 730725 0 65 00 00 00 65 26 0b 00 00 00 00 00 e...e&...... +604 0x00002f0b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324599808 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 13 02 00 00 00 00 00 76 b7 25 c3 9d 01 00 00 .....!...o3.......Y.......v.%..... +605 0x00002f2d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 59 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 12 a6 42 f6 82 a9 18 ?.....3...|8...........Y.......=B.....&......... +606 0x00002f70 control 12 -1 721029 0 -1 721029 0 ff ff ff ff 85 00 0b 00 00 00 00 00 ............ +607 0x00002f7c control 12 30 730726 0 30 730726 0 1e 00 00 00 66 26 0b 00 00 00 00 00 ....f&...... +608 0x00002f88 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1643577344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +609 0x00002fa6 control 12 -1 721030 0 -1 721030 0 ff ff ff ff 86 00 0b 00 00 00 00 00 ............ +610 0x00002fb2 control 12 26 730727 0 26 730727 0 1a 00 00 00 67 26 0b 00 00 00 00 00 ....g&...... +611 0x00002fbe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1643446272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +612 0x00002fd8 control 12 -1 721031 0 -1 721031 0 ff ff ff ff 87 00 0b 00 00 00 00 00 ............ +613 0x00002fe4 control 12 -2 82970 82952 -2 82970 82952 fe ff ff ff 1a 44 01 00 08 44 01 00 .....D...D.. +614 0x00002ff0 control 12 26 730728 0 26 730728 0 1a 00 00 00 68 26 0b 00 00 00 00 00 ....h&...... +615 0x00002ffc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1643315200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +616 0x00003016 control 12 -1 721032 0 -1 721032 0 ff ff ff ff 88 00 0b 00 00 00 00 00 ............ +617 0x00003022 control 12 26 730729 0 26 730729 0 1a 00 00 00 69 26 0b 00 00 00 00 00 ....i&...... +618 0x0000302e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1643184128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +619 0x00003048 control 12 -1 721033 0 -1 721033 0 ff ff ff ff 89 00 0b 00 00 00 00 00 ............ +620 0x00003054 control 12 101 730730 0 101 730730 0 65 00 00 00 6a 26 0b 00 00 00 00 00 e...j&...... +621 0x00003060 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324665344 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5a 13 02 00 00 00 00 00 a6 b8 25 c3 9d 01 00 00 .....!...o3.......Z.........%..... +622 0x00003082 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 d1 d0 54 f6 82 a9 18 ?.....3...|8...........Z.......=B.....&......... +623 0x000030c5 control 12 -1 721034 0 -1 721034 0 ff ff ff ff 8a 00 0b 00 00 00 00 00 ............ +624 0x000030d1 control 12 30 730731 0 30 730731 0 1e 00 00 00 6b 26 0b 00 00 00 00 00 ....k&...... +625 0x000030dd data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1643053056 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 11 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +626 0x000030fb control 12 -1 721035 0 -1 721035 0 ff ff ff ff 8b 00 0b 00 00 00 00 00 ............ +627 0x00003107 control 12 26 730732 0 26 730732 0 1a 00 00 00 6c 26 0b 00 00 00 00 00 ....l&...... +628 0x00003113 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1642921984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +629 0x0000312d control 12 -1 721036 0 -1 721036 0 ff ff ff ff 8c 00 0b 00 00 00 00 00 ............ +630 0x00003139 control 12 26 730733 0 26 730733 0 1a 00 00 00 6d 26 0b 00 00 00 00 00 ....m&...... +631 0x00003145 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1642790912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +632 0x0000315f control 12 -1 721037 0 -1 721037 0 ff ff ff ff 8d 00 0b 00 00 00 00 00 ............ +633 0x0000316b control 12 26 730734 0 26 730734 0 1a 00 00 00 6e 26 0b 00 00 00 00 00 ....n&...... +634 0x00003177 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1642659840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +635 0x00003191 control 12 -1 721038 0 -1 721038 0 ff ff ff ff 8e 00 0b 00 00 00 00 00 ............ +636 0x0000319d control 12 -2 82971 82953 -2 82971 82953 fe ff ff ff 1b 44 01 00 09 44 01 00 .....D...D.. +637 0x000031a9 control 12 34 730735 0 34 730735 0 22 00 00 00 6f 26 0b 00 00 00 00 00 """...o&......" +638 0x000031b5 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324730880 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5b 13 02 00 00 00 00 00 d7 b9 25 c3 9d 01 00 00 .....!...o3.......[.........%..... +639 0x000031d7 control 12 67 730736 0 67 730736 0 43 00 00 00 70 26 0b 00 00 00 00 00 C...p&...... +640 0x000031e3 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 ab 0c 67 f6 82 a9 18 ?.....3...|8...........[.......=B.....&......... +641 0x00003226 control 12 -1 721039 0 -1 721039 0 ff ff ff ff 8f 00 0b 00 00 00 00 00 ............ +642 0x00003232 control 12 30 730737 0 30 730737 0 1e 00 00 00 71 26 0b 00 00 00 00 00 ....q&...... +643 0x0000323e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1642528768 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +644 0x0000325c control 12 -1 721040 0 -1 721040 0 ff ff ff ff 90 00 0b 00 00 00 00 00 ............ +645 0x00003268 control 12 26 730738 0 26 730738 0 1a 00 00 00 72 26 0b 00 00 00 00 00 ....r&...... +646 0x00003274 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1642397696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +647 0x0000328e control 12 -1 721041 0 -1 721041 0 ff ff ff ff 91 00 0b 00 00 00 00 00 ............ +648 0x0000329a control 12 26 730739 0 26 730739 0 1a 00 00 00 73 26 0b 00 00 00 00 00 ....s&...... +649 0x000032a6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1642266624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +650 0x000032c0 control 12 -1 721042 0 -1 721042 0 ff ff ff ff 92 00 0b 00 00 00 00 00 ............ +651 0x000032cc control 12 26 730740 0 26 730740 0 1a 00 00 00 74 26 0b 00 00 00 00 00 ....t&...... +652 0x000032d8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1642135552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +653 0x000032f2 control 12 -1 721043 0 -1 721043 0 ff ff ff ff 93 00 0b 00 00 00 00 00 ............ +654 0x000032fe control 12 34 730741 0 34 730741 0 22 00 00 00 75 26 0b 00 00 00 00 00 """...u&......" +655 0x0000330a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324796416 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5c 13 02 00 00 00 00 00 08 bb 25 c3 9d 01 00 00 .....!...o3.......\.........%..... +656 0x0000332c control 12 67 730742 0 67 730742 0 43 00 00 00 76 26 0b 00 00 00 00 00 C...v&...... +657 0x00003338 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5c 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 96 25 79 f6 82 a9 18 ?.....3...|8...........\.......=B.....&......... +658 0x0000337b control 12 -1 721044 0 -1 721044 0 ff ff ff ff 94 00 0b 00 00 00 00 00 ............ +659 0x00003387 control 12 30 730743 0 30 730743 0 1e 00 00 00 77 26 0b 00 00 00 00 00 ....w&...... +660 0x00003393 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1642004480 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +661 0x000033b1 control 12 -1 721045 0 -1 721045 0 ff ff ff ff 95 00 0b 00 00 00 00 00 ............ +662 0x000033bd control 12 26 730744 0 26 730744 0 1a 00 00 00 78 26 0b 00 00 00 00 00 ....x&...... +663 0x000033c9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1641873408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 9e 1f 00 00 00 00 00 ....T.c@.^1@......#....... +664 0x000033e3 control 12 -1 721046 0 -1 721046 0 ff ff ff ff 96 00 0b 00 00 00 00 00 ............ +665 0x000033ef control 12 26 730745 0 26 730745 0 1a 00 00 00 79 26 0b 00 00 00 00 00 ....y&...... +666 0x000033fb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1641742336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 9e 1f 00 00 00 00 00 ....T.c@.^1@......%....... +667 0x00003415 control 12 -1 721047 0 -1 721047 0 ff ff ff ff 97 00 0b 00 00 00 00 00 ............ +668 0x00003421 control 12 -2 82972 82954 -2 82972 82954 fe ff ff ff 1c 44 01 00 0a 44 01 00 .....D...D.. +669 0x0000342d control 12 26 730746 0 26 730746 0 1a 00 00 00 7a 26 0b 00 00 00 00 00 ....z&...... +670 0x00003439 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1641611264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 9e 1f 00 00 00 00 00 ....T.c@.^1@......'....... +671 0x00003453 control 12 -1 721048 0 -1 721048 0 ff ff ff ff 98 00 0b 00 00 00 00 00 ............ +672 0x0000345f control 12 34 730747 0 34 730747 0 22 00 00 00 7b 26 0b 00 00 00 00 00 """...{&......" +673 0x0000346b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324861952 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5d 13 02 00 00 00 00 00 38 bc 25 c3 9d 01 00 00 .....!...o3.......].......8.%..... +674 0x0000348d control 12 67 730748 0 67 730748 0 43 00 00 00 7c 26 0b 00 00 00 00 00 C...|&...... +675 0x00003499 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f bc 1d 5a 8b f6 82 a9 18 ?.....3...|8...........].......=B.....&......... +676 0x000034dc control 12 -1 721049 0 -1 721049 0 ff ff ff ff 99 00 0b 00 00 00 00 00 ............ +677 0x000034e8 control 12 30 730749 0 30 730749 0 1e 00 00 00 7d 26 0b 00 00 00 00 00 ....}&...... +678 0x000034f4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1641480192 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +679 0x00003512 control 12 -1 721050 0 -1 721050 0 ff ff ff ff 9a 00 0b 00 00 00 00 00 ............ +680 0x0000351e control 12 26 730750 0 26 730750 0 1a 00 00 00 7e 26 0b 00 00 00 00 00 ....~&...... +681 0x0000352a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1641349120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 9e 1f 00 00 00 00 00 ....T.c@.^1@......+....... +682 0x00003544 control 12 -1 721051 0 -1 721051 0 ff ff ff ff 9b 00 0b 00 00 00 00 00 ............ +683 0x00003550 control 12 26 730751 0 26 730751 0 1a 00 00 00 7f 26 0b 00 00 00 00 00 .....&...... +684 0x0000355c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1641218048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 9e 1f 00 00 00 00 00 ....T.c@.^1@......-....... +685 0x00003576 control 12 -1 721052 0 -1 721052 0 ff ff ff ff 9c 00 0b 00 00 00 00 00 ............ +686 0x00003582 control 12 26 730752 0 26 730752 0 1a 00 00 00 80 26 0b 00 00 00 00 00 .....&...... +687 0x0000358e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1641086976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 9e 1f 00 00 00 00 00 ....T.c@.^1@....../....... +688 0x000035a8 control 12 -1 721053 0 -1 721053 0 ff ff ff ff 9d 00 0b 00 00 00 00 00 ............ +689 0x000035b4 control 12 101 730753 0 101 730753 0 65 00 00 00 81 26 0b 00 00 00 00 00 e....&...... +690 0x000035c0 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324927488 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5e 13 02 00 00 00 00 00 69 bd 25 c3 9d 01 00 00 .....!...o3.......^.......i.%..... +691 0x000035e2 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5e 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 6f 7a 9d f6 82 a9 18 ?.....3...|8...........^.......=B.....&......... +692 0x00003625 control 12 -1 721054 0 -1 721054 0 ff ff ff ff 9e 00 0b 00 00 00 00 00 ............ +693 0x00003631 control 12 30 730754 0 30 730754 0 1e 00 00 00 82 26 0b 00 00 00 00 00 .....&...... +694 0x0000363d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1640955904 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +695 0x0000365b control 12 -1 721055 0 -1 721055 0 ff ff ff ff 9f 00 0b 00 00 00 00 00 ............ +696 0x00003667 control 12 -2 82973 82955 -2 82973 82955 fe ff ff ff 1d 44 01 00 0b 44 01 00 .....D...D.. +697 0x00003673 control 12 26 730755 0 26 730755 0 1a 00 00 00 83 26 0b 00 00 00 00 00 .....&...... +698 0x0000367f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1640824832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 9e 1f 00 00 00 00 00 ....T.c@.^1@......3....... +699 0x00003699 control 12 -1 721056 0 -1 721056 0 ff ff ff ff a0 00 0b 00 00 00 00 00 ............ +700 0x000036a5 control 12 26 730756 0 26 730756 0 1a 00 00 00 84 26 0b 00 00 00 00 00 .....&...... +701 0x000036b1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1640693760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 9e 1f 00 00 00 00 00 ....T.c@.^1@......5....... +702 0x000036cb control 12 -1 721057 0 -1 721057 0 ff ff ff ff a1 00 0b 00 00 00 00 00 ............ +703 0x000036d7 control 12 26 730757 0 26 730757 0 1a 00 00 00 85 26 0b 00 00 00 00 00 .....&...... +704 0x000036e3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1640562688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 9e 1f 00 00 00 00 00 ....T.c@.^1@......7....... +705 0x000036fd control 12 -1 721058 0 -1 721058 0 ff ff ff ff a2 00 0b 00 00 00 00 00 ............ +706 0x00003709 control 12 34 730758 0 34 730758 0 22 00 00 00 86 26 0b 00 00 00 00 00 """....&......" +707 0x00003715 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 324993024 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5f 13 02 00 00 00 00 00 9a be 25 c3 9d 01 00 00 .....!...o3......._.........%..... +708 0x00003737 control 12 67 730759 0 67 730759 0 43 00 00 00 87 26 0b 00 00 00 00 00 C....&...... +709 0x00003743 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 a7 a6 af f6 82 a9 18 ?.....3...|8..........._.......=B.....&......... +710 0x00003786 control 12 -1 721059 0 -1 721059 0 ff ff ff ff a3 00 0b 00 00 00 00 00 ............ +711 0x00003792 control 12 30 730760 0 30 730760 0 1e 00 00 00 88 26 0b 00 00 00 00 00 .....&...... +712 0x0000379e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1640431616 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +713 0x000037bc control 12 -1 721060 0 -1 721060 0 ff ff ff ff a4 00 0b 00 00 00 00 00 ............ +714 0x000037c8 control 12 26 730761 0 26 730761 0 1a 00 00 00 89 26 0b 00 00 00 00 00 .....&...... +715 0x000037d4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1640300544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 9e 1f 00 00 00 00 00 ....T.c@.^1@......;....... +716 0x000037ee control 12 -1 721061 0 -1 721061 0 ff ff ff ff a5 00 0b 00 00 00 00 00 ............ +717 0x000037fa control 12 26 730762 0 26 730762 0 1a 00 00 00 8a 26 0b 00 00 00 00 00 .....&...... +718 0x00003806 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1640169472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 9e 1f 00 00 00 00 00 ....T.c@.^1@......=....... +719 0x00003820 control 12 -1 721062 0 -1 721062 0 ff ff ff ff a6 00 0b 00 00 00 00 00 ............ +720 0x0000382c control 12 -2 82974 82956 -2 82974 82956 fe ff ff ff 1e 44 01 00 0c 44 01 00 .....D...D.. +721 0x00003838 control 12 26 730763 0 26 730763 0 1a 00 00 00 8b 26 0b 00 00 00 00 00 .....&...... +722 0x00003844 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1640038400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 9e 1f 00 00 00 00 00 ....T.c@.^1@......?....... +723 0x0000385e control 12 -1 721063 0 -1 721063 0 ff ff ff ff a7 00 0b 00 00 00 00 00 ............ +724 0x0000386a control 12 34 730764 0 34 730764 0 22 00 00 00 8c 26 0b 00 00 00 00 00 """....&......" +725 0x00003876 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325058560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 60 13 02 00 00 00 00 00 cc bf 25 c3 9d 01 00 00 .....!...o3.......`.........%..... +726 0x00003898 control 12 67 730765 0 67 730765 0 43 00 00 00 8d 26 0b 00 00 00 00 00 C....&...... +727 0x000038a4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 60 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 18 4f d7 c1 f6 82 a9 18 ?.....3...|8...........`.......=B.....&......... +728 0x000038e7 control 12 -1 721064 0 -1 721064 0 ff ff ff ff a8 00 0b 00 00 00 00 00 ............ +729 0x000038f3 control 12 30 730766 0 30 730766 0 1e 00 00 00 8e 26 0b 00 00 00 00 00 .....&...... +730 0x000038ff data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1639907328 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +731 0x0000391d control 12 -1 721065 0 -1 721065 0 ff ff ff ff a9 00 0b 00 00 00 00 00 ............ +732 0x00003929 control 12 26 730767 0 26 730767 0 1a 00 00 00 8f 26 0b 00 00 00 00 00 .....&...... +733 0x00003935 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1639776256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 9e 1f 00 00 00 00 00 ....T.c@.^1@......C....... +734 0x0000394f control 12 -1 721066 0 -1 721066 0 ff ff ff ff aa 00 0b 00 00 00 00 00 ............ +735 0x0000395b control 12 26 730768 0 26 730768 0 1a 00 00 00 90 26 0b 00 00 00 00 00 .....&...... +736 0x00003967 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1639645184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 9e 1f 00 00 00 00 00 ....T.c@.^1@......E....... +737 0x00003981 control 12 -1 721067 0 -1 721067 0 ff ff ff ff ab 00 0b 00 00 00 00 00 ............ +738 0x0000398d control 12 26 730769 0 26 730769 0 1a 00 00 00 91 26 0b 00 00 00 00 00 .....&...... +739 0x00003999 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1639514112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 9e 1f 00 00 00 00 00 ....T.c@.^1@......G....... +740 0x000039b3 control 12 -1 721068 0 -1 721068 0 ff ff ff ff ac 00 0b 00 00 00 00 00 ............ +741 0x000039bf control 12 101 730770 0 101 730770 0 65 00 00 00 92 26 0b 00 00 00 00 00 e....&...... +742 0x000039cb data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325124096 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 61 13 02 00 00 00 00 00 fc c0 25 c3 9d 01 00 00 .....!...o3.......a.........%..... +743 0x000039ed data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 61 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d8 bc 0f d4 f6 82 a9 18 ?.....3...|8...........a.......=B.....&......... +744 0x00003a30 control 12 -1 721069 0 -1 721069 0 ff ff ff ff ad 00 0b 00 00 00 00 00 ............ +745 0x00003a3c control 12 30 730771 0 30 730771 0 1e 00 00 00 93 26 0b 00 00 00 00 00 .....&...... +746 0x00003a48 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1639383040 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +747 0x00003a66 control 12 -1 721070 0 -1 721070 0 ff ff ff ff ae 00 0b 00 00 00 00 00 ............ +748 0x00003a72 control 12 26 730772 0 26 730772 0 1a 00 00 00 94 26 0b 00 00 00 00 00 .....&...... +749 0x00003a7e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1639251968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 9e 1f 00 00 00 00 00 ....T.c@.^1@......K....... +750 0x00003a98 control 12 -1 721071 0 -1 721071 0 ff ff ff ff af 00 0b 00 00 00 00 00 ............ +751 0x00003aa4 control 12 -2 82975 82957 -2 82975 82957 fe ff ff ff 1f 44 01 00 0d 44 01 00 .....D...D.. +752 0x00003ab0 control 12 26 730773 0 26 730773 0 1a 00 00 00 95 26 0b 00 00 00 00 00 .....&...... +753 0x00003abc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1639120896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 9e 1f 00 00 00 00 00 ....T.c@.^1@......M....... +754 0x00003ad6 control 12 -1 721072 0 -1 721072 0 ff ff ff ff b0 00 0b 00 00 00 00 00 ............ +755 0x00003ae2 control 12 26 730774 0 26 730774 0 1a 00 00 00 96 26 0b 00 00 00 00 00 .....&...... +756 0x00003aee data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1638989824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 9e 1f 00 00 00 00 00 ....T.c@.^1@......O....... +757 0x00003b08 control 12 -1 721073 0 -1 721073 0 ff ff ff ff b1 00 0b 00 00 00 00 00 ............ +758 0x00003b14 control 12 34 730775 0 34 730775 0 22 00 00 00 97 26 0b 00 00 00 00 00 """....&......" +759 0x00003b20 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325189632 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 62 13 02 00 00 00 00 00 2d c2 25 c3 9d 01 00 00 .....!...o3.......b.......-.%..... +760 0x00003b42 control 12 67 730776 0 67 730776 0 43 00 00 00 98 26 0b 00 00 00 00 00 C....&...... +761 0x00003b4e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 62 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 99 40 e6 f6 82 a9 18 ?.....3...|8...........b.......=B.....&......... +762 0x00003b91 control 12 -1 721074 0 -1 721074 0 ff ff ff ff b2 00 0b 00 00 00 00 00 ............ +763 0x00003b9d control 12 30 730777 0 30 730777 0 1e 00 00 00 99 26 0b 00 00 00 00 00 .....&...... +764 0x00003ba9 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1638858752 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +765 0x00003bc7 control 12 -1 721075 0 -1 721075 0 ff ff ff ff b3 00 0b 00 00 00 00 00 ............ +766 0x00003bd3 control 12 26 730778 0 26 730778 0 1a 00 00 00 9a 26 0b 00 00 00 00 00 .....&...... +767 0x00003bdf data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1638727680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 9e 1f 00 00 00 00 00 ....T.c@.^1@......S....... +768 0x00003bf9 control 12 -1 721076 0 -1 721076 0 ff ff ff ff b4 00 0b 00 00 00 00 00 ............ +769 0x00003c05 control 12 26 730779 0 26 730779 0 1a 00 00 00 9b 26 0b 00 00 00 00 00 .....&...... +770 0x00003c11 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1638596608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 9e 1f 00 00 00 00 00 ....T.c@.^1@......U....... +771 0x00003c2b control 12 -1 721077 0 -1 721077 0 ff ff ff ff b5 00 0b 00 00 00 00 00 ............ +772 0x00003c37 control 12 26 730780 0 26 730780 0 1a 00 00 00 9c 26 0b 00 00 00 00 00 .....&...... +773 0x00003c43 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1638465536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 9e 1f 00 00 00 00 00 ....T.c@.^1@......W....... +774 0x00003c5d control 12 -1 721078 0 -1 721078 0 ff ff ff ff b6 00 0b 00 00 00 00 00 ............ +775 0x00003c69 control 12 -2 82976 82958 -2 82976 82958 fe ff ff ff 20 44 01 00 0e 44 01 00 .... D...D.. +776 0x00003c75 control 12 101 730781 0 101 730781 0 65 00 00 00 9d 26 0b 00 00 00 00 00 e....&...... +777 0x00003c81 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325255168 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 63 13 02 00 00 00 00 00 5e c3 25 c3 9d 01 00 00 .....!...o3.......c.......^.%..... +778 0x00003ca3 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 63 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 20 3d 6e f8 f6 82 a9 18 ?.....3...|8...........c.......=B.....&......... +779 0x00003ce6 control 12 -1 721079 0 -1 721079 0 ff ff ff ff b7 00 0b 00 00 00 00 00 ............ +780 0x00003cf2 control 12 30 730782 0 30 730782 0 1e 00 00 00 9e 26 0b 00 00 00 00 00 .....&...... +781 0x00003cfe data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1638334464 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +782 0x00003d1c control 12 -1 721080 0 -1 721080 0 ff ff ff ff b8 00 0b 00 00 00 00 00 ............ +783 0x00003d28 control 12 26 730783 0 26 730783 0 1a 00 00 00 9f 26 0b 00 00 00 00 00 .....&...... +784 0x00003d34 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1638203392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 9e 1f 00 00 00 00 00 ....T.c@.^1@......[....... +785 0x00003d4e control 12 -1 721081 0 -1 721081 0 ff ff ff ff b9 00 0b 00 00 00 00 00 ............ +786 0x00003d5a control 12 26 730784 0 26 730784 0 1a 00 00 00 a0 26 0b 00 00 00 00 00 .....&...... +787 0x00003d66 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1638072320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 9e 1f 00 00 00 00 00 ....T.c@.^1@......]....... +788 0x00003d80 control 12 -1 721082 0 -1 721082 0 ff ff ff ff ba 00 0b 00 00 00 00 00 ............ +789 0x00003d8c control 12 26 730785 0 26 730785 0 1a 00 00 00 a1 26 0b 00 00 00 00 00 .....&...... +790 0x00003d98 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1637941248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 9e 1f 00 00 00 00 00 ....T.c@.^1@......_....... +791 0x00003db2 control 12 -1 721083 0 -1 721083 0 ff ff ff ff bb 00 0b 00 00 00 00 00 ............ +792 0x00003dbe control 12 34 730786 0 34 730786 0 22 00 00 00 a2 26 0b 00 00 00 00 00 """....&......" +793 0x00003dca data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325320704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 64 13 02 00 00 00 00 00 8e c4 25 c3 9d 01 00 00 .....!...o3.......d.........%..... +794 0x00003dec control 12 67 730787 0 67 730787 0 43 00 00 00 a3 26 0b 00 00 00 00 00 C....&...... +795 0x00003df8 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 64 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 bd 8a 0a f7 82 a9 18 ?.....3...|8...........d.......=B.....&......... +796 0x00003e3b control 12 -1 721084 0 -1 721084 0 ff ff ff ff bc 00 0b 00 00 00 00 00 ............ +797 0x00003e47 control 12 30 730788 0 30 730788 0 1e 00 00 00 a4 26 0b 00 00 00 00 00 .....&...... +798 0x00003e53 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1637810176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +799 0x00003e71 control 12 -1 721085 0 -1 721085 0 ff ff ff ff bd 00 0b 00 00 00 00 00 ............ +800 0x00003e7d control 12 26 730789 0 26 730789 0 1a 00 00 00 a5 26 0b 00 00 00 00 00 .....&...... +801 0x00003e89 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1637679104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 9e 1f 00 00 00 00 00 ....T.c@.^1@......c....... +802 0x00003ea3 control 12 -1 721086 0 -1 721086 0 ff ff ff ff be 00 0b 00 00 00 00 00 ............ +803 0x00003eaf control 12 26 730790 0 26 730790 0 1a 00 00 00 a6 26 0b 00 00 00 00 00 .....&...... +804 0x00003ebb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1637548032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 9e 1f 00 00 00 00 00 ....T.c@.^1@......e....... +805 0x00003ed5 control 12 -1 721087 0 -1 721087 0 ff ff ff ff bf 00 0b 00 00 00 00 00 ............ +806 0x00003ee1 control 12 -2 82977 82959 -2 82977 82959 fe ff ff ff 21 44 01 00 0f 44 01 00 ....!D...D.. +807 0x00003eed control 12 26 730791 0 26 730791 0 1a 00 00 00 a7 26 0b 00 00 00 00 00 .....&...... +808 0x00003ef9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1637416960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 9e 1f 00 00 00 00 00 ....T.c@.^1@......g....... +809 0x00003f13 control 12 -1 721088 0 -1 721088 0 ff ff ff ff c0 00 0b 00 00 00 00 00 ............ +810 0x00003f1f control 12 34 730792 0 34 730792 0 22 00 00 00 a8 26 0b 00 00 00 00 00 """....&......" +811 0x00003f2b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325386240 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 65 13 02 00 00 00 00 00 bf c5 25 c3 9d 01 00 00 .....!...o3.......e.........%..... +812 0x00003f4d control 12 67 730793 0 67 730793 0 43 00 00 00 a9 26 0b 00 00 00 00 00 C....&...... +813 0x00003f59 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 65 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f4 02 a6 1c f7 82 a9 18 ?.....3...|8...........e.......=B.....&......... +814 0x00003f9c control 12 -1 721089 0 -1 721089 0 ff ff ff ff c1 00 0b 00 00 00 00 00 ............ +815 0x00003fa8 control 12 30 730794 0 30 730794 0 1e 00 00 00 aa 26 0b 00 00 00 00 00 .....&...... +816 0x00003fb4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1637285888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 69 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......i........... +817 0x00003fd2 control 12 -1 721090 0 -1 721090 0 ff ff ff ff c2 00 0b 00 00 00 00 00 ............ +818 0x00003fde control 12 26 730795 0 26 730795 0 1a 00 00 00 ab 26 0b 00 00 00 00 00 .....&...... +819 0x00003fea data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1637154816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 9e 1f 00 00 00 00 00 ....T.c@.^1@......k....... +820 0x00004004 control 12 -1 721091 0 -1 721091 0 ff ff ff ff c3 00 0b 00 00 00 00 00 ............ +821 0x00004010 control 12 26 730796 0 26 730796 0 1a 00 00 00 ac 26 0b 00 00 00 00 00 .....&...... +822 0x0000401c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1637023744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 9e 1f 00 00 00 00 00 ....T.c@.^1@......m....... +823 0x00004036 control 12 -1 721092 0 -1 721092 0 ff ff ff ff c4 00 0b 00 00 00 00 00 ............ +824 0x00004042 control 12 26 730797 0 26 730797 0 1a 00 00 00 ad 26 0b 00 00 00 00 00 .....&...... +825 0x0000404e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1636892672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 9e 1f 00 00 00 00 00 ....T.c@.^1@......o....... +826 0x00004068 control 12 -1 721093 0 -1 721093 0 ff ff ff ff c5 00 0b 00 00 00 00 00 ............ +827 0x00004074 control 12 34 730798 0 34 730798 0 22 00 00 00 ae 26 0b 00 00 00 00 00 """....&......" +828 0x00004080 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325451776 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 66 13 02 00 00 00 00 00 ef c6 25 c3 9d 01 00 00 .....!...o3.......f.........%..... +829 0x000040a2 control 12 67 730799 0 67 730799 0 43 00 00 00 af 26 0b 00 00 00 00 00 C....&...... +830 0x000040ae data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 66 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 e3 d4 2e f7 82 a9 18 ?.....3...|8...........f.......=B.....&......... +831 0x000040f1 control 12 -1 721094 0 -1 721094 0 ff ff ff ff c6 00 0b 00 00 00 00 00 ............ +832 0x000040fd control 12 30 730800 0 30 730800 0 1e 00 00 00 b0 26 0b 00 00 00 00 00 .....&...... +833 0x00004109 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1636761600 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 71 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......q........... +834 0x00004127 control 12 -1 721095 0 -1 721095 0 ff ff ff ff c7 00 0b 00 00 00 00 00 ............ +835 0x00004133 control 12 26 730801 0 26 730801 0 1a 00 00 00 b1 26 0b 00 00 00 00 00 .....&...... +836 0x0000413f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1636630528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 9e 1f 00 00 00 00 00 ....T.c@.^1@......s....... +837 0x00004159 control 12 -1 721096 0 -1 721096 0 ff ff ff ff c8 00 0b 00 00 00 00 00 ............ +838 0x00004165 control 12 -2 82978 82960 -2 82978 82960 fe ff ff ff 22 44 01 00 10 44 01 00 "....""D...D.." +839 0x00004171 control 12 26 730802 0 26 730802 0 1a 00 00 00 b2 26 0b 00 00 00 00 00 .....&...... +840 0x0000417d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1636499456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 9e 1f 00 00 00 00 00 ....T.c@.^1@......u....... +841 0x00004197 control 12 -1 721097 0 -1 721097 0 ff ff ff ff c9 00 0b 00 00 00 00 00 ............ +842 0x000041a3 control 12 26 730803 0 26 730803 0 1a 00 00 00 b3 26 0b 00 00 00 00 00 .....&...... +843 0x000041af data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1636368384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 9e 1f 00 00 00 00 00 ....T.c@.^1@......w....... +844 0x000041c9 control 12 -1 721098 0 -1 721098 0 ff ff ff ff ca 00 0b 00 00 00 00 00 ............ +845 0x000041d5 control 12 34 730804 0 34 730804 0 22 00 00 00 b4 26 0b 00 00 00 00 00 """....&......" +846 0x000041e1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325517312 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 13 02 00 00 00 00 00 20 c8 25 c3 9d 01 00 00 .....!...o3.......g....... .%..... +847 0x00004203 control 12 67 730805 0 67 730805 0 43 00 00 00 b5 26 0b 00 00 00 00 00 C....&...... +848 0x0000420f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 67 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 97 f0 40 f7 82 a9 18 ?.....3...|8...........g.......=B.....&......... +849 0x00004252 control 12 -1 721099 0 -1 721099 0 ff ff ff ff cb 00 0b 00 00 00 00 00 ............ +850 0x0000425e control 12 30 730806 0 30 730806 0 1e 00 00 00 b6 26 0b 00 00 00 00 00 .....&...... +851 0x0000426a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1636237312 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 79 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......y........... +852 0x00004288 control 12 -1 721100 0 -1 721100 0 ff ff ff ff cc 00 0b 00 00 00 00 00 ............ +853 0x00004294 control 12 26 730807 0 26 730807 0 1a 00 00 00 b7 26 0b 00 00 00 00 00 .....&...... +854 0x000042a0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1636106240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 9e 1f 00 00 00 00 00 ....T.c@.^1@......{....... +855 0x000042ba control 12 -1 721101 0 -1 721101 0 ff ff ff ff cd 00 0b 00 00 00 00 00 ............ +856 0x000042c6 control 12 26 730808 0 26 730808 0 1a 00 00 00 b8 26 0b 00 00 00 00 00 .....&...... +857 0x000042d2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1635975168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 9e 1f 00 00 00 00 00 ....T.c@.^1@......}....... +858 0x000042ec control 12 -1 721102 0 -1 721102 0 ff ff ff ff ce 00 0b 00 00 00 00 00 ............ +859 0x000042f8 control 12 -2 82979 82961 -2 82979 82961 fe ff ff ff 23 44 01 00 11 44 01 00 ....#D...D.. +860 0x00004304 control 12 26 730809 0 26 730809 0 1a 00 00 00 b9 26 0b 00 00 00 00 00 .....&...... +861 0x00004310 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1635844096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +862 0x0000432a control 12 -1 721103 0 -1 721103 0 ff ff ff ff cf 00 0b 00 00 00 00 00 ............ +863 0x00004336 control 12 34 730810 0 34 730810 0 22 00 00 00 ba 26 0b 00 00 00 00 00 """....&......" +864 0x00004342 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325582848 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 13 02 00 00 00 00 00 50 c9 25 c3 9d 01 00 00 .....!...o3.......h.......P.%..... +865 0x00004364 control 12 67 730811 0 67 730811 0 43 00 00 00 bb 26 0b 00 00 00 00 00 C....&...... +866 0x00004370 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 68 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 e9 13 53 f7 82 a9 18 ?.....3...|8...........h.......=B.....&......... +867 0x000043b3 control 12 -1 721104 0 -1 721104 0 ff ff ff ff d0 00 0b 00 00 00 00 00 ............ +868 0x000043bf control 12 30 730812 0 30 730812 0 1e 00 00 00 bc 26 0b 00 00 00 00 00 .....&...... +869 0x000043cb data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1635713024 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 81 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +870 0x000043e9 control 12 -1 721105 0 -1 721105 0 ff ff ff ff d1 00 0b 00 00 00 00 00 ............ +871 0x000043f5 control 12 26 730813 0 26 730813 0 1a 00 00 00 bd 26 0b 00 00 00 00 00 .....&...... +872 0x00004401 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1635581952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +873 0x0000441b control 12 -1 721106 0 -1 721106 0 ff ff ff ff d2 00 0b 00 00 00 00 00 ............ +874 0x00004427 control 12 26 730814 0 26 730814 0 1a 00 00 00 be 26 0b 00 00 00 00 00 .....&...... +875 0x00004433 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1635450880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +876 0x0000444d control 12 -1 721107 0 -1 721107 0 ff ff ff ff d3 00 0b 00 00 00 00 00 ............ +877 0x00004459 control 12 26 730815 0 26 730815 0 1a 00 00 00 bf 26 0b 00 00 00 00 00 .....&...... +878 0x00004465 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1635319808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +879 0x0000447f control 12 -1 721108 0 -1 721108 0 ff ff ff ff d4 00 0b 00 00 00 00 00 ............ +880 0x0000448b control 12 34 730816 0 34 730816 0 22 00 00 00 c0 26 0b 00 00 00 00 00 """....&......" +881 0x00004497 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325648384 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 69 13 02 00 00 00 00 00 80 ca 25 c3 9d 01 00 00 .....!...o3.......i.........%..... +882 0x000044b9 control 12 67 730817 0 67 730817 0 43 00 00 00 c1 26 0b 00 00 00 00 00 C....&...... +883 0x000044c5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 69 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 af 32 65 f7 82 a9 18 ?.....3...|8...........i.......=B.....&......... +884 0x00004508 control 12 -1 721109 0 -1 721109 0 ff ff ff ff d5 00 0b 00 00 00 00 00 ............ +885 0x00004514 control 12 30 730818 0 30 730818 0 1e 00 00 00 c2 26 0b 00 00 00 00 00 .....&...... +886 0x00004520 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1635188736 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 89 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +887 0x0000453e control 12 -1 721110 0 -1 721110 0 ff ff ff ff d6 00 0b 00 00 00 00 00 ............ +888 0x0000454a control 12 26 730819 0 26 730819 0 1a 00 00 00 c3 26 0b 00 00 00 00 00 .....&...... +889 0x00004556 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1635057664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +890 0x00004570 control 12 -1 721111 0 -1 721111 0 ff ff ff ff d7 00 0b 00 00 00 00 00 ............ +891 0x0000457c control 12 -2 82980 82962 -2 82980 82962 fe ff ff ff 24 44 01 00 12 44 01 00 ....$D...D.. +892 0x00004588 control 12 26 730820 0 26 730820 0 1a 00 00 00 c4 26 0b 00 00 00 00 00 .....&...... +893 0x00004594 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1634926592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +894 0x000045ae control 12 -1 721112 0 -1 721112 0 ff ff ff ff d8 00 0b 00 00 00 00 00 ............ +895 0x000045ba control 12 34 730821 0 34 730821 0 22 00 00 00 c5 26 0b 00 00 00 00 00 """....&......" +896 0x000045c6 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325713920 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 13 02 00 00 00 00 00 b0 cb 25 c3 9d 01 00 00 .....!...o3.......j.........%..... +897 0x000045e8 control 12 67 730822 0 67 730822 0 43 00 00 00 c6 26 0b 00 00 00 00 00 C....&...... +898 0x000045f4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 57 4e 77 f7 82 a9 18 ?.....3...|8...........j.......=B.....&......... +899 0x00004637 control 12 26 730823 0 26 730823 0 1a 00 00 00 c7 26 0b 00 00 00 00 00 .....&...... +900 0x00004643 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1634795520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +901 0x0000465d control 12 -1 721113 0 -1 721113 0 ff ff ff ff d9 00 0b 00 00 00 00 00 ............ +902 0x00004669 control 12 -1 721114 0 -1 721114 0 ff ff ff ff da 00 0b 00 00 00 00 00 ............ +903 0x00004675 control 12 30 730824 0 30 730824 0 1e 00 00 00 c8 26 0b 00 00 00 00 00 .....&...... +904 0x00004681 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1634664448 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 91 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +905 0x0000469f control 12 -1 721115 0 -1 721115 0 ff ff ff ff db 00 0b 00 00 00 00 00 ............ +906 0x000046ab control 12 26 730825 0 26 730825 0 1a 00 00 00 c9 26 0b 00 00 00 00 00 .....&...... +907 0x000046b7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1634533376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +908 0x000046d1 control 12 -1 721116 0 -1 721116 0 ff ff ff ff dc 00 0b 00 00 00 00 00 ............ +909 0x000046dd control 12 26 730826 0 26 730826 0 1a 00 00 00 ca 26 0b 00 00 00 00 00 .....&...... +910 0x000046e9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1634402304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +911 0x00004703 control 12 -1 721117 0 -1 721117 0 ff ff ff ff dd 00 0b 00 00 00 00 00 ............ +912 0x0000470f control 12 34 730827 0 34 730827 0 22 00 00 00 cb 26 0b 00 00 00 00 00 """....&......" +913 0x0000471b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325779456 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6b 13 02 00 00 00 00 00 e1 cc 25 c3 9d 01 00 00 .....!...o3.......k.........%..... +914 0x0000473d control 12 67 730828 0 67 730828 0 43 00 00 00 cc 26 0b 00 00 00 00 00 C....&...... +915 0x00004749 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 56 7c 89 f7 82 a9 18 ?.....3...|8...........k.......=B.....&......... +916 0x0000478c control 12 -1 721118 0 -1 721118 0 ff ff ff ff de 00 0b 00 00 00 00 00 ............ +917 0x00004798 control 12 30 730829 0 30 730829 0 1e 00 00 00 cd 26 0b 00 00 00 00 00 .....&...... +918 0x000047a4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1634271232 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +919 0x000047c2 control 12 -1 721119 0 -1 721119 0 ff ff ff ff df 00 0b 00 00 00 00 00 ............ +920 0x000047ce control 12 26 730830 0 26 730830 0 1a 00 00 00 ce 26 0b 00 00 00 00 00 .....&...... +921 0x000047da data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1634140160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +922 0x000047f4 control 12 -1 721120 0 -1 721120 0 ff ff ff ff e0 00 0b 00 00 00 00 00 ............ +923 0x00004800 control 12 -2 82981 82963 -2 82981 82963 fe ff ff ff 25 44 01 00 13 44 01 00 ....%D...D.. +924 0x0000480c control 12 26 730831 0 26 730831 0 1a 00 00 00 cf 26 0b 00 00 00 00 00 .....&...... +925 0x00004818 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1634009088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +926 0x00004832 control 12 -1 721121 0 -1 721121 0 ff ff ff ff e1 00 0b 00 00 00 00 00 ............ +927 0x0000483e control 12 26 730832 0 26 730832 0 1a 00 00 00 d0 26 0b 00 00 00 00 00 .....&...... +928 0x0000484a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1633878016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +929 0x00004864 control 12 -1 721122 0 -1 721122 0 ff ff ff ff e2 00 0b 00 00 00 00 00 ............ +930 0x00004870 control 12 34 730833 0 34 730833 0 22 00 00 00 d1 26 0b 00 00 00 00 00 """....&......" +931 0x0000487c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325844992 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6c 13 02 00 00 00 00 00 12 ce 25 c3 9d 01 00 00 .....!...o3.......l.........%..... +932 0x0000489e control 12 67 730834 0 67 730834 0 43 00 00 00 d2 26 0b 00 00 00 00 00 C....&...... +933 0x000048aa data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6c 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 6d a8 9b f7 82 a9 18 ?.....3...|8...........l.......=B.....&......... +934 0x000048ed control 12 -1 721123 0 -1 721123 0 ff ff ff ff e3 00 0b 00 00 00 00 00 ............ +935 0x000048f9 control 12 30 730835 0 30 730835 0 1e 00 00 00 d3 26 0b 00 00 00 00 00 .....&...... +936 0x00004905 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1633746944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +937 0x00004923 control 12 -1 721124 0 -1 721124 0 ff ff ff ff e4 00 0b 00 00 00 00 00 ............ +938 0x0000492f control 12 26 730836 0 26 730836 0 1a 00 00 00 d4 26 0b 00 00 00 00 00 .....&...... +939 0x0000493b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1633615872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +940 0x00004955 control 12 -1 721125 0 -1 721125 0 ff ff ff ff e5 00 0b 00 00 00 00 00 ............ +941 0x00004961 control 12 26 730837 0 26 730837 0 1a 00 00 00 d5 26 0b 00 00 00 00 00 .....&...... +942 0x0000496d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1633484800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +943 0x00004987 control 12 -1 721126 0 -1 721126 0 ff ff ff ff e6 00 0b 00 00 00 00 00 ............ +944 0x00004993 control 12 26 730838 0 26 730838 0 1a 00 00 00 d6 26 0b 00 00 00 00 00 .....&...... +945 0x0000499f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1633353728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +946 0x000049b9 control 12 -1 721127 0 -1 721127 0 ff ff ff ff e7 00 0b 00 00 00 00 00 ............ +947 0x000049c5 control 12 -2 82982 82964 -2 82982 82964 fe ff ff ff 26 44 01 00 14 44 01 00 ....&D...D.. +948 0x000049d1 control 12 34 730839 0 34 730839 0 22 00 00 00 d7 26 0b 00 00 00 00 00 """....&......" +949 0x000049dd data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325910528 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 13 02 00 00 00 00 00 42 cf 25 c3 9d 01 00 00 .....!...o3.......m.......B.%..... +950 0x000049ff control 12 67 730840 0 67 730840 0 43 00 00 00 d8 26 0b 00 00 00 00 00 C....&...... +951 0x00004a0b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 5d c1 ad f7 82 a9 18 ?.....3...|8...........m.......=B.....&......... +952 0x00004a4e control 12 -1 721128 0 -1 721128 0 ff ff ff ff e8 00 0b 00 00 00 00 00 ............ +953 0x00004a5a control 12 30 730841 0 30 730841 0 1e 00 00 00 d9 26 0b 00 00 00 00 00 .....&...... +954 0x00004a66 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1633222656 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +955 0x00004a84 control 12 -1 721129 0 -1 721129 0 ff ff ff ff e9 00 0b 00 00 00 00 00 ............ +956 0x00004a90 control 12 26 730842 0 26 730842 0 1a 00 00 00 da 26 0b 00 00 00 00 00 .....&...... +957 0x00004a9c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1633091584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +958 0x00004ab6 control 12 -1 721130 0 -1 721130 0 ff ff ff ff ea 00 0b 00 00 00 00 00 ............ +959 0x00004ac2 control 12 26 730843 0 26 730843 0 1a 00 00 00 db 26 0b 00 00 00 00 00 .....&...... +960 0x00004ace data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1632960512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +961 0x00004ae8 control 12 -1 721131 0 -1 721131 0 ff ff ff ff eb 00 0b 00 00 00 00 00 ............ +962 0x00004af4 control 12 26 730844 0 26 730844 0 1a 00 00 00 dc 26 0b 00 00 00 00 00 .....&...... +963 0x00004b00 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1632829440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +964 0x00004b1a control 12 -1 721132 0 -1 721132 0 ff ff ff ff ec 00 0b 00 00 00 00 00 ............ +965 0x00004b26 control 12 101 730845 0 101 730845 0 65 00 00 00 dd 26 0b 00 00 00 00 00 e....&...... +966 0x00004b32 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 325976064 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6e 13 02 00 00 00 00 00 71 d0 25 c3 9d 01 00 00 .....!...o3.......n.......q.%..... +967 0x00004b54 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6e 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 31 ee bf f7 82 a9 18 ?.....3...|8...........n.......=B.....&......... +968 0x00004b97 control 12 -1 721133 0 -1 721133 0 ff ff ff ff ed 00 0b 00 00 00 00 00 ............ +969 0x00004ba3 control 12 30 730846 0 30 730846 0 1e 00 00 00 de 26 0b 00 00 00 00 00 .....&...... +970 0x00004baf data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1632698368 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +971 0x00004bcd control 12 -1 721134 0 -1 721134 0 ff ff ff ff ee 00 0b 00 00 00 00 00 ............ +972 0x00004bd9 control 12 26 730847 0 26 730847 0 1a 00 00 00 df 26 0b 00 00 00 00 00 .....&...... +973 0x00004be5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1632567296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +974 0x00004bff control 12 -1 721135 0 -1 721135 0 ff ff ff ff ef 00 0b 00 00 00 00 00 ............ +975 0x00004c0b control 12 26 730848 0 26 730848 0 1a 00 00 00 e0 26 0b 00 00 00 00 00 .....&...... +976 0x00004c17 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1632436224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +977 0x00004c31 control 12 -1 721136 0 -1 721136 0 ff ff ff ff f0 00 0b 00 00 00 00 00 ............ +978 0x00004c3d control 12 -2 82983 82965 -2 82983 82965 fe ff ff ff 27 44 01 00 15 44 01 00 ....'D...D.. +979 0x00004c49 control 12 26 730849 0 26 730849 0 1a 00 00 00 e1 26 0b 00 00 00 00 00 .....&...... +980 0x00004c55 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1632305152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +981 0x00004c6f control 12 -1 721137 0 -1 721137 0 ff ff ff ff f1 00 0b 00 00 00 00 00 ............ +982 0x00004c7b control 12 34 730850 0 34 730850 0 22 00 00 00 e2 26 0b 00 00 00 00 00 """....&......" +983 0x00004c87 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326041600 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6f 13 02 00 00 00 00 00 a1 d1 25 c3 9d 01 00 00 .....!...o3.......o.........%..... +984 0x00004ca9 control 12 67 730851 0 67 730851 0 43 00 00 00 e3 26 0b 00 00 00 00 00 C....&...... +985 0x00004cb5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 55 0d d2 f7 82 a9 18 ?.....3...|8...........o.......=B.....&......... +986 0x00004cf8 control 12 -1 721138 0 -1 721138 0 ff ff ff ff f2 00 0b 00 00 00 00 00 ............ +987 0x00004d04 control 12 30 730852 0 30 730852 0 1e 00 00 00 e4 26 0b 00 00 00 00 00 .....&...... +988 0x00004d10 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1632174080 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +989 0x00004d2e control 12 -1 721139 0 -1 721139 0 ff ff ff ff f3 00 0b 00 00 00 00 00 ............ +990 0x00004d3a control 12 26 730853 0 26 730853 0 1a 00 00 00 e5 26 0b 00 00 00 00 00 .....&...... +991 0x00004d46 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1632043008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +992 0x00004d60 control 12 -1 721140 0 -1 721140 0 ff ff ff ff f4 00 0b 00 00 00 00 00 ............ +993 0x00004d6c control 12 26 730854 0 26 730854 0 1a 00 00 00 e6 26 0b 00 00 00 00 00 .....&...... +994 0x00004d78 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1631911936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +995 0x00004d92 control 12 -1 721141 0 -1 721141 0 ff ff ff ff f5 00 0b 00 00 00 00 00 ............ +996 0x00004d9e control 12 26 730855 0 26 730855 0 1a 00 00 00 e7 26 0b 00 00 00 00 00 .....&...... +997 0x00004daa data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1631780864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +998 0x00004dc4 control 12 -1 721142 0 -1 721142 0 ff ff ff ff f6 00 0b 00 00 00 00 00 ............ +999 0x00004dd0 control 12 101 730856 0 101 730856 0 65 00 00 00 e8 26 0b 00 00 00 00 00 e....&...... +1000 0x00004ddc data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326107136 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 70 13 02 00 00 00 00 00 d4 d2 25 c3 9d 01 00 00 .....!...o3.......p.........%..... +1001 0x00004dfe data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 70 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec 32 56 e4 f7 82 a9 18 ?.....3...|8...........p.......=B.....&......... +1002 0x00004e41 control 12 -1 721143 0 -1 721143 0 ff ff ff ff f7 00 0b 00 00 00 00 00 ............ +1003 0x00004e4d control 12 30 730857 0 30 730857 0 1e 00 00 00 e9 26 0b 00 00 00 00 00 .....&...... +1004 0x00004e59 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1631649792 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1005 0x00004e77 control 12 -1 721144 0 -1 721144 0 ff ff ff ff f8 00 0b 00 00 00 00 00 ............ +1006 0x00004e83 control 12 26 730858 0 26 730858 0 1a 00 00 00 ea 26 0b 00 00 00 00 00 .....&...... +1007 0x00004e8f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1631518720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1008 0x00004ea9 control 12 -1 721145 0 -1 721145 0 ff ff ff ff f9 00 0b 00 00 00 00 00 ............ +1009 0x00004eb5 control 12 -2 82984 82966 -2 82984 82966 fe ff ff ff 28 44 01 00 16 44 01 00 ....(D...D.. +1010 0x00004ec1 control 12 26 730859 0 26 730859 0 1a 00 00 00 eb 26 0b 00 00 00 00 00 .....&...... +1011 0x00004ecd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1631387648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1012 0x00004ee7 control 12 -1 721146 0 -1 721146 0 ff ff ff ff fa 00 0b 00 00 00 00 00 ............ +1013 0x00004ef3 control 12 26 730860 0 26 730860 0 1a 00 00 00 ec 26 0b 00 00 00 00 00 .....&...... +1014 0x00004eff data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1631256576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1015 0x00004f19 control 12 -1 721147 0 -1 721147 0 ff ff ff ff fb 00 0b 00 00 00 00 00 ............ +1016 0x00004f25 control 12 34 730861 0 34 730861 0 22 00 00 00 ed 26 0b 00 00 00 00 00 """....&......" +1017 0x00004f31 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326172672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 71 13 02 00 00 00 00 00 06 d4 25 c3 9d 01 00 00 .....!...o3.......q.........%..... +1018 0x00004f53 control 12 67 730862 0 67 730862 0 43 00 00 00 ee 26 0b 00 00 00 00 00 C....&...... +1019 0x00004f5f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 71 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 4f 7d f6 f7 82 a9 18 ?.....3...|8...........q.......=B.....&......... +1020 0x00004fa2 control 12 -1 721148 0 -1 721148 0 ff ff ff ff fc 00 0b 00 00 00 00 00 ............ +1021 0x00004fae control 12 30 730863 0 30 730863 0 1e 00 00 00 ef 26 0b 00 00 00 00 00 .....&...... +1022 0x00004fba data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1631125504 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1023 0x00004fd8 control 12 -1 721149 0 -1 721149 0 ff ff ff ff fd 00 0b 00 00 00 00 00 ............ +1024 0x00004fe4 control 12 26 730864 0 26 730864 0 1a 00 00 00 f0 26 0b 00 00 00 00 00 .....&...... +1025 0x00004ff0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1630994432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1026 0x0000500a control 12 -1 721150 0 -1 721150 0 ff ff ff ff fe 00 0b 00 00 00 00 00 ............ +1027 0x00005016 control 12 26 730865 0 26 730865 0 1a 00 00 00 f1 26 0b 00 00 00 00 00 .....&...... +1028 0x00005022 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1630863360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1029 0x0000503c control 12 -1 721151 0 -1 721151 0 ff ff ff ff ff 00 0b 00 00 00 00 00 ............ +1030 0x00005048 control 12 26 730866 0 26 730866 0 1a 00 00 00 f2 26 0b 00 00 00 00 00 .....&...... +1031 0x00005054 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1630732288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1032 0x0000506e control 12 -1 721152 0 -1 721152 0 ff ff ff ff 00 01 0b 00 00 00 00 00 ............ +1033 0x0000507a control 12 -2 82985 82967 -2 82985 82967 fe ff ff ff 29 44 01 00 17 44 01 00 ....)D...D.. +1034 0x00005086 control 12 34 730867 0 34 730867 0 22 00 00 00 f3 26 0b 00 00 00 00 00 """....&......" +1035 0x00005092 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326238208 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 72 13 02 00 00 00 00 00 38 d5 25 c3 9d 01 00 00 .....!...o3.......r.......8.%..... +1036 0x000050b4 control 12 67 730868 0 67 730868 0 43 00 00 00 f4 26 0b 00 00 00 00 00 C....&...... +1037 0x000050c0 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 72 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 3f c3 08 f8 82 a9 18 ?.....3...|8...........r.......=B.....&......... +1038 0x00005103 control 12 -1 721153 0 -1 721153 0 ff ff ff ff 01 01 0b 00 00 00 00 00 ............ +1039 0x0000510f control 12 30 730869 0 30 730869 0 1e 00 00 00 f5 26 0b 00 00 00 00 00 .....&...... +1040 0x0000511b data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1630601216 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cf 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1041 0x00005139 control 12 -1 721154 0 -1 721154 0 ff ff ff ff 02 01 0b 00 00 00 00 00 ............ +1042 0x00005145 control 12 26 730870 0 26 730870 0 1a 00 00 00 f6 26 0b 00 00 00 00 00 .....&...... +1043 0x00005151 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1630470144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1044 0x0000516b control 12 -1 721155 0 -1 721155 0 ff ff ff ff 03 01 0b 00 00 00 00 00 ............ +1045 0x00005177 control 12 26 730871 0 26 730871 0 1a 00 00 00 f7 26 0b 00 00 00 00 00 .....&...... +1046 0x00005183 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1630339072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1047 0x0000519d control 12 -1 721156 0 -1 721156 0 ff ff ff ff 04 01 0b 00 00 00 00 00 ............ +1048 0x000051a9 control 12 26 730872 0 26 730872 0 1a 00 00 00 f8 26 0b 00 00 00 00 00 .....&...... +1049 0x000051b5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1630208000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1050 0x000051cf control 12 -1 721157 0 -1 721157 0 ff ff ff ff 05 01 0b 00 00 00 00 00 ............ +1051 0x000051db control 12 34 730873 0 34 730873 0 22 00 00 00 f9 26 0b 00 00 00 00 00 """....&......" +1052 0x000051e7 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326303744 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 73 13 02 00 00 00 00 00 6a d6 25 c3 9d 01 00 00 .....!...o3.......s.......j.%..... +1053 0x00005209 control 12 67 730874 0 67 730874 0 43 00 00 00 fa 26 0b 00 00 00 00 00 C....&...... +1054 0x00005215 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 73 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 c4 f7 1a f8 82 a9 18 ?.....3...|8...........s.......=B.....&......... +1055 0x00005258 control 12 -1 721158 0 -1 721158 0 ff ff ff ff 06 01 0b 00 00 00 00 00 ............ +1056 0x00005264 control 12 30 730875 0 30 730875 0 1e 00 00 00 fb 26 0b 00 00 00 00 00 .....&...... +1057 0x00005270 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1630076928 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1058 0x0000528e control 12 -1 721159 0 -1 721159 0 ff ff ff ff 07 01 0b 00 00 00 00 00 ............ +1059 0x0000529a control 12 26 730876 0 26 730876 0 1a 00 00 00 fc 26 0b 00 00 00 00 00 .....&...... +1060 0x000052a6 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1629945856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1061 0x000052c0 control 12 -1 721160 0 -1 721160 0 ff ff ff ff 08 01 0b 00 00 00 00 00 ............ +1062 0x000052cc control 12 -2 82986 82968 -2 82986 82968 fe ff ff ff 2a 44 01 00 18 44 01 00 ....*D...D.. +1063 0x000052d8 control 12 26 730877 0 26 730877 0 1a 00 00 00 fd 26 0b 00 00 00 00 00 .....&...... +1064 0x000052e4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1629814784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1065 0x000052fe control 12 -1 721161 0 -1 721161 0 ff ff ff ff 09 01 0b 00 00 00 00 00 ............ +1066 0x0000530a control 12 26 730878 0 26 730878 0 1a 00 00 00 fe 26 0b 00 00 00 00 00 .....&...... +1067 0x00005316 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1629683712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1068 0x00005330 control 12 -1 721162 0 -1 721162 0 ff ff ff ff 0a 01 0b 00 00 00 00 00 ............ +1069 0x0000533c control 12 34 730879 0 34 730879 0 22 00 00 00 ff 26 0b 00 00 00 00 00 """....&......" +1070 0x00005348 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326369280 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 74 13 02 00 00 00 00 00 9b d7 25 c3 9d 01 00 00 .....!...o3.......t.........%..... +1071 0x0000536a control 12 67 730880 0 67 730880 0 43 00 00 00 00 27 0b 00 00 00 00 00 C....'...... +1072 0x00005376 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 74 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 f2 32 2d f8 82 a9 18 ?.....3...|8...........t.......=B.....&......... +1073 0x000053b9 control 12 -1 721163 0 -1 721163 0 ff ff ff ff 0b 01 0b 00 00 00 00 00 ............ +1074 0x000053c5 control 12 30 730881 0 30 730881 0 1e 00 00 00 01 27 0b 00 00 00 00 00 .....'...... +1075 0x000053d1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1629552640 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 df 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1076 0x000053ef control 12 -1 721164 0 -1 721164 0 ff ff ff ff 0c 01 0b 00 00 00 00 00 ............ +1077 0x000053fb control 12 26 730882 0 26 730882 0 1a 00 00 00 02 27 0b 00 00 00 00 00 .....'...... +1078 0x00005407 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1629421568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1079 0x00005421 control 12 -1 721165 0 -1 721165 0 ff ff ff ff 0d 01 0b 00 00 00 00 00 ............ +1080 0x0000542d control 12 26 730883 0 26 730883 0 1a 00 00 00 03 27 0b 00 00 00 00 00 .....'...... +1081 0x00005439 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1629290496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1082 0x00005453 control 12 -1 721166 0 -1 721166 0 ff ff ff ff 0e 01 0b 00 00 00 00 00 ............ +1083 0x0000545f control 12 26 730884 0 26 730884 0 1a 00 00 00 04 27 0b 00 00 00 00 00 .....'...... +1084 0x0000546b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1629159424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1085 0x00005485 control 12 -1 721167 0 -1 721167 0 ff ff ff ff 0f 01 0b 00 00 00 00 00 ............ +1086 0x00005491 control 12 34 730885 0 34 730885 0 22 00 00 00 05 27 0b 00 00 00 00 00 """....'......" +1087 0x0000549d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326434816 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 75 13 02 00 00 00 00 00 cc d8 25 c3 9d 01 00 00 .....!...o3.......u.........%..... +1088 0x000054bf control 12 67 730886 0 67 730886 0 43 00 00 00 06 27 0b 00 00 00 00 00 C....'...... +1089 0x000054cb data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 75 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c 02 65 3f f8 82 a9 18 ?.....3...|8...........u.......=B.....&......... +1090 0x0000550e control 12 -1 721168 0 -1 721168 0 ff ff ff ff 10 01 0b 00 00 00 00 00 ............ +1091 0x0000551a control 12 30 730887 0 30 730887 0 1e 00 00 00 07 27 0b 00 00 00 00 00 .....'...... +1092 0x00005526 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1629028352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1093 0x00005544 control 12 -1 721169 0 -1 721169 0 ff ff ff ff 11 01 0b 00 00 00 00 00 ............ +1094 0x00005550 control 12 -2 82987 82969 -2 82987 82969 fe ff ff ff 2b 44 01 00 19 44 01 00 ....+D...D.. +1095 0x0000555c control 12 26 730888 0 26 730888 0 1a 00 00 00 08 27 0b 00 00 00 00 00 .....'...... +1096 0x00005568 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1628897280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1097 0x00005582 control 12 -1 721170 0 -1 721170 0 ff ff ff ff 12 01 0b 00 00 00 00 00 ............ +1098 0x0000558e control 12 26 730889 0 26 730889 0 1a 00 00 00 09 27 0b 00 00 00 00 00 .....'...... +1099 0x0000559a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1628766208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1100 0x000055b4 control 12 -1 721171 0 -1 721171 0 ff ff ff ff 13 01 0b 00 00 00 00 00 ............ +1101 0x000055c0 control 12 26 730890 0 26 730890 0 1a 00 00 00 0a 27 0b 00 00 00 00 00 .....'...... +1102 0x000055cc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1628635136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1103 0x000055e6 control 12 -1 721172 0 -1 721172 0 ff ff ff ff 14 01 0b 00 00 00 00 00 ............ +1104 0x000055f2 control 12 34 730891 0 34 730891 0 22 00 00 00 0b 27 0b 00 00 00 00 00 """....'......" +1105 0x000055fe data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326500352 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 76 13 02 00 00 00 00 00 fd d9 25 c3 9d 01 00 00 .....!...o3.......v.........%..... +1106 0x00005620 control 12 67 730892 0 67 730892 0 43 00 00 00 0c 27 0b 00 00 00 00 00 C....'...... +1107 0x0000562c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 76 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 58 07 80 51 f8 82 a9 18 ?.....3...|8...........v.......=B.....&......... +1108 0x0000566f control 12 -1 721173 0 -1 721173 0 ff ff ff ff 15 01 0b 00 00 00 00 00 ............ +1109 0x0000567b control 12 30 730893 0 30 730893 0 1e 00 00 00 0d 27 0b 00 00 00 00 00 .....'...... +1110 0x00005687 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1628504064 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ef 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1111 0x000056a5 control 12 -1 721174 0 -1 721174 0 ff ff ff ff 16 01 0b 00 00 00 00 00 ............ +1112 0x000056b1 control 12 26 730894 0 26 730894 0 1a 00 00 00 0e 27 0b 00 00 00 00 00 .....'...... +1113 0x000056bd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1628372992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1114 0x000056d7 control 12 -1 721175 0 -1 721175 0 ff ff ff ff 17 01 0b 00 00 00 00 00 ............ +1115 0x000056e3 control 12 26 730895 0 26 730895 0 1a 00 00 00 0f 27 0b 00 00 00 00 00 .....'...... +1116 0x000056ef data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1628241920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1117 0x00005709 control 12 -1 721176 0 -1 721176 0 ff ff ff ff 18 01 0b 00 00 00 00 00 ............ +1118 0x00005715 control 12 -2 82988 82970 -2 82988 82970 fe ff ff ff 2c 44 01 00 1a 44 01 00 ....,D...D.. +1119 0x00005721 control 12 26 730896 0 26 730896 0 1a 00 00 00 10 27 0b 00 00 00 00 00 .....'...... +1120 0x0000572d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1628110848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1121 0x00005747 control 12 -1 721177 0 -1 721177 0 ff ff ff ff 19 01 0b 00 00 00 00 00 ............ +1122 0x00005753 control 12 34 730897 0 34 730897 0 22 00 00 00 11 27 0b 00 00 00 00 00 """....'......" +1123 0x0000575f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326565888 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 77 13 02 00 00 00 00 00 2e db 25 c3 9d 01 00 00 .....!...o3.......w.........%..... +1124 0x00005781 control 12 67 730898 0 67 730898 0 43 00 00 00 12 27 0b 00 00 00 00 00 C....'...... +1125 0x0000578d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 77 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 90 c3 b0 63 f8 82 a9 18 ?.....3...|8...........w.......=B.....&......... +1126 0x000057d0 control 12 -1 721178 0 -1 721178 0 ff ff ff ff 1a 01 0b 00 00 00 00 00 ............ +1127 0x000057dc control 12 30 730899 0 30 730899 0 1e 00 00 00 13 27 0b 00 00 00 00 00 .....'...... +1128 0x000057e8 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1627979776 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1129 0x00005806 control 12 -1 721179 0 -1 721179 0 ff ff ff ff 1b 01 0b 00 00 00 00 00 ............ +1130 0x00005812 control 12 26 730900 0 26 730900 0 1a 00 00 00 14 27 0b 00 00 00 00 00 .....'...... +1131 0x0000581e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1627848704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1132 0x00005838 control 12 -1 721180 0 -1 721180 0 ff ff ff ff 1c 01 0b 00 00 00 00 00 ............ +1133 0x00005844 control 12 26 730901 0 26 730901 0 1a 00 00 00 15 27 0b 00 00 00 00 00 .....'...... +1134 0x00005850 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1627717632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1135 0x0000586a control 12 -1 721181 0 -1 721181 0 ff ff ff ff 1d 01 0b 00 00 00 00 00 ............ +1136 0x00005876 control 12 26 730902 0 26 730902 0 1a 00 00 00 16 27 0b 00 00 00 00 00 .....'...... +1137 0x00005882 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1627586560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +1138 0x0000589c control 12 -1 721182 0 -1 721182 0 ff ff ff ff 1e 01 0b 00 00 00 00 00 ............ +1139 0x000058a8 control 12 101 730903 0 101 730903 0 65 00 00 00 17 27 0b 00 00 00 00 00 e....'...... +1140 0x000058b4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326631424 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 78 13 02 00 00 00 00 00 60 dc 25 c3 9d 01 00 00 .....!...o3.......x.......`.%..... +1141 0x000058d6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 78 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 18 2d ee 75 f8 82 a9 18 ?.....3...|8...........x.......=B.....&......... +1142 0x00005919 control 12 -1 721183 0 -1 721183 0 ff ff ff ff 1f 01 0b 00 00 00 00 00 ............ +1143 0x00005925 control 12 30 730904 0 30 730904 0 1e 00 00 00 18 27 0b 00 00 00 00 00 .....'...... +1144 0x00005931 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1627455488 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ff 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1145 0x0000594f control 12 -1 721184 0 -1 721184 0 ff ff ff ff 20 01 0b 00 00 00 00 00 .... ....... +1146 0x0000595b control 12 26 730905 0 26 730905 0 1a 00 00 00 19 27 0b 00 00 00 00 00 .....'...... +1147 0x00005967 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1627324416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1148 0x00005981 control 12 -1 721185 0 -1 721185 0 ff ff ff ff 21 01 0b 00 00 00 00 00 ....!....... +1149 0x0000598d control 12 -2 82989 82971 -2 82989 82971 fe ff ff ff 2d 44 01 00 1b 44 01 00 ....-D...D.. +1150 0x00005999 control 12 26 730906 0 26 730906 0 1a 00 00 00 1a 27 0b 00 00 00 00 00 .....'...... +1151 0x000059a5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1627193344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1152 0x000059bf control 12 -1 721186 0 -1 721186 0 ff ff ff ff 22 01 0b 00 00 00 00 00 "....""......." +1153 0x000059cb control 12 26 730907 0 26 730907 0 1a 00 00 00 1b 27 0b 00 00 00 00 00 .....'...... +1154 0x000059d7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1627062272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1155 0x000059f1 control 12 -1 721187 0 -1 721187 0 ff ff ff ff 23 01 0b 00 00 00 00 00 ....#....... +1156 0x000059fd control 12 101 730908 0 101 730908 0 65 00 00 00 1c 27 0b 00 00 00 00 00 e....'...... +1157 0x00005a09 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326696960 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 79 13 02 00 00 00 00 00 91 dd 25 c3 9d 01 00 00 .....!...o3.......y.........%..... +1158 0x00005a2b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 79 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 95 23 88 f8 82 a9 18 ?.....3...|8...........y.......=B.....&......... +1159 0x00005a6e control 12 -1 721188 0 -1 721188 0 ff ff ff ff 24 01 0b 00 00 00 00 00 ....$....... +1160 0x00005a7a control 12 30 730909 0 30 730909 0 1e 00 00 00 1d 27 0b 00 00 00 00 00 .....'...... +1161 0x00005a86 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1626931200 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 07 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1162 0x00005aa4 control 12 -1 721189 0 -1 721189 0 ff ff ff ff 25 01 0b 00 00 00 00 00 ....%....... +1163 0x00005ab0 control 12 26 730910 0 26 730910 0 1a 00 00 00 1e 27 0b 00 00 00 00 00 .....'...... +1164 0x00005abc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1626800128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1165 0x00005ad6 control 12 -1 721190 0 -1 721190 0 ff ff ff ff 26 01 0b 00 00 00 00 00 ....&....... +1166 0x00005ae2 control 12 26 730911 0 26 730911 0 1a 00 00 00 1f 27 0b 00 00 00 00 00 .....'...... +1167 0x00005aee data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1626669056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1168 0x00005b08 control 12 -1 721191 0 -1 721191 0 ff ff ff ff 27 01 0b 00 00 00 00 00 ....'....... +1169 0x00005b14 control 12 26 730912 0 26 730912 0 1a 00 00 00 20 27 0b 00 00 00 00 00 .... '...... +1170 0x00005b20 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1626537984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1171 0x00005b3a control 12 -1 721192 0 -1 721192 0 ff ff ff ff 28 01 0b 00 00 00 00 00 ....(....... +1172 0x00005b46 control 12 34 730913 0 34 730913 0 22 00 00 00 21 27 0b 00 00 00 00 00 """...!'......" +1173 0x00005b52 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326762496 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7a 13 02 00 00 00 00 00 c3 de 25 c3 9d 01 00 00 .....!...o3.......z.........%..... +1174 0x00005b74 control 12 67 730914 0 67 730914 0 43 00 00 00 22 27 0b 00 00 00 00 00 "C...""'......" +1175 0x00005b80 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 a5 57 9a f8 82 a9 18 ?.....3...|8...........z.......=B.....&......... +1176 0x00005bc3 control 12 -1 721193 0 -1 721193 0 ff ff ff ff 29 01 0b 00 00 00 00 00 ....)....... +1177 0x00005bcf control 12 30 730915 0 30 730915 0 1e 00 00 00 23 27 0b 00 00 00 00 00 ....#'...... +1178 0x00005bdb data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1626406912 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0f 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1179 0x00005bf9 control 12 -1 721194 0 -1 721194 0 ff ff ff ff 2a 01 0b 00 00 00 00 00 ....*....... +1180 0x00005c05 control 12 -2 82990 82972 -2 82990 82972 fe ff ff ff 2e 44 01 00 1c 44 01 00 .....D...D.. +1181 0x00005c11 control 12 26 730916 0 26 730916 0 1a 00 00 00 24 27 0b 00 00 00 00 00 ....$'...... +1182 0x00005c1d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1626275840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1183 0x00005c37 control 12 -1 721195 0 -1 721195 0 ff ff ff ff 2b 01 0b 00 00 00 00 00 ....+....... +1184 0x00005c43 control 12 26 730917 0 26 730917 0 1a 00 00 00 25 27 0b 00 00 00 00 00 ....%'...... +1185 0x00005c4f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1626144768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1186 0x00005c69 control 12 -1 721196 0 -1 721196 0 ff ff ff ff 2c 01 0b 00 00 00 00 00 ....,....... +1187 0x00005c75 control 12 26 730918 0 26 730918 0 1a 00 00 00 26 27 0b 00 00 00 00 00 ....&'...... +1188 0x00005c81 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1626013696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1189 0x00005c9b control 12 -1 721197 0 -1 721197 0 ff ff ff ff 2d 01 0b 00 00 00 00 00 ....-....... +1190 0x00005ca7 control 12 34 730919 0 34 730919 0 22 00 00 00 27 27 0b 00 00 00 00 00 """...''......" +1191 0x00005cb3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326828032 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7b 13 02 00 00 00 00 00 f5 df 25 c3 9d 01 00 00 .....!...o3.......{.........%..... +1192 0x00005cd5 control 12 67 730920 0 67 730920 0 43 00 00 00 28 27 0b 00 00 00 00 00 C...('...... +1193 0x00005ce1 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec ab 91 ac f8 82 a9 18 ?.....3...|8...........{.......=B.....&......... +1194 0x00005d24 control 12 -1 721198 0 -1 721198 0 ff ff ff ff 2e 01 0b 00 00 00 00 00 ............ +1195 0x00005d30 control 12 30 730921 0 30 730921 0 1e 00 00 00 29 27 0b 00 00 00 00 00 ....)'...... +1196 0x00005d3c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1625882624 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 17 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1197 0x00005d5a control 12 -1 721199 0 -1 721199 0 ff ff ff ff 2f 01 0b 00 00 00 00 00 ..../....... +1198 0x00005d66 control 12 26 730922 0 26 730922 0 1a 00 00 00 2a 27 0b 00 00 00 00 00 ....*'...... +1199 0x00005d72 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1625751552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1200 0x00005d8c control 12 -1 721200 0 -1 721200 0 ff ff ff ff 30 01 0b 00 00 00 00 00 ....0....... +1201 0x00005d98 control 12 26 730923 0 26 730923 0 1a 00 00 00 2b 27 0b 00 00 00 00 00 ....+'...... +1202 0x00005da4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1625620480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1203 0x00005dbe control 12 -1 721201 0 -1 721201 0 ff ff ff ff 31 01 0b 00 00 00 00 00 ....1....... +1204 0x00005dca control 12 -2 82991 82973 -2 82991 82973 fe ff ff ff 2f 44 01 00 1d 44 01 00 ..../D...D.. +1205 0x00005dd6 control 12 26 730924 0 26 730924 0 1a 00 00 00 2c 27 0b 00 00 00 00 00 ....,'...... +1206 0x00005de2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1625489408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +1207 0x00005dfc control 12 -1 721202 0 -1 721202 0 ff ff ff ff 32 01 0b 00 00 00 00 00 ....2....... +1208 0x00005e08 control 12 101 730925 0 101 730925 0 65 00 00 00 2d 27 0b 00 00 00 00 00 e...-'...... +1209 0x00005e14 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326893568 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7c 13 02 00 00 00 00 00 24 e1 25 c3 9d 01 00 00 .....!...o3.......|.......$.%..... +1210 0x00005e36 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7c 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 bf b2 be f8 82 a9 18 ?.....3...|8...........|.......=B.....&......... +1211 0x00005e79 control 12 -1 721203 0 -1 721203 0 ff ff ff ff 33 01 0b 00 00 00 00 00 ....3....... +1212 0x00005e85 control 12 30 730926 0 30 730926 0 1e 00 00 00 2e 27 0b 00 00 00 00 00 .....'...... +1213 0x00005e91 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1625358336 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1f 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +1214 0x00005eaf control 12 -1 721204 0 -1 721204 0 ff ff ff ff 34 01 0b 00 00 00 00 00 ....4....... +1215 0x00005ebb control 12 26 730927 0 26 730927 0 1a 00 00 00 2f 27 0b 00 00 00 00 00 ..../'...... +1216 0x00005ec7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1625227264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 9f 1f 00 00 00 00 00 ....T.c@.^1@......!....... +1217 0x00005ee1 control 12 -1 721205 0 -1 721205 0 ff ff ff ff 35 01 0b 00 00 00 00 00 ....5....... +1218 0x00005eed control 12 26 730928 0 26 730928 0 1a 00 00 00 30 27 0b 00 00 00 00 00 ....0'...... +1219 0x00005ef9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1625096192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 9f 1f 00 00 00 00 00 ....T.c@.^1@......#....... +1220 0x00005f13 control 12 -1 721206 0 -1 721206 0 ff ff ff ff 36 01 0b 00 00 00 00 00 ....6....... +1221 0x00005f1f control 12 26 730929 0 26 730929 0 1a 00 00 00 31 27 0b 00 00 00 00 00 ....1'...... +1222 0x00005f2b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1624965120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 9f 1f 00 00 00 00 00 ....T.c@.^1@......%....... +1223 0x00005f45 control 12 -1 721207 0 -1 721207 0 ff ff ff ff 37 01 0b 00 00 00 00 00 ....7....... +1224 0x00005f51 control 12 34 730930 0 34 730930 0 22 00 00 00 32 27 0b 00 00 00 00 00 """...2'......" +1225 0x00005f5d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 326959104 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7d 13 02 00 00 00 00 00 55 e2 25 c3 9d 01 00 00 .....!...o3.......}.......U.%..... +1226 0x00005f7f control 12 67 730931 0 67 730931 0 43 00 00 00 33 27 0b 00 00 00 00 00 C...3'...... +1227 0x00005f8b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 1f e2 d0 f8 82 a9 18 ?.....3...|8...........}.......=B.....&......... +1228 0x00005fce control 12 -1 721208 0 -1 721208 0 ff ff ff ff 38 01 0b 00 00 00 00 00 ....8....... +1229 0x00005fda control 12 30 730932 0 30 730932 0 1e 00 00 00 34 27 0b 00 00 00 00 00 ....4'...... +1230 0x00005fe6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -1624834048 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 27 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......'........... +1231 0x00006004 control 12 -1 721209 0 -1 721209 0 ff ff ff ff 39 01 0b 00 00 00 00 00 ....9....... +1232 0x00006010 control 12 -2 82992 82974 -2 82992 82974 fe ff ff ff 30 44 01 00 1e 44 01 00 ....0D...D.. +1233 0x0000601c control 12 26 730933 0 26 730933 0 1a 00 00 00 35 27 0b 00 00 00 00 00 ....5'...... +1234 0x00006028 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -1624702976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 9f 1f 00 00 00 00 00 ....T.c@.^1@......)....... +1235 0x00006042 control 12 -1 721210 0 -1 721210 0 ff ff ff ff 3a 01 0b 00 00 00 00 00 ....:....... diff --git a/captures/020-loopback-write-test-int-102/mixed-stream-57433-to-57415.tsv b/captures/020-loopback-write-test-int-102/mixed-stream-57433-to-57415.tsv new file mode 100644 index 0000000..e386c80 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/mixed-stream-57433-to-57415.tsv @@ -0,0 +1,1165 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 -1 730528 0 -1 730528 0 ff ff ff ff a0 25 0b 00 00 00 00 00 .....%...... +1 0x0000000c control 12 22 720854 0 22 720854 0 16 00 00 00 d6 ff 0a 00 00 00 00 00 ............ +2 0x00000018 data 22 18 2071793 0 2071793 0 196609 0 12 00 00 00 f1 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3 0x0000002e control 12 -1 730529 0 -1 730529 0 ff ff ff ff a1 25 0b 00 00 00 00 00 .....%...... +4 0x0000003a control 12 22 720855 0 22 720855 0 16 00 00 00 d7 ff 0a 00 00 00 00 00 ............ +5 0x00000046 data 22 18 2071795 0 2071795 0 196609 0 12 00 00 00 f3 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6 0x0000005c control 12 -2 82931 82948 -2 82931 82948 fe ff ff ff f3 43 01 00 04 44 01 00 .....C...D.. +7 0x00000068 control 12 -1 730530 0 -1 730530 0 ff ff ff ff a2 25 0b 00 00 00 00 00 .....%...... +8 0x00000074 control 12 -1 730531 0 -1 730531 0 ff ff ff ff a3 25 0b 00 00 00 00 00 .....%...... +9 0x00000080 control 12 52 720856 0 52 720856 0 34 00 00 00 d8 ff 0a 00 00 00 00 00 4........... +10 0x0000008c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 36 13 02 00 00 00 00 00 00 00 19 70 85 de 4d 01 00 00 "0...Dk.................L."".([.....6..........p.." +11 0x000000c0 control 12 -1 730532 0 -1 730532 0 ff ff ff ff a4 25 0b 00 00 00 00 00 .....%...... +12 0x000000cc control 12 26 720857 0 26 720857 0 1a 00 00 00 d9 ff 0a 00 00 00 00 00 ............ +13 0x000000d8 data 26 22 2071797 0 2071797 0 196609 0 16 00 00 00 f5 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +14 0x000000f2 control 12 -1 730533 0 -1 730533 0 ff ff ff ff a5 25 0b 00 00 00 00 00 .....%...... +15 0x000000fe control 12 22 720858 0 22 720858 0 16 00 00 00 da ff 0a 00 00 00 00 00 ............ +16 0x0000010a data 22 18 2071799 0 2071799 0 196609 0 12 00 00 00 f7 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +17 0x00000120 control 12 -1 730534 0 -1 730534 0 ff ff ff ff a6 25 0b 00 00 00 00 00 .....%...... +18 0x0000012c control 12 22 720859 0 22 720859 0 16 00 00 00 db ff 0a 00 00 00 00 00 ............ +19 0x00000138 data 22 18 2071801 0 2071801 0 196609 0 12 00 00 00 f9 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +20 0x0000014e control 12 -1 730535 0 -1 730535 0 ff ff ff ff a7 25 0b 00 00 00 00 00 .....%...... +21 0x0000015a control 12 22 720860 0 22 720860 0 16 00 00 00 dc ff 0a 00 00 00 00 00 ............ +22 0x00000166 data 22 18 2071803 0 2071803 0 196609 0 12 00 00 00 fb 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +23 0x0000017c control 12 -1 730536 0 -1 730536 0 ff ff ff ff a8 25 0b 00 00 00 00 00 .....%...... +24 0x00000188 control 12 -1 730537 0 -1 730537 0 ff ff ff ff a9 25 0b 00 00 00 00 00 .....%...... +25 0x00000194 control 12 52 720861 0 52 720861 0 34 00 00 00 dd ff 0a 00 00 00 00 00 4........... +26 0x000001a0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 37 13 02 00 00 00 00 00 00 00 04 1e b4 de 4d 01 00 00 "0...Dk.................L."".([.....7............." +27 0x000001d4 control 12 -1 730538 0 -1 730538 0 ff ff ff ff aa 25 0b 00 00 00 00 00 .....%...... +28 0x000001e0 control 12 26 720862 0 26 720862 0 1a 00 00 00 de ff 0a 00 00 00 00 00 ............ +29 0x000001ec data 26 22 2071805 0 2071805 0 196609 0 16 00 00 00 fd 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +30 0x00000206 control 12 -1 730539 0 -1 730539 0 ff ff ff ff ab 25 0b 00 00 00 00 00 .....%...... +31 0x00000212 control 12 22 720863 0 22 720863 0 16 00 00 00 df ff 0a 00 00 00 00 00 ............ +32 0x0000021e data 22 18 2071807 0 2071807 0 196609 0 12 00 00 00 ff 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +33 0x00000234 control 12 -1 730540 0 -1 730540 0 ff ff ff ff ac 25 0b 00 00 00 00 00 .....%...... +34 0x00000240 control 12 22 720864 0 22 720864 0 16 00 00 00 e0 ff 0a 00 00 00 00 00 ............ +35 0x0000024c data 22 18 2071809 0 2071809 0 196609 0 12 00 00 00 01 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +36 0x00000262 control 12 -2 82932 82949 -2 82932 82949 fe ff ff ff f4 43 01 00 05 44 01 00 .....C...D.. +37 0x0000026e control 12 -1 730541 0 -1 730541 0 ff ff ff ff ad 25 0b 00 00 00 00 00 .....%...... +38 0x0000027a control 12 22 720865 0 22 720865 0 16 00 00 00 e1 ff 0a 00 00 00 00 00 ............ +39 0x00000286 data 22 18 2071811 0 2071811 0 196609 0 12 00 00 00 03 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +40 0x0000029c control 12 -1 730542 0 -1 730542 0 ff ff ff ff ae 25 0b 00 00 00 00 00 .....%...... +41 0x000002a8 control 12 -1 730543 0 -1 730543 0 ff ff ff ff af 25 0b 00 00 00 00 00 .....%...... +42 0x000002b4 control 12 52 720866 0 52 720866 0 34 00 00 00 e2 ff 0a 00 00 00 00 00 4........... +43 0x000002c0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 38 13 02 00 00 00 00 00 00 00 5b 99 e2 de 4d 01 00 00 "0...Dk.................L."".([.....8.........[..." +44 0x000002f4 control 12 -1 730544 0 -1 730544 0 ff ff ff ff b0 25 0b 00 00 00 00 00 .....%...... +45 0x00000300 control 12 26 720867 0 26 720867 0 1a 00 00 00 e3 ff 0a 00 00 00 00 00 ............ +46 0x0000030c data 26 22 2071813 0 2071813 0 196609 0 16 00 00 00 05 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +47 0x00000326 control 12 -1 730545 0 -1 730545 0 ff ff ff ff b1 25 0b 00 00 00 00 00 .....%...... +48 0x00000332 control 12 22 720868 0 22 720868 0 16 00 00 00 e4 ff 0a 00 00 00 00 00 ............ +49 0x0000033e data 22 18 2071815 0 2071815 0 196609 0 12 00 00 00 07 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +50 0x00000354 control 12 -1 730546 0 -1 730546 0 ff ff ff ff b2 25 0b 00 00 00 00 00 .....%...... +51 0x00000360 control 12 22 720869 0 22 720869 0 16 00 00 00 e5 ff 0a 00 00 00 00 00 ............ +52 0x0000036c data 22 18 2071817 0 2071817 0 196609 0 12 00 00 00 09 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +53 0x00000382 control 12 -1 730547 0 -1 730547 0 ff ff ff ff b3 25 0b 00 00 00 00 00 .....%...... +54 0x0000038e control 12 22 720870 0 22 720870 0 16 00 00 00 e6 ff 0a 00 00 00 00 00 ............ +55 0x0000039a data 22 18 2071819 0 2071819 0 196609 0 12 00 00 00 0b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +56 0x000003b0 control 12 -1 730548 0 -1 730548 0 ff ff ff ff b4 25 0b 00 00 00 00 00 .....%...... +57 0x000003bc control 12 52 720871 0 52 720871 0 34 00 00 00 e7 ff 0a 00 00 00 00 00 4........... +58 0x000003c8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 39 13 02 00 00 00 00 00 00 00 17 30 11 df 4d 01 00 00 "0...Dk.................L."".([.....9..........0.." +59 0x000003fc control 12 -1 730549 0 -1 730549 0 ff ff ff ff b5 25 0b 00 00 00 00 00 .....%...... +60 0x00000408 control 12 26 720872 0 26 720872 0 1a 00 00 00 e8 ff 0a 00 00 00 00 00 ............ +61 0x00000414 data 26 22 2071821 0 2071821 0 196609 0 16 00 00 00 0d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +62 0x0000042e control 12 -1 730550 0 -1 730550 0 ff ff ff ff b6 25 0b 00 00 00 00 00 .....%...... +63 0x0000043a control 12 22 720873 0 22 720873 0 16 00 00 00 e9 ff 0a 00 00 00 00 00 ............ +64 0x00000446 data 22 18 2071823 0 2071823 0 196609 0 12 00 00 00 0f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +65 0x0000045c control 12 -2 82933 82950 -2 82933 82950 fe ff ff ff f5 43 01 00 06 44 01 00 .....C...D.. +66 0x00000468 control 12 -1 730551 0 -1 730551 0 ff ff ff ff b7 25 0b 00 00 00 00 00 .....%...... +67 0x00000474 control 12 22 720874 0 22 720874 0 16 00 00 00 ea ff 0a 00 00 00 00 00 ............ +68 0x00000480 data 22 18 2071825 0 2071825 0 196609 0 12 00 00 00 11 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +69 0x00000496 control 12 -1 730552 0 -1 730552 0 ff ff ff ff b8 25 0b 00 00 00 00 00 .....%...... +70 0x000004a2 control 12 22 720875 0 22 720875 0 16 00 00 00 eb ff 0a 00 00 00 00 00 ............ +71 0x000004ae data 22 18 2071827 0 2071827 0 196609 0 12 00 00 00 13 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +72 0x000004c4 control 12 -1 730553 0 -1 730553 0 ff ff ff ff b9 25 0b 00 00 00 00 00 .....%...... +73 0x000004d0 control 12 52 720876 0 52 720876 0 34 00 00 00 ec ff 0a 00 00 00 00 00 4........... +74 0x000004dc data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3a 13 02 00 00 00 00 00 00 00 bf b7 3f df 4d 01 00 00 "0...Dk.................L."".([.....:...........?." +75 0x00000510 control 12 -1 730554 0 -1 730554 0 ff ff ff ff ba 25 0b 00 00 00 00 00 .....%...... +76 0x0000051c control 12 26 720877 0 26 720877 0 1a 00 00 00 ed ff 0a 00 00 00 00 00 ............ +77 0x00000528 data 26 22 2071829 0 2071829 0 196609 0 16 00 00 00 15 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +78 0x00000542 control 12 -1 730555 0 -1 730555 0 ff ff ff ff bb 25 0b 00 00 00 00 00 .....%...... +79 0x0000054e control 12 22 720878 0 22 720878 0 16 00 00 00 ee ff 0a 00 00 00 00 00 ............ +80 0x0000055a data 22 18 2071831 0 2071831 0 196609 0 12 00 00 00 17 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +81 0x00000570 control 12 -1 730556 0 -1 730556 0 ff ff ff ff bc 25 0b 00 00 00 00 00 .....%...... +82 0x0000057c control 12 22 720879 0 22 720879 0 16 00 00 00 ef ff 0a 00 00 00 00 00 ............ +83 0x00000588 data 22 18 2071833 0 2071833 0 196609 0 12 00 00 00 19 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +84 0x0000059e control 12 -2 82934 82951 -2 82934 82951 fe ff ff ff f6 43 01 00 07 44 01 00 .....C...D.. +85 0x000005aa control 12 -1 730557 0 -1 730557 0 ff ff ff ff bd 25 0b 00 00 00 00 00 .....%...... +86 0x000005b6 control 12 22 720880 0 22 720880 0 16 00 00 00 f0 ff 0a 00 00 00 00 00 ............ +87 0x000005c2 data 22 18 2071835 0 2071835 0 196609 0 12 00 00 00 1b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +88 0x000005d8 control 12 -1 730558 0 -1 730558 0 ff ff ff ff be 25 0b 00 00 00 00 00 .....%...... +89 0x000005e4 control 12 -1 730559 0 -1 730559 0 ff ff ff ff bf 25 0b 00 00 00 00 00 .....%...... +90 0x000005f0 control 12 52 720881 0 52 720881 0 34 00 00 00 f1 ff 0a 00 00 00 00 00 4........... +91 0x000005fc data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3b 13 02 00 00 00 00 00 00 00 26 8e 6e df 4d 01 00 00 "0...Dk.................L."".([.....;.........&.n." +92 0x00000630 control 12 -1 730560 0 -1 730560 0 ff ff ff ff c0 25 0b 00 00 00 00 00 .....%...... +93 0x0000063c control 12 26 720882 0 26 720882 0 1a 00 00 00 f2 ff 0a 00 00 00 00 00 ............ +94 0x00000648 data 26 22 2071837 0 2071837 0 196609 0 16 00 00 00 1d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +95 0x00000662 control 12 -1 730561 0 -1 730561 0 ff ff ff ff c1 25 0b 00 00 00 00 00 .....%...... +96 0x0000066e control 12 22 720883 0 22 720883 0 16 00 00 00 f3 ff 0a 00 00 00 00 00 ............ +97 0x0000067a data 22 18 2071839 0 2071839 0 196609 0 12 00 00 00 1f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +98 0x00000690 control 12 -1 730562 0 -1 730562 0 ff ff ff ff c2 25 0b 00 00 00 00 00 .....%...... +99 0x0000069c control 12 22 720884 0 22 720884 0 16 00 00 00 f4 ff 0a 00 00 00 00 00 ............ +100 0x000006a8 data 22 18 2071841 0 2071841 0 196609 0 12 00 00 00 21 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +101 0x000006be control 12 -1 730563 0 -1 730563 0 ff ff ff ff c3 25 0b 00 00 00 00 00 .....%...... +102 0x000006ca control 12 22 720885 0 22 720885 0 16 00 00 00 f5 ff 0a 00 00 00 00 00 ............ +103 0x000006d6 data 22 18 2071843 0 2071843 0 196609 0 12 00 00 00 23 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +104 0x000006ec control 12 -1 730564 0 -1 730564 0 ff ff ff ff c4 25 0b 00 00 00 00 00 .....%...... +105 0x000006f8 control 12 52 720886 0 52 720886 0 34 00 00 00 f6 ff 0a 00 00 00 00 00 4........... +106 0x00000704 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3c 13 02 00 00 00 00 00 00 00 ae 45 9d df 4d 01 00 00 "0...Dk.................L."".([.....<..........E.." +107 0x00000738 control 12 -1 730565 0 -1 730565 0 ff ff ff ff c5 25 0b 00 00 00 00 00 .....%...... +108 0x00000744 control 12 26 720887 0 26 720887 0 1a 00 00 00 f7 ff 0a 00 00 00 00 00 ............ +109 0x00000750 data 26 22 2071845 0 2071845 0 196609 0 16 00 00 00 25 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +110 0x0000076a control 12 -1 730566 0 -1 730566 0 ff ff ff ff c6 25 0b 00 00 00 00 00 .....%...... +111 0x00000776 control 12 22 720888 0 22 720888 0 16 00 00 00 f8 ff 0a 00 00 00 00 00 ............ +112 0x00000782 data 22 18 2071847 0 2071847 0 196609 0 12 00 00 00 27 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +113 0x00000798 control 12 -2 82935 82952 -2 82935 82952 fe ff ff ff f7 43 01 00 08 44 01 00 .....C...D.. +114 0x000007a4 control 12 -1 730567 0 -1 730567 0 ff ff ff ff c7 25 0b 00 00 00 00 00 .....%...... +115 0x000007b0 control 12 22 720889 0 22 720889 0 16 00 00 00 f9 ff 0a 00 00 00 00 00 ............ +116 0x000007bc data 22 18 2071849 0 2071849 0 196609 0 12 00 00 00 29 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +117 0x000007d2 control 12 -1 730568 0 -1 730568 0 ff ff ff ff c8 25 0b 00 00 00 00 00 .....%...... +118 0x000007de control 12 22 720890 0 22 720890 0 16 00 00 00 fa ff 0a 00 00 00 00 00 ............ +119 0x000007ea data 22 18 2071851 0 2071851 0 196609 0 12 00 00 00 2b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +120 0x00000800 control 12 -1 730569 0 -1 730569 0 ff ff ff ff c9 25 0b 00 00 00 00 00 .....%...... +121 0x0000080c control 12 -1 730570 0 -1 730570 0 ff ff ff ff ca 25 0b 00 00 00 00 00 .....%...... +122 0x00000818 control 12 52 720891 0 52 720891 0 34 00 00 00 fb ff 0a 00 00 00 00 00 4........... +123 0x00000824 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3d 13 02 00 00 00 00 00 00 00 8a df cb df 4d 01 00 00 "0...Dk.................L."".([.....=............." +124 0x00000858 control 12 -1 730571 0 -1 730571 0 ff ff ff ff cb 25 0b 00 00 00 00 00 .....%...... +125 0x00000864 control 12 26 720892 0 26 720892 0 1a 00 00 00 fc ff 0a 00 00 00 00 00 ............ +126 0x00000870 data 26 22 2071853 0 2071853 0 196609 0 16 00 00 00 2d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +127 0x0000088a control 12 -1 730572 0 -1 730572 0 ff ff ff ff cc 25 0b 00 00 00 00 00 .....%...... +128 0x00000896 control 12 22 720893 0 22 720893 0 16 00 00 00 fd ff 0a 00 00 00 00 00 ............ +129 0x000008a2 data 22 18 2071855 0 2071855 0 196609 0 12 00 00 00 2f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +130 0x000008b8 control 12 -1 730573 0 -1 730573 0 ff ff ff ff cd 25 0b 00 00 00 00 00 .....%...... +131 0x000008c4 control 12 22 720894 0 22 720894 0 16 00 00 00 fe ff 0a 00 00 00 00 00 ............ +132 0x000008d0 data 22 18 2071857 0 2071857 0 196609 0 12 00 00 00 31 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +133 0x000008e6 control 12 -1 730574 0 -1 730574 0 ff ff ff ff ce 25 0b 00 00 00 00 00 .....%...... +134 0x000008f2 control 12 22 720895 0 22 720895 0 16 00 00 00 ff ff 0a 00 00 00 00 00 ............ +135 0x000008fe data 22 18 2071859 0 2071859 0 196609 0 12 00 00 00 33 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +136 0x00000914 control 12 -1 730575 0 -1 730575 0 ff ff ff ff cf 25 0b 00 00 00 00 00 .....%...... +137 0x00000920 control 12 52 720896 0 52 720896 0 34 00 00 00 00 00 0b 00 00 00 00 00 4........... +138 0x0000092c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3e 13 02 00 00 00 00 00 00 00 7a 53 fa df 4d 01 00 00 "0...Dk.................L."".([.....>.........zS.." +139 0x00000960 control 12 -1 730576 0 -1 730576 0 ff ff ff ff d0 25 0b 00 00 00 00 00 .....%...... +140 0x0000096c control 12 26 720897 0 26 720897 0 1a 00 00 00 01 00 0b 00 00 00 00 00 ............ +141 0x00000978 data 26 22 2071861 0 2071861 0 196609 0 16 00 00 00 35 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +142 0x00000992 control 12 -2 82936 82953 -2 82936 82953 fe ff ff ff f8 43 01 00 09 44 01 00 .....C...D.. +143 0x0000099e control 12 -1 730577 0 -1 730577 0 ff ff ff ff d1 25 0b 00 00 00 00 00 .....%...... +144 0x000009aa control 12 22 720898 0 22 720898 0 16 00 00 00 02 00 0b 00 00 00 00 00 ............ +145 0x000009b6 data 22 18 2071863 0 2071863 0 196609 0 12 00 00 00 37 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +146 0x000009cc control 12 -1 730578 0 -1 730578 0 ff ff ff ff d2 25 0b 00 00 00 00 00 .....%...... +147 0x000009d8 control 12 22 720899 0 22 720899 0 16 00 00 00 03 00 0b 00 00 00 00 00 ............ +148 0x000009e4 data 22 18 2071865 0 2071865 0 196609 0 12 00 00 00 39 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +149 0x000009fa control 12 -1 730579 0 -1 730579 0 ff ff ff ff d3 25 0b 00 00 00 00 00 .....%...... +150 0x00000a06 control 12 22 720900 0 22 720900 0 16 00 00 00 04 00 0b 00 00 00 00 00 ............ +151 0x00000a12 data 22 18 2071867 0 2071867 0 196609 0 12 00 00 00 3b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +152 0x00000a28 control 12 -1 730580 0 -1 730580 0 ff ff ff ff d4 25 0b 00 00 00 00 00 .....%...... +153 0x00000a34 control 12 -1 730581 0 -1 730581 0 ff ff ff ff d5 25 0b 00 00 00 00 00 .....%...... +154 0x00000a40 control 12 52 720901 0 52 720901 0 34 00 00 00 05 00 0b 00 00 00 00 00 4........... +155 0x00000a4c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3f 13 02 00 00 00 00 00 00 00 d8 e6 28 e0 4d 01 00 00 "0...Dk.................L."".([.....?...........(." +156 0x00000a80 control 12 -1 730582 0 -1 730582 0 ff ff ff ff d6 25 0b 00 00 00 00 00 .....%...... +157 0x00000a8c control 12 26 720902 0 26 720902 0 1a 00 00 00 06 00 0b 00 00 00 00 00 ............ +158 0x00000a98 data 26 22 2071869 0 2071869 0 196609 0 16 00 00 00 3d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +159 0x00000ab2 control 12 -1 730583 0 -1 730583 0 ff ff ff ff d7 25 0b 00 00 00 00 00 .....%...... +160 0x00000abe control 12 22 720903 0 22 720903 0 16 00 00 00 07 00 0b 00 00 00 00 00 ............ +161 0x00000aca data 22 18 2071871 0 2071871 0 196609 0 12 00 00 00 3f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +162 0x00000ae0 control 12 -1 730584 0 -1 730584 0 ff ff ff ff d8 25 0b 00 00 00 00 00 .....%...... +163 0x00000aec control 12 22 720904 0 22 720904 0 16 00 00 00 08 00 0b 00 00 00 00 00 ............ +164 0x00000af8 data 22 18 2071873 0 2071873 0 196609 0 12 00 00 00 41 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +165 0x00000b0e control 12 -2 82937 82954 -2 82937 82954 fe ff ff ff f9 43 01 00 0a 44 01 00 .....C...D.. +166 0x00000b1a control 12 -1 730585 0 -1 730585 0 ff ff ff ff d9 25 0b 00 00 00 00 00 .....%...... +167 0x00000b26 control 12 22 720905 0 22 720905 0 16 00 00 00 09 00 0b 00 00 00 00 00 ............ +168 0x00000b32 data 22 18 2071875 0 2071875 0 196609 0 12 00 00 00 43 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +169 0x00000b48 control 12 -1 730586 0 -1 730586 0 ff ff ff ff da 25 0b 00 00 00 00 00 .....%...... +170 0x00000b54 control 12 -1 730587 0 -1 730587 0 ff ff ff ff db 25 0b 00 00 00 00 00 .....%...... +171 0x00000b60 control 12 52 720906 0 52 720906 0 34 00 00 00 0a 00 0b 00 00 00 00 00 4........... +172 0x00000b6c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 40 13 02 00 00 00 00 00 00 00 13 8d 57 e0 4d 01 00 00 "0...Dk.................L."".([.....@...........W." +173 0x00000ba0 control 12 -1 730588 0 -1 730588 0 ff ff ff ff dc 25 0b 00 00 00 00 00 .....%...... +174 0x00000bac control 12 26 720907 0 26 720907 0 1a 00 00 00 0b 00 0b 00 00 00 00 00 ............ +175 0x00000bb8 data 26 22 2071877 0 2071877 0 196609 0 16 00 00 00 45 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E..................... +176 0x00000bd2 control 12 -1 730589 0 -1 730589 0 ff ff ff ff dd 25 0b 00 00 00 00 00 .....%...... +177 0x00000bde control 12 22 720908 0 22 720908 0 16 00 00 00 0c 00 0b 00 00 00 00 00 ............ +178 0x00000bea data 22 18 2071879 0 2071879 0 196609 0 12 00 00 00 47 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +179 0x00000c00 control 12 -1 730590 0 -1 730590 0 ff ff ff ff de 25 0b 00 00 00 00 00 .....%...... +180 0x00000c0c control 12 22 720909 0 22 720909 0 16 00 00 00 0d 00 0b 00 00 00 00 00 ............ +181 0x00000c18 data 22 18 2071881 0 2071881 0 196609 0 12 00 00 00 49 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +182 0x00000c2e control 12 -1 730591 0 -1 730591 0 ff ff ff ff df 25 0b 00 00 00 00 00 .....%...... +183 0x00000c3a control 12 22 720910 0 22 720910 0 16 00 00 00 0e 00 0b 00 00 00 00 00 ............ +184 0x00000c46 data 22 18 2071883 0 2071883 0 196609 0 12 00 00 00 4b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +185 0x00000c5c control 12 -1 730592 0 -1 730592 0 ff ff ff ff e0 25 0b 00 00 00 00 00 .....%...... +186 0x00000c68 control 12 52 720911 0 52 720911 0 34 00 00 00 0f 00 0b 00 00 00 00 00 4........... +187 0x00000c74 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 41 13 02 00 00 00 00 00 00 00 e5 ee 85 e0 4d 01 00 00 "0...Dk.................L."".([.....A............." +188 0x00000ca8 control 12 -1 730593 0 -1 730593 0 ff ff ff ff e1 25 0b 00 00 00 00 00 .....%...... +189 0x00000cb4 control 12 26 720912 0 26 720912 0 1a 00 00 00 10 00 0b 00 00 00 00 00 ............ +190 0x00000cc0 data 26 22 2071885 0 2071885 0 196609 0 16 00 00 00 4d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M..................... +191 0x00000cda control 12 -1 730594 0 -1 730594 0 ff ff ff ff e2 25 0b 00 00 00 00 00 .....%...... +192 0x00000ce6 control 12 22 720913 0 22 720913 0 16 00 00 00 11 00 0b 00 00 00 00 00 ............ +193 0x00000cf2 data 22 18 2071887 0 2071887 0 196609 0 12 00 00 00 4f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +194 0x00000d08 control 12 -2 82938 82955 -2 82938 82955 fe ff ff ff fa 43 01 00 0b 44 01 00 .....C...D.. +195 0x00000d14 control 12 -1 730595 0 -1 730595 0 ff ff ff ff e3 25 0b 00 00 00 00 00 .....%...... +196 0x00000d20 control 12 22 720914 0 22 720914 0 16 00 00 00 12 00 0b 00 00 00 00 00 ............ +197 0x00000d2c data 22 18 2071889 0 2071889 0 196609 0 12 00 00 00 51 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +198 0x00000d42 control 12 -1 730596 0 -1 730596 0 ff ff ff ff e4 25 0b 00 00 00 00 00 .....%...... +199 0x00000d4e control 12 22 720915 0 22 720915 0 16 00 00 00 13 00 0b 00 00 00 00 00 ............ +200 0x00000d5a data 22 18 2071891 0 2071891 0 196609 0 12 00 00 00 53 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +201 0x00000d70 control 12 -1 730597 0 -1 730597 0 ff ff ff ff e5 25 0b 00 00 00 00 00 .....%...... +202 0x00000d7c control 12 52 720916 0 52 720916 0 34 00 00 00 14 00 0b 00 00 00 00 00 4........... +203 0x00000d88 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 42 13 02 00 00 00 00 00 00 00 33 67 b4 e0 4d 01 00 00 "0...Dk.................L."".([.....B.........3g.." +204 0x00000dbc control 12 -1 730598 0 -1 730598 0 ff ff ff ff e6 25 0b 00 00 00 00 00 .....%...... +205 0x00000dc8 control 12 26 720917 0 26 720917 0 1a 00 00 00 15 00 0b 00 00 00 00 00 ............ +206 0x00000dd4 data 26 22 2071893 0 2071893 0 196609 0 16 00 00 00 55 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U..................... +207 0x00000dee control 12 -1 730599 0 -1 730599 0 ff ff ff ff e7 25 0b 00 00 00 00 00 .....%...... +208 0x00000dfa control 12 22 720918 0 22 720918 0 16 00 00 00 16 00 0b 00 00 00 00 00 ............ +209 0x00000e06 data 22 18 2071895 0 2071895 0 196609 0 12 00 00 00 57 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +210 0x00000e1c control 12 -1 730600 0 -1 730600 0 ff ff ff ff e8 25 0b 00 00 00 00 00 .....%...... +211 0x00000e28 control 12 22 720919 0 22 720919 0 16 00 00 00 17 00 0b 00 00 00 00 00 ............ +212 0x00000e34 data 22 18 2071897 0 2071897 0 196609 0 12 00 00 00 59 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +213 0x00000e4a control 12 -1 730601 0 -1 730601 0 ff ff ff ff e9 25 0b 00 00 00 00 00 .....%...... +214 0x00000e56 control 12 22 720920 0 22 720920 0 16 00 00 00 18 00 0b 00 00 00 00 00 ............ +215 0x00000e62 data 22 18 2071899 0 2071899 0 196609 0 12 00 00 00 5b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +216 0x00000e78 control 12 -2 82939 82956 -2 82939 82956 fe ff ff ff fb 43 01 00 0c 44 01 00 .....C...D.. +217 0x00000e84 control 12 -1 730602 0 -1 730602 0 ff ff ff ff ea 25 0b 00 00 00 00 00 .....%...... +218 0x00000e90 control 12 52 720921 0 52 720921 0 34 00 00 00 19 00 0b 00 00 00 00 00 4........... +219 0x00000e9c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 43 13 02 00 00 00 00 00 00 00 f9 cf e2 e0 4d 01 00 00 "0...Dk.................L."".([.....C............." +220 0x00000ed0 control 12 -1 730603 0 -1 730603 0 ff ff ff ff eb 25 0b 00 00 00 00 00 .....%...... +221 0x00000edc control 12 26 720922 0 26 720922 0 1a 00 00 00 1a 00 0b 00 00 00 00 00 ............ +222 0x00000ee8 data 26 22 2071901 0 2071901 0 196609 0 16 00 00 00 5d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +223 0x00000f02 control 12 -1 730604 0 -1 730604 0 ff ff ff ff ec 25 0b 00 00 00 00 00 .....%...... +224 0x00000f0e control 12 22 720923 0 22 720923 0 16 00 00 00 1b 00 0b 00 00 00 00 00 ............ +225 0x00000f1a data 22 18 2071903 0 2071903 0 196609 0 12 00 00 00 5f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +226 0x00000f30 control 12 -1 730605 0 -1 730605 0 ff ff ff ff ed 25 0b 00 00 00 00 00 .....%...... +227 0x00000f3c control 12 22 720924 0 22 720924 0 16 00 00 00 1c 00 0b 00 00 00 00 00 ............ +228 0x00000f48 data 22 18 2071905 0 2071905 0 196609 0 12 00 00 00 61 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +229 0x00000f5e control 12 -1 730606 0 -1 730606 0 ff ff ff ff ee 25 0b 00 00 00 00 00 .....%...... +230 0x00000f6a control 12 22 720925 0 22 720925 0 16 00 00 00 1d 00 0b 00 00 00 00 00 ............ +231 0x00000f76 data 22 18 2071907 0 2071907 0 196609 0 12 00 00 00 63 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +232 0x00000f8c control 12 -1 730607 0 -1 730607 0 ff ff ff ff ef 25 0b 00 00 00 00 00 .....%...... +233 0x00000f98 control 12 -1 730608 0 -1 730608 0 ff ff ff ff f0 25 0b 00 00 00 00 00 .....%...... +234 0x00000fa4 control 12 52 720926 0 52 720926 0 34 00 00 00 1e 00 0b 00 00 00 00 00 4........... +235 0x00000fb0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 44 13 02 00 00 00 00 00 00 00 f3 45 11 e1 4d 01 00 00 "0...Dk.................L."".([.....D..........E.." +236 0x00000fe4 control 12 -1 730609 0 -1 730609 0 ff ff ff ff f1 25 0b 00 00 00 00 00 .....%...... +237 0x00000ff0 control 12 26 720927 0 26 720927 0 1a 00 00 00 1f 00 0b 00 00 00 00 00 ............ +238 0x00000ffc data 26 22 2071909 0 2071909 0 196609 0 16 00 00 00 65 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +239 0x00001016 control 12 -1 730610 0 -1 730610 0 ff ff ff ff f2 25 0b 00 00 00 00 00 .....%...... +240 0x00001022 control 12 22 720928 0 22 720928 0 16 00 00 00 20 00 0b 00 00 00 00 00 .... ....... +241 0x0000102e data 22 18 2071911 0 2071911 0 196609 0 12 00 00 00 67 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +242 0x00001044 control 12 -2 82940 82957 -2 82940 82957 fe ff ff ff fc 43 01 00 0d 44 01 00 .....C...D.. +243 0x00001050 control 12 -1 730611 0 -1 730611 0 ff ff ff ff f3 25 0b 00 00 00 00 00 .....%...... +244 0x0000105c control 12 22 720929 0 22 720929 0 16 00 00 00 21 00 0b 00 00 00 00 00 ....!....... +245 0x00001068 data 22 18 2071913 0 2071913 0 196609 0 12 00 00 00 69 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +246 0x0000107e control 12 -1 730612 0 -1 730612 0 ff ff ff ff f4 25 0b 00 00 00 00 00 .....%...... +247 0x0000108a control 12 22 720930 0 22 720930 0 16 00 00 00 22 00 0b 00 00 00 00 00 "....""......." +248 0x00001096 data 22 18 2071915 0 2071915 0 196609 0 12 00 00 00 6b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +249 0x000010ac control 12 -1 730613 0 -1 730613 0 ff ff ff ff f5 25 0b 00 00 00 00 00 .....%...... +250 0x000010b8 control 12 -1 730614 0 -1 730614 0 ff ff ff ff f6 25 0b 00 00 00 00 00 .....%...... +251 0x000010c4 control 12 52 720931 0 52 720931 0 34 00 00 00 23 00 0b 00 00 00 00 00 4...#....... +252 0x000010d0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 45 13 02 00 00 00 00 00 00 00 e2 db 3f e1 4d 01 00 00 "0...Dk.................L."".([.....E...........?." +253 0x00001104 control 12 -1 730615 0 -1 730615 0 ff ff ff ff f7 25 0b 00 00 00 00 00 .....%...... +254 0x00001110 control 12 26 720932 0 26 720932 0 1a 00 00 00 24 00 0b 00 00 00 00 00 ....$....... +255 0x0000111c data 26 22 2071917 0 2071917 0 196609 0 16 00 00 00 6d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....m..................... +256 0x00001136 control 12 -1 730616 0 -1 730616 0 ff ff ff ff f8 25 0b 00 00 00 00 00 .....%...... +257 0x00001142 control 12 22 720933 0 22 720933 0 16 00 00 00 25 00 0b 00 00 00 00 00 ....%....... +258 0x0000114e data 22 18 2071919 0 2071919 0 196609 0 12 00 00 00 6f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +259 0x00001164 control 12 -1 730617 0 -1 730617 0 ff ff ff ff f9 25 0b 00 00 00 00 00 .....%...... +260 0x00001170 control 12 22 720934 0 22 720934 0 16 00 00 00 26 00 0b 00 00 00 00 00 ....&....... +261 0x0000117c data 22 18 2071921 0 2071921 0 196609 0 12 00 00 00 71 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +262 0x00001192 control 12 -1 730618 0 -1 730618 0 ff ff ff ff fa 25 0b 00 00 00 00 00 .....%...... +263 0x0000119e control 12 22 720935 0 22 720935 0 16 00 00 00 27 00 0b 00 00 00 00 00 ....'....... +264 0x000011aa data 22 18 2071923 0 2071923 0 196609 0 12 00 00 00 73 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +265 0x000011c0 control 12 -1 730619 0 -1 730619 0 ff ff ff ff fb 25 0b 00 00 00 00 00 .....%...... +266 0x000011cc control 12 -1 730620 0 -1 730620 0 ff ff ff ff fc 25 0b 00 00 00 00 00 .....%...... +267 0x000011d8 control 12 52 720936 0 52 720936 0 34 00 00 00 28 00 0b 00 00 00 00 00 4...(....... +268 0x000011e4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 46 13 02 00 00 00 00 00 00 00 79 55 6e e1 4d 01 00 00 "0...Dk.................L."".([.....F.........yUn." +269 0x00001218 control 12 -1 730621 0 -1 730621 0 ff ff ff ff fd 25 0b 00 00 00 00 00 .....%...... +270 0x00001224 control 12 26 720937 0 26 720937 0 1a 00 00 00 29 00 0b 00 00 00 00 00 ....)....... +271 0x00001230 data 26 22 2071925 0 2071925 0 196609 0 16 00 00 00 75 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....u..................... +272 0x0000124a control 12 -2 82941 82958 -2 82941 82958 fe ff ff ff fd 43 01 00 0e 44 01 00 .....C...D.. +273 0x00001256 control 12 -1 730622 0 -1 730622 0 ff ff ff ff fe 25 0b 00 00 00 00 00 .....%...... +274 0x00001262 control 12 22 720938 0 22 720938 0 16 00 00 00 2a 00 0b 00 00 00 00 00 ....*....... +275 0x0000126e data 22 18 2071927 0 2071927 0 196609 0 12 00 00 00 77 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +276 0x00001284 control 12 -1 730623 0 -1 730623 0 ff ff ff ff ff 25 0b 00 00 00 00 00 .....%...... +277 0x00001290 control 12 22 720939 0 22 720939 0 16 00 00 00 2b 00 0b 00 00 00 00 00 ....+....... +278 0x0000129c data 22 18 2071929 0 2071929 0 196609 0 12 00 00 00 79 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +279 0x000012b2 control 12 -1 730624 0 -1 730624 0 ff ff ff ff 00 26 0b 00 00 00 00 00 .....&...... +280 0x000012be control 12 -1 730625 0 -1 730625 0 ff ff ff ff 01 26 0b 00 00 00 00 00 .....&...... +281 0x000012ca control 12 52 720940 0 52 720940 0 34 00 00 00 2c 00 0b 00 00 00 00 00 4...,....... +282 0x000012d6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 47 13 02 00 00 00 00 00 00 00 ef e1 9c e1 4d 01 00 00 "0...Dk.................L."".([.....G............." +283 0x0000130a control 12 -1 730626 0 -1 730626 0 ff ff ff ff 02 26 0b 00 00 00 00 00 .....&...... +284 0x00001316 control 12 -1 730627 0 -1 730627 0 ff ff ff ff 03 26 0b 00 00 00 00 00 .....&...... +285 0x00001322 control 12 22 720941 0 22 720941 0 16 00 00 00 2d 00 0b 00 00 00 00 00 ....-....... +286 0x0000132e data 22 18 2071931 0 2071931 0 196609 0 12 00 00 00 7b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +287 0x00001344 control 12 26 720942 0 26 720942 0 1a 00 00 00 2e 00 0b 00 00 00 00 00 ............ +288 0x00001350 data 26 22 2071933 0 2071933 0 196609 0 16 00 00 00 7d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....}..................... +289 0x0000136a control 12 -1 730628 0 -1 730628 0 ff ff ff ff 04 26 0b 00 00 00 00 00 .....&...... +290 0x00001376 control 12 22 720943 0 22 720943 0 16 00 00 00 2f 00 0b 00 00 00 00 00 ..../....... +291 0x00001382 data 22 18 2071935 0 2071935 0 196609 0 12 00 00 00 7f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +292 0x00001398 control 12 -1 730629 0 -1 730629 0 ff ff ff ff 05 26 0b 00 00 00 00 00 .....&...... +293 0x000013a4 control 12 22 720944 0 22 720944 0 16 00 00 00 30 00 0b 00 00 00 00 00 ....0....... +294 0x000013b0 data 22 18 2071937 0 2071937 0 196609 0 12 00 00 00 81 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +295 0x000013c6 control 12 -2 82942 82959 -2 82942 82959 fe ff ff ff fe 43 01 00 0f 44 01 00 .....C...D.. +296 0x000013d2 control 12 -1 730630 0 -1 730630 0 ff ff ff ff 06 26 0b 00 00 00 00 00 .....&...... +297 0x000013de control 12 -1 730631 0 -1 730631 0 ff ff ff ff 07 26 0b 00 00 00 00 00 .....&...... +298 0x000013ea control 12 52 720945 0 52 720945 0 34 00 00 00 31 00 0b 00 00 00 00 00 4...1....... +299 0x000013f6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 48 13 02 00 00 00 00 00 00 00 9b 65 cb e1 4d 01 00 00 "0...Dk.................L."".([.....H..........e.." +300 0x0000142a control 12 -1 730632 0 -1 730632 0 ff ff ff ff 08 26 0b 00 00 00 00 00 .....&...... +301 0x00001436 control 12 26 720946 0 26 720946 0 1a 00 00 00 32 00 0b 00 00 00 00 00 ....2....... +302 0x00001442 data 26 22 2071939 0 2071939 0 196609 0 16 00 00 00 83 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +303 0x0000145c control 12 -1 730633 0 -1 730633 0 ff ff ff ff 09 26 0b 00 00 00 00 00 .....&...... +304 0x00001468 control 12 22 720947 0 22 720947 0 16 00 00 00 33 00 0b 00 00 00 00 00 ....3....... +305 0x00001474 data 22 18 2071941 0 2071941 0 196609 0 12 00 00 00 85 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +306 0x0000148a control 12 -1 730634 0 -1 730634 0 ff ff ff ff 0a 26 0b 00 00 00 00 00 .....&...... +307 0x00001496 control 12 22 720948 0 22 720948 0 16 00 00 00 34 00 0b 00 00 00 00 00 ....4....... +308 0x000014a2 data 22 18 2071943 0 2071943 0 196609 0 12 00 00 00 87 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +309 0x000014b8 control 12 -1 730635 0 -1 730635 0 ff ff ff ff 0b 26 0b 00 00 00 00 00 .....&...... +310 0x000014c4 control 12 22 720949 0 22 720949 0 16 00 00 00 35 00 0b 00 00 00 00 00 ....5....... +311 0x000014d0 data 22 18 2071945 0 2071945 0 196609 0 12 00 00 00 89 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +312 0x000014e6 control 12 -1 730636 0 -1 730636 0 ff ff ff ff 0c 26 0b 00 00 00 00 00 .....&...... +313 0x000014f2 control 12 -1 730637 0 -1 730637 0 ff ff ff ff 0d 26 0b 00 00 00 00 00 .....&...... +314 0x000014fe control 12 52 720950 0 52 720950 0 34 00 00 00 36 00 0b 00 00 00 00 00 4...6....... +315 0x0000150a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 49 13 02 00 00 00 00 00 00 00 88 e8 f9 e1 4d 01 00 00 "0...Dk.................L."".([.....I............." +316 0x0000153e control 12 -1 730638 0 -1 730638 0 ff ff ff ff 0e 26 0b 00 00 00 00 00 .....&...... +317 0x0000154a control 12 26 720951 0 26 720951 0 1a 00 00 00 37 00 0b 00 00 00 00 00 ....7....... +318 0x00001556 data 26 22 2071947 0 2071947 0 196609 0 16 00 00 00 8b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +319 0x00001570 control 12 -1 730639 0 -1 730639 0 ff ff ff ff 0f 26 0b 00 00 00 00 00 .....&...... +320 0x0000157c control 12 22 720952 0 22 720952 0 16 00 00 00 38 00 0b 00 00 00 00 00 ....8....... +321 0x00001588 data 22 18 2071949 0 2071949 0 196609 0 12 00 00 00 8d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +322 0x0000159e control 12 -1 730640 0 -1 730640 0 ff ff ff ff 10 26 0b 00 00 00 00 00 .....&...... +323 0x000015aa control 12 22 720953 0 22 720953 0 16 00 00 00 39 00 0b 00 00 00 00 00 ....9....... +324 0x000015b6 data 22 18 2071951 0 2071951 0 196609 0 12 00 00 00 8f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +325 0x000015cc control 12 -2 82943 82960 -2 82943 82960 fe ff ff ff ff 43 01 00 10 44 01 00 .....C...D.. +326 0x000015d8 control 12 -1 730641 0 -1 730641 0 ff ff ff ff 11 26 0b 00 00 00 00 00 .....&...... +327 0x000015e4 control 12 22 720954 0 22 720954 0 16 00 00 00 3a 00 0b 00 00 00 00 00 ....:....... +328 0x000015f0 data 22 18 2071953 0 2071953 0 196609 0 12 00 00 00 91 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +329 0x00001606 control 12 -1 730642 0 -1 730642 0 ff ff ff ff 12 26 0b 00 00 00 00 00 .....&...... +330 0x00001612 control 12 -1 730643 0 -1 730643 0 ff ff ff ff 13 26 0b 00 00 00 00 00 .....&...... +331 0x0000161e control 12 52 720955 0 52 720955 0 34 00 00 00 3b 00 0b 00 00 00 00 00 4...;....... +332 0x0000162a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4a 13 02 00 00 00 00 00 00 00 5f 6c 28 e2 4d 01 00 00 "0...Dk.................L."".([.....J........._l(." +333 0x0000165e control 12 -1 730644 0 -1 730644 0 ff ff ff ff 14 26 0b 00 00 00 00 00 .....&...... +334 0x0000166a control 12 26 720956 0 26 720956 0 1a 00 00 00 3c 00 0b 00 00 00 00 00 ....<....... +335 0x00001676 data 26 22 2071955 0 2071955 0 196609 0 16 00 00 00 93 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +336 0x00001690 control 12 -1 730645 0 -1 730645 0 ff ff ff ff 15 26 0b 00 00 00 00 00 .....&...... +337 0x0000169c control 12 22 720957 0 22 720957 0 16 00 00 00 3d 00 0b 00 00 00 00 00 ....=....... +338 0x000016a8 data 22 18 2071957 0 2071957 0 196609 0 12 00 00 00 95 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +339 0x000016be control 12 -1 730646 0 -1 730646 0 ff ff ff ff 16 26 0b 00 00 00 00 00 .....&...... +340 0x000016ca control 12 22 720958 0 22 720958 0 16 00 00 00 3e 00 0b 00 00 00 00 00 ....>....... +341 0x000016d6 data 22 18 2071959 0 2071959 0 196609 0 12 00 00 00 97 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +342 0x000016ec control 12 -1 730647 0 -1 730647 0 ff ff ff ff 17 26 0b 00 00 00 00 00 .....&...... +343 0x000016f8 control 12 22 720959 0 22 720959 0 16 00 00 00 3f 00 0b 00 00 00 00 00 ....?....... +344 0x00001704 data 22 18 2071961 0 2071961 0 196609 0 12 00 00 00 99 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +345 0x0000171a control 12 -1 730648 0 -1 730648 0 ff ff ff ff 18 26 0b 00 00 00 00 00 .....&...... +346 0x00001726 control 12 52 720960 0 52 720960 0 34 00 00 00 40 00 0b 00 00 00 00 00 4...@....... +347 0x00001732 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4b 13 02 00 00 00 00 00 00 00 f5 dc 56 e2 4d 01 00 00 "0...Dk.................L."".([.....K...........V." +348 0x00001766 control 12 -1 730649 0 -1 730649 0 ff ff ff ff 19 26 0b 00 00 00 00 00 .....&...... +349 0x00001772 control 12 26 720961 0 26 720961 0 1a 00 00 00 41 00 0b 00 00 00 00 00 ....A....... +350 0x0000177e data 26 22 2071963 0 2071963 0 196609 0 16 00 00 00 9b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +351 0x00001798 control 12 -1 730650 0 -1 730650 0 ff ff ff ff 1a 26 0b 00 00 00 00 00 .....&...... +352 0x000017a4 control 12 22 720962 0 22 720962 0 16 00 00 00 42 00 0b 00 00 00 00 00 ....B....... +353 0x000017b0 data 22 18 2071965 0 2071965 0 196609 0 12 00 00 00 9d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +354 0x000017c6 control 12 -2 82944 82961 -2 82944 82961 fe ff ff ff 00 44 01 00 11 44 01 00 .....D...D.. +355 0x000017d2 control 12 -1 730651 0 -1 730651 0 ff ff ff ff 1b 26 0b 00 00 00 00 00 .....&...... +356 0x000017de control 12 22 720963 0 22 720963 0 16 00 00 00 43 00 0b 00 00 00 00 00 ....C....... +357 0x000017ea data 22 18 2071967 0 2071967 0 196609 0 12 00 00 00 9f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +358 0x00001800 control 12 -1 730652 0 -1 730652 0 ff ff ff ff 1c 26 0b 00 00 00 00 00 .....&...... +359 0x0000180c control 12 22 720964 0 22 720964 0 16 00 00 00 44 00 0b 00 00 00 00 00 ....D....... +360 0x00001818 data 22 18 2071969 0 2071969 0 196609 0 12 00 00 00 a1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +361 0x0000182e control 12 -1 730653 0 -1 730653 0 ff ff ff ff 1d 26 0b 00 00 00 00 00 .....&...... +362 0x0000183a control 12 52 720965 0 52 720965 0 34 00 00 00 45 00 0b 00 00 00 00 00 4...E....... +363 0x00001846 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4c 13 02 00 00 00 00 00 00 00 5c 4f 85 e2 4d 01 00 00 "0...Dk.................L."".([.....L.........\O.." +364 0x0000187a control 12 -1 730654 0 -1 730654 0 ff ff ff ff 1e 26 0b 00 00 00 00 00 .....&...... +365 0x00001886 control 12 26 720966 0 26 720966 0 1a 00 00 00 46 00 0b 00 00 00 00 00 ....F....... +366 0x00001892 data 26 22 2071971 0 2071971 0 196609 0 16 00 00 00 a3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +367 0x000018ac control 12 -1 730655 0 -1 730655 0 ff ff ff ff 1f 26 0b 00 00 00 00 00 .....&...... +368 0x000018b8 control 12 22 720967 0 22 720967 0 16 00 00 00 47 00 0b 00 00 00 00 00 ....G....... +369 0x000018c4 data 22 18 2071973 0 2071973 0 196609 0 12 00 00 00 a5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +370 0x000018da control 12 -1 730656 0 -1 730656 0 ff ff ff ff 20 26 0b 00 00 00 00 00 .... &...... +371 0x000018e6 control 12 22 720968 0 22 720968 0 16 00 00 00 48 00 0b 00 00 00 00 00 ....H....... +372 0x000018f2 data 22 18 2071975 0 2071975 0 196609 0 12 00 00 00 a7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +373 0x00001908 control 12 -1 730657 0 -1 730657 0 ff ff ff ff 21 26 0b 00 00 00 00 00 ....!&...... +374 0x00001914 control 12 22 720969 0 22 720969 0 16 00 00 00 49 00 0b 00 00 00 00 00 ....I....... +375 0x00001920 data 22 18 2071977 0 2071977 0 196609 0 12 00 00 00 a9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +376 0x00001936 control 12 -2 82945 82962 -2 82945 82962 fe ff ff ff 01 44 01 00 12 44 01 00 .....D...D.. +377 0x00001942 control 12 -1 730658 0 -1 730658 0 ff ff ff ff 22 26 0b 00 00 00 00 00 "....""&......" +378 0x0000194e control 12 -1 730659 0 -1 730659 0 ff ff ff ff 23 26 0b 00 00 00 00 00 ....#&...... +379 0x0000195a control 12 52 720970 0 52 720970 0 34 00 00 00 4a 00 0b 00 00 00 00 00 4...J....... +380 0x00001966 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4d 13 02 00 00 00 00 00 00 00 02 0a b4 e2 4d 01 00 00 "0...Dk.................L."".([.....M............." +381 0x0000199a control 12 -1 730660 0 -1 730660 0 ff ff ff ff 24 26 0b 00 00 00 00 00 ....$&...... +382 0x000019a6 control 12 26 720971 0 26 720971 0 1a 00 00 00 4b 00 0b 00 00 00 00 00 ....K....... +383 0x000019b2 data 26 22 2071979 0 2071979 0 196609 0 16 00 00 00 ab 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +384 0x000019cc control 12 -1 730661 0 -1 730661 0 ff ff ff ff 25 26 0b 00 00 00 00 00 ....%&...... +385 0x000019d8 control 12 22 720972 0 22 720972 0 16 00 00 00 4c 00 0b 00 00 00 00 00 ....L....... +386 0x000019e4 data 22 18 2071981 0 2071981 0 196609 0 12 00 00 00 ad 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +387 0x000019fa control 12 -1 730662 0 -1 730662 0 ff ff ff ff 26 26 0b 00 00 00 00 00 ....&&...... +388 0x00001a06 control 12 22 720973 0 22 720973 0 16 00 00 00 4d 00 0b 00 00 00 00 00 ....M....... +389 0x00001a12 data 22 18 2071983 0 2071983 0 196609 0 12 00 00 00 af 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +390 0x00001a28 control 12 -1 730663 0 -1 730663 0 ff ff ff ff 27 26 0b 00 00 00 00 00 ....'&...... +391 0x00001a34 control 12 22 720974 0 22 720974 0 16 00 00 00 4e 00 0b 00 00 00 00 00 ....N....... +392 0x00001a40 data 22 18 2071985 0 2071985 0 196609 0 12 00 00 00 b1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +393 0x00001a56 control 12 -1 730664 0 -1 730664 0 ff ff ff ff 28 26 0b 00 00 00 00 00 ....(&...... +394 0x00001a62 control 12 -1 730665 0 -1 730665 0 ff ff ff ff 29 26 0b 00 00 00 00 00 ....)&...... +395 0x00001a6e control 12 52 720975 0 52 720975 0 34 00 00 00 4f 00 0b 00 00 00 00 00 4...O....... +396 0x00001a7a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4e 13 02 00 00 00 00 00 00 00 7b 92 e2 e2 4d 01 00 00 "0...Dk.................L."".([.....N.........{..." +397 0x00001aae control 12 -1 730666 0 -1 730666 0 ff ff ff ff 2a 26 0b 00 00 00 00 00 ....*&...... +398 0x00001aba control 12 26 720976 0 26 720976 0 1a 00 00 00 50 00 0b 00 00 00 00 00 ....P....... +399 0x00001ac6 data 26 22 2071987 0 2071987 0 196609 0 16 00 00 00 b3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +400 0x00001ae0 control 12 -1 730667 0 -1 730667 0 ff ff ff ff 2b 26 0b 00 00 00 00 00 ....+&...... +401 0x00001aec control 12 22 720977 0 22 720977 0 16 00 00 00 51 00 0b 00 00 00 00 00 ....Q....... +402 0x00001af8 data 22 18 2071989 0 2071989 0 196609 0 12 00 00 00 b5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +403 0x00001b0e control 12 -2 82946 82963 -2 82946 82963 fe ff ff ff 02 44 01 00 13 44 01 00 .....D...D.. +404 0x00001b1a control 12 -1 730668 0 -1 730668 0 ff ff ff ff 2c 26 0b 00 00 00 00 00 ....,&...... +405 0x00001b26 control 12 22 720978 0 22 720978 0 16 00 00 00 52 00 0b 00 00 00 00 00 ....R....... +406 0x00001b32 data 22 18 2071991 0 2071991 0 196609 0 12 00 00 00 b7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +407 0x00001b48 control 12 -1 730669 0 -1 730669 0 ff ff ff ff 2d 26 0b 00 00 00 00 00 ....-&...... +408 0x00001b54 control 12 22 720979 0 22 720979 0 16 00 00 00 53 00 0b 00 00 00 00 00 ....S....... +409 0x00001b60 data 22 18 2071993 0 2071993 0 196609 0 12 00 00 00 b9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +410 0x00001b76 control 12 -1 730670 0 -1 730670 0 ff ff ff ff 2e 26 0b 00 00 00 00 00 .....&...... +411 0x00001b82 control 12 -1 730671 0 -1 730671 0 ff ff ff ff 2f 26 0b 00 00 00 00 00 ..../&...... +412 0x00001b8e control 12 52 720980 0 52 720980 0 34 00 00 00 54 00 0b 00 00 00 00 00 4...T....... +413 0x00001b9a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4f 13 02 00 00 00 00 00 00 00 d3 15 11 e3 4d 01 00 00 "0...Dk.................L."".([.....O............." +414 0x00001bce control 12 -1 730672 0 -1 730672 0 ff ff ff ff 30 26 0b 00 00 00 00 00 ....0&...... +415 0x00001bda control 12 26 720981 0 26 720981 0 1a 00 00 00 55 00 0b 00 00 00 00 00 ....U....... +416 0x00001be6 data 26 22 2071995 0 2071995 0 196609 0 16 00 00 00 bb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +417 0x00001c00 control 12 -1 730673 0 -1 730673 0 ff ff ff ff 31 26 0b 00 00 00 00 00 ....1&...... +418 0x00001c0c control 12 22 720982 0 22 720982 0 16 00 00 00 56 00 0b 00 00 00 00 00 ....V....... +419 0x00001c18 data 22 18 2071997 0 2071997 0 196609 0 12 00 00 00 bd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +420 0x00001c2e control 12 -1 730674 0 -1 730674 0 ff ff ff ff 32 26 0b 00 00 00 00 00 ....2&...... +421 0x00001c3a control 12 22 720983 0 22 720983 0 16 00 00 00 57 00 0b 00 00 00 00 00 ....W....... +422 0x00001c46 data 22 18 2071999 0 2071999 0 196609 0 12 00 00 00 bf 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +423 0x00001c5c control 12 -1 730675 0 -1 730675 0 ff ff ff ff 33 26 0b 00 00 00 00 00 ....3&...... +424 0x00001c68 control 12 22 720984 0 22 720984 0 16 00 00 00 58 00 0b 00 00 00 00 00 ....X....... +425 0x00001c74 data 22 18 2072001 0 2072001 0 196609 0 12 00 00 00 c1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +426 0x00001c8a control 12 -1 730676 0 -1 730676 0 ff ff ff ff 34 26 0b 00 00 00 00 00 ....4&...... +427 0x00001c96 control 12 -1 730677 0 -1 730677 0 ff ff ff ff 35 26 0b 00 00 00 00 00 ....5&...... +428 0x00001ca2 control 12 52 720985 0 52 720985 0 34 00 00 00 59 00 0b 00 00 00 00 00 4...Y....... +429 0x00001cae data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 50 13 02 00 00 00 00 00 00 00 05 aa 3f e3 4d 01 00 00 "0...Dk.................L."".([.....P...........?." +430 0x00001ce2 control 12 -1 730678 0 -1 730678 0 ff ff ff ff 36 26 0b 00 00 00 00 00 ....6&...... +431 0x00001cee control 12 26 720986 0 26 720986 0 1a 00 00 00 5a 00 0b 00 00 00 00 00 ....Z....... +432 0x00001cfa data 26 22 2072003 0 2072003 0 196609 0 16 00 00 00 c3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +433 0x00001d14 control 12 -2 82947 82964 -2 82947 82964 fe ff ff ff 03 44 01 00 14 44 01 00 .....D...D.. +434 0x00001d20 control 12 -1 730679 0 -1 730679 0 ff ff ff ff 37 26 0b 00 00 00 00 00 ....7&...... +435 0x00001d2c control 12 22 720987 0 22 720987 0 16 00 00 00 5b 00 0b 00 00 00 00 00 ....[....... +436 0x00001d38 data 22 18 2072005 0 2072005 0 196609 0 12 00 00 00 c5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +437 0x00001d4e control 12 -1 730680 0 -1 730680 0 ff ff ff ff 38 26 0b 00 00 00 00 00 ....8&...... +438 0x00001d5a control 12 22 720988 0 22 720988 0 16 00 00 00 5c 00 0b 00 00 00 00 00 ....\....... +439 0x00001d66 data 22 18 2072007 0 2072007 0 196609 0 12 00 00 00 c7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +440 0x00001d7c control 12 -1 730681 0 -1 730681 0 ff ff ff ff 39 26 0b 00 00 00 00 00 ....9&...... +441 0x00001d88 control 12 22 720989 0 22 720989 0 16 00 00 00 5d 00 0b 00 00 00 00 00 ....]....... +442 0x00001d94 data 22 18 2072009 0 2072009 0 196609 0 12 00 00 00 c9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +443 0x00001daa control 12 -1 730682 0 -1 730682 0 ff ff ff ff 3a 26 0b 00 00 00 00 00 ....:&...... +444 0x00001db6 control 12 -1 730683 0 -1 730683 0 ff ff ff ff 3b 26 0b 00 00 00 00 00 ....;&...... +445 0x00001dc2 control 12 52 720990 0 52 720990 0 34 00 00 00 5e 00 0b 00 00 00 00 00 4...^....... +446 0x00001dce data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 51 13 02 00 00 00 00 00 00 00 69 21 6e e3 4d 01 00 00 "0...Dk.................L."".([.....Q.........i!n." +447 0x00001e02 control 12 -1 730684 0 -1 730684 0 ff ff ff ff 3c 26 0b 00 00 00 00 00 ....<&...... +448 0x00001e0e control 12 26 720991 0 26 720991 0 1a 00 00 00 5f 00 0b 00 00 00 00 00 ...._....... +449 0x00001e1a data 26 22 2072011 0 2072011 0 196609 0 16 00 00 00 cb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +450 0x00001e34 control 12 -1 730685 0 -1 730685 0 ff ff ff ff 3d 26 0b 00 00 00 00 00 ....=&...... +451 0x00001e40 control 12 22 720992 0 22 720992 0 16 00 00 00 60 00 0b 00 00 00 00 00 ....`....... +452 0x00001e4c data 22 18 2072013 0 2072013 0 196609 0 12 00 00 00 cd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +453 0x00001e62 control 12 -1 730686 0 -1 730686 0 ff ff ff ff 3e 26 0b 00 00 00 00 00 ....>&...... +454 0x00001e6e control 12 22 720993 0 22 720993 0 16 00 00 00 61 00 0b 00 00 00 00 00 ....a....... +455 0x00001e7a data 22 18 2072015 0 2072015 0 196609 0 12 00 00 00 cf 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +456 0x00001e90 control 12 -2 82948 82965 -2 82948 82965 fe ff ff ff 04 44 01 00 15 44 01 00 .....D...D.. +457 0x00001e9c control 12 -1 730687 0 -1 730687 0 ff ff ff ff 3f 26 0b 00 00 00 00 00 ....?&...... +458 0x00001ea8 control 12 22 720994 0 22 720994 0 16 00 00 00 62 00 0b 00 00 00 00 00 ....b....... +459 0x00001eb4 data 22 18 2072017 0 2072017 0 196609 0 12 00 00 00 d1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +460 0x00001eca control 12 -1 730688 0 -1 730688 0 ff ff ff ff 40 26 0b 00 00 00 00 00 ....@&...... +461 0x00001ed6 control 12 52 720995 0 52 720995 0 34 00 00 00 63 00 0b 00 00 00 00 00 4...c....... +462 0x00001ee2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 52 13 02 00 00 00 00 00 00 00 7b 84 9c e3 4d 01 00 00 "0...Dk.................L."".([.....R.........{..." +463 0x00001f16 control 12 -1 730689 0 -1 730689 0 ff ff ff ff 41 26 0b 00 00 00 00 00 ....A&...... +464 0x00001f22 control 12 26 720996 0 26 720996 0 1a 00 00 00 64 00 0b 00 00 00 00 00 ....d....... +465 0x00001f2e data 26 22 2072019 0 2072019 0 196609 0 16 00 00 00 d3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +466 0x00001f48 control 12 -1 730690 0 -1 730690 0 ff ff ff ff 42 26 0b 00 00 00 00 00 ....B&...... +467 0x00001f54 control 12 22 720997 0 22 720997 0 16 00 00 00 65 00 0b 00 00 00 00 00 ....e....... +468 0x00001f60 data 22 18 2072021 0 2072021 0 196609 0 12 00 00 00 d5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +469 0x00001f76 control 12 -1 730691 0 -1 730691 0 ff ff ff ff 43 26 0b 00 00 00 00 00 ....C&...... +470 0x00001f82 control 12 22 720998 0 22 720998 0 16 00 00 00 66 00 0b 00 00 00 00 00 ....f....... +471 0x00001f8e data 22 18 2072023 0 2072023 0 196609 0 12 00 00 00 d7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +472 0x00001fa4 control 12 -1 730692 0 -1 730692 0 ff ff ff ff 44 26 0b 00 00 00 00 00 ....D&...... +473 0x00001fb0 control 12 22 720999 0 22 720999 0 16 00 00 00 67 00 0b 00 00 00 00 00 ....g....... +474 0x00001fbc data 22 18 2072025 0 2072025 0 196609 0 12 00 00 00 d9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +475 0x00001fd2 control 12 -1 730693 0 -1 730693 0 ff ff ff ff 45 26 0b 00 00 00 00 00 ....E&...... +476 0x00001fde control 12 -1 730694 0 -1 730694 0 ff ff ff ff 46 26 0b 00 00 00 00 00 ....F&...... +477 0x00001fea control 12 52 721000 0 52 721000 0 34 00 00 00 68 00 0b 00 00 00 00 00 4...h....... +478 0x00001ff6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 53 13 02 00 00 00 00 00 00 00 3d 1a cb e3 4d 01 00 00 "0...Dk.................L."".([.....S.........=..." +479 0x0000202a control 12 -1 730695 0 -1 730695 0 ff ff ff ff 47 26 0b 00 00 00 00 00 ....G&...... +480 0x00002036 control 12 26 721001 0 26 721001 0 1a 00 00 00 69 00 0b 00 00 00 00 00 ....i....... +481 0x00002042 data 26 22 2072027 0 2072027 0 196609 0 16 00 00 00 db 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +482 0x0000205c control 12 -1 730696 0 -1 730696 0 ff ff ff ff 48 26 0b 00 00 00 00 00 ....H&...... +483 0x00002068 control 12 22 721002 0 22 721002 0 16 00 00 00 6a 00 0b 00 00 00 00 00 ....j....... +484 0x00002074 data 22 18 2072029 0 2072029 0 196609 0 12 00 00 00 dd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +485 0x0000208a control 12 -2 82949 82966 -2 82949 82966 fe ff ff ff 05 44 01 00 16 44 01 00 .....D...D.. +486 0x00002096 control 12 -1 730697 0 -1 730697 0 ff ff ff ff 49 26 0b 00 00 00 00 00 ....I&...... +487 0x000020a2 control 12 22 721003 0 22 721003 0 16 00 00 00 6b 00 0b 00 00 00 00 00 ....k....... +488 0x000020ae data 22 18 2072031 0 2072031 0 196609 0 12 00 00 00 df 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +489 0x000020c4 control 12 -1 730698 0 -1 730698 0 ff ff ff ff 4a 26 0b 00 00 00 00 00 ....J&...... +490 0x000020d0 control 12 22 721004 0 22 721004 0 16 00 00 00 6c 00 0b 00 00 00 00 00 ....l....... +491 0x000020dc data 22 18 2072033 0 2072033 0 196609 0 12 00 00 00 e1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +492 0x000020f2 control 12 -1 730699 0 -1 730699 0 ff ff ff ff 4b 26 0b 00 00 00 00 00 ....K&...... +493 0x000020fe control 12 -1 730700 0 -1 730700 0 ff ff ff ff 4c 26 0b 00 00 00 00 00 ....L&...... +494 0x0000210a control 12 52 721005 0 52 721005 0 34 00 00 00 6d 00 0b 00 00 00 00 00 4...m....... +495 0x00002116 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 54 13 02 00 00 00 00 00 00 00 d0 af f9 e3 4d 01 00 00 "0...Dk.................L."".([.....T............." +496 0x0000214a control 12 -1 730701 0 -1 730701 0 ff ff ff ff 4d 26 0b 00 00 00 00 00 ....M&...... +497 0x00002156 control 12 26 721006 0 26 721006 0 1a 00 00 00 6e 00 0b 00 00 00 00 00 ....n....... +498 0x00002162 data 26 22 2072035 0 2072035 0 196609 0 16 00 00 00 e3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +499 0x0000217c control 12 -1 730702 0 -1 730702 0 ff ff ff ff 4e 26 0b 00 00 00 00 00 ....N&...... +500 0x00002188 control 12 22 721007 0 22 721007 0 16 00 00 00 6f 00 0b 00 00 00 00 00 ....o....... +501 0x00002194 data 22 18 2072037 0 2072037 0 196609 0 12 00 00 00 e5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +502 0x000021aa control 12 -1 730703 0 -1 730703 0 ff ff ff ff 4f 26 0b 00 00 00 00 00 ....O&...... +503 0x000021b6 control 12 22 721008 0 22 721008 0 16 00 00 00 70 00 0b 00 00 00 00 00 ....p....... +504 0x000021c2 data 22 18 2072039 0 2072039 0 196609 0 12 00 00 00 e7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +505 0x000021d8 control 12 -1 730704 0 -1 730704 0 ff ff ff ff 50 26 0b 00 00 00 00 00 ....P&...... +506 0x000021e4 control 12 22 721009 0 22 721009 0 16 00 00 00 71 00 0b 00 00 00 00 00 ....q....... +507 0x000021f0 data 22 18 2072041 0 2072041 0 196609 0 12 00 00 00 e9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +508 0x00002206 control 12 -1 730705 0 -1 730705 0 ff ff ff ff 51 26 0b 00 00 00 00 00 ....Q&...... +509 0x00002212 control 12 52 721010 0 52 721010 0 34 00 00 00 72 00 0b 00 00 00 00 00 4...r....... +510 0x0000221e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 55 13 02 00 00 00 00 00 00 00 07 0d 28 e4 4d 01 00 00 "0...Dk.................L."".([.....U...........(." +511 0x00002252 control 12 -1 730706 0 -1 730706 0 ff ff ff ff 52 26 0b 00 00 00 00 00 ....R&...... +512 0x0000225e control 12 26 721011 0 26 721011 0 1a 00 00 00 73 00 0b 00 00 00 00 00 ....s....... +513 0x0000226a data 26 22 2072043 0 2072043 0 196609 0 16 00 00 00 eb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +514 0x00002284 control 12 -2 82950 82967 -2 82950 82967 fe ff ff ff 06 44 01 00 17 44 01 00 .....D...D.. +515 0x00002290 control 12 -1 730707 0 -1 730707 0 ff ff ff ff 53 26 0b 00 00 00 00 00 ....S&...... +516 0x0000229c control 12 22 721012 0 22 721012 0 16 00 00 00 74 00 0b 00 00 00 00 00 ....t....... +517 0x000022a8 data 22 18 2072045 0 2072045 0 196609 0 12 00 00 00 ed 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +518 0x000022be control 12 -1 730708 0 -1 730708 0 ff ff ff ff 54 26 0b 00 00 00 00 00 ....T&...... +519 0x000022ca control 12 22 721013 0 22 721013 0 16 00 00 00 75 00 0b 00 00 00 00 00 ....u....... +520 0x000022d6 data 22 18 2072047 0 2072047 0 196609 0 12 00 00 00 ef 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +521 0x000022ec control 12 -1 730709 0 -1 730709 0 ff ff ff ff 55 26 0b 00 00 00 00 00 ....U&...... +522 0x000022f8 control 12 22 721014 0 22 721014 0 16 00 00 00 76 00 0b 00 00 00 00 00 ....v....... +523 0x00002304 data 22 18 2072049 0 2072049 0 196609 0 12 00 00 00 f1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +524 0x0000231a control 12 -1 730710 0 -1 730710 0 ff ff ff ff 56 26 0b 00 00 00 00 00 ....V&...... +525 0x00002326 control 12 52 721015 0 52 721015 0 34 00 00 00 77 00 0b 00 00 00 00 00 4...w....... +526 0x00002332 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 56 13 02 00 00 00 00 00 00 00 e6 9e 56 e4 4d 01 00 00 "0...Dk.................L."".([.....V...........V." +527 0x00002366 control 12 -1 730711 0 -1 730711 0 ff ff ff ff 57 26 0b 00 00 00 00 00 ....W&...... +528 0x00002372 control 12 26 721016 0 26 721016 0 1a 00 00 00 78 00 0b 00 00 00 00 00 ....x....... +529 0x0000237e data 26 22 2072051 0 2072051 0 196609 0 16 00 00 00 f3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +530 0x00002398 control 12 -1 730712 0 -1 730712 0 ff ff ff ff 58 26 0b 00 00 00 00 00 ....X&...... +531 0x000023a4 control 12 22 721017 0 22 721017 0 16 00 00 00 79 00 0b 00 00 00 00 00 ....y....... +532 0x000023b0 data 22 18 2072053 0 2072053 0 196609 0 12 00 00 00 f5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +533 0x000023c6 control 12 -1 730713 0 -1 730713 0 ff ff ff ff 59 26 0b 00 00 00 00 00 ....Y&...... +534 0x000023d2 control 12 22 721018 0 22 721018 0 16 00 00 00 7a 00 0b 00 00 00 00 00 ....z....... +535 0x000023de data 22 18 2072055 0 2072055 0 196609 0 12 00 00 00 f7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +536 0x000023f4 control 12 -2 82951 82968 -2 82951 82968 fe ff ff ff 07 44 01 00 18 44 01 00 .....D...D.. +537 0x00002400 control 12 -1 730714 0 -1 730714 0 ff ff ff ff 5a 26 0b 00 00 00 00 00 ....Z&...... +538 0x0000240c control 12 22 721019 0 22 721019 0 16 00 00 00 7b 00 0b 00 00 00 00 00 ....{....... +539 0x00002418 data 22 18 2072057 0 2072057 0 196609 0 12 00 00 00 f9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +540 0x0000242e control 12 -1 730715 0 -1 730715 0 ff ff ff ff 5b 26 0b 00 00 00 00 00 ....[&...... +541 0x0000243a control 12 -1 730716 0 -1 730716 0 ff ff ff ff 5c 26 0b 00 00 00 00 00 ....\&...... +542 0x00002446 control 12 52 721020 0 52 721020 0 34 00 00 00 7c 00 0b 00 00 00 00 00 4...|....... +543 0x00002452 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 57 13 02 00 00 00 00 00 00 00 1b 2e 85 e4 4d 01 00 00 "0...Dk.................L."".([.....W............." +544 0x00002486 control 12 -1 730717 0 -1 730717 0 ff ff ff ff 5d 26 0b 00 00 00 00 00 ....]&...... +545 0x00002492 control 12 26 721021 0 26 721021 0 1a 00 00 00 7d 00 0b 00 00 00 00 00 ....}....... +546 0x0000249e data 26 22 2072059 0 2072059 0 196609 0 16 00 00 00 fb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +547 0x000024b8 control 12 -1 730718 0 -1 730718 0 ff ff ff ff 5e 26 0b 00 00 00 00 00 ....^&...... +548 0x000024c4 control 12 22 721022 0 22 721022 0 16 00 00 00 7e 00 0b 00 00 00 00 00 ....~....... +549 0x000024d0 data 22 18 2072061 0 2072061 0 196609 0 12 00 00 00 fd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +550 0x000024e6 control 12 -1 730719 0 -1 730719 0 ff ff ff ff 5f 26 0b 00 00 00 00 00 ...._&...... +551 0x000024f2 control 12 22 721023 0 22 721023 0 16 00 00 00 7f 00 0b 00 00 00 00 00 ............ +552 0x000024fe data 22 18 2072063 0 2072063 0 196609 0 12 00 00 00 ff 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +553 0x00002514 control 12 -1 730720 0 -1 730720 0 ff ff ff ff 60 26 0b 00 00 00 00 00 ....`&...... +554 0x00002520 control 12 22 721024 0 22 721024 0 16 00 00 00 80 00 0b 00 00 00 00 00 ............ +555 0x0000252c data 22 18 2072065 0 2072065 0 196609 0 12 00 00 00 01 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +556 0x00002542 control 12 -1 730721 0 -1 730721 0 ff ff ff ff 61 26 0b 00 00 00 00 00 ....a&...... +557 0x0000254e control 12 52 721025 0 52 721025 0 34 00 00 00 81 00 0b 00 00 00 00 00 4........... +558 0x0000255a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 58 13 02 00 00 00 00 00 00 00 0c 9e b3 e4 4d 01 00 00 "0...Dk.................L."".([.....X............." +559 0x0000258e control 12 -1 730722 0 -1 730722 0 ff ff ff ff 62 26 0b 00 00 00 00 00 ....b&...... +560 0x0000259a control 12 26 721026 0 26 721026 0 1a 00 00 00 82 00 0b 00 00 00 00 00 ............ +561 0x000025a6 data 26 22 2072067 0 2072067 0 196609 0 16 00 00 00 03 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +562 0x000025c0 control 12 -2 82952 82969 -2 82952 82969 fe ff ff ff 08 44 01 00 19 44 01 00 .....D...D.. +563 0x000025cc control 12 -1 730723 0 -1 730723 0 ff ff ff ff 63 26 0b 00 00 00 00 00 ....c&...... +564 0x000025d8 control 12 22 721027 0 22 721027 0 16 00 00 00 83 00 0b 00 00 00 00 00 ............ +565 0x000025e4 data 22 18 2072069 0 2072069 0 196609 0 12 00 00 00 05 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +566 0x000025fa control 12 -1 730724 0 -1 730724 0 ff ff ff ff 64 26 0b 00 00 00 00 00 ....d&...... +567 0x00002606 control 12 22 721028 0 22 721028 0 16 00 00 00 84 00 0b 00 00 00 00 00 ............ +568 0x00002612 data 22 18 2072071 0 2072071 0 196609 0 12 00 00 00 07 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +569 0x00002628 control 12 -1 730725 0 -1 730725 0 ff ff ff ff 65 26 0b 00 00 00 00 00 ....e&...... +570 0x00002634 control 12 52 721029 0 52 721029 0 34 00 00 00 85 00 0b 00 00 00 00 00 4........... +571 0x00002640 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 59 13 02 00 00 00 00 00 00 00 2b 04 e2 e4 4d 01 00 00 "0...Dk.................L."".([.....Y.........+..." +572 0x00002674 control 12 -1 730726 0 -1 730726 0 ff ff ff ff 66 26 0b 00 00 00 00 00 ....f&...... +573 0x00002680 control 12 26 721030 0 26 721030 0 1a 00 00 00 86 00 0b 00 00 00 00 00 ............ +574 0x0000268c data 26 22 2072073 0 2072073 0 196609 0 16 00 00 00 09 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +575 0x000026a6 control 12 -1 730727 0 -1 730727 0 ff ff ff ff 67 26 0b 00 00 00 00 00 ....g&...... +576 0x000026b2 control 12 22 721031 0 22 721031 0 16 00 00 00 87 00 0b 00 00 00 00 00 ............ +577 0x000026be data 22 18 2072075 0 2072075 0 196609 0 12 00 00 00 0b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +578 0x000026d4 control 12 -1 730728 0 -1 730728 0 ff ff ff ff 68 26 0b 00 00 00 00 00 ....h&...... +579 0x000026e0 control 12 22 721032 0 22 721032 0 16 00 00 00 88 00 0b 00 00 00 00 00 ............ +580 0x000026ec data 22 18 2072077 0 2072077 0 196609 0 12 00 00 00 0d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +581 0x00002702 control 12 -1 730729 0 -1 730729 0 ff ff ff ff 69 26 0b 00 00 00 00 00 ....i&...... +582 0x0000270e control 12 22 721033 0 22 721033 0 16 00 00 00 89 00 0b 00 00 00 00 00 ............ +583 0x0000271a data 22 18 2072079 0 2072079 0 196609 0 12 00 00 00 0f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +584 0x00002730 control 12 -2 82953 82970 -2 82953 82970 fe ff ff ff 09 44 01 00 1a 44 01 00 .....D...D.. +585 0x0000273c control 12 -1 730730 0 -1 730730 0 ff ff ff ff 6a 26 0b 00 00 00 00 00 ....j&...... +586 0x00002748 control 12 52 721034 0 52 721034 0 34 00 00 00 8a 00 0b 00 00 00 00 00 4........... +587 0x00002754 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5a 13 02 00 00 00 00 00 00 00 24 93 10 e5 4d 01 00 00 "0...Dk.................L."".([.....Z.........$..." +588 0x00002788 control 12 -1 730731 0 -1 730731 0 ff ff ff ff 6b 26 0b 00 00 00 00 00 ....k&...... +589 0x00002794 control 12 26 721035 0 26 721035 0 1a 00 00 00 8b 00 0b 00 00 00 00 00 ............ +590 0x000027a0 data 26 22 2072081 0 2072081 0 196609 0 16 00 00 00 11 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +591 0x000027ba control 12 -1 730732 0 -1 730732 0 ff ff ff ff 6c 26 0b 00 00 00 00 00 ....l&...... +592 0x000027c6 control 12 22 721036 0 22 721036 0 16 00 00 00 8c 00 0b 00 00 00 00 00 ............ +593 0x000027d2 data 22 18 2072083 0 2072083 0 196609 0 12 00 00 00 13 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +594 0x000027e8 control 12 -1 730733 0 -1 730733 0 ff ff ff ff 6d 26 0b 00 00 00 00 00 ....m&...... +595 0x000027f4 control 12 22 721037 0 22 721037 0 16 00 00 00 8d 00 0b 00 00 00 00 00 ............ +596 0x00002800 data 22 18 2072085 0 2072085 0 196609 0 12 00 00 00 15 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +597 0x00002816 control 12 -1 730734 0 -1 730734 0 ff ff ff ff 6e 26 0b 00 00 00 00 00 ....n&...... +598 0x00002822 control 12 22 721038 0 22 721038 0 16 00 00 00 8e 00 0b 00 00 00 00 00 ............ +599 0x0000282e data 22 18 2072087 0 2072087 0 196609 0 12 00 00 00 17 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +600 0x00002844 control 12 -1 730735 0 -1 730735 0 ff ff ff ff 6f 26 0b 00 00 00 00 00 ....o&...... +601 0x00002850 control 12 -1 730736 0 -1 730736 0 ff ff ff ff 70 26 0b 00 00 00 00 00 ....p&...... +602 0x0000285c control 12 52 721039 0 52 721039 0 34 00 00 00 8f 00 0b 00 00 00 00 00 4........... +603 0x00002868 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5b 13 02 00 00 00 00 00 00 00 8f 1d 3f e5 4d 01 00 00 "0...Dk.................L."".([.....[...........?." +604 0x0000289c control 12 -1 730737 0 -1 730737 0 ff ff ff ff 71 26 0b 00 00 00 00 00 ....q&...... +605 0x000028a8 control 12 26 721040 0 26 721040 0 1a 00 00 00 90 00 0b 00 00 00 00 00 ............ +606 0x000028b4 data 26 22 2072089 0 2072089 0 196609 0 16 00 00 00 19 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +607 0x000028ce control 12 -1 730738 0 -1 730738 0 ff ff ff ff 72 26 0b 00 00 00 00 00 ....r&...... +608 0x000028da control 12 22 721041 0 22 721041 0 16 00 00 00 91 00 0b 00 00 00 00 00 ............ +609 0x000028e6 data 22 18 2072091 0 2072091 0 196609 0 12 00 00 00 1b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +610 0x000028fc control 12 -1 730739 0 -1 730739 0 ff ff ff ff 73 26 0b 00 00 00 00 00 ....s&...... +611 0x00002908 control 12 22 721042 0 22 721042 0 16 00 00 00 92 00 0b 00 00 00 00 00 ............ +612 0x00002914 data 22 18 2072093 0 2072093 0 196609 0 12 00 00 00 1d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +613 0x0000292a control 12 -2 82954 82971 -2 82954 82971 fe ff ff ff 0a 44 01 00 1b 44 01 00 .....D...D.. +614 0x00002936 control 12 -1 730740 0 -1 730740 0 ff ff ff ff 74 26 0b 00 00 00 00 00 ....t&...... +615 0x00002942 control 12 22 721043 0 22 721043 0 16 00 00 00 93 00 0b 00 00 00 00 00 ............ +616 0x0000294e data 22 18 2072095 0 2072095 0 196609 0 12 00 00 00 1f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +617 0x00002964 control 12 -1 730741 0 -1 730741 0 ff ff ff ff 75 26 0b 00 00 00 00 00 ....u&...... +618 0x00002970 control 12 -1 730742 0 -1 730742 0 ff ff ff ff 76 26 0b 00 00 00 00 00 ....v&...... +619 0x0000297c control 12 52 721044 0 52 721044 0 34 00 00 00 94 00 0b 00 00 00 00 00 4........... +620 0x00002988 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5c 13 02 00 00 00 00 00 00 00 0d 86 6d e5 4d 01 00 00 "0...Dk.................L."".([.....\...........m." +621 0x000029bc control 12 -1 730743 0 -1 730743 0 ff ff ff ff 77 26 0b 00 00 00 00 00 ....w&...... +622 0x000029c8 control 12 26 721045 0 26 721045 0 1a 00 00 00 95 00 0b 00 00 00 00 00 ............ +623 0x000029d4 data 26 22 2072097 0 2072097 0 196609 0 16 00 00 00 21 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +624 0x000029ee control 12 -1 730744 0 -1 730744 0 ff ff ff ff 78 26 0b 00 00 00 00 00 ....x&...... +625 0x000029fa control 12 22 721046 0 22 721046 0 16 00 00 00 96 00 0b 00 00 00 00 00 ............ +626 0x00002a06 data 22 18 2072099 0 2072099 0 196609 0 12 00 00 00 23 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +627 0x00002a1c control 12 -1 730745 0 -1 730745 0 ff ff ff ff 79 26 0b 00 00 00 00 00 ....y&...... +628 0x00002a28 control 12 22 721047 0 22 721047 0 16 00 00 00 97 00 0b 00 00 00 00 00 ............ +629 0x00002a34 data 22 18 2072101 0 2072101 0 196609 0 12 00 00 00 25 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +630 0x00002a4a control 12 -1 730746 0 -1 730746 0 ff ff ff ff 7a 26 0b 00 00 00 00 00 ....z&...... +631 0x00002a56 control 12 22 721048 0 22 721048 0 16 00 00 00 98 00 0b 00 00 00 00 00 ............ +632 0x00002a62 data 22 18 2072103 0 2072103 0 196609 0 12 00 00 00 27 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +633 0x00002a78 control 12 -1 730747 0 -1 730747 0 ff ff ff ff 7b 26 0b 00 00 00 00 00 ....{&...... +634 0x00002a84 control 12 -1 730748 0 -1 730748 0 ff ff ff ff 7c 26 0b 00 00 00 00 00 ....|&...... +635 0x00002a90 control 12 52 721049 0 52 721049 0 34 00 00 00 99 00 0b 00 00 00 00 00 4........... +636 0x00002a9c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5d 13 02 00 00 00 00 00 00 00 f9 16 9c e5 4d 01 00 00 "0...Dk.................L."".([.....]............." +637 0x00002ad0 control 12 -1 730749 0 -1 730749 0 ff ff ff ff 7d 26 0b 00 00 00 00 00 ....}&...... +638 0x00002adc control 12 26 721050 0 26 721050 0 1a 00 00 00 9a 00 0b 00 00 00 00 00 ............ +639 0x00002ae8 data 26 22 2072105 0 2072105 0 196609 0 16 00 00 00 29 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +640 0x00002b02 control 12 -1 730750 0 -1 730750 0 ff ff ff ff 7e 26 0b 00 00 00 00 00 ....~&...... +641 0x00002b0e control 12 22 721051 0 22 721051 0 16 00 00 00 9b 00 0b 00 00 00 00 00 ............ +642 0x00002b1a data 22 18 2072107 0 2072107 0 196609 0 12 00 00 00 2b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +643 0x00002b30 control 12 -2 82955 82972 -2 82955 82972 fe ff ff ff 0b 44 01 00 1c 44 01 00 .....D...D.. +644 0x00002b3c control 12 -1 730751 0 -1 730751 0 ff ff ff ff 7f 26 0b 00 00 00 00 00 .....&...... +645 0x00002b48 control 12 22 721052 0 22 721052 0 16 00 00 00 9c 00 0b 00 00 00 00 00 ............ +646 0x00002b54 data 22 18 2072109 0 2072109 0 196609 0 12 00 00 00 2d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +647 0x00002b6a control 12 -1 730752 0 -1 730752 0 ff ff ff ff 80 26 0b 00 00 00 00 00 .....&...... +648 0x00002b76 control 12 22 721053 0 22 721053 0 16 00 00 00 9d 00 0b 00 00 00 00 00 ............ +649 0x00002b82 data 22 18 2072111 0 2072111 0 196609 0 12 00 00 00 2f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +650 0x00002b98 control 12 -1 730753 0 -1 730753 0 ff ff ff ff 81 26 0b 00 00 00 00 00 .....&...... +651 0x00002ba4 control 12 52 721054 0 52 721054 0 34 00 00 00 9e 00 0b 00 00 00 00 00 4........... +652 0x00002bb0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5e 13 02 00 00 00 00 00 00 00 30 9c ca e5 4d 01 00 00 "0...Dk.................L."".([.....^.........0..." +653 0x00002be4 control 12 -1 730754 0 -1 730754 0 ff ff ff ff 82 26 0b 00 00 00 00 00 .....&...... +654 0x00002bf0 control 12 26 721055 0 26 721055 0 1a 00 00 00 9f 00 0b 00 00 00 00 00 ............ +655 0x00002bfc data 26 22 2072113 0 2072113 0 196609 0 16 00 00 00 31 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +656 0x00002c16 control 12 -1 730755 0 -1 730755 0 ff ff ff ff 83 26 0b 00 00 00 00 00 .....&...... +657 0x00002c22 control 12 22 721056 0 22 721056 0 16 00 00 00 a0 00 0b 00 00 00 00 00 ............ +658 0x00002c2e data 22 18 2072115 0 2072115 0 196609 0 12 00 00 00 33 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +659 0x00002c44 control 12 -1 730756 0 -1 730756 0 ff ff ff ff 84 26 0b 00 00 00 00 00 .....&...... +660 0x00002c50 control 12 22 721057 0 22 721057 0 16 00 00 00 a1 00 0b 00 00 00 00 00 ............ +661 0x00002c5c data 22 18 2072117 0 2072117 0 196609 0 12 00 00 00 35 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +662 0x00002c72 control 12 -1 730757 0 -1 730757 0 ff ff ff ff 85 26 0b 00 00 00 00 00 .....&...... +663 0x00002c7e control 12 22 721058 0 22 721058 0 16 00 00 00 a2 00 0b 00 00 00 00 00 ............ +664 0x00002c8a data 22 18 2072119 0 2072119 0 196609 0 12 00 00 00 37 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +665 0x00002ca0 control 12 -2 82956 82973 -2 82956 82973 fe ff ff ff 0c 44 01 00 1d 44 01 00 .....D...D.. +666 0x00002cac control 12 -1 730758 0 -1 730758 0 ff ff ff ff 86 26 0b 00 00 00 00 00 .....&...... +667 0x00002cb8 control 12 -1 730759 0 -1 730759 0 ff ff ff ff 87 26 0b 00 00 00 00 00 .....&...... +668 0x00002cc4 control 12 52 721059 0 52 721059 0 34 00 00 00 a3 00 0b 00 00 00 00 00 4........... +669 0x00002cd0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5f 13 02 00 00 00 00 00 00 00 c4 0b f9 e5 4d 01 00 00 "0...Dk.................L."".([....._............." +670 0x00002d04 control 12 -1 730760 0 -1 730760 0 ff ff ff ff 88 26 0b 00 00 00 00 00 .....&...... +671 0x00002d10 control 12 26 721060 0 26 721060 0 1a 00 00 00 a4 00 0b 00 00 00 00 00 ............ +672 0x00002d1c data 26 22 2072121 0 2072121 0 196609 0 16 00 00 00 39 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +673 0x00002d36 control 12 -1 730761 0 -1 730761 0 ff ff ff ff 89 26 0b 00 00 00 00 00 .....&...... +674 0x00002d42 control 12 22 721061 0 22 721061 0 16 00 00 00 a5 00 0b 00 00 00 00 00 ............ +675 0x00002d4e data 22 18 2072123 0 2072123 0 196609 0 12 00 00 00 3b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +676 0x00002d64 control 12 -1 730762 0 -1 730762 0 ff ff ff ff 8a 26 0b 00 00 00 00 00 .....&...... +677 0x00002d70 control 12 22 721062 0 22 721062 0 16 00 00 00 a6 00 0b 00 00 00 00 00 ............ +678 0x00002d7c data 22 18 2072125 0 2072125 0 196609 0 12 00 00 00 3d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +679 0x00002d92 control 12 -1 730763 0 -1 730763 0 ff ff ff ff 8b 26 0b 00 00 00 00 00 .....&...... +680 0x00002d9e control 12 22 721063 0 22 721063 0 16 00 00 00 a7 00 0b 00 00 00 00 00 ............ +681 0x00002daa data 22 18 2072127 0 2072127 0 196609 0 12 00 00 00 3f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +682 0x00002dc0 control 12 -1 730764 0 -1 730764 0 ff ff ff ff 8c 26 0b 00 00 00 00 00 .....&...... +683 0x00002dcc control 12 -1 730765 0 -1 730765 0 ff ff ff ff 8d 26 0b 00 00 00 00 00 .....&...... +684 0x00002dd8 control 12 52 721064 0 52 721064 0 34 00 00 00 a8 00 0b 00 00 00 00 00 4........... +685 0x00002de4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 60 13 02 00 00 00 00 00 00 00 8b 92 27 e6 4d 01 00 00 "0...Dk.................L."".([.....`...........'." +686 0x00002e18 control 12 -1 730766 0 -1 730766 0 ff ff ff ff 8e 26 0b 00 00 00 00 00 .....&...... +687 0x00002e24 control 12 26 721065 0 26 721065 0 1a 00 00 00 a9 00 0b 00 00 00 00 00 ............ +688 0x00002e30 data 26 22 2072129 0 2072129 0 196609 0 16 00 00 00 41 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +689 0x00002e4a control 12 -1 730767 0 -1 730767 0 ff ff ff ff 8f 26 0b 00 00 00 00 00 .....&...... +690 0x00002e56 control 12 22 721066 0 22 721066 0 16 00 00 00 aa 00 0b 00 00 00 00 00 ............ +691 0x00002e62 data 22 18 2072131 0 2072131 0 196609 0 12 00 00 00 43 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +692 0x00002e78 control 12 -1 730768 0 -1 730768 0 ff ff ff ff 90 26 0b 00 00 00 00 00 .....&...... +693 0x00002e84 control 12 22 721067 0 22 721067 0 16 00 00 00 ab 00 0b 00 00 00 00 00 ............ +694 0x00002e90 data 22 18 2072133 0 2072133 0 196609 0 12 00 00 00 45 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +695 0x00002ea6 control 12 -2 82957 82974 -2 82957 82974 fe ff ff ff 0d 44 01 00 1e 44 01 00 .....D...D.. +696 0x00002eb2 control 12 -1 730769 0 -1 730769 0 ff ff ff ff 91 26 0b 00 00 00 00 00 .....&...... +697 0x00002ebe control 12 22 721068 0 22 721068 0 16 00 00 00 ac 00 0b 00 00 00 00 00 ............ +698 0x00002eca data 22 18 2072135 0 2072135 0 196609 0 12 00 00 00 47 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +699 0x00002ee0 control 12 -1 730770 0 -1 730770 0 ff ff ff ff 92 26 0b 00 00 00 00 00 .....&...... +700 0x00002eec control 12 52 721069 0 52 721069 0 34 00 00 00 ad 00 0b 00 00 00 00 00 4........... +701 0x00002ef8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 61 13 02 00 00 00 00 00 00 00 49 27 56 e6 4d 01 00 00 "0...Dk.................L."".([.....a.........I'V." +702 0x00002f2c control 12 -1 730771 0 -1 730771 0 ff ff ff ff 93 26 0b 00 00 00 00 00 .....&...... +703 0x00002f38 control 12 26 721070 0 26 721070 0 1a 00 00 00 ae 00 0b 00 00 00 00 00 ............ +704 0x00002f44 data 26 22 2072137 0 2072137 0 196609 0 16 00 00 00 49 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +705 0x00002f5e control 12 -1 730772 0 -1 730772 0 ff ff ff ff 94 26 0b 00 00 00 00 00 .....&...... +706 0x00002f6a control 12 22 721071 0 22 721071 0 16 00 00 00 af 00 0b 00 00 00 00 00 ............ +707 0x00002f76 data 22 18 2072139 0 2072139 0 196609 0 12 00 00 00 4b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +708 0x00002f8c control 12 -1 730773 0 -1 730773 0 ff ff ff ff 95 26 0b 00 00 00 00 00 .....&...... +709 0x00002f98 control 12 22 721072 0 22 721072 0 16 00 00 00 b0 00 0b 00 00 00 00 00 ............ +710 0x00002fa4 data 22 18 2072141 0 2072141 0 196609 0 12 00 00 00 4d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +711 0x00002fba control 12 -1 730774 0 -1 730774 0 ff ff ff ff 96 26 0b 00 00 00 00 00 .....&...... +712 0x00002fc6 control 12 22 721073 0 22 721073 0 16 00 00 00 b1 00 0b 00 00 00 00 00 ............ +713 0x00002fd2 data 22 18 2072143 0 2072143 0 196609 0 12 00 00 00 4f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +714 0x00002fe8 control 12 -1 730775 0 -1 730775 0 ff ff ff ff 97 26 0b 00 00 00 00 00 .....&...... +715 0x00002ff4 control 12 -1 730776 0 -1 730776 0 ff ff ff ff 98 26 0b 00 00 00 00 00 .....&...... +716 0x00003000 control 12 52 721074 0 52 721074 0 34 00 00 00 b2 00 0b 00 00 00 00 00 4........... +717 0x0000300c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 62 13 02 00 00 00 00 00 00 00 45 b2 84 e6 4d 01 00 00 "0...Dk.................L."".([.....b.........E..." +718 0x00003040 control 12 -1 730777 0 -1 730777 0 ff ff ff ff 99 26 0b 00 00 00 00 00 .....&...... +719 0x0000304c control 12 26 721075 0 26 721075 0 1a 00 00 00 b3 00 0b 00 00 00 00 00 ............ +720 0x00003058 data 26 22 2072145 0 2072145 0 196609 0 16 00 00 00 51 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +721 0x00003072 control 12 -1 730778 0 -1 730778 0 ff ff ff ff 9a 26 0b 00 00 00 00 00 .....&...... +722 0x0000307e control 12 22 721076 0 22 721076 0 16 00 00 00 b4 00 0b 00 00 00 00 00 ............ +723 0x0000308a data 22 18 2072147 0 2072147 0 196609 0 12 00 00 00 53 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +724 0x000030a0 control 12 -2 82958 82975 -2 82958 82975 fe ff ff ff 0e 44 01 00 1f 44 01 00 .....D...D.. +725 0x000030ac control 12 -1 730779 0 -1 730779 0 ff ff ff ff 9b 26 0b 00 00 00 00 00 .....&...... +726 0x000030b8 control 12 22 721077 0 22 721077 0 16 00 00 00 b5 00 0b 00 00 00 00 00 ............ +727 0x000030c4 data 22 18 2072149 0 2072149 0 196609 0 12 00 00 00 55 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +728 0x000030da control 12 -1 730780 0 -1 730780 0 ff ff ff ff 9c 26 0b 00 00 00 00 00 .....&...... +729 0x000030e6 control 12 22 721078 0 22 721078 0 16 00 00 00 b6 00 0b 00 00 00 00 00 ............ +730 0x000030f2 data 22 18 2072151 0 2072151 0 196609 0 12 00 00 00 57 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +731 0x00003108 control 12 -1 730781 0 -1 730781 0 ff ff ff ff 9d 26 0b 00 00 00 00 00 .....&...... +732 0x00003114 control 12 52 721079 0 52 721079 0 34 00 00 00 b7 00 0b 00 00 00 00 00 4........... +733 0x00003120 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 63 13 02 00 00 00 00 00 00 00 26 35 b3 e6 4d 01 00 00 "0...Dk.................L."".([.....c.........&5.." +734 0x00003154 control 12 -1 730782 0 -1 730782 0 ff ff ff ff 9e 26 0b 00 00 00 00 00 .....&...... +735 0x00003160 control 12 26 721080 0 26 721080 0 1a 00 00 00 b8 00 0b 00 00 00 00 00 ............ +736 0x0000316c data 26 22 2072153 0 2072153 0 196609 0 16 00 00 00 59 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +737 0x00003186 control 12 -1 730783 0 -1 730783 0 ff ff ff ff 9f 26 0b 00 00 00 00 00 .....&...... +738 0x00003192 control 12 22 721081 0 22 721081 0 16 00 00 00 b9 00 0b 00 00 00 00 00 ............ +739 0x0000319e data 22 18 2072155 0 2072155 0 196609 0 12 00 00 00 5b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +740 0x000031b4 control 12 -1 730784 0 -1 730784 0 ff ff ff ff a0 26 0b 00 00 00 00 00 .....&...... +741 0x000031c0 control 12 22 721082 0 22 721082 0 16 00 00 00 ba 00 0b 00 00 00 00 00 ............ +742 0x000031cc data 22 18 2072157 0 2072157 0 196609 0 12 00 00 00 5d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +743 0x000031e2 control 12 -2 82959 82976 -2 82959 82976 fe ff ff ff 0f 44 01 00 20 44 01 00 .....D.. D.. +744 0x000031ee control 12 -1 730785 0 -1 730785 0 ff ff ff ff a1 26 0b 00 00 00 00 00 .....&...... +745 0x000031fa control 12 22 721083 0 22 721083 0 16 00 00 00 bb 00 0b 00 00 00 00 00 ............ +746 0x00003206 data 22 18 2072159 0 2072159 0 196609 0 12 00 00 00 5f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +747 0x0000321c control 12 -1 730786 0 -1 730786 0 ff ff ff ff a2 26 0b 00 00 00 00 00 .....&...... +748 0x00003228 control 12 -1 730787 0 -1 730787 0 ff ff ff ff a3 26 0b 00 00 00 00 00 .....&...... +749 0x00003234 control 12 52 721084 0 52 721084 0 34 00 00 00 bc 00 0b 00 00 00 00 00 4........... +750 0x00003240 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 64 13 02 00 00 00 00 00 00 00 bb 92 e1 e6 4d 01 00 00 "0...Dk.................L."".([.....d............." +751 0x00003274 control 12 -1 730788 0 -1 730788 0 ff ff ff ff a4 26 0b 00 00 00 00 00 .....&...... +752 0x00003280 control 12 26 721085 0 26 721085 0 1a 00 00 00 bd 00 0b 00 00 00 00 00 ............ +753 0x0000328c data 26 22 2072161 0 2072161 0 196609 0 16 00 00 00 61 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +754 0x000032a6 control 12 -1 730789 0 -1 730789 0 ff ff ff ff a5 26 0b 00 00 00 00 00 .....&...... +755 0x000032b2 control 12 22 721086 0 22 721086 0 16 00 00 00 be 00 0b 00 00 00 00 00 ............ +756 0x000032be data 22 18 2072163 0 2072163 0 196609 0 12 00 00 00 63 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +757 0x000032d4 control 12 -1 730790 0 -1 730790 0 ff ff ff ff a6 26 0b 00 00 00 00 00 .....&...... +758 0x000032e0 control 12 22 721087 0 22 721087 0 16 00 00 00 bf 00 0b 00 00 00 00 00 ............ +759 0x000032ec data 22 18 2072165 0 2072165 0 196609 0 12 00 00 00 65 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +760 0x00003302 control 12 -1 730791 0 -1 730791 0 ff ff ff ff a7 26 0b 00 00 00 00 00 .....&...... +761 0x0000330e control 12 22 721088 0 22 721088 0 16 00 00 00 c0 00 0b 00 00 00 00 00 ............ +762 0x0000331a data 22 18 2072167 0 2072167 0 196609 0 12 00 00 00 67 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +763 0x00003330 control 12 -1 730792 0 -1 730792 0 ff ff ff ff a8 26 0b 00 00 00 00 00 .....&...... +764 0x0000333c control 12 -1 730793 0 -1 730793 0 ff ff ff ff a9 26 0b 00 00 00 00 00 .....&...... +765 0x00003348 control 12 52 721089 0 52 721089 0 34 00 00 00 c1 00 0b 00 00 00 00 00 4........... +766 0x00003354 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 65 13 02 00 00 00 00 00 00 00 43 11 10 e7 4d 01 00 00 "0...Dk.................L."".([.....e.........C..." +767 0x00003388 control 12 -1 730794 0 -1 730794 0 ff ff ff ff aa 26 0b 00 00 00 00 00 .....&...... +768 0x00003394 control 12 26 721090 0 26 721090 0 1a 00 00 00 c2 00 0b 00 00 00 00 00 ............ +769 0x000033a0 data 26 22 2072169 0 2072169 0 196609 0 16 00 00 00 69 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....i..................... +770 0x000033ba control 12 -1 730795 0 -1 730795 0 ff ff ff ff ab 26 0b 00 00 00 00 00 .....&...... +771 0x000033c6 control 12 22 721091 0 22 721091 0 16 00 00 00 c3 00 0b 00 00 00 00 00 ............ +772 0x000033d2 data 22 18 2072171 0 2072171 0 196609 0 12 00 00 00 6b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +773 0x000033e8 control 12 -2 82960 82977 -2 82960 82977 fe ff ff ff 10 44 01 00 21 44 01 00 .....D..!D.. +774 0x000033f4 control 12 -1 730796 0 -1 730796 0 ff ff ff ff ac 26 0b 00 00 00 00 00 .....&...... +775 0x00003400 control 12 22 721092 0 22 721092 0 16 00 00 00 c4 00 0b 00 00 00 00 00 ............ +776 0x0000340c data 22 18 2072173 0 2072173 0 196609 0 12 00 00 00 6d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +777 0x00003422 control 12 -1 730797 0 -1 730797 0 ff ff ff ff ad 26 0b 00 00 00 00 00 .....&...... +778 0x0000342e control 12 22 721093 0 22 721093 0 16 00 00 00 c5 00 0b 00 00 00 00 00 ............ +779 0x0000343a data 22 18 2072175 0 2072175 0 196609 0 12 00 00 00 6f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +780 0x00003450 control 12 -1 730798 0 -1 730798 0 ff ff ff ff ae 26 0b 00 00 00 00 00 .....&...... +781 0x0000345c control 12 -1 730799 0 -1 730799 0 ff ff ff ff af 26 0b 00 00 00 00 00 .....&...... +782 0x00003468 control 12 52 721094 0 52 721094 0 34 00 00 00 c6 00 0b 00 00 00 00 00 4........... +783 0x00003474 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 66 13 02 00 00 00 00 00 00 00 10 77 3e e7 4d 01 00 00 "0...Dk.................L."".([.....f..........w>." +784 0x000034a8 control 12 -1 730800 0 -1 730800 0 ff ff ff ff b0 26 0b 00 00 00 00 00 .....&...... +785 0x000034b4 control 12 26 721095 0 26 721095 0 1a 00 00 00 c7 00 0b 00 00 00 00 00 ............ +786 0x000034c0 data 26 22 2072177 0 2072177 0 196609 0 16 00 00 00 71 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....q..................... +787 0x000034da control 12 -1 730801 0 -1 730801 0 ff ff ff ff b1 26 0b 00 00 00 00 00 .....&...... +788 0x000034e6 control 12 22 721096 0 22 721096 0 16 00 00 00 c8 00 0b 00 00 00 00 00 ............ +789 0x000034f2 data 22 18 2072179 0 2072179 0 196609 0 12 00 00 00 73 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +790 0x00003508 control 12 -1 730802 0 -1 730802 0 ff ff ff ff b2 26 0b 00 00 00 00 00 .....&...... +791 0x00003514 control 12 22 721097 0 22 721097 0 16 00 00 00 c9 00 0b 00 00 00 00 00 ............ +792 0x00003520 data 22 18 2072181 0 2072181 0 196609 0 12 00 00 00 75 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +793 0x00003536 control 12 -1 730803 0 -1 730803 0 ff ff ff ff b3 26 0b 00 00 00 00 00 .....&...... +794 0x00003542 control 12 22 721098 0 22 721098 0 16 00 00 00 ca 00 0b 00 00 00 00 00 ............ +795 0x0000354e data 22 18 2072183 0 2072183 0 196609 0 12 00 00 00 77 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +796 0x00003564 control 12 -1 730804 0 -1 730804 0 ff ff ff ff b4 26 0b 00 00 00 00 00 .....&...... +797 0x00003570 control 12 -1 730805 0 -1 730805 0 ff ff ff ff b5 26 0b 00 00 00 00 00 .....&...... +798 0x0000357c control 12 52 721099 0 52 721099 0 34 00 00 00 cb 00 0b 00 00 00 00 00 4........... +799 0x00003588 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 67 13 02 00 00 00 00 00 00 00 4d f2 6c e7 4d 01 00 00 "0...Dk.................L."".([.....g.........M.l." +800 0x000035bc control 12 -1 730806 0 -1 730806 0 ff ff ff ff b6 26 0b 00 00 00 00 00 .....&...... +801 0x000035c8 control 12 26 721100 0 26 721100 0 1a 00 00 00 cc 00 0b 00 00 00 00 00 ............ +802 0x000035d4 data 26 22 2072185 0 2072185 0 196609 0 16 00 00 00 79 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....y..................... +803 0x000035ee control 12 -2 82961 82978 -2 82961 82978 fe ff ff ff 11 44 01 00 22 44 01 00 ".....D..""D.." +804 0x000035fa control 12 -1 730807 0 -1 730807 0 ff ff ff ff b7 26 0b 00 00 00 00 00 .....&...... +805 0x00003606 control 12 22 721101 0 22 721101 0 16 00 00 00 cd 00 0b 00 00 00 00 00 ............ +806 0x00003612 data 22 18 2072187 0 2072187 0 196609 0 12 00 00 00 7b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +807 0x00003628 control 12 -1 730808 0 -1 730808 0 ff ff ff ff b8 26 0b 00 00 00 00 00 .....&...... +808 0x00003634 control 12 22 721102 0 22 721102 0 16 00 00 00 ce 00 0b 00 00 00 00 00 ............ +809 0x00003640 data 22 18 2072189 0 2072189 0 196609 0 12 00 00 00 7d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +810 0x00003656 control 12 -1 730809 0 -1 730809 0 ff ff ff ff b9 26 0b 00 00 00 00 00 .....&...... +811 0x00003662 control 12 22 721103 0 22 721103 0 16 00 00 00 cf 00 0b 00 00 00 00 00 ............ +812 0x0000366e data 22 18 2072191 0 2072191 0 196609 0 12 00 00 00 7f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +813 0x00003684 control 12 -1 730810 0 -1 730810 0 ff ff ff ff ba 26 0b 00 00 00 00 00 .....&...... +814 0x00003690 control 12 -1 730811 0 -1 730811 0 ff ff ff ff bb 26 0b 00 00 00 00 00 .....&...... +815 0x0000369c control 12 52 721104 0 52 721104 0 34 00 00 00 d0 00 0b 00 00 00 00 00 4........... +816 0x000036a8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 68 13 02 00 00 00 00 00 00 00 d6 5e 9b e7 4d 01 00 00 "0...Dk.................L."".([.....h..........^.." +817 0x000036dc control 12 -1 730812 0 -1 730812 0 ff ff ff ff bc 26 0b 00 00 00 00 00 .....&...... +818 0x000036e8 control 12 26 721105 0 26 721105 0 1a 00 00 00 d1 00 0b 00 00 00 00 00 ............ +819 0x000036f4 data 26 22 2072193 0 2072193 0 196609 0 16 00 00 00 81 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +820 0x0000370e control 12 -1 730813 0 -1 730813 0 ff ff ff ff bd 26 0b 00 00 00 00 00 .....&...... +821 0x0000371a control 12 22 721106 0 22 721106 0 16 00 00 00 d2 00 0b 00 00 00 00 00 ............ +822 0x00003726 data 22 18 2072195 0 2072195 0 196609 0 12 00 00 00 83 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +823 0x0000373c control 12 -1 730814 0 -1 730814 0 ff ff ff ff be 26 0b 00 00 00 00 00 .....&...... +824 0x00003748 control 12 22 721107 0 22 721107 0 16 00 00 00 d3 00 0b 00 00 00 00 00 ............ +825 0x00003754 data 22 18 2072197 0 2072197 0 196609 0 12 00 00 00 85 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +826 0x0000376a control 12 -2 82962 82979 -2 82962 82979 fe ff ff ff 12 44 01 00 23 44 01 00 .....D..#D.. +827 0x00003776 control 12 -1 730815 0 -1 730815 0 ff ff ff ff bf 26 0b 00 00 00 00 00 .....&...... +828 0x00003782 control 12 22 721108 0 22 721108 0 16 00 00 00 d4 00 0b 00 00 00 00 00 ............ +829 0x0000378e data 22 18 2072199 0 2072199 0 196609 0 12 00 00 00 87 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +830 0x000037a4 control 12 -1 730816 0 -1 730816 0 ff ff ff ff c0 26 0b 00 00 00 00 00 .....&...... +831 0x000037b0 control 12 -1 730817 0 -1 730817 0 ff ff ff ff c1 26 0b 00 00 00 00 00 .....&...... +832 0x000037bc control 12 52 721109 0 52 721109 0 34 00 00 00 d5 00 0b 00 00 00 00 00 4........... +833 0x000037c8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 69 13 02 00 00 00 00 00 00 00 05 c2 c9 e7 4d 01 00 00 "0...Dk.................L."".([.....i............." +834 0x000037fc control 12 -1 730818 0 -1 730818 0 ff ff ff ff c2 26 0b 00 00 00 00 00 .....&...... +835 0x00003808 control 12 26 721110 0 26 721110 0 1a 00 00 00 d6 00 0b 00 00 00 00 00 ............ +836 0x00003814 data 26 22 2072201 0 2072201 0 196609 0 16 00 00 00 89 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +837 0x0000382e control 12 -1 730819 0 -1 730819 0 ff ff ff ff c3 26 0b 00 00 00 00 00 .....&...... +838 0x0000383a control 12 22 721111 0 22 721111 0 16 00 00 00 d7 00 0b 00 00 00 00 00 ............ +839 0x00003846 data 22 18 2072203 0 2072203 0 196609 0 12 00 00 00 8b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +840 0x0000385c control 12 -1 730820 0 -1 730820 0 ff ff ff ff c4 26 0b 00 00 00 00 00 .....&...... +841 0x00003868 control 12 22 721112 0 22 721112 0 16 00 00 00 d8 00 0b 00 00 00 00 00 ............ +842 0x00003874 data 22 18 2072205 0 2072205 0 196609 0 12 00 00 00 8d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +843 0x0000388a control 12 -1 730821 0 -1 730821 0 ff ff ff ff c5 26 0b 00 00 00 00 00 .....&...... +844 0x00003896 control 12 -1 730822 0 -1 730822 0 ff ff ff ff c6 26 0b 00 00 00 00 00 .....&...... +845 0x000038a2 control 12 52 721113 0 52 721113 0 34 00 00 00 d9 00 0b 00 00 00 00 00 4........... +846 0x000038ae data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6a 13 02 00 00 00 00 00 00 00 4e 26 f8 e7 4d 01 00 00 "0...Dk.................L."".([.....j.........N&.." +847 0x000038e2 control 12 -1 730823 0 -1 730823 0 ff ff ff ff c7 26 0b 00 00 00 00 00 .....&...... +848 0x000038ee control 12 22 721114 0 22 721114 0 16 00 00 00 da 00 0b 00 00 00 00 00 ............ +849 0x000038fa data 22 18 2072207 0 2072207 0 196609 0 12 00 00 00 8f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +850 0x00003910 control 12 -1 730824 0 -1 730824 0 ff ff ff ff c8 26 0b 00 00 00 00 00 .....&...... +851 0x0000391c control 12 26 721115 0 26 721115 0 1a 00 00 00 db 00 0b 00 00 00 00 00 ............ +852 0x00003928 data 26 22 2072209 0 2072209 0 196609 0 16 00 00 00 91 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +853 0x00003942 control 12 -1 730825 0 -1 730825 0 ff ff ff ff c9 26 0b 00 00 00 00 00 .....&...... +854 0x0000394e control 12 22 721116 0 22 721116 0 16 00 00 00 dc 00 0b 00 00 00 00 00 ............ +855 0x0000395a data 22 18 2072211 0 2072211 0 196609 0 12 00 00 00 93 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +856 0x00003970 control 12 -2 82963 82980 -2 82963 82980 fe ff ff ff 13 44 01 00 24 44 01 00 .....D..$D.. +857 0x0000397c control 12 -1 730826 0 -1 730826 0 ff ff ff ff ca 26 0b 00 00 00 00 00 .....&...... +858 0x00003988 control 12 22 721117 0 22 721117 0 16 00 00 00 dd 00 0b 00 00 00 00 00 ............ +859 0x00003994 data 22 18 2072213 0 2072213 0 196609 0 12 00 00 00 95 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +860 0x000039aa control 12 -1 730827 0 -1 730827 0 ff ff ff ff cb 26 0b 00 00 00 00 00 .....&...... +861 0x000039b6 control 12 -1 730828 0 -1 730828 0 ff ff ff ff cc 26 0b 00 00 00 00 00 .....&...... +862 0x000039c2 control 12 52 721118 0 52 721118 0 34 00 00 00 de 00 0b 00 00 00 00 00 4........... +863 0x000039ce data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6b 13 02 00 00 00 00 00 00 00 81 b7 26 e8 4d 01 00 00 "0...Dk.................L."".([.....k...........&." +864 0x00003a02 control 12 -1 730829 0 -1 730829 0 ff ff ff ff cd 26 0b 00 00 00 00 00 .....&...... +865 0x00003a0e control 12 26 721119 0 26 721119 0 1a 00 00 00 df 00 0b 00 00 00 00 00 ............ +866 0x00003a1a data 26 22 2072215 0 2072215 0 196609 0 16 00 00 00 97 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +867 0x00003a34 control 12 -1 730830 0 -1 730830 0 ff ff ff ff ce 26 0b 00 00 00 00 00 .....&...... +868 0x00003a40 control 12 22 721120 0 22 721120 0 16 00 00 00 e0 00 0b 00 00 00 00 00 ............ +869 0x00003a4c data 22 18 2072217 0 2072217 0 196609 0 12 00 00 00 99 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +870 0x00003a62 control 12 -1 730831 0 -1 730831 0 ff ff ff ff cf 26 0b 00 00 00 00 00 .....&...... +871 0x00003a6e control 12 22 721121 0 22 721121 0 16 00 00 00 e1 00 0b 00 00 00 00 00 ............ +872 0x00003a7a data 22 18 2072219 0 2072219 0 196609 0 12 00 00 00 9b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +873 0x00003a90 control 12 -1 730832 0 -1 730832 0 ff ff ff ff d0 26 0b 00 00 00 00 00 .....&...... +874 0x00003a9c control 12 22 721122 0 22 721122 0 16 00 00 00 e2 00 0b 00 00 00 00 00 ............ +875 0x00003aa8 data 22 18 2072221 0 2072221 0 196609 0 12 00 00 00 9d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +876 0x00003abe control 12 -1 730833 0 -1 730833 0 ff ff ff ff d1 26 0b 00 00 00 00 00 .....&...... +877 0x00003aca control 12 -1 730834 0 -1 730834 0 ff ff ff ff d2 26 0b 00 00 00 00 00 .....&...... +878 0x00003ad6 control 12 52 721123 0 52 721123 0 34 00 00 00 e3 00 0b 00 00 00 00 00 4........... +879 0x00003ae2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6c 13 02 00 00 00 00 00 00 00 11 2c 55 e8 4d 01 00 00 "0...Dk.................L."".([.....l..........,U." +880 0x00003b16 control 12 -1 730835 0 -1 730835 0 ff ff ff ff d3 26 0b 00 00 00 00 00 .....&...... +881 0x00003b22 control 12 26 721124 0 26 721124 0 1a 00 00 00 e4 00 0b 00 00 00 00 00 ............ +882 0x00003b2e data 26 22 2072223 0 2072223 0 196609 0 16 00 00 00 9f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +883 0x00003b48 control 12 -1 730836 0 -1 730836 0 ff ff ff ff d4 26 0b 00 00 00 00 00 .....&...... +884 0x00003b54 control 12 22 721125 0 22 721125 0 16 00 00 00 e5 00 0b 00 00 00 00 00 ............ +885 0x00003b60 data 22 18 2072225 0 2072225 0 196609 0 12 00 00 00 a1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +886 0x00003b76 control 12 -2 82964 82981 -2 82964 82981 fe ff ff ff 14 44 01 00 25 44 01 00 .....D..%D.. +887 0x00003b82 control 12 -1 730837 0 -1 730837 0 ff ff ff ff d5 26 0b 00 00 00 00 00 .....&...... +888 0x00003b8e control 12 22 721126 0 22 721126 0 16 00 00 00 e6 00 0b 00 00 00 00 00 ............ +889 0x00003b9a data 22 18 2072227 0 2072227 0 196609 0 12 00 00 00 a3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +890 0x00003bb0 control 12 -1 730838 0 -1 730838 0 ff ff ff ff d6 26 0b 00 00 00 00 00 .....&...... +891 0x00003bbc control 12 22 721127 0 22 721127 0 16 00 00 00 e7 00 0b 00 00 00 00 00 ............ +892 0x00003bc8 data 22 18 2072229 0 2072229 0 196609 0 12 00 00 00 a5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +893 0x00003bde control 12 -1 730839 0 -1 730839 0 ff ff ff ff d7 26 0b 00 00 00 00 00 .....&...... +894 0x00003bea control 12 -1 730840 0 -1 730840 0 ff ff ff ff d8 26 0b 00 00 00 00 00 .....&...... +895 0x00003bf6 control 12 52 721128 0 52 721128 0 34 00 00 00 e8 00 0b 00 00 00 00 00 4........... +896 0x00003c02 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6d 13 02 00 00 00 00 00 00 00 13 85 83 e8 4d 01 00 00 "0...Dk.................L."".([.....m............." +897 0x00003c36 control 12 -1 730841 0 -1 730841 0 ff ff ff ff d9 26 0b 00 00 00 00 00 .....&...... +898 0x00003c42 control 12 26 721129 0 26 721129 0 1a 00 00 00 e9 00 0b 00 00 00 00 00 ............ +899 0x00003c4e data 26 22 2072231 0 2072231 0 196609 0 16 00 00 00 a7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +900 0x00003c68 control 12 -1 730842 0 -1 730842 0 ff ff ff ff da 26 0b 00 00 00 00 00 .....&...... +901 0x00003c74 control 12 22 721130 0 22 721130 0 16 00 00 00 ea 00 0b 00 00 00 00 00 ............ +902 0x00003c80 data 22 18 2072233 0 2072233 0 196609 0 12 00 00 00 a9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +903 0x00003c96 control 12 -1 730843 0 -1 730843 0 ff ff ff ff db 26 0b 00 00 00 00 00 .....&...... +904 0x00003ca2 control 12 22 721131 0 22 721131 0 16 00 00 00 eb 00 0b 00 00 00 00 00 ............ +905 0x00003cae data 22 18 2072235 0 2072235 0 196609 0 12 00 00 00 ab 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +906 0x00003cc4 control 12 -2 82965 82982 -2 82965 82982 fe ff ff ff 15 44 01 00 26 44 01 00 .....D..&D.. +907 0x00003cd0 control 12 -1 730844 0 -1 730844 0 ff ff ff ff dc 26 0b 00 00 00 00 00 .....&...... +908 0x00003cdc control 12 22 721132 0 22 721132 0 16 00 00 00 ec 00 0b 00 00 00 00 00 ............ +909 0x00003ce8 data 22 18 2072237 0 2072237 0 196609 0 12 00 00 00 ad 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +910 0x00003cfe control 12 -1 730845 0 -1 730845 0 ff ff ff ff dd 26 0b 00 00 00 00 00 .....&...... +911 0x00003d0a control 12 52 721133 0 52 721133 0 34 00 00 00 ed 00 0b 00 00 00 00 00 4........... +912 0x00003d16 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6e 13 02 00 00 00 00 00 00 00 1d ea b1 e8 4d 01 00 00 "0...Dk.................L."".([.....n............." +913 0x00003d4a control 12 -1 730846 0 -1 730846 0 ff ff ff ff de 26 0b 00 00 00 00 00 .....&...... +914 0x00003d56 control 12 26 721134 0 26 721134 0 1a 00 00 00 ee 00 0b 00 00 00 00 00 ............ +915 0x00003d62 data 26 22 2072239 0 2072239 0 196609 0 16 00 00 00 af 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +916 0x00003d7c control 12 -1 730847 0 -1 730847 0 ff ff ff ff df 26 0b 00 00 00 00 00 .....&...... +917 0x00003d88 control 12 22 721135 0 22 721135 0 16 00 00 00 ef 00 0b 00 00 00 00 00 ............ +918 0x00003d94 data 22 18 2072241 0 2072241 0 196609 0 12 00 00 00 b1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +919 0x00003daa control 12 -1 730848 0 -1 730848 0 ff ff ff ff e0 26 0b 00 00 00 00 00 .....&...... +920 0x00003db6 control 12 22 721136 0 22 721136 0 16 00 00 00 f0 00 0b 00 00 00 00 00 ............ +921 0x00003dc2 data 22 18 2072243 0 2072243 0 196609 0 12 00 00 00 b3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +922 0x00003dd8 control 12 -1 730849 0 -1 730849 0 ff ff ff ff e1 26 0b 00 00 00 00 00 .....&...... +923 0x00003de4 control 12 22 721137 0 22 721137 0 16 00 00 00 f1 00 0b 00 00 00 00 00 ............ +924 0x00003df0 data 22 18 2072245 0 2072245 0 196609 0 12 00 00 00 b5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +925 0x00003e06 control 12 -1 730850 0 -1 730850 0 ff ff ff ff e2 26 0b 00 00 00 00 00 .....&...... +926 0x00003e12 control 12 -1 730851 0 -1 730851 0 ff ff ff ff e3 26 0b 00 00 00 00 00 .....&...... +927 0x00003e1e control 12 52 721138 0 52 721138 0 34 00 00 00 f2 00 0b 00 00 00 00 00 4........... +928 0x00003e2a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6f 13 02 00 00 00 00 00 00 00 47 7d e0 e8 4d 01 00 00 "0...Dk.................L."".([.....o.........G}.." +929 0x00003e5e control 12 -1 730852 0 -1 730852 0 ff ff ff ff e4 26 0b 00 00 00 00 00 .....&...... +930 0x00003e6a control 12 26 721139 0 26 721139 0 1a 00 00 00 f3 00 0b 00 00 00 00 00 ............ +931 0x00003e76 data 26 22 2072247 0 2072247 0 196609 0 16 00 00 00 b7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +932 0x00003e90 control 12 -1 730853 0 -1 730853 0 ff ff ff ff e5 26 0b 00 00 00 00 00 .....&...... +933 0x00003e9c control 12 22 721140 0 22 721140 0 16 00 00 00 f4 00 0b 00 00 00 00 00 ............ +934 0x00003ea8 data 22 18 2072249 0 2072249 0 196609 0 12 00 00 00 b9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +935 0x00003ebe control 12 -2 82966 82983 -2 82966 82983 fe ff ff ff 16 44 01 00 27 44 01 00 .....D..'D.. +936 0x00003eca control 12 -1 730854 0 -1 730854 0 ff ff ff ff e6 26 0b 00 00 00 00 00 .....&...... +937 0x00003ed6 control 12 22 721141 0 22 721141 0 16 00 00 00 f5 00 0b 00 00 00 00 00 ............ +938 0x00003ee2 data 22 18 2072251 0 2072251 0 196609 0 12 00 00 00 bb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +939 0x00003ef8 control 12 -1 730855 0 -1 730855 0 ff ff ff ff e7 26 0b 00 00 00 00 00 .....&...... +940 0x00003f04 control 12 22 721142 0 22 721142 0 16 00 00 00 f6 00 0b 00 00 00 00 00 ............ +941 0x00003f10 data 22 18 2072253 0 2072253 0 196609 0 12 00 00 00 bd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +942 0x00003f26 control 12 -1 730856 0 -1 730856 0 ff ff ff ff e8 26 0b 00 00 00 00 00 .....&...... +943 0x00003f32 control 12 52 721143 0 52 721143 0 34 00 00 00 f7 00 0b 00 00 00 00 00 4........... +944 0x00003f3e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 70 13 02 00 00 00 00 00 00 00 41 2d 0f e9 4d 01 00 00 "0...Dk.................L."".([.....p.........A-.." +945 0x00003f72 control 12 -1 730857 0 -1 730857 0 ff ff ff ff e9 26 0b 00 00 00 00 00 .....&...... +946 0x00003f7e control 12 26 721144 0 26 721144 0 1a 00 00 00 f8 00 0b 00 00 00 00 00 ............ +947 0x00003f8a data 26 22 2072255 0 2072255 0 196609 0 16 00 00 00 bf 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +948 0x00003fa4 control 12 -1 730858 0 -1 730858 0 ff ff ff ff ea 26 0b 00 00 00 00 00 .....&...... +949 0x00003fb0 control 12 22 721145 0 22 721145 0 16 00 00 00 f9 00 0b 00 00 00 00 00 ............ +950 0x00003fbc data 22 18 2072257 0 2072257 0 196609 0 12 00 00 00 c1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +951 0x00003fd2 control 12 -1 730859 0 -1 730859 0 ff ff ff ff eb 26 0b 00 00 00 00 00 .....&...... +952 0x00003fde control 12 22 721146 0 22 721146 0 16 00 00 00 fa 00 0b 00 00 00 00 00 ............ +953 0x00003fea data 22 18 2072259 0 2072259 0 196609 0 12 00 00 00 c3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +954 0x00004000 control 12 -1 730860 0 -1 730860 0 ff ff ff ff ec 26 0b 00 00 00 00 00 .....&...... +955 0x0000400c control 12 22 721147 0 22 721147 0 16 00 00 00 fb 00 0b 00 00 00 00 00 ............ +956 0x00004018 data 22 18 2072261 0 2072261 0 196609 0 12 00 00 00 c5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +957 0x0000402e control 12 -2 82967 82984 -2 82967 82984 fe ff ff ff 17 44 01 00 28 44 01 00 .....D..(D.. +958 0x0000403a control 12 -1 730861 0 -1 730861 0 ff ff ff ff ed 26 0b 00 00 00 00 00 .....&...... +959 0x00004046 control 12 -1 730862 0 -1 730862 0 ff ff ff ff ee 26 0b 00 00 00 00 00 .....&...... +960 0x00004052 control 12 52 721148 0 52 721148 0 34 00 00 00 fc 00 0b 00 00 00 00 00 4........... +961 0x0000405e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 71 13 02 00 00 00 00 00 00 00 f0 e6 3d e9 4d 01 00 00 "0...Dk.................L."".([.....q...........=." +962 0x00004092 control 12 -1 730863 0 -1 730863 0 ff ff ff ff ef 26 0b 00 00 00 00 00 .....&...... +963 0x0000409e control 12 26 721149 0 26 721149 0 1a 00 00 00 fd 00 0b 00 00 00 00 00 ............ +964 0x000040aa data 26 22 2072263 0 2072263 0 196609 0 16 00 00 00 c7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +965 0x000040c4 control 12 -1 730864 0 -1 730864 0 ff ff ff ff f0 26 0b 00 00 00 00 00 .....&...... +966 0x000040d0 control 12 22 721150 0 22 721150 0 16 00 00 00 fe 00 0b 00 00 00 00 00 ............ +967 0x000040dc data 22 18 2072265 0 2072265 0 196609 0 12 00 00 00 c9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +968 0x000040f2 control 12 -1 730865 0 -1 730865 0 ff ff ff ff f1 26 0b 00 00 00 00 00 .....&...... +969 0x000040fe control 12 22 721151 0 22 721151 0 16 00 00 00 ff 00 0b 00 00 00 00 00 ............ +970 0x0000410a data 22 18 2072267 0 2072267 0 196609 0 12 00 00 00 cb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +971 0x00004120 control 12 -1 730866 0 -1 730866 0 ff ff ff ff f2 26 0b 00 00 00 00 00 .....&...... +972 0x0000412c control 12 22 721152 0 22 721152 0 16 00 00 00 00 01 0b 00 00 00 00 00 ............ +973 0x00004138 data 22 18 2072269 0 2072269 0 196609 0 12 00 00 00 cd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +974 0x0000414e control 12 -1 730867 0 -1 730867 0 ff ff ff ff f3 26 0b 00 00 00 00 00 .....&...... +975 0x0000415a control 12 -1 730868 0 -1 730868 0 ff ff ff ff f4 26 0b 00 00 00 00 00 .....&...... +976 0x00004166 control 12 52 721153 0 52 721153 0 34 00 00 00 01 01 0b 00 00 00 00 00 4........... +977 0x00004172 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 72 13 02 00 00 00 00 00 00 00 7c 86 6c e9 4d 01 00 00 "0...Dk.................L."".([.....r.........|.l." +978 0x000041a6 control 12 -1 730869 0 -1 730869 0 ff ff ff ff f5 26 0b 00 00 00 00 00 .....&...... +979 0x000041b2 control 12 26 721154 0 26 721154 0 1a 00 00 00 02 01 0b 00 00 00 00 00 ............ +980 0x000041be data 26 22 2072271 0 2072271 0 196609 0 16 00 00 00 cf 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +981 0x000041d8 control 12 -1 730870 0 -1 730870 0 ff ff ff ff f6 26 0b 00 00 00 00 00 .....&...... +982 0x000041e4 control 12 22 721155 0 22 721155 0 16 00 00 00 03 01 0b 00 00 00 00 00 ............ +983 0x000041f0 data 22 18 2072273 0 2072273 0 196609 0 12 00 00 00 d1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +984 0x00004206 control 12 -1 730871 0 -1 730871 0 ff ff ff ff f7 26 0b 00 00 00 00 00 .....&...... +985 0x00004212 control 12 22 721156 0 22 721156 0 16 00 00 00 04 01 0b 00 00 00 00 00 ............ +986 0x0000421e data 22 18 2072275 0 2072275 0 196609 0 12 00 00 00 d3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +987 0x00004234 control 12 -2 82968 82985 -2 82968 82985 fe ff ff ff 18 44 01 00 29 44 01 00 .....D..)D.. +988 0x00004240 control 12 -1 730872 0 -1 730872 0 ff ff ff ff f8 26 0b 00 00 00 00 00 .....&...... +989 0x0000424c control 12 22 721157 0 22 721157 0 16 00 00 00 05 01 0b 00 00 00 00 00 ............ +990 0x00004258 data 22 18 2072277 0 2072277 0 196609 0 12 00 00 00 d5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +991 0x0000426e control 12 -1 730873 0 -1 730873 0 ff ff ff ff f9 26 0b 00 00 00 00 00 .....&...... +992 0x0000427a control 12 -1 730874 0 -1 730874 0 ff ff ff ff fa 26 0b 00 00 00 00 00 .....&...... +993 0x00004286 control 12 52 721158 0 52 721158 0 34 00 00 00 06 01 0b 00 00 00 00 00 4........... +994 0x00004292 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 73 13 02 00 00 00 00 00 00 00 04 34 9b e9 4d 01 00 00 "0...Dk.................L."".([.....s..........4.." +995 0x000042c6 control 12 -1 730875 0 -1 730875 0 ff ff ff ff fb 26 0b 00 00 00 00 00 .....&...... +996 0x000042d2 control 12 26 721159 0 26 721159 0 1a 00 00 00 07 01 0b 00 00 00 00 00 ............ +997 0x000042de data 26 22 2072279 0 2072279 0 196609 0 16 00 00 00 d7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +998 0x000042f8 control 12 -1 730876 0 -1 730876 0 ff ff ff ff fc 26 0b 00 00 00 00 00 .....&...... +999 0x00004304 control 12 22 721160 0 22 721160 0 16 00 00 00 08 01 0b 00 00 00 00 00 ............ +1000 0x00004310 data 22 18 2072281 0 2072281 0 196609 0 12 00 00 00 d9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1001 0x00004326 control 12 -1 730877 0 -1 730877 0 ff ff ff ff fd 26 0b 00 00 00 00 00 .....&...... +1002 0x00004332 control 12 22 721161 0 22 721161 0 16 00 00 00 09 01 0b 00 00 00 00 00 ............ +1003 0x0000433e data 22 18 2072283 0 2072283 0 196609 0 12 00 00 00 db 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1004 0x00004354 control 12 -1 730878 0 -1 730878 0 ff ff ff ff fe 26 0b 00 00 00 00 00 .....&...... +1005 0x00004360 control 12 22 721162 0 22 721162 0 16 00 00 00 0a 01 0b 00 00 00 00 00 ............ +1006 0x0000436c data 22 18 2072285 0 2072285 0 196609 0 12 00 00 00 dd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1007 0x00004382 control 12 -1 730879 0 -1 730879 0 ff ff ff ff ff 26 0b 00 00 00 00 00 .....&...... +1008 0x0000438e control 12 -1 730880 0 -1 730880 0 ff ff ff ff 00 27 0b 00 00 00 00 00 .....'...... +1009 0x0000439a control 12 52 721163 0 52 721163 0 34 00 00 00 0b 01 0b 00 00 00 00 00 4........... +1010 0x000043a6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 74 13 02 00 00 00 00 00 00 00 b5 b9 c9 e9 4d 01 00 00 "0...Dk.................L."".([.....t............." +1011 0x000043da control 12 -1 730881 0 -1 730881 0 ff ff ff ff 01 27 0b 00 00 00 00 00 .....'...... +1012 0x000043e6 control 12 26 721164 0 26 721164 0 1a 00 00 00 0c 01 0b 00 00 00 00 00 ............ +1013 0x000043f2 data 26 22 2072287 0 2072287 0 196609 0 16 00 00 00 df 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1014 0x0000440c control 12 -1 730882 0 -1 730882 0 ff ff ff ff 02 27 0b 00 00 00 00 00 .....'...... +1015 0x00004418 control 12 22 721165 0 22 721165 0 16 00 00 00 0d 01 0b 00 00 00 00 00 ............ +1016 0x00004424 data 22 18 2072289 0 2072289 0 196609 0 12 00 00 00 e1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1017 0x0000443a control 12 -2 82969 82986 -2 82969 82986 fe ff ff ff 19 44 01 00 2a 44 01 00 .....D..*D.. +1018 0x00004446 control 12 -1 730883 0 -1 730883 0 ff ff ff ff 03 27 0b 00 00 00 00 00 .....'...... +1019 0x00004452 control 12 22 721166 0 22 721166 0 16 00 00 00 0e 01 0b 00 00 00 00 00 ............ +1020 0x0000445e data 22 18 2072291 0 2072291 0 196609 0 12 00 00 00 e3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1021 0x00004474 control 12 -1 730884 0 -1 730884 0 ff ff ff ff 04 27 0b 00 00 00 00 00 .....'...... +1022 0x00004480 control 12 22 721167 0 22 721167 0 16 00 00 00 0f 01 0b 00 00 00 00 00 ............ +1023 0x0000448c data 22 18 2072293 0 2072293 0 196609 0 12 00 00 00 e5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1024 0x000044a2 control 12 -1 730885 0 -1 730885 0 ff ff ff ff 05 27 0b 00 00 00 00 00 .....'...... +1025 0x000044ae control 12 -1 730886 0 -1 730886 0 ff ff ff ff 06 27 0b 00 00 00 00 00 .....'...... +1026 0x000044ba control 12 52 721168 0 52 721168 0 34 00 00 00 10 01 0b 00 00 00 00 00 4........... +1027 0x000044c6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 75 13 02 00 00 00 00 00 00 00 cb 57 f8 e9 4d 01 00 00 "0...Dk.................L."".([.....u..........W.." +1028 0x000044fa control 12 -1 730887 0 -1 730887 0 ff ff ff ff 07 27 0b 00 00 00 00 00 .....'...... +1029 0x00004506 control 12 26 721169 0 26 721169 0 1a 00 00 00 11 01 0b 00 00 00 00 00 ............ +1030 0x00004512 data 26 22 2072295 0 2072295 0 196609 0 16 00 00 00 e7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1031 0x0000452c control 12 -1 730888 0 -1 730888 0 ff ff ff ff 08 27 0b 00 00 00 00 00 .....'...... +1032 0x00004538 control 12 22 721170 0 22 721170 0 16 00 00 00 12 01 0b 00 00 00 00 00 ............ +1033 0x00004544 data 22 18 2072297 0 2072297 0 196609 0 12 00 00 00 e9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1034 0x0000455a control 12 -1 730889 0 -1 730889 0 ff ff ff ff 09 27 0b 00 00 00 00 00 .....'...... +1035 0x00004566 control 12 22 721171 0 22 721171 0 16 00 00 00 13 01 0b 00 00 00 00 00 ............ +1036 0x00004572 data 22 18 2072299 0 2072299 0 196609 0 12 00 00 00 eb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1037 0x00004588 control 12 -1 730890 0 -1 730890 0 ff ff ff ff 0a 27 0b 00 00 00 00 00 .....'...... +1038 0x00004594 control 12 22 721172 0 22 721172 0 16 00 00 00 14 01 0b 00 00 00 00 00 ............ +1039 0x000045a0 data 22 18 2072301 0 2072301 0 196609 0 12 00 00 00 ed 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1040 0x000045b6 control 12 -2 82970 82987 -2 82970 82987 fe ff ff ff 1a 44 01 00 2b 44 01 00 .....D..+D.. +1041 0x000045c2 control 12 -1 730891 0 -1 730891 0 ff ff ff ff 0b 27 0b 00 00 00 00 00 .....'...... +1042 0x000045ce control 12 -1 730892 0 -1 730892 0 ff ff ff ff 0c 27 0b 00 00 00 00 00 .....'...... +1043 0x000045da control 12 52 721173 0 52 721173 0 34 00 00 00 15 01 0b 00 00 00 00 00 4........... +1044 0x000045e6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 76 13 02 00 00 00 00 00 00 00 61 b8 26 ea 4d 01 00 00 "0...Dk.................L."".([.....v.........a.&." +1045 0x0000461a control 12 -1 730893 0 -1 730893 0 ff ff ff ff 0d 27 0b 00 00 00 00 00 .....'...... +1046 0x00004626 control 12 26 721174 0 26 721174 0 1a 00 00 00 16 01 0b 00 00 00 00 00 ............ +1047 0x00004632 data 26 22 2072303 0 2072303 0 196609 0 16 00 00 00 ef 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1048 0x0000464c control 12 -1 730894 0 -1 730894 0 ff ff ff ff 0e 27 0b 00 00 00 00 00 .....'...... +1049 0x00004658 control 12 22 721175 0 22 721175 0 16 00 00 00 17 01 0b 00 00 00 00 00 ............ +1050 0x00004664 data 22 18 2072305 0 2072305 0 196609 0 12 00 00 00 f1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1051 0x0000467a control 12 -1 730895 0 -1 730895 0 ff ff ff ff 0f 27 0b 00 00 00 00 00 .....'...... +1052 0x00004686 control 12 22 721176 0 22 721176 0 16 00 00 00 18 01 0b 00 00 00 00 00 ............ +1053 0x00004692 data 22 18 2072307 0 2072307 0 196609 0 12 00 00 00 f3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1054 0x000046a8 control 12 -1 730896 0 -1 730896 0 ff ff ff ff 10 27 0b 00 00 00 00 00 .....'...... +1055 0x000046b4 control 12 22 721177 0 22 721177 0 16 00 00 00 19 01 0b 00 00 00 00 00 ............ +1056 0x000046c0 data 22 18 2072309 0 2072309 0 196609 0 12 00 00 00 f5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1057 0x000046d6 control 12 -1 730897 0 -1 730897 0 ff ff ff ff 11 27 0b 00 00 00 00 00 .....'...... +1058 0x000046e2 control 12 -1 730898 0 -1 730898 0 ff ff ff ff 12 27 0b 00 00 00 00 00 .....'...... +1059 0x000046ee control 12 52 721178 0 52 721178 0 34 00 00 00 1a 01 0b 00 00 00 00 00 4........... +1060 0x000046fa data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 77 13 02 00 00 00 00 00 00 00 f0 41 55 ea 4d 01 00 00 "0...Dk.................L."".([.....w..........AU." +1061 0x0000472e control 12 -1 730899 0 -1 730899 0 ff ff ff ff 13 27 0b 00 00 00 00 00 .....'...... +1062 0x0000473a control 12 26 721179 0 26 721179 0 1a 00 00 00 1b 01 0b 00 00 00 00 00 ............ +1063 0x00004746 data 26 22 2072311 0 2072311 0 196609 0 16 00 00 00 f7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1064 0x00004760 control 12 -1 730900 0 -1 730900 0 ff ff ff ff 14 27 0b 00 00 00 00 00 .....'...... +1065 0x0000476c control 12 22 721180 0 22 721180 0 16 00 00 00 1c 01 0b 00 00 00 00 00 ............ +1066 0x00004778 data 22 18 2072313 0 2072313 0 196609 0 12 00 00 00 f9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1067 0x0000478e control 12 -2 82971 82988 -2 82971 82988 fe ff ff ff 1b 44 01 00 2c 44 01 00 .....D..,D.. +1068 0x0000479a control 12 -1 730901 0 -1 730901 0 ff ff ff ff 15 27 0b 00 00 00 00 00 .....'...... +1069 0x000047a6 control 12 22 721181 0 22 721181 0 16 00 00 00 1d 01 0b 00 00 00 00 00 ............ +1070 0x000047b2 data 22 18 2072315 0 2072315 0 196609 0 12 00 00 00 fb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1071 0x000047c8 control 12 -1 730902 0 -1 730902 0 ff ff ff ff 16 27 0b 00 00 00 00 00 .....'...... +1072 0x000047d4 control 12 22 721182 0 22 721182 0 16 00 00 00 1e 01 0b 00 00 00 00 00 ............ +1073 0x000047e0 data 22 18 2072317 0 2072317 0 196609 0 12 00 00 00 fd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1074 0x000047f6 control 12 -1 730903 0 -1 730903 0 ff ff ff ff 17 27 0b 00 00 00 00 00 .....'...... +1075 0x00004802 control 12 52 721183 0 52 721183 0 34 00 00 00 1f 01 0b 00 00 00 00 00 4........... +1076 0x0000480e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 78 13 02 00 00 00 00 00 00 00 22 0f 84 ea 4d 01 00 00 "0...Dk.................L."".([.....x.........""..." +1077 0x00004842 control 12 -1 730904 0 -1 730904 0 ff ff ff ff 18 27 0b 00 00 00 00 00 .....'...... +1078 0x0000484e control 12 26 721184 0 26 721184 0 1a 00 00 00 20 01 0b 00 00 00 00 00 .... ....... +1079 0x0000485a data 26 22 2072319 0 2072319 0 196609 0 16 00 00 00 ff 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1080 0x00004874 control 12 -1 730905 0 -1 730905 0 ff ff ff ff 19 27 0b 00 00 00 00 00 .....'...... +1081 0x00004880 control 12 22 721185 0 22 721185 0 16 00 00 00 21 01 0b 00 00 00 00 00 ....!....... +1082 0x0000488c data 22 18 2072321 0 2072321 0 196609 0 12 00 00 00 01 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1083 0x000048a2 control 12 -1 730906 0 -1 730906 0 ff ff ff ff 1a 27 0b 00 00 00 00 00 .....'...... +1084 0x000048ae control 12 22 721186 0 22 721186 0 16 00 00 00 22 01 0b 00 00 00 00 00 "....""......." +1085 0x000048ba data 22 18 2072323 0 2072323 0 196609 0 12 00 00 00 03 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1086 0x000048d0 control 12 -1 730907 0 -1 730907 0 ff ff ff ff 1b 27 0b 00 00 00 00 00 .....'...... +1087 0x000048dc control 12 22 721187 0 22 721187 0 16 00 00 00 23 01 0b 00 00 00 00 00 ....#....... +1088 0x000048e8 data 22 18 2072325 0 2072325 0 196609 0 12 00 00 00 05 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1089 0x000048fe control 12 -1 730908 0 -1 730908 0 ff ff ff ff 1c 27 0b 00 00 00 00 00 .....'...... +1090 0x0000490a control 12 52 721188 0 52 721188 0 34 00 00 00 24 01 0b 00 00 00 00 00 4...$....... +1091 0x00004916 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 79 13 02 00 00 00 00 00 00 00 58 90 b2 ea 4d 01 00 00 "0...Dk.................L."".([.....y.........X..." +1092 0x0000494a control 12 -1 730909 0 -1 730909 0 ff ff ff ff 1d 27 0b 00 00 00 00 00 .....'...... +1093 0x00004956 control 12 26 721189 0 26 721189 0 1a 00 00 00 25 01 0b 00 00 00 00 00 ....%....... +1094 0x00004962 data 26 22 2072327 0 2072327 0 196609 0 16 00 00 00 07 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1095 0x0000497c control 12 -2 82972 82989 -2 82972 82989 fe ff ff ff 1c 44 01 00 2d 44 01 00 .....D..-D.. +1096 0x00004988 control 12 -1 730910 0 -1 730910 0 ff ff ff ff 1e 27 0b 00 00 00 00 00 .....'...... +1097 0x00004994 control 12 22 721190 0 22 721190 0 16 00 00 00 26 01 0b 00 00 00 00 00 ....&....... +1098 0x000049a0 data 22 18 2072329 0 2072329 0 196609 0 12 00 00 00 09 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1099 0x000049b6 control 12 -1 730911 0 -1 730911 0 ff ff ff ff 1f 27 0b 00 00 00 00 00 .....'...... +1100 0x000049c2 control 12 22 721191 0 22 721191 0 16 00 00 00 27 01 0b 00 00 00 00 00 ....'....... +1101 0x000049ce data 22 18 2072331 0 2072331 0 196609 0 12 00 00 00 0b 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1102 0x000049e4 control 12 -1 730912 0 -1 730912 0 ff ff ff ff 20 27 0b 00 00 00 00 00 .... '...... +1103 0x000049f0 control 12 22 721192 0 22 721192 0 16 00 00 00 28 01 0b 00 00 00 00 00 ....(....... +1104 0x000049fc data 22 18 2072333 0 2072333 0 196609 0 12 00 00 00 0d 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1105 0x00004a12 control 12 -1 730913 0 -1 730913 0 ff ff ff ff 21 27 0b 00 00 00 00 00 ....!'...... +1106 0x00004a1e control 12 -1 730914 0 -1 730914 0 ff ff ff ff 22 27 0b 00 00 00 00 00 "....""'......" +1107 0x00004a2a control 12 52 721193 0 52 721193 0 34 00 00 00 29 01 0b 00 00 00 00 00 4...)....... +1108 0x00004a36 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7a 13 02 00 00 00 00 00 00 00 6d 3b e1 ea 4d 01 00 00 "0...Dk.................L."".([.....z.........m;.." +1109 0x00004a6a control 12 -1 730915 0 -1 730915 0 ff ff ff ff 23 27 0b 00 00 00 00 00 ....#'...... +1110 0x00004a76 control 12 26 721194 0 26 721194 0 1a 00 00 00 2a 01 0b 00 00 00 00 00 ....*....... +1111 0x00004a82 data 26 22 2072335 0 2072335 0 196609 0 16 00 00 00 0f 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1112 0x00004a9c control 12 -1 730916 0 -1 730916 0 ff ff ff ff 24 27 0b 00 00 00 00 00 ....$'...... +1113 0x00004aa8 control 12 22 721195 0 22 721195 0 16 00 00 00 2b 01 0b 00 00 00 00 00 ....+....... +1114 0x00004ab4 data 22 18 2072337 0 2072337 0 196609 0 12 00 00 00 11 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1115 0x00004aca control 12 -1 730917 0 -1 730917 0 ff ff ff ff 25 27 0b 00 00 00 00 00 ....%'...... +1116 0x00004ad6 control 12 22 721196 0 22 721196 0 16 00 00 00 2c 01 0b 00 00 00 00 00 ....,....... +1117 0x00004ae2 data 22 18 2072339 0 2072339 0 196609 0 12 00 00 00 13 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1118 0x00004af8 control 12 -2 82973 82990 -2 82973 82990 fe ff ff ff 1d 44 01 00 2e 44 01 00 .....D...D.. +1119 0x00004b04 control 12 -1 730918 0 -1 730918 0 ff ff ff ff 26 27 0b 00 00 00 00 00 ....&'...... +1120 0x00004b10 control 12 22 721197 0 22 721197 0 16 00 00 00 2d 01 0b 00 00 00 00 00 ....-....... +1121 0x00004b1c data 22 18 2072341 0 2072341 0 196609 0 12 00 00 00 15 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1122 0x00004b32 control 12 -1 730919 0 -1 730919 0 ff ff ff ff 27 27 0b 00 00 00 00 00 ....''...... +1123 0x00004b3e control 12 -1 730920 0 -1 730920 0 ff ff ff ff 28 27 0b 00 00 00 00 00 ....('...... +1124 0x00004b4a control 12 52 721198 0 52 721198 0 34 00 00 00 2e 01 0b 00 00 00 00 00 4........... +1125 0x00004b56 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7b 13 02 00 00 00 00 00 00 00 30 b7 0f eb 4d 01 00 00 "0...Dk.................L."".([.....{.........0..." +1126 0x00004b8a control 12 -1 730921 0 -1 730921 0 ff ff ff ff 29 27 0b 00 00 00 00 00 ....)'...... +1127 0x00004b96 control 12 26 721199 0 26 721199 0 1a 00 00 00 2f 01 0b 00 00 00 00 00 ..../....... +1128 0x00004ba2 data 26 22 2072343 0 2072343 0 196609 0 16 00 00 00 17 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1129 0x00004bbc control 12 -1 730922 0 -1 730922 0 ff ff ff ff 2a 27 0b 00 00 00 00 00 ....*'...... +1130 0x00004bc8 control 12 22 721200 0 22 721200 0 16 00 00 00 30 01 0b 00 00 00 00 00 ....0....... +1131 0x00004bd4 data 22 18 2072345 0 2072345 0 196609 0 12 00 00 00 19 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1132 0x00004bea control 12 -1 730923 0 -1 730923 0 ff ff ff ff 2b 27 0b 00 00 00 00 00 ....+'...... +1133 0x00004bf6 control 12 22 721201 0 22 721201 0 16 00 00 00 31 01 0b 00 00 00 00 00 ....1....... +1134 0x00004c02 data 22 18 2072347 0 2072347 0 196609 0 12 00 00 00 1b 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1135 0x00004c18 control 12 -1 730924 0 -1 730924 0 ff ff ff ff 2c 27 0b 00 00 00 00 00 ....,'...... +1136 0x00004c24 control 12 22 721202 0 22 721202 0 16 00 00 00 32 01 0b 00 00 00 00 00 ....2....... +1137 0x00004c30 data 22 18 2072349 0 2072349 0 196609 0 12 00 00 00 1d 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +1138 0x00004c46 control 12 -1 730925 0 -1 730925 0 ff ff ff ff 2d 27 0b 00 00 00 00 00 ....-'...... +1139 0x00004c52 control 12 52 721203 0 52 721203 0 34 00 00 00 33 01 0b 00 00 00 00 00 4...3....... +1140 0x00004c5e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7c 13 02 00 00 00 00 00 00 00 85 28 3e eb 4d 01 00 00 "0...Dk.................L."".([.....|..........(>." +1141 0x00004c92 control 12 -1 730926 0 -1 730926 0 ff ff ff ff 2e 27 0b 00 00 00 00 00 .....'...... +1142 0x00004c9e control 12 26 721204 0 26 721204 0 1a 00 00 00 34 01 0b 00 00 00 00 00 ....4....... +1143 0x00004caa data 26 22 2072351 0 2072351 0 196609 0 16 00 00 00 1f 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +1144 0x00004cc4 control 12 -1 730927 0 -1 730927 0 ff ff ff ff 2f 27 0b 00 00 00 00 00 ..../'...... +1145 0x00004cd0 control 12 22 721205 0 22 721205 0 16 00 00 00 35 01 0b 00 00 00 00 00 ....5....... +1146 0x00004cdc data 22 18 2072353 0 2072353 0 196609 0 12 00 00 00 21 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +1147 0x00004cf2 control 12 -2 82974 82991 -2 82974 82991 fe ff ff ff 1e 44 01 00 2f 44 01 00 .....D../D.. +1148 0x00004cfe control 12 -1 730928 0 -1 730928 0 ff ff ff ff 30 27 0b 00 00 00 00 00 ....0'...... +1149 0x00004d0a control 12 22 721206 0 22 721206 0 16 00 00 00 36 01 0b 00 00 00 00 00 ....6....... +1150 0x00004d16 data 22 18 2072355 0 2072355 0 196609 0 12 00 00 00 23 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +1151 0x00004d2c control 12 -1 730929 0 -1 730929 0 ff ff ff ff 31 27 0b 00 00 00 00 00 ....1'...... +1152 0x00004d38 control 12 22 721207 0 22 721207 0 16 00 00 00 37 01 0b 00 00 00 00 00 ....7....... +1153 0x00004d44 data 22 18 2072357 0 2072357 0 196609 0 12 00 00 00 25 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +1154 0x00004d5a control 12 -1 730930 0 -1 730930 0 ff ff ff ff 32 27 0b 00 00 00 00 00 ....2'...... +1155 0x00004d66 control 12 -1 730931 0 -1 730931 0 ff ff ff ff 33 27 0b 00 00 00 00 00 ....3'...... +1156 0x00004d72 control 12 52 721208 0 52 721208 0 34 00 00 00 38 01 0b 00 00 00 00 00 4...8....... +1157 0x00004d7e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7d 13 02 00 00 00 00 00 00 00 18 d1 6c eb 4d 01 00 00 "0...Dk.................L."".([.....}...........l." +1158 0x00004db2 control 12 -1 730932 0 -1 730932 0 ff ff ff ff 34 27 0b 00 00 00 00 00 ....4'...... +1159 0x00004dbe control 12 26 721209 0 26 721209 0 1a 00 00 00 39 01 0b 00 00 00 00 00 ....9....... +1160 0x00004dca data 26 22 2072359 0 2072359 0 196609 0 16 00 00 00 27 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....'..................... +1161 0x00004de4 control 12 -1 730933 0 -1 730933 0 ff ff ff ff 35 27 0b 00 00 00 00 00 ....5'...... +1162 0x00004df0 control 12 22 721210 0 22 721210 0 16 00 00 00 3a 01 0b 00 00 00 00 00 ....:....... +1163 0x00004dfc data 22 18 2072361 0 2072361 0 196609 0 12 00 00 00 29 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. diff --git a/captures/020-loopback-write-test-int-102/nmx-conversations.tsv b/captures/020-loopback-write-test-int-102/nmx-conversations.tsv new file mode 100644 index 0000000..5c21583 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/nmx-conversations.tsv @@ -0,0 +1,7 @@ +capture selected_a selected_b payload_packets payload_bytes +captures\020-loopback-write-test-int-102\loopback.pcapng ::1:49704 ::1:59181 400 32726 + +conversation_a conversation_b payload_packets payload_bytes +::1:49704 ::1:59181 400 32726 +::1:49704 ::1:49768 96 7398 +::1:49704 ::1:49829 2 270 diff --git a/captures/020-loopback-write-test-int-102/nmx-payload-packets.tsv b/captures/020-loopback-write-test-int-102/nmx-payload-packets.tsv new file mode 100644 index 0000000..5640be1 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/nmx-payload-packets.tsv @@ -0,0 +1,401 @@ +frame time_relative from_service src sport dst dport seq ack payload_len hex_prefix ascii_preview +604 0.000000000 0 ::1 59181 ::1 49704 46721832 2996014425 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +610 0.000518799 1 ::1 49704 ::1 59181 2996014425 46721948 84 05000c03100000005400000002000000d016d016bab900000600343937303400 ........T.................49704..........]...... +612 0.000726461 0 ::1 59181 ::1 49704 46721948 2996014509 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +614 0.000934124 1 ::1 49704 ::1 59181 2996014509 46721988 44 05000203100000002c00000002000000140000000000000000000000c079291d ........,....................y).x9cD.X.....A +616 0.001103878 0 ::1 59181 ::1 49704 46721988 2996014553 72 05000e03100000004800000003000000d016d016bab900000100000001000100 ........H.......................K....k.F.@.`..Q. +618 0.001258612 1 ::1 49704 ::1 59181 2996014553 46722060 56 05000f03100000003800000003000000d016d016bab900000000000001000000 ........8............................].......... +620 0.001520395 0 ::1 59181 ::1 49704 46722060 2996014609 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........y). +622 0.003622770 1 ::1 49704 ::1 59181 2996014609 46722156 28 05000203100000001c00000003000000040000000100000001000000 ............................ +624 0.003805161 0 ::1 59181 ::1 49704 46722156 2996014637 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........y). +626 0.003988504 1 ::1 49704 ::1 59181 2996014637 46722216 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +628 0.004252195 0 ::1 59181 ::1 49704 46722216 2996014729 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........y). +630 0.004440546 1 ::1 49704 ::1 59181 2996014729 46722336 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +632 0.004625559 0 ::1 59181 ::1 49704 46722336 2996014761 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........y). +634 0.004784822 1 ::1 49704 ::1 59181 2996014761 46722460 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +636 0.004947662 0 ::1 59181 ::1 49704 46722460 2996014793 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........y). +638 0.005071878 1 ::1 49704 ::1 59181 2996014793 46722578 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +640 0.005231380 0 ::1 59181 ::1 49704 46722578 2996014825 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........y). +642 0.005390644 1 ::1 49704 ::1 59181 2996014825 46722698 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +644 0.005548477 0 ::1 59181 ::1 49704 46722698 2996014857 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........y). +646 0.005775213 1 ::1 49704 ::1 59181 2996014857 46722828 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +648 0.005932093 0 ::1 59181 ::1 49704 46722828 2996014889 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........y). +650 0.006089211 1 ::1 49704 ::1 59181 2996014889 46722958 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +652 0.006242990 0 ::1 59181 ::1 49704 46722958 2996014921 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........y). +654 0.006406546 1 ::1 49704 ::1 59181 2996014921 46723100 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +656 0.006592274 0 ::1 59181 ::1 49704 46723100 2996014953 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........y). +658 0.006721973 1 ::1 49704 ::1 59181 2996014953 46723216 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +660 0.006876230 0 ::1 59181 ::1 49704 46723216 2996014985 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........y). +662 0.007035255 1 ::1 49704 ::1 59181 2996014985 46723346 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +667 0.007192135 0 ::1 59181 ::1 49704 46723346 2996015017 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........y). +670 0.007350445 1 ::1 49704 ::1 59181 2996015017 46723474 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +672 0.007504225 0 ::1 59181 ::1 49704 46723474 2996015049 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........y). +674 0.007741928 1 ::1 49704 ::1 59181 2996015049 46723600 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +676 0.008338928 0 ::1 59181 ::1 49704 46723600 2996015081 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........y). +678 0.008589983 1 ::1 49704 ::1 59181 2996015081 46723732 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +680 0.008839369 0 ::1 59181 ::1 49704 46723732 2996015113 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........y). +682 0.009009361 1 ::1 49704 ::1 59181 2996015113 46723884 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +704 0.109627247 0 ::1 59181 ::1 49704 46723884 2996015145 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +706 0.109970570 1 ::1 49704 ::1 59181 2996015145 46723924 44 05000203100000002c00000012000000140000000000000000000000e4eb0a01 ........,.......................>]YJ....^..v +708 0.110568762 0 ::1 59181 ::1 49704 46723924 2996015189 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K............ +710 0.112491131 1 ::1 49704 ::1 59181 2996015189 46724032 28 05000203100000001c00000013000000040000000100000001000000 ............................ +712 0.112717867 0 ::1 59181 ::1 49704 46724032 2996015217 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +714 0.112945795 1 ::1 49704 ::1 59181 2996015217 46724092 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +716 0.113244772 0 ::1 59181 ::1 49704 46724092 2996015309 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +718 0.113475561 1 ::1 49704 ::1 59181 2996015309 46724224 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +720 0.113653183 0 ::1 59181 ::1 49704 46724224 2996015341 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +722 0.113892317 1 ::1 49704 ::1 59181 2996015341 46724360 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +724 0.114079952 0 ::1 59181 ::1 49704 46724360 2996015373 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +726 0.114255905 1 ::1 49704 ::1 59181 2996015373 46724490 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +728 0.114423275 0 ::1 59181 ::1 49704 46724490 2996015405 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +730 0.114687681 1 ::1 49704 ::1 59181 2996015405 46724622 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +732 0.114851713 0 ::1 59181 ::1 49704 46724622 2996015437 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +734 0.115015268 1 ::1 49704 ::1 59181 2996015437 46724764 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +736 0.115221977 0 ::1 59181 ::1 49704 46724764 2996015469 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +738 0.115391254 1 ::1 49704 ::1 59181 2996015469 46724906 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +740 0.115590572 0 ::1 59181 ::1 49704 46724906 2996015501 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +742 0.115750313 1 ::1 49704 ::1 59181 2996015501 46725060 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +744 0.115926027 0 ::1 59181 ::1 49704 46725060 2996015533 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +746 0.116087675 1 ::1 49704 ::1 59181 2996015533 46725188 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +748 0.116252422 0 ::1 59181 ::1 49704 46725188 2996015565 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +750 0.116409302 1 ::1 49704 ::1 59181 2996015565 46725330 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +752 0.116594791 0 ::1 59181 ::1 49704 46725330 2996015597 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +754 0.116750956 1 ::1 49704 ::1 59181 2996015597 46725470 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +756 0.116917610 0 ::1 59181 ::1 49704 46725470 2996015629 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +758 0.117075920 1 ::1 49704 ::1 59181 2996015629 46725608 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +764 0.134464741 0 ::1 59181 ::1 49704 46725608 2996015661 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +766 0.134740114 1 ::1 49704 ::1 59181 2996015661 46725648 44 05000203100000002c00000020000000140000000000000000000000839f2b5a ........,... .................+ZLt.@..D.r... +768 0.134942055 0 ::1 59181 ::1 49704 46725648 2996015705 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K..........+Z +770 0.136565685 1 ::1 49704 ::1 59181 2996015705 46725752 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +772 0.136748075 0 ::1 59181 ::1 49704 46725752 2996015733 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K..........+Z +774 0.136971951 1 ::1 49704 ::1 59181 2996015733 46725812 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +776 0.137228012 0 ::1 59181 ::1 49704 46725812 2996015825 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K..........+Z +778 0.137611866 1 ::1 49704 ::1 59181 2996015825 46725940 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +780 0.137727022 0 ::1 59181 ::1 49704 46725940 2996015857 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K..........+Z +782 0.138081551 1 ::1 49704 ::1 59181 2996015857 46726072 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +784 0.138270855 0 ::1 59181 ::1 49704 46726072 2996015889 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K..........+Z +786 0.138505459 1 ::1 49704 ::1 59181 2996015889 46726198 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +788 0.138708591 0 ::1 59181 ::1 49704 46726198 2996015921 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K..........+Z +790 0.138937473 1 ::1 49704 ::1 59181 2996015921 46726326 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +792 0.139121532 0 ::1 59181 ::1 49704 46726326 2996015953 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K..........+Z +794 0.139354944 1 ::1 49704 ::1 59181 2996015953 46726464 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +796 0.139565468 0 ::1 59181 ::1 49704 46726464 2996015985 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K..........+Z +798 0.139795303 1 ::1 49704 ::1 59181 2996015985 46726602 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +800 0.139975309 0 ::1 59181 ::1 49704 46726602 2996016017 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K..........+Z +802 0.140205860 1 ::1 49704 ::1 59181 2996016017 46726752 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +804 0.140387058 0 ::1 59181 ::1 49704 46726752 2996016049 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K..........+Z +806 0.140696764 1 ::1 49704 ::1 59181 2996016049 46726876 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +808 0.140875101 0 ::1 59181 ::1 49704 46726876 2996016081 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K..........+Z +810 0.141094923 1 ::1 49704 ::1 59181 2996016081 46727014 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +812 0.141270638 0 ::1 59181 ::1 49704 46727014 2996016113 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K..........+Z +814 0.141495705 1 ::1 49704 ::1 59181 2996016113 46727150 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +816 0.141671896 0 ::1 59181 ::1 49704 46727150 2996016145 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K..........+Z +818 0.141900063 1 ::1 49704 ::1 59181 2996016145 46727284 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +820 0.142171621 0 ::1 59181 ::1 49704 46727284 2996016177 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........+Z +822 0.142407179 1 ::1 49704 ::1 59181 2996016177 46727424 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +824 0.142617702 0 ::1 59181 ::1 49704 46727424 2996016209 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K..........+Z +826 0.142854691 1 ::1 49704 ::1 59181 2996016209 46727570 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +868 0.248174667 0 ::1 59181 ::1 49704 46727570 2996016241 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +870 0.248469830 1 ::1 49704 ::1 59181 2996016241 46727610 44 05000203100000002c000000300000001400000000000000000000003d2f8ee4 ........,...0...............=/..:8.J....2=.. +872 0.248654604 0 ::1 59181 ::1 49704 46727610 2996016285 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........=/.. +874 0.250441313 1 ::1 49704 ::1 59181 2996016285 46727722 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +876 0.250593662 0 ::1 59181 ::1 49704 46727722 2996016313 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........=/.. +878 0.250776529 1 ::1 49704 ::1 59181 2996016313 46727782 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +880 0.251013517 0 ::1 59181 ::1 49704 46727782 2996016405 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........=/.. +882 0.251256704 1 ::1 49704 ::1 59181 2996016405 46727918 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +884 0.251440763 0 ::1 59181 ::1 49704 46727918 2996016437 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........=/.. +886 0.251770496 1 ::1 49704 ::1 59181 2996016437 46728058 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +888 0.251936674 0 ::1 59181 ::1 49704 46728058 2996016469 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........=/.. +890 0.252130985 1 ::1 49704 ::1 59181 2996016469 46728192 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +892 0.252283335 0 ::1 59181 ::1 49704 46728192 2996016501 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........=/.. +894 0.252550364 1 ::1 49704 ::1 59181 2996016501 46728328 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +896 0.252712727 0 ::1 59181 ::1 49704 46728328 2996016533 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........=/.. +898 0.253003597 1 ::1 49704 ::1 59181 2996016533 46728474 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +900 0.253158569 0 ::1 59181 ::1 49704 46728474 2996016565 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........=/.. +902 0.253364563 1 ::1 49704 ::1 59181 2996016565 46728620 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +904 0.253548622 0 ::1 59181 ::1 49704 46728620 2996016597 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........=/.. +906 0.253728628 1 ::1 49704 ::1 59181 2996016597 46728778 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +908 0.253877401 0 ::1 59181 ::1 49704 46728778 2996016629 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........=/.. +910 0.254051447 1 ::1 49704 ::1 59181 2996016629 46728910 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +912 0.254201174 0 ::1 59181 ::1 49704 46728910 2996016661 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........=/.. +914 0.254402637 1 ::1 49704 ::1 59181 2996016661 46729056 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +916 0.254557133 0 ::1 59181 ::1 49704 46729056 2996016693 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........=/.. +918 0.254729748 1 ::1 49704 ::1 59181 2996016693 46729200 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +920 0.254880428 0 ::1 59181 ::1 49704 46729200 2996016725 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........=/.. +922 0.255053043 1 ::1 49704 ::1 59181 2996016725 46729342 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +924 0.255248308 0 ::1 59181 ::1 49704 46729342 2996016757 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........=/.. +926 0.255472660 1 ::1 49704 ::1 59181 2996016757 46729490 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +928 0.255633116 0 ::1 59181 ::1 49704 46729490 2996016789 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........=/.. +930 0.255818844 1 ::1 49704 ::1 59181 2996016789 46729644 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +970 0.409813166 0 ::1 59181 ::1 49704 46729644 2996016821 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +972 0.410073996 1 ::1 49704 ::1 59181 2996016821 46729684 44 05000203100000002c00000040000000140000000000000000000000e96124c4 ........,...@................a$.j.GM.\s$:... +974 0.410259724 0 ::1 59181 ::1 49704 46729684 2996016865 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K.........a$. +976 0.412084103 1 ::1 49704 ::1 59181 2996016865 46729776 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +978 0.412265778 0 ::1 59181 ::1 49704 46729776 2996016893 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K.........a$. +980 0.412510872 1 ::1 49704 ::1 59181 2996016893 46729836 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +982 0.412749290 0 ::1 59181 ::1 49704 46729836 2996016985 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K.........a$. +984 0.412998438 1 ::1 49704 ::1 59181 2996016985 46729952 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +986 0.413155079 0 ::1 59181 ::1 49704 46729952 2996017017 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K.........a$. +988 0.413340092 1 ::1 49704 ::1 59181 2996017017 46730072 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +990 0.413496733 0 ::1 59181 ::1 49704 46730072 2996017049 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K.........a$. +992 0.413743973 1 ::1 49704 ::1 59181 2996017049 46730186 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +994 0.413908243 0 ::1 59181 ::1 49704 46730186 2996017081 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K.........a$. +996 0.414106846 1 ::1 49704 ::1 59181 2996017081 46730302 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +998 0.414263964 0 ::1 59181 ::1 49704 46730302 2996017113 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K.........a$. +1000 0.414489508 1 ::1 49704 ::1 59181 2996017113 46730428 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1002 0.414639235 0 ::1 59181 ::1 49704 46730428 2996017145 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K.........a$. +1004 0.414819717 1 ::1 49704 ::1 59181 2996017145 46730554 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1006 0.414971352 0 ::1 59181 ::1 49704 46730554 2996017177 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K.........a$. +1008 0.415149689 1 ::1 49704 ::1 59181 2996017177 46730692 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1010 0.415312767 0 ::1 59181 ::1 49704 46730692 2996017209 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K.........a$. +1012 0.415639639 1 ::1 49704 ::1 59181 2996017209 46730804 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1014 0.415833235 0 ::1 59181 ::1 49704 46730804 2996017241 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K.........a$. +1016 0.416032553 1 ::1 49704 ::1 59181 2996017241 46730930 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1018 0.416189432 0 ::1 59181 ::1 49704 46730930 2996017273 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K.........a$. +1020 0.416367769 1 ::1 49704 ::1 59181 2996017273 46731054 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1022 0.416538715 0 ::1 59181 ::1 49704 46731054 2996017305 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K.........a$. +1024 0.416743040 1 ::1 49704 ::1 59181 2996017305 46731176 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1026 0.416938543 0 ::1 59181 ::1 49704 46731176 2996017337 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K.........a$. +1028 0.417117834 1 ::1 49704 ::1 59181 2996017337 46731304 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1030 0.417276144 0 ::1 59181 ::1 49704 46731304 2996017369 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K.........a$. +1032 0.417490244 1 ::1 49704 ::1 59181 2996017369 46731438 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1034 0.417693853 0 ::1 59181 ::1 49704 46731438 2996017401 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K.........a$. +1036 0.418019056 1 ::1 49704 ::1 59181 2996017401 46731568 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1038 0.418227673 0 ::1 59181 ::1 49704 46731568 2996017433 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K.........a$. +1040 0.418484211 1 ::1 49704 ::1 59181 2996017433 46731696 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +4235 6.888025045 0 ::1 59181 ::1 49704 46731696 2996017465 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +4237 6.888343573 1 ::1 49704 ::1 59181 2996017465 46731736 44 05000203100000002c0000005200000014000000000000000000000000f06477 ........,...R.................dwK..C.}...... +4239 6.888527155 0 ::1 59181 ::1 49704 46731736 2996017509 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K..........dw +4241 6.890509129 1 ::1 49704 ::1 59181 2996017509 46731836 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +4242 6.890657663 0 ::1 59181 ::1 49704 46731836 2996017537 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K..........dw +4244 6.890875578 1 ::1 49704 ::1 59181 2996017537 46731896 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +4246 6.891103268 0 ::1 59181 ::1 49704 46731896 2996017629 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K..........dw +4248 6.891325235 1 ::1 49704 ::1 59181 2996017629 46732020 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +4250 6.891503572 0 ::1 59181 ::1 49704 46732020 2996017661 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K..........dw +4252 6.891777515 1 ::1 49704 ::1 59181 2996017661 46732148 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +4254 6.891946316 0 ::1 59181 ::1 49704 46732148 2996017693 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K..........dw +4256 6.892122984 1 ::1 49704 ::1 59181 2996017693 46732270 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +4258 6.892290115 0 ::1 59181 ::1 49704 46732270 2996017725 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K..........dw +4260 6.892457962 1 ::1 49704 ::1 59181 2996017725 46732394 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +4262 6.892673254 0 ::1 59181 ::1 49704 46732394 2996017757 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K..........dw +4264 6.892839432 1 ::1 49704 ::1 59181 2996017757 46732528 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +4266 6.893003941 0 ::1 59181 ::1 49704 46732528 2996017789 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K..........dw +4268 6.893170118 1 ::1 49704 ::1 59181 2996017789 46732662 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +4270 6.893332481 0 ::1 59181 ::1 49704 46732662 2996017821 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K..........dw +4272 6.893498659 1 ::1 49704 ::1 59181 2996017821 46732808 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +4274 6.893711090 0 ::1 59181 ::1 49704 46732808 2996017853 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K..........dw +4276 6.893877745 1 ::1 49704 ::1 59181 2996017853 46732928 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +4278 6.894040823 0 ::1 59181 ::1 49704 46732928 2996017885 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K..........dw +4280 6.894207954 1 ::1 49704 ::1 59181 2996017885 46733062 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +4282 6.894368887 0 ::1 59181 ::1 49704 46733062 2996017917 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K..........dw +4284 6.894533157 1 ::1 49704 ::1 59181 2996017917 46733194 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +4286 6.894744158 0 ::1 59181 ::1 49704 46733194 2996017949 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K..........dw +4288 6.894911289 1 ::1 49704 ::1 59181 2996017949 46733324 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +4290 6.895121098 0 ::1 59181 ::1 49704 46733324 2996017981 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K..........dw +4292 6.895290375 1 ::1 49704 ::1 59181 2996017981 46733468 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +4294 6.895462751 0 ::1 59181 ::1 49704 46733468 2996018013 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K..........dw +4296 6.895663500 1 ::1 49704 ::1 59181 2996018013 46733616 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +4298 6.895835161 0 ::1 59181 ::1 49704 46733616 2996018045 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K..........dw +4300 6.896003485 1 ::1 49704 ::1 59181 2996018045 46733762 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +4302 6.896242380 0 ::1 59181 ::1 49704 46733762 2996018077 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K..........dw +4304 6.896412373 1 ::1 49704 ::1 59181 2996018077 46733920 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +4342 6.972353220 0 ::1 59181 ::1 49704 46733920 2996018109 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +4344 6.972649574 1 ::1 49704 ::1 59181 2996018109 46733960 44 05000203100000002c00000064000000140000000000000000000000fc863851 ........,...d.................8Q...L.^.V.A|[ +4346 6.972784758 0 ::1 59181 ::1 49704 46733960 2996018153 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........8Q +4348 6.974741459 1 ::1 49704 ::1 59181 2996018153 46734044 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +4350 6.974924088 0 ::1 59181 ::1 49704 46734044 2996018181 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........8Q +4352 6.975110769 1 ::1 49704 ::1 59181 2996018181 46734104 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +4354 6.975388050 0 ::1 59181 ::1 49704 46734104 2996018273 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........8Q +4356 6.975658178 1 ::1 49704 ::1 59181 2996018273 46734212 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +4358 6.975831509 0 ::1 59181 ::1 49704 46734212 2996018305 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........8Q +4360 6.976003885 1 ::1 49704 ::1 59181 2996018305 46734324 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +4362 6.976166248 0 ::1 59181 ::1 49704 46734324 2996018337 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........8Q +4364 6.976329327 1 ::1 49704 ::1 59181 2996018337 46734430 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +4366 6.976503849 0 ::1 59181 ::1 49704 46734430 2996018369 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........8Q +4368 6.976759434 1 ::1 49704 ::1 59181 2996018369 46734538 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +4370 6.976914406 0 ::1 59181 ::1 49704 46734538 2996018401 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........8Q +4372 6.977135658 1 ::1 49704 ::1 59181 2996018401 46734656 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +4374 6.977318764 0 ::1 59181 ::1 49704 46734656 2996018433 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........8Q +4376 6.977490664 1 ::1 49704 ::1 59181 2996018433 46734774 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +4378 6.977700710 0 ::1 59181 ::1 49704 46734774 2996018465 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........8Q +4380 6.977861643 1 ::1 49704 ::1 59181 2996018465 46734904 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +4382 6.978017569 0 ::1 59181 ::1 49704 46734904 2996018497 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........8Q +4384 6.978175879 1 ::1 49704 ::1 59181 2996018497 46735008 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +4386 6.978329182 0 ::1 59181 ::1 49704 46735008 2996018529 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........8Q +4388 6.978486300 1 ::1 49704 ::1 59181 2996018529 46735126 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +4390 6.978668213 0 ::1 59181 ::1 49704 46735126 2996018561 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........8Q +4392 6.978837729 1 ::1 49704 ::1 59181 2996018561 46735242 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +4394 6.979043722 0 ::1 59181 ::1 49704 46735242 2996018593 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........8Q +4396 6.979225159 1 ::1 49704 ::1 59181 2996018593 46735356 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +4398 6.979769468 0 ::1 59181 ::1 49704 46735356 2996018625 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........8Q +4400 6.979928732 1 ::1 49704 ::1 59181 2996018625 46735484 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +4402 6.980154514 0 ::1 59181 ::1 49704 46735484 2996018657 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........8Q +4404 6.980321646 1 ::1 49704 ::1 59181 2996018657 46735604 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +4406 6.980532408 0 ::1 59181 ::1 49704 46735604 2996018689 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........8Q +4408 6.980763435 1 ::1 49704 ::1 59181 2996018689 46735724 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +4410 6.980957270 0 ::1 59181 ::1 49704 46735724 2996018721 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........8Q +4412 6.981121302 1 ::1 49704 ::1 59181 2996018721 46735846 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +4414 6.981315136 0 ::1 59181 ::1 49704 46735846 2996018753 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........8Q +4416 6.981477976 1 ::1 49704 ::1 59181 2996018753 46735980 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +4418 6.981781721 0 ::1 59181 ::1 49704 46735980 2996018785 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........8Q +4420 6.981945992 1 ::1 49704 ::1 59181 2996018785 46736112 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +4422 6.982142925 0 ::1 59181 ::1 49704 46736112 2996018817 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........8Q +4424 6.982305288 1 ::1 49704 ::1 59181 2996018817 46736242 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +4426 6.982503414 0 ::1 59181 ::1 49704 46736242 2996018849 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........8Q +4428 6.982756615 1 ::1 49704 ::1 59181 2996018849 46736380 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +4430 6.982959270 0 ::1 59181 ::1 49704 46736380 2996018881 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........8Q +4432 6.983120918 1 ::1 49704 ::1 59181 2996018881 46736524 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +4434 6.983337641 0 ::1 59181 ::1 49704 46736524 2996018913 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........8Q +4436 6.983499050 1 ::1 49704 ::1 59181 2996018913 46736668 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +4438 6.983754635 0 ::1 59181 ::1 49704 46736668 2996018945 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........8Q +4440 6.983925819 1 ::1 49704 ::1 59181 2996018945 46736784 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +4442 6.984121084 0 ::1 59181 ::1 49704 46736784 2996018977 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........8Q +4444 6.984284163 1 ::1 49704 ::1 59181 2996018977 46736914 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +4446 6.984475136 0 ::1 59181 ::1 49704 46736914 2996019009 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........8Q +4448 6.984687090 1 ::1 49704 ::1 59181 2996019009 46737052 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +4450 6.984878063 0 ::1 59181 ::1 49704 46737052 2996019041 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........8Q +4452 6.985042810 1 ::1 49704 ::1 59181 2996019041 46737182 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +4454 6.985236168 0 ::1 59181 ::1 49704 46737182 2996019073 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........8Q +4456 6.985396624 1 ::1 49704 ::1 59181 2996019073 46737304 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +4458 6.985586882 0 ::1 59181 ::1 49704 46737304 2996019105 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........8Q +4460 6.985798120 1 ::1 49704 ::1 59181 2996019105 46737426 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +4462 6.986017227 0 ::1 59181 ::1 49704 46737426 2996019137 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........8Q +4464 6.986187220 1 ::1 49704 ::1 59181 2996019137 46737560 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +4466 6.986399651 0 ::1 59181 ::1 49704 46737560 2996019169 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........8Q +4468 6.986563206 1 ::1 49704 ::1 59181 2996019169 46737688 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +4470 6.986805677 0 ::1 59181 ::1 49704 46737688 2996019201 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........8Q +4472 6.986967802 1 ::1 49704 ::1 59181 2996019201 46737812 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +4496 7.020574331 0 ::1 59181 ::1 49704 46737812 2996019233 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........8Q +4498 7.020890951 1 ::1 49704 ::1 59181 2996019233 46738328 28 05000203100000001c00000085000000040000000100000001000000 ............................ +4534 7.055602551 0 ::1 59181 ::1 49704 46738328 2996019261 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4536 7.055826187 1 ::1 49704 ::1 59181 2996019261 46738368 44 05000203100000002c000000860000001400000000000000000000003cd7b60e ........,...................<...y..C..ueW3E. +4538 7.056030035 0 ::1 59181 ::1 49704 46738368 2996019305 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........<... +4540 7.058031321 1 ::1 49704 ::1 59181 2996019305 46738480 28 05000203100000001c00000087000000040000000100000001000000 ............................ +4542 7.058225632 0 ::1 59181 ::1 49704 46738480 2996019333 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........<... +4544 7.058421612 1 ::1 49704 ::1 59181 2996019333 46738540 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4546 7.058688879 0 ::1 59181 ::1 49704 46738540 2996019425 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........<... +4548 7.058933258 1 ::1 49704 ::1 59181 2996019425 46738676 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +4550 7.059120655 0 ::1 59181 ::1 49704 46738676 2996019457 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........<... +4552 7.059313774 1 ::1 49704 ::1 59181 2996019457 46738816 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +4554 7.059487581 0 ::1 59181 ::1 49704 46738816 2996019489 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........<... +4556 7.059719324 1 ::1 49704 ::1 59181 2996019489 46738950 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +4558 7.059887886 0 ::1 59181 ::1 49704 46738950 2996019521 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........<... +4560 7.060142756 1 ::1 49704 ::1 59181 2996019521 46739086 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +4562 7.060342312 0 ::1 59181 ::1 49704 46739086 2996019553 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4564 7.060634613 1 ::1 49704 ::1 59181 2996019553 46739232 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +4566 7.060839415 0 ::1 59181 ::1 49704 46739232 2996019585 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4568 7.060985088 1 ::1 49704 ::1 59181 2996019585 46739378 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +4570 7.061168909 0 ::1 59181 ::1 49704 46739378 2996019617 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........<... +4572 7.061435461 1 ::1 49704 ::1 59181 2996019617 46739536 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +4574 7.061692715 0 ::1 59181 ::1 49704 46739536 2996019649 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........<... +4576 7.061884880 1 ::1 49704 ::1 59181 2996019649 46739668 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +4578 7.062047482 0 ::1 59181 ::1 49704 46739668 2996019681 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4580 7.062242031 1 ::1 49704 ::1 59181 2996019681 46739814 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +4582 7.062441587 0 ::1 59181 ::1 49704 46739814 2996019713 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........<... +4584 7.062677145 1 ::1 49704 ::1 59181 2996019713 46739958 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +4586 7.062864304 0 ::1 59181 ::1 49704 46739958 2996019745 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........<... +4588 7.063046694 1 ::1 49704 ::1 59181 2996019745 46740100 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +4590 7.063266993 0 ::1 59181 ::1 49704 46740100 2996019777 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........<... +4592 7.063482761 1 ::1 49704 ::1 59181 2996019777 46740260 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +4594 7.063683987 0 ::1 59181 ::1 49704 46740260 2996019809 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........<... +4596 7.063830137 1 ::1 49704 ::1 59181 2996019809 46740416 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +4598 7.064027548 0 ::1 59181 ::1 49704 46740416 2996019841 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........<... +4600 7.064728498 1 ::1 49704 ::1 59181 2996019841 46740570 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +4602 7.064948082 0 ::1 59181 ::1 49704 46740570 2996019873 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4604 7.065134048 1 ::1 49704 ::1 59181 2996019873 46740716 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +4606 7.065331221 0 ::1 59181 ::1 49704 46740716 2996019905 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........<... +4608 7.065567970 1 ::1 49704 ::1 59181 2996019905 46740870 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +4610 7.065738201 0 ::1 59181 ::1 49704 46740870 2996019937 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........<... +4612 7.065914869 1 ::1 49704 ::1 59181 2996019937 46741020 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +4614 7.066084862 0 ::1 59181 ::1 49704 46741020 2996019969 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........<... +4616 7.066259623 1 ::1 49704 ::1 59181 2996019969 46741172 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +4618 7.066428661 0 ::1 59181 ::1 49704 46741172 2996020001 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........<... +4620 7.066620588 1 ::1 49704 ::1 59181 2996020001 46741312 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +4622 7.066782475 0 ::1 59181 ::1 49704 46741312 2996020033 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........<... +4624 7.066952229 1 ::1 49704 ::1 59181 2996020033 46741460 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +4626 7.067118883 0 ::1 59181 ::1 49704 46741460 2996020065 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........<... +4628 7.067289829 1 ::1 49704 ::1 59181 2996020065 46741622 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +4630 7.067478180 0 ::1 59181 ::1 49704 46741622 2996020097 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........<... +4632 7.067646265 1 ::1 49704 ::1 59181 2996020097 46741794 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +4634 7.067810059 0 ::1 59181 ::1 49704 46741794 2996020129 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........<... +4636 7.067977190 1 ::1 49704 ::1 59181 2996020129 46741938 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +4642 7.075106144 0 ::1 59181 ::1 49704 46741938 2996020161 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4644 7.075270891 1 ::1 49704 ::1 59181 2996020161 46741978 44 05000203100000002c000000a0000000140000000000000000000000f5db86ed ........,.......................C..J...].$!. +4646 7.075445175 0 ::1 59181 ::1 49704 46741978 2996020205 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K............ +4648 7.077068806 1 ::1 49704 ::1 59181 2996020205 46742106 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +4650 7.077220678 0 ::1 59181 ::1 49704 46742106 2996020233 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +4652 7.077393055 1 ::1 49704 ::1 59181 2996020233 46742166 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4654 7.077644825 0 ::1 59181 ::1 49704 46742166 2996020325 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +4656 7.077838182 1 ::1 49704 ::1 59181 2996020325 46742318 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +4658 7.077985764 0 ::1 59181 ::1 49704 46742318 2996020357 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K............ +4660 7.078161478 1 ::1 49704 ::1 59181 2996020357 46742474 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +4662 7.078316927 0 ::1 59181 ::1 49704 46742474 2996020389 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K............ +4664 7.078487873 1 ::1 49704 ::1 59181 2996020389 46742624 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +4666 7.078636646 0 ::1 59181 ::1 49704 46742624 2996020421 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +4668 7.078809023 1 ::1 49704 ::1 59181 2996020421 46742776 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +4670 7.078984976 0 ::1 59181 ::1 49704 46742776 2996020453 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K............ +4672 7.079160213 1 ::1 49704 ::1 59181 2996020453 46742938 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +4674 7.079319000 0 ::1 59181 ::1 49704 46742938 2996020485 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K............ +4676 7.079527140 1 ::1 49704 ::1 59181 2996020485 46743100 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +4678 7.079659939 0 ::1 59181 ::1 49704 46743100 2996020517 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K............ +4680 7.079833984 1 ::1 49704 ::1 59181 2996020517 46743274 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +4682 7.080007315 0 ::1 59181 ::1 49704 46743274 2996020549 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K............ +4684 7.080188751 1 ::1 49704 ::1 59181 2996020549 46743422 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +4686 7.080349684 0 ::1 59181 ::1 49704 46743422 2996020581 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K............ +4688 7.080548763 1 ::1 49704 ::1 59181 2996020581 46743584 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +4690 7.080696106 0 ::1 59181 ::1 49704 46743584 2996020613 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K............ +4692 7.080870390 1 ::1 49704 ::1 59181 2996020613 46743744 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +4694 7.081035614 0 ::1 59181 ::1 49704 46743744 2996020645 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K............ +4696 7.081211090 1 ::1 49704 ::1 59181 2996020645 46743902 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +4698 7.081456423 0 ::1 59181 ::1 49704 46743902 2996020677 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K............ +4700 7.081684351 1 ::1 49704 ::1 59181 2996020677 46744072 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +4702 7.081850767 0 ::1 59181 ::1 49704 46744072 2996020709 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K............ +4704 7.082024336 1 ::1 49704 ::1 59181 2996020709 46744254 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +4710 7.087666273 0 ::1 59181 ::1 49704 46744254 2996020741 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4712 7.087905407 1 ::1 49704 ::1 59181 2996020741 46744294 44 05000203100000002c000000b00000001400000000000000000000005dcdff08 ........,...................].....ND.. .L... +4714 7.088087797 0 ::1 59181 ::1 49704 46744294 2996020785 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K........]... +4716 7.089692354 1 ::1 49704 ::1 59181 2996020785 46744390 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +4718 7.089869976 0 ::1 59181 ::1 49704 46744390 2996020813 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........]... +4720 7.090051651 1 ::1 49704 ::1 59181 2996020813 46744450 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4722 7.090294838 0 ::1 59181 ::1 49704 46744450 2996020905 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........]... +4724 7.090476274 1 ::1 49704 ::1 59181 2996020905 46744570 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +4726 7.090692282 0 ::1 59181 ::1 49704 46744570 2996020937 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........]... +4728 7.090863705 1 ::1 49704 ::1 59181 2996020937 46744694 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +4730 7.091024399 0 ::1 59181 ::1 49704 46744694 2996020969 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K........]... +4732 7.091194153 1 ::1 49704 ::1 59181 2996020969 46744812 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +4734 7.091354847 0 ::1 59181 ::1 49704 46744812 2996021001 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........]... +4736 7.091577530 1 ::1 49704 ::1 59181 2996021001 46744932 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +4738 7.091746569 0 ::1 59181 ::1 49704 46744932 2996021033 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4740 7.091921806 1 ::1 49704 ::1 59181 2996021033 46745062 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +4742 7.092110395 0 ::1 59181 ::1 49704 46745062 2996021065 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4744 7.092290878 1 ::1 49704 ::1 59181 2996021065 46745192 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +4746 7.092453241 0 ::1 59181 ::1 49704 46745192 2996021097 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........]... +4748 7.092671156 1 ::1 49704 ::1 59181 2996021097 46745334 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +4750 7.092825890 0 ::1 59181 ::1 49704 46745334 2996021129 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K........]... +4752 7.092995405 1 ::1 49704 ::1 59181 2996021129 46745450 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +4754 7.093149900 0 ::1 59181 ::1 49704 46745450 2996021161 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4756 7.093315125 1 ::1 49704 ::1 59181 2996021161 46745580 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +4758 7.093470335 0 ::1 59181 ::1 49704 46745580 2996021193 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........]... +4760 7.093693972 1 ::1 49704 ::1 59181 2996021193 46745708 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +4762 7.093847752 0 ::1 59181 ::1 49704 46745708 2996021225 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........]... +4764 7.094015598 1 ::1 49704 ::1 59181 2996021225 46745834 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +4766 7.094215631 0 ::1 59181 ::1 49704 46745834 2996021257 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........]... +4768 7.094382524 1 ::1 49704 ::1 59181 2996021257 46745960 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +4770 7.094571114 0 ::1 59181 ::1 49704 46745960 2996021289 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........]... +4772 7.094740391 1 ::1 49704 ::1 59181 2996021289 46746092 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +4774 7.094906569 0 ::1 59181 ::1 49704 46746092 2996021321 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4776 7.095073462 1 ::1 49704 ::1 59181 2996021321 46746222 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +4778 7.095237732 0 ::1 59181 ::1 49704 46746222 2996021353 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........]... +4780 7.095404625 1 ::1 49704 ::1 59181 2996021353 46746360 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +4782 7.095592499 0 ::1 59181 ::1 49704 46746360 2996021385 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........]... +4784 7.095760584 1 ::1 49704 ::1 59181 2996021385 46746496 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4786 7.095931053 0 ::1 59181 ::1 49704 46746496 2996021417 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........]... +4788 7.096098900 1 ::1 49704 ::1 59181 2996021417 46746628 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4790 7.096264362 0 ::1 59181 ::1 49704 46746628 2996021449 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........]... +4792 7.096433640 1 ::1 49704 ::1 59181 2996021449 46746770 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4794 7.096603155 0 ::1 59181 ::1 49704 46746770 2996021481 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........]... +4796 7.096767902 1 ::1 49704 ::1 59181 2996021481 46746918 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4812 7.133438587 0 ::1 59181 ::1 49704 46746918 2996021513 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........8Q +4814 7.133862495 1 ::1 49704 ::1 59181 2996021513 46747208 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4845 7.224258661 0 ::1 59181 ::1 49704 46747208 2996021541 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........8Q +4847 7.224689484 1 ::1 49704 ::1 59181 2996021541 46747414 28 05000203100000001c000000c7000000040000000100000001000000 ............................ diff --git a/captures/020-loopback-write-test-int-102/nmx-stream-__1_49704-to-__1_59181.bin b/captures/020-loopback-write-test-int-102/nmx-stream-__1_49704-to-__1_59181.bin new file mode 100644 index 0000000..3e35a55 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/nmx-stream-__1_49704-to-__1_59181.bin differ diff --git a/captures/020-loopback-write-test-int-102/nmx-stream-__1_59181-to-__1_49704.bin b/captures/020-loopback-write-test-int-102/nmx-stream-__1_59181-to-__1_49704.bin new file mode 100644 index 0000000..55c92c0 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/nmx-stream-__1_59181-to-__1_49704.bin differ diff --git a/captures/020-loopback-write-test-int-102/stderr.txt b/captures/020-loopback-write-test-int-102/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/020-loopback-write-test-int-102/stdout.txt b/captures/020-loopback-write-test-int-102/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/020-loopback-write-test-int-102/tcp-conversations.tsv b/captures/020-loopback-write-test-int-102/tcp-conversations.tsv new file mode 100644 index 0000000..bcb21eb --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-conversations.tsv @@ -0,0 +1,71 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +10.100.0.48:14330 10.100.0.48:59183 359 160255 3.037717581 14.319947958 +10.100.0.48:14330 10.100.0.48:59207 337 148129 18.684299469 21.688530445 +10.100.0.48:14330 10.100.0.48:59182 327 143682 2.789423227 11.596673965 +127.0.0.1:57415 127.0.0.1:57433 2376 44640 0.026882410 21.968071938 +::1:49704 ::1:59181 400 32726 1.901763201 9.126452684 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:59206 2 14170 18.576620102 18.642466068 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:59186 2 13997 4.140616655 4.204960108 +127.0.0.1:59131 127.0.0.1:59132 2 7639 15.283500910 18.758450508 +::1:49704 ::1:49768 96 7398 20.984202623 21.010777235 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 16 6540 3.290207386 3.333082438 +10.100.0.48:14330 10.100.0.48:59202 11 4858 14.326862574 21.690449238 +10.100.0.48:14330 10.100.0.48:59198 10 4292 11.622199059 15.276366234 +10.100.0.48:14330 10.100.0.48:59203 8 3271 15.410871506 15.516003132 +10.100.0.48:14330 10.100.0.48:59208 8 3267 18.886031151 19.002580166 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:59192 3 2703 5.808287859 8.404386997 +::1:135 ::1:59180 20 2600 1.899163485 8.989171743 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:59213 3 1941 19.906485558 21.975557804 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:64442 16 1939 8.143646955 8.153408051 +::1:80 ::1:59176 6 1821 0.735666275 0.742655277 +::1:80 ::1:59174 6 1793 0.512300253 0.519995928 +::1:80 ::1:59179 6 1793 1.127907276 1.134872437 +::1:80 ::1:59194 6 1793 10.514046431 10.520960569 +::1:80 ::1:59197 6 1793 11.129114389 11.137024641 +::1:80 ::1:59215 6 1793 20.517410994 20.525082827 +::1:80 ::1:59219 6 1793 21.130706072 21.136933565 +::1:80 ::1:59210 6 1792 19.827343464 19.833749056 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 7.095995903 7.096417189 +::1:80 ::1:59189 6 1788 5.682055473 5.687959671 +::1:80 ::1:59191 6 1788 5.789982557 5.796917677 +::1:80 ::1:59212 6 1788 19.887372494 19.895039558 +::1:80 ::1:59205 6 1787 18.217246771 18.224443674 +::1:80 ::1:59201 6 1784 13.212151051 13.218527794 +10.100.0.48:1433 10.100.0.48:49792 12 1542 0.573322773 20.691949368 +127.0.0.1:57470 127.0.0.1:57477 106 1392 0.165340185 21.778622627 +127.0.0.1:57608 127.0.0.1:57631 106 1392 0.167530537 21.975661516 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:59187 2 1202 4.212668896 4.217437267 +10.100.0.48:1433 10.100.0.48:49805 14 1200 4.499499321 18.567585230 +10.100.0.48:14330 10.100.0.48:59170 8 1158 3.033034563 21.271294355 +::1:808 ::1:55800 2 1150 0.739473104 0.739933014 +127.0.0.1:57684 127.0.0.1:57745 89 1068 0.000000000 22.031716347 +127.0.0.1:57484 127.0.0.1:57746 88 1056 0.370177984 21.935413361 +127.0.0.1:57485 127.0.0.1:57747 88 1056 0.398224831 21.958180189 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59185 6 913 3.310129642 3.334615946 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59184 6 900 3.285282373 3.307616472 +::1:135 ::1:59216 6 876 20.983265877 21.000804663 +::1:808 ::1:55769 1 488 17.250426292 17.250426292 +::1:80 ::1:59173 2 332 0.504106998 0.508433104 +::1:80 ::1:59175 2 332 0.728237152 0.732265472 +::1:80 ::1:59178 2 332 1.119989872 1.124133587 +::1:80 ::1:59188 2 332 5.674216747 5.678599119 +::1:80 ::1:59190 2 332 5.780604124 5.786350250 +::1:80 ::1:59193 2 332 10.505603075 10.510800600 +::1:80 ::1:59196 2 332 11.120913982 11.125047445 +::1:80 ::1:59199 2 332 13.204007864 13.208061457 +::1:80 ::1:59204 2 332 18.209306955 18.213517904 +::1:80 ::1:59209 2 332 19.817445517 19.821212053 +::1:80 ::1:59211 2 332 19.880437136 19.884024382 +::1:80 ::1:59214 2 332 20.506204128 20.512635469 +::1:80 ::1:59218 2 332 21.122148752 21.126708984 +::1:49704 ::1:49829 2 270 18.422312737 18.422744274 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59177 1 52 1.001150370 1.001150370 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59195 1 52 11.003115654 11.003115654 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:59217 1 52 21.004444599 21.004444599 +10.100.0.48:14330 10.100.0.48:59171 2 35 2.727045059 17.727674246 +127.0.0.1:57471 127.0.0.1:63342 4 24 3.010168552 18.011479855 +127.0.0.1:49787 127.0.0.1:49788 20 20 4.140661001 21.975255489 +10.100.0.48:1433 10.100.0.48:49936 2 2 7.173620224 8.327905416 +10.100.0.48:1433 10.100.0.48:49935 2 2 7.749336243 8.705037117 +10.100.0.48:1433 10.100.0.48:49933 2 2 7.758706808 9.571469545 +10.100.0.48:1433 10.100.0.48:49934 2 2 7.761852264 8.538914680 diff --git a/captures/020-loopback-write-test-int-102/tcp-payload-57415-57433-decoded.tsv b/captures/020-loopback-write-test-int-102/tcp-payload-57415-57433-decoded.tsv new file mode 100644 index 0000000..e35c4c5 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-payload-57415-57433-decoded.tsv @@ -0,0 +1,2377 @@ +frame time_relative direction src dst seq payload_len first_i32 second_i32 third_i32 first_u32_hex length_prefixed body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +3 0.000000000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515315 12 26 730528 0 0x0000001a 0 26 730528 0 1a 00 00 00 a0 25 0b 00 00 00 00 00 .....%...... +5 0.000275850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515327 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1661927424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +7 0.000610828 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454545 12 -1 730528 0 0xffffffff 0 -1 730528 0 ff ff ff ff a0 25 0b 00 00 00 00 00 .....%...... +9 0.001366854 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454557 12 22 720854 0 0x00000016 0 22 720854 0 16 00 00 00 d6 ff 0a 00 00 00 00 00 ............ +11 0.001530409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454569 22 18 2071793 0 0x00000012 1 2071793 0 196609 0 12 00 00 00 f1 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +13 0.001896620 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515353 12 -1 720854 0 0xffffffff 0 -1 720854 0 ff ff ff ff d6 ff 0a 00 00 00 00 00 ............ +15 0.103595734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515365 12 26 730529 0 0x0000001a 0 26 730529 0 1a 00 00 00 a1 25 0b 00 00 00 00 00 .....%...... +17 0.103785276 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515377 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1661796352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +19 0.104259968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454591 12 -1 730529 0 0xffffffff 0 -1 730529 0 ff ff ff ff a1 25 0b 00 00 00 00 00 .....%...... +21 0.104687691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454603 12 22 720855 0 0x00000016 0 22 720855 0 16 00 00 00 d7 ff 0a 00 00 00 00 00 ............ +23 0.104876757 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454615 22 18 2071795 0 0x00000012 1 2071795 0 196609 0 12 00 00 00 f3 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +25 0.105092525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515403 12 -1 720855 0 0xffffffff 0 -1 720855 0 ff ff ff ff d7 ff 0a 00 00 00 00 00 ............ +33 0.140883207 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454637 12 -2 82931 82948 0xfffffffe 0 -2 82931 82948 fe ff ff ff f3 43 01 00 04 44 01 00 .....C...D.. +35 0.188983440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515415 12 34 730530 0 0x00000022 0 34 730530 0 22 00 00 00 a2 25 0b 00 00 00 00 00 """....%......" +37 0.189166069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515427 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 322306048 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 36 13 02 00 00 00 00 00 c4 8d 25 c3 9d 01 00 00 .....!...o3.......6.........%..... +39 0.189306021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515461 12 67 730531 0 0x00000043 0 67 730531 0 43 00 00 00 a3 25 0b 00 00 00 00 00 C....%...... +41 0.189430952 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515473 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 36 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 5d 7f c6 f3 ?.....3...|8...........6.......=B.....&......... +42 0.189959764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454649 12 -1 730530 0 0xffffffff 0 -1 730530 0 ff ff ff ff a2 25 0b 00 00 00 00 00 .....%...... +45 0.190317392 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454661 12 -1 730531 0 0xffffffff 0 -1 730531 0 ff ff ff ff a3 25 0b 00 00 00 00 00 .....%...... +47 0.191439867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454673 12 52 720856 0 0x00000034 0 52 720856 0 34 00 00 00 d8 ff 0a 00 00 00 00 00 4........... +49 0.191625118 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454685 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 36 13 02 00 00 00 00 00 00 00 19 70 85 de 4d 01 00 00 "0...Dk.................L."".([.....6..........p.." +51 0.192126036 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515540 12 -1 720856 0 0xffffffff 0 -1 720856 0 ff ff ff ff d8 ff 0a 00 00 00 00 00 ............ +52 0.192993641 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515552 12 30 730532 0 0x0000001e 0 30 730532 0 1e 00 00 00 a4 25 0b 00 00 00 00 00 .....%...... +54 0.193208694 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515564 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1661665280 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f5 9c 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +56 0.193606138 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454737 12 -1 730532 0 0xffffffff 0 -1 730532 0 ff ff ff ff a4 25 0b 00 00 00 00 00 .....%...... +58 0.194481373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454749 12 26 720857 0 0x0000001a 0 26 720857 0 1a 00 00 00 d9 ff 0a 00 00 00 00 00 ............ +60 0.194686174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454761 26 22 2071797 0 0x00000016 1 2071797 0 196609 0 16 00 00 00 f5 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +62 0.195055962 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515594 12 -1 720857 0 0xffffffff 0 -1 720857 0 ff ff ff ff d9 ff 0a 00 00 00 00 00 ............ +64 0.208289862 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515606 12 26 730533 0 0x0000001a 0 26 730533 0 1a 00 00 00 a5 25 0b 00 00 00 00 00 .....%...... +66 0.208454847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515618 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1661534208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +68 0.208839655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454787 12 -1 730533 0 0xffffffff 0 -1 730533 0 ff ff ff ff a5 25 0b 00 00 00 00 00 .....%...... +70 0.209177732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454799 12 22 720858 0 0x00000016 0 22 720858 0 16 00 00 00 da ff 0a 00 00 00 00 00 ............ +72 0.209334135 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454811 22 18 2071799 0 0x00000012 1 2071799 0 196609 0 12 00 00 00 f7 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +74 0.209607363 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515644 12 -1 720858 0 0xffffffff 0 -1 720858 0 ff ff ff ff da ff 0a 00 00 00 00 00 ............ +78 0.311028481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515656 12 26 730534 0 0x0000001a 0 26 730534 0 1a 00 00 00 a6 25 0b 00 00 00 00 00 .....%...... +80 0.311253548 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515668 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1661403136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +82 0.311667204 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454833 12 -1 730534 0 0xffffffff 0 -1 730534 0 ff ff ff ff a6 25 0b 00 00 00 00 00 .....%...... +84 0.312538624 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454845 12 22 720859 0 0x00000016 0 22 720859 0 16 00 00 00 db ff 0a 00 00 00 00 00 ............ +86 0.312764645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454857 22 18 2071801 0 0x00000012 1 2071801 0 196609 0 12 00 00 00 f9 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +88 0.313093901 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515694 12 -1 720859 0 0xffffffff 0 -1 720859 0 ff ff ff ff db ff 0a 00 00 00 00 00 ............ +96 0.379335403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515706 12 -2 82949 82931 0xfffffffe 0 -2 82949 82931 fe ff ff ff 05 44 01 00 f3 43 01 00 .....D...C.. +100 0.414737225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515718 12 26 730535 0 0x0000001a 0 26 730535 0 1a 00 00 00 a7 25 0b 00 00 00 00 00 .....%...... +102 0.414947033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515730 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1661272064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +104 0.415340424 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454879 12 -1 730535 0 0xffffffff 0 -1 730535 0 ff ff ff ff a7 25 0b 00 00 00 00 00 .....%...... +106 0.415851831 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454891 12 22 720860 0 0x00000016 0 22 720860 0 16 00 00 00 dc ff 0a 00 00 00 00 00 ............ +108 0.416100502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454903 22 18 2071803 0 0x00000012 1 2071803 0 196609 0 12 00 00 00 fb 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +110 0.416557074 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515756 12 -1 720860 0 0xffffffff 0 -1 720860 0 ff ff ff ff dc ff 0a 00 00 00 00 00 ............ +146 0.494162083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515768 12 34 730536 0 0x00000022 0 34 730536 0 22 00 00 00 a8 25 0b 00 00 00 00 00 """....%......" +148 0.494422436 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515780 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 322371584 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 37 13 02 00 00 00 00 00 f6 8e 25 c3 9d 01 00 00 .....!...o3.......7.........%..... +150 0.494562864 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515814 12 67 730537 0 0x00000043 0 67 730537 0 43 00 00 00 a9 25 0b 00 00 00 00 00 C....%...... +152 0.494651318 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515826 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 37 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 9c 8d ab d8 f3 ?.....3...|8...........7.......=B.....&......... +154 0.494807720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454925 12 -1 730536 0 0xffffffff 0 -1 730536 0 ff ff ff ff a8 25 0b 00 00 00 00 00 .....%...... +156 0.495061159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454937 12 -1 730537 0 0xffffffff 0 -1 730537 0 ff ff ff ff a9 25 0b 00 00 00 00 00 .....%...... +158 0.497362137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454949 12 52 720861 0 0x00000034 0 52 720861 0 34 00 00 00 dd ff 0a 00 00 00 00 00 4........... +160 0.497567654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377454961 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 37 13 02 00 00 00 00 00 00 00 04 1e b4 de 4d 01 00 00 "0...Dk.................L."".([.....7............." +162 0.498034477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515893 12 -1 720861 0 0xffffffff 0 -1 720861 0 ff ff ff ff dd ff 0a 00 00 00 00 00 ............ +164 0.498808146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515905 12 30 730538 0 0x0000001e 0 30 730538 0 1e 00 00 00 aa 25 0b 00 00 00 00 00 .....%...... +166 0.498953104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515917 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1661140992 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fd 9c 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +168 0.499253988 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455013 12 -1 730538 0 0xffffffff 0 -1 730538 0 ff ff ff ff aa 25 0b 00 00 00 00 00 .....%...... +170 0.499704361 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455025 12 26 720862 0 0x0000001a 0 26 720862 0 1a 00 00 00 de ff 0a 00 00 00 00 00 ............ +172 0.499879122 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455037 26 22 2071805 0 0x00000016 1 2071805 0 196609 0 16 00 00 00 fd 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +174 0.500104666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515947 12 -1 720862 0 0xffffffff 0 -1 720862 0 ff ff ff ff de ff 0a 00 00 00 00 00 ............ +176 0.517646790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515959 12 26 730539 0 0x0000001a 0 26 730539 0 1a 00 00 00 ab 25 0b 00 00 00 00 00 .....%...... +178 0.517854691 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515971 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1661009920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9c 1f 00 00 00 00 00 ....T.c@.^1@.............. +180 0.518158436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455063 12 -1 730539 0 0xffffffff 0 -1 730539 0 ff ff ff ff ab 25 0b 00 00 00 00 00 .....%...... +182 0.518496752 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455075 12 22 720863 0 0x00000016 0 22 720863 0 16 00 00 00 df ff 0a 00 00 00 00 00 ............ +184 0.518652201 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455087 22 18 2071807 0 0x00000012 1 2071807 0 196609 0 12 00 00 00 ff 9c 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +186 0.519035101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333515997 12 -1 720863 0 0xffffffff 0 -1 720863 0 ff ff ff ff df ff 0a 00 00 00 00 00 ............ +190 0.620528936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516009 12 26 730540 0 0x0000001a 0 26 730540 0 1a 00 00 00 ac 25 0b 00 00 00 00 00 .....%...... +192 0.620781183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516021 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1660878848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +194 0.621133089 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455109 12 -1 730540 0 0xffffffff 0 -1 730540 0 ff ff ff ff ac 25 0b 00 00 00 00 00 .....%...... +196 0.624679565 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455121 12 22 720864 0 0x00000016 0 22 720864 0 16 00 00 00 e0 ff 0a 00 00 00 00 00 ............ +198 0.624914646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455133 22 18 2071809 0 0x00000012 1 2071809 0 196609 0 12 00 00 00 01 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +200 0.625421286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516047 12 -1 720864 0 0xffffffff 0 -1 720864 0 ff ff ff ff e0 ff 0a 00 00 00 00 00 ............ +208 0.641654253 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455155 12 -2 82932 82949 0xfffffffe 0 -2 82932 82949 fe ff ff ff f4 43 01 00 05 44 01 00 .....C...D.. +252 0.727685452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516059 12 26 730541 0 0x0000001a 0 26 730541 0 1a 00 00 00 ad 25 0b 00 00 00 00 00 .....%...... +254 0.727932692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516071 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1660747776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +256 0.728262901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455167 12 -1 730541 0 0xffffffff 0 -1 730541 0 ff ff ff ff ad 25 0b 00 00 00 00 00 .....%...... +258 0.729006052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455179 12 22 720865 0 0x00000016 0 22 720865 0 16 00 00 00 e1 ff 0a 00 00 00 00 00 ............ +260 0.729261637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455191 22 18 2071811 0 0x00000012 1 2071811 0 196609 0 12 00 00 00 03 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +262 0.729632139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516097 12 -1 720865 0 0xffffffff 0 -1 720865 0 ff ff ff ff e1 ff 0a 00 00 00 00 00 ............ +264 0.800174475 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516109 12 34 730542 0 0x00000022 0 34 730542 0 22 00 00 00 ae 25 0b 00 00 00 00 00 """....%......" +266 0.800370693 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516121 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 322437120 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 38 13 02 00 00 00 00 00 28 90 25 c3 9d 01 00 00 .....!...o3.......8.......(.%..... +268 0.800517559 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516155 12 67 730543 0 0x00000043 0 67 730543 0 43 00 00 00 af 25 0b 00 00 00 00 00 C....%...... +270 0.800609112 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516167 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 38 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 d5 e9 ea f3 ?.....3...|8...........8.......=B.....&......... +272 0.800782442 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455213 12 -1 730542 0 0xffffffff 0 -1 730542 0 ff ff ff ff ae 25 0b 00 00 00 00 00 .....%...... +274 0.801067114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455225 12 -1 730543 0 0xffffffff 0 -1 730543 0 ff ff ff ff af 25 0b 00 00 00 00 00 .....%...... +276 0.802037239 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455237 12 52 720866 0 0x00000034 0 52 720866 0 34 00 00 00 e2 ff 0a 00 00 00 00 00 4........... +278 0.802190065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455249 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 38 13 02 00 00 00 00 00 00 00 5b 99 e2 de 4d 01 00 00 "0...Dk.................L."".([.....8.........[..." +280 0.802458048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516234 12 -1 720866 0 0xffffffff 0 -1 720866 0 ff ff ff ff e2 ff 0a 00 00 00 00 00 ............ +282 0.803457260 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516246 12 30 730544 0 0x0000001e 0 30 730544 0 1e 00 00 00 b0 25 0b 00 00 00 00 00 .....%...... +284 0.803616524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516258 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1660616704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +286 0.804061651 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455301 12 -1 730544 0 0xffffffff 0 -1 730544 0 ff ff ff ff b0 25 0b 00 00 00 00 00 .....%...... +288 0.804396868 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455313 12 26 720867 0 0x0000001a 0 26 720867 0 1a 00 00 00 e3 ff 0a 00 00 00 00 00 ............ +290 0.804556608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455325 26 22 2071813 0 0x00000016 1 2071813 0 196609 0 16 00 00 00 05 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +292 0.804827452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516288 12 -1 720867 0 0xffffffff 0 -1 720867 0 ff ff ff ff e3 ff 0a 00 00 00 00 00 ............ +294 0.831643105 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516300 12 26 730545 0 0x0000001a 0 26 730545 0 1a 00 00 00 b1 25 0b 00 00 00 00 00 .....%...... +296 0.831962824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516312 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1660485632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +298 0.832285404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455351 12 -1 730545 0 0xffffffff 0 -1 730545 0 ff ff ff ff b1 25 0b 00 00 00 00 00 .....%...... +300 0.832680941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455363 12 22 720868 0 0x00000016 0 22 720868 0 16 00 00 00 e4 ff 0a 00 00 00 00 00 ............ +302 0.832921982 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455375 22 18 2071815 0 0x00000012 1 2071815 0 196609 0 12 00 00 00 07 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +304 0.833162069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516338 12 -1 720868 0 0xffffffff 0 -1 720868 0 ff ff ff ff e4 ff 0a 00 00 00 00 00 ............ +312 0.880204439 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516350 12 -2 82950 82932 0xfffffffe 0 -2 82950 82932 fe ff ff ff 06 44 01 00 f4 43 01 00 .....D...C.. +318 0.934492826 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516362 12 26 730546 0 0x0000001a 0 26 730546 0 1a 00 00 00 b2 25 0b 00 00 00 00 00 .....%...... +320 0.934665680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516374 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1660354560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +322 0.935034275 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455397 12 -1 730546 0 0xffffffff 0 -1 730546 0 ff ff ff ff b2 25 0b 00 00 00 00 00 .....%...... +324 0.935595036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455409 12 22 720869 0 0x00000016 0 22 720869 0 16 00 00 00 e5 ff 0a 00 00 00 00 00 ............ +326 0.935767889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455421 22 18 2071817 0 0x00000012 1 2071817 0 196609 0 12 00 00 00 09 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +328 0.936096191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516400 12 -1 720869 0 0xffffffff 0 -1 720869 0 ff ff ff ff e5 ff 0a 00 00 00 00 00 ............ +338 1.037968159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516412 12 26 730547 0 0x0000001a 0 26 730547 0 1a 00 00 00 b3 25 0b 00 00 00 00 00 .....%...... +340 1.038163185 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516424 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1660223488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +342 1.038528681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455443 12 -1 730547 0 0xffffffff 0 -1 730547 0 ff ff ff ff b3 25 0b 00 00 00 00 00 .....%...... +344 1.038972378 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455455 12 22 720870 0 0x00000016 0 22 720870 0 16 00 00 00 e6 ff 0a 00 00 00 00 00 ............ +346 1.039131403 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455467 22 18 2071819 0 0x00000012 1 2071819 0 196609 0 12 00 00 00 0b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +348 1.039438248 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516450 12 -1 720870 0 0xffffffff 0 -1 720870 0 ff ff ff ff e6 ff 0a 00 00 00 00 00 ............ +370 1.105529308 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516462 12 101 730548 0 0x00000065 0 101 730548 0 65 00 00 00 b4 25 0b 00 00 00 00 00 e....%...... +372 1.105815887 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516474 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 39 13 02 00 00 00 00 00 58 91 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 39 13 02 00 00 00 00 .....!...o3.......9.......X.%.....?.....3...|8.. +374 1.106207609 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455489 12 -1 730548 0 0xffffffff 0 -1 730548 0 ff ff ff ff b4 25 0b 00 00 00 00 00 .....%...... +379 1.107335567 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455501 12 52 720871 0 0x00000034 0 52 720871 0 34 00 00 00 e7 ff 0a 00 00 00 00 00 4........... +382 1.107496262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455513 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 39 13 02 00 00 00 00 00 00 00 17 30 11 df 4d 01 00 00 "0...Dk.................L."".([.....9..........0.." +384 1.107784748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516575 12 -1 720871 0 0xffffffff 0 -1 720871 0 ff ff ff ff e7 ff 0a 00 00 00 00 00 ............ +392 1.108675241 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516587 12 30 730549 0 0x0000001e 0 30 730549 0 1e 00 00 00 b5 25 0b 00 00 00 00 00 .....%...... +394 1.108828306 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516599 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1660092416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +396 1.109097242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455565 12 -1 730549 0 0xffffffff 0 -1 730549 0 ff ff ff ff b5 25 0b 00 00 00 00 00 .....%...... +398 1.110733509 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455577 12 26 720872 0 0x0000001a 0 26 720872 0 1a 00 00 00 e8 ff 0a 00 00 00 00 00 ............ +400 1.110894918 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455589 26 22 2071821 0 0x00000016 1 2071821 0 196609 0 16 00 00 00 0d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +402 1.111183643 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516629 12 -1 720872 0 0xffffffff 0 -1 720872 0 ff ff ff ff e8 ff 0a 00 00 00 00 00 ............ +406 1.140822411 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516641 12 26 730550 0 0x0000001a 0 26 730550 0 1a 00 00 00 b6 25 0b 00 00 00 00 00 .....%...... +408 1.140946150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516653 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1659961344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +410 1.141477823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455615 12 -1 730550 0 0xffffffff 0 -1 730550 0 ff ff ff ff b6 25 0b 00 00 00 00 00 .....%...... +412 1.141978979 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455627 12 22 720873 0 0x00000016 0 22 720873 0 16 00 00 00 e9 ff 0a 00 00 00 00 00 ............ +414 1.142177105 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455639 22 18 2071823 0 0x00000012 1 2071823 0 196609 0 12 00 00 00 0f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +416 1.142474651 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516679 12 -1 720873 0 0xffffffff 0 -1 720873 0 ff ff ff ff e9 ff 0a 00 00 00 00 00 ............ +418 1.142683268 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455661 12 -2 82933 82950 0xfffffffe 0 -2 82933 82950 fe ff ff ff f5 43 01 00 06 44 01 00 .....C...D.. +426 1.243473291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516691 12 26 730551 0 0x0000001a 0 26 730551 0 1a 00 00 00 b7 25 0b 00 00 00 00 00 .....%...... +428 1.243649244 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516703 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1659830272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +430 1.243983269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455673 12 -1 730551 0 0xffffffff 0 -1 730551 0 ff ff ff ff b7 25 0b 00 00 00 00 00 .....%...... +432 1.244450808 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455685 12 22 720874 0 0x00000016 0 22 720874 0 16 00 00 00 ea ff 0a 00 00 00 00 00 ............ +434 1.244599342 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455697 22 18 2071825 0 0x00000012 1 2071825 0 196609 0 12 00 00 00 11 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +436 1.244879246 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516729 12 -1 720874 0 0xffffffff 0 -1 720874 0 ff ff ff ff ea ff 0a 00 00 00 00 00 ............ +440 1.347284794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516741 12 26 730552 0 0x0000001a 0 26 730552 0 1a 00 00 00 b8 25 0b 00 00 00 00 00 .....%...... +442 1.347464323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516753 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1659699200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +444 1.347845078 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455719 12 -1 730552 0 0xffffffff 0 -1 730552 0 ff ff ff ff b8 25 0b 00 00 00 00 00 .....%...... +446 1.348396063 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455731 12 22 720875 0 0x00000016 0 22 720875 0 16 00 00 00 eb ff 0a 00 00 00 00 00 ............ +448 1.348586559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455743 22 18 2071827 0 0x00000012 1 2071827 0 196609 0 12 00 00 00 13 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +450 1.348793983 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516779 12 -1 720875 0 0xffffffff 0 -1 720875 0 ff ff ff ff eb ff 0a 00 00 00 00 00 ............ +456 1.380633116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516791 12 -2 82951 82933 0xfffffffe 0 -2 82951 82933 fe ff ff ff 07 44 01 00 f5 43 01 00 .....D...C.. +460 1.410372257 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516803 12 101 730553 0 0x00000065 0 101 730553 0 65 00 00 00 b9 25 0b 00 00 00 00 00 e....%...... +462 1.410538435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516815 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3a 13 02 00 00 00 00 00 89 92 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3a 13 02 00 00 00 00 .....!...o3.......:.........%.....?.....3...|8.. +464 1.410897493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455765 12 -1 730553 0 0xffffffff 0 -1 730553 0 ff ff ff ff b9 25 0b 00 00 00 00 00 .....%...... +466 1.412367344 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455777 12 52 720876 0 0x00000034 0 52 720876 0 34 00 00 00 ec ff 0a 00 00 00 00 00 4........... +468 1.412651539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455789 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3a 13 02 00 00 00 00 00 00 00 bf b7 3f df 4d 01 00 00 "0...Dk.................L."".([.....:...........?." +470 1.412997961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516916 12 -1 720876 0 0xffffffff 0 -1 720876 0 ff ff ff ff ec ff 0a 00 00 00 00 00 ............ +472 1.414038897 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516928 12 30 730554 0 0x0000001e 0 30 730554 0 1e 00 00 00 ba 25 0b 00 00 00 00 00 .....%...... +474 1.414236069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516940 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1659568128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +476 1.414582253 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455841 12 -1 730554 0 0xffffffff 0 -1 730554 0 ff ff ff ff ba 25 0b 00 00 00 00 00 .....%...... +478 1.415028334 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455853 12 26 720877 0 0x0000001a 0 26 720877 0 1a 00 00 00 ed ff 0a 00 00 00 00 00 ............ +480 1.415190220 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455865 26 22 2071829 0 0x00000016 1 2071829 0 196609 0 16 00 00 00 15 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +482 1.415645361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516970 12 -1 720877 0 0xffffffff 0 -1 720877 0 ff ff ff ff ed ff 0a 00 00 00 00 00 ............ +486 1.449851036 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516982 12 26 730555 0 0x0000001a 0 26 730555 0 1a 00 00 00 bb 25 0b 00 00 00 00 00 .....%...... +488 1.450029612 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333516994 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1659437056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +490 1.450496435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455891 12 -1 730555 0 0xffffffff 0 -1 730555 0 ff ff ff ff bb 25 0b 00 00 00 00 00 .....%...... +492 1.450851440 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455903 12 22 720878 0 0x00000016 0 22 720878 0 16 00 00 00 ee ff 0a 00 00 00 00 00 ............ +494 1.451026678 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455915 22 18 2071831 0 0x00000012 1 2071831 0 196609 0 12 00 00 00 17 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +496 1.451317549 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517020 12 -1 720878 0 0xffffffff 0 -1 720878 0 ff ff ff ff ee ff 0a 00 00 00 00 00 ............ +500 1.552879572 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517032 12 26 730556 0 0x0000001a 0 26 730556 0 1a 00 00 00 bc 25 0b 00 00 00 00 00 .....%...... +502 1.553054333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517044 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1659305984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +504 1.553401470 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455937 12 -1 730556 0 0xffffffff 0 -1 730556 0 ff ff ff ff bc 25 0b 00 00 00 00 00 .....%...... +506 1.553897142 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455949 12 22 720879 0 0x00000016 0 22 720879 0 16 00 00 00 ef ff 0a 00 00 00 00 00 ............ +508 1.554042578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455961 22 18 2071833 0 0x00000012 1 2071833 0 196609 0 12 00 00 00 19 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +510 1.554418564 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517070 12 -1 720879 0 0xffffffff 0 -1 720879 0 ff ff ff ff ef ff 0a 00 00 00 00 00 ............ +514 1.643070936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455983 12 -2 82934 82951 0xfffffffe 0 -2 82934 82951 fe ff ff ff f6 43 01 00 07 44 01 00 .....C...D.. +520 1.656700373 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517082 12 26 730557 0 0x0000001a 0 26 730557 0 1a 00 00 00 bd 25 0b 00 00 00 00 00 .....%...... +522 1.656892776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517094 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1659174912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +524 1.657279253 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377455995 12 -1 730557 0 0xffffffff 0 -1 730557 0 ff ff ff ff bd 25 0b 00 00 00 00 00 .....%...... +526 1.657802343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456007 12 22 720880 0 0x00000016 0 22 720880 0 16 00 00 00 f0 ff 0a 00 00 00 00 00 ............ +528 1.658004045 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456019 22 18 2071835 0 0x00000012 1 2071835 0 196609 0 12 00 00 00 1b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +530 1.658347607 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517120 12 -1 720880 0 0xffffffff 0 -1 720880 0 ff ff ff ff f0 ff 0a 00 00 00 00 00 ............ +532 1.715655088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517132 12 34 730558 0 0x00000022 0 34 730558 0 22 00 00 00 be 25 0b 00 00 00 00 00 """....%......" +534 1.715882063 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517144 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 322633728 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3b 13 02 00 00 00 00 00 ba 93 25 c3 9d 01 00 00 .....!...o3.......;.........%..... +536 1.716109037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517178 12 67 730559 0 0x00000043 0 67 730559 0 43 00 00 00 bf 25 0b 00 00 00 00 00 C....%...... +538 1.716202021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517190 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 34 7e 21 f4 ?.....3...|8...........;.......=B.....&......... +540 1.716346741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456041 12 -1 730558 0 0xffffffff 0 -1 730558 0 ff ff ff ff be 25 0b 00 00 00 00 00 .....%...... +542 1.716612101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456053 12 -1 730559 0 0xffffffff 0 -1 730559 0 ff ff ff ff bf 25 0b 00 00 00 00 00 .....%...... +544 1.719238997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456065 12 52 720881 0 0x00000034 0 52 720881 0 34 00 00 00 f1 ff 0a 00 00 00 00 00 4........... +546 1.719558239 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456077 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3b 13 02 00 00 00 00 00 00 00 26 8e 6e df 4d 01 00 00 "0...Dk.................L."".([.....;.........&.n." +548 1.719835997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517257 12 -1 720881 0 0xffffffff 0 -1 720881 0 ff ff ff ff f1 ff 0a 00 00 00 00 00 ............ +550 1.720757961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517269 12 30 730560 0 0x0000001e 0 30 730560 0 1e 00 00 00 c0 25 0b 00 00 00 00 00 .....%...... +552 1.720908642 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517281 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1659043840 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +554 1.721240044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456129 12 -1 730560 0 0xffffffff 0 -1 730560 0 ff ff ff ff c0 25 0b 00 00 00 00 00 .....%...... +556 1.721751213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456141 12 26 720882 0 0x0000001a 0 26 720882 0 1a 00 00 00 f2 ff 0a 00 00 00 00 00 ............ +558 1.721912384 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456153 26 22 2071837 0 0x00000016 1 2071837 0 196609 0 16 00 00 00 1d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +560 1.722153425 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517311 12 -1 720882 0 0xffffffff 0 -1 720882 0 ff ff ff ff f2 ff 0a 00 00 00 00 00 ............ +564 1.760058403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517323 12 26 730561 0 0x0000001a 0 26 730561 0 1a 00 00 00 c1 25 0b 00 00 00 00 00 .....%...... +566 1.760228634 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517335 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1658912768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +568 1.760557413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456179 12 -1 730561 0 0xffffffff 0 -1 730561 0 ff ff ff ff c1 25 0b 00 00 00 00 00 .....%...... +570 1.760925293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456191 12 22 720883 0 0x00000016 0 22 720883 0 16 00 00 00 f3 ff 0a 00 00 00 00 00 ............ +572 1.761101484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456203 22 18 2071839 0 0x00000012 1 2071839 0 196609 0 12 00 00 00 1f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +574 1.761353970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517361 12 -1 720883 0 0xffffffff 0 -1 720883 0 ff ff ff ff f3 ff 0a 00 00 00 00 00 ............ +578 1.863251686 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517373 12 26 730562 0 0x0000001a 0 26 730562 0 1a 00 00 00 c2 25 0b 00 00 00 00 00 .....%...... +580 1.863492250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517385 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1658781696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 9d 1f 00 00 00 00 00 ....T.c@.^1@......!....... +582 1.864067793 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456225 12 -1 730562 0 0xffffffff 0 -1 730562 0 ff ff ff ff c2 25 0b 00 00 00 00 00 .....%...... +584 1.864554644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456237 12 22 720884 0 0x00000016 0 22 720884 0 16 00 00 00 f4 ff 0a 00 00 00 00 00 ............ +586 1.864719391 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456249 22 18 2071841 0 0x00000012 1 2071841 0 196609 0 12 00 00 00 21 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +588 1.864992857 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517411 12 -1 720884 0 0xffffffff 0 -1 720884 0 ff ff ff ff f4 ff 0a 00 00 00 00 00 ............ +664 1.881979704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517423 12 -2 82952 82934 0xfffffffe 0 -2 82952 82934 fe ff ff ff 08 44 01 00 f6 43 01 00 .....D...C.. +686 1.967336178 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517435 12 26 730563 0 0x0000001a 0 26 730563 0 1a 00 00 00 c3 25 0b 00 00 00 00 00 .....%...... +688 1.967553377 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517447 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1658650624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 9d 1f 00 00 00 00 00 ....T.c@.^1@......#....... +690 1.967810154 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456271 12 -1 730563 0 0xffffffff 0 -1 730563 0 ff ff ff ff c3 25 0b 00 00 00 00 00 .....%...... +692 1.968257904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456283 12 22 720885 0 0x00000016 0 22 720885 0 16 00 00 00 f5 ff 0a 00 00 00 00 00 ............ +694 1.968444347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456295 22 18 2071843 0 0x00000012 1 2071843 0 196609 0 12 00 00 00 23 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +696 1.968867779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517473 12 -1 720885 0 0xffffffff 0 -1 720885 0 ff ff ff ff f5 ff 0a 00 00 00 00 00 ............ +828 2.023535490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517485 12 101 730564 0 0x00000065 0 101 730564 0 65 00 00 00 c4 25 0b 00 00 00 00 00 e....%...... +830 2.023753881 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517497 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3c 13 02 00 00 00 00 00 ee 94 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3c 13 02 00 00 00 00 .....!...o3.......<.........%.....?.....3...|8.. +832 2.024115562 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456317 12 -1 730564 0 0xffffffff 0 -1 730564 0 ff ff ff ff c4 25 0b 00 00 00 00 00 .....%...... +834 2.025698900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456329 12 52 720886 0 0x00000034 0 52 720886 0 34 00 00 00 f6 ff 0a 00 00 00 00 00 4........... +836 2.025904655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456341 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3c 13 02 00 00 00 00 00 00 00 ae 45 9d df 4d 01 00 00 "0...Dk.................L."".([.....<..........E.." +838 2.026188135 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517598 12 -1 720886 0 0xffffffff 0 -1 720886 0 ff ff ff ff f6 ff 0a 00 00 00 00 00 ............ +840 2.028011560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517610 12 30 730565 0 0x0000001e 0 30 730565 0 1e 00 00 00 c5 25 0b 00 00 00 00 00 .....%...... +842 2.028208971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517622 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1658519552 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......%........... +844 2.028655529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456393 12 -1 730565 0 0xffffffff 0 -1 730565 0 ff ff ff ff c5 25 0b 00 00 00 00 00 .....%...... +846 2.028916836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456405 12 26 720887 0 0x0000001a 0 26 720887 0 1a 00 00 00 f7 ff 0a 00 00 00 00 00 ............ +848 2.029075146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456417 26 22 2071845 0 0x00000016 1 2071845 0 196609 0 16 00 00 00 25 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%..................... +850 2.029324532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517652 12 -1 720887 0 0xffffffff 0 -1 720887 0 ff ff ff ff f7 ff 0a 00 00 00 00 00 ............ +852 2.070088863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517664 12 26 730566 0 0x0000001a 0 26 730566 0 1a 00 00 00 c6 25 0b 00 00 00 00 00 .....%...... +854 2.070265532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517676 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1658388480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 9d 1f 00 00 00 00 00 ....T.c@.^1@......'....... +856 2.070677042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456443 12 -1 730566 0 0xffffffff 0 -1 730566 0 ff ff ff ff c6 25 0b 00 00 00 00 00 .....%...... +858 2.071191072 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456455 12 22 720888 0 0x00000016 0 22 720888 0 16 00 00 00 f8 ff 0a 00 00 00 00 00 ............ +860 2.071384668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456467 22 18 2071847 0 0x00000012 1 2071847 0 196609 0 12 00 00 00 27 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +862 2.071825266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517702 12 -1 720888 0 0xffffffff 0 -1 720888 0 ff ff ff ff f8 ff 0a 00 00 00 00 00 ............ +934 2.143056631 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456489 12 -2 82935 82952 0xfffffffe 0 -2 82935 82952 fe ff ff ff f7 43 01 00 08 44 01 00 .....C...D.. +940 2.173017025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517714 12 26 730567 0 0x0000001a 0 26 730567 0 1a 00 00 00 c7 25 0b 00 00 00 00 00 .....%...... +942 2.173196554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517726 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1658257408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 9d 1f 00 00 00 00 00 ....T.c@.^1@......)....... +944 2.173547029 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456501 12 -1 730567 0 0xffffffff 0 -1 730567 0 ff ff ff ff c7 25 0b 00 00 00 00 00 .....%...... +946 2.173959732 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456513 12 22 720889 0 0x00000016 0 22 720889 0 16 00 00 00 f9 ff 0a 00 00 00 00 00 ............ +948 2.174120665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456525 22 18 2071849 0 0x00000012 1 2071849 0 196609 0 12 00 00 00 29 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +950 2.174587488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517752 12 -1 720889 0 0xffffffff 0 -1 720889 0 ff ff ff ff f9 ff 0a 00 00 00 00 00 ............ +954 2.277015209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517764 12 26 730568 0 0x0000001a 0 26 730568 0 1a 00 00 00 c8 25 0b 00 00 00 00 00 .....%...... +956 2.277196646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517776 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1658126336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 9d 1f 00 00 00 00 00 ....T.c@.^1@......+....... +958 2.277513027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456547 12 -1 730568 0 0xffffffff 0 -1 730568 0 ff ff ff ff c8 25 0b 00 00 00 00 00 .....%...... +960 2.277908564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456559 12 22 720890 0 0x00000016 0 22 720890 0 16 00 00 00 fa ff 0a 00 00 00 00 00 ............ +962 2.278072357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456571 22 18 2071851 0 0x00000012 1 2071851 0 196609 0 12 00 00 00 2b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +964 2.278327465 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517802 12 -1 720890 0 0xffffffff 0 -1 720890 0 ff ff ff ff fa ff 0a 00 00 00 00 00 ............ +1042 2.329124451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517814 12 34 730569 0 0x00000022 0 34 730569 0 22 00 00 00 c9 25 0b 00 00 00 00 00 """....%......" +1044 2.329282761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517826 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 322764800 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3d 13 02 00 00 00 00 00 20 96 25 c3 9d 01 00 00 .....!...o3.......=....... .%..... +1046 2.329408646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517860 12 67 730570 0 0x00000043 0 67 730570 0 43 00 00 00 ca 25 0b 00 00 00 00 00 C....%...... +1048 2.329494238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517872 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 fa 00 46 f4 ?.....3...|8...........=.......=B.....&......... +1050 2.329661608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456593 12 -1 730569 0 0xffffffff 0 -1 730569 0 ff ff ff ff c9 25 0b 00 00 00 00 00 .....%...... +1052 2.329913378 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456605 12 -1 730570 0 0xffffffff 0 -1 730570 0 ff ff ff ff ca 25 0b 00 00 00 00 00 .....%...... +1054 2.330772161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456617 12 52 720891 0 0x00000034 0 52 720891 0 34 00 00 00 fb ff 0a 00 00 00 00 00 4........... +1056 2.331090927 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456629 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3d 13 02 00 00 00 00 00 00 00 8a df cb df 4d 01 00 00 "0...Dk.................L."".([.....=............." +1058 2.331354380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517939 12 -1 720891 0 0xffffffff 0 -1 720891 0 ff ff ff ff fb ff 0a 00 00 00 00 00 ............ +1060 2.331995487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517951 12 30 730571 0 0x0000001e 0 30 730571 0 1e 00 00 00 cb 25 0b 00 00 00 00 00 .....%...... +1062 2.332249403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517963 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1657995264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......-........... +1064 2.332580805 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456681 12 -1 730571 0 0xffffffff 0 -1 730571 0 ff ff ff ff cb 25 0b 00 00 00 00 00 .....%...... +1066 2.332950115 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456693 12 26 720892 0 0x0000001a 0 26 720892 0 1a 00 00 00 fc ff 0a 00 00 00 00 00 ............ +1068 2.333120346 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456705 26 22 2071853 0 0x00000016 1 2071853 0 196609 0 16 00 00 00 2d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-..................... +1070 2.333356857 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333517993 12 -1 720892 0 0xffffffff 0 -1 720892 0 ff ff ff ff fc ff 0a 00 00 00 00 00 ............ +1078 2.380346537 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518005 12 26 730572 0 0x0000001a 0 26 730572 0 1a 00 00 00 cc 25 0b 00 00 00 00 00 .....%...... +1080 2.380597830 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518017 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1657864192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 9d 1f 00 00 00 00 00 ....T.c@.^1@....../....... +1082 2.380942106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456731 12 -1 730572 0 0xffffffff 0 -1 730572 0 ff ff ff ff cc 25 0b 00 00 00 00 00 .....%...... +1084 2.381504536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456743 12 22 720893 0 0x00000016 0 22 720893 0 16 00 00 00 fd ff 0a 00 00 00 00 00 ............ +1086 2.381737947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456755 22 18 2071855 0 0x00000012 1 2071855 0 196609 0 12 00 00 00 2f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +1088 2.381955862 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518043 12 -1 720893 0 0xffffffff 0 -1 720893 0 ff ff ff ff fd ff 0a 00 00 00 00 00 ............ +1091 2.382952452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518055 12 -2 82953 82935 0xfffffffe 0 -2 82953 82935 fe ff ff ff 09 44 01 00 f7 43 01 00 .....D...C.. +1098 2.483036995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518067 12 26 730573 0 0x0000001a 0 26 730573 0 1a 00 00 00 cd 25 0b 00 00 00 00 00 .....%...... +1100 2.483215570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518079 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1657733120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 9d 1f 00 00 00 00 00 ....T.c@.^1@......1....... +1102 2.483481884 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456777 12 -1 730573 0 0xffffffff 0 -1 730573 0 ff ff ff ff cd 25 0b 00 00 00 00 00 .....%...... +1104 2.484644651 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456789 12 22 720894 0 0x00000016 0 22 720894 0 16 00 00 00 fe ff 0a 00 00 00 00 00 ............ +1106 2.484861374 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456801 22 18 2071857 0 0x00000012 1 2071857 0 196609 0 12 00 00 00 31 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1................. +1108 2.485155821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518105 12 -1 720894 0 0xffffffff 0 -1 720894 0 ff ff ff ff fe ff 0a 00 00 00 00 00 ............ +1110 2.586657047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518117 12 26 730574 0 0x0000001a 0 26 730574 0 1a 00 00 00 ce 25 0b 00 00 00 00 00 .....%...... +1112 2.586832047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518129 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1657602048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 9d 1f 00 00 00 00 00 ....T.c@.^1@......3....... +1114 2.587244749 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456823 12 -1 730574 0 0xffffffff 0 -1 730574 0 ff ff ff ff ce 25 0b 00 00 00 00 00 .....%...... +1116 2.587654114 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456835 12 22 720895 0 0x00000016 0 22 720895 0 16 00 00 00 ff ff 0a 00 00 00 00 00 ............ +1118 2.587847233 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456847 22 18 2071859 0 0x00000012 1 2071859 0 196609 0 12 00 00 00 33 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +1120 2.588132620 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518155 12 -1 720895 0 0xffffffff 0 -1 720895 0 ff ff ff ff ff ff 0a 00 00 00 00 00 ............ +1122 2.633322477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518167 12 101 730575 0 0x00000065 0 101 730575 0 65 00 00 00 cf 25 0b 00 00 00 00 00 e....%...... +1124 2.633588791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518179 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3e 13 02 00 00 00 00 00 51 97 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3e 13 02 00 00 00 00 .....!...o3.......>.......Q.%.....?.....3...|8.. +1126 2.634074688 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456869 12 -1 730575 0 0xffffffff 0 -1 730575 0 ff ff ff ff cf 25 0b 00 00 00 00 00 .....%...... +1128 2.635246038 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456881 12 52 720896 0 0x00000034 0 52 720896 0 34 00 00 00 00 00 0b 00 00 00 00 00 4........... +1130 2.635403395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456893 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3e 13 02 00 00 00 00 00 00 00 7a 53 fa df 4d 01 00 00 "0...Dk.................L."".([.....>.........zS.." +1132 2.635619879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518280 12 -1 720896 0 0xffffffff 0 -1 720896 0 ff ff ff ff 00 00 0b 00 00 00 00 00 ............ +1134 2.636739254 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518292 12 30 730576 0 0x0000001e 0 30 730576 0 1e 00 00 00 d0 25 0b 00 00 00 00 00 .....%...... +1136 2.636907339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518304 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1657470976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......5........... +1138 2.637315035 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456945 12 -1 730576 0 0xffffffff 0 -1 730576 0 ff ff ff ff d0 25 0b 00 00 00 00 00 .....%...... +1140 2.637713194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456957 12 26 720897 0 0x0000001a 0 26 720897 0 1a 00 00 00 01 00 0b 00 00 00 00 00 ............ +1142 2.637879372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456969 26 22 2071861 0 0x00000016 1 2071861 0 196609 0 16 00 00 00 35 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5..................... +1144 2.638182878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518334 12 -1 720897 0 0xffffffff 0 -1 720897 0 ff ff ff ff 01 00 0b 00 00 00 00 00 ............ +1148 2.643671989 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377456995 12 -2 82936 82953 0xfffffffe 0 -2 82936 82953 fe ff ff ff f8 43 01 00 09 44 01 00 .....C...D.. +1154 2.690069437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518346 12 26 730577 0 0x0000001a 0 26 730577 0 1a 00 00 00 d1 25 0b 00 00 00 00 00 .....%...... +1156 2.690280437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518358 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1657339904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 9d 1f 00 00 00 00 00 ....T.c@.^1@......7....... +1158 2.690590382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457007 12 -1 730577 0 0xffffffff 0 -1 730577 0 ff ff ff ff d1 25 0b 00 00 00 00 00 .....%...... +1160 2.691401720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457019 12 22 720898 0 0x00000016 0 22 720898 0 16 00 00 00 02 00 0b 00 00 00 00 00 ............ +1162 2.691588163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457031 22 18 2071863 0 0x00000012 1 2071863 0 196609 0 12 00 00 00 37 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +1164 2.691917896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518384 12 -1 720898 0 0xffffffff 0 -1 720898 0 ff ff ff ff 02 00 0b 00 00 00 00 00 ............ +1175 2.793115854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518396 12 26 730578 0 0x0000001a 0 26 730578 0 1a 00 00 00 d2 25 0b 00 00 00 00 00 .....%...... +1177 2.793303728 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518408 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1657208832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 9d 1f 00 00 00 00 00 ....T.c@.^1@......9....... +1179 2.793666601 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457053 12 -1 730578 0 0xffffffff 0 -1 730578 0 ff ff ff ff d2 25 0b 00 00 00 00 00 .....%...... +1181 2.794227839 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457065 12 22 720899 0 0x00000016 0 22 720899 0 16 00 00 00 03 00 0b 00 00 00 00 00 ............ +1183 2.794489861 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457077 22 18 2071865 0 0x00000012 1 2071865 0 196609 0 12 00 00 00 39 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9................. +1185 2.794770241 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518434 12 -1 720899 0 0xffffffff 0 -1 720899 0 ff ff ff ff 03 00 0b 00 00 00 00 00 ............ +1205 2.884166956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518446 12 -2 82954 82936 0xfffffffe 0 -2 82954 82936 fe ff ff ff 0a 44 01 00 f8 43 01 00 .....D...C.. +1209 2.896112204 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518458 12 26 730579 0 0x0000001a 0 26 730579 0 1a 00 00 00 d3 25 0b 00 00 00 00 00 .....%...... +1211 2.896277428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518470 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1657077760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 9d 1f 00 00 00 00 00 ....T.c@.^1@......;....... +1213 2.896803856 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457099 12 -1 730579 0 0xffffffff 0 -1 730579 0 ff ff ff ff d3 25 0b 00 00 00 00 00 .....%...... +1215 2.897237539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457111 12 22 720900 0 0x00000016 0 22 720900 0 16 00 00 00 04 00 0b 00 00 00 00 00 ............ +1217 2.897534370 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457123 22 18 2071867 0 0x00000012 1 2071867 0 196609 0 12 00 00 00 3b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +1219 2.897893429 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518496 12 -1 720900 0 0xffffffff 0 -1 720900 0 ff ff ff ff 04 00 0b 00 00 00 00 00 ............ +1227 2.938454151 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518508 12 34 730580 0 0x00000022 0 34 730580 0 22 00 00 00 d4 25 0b 00 00 00 00 00 """....%......" +1229 2.938654661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518520 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 322895872 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 3f 13 02 00 00 00 00 00 81 98 25 c3 9d 01 00 00 .....!...o3.......?.........%..... +1231 2.938797712 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518554 12 67 730581 0 0x00000043 0 67 730581 0 43 00 00 00 d5 25 0b 00 00 00 00 00 C....%...... +1233 2.938885689 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518566 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 3f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 28 e3 5f 6a f4 ?.....3...|8...........?.......=B.....&......... +1235 2.938967705 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457145 12 -1 730580 0 0xffffffff 0 -1 730580 0 ff ff ff ff d4 25 0b 00 00 00 00 00 .....%...... +1237 2.939134836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457157 12 -1 730581 0 0xffffffff 0 -1 730581 0 ff ff ff ff d5 25 0b 00 00 00 00 00 .....%...... +1239 2.940384626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457169 12 52 720901 0 0x00000034 0 52 720901 0 34 00 00 00 05 00 0b 00 00 00 00 00 4........... +1241 2.940590382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457181 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 3f 13 02 00 00 00 00 00 00 00 d8 e6 28 e0 4d 01 00 00 "0...Dk.................L."".([.....?...........(." +1243 2.940860271 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518633 12 -1 720901 0 0xffffffff 0 -1 720901 0 ff ff ff ff 05 00 0b 00 00 00 00 00 ............ +1245 2.941761971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518645 12 30 730582 0 0x0000001e 0 30 730582 0 1e 00 00 00 d6 25 0b 00 00 00 00 00 .....%...... +1247 2.941908836 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518657 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1656946688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......=........... +1249 2.942224741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457233 12 -1 730582 0 0xffffffff 0 -1 730582 0 ff ff ff ff d6 25 0b 00 00 00 00 00 .....%...... +1251 2.942583799 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457245 12 26 720902 0 0x0000001a 0 26 720902 0 1a 00 00 00 06 00 0b 00 00 00 00 00 ............ +1253 2.942723036 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457257 26 22 2071869 0 0x00000016 1 2071869 0 196609 0 16 00 00 00 3d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=..................... +1255 2.942961216 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518687 12 -1 720902 0 0xffffffff 0 -1 720902 0 ff ff ff ff 06 00 0b 00 00 00 00 00 ............ +1264 3.000735760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518699 12 26 730583 0 0x0000001a 0 26 730583 0 1a 00 00 00 d7 25 0b 00 00 00 00 00 .....%...... +1266 3.000939846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518711 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1656815616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 9d 1f 00 00 00 00 00 ....T.c@.^1@......?....... +1268 3.001279354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457283 12 -1 730583 0 0xffffffff 0 -1 730583 0 ff ff ff ff d7 25 0b 00 00 00 00 00 .....%...... +1270 3.001767874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457295 12 22 720903 0 0x00000016 0 22 720903 0 16 00 00 00 07 00 0b 00 00 00 00 00 ............ +1272 3.001929760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457307 22 18 2071871 0 0x00000012 1 2071871 0 196609 0 12 00 00 00 3f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +1274 3.002333164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518737 12 -1 720903 0 0xffffffff 0 -1 720903 0 ff ff ff ff 07 00 0b 00 00 00 00 00 ............ +1298 3.103445292 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518749 12 26 730584 0 0x0000001a 0 26 730584 0 1a 00 00 00 d8 25 0b 00 00 00 00 00 .....%...... +1300 3.103618860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518761 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1656684544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 9d 1f 00 00 00 00 00 ....T.c@.^1@......A....... +1302 3.103917360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457329 12 -1 730584 0 0xffffffff 0 -1 730584 0 ff ff ff ff d8 25 0b 00 00 00 00 00 .....%...... +1304 3.104406834 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457341 12 22 720904 0 0x00000016 0 22 720904 0 16 00 00 00 08 00 0b 00 00 00 00 00 ............ +1306 3.104570150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457353 22 18 2071873 0 0x00000012 1 2071873 0 196609 0 12 00 00 00 41 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A................. +1308 3.104869127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518787 12 -1 720904 0 0xffffffff 0 -1 720904 0 ff ff ff ff 08 00 0b 00 00 00 00 00 ............ +1320 3.144897461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457375 12 -2 82937 82954 0xfffffffe 0 -2 82937 82954 fe ff ff ff f9 43 01 00 0a 44 01 00 .....C...D.. +1329 3.206283331 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518799 12 26 730585 0 0x0000001a 0 26 730585 0 1a 00 00 00 d9 25 0b 00 00 00 00 00 .....%...... +1331 3.206631660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518811 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1656553472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 9d 1f 00 00 00 00 00 ....T.c@.^1@......C....... +1333 3.206944466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457387 12 -1 730585 0 0xffffffff 0 -1 730585 0 ff ff ff ff d9 25 0b 00 00 00 00 00 .....%...... +1335 3.207443476 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457399 12 22 720905 0 0x00000016 0 22 720905 0 16 00 00 00 09 00 0b 00 00 00 00 00 ............ +1337 3.207844734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457411 22 18 2071875 0 0x00000012 1 2071875 0 196609 0 12 00 00 00 43 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +1339 3.208272219 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518837 12 -1 720905 0 0xffffffff 0 -1 720905 0 ff ff ff ff 09 00 0b 00 00 00 00 00 ............ +1345 3.244517803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518849 12 34 730586 0 0x00000022 0 34 730586 0 22 00 00 00 da 25 0b 00 00 00 00 00 """....%......" +1347 3.244690418 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518861 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 322961408 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 40 13 02 00 00 00 00 00 b3 99 25 c3 9d 01 00 00 .....!...o3.......@.........%..... +1349 3.244870424 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518895 12 67 730587 0 0x00000043 0 67 730587 0 43 00 00 00 db 25 0b 00 00 00 00 00 C....%...... +1351 3.244961262 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518907 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 40 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d8 12 a0 7c f4 ?.....3...|8...........@.......=B.....&......... +1353 3.245182753 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457433 12 -1 730586 0 0xffffffff 0 -1 730586 0 ff ff ff ff da 25 0b 00 00 00 00 00 .....%...... +1355 3.245362759 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457445 12 -1 730587 0 0xffffffff 0 -1 730587 0 ff ff ff ff db 25 0b 00 00 00 00 00 .....%...... +1357 3.246139765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457457 12 52 720906 0 0x00000034 0 52 720906 0 34 00 00 00 0a 00 0b 00 00 00 00 00 4........... +1359 3.246285439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457469 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 40 13 02 00 00 00 00 00 00 00 13 8d 57 e0 4d 01 00 00 "0...Dk.................L."".([.....@...........W." +1361 3.246658802 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518974 12 -1 720906 0 0xffffffff 0 -1 720906 0 ff ff ff ff 0a 00 0b 00 00 00 00 00 ............ +1363 3.247580767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518986 12 30 730588 0 0x0000001e 0 30 730588 0 1e 00 00 00 dc 25 0b 00 00 00 00 00 .....%...... +1365 3.247828007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333518998 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1656422400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......E........... +1367 3.248179913 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457521 12 -1 730588 0 0xffffffff 0 -1 730588 0 ff ff ff ff dc 25 0b 00 00 00 00 00 .....%...... +1369 3.248637199 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457533 12 26 720907 0 0x0000001a 0 26 720907 0 1a 00 00 00 0b 00 0b 00 00 00 00 00 ............ +1371 3.248811007 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457545 26 22 2071877 0 0x00000016 1 2071877 0 196609 0 16 00 00 00 45 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E..................... +1373 3.249057770 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519028 12 -1 720907 0 0xffffffff 0 -1 720907 0 ff ff ff ff 0b 00 0b 00 00 00 00 00 ............ +1446 3.311104536 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519040 12 26 730589 0 0x0000001a 0 26 730589 0 1a 00 00 00 dd 25 0b 00 00 00 00 00 .....%...... +1448 3.311269045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519052 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1656291328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 9d 1f 00 00 00 00 00 ....T.c@.^1@......G....... +1450 3.311712742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457571 12 -1 730589 0 0xffffffff 0 -1 730589 0 ff ff ff ff dd 25 0b 00 00 00 00 00 .....%...... +1452 3.312069654 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457583 12 22 720908 0 0x00000016 0 22 720908 0 16 00 00 00 0c 00 0b 00 00 00 00 00 ............ +1454 3.312226772 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457595 22 18 2071879 0 0x00000012 1 2071879 0 196609 0 12 00 00 00 47 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +1456 3.312648296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519078 12 -1 720908 0 0xffffffff 0 -1 720908 0 ff ff ff ff 0c 00 0b 00 00 00 00 00 ............ +1464 3.384802341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519090 12 -2 82955 82937 0xfffffffe 0 -2 82955 82937 fe ff ff ff 0b 44 01 00 f9 43 01 00 .....D...C.. +1469 3.415063620 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519102 12 26 730590 0 0x0000001a 0 26 730590 0 1a 00 00 00 de 25 0b 00 00 00 00 00 .....%...... +1471 3.415226698 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519114 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1656160256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 9d 1f 00 00 00 00 00 ....T.c@.^1@......I....... +1473 3.415572643 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457617 12 -1 730590 0 0xffffffff 0 -1 730590 0 ff ff ff ff de 25 0b 00 00 00 00 00 .....%...... +1475 3.415977240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457629 12 22 720909 0 0x00000016 0 22 720909 0 16 00 00 00 0d 00 0b 00 00 00 00 00 ............ +1477 3.416139126 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457641 22 18 2071881 0 0x00000012 1 2071881 0 196609 0 12 00 00 00 49 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I................. +1479 3.416424751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519140 12 -1 720909 0 0xffffffff 0 -1 720909 0 ff ff ff ff 0d 00 0b 00 00 00 00 00 ............ +1489 3.518413067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519152 12 26 730591 0 0x0000001a 0 26 730591 0 1a 00 00 00 df 25 0b 00 00 00 00 00 .....%...... +1491 3.518684626 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519164 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1656029184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 9d 1f 00 00 00 00 00 ....T.c@.^1@......K....... +1493 3.519109964 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457663 12 -1 730591 0 0xffffffff 0 -1 730591 0 ff ff ff ff df 25 0b 00 00 00 00 00 .....%...... +1495 3.519446850 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457675 12 22 720910 0 0x00000016 0 22 720910 0 16 00 00 00 0e 00 0b 00 00 00 00 00 ............ +1497 3.519773245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457687 22 18 2071883 0 0x00000012 1 2071883 0 196609 0 12 00 00 00 4b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +1499 3.520044565 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519190 12 -1 720910 0 0xffffffff 0 -1 720910 0 ff ff ff ff 0e 00 0b 00 00 00 00 00 ............ +1510 3.548621655 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519202 12 101 730592 0 0x00000065 0 101 730592 0 65 00 00 00 e0 25 0b 00 00 00 00 00 e....%...... +1512 3.548874617 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519214 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 41 13 02 00 00 00 00 00 e4 9a 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 41 13 02 00 00 00 00 .....!...o3.......A.........%.....?.....3...|8.. +1514 3.549219847 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457709 12 -1 730592 0 0xffffffff 0 -1 730592 0 ff ff ff ff e0 25 0b 00 00 00 00 00 .....%...... +1516 3.550068855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457721 12 52 720911 0 0x00000034 0 52 720911 0 34 00 00 00 0f 00 0b 00 00 00 00 00 4........... +1518 3.550222874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457733 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 41 13 02 00 00 00 00 00 00 00 e5 ee 85 e0 4d 01 00 00 "0...Dk.................L."".([.....A............." +1520 3.550474405 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519315 12 -1 720911 0 0xffffffff 0 -1 720911 0 ff ff ff ff 0f 00 0b 00 00 00 00 00 ............ +1522 3.551280975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519327 12 30 730593 0 0x0000001e 0 30 730593 0 1e 00 00 00 e1 25 0b 00 00 00 00 00 .....%...... +1524 3.551424742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519339 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1655898112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......M........... +1526 3.551777363 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457785 12 -1 730593 0 0xffffffff 0 -1 730593 0 ff ff ff ff e1 25 0b 00 00 00 00 00 .....%...... +1528 3.552014589 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457797 12 26 720912 0 0x0000001a 0 26 720912 0 1a 00 00 00 10 00 0b 00 00 00 00 00 ............ +1530 3.552159071 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457809 26 22 2071885 0 0x00000016 1 2071885 0 196609 0 16 00 00 00 4d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M..................... +1532 3.552566290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519369 12 -1 720912 0 0xffffffff 0 -1 720912 0 ff ff ff ff 10 00 0b 00 00 00 00 00 ............ +1538 3.621283054 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519381 12 26 730594 0 0x0000001a 0 26 730594 0 1a 00 00 00 e2 25 0b 00 00 00 00 00 .....%...... +1540 3.621475458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519393 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1655767040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 9d 1f 00 00 00 00 00 ....T.c@.^1@......O....... +1542 3.621821642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457835 12 -1 730594 0 0xffffffff 0 -1 730594 0 ff ff ff ff e2 25 0b 00 00 00 00 00 .....%...... +1544 3.622634411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457847 12 22 720913 0 0x00000016 0 22 720913 0 16 00 00 00 11 00 0b 00 00 00 00 00 ............ +1546 3.622772217 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457859 22 18 2071887 0 0x00000012 1 2071887 0 196609 0 12 00 00 00 4f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +1548 3.623037577 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519419 12 -1 720913 0 0xffffffff 0 -1 720913 0 ff ff ff ff 11 00 0b 00 00 00 00 00 ............ +1558 3.644740582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457881 12 -2 82938 82955 0xfffffffe 0 -2 82938 82955 fe ff ff ff fa 43 01 00 0b 44 01 00 .....C...D.. +1590 3.724333048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519431 12 26 730595 0 0x0000001a 0 26 730595 0 1a 00 00 00 e3 25 0b 00 00 00 00 00 .....%...... +1593 3.724510431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519443 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1655635968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 9d 1f 00 00 00 00 00 ....T.c@.^1@......Q....... +1596 3.724957943 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457893 12 -1 730595 0 0xffffffff 0 -1 730595 0 ff ff ff ff e3 25 0b 00 00 00 00 00 .....%...... +1598 3.725354195 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457905 12 22 720914 0 0x00000016 0 22 720914 0 16 00 00 00 12 00 0b 00 00 00 00 00 ............ +1600 3.725526094 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457917 22 18 2071889 0 0x00000012 1 2071889 0 196609 0 12 00 00 00 51 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q................. +1602 3.725893021 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519469 12 -1 720914 0 0xffffffff 0 -1 720914 0 ff ff ff ff 12 00 0b 00 00 00 00 00 ............ +1611 3.827182055 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519481 12 26 730596 0 0x0000001a 0 26 730596 0 1a 00 00 00 e4 25 0b 00 00 00 00 00 .....%...... +1613 3.827363968 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519493 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1655504896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 9d 1f 00 00 00 00 00 ....T.c@.^1@......S....... +1615 3.827806473 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457939 12 -1 730596 0 0xffffffff 0 -1 730596 0 ff ff ff ff e4 25 0b 00 00 00 00 00 .....%...... +1617 3.828261137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457951 12 22 720915 0 0x00000016 0 22 720915 0 16 00 00 00 13 00 0b 00 00 00 00 00 ............ +1619 3.828461885 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457963 22 18 2071891 0 0x00000012 1 2071891 0 196609 0 12 00 00 00 53 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +1621 3.828787804 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519519 12 -1 720915 0 0xffffffff 0 -1 720915 0 ff ff ff ff 13 00 0b 00 00 00 00 00 ............ +1625 3.852471352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519531 12 101 730597 0 0x00000065 0 101 730597 0 65 00 00 00 e5 25 0b 00 00 00 00 00 e....%...... +1627 3.852695942 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519543 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 42 13 02 00 00 00 00 00 13 9c 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 42 13 02 00 00 00 00 .....!...o3.......B.........%.....?.....3...|8.. +1629 3.853018045 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457985 12 -1 730597 0 0xffffffff 0 -1 730597 0 ff ff ff ff e5 25 0b 00 00 00 00 00 .....%...... +1632 3.854707241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377457997 12 52 720916 0 0x00000034 0 52 720916 0 34 00 00 00 14 00 0b 00 00 00 00 00 4........... +1634 3.854876280 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458009 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 42 13 02 00 00 00 00 00 00 00 33 67 b4 e0 4d 01 00 00 "0...Dk.................L."".([.....B.........3g.." +1636 3.855146170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519644 12 -1 720916 0 0xffffffff 0 -1 720916 0 ff ff ff ff 14 00 0b 00 00 00 00 00 ............ +1638 3.856120348 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519656 12 30 730598 0 0x0000001e 0 30 730598 0 1e 00 00 00 e6 25 0b 00 00 00 00 00 .....%...... +1640 3.856320381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519668 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1655373824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......U........... +1642 3.856777430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458061 12 -1 730598 0 0xffffffff 0 -1 730598 0 ff ff ff ff e6 25 0b 00 00 00 00 00 .....%...... +1644 3.857140303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458073 12 26 720917 0 0x0000001a 0 26 720917 0 1a 00 00 00 15 00 0b 00 00 00 00 00 ............ +1646 3.857291937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458085 26 22 2071893 0 0x00000016 1 2071893 0 196609 0 16 00 00 00 55 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U..................... +1648 3.857647657 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519698 12 -1 720917 0 0xffffffff 0 -1 720917 0 ff ff ff ff 15 00 0b 00 00 00 00 00 ............ +1654 3.885697126 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519710 12 -2 82956 82938 0xfffffffe 0 -2 82956 82938 fe ff ff ff 0c 44 01 00 fa 43 01 00 .....D...C.. +1664 3.930432320 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519722 12 26 730599 0 0x0000001a 0 26 730599 0 1a 00 00 00 e7 25 0b 00 00 00 00 00 .....%...... +1666 3.930603266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519734 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1655242752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 9d 1f 00 00 00 00 00 ....T.c@.^1@......W....... +1668 3.930928707 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458111 12 -1 730599 0 0xffffffff 0 -1 730599 0 ff ff ff ff e7 25 0b 00 00 00 00 00 .....%...... +1670 3.932100058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458123 12 22 720918 0 0x00000016 0 22 720918 0 16 00 00 00 16 00 0b 00 00 00 00 00 ............ +1672 3.932249784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458135 22 18 2071895 0 0x00000012 1 2071895 0 196609 0 12 00 00 00 57 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +1674 3.932512283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519760 12 -1 720918 0 0xffffffff 0 -1 720918 0 ff ff ff ff 16 00 0b 00 00 00 00 00 ............ +1697 4.034073353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519772 12 26 730600 0 0x0000001a 0 26 730600 0 1a 00 00 00 e8 25 0b 00 00 00 00 00 .....%...... +1699 4.034236431 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519784 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1655111680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 9d 1f 00 00 00 00 00 ....T.c@.^1@......Y....... +1701 4.034558773 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458157 12 -1 730600 0 0xffffffff 0 -1 730600 0 ff ff ff ff e8 25 0b 00 00 00 00 00 .....%...... +1703 4.035125971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458169 12 22 720919 0 0x00000016 0 22 720919 0 16 00 00 00 17 00 0b 00 00 00 00 00 ............ +1705 4.035286188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458181 22 18 2071897 0 0x00000012 1 2071897 0 196609 0 12 00 00 00 59 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y................. +1707 4.035537720 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519810 12 -1 720919 0 0xffffffff 0 -1 720919 0 ff ff ff ff 17 00 0b 00 00 00 00 00 ............ +1725 4.138205290 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519822 12 26 730601 0 0x0000001a 0 26 730601 0 1a 00 00 00 e9 25 0b 00 00 00 00 00 .....%...... +1727 4.138461113 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519834 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1654980608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 9d 1f 00 00 00 00 00 ....T.c@.^1@......[....... +1729 4.138730764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458203 12 -1 730601 0 0xffffffff 0 -1 730601 0 ff ff ff ff e9 25 0b 00 00 00 00 00 .....%...... +1731 4.139205933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458215 12 22 720920 0 0x00000016 0 22 720920 0 16 00 00 00 18 00 0b 00 00 00 00 00 ............ +1733 4.139433146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458227 22 18 2071899 0 0x00000012 1 2071899 0 196609 0 12 00 00 00 5b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +1735 4.139727831 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519860 12 -1 720920 0 0xffffffff 0 -1 720920 0 ff ff ff ff 18 00 0b 00 00 00 00 00 ............ +1739 4.145129681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458249 12 -2 82939 82956 0xfffffffe 0 -2 82939 82956 fe ff ff ff fb 43 01 00 0c 44 01 00 .....C...D.. +1745 4.157303095 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519872 12 101 730602 0 0x00000065 0 101 730602 0 65 00 00 00 ea 25 0b 00 00 00 00 00 e....%...... +1747 4.157523155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519884 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 43 13 02 00 00 00 00 00 44 9d 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 43 13 02 00 00 00 00 .....!...o3.......C.......D.%.....?.....3...|8.. +1749 4.157850266 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458261 12 -1 730602 0 0xffffffff 0 -1 730602 0 ff ff ff ff ea 25 0b 00 00 00 00 00 .....%...... +1751 4.158781052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458273 12 52 720921 0 0x00000034 0 52 720921 0 34 00 00 00 19 00 0b 00 00 00 00 00 4........... +1753 4.158936977 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458285 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 43 13 02 00 00 00 00 00 00 00 f9 cf e2 e0 4d 01 00 00 "0...Dk.................L."".([.....C............." +1755 4.159210920 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519985 12 -1 720921 0 0xffffffff 0 -1 720921 0 ff ff ff ff 19 00 0b 00 00 00 00 00 ............ +1757 4.160176516 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333519997 12 30 730603 0 0x0000001e 0 30 730603 0 1e 00 00 00 eb 25 0b 00 00 00 00 00 .....%...... +1759 4.160333633 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520009 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1654849536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......]........... +1761 4.160834312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458337 12 -1 730603 0 0xffffffff 0 -1 730603 0 ff ff ff ff eb 25 0b 00 00 00 00 00 .....%...... +1763 4.161074162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458349 12 26 720922 0 0x0000001a 0 26 720922 0 1a 00 00 00 1a 00 0b 00 00 00 00 00 ............ +1765 4.161252499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458361 26 22 2071901 0 0x00000016 1 2071901 0 196609 0 16 00 00 00 5d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....]..................... +1767 4.161512375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520039 12 -1 720922 0 0xffffffff 0 -1 720922 0 ff ff ff ff 1a 00 0b 00 00 00 00 00 ............ +1797 4.241995335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520051 12 26 730604 0 0x0000001a 0 26 730604 0 1a 00 00 00 ec 25 0b 00 00 00 00 00 .....%...... +1799 4.242155552 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520063 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1654718464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 9d 1f 00 00 00 00 00 ....T.c@.^1@......_....... +1801 4.242535830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458387 12 -1 730604 0 0xffffffff 0 -1 730604 0 ff ff ff ff ec 25 0b 00 00 00 00 00 .....%...... +1803 4.243995190 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458399 12 22 720923 0 0x00000016 0 22 720923 0 16 00 00 00 1b 00 0b 00 00 00 00 00 ............ +1805 4.244135380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458411 22 18 2071903 0 0x00000012 1 2071903 0 196609 0 12 00 00 00 5f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +1807 4.244398355 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520089 12 -1 720923 0 0xffffffff 0 -1 720923 0 ff ff ff ff 1b 00 0b 00 00 00 00 00 ............ +1815 4.347234249 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520101 12 26 730605 0 0x0000001a 0 26 730605 0 1a 00 00 00 ed 25 0b 00 00 00 00 00 .....%...... +1817 4.347495079 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520113 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1654587392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 9d 1f 00 00 00 00 00 ....T.c@.^1@......a....... +1819 4.347942829 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458433 12 -1 730605 0 0xffffffff 0 -1 730605 0 ff ff ff ff ed 25 0b 00 00 00 00 00 .....%...... +1821 4.348362446 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458445 12 22 720924 0 0x00000016 0 22 720924 0 16 00 00 00 1c 00 0b 00 00 00 00 00 ............ +1823 4.348560333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458457 22 18 2071905 0 0x00000012 1 2071905 0 196609 0 12 00 00 00 61 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a................. +1825 4.348830700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520139 12 -1 720924 0 0xffffffff 0 -1 720924 0 ff ff ff ff 1c 00 0b 00 00 00 00 00 ............ +1841 4.388065577 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520151 12 -2 82957 82939 0xfffffffe 0 -2 82957 82939 fe ff ff ff 0d 44 01 00 fb 43 01 00 .....D...C.. +1855 4.450612783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520163 12 26 730606 0 0x0000001a 0 26 730606 0 1a 00 00 00 ee 25 0b 00 00 00 00 00 .....%...... +1857 4.450830936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520175 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1654456320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 9d 1f 00 00 00 00 00 ....T.c@.^1@......c....... +1859 4.451182842 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458479 12 -1 730606 0 0xffffffff 0 -1 730606 0 ff ff ff ff ee 25 0b 00 00 00 00 00 .....%...... +1861 4.451802015 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458491 12 22 720925 0 0x00000016 0 22 720925 0 16 00 00 00 1d 00 0b 00 00 00 00 00 ............ +1863 4.452026129 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458503 22 18 2071907 0 0x00000012 1 2071907 0 196609 0 12 00 00 00 63 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +1865 4.452323437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520201 12 -1 720925 0 0xffffffff 0 -1 720925 0 ff ff ff ff 1d 00 0b 00 00 00 00 00 ............ +1871 4.461250782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520213 12 34 730607 0 0x00000022 0 34 730607 0 22 00 00 00 ef 25 0b 00 00 00 00 00 """....%......" +1873 4.461532354 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520225 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323223552 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 44 13 02 00 00 00 00 00 74 9e 25 c3 9d 01 00 00 .....!...o3.......D.......t.%..... +1875 4.461735487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520259 12 67 730608 0 0x00000043 0 67 730608 0 43 00 00 00 f0 25 0b 00 00 00 00 00 C....%...... +1877 4.461829662 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458525 12 -1 730607 0 0xffffffff 0 -1 730607 0 ff ff ff ff ef 25 0b 00 00 00 00 00 .....%...... +1879 4.462041378 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520271 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 44 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 44 43 24 c5 f4 ?.....3...|8...........D.......=B.....&......... +1881 4.462403774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458537 12 -1 730608 0 0xffffffff 0 -1 730608 0 ff ff ff ff f0 25 0b 00 00 00 00 00 .....%...... +1883 4.463298559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458549 12 52 720926 0 0x00000034 0 52 720926 0 34 00 00 00 1e 00 0b 00 00 00 00 00 4........... +1885 4.463467360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458561 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 44 13 02 00 00 00 00 00 00 00 f3 45 11 e1 4d 01 00 00 "0...Dk.................L."".([.....D..........E.." +1887 4.463635206 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520338 12 -1 720926 0 0xffffffff 0 -1 720926 0 ff ff ff ff 1e 00 0b 00 00 00 00 00 ............ +1889 4.464893579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520350 12 30 730609 0 0x0000001e 0 30 730609 0 1e 00 00 00 f1 25 0b 00 00 00 00 00 .....%...... +1891 4.465053558 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520362 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1654325248 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......e........... +1893 4.465383053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458613 12 -1 730609 0 0xffffffff 0 -1 730609 0 ff ff ff ff f1 25 0b 00 00 00 00 00 .....%...... +1895 4.465880871 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458625 12 26 720927 0 0x0000001a 0 26 720927 0 1a 00 00 00 1f 00 0b 00 00 00 00 00 ............ +1897 4.466033936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458637 26 22 2071909 0 0x00000016 1 2071909 0 196609 0 16 00 00 00 65 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e..................... +1899 4.466371059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520392 12 -1 720927 0 0xffffffff 0 -1 720927 0 ff ff ff ff 1f 00 0b 00 00 00 00 00 ............ +1919 4.554054499 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520404 12 26 730610 0 0x0000001a 0 26 730610 0 1a 00 00 00 f2 25 0b 00 00 00 00 00 .....%...... +1921 4.554236174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520416 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1654194176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 9d 1f 00 00 00 00 00 ....T.c@.^1@......g....... +1923 4.554591417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458663 12 -1 730610 0 0xffffffff 0 -1 730610 0 ff ff ff ff f2 25 0b 00 00 00 00 00 .....%...... +1925 4.555043936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458675 12 22 720928 0 0x00000016 0 22 720928 0 16 00 00 00 20 00 0b 00 00 00 00 00 .... ....... +1927 4.555213690 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458687 22 18 2071911 0 0x00000012 1 2071911 0 196609 0 12 00 00 00 67 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +1929 4.555594683 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520442 12 -1 720928 0 0xffffffff 0 -1 720928 0 ff ff ff ff 20 00 0b 00 00 00 00 00 .... ....... +1957 4.646390438 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458709 12 -2 82940 82957 0xfffffffe 0 -2 82940 82957 fe ff ff ff fc 43 01 00 0d 44 01 00 .....C...D.. +1963 4.657119751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520454 12 26 730611 0 0x0000001a 0 26 730611 0 1a 00 00 00 f3 25 0b 00 00 00 00 00 .....%...... +1965 4.657282591 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520466 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1654063104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 9d 1f 00 00 00 00 00 ....T.c@.^1@......i....... +1967 4.657646418 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458721 12 -1 730611 0 0xffffffff 0 -1 730611 0 ff ff ff ff f3 25 0b 00 00 00 00 00 .....%...... +1969 4.658100128 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458733 12 22 720929 0 0x00000016 0 22 720929 0 16 00 00 00 21 00 0b 00 00 00 00 00 ....!....... +1971 4.658249617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458745 22 18 2071913 0 0x00000012 1 2071913 0 196609 0 12 00 00 00 69 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i................. +1973 4.658445358 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520492 12 -1 720929 0 0xffffffff 0 -1 720929 0 ff ff ff ff 21 00 0b 00 00 00 00 00 ....!....... +2001 4.760539055 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520504 12 26 730612 0 0x0000001a 0 26 730612 0 1a 00 00 00 f4 25 0b 00 00 00 00 00 .....%...... +2003 4.760708332 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520516 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1653932032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 9d 1f 00 00 00 00 00 ....T.c@.^1@......k....... +2005 4.761056900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458767 12 -1 730612 0 0xffffffff 0 -1 730612 0 ff ff ff ff f4 25 0b 00 00 00 00 00 .....%...... +2007 4.761568069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458779 12 22 720930 0 0x00000016 0 22 720930 0 16 00 00 00 22 00 0b 00 00 00 00 00 "....""......." +2009 4.761723042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458791 22 18 2071915 0 0x00000012 1 2071915 0 196609 0 12 00 00 00 6b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +2011 4.762153149 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520542 12 -1 720930 0 0xffffffff 0 -1 720930 0 ff ff ff ff 22 00 0b 00 00 00 00 00 "....""......." +2013 4.766844034 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520554 12 34 730613 0 0x00000022 0 34 730613 0 22 00 00 00 f5 25 0b 00 00 00 00 00 """....%......" +2015 4.767057896 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520566 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323289088 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 45 13 02 00 00 00 00 00 a6 9f 25 c3 9d 01 00 00 .....!...o3.......E.........%..... +2017 4.767203093 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520600 12 67 730614 0 0x00000043 0 67 730614 0 43 00 00 00 f6 25 0b 00 00 00 00 00 C....%...... +2019 4.767287970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520612 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 45 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 15 4f d7 f4 ?.....3...|8...........E.......=B.....&......... +2020 4.767360210 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458813 12 -1 730613 0 0xffffffff 0 -1 730613 0 ff ff ff ff f5 25 0b 00 00 00 00 00 .....%...... +2022 4.767637014 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458825 12 -1 730614 0 0xffffffff 0 -1 730614 0 ff ff ff ff f6 25 0b 00 00 00 00 00 .....%...... +2024 4.768551350 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458837 12 52 720931 0 0x00000034 0 52 720931 0 34 00 00 00 23 00 0b 00 00 00 00 00 4...#....... +2026 4.768712759 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458849 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 45 13 02 00 00 00 00 00 00 00 e2 db 3f e1 4d 01 00 00 "0...Dk.................L."".([.....E...........?." +2028 4.768891811 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520679 12 -1 720931 0 0xffffffff 0 -1 720931 0 ff ff ff ff 23 00 0b 00 00 00 00 00 ....#....... +2030 4.769808054 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520691 12 30 730615 0 0x0000001e 0 30 730615 0 1e 00 00 00 f7 25 0b 00 00 00 00 00 .....%...... +2032 4.769977570 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520703 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1653800960 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......m........... +2034 4.770303726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458901 12 -1 730615 0 0xffffffff 0 -1 730615 0 ff ff ff ff f7 25 0b 00 00 00 00 00 .....%...... +2036 4.770684242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458913 12 26 720932 0 0x0000001a 0 26 720932 0 1a 00 00 00 24 00 0b 00 00 00 00 00 ....$....... +2038 4.770838976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458925 26 22 2071917 0 0x00000016 1 2071917 0 196609 0 16 00 00 00 6d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....m..................... +2040 4.771101475 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520733 12 -1 720932 0 0xffffffff 0 -1 720932 0 ff ff ff ff 24 00 0b 00 00 00 00 00 ....$....... +2060 4.863500357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520745 12 26 730616 0 0x0000001a 0 26 730616 0 1a 00 00 00 f8 25 0b 00 00 00 00 00 .....%...... +2062 4.863729239 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520757 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1653669888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 9d 1f 00 00 00 00 00 ....T.c@.^1@......o....... +2064 4.864034653 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458951 12 -1 730616 0 0xffffffff 0 -1 730616 0 ff ff ff ff f8 25 0b 00 00 00 00 00 .....%...... +2066 4.864533186 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458963 12 22 720933 0 0x00000016 0 22 720933 0 16 00 00 00 25 00 0b 00 00 00 00 00 ....%....... +2068 4.864737034 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458975 22 18 2071919 0 0x00000012 1 2071919 0 196609 0 12 00 00 00 6f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +2070 4.865077972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520783 12 -1 720933 0 0xffffffff 0 -1 720933 0 ff ff ff ff 25 00 0b 00 00 00 00 00 ....%....... +2080 4.890017748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520795 12 -2 82958 82940 0xfffffffe 0 -2 82958 82940 fe ff ff ff 0e 44 01 00 fc 43 01 00 .....D...C.. +2102 4.966938972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520807 12 26 730617 0 0x0000001a 0 26 730617 0 1a 00 00 00 f9 25 0b 00 00 00 00 00 .....%...... +2104 4.967105865 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520819 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1653538816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 9d 1f 00 00 00 00 00 ....T.c@.^1@......q....... +2106 4.967466831 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377458997 12 -1 730617 0 0xffffffff 0 -1 730617 0 ff ff ff ff f9 25 0b 00 00 00 00 00 .....%...... +2108 4.967953682 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459009 12 22 720934 0 0x00000016 0 22 720934 0 16 00 00 00 26 00 0b 00 00 00 00 00 ....&....... +2110 4.968133450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459021 22 18 2071921 0 0x00000012 1 2071921 0 196609 0 12 00 00 00 71 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q................. +2112 4.968522072 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520845 12 -1 720934 0 0xffffffff 0 -1 720934 0 ff ff ff ff 26 00 0b 00 00 00 00 00 ....&....... +2160 5.069892645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520857 12 26 730618 0 0x0000001a 0 26 730618 0 1a 00 00 00 fa 25 0b 00 00 00 00 00 .....%...... +2162 5.070069313 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520869 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1653407744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 9d 1f 00 00 00 00 00 ....T.c@.^1@......s....... +2164 5.070443153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459043 12 -1 730618 0 0xffffffff 0 -1 730618 0 ff ff ff ff fa 25 0b 00 00 00 00 00 .....%...... +2166 5.071012020 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459055 12 22 720935 0 0x00000016 0 22 720935 0 16 00 00 00 27 00 0b 00 00 00 00 00 ....'....... +2168 5.071249485 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459067 22 18 2071923 0 0x00000012 1 2071923 0 196609 0 12 00 00 00 73 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +2169 5.071288586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520895 12 34 730619 0 0x00000022 0 34 730619 0 22 00 00 00 fb 25 0b 00 00 00 00 00 """....%......" +2172 5.071607590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520907 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323354624 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 46 13 02 00 00 00 00 00 d6 a0 25 c3 9d 01 00 00 .....!...o3.......F.........%..... +2174 5.071800709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520941 12 67 730620 0 0x00000043 0 67 730620 0 43 00 00 00 fc 25 0b 00 00 00 00 00 C....%...... +2176 5.071891069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333520953 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 46 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc b4 80 e9 f4 ?.....3...|8...........F.......=B.....&......... +2177 5.071913004 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459089 12 -1 730619 0 0xffffffff 0 -1 730619 0 ff ff ff ff fb 25 0b 00 00 00 00 00 .....%...... +2180 5.072201967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521020 12 -1 720935 0 0xffffffff 0 -1 720935 0 ff ff ff ff 27 00 0b 00 00 00 00 00 ....'....... +2182 5.072289467 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459101 12 -1 730620 0 0xffffffff 0 -1 730620 0 ff ff ff ff fc 25 0b 00 00 00 00 00 .....%...... +2187 5.073154926 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459113 12 52 720936 0 0x00000034 0 52 720936 0 34 00 00 00 28 00 0b 00 00 00 00 00 4...(....... +2189 5.073301792 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459125 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 46 13 02 00 00 00 00 00 00 00 79 55 6e e1 4d 01 00 00 "0...Dk.................L."".([.....F.........yUn." +2191 5.073514700 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521032 12 -1 720936 0 0xffffffff 0 -1 720936 0 ff ff ff ff 28 00 0b 00 00 00 00 00 ....(....... +2193 5.074746847 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521044 12 30 730621 0 0x0000001e 0 30 730621 0 1e 00 00 00 fd 25 0b 00 00 00 00 00 .....%...... +2195 5.074937344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521056 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1653276672 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 75 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......u........... +2197 5.075293064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459177 12 -1 730621 0 0xffffffff 0 -1 730621 0 ff ff ff ff fd 25 0b 00 00 00 00 00 .....%...... +2198 5.075721264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459189 12 26 720937 0 0x0000001a 0 26 720937 0 1a 00 00 00 29 00 0b 00 00 00 00 00 ....)....... +2199 5.075871468 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459201 26 22 2071925 0 0x00000016 1 2071925 0 196609 0 16 00 00 00 75 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....u..................... +2200 5.076101542 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521086 12 -1 720937 0 0xffffffff 0 -1 720937 0 ff ff ff ff 29 00 0b 00 00 00 00 00 ....)....... +2235 5.147056818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459227 12 -2 82941 82958 0xfffffffe 0 -2 82941 82958 fe ff ff ff fd 43 01 00 0e 44 01 00 .....C...D.. +2258 5.173957586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521098 12 26 730622 0 0x0000001a 0 26 730622 0 1a 00 00 00 fe 25 0b 00 00 00 00 00 .....%...... +2260 5.174178600 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521110 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1653145600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 9d 1f 00 00 00 00 00 ....T.c@.^1@......w....... +2262 5.174509764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459239 12 -1 730622 0 0xffffffff 0 -1 730622 0 ff ff ff ff fe 25 0b 00 00 00 00 00 .....%...... +2264 5.175059319 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459251 12 22 720938 0 0x00000016 0 22 720938 0 16 00 00 00 2a 00 0b 00 00 00 00 00 ....*....... +2266 5.175221920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459263 22 18 2071927 0 0x00000012 1 2071927 0 196609 0 12 00 00 00 77 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +2268 5.175548792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521136 12 -1 720938 0 0xffffffff 0 -1 720938 0 ff ff ff ff 2a 00 0b 00 00 00 00 00 ....*....... +2320 5.276667118 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521148 12 26 730623 0 0x0000001a 0 26 730623 0 1a 00 00 00 ff 25 0b 00 00 00 00 00 .....%...... +2322 5.276888371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521160 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1653014528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 9d 1f 00 00 00 00 00 ....T.c@.^1@......y....... +2324 5.277244806 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459285 12 -1 730623 0 0xffffffff 0 -1 730623 0 ff ff ff ff ff 25 0b 00 00 00 00 00 .....%...... +2326 5.277667046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459297 12 22 720939 0 0x00000016 0 22 720939 0 16 00 00 00 2b 00 0b 00 00 00 00 00 ....+....... +2328 5.277816296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459309 22 18 2071929 0 0x00000012 1 2071929 0 196609 0 12 00 00 00 79 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y................. +2334 5.278153181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521186 12 -1 720939 0 0xffffffff 0 -1 720939 0 ff ff ff ff 2b 00 0b 00 00 00 00 00 ....+....... +2390 5.376468420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521198 12 34 730624 0 0x00000022 0 34 730624 0 22 00 00 00 00 26 0b 00 00 00 00 00 """....&......" +2392 5.376657486 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521210 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323420160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 47 13 02 00 00 00 00 00 08 a2 25 c3 9d 01 00 00 .....!...o3.......G.........%..... +2394 5.376794577 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521244 12 67 730625 0 0x00000043 0 67 730625 0 43 00 00 00 01 26 0b 00 00 00 00 00 C....&...... +2396 5.376885891 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521256 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 47 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 79 b2 fb f4 ?.....3...|8...........G.......=B.....&......... +2398 5.377012014 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459331 12 -1 730624 0 0xffffffff 0 -1 730624 0 ff ff ff ff 00 26 0b 00 00 00 00 00 .....&...... +2400 5.377231121 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459343 12 -1 730625 0 0xffffffff 0 -1 730625 0 ff ff ff ff 01 26 0b 00 00 00 00 00 .....&...... +2402 5.378277779 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459355 12 52 720940 0 0x00000034 0 52 720940 0 34 00 00 00 2c 00 0b 00 00 00 00 00 4...,....... +2404 5.378446341 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459367 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 47 13 02 00 00 00 00 00 00 00 ef e1 9c e1 4d 01 00 00 "0...Dk.................L."".([.....G............." +2406 5.378657103 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521323 12 -1 720940 0 0xffffffff 0 -1 720940 0 ff ff ff ff 2c 00 0b 00 00 00 00 00 ....,....... +2408 5.379560471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521335 12 26 730626 0 0x0000001a 0 26 730626 0 1a 00 00 00 02 26 0b 00 00 00 00 00 .....&...... +2410 5.379761457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521347 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1652883456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 9d 1f 00 00 00 00 00 ....T.c@.^1@......{....... +2416 5.380077839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521373 12 30 730627 0 0x0000001e 0 30 730627 0 1e 00 00 00 03 26 0b 00 00 00 00 00 .....&...... +2417 5.380103588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459419 12 -1 730626 0 0xffffffff 0 -1 730626 0 ff ff ff ff 02 26 0b 00 00 00 00 00 .....&...... +2419 5.380262613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521385 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1652752384 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7d 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......}........... +2421 5.380513430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459431 12 -1 730627 0 0xffffffff 0 -1 730627 0 ff ff ff ff 03 26 0b 00 00 00 00 00 .....&...... +2423 5.380771875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459443 12 22 720941 0 0x00000016 0 22 720941 0 16 00 00 00 2d 00 0b 00 00 00 00 00 ....-....... +2425 5.380944490 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459455 22 18 2071931 0 0x00000012 1 2071931 0 196609 0 12 00 00 00 7b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +2427 5.381129265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459477 12 26 720942 0 0x0000001a 0 26 720942 0 1a 00 00 00 2e 00 0b 00 00 00 00 00 ............ +2429 5.381224394 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459489 26 22 2071933 0 0x00000016 1 2071933 0 196609 0 16 00 00 00 7d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....}..................... +2431 5.381289482 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521415 12 -1 720941 0 0xffffffff 0 -1 720941 0 ff ff ff ff 2d 00 0b 00 00 00 00 00 ....-....... +2433 5.381426334 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521427 12 -1 720942 0 0xffffffff 0 -1 720942 0 ff ff ff ff 2e 00 0b 00 00 00 00 00 ............ +2443 5.390585661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521439 12 -2 82959 82941 0xfffffffe 0 -2 82959 82941 fe ff ff ff 0f 44 01 00 fd 43 01 00 .....D...C.. +2479 5.483617067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521451 12 26 730628 0 0x0000001a 0 26 730628 0 1a 00 00 00 04 26 0b 00 00 00 00 00 .....&...... +2481 5.483789921 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521463 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1652621312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2483 5.484153509 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459515 12 -1 730628 0 0xffffffff 0 -1 730628 0 ff ff ff ff 04 26 0b 00 00 00 00 00 .....&...... +2485 5.484543800 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459527 12 22 720943 0 0x00000016 0 22 720943 0 16 00 00 00 2f 00 0b 00 00 00 00 00 ..../....... +2487 5.484721899 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459539 22 18 2071935 0 0x00000012 1 2071935 0 196609 0 12 00 00 00 7f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2489 5.485028028 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521489 12 -1 720943 0 0xffffffff 0 -1 720943 0 ff ff ff ff 2f 00 0b 00 00 00 00 00 ..../....... +2560 5.587017059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521501 12 26 730629 0 0x0000001a 0 26 730629 0 1a 00 00 00 05 26 0b 00 00 00 00 00 .....&...... +2562 5.587373972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521513 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1652490240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2564 5.587727308 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459561 12 -1 730629 0 0xffffffff 0 -1 730629 0 ff ff ff ff 05 26 0b 00 00 00 00 00 .....&...... +2566 5.588211060 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459573 12 22 720944 0 0x00000016 0 22 720944 0 16 00 00 00 30 00 0b 00 00 00 00 00 ....0....... +2568 5.588358164 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459585 22 18 2071937 0 0x00000012 1 2071937 0 196609 0 12 00 00 00 81 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2570 5.588614702 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521539 12 -1 720944 0 0xffffffff 0 -1 720944 0 ff ff ff ff 30 00 0b 00 00 00 00 00 ....0....... +2606 5.648639441 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459607 12 -2 82942 82959 0xfffffffe 0 -2 82942 82959 fe ff ff ff fe 43 01 00 0f 44 01 00 .....C...D.. +2658 5.681452751 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521551 12 34 730630 0 0x00000022 0 34 730630 0 22 00 00 00 06 26 0b 00 00 00 00 00 """....&......" +2660 5.681617022 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521563 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323485696 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 48 13 02 00 00 00 00 00 38 a3 25 c3 9d 01 00 00 .....!...o3.......H.......8.%..... +2662 5.681756020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521597 12 67 730631 0 0x00000043 0 67 730631 0 43 00 00 00 07 26 0b 00 00 00 00 00 C....&...... +2664 5.681841612 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521609 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 48 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec 1f de 0d f5 ?.....3...|8...........H.......=B.....&......... +2666 5.681978941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459619 12 -1 730630 0 0xffffffff 0 -1 730630 0 ff ff ff ff 06 26 0b 00 00 00 00 00 .....&...... +2668 5.682291985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459631 12 -1 730631 0 0xffffffff 0 -1 730631 0 ff ff ff ff 07 26 0b 00 00 00 00 00 .....&...... +2670 5.683107853 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459643 12 52 720945 0 0x00000034 0 52 720945 0 34 00 00 00 31 00 0b 00 00 00 00 00 4...1....... +2672 5.683580399 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459655 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 48 13 02 00 00 00 00 00 00 00 9b 65 cb e1 4d 01 00 00 "0...Dk.................L."".([.....H..........e.." +2674 5.683850527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521676 12 -1 720945 0 0xffffffff 0 -1 720945 0 ff ff ff ff 31 00 0b 00 00 00 00 00 ....1....... +2676 5.684861660 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521688 12 30 730632 0 0x0000001e 0 30 730632 0 1e 00 00 00 08 26 0b 00 00 00 00 00 .....&...... +2678 5.685023069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521700 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1652359168 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 83 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2680 5.685444355 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459707 12 -1 730632 0 0xffffffff 0 -1 730632 0 ff ff ff ff 08 26 0b 00 00 00 00 00 .....&...... +2682 5.685742617 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459719 12 26 720946 0 0x0000001a 0 26 720946 0 1a 00 00 00 32 00 0b 00 00 00 00 00 ....2....... +2684 5.685955763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459731 26 22 2071939 0 0x00000016 1 2071939 0 196609 0 16 00 00 00 83 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2686 5.686216593 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521730 12 -1 720946 0 0xffffffff 0 -1 720946 0 ff ff ff ff 32 00 0b 00 00 00 00 00 ....2....... +2688 5.690212250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521742 12 26 730633 0 0x0000001a 0 26 730633 0 1a 00 00 00 09 26 0b 00 00 00 00 00 .....&...... +2690 5.690380335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521754 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1652228096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2692 5.690672874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459757 12 -1 730633 0 0xffffffff 0 -1 730633 0 ff ff ff ff 09 26 0b 00 00 00 00 00 .....&...... +2694 5.691058874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459769 12 22 720947 0 0x00000016 0 22 720947 0 16 00 00 00 33 00 0b 00 00 00 00 00 ....3....... +2696 5.691212893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459781 22 18 2071941 0 0x00000012 1 2071941 0 196609 0 12 00 00 00 85 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2698 5.691458464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521780 12 -1 720947 0 0xffffffff 0 -1 720947 0 ff ff ff ff 33 00 0b 00 00 00 00 00 ....3....... +2808 5.793679237 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521792 12 26 730634 0 0x0000001a 0 26 730634 0 1a 00 00 00 0a 26 0b 00 00 00 00 00 .....&...... +2810 5.793937445 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521804 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1652097024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2812 5.794331074 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459803 12 -1 730634 0 0xffffffff 0 -1 730634 0 ff ff ff ff 0a 26 0b 00 00 00 00 00 .....&...... +2814 5.795165539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459815 12 22 720948 0 0x00000016 0 22 720948 0 16 00 00 00 34 00 0b 00 00 00 00 00 ....4....... +2816 5.795380592 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459827 22 18 2071943 0 0x00000012 1 2071943 0 196609 0 12 00 00 00 87 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2818 5.795704842 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521830 12 -1 720948 0 0xffffffff 0 -1 720948 0 ff ff ff ff 34 00 0b 00 00 00 00 00 ....4....... +2843 5.892395973 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521842 12 -2 82960 82942 0xfffffffe 0 -2 82960 82942 fe ff ff ff 10 44 01 00 fe 43 01 00 .....D...C.. +2847 5.897683382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521854 12 26 730635 0 0x0000001a 0 26 730635 0 1a 00 00 00 0b 26 0b 00 00 00 00 00 .....&...... +2849 5.897854567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521866 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1651965952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2851 5.898330450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459849 12 -1 730635 0 0xffffffff 0 -1 730635 0 ff ff ff ff 0b 26 0b 00 00 00 00 00 .....&...... +2853 5.898987770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459861 12 22 720949 0 0x00000016 0 22 720949 0 16 00 00 00 35 00 0b 00 00 00 00 00 ....5....... +2855 5.899204016 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459873 22 18 2071945 0 0x00000012 1 2071945 0 196609 0 12 00 00 00 89 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2857 5.899451971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521892 12 -1 720949 0 0xffffffff 0 -1 720949 0 ff ff ff ff 35 00 0b 00 00 00 00 00 ....5....... +2876 5.986085653 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521904 12 34 730636 0 0x00000022 0 34 730636 0 22 00 00 00 0c 26 0b 00 00 00 00 00 """....&......" +2878 5.986262560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521916 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323551232 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 49 13 02 00 00 00 00 00 69 a4 25 c3 9d 01 00 00 .....!...o3.......I.......i.%..... +2880 5.986413717 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521950 12 67 730637 0 0x00000043 0 67 730637 0 43 00 00 00 0d 26 0b 00 00 00 00 00 C....&...... +2882 5.986532211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333521962 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 49 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 4c e7 f9 1f f5 ?.....3...|8...........I.......=B.....&......... +2883 5.986590147 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459895 12 -1 730636 0 0xffffffff 0 -1 730636 0 ff ff ff ff 0c 26 0b 00 00 00 00 00 .....&...... +2886 5.986805916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459907 12 -1 730637 0 0xffffffff 0 -1 730637 0 ff ff ff ff 0d 26 0b 00 00 00 00 00 .....&...... +2888 5.987991571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459919 12 52 720950 0 0x00000034 0 52 720950 0 34 00 00 00 36 00 0b 00 00 00 00 00 4...6....... +2890 5.988194466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459931 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 49 13 02 00 00 00 00 00 00 00 88 e8 f9 e1 4d 01 00 00 "0...Dk.................L."".([.....I............." +2892 5.988463163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522029 12 -1 720950 0 0xffffffff 0 -1 720950 0 ff ff ff ff 36 00 0b 00 00 00 00 00 ....6....... +2893 5.989283562 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522041 12 30 730638 0 0x0000001e 0 30 730638 0 1e 00 00 00 0e 26 0b 00 00 00 00 00 .....&...... +2895 5.989437342 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522053 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1651834880 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8b 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +2897 5.989719152 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459983 12 -1 730638 0 0xffffffff 0 -1 730638 0 ff ff ff ff 0e 26 0b 00 00 00 00 00 .....&...... +2899 5.990212440 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377459995 12 26 720951 0 0x0000001a 0 26 720951 0 1a 00 00 00 37 00 0b 00 00 00 00 00 ....7....... +2901 5.990359783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460007 26 22 2071947 0 0x00000016 1 2071947 0 196609 0 16 00 00 00 8b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +2903 5.990591764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522083 12 -1 720951 0 0xffffffff 0 -1 720951 0 ff ff ff ff 37 00 0b 00 00 00 00 00 ....7....... +2905 6.000521183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522095 12 26 730639 0 0x0000001a 0 26 730639 0 1a 00 00 00 0f 26 0b 00 00 00 00 00 .....&...... +2907 6.000669479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522107 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1651703808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2909 6.001091242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460033 12 -1 730639 0 0xffffffff 0 -1 730639 0 ff ff ff ff 0f 26 0b 00 00 00 00 00 .....&...... +2911 6.001641035 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460045 12 22 720952 0 0x00000016 0 22 720952 0 16 00 00 00 38 00 0b 00 00 00 00 00 ....8....... +2913 6.001803637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460057 22 18 2071949 0 0x00000012 1 2071949 0 196609 0 12 00 00 00 8d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2915 6.002157688 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522133 12 -1 720952 0 0xffffffff 0 -1 720952 0 ff ff ff ff 38 00 0b 00 00 00 00 00 ....8....... +2938 6.104280710 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522145 12 26 730640 0 0x0000001a 0 26 730640 0 1a 00 00 00 10 26 0b 00 00 00 00 00 .....&...... +2940 6.104514360 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522157 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1651572736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2942 6.104835510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460079 12 -1 730640 0 0xffffffff 0 -1 730640 0 ff ff ff ff 10 26 0b 00 00 00 00 00 .....&...... +2944 6.105363846 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460091 12 22 720953 0 0x00000016 0 22 720953 0 16 00 00 00 39 00 0b 00 00 00 00 00 ....9....... +2946 6.105566502 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460103 22 18 2071951 0 0x00000012 1 2071951 0 196609 0 12 00 00 00 8f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2948 6.105846405 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522183 12 -1 720953 0 0xffffffff 0 -1 720953 0 ff ff ff ff 39 00 0b 00 00 00 00 00 ....9....... +2953 6.150135756 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460125 12 -2 82943 82960 0xfffffffe 0 -2 82943 82960 fe ff ff ff ff 43 01 00 10 44 01 00 .....C...D.. +2981 6.207790136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522195 12 26 730641 0 0x0000001a 0 26 730641 0 1a 00 00 00 11 26 0b 00 00 00 00 00 .....&...... +2983 6.207984209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522207 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1651441664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +2985 6.208252668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460137 12 -1 730641 0 0xffffffff 0 -1 730641 0 ff ff ff ff 11 26 0b 00 00 00 00 00 .....&...... +2987 6.208652020 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460149 12 22 720954 0 0x00000016 0 22 720954 0 16 00 00 00 3a 00 0b 00 00 00 00 00 ....:....... +2989 6.208811998 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460161 22 18 2071953 0 0x00000012 1 2071953 0 196609 0 12 00 00 00 91 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +2991 6.209134102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522233 12 -1 720954 0 0xffffffff 0 -1 720954 0 ff ff ff ff 3a 00 0b 00 00 00 00 00 ....:....... +3017 6.291140795 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522245 12 34 730642 0 0x00000022 0 34 730642 0 22 00 00 00 12 26 0b 00 00 00 00 00 """....&......" +3019 6.291309834 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522257 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323616768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4a 13 02 00 00 00 00 00 9a a5 25 c3 9d 01 00 00 .....!...o3.......J.........%..... +3021 6.291450500 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522291 12 67 730643 0 0x00000043 0 67 730643 0 43 00 00 00 13 26 0b 00 00 00 00 00 C....&...... +3023 6.291535854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522303 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 46 37 32 f5 ?.....3...|8...........J.......=B.....&......... +3025 6.291627645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460183 12 -1 730642 0 0xffffffff 0 -1 730642 0 ff ff ff ff 12 26 0b 00 00 00 00 00 .....&...... +3027 6.291817665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460195 12 -1 730643 0 0xffffffff 0 -1 730643 0 ff ff ff ff 13 26 0b 00 00 00 00 00 .....&...... +3029 6.292700529 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460207 12 52 720955 0 0x00000034 0 52 720955 0 34 00 00 00 3b 00 0b 00 00 00 00 00 4...;....... +3031 6.292856455 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460219 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4a 13 02 00 00 00 00 00 00 00 5f 6c 28 e2 4d 01 00 00 "0...Dk.................L."".([.....J........._l(." +3033 6.293170452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522370 12 -1 720955 0 0xffffffff 0 -1 720955 0 ff ff ff ff 3b 00 0b 00 00 00 00 00 ....;....... +3035 6.293939590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522382 12 30 730644 0 0x0000001e 0 30 730644 0 1e 00 00 00 14 26 0b 00 00 00 00 00 .....&...... +3037 6.294129372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522394 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1651310592 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 93 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3039 6.294331551 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460271 12 -1 730644 0 0xffffffff 0 -1 730644 0 ff ff ff ff 14 26 0b 00 00 00 00 00 .....&...... +3041 6.294708014 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460283 12 26 720956 0 0x0000001a 0 26 720956 0 1a 00 00 00 3c 00 0b 00 00 00 00 00 ....<....... +3043 6.294861555 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460295 26 22 2071955 0 0x00000016 1 2071955 0 196609 0 16 00 00 00 93 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3045 6.295132160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522424 12 -1 720956 0 0xffffffff 0 -1 720956 0 ff ff ff ff 3c 00 0b 00 00 00 00 00 ....<....... +3051 6.310654640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522436 12 26 730645 0 0x0000001a 0 26 730645 0 1a 00 00 00 15 26 0b 00 00 00 00 00 .....&...... +3053 6.310817480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522448 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1651179520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3055 6.311146498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460321 12 -1 730645 0 0xffffffff 0 -1 730645 0 ff ff ff ff 15 26 0b 00 00 00 00 00 .....&...... +3057 6.312562466 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460333 12 22 720957 0 0x00000016 0 22 720957 0 16 00 00 00 3d 00 0b 00 00 00 00 00 ....=....... +3059 6.312723160 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460345 22 18 2071957 0 0x00000012 1 2071957 0 196609 0 12 00 00 00 95 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3061 6.313008308 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522474 12 -1 720957 0 0xffffffff 0 -1 720957 0 ff ff ff ff 3d 00 0b 00 00 00 00 00 ....=....... +3087 6.393198252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522486 12 -2 82961 82943 0xfffffffe 0 -2 82961 82943 fe ff ff ff 11 44 01 00 ff 43 01 00 .....D...C.. +3103 6.414662838 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522498 12 26 730646 0 0x0000001a 0 26 730646 0 1a 00 00 00 16 26 0b 00 00 00 00 00 .....&...... +3105 6.414866924 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522510 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1651048448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3107 6.415300131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460367 12 -1 730646 0 0xffffffff 0 -1 730646 0 ff ff ff ff 16 26 0b 00 00 00 00 00 .....&...... +3109 6.415734053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460379 12 22 720958 0 0x00000016 0 22 720958 0 16 00 00 00 3e 00 0b 00 00 00 00 00 ....>....... +3111 6.415953875 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460391 22 18 2071959 0 0x00000012 1 2071959 0 196609 0 12 00 00 00 97 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3113 6.416301250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522536 12 -1 720958 0 0xffffffff 0 -1 720958 0 ff ff ff ff 3e 00 0b 00 00 00 00 00 ....>....... +3129 6.518154144 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522548 12 26 730647 0 0x0000001a 0 26 730647 0 1a 00 00 00 17 26 0b 00 00 00 00 00 .....&...... +3131 6.518330336 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522560 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1650917376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3133 6.518768311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460413 12 -1 730647 0 0xffffffff 0 -1 730647 0 ff ff ff ff 17 26 0b 00 00 00 00 00 .....&...... +3135 6.519224405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460425 12 22 720959 0 0x00000016 0 22 720959 0 16 00 00 00 3f 00 0b 00 00 00 00 00 ....?....... +3137 6.519425154 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460437 22 18 2071961 0 0x00000012 1 2071961 0 196609 0 12 00 00 00 99 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3139 6.519720316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522586 12 -1 720959 0 0xffffffff 0 -1 720959 0 ff ff ff ff 3f 00 0b 00 00 00 00 00 ....?....... +3175 6.595282078 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522598 12 101 730648 0 0x00000065 0 101 730648 0 65 00 00 00 18 26 0b 00 00 00 00 00 e....&...... +3177 6.595514059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522610 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4b 13 02 00 00 00 00 00 ca a6 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4b 13 02 00 00 00 00 .....!...o3.......K.........%.....?.....3...|8.. +3179 6.595824480 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460459 12 -1 730648 0 0xffffffff 0 -1 730648 0 ff ff ff ff 18 26 0b 00 00 00 00 00 .....&...... +3181 6.597077131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460471 12 52 720960 0 0x00000034 0 52 720960 0 34 00 00 00 40 00 0b 00 00 00 00 00 4...@....... +3183 6.597265244 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460483 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4b 13 02 00 00 00 00 00 00 00 f5 dc 56 e2 4d 01 00 00 "0...Dk.................L."".([.....K...........V." +3185 6.597474337 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522711 12 -1 720960 0 0xffffffff 0 -1 720960 0 ff ff ff ff 40 00 0b 00 00 00 00 00 ....@....... +3187 6.598277092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522723 12 30 730649 0 0x0000001e 0 30 730649 0 1e 00 00 00 19 26 0b 00 00 00 00 00 .....&...... +3189 6.598440170 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522735 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1650786304 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9b 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3191 6.598700762 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460535 12 -1 730649 0 0xffffffff 0 -1 730649 0 ff ff ff ff 19 26 0b 00 00 00 00 00 .....&...... +3193 6.600091934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460547 12 26 720961 0 0x0000001a 0 26 720961 0 1a 00 00 00 41 00 0b 00 00 00 00 00 ....A....... +3195 6.600301027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460559 26 22 2071963 0 0x00000016 1 2071963 0 196609 0 16 00 00 00 9b 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3197 6.600593805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522765 12 -1 720961 0 0xffffffff 0 -1 720961 0 ff ff ff ff 41 00 0b 00 00 00 00 00 ....A....... +3203 6.621002913 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522777 12 26 730650 0 0x0000001a 0 26 730650 0 1a 00 00 00 1a 26 0b 00 00 00 00 00 .....&...... +3205 6.621215105 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522789 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1650655232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3207 6.621572971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460585 12 -1 730650 0 0xffffffff 0 -1 730650 0 ff ff ff ff 1a 26 0b 00 00 00 00 00 .....&...... +3209 6.622051477 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460597 12 22 720962 0 0x00000016 0 22 720962 0 16 00 00 00 42 00 0b 00 00 00 00 00 ....B....... +3211 6.622562647 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460609 22 18 2071965 0 0x00000012 1 2071965 0 196609 0 12 00 00 00 9d 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3213 6.622809649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522815 12 -1 720962 0 0xffffffff 0 -1 720962 0 ff ff ff ff 42 00 0b 00 00 00 00 00 ....B....... +3217 6.650531530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460631 12 -2 82944 82961 0xfffffffe 0 -2 82944 82961 fe ff ff ff 00 44 01 00 11 44 01 00 .....D...D.. +3225 6.724951029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522827 12 26 730651 0 0x0000001a 0 26 730651 0 1a 00 00 00 1b 26 0b 00 00 00 00 00 .....&...... +3227 6.725158453 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522839 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1650524160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3229 6.725432634 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460643 12 -1 730651 0 0xffffffff 0 -1 730651 0 ff ff ff ff 1b 26 0b 00 00 00 00 00 .....&...... +3231 6.726074934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460655 12 22 720963 0 0x00000016 0 22 720963 0 16 00 00 00 43 00 0b 00 00 00 00 00 ....C....... +3233 6.726267338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460667 22 18 2071967 0 0x00000012 1 2071967 0 196609 0 12 00 00 00 9f 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3235 6.726612568 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522865 12 -1 720963 0 0xffffffff 0 -1 720963 0 ff ff ff ff 43 00 0b 00 00 00 00 00 ....C....... +3241 6.827959538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522877 12 26 730652 0 0x0000001a 0 26 730652 0 1a 00 00 00 1c 26 0b 00 00 00 00 00 .....&...... +3243 6.828135967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522889 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1650393088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3245 6.828487396 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460689 12 -1 730652 0 0xffffffff 0 -1 730652 0 ff ff ff ff 1c 26 0b 00 00 00 00 00 .....&...... +3247 6.828997850 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460701 12 22 720964 0 0x00000016 0 22 720964 0 16 00 00 00 44 00 0b 00 00 00 00 00 ....D....... +3249 6.829151154 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460713 22 18 2071969 0 0x00000012 1 2071969 0 196609 0 12 00 00 00 a1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3251 6.829519987 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522915 12 -1 720964 0 0xffffffff 0 -1 720964 0 ff ff ff ff 44 00 0b 00 00 00 00 00 ....D....... +3270 6.893879652 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522927 12 -2 82962 82944 0xfffffffe 0 -2 82962 82944 fe ff ff ff 12 44 01 00 00 44 01 00 .....D...D.. +3273 6.899535894 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522939 12 101 730653 0 0x00000065 0 101 730653 0 65 00 00 00 1d 26 0b 00 00 00 00 00 e....&...... +3276 6.899754286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333522951 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4c 13 02 00 00 00 00 00 fa a7 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4c 13 02 00 00 00 00 .....!...o3.......L.........%.....?.....3...|8.. +3281 6.900161266 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460735 12 -1 730653 0 0xffffffff 0 -1 730653 0 ff ff ff ff 1d 26 0b 00 00 00 00 00 .....&...... +3283 6.901500225 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460747 12 52 720965 0 0x00000034 0 52 720965 0 34 00 00 00 45 00 0b 00 00 00 00 00 4...E....... +3285 6.901757002 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460759 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4c 13 02 00 00 00 00 00 00 00 5c 4f 85 e2 4d 01 00 00 "0...Dk.................L."".([.....L.........\O.." +3287 6.902046680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523052 12 -1 720965 0 0xffffffff 0 -1 720965 0 ff ff ff ff 45 00 0b 00 00 00 00 00 ....E....... +3290 6.903210640 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523064 12 30 730654 0 0x0000001e 0 30 730654 0 1e 00 00 00 1e 26 0b 00 00 00 00 00 .....&...... +3292 6.903476238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523076 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1650262016 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3294 6.903905153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460811 12 -1 730654 0 0xffffffff 0 -1 730654 0 ff ff ff ff 1e 26 0b 00 00 00 00 00 .....&...... +3296 6.904475451 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460823 12 26 720966 0 0x0000001a 0 26 720966 0 1a 00 00 00 46 00 0b 00 00 00 00 00 ....F....... +3298 6.904721737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460835 26 22 2071971 0 0x00000016 1 2071971 0 196609 0 16 00 00 00 a3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3300 6.905250549 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523106 12 -1 720966 0 0xffffffff 0 -1 720966 0 ff ff ff ff 46 00 0b 00 00 00 00 00 ....F....... +3318 6.931116343 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523118 12 26 730655 0 0x0000001a 0 26 730655 0 1a 00 00 00 1f 26 0b 00 00 00 00 00 .....&...... +3320 6.931302071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523130 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1650130944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3322 6.931694269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460861 12 -1 730655 0 0xffffffff 0 -1 730655 0 ff ff ff ff 1f 26 0b 00 00 00 00 00 .....&...... +3324 6.932088852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460873 12 22 720967 0 0x00000016 0 22 720967 0 16 00 00 00 47 00 0b 00 00 00 00 00 ....G....... +3326 6.932441950 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460885 22 18 2071973 0 0x00000012 1 2071973 0 196609 0 12 00 00 00 a5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3328 6.932723045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523156 12 -1 720967 0 0xffffffff 0 -1 720967 0 ff ff ff ff 47 00 0b 00 00 00 00 00 ....G....... +3353 7.034490824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523168 12 26 730656 0 0x0000001a 0 26 730656 0 1a 00 00 00 20 26 0b 00 00 00 00 00 .... &...... +3355 7.034668684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523180 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1649999872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3357 7.035101175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460907 12 -1 730656 0 0xffffffff 0 -1 730656 0 ff ff ff ff 20 26 0b 00 00 00 00 00 .... &...... +3359 7.035668135 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460919 12 22 720968 0 0x00000016 0 22 720968 0 16 00 00 00 48 00 0b 00 00 00 00 00 ....H....... +3361 7.035866499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460931 22 18 2071975 0 0x00000012 1 2071975 0 196609 0 12 00 00 00 a7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3363 7.036153555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523206 12 -1 720968 0 0xffffffff 0 -1 720968 0 ff ff ff ff 48 00 0b 00 00 00 00 00 ....H....... +3376 7.137818813 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523218 12 26 730657 0 0x0000001a 0 26 730657 0 1a 00 00 00 21 26 0b 00 00 00 00 00 ....!&...... +3380 7.138044834 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523230 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1649868800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3382 7.138509989 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460953 12 -1 730657 0 0xffffffff 0 -1 730657 0 ff ff ff ff 21 26 0b 00 00 00 00 00 ....!&...... +3384 7.139011383 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460965 12 22 720969 0 0x00000016 0 22 720969 0 16 00 00 00 49 00 0b 00 00 00 00 00 ....I....... +3386 7.139168739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460977 22 18 2071977 0 0x00000012 1 2071977 0 196609 0 12 00 00 00 a9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3388 7.139417648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523256 12 -1 720969 0 0xffffffff 0 -1 720969 0 ff ff ff ff 49 00 0b 00 00 00 00 00 ....I....... +3402 7.151287317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377460999 12 -2 82945 82962 0xfffffffe 0 -2 82945 82962 fe ff ff ff 01 44 01 00 12 44 01 00 .....D...D.. +3430 7.206081867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523268 12 34 730658 0 0x00000022 0 34 730658 0 22 00 00 00 22 26 0b 00 00 00 00 00 """...""&......" +3432 7.206244707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523280 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323813376 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4d 13 02 00 00 00 00 00 2d a9 25 c3 9d 01 00 00 .....!...o3.......M.......-.%..... +3434 7.206348658 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523314 12 67 730659 0 0x00000043 0 67 730659 0 43 00 00 00 23 26 0b 00 00 00 00 00 C...#&...... +3436 7.206456184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523326 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 e2 bd 68 f5 ?.....3...|8...........M.......=B.....&......... +3438 7.206567049 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461011 12 -1 730658 0 0xffffffff 0 -1 730658 0 ff ff ff ff 22 26 0b 00 00 00 00 00 "....""&......" +3440 7.206892252 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461023 12 -1 730659 0 0xffffffff 0 -1 730659 0 ff ff ff ff 23 26 0b 00 00 00 00 00 ....#&...... +3442 7.207687855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461035 12 52 720970 0 0x00000034 0 52 720970 0 34 00 00 00 4a 00 0b 00 00 00 00 00 4...J....... +3444 7.207872868 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461047 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4d 13 02 00 00 00 00 00 00 00 02 0a b4 e2 4d 01 00 00 "0...Dk.................L."".([.....M............." +3446 7.208194017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523393 12 -1 720970 0 0xffffffff 0 -1 720970 0 ff ff ff ff 4a 00 0b 00 00 00 00 00 ....J....... +3450 7.209417582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523405 12 30 730660 0 0x0000001e 0 30 730660 0 1e 00 00 00 24 26 0b 00 00 00 00 00 ....$&...... +3452 7.209593296 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523417 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1649737728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3454 7.209901571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461099 12 -1 730660 0 0xffffffff 0 -1 730660 0 ff ff ff ff 24 26 0b 00 00 00 00 00 ....$&...... +3456 7.210352659 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461111 12 26 720971 0 0x0000001a 0 26 720971 0 1a 00 00 00 4b 00 0b 00 00 00 00 00 ....K....... +3458 7.210607767 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461123 26 22 2071979 0 0x00000016 1 2071979 0 196609 0 16 00 00 00 ab 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3460 7.210840225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523447 12 -1 720971 0 0xffffffff 0 -1 720971 0 ff ff ff ff 4b 00 0b 00 00 00 00 00 ....K....... +3465 7.241124630 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523459 12 26 730661 0 0x0000001a 0 26 730661 0 1a 00 00 00 25 26 0b 00 00 00 00 00 ....%&...... +3467 7.241284609 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523471 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1649606656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3469 7.241634846 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461149 12 -1 730661 0 0xffffffff 0 -1 730661 0 ff ff ff ff 25 26 0b 00 00 00 00 00 ....%&...... +3471 7.242020130 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461161 12 22 720972 0 0x00000016 0 22 720972 0 16 00 00 00 4c 00 0b 00 00 00 00 00 ....L....... +3473 7.242213488 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461173 22 18 2071981 0 0x00000012 1 2071981 0 196609 0 12 00 00 00 ad 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3475 7.242481470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523497 12 -1 720972 0 0xffffffff 0 -1 720972 0 ff ff ff ff 4c 00 0b 00 00 00 00 00 ....L....... +3484 7.343708754 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523509 12 26 730662 0 0x0000001a 0 26 730662 0 1a 00 00 00 26 26 0b 00 00 00 00 00 ....&&...... +3486 7.343987465 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523521 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1649475584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3488 7.344406366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461195 12 -1 730662 0 0xffffffff 0 -1 730662 0 ff ff ff ff 26 26 0b 00 00 00 00 00 ....&&...... +3490 7.345027447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461207 12 22 720973 0 0x00000016 0 22 720973 0 16 00 00 00 4d 00 0b 00 00 00 00 00 ....M....... +3492 7.345215321 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461219 22 18 2071983 0 0x00000012 1 2071983 0 196609 0 12 00 00 00 af 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3494 7.345654488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523547 12 -1 720973 0 0xffffffff 0 -1 720973 0 ff ff ff ff 4d 00 0b 00 00 00 00 00 ....M....... +3522 7.394721508 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523559 12 -2 82963 82945 0xfffffffe 0 -2 82963 82945 fe ff ff ff 13 44 01 00 01 44 01 00 .....D...D.. +3553 7.448143005 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523571 12 26 730663 0 0x0000001a 0 26 730663 0 1a 00 00 00 27 26 0b 00 00 00 00 00 ....'&...... +3555 7.448314667 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523583 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1649344512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3557 7.448673248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461241 12 -1 730663 0 0xffffffff 0 -1 730663 0 ff ff ff ff 27 26 0b 00 00 00 00 00 ....'&...... +3559 7.449204206 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461253 12 22 720974 0 0x00000016 0 22 720974 0 16 00 00 00 4e 00 0b 00 00 00 00 00 ....N....... +3561 7.449461937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461265 22 18 2071985 0 0x00000012 1 2071985 0 196609 0 12 00 00 00 b1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3563 7.449729919 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523609 12 -1 720974 0 0xffffffff 0 -1 720974 0 ff ff ff ff 4e 00 0b 00 00 00 00 00 ....N....... +3573 7.510704756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523621 12 34 730664 0 0x00000022 0 34 730664 0 22 00 00 00 28 26 0b 00 00 00 00 00 """...(&......" +3575 7.510946512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523633 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323878912 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4e 13 02 00 00 00 00 00 5e aa 25 c3 9d 01 00 00 .....!...o3.......N.......^.%..... +3577 7.511138916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523667 12 67 730665 0 0x00000043 0 67 730665 0 43 00 00 00 29 26 0b 00 00 00 00 00 C...)&...... +3579 7.511264324 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523679 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4e 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 d3 e4 7a f5 ?.....3...|8...........N.......=B.....&......... +3580 7.511289835 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461287 12 -1 730664 0 0xffffffff 0 -1 730664 0 ff ff ff ff 28 26 0b 00 00 00 00 00 ....(&...... +3583 7.511534452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461299 12 -1 730665 0 0xffffffff 0 -1 730665 0 ff ff ff ff 29 26 0b 00 00 00 00 00 ....)&...... +3585 7.512663603 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461311 12 52 720975 0 0x00000034 0 52 720975 0 34 00 00 00 4f 00 0b 00 00 00 00 00 4...O....... +3587 7.512828588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461323 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4e 13 02 00 00 00 00 00 00 00 7b 92 e2 e2 4d 01 00 00 "0...Dk.................L."".([.....N.........{..." +3589 7.513163328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523746 12 -1 720975 0 0xffffffff 0 -1 720975 0 ff ff ff ff 4f 00 0b 00 00 00 00 00 ....O....... +3590 7.514075041 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523758 12 30 730666 0 0x0000001e 0 30 730666 0 1e 00 00 00 2a 26 0b 00 00 00 00 00 ....*&...... +3591 7.514235258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523770 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1649213440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3592 7.514593124 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461375 12 -1 730666 0 0xffffffff 0 -1 730666 0 ff ff ff ff 2a 26 0b 00 00 00 00 00 ....*&...... +3594 7.514992952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461387 12 26 720976 0 0x0000001a 0 26 720976 0 1a 00 00 00 50 00 0b 00 00 00 00 00 ....P....... +3596 7.515181065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461399 26 22 2071987 0 0x00000016 1 2071987 0 196609 0 16 00 00 00 b3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3598 7.515568972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523800 12 -1 720976 0 0xffffffff 0 -1 720976 0 ff ff ff ff 50 00 0b 00 00 00 00 00 ....P....... +3600 7.552629471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523812 12 26 730667 0 0x0000001a 0 26 730667 0 1a 00 00 00 2b 26 0b 00 00 00 00 00 ....+&...... +3602 7.552809000 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523824 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1649082368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3604 7.553163290 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461425 12 -1 730667 0 0xffffffff 0 -1 730667 0 ff ff ff ff 2b 26 0b 00 00 00 00 00 ....+&...... +3606 7.553653479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461437 12 22 720977 0 0x00000016 0 22 720977 0 16 00 00 00 51 00 0b 00 00 00 00 00 ....Q....... +3608 7.553810835 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461449 22 18 2071989 0 0x00000012 1 2071989 0 196609 0 12 00 00 00 b5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3610 7.554110527 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523850 12 -1 720977 0 0xffffffff 0 -1 720977 0 ff ff ff ff 51 00 0b 00 00 00 00 00 ....Q....... +3615 7.650400162 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461471 12 -2 82946 82963 0xfffffffe 0 -2 82946 82963 fe ff ff ff 02 44 01 00 13 44 01 00 .....D...D.. +3620 7.655587435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523862 12 26 730668 0 0x0000001a 0 26 730668 0 1a 00 00 00 2c 26 0b 00 00 00 00 00 ....,&...... +3622 7.655807972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523874 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1648951296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3624 7.656215906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461483 12 -1 730668 0 0xffffffff 0 -1 730668 0 ff ff ff ff 2c 26 0b 00 00 00 00 00 ....,&...... +3626 7.656841755 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461495 12 22 720978 0 0x00000016 0 22 720978 0 16 00 00 00 52 00 0b 00 00 00 00 00 ....R....... +3628 7.657052517 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461507 22 18 2071991 0 0x00000012 1 2071991 0 196609 0 12 00 00 00 b7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3630 7.657322884 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523900 12 -1 720978 0 0xffffffff 0 -1 720978 0 ff ff ff ff 52 00 0b 00 00 00 00 00 ....R....... +3680 7.759253740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523912 12 26 730669 0 0x0000001a 0 26 730669 0 1a 00 00 00 2d 26 0b 00 00 00 00 00 ....-&...... +3682 7.759391546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523924 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1648820224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3684 7.759813309 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461529 12 -1 730669 0 0xffffffff 0 -1 730669 0 ff ff ff ff 2d 26 0b 00 00 00 00 00 ....-&...... +3686 7.760725737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461541 12 22 720979 0 0x00000016 0 22 720979 0 16 00 00 00 53 00 0b 00 00 00 00 00 ....S....... +3688 7.760902405 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461553 22 18 2071993 0 0x00000012 1 2071993 0 196609 0 12 00 00 00 b9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3690 7.761262894 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523950 12 -1 720979 0 0xffffffff 0 -1 720979 0 ff ff ff ff 53 00 0b 00 00 00 00 00 ....S....... +3692 7.815759420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523962 12 34 730670 0 0x00000022 0 34 730670 0 22 00 00 00 2e 26 0b 00 00 00 00 00 """....&......" +3694 7.815923214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333523974 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 323944448 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 4f 13 02 00 00 00 00 00 8f ab 25 c3 9d 01 00 00 .....!...o3.......O.........%..... +3696 7.816061020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524008 12 67 730671 0 0x00000043 0 67 730671 0 43 00 00 00 2f 26 0b 00 00 00 00 00 C.../&...... +3698 7.816184044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524020 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 4f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 45 12 8d f5 ?.....3...|8...........O.......=B.....&......... +3699 7.816218138 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461575 12 -1 730670 0 0xffffffff 0 -1 730670 0 ff ff ff ff 2e 26 0b 00 00 00 00 00 .....&...... +3702 7.816467762 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461587 12 -1 730671 0 0xffffffff 0 -1 730671 0 ff ff ff ff 2f 26 0b 00 00 00 00 00 ..../&...... +3704 7.817514658 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461599 12 52 720980 0 0x00000034 0 52 720980 0 34 00 00 00 54 00 0b 00 00 00 00 00 4...T....... +3706 7.817806482 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461611 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 4f 13 02 00 00 00 00 00 00 00 d3 15 11 e3 4d 01 00 00 "0...Dk.................L."".([.....O............." +3708 7.818094015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524087 12 -1 720980 0 0xffffffff 0 -1 720980 0 ff ff ff ff 54 00 0b 00 00 00 00 00 ....T....... +3709 7.818990231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524099 12 30 730672 0 0x0000001e 0 30 730672 0 1e 00 00 00 30 26 0b 00 00 00 00 00 ....0&...... +3711 7.819163561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524111 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1648689152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3713 7.819463968 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461663 12 -1 730672 0 0xffffffff 0 -1 730672 0 ff ff ff ff 30 26 0b 00 00 00 00 00 ....0&...... +3715 7.820017099 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461675 12 26 720981 0 0x0000001a 0 26 720981 0 1a 00 00 00 55 00 0b 00 00 00 00 00 ....U....... +3717 7.820175409 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461687 26 22 2071995 0 0x00000016 1 2071995 0 196609 0 16 00 00 00 bb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3719 7.820544481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524141 12 -1 720981 0 0xffffffff 0 -1 720981 0 ff ff ff ff 55 00 0b 00 00 00 00 00 ....U....... +3723 7.864073992 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524153 12 26 730673 0 0x0000001a 0 26 730673 0 1a 00 00 00 31 26 0b 00 00 00 00 00 ....1&...... +3725 7.864252090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524165 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1648558080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3727 7.864546776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461713 12 -1 730673 0 0xffffffff 0 -1 730673 0 ff ff ff ff 31 26 0b 00 00 00 00 00 ....1&...... +3729 7.865033150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461725 12 22 720982 0 0x00000016 0 22 720982 0 16 00 00 00 56 00 0b 00 00 00 00 00 ....V....... +3731 7.865187168 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461737 22 18 2071997 0 0x00000012 1 2071997 0 196609 0 12 00 00 00 bd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3733 7.865575075 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524191 12 -1 720982 0 0xffffffff 0 -1 720982 0 ff ff ff ff 56 00 0b 00 00 00 00 00 ....V....... +3740 7.895272970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524203 12 -2 82964 82946 0xfffffffe 0 -2 82964 82946 fe ff ff ff 14 44 01 00 02 44 01 00 .....D...D.. +3753 7.966536283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524215 12 26 730674 0 0x0000001a 0 26 730674 0 1a 00 00 00 32 26 0b 00 00 00 00 00 ....2&...... +3755 7.966729164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524227 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1648427008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3757 7.967040539 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461759 12 -1 730674 0 0xffffffff 0 -1 730674 0 ff ff ff ff 32 26 0b 00 00 00 00 00 ....2&...... +3759 7.967643976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461771 12 22 720983 0 0x00000016 0 22 720983 0 16 00 00 00 57 00 0b 00 00 00 00 00 ....W....... +3761 7.967850447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461783 22 18 2071999 0 0x00000012 1 2071999 0 196609 0 12 00 00 00 bf 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3763 7.968044519 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524253 12 -1 720983 0 0xffffffff 0 -1 720983 0 ff ff ff ff 57 00 0b 00 00 00 00 00 ....W....... +3817 8.069467068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524265 12 26 730675 0 0x0000001a 0 26 730675 0 1a 00 00 00 33 26 0b 00 00 00 00 00 ....3&...... +3819 8.069672823 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524277 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1648295936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3821 8.070042372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461805 12 -1 730675 0 0xffffffff 0 -1 730675 0 ff ff ff ff 33 26 0b 00 00 00 00 00 ....3&...... +3823 8.070686579 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461817 12 22 720984 0 0x00000016 0 22 720984 0 16 00 00 00 58 00 0b 00 00 00 00 00 ....X....... +3825 8.070932388 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461829 22 18 2072001 0 0x00000012 1 2072001 0 196609 0 12 00 00 00 c1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3827 8.071223259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524303 12 -1 720984 0 0xffffffff 0 -1 720984 0 ff ff ff ff 58 00 0b 00 00 00 00 00 ....X....... +3840 8.120356560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524315 12 34 730676 0 0x00000022 0 34 730676 0 22 00 00 00 34 26 0b 00 00 00 00 00 """...4&......" +3845 8.120616913 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524327 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324009984 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 50 13 02 00 00 00 00 00 bf ac 25 c3 9d 01 00 00 .....!...o3.......P.........%..... +3847 8.120805025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524361 12 67 730677 0 0x00000043 0 67 730677 0 43 00 00 00 35 26 0b 00 00 00 00 00 C...5&...... +3849 8.120921850 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524373 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 50 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 64 48 3d 9f f5 ?.....3...|8...........P.......=B.....&......... +3850 8.120955229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461851 12 -1 730676 0 0xffffffff 0 -1 730676 0 ff ff ff ff 34 26 0b 00 00 00 00 00 ....4&...... +3853 8.121134520 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461863 12 -1 730677 0 0xffffffff 0 -1 730677 0 ff ff ff ff 35 26 0b 00 00 00 00 00 ....5&...... +3863 8.122746944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461875 12 52 720985 0 0x00000034 0 52 720985 0 34 00 00 00 59 00 0b 00 00 00 00 00 4...Y....... +3865 8.122908354 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461887 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 50 13 02 00 00 00 00 00 00 00 05 aa 3f e3 4d 01 00 00 "0...Dk.................L."".([.....P...........?." +3867 8.123271704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524440 12 -1 720985 0 0xffffffff 0 -1 720985 0 ff ff ff ff 59 00 0b 00 00 00 00 00 ....Y....... +3875 8.124362946 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524452 12 30 730678 0 0x0000001e 0 30 730678 0 1e 00 00 00 36 26 0b 00 00 00 00 00 ....6&...... +3879 8.124525070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524464 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1648164864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +3881 8.124830484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461939 12 -1 730678 0 0xffffffff 0 -1 730678 0 ff ff ff ff 36 26 0b 00 00 00 00 00 ....6&...... +3883 8.125158787 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461951 12 26 720986 0 0x0000001a 0 26 720986 0 1a 00 00 00 5a 00 0b 00 00 00 00 00 ....Z....... +3885 8.125358582 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461963 26 22 2072003 0 0x00000016 1 2072003 0 196609 0 16 00 00 00 c3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +3887 8.125655174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524494 12 -1 720986 0 0xffffffff 0 -1 720986 0 ff ff ff ff 5a 00 0b 00 00 00 00 00 ....Z....... +3897 8.150700331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377461989 12 -2 82947 82964 0xfffffffe 0 -2 82947 82964 fe ff ff ff 03 44 01 00 14 44 01 00 .....D...D.. +3915 8.172880888 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524506 12 26 730679 0 0x0000001a 0 26 730679 0 1a 00 00 00 37 26 0b 00 00 00 00 00 ....7&...... +3917 8.173009634 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524518 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1648033792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3919 8.173356056 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462001 12 -1 730679 0 0xffffffff 0 -1 730679 0 ff ff ff ff 37 26 0b 00 00 00 00 00 ....7&...... +3921 8.173773289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462013 12 22 720987 0 0x00000016 0 22 720987 0 16 00 00 00 5b 00 0b 00 00 00 00 00 ....[....... +3923 8.173983335 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462025 22 18 2072005 0 0x00000012 1 2072005 0 196609 0 12 00 00 00 c5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3925 8.174368143 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524544 12 -1 720987 0 0xffffffff 0 -1 720987 0 ff ff ff ff 5b 00 0b 00 00 00 00 00 ....[....... +3949 8.276051283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524556 12 26 730680 0 0x0000001a 0 26 730680 0 1a 00 00 00 38 26 0b 00 00 00 00 00 ....8&...... +3951 8.276250839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524568 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1647902720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3953 8.276625156 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462047 12 -1 730680 0 0xffffffff 0 -1 730680 0 ff ff ff ff 38 26 0b 00 00 00 00 00 ....8&...... +3955 8.277448893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462059 12 22 720988 0 0x00000016 0 22 720988 0 16 00 00 00 5c 00 0b 00 00 00 00 00 ....\....... +3957 8.277621031 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462071 22 18 2072007 0 0x00000012 1 2072007 0 196609 0 12 00 00 00 c7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3959 8.277820349 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524594 12 -1 720988 0 0xffffffff 0 -1 720988 0 ff ff ff ff 5c 00 0b 00 00 00 00 00 ....\....... +3971 8.379999638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524606 12 26 730681 0 0x0000001a 0 26 730681 0 1a 00 00 00 39 26 0b 00 00 00 00 00 ....9&...... +3973 8.380441427 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524618 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1647771648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +3975 8.380793810 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462093 12 -1 730681 0 0xffffffff 0 -1 730681 0 ff ff ff ff 39 26 0b 00 00 00 00 00 ....9&...... +3977 8.381444931 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462105 12 22 720989 0 0x00000016 0 22 720989 0 16 00 00 00 5d 00 0b 00 00 00 00 00 ....]....... +3979 8.381614923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462117 22 18 2072009 0 0x00000012 1 2072009 0 196609 0 12 00 00 00 c9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +3981 8.381927490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524644 12 -1 720989 0 0xffffffff 0 -1 720989 0 ff ff ff ff 5d 00 0b 00 00 00 00 00 ....]....... +3988 8.396656752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524656 12 -2 82965 82947 0xfffffffe 0 -2 82965 82947 fe ff ff ff 15 44 01 00 03 44 01 00 .....D...D.. +3991 8.425148487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524668 12 34 730682 0 0x00000022 0 34 730682 0 22 00 00 00 3a 26 0b 00 00 00 00 00 """...:&......" +3993 8.425383329 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524680 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324075520 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 51 13 02 00 00 00 00 00 f0 ad 25 c3 9d 01 00 00 .....!...o3.......Q.........%..... +3995 8.425564051 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524714 12 67 730683 0 0x00000043 0 67 730683 0 43 00 00 00 3b 26 0b 00 00 00 00 00 C...;&...... +3997 8.425690174 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524726 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 51 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c 11 5d b1 f5 ?.....3...|8...........Q.......=B.....&......... +3998 8.425695419 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462139 12 -1 730682 0 0xffffffff 0 -1 730682 0 ff ff ff ff 3a 26 0b 00 00 00 00 00 ....:&...... +4001 8.425878763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462151 12 -1 730683 0 0xffffffff 0 -1 730683 0 ff ff ff ff 3b 26 0b 00 00 00 00 00 ....;&...... +4003 8.427291155 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462163 12 52 720990 0 0x00000034 0 52 720990 0 34 00 00 00 5e 00 0b 00 00 00 00 00 4...^....... +4005 8.427428484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462175 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 51 13 02 00 00 00 00 00 00 00 69 21 6e e3 4d 01 00 00 "0...Dk.................L."".([.....Q.........i!n." +4007 8.427682638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524793 12 -1 720990 0 0xffffffff 0 -1 720990 0 ff ff ff ff 5e 00 0b 00 00 00 00 00 ....^....... +4009 8.428524017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524805 12 30 730684 0 0x0000001e 0 30 730684 0 1e 00 00 00 3c 26 0b 00 00 00 00 00 ....<&...... +4011 8.428724289 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524817 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1647640576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4013 8.429010153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462227 12 -1 730684 0 0xffffffff 0 -1 730684 0 ff ff ff ff 3c 26 0b 00 00 00 00 00 ....<&...... +4015 8.429388523 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462239 12 26 720991 0 0x0000001a 0 26 720991 0 1a 00 00 00 5f 00 0b 00 00 00 00 00 ...._....... +4017 8.429531813 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462251 26 22 2072011 0 0x00000016 1 2072011 0 196609 0 16 00 00 00 cb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4020 8.429763556 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524847 12 -1 720991 0 0xffffffff 0 -1 720991 0 ff ff ff ff 5f 00 0b 00 00 00 00 00 ...._....... +4023 8.483708143 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524859 12 26 730685 0 0x0000001a 0 26 730685 0 1a 00 00 00 3d 26 0b 00 00 00 00 00 ....=&...... +4025 8.483882904 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524871 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1647509504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4029 8.484409571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462277 12 -1 730685 0 0xffffffff 0 -1 730685 0 ff ff ff ff 3d 26 0b 00 00 00 00 00 ....=&...... +4031 8.484785557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462289 12 22 720992 0 0x00000016 0 22 720992 0 16 00 00 00 60 00 0b 00 00 00 00 00 ....`....... +4033 8.484935760 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462301 22 18 2072013 0 0x00000012 1 2072013 0 196609 0 12 00 00 00 cd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4035 8.485152483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524897 12 -1 720992 0 0xffffffff 0 -1 720992 0 ff ff ff ff 60 00 0b 00 00 00 00 00 ....`....... +4087 8.587142706 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524909 12 26 730686 0 0x0000001a 0 26 730686 0 1a 00 00 00 3e 26 0b 00 00 00 00 00 ....>&...... +4089 8.587407589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524921 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1647378432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4091 8.587733746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462323 12 -1 730686 0 0xffffffff 0 -1 730686 0 ff ff ff ff 3e 26 0b 00 00 00 00 00 ....>&...... +4093 8.588270664 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462335 12 22 720993 0 0x00000016 0 22 720993 0 16 00 00 00 61 00 0b 00 00 00 00 00 ....a....... +4095 8.588399887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462347 22 18 2072015 0 0x00000012 1 2072015 0 196609 0 12 00 00 00 cf 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4097 8.588741064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524947 12 -1 720993 0 0xffffffff 0 -1 720993 0 ff ff ff ff 61 00 0b 00 00 00 00 00 ....a....... +4150 8.652402639 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462369 12 -2 82948 82965 0xfffffffe 0 -2 82948 82965 fe ff ff ff 04 44 01 00 15 44 01 00 .....D...D.. +4189 8.690495253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524959 12 26 730687 0 0x0000001a 0 26 730687 0 1a 00 00 00 3f 26 0b 00 00 00 00 00 ....?&...... +4191 8.690738678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524971 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1647247360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4193 8.691064835 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462381 12 -1 730687 0 0xffffffff 0 -1 730687 0 ff ff ff ff 3f 26 0b 00 00 00 00 00 ....?&...... +4195 8.691533566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462393 12 22 720994 0 0x00000016 0 22 720994 0 16 00 00 00 62 00 0b 00 00 00 00 00 ....b....... +4197 8.691691637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462405 22 18 2072017 0 0x00000012 1 2072017 0 196609 0 12 00 00 00 d1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4199 8.691916704 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333524997 12 -1 720994 0 0xffffffff 0 -1 720994 0 ff ff ff ff 62 00 0b 00 00 00 00 00 ....b....... +4205 8.729641199 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525009 12 101 730688 0 0x00000065 0 101 730688 0 65 00 00 00 40 26 0b 00 00 00 00 00 e...@&...... +4207 8.729819298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525021 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 52 13 02 00 00 00 00 00 20 af 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 52 13 02 00 00 00 00 .....!...o3.......R....... .%.....?.....3...|8.. +4209 8.730149269 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462427 12 -1 730688 0 0xffffffff 0 -1 730688 0 ff ff ff ff 40 26 0b 00 00 00 00 00 ....@&...... +4211 8.731251240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462439 12 52 720995 0 0x00000034 0 52 720995 0 34 00 00 00 63 00 0b 00 00 00 00 00 4...c....... +4213 8.731402636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462451 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 52 13 02 00 00 00 00 00 00 00 7b 84 9c e3 4d 01 00 00 "0...Dk.................L."".([.....R.........{..." +4215 8.731741428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525122 12 -1 720995 0 0xffffffff 0 -1 720995 0 ff ff ff ff 63 00 0b 00 00 00 00 00 ....c....... +4217 8.732592821 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525134 12 30 730689 0 0x0000001e 0 30 730689 0 1e 00 00 00 41 26 0b 00 00 00 00 00 ....A&...... +4219 8.732739449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525146 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1647116288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4221 8.733034849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462503 12 -1 730689 0 0xffffffff 0 -1 730689 0 ff ff ff ff 41 26 0b 00 00 00 00 00 ....A&...... +4223 8.733390808 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462515 12 26 720996 0 0x0000001a 0 26 720996 0 1a 00 00 00 64 00 0b 00 00 00 00 00 ....d....... +4225 8.733561993 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462527 26 22 2072019 0 0x00000016 1 2072019 0 196609 0 16 00 00 00 d3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4227 8.733735561 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525176 12 -1 720996 0 0xffffffff 0 -1 720996 0 ff ff ff ff 64 00 0b 00 00 00 00 00 ....d....... +4310 8.793206692 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525188 12 26 730690 0 0x0000001a 0 26 730690 0 1a 00 00 00 42 26 0b 00 00 00 00 00 ....B&...... +4312 8.793482780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525200 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1646985216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4314 8.793941498 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462553 12 -1 730690 0 0xffffffff 0 -1 730690 0 ff ff ff ff 42 26 0b 00 00 00 00 00 ....B&...... +4316 8.794530869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462565 12 22 720997 0 0x00000016 0 22 720997 0 16 00 00 00 65 00 0b 00 00 00 00 00 ....e....... +4318 8.794682503 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462577 22 18 2072021 0 0x00000012 1 2072021 0 196609 0 12 00 00 00 d5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4320 8.794989347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525226 12 -1 720997 0 0xffffffff 0 -1 720997 0 ff ff ff ff 65 00 0b 00 00 00 00 00 ....e....... +4501 8.897691250 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525238 12 -2 82966 82948 0xfffffffe 0 -2 82966 82948 fe ff ff ff 16 44 01 00 04 44 01 00 .....D...D.. +4504 8.897987604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525250 12 26 730691 0 0x0000001a 0 26 730691 0 1a 00 00 00 43 26 0b 00 00 00 00 00 ....C&...... +4506 8.898240328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525262 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1646854144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4508 8.898549557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462599 12 -1 730691 0 0xffffffff 0 -1 730691 0 ff ff ff ff 43 26 0b 00 00 00 00 00 ....C&...... +4510 8.899089575 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462611 12 22 720998 0 0x00000016 0 22 720998 0 16 00 00 00 66 00 0b 00 00 00 00 00 ....f....... +4512 8.899279356 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462623 22 18 2072023 0 0x00000012 1 2072023 0 196609 0 12 00 00 00 d7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4514 8.899535656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525288 12 -1 720998 0 0xffffffff 0 -1 720998 0 ff ff ff ff 66 00 0b 00 00 00 00 00 ....f....... +4800 9.002105713 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525300 12 26 730692 0 0x0000001a 0 26 730692 0 1a 00 00 00 44 26 0b 00 00 00 00 00 ....D&...... +4802 9.002276182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525312 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1646723072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4804 9.002640247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462645 12 -1 730692 0 0xffffffff 0 -1 730692 0 ff ff ff ff 44 26 0b 00 00 00 00 00 ....D&...... +4806 9.003189087 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462657 12 22 720999 0 0x00000016 0 22 720999 0 16 00 00 00 67 00 0b 00 00 00 00 00 ....g....... +4808 9.003432989 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462669 22 18 2072025 0 0x00000012 1 2072025 0 196609 0 12 00 00 00 d9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4810 9.003772020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525338 12 -1 720999 0 0xffffffff 0 -1 720999 0 ff ff ff ff 67 00 0b 00 00 00 00 00 ....g....... +4816 9.034827471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525350 12 34 730693 0 0x00000022 0 34 730693 0 22 00 00 00 45 26 0b 00 00 00 00 00 """...E&......" +4818 9.034993649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525362 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324206592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 53 13 02 00 00 00 00 00 52 b0 25 c3 9d 01 00 00 .....!...o3.......S.......R.%..... +4820 9.035207272 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525396 12 67 730694 0 0x00000043 0 67 730694 0 43 00 00 00 46 26 0b 00 00 00 00 00 C...F&...... +4822 9.035329342 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525408 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 53 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 34 69 bb d5 f5 ?.....3...|8...........S.......=B.....&......... +4823 9.035331011 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462691 12 -1 730693 0 0xffffffff 0 -1 730693 0 ff ff ff ff 45 26 0b 00 00 00 00 00 ....E&...... +4826 9.035587549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462703 12 -1 730694 0 0xffffffff 0 -1 730694 0 ff ff ff ff 46 26 0b 00 00 00 00 00 ....F&...... +4828 9.036662340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462715 12 52 721000 0 0x00000034 0 52 721000 0 34 00 00 00 68 00 0b 00 00 00 00 00 4...h....... +4830 9.036833286 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462727 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 53 13 02 00 00 00 00 00 00 00 3d 1a cb e3 4d 01 00 00 "0...Dk.................L."".([.....S.........=..." +4832 9.037136078 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525475 12 -1 721000 0 0xffffffff 0 -1 721000 0 ff ff ff ff 68 00 0b 00 00 00 00 00 ....h....... +4833 9.038259029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525487 12 30 730695 0 0x0000001e 0 30 730695 0 1e 00 00 00 47 26 0b 00 00 00 00 00 ....G&...... +4835 9.038501740 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525499 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1646592000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4837 9.038808823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462779 12 -1 730695 0 0xffffffff 0 -1 730695 0 ff ff ff ff 47 26 0b 00 00 00 00 00 ....G&...... +4839 9.039703369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462791 12 26 721001 0 0x0000001a 0 26 721001 0 1a 00 00 00 69 00 0b 00 00 00 00 00 ....i....... +4841 9.039865017 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462803 26 22 2072027 0 0x00000016 1 2072027 0 196609 0 16 00 00 00 db 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4843 9.040150881 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525529 12 -1 721001 0 0xffffffff 0 -1 721001 0 ff ff ff ff 69 00 0b 00 00 00 00 00 ....i....... +4849 9.106187344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525541 12 26 730696 0 0x0000001a 0 26 730696 0 1a 00 00 00 48 26 0b 00 00 00 00 00 ....H&...... +4851 9.106462479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525553 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1646460928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4853 9.106799126 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462829 12 -1 730696 0 0xffffffff 0 -1 730696 0 ff ff ff ff 48 26 0b 00 00 00 00 00 ....H&...... +4855 9.107280493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462841 12 22 721002 0 0x00000016 0 22 721002 0 16 00 00 00 6a 00 0b 00 00 00 00 00 ....j....... +4857 9.107497692 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462853 22 18 2072029 0 0x00000012 1 2072029 0 196609 0 12 00 00 00 dd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4859 9.107734442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525579 12 -1 721002 0 0xffffffff 0 -1 721002 0 ff ff ff ff 6a 00 0b 00 00 00 00 00 ....j....... +4863 9.154122591 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462875 12 -2 82949 82966 0xfffffffe 0 -2 82949 82966 fe ff ff ff 05 44 01 00 16 44 01 00 .....D...D.. +4869 9.209124088 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525591 12 26 730697 0 0x0000001a 0 26 730697 0 1a 00 00 00 49 26 0b 00 00 00 00 00 ....I&...... +4871 9.209302902 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525603 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1646329856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4873 9.209610462 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462887 12 -1 730697 0 0xffffffff 0 -1 730697 0 ff ff ff ff 49 26 0b 00 00 00 00 00 ....I&...... +4875 9.210106134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462899 12 22 721003 0 0x00000016 0 22 721003 0 16 00 00 00 6b 00 0b 00 00 00 00 00 ....k....... +4877 9.210308552 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462911 22 18 2072031 0 0x00000012 1 2072031 0 196609 0 12 00 00 00 df 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4879 9.210706711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525629 12 -1 721003 0 0xffffffff 0 -1 721003 0 ff ff ff ff 6b 00 0b 00 00 00 00 00 ....k....... +4885 9.312270880 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525641 12 26 730698 0 0x0000001a 0 26 730698 0 1a 00 00 00 4a 26 0b 00 00 00 00 00 ....J&...... +4887 9.312520266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525653 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1646198784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4889 9.312759876 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462933 12 -1 730698 0 0xffffffff 0 -1 730698 0 ff ff ff ff 4a 26 0b 00 00 00 00 00 ....J&...... +4891 9.313300848 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462945 12 22 721004 0 0x00000016 0 22 721004 0 16 00 00 00 6c 00 0b 00 00 00 00 00 ....l....... +4893 9.313491583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462957 22 18 2072033 0 0x00000012 1 2072033 0 196609 0 12 00 00 00 e1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4895 9.313753366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525679 12 -1 721004 0 0xffffffff 0 -1 721004 0 ff ff ff ff 6c 00 0b 00 00 00 00 00 ....l....... +4897 9.340362787 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525691 12 34 730699 0 0x00000022 0 34 730699 0 22 00 00 00 4b 26 0b 00 00 00 00 00 """...K&......" +4899 9.340538263 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525703 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324272128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 54 13 02 00 00 00 00 00 83 b1 25 c3 9d 01 00 00 .....!...o3.......T.........%..... +4901 9.340625286 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525737 12 67 730700 0 0x00000043 0 67 730700 0 43 00 00 00 4c 26 0b 00 00 00 00 00 C...L&...... +4903 9.340707779 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525749 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 54 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 6d e9 e7 f5 ?.....3...|8...........T.......=B.....&......... +4905 9.340777159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462979 12 -1 730699 0 0xffffffff 0 -1 730699 0 ff ff ff ff 4b 26 0b 00 00 00 00 00 ....K&...... +4907 9.340961695 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377462991 12 -1 730700 0 0xffffffff 0 -1 730700 0 ff ff ff ff 4c 26 0b 00 00 00 00 00 ....L&...... +4909 9.341850996 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463003 12 52 721005 0 0x00000034 0 52 721005 0 34 00 00 00 6d 00 0b 00 00 00 00 00 4...m....... +4911 9.342013597 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463015 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 54 13 02 00 00 00 00 00 00 00 d0 af f9 e3 4d 01 00 00 "0...Dk.................L."".([.....T............." +4913 9.342270613 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525816 12 -1 721005 0 0xffffffff 0 -1 721005 0 ff ff ff ff 6d 00 0b 00 00 00 00 00 ....m....... +4915 9.343111753 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525828 12 30 730701 0 0x0000001e 0 30 730701 0 1e 00 00 00 4d 26 0b 00 00 00 00 00 ....M&...... +4917 9.343249083 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525840 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1646067712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4919 9.343585253 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463067 12 -1 730701 0 0xffffffff 0 -1 730701 0 ff ff ff ff 4d 26 0b 00 00 00 00 00 ....M&...... +4921 9.343975544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463079 12 26 721006 0 0x0000001a 0 26 721006 0 1a 00 00 00 6e 00 0b 00 00 00 00 00 ....n....... +4923 9.344140768 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463091 26 22 2072035 0 0x00000016 1 2072035 0 196609 0 16 00 00 00 e3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +4925 9.344398975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525870 12 -1 721006 0 0xffffffff 0 -1 721006 0 ff ff ff ff 6e 00 0b 00 00 00 00 00 ....n....... +4934 9.399800301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525882 12 -2 82967 82949 0xfffffffe 0 -2 82967 82949 fe ff ff ff 17 44 01 00 05 44 01 00 .....D...D.. +4937 9.416170835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525894 12 26 730702 0 0x0000001a 0 26 730702 0 1a 00 00 00 4e 26 0b 00 00 00 00 00 ....N&...... +4939 9.416323662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525906 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1645936640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4941 9.416657209 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463117 12 -1 730702 0 0xffffffff 0 -1 730702 0 ff ff ff ff 4e 26 0b 00 00 00 00 00 ....N&...... +4943 9.417169333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463129 12 22 721007 0 0x00000016 0 22 721007 0 16 00 00 00 6f 00 0b 00 00 00 00 00 ....o....... +4945 9.417317152 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463141 22 18 2072037 0 0x00000012 1 2072037 0 196609 0 12 00 00 00 e5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4947 9.417709589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525932 12 -1 721007 0 0xffffffff 0 -1 721007 0 ff ff ff ff 6f 00 0b 00 00 00 00 00 ....o....... +4953 9.520024776 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525944 12 26 730703 0 0x0000001a 0 26 730703 0 1a 00 00 00 4f 26 0b 00 00 00 00 00 ....O&...... +4955 9.520198822 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525956 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1645805568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4957 9.520547390 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463163 12 -1 730703 0 0xffffffff 0 -1 730703 0 ff ff ff ff 4f 26 0b 00 00 00 00 00 ....O&...... +4959 9.521250010 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463175 12 22 721008 0 0x00000016 0 22 721008 0 16 00 00 00 70 00 0b 00 00 00 00 00 ....p....... +4961 9.521446943 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463187 22 18 2072039 0 0x00000012 1 2072039 0 196609 0 12 00 00 00 e7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4963 9.521723747 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525982 12 -1 721008 0 0xffffffff 0 -1 721008 0 ff ff ff ff 70 00 0b 00 00 00 00 00 ....p....... +4971 9.624317408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333525994 12 26 730704 0 0x0000001a 0 26 730704 0 1a 00 00 00 50 26 0b 00 00 00 00 00 ....P&...... +4973 9.624566078 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526006 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1645674496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +4975 9.625020742 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463209 12 -1 730704 0 0xffffffff 0 -1 730704 0 ff ff ff ff 50 26 0b 00 00 00 00 00 ....P&...... +4977 9.625631809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463221 12 22 721009 0 0x00000016 0 22 721009 0 16 00 00 00 71 00 0b 00 00 00 00 00 ....q....... +4979 9.625782728 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463233 22 18 2072041 0 0x00000012 1 2072041 0 196609 0 12 00 00 00 e9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +4981 9.626065969 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526032 12 -1 721009 0 0xffffffff 0 -1 721009 0 ff ff ff ff 71 00 0b 00 00 00 00 00 ....q....... +4983 9.644384623 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526044 12 101 730705 0 0x00000065 0 101 730705 0 65 00 00 00 51 26 0b 00 00 00 00 00 e...Q&...... +4985 9.644605637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526056 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 55 13 02 00 00 00 00 00 b3 b2 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 55 13 02 00 00 00 00 .....!...o3.......U.........%.....?.....3...|8.. +4987 9.644827366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463255 12 -1 730705 0 0xffffffff 0 -1 730705 0 ff ff ff ff 51 26 0b 00 00 00 00 00 ....Q&...... +4989 9.645855665 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463267 12 52 721010 0 0x00000034 0 52 721010 0 34 00 00 00 72 00 0b 00 00 00 00 00 4...r....... +4991 9.646015644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463279 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 55 13 02 00 00 00 00 00 00 00 07 0d 28 e4 4d 01 00 00 "0...Dk.................L."".([.....U...........(." +4993 9.646262646 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526157 12 -1 721010 0 0xffffffff 0 -1 721010 0 ff ff ff ff 72 00 0b 00 00 00 00 00 ....r....... +4995 9.647121906 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526169 12 30 730706 0 0x0000001e 0 30 730706 0 1e 00 00 00 52 26 0b 00 00 00 00 00 ....R&...... +4997 9.647262573 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526181 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1645543424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +4999 9.647592068 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463331 12 -1 730706 0 0xffffffff 0 -1 730706 0 ff ff ff ff 52 26 0b 00 00 00 00 00 ....R&...... +5001 9.647964954 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463343 12 26 721011 0 0x0000001a 0 26 721011 0 1a 00 00 00 73 00 0b 00 00 00 00 00 ....s....... +5003 9.648111343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463355 26 22 2072043 0 0x00000016 1 2072043 0 196609 0 16 00 00 00 eb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5005 9.648329258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526211 12 -1 721011 0 0xffffffff 0 -1 721011 0 ff ff ff ff 73 00 0b 00 00 00 00 00 ....s....... +5009 9.654125452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463381 12 -2 82950 82967 0xfffffffe 0 -2 82950 82967 fe ff ff ff 06 44 01 00 17 44 01 00 .....D...D.. +5015 9.729317904 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526223 12 26 730707 0 0x0000001a 0 26 730707 0 1a 00 00 00 53 26 0b 00 00 00 00 00 ....S&...... +5017 9.729583025 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526235 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1645412352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5019 9.729836464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463393 12 -1 730707 0 0xffffffff 0 -1 730707 0 ff ff ff ff 53 26 0b 00 00 00 00 00 ....S&...... +5021 9.730376244 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463405 12 22 721012 0 0x00000016 0 22 721012 0 16 00 00 00 74 00 0b 00 00 00 00 00 ....t....... +5023 9.730582476 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463417 22 18 2072045 0 0x00000012 1 2072045 0 196609 0 12 00 00 00 ed 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5025 9.730786085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526261 12 -1 721012 0 0xffffffff 0 -1 721012 0 ff ff ff ff 74 00 0b 00 00 00 00 00 ....t....... +5029 9.832075357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526273 12 26 730708 0 0x0000001a 0 26 730708 0 1a 00 00 00 54 26 0b 00 00 00 00 00 ....T&...... +5031 9.832876444 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526285 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1645281280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5033 9.833222389 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463439 12 -1 730708 0 0xffffffff 0 -1 730708 0 ff ff ff ff 54 26 0b 00 00 00 00 00 ....T&...... +5035 9.833882809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463451 12 22 721013 0 0x00000016 0 22 721013 0 16 00 00 00 75 00 0b 00 00 00 00 00 ....u....... +5037 9.834038258 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463463 22 18 2072047 0 0x00000012 1 2072047 0 196609 0 12 00 00 00 ef 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5039 9.834312916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526311 12 -1 721013 0 0xffffffff 0 -1 721013 0 ff ff ff ff 75 00 0b 00 00 00 00 00 ....u....... +5048 9.900486231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526323 12 -2 82968 82950 0xfffffffe 0 -2 82968 82950 fe ff ff ff 18 44 01 00 06 44 01 00 .....D...D.. +5053 9.935805082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526335 12 26 730709 0 0x0000001a 0 26 730709 0 1a 00 00 00 55 26 0b 00 00 00 00 00 ....U&...... +5055 9.935965061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526347 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1645150208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5057 9.936372519 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463485 12 -1 730709 0 0xffffffff 0 -1 730709 0 ff ff ff ff 55 26 0b 00 00 00 00 00 ....U&...... +5059 9.937003851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463497 12 22 721014 0 0x00000016 0 22 721014 0 16 00 00 00 76 00 0b 00 00 00 00 00 ....v....... +5061 9.937200546 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463509 22 18 2072049 0 0x00000012 1 2072049 0 196609 0 12 00 00 00 f1 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5063 9.937504768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526373 12 -1 721014 0 0xffffffff 0 -1 721014 0 ff ff ff ff 76 00 0b 00 00 00 00 00 ....v....... +5065 9.949306965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526385 12 101 730710 0 0x00000065 0 101 730710 0 65 00 00 00 56 26 0b 00 00 00 00 00 e...V&...... +5067 9.949463129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526397 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 56 13 02 00 00 00 00 00 e4 b3 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 56 13 02 00 00 00 00 .....!...o3.......V.........%.....?.....3...|8.. +5069 9.949824572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463531 12 -1 730710 0 0xffffffff 0 -1 730710 0 ff ff ff ff 56 26 0b 00 00 00 00 00 ....V&...... +5071 9.950896263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463543 12 52 721015 0 0x00000034 0 52 721015 0 34 00 00 00 77 00 0b 00 00 00 00 00 4...w....... +5073 9.951061964 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463555 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 56 13 02 00 00 00 00 00 00 00 e6 9e 56 e4 4d 01 00 00 "0...Dk.................L."".([.....V...........V." +5075 9.951459885 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526498 12 -1 721015 0 0xffffffff 0 -1 721015 0 ff ff ff ff 77 00 0b 00 00 00 00 00 ....w....... +5077 9.952193975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526510 12 30 730711 0 0x0000001e 0 30 730711 0 1e 00 00 00 57 26 0b 00 00 00 00 00 ....W&...... +5079 9.952345848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526522 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1645019136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5081 9.952632904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463607 12 -1 730711 0 0xffffffff 0 -1 730711 0 ff ff ff ff 57 26 0b 00 00 00 00 00 ....W&...... +5083 9.953006744 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463619 12 26 721016 0 0x0000001a 0 26 721016 0 1a 00 00 00 78 00 0b 00 00 00 00 00 ....x....... +5085 9.953188896 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463631 26 22 2072051 0 0x00000016 1 2072051 0 196609 0 16 00 00 00 f3 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5087 9.953493118 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526552 12 -1 721016 0 0xffffffff 0 -1 721016 0 ff ff ff ff 78 00 0b 00 00 00 00 00 ....x....... +5091 10.038631201 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526564 12 26 730712 0 0x0000001a 0 26 730712 0 1a 00 00 00 58 26 0b 00 00 00 00 00 ....X&...... +5093 10.038801670 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526576 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1644888064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5095 10.039141893 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463657 12 -1 730712 0 0xffffffff 0 -1 730712 0 ff ff ff ff 58 26 0b 00 00 00 00 00 ....X&...... +5097 10.039687157 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463669 12 22 721017 0 0x00000016 0 22 721017 0 16 00 00 00 79 00 0b 00 00 00 00 00 ....y....... +5099 10.039846897 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463681 22 18 2072053 0 0x00000012 1 2072053 0 196609 0 12 00 00 00 f5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5101 10.040150166 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526602 12 -1 721017 0 0xffffffff 0 -1 721017 0 ff ff ff ff 79 00 0b 00 00 00 00 00 ....y....... +5111 10.141534567 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526614 12 26 730713 0 0x0000001a 0 26 730713 0 1a 00 00 00 59 26 0b 00 00 00 00 00 ....Y&...... +5113 10.141764164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526626 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1644756992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5117 10.142253876 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463703 12 -1 730713 0 0xffffffff 0 -1 730713 0 ff ff ff ff 59 26 0b 00 00 00 00 00 ....Y&...... +5119 10.142701864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463715 12 22 721018 0 0x00000016 0 22 721018 0 16 00 00 00 7a 00 0b 00 00 00 00 00 ....z....... +5121 10.143227577 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463727 22 18 2072055 0 0x00000012 1 2072055 0 196609 0 12 00 00 00 f7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5123 10.143586159 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526652 12 -1 721018 0 0xffffffff 0 -1 721018 0 ff ff ff ff 7a 00 0b 00 00 00 00 00 ....z....... +5129 10.154298544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463749 12 -2 82951 82968 0xfffffffe 0 -2 82951 82968 fe ff ff ff 07 44 01 00 18 44 01 00 .....D...D.. +5139 10.245978594 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526664 12 26 730714 0 0x0000001a 0 26 730714 0 1a 00 00 00 5a 26 0b 00 00 00 00 00 ....Z&...... +5141 10.246138096 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526676 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1644625920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5143 10.246547937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463761 12 -1 730714 0 0xffffffff 0 -1 730714 0 ff ff ff ff 5a 26 0b 00 00 00 00 00 ....Z&...... +5145 10.247299194 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463773 12 22 721019 0 0x00000016 0 22 721019 0 16 00 00 00 7b 00 0b 00 00 00 00 00 ....{....... +5147 10.247460604 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463785 22 18 2072057 0 0x00000012 1 2072057 0 196609 0 12 00 00 00 f9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5149 10.247786760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526702 12 -1 721019 0 0xffffffff 0 -1 721019 0 ff ff ff ff 7b 00 0b 00 00 00 00 00 ....{....... +5151 10.254293442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526714 12 34 730715 0 0x00000022 0 34 730715 0 22 00 00 00 5b 26 0b 00 00 00 00 00 """...[&......" +5153 10.254490852 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526726 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324468736 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 13 02 00 00 00 00 00 15 b5 25 c3 9d 01 00 00 .....!...o3.......W.........%..... +5155 10.254633665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526760 12 67 730716 0 0x00000043 0 67 730716 0 43 00 00 00 5c 26 0b 00 00 00 00 00 C...\&...... +5157 10.254719734 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526772 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 57 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 fd 63 1e f6 ?.....3...|8...........W.......=B.....&......... +5158 10.254794359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463807 12 -1 730715 0 0xffffffff 0 -1 730715 0 ff ff ff ff 5b 26 0b 00 00 00 00 00 ....[&...... +5159 10.254893064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463819 12 -1 730716 0 0xffffffff 0 -1 730716 0 ff ff ff ff 5c 26 0b 00 00 00 00 00 ....\&...... +5162 10.256003857 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463831 12 52 721020 0 0x00000034 0 52 721020 0 34 00 00 00 7c 00 0b 00 00 00 00 00 4...|....... +5164 10.256146669 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463843 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 57 13 02 00 00 00 00 00 00 00 1b 2e 85 e4 4d 01 00 00 "0...Dk.................L."".([.....W............." +5166 10.256486177 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526839 12 -1 721020 0 0xffffffff 0 -1 721020 0 ff ff ff ff 7c 00 0b 00 00 00 00 00 ....|....... +5168 10.257231236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526851 12 30 730717 0 0x0000001e 0 30 730717 0 1e 00 00 00 5d 26 0b 00 00 00 00 00 ....]&...... +5170 10.257395744 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526863 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1644494848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 9d 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5172 10.257800102 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463895 12 -1 730717 0 0xffffffff 0 -1 730717 0 ff ff ff ff 5d 26 0b 00 00 00 00 00 ....]&...... +5174 10.258169889 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463907 12 26 721021 0 0x0000001a 0 26 721021 0 1a 00 00 00 7d 00 0b 00 00 00 00 00 ....}....... +5176 10.258306265 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463919 26 22 2072059 0 0x00000016 1 2072059 0 196609 0 16 00 00 00 fb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5178 10.258621216 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526893 12 -1 721021 0 0xffffffff 0 -1 721021 0 ff ff ff ff 7d 00 0b 00 00 00 00 00 ....}....... +5182 10.350621223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526905 12 26 730718 0 0x0000001a 0 26 730718 0 1a 00 00 00 5e 26 0b 00 00 00 00 00 ....^&...... +5184 10.350798845 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526917 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1644363776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5186 10.351089239 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463945 12 -1 730718 0 0xffffffff 0 -1 730718 0 ff ff ff ff 5e 26 0b 00 00 00 00 00 ....^&...... +5188 10.351641417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463957 12 22 721022 0 0x00000016 0 22 721022 0 16 00 00 00 7e 00 0b 00 00 00 00 00 ....~....... +5190 10.351798296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463969 22 18 2072061 0 0x00000012 1 2072061 0 196609 0 12 00 00 00 fd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5192 10.352074385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526943 12 -1 721022 0 0xffffffff 0 -1 721022 0 ff ff ff ff 7e 00 0b 00 00 00 00 00 ....~....... +5205 10.401417017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526955 12 -2 82969 82951 0xfffffffe 0 -2 82969 82951 fe ff ff ff 19 44 01 00 07 44 01 00 .....D...D.. +5210 10.453091860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526967 12 26 730719 0 0x0000001a 0 26 730719 0 1a 00 00 00 5f 26 0b 00 00 00 00 00 ...._&...... +5212 10.453253746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526979 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1644232704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9d 1f 00 00 00 00 00 ....T.c@.^1@.............. +5214 10.453573465 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463991 12 -1 730719 0 0xffffffff 0 -1 730719 0 ff ff ff ff 5f 26 0b 00 00 00 00 00 ...._&...... +5216 10.454055786 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464003 12 22 721023 0 0x00000016 0 22 721023 0 16 00 00 00 7f 00 0b 00 00 00 00 00 ............ +5218 10.454219818 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464015 22 18 2072063 0 0x00000012 1 2072063 0 196609 0 12 00 00 00 ff 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5220 10.454570532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527005 12 -1 721023 0 0xffffffff 0 -1 721023 0 ff ff ff ff 7f 00 0b 00 00 00 00 00 ............ +5262 10.557631016 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527017 12 26 730720 0 0x0000001a 0 26 730720 0 1a 00 00 00 60 26 0b 00 00 00 00 00 ....`&...... +5264 10.557839155 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527029 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1644101632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5266 10.558292627 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464037 12 -1 730720 0 0xffffffff 0 -1 730720 0 ff ff ff ff 60 26 0b 00 00 00 00 00 ....`&...... +5268 10.558826447 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464049 12 22 721024 0 0x00000016 0 22 721024 0 16 00 00 00 80 00 0b 00 00 00 00 00 ............ +5269 10.558985472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527055 113 101 730721 0 0x00000065 0 101 730721 0 30 65 00 00 00 61 26 0b 00 00 00 00 00 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 13 02 00 00 00 00 00 46 b6 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 e...a&...........!...o3.......X.......F.%.....?. +5271 10.559205770 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464061 22 18 2072065 0 0x00000012 1 2072065 0 196609 0 12 00 00 00 01 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5273 10.559516907 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464083 12 -1 730721 0 0xffffffff 0 -1 730721 0 ff ff ff ff 61 26 0b 00 00 00 00 00 ....a&...... +5274 10.559549332 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527168 12 -1 721024 0 0xffffffff 0 -1 721024 0 ff ff ff ff 80 00 0b 00 00 00 00 00 ............ +5277 10.560333967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464095 12 52 721025 0 0x00000034 0 52 721025 0 34 00 00 00 81 00 0b 00 00 00 00 00 4........... +5278 10.560434580 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464107 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 58 13 02 00 00 00 00 00 00 00 0c 9e b3 e4 4d 01 00 00 "0...Dk.................L."".([.....X............." +5279 10.560587645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527180 12 -1 721025 0 0xffffffff 0 -1 721025 0 ff ff ff ff 81 00 0b 00 00 00 00 00 ............ +5281 10.561417818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527192 12 30 730722 0 0x0000001e 0 30 730722 0 1e 00 00 00 62 26 0b 00 00 00 00 00 ....b&...... +5283 10.561644077 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527204 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1643970560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5285 10.561994314 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464159 12 -1 730722 0 0xffffffff 0 -1 730722 0 ff ff ff ff 62 26 0b 00 00 00 00 00 ....b&...... +5287 10.562343359 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464171 12 26 721026 0 0x0000001a 0 26 721026 0 1a 00 00 00 82 00 0b 00 00 00 00 00 ............ +5289 10.562506437 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464183 26 22 2072067 0 0x00000016 1 2072067 0 196609 0 16 00 00 00 03 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5291 10.562752724 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527234 12 -1 721026 0 0xffffffff 0 -1 721026 0 ff ff ff ff 82 00 0b 00 00 00 00 00 ............ +5299 10.655766726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464209 12 -2 82952 82969 0xfffffffe 0 -2 82952 82969 fe ff ff ff 08 44 01 00 19 44 01 00 .....D...D.. +5313 10.661553860 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527246 12 26 730723 0 0x0000001a 0 26 730723 0 1a 00 00 00 63 26 0b 00 00 00 00 00 ....c&...... +5315 10.661723375 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527258 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1643839488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5317 10.662079573 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464221 12 -1 730723 0 0xffffffff 0 -1 730723 0 ff ff ff ff 63 26 0b 00 00 00 00 00 ....c&...... +5319 10.662459850 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464233 12 22 721027 0 0x00000016 0 22 721027 0 16 00 00 00 83 00 0b 00 00 00 00 00 ............ +5321 10.662640572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464245 22 18 2072069 0 0x00000012 1 2072069 0 196609 0 12 00 00 00 05 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5323 10.663039684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527284 12 -1 721027 0 0xffffffff 0 -1 721027 0 ff ff ff ff 83 00 0b 00 00 00 00 00 ............ +5331 10.764607430 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527296 12 26 730724 0 0x0000001a 0 26 730724 0 1a 00 00 00 64 26 0b 00 00 00 00 00 ....d&...... +5333 10.764768362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527308 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1643708416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5335 10.765068293 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464267 12 -1 730724 0 0xffffffff 0 -1 730724 0 ff ff ff ff 64 26 0b 00 00 00 00 00 ....d&...... +5337 10.765706778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464279 12 22 721028 0 0x00000016 0 22 721028 0 16 00 00 00 84 00 0b 00 00 00 00 00 ............ +5339 10.765877008 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464291 22 18 2072071 0 0x00000012 1 2072071 0 196609 0 12 00 00 00 07 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5341 10.766201258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527334 12 -1 721028 0 0xffffffff 0 -1 721028 0 ff ff ff ff 84 00 0b 00 00 00 00 00 ............ +5343 10.862831593 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527346 12 101 730725 0 0x00000065 0 101 730725 0 65 00 00 00 65 26 0b 00 00 00 00 00 e...e&...... +5345 10.863061666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527358 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 13 02 00 00 00 00 00 76 b7 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 59 13 02 00 00 00 00 .....!...o3.......Y.......v.%.....?.....3...|8.. +5347 10.863455296 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464313 12 -1 730725 0 0xffffffff 0 -1 730725 0 ff ff ff ff 65 26 0b 00 00 00 00 00 ....e&...... +5349 10.864458323 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464325 12 52 721029 0 0x00000034 0 52 721029 0 34 00 00 00 85 00 0b 00 00 00 00 00 4........... +5351 10.864609718 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464337 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 59 13 02 00 00 00 00 00 00 00 2b 04 e2 e4 4d 01 00 00 "0...Dk.................L."".([.....Y.........+..." +5353 10.864853859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527459 12 -1 721029 0 0xffffffff 0 -1 721029 0 ff ff ff ff 85 00 0b 00 00 00 00 00 ............ +5355 10.865834713 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527471 12 30 730726 0 0x0000001e 0 30 730726 0 1e 00 00 00 66 26 0b 00 00 00 00 00 ....f&...... +5357 10.866015434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527483 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1643577344 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5359 10.866299629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464389 12 -1 730726 0 0xffffffff 0 -1 730726 0 ff ff ff ff 66 26 0b 00 00 00 00 00 ....f&...... +5361 10.866702557 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464401 12 26 721030 0 0x0000001a 0 26 721030 0 1a 00 00 00 86 00 0b 00 00 00 00 00 ............ +5363 10.866859198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464413 26 22 2072073 0 0x00000016 1 2072073 0 196609 0 16 00 00 00 09 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5365 10.867119551 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527513 12 -1 721030 0 0xffffffff 0 -1 721030 0 ff ff ff ff 86 00 0b 00 00 00 00 00 ............ +5367 10.867581367 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527525 12 26 730727 0 0x0000001a 0 26 730727 0 1a 00 00 00 67 26 0b 00 00 00 00 00 ....g&...... +5369 10.867968082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527537 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1643446272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5371 10.868314981 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464439 12 -1 730727 0 0xffffffff 0 -1 730727 0 ff ff ff ff 67 26 0b 00 00 00 00 00 ....g&...... +5373 10.868815660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464451 12 22 721031 0 0x00000016 0 22 721031 0 16 00 00 00 87 00 0b 00 00 00 00 00 ............ +5375 10.868957043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464463 22 18 2072075 0 0x00000012 1 2072075 0 196609 0 12 00 00 00 0b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5377 10.869204760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527563 12 -1 721031 0 0xffffffff 0 -1 721031 0 ff ff ff ff 87 00 0b 00 00 00 00 00 ............ +5386 10.903136253 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527575 12 -2 82970 82952 0xfffffffe 0 -2 82970 82952 fe ff ff ff 1a 44 01 00 08 44 01 00 .....D...D.. +5393 10.971429586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527587 12 26 730728 0 0x0000001a 0 26 730728 0 1a 00 00 00 68 26 0b 00 00 00 00 00 ....h&...... +5395 10.971596956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527599 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1643315200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5397 10.972017527 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464485 12 -1 730728 0 0xffffffff 0 -1 730728 0 ff ff ff ff 68 26 0b 00 00 00 00 00 ....h&...... +5399 10.972399950 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464497 12 22 721032 0 0x00000016 0 22 721032 0 16 00 00 00 88 00 0b 00 00 00 00 00 ............ +5401 10.972560644 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464509 22 18 2072077 0 0x00000012 1 2072077 0 196609 0 12 00 00 00 0d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5403 10.972915173 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527625 12 -1 721032 0 0xffffffff 0 -1 721032 0 ff ff ff ff 88 00 0b 00 00 00 00 00 ............ +5416 11.074490786 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527637 12 26 730729 0 0x0000001a 0 26 730729 0 1a 00 00 00 69 26 0b 00 00 00 00 00 ....i&...... +5418 11.074671745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527649 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1643184128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5420 11.074977398 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464531 12 -1 730729 0 0xffffffff 0 -1 730729 0 ff ff ff ff 69 26 0b 00 00 00 00 00 ....i&...... +5422 11.075577021 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464543 12 22 721033 0 0x00000016 0 22 721033 0 16 00 00 00 89 00 0b 00 00 00 00 00 ............ +5424 11.075745583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464555 22 18 2072079 0 0x00000012 1 2072079 0 196609 0 12 00 00 00 0f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5426 11.076070070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527675 12 -1 721033 0 0xffffffff 0 -1 721033 0 ff ff ff ff 89 00 0b 00 00 00 00 00 ............ +5461 11.157352209 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464577 12 -2 82953 82970 0xfffffffe 0 -2 82953 82970 fe ff ff ff 09 44 01 00 1a 44 01 00 .....D...D.. +5467 11.167594433 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527687 12 101 730730 0 0x00000065 0 101 730730 0 65 00 00 00 6a 26 0b 00 00 00 00 00 e...j&...... +5469 11.167759895 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527699 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5a 13 02 00 00 00 00 00 a6 b8 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5a 13 02 00 00 00 00 .....!...o3.......Z.........%.....?.....3...|8.. +5471 11.168158531 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464589 12 -1 730730 0 0xffffffff 0 -1 730730 0 ff ff ff ff 6a 26 0b 00 00 00 00 00 ....j&...... +5473 11.169600487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464601 12 52 721034 0 0x00000034 0 52 721034 0 34 00 00 00 8a 00 0b 00 00 00 00 00 4........... +5475 11.169806242 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464613 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5a 13 02 00 00 00 00 00 00 00 24 93 10 e5 4d 01 00 00 "0...Dk.................L."".([.....Z.........$..." +5477 11.170093060 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527800 12 -1 721034 0 0xffffffff 0 -1 721034 0 ff ff ff ff 8a 00 0b 00 00 00 00 00 ............ +5479 11.170918465 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527812 12 30 730731 0 0x0000001e 0 30 730731 0 1e 00 00 00 6b 26 0b 00 00 00 00 00 ....k&...... +5481 11.171072960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527824 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1643053056 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 11 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5483 11.171396971 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464665 12 -1 730731 0 0xffffffff 0 -1 730731 0 ff ff ff ff 6b 26 0b 00 00 00 00 00 ....k&...... +5485 11.172045708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464677 12 26 721035 0 0x0000001a 0 26 721035 0 1a 00 00 00 8b 00 0b 00 00 00 00 00 ............ +5487 11.172181368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464689 26 22 2072081 0 0x00000016 1 2072081 0 196609 0 16 00 00 00 11 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5489 11.172428370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527854 12 -1 721035 0 0xffffffff 0 -1 721035 0 ff ff ff ff 8b 00 0b 00 00 00 00 00 ............ +5491 11.177031279 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527866 12 26 730732 0 0x0000001a 0 26 730732 0 1a 00 00 00 6c 26 0b 00 00 00 00 00 ....l&...... +5493 11.177175522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527878 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1642921984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5495 11.177479267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464715 12 -1 730732 0 0xffffffff 0 -1 730732 0 ff ff ff ff 6c 26 0b 00 00 00 00 00 ....l&...... +5497 11.177921295 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464727 12 22 721036 0 0x00000016 0 22 721036 0 16 00 00 00 8c 00 0b 00 00 00 00 00 ............ +5499 11.178059101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464739 22 18 2072083 0 0x00000012 1 2072083 0 196609 0 12 00 00 00 13 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5501 11.178259611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527904 12 -1 721036 0 0xffffffff 0 -1 721036 0 ff ff ff ff 8c 00 0b 00 00 00 00 00 ............ +5512 11.279340267 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527916 12 26 730733 0 0x0000001a 0 26 730733 0 1a 00 00 00 6d 26 0b 00 00 00 00 00 ....m&...... +5514 11.279539347 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527928 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1642790912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5516 11.280015945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464761 12 -1 730733 0 0xffffffff 0 -1 730733 0 ff ff ff ff 6d 26 0b 00 00 00 00 00 ....m&...... +5518 11.280278444 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464773 12 22 721037 0 0x00000016 0 22 721037 0 16 00 00 00 8d 00 0b 00 00 00 00 00 ............ +5520 11.280505657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464785 22 18 2072085 0 0x00000012 1 2072085 0 196609 0 12 00 00 00 15 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5522 11.280837297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527954 12 -1 721037 0 0xffffffff 0 -1 721037 0 ff ff ff ff 8d 00 0b 00 00 00 00 00 ............ +5535 11.382203579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527966 12 26 730734 0 0x0000001a 0 26 730734 0 1a 00 00 00 6e 26 0b 00 00 00 00 00 ....n&...... +5537 11.382429361 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527978 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1642659840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5539 11.382783890 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464807 12 -1 730734 0 0xffffffff 0 -1 730734 0 ff ff ff ff 6e 26 0b 00 00 00 00 00 ....n&...... +5541 11.383410454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464819 12 22 721038 0 0x00000016 0 22 721038 0 16 00 00 00 8e 00 0b 00 00 00 00 00 ............ +5543 11.383573055 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464831 22 18 2072087 0 0x00000012 1 2072087 0 196609 0 12 00 00 00 17 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5545 11.383794069 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528004 12 -1 721038 0 0xffffffff 0 -1 721038 0 ff ff ff ff 8e 00 0b 00 00 00 00 00 ............ +5552 11.403814793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528016 12 -2 82971 82953 0xfffffffe 0 -2 82971 82953 fe ff ff ff 1b 44 01 00 09 44 01 00 .....D...D.. +5562 11.472567081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528028 12 34 730735 0 0x00000022 0 34 730735 0 22 00 00 00 6f 26 0b 00 00 00 00 00 """...o&......" +5564 11.472844839 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528040 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324730880 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5b 13 02 00 00 00 00 00 d7 b9 25 c3 9d 01 00 00 .....!...o3.......[.........%..... +5566 11.473004341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528074 12 67 730736 0 0x00000043 0 67 730736 0 43 00 00 00 70 26 0b 00 00 00 00 00 C...p&...... +5568 11.473094225 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528086 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 ab 0c 67 f6 ?.....3...|8...........[.......=B.....&......... +5569 11.473154545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464853 12 -1 730735 0 0xffffffff 0 -1 730735 0 ff ff ff ff 6f 26 0b 00 00 00 00 00 ....o&...... +5570 11.473256588 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464865 12 -1 730736 0 0xffffffff 0 -1 730736 0 ff ff ff ff 70 26 0b 00 00 00 00 00 ....p&...... +5573 11.474621534 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464877 12 52 721039 0 0x00000034 0 52 721039 0 34 00 00 00 8f 00 0b 00 00 00 00 00 4........... +5575 11.474779129 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464889 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5b 13 02 00 00 00 00 00 00 00 8f 1d 3f e5 4d 01 00 00 "0...Dk.................L."".([.....[...........?." +5577 11.475066423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528153 12 -1 721039 0 0xffffffff 0 -1 721039 0 ff ff ff ff 8f 00 0b 00 00 00 00 00 ............ +5578 11.476161480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528165 12 30 730737 0 0x0000001e 0 30 730737 0 1e 00 00 00 71 26 0b 00 00 00 00 00 ....q&...... +5579 11.476269960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528177 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1642528768 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +5580 11.476571560 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464941 12 -1 730737 0 0xffffffff 0 -1 730737 0 ff ff ff ff 71 26 0b 00 00 00 00 00 ....q&...... +5582 11.476999044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464953 12 26 721040 0 0x0000001a 0 26 721040 0 1a 00 00 00 90 00 0b 00 00 00 00 00 ............ +5584 11.477146626 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464965 26 22 2072089 0 0x00000016 1 2072089 0 196609 0 16 00 00 00 19 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +5586 11.477453470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528207 12 -1 721040 0 0xffffffff 0 -1 721040 0 ff ff ff ff 90 00 0b 00 00 00 00 00 ............ +5590 11.484985352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528219 12 26 730738 0 0x0000001a 0 26 730738 0 1a 00 00 00 72 26 0b 00 00 00 00 00 ....r&...... +5592 11.485146046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528231 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1642397696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5594 11.485471487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464991 12 -1 730738 0 0xffffffff 0 -1 730738 0 ff ff ff ff 72 26 0b 00 00 00 00 00 ....r&...... +5596 11.485841513 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465003 12 22 721041 0 0x00000016 0 22 721041 0 16 00 00 00 91 00 0b 00 00 00 00 00 ............ +5598 11.485982656 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465015 22 18 2072091 0 0x00000012 1 2072091 0 196609 0 12 00 00 00 1b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5600 11.486211538 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528257 12 -1 721041 0 0xffffffff 0 -1 721041 0 ff ff ff ff 91 00 0b 00 00 00 00 00 ............ +5615 11.588955879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528269 12 26 730739 0 0x0000001a 0 26 730739 0 1a 00 00 00 73 26 0b 00 00 00 00 00 ....s&...... +5617 11.589124918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528281 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1642266624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5619 11.589469433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465037 12 -1 730739 0 0xffffffff 0 -1 730739 0 ff ff ff ff 73 26 0b 00 00 00 00 00 ....s&...... +5621 11.589924335 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465049 12 22 721042 0 0x00000016 0 22 721042 0 16 00 00 00 92 00 0b 00 00 00 00 00 ............ +5623 11.590084553 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465061 22 18 2072093 0 0x00000012 1 2072093 0 196609 0 12 00 00 00 1d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5625 11.590542316 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528307 12 -1 721042 0 0xffffffff 0 -1 721042 0 ff ff ff ff 92 00 0b 00 00 00 00 00 ............ +5643 11.658316851 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465083 12 -2 82954 82971 0xfffffffe 0 -2 82954 82971 fe ff ff ff 0a 44 01 00 1b 44 01 00 .....D...D.. +5661 11.691926718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528319 12 26 730740 0 0x0000001a 0 26 730740 0 1a 00 00 00 74 26 0b 00 00 00 00 00 ....t&...... +5663 11.692161560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528331 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1642135552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +5665 11.692523241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465095 12 -1 730740 0 0xffffffff 0 -1 730740 0 ff ff ff ff 74 26 0b 00 00 00 00 00 ....t&...... +5667 11.693332672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465107 12 22 721043 0 0x00000016 0 22 721043 0 16 00 00 00 93 00 0b 00 00 00 00 00 ............ +5669 11.693495274 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465119 22 18 2072095 0 0x00000012 1 2072095 0 196609 0 12 00 00 00 1f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +5671 11.693712950 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528357 12 -1 721043 0 0xffffffff 0 -1 721043 0 ff ff ff ff 93 00 0b 00 00 00 00 00 ............ +5686 11.777063370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528369 12 34 730741 0 0x00000022 0 34 730741 0 22 00 00 00 75 26 0b 00 00 00 00 00 """...u&......" +5688 11.777242661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528381 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324796416 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5c 13 02 00 00 00 00 00 08 bb 25 c3 9d 01 00 00 .....!...o3.......\.........%..... +5690 11.777351141 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528415 12 67 730742 0 0x00000043 0 67 730742 0 43 00 00 00 76 26 0b 00 00 00 00 00 C...v&...... +5692 11.777438164 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528427 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5c 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 96 25 79 f6 ?.....3...|8...........\.......=B.....&......... +5694 11.777501583 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465141 12 -1 730741 0 0xffffffff 0 -1 730741 0 ff ff ff ff 75 26 0b 00 00 00 00 00 ....u&...... +5696 11.777665377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465153 12 -1 730742 0 0xffffffff 0 -1 730742 0 ff ff ff ff 76 26 0b 00 00 00 00 00 ....v&...... +5698 11.778731823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465165 12 52 721044 0 0x00000034 0 52 721044 0 34 00 00 00 94 00 0b 00 00 00 00 00 4........... +5700 11.778888464 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465177 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5c 13 02 00 00 00 00 00 00 00 0d 86 6d e5 4d 01 00 00 "0...Dk.................L."".([.....\...........m." +5702 11.779202461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528494 12 -1 721044 0 0xffffffff 0 -1 721044 0 ff ff ff ff 94 00 0b 00 00 00 00 00 ............ +5704 11.780013084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528506 12 30 730743 0 0x0000001e 0 30 730743 0 1e 00 00 00 77 26 0b 00 00 00 00 00 ....w&...... +5706 11.780192137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528518 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1642004480 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......!........... +5708 11.780432463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465229 12 -1 730743 0 0xffffffff 0 -1 730743 0 ff ff ff ff 77 26 0b 00 00 00 00 00 ....w&...... +5710 11.781023026 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465241 12 26 721045 0 0x0000001a 0 26 721045 0 1a 00 00 00 95 00 0b 00 00 00 00 00 ............ +5712 11.781255245 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465253 26 22 2072097 0 0x00000016 1 2072097 0 196609 0 16 00 00 00 21 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!..................... +5714 11.781502008 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528548 12 -1 721045 0 0xffffffff 0 -1 721045 0 ff ff ff ff 95 00 0b 00 00 00 00 00 ............ +5716 11.795581341 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528560 12 26 730744 0 0x0000001a 0 26 730744 0 1a 00 00 00 78 26 0b 00 00 00 00 00 ....x&...... +5718 11.795729160 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528572 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1641873408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 9e 1f 00 00 00 00 00 ....T.c@.^1@......#....... +5720 11.795971632 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465279 12 -1 730744 0 0xffffffff 0 -1 730744 0 ff ff ff ff 78 26 0b 00 00 00 00 00 ....x&...... +5722 11.796398401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465291 12 22 721046 0 0x00000016 0 22 721046 0 16 00 00 00 96 00 0b 00 00 00 00 00 ............ +5724 11.796559811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465303 22 18 2072099 0 0x00000012 1 2072099 0 196609 0 12 00 00 00 23 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +5726 11.796809673 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528598 12 -1 721046 0 0xffffffff 0 -1 721046 0 ff ff ff ff 96 00 0b 00 00 00 00 00 ............ +5741 11.898546696 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528610 12 26 730745 0 0x0000001a 0 26 730745 0 1a 00 00 00 79 26 0b 00 00 00 00 00 ....y&...... +5743 11.898712635 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528622 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1641742336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 9e 1f 00 00 00 00 00 ....T.c@.^1@......%....... +5745 11.899076700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465325 12 -1 730745 0 0xffffffff 0 -1 730745 0 ff ff ff ff 79 26 0b 00 00 00 00 00 ....y&...... +5747 11.899569750 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465337 12 22 721047 0 0x00000016 0 22 721047 0 16 00 00 00 97 00 0b 00 00 00 00 00 ............ +5749 11.899731636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465349 22 18 2072101 0 0x00000012 1 2072101 0 196609 0 12 00 00 00 25 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +5750 11.900053501 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528648 12 -1 721047 0 0xffffffff 0 -1 721047 0 ff ff ff ff 97 00 0b 00 00 00 00 00 ............ +5753 11.905169725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528660 12 -2 82972 82954 0xfffffffe 0 -2 82972 82954 fe ff ff ff 1c 44 01 00 0a 44 01 00 .....D...D.. +5775 12.002461910 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528672 12 26 730746 0 0x0000001a 0 26 730746 0 1a 00 00 00 7a 26 0b 00 00 00 00 00 ....z&...... +5777 12.002638817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528684 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1641611264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 9e 1f 00 00 00 00 00 ....T.c@.^1@......'....... +5779 12.003043175 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465371 12 -1 730746 0 0xffffffff 0 -1 730746 0 ff ff ff ff 7a 26 0b 00 00 00 00 00 ....z&...... +5781 12.003486633 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465383 12 22 721048 0 0x00000016 0 22 721048 0 16 00 00 00 98 00 0b 00 00 00 00 00 ............ +5783 12.003654957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465395 22 18 2072103 0 0x00000012 1 2072103 0 196609 0 12 00 00 00 27 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'................. +5785 12.004077435 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528710 12 -1 721048 0 0xffffffff 0 -1 721048 0 ff ff ff ff 98 00 0b 00 00 00 00 00 ............ +5799 12.081692696 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528722 12 34 730747 0 0x00000022 0 34 730747 0 22 00 00 00 7b 26 0b 00 00 00 00 00 """...{&......" +5801 12.081887960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528734 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324861952 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5d 13 02 00 00 00 00 00 38 bc 25 c3 9d 01 00 00 .....!...o3.......].......8.%..... +5803 12.081990480 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528768 12 67 730748 0 0x00000043 0 67 730748 0 43 00 00 00 7c 26 0b 00 00 00 00 00 C...|&...... +5805 12.082076788 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528780 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f bc 1d 5a 8b f6 ?.....3...|8...........].......=B.....&......... +5807 12.082164764 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465417 12 -1 730747 0 0xffffffff 0 -1 730747 0 ff ff ff ff 7b 26 0b 00 00 00 00 00 ....{&...... +5810 12.082892895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465429 12 -1 730748 0 0xffffffff 0 -1 730748 0 ff ff ff ff 7c 26 0b 00 00 00 00 00 ....|&...... +5812 12.083935499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465441 12 52 721049 0 0x00000034 0 52 721049 0 34 00 00 00 99 00 0b 00 00 00 00 00 4........... +5814 12.084156513 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465453 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5d 13 02 00 00 00 00 00 00 00 f9 16 9c e5 4d 01 00 00 "0...Dk.................L."".([.....]............." +5816 12.084538937 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528847 12 -1 721049 0 0xffffffff 0 -1 721049 0 ff ff ff ff 99 00 0b 00 00 00 00 00 ............ +5818 12.085679293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528859 12 30 730749 0 0x0000001e 0 30 730749 0 1e 00 00 00 7d 26 0b 00 00 00 00 00 ....}&...... +5820 12.085832357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528871 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1641480192 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......)........... +5822 12.086165667 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465505 12 -1 730749 0 0xffffffff 0 -1 730749 0 ff ff ff ff 7d 26 0b 00 00 00 00 00 ....}&...... +5824 12.086637974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465517 12 26 721050 0 0x0000001a 0 26 721050 0 1a 00 00 00 9a 00 0b 00 00 00 00 00 ............ +5826 12.086795330 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465529 26 22 2072105 0 0x00000016 1 2072105 0 196609 0 16 00 00 00 29 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....)..................... +5828 12.087028742 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528901 12 -1 721050 0 0xffffffff 0 -1 721050 0 ff ff ff ff 9a 00 0b 00 00 00 00 00 ............ +5832 12.105661154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528913 12 26 730750 0 0x0000001a 0 26 730750 0 1a 00 00 00 7e 26 0b 00 00 00 00 00 ....~&...... +5834 12.105887890 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528925 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1641349120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b 9e 1f 00 00 00 00 00 ....T.c@.^1@......+....... +5836 12.106238127 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465555 12 -1 730750 0 0xffffffff 0 -1 730750 0 ff ff ff ff 7e 26 0b 00 00 00 00 00 ....~&...... +5838 12.106703997 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465567 12 22 721051 0 0x00000016 0 22 721051 0 16 00 00 00 9b 00 0b 00 00 00 00 00 ............ +5840 12.106919050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465579 22 18 2072107 0 0x00000012 1 2072107 0 196609 0 12 00 00 00 2b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+................. +5842 12.107192039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528951 12 -1 721051 0 0xffffffff 0 -1 721051 0 ff ff ff ff 9b 00 0b 00 00 00 00 00 ............ +5846 12.158576488 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465601 12 -2 82955 82972 0xfffffffe 0 -2 82955 82972 fe ff ff ff 0b 44 01 00 1c 44 01 00 .....D...D.. +5853 12.208461761 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528963 12 26 730751 0 0x0000001a 0 26 730751 0 1a 00 00 00 7f 26 0b 00 00 00 00 00 .....&...... +5855 12.208636045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333528975 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1641218048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d 9e 1f 00 00 00 00 00 ....T.c@.^1@......-....... +5857 12.209156275 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465613 12 -1 730751 0 0xffffffff 0 -1 730751 0 ff ff ff ff 7f 26 0b 00 00 00 00 00 .....&...... +5859 12.209500790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465625 12 22 721052 0 0x00000016 0 22 721052 0 16 00 00 00 9c 00 0b 00 00 00 00 00 ............ +5861 12.209654331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465637 22 18 2072109 0 0x00000012 1 2072109 0 196609 0 12 00 00 00 2d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-................. +5863 12.210036993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529001 12 -1 721052 0 0xffffffff 0 -1 721052 0 ff ff ff ff 9c 00 0b 00 00 00 00 00 ............ +5871 12.312456846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529013 12 26 730752 0 0x0000001a 0 26 730752 0 1a 00 00 00 80 26 0b 00 00 00 00 00 .....&...... +5873 12.312624454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529025 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1641086976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f 9e 1f 00 00 00 00 00 ....T.c@.^1@....../....... +5875 12.313032389 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465659 12 -1 730752 0 0xffffffff 0 -1 730752 0 ff ff ff ff 80 26 0b 00 00 00 00 00 .....&...... +5877 12.313482523 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465671 12 22 721053 0 0x00000016 0 22 721053 0 16 00 00 00 9d 00 0b 00 00 00 00 00 ............ +5879 12.313638687 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465683 22 18 2072111 0 0x00000012 1 2072111 0 196609 0 12 00 00 00 2f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../................. +5881 12.314405918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529051 12 -1 721053 0 0xffffffff 0 -1 721053 0 ff ff ff ff 9d 00 0b 00 00 00 00 00 ............ +5887 12.386697054 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529063 12 101 730753 0 0x00000065 0 101 730753 0 65 00 00 00 81 26 0b 00 00 00 00 00 e....&...... +5889 12.386896372 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529075 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5e 13 02 00 00 00 00 00 69 bd 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5e 13 02 00 00 00 00 .....!...o3.......^.......i.%.....?.....3...|8.. +5891 12.387346506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465705 12 -1 730753 0 0xffffffff 0 -1 730753 0 ff ff ff ff 81 26 0b 00 00 00 00 00 .....&...... +5893 12.388854027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465717 12 52 721054 0 0x00000034 0 52 721054 0 34 00 00 00 9e 00 0b 00 00 00 00 00 4........... +5895 12.389073372 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465729 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5e 13 02 00 00 00 00 00 00 00 30 9c ca e5 4d 01 00 00 "0...Dk.................L."".([.....^.........0..." +5897 12.389366150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529176 12 -1 721054 0 0xffffffff 0 -1 721054 0 ff ff ff ff 9e 00 0b 00 00 00 00 00 ............ +5899 12.390256882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529188 12 30 730754 0 0x0000001e 0 30 730754 0 1e 00 00 00 82 26 0b 00 00 00 00 00 .....&...... +5901 12.390436649 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529200 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1640955904 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......1........... +5903 12.390899420 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465781 12 -1 730754 0 0xffffffff 0 -1 730754 0 ff ff ff ff 82 26 0b 00 00 00 00 00 .....&...... +5905 12.391283751 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465793 12 26 721055 0 0x0000001a 0 26 721055 0 1a 00 00 00 9f 00 0b 00 00 00 00 00 ............ +5907 12.391464949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465805 26 22 2072113 0 0x00000016 1 2072113 0 196609 0 16 00 00 00 31 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1..................... +5909 12.391852617 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529230 12 -1 721055 0 0xffffffff 0 -1 721055 0 ff ff ff ff 9f 00 0b 00 00 00 00 00 ............ +5916 12.405959129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529242 12 -2 82973 82955 0xfffffffe 0 -2 82973 82955 fe ff ff ff 1d 44 01 00 0b 44 01 00 .....D...D.. +5919 12.416692019 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529254 12 26 730755 0 0x0000001a 0 26 730755 0 1a 00 00 00 83 26 0b 00 00 00 00 00 .....&...... +5921 12.416960716 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529266 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1640824832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 9e 1f 00 00 00 00 00 ....T.c@.^1@......3....... +5923 12.417325258 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465831 12 -1 730755 0 0xffffffff 0 -1 730755 0 ff ff ff ff 83 26 0b 00 00 00 00 00 .....&...... +5925 12.417966843 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465843 12 22 721056 0 0x00000016 0 22 721056 0 16 00 00 00 a0 00 0b 00 00 00 00 00 ............ +5927 12.418115139 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465855 22 18 2072115 0 0x00000012 1 2072115 0 196609 0 12 00 00 00 33 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3................. +5929 12.418401718 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529292 12 -1 721056 0 0xffffffff 0 -1 721056 0 ff ff ff ff a0 00 0b 00 00 00 00 00 ............ +5935 12.519620180 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529304 12 26 730756 0 0x0000001a 0 26 730756 0 1a 00 00 00 84 26 0b 00 00 00 00 00 .....&...... +5937 12.519910097 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529316 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1640693760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 9e 1f 00 00 00 00 00 ....T.c@.^1@......5....... +5939 12.520282507 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465877 12 -1 730756 0 0xffffffff 0 -1 730756 0 ff ff ff ff 84 26 0b 00 00 00 00 00 .....&...... +5941 12.521645308 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465889 12 22 721057 0 0x00000016 0 22 721057 0 16 00 00 00 a1 00 0b 00 00 00 00 00 ............ +5943 12.521909475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465901 22 18 2072117 0 0x00000012 1 2072117 0 196609 0 12 00 00 00 35 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5................. +5945 12.522218466 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529342 12 -1 721057 0 0xffffffff 0 -1 721057 0 ff ff ff ff a1 00 0b 00 00 00 00 00 ............ +5947 12.624644756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529354 12 26 730757 0 0x0000001a 0 26 730757 0 1a 00 00 00 85 26 0b 00 00 00 00 00 .....&...... +5949 12.624933958 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529366 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1640562688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 9e 1f 00 00 00 00 00 ....T.c@.^1@......7....... +5951 12.625187159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465923 12 -1 730757 0 0xffffffff 0 -1 730757 0 ff ff ff ff 85 26 0b 00 00 00 00 00 .....&...... +5953 12.625674009 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465935 12 22 721058 0 0x00000016 0 22 721058 0 16 00 00 00 a2 00 0b 00 00 00 00 00 ............ +5955 12.625850201 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465947 22 18 2072119 0 0x00000012 1 2072119 0 196609 0 12 00 00 00 37 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7................. +5957 12.626225233 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529392 12 -1 721058 0 0xffffffff 0 -1 721058 0 ff ff ff ff a2 00 0b 00 00 00 00 00 ............ +5961 12.659568548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465969 12 -2 82956 82973 0xfffffffe 0 -2 82956 82973 fe ff ff ff 0c 44 01 00 1d 44 01 00 .....D...D.. +5967 12.691458941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529404 12 34 730758 0 0x00000022 0 34 730758 0 22 00 00 00 86 26 0b 00 00 00 00 00 """....&......" +5969 12.691638470 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529416 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 324993024 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 5f 13 02 00 00 00 00 00 9a be 25 c3 9d 01 00 00 .....!...o3......._.........%..... +5971 12.691763163 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529450 12 67 730759 0 0x00000043 0 67 730759 0 43 00 00 00 87 26 0b 00 00 00 00 00 C....&...... +5973 12.691848040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529462 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 5f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f8 a7 a6 af f6 ?.....3...|8..........._.......=B.....&......... +5974 12.691904545 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465981 12 -1 730758 0 0xffffffff 0 -1 730758 0 ff ff ff ff 86 26 0b 00 00 00 00 00 .....&...... +5977 12.692110538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377465993 12 -1 730759 0 0xffffffff 0 -1 730759 0 ff ff ff ff 87 26 0b 00 00 00 00 00 .....&...... +5979 12.693100691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466005 12 52 721059 0 0x00000034 0 52 721059 0 34 00 00 00 a3 00 0b 00 00 00 00 00 4........... +5981 12.693301916 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466017 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 5f 13 02 00 00 00 00 00 00 00 c4 0b f9 e5 4d 01 00 00 "0...Dk.................L."".([....._............." +5983 12.693590403 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529529 12 -1 721059 0 0xffffffff 0 -1 721059 0 ff ff ff ff a3 00 0b 00 00 00 00 00 ............ +5984 12.694357872 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529541 12 30 730760 0 0x0000001e 0 30 730760 0 1e 00 00 00 88 26 0b 00 00 00 00 00 .....&...... +5986 12.694526911 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529553 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1640431616 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......9........... +5988 12.694787025 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466069 12 -1 730760 0 0xffffffff 0 -1 730760 0 ff ff ff ff 88 26 0b 00 00 00 00 00 .....&...... +5990 12.695333719 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466081 12 26 721060 0 0x0000001a 0 26 721060 0 1a 00 00 00 a4 00 0b 00 00 00 00 00 ............ +5992 12.695541620 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466093 26 22 2072121 0 0x00000016 1 2072121 0 196609 0 16 00 00 00 39 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9..................... +5994 12.695811510 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529583 12 -1 721060 0 0xffffffff 0 -1 721060 0 ff ff ff ff a4 00 0b 00 00 00 00 00 ............ +5996 12.728599548 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529595 12 26 730761 0 0x0000001a 0 26 730761 0 1a 00 00 00 89 26 0b 00 00 00 00 00 .....&...... +5998 12.728775978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529607 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1640300544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b 9e 1f 00 00 00 00 00 ....T.c@.^1@......;....... +6000 12.729104042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466119 12 -1 730761 0 0xffffffff 0 -1 730761 0 ff ff ff ff 89 26 0b 00 00 00 00 00 .....&...... +6002 12.729605436 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466131 12 22 721061 0 0x00000016 0 22 721061 0 16 00 00 00 a5 00 0b 00 00 00 00 00 ............ +6004 12.729768515 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466143 22 18 2072123 0 0x00000012 1 2072123 0 196609 0 12 00 00 00 3b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;................. +6006 12.730065107 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529633 12 -1 721061 0 0xffffffff 0 -1 721061 0 ff ff ff ff a5 00 0b 00 00 00 00 00 ............ +6010 12.832592487 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529645 12 26 730762 0 0x0000001a 0 26 730762 0 1a 00 00 00 8a 26 0b 00 00 00 00 00 .....&...... +6012 12.832769871 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529657 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1640169472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d 9e 1f 00 00 00 00 00 ....T.c@.^1@......=....... +6014 12.833209991 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466165 12 -1 730762 0 0xffffffff 0 -1 730762 0 ff ff ff ff 8a 26 0b 00 00 00 00 00 .....&...... +6016 12.833608150 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466177 12 22 721062 0 0x00000016 0 22 721062 0 16 00 00 00 a6 00 0b 00 00 00 00 00 ............ +6018 12.833766460 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466189 22 18 2072125 0 0x00000012 1 2072125 0 196609 0 12 00 00 00 3d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=................. +6020 12.834094524 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529683 12 -1 721062 0 0xffffffff 0 -1 721062 0 ff ff ff ff a6 00 0b 00 00 00 00 00 ............ +6029 12.908122301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529695 12 -2 82974 82956 0xfffffffe 0 -2 82974 82956 fe ff ff ff 1e 44 01 00 0c 44 01 00 .....D...D.. +6032 12.935421705 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529707 12 26 730763 0 0x0000001a 0 26 730763 0 1a 00 00 00 8b 26 0b 00 00 00 00 00 .....&...... +6034 12.935614586 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529719 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1640038400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f 9e 1f 00 00 00 00 00 ....T.c@.^1@......?....... +6036 12.935968637 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466211 12 -1 730763 0 0xffffffff 0 -1 730763 0 ff ff ff ff 8b 26 0b 00 00 00 00 00 .....&...... +6038 12.937068224 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466223 12 22 721063 0 0x00000016 0 22 721063 0 16 00 00 00 a7 00 0b 00 00 00 00 00 ............ +6040 12.937214375 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466235 22 18 2072127 0 0x00000012 1 2072127 0 196609 0 12 00 00 00 3f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?................. +6042 12.937484264 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529745 12 -1 721063 0 0xffffffff 0 -1 721063 0 ff ff ff ff a7 00 0b 00 00 00 00 00 ............ +6050 12.996022701 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529757 12 34 730764 0 0x00000022 0 34 730764 0 22 00 00 00 8c 26 0b 00 00 00 00 00 """....&......" +6052 12.996234179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529769 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325058560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 60 13 02 00 00 00 00 00 cc bf 25 c3 9d 01 00 00 .....!...o3.......`.........%..... +6054 12.996467352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529803 12 67 730765 0 0x00000043 0 67 730765 0 43 00 00 00 8d 26 0b 00 00 00 00 00 C....&...... +6056 12.996560097 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466257 12 -1 730764 0 0xffffffff 0 -1 730764 0 ff ff ff ff 8c 26 0b 00 00 00 00 00 .....&...... +6058 12.996780634 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529815 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 60 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 18 4f d7 c1 f6 ?.....3...|8...........`.......=B.....&......... +6060 12.997049093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466269 12 -1 730765 0 0xffffffff 0 -1 730765 0 ff ff ff ff 8d 26 0b 00 00 00 00 00 .....&...... +6062 12.998011827 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466281 12 52 721064 0 0x00000034 0 52 721064 0 34 00 00 00 a8 00 0b 00 00 00 00 00 4........... +6064 12.998172045 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466293 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 60 13 02 00 00 00 00 00 00 00 8b 92 27 e6 4d 01 00 00 "0...Dk.................L."".([.....`...........'." +6066 12.998430490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529882 12 -1 721064 0 0xffffffff 0 -1 721064 0 ff ff ff ff a8 00 0b 00 00 00 00 00 ............ +6068 12.999341011 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529894 12 30 730766 0 0x0000001e 0 30 730766 0 1e 00 00 00 8e 26 0b 00 00 00 00 00 .....&...... +6070 12.999532938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529906 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1639907328 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......A........... +6072 13.000076294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466345 12 -1 730766 0 0xffffffff 0 -1 730766 0 ff ff ff ff 8e 26 0b 00 00 00 00 00 .....&...... +6074 13.000316381 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466357 12 26 721065 0 0x0000001a 0 26 721065 0 1a 00 00 00 a9 00 0b 00 00 00 00 00 ............ +6076 13.000474215 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466369 26 22 2072129 0 0x00000016 1 2072129 0 196609 0 16 00 00 00 41 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A..................... +6078 13.000786781 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529936 12 -1 721065 0 0xffffffff 0 -1 721065 0 ff ff ff ff a9 00 0b 00 00 00 00 00 ............ +6080 13.040496826 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529948 12 26 730767 0 0x0000001a 0 26 730767 0 1a 00 00 00 8f 26 0b 00 00 00 00 00 .....&...... +6082 13.040672541 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529960 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1639776256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 9e 1f 00 00 00 00 00 ....T.c@.^1@......C....... +6084 13.041108370 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466395 12 -1 730767 0 0xffffffff 0 -1 730767 0 ff ff ff ff 8f 26 0b 00 00 00 00 00 .....&...... +6086 13.041731358 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466407 12 22 721066 0 0x00000016 0 22 721066 0 16 00 00 00 aa 00 0b 00 00 00 00 00 ............ +6088 13.041880608 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466419 22 18 2072131 0 0x00000012 1 2072131 0 196609 0 12 00 00 00 43 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C................. +6090 13.042094469 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529986 12 -1 721066 0 0xffffffff 0 -1 721066 0 ff ff ff ff aa 00 0b 00 00 00 00 00 ............ +6092 13.144327641 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333529998 12 26 730768 0 0x0000001a 0 26 730768 0 1a 00 00 00 90 26 0b 00 00 00 00 00 .....&...... +6094 13.144563198 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530010 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1639645184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 9e 1f 00 00 00 00 00 ....T.c@.^1@......E....... +6096 13.144792795 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466441 12 -1 730768 0 0xffffffff 0 -1 730768 0 ff ff ff ff 90 26 0b 00 00 00 00 00 .....&...... +6098 13.145329475 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466453 12 22 721067 0 0x00000016 0 22 721067 0 16 00 00 00 ab 00 0b 00 00 00 00 00 ............ +6100 13.145557165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466465 22 18 2072133 0 0x00000012 1 2072133 0 196609 0 12 00 00 00 45 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E................. +6102 13.145840645 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530036 12 -1 721067 0 0xffffffff 0 -1 721067 0 ff ff ff ff ab 00 0b 00 00 00 00 00 ............ +6106 13.161106348 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466487 12 -2 82957 82974 0xfffffffe 0 -2 82957 82974 fe ff ff ff 0d 44 01 00 1e 44 01 00 .....D...D.. +6144 13.247037172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530048 12 26 730769 0 0x0000001a 0 26 730769 0 1a 00 00 00 91 26 0b 00 00 00 00 00 .....&...... +6146 13.247201681 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530060 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1639514112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 9e 1f 00 00 00 00 00 ....T.c@.^1@......G....... +6148 13.247536182 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466499 12 -1 730769 0 0xffffffff 0 -1 730769 0 ff ff ff ff 91 26 0b 00 00 00 00 00 .....&...... +6150 13.248103380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466511 12 22 721068 0 0x00000016 0 22 721068 0 16 00 00 00 ac 00 0b 00 00 00 00 00 ............ +6152 13.248558044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466523 22 18 2072135 0 0x00000012 1 2072135 0 196609 0 12 00 00 00 47 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G................. +6154 13.248827457 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530086 12 -1 721068 0 0xffffffff 0 -1 721068 0 ff ff ff ff ac 00 0b 00 00 00 00 00 ............ +6156 13.301634073 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530098 12 101 730770 0 0x00000065 0 101 730770 0 65 00 00 00 92 26 0b 00 00 00 00 00 e....&...... +6158 13.301819563 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530110 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 61 13 02 00 00 00 00 00 fc c0 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 61 13 02 00 00 00 00 .....!...o3.......a.........%.....?.....3...|8.. +6160 13.302288532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466545 12 -1 730770 0 0xffffffff 0 -1 730770 0 ff ff ff ff 92 26 0b 00 00 00 00 00 .....&...... +6162 13.303303957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466557 12 52 721069 0 0x00000034 0 52 721069 0 34 00 00 00 ad 00 0b 00 00 00 00 00 4........... +6164 13.303516865 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466569 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 61 13 02 00 00 00 00 00 00 00 49 27 56 e6 4d 01 00 00 "0...Dk.................L."".([.....a.........I'V." +6166 13.303915977 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530211 12 -1 721069 0 0xffffffff 0 -1 721069 0 ff ff ff ff ad 00 0b 00 00 00 00 00 ............ +6168 13.304971933 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530223 12 30 730771 0 0x0000001e 0 30 730771 0 1e 00 00 00 93 26 0b 00 00 00 00 00 .....&...... +6170 13.305131674 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530235 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1639383040 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......I........... +6172 13.305497408 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466621 12 -1 730771 0 0xffffffff 0 -1 730771 0 ff ff ff ff 93 26 0b 00 00 00 00 00 .....&...... +6174 13.305825949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466633 12 26 721070 0 0x0000001a 0 26 721070 0 1a 00 00 00 ae 00 0b 00 00 00 00 00 ............ +6176 13.305979967 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466645 26 22 2072137 0 0x00000016 1 2072137 0 196609 0 16 00 00 00 49 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I..................... +6178 13.306211472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530265 12 -1 721070 0 0xffffffff 0 -1 721070 0 ff ff ff ff ae 00 0b 00 00 00 00 00 ............ +6180 13.349802256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530277 12 26 730772 0 0x0000001a 0 26 730772 0 1a 00 00 00 94 26 0b 00 00 00 00 00 .....&...... +6182 13.349964142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530289 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1639251968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b 9e 1f 00 00 00 00 00 ....T.c@.^1@......K....... +6184 13.350307941 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466671 12 -1 730772 0 0xffffffff 0 -1 730772 0 ff ff ff ff 94 26 0b 00 00 00 00 00 .....&...... +6186 13.350814104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466683 12 22 721071 0 0x00000016 0 22 721071 0 16 00 00 00 af 00 0b 00 00 00 00 00 ............ +6188 13.350970268 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466695 22 18 2072139 0 0x00000012 1 2072139 0 196609 0 12 00 00 00 4b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K................. +6190 13.351240158 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530315 12 -1 721071 0 0xffffffff 0 -1 721071 0 ff ff ff ff af 00 0b 00 00 00 00 00 ............ +6199 13.408864737 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530327 12 -2 82975 82957 0xfffffffe 0 -2 82975 82957 fe ff ff ff 1f 44 01 00 0d 44 01 00 .....D...D.. +6204 13.453372717 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530339 12 26 730773 0 0x0000001a 0 26 730773 0 1a 00 00 00 95 26 0b 00 00 00 00 00 .....&...... +6206 13.453678370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530351 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1639120896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d 9e 1f 00 00 00 00 00 ....T.c@.^1@......M....... +6208 13.454135895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466717 12 -1 730773 0 0xffffffff 0 -1 730773 0 ff ff ff ff 95 26 0b 00 00 00 00 00 .....&...... +6210 13.454696655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466729 12 22 721072 0 0x00000016 0 22 721072 0 16 00 00 00 b0 00 0b 00 00 00 00 00 ............ +6212 13.454841852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466741 22 18 2072141 0 0x00000012 1 2072141 0 196609 0 12 00 00 00 4d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M................. +6214 13.455044985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530377 12 -1 721072 0 0xffffffff 0 -1 721072 0 ff ff ff ff b0 00 0b 00 00 00 00 00 ............ +6220 13.557135820 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530389 12 26 730774 0 0x0000001a 0 26 730774 0 1a 00 00 00 96 26 0b 00 00 00 00 00 .....&...... +6222 13.557317972 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530401 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1638989824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f 9e 1f 00 00 00 00 00 ....T.c@.^1@......O....... +6224 13.557715178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466763 12 -1 730774 0 0xffffffff 0 -1 730774 0 ff ff ff ff 96 26 0b 00 00 00 00 00 .....&...... +6226 13.558339357 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466775 12 22 721073 0 0x00000016 0 22 721073 0 16 00 00 00 b1 00 0b 00 00 00 00 00 ............ +6228 13.558587790 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466787 22 18 2072143 0 0x00000012 1 2072143 0 196609 0 12 00 00 00 4f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O................. +6230 13.558884859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530427 12 -1 721073 0 0xffffffff 0 -1 721073 0 ff ff ff ff b1 00 0b 00 00 00 00 00 ............ +6234 13.606676579 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530439 12 34 730775 0 0x00000022 0 34 730775 0 22 00 00 00 97 26 0b 00 00 00 00 00 """....&......" +6236 13.606954575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530451 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325189632 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 62 13 02 00 00 00 00 00 2d c2 25 c3 9d 01 00 00 .....!...o3.......b.......-.%..... +6238 13.607150555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530485 12 67 730776 0 0x00000043 0 67 730776 0 43 00 00 00 98 26 0b 00 00 00 00 00 C....&...... +6240 13.607250214 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530497 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 62 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 99 40 e6 f6 ?.....3...|8...........b.......=B.....&......... +6241 13.607267380 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466809 12 -1 730775 0 0xffffffff 0 -1 730775 0 ff ff ff ff 97 26 0b 00 00 00 00 00 .....&...... +6244 13.607502937 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466821 12 -1 730776 0 0xffffffff 0 -1 730776 0 ff ff ff ff 98 26 0b 00 00 00 00 00 .....&...... +6246 13.608319044 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466833 12 52 721074 0 0x00000034 0 52 721074 0 34 00 00 00 b2 00 0b 00 00 00 00 00 4........... +6248 13.608544111 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466845 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 62 13 02 00 00 00 00 00 00 00 45 b2 84 e6 4d 01 00 00 "0...Dk.................L."".([.....b.........E..." +6250 13.608816385 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530564 12 -1 721074 0 0xffffffff 0 -1 721074 0 ff ff ff ff b2 00 0b 00 00 00 00 00 ............ +6251 13.609753370 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530576 12 30 730777 0 0x0000001e 0 30 730777 0 1e 00 00 00 99 26 0b 00 00 00 00 00 .....&...... +6253 13.609952688 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530588 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1638858752 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q........... +6255 13.610303402 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466897 12 -1 730777 0 0xffffffff 0 -1 730777 0 ff ff ff ff 99 26 0b 00 00 00 00 00 .....&...... +6257 13.610740900 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466909 12 26 721075 0 0x0000001a 0 26 721075 0 1a 00 00 00 b3 00 0b 00 00 00 00 00 ............ +6259 13.610888243 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466921 26 22 2072145 0 0x00000016 1 2072145 0 196609 0 16 00 00 00 51 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q..................... +6261 13.611144066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530618 12 -1 721075 0 0xffffffff 0 -1 721075 0 ff ff ff ff b3 00 0b 00 00 00 00 00 ............ +6269 13.660217047 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530630 12 26 730778 0 0x0000001a 0 26 730778 0 1a 00 00 00 9a 26 0b 00 00 00 00 00 .....&...... +6271 13.660389662 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530642 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1638727680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 9e 1f 00 00 00 00 00 ....T.c@.^1@......S....... +6273 13.660786629 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466947 12 -1 730778 0 0xffffffff 0 -1 730778 0 ff ff ff ff 9a 26 0b 00 00 00 00 00 .....&...... +6275 13.661235571 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466959 12 22 721076 0 0x00000016 0 22 721076 0 16 00 00 00 b4 00 0b 00 00 00 00 00 ............ +6277 13.661381721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466971 22 18 2072147 0 0x00000012 1 2072147 0 196609 0 12 00 00 00 53 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S................. +6280 13.661636829 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377466993 12 -2 82958 82975 0xfffffffe 0 -2 82958 82975 fe ff ff ff 0e 44 01 00 1f 44 01 00 .....D...D.. +6281 13.661644459 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530668 12 -1 721076 0 0xffffffff 0 -1 721076 0 ff ff ff ff b4 00 0b 00 00 00 00 00 ............ +6289 13.764517546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530680 12 26 730779 0 0x0000001a 0 26 730779 0 1a 00 00 00 9b 26 0b 00 00 00 00 00 .....&...... +6291 13.764714956 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530692 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1638596608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 9e 1f 00 00 00 00 00 ....T.c@.^1@......U....... +6293 13.765096664 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467005 12 -1 730779 0 0xffffffff 0 -1 730779 0 ff ff ff ff 9b 26 0b 00 00 00 00 00 .....&...... +6295 13.765600204 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467017 12 22 721077 0 0x00000016 0 22 721077 0 16 00 00 00 b5 00 0b 00 00 00 00 00 ............ +6297 13.765758514 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467029 22 18 2072149 0 0x00000012 1 2072149 0 196609 0 12 00 00 00 55 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U................. +6299 13.766071081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530718 12 -1 721077 0 0xffffffff 0 -1 721077 0 ff ff ff ff b5 00 0b 00 00 00 00 00 ............ +6301 13.868357182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530730 12 26 730780 0 0x0000001a 0 26 730780 0 1a 00 00 00 9c 26 0b 00 00 00 00 00 .....&...... +6303 13.868669748 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530742 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1638465536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 9e 1f 00 00 00 00 00 ....T.c@.^1@......W....... +6305 13.869051933 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467051 12 -1 730780 0 0xffffffff 0 -1 730780 0 ff ff ff ff 9c 26 0b 00 00 00 00 00 .....&...... +6307 13.869484186 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467063 12 22 721078 0 0x00000016 0 22 721078 0 16 00 00 00 b6 00 0b 00 00 00 00 00 ............ +6309 13.869683743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467075 22 18 2072151 0 0x00000012 1 2072151 0 196609 0 12 00 00 00 57 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W................. +6311 13.869924545 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530768 12 -1 721078 0 0xffffffff 0 -1 721078 0 ff ff ff ff b6 00 0b 00 00 00 00 00 ............ +6320 13.911001682 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530780 12 -2 82976 82958 0xfffffffe 0 -2 82976 82958 fe ff ff ff 20 44 01 00 0e 44 01 00 .... D...D.. +6323 13.911725760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530792 12 101 730781 0 0x00000065 0 101 730781 0 65 00 00 00 9d 26 0b 00 00 00 00 00 e....&...... +6325 13.911892414 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530804 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 63 13 02 00 00 00 00 00 5e c3 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 63 13 02 00 00 00 00 .....!...o3.......c.......^.%.....?.....3...|8.. +6327 13.912235975 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467097 12 -1 730781 0 0xffffffff 0 -1 730781 0 ff ff ff ff 9d 26 0b 00 00 00 00 00 .....&...... +6329 13.913125277 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467109 12 52 721079 0 0x00000034 0 52 721079 0 34 00 00 00 b7 00 0b 00 00 00 00 00 4........... +6331 13.913287163 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467121 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 63 13 02 00 00 00 00 00 00 00 26 35 b3 e6 4d 01 00 00 "0...Dk.................L."".([.....c.........&5.." +6333 13.913608551 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530905 12 -1 721079 0 0xffffffff 0 -1 721079 0 ff ff ff ff b7 00 0b 00 00 00 00 00 ............ +6335 13.914367676 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530917 12 30 730782 0 0x0000001e 0 30 730782 0 1e 00 00 00 9e 26 0b 00 00 00 00 00 .....&...... +6337 13.914595604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530929 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1638334464 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y........... +6339 13.914908171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467173 12 -1 730782 0 0xffffffff 0 -1 730782 0 ff ff ff ff 9e 26 0b 00 00 00 00 00 .....&...... +6341 13.915253878 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467185 12 26 721080 0 0x0000001a 0 26 721080 0 1a 00 00 00 b8 00 0b 00 00 00 00 00 ............ +6343 13.915403605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467197 26 22 2072153 0 0x00000016 1 2072153 0 196609 0 16 00 00 00 59 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y..................... +6345 13.915688276 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530959 12 -1 721080 0 0xffffffff 0 -1 721080 0 ff ff ff ff b8 00 0b 00 00 00 00 00 ............ +6349 13.971093416 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530971 12 26 730783 0 0x0000001a 0 26 730783 0 1a 00 00 00 9f 26 0b 00 00 00 00 00 .....&...... +6351 13.971262932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333530983 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1638203392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b 9e 1f 00 00 00 00 00 ....T.c@.^1@......[....... +6353 13.971599340 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467223 12 -1 730783 0 0xffffffff 0 -1 730783 0 ff ff ff ff 9f 26 0b 00 00 00 00 00 .....&...... +6355 13.971994877 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467235 12 22 721081 0 0x00000016 0 22 721081 0 16 00 00 00 b9 00 0b 00 00 00 00 00 ............ +6357 13.972158670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467247 22 18 2072155 0 0x00000012 1 2072155 0 196609 0 12 00 00 00 5b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[................. +6359 13.972429752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531009 12 -1 721081 0 0xffffffff 0 -1 721081 0 ff ff ff ff b9 00 0b 00 00 00 00 00 ............ +6363 14.075282335 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531021 12 26 730784 0 0x0000001a 0 26 730784 0 1a 00 00 00 a0 26 0b 00 00 00 00 00 .....&...... +6365 14.075552940 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531033 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1638072320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d 9e 1f 00 00 00 00 00 ....T.c@.^1@......]....... +6367 14.075868845 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467269 12 -1 730784 0 0xffffffff 0 -1 730784 0 ff ff ff ff a0 26 0b 00 00 00 00 00 .....&...... +6369 14.077169895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467281 12 22 721082 0 0x00000016 0 22 721082 0 16 00 00 00 ba 00 0b 00 00 00 00 00 ............ +6371 14.077334404 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467293 22 18 2072157 0 0x00000012 1 2072157 0 196609 0 12 00 00 00 5d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....]................. +6373 14.077656984 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531059 12 -1 721082 0 0xffffffff 0 -1 721082 0 ff ff ff ff ba 00 0b 00 00 00 00 00 ............ +6377 14.162217140 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467315 12 -2 82959 82976 0xfffffffe 0 -2 82959 82976 fe ff ff ff 0f 44 01 00 20 44 01 00 .....D.. D.. +6385 14.180142879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531071 12 26 730785 0 0x0000001a 0 26 730785 0 1a 00 00 00 a1 26 0b 00 00 00 00 00 .....&...... +6387 14.180315256 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531083 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1637941248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f 9e 1f 00 00 00 00 00 ....T.c@.^1@......_....... +6389 14.180698395 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467327 12 -1 730785 0 0xffffffff 0 -1 730785 0 ff ff ff ff a1 26 0b 00 00 00 00 00 .....&...... +6391 14.181142092 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467339 12 22 721083 0 0x00000016 0 22 721083 0 16 00 00 00 bb 00 0b 00 00 00 00 00 ............ +6393 14.181291819 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467351 22 18 2072159 0 0x00000012 1 2072159 0 196609 0 12 00 00 00 5f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._................. +6395 14.181700230 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531109 12 -1 721083 0 0xffffffff 0 -1 721083 0 ff ff ff ff bb 00 0b 00 00 00 00 00 ............ +6397 14.215534210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531121 12 34 730786 0 0x00000022 0 34 730786 0 22 00 00 00 a2 26 0b 00 00 00 00 00 """....&......" +6399 14.215690136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531133 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325320704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 64 13 02 00 00 00 00 00 8e c4 25 c3 9d 01 00 00 .....!...o3.......d.........%..... +6401 14.215827465 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531167 12 67 730787 0 0x00000043 0 67 730787 0 43 00 00 00 a3 26 0b 00 00 00 00 00 C....&...... +6403 14.215912104 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531179 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 64 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 bd 8a 0a f7 ?.....3...|8...........d.......=B.....&......... +6405 14.216015816 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467373 12 -1 730786 0 0xffffffff 0 -1 730786 0 ff ff ff ff a2 26 0b 00 00 00 00 00 .....&...... +6407 14.216192484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467385 12 -1 730787 0 0xffffffff 0 -1 730787 0 ff ff ff ff a3 26 0b 00 00 00 00 00 .....&...... +6409 14.216988087 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467397 12 52 721084 0 0x00000034 0 52 721084 0 34 00 00 00 bc 00 0b 00 00 00 00 00 4........... +6411 14.217141867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467409 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 64 13 02 00 00 00 00 00 00 00 bb 92 e1 e6 4d 01 00 00 "0...Dk.................L."".([.....d............." +6413 14.217413664 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531246 12 -1 721084 0 0xffffffff 0 -1 721084 0 ff ff ff ff bc 00 0b 00 00 00 00 00 ............ +6415 14.218239546 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531258 12 30 730788 0 0x0000001e 0 30 730788 0 1e 00 00 00 a4 26 0b 00 00 00 00 00 .....&...... +6417 14.218376637 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531270 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1637810176 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......a........... +6419 14.218674660 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467461 12 -1 730788 0 0xffffffff 0 -1 730788 0 ff ff ff ff a4 26 0b 00 00 00 00 00 .....&...... +6421 14.219070673 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467473 12 26 721085 0 0x0000001a 0 26 721085 0 1a 00 00 00 bd 00 0b 00 00 00 00 00 ............ +6423 14.219209671 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467485 26 22 2072161 0 0x00000016 1 2072161 0 196609 0 16 00 00 00 61 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a..................... +6425 14.219470739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531300 12 -1 721085 0 0xffffffff 0 -1 721085 0 ff ff ff ff bd 00 0b 00 00 00 00 00 ............ +6435 14.283061266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531312 12 26 730789 0 0x0000001a 0 26 730789 0 1a 00 00 00 a5 26 0b 00 00 00 00 00 .....&...... +6437 14.283282757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531324 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1637679104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 9e 1f 00 00 00 00 00 ....T.c@.^1@......c....... +6439 14.283687830 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467511 12 -1 730789 0 0xffffffff 0 -1 730789 0 ff ff ff ff a5 26 0b 00 00 00 00 00 .....&...... +6441 14.284126043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467523 12 22 721086 0 0x00000016 0 22 721086 0 16 00 00 00 be 00 0b 00 00 00 00 00 ............ +6443 14.284306288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467535 22 18 2072163 0 0x00000012 1 2072163 0 196609 0 12 00 00 00 63 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c................. +6445 14.284748554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531350 12 -1 721086 0 0xffffffff 0 -1 721086 0 ff ff ff ff be 00 0b 00 00 00 00 00 ............ +6470 14.386941433 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531362 12 26 730790 0 0x0000001a 0 26 730790 0 1a 00 00 00 a6 26 0b 00 00 00 00 00 .....&...... +6472 14.387102127 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531374 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1637548032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 9e 1f 00 00 00 00 00 ....T.c@.^1@......e....... +6474 14.387479544 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467557 12 -1 730790 0 0xffffffff 0 -1 730790 0 ff ff ff ff a6 26 0b 00 00 00 00 00 .....&...... +6476 14.388061285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467569 12 22 721087 0 0x00000016 0 22 721087 0 16 00 00 00 bf 00 0b 00 00 00 00 00 ............ +6478 14.388263702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467581 22 18 2072165 0 0x00000012 1 2072165 0 196609 0 12 00 00 00 65 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e................. +6480 14.388639450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531400 12 -1 721087 0 0xffffffff 0 -1 721087 0 ff ff ff ff bf 00 0b 00 00 00 00 00 ............ +6492 14.411867380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531412 12 -2 82977 82959 0xfffffffe 0 -2 82977 82959 fe ff ff ff 21 44 01 00 0f 44 01 00 ....!D...D.. +6498 14.489772081 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531424 12 26 730791 0 0x0000001a 0 26 730791 0 1a 00 00 00 a7 26 0b 00 00 00 00 00 .....&...... +6500 14.489949226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531436 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1637416960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 9e 1f 00 00 00 00 00 ....T.c@.^1@......g....... +6502 14.490321636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467603 12 -1 730791 0 0xffffffff 0 -1 730791 0 ff ff ff ff a7 26 0b 00 00 00 00 00 .....&...... +6504 14.490610838 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467615 12 22 721088 0 0x00000016 0 22 721088 0 16 00 00 00 c0 00 0b 00 00 00 00 00 ............ +6506 14.490771055 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467627 22 18 2072167 0 0x00000012 1 2072167 0 196609 0 12 00 00 00 67 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g................. +6508 14.491021633 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531462 12 -1 721088 0 0xffffffff 0 -1 721088 0 ff ff ff ff c0 00 0b 00 00 00 00 00 ............ +6512 14.520060062 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531474 12 34 730792 0 0x00000022 0 34 730792 0 22 00 00 00 a8 26 0b 00 00 00 00 00 """....&......" +6514 14.520269632 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531486 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325386240 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 65 13 02 00 00 00 00 00 bf c5 25 c3 9d 01 00 00 .....!...o3.......e.........%..... +6516 14.520412922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531520 12 67 730793 0 0x00000043 0 67 730793 0 43 00 00 00 a9 26 0b 00 00 00 00 00 C....&...... +6518 14.520541191 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531532 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 65 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f4 02 a6 1c f7 ?.....3...|8...........e.......=B.....&......... +6519 14.520652294 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467649 12 -1 730792 0 0xffffffff 0 -1 730792 0 ff ff ff ff a8 26 0b 00 00 00 00 00 .....&...... +6520 14.520807743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467661 12 -1 730793 0 0xffffffff 0 -1 730793 0 ff ff ff ff a9 26 0b 00 00 00 00 00 .....&...... +6523 14.521756172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467673 12 52 721089 0 0x00000034 0 52 721089 0 34 00 00 00 c1 00 0b 00 00 00 00 00 4........... +6525 14.521913052 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467685 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 65 13 02 00 00 00 00 00 00 00 43 11 10 e7 4d 01 00 00 "0...Dk.................L."".([.....e.........C..." +6527 14.522199631 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531599 12 -1 721089 0 0xffffffff 0 -1 721089 0 ff ff ff ff c1 00 0b 00 00 00 00 00 ............ +6528 14.522981882 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531611 12 30 730794 0 0x0000001e 0 30 730794 0 1e 00 00 00 aa 26 0b 00 00 00 00 00 .....&...... +6529 14.523083210 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531623 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1637285888 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 69 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......i........... +6530 14.523380041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467737 12 -1 730794 0 0xffffffff 0 -1 730794 0 ff ff ff ff aa 26 0b 00 00 00 00 00 .....&...... +6532 14.523658752 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467749 12 26 721090 0 0x0000001a 0 26 721090 0 1a 00 00 00 c2 00 0b 00 00 00 00 00 ............ +6534 14.523803949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467761 26 22 2072169 0 0x00000016 1 2072169 0 196609 0 16 00 00 00 69 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....i..................... +6536 14.524038076 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531653 12 -1 721090 0 0xffffffff 0 -1 721090 0 ff ff ff ff c2 00 0b 00 00 00 00 00 ............ +6538 14.593980789 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531665 12 26 730795 0 0x0000001a 0 26 730795 0 1a 00 00 00 ab 26 0b 00 00 00 00 00 .....&...... +6540 14.594151735 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531677 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1637154816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b 9e 1f 00 00 00 00 00 ....T.c@.^1@......k....... +6542 14.594520807 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467787 12 -1 730795 0 0xffffffff 0 -1 730795 0 ff ff ff ff ab 26 0b 00 00 00 00 00 .....&...... +6544 14.594943285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467799 12 22 721091 0 0x00000016 0 22 721091 0 16 00 00 00 c3 00 0b 00 00 00 00 00 ............ +6546 14.595098019 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467811 22 18 2072171 0 0x00000012 1 2072171 0 196609 0 12 00 00 00 6b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k................. +6548 14.595431805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531703 12 -1 721091 0 0xffffffff 0 -1 721091 0 ff ff ff ff c3 00 0b 00 00 00 00 00 ............ +6552 14.663558006 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467833 12 -2 82960 82977 0xfffffffe 0 -2 82960 82977 fe ff ff ff 10 44 01 00 21 44 01 00 .....D..!D.. +6558 14.696844816 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531715 12 26 730796 0 0x0000001a 0 26 730796 0 1a 00 00 00 ac 26 0b 00 00 00 00 00 .....&...... +6560 14.697030067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531727 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1637023744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d 9e 1f 00 00 00 00 00 ....T.c@.^1@......m....... +6562 14.697456360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467845 12 -1 730796 0 0xffffffff 0 -1 730796 0 ff ff ff ff ac 26 0b 00 00 00 00 00 .....&...... +6564 14.698007822 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467857 12 22 721092 0 0x00000016 0 22 721092 0 16 00 00 00 c4 00 0b 00 00 00 00 00 ............ +6566 14.698148251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467869 22 18 2072173 0 0x00000012 1 2072173 0 196609 0 12 00 00 00 6d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m................. +6568 14.698451757 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531753 12 -1 721092 0 0xffffffff 0 -1 721092 0 ff ff ff ff c4 00 0b 00 00 00 00 00 ............ +6572 14.800947428 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531765 12 26 730797 0 0x0000001a 0 26 730797 0 1a 00 00 00 ad 26 0b 00 00 00 00 00 .....&...... +6574 14.801131964 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531777 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1636892672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f 9e 1f 00 00 00 00 00 ....T.c@.^1@......o....... +6576 14.801469564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467891 12 -1 730797 0 0xffffffff 0 -1 730797 0 ff ff ff ff ad 26 0b 00 00 00 00 00 .....&...... +6578 14.801915646 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467903 12 22 721093 0 0x00000016 0 22 721093 0 16 00 00 00 c5 00 0b 00 00 00 00 00 ............ +6580 14.802089214 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467915 22 18 2072175 0 0x00000012 1 2072175 0 196609 0 12 00 00 00 6f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o................. +6582 14.802401066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531803 12 -1 721093 0 0xffffffff 0 -1 721093 0 ff ff ff ff c5 00 0b 00 00 00 00 00 ............ +6584 14.824347258 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531815 12 34 730798 0 0x00000022 0 34 730798 0 22 00 00 00 ae 26 0b 00 00 00 00 00 """....&......" +6586 14.824530602 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531827 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325451776 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 66 13 02 00 00 00 00 00 ef c6 25 c3 9d 01 00 00 .....!...o3.......f.........%..... +6588 14.824667215 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531861 12 67 730799 0 0x00000043 0 67 730799 0 43 00 00 00 af 26 0b 00 00 00 00 00 C....&...... +6590 14.824754477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531873 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 66 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 e3 d4 2e f7 ?.....3...|8...........f.......=B.....&......... +6592 14.824897051 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467937 12 -1 730798 0 0xffffffff 0 -1 730798 0 ff ff ff ff ae 26 0b 00 00 00 00 00 .....&...... +6594 14.825093985 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467949 12 -1 730799 0 0xffffffff 0 -1 730799 0 ff ff ff ff af 26 0b 00 00 00 00 00 .....&...... +6596 14.825763702 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467961 12 52 721094 0 0x00000034 0 52 721094 0 34 00 00 00 c6 00 0b 00 00 00 00 00 4........... +6598 14.825904369 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377467973 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 66 13 02 00 00 00 00 00 00 00 10 77 3e e7 4d 01 00 00 "0...Dk.................L."".([.....f..........w>." +6600 14.826172352 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531940 12 -1 721094 0 0xffffffff 0 -1 721094 0 ff ff ff ff c6 00 0b 00 00 00 00 00 ............ +6602 14.827104092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531952 12 30 730800 0 0x0000001e 0 30 730800 0 1e 00 00 00 b0 26 0b 00 00 00 00 00 .....&...... +6604 14.827277899 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531964 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1636761600 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 71 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......q........... +6606 14.827564240 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468025 12 -1 730800 0 0xffffffff 0 -1 730800 0 ff ff ff ff b0 26 0b 00 00 00 00 00 .....&...... +6608 14.828037262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468037 12 26 721095 0 0x0000001a 0 26 721095 0 1a 00 00 00 c7 00 0b 00 00 00 00 00 ............ +6610 14.828194141 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468049 26 22 2072177 0 0x00000016 1 2072177 0 196609 0 16 00 00 00 71 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....q..................... +6612 14.828795910 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333531994 12 -1 721095 0 0xffffffff 0 -1 721095 0 ff ff ff ff c7 00 0b 00 00 00 00 00 ............ +6620 14.903904915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532006 12 26 730801 0 0x0000001a 0 26 730801 0 1a 00 00 00 b1 26 0b 00 00 00 00 00 .....&...... +6622 14.904073477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532018 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1636630528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 9e 1f 00 00 00 00 00 ....T.c@.^1@......s....... +6624 14.904463530 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468075 12 -1 730801 0 0xffffffff 0 -1 730801 0 ff ff ff ff b1 26 0b 00 00 00 00 00 .....&...... +6626 14.904853821 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468087 12 22 721096 0 0x00000016 0 22 721096 0 16 00 00 00 c8 00 0b 00 00 00 00 00 ............ +6628 14.905008554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468099 22 18 2072179 0 0x00000012 1 2072179 0 196609 0 12 00 00 00 73 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s................. +6630 14.905294180 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532044 12 -1 721096 0 0xffffffff 0 -1 721096 0 ff ff ff ff c8 00 0b 00 00 00 00 00 ............ +6633 14.912596941 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532056 12 -2 82978 82960 0xfffffffe 0 -2 82978 82960 fe ff ff ff 22 44 01 00 10 44 01 00 "....""D...D.." +6640 15.006789923 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532068 12 26 730802 0 0x0000001a 0 26 730802 0 1a 00 00 00 b2 26 0b 00 00 00 00 00 .....&...... +6642 15.006960154 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532080 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1636499456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 9e 1f 00 00 00 00 00 ....T.c@.^1@......u....... +6644 15.007318735 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468121 12 -1 730802 0 0xffffffff 0 -1 730802 0 ff ff ff ff b2 26 0b 00 00 00 00 00 .....&...... +6646 15.007642508 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468133 12 22 721097 0 0x00000016 0 22 721097 0 16 00 00 00 c9 00 0b 00 00 00 00 00 ............ +6648 15.007797956 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468145 22 18 2072181 0 0x00000012 1 2072181 0 196609 0 12 00 00 00 75 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u................. +6650 15.008121490 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532106 12 -1 721097 0 0xffffffff 0 -1 721097 0 ff ff ff ff c9 00 0b 00 00 00 00 00 ............ +6652 15.110714436 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532118 12 26 730803 0 0x0000001a 0 26 730803 0 1a 00 00 00 b3 26 0b 00 00 00 00 00 .....&...... +6654 15.110905409 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532130 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1636368384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 9e 1f 00 00 00 00 00 ....T.c@.^1@......w....... +6656 15.111336946 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468167 12 -1 730803 0 0xffffffff 0 -1 730803 0 ff ff ff ff b3 26 0b 00 00 00 00 00 .....&...... +6658 15.111783743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468179 12 22 721098 0 0x00000016 0 22 721098 0 16 00 00 00 ca 00 0b 00 00 00 00 00 ............ +6660 15.111953020 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468191 22 18 2072183 0 0x00000012 1 2072183 0 196609 0 12 00 00 00 77 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w................. +6662 15.112365007 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532156 12 -1 721098 0 0xffffffff 0 -1 721098 0 ff ff ff ff ca 00 0b 00 00 00 00 00 ............ +6664 15.129003048 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532168 12 34 730804 0 0x00000022 0 34 730804 0 22 00 00 00 b4 26 0b 00 00 00 00 00 """....&......" +6666 15.129170179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532180 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325517312 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 13 02 00 00 00 00 00 20 c8 25 c3 9d 01 00 00 .....!...o3.......g....... .%..... +6668 15.129258871 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532214 12 67 730805 0 0x00000043 0 67 730805 0 43 00 00 00 b5 26 0b 00 00 00 00 00 C....&...... +6670 15.129341602 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532226 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 67 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 97 f0 40 f7 ?.....3...|8...........g.......=B.....&......... +6672 15.129421711 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468213 12 -1 730804 0 0xffffffff 0 -1 730804 0 ff ff ff ff b4 26 0b 00 00 00 00 00 .....&...... +6674 15.129585981 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468225 12 -1 730805 0 0xffffffff 0 -1 730805 0 ff ff ff ff b5 26 0b 00 00 00 00 00 .....&...... +6676 15.130376339 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468237 12 52 721099 0 0x00000034 0 52 721099 0 34 00 00 00 cb 00 0b 00 00 00 00 00 4........... +6678 15.130537748 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468249 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 67 13 02 00 00 00 00 00 00 00 4d f2 6c e7 4d 01 00 00 "0...Dk.................L."".([.....g.........M.l." +6680 15.130797148 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532293 12 -1 721099 0 0xffffffff 0 -1 721099 0 ff ff ff ff cb 00 0b 00 00 00 00 00 ............ +6682 15.131669760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532305 12 30 730806 0 0x0000001e 0 30 730806 0 1e 00 00 00 b6 26 0b 00 00 00 00 00 .....&...... +6684 15.131809711 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532317 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1636237312 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 79 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......y........... +6686 15.132235050 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468301 12 -1 730806 0 0xffffffff 0 -1 730806 0 ff ff ff ff b6 26 0b 00 00 00 00 00 .....&...... +6688 15.132549524 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468313 12 26 721100 0 0x0000001a 0 26 721100 0 1a 00 00 00 cc 00 0b 00 00 00 00 00 ............ +6690 15.132706165 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468325 26 22 2072185 0 0x00000016 1 2072185 0 196609 0 16 00 00 00 79 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....y..................... +6692 15.132921696 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532347 12 -1 721100 0 0xffffffff 0 -1 721100 0 ff ff ff ff cc 00 0b 00 00 00 00 00 ............ +6696 15.163799763 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468351 12 -2 82961 82978 0xfffffffe 0 -2 82961 82978 fe ff ff ff 11 44 01 00 22 44 01 00 ".....D..""D.." +6702 15.213560343 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532359 12 26 730807 0 0x0000001a 0 26 730807 0 1a 00 00 00 b7 26 0b 00 00 00 00 00 .....&...... +6704 15.213785172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532371 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1636106240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b 9e 1f 00 00 00 00 00 ....T.c@.^1@......{....... +6706 15.214090109 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468363 12 -1 730807 0 0xffffffff 0 -1 730807 0 ff ff ff ff b7 26 0b 00 00 00 00 00 .....&...... +6708 15.214583635 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468375 12 22 721101 0 0x00000016 0 22 721101 0 16 00 00 00 cd 00 0b 00 00 00 00 00 ............ +6710 15.214783669 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468387 22 18 2072187 0 0x00000012 1 2072187 0 196609 0 12 00 00 00 7b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{................. +6712 15.215068102 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532397 12 -1 721101 0 0xffffffff 0 -1 721101 0 ff ff ff ff cd 00 0b 00 00 00 00 00 ............ +6720 15.316595554 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532409 12 26 730808 0 0x0000001a 0 26 730808 0 1a 00 00 00 b8 26 0b 00 00 00 00 00 .....&...... +6722 15.316798925 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532421 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1635975168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d 9e 1f 00 00 00 00 00 ....T.c@.^1@......}....... +6724 15.317131042 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468409 12 -1 730808 0 0xffffffff 0 -1 730808 0 ff ff ff ff b8 26 0b 00 00 00 00 00 .....&...... +6726 15.317507505 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468421 12 22 721102 0 0x00000016 0 22 721102 0 16 00 00 00 ce 00 0b 00 00 00 00 00 ............ +6728 15.317665815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468433 22 18 2072189 0 0x00000012 1 2072189 0 196609 0 12 00 00 00 7d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}................. +6730 15.318008184 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532447 12 -1 721102 0 0xffffffff 0 -1 721102 0 ff ff ff ff ce 00 0b 00 00 00 00 00 ............ +6748 15.414255619 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532459 12 -2 82979 82961 0xfffffffe 0 -2 82979 82961 fe ff ff ff 23 44 01 00 11 44 01 00 ....#D...D.. +6752 15.419961691 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532471 12 26 730809 0 0x0000001a 0 26 730809 0 1a 00 00 00 b9 26 0b 00 00 00 00 00 .....&...... +6754 15.420123100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532483 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1635844096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6756 15.420464516 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468455 12 -1 730809 0 0xffffffff 0 -1 730809 0 ff ff ff ff b9 26 0b 00 00 00 00 00 .....&...... +6758 15.420944452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468467 12 22 721103 0 0x00000016 0 22 721103 0 16 00 00 00 cf 00 0b 00 00 00 00 00 ............ +6760 15.421110630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468479 22 18 2072191 0 0x00000012 1 2072191 0 196609 0 12 00 00 00 7f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6762 15.421519756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532509 12 -1 721103 0 0xffffffff 0 -1 721103 0 ff ff ff ff cf 00 0b 00 00 00 00 00 ............ +6764 15.433279991 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532521 12 34 730810 0 0x00000022 0 34 730810 0 22 00 00 00 ba 26 0b 00 00 00 00 00 """....&......" +6766 15.433451653 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532533 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325582848 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 13 02 00 00 00 00 00 50 c9 25 c3 9d 01 00 00 .....!...o3.......h.......P.%..... +6768 15.433539391 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532567 12 67 730811 0 0x00000043 0 67 730811 0 43 00 00 00 bb 26 0b 00 00 00 00 00 C....&...... +6770 15.433622837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532579 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 68 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 e9 13 53 f7 ?.....3...|8...........h.......=B.....&......... +6772 15.433741331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468501 12 -1 730810 0 0xffffffff 0 -1 730810 0 ff ff ff ff ba 26 0b 00 00 00 00 00 .....&...... +6774 15.433909655 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468513 12 -1 730811 0 0xffffffff 0 -1 730811 0 ff ff ff ff bb 26 0b 00 00 00 00 00 .....&...... +6776 15.434646130 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468525 12 52 721104 0 0x00000034 0 52 721104 0 34 00 00 00 d0 00 0b 00 00 00 00 00 4........... +6778 15.434834957 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468537 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 68 13 02 00 00 00 00 00 00 00 d6 5e 9b e7 4d 01 00 00 "0...Dk.................L."".([.....h..........^.." +6780 15.435112238 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532646 12 -1 721104 0 0xffffffff 0 -1 721104 0 ff ff ff ff d0 00 0b 00 00 00 00 00 ............ +6784 15.436061144 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532658 12 30 730812 0 0x0000001e 0 30 730812 0 1e 00 00 00 bc 26 0b 00 00 00 00 00 .....&...... +6786 15.436342955 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532670 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1635713024 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 81 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6788 15.436726809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468589 12 -1 730812 0 0xffffffff 0 -1 730812 0 ff ff ff ff bc 26 0b 00 00 00 00 00 .....&...... +6790 15.437079668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468601 12 26 721105 0 0x0000001a 0 26 721105 0 1a 00 00 00 d1 00 0b 00 00 00 00 00 ............ +6792 15.437345743 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468613 26 22 2072193 0 0x00000016 1 2072193 0 196609 0 16 00 00 00 81 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6794 15.437670708 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532700 12 -1 721105 0 0xffffffff 0 -1 721105 0 ff ff ff ff d1 00 0b 00 00 00 00 00 ............ +6814 15.523046970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532712 12 26 730813 0 0x0000001a 0 26 730813 0 1a 00 00 00 bd 26 0b 00 00 00 00 00 .....&...... +6816 15.523236036 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532724 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1635581952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6818 15.523643494 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468639 12 -1 730813 0 0xffffffff 0 -1 730813 0 ff ff ff ff bd 26 0b 00 00 00 00 00 .....&...... +6820 15.524010181 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468651 12 22 721106 0 0x00000016 0 22 721106 0 16 00 00 00 d2 00 0b 00 00 00 00 00 ............ +6822 15.524173260 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468663 22 18 2072195 0 0x00000012 1 2072195 0 196609 0 12 00 00 00 83 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6824 15.524483681 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532750 12 -1 721106 0 0xffffffff 0 -1 721106 0 ff ff ff ff d2 00 0b 00 00 00 00 00 ............ +6826 15.627217770 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532762 12 26 730814 0 0x0000001a 0 26 730814 0 1a 00 00 00 be 26 0b 00 00 00 00 00 .....&...... +6828 15.627427101 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532774 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1635450880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6830 15.627713203 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468685 12 -1 730814 0 0xffffffff 0 -1 730814 0 ff ff ff ff be 26 0b 00 00 00 00 00 .....&...... +6832 15.628246069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468697 12 22 721107 0 0x00000016 0 22 721107 0 16 00 00 00 d3 00 0b 00 00 00 00 00 ............ +6834 15.628436327 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468709 22 18 2072197 0 0x00000012 1 2072197 0 196609 0 12 00 00 00 85 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6836 15.628700018 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532800 12 -1 721107 0 0xffffffff 0 -1 721107 0 ff ff ff ff d3 00 0b 00 00 00 00 00 ............ +6840 15.663893461 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468731 12 -2 82962 82979 0xfffffffe 0 -2 82962 82979 fe ff ff ff 12 44 01 00 23 44 01 00 .....D..#D.. +6846 15.731156111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532812 12 26 730815 0 0x0000001a 0 26 730815 0 1a 00 00 00 bf 26 0b 00 00 00 00 00 .....&...... +6848 15.731404305 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532824 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1635319808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6850 15.731646776 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468743 12 -1 730815 0 0xffffffff 0 -1 730815 0 ff ff ff ff bf 26 0b 00 00 00 00 00 .....&...... +6852 15.732129574 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468755 12 22 721108 0 0x00000016 0 22 721108 0 16 00 00 00 d4 00 0b 00 00 00 00 00 ............ +6854 15.732268810 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468767 22 18 2072199 0 0x00000012 1 2072199 0 196609 0 12 00 00 00 87 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6856 15.732578039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532850 12 -1 721108 0 0xffffffff 0 -1 721108 0 ff ff ff ff d4 00 0b 00 00 00 00 00 ............ +6858 15.737320423 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532862 12 34 730816 0 0x00000022 0 34 730816 0 22 00 00 00 c0 26 0b 00 00 00 00 00 """....&......" +6860 15.737494707 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532874 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325648384 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 69 13 02 00 00 00 00 00 80 ca 25 c3 9d 01 00 00 .....!...o3.......i.........%..... +6862 15.737581015 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532908 12 67 730817 0 0x00000043 0 67 730817 0 43 00 00 00 c1 26 0b 00 00 00 00 00 C....&...... +6864 15.737663746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532920 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 69 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 af 32 65 f7 ?.....3...|8...........i.......=B.....&......... +6866 15.737906456 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468789 12 -1 730816 0 0xffffffff 0 -1 730816 0 ff ff ff ff c0 26 0b 00 00 00 00 00 .....&...... +6868 15.738054752 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468801 12 -1 730817 0 0xffffffff 0 -1 730817 0 ff ff ff ff c1 26 0b 00 00 00 00 00 .....&...... +6870 15.738600254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468813 12 52 721109 0 0x00000034 0 52 721109 0 34 00 00 00 d5 00 0b 00 00 00 00 00 4........... +6872 15.738945961 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468825 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 69 13 02 00 00 00 00 00 00 00 05 c2 c9 e7 4d 01 00 00 "0...Dk.................L."".([.....i............." +6874 15.739205122 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532987 12 -1 721109 0 0xffffffff 0 -1 721109 0 ff ff ff ff d5 00 0b 00 00 00 00 00 ............ +6876 15.739970922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333532999 12 30 730818 0 0x0000001e 0 30 730818 0 1e 00 00 00 c2 26 0b 00 00 00 00 00 .....&...... +6878 15.740108252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533011 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1635188736 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 89 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6880 15.740442514 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468877 12 -1 730818 0 0xffffffff 0 -1 730818 0 ff ff ff ff c2 26 0b 00 00 00 00 00 .....&...... +6882 15.740851641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468889 12 26 721110 0 0x0000001a 0 26 721110 0 1a 00 00 00 d6 00 0b 00 00 00 00 00 ............ +6884 15.740986347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468901 26 22 2072201 0 0x00000016 1 2072201 0 196609 0 16 00 00 00 89 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6886 15.741231680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533041 12 -1 721110 0 0xffffffff 0 -1 721110 0 ff ff ff ff d6 00 0b 00 00 00 00 00 ............ +6890 15.834995985 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533053 12 26 730819 0 0x0000001a 0 26 730819 0 1a 00 00 00 c3 26 0b 00 00 00 00 00 .....&...... +6892 15.835169315 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533065 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1635057664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6894 15.835566282 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468927 12 -1 730819 0 0xffffffff 0 -1 730819 0 ff ff ff ff c3 26 0b 00 00 00 00 00 .....&...... +6896 15.836281061 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468939 12 22 721111 0 0x00000016 0 22 721111 0 16 00 00 00 d7 00 0b 00 00 00 00 00 ............ +6898 15.836506128 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468951 22 18 2072203 0 0x00000012 1 2072203 0 196609 0 12 00 00 00 8b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6900 15.836777449 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533091 12 -1 721111 0 0xffffffff 0 -1 721111 0 ff ff ff ff d7 00 0b 00 00 00 00 00 ............ +6909 15.915602684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533103 12 -2 82980 82962 0xfffffffe 0 -2 82980 82962 fe ff ff ff 24 44 01 00 12 44 01 00 ....$D...D.. +6912 15.937917948 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533115 12 26 730820 0 0x0000001a 0 26 730820 0 1a 00 00 00 c4 26 0b 00 00 00 00 00 .....&...... +6914 15.938079834 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533127 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1634926592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6916 15.938471317 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468973 12 -1 730820 0 0xffffffff 0 -1 730820 0 ff ff ff ff c4 26 0b 00 00 00 00 00 .....&...... +6918 15.939734936 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468985 12 22 721112 0 0x00000016 0 22 721112 0 16 00 00 00 d8 00 0b 00 00 00 00 00 ............ +6920 15.939881325 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377468997 22 18 2072205 0 0x00000012 1 2072205 0 196609 0 12 00 00 00 8d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6922 15.940204859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533153 12 -1 721112 0 0xffffffff 0 -1 721112 0 ff ff ff ff d8 00 0b 00 00 00 00 00 ............ +6928 16.041196346 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533165 12 34 730821 0 0x00000022 0 34 730821 0 22 00 00 00 c5 26 0b 00 00 00 00 00 """....&......" +6930 16.041377783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533177 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325713920 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 13 02 00 00 00 00 00 b0 cb 25 c3 9d 01 00 00 .....!...o3.......j.........%..... +6932 16.041516304 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533211 12 67 730822 0 0x00000043 0 67 730822 0 43 00 00 00 c6 26 0b 00 00 00 00 00 C....&...... +6934 16.041601658 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533223 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 57 4e 77 f7 ?.....3...|8...........j.......=B.....&......... +6936 16.041695595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469019 12 -1 730821 0 0xffffffff 0 -1 730821 0 ff ff ff ff c5 26 0b 00 00 00 00 00 .....&...... +6938 16.041872978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469031 12 -1 730822 0 0xffffffff 0 -1 730822 0 ff ff ff ff c6 26 0b 00 00 00 00 00 .....&...... +6940 16.042717695 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533290 12 26 730823 0 0x0000001a 0 26 730823 0 1a 00 00 00 c7 26 0b 00 00 00 00 00 .....&...... +6942 16.042831421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469043 12 52 721113 0 0x00000034 0 52 721113 0 34 00 00 00 d9 00 0b 00 00 00 00 00 4........... +6944 16.042983532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469055 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6a 13 02 00 00 00 00 00 00 00 4e 26 f8 e7 4d 01 00 00 "0...Dk.................L."".([.....j.........N&.." +6945 16.042999268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533302 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1634795520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6948 16.043312311 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469107 12 -1 730823 0 0xffffffff 0 -1 730823 0 ff ff ff ff c7 26 0b 00 00 00 00 00 .....&...... +6949 16.043318033 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533328 12 -1 721113 0 0xffffffff 0 -1 721113 0 ff ff ff ff d9 00 0b 00 00 00 00 00 ............ +6952 16.043628454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469119 12 22 721114 0 0x00000016 0 22 721114 0 16 00 00 00 da 00 0b 00 00 00 00 00 ............ +6953 16.043744087 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469131 22 18 2072207 0 0x00000012 1 2072207 0 196609 0 12 00 00 00 8f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6954 16.043931961 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533340 12 -1 721114 0 0xffffffff 0 -1 721114 0 ff ff ff ff da 00 0b 00 00 00 00 00 ............ +6956 16.044167042 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533352 12 30 730824 0 0x0000001e 0 30 730824 0 1e 00 00 00 c8 26 0b 00 00 00 00 00 .....&...... +6958 16.044304371 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533364 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1634664448 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 91 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +6960 16.044504642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469153 12 -1 730824 0 0xffffffff 0 -1 730824 0 ff ff ff ff c8 26 0b 00 00 00 00 00 .....&...... +6961 16.044845104 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469165 12 26 721115 0 0x0000001a 0 26 721115 0 1a 00 00 00 db 00 0b 00 00 00 00 00 ............ +6962 16.044949055 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469177 26 22 2072209 0 0x00000016 1 2072209 0 196609 0 16 00 00 00 91 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +6963 16.045183659 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533394 12 -1 721115 0 0xffffffff 0 -1 721115 0 ff ff ff ff db 00 0b 00 00 00 00 00 ............ +6965 16.145955801 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533406 12 26 730825 0 0x0000001a 0 26 730825 0 1a 00 00 00 c9 26 0b 00 00 00 00 00 .....&...... +6967 16.146151543 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533418 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1634533376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6969 16.146541595 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469203 12 -1 730825 0 0xffffffff 0 -1 730825 0 ff ff ff ff c9 26 0b 00 00 00 00 00 .....&...... +6971 16.147046566 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469215 12 22 721116 0 0x00000016 0 22 721116 0 16 00 00 00 dc 00 0b 00 00 00 00 00 ............ +6973 16.147237301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469227 22 18 2072211 0 0x00000012 1 2072211 0 196609 0 12 00 00 00 93 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6975 16.147578001 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533444 12 -1 721116 0 0xffffffff 0 -1 721116 0 ff ff ff ff dc 00 0b 00 00 00 00 00 ............ +6977 16.163657188 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469249 12 -2 82963 82980 0xfffffffe 0 -2 82963 82980 fe ff ff ff 13 44 01 00 24 44 01 00 .....D..$D.. +6987 16.248845339 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533456 12 26 730826 0 0x0000001a 0 26 730826 0 1a 00 00 00 ca 26 0b 00 00 00 00 00 .....&...... +6989 16.249008656 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533468 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1634402304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +6991 16.249311686 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469261 12 -1 730826 0 0xffffffff 0 -1 730826 0 ff ff ff ff ca 26 0b 00 00 00 00 00 .....&...... +6993 16.249846220 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469273 12 22 721117 0 0x00000016 0 22 721117 0 16 00 00 00 dd 00 0b 00 00 00 00 00 ............ +6995 16.250004292 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469285 22 18 2072213 0 0x00000012 1 2072213 0 196609 0 12 00 00 00 95 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +6997 16.250416040 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533494 12 -1 721117 0 0xffffffff 0 -1 721117 0 ff ff ff ff dd 00 0b 00 00 00 00 00 ............ +6999 16.346109867 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533506 12 34 730827 0 0x00000022 0 34 730827 0 22 00 00 00 cb 26 0b 00 00 00 00 00 """....&......" +7001 16.346319437 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533518 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325779456 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6b 13 02 00 00 00 00 00 e1 cc 25 c3 9d 01 00 00 .....!...o3.......k.........%..... +7003 16.346457958 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533552 12 67 730828 0 0x00000043 0 67 730828 0 43 00 00 00 cc 26 0b 00 00 00 00 00 C....&...... +7005 16.346546412 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533564 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 56 7c 89 f7 ?.....3...|8...........k.......=B.....&......... +7006 16.346584558 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469307 12 -1 730827 0 0xffffffff 0 -1 730827 0 ff ff ff ff cb 26 0b 00 00 00 00 00 .....&...... +7007 16.346684694 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469319 12 -1 730828 0 0xffffffff 0 -1 730828 0 ff ff ff ff cc 26 0b 00 00 00 00 00 .....&...... +7010 16.347883463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469331 12 52 721118 0 0x00000034 0 52 721118 0 34 00 00 00 de 00 0b 00 00 00 00 00 4........... +7012 16.348047733 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469343 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6b 13 02 00 00 00 00 00 00 00 81 b7 26 e8 4d 01 00 00 "0...Dk.................L."".([.....k...........&." +7014 16.348372936 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533631 12 -1 721118 0 0xffffffff 0 -1 721118 0 ff ff ff ff de 00 0b 00 00 00 00 00 ............ +7015 16.349290848 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533643 12 30 730829 0 0x0000001e 0 30 730829 0 1e 00 00 00 cd 26 0b 00 00 00 00 00 .....&...... +7016 16.349398851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533655 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1634271232 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7017 16.349664450 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469395 12 -1 730829 0 0xffffffff 0 -1 730829 0 ff ff ff ff cd 26 0b 00 00 00 00 00 .....&...... +7019 16.350065470 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469407 12 26 721119 0 0x0000001a 0 26 721119 0 1a 00 00 00 df 00 0b 00 00 00 00 00 ............ +7021 16.350254059 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469419 26 22 2072215 0 0x00000016 1 2072215 0 196609 0 16 00 00 00 97 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7023 16.350496769 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533685 12 -1 721119 0 0xffffffff 0 -1 721119 0 ff ff ff ff df 00 0b 00 00 00 00 00 ............ +7025 16.351611137 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533697 12 26 730830 0 0x0000001a 0 26 730830 0 1a 00 00 00 ce 26 0b 00 00 00 00 00 .....&...... +7027 16.351742268 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533709 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1634140160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7029 16.351965666 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469445 12 -1 730830 0 0xffffffff 0 -1 730830 0 ff ff ff ff ce 26 0b 00 00 00 00 00 .....&...... +7031 16.352290869 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469457 12 22 721120 0 0x00000016 0 22 721120 0 16 00 00 00 e0 00 0b 00 00 00 00 00 ............ +7033 16.352450848 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469469 22 18 2072217 0 0x00000012 1 2072217 0 196609 0 12 00 00 00 99 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7035 16.352689505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533735 12 -1 721120 0 0xffffffff 0 -1 721120 0 ff ff ff ff e0 00 0b 00 00 00 00 00 ............ +7044 16.417747736 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533747 12 -2 82981 82963 0xfffffffe 0 -2 82981 82963 fe ff ff ff 25 44 01 00 13 44 01 00 ....%D...D.. +7049 16.455256939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533759 12 26 730831 0 0x0000001a 0 26 730831 0 1a 00 00 00 cf 26 0b 00 00 00 00 00 .....&...... +7051 16.455429077 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533771 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1634009088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7053 16.455751419 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469491 12 -1 730831 0 0xffffffff 0 -1 730831 0 ff ff ff ff cf 26 0b 00 00 00 00 00 .....&...... +7055 16.456401348 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469503 12 22 721121 0 0x00000016 0 22 721121 0 16 00 00 00 e1 00 0b 00 00 00 00 00 ............ +7057 16.456691980 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469515 22 18 2072219 0 0x00000012 1 2072219 0 196609 0 12 00 00 00 9b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7059 16.456973314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533797 12 -1 721121 0 0xffffffff 0 -1 721121 0 ff ff ff ff e1 00 0b 00 00 00 00 00 ............ +7063 16.559713364 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533809 12 26 730832 0 0x0000001a 0 26 730832 0 1a 00 00 00 d0 26 0b 00 00 00 00 00 .....&...... +7065 16.559891939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533821 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1633878016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7067 16.560194492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469537 12 -1 730832 0 0xffffffff 0 -1 730832 0 ff ff ff ff d0 26 0b 00 00 00 00 00 .....&...... +7069 16.560674906 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469549 12 22 721122 0 0x00000016 0 22 721122 0 16 00 00 00 e2 00 0b 00 00 00 00 00 ............ +7071 16.560875416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469561 22 18 2072221 0 0x00000012 1 2072221 0 196609 0 12 00 00 00 9d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7073 16.561185598 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533847 12 -1 721122 0 0xffffffff 0 -1 721122 0 ff ff ff ff e2 00 0b 00 00 00 00 00 ............ +7075 16.651042461 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533859 12 34 730833 0 0x00000022 0 34 730833 0 22 00 00 00 d1 26 0b 00 00 00 00 00 """....&......" +7077 16.651219845 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533871 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325844992 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6c 13 02 00 00 00 00 00 12 ce 25 c3 9d 01 00 00 .....!...o3.......l.........%..... +7079 16.651350260 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533905 12 67 730834 0 0x00000043 0 67 730834 0 43 00 00 00 d2 26 0b 00 00 00 00 00 C....&...... +7081 16.651437759 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533917 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6c 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 6d a8 9b f7 ?.....3...|8...........l.......=B.....&......... +7083 16.651525974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469583 12 -1 730833 0 0xffffffff 0 -1 730833 0 ff ff ff ff d1 26 0b 00 00 00 00 00 .....&...... +7085 16.651702642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469595 12 -1 730834 0 0xffffffff 0 -1 730834 0 ff ff ff ff d2 26 0b 00 00 00 00 00 .....&...... +7087 16.652290821 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469607 12 52 721123 0 0x00000034 0 52 721123 0 34 00 00 00 e3 00 0b 00 00 00 00 00 4........... +7089 16.652453423 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469619 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6c 13 02 00 00 00 00 00 00 00 11 2c 55 e8 4d 01 00 00 "0...Dk.................L."".([.....l..........,U." +7091 16.652742624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533984 12 -1 721123 0 0xffffffff 0 -1 721123 0 ff ff ff ff e3 00 0b 00 00 00 00 00 ............ +7093 16.653696537 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333533996 12 30 730835 0 0x0000001e 0 30 730835 0 1e 00 00 00 d3 26 0b 00 00 00 00 00 .....&...... +7095 16.653840542 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534008 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1633746944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7097 16.654175282 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469671 12 -1 730835 0 0xffffffff 0 -1 730835 0 ff ff ff ff d3 26 0b 00 00 00 00 00 .....&...... +7099 16.654501438 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469683 12 26 721124 0 0x0000001a 0 26 721124 0 1a 00 00 00 e4 00 0b 00 00 00 00 00 ............ +7101 16.654645920 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469695 26 22 2072223 0 0x00000016 1 2072223 0 196609 0 16 00 00 00 9f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7103 16.654890537 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534038 12 -1 721124 0 0xffffffff 0 -1 721124 0 ff ff ff ff e4 00 0b 00 00 00 00 00 ............ +7105 16.662506580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534050 12 26 730836 0 0x0000001a 0 26 730836 0 1a 00 00 00 d4 26 0b 00 00 00 00 00 .....&...... +7107 16.662666082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534062 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1633615872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7109 16.662962675 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469721 12 -1 730836 0 0xffffffff 0 -1 730836 0 ff ff ff ff d4 26 0b 00 00 00 00 00 .....&...... +7111 16.663426399 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469733 12 22 721125 0 0x00000016 0 22 721125 0 16 00 00 00 e5 00 0b 00 00 00 00 00 ............ +7113 16.663568735 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469745 22 18 2072225 0 0x00000012 1 2072225 0 196609 0 12 00 00 00 a1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7115 16.663811922 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534088 12 -1 721125 0 0xffffffff 0 -1 721125 0 ff ff ff ff e5 00 0b 00 00 00 00 00 ............ +7119 16.664623737 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469767 12 -2 82964 82981 0xfffffffe 0 -2 82964 82981 fe ff ff ff 14 44 01 00 25 44 01 00 .....D..%D.. +7127 16.766624212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534100 12 26 730837 0 0x0000001a 0 26 730837 0 1a 00 00 00 d5 26 0b 00 00 00 00 00 .....&...... +7129 16.766803026 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534112 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1633484800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7131 16.767120361 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469779 12 -1 730837 0 0xffffffff 0 -1 730837 0 ff ff ff ff d5 26 0b 00 00 00 00 00 .....&...... +7133 16.767734528 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469791 12 22 721126 0 0x00000016 0 22 721126 0 16 00 00 00 e6 00 0b 00 00 00 00 00 ............ +7135 16.767888069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469803 22 18 2072227 0 0x00000012 1 2072227 0 196609 0 12 00 00 00 a3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7137 16.768174648 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534138 12 -1 721126 0 0xffffffff 0 -1 721126 0 ff ff ff ff e6 00 0b 00 00 00 00 00 ............ +7139 16.869685650 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534150 12 26 730838 0 0x0000001a 0 26 730838 0 1a 00 00 00 d6 26 0b 00 00 00 00 00 .....&...... +7141 16.869867802 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534162 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1633353728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7143 16.870280027 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469825 12 -1 730838 0 0xffffffff 0 -1 730838 0 ff ff ff ff d6 26 0b 00 00 00 00 00 .....&...... +7145 16.870699167 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469837 12 22 721127 0 0x00000016 0 22 721127 0 16 00 00 00 e7 00 0b 00 00 00 00 00 ............ +7147 16.870851040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469849 22 18 2072229 0 0x00000012 1 2072229 0 196609 0 12 00 00 00 a5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7149 16.871059179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534188 12 -1 721127 0 0xffffffff 0 -1 721127 0 ff ff ff ff e7 00 0b 00 00 00 00 00 ............ +7158 16.919043064 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534200 12 -2 82982 82964 0xfffffffe 0 -2 82982 82964 fe ff ff ff 26 44 01 00 14 44 01 00 ....&D...D.. +7163 16.954624176 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534212 12 34 730839 0 0x00000022 0 34 730839 0 22 00 00 00 d7 26 0b 00 00 00 00 00 """....&......" +7165 16.954798460 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534224 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 325910528 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 13 02 00 00 00 00 00 42 cf 25 c3 9d 01 00 00 .....!...o3.......m.......B.%..... +7167 16.954885721 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534258 12 67 730840 0 0x00000043 0 67 730840 0 43 00 00 00 d8 26 0b 00 00 00 00 00 C....&...... +7169 16.954969883 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534270 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 38 5d c1 ad f7 ?.....3...|8...........m.......=B.....&......... +7171 16.955122471 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469871 12 -1 730839 0 0xffffffff 0 -1 730839 0 ff ff ff ff d7 26 0b 00 00 00 00 00 .....&...... +7173 16.955323458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469883 12 -1 730840 0 0xffffffff 0 -1 730840 0 ff ff ff ff d8 26 0b 00 00 00 00 00 .....&...... +7175 16.956033945 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469895 12 52 721128 0 0x00000034 0 52 721128 0 34 00 00 00 e8 00 0b 00 00 00 00 00 4........... +7177 16.956191063 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469907 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6d 13 02 00 00 00 00 00 00 00 13 85 83 e8 4d 01 00 00 "0...Dk.................L."".([.....m............." +7179 16.956478357 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534337 12 -1 721128 0 0xffffffff 0 -1 721128 0 ff ff ff ff e8 00 0b 00 00 00 00 00 ............ +7181 16.957343817 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534349 12 30 730841 0 0x0000001e 0 30 730841 0 1e 00 00 00 d9 26 0b 00 00 00 00 00 .....&...... +7183 16.957482338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534361 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1633222656 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7185 16.957896233 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469959 12 -1 730841 0 0xffffffff 0 -1 730841 0 ff ff ff ff d9 26 0b 00 00 00 00 00 .....&...... +7187 16.958144426 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469971 12 26 721129 0 0x0000001a 0 26 721129 0 1a 00 00 00 e9 00 0b 00 00 00 00 00 ............ +7189 16.958282709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377469983 26 22 2072231 0 0x00000016 1 2072231 0 196609 0 16 00 00 00 a7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7191 16.958584547 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534391 12 -1 721129 0 0xffffffff 0 -1 721129 0 ff ff ff ff e9 00 0b 00 00 00 00 00 ............ +7193 16.972248793 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534403 12 26 730842 0 0x0000001a 0 26 730842 0 1a 00 00 00 da 26 0b 00 00 00 00 00 .....&...... +7195 16.972404957 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534415 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1633091584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7197 16.972763062 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470009 12 -1 730842 0 0xffffffff 0 -1 730842 0 ff ff ff ff da 26 0b 00 00 00 00 00 .....&...... +7199 16.973137856 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470021 12 22 721130 0 0x00000016 0 22 721130 0 16 00 00 00 ea 00 0b 00 00 00 00 00 ............ +7201 16.973291159 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470033 22 18 2072233 0 0x00000012 1 2072233 0 196609 0 12 00 00 00 a9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7203 16.973582983 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534441 12 -1 721130 0 0xffffffff 0 -1 721130 0 ff ff ff ff ea 00 0b 00 00 00 00 00 ............ +7207 17.075542927 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534453 12 26 730843 0 0x0000001a 0 26 730843 0 1a 00 00 00 db 26 0b 00 00 00 00 00 .....&...... +7209 17.075742960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534465 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1632960512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7211 17.076053619 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470055 12 -1 730843 0 0xffffffff 0 -1 730843 0 ff ff ff ff db 26 0b 00 00 00 00 00 .....&...... +7213 17.076640844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470067 12 22 721131 0 0x00000016 0 22 721131 0 16 00 00 00 eb 00 0b 00 00 00 00 00 ............ +7215 17.076828241 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470079 22 18 2072235 0 0x00000012 1 2072235 0 196609 0 12 00 00 00 ab 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7217 17.077116489 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534491 12 -1 721131 0 0xffffffff 0 -1 721131 0 ff ff ff ff eb 00 0b 00 00 00 00 00 ............ +7220 17.166121721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470101 12 -2 82965 82982 0xfffffffe 0 -2 82965 82982 fe ff ff ff 15 44 01 00 26 44 01 00 .....D..&D.. +7227 17.178419828 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534503 12 26 730844 0 0x0000001a 0 26 730844 0 1a 00 00 00 dc 26 0b 00 00 00 00 00 .....&...... +7229 17.178585768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534515 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1632829440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7231 17.178989172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470113 12 -1 730844 0 0xffffffff 0 -1 730844 0 ff ff ff ff dc 26 0b 00 00 00 00 00 .....&...... +7233 17.179495811 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470125 12 22 721132 0 0x00000016 0 22 721132 0 16 00 00 00 ec 00 0b 00 00 00 00 00 ............ +7235 17.179722548 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470137 22 18 2072237 0 0x00000012 1 2072237 0 196609 0 12 00 00 00 ad 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7237 17.180008650 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534541 12 -1 721132 0 0xffffffff 0 -1 721132 0 ff ff ff ff ec 00 0b 00 00 00 00 00 ............ +7243 17.258813620 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534553 12 101 730845 0 0x00000065 0 101 730845 0 65 00 00 00 dd 26 0b 00 00 00 00 00 e....&...... +7245 17.259013414 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534565 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6e 13 02 00 00 00 00 00 71 d0 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6e 13 02 00 00 00 00 .....!...o3.......n.......q.%.....?.....3...|8.. +7247 17.259408951 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470159 12 -1 730845 0 0xffffffff 0 -1 730845 0 ff ff ff ff dd 26 0b 00 00 00 00 00 .....&...... +7249 17.260106564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470171 12 52 721133 0 0x00000034 0 52 721133 0 34 00 00 00 ed 00 0b 00 00 00 00 00 4........... +7251 17.260270119 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470183 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6e 13 02 00 00 00 00 00 00 00 1d ea b1 e8 4d 01 00 00 "0...Dk.................L."".([.....n............." +7253 17.260533094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534666 12 -1 721133 0 0xffffffff 0 -1 721133 0 ff ff ff ff ed 00 0b 00 00 00 00 00 ............ +7255 17.261390209 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534678 12 30 730846 0 0x0000001e 0 30 730846 0 1e 00 00 00 de 26 0b 00 00 00 00 00 .....&...... +7257 17.261534452 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534690 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1632698368 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7259 17.261926174 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470235 12 -1 730846 0 0xffffffff 0 -1 730846 0 ff ff ff ff de 26 0b 00 00 00 00 00 .....&...... +7261 17.262393951 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470247 12 26 721134 0 0x0000001a 0 26 721134 0 1a 00 00 00 ee 00 0b 00 00 00 00 00 ............ +7263 17.262539864 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470259 26 22 2072239 0 0x00000016 1 2072239 0 196609 0 16 00 00 00 af 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7265 17.262784958 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534720 12 -1 721134 0 0xffffffff 0 -1 721134 0 ff ff ff ff ee 00 0b 00 00 00 00 00 ............ +7267 17.281292200 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534732 12 26 730847 0 0x0000001a 0 26 730847 0 1a 00 00 00 df 26 0b 00 00 00 00 00 .....&...... +7269 17.281454325 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534744 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1632567296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7271 17.281818867 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470285 12 -1 730847 0 0xffffffff 0 -1 730847 0 ff ff ff ff df 26 0b 00 00 00 00 00 .....&...... +7273 17.282112122 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470297 12 22 721135 0 0x00000016 0 22 721135 0 16 00 00 00 ef 00 0b 00 00 00 00 00 ............ +7275 17.282268524 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470309 22 18 2072241 0 0x00000012 1 2072241 0 196609 0 12 00 00 00 b1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7277 17.282686472 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534770 12 -1 721135 0 0xffffffff 0 -1 721135 0 ff ff ff ff ef 00 0b 00 00 00 00 00 ............ +7279 17.384183884 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534782 12 26 730848 0 0x0000001a 0 26 730848 0 1a 00 00 00 e0 26 0b 00 00 00 00 00 .....&...... +7281 17.384436369 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534794 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1632436224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7283 17.384772062 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470331 12 -1 730848 0 0xffffffff 0 -1 730848 0 ff ff ff ff e0 26 0b 00 00 00 00 00 .....&...... +7285 17.385371923 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470343 12 22 721136 0 0x00000016 0 22 721136 0 16 00 00 00 f0 00 0b 00 00 00 00 00 ............ +7287 17.385579824 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470355 22 18 2072243 0 0x00000012 1 2072243 0 196609 0 12 00 00 00 b3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7289 17.385910988 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534820 12 -1 721136 0 0xffffffff 0 -1 721136 0 ff ff ff ff f0 00 0b 00 00 00 00 00 ............ +7298 17.419735909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534832 12 -2 82983 82965 0xfffffffe 0 -2 82983 82965 fe ff ff ff 27 44 01 00 15 44 01 00 ....'D...D.. +7303 17.487489939 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534844 12 26 730849 0 0x0000001a 0 26 730849 0 1a 00 00 00 e1 26 0b 00 00 00 00 00 .....&...... +7305 17.487664938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534856 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1632305152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7307 17.488023043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470377 12 -1 730849 0 0xffffffff 0 -1 730849 0 ff ff ff ff e1 26 0b 00 00 00 00 00 .....&...... +7309 17.488627672 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470389 12 22 721137 0 0x00000016 0 22 721137 0 16 00 00 00 f1 00 0b 00 00 00 00 00 ............ +7311 17.488903522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470401 22 18 2072245 0 0x00000012 1 2072245 0 196609 0 12 00 00 00 b5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7313 17.489219666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534882 12 -1 721137 0 0xffffffff 0 -1 721137 0 ff ff ff ff f1 00 0b 00 00 00 00 00 ............ +7317 17.562870979 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534894 12 34 730850 0 0x00000022 0 34 730850 0 22 00 00 00 e2 26 0b 00 00 00 00 00 """....&......" +7319 17.563145161 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534906 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326041600 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6f 13 02 00 00 00 00 00 a1 d1 25 c3 9d 01 00 00 .....!...o3.......o.........%..... +7321 17.563324213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534940 12 67 730851 0 0x00000043 0 67 730851 0 43 00 00 00 e3 26 0b 00 00 00 00 00 C....&...... +7323 17.563438654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333534952 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6f 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 55 0d d2 f7 ?.....3...|8...........o.......=B.....&......... +7324 17.563483715 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470423 12 -1 730850 0 0xffffffff 0 -1 730850 0 ff ff ff ff e2 26 0b 00 00 00 00 00 .....&...... +7327 17.564219952 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470435 12 -1 730851 0 0xffffffff 0 -1 730851 0 ff ff ff ff e3 26 0b 00 00 00 00 00 .....&...... +7329 17.565319538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470447 12 52 721138 0 0x00000034 0 52 721138 0 34 00 00 00 f2 00 0b 00 00 00 00 00 4........... +7331 17.565478563 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470459 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6f 13 02 00 00 00 00 00 00 00 47 7d e0 e8 4d 01 00 00 "0...Dk.................L."".([.....o.........G}.." +7333 17.565786362 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535019 12 -1 721138 0 0xffffffff 0 -1 721138 0 ff ff ff ff f2 00 0b 00 00 00 00 00 ............ +7334 17.566899061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535031 12 30 730852 0 0x0000001e 0 30 730852 0 1e 00 00 00 e4 26 0b 00 00 00 00 00 .....&...... +7336 17.567095518 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535043 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1632174080 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7338 17.567371368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470511 12 -1 730852 0 0xffffffff 0 -1 730852 0 ff ff ff ff e4 26 0b 00 00 00 00 00 .....&...... +7340 17.567761183 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470523 12 26 721139 0 0x0000001a 0 26 721139 0 1a 00 00 00 f3 00 0b 00 00 00 00 00 ............ +7342 17.567914248 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470535 26 22 2072247 0 0x00000016 1 2072247 0 196609 0 16 00 00 00 b7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7344 17.568214893 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535073 12 -1 721139 0 0xffffffff 0 -1 721139 0 ff ff ff ff f3 00 0b 00 00 00 00 00 ............ +7346 17.591214657 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535085 12 26 730853 0 0x0000001a 0 26 730853 0 1a 00 00 00 e5 26 0b 00 00 00 00 00 .....&...... +7348 17.591432571 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535097 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1632043008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7350 17.591886759 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470561 12 -1 730853 0 0xffffffff 0 -1 730853 0 ff ff ff ff e5 26 0b 00 00 00 00 00 .....&...... +7352 17.592250347 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470573 12 22 721140 0 0x00000016 0 22 721140 0 16 00 00 00 f4 00 0b 00 00 00 00 00 ............ +7354 17.592411041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470585 22 18 2072249 0 0x00000012 1 2072249 0 196609 0 12 00 00 00 b9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7356 17.592808008 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535123 12 -1 721140 0 0xffffffff 0 -1 721140 0 ff ff ff ff f4 00 0b 00 00 00 00 00 ............ +7362 17.666417360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470607 12 -2 82966 82983 0xfffffffe 0 -2 82966 82983 fe ff ff ff 16 44 01 00 27 44 01 00 .....D..'D.. +7370 17.695287228 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535135 12 26 730854 0 0x0000001a 0 26 730854 0 1a 00 00 00 e6 26 0b 00 00 00 00 00 .....&...... +7372 17.695470333 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535147 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1631911936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7374 17.695825815 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470619 12 -1 730854 0 0xffffffff 0 -1 730854 0 ff ff ff ff e6 26 0b 00 00 00 00 00 .....&...... +7376 17.696477652 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470631 12 22 721141 0 0x00000016 0 22 721141 0 16 00 00 00 f5 00 0b 00 00 00 00 00 ............ +7378 17.696719885 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470643 22 18 2072251 0 0x00000012 1 2072251 0 196609 0 12 00 00 00 bb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7380 17.697123766 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535173 12 -1 721141 0 0xffffffff 0 -1 721141 0 ff ff ff ff f5 00 0b 00 00 00 00 00 ............ +7386 17.799721241 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535185 12 26 730855 0 0x0000001a 0 26 730855 0 1a 00 00 00 e7 26 0b 00 00 00 00 00 .....&...... +7388 17.799916029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535197 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1631780864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7390 17.800300837 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470665 12 -1 730855 0 0xffffffff 0 -1 730855 0 ff ff ff ff e7 26 0b 00 00 00 00 00 .....&...... +7392 17.800801754 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470677 12 22 721142 0 0x00000016 0 22 721142 0 16 00 00 00 f6 00 0b 00 00 00 00 00 ............ +7394 17.800963402 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470689 22 18 2072253 0 0x00000012 1 2072253 0 196609 0 12 00 00 00 bd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7396 17.801370859 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535223 12 -1 721142 0 0xffffffff 0 -1 721142 0 ff ff ff ff f6 00 0b 00 00 00 00 00 ............ +7398 17.869566679 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535235 12 101 730856 0 0x00000065 0 101 730856 0 65 00 00 00 e8 26 0b 00 00 00 00 00 e....&...... +7400 17.869857550 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535247 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 70 13 02 00 00 00 00 00 d4 d2 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 70 13 02 00 00 00 00 .....!...o3.......p.........%.....?.....3...|8.. +7402 17.870258331 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470711 12 -1 730856 0 0xffffffff 0 -1 730856 0 ff ff ff ff e8 26 0b 00 00 00 00 00 .....&...... +7404 17.871315002 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470723 12 52 721143 0 0x00000034 0 52 721143 0 34 00 00 00 f7 00 0b 00 00 00 00 00 4........... +7406 17.871494532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470735 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 70 13 02 00 00 00 00 00 00 00 41 2d 0f e9 4d 01 00 00 "0...Dk.................L."".([.....p.........A-.." +7408 17.871692419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535348 12 -1 721143 0 0xffffffff 0 -1 721143 0 ff ff ff ff f7 00 0b 00 00 00 00 00 ............ +7410 17.872605085 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535360 12 30 730857 0 0x0000001e 0 30 730857 0 1e 00 00 00 e9 26 0b 00 00 00 00 00 .....&...... +7412 17.872797966 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535372 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1631649792 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7414 17.873126268 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470787 12 -1 730857 0 0xffffffff 0 -1 730857 0 ff ff ff ff e9 26 0b 00 00 00 00 00 .....&...... +7416 17.873533726 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470799 12 26 721144 0 0x0000001a 0 26 721144 0 1a 00 00 00 f8 00 0b 00 00 00 00 00 ............ +7418 17.873677492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470811 26 22 2072255 0 0x00000016 1 2072255 0 196609 0 16 00 00 00 bf 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7420 17.873925447 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535402 12 -1 721144 0 0xffffffff 0 -1 721144 0 ff ff ff ff f8 00 0b 00 00 00 00 00 ............ +7428 17.902280569 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535414 12 26 730858 0 0x0000001a 0 26 730858 0 1a 00 00 00 ea 26 0b 00 00 00 00 00 .....&...... +7430 17.902525902 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535426 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1631518720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7432 17.902850628 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470837 12 -1 730858 0 0xffffffff 0 -1 730858 0 ff ff ff ff ea 26 0b 00 00 00 00 00 .....&...... +7434 17.903294802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470849 12 22 721145 0 0x00000016 0 22 721145 0 16 00 00 00 f9 00 0b 00 00 00 00 00 ............ +7436 17.903452635 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470861 22 18 2072257 0 0x00000012 1 2072257 0 196609 0 12 00 00 00 c1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7438 17.903756380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535452 12 -1 721145 0 0xffffffff 0 -1 721145 0 ff ff ff ff f9 00 0b 00 00 00 00 00 ............ +7441 17.921163797 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535464 12 -2 82984 82966 0xfffffffe 0 -2 82984 82966 fe ff ff ff 28 44 01 00 16 44 01 00 ....(D...D.. +7450 18.004812479 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535476 12 26 730859 0 0x0000001a 0 26 730859 0 1a 00 00 00 eb 26 0b 00 00 00 00 00 .....&...... +7452 18.004981041 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535488 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1631387648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7454 18.005357504 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470883 12 -1 730859 0 0xffffffff 0 -1 730859 0 ff ff ff ff eb 26 0b 00 00 00 00 00 .....&...... +7456 18.005818844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470895 12 22 721146 0 0x00000016 0 22 721146 0 16 00 00 00 fa 00 0b 00 00 00 00 00 ............ +7458 18.005978346 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470907 22 18 2072259 0 0x00000012 1 2072259 0 196609 0 12 00 00 00 c3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7460 18.006330252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535514 12 -1 721146 0 0xffffffff 0 -1 721146 0 ff ff ff ff fa 00 0b 00 00 00 00 00 ............ +7462 18.107617140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535526 12 26 730860 0 0x0000001a 0 26 730860 0 1a 00 00 00 ec 26 0b 00 00 00 00 00 .....&...... +7464 18.107829094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535538 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1631256576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7466 18.108252525 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470929 12 -1 730860 0 0xffffffff 0 -1 730860 0 ff ff ff ff ec 26 0b 00 00 00 00 00 .....&...... +7468 18.108848333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470941 12 22 721147 0 0x00000016 0 22 721147 0 16 00 00 00 fb 00 0b 00 00 00 00 00 ............ +7470 18.109083652 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470953 22 18 2072261 0 0x00000012 1 2072261 0 196609 0 12 00 00 00 c5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7472 18.109287739 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535564 12 -1 721147 0 0xffffffff 0 -1 721147 0 ff ff ff ff fb 00 0b 00 00 00 00 00 ............ +7474 18.165744543 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470975 12 -2 82967 82984 0xfffffffe 0 -2 82967 82984 fe ff ff ff 17 44 01 00 28 44 01 00 .....D..(D.. +7482 18.174975395 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535576 12 34 730861 0 0x00000022 0 34 730861 0 22 00 00 00 ed 26 0b 00 00 00 00 00 """....&......" +7484 18.175155878 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535588 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326172672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 71 13 02 00 00 00 00 00 06 d4 25 c3 9d 01 00 00 .....!...o3.......q.........%..... +7486 18.175272703 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535622 12 67 730862 0 0x00000043 0 67 730862 0 43 00 00 00 ee 26 0b 00 00 00 00 00 C....&...... +7488 18.175356150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535634 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 71 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 4f 7d f6 f7 ?.....3...|8...........q.......=B.....&......... +7489 18.175405264 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470987 12 -1 730861 0 0xffffffff 0 -1 730861 0 ff ff ff ff ed 26 0b 00 00 00 00 00 .....&...... +7490 18.175501823 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377470999 12 -1 730862 0 0xffffffff 0 -1 730862 0 ff ff ff ff ee 26 0b 00 00 00 00 00 .....&...... +7493 18.177521944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471011 12 52 721148 0 0x00000034 0 52 721148 0 34 00 00 00 fc 00 0b 00 00 00 00 00 4........... +7495 18.177666187 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471023 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 71 13 02 00 00 00 00 00 00 00 f0 e6 3d e9 4d 01 00 00 "0...Dk.................L."".([.....q...........=." +7497 18.177947283 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535701 12 -1 721148 0 0xffffffff 0 -1 721148 0 ff ff ff ff fc 00 0b 00 00 00 00 00 ............ +7498 18.178900957 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535713 12 30 730863 0 0x0000001e 0 30 730863 0 1e 00 00 00 ef 26 0b 00 00 00 00 00 .....&...... +7499 18.179041624 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535725 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1631125504 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7500 18.179273844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471075 12 -1 730863 0 0xffffffff 0 -1 730863 0 ff ff ff ff ef 26 0b 00 00 00 00 00 .....&...... +7502 18.179687262 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471087 12 26 721149 0 0x0000001a 0 26 721149 0 1a 00 00 00 fd 00 0b 00 00 00 00 00 ............ +7504 18.179844141 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471099 26 22 2072263 0 0x00000016 1 2072263 0 196609 0 16 00 00 00 c7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7506 18.180124044 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535755 12 -1 721149 0 0xffffffff 0 -1 721149 0 ff ff ff ff fd 00 0b 00 00 00 00 00 ............ +7538 18.210577488 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535767 12 26 730864 0 0x0000001a 0 26 730864 0 1a 00 00 00 f0 26 0b 00 00 00 00 00 .....&...... +7540 18.210746050 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535779 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1630994432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7542 18.211102247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471125 12 -1 730864 0 0xffffffff 0 -1 730864 0 ff ff ff ff f0 26 0b 00 00 00 00 00 .....&...... +7544 18.211862803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471137 12 22 721150 0 0x00000016 0 22 721150 0 16 00 00 00 fe 00 0b 00 00 00 00 00 ............ +7546 18.212042809 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471149 22 18 2072265 0 0x00000012 1 2072265 0 196609 0 12 00 00 00 c9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7548 18.212381840 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535805 12 -1 721150 0 0xffffffff 0 -1 721150 0 ff ff ff ff fe 00 0b 00 00 00 00 00 ............ +7552 18.315026522 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535817 12 26 730865 0 0x0000001a 0 26 730865 0 1a 00 00 00 f1 26 0b 00 00 00 00 00 .....&...... +7554 18.315207005 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535829 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1630863360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7556 18.315535069 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471171 12 -1 730865 0 0xffffffff 0 -1 730865 0 ff ff ff ff f1 26 0b 00 00 00 00 00 .....&...... +7558 18.316075802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471183 12 22 721151 0 0x00000016 0 22 721151 0 16 00 00 00 ff 00 0b 00 00 00 00 00 ............ +7560 18.316231251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471195 22 18 2072267 0 0x00000012 1 2072267 0 196609 0 12 00 00 00 cb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7562 18.316513300 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535855 12 -1 721151 0 0xffffffff 0 -1 721151 0 ff ff ff ff ff 00 0b 00 00 00 00 00 ............ +7574 18.418343067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535867 12 26 730866 0 0x0000001a 0 26 730866 0 1a 00 00 00 f2 26 0b 00 00 00 00 00 .....&...... +7576 18.418543816 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535879 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1630732288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7578 18.418898106 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471217 12 -1 730866 0 0xffffffff 0 -1 730866 0 ff ff ff ff f2 26 0b 00 00 00 00 00 .....&...... +7580 18.419789791 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471229 12 22 721152 0 0x00000016 0 22 721152 0 16 00 00 00 00 01 0b 00 00 00 00 00 ............ +7582 18.419908285 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471241 22 18 2072269 0 0x00000012 1 2072269 0 196609 0 12 00 00 00 cd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7584 18.420207500 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535905 12 -1 721152 0 0xffffffff 0 -1 721152 0 ff ff ff ff 00 01 0b 00 00 00 00 00 ............ +7586 18.421889782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535917 12 -2 82985 82967 0xfffffffe 0 -2 82985 82967 fe ff ff ff 29 44 01 00 17 44 01 00 ....)D...D.. +7592 18.481440783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535929 12 34 730867 0 0x00000022 0 34 730867 0 22 00 00 00 f3 26 0b 00 00 00 00 00 """....&......" +7594 18.481679916 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535941 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326238208 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 72 13 02 00 00 00 00 00 38 d5 25 c3 9d 01 00 00 .....!...o3.......r.......8.%..... +7596 18.481828928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535975 12 67 730868 0 0x00000043 0 67 730868 0 43 00 00 00 f4 26 0b 00 00 00 00 00 C....&...... +7598 18.481917381 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333535987 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 72 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c 3f c3 08 f8 ?.....3...|8...........r.......=B.....&......... +7599 18.481976509 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471263 12 -1 730867 0 0xffffffff 0 -1 730867 0 ff ff ff ff f3 26 0b 00 00 00 00 00 .....&...... +7602 18.482185602 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471275 12 -1 730868 0 0xffffffff 0 -1 730868 0 ff ff ff ff f4 26 0b 00 00 00 00 00 .....&...... +7604 18.483167171 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471287 12 52 721153 0 0x00000034 0 52 721153 0 34 00 00 00 01 01 0b 00 00 00 00 00 4........... +7606 18.483326435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471299 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 72 13 02 00 00 00 00 00 00 00 7c 86 6c e9 4d 01 00 00 "0...Dk.................L."".([.....r.........|.l." +7608 18.483652353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536054 12 -1 721153 0 0xffffffff 0 -1 721153 0 ff ff ff ff 01 01 0b 00 00 00 00 00 ............ +7609 18.484408855 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536066 12 30 730869 0 0x0000001e 0 30 730869 0 1e 00 00 00 f5 26 0b 00 00 00 00 00 .....&...... +7611 18.484616995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536078 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1630601216 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cf 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7613 18.484897852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471351 12 -1 730869 0 0xffffffff 0 -1 730869 0 ff ff ff ff f5 26 0b 00 00 00 00 00 .....&...... +7615 18.485224009 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471363 12 26 721154 0 0x0000001a 0 26 721154 0 1a 00 00 00 02 01 0b 00 00 00 00 00 ............ +7617 18.485364676 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471375 26 22 2072271 0 0x00000016 1 2072271 0 196609 0 16 00 00 00 cf 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7619 18.485707760 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536108 12 -1 721154 0 0xffffffff 0 -1 721154 0 ff ff ff ff 02 01 0b 00 00 00 00 00 ............ +7623 18.522763729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536120 12 26 730870 0 0x0000001a 0 26 730870 0 1a 00 00 00 f6 26 0b 00 00 00 00 00 .....&...... +7625 18.522940874 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536132 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1630470144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7627 18.523225784 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471401 12 -1 730870 0 0xffffffff 0 -1 730870 0 ff ff ff ff f6 26 0b 00 00 00 00 00 .....&...... +7629 18.523728371 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471413 12 22 721155 0 0x00000016 0 22 721155 0 16 00 00 00 03 01 0b 00 00 00 00 00 ............ +7631 18.523881674 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471425 22 18 2072273 0 0x00000012 1 2072273 0 196609 0 12 00 00 00 d1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7633 18.524137020 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536158 12 -1 721155 0 0xffffffff 0 -1 721155 0 ff ff ff ff 03 01 0b 00 00 00 00 00 ............ +7666 18.627037525 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536170 12 26 730871 0 0x0000001a 0 26 730871 0 1a 00 00 00 f7 26 0b 00 00 00 00 00 .....&...... +7668 18.627208948 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536182 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1630339072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7670 18.627557755 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471447 12 -1 730871 0 0xffffffff 0 -1 730871 0 ff ff ff ff f7 26 0b 00 00 00 00 00 .....&...... +7672 18.628031731 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471459 12 22 721156 0 0x00000016 0 22 721156 0 16 00 00 00 04 01 0b 00 00 00 00 00 ............ +7674 18.628181934 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471471 22 18 2072275 0 0x00000012 1 2072275 0 196609 0 12 00 00 00 d3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7676 18.628468037 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536208 12 -1 721156 0 0xffffffff 0 -1 721156 0 ff ff ff ff 04 01 0b 00 00 00 00 00 ............ +7685 18.666534185 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471493 12 -2 82968 82985 0xfffffffe 0 -2 82968 82985 fe ff ff ff 18 44 01 00 29 44 01 00 .....D..)D.. +7695 18.730581045 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536220 12 26 730872 0 0x0000001a 0 26 730872 0 1a 00 00 00 f8 26 0b 00 00 00 00 00 .....&...... +7697 18.730809450 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536232 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1630208000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7699 18.731155634 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471505 12 -1 730872 0 0xffffffff 0 -1 730872 0 ff ff ff ff f8 26 0b 00 00 00 00 00 .....&...... +7703 18.731784344 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471517 12 22 721157 0 0x00000016 0 22 721157 0 16 00 00 00 05 01 0b 00 00 00 00 00 ............ +7705 18.731978416 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471529 22 18 2072277 0 0x00000012 1 2072277 0 196609 0 12 00 00 00 d5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7707 18.732244968 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536258 12 -1 721157 0 0xffffffff 0 -1 721157 0 ff ff ff ff 05 01 0b 00 00 00 00 00 ............ +7721 18.787012100 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536270 12 34 730873 0 0x00000022 0 34 730873 0 22 00 00 00 f9 26 0b 00 00 00 00 00 """....&......" +7723 18.787206411 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536282 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326303744 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 73 13 02 00 00 00 00 00 6a d6 25 c3 9d 01 00 00 .....!...o3.......s.......j.%..... +7725 18.787390471 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536316 12 67 730874 0 0x00000043 0 67 730874 0 43 00 00 00 fa 26 0b 00 00 00 00 00 C....&...... +7727 18.787473440 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471551 12 -1 730873 0 0xffffffff 0 -1 730873 0 ff ff ff ff f9 26 0b 00 00 00 00 00 .....&...... +7729 18.787675142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536328 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 73 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 c4 f7 1a f8 ?.....3...|8...........s.......=B.....&......... +7731 18.787991524 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471563 12 -1 730874 0 0xffffffff 0 -1 730874 0 ff ff ff ff fa 26 0b 00 00 00 00 00 .....&...... +7733 18.789002657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471575 12 52 721158 0 0x00000034 0 52 721158 0 34 00 00 00 06 01 0b 00 00 00 00 00 4........... +7735 18.789164066 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471587 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 73 13 02 00 00 00 00 00 00 00 04 34 9b e9 4d 01 00 00 "0...Dk.................L."".([.....s..........4.." +7737 18.789435863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536395 12 -1 721158 0 0xffffffff 0 -1 721158 0 ff ff ff ff 06 01 0b 00 00 00 00 00 ............ +7739 18.790487766 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536407 12 30 730875 0 0x0000001e 0 30 730875 0 1e 00 00 00 fb 26 0b 00 00 00 00 00 .....&...... +7741 18.790633678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536419 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1630076928 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7743 18.790917397 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471639 12 -1 730875 0 0xffffffff 0 -1 730875 0 ff ff ff ff fb 26 0b 00 00 00 00 00 .....&...... +7745 18.791292191 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471651 12 26 721159 0 0x0000001a 0 26 721159 0 1a 00 00 00 07 01 0b 00 00 00 00 00 ............ +7747 18.791448355 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471663 26 22 2072279 0 0x00000016 1 2072279 0 196609 0 16 00 00 00 d7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7749 18.791718960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536449 12 -1 721159 0 0xffffffff 0 -1 721159 0 ff ff ff ff 07 01 0b 00 00 00 00 00 ............ +7751 18.834356785 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536461 12 26 730876 0 0x0000001a 0 26 730876 0 1a 00 00 00 fc 26 0b 00 00 00 00 00 .....&...... +7753 18.834578514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536473 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1629945856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7755 18.834998131 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471689 12 -1 730876 0 0xffffffff 0 -1 730876 0 ff ff ff ff fc 26 0b 00 00 00 00 00 .....&...... +7757 18.835354567 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471701 12 22 721160 0 0x00000016 0 22 721160 0 16 00 00 00 08 01 0b 00 00 00 00 00 ............ +7759 18.835510492 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471713 22 18 2072281 0 0x00000012 1 2072281 0 196609 0 12 00 00 00 d9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7761 18.835739136 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536499 12 -1 721160 0 0xffffffff 0 -1 721160 0 ff ff ff ff 08 01 0b 00 00 00 00 00 ............ +7797 18.923922062 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536511 12 -2 82986 82968 0xfffffffe 0 -2 82986 82968 fe ff ff ff 2a 44 01 00 18 44 01 00 ....*D...D.. +7801 18.937127113 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536523 12 26 730877 0 0x0000001a 0 26 730877 0 1a 00 00 00 fd 26 0b 00 00 00 00 00 .....&...... +7803 18.937283278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536535 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1629814784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7805 18.937562704 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471735 12 -1 730877 0 0xffffffff 0 -1 730877 0 ff ff ff ff fd 26 0b 00 00 00 00 00 .....&...... +7807 18.937998533 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471747 12 22 721161 0 0x00000016 0 22 721161 0 16 00 00 00 09 01 0b 00 00 00 00 00 ............ +7809 18.938161612 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471759 22 18 2072283 0 0x00000012 1 2072283 0 196609 0 12 00 00 00 db 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7811 18.938426971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536561 12 -1 721161 0 0xffffffff 0 -1 721161 0 ff ff ff ff 09 01 0b 00 00 00 00 00 ............ +7838 19.040563345 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536573 12 26 730878 0 0x0000001a 0 26 730878 0 1a 00 00 00 fe 26 0b 00 00 00 00 00 .....&...... +7840 19.040857792 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536585 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1629683712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7842 19.041249275 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471781 12 -1 730878 0 0xffffffff 0 -1 730878 0 ff ff ff ff fe 26 0b 00 00 00 00 00 .....&...... +7844 19.041675568 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471793 12 22 721162 0 0x00000016 0 22 721162 0 16 00 00 00 0a 01 0b 00 00 00 00 00 ............ +7846 19.041870594 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471805 22 18 2072285 0 0x00000012 1 2072285 0 196609 0 12 00 00 00 dd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7848 19.042064190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536611 12 -1 721162 0 0xffffffff 0 -1 721162 0 ff ff ff ff 0a 01 0b 00 00 00 00 00 ............ +7867 19.091913223 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536623 12 34 730879 0 0x00000022 0 34 730879 0 22 00 00 00 ff 26 0b 00 00 00 00 00 """....&......" +7869 19.092193842 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536635 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326369280 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 74 13 02 00 00 00 00 00 9b d7 25 c3 9d 01 00 00 .....!...o3.......t.........%..... +7871 19.092395067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536669 12 67 730880 0 0x00000043 0 67 730880 0 43 00 00 00 00 27 0b 00 00 00 00 00 C....'...... +7873 19.092501879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471827 12 -1 730879 0 0xffffffff 0 -1 730879 0 ff ff ff ff ff 26 0b 00 00 00 00 00 .....&...... +7874 19.092504978 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536681 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 74 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 f2 32 2d f8 ?.....3...|8...........t.......=B.....&......... +7877 19.092677832 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471839 12 -1 730880 0 0xffffffff 0 -1 730880 0 ff ff ff ff 00 27 0b 00 00 00 00 00 .....'...... +7879 19.093911886 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471851 12 52 721163 0 0x00000034 0 52 721163 0 34 00 00 00 0b 01 0b 00 00 00 00 00 4........... +7881 19.094078302 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471863 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 74 13 02 00 00 00 00 00 00 00 b5 b9 c9 e9 4d 01 00 00 "0...Dk.................L."".([.....t............." +7883 19.094348192 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536748 12 -1 721163 0 0xffffffff 0 -1 721163 0 ff ff ff ff 0b 01 0b 00 00 00 00 00 ............ +7885 19.095458746 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536760 12 30 730881 0 0x0000001e 0 30 730881 0 1e 00 00 00 01 27 0b 00 00 00 00 00 .....'...... +7887 19.095663309 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536772 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1629552640 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 df 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +7889 19.096019506 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471915 12 -1 730881 0 0xffffffff 0 -1 730881 0 ff ff ff ff 01 27 0b 00 00 00 00 00 .....'...... +7891 19.096383572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471927 12 26 721164 0 0x0000001a 0 26 721164 0 1a 00 00 00 0c 01 0b 00 00 00 00 00 ............ +7893 19.096545219 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471939 26 22 2072287 0 0x00000016 1 2072287 0 196609 0 16 00 00 00 df 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +7895 19.096784353 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536802 12 -1 721164 0 0xffffffff 0 -1 721164 0 ff ff ff ff 0c 01 0b 00 00 00 00 00 ............ +7899 19.143379211 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536814 12 26 730882 0 0x0000001a 0 26 730882 0 1a 00 00 00 02 27 0b 00 00 00 00 00 .....'...... +7901 19.143548965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536826 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1629421568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7903 19.143944979 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471965 12 -1 730882 0 0xffffffff 0 -1 730882 0 ff ff ff ff 02 27 0b 00 00 00 00 00 .....'...... +7905 19.144278765 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471977 12 22 721165 0 0x00000016 0 22 721165 0 16 00 00 00 0d 01 0b 00 00 00 00 00 ............ +7907 19.144441605 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377471989 22 18 2072289 0 0x00000012 1 2072289 0 196609 0 12 00 00 00 e1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7909 19.144762039 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536852 12 -1 721165 0 0xffffffff 0 -1 721165 0 ff ff ff ff 0d 01 0b 00 00 00 00 00 ............ +7913 19.167143345 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472011 12 -2 82969 82986 0xfffffffe 0 -2 82969 82986 fe ff ff ff 19 44 01 00 2a 44 01 00 .....D..*D.. +7934 19.246586084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536864 12 26 730883 0 0x0000001a 0 26 730883 0 1a 00 00 00 03 27 0b 00 00 00 00 00 .....'...... +7936 19.246834755 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536876 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1629290496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7938 19.247133493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472023 12 -1 730883 0 0xffffffff 0 -1 730883 0 ff ff ff ff 03 27 0b 00 00 00 00 00 .....'...... +7940 19.247507572 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472035 12 22 721166 0 0x00000016 0 22 721166 0 16 00 00 00 0e 01 0b 00 00 00 00 00 ............ +7942 19.247666836 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472047 22 18 2072291 0 0x00000012 1 2072291 0 196609 0 12 00 00 00 e3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7944 19.248031855 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536902 12 -1 721166 0 0xffffffff 0 -1 721166 0 ff ff ff ff 0e 01 0b 00 00 00 00 00 ............ +7975 19.350677729 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536914 12 26 730884 0 0x0000001a 0 26 730884 0 1a 00 00 00 04 27 0b 00 00 00 00 00 .....'...... +7977 19.350852013 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536926 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1629159424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +7979 19.351158142 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472069 12 -1 730884 0 0xffffffff 0 -1 730884 0 ff ff ff ff 04 27 0b 00 00 00 00 00 .....'...... +7981 19.351643085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472081 12 22 721167 0 0x00000016 0 22 721167 0 16 00 00 00 0f 01 0b 00 00 00 00 00 ............ +7983 19.351786852 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472093 22 18 2072293 0 0x00000012 1 2072293 0 196609 0 12 00 00 00 e5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +7985 19.352095366 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536952 12 -1 721167 0 0xffffffff 0 -1 721167 0 ff ff ff ff 0f 01 0b 00 00 00 00 00 ............ +7998 19.397325754 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536964 12 34 730885 0 0x00000022 0 34 730885 0 22 00 00 00 05 27 0b 00 00 00 00 00 """....'......" +8000 19.397631168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333536976 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326434816 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 75 13 02 00 00 00 00 00 cc d8 25 c3 9d 01 00 00 .....!...o3.......u.........%..... +8002 19.397875071 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537010 12 67 730886 0 0x00000043 0 67 730886 0 43 00 00 00 06 27 0b 00 00 00 00 00 C....'...... +8004 19.398023844 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472115 12 -1 730885 0 0xffffffff 0 -1 730885 0 ff ff ff ff 05 27 0b 00 00 00 00 00 .....'...... +8005 19.398025274 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537022 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 75 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c 02 65 3f f8 ?.....3...|8...........u.......=B.....&......... +8008 19.398230076 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472127 12 -1 730886 0 0xffffffff 0 -1 730886 0 ff ff ff ff 06 27 0b 00 00 00 00 00 .....'...... +8010 19.399320126 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472139 12 52 721168 0 0x00000034 0 52 721168 0 34 00 00 00 10 01 0b 00 00 00 00 00 4........... +8012 19.399484873 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472151 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 75 13 02 00 00 00 00 00 00 00 cb 57 f8 e9 4d 01 00 00 "0...Dk.................L."".([.....u..........W.." +8014 19.399791002 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537089 12 -1 721168 0 0xffffffff 0 -1 721168 0 ff ff ff ff 10 01 0b 00 00 00 00 00 ............ +8018 19.400785446 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537101 12 30 730887 0 0x0000001e 0 30 730887 0 1e 00 00 00 07 27 0b 00 00 00 00 00 .....'...... +8020 19.401052237 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537113 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1629028352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +8022 19.401406288 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472203 12 -1 730887 0 0xffffffff 0 -1 730887 0 ff ff ff ff 07 27 0b 00 00 00 00 00 .....'...... +8024 19.402740479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472215 12 26 721169 0 0x0000001a 0 26 721169 0 1a 00 00 00 11 01 0b 00 00 00 00 00 ............ +8026 19.402891874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472227 26 22 2072295 0 0x00000016 1 2072295 0 196609 0 16 00 00 00 e7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +8029 19.403187513 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537143 12 -1 721169 0 0xffffffff 0 -1 721169 0 ff ff ff ff 11 01 0b 00 00 00 00 00 ............ +8036 19.426135778 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537155 12 -2 82987 82969 0xfffffffe 0 -2 82987 82969 fe ff ff ff 2b 44 01 00 19 44 01 00 ....+D...D.. +8050 19.454412699 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537167 12 26 730888 0 0x0000001a 0 26 730888 0 1a 00 00 00 08 27 0b 00 00 00 00 00 .....'...... +8052 19.454578400 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537179 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1628897280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8054 19.454889774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472253 12 -1 730888 0 0xffffffff 0 -1 730888 0 ff ff ff ff 08 27 0b 00 00 00 00 00 .....'...... +8056 19.455305338 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472265 12 22 721170 0 0x00000016 0 22 721170 0 16 00 00 00 12 01 0b 00 00 00 00 00 ............ +8058 19.455487251 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472277 22 18 2072297 0 0x00000012 1 2072297 0 196609 0 12 00 00 00 e9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8060 19.455761194 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537205 12 -1 721170 0 0xffffffff 0 -1 721170 0 ff ff ff ff 12 01 0b 00 00 00 00 00 ............ +8101 19.557791710 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537217 12 26 730889 0 0x0000001a 0 26 730889 0 1a 00 00 00 09 27 0b 00 00 00 00 00 .....'...... +8103 19.558049440 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537229 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1628766208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8105 19.558370352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472299 12 -1 730889 0 0xffffffff 0 -1 730889 0 ff ff ff ff 09 27 0b 00 00 00 00 00 .....'...... +8107 19.558821917 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472311 12 22 721171 0 0x00000016 0 22 721171 0 16 00 00 00 13 01 0b 00 00 00 00 00 ............ +8109 19.559052944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472323 22 18 2072299 0 0x00000012 1 2072299 0 196609 0 12 00 00 00 eb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8111 19.559409380 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537255 12 -1 721171 0 0xffffffff 0 -1 721171 0 ff ff ff ff 13 01 0b 00 00 00 00 00 ............ +8160 19.660565853 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537267 12 26 730890 0 0x0000001a 0 26 730890 0 1a 00 00 00 0a 27 0b 00 00 00 00 00 .....'...... +8161 19.660577059 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537279 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1628635136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8165 19.660942554 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472345 12 -1 730890 0 0xffffffff 0 -1 730890 0 ff ff ff ff 0a 27 0b 00 00 00 00 00 .....'...... +8167 19.661334991 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472357 12 22 721172 0 0x00000016 0 22 721172 0 16 00 00 00 14 01 0b 00 00 00 00 00 ............ +8169 19.661504745 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472369 22 18 2072301 0 0x00000012 1 2072301 0 196609 0 12 00 00 00 ed 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8171 19.661775351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537305 12 -1 721172 0 0xffffffff 0 -1 721172 0 ff ff ff ff 14 01 0b 00 00 00 00 00 ............ +8173 19.667400360 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472391 12 -2 82970 82987 0xfffffffe 0 -2 82970 82987 fe ff ff ff 1a 44 01 00 2b 44 01 00 .....D..+D.. +8197 19.701836348 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537317 12 34 730891 0 0x00000022 0 34 730891 0 22 00 00 00 0b 27 0b 00 00 00 00 00 """....'......" +8199 19.701986551 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537329 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326500352 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 76 13 02 00 00 00 00 00 fd d9 25 c3 9d 01 00 00 .....!...o3.......v.........%..... +8201 19.702084780 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537363 12 67 730892 0 0x00000043 0 67 730892 0 43 00 00 00 0c 27 0b 00 00 00 00 00 C....'...... +8203 19.702169657 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537375 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 76 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 58 07 80 51 f8 ?.....3...|8...........v.......=B.....&......... +8204 19.702213287 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472403 12 -1 730891 0 0xffffffff 0 -1 730891 0 ff ff ff ff 0b 27 0b 00 00 00 00 00 .....'...... +8205 19.702310085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472415 12 -1 730892 0 0xffffffff 0 -1 730892 0 ff ff ff ff 0c 27 0b 00 00 00 00 00 .....'...... +8208 19.703302145 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472427 12 52 721173 0 0x00000034 0 52 721173 0 34 00 00 00 15 01 0b 00 00 00 00 00 4........... +8210 19.703464746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472439 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 76 13 02 00 00 00 00 00 00 00 61 b8 26 ea 4d 01 00 00 "0...Dk.................L."".([.....v.........a.&." +8212 19.703733921 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537442 12 -1 721173 0 0xffffffff 0 -1 721173 0 ff ff ff ff 15 01 0b 00 00 00 00 00 ............ +8214 19.704642057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537454 12 30 730893 0 0x0000001e 0 30 730893 0 1e 00 00 00 0d 27 0b 00 00 00 00 00 .....'...... +8216 19.704790354 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537466 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1628504064 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ef 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +8218 19.705109358 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472491 12 -1 730893 0 0xffffffff 0 -1 730893 0 ff ff ff ff 0d 27 0b 00 00 00 00 00 .....'...... +8220 19.705520153 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472503 12 26 721174 0 0x0000001a 0 26 721174 0 1a 00 00 00 16 01 0b 00 00 00 00 00 ............ +8222 19.705678463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472515 26 22 2072303 0 0x00000016 1 2072303 0 196609 0 16 00 00 00 ef 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +8224 19.706071138 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537496 12 -1 721174 0 0xffffffff 0 -1 721174 0 ff ff ff ff 16 01 0b 00 00 00 00 00 ............ +8253 19.763158560 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537508 12 26 730894 0 0x0000001a 0 26 730894 0 1a 00 00 00 0e 27 0b 00 00 00 00 00 .....'...... +8255 19.763328552 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537520 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1628372992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8257 19.763705254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472541 12 -1 730894 0 0xffffffff 0 -1 730894 0 ff ff ff ff 0e 27 0b 00 00 00 00 00 .....'...... +8259 19.764204741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472553 12 22 721175 0 0x00000016 0 22 721175 0 16 00 00 00 17 01 0b 00 00 00 00 00 ............ +8261 19.764351606 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472565 22 18 2072305 0 0x00000012 1 2072305 0 196609 0 12 00 00 00 f1 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8263 19.764711857 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537546 12 -1 721175 0 0xffffffff 0 -1 721175 0 ff ff ff ff 17 01 0b 00 00 00 00 00 ............ +8352 19.865881681 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537558 12 26 730895 0 0x0000001a 0 26 730895 0 1a 00 00 00 0f 27 0b 00 00 00 00 00 .....'...... +8354 19.866086006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537570 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1628241920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8356 19.866394043 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472587 12 -1 730895 0 0xffffffff 0 -1 730895 0 ff ff ff ff 0f 27 0b 00 00 00 00 00 .....'...... +8361 19.867345333 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472599 12 22 721176 0 0x00000016 0 22 721176 0 16 00 00 00 18 01 0b 00 00 00 00 00 ............ +8364 19.867507458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472611 22 18 2072307 0 0x00000012 1 2072307 0 196609 0 12 00 00 00 f3 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8366 19.867777824 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537596 12 -1 721176 0 0xffffffff 0 -1 721176 0 ff ff ff ff 18 01 0b 00 00 00 00 00 ............ +8411 19.926863432 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537608 12 -2 82988 82970 0xfffffffe 0 -2 82988 82970 fe ff ff ff 2c 44 01 00 1a 44 01 00 ....,D...D.. +8436 19.969486713 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537620 12 26 730896 0 0x0000001a 0 26 730896 0 1a 00 00 00 10 27 0b 00 00 00 00 00 .....'...... +8437 19.969527960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537632 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1628110848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8441 19.969853640 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472633 12 -1 730896 0 0xffffffff 0 -1 730896 0 ff ff ff ff 10 27 0b 00 00 00 00 00 .....'...... +8443 19.970293522 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472645 12 22 721177 0 0x00000016 0 22 721177 0 16 00 00 00 19 01 0b 00 00 00 00 00 ............ +8445 19.970453978 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472657 22 18 2072309 0 0x00000012 1 2072309 0 196609 0 12 00 00 00 f5 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8447 19.970819473 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537658 12 -1 721177 0 0xffffffff 0 -1 721177 0 ff ff ff ff 19 01 0b 00 00 00 00 00 ............ +8467 20.006353140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537670 12 34 730897 0 0x00000022 0 34 730897 0 22 00 00 00 11 27 0b 00 00 00 00 00 """....'......" +8469 20.006591082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537682 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326565888 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 77 13 02 00 00 00 00 00 2e db 25 c3 9d 01 00 00 .....!...o3.......w.........%..... +8471 20.006813765 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537716 12 67 730898 0 0x00000043 0 67 730898 0 43 00 00 00 12 27 0b 00 00 00 00 00 C....'...... +8473 20.006930351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537728 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 77 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 90 c3 b0 63 f8 ?.....3...|8...........w.......=B.....&......... +8474 20.006954193 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472679 12 -1 730897 0 0xffffffff 0 -1 730897 0 ff ff ff ff 11 27 0b 00 00 00 00 00 .....'...... +8477 20.007189035 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472691 12 -1 730898 0 0xffffffff 0 -1 730898 0 ff ff ff ff 12 27 0b 00 00 00 00 00 .....'...... +8479 20.008443594 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472703 12 52 721178 0 0x00000034 0 52 721178 0 34 00 00 00 1a 01 0b 00 00 00 00 00 4........... +8481 20.008745432 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472715 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 77 13 02 00 00 00 00 00 00 00 f0 41 55 ea 4d 01 00 00 "0...Dk.................L."".([.....w..........AU." +8483 20.009253263 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537795 12 -1 721178 0 0xffffffff 0 -1 721178 0 ff ff ff ff 1a 01 0b 00 00 00 00 00 ............ +8484 20.010314226 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537807 12 30 730899 0 0x0000001e 0 30 730899 0 1e 00 00 00 13 27 0b 00 00 00 00 00 .....'...... +8486 20.010510683 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537819 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1627979776 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f7 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +8488 20.010793686 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472767 12 -1 730899 0 0xffffffff 0 -1 730899 0 ff ff ff ff 13 27 0b 00 00 00 00 00 .....'...... +8490 20.011188745 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472779 12 26 721179 0 0x0000001a 0 26 721179 0 1a 00 00 00 1b 01 0b 00 00 00 00 00 ............ +8492 20.011369944 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472791 26 22 2072311 0 0x00000016 1 2072311 0 196609 0 16 00 00 00 f7 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +8494 20.011614323 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537849 12 -1 721179 0 0xffffffff 0 -1 721179 0 ff ff ff ff 1b 01 0b 00 00 00 00 00 ............ +8501 20.072507858 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537861 12 26 730900 0 0x0000001a 0 26 730900 0 1a 00 00 00 14 27 0b 00 00 00 00 00 .....'...... +8503 20.072698116 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537873 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1627848704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8505 20.073044538 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472817 12 -1 730900 0 0xffffffff 0 -1 730900 0 ff ff ff ff 14 27 0b 00 00 00 00 00 .....'...... +8507 20.073749304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472829 12 22 721180 0 0x00000016 0 22 721180 0 16 00 00 00 1c 01 0b 00 00 00 00 00 ............ +8509 20.073893547 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472841 22 18 2072313 0 0x00000012 1 2072313 0 196609 0 12 00 00 00 f9 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8511 20.074166298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537899 12 -1 721180 0 0xffffffff 0 -1 721180 0 ff ff ff ff 1c 01 0b 00 00 00 00 00 ............ +8530 20.169003487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472863 12 -2 82971 82988 0xfffffffe 0 -2 82971 82988 fe ff ff ff 1b 44 01 00 2c 44 01 00 .....D..,D.. +8542 20.176974297 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537911 12 26 730901 0 0x0000001a 0 26 730901 0 1a 00 00 00 15 27 0b 00 00 00 00 00 .....'...... +8544 20.177164555 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537923 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1627717632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8546 20.177593708 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472875 12 -1 730901 0 0xffffffff 0 -1 730901 0 ff ff ff ff 15 27 0b 00 00 00 00 00 .....'...... +8548 20.178072453 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472887 12 22 721181 0 0x00000016 0 22 721181 0 16 00 00 00 1d 01 0b 00 00 00 00 00 ............ +8550 20.178262472 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472899 22 18 2072315 0 0x00000012 1 2072315 0 196609 0 12 00 00 00 fb 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8552 20.178479910 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537949 12 -1 721181 0 0xffffffff 0 -1 721181 0 ff ff ff ff 1d 01 0b 00 00 00 00 00 ............ +8581 20.279518604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537961 12 26 730902 0 0x0000001a 0 26 730902 0 1a 00 00 00 16 27 0b 00 00 00 00 00 .....'...... +8583 20.279693604 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537973 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1627586560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9e 1f 00 00 00 00 00 ....T.c@.^1@.............. +8585 20.280057430 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472921 12 -1 730902 0 0xffffffff 0 -1 730902 0 ff ff ff ff 16 27 0b 00 00 00 00 00 .....'...... +8587 20.280473471 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472933 12 22 721182 0 0x00000016 0 22 721182 0 16 00 00 00 1e 01 0b 00 00 00 00 00 ............ +8589 20.280627728 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472945 22 18 2072317 0 0x00000012 1 2072317 0 196609 0 12 00 00 00 fd 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8591 20.280882120 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333537999 12 -1 721182 0 0xffffffff 0 -1 721182 0 ff ff ff ff 1e 01 0b 00 00 00 00 00 ............ +8602 20.312988997 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538011 12 101 730903 0 0x00000065 0 101 730903 0 65 00 00 00 17 27 0b 00 00 00 00 00 e....'...... +8604 20.313200235 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538023 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 78 13 02 00 00 00 00 00 60 dc 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 78 13 02 00 00 00 00 .....!...o3.......x.......`.%.....?.....3...|8.. +8606 20.313508511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472967 12 -1 730903 0 0xffffffff 0 -1 730903 0 ff ff ff ff 17 27 0b 00 00 00 00 00 .....'...... +8610 20.315054417 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472979 12 52 721183 0 0x00000034 0 52 721183 0 34 00 00 00 1f 01 0b 00 00 00 00 00 4........... +8612 20.315231800 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377472991 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 78 13 02 00 00 00 00 00 00 00 22 0f 84 ea 4d 01 00 00 "0...Dk.................L."".([.....x.........""..." +8614 20.315456152 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538124 12 -1 721183 0 0xffffffff 0 -1 721183 0 ff ff ff ff 1f 01 0b 00 00 00 00 00 ............ +8616 20.316546679 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538136 12 30 730904 0 0x0000001e 0 30 730904 0 1e 00 00 00 18 27 0b 00 00 00 00 00 .....'...... +8618 20.316739798 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538148 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1627455488 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ff 9e 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +8620 20.317197561 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473043 12 -1 730904 0 0xffffffff 0 -1 730904 0 ff ff ff ff 18 27 0b 00 00 00 00 00 .....'...... +8622 20.317710876 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473055 12 26 721184 0 0x0000001a 0 26 721184 0 1a 00 00 00 20 01 0b 00 00 00 00 00 .... ....... +8624 20.317867041 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473067 26 22 2072319 0 0x00000016 1 2072319 0 196609 0 16 00 00 00 ff 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +8626 20.318297386 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538178 12 -1 721184 0 0xffffffff 0 -1 721184 0 ff ff ff ff 20 01 0b 00 00 00 00 00 .... ....... +8657 20.382670879 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538190 12 26 730905 0 0x0000001a 0 26 730905 0 1a 00 00 00 19 27 0b 00 00 00 00 00 .....'...... +8659 20.383088589 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538202 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1627324416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +8661 20.383494377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473093 12 -1 730905 0 0xffffffff 0 -1 730905 0 ff ff ff ff 19 27 0b 00 00 00 00 00 .....'...... +8665 20.383923054 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473105 12 22 721185 0 0x00000016 0 22 721185 0 16 00 00 00 21 01 0b 00 00 00 00 00 ....!....... +8667 20.384081125 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473117 22 18 2072321 0 0x00000012 1 2072321 0 196609 0 12 00 00 00 01 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8669 20.384532213 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538228 12 -1 721185 0 0xffffffff 0 -1 721185 0 ff ff ff ff 21 01 0b 00 00 00 00 00 ....!....... +8700 20.427716017 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538240 12 -2 82989 82971 0xfffffffe 0 -2 82989 82971 fe ff ff ff 2d 44 01 00 1b 44 01 00 ....-D...D.. +8727 20.486766815 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538252 12 26 730906 0 0x0000001a 0 26 730906 0 1a 00 00 00 1a 27 0b 00 00 00 00 00 .....'...... +8729 20.486935139 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538264 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1627193344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +8731 20.487336636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473139 12 -1 730906 0 0xffffffff 0 -1 730906 0 ff ff ff ff 1a 27 0b 00 00 00 00 00 .....'...... +8733 20.487835169 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473151 12 22 721186 0 0x00000016 0 22 721186 0 16 00 00 00 22 01 0b 00 00 00 00 00 "....""......." +8735 20.488005638 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473163 22 18 2072323 0 0x00000012 1 2072323 0 196609 0 12 00 00 00 03 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8738 20.488280058 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538290 12 -1 721186 0 0xffffffff 0 -1 721186 0 ff ff ff ff 22 01 0b 00 00 00 00 00 "....""......." +8791 20.589975119 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538302 12 26 730907 0 0x0000001a 0 26 730907 0 1a 00 00 00 1b 27 0b 00 00 00 00 00 .....'...... +8793 20.590144396 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538314 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1627062272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +8795 20.590571642 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473185 12 -1 730907 0 0xffffffff 0 -1 730907 0 ff ff ff ff 1b 27 0b 00 00 00 00 00 .....'...... +8797 20.591135263 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473197 12 22 721187 0 0x00000016 0 22 721187 0 16 00 00 00 23 01 0b 00 00 00 00 00 ....#....... +8799 20.591348410 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473209 22 18 2072325 0 0x00000012 1 2072325 0 196609 0 12 00 00 00 05 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8801 20.591647863 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538340 12 -1 721187 0 0xffffffff 0 -1 721187 0 ff ff ff ff 23 01 0b 00 00 00 00 00 ....#....... +8811 20.618380070 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538352 12 101 730908 0 0x00000065 0 101 730908 0 65 00 00 00 1c 27 0b 00 00 00 00 00 e....'...... +8813 20.618564844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538364 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 79 13 02 00 00 00 00 00 91 dd 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 79 13 02 00 00 00 00 .....!...o3.......y.........%.....?.....3...|8.. +8815 20.618871212 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473231 12 -1 730908 0 0xffffffff 0 -1 730908 0 ff ff ff ff 1c 27 0b 00 00 00 00 00 .....'...... +8817 20.619780064 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473243 12 52 721188 0 0x00000034 0 52 721188 0 34 00 00 00 24 01 0b 00 00 00 00 00 4...$....... +8819 20.619930267 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473255 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 79 13 02 00 00 00 00 00 00 00 58 90 b2 ea 4d 01 00 00 "0...Dk.................L."".([.....y.........X..." +8821 20.620234728 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538465 12 -1 721188 0 0xffffffff 0 -1 721188 0 ff ff ff ff 24 01 0b 00 00 00 00 00 ....$....... +8827 20.621103764 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538477 12 30 730909 0 0x0000001e 0 30 730909 0 1e 00 00 00 1d 27 0b 00 00 00 00 00 .....'...... +8829 20.621259212 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538489 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1626931200 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 07 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +8831 20.621765137 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473307 12 -1 730909 0 0xffffffff 0 -1 730909 0 ff ff ff ff 1d 27 0b 00 00 00 00 00 .....'...... +8833 20.622811556 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473319 12 26 721189 0 0x0000001a 0 26 721189 0 1a 00 00 00 25 01 0b 00 00 00 00 00 ....%....... +8835 20.622976065 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473331 26 22 2072327 0 0x00000016 1 2072327 0 196609 0 16 00 00 00 07 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +8837 20.623293638 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538519 12 -1 721189 0 0xffffffff 0 -1 721189 0 ff ff ff ff 25 01 0b 00 00 00 00 00 ....%....... +8858 20.670121670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473357 12 -2 82972 82989 0xfffffffe 0 -2 82972 82989 fe ff ff ff 1c 44 01 00 2d 44 01 00 .....D..-D.. +8866 20.694521666 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538531 12 26 730910 0 0x0000001a 0 26 730910 0 1a 00 00 00 1e 27 0b 00 00 00 00 00 .....'...... +8868 20.694729328 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538543 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1626800128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +8870 20.695043564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473369 12 -1 730910 0 0xffffffff 0 -1 730910 0 ff ff ff ff 1e 27 0b 00 00 00 00 00 .....'...... +8872 20.695583820 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473381 12 22 721190 0 0x00000016 0 22 721190 0 16 00 00 00 26 01 0b 00 00 00 00 00 ....&....... +8874 20.695778370 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473393 22 18 2072329 0 0x00000012 1 2072329 0 196609 0 12 00 00 00 09 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8876 20.696015596 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538569 12 -1 721190 0 0xffffffff 0 -1 721190 0 ff ff ff ff 26 01 0b 00 00 00 00 00 ....&....... +8901 20.797196150 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538581 12 26 730911 0 0x0000001a 0 26 730911 0 1a 00 00 00 1f 27 0b 00 00 00 00 00 .....'...... +8903 20.797413588 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538593 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1626669056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +8905 20.797849894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473415 12 -1 730911 0 0xffffffff 0 -1 730911 0 ff ff ff ff 1f 27 0b 00 00 00 00 00 .....'...... +8907 20.798361301 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473427 12 22 721191 0 0x00000016 0 22 721191 0 16 00 00 00 27 01 0b 00 00 00 00 00 ....'....... +8909 20.798572302 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473439 22 18 2072331 0 0x00000012 1 2072331 0 196609 0 12 00 00 00 0b 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8911 20.798855782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538619 12 -1 721191 0 0xffffffff 0 -1 721191 0 ff ff ff ff 27 01 0b 00 00 00 00 00 ....'....... +8942 20.900254965 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538631 12 26 730912 0 0x0000001a 0 26 730912 0 1a 00 00 00 20 27 0b 00 00 00 00 00 .... '...... +8944 20.900432587 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538643 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1626537984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +8946 20.900809526 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473461 12 -1 730912 0 0xffffffff 0 -1 730912 0 ff ff ff ff 20 27 0b 00 00 00 00 00 .... '...... +8948 20.901275158 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473473 12 22 721192 0 0x00000016 0 22 721192 0 16 00 00 00 28 01 0b 00 00 00 00 00 ....(....... +8950 20.901429653 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473485 22 18 2072333 0 0x00000012 1 2072333 0 196609 0 12 00 00 00 0d 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +8952 20.901737928 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538669 12 -1 721192 0 0xffffffff 0 -1 721192 0 ff ff ff ff 28 01 0b 00 00 00 00 00 ....(....... +8968 20.923904419 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538681 12 34 730913 0 0x00000022 0 34 730913 0 22 00 00 00 21 27 0b 00 00 00 00 00 """...!'......" +8970 20.924118996 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538693 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326762496 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7a 13 02 00 00 00 00 00 c3 de 25 c3 9d 01 00 00 .....!...o3.......z.........%..... +8972 20.924277067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538727 12 67 730914 0 0x00000043 0 67 730914 0 43 00 00 00 22 27 0b 00 00 00 00 00 "C...""'......" +8974 20.924390316 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473507 12 -1 730913 0 0xffffffff 0 -1 730913 0 ff ff ff ff 21 27 0b 00 00 00 00 00 ....!'...... +8975 20.924406528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538739 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7a 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 94 a5 57 9a f8 ?.....3...|8...........z.......=B.....&......... +8978 20.924625874 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473519 12 -1 730914 0 0xffffffff 0 -1 730914 0 ff ff ff ff 22 27 0b 00 00 00 00 00 "....""'......" +8980 20.925654411 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473531 12 52 721193 0 0x00000034 0 52 721193 0 34 00 00 00 29 01 0b 00 00 00 00 00 4...)....... +8982 20.925806046 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473543 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7a 13 02 00 00 00 00 00 00 00 6d 3b e1 ea 4d 01 00 00 "0...Dk.................L."".([.....z.........m;.." +8984 20.926113844 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538806 12 -1 721193 0 0xffffffff 0 -1 721193 0 ff ff ff ff 29 01 0b 00 00 00 00 00 ....)....... +8986 20.927054644 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538818 12 30 730915 0 0x0000001e 0 30 730915 0 1e 00 00 00 23 27 0b 00 00 00 00 00 ....#'...... +8988 20.927277803 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538830 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1626406912 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0f 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +8990 20.927648783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473595 12 -1 730915 0 0xffffffff 0 -1 730915 0 ff ff ff ff 23 27 0b 00 00 00 00 00 ....#'...... +8992 20.928193569 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473607 12 26 721194 0 0x0000001a 0 26 721194 0 1a 00 00 00 2a 01 0b 00 00 00 00 00 ....*....... +8996 20.928338051 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473619 26 22 2072335 0 0x00000016 1 2072335 0 196609 0 16 00 00 00 0f 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +9000 20.928580284 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538860 12 -1 721194 0 0xffffffff 0 -1 721194 0 ff ff ff ff 2a 01 0b 00 00 00 00 00 ....*....... +9002 20.929307938 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538872 12 -2 82990 82972 0xfffffffe 0 -2 82990 82972 fe ff ff ff 2e 44 01 00 1c 44 01 00 .....D...D.. +9236 21.004455090 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538884 12 26 730916 0 0x0000001a 0 26 730916 0 1a 00 00 00 24 27 0b 00 00 00 00 00 ....$'...... +9238 21.004628420 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538896 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1626275840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +9240 21.005001783 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473645 12 -1 730916 0 0xffffffff 0 -1 730916 0 ff ff ff ff 24 27 0b 00 00 00 00 00 ....$'...... +9244 21.005632401 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473657 12 22 721195 0 0x00000016 0 22 721195 0 16 00 00 00 2b 01 0b 00 00 00 00 00 ....+....... +9246 21.005822659 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473669 22 18 2072337 0 0x00000012 1 2072337 0 196609 0 12 00 00 00 11 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +9248 21.006133318 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538922 12 -1 721195 0 0xffffffff 0 -1 721195 0 ff ff ff ff 2b 01 0b 00 00 00 00 00 ....+....... +9289 21.107584476 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538934 12 26 730917 0 0x0000001a 0 26 730917 0 1a 00 00 00 25 27 0b 00 00 00 00 00 ....%'...... +9291 21.107794762 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538946 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1626144768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +9293 21.108035564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473691 12 -1 730917 0 0xffffffff 0 -1 730917 0 ff ff ff ff 25 27 0b 00 00 00 00 00 ....%'...... +9295 21.108576536 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473703 12 22 721196 0 0x00000016 0 22 721196 0 16 00 00 00 2c 01 0b 00 00 00 00 00 ....,....... +9297 21.108769178 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473715 22 18 2072339 0 0x00000012 1 2072339 0 196609 0 12 00 00 00 13 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +9299 21.109043360 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538972 12 -1 721196 0 0xffffffff 0 -1 721196 0 ff ff ff ff 2c 01 0b 00 00 00 00 00 ....,....... +9339 21.171154261 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473737 12 -2 82973 82990 0xfffffffe 0 -2 82973 82990 fe ff ff ff 1d 44 01 00 2e 44 01 00 .....D...D.. +9360 21.212007046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538984 12 26 730918 0 0x0000001a 0 26 730918 0 1a 00 00 00 26 27 0b 00 00 00 00 00 ....&'...... +9362 21.212237358 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333538996 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1626013696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +9364 21.212558746 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473749 12 -1 730918 0 0xffffffff 0 -1 730918 0 ff ff ff ff 26 27 0b 00 00 00 00 00 ....&'...... +9366 21.213056326 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473761 12 22 721197 0 0x00000016 0 22 721197 0 16 00 00 00 2d 01 0b 00 00 00 00 00 ....-....... +9368 21.213223457 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473773 22 18 2072341 0 0x00000012 1 2072341 0 196609 0 12 00 00 00 15 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +9370 21.213489532 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539022 12 -1 721197 0 0xffffffff 0 -1 721197 0 ff ff ff ff 2d 01 0b 00 00 00 00 00 ....-....... +9376 21.229000092 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539034 12 34 730919 0 0x00000022 0 34 730919 0 22 00 00 00 27 27 0b 00 00 00 00 00 """...''......" +9378 21.229146481 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539046 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326828032 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7b 13 02 00 00 00 00 00 f5 df 25 c3 9d 01 00 00 .....!...o3.......{.........%..... +9380 21.229279995 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539080 12 67 730920 0 0x00000043 0 67 730920 0 43 00 00 00 28 27 0b 00 00 00 00 00 C...('...... +9382 21.229365110 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539092 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7b 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec ab 91 ac f8 ?.....3...|8...........{.......=B.....&......... +9383 21.229439974 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473795 12 -1 730919 0 0xffffffff 0 -1 730919 0 ff ff ff ff 27 27 0b 00 00 00 00 00 ....''...... +9385 21.229648352 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473807 12 -1 730920 0 0xffffffff 0 -1 730920 0 ff ff ff ff 28 27 0b 00 00 00 00 00 ....('...... +9387 21.230259657 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473819 12 52 721198 0 0x00000034 0 52 721198 0 34 00 00 00 2e 01 0b 00 00 00 00 00 4........... +9389 21.230412960 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473831 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7b 13 02 00 00 00 00 00 00 00 30 b7 0f eb 4d 01 00 00 "0...Dk.................L."".([.....{.........0..." +9391 21.230787516 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539159 12 -1 721198 0 0xffffffff 0 -1 721198 0 ff ff ff ff 2e 01 0b 00 00 00 00 00 ............ +9393 21.231574774 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539171 12 30 730921 0 0x0000001e 0 30 730921 0 1e 00 00 00 29 27 0b 00 00 00 00 00 ....)'...... +9395 21.231761932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539183 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1625882624 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 17 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +9397 21.232021570 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473883 12 -1 730921 0 0xffffffff 0 -1 730921 0 ff ff ff ff 29 27 0b 00 00 00 00 00 ....)'...... +9399 21.232428312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473895 12 26 721199 0 0x0000001a 0 26 721199 0 1a 00 00 00 2f 01 0b 00 00 00 00 00 ..../....... +9401 21.232570887 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473907 26 22 2072343 0 0x00000016 1 2072343 0 196609 0 16 00 00 00 17 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +9403 21.232839823 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539213 12 -1 721199 0 0xffffffff 0 -1 721199 0 ff ff ff ff 2f 01 0b 00 00 00 00 00 ..../....... +9434 21.314913511 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539225 12 26 730922 0 0x0000001a 0 26 730922 0 1a 00 00 00 2a 27 0b 00 00 00 00 00 ....*'...... +9436 21.315076590 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539237 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1625751552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +9438 21.315420866 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473933 12 -1 730922 0 0xffffffff 0 -1 730922 0 ff ff ff ff 2a 27 0b 00 00 00 00 00 ....*'...... +9440 21.315868855 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473945 12 22 721200 0 0x00000016 0 22 721200 0 16 00 00 00 30 01 0b 00 00 00 00 00 ....0....... +9442 21.316020966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473957 22 18 2072345 0 0x00000012 1 2072345 0 196609 0 12 00 00 00 19 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +9444 21.316311359 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539263 12 -1 721200 0 0xffffffff 0 -1 721200 0 ff ff ff ff 30 01 0b 00 00 00 00 00 ....0....... +9454 21.419130087 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539275 12 26 730923 0 0x0000001a 0 26 730923 0 1a 00 00 00 2b 27 0b 00 00 00 00 00 ....+'...... +9456 21.419298172 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539287 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1625620480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +9458 21.419663668 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473979 12 -1 730923 0 0xffffffff 0 -1 730923 0 ff ff ff ff 2b 27 0b 00 00 00 00 00 ....+'...... +9460 21.420359373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377473991 12 22 721201 0 0x00000016 0 22 721201 0 16 00 00 00 31 01 0b 00 00 00 00 00 ....1....... +9462 21.420615435 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474003 22 18 2072347 0 0x00000012 1 2072347 0 196609 0 12 00 00 00 1b 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +9464 21.420930386 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539313 12 -1 721201 0 0xffffffff 0 -1 721201 0 ff ff ff ff 31 01 0b 00 00 00 00 00 ....1....... +9466 21.429721832 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539325 12 -2 82991 82973 0xfffffffe 0 -2 82991 82973 fe ff ff ff 2f 44 01 00 1d 44 01 00 ..../D...D.. +9497 21.523679733 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539337 12 26 730924 0 0x0000001a 0 26 730924 0 1a 00 00 00 2c 27 0b 00 00 00 00 00 ....,'...... +9500 21.523922205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539349 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1625489408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d 9f 1f 00 00 00 00 00 ....T.c@.^1@.............. +9502 21.524159431 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474025 12 -1 730924 0 0xffffffff 0 -1 730924 0 ff ff ff ff 2c 27 0b 00 00 00 00 00 ....,'...... +9504 21.524660826 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474037 12 22 721202 0 0x00000016 0 22 721202 0 16 00 00 00 32 01 0b 00 00 00 00 00 ....2....... +9506 21.524862766 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474049 22 18 2072349 0 0x00000012 1 2072349 0 196609 0 12 00 00 00 1d 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...................... +9508 21.525131464 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539375 12 -1 721202 0 0xffffffff 0 -1 721202 0 ff ff ff ff 32 01 0b 00 00 00 00 00 ....2....... +9512 21.533159971 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539387 12 101 730925 0 0x00000065 0 101 730925 0 65 00 00 00 2d 27 0b 00 00 00 00 00 e...-'...... +9514 21.533327103 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539399 101 30 -803725028 -1154256956 0x0000001e 0 30 -803725028 -1154256956 196609 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7c 13 02 00 00 00 00 00 24 e1 25 c3 9d 01 00 00 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7c 13 02 00 00 00 00 .....!...o3.......|.......$.%.....?.....3...|8.. +9516 21.533633471 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474071 12 -1 730925 0 0xffffffff 0 -1 730925 0 ff ff ff ff 2d 27 0b 00 00 00 00 00 ....-'...... +9518 21.534616709 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474083 12 52 721203 0 0x00000034 0 52 721203 0 34 00 00 00 33 01 0b 00 00 00 00 00 4...3....... +9520 21.534774303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474095 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7c 13 02 00 00 00 00 00 00 00 85 28 3e eb 4d 01 00 00 "0...Dk.................L."".([.....|..........(>." +9522 21.535064220 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539500 12 -1 721203 0 0xffffffff 0 -1 721203 0 ff ff ff ff 33 01 0b 00 00 00 00 00 ....3....... +9524 21.536173344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539512 12 30 730926 0 0x0000001e 0 30 730926 0 1e 00 00 00 2e 27 0b 00 00 00 00 00 .....'...... +9526 21.536326408 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539524 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1625358336 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1f 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P.................. +9528 21.536610365 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474147 12 -1 730926 0 0xffffffff 0 -1 730926 0 ff ff ff ff 2e 27 0b 00 00 00 00 00 .....'...... +9530 21.537129641 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474159 12 26 721204 0 0x0000001a 0 26 721204 0 1a 00 00 00 34 01 0b 00 00 00 00 00 ....4....... +9532 21.537313938 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474171 26 22 2072351 0 0x00000016 1 2072351 0 196609 0 16 00 00 00 1f 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 .......................... +9534 21.537523270 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539554 12 -1 721204 0 0xffffffff 0 -1 721204 0 ff ff ff ff 34 01 0b 00 00 00 00 00 ....4....... +9544 21.627556086 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539566 12 26 730927 0 0x0000001a 0 26 730927 0 1a 00 00 00 2f 27 0b 00 00 00 00 00 ..../'...... +9546 21.627869129 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539578 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1625227264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 9f 1f 00 00 00 00 00 ....T.c@.^1@......!....... +9548 21.628247976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474197 12 -1 730927 0 0xffffffff 0 -1 730927 0 ff ff ff ff 2f 27 0b 00 00 00 00 00 ..../'...... +9550 21.629402161 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474209 12 22 721205 0 0x00000016 0 22 721205 0 16 00 00 00 35 01 0b 00 00 00 00 00 ....5....... +9552 21.629616499 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474221 22 18 2072353 0 0x00000012 1 2072353 0 196609 0 12 00 00 00 21 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!................. +9554 21.629954338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539604 12 -1 721205 0 0xffffffff 0 -1 721205 0 ff ff ff ff 35 01 0b 00 00 00 00 00 ....5....... +9570 21.671685696 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474243 12 -2 82974 82991 0xfffffffe 0 -2 82974 82991 fe ff ff ff 1e 44 01 00 2f 44 01 00 .....D../D.. +9580 21.732718945 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539616 12 26 730928 0 0x0000001a 0 26 730928 0 1a 00 00 00 30 27 0b 00 00 00 00 00 ....0'...... +9582 21.732903004 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539628 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1625096192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 9f 1f 00 00 00 00 00 ....T.c@.^1@......#....... +9584 21.733316422 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474255 12 -1 730928 0 0xffffffff 0 -1 730928 0 ff ff ff ff 30 27 0b 00 00 00 00 00 ....0'...... +9586 21.733799458 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474267 12 22 721206 0 0x00000016 0 22 721206 0 16 00 00 00 36 01 0b 00 00 00 00 00 ....6....... +9588 21.733984947 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474279 22 18 2072355 0 0x00000012 1 2072355 0 196609 0 12 00 00 00 23 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#................. +9590 21.734409571 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539654 12 -1 721206 0 0xffffffff 0 -1 721206 0 ff ff ff ff 36 01 0b 00 00 00 00 00 ....6....... +9594 21.835906267 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539666 12 26 730929 0 0x0000001a 0 26 730929 0 1a 00 00 00 31 27 0b 00 00 00 00 00 ....1'...... +9596 21.836163521 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539678 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1624965120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 9f 1f 00 00 00 00 00 ....T.c@.^1@......%....... +9598 21.836534739 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474301 12 -1 730929 0 0xffffffff 0 -1 730929 0 ff ff ff ff 31 27 0b 00 00 00 00 00 ....1'...... +9600 21.837103128 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474313 12 22 721207 0 0x00000016 0 22 721207 0 16 00 00 00 37 01 0b 00 00 00 00 00 ....7....... +9602 21.837264299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474325 22 18 2072357 0 0x00000012 1 2072357 0 196609 0 12 00 00 00 25 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%................. +9604 21.837547541 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539704 12 -1 721207 0 0xffffffff 0 -1 721207 0 ff ff ff ff 37 01 0b 00 00 00 00 00 ....7....... +9606 21.838095665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539716 12 34 730930 0 0x00000022 0 34 730930 0 22 00 00 00 32 27 0b 00 00 00 00 00 """...2'......" +9608 21.838354111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539728 34 30 -803725028 -1154256956 0x0000001e 1 -803725028 -1154256956 196609 326959104 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 7d 13 02 00 00 00 00 00 55 e2 25 c3 9d 01 00 00 .....!...o3.......}.......U.%..... +9610 21.838496923 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539762 12 67 730931 0 0x00000043 0 67 730931 0 43 00 00 00 33 27 0b 00 00 00 00 00 C...3'...... +9612 21.838584661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539774 67 63 -885848936 947696652 0x0000003f 1 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 7d 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 1f e2 d0 f8 ?.....3...|8...........}.......=B.....&......... +9613 21.838656902 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474347 12 -1 730930 0 0xffffffff 0 -1 730930 0 ff ff ff ff 32 27 0b 00 00 00 00 00 ....2'...... +9615 21.838813782 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474359 12 -1 730931 0 0xffffffff 0 -1 730931 0 ff ff ff ff 33 27 0b 00 00 00 00 00 ....3'...... +9617 21.840461254 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474371 12 52 721208 0 0x00000034 0 52 721208 0 34 00 00 00 38 01 0b 00 00 00 00 00 4...8....... +9619 21.840627670 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474383 52 48 -661034172 -1245897748 0x00000030 1 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 7d 13 02 00 00 00 00 00 00 00 18 d1 6c eb 4d 01 00 00 "0...Dk.................L."".([.....}...........l." +9621 21.840874434 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539841 12 -1 721208 0 0xffffffff 0 -1 721208 0 ff ff ff ff 38 01 0b 00 00 00 00 00 ....8....... +9623 21.841747999 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539853 12 30 730932 0 0x0000001e 0 30 730932 0 1e 00 00 00 34 27 0b 00 00 00 00 00 ....4'...... +9625 21.841905117 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539865 30 26 1660931669 1345985458 0x0000001a 1 1660931669 1345985458 196609 -1624834048 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 27 9f 1f 00 00 00 00 00 00 00 00 00 ....U..b..:P......'........... +9627 21.842270374 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474435 12 -1 730932 0 0xffffffff 0 -1 730932 0 ff ff ff ff 34 27 0b 00 00 00 00 00 ....4'...... +9629 21.842631578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474447 12 26 721209 0 0x0000001a 0 26 721209 0 1a 00 00 00 39 01 0b 00 00 00 00 00 ....9....... +9631 21.842778683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474459 26 22 2072359 0 0x00000016 1 2072359 0 196609 0 16 00 00 00 27 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....'..................... +9633 21.843006849 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539895 12 -1 721209 0 0xffffffff 0 -1 721209 0 ff ff ff ff 39 01 0b 00 00 00 00 00 ....9....... +9641 21.931230545 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539907 12 -2 82992 82974 0xfffffffe 0 -2 82992 82974 fe ff ff ff 30 44 01 00 1e 44 01 00 ....0D...D.. +9645 21.939674854 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539919 12 26 730933 0 0x0000001a 0 26 730933 0 1a 00 00 00 35 27 0b 00 00 00 00 00 ....5'...... +9647 21.939839602 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539931 26 22 1080266580 1076977378 0x00000016 1 1080266580 1076977378 196609 -1624702976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 9f 1f 00 00 00 00 00 ....T.c@.^1@......)....... +9649 21.940213203 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474485 12 -1 730933 0 0xffffffff 0 -1 730933 0 ff ff ff ff 35 27 0b 00 00 00 00 00 ....5'...... +9651 21.940705299 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474497 12 22 721210 0 0x00000016 0 22 721210 0 16 00 00 00 3a 01 0b 00 00 00 00 00 ....:....... +9653 21.940873146 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377474509 22 18 2072361 0 0x00000012 1 2072361 0 196609 0 12 00 00 00 29 9f 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....)................. +9655 21.941189528 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333539957 12 -1 721210 0 0xffffffff 0 -1 721210 0 ff ff ff ff 3a 01 0b 00 00 00 00 00 ....:....... diff --git a/captures/020-loopback-write-test-int-102/tcp-payload-packets.tsv b/captures/020-loopback-write-test-int-102/tcp-payload-packets.tsv new file mode 100644 index 0000000..edf2686 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-payload-packets.tsv @@ -0,0 +1,3939 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +1281 0.000000000 10.100.0.48:59183 10.100.0.48:14330 73283261 94 1201005e00000100000024000601002a000102002b000103002c000404003000 ...^......$....*....+....,....0....1.$..U.....b. +1283 0.033772945 10.100.0.48:14330 10.100.0.48:59183 2799111354 54 0401003600000100000024000601002a000102002b000103002c000004002c00 ...6......$....*....+....,....,....-....-....... +1285 0.034440756 10.100.0.48:59183 10.100.0.48:14330 73283355 339 1201015300000000160303014601000142030369ec535ad7e21c7fcb8caf918f ...S........F...B..i.SZ..........*3..4mg.f.1k..E +1289 0.065373898 10.100.0.48:14330 10.100.0.48:59183 2799111408 1514 120105ea0000000016030300410200003d03032b7595f3df38e64428f75e230e ............A...=..+u...8.D(.^#......O..~}...._i +1291 0.068390846 10.100.0.48:59183 10.100.0.48:14330 73283694 101 1201006500000000160303002510000021206e87f43bcac5b673880df4a02799 ...e........%...! n..;...s....'..r6O.5m.VR.W.... +1294 0.077111483 10.100.0.48:14330 10.100.0.48:59183 2799112922 234 120100ea0000000016030300aa040000a600001c2000a0ab01c942013960a584 .................... .....B.9`.....:...b.2.f7... +1296 0.078122854 10.100.0.48:59183 10.100.0.48:14330 73283795 546 170303021d00000000000000015ad1dcd9e2213dc775e25a8abbc9484efbeb01 .............Z....!=.u.Z...HN......BAo........&. +1310 0.098002195 10.100.0.48:14330 10.100.0.48:59183 2799113156 651 0401028b004a0100e3710001314f0074004f007000630055006100410064006d .....J...q..1O.t.O.p.c.U.a.A.d.m.i.n.T.e.s.t._.1 +1312 0.098707914 10.100.0.48:59183 10.100.0.48:14330 73284341 46 0101002e00000100160000001200000002000000000000000000010000005300 ..............................S.E.L.E.C.T. .1. +1314 0.121887684 10.100.0.48:14330 10.100.0.48:59183 2799113807 39 04010027004a010081010000000000000020003800d101000000fd1000c10001 ...'.J........... .8................... +1316 0.123005867 10.100.0.48:59183 10.100.0.48:14330 73284387 328 0109014800000100160000001200000002000000000000000000010000004400 ...H..........................D.E.C.L.A.R.E. .@. +1343 0.224919558 10.100.0.48:14330 10.100.0.48:59183 2799113846 211 040100d3004a0100e30300120000ff1100c1000100000000000000ff0100c000 .....J.......................................... +1485 0.501576900 10.100.0.48:59183 10.100.0.48:14330 73284715 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +1504 0.513020515 10.100.0.48:14330 10.100.0.48:59183 2799114057 51 04010033004a0100e30b000808010000004a00000000e40b0000000200000000 ...3.J...........J.............................. +1506 0.526902199 10.100.0.48:59183 10.100.0.48:14330 73284749 606 0101025e0000010016000000120000000200010000004a000000010000004900 ...^..................J.......I.F. .O.B.J.E.C.T. +1534 0.606011391 10.100.0.48:14330 10.100.0.48:59183 2799114108 34 04010022004a0100fd0100c0000000000000000000fd0000c600000000000000 ...".J............................ +1550 0.616833687 10.100.0.48:59183 10.100.0.48:14330 73285355 34 0e0100220000010016000000120000000200010000004a000000010000000700 ..."..................J........... +1564 0.637522697 10.100.0.48:14330 10.100.0.48:59183 2799114142 51 04010033004a0100e30b00090008010000004a000000e40b0000000300000000 ...3.J............J............................. +1569 0.668800116 10.100.0.48:59183 10.100.0.48:14330 73285389 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +1574 0.677054644 10.100.0.48:14330 10.100.0.48:59183 2799114193 51 04010033004a0100e30b000808020000004a00000000e40b0000000400000000 ...3.J...........J.............................. +1576 0.689975262 10.100.0.48:59183 10.100.0.48:14330 73285423 46 0101002e0000010016000000120000000200020000004a000000010000005300 ......................J.......S.E.L.E.C.T. .1. +1582 0.699007511 10.100.0.48:14330 10.100.0.48:59183 2799114244 39 04010027004a010081010000000000000020003800d101000000fd1000c10001 ...'.J........... .8................... +1584 0.701444864 10.100.0.48:59183 10.100.0.48:14330 73285469 120 010100780000010016000000120000000200020000004a000000010000005300 ...x..................J.......S.E.L.E.C.T. .O.B. +1592 0.713647127 10.100.0.48:14330 10.100.0.48:59183 2799114283 41 04010029004a01008101000000000000002100260400d10445aedb47fd1000c1 ...).J...........!.&....E..G............. +1606 0.720176697 10.100.0.48:59183 10.100.0.48:14330 73285589 216 010100d80000010016000000120000000200020000004a000000010000005300 ......................J.......S.E.L.E.C.T. .[.M. +1659 0.886871338 10.100.0.48:14330 10.100.0.48:59183 2799114324 111 0401006f004a01008102000000000000000800e72c010904d000340b4d006900 ...o.J..............,.....4.M.i.g.r.a.t.i.o.n.I. +1811 1.289643288 10.100.0.48:59183 10.100.0.48:14330 73285805 1106 010104520000010016000000120000000200020000004a000000010000004300 ...R..................J.......C.R.E.A.T.E. .T.A. +1827 1.340516806 10.100.0.48:14330 10.100.0.48:59183 2799114435 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1829 1.341321468 10.100.0.48:59183 10.100.0.48:14330 73286911 1356 0101054c0000010016000000120000000200020000004a000000010000004300 ...L..................J.......C.R.E.A.T.E. .T.A. +1849 1.409574986 10.100.0.48:14330 10.100.0.48:59183 2799114456 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1851 1.409913540 10.100.0.48:59183 10.100.0.48:14330 73288267 1524 010105f40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +1903 1.467346668 10.100.0.48:14330 10.100.0.48:59183 2799114477 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1905 1.467657089 10.100.0.48:59183 10.100.0.48:14330 73289791 1578 0101062a0000010016000000120000000200020000004a000000010000004300 ...*..................J.......C.R.E.A.T.E. .T.A. +1915 1.513554573 10.100.0.48:14330 10.100.0.48:59183 2799114498 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1917 1.513881683 10.100.0.48:59183 10.100.0.48:14330 73291369 1658 0101067a0000010016000000120000000200020000004a000000010000004300 ...z..................J.......C.R.E.A.T.E. .T.A. +1935 1.557450056 10.100.0.48:14330 10.100.0.48:59183 2799114519 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1937 1.557732821 10.100.0.48:59183 10.100.0.48:14330 73293027 1260 010104ec0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +1940 1.585862398 10.100.0.48:14330 10.100.0.48:59183 2799114540 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1943 1.586180449 10.100.0.48:59183 10.100.0.48:14330 73294287 1428 010105940000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +1947 1.615954876 10.100.0.48:14330 10.100.0.48:59183 2799114561 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1949 1.616301060 10.100.0.48:59183 10.100.0.48:14330 73295715 1278 010104fe0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +1979 1.664504051 10.100.0.48:14330 10.100.0.48:59183 2799114582 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1981 1.664896250 10.100.0.48:59183 10.100.0.48:14330 73296993 1838 0101072e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +1987 1.706426382 10.100.0.48:14330 10.100.0.48:59183 2799114603 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1989 1.706722260 10.100.0.48:59183 10.100.0.48:14330 73298831 2334 0101091e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +1993 1.741677761 10.100.0.48:14330 10.100.0.48:59183 2799114624 21 04010015004a0100fd0000c6000000000000000000 .....J............... +1995 1.741956949 10.100.0.48:59183 10.100.0.48:14330 73301165 1488 010105d00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +2042 1.786252022 10.100.0.48:14330 10.100.0.48:59183 2799114645 21 04010015004a0100fd0000c6000000000000000000 .....J............... +2044 1.786564112 10.100.0.48:59183 10.100.0.48:14330 73302653 1264 010104f00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +2050 1.823838234 10.100.0.48:14330 10.100.0.48:59183 2799114666 21 04010015004a0100fd0000c6000000000000000000 .....J............... +2052 1.824132204 10.100.0.48:59183 10.100.0.48:14330 73303917 1212 010104bc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +2072 1.864787340 10.100.0.48:14330 10.100.0.48:59183 2799114687 21 04010015004a0100fd0000c6000000000000000000 .....J............... +2074 1.865059853 10.100.0.48:59183 10.100.0.48:14330 73305129 1694 0101069e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +2088 1.907005310 10.100.0.48:14330 10.100.0.48:59183 2799114708 21 04010015004a0100fd0000c6000000000000000000 .....J............... +2090 1.907277346 10.100.0.48:59183 10.100.0.48:14330 73306823 1312 010105200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .T.A. +2098 1.944412470 10.100.0.48:14330 10.100.0.48:59183 2799114729 21 04010015004a0100fd0000c6000000000000000000 .....J............... +2100 1.944696188 10.100.0.48:59183 10.100.0.48:14330 73308135 1030 010104060000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +2124 1.986845493 10.100.0.48:14330 10.100.0.48:59183 2799114750 21 04010015004a0100fd0000c6000000000000000000 .....J............... +2126 1.987112045 10.100.0.48:59183 10.100.0.48:14330 73309165 210 010100d20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2128 2.006041288 10.100.0.48:14330 10.100.0.48:59183 2799114771 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2132 2.006339788 10.100.0.48:59183 10.100.0.48:14330 73309375 280 010101180000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2137 2.022264957 10.100.0.48:14330 10.100.0.48:59183 2799114792 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2140 2.022565603 10.100.0.48:59183 10.100.0.48:14330 73309655 226 010100e20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2144 2.034543991 10.100.0.48:14330 10.100.0.48:59183 2799114813 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2146 2.034791231 10.100.0.48:59183 10.100.0.48:14330 73309881 270 0101010e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2156 2.047883749 10.100.0.48:14330 10.100.0.48:59183 2799114834 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2158 2.048133373 10.100.0.48:59183 10.100.0.48:14330 73310151 258 010101020000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2184 2.061916351 10.100.0.48:14330 10.100.0.48:59183 2799114855 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2186 2.062255144 10.100.0.48:59183 10.100.0.48:14330 73310409 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2203 2.077867031 10.100.0.48:14330 10.100.0.48:59183 2799114876 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2206 2.078183889 10.100.0.48:59183 10.100.0.48:14330 73310639 262 010101060000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2210 2.099010229 10.100.0.48:14330 10.100.0.48:59183 2799114897 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2212 2.099373102 10.100.0.48:59183 10.100.0.48:14330 73310901 322 010101420000010016000000120000000200020000004a000000010000004300 ...B..................J.......C.R.E.A.T.E. .I.N. +2218 2.120525122 10.100.0.48:14330 10.100.0.48:59183 2799114918 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2220 2.120778084 10.100.0.48:59183 10.100.0.48:14330 73311223 232 010100e80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2226 2.132306337 10.100.0.48:14330 10.100.0.48:59183 2799114939 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2228 2.132630587 10.100.0.48:59183 10.100.0.48:14330 73311455 276 010101140000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2242 2.149130344 10.100.0.48:14330 10.100.0.48:59183 2799114960 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2244 2.149381876 10.100.0.48:59183 10.100.0.48:14330 73311731 218 010100da0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2250 2.160705566 10.100.0.48:14330 10.100.0.48:59183 2799114981 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2254 2.161051273 10.100.0.48:59183 10.100.0.48:14330 73311949 280 010101180000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2272 2.170798779 10.100.0.48:14330 10.100.0.48:59183 2799115002 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2274 2.171135426 10.100.0.48:59183 10.100.0.48:14330 73312229 188 010100bc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2278 2.183452129 10.100.0.48:14330 10.100.0.48:59183 2799115023 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2280 2.183862448 10.100.0.48:59183 10.100.0.48:14330 73312417 238 010100ee0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2288 2.200117826 10.100.0.48:14330 10.100.0.48:59183 2799115044 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2290 2.200421095 10.100.0.48:59183 10.100.0.48:14330 73312655 246 010100f60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2296 2.218927860 10.100.0.48:14330 10.100.0.48:59183 2799115065 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2299 2.219183683 10.100.0.48:59183 10.100.0.48:14330 73312901 344 010101580000010016000000120000000200020000004a000000010000004300 ...X..................J.......C.R.E.A.T.E. .U.N. +2306 2.234987497 10.100.0.48:14330 10.100.0.48:59183 2799115086 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2308 2.235260248 10.100.0.48:59183 10.100.0.48:14330 73313245 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2314 2.251965523 10.100.0.48:14330 10.100.0.48:59183 2799115107 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2318 2.252269983 10.100.0.48:59183 10.100.0.48:14330 73313475 212 010100d40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2331 2.267220020 10.100.0.48:14330 10.100.0.48:59183 2799115128 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2337 2.267520905 10.100.0.48:59183 10.100.0.48:14330 73313687 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2342 2.278404713 10.100.0.48:14330 10.100.0.48:59183 2799115149 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2344 2.278640747 10.100.0.48:59183 10.100.0.48:14330 73313917 258 010101020000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2348 2.291059256 10.100.0.48:14330 10.100.0.48:59183 2799115170 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2350 2.291678905 10.100.0.48:59183 10.100.0.48:14330 73314175 252 010100fc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2356 2.306657314 10.100.0.48:14330 10.100.0.48:59183 2799115191 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2360 2.306908607 10.100.0.48:59183 10.100.0.48:14330 73314427 250 010100fa0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2365 2.320771456 10.100.0.48:14330 10.100.0.48:59183 2799115212 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2368 2.321102858 10.100.0.48:59183 10.100.0.48:14330 73314677 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +2372 2.338383198 10.100.0.48:14330 10.100.0.48:59183 2799115233 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2374 2.338718176 10.100.0.48:59183 10.100.0.48:14330 73314981 234 010100ea0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2382 2.358306885 10.100.0.48:14330 10.100.0.48:59183 2799115254 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2384 2.358600378 10.100.0.48:59183 10.100.0.48:14330 73315215 224 010100e00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2439 2.375216961 10.100.0.48:14330 10.100.0.48:59183 2799115275 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2441 2.375585794 10.100.0.48:59183 10.100.0.48:14330 73315439 306 010101320000010016000000120000000200020000004a000000010000004300 ...2..................J.......C.R.E.A.T.E. .U.N. +2447 2.390626192 10.100.0.48:14330 10.100.0.48:59183 2799115296 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2449 2.390884876 10.100.0.48:59183 10.100.0.48:14330 73315745 168 010100a80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2455 2.407474518 10.100.0.48:14330 10.100.0.48:59183 2799115317 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2457 2.407721758 10.100.0.48:59183 10.100.0.48:14330 73315913 218 010100da0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2462 2.447908878 10.100.0.48:14330 10.100.0.48:59183 2799115338 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2465 2.448241949 10.100.0.48:59183 10.100.0.48:14330 73316131 258 010101020000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2469 2.466882467 10.100.0.48:14330 10.100.0.48:59183 2799115359 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2473 2.467167377 10.100.0.48:59183 10.100.0.48:14330 73316389 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +2495 2.484994173 10.100.0.48:14330 10.100.0.48:59183 2799115380 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2497 2.485266209 10.100.0.48:59183 10.100.0.48:14330 73316693 346 0101015a0000010016000000120000000200020000004a000000010000004300 ...Z..................J.......C.R.E.A.T.E. .U.N. +2503 2.498366356 10.100.0.48:14330 10.100.0.48:59183 2799115401 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2505 2.498625755 10.100.0.48:59183 10.100.0.48:14330 73317039 248 010100f80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2511 2.510704517 10.100.0.48:14330 10.100.0.48:59183 2799115422 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2513 2.511048794 10.100.0.48:59183 10.100.0.48:14330 73317287 210 010100d20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2523 2.522670746 10.100.0.48:14330 10.100.0.48:59183 2799115443 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2525 2.522974730 10.100.0.48:59183 10.100.0.48:14330 73317497 206 010100ce0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2527 2.531910181 10.100.0.48:14330 10.100.0.48:59183 2799115464 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2529 2.532504559 10.100.0.48:59183 10.100.0.48:14330 73317703 284 0101011c0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2536 2.543896675 10.100.0.48:14330 10.100.0.48:59183 2799115485 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2539 2.544226646 10.100.0.48:59183 10.100.0.48:14330 73317987 360 010101680000010016000000120000000200020000004a000000010000004300 ...h..................J.......C.R.E.A.T.E. .U.N. +2545 2.558645487 10.100.0.48:14330 10.100.0.48:59183 2799115506 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2547 2.558937073 10.100.0.48:59183 10.100.0.48:14330 73318347 288 010101200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .U.N. +2551 2.573830843 10.100.0.48:14330 10.100.0.48:59183 2799115527 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2555 2.574184179 10.100.0.48:59183 10.100.0.48:14330 73318635 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2572 2.591095686 10.100.0.48:14330 10.100.0.48:59183 2799115548 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2576 2.591453791 10.100.0.48:59183 10.100.0.48:14330 73318865 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +2580 2.606543779 10.100.0.48:14330 10.100.0.48:59183 2799115569 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2582 2.607344866 10.100.0.48:59183 10.100.0.48:14330 73319169 164 010100a40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2588 2.622539997 10.100.0.48:14330 10.100.0.48:59183 2799115590 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2592 2.622811079 10.100.0.48:59183 10.100.0.48:14330 73319333 178 010100b20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2609 2.638409853 10.100.0.48:14330 10.100.0.48:59183 2799115611 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2611 2.638695717 10.100.0.48:59183 10.100.0.48:14330 73319511 244 010100f40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2646 2.652366877 10.100.0.48:14330 10.100.0.48:59183 2799115632 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2648 2.652626276 10.100.0.48:59183 10.100.0.48:14330 73319755 266 0101010a0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2654 2.668019772 10.100.0.48:14330 10.100.0.48:59183 2799115653 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2656 2.668343782 10.100.0.48:59183 10.100.0.48:14330 73320021 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +2700 2.683027506 10.100.0.48:14330 10.100.0.48:59183 2799115674 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2702 2.683320284 10.100.0.48:59183 10.100.0.48:14330 73320325 328 010101480000010016000000120000000200020000004a000000010000004300 ...H..................J.......C.R.E.A.T.E. .U.N. +2713 2.702486992 10.100.0.48:14330 10.100.0.48:59183 2799115695 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2715 2.702769756 10.100.0.48:59183 10.100.0.48:14330 73320653 256 010101000000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2718 2.714517593 10.100.0.48:14330 10.100.0.48:59183 2799115716 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2721 2.714840174 10.100.0.48:59183 10.100.0.48:14330 73320909 160 010100a00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2728 2.726598978 10.100.0.48:14330 10.100.0.48:59183 2799115737 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2731 2.726932049 10.100.0.48:59183 10.100.0.48:14330 73321069 210 010100d20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2739 2.737742186 10.100.0.48:14330 10.100.0.48:59183 2799115758 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2741 2.737993956 10.100.0.48:59183 10.100.0.48:14330 73321279 248 010100f80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2748 2.747775078 10.100.0.48:14330 10.100.0.48:59183 2799115779 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2754 2.748187780 10.100.0.48:59183 10.100.0.48:14330 73321527 288 010101200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .U.N. +2781 2.762454748 10.100.0.48:14330 10.100.0.48:59183 2799115800 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2785 2.762736320 10.100.0.48:59183 10.100.0.48:14330 73321815 204 010100cc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +2800 2.775758505 10.100.0.48:14330 10.100.0.48:59183 2799115821 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2802 2.776015282 10.100.0.48:59183 10.100.0.48:14330 73322019 242 010100f20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +2820 2.792855024 10.100.0.48:14330 10.100.0.48:59183 2799115842 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2822 2.793101788 10.100.0.48:59183 10.100.0.48:14330 73322261 288 010101200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .U.N. +2830 2.811440706 10.100.0.48:14330 10.100.0.48:59183 2799115863 21 04010015004a0100fd0000c8000000000000000000 .....J............... +2833 2.811736584 10.100.0.48:59183 10.100.0.48:14330 73322549 280 010101180000010016000000120000000200020000004a000000010000004900 ......................J.......I.N.S.E.R.T. .I.N. +2859 2.899689436 10.100.0.48:14330 10.100.0.48:59183 2799115884 21 04010015004a0100fd1000c3000100000000000000 .....J............... +2863 2.900787830 10.100.0.48:59183 10.100.0.48:14330 73322829 34 0e0100220000010016000000120000000200020000004a000000010000000700 ..."..................J........... +2870 2.935256958 10.100.0.48:14330 10.100.0.48:59183 2799115905 51 04010033004a0100e30b00090008020000004a000000e40b0000000500000000 ...3.J............J............................. +2924 3.037705421 10.100.0.48:59183 10.100.0.48:14330 73322863 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +2926 3.044265747 10.100.0.48:14330 10.100.0.48:59183 2799115956 51 04010033004a0100e30b000808030000004a00000000e40b0000000600000000 ...3.J...........J.............................. +2928 3.044575453 10.100.0.48:59183 10.100.0.48:14330 73322897 2000 010107d00000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +2930 3.079356909 10.100.0.48:14330 10.100.0.48:59183 2799116007 21 04010015004a0100fd0000de000000000000000000 .....J............... +2933 3.079655409 10.100.0.48:59183 10.100.0.48:14330 73324897 3206 01010c860000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +2961 3.143849850 10.100.0.48:14330 10.100.0.48:59183 2799116028 21 04010015004a0100fd0000de000000000000000000 .....J............... +2965 3.144209385 10.100.0.48:59183 10.100.0.48:14330 73328103 2820 01010b040000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +2969 3.180000067 10.100.0.48:14330 10.100.0.48:59183 2799116049 21 04010015004a0100fd0000de000000000000000000 .....J............... +2973 3.180402040 10.100.0.48:59183 10.100.0.48:14330 73330923 8000 01041f400000010016000000120000000200030000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +2975 3.180606604 10.100.0.48:59183 10.100.0.48:14330 73338923 12 0101000c000002000d000a00 ............ +2999 3.226734877 10.100.0.48:14330 10.100.0.48:59183 2799116070 21 04010015004a0100fd0000de000000000000000000 .....J............... +3001 3.227039576 10.100.0.48:59183 10.100.0.48:14330 73338935 4700 0101125c0000010016000000120000000200030000004a000000010000000d00 ...\..................J...........C.R.E.A.T.E. . +3007 3.248541355 10.100.0.48:14330 10.100.0.48:59183 2799116091 21 04010015004a0100fd0000de000000000000000000 .....J............... +3009 3.248866558 10.100.0.48:59183 10.100.0.48:14330 73343635 8000 01041f400000010016000000120000000200030000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +3013 3.249108076 10.100.0.48:59183 10.100.0.48:14330 73351635 244 010100f4000002006b0027002c002000400043006c0075007300740065007200 ........k.'.,. .@.C.l.u.s.t.e.r.I.d.,. .@.N.e.w. +3063 3.326261282 10.100.0.48:14330 10.100.0.48:59183 2799116112 21 04010015004a0100fd0000de000000000000000000 .....J............... +3065 3.326637745 10.100.0.48:59183 10.100.0.48:14330 73351879 7862 01011eb60000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +3071 3.359144926 10.100.0.48:14330 10.100.0.48:59183 2799116133 21 04010015004a0100fd0000de000000000000000000 .....J............... +3073 3.359559774 10.100.0.48:59183 10.100.0.48:14330 73359741 1964 010107ac0000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +3083 3.378529072 10.100.0.48:14330 10.100.0.48:59183 2799116154 21 04010015004a0100fd0000de000000000000000000 .....J............... +3085 3.378794193 10.100.0.48:59183 10.100.0.48:14330 73361705 286 0101011e0000010016000000120000000200030000004a000000010000004900 ......................J.......I.N.S.E.R.T. .I.N. +3095 3.387522697 10.100.0.48:14330 10.100.0.48:59183 2799116175 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3097 3.387814760 10.100.0.48:59183 10.100.0.48:14330 73361991 34 0e0100220000010016000000120000000200030000004a000000010000000700 ..."..................J........... +3115 3.408105850 10.100.0.48:14330 10.100.0.48:59183 2799116196 51 04010033004a0100e30b00090008030000004a000000e40b0000000700000000 ...3.J............J............................. +3125 3.501482487 10.100.0.48:59183 10.100.0.48:14330 73362025 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3141 3.510286808 10.100.0.48:14330 10.100.0.48:59183 2799116247 51 04010033004a0100e30b000808040000004a00000000e40b0000000800000000 ...3.J...........J.............................. +3143 3.510635614 10.100.0.48:59183 10.100.0.48:14330 73362059 358 010101660000010016000000120000000200040000004a000000010000000d00 ...f..................J...........I.F. .D.A.T.A. +3149 3.533055782 10.100.0.48:14330 10.100.0.48:59183 2799116298 34 04010022004a0100fd0100c0000000000000000000fd0000c000000000000000 ...".J............................ +3151 3.533351183 10.100.0.48:59183 10.100.0.48:14330 73362417 2292 010108f40000010016000000120000000200040000004a000000010000000d00 ......................J...........G.R.A.N.T. .E. +3159 3.569853783 10.100.0.48:14330 10.100.0.48:59183 2799116332 21 04010015004a0100fd0000fd000000000000000000 .....J............... +3163 3.570225716 10.100.0.48:59183 10.100.0.48:14330 73364709 292 010101240000010016000000120000000200040000004a000000010000004900 ...$..................J.......I.N.S.E.R.T. .I.N. +3167 3.580478668 10.100.0.48:14330 10.100.0.48:59183 2799116353 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3171 3.580774546 10.100.0.48:59183 10.100.0.48:14330 73365001 34 0e0100220000010016000000120000000200040000004a000000010000000700 ..."..................J........... +3201 3.602752924 10.100.0.48:14330 10.100.0.48:59183 2799116374 51 04010033004a0100e30b00090008040000004a000000e40b0000000900000000 ...3.J............J............................. +3255 3.853019714 10.100.0.48:59183 10.100.0.48:14330 73365035 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3257 3.860274553 10.100.0.48:14330 10.100.0.48:59183 2799116425 51 04010033004a0100e30b000808050000004a00000000e40b0000000a00000000 ...3.J...........J.............................. +3259 3.860680819 10.100.0.48:59183 10.100.0.48:14330 73365069 860 0101035c0000010016000000120000000200050000004a000000010000004300 ...\..................J.......C.R.E.A.T.E. .T.A. +3265 3.876866817 10.100.0.48:14330 10.100.0.48:59183 2799116476 21 04010015004a0100fd0000c6000000000000000000 .....J............... +3267 3.877198935 10.100.0.48:59183 10.100.0.48:14330 73365929 198 010100c60000010016000000120000000200050000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +3275 3.888867855 10.100.0.48:14330 10.100.0.48:59183 2799116497 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3279 3.889124155 10.100.0.48:59183 10.100.0.48:14330 73366127 180 010100b40000010016000000120000000200050000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +3304 3.905129433 10.100.0.48:14330 10.100.0.48:59183 2799116518 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3306 3.905405045 10.100.0.48:59183 10.100.0.48:14330 73366307 292 010101240000010016000000120000000200050000004a000000010000004900 ...$..................J.......I.N.S.E.R.T. .I.N. +3312 3.914056778 10.100.0.48:14330 10.100.0.48:59183 2799116539 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3314 3.914292574 10.100.0.48:59183 10.100.0.48:14330 73366599 34 0e0100220000010016000000120000000200050000004a000000010000000700 ..."..................J........... +3338 3.938166380 10.100.0.48:14330 10.100.0.48:59183 2799116560 51 04010033004a0100e30b00090008050000004a000000e40b0000000b00000000 ...3.J............J............................. +3369 4.097563982 10.100.0.48:59183 10.100.0.48:14330 73366633 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3372 4.105499029 10.100.0.48:14330 10.100.0.48:59183 2799116611 51 04010033004a0100e30b000808060000004a00000000e40b0000000c00000000 ...3.J...........J.............................. +3374 4.105861902 10.100.0.48:59183 10.100.0.48:14330 73366667 1132 0101046c0000010016000000120000000200060000004a000000010000004300 ...l..................J.......C.R.E.A.T.E. .T.A. +3390 4.130182505 10.100.0.48:14330 10.100.0.48:59183 2799116662 21 04010015004a0100fd0000c6000000000000000000 .....J............... +3392 4.130550623 10.100.0.48:59183 10.100.0.48:14330 73367799 238 010100ee0000010016000000120000000200060000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +3408 4.141247749 10.100.0.48:14330 10.100.0.48:59183 2799116683 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3410 4.141554594 10.100.0.48:59183 10.100.0.48:14330 73368037 320 010101400000010016000000120000000200060000004a000000010000004900 ...@..................J.......I.N.S.E.R.T. .I.N. +3416 4.149539709 10.100.0.48:14330 10.100.0.48:59183 2799116704 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3418 4.149869442 10.100.0.48:59183 10.100.0.48:14330 73368357 34 0e0100220000010016000000120000000200060000004a000000010000000700 ..."..................J........... +3426 4.174404144 10.100.0.48:14330 10.100.0.48:59183 2799116725 51 04010033004a0100e30b00090008060000004a000000e40b0000000d00000000 ...3.J............J............................. +3477 4.317873001 10.100.0.48:59183 10.100.0.48:14330 73368391 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3480 4.325464010 10.100.0.48:14330 10.100.0.48:59183 2799116776 51 04010033004a0100e30b000808070000004a00000000e40b0000000e00000000 ...3.J...........J.............................. +3482 4.325861931 10.100.0.48:59183 10.100.0.48:14330 73368425 1060 010104240000010016000000120000000200070000004a000000010000004300 ...$..................J.......C.R.E.A.T.E. .T.A. +3496 4.346928358 10.100.0.48:14330 10.100.0.48:59183 2799116827 21 04010015004a0100fd0000c6000000000000000000 .....J............... +3498 4.347236156 10.100.0.48:59183 10.100.0.48:14330 73369485 212 010100d40000010016000000120000000200070000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +3502 4.358105898 10.100.0.48:14330 10.100.0.48:59183 2799116848 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3504 4.358370304 10.100.0.48:59183 10.100.0.48:14330 73369697 204 010100cc0000010016000000120000000200070000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +3508 4.371963978 10.100.0.48:14330 10.100.0.48:59183 2799116869 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3514 4.372544289 10.100.0.48:59183 10.100.0.48:14330 73369901 320 010101400000010016000000120000000200070000004a000000010000004300 ...@..................J.......C.R.E.A.T.E. .U.N. +3524 4.387069225 10.100.0.48:14330 10.100.0.48:59183 2799116890 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3526 4.387337446 10.100.0.48:59183 10.100.0.48:14330 73370221 300 0101012c0000010016000000120000000200070000004a000000010000004900 ...,..................J.......I.N.S.E.R.T. .I.N. +3532 4.397369623 10.100.0.48:14330 10.100.0.48:59183 2799116911 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3534 4.397608042 10.100.0.48:59183 10.100.0.48:14330 73370521 34 0e0100220000010016000000120000000200070000004a000000010000000700 ..."..................J........... +3546 4.418325663 10.100.0.48:14330 10.100.0.48:59183 2799116932 51 04010033004a0100e30b00090008070000004a000000e40b0000000f00000000 ...3.J............J............................. +3632 4.661572695 10.100.0.48:59183 10.100.0.48:14330 73370555 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3634 4.667349339 10.100.0.48:14330 10.100.0.48:59183 2799116983 51 04010033004a0100e30b000808080000004a00000000e40b0000001000000000 ...3.J...........J.............................. +3636 4.667665720 10.100.0.48:59183 10.100.0.48:14330 73370589 176 010100b00000010016000000120000000200080000004a000000010000004100 ......................J.......A.L.T.E.R. .T.A.B. +3648 4.695170164 10.100.0.48:14330 10.100.0.48:59183 2799117034 21 04010015004a0100fd0000d8000000000000000000 .....J............... +3650 4.695448399 10.100.0.48:59183 10.100.0.48:14330 73370765 340 010101540000010016000000120000000200080000004a000000010000004100 ...T..................J.......A.L.T.E.R. .T.A.B. +3654 4.705270290 10.100.0.48:14330 10.100.0.48:59183 2799117055 21 04010015004a0100fd0000d8000000000000000000 .....J............... +3658 4.705518723 10.100.0.48:59183 10.100.0.48:14330 73371105 320 010101400000010016000000120000000200080000004a000000010000004900 ...@..................J.......I.N.S.E.R.T. .I.N. +3662 4.713935375 10.100.0.48:14330 10.100.0.48:59183 2799117076 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3671 4.722162247 10.100.0.48:59183 10.100.0.48:14330 73371425 34 0e0100220000010016000000120000000200080000004a000000010000000700 ..."..................J........... +3677 4.744262218 10.100.0.48:14330 10.100.0.48:59183 2799117097 51 04010033004a0100e30b00090008080000004a000000e40b0000001100000000 ...3.J............J............................. +3745 4.934021711 10.100.0.48:59183 10.100.0.48:14330 73371459 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3747 4.943233728 10.100.0.48:14330 10.100.0.48:59183 2799117148 51 04010033004a0100e30b000808090000004a00000000e40b0000001200000000 ...3.J...........J.............................. +3749 4.943504572 10.100.0.48:59183 10.100.0.48:14330 73371493 842 0101034a0000010016000000120000000200090000004a000000010000004300 ...J..................J.......C.R.E.A.T.E. .T.A. +3767 4.962065697 10.100.0.48:14330 10.100.0.48:59183 2799117199 21 04010015004a0100fd0000c6000000000000000000 .....J............... +3769 4.962321758 10.100.0.48:59183 10.100.0.48:14330 73372335 2298 010108fa0000010016000000120000000200090000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +3781 4.992712975 10.100.0.48:14330 10.100.0.48:59183 2799117220 21 04010015004a0100fd0000c6000000000000000000 .....J............... +3783 4.992971182 10.100.0.48:59183 10.100.0.48:14330 73374633 264 010101080000010016000000120000000200090000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +3789 5.003600359 10.100.0.48:14330 10.100.0.48:59183 2799117241 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3791 5.003908634 10.100.0.48:59183 10.100.0.48:14330 73374897 192 010100c00000010016000000120000000200090000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +3797 5.015719414 10.100.0.48:14330 10.100.0.48:59183 2799117262 21 04010015004a0100fd0000c8000000000000000000 .....J............... +3799 5.016051054 10.100.0.48:59183 10.100.0.48:14330 73375089 300 0101012c0000010016000000120000000200090000004a000000010000004900 ...,..................J.......I.N.S.E.R.T. .I.N. +3805 5.026148081 10.100.0.48:14330 10.100.0.48:59183 2799117283 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3807 5.026413918 10.100.0.48:59183 10.100.0.48:14330 73375389 34 0e0100220000010016000000120000000200090000004a000000010000000700 ..."..................J........... +3813 5.051769018 10.100.0.48:14330 10.100.0.48:59183 2799117304 51 04010033004a0100e30b00090008090000004a000000e40b0000001300000000 ...3.J............J............................. +3891 5.131830454 10.100.0.48:59183 10.100.0.48:14330 73375423 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3904 5.142297745 10.100.0.48:14330 10.100.0.48:59183 2799117355 51 04010033004a0100e30b0008080a0000004a00000000e40b0000001400000000 ...3.J...........J.............................. +3908 5.142582417 10.100.0.48:59183 10.100.0.48:14330 73375457 8000 01041f4000000100160000001200000002000a0000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +3911 5.143010139 10.100.0.48:59183 10.100.0.48:14330 73383457 2530 010109e200000200690065006400200076006900610020004300480045004300 ........i.e.d. .v.i.a. .C.H.E.C.K.S.U.M. .o.n. . +3931 5.172975063 10.100.0.48:14330 10.100.0.48:59183 2799117406 21 04010015004a0100fd0000de000000000000000000 .....J............... +3933 5.173269033 10.100.0.48:59183 10.100.0.48:14330 73385987 330 0101014a00000100160000001200000002000a0000004a000000010000004900 ...J..................J.......I.N.S.E.R.T. .I.N. +3939 5.180356264 10.100.0.48:14330 10.100.0.48:59183 2799117427 21 04010015004a0100fd1000c3000100000000000000 .....J............... +3941 5.180577517 10.100.0.48:59183 10.100.0.48:14330 73386317 34 0e01002200000100160000001200000002000a0000004a000000010000000700 ..."..................J........... +3943 5.199207067 10.100.0.48:14330 10.100.0.48:59183 2799117448 51 04010033004a0100e30b000900080a0000004a000000e40b0000001500000000 ...3.J............J............................. +4037 5.483596087 10.100.0.48:59183 10.100.0.48:14330 73386351 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +4039 5.492421627 10.100.0.48:14330 10.100.0.48:59183 2799117499 51 04010033004a0100e30b0008080b0000004a00000000e40b0000001600000000 ...3.J...........J.............................. +4041 5.492934704 10.100.0.48:59183 10.100.0.48:14330 73386385 1118 0101045e00000100160000001200000002000b0000004a000000010000004300 ...^..................J.......C.R.E.A.T.E. .T.A. +4047 5.514333963 10.100.0.48:14330 10.100.0.48:59183 2799117550 21 04010015004a0100fd0000c6000000000000000000 .....J............... +4051 5.514656544 10.100.0.48:59183 10.100.0.48:14330 73387503 2002 010107d200000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +4071 5.536216974 10.100.0.48:14330 10.100.0.48:59183 2799117571 21 04010015004a0100fd0000c6000000000000000000 .....J............... +4073 5.536471844 10.100.0.48:59183 10.100.0.48:14330 73389505 1700 010106a400000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +4079 5.555952311 10.100.0.48:14330 10.100.0.48:59183 2799117592 21 04010015004a0100fd0000c6000000000000000000 .....J............... +4081 5.556201220 10.100.0.48:59183 10.100.0.48:14330 73391205 1860 0101074400000100160000001200000002000b0000004a000000010000004300 ...D..................J.......C.R.E.A.T.E. .T.A. +4099 5.578840971 10.100.0.48:14330 10.100.0.48:59183 2799117613 21 04010015004a0100fd0000c6000000000000000000 .....J............... +4101 5.579151630 10.100.0.48:59183 10.100.0.48:14330 73393065 214 010100d600000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +4107 5.588218451 10.100.0.48:14330 10.100.0.48:59183 2799117634 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4109 5.588473320 10.100.0.48:59183 10.100.0.48:14330 73393279 280 0101011800000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +4115 5.597180128 10.100.0.48:14330 10.100.0.48:59183 2799117655 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4117 5.597486258 10.100.0.48:59183 10.100.0.48:14330 73393559 248 010100f800000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +4123 5.608379602 10.100.0.48:14330 10.100.0.48:59183 2799117676 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4125 5.608621836 10.100.0.48:59183 10.100.0.48:14330 73393807 280 0101011800000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +4131 5.619476080 10.100.0.48:14330 10.100.0.48:59183 2799117697 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4133 5.619747162 10.100.0.48:59183 10.100.0.48:14330 73394087 336 0101015000000100160000001200000002000b0000004a000000010000004300 ...P..................J.......C.R.E.A.T.E. .U.N. +4139 5.631910086 10.100.0.48:14330 10.100.0.48:59183 2799117718 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4141 5.632144928 10.100.0.48:59183 10.100.0.48:14330 73394423 218 010100da00000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +4149 5.641523600 10.100.0.48:14330 10.100.0.48:59183 2799117739 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4153 5.641802549 10.100.0.48:59183 10.100.0.48:14330 73394641 268 0101010c00000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +4163 5.654053211 10.100.0.48:14330 10.100.0.48:59183 2799117760 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4165 5.654309511 10.100.0.48:59183 10.100.0.48:14330 73394909 312 0101013800000100160000001200000002000b0000004a000000010000004300 ...8..................J.......C.R.E.A.T.E. .U.N. +4171 5.664325476 10.100.0.48:14330 10.100.0.48:59183 2799117781 21 04010015004a0100fd0000c8000000000000000000 .....J............... +4173 5.664566040 10.100.0.48:59183 10.100.0.48:14330 73395221 302 0101012e00000100160000001200000002000b0000004a000000010000004900 ......................J.......I.N.S.E.R.T. .I.N. +4181 5.671179771 10.100.0.48:14330 10.100.0.48:59183 2799117802 21 04010015004a0100fd1000c3000100000000000000 .....J............... +4183 5.671450377 10.100.0.48:59183 10.100.0.48:14330 73395523 34 0e01002200000100160000001200000002000b0000004a000000010000000700 ..."..................J........... +4203 5.693059444 10.100.0.48:14330 10.100.0.48:59183 2799117823 51 04010033004a0100e30b000900080b0000004a000000e40b0000001700000000 ...3.J............J............................. +4306 5.776494026 10.100.0.48:59183 10.100.0.48:14330 73395557 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +4322 5.784511566 10.100.0.48:14330 10.100.0.48:59183 2799117874 51 04010033004a0100e30b0008080c0000004a00000000e40b0000001800000000 ...3.J...........J.............................. +4324 5.784819126 10.100.0.48:59183 10.100.0.48:14330 73395591 8000 01041f4000000100160000001200000002000c0000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +4326 5.785009623 10.100.0.48:59183 10.100.0.48:14330 73403591 8000 01041f400000020020004c006f0067006900630061006c00490064002c000d00 ...@.... .L.o.g.i.c.a.l.I.d.,..... . . . . . . . +4328 5.785080433 10.100.0.48:59183 10.100.0.48:14330 73411591 86 01010056000003002000230064006900660066003b000d000a00200020002000 ...V.... .#.d.i.f.f.;..... . . . .D.R.O.P. .T.A. +4477 5.861456871 10.100.0.48:14330 10.100.0.48:59183 2799117925 21 04010015004a0100fd0000de000000000000000000 .....J............... +4481 5.861809731 10.100.0.48:59183 10.100.0.48:14330 73411677 328 0101014800000100160000001200000002000c0000004a000000010000004900 ...H..................J.......I.N.S.E.R.T. .I.N. +4484 5.870629072 10.100.0.48:14330 10.100.0.48:59183 2799117946 21 04010015004a0100fd1000c3000100000000000000 .....J............... +4486 5.870862246 10.100.0.48:59183 10.100.0.48:14330 73412005 34 0e01002200000100160000001200000002000c0000004a000000010000000700 ..."..................J........... +4517 5.892364502 10.100.0.48:14330 10.100.0.48:59183 2799117967 51 04010033004a0100e30b000900080c0000004a000000e40b0000001900000000 ...3.J............J............................. +4520 5.895878315 10.100.0.48:59183 10.100.0.48:14330 73412039 286 0101011e00000100160000001200000002000000000000000000010000004400 ..............................D.E.C.L.A.R.E. .@. +4524 5.911799669 10.100.0.48:14330 10.100.0.48:59183 2799118018 140 0401008c004a0100ff1100c1000100000000000000ff0100c000000000000000 .....J.......................................... +4967 6.549761772 10.100.0.48:59183 10.100.0.48:14330 73412325 1307 0309051b0000010016000000120000000200000000000000000001000000ffff .......................................V.....4V. +4969 6.597749233 10.100.0.48:14330 10.100.0.48:59183 2799118158 45 0401002d004a0100e30300120000ff0100ba0000000000000000007900000000 ...-.J.....................y................. +5103 7.056434155 10.100.0.48:59183 10.100.0.48:14330 73413632 1034 0309040a0000010016000000120000000200000000000000000001000000ffff .......................................$.....4$. +5127 7.143168688 10.100.0.48:14330 10.100.0.48:59183 2799118203 127 0401007f004a0100e30300120000ff0100ba0000000000000000008101000000 .....J..................................G.e.n.e. +5194 7.349014282 10.100.0.48:59183 10.100.0.48:14330 73414666 969 030903c90000010016000000120000000200000000000000000001000000ffff .............................................4.. +5202 7.390043974 10.100.0.48:14330 10.100.0.48:59183 2799118330 118 04010076004a0100e30300120000ff0100ba0000000000000000008101000000 ...v.J................................$..N.a.m.e +5222 7.462062359 10.100.0.48:59183 10.100.0.48:14330 73415635 771 030903030000010016000000120000000200000000000000000001000000ffff .............................................4.. +5258 7.495661497 10.100.0.48:14330 10.100.0.48:59183 2799118448 114 04010072004a0100e30300120000ff0100ba0000000000000000008101000000 ...r.J................................$..U.n.s.A +5293 7.552677631 10.100.0.48:59183 10.100.0.48:14330 73416406 799 0309031f0000010016000000120000000200000000000000000001000000ffff .............................................4.. +5295 7.584816933 10.100.0.48:14330 10.100.0.48:59183 2799118562 114 04010072004a0100e30300120000ff0100ba0000000000000000008101000000 ...r.J................................$..U.n.s.L +5325 7.677649260 10.100.0.48:59183 10.100.0.48:14330 73417205 1241 030904d90000010016000000120000000200000000000000000001000000ffff .......................................f.....4f. +5329 7.753214359 10.100.0.48:14330 10.100.0.48:59183 2799118676 128 04010080004a0100e30300120000ff0100ba0000000000000000008101000000 .....J................................$..D.r.i.v +5389 7.900443316 10.100.0.48:59183 10.100.0.48:14330 73418446 2411 0309096b0000010016000000120000000200000000000000000001000000ffff ...k...................................\.....4\. +5414 7.992616177 10.100.0.48:14330 10.100.0.48:59183 2799118804 118 04010076004a0100e30300120000ff0100ba0000000000000000008101000000 ...v.J................................$..E.q.u.i +5508 8.232535124 10.100.0.48:59183 10.100.0.48:14330 73420857 605 0309025d0000010016000000120000000200000000000000000001000000ffff ...].........................................4.. +5524 8.306741238 10.100.0.48:14330 10.100.0.48:59183 2799118922 395 0401018b004a0100e3030012000081090000000000000010007f0c470065006e .....J.....................G.e.n.e.r.a.t.i.o.n.I +5529 8.340185404 10.100.0.48:59183 10.100.0.48:14330 73421462 529 030902110000010016000000120000000200000000000000000001000000ffff .............................................4.. +5555 8.401041269 10.100.0.48:14330 10.100.0.48:59183 2799119317 426 040101aa004a0100e30300120000810800000000000000080024100e4e006100 .....J...................$..N.a.m.e.s.p.a.c.e.R. +5560 8.430480480 10.100.0.48:59183 10.100.0.48:14330 73421991 655 0309028f0000010016000000120000000200000000000000000001000000ffff .............................................4.. +5604 8.482312441 10.100.0.48:14330 10.100.0.48:59183 2799119743 593 04010251004a0100e30300120000810a00000000000000080024101344007200 ...Q.J...................$..D.r.i.v.e.r.I.n.s.t. +5606 8.506536007 10.100.0.48:59183 10.100.0.48:14330 73422646 499 030901f30000010016000000120000000200000000000000000001000000ffff .......................................|.....4|. +5609 8.543953180 10.100.0.48:14330 10.100.0.48:59183 2799120336 275 04010113004a0100e30300120000810700000000000000080024100b44006500 .....J...................$..D.e.v.i.c.e.R.o.w.I. +5613 8.565448999 10.100.0.48:59183 10.100.0.48:14330 73423145 447 030901bf0000010016000000120000000200000000000000000001000000ffff .......................................H.....4H. +5632 8.606214285 10.100.0.48:14330 10.100.0.48:59183 2799120611 326 04010146004a0100e30300120000810600000000000000080024100c55006e00 ...F.J...................$..U.n.s.A.r.e.a.R.o.w. +5634 8.622873545 10.100.0.48:59183 10.100.0.48:14330 73423592 447 030901bf0000010016000000120000000200000000000000000001000000ffff .......................................H.....4H. +5649 8.656695604 10.100.0.48:14330 10.100.0.48:59183 2799120937 354 04010162004a0100e30300120000810600000000000000080024100c55006e00 ...b.J...................$..U.n.s.L.i.n.e.R.o.w. +5659 8.676740170 10.100.0.48:59183 10.100.0.48:14330 73424039 1111 030904570000010016000000120000000200000000000000000001000000ffff ...W.........................................4.. +5677 8.725427866 10.100.0.48:14330 10.100.0.48:59183 2799121291 1037 0401040d004a0100e30300120000811600000000000000080024100e45007100 .....J...................$..E.q.u.i.p.m.e.n.t.R. +5684 8.747777462 10.100.0.48:59183 10.100.0.48:14330 73425150 705 030902c10000010016000000120000000200000000000000000001000000ffff .......................................J.....4J. +5728 8.797167778 10.100.0.48:14330 10.100.0.48:59183 2799122328 481 040101e1004a0100e30300120000810d00000000000000080024100854006100 .....J...................$..T.a.g.R.o.w.I.d..... +5730 8.818194866 10.100.0.48:59183 10.100.0.48:14330 73425855 483 030901e30000010016000000120000000200000000000000000001000000ffff .......................................l.....4l. +5732 8.845716715 10.100.0.48:14330 10.100.0.48:59183 2799122809 254 040100fe004a0100e30300120000810600000000000000080024100e50006f00 .....J...................$..P.o.l.l.G.r.o.u.p.R. +5756 8.924436808 10.100.0.48:59183 10.100.0.48:14330 73426338 1537 030906010000010016000000120000000200000000000000000001000000ffff .............................................4.. +5830 9.086843967 10.100.0.48:14330 10.100.0.48:59183 2799123063 854 04010356004a0100e30300120000811600000000000000080024100e45007100 ...V.J...................$..E.q.u.i.p.m.e.n.t.R. +5867 9.256372929 10.100.0.48:59183 10.100.0.48:14330 73427875 602 0109025a00000100160000001200000002000000000000000000010000005300 ...Z..........................S.E.L.E.C.T. .[.e. +5869 9.289780855 10.100.0.48:14330 10.100.0.48:59183 2799123917 415 0401019f004a0100e30300120000810b00000000000000080024100d52006500 .....J...................$..R.e.s.e.r.v.a.t.i.o. +5883 9.357961416 10.100.0.48:59183 10.100.0.48:14330 73428477 421 030901a50000010016000000120000000200000000000000000001000000ffff .............................................4.. +6218 10.534035921 10.100.0.48:14330 10.100.0.48:59183 2799124332 96 04010060004a0100e30300120000e30b000808170000004a00000000e30b0009 ...`.J.................J..............J......... +6232 10.592567444 10.100.0.48:59183 10.100.0.48:14330 73428898 309 030901350000010016000000120000000200000000000000000001000000ffff ...5.........................................4.. +6263 10.607269764 10.100.0.48:14330 10.100.0.48:59183 2799124428 98 04010062004a0100e303001200008101000000000000000800e720000904d000 ...b.J.................... .....4.S.t.a.t.u.s... +6266 10.648347855 10.100.0.48:59183 10.100.0.48:14330 73429207 429 030901ad0000010016000000120000000200000000000000000001000000ffff .............................................4.. +6383 11.154917717 10.100.0.48:14330 10.100.0.48:59183 2799124526 96 04010060004a0100e30300120000e30b0008081e0000004a00000000e30b0009 ...`.J.................J..............J......... +6427 11.221432209 10.100.0.48:59183 10.100.0.48:14330 73429636 258 0109010200000100160000001200000002000000000000000000010000005300 ..............................S.E.L.E.C.T. .C.O. +6431 11.245208979 10.100.0.48:14330 10.100.0.48:59183 2799124622 47 0401002f004a0100e303001200008101000000000000000100260400d1040100 .../.J...................&..................... +6433 11.260951757 10.100.0.48:59183 10.100.0.48:14330 73429894 260 0109010400000100160000001200000002000000000000000000010000005300 ..............................S.E.L.E.C.T. .C.O. +6447 11.282230377 10.100.0.48:14330 10.100.0.48:59183 2799124669 47 0401002f004a0100e303001200008101000000000000000100260400d1040100 .../.J...................&..................... +7683 0.000000000 10.100.0.48:59207 10.100.0.48:14330 259659860 94 1201005e00000100000024000601002a000102002b000103002c000404003000 ...^......$....*....+....,....0....1.$..U.....b. +7709 0.082264185 10.100.0.48:14330 10.100.0.48:59207 1275875762 54 0401003600000100000024000601002a000102002b000103002c000004002c00 ...6......$....*....+....,....,....-....-....... +7711 0.083527565 10.100.0.48:59207 10.100.0.48:14330 259659954 339 1201015300000000160303014601000142030369ec536a73998b12312818879b ...S........F...B..i.Sjs...1(......U.B{......../ +7715 0.112985611 10.100.0.48:14330 10.100.0.48:59207 1275875816 1514 120105ea0000000016030300410200003d03035362caa0cee35f38ab612fc96c ............A...=..Sb...._8.a/.lq./d....J.-...?) +7717 0.116347790 10.100.0.48:59207 10.100.0.48:14330 259660293 101 12010065000000001603030025100000212025f1e8503a8cfff301c2596175aa ...e........%...! %..P:.....Yau..OI%..4[....E..` +7719 0.126295328 10.100.0.48:14330 10.100.0.48:59207 1275877330 234 120100ea0000000016030300aa040000a600001c2000a0e7ed514b35698b1730 .................... ....QK5i..0.T.}K.q0_3.j9ci. +7763 0.193289518 10.100.0.48:59207 10.100.0.48:14330 259660394 548 170303021f0000000000000001d13159eb3ff66f8c4a119f5d58c8dd6ddbe495 ..............1Y.?.o.J..]X..m....UM.O..#..,..... +7775 0.230210304 10.100.0.48:14330 10.100.0.48:59207 1275877564 655 0401028f004a0100e3730001324f0074004f00700063005500610050006f006c .....J...s..2O.t.O.p.c.U.a.P.o.l.l.e.r.T.e.s.t._ +7777 0.230799675 10.100.0.48:59207 10.100.0.48:14330 259660942 46 0101002e00000100160000001200000002000000000000000000010000005300 ..............................S.E.L.E.C.T. .1. +7789 0.253067017 10.100.0.48:14330 10.100.0.48:59207 1275878219 39 04010027004a010081010000000000000020003800d101000000fd1000c10001 ...'.J........... .8................... +7791 0.253499746 10.100.0.48:59207 10.100.0.48:14330 259660988 328 0109014800000100160000001200000002000000000000000000010000004400 ...H..........................D.E.C.L.A.R.E. .@. +7816 0.303385019 10.100.0.48:14330 10.100.0.48:59207 1275878258 211 040100d3004a0100e30300120000ff1100c1000100000000000000ff0100c000 .....J.......................................... +7818 0.316002607 10.100.0.48:59207 10.100.0.48:14330 259661316 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +7828 0.322433710 10.100.0.48:14330 10.100.0.48:59207 1275878469 51 04010033004a0100e30b000808010000004a00000000e40b0000000200000000 ...3.J...........J.............................. +7830 0.322740793 10.100.0.48:59207 10.100.0.48:14330 259661350 606 0101025e0000010016000000120000000200010000004a000000010000004900 ...^..................J.......I.F. .O.B.J.E.C.T. +7834 0.370976210 10.100.0.48:14330 10.100.0.48:59207 1275878520 34 04010022004a0100fd0100c0000000000000000000fd0000c600000000000000 ...".J............................ +7836 0.371261120 10.100.0.48:59207 10.100.0.48:14330 259661956 34 0e0100220000010016000000120000000200010000004a000000010000000700 ..."..................J........... +7850 0.393862009 10.100.0.48:14330 10.100.0.48:59207 1275878554 51 04010033004a0100e30b00090008010000004a000000e40b0000000300000000 ...3.J............J............................. +7852 0.394266605 10.100.0.48:59207 10.100.0.48:14330 259661990 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +7854 0.403190374 10.100.0.48:14330 10.100.0.48:59207 1275878605 51 04010033004a0100e30b000808020000004a00000000e40b0000000400000000 ...3.J...........J.............................. +7856 0.403500080 10.100.0.48:59207 10.100.0.48:14330 259662024 46 0101002e0000010016000000120000000200020000004a000000010000005300 ......................J.......S.E.L.E.C.T. .1. +7859 0.411527872 10.100.0.48:14330 10.100.0.48:59207 1275878656 39 04010027004a010081010000000000000020003800d101000000fd1000c10001 ...'.J........... .8................... +7861 0.411890507 10.100.0.48:59207 10.100.0.48:14330 259662070 120 010100780000010016000000120000000200020000004a000000010000005300 ...x..................J.......S.E.L.E.C.T. .O.B. +7863 0.420782089 10.100.0.48:14330 10.100.0.48:59207 1275878695 41 04010029004a01008101000000000000002100260400d10445aedb47fd1000c1 ...).J...........!.&....E..G............. +7865 0.421446323 10.100.0.48:59207 10.100.0.48:14330 259662190 216 010100d80000010016000000120000000200020000004a000000010000005300 ......................J.......S.E.L.E.C.T. .[.M. +7897 0.482412338 10.100.0.48:14330 10.100.0.48:59207 1275878736 111 0401006f004a01008102000000000000000800e72c010904d000340b4d006900 ...o.J..............,.....4.M.i.g.r.a.t.i.o.n.I. +7911 0.503174305 10.100.0.48:59207 10.100.0.48:14330 259662406 1106 010104520000010016000000120000000200020000004a000000010000004300 ...R..................J.......C.R.E.A.T.E. .T.A. +7922 0.524213076 10.100.0.48:14330 10.100.0.48:59207 1275878847 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7924 0.524451256 10.100.0.48:59207 10.100.0.48:14330 259663512 1356 0101054c0000010016000000120000000200020000004a000000010000004300 ...L..................J.......C.R.E.A.T.E. .T.A. +7926 0.549134731 10.100.0.48:14330 10.100.0.48:59207 1275878868 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7928 0.549406528 10.100.0.48:59207 10.100.0.48:14330 259664868 1524 010105f40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +7930 0.575304508 10.100.0.48:14330 10.100.0.48:59207 1275878889 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7932 0.575516701 10.100.0.48:59207 10.100.0.48:14330 259666392 1578 0101062a0000010016000000120000000200020000004a000000010000004300 ...*..................J.......C.R.E.A.T.E. .T.A. +7946 0.590787411 10.100.0.48:14330 10.100.0.48:59207 1275878910 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7949 0.591029882 10.100.0.48:59207 10.100.0.48:14330 259667970 1658 0101067a0000010016000000120000000200020000004a000000010000004300 ...z..................J.......C.R.E.A.T.E. .T.A. +7952 0.611319304 10.100.0.48:14330 10.100.0.48:59207 1275878931 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7954 0.611639500 10.100.0.48:59207 10.100.0.48:14330 259669628 1260 010104ec0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +7957 0.631503820 10.100.0.48:14330 10.100.0.48:59207 1275878952 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7959 0.631753445 10.100.0.48:59207 10.100.0.48:14330 259670888 1428 010105940000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +7963 0.650840759 10.100.0.48:14330 10.100.0.48:59207 1275878973 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7965 0.651105404 10.100.0.48:59207 10.100.0.48:14330 259672316 1278 010104fe0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +7967 0.673015356 10.100.0.48:14330 10.100.0.48:59207 1275878994 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7969 0.673281431 10.100.0.48:59207 10.100.0.48:14330 259673594 1838 0101072e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +7971 0.689386368 10.100.0.48:14330 10.100.0.48:59207 1275879015 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7973 0.689590693 10.100.0.48:59207 10.100.0.48:14330 259675432 2334 0101091e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +7987 0.708486795 10.100.0.48:14330 10.100.0.48:59207 1275879036 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7989 0.708764553 10.100.0.48:59207 10.100.0.48:14330 259677766 1488 010105d00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +7991 0.728748322 10.100.0.48:14330 10.100.0.48:59207 1275879057 21 04010015004a0100fd0000c6000000000000000000 .....J............... +7993 0.729004860 10.100.0.48:59207 10.100.0.48:14330 259679254 1264 010104f00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +8032 0.751743555 10.100.0.48:14330 10.100.0.48:59207 1275879078 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8034 0.751939297 10.100.0.48:59207 10.100.0.48:14330 259680518 1212 010104bc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +8040 0.769953251 10.100.0.48:14330 10.100.0.48:59207 1275879099 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8042 0.770178556 10.100.0.48:59207 10.100.0.48:14330 259681730 1694 0101069e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +8046 0.794746161 10.100.0.48:14330 10.100.0.48:59207 1275879120 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8048 0.795017481 10.100.0.48:59207 10.100.0.48:14330 259683424 1312 010105200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .T.A. +8062 0.814182520 10.100.0.48:14330 10.100.0.48:59207 1275879141 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8064 0.814426184 10.100.0.48:59207 10.100.0.48:14330 259684736 1030 010104060000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +8066 0.827435493 10.100.0.48:14330 10.100.0.48:59207 1275879162 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8068 0.827745199 10.100.0.48:59207 10.100.0.48:14330 259685766 210 010100d20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8070 0.837333679 10.100.0.48:14330 10.100.0.48:59207 1275879183 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8072 0.837599993 10.100.0.48:59207 10.100.0.48:14330 259685976 280 010101180000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8076 0.846700191 10.100.0.48:14330 10.100.0.48:59207 1275879204 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8078 0.846943855 10.100.0.48:59207 10.100.0.48:14330 259686256 226 010100e20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8081 0.855585814 10.100.0.48:14330 10.100.0.48:59207 1275879225 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8083 0.855777502 10.100.0.48:59207 10.100.0.48:14330 259686482 270 0101010e0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8085 0.866456509 10.100.0.48:14330 10.100.0.48:59207 1275879246 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8087 0.866712809 10.100.0.48:59207 10.100.0.48:14330 259686752 258 010101020000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8089 0.876124144 10.100.0.48:14330 10.100.0.48:59207 1275879267 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8091 0.876313210 10.100.0.48:59207 10.100.0.48:14330 259687010 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8093 0.884708166 10.100.0.48:14330 10.100.0.48:59207 1275879288 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8095 0.884941816 10.100.0.48:59207 10.100.0.48:14330 259687240 262 010101060000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8097 0.894673109 10.100.0.48:14330 10.100.0.48:59207 1275879309 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8099 0.894867897 10.100.0.48:59207 10.100.0.48:14330 259687502 322 010101420000010016000000120000000200020000004a000000010000004300 ...B..................J.......C.R.E.A.T.E. .I.N. +8113 0.903931379 10.100.0.48:14330 10.100.0.48:59207 1275879330 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8115 0.904112816 10.100.0.48:59207 10.100.0.48:14330 259687824 232 010100e80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8117 0.913193464 10.100.0.48:14330 10.100.0.48:59207 1275879351 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8119 0.913430214 10.100.0.48:59207 10.100.0.48:14330 259688056 276 010101140000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8121 0.923341990 10.100.0.48:14330 10.100.0.48:59207 1275879372 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8123 0.923564672 10.100.0.48:59207 10.100.0.48:14330 259688332 218 010100da0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8125 0.931943655 10.100.0.48:14330 10.100.0.48:59207 1275879393 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8127 0.932122469 10.100.0.48:59207 10.100.0.48:14330 259688550 280 010101180000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8129 0.939720869 10.100.0.48:14330 10.100.0.48:59207 1275879414 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8131 0.939901352 10.100.0.48:59207 10.100.0.48:14330 259688830 188 010100bc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8133 0.948790312 10.100.0.48:14330 10.100.0.48:59207 1275879435 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8135 0.949019432 10.100.0.48:59207 10.100.0.48:14330 259689018 238 010100ee0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8138 0.957982779 10.100.0.48:14330 10.100.0.48:59207 1275879456 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8140 0.958176851 10.100.0.48:59207 10.100.0.48:14330 259689256 246 010100f60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8142 0.966528177 10.100.0.48:14330 10.100.0.48:59207 1275879477 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8144 0.966707706 10.100.0.48:59207 10.100.0.48:14330 259689502 344 010101580000010016000000120000000200020000004a000000010000004300 ...X..................J.......C.R.E.A.T.E. .U.N. +8146 0.976807356 10.100.0.48:14330 10.100.0.48:59207 1275879498 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8148 0.977010489 10.100.0.48:59207 10.100.0.48:14330 259689846 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8150 0.986914873 10.100.0.48:14330 10.100.0.48:59207 1275879519 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8152 0.987102747 10.100.0.48:59207 10.100.0.48:14330 259690076 212 010100d40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8154 0.995639086 10.100.0.48:14330 10.100.0.48:59207 1275879540 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8156 0.995819092 10.100.0.48:59207 10.100.0.48:14330 259690288 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8158 1.003005505 10.100.0.48:14330 10.100.0.48:59207 1275879561 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8162 1.003190756 10.100.0.48:59207 10.100.0.48:14330 259690518 258 010101020000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8175 1.011367083 10.100.0.48:14330 10.100.0.48:59207 1275879582 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8177 1.011570692 10.100.0.48:59207 10.100.0.48:14330 259690776 252 010100fc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8185 1.021226406 10.100.0.48:14330 10.100.0.48:59207 1275879603 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8187 1.021431446 10.100.0.48:59207 10.100.0.48:14330 259691028 250 010100fa0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8189 1.030145884 10.100.0.48:14330 10.100.0.48:59207 1275879624 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8191 1.030383348 10.100.0.48:59207 10.100.0.48:14330 259691278 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +8193 1.040252686 10.100.0.48:14330 10.100.0.48:59207 1275879645 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8195 1.040462494 10.100.0.48:59207 10.100.0.48:14330 259691582 234 010100ea0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8226 1.049989223 10.100.0.48:14330 10.100.0.48:59207 1275879666 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8228 1.050208569 10.100.0.48:59207 10.100.0.48:14330 259691816 224 010100e00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8230 1.059962749 10.100.0.48:14330 10.100.0.48:59207 1275879687 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8232 1.060235977 10.100.0.48:59207 10.100.0.48:14330 259692040 306 010101320000010016000000120000000200020000004a000000010000004300 ...2..................J.......C.R.E.A.T.E. .U.N. +8235 1.068888426 10.100.0.48:14330 10.100.0.48:59207 1275879708 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8237 1.069118023 10.100.0.48:59207 10.100.0.48:14330 259692346 168 010100a80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8239 1.079504728 10.100.0.48:14330 10.100.0.48:59207 1275879729 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8241 1.079706192 10.100.0.48:59207 10.100.0.48:14330 259692514 218 010100da0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8243 1.088518858 10.100.0.48:14330 10.100.0.48:59207 1275879750 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8245 1.088738918 10.100.0.48:59207 10.100.0.48:14330 259692732 258 010101020000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8249 1.099977016 10.100.0.48:14330 10.100.0.48:59207 1275879771 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8251 1.100181341 10.100.0.48:59207 10.100.0.48:14330 259692990 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +8265 1.111048222 10.100.0.48:14330 10.100.0.48:59207 1275879792 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8267 1.111300707 10.100.0.48:59207 10.100.0.48:14330 259693294 346 0101015a0000010016000000120000000200020000004a000000010000004300 ...Z..................J.......C.R.E.A.T.E. .U.N. +8269 1.121154308 10.100.0.48:14330 10.100.0.48:59207 1275879813 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8271 1.121404886 10.100.0.48:59207 10.100.0.48:14330 259693640 248 010100f80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8278 1.135170937 10.100.0.48:14330 10.100.0.48:59207 1275879834 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8280 1.135365009 10.100.0.48:59207 10.100.0.48:14330 259693888 210 010100d20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8297 1.145781279 10.100.0.48:14330 10.100.0.48:59207 1275879855 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8299 1.146024466 10.100.0.48:59207 10.100.0.48:14330 259694098 206 010100ce0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8311 1.158538818 10.100.0.48:14330 10.100.0.48:59207 1275879876 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8313 1.158777237 10.100.0.48:59207 10.100.0.48:14330 259694304 284 0101011c0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8316 1.178230286 10.100.0.48:14330 10.100.0.48:59207 1275879897 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8318 1.178466558 10.100.0.48:59207 10.100.0.48:14330 259694588 360 010101680000010016000000120000000200020000004a000000010000004300 ...h..................J.......C.R.E.A.T.E. .U.N. +8320 1.189386606 10.100.0.48:14330 10.100.0.48:59207 1275879918 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8322 1.189697266 10.100.0.48:59207 10.100.0.48:14330 259694948 288 010101200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .U.N. +8329 1.198904276 10.100.0.48:14330 10.100.0.48:59207 1275879939 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8331 1.199094772 10.100.0.48:59207 10.100.0.48:14330 259695236 230 010100e60000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8348 1.207750082 10.100.0.48:14330 10.100.0.48:59207 1275879960 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8350 1.207944870 10.100.0.48:59207 10.100.0.48:14330 259695466 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +8374 1.218682289 10.100.0.48:14330 10.100.0.48:59207 1275879981 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8376 1.218906879 10.100.0.48:59207 10.100.0.48:14330 259695770 164 010100a40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8389 1.232602835 10.100.0.48:14330 10.100.0.48:59207 1275880002 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8391 1.232836485 10.100.0.48:59207 10.100.0.48:14330 259695934 178 010100b20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8395 1.241790295 10.100.0.48:14330 10.100.0.48:59207 1275880023 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8397 1.242036343 10.100.0.48:59207 10.100.0.48:14330 259696112 244 010100f40000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8403 1.252502680 10.100.0.48:14330 10.100.0.48:59207 1275880044 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8405 1.252718210 10.100.0.48:59207 10.100.0.48:14330 259696356 266 0101010a0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8407 1.261373281 10.100.0.48:14330 10.100.0.48:59207 1275880065 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8409 1.261573792 10.100.0.48:59207 10.100.0.48:14330 259696622 304 010101300000010016000000120000000200020000004a000000010000004300 ...0..................J.......C.R.E.A.T.E. .U.N. +8415 1.274928331 10.100.0.48:14330 10.100.0.48:59207 1275880086 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8417 1.275151730 10.100.0.48:59207 10.100.0.48:14330 259696926 328 010101480000010016000000120000000200020000004a000000010000004300 ...H..................J.......C.R.E.A.T.E. .U.N. +8419 1.284925222 10.100.0.48:14330 10.100.0.48:59207 1275880107 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8422 1.285185814 10.100.0.48:59207 10.100.0.48:14330 259697254 256 010101000000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8426 1.294565678 10.100.0.48:14330 10.100.0.48:59207 1275880128 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8428 1.294752121 10.100.0.48:59207 10.100.0.48:14330 259697510 160 010100a00000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8430 1.302733183 10.100.0.48:14330 10.100.0.48:59207 1275880149 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8432 1.302923441 10.100.0.48:59207 10.100.0.48:14330 259697670 210 010100d20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8434 1.311928749 10.100.0.48:14330 10.100.0.48:59207 1275880170 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8438 1.312141418 10.100.0.48:59207 10.100.0.48:14330 259697880 248 010100f80000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8449 1.320715904 10.100.0.48:14330 10.100.0.48:59207 1275880191 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8451 1.320926666 10.100.0.48:59207 10.100.0.48:14330 259698128 288 010101200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .U.N. +8453 1.328402281 10.100.0.48:14330 10.100.0.48:59207 1275880212 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8455 1.328616619 10.100.0.48:59207 10.100.0.48:14330 259698416 204 010100cc0000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8457 1.337051868 10.100.0.48:14330 10.100.0.48:59207 1275880233 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8459 1.337309837 10.100.0.48:59207 10.100.0.48:14330 259698620 242 010100f20000010016000000120000000200020000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +8462 1.345909834 10.100.0.48:14330 10.100.0.48:59207 1275880254 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8465 1.346191645 10.100.0.48:59207 10.100.0.48:14330 259698862 288 010101200000010016000000120000000200020000004a000000010000004300 ... ..................J.......C.R.E.A.T.E. .U.N. +8496 1.361024141 10.100.0.48:14330 10.100.0.48:59207 1275880275 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8498 1.361298323 10.100.0.48:59207 10.100.0.48:14330 259699150 280 010101180000010016000000120000000200020000004a000000010000004900 ......................J.......I.N.S.E.R.T. .I.N. +8514 1.429566145 10.100.0.48:14330 10.100.0.48:59207 1275880296 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8516 1.429830313 10.100.0.48:59207 10.100.0.48:14330 259699430 34 0e0100220000010016000000120000000200020000004a000000010000000700 ..."..................J........... +8518 1.463762283 10.100.0.48:14330 10.100.0.48:59207 1275880317 51 04010033004a0100e30b00090008020000004a000000e40b0000000500000000 ...3.J............J............................. +8520 1.470216990 10.100.0.48:59207 10.100.0.48:14330 259699464 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8522 1.478077650 10.100.0.48:14330 10.100.0.48:59207 1275880368 51 04010033004a0100e30b000808030000004a00000000e40b0000000600000000 ...3.J...........J.............................. +8524 1.478302002 10.100.0.48:59207 10.100.0.48:14330 259699498 2000 010107d00000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +8526 1.496409893 10.100.0.48:14330 10.100.0.48:59207 1275880419 21 04010015004a0100fd0000de000000000000000000 .....J............... +8528 1.496604204 10.100.0.48:59207 10.100.0.48:14330 259701498 3206 01010c860000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +8537 1.513929844 10.100.0.48:14330 10.100.0.48:59207 1275880440 21 04010015004a0100fd0000de000000000000000000 .....J............... +8540 1.514159441 10.100.0.48:59207 10.100.0.48:14330 259704704 2820 01010b040000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +8554 1.527189493 10.100.0.48:14330 10.100.0.48:59207 1275880461 21 04010015004a0100fd0000de000000000000000000 .....J............... +8556 1.527438164 10.100.0.48:59207 10.100.0.48:14330 259707524 8000 01041f400000010016000000120000000200030000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +8558 1.527593851 10.100.0.48:59207 10.100.0.48:14330 259715524 12 0101000c000002000d000a00 ............ +8561 1.549309254 10.100.0.48:14330 10.100.0.48:59207 1275880482 21 04010015004a0100fd0000de000000000000000000 .....J............... +8563 1.549523592 10.100.0.48:59207 10.100.0.48:14330 259715536 4700 0101125c0000010016000000120000000200030000004a000000010000000d00 ...\..................J...........C.R.E.A.T.E. . +8565 1.566643476 10.100.0.48:14330 10.100.0.48:59207 1275880503 21 04010015004a0100fd0000de000000000000000000 .....J............... +8567 1.566887140 10.100.0.48:59207 10.100.0.48:14330 259720236 8000 01041f400000010016000000120000000200030000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +8569 1.567079544 10.100.0.48:59207 10.100.0.48:14330 259728236 244 010100f4000002006b0027002c002000400043006c0075007300740065007200 ........k.'.,. .@.C.l.u.s.t.e.r.I.d.,. .@.N.e.w. +8573 1.596598864 10.100.0.48:14330 10.100.0.48:59207 1275880524 21 04010015004a0100fd0000de000000000000000000 .....J............... +8575 1.596803904 10.100.0.48:59207 10.100.0.48:14330 259728480 7862 01011eb60000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +8577 1.614229679 10.100.0.48:14330 10.100.0.48:59207 1275880545 21 04010015004a0100fd0000de000000000000000000 .....J............... +8579 1.614466667 10.100.0.48:59207 10.100.0.48:14330 259736342 1964 010107ac0000010016000000120000000200030000004a000000010000000d00 ......................J...........C.R.E.A.T.E. . +8593 1.628537893 10.100.0.48:14330 10.100.0.48:59207 1275880566 21 04010015004a0100fd0000de000000000000000000 .....J............... +8595 1.628736734 10.100.0.48:59207 10.100.0.48:14330 259738306 286 0101011e0000010016000000120000000200030000004a000000010000004900 ......................J.......I.N.S.E.R.T. .I.N. +8597 1.636544943 10.100.0.48:14330 10.100.0.48:59207 1275880587 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8599 1.636849165 10.100.0.48:59207 10.100.0.48:14330 259738592 34 0e0100220000010016000000120000000200030000004a000000010000000700 ..."..................J........... +8608 1.657499790 10.100.0.48:14330 10.100.0.48:59207 1275880608 51 04010033004a0100e30b00090008030000004a000000e40b0000000700000000 ...3.J............J............................. +8628 1.663052082 10.100.0.48:59207 10.100.0.48:14330 259738626 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8630 1.669558287 10.100.0.48:14330 10.100.0.48:59207 1275880659 51 04010033004a0100e30b000808040000004a00000000e40b0000000800000000 ...3.J...........J.............................. +8632 1.669840813 10.100.0.48:59207 10.100.0.48:14330 259738660 358 010101660000010016000000120000000200040000004a000000010000000d00 ...f..................J...........I.F. .D.A.T.A. +8634 1.678626299 10.100.0.48:14330 10.100.0.48:59207 1275880710 34 04010022004a0100fd0100c0000000000000000000fd0000c000000000000000 ...".J............................ +8636 1.678834200 10.100.0.48:59207 10.100.0.48:14330 259739018 2292 010108f40000010016000000120000000200040000004a000000010000000d00 ......................J...........G.R.A.N.T. .E. +8644 1.695536613 10.100.0.48:14330 10.100.0.48:59207 1275880744 21 04010015004a0100fd0000fd000000000000000000 .....J............... +8646 1.695679426 10.100.0.48:59207 10.100.0.48:14330 259741310 292 010101240000010016000000120000000200040000004a000000010000004900 ...$..................J.......I.N.S.E.R.T. .I.N. +8648 1.704249382 10.100.0.48:14330 10.100.0.48:59207 1275880765 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8652 1.704488754 10.100.0.48:59207 10.100.0.48:14330 259741602 34 0e0100220000010016000000120000000200040000004a000000010000000700 ..."..................J........... +8662 1.726100445 10.100.0.48:14330 10.100.0.48:59207 1275880786 51 04010033004a0100e30b00090008040000004a000000e40b0000000900000000 ...3.J............J............................. +8679 1.741128206 10.100.0.48:59207 10.100.0.48:14330 259741636 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8685 1.749201298 10.100.0.48:14330 10.100.0.48:59207 1275880837 51 04010033004a0100e30b000808050000004a00000000e40b0000000a00000000 ...3.J...........J.............................. +8687 1.749446392 10.100.0.48:59207 10.100.0.48:14330 259741670 860 0101035c0000010016000000120000000200050000004a000000010000004300 ...\..................J.......C.R.E.A.T.E. .T.A. +8696 1.765997648 10.100.0.48:14330 10.100.0.48:59207 1275880888 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8698 1.766190529 10.100.0.48:59207 10.100.0.48:14330 259742530 198 010100c60000010016000000120000000200050000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8704 1.780374527 10.100.0.48:14330 10.100.0.48:59207 1275880909 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8706 1.780580044 10.100.0.48:59207 10.100.0.48:14330 259742728 180 010100b40000010016000000120000000200050000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8710 1.790295839 10.100.0.48:14330 10.100.0.48:59207 1275880930 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8712 1.790485382 10.100.0.48:59207 10.100.0.48:14330 259742908 292 010101240000010016000000120000000200050000004a000000010000004900 ...$..................J.......I.N.S.E.R.T. .I.N. +8714 1.800148010 10.100.0.48:14330 10.100.0.48:59207 1275880951 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8716 1.800367832 10.100.0.48:59207 10.100.0.48:14330 259743200 34 0e0100220000010016000000120000000200050000004a000000010000000700 ..."..................J........... +8718 1.819307327 10.100.0.48:14330 10.100.0.48:59207 1275880972 51 04010033004a0100e30b00090008050000004a000000e40b0000000b00000000 ...3.J............J............................. +8752 1.836599350 10.100.0.48:59207 10.100.0.48:14330 259743234 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8764 1.844408989 10.100.0.48:14330 10.100.0.48:59207 1275881023 51 04010033004a0100e30b000808060000004a00000000e40b0000000c00000000 ...3.J...........J.............................. +8766 1.844645977 10.100.0.48:59207 10.100.0.48:14330 259743268 1132 0101046c0000010016000000120000000200060000004a000000010000004300 ...l..................J.......C.R.E.A.T.E. .T.A. +8770 1.858683825 10.100.0.48:14330 10.100.0.48:59207 1275881074 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8772 1.858901978 10.100.0.48:59207 10.100.0.48:14330 259744400 238 010100ee0000010016000000120000000200060000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8775 1.869818211 10.100.0.48:14330 10.100.0.48:59207 1275881095 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8777 1.870103836 10.100.0.48:59207 10.100.0.48:14330 259744638 320 010101400000010016000000120000000200060000004a000000010000004900 ...@..................J.......I.N.S.E.R.T. .I.N. +8779 1.878106356 10.100.0.48:14330 10.100.0.48:59207 1275881116 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8781 1.878313065 10.100.0.48:59207 10.100.0.48:14330 259744958 34 0e0100220000010016000000120000000200060000004a000000010000000700 ..."..................J........... +8783 1.899130106 10.100.0.48:14330 10.100.0.48:59207 1275881137 51 04010033004a0100e30b00090008060000004a000000e40b0000000d00000000 ...3.J............J............................. +8785 1.916524410 10.100.0.48:59207 10.100.0.48:14330 259744992 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8787 1.924101830 10.100.0.48:14330 10.100.0.48:59207 1275881188 51 04010033004a0100e30b000808070000004a00000000e40b0000000e00000000 ...3.J...........J.............................. +8789 1.924330473 10.100.0.48:59207 10.100.0.48:14330 259745026 1060 010104240000010016000000120000000200070000004a000000010000004300 ...$..................J.......C.R.E.A.T.E. .T.A. +8803 1.942627907 10.100.0.48:14330 10.100.0.48:59207 1275881239 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8805 1.942909479 10.100.0.48:59207 10.100.0.48:14330 259746086 212 010100d40000010016000000120000000200070000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8807 1.954021454 10.100.0.48:14330 10.100.0.48:59207 1275881260 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8809 1.954335928 10.100.0.48:59207 10.100.0.48:14330 259746298 204 010100cc0000010016000000120000000200070000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8823 1.962984085 10.100.0.48:14330 10.100.0.48:59207 1275881281 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8825 1.963226080 10.100.0.48:59207 10.100.0.48:14330 259746502 320 010101400000010016000000120000000200070000004a000000010000004300 ...@..................J.......C.R.E.A.T.E. .U.N. +8839 1.972185850 10.100.0.48:14330 10.100.0.48:59207 1275881302 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8841 1.972397566 10.100.0.48:59207 10.100.0.48:14330 259746822 300 0101012c0000010016000000120000000200070000004a000000010000004900 ...,..................J.......I.N.S.E.R.T. .I.N. +8844 1.979793787 10.100.0.48:14330 10.100.0.48:59207 1275881323 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8846 1.980114698 10.100.0.48:59207 10.100.0.48:14330 259747122 34 0e0100220000010016000000120000000200070000004a000000010000000700 ..."..................J........... +8848 2.000545263 10.100.0.48:14330 10.100.0.48:59207 1275881344 51 04010033004a0100e30b00090008070000004a000000e40b0000000f00000000 ...3.J............J............................. +8878 2.065304279 10.100.0.48:59207 10.100.0.48:14330 259747156 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8880 2.074151039 10.100.0.48:14330 10.100.0.48:59207 1275881395 51 04010033004a0100e30b000808080000004a00000000e40b0000001000000000 ...3.J...........J.............................. +8882 2.074404001 10.100.0.48:59207 10.100.0.48:14330 259747190 176 010100b00000010016000000120000000200080000004a000000010000004100 ......................J.......A.L.T.E.R. .T.A.B. +8885 2.088680506 10.100.0.48:14330 10.100.0.48:59207 1275881446 21 04010015004a0100fd0000d8000000000000000000 .....J............... +8887 2.089053869 10.100.0.48:59207 10.100.0.48:14330 259747366 340 010101540000010016000000120000000200080000004a000000010000004100 ...T..................J.......A.L.T.E.R. .T.A.B. +8891 2.104969978 10.100.0.48:14330 10.100.0.48:59207 1275881467 21 04010015004a0100fd0000d8000000000000000000 .....J............... +8893 2.105199337 10.100.0.48:59207 10.100.0.48:14330 259747706 320 010101400000010016000000120000000200080000004a000000010000004900 ...@..................J.......I.N.S.E.R.T. .I.N. +8895 2.112660885 10.100.0.48:14330 10.100.0.48:59207 1275881488 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8897 2.112876654 10.100.0.48:59207 10.100.0.48:14330 259748026 34 0e0100220000010016000000120000000200080000004a000000010000000700 ..."..................J........... +8899 2.138915539 10.100.0.48:14330 10.100.0.48:59207 1275881509 51 04010033004a0100e30b00090008080000004a000000e40b0000001100000000 ...3.J............J............................. +8913 2.160892010 10.100.0.48:59207 10.100.0.48:14330 259748060 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8915 2.168782711 10.100.0.48:14330 10.100.0.48:59207 1275881560 51 04010033004a0100e30b000808090000004a00000000e40b0000001200000000 ...3.J...........J.............................. +8917 2.169085026 10.100.0.48:59207 10.100.0.48:14330 259748094 842 0101034a0000010016000000120000000200090000004a000000010000004300 ...J..................J.......C.R.E.A.T.E. .T.A. +8919 2.180991650 10.100.0.48:14330 10.100.0.48:59207 1275881611 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8921 2.181300402 10.100.0.48:59207 10.100.0.48:14330 259748936 2298 010108fa0000010016000000120000000200090000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +8924 2.195727587 10.100.0.48:14330 10.100.0.48:59207 1275881632 21 04010015004a0100fd0000c6000000000000000000 .....J............... +8926 2.196006060 10.100.0.48:59207 10.100.0.48:14330 259751234 264 010101080000010016000000120000000200090000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8928 2.206528187 10.100.0.48:14330 10.100.0.48:59207 1275881653 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8930 2.206754208 10.100.0.48:59207 10.100.0.48:14330 259751498 192 010100c00000010016000000120000000200090000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +8932 2.216496229 10.100.0.48:14330 10.100.0.48:59207 1275881674 21 04010015004a0100fd0000c8000000000000000000 .....J............... +8934 2.216788530 10.100.0.48:59207 10.100.0.48:14330 259751690 300 0101012c0000010016000000120000000200090000004a000000010000004900 ...,..................J.......I.N.S.E.R.T. .I.N. +8936 2.224227905 10.100.0.48:14330 10.100.0.48:59207 1275881695 21 04010015004a0100fd1000c3000100000000000000 .....J............... +8938 2.224477530 10.100.0.48:59207 10.100.0.48:14330 259751990 34 0e0100220000010016000000120000000200090000004a000000010000000700 ..."..................J........... +8956 2.246111393 10.100.0.48:14330 10.100.0.48:59207 1275881716 51 04010033004a0100e30b00090008090000004a000000e40b0000001300000000 ...3.J............J............................. +8960 2.256213665 10.100.0.48:59207 10.100.0.48:14330 259752024 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +8962 2.263784885 10.100.0.48:14330 10.100.0.48:59207 1275881767 51 04010033004a0100e30b0008080a0000004a00000000e40b0000001400000000 ...3.J...........J.............................. +8964 2.264066935 10.100.0.48:59207 10.100.0.48:14330 259752058 8000 01041f4000000100160000001200000002000a0000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +8966 2.264250278 10.100.0.48:59207 10.100.0.48:14330 259760058 2530 010109e200000200690065006400200076006900610020004300480045004300 ........i.e.d. .v.i.a. .C.H.E.C.K.S.U.M. .o.n. . +9006 2.287417173 10.100.0.48:14330 10.100.0.48:59207 1275881818 21 04010015004a0100fd0000de000000000000000000 .....J............... +9008 2.287834644 10.100.0.48:59207 10.100.0.48:14330 259762588 330 0101014a00000100160000001200000002000a0000004a000000010000004900 ...J..................J.......I.N.S.E.R.T. .I.N. +9012 2.296239853 10.100.0.48:14330 10.100.0.48:59207 1275881839 21 04010015004a0100fd1000c3000100000000000000 .....J............... +9014 2.296458006 10.100.0.48:59207 10.100.0.48:14330 259762918 34 0e01002200000100160000001200000002000a0000004a000000010000000700 ..."..................J........... +9162 2.316397905 10.100.0.48:14330 10.100.0.48:59207 1275881860 51 04010033004a0100e30b000900080a0000004a000000e40b0000001500000000 ...3.J............J............................. +9250 2.362773657 10.100.0.48:59207 10.100.0.48:14330 259762952 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +9252 2.371930122 10.100.0.48:14330 10.100.0.48:59207 1275881911 51 04010033004a0100e30b0008080b0000004a00000000e40b0000001600000000 ...3.J...........J.............................. +9254 2.372182369 10.100.0.48:59207 10.100.0.48:14330 259762986 1118 0101045e00000100160000001200000002000b0000004a000000010000004300 ...^..................J.......C.R.E.A.T.E. .T.A. +9256 2.389897823 10.100.0.48:14330 10.100.0.48:59207 1275881962 21 04010015004a0100fd0000c6000000000000000000 .....J............... +9258 2.390119791 10.100.0.48:59207 10.100.0.48:14330 259764104 2002 010107d200000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +9261 2.415052176 10.100.0.48:14330 10.100.0.48:59207 1275881983 21 04010015004a0100fd0000c6000000000000000000 .....J............... +9263 2.415350437 10.100.0.48:59207 10.100.0.48:14330 259766106 1700 010106a400000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .T.A. +9265 2.431704044 10.100.0.48:14330 10.100.0.48:59207 1275882004 21 04010015004a0100fd0000c6000000000000000000 .....J............... +9267 2.431955099 10.100.0.48:59207 10.100.0.48:14330 259767806 1860 0101074400000100160000001200000002000b0000004a000000010000004300 ...D..................J.......C.R.E.A.T.E. .T.A. +9311 2.454698563 10.100.0.48:14330 10.100.0.48:59207 1275882025 21 04010015004a0100fd0000c6000000000000000000 .....J............... +9313 2.454949379 10.100.0.48:59207 10.100.0.48:14330 259769666 214 010100d600000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +9315 2.466876030 10.100.0.48:14330 10.100.0.48:59207 1275882046 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9317 2.467096806 10.100.0.48:59207 10.100.0.48:14330 259769880 280 0101011800000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +9319 2.476027489 10.100.0.48:14330 10.100.0.48:59207 1275882067 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9321 2.476221561 10.100.0.48:59207 10.100.0.48:14330 259770160 248 010100f800000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +9323 2.484555960 10.100.0.48:14330 10.100.0.48:59207 1275882088 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9325 2.484760046 10.100.0.48:59207 10.100.0.48:14330 259770408 280 0101011800000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +9327 2.493357658 10.100.0.48:14330 10.100.0.48:59207 1275882109 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9329 2.493549585 10.100.0.48:59207 10.100.0.48:14330 259770688 336 0101015000000100160000001200000002000b0000004a000000010000004300 ...P..................J.......C.R.E.A.T.E. .U.N. +9331 2.502557278 10.100.0.48:14330 10.100.0.48:59207 1275882130 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9333 2.502790213 10.100.0.48:59207 10.100.0.48:14330 259771024 218 010100da00000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .I.N. +9335 2.511036873 10.100.0.48:14330 10.100.0.48:59207 1275882151 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9337 2.511275053 10.100.0.48:59207 10.100.0.48:14330 259771242 268 0101010c00000100160000001200000002000b0000004a000000010000004300 ......................J.......C.R.E.A.T.E. .U.N. +9347 2.519675255 10.100.0.48:14330 10.100.0.48:59207 1275882172 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9350 2.519860268 10.100.0.48:59207 10.100.0.48:14330 259771510 312 0101013800000100160000001200000002000b0000004a000000010000004300 ...8..................J.......C.R.E.A.T.E. .U.N. +9352 2.534591436 10.100.0.48:14330 10.100.0.48:59207 1275882193 21 04010015004a0100fd0000c8000000000000000000 .....J............... +9354 2.534778118 10.100.0.48:59207 10.100.0.48:14330 259771822 302 0101012e00000100160000001200000002000b0000004a000000010000004900 ......................J.......I.N.S.E.R.T. .I.N. +9356 2.541744471 10.100.0.48:14330 10.100.0.48:59207 1275882214 21 04010015004a0100fd1000c3000100000000000000 .....J............... +9358 2.542031765 10.100.0.48:59207 10.100.0.48:14330 259772124 34 0e01002200000100160000001200000002000b0000004a000000010000000700 ..."..................J........... +9372 2.560569763 10.100.0.48:14330 10.100.0.48:59207 1275882235 51 04010033004a0100e30b000900080b0000004a000000e40b0000001700000000 ...3.J............J............................. +9374 2.569204330 10.100.0.48:59207 10.100.0.48:14330 259772158 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +9405 2.577479601 10.100.0.48:14330 10.100.0.48:59207 1275882286 51 04010033004a0100e30b0008080c0000004a00000000e40b0000001800000000 ...3.J...........J.............................. +9407 2.577742338 10.100.0.48:59207 10.100.0.48:14330 259772192 8000 01041f4000000100160000001200000002000c0000004a000000010000000d00 ...@..................J...........C.R.E.A.T.E. . +9409 2.577924490 10.100.0.48:59207 10.100.0.48:14330 259780192 8000 01041f400000020020004c006f0067006900630061006c00490064002c000d00 ...@.... .L.o.g.i.c.a.l.I.d.,..... . . . . . . . +9411 2.578082800 10.100.0.48:59207 10.100.0.48:14330 259788192 86 01010056000003002000230064006900660066003b000d000a00200020002000 ...V.... .#.d.i.f.f.;..... . . . .D.R.O.P. .T.A. +9419 2.615613937 10.100.0.48:14330 10.100.0.48:59207 1275882337 21 04010015004a0100fd0000de000000000000000000 .....J............... +9421 2.615818024 10.100.0.48:59207 10.100.0.48:14330 259788278 328 0101014800000100160000001200000002000c0000004a000000010000004900 ...H..................J.......I.N.S.E.R.T. .I.N. +9423 2.624762774 10.100.0.48:14330 10.100.0.48:59207 1275882358 21 04010015004a0100fd1000c3000100000000000000 .....J............... +9425 2.624996424 10.100.0.48:59207 10.100.0.48:14330 259788606 34 0e01002200000100160000001200000002000c0000004a000000010000000700 ..."..................J........... +9428 2.642868280 10.100.0.48:14330 10.100.0.48:59207 1275882379 51 04010033004a0100e30b000900080c0000004a000000e40b0000001900000000 ...3.J............J............................. +9430 2.643533230 10.100.0.48:59207 10.100.0.48:14330 259788640 286 0101011e00000100160000001200000002000000000000000000010000004400 ..............................D.E.C.L.A.R.E. .@. +9432 2.652514458 10.100.0.48:14330 10.100.0.48:59207 1275882430 140 0401008c004a0100ff1100c1000100000000000000ff0100c000000000000000 .....J.......................................... +9448 2.740476847 10.100.0.48:59207 10.100.0.48:14330 259788926 1182 0309049e0000010016000000120000000200000000000000000001000000ffff .............................................4.. +9470 2.775474310 10.100.0.48:14330 10.100.0.48:59207 1275882570 45 0401002d004a0100e30300120000ff0100ba0000000000000000007900000000 ...-.J.....................y................. +9472 2.788396358 10.100.0.48:59207 10.100.0.48:14330 259790108 592 0109025000000100160000001200000002000000000000000000010000005300 ...P..........................S.E.L.E.C.T. .[.c. +9476 2.800435781 10.100.0.48:14330 10.100.0.48:59207 1275882615 477 040101dd004a0100e30300120000810d000000000000000800e780000904d000 .....J..........................4.N.o.d.e.I.d... +9478 2.801627874 10.100.0.48:59207 10.100.0.48:14330 259790700 594 0109025200000100160000001200000002000000000000000000010000005300 ...R..........................S.E.L.E.C.T. .[.d. +9480 2.814137220 10.100.0.48:14330 10.100.0.48:59207 1275883092 518 04010206004a0100e303001200008109000000000000000800e780000904d000 .....J..........................4.D.r.i.v.e.r.I. +9482 2.822526693 10.100.0.48:59207 10.100.0.48:14330 259791294 550 0109022600000100160000001200000002000000000000000000010000005300 ...&..........................S.E.L.E.C.T. .[.c. +9484 2.840909004 10.100.0.48:14330 10.100.0.48:59207 1275883610 299 0401012b004a0100e303001200008107000000000000000800e780000904d000 ...+.J..........................4.N.o.d.e.I.d... +9486 2.844247103 10.100.0.48:59207 10.100.0.48:14330 259791844 592 0109025000000100160000001200000002000000000000000000010000005300 ...P..........................S.E.L.E.C.T. .[.c. +9490 2.853707314 10.100.0.48:14330 10.100.0.48:59207 1275883909 477 040101dd004a0100e30300120000810d000000000000000800e780000904d000 .....J..........................4.N.o.d.e.I.d... +9492 2.854671478 10.100.0.48:59207 10.100.0.48:14330 259792436 594 0109025200000100160000001200000002000000000000000000010000005300 ...R..........................S.E.L.E.C.T. .[.d. +9494 2.861248016 10.100.0.48:14330 10.100.0.48:59207 1275884386 518 04010206004a0100e303001200008109000000000000000800e780000904d000 .....J..........................4.D.r.i.v.e.r.I. +9496 2.866234064 10.100.0.48:59207 10.100.0.48:14330 259793030 550 0109022600000100160000001200000002000000000000000000010000005300 ...&..........................S.E.L.E.C.T. .[.c. +9510 2.873177290 10.100.0.48:14330 10.100.0.48:59207 1275884904 299 0401012b004a0100e303001200008107000000000000000800e780000904d000 ...+.J..........................4.N.o.d.e.I.d... +9536 2.893356085 10.100.0.48:59207 10.100.0.48:14330 259793580 608 0109026000000100160000001200000002000000000000000000010000005300 ...`..........................S.E.L.E.C.T. .T.O. +9538 2.913996458 10.100.0.48:14330 10.100.0.48:59207 1275885203 518 04010206004a0100e303001200008109000000000000000800e780000904d000 .....J..........................4.D.r.i.v.e.r.I. +9540 2.934294701 10.100.0.48:59207 10.100.0.48:14330 259794188 729 030902d90000010016000000120000000200000000000000000001000000ffff .............................................4.. +9542 2.967598438 10.100.0.48:14330 10.100.0.48:59207 1275885721 76 0401004c004a0100e30300120000ff0100ba0000000000000000008101000000 ...L.J.............................. .8......... +9556 2.978264570 10.100.0.48:59207 10.100.0.48:14330 259794917 592 0109025000000100160000001200000002000000000000000000010000005300 ...P..........................S.E.L.E.C.T. .[.c. +9558 2.985668182 10.100.0.48:14330 10.100.0.48:59207 1275885797 477 040101dd004a0100e30300120000810d000000000000000800e780000904d000 .....J..........................4.N.o.d.e.I.d... +9560 2.986703634 10.100.0.48:59207 10.100.0.48:14330 259795509 594 0109025200000100160000001200000002000000000000000000010000005300 ...R..........................S.E.L.E.C.T. .[.d. +9562 2.995977402 10.100.0.48:14330 10.100.0.48:59207 1275886274 525 0401020d004a0100e303001200008109000000000000000800e780000904d000 .....J..........................4.D.r.i.v.e.r.I. +9564 2.997370958 10.100.0.48:59207 10.100.0.48:14330 259796103 550 0109022600000100160000001200000002000000000000000000010000005300 ...&..........................S.E.L.E.C.T. .[.c. +9566 3.004230976 10.100.0.48:14330 10.100.0.48:59207 1275886799 299 0401012b004a0100e303001200008107000000000000000800e780000904d000 ...+.J..........................4.N.o.d.e.I.d... +1173 0.000000000 10.100.0.48:59182 10.100.0.48:14330 347947208 94 1201005e00000100000024000601002a000102002b000103002c000404003000 ...^......$....*....+....,....0....1.$..U.....b. +1187 0.058568239 10.100.0.48:14330 10.100.0.48:59182 3647127410 54 0401003600000100000024000601002a000102002b000103002c000004002c00 ...6......$....*....+....,....,....-....-....... +1189 0.059921265 10.100.0.48:59182 10.100.0.48:14330 347947302 339 1201015300000000160303014601000142030369ec535a752dd1fa10759c00d1 ...S........F...B..i.SZu-...u...x....);.0......E +1193 0.103504658 10.100.0.48:14330 10.100.0.48:59182 3647127464 1514 120105ea0000000016030300410200003d0303c318b1a693b959e37f1e83d10d ............A...=........Y........}fB...[.y....W +1195 0.106629848 10.100.0.48:59182 10.100.0.48:14330 347947641 101 1201006500000000160303002510000021207771a7ab22ea3f4f53020f69ee9e ...e........%...! wq..".?OS..i....y3......G....7 +1201 0.116092205 10.100.0.48:14330 10.100.0.48:59182 3647128978 234 120100ea0000000016030300aa040000a600001c2000a0e4bc6f8972c604d311 .................... ....o.r......y..-?..:.u.kbl +1203 0.118698835 10.100.0.48:59182 10.100.0.48:14330 347947742 548 170303021f000000000000000123bc1b42d10607790f96aeaa9a982da51c07b7 .............#..B...y......-.........D].p6_.fs.. +1221 0.155970335 10.100.0.48:14330 10.100.0.48:59182 3647129212 655 0401028f00490100e3730001324f0074004f00700063005500610050006f006c .....I...s..2O.t.O.p.c.U.a.P.o.l.l.e.r.T.e.s.t._ +1225 0.161464930 10.100.0.48:59182 10.100.0.48:14330 347948290 46 0101002e00000100160000001200000002000000000000000000010000005300 ..............................S.E.L.E.C.T. .1. +1258 0.211756229 10.100.0.48:14330 10.100.0.48:59182 3647129867 39 040100270049010081010000000000000020003800d101000000fd1000c10001 ...'.I........... .8................... +1287 0.303495646 10.100.0.48:59182 10.100.0.48:14330 347948336 328 0109014800000100160000001200000002000000000000000000010000004400 ...H..........................D.E.C.L.A.R.E. .@. +1327 0.443259954 10.100.0.48:14330 10.100.0.48:59182 3647129906 211 040100d300490100e30300120000ff1100c1000100000000000000ff0100c000 .....I.......................................... +1486 0.749988556 10.100.0.48:59182 10.100.0.48:14330 347948664 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +1502 0.760751486 10.100.0.48:14330 10.100.0.48:59182 3647130117 51 0401003300490100e30b000808010000004900000000e40b0000000200000000 ...3.I...........I.............................. +1508 0.775794983 10.100.0.48:59182 10.100.0.48:14330 347948698 606 0101025e00000100160000001200000002000100000049000000010000004900 ...^..................I.......I.F. .O.B.J.E.C.T. +1536 0.856812000 10.100.0.48:14330 10.100.0.48:59182 3647130168 34 0401002200490100fd0100c0000000000000000000fd0000c600000000000000 ...".I............................ +1551 0.865128040 10.100.0.48:59182 10.100.0.48:14330 347949304 34 0e01002200000100160000001200000002000100000049000000010000000700 ..."..................I........... +1565 0.885887623 10.100.0.48:14330 10.100.0.48:59182 3647130202 51 0401003300490100e30b000900080100000049000000e40b0000000300000000 ...3.I............I............................. +1568 0.917093039 10.100.0.48:59182 10.100.0.48:14330 347949338 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +1572 0.924514532 10.100.0.48:14330 10.100.0.48:59182 3647130253 51 0401003300490100e30b000808020000004900000000e40b0000000400000000 ...3.I...........I.............................. +1578 0.938615561 10.100.0.48:59182 10.100.0.48:14330 347949372 46 0101002e00000100160000001200000002000200000049000000010000005300 ......................I.......S.E.L.E.C.T. .1. +1580 0.945095778 10.100.0.48:14330 10.100.0.48:59182 3647130304 39 040100270049010081010000000000000020003800d101000000fd1000c10001 ...'.I........... .8................... +1586 0.950001001 10.100.0.48:59182 10.100.0.48:14330 347949418 120 0101007800000100160000001200000002000200000049000000010000005300 ...x..................I.......S.E.L.E.C.T. .O.B. +1588 0.961253166 10.100.0.48:14330 10.100.0.48:59182 3647130343 41 04010029004901008101000000000000002100260400d10445aedb47fd1000c1 ...).I...........!.&....E..G............. +1607 0.968474865 10.100.0.48:59182 10.100.0.48:14330 347949538 216 010100d800000100160000001200000002000200000049000000010000005300 ......................I.......S.E.L.E.C.T. .[.M. +1658 1.135138988 10.100.0.48:14330 10.100.0.48:59182 3647130384 111 0401006f004901008102000000000000000800e72c010904d000340b4d006900 ...o.I..............,.....4.M.i.g.r.a.t.i.o.n.I. +1813 1.538630247 10.100.0.48:59182 10.100.0.48:14330 347949754 1106 0101045200000100160000001200000002000200000049000000010000004300 ...R..................I.......C.R.E.A.T.E. .T.A. +1831 1.590314388 10.100.0.48:14330 10.100.0.48:59182 3647130495 21 0401001500490100fd0000c6000000000000000000 .....I............... +1835 1.592383146 10.100.0.48:59182 10.100.0.48:14330 347950860 1356 0101054c00000100160000001200000002000200000049000000010000004300 ...L..................I.......C.R.E.A.T.E. .T.A. +1845 1.646548510 10.100.0.48:14330 10.100.0.48:59182 3647130516 21 0401001500490100fd0000c6000000000000000000 .....I............... +1847 1.647086859 10.100.0.48:59182 10.100.0.48:14330 347952216 1524 010105f400000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +1867 1.691113472 10.100.0.48:14330 10.100.0.48:59182 3647130537 21 0401001500490100fd0000c6000000000000000000 .....I............... +1869 1.691702843 10.100.0.48:59182 10.100.0.48:14330 347953740 1578 0101062a00000100160000001200000002000200000049000000010000004300 ...*..................I.......C.R.E.A.T.E. .T.A. +1909 1.738963842 10.100.0.48:14330 10.100.0.48:59182 3647130558 21 0401001500490100fd0000c6000000000000000000 .....I............... +1911 1.739404917 10.100.0.48:59182 10.100.0.48:14330 347955318 1658 0101067a00000100160000001200000002000200000049000000010000004300 ...z..................I.......C.R.E.A.T.E. .T.A. +1931 1.801102400 10.100.0.48:14330 10.100.0.48:59182 3647130579 21 0401001500490100fd0000c6000000000000000000 .....I............... +1933 1.802551746 10.100.0.48:59182 10.100.0.48:14330 347956976 1260 010104ec00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +1939 1.834120035 10.100.0.48:14330 10.100.0.48:59182 3647130600 21 0401001500490100fd0000c6000000000000000000 .....I............... +1945 1.834901094 10.100.0.48:59182 10.100.0.48:14330 347958236 1428 0101059400000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +1951 1.869206429 10.100.0.48:14330 10.100.0.48:59182 3647130621 21 0401001500490100fd0000c6000000000000000000 .....I............... +1953 1.869787693 10.100.0.48:59182 10.100.0.48:14330 347959664 1278 010104fe00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +1975 1.902995825 10.100.0.48:14330 10.100.0.48:59182 3647130642 21 0401001500490100fd0000c6000000000000000000 .....I............... +1977 1.904310226 10.100.0.48:59182 10.100.0.48:14330 347960942 1838 0101072e00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +1983 1.947528124 10.100.0.48:14330 10.100.0.48:59182 3647130663 21 0401001500490100fd0000c6000000000000000000 .....I............... +1985 1.948202133 10.100.0.48:59182 10.100.0.48:14330 347962780 2334 0101091e00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +1997 1.990832567 10.100.0.48:14330 10.100.0.48:59182 3647130684 21 0401001500490100fd0000c6000000000000000000 .....I............... +1999 1.991120815 10.100.0.48:59182 10.100.0.48:14330 347965114 1488 010105d000000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +2046 2.040243626 10.100.0.48:14330 10.100.0.48:59182 3647130705 21 0401001500490100fd0000c6000000000000000000 .....I............... +2048 2.041251659 10.100.0.48:59182 10.100.0.48:14330 347966602 1264 010104f000000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +2054 2.080004930 10.100.0.48:14330 10.100.0.48:59182 3647130726 21 0401001500490100fd0000c6000000000000000000 .....I............... +2056 2.086324930 10.100.0.48:59182 10.100.0.48:14330 347967866 1212 010104bc00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +2084 2.142657280 10.100.0.48:14330 10.100.0.48:59182 3647130747 21 0401001500490100fd0000c6000000000000000000 .....I............... +2086 2.142968893 10.100.0.48:59182 10.100.0.48:14330 347969078 1694 0101069e00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +2094 2.177535057 10.100.0.48:14330 10.100.0.48:59182 3647130768 21 0401001500490100fd0000c6000000000000000000 .....I............... +2096 2.181731701 10.100.0.48:59182 10.100.0.48:14330 347970772 1312 0101052000000100160000001200000002000200000049000000010000004300 ... ..................I.......C.R.E.A.T.E. .T.A. +2114 2.208481312 10.100.0.48:14330 10.100.0.48:59182 3647130789 21 0401001500490100fd0000c6000000000000000000 .....I............... +2116 2.209531784 10.100.0.48:59182 10.100.0.48:14330 347972084 1030 0101040600000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +2120 2.229733467 10.100.0.48:14330 10.100.0.48:59182 3647130810 21 0401001500490100fd0000c6000000000000000000 .....I............... +2122 2.230366468 10.100.0.48:59182 10.100.0.48:14330 347973114 210 010100d200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2129 2.254424095 10.100.0.48:14330 10.100.0.48:59182 3647130831 21 0401001500490100fd0000c8000000000000000000 .....I............... +2134 2.254891634 10.100.0.48:59182 10.100.0.48:14330 347973324 280 0101011800000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2136 2.270557642 10.100.0.48:14330 10.100.0.48:59182 3647130852 21 0401001500490100fd0000c8000000000000000000 .....I............... +2142 2.272067308 10.100.0.48:59182 10.100.0.48:14330 347973604 226 010100e200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2148 2.283375740 10.100.0.48:14330 10.100.0.48:59182 3647130873 21 0401001500490100fd0000c8000000000000000000 .....I............... +2150 2.284186602 10.100.0.48:59182 10.100.0.48:14330 347973830 270 0101010e00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2152 2.295141220 10.100.0.48:14330 10.100.0.48:59182 3647130894 21 0401001500490100fd0000c8000000000000000000 .....I............... +2154 2.295380831 10.100.0.48:59182 10.100.0.48:14330 347974100 258 0101010200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2179 2.309531927 10.100.0.48:14330 10.100.0.48:59182 3647130915 21 0401001500490100fd0000c8000000000000000000 .....I............... +2190 2.310827732 10.100.0.48:59182 10.100.0.48:14330 347974358 230 010100e600000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2202 2.326100826 10.100.0.48:14330 10.100.0.48:59182 3647130936 21 0401001500490100fd0000c8000000000000000000 .....I............... +2208 2.326825619 10.100.0.48:59182 10.100.0.48:14330 347974588 262 0101010600000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2214 2.350043535 10.100.0.48:14330 10.100.0.48:59182 3647130957 21 0401001500490100fd0000c8000000000000000000 .....I............... +2216 2.353021860 10.100.0.48:59182 10.100.0.48:14330 347974850 322 0101014200000100160000001200000002000200000049000000010000004300 ...B..................I.......C.R.E.A.T.E. .I.N. +2222 2.370192051 10.100.0.48:14330 10.100.0.48:59182 3647130978 21 0401001500490100fd0000c8000000000000000000 .....I............... +2224 2.370839596 10.100.0.48:59182 10.100.0.48:14330 347975172 232 010100e800000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2232 2.383359432 10.100.0.48:14330 10.100.0.48:59182 3647130999 21 0401001500490100fd0000c8000000000000000000 .....I............... +2234 2.384423971 10.100.0.48:59182 10.100.0.48:14330 347975404 276 0101011400000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2246 2.400249243 10.100.0.48:14330 10.100.0.48:59182 3647131020 21 0401001500490100fd0000c8000000000000000000 .....I............... +2248 2.400626421 10.100.0.48:59182 10.100.0.48:14330 347975680 218 010100da00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2252 2.409144640 10.100.0.48:14330 10.100.0.48:59182 3647131041 21 0401001500490100fd0000c8000000000000000000 .....I............... +2255 2.409422398 10.100.0.48:59182 10.100.0.48:14330 347975898 280 0101011800000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2270 2.419015169 10.100.0.48:14330 10.100.0.48:59182 3647131062 21 0401001500490100fd0000c8000000000000000000 .....I............... +2275 2.419459820 10.100.0.48:59182 10.100.0.48:14330 347976178 188 010100bc00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2282 2.433112860 10.100.0.48:14330 10.100.0.48:59182 3647131083 21 0401001500490100fd0000c8000000000000000000 .....I............... +2284 2.435606241 10.100.0.48:59182 10.100.0.48:14330 347976366 238 010100ee00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2286 2.448253155 10.100.0.48:14330 10.100.0.48:59182 3647131104 21 0401001500490100fd0000c8000000000000000000 .....I............... +2292 2.449244976 10.100.0.48:59182 10.100.0.48:14330 347976604 246 010100f600000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2294 2.467061281 10.100.0.48:14330 10.100.0.48:59182 3647131125 21 0401001500490100fd0000c8000000000000000000 .....I............... +2302 2.468097448 10.100.0.48:59182 10.100.0.48:14330 347976850 344 0101015800000100160000001200000002000200000049000000010000004300 ...X..................I.......C.R.E.A.T.E. .U.N. +2304 2.483122826 10.100.0.48:14330 10.100.0.48:59182 3647131146 21 0401001500490100fd0000c8000000000000000000 .....I............... +2310 2.485330343 10.100.0.48:59182 10.100.0.48:14330 347977194 230 010100e600000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2312 2.500025034 10.100.0.48:14330 10.100.0.48:59182 3647131167 21 0401001500490100fd0000c8000000000000000000 .....I............... +2315 2.500333309 10.100.0.48:59182 10.100.0.48:14330 347977424 212 010100d400000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2330 2.515407801 10.100.0.48:14330 10.100.0.48:59182 3647131188 21 0401001500490100fd0000c8000000000000000000 .....I............... +2336 2.515795946 10.100.0.48:59182 10.100.0.48:14330 347977636 230 010100e600000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2340 2.526213169 10.100.0.48:14330 10.100.0.48:59182 3647131209 21 0401001500490100fd0000c8000000000000000000 .....I............... +2345 2.526989460 10.100.0.48:59182 10.100.0.48:14330 347977866 258 0101010200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2352 2.540316582 10.100.0.48:14330 10.100.0.48:59182 3647131230 21 0401001500490100fd0000c8000000000000000000 .....I............... +2354 2.540781736 10.100.0.48:59182 10.100.0.48:14330 347978124 252 010100fc00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2357 2.555037022 10.100.0.48:14330 10.100.0.48:59182 3647131251 21 0401001500490100fd0000c8000000000000000000 .....I............... +2362 2.556036472 10.100.0.48:59182 10.100.0.48:14330 347978376 250 010100fa00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2364 2.568954706 10.100.0.48:14330 10.100.0.48:59182 3647131272 21 0401001500490100fd0000c8000000000000000000 .....I............... +2370 2.570816278 10.100.0.48:59182 10.100.0.48:14330 347978626 304 0101013000000100160000001200000002000200000049000000010000004300 ...0..................I.......C.R.E.A.T.E. .U.N. +2376 2.587395668 10.100.0.48:14330 10.100.0.48:59182 3647131293 21 0401001500490100fd0000c8000000000000000000 .....I............... +2378 2.587727785 10.100.0.48:59182 10.100.0.48:14330 347978930 234 010100ea00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2386 2.607691526 10.100.0.48:14330 10.100.0.48:59182 3647131314 21 0401001500490100fd0000c8000000000000000000 .....I............... +2388 2.608775854 10.100.0.48:59182 10.100.0.48:14330 347979164 224 010100e000000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2435 2.622882128 10.100.0.48:14330 10.100.0.48:59182 3647131335 21 0401001500490100fd0000c8000000000000000000 .....I............... +2437 2.623158932 10.100.0.48:59182 10.100.0.48:14330 347979388 306 0101013200000100160000001200000002000200000049000000010000004300 ...2..................I.......C.R.E.A.T.E. .U.N. +2451 2.640167236 10.100.0.48:14330 10.100.0.48:59182 3647131356 21 0401001500490100fd0000c8000000000000000000 .....I............... +2453 2.640426159 10.100.0.48:59182 10.100.0.48:14330 347979694 168 010100a800000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2461 2.696104527 10.100.0.48:14330 10.100.0.48:59182 3647131377 21 0401001500490100fd0000c8000000000000000000 .....I............... +2467 2.696865559 10.100.0.48:59182 10.100.0.48:14330 347979862 218 010100da00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2470 2.715220690 10.100.0.48:14330 10.100.0.48:59182 3647131398 21 0401001500490100fd0000c8000000000000000000 .....I............... +2475 2.716610670 10.100.0.48:59182 10.100.0.48:14330 347980080 258 0101010200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2491 2.726717234 10.100.0.48:14330 10.100.0.48:59182 3647131419 21 0401001500490100fd0000c8000000000000000000 .....I............... +2493 2.727059603 10.100.0.48:59182 10.100.0.48:14330 347980338 304 0101013000000100160000001200000002000200000049000000010000004300 ...0..................I.......C.R.E.A.T.E. .U.N. +2499 2.739179611 10.100.0.48:14330 10.100.0.48:59182 3647131440 21 0401001500490100fd0000c8000000000000000000 .....I............... +2501 2.740060091 10.100.0.48:59182 10.100.0.48:14330 347980642 346 0101015a00000100160000001200000002000200000049000000010000004300 ...Z..................I.......C.R.E.A.T.E. .U.N. +2507 2.748435497 10.100.0.48:14330 10.100.0.48:59182 3647131461 21 0401001500490100fd0000c8000000000000000000 .....I............... +2509 2.749209642 10.100.0.48:59182 10.100.0.48:14330 347980988 248 010100f800000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2515 2.760097504 10.100.0.48:14330 10.100.0.48:59182 3647131482 21 0401001500490100fd0000c8000000000000000000 .....I............... +2517 2.760604143 10.100.0.48:59182 10.100.0.48:14330 347981236 210 010100d200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2519 2.769516230 10.100.0.48:14330 10.100.0.48:59182 3647131503 21 0401001500490100fd0000c8000000000000000000 .....I............... +2521 2.769753218 10.100.0.48:59182 10.100.0.48:14330 347981446 206 010100ce00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2531 2.781002522 10.100.0.48:14330 10.100.0.48:59182 3647131524 21 0401001500490100fd0000c8000000000000000000 .....I............... +2533 2.781258345 10.100.0.48:59182 10.100.0.48:14330 347981652 284 0101011c00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2535 2.792135000 10.100.0.48:14330 10.100.0.48:59182 3647131545 21 0401001500490100fd0000c8000000000000000000 .....I............... +2540 2.792607069 10.100.0.48:59182 10.100.0.48:14330 347981936 360 0101016800000100160000001200000002000200000049000000010000004300 ...h..................I.......C.R.E.A.T.E. .U.N. +2543 2.806876183 10.100.0.48:14330 10.100.0.48:59182 3647131566 21 0401001500490100fd0000c8000000000000000000 .....I............... +2549 2.807452917 10.100.0.48:59182 10.100.0.48:14330 347982296 288 0101012000000100160000001200000002000200000049000000010000004300 ... ..................I.......C.R.E.A.T.E. .U.N. +2552 2.822163820 10.100.0.48:14330 10.100.0.48:59182 3647131587 21 0401001500490100fd0000c8000000000000000000 .....I............... +2558 2.824334145 10.100.0.48:59182 10.100.0.48:14330 347982584 230 010100e600000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2573 2.839481354 10.100.0.48:14330 10.100.0.48:59182 3647131608 21 0401001500490100fd0000c8000000000000000000 .....I............... +2578 2.840387583 10.100.0.48:59182 10.100.0.48:14330 347982814 304 0101013000000100160000001200000002000200000049000000010000004300 ...0..................I.......C.R.E.A.T.E. .U.N. +2583 2.855694294 10.100.0.48:14330 10.100.0.48:59182 3647131629 21 0401001500490100fd0000c8000000000000000000 .....I............... +2586 2.855991364 10.100.0.48:59182 10.100.0.48:14330 347983118 164 010100a400000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2589 2.870890617 10.100.0.48:14330 10.100.0.48:59182 3647131650 21 0401001500490100fd0000c8000000000000000000 .....I............... +2594 2.872870922 10.100.0.48:59182 10.100.0.48:14330 347983282 178 010100b200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2613 2.887582064 10.100.0.48:14330 10.100.0.48:59182 3647131671 21 0401001500490100fd0000c8000000000000000000 .....I............... +2615 2.887835503 10.100.0.48:59182 10.100.0.48:14330 347983460 244 010100f400000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2636 2.897901535 10.100.0.48:14330 10.100.0.48:59182 3647131692 21 0401001500490100fd0000c8000000000000000000 .....I............... +2643 2.898859978 10.100.0.48:59182 10.100.0.48:14330 347983704 266 0101010a00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2650 2.913631916 10.100.0.48:14330 10.100.0.48:59182 3647131713 21 0401001500490100fd0000c8000000000000000000 .....I............... +2652 2.914453030 10.100.0.48:59182 10.100.0.48:14330 347983970 304 0101013000000100160000001200000002000200000049000000010000004300 ...0..................I.......C.R.E.A.T.E. .U.N. +2704 2.932056189 10.100.0.48:14330 10.100.0.48:59182 3647131734 21 0401001500490100fd0000c8000000000000000000 .....I............... +2707 2.933517456 10.100.0.48:59182 10.100.0.48:14330 347984274 328 0101014800000100160000001200000002000200000049000000010000004300 ...H..................I.......C.R.E.A.T.E. .U.N. +2709 2.948834419 10.100.0.48:14330 10.100.0.48:59182 3647131755 21 0401001500490100fd0000c8000000000000000000 .....I............... +2711 2.950274467 10.100.0.48:59182 10.100.0.48:14330 347984602 256 0101010000000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2717 2.962753773 10.100.0.48:14330 10.100.0.48:59182 3647131776 21 0401001500490100fd0000c8000000000000000000 .....I............... +2723 2.963398218 10.100.0.48:59182 10.100.0.48:14330 347984858 160 010100a000000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2727 2.974840879 10.100.0.48:14330 10.100.0.48:59182 3647131797 21 0401001500490100fd0000c8000000000000000000 .....I............... +2733 2.975721836 10.100.0.48:59182 10.100.0.48:14330 347985018 210 010100d200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2735 2.985367775 10.100.0.48:14330 10.100.0.48:59182 3647131818 21 0401001500490100fd0000c8000000000000000000 .....I............... +2737 2.985742807 10.100.0.48:59182 10.100.0.48:14330 347985228 248 010100f800000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2749 2.996144533 10.100.0.48:14330 10.100.0.48:59182 3647131839 21 0401001500490100fd0000c8000000000000000000 .....I............... +2752 2.996384144 10.100.0.48:59182 10.100.0.48:14330 347985476 288 0101012000000100160000001200000002000200000049000000010000004300 ... ..................I.......C.R.E.A.T.E. .U.N. +2783 3.010849237 10.100.0.48:14330 10.100.0.48:59182 3647131860 21 0401001500490100fd0000c8000000000000000000 .....I............... +2787 3.011817694 10.100.0.48:59182 10.100.0.48:14330 347985764 204 010100cc00000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +2803 3.024392128 10.100.0.48:14330 10.100.0.48:59182 3647131881 21 0401001500490100fd0000c8000000000000000000 .....I............... +2806 3.026174307 10.100.0.48:59182 10.100.0.48:14330 347985968 242 010100f200000100160000001200000002000200000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +2824 3.045058012 10.100.0.48:14330 10.100.0.48:59182 3647131902 21 0401001500490100fd0000c8000000000000000000 .....I............... +2826 3.045474768 10.100.0.48:59182 10.100.0.48:14330 347986210 288 0101012000000100160000001200000002000200000049000000010000004300 ... ..................I.......C.R.E.A.T.E. .U.N. +2829 3.059718132 10.100.0.48:14330 10.100.0.48:59182 3647131923 21 0401001500490100fd0000c8000000000000000000 .....I............... +2835 3.060935497 10.100.0.48:59182 10.100.0.48:14330 347986498 280 0101011800000100160000001200000002000200000049000000010000004900 ......................I.......I.N.S.E.R.T. .I.N. +2860 3.148012400 10.100.0.48:14330 10.100.0.48:59182 3647131944 21 0401001500490100fd1000c3000100000000000000 .....I............... +2864 3.149089098 10.100.0.48:59182 10.100.0.48:14330 347986778 34 0e01002200000100160000001200000002000200000049000000010000000700 ..."..................I........... +2872 3.183677673 10.100.0.48:14330 10.100.0.48:59182 3647131965 51 0401003300490100e30b000900080200000049000000e40b0000000500000000 ...3.I............I............................. +2918 3.273195744 10.100.0.48:59182 10.100.0.48:14330 347986812 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +2920 3.281136751 10.100.0.48:14330 10.100.0.48:59182 3647132016 51 0401003300490100e30b000808030000004900000000e40b0000000600000000 ...3.I...........I.............................. +2922 3.282556772 10.100.0.48:59182 10.100.0.48:14330 347986846 2000 010107d000000100160000001200000002000300000049000000010000000d00 ......................I...........C.R.E.A.T.E. . +2932 3.327761173 10.100.0.48:14330 10.100.0.48:59182 3647132067 21 0401001500490100fd0000de000000000000000000 .....I............... +2936 3.328831196 10.100.0.48:59182 10.100.0.48:14330 347988846 3206 01010c8600000100160000001200000002000300000049000000010000000d00 ......................I...........C.R.E.A.T.E. . +2962 3.392158031 10.100.0.48:14330 10.100.0.48:59182 3647132088 21 0401001500490100fd0000de000000000000000000 .....I............... +2967 3.393267393 10.100.0.48:59182 10.100.0.48:14330 347992052 2820 01010b0400000100160000001200000002000300000049000000010000000d00 ......................I...........C.R.E.A.T.E. . +2970 3.428420305 10.100.0.48:14330 10.100.0.48:59182 3647132109 21 0401001500490100fd0000de000000000000000000 .....I............... +2977 3.429578543 10.100.0.48:59182 10.100.0.48:14330 347994872 8000 01041f4000000100160000001200000002000300000049000000010000000d00 ...@..................I...........C.R.E.A.T.E. . +2979 3.430837870 10.100.0.48:59182 10.100.0.48:14330 348002872 12 0101000c000002000d000a00 ............ +2993 3.460336924 10.100.0.48:14330 10.100.0.48:59182 3647132130 21 0401001500490100fd0000de000000000000000000 .....I............... +2995 3.462277651 10.100.0.48:59182 10.100.0.48:14330 348002884 4700 0101125c00000100160000001200000002000300000049000000010000000d00 ...\..................I...........C.R.E.A.T.E. . +3005 3.495478630 10.100.0.48:14330 10.100.0.48:59182 3647132151 21 0401001500490100fd0000de000000000000000000 .....I............... +3010 3.497303247 10.100.0.48:59182 10.100.0.48:14330 348007584 8000 01041f4000000100160000001200000002000300000049000000010000000d00 ...@..................I...........C.R.E.A.T.E. . +3015 3.497698784 10.100.0.48:59182 10.100.0.48:14330 348015584 244 010100f4000002006b0027002c002000400043006c0075007300740065007200 ........k.'.,. .@.C.l.u.s.t.e.r.I.d.,. .@.N.e.w. +3047 3.547029257 10.100.0.48:14330 10.100.0.48:59182 3647132172 21 0401001500490100fd0000de000000000000000000 .....I............... +3049 3.547520638 10.100.0.48:59182 10.100.0.48:14330 348015828 7862 01011eb600000100160000001200000002000300000049000000010000000d00 ......................I...........C.R.E.A.T.E. . +3075 3.610568285 10.100.0.48:14330 10.100.0.48:59182 3647132193 21 0401001500490100fd0000de000000000000000000 .....I............... +3077 3.614349365 10.100.0.48:59182 10.100.0.48:14330 348023690 1964 010107ac00000100160000001200000002000300000049000000010000000d00 ......................I...........C.R.E.A.T.E. . +3091 3.631048441 10.100.0.48:14330 10.100.0.48:59182 3647132214 21 0401001500490100fd0000de000000000000000000 .....I............... +3093 3.631419897 10.100.0.48:59182 10.100.0.48:14330 348025654 286 0101011e00000100160000001200000002000300000049000000010000004900 ......................I.......I.N.S.E.R.T. .I.N. +3099 3.638585329 10.100.0.48:14330 10.100.0.48:59182 3647132235 21 0401001500490100fd1000c3000100000000000000 .....I............... +3101 3.638955832 10.100.0.48:59182 10.100.0.48:14330 348025940 34 0e01002200000100160000001200000002000300000049000000010000000700 ..."..................I........... +3117 3.661923409 10.100.0.48:14330 10.100.0.48:59182 3647132256 51 0401003300490100e30b000900080300000049000000e40b0000000700000000 ...3.I............I............................. +3127 3.752663136 10.100.0.48:59182 10.100.0.48:14330 348025974 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3145 3.760573149 10.100.0.48:14330 10.100.0.48:59182 3647132307 51 0401003300490100e30b000808040000004900000000e40b0000000800000000 ...3.I...........I.............................. +3147 3.763003826 10.100.0.48:59182 10.100.0.48:14330 348026008 358 0101016600000100160000001200000002000400000049000000010000000d00 ...f..................I...........I.F. .D.A.T.A. +3153 3.782494068 10.100.0.48:14330 10.100.0.48:59182 3647132358 34 0401002200490100fd0100c0000000000000000000fd0000c000000000000000 ...".I............................ +3155 3.782780170 10.100.0.48:59182 10.100.0.48:14330 348026366 2292 010108f400000100160000001200000002000400000049000000010000000d00 ......................I...........G.R.A.N.T. .E. +3160 3.818235159 10.100.0.48:14330 10.100.0.48:59182 3647132392 21 0401001500490100fd0000fd000000000000000000 .....I............... +3165 3.820043087 10.100.0.48:59182 10.100.0.48:14330 348028658 292 0101012400000100160000001200000002000400000049000000010000004900 ...$..................I.......I.N.S.E.R.T. .I.N. +3169 3.828885317 10.100.0.48:14330 10.100.0.48:59182 3647132413 21 0401001500490100fd1000c3000100000000000000 .....I............... +3173 3.829269171 10.100.0.48:59182 10.100.0.48:14330 348028950 34 0e01002200000100160000001200000002000400000049000000010000000700 ..."..................I........... +3199 3.850342512 10.100.0.48:14330 10.100.0.48:59182 3647132434 51 0401003300490100e30b000900080400000049000000e40b0000000900000000 ...3.I............I............................. +3302 4.148581266 10.100.0.48:59182 10.100.0.48:14330 348028984 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3308 4.157161951 10.100.0.48:14330 10.100.0.48:59182 3647132485 51 0401003300490100e30b000808050000004900000000e40b0000000a00000000 ...3.I...........I.............................. +3310 4.157459974 10.100.0.48:59182 10.100.0.48:14330 348029018 860 0101035c00000100160000001200000002000500000049000000010000004300 ...\..................I.......C.R.E.A.T.E. .T.A. +3330 4.170707226 10.100.0.48:14330 10.100.0.48:59182 3647132536 21 0401001500490100fd0000c6000000000000000000 .....I............... +3332 4.171589613 10.100.0.48:59182 10.100.0.48:14330 348029878 198 010100c600000100160000001200000002000500000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +3334 4.181016445 10.100.0.48:14330 10.100.0.48:59182 3647132557 21 0401001500490100fd0000c8000000000000000000 .....I............... +3336 4.181952238 10.100.0.48:59182 10.100.0.48:14330 348030076 180 010100b400000100160000001200000002000500000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +3340 4.190057278 10.100.0.48:14330 10.100.0.48:59182 3647132578 21 0401001500490100fd0000c8000000000000000000 .....I............... +3342 4.191290140 10.100.0.48:59182 10.100.0.48:14330 348030256 292 0101012400000100160000001200000002000500000049000000010000004900 ...$..................I.......I.N.S.E.R.T. .I.N. +3344 4.198362589 10.100.0.48:14330 10.100.0.48:59182 3647132599 21 0401001500490100fd1000c3000100000000000000 .....I............... +3346 4.198870182 10.100.0.48:59182 10.100.0.48:14330 348030548 34 0e01002200000100160000001200000002000500000049000000010000000700 ..."..................I........... +3348 4.219036102 10.100.0.48:14330 10.100.0.48:59182 3647132620 51 0401003300490100e30b000900080500000049000000e40b0000000b00000000 ...3.I............I............................. +3377 4.375305653 10.100.0.48:59182 10.100.0.48:14330 348030582 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3394 4.382816792 10.100.0.48:14330 10.100.0.48:59182 3647132671 51 0401003300490100e30b000808060000004900000000e40b0000000c00000000 ...3.I...........I.............................. +3396 4.383599520 10.100.0.48:59182 10.100.0.48:14330 348030616 1132 0101046c00000100160000001200000002000600000049000000010000004300 ...l..................I.......C.R.E.A.T.E. .T.A. +3412 4.395816326 10.100.0.48:14330 10.100.0.48:59182 3647132722 21 0401001500490100fd0000c6000000000000000000 .....I............... +3414 4.396927595 10.100.0.48:59182 10.100.0.48:14330 348031748 238 010100ee00000100160000001200000002000600000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +3420 4.410426378 10.100.0.48:14330 10.100.0.48:59182 3647132743 21 0401001500490100fd0000c8000000000000000000 .....I............... +3422 4.411559820 10.100.0.48:59182 10.100.0.48:14330 348031986 320 0101014000000100160000001200000002000600000049000000010000004900 ...@..................I.......I.N.S.E.R.T. .I.N. +3424 4.422468424 10.100.0.48:14330 10.100.0.48:59182 3647132764 21 0401001500490100fd1000c3000100000000000000 .....I............... +3428 4.423688650 10.100.0.48:59182 10.100.0.48:14330 348032306 34 0e01002200000100160000001200000002000600000049000000010000000700 ..."..................I........... +3448 4.446699619 10.100.0.48:14330 10.100.0.48:59182 3647132785 51 0401003300490100e30b000900080600000049000000e40b0000000d00000000 ...3.I............I............................. +3506 4.615052223 10.100.0.48:59182 10.100.0.48:14330 348032340 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3516 4.624764919 10.100.0.48:14330 10.100.0.48:59182 3647132836 51 0401003300490100e30b000808070000004900000000e40b0000000e00000000 ...3.I...........I.............................. +3518 4.626358509 10.100.0.48:59182 10.100.0.48:14330 348032374 1060 0101042400000100160000001200000002000700000049000000010000004300 ...$..................I.......C.R.E.A.T.E. .T.A. +3528 4.640974045 10.100.0.48:14330 10.100.0.48:59182 3647132887 21 0401001500490100fd0000c6000000000000000000 .....I............... +3530 4.642910004 10.100.0.48:59182 10.100.0.48:14330 348033434 212 010100d400000100160000001200000002000700000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +3536 4.651901960 10.100.0.48:14330 10.100.0.48:59182 3647132908 21 0401001500490100fd0000c8000000000000000000 .....I............... +3538 4.652141571 10.100.0.48:59182 10.100.0.48:14330 348033646 204 010100cc00000100160000001200000002000700000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +3540 4.660726309 10.100.0.48:14330 10.100.0.48:59182 3647132929 21 0401001500490100fd0000c8000000000000000000 .....I............... +3542 4.661782742 10.100.0.48:59182 10.100.0.48:14330 348033850 320 0101014000000100160000001200000002000700000049000000010000004300 ...@..................I.......C.R.E.A.T.E. .U.N. +3549 4.681165934 10.100.0.48:14330 10.100.0.48:59182 3647132950 21 0401001500490100fd0000c8000000000000000000 .....I............... +3551 4.681402206 10.100.0.48:59182 10.100.0.48:14330 348034170 300 0101012c00000100160000001200000002000700000049000000010000004900 ...,..................I.......I.N.S.E.R.T. .I.N. +3565 4.688204050 10.100.0.48:14330 10.100.0.48:59182 3647132971 21 0401001500490100fd1000c3000100000000000000 .....I............... +3567 4.688457966 10.100.0.48:59182 10.100.0.48:14330 348034470 34 0e01002200000100160000001200000002000700000049000000010000000700 ..."..................I........... +3569 4.709888697 10.100.0.48:14330 10.100.0.48:59182 3647132992 51 0401003300490100e30b000900080700000049000000e40b0000000f00000000 ...3.I............I............................. +3638 4.919987917 10.100.0.48:59182 10.100.0.48:14330 348034504 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3640 4.926195145 10.100.0.48:14330 10.100.0.48:59182 3647133043 51 0401003300490100e30b000808080000004900000000e40b0000001000000000 ...3.I...........I.............................. +3642 4.926488161 10.100.0.48:59182 10.100.0.48:14330 348034538 176 010100b000000100160000001200000002000800000049000000010000004100 ......................I.......A.L.T.E.R. .T.A.B. +3644 4.943031549 10.100.0.48:14330 10.100.0.48:59182 3647133094 21 0401001500490100fd0000d8000000000000000000 .....I............... +3646 4.943266869 10.100.0.48:59182 10.100.0.48:14330 348034714 340 0101015400000100160000001200000002000800000049000000010000004100 ...T..................I.......A.L.T.E.R. .T.A.B. +3652 4.953321934 10.100.0.48:14330 10.100.0.48:59182 3647133115 21 0401001500490100fd0000d8000000000000000000 .....I............... +3655 4.953585863 10.100.0.48:59182 10.100.0.48:14330 348035054 320 0101014000000100160000001200000002000800000049000000010000004900 ...@..................I.......I.N.S.E.R.T. .I.N. +3664 4.962519407 10.100.0.48:14330 10.100.0.48:59182 3647133136 21 0401001500490100fd1000c3000100000000000000 .....I............... +3670 4.970432281 10.100.0.48:59182 10.100.0.48:14330 348035374 34 0e01002200000100160000001200000002000800000049000000010000000700 ..."..................I........... +3676 4.992533445 10.100.0.48:14330 10.100.0.48:59182 3647133157 51 0401003300490100e30b000900080800000049000000e40b0000001100000000 ...3.I............I............................. +3751 5.199724197 10.100.0.48:59182 10.100.0.48:14330 348035408 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3765 5.210128546 10.100.0.48:14330 10.100.0.48:59182 3647133208 51 0401003300490100e30b000808090000004900000000e40b0000001200000000 ...3.I...........I.............................. +3771 5.215104580 10.100.0.48:59182 10.100.0.48:14330 348035442 842 0101034a00000100160000001200000002000900000049000000010000004300 ...J..................I.......C.R.E.A.T.E. .T.A. +3777 5.229754686 10.100.0.48:14330 10.100.0.48:59182 3647133259 21 0401001500490100fd0000c6000000000000000000 .....I............... +3779 5.230628967 10.100.0.48:59182 10.100.0.48:14330 348036284 2298 010108fa00000100160000001200000002000900000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +3785 5.246398449 10.100.0.48:14330 10.100.0.48:59182 3647133280 21 0401001500490100fd0000c6000000000000000000 .....I............... +3787 5.246638298 10.100.0.48:59182 10.100.0.48:14330 348038582 264 0101010800000100160000001200000002000900000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +3793 5.256378412 10.100.0.48:14330 10.100.0.48:59182 3647133301 21 0401001500490100fd0000c8000000000000000000 .....I............... +3795 5.257451534 10.100.0.48:59182 10.100.0.48:14330 348038846 192 010100c000000100160000001200000002000900000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +3801 5.269154787 10.100.0.48:14330 10.100.0.48:59182 3647133322 21 0401001500490100fd0000c8000000000000000000 .....I............... +3803 5.269592047 10.100.0.48:59182 10.100.0.48:14330 348039038 300 0101012c00000100160000001200000002000900000049000000010000004900 ...,..................I.......I.N.S.E.R.T. .I.N. +3809 5.276978493 10.100.0.48:14330 10.100.0.48:59182 3647133343 21 0401001500490100fd1000c3000100000000000000 .....I............... +3811 5.278012753 10.100.0.48:59182 10.100.0.48:14330 348039338 34 0e01002200000100160000001200000002000900000049000000010000000700 ..."..................I........... +3815 5.301447630 10.100.0.48:14330 10.100.0.48:59182 3647133364 51 0401003300490100e30b000900080900000049000000e40b0000001300000000 ...3.I............I............................. +3893 5.380808353 10.100.0.48:59182 10.100.0.48:14330 348039372 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +3903 5.390525818 10.100.0.48:14330 10.100.0.48:59182 3647133415 51 0401003300490100e30b0008080a0000004900000000e40b0000001400000000 ...3.I...........I.............................. +3907 5.390875101 10.100.0.48:59182 10.100.0.48:14330 348039406 8000 01041f4000000100160000001200000002000a00000049000000010000000d00 ...@..................I...........C.R.E.A.T.E. . +3913 5.391396046 10.100.0.48:59182 10.100.0.48:14330 348047406 2530 010109e200000200690065006400200076006900610020004300480045004300 ........i.e.d. .v.i.a. .C.H.E.C.K.S.U.M. .o.n. . +3927 5.417449951 10.100.0.48:14330 10.100.0.48:59182 3647133466 21 0401001500490100fd0000de000000000000000000 .....I............... +3929 5.419103146 10.100.0.48:59182 10.100.0.48:14330 348049936 330 0101014a00000100160000001200000002000a00000049000000010000004900 ...J..................I.......I.N.S.E.R.T. .I.N. +3935 5.427723408 10.100.0.48:14330 10.100.0.48:59182 3647133487 21 0401001500490100fd1000c3000100000000000000 .....I............... +3937 5.427934647 10.100.0.48:59182 10.100.0.48:14330 348050266 34 0e01002200000100160000001200000002000a00000049000000010000000700 ..."..................I........... +3945 5.447888136 10.100.0.48:14330 10.100.0.48:59182 3647133508 51 0401003300490100e30b000900080a00000049000000e40b0000001500000000 ...3.I............I............................. +4045 5.756873608 10.100.0.48:59182 10.100.0.48:14330 348050300 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +4049 5.762817860 10.100.0.48:14330 10.100.0.48:59182 3647133559 51 0401003300490100e30b0008080b0000004900000000e40b0000001600000000 ...3.I...........I.............................. +4053 5.763811827 10.100.0.48:59182 10.100.0.48:14330 348050334 1118 0101045e00000100160000001200000002000b00000049000000010000004300 ...^..................I.......C.R.E.A.T.E. .T.A. +4065 5.778543472 10.100.0.48:14330 10.100.0.48:59182 3647133610 21 0401001500490100fd0000c6000000000000000000 .....I............... +4069 5.778877020 10.100.0.48:59182 10.100.0.48:14330 348051452 2002 010107d200000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +4075 5.797079086 10.100.0.48:14330 10.100.0.48:59182 3647133631 21 0401001500490100fd0000c6000000000000000000 .....I............... +4077 5.797672749 10.100.0.48:59182 10.100.0.48:14330 348053454 1700 010106a400000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .T.A. +4083 5.812462568 10.100.0.48:14330 10.100.0.48:59182 3647133652 21 0401001500490100fd0000c6000000000000000000 .....I............... +4085 5.813062906 10.100.0.48:59182 10.100.0.48:14330 348055154 1860 0101074400000100160000001200000002000b00000049000000010000004300 ...D..................I.......C.R.E.A.T.E. .T.A. +4103 5.828906059 10.100.0.48:14330 10.100.0.48:59182 3647133673 21 0401001500490100fd0000c6000000000000000000 .....I............... +4105 5.829360723 10.100.0.48:59182 10.100.0.48:14330 348057014 214 010100d600000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +4111 5.837948561 10.100.0.48:14330 10.100.0.48:59182 3647133694 21 0401001500490100fd0000c8000000000000000000 .....I............... +4113 5.838167191 10.100.0.48:59182 10.100.0.48:14330 348057228 280 0101011800000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +4119 5.847298145 10.100.0.48:14330 10.100.0.48:59182 3647133715 21 0401001500490100fd0000c8000000000000000000 .....I............... +4121 5.848390818 10.100.0.48:59182 10.100.0.48:14330 348057508 248 010100f800000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +4127 5.860757113 10.100.0.48:14330 10.100.0.48:59182 3647133736 21 0401001500490100fd0000c8000000000000000000 .....I............... +4129 5.861130476 10.100.0.48:59182 10.100.0.48:14330 348057756 280 0101011800000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +4135 5.870560646 10.100.0.48:14330 10.100.0.48:59182 3647133757 21 0401001500490100fd0000c8000000000000000000 .....I............... +4137 5.872052431 10.100.0.48:59182 10.100.0.48:14330 348058036 336 0101015000000100160000001200000002000b00000049000000010000004300 ...P..................I.......C.R.E.A.T.E. .U.N. +4143 5.882718801 10.100.0.48:14330 10.100.0.48:59182 3647133778 21 0401001500490100fd0000c8000000000000000000 .....I............... +4145 5.883557558 10.100.0.48:59182 10.100.0.48:14330 348058372 218 010100da00000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .I.N. +4159 5.894266367 10.100.0.48:14330 10.100.0.48:59182 3647133799 21 0401001500490100fd0000c8000000000000000000 .....I............... +4161 5.894835711 10.100.0.48:59182 10.100.0.48:14330 348058590 268 0101010c00000100160000001200000002000b00000049000000010000004300 ......................I.......C.R.E.A.T.E. .U.N. +4167 5.904290915 10.100.0.48:14330 10.100.0.48:59182 3647133820 21 0401001500490100fd0000c8000000000000000000 .....I............... +4169 5.905103445 10.100.0.48:59182 10.100.0.48:14330 348058858 312 0101013800000100160000001200000002000b00000049000000010000004300 ...8..................I.......C.R.E.A.T.E. .U.N. +4175 5.914043665 10.100.0.48:14330 10.100.0.48:59182 3647133841 21 0401001500490100fd0000c8000000000000000000 .....I............... +4177 5.914267063 10.100.0.48:59182 10.100.0.48:14330 348059170 302 0101012e00000100160000001200000002000b00000049000000010000004900 ......................I.......I.N.S.E.R.T. .I.N. +4185 5.921953201 10.100.0.48:14330 10.100.0.48:59182 3647133862 21 0401001500490100fd1000c3000100000000000000 .....I............... +4187 5.922554731 10.100.0.48:59182 10.100.0.48:14330 348059472 34 0e01002200000100160000001200000002000b00000049000000010000000700 ..."..................I........... +4201 5.941217661 10.100.0.48:14330 10.100.0.48:59182 3647133883 51 0401003300490100e30b000900080b00000049000000e40b0000001700000000 ...3.I............I............................. +4307 6.024788857 10.100.0.48:59182 10.100.0.48:14330 348059506 34 0e01002200000100160000001200000002000000000000000000010000000500 ...".............................. +4330 6.033791065 10.100.0.48:14330 10.100.0.48:59182 3647133934 51 0401003300490100e30b0008080c0000004900000000e40b0000001800000000 ...3.I...........I.............................. +4332 6.034716368 10.100.0.48:59182 10.100.0.48:14330 348059540 8000 01041f4000000100160000001200000002000c00000049000000010000000d00 ...@..................I...........C.R.E.A.T.E. . +4334 6.035208941 10.100.0.48:59182 10.100.0.48:14330 348067540 8000 01041f400000020020004c006f0067006900630061006c00490064002c000d00 ...@.... .L.o.g.i.c.a.l.I.d.,..... . . . . . . . +4336 6.035376787 10.100.0.48:59182 10.100.0.48:14330 348075540 86 01010056000003002000230064006900660066003b000d000a00200020002000 ...V.... .#.d.i.f.f.;..... . . . .D.R.O.P. .T.A. +4476 6.109653950 10.100.0.48:14330 10.100.0.48:59182 3647133985 21 0401001500490100fd0000de000000000000000000 .....I............... +4480 6.110102415 10.100.0.48:59182 10.100.0.48:14330 348075626 328 0101014800000100160000001200000002000c00000049000000010000004900 ...H..................I.......I.N.S.E.R.T. .I.N. +4488 6.119304657 10.100.0.48:14330 10.100.0.48:59182 3647134006 21 0401001500490100fd1000c3000100000000000000 .....I............... +4490 6.119512081 10.100.0.48:59182 10.100.0.48:14330 348075954 34 0e01002200000100160000001200000002000c00000049000000010000000700 ..."..................I........... +4516 6.140651226 10.100.0.48:14330 10.100.0.48:59182 3647134027 51 0401003300490100e30b000900080c00000049000000e40b0000001900000000 ...3.I............I............................. +4522 6.145260334 10.100.0.48:59182 10.100.0.48:14330 348075988 286 0101011e00000100160000001200000002000000000000000000010000004400 ..............................D.E.C.L.A.R.E. .@. +4526 6.162783146 10.100.0.48:14330 10.100.0.48:59182 3647134078 140 0401008c00490100ff1100c1000100000000000000ff0100c000000000000000 .....I.......................................... +5105 7.313199282 10.100.0.48:59182 10.100.0.48:14330 348076274 34 0e09002200000100160000001200000002000000000000000000010000000500 ...".............................. +5107 7.320144415 10.100.0.48:14330 10.100.0.48:59182 3647134218 57 0401003900490100e30300120000e30b0008080d0000004900000000e40b0000 ...9.I.................I........................ +5109 7.326060295 10.100.0.48:59182 10.100.0.48:14330 348076308 3509 03010db500000100160000001200000002000d0000004900000001000000ffff ......................I................Z.....4Z. +5115 7.379486322 10.100.0.48:14330 10.100.0.48:59182 3647134275 85 040100550049010081010000000000000010007f0c470065006e006500720061 ...U.I...............G.e.n.e.r.a.t.i.o.n.I.d.... +5137 7.479186296 10.100.0.48:59182 10.100.0.48:14330 348079817 34 0e01002200000100160000001200000002000d00000049000000010000000700 ..."..................I........... +5180 7.500491619 10.100.0.48:14330 10.100.0.48:59182 3647134360 64 0401004000490100e30b000900080d00000049000000e4180000001c00000001 ...@.I............I...............&............. +5242 7.726164341 10.100.0.48:59182 10.100.0.48:14330 348079851 861 0309035d0000010016000000120000000200000000000000000001000000ffff ...].........................................4.. +5260 7.769883633 10.100.0.48:14330 10.100.0.48:59182 3647134424 45 0401002d00490100e30300120000ff0100ba0000000000000000007900000000 ...-.I.....................y................. +5506 8.477333546 10.100.0.48:59182 10.100.0.48:14330 348080712 592 0109025000000100160000001200000002000000000000000000010000005300 ...P..........................S.E.L.E.C.T. .[.c. +5510 8.505306721 10.100.0.48:14330 10.100.0.48:59182 3647134469 582 0401024600490100e30300120000810d000000000000000800e780000904d000 ...F.I..........................4.N.o.d.e.I.d... +5527 8.575845242 10.100.0.48:59182 10.100.0.48:14330 348081304 594 0109025200000100160000001200000002000000000000000000010000005300 ...R..........................S.E.L.E.C.T. .[.d. +5531 8.592484236 10.100.0.48:14330 10.100.0.48:59182 3647135051 439 040101b700490100e303001200008109000000000000000800e780000904d000 .....I..........................4.D.r.i.v.e.r.I. +5588 8.717962265 10.100.0.48:59182 10.100.0.48:14330 348081898 550 0109022600000100160000001200000002000000000000000000010000005300 ...&..........................S.E.L.E.C.T. .[.c. +5611 8.807250738 10.100.0.48:14330 10.100.0.48:59182 3647135490 362 0401016a00490100e303001200008107000000000000000800e780000904d000 ...j.I..........................4.N.o.d.e.I.d... +3 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3333515315 12 1a000000a0250b0000000000 .....%...... +5 0.000275850 127.0.0.1:57415 127.0.0.1:57433 3333515327 26 16000000548f6340e25e3140010003000000f19c1f0000000000 ....T.c@.^1@.............. +7 0.000610828 127.0.0.1:57433 127.0.0.1:57415 377454545 12 ffffffffa0250b0000000000 .....%...... +9 0.001366854 127.0.0.1:57433 127.0.0.1:57415 377454557 12 16000000d6ff0a0000000000 ............ +11 0.001530409 127.0.0.1:57433 127.0.0.1:57415 377454569 22 12000000f19c1f000000000001000300000000000000 ...................... +13 0.001896620 127.0.0.1:57415 127.0.0.1:57433 3333515353 12 ffffffffd6ff0a0000000000 ............ +15 0.103595734 127.0.0.1:57415 127.0.0.1:57433 3333515365 12 1a000000a1250b0000000000 .....%...... +17 0.103785276 127.0.0.1:57415 127.0.0.1:57433 3333515377 26 16000000548f6340e25e3140010003000000f39c1f0000000000 ....T.c@.^1@.............. +19 0.104259968 127.0.0.1:57433 127.0.0.1:57415 377454591 12 ffffffffa1250b0000000000 .....%...... +21 0.104687691 127.0.0.1:57433 127.0.0.1:57415 377454603 12 16000000d7ff0a0000000000 ............ +23 0.104876757 127.0.0.1:57433 127.0.0.1:57415 377454615 22 12000000f39c1f000000000001000300000000000000 ...................... +25 0.105092525 127.0.0.1:57415 127.0.0.1:57433 3333515403 12 ffffffffd7ff0a0000000000 ............ +33 0.140883207 127.0.0.1:57433 127.0.0.1:57415 377454637 12 fefffffff343010004440100 .....C...D.. +35 0.188983440 127.0.0.1:57415 127.0.0.1:57433 3333515415 12 22000000a2250b0000000000 "....%...... +37 0.189166069 127.0.0.1:57415 127.0.0.1:57433 3333515427 34 1e0000001c2118d0c46f33bb0100030000003613020000000000c48d25c39d01 .....!...o3.......6.........%..... +39 0.189306021 127.0.0.1:57415 127.0.0.1:57433 3333515461 12 43000000a3250b0000000000 C....%...... +41 0.189430952 127.0.0.1:57415 127.0.0.1:57433 3333515473 67 3f000000980433cb0cb47c38010003000000010000000036130200000000003d ?.....3...|8...........6.......=B.....&......... +42 0.189959764 127.0.0.1:57433 127.0.0.1:57415 377454649 12 ffffffffa2250b0000000000 .....%...... +45 0.190317392 127.0.0.1:57433 127.0.0.1:57415 377454661 12 ffffffffa3250b0000000000 .....%...... +47 0.191439867 127.0.0.1:57433 127.0.0.1:57415 377454673 12 34000000d8ff0a0000000000 4........... +49 0.191625118 127.0.0.1:57433 127.0.0.1:57415 377454685 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....6..........p.. +51 0.192126036 127.0.0.1:57415 127.0.0.1:57433 3333515540 12 ffffffffd8ff0a0000000000 ............ +52 0.192993641 127.0.0.1:57415 127.0.0.1:57433 3333515552 12 1e000000a4250b0000000000 .....%...... +54 0.193208694 127.0.0.1:57415 127.0.0.1:57433 3333515564 30 1a00000055ceff62b21b3a50010003000000f59c1f000000000000000000 ....U..b..:P.................. +56 0.193606138 127.0.0.1:57433 127.0.0.1:57415 377454737 12 ffffffffa4250b0000000000 .....%...... +58 0.194481373 127.0.0.1:57433 127.0.0.1:57415 377454749 12 1a000000d9ff0a0000000000 ............ +60 0.194686174 127.0.0.1:57433 127.0.0.1:57415 377454761 26 16000000f59c1f00000000000100030000000000000000000000 .......................... +62 0.195055962 127.0.0.1:57415 127.0.0.1:57433 3333515594 12 ffffffffd9ff0a0000000000 ............ +64 0.208289862 127.0.0.1:57415 127.0.0.1:57433 3333515606 12 1a000000a5250b0000000000 .....%...... +66 0.208454847 127.0.0.1:57415 127.0.0.1:57433 3333515618 26 16000000548f6340e25e3140010003000000f79c1f0000000000 ....T.c@.^1@.............. +68 0.208839655 127.0.0.1:57433 127.0.0.1:57415 377454787 12 ffffffffa5250b0000000000 .....%...... +70 0.209177732 127.0.0.1:57433 127.0.0.1:57415 377454799 12 16000000daff0a0000000000 ............ +72 0.209334135 127.0.0.1:57433 127.0.0.1:57415 377454811 22 12000000f79c1f000000000001000300000000000000 ...................... +74 0.209607363 127.0.0.1:57415 127.0.0.1:57433 3333515644 12 ffffffffdaff0a0000000000 ............ +78 0.311028481 127.0.0.1:57415 127.0.0.1:57433 3333515656 12 1a000000a6250b0000000000 .....%...... +80 0.311253548 127.0.0.1:57415 127.0.0.1:57433 3333515668 26 16000000548f6340e25e3140010003000000f99c1f0000000000 ....T.c@.^1@.............. +82 0.311667204 127.0.0.1:57433 127.0.0.1:57415 377454833 12 ffffffffa6250b0000000000 .....%...... +84 0.312538624 127.0.0.1:57433 127.0.0.1:57415 377454845 12 16000000dbff0a0000000000 ............ +86 0.312764645 127.0.0.1:57433 127.0.0.1:57415 377454857 22 12000000f99c1f000000000001000300000000000000 ...................... +88 0.313093901 127.0.0.1:57415 127.0.0.1:57433 3333515694 12 ffffffffdbff0a0000000000 ............ +96 0.379335403 127.0.0.1:57415 127.0.0.1:57433 3333515706 12 feffffff05440100f3430100 .....D...C.. +100 0.414737225 127.0.0.1:57415 127.0.0.1:57433 3333515718 12 1a000000a7250b0000000000 .....%...... +102 0.414947033 127.0.0.1:57415 127.0.0.1:57433 3333515730 26 16000000548f6340e25e3140010003000000fb9c1f0000000000 ....T.c@.^1@.............. +104 0.415340424 127.0.0.1:57433 127.0.0.1:57415 377454879 12 ffffffffa7250b0000000000 .....%...... +106 0.415851831 127.0.0.1:57433 127.0.0.1:57415 377454891 12 16000000dcff0a0000000000 ............ +108 0.416100502 127.0.0.1:57433 127.0.0.1:57415 377454903 22 12000000fb9c1f000000000001000300000000000000 ...................... +110 0.416557074 127.0.0.1:57415 127.0.0.1:57433 3333515756 12 ffffffffdcff0a0000000000 ............ +146 0.494162083 127.0.0.1:57415 127.0.0.1:57433 3333515768 12 22000000a8250b0000000000 "....%...... +148 0.494422436 127.0.0.1:57415 127.0.0.1:57433 3333515780 34 1e0000001c2118d0c46f33bb0100030000003713020000000000f68e25c39d01 .....!...o3.......7.........%..... +150 0.494562864 127.0.0.1:57415 127.0.0.1:57433 3333515814 12 43000000a9250b0000000000 C....%...... +152 0.494651318 127.0.0.1:57415 127.0.0.1:57433 3333515826 67 3f000000980433cb0cb47c38010003000000010000000037130200000000003d ?.....3...|8...........7.......=B.....&......... +154 0.494807720 127.0.0.1:57433 127.0.0.1:57415 377454925 12 ffffffffa8250b0000000000 .....%...... +156 0.495061159 127.0.0.1:57433 127.0.0.1:57415 377454937 12 ffffffffa9250b0000000000 .....%...... +158 0.497362137 127.0.0.1:57433 127.0.0.1:57415 377454949 12 34000000ddff0a0000000000 4........... +160 0.497567654 127.0.0.1:57433 127.0.0.1:57415 377454961 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....7............. +162 0.498034477 127.0.0.1:57415 127.0.0.1:57433 3333515893 12 ffffffffddff0a0000000000 ............ +164 0.498808146 127.0.0.1:57415 127.0.0.1:57433 3333515905 12 1e000000aa250b0000000000 .....%...... +166 0.498953104 127.0.0.1:57415 127.0.0.1:57433 3333515917 30 1a00000055ceff62b21b3a50010003000000fd9c1f000000000000000000 ....U..b..:P.................. +168 0.499253988 127.0.0.1:57433 127.0.0.1:57415 377455013 12 ffffffffaa250b0000000000 .....%...... +170 0.499704361 127.0.0.1:57433 127.0.0.1:57415 377455025 12 1a000000deff0a0000000000 ............ +172 0.499879122 127.0.0.1:57433 127.0.0.1:57415 377455037 26 16000000fd9c1f00000000000100030000000000000000000000 .......................... +174 0.500104666 127.0.0.1:57415 127.0.0.1:57433 3333515947 12 ffffffffdeff0a0000000000 ............ +176 0.517646790 127.0.0.1:57415 127.0.0.1:57433 3333515959 12 1a000000ab250b0000000000 .....%...... +178 0.517854691 127.0.0.1:57415 127.0.0.1:57433 3333515971 26 16000000548f6340e25e3140010003000000ff9c1f0000000000 ....T.c@.^1@.............. +180 0.518158436 127.0.0.1:57433 127.0.0.1:57415 377455063 12 ffffffffab250b0000000000 .....%...... +182 0.518496752 127.0.0.1:57433 127.0.0.1:57415 377455075 12 16000000dfff0a0000000000 ............ +184 0.518652201 127.0.0.1:57433 127.0.0.1:57415 377455087 22 12000000ff9c1f000000000001000300000000000000 ...................... +186 0.519035101 127.0.0.1:57415 127.0.0.1:57433 3333515997 12 ffffffffdfff0a0000000000 ............ +190 0.620528936 127.0.0.1:57415 127.0.0.1:57433 3333516009 12 1a000000ac250b0000000000 .....%...... +192 0.620781183 127.0.0.1:57415 127.0.0.1:57433 3333516021 26 16000000548f6340e25e3140010003000000019d1f0000000000 ....T.c@.^1@.............. +194 0.621133089 127.0.0.1:57433 127.0.0.1:57415 377455109 12 ffffffffac250b0000000000 .....%...... +196 0.624679565 127.0.0.1:57433 127.0.0.1:57415 377455121 12 16000000e0ff0a0000000000 ............ +198 0.624914646 127.0.0.1:57433 127.0.0.1:57415 377455133 22 12000000019d1f000000000001000300000000000000 ...................... +200 0.625421286 127.0.0.1:57415 127.0.0.1:57433 3333516047 12 ffffffffe0ff0a0000000000 ............ +208 0.641654253 127.0.0.1:57433 127.0.0.1:57415 377455155 12 fefffffff443010005440100 .....C...D.. +252 0.727685452 127.0.0.1:57415 127.0.0.1:57433 3333516059 12 1a000000ad250b0000000000 .....%...... +254 0.727932692 127.0.0.1:57415 127.0.0.1:57433 3333516071 26 16000000548f6340e25e3140010003000000039d1f0000000000 ....T.c@.^1@.............. +256 0.728262901 127.0.0.1:57433 127.0.0.1:57415 377455167 12 ffffffffad250b0000000000 .....%...... +258 0.729006052 127.0.0.1:57433 127.0.0.1:57415 377455179 12 16000000e1ff0a0000000000 ............ +260 0.729261637 127.0.0.1:57433 127.0.0.1:57415 377455191 22 12000000039d1f000000000001000300000000000000 ...................... +262 0.729632139 127.0.0.1:57415 127.0.0.1:57433 3333516097 12 ffffffffe1ff0a0000000000 ............ +264 0.800174475 127.0.0.1:57415 127.0.0.1:57433 3333516109 12 22000000ae250b0000000000 "....%...... +266 0.800370693 127.0.0.1:57415 127.0.0.1:57433 3333516121 34 1e0000001c2118d0c46f33bb0100030000003813020000000000289025c39d01 .....!...o3.......8.......(.%..... +268 0.800517559 127.0.0.1:57415 127.0.0.1:57433 3333516155 12 43000000af250b0000000000 C....%...... +270 0.800609112 127.0.0.1:57415 127.0.0.1:57433 3333516167 67 3f000000980433cb0cb47c38010003000000010000000038130200000000003d ?.....3...|8...........8.......=B.....&......... +272 0.800782442 127.0.0.1:57433 127.0.0.1:57415 377455213 12 ffffffffae250b0000000000 .....%...... +274 0.801067114 127.0.0.1:57433 127.0.0.1:57415 377455225 12 ffffffffaf250b0000000000 .....%...... +276 0.802037239 127.0.0.1:57433 127.0.0.1:57415 377455237 12 34000000e2ff0a0000000000 4........... +278 0.802190065 127.0.0.1:57433 127.0.0.1:57415 377455249 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....8.........[... +280 0.802458048 127.0.0.1:57415 127.0.0.1:57433 3333516234 12 ffffffffe2ff0a0000000000 ............ +282 0.803457260 127.0.0.1:57415 127.0.0.1:57433 3333516246 12 1e000000b0250b0000000000 .....%...... +284 0.803616524 127.0.0.1:57415 127.0.0.1:57433 3333516258 30 1a00000055ceff62b21b3a50010003000000059d1f000000000000000000 ....U..b..:P.................. +286 0.804061651 127.0.0.1:57433 127.0.0.1:57415 377455301 12 ffffffffb0250b0000000000 .....%...... +288 0.804396868 127.0.0.1:57433 127.0.0.1:57415 377455313 12 1a000000e3ff0a0000000000 ............ +290 0.804556608 127.0.0.1:57433 127.0.0.1:57415 377455325 26 16000000059d1f00000000000100030000000000000000000000 .......................... +292 0.804827452 127.0.0.1:57415 127.0.0.1:57433 3333516288 12 ffffffffe3ff0a0000000000 ............ +294 0.831643105 127.0.0.1:57415 127.0.0.1:57433 3333516300 12 1a000000b1250b0000000000 .....%...... +296 0.831962824 127.0.0.1:57415 127.0.0.1:57433 3333516312 26 16000000548f6340e25e3140010003000000079d1f0000000000 ....T.c@.^1@.............. +298 0.832285404 127.0.0.1:57433 127.0.0.1:57415 377455351 12 ffffffffb1250b0000000000 .....%...... +300 0.832680941 127.0.0.1:57433 127.0.0.1:57415 377455363 12 16000000e4ff0a0000000000 ............ +302 0.832921982 127.0.0.1:57433 127.0.0.1:57415 377455375 22 12000000079d1f000000000001000300000000000000 ...................... +304 0.833162069 127.0.0.1:57415 127.0.0.1:57433 3333516338 12 ffffffffe4ff0a0000000000 ............ +312 0.880204439 127.0.0.1:57415 127.0.0.1:57433 3333516350 12 feffffff06440100f4430100 .....D...C.. +318 0.934492826 127.0.0.1:57415 127.0.0.1:57433 3333516362 12 1a000000b2250b0000000000 .....%...... +320 0.934665680 127.0.0.1:57415 127.0.0.1:57433 3333516374 26 16000000548f6340e25e3140010003000000099d1f0000000000 ....T.c@.^1@.............. +322 0.935034275 127.0.0.1:57433 127.0.0.1:57415 377455397 12 ffffffffb2250b0000000000 .....%...... +324 0.935595036 127.0.0.1:57433 127.0.0.1:57415 377455409 12 16000000e5ff0a0000000000 ............ +326 0.935767889 127.0.0.1:57433 127.0.0.1:57415 377455421 22 12000000099d1f000000000001000300000000000000 ...................... +328 0.936096191 127.0.0.1:57415 127.0.0.1:57433 3333516400 12 ffffffffe5ff0a0000000000 ............ +338 1.037968159 127.0.0.1:57415 127.0.0.1:57433 3333516412 12 1a000000b3250b0000000000 .....%...... +340 1.038163185 127.0.0.1:57415 127.0.0.1:57433 3333516424 26 16000000548f6340e25e31400100030000000b9d1f0000000000 ....T.c@.^1@.............. +342 1.038528681 127.0.0.1:57433 127.0.0.1:57415 377455443 12 ffffffffb3250b0000000000 .....%...... +344 1.038972378 127.0.0.1:57433 127.0.0.1:57415 377455455 12 16000000e6ff0a0000000000 ............ +346 1.039131403 127.0.0.1:57433 127.0.0.1:57415 377455467 22 120000000b9d1f000000000001000300000000000000 ...................... +348 1.039438248 127.0.0.1:57415 127.0.0.1:57433 3333516450 12 ffffffffe6ff0a0000000000 ............ +370 1.105529308 127.0.0.1:57415 127.0.0.1:57433 3333516462 12 65000000b4250b0000000000 e....%...... +372 1.105815887 127.0.0.1:57415 127.0.0.1:57433 3333516474 101 1e0000001c2118d0c46f33bb0100030000003913020000000000589125c39d01 .....!...o3.......9.......X.%.....?.....3...|8.. +374 1.106207609 127.0.0.1:57433 127.0.0.1:57415 377455489 12 ffffffffb4250b0000000000 .....%...... +379 1.107335567 127.0.0.1:57433 127.0.0.1:57415 377455501 12 34000000e7ff0a0000000000 4........... +382 1.107496262 127.0.0.1:57433 127.0.0.1:57415 377455513 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....9..........0.. +384 1.107784748 127.0.0.1:57415 127.0.0.1:57433 3333516575 12 ffffffffe7ff0a0000000000 ............ +392 1.108675241 127.0.0.1:57415 127.0.0.1:57433 3333516587 12 1e000000b5250b0000000000 .....%...... +394 1.108828306 127.0.0.1:57415 127.0.0.1:57433 3333516599 30 1a00000055ceff62b21b3a500100030000000d9d1f000000000000000000 ....U..b..:P.................. +396 1.109097242 127.0.0.1:57433 127.0.0.1:57415 377455565 12 ffffffffb5250b0000000000 .....%...... +398 1.110733509 127.0.0.1:57433 127.0.0.1:57415 377455577 12 1a000000e8ff0a0000000000 ............ +400 1.110894918 127.0.0.1:57433 127.0.0.1:57415 377455589 26 160000000d9d1f00000000000100030000000000000000000000 .......................... +402 1.111183643 127.0.0.1:57415 127.0.0.1:57433 3333516629 12 ffffffffe8ff0a0000000000 ............ +406 1.140822411 127.0.0.1:57415 127.0.0.1:57433 3333516641 12 1a000000b6250b0000000000 .....%...... +408 1.140946150 127.0.0.1:57415 127.0.0.1:57433 3333516653 26 16000000548f6340e25e31400100030000000f9d1f0000000000 ....T.c@.^1@.............. +410 1.141477823 127.0.0.1:57433 127.0.0.1:57415 377455615 12 ffffffffb6250b0000000000 .....%...... +412 1.141978979 127.0.0.1:57433 127.0.0.1:57415 377455627 12 16000000e9ff0a0000000000 ............ +414 1.142177105 127.0.0.1:57433 127.0.0.1:57415 377455639 22 120000000f9d1f000000000001000300000000000000 ...................... +416 1.142474651 127.0.0.1:57415 127.0.0.1:57433 3333516679 12 ffffffffe9ff0a0000000000 ............ +418 1.142683268 127.0.0.1:57433 127.0.0.1:57415 377455661 12 fefffffff543010006440100 .....C...D.. +426 1.243473291 127.0.0.1:57415 127.0.0.1:57433 3333516691 12 1a000000b7250b0000000000 .....%...... +428 1.243649244 127.0.0.1:57415 127.0.0.1:57433 3333516703 26 16000000548f6340e25e3140010003000000119d1f0000000000 ....T.c@.^1@.............. +430 1.243983269 127.0.0.1:57433 127.0.0.1:57415 377455673 12 ffffffffb7250b0000000000 .....%...... +432 1.244450808 127.0.0.1:57433 127.0.0.1:57415 377455685 12 16000000eaff0a0000000000 ............ +434 1.244599342 127.0.0.1:57433 127.0.0.1:57415 377455697 22 12000000119d1f000000000001000300000000000000 ...................... +436 1.244879246 127.0.0.1:57415 127.0.0.1:57433 3333516729 12 ffffffffeaff0a0000000000 ............ +440 1.347284794 127.0.0.1:57415 127.0.0.1:57433 3333516741 12 1a000000b8250b0000000000 .....%...... +442 1.347464323 127.0.0.1:57415 127.0.0.1:57433 3333516753 26 16000000548f6340e25e3140010003000000139d1f0000000000 ....T.c@.^1@.............. +444 1.347845078 127.0.0.1:57433 127.0.0.1:57415 377455719 12 ffffffffb8250b0000000000 .....%...... +446 1.348396063 127.0.0.1:57433 127.0.0.1:57415 377455731 12 16000000ebff0a0000000000 ............ +448 1.348586559 127.0.0.1:57433 127.0.0.1:57415 377455743 22 12000000139d1f000000000001000300000000000000 ...................... +450 1.348793983 127.0.0.1:57415 127.0.0.1:57433 3333516779 12 ffffffffebff0a0000000000 ............ +456 1.380633116 127.0.0.1:57415 127.0.0.1:57433 3333516791 12 feffffff07440100f5430100 .....D...C.. +460 1.410372257 127.0.0.1:57415 127.0.0.1:57433 3333516803 12 65000000b9250b0000000000 e....%...... +462 1.410538435 127.0.0.1:57415 127.0.0.1:57433 3333516815 101 1e0000001c2118d0c46f33bb0100030000003a13020000000000899225c39d01 .....!...o3.......:.........%.....?.....3...|8.. +464 1.410897493 127.0.0.1:57433 127.0.0.1:57415 377455765 12 ffffffffb9250b0000000000 .....%...... +466 1.412367344 127.0.0.1:57433 127.0.0.1:57415 377455777 12 34000000ecff0a0000000000 4........... +468 1.412651539 127.0.0.1:57433 127.0.0.1:57415 377455789 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....:...........?. +470 1.412997961 127.0.0.1:57415 127.0.0.1:57433 3333516916 12 ffffffffecff0a0000000000 ............ +472 1.414038897 127.0.0.1:57415 127.0.0.1:57433 3333516928 12 1e000000ba250b0000000000 .....%...... +474 1.414236069 127.0.0.1:57415 127.0.0.1:57433 3333516940 30 1a00000055ceff62b21b3a50010003000000159d1f000000000000000000 ....U..b..:P.................. +476 1.414582253 127.0.0.1:57433 127.0.0.1:57415 377455841 12 ffffffffba250b0000000000 .....%...... +478 1.415028334 127.0.0.1:57433 127.0.0.1:57415 377455853 12 1a000000edff0a0000000000 ............ +480 1.415190220 127.0.0.1:57433 127.0.0.1:57415 377455865 26 16000000159d1f00000000000100030000000000000000000000 .......................... +482 1.415645361 127.0.0.1:57415 127.0.0.1:57433 3333516970 12 ffffffffedff0a0000000000 ............ +486 1.449851036 127.0.0.1:57415 127.0.0.1:57433 3333516982 12 1a000000bb250b0000000000 .....%...... +488 1.450029612 127.0.0.1:57415 127.0.0.1:57433 3333516994 26 16000000548f6340e25e3140010003000000179d1f0000000000 ....T.c@.^1@.............. +490 1.450496435 127.0.0.1:57433 127.0.0.1:57415 377455891 12 ffffffffbb250b0000000000 .....%...... +492 1.450851440 127.0.0.1:57433 127.0.0.1:57415 377455903 12 16000000eeff0a0000000000 ............ +494 1.451026678 127.0.0.1:57433 127.0.0.1:57415 377455915 22 12000000179d1f000000000001000300000000000000 ...................... +496 1.451317549 127.0.0.1:57415 127.0.0.1:57433 3333517020 12 ffffffffeeff0a0000000000 ............ +500 1.552879572 127.0.0.1:57415 127.0.0.1:57433 3333517032 12 1a000000bc250b0000000000 .....%...... +502 1.553054333 127.0.0.1:57415 127.0.0.1:57433 3333517044 26 16000000548f6340e25e3140010003000000199d1f0000000000 ....T.c@.^1@.............. +504 1.553401470 127.0.0.1:57433 127.0.0.1:57415 377455937 12 ffffffffbc250b0000000000 .....%...... +506 1.553897142 127.0.0.1:57433 127.0.0.1:57415 377455949 12 16000000efff0a0000000000 ............ +508 1.554042578 127.0.0.1:57433 127.0.0.1:57415 377455961 22 12000000199d1f000000000001000300000000000000 ...................... +510 1.554418564 127.0.0.1:57415 127.0.0.1:57433 3333517070 12 ffffffffefff0a0000000000 ............ +514 1.643070936 127.0.0.1:57433 127.0.0.1:57415 377455983 12 fefffffff643010007440100 .....C...D.. +520 1.656700373 127.0.0.1:57415 127.0.0.1:57433 3333517082 12 1a000000bd250b0000000000 .....%...... +522 1.656892776 127.0.0.1:57415 127.0.0.1:57433 3333517094 26 16000000548f6340e25e31400100030000001b9d1f0000000000 ....T.c@.^1@.............. +524 1.657279253 127.0.0.1:57433 127.0.0.1:57415 377455995 12 ffffffffbd250b0000000000 .....%...... +526 1.657802343 127.0.0.1:57433 127.0.0.1:57415 377456007 12 16000000f0ff0a0000000000 ............ +528 1.658004045 127.0.0.1:57433 127.0.0.1:57415 377456019 22 120000001b9d1f000000000001000300000000000000 ...................... +530 1.658347607 127.0.0.1:57415 127.0.0.1:57433 3333517120 12 fffffffff0ff0a0000000000 ............ +532 1.715655088 127.0.0.1:57415 127.0.0.1:57433 3333517132 12 22000000be250b0000000000 "....%...... +534 1.715882063 127.0.0.1:57415 127.0.0.1:57433 3333517144 34 1e0000001c2118d0c46f33bb0100030000003b13020000000000ba9325c39d01 .....!...o3.......;.........%..... +536 1.716109037 127.0.0.1:57415 127.0.0.1:57433 3333517178 12 43000000bf250b0000000000 C....%...... +538 1.716202021 127.0.0.1:57415 127.0.0.1:57433 3333517190 67 3f000000980433cb0cb47c3801000300000001000000003b130200000000003d ?.....3...|8...........;.......=B.....&......... +540 1.716346741 127.0.0.1:57433 127.0.0.1:57415 377456041 12 ffffffffbe250b0000000000 .....%...... +542 1.716612101 127.0.0.1:57433 127.0.0.1:57415 377456053 12 ffffffffbf250b0000000000 .....%...... +544 1.719238997 127.0.0.1:57433 127.0.0.1:57415 377456065 12 34000000f1ff0a0000000000 4........... +546 1.719558239 127.0.0.1:57433 127.0.0.1:57415 377456077 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....;.........&.n. +548 1.719835997 127.0.0.1:57415 127.0.0.1:57433 3333517257 12 fffffffff1ff0a0000000000 ............ +550 1.720757961 127.0.0.1:57415 127.0.0.1:57433 3333517269 12 1e000000c0250b0000000000 .....%...... +552 1.720908642 127.0.0.1:57415 127.0.0.1:57433 3333517281 30 1a00000055ceff62b21b3a500100030000001d9d1f000000000000000000 ....U..b..:P.................. +554 1.721240044 127.0.0.1:57433 127.0.0.1:57415 377456129 12 ffffffffc0250b0000000000 .....%...... +556 1.721751213 127.0.0.1:57433 127.0.0.1:57415 377456141 12 1a000000f2ff0a0000000000 ............ +558 1.721912384 127.0.0.1:57433 127.0.0.1:57415 377456153 26 160000001d9d1f00000000000100030000000000000000000000 .......................... +560 1.722153425 127.0.0.1:57415 127.0.0.1:57433 3333517311 12 fffffffff2ff0a0000000000 ............ +564 1.760058403 127.0.0.1:57415 127.0.0.1:57433 3333517323 12 1a000000c1250b0000000000 .....%...... +566 1.760228634 127.0.0.1:57415 127.0.0.1:57433 3333517335 26 16000000548f6340e25e31400100030000001f9d1f0000000000 ....T.c@.^1@.............. +568 1.760557413 127.0.0.1:57433 127.0.0.1:57415 377456179 12 ffffffffc1250b0000000000 .....%...... +570 1.760925293 127.0.0.1:57433 127.0.0.1:57415 377456191 12 16000000f3ff0a0000000000 ............ +572 1.761101484 127.0.0.1:57433 127.0.0.1:57415 377456203 22 120000001f9d1f000000000001000300000000000000 ...................... +574 1.761353970 127.0.0.1:57415 127.0.0.1:57433 3333517361 12 fffffffff3ff0a0000000000 ............ +578 1.863251686 127.0.0.1:57415 127.0.0.1:57433 3333517373 12 1a000000c2250b0000000000 .....%...... +580 1.863492250 127.0.0.1:57415 127.0.0.1:57433 3333517385 26 16000000548f6340e25e3140010003000000219d1f0000000000 ....T.c@.^1@......!....... +582 1.864067793 127.0.0.1:57433 127.0.0.1:57415 377456225 12 ffffffffc2250b0000000000 .....%...... +584 1.864554644 127.0.0.1:57433 127.0.0.1:57415 377456237 12 16000000f4ff0a0000000000 ............ +586 1.864719391 127.0.0.1:57433 127.0.0.1:57415 377456249 22 12000000219d1f000000000001000300000000000000 ....!................. +588 1.864992857 127.0.0.1:57415 127.0.0.1:57433 3333517411 12 fffffffff4ff0a0000000000 ............ +664 1.881979704 127.0.0.1:57415 127.0.0.1:57433 3333517423 12 feffffff08440100f6430100 .....D...C.. +686 1.967336178 127.0.0.1:57415 127.0.0.1:57433 3333517435 12 1a000000c3250b0000000000 .....%...... +688 1.967553377 127.0.0.1:57415 127.0.0.1:57433 3333517447 26 16000000548f6340e25e3140010003000000239d1f0000000000 ....T.c@.^1@......#....... +690 1.967810154 127.0.0.1:57433 127.0.0.1:57415 377456271 12 ffffffffc3250b0000000000 .....%...... +692 1.968257904 127.0.0.1:57433 127.0.0.1:57415 377456283 12 16000000f5ff0a0000000000 ............ +694 1.968444347 127.0.0.1:57433 127.0.0.1:57415 377456295 22 12000000239d1f000000000001000300000000000000 ....#................. +696 1.968867779 127.0.0.1:57415 127.0.0.1:57433 3333517473 12 fffffffff5ff0a0000000000 ............ +828 2.023535490 127.0.0.1:57415 127.0.0.1:57433 3333517485 12 65000000c4250b0000000000 e....%...... +830 2.023753881 127.0.0.1:57415 127.0.0.1:57433 3333517497 101 1e0000001c2118d0c46f33bb0100030000003c13020000000000ee9425c39d01 .....!...o3.......<.........%.....?.....3...|8.. +832 2.024115562 127.0.0.1:57433 127.0.0.1:57415 377456317 12 ffffffffc4250b0000000000 .....%...... +834 2.025698900 127.0.0.1:57433 127.0.0.1:57415 377456329 12 34000000f6ff0a0000000000 4........... +836 2.025904655 127.0.0.1:57433 127.0.0.1:57415 377456341 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....<..........E.. +838 2.026188135 127.0.0.1:57415 127.0.0.1:57433 3333517598 12 fffffffff6ff0a0000000000 ............ +840 2.028011560 127.0.0.1:57415 127.0.0.1:57433 3333517610 12 1e000000c5250b0000000000 .....%...... +842 2.028208971 127.0.0.1:57415 127.0.0.1:57433 3333517622 30 1a00000055ceff62b21b3a50010003000000259d1f000000000000000000 ....U..b..:P......%........... +844 2.028655529 127.0.0.1:57433 127.0.0.1:57415 377456393 12 ffffffffc5250b0000000000 .....%...... +846 2.028916836 127.0.0.1:57433 127.0.0.1:57415 377456405 12 1a000000f7ff0a0000000000 ............ +848 2.029075146 127.0.0.1:57433 127.0.0.1:57415 377456417 26 16000000259d1f00000000000100030000000000000000000000 ....%..................... +850 2.029324532 127.0.0.1:57415 127.0.0.1:57433 3333517652 12 fffffffff7ff0a0000000000 ............ +852 2.070088863 127.0.0.1:57415 127.0.0.1:57433 3333517664 12 1a000000c6250b0000000000 .....%...... +854 2.070265532 127.0.0.1:57415 127.0.0.1:57433 3333517676 26 16000000548f6340e25e3140010003000000279d1f0000000000 ....T.c@.^1@......'....... +856 2.070677042 127.0.0.1:57433 127.0.0.1:57415 377456443 12 ffffffffc6250b0000000000 .....%...... +858 2.071191072 127.0.0.1:57433 127.0.0.1:57415 377456455 12 16000000f8ff0a0000000000 ............ +860 2.071384668 127.0.0.1:57433 127.0.0.1:57415 377456467 22 12000000279d1f000000000001000300000000000000 ....'................. +862 2.071825266 127.0.0.1:57415 127.0.0.1:57433 3333517702 12 fffffffff8ff0a0000000000 ............ +934 2.143056631 127.0.0.1:57433 127.0.0.1:57415 377456489 12 fefffffff743010008440100 .....C...D.. +940 2.173017025 127.0.0.1:57415 127.0.0.1:57433 3333517714 12 1a000000c7250b0000000000 .....%...... +942 2.173196554 127.0.0.1:57415 127.0.0.1:57433 3333517726 26 16000000548f6340e25e3140010003000000299d1f0000000000 ....T.c@.^1@......)....... +944 2.173547029 127.0.0.1:57433 127.0.0.1:57415 377456501 12 ffffffffc7250b0000000000 .....%...... +946 2.173959732 127.0.0.1:57433 127.0.0.1:57415 377456513 12 16000000f9ff0a0000000000 ............ +948 2.174120665 127.0.0.1:57433 127.0.0.1:57415 377456525 22 12000000299d1f000000000001000300000000000000 ....)................. +950 2.174587488 127.0.0.1:57415 127.0.0.1:57433 3333517752 12 fffffffff9ff0a0000000000 ............ +954 2.277015209 127.0.0.1:57415 127.0.0.1:57433 3333517764 12 1a000000c8250b0000000000 .....%...... +956 2.277196646 127.0.0.1:57415 127.0.0.1:57433 3333517776 26 16000000548f6340e25e31400100030000002b9d1f0000000000 ....T.c@.^1@......+....... +958 2.277513027 127.0.0.1:57433 127.0.0.1:57415 377456547 12 ffffffffc8250b0000000000 .....%...... +960 2.277908564 127.0.0.1:57433 127.0.0.1:57415 377456559 12 16000000faff0a0000000000 ............ +962 2.278072357 127.0.0.1:57433 127.0.0.1:57415 377456571 22 120000002b9d1f000000000001000300000000000000 ....+................. +964 2.278327465 127.0.0.1:57415 127.0.0.1:57433 3333517802 12 fffffffffaff0a0000000000 ............ +1042 2.329124451 127.0.0.1:57415 127.0.0.1:57433 3333517814 12 22000000c9250b0000000000 "....%...... +1044 2.329282761 127.0.0.1:57415 127.0.0.1:57433 3333517826 34 1e0000001c2118d0c46f33bb0100030000003d13020000000000209625c39d01 .....!...o3.......=....... .%..... +1046 2.329408646 127.0.0.1:57415 127.0.0.1:57433 3333517860 12 43000000ca250b0000000000 C....%...... +1048 2.329494238 127.0.0.1:57415 127.0.0.1:57433 3333517872 67 3f000000980433cb0cb47c3801000300000001000000003d130200000000003d ?.....3...|8...........=.......=B.....&......... +1050 2.329661608 127.0.0.1:57433 127.0.0.1:57415 377456593 12 ffffffffc9250b0000000000 .....%...... +1052 2.329913378 127.0.0.1:57433 127.0.0.1:57415 377456605 12 ffffffffca250b0000000000 .....%...... +1054 2.330772161 127.0.0.1:57433 127.0.0.1:57415 377456617 12 34000000fbff0a0000000000 4........... +1056 2.331090927 127.0.0.1:57433 127.0.0.1:57415 377456629 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....=............. +1058 2.331354380 127.0.0.1:57415 127.0.0.1:57433 3333517939 12 fffffffffbff0a0000000000 ............ +1060 2.331995487 127.0.0.1:57415 127.0.0.1:57433 3333517951 12 1e000000cb250b0000000000 .....%...... +1062 2.332249403 127.0.0.1:57415 127.0.0.1:57433 3333517963 30 1a00000055ceff62b21b3a500100030000002d9d1f000000000000000000 ....U..b..:P......-........... +1064 2.332580805 127.0.0.1:57433 127.0.0.1:57415 377456681 12 ffffffffcb250b0000000000 .....%...... +1066 2.332950115 127.0.0.1:57433 127.0.0.1:57415 377456693 12 1a000000fcff0a0000000000 ............ +1068 2.333120346 127.0.0.1:57433 127.0.0.1:57415 377456705 26 160000002d9d1f00000000000100030000000000000000000000 ....-..................... +1070 2.333356857 127.0.0.1:57415 127.0.0.1:57433 3333517993 12 fffffffffcff0a0000000000 ............ +1078 2.380346537 127.0.0.1:57415 127.0.0.1:57433 3333518005 12 1a000000cc250b0000000000 .....%...... +1080 2.380597830 127.0.0.1:57415 127.0.0.1:57433 3333518017 26 16000000548f6340e25e31400100030000002f9d1f0000000000 ....T.c@.^1@....../....... +1082 2.380942106 127.0.0.1:57433 127.0.0.1:57415 377456731 12 ffffffffcc250b0000000000 .....%...... +1084 2.381504536 127.0.0.1:57433 127.0.0.1:57415 377456743 12 16000000fdff0a0000000000 ............ +1086 2.381737947 127.0.0.1:57433 127.0.0.1:57415 377456755 22 120000002f9d1f000000000001000300000000000000 ..../................. +1088 2.381955862 127.0.0.1:57415 127.0.0.1:57433 3333518043 12 fffffffffdff0a0000000000 ............ +1091 2.382952452 127.0.0.1:57415 127.0.0.1:57433 3333518055 12 feffffff09440100f7430100 .....D...C.. +1098 2.483036995 127.0.0.1:57415 127.0.0.1:57433 3333518067 12 1a000000cd250b0000000000 .....%...... +1100 2.483215570 127.0.0.1:57415 127.0.0.1:57433 3333518079 26 16000000548f6340e25e3140010003000000319d1f0000000000 ....T.c@.^1@......1....... +1102 2.483481884 127.0.0.1:57433 127.0.0.1:57415 377456777 12 ffffffffcd250b0000000000 .....%...... +1104 2.484644651 127.0.0.1:57433 127.0.0.1:57415 377456789 12 16000000feff0a0000000000 ............ +1106 2.484861374 127.0.0.1:57433 127.0.0.1:57415 377456801 22 12000000319d1f000000000001000300000000000000 ....1................. +1108 2.485155821 127.0.0.1:57415 127.0.0.1:57433 3333518105 12 fffffffffeff0a0000000000 ............ +1110 2.586657047 127.0.0.1:57415 127.0.0.1:57433 3333518117 12 1a000000ce250b0000000000 .....%...... +1112 2.586832047 127.0.0.1:57415 127.0.0.1:57433 3333518129 26 16000000548f6340e25e3140010003000000339d1f0000000000 ....T.c@.^1@......3....... +1114 2.587244749 127.0.0.1:57433 127.0.0.1:57415 377456823 12 ffffffffce250b0000000000 .....%...... +1116 2.587654114 127.0.0.1:57433 127.0.0.1:57415 377456835 12 16000000ffff0a0000000000 ............ +1118 2.587847233 127.0.0.1:57433 127.0.0.1:57415 377456847 22 12000000339d1f000000000001000300000000000000 ....3................. +1120 2.588132620 127.0.0.1:57415 127.0.0.1:57433 3333518155 12 ffffffffffff0a0000000000 ............ +1122 2.633322477 127.0.0.1:57415 127.0.0.1:57433 3333518167 12 65000000cf250b0000000000 e....%...... +1124 2.633588791 127.0.0.1:57415 127.0.0.1:57433 3333518179 101 1e0000001c2118d0c46f33bb0100030000003e13020000000000519725c39d01 .....!...o3.......>.......Q.%.....?.....3...|8.. +1126 2.634074688 127.0.0.1:57433 127.0.0.1:57415 377456869 12 ffffffffcf250b0000000000 .....%...... +1128 2.635246038 127.0.0.1:57433 127.0.0.1:57415 377456881 12 3400000000000b0000000000 4........... +1130 2.635403395 127.0.0.1:57433 127.0.0.1:57415 377456893 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....>.........zS.. +1132 2.635619879 127.0.0.1:57415 127.0.0.1:57433 3333518280 12 ffffffff00000b0000000000 ............ +1134 2.636739254 127.0.0.1:57415 127.0.0.1:57433 3333518292 12 1e000000d0250b0000000000 .....%...... +1136 2.636907339 127.0.0.1:57415 127.0.0.1:57433 3333518304 30 1a00000055ceff62b21b3a50010003000000359d1f000000000000000000 ....U..b..:P......5........... +1138 2.637315035 127.0.0.1:57433 127.0.0.1:57415 377456945 12 ffffffffd0250b0000000000 .....%...... +1140 2.637713194 127.0.0.1:57433 127.0.0.1:57415 377456957 12 1a00000001000b0000000000 ............ +1142 2.637879372 127.0.0.1:57433 127.0.0.1:57415 377456969 26 16000000359d1f00000000000100030000000000000000000000 ....5..................... +1144 2.638182878 127.0.0.1:57415 127.0.0.1:57433 3333518334 12 ffffffff01000b0000000000 ............ +1148 2.643671989 127.0.0.1:57433 127.0.0.1:57415 377456995 12 fefffffff843010009440100 .....C...D.. +1154 2.690069437 127.0.0.1:57415 127.0.0.1:57433 3333518346 12 1a000000d1250b0000000000 .....%...... +1156 2.690280437 127.0.0.1:57415 127.0.0.1:57433 3333518358 26 16000000548f6340e25e3140010003000000379d1f0000000000 ....T.c@.^1@......7....... +1158 2.690590382 127.0.0.1:57433 127.0.0.1:57415 377457007 12 ffffffffd1250b0000000000 .....%...... +1160 2.691401720 127.0.0.1:57433 127.0.0.1:57415 377457019 12 1600000002000b0000000000 ............ +1162 2.691588163 127.0.0.1:57433 127.0.0.1:57415 377457031 22 12000000379d1f000000000001000300000000000000 ....7................. +1164 2.691917896 127.0.0.1:57415 127.0.0.1:57433 3333518384 12 ffffffff02000b0000000000 ............ +1175 2.793115854 127.0.0.1:57415 127.0.0.1:57433 3333518396 12 1a000000d2250b0000000000 .....%...... +1177 2.793303728 127.0.0.1:57415 127.0.0.1:57433 3333518408 26 16000000548f6340e25e3140010003000000399d1f0000000000 ....T.c@.^1@......9....... +1179 2.793666601 127.0.0.1:57433 127.0.0.1:57415 377457053 12 ffffffffd2250b0000000000 .....%...... +1181 2.794227839 127.0.0.1:57433 127.0.0.1:57415 377457065 12 1600000003000b0000000000 ............ +1183 2.794489861 127.0.0.1:57433 127.0.0.1:57415 377457077 22 12000000399d1f000000000001000300000000000000 ....9................. +1185 2.794770241 127.0.0.1:57415 127.0.0.1:57433 3333518434 12 ffffffff03000b0000000000 ............ +1205 2.884166956 127.0.0.1:57415 127.0.0.1:57433 3333518446 12 feffffff0a440100f8430100 .....D...C.. +1209 2.896112204 127.0.0.1:57415 127.0.0.1:57433 3333518458 12 1a000000d3250b0000000000 .....%...... +1211 2.896277428 127.0.0.1:57415 127.0.0.1:57433 3333518470 26 16000000548f6340e25e31400100030000003b9d1f0000000000 ....T.c@.^1@......;....... +1213 2.896803856 127.0.0.1:57433 127.0.0.1:57415 377457099 12 ffffffffd3250b0000000000 .....%...... +1215 2.897237539 127.0.0.1:57433 127.0.0.1:57415 377457111 12 1600000004000b0000000000 ............ +1217 2.897534370 127.0.0.1:57433 127.0.0.1:57415 377457123 22 120000003b9d1f000000000001000300000000000000 ....;................. +1219 2.897893429 127.0.0.1:57415 127.0.0.1:57433 3333518496 12 ffffffff04000b0000000000 ............ +1227 2.938454151 127.0.0.1:57415 127.0.0.1:57433 3333518508 12 22000000d4250b0000000000 "....%...... +1229 2.938654661 127.0.0.1:57415 127.0.0.1:57433 3333518520 34 1e0000001c2118d0c46f33bb0100030000003f13020000000000819825c39d01 .....!...o3.......?.........%..... +1231 2.938797712 127.0.0.1:57415 127.0.0.1:57433 3333518554 12 43000000d5250b0000000000 C....%...... +1233 2.938885689 127.0.0.1:57415 127.0.0.1:57433 3333518566 67 3f000000980433cb0cb47c3801000300000001000000003f130200000000003d ?.....3...|8...........?.......=B.....&......... +1235 2.938967705 127.0.0.1:57433 127.0.0.1:57415 377457145 12 ffffffffd4250b0000000000 .....%...... +1237 2.939134836 127.0.0.1:57433 127.0.0.1:57415 377457157 12 ffffffffd5250b0000000000 .....%...... +1239 2.940384626 127.0.0.1:57433 127.0.0.1:57415 377457169 12 3400000005000b0000000000 4........... +1241 2.940590382 127.0.0.1:57433 127.0.0.1:57415 377457181 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....?...........(. +1243 2.940860271 127.0.0.1:57415 127.0.0.1:57433 3333518633 12 ffffffff05000b0000000000 ............ +1245 2.941761971 127.0.0.1:57415 127.0.0.1:57433 3333518645 12 1e000000d6250b0000000000 .....%...... +1247 2.941908836 127.0.0.1:57415 127.0.0.1:57433 3333518657 30 1a00000055ceff62b21b3a500100030000003d9d1f000000000000000000 ....U..b..:P......=........... +1249 2.942224741 127.0.0.1:57433 127.0.0.1:57415 377457233 12 ffffffffd6250b0000000000 .....%...... +1251 2.942583799 127.0.0.1:57433 127.0.0.1:57415 377457245 12 1a00000006000b0000000000 ............ +1253 2.942723036 127.0.0.1:57433 127.0.0.1:57415 377457257 26 160000003d9d1f00000000000100030000000000000000000000 ....=..................... +1255 2.942961216 127.0.0.1:57415 127.0.0.1:57433 3333518687 12 ffffffff06000b0000000000 ............ +1264 3.000735760 127.0.0.1:57415 127.0.0.1:57433 3333518699 12 1a000000d7250b0000000000 .....%...... +1266 3.000939846 127.0.0.1:57415 127.0.0.1:57433 3333518711 26 16000000548f6340e25e31400100030000003f9d1f0000000000 ....T.c@.^1@......?....... +1268 3.001279354 127.0.0.1:57433 127.0.0.1:57415 377457283 12 ffffffffd7250b0000000000 .....%...... +1270 3.001767874 127.0.0.1:57433 127.0.0.1:57415 377457295 12 1600000007000b0000000000 ............ +1272 3.001929760 127.0.0.1:57433 127.0.0.1:57415 377457307 22 120000003f9d1f000000000001000300000000000000 ....?................. +1274 3.002333164 127.0.0.1:57415 127.0.0.1:57433 3333518737 12 ffffffff07000b0000000000 ............ +1298 3.103445292 127.0.0.1:57415 127.0.0.1:57433 3333518749 12 1a000000d8250b0000000000 .....%...... +1300 3.103618860 127.0.0.1:57415 127.0.0.1:57433 3333518761 26 16000000548f6340e25e3140010003000000419d1f0000000000 ....T.c@.^1@......A....... +1302 3.103917360 127.0.0.1:57433 127.0.0.1:57415 377457329 12 ffffffffd8250b0000000000 .....%...... +1304 3.104406834 127.0.0.1:57433 127.0.0.1:57415 377457341 12 1600000008000b0000000000 ............ +1306 3.104570150 127.0.0.1:57433 127.0.0.1:57415 377457353 22 12000000419d1f000000000001000300000000000000 ....A................. +1308 3.104869127 127.0.0.1:57415 127.0.0.1:57433 3333518787 12 ffffffff08000b0000000000 ............ +1320 3.144897461 127.0.0.1:57433 127.0.0.1:57415 377457375 12 fefffffff94301000a440100 .....C...D.. +1329 3.206283331 127.0.0.1:57415 127.0.0.1:57433 3333518799 12 1a000000d9250b0000000000 .....%...... +1331 3.206631660 127.0.0.1:57415 127.0.0.1:57433 3333518811 26 16000000548f6340e25e3140010003000000439d1f0000000000 ....T.c@.^1@......C....... +1333 3.206944466 127.0.0.1:57433 127.0.0.1:57415 377457387 12 ffffffffd9250b0000000000 .....%...... +1335 3.207443476 127.0.0.1:57433 127.0.0.1:57415 377457399 12 1600000009000b0000000000 ............ +1337 3.207844734 127.0.0.1:57433 127.0.0.1:57415 377457411 22 12000000439d1f000000000001000300000000000000 ....C................. +1339 3.208272219 127.0.0.1:57415 127.0.0.1:57433 3333518837 12 ffffffff09000b0000000000 ............ +1345 3.244517803 127.0.0.1:57415 127.0.0.1:57433 3333518849 12 22000000da250b0000000000 "....%...... +1347 3.244690418 127.0.0.1:57415 127.0.0.1:57433 3333518861 34 1e0000001c2118d0c46f33bb0100030000004013020000000000b39925c39d01 .....!...o3.......@.........%..... +1349 3.244870424 127.0.0.1:57415 127.0.0.1:57433 3333518895 12 43000000db250b0000000000 C....%...... +1351 3.244961262 127.0.0.1:57415 127.0.0.1:57433 3333518907 67 3f000000980433cb0cb47c38010003000000010000000040130200000000003d ?.....3...|8...........@.......=B.....&......... +1353 3.245182753 127.0.0.1:57433 127.0.0.1:57415 377457433 12 ffffffffda250b0000000000 .....%...... +1355 3.245362759 127.0.0.1:57433 127.0.0.1:57415 377457445 12 ffffffffdb250b0000000000 .....%...... +1357 3.246139765 127.0.0.1:57433 127.0.0.1:57415 377457457 12 340000000a000b0000000000 4........... +1359 3.246285439 127.0.0.1:57433 127.0.0.1:57415 377457469 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....@...........W. +1361 3.246658802 127.0.0.1:57415 127.0.0.1:57433 3333518974 12 ffffffff0a000b0000000000 ............ +1363 3.247580767 127.0.0.1:57415 127.0.0.1:57433 3333518986 12 1e000000dc250b0000000000 .....%...... +1365 3.247828007 127.0.0.1:57415 127.0.0.1:57433 3333518998 30 1a00000055ceff62b21b3a50010003000000459d1f000000000000000000 ....U..b..:P......E........... +1367 3.248179913 127.0.0.1:57433 127.0.0.1:57415 377457521 12 ffffffffdc250b0000000000 .....%...... +1369 3.248637199 127.0.0.1:57433 127.0.0.1:57415 377457533 12 1a0000000b000b0000000000 ............ +1371 3.248811007 127.0.0.1:57433 127.0.0.1:57415 377457545 26 16000000459d1f00000000000100030000000000000000000000 ....E..................... +1373 3.249057770 127.0.0.1:57415 127.0.0.1:57433 3333519028 12 ffffffff0b000b0000000000 ............ +1446 3.311104536 127.0.0.1:57415 127.0.0.1:57433 3333519040 12 1a000000dd250b0000000000 .....%...... +1448 3.311269045 127.0.0.1:57415 127.0.0.1:57433 3333519052 26 16000000548f6340e25e3140010003000000479d1f0000000000 ....T.c@.^1@......G....... +1450 3.311712742 127.0.0.1:57433 127.0.0.1:57415 377457571 12 ffffffffdd250b0000000000 .....%...... +1452 3.312069654 127.0.0.1:57433 127.0.0.1:57415 377457583 12 160000000c000b0000000000 ............ +1454 3.312226772 127.0.0.1:57433 127.0.0.1:57415 377457595 22 12000000479d1f000000000001000300000000000000 ....G................. +1456 3.312648296 127.0.0.1:57415 127.0.0.1:57433 3333519078 12 ffffffff0c000b0000000000 ............ +1464 3.384802341 127.0.0.1:57415 127.0.0.1:57433 3333519090 12 feffffff0b440100f9430100 .....D...C.. +1469 3.415063620 127.0.0.1:57415 127.0.0.1:57433 3333519102 12 1a000000de250b0000000000 .....%...... +1471 3.415226698 127.0.0.1:57415 127.0.0.1:57433 3333519114 26 16000000548f6340e25e3140010003000000499d1f0000000000 ....T.c@.^1@......I....... +1473 3.415572643 127.0.0.1:57433 127.0.0.1:57415 377457617 12 ffffffffde250b0000000000 .....%...... +1475 3.415977240 127.0.0.1:57433 127.0.0.1:57415 377457629 12 160000000d000b0000000000 ............ +1477 3.416139126 127.0.0.1:57433 127.0.0.1:57415 377457641 22 12000000499d1f000000000001000300000000000000 ....I................. +1479 3.416424751 127.0.0.1:57415 127.0.0.1:57433 3333519140 12 ffffffff0d000b0000000000 ............ +1489 3.518413067 127.0.0.1:57415 127.0.0.1:57433 3333519152 12 1a000000df250b0000000000 .....%...... +1491 3.518684626 127.0.0.1:57415 127.0.0.1:57433 3333519164 26 16000000548f6340e25e31400100030000004b9d1f0000000000 ....T.c@.^1@......K....... +1493 3.519109964 127.0.0.1:57433 127.0.0.1:57415 377457663 12 ffffffffdf250b0000000000 .....%...... +1495 3.519446850 127.0.0.1:57433 127.0.0.1:57415 377457675 12 160000000e000b0000000000 ............ +1497 3.519773245 127.0.0.1:57433 127.0.0.1:57415 377457687 22 120000004b9d1f000000000001000300000000000000 ....K................. +1499 3.520044565 127.0.0.1:57415 127.0.0.1:57433 3333519190 12 ffffffff0e000b0000000000 ............ +1510 3.548621655 127.0.0.1:57415 127.0.0.1:57433 3333519202 12 65000000e0250b0000000000 e....%...... +1512 3.548874617 127.0.0.1:57415 127.0.0.1:57433 3333519214 101 1e0000001c2118d0c46f33bb0100030000004113020000000000e49a25c39d01 .....!...o3.......A.........%.....?.....3...|8.. +1514 3.549219847 127.0.0.1:57433 127.0.0.1:57415 377457709 12 ffffffffe0250b0000000000 .....%...... +1516 3.550068855 127.0.0.1:57433 127.0.0.1:57415 377457721 12 340000000f000b0000000000 4........... +1518 3.550222874 127.0.0.1:57433 127.0.0.1:57415 377457733 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....A............. +1520 3.550474405 127.0.0.1:57415 127.0.0.1:57433 3333519315 12 ffffffff0f000b0000000000 ............ +1522 3.551280975 127.0.0.1:57415 127.0.0.1:57433 3333519327 12 1e000000e1250b0000000000 .....%...... +1524 3.551424742 127.0.0.1:57415 127.0.0.1:57433 3333519339 30 1a00000055ceff62b21b3a500100030000004d9d1f000000000000000000 ....U..b..:P......M........... +1526 3.551777363 127.0.0.1:57433 127.0.0.1:57415 377457785 12 ffffffffe1250b0000000000 .....%...... +1528 3.552014589 127.0.0.1:57433 127.0.0.1:57415 377457797 12 1a00000010000b0000000000 ............ +1530 3.552159071 127.0.0.1:57433 127.0.0.1:57415 377457809 26 160000004d9d1f00000000000100030000000000000000000000 ....M..................... +1532 3.552566290 127.0.0.1:57415 127.0.0.1:57433 3333519369 12 ffffffff10000b0000000000 ............ +1538 3.621283054 127.0.0.1:57415 127.0.0.1:57433 3333519381 12 1a000000e2250b0000000000 .....%...... +1540 3.621475458 127.0.0.1:57415 127.0.0.1:57433 3333519393 26 16000000548f6340e25e31400100030000004f9d1f0000000000 ....T.c@.^1@......O....... +1542 3.621821642 127.0.0.1:57433 127.0.0.1:57415 377457835 12 ffffffffe2250b0000000000 .....%...... +1544 3.622634411 127.0.0.1:57433 127.0.0.1:57415 377457847 12 1600000011000b0000000000 ............ +1546 3.622772217 127.0.0.1:57433 127.0.0.1:57415 377457859 22 120000004f9d1f000000000001000300000000000000 ....O................. +1548 3.623037577 127.0.0.1:57415 127.0.0.1:57433 3333519419 12 ffffffff11000b0000000000 ............ +1558 3.644740582 127.0.0.1:57433 127.0.0.1:57415 377457881 12 fefffffffa4301000b440100 .....C...D.. +1590 3.724333048 127.0.0.1:57415 127.0.0.1:57433 3333519431 12 1a000000e3250b0000000000 .....%...... +1593 3.724510431 127.0.0.1:57415 127.0.0.1:57433 3333519443 26 16000000548f6340e25e3140010003000000519d1f0000000000 ....T.c@.^1@......Q....... +1596 3.724957943 127.0.0.1:57433 127.0.0.1:57415 377457893 12 ffffffffe3250b0000000000 .....%...... +1598 3.725354195 127.0.0.1:57433 127.0.0.1:57415 377457905 12 1600000012000b0000000000 ............ +1600 3.725526094 127.0.0.1:57433 127.0.0.1:57415 377457917 22 12000000519d1f000000000001000300000000000000 ....Q................. +1602 3.725893021 127.0.0.1:57415 127.0.0.1:57433 3333519469 12 ffffffff12000b0000000000 ............ +1611 3.827182055 127.0.0.1:57415 127.0.0.1:57433 3333519481 12 1a000000e4250b0000000000 .....%...... +1613 3.827363968 127.0.0.1:57415 127.0.0.1:57433 3333519493 26 16000000548f6340e25e3140010003000000539d1f0000000000 ....T.c@.^1@......S....... +1615 3.827806473 127.0.0.1:57433 127.0.0.1:57415 377457939 12 ffffffffe4250b0000000000 .....%...... +1617 3.828261137 127.0.0.1:57433 127.0.0.1:57415 377457951 12 1600000013000b0000000000 ............ +1619 3.828461885 127.0.0.1:57433 127.0.0.1:57415 377457963 22 12000000539d1f000000000001000300000000000000 ....S................. +1621 3.828787804 127.0.0.1:57415 127.0.0.1:57433 3333519519 12 ffffffff13000b0000000000 ............ +1625 3.852471352 127.0.0.1:57415 127.0.0.1:57433 3333519531 12 65000000e5250b0000000000 e....%...... +1627 3.852695942 127.0.0.1:57415 127.0.0.1:57433 3333519543 101 1e0000001c2118d0c46f33bb0100030000004213020000000000139c25c39d01 .....!...o3.......B.........%.....?.....3...|8.. +1629 3.853018045 127.0.0.1:57433 127.0.0.1:57415 377457985 12 ffffffffe5250b0000000000 .....%...... +1632 3.854707241 127.0.0.1:57433 127.0.0.1:57415 377457997 12 3400000014000b0000000000 4........... +1634 3.854876280 127.0.0.1:57433 127.0.0.1:57415 377458009 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....B.........3g.. +1636 3.855146170 127.0.0.1:57415 127.0.0.1:57433 3333519644 12 ffffffff14000b0000000000 ............ +1638 3.856120348 127.0.0.1:57415 127.0.0.1:57433 3333519656 12 1e000000e6250b0000000000 .....%...... +1640 3.856320381 127.0.0.1:57415 127.0.0.1:57433 3333519668 30 1a00000055ceff62b21b3a50010003000000559d1f000000000000000000 ....U..b..:P......U........... +1642 3.856777430 127.0.0.1:57433 127.0.0.1:57415 377458061 12 ffffffffe6250b0000000000 .....%...... +1644 3.857140303 127.0.0.1:57433 127.0.0.1:57415 377458073 12 1a00000015000b0000000000 ............ +1646 3.857291937 127.0.0.1:57433 127.0.0.1:57415 377458085 26 16000000559d1f00000000000100030000000000000000000000 ....U..................... +1648 3.857647657 127.0.0.1:57415 127.0.0.1:57433 3333519698 12 ffffffff15000b0000000000 ............ +1654 3.885697126 127.0.0.1:57415 127.0.0.1:57433 3333519710 12 feffffff0c440100fa430100 .....D...C.. +1664 3.930432320 127.0.0.1:57415 127.0.0.1:57433 3333519722 12 1a000000e7250b0000000000 .....%...... +1666 3.930603266 127.0.0.1:57415 127.0.0.1:57433 3333519734 26 16000000548f6340e25e3140010003000000579d1f0000000000 ....T.c@.^1@......W....... +1668 3.930928707 127.0.0.1:57433 127.0.0.1:57415 377458111 12 ffffffffe7250b0000000000 .....%...... +1670 3.932100058 127.0.0.1:57433 127.0.0.1:57415 377458123 12 1600000016000b0000000000 ............ +1672 3.932249784 127.0.0.1:57433 127.0.0.1:57415 377458135 22 12000000579d1f000000000001000300000000000000 ....W................. +1674 3.932512283 127.0.0.1:57415 127.0.0.1:57433 3333519760 12 ffffffff16000b0000000000 ............ +1697 4.034073353 127.0.0.1:57415 127.0.0.1:57433 3333519772 12 1a000000e8250b0000000000 .....%...... +1699 4.034236431 127.0.0.1:57415 127.0.0.1:57433 3333519784 26 16000000548f6340e25e3140010003000000599d1f0000000000 ....T.c@.^1@......Y....... +1701 4.034558773 127.0.0.1:57433 127.0.0.1:57415 377458157 12 ffffffffe8250b0000000000 .....%...... +1703 4.035125971 127.0.0.1:57433 127.0.0.1:57415 377458169 12 1600000017000b0000000000 ............ +1705 4.035286188 127.0.0.1:57433 127.0.0.1:57415 377458181 22 12000000599d1f000000000001000300000000000000 ....Y................. +1707 4.035537720 127.0.0.1:57415 127.0.0.1:57433 3333519810 12 ffffffff17000b0000000000 ............ +1725 4.138205290 127.0.0.1:57415 127.0.0.1:57433 3333519822 12 1a000000e9250b0000000000 .....%...... +1727 4.138461113 127.0.0.1:57415 127.0.0.1:57433 3333519834 26 16000000548f6340e25e31400100030000005b9d1f0000000000 ....T.c@.^1@......[....... +1729 4.138730764 127.0.0.1:57433 127.0.0.1:57415 377458203 12 ffffffffe9250b0000000000 .....%...... +1731 4.139205933 127.0.0.1:57433 127.0.0.1:57415 377458215 12 1600000018000b0000000000 ............ +1733 4.139433146 127.0.0.1:57433 127.0.0.1:57415 377458227 22 120000005b9d1f000000000001000300000000000000 ....[................. +1735 4.139727831 127.0.0.1:57415 127.0.0.1:57433 3333519860 12 ffffffff18000b0000000000 ............ +1739 4.145129681 127.0.0.1:57433 127.0.0.1:57415 377458249 12 fefffffffb4301000c440100 .....C...D.. +1745 4.157303095 127.0.0.1:57415 127.0.0.1:57433 3333519872 12 65000000ea250b0000000000 e....%...... +1747 4.157523155 127.0.0.1:57415 127.0.0.1:57433 3333519884 101 1e0000001c2118d0c46f33bb0100030000004313020000000000449d25c39d01 .....!...o3.......C.......D.%.....?.....3...|8.. +1749 4.157850266 127.0.0.1:57433 127.0.0.1:57415 377458261 12 ffffffffea250b0000000000 .....%...... +1751 4.158781052 127.0.0.1:57433 127.0.0.1:57415 377458273 12 3400000019000b0000000000 4........... +1753 4.158936977 127.0.0.1:57433 127.0.0.1:57415 377458285 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....C............. +1755 4.159210920 127.0.0.1:57415 127.0.0.1:57433 3333519985 12 ffffffff19000b0000000000 ............ +1757 4.160176516 127.0.0.1:57415 127.0.0.1:57433 3333519997 12 1e000000eb250b0000000000 .....%...... +1759 4.160333633 127.0.0.1:57415 127.0.0.1:57433 3333520009 30 1a00000055ceff62b21b3a500100030000005d9d1f000000000000000000 ....U..b..:P......]........... +1761 4.160834312 127.0.0.1:57433 127.0.0.1:57415 377458337 12 ffffffffeb250b0000000000 .....%...... +1763 4.161074162 127.0.0.1:57433 127.0.0.1:57415 377458349 12 1a0000001a000b0000000000 ............ +1765 4.161252499 127.0.0.1:57433 127.0.0.1:57415 377458361 26 160000005d9d1f00000000000100030000000000000000000000 ....]..................... +1767 4.161512375 127.0.0.1:57415 127.0.0.1:57433 3333520039 12 ffffffff1a000b0000000000 ............ +1797 4.241995335 127.0.0.1:57415 127.0.0.1:57433 3333520051 12 1a000000ec250b0000000000 .....%...... +1799 4.242155552 127.0.0.1:57415 127.0.0.1:57433 3333520063 26 16000000548f6340e25e31400100030000005f9d1f0000000000 ....T.c@.^1@......_....... +1801 4.242535830 127.0.0.1:57433 127.0.0.1:57415 377458387 12 ffffffffec250b0000000000 .....%...... +1803 4.243995190 127.0.0.1:57433 127.0.0.1:57415 377458399 12 160000001b000b0000000000 ............ +1805 4.244135380 127.0.0.1:57433 127.0.0.1:57415 377458411 22 120000005f9d1f000000000001000300000000000000 ...._................. +1807 4.244398355 127.0.0.1:57415 127.0.0.1:57433 3333520089 12 ffffffff1b000b0000000000 ............ +1815 4.347234249 127.0.0.1:57415 127.0.0.1:57433 3333520101 12 1a000000ed250b0000000000 .....%...... +1817 4.347495079 127.0.0.1:57415 127.0.0.1:57433 3333520113 26 16000000548f6340e25e3140010003000000619d1f0000000000 ....T.c@.^1@......a....... +1819 4.347942829 127.0.0.1:57433 127.0.0.1:57415 377458433 12 ffffffffed250b0000000000 .....%...... +1821 4.348362446 127.0.0.1:57433 127.0.0.1:57415 377458445 12 160000001c000b0000000000 ............ +1823 4.348560333 127.0.0.1:57433 127.0.0.1:57415 377458457 22 12000000619d1f000000000001000300000000000000 ....a................. +1825 4.348830700 127.0.0.1:57415 127.0.0.1:57433 3333520139 12 ffffffff1c000b0000000000 ............ +1841 4.388065577 127.0.0.1:57415 127.0.0.1:57433 3333520151 12 feffffff0d440100fb430100 .....D...C.. +1855 4.450612783 127.0.0.1:57415 127.0.0.1:57433 3333520163 12 1a000000ee250b0000000000 .....%...... +1857 4.450830936 127.0.0.1:57415 127.0.0.1:57433 3333520175 26 16000000548f6340e25e3140010003000000639d1f0000000000 ....T.c@.^1@......c....... +1859 4.451182842 127.0.0.1:57433 127.0.0.1:57415 377458479 12 ffffffffee250b0000000000 .....%...... +1861 4.451802015 127.0.0.1:57433 127.0.0.1:57415 377458491 12 160000001d000b0000000000 ............ +1863 4.452026129 127.0.0.1:57433 127.0.0.1:57415 377458503 22 12000000639d1f000000000001000300000000000000 ....c................. +1865 4.452323437 127.0.0.1:57415 127.0.0.1:57433 3333520201 12 ffffffff1d000b0000000000 ............ +1871 4.461250782 127.0.0.1:57415 127.0.0.1:57433 3333520213 12 22000000ef250b0000000000 "....%...... +1873 4.461532354 127.0.0.1:57415 127.0.0.1:57433 3333520225 34 1e0000001c2118d0c46f33bb0100030000004413020000000000749e25c39d01 .....!...o3.......D.......t.%..... +1875 4.461735487 127.0.0.1:57415 127.0.0.1:57433 3333520259 12 43000000f0250b0000000000 C....%...... +1877 4.461829662 127.0.0.1:57433 127.0.0.1:57415 377458525 12 ffffffffef250b0000000000 .....%...... +1879 4.462041378 127.0.0.1:57415 127.0.0.1:57433 3333520271 67 3f000000980433cb0cb47c38010003000000010000000044130200000000003d ?.....3...|8...........D.......=B.....&......... +1881 4.462403774 127.0.0.1:57433 127.0.0.1:57415 377458537 12 fffffffff0250b0000000000 .....%...... +1883 4.463298559 127.0.0.1:57433 127.0.0.1:57415 377458549 12 340000001e000b0000000000 4........... +1885 4.463467360 127.0.0.1:57433 127.0.0.1:57415 377458561 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....D..........E.. +1887 4.463635206 127.0.0.1:57415 127.0.0.1:57433 3333520338 12 ffffffff1e000b0000000000 ............ +1889 4.464893579 127.0.0.1:57415 127.0.0.1:57433 3333520350 12 1e000000f1250b0000000000 .....%...... +1891 4.465053558 127.0.0.1:57415 127.0.0.1:57433 3333520362 30 1a00000055ceff62b21b3a50010003000000659d1f000000000000000000 ....U..b..:P......e........... +1893 4.465383053 127.0.0.1:57433 127.0.0.1:57415 377458613 12 fffffffff1250b0000000000 .....%...... +1895 4.465880871 127.0.0.1:57433 127.0.0.1:57415 377458625 12 1a0000001f000b0000000000 ............ +1897 4.466033936 127.0.0.1:57433 127.0.0.1:57415 377458637 26 16000000659d1f00000000000100030000000000000000000000 ....e..................... +1899 4.466371059 127.0.0.1:57415 127.0.0.1:57433 3333520392 12 ffffffff1f000b0000000000 ............ +1919 4.554054499 127.0.0.1:57415 127.0.0.1:57433 3333520404 12 1a000000f2250b0000000000 .....%...... +1921 4.554236174 127.0.0.1:57415 127.0.0.1:57433 3333520416 26 16000000548f6340e25e3140010003000000679d1f0000000000 ....T.c@.^1@......g....... +1923 4.554591417 127.0.0.1:57433 127.0.0.1:57415 377458663 12 fffffffff2250b0000000000 .....%...... +1925 4.555043936 127.0.0.1:57433 127.0.0.1:57415 377458675 12 1600000020000b0000000000 .... ....... +1927 4.555213690 127.0.0.1:57433 127.0.0.1:57415 377458687 22 12000000679d1f000000000001000300000000000000 ....g................. +1929 4.555594683 127.0.0.1:57415 127.0.0.1:57433 3333520442 12 ffffffff20000b0000000000 .... ....... +1957 4.646390438 127.0.0.1:57433 127.0.0.1:57415 377458709 12 fefffffffc4301000d440100 .....C...D.. +1963 4.657119751 127.0.0.1:57415 127.0.0.1:57433 3333520454 12 1a000000f3250b0000000000 .....%...... +1965 4.657282591 127.0.0.1:57415 127.0.0.1:57433 3333520466 26 16000000548f6340e25e3140010003000000699d1f0000000000 ....T.c@.^1@......i....... +1967 4.657646418 127.0.0.1:57433 127.0.0.1:57415 377458721 12 fffffffff3250b0000000000 .....%...... +1969 4.658100128 127.0.0.1:57433 127.0.0.1:57415 377458733 12 1600000021000b0000000000 ....!....... +1971 4.658249617 127.0.0.1:57433 127.0.0.1:57415 377458745 22 12000000699d1f000000000001000300000000000000 ....i................. +1973 4.658445358 127.0.0.1:57415 127.0.0.1:57433 3333520492 12 ffffffff21000b0000000000 ....!....... +2001 4.760539055 127.0.0.1:57415 127.0.0.1:57433 3333520504 12 1a000000f4250b0000000000 .....%...... +2003 4.760708332 127.0.0.1:57415 127.0.0.1:57433 3333520516 26 16000000548f6340e25e31400100030000006b9d1f0000000000 ....T.c@.^1@......k....... +2005 4.761056900 127.0.0.1:57433 127.0.0.1:57415 377458767 12 fffffffff4250b0000000000 .....%...... +2007 4.761568069 127.0.0.1:57433 127.0.0.1:57415 377458779 12 1600000022000b0000000000 ...."....... +2009 4.761723042 127.0.0.1:57433 127.0.0.1:57415 377458791 22 120000006b9d1f000000000001000300000000000000 ....k................. +2011 4.762153149 127.0.0.1:57415 127.0.0.1:57433 3333520542 12 ffffffff22000b0000000000 ...."....... +2013 4.766844034 127.0.0.1:57415 127.0.0.1:57433 3333520554 12 22000000f5250b0000000000 "....%...... +2015 4.767057896 127.0.0.1:57415 127.0.0.1:57433 3333520566 34 1e0000001c2118d0c46f33bb0100030000004513020000000000a69f25c39d01 .....!...o3.......E.........%..... +2017 4.767203093 127.0.0.1:57415 127.0.0.1:57433 3333520600 12 43000000f6250b0000000000 C....%...... +2019 4.767287970 127.0.0.1:57415 127.0.0.1:57433 3333520612 67 3f000000980433cb0cb47c38010003000000010000000045130200000000003d ?.....3...|8...........E.......=B.....&......... +2020 4.767360210 127.0.0.1:57433 127.0.0.1:57415 377458813 12 fffffffff5250b0000000000 .....%...... +2022 4.767637014 127.0.0.1:57433 127.0.0.1:57415 377458825 12 fffffffff6250b0000000000 .....%...... +2024 4.768551350 127.0.0.1:57433 127.0.0.1:57415 377458837 12 3400000023000b0000000000 4...#....... +2026 4.768712759 127.0.0.1:57433 127.0.0.1:57415 377458849 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....E...........?. +2028 4.768891811 127.0.0.1:57415 127.0.0.1:57433 3333520679 12 ffffffff23000b0000000000 ....#....... +2030 4.769808054 127.0.0.1:57415 127.0.0.1:57433 3333520691 12 1e000000f7250b0000000000 .....%...... +2032 4.769977570 127.0.0.1:57415 127.0.0.1:57433 3333520703 30 1a00000055ceff62b21b3a500100030000006d9d1f000000000000000000 ....U..b..:P......m........... +2034 4.770303726 127.0.0.1:57433 127.0.0.1:57415 377458901 12 fffffffff7250b0000000000 .....%...... +2036 4.770684242 127.0.0.1:57433 127.0.0.1:57415 377458913 12 1a00000024000b0000000000 ....$....... +2038 4.770838976 127.0.0.1:57433 127.0.0.1:57415 377458925 26 160000006d9d1f00000000000100030000000000000000000000 ....m..................... +2040 4.771101475 127.0.0.1:57415 127.0.0.1:57433 3333520733 12 ffffffff24000b0000000000 ....$....... +2060 4.863500357 127.0.0.1:57415 127.0.0.1:57433 3333520745 12 1a000000f8250b0000000000 .....%...... +2062 4.863729239 127.0.0.1:57415 127.0.0.1:57433 3333520757 26 16000000548f6340e25e31400100030000006f9d1f0000000000 ....T.c@.^1@......o....... +2064 4.864034653 127.0.0.1:57433 127.0.0.1:57415 377458951 12 fffffffff8250b0000000000 .....%...... +2066 4.864533186 127.0.0.1:57433 127.0.0.1:57415 377458963 12 1600000025000b0000000000 ....%....... +2068 4.864737034 127.0.0.1:57433 127.0.0.1:57415 377458975 22 120000006f9d1f000000000001000300000000000000 ....o................. +2070 4.865077972 127.0.0.1:57415 127.0.0.1:57433 3333520783 12 ffffffff25000b0000000000 ....%....... +2080 4.890017748 127.0.0.1:57415 127.0.0.1:57433 3333520795 12 feffffff0e440100fc430100 .....D...C.. +2102 4.966938972 127.0.0.1:57415 127.0.0.1:57433 3333520807 12 1a000000f9250b0000000000 .....%...... +2104 4.967105865 127.0.0.1:57415 127.0.0.1:57433 3333520819 26 16000000548f6340e25e3140010003000000719d1f0000000000 ....T.c@.^1@......q....... +2106 4.967466831 127.0.0.1:57433 127.0.0.1:57415 377458997 12 fffffffff9250b0000000000 .....%...... +2108 4.967953682 127.0.0.1:57433 127.0.0.1:57415 377459009 12 1600000026000b0000000000 ....&....... +2110 4.968133450 127.0.0.1:57433 127.0.0.1:57415 377459021 22 12000000719d1f000000000001000300000000000000 ....q................. +2112 4.968522072 127.0.0.1:57415 127.0.0.1:57433 3333520845 12 ffffffff26000b0000000000 ....&....... +2160 5.069892645 127.0.0.1:57415 127.0.0.1:57433 3333520857 12 1a000000fa250b0000000000 .....%...... +2162 5.070069313 127.0.0.1:57415 127.0.0.1:57433 3333520869 26 16000000548f6340e25e3140010003000000739d1f0000000000 ....T.c@.^1@......s....... +2164 5.070443153 127.0.0.1:57433 127.0.0.1:57415 377459043 12 fffffffffa250b0000000000 .....%...... +2166 5.071012020 127.0.0.1:57433 127.0.0.1:57415 377459055 12 1600000027000b0000000000 ....'....... +2168 5.071249485 127.0.0.1:57433 127.0.0.1:57415 377459067 22 12000000739d1f000000000001000300000000000000 ....s................. +2169 5.071288586 127.0.0.1:57415 127.0.0.1:57433 3333520895 12 22000000fb250b0000000000 "....%...... +2172 5.071607590 127.0.0.1:57415 127.0.0.1:57433 3333520907 34 1e0000001c2118d0c46f33bb0100030000004613020000000000d6a025c39d01 .....!...o3.......F.........%..... +2174 5.071800709 127.0.0.1:57415 127.0.0.1:57433 3333520941 12 43000000fc250b0000000000 C....%...... +2176 5.071891069 127.0.0.1:57415 127.0.0.1:57433 3333520953 67 3f000000980433cb0cb47c38010003000000010000000046130200000000003d ?.....3...|8...........F.......=B.....&......... +2177 5.071913004 127.0.0.1:57433 127.0.0.1:57415 377459089 12 fffffffffb250b0000000000 .....%...... +2180 5.072201967 127.0.0.1:57415 127.0.0.1:57433 3333521020 12 ffffffff27000b0000000000 ....'....... +2182 5.072289467 127.0.0.1:57433 127.0.0.1:57415 377459101 12 fffffffffc250b0000000000 .....%...... +2187 5.073154926 127.0.0.1:57433 127.0.0.1:57415 377459113 12 3400000028000b0000000000 4...(....... +2189 5.073301792 127.0.0.1:57433 127.0.0.1:57415 377459125 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....F.........yUn. +2191 5.073514700 127.0.0.1:57415 127.0.0.1:57433 3333521032 12 ffffffff28000b0000000000 ....(....... +2193 5.074746847 127.0.0.1:57415 127.0.0.1:57433 3333521044 12 1e000000fd250b0000000000 .....%...... +2195 5.074937344 127.0.0.1:57415 127.0.0.1:57433 3333521056 30 1a00000055ceff62b21b3a50010003000000759d1f000000000000000000 ....U..b..:P......u........... +2197 5.075293064 127.0.0.1:57433 127.0.0.1:57415 377459177 12 fffffffffd250b0000000000 .....%...... +2198 5.075721264 127.0.0.1:57433 127.0.0.1:57415 377459189 12 1a00000029000b0000000000 ....)....... +2199 5.075871468 127.0.0.1:57433 127.0.0.1:57415 377459201 26 16000000759d1f00000000000100030000000000000000000000 ....u..................... +2200 5.076101542 127.0.0.1:57415 127.0.0.1:57433 3333521086 12 ffffffff29000b0000000000 ....)....... +2235 5.147056818 127.0.0.1:57433 127.0.0.1:57415 377459227 12 fefffffffd4301000e440100 .....C...D.. +2258 5.173957586 127.0.0.1:57415 127.0.0.1:57433 3333521098 12 1a000000fe250b0000000000 .....%...... +2260 5.174178600 127.0.0.1:57415 127.0.0.1:57433 3333521110 26 16000000548f6340e25e3140010003000000779d1f0000000000 ....T.c@.^1@......w....... +2262 5.174509764 127.0.0.1:57433 127.0.0.1:57415 377459239 12 fffffffffe250b0000000000 .....%...... +2264 5.175059319 127.0.0.1:57433 127.0.0.1:57415 377459251 12 160000002a000b0000000000 ....*....... +2266 5.175221920 127.0.0.1:57433 127.0.0.1:57415 377459263 22 12000000779d1f000000000001000300000000000000 ....w................. +2268 5.175548792 127.0.0.1:57415 127.0.0.1:57433 3333521136 12 ffffffff2a000b0000000000 ....*....... +2320 5.276667118 127.0.0.1:57415 127.0.0.1:57433 3333521148 12 1a000000ff250b0000000000 .....%...... +2322 5.276888371 127.0.0.1:57415 127.0.0.1:57433 3333521160 26 16000000548f6340e25e3140010003000000799d1f0000000000 ....T.c@.^1@......y....... +2324 5.277244806 127.0.0.1:57433 127.0.0.1:57415 377459285 12 ffffffffff250b0000000000 .....%...... +2326 5.277667046 127.0.0.1:57433 127.0.0.1:57415 377459297 12 160000002b000b0000000000 ....+....... +2328 5.277816296 127.0.0.1:57433 127.0.0.1:57415 377459309 22 12000000799d1f000000000001000300000000000000 ....y................. +2334 5.278153181 127.0.0.1:57415 127.0.0.1:57433 3333521186 12 ffffffff2b000b0000000000 ....+....... +2390 5.376468420 127.0.0.1:57415 127.0.0.1:57433 3333521198 12 2200000000260b0000000000 "....&...... +2392 5.376657486 127.0.0.1:57415 127.0.0.1:57433 3333521210 34 1e0000001c2118d0c46f33bb010003000000471302000000000008a225c39d01 .....!...o3.......G.........%..... +2394 5.376794577 127.0.0.1:57415 127.0.0.1:57433 3333521244 12 4300000001260b0000000000 C....&...... +2396 5.376885891 127.0.0.1:57415 127.0.0.1:57433 3333521256 67 3f000000980433cb0cb47c38010003000000010000000047130200000000003d ?.....3...|8...........G.......=B.....&......... +2398 5.377012014 127.0.0.1:57433 127.0.0.1:57415 377459331 12 ffffffff00260b0000000000 .....&...... +2400 5.377231121 127.0.0.1:57433 127.0.0.1:57415 377459343 12 ffffffff01260b0000000000 .....&...... +2402 5.378277779 127.0.0.1:57433 127.0.0.1:57415 377459355 12 340000002c000b0000000000 4...,....... +2404 5.378446341 127.0.0.1:57433 127.0.0.1:57415 377459367 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....G............. +2406 5.378657103 127.0.0.1:57415 127.0.0.1:57433 3333521323 12 ffffffff2c000b0000000000 ....,....... +2408 5.379560471 127.0.0.1:57415 127.0.0.1:57433 3333521335 12 1a00000002260b0000000000 .....&...... +2410 5.379761457 127.0.0.1:57415 127.0.0.1:57433 3333521347 26 16000000548f6340e25e31400100030000007b9d1f0000000000 ....T.c@.^1@......{....... +2416 5.380077839 127.0.0.1:57415 127.0.0.1:57433 3333521373 12 1e00000003260b0000000000 .....&...... +2417 5.380103588 127.0.0.1:57433 127.0.0.1:57415 377459419 12 ffffffff02260b0000000000 .....&...... +2419 5.380262613 127.0.0.1:57415 127.0.0.1:57433 3333521385 30 1a00000055ceff62b21b3a500100030000007d9d1f000000000000000000 ....U..b..:P......}........... +2421 5.380513430 127.0.0.1:57433 127.0.0.1:57415 377459431 12 ffffffff03260b0000000000 .....&...... +2423 5.380771875 127.0.0.1:57433 127.0.0.1:57415 377459443 12 160000002d000b0000000000 ....-....... +2425 5.380944490 127.0.0.1:57433 127.0.0.1:57415 377459455 22 120000007b9d1f000000000001000300000000000000 ....{................. +2427 5.381129265 127.0.0.1:57433 127.0.0.1:57415 377459477 12 1a0000002e000b0000000000 ............ +2429 5.381224394 127.0.0.1:57433 127.0.0.1:57415 377459489 26 160000007d9d1f00000000000100030000000000000000000000 ....}..................... +2431 5.381289482 127.0.0.1:57415 127.0.0.1:57433 3333521415 12 ffffffff2d000b0000000000 ....-....... +2433 5.381426334 127.0.0.1:57415 127.0.0.1:57433 3333521427 12 ffffffff2e000b0000000000 ............ +2443 5.390585661 127.0.0.1:57415 127.0.0.1:57433 3333521439 12 feffffff0f440100fd430100 .....D...C.. +2479 5.483617067 127.0.0.1:57415 127.0.0.1:57433 3333521451 12 1a00000004260b0000000000 .....&...... +2481 5.483789921 127.0.0.1:57415 127.0.0.1:57433 3333521463 26 16000000548f6340e25e31400100030000007f9d1f0000000000 ....T.c@.^1@.............. +2483 5.484153509 127.0.0.1:57433 127.0.0.1:57415 377459515 12 ffffffff04260b0000000000 .....&...... +2485 5.484543800 127.0.0.1:57433 127.0.0.1:57415 377459527 12 160000002f000b0000000000 ..../....... +2487 5.484721899 127.0.0.1:57433 127.0.0.1:57415 377459539 22 120000007f9d1f000000000001000300000000000000 ...................... +2489 5.485028028 127.0.0.1:57415 127.0.0.1:57433 3333521489 12 ffffffff2f000b0000000000 ..../....... +2560 5.587017059 127.0.0.1:57415 127.0.0.1:57433 3333521501 12 1a00000005260b0000000000 .....&...... +2562 5.587373972 127.0.0.1:57415 127.0.0.1:57433 3333521513 26 16000000548f6340e25e3140010003000000819d1f0000000000 ....T.c@.^1@.............. +2564 5.587727308 127.0.0.1:57433 127.0.0.1:57415 377459561 12 ffffffff05260b0000000000 .....&...... +2566 5.588211060 127.0.0.1:57433 127.0.0.1:57415 377459573 12 1600000030000b0000000000 ....0....... +2568 5.588358164 127.0.0.1:57433 127.0.0.1:57415 377459585 22 12000000819d1f000000000001000300000000000000 ...................... +2570 5.588614702 127.0.0.1:57415 127.0.0.1:57433 3333521539 12 ffffffff30000b0000000000 ....0....... +2606 5.648639441 127.0.0.1:57433 127.0.0.1:57415 377459607 12 fefffffffe4301000f440100 .....C...D.. +2658 5.681452751 127.0.0.1:57415 127.0.0.1:57433 3333521551 12 2200000006260b0000000000 "....&...... +2660 5.681617022 127.0.0.1:57415 127.0.0.1:57433 3333521563 34 1e0000001c2118d0c46f33bb010003000000481302000000000038a325c39d01 .....!...o3.......H.......8.%..... +2662 5.681756020 127.0.0.1:57415 127.0.0.1:57433 3333521597 12 4300000007260b0000000000 C....&...... +2664 5.681841612 127.0.0.1:57415 127.0.0.1:57433 3333521609 67 3f000000980433cb0cb47c38010003000000010000000048130200000000003d ?.....3...|8...........H.......=B.....&......... +2666 5.681978941 127.0.0.1:57433 127.0.0.1:57415 377459619 12 ffffffff06260b0000000000 .....&...... +2668 5.682291985 127.0.0.1:57433 127.0.0.1:57415 377459631 12 ffffffff07260b0000000000 .....&...... +2670 5.683107853 127.0.0.1:57433 127.0.0.1:57415 377459643 12 3400000031000b0000000000 4...1....... +2672 5.683580399 127.0.0.1:57433 127.0.0.1:57415 377459655 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....H..........e.. +2674 5.683850527 127.0.0.1:57415 127.0.0.1:57433 3333521676 12 ffffffff31000b0000000000 ....1....... +2676 5.684861660 127.0.0.1:57415 127.0.0.1:57433 3333521688 12 1e00000008260b0000000000 .....&...... +2678 5.685023069 127.0.0.1:57415 127.0.0.1:57433 3333521700 30 1a00000055ceff62b21b3a50010003000000839d1f000000000000000000 ....U..b..:P.................. +2680 5.685444355 127.0.0.1:57433 127.0.0.1:57415 377459707 12 ffffffff08260b0000000000 .....&...... +2682 5.685742617 127.0.0.1:57433 127.0.0.1:57415 377459719 12 1a00000032000b0000000000 ....2....... +2684 5.685955763 127.0.0.1:57433 127.0.0.1:57415 377459731 26 16000000839d1f00000000000100030000000000000000000000 .......................... +2686 5.686216593 127.0.0.1:57415 127.0.0.1:57433 3333521730 12 ffffffff32000b0000000000 ....2....... +2688 5.690212250 127.0.0.1:57415 127.0.0.1:57433 3333521742 12 1a00000009260b0000000000 .....&...... +2690 5.690380335 127.0.0.1:57415 127.0.0.1:57433 3333521754 26 16000000548f6340e25e3140010003000000859d1f0000000000 ....T.c@.^1@.............. +2692 5.690672874 127.0.0.1:57433 127.0.0.1:57415 377459757 12 ffffffff09260b0000000000 .....&...... +2694 5.691058874 127.0.0.1:57433 127.0.0.1:57415 377459769 12 1600000033000b0000000000 ....3....... +2696 5.691212893 127.0.0.1:57433 127.0.0.1:57415 377459781 22 12000000859d1f000000000001000300000000000000 ...................... +2698 5.691458464 127.0.0.1:57415 127.0.0.1:57433 3333521780 12 ffffffff33000b0000000000 ....3....... +2808 5.793679237 127.0.0.1:57415 127.0.0.1:57433 3333521792 12 1a0000000a260b0000000000 .....&...... +2810 5.793937445 127.0.0.1:57415 127.0.0.1:57433 3333521804 26 16000000548f6340e25e3140010003000000879d1f0000000000 ....T.c@.^1@.............. +2812 5.794331074 127.0.0.1:57433 127.0.0.1:57415 377459803 12 ffffffff0a260b0000000000 .....&...... +2814 5.795165539 127.0.0.1:57433 127.0.0.1:57415 377459815 12 1600000034000b0000000000 ....4....... +2816 5.795380592 127.0.0.1:57433 127.0.0.1:57415 377459827 22 12000000879d1f000000000001000300000000000000 ...................... +2818 5.795704842 127.0.0.1:57415 127.0.0.1:57433 3333521830 12 ffffffff34000b0000000000 ....4....... +2843 5.892395973 127.0.0.1:57415 127.0.0.1:57433 3333521842 12 feffffff10440100fe430100 .....D...C.. +2847 5.897683382 127.0.0.1:57415 127.0.0.1:57433 3333521854 12 1a0000000b260b0000000000 .....&...... +2849 5.897854567 127.0.0.1:57415 127.0.0.1:57433 3333521866 26 16000000548f6340e25e3140010003000000899d1f0000000000 ....T.c@.^1@.............. +2851 5.898330450 127.0.0.1:57433 127.0.0.1:57415 377459849 12 ffffffff0b260b0000000000 .....&...... +2853 5.898987770 127.0.0.1:57433 127.0.0.1:57415 377459861 12 1600000035000b0000000000 ....5....... +2855 5.899204016 127.0.0.1:57433 127.0.0.1:57415 377459873 22 12000000899d1f000000000001000300000000000000 ...................... +2857 5.899451971 127.0.0.1:57415 127.0.0.1:57433 3333521892 12 ffffffff35000b0000000000 ....5....... +2876 5.986085653 127.0.0.1:57415 127.0.0.1:57433 3333521904 12 220000000c260b0000000000 "....&...... +2878 5.986262560 127.0.0.1:57415 127.0.0.1:57433 3333521916 34 1e0000001c2118d0c46f33bb010003000000491302000000000069a425c39d01 .....!...o3.......I.......i.%..... +2880 5.986413717 127.0.0.1:57415 127.0.0.1:57433 3333521950 12 430000000d260b0000000000 C....&...... +2882 5.986532211 127.0.0.1:57415 127.0.0.1:57433 3333521962 67 3f000000980433cb0cb47c38010003000000010000000049130200000000003d ?.....3...|8...........I.......=B.....&......... +2883 5.986590147 127.0.0.1:57433 127.0.0.1:57415 377459895 12 ffffffff0c260b0000000000 .....&...... +2886 5.986805916 127.0.0.1:57433 127.0.0.1:57415 377459907 12 ffffffff0d260b0000000000 .....&...... +2888 5.987991571 127.0.0.1:57433 127.0.0.1:57415 377459919 12 3400000036000b0000000000 4...6....... +2890 5.988194466 127.0.0.1:57433 127.0.0.1:57415 377459931 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....I............. +2892 5.988463163 127.0.0.1:57415 127.0.0.1:57433 3333522029 12 ffffffff36000b0000000000 ....6....... +2893 5.989283562 127.0.0.1:57415 127.0.0.1:57433 3333522041 12 1e0000000e260b0000000000 .....&...... +2895 5.989437342 127.0.0.1:57415 127.0.0.1:57433 3333522053 30 1a00000055ceff62b21b3a500100030000008b9d1f000000000000000000 ....U..b..:P.................. +2897 5.989719152 127.0.0.1:57433 127.0.0.1:57415 377459983 12 ffffffff0e260b0000000000 .....&...... +2899 5.990212440 127.0.0.1:57433 127.0.0.1:57415 377459995 12 1a00000037000b0000000000 ....7....... +2901 5.990359783 127.0.0.1:57433 127.0.0.1:57415 377460007 26 160000008b9d1f00000000000100030000000000000000000000 .......................... +2903 5.990591764 127.0.0.1:57415 127.0.0.1:57433 3333522083 12 ffffffff37000b0000000000 ....7....... +2905 6.000521183 127.0.0.1:57415 127.0.0.1:57433 3333522095 12 1a0000000f260b0000000000 .....&...... +2907 6.000669479 127.0.0.1:57415 127.0.0.1:57433 3333522107 26 16000000548f6340e25e31400100030000008d9d1f0000000000 ....T.c@.^1@.............. +2909 6.001091242 127.0.0.1:57433 127.0.0.1:57415 377460033 12 ffffffff0f260b0000000000 .....&...... +2911 6.001641035 127.0.0.1:57433 127.0.0.1:57415 377460045 12 1600000038000b0000000000 ....8....... +2913 6.001803637 127.0.0.1:57433 127.0.0.1:57415 377460057 22 120000008d9d1f000000000001000300000000000000 ...................... +2915 6.002157688 127.0.0.1:57415 127.0.0.1:57433 3333522133 12 ffffffff38000b0000000000 ....8....... +2938 6.104280710 127.0.0.1:57415 127.0.0.1:57433 3333522145 12 1a00000010260b0000000000 .....&...... +2940 6.104514360 127.0.0.1:57415 127.0.0.1:57433 3333522157 26 16000000548f6340e25e31400100030000008f9d1f0000000000 ....T.c@.^1@.............. +2942 6.104835510 127.0.0.1:57433 127.0.0.1:57415 377460079 12 ffffffff10260b0000000000 .....&...... +2944 6.105363846 127.0.0.1:57433 127.0.0.1:57415 377460091 12 1600000039000b0000000000 ....9....... +2946 6.105566502 127.0.0.1:57433 127.0.0.1:57415 377460103 22 120000008f9d1f000000000001000300000000000000 ...................... +2948 6.105846405 127.0.0.1:57415 127.0.0.1:57433 3333522183 12 ffffffff39000b0000000000 ....9....... +2953 6.150135756 127.0.0.1:57433 127.0.0.1:57415 377460125 12 feffffffff43010010440100 .....C...D.. +2981 6.207790136 127.0.0.1:57415 127.0.0.1:57433 3333522195 12 1a00000011260b0000000000 .....&...... +2983 6.207984209 127.0.0.1:57415 127.0.0.1:57433 3333522207 26 16000000548f6340e25e3140010003000000919d1f0000000000 ....T.c@.^1@.............. +2985 6.208252668 127.0.0.1:57433 127.0.0.1:57415 377460137 12 ffffffff11260b0000000000 .....&...... +2987 6.208652020 127.0.0.1:57433 127.0.0.1:57415 377460149 12 160000003a000b0000000000 ....:....... +2989 6.208811998 127.0.0.1:57433 127.0.0.1:57415 377460161 22 12000000919d1f000000000001000300000000000000 ...................... +2991 6.209134102 127.0.0.1:57415 127.0.0.1:57433 3333522233 12 ffffffff3a000b0000000000 ....:....... +3017 6.291140795 127.0.0.1:57415 127.0.0.1:57433 3333522245 12 2200000012260b0000000000 "....&...... +3019 6.291309834 127.0.0.1:57415 127.0.0.1:57433 3333522257 34 1e0000001c2118d0c46f33bb0100030000004a130200000000009aa525c39d01 .....!...o3.......J.........%..... +3021 6.291450500 127.0.0.1:57415 127.0.0.1:57433 3333522291 12 4300000013260b0000000000 C....&...... +3023 6.291535854 127.0.0.1:57415 127.0.0.1:57433 3333522303 67 3f000000980433cb0cb47c3801000300000001000000004a130200000000003d ?.....3...|8...........J.......=B.....&......... +3025 6.291627645 127.0.0.1:57433 127.0.0.1:57415 377460183 12 ffffffff12260b0000000000 .....&...... +3027 6.291817665 127.0.0.1:57433 127.0.0.1:57415 377460195 12 ffffffff13260b0000000000 .....&...... +3029 6.292700529 127.0.0.1:57433 127.0.0.1:57415 377460207 12 340000003b000b0000000000 4...;....... +3031 6.292856455 127.0.0.1:57433 127.0.0.1:57415 377460219 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....J........._l(. +3033 6.293170452 127.0.0.1:57415 127.0.0.1:57433 3333522370 12 ffffffff3b000b0000000000 ....;....... +3035 6.293939590 127.0.0.1:57415 127.0.0.1:57433 3333522382 12 1e00000014260b0000000000 .....&...... +3037 6.294129372 127.0.0.1:57415 127.0.0.1:57433 3333522394 30 1a00000055ceff62b21b3a50010003000000939d1f000000000000000000 ....U..b..:P.................. +3039 6.294331551 127.0.0.1:57433 127.0.0.1:57415 377460271 12 ffffffff14260b0000000000 .....&...... +3041 6.294708014 127.0.0.1:57433 127.0.0.1:57415 377460283 12 1a0000003c000b0000000000 ....<....... +3043 6.294861555 127.0.0.1:57433 127.0.0.1:57415 377460295 26 16000000939d1f00000000000100030000000000000000000000 .......................... +3045 6.295132160 127.0.0.1:57415 127.0.0.1:57433 3333522424 12 ffffffff3c000b0000000000 ....<....... +3051 6.310654640 127.0.0.1:57415 127.0.0.1:57433 3333522436 12 1a00000015260b0000000000 .....&...... +3053 6.310817480 127.0.0.1:57415 127.0.0.1:57433 3333522448 26 16000000548f6340e25e3140010003000000959d1f0000000000 ....T.c@.^1@.............. +3055 6.311146498 127.0.0.1:57433 127.0.0.1:57415 377460321 12 ffffffff15260b0000000000 .....&...... +3057 6.312562466 127.0.0.1:57433 127.0.0.1:57415 377460333 12 160000003d000b0000000000 ....=....... +3059 6.312723160 127.0.0.1:57433 127.0.0.1:57415 377460345 22 12000000959d1f000000000001000300000000000000 ...................... +3061 6.313008308 127.0.0.1:57415 127.0.0.1:57433 3333522474 12 ffffffff3d000b0000000000 ....=....... +3087 6.393198252 127.0.0.1:57415 127.0.0.1:57433 3333522486 12 feffffff11440100ff430100 .....D...C.. +3103 6.414662838 127.0.0.1:57415 127.0.0.1:57433 3333522498 12 1a00000016260b0000000000 .....&...... +3105 6.414866924 127.0.0.1:57415 127.0.0.1:57433 3333522510 26 16000000548f6340e25e3140010003000000979d1f0000000000 ....T.c@.^1@.............. +3107 6.415300131 127.0.0.1:57433 127.0.0.1:57415 377460367 12 ffffffff16260b0000000000 .....&...... +3109 6.415734053 127.0.0.1:57433 127.0.0.1:57415 377460379 12 160000003e000b0000000000 ....>....... +3111 6.415953875 127.0.0.1:57433 127.0.0.1:57415 377460391 22 12000000979d1f000000000001000300000000000000 ...................... +3113 6.416301250 127.0.0.1:57415 127.0.0.1:57433 3333522536 12 ffffffff3e000b0000000000 ....>....... +3129 6.518154144 127.0.0.1:57415 127.0.0.1:57433 3333522548 12 1a00000017260b0000000000 .....&...... +3131 6.518330336 127.0.0.1:57415 127.0.0.1:57433 3333522560 26 16000000548f6340e25e3140010003000000999d1f0000000000 ....T.c@.^1@.............. +3133 6.518768311 127.0.0.1:57433 127.0.0.1:57415 377460413 12 ffffffff17260b0000000000 .....&...... +3135 6.519224405 127.0.0.1:57433 127.0.0.1:57415 377460425 12 160000003f000b0000000000 ....?....... +3137 6.519425154 127.0.0.1:57433 127.0.0.1:57415 377460437 22 12000000999d1f000000000001000300000000000000 ...................... +3139 6.519720316 127.0.0.1:57415 127.0.0.1:57433 3333522586 12 ffffffff3f000b0000000000 ....?....... +3175 6.595282078 127.0.0.1:57415 127.0.0.1:57433 3333522598 12 6500000018260b0000000000 e....&...... +3177 6.595514059 127.0.0.1:57415 127.0.0.1:57433 3333522610 101 1e0000001c2118d0c46f33bb0100030000004b13020000000000caa625c39d01 .....!...o3.......K.........%.....?.....3...|8.. +3179 6.595824480 127.0.0.1:57433 127.0.0.1:57415 377460459 12 ffffffff18260b0000000000 .....&...... +3181 6.597077131 127.0.0.1:57433 127.0.0.1:57415 377460471 12 3400000040000b0000000000 4...@....... +3183 6.597265244 127.0.0.1:57433 127.0.0.1:57415 377460483 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....K...........V. +3185 6.597474337 127.0.0.1:57415 127.0.0.1:57433 3333522711 12 ffffffff40000b0000000000 ....@....... +3187 6.598277092 127.0.0.1:57415 127.0.0.1:57433 3333522723 12 1e00000019260b0000000000 .....&...... +3189 6.598440170 127.0.0.1:57415 127.0.0.1:57433 3333522735 30 1a00000055ceff62b21b3a500100030000009b9d1f000000000000000000 ....U..b..:P.................. +3191 6.598700762 127.0.0.1:57433 127.0.0.1:57415 377460535 12 ffffffff19260b0000000000 .....&...... +3193 6.600091934 127.0.0.1:57433 127.0.0.1:57415 377460547 12 1a00000041000b0000000000 ....A....... +3195 6.600301027 127.0.0.1:57433 127.0.0.1:57415 377460559 26 160000009b9d1f00000000000100030000000000000000000000 .......................... +3197 6.600593805 127.0.0.1:57415 127.0.0.1:57433 3333522765 12 ffffffff41000b0000000000 ....A....... +3203 6.621002913 127.0.0.1:57415 127.0.0.1:57433 3333522777 12 1a0000001a260b0000000000 .....&...... +3205 6.621215105 127.0.0.1:57415 127.0.0.1:57433 3333522789 26 16000000548f6340e25e31400100030000009d9d1f0000000000 ....T.c@.^1@.............. +3207 6.621572971 127.0.0.1:57433 127.0.0.1:57415 377460585 12 ffffffff1a260b0000000000 .....&...... +3209 6.622051477 127.0.0.1:57433 127.0.0.1:57415 377460597 12 1600000042000b0000000000 ....B....... +3211 6.622562647 127.0.0.1:57433 127.0.0.1:57415 377460609 22 120000009d9d1f000000000001000300000000000000 ...................... +3213 6.622809649 127.0.0.1:57415 127.0.0.1:57433 3333522815 12 ffffffff42000b0000000000 ....B....... +3217 6.650531530 127.0.0.1:57433 127.0.0.1:57415 377460631 12 feffffff0044010011440100 .....D...D.. +3225 6.724951029 127.0.0.1:57415 127.0.0.1:57433 3333522827 12 1a0000001b260b0000000000 .....&...... +3227 6.725158453 127.0.0.1:57415 127.0.0.1:57433 3333522839 26 16000000548f6340e25e31400100030000009f9d1f0000000000 ....T.c@.^1@.............. +3229 6.725432634 127.0.0.1:57433 127.0.0.1:57415 377460643 12 ffffffff1b260b0000000000 .....&...... +3231 6.726074934 127.0.0.1:57433 127.0.0.1:57415 377460655 12 1600000043000b0000000000 ....C....... +3233 6.726267338 127.0.0.1:57433 127.0.0.1:57415 377460667 22 120000009f9d1f000000000001000300000000000000 ...................... +3235 6.726612568 127.0.0.1:57415 127.0.0.1:57433 3333522865 12 ffffffff43000b0000000000 ....C....... +3241 6.827959538 127.0.0.1:57415 127.0.0.1:57433 3333522877 12 1a0000001c260b0000000000 .....&...... +3243 6.828135967 127.0.0.1:57415 127.0.0.1:57433 3333522889 26 16000000548f6340e25e3140010003000000a19d1f0000000000 ....T.c@.^1@.............. +3245 6.828487396 127.0.0.1:57433 127.0.0.1:57415 377460689 12 ffffffff1c260b0000000000 .....&...... +3247 6.828997850 127.0.0.1:57433 127.0.0.1:57415 377460701 12 1600000044000b0000000000 ....D....... +3249 6.829151154 127.0.0.1:57433 127.0.0.1:57415 377460713 22 12000000a19d1f000000000001000300000000000000 ...................... +3251 6.829519987 127.0.0.1:57415 127.0.0.1:57433 3333522915 12 ffffffff44000b0000000000 ....D....... +3270 6.893879652 127.0.0.1:57415 127.0.0.1:57433 3333522927 12 feffffff1244010000440100 .....D...D.. +3273 6.899535894 127.0.0.1:57415 127.0.0.1:57433 3333522939 12 650000001d260b0000000000 e....&...... +3276 6.899754286 127.0.0.1:57415 127.0.0.1:57433 3333522951 101 1e0000001c2118d0c46f33bb0100030000004c13020000000000faa725c39d01 .....!...o3.......L.........%.....?.....3...|8.. +3281 6.900161266 127.0.0.1:57433 127.0.0.1:57415 377460735 12 ffffffff1d260b0000000000 .....&...... +3283 6.901500225 127.0.0.1:57433 127.0.0.1:57415 377460747 12 3400000045000b0000000000 4...E....... +3285 6.901757002 127.0.0.1:57433 127.0.0.1:57415 377460759 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....L.........\O.. +3287 6.902046680 127.0.0.1:57415 127.0.0.1:57433 3333523052 12 ffffffff45000b0000000000 ....E....... +3290 6.903210640 127.0.0.1:57415 127.0.0.1:57433 3333523064 12 1e0000001e260b0000000000 .....&...... +3292 6.903476238 127.0.0.1:57415 127.0.0.1:57433 3333523076 30 1a00000055ceff62b21b3a50010003000000a39d1f000000000000000000 ....U..b..:P.................. +3294 6.903905153 127.0.0.1:57433 127.0.0.1:57415 377460811 12 ffffffff1e260b0000000000 .....&...... +3296 6.904475451 127.0.0.1:57433 127.0.0.1:57415 377460823 12 1a00000046000b0000000000 ....F....... +3298 6.904721737 127.0.0.1:57433 127.0.0.1:57415 377460835 26 16000000a39d1f00000000000100030000000000000000000000 .......................... +3300 6.905250549 127.0.0.1:57415 127.0.0.1:57433 3333523106 12 ffffffff46000b0000000000 ....F....... +3318 6.931116343 127.0.0.1:57415 127.0.0.1:57433 3333523118 12 1a0000001f260b0000000000 .....&...... +3320 6.931302071 127.0.0.1:57415 127.0.0.1:57433 3333523130 26 16000000548f6340e25e3140010003000000a59d1f0000000000 ....T.c@.^1@.............. +3322 6.931694269 127.0.0.1:57433 127.0.0.1:57415 377460861 12 ffffffff1f260b0000000000 .....&...... +3324 6.932088852 127.0.0.1:57433 127.0.0.1:57415 377460873 12 1600000047000b0000000000 ....G....... +3326 6.932441950 127.0.0.1:57433 127.0.0.1:57415 377460885 22 12000000a59d1f000000000001000300000000000000 ...................... +3328 6.932723045 127.0.0.1:57415 127.0.0.1:57433 3333523156 12 ffffffff47000b0000000000 ....G....... +3353 7.034490824 127.0.0.1:57415 127.0.0.1:57433 3333523168 12 1a00000020260b0000000000 .... &...... +3355 7.034668684 127.0.0.1:57415 127.0.0.1:57433 3333523180 26 16000000548f6340e25e3140010003000000a79d1f0000000000 ....T.c@.^1@.............. +3357 7.035101175 127.0.0.1:57433 127.0.0.1:57415 377460907 12 ffffffff20260b0000000000 .... &...... +3359 7.035668135 127.0.0.1:57433 127.0.0.1:57415 377460919 12 1600000048000b0000000000 ....H....... +3361 7.035866499 127.0.0.1:57433 127.0.0.1:57415 377460931 22 12000000a79d1f000000000001000300000000000000 ...................... +3363 7.036153555 127.0.0.1:57415 127.0.0.1:57433 3333523206 12 ffffffff48000b0000000000 ....H....... +3376 7.137818813 127.0.0.1:57415 127.0.0.1:57433 3333523218 12 1a00000021260b0000000000 ....!&...... +3380 7.138044834 127.0.0.1:57415 127.0.0.1:57433 3333523230 26 16000000548f6340e25e3140010003000000a99d1f0000000000 ....T.c@.^1@.............. +3382 7.138509989 127.0.0.1:57433 127.0.0.1:57415 377460953 12 ffffffff21260b0000000000 ....!&...... +3384 7.139011383 127.0.0.1:57433 127.0.0.1:57415 377460965 12 1600000049000b0000000000 ....I....... +3386 7.139168739 127.0.0.1:57433 127.0.0.1:57415 377460977 22 12000000a99d1f000000000001000300000000000000 ...................... +3388 7.139417648 127.0.0.1:57415 127.0.0.1:57433 3333523256 12 ffffffff49000b0000000000 ....I....... +3402 7.151287317 127.0.0.1:57433 127.0.0.1:57415 377460999 12 feffffff0144010012440100 .....D...D.. +3430 7.206081867 127.0.0.1:57415 127.0.0.1:57433 3333523268 12 2200000022260b0000000000 "..."&...... +3432 7.206244707 127.0.0.1:57415 127.0.0.1:57433 3333523280 34 1e0000001c2118d0c46f33bb0100030000004d130200000000002da925c39d01 .....!...o3.......M.......-.%..... +3434 7.206348658 127.0.0.1:57415 127.0.0.1:57433 3333523314 12 4300000023260b0000000000 C...#&...... +3436 7.206456184 127.0.0.1:57415 127.0.0.1:57433 3333523326 67 3f000000980433cb0cb47c3801000300000001000000004d130200000000003d ?.....3...|8...........M.......=B.....&......... +3438 7.206567049 127.0.0.1:57433 127.0.0.1:57415 377461011 12 ffffffff22260b0000000000 ...."&...... +3440 7.206892252 127.0.0.1:57433 127.0.0.1:57415 377461023 12 ffffffff23260b0000000000 ....#&...... +3442 7.207687855 127.0.0.1:57433 127.0.0.1:57415 377461035 12 340000004a000b0000000000 4...J....... +3444 7.207872868 127.0.0.1:57433 127.0.0.1:57415 377461047 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....M............. +3446 7.208194017 127.0.0.1:57415 127.0.0.1:57433 3333523393 12 ffffffff4a000b0000000000 ....J....... +3450 7.209417582 127.0.0.1:57415 127.0.0.1:57433 3333523405 12 1e00000024260b0000000000 ....$&...... +3452 7.209593296 127.0.0.1:57415 127.0.0.1:57433 3333523417 30 1a00000055ceff62b21b3a50010003000000ab9d1f000000000000000000 ....U..b..:P.................. +3454 7.209901571 127.0.0.1:57433 127.0.0.1:57415 377461099 12 ffffffff24260b0000000000 ....$&...... +3456 7.210352659 127.0.0.1:57433 127.0.0.1:57415 377461111 12 1a0000004b000b0000000000 ....K....... +3458 7.210607767 127.0.0.1:57433 127.0.0.1:57415 377461123 26 16000000ab9d1f00000000000100030000000000000000000000 .......................... +3460 7.210840225 127.0.0.1:57415 127.0.0.1:57433 3333523447 12 ffffffff4b000b0000000000 ....K....... +3465 7.241124630 127.0.0.1:57415 127.0.0.1:57433 3333523459 12 1a00000025260b0000000000 ....%&...... +3467 7.241284609 127.0.0.1:57415 127.0.0.1:57433 3333523471 26 16000000548f6340e25e3140010003000000ad9d1f0000000000 ....T.c@.^1@.............. +3469 7.241634846 127.0.0.1:57433 127.0.0.1:57415 377461149 12 ffffffff25260b0000000000 ....%&...... +3471 7.242020130 127.0.0.1:57433 127.0.0.1:57415 377461161 12 160000004c000b0000000000 ....L....... +3473 7.242213488 127.0.0.1:57433 127.0.0.1:57415 377461173 22 12000000ad9d1f000000000001000300000000000000 ...................... +3475 7.242481470 127.0.0.1:57415 127.0.0.1:57433 3333523497 12 ffffffff4c000b0000000000 ....L....... +3484 7.343708754 127.0.0.1:57415 127.0.0.1:57433 3333523509 12 1a00000026260b0000000000 ....&&...... +3486 7.343987465 127.0.0.1:57415 127.0.0.1:57433 3333523521 26 16000000548f6340e25e3140010003000000af9d1f0000000000 ....T.c@.^1@.............. +3488 7.344406366 127.0.0.1:57433 127.0.0.1:57415 377461195 12 ffffffff26260b0000000000 ....&&...... +3490 7.345027447 127.0.0.1:57433 127.0.0.1:57415 377461207 12 160000004d000b0000000000 ....M....... +3492 7.345215321 127.0.0.1:57433 127.0.0.1:57415 377461219 22 12000000af9d1f000000000001000300000000000000 ...................... +3494 7.345654488 127.0.0.1:57415 127.0.0.1:57433 3333523547 12 ffffffff4d000b0000000000 ....M....... +3522 7.394721508 127.0.0.1:57415 127.0.0.1:57433 3333523559 12 feffffff1344010001440100 .....D...D.. +3553 7.448143005 127.0.0.1:57415 127.0.0.1:57433 3333523571 12 1a00000027260b0000000000 ....'&...... +3555 7.448314667 127.0.0.1:57415 127.0.0.1:57433 3333523583 26 16000000548f6340e25e3140010003000000b19d1f0000000000 ....T.c@.^1@.............. +3557 7.448673248 127.0.0.1:57433 127.0.0.1:57415 377461241 12 ffffffff27260b0000000000 ....'&...... +3559 7.449204206 127.0.0.1:57433 127.0.0.1:57415 377461253 12 160000004e000b0000000000 ....N....... +3561 7.449461937 127.0.0.1:57433 127.0.0.1:57415 377461265 22 12000000b19d1f000000000001000300000000000000 ...................... +3563 7.449729919 127.0.0.1:57415 127.0.0.1:57433 3333523609 12 ffffffff4e000b0000000000 ....N....... +3573 7.510704756 127.0.0.1:57415 127.0.0.1:57433 3333523621 12 2200000028260b0000000000 "...(&...... +3575 7.510946512 127.0.0.1:57415 127.0.0.1:57433 3333523633 34 1e0000001c2118d0c46f33bb0100030000004e130200000000005eaa25c39d01 .....!...o3.......N.......^.%..... +3577 7.511138916 127.0.0.1:57415 127.0.0.1:57433 3333523667 12 4300000029260b0000000000 C...)&...... +3579 7.511264324 127.0.0.1:57415 127.0.0.1:57433 3333523679 67 3f000000980433cb0cb47c3801000300000001000000004e130200000000003d ?.....3...|8...........N.......=B.....&......... +3580 7.511289835 127.0.0.1:57433 127.0.0.1:57415 377461287 12 ffffffff28260b0000000000 ....(&...... +3583 7.511534452 127.0.0.1:57433 127.0.0.1:57415 377461299 12 ffffffff29260b0000000000 ....)&...... +3585 7.512663603 127.0.0.1:57433 127.0.0.1:57415 377461311 12 340000004f000b0000000000 4...O....... +3587 7.512828588 127.0.0.1:57433 127.0.0.1:57415 377461323 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....N.........{... +3589 7.513163328 127.0.0.1:57415 127.0.0.1:57433 3333523746 12 ffffffff4f000b0000000000 ....O....... +3590 7.514075041 127.0.0.1:57415 127.0.0.1:57433 3333523758 12 1e0000002a260b0000000000 ....*&...... +3591 7.514235258 127.0.0.1:57415 127.0.0.1:57433 3333523770 30 1a00000055ceff62b21b3a50010003000000b39d1f000000000000000000 ....U..b..:P.................. +3592 7.514593124 127.0.0.1:57433 127.0.0.1:57415 377461375 12 ffffffff2a260b0000000000 ....*&...... +3594 7.514992952 127.0.0.1:57433 127.0.0.1:57415 377461387 12 1a00000050000b0000000000 ....P....... +3596 7.515181065 127.0.0.1:57433 127.0.0.1:57415 377461399 26 16000000b39d1f00000000000100030000000000000000000000 .......................... +3598 7.515568972 127.0.0.1:57415 127.0.0.1:57433 3333523800 12 ffffffff50000b0000000000 ....P....... +3600 7.552629471 127.0.0.1:57415 127.0.0.1:57433 3333523812 12 1a0000002b260b0000000000 ....+&...... +3602 7.552809000 127.0.0.1:57415 127.0.0.1:57433 3333523824 26 16000000548f6340e25e3140010003000000b59d1f0000000000 ....T.c@.^1@.............. +3604 7.553163290 127.0.0.1:57433 127.0.0.1:57415 377461425 12 ffffffff2b260b0000000000 ....+&...... +3606 7.553653479 127.0.0.1:57433 127.0.0.1:57415 377461437 12 1600000051000b0000000000 ....Q....... +3608 7.553810835 127.0.0.1:57433 127.0.0.1:57415 377461449 22 12000000b59d1f000000000001000300000000000000 ...................... +3610 7.554110527 127.0.0.1:57415 127.0.0.1:57433 3333523850 12 ffffffff51000b0000000000 ....Q....... +3615 7.650400162 127.0.0.1:57433 127.0.0.1:57415 377461471 12 feffffff0244010013440100 .....D...D.. +3620 7.655587435 127.0.0.1:57415 127.0.0.1:57433 3333523862 12 1a0000002c260b0000000000 ....,&...... +3622 7.655807972 127.0.0.1:57415 127.0.0.1:57433 3333523874 26 16000000548f6340e25e3140010003000000b79d1f0000000000 ....T.c@.^1@.............. +3624 7.656215906 127.0.0.1:57433 127.0.0.1:57415 377461483 12 ffffffff2c260b0000000000 ....,&...... +3626 7.656841755 127.0.0.1:57433 127.0.0.1:57415 377461495 12 1600000052000b0000000000 ....R....... +3628 7.657052517 127.0.0.1:57433 127.0.0.1:57415 377461507 22 12000000b79d1f000000000001000300000000000000 ...................... +3630 7.657322884 127.0.0.1:57415 127.0.0.1:57433 3333523900 12 ffffffff52000b0000000000 ....R....... +3680 7.759253740 127.0.0.1:57415 127.0.0.1:57433 3333523912 12 1a0000002d260b0000000000 ....-&...... +3682 7.759391546 127.0.0.1:57415 127.0.0.1:57433 3333523924 26 16000000548f6340e25e3140010003000000b99d1f0000000000 ....T.c@.^1@.............. +3684 7.759813309 127.0.0.1:57433 127.0.0.1:57415 377461529 12 ffffffff2d260b0000000000 ....-&...... +3686 7.760725737 127.0.0.1:57433 127.0.0.1:57415 377461541 12 1600000053000b0000000000 ....S....... +3688 7.760902405 127.0.0.1:57433 127.0.0.1:57415 377461553 22 12000000b99d1f000000000001000300000000000000 ...................... +3690 7.761262894 127.0.0.1:57415 127.0.0.1:57433 3333523950 12 ffffffff53000b0000000000 ....S....... +3692 7.815759420 127.0.0.1:57415 127.0.0.1:57433 3333523962 12 220000002e260b0000000000 "....&...... +3694 7.815923214 127.0.0.1:57415 127.0.0.1:57433 3333523974 34 1e0000001c2118d0c46f33bb0100030000004f130200000000008fab25c39d01 .....!...o3.......O.........%..... +3696 7.816061020 127.0.0.1:57415 127.0.0.1:57433 3333524008 12 430000002f260b0000000000 C.../&...... +3698 7.816184044 127.0.0.1:57415 127.0.0.1:57433 3333524020 67 3f000000980433cb0cb47c3801000300000001000000004f130200000000003d ?.....3...|8...........O.......=B.....&......... +3699 7.816218138 127.0.0.1:57433 127.0.0.1:57415 377461575 12 ffffffff2e260b0000000000 .....&...... +3702 7.816467762 127.0.0.1:57433 127.0.0.1:57415 377461587 12 ffffffff2f260b0000000000 ..../&...... +3704 7.817514658 127.0.0.1:57433 127.0.0.1:57415 377461599 12 3400000054000b0000000000 4...T....... +3706 7.817806482 127.0.0.1:57433 127.0.0.1:57415 377461611 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....O............. +3708 7.818094015 127.0.0.1:57415 127.0.0.1:57433 3333524087 12 ffffffff54000b0000000000 ....T....... +3709 7.818990231 127.0.0.1:57415 127.0.0.1:57433 3333524099 12 1e00000030260b0000000000 ....0&...... +3711 7.819163561 127.0.0.1:57415 127.0.0.1:57433 3333524111 30 1a00000055ceff62b21b3a50010003000000bb9d1f000000000000000000 ....U..b..:P.................. +3713 7.819463968 127.0.0.1:57433 127.0.0.1:57415 377461663 12 ffffffff30260b0000000000 ....0&...... +3715 7.820017099 127.0.0.1:57433 127.0.0.1:57415 377461675 12 1a00000055000b0000000000 ....U....... +3717 7.820175409 127.0.0.1:57433 127.0.0.1:57415 377461687 26 16000000bb9d1f00000000000100030000000000000000000000 .......................... +3719 7.820544481 127.0.0.1:57415 127.0.0.1:57433 3333524141 12 ffffffff55000b0000000000 ....U....... +3723 7.864073992 127.0.0.1:57415 127.0.0.1:57433 3333524153 12 1a00000031260b0000000000 ....1&...... +3725 7.864252090 127.0.0.1:57415 127.0.0.1:57433 3333524165 26 16000000548f6340e25e3140010003000000bd9d1f0000000000 ....T.c@.^1@.............. +3727 7.864546776 127.0.0.1:57433 127.0.0.1:57415 377461713 12 ffffffff31260b0000000000 ....1&...... +3729 7.865033150 127.0.0.1:57433 127.0.0.1:57415 377461725 12 1600000056000b0000000000 ....V....... +3731 7.865187168 127.0.0.1:57433 127.0.0.1:57415 377461737 22 12000000bd9d1f000000000001000300000000000000 ...................... +3733 7.865575075 127.0.0.1:57415 127.0.0.1:57433 3333524191 12 ffffffff56000b0000000000 ....V....... +3740 7.895272970 127.0.0.1:57415 127.0.0.1:57433 3333524203 12 feffffff1444010002440100 .....D...D.. +3753 7.966536283 127.0.0.1:57415 127.0.0.1:57433 3333524215 12 1a00000032260b0000000000 ....2&...... +3755 7.966729164 127.0.0.1:57415 127.0.0.1:57433 3333524227 26 16000000548f6340e25e3140010003000000bf9d1f0000000000 ....T.c@.^1@.............. +3757 7.967040539 127.0.0.1:57433 127.0.0.1:57415 377461759 12 ffffffff32260b0000000000 ....2&...... +3759 7.967643976 127.0.0.1:57433 127.0.0.1:57415 377461771 12 1600000057000b0000000000 ....W....... +3761 7.967850447 127.0.0.1:57433 127.0.0.1:57415 377461783 22 12000000bf9d1f000000000001000300000000000000 ...................... +3763 7.968044519 127.0.0.1:57415 127.0.0.1:57433 3333524253 12 ffffffff57000b0000000000 ....W....... +3817 8.069467068 127.0.0.1:57415 127.0.0.1:57433 3333524265 12 1a00000033260b0000000000 ....3&...... +3819 8.069672823 127.0.0.1:57415 127.0.0.1:57433 3333524277 26 16000000548f6340e25e3140010003000000c19d1f0000000000 ....T.c@.^1@.............. +3821 8.070042372 127.0.0.1:57433 127.0.0.1:57415 377461805 12 ffffffff33260b0000000000 ....3&...... +3823 8.070686579 127.0.0.1:57433 127.0.0.1:57415 377461817 12 1600000058000b0000000000 ....X....... +3825 8.070932388 127.0.0.1:57433 127.0.0.1:57415 377461829 22 12000000c19d1f000000000001000300000000000000 ...................... +3827 8.071223259 127.0.0.1:57415 127.0.0.1:57433 3333524303 12 ffffffff58000b0000000000 ....X....... +3840 8.120356560 127.0.0.1:57415 127.0.0.1:57433 3333524315 12 2200000034260b0000000000 "...4&...... +3845 8.120616913 127.0.0.1:57415 127.0.0.1:57433 3333524327 34 1e0000001c2118d0c46f33bb0100030000005013020000000000bfac25c39d01 .....!...o3.......P.........%..... +3847 8.120805025 127.0.0.1:57415 127.0.0.1:57433 3333524361 12 4300000035260b0000000000 C...5&...... +3849 8.120921850 127.0.0.1:57415 127.0.0.1:57433 3333524373 67 3f000000980433cb0cb47c38010003000000010000000050130200000000003d ?.....3...|8...........P.......=B.....&......... +3850 8.120955229 127.0.0.1:57433 127.0.0.1:57415 377461851 12 ffffffff34260b0000000000 ....4&...... +3853 8.121134520 127.0.0.1:57433 127.0.0.1:57415 377461863 12 ffffffff35260b0000000000 ....5&...... +3863 8.122746944 127.0.0.1:57433 127.0.0.1:57415 377461875 12 3400000059000b0000000000 4...Y....... +3865 8.122908354 127.0.0.1:57433 127.0.0.1:57415 377461887 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....P...........?. +3867 8.123271704 127.0.0.1:57415 127.0.0.1:57433 3333524440 12 ffffffff59000b0000000000 ....Y....... +3875 8.124362946 127.0.0.1:57415 127.0.0.1:57433 3333524452 12 1e00000036260b0000000000 ....6&...... +3879 8.124525070 127.0.0.1:57415 127.0.0.1:57433 3333524464 30 1a00000055ceff62b21b3a50010003000000c39d1f000000000000000000 ....U..b..:P.................. +3881 8.124830484 127.0.0.1:57433 127.0.0.1:57415 377461939 12 ffffffff36260b0000000000 ....6&...... +3883 8.125158787 127.0.0.1:57433 127.0.0.1:57415 377461951 12 1a0000005a000b0000000000 ....Z....... +3885 8.125358582 127.0.0.1:57433 127.0.0.1:57415 377461963 26 16000000c39d1f00000000000100030000000000000000000000 .......................... +3887 8.125655174 127.0.0.1:57415 127.0.0.1:57433 3333524494 12 ffffffff5a000b0000000000 ....Z....... +3897 8.150700331 127.0.0.1:57433 127.0.0.1:57415 377461989 12 feffffff0344010014440100 .....D...D.. +3915 8.172880888 127.0.0.1:57415 127.0.0.1:57433 3333524506 12 1a00000037260b0000000000 ....7&...... +3917 8.173009634 127.0.0.1:57415 127.0.0.1:57433 3333524518 26 16000000548f6340e25e3140010003000000c59d1f0000000000 ....T.c@.^1@.............. +3919 8.173356056 127.0.0.1:57433 127.0.0.1:57415 377462001 12 ffffffff37260b0000000000 ....7&...... +3921 8.173773289 127.0.0.1:57433 127.0.0.1:57415 377462013 12 160000005b000b0000000000 ....[....... +3923 8.173983335 127.0.0.1:57433 127.0.0.1:57415 377462025 22 12000000c59d1f000000000001000300000000000000 ...................... +3925 8.174368143 127.0.0.1:57415 127.0.0.1:57433 3333524544 12 ffffffff5b000b0000000000 ....[....... +3949 8.276051283 127.0.0.1:57415 127.0.0.1:57433 3333524556 12 1a00000038260b0000000000 ....8&...... +3951 8.276250839 127.0.0.1:57415 127.0.0.1:57433 3333524568 26 16000000548f6340e25e3140010003000000c79d1f0000000000 ....T.c@.^1@.............. +3953 8.276625156 127.0.0.1:57433 127.0.0.1:57415 377462047 12 ffffffff38260b0000000000 ....8&...... +3955 8.277448893 127.0.0.1:57433 127.0.0.1:57415 377462059 12 160000005c000b0000000000 ....\....... +3957 8.277621031 127.0.0.1:57433 127.0.0.1:57415 377462071 22 12000000c79d1f000000000001000300000000000000 ...................... +3959 8.277820349 127.0.0.1:57415 127.0.0.1:57433 3333524594 12 ffffffff5c000b0000000000 ....\....... +3971 8.379999638 127.0.0.1:57415 127.0.0.1:57433 3333524606 12 1a00000039260b0000000000 ....9&...... +3973 8.380441427 127.0.0.1:57415 127.0.0.1:57433 3333524618 26 16000000548f6340e25e3140010003000000c99d1f0000000000 ....T.c@.^1@.............. +3975 8.380793810 127.0.0.1:57433 127.0.0.1:57415 377462093 12 ffffffff39260b0000000000 ....9&...... +3977 8.381444931 127.0.0.1:57433 127.0.0.1:57415 377462105 12 160000005d000b0000000000 ....]....... +3979 8.381614923 127.0.0.1:57433 127.0.0.1:57415 377462117 22 12000000c99d1f000000000001000300000000000000 ...................... +3981 8.381927490 127.0.0.1:57415 127.0.0.1:57433 3333524644 12 ffffffff5d000b0000000000 ....]....... +3988 8.396656752 127.0.0.1:57415 127.0.0.1:57433 3333524656 12 feffffff1544010003440100 .....D...D.. +3991 8.425148487 127.0.0.1:57415 127.0.0.1:57433 3333524668 12 220000003a260b0000000000 "...:&...... +3993 8.425383329 127.0.0.1:57415 127.0.0.1:57433 3333524680 34 1e0000001c2118d0c46f33bb0100030000005113020000000000f0ad25c39d01 .....!...o3.......Q.........%..... +3995 8.425564051 127.0.0.1:57415 127.0.0.1:57433 3333524714 12 430000003b260b0000000000 C...;&...... +3997 8.425690174 127.0.0.1:57415 127.0.0.1:57433 3333524726 67 3f000000980433cb0cb47c38010003000000010000000051130200000000003d ?.....3...|8...........Q.......=B.....&......... +3998 8.425695419 127.0.0.1:57433 127.0.0.1:57415 377462139 12 ffffffff3a260b0000000000 ....:&...... +4001 8.425878763 127.0.0.1:57433 127.0.0.1:57415 377462151 12 ffffffff3b260b0000000000 ....;&...... +4003 8.427291155 127.0.0.1:57433 127.0.0.1:57415 377462163 12 340000005e000b0000000000 4...^....... +4005 8.427428484 127.0.0.1:57433 127.0.0.1:57415 377462175 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Q.........i!n. +4007 8.427682638 127.0.0.1:57415 127.0.0.1:57433 3333524793 12 ffffffff5e000b0000000000 ....^....... +4009 8.428524017 127.0.0.1:57415 127.0.0.1:57433 3333524805 12 1e0000003c260b0000000000 ....<&...... +4011 8.428724289 127.0.0.1:57415 127.0.0.1:57433 3333524817 30 1a00000055ceff62b21b3a50010003000000cb9d1f000000000000000000 ....U..b..:P.................. +4013 8.429010153 127.0.0.1:57433 127.0.0.1:57415 377462227 12 ffffffff3c260b0000000000 ....<&...... +4015 8.429388523 127.0.0.1:57433 127.0.0.1:57415 377462239 12 1a0000005f000b0000000000 ...._....... +4017 8.429531813 127.0.0.1:57433 127.0.0.1:57415 377462251 26 16000000cb9d1f00000000000100030000000000000000000000 .......................... +4020 8.429763556 127.0.0.1:57415 127.0.0.1:57433 3333524847 12 ffffffff5f000b0000000000 ...._....... +4023 8.483708143 127.0.0.1:57415 127.0.0.1:57433 3333524859 12 1a0000003d260b0000000000 ....=&...... +4025 8.483882904 127.0.0.1:57415 127.0.0.1:57433 3333524871 26 16000000548f6340e25e3140010003000000cd9d1f0000000000 ....T.c@.^1@.............. +4029 8.484409571 127.0.0.1:57433 127.0.0.1:57415 377462277 12 ffffffff3d260b0000000000 ....=&...... +4031 8.484785557 127.0.0.1:57433 127.0.0.1:57415 377462289 12 1600000060000b0000000000 ....`....... +4033 8.484935760 127.0.0.1:57433 127.0.0.1:57415 377462301 22 12000000cd9d1f000000000001000300000000000000 ...................... +4035 8.485152483 127.0.0.1:57415 127.0.0.1:57433 3333524897 12 ffffffff60000b0000000000 ....`....... +4087 8.587142706 127.0.0.1:57415 127.0.0.1:57433 3333524909 12 1a0000003e260b0000000000 ....>&...... +4089 8.587407589 127.0.0.1:57415 127.0.0.1:57433 3333524921 26 16000000548f6340e25e3140010003000000cf9d1f0000000000 ....T.c@.^1@.............. +4091 8.587733746 127.0.0.1:57433 127.0.0.1:57415 377462323 12 ffffffff3e260b0000000000 ....>&...... +4093 8.588270664 127.0.0.1:57433 127.0.0.1:57415 377462335 12 1600000061000b0000000000 ....a....... +4095 8.588399887 127.0.0.1:57433 127.0.0.1:57415 377462347 22 12000000cf9d1f000000000001000300000000000000 ...................... +4097 8.588741064 127.0.0.1:57415 127.0.0.1:57433 3333524947 12 ffffffff61000b0000000000 ....a....... +4150 8.652402639 127.0.0.1:57433 127.0.0.1:57415 377462369 12 feffffff0444010015440100 .....D...D.. +4189 8.690495253 127.0.0.1:57415 127.0.0.1:57433 3333524959 12 1a0000003f260b0000000000 ....?&...... +4191 8.690738678 127.0.0.1:57415 127.0.0.1:57433 3333524971 26 16000000548f6340e25e3140010003000000d19d1f0000000000 ....T.c@.^1@.............. +4193 8.691064835 127.0.0.1:57433 127.0.0.1:57415 377462381 12 ffffffff3f260b0000000000 ....?&...... +4195 8.691533566 127.0.0.1:57433 127.0.0.1:57415 377462393 12 1600000062000b0000000000 ....b....... +4197 8.691691637 127.0.0.1:57433 127.0.0.1:57415 377462405 22 12000000d19d1f000000000001000300000000000000 ...................... +4199 8.691916704 127.0.0.1:57415 127.0.0.1:57433 3333524997 12 ffffffff62000b0000000000 ....b....... +4205 8.729641199 127.0.0.1:57415 127.0.0.1:57433 3333525009 12 6500000040260b0000000000 e...@&...... +4207 8.729819298 127.0.0.1:57415 127.0.0.1:57433 3333525021 101 1e0000001c2118d0c46f33bb010003000000521302000000000020af25c39d01 .....!...o3.......R....... .%.....?.....3...|8.. +4209 8.730149269 127.0.0.1:57433 127.0.0.1:57415 377462427 12 ffffffff40260b0000000000 ....@&...... +4211 8.731251240 127.0.0.1:57433 127.0.0.1:57415 377462439 12 3400000063000b0000000000 4...c....... +4213 8.731402636 127.0.0.1:57433 127.0.0.1:57415 377462451 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....R.........{... +4215 8.731741428 127.0.0.1:57415 127.0.0.1:57433 3333525122 12 ffffffff63000b0000000000 ....c....... +4217 8.732592821 127.0.0.1:57415 127.0.0.1:57433 3333525134 12 1e00000041260b0000000000 ....A&...... +4219 8.732739449 127.0.0.1:57415 127.0.0.1:57433 3333525146 30 1a00000055ceff62b21b3a50010003000000d39d1f000000000000000000 ....U..b..:P.................. +4221 8.733034849 127.0.0.1:57433 127.0.0.1:57415 377462503 12 ffffffff41260b0000000000 ....A&...... +4223 8.733390808 127.0.0.1:57433 127.0.0.1:57415 377462515 12 1a00000064000b0000000000 ....d....... +4225 8.733561993 127.0.0.1:57433 127.0.0.1:57415 377462527 26 16000000d39d1f00000000000100030000000000000000000000 .......................... +4227 8.733735561 127.0.0.1:57415 127.0.0.1:57433 3333525176 12 ffffffff64000b0000000000 ....d....... +4310 8.793206692 127.0.0.1:57415 127.0.0.1:57433 3333525188 12 1a00000042260b0000000000 ....B&...... +4312 8.793482780 127.0.0.1:57415 127.0.0.1:57433 3333525200 26 16000000548f6340e25e3140010003000000d59d1f0000000000 ....T.c@.^1@.............. +4314 8.793941498 127.0.0.1:57433 127.0.0.1:57415 377462553 12 ffffffff42260b0000000000 ....B&...... +4316 8.794530869 127.0.0.1:57433 127.0.0.1:57415 377462565 12 1600000065000b0000000000 ....e....... +4318 8.794682503 127.0.0.1:57433 127.0.0.1:57415 377462577 22 12000000d59d1f000000000001000300000000000000 ...................... +4320 8.794989347 127.0.0.1:57415 127.0.0.1:57433 3333525226 12 ffffffff65000b0000000000 ....e....... +4501 8.897691250 127.0.0.1:57415 127.0.0.1:57433 3333525238 12 feffffff1644010004440100 .....D...D.. +4504 8.897987604 127.0.0.1:57415 127.0.0.1:57433 3333525250 12 1a00000043260b0000000000 ....C&...... +4506 8.898240328 127.0.0.1:57415 127.0.0.1:57433 3333525262 26 16000000548f6340e25e3140010003000000d79d1f0000000000 ....T.c@.^1@.............. +4508 8.898549557 127.0.0.1:57433 127.0.0.1:57415 377462599 12 ffffffff43260b0000000000 ....C&...... +4510 8.899089575 127.0.0.1:57433 127.0.0.1:57415 377462611 12 1600000066000b0000000000 ....f....... +4512 8.899279356 127.0.0.1:57433 127.0.0.1:57415 377462623 22 12000000d79d1f000000000001000300000000000000 ...................... +4514 8.899535656 127.0.0.1:57415 127.0.0.1:57433 3333525288 12 ffffffff66000b0000000000 ....f....... +4800 9.002105713 127.0.0.1:57415 127.0.0.1:57433 3333525300 12 1a00000044260b0000000000 ....D&...... +4802 9.002276182 127.0.0.1:57415 127.0.0.1:57433 3333525312 26 16000000548f6340e25e3140010003000000d99d1f0000000000 ....T.c@.^1@.............. +4804 9.002640247 127.0.0.1:57433 127.0.0.1:57415 377462645 12 ffffffff44260b0000000000 ....D&...... +4806 9.003189087 127.0.0.1:57433 127.0.0.1:57415 377462657 12 1600000067000b0000000000 ....g....... +4808 9.003432989 127.0.0.1:57433 127.0.0.1:57415 377462669 22 12000000d99d1f000000000001000300000000000000 ...................... +4810 9.003772020 127.0.0.1:57415 127.0.0.1:57433 3333525338 12 ffffffff67000b0000000000 ....g....... +4816 9.034827471 127.0.0.1:57415 127.0.0.1:57433 3333525350 12 2200000045260b0000000000 "...E&...... +4818 9.034993649 127.0.0.1:57415 127.0.0.1:57433 3333525362 34 1e0000001c2118d0c46f33bb010003000000531302000000000052b025c39d01 .....!...o3.......S.......R.%..... +4820 9.035207272 127.0.0.1:57415 127.0.0.1:57433 3333525396 12 4300000046260b0000000000 C...F&...... +4822 9.035329342 127.0.0.1:57415 127.0.0.1:57433 3333525408 67 3f000000980433cb0cb47c38010003000000010000000053130200000000003d ?.....3...|8...........S.......=B.....&......... +4823 9.035331011 127.0.0.1:57433 127.0.0.1:57415 377462691 12 ffffffff45260b0000000000 ....E&...... +4826 9.035587549 127.0.0.1:57433 127.0.0.1:57415 377462703 12 ffffffff46260b0000000000 ....F&...... +4828 9.036662340 127.0.0.1:57433 127.0.0.1:57415 377462715 12 3400000068000b0000000000 4...h....... +4830 9.036833286 127.0.0.1:57433 127.0.0.1:57415 377462727 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....S.........=... +4832 9.037136078 127.0.0.1:57415 127.0.0.1:57433 3333525475 12 ffffffff68000b0000000000 ....h....... +4833 9.038259029 127.0.0.1:57415 127.0.0.1:57433 3333525487 12 1e00000047260b0000000000 ....G&...... +4835 9.038501740 127.0.0.1:57415 127.0.0.1:57433 3333525499 30 1a00000055ceff62b21b3a50010003000000db9d1f000000000000000000 ....U..b..:P.................. +4837 9.038808823 127.0.0.1:57433 127.0.0.1:57415 377462779 12 ffffffff47260b0000000000 ....G&...... +4839 9.039703369 127.0.0.1:57433 127.0.0.1:57415 377462791 12 1a00000069000b0000000000 ....i....... +4841 9.039865017 127.0.0.1:57433 127.0.0.1:57415 377462803 26 16000000db9d1f00000000000100030000000000000000000000 .......................... +4843 9.040150881 127.0.0.1:57415 127.0.0.1:57433 3333525529 12 ffffffff69000b0000000000 ....i....... +4849 9.106187344 127.0.0.1:57415 127.0.0.1:57433 3333525541 12 1a00000048260b0000000000 ....H&...... +4851 9.106462479 127.0.0.1:57415 127.0.0.1:57433 3333525553 26 16000000548f6340e25e3140010003000000dd9d1f0000000000 ....T.c@.^1@.............. +4853 9.106799126 127.0.0.1:57433 127.0.0.1:57415 377462829 12 ffffffff48260b0000000000 ....H&...... +4855 9.107280493 127.0.0.1:57433 127.0.0.1:57415 377462841 12 160000006a000b0000000000 ....j....... +4857 9.107497692 127.0.0.1:57433 127.0.0.1:57415 377462853 22 12000000dd9d1f000000000001000300000000000000 ...................... +4859 9.107734442 127.0.0.1:57415 127.0.0.1:57433 3333525579 12 ffffffff6a000b0000000000 ....j....... +4863 9.154122591 127.0.0.1:57433 127.0.0.1:57415 377462875 12 feffffff0544010016440100 .....D...D.. +4869 9.209124088 127.0.0.1:57415 127.0.0.1:57433 3333525591 12 1a00000049260b0000000000 ....I&...... +4871 9.209302902 127.0.0.1:57415 127.0.0.1:57433 3333525603 26 16000000548f6340e25e3140010003000000df9d1f0000000000 ....T.c@.^1@.............. +4873 9.209610462 127.0.0.1:57433 127.0.0.1:57415 377462887 12 ffffffff49260b0000000000 ....I&...... +4875 9.210106134 127.0.0.1:57433 127.0.0.1:57415 377462899 12 160000006b000b0000000000 ....k....... +4877 9.210308552 127.0.0.1:57433 127.0.0.1:57415 377462911 22 12000000df9d1f000000000001000300000000000000 ...................... +4879 9.210706711 127.0.0.1:57415 127.0.0.1:57433 3333525629 12 ffffffff6b000b0000000000 ....k....... +4885 9.312270880 127.0.0.1:57415 127.0.0.1:57433 3333525641 12 1a0000004a260b0000000000 ....J&...... +4887 9.312520266 127.0.0.1:57415 127.0.0.1:57433 3333525653 26 16000000548f6340e25e3140010003000000e19d1f0000000000 ....T.c@.^1@.............. +4889 9.312759876 127.0.0.1:57433 127.0.0.1:57415 377462933 12 ffffffff4a260b0000000000 ....J&...... +4891 9.313300848 127.0.0.1:57433 127.0.0.1:57415 377462945 12 160000006c000b0000000000 ....l....... +4893 9.313491583 127.0.0.1:57433 127.0.0.1:57415 377462957 22 12000000e19d1f000000000001000300000000000000 ...................... +4895 9.313753366 127.0.0.1:57415 127.0.0.1:57433 3333525679 12 ffffffff6c000b0000000000 ....l....... +4897 9.340362787 127.0.0.1:57415 127.0.0.1:57433 3333525691 12 220000004b260b0000000000 "...K&...... +4899 9.340538263 127.0.0.1:57415 127.0.0.1:57433 3333525703 34 1e0000001c2118d0c46f33bb010003000000541302000000000083b125c39d01 .....!...o3.......T.........%..... +4901 9.340625286 127.0.0.1:57415 127.0.0.1:57433 3333525737 12 430000004c260b0000000000 C...L&...... +4903 9.340707779 127.0.0.1:57415 127.0.0.1:57433 3333525749 67 3f000000980433cb0cb47c38010003000000010000000054130200000000003d ?.....3...|8...........T.......=B.....&......... +4905 9.340777159 127.0.0.1:57433 127.0.0.1:57415 377462979 12 ffffffff4b260b0000000000 ....K&...... +4907 9.340961695 127.0.0.1:57433 127.0.0.1:57415 377462991 12 ffffffff4c260b0000000000 ....L&...... +4909 9.341850996 127.0.0.1:57433 127.0.0.1:57415 377463003 12 340000006d000b0000000000 4...m....... +4911 9.342013597 127.0.0.1:57433 127.0.0.1:57415 377463015 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....T............. +4913 9.342270613 127.0.0.1:57415 127.0.0.1:57433 3333525816 12 ffffffff6d000b0000000000 ....m....... +4915 9.343111753 127.0.0.1:57415 127.0.0.1:57433 3333525828 12 1e0000004d260b0000000000 ....M&...... +4917 9.343249083 127.0.0.1:57415 127.0.0.1:57433 3333525840 30 1a00000055ceff62b21b3a50010003000000e39d1f000000000000000000 ....U..b..:P.................. +4919 9.343585253 127.0.0.1:57433 127.0.0.1:57415 377463067 12 ffffffff4d260b0000000000 ....M&...... +4921 9.343975544 127.0.0.1:57433 127.0.0.1:57415 377463079 12 1a0000006e000b0000000000 ....n....... +4923 9.344140768 127.0.0.1:57433 127.0.0.1:57415 377463091 26 16000000e39d1f00000000000100030000000000000000000000 .......................... +4925 9.344398975 127.0.0.1:57415 127.0.0.1:57433 3333525870 12 ffffffff6e000b0000000000 ....n....... +4934 9.399800301 127.0.0.1:57415 127.0.0.1:57433 3333525882 12 feffffff1744010005440100 .....D...D.. +4937 9.416170835 127.0.0.1:57415 127.0.0.1:57433 3333525894 12 1a0000004e260b0000000000 ....N&...... +4939 9.416323662 127.0.0.1:57415 127.0.0.1:57433 3333525906 26 16000000548f6340e25e3140010003000000e59d1f0000000000 ....T.c@.^1@.............. +4941 9.416657209 127.0.0.1:57433 127.0.0.1:57415 377463117 12 ffffffff4e260b0000000000 ....N&...... +4943 9.417169333 127.0.0.1:57433 127.0.0.1:57415 377463129 12 160000006f000b0000000000 ....o....... +4945 9.417317152 127.0.0.1:57433 127.0.0.1:57415 377463141 22 12000000e59d1f000000000001000300000000000000 ...................... +4947 9.417709589 127.0.0.1:57415 127.0.0.1:57433 3333525932 12 ffffffff6f000b0000000000 ....o....... +4953 9.520024776 127.0.0.1:57415 127.0.0.1:57433 3333525944 12 1a0000004f260b0000000000 ....O&...... +4955 9.520198822 127.0.0.1:57415 127.0.0.1:57433 3333525956 26 16000000548f6340e25e3140010003000000e79d1f0000000000 ....T.c@.^1@.............. +4957 9.520547390 127.0.0.1:57433 127.0.0.1:57415 377463163 12 ffffffff4f260b0000000000 ....O&...... +4959 9.521250010 127.0.0.1:57433 127.0.0.1:57415 377463175 12 1600000070000b0000000000 ....p....... +4961 9.521446943 127.0.0.1:57433 127.0.0.1:57415 377463187 22 12000000e79d1f000000000001000300000000000000 ...................... +4963 9.521723747 127.0.0.1:57415 127.0.0.1:57433 3333525982 12 ffffffff70000b0000000000 ....p....... +4971 9.624317408 127.0.0.1:57415 127.0.0.1:57433 3333525994 12 1a00000050260b0000000000 ....P&...... +4973 9.624566078 127.0.0.1:57415 127.0.0.1:57433 3333526006 26 16000000548f6340e25e3140010003000000e99d1f0000000000 ....T.c@.^1@.............. +4975 9.625020742 127.0.0.1:57433 127.0.0.1:57415 377463209 12 ffffffff50260b0000000000 ....P&...... +4977 9.625631809 127.0.0.1:57433 127.0.0.1:57415 377463221 12 1600000071000b0000000000 ....q....... +4979 9.625782728 127.0.0.1:57433 127.0.0.1:57415 377463233 22 12000000e99d1f000000000001000300000000000000 ...................... +4981 9.626065969 127.0.0.1:57415 127.0.0.1:57433 3333526032 12 ffffffff71000b0000000000 ....q....... +4983 9.644384623 127.0.0.1:57415 127.0.0.1:57433 3333526044 12 6500000051260b0000000000 e...Q&...... +4985 9.644605637 127.0.0.1:57415 127.0.0.1:57433 3333526056 101 1e0000001c2118d0c46f33bb0100030000005513020000000000b3b225c39d01 .....!...o3.......U.........%.....?.....3...|8.. +4987 9.644827366 127.0.0.1:57433 127.0.0.1:57415 377463255 12 ffffffff51260b0000000000 ....Q&...... +4989 9.645855665 127.0.0.1:57433 127.0.0.1:57415 377463267 12 3400000072000b0000000000 4...r....... +4991 9.646015644 127.0.0.1:57433 127.0.0.1:57415 377463279 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....U...........(. +4993 9.646262646 127.0.0.1:57415 127.0.0.1:57433 3333526157 12 ffffffff72000b0000000000 ....r....... +4995 9.647121906 127.0.0.1:57415 127.0.0.1:57433 3333526169 12 1e00000052260b0000000000 ....R&...... +4997 9.647262573 127.0.0.1:57415 127.0.0.1:57433 3333526181 30 1a00000055ceff62b21b3a50010003000000eb9d1f000000000000000000 ....U..b..:P.................. +4999 9.647592068 127.0.0.1:57433 127.0.0.1:57415 377463331 12 ffffffff52260b0000000000 ....R&...... +5001 9.647964954 127.0.0.1:57433 127.0.0.1:57415 377463343 12 1a00000073000b0000000000 ....s....... +5003 9.648111343 127.0.0.1:57433 127.0.0.1:57415 377463355 26 16000000eb9d1f00000000000100030000000000000000000000 .......................... +5005 9.648329258 127.0.0.1:57415 127.0.0.1:57433 3333526211 12 ffffffff73000b0000000000 ....s....... +5009 9.654125452 127.0.0.1:57433 127.0.0.1:57415 377463381 12 feffffff0644010017440100 .....D...D.. +5015 9.729317904 127.0.0.1:57415 127.0.0.1:57433 3333526223 12 1a00000053260b0000000000 ....S&...... +5017 9.729583025 127.0.0.1:57415 127.0.0.1:57433 3333526235 26 16000000548f6340e25e3140010003000000ed9d1f0000000000 ....T.c@.^1@.............. +5019 9.729836464 127.0.0.1:57433 127.0.0.1:57415 377463393 12 ffffffff53260b0000000000 ....S&...... +5021 9.730376244 127.0.0.1:57433 127.0.0.1:57415 377463405 12 1600000074000b0000000000 ....t....... +5023 9.730582476 127.0.0.1:57433 127.0.0.1:57415 377463417 22 12000000ed9d1f000000000001000300000000000000 ...................... +5025 9.730786085 127.0.0.1:57415 127.0.0.1:57433 3333526261 12 ffffffff74000b0000000000 ....t....... +5029 9.832075357 127.0.0.1:57415 127.0.0.1:57433 3333526273 12 1a00000054260b0000000000 ....T&...... +5031 9.832876444 127.0.0.1:57415 127.0.0.1:57433 3333526285 26 16000000548f6340e25e3140010003000000ef9d1f0000000000 ....T.c@.^1@.............. +5033 9.833222389 127.0.0.1:57433 127.0.0.1:57415 377463439 12 ffffffff54260b0000000000 ....T&...... +5035 9.833882809 127.0.0.1:57433 127.0.0.1:57415 377463451 12 1600000075000b0000000000 ....u....... +5037 9.834038258 127.0.0.1:57433 127.0.0.1:57415 377463463 22 12000000ef9d1f000000000001000300000000000000 ...................... +5039 9.834312916 127.0.0.1:57415 127.0.0.1:57433 3333526311 12 ffffffff75000b0000000000 ....u....... +5048 9.900486231 127.0.0.1:57415 127.0.0.1:57433 3333526323 12 feffffff1844010006440100 .....D...D.. +5053 9.935805082 127.0.0.1:57415 127.0.0.1:57433 3333526335 12 1a00000055260b0000000000 ....U&...... +5055 9.935965061 127.0.0.1:57415 127.0.0.1:57433 3333526347 26 16000000548f6340e25e3140010003000000f19d1f0000000000 ....T.c@.^1@.............. +5057 9.936372519 127.0.0.1:57433 127.0.0.1:57415 377463485 12 ffffffff55260b0000000000 ....U&...... +5059 9.937003851 127.0.0.1:57433 127.0.0.1:57415 377463497 12 1600000076000b0000000000 ....v....... +5061 9.937200546 127.0.0.1:57433 127.0.0.1:57415 377463509 22 12000000f19d1f000000000001000300000000000000 ...................... +5063 9.937504768 127.0.0.1:57415 127.0.0.1:57433 3333526373 12 ffffffff76000b0000000000 ....v....... +5065 9.949306965 127.0.0.1:57415 127.0.0.1:57433 3333526385 12 6500000056260b0000000000 e...V&...... +5067 9.949463129 127.0.0.1:57415 127.0.0.1:57433 3333526397 101 1e0000001c2118d0c46f33bb0100030000005613020000000000e4b325c39d01 .....!...o3.......V.........%.....?.....3...|8.. +5069 9.949824572 127.0.0.1:57433 127.0.0.1:57415 377463531 12 ffffffff56260b0000000000 ....V&...... +5071 9.950896263 127.0.0.1:57433 127.0.0.1:57415 377463543 12 3400000077000b0000000000 4...w....... +5073 9.951061964 127.0.0.1:57433 127.0.0.1:57415 377463555 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....V...........V. +5075 9.951459885 127.0.0.1:57415 127.0.0.1:57433 3333526498 12 ffffffff77000b0000000000 ....w....... +5077 9.952193975 127.0.0.1:57415 127.0.0.1:57433 3333526510 12 1e00000057260b0000000000 ....W&...... +5079 9.952345848 127.0.0.1:57415 127.0.0.1:57433 3333526522 30 1a00000055ceff62b21b3a50010003000000f39d1f000000000000000000 ....U..b..:P.................. +5081 9.952632904 127.0.0.1:57433 127.0.0.1:57415 377463607 12 ffffffff57260b0000000000 ....W&...... +5083 9.953006744 127.0.0.1:57433 127.0.0.1:57415 377463619 12 1a00000078000b0000000000 ....x....... +5085 9.953188896 127.0.0.1:57433 127.0.0.1:57415 377463631 26 16000000f39d1f00000000000100030000000000000000000000 .......................... +5087 9.953493118 127.0.0.1:57415 127.0.0.1:57433 3333526552 12 ffffffff78000b0000000000 ....x....... +5091 10.038631201 127.0.0.1:57415 127.0.0.1:57433 3333526564 12 1a00000058260b0000000000 ....X&...... +5093 10.038801670 127.0.0.1:57415 127.0.0.1:57433 3333526576 26 16000000548f6340e25e3140010003000000f59d1f0000000000 ....T.c@.^1@.............. +5095 10.039141893 127.0.0.1:57433 127.0.0.1:57415 377463657 12 ffffffff58260b0000000000 ....X&...... +5097 10.039687157 127.0.0.1:57433 127.0.0.1:57415 377463669 12 1600000079000b0000000000 ....y....... +5099 10.039846897 127.0.0.1:57433 127.0.0.1:57415 377463681 22 12000000f59d1f000000000001000300000000000000 ...................... +5101 10.040150166 127.0.0.1:57415 127.0.0.1:57433 3333526602 12 ffffffff79000b0000000000 ....y....... +5111 10.141534567 127.0.0.1:57415 127.0.0.1:57433 3333526614 12 1a00000059260b0000000000 ....Y&...... +5113 10.141764164 127.0.0.1:57415 127.0.0.1:57433 3333526626 26 16000000548f6340e25e3140010003000000f79d1f0000000000 ....T.c@.^1@.............. +5117 10.142253876 127.0.0.1:57433 127.0.0.1:57415 377463703 12 ffffffff59260b0000000000 ....Y&...... +5119 10.142701864 127.0.0.1:57433 127.0.0.1:57415 377463715 12 160000007a000b0000000000 ....z....... +5121 10.143227577 127.0.0.1:57433 127.0.0.1:57415 377463727 22 12000000f79d1f000000000001000300000000000000 ...................... +5123 10.143586159 127.0.0.1:57415 127.0.0.1:57433 3333526652 12 ffffffff7a000b0000000000 ....z....... +5129 10.154298544 127.0.0.1:57433 127.0.0.1:57415 377463749 12 feffffff0744010018440100 .....D...D.. +5139 10.245978594 127.0.0.1:57415 127.0.0.1:57433 3333526664 12 1a0000005a260b0000000000 ....Z&...... +5141 10.246138096 127.0.0.1:57415 127.0.0.1:57433 3333526676 26 16000000548f6340e25e3140010003000000f99d1f0000000000 ....T.c@.^1@.............. +5143 10.246547937 127.0.0.1:57433 127.0.0.1:57415 377463761 12 ffffffff5a260b0000000000 ....Z&...... +5145 10.247299194 127.0.0.1:57433 127.0.0.1:57415 377463773 12 160000007b000b0000000000 ....{....... +5147 10.247460604 127.0.0.1:57433 127.0.0.1:57415 377463785 22 12000000f99d1f000000000001000300000000000000 ...................... +5149 10.247786760 127.0.0.1:57415 127.0.0.1:57433 3333526702 12 ffffffff7b000b0000000000 ....{....... +5151 10.254293442 127.0.0.1:57415 127.0.0.1:57433 3333526714 12 220000005b260b0000000000 "...[&...... +5153 10.254490852 127.0.0.1:57415 127.0.0.1:57433 3333526726 34 1e0000001c2118d0c46f33bb010003000000571302000000000015b525c39d01 .....!...o3.......W.........%..... +5155 10.254633665 127.0.0.1:57415 127.0.0.1:57433 3333526760 12 430000005c260b0000000000 C...\&...... +5157 10.254719734 127.0.0.1:57415 127.0.0.1:57433 3333526772 67 3f000000980433cb0cb47c38010003000000010000000057130200000000003d ?.....3...|8...........W.......=B.....&......... +5158 10.254794359 127.0.0.1:57433 127.0.0.1:57415 377463807 12 ffffffff5b260b0000000000 ....[&...... +5159 10.254893064 127.0.0.1:57433 127.0.0.1:57415 377463819 12 ffffffff5c260b0000000000 ....\&...... +5162 10.256003857 127.0.0.1:57433 127.0.0.1:57415 377463831 12 340000007c000b0000000000 4...|....... +5164 10.256146669 127.0.0.1:57433 127.0.0.1:57415 377463843 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....W............. +5166 10.256486177 127.0.0.1:57415 127.0.0.1:57433 3333526839 12 ffffffff7c000b0000000000 ....|....... +5168 10.257231236 127.0.0.1:57415 127.0.0.1:57433 3333526851 12 1e0000005d260b0000000000 ....]&...... +5170 10.257395744 127.0.0.1:57415 127.0.0.1:57433 3333526863 30 1a00000055ceff62b21b3a50010003000000fb9d1f000000000000000000 ....U..b..:P.................. +5172 10.257800102 127.0.0.1:57433 127.0.0.1:57415 377463895 12 ffffffff5d260b0000000000 ....]&...... +5174 10.258169889 127.0.0.1:57433 127.0.0.1:57415 377463907 12 1a0000007d000b0000000000 ....}....... +5176 10.258306265 127.0.0.1:57433 127.0.0.1:57415 377463919 26 16000000fb9d1f00000000000100030000000000000000000000 .......................... +5178 10.258621216 127.0.0.1:57415 127.0.0.1:57433 3333526893 12 ffffffff7d000b0000000000 ....}....... +5182 10.350621223 127.0.0.1:57415 127.0.0.1:57433 3333526905 12 1a0000005e260b0000000000 ....^&...... +5184 10.350798845 127.0.0.1:57415 127.0.0.1:57433 3333526917 26 16000000548f6340e25e3140010003000000fd9d1f0000000000 ....T.c@.^1@.............. +5186 10.351089239 127.0.0.1:57433 127.0.0.1:57415 377463945 12 ffffffff5e260b0000000000 ....^&...... +5188 10.351641417 127.0.0.1:57433 127.0.0.1:57415 377463957 12 160000007e000b0000000000 ....~....... +5190 10.351798296 127.0.0.1:57433 127.0.0.1:57415 377463969 22 12000000fd9d1f000000000001000300000000000000 ...................... +5192 10.352074385 127.0.0.1:57415 127.0.0.1:57433 3333526943 12 ffffffff7e000b0000000000 ....~....... +5205 10.401417017 127.0.0.1:57415 127.0.0.1:57433 3333526955 12 feffffff1944010007440100 .....D...D.. +5210 10.453091860 127.0.0.1:57415 127.0.0.1:57433 3333526967 12 1a0000005f260b0000000000 ...._&...... +5212 10.453253746 127.0.0.1:57415 127.0.0.1:57433 3333526979 26 16000000548f6340e25e3140010003000000ff9d1f0000000000 ....T.c@.^1@.............. +5214 10.453573465 127.0.0.1:57433 127.0.0.1:57415 377463991 12 ffffffff5f260b0000000000 ...._&...... +5216 10.454055786 127.0.0.1:57433 127.0.0.1:57415 377464003 12 160000007f000b0000000000 ............ +5218 10.454219818 127.0.0.1:57433 127.0.0.1:57415 377464015 22 12000000ff9d1f000000000001000300000000000000 ...................... +5220 10.454570532 127.0.0.1:57415 127.0.0.1:57433 3333527005 12 ffffffff7f000b0000000000 ............ +5262 10.557631016 127.0.0.1:57415 127.0.0.1:57433 3333527017 12 1a00000060260b0000000000 ....`&...... +5264 10.557839155 127.0.0.1:57415 127.0.0.1:57433 3333527029 26 16000000548f6340e25e3140010003000000019e1f0000000000 ....T.c@.^1@.............. +5266 10.558292627 127.0.0.1:57433 127.0.0.1:57415 377464037 12 ffffffff60260b0000000000 ....`&...... +5268 10.558826447 127.0.0.1:57433 127.0.0.1:57415 377464049 12 1600000080000b0000000000 ............ +5269 10.558985472 127.0.0.1:57415 127.0.0.1:57433 3333527055 113 6500000061260b00000000001e0000001c2118d0c46f33bb0100030000005813 e...a&...........!...o3.......X.......F.%.....?. +5271 10.559205770 127.0.0.1:57433 127.0.0.1:57415 377464061 22 12000000019e1f000000000001000300000000000000 ...................... +5273 10.559516907 127.0.0.1:57433 127.0.0.1:57415 377464083 12 ffffffff61260b0000000000 ....a&...... +5274 10.559549332 127.0.0.1:57415 127.0.0.1:57433 3333527168 12 ffffffff80000b0000000000 ............ +5277 10.560333967 127.0.0.1:57433 127.0.0.1:57415 377464095 12 3400000081000b0000000000 4........... +5278 10.560434580 127.0.0.1:57433 127.0.0.1:57415 377464107 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....X............. +5279 10.560587645 127.0.0.1:57415 127.0.0.1:57433 3333527180 12 ffffffff81000b0000000000 ............ +5281 10.561417818 127.0.0.1:57415 127.0.0.1:57433 3333527192 12 1e00000062260b0000000000 ....b&...... +5283 10.561644077 127.0.0.1:57415 127.0.0.1:57433 3333527204 30 1a00000055ceff62b21b3a50010003000000039e1f000000000000000000 ....U..b..:P.................. +5285 10.561994314 127.0.0.1:57433 127.0.0.1:57415 377464159 12 ffffffff62260b0000000000 ....b&...... +5287 10.562343359 127.0.0.1:57433 127.0.0.1:57415 377464171 12 1a00000082000b0000000000 ............ +5289 10.562506437 127.0.0.1:57433 127.0.0.1:57415 377464183 26 16000000039e1f00000000000100030000000000000000000000 .......................... +5291 10.562752724 127.0.0.1:57415 127.0.0.1:57433 3333527234 12 ffffffff82000b0000000000 ............ +5299 10.655766726 127.0.0.1:57433 127.0.0.1:57415 377464209 12 feffffff0844010019440100 .....D...D.. +5313 10.661553860 127.0.0.1:57415 127.0.0.1:57433 3333527246 12 1a00000063260b0000000000 ....c&...... +5315 10.661723375 127.0.0.1:57415 127.0.0.1:57433 3333527258 26 16000000548f6340e25e3140010003000000059e1f0000000000 ....T.c@.^1@.............. +5317 10.662079573 127.0.0.1:57433 127.0.0.1:57415 377464221 12 ffffffff63260b0000000000 ....c&...... +5319 10.662459850 127.0.0.1:57433 127.0.0.1:57415 377464233 12 1600000083000b0000000000 ............ +5321 10.662640572 127.0.0.1:57433 127.0.0.1:57415 377464245 22 12000000059e1f000000000001000300000000000000 ...................... +5323 10.663039684 127.0.0.1:57415 127.0.0.1:57433 3333527284 12 ffffffff83000b0000000000 ............ +5331 10.764607430 127.0.0.1:57415 127.0.0.1:57433 3333527296 12 1a00000064260b0000000000 ....d&...... +5333 10.764768362 127.0.0.1:57415 127.0.0.1:57433 3333527308 26 16000000548f6340e25e3140010003000000079e1f0000000000 ....T.c@.^1@.............. +5335 10.765068293 127.0.0.1:57433 127.0.0.1:57415 377464267 12 ffffffff64260b0000000000 ....d&...... +5337 10.765706778 127.0.0.1:57433 127.0.0.1:57415 377464279 12 1600000084000b0000000000 ............ +5339 10.765877008 127.0.0.1:57433 127.0.0.1:57415 377464291 22 12000000079e1f000000000001000300000000000000 ...................... +5341 10.766201258 127.0.0.1:57415 127.0.0.1:57433 3333527334 12 ffffffff84000b0000000000 ............ +5343 10.862831593 127.0.0.1:57415 127.0.0.1:57433 3333527346 12 6500000065260b0000000000 e...e&...... +5345 10.863061666 127.0.0.1:57415 127.0.0.1:57433 3333527358 101 1e0000001c2118d0c46f33bb010003000000591302000000000076b725c39d01 .....!...o3.......Y.......v.%.....?.....3...|8.. +5347 10.863455296 127.0.0.1:57433 127.0.0.1:57415 377464313 12 ffffffff65260b0000000000 ....e&...... +5349 10.864458323 127.0.0.1:57433 127.0.0.1:57415 377464325 12 3400000085000b0000000000 4........... +5351 10.864609718 127.0.0.1:57433 127.0.0.1:57415 377464337 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Y.........+... +5353 10.864853859 127.0.0.1:57415 127.0.0.1:57433 3333527459 12 ffffffff85000b0000000000 ............ +5355 10.865834713 127.0.0.1:57415 127.0.0.1:57433 3333527471 12 1e00000066260b0000000000 ....f&...... +5357 10.866015434 127.0.0.1:57415 127.0.0.1:57433 3333527483 30 1a00000055ceff62b21b3a50010003000000099e1f000000000000000000 ....U..b..:P.................. +5359 10.866299629 127.0.0.1:57433 127.0.0.1:57415 377464389 12 ffffffff66260b0000000000 ....f&...... +5361 10.866702557 127.0.0.1:57433 127.0.0.1:57415 377464401 12 1a00000086000b0000000000 ............ +5363 10.866859198 127.0.0.1:57433 127.0.0.1:57415 377464413 26 16000000099e1f00000000000100030000000000000000000000 .......................... +5365 10.867119551 127.0.0.1:57415 127.0.0.1:57433 3333527513 12 ffffffff86000b0000000000 ............ +5367 10.867581367 127.0.0.1:57415 127.0.0.1:57433 3333527525 12 1a00000067260b0000000000 ....g&...... +5369 10.867968082 127.0.0.1:57415 127.0.0.1:57433 3333527537 26 16000000548f6340e25e31400100030000000b9e1f0000000000 ....T.c@.^1@.............. +5371 10.868314981 127.0.0.1:57433 127.0.0.1:57415 377464439 12 ffffffff67260b0000000000 ....g&...... +5373 10.868815660 127.0.0.1:57433 127.0.0.1:57415 377464451 12 1600000087000b0000000000 ............ +5375 10.868957043 127.0.0.1:57433 127.0.0.1:57415 377464463 22 120000000b9e1f000000000001000300000000000000 ...................... +5377 10.869204760 127.0.0.1:57415 127.0.0.1:57433 3333527563 12 ffffffff87000b0000000000 ............ +5386 10.903136253 127.0.0.1:57415 127.0.0.1:57433 3333527575 12 feffffff1a44010008440100 .....D...D.. +5393 10.971429586 127.0.0.1:57415 127.0.0.1:57433 3333527587 12 1a00000068260b0000000000 ....h&...... +5395 10.971596956 127.0.0.1:57415 127.0.0.1:57433 3333527599 26 16000000548f6340e25e31400100030000000d9e1f0000000000 ....T.c@.^1@.............. +5397 10.972017527 127.0.0.1:57433 127.0.0.1:57415 377464485 12 ffffffff68260b0000000000 ....h&...... +5399 10.972399950 127.0.0.1:57433 127.0.0.1:57415 377464497 12 1600000088000b0000000000 ............ +5401 10.972560644 127.0.0.1:57433 127.0.0.1:57415 377464509 22 120000000d9e1f000000000001000300000000000000 ...................... +5403 10.972915173 127.0.0.1:57415 127.0.0.1:57433 3333527625 12 ffffffff88000b0000000000 ............ +5416 11.074490786 127.0.0.1:57415 127.0.0.1:57433 3333527637 12 1a00000069260b0000000000 ....i&...... +5418 11.074671745 127.0.0.1:57415 127.0.0.1:57433 3333527649 26 16000000548f6340e25e31400100030000000f9e1f0000000000 ....T.c@.^1@.............. +5420 11.074977398 127.0.0.1:57433 127.0.0.1:57415 377464531 12 ffffffff69260b0000000000 ....i&...... +5422 11.075577021 127.0.0.1:57433 127.0.0.1:57415 377464543 12 1600000089000b0000000000 ............ +5424 11.075745583 127.0.0.1:57433 127.0.0.1:57415 377464555 22 120000000f9e1f000000000001000300000000000000 ...................... +5426 11.076070070 127.0.0.1:57415 127.0.0.1:57433 3333527675 12 ffffffff89000b0000000000 ............ +5461 11.157352209 127.0.0.1:57433 127.0.0.1:57415 377464577 12 feffffff094401001a440100 .....D...D.. +5467 11.167594433 127.0.0.1:57415 127.0.0.1:57433 3333527687 12 650000006a260b0000000000 e...j&...... +5469 11.167759895 127.0.0.1:57415 127.0.0.1:57433 3333527699 101 1e0000001c2118d0c46f33bb0100030000005a13020000000000a6b825c39d01 .....!...o3.......Z.........%.....?.....3...|8.. +5471 11.168158531 127.0.0.1:57433 127.0.0.1:57415 377464589 12 ffffffff6a260b0000000000 ....j&...... +5473 11.169600487 127.0.0.1:57433 127.0.0.1:57415 377464601 12 340000008a000b0000000000 4........... +5475 11.169806242 127.0.0.1:57433 127.0.0.1:57415 377464613 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Z.........$... +5477 11.170093060 127.0.0.1:57415 127.0.0.1:57433 3333527800 12 ffffffff8a000b0000000000 ............ +5479 11.170918465 127.0.0.1:57415 127.0.0.1:57433 3333527812 12 1e0000006b260b0000000000 ....k&...... +5481 11.171072960 127.0.0.1:57415 127.0.0.1:57433 3333527824 30 1a00000055ceff62b21b3a50010003000000119e1f000000000000000000 ....U..b..:P.................. +5483 11.171396971 127.0.0.1:57433 127.0.0.1:57415 377464665 12 ffffffff6b260b0000000000 ....k&...... +5485 11.172045708 127.0.0.1:57433 127.0.0.1:57415 377464677 12 1a0000008b000b0000000000 ............ +5487 11.172181368 127.0.0.1:57433 127.0.0.1:57415 377464689 26 16000000119e1f00000000000100030000000000000000000000 .......................... +5489 11.172428370 127.0.0.1:57415 127.0.0.1:57433 3333527854 12 ffffffff8b000b0000000000 ............ +5491 11.177031279 127.0.0.1:57415 127.0.0.1:57433 3333527866 12 1a0000006c260b0000000000 ....l&...... +5493 11.177175522 127.0.0.1:57415 127.0.0.1:57433 3333527878 26 16000000548f6340e25e3140010003000000139e1f0000000000 ....T.c@.^1@.............. +5495 11.177479267 127.0.0.1:57433 127.0.0.1:57415 377464715 12 ffffffff6c260b0000000000 ....l&...... +5497 11.177921295 127.0.0.1:57433 127.0.0.1:57415 377464727 12 160000008c000b0000000000 ............ +5499 11.178059101 127.0.0.1:57433 127.0.0.1:57415 377464739 22 12000000139e1f000000000001000300000000000000 ...................... +5501 11.178259611 127.0.0.1:57415 127.0.0.1:57433 3333527904 12 ffffffff8c000b0000000000 ............ +5512 11.279340267 127.0.0.1:57415 127.0.0.1:57433 3333527916 12 1a0000006d260b0000000000 ....m&...... +5514 11.279539347 127.0.0.1:57415 127.0.0.1:57433 3333527928 26 16000000548f6340e25e3140010003000000159e1f0000000000 ....T.c@.^1@.............. +5516 11.280015945 127.0.0.1:57433 127.0.0.1:57415 377464761 12 ffffffff6d260b0000000000 ....m&...... +5518 11.280278444 127.0.0.1:57433 127.0.0.1:57415 377464773 12 160000008d000b0000000000 ............ +5520 11.280505657 127.0.0.1:57433 127.0.0.1:57415 377464785 22 12000000159e1f000000000001000300000000000000 ...................... +5522 11.280837297 127.0.0.1:57415 127.0.0.1:57433 3333527954 12 ffffffff8d000b0000000000 ............ +5535 11.382203579 127.0.0.1:57415 127.0.0.1:57433 3333527966 12 1a0000006e260b0000000000 ....n&...... +5537 11.382429361 127.0.0.1:57415 127.0.0.1:57433 3333527978 26 16000000548f6340e25e3140010003000000179e1f0000000000 ....T.c@.^1@.............. +5539 11.382783890 127.0.0.1:57433 127.0.0.1:57415 377464807 12 ffffffff6e260b0000000000 ....n&...... +5541 11.383410454 127.0.0.1:57433 127.0.0.1:57415 377464819 12 160000008e000b0000000000 ............ +5543 11.383573055 127.0.0.1:57433 127.0.0.1:57415 377464831 22 12000000179e1f000000000001000300000000000000 ...................... +5545 11.383794069 127.0.0.1:57415 127.0.0.1:57433 3333528004 12 ffffffff8e000b0000000000 ............ +5552 11.403814793 127.0.0.1:57415 127.0.0.1:57433 3333528016 12 feffffff1b44010009440100 .....D...D.. +5562 11.472567081 127.0.0.1:57415 127.0.0.1:57433 3333528028 12 220000006f260b0000000000 "...o&...... +5564 11.472844839 127.0.0.1:57415 127.0.0.1:57433 3333528040 34 1e0000001c2118d0c46f33bb0100030000005b13020000000000d7b925c39d01 .....!...o3.......[.........%..... +5566 11.473004341 127.0.0.1:57415 127.0.0.1:57433 3333528074 12 4300000070260b0000000000 C...p&...... +5568 11.473094225 127.0.0.1:57415 127.0.0.1:57433 3333528086 67 3f000000980433cb0cb47c3801000300000001000000005b130200000000003d ?.....3...|8...........[.......=B.....&......... +5569 11.473154545 127.0.0.1:57433 127.0.0.1:57415 377464853 12 ffffffff6f260b0000000000 ....o&...... +5570 11.473256588 127.0.0.1:57433 127.0.0.1:57415 377464865 12 ffffffff70260b0000000000 ....p&...... +5573 11.474621534 127.0.0.1:57433 127.0.0.1:57415 377464877 12 340000008f000b0000000000 4........... +5575 11.474779129 127.0.0.1:57433 127.0.0.1:57415 377464889 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....[...........?. +5577 11.475066423 127.0.0.1:57415 127.0.0.1:57433 3333528153 12 ffffffff8f000b0000000000 ............ +5578 11.476161480 127.0.0.1:57415 127.0.0.1:57433 3333528165 12 1e00000071260b0000000000 ....q&...... +5579 11.476269960 127.0.0.1:57415 127.0.0.1:57433 3333528177 30 1a00000055ceff62b21b3a50010003000000199e1f000000000000000000 ....U..b..:P.................. +5580 11.476571560 127.0.0.1:57433 127.0.0.1:57415 377464941 12 ffffffff71260b0000000000 ....q&...... +5582 11.476999044 127.0.0.1:57433 127.0.0.1:57415 377464953 12 1a00000090000b0000000000 ............ +5584 11.477146626 127.0.0.1:57433 127.0.0.1:57415 377464965 26 16000000199e1f00000000000100030000000000000000000000 .......................... +5586 11.477453470 127.0.0.1:57415 127.0.0.1:57433 3333528207 12 ffffffff90000b0000000000 ............ +5590 11.484985352 127.0.0.1:57415 127.0.0.1:57433 3333528219 12 1a00000072260b0000000000 ....r&...... +5592 11.485146046 127.0.0.1:57415 127.0.0.1:57433 3333528231 26 16000000548f6340e25e31400100030000001b9e1f0000000000 ....T.c@.^1@.............. +5594 11.485471487 127.0.0.1:57433 127.0.0.1:57415 377464991 12 ffffffff72260b0000000000 ....r&...... +5596 11.485841513 127.0.0.1:57433 127.0.0.1:57415 377465003 12 1600000091000b0000000000 ............ +5598 11.485982656 127.0.0.1:57433 127.0.0.1:57415 377465015 22 120000001b9e1f000000000001000300000000000000 ...................... +5600 11.486211538 127.0.0.1:57415 127.0.0.1:57433 3333528257 12 ffffffff91000b0000000000 ............ +5615 11.588955879 127.0.0.1:57415 127.0.0.1:57433 3333528269 12 1a00000073260b0000000000 ....s&...... +5617 11.589124918 127.0.0.1:57415 127.0.0.1:57433 3333528281 26 16000000548f6340e25e31400100030000001d9e1f0000000000 ....T.c@.^1@.............. +5619 11.589469433 127.0.0.1:57433 127.0.0.1:57415 377465037 12 ffffffff73260b0000000000 ....s&...... +5621 11.589924335 127.0.0.1:57433 127.0.0.1:57415 377465049 12 1600000092000b0000000000 ............ +5623 11.590084553 127.0.0.1:57433 127.0.0.1:57415 377465061 22 120000001d9e1f000000000001000300000000000000 ...................... +5625 11.590542316 127.0.0.1:57415 127.0.0.1:57433 3333528307 12 ffffffff92000b0000000000 ............ +5643 11.658316851 127.0.0.1:57433 127.0.0.1:57415 377465083 12 feffffff0a4401001b440100 .....D...D.. +5661 11.691926718 127.0.0.1:57415 127.0.0.1:57433 3333528319 12 1a00000074260b0000000000 ....t&...... +5663 11.692161560 127.0.0.1:57415 127.0.0.1:57433 3333528331 26 16000000548f6340e25e31400100030000001f9e1f0000000000 ....T.c@.^1@.............. +5665 11.692523241 127.0.0.1:57433 127.0.0.1:57415 377465095 12 ffffffff74260b0000000000 ....t&...... +5667 11.693332672 127.0.0.1:57433 127.0.0.1:57415 377465107 12 1600000093000b0000000000 ............ +5669 11.693495274 127.0.0.1:57433 127.0.0.1:57415 377465119 22 120000001f9e1f000000000001000300000000000000 ...................... +5671 11.693712950 127.0.0.1:57415 127.0.0.1:57433 3333528357 12 ffffffff93000b0000000000 ............ +5686 11.777063370 127.0.0.1:57415 127.0.0.1:57433 3333528369 12 2200000075260b0000000000 "...u&...... +5688 11.777242661 127.0.0.1:57415 127.0.0.1:57433 3333528381 34 1e0000001c2118d0c46f33bb0100030000005c1302000000000008bb25c39d01 .....!...o3.......\.........%..... +5690 11.777351141 127.0.0.1:57415 127.0.0.1:57433 3333528415 12 4300000076260b0000000000 C...v&...... +5692 11.777438164 127.0.0.1:57415 127.0.0.1:57433 3333528427 67 3f000000980433cb0cb47c3801000300000001000000005c130200000000003d ?.....3...|8...........\.......=B.....&......... +5694 11.777501583 127.0.0.1:57433 127.0.0.1:57415 377465141 12 ffffffff75260b0000000000 ....u&...... +5696 11.777665377 127.0.0.1:57433 127.0.0.1:57415 377465153 12 ffffffff76260b0000000000 ....v&...... +5698 11.778731823 127.0.0.1:57433 127.0.0.1:57415 377465165 12 3400000094000b0000000000 4........... +5700 11.778888464 127.0.0.1:57433 127.0.0.1:57415 377465177 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....\...........m. +5702 11.779202461 127.0.0.1:57415 127.0.0.1:57433 3333528494 12 ffffffff94000b0000000000 ............ +5704 11.780013084 127.0.0.1:57415 127.0.0.1:57433 3333528506 12 1e00000077260b0000000000 ....w&...... +5706 11.780192137 127.0.0.1:57415 127.0.0.1:57433 3333528518 30 1a00000055ceff62b21b3a50010003000000219e1f000000000000000000 ....U..b..:P......!........... +5708 11.780432463 127.0.0.1:57433 127.0.0.1:57415 377465229 12 ffffffff77260b0000000000 ....w&...... +5710 11.781023026 127.0.0.1:57433 127.0.0.1:57415 377465241 12 1a00000095000b0000000000 ............ +5712 11.781255245 127.0.0.1:57433 127.0.0.1:57415 377465253 26 16000000219e1f00000000000100030000000000000000000000 ....!..................... +5714 11.781502008 127.0.0.1:57415 127.0.0.1:57433 3333528548 12 ffffffff95000b0000000000 ............ +5716 11.795581341 127.0.0.1:57415 127.0.0.1:57433 3333528560 12 1a00000078260b0000000000 ....x&...... +5718 11.795729160 127.0.0.1:57415 127.0.0.1:57433 3333528572 26 16000000548f6340e25e3140010003000000239e1f0000000000 ....T.c@.^1@......#....... +5720 11.795971632 127.0.0.1:57433 127.0.0.1:57415 377465279 12 ffffffff78260b0000000000 ....x&...... +5722 11.796398401 127.0.0.1:57433 127.0.0.1:57415 377465291 12 1600000096000b0000000000 ............ +5724 11.796559811 127.0.0.1:57433 127.0.0.1:57415 377465303 22 12000000239e1f000000000001000300000000000000 ....#................. +5726 11.796809673 127.0.0.1:57415 127.0.0.1:57433 3333528598 12 ffffffff96000b0000000000 ............ +5741 11.898546696 127.0.0.1:57415 127.0.0.1:57433 3333528610 12 1a00000079260b0000000000 ....y&...... +5743 11.898712635 127.0.0.1:57415 127.0.0.1:57433 3333528622 26 16000000548f6340e25e3140010003000000259e1f0000000000 ....T.c@.^1@......%....... +5745 11.899076700 127.0.0.1:57433 127.0.0.1:57415 377465325 12 ffffffff79260b0000000000 ....y&...... +5747 11.899569750 127.0.0.1:57433 127.0.0.1:57415 377465337 12 1600000097000b0000000000 ............ +5749 11.899731636 127.0.0.1:57433 127.0.0.1:57415 377465349 22 12000000259e1f000000000001000300000000000000 ....%................. +5750 11.900053501 127.0.0.1:57415 127.0.0.1:57433 3333528648 12 ffffffff97000b0000000000 ............ +5753 11.905169725 127.0.0.1:57415 127.0.0.1:57433 3333528660 12 feffffff1c4401000a440100 .....D...D.. +5775 12.002461910 127.0.0.1:57415 127.0.0.1:57433 3333528672 12 1a0000007a260b0000000000 ....z&...... +5777 12.002638817 127.0.0.1:57415 127.0.0.1:57433 3333528684 26 16000000548f6340e25e3140010003000000279e1f0000000000 ....T.c@.^1@......'....... +5779 12.003043175 127.0.0.1:57433 127.0.0.1:57415 377465371 12 ffffffff7a260b0000000000 ....z&...... +5781 12.003486633 127.0.0.1:57433 127.0.0.1:57415 377465383 12 1600000098000b0000000000 ............ +5783 12.003654957 127.0.0.1:57433 127.0.0.1:57415 377465395 22 12000000279e1f000000000001000300000000000000 ....'................. +5785 12.004077435 127.0.0.1:57415 127.0.0.1:57433 3333528710 12 ffffffff98000b0000000000 ............ +5799 12.081692696 127.0.0.1:57415 127.0.0.1:57433 3333528722 12 220000007b260b0000000000 "...{&...... +5801 12.081887960 127.0.0.1:57415 127.0.0.1:57433 3333528734 34 1e0000001c2118d0c46f33bb0100030000005d1302000000000038bc25c39d01 .....!...o3.......].......8.%..... +5803 12.081990480 127.0.0.1:57415 127.0.0.1:57433 3333528768 12 430000007c260b0000000000 C...|&...... +5805 12.082076788 127.0.0.1:57415 127.0.0.1:57433 3333528780 67 3f000000980433cb0cb47c3801000300000001000000005d130200000000003d ?.....3...|8...........].......=B.....&......... +5807 12.082164764 127.0.0.1:57433 127.0.0.1:57415 377465417 12 ffffffff7b260b0000000000 ....{&...... +5810 12.082892895 127.0.0.1:57433 127.0.0.1:57415 377465429 12 ffffffff7c260b0000000000 ....|&...... +5812 12.083935499 127.0.0.1:57433 127.0.0.1:57415 377465441 12 3400000099000b0000000000 4........... +5814 12.084156513 127.0.0.1:57433 127.0.0.1:57415 377465453 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....]............. +5816 12.084538937 127.0.0.1:57415 127.0.0.1:57433 3333528847 12 ffffffff99000b0000000000 ............ +5818 12.085679293 127.0.0.1:57415 127.0.0.1:57433 3333528859 12 1e0000007d260b0000000000 ....}&...... +5820 12.085832357 127.0.0.1:57415 127.0.0.1:57433 3333528871 30 1a00000055ceff62b21b3a50010003000000299e1f000000000000000000 ....U..b..:P......)........... +5822 12.086165667 127.0.0.1:57433 127.0.0.1:57415 377465505 12 ffffffff7d260b0000000000 ....}&...... +5824 12.086637974 127.0.0.1:57433 127.0.0.1:57415 377465517 12 1a0000009a000b0000000000 ............ +5826 12.086795330 127.0.0.1:57433 127.0.0.1:57415 377465529 26 16000000299e1f00000000000100030000000000000000000000 ....)..................... +5828 12.087028742 127.0.0.1:57415 127.0.0.1:57433 3333528901 12 ffffffff9a000b0000000000 ............ +5832 12.105661154 127.0.0.1:57415 127.0.0.1:57433 3333528913 12 1a0000007e260b0000000000 ....~&...... +5834 12.105887890 127.0.0.1:57415 127.0.0.1:57433 3333528925 26 16000000548f6340e25e31400100030000002b9e1f0000000000 ....T.c@.^1@......+....... +5836 12.106238127 127.0.0.1:57433 127.0.0.1:57415 377465555 12 ffffffff7e260b0000000000 ....~&...... +5838 12.106703997 127.0.0.1:57433 127.0.0.1:57415 377465567 12 160000009b000b0000000000 ............ +5840 12.106919050 127.0.0.1:57433 127.0.0.1:57415 377465579 22 120000002b9e1f000000000001000300000000000000 ....+................. +5842 12.107192039 127.0.0.1:57415 127.0.0.1:57433 3333528951 12 ffffffff9b000b0000000000 ............ +5846 12.158576488 127.0.0.1:57433 127.0.0.1:57415 377465601 12 feffffff0b4401001c440100 .....D...D.. +5853 12.208461761 127.0.0.1:57415 127.0.0.1:57433 3333528963 12 1a0000007f260b0000000000 .....&...... +5855 12.208636045 127.0.0.1:57415 127.0.0.1:57433 3333528975 26 16000000548f6340e25e31400100030000002d9e1f0000000000 ....T.c@.^1@......-....... +5857 12.209156275 127.0.0.1:57433 127.0.0.1:57415 377465613 12 ffffffff7f260b0000000000 .....&...... +5859 12.209500790 127.0.0.1:57433 127.0.0.1:57415 377465625 12 160000009c000b0000000000 ............ +5861 12.209654331 127.0.0.1:57433 127.0.0.1:57415 377465637 22 120000002d9e1f000000000001000300000000000000 ....-................. +5863 12.210036993 127.0.0.1:57415 127.0.0.1:57433 3333529001 12 ffffffff9c000b0000000000 ............ +5871 12.312456846 127.0.0.1:57415 127.0.0.1:57433 3333529013 12 1a00000080260b0000000000 .....&...... +5873 12.312624454 127.0.0.1:57415 127.0.0.1:57433 3333529025 26 16000000548f6340e25e31400100030000002f9e1f0000000000 ....T.c@.^1@....../....... +5875 12.313032389 127.0.0.1:57433 127.0.0.1:57415 377465659 12 ffffffff80260b0000000000 .....&...... +5877 12.313482523 127.0.0.1:57433 127.0.0.1:57415 377465671 12 160000009d000b0000000000 ............ +5879 12.313638687 127.0.0.1:57433 127.0.0.1:57415 377465683 22 120000002f9e1f000000000001000300000000000000 ..../................. +5881 12.314405918 127.0.0.1:57415 127.0.0.1:57433 3333529051 12 ffffffff9d000b0000000000 ............ +5887 12.386697054 127.0.0.1:57415 127.0.0.1:57433 3333529063 12 6500000081260b0000000000 e....&...... +5889 12.386896372 127.0.0.1:57415 127.0.0.1:57433 3333529075 101 1e0000001c2118d0c46f33bb0100030000005e1302000000000069bd25c39d01 .....!...o3.......^.......i.%.....?.....3...|8.. +5891 12.387346506 127.0.0.1:57433 127.0.0.1:57415 377465705 12 ffffffff81260b0000000000 .....&...... +5893 12.388854027 127.0.0.1:57433 127.0.0.1:57415 377465717 12 340000009e000b0000000000 4........... +5895 12.389073372 127.0.0.1:57433 127.0.0.1:57415 377465729 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....^.........0... +5897 12.389366150 127.0.0.1:57415 127.0.0.1:57433 3333529176 12 ffffffff9e000b0000000000 ............ +5899 12.390256882 127.0.0.1:57415 127.0.0.1:57433 3333529188 12 1e00000082260b0000000000 .....&...... +5901 12.390436649 127.0.0.1:57415 127.0.0.1:57433 3333529200 30 1a00000055ceff62b21b3a50010003000000319e1f000000000000000000 ....U..b..:P......1........... +5903 12.390899420 127.0.0.1:57433 127.0.0.1:57415 377465781 12 ffffffff82260b0000000000 .....&...... +5905 12.391283751 127.0.0.1:57433 127.0.0.1:57415 377465793 12 1a0000009f000b0000000000 ............ +5907 12.391464949 127.0.0.1:57433 127.0.0.1:57415 377465805 26 16000000319e1f00000000000100030000000000000000000000 ....1..................... +5909 12.391852617 127.0.0.1:57415 127.0.0.1:57433 3333529230 12 ffffffff9f000b0000000000 ............ +5916 12.405959129 127.0.0.1:57415 127.0.0.1:57433 3333529242 12 feffffff1d4401000b440100 .....D...D.. +5919 12.416692019 127.0.0.1:57415 127.0.0.1:57433 3333529254 12 1a00000083260b0000000000 .....&...... +5921 12.416960716 127.0.0.1:57415 127.0.0.1:57433 3333529266 26 16000000548f6340e25e3140010003000000339e1f0000000000 ....T.c@.^1@......3....... +5923 12.417325258 127.0.0.1:57433 127.0.0.1:57415 377465831 12 ffffffff83260b0000000000 .....&...... +5925 12.417966843 127.0.0.1:57433 127.0.0.1:57415 377465843 12 16000000a0000b0000000000 ............ +5927 12.418115139 127.0.0.1:57433 127.0.0.1:57415 377465855 22 12000000339e1f000000000001000300000000000000 ....3................. +5929 12.418401718 127.0.0.1:57415 127.0.0.1:57433 3333529292 12 ffffffffa0000b0000000000 ............ +5935 12.519620180 127.0.0.1:57415 127.0.0.1:57433 3333529304 12 1a00000084260b0000000000 .....&...... +5937 12.519910097 127.0.0.1:57415 127.0.0.1:57433 3333529316 26 16000000548f6340e25e3140010003000000359e1f0000000000 ....T.c@.^1@......5....... +5939 12.520282507 127.0.0.1:57433 127.0.0.1:57415 377465877 12 ffffffff84260b0000000000 .....&...... +5941 12.521645308 127.0.0.1:57433 127.0.0.1:57415 377465889 12 16000000a1000b0000000000 ............ +5943 12.521909475 127.0.0.1:57433 127.0.0.1:57415 377465901 22 12000000359e1f000000000001000300000000000000 ....5................. +5945 12.522218466 127.0.0.1:57415 127.0.0.1:57433 3333529342 12 ffffffffa1000b0000000000 ............ +5947 12.624644756 127.0.0.1:57415 127.0.0.1:57433 3333529354 12 1a00000085260b0000000000 .....&...... +5949 12.624933958 127.0.0.1:57415 127.0.0.1:57433 3333529366 26 16000000548f6340e25e3140010003000000379e1f0000000000 ....T.c@.^1@......7....... +5951 12.625187159 127.0.0.1:57433 127.0.0.1:57415 377465923 12 ffffffff85260b0000000000 .....&...... +5953 12.625674009 127.0.0.1:57433 127.0.0.1:57415 377465935 12 16000000a2000b0000000000 ............ +5955 12.625850201 127.0.0.1:57433 127.0.0.1:57415 377465947 22 12000000379e1f000000000001000300000000000000 ....7................. +5957 12.626225233 127.0.0.1:57415 127.0.0.1:57433 3333529392 12 ffffffffa2000b0000000000 ............ +5961 12.659568548 127.0.0.1:57433 127.0.0.1:57415 377465969 12 feffffff0c4401001d440100 .....D...D.. +5967 12.691458941 127.0.0.1:57415 127.0.0.1:57433 3333529404 12 2200000086260b0000000000 "....&...... +5969 12.691638470 127.0.0.1:57415 127.0.0.1:57433 3333529416 34 1e0000001c2118d0c46f33bb0100030000005f130200000000009abe25c39d01 .....!...o3......._.........%..... +5971 12.691763163 127.0.0.1:57415 127.0.0.1:57433 3333529450 12 4300000087260b0000000000 C....&...... +5973 12.691848040 127.0.0.1:57415 127.0.0.1:57433 3333529462 67 3f000000980433cb0cb47c3801000300000001000000005f130200000000003d ?.....3...|8..........._.......=B.....&......... +5974 12.691904545 127.0.0.1:57433 127.0.0.1:57415 377465981 12 ffffffff86260b0000000000 .....&...... +5977 12.692110538 127.0.0.1:57433 127.0.0.1:57415 377465993 12 ffffffff87260b0000000000 .....&...... +5979 12.693100691 127.0.0.1:57433 127.0.0.1:57415 377466005 12 34000000a3000b0000000000 4........... +5981 12.693301916 127.0.0.1:57433 127.0.0.1:57415 377466017 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([....._............. +5983 12.693590403 127.0.0.1:57415 127.0.0.1:57433 3333529529 12 ffffffffa3000b0000000000 ............ +5984 12.694357872 127.0.0.1:57415 127.0.0.1:57433 3333529541 12 1e00000088260b0000000000 .....&...... +5986 12.694526911 127.0.0.1:57415 127.0.0.1:57433 3333529553 30 1a00000055ceff62b21b3a50010003000000399e1f000000000000000000 ....U..b..:P......9........... +5988 12.694787025 127.0.0.1:57433 127.0.0.1:57415 377466069 12 ffffffff88260b0000000000 .....&...... +5990 12.695333719 127.0.0.1:57433 127.0.0.1:57415 377466081 12 1a000000a4000b0000000000 ............ +5992 12.695541620 127.0.0.1:57433 127.0.0.1:57415 377466093 26 16000000399e1f00000000000100030000000000000000000000 ....9..................... +5994 12.695811510 127.0.0.1:57415 127.0.0.1:57433 3333529583 12 ffffffffa4000b0000000000 ............ +5996 12.728599548 127.0.0.1:57415 127.0.0.1:57433 3333529595 12 1a00000089260b0000000000 .....&...... +5998 12.728775978 127.0.0.1:57415 127.0.0.1:57433 3333529607 26 16000000548f6340e25e31400100030000003b9e1f0000000000 ....T.c@.^1@......;....... +6000 12.729104042 127.0.0.1:57433 127.0.0.1:57415 377466119 12 ffffffff89260b0000000000 .....&...... +6002 12.729605436 127.0.0.1:57433 127.0.0.1:57415 377466131 12 16000000a5000b0000000000 ............ +6004 12.729768515 127.0.0.1:57433 127.0.0.1:57415 377466143 22 120000003b9e1f000000000001000300000000000000 ....;................. +6006 12.730065107 127.0.0.1:57415 127.0.0.1:57433 3333529633 12 ffffffffa5000b0000000000 ............ +6010 12.832592487 127.0.0.1:57415 127.0.0.1:57433 3333529645 12 1a0000008a260b0000000000 .....&...... +6012 12.832769871 127.0.0.1:57415 127.0.0.1:57433 3333529657 26 16000000548f6340e25e31400100030000003d9e1f0000000000 ....T.c@.^1@......=....... +6014 12.833209991 127.0.0.1:57433 127.0.0.1:57415 377466165 12 ffffffff8a260b0000000000 .....&...... +6016 12.833608150 127.0.0.1:57433 127.0.0.1:57415 377466177 12 16000000a6000b0000000000 ............ +6018 12.833766460 127.0.0.1:57433 127.0.0.1:57415 377466189 22 120000003d9e1f000000000001000300000000000000 ....=................. +6020 12.834094524 127.0.0.1:57415 127.0.0.1:57433 3333529683 12 ffffffffa6000b0000000000 ............ +6029 12.908122301 127.0.0.1:57415 127.0.0.1:57433 3333529695 12 feffffff1e4401000c440100 .....D...D.. +6032 12.935421705 127.0.0.1:57415 127.0.0.1:57433 3333529707 12 1a0000008b260b0000000000 .....&...... +6034 12.935614586 127.0.0.1:57415 127.0.0.1:57433 3333529719 26 16000000548f6340e25e31400100030000003f9e1f0000000000 ....T.c@.^1@......?....... +6036 12.935968637 127.0.0.1:57433 127.0.0.1:57415 377466211 12 ffffffff8b260b0000000000 .....&...... +6038 12.937068224 127.0.0.1:57433 127.0.0.1:57415 377466223 12 16000000a7000b0000000000 ............ +6040 12.937214375 127.0.0.1:57433 127.0.0.1:57415 377466235 22 120000003f9e1f000000000001000300000000000000 ....?................. +6042 12.937484264 127.0.0.1:57415 127.0.0.1:57433 3333529745 12 ffffffffa7000b0000000000 ............ +6050 12.996022701 127.0.0.1:57415 127.0.0.1:57433 3333529757 12 220000008c260b0000000000 "....&...... +6052 12.996234179 127.0.0.1:57415 127.0.0.1:57433 3333529769 34 1e0000001c2118d0c46f33bb0100030000006013020000000000ccbf25c39d01 .....!...o3.......`.........%..... +6054 12.996467352 127.0.0.1:57415 127.0.0.1:57433 3333529803 12 430000008d260b0000000000 C....&...... +6056 12.996560097 127.0.0.1:57433 127.0.0.1:57415 377466257 12 ffffffff8c260b0000000000 .....&...... +6058 12.996780634 127.0.0.1:57415 127.0.0.1:57433 3333529815 67 3f000000980433cb0cb47c38010003000000010000000060130200000000003d ?.....3...|8...........`.......=B.....&......... +6060 12.997049093 127.0.0.1:57433 127.0.0.1:57415 377466269 12 ffffffff8d260b0000000000 .....&...... +6062 12.998011827 127.0.0.1:57433 127.0.0.1:57415 377466281 12 34000000a8000b0000000000 4........... +6064 12.998172045 127.0.0.1:57433 127.0.0.1:57415 377466293 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....`...........'. +6066 12.998430490 127.0.0.1:57415 127.0.0.1:57433 3333529882 12 ffffffffa8000b0000000000 ............ +6068 12.999341011 127.0.0.1:57415 127.0.0.1:57433 3333529894 12 1e0000008e260b0000000000 .....&...... +6070 12.999532938 127.0.0.1:57415 127.0.0.1:57433 3333529906 30 1a00000055ceff62b21b3a50010003000000419e1f000000000000000000 ....U..b..:P......A........... +6072 13.000076294 127.0.0.1:57433 127.0.0.1:57415 377466345 12 ffffffff8e260b0000000000 .....&...... +6074 13.000316381 127.0.0.1:57433 127.0.0.1:57415 377466357 12 1a000000a9000b0000000000 ............ +6076 13.000474215 127.0.0.1:57433 127.0.0.1:57415 377466369 26 16000000419e1f00000000000100030000000000000000000000 ....A..................... +6078 13.000786781 127.0.0.1:57415 127.0.0.1:57433 3333529936 12 ffffffffa9000b0000000000 ............ +6080 13.040496826 127.0.0.1:57415 127.0.0.1:57433 3333529948 12 1a0000008f260b0000000000 .....&...... +6082 13.040672541 127.0.0.1:57415 127.0.0.1:57433 3333529960 26 16000000548f6340e25e3140010003000000439e1f0000000000 ....T.c@.^1@......C....... +6084 13.041108370 127.0.0.1:57433 127.0.0.1:57415 377466395 12 ffffffff8f260b0000000000 .....&...... +6086 13.041731358 127.0.0.1:57433 127.0.0.1:57415 377466407 12 16000000aa000b0000000000 ............ +6088 13.041880608 127.0.0.1:57433 127.0.0.1:57415 377466419 22 12000000439e1f000000000001000300000000000000 ....C................. +6090 13.042094469 127.0.0.1:57415 127.0.0.1:57433 3333529986 12 ffffffffaa000b0000000000 ............ +6092 13.144327641 127.0.0.1:57415 127.0.0.1:57433 3333529998 12 1a00000090260b0000000000 .....&...... +6094 13.144563198 127.0.0.1:57415 127.0.0.1:57433 3333530010 26 16000000548f6340e25e3140010003000000459e1f0000000000 ....T.c@.^1@......E....... +6096 13.144792795 127.0.0.1:57433 127.0.0.1:57415 377466441 12 ffffffff90260b0000000000 .....&...... +6098 13.145329475 127.0.0.1:57433 127.0.0.1:57415 377466453 12 16000000ab000b0000000000 ............ +6100 13.145557165 127.0.0.1:57433 127.0.0.1:57415 377466465 22 12000000459e1f000000000001000300000000000000 ....E................. +6102 13.145840645 127.0.0.1:57415 127.0.0.1:57433 3333530036 12 ffffffffab000b0000000000 ............ +6106 13.161106348 127.0.0.1:57433 127.0.0.1:57415 377466487 12 feffffff0d4401001e440100 .....D...D.. +6144 13.247037172 127.0.0.1:57415 127.0.0.1:57433 3333530048 12 1a00000091260b0000000000 .....&...... +6146 13.247201681 127.0.0.1:57415 127.0.0.1:57433 3333530060 26 16000000548f6340e25e3140010003000000479e1f0000000000 ....T.c@.^1@......G....... +6148 13.247536182 127.0.0.1:57433 127.0.0.1:57415 377466499 12 ffffffff91260b0000000000 .....&...... +6150 13.248103380 127.0.0.1:57433 127.0.0.1:57415 377466511 12 16000000ac000b0000000000 ............ +6152 13.248558044 127.0.0.1:57433 127.0.0.1:57415 377466523 22 12000000479e1f000000000001000300000000000000 ....G................. +6154 13.248827457 127.0.0.1:57415 127.0.0.1:57433 3333530086 12 ffffffffac000b0000000000 ............ +6156 13.301634073 127.0.0.1:57415 127.0.0.1:57433 3333530098 12 6500000092260b0000000000 e....&...... +6158 13.301819563 127.0.0.1:57415 127.0.0.1:57433 3333530110 101 1e0000001c2118d0c46f33bb0100030000006113020000000000fcc025c39d01 .....!...o3.......a.........%.....?.....3...|8.. +6160 13.302288532 127.0.0.1:57433 127.0.0.1:57415 377466545 12 ffffffff92260b0000000000 .....&...... +6162 13.303303957 127.0.0.1:57433 127.0.0.1:57415 377466557 12 34000000ad000b0000000000 4........... +6164 13.303516865 127.0.0.1:57433 127.0.0.1:57415 377466569 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....a.........I'V. +6166 13.303915977 127.0.0.1:57415 127.0.0.1:57433 3333530211 12 ffffffffad000b0000000000 ............ +6168 13.304971933 127.0.0.1:57415 127.0.0.1:57433 3333530223 12 1e00000093260b0000000000 .....&...... +6170 13.305131674 127.0.0.1:57415 127.0.0.1:57433 3333530235 30 1a00000055ceff62b21b3a50010003000000499e1f000000000000000000 ....U..b..:P......I........... +6172 13.305497408 127.0.0.1:57433 127.0.0.1:57415 377466621 12 ffffffff93260b0000000000 .....&...... +6174 13.305825949 127.0.0.1:57433 127.0.0.1:57415 377466633 12 1a000000ae000b0000000000 ............ +6176 13.305979967 127.0.0.1:57433 127.0.0.1:57415 377466645 26 16000000499e1f00000000000100030000000000000000000000 ....I..................... +6178 13.306211472 127.0.0.1:57415 127.0.0.1:57433 3333530265 12 ffffffffae000b0000000000 ............ +6180 13.349802256 127.0.0.1:57415 127.0.0.1:57433 3333530277 12 1a00000094260b0000000000 .....&...... +6182 13.349964142 127.0.0.1:57415 127.0.0.1:57433 3333530289 26 16000000548f6340e25e31400100030000004b9e1f0000000000 ....T.c@.^1@......K....... +6184 13.350307941 127.0.0.1:57433 127.0.0.1:57415 377466671 12 ffffffff94260b0000000000 .....&...... +6186 13.350814104 127.0.0.1:57433 127.0.0.1:57415 377466683 12 16000000af000b0000000000 ............ +6188 13.350970268 127.0.0.1:57433 127.0.0.1:57415 377466695 22 120000004b9e1f000000000001000300000000000000 ....K................. +6190 13.351240158 127.0.0.1:57415 127.0.0.1:57433 3333530315 12 ffffffffaf000b0000000000 ............ +6199 13.408864737 127.0.0.1:57415 127.0.0.1:57433 3333530327 12 feffffff1f4401000d440100 .....D...D.. +6204 13.453372717 127.0.0.1:57415 127.0.0.1:57433 3333530339 12 1a00000095260b0000000000 .....&...... +6206 13.453678370 127.0.0.1:57415 127.0.0.1:57433 3333530351 26 16000000548f6340e25e31400100030000004d9e1f0000000000 ....T.c@.^1@......M....... +6208 13.454135895 127.0.0.1:57433 127.0.0.1:57415 377466717 12 ffffffff95260b0000000000 .....&...... +6210 13.454696655 127.0.0.1:57433 127.0.0.1:57415 377466729 12 16000000b0000b0000000000 ............ +6212 13.454841852 127.0.0.1:57433 127.0.0.1:57415 377466741 22 120000004d9e1f000000000001000300000000000000 ....M................. +6214 13.455044985 127.0.0.1:57415 127.0.0.1:57433 3333530377 12 ffffffffb0000b0000000000 ............ +6220 13.557135820 127.0.0.1:57415 127.0.0.1:57433 3333530389 12 1a00000096260b0000000000 .....&...... +6222 13.557317972 127.0.0.1:57415 127.0.0.1:57433 3333530401 26 16000000548f6340e25e31400100030000004f9e1f0000000000 ....T.c@.^1@......O....... +6224 13.557715178 127.0.0.1:57433 127.0.0.1:57415 377466763 12 ffffffff96260b0000000000 .....&...... +6226 13.558339357 127.0.0.1:57433 127.0.0.1:57415 377466775 12 16000000b1000b0000000000 ............ +6228 13.558587790 127.0.0.1:57433 127.0.0.1:57415 377466787 22 120000004f9e1f000000000001000300000000000000 ....O................. +6230 13.558884859 127.0.0.1:57415 127.0.0.1:57433 3333530427 12 ffffffffb1000b0000000000 ............ +6234 13.606676579 127.0.0.1:57415 127.0.0.1:57433 3333530439 12 2200000097260b0000000000 "....&...... +6236 13.606954575 127.0.0.1:57415 127.0.0.1:57433 3333530451 34 1e0000001c2118d0c46f33bb01000300000062130200000000002dc225c39d01 .....!...o3.......b.......-.%..... +6238 13.607150555 127.0.0.1:57415 127.0.0.1:57433 3333530485 12 4300000098260b0000000000 C....&...... +6240 13.607250214 127.0.0.1:57415 127.0.0.1:57433 3333530497 67 3f000000980433cb0cb47c38010003000000010000000062130200000000003d ?.....3...|8...........b.......=B.....&......... +6241 13.607267380 127.0.0.1:57433 127.0.0.1:57415 377466809 12 ffffffff97260b0000000000 .....&...... +6244 13.607502937 127.0.0.1:57433 127.0.0.1:57415 377466821 12 ffffffff98260b0000000000 .....&...... +6246 13.608319044 127.0.0.1:57433 127.0.0.1:57415 377466833 12 34000000b2000b0000000000 4........... +6248 13.608544111 127.0.0.1:57433 127.0.0.1:57415 377466845 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....b.........E... +6250 13.608816385 127.0.0.1:57415 127.0.0.1:57433 3333530564 12 ffffffffb2000b0000000000 ............ +6251 13.609753370 127.0.0.1:57415 127.0.0.1:57433 3333530576 12 1e00000099260b0000000000 .....&...... +6253 13.609952688 127.0.0.1:57415 127.0.0.1:57433 3333530588 30 1a00000055ceff62b21b3a50010003000000519e1f000000000000000000 ....U..b..:P......Q........... +6255 13.610303402 127.0.0.1:57433 127.0.0.1:57415 377466897 12 ffffffff99260b0000000000 .....&...... +6257 13.610740900 127.0.0.1:57433 127.0.0.1:57415 377466909 12 1a000000b3000b0000000000 ............ +6259 13.610888243 127.0.0.1:57433 127.0.0.1:57415 377466921 26 16000000519e1f00000000000100030000000000000000000000 ....Q..................... +6261 13.611144066 127.0.0.1:57415 127.0.0.1:57433 3333530618 12 ffffffffb3000b0000000000 ............ +6269 13.660217047 127.0.0.1:57415 127.0.0.1:57433 3333530630 12 1a0000009a260b0000000000 .....&...... +6271 13.660389662 127.0.0.1:57415 127.0.0.1:57433 3333530642 26 16000000548f6340e25e3140010003000000539e1f0000000000 ....T.c@.^1@......S....... +6273 13.660786629 127.0.0.1:57433 127.0.0.1:57415 377466947 12 ffffffff9a260b0000000000 .....&...... +6275 13.661235571 127.0.0.1:57433 127.0.0.1:57415 377466959 12 16000000b4000b0000000000 ............ +6277 13.661381721 127.0.0.1:57433 127.0.0.1:57415 377466971 22 12000000539e1f000000000001000300000000000000 ....S................. +6280 13.661636829 127.0.0.1:57433 127.0.0.1:57415 377466993 12 feffffff0e4401001f440100 .....D...D.. +6281 13.661644459 127.0.0.1:57415 127.0.0.1:57433 3333530668 12 ffffffffb4000b0000000000 ............ +6289 13.764517546 127.0.0.1:57415 127.0.0.1:57433 3333530680 12 1a0000009b260b0000000000 .....&...... +6291 13.764714956 127.0.0.1:57415 127.0.0.1:57433 3333530692 26 16000000548f6340e25e3140010003000000559e1f0000000000 ....T.c@.^1@......U....... +6293 13.765096664 127.0.0.1:57433 127.0.0.1:57415 377467005 12 ffffffff9b260b0000000000 .....&...... +6295 13.765600204 127.0.0.1:57433 127.0.0.1:57415 377467017 12 16000000b5000b0000000000 ............ +6297 13.765758514 127.0.0.1:57433 127.0.0.1:57415 377467029 22 12000000559e1f000000000001000300000000000000 ....U................. +6299 13.766071081 127.0.0.1:57415 127.0.0.1:57433 3333530718 12 ffffffffb5000b0000000000 ............ +6301 13.868357182 127.0.0.1:57415 127.0.0.1:57433 3333530730 12 1a0000009c260b0000000000 .....&...... +6303 13.868669748 127.0.0.1:57415 127.0.0.1:57433 3333530742 26 16000000548f6340e25e3140010003000000579e1f0000000000 ....T.c@.^1@......W....... +6305 13.869051933 127.0.0.1:57433 127.0.0.1:57415 377467051 12 ffffffff9c260b0000000000 .....&...... +6307 13.869484186 127.0.0.1:57433 127.0.0.1:57415 377467063 12 16000000b6000b0000000000 ............ +6309 13.869683743 127.0.0.1:57433 127.0.0.1:57415 377467075 22 12000000579e1f000000000001000300000000000000 ....W................. +6311 13.869924545 127.0.0.1:57415 127.0.0.1:57433 3333530768 12 ffffffffb6000b0000000000 ............ +6320 13.911001682 127.0.0.1:57415 127.0.0.1:57433 3333530780 12 feffffff204401000e440100 .... D...D.. +6323 13.911725760 127.0.0.1:57415 127.0.0.1:57433 3333530792 12 650000009d260b0000000000 e....&...... +6325 13.911892414 127.0.0.1:57415 127.0.0.1:57433 3333530804 101 1e0000001c2118d0c46f33bb01000300000063130200000000005ec325c39d01 .....!...o3.......c.......^.%.....?.....3...|8.. +6327 13.912235975 127.0.0.1:57433 127.0.0.1:57415 377467097 12 ffffffff9d260b0000000000 .....&...... +6329 13.913125277 127.0.0.1:57433 127.0.0.1:57415 377467109 12 34000000b7000b0000000000 4........... +6331 13.913287163 127.0.0.1:57433 127.0.0.1:57415 377467121 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....c.........&5.. +6333 13.913608551 127.0.0.1:57415 127.0.0.1:57433 3333530905 12 ffffffffb7000b0000000000 ............ +6335 13.914367676 127.0.0.1:57415 127.0.0.1:57433 3333530917 12 1e0000009e260b0000000000 .....&...... +6337 13.914595604 127.0.0.1:57415 127.0.0.1:57433 3333530929 30 1a00000055ceff62b21b3a50010003000000599e1f000000000000000000 ....U..b..:P......Y........... +6339 13.914908171 127.0.0.1:57433 127.0.0.1:57415 377467173 12 ffffffff9e260b0000000000 .....&...... +6341 13.915253878 127.0.0.1:57433 127.0.0.1:57415 377467185 12 1a000000b8000b0000000000 ............ +6343 13.915403605 127.0.0.1:57433 127.0.0.1:57415 377467197 26 16000000599e1f00000000000100030000000000000000000000 ....Y..................... +6345 13.915688276 127.0.0.1:57415 127.0.0.1:57433 3333530959 12 ffffffffb8000b0000000000 ............ +6349 13.971093416 127.0.0.1:57415 127.0.0.1:57433 3333530971 12 1a0000009f260b0000000000 .....&...... +6351 13.971262932 127.0.0.1:57415 127.0.0.1:57433 3333530983 26 16000000548f6340e25e31400100030000005b9e1f0000000000 ....T.c@.^1@......[....... +6353 13.971599340 127.0.0.1:57433 127.0.0.1:57415 377467223 12 ffffffff9f260b0000000000 .....&...... +6355 13.971994877 127.0.0.1:57433 127.0.0.1:57415 377467235 12 16000000b9000b0000000000 ............ +6357 13.972158670 127.0.0.1:57433 127.0.0.1:57415 377467247 22 120000005b9e1f000000000001000300000000000000 ....[................. +6359 13.972429752 127.0.0.1:57415 127.0.0.1:57433 3333531009 12 ffffffffb9000b0000000000 ............ +6363 14.075282335 127.0.0.1:57415 127.0.0.1:57433 3333531021 12 1a000000a0260b0000000000 .....&...... +6365 14.075552940 127.0.0.1:57415 127.0.0.1:57433 3333531033 26 16000000548f6340e25e31400100030000005d9e1f0000000000 ....T.c@.^1@......]....... +6367 14.075868845 127.0.0.1:57433 127.0.0.1:57415 377467269 12 ffffffffa0260b0000000000 .....&...... +6369 14.077169895 127.0.0.1:57433 127.0.0.1:57415 377467281 12 16000000ba000b0000000000 ............ +6371 14.077334404 127.0.0.1:57433 127.0.0.1:57415 377467293 22 120000005d9e1f000000000001000300000000000000 ....]................. +6373 14.077656984 127.0.0.1:57415 127.0.0.1:57433 3333531059 12 ffffffffba000b0000000000 ............ +6377 14.162217140 127.0.0.1:57433 127.0.0.1:57415 377467315 12 feffffff0f44010020440100 .....D.. D.. +6385 14.180142879 127.0.0.1:57415 127.0.0.1:57433 3333531071 12 1a000000a1260b0000000000 .....&...... +6387 14.180315256 127.0.0.1:57415 127.0.0.1:57433 3333531083 26 16000000548f6340e25e31400100030000005f9e1f0000000000 ....T.c@.^1@......_....... +6389 14.180698395 127.0.0.1:57433 127.0.0.1:57415 377467327 12 ffffffffa1260b0000000000 .....&...... +6391 14.181142092 127.0.0.1:57433 127.0.0.1:57415 377467339 12 16000000bb000b0000000000 ............ +6393 14.181291819 127.0.0.1:57433 127.0.0.1:57415 377467351 22 120000005f9e1f000000000001000300000000000000 ...._................. +6395 14.181700230 127.0.0.1:57415 127.0.0.1:57433 3333531109 12 ffffffffbb000b0000000000 ............ +6397 14.215534210 127.0.0.1:57415 127.0.0.1:57433 3333531121 12 22000000a2260b0000000000 "....&...... +6399 14.215690136 127.0.0.1:57415 127.0.0.1:57433 3333531133 34 1e0000001c2118d0c46f33bb01000300000064130200000000008ec425c39d01 .....!...o3.......d.........%..... +6401 14.215827465 127.0.0.1:57415 127.0.0.1:57433 3333531167 12 43000000a3260b0000000000 C....&...... +6403 14.215912104 127.0.0.1:57415 127.0.0.1:57433 3333531179 67 3f000000980433cb0cb47c38010003000000010000000064130200000000003d ?.....3...|8...........d.......=B.....&......... +6405 14.216015816 127.0.0.1:57433 127.0.0.1:57415 377467373 12 ffffffffa2260b0000000000 .....&...... +6407 14.216192484 127.0.0.1:57433 127.0.0.1:57415 377467385 12 ffffffffa3260b0000000000 .....&...... +6409 14.216988087 127.0.0.1:57433 127.0.0.1:57415 377467397 12 34000000bc000b0000000000 4........... +6411 14.217141867 127.0.0.1:57433 127.0.0.1:57415 377467409 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....d............. +6413 14.217413664 127.0.0.1:57415 127.0.0.1:57433 3333531246 12 ffffffffbc000b0000000000 ............ +6415 14.218239546 127.0.0.1:57415 127.0.0.1:57433 3333531258 12 1e000000a4260b0000000000 .....&...... +6417 14.218376637 127.0.0.1:57415 127.0.0.1:57433 3333531270 30 1a00000055ceff62b21b3a50010003000000619e1f000000000000000000 ....U..b..:P......a........... +6419 14.218674660 127.0.0.1:57433 127.0.0.1:57415 377467461 12 ffffffffa4260b0000000000 .....&...... +6421 14.219070673 127.0.0.1:57433 127.0.0.1:57415 377467473 12 1a000000bd000b0000000000 ............ +6423 14.219209671 127.0.0.1:57433 127.0.0.1:57415 377467485 26 16000000619e1f00000000000100030000000000000000000000 ....a..................... +6425 14.219470739 127.0.0.1:57415 127.0.0.1:57433 3333531300 12 ffffffffbd000b0000000000 ............ +6435 14.283061266 127.0.0.1:57415 127.0.0.1:57433 3333531312 12 1a000000a5260b0000000000 .....&...... +6437 14.283282757 127.0.0.1:57415 127.0.0.1:57433 3333531324 26 16000000548f6340e25e3140010003000000639e1f0000000000 ....T.c@.^1@......c....... +6439 14.283687830 127.0.0.1:57433 127.0.0.1:57415 377467511 12 ffffffffa5260b0000000000 .....&...... +6441 14.284126043 127.0.0.1:57433 127.0.0.1:57415 377467523 12 16000000be000b0000000000 ............ +6443 14.284306288 127.0.0.1:57433 127.0.0.1:57415 377467535 22 12000000639e1f000000000001000300000000000000 ....c................. +6445 14.284748554 127.0.0.1:57415 127.0.0.1:57433 3333531350 12 ffffffffbe000b0000000000 ............ +6470 14.386941433 127.0.0.1:57415 127.0.0.1:57433 3333531362 12 1a000000a6260b0000000000 .....&...... +6472 14.387102127 127.0.0.1:57415 127.0.0.1:57433 3333531374 26 16000000548f6340e25e3140010003000000659e1f0000000000 ....T.c@.^1@......e....... +6474 14.387479544 127.0.0.1:57433 127.0.0.1:57415 377467557 12 ffffffffa6260b0000000000 .....&...... +6476 14.388061285 127.0.0.1:57433 127.0.0.1:57415 377467569 12 16000000bf000b0000000000 ............ +6478 14.388263702 127.0.0.1:57433 127.0.0.1:57415 377467581 22 12000000659e1f000000000001000300000000000000 ....e................. +6480 14.388639450 127.0.0.1:57415 127.0.0.1:57433 3333531400 12 ffffffffbf000b0000000000 ............ +6492 14.411867380 127.0.0.1:57415 127.0.0.1:57433 3333531412 12 feffffff214401000f440100 ....!D...D.. +6498 14.489772081 127.0.0.1:57415 127.0.0.1:57433 3333531424 12 1a000000a7260b0000000000 .....&...... +6500 14.489949226 127.0.0.1:57415 127.0.0.1:57433 3333531436 26 16000000548f6340e25e3140010003000000679e1f0000000000 ....T.c@.^1@......g....... +6502 14.490321636 127.0.0.1:57433 127.0.0.1:57415 377467603 12 ffffffffa7260b0000000000 .....&...... +6504 14.490610838 127.0.0.1:57433 127.0.0.1:57415 377467615 12 16000000c0000b0000000000 ............ +6506 14.490771055 127.0.0.1:57433 127.0.0.1:57415 377467627 22 12000000679e1f000000000001000300000000000000 ....g................. +6508 14.491021633 127.0.0.1:57415 127.0.0.1:57433 3333531462 12 ffffffffc0000b0000000000 ............ +6512 14.520060062 127.0.0.1:57415 127.0.0.1:57433 3333531474 12 22000000a8260b0000000000 "....&...... +6514 14.520269632 127.0.0.1:57415 127.0.0.1:57433 3333531486 34 1e0000001c2118d0c46f33bb0100030000006513020000000000bfc525c39d01 .....!...o3.......e.........%..... +6516 14.520412922 127.0.0.1:57415 127.0.0.1:57433 3333531520 12 43000000a9260b0000000000 C....&...... +6518 14.520541191 127.0.0.1:57415 127.0.0.1:57433 3333531532 67 3f000000980433cb0cb47c38010003000000010000000065130200000000003d ?.....3...|8...........e.......=B.....&......... +6519 14.520652294 127.0.0.1:57433 127.0.0.1:57415 377467649 12 ffffffffa8260b0000000000 .....&...... +6520 14.520807743 127.0.0.1:57433 127.0.0.1:57415 377467661 12 ffffffffa9260b0000000000 .....&...... +6523 14.521756172 127.0.0.1:57433 127.0.0.1:57415 377467673 12 34000000c1000b0000000000 4........... +6525 14.521913052 127.0.0.1:57433 127.0.0.1:57415 377467685 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....e.........C... +6527 14.522199631 127.0.0.1:57415 127.0.0.1:57433 3333531599 12 ffffffffc1000b0000000000 ............ +6528 14.522981882 127.0.0.1:57415 127.0.0.1:57433 3333531611 12 1e000000aa260b0000000000 .....&...... +6529 14.523083210 127.0.0.1:57415 127.0.0.1:57433 3333531623 30 1a00000055ceff62b21b3a50010003000000699e1f000000000000000000 ....U..b..:P......i........... +6530 14.523380041 127.0.0.1:57433 127.0.0.1:57415 377467737 12 ffffffffaa260b0000000000 .....&...... +6532 14.523658752 127.0.0.1:57433 127.0.0.1:57415 377467749 12 1a000000c2000b0000000000 ............ +6534 14.523803949 127.0.0.1:57433 127.0.0.1:57415 377467761 26 16000000699e1f00000000000100030000000000000000000000 ....i..................... +6536 14.524038076 127.0.0.1:57415 127.0.0.1:57433 3333531653 12 ffffffffc2000b0000000000 ............ +6538 14.593980789 127.0.0.1:57415 127.0.0.1:57433 3333531665 12 1a000000ab260b0000000000 .....&...... +6540 14.594151735 127.0.0.1:57415 127.0.0.1:57433 3333531677 26 16000000548f6340e25e31400100030000006b9e1f0000000000 ....T.c@.^1@......k....... +6542 14.594520807 127.0.0.1:57433 127.0.0.1:57415 377467787 12 ffffffffab260b0000000000 .....&...... +6544 14.594943285 127.0.0.1:57433 127.0.0.1:57415 377467799 12 16000000c3000b0000000000 ............ +6546 14.595098019 127.0.0.1:57433 127.0.0.1:57415 377467811 22 120000006b9e1f000000000001000300000000000000 ....k................. +6548 14.595431805 127.0.0.1:57415 127.0.0.1:57433 3333531703 12 ffffffffc3000b0000000000 ............ +6552 14.663558006 127.0.0.1:57433 127.0.0.1:57415 377467833 12 feffffff1044010021440100 .....D..!D.. +6558 14.696844816 127.0.0.1:57415 127.0.0.1:57433 3333531715 12 1a000000ac260b0000000000 .....&...... +6560 14.697030067 127.0.0.1:57415 127.0.0.1:57433 3333531727 26 16000000548f6340e25e31400100030000006d9e1f0000000000 ....T.c@.^1@......m....... +6562 14.697456360 127.0.0.1:57433 127.0.0.1:57415 377467845 12 ffffffffac260b0000000000 .....&...... +6564 14.698007822 127.0.0.1:57433 127.0.0.1:57415 377467857 12 16000000c4000b0000000000 ............ +6566 14.698148251 127.0.0.1:57433 127.0.0.1:57415 377467869 22 120000006d9e1f000000000001000300000000000000 ....m................. +6568 14.698451757 127.0.0.1:57415 127.0.0.1:57433 3333531753 12 ffffffffc4000b0000000000 ............ +6572 14.800947428 127.0.0.1:57415 127.0.0.1:57433 3333531765 12 1a000000ad260b0000000000 .....&...... +6574 14.801131964 127.0.0.1:57415 127.0.0.1:57433 3333531777 26 16000000548f6340e25e31400100030000006f9e1f0000000000 ....T.c@.^1@......o....... +6576 14.801469564 127.0.0.1:57433 127.0.0.1:57415 377467891 12 ffffffffad260b0000000000 .....&...... +6578 14.801915646 127.0.0.1:57433 127.0.0.1:57415 377467903 12 16000000c5000b0000000000 ............ +6580 14.802089214 127.0.0.1:57433 127.0.0.1:57415 377467915 22 120000006f9e1f000000000001000300000000000000 ....o................. +6582 14.802401066 127.0.0.1:57415 127.0.0.1:57433 3333531803 12 ffffffffc5000b0000000000 ............ +6584 14.824347258 127.0.0.1:57415 127.0.0.1:57433 3333531815 12 22000000ae260b0000000000 "....&...... +6586 14.824530602 127.0.0.1:57415 127.0.0.1:57433 3333531827 34 1e0000001c2118d0c46f33bb0100030000006613020000000000efc625c39d01 .....!...o3.......f.........%..... +6588 14.824667215 127.0.0.1:57415 127.0.0.1:57433 3333531861 12 43000000af260b0000000000 C....&...... +6590 14.824754477 127.0.0.1:57415 127.0.0.1:57433 3333531873 67 3f000000980433cb0cb47c38010003000000010000000066130200000000003d ?.....3...|8...........f.......=B.....&......... +6592 14.824897051 127.0.0.1:57433 127.0.0.1:57415 377467937 12 ffffffffae260b0000000000 .....&...... +6594 14.825093985 127.0.0.1:57433 127.0.0.1:57415 377467949 12 ffffffffaf260b0000000000 .....&...... +6596 14.825763702 127.0.0.1:57433 127.0.0.1:57415 377467961 12 34000000c6000b0000000000 4........... +6598 14.825904369 127.0.0.1:57433 127.0.0.1:57415 377467973 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....f..........w>. +6600 14.826172352 127.0.0.1:57415 127.0.0.1:57433 3333531940 12 ffffffffc6000b0000000000 ............ +6602 14.827104092 127.0.0.1:57415 127.0.0.1:57433 3333531952 12 1e000000b0260b0000000000 .....&...... +6604 14.827277899 127.0.0.1:57415 127.0.0.1:57433 3333531964 30 1a00000055ceff62b21b3a50010003000000719e1f000000000000000000 ....U..b..:P......q........... +6606 14.827564240 127.0.0.1:57433 127.0.0.1:57415 377468025 12 ffffffffb0260b0000000000 .....&...... +6608 14.828037262 127.0.0.1:57433 127.0.0.1:57415 377468037 12 1a000000c7000b0000000000 ............ +6610 14.828194141 127.0.0.1:57433 127.0.0.1:57415 377468049 26 16000000719e1f00000000000100030000000000000000000000 ....q..................... +6612 14.828795910 127.0.0.1:57415 127.0.0.1:57433 3333531994 12 ffffffffc7000b0000000000 ............ +6620 14.903904915 127.0.0.1:57415 127.0.0.1:57433 3333532006 12 1a000000b1260b0000000000 .....&...... +6622 14.904073477 127.0.0.1:57415 127.0.0.1:57433 3333532018 26 16000000548f6340e25e3140010003000000739e1f0000000000 ....T.c@.^1@......s....... +6624 14.904463530 127.0.0.1:57433 127.0.0.1:57415 377468075 12 ffffffffb1260b0000000000 .....&...... +6626 14.904853821 127.0.0.1:57433 127.0.0.1:57415 377468087 12 16000000c8000b0000000000 ............ +6628 14.905008554 127.0.0.1:57433 127.0.0.1:57415 377468099 22 12000000739e1f000000000001000300000000000000 ....s................. +6630 14.905294180 127.0.0.1:57415 127.0.0.1:57433 3333532044 12 ffffffffc8000b0000000000 ............ +6633 14.912596941 127.0.0.1:57415 127.0.0.1:57433 3333532056 12 feffffff2244010010440100 ...."D...D.. +6640 15.006789923 127.0.0.1:57415 127.0.0.1:57433 3333532068 12 1a000000b2260b0000000000 .....&...... +6642 15.006960154 127.0.0.1:57415 127.0.0.1:57433 3333532080 26 16000000548f6340e25e3140010003000000759e1f0000000000 ....T.c@.^1@......u....... +6644 15.007318735 127.0.0.1:57433 127.0.0.1:57415 377468121 12 ffffffffb2260b0000000000 .....&...... +6646 15.007642508 127.0.0.1:57433 127.0.0.1:57415 377468133 12 16000000c9000b0000000000 ............ +6648 15.007797956 127.0.0.1:57433 127.0.0.1:57415 377468145 22 12000000759e1f000000000001000300000000000000 ....u................. +6650 15.008121490 127.0.0.1:57415 127.0.0.1:57433 3333532106 12 ffffffffc9000b0000000000 ............ +6652 15.110714436 127.0.0.1:57415 127.0.0.1:57433 3333532118 12 1a000000b3260b0000000000 .....&...... +6654 15.110905409 127.0.0.1:57415 127.0.0.1:57433 3333532130 26 16000000548f6340e25e3140010003000000779e1f0000000000 ....T.c@.^1@......w....... +6656 15.111336946 127.0.0.1:57433 127.0.0.1:57415 377468167 12 ffffffffb3260b0000000000 .....&...... +6658 15.111783743 127.0.0.1:57433 127.0.0.1:57415 377468179 12 16000000ca000b0000000000 ............ +6660 15.111953020 127.0.0.1:57433 127.0.0.1:57415 377468191 22 12000000779e1f000000000001000300000000000000 ....w................. +6662 15.112365007 127.0.0.1:57415 127.0.0.1:57433 3333532156 12 ffffffffca000b0000000000 ............ +6664 15.129003048 127.0.0.1:57415 127.0.0.1:57433 3333532168 12 22000000b4260b0000000000 "....&...... +6666 15.129170179 127.0.0.1:57415 127.0.0.1:57433 3333532180 34 1e0000001c2118d0c46f33bb010003000000671302000000000020c825c39d01 .....!...o3.......g....... .%..... +6668 15.129258871 127.0.0.1:57415 127.0.0.1:57433 3333532214 12 43000000b5260b0000000000 C....&...... +6670 15.129341602 127.0.0.1:57415 127.0.0.1:57433 3333532226 67 3f000000980433cb0cb47c38010003000000010000000067130200000000003d ?.....3...|8...........g.......=B.....&......... +6672 15.129421711 127.0.0.1:57433 127.0.0.1:57415 377468213 12 ffffffffb4260b0000000000 .....&...... +6674 15.129585981 127.0.0.1:57433 127.0.0.1:57415 377468225 12 ffffffffb5260b0000000000 .....&...... +6676 15.130376339 127.0.0.1:57433 127.0.0.1:57415 377468237 12 34000000cb000b0000000000 4........... +6678 15.130537748 127.0.0.1:57433 127.0.0.1:57415 377468249 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....g.........M.l. +6680 15.130797148 127.0.0.1:57415 127.0.0.1:57433 3333532293 12 ffffffffcb000b0000000000 ............ +6682 15.131669760 127.0.0.1:57415 127.0.0.1:57433 3333532305 12 1e000000b6260b0000000000 .....&...... +6684 15.131809711 127.0.0.1:57415 127.0.0.1:57433 3333532317 30 1a00000055ceff62b21b3a50010003000000799e1f000000000000000000 ....U..b..:P......y........... +6686 15.132235050 127.0.0.1:57433 127.0.0.1:57415 377468301 12 ffffffffb6260b0000000000 .....&...... +6688 15.132549524 127.0.0.1:57433 127.0.0.1:57415 377468313 12 1a000000cc000b0000000000 ............ +6690 15.132706165 127.0.0.1:57433 127.0.0.1:57415 377468325 26 16000000799e1f00000000000100030000000000000000000000 ....y..................... +6692 15.132921696 127.0.0.1:57415 127.0.0.1:57433 3333532347 12 ffffffffcc000b0000000000 ............ +6696 15.163799763 127.0.0.1:57433 127.0.0.1:57415 377468351 12 feffffff1144010022440100 .....D.."D.. +6702 15.213560343 127.0.0.1:57415 127.0.0.1:57433 3333532359 12 1a000000b7260b0000000000 .....&...... +6704 15.213785172 127.0.0.1:57415 127.0.0.1:57433 3333532371 26 16000000548f6340e25e31400100030000007b9e1f0000000000 ....T.c@.^1@......{....... +6706 15.214090109 127.0.0.1:57433 127.0.0.1:57415 377468363 12 ffffffffb7260b0000000000 .....&...... +6708 15.214583635 127.0.0.1:57433 127.0.0.1:57415 377468375 12 16000000cd000b0000000000 ............ +6710 15.214783669 127.0.0.1:57433 127.0.0.1:57415 377468387 22 120000007b9e1f000000000001000300000000000000 ....{................. +6712 15.215068102 127.0.0.1:57415 127.0.0.1:57433 3333532397 12 ffffffffcd000b0000000000 ............ +6720 15.316595554 127.0.0.1:57415 127.0.0.1:57433 3333532409 12 1a000000b8260b0000000000 .....&...... +6722 15.316798925 127.0.0.1:57415 127.0.0.1:57433 3333532421 26 16000000548f6340e25e31400100030000007d9e1f0000000000 ....T.c@.^1@......}....... +6724 15.317131042 127.0.0.1:57433 127.0.0.1:57415 377468409 12 ffffffffb8260b0000000000 .....&...... +6726 15.317507505 127.0.0.1:57433 127.0.0.1:57415 377468421 12 16000000ce000b0000000000 ............ +6728 15.317665815 127.0.0.1:57433 127.0.0.1:57415 377468433 22 120000007d9e1f000000000001000300000000000000 ....}................. +6730 15.318008184 127.0.0.1:57415 127.0.0.1:57433 3333532447 12 ffffffffce000b0000000000 ............ +6748 15.414255619 127.0.0.1:57415 127.0.0.1:57433 3333532459 12 feffffff2344010011440100 ....#D...D.. +6752 15.419961691 127.0.0.1:57415 127.0.0.1:57433 3333532471 12 1a000000b9260b0000000000 .....&...... +6754 15.420123100 127.0.0.1:57415 127.0.0.1:57433 3333532483 26 16000000548f6340e25e31400100030000007f9e1f0000000000 ....T.c@.^1@.............. +6756 15.420464516 127.0.0.1:57433 127.0.0.1:57415 377468455 12 ffffffffb9260b0000000000 .....&...... +6758 15.420944452 127.0.0.1:57433 127.0.0.1:57415 377468467 12 16000000cf000b0000000000 ............ +6760 15.421110630 127.0.0.1:57433 127.0.0.1:57415 377468479 22 120000007f9e1f000000000001000300000000000000 ...................... +6762 15.421519756 127.0.0.1:57415 127.0.0.1:57433 3333532509 12 ffffffffcf000b0000000000 ............ +6764 15.433279991 127.0.0.1:57415 127.0.0.1:57433 3333532521 12 22000000ba260b0000000000 "....&...... +6766 15.433451653 127.0.0.1:57415 127.0.0.1:57433 3333532533 34 1e0000001c2118d0c46f33bb010003000000681302000000000050c925c39d01 .....!...o3.......h.......P.%..... +6768 15.433539391 127.0.0.1:57415 127.0.0.1:57433 3333532567 12 43000000bb260b0000000000 C....&...... +6770 15.433622837 127.0.0.1:57415 127.0.0.1:57433 3333532579 67 3f000000980433cb0cb47c38010003000000010000000068130200000000003d ?.....3...|8...........h.......=B.....&......... +6772 15.433741331 127.0.0.1:57433 127.0.0.1:57415 377468501 12 ffffffffba260b0000000000 .....&...... +6774 15.433909655 127.0.0.1:57433 127.0.0.1:57415 377468513 12 ffffffffbb260b0000000000 .....&...... +6776 15.434646130 127.0.0.1:57433 127.0.0.1:57415 377468525 12 34000000d0000b0000000000 4........... +6778 15.434834957 127.0.0.1:57433 127.0.0.1:57415 377468537 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....h..........^.. +6780 15.435112238 127.0.0.1:57415 127.0.0.1:57433 3333532646 12 ffffffffd0000b0000000000 ............ +6784 15.436061144 127.0.0.1:57415 127.0.0.1:57433 3333532658 12 1e000000bc260b0000000000 .....&...... +6786 15.436342955 127.0.0.1:57415 127.0.0.1:57433 3333532670 30 1a00000055ceff62b21b3a50010003000000819e1f000000000000000000 ....U..b..:P.................. +6788 15.436726809 127.0.0.1:57433 127.0.0.1:57415 377468589 12 ffffffffbc260b0000000000 .....&...... +6790 15.437079668 127.0.0.1:57433 127.0.0.1:57415 377468601 12 1a000000d1000b0000000000 ............ +6792 15.437345743 127.0.0.1:57433 127.0.0.1:57415 377468613 26 16000000819e1f00000000000100030000000000000000000000 .......................... +6794 15.437670708 127.0.0.1:57415 127.0.0.1:57433 3333532700 12 ffffffffd1000b0000000000 ............ +6814 15.523046970 127.0.0.1:57415 127.0.0.1:57433 3333532712 12 1a000000bd260b0000000000 .....&...... +6816 15.523236036 127.0.0.1:57415 127.0.0.1:57433 3333532724 26 16000000548f6340e25e3140010003000000839e1f0000000000 ....T.c@.^1@.............. +6818 15.523643494 127.0.0.1:57433 127.0.0.1:57415 377468639 12 ffffffffbd260b0000000000 .....&...... +6820 15.524010181 127.0.0.1:57433 127.0.0.1:57415 377468651 12 16000000d2000b0000000000 ............ +6822 15.524173260 127.0.0.1:57433 127.0.0.1:57415 377468663 22 12000000839e1f000000000001000300000000000000 ...................... +6824 15.524483681 127.0.0.1:57415 127.0.0.1:57433 3333532750 12 ffffffffd2000b0000000000 ............ +6826 15.627217770 127.0.0.1:57415 127.0.0.1:57433 3333532762 12 1a000000be260b0000000000 .....&...... +6828 15.627427101 127.0.0.1:57415 127.0.0.1:57433 3333532774 26 16000000548f6340e25e3140010003000000859e1f0000000000 ....T.c@.^1@.............. +6830 15.627713203 127.0.0.1:57433 127.0.0.1:57415 377468685 12 ffffffffbe260b0000000000 .....&...... +6832 15.628246069 127.0.0.1:57433 127.0.0.1:57415 377468697 12 16000000d3000b0000000000 ............ +6834 15.628436327 127.0.0.1:57433 127.0.0.1:57415 377468709 22 12000000859e1f000000000001000300000000000000 ...................... +6836 15.628700018 127.0.0.1:57415 127.0.0.1:57433 3333532800 12 ffffffffd3000b0000000000 ............ +6840 15.663893461 127.0.0.1:57433 127.0.0.1:57415 377468731 12 feffffff1244010023440100 .....D..#D.. +6846 15.731156111 127.0.0.1:57415 127.0.0.1:57433 3333532812 12 1a000000bf260b0000000000 .....&...... +6848 15.731404305 127.0.0.1:57415 127.0.0.1:57433 3333532824 26 16000000548f6340e25e3140010003000000879e1f0000000000 ....T.c@.^1@.............. +6850 15.731646776 127.0.0.1:57433 127.0.0.1:57415 377468743 12 ffffffffbf260b0000000000 .....&...... +6852 15.732129574 127.0.0.1:57433 127.0.0.1:57415 377468755 12 16000000d4000b0000000000 ............ +6854 15.732268810 127.0.0.1:57433 127.0.0.1:57415 377468767 22 12000000879e1f000000000001000300000000000000 ...................... +6856 15.732578039 127.0.0.1:57415 127.0.0.1:57433 3333532850 12 ffffffffd4000b0000000000 ............ +6858 15.737320423 127.0.0.1:57415 127.0.0.1:57433 3333532862 12 22000000c0260b0000000000 "....&...... +6860 15.737494707 127.0.0.1:57415 127.0.0.1:57433 3333532874 34 1e0000001c2118d0c46f33bb010003000000691302000000000080ca25c39d01 .....!...o3.......i.........%..... +6862 15.737581015 127.0.0.1:57415 127.0.0.1:57433 3333532908 12 43000000c1260b0000000000 C....&...... +6864 15.737663746 127.0.0.1:57415 127.0.0.1:57433 3333532920 67 3f000000980433cb0cb47c38010003000000010000000069130200000000003d ?.....3...|8...........i.......=B.....&......... +6866 15.737906456 127.0.0.1:57433 127.0.0.1:57415 377468789 12 ffffffffc0260b0000000000 .....&...... +6868 15.738054752 127.0.0.1:57433 127.0.0.1:57415 377468801 12 ffffffffc1260b0000000000 .....&...... +6870 15.738600254 127.0.0.1:57433 127.0.0.1:57415 377468813 12 34000000d5000b0000000000 4........... +6872 15.738945961 127.0.0.1:57433 127.0.0.1:57415 377468825 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....i............. +6874 15.739205122 127.0.0.1:57415 127.0.0.1:57433 3333532987 12 ffffffffd5000b0000000000 ............ +6876 15.739970922 127.0.0.1:57415 127.0.0.1:57433 3333532999 12 1e000000c2260b0000000000 .....&...... +6878 15.740108252 127.0.0.1:57415 127.0.0.1:57433 3333533011 30 1a00000055ceff62b21b3a50010003000000899e1f000000000000000000 ....U..b..:P.................. +6880 15.740442514 127.0.0.1:57433 127.0.0.1:57415 377468877 12 ffffffffc2260b0000000000 .....&...... +6882 15.740851641 127.0.0.1:57433 127.0.0.1:57415 377468889 12 1a000000d6000b0000000000 ............ +6884 15.740986347 127.0.0.1:57433 127.0.0.1:57415 377468901 26 16000000899e1f00000000000100030000000000000000000000 .......................... +6886 15.741231680 127.0.0.1:57415 127.0.0.1:57433 3333533041 12 ffffffffd6000b0000000000 ............ +6890 15.834995985 127.0.0.1:57415 127.0.0.1:57433 3333533053 12 1a000000c3260b0000000000 .....&...... +6892 15.835169315 127.0.0.1:57415 127.0.0.1:57433 3333533065 26 16000000548f6340e25e31400100030000008b9e1f0000000000 ....T.c@.^1@.............. +6894 15.835566282 127.0.0.1:57433 127.0.0.1:57415 377468927 12 ffffffffc3260b0000000000 .....&...... +6896 15.836281061 127.0.0.1:57433 127.0.0.1:57415 377468939 12 16000000d7000b0000000000 ............ +6898 15.836506128 127.0.0.1:57433 127.0.0.1:57415 377468951 22 120000008b9e1f000000000001000300000000000000 ...................... +6900 15.836777449 127.0.0.1:57415 127.0.0.1:57433 3333533091 12 ffffffffd7000b0000000000 ............ +6909 15.915602684 127.0.0.1:57415 127.0.0.1:57433 3333533103 12 feffffff2444010012440100 ....$D...D.. +6912 15.937917948 127.0.0.1:57415 127.0.0.1:57433 3333533115 12 1a000000c4260b0000000000 .....&...... +6914 15.938079834 127.0.0.1:57415 127.0.0.1:57433 3333533127 26 16000000548f6340e25e31400100030000008d9e1f0000000000 ....T.c@.^1@.............. +6916 15.938471317 127.0.0.1:57433 127.0.0.1:57415 377468973 12 ffffffffc4260b0000000000 .....&...... +6918 15.939734936 127.0.0.1:57433 127.0.0.1:57415 377468985 12 16000000d8000b0000000000 ............ +6920 15.939881325 127.0.0.1:57433 127.0.0.1:57415 377468997 22 120000008d9e1f000000000001000300000000000000 ...................... +6922 15.940204859 127.0.0.1:57415 127.0.0.1:57433 3333533153 12 ffffffffd8000b0000000000 ............ +6928 16.041196346 127.0.0.1:57415 127.0.0.1:57433 3333533165 12 22000000c5260b0000000000 "....&...... +6930 16.041377783 127.0.0.1:57415 127.0.0.1:57433 3333533177 34 1e0000001c2118d0c46f33bb0100030000006a13020000000000b0cb25c39d01 .....!...o3.......j.........%..... +6932 16.041516304 127.0.0.1:57415 127.0.0.1:57433 3333533211 12 43000000c6260b0000000000 C....&...... +6934 16.041601658 127.0.0.1:57415 127.0.0.1:57433 3333533223 67 3f000000980433cb0cb47c3801000300000001000000006a130200000000003d ?.....3...|8...........j.......=B.....&......... +6936 16.041695595 127.0.0.1:57433 127.0.0.1:57415 377469019 12 ffffffffc5260b0000000000 .....&...... +6938 16.041872978 127.0.0.1:57433 127.0.0.1:57415 377469031 12 ffffffffc6260b0000000000 .....&...... +6940 16.042717695 127.0.0.1:57415 127.0.0.1:57433 3333533290 12 1a000000c7260b0000000000 .....&...... +6942 16.042831421 127.0.0.1:57433 127.0.0.1:57415 377469043 12 34000000d9000b0000000000 4........... +6944 16.042983532 127.0.0.1:57433 127.0.0.1:57415 377469055 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....j.........N&.. +6945 16.042999268 127.0.0.1:57415 127.0.0.1:57433 3333533302 26 16000000548f6340e25e31400100030000008f9e1f0000000000 ....T.c@.^1@.............. +6948 16.043312311 127.0.0.1:57433 127.0.0.1:57415 377469107 12 ffffffffc7260b0000000000 .....&...... +6949 16.043318033 127.0.0.1:57415 127.0.0.1:57433 3333533328 12 ffffffffd9000b0000000000 ............ +6952 16.043628454 127.0.0.1:57433 127.0.0.1:57415 377469119 12 16000000da000b0000000000 ............ +6953 16.043744087 127.0.0.1:57433 127.0.0.1:57415 377469131 22 120000008f9e1f000000000001000300000000000000 ...................... +6954 16.043931961 127.0.0.1:57415 127.0.0.1:57433 3333533340 12 ffffffffda000b0000000000 ............ +6956 16.044167042 127.0.0.1:57415 127.0.0.1:57433 3333533352 12 1e000000c8260b0000000000 .....&...... +6958 16.044304371 127.0.0.1:57415 127.0.0.1:57433 3333533364 30 1a00000055ceff62b21b3a50010003000000919e1f000000000000000000 ....U..b..:P.................. +6960 16.044504642 127.0.0.1:57433 127.0.0.1:57415 377469153 12 ffffffffc8260b0000000000 .....&...... +6961 16.044845104 127.0.0.1:57433 127.0.0.1:57415 377469165 12 1a000000db000b0000000000 ............ +6962 16.044949055 127.0.0.1:57433 127.0.0.1:57415 377469177 26 16000000919e1f00000000000100030000000000000000000000 .......................... +6963 16.045183659 127.0.0.1:57415 127.0.0.1:57433 3333533394 12 ffffffffdb000b0000000000 ............ +6965 16.145955801 127.0.0.1:57415 127.0.0.1:57433 3333533406 12 1a000000c9260b0000000000 .....&...... +6967 16.146151543 127.0.0.1:57415 127.0.0.1:57433 3333533418 26 16000000548f6340e25e3140010003000000939e1f0000000000 ....T.c@.^1@.............. +6969 16.146541595 127.0.0.1:57433 127.0.0.1:57415 377469203 12 ffffffffc9260b0000000000 .....&...... +6971 16.147046566 127.0.0.1:57433 127.0.0.1:57415 377469215 12 16000000dc000b0000000000 ............ +6973 16.147237301 127.0.0.1:57433 127.0.0.1:57415 377469227 22 12000000939e1f000000000001000300000000000000 ...................... +6975 16.147578001 127.0.0.1:57415 127.0.0.1:57433 3333533444 12 ffffffffdc000b0000000000 ............ +6977 16.163657188 127.0.0.1:57433 127.0.0.1:57415 377469249 12 feffffff1344010024440100 .....D..$D.. +6987 16.248845339 127.0.0.1:57415 127.0.0.1:57433 3333533456 12 1a000000ca260b0000000000 .....&...... +6989 16.249008656 127.0.0.1:57415 127.0.0.1:57433 3333533468 26 16000000548f6340e25e3140010003000000959e1f0000000000 ....T.c@.^1@.............. +6991 16.249311686 127.0.0.1:57433 127.0.0.1:57415 377469261 12 ffffffffca260b0000000000 .....&...... +6993 16.249846220 127.0.0.1:57433 127.0.0.1:57415 377469273 12 16000000dd000b0000000000 ............ +6995 16.250004292 127.0.0.1:57433 127.0.0.1:57415 377469285 22 12000000959e1f000000000001000300000000000000 ...................... +6997 16.250416040 127.0.0.1:57415 127.0.0.1:57433 3333533494 12 ffffffffdd000b0000000000 ............ +6999 16.346109867 127.0.0.1:57415 127.0.0.1:57433 3333533506 12 22000000cb260b0000000000 "....&...... +7001 16.346319437 127.0.0.1:57415 127.0.0.1:57433 3333533518 34 1e0000001c2118d0c46f33bb0100030000006b13020000000000e1cc25c39d01 .....!...o3.......k.........%..... +7003 16.346457958 127.0.0.1:57415 127.0.0.1:57433 3333533552 12 43000000cc260b0000000000 C....&...... +7005 16.346546412 127.0.0.1:57415 127.0.0.1:57433 3333533564 67 3f000000980433cb0cb47c3801000300000001000000006b130200000000003d ?.....3...|8...........k.......=B.....&......... +7006 16.346584558 127.0.0.1:57433 127.0.0.1:57415 377469307 12 ffffffffcb260b0000000000 .....&...... +7007 16.346684694 127.0.0.1:57433 127.0.0.1:57415 377469319 12 ffffffffcc260b0000000000 .....&...... +7010 16.347883463 127.0.0.1:57433 127.0.0.1:57415 377469331 12 34000000de000b0000000000 4........... +7012 16.348047733 127.0.0.1:57433 127.0.0.1:57415 377469343 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....k...........&. +7014 16.348372936 127.0.0.1:57415 127.0.0.1:57433 3333533631 12 ffffffffde000b0000000000 ............ +7015 16.349290848 127.0.0.1:57415 127.0.0.1:57433 3333533643 12 1e000000cd260b0000000000 .....&...... +7016 16.349398851 127.0.0.1:57415 127.0.0.1:57433 3333533655 30 1a00000055ceff62b21b3a50010003000000979e1f000000000000000000 ....U..b..:P.................. +7017 16.349664450 127.0.0.1:57433 127.0.0.1:57415 377469395 12 ffffffffcd260b0000000000 .....&...... +7019 16.350065470 127.0.0.1:57433 127.0.0.1:57415 377469407 12 1a000000df000b0000000000 ............ +7021 16.350254059 127.0.0.1:57433 127.0.0.1:57415 377469419 26 16000000979e1f00000000000100030000000000000000000000 .......................... +7023 16.350496769 127.0.0.1:57415 127.0.0.1:57433 3333533685 12 ffffffffdf000b0000000000 ............ +7025 16.351611137 127.0.0.1:57415 127.0.0.1:57433 3333533697 12 1a000000ce260b0000000000 .....&...... +7027 16.351742268 127.0.0.1:57415 127.0.0.1:57433 3333533709 26 16000000548f6340e25e3140010003000000999e1f0000000000 ....T.c@.^1@.............. +7029 16.351965666 127.0.0.1:57433 127.0.0.1:57415 377469445 12 ffffffffce260b0000000000 .....&...... +7031 16.352290869 127.0.0.1:57433 127.0.0.1:57415 377469457 12 16000000e0000b0000000000 ............ +7033 16.352450848 127.0.0.1:57433 127.0.0.1:57415 377469469 22 12000000999e1f000000000001000300000000000000 ...................... +7035 16.352689505 127.0.0.1:57415 127.0.0.1:57433 3333533735 12 ffffffffe0000b0000000000 ............ +7044 16.417747736 127.0.0.1:57415 127.0.0.1:57433 3333533747 12 feffffff2544010013440100 ....%D...D.. +7049 16.455256939 127.0.0.1:57415 127.0.0.1:57433 3333533759 12 1a000000cf260b0000000000 .....&...... +7051 16.455429077 127.0.0.1:57415 127.0.0.1:57433 3333533771 26 16000000548f6340e25e31400100030000009b9e1f0000000000 ....T.c@.^1@.............. +7053 16.455751419 127.0.0.1:57433 127.0.0.1:57415 377469491 12 ffffffffcf260b0000000000 .....&...... +7055 16.456401348 127.0.0.1:57433 127.0.0.1:57415 377469503 12 16000000e1000b0000000000 ............ +7057 16.456691980 127.0.0.1:57433 127.0.0.1:57415 377469515 22 120000009b9e1f000000000001000300000000000000 ...................... +7059 16.456973314 127.0.0.1:57415 127.0.0.1:57433 3333533797 12 ffffffffe1000b0000000000 ............ +7063 16.559713364 127.0.0.1:57415 127.0.0.1:57433 3333533809 12 1a000000d0260b0000000000 .....&...... +7065 16.559891939 127.0.0.1:57415 127.0.0.1:57433 3333533821 26 16000000548f6340e25e31400100030000009d9e1f0000000000 ....T.c@.^1@.............. +7067 16.560194492 127.0.0.1:57433 127.0.0.1:57415 377469537 12 ffffffffd0260b0000000000 .....&...... +7069 16.560674906 127.0.0.1:57433 127.0.0.1:57415 377469549 12 16000000e2000b0000000000 ............ +7071 16.560875416 127.0.0.1:57433 127.0.0.1:57415 377469561 22 120000009d9e1f000000000001000300000000000000 ...................... +7073 16.561185598 127.0.0.1:57415 127.0.0.1:57433 3333533847 12 ffffffffe2000b0000000000 ............ +7075 16.651042461 127.0.0.1:57415 127.0.0.1:57433 3333533859 12 22000000d1260b0000000000 "....&...... +7077 16.651219845 127.0.0.1:57415 127.0.0.1:57433 3333533871 34 1e0000001c2118d0c46f33bb0100030000006c1302000000000012ce25c39d01 .....!...o3.......l.........%..... +7079 16.651350260 127.0.0.1:57415 127.0.0.1:57433 3333533905 12 43000000d2260b0000000000 C....&...... +7081 16.651437759 127.0.0.1:57415 127.0.0.1:57433 3333533917 67 3f000000980433cb0cb47c3801000300000001000000006c130200000000003d ?.....3...|8...........l.......=B.....&......... +7083 16.651525974 127.0.0.1:57433 127.0.0.1:57415 377469583 12 ffffffffd1260b0000000000 .....&...... +7085 16.651702642 127.0.0.1:57433 127.0.0.1:57415 377469595 12 ffffffffd2260b0000000000 .....&...... +7087 16.652290821 127.0.0.1:57433 127.0.0.1:57415 377469607 12 34000000e3000b0000000000 4........... +7089 16.652453423 127.0.0.1:57433 127.0.0.1:57415 377469619 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....l..........,U. +7091 16.652742624 127.0.0.1:57415 127.0.0.1:57433 3333533984 12 ffffffffe3000b0000000000 ............ +7093 16.653696537 127.0.0.1:57415 127.0.0.1:57433 3333533996 12 1e000000d3260b0000000000 .....&...... +7095 16.653840542 127.0.0.1:57415 127.0.0.1:57433 3333534008 30 1a00000055ceff62b21b3a500100030000009f9e1f000000000000000000 ....U..b..:P.................. +7097 16.654175282 127.0.0.1:57433 127.0.0.1:57415 377469671 12 ffffffffd3260b0000000000 .....&...... +7099 16.654501438 127.0.0.1:57433 127.0.0.1:57415 377469683 12 1a000000e4000b0000000000 ............ +7101 16.654645920 127.0.0.1:57433 127.0.0.1:57415 377469695 26 160000009f9e1f00000000000100030000000000000000000000 .......................... +7103 16.654890537 127.0.0.1:57415 127.0.0.1:57433 3333534038 12 ffffffffe4000b0000000000 ............ +7105 16.662506580 127.0.0.1:57415 127.0.0.1:57433 3333534050 12 1a000000d4260b0000000000 .....&...... +7107 16.662666082 127.0.0.1:57415 127.0.0.1:57433 3333534062 26 16000000548f6340e25e3140010003000000a19e1f0000000000 ....T.c@.^1@.............. +7109 16.662962675 127.0.0.1:57433 127.0.0.1:57415 377469721 12 ffffffffd4260b0000000000 .....&...... +7111 16.663426399 127.0.0.1:57433 127.0.0.1:57415 377469733 12 16000000e5000b0000000000 ............ +7113 16.663568735 127.0.0.1:57433 127.0.0.1:57415 377469745 22 12000000a19e1f000000000001000300000000000000 ...................... +7115 16.663811922 127.0.0.1:57415 127.0.0.1:57433 3333534088 12 ffffffffe5000b0000000000 ............ +7119 16.664623737 127.0.0.1:57433 127.0.0.1:57415 377469767 12 feffffff1444010025440100 .....D..%D.. +7127 16.766624212 127.0.0.1:57415 127.0.0.1:57433 3333534100 12 1a000000d5260b0000000000 .....&...... +7129 16.766803026 127.0.0.1:57415 127.0.0.1:57433 3333534112 26 16000000548f6340e25e3140010003000000a39e1f0000000000 ....T.c@.^1@.............. +7131 16.767120361 127.0.0.1:57433 127.0.0.1:57415 377469779 12 ffffffffd5260b0000000000 .....&...... +7133 16.767734528 127.0.0.1:57433 127.0.0.1:57415 377469791 12 16000000e6000b0000000000 ............ +7135 16.767888069 127.0.0.1:57433 127.0.0.1:57415 377469803 22 12000000a39e1f000000000001000300000000000000 ...................... +7137 16.768174648 127.0.0.1:57415 127.0.0.1:57433 3333534138 12 ffffffffe6000b0000000000 ............ +7139 16.869685650 127.0.0.1:57415 127.0.0.1:57433 3333534150 12 1a000000d6260b0000000000 .....&...... +7141 16.869867802 127.0.0.1:57415 127.0.0.1:57433 3333534162 26 16000000548f6340e25e3140010003000000a59e1f0000000000 ....T.c@.^1@.............. +7143 16.870280027 127.0.0.1:57433 127.0.0.1:57415 377469825 12 ffffffffd6260b0000000000 .....&...... +7145 16.870699167 127.0.0.1:57433 127.0.0.1:57415 377469837 12 16000000e7000b0000000000 ............ +7147 16.870851040 127.0.0.1:57433 127.0.0.1:57415 377469849 22 12000000a59e1f000000000001000300000000000000 ...................... +7149 16.871059179 127.0.0.1:57415 127.0.0.1:57433 3333534188 12 ffffffffe7000b0000000000 ............ +7158 16.919043064 127.0.0.1:57415 127.0.0.1:57433 3333534200 12 feffffff2644010014440100 ....&D...D.. +7163 16.954624176 127.0.0.1:57415 127.0.0.1:57433 3333534212 12 22000000d7260b0000000000 "....&...... +7165 16.954798460 127.0.0.1:57415 127.0.0.1:57433 3333534224 34 1e0000001c2118d0c46f33bb0100030000006d1302000000000042cf25c39d01 .....!...o3.......m.......B.%..... +7167 16.954885721 127.0.0.1:57415 127.0.0.1:57433 3333534258 12 43000000d8260b0000000000 C....&...... +7169 16.954969883 127.0.0.1:57415 127.0.0.1:57433 3333534270 67 3f000000980433cb0cb47c3801000300000001000000006d130200000000003d ?.....3...|8...........m.......=B.....&......... +7171 16.955122471 127.0.0.1:57433 127.0.0.1:57415 377469871 12 ffffffffd7260b0000000000 .....&...... +7173 16.955323458 127.0.0.1:57433 127.0.0.1:57415 377469883 12 ffffffffd8260b0000000000 .....&...... +7175 16.956033945 127.0.0.1:57433 127.0.0.1:57415 377469895 12 34000000e8000b0000000000 4........... +7177 16.956191063 127.0.0.1:57433 127.0.0.1:57415 377469907 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....m............. +7179 16.956478357 127.0.0.1:57415 127.0.0.1:57433 3333534337 12 ffffffffe8000b0000000000 ............ +7181 16.957343817 127.0.0.1:57415 127.0.0.1:57433 3333534349 12 1e000000d9260b0000000000 .....&...... +7183 16.957482338 127.0.0.1:57415 127.0.0.1:57433 3333534361 30 1a00000055ceff62b21b3a50010003000000a79e1f000000000000000000 ....U..b..:P.................. +7185 16.957896233 127.0.0.1:57433 127.0.0.1:57415 377469959 12 ffffffffd9260b0000000000 .....&...... +7187 16.958144426 127.0.0.1:57433 127.0.0.1:57415 377469971 12 1a000000e9000b0000000000 ............ +7189 16.958282709 127.0.0.1:57433 127.0.0.1:57415 377469983 26 16000000a79e1f00000000000100030000000000000000000000 .......................... +7191 16.958584547 127.0.0.1:57415 127.0.0.1:57433 3333534391 12 ffffffffe9000b0000000000 ............ +7193 16.972248793 127.0.0.1:57415 127.0.0.1:57433 3333534403 12 1a000000da260b0000000000 .....&...... +7195 16.972404957 127.0.0.1:57415 127.0.0.1:57433 3333534415 26 16000000548f6340e25e3140010003000000a99e1f0000000000 ....T.c@.^1@.............. +7197 16.972763062 127.0.0.1:57433 127.0.0.1:57415 377470009 12 ffffffffda260b0000000000 .....&...... +7199 16.973137856 127.0.0.1:57433 127.0.0.1:57415 377470021 12 16000000ea000b0000000000 ............ +7201 16.973291159 127.0.0.1:57433 127.0.0.1:57415 377470033 22 12000000a99e1f000000000001000300000000000000 ...................... +7203 16.973582983 127.0.0.1:57415 127.0.0.1:57433 3333534441 12 ffffffffea000b0000000000 ............ +7207 17.075542927 127.0.0.1:57415 127.0.0.1:57433 3333534453 12 1a000000db260b0000000000 .....&...... +7209 17.075742960 127.0.0.1:57415 127.0.0.1:57433 3333534465 26 16000000548f6340e25e3140010003000000ab9e1f0000000000 ....T.c@.^1@.............. +7211 17.076053619 127.0.0.1:57433 127.0.0.1:57415 377470055 12 ffffffffdb260b0000000000 .....&...... +7213 17.076640844 127.0.0.1:57433 127.0.0.1:57415 377470067 12 16000000eb000b0000000000 ............ +7215 17.076828241 127.0.0.1:57433 127.0.0.1:57415 377470079 22 12000000ab9e1f000000000001000300000000000000 ...................... +7217 17.077116489 127.0.0.1:57415 127.0.0.1:57433 3333534491 12 ffffffffeb000b0000000000 ............ +7220 17.166121721 127.0.0.1:57433 127.0.0.1:57415 377470101 12 feffffff1544010026440100 .....D..&D.. +7227 17.178419828 127.0.0.1:57415 127.0.0.1:57433 3333534503 12 1a000000dc260b0000000000 .....&...... +7229 17.178585768 127.0.0.1:57415 127.0.0.1:57433 3333534515 26 16000000548f6340e25e3140010003000000ad9e1f0000000000 ....T.c@.^1@.............. +7231 17.178989172 127.0.0.1:57433 127.0.0.1:57415 377470113 12 ffffffffdc260b0000000000 .....&...... +7233 17.179495811 127.0.0.1:57433 127.0.0.1:57415 377470125 12 16000000ec000b0000000000 ............ +7235 17.179722548 127.0.0.1:57433 127.0.0.1:57415 377470137 22 12000000ad9e1f000000000001000300000000000000 ...................... +7237 17.180008650 127.0.0.1:57415 127.0.0.1:57433 3333534541 12 ffffffffec000b0000000000 ............ +7243 17.258813620 127.0.0.1:57415 127.0.0.1:57433 3333534553 12 65000000dd260b0000000000 e....&...... +7245 17.259013414 127.0.0.1:57415 127.0.0.1:57433 3333534565 101 1e0000001c2118d0c46f33bb0100030000006e1302000000000071d025c39d01 .....!...o3.......n.......q.%.....?.....3...|8.. +7247 17.259408951 127.0.0.1:57433 127.0.0.1:57415 377470159 12 ffffffffdd260b0000000000 .....&...... +7249 17.260106564 127.0.0.1:57433 127.0.0.1:57415 377470171 12 34000000ed000b0000000000 4........... +7251 17.260270119 127.0.0.1:57433 127.0.0.1:57415 377470183 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....n............. +7253 17.260533094 127.0.0.1:57415 127.0.0.1:57433 3333534666 12 ffffffffed000b0000000000 ............ +7255 17.261390209 127.0.0.1:57415 127.0.0.1:57433 3333534678 12 1e000000de260b0000000000 .....&...... +7257 17.261534452 127.0.0.1:57415 127.0.0.1:57433 3333534690 30 1a00000055ceff62b21b3a50010003000000af9e1f000000000000000000 ....U..b..:P.................. +7259 17.261926174 127.0.0.1:57433 127.0.0.1:57415 377470235 12 ffffffffde260b0000000000 .....&...... +7261 17.262393951 127.0.0.1:57433 127.0.0.1:57415 377470247 12 1a000000ee000b0000000000 ............ +7263 17.262539864 127.0.0.1:57433 127.0.0.1:57415 377470259 26 16000000af9e1f00000000000100030000000000000000000000 .......................... +7265 17.262784958 127.0.0.1:57415 127.0.0.1:57433 3333534720 12 ffffffffee000b0000000000 ............ +7267 17.281292200 127.0.0.1:57415 127.0.0.1:57433 3333534732 12 1a000000df260b0000000000 .....&...... +7269 17.281454325 127.0.0.1:57415 127.0.0.1:57433 3333534744 26 16000000548f6340e25e3140010003000000b19e1f0000000000 ....T.c@.^1@.............. +7271 17.281818867 127.0.0.1:57433 127.0.0.1:57415 377470285 12 ffffffffdf260b0000000000 .....&...... +7273 17.282112122 127.0.0.1:57433 127.0.0.1:57415 377470297 12 16000000ef000b0000000000 ............ +7275 17.282268524 127.0.0.1:57433 127.0.0.1:57415 377470309 22 12000000b19e1f000000000001000300000000000000 ...................... +7277 17.282686472 127.0.0.1:57415 127.0.0.1:57433 3333534770 12 ffffffffef000b0000000000 ............ +7279 17.384183884 127.0.0.1:57415 127.0.0.1:57433 3333534782 12 1a000000e0260b0000000000 .....&...... +7281 17.384436369 127.0.0.1:57415 127.0.0.1:57433 3333534794 26 16000000548f6340e25e3140010003000000b39e1f0000000000 ....T.c@.^1@.............. +7283 17.384772062 127.0.0.1:57433 127.0.0.1:57415 377470331 12 ffffffffe0260b0000000000 .....&...... +7285 17.385371923 127.0.0.1:57433 127.0.0.1:57415 377470343 12 16000000f0000b0000000000 ............ +7287 17.385579824 127.0.0.1:57433 127.0.0.1:57415 377470355 22 12000000b39e1f000000000001000300000000000000 ...................... +7289 17.385910988 127.0.0.1:57415 127.0.0.1:57433 3333534820 12 fffffffff0000b0000000000 ............ +7298 17.419735909 127.0.0.1:57415 127.0.0.1:57433 3333534832 12 feffffff2744010015440100 ....'D...D.. +7303 17.487489939 127.0.0.1:57415 127.0.0.1:57433 3333534844 12 1a000000e1260b0000000000 .....&...... +7305 17.487664938 127.0.0.1:57415 127.0.0.1:57433 3333534856 26 16000000548f6340e25e3140010003000000b59e1f0000000000 ....T.c@.^1@.............. +7307 17.488023043 127.0.0.1:57433 127.0.0.1:57415 377470377 12 ffffffffe1260b0000000000 .....&...... +7309 17.488627672 127.0.0.1:57433 127.0.0.1:57415 377470389 12 16000000f1000b0000000000 ............ +7311 17.488903522 127.0.0.1:57433 127.0.0.1:57415 377470401 22 12000000b59e1f000000000001000300000000000000 ...................... +7313 17.489219666 127.0.0.1:57415 127.0.0.1:57433 3333534882 12 fffffffff1000b0000000000 ............ +7317 17.562870979 127.0.0.1:57415 127.0.0.1:57433 3333534894 12 22000000e2260b0000000000 "....&...... +7319 17.563145161 127.0.0.1:57415 127.0.0.1:57433 3333534906 34 1e0000001c2118d0c46f33bb0100030000006f13020000000000a1d125c39d01 .....!...o3.......o.........%..... +7321 17.563324213 127.0.0.1:57415 127.0.0.1:57433 3333534940 12 43000000e3260b0000000000 C....&...... +7323 17.563438654 127.0.0.1:57415 127.0.0.1:57433 3333534952 67 3f000000980433cb0cb47c3801000300000001000000006f130200000000003d ?.....3...|8...........o.......=B.....&......... +7324 17.563483715 127.0.0.1:57433 127.0.0.1:57415 377470423 12 ffffffffe2260b0000000000 .....&...... +7327 17.564219952 127.0.0.1:57433 127.0.0.1:57415 377470435 12 ffffffffe3260b0000000000 .....&...... +7329 17.565319538 127.0.0.1:57433 127.0.0.1:57415 377470447 12 34000000f2000b0000000000 4........... +7331 17.565478563 127.0.0.1:57433 127.0.0.1:57415 377470459 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....o.........G}.. +7333 17.565786362 127.0.0.1:57415 127.0.0.1:57433 3333535019 12 fffffffff2000b0000000000 ............ +7334 17.566899061 127.0.0.1:57415 127.0.0.1:57433 3333535031 12 1e000000e4260b0000000000 .....&...... +7336 17.567095518 127.0.0.1:57415 127.0.0.1:57433 3333535043 30 1a00000055ceff62b21b3a50010003000000b79e1f000000000000000000 ....U..b..:P.................. +7338 17.567371368 127.0.0.1:57433 127.0.0.1:57415 377470511 12 ffffffffe4260b0000000000 .....&...... +7340 17.567761183 127.0.0.1:57433 127.0.0.1:57415 377470523 12 1a000000f3000b0000000000 ............ +7342 17.567914248 127.0.0.1:57433 127.0.0.1:57415 377470535 26 16000000b79e1f00000000000100030000000000000000000000 .......................... +7344 17.568214893 127.0.0.1:57415 127.0.0.1:57433 3333535073 12 fffffffff3000b0000000000 ............ +7346 17.591214657 127.0.0.1:57415 127.0.0.1:57433 3333535085 12 1a000000e5260b0000000000 .....&...... +7348 17.591432571 127.0.0.1:57415 127.0.0.1:57433 3333535097 26 16000000548f6340e25e3140010003000000b99e1f0000000000 ....T.c@.^1@.............. +7350 17.591886759 127.0.0.1:57433 127.0.0.1:57415 377470561 12 ffffffffe5260b0000000000 .....&...... +7352 17.592250347 127.0.0.1:57433 127.0.0.1:57415 377470573 12 16000000f4000b0000000000 ............ +7354 17.592411041 127.0.0.1:57433 127.0.0.1:57415 377470585 22 12000000b99e1f000000000001000300000000000000 ...................... +7356 17.592808008 127.0.0.1:57415 127.0.0.1:57433 3333535123 12 fffffffff4000b0000000000 ............ +7362 17.666417360 127.0.0.1:57433 127.0.0.1:57415 377470607 12 feffffff1644010027440100 .....D..'D.. +7370 17.695287228 127.0.0.1:57415 127.0.0.1:57433 3333535135 12 1a000000e6260b0000000000 .....&...... +7372 17.695470333 127.0.0.1:57415 127.0.0.1:57433 3333535147 26 16000000548f6340e25e3140010003000000bb9e1f0000000000 ....T.c@.^1@.............. +7374 17.695825815 127.0.0.1:57433 127.0.0.1:57415 377470619 12 ffffffffe6260b0000000000 .....&...... +7376 17.696477652 127.0.0.1:57433 127.0.0.1:57415 377470631 12 16000000f5000b0000000000 ............ +7378 17.696719885 127.0.0.1:57433 127.0.0.1:57415 377470643 22 12000000bb9e1f000000000001000300000000000000 ...................... +7380 17.697123766 127.0.0.1:57415 127.0.0.1:57433 3333535173 12 fffffffff5000b0000000000 ............ +7386 17.799721241 127.0.0.1:57415 127.0.0.1:57433 3333535185 12 1a000000e7260b0000000000 .....&...... +7388 17.799916029 127.0.0.1:57415 127.0.0.1:57433 3333535197 26 16000000548f6340e25e3140010003000000bd9e1f0000000000 ....T.c@.^1@.............. +7390 17.800300837 127.0.0.1:57433 127.0.0.1:57415 377470665 12 ffffffffe7260b0000000000 .....&...... +7392 17.800801754 127.0.0.1:57433 127.0.0.1:57415 377470677 12 16000000f6000b0000000000 ............ +7394 17.800963402 127.0.0.1:57433 127.0.0.1:57415 377470689 22 12000000bd9e1f000000000001000300000000000000 ...................... +7396 17.801370859 127.0.0.1:57415 127.0.0.1:57433 3333535223 12 fffffffff6000b0000000000 ............ +7398 17.869566679 127.0.0.1:57415 127.0.0.1:57433 3333535235 12 65000000e8260b0000000000 e....&...... +7400 17.869857550 127.0.0.1:57415 127.0.0.1:57433 3333535247 101 1e0000001c2118d0c46f33bb0100030000007013020000000000d4d225c39d01 .....!...o3.......p.........%.....?.....3...|8.. +7402 17.870258331 127.0.0.1:57433 127.0.0.1:57415 377470711 12 ffffffffe8260b0000000000 .....&...... +7404 17.871315002 127.0.0.1:57433 127.0.0.1:57415 377470723 12 34000000f7000b0000000000 4........... +7406 17.871494532 127.0.0.1:57433 127.0.0.1:57415 377470735 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....p.........A-.. +7408 17.871692419 127.0.0.1:57415 127.0.0.1:57433 3333535348 12 fffffffff7000b0000000000 ............ +7410 17.872605085 127.0.0.1:57415 127.0.0.1:57433 3333535360 12 1e000000e9260b0000000000 .....&...... +7412 17.872797966 127.0.0.1:57415 127.0.0.1:57433 3333535372 30 1a00000055ceff62b21b3a50010003000000bf9e1f000000000000000000 ....U..b..:P.................. +7414 17.873126268 127.0.0.1:57433 127.0.0.1:57415 377470787 12 ffffffffe9260b0000000000 .....&...... +7416 17.873533726 127.0.0.1:57433 127.0.0.1:57415 377470799 12 1a000000f8000b0000000000 ............ +7418 17.873677492 127.0.0.1:57433 127.0.0.1:57415 377470811 26 16000000bf9e1f00000000000100030000000000000000000000 .......................... +7420 17.873925447 127.0.0.1:57415 127.0.0.1:57433 3333535402 12 fffffffff8000b0000000000 ............ +7428 17.902280569 127.0.0.1:57415 127.0.0.1:57433 3333535414 12 1a000000ea260b0000000000 .....&...... +7430 17.902525902 127.0.0.1:57415 127.0.0.1:57433 3333535426 26 16000000548f6340e25e3140010003000000c19e1f0000000000 ....T.c@.^1@.............. +7432 17.902850628 127.0.0.1:57433 127.0.0.1:57415 377470837 12 ffffffffea260b0000000000 .....&...... +7434 17.903294802 127.0.0.1:57433 127.0.0.1:57415 377470849 12 16000000f9000b0000000000 ............ +7436 17.903452635 127.0.0.1:57433 127.0.0.1:57415 377470861 22 12000000c19e1f000000000001000300000000000000 ...................... +7438 17.903756380 127.0.0.1:57415 127.0.0.1:57433 3333535452 12 fffffffff9000b0000000000 ............ +7441 17.921163797 127.0.0.1:57415 127.0.0.1:57433 3333535464 12 feffffff2844010016440100 ....(D...D.. +7450 18.004812479 127.0.0.1:57415 127.0.0.1:57433 3333535476 12 1a000000eb260b0000000000 .....&...... +7452 18.004981041 127.0.0.1:57415 127.0.0.1:57433 3333535488 26 16000000548f6340e25e3140010003000000c39e1f0000000000 ....T.c@.^1@.............. +7454 18.005357504 127.0.0.1:57433 127.0.0.1:57415 377470883 12 ffffffffeb260b0000000000 .....&...... +7456 18.005818844 127.0.0.1:57433 127.0.0.1:57415 377470895 12 16000000fa000b0000000000 ............ +7458 18.005978346 127.0.0.1:57433 127.0.0.1:57415 377470907 22 12000000c39e1f000000000001000300000000000000 ...................... +7460 18.006330252 127.0.0.1:57415 127.0.0.1:57433 3333535514 12 fffffffffa000b0000000000 ............ +7462 18.107617140 127.0.0.1:57415 127.0.0.1:57433 3333535526 12 1a000000ec260b0000000000 .....&...... +7464 18.107829094 127.0.0.1:57415 127.0.0.1:57433 3333535538 26 16000000548f6340e25e3140010003000000c59e1f0000000000 ....T.c@.^1@.............. +7466 18.108252525 127.0.0.1:57433 127.0.0.1:57415 377470929 12 ffffffffec260b0000000000 .....&...... +7468 18.108848333 127.0.0.1:57433 127.0.0.1:57415 377470941 12 16000000fb000b0000000000 ............ +7470 18.109083652 127.0.0.1:57433 127.0.0.1:57415 377470953 22 12000000c59e1f000000000001000300000000000000 ...................... +7472 18.109287739 127.0.0.1:57415 127.0.0.1:57433 3333535564 12 fffffffffb000b0000000000 ............ +7474 18.165744543 127.0.0.1:57433 127.0.0.1:57415 377470975 12 feffffff1744010028440100 .....D..(D.. +7482 18.174975395 127.0.0.1:57415 127.0.0.1:57433 3333535576 12 22000000ed260b0000000000 "....&...... +7484 18.175155878 127.0.0.1:57415 127.0.0.1:57433 3333535588 34 1e0000001c2118d0c46f33bb010003000000711302000000000006d425c39d01 .....!...o3.......q.........%..... +7486 18.175272703 127.0.0.1:57415 127.0.0.1:57433 3333535622 12 43000000ee260b0000000000 C....&...... +7488 18.175356150 127.0.0.1:57415 127.0.0.1:57433 3333535634 67 3f000000980433cb0cb47c38010003000000010000000071130200000000003d ?.....3...|8...........q.......=B.....&......... +7489 18.175405264 127.0.0.1:57433 127.0.0.1:57415 377470987 12 ffffffffed260b0000000000 .....&...... +7490 18.175501823 127.0.0.1:57433 127.0.0.1:57415 377470999 12 ffffffffee260b0000000000 .....&...... +7493 18.177521944 127.0.0.1:57433 127.0.0.1:57415 377471011 12 34000000fc000b0000000000 4........... +7495 18.177666187 127.0.0.1:57433 127.0.0.1:57415 377471023 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....q...........=. +7497 18.177947283 127.0.0.1:57415 127.0.0.1:57433 3333535701 12 fffffffffc000b0000000000 ............ +7498 18.178900957 127.0.0.1:57415 127.0.0.1:57433 3333535713 12 1e000000ef260b0000000000 .....&...... +7499 18.179041624 127.0.0.1:57415 127.0.0.1:57433 3333535725 30 1a00000055ceff62b21b3a50010003000000c79e1f000000000000000000 ....U..b..:P.................. +7500 18.179273844 127.0.0.1:57433 127.0.0.1:57415 377471075 12 ffffffffef260b0000000000 .....&...... +7502 18.179687262 127.0.0.1:57433 127.0.0.1:57415 377471087 12 1a000000fd000b0000000000 ............ +7504 18.179844141 127.0.0.1:57433 127.0.0.1:57415 377471099 26 16000000c79e1f00000000000100030000000000000000000000 .......................... +7506 18.180124044 127.0.0.1:57415 127.0.0.1:57433 3333535755 12 fffffffffd000b0000000000 ............ +7538 18.210577488 127.0.0.1:57415 127.0.0.1:57433 3333535767 12 1a000000f0260b0000000000 .....&...... +7540 18.210746050 127.0.0.1:57415 127.0.0.1:57433 3333535779 26 16000000548f6340e25e3140010003000000c99e1f0000000000 ....T.c@.^1@.............. +7542 18.211102247 127.0.0.1:57433 127.0.0.1:57415 377471125 12 fffffffff0260b0000000000 .....&...... +7544 18.211862803 127.0.0.1:57433 127.0.0.1:57415 377471137 12 16000000fe000b0000000000 ............ +7546 18.212042809 127.0.0.1:57433 127.0.0.1:57415 377471149 22 12000000c99e1f000000000001000300000000000000 ...................... +7548 18.212381840 127.0.0.1:57415 127.0.0.1:57433 3333535805 12 fffffffffe000b0000000000 ............ +7552 18.315026522 127.0.0.1:57415 127.0.0.1:57433 3333535817 12 1a000000f1260b0000000000 .....&...... +7554 18.315207005 127.0.0.1:57415 127.0.0.1:57433 3333535829 26 16000000548f6340e25e3140010003000000cb9e1f0000000000 ....T.c@.^1@.............. +7556 18.315535069 127.0.0.1:57433 127.0.0.1:57415 377471171 12 fffffffff1260b0000000000 .....&...... +7558 18.316075802 127.0.0.1:57433 127.0.0.1:57415 377471183 12 16000000ff000b0000000000 ............ +7560 18.316231251 127.0.0.1:57433 127.0.0.1:57415 377471195 22 12000000cb9e1f000000000001000300000000000000 ...................... +7562 18.316513300 127.0.0.1:57415 127.0.0.1:57433 3333535855 12 ffffffffff000b0000000000 ............ +7574 18.418343067 127.0.0.1:57415 127.0.0.1:57433 3333535867 12 1a000000f2260b0000000000 .....&...... +7576 18.418543816 127.0.0.1:57415 127.0.0.1:57433 3333535879 26 16000000548f6340e25e3140010003000000cd9e1f0000000000 ....T.c@.^1@.............. +7578 18.418898106 127.0.0.1:57433 127.0.0.1:57415 377471217 12 fffffffff2260b0000000000 .....&...... +7580 18.419789791 127.0.0.1:57433 127.0.0.1:57415 377471229 12 1600000000010b0000000000 ............ +7582 18.419908285 127.0.0.1:57433 127.0.0.1:57415 377471241 22 12000000cd9e1f000000000001000300000000000000 ...................... +7584 18.420207500 127.0.0.1:57415 127.0.0.1:57433 3333535905 12 ffffffff00010b0000000000 ............ +7586 18.421889782 127.0.0.1:57415 127.0.0.1:57433 3333535917 12 feffffff2944010017440100 ....)D...D.. +7592 18.481440783 127.0.0.1:57415 127.0.0.1:57433 3333535929 12 22000000f3260b0000000000 "....&...... +7594 18.481679916 127.0.0.1:57415 127.0.0.1:57433 3333535941 34 1e0000001c2118d0c46f33bb010003000000721302000000000038d525c39d01 .....!...o3.......r.......8.%..... +7596 18.481828928 127.0.0.1:57415 127.0.0.1:57433 3333535975 12 43000000f4260b0000000000 C....&...... +7598 18.481917381 127.0.0.1:57415 127.0.0.1:57433 3333535987 67 3f000000980433cb0cb47c38010003000000010000000072130200000000003d ?.....3...|8...........r.......=B.....&......... +7599 18.481976509 127.0.0.1:57433 127.0.0.1:57415 377471263 12 fffffffff3260b0000000000 .....&...... +7602 18.482185602 127.0.0.1:57433 127.0.0.1:57415 377471275 12 fffffffff4260b0000000000 .....&...... +7604 18.483167171 127.0.0.1:57433 127.0.0.1:57415 377471287 12 3400000001010b0000000000 4........... +7606 18.483326435 127.0.0.1:57433 127.0.0.1:57415 377471299 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....r.........|.l. +7608 18.483652353 127.0.0.1:57415 127.0.0.1:57433 3333536054 12 ffffffff01010b0000000000 ............ +7609 18.484408855 127.0.0.1:57415 127.0.0.1:57433 3333536066 12 1e000000f5260b0000000000 .....&...... +7611 18.484616995 127.0.0.1:57415 127.0.0.1:57433 3333536078 30 1a00000055ceff62b21b3a50010003000000cf9e1f000000000000000000 ....U..b..:P.................. +7613 18.484897852 127.0.0.1:57433 127.0.0.1:57415 377471351 12 fffffffff5260b0000000000 .....&...... +7615 18.485224009 127.0.0.1:57433 127.0.0.1:57415 377471363 12 1a00000002010b0000000000 ............ +7617 18.485364676 127.0.0.1:57433 127.0.0.1:57415 377471375 26 16000000cf9e1f00000000000100030000000000000000000000 .......................... +7619 18.485707760 127.0.0.1:57415 127.0.0.1:57433 3333536108 12 ffffffff02010b0000000000 ............ +7623 18.522763729 127.0.0.1:57415 127.0.0.1:57433 3333536120 12 1a000000f6260b0000000000 .....&...... +7625 18.522940874 127.0.0.1:57415 127.0.0.1:57433 3333536132 26 16000000548f6340e25e3140010003000000d19e1f0000000000 ....T.c@.^1@.............. +7627 18.523225784 127.0.0.1:57433 127.0.0.1:57415 377471401 12 fffffffff6260b0000000000 .....&...... +7629 18.523728371 127.0.0.1:57433 127.0.0.1:57415 377471413 12 1600000003010b0000000000 ............ +7631 18.523881674 127.0.0.1:57433 127.0.0.1:57415 377471425 22 12000000d19e1f000000000001000300000000000000 ...................... +7633 18.524137020 127.0.0.1:57415 127.0.0.1:57433 3333536158 12 ffffffff03010b0000000000 ............ +7666 18.627037525 127.0.0.1:57415 127.0.0.1:57433 3333536170 12 1a000000f7260b0000000000 .....&...... +7668 18.627208948 127.0.0.1:57415 127.0.0.1:57433 3333536182 26 16000000548f6340e25e3140010003000000d39e1f0000000000 ....T.c@.^1@.............. +7670 18.627557755 127.0.0.1:57433 127.0.0.1:57415 377471447 12 fffffffff7260b0000000000 .....&...... +7672 18.628031731 127.0.0.1:57433 127.0.0.1:57415 377471459 12 1600000004010b0000000000 ............ +7674 18.628181934 127.0.0.1:57433 127.0.0.1:57415 377471471 22 12000000d39e1f000000000001000300000000000000 ...................... +7676 18.628468037 127.0.0.1:57415 127.0.0.1:57433 3333536208 12 ffffffff04010b0000000000 ............ +7685 18.666534185 127.0.0.1:57433 127.0.0.1:57415 377471493 12 feffffff1844010029440100 .....D..)D.. +7695 18.730581045 127.0.0.1:57415 127.0.0.1:57433 3333536220 12 1a000000f8260b0000000000 .....&...... +7697 18.730809450 127.0.0.1:57415 127.0.0.1:57433 3333536232 26 16000000548f6340e25e3140010003000000d59e1f0000000000 ....T.c@.^1@.............. +7699 18.731155634 127.0.0.1:57433 127.0.0.1:57415 377471505 12 fffffffff8260b0000000000 .....&...... +7703 18.731784344 127.0.0.1:57433 127.0.0.1:57415 377471517 12 1600000005010b0000000000 ............ +7705 18.731978416 127.0.0.1:57433 127.0.0.1:57415 377471529 22 12000000d59e1f000000000001000300000000000000 ...................... +7707 18.732244968 127.0.0.1:57415 127.0.0.1:57433 3333536258 12 ffffffff05010b0000000000 ............ +7721 18.787012100 127.0.0.1:57415 127.0.0.1:57433 3333536270 12 22000000f9260b0000000000 "....&...... +7723 18.787206411 127.0.0.1:57415 127.0.0.1:57433 3333536282 34 1e0000001c2118d0c46f33bb01000300000073130200000000006ad625c39d01 .....!...o3.......s.......j.%..... +7725 18.787390471 127.0.0.1:57415 127.0.0.1:57433 3333536316 12 43000000fa260b0000000000 C....&...... +7727 18.787473440 127.0.0.1:57433 127.0.0.1:57415 377471551 12 fffffffff9260b0000000000 .....&...... +7729 18.787675142 127.0.0.1:57415 127.0.0.1:57433 3333536328 67 3f000000980433cb0cb47c38010003000000010000000073130200000000003d ?.....3...|8...........s.......=B.....&......... +7731 18.787991524 127.0.0.1:57433 127.0.0.1:57415 377471563 12 fffffffffa260b0000000000 .....&...... +7733 18.789002657 127.0.0.1:57433 127.0.0.1:57415 377471575 12 3400000006010b0000000000 4........... +7735 18.789164066 127.0.0.1:57433 127.0.0.1:57415 377471587 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....s..........4.. +7737 18.789435863 127.0.0.1:57415 127.0.0.1:57433 3333536395 12 ffffffff06010b0000000000 ............ +7739 18.790487766 127.0.0.1:57415 127.0.0.1:57433 3333536407 12 1e000000fb260b0000000000 .....&...... +7741 18.790633678 127.0.0.1:57415 127.0.0.1:57433 3333536419 30 1a00000055ceff62b21b3a50010003000000d79e1f000000000000000000 ....U..b..:P.................. +7743 18.790917397 127.0.0.1:57433 127.0.0.1:57415 377471639 12 fffffffffb260b0000000000 .....&...... +7745 18.791292191 127.0.0.1:57433 127.0.0.1:57415 377471651 12 1a00000007010b0000000000 ............ +7747 18.791448355 127.0.0.1:57433 127.0.0.1:57415 377471663 26 16000000d79e1f00000000000100030000000000000000000000 .......................... +7749 18.791718960 127.0.0.1:57415 127.0.0.1:57433 3333536449 12 ffffffff07010b0000000000 ............ +7751 18.834356785 127.0.0.1:57415 127.0.0.1:57433 3333536461 12 1a000000fc260b0000000000 .....&...... +7753 18.834578514 127.0.0.1:57415 127.0.0.1:57433 3333536473 26 16000000548f6340e25e3140010003000000d99e1f0000000000 ....T.c@.^1@.............. +7755 18.834998131 127.0.0.1:57433 127.0.0.1:57415 377471689 12 fffffffffc260b0000000000 .....&...... +7757 18.835354567 127.0.0.1:57433 127.0.0.1:57415 377471701 12 1600000008010b0000000000 ............ +7759 18.835510492 127.0.0.1:57433 127.0.0.1:57415 377471713 22 12000000d99e1f000000000001000300000000000000 ...................... +7761 18.835739136 127.0.0.1:57415 127.0.0.1:57433 3333536499 12 ffffffff08010b0000000000 ............ +7797 18.923922062 127.0.0.1:57415 127.0.0.1:57433 3333536511 12 feffffff2a44010018440100 ....*D...D.. +7801 18.937127113 127.0.0.1:57415 127.0.0.1:57433 3333536523 12 1a000000fd260b0000000000 .....&...... +7803 18.937283278 127.0.0.1:57415 127.0.0.1:57433 3333536535 26 16000000548f6340e25e3140010003000000db9e1f0000000000 ....T.c@.^1@.............. +7805 18.937562704 127.0.0.1:57433 127.0.0.1:57415 377471735 12 fffffffffd260b0000000000 .....&...... +7807 18.937998533 127.0.0.1:57433 127.0.0.1:57415 377471747 12 1600000009010b0000000000 ............ +7809 18.938161612 127.0.0.1:57433 127.0.0.1:57415 377471759 22 12000000db9e1f000000000001000300000000000000 ...................... +7811 18.938426971 127.0.0.1:57415 127.0.0.1:57433 3333536561 12 ffffffff09010b0000000000 ............ +7838 19.040563345 127.0.0.1:57415 127.0.0.1:57433 3333536573 12 1a000000fe260b0000000000 .....&...... +7840 19.040857792 127.0.0.1:57415 127.0.0.1:57433 3333536585 26 16000000548f6340e25e3140010003000000dd9e1f0000000000 ....T.c@.^1@.............. +7842 19.041249275 127.0.0.1:57433 127.0.0.1:57415 377471781 12 fffffffffe260b0000000000 .....&...... +7844 19.041675568 127.0.0.1:57433 127.0.0.1:57415 377471793 12 160000000a010b0000000000 ............ +7846 19.041870594 127.0.0.1:57433 127.0.0.1:57415 377471805 22 12000000dd9e1f000000000001000300000000000000 ...................... +7848 19.042064190 127.0.0.1:57415 127.0.0.1:57433 3333536611 12 ffffffff0a010b0000000000 ............ +7867 19.091913223 127.0.0.1:57415 127.0.0.1:57433 3333536623 12 22000000ff260b0000000000 "....&...... +7869 19.092193842 127.0.0.1:57415 127.0.0.1:57433 3333536635 34 1e0000001c2118d0c46f33bb01000300000074130200000000009bd725c39d01 .....!...o3.......t.........%..... +7871 19.092395067 127.0.0.1:57415 127.0.0.1:57433 3333536669 12 4300000000270b0000000000 C....'...... +7873 19.092501879 127.0.0.1:57433 127.0.0.1:57415 377471827 12 ffffffffff260b0000000000 .....&...... +7874 19.092504978 127.0.0.1:57415 127.0.0.1:57433 3333536681 67 3f000000980433cb0cb47c38010003000000010000000074130200000000003d ?.....3...|8...........t.......=B.....&......... +7877 19.092677832 127.0.0.1:57433 127.0.0.1:57415 377471839 12 ffffffff00270b0000000000 .....'...... +7879 19.093911886 127.0.0.1:57433 127.0.0.1:57415 377471851 12 340000000b010b0000000000 4........... +7881 19.094078302 127.0.0.1:57433 127.0.0.1:57415 377471863 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....t............. +7883 19.094348192 127.0.0.1:57415 127.0.0.1:57433 3333536748 12 ffffffff0b010b0000000000 ............ +7885 19.095458746 127.0.0.1:57415 127.0.0.1:57433 3333536760 12 1e00000001270b0000000000 .....'...... +7887 19.095663309 127.0.0.1:57415 127.0.0.1:57433 3333536772 30 1a00000055ceff62b21b3a50010003000000df9e1f000000000000000000 ....U..b..:P.................. +7889 19.096019506 127.0.0.1:57433 127.0.0.1:57415 377471915 12 ffffffff01270b0000000000 .....'...... +7891 19.096383572 127.0.0.1:57433 127.0.0.1:57415 377471927 12 1a0000000c010b0000000000 ............ +7893 19.096545219 127.0.0.1:57433 127.0.0.1:57415 377471939 26 16000000df9e1f00000000000100030000000000000000000000 .......................... +7895 19.096784353 127.0.0.1:57415 127.0.0.1:57433 3333536802 12 ffffffff0c010b0000000000 ............ +7899 19.143379211 127.0.0.1:57415 127.0.0.1:57433 3333536814 12 1a00000002270b0000000000 .....'...... +7901 19.143548965 127.0.0.1:57415 127.0.0.1:57433 3333536826 26 16000000548f6340e25e3140010003000000e19e1f0000000000 ....T.c@.^1@.............. +7903 19.143944979 127.0.0.1:57433 127.0.0.1:57415 377471965 12 ffffffff02270b0000000000 .....'...... +7905 19.144278765 127.0.0.1:57433 127.0.0.1:57415 377471977 12 160000000d010b0000000000 ............ +7907 19.144441605 127.0.0.1:57433 127.0.0.1:57415 377471989 22 12000000e19e1f000000000001000300000000000000 ...................... +7909 19.144762039 127.0.0.1:57415 127.0.0.1:57433 3333536852 12 ffffffff0d010b0000000000 ............ +7913 19.167143345 127.0.0.1:57433 127.0.0.1:57415 377472011 12 feffffff194401002a440100 .....D..*D.. +7934 19.246586084 127.0.0.1:57415 127.0.0.1:57433 3333536864 12 1a00000003270b0000000000 .....'...... +7936 19.246834755 127.0.0.1:57415 127.0.0.1:57433 3333536876 26 16000000548f6340e25e3140010003000000e39e1f0000000000 ....T.c@.^1@.............. +7938 19.247133493 127.0.0.1:57433 127.0.0.1:57415 377472023 12 ffffffff03270b0000000000 .....'...... +7940 19.247507572 127.0.0.1:57433 127.0.0.1:57415 377472035 12 160000000e010b0000000000 ............ +7942 19.247666836 127.0.0.1:57433 127.0.0.1:57415 377472047 22 12000000e39e1f000000000001000300000000000000 ...................... +7944 19.248031855 127.0.0.1:57415 127.0.0.1:57433 3333536902 12 ffffffff0e010b0000000000 ............ +7975 19.350677729 127.0.0.1:57415 127.0.0.1:57433 3333536914 12 1a00000004270b0000000000 .....'...... +7977 19.350852013 127.0.0.1:57415 127.0.0.1:57433 3333536926 26 16000000548f6340e25e3140010003000000e59e1f0000000000 ....T.c@.^1@.............. +7979 19.351158142 127.0.0.1:57433 127.0.0.1:57415 377472069 12 ffffffff04270b0000000000 .....'...... +7981 19.351643085 127.0.0.1:57433 127.0.0.1:57415 377472081 12 160000000f010b0000000000 ............ +7983 19.351786852 127.0.0.1:57433 127.0.0.1:57415 377472093 22 12000000e59e1f000000000001000300000000000000 ...................... +7985 19.352095366 127.0.0.1:57415 127.0.0.1:57433 3333536952 12 ffffffff0f010b0000000000 ............ +7998 19.397325754 127.0.0.1:57415 127.0.0.1:57433 3333536964 12 2200000005270b0000000000 "....'...... +8000 19.397631168 127.0.0.1:57415 127.0.0.1:57433 3333536976 34 1e0000001c2118d0c46f33bb0100030000007513020000000000ccd825c39d01 .....!...o3.......u.........%..... +8002 19.397875071 127.0.0.1:57415 127.0.0.1:57433 3333537010 12 4300000006270b0000000000 C....'...... +8004 19.398023844 127.0.0.1:57433 127.0.0.1:57415 377472115 12 ffffffff05270b0000000000 .....'...... +8005 19.398025274 127.0.0.1:57415 127.0.0.1:57433 3333537022 67 3f000000980433cb0cb47c38010003000000010000000075130200000000003d ?.....3...|8...........u.......=B.....&......... +8008 19.398230076 127.0.0.1:57433 127.0.0.1:57415 377472127 12 ffffffff06270b0000000000 .....'...... +8010 19.399320126 127.0.0.1:57433 127.0.0.1:57415 377472139 12 3400000010010b0000000000 4........... +8012 19.399484873 127.0.0.1:57433 127.0.0.1:57415 377472151 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....u..........W.. +8014 19.399791002 127.0.0.1:57415 127.0.0.1:57433 3333537089 12 ffffffff10010b0000000000 ............ +8018 19.400785446 127.0.0.1:57415 127.0.0.1:57433 3333537101 12 1e00000007270b0000000000 .....'...... +8020 19.401052237 127.0.0.1:57415 127.0.0.1:57433 3333537113 30 1a00000055ceff62b21b3a50010003000000e79e1f000000000000000000 ....U..b..:P.................. +8022 19.401406288 127.0.0.1:57433 127.0.0.1:57415 377472203 12 ffffffff07270b0000000000 .....'...... +8024 19.402740479 127.0.0.1:57433 127.0.0.1:57415 377472215 12 1a00000011010b0000000000 ............ +8026 19.402891874 127.0.0.1:57433 127.0.0.1:57415 377472227 26 16000000e79e1f00000000000100030000000000000000000000 .......................... +8029 19.403187513 127.0.0.1:57415 127.0.0.1:57433 3333537143 12 ffffffff11010b0000000000 ............ +8036 19.426135778 127.0.0.1:57415 127.0.0.1:57433 3333537155 12 feffffff2b44010019440100 ....+D...D.. +8050 19.454412699 127.0.0.1:57415 127.0.0.1:57433 3333537167 12 1a00000008270b0000000000 .....'...... +8052 19.454578400 127.0.0.1:57415 127.0.0.1:57433 3333537179 26 16000000548f6340e25e3140010003000000e99e1f0000000000 ....T.c@.^1@.............. +8054 19.454889774 127.0.0.1:57433 127.0.0.1:57415 377472253 12 ffffffff08270b0000000000 .....'...... +8056 19.455305338 127.0.0.1:57433 127.0.0.1:57415 377472265 12 1600000012010b0000000000 ............ +8058 19.455487251 127.0.0.1:57433 127.0.0.1:57415 377472277 22 12000000e99e1f000000000001000300000000000000 ...................... +8060 19.455761194 127.0.0.1:57415 127.0.0.1:57433 3333537205 12 ffffffff12010b0000000000 ............ +8101 19.557791710 127.0.0.1:57415 127.0.0.1:57433 3333537217 12 1a00000009270b0000000000 .....'...... +8103 19.558049440 127.0.0.1:57415 127.0.0.1:57433 3333537229 26 16000000548f6340e25e3140010003000000eb9e1f0000000000 ....T.c@.^1@.............. +8105 19.558370352 127.0.0.1:57433 127.0.0.1:57415 377472299 12 ffffffff09270b0000000000 .....'...... +8107 19.558821917 127.0.0.1:57433 127.0.0.1:57415 377472311 12 1600000013010b0000000000 ............ +8109 19.559052944 127.0.0.1:57433 127.0.0.1:57415 377472323 22 12000000eb9e1f000000000001000300000000000000 ...................... +8111 19.559409380 127.0.0.1:57415 127.0.0.1:57433 3333537255 12 ffffffff13010b0000000000 ............ +8160 19.660565853 127.0.0.1:57415 127.0.0.1:57433 3333537267 12 1a0000000a270b0000000000 .....'...... +8161 19.660577059 127.0.0.1:57415 127.0.0.1:57433 3333537279 26 16000000548f6340e25e3140010003000000ed9e1f0000000000 ....T.c@.^1@.............. +8165 19.660942554 127.0.0.1:57433 127.0.0.1:57415 377472345 12 ffffffff0a270b0000000000 .....'...... +8167 19.661334991 127.0.0.1:57433 127.0.0.1:57415 377472357 12 1600000014010b0000000000 ............ +8169 19.661504745 127.0.0.1:57433 127.0.0.1:57415 377472369 22 12000000ed9e1f000000000001000300000000000000 ...................... +8171 19.661775351 127.0.0.1:57415 127.0.0.1:57433 3333537305 12 ffffffff14010b0000000000 ............ +8173 19.667400360 127.0.0.1:57433 127.0.0.1:57415 377472391 12 feffffff1a4401002b440100 .....D..+D.. +8197 19.701836348 127.0.0.1:57415 127.0.0.1:57433 3333537317 12 220000000b270b0000000000 "....'...... +8199 19.701986551 127.0.0.1:57415 127.0.0.1:57433 3333537329 34 1e0000001c2118d0c46f33bb0100030000007613020000000000fdd925c39d01 .....!...o3.......v.........%..... +8201 19.702084780 127.0.0.1:57415 127.0.0.1:57433 3333537363 12 430000000c270b0000000000 C....'...... +8203 19.702169657 127.0.0.1:57415 127.0.0.1:57433 3333537375 67 3f000000980433cb0cb47c38010003000000010000000076130200000000003d ?.....3...|8...........v.......=B.....&......... +8204 19.702213287 127.0.0.1:57433 127.0.0.1:57415 377472403 12 ffffffff0b270b0000000000 .....'...... +8205 19.702310085 127.0.0.1:57433 127.0.0.1:57415 377472415 12 ffffffff0c270b0000000000 .....'...... +8208 19.703302145 127.0.0.1:57433 127.0.0.1:57415 377472427 12 3400000015010b0000000000 4........... +8210 19.703464746 127.0.0.1:57433 127.0.0.1:57415 377472439 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....v.........a.&. +8212 19.703733921 127.0.0.1:57415 127.0.0.1:57433 3333537442 12 ffffffff15010b0000000000 ............ +8214 19.704642057 127.0.0.1:57415 127.0.0.1:57433 3333537454 12 1e0000000d270b0000000000 .....'...... +8216 19.704790354 127.0.0.1:57415 127.0.0.1:57433 3333537466 30 1a00000055ceff62b21b3a50010003000000ef9e1f000000000000000000 ....U..b..:P.................. +8218 19.705109358 127.0.0.1:57433 127.0.0.1:57415 377472491 12 ffffffff0d270b0000000000 .....'...... +8220 19.705520153 127.0.0.1:57433 127.0.0.1:57415 377472503 12 1a00000016010b0000000000 ............ +8222 19.705678463 127.0.0.1:57433 127.0.0.1:57415 377472515 26 16000000ef9e1f00000000000100030000000000000000000000 .......................... +8224 19.706071138 127.0.0.1:57415 127.0.0.1:57433 3333537496 12 ffffffff16010b0000000000 ............ +8253 19.763158560 127.0.0.1:57415 127.0.0.1:57433 3333537508 12 1a0000000e270b0000000000 .....'...... +8255 19.763328552 127.0.0.1:57415 127.0.0.1:57433 3333537520 26 16000000548f6340e25e3140010003000000f19e1f0000000000 ....T.c@.^1@.............. +8257 19.763705254 127.0.0.1:57433 127.0.0.1:57415 377472541 12 ffffffff0e270b0000000000 .....'...... +8259 19.764204741 127.0.0.1:57433 127.0.0.1:57415 377472553 12 1600000017010b0000000000 ............ +8261 19.764351606 127.0.0.1:57433 127.0.0.1:57415 377472565 22 12000000f19e1f000000000001000300000000000000 ...................... +8263 19.764711857 127.0.0.1:57415 127.0.0.1:57433 3333537546 12 ffffffff17010b0000000000 ............ +8352 19.865881681 127.0.0.1:57415 127.0.0.1:57433 3333537558 12 1a0000000f270b0000000000 .....'...... +8354 19.866086006 127.0.0.1:57415 127.0.0.1:57433 3333537570 26 16000000548f6340e25e3140010003000000f39e1f0000000000 ....T.c@.^1@.............. +8356 19.866394043 127.0.0.1:57433 127.0.0.1:57415 377472587 12 ffffffff0f270b0000000000 .....'...... +8361 19.867345333 127.0.0.1:57433 127.0.0.1:57415 377472599 12 1600000018010b0000000000 ............ +8364 19.867507458 127.0.0.1:57433 127.0.0.1:57415 377472611 22 12000000f39e1f000000000001000300000000000000 ...................... +8366 19.867777824 127.0.0.1:57415 127.0.0.1:57433 3333537596 12 ffffffff18010b0000000000 ............ +8411 19.926863432 127.0.0.1:57415 127.0.0.1:57433 3333537608 12 feffffff2c4401001a440100 ....,D...D.. +8436 19.969486713 127.0.0.1:57415 127.0.0.1:57433 3333537620 12 1a00000010270b0000000000 .....'...... +8437 19.969527960 127.0.0.1:57415 127.0.0.1:57433 3333537632 26 16000000548f6340e25e3140010003000000f59e1f0000000000 ....T.c@.^1@.............. +8441 19.969853640 127.0.0.1:57433 127.0.0.1:57415 377472633 12 ffffffff10270b0000000000 .....'...... +8443 19.970293522 127.0.0.1:57433 127.0.0.1:57415 377472645 12 1600000019010b0000000000 ............ +8445 19.970453978 127.0.0.1:57433 127.0.0.1:57415 377472657 22 12000000f59e1f000000000001000300000000000000 ...................... +8447 19.970819473 127.0.0.1:57415 127.0.0.1:57433 3333537658 12 ffffffff19010b0000000000 ............ +8467 20.006353140 127.0.0.1:57415 127.0.0.1:57433 3333537670 12 2200000011270b0000000000 "....'...... +8469 20.006591082 127.0.0.1:57415 127.0.0.1:57433 3333537682 34 1e0000001c2118d0c46f33bb01000300000077130200000000002edb25c39d01 .....!...o3.......w.........%..... +8471 20.006813765 127.0.0.1:57415 127.0.0.1:57433 3333537716 12 4300000012270b0000000000 C....'...... +8473 20.006930351 127.0.0.1:57415 127.0.0.1:57433 3333537728 67 3f000000980433cb0cb47c38010003000000010000000077130200000000003d ?.....3...|8...........w.......=B.....&......... +8474 20.006954193 127.0.0.1:57433 127.0.0.1:57415 377472679 12 ffffffff11270b0000000000 .....'...... +8477 20.007189035 127.0.0.1:57433 127.0.0.1:57415 377472691 12 ffffffff12270b0000000000 .....'...... +8479 20.008443594 127.0.0.1:57433 127.0.0.1:57415 377472703 12 340000001a010b0000000000 4........... +8481 20.008745432 127.0.0.1:57433 127.0.0.1:57415 377472715 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....w..........AU. +8483 20.009253263 127.0.0.1:57415 127.0.0.1:57433 3333537795 12 ffffffff1a010b0000000000 ............ +8484 20.010314226 127.0.0.1:57415 127.0.0.1:57433 3333537807 12 1e00000013270b0000000000 .....'...... +8486 20.010510683 127.0.0.1:57415 127.0.0.1:57433 3333537819 30 1a00000055ceff62b21b3a50010003000000f79e1f000000000000000000 ....U..b..:P.................. +8488 20.010793686 127.0.0.1:57433 127.0.0.1:57415 377472767 12 ffffffff13270b0000000000 .....'...... +8490 20.011188745 127.0.0.1:57433 127.0.0.1:57415 377472779 12 1a0000001b010b0000000000 ............ +8492 20.011369944 127.0.0.1:57433 127.0.0.1:57415 377472791 26 16000000f79e1f00000000000100030000000000000000000000 .......................... +8494 20.011614323 127.0.0.1:57415 127.0.0.1:57433 3333537849 12 ffffffff1b010b0000000000 ............ +8501 20.072507858 127.0.0.1:57415 127.0.0.1:57433 3333537861 12 1a00000014270b0000000000 .....'...... +8503 20.072698116 127.0.0.1:57415 127.0.0.1:57433 3333537873 26 16000000548f6340e25e3140010003000000f99e1f0000000000 ....T.c@.^1@.............. +8505 20.073044538 127.0.0.1:57433 127.0.0.1:57415 377472817 12 ffffffff14270b0000000000 .....'...... +8507 20.073749304 127.0.0.1:57433 127.0.0.1:57415 377472829 12 160000001c010b0000000000 ............ +8509 20.073893547 127.0.0.1:57433 127.0.0.1:57415 377472841 22 12000000f99e1f000000000001000300000000000000 ...................... +8511 20.074166298 127.0.0.1:57415 127.0.0.1:57433 3333537899 12 ffffffff1c010b0000000000 ............ +8530 20.169003487 127.0.0.1:57433 127.0.0.1:57415 377472863 12 feffffff1b4401002c440100 .....D..,D.. +8542 20.176974297 127.0.0.1:57415 127.0.0.1:57433 3333537911 12 1a00000015270b0000000000 .....'...... +8544 20.177164555 127.0.0.1:57415 127.0.0.1:57433 3333537923 26 16000000548f6340e25e3140010003000000fb9e1f0000000000 ....T.c@.^1@.............. +8546 20.177593708 127.0.0.1:57433 127.0.0.1:57415 377472875 12 ffffffff15270b0000000000 .....'...... +8548 20.178072453 127.0.0.1:57433 127.0.0.1:57415 377472887 12 160000001d010b0000000000 ............ +8550 20.178262472 127.0.0.1:57433 127.0.0.1:57415 377472899 22 12000000fb9e1f000000000001000300000000000000 ...................... +8552 20.178479910 127.0.0.1:57415 127.0.0.1:57433 3333537949 12 ffffffff1d010b0000000000 ............ +8581 20.279518604 127.0.0.1:57415 127.0.0.1:57433 3333537961 12 1a00000016270b0000000000 .....'...... +8583 20.279693604 127.0.0.1:57415 127.0.0.1:57433 3333537973 26 16000000548f6340e25e3140010003000000fd9e1f0000000000 ....T.c@.^1@.............. +8585 20.280057430 127.0.0.1:57433 127.0.0.1:57415 377472921 12 ffffffff16270b0000000000 .....'...... +8587 20.280473471 127.0.0.1:57433 127.0.0.1:57415 377472933 12 160000001e010b0000000000 ............ +8589 20.280627728 127.0.0.1:57433 127.0.0.1:57415 377472945 22 12000000fd9e1f000000000001000300000000000000 ...................... +8591 20.280882120 127.0.0.1:57415 127.0.0.1:57433 3333537999 12 ffffffff1e010b0000000000 ............ +8602 20.312988997 127.0.0.1:57415 127.0.0.1:57433 3333538011 12 6500000017270b0000000000 e....'...... +8604 20.313200235 127.0.0.1:57415 127.0.0.1:57433 3333538023 101 1e0000001c2118d0c46f33bb010003000000781302000000000060dc25c39d01 .....!...o3.......x.......`.%.....?.....3...|8.. +8606 20.313508511 127.0.0.1:57433 127.0.0.1:57415 377472967 12 ffffffff17270b0000000000 .....'...... +8610 20.315054417 127.0.0.1:57433 127.0.0.1:57415 377472979 12 340000001f010b0000000000 4........... +8612 20.315231800 127.0.0.1:57433 127.0.0.1:57415 377472991 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....x........."... +8614 20.315456152 127.0.0.1:57415 127.0.0.1:57433 3333538124 12 ffffffff1f010b0000000000 ............ +8616 20.316546679 127.0.0.1:57415 127.0.0.1:57433 3333538136 12 1e00000018270b0000000000 .....'...... +8618 20.316739798 127.0.0.1:57415 127.0.0.1:57433 3333538148 30 1a00000055ceff62b21b3a50010003000000ff9e1f000000000000000000 ....U..b..:P.................. +8620 20.317197561 127.0.0.1:57433 127.0.0.1:57415 377473043 12 ffffffff18270b0000000000 .....'...... +8622 20.317710876 127.0.0.1:57433 127.0.0.1:57415 377473055 12 1a00000020010b0000000000 .... ....... +8624 20.317867041 127.0.0.1:57433 127.0.0.1:57415 377473067 26 16000000ff9e1f00000000000100030000000000000000000000 .......................... +8626 20.318297386 127.0.0.1:57415 127.0.0.1:57433 3333538178 12 ffffffff20010b0000000000 .... ....... +8657 20.382670879 127.0.0.1:57415 127.0.0.1:57433 3333538190 12 1a00000019270b0000000000 .....'...... +8659 20.383088589 127.0.0.1:57415 127.0.0.1:57433 3333538202 26 16000000548f6340e25e3140010003000000019f1f0000000000 ....T.c@.^1@.............. +8661 20.383494377 127.0.0.1:57433 127.0.0.1:57415 377473093 12 ffffffff19270b0000000000 .....'...... +8665 20.383923054 127.0.0.1:57433 127.0.0.1:57415 377473105 12 1600000021010b0000000000 ....!....... +8667 20.384081125 127.0.0.1:57433 127.0.0.1:57415 377473117 22 12000000019f1f000000000001000300000000000000 ...................... +8669 20.384532213 127.0.0.1:57415 127.0.0.1:57433 3333538228 12 ffffffff21010b0000000000 ....!....... +8700 20.427716017 127.0.0.1:57415 127.0.0.1:57433 3333538240 12 feffffff2d4401001b440100 ....-D...D.. +8727 20.486766815 127.0.0.1:57415 127.0.0.1:57433 3333538252 12 1a0000001a270b0000000000 .....'...... +8729 20.486935139 127.0.0.1:57415 127.0.0.1:57433 3333538264 26 16000000548f6340e25e3140010003000000039f1f0000000000 ....T.c@.^1@.............. +8731 20.487336636 127.0.0.1:57433 127.0.0.1:57415 377473139 12 ffffffff1a270b0000000000 .....'...... +8733 20.487835169 127.0.0.1:57433 127.0.0.1:57415 377473151 12 1600000022010b0000000000 ...."....... +8735 20.488005638 127.0.0.1:57433 127.0.0.1:57415 377473163 22 12000000039f1f000000000001000300000000000000 ...................... +8738 20.488280058 127.0.0.1:57415 127.0.0.1:57433 3333538290 12 ffffffff22010b0000000000 ...."....... +8791 20.589975119 127.0.0.1:57415 127.0.0.1:57433 3333538302 12 1a0000001b270b0000000000 .....'...... +8793 20.590144396 127.0.0.1:57415 127.0.0.1:57433 3333538314 26 16000000548f6340e25e3140010003000000059f1f0000000000 ....T.c@.^1@.............. +8795 20.590571642 127.0.0.1:57433 127.0.0.1:57415 377473185 12 ffffffff1b270b0000000000 .....'...... +8797 20.591135263 127.0.0.1:57433 127.0.0.1:57415 377473197 12 1600000023010b0000000000 ....#....... +8799 20.591348410 127.0.0.1:57433 127.0.0.1:57415 377473209 22 12000000059f1f000000000001000300000000000000 ...................... +8801 20.591647863 127.0.0.1:57415 127.0.0.1:57433 3333538340 12 ffffffff23010b0000000000 ....#....... +8811 20.618380070 127.0.0.1:57415 127.0.0.1:57433 3333538352 12 650000001c270b0000000000 e....'...... +8813 20.618564844 127.0.0.1:57415 127.0.0.1:57433 3333538364 101 1e0000001c2118d0c46f33bb010003000000791302000000000091dd25c39d01 .....!...o3.......y.........%.....?.....3...|8.. +8815 20.618871212 127.0.0.1:57433 127.0.0.1:57415 377473231 12 ffffffff1c270b0000000000 .....'...... +8817 20.619780064 127.0.0.1:57433 127.0.0.1:57415 377473243 12 3400000024010b0000000000 4...$....... +8819 20.619930267 127.0.0.1:57433 127.0.0.1:57415 377473255 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....y.........X... +8821 20.620234728 127.0.0.1:57415 127.0.0.1:57433 3333538465 12 ffffffff24010b0000000000 ....$....... +8827 20.621103764 127.0.0.1:57415 127.0.0.1:57433 3333538477 12 1e0000001d270b0000000000 .....'...... +8829 20.621259212 127.0.0.1:57415 127.0.0.1:57433 3333538489 30 1a00000055ceff62b21b3a50010003000000079f1f000000000000000000 ....U..b..:P.................. +8831 20.621765137 127.0.0.1:57433 127.0.0.1:57415 377473307 12 ffffffff1d270b0000000000 .....'...... +8833 20.622811556 127.0.0.1:57433 127.0.0.1:57415 377473319 12 1a00000025010b0000000000 ....%....... +8835 20.622976065 127.0.0.1:57433 127.0.0.1:57415 377473331 26 16000000079f1f00000000000100030000000000000000000000 .......................... +8837 20.623293638 127.0.0.1:57415 127.0.0.1:57433 3333538519 12 ffffffff25010b0000000000 ....%....... +8858 20.670121670 127.0.0.1:57433 127.0.0.1:57415 377473357 12 feffffff1c4401002d440100 .....D..-D.. +8866 20.694521666 127.0.0.1:57415 127.0.0.1:57433 3333538531 12 1a0000001e270b0000000000 .....'...... +8868 20.694729328 127.0.0.1:57415 127.0.0.1:57433 3333538543 26 16000000548f6340e25e3140010003000000099f1f0000000000 ....T.c@.^1@.............. +8870 20.695043564 127.0.0.1:57433 127.0.0.1:57415 377473369 12 ffffffff1e270b0000000000 .....'...... +8872 20.695583820 127.0.0.1:57433 127.0.0.1:57415 377473381 12 1600000026010b0000000000 ....&....... +8874 20.695778370 127.0.0.1:57433 127.0.0.1:57415 377473393 22 12000000099f1f000000000001000300000000000000 ...................... +8876 20.696015596 127.0.0.1:57415 127.0.0.1:57433 3333538569 12 ffffffff26010b0000000000 ....&....... +8901 20.797196150 127.0.0.1:57415 127.0.0.1:57433 3333538581 12 1a0000001f270b0000000000 .....'...... +8903 20.797413588 127.0.0.1:57415 127.0.0.1:57433 3333538593 26 16000000548f6340e25e31400100030000000b9f1f0000000000 ....T.c@.^1@.............. +8905 20.797849894 127.0.0.1:57433 127.0.0.1:57415 377473415 12 ffffffff1f270b0000000000 .....'...... +8907 20.798361301 127.0.0.1:57433 127.0.0.1:57415 377473427 12 1600000027010b0000000000 ....'....... +8909 20.798572302 127.0.0.1:57433 127.0.0.1:57415 377473439 22 120000000b9f1f000000000001000300000000000000 ...................... +8911 20.798855782 127.0.0.1:57415 127.0.0.1:57433 3333538619 12 ffffffff27010b0000000000 ....'....... +8942 20.900254965 127.0.0.1:57415 127.0.0.1:57433 3333538631 12 1a00000020270b0000000000 .... '...... +8944 20.900432587 127.0.0.1:57415 127.0.0.1:57433 3333538643 26 16000000548f6340e25e31400100030000000d9f1f0000000000 ....T.c@.^1@.............. +8946 20.900809526 127.0.0.1:57433 127.0.0.1:57415 377473461 12 ffffffff20270b0000000000 .... '...... +8948 20.901275158 127.0.0.1:57433 127.0.0.1:57415 377473473 12 1600000028010b0000000000 ....(....... +8950 20.901429653 127.0.0.1:57433 127.0.0.1:57415 377473485 22 120000000d9f1f000000000001000300000000000000 ...................... +8952 20.901737928 127.0.0.1:57415 127.0.0.1:57433 3333538669 12 ffffffff28010b0000000000 ....(....... +8968 20.923904419 127.0.0.1:57415 127.0.0.1:57433 3333538681 12 2200000021270b0000000000 "...!'...... +8970 20.924118996 127.0.0.1:57415 127.0.0.1:57433 3333538693 34 1e0000001c2118d0c46f33bb0100030000007a13020000000000c3de25c39d01 .....!...o3.......z.........%..... +8972 20.924277067 127.0.0.1:57415 127.0.0.1:57433 3333538727 12 4300000022270b0000000000 C..."'...... +8974 20.924390316 127.0.0.1:57433 127.0.0.1:57415 377473507 12 ffffffff21270b0000000000 ....!'...... +8975 20.924406528 127.0.0.1:57415 127.0.0.1:57433 3333538739 67 3f000000980433cb0cb47c3801000300000001000000007a130200000000003d ?.....3...|8...........z.......=B.....&......... +8978 20.924625874 127.0.0.1:57433 127.0.0.1:57415 377473519 12 ffffffff22270b0000000000 ...."'...... +8980 20.925654411 127.0.0.1:57433 127.0.0.1:57415 377473531 12 3400000029010b0000000000 4...)....... +8982 20.925806046 127.0.0.1:57433 127.0.0.1:57415 377473543 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....z.........m;.. +8984 20.926113844 127.0.0.1:57415 127.0.0.1:57433 3333538806 12 ffffffff29010b0000000000 ....)....... +8986 20.927054644 127.0.0.1:57415 127.0.0.1:57433 3333538818 12 1e00000023270b0000000000 ....#'...... +8988 20.927277803 127.0.0.1:57415 127.0.0.1:57433 3333538830 30 1a00000055ceff62b21b3a500100030000000f9f1f000000000000000000 ....U..b..:P.................. +8990 20.927648783 127.0.0.1:57433 127.0.0.1:57415 377473595 12 ffffffff23270b0000000000 ....#'...... +8992 20.928193569 127.0.0.1:57433 127.0.0.1:57415 377473607 12 1a0000002a010b0000000000 ....*....... +8996 20.928338051 127.0.0.1:57433 127.0.0.1:57415 377473619 26 160000000f9f1f00000000000100030000000000000000000000 .......................... +9000 20.928580284 127.0.0.1:57415 127.0.0.1:57433 3333538860 12 ffffffff2a010b0000000000 ....*....... +9002 20.929307938 127.0.0.1:57415 127.0.0.1:57433 3333538872 12 feffffff2e4401001c440100 .....D...D.. +9236 21.004455090 127.0.0.1:57415 127.0.0.1:57433 3333538884 12 1a00000024270b0000000000 ....$'...... +9238 21.004628420 127.0.0.1:57415 127.0.0.1:57433 3333538896 26 16000000548f6340e25e3140010003000000119f1f0000000000 ....T.c@.^1@.............. +9240 21.005001783 127.0.0.1:57433 127.0.0.1:57415 377473645 12 ffffffff24270b0000000000 ....$'...... +9244 21.005632401 127.0.0.1:57433 127.0.0.1:57415 377473657 12 160000002b010b0000000000 ....+....... +9246 21.005822659 127.0.0.1:57433 127.0.0.1:57415 377473669 22 12000000119f1f000000000001000300000000000000 ...................... +9248 21.006133318 127.0.0.1:57415 127.0.0.1:57433 3333538922 12 ffffffff2b010b0000000000 ....+....... +9289 21.107584476 127.0.0.1:57415 127.0.0.1:57433 3333538934 12 1a00000025270b0000000000 ....%'...... +9291 21.107794762 127.0.0.1:57415 127.0.0.1:57433 3333538946 26 16000000548f6340e25e3140010003000000139f1f0000000000 ....T.c@.^1@.............. +9293 21.108035564 127.0.0.1:57433 127.0.0.1:57415 377473691 12 ffffffff25270b0000000000 ....%'...... +9295 21.108576536 127.0.0.1:57433 127.0.0.1:57415 377473703 12 160000002c010b0000000000 ....,....... +9297 21.108769178 127.0.0.1:57433 127.0.0.1:57415 377473715 22 12000000139f1f000000000001000300000000000000 ...................... +9299 21.109043360 127.0.0.1:57415 127.0.0.1:57433 3333538972 12 ffffffff2c010b0000000000 ....,....... +9339 21.171154261 127.0.0.1:57433 127.0.0.1:57415 377473737 12 feffffff1d4401002e440100 .....D...D.. +9360 21.212007046 127.0.0.1:57415 127.0.0.1:57433 3333538984 12 1a00000026270b0000000000 ....&'...... +9362 21.212237358 127.0.0.1:57415 127.0.0.1:57433 3333538996 26 16000000548f6340e25e3140010003000000159f1f0000000000 ....T.c@.^1@.............. +9364 21.212558746 127.0.0.1:57433 127.0.0.1:57415 377473749 12 ffffffff26270b0000000000 ....&'...... +9366 21.213056326 127.0.0.1:57433 127.0.0.1:57415 377473761 12 160000002d010b0000000000 ....-....... +9368 21.213223457 127.0.0.1:57433 127.0.0.1:57415 377473773 22 12000000159f1f000000000001000300000000000000 ...................... +9370 21.213489532 127.0.0.1:57415 127.0.0.1:57433 3333539022 12 ffffffff2d010b0000000000 ....-....... +9376 21.229000092 127.0.0.1:57415 127.0.0.1:57433 3333539034 12 2200000027270b0000000000 "...''...... +9378 21.229146481 127.0.0.1:57415 127.0.0.1:57433 3333539046 34 1e0000001c2118d0c46f33bb0100030000007b13020000000000f5df25c39d01 .....!...o3.......{.........%..... +9380 21.229279995 127.0.0.1:57415 127.0.0.1:57433 3333539080 12 4300000028270b0000000000 C...('...... +9382 21.229365110 127.0.0.1:57415 127.0.0.1:57433 3333539092 67 3f000000980433cb0cb47c3801000300000001000000007b130200000000003d ?.....3...|8...........{.......=B.....&......... +9383 21.229439974 127.0.0.1:57433 127.0.0.1:57415 377473795 12 ffffffff27270b0000000000 ....''...... +9385 21.229648352 127.0.0.1:57433 127.0.0.1:57415 377473807 12 ffffffff28270b0000000000 ....('...... +9387 21.230259657 127.0.0.1:57433 127.0.0.1:57415 377473819 12 340000002e010b0000000000 4........... +9389 21.230412960 127.0.0.1:57433 127.0.0.1:57415 377473831 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....{.........0... +9391 21.230787516 127.0.0.1:57415 127.0.0.1:57433 3333539159 12 ffffffff2e010b0000000000 ............ +9393 21.231574774 127.0.0.1:57415 127.0.0.1:57433 3333539171 12 1e00000029270b0000000000 ....)'...... +9395 21.231761932 127.0.0.1:57415 127.0.0.1:57433 3333539183 30 1a00000055ceff62b21b3a50010003000000179f1f000000000000000000 ....U..b..:P.................. +9397 21.232021570 127.0.0.1:57433 127.0.0.1:57415 377473883 12 ffffffff29270b0000000000 ....)'...... +9399 21.232428312 127.0.0.1:57433 127.0.0.1:57415 377473895 12 1a0000002f010b0000000000 ..../....... +9401 21.232570887 127.0.0.1:57433 127.0.0.1:57415 377473907 26 16000000179f1f00000000000100030000000000000000000000 .......................... +9403 21.232839823 127.0.0.1:57415 127.0.0.1:57433 3333539213 12 ffffffff2f010b0000000000 ..../....... +9434 21.314913511 127.0.0.1:57415 127.0.0.1:57433 3333539225 12 1a0000002a270b0000000000 ....*'...... +9436 21.315076590 127.0.0.1:57415 127.0.0.1:57433 3333539237 26 16000000548f6340e25e3140010003000000199f1f0000000000 ....T.c@.^1@.............. +9438 21.315420866 127.0.0.1:57433 127.0.0.1:57415 377473933 12 ffffffff2a270b0000000000 ....*'...... +9440 21.315868855 127.0.0.1:57433 127.0.0.1:57415 377473945 12 1600000030010b0000000000 ....0....... +9442 21.316020966 127.0.0.1:57433 127.0.0.1:57415 377473957 22 12000000199f1f000000000001000300000000000000 ...................... +9444 21.316311359 127.0.0.1:57415 127.0.0.1:57433 3333539263 12 ffffffff30010b0000000000 ....0....... +9454 21.419130087 127.0.0.1:57415 127.0.0.1:57433 3333539275 12 1a0000002b270b0000000000 ....+'...... +9456 21.419298172 127.0.0.1:57415 127.0.0.1:57433 3333539287 26 16000000548f6340e25e31400100030000001b9f1f0000000000 ....T.c@.^1@.............. +9458 21.419663668 127.0.0.1:57433 127.0.0.1:57415 377473979 12 ffffffff2b270b0000000000 ....+'...... +9460 21.420359373 127.0.0.1:57433 127.0.0.1:57415 377473991 12 1600000031010b0000000000 ....1....... +9462 21.420615435 127.0.0.1:57433 127.0.0.1:57415 377474003 22 120000001b9f1f000000000001000300000000000000 ...................... +9464 21.420930386 127.0.0.1:57415 127.0.0.1:57433 3333539313 12 ffffffff31010b0000000000 ....1....... +9466 21.429721832 127.0.0.1:57415 127.0.0.1:57433 3333539325 12 feffffff2f4401001d440100 ..../D...D.. +9497 21.523679733 127.0.0.1:57415 127.0.0.1:57433 3333539337 12 1a0000002c270b0000000000 ....,'...... +9500 21.523922205 127.0.0.1:57415 127.0.0.1:57433 3333539349 26 16000000548f6340e25e31400100030000001d9f1f0000000000 ....T.c@.^1@.............. +9502 21.524159431 127.0.0.1:57433 127.0.0.1:57415 377474025 12 ffffffff2c270b0000000000 ....,'...... +9504 21.524660826 127.0.0.1:57433 127.0.0.1:57415 377474037 12 1600000032010b0000000000 ....2....... +9506 21.524862766 127.0.0.1:57433 127.0.0.1:57415 377474049 22 120000001d9f1f000000000001000300000000000000 ...................... +9508 21.525131464 127.0.0.1:57415 127.0.0.1:57433 3333539375 12 ffffffff32010b0000000000 ....2....... +9512 21.533159971 127.0.0.1:57415 127.0.0.1:57433 3333539387 12 650000002d270b0000000000 e...-'...... +9514 21.533327103 127.0.0.1:57415 127.0.0.1:57433 3333539399 101 1e0000001c2118d0c46f33bb0100030000007c1302000000000024e125c39d01 .....!...o3.......|.......$.%.....?.....3...|8.. +9516 21.533633471 127.0.0.1:57433 127.0.0.1:57415 377474071 12 ffffffff2d270b0000000000 ....-'...... +9518 21.534616709 127.0.0.1:57433 127.0.0.1:57415 377474083 12 3400000033010b0000000000 4...3....... +9520 21.534774303 127.0.0.1:57433 127.0.0.1:57415 377474095 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....|..........(>. +9522 21.535064220 127.0.0.1:57415 127.0.0.1:57433 3333539500 12 ffffffff33010b0000000000 ....3....... +9524 21.536173344 127.0.0.1:57415 127.0.0.1:57433 3333539512 12 1e0000002e270b0000000000 .....'...... +9526 21.536326408 127.0.0.1:57415 127.0.0.1:57433 3333539524 30 1a00000055ceff62b21b3a500100030000001f9f1f000000000000000000 ....U..b..:P.................. +9528 21.536610365 127.0.0.1:57433 127.0.0.1:57415 377474147 12 ffffffff2e270b0000000000 .....'...... +9530 21.537129641 127.0.0.1:57433 127.0.0.1:57415 377474159 12 1a00000034010b0000000000 ....4....... +9532 21.537313938 127.0.0.1:57433 127.0.0.1:57415 377474171 26 160000001f9f1f00000000000100030000000000000000000000 .......................... +9534 21.537523270 127.0.0.1:57415 127.0.0.1:57433 3333539554 12 ffffffff34010b0000000000 ....4....... +9544 21.627556086 127.0.0.1:57415 127.0.0.1:57433 3333539566 12 1a0000002f270b0000000000 ..../'...... +9546 21.627869129 127.0.0.1:57415 127.0.0.1:57433 3333539578 26 16000000548f6340e25e3140010003000000219f1f0000000000 ....T.c@.^1@......!....... +9548 21.628247976 127.0.0.1:57433 127.0.0.1:57415 377474197 12 ffffffff2f270b0000000000 ..../'...... +9550 21.629402161 127.0.0.1:57433 127.0.0.1:57415 377474209 12 1600000035010b0000000000 ....5....... +9552 21.629616499 127.0.0.1:57433 127.0.0.1:57415 377474221 22 12000000219f1f000000000001000300000000000000 ....!................. +9554 21.629954338 127.0.0.1:57415 127.0.0.1:57433 3333539604 12 ffffffff35010b0000000000 ....5....... +9570 21.671685696 127.0.0.1:57433 127.0.0.1:57415 377474243 12 feffffff1e4401002f440100 .....D../D.. +9580 21.732718945 127.0.0.1:57415 127.0.0.1:57433 3333539616 12 1a00000030270b0000000000 ....0'...... +9582 21.732903004 127.0.0.1:57415 127.0.0.1:57433 3333539628 26 16000000548f6340e25e3140010003000000239f1f0000000000 ....T.c@.^1@......#....... +9584 21.733316422 127.0.0.1:57433 127.0.0.1:57415 377474255 12 ffffffff30270b0000000000 ....0'...... +9586 21.733799458 127.0.0.1:57433 127.0.0.1:57415 377474267 12 1600000036010b0000000000 ....6....... +9588 21.733984947 127.0.0.1:57433 127.0.0.1:57415 377474279 22 12000000239f1f000000000001000300000000000000 ....#................. +9590 21.734409571 127.0.0.1:57415 127.0.0.1:57433 3333539654 12 ffffffff36010b0000000000 ....6....... +9594 21.835906267 127.0.0.1:57415 127.0.0.1:57433 3333539666 12 1a00000031270b0000000000 ....1'...... +9596 21.836163521 127.0.0.1:57415 127.0.0.1:57433 3333539678 26 16000000548f6340e25e3140010003000000259f1f0000000000 ....T.c@.^1@......%....... +9598 21.836534739 127.0.0.1:57433 127.0.0.1:57415 377474301 12 ffffffff31270b0000000000 ....1'...... +9600 21.837103128 127.0.0.1:57433 127.0.0.1:57415 377474313 12 1600000037010b0000000000 ....7....... +9602 21.837264299 127.0.0.1:57433 127.0.0.1:57415 377474325 22 12000000259f1f000000000001000300000000000000 ....%................. +9604 21.837547541 127.0.0.1:57415 127.0.0.1:57433 3333539704 12 ffffffff37010b0000000000 ....7....... +9606 21.838095665 127.0.0.1:57415 127.0.0.1:57433 3333539716 12 2200000032270b0000000000 "...2'...... +9608 21.838354111 127.0.0.1:57415 127.0.0.1:57433 3333539728 34 1e0000001c2118d0c46f33bb0100030000007d1302000000000055e225c39d01 .....!...o3.......}.......U.%..... +9610 21.838496923 127.0.0.1:57415 127.0.0.1:57433 3333539762 12 4300000033270b0000000000 C...3'...... +9612 21.838584661 127.0.0.1:57415 127.0.0.1:57433 3333539774 67 3f000000980433cb0cb47c3801000300000001000000007d130200000000003d ?.....3...|8...........}.......=B.....&......... +9613 21.838656902 127.0.0.1:57433 127.0.0.1:57415 377474347 12 ffffffff32270b0000000000 ....2'...... +9615 21.838813782 127.0.0.1:57433 127.0.0.1:57415 377474359 12 ffffffff33270b0000000000 ....3'...... +9617 21.840461254 127.0.0.1:57433 127.0.0.1:57415 377474371 12 3400000038010b0000000000 4...8....... +9619 21.840627670 127.0.0.1:57433 127.0.0.1:57415 377474383 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....}...........l. +9621 21.840874434 127.0.0.1:57415 127.0.0.1:57433 3333539841 12 ffffffff38010b0000000000 ....8....... +9623 21.841747999 127.0.0.1:57415 127.0.0.1:57433 3333539853 12 1e00000034270b0000000000 ....4'...... +9625 21.841905117 127.0.0.1:57415 127.0.0.1:57433 3333539865 30 1a00000055ceff62b21b3a50010003000000279f1f000000000000000000 ....U..b..:P......'........... +9627 21.842270374 127.0.0.1:57433 127.0.0.1:57415 377474435 12 ffffffff34270b0000000000 ....4'...... +9629 21.842631578 127.0.0.1:57433 127.0.0.1:57415 377474447 12 1a00000039010b0000000000 ....9....... +9631 21.842778683 127.0.0.1:57433 127.0.0.1:57415 377474459 26 16000000279f1f00000000000100030000000000000000000000 ....'..................... +9633 21.843006849 127.0.0.1:57415 127.0.0.1:57433 3333539895 12 ffffffff39010b0000000000 ....9....... +9641 21.931230545 127.0.0.1:57415 127.0.0.1:57433 3333539907 12 feffffff304401001e440100 ....0D...D.. +9645 21.939674854 127.0.0.1:57415 127.0.0.1:57433 3333539919 12 1a00000035270b0000000000 ....5'...... +9647 21.939839602 127.0.0.1:57415 127.0.0.1:57433 3333539931 26 16000000548f6340e25e3140010003000000299f1f0000000000 ....T.c@.^1@......)....... +9649 21.940213203 127.0.0.1:57433 127.0.0.1:57415 377474485 12 ffffffff35270b0000000000 ....5'...... +9651 21.940705299 127.0.0.1:57433 127.0.0.1:57415 377474497 12 160000003a010b0000000000 ....:....... +9653 21.940873146 127.0.0.1:57433 127.0.0.1:57415 377474509 22 12000000299f1f000000000001000300000000000000 ....)................. +9655 21.941189528 127.0.0.1:57415 127.0.0.1:57433 3333539957 12 ffffffff3a010b0000000000 ....:....... +604 0.000000000 ::1:59181 ::1:49704 46721832 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +610 0.000518799 ::1:49704 ::1:59181 2996014425 84 05000c03100000005400000002000000d016d016bab900000600343937303400 ........T.................49704..........]...... +612 0.000726461 ::1:59181 ::1:49704 46721948 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +614 0.000934124 ::1:49704 ::1:59181 2996014509 44 05000203100000002c00000002000000140000000000000000000000c079291d ........,....................y).x9cD.X.....A +616 0.001103878 ::1:59181 ::1:49704 46721988 72 05000e03100000004800000003000000d016d016bab900000100000001000100 ........H.......................K....k.F.@.`..Q. +618 0.001258612 ::1:49704 ::1:59181 2996014553 56 05000f03100000003800000003000000d016d016bab900000000000001000000 ........8............................].......... +620 0.001520395 ::1:59181 ::1:49704 46722060 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........y). +622 0.003622770 ::1:49704 ::1:59181 2996014609 28 05000203100000001c00000003000000040000000100000001000000 ............................ +624 0.003805161 ::1:59181 ::1:49704 46722156 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........y). +626 0.003988504 ::1:49704 ::1:59181 2996014637 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +628 0.004252195 ::1:59181 ::1:49704 46722216 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........y). +630 0.004440546 ::1:49704 ::1:59181 2996014729 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +632 0.004625559 ::1:59181 ::1:49704 46722336 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........y). +634 0.004784822 ::1:49704 ::1:59181 2996014761 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +636 0.004947662 ::1:59181 ::1:49704 46722460 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........y). +638 0.005071878 ::1:49704 ::1:59181 2996014793 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +640 0.005231380 ::1:59181 ::1:49704 46722578 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........y). +642 0.005390644 ::1:49704 ::1:59181 2996014825 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +644 0.005548477 ::1:59181 ::1:49704 46722698 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........y). +646 0.005775213 ::1:49704 ::1:59181 2996014857 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +648 0.005932093 ::1:59181 ::1:49704 46722828 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........y). +650 0.006089211 ::1:49704 ::1:59181 2996014889 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +652 0.006242990 ::1:59181 ::1:49704 46722958 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........y). +654 0.006406546 ::1:49704 ::1:59181 2996014921 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +656 0.006592274 ::1:59181 ::1:49704 46723100 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........y). +658 0.006721973 ::1:49704 ::1:59181 2996014953 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +660 0.006876230 ::1:59181 ::1:49704 46723216 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........y). +662 0.007035255 ::1:49704 ::1:59181 2996014985 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +667 0.007192135 ::1:59181 ::1:49704 46723346 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........y). +670 0.007350445 ::1:49704 ::1:59181 2996015017 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +672 0.007504225 ::1:59181 ::1:49704 46723474 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........y). +674 0.007741928 ::1:49704 ::1:59181 2996015049 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +676 0.008338928 ::1:59181 ::1:49704 46723600 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........y). +678 0.008589983 ::1:49704 ::1:59181 2996015081 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +680 0.008839369 ::1:59181 ::1:49704 46723732 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........y). +682 0.009009361 ::1:49704 ::1:59181 2996015113 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +704 0.109627247 ::1:59181 ::1:49704 46723884 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +706 0.109970570 ::1:49704 ::1:59181 2996015145 44 05000203100000002c00000012000000140000000000000000000000e4eb0a01 ........,.......................>]YJ....^..v +708 0.110568762 ::1:59181 ::1:49704 46723924 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K............ +710 0.112491131 ::1:49704 ::1:59181 2996015189 28 05000203100000001c00000013000000040000000100000001000000 ............................ +712 0.112717867 ::1:59181 ::1:49704 46724032 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +714 0.112945795 ::1:49704 ::1:59181 2996015217 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +716 0.113244772 ::1:59181 ::1:49704 46724092 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +718 0.113475561 ::1:49704 ::1:59181 2996015309 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +720 0.113653183 ::1:59181 ::1:49704 46724224 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +722 0.113892317 ::1:49704 ::1:59181 2996015341 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +724 0.114079952 ::1:59181 ::1:49704 46724360 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +726 0.114255905 ::1:49704 ::1:59181 2996015373 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +728 0.114423275 ::1:59181 ::1:49704 46724490 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +730 0.114687681 ::1:49704 ::1:59181 2996015405 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +732 0.114851713 ::1:59181 ::1:49704 46724622 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +734 0.115015268 ::1:49704 ::1:59181 2996015437 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +736 0.115221977 ::1:59181 ::1:49704 46724764 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +738 0.115391254 ::1:49704 ::1:59181 2996015469 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +740 0.115590572 ::1:59181 ::1:49704 46724906 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +742 0.115750313 ::1:49704 ::1:59181 2996015501 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +744 0.115926027 ::1:59181 ::1:49704 46725060 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +746 0.116087675 ::1:49704 ::1:59181 2996015533 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +748 0.116252422 ::1:59181 ::1:49704 46725188 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +750 0.116409302 ::1:49704 ::1:59181 2996015565 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +752 0.116594791 ::1:59181 ::1:49704 46725330 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +754 0.116750956 ::1:49704 ::1:59181 2996015597 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +756 0.116917610 ::1:59181 ::1:49704 46725470 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +758 0.117075920 ::1:49704 ::1:59181 2996015629 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +764 0.134464741 ::1:59181 ::1:49704 46725608 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +766 0.134740114 ::1:49704 ::1:59181 2996015661 44 05000203100000002c00000020000000140000000000000000000000839f2b5a ........,... .................+ZLt.@..D.r... +768 0.134942055 ::1:59181 ::1:49704 46725648 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K..........+Z +770 0.136565685 ::1:49704 ::1:59181 2996015705 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +772 0.136748075 ::1:59181 ::1:49704 46725752 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K..........+Z +774 0.136971951 ::1:49704 ::1:59181 2996015733 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +776 0.137228012 ::1:59181 ::1:49704 46725812 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K..........+Z +778 0.137611866 ::1:49704 ::1:59181 2996015825 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +780 0.137727022 ::1:59181 ::1:49704 46725940 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K..........+Z +782 0.138081551 ::1:49704 ::1:59181 2996015857 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +784 0.138270855 ::1:59181 ::1:49704 46726072 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K..........+Z +786 0.138505459 ::1:49704 ::1:59181 2996015889 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +788 0.138708591 ::1:59181 ::1:49704 46726198 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K..........+Z +790 0.138937473 ::1:49704 ::1:59181 2996015921 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +792 0.139121532 ::1:59181 ::1:49704 46726326 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K..........+Z +794 0.139354944 ::1:49704 ::1:59181 2996015953 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +796 0.139565468 ::1:59181 ::1:49704 46726464 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K..........+Z +798 0.139795303 ::1:49704 ::1:59181 2996015985 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +800 0.139975309 ::1:59181 ::1:49704 46726602 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K..........+Z +802 0.140205860 ::1:49704 ::1:59181 2996016017 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +804 0.140387058 ::1:59181 ::1:49704 46726752 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K..........+Z +806 0.140696764 ::1:49704 ::1:59181 2996016049 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +808 0.140875101 ::1:59181 ::1:49704 46726876 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K..........+Z +810 0.141094923 ::1:49704 ::1:59181 2996016081 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +812 0.141270638 ::1:59181 ::1:49704 46727014 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K..........+Z +814 0.141495705 ::1:49704 ::1:59181 2996016113 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +816 0.141671896 ::1:59181 ::1:49704 46727150 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K..........+Z +818 0.141900063 ::1:49704 ::1:59181 2996016145 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +820 0.142171621 ::1:59181 ::1:49704 46727284 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........+Z +822 0.142407179 ::1:49704 ::1:59181 2996016177 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +824 0.142617702 ::1:59181 ::1:49704 46727424 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K..........+Z +826 0.142854691 ::1:49704 ::1:59181 2996016209 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +868 0.248174667 ::1:59181 ::1:49704 46727570 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +870 0.248469830 ::1:49704 ::1:59181 2996016241 44 05000203100000002c000000300000001400000000000000000000003d2f8ee4 ........,...0...............=/..:8.J....2=.. +872 0.248654604 ::1:59181 ::1:49704 46727610 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........=/.. +874 0.250441313 ::1:49704 ::1:59181 2996016285 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +876 0.250593662 ::1:59181 ::1:49704 46727722 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........=/.. +878 0.250776529 ::1:49704 ::1:59181 2996016313 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +880 0.251013517 ::1:59181 ::1:49704 46727782 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........=/.. +882 0.251256704 ::1:49704 ::1:59181 2996016405 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +884 0.251440763 ::1:59181 ::1:49704 46727918 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........=/.. +886 0.251770496 ::1:49704 ::1:59181 2996016437 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +888 0.251936674 ::1:59181 ::1:49704 46728058 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........=/.. +890 0.252130985 ::1:49704 ::1:59181 2996016469 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +892 0.252283335 ::1:59181 ::1:49704 46728192 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........=/.. +894 0.252550364 ::1:49704 ::1:59181 2996016501 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +896 0.252712727 ::1:59181 ::1:49704 46728328 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........=/.. +898 0.253003597 ::1:49704 ::1:59181 2996016533 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +900 0.253158569 ::1:59181 ::1:49704 46728474 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........=/.. +902 0.253364563 ::1:49704 ::1:59181 2996016565 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +904 0.253548622 ::1:59181 ::1:49704 46728620 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........=/.. +906 0.253728628 ::1:49704 ::1:59181 2996016597 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +908 0.253877401 ::1:59181 ::1:49704 46728778 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........=/.. +910 0.254051447 ::1:49704 ::1:59181 2996016629 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +912 0.254201174 ::1:59181 ::1:49704 46728910 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........=/.. +914 0.254402637 ::1:49704 ::1:59181 2996016661 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +916 0.254557133 ::1:59181 ::1:49704 46729056 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........=/.. +918 0.254729748 ::1:49704 ::1:59181 2996016693 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +920 0.254880428 ::1:59181 ::1:49704 46729200 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........=/.. +922 0.255053043 ::1:49704 ::1:59181 2996016725 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +924 0.255248308 ::1:59181 ::1:49704 46729342 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........=/.. +926 0.255472660 ::1:49704 ::1:59181 2996016757 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +928 0.255633116 ::1:59181 ::1:49704 46729490 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........=/.. +930 0.255818844 ::1:49704 ::1:59181 2996016789 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +970 0.409813166 ::1:59181 ::1:49704 46729644 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +972 0.410073996 ::1:49704 ::1:59181 2996016821 44 05000203100000002c00000040000000140000000000000000000000e96124c4 ........,...@................a$.j.GM.\s$:... +974 0.410259724 ::1:59181 ::1:49704 46729684 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K.........a$. +976 0.412084103 ::1:49704 ::1:59181 2996016865 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +978 0.412265778 ::1:59181 ::1:49704 46729776 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K.........a$. +980 0.412510872 ::1:49704 ::1:59181 2996016893 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +982 0.412749290 ::1:59181 ::1:49704 46729836 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K.........a$. +984 0.412998438 ::1:49704 ::1:59181 2996016985 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +986 0.413155079 ::1:59181 ::1:49704 46729952 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K.........a$. +988 0.413340092 ::1:49704 ::1:59181 2996017017 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +990 0.413496733 ::1:59181 ::1:49704 46730072 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K.........a$. +992 0.413743973 ::1:49704 ::1:59181 2996017049 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +994 0.413908243 ::1:59181 ::1:49704 46730186 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K.........a$. +996 0.414106846 ::1:49704 ::1:59181 2996017081 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +998 0.414263964 ::1:59181 ::1:49704 46730302 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K.........a$. +1000 0.414489508 ::1:49704 ::1:59181 2996017113 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1002 0.414639235 ::1:59181 ::1:49704 46730428 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K.........a$. +1004 0.414819717 ::1:49704 ::1:59181 2996017145 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1006 0.414971352 ::1:59181 ::1:49704 46730554 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K.........a$. +1008 0.415149689 ::1:49704 ::1:59181 2996017177 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1010 0.415312767 ::1:59181 ::1:49704 46730692 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K.........a$. +1012 0.415639639 ::1:49704 ::1:59181 2996017209 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1014 0.415833235 ::1:59181 ::1:49704 46730804 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K.........a$. +1016 0.416032553 ::1:49704 ::1:59181 2996017241 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1018 0.416189432 ::1:59181 ::1:49704 46730930 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K.........a$. +1020 0.416367769 ::1:49704 ::1:59181 2996017273 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1022 0.416538715 ::1:59181 ::1:49704 46731054 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K.........a$. +1024 0.416743040 ::1:49704 ::1:59181 2996017305 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1026 0.416938543 ::1:59181 ::1:49704 46731176 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K.........a$. +1028 0.417117834 ::1:49704 ::1:59181 2996017337 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1030 0.417276144 ::1:59181 ::1:49704 46731304 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K.........a$. +1032 0.417490244 ::1:49704 ::1:59181 2996017369 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1034 0.417693853 ::1:59181 ::1:49704 46731438 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K.........a$. +1036 0.418019056 ::1:49704 ::1:59181 2996017401 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1038 0.418227673 ::1:59181 ::1:49704 46731568 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K.........a$. +1040 0.418484211 ::1:49704 ::1:59181 2996017433 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +4235 6.888025045 ::1:59181 ::1:49704 46731696 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +4237 6.888343573 ::1:49704 ::1:59181 2996017465 44 05000203100000002c0000005200000014000000000000000000000000f06477 ........,...R.................dwK..C.}...... +4239 6.888527155 ::1:59181 ::1:49704 46731736 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K..........dw +4241 6.890509129 ::1:49704 ::1:59181 2996017509 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +4242 6.890657663 ::1:59181 ::1:49704 46731836 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K..........dw +4244 6.890875578 ::1:49704 ::1:59181 2996017537 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +4246 6.891103268 ::1:59181 ::1:49704 46731896 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K..........dw +4248 6.891325235 ::1:49704 ::1:59181 2996017629 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +4250 6.891503572 ::1:59181 ::1:49704 46732020 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K..........dw +4252 6.891777515 ::1:49704 ::1:59181 2996017661 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +4254 6.891946316 ::1:59181 ::1:49704 46732148 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K..........dw +4256 6.892122984 ::1:49704 ::1:59181 2996017693 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +4258 6.892290115 ::1:59181 ::1:49704 46732270 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K..........dw +4260 6.892457962 ::1:49704 ::1:59181 2996017725 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +4262 6.892673254 ::1:59181 ::1:49704 46732394 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K..........dw +4264 6.892839432 ::1:49704 ::1:59181 2996017757 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +4266 6.893003941 ::1:59181 ::1:49704 46732528 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K..........dw +4268 6.893170118 ::1:49704 ::1:59181 2996017789 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +4270 6.893332481 ::1:59181 ::1:49704 46732662 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K..........dw +4272 6.893498659 ::1:49704 ::1:59181 2996017821 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +4274 6.893711090 ::1:59181 ::1:49704 46732808 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K..........dw +4276 6.893877745 ::1:49704 ::1:59181 2996017853 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +4278 6.894040823 ::1:59181 ::1:49704 46732928 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K..........dw +4280 6.894207954 ::1:49704 ::1:59181 2996017885 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +4282 6.894368887 ::1:59181 ::1:49704 46733062 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K..........dw +4284 6.894533157 ::1:49704 ::1:59181 2996017917 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +4286 6.894744158 ::1:59181 ::1:49704 46733194 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K..........dw +4288 6.894911289 ::1:49704 ::1:59181 2996017949 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +4290 6.895121098 ::1:59181 ::1:49704 46733324 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K..........dw +4292 6.895290375 ::1:49704 ::1:59181 2996017981 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +4294 6.895462751 ::1:59181 ::1:49704 46733468 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K..........dw +4296 6.895663500 ::1:49704 ::1:59181 2996018013 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +4298 6.895835161 ::1:59181 ::1:49704 46733616 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K..........dw +4300 6.896003485 ::1:49704 ::1:59181 2996018045 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +4302 6.896242380 ::1:59181 ::1:49704 46733762 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K..........dw +4304 6.896412373 ::1:49704 ::1:59181 2996018077 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +4342 6.972353220 ::1:59181 ::1:49704 46733920 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +4344 6.972649574 ::1:49704 ::1:59181 2996018109 44 05000203100000002c00000064000000140000000000000000000000fc863851 ........,...d.................8Q...L.^.V.A|[ +4346 6.972784758 ::1:59181 ::1:49704 46733960 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........8Q +4348 6.974741459 ::1:49704 ::1:59181 2996018153 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +4350 6.974924088 ::1:59181 ::1:49704 46734044 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........8Q +4352 6.975110769 ::1:49704 ::1:59181 2996018181 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +4354 6.975388050 ::1:59181 ::1:49704 46734104 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........8Q +4356 6.975658178 ::1:49704 ::1:59181 2996018273 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +4358 6.975831509 ::1:59181 ::1:49704 46734212 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........8Q +4360 6.976003885 ::1:49704 ::1:59181 2996018305 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +4362 6.976166248 ::1:59181 ::1:49704 46734324 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........8Q +4364 6.976329327 ::1:49704 ::1:59181 2996018337 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +4366 6.976503849 ::1:59181 ::1:49704 46734430 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........8Q +4368 6.976759434 ::1:49704 ::1:59181 2996018369 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +4370 6.976914406 ::1:59181 ::1:49704 46734538 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........8Q +4372 6.977135658 ::1:49704 ::1:59181 2996018401 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +4374 6.977318764 ::1:59181 ::1:49704 46734656 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........8Q +4376 6.977490664 ::1:49704 ::1:59181 2996018433 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +4378 6.977700710 ::1:59181 ::1:49704 46734774 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........8Q +4380 6.977861643 ::1:49704 ::1:59181 2996018465 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +4382 6.978017569 ::1:59181 ::1:49704 46734904 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........8Q +4384 6.978175879 ::1:49704 ::1:59181 2996018497 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +4386 6.978329182 ::1:59181 ::1:49704 46735008 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........8Q +4388 6.978486300 ::1:49704 ::1:59181 2996018529 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +4390 6.978668213 ::1:59181 ::1:49704 46735126 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........8Q +4392 6.978837729 ::1:49704 ::1:59181 2996018561 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +4394 6.979043722 ::1:59181 ::1:49704 46735242 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........8Q +4396 6.979225159 ::1:49704 ::1:59181 2996018593 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +4398 6.979769468 ::1:59181 ::1:49704 46735356 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........8Q +4400 6.979928732 ::1:49704 ::1:59181 2996018625 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +4402 6.980154514 ::1:59181 ::1:49704 46735484 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........8Q +4404 6.980321646 ::1:49704 ::1:59181 2996018657 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +4406 6.980532408 ::1:59181 ::1:49704 46735604 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........8Q +4408 6.980763435 ::1:49704 ::1:59181 2996018689 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +4410 6.980957270 ::1:59181 ::1:49704 46735724 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........8Q +4412 6.981121302 ::1:49704 ::1:59181 2996018721 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +4414 6.981315136 ::1:59181 ::1:49704 46735846 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........8Q +4416 6.981477976 ::1:49704 ::1:59181 2996018753 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +4418 6.981781721 ::1:59181 ::1:49704 46735980 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........8Q +4420 6.981945992 ::1:49704 ::1:59181 2996018785 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +4422 6.982142925 ::1:59181 ::1:49704 46736112 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........8Q +4424 6.982305288 ::1:49704 ::1:59181 2996018817 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +4426 6.982503414 ::1:59181 ::1:49704 46736242 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........8Q +4428 6.982756615 ::1:49704 ::1:59181 2996018849 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +4430 6.982959270 ::1:59181 ::1:49704 46736380 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........8Q +4432 6.983120918 ::1:49704 ::1:59181 2996018881 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +4434 6.983337641 ::1:59181 ::1:49704 46736524 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........8Q +4436 6.983499050 ::1:49704 ::1:59181 2996018913 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +4438 6.983754635 ::1:59181 ::1:49704 46736668 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........8Q +4440 6.983925819 ::1:49704 ::1:59181 2996018945 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +4442 6.984121084 ::1:59181 ::1:49704 46736784 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........8Q +4444 6.984284163 ::1:49704 ::1:59181 2996018977 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +4446 6.984475136 ::1:59181 ::1:49704 46736914 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........8Q +4448 6.984687090 ::1:49704 ::1:59181 2996019009 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +4450 6.984878063 ::1:59181 ::1:49704 46737052 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........8Q +4452 6.985042810 ::1:49704 ::1:59181 2996019041 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +4454 6.985236168 ::1:59181 ::1:49704 46737182 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........8Q +4456 6.985396624 ::1:49704 ::1:59181 2996019073 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +4458 6.985586882 ::1:59181 ::1:49704 46737304 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........8Q +4460 6.985798120 ::1:49704 ::1:59181 2996019105 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +4462 6.986017227 ::1:59181 ::1:49704 46737426 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........8Q +4464 6.986187220 ::1:49704 ::1:59181 2996019137 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +4466 6.986399651 ::1:59181 ::1:49704 46737560 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........8Q +4468 6.986563206 ::1:49704 ::1:59181 2996019169 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +4470 6.986805677 ::1:59181 ::1:49704 46737688 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........8Q +4472 6.986967802 ::1:49704 ::1:59181 2996019201 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +4496 7.020574331 ::1:59181 ::1:49704 46737812 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........8Q +4498 7.020890951 ::1:49704 ::1:59181 2996019233 28 05000203100000001c00000085000000040000000100000001000000 ............................ +4534 7.055602551 ::1:59181 ::1:49704 46738328 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4536 7.055826187 ::1:49704 ::1:59181 2996019261 44 05000203100000002c000000860000001400000000000000000000003cd7b60e ........,...................<...y..C..ueW3E. +4538 7.056030035 ::1:59181 ::1:49704 46738368 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........<... +4540 7.058031321 ::1:49704 ::1:59181 2996019305 28 05000203100000001c00000087000000040000000100000001000000 ............................ +4542 7.058225632 ::1:59181 ::1:49704 46738480 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........<... +4544 7.058421612 ::1:49704 ::1:59181 2996019333 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4546 7.058688879 ::1:59181 ::1:49704 46738540 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........<... +4548 7.058933258 ::1:49704 ::1:59181 2996019425 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +4550 7.059120655 ::1:59181 ::1:49704 46738676 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........<... +4552 7.059313774 ::1:49704 ::1:59181 2996019457 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +4554 7.059487581 ::1:59181 ::1:49704 46738816 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........<... +4556 7.059719324 ::1:49704 ::1:59181 2996019489 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +4558 7.059887886 ::1:59181 ::1:49704 46738950 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........<... +4560 7.060142756 ::1:49704 ::1:59181 2996019521 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +4562 7.060342312 ::1:59181 ::1:49704 46739086 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4564 7.060634613 ::1:49704 ::1:59181 2996019553 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +4566 7.060839415 ::1:59181 ::1:49704 46739232 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4568 7.060985088 ::1:49704 ::1:59181 2996019585 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +4570 7.061168909 ::1:59181 ::1:49704 46739378 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........<... +4572 7.061435461 ::1:49704 ::1:59181 2996019617 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +4574 7.061692715 ::1:59181 ::1:49704 46739536 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........<... +4576 7.061884880 ::1:49704 ::1:59181 2996019649 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +4578 7.062047482 ::1:59181 ::1:49704 46739668 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4580 7.062242031 ::1:49704 ::1:59181 2996019681 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +4582 7.062441587 ::1:59181 ::1:49704 46739814 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........<... +4584 7.062677145 ::1:49704 ::1:59181 2996019713 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +4586 7.062864304 ::1:59181 ::1:49704 46739958 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........<... +4588 7.063046694 ::1:49704 ::1:59181 2996019745 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +4590 7.063266993 ::1:59181 ::1:49704 46740100 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........<... +4592 7.063482761 ::1:49704 ::1:59181 2996019777 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +4594 7.063683987 ::1:59181 ::1:49704 46740260 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........<... +4596 7.063830137 ::1:49704 ::1:59181 2996019809 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +4598 7.064027548 ::1:59181 ::1:49704 46740416 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........<... +4600 7.064728498 ::1:49704 ::1:59181 2996019841 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +4602 7.064948082 ::1:59181 ::1:49704 46740570 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........<... +4604 7.065134048 ::1:49704 ::1:59181 2996019873 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +4606 7.065331221 ::1:59181 ::1:49704 46740716 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........<... +4608 7.065567970 ::1:49704 ::1:59181 2996019905 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +4610 7.065738201 ::1:59181 ::1:49704 46740870 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........<... +4612 7.065914869 ::1:49704 ::1:59181 2996019937 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +4614 7.066084862 ::1:59181 ::1:49704 46741020 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........<... +4616 7.066259623 ::1:49704 ::1:59181 2996019969 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +4618 7.066428661 ::1:59181 ::1:49704 46741172 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........<... +4620 7.066620588 ::1:49704 ::1:59181 2996020001 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +4622 7.066782475 ::1:59181 ::1:49704 46741312 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........<... +4624 7.066952229 ::1:49704 ::1:59181 2996020033 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +4626 7.067118883 ::1:59181 ::1:49704 46741460 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........<... +4628 7.067289829 ::1:49704 ::1:59181 2996020065 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +4630 7.067478180 ::1:59181 ::1:49704 46741622 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........<... +4632 7.067646265 ::1:49704 ::1:59181 2996020097 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +4634 7.067810059 ::1:59181 ::1:49704 46741794 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........<... +4636 7.067977190 ::1:49704 ::1:59181 2996020129 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +4642 7.075106144 ::1:59181 ::1:49704 46741938 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4644 7.075270891 ::1:49704 ::1:59181 2996020161 44 05000203100000002c000000a0000000140000000000000000000000f5db86ed ........,.......................C..J...].$!. +4646 7.075445175 ::1:59181 ::1:49704 46741978 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K............ +4648 7.077068806 ::1:49704 ::1:59181 2996020205 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +4650 7.077220678 ::1:59181 ::1:49704 46742106 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +4652 7.077393055 ::1:49704 ::1:59181 2996020233 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4654 7.077644825 ::1:59181 ::1:49704 46742166 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +4656 7.077838182 ::1:49704 ::1:59181 2996020325 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +4658 7.077985764 ::1:59181 ::1:49704 46742318 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K............ +4660 7.078161478 ::1:49704 ::1:59181 2996020357 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +4662 7.078316927 ::1:59181 ::1:49704 46742474 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K............ +4664 7.078487873 ::1:49704 ::1:59181 2996020389 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +4666 7.078636646 ::1:59181 ::1:49704 46742624 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +4668 7.078809023 ::1:49704 ::1:59181 2996020421 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +4670 7.078984976 ::1:59181 ::1:49704 46742776 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K............ +4672 7.079160213 ::1:49704 ::1:59181 2996020453 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +4674 7.079319000 ::1:59181 ::1:49704 46742938 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K............ +4676 7.079527140 ::1:49704 ::1:59181 2996020485 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +4678 7.079659939 ::1:59181 ::1:49704 46743100 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K............ +4680 7.079833984 ::1:49704 ::1:59181 2996020517 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +4682 7.080007315 ::1:59181 ::1:49704 46743274 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K............ +4684 7.080188751 ::1:49704 ::1:59181 2996020549 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +4686 7.080349684 ::1:59181 ::1:49704 46743422 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K............ +4688 7.080548763 ::1:49704 ::1:59181 2996020581 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +4690 7.080696106 ::1:59181 ::1:49704 46743584 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K............ +4692 7.080870390 ::1:49704 ::1:59181 2996020613 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +4694 7.081035614 ::1:59181 ::1:49704 46743744 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K............ +4696 7.081211090 ::1:49704 ::1:59181 2996020645 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +4698 7.081456423 ::1:59181 ::1:49704 46743902 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K............ +4700 7.081684351 ::1:49704 ::1:59181 2996020677 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +4702 7.081850767 ::1:59181 ::1:49704 46744072 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K............ +4704 7.082024336 ::1:49704 ::1:59181 2996020709 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +4710 7.087666273 ::1:59181 ::1:49704 46744254 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4712 7.087905407 ::1:49704 ::1:59181 2996020741 44 05000203100000002c000000b00000001400000000000000000000005dcdff08 ........,...................].....ND.. .L... +4714 7.088087797 ::1:59181 ::1:49704 46744294 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K........]... +4716 7.089692354 ::1:49704 ::1:59181 2996020785 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +4718 7.089869976 ::1:59181 ::1:49704 46744390 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........]... +4720 7.090051651 ::1:49704 ::1:59181 2996020813 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4722 7.090294838 ::1:59181 ::1:49704 46744450 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........]... +4724 7.090476274 ::1:49704 ::1:59181 2996020905 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +4726 7.090692282 ::1:59181 ::1:49704 46744570 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........]... +4728 7.090863705 ::1:49704 ::1:59181 2996020937 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +4730 7.091024399 ::1:59181 ::1:49704 46744694 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K........]... +4732 7.091194153 ::1:49704 ::1:59181 2996020969 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +4734 7.091354847 ::1:59181 ::1:49704 46744812 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........]... +4736 7.091577530 ::1:49704 ::1:59181 2996021001 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +4738 7.091746569 ::1:59181 ::1:49704 46744932 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4740 7.091921806 ::1:49704 ::1:59181 2996021033 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +4742 7.092110395 ::1:59181 ::1:49704 46745062 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4744 7.092290878 ::1:49704 ::1:59181 2996021065 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +4746 7.092453241 ::1:59181 ::1:49704 46745192 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........]... +4748 7.092671156 ::1:49704 ::1:59181 2996021097 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +4750 7.092825890 ::1:59181 ::1:49704 46745334 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K........]... +4752 7.092995405 ::1:49704 ::1:59181 2996021129 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +4754 7.093149900 ::1:59181 ::1:49704 46745450 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4756 7.093315125 ::1:49704 ::1:59181 2996021161 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +4758 7.093470335 ::1:59181 ::1:49704 46745580 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........]... +4760 7.093693972 ::1:49704 ::1:59181 2996021193 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +4762 7.093847752 ::1:59181 ::1:49704 46745708 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........]... +4764 7.094015598 ::1:49704 ::1:59181 2996021225 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +4766 7.094215631 ::1:59181 ::1:49704 46745834 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........]... +4768 7.094382524 ::1:49704 ::1:59181 2996021257 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +4770 7.094571114 ::1:59181 ::1:49704 46745960 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........]... +4772 7.094740391 ::1:49704 ::1:59181 2996021289 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +4774 7.094906569 ::1:59181 ::1:49704 46746092 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........]... +4776 7.095073462 ::1:49704 ::1:59181 2996021321 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +4778 7.095237732 ::1:59181 ::1:49704 46746222 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........]... +4780 7.095404625 ::1:49704 ::1:59181 2996021353 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +4782 7.095592499 ::1:59181 ::1:49704 46746360 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........]... +4784 7.095760584 ::1:49704 ::1:59181 2996021385 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4786 7.095931053 ::1:59181 ::1:49704 46746496 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........]... +4788 7.096098900 ::1:49704 ::1:59181 2996021417 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4790 7.096264362 ::1:59181 ::1:49704 46746628 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........]... +4792 7.096433640 ::1:49704 ::1:59181 2996021449 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4794 7.096603155 ::1:59181 ::1:49704 46746770 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........]... +4796 7.096767902 ::1:49704 ::1:59181 2996021481 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4812 7.133438587 ::1:59181 ::1:49704 46746918 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........8Q +4814 7.133862495 ::1:49704 ::1:59181 2996021513 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4845 7.224258661 ::1:59181 ::1:49704 46747208 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........8Q +4847 7.224689484 ::1:49704 ::1:59181 2996021541 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +7652 0.000000000 fe80::3608:256c:365:cc73:59206 fe80::3608:256c:365:cc73:55555 4176278183 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +7660 0.065845966 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:59206 71420465 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +1719 0.000000000 fe80::3608:256c:365:cc73:59186 fe80::3608:256c:365:cc73:55555 3519864787 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +1771 0.064343452 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:59186 1654191799 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +6718 0.000000000 127.0.0.1:59132 127.0.0.1:59131 1925597700 3722 881d7b2256657273696f6e223a372c224d65737361676554797065223a225465 ..{"Version":7,"MessageType":"TestExecution.Stat +7701 3.474949598 127.0.0.1:59132 127.0.0.1:59131 1925601422 3917 cb1e7b2256657273696f6e223a372c224d65737361676554797065223a225465 ..{"Version":7,"MessageType":"TestExecution.Stat +9027 0.000000000 ::1:49768 ::1:49704 1041258558 40 050000831000000028000000c0bf010000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +9029 0.000229836 ::1:49704 ::1:49768 2171971755 44 05000203100000002c000000c0bf0100140000000000000000000000a3389c71 ........,....................8.q...F...S.... +9031 0.000441074 ::1:49768 ::1:49704 1041258598 104 050000831000000068000000c1bf010040000000010000008c9e288562f29747 ........h.......@.........(.b..G..>K.........8.q +9033 0.000774145 ::1:49704 ::1:49768 2171971799 28 05000203100000001c000000c1bf0100040000000100000001000000 ............................ +9035 0.001059055 ::1:49768 ::1:49704 1041258702 60 05000083100000003c000000c2bf010014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........8.q +9037 0.001230478 ::1:49704 ::1:49768 2171971827 92 05000203100000005c000000c2bf010044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +9039 0.001521349 ::1:49768 ::1:49704 1041258762 128 050000831000000080000000c3bf010058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........8.q +9041 0.001914024 ::1:49704 ::1:49768 2171971919 32 050002031000000020000000c3bf010008000000010000008a03000001000000 ........ ....................... +9043 0.002125025 ::1:49768 ::1:49704 1041258890 132 050000831000000084000000c4bf01005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........8.q +9046 0.002335787 ::1:49704 ::1:49768 2171971951 32 050002031000000020000000c4bf010008000000010000008b03000001000000 ........ ....................... +9048 0.002538443 ::1:49768 ::1:49704 1041259022 126 05000083100000007e000000c5bf010056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........8.q +9050 0.002727985 ::1:49704 ::1:49768 2171971983 32 050002031000000020000000c5bf010008000000010000008c03000001000000 ........ ....................... +9052 0.002996922 ::1:49768 ::1:49704 1041259148 128 050000831000000080000000c6bf010058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........8.q +9054 0.003168344 ::1:49704 ::1:49768 2171972015 32 050002031000000020000000c6bf010008000000010000008d03000001000000 ........ ....................... +9056 0.003339291 ::1:49768 ::1:49704 1041259276 138 05000083100000008a000000c7bf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........8.q +9058 0.003511906 ::1:49704 ::1:49768 2171972047 32 050002031000000020000000c7bf010008000000010000008e03000001000000 ........ ....................... +9060 0.003696442 ::1:49768 ::1:49704 1041259414 138 05000083100000008a000000c8bf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........8.q +9062 0.003936052 ::1:49704 ::1:49768 2171972079 32 050002031000000020000000c8bf010008000000010000008f03000001000000 ........ ....................... +9064 0.004148245 ::1:49768 ::1:49704 1041259552 150 050000831000000096000000c9bf01006e000000010003008c9e288562f29747 ................n.........(.b..G..>K.........8.q +9066 0.004360199 ::1:49704 ::1:49768 2171972111 32 050002031000000020000000c9bf010008000000010000009003000001000000 ........ ....................... +9068 0.004539013 ::1:49768 ::1:49704 1041259702 124 05000083100000007c000000cabf010054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........8.q +9070 0.004704952 ::1:49704 ::1:49768 2171972143 32 050002031000000020000000cabf010008000000010000009103000001000000 ........ ....................... +9072 0.004956484 ::1:49768 ::1:49704 1041259826 138 05000083100000008a000000cbbf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........8.q +9074 0.005123138 ::1:49704 ::1:49768 2171972175 32 050002031000000020000000cbbf010008000000010000009203000001000000 ........ ....................... +9076 0.005288839 ::1:49768 ::1:49704 1041259964 136 050000831000000088000000ccbf010060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........8.q +9078 0.005450487 ::1:49704 ::1:49768 2171972207 32 050002031000000020000000ccbf010008000000010000009303000001000000 ........ ....................... +9080 0.005614758 ::1:49768 ::1:49704 1041260100 134 050000831000000086000000cdbf01005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........8.q +9082 0.005825281 ::1:49704 ::1:49768 2171972239 32 050002031000000020000000cdbf010008000000010000009403000001000000 ........ ....................... +9084 0.005997419 ::1:49768 ::1:49704 1041260234 138 05000083100000008a000000cebf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........8.q +9086 0.006165981 ::1:49704 ::1:49768 2171972271 32 050002031000000020000000cebf010008000000010000009503000001000000 ........ ....................... +9088 0.006562710 ::1:49768 ::1:49704 1041260372 60 05000083100000003c000000cfbf010014000000000001008c9e288562f29747 ........<.................(.b..G..>K.........8.q +9090 0.006850481 ::1:49704 ::1:49768 2171972303 44 05000203100000002c000000cfbf010014000000000000000000000000000000 ........,................................... +9096 0.008863688 ::1:49768 ::1:49704 1041260432 40 050000831000000028000000d0bf010000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +9098 0.009040356 ::1:49704 ::1:49768 2171972347 44 05000203100000002c000000d0bf0100140000000000000000000000d2f76fde ........,.....................o....K..]..K.D +9100 0.009241819 ::1:49768 ::1:49704 1041260472 104 050000831000000068000000d1bf010040000000010000008c9e288562f29747 ........h.......@.........(.b..G..>K..........o. +9102 0.009451151 ::1:49704 ::1:49768 2171972391 28 05000203100000001c000000d1bf0100040000000100000001000000 ............................ +9104 0.009618521 ::1:49768 ::1:49704 1041260576 60 05000083100000003c000000d2bf010014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........o. +9106 0.009818077 ::1:49704 ::1:49768 2171972419 92 05000203100000005c000000d2bf010044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +9108 0.010069609 ::1:49768 ::1:49704 1041260636 128 050000831000000080000000d3bf010058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........o. +9110 0.010245800 ::1:49704 ::1:49768 2171972511 32 050002031000000020000000d3bf010008000000010000008a03000001000000 ........ ....................... +9112 0.010600805 ::1:49768 ::1:49704 1041260764 132 050000831000000084000000d4bf01005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........o. +9114 0.010797501 ::1:49704 ::1:49768 2171972543 32 050002031000000020000000d4bf010008000000010000008b03000001000000 ........ ....................... +9116 0.011063337 ::1:49768 ::1:49704 1041260896 126 05000083100000007e000000d5bf010056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K..........o. +9118 0.011251926 ::1:49704 ::1:49768 2171972575 32 050002031000000020000000d5bf010008000000010000008c03000001000000 ........ ....................... +9120 0.011476755 ::1:49768 ::1:49704 1041261022 128 050000831000000080000000d6bf010058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........o. +9122 0.011644840 ::1:49704 ::1:49768 2171972607 32 050002031000000020000000d6bf010008000000010000008d03000001000000 ........ ....................... +9124 0.011837959 ::1:49768 ::1:49704 1041261150 138 05000083100000008a000000d7bf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........o. +9126 0.011998177 ::1:49704 ::1:49768 2171972639 32 050002031000000020000000d7bf010008000000010000008e03000001000000 ........ ....................... +9128 0.012162447 ::1:49768 ::1:49704 1041261288 138 05000083100000008a000000d8bf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........o. +9130 0.012326956 ::1:49704 ::1:49768 2171972671 32 050002031000000020000000d8bf010008000000010000008f03000001000000 ........ ....................... +9132 0.012507439 ::1:49768 ::1:49704 1041261426 150 050000831000000096000000d9bf01006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........o. +9134 0.012677193 ::1:49704 ::1:49768 2171972703 32 050002031000000020000000d9bf010008000000010000009003000001000000 ........ ....................... +9136 0.012873173 ::1:49768 ::1:49704 1041261576 124 05000083100000007c000000dabf010054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........o. +9138 0.013028145 ::1:49704 ::1:49768 2171972735 32 050002031000000020000000dabf010008000000010000009103000001000000 ........ ....................... +9140 0.013194084 ::1:49768 ::1:49704 1041261700 138 05000083100000008a000000dbbf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........o. +9142 0.013356447 ::1:49704 ::1:49768 2171972767 32 050002031000000020000000dbbf010008000000010000009203000001000000 ........ ....................... +9144 0.013522148 ::1:49768 ::1:49704 1041261838 136 050000831000000088000000dcbf010060000000010003008c9e288562f29747 ................`.........(.b..G..>K..........o. +9146 0.013684273 ::1:49704 ::1:49768 2171972799 32 050002031000000020000000dcbf010008000000010000009303000001000000 ........ ....................... +9148 0.013900042 ::1:49768 ::1:49704 1041261974 134 050000831000000086000000ddbf01005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........o. +9150 0.014060974 ::1:49704 ::1:49768 2171972831 32 050002031000000020000000ddbf010008000000010000009403000001000000 ........ ....................... +9152 0.014225245 ::1:49768 ::1:49704 1041262108 138 05000083100000008a000000debf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........o. +9154 0.014386654 ::1:49704 ::1:49768 2171972863 32 050002031000000020000000debf010008000000010000009503000001000000 ........ ....................... +9156 0.014692545 ::1:49768 ::1:49704 1041262246 60 05000083100000003c000000dfbf010014000000000001008c9e288562f29747 ........<.................(.b..G..>K..........o. +9158 0.014897108 ::1:49704 ::1:49768 2171972895 44 05000203100000002c000000dfbf010014000000000000000000000000000000 ........,................................... +9166 0.016828537 ::1:49768 ::1:49704 1041262306 40 050000831000000028000000e0bf010000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +9168 0.016980171 ::1:49704 ::1:49768 2171972939 44 05000203100000002c000000e0bf010014000000000000000000000055821ed1 ........,...................U...*"hN.p....ls +9170 0.017157793 ::1:49768 ::1:49704 1041262346 104 050000831000000068000000e1bf010040000000010000008c9e288562f29747 ........h.......@.........(.b..G..>K........U... +9172 0.017375946 ::1:49704 ::1:49768 2171972983 28 05000203100000001c000000e1bf0100040000000100000001000000 ............................ +9174 0.017540932 ::1:49768 ::1:49704 1041262450 60 05000083100000003c000000e2bf010014000000010002008c9e288562f29747 ........<.................(.b..G..>K........U... +9176 0.017696381 ::1:49704 ::1:49768 2171973011 92 05000203100000005c000000e2bf010044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +9178 0.017990828 ::1:49768 ::1:49704 1041262510 128 050000831000000080000000e3bf010058000000010003008c9e288562f29747 ................X.........(.b..G..>K........U... +9180 0.018156052 ::1:49704 ::1:49768 2171973103 32 050002031000000020000000e3bf010008000000010000008a03000001000000 ........ ....................... +9182 0.018412590 ::1:49768 ::1:49704 1041262638 132 050000831000000084000000e4bf01005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........U... +9184 0.018584251 ::1:49704 ::1:49768 2171973135 32 050002031000000020000000e4bf010008000000010000008b03000001000000 ........ ....................... +9186 0.018752813 ::1:49768 ::1:49704 1041262770 126 05000083100000007e000000e5bf010056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........U... +9188 0.018903732 ::1:49704 ::1:49768 2171973167 32 050002031000000020000000e5bf010008000000010000008c03000001000000 ........ ....................... +9190 0.019069433 ::1:49768 ::1:49704 1041262896 128 050000831000000080000000e6bf010058000000010003008c9e288562f29747 ................X.........(.b..G..>K........U... +9192 0.019313574 ::1:49704 ::1:49768 2171973199 32 050002031000000020000000e6bf010008000000010000008d03000001000000 ........ ....................... +9194 0.019526958 ::1:49768 ::1:49704 1041263024 138 05000083100000008a000000e7bf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K........U... +9197 0.019689322 ::1:49704 ::1:49768 2171973231 32 050002031000000020000000e7bf010008000000010000008e03000001000000 ........ ....................... +9203 0.020295620 ::1:49768 ::1:49704 1041263162 138 05000083100000008a000000e8bf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K........U... +9205 0.020470858 ::1:49704 ::1:49768 2171973263 32 050002031000000020000000e8bf010008000000010000008f03000001000000 ........ ....................... +9207 0.020691633 ::1:49768 ::1:49704 1041263300 150 050000831000000096000000e9bf01006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........U... +9209 0.021008730 ::1:49704 ::1:49768 2171973295 32 050002031000000020000000e9bf010008000000010000009003000001000000 ........ ....................... +9211 0.021265030 ::1:49768 ::1:49704 1041263450 124 05000083100000007c000000eabf010054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........U... +9213 0.021449804 ::1:49704 ::1:49768 2171973327 32 050002031000000020000000eabf010008000000010000009103000001000000 ........ ....................... +9215 0.021625996 ::1:49768 ::1:49704 1041263574 138 05000083100000008a000000ebbf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K........U... +9217 0.021871567 ::1:49704 ::1:49768 2171973359 32 050002031000000020000000ebbf010008000000010000009203000001000000 ........ ....................... +9219 0.022025585 ::1:49768 ::1:49704 1041263712 136 050000831000000088000000ecbf010060000000010003008c9e288562f29747 ................`.........(.b..G..>K........U... +9221 0.022240639 ::1:49704 ::1:49768 2171973391 32 050002031000000020000000ecbf010008000000010000009303000001000000 ........ ....................... +9223 0.022434950 ::1:49768 ::1:49704 1041263848 134 050000831000000086000000edbf01005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........U... +9225 0.022722721 ::1:49704 ::1:49768 2171973423 32 050002031000000020000000edbf010008000000010000009403000001000000 ........ ....................... +9227 0.023028135 ::1:49768 ::1:49704 1041263982 138 05000083100000008a000000eebf010062000000010003008c9e288562f29747 ................b.........(.b..G..>K........U... +9229 0.023243189 ::1:49704 ::1:49768 2171973455 32 050002031000000020000000eebf010008000000010000009503000001000000 ........ ....................... +9232 0.026356220 ::1:49768 ::1:49704 1041264120 60 05000083100000003c000000efbf010014000000000001008c9e288562f29747 ........<.................(.b..G..>K........U... +9234 0.026574612 ::1:49704 ::1:49768 2171973487 44 05000203100000002c000000efbf010014000000000000000000000000000000 ........,................................... +1384 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148920820 1284 17030304ff0000000000000579334a5d5a74decb31d4ea674d00f1b1f1ec53d7 ............y3J]Zt..1..gM.....S."\.........`PP.. +1386 0.005415440 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088304274 54 17030300310000000000000605a104cdf16c77be82b2adc24246363742e75727 ....1............lw.....BF67B.W'..#h].O...f?..Y. +1388 0.005786180 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148922104 117 1703030070000000000000057ad1ba9371a9f3bbcc209eb099e710ca097cd975 ....p.......z...q.... .......|.u.....1....'..D+W +1390 0.008310556 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088304328 173 17030300a800000000000006069d707094849e39e8ebdee2a8138a7423063084 ..............pp...9.......t#.0....3...&C.H...o. +1392 0.009263277 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148922221 1284 17030304ff000000000000057b17a1b7004f346bedc5cfbbbf1fec64c10b6e91 ............{....O4k.......d..n.8.6t..X...~..Q.. +1394 0.013479471 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088304501 54 170303003100000000000006076b6a638924692e57cbe6cdd457f54ea544090d ....1........kjc.$i.W....W.N.D...X.ia.,Bh#;..... +1396 0.013879776 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148923505 117 1703030070000000000000057c7746db0649a36e1017a4c2263145acc9e8f22a ....p.......|wF..I.n....&1E....*lbSz~.O.g.{.o.t: +1398 0.015857220 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088304555 173 17030300a80000000000000608455a15fec03afa221ae38d919925669764f01b .............EZ...:.".....%f.d....../......1.8.. +1419 0.023716450 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148923622 1285 1703030500000000000000057d075097bb9658ce3e3efe996074dd6c5e2b5476 ............}.P...X.>>..`t.l^+Tvd.....T..#|...k. +1421 0.029755831 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088304728 54 17030300310000000000000609993fa7a99242518b03deaa6e7fb23afb54438e ....1.........?...BQ....n..:.TC.W.E......j.e.6.. +1423 0.030224323 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148924907 130 170303007d000000000000057e23b6e015d1cbfd983bca3d04926bd07a5d0233 ....}.......~#.......;.=..k.z].3.t.M..$..`,..:.. +1425 0.033329964 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088304782 173 17030300a8000000000000060a4a63764fffdf7b177cc8b461eb2b7c72a1bfa7 .............JcvO..{.|..a.+|r.......SY...F..1... +1427 0.034346819 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148925037 1285 1703030500000000000000057f18d15e953340452d0e566548362303c3371a4f ...............^.3@E-.VeH6#..7.OM.0.0..q.+..`6.. +1430 0.040050268 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088304955 54 1703030031000000000000060b16cc7c6190048edaec7128ec5493e29fe76b6a ....1..........|a.....q(.T....kjb....8....?Q.f.+ +1432 0.040483475 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3148926322 130 170303007d0000000000000580dcbc2f831d3fd87e8a702e7393898e14d970b9 ....}........../..?.~.p.s.....p...F88f..I4{..z.. +1434 0.042875051 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088305009 173 17030300a8000000000000060ce6242f8af5db7b0a283c8a59f0ae54e0e0835d ..............$/...{.(<.Y..T...]..m^\k...1,...OG +6453 0.000000000 10.100.0.48:59202 10.100.0.48:14330 675406310 94 1201005e00000100000024000601002a000102002b000103002c000404003000 ...^......$....*....+....,....0....1.$..U.....b. +6456 0.021646261 10.100.0.48:14330 10.100.0.48:59202 1292622866 54 0401003600000100000024000601002a000102002b000103002c000004002c00 ...6......$....*....+....,....,....-....-....... +6458 0.022392988 10.100.0.48:59202 10.100.0.48:14330 675406404 339 1201015300000000160303014601000142030369ec53656a93a456b192c6a62e ...S........F...B..i.Sej..V..........b.Q.Mg..U.u +6460 0.064259052 10.100.0.48:14330 10.100.0.48:59202 1292622920 1514 120105ea0000000016030300410200003d030369fdc9298cc1aa5e5ed12bbdac ............A...=..i..)...^^.+.......5.O....[... +6462 0.067903519 10.100.0.48:59202 10.100.0.48:14330 675406743 101 120100650000000016030300251000002120b944dce57bfd0e5380db075dbb88 ...e........%...! .D..{..S...]....W...@5.k...... +6464 0.077507019 10.100.0.48:14330 10.100.0.48:59202 1292624434 234 120100ea0000000016030300aa040000a600001c2000a0434d70b100690aa945 .................... ..CMp..i..E...m......l..W.& +6466 0.078460217 10.100.0.48:59202 10.100.0.48:14330 675406844 440 17030301b30000000000000001a6cd6520ba6b3ecc73275e7e525e6e86e83b02 ...............e .k>.s'^~R^n..;..."........!{... +6486 0.106011391 10.100.0.48:14330 10.100.0.48:59202 1292624668 479 040101df00490100e31b0001066d0061007300740065007200066d0061007300 .....I.......m.a.s.t.e.r..m.a.s.t.e.r..p.E.....% +6488 0.106628656 10.100.0.48:59202 10.100.0.48:14330 675407284 566 0101023600000100160000001200000002000000000000000000010000000a00 ...6............................I.F. .D.B._.I.D. +7693 4.426690578 10.100.0.48:14330 10.100.0.48:59202 1292625147 465 040101d100490100fd0100c0000000000000000000abcc00c413000002005300 .....I........................S.N.o.n.q.u.a.l.i. +9568 7.363586664 10.100.0.48:59202 10.100.0.48:14330 675407850 572 0109023c00000100160000001200000002000000000000000000010000000a00 ...<............................I.F. .D.B._.I.D. +5630 0.000000000 10.100.0.48:59198 10.100.0.48:14330 526439767 94 1201005e00000100000024000601002a000102002b000103002c000404003000 ...^......$....*....+....,....0....1.$..U.....b. +5636 0.040180683 10.100.0.48:14330 10.100.0.48:59198 1571363582 54 0401003600000100000024000601002a000102002b000103002c000004002c00 ...6......$....*....+....,....,....-....-....... +5638 0.040793180 10.100.0.48:59198 10.100.0.48:14330 526439861 339 1201015300000000160303014601000142030369ec536256c9fa63666b73072a ...S........F...B..i.SbV..cfks.*!.w....._.P;#.o. +5651 0.072562456 10.100.0.48:14330 10.100.0.48:59198 1571363636 1514 120105ea0000000016030300410200003d030383fadff1c9f580966fd681e9d6 ............A...=..........o....T..C.!..W...X,.. +5653 0.075568199 10.100.0.48:59198 10.100.0.48:14330 526440200 101 120100650000000016030300251000002120f14f293e8de6d42f93674a410a61 ...e........%...! .O)>.../.gJA.a6..G...c.I:sADG; +5655 0.083250284 10.100.0.48:14330 10.100.0.48:59198 1571365150 234 120100ea0000000016030300aa040000a600001c2000a01d20bc785da202c5b6 .................... ... .x]..........Zz...o-.A. +5657 0.084023952 10.100.0.48:59198 10.100.0.48:14330 526440301 440 17030301b300000000000000014c21de5c95e77b39efc269d7c43673df15b1de .............L!.\..{9..i..6s....w..]m...4..}*.A. +5673 0.102376938 10.100.0.48:14330 10.100.0.48:59198 1571365384 479 040101df004e0100e31b0001066d0061007300740065007200066d0061007300 .....N.......m.a.s.t.e.r..m.a.s.t.e.r..p.E.....% +5675 0.103506804 10.100.0.48:59198 10.100.0.48:14330 526440741 572 0101023c00000100160000001200000002000000000000000000010000000a00 ...<............................I.F. .D.B._.I.D. +6716 3.654167175 10.100.0.48:14330 10.100.0.48:59198 1571365863 465 040101d1004e0100fd0100c0000000000000000000abcc00c413000002005300 .....N........................S.N.o.n.q.u.a.l.i. diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59182.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59182.bin new file mode 100644 index 0000000..8b2e96a Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59182.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59183.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59183.bin new file mode 100644 index 0000000..f73bbc0 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59183.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59198.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59198.bin new file mode 100644 index 0000000..d1ec4d6 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59198.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59202.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59202.bin new file mode 100644 index 0000000..87e1b0a Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59202.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59207.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59207.bin new file mode 100644 index 0000000..21c2d55 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_14330-to-10_100_0_48_59207.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59182-to-10_100_0_48_14330.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59182-to-10_100_0_48_14330.bin new file mode 100644 index 0000000..b1d3b68 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59182-to-10_100_0_48_14330.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59183-to-10_100_0_48_14330.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59183-to-10_100_0_48_14330.bin new file mode 100644 index 0000000..69a3bc4 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59183-to-10_100_0_48_14330.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59198-to-10_100_0_48_14330.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59198-to-10_100_0_48_14330.bin new file mode 100644 index 0000000..4460649 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59198-to-10_100_0_48_14330.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59202-to-10_100_0_48_14330.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59202-to-10_100_0_48_14330.bin new file mode 100644 index 0000000..d27c1c6 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59202-to-10_100_0_48_14330.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59207-to-10_100_0_48_14330.bin b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59207-to-10_100_0_48_14330.bin new file mode 100644 index 0000000..2c7ee90 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-10_100_0_48_59207-to-10_100_0_48_14330.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..f1145f5 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..b67b372 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_59132-to-127_0_0_1_59131.bin b/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_59132-to-127_0_0_1_59131.bin new file mode 100644 index 0000000..11b0618 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-stream-127_0_0_1_59132-to-127_0_0_1_59131.bin @@ -0,0 +1 @@ +ˆ{"Version":7,"MessageType":"TestExecution.StatsChange","Payload":{"NewTestResults":[{"TestCase":{"Id":"f8a57b2b-44eb-3418-1161-c6c843b425e1","FullyQualifiedName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.FleetStatusPollerTests.Poller_detects_new_apply_state_and_pushes_to_fleet_hub","DisplayName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.FleetStatusPollerTests.Poller_detects_new_apply_state_and_pushes_to_fleet_hub","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"C:\\Users\\dohertj2\\Desktop\\lmxopcua\\tests\\ZB.MOM.WW.OtOpcUa.Admin.Tests\\bin\\Debug\\net10.0\\ZB.MOM.WW.OtOpcUa.Admin.Tests.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"3a11f65317d0b974aca1230c0f265d08a85e88af5e6d43ef7121d11d726e92a7"},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"ZB.MOM.WW.OtOpcUa.Admin.Tests.FleetStatusPollerTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"Poller_detects_new_apply_state_and_pushes_to_fleet_hub"},{"Key":{"Id":"TestObject.Traits","Label":"Traits","Category":"","Description":"","Attributes":5,"ValueType":"System.Collections.Generic.KeyValuePair`2[[System.String],[System.String]][]"},"Value":[{"Key":"Category","Value":"Integration"}]}]},"Attachments":[],"Outcome":1,"ErrorMessage":null,"ErrorStackTrace":null,"DisplayName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.FleetStatusPollerTests.Poller_detects_new_apply_state_and_pushes_to_fleet_hub","Messages":[],"ComputerName":"DESKTOP-6JL3KKO","Duration":"00:00:29.0475482","StartTime":"2026-04-25T05:38:17.4896291+00:00","EndTime":"2026-04-25T05:38:46.558041+00:00","Properties":[]}],"TestRunStatistics":{"ExecutedTests":109,"Stats":{"Passed":109}},"ActiveTests":[{"Id":"41e25784-e72c-9025-fa89-fe4140ae9efd","FullyQualifiedName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.FleetStatusPollerTests.Poller_pushes_ResilienceStatusChanged_on_delta","DisplayName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.FleetStatusPollerTests.Poller_pushes_ResilienceStatusChanged_on_delta","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"C:\\Users\\dohertj2\\Desktop\\lmxopcua\\tests\\ZB.MOM.WW.OtOpcUa.Admin.Tests\\bin\\Debug\\net10.0\\ZB.MOM.WW.OtOpcUa.Admin.Tests.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"4fc05f345adc039a993a02f638a435bfbe37ccf71bce173b9044242835c46dc2"},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"ZB.MOM.WW.OtOpcUa.Admin.Tests.FleetStatusPollerTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"Poller_pushes_ResilienceStatusChanged_on_delta"},{"Key":{"Id":"TestObject.Traits","Label":"Traits","Category":"","Description":"","Attributes":5,"ValueType":"System.Collections.Generic.KeyValuePair`2[[System.String],[System.String]][]"},"Value":[{"Key":"Category","Value":"Integration"}]}]}]}}Ë{"Version":7,"MessageType":"TestExecution.StatsChange","Payload":{"NewTestResults":[{"TestCase":{"Id":"87fe9a46-d048-e5d4-f5ff-28bb1255fd0e","FullyQualifiedName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.AdminServicesIntegrationTests.Create_cluster_add_equipment_validate_publish_roundtrips_the_full_admin_flow","DisplayName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.AdminServicesIntegrationTests.Create_cluster_add_equipment_validate_publish_roundtrips_the_full_admin_flow","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"C:\\Users\\dohertj2\\Desktop\\lmxopcua\\tests\\ZB.MOM.WW.OtOpcUa.Admin.Tests\\bin\\Debug\\net10.0\\ZB.MOM.WW.OtOpcUa.Admin.Tests.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"7a71b13cbec7912cb22c206e56d8fcb15bed891ec7e0cfc7dbf494579b6f8efc"},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"ZB.MOM.WW.OtOpcUa.Admin.Tests.AdminServicesIntegrationTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"Create_cluster_add_equipment_validate_publish_roundtrips_the_full_admin_flow"},{"Key":{"Id":"TestObject.Traits","Label":"Traits","Category":"","Description":"","Attributes":5,"ValueType":"System.Collections.Generic.KeyValuePair`2[[System.String],[System.String]][]"},"Value":[{"Key":"Category","Value":"Integration"}]}]},"Attachments":[],"Outcome":1,"ErrorMessage":null,"ErrorStackTrace":null,"DisplayName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.AdminServicesIntegrationTests.Create_cluster_add_equipment_validate_publish_roundtrips_the_full_admin_flow","Messages":[],"ComputerName":"DESKTOP-6JL3KKO","Duration":"00:00:32.5205474","StartTime":"2026-04-25T05:38:17.4904015+00:00","EndTime":"2026-04-25T05:38:50.0320798+00:00","Properties":[]}],"TestRunStatistics":{"ExecutedTests":110,"Stats":{"Passed":110}},"ActiveTests":[{"Id":"0da72a0a-886a-4d05-4488-6f64e0954ea9","FullyQualifiedName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.AdminServicesIntegrationTests.Validate_draft_surfaces_cross_cluster_namespace_binding_violation","DisplayName":"ZB.MOM.WW.OtOpcUa.Admin.Tests.AdminServicesIntegrationTests.Validate_draft_surfaces_cross_cluster_namespace_binding_violation","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"C:\\Users\\dohertj2\\Desktop\\lmxopcua\\tests\\ZB.MOM.WW.OtOpcUa.Admin.Tests\\bin\\Debug\\net10.0\\ZB.MOM.WW.OtOpcUa.Admin.Tests.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"cab9cb4fa1aa4c811f86ac3513633b804a1b5fd78bcf63fa5986908650bfd772"},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"ZB.MOM.WW.OtOpcUa.Admin.Tests.AdminServicesIntegrationTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"Validate_draft_surfaces_cross_cluster_namespace_binding_violation"},{"Key":{"Id":"TestObject.Traits","Label":"Traits","Category":"","Description":"","Attributes":5,"ValueType":"System.Collections.Generic.KeyValuePair`2[[System.String],[System.String]][]"},"Value":[{"Key":"Category","Value":"Integration"}]}]}]}} \ No newline at end of file diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-__1_49704-to-__1_49768.bin b/captures/020-loopback-write-test-int-102/tcp-stream-__1_49704-to-__1_49768.bin new file mode 100644 index 0000000..98235ab Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-__1_49704-to-__1_49768.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-__1_49704-to-__1_59181.bin b/captures/020-loopback-write-test-int-102/tcp-stream-__1_49704-to-__1_59181.bin new file mode 100644 index 0000000..3e35a55 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-__1_49704-to-__1_59181.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-__1_49768-to-__1_49704.bin b/captures/020-loopback-write-test-int-102/tcp-stream-__1_49768-to-__1_49704.bin new file mode 100644 index 0000000..18496fc Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-__1_49768-to-__1_49704.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-__1_59181-to-__1_49704.bin b/captures/020-loopback-write-test-int-102/tcp-stream-__1_59181-to-__1_49704.bin new file mode 100644 index 0000000..55c92c0 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-__1_59181-to-__1_49704.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..fdbe860 Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_59186.bin b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_59186.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_59186.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_59206.bin b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_59206.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_59206.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_59186-to-fe80__3608_256c_365_cc73_55555.bin b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_59186-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_59186-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_59206-to-fe80__3608_256c_365_cc73_55555.bin b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_59206-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_59206-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..c5e879f Binary files /dev/null and b/captures/020-loopback-write-test-int-102/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/020-loopback-write-test-int-102/write-window-mixed-records.tsv b/captures/020-loopback-write-test-int-102/write-window-mixed-records.tsv new file mode 100644 index 0000000..27d5605 --- /dev/null +++ b/captures/020-loopback-write-test-int-102/write-window-mixed-records.tsv @@ -0,0 +1,112 @@ +capture frame packet_time_relative_to_write packet_time_relative_to_complete direction src dst tcp_seq payload_offset record_index record_type record_size announced_length i32_0 i32_1 i32_2 i32_3 signature16 signature24 hex ascii_preview +020-loopback-write-test-int-102 5091 -0.304727554 -0.515239477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526564 0 0 control_announce 12 26 730712 0 1a 00 00 00 58 26 0b 00 00 00 00 00 1a 00 00 00 58 26 0b 00 00 00 00 00 1a 00 00 00 58 26 0b 00 00 00 00 00 ....X&...... +020-loopback-write-test-int-102 5093 -0.304557085 -0.515069008 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526576 0 0 data 26 22 1080266580 1076977378 196609 -1644888064 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9d 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9d 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 9d 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5095 -0.304216862 -0.514728785 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463657 0 0 control 12 -1 730712 0 ff ff ff ff 58 26 0b 00 00 00 00 00 ff ff ff ff 58 26 0b 00 00 00 00 00 ff ff ff ff 58 26 0b 00 00 00 00 00 ....X&...... +020-loopback-write-test-int-102 5097 -0.303671598 -0.514183521 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463669 0 0 control_announce 12 22 721017 0 16 00 00 00 79 00 0b 00 00 00 00 00 16 00 00 00 79 00 0b 00 00 00 00 00 16 00 00 00 79 00 0b 00 00 00 00 00 ....y....... +020-loopback-write-test-int-102 5099 -0.303511858 -0.514023781 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463681 0 0 data 22 18 2072053 0 196609 0 f5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 f5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 f5 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5101 -0.303208590 -0.513720512 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526602 0 0 control 12 -1 721017 0 ff ff ff ff 79 00 0b 00 00 00 00 00 ff ff ff ff 79 00 0b 00 00 00 00 00 ff ff ff ff 79 00 0b 00 00 00 00 00 ....y....... +020-loopback-write-test-int-102 5111 -0.201824188 -0.412336111 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526614 0 0 control_announce 12 26 730713 0 1a 00 00 00 59 26 0b 00 00 00 00 00 1a 00 00 00 59 26 0b 00 00 00 00 00 1a 00 00 00 59 26 0b 00 00 00 00 00 ....Y&...... +020-loopback-write-test-int-102 5113 -0.201594591 -0.412106514 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526626 0 0 data 26 22 1080266580 1076977378 196609 -1644756992 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9d 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9d 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 9d 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5117 -0.201104879 -0.411616802 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463703 0 0 control 12 -1 730713 0 ff ff ff ff 59 26 0b 00 00 00 00 00 ff ff ff ff 59 26 0b 00 00 00 00 00 ff ff ff ff 59 26 0b 00 00 00 00 00 ....Y&...... +020-loopback-write-test-int-102 5119 -0.200656891 -0.411168814 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463715 0 0 control_announce 12 22 721018 0 16 00 00 00 7a 00 0b 00 00 00 00 00 16 00 00 00 7a 00 0b 00 00 00 00 00 16 00 00 00 7a 00 0b 00 00 00 00 00 ....z....... +020-loopback-write-test-int-102 5121 -0.200131178 -0.410643101 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463727 0 0 data 22 18 2072055 0 196609 0 f7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 f7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 f7 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5123 -0.199772596 -0.410284519 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526652 0 0 control 12 -1 721018 0 ff ff ff ff 7a 00 0b 00 00 00 00 00 ff ff ff ff 7a 00 0b 00 00 00 00 00 ff ff ff ff 7a 00 0b 00 00 00 00 00 ....z....... +020-loopback-write-test-int-102 5129 -0.189060211 -0.399572134 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463749 0 0 control 12 -2 82951 82968 fe ff ff ff 07 44 01 00 18 44 01 00 fe ff ff ff 07 44 01 00 18 44 01 00 fe ff ff ff 07 44 01 00 18 44 01 00 .....D...D.. +020-loopback-write-test-int-102 5139 -0.097380161 -0.307892084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526664 0 0 control_announce 12 26 730714 0 1a 00 00 00 5a 26 0b 00 00 00 00 00 1a 00 00 00 5a 26 0b 00 00 00 00 00 1a 00 00 00 5a 26 0b 00 00 00 00 00 ....Z&...... +020-loopback-write-test-int-102 5141 -0.097220659 -0.307732582 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526676 0 0 data 26 22 1080266580 1076977378 196609 -1644625920 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9d 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9d 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 9d 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5143 -0.096810818 -0.307322741 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463761 0 0 control 12 -1 730714 0 ff ff ff ff 5a 26 0b 00 00 00 00 00 ff ff ff ff 5a 26 0b 00 00 00 00 00 ff ff ff ff 5a 26 0b 00 00 00 00 00 ....Z&...... +020-loopback-write-test-int-102 5145 -0.096059561 -0.306571484 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463773 0 0 control_announce 12 22 721019 0 16 00 00 00 7b 00 0b 00 00 00 00 00 16 00 00 00 7b 00 0b 00 00 00 00 00 16 00 00 00 7b 00 0b 00 00 00 00 00 ....{....... +020-loopback-write-test-int-102 5147 -0.095898151 -0.306410074 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463785 0 0 data 22 18 2072057 0 196609 0 f9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 f9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 f9 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5149 -0.095571995 -0.306083918 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526702 0 0 control 12 -1 721019 0 ff ff ff ff 7b 00 0b 00 00 00 00 00 ff ff ff ff 7b 00 0b 00 00 00 00 00 ff ff ff ff 7b 00 0b 00 00 00 00 00 ....{....... +020-loopback-write-test-int-102 5151 -0.089065313 -0.299577236 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526714 0 0 control_announce 12 34 730715 0 22 00 00 00 5b 26 0b 00 00 00 00 00 22 00 00 00 5b 26 0b 00 00 00 00 00 22 00 00 00 5b 26 0b 00 00 00 00 00 """...[&......" +020-loopback-write-test-int-102 5153 -0.088867903 -0.299379826 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526726 0 0 data 34 30 -803725028 -1154256956 196609 324468736 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 13 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 13 02 00 00 00 00 00 15 b5 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 57 13 02 00 00 00 00 00 15 b5 25 c3 9d 01 00 00 .!...o3.......W.........%..... +020-loopback-write-test-int-102 5155 -0.088725090 -0.299237013 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526760 0 0 control_announce 12 67 730716 0 43 00 00 00 5c 26 0b 00 00 00 00 00 43 00 00 00 5c 26 0b 00 00 00 00 00 43 00 00 00 5c 26 0b 00 00 00 00 00 C...\&...... +020-loopback-write-test-int-102 5157 -0.088639021 -0.299150944 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526772 0 0 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 57 13 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 57 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 fd 63 1e f6 82 a9 18 ..3...|8...........W.......=B.....&............. +020-loopback-write-test-int-102 5158 -0.088564396 -0.299076319 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463807 0 0 control 12 -1 730715 0 ff ff ff ff 5b 26 0b 00 00 00 00 00 ff ff ff ff 5b 26 0b 00 00 00 00 00 ff ff ff ff 5b 26 0b 00 00 00 00 00 ....[&...... +020-loopback-write-test-int-102 5159 -0.088465691 -0.298977613 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463819 0 0 control 12 -1 730716 0 ff ff ff ff 5c 26 0b 00 00 00 00 00 ff ff ff ff 5c 26 0b 00 00 00 00 00 ff ff ff ff 5c 26 0b 00 00 00 00 00 ....\&...... +020-loopback-write-test-int-102 5162 -0.087354898 -0.297866821 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463831 0 0 control_announce 12 52 721020 0 34 00 00 00 7c 00 0b 00 00 00 00 00 34 00 00 00 7c 00 0b 00 00 00 00 00 34 00 00 00 7c 00 0b 00 00 00 00 00 4...|....... +020-loopback-write-test-int-102 5164 -0.087212086 -0.297724009 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463843 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 57 13 02 00 00 00 00 00 00 00 1b 2e 85 e4 4d 01 00 00 "Dk.................L."".([.....W.............M..." +020-loopback-write-test-int-102 5166 -0.086872578 -0.297384501 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526839 0 0 control 12 -1 721020 0 ff ff ff ff 7c 00 0b 00 00 00 00 00 ff ff ff ff 7c 00 0b 00 00 00 00 00 ff ff ff ff 7c 00 0b 00 00 00 00 00 ....|....... +020-loopback-write-test-int-102 5168 -0.086127520 -0.296639442 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526851 0 0 control_announce 12 30 730717 0 1e 00 00 00 5d 26 0b 00 00 00 00 00 1e 00 00 00 5d 26 0b 00 00 00 00 00 1e 00 00 00 5d 26 0b 00 00 00 00 00 ....]&...... +020-loopback-write-test-int-102 5170 -0.085963011 -0.296474934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526863 0 0 data 30 26 1660931669 1345985458 196609 -1644494848 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 9d 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 9d 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb 9d 1f 00 00 00 00 00 00 00 00 00 U..b..:P.................. +020-loopback-write-test-int-102 5172 -0.085558653 -0.296070576 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463895 0 0 control 12 -1 730717 0 ff ff ff ff 5d 26 0b 00 00 00 00 00 ff ff ff ff 5d 26 0b 00 00 00 00 00 ff ff ff ff 5d 26 0b 00 00 00 00 00 ....]&...... +020-loopback-write-test-int-102 5174 -0.085188866 -0.295700788 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463907 0 0 control_announce 12 26 721021 0 1a 00 00 00 7d 00 0b 00 00 00 00 00 1a 00 00 00 7d 00 0b 00 00 00 00 00 1a 00 00 00 7d 00 0b 00 00 00 00 00 ....}....... +020-loopback-write-test-int-102 5176 -0.085052490 -0.295564413 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463919 0 0 data 26 22 2072059 0 196609 0 fb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 fb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 fb 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...................... +020-loopback-write-test-int-102 5178 -0.084737539 -0.295249462 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526893 0 0 control 12 -1 721021 0 ff ff ff ff 7d 00 0b 00 00 00 00 00 ff ff ff ff 7d 00 0b 00 00 00 00 00 ff ff ff ff 7d 00 0b 00 00 00 00 00 ....}....... +020-loopback-write-test-int-102 5182 0.007262468 -0.203249454 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526905 0 0 control_announce 12 26 730718 0 1a 00 00 00 5e 26 0b 00 00 00 00 00 1a 00 00 00 5e 26 0b 00 00 00 00 00 1a 00 00 00 5e 26 0b 00 00 00 00 00 ....^&...... +020-loopback-write-test-int-102 5184 0.007440090 -0.203071833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526917 0 0 data 26 22 1080266580 1076977378 196609 -1644363776 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9d 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9d 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd 9d 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5186 0.007730484 -0.202781439 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463945 0 0 control 12 -1 730718 0 ff ff ff ff 5e 26 0b 00 00 00 00 00 ff ff ff ff 5e 26 0b 00 00 00 00 00 ff ff ff ff 5e 26 0b 00 00 00 00 00 ....^&...... +020-loopback-write-test-int-102 5188 0.008282661 -0.202229261 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463957 0 0 control_announce 12 22 721022 0 16 00 00 00 7e 00 0b 00 00 00 00 00 16 00 00 00 7e 00 0b 00 00 00 00 00 16 00 00 00 7e 00 0b 00 00 00 00 00 ....~....... +020-loopback-write-test-int-102 5190 0.008439541 -0.202072382 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463969 0 0 data 22 18 2072061 0 196609 0 fd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 fd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 fd 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5192 0.008715630 -0.201796293 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526943 0 0 control 12 -1 721022 0 ff ff ff ff 7e 00 0b 00 00 00 00 00 ff ff ff ff 7e 00 0b 00 00 00 00 00 ff ff ff ff 7e 00 0b 00 00 00 00 00 ....~....... +020-loopback-write-test-int-102 5205 0.058058262 -0.152453661 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526955 0 0 control 12 -2 82969 82951 fe ff ff ff 19 44 01 00 07 44 01 00 fe ff ff ff 19 44 01 00 07 44 01 00 fe ff ff ff 19 44 01 00 07 44 01 00 .....D...D.. +020-loopback-write-test-int-102 5210 0.109733105 -0.100778818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526967 0 0 control_announce 12 26 730719 0 1a 00 00 00 5f 26 0b 00 00 00 00 00 1a 00 00 00 5f 26 0b 00 00 00 00 00 1a 00 00 00 5f 26 0b 00 00 00 00 00 ...._&...... +020-loopback-write-test-int-102 5212 0.109894991 -0.100616932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333526979 0 0 data 26 22 1080266580 1076977378 196609 -1644232704 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9d 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9d 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff 9d 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5214 0.110214710 -0.100297213 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377463991 0 0 control 12 -1 730719 0 ff ff ff ff 5f 26 0b 00 00 00 00 00 ff ff ff ff 5f 26 0b 00 00 00 00 00 ff ff ff ff 5f 26 0b 00 00 00 00 00 ...._&...... +020-loopback-write-test-int-102 5216 0.110697031 -0.099814892 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464003 0 0 control_announce 12 22 721023 0 16 00 00 00 7f 00 0b 00 00 00 00 00 16 00 00 00 7f 00 0b 00 00 00 00 00 16 00 00 00 7f 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5218 0.110861063 -0.099650860 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464015 0 0 data 22 18 2072063 0 196609 0 ff 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 ff 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ff 9d 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5220 0.111211777 -0.099300146 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527005 0 0 control 12 -1 721023 0 ff ff ff ff 7f 00 0b 00 00 00 00 00 ff ff ff ff 7f 00 0b 00 00 00 00 00 ff ff ff ff 7f 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5262 0.214272261 0.003760338 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527017 0 0 control_announce 12 26 730720 0 1a 00 00 00 60 26 0b 00 00 00 00 00 1a 00 00 00 60 26 0b 00 00 00 00 00 1a 00 00 00 60 26 0b 00 00 00 00 00 ....`&...... +020-loopback-write-test-int-102 5264 0.214480400 0.003968477 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527029 0 0 data 26 22 1080266580 1076977378 196609 -1644101632 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9e 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9e 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 9e 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5266 0.214933872 0.004421949 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464037 0 0 control 12 -1 730720 0 ff ff ff ff 60 26 0b 00 00 00 00 00 ff ff ff ff 60 26 0b 00 00 00 00 00 ff ff ff ff 60 26 0b 00 00 00 00 00 ....`&...... +020-loopback-write-test-int-102 5268 0.215467691 0.004955769 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464049 0 0 control_announce 12 22 721024 0 16 00 00 00 80 00 0b 00 00 00 00 00 16 00 00 00 80 00 0b 00 00 00 00 00 16 00 00 00 80 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5269 0.215626717 0.005114794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527055 0 0 control_announce 12 101 730721 0 65 00 00 00 61 26 0b 00 00 00 00 00 65 00 00 00 61 26 0b 00 00 00 00 00 65 00 00 00 61 26 0b 00 00 00 00 00 e...a&...... +020-loopback-write-test-int-102 5269 0.215626717 0.005114794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527055 12 1 data 34 30 -803725028 -1154256956 196609 324534272 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 13 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 13 02 00 00 00 00 00 46 b6 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 58 13 02 00 00 00 00 00 46 b6 25 c3 9d 01 00 00 .!...o3.......X.......F.%..... +020-loopback-write-test-int-102 5269 0.215626717 0.005114794 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527055 46 2 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 58 13 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 58 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f fc fe 89 30 f6 82 a9 18 ..3...|8...........X.......=B.....&............. +020-loopback-write-test-int-102 5271 0.215847015 0.005335093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464061 0 0 data 22 18 2072065 0 196609 0 01 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 01 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 01 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5273 0.216158152 0.005646229 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464083 0 0 control 12 -1 730721 0 ff ff ff ff 61 26 0b 00 00 00 00 00 ff ff ff ff 61 26 0b 00 00 00 00 00 ff ff ff ff 61 26 0b 00 00 00 00 00 ....a&...... +020-loopback-write-test-int-102 5274 0.216190577 0.005678654 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527168 0 0 control 12 -1 721024 0 ff ff ff ff 80 00 0b 00 00 00 00 00 ff ff ff ff 80 00 0b 00 00 00 00 00 ff ff ff ff 80 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5277 0.216975212 0.006463289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464095 0 0 control_announce 12 52 721025 0 34 00 00 00 81 00 0b 00 00 00 00 00 34 00 00 00 81 00 0b 00 00 00 00 00 34 00 00 00 81 00 0b 00 00 00 00 00 4........... +020-loopback-write-test-int-102 5278 0.217075825 0.006563902 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464107 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 58 13 02 00 00 00 00 00 00 00 0c 9e b3 e4 4d 01 00 00 "Dk.................L."".([.....X.............M..." +020-loopback-write-test-int-102 5279 0.217228889 0.006716967 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527180 0 0 control 12 -1 721025 0 ff ff ff ff 81 00 0b 00 00 00 00 00 ff ff ff ff 81 00 0b 00 00 00 00 00 ff ff ff ff 81 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5281 0.218059063 0.007547140 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527192 0 0 control_announce 12 30 730722 0 1e 00 00 00 62 26 0b 00 00 00 00 00 1e 00 00 00 62 26 0b 00 00 00 00 00 1e 00 00 00 62 26 0b 00 00 00 00 00 ....b&...... +020-loopback-write-test-int-102 5283 0.218285322 0.007773399 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527204 0 0 data 30 26 1660931669 1345985458 196609 -1643970560 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 9e 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 9e 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 9e 1f 00 00 00 00 00 00 00 00 00 U..b..:P.................. +020-loopback-write-test-int-102 5285 0.218635559 0.008123636 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464159 0 0 control 12 -1 730722 0 ff ff ff ff 62 26 0b 00 00 00 00 00 ff ff ff ff 62 26 0b 00 00 00 00 00 ff ff ff ff 62 26 0b 00 00 00 00 00 ....b&...... +020-loopback-write-test-int-102 5287 0.218984604 0.008472681 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464171 0 0 control_announce 12 26 721026 0 1a 00 00 00 82 00 0b 00 00 00 00 00 1a 00 00 00 82 00 0b 00 00 00 00 00 1a 00 00 00 82 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5289 0.219147682 0.008635759 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464183 0 0 data 26 22 2072067 0 196609 0 03 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 03 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 03 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...................... +020-loopback-write-test-int-102 5291 0.219393969 0.008882046 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527234 0 0 control 12 -1 721026 0 ff ff ff ff 82 00 0b 00 00 00 00 00 ff ff ff ff 82 00 0b 00 00 00 00 00 ff ff ff ff 82 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5299 0.312407970 0.101896048 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464209 0 0 control 12 -2 82952 82969 fe ff ff ff 08 44 01 00 19 44 01 00 fe ff ff ff 08 44 01 00 19 44 01 00 fe ff ff ff 08 44 01 00 19 44 01 00 .....D...D.. +020-loopback-write-test-int-102 5313 0.318195105 0.107683182 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527246 0 0 control_announce 12 26 730723 0 1a 00 00 00 63 26 0b 00 00 00 00 00 1a 00 00 00 63 26 0b 00 00 00 00 00 1a 00 00 00 63 26 0b 00 00 00 00 00 ....c&...... +020-loopback-write-test-int-102 5315 0.318364620 0.107852697 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527258 0 0 data 26 22 1080266580 1076977378 196609 -1643839488 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9e 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9e 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 9e 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5317 0.318720818 0.108208895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464221 0 0 control 12 -1 730723 0 ff ff ff ff 63 26 0b 00 00 00 00 00 ff ff ff ff 63 26 0b 00 00 00 00 00 ff ff ff ff 63 26 0b 00 00 00 00 00 ....c&...... +020-loopback-write-test-int-102 5319 0.319101095 0.108589172 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464233 0 0 control_announce 12 22 721027 0 16 00 00 00 83 00 0b 00 00 00 00 00 16 00 00 00 83 00 0b 00 00 00 00 00 16 00 00 00 83 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5321 0.319281816 0.108769894 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464245 0 0 data 22 18 2072069 0 196609 0 05 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 05 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 05 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5323 0.319680929 0.109169006 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527284 0 0 control 12 -1 721027 0 ff ff ff ff 83 00 0b 00 00 00 00 00 ff ff ff ff 83 00 0b 00 00 00 00 00 ff ff ff ff 83 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5331 0.421248674 0.210736752 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527296 0 0 control_announce 12 26 730724 0 1a 00 00 00 64 26 0b 00 00 00 00 00 1a 00 00 00 64 26 0b 00 00 00 00 00 1a 00 00 00 64 26 0b 00 00 00 00 00 ....d&...... +020-loopback-write-test-int-102 5333 0.421409607 0.210897684 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527308 0 0 data 26 22 1080266580 1076977378 196609 -1643708416 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9e 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9e 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 9e 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5335 0.421709538 0.211197615 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464267 0 0 control 12 -1 730724 0 ff ff ff ff 64 26 0b 00 00 00 00 00 ff ff ff ff 64 26 0b 00 00 00 00 00 ff ff ff ff 64 26 0b 00 00 00 00 00 ....d&...... +020-loopback-write-test-int-102 5337 0.422348022 0.211836100 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464279 0 0 control_announce 12 22 721028 0 16 00 00 00 84 00 0b 00 00 00 00 00 16 00 00 00 84 00 0b 00 00 00 00 00 16 00 00 00 84 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5339 0.422518253 0.212006330 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464291 0 0 data 22 18 2072071 0 196609 0 07 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 07 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 07 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5341 0.422842503 0.212330580 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527334 0 0 control 12 -1 721028 0 ff ff ff ff 84 00 0b 00 00 00 00 00 ff ff ff ff 84 00 0b 00 00 00 00 00 ff ff ff ff 84 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5343 0.519472837 0.308960915 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527346 0 0 control_announce 12 101 730725 0 65 00 00 00 65 26 0b 00 00 00 00 00 65 00 00 00 65 26 0b 00 00 00 00 00 65 00 00 00 65 26 0b 00 00 00 00 00 e...e&...... +020-loopback-write-test-int-102 5345 0.519702911 0.309190989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527358 0 0 data 34 30 -803725028 -1154256956 196609 324599808 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 13 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 13 02 00 00 00 00 00 76 b7 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 59 13 02 00 00 00 00 00 76 b7 25 c3 9d 01 00 00 .!...o3.......Y.......v.%..... +020-loopback-write-test-int-102 5345 0.519702911 0.309190989 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527358 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 59 13 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 59 13 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 12 a6 42 f6 82 a9 18 ..3...|8...........Y.......=B.....&............. +020-loopback-write-test-int-102 5347 0.520096540 0.309584618 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464313 0 0 control 12 -1 730725 0 ff ff ff ff 65 26 0b 00 00 00 00 00 ff ff ff ff 65 26 0b 00 00 00 00 00 ff ff ff ff 65 26 0b 00 00 00 00 00 ....e&...... +020-loopback-write-test-int-102 5349 0.521099567 0.310587645 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464325 0 0 control_announce 12 52 721029 0 34 00 00 00 85 00 0b 00 00 00 00 00 34 00 00 00 85 00 0b 00 00 00 00 00 34 00 00 00 85 00 0b 00 00 00 00 00 4........... +020-loopback-write-test-int-102 5351 0.521250963 0.310739040 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464337 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 59 13 02 00 00 00 00 00 00 00 2b 04 e2 e4 4d 01 00 00 "Dk.................L."".([.....Y.........+...M..." +020-loopback-write-test-int-102 5353 0.521495104 0.310983181 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527459 0 0 control 12 -1 721029 0 ff ff ff ff 85 00 0b 00 00 00 00 00 ff ff ff ff 85 00 0b 00 00 00 00 00 ff ff ff ff 85 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5355 0.522475958 0.311964035 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527471 0 0 control_announce 12 30 730726 0 1e 00 00 00 66 26 0b 00 00 00 00 00 1e 00 00 00 66 26 0b 00 00 00 00 00 1e 00 00 00 66 26 0b 00 00 00 00 00 ....f&...... +020-loopback-write-test-int-102 5357 0.522656679 0.312144756 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527483 0 0 data 30 26 1660931669 1345985458 196609 -1643577344 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 9e 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 9e 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 9e 1f 00 00 00 00 00 00 00 00 00 U..b..:P.................. +020-loopback-write-test-int-102 5359 0.522940874 0.312428951 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464389 0 0 control 12 -1 730726 0 ff ff ff ff 66 26 0b 00 00 00 00 00 ff ff ff ff 66 26 0b 00 00 00 00 00 ff ff ff ff 66 26 0b 00 00 00 00 00 ....f&...... +020-loopback-write-test-int-102 5361 0.523343801 0.312831879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464401 0 0 control_announce 12 26 721030 0 1a 00 00 00 86 00 0b 00 00 00 00 00 1a 00 00 00 86 00 0b 00 00 00 00 00 1a 00 00 00 86 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5363 0.523500443 0.312988520 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464413 0 0 data 26 22 2072073 0 196609 0 09 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 09 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 09 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ...................... +020-loopback-write-test-int-102 5365 0.523760796 0.313248873 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527513 0 0 control 12 -1 721030 0 ff ff ff ff 86 00 0b 00 00 00 00 00 ff ff ff ff 86 00 0b 00 00 00 00 00 ff ff ff ff 86 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5367 0.524222612 0.313710690 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527525 0 0 control_announce 12 26 730727 0 1a 00 00 00 67 26 0b 00 00 00 00 00 1a 00 00 00 67 26 0b 00 00 00 00 00 1a 00 00 00 67 26 0b 00 00 00 00 00 ....g&...... +020-loopback-write-test-int-102 5369 0.524609327 0.314097404 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527537 0 0 data 26 22 1080266580 1076977378 196609 -1643446272 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9e 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9e 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b 9e 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5371 0.524956226 0.314444304 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464439 0 0 control 12 -1 730727 0 ff ff ff ff 67 26 0b 00 00 00 00 00 ff ff ff ff 67 26 0b 00 00 00 00 00 ff ff ff ff 67 26 0b 00 00 00 00 00 ....g&...... +020-loopback-write-test-int-102 5373 0.525456905 0.314944983 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464451 0 0 control_announce 12 22 721031 0 16 00 00 00 87 00 0b 00 00 00 00 00 16 00 00 00 87 00 0b 00 00 00 00 00 16 00 00 00 87 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5375 0.525598288 0.315086365 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464463 0 0 data 22 18 2072075 0 196609 0 0b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 0b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 0b 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5377 0.525846004 0.315334082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527563 0 0 control 12 -1 721031 0 ff ff ff ff 87 00 0b 00 00 00 00 00 ff ff ff ff 87 00 0b 00 00 00 00 00 ff ff ff ff 87 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5386 0.559777498 0.349265575 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527575 0 0 control 12 -2 82970 82952 fe ff ff ff 1a 44 01 00 08 44 01 00 fe ff ff ff 1a 44 01 00 08 44 01 00 fe ff ff ff 1a 44 01 00 08 44 01 00 .....D...D.. +020-loopback-write-test-int-102 5393 0.628070831 0.417558908 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527587 0 0 control_announce 12 26 730728 0 1a 00 00 00 68 26 0b 00 00 00 00 00 1a 00 00 00 68 26 0b 00 00 00 00 00 1a 00 00 00 68 26 0b 00 00 00 00 00 ....h&...... +020-loopback-write-test-int-102 5395 0.628238201 0.417726278 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527599 0 0 data 26 22 1080266580 1076977378 196609 -1643315200 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9e 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9e 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d 9e 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5397 0.628658772 0.418146849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464485 0 0 control 12 -1 730728 0 ff ff ff ff 68 26 0b 00 00 00 00 00 ff ff ff ff 68 26 0b 00 00 00 00 00 ff ff ff ff 68 26 0b 00 00 00 00 00 ....h&...... +020-loopback-write-test-int-102 5399 0.629041195 0.418529272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464497 0 0 control_announce 12 22 721032 0 16 00 00 00 88 00 0b 00 00 00 00 00 16 00 00 00 88 00 0b 00 00 00 00 00 16 00 00 00 88 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5401 0.629201889 0.418689966 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464509 0 0 data 22 18 2072077 0 196609 0 0d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 0d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 0d 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5403 0.629556417 0.419044495 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527625 0 0 control 12 -1 721032 0 ff ff ff ff 88 00 0b 00 00 00 00 00 ff ff ff ff 88 00 0b 00 00 00 00 00 ff ff ff ff 88 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5416 0.731132030 0.520620108 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527637 0 0 control_announce 12 26 730729 0 1a 00 00 00 69 26 0b 00 00 00 00 00 1a 00 00 00 69 26 0b 00 00 00 00 00 1a 00 00 00 69 26 0b 00 00 00 00 00 ....i&...... +020-loopback-write-test-int-102 5418 0.731312990 0.520801067 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527649 0 0 data 26 22 1080266580 1076977378 196609 -1643184128 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9e 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9e 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f 9e 1f 00 00 00 00 00 T.c@.^1@.............. +020-loopback-write-test-int-102 5420 0.731618643 0.521106720 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464531 0 0 control 12 -1 730729 0 ff ff ff ff 69 26 0b 00 00 00 00 00 ff ff ff ff 69 26 0b 00 00 00 00 00 ff ff ff ff 69 26 0b 00 00 00 00 00 ....i&...... +020-loopback-write-test-int-102 5422 0.732218266 0.521706343 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464543 0 0 control_announce 12 22 721033 0 16 00 00 00 89 00 0b 00 00 00 00 00 16 00 00 00 89 00 0b 00 00 00 00 00 16 00 00 00 89 00 0b 00 00 00 00 00 ............ +020-loopback-write-test-int-102 5424 0.732386827 0.521874905 b_to_a 127.0.0.1:57433 127.0.0.1:57415 377464555 0 0 data 22 18 2072079 0 196609 0 0f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 0f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 0f 9e 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 .................. +020-loopback-write-test-int-102 5426 0.732711315 0.522199392 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3333527675 0 0 control 12 -1 721033 0 ff ff ff ff 89 00 0b 00 00 00 00 00 ff ff ff ff 89 00 0b 00 00 00 00 00 ff ff ff ff 89 00 0b 00 00 00 00 00 ............ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/command.txt b/captures/021-loopback-write-test-int-sequence-103-105/command.txt new file mode 100644 index 0000000..d235ba2 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/command.txt @@ -0,0 +1,2 @@ +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=--scenario=write --tag=TestChildObject.TestInt --type=int --values=103,104,105 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\021-loopback-write-test-int-sequence-103-105\harness.log --client=MxProtoTraceHarness-021-loopback-write-test-int-sequence-103-105 diff --git a/captures/021-loopback-write-test-int-sequence-103-105/dumpcap.stderr.txt b/captures/021-loopback-write-test-int-sequence-103-105/dumpcap.stderr.txt new file mode 100644 index 0000000..9921ff0 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\021-loopback-write-test-int-sequence-103-105\loopback.pcapng diff --git a/captures/021-loopback-write-test-int-sequence-103-105/dumpcap.stdout.txt b/captures/021-loopback-write-test-int-sequence-103-105/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/021-loopback-write-test-int-sequence-103-105/exit.txt b/captures/021-loopback-write-test-int-sequence-103-105/exit.txt new file mode 100644 index 0000000..500e57c --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/exit.txt @@ -0,0 +1 @@ +exit_code=0 diff --git a/captures/021-loopback-write-test-int-sequence-103-105/harness.log b/captures/021-loopback-write-test-int-sequence-103-105/harness.log new file mode 100644 index 0000000..9f8f081 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/harness.log @@ -0,0 +1,27 @@ +2026-04-25T05:52:58.7346807+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-021-loopback-write-test-int-sequence-103-105","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"","WriteValues":["103","104","105"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T05:53:05.5761598+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-021-loopback-write-test-int-sequence-103-105"} +2026-04-25T05:53:05.9486809+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T05:53:05.9486809+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T05:53:05.9506865+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:53:05.9516801+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:53:05.9536223+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:53:06.2005664+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"102"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:38:41.796 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:53:06.9746508+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"103"},"UserId":1} +2026-04-25T05:53:06.9756507+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T05:53:07.1829739+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"103"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:53:07.092 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:53:07.1869470+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:53:07.6963047+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.Int32","Value":"104"},"UserId":1} +2026-04-25T05:53:07.6963047+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":1} +2026-04-25T05:53:07.8531145+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"104"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:53:07.751 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:53:07.8551866+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:53:08.4180133+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.Int32","Value":"105"},"UserId":1} +2026-04-25T05:53:08.4180133+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":2} +2026-04-25T05:53:08.6253978+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"105"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:53:08.539 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T05:53:08.6274379+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T05:53:13.4409414+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:53:13.4419296+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:53:13.4419296+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:53:13.4419296+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T05:53:13.4419296+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T05:53:17.3375502+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T05:53:17.3425423+00:00 harness.stop {} diff --git a/captures/021-loopback-write-test-int-sequence-103-105/loopback.pcapng b/captures/021-loopback-write-test-int-sequence-103-105/loopback.pcapng new file mode 100644 index 0000000..c116825 Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/loopback.pcapng differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/stderr.txt b/captures/021-loopback-write-test-int-sequence-103-105/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/021-loopback-write-test-int-sequence-103-105/stdout.txt b/captures/021-loopback-write-test-int-sequence-103-105/stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-conversations.tsv b/captures/021-loopback-write-test-int-sequence-103-105/tcp-conversations.tsv new file mode 100644 index 0000000..dbd8565 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-conversations.tsv @@ -0,0 +1,78 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2130 40767 0.000000000 20.342353582 +::1:49704 ::1:61256 400 32726 1.936591864 9.054613352 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61308 2 14170 16.789477110 16.864306688 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61260 2 13997 4.255946398 4.330805063 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61252 2 13978 0.042657852 0.462243080 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 21 8281 0.488796234 9.348239183 +::1:443 ::1:61258 8 4777 3.942883730 3.977139473 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 32 3878 4.082052469 19.214133024 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61251 1 3520 0.397482395 0.397482395 +::1:808 ::1:61312 16 2870 19.520217657 19.534470320 +::1:808 ::1:61311 16 2868 19.290060759 19.304346800 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61269 3 2703 5.920891762 8.336315393 +::1:135 ::1:61255 20 2600 1.933318615 8.931002855 +::1:808 ::1:61306 16 2430 16.521429062 16.532972574 +::1:808 ::1:61305 16 2429 16.376979589 16.388593674 +::1:808 ::1:61307 16 2423 16.673093796 16.684239149 +::1:808 ::1:61296 16 2418 14.850235224 14.863372087 +::1:808 ::1:61295 16 2417 14.708580732 14.720610142 +::1:808 ::1:61297 16 2411 15.014912367 15.027875900 +::1:808 ::1:61304 16 2398 16.231087446 16.242815733 +::1:808 ::1:61309 16 2390 16.819029331 16.829461575 +::1:808 ::1:61294 16 2386 14.560943842 14.573563337 +::1:808 ::1:61300 16 2378 15.163518906 15.175779819 +::1:32571 ::1:61257 4 2196 2.533494949 2.539538383 +::1:443 ::1:61259 6 2054 3.980730772 3.994122744 +::1:808 ::1:61287 16 1990 9.910000563 9.920713663 +::1:808 ::1:61284 16 1985 9.467858076 9.479177237 +::1:808 ::1:61289 16 1980 10.222381592 10.235713482 +::1:808 ::1:61286 16 1975 9.764821291 9.776281595 +::1:808 ::1:61288 16 1969 10.052539349 10.064426422 +::1:808 ::1:61285 16 1964 9.619516373 9.631095886 +::1:808 ::1:61292 16 1941 12.389960289 12.403552532 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61310 3 1941 18.074274778 20.268900633 +::1:80 ::1:61265 6 1821 5.224399567 5.230219603 +::1:80 ::1:61263 6 1793 5.091756821 5.098083019 +::1:80 ::1:61268 6 1793 5.766656399 5.773004532 +::1:80 ::1:61299 6 1793 15.100258589 15.106138706 +::1:80 ::1:61303 6 1793 15.776970863 15.784243584 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 11.645621538 11.646107435 +::1:80 ::1:61254 6 1788 0.213576555 0.218988657 +::1:80 ::1:61291 6 1788 10.275414467 10.281395912 +::1:80 ::1:61314 6 1788 20.215196848 20.221966028 +::1:80 ::1:61275 6 1784 7.761101961 7.766710997 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61261 2 1202 4.339530230 4.346902370 +::1:808 ::1:55800 2 1150 5.440916300 5.441378832 +10.100.0.48:1433 10.100.0.48:49792 8 1028 7.513425827 17.521484375 +10.100.0.48:1433 10.100.0.48:49805 12 1002 2.973985672 12.977050781 +127.0.0.1:57470 127.0.0.1:57477 82 984 0.009048462 20.342560768 +127.0.0.1:57684 127.0.0.1:57745 82 984 0.009190083 20.290427685 +127.0.0.1:57485 127.0.0.1:57747 82 984 0.061898947 20.300042391 +127.0.0.1:57484 127.0.0.1:57746 82 984 0.061932564 20.299813271 +127.0.0.1:57608 127.0.0.1:57631 81 972 0.014321327 20.038123369 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61283 6 913 9.313837528 9.350389481 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61282 6 900 9.289524794 9.311252594 +fe80::3608:256c:365:cc73:80 fe80::3608:256c:365:cc73:61270 2 663 7.709801674 7.710349798 +fe80::3608:256c:365:cc73:80 fe80::3608:256c:365:cc73:61277 2 663 7.816749573 7.817098379 +::1:808 ::1:49859 1 499 0.868247986 0.868247986 +::1:80 ::1:61253 2 332 0.206342697 0.210157156 +::1:80 ::1:61262 2 332 5.084223509 5.088293791 +::1:80 ::1:61264 2 332 5.218340158 5.221583128 +::1:80 ::1:61267 2 332 5.759630203 5.763428450 +::1:80 ::1:61273 2 332 7.754137039 7.758111238 +::1:80 ::1:61290 2 332 10.269533157 10.272832870 +::1:80 ::1:61298 2 332 15.093638182 15.096888781 +::1:80 ::1:61302 2 332 15.769810915 15.773599863 +::1:80 ::1:61313 2 332 20.207918406 20.211770296 +::1:49704 ::1:49829 2 270 16.598831654 16.599148273 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61266 1 52 5.699357271 5.699357271 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:61301 1 52 15.701471806 15.701471806 +127.0.0.1:49787 127.0.0.1:49788 25 25 0.043072224 20.268643379 +127.0.0.1:57471 127.0.0.1:63342 4 24 2.596129179 17.598250866 +10.100.0.48:1433 10.100.0.48:50767 2 2 0.097048283 0.280289888 +::1:49704 ::1:55057 2 2 8.985171556 8.987034559 +10.100.0.48:1433 10.100.0.48:49936 2 2 11.799067497 12.900327921 +10.100.0.48:1433 10.100.0.48:49933 2 2 12.253178358 14.095676661 +10.100.0.48:1433 10.100.0.48:49935 2 2 12.350220203 13.180722237 +10.100.0.48:1433 10.100.0.48:49934 2 2 12.364932537 13.009173393 diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-payload-packets.tsv b/captures/021-loopback-write-test-int-sequence-103-105/tcp-payload-packets.tsv new file mode 100644 index 0000000..e13309a --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-payload-packets.tsv @@ -0,0 +1,2598 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +1 0.000000000 127.0.0.1:57433 127.0.0.1:57415 378314574 12 feffffffb14a0100c14a0100 .....J...J.. +9 0.034373999 127.0.0.1:57415 127.0.0.1:57433 3334948641 12 1a00000026620b0000000000 ....&b...... +11 0.034623623 127.0.0.1:57415 127.0.0.1:57433 3334948653 26 16000000548f6340e25e31400100030000003bf41f0000000000 ....T.c@.^1@......;....... +13 0.034945250 127.0.0.1:57433 127.0.0.1:57415 378314586 12 ffffffff26620b0000000000 ....&b...... +15 0.035419226 127.0.0.1:57433 127.0.0.1:57415 378314598 12 1600000092370b0000000000 .....7...... +17 0.035619259 127.0.0.1:57433 127.0.0.1:57415 378314610 22 120000003bf41f000000000001000300000000000000 ....;................. +19 0.035915375 127.0.0.1:57415 127.0.0.1:57433 3334948679 12 ffffffff92370b0000000000 .....7...... +32 0.061859369 127.0.0.1:57415 127.0.0.1:57433 3334948691 12 feffffffc24a0100b14a0100 .....J...J.. +40 0.138582468 127.0.0.1:57415 127.0.0.1:57433 3334948703 12 1a00000027620b0000000000 ....'b...... +42 0.138763666 127.0.0.1:57415 127.0.0.1:57433 3334948715 26 16000000548f6340e25e31400100030000003df41f0000000000 ....T.c@.^1@......=....... +44 0.139175177 127.0.0.1:57433 127.0.0.1:57415 378314632 12 ffffffff27620b0000000000 ....'b...... +46 0.139718771 127.0.0.1:57433 127.0.0.1:57415 378314644 12 1600000093370b0000000000 .....7...... +48 0.139964581 127.0.0.1:57433 127.0.0.1:57415 378314656 22 120000003df41f000000000001000300000000000000 ....=................. +50 0.140234232 127.0.0.1:57415 127.0.0.1:57433 3334948741 12 ffffffff93370b0000000000 .....7...... +82 0.227178335 127.0.0.1:57415 127.0.0.1:57433 3334948753 12 2200000028620b0000000000 "...(b...... +84 0.227370024 127.0.0.1:57415 127.0.0.1:57433 3334948765 34 1e0000001c2118d0c46f33bb010003000000471e02000000000006c332c39d01 .....!...o3.......G.........2..... +86 0.227505922 127.0.0.1:57415 127.0.0.1:57433 3334948799 12 4300000029620b0000000000 C...)b...... +88 0.227590799 127.0.0.1:57415 127.0.0.1:57433 3334948811 67 3f000000980433cb0cb47c380100030000000100000000471e0200000000003d ?.....3...|8...........G.......=B.....&......... +90 0.227788210 127.0.0.1:57433 127.0.0.1:57415 378314678 12 ffffffff28620b0000000000 ....(b...... +92 0.228003263 127.0.0.1:57433 127.0.0.1:57415 378314690 12 ffffffff29620b0000000000 ....)b...... +94 0.228772640 127.0.0.1:57433 127.0.0.1:57415 378314702 12 3400000094370b0000000000 4....7...... +96 0.228932858 127.0.0.1:57433 127.0.0.1:57415 378314714 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....G.........a.u. +98 0.229183435 127.0.0.1:57415 127.0.0.1:57433 3334948878 12 ffffffff94370b0000000000 .....7...... +100 0.230028868 127.0.0.1:57415 127.0.0.1:57433 3334948890 12 1e0000002a620b0000000000 ....*b...... +102 0.230165958 127.0.0.1:57415 127.0.0.1:57433 3334948902 30 1a00000055ceff62b21b3a500100030000003ff41f000000000000000000 ....U..b..:P......?........... +104 0.230499029 127.0.0.1:57433 127.0.0.1:57415 378314766 12 ffffffff2a620b0000000000 ....*b...... +106 0.231077433 127.0.0.1:57433 127.0.0.1:57415 378314778 12 1a00000095370b0000000000 .....7...... +108 0.231249332 127.0.0.1:57433 127.0.0.1:57415 378314790 26 160000003ff41f00000000000100030000000000000000000000 ....?..................... +110 0.231473684 127.0.0.1:57415 127.0.0.1:57433 3334948932 12 ffffffff95370b0000000000 .....7...... +112 0.242877960 127.0.0.1:57415 127.0.0.1:57433 3334948944 12 1a0000002b620b0000000000 ....+b...... +114 0.243033886 127.0.0.1:57415 127.0.0.1:57433 3334948956 26 16000000548f6340e25e314001000300000041f41f0000000000 ....T.c@.^1@......A....... +116 0.243411779 127.0.0.1:57433 127.0.0.1:57415 378314816 12 ffffffff2b620b0000000000 ....+b...... +118 0.243879080 127.0.0.1:57433 127.0.0.1:57415 378314828 12 1600000096370b0000000000 .....7...... +120 0.244075298 127.0.0.1:57433 127.0.0.1:57415 378314840 22 1200000041f41f000000000001000300000000000000 ....A................. +122 0.244416237 127.0.0.1:57415 127.0.0.1:57433 3334948982 12 ffffffff96370b0000000000 .....7...... +134 0.346707106 127.0.0.1:57415 127.0.0.1:57433 3334948994 12 1a0000002c620b0000000000 ....,b...... +136 0.346900463 127.0.0.1:57415 127.0.0.1:57433 3334949006 26 16000000548f6340e25e314001000300000043f41f0000000000 ....T.c@.^1@......C....... +138 0.347312689 127.0.0.1:57433 127.0.0.1:57415 378314862 12 ffffffff2c620b0000000000 ....,b...... +140 0.347742558 127.0.0.1:57433 127.0.0.1:57415 378314874 12 1600000097370b0000000000 .....7...... +142 0.347905397 127.0.0.1:57433 127.0.0.1:57415 378314886 22 1200000043f41f000000000001000300000000000000 ....C................. +144 0.348195553 127.0.0.1:57415 127.0.0.1:57433 3334949032 12 ffffffff97370b0000000000 .....7...... +154 0.449663162 127.0.0.1:57415 127.0.0.1:57433 3334949044 12 1a0000002d620b0000000000 ....-b...... +156 0.449885845 127.0.0.1:57415 127.0.0.1:57433 3334949056 26 16000000548f6340e25e314001000300000045f41f0000000000 ....T.c@.^1@......E....... +158 0.450319529 127.0.0.1:57433 127.0.0.1:57415 378314908 12 ffffffff2d620b0000000000 ....-b...... +160 0.451021671 127.0.0.1:57433 127.0.0.1:57415 378314920 12 1600000098370b0000000000 .....7...... +162 0.451224327 127.0.0.1:57433 127.0.0.1:57415 378314932 22 1200000045f41f000000000001000300000000000000 ....E................. +164 0.451523781 127.0.0.1:57415 127.0.0.1:57433 3334949082 12 ffffffff98370b0000000000 .....7...... +182 0.499554873 127.0.0.1:57433 127.0.0.1:57415 378314954 12 feffffffb24a0100c24a0100 .....J...J.. +190 0.531247616 127.0.0.1:57415 127.0.0.1:57433 3334949094 12 650000002e620b0000000000 e....b...... +192 0.531433582 127.0.0.1:57415 127.0.0.1:57433 3334949106 101 1e0000001c2118d0c46f33bb010003000000481e02000000000036c432c39d01 .....!...o3.......H.......6.2.....?.....3...|8.. +194 0.531855345 127.0.0.1:57433 127.0.0.1:57415 378314966 12 ffffffff2e620b0000000000 .....b...... +196 0.532898188 127.0.0.1:57433 127.0.0.1:57415 378314978 12 3400000099370b0000000000 4....7...... +198 0.533122063 127.0.0.1:57433 127.0.0.1:57415 378314990 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....H.........\%.. +200 0.533396482 127.0.0.1:57415 127.0.0.1:57433 3334949207 12 ffffffff99370b0000000000 .....7...... +202 0.534198284 127.0.0.1:57415 127.0.0.1:57433 3334949219 12 1e0000002f620b0000000000 ..../b...... +204 0.534542322 127.0.0.1:57415 127.0.0.1:57433 3334949231 30 1a00000055ceff62b21b3a5001000300000047f41f000000000000000000 ....U..b..:P......G........... +206 0.535331488 127.0.0.1:57433 127.0.0.1:57415 378315042 12 ffffffff2f620b0000000000 ..../b...... +208 0.536261797 127.0.0.1:57433 127.0.0.1:57415 378315054 12 1a0000009a370b0000000000 .....7...... +210 0.536454678 127.0.0.1:57433 127.0.0.1:57415 378315066 26 1600000047f41f00000000000100030000000000000000000000 ....G..................... +212 0.536803246 127.0.0.1:57415 127.0.0.1:57433 3334949261 12 ffffffff9a370b0000000000 .....7...... +214 0.552546501 127.0.0.1:57415 127.0.0.1:57433 3334949273 12 1a00000030620b0000000000 ....0b...... +216 0.552706242 127.0.0.1:57415 127.0.0.1:57433 3334949285 26 16000000548f6340e25e314001000300000049f41f0000000000 ....T.c@.^1@......I....... +218 0.553029299 127.0.0.1:57433 127.0.0.1:57415 378315092 12 ffffffff30620b0000000000 ....0b...... +220 0.553613186 127.0.0.1:57433 127.0.0.1:57415 378315104 12 160000009b370b0000000000 .....7...... +222 0.553775311 127.0.0.1:57433 127.0.0.1:57415 378315116 22 1200000049f41f000000000001000300000000000000 ....I................. +224 0.554094553 127.0.0.1:57415 127.0.0.1:57433 3334949311 12 ffffffff9b370b0000000000 .....7...... +226 0.562287807 127.0.0.1:57415 127.0.0.1:57433 3334949323 12 feffffffc34a0100b24a0100 .....J...J.. +232 0.655207634 127.0.0.1:57415 127.0.0.1:57433 3334949335 12 1a00000031620b0000000000 ....1b...... +234 0.655391455 127.0.0.1:57415 127.0.0.1:57433 3334949347 26 16000000548f6340e25e31400100030000004bf41f0000000000 ....T.c@.^1@......K....... +236 0.655890942 127.0.0.1:57433 127.0.0.1:57415 378315138 12 ffffffff31620b0000000000 ....1b...... +238 0.656247854 127.0.0.1:57433 127.0.0.1:57415 378315150 12 160000009c370b0000000000 .....7...... +240 0.656417847 127.0.0.1:57433 127.0.0.1:57415 378315162 22 120000004bf41f000000000001000300000000000000 ....K................. +242 0.656790972 127.0.0.1:57415 127.0.0.1:57433 3334949373 12 ffffffff9c370b0000000000 .....7...... +244 0.758419991 127.0.0.1:57415 127.0.0.1:57433 3334949385 12 1a00000032620b0000000000 ....2b...... +246 0.758610487 127.0.0.1:57415 127.0.0.1:57433 3334949397 26 16000000548f6340e25e31400100030000004df41f0000000000 ....T.c@.^1@......M....... +248 0.759098768 127.0.0.1:57433 127.0.0.1:57415 378315184 12 ffffffff32620b0000000000 ....2b...... +251 0.762262583 127.0.0.1:57433 127.0.0.1:57415 378315196 12 160000009d370b0000000000 .....7...... +253 0.762426138 127.0.0.1:57433 127.0.0.1:57415 378315208 22 120000004df41f000000000001000300000000000000 ....M................. +255 0.762734652 127.0.0.1:57415 127.0.0.1:57433 3334949423 12 ffffffff9d370b0000000000 .....7...... +265 0.836011171 127.0.0.1:57415 127.0.0.1:57433 3334949435 12 2200000033620b0000000000 "...3b...... +267 0.836193323 127.0.0.1:57415 127.0.0.1:57433 3334949447 34 1e0000001c2118d0c46f33bb010003000000491e02000000000068c532c39d01 .....!...o3.......I.......h.2..... +269 0.836332083 127.0.0.1:57415 127.0.0.1:57433 3334949481 12 4300000034620b0000000000 C...4b...... +271 0.836420298 127.0.0.1:57415 127.0.0.1:57433 3334949493 67 3f000000980433cb0cb47c380100030000000100000000491e0200000000003d ?.....3...|8...........I.......=B.....&......... +273 0.836518288 127.0.0.1:57433 127.0.0.1:57415 378315230 12 ffffffff33620b0000000000 ....3b...... +275 0.836763382 127.0.0.1:57433 127.0.0.1:57415 378315242 12 ffffffff34620b0000000000 ....4b...... +277 0.837388039 127.0.0.1:57433 127.0.0.1:57415 378315254 12 340000009e370b0000000000 4....7...... +279 0.837543964 127.0.0.1:57433 127.0.0.1:57415 378315266 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....I............. +281 0.837989569 127.0.0.1:57415 127.0.0.1:57433 3334949560 12 ffffffff9e370b0000000000 .....7...... +283 0.838605165 127.0.0.1:57415 127.0.0.1:57433 3334949572 12 1e00000035620b0000000000 ....5b...... +285 0.838787079 127.0.0.1:57415 127.0.0.1:57433 3334949584 30 1a00000055ceff62b21b3a500100030000004ff41f000000000000000000 ....U..b..:P......O........... +287 0.839070082 127.0.0.1:57433 127.0.0.1:57415 378315318 12 ffffffff35620b0000000000 ....5b...... +289 0.839454174 127.0.0.1:57433 127.0.0.1:57415 378315330 12 1a0000009f370b0000000000 .....7...... +291 0.839603186 127.0.0.1:57433 127.0.0.1:57415 378315342 26 160000004ff41f00000000000100030000000000000000000000 ....O..................... +293 0.839963913 127.0.0.1:57415 127.0.0.1:57433 3334949614 12 ffffffff9f370b0000000000 .....7...... +295 0.864320993 127.0.0.1:57415 127.0.0.1:57433 3334949626 12 1a00000036620b0000000000 ....6b...... +297 0.864569187 127.0.0.1:57415 127.0.0.1:57433 3334949638 26 16000000548f6340e25e314001000300000051f41f0000000000 ....T.c@.^1@......Q....... +299 0.865037203 127.0.0.1:57433 127.0.0.1:57415 378315368 12 ffffffff36620b0000000000 ....6b...... +301 0.865499735 127.0.0.1:57433 127.0.0.1:57415 378315380 12 16000000a0370b0000000000 .....7...... +303 0.865661383 127.0.0.1:57433 127.0.0.1:57415 378315392 22 1200000051f41f000000000001000300000000000000 ....Q................. +305 0.865934849 127.0.0.1:57415 127.0.0.1:57433 3334949664 12 ffffffffa0370b0000000000 .....7...... +311 0.967320919 127.0.0.1:57415 127.0.0.1:57433 3334949676 12 1a00000037620b0000000000 ....7b...... +313 0.967515230 127.0.0.1:57415 127.0.0.1:57433 3334949688 26 16000000548f6340e25e314001000300000053f41f0000000000 ....T.c@.^1@......S....... +315 0.967930794 127.0.0.1:57433 127.0.0.1:57415 378315414 12 ffffffff37620b0000000000 ....7b...... +317 0.968378782 127.0.0.1:57433 127.0.0.1:57415 378315426 12 16000000a1370b0000000000 .....7...... +319 0.968543530 127.0.0.1:57433 127.0.0.1:57415 378315438 22 1200000053f41f000000000001000300000000000000 ....S................. +321 0.968871593 127.0.0.1:57415 127.0.0.1:57433 3334949714 12 ffffffffa1370b0000000000 .....7...... +323 1.000117302 127.0.0.1:57433 127.0.0.1:57415 378315460 12 feffffffb34a0100c34a0100 .....J...J.. +331 1.063070774 127.0.0.1:57415 127.0.0.1:57433 3334949726 12 feffffffc44a0100b34a0100 .....J...J.. +337 1.070526361 127.0.0.1:57415 127.0.0.1:57433 3334949738 12 1a00000038620b0000000000 ....8b...... +339 1.070684671 127.0.0.1:57415 127.0.0.1:57433 3334949750 26 16000000548f6340e25e314001000300000055f41f0000000000 ....T.c@.^1@......U....... +341 1.070990562 127.0.0.1:57433 127.0.0.1:57415 378315472 12 ffffffff38620b0000000000 ....8b...... +343 1.071482420 127.0.0.1:57433 127.0.0.1:57415 378315484 12 16000000a2370b0000000000 .....7...... +345 1.071647406 127.0.0.1:57433 127.0.0.1:57415 378315496 22 1200000055f41f000000000001000300000000000000 ....U................. +347 1.072096825 127.0.0.1:57415 127.0.0.1:57433 3334949776 12 ffffffffa2370b0000000000 .....7...... +349 1.140230179 127.0.0.1:57415 127.0.0.1:57433 3334949788 12 6500000039620b0000000000 e...9b...... +351 1.140417099 127.0.0.1:57415 127.0.0.1:57433 3334949800 101 1e0000001c2118d0c46f33bb0100030000004a1e02000000000097c632c39d01 .....!...o3.......J.........2.....?.....3...|8.. +353 1.140779972 127.0.0.1:57433 127.0.0.1:57415 378315518 12 ffffffff39620b0000000000 ....9b...... +355 1.141867638 127.0.0.1:57433 127.0.0.1:57415 378315530 12 34000000a3370b0000000000 4....7...... +357 1.142033339 127.0.0.1:57433 127.0.0.1:57415 378315542 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....J.........k... +359 1.142598391 127.0.0.1:57415 127.0.0.1:57433 3334949901 12 ffffffffa3370b0000000000 .....7...... +361 1.143373013 127.0.0.1:57415 127.0.0.1:57433 3334949913 12 1e0000003a620b0000000000 ....:b...... +363 1.143534899 127.0.0.1:57415 127.0.0.1:57433 3334949925 30 1a00000055ceff62b21b3a5001000300000057f41f000000000000000000 ....U..b..:P......W........... +365 1.143879890 127.0.0.1:57433 127.0.0.1:57415 378315594 12 ffffffff3a620b0000000000 ....:b...... +367 1.144250393 127.0.0.1:57433 127.0.0.1:57415 378315606 12 1a000000a4370b0000000000 .....7...... +369 1.144394159 127.0.0.1:57433 127.0.0.1:57415 378315618 26 1600000057f41f00000000000100030000000000000000000000 ....W..................... +371 1.144713640 127.0.0.1:57415 127.0.0.1:57433 3334949955 12 ffffffffa4370b0000000000 .....7...... +373 1.173499823 127.0.0.1:57415 127.0.0.1:57433 3334949967 12 1a0000003b620b0000000000 ....;b...... +375 1.173663139 127.0.0.1:57415 127.0.0.1:57433 3334949979 26 16000000548f6340e25e314001000300000059f41f0000000000 ....T.c@.^1@......Y....... +377 1.174061775 127.0.0.1:57433 127.0.0.1:57415 378315644 12 ffffffff3b620b0000000000 ....;b...... +379 1.174793005 127.0.0.1:57433 127.0.0.1:57415 378315656 12 16000000a5370b0000000000 .....7...... +381 1.174955130 127.0.0.1:57433 127.0.0.1:57415 378315668 22 1200000059f41f000000000001000300000000000000 ....Y................. +383 1.175248146 127.0.0.1:57415 127.0.0.1:57433 3334950005 12 ffffffffa5370b0000000000 .....7...... +391 1.276422024 127.0.0.1:57415 127.0.0.1:57433 3334950017 12 1a0000003c620b0000000000 ....b...... +421 1.444653034 127.0.0.1:57415 127.0.0.1:57433 3334950129 101 1e0000001c2118d0c46f33bb0100030000004b1e020000000000c7c732c39d01 .....!...o3.......K.........2.....?.....3...|8.. +423 1.445101738 127.0.0.1:57433 127.0.0.1:57415 378315782 12 ffffffff3e620b0000000000 ....>b...... +425 1.445843220 127.0.0.1:57433 127.0.0.1:57415 378315794 12 34000000a8370b0000000000 4....7...... +427 1.445996761 127.0.0.1:57433 127.0.0.1:57415 378315806 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....K..........s/. +429 1.446356297 127.0.0.1:57415 127.0.0.1:57433 3334950230 12 ffffffffa8370b0000000000 .....7...... +431 1.447154760 127.0.0.1:57415 127.0.0.1:57433 3334950242 12 1e0000003f620b0000000000 ....?b...... +433 1.447457552 127.0.0.1:57415 127.0.0.1:57433 3334950254 30 1a00000055ceff62b21b3a500100030000005ff41f000000000000000000 ....U..b..:P......_........... +435 1.447784662 127.0.0.1:57433 127.0.0.1:57415 378315858 12 ffffffff3f620b0000000000 ....?b...... +437 1.448478460 127.0.0.1:57433 127.0.0.1:57415 378315870 12 1a000000a9370b0000000000 .....7...... +439 1.448621511 127.0.0.1:57433 127.0.0.1:57415 378315882 26 160000005ff41f00000000000100030000000000000000000000 ...._..................... +441 1.448862791 127.0.0.1:57415 127.0.0.1:57433 3334950284 12 ffffffffa9370b0000000000 .....7...... +443 1.483013391 127.0.0.1:57415 127.0.0.1:57433 3334950296 12 1a00000040620b0000000000 ....@b...... +445 1.483186007 127.0.0.1:57415 127.0.0.1:57433 3334950308 26 16000000548f6340e25e314001000300000061f41f0000000000 ....T.c@.^1@......a....... +447 1.483612537 127.0.0.1:57433 127.0.0.1:57415 378315908 12 ffffffff40620b0000000000 ....@b...... +449 1.483972073 127.0.0.1:57433 127.0.0.1:57415 378315920 12 16000000aa370b0000000000 .....7...... +451 1.484169006 127.0.0.1:57433 127.0.0.1:57415 378315932 22 1200000061f41f000000000001000300000000000000 ....a................. +453 1.484522343 127.0.0.1:57415 127.0.0.1:57433 3334950334 12 ffffffffaa370b0000000000 .....7...... +455 1.501389503 127.0.0.1:57433 127.0.0.1:57415 378315954 12 feffffffb44a0100c44a0100 .....J...J.. +463 1.563988447 127.0.0.1:57415 127.0.0.1:57433 3334950346 12 feffffffc54a0100b44a0100 .....J...J.. +469 1.585749865 127.0.0.1:57415 127.0.0.1:57433 3334950358 12 1a00000041620b0000000000 ....Ab...... +471 1.585912466 127.0.0.1:57415 127.0.0.1:57433 3334950370 26 16000000548f6340e25e314001000300000063f41f0000000000 ....T.c@.^1@......c....... +473 1.586344242 127.0.0.1:57433 127.0.0.1:57415 378315966 12 ffffffff41620b0000000000 ....Ab...... +475 1.586667061 127.0.0.1:57433 127.0.0.1:57415 378315978 12 16000000ab370b0000000000 .....7...... +477 1.586829424 127.0.0.1:57433 127.0.0.1:57415 378315990 22 1200000063f41f000000000001000300000000000000 ....c................. +479 1.587118864 127.0.0.1:57415 127.0.0.1:57433 3334950396 12 ffffffffab370b0000000000 .....7...... +481 1.688702583 127.0.0.1:57415 127.0.0.1:57433 3334950408 12 1a00000042620b0000000000 ....Bb...... +483 1.688912392 127.0.0.1:57415 127.0.0.1:57433 3334950420 26 16000000548f6340e25e314001000300000065f41f0000000000 ....T.c@.^1@......e....... +485 1.689200878 127.0.0.1:57433 127.0.0.1:57415 378316012 12 ffffffff42620b0000000000 ....Bb...... +487 1.689879179 127.0.0.1:57433 127.0.0.1:57415 378316024 12 16000000ac370b0000000000 .....7...... +489 1.690096140 127.0.0.1:57433 127.0.0.1:57415 378316036 22 1200000065f41f000000000001000300000000000000 ....e................. +491 1.690403700 127.0.0.1:57415 127.0.0.1:57433 3334950446 12 ffffffffac370b0000000000 .....7...... +493 1.749678373 127.0.0.1:57415 127.0.0.1:57433 3334950458 12 6500000043620b0000000000 e...Cb...... +495 1.749886751 127.0.0.1:57415 127.0.0.1:57433 3334950470 101 1e0000001c2118d0c46f33bb0100030000004c1e020000000000f9c832c39d01 .....!...o3.......L.........2.....?.....3...|8.. +497 1.750463009 127.0.0.1:57433 127.0.0.1:57415 378316058 12 ffffffff43620b0000000000 ....Cb...... +499 1.751186132 127.0.0.1:57433 127.0.0.1:57415 378316070 12 34000000ad370b0000000000 4....7...... +501 1.751359463 127.0.0.1:57433 127.0.0.1:57415 378316082 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....L...........^. +503 1.751655340 127.0.0.1:57415 127.0.0.1:57433 3334950571 12 ffffffffad370b0000000000 .....7...... +505 1.752482176 127.0.0.1:57415 127.0.0.1:57433 3334950583 12 1e00000044620b0000000000 ....Db...... +507 1.752643347 127.0.0.1:57415 127.0.0.1:57433 3334950595 30 1a00000055ceff62b21b3a5001000300000067f41f000000000000000000 ....U..b..:P......g........... +509 1.752971172 127.0.0.1:57433 127.0.0.1:57415 378316134 12 ffffffff44620b0000000000 ....Db...... +511 1.754657745 127.0.0.1:57433 127.0.0.1:57415 378316146 12 1a000000ae370b0000000000 .....7...... +513 1.754870415 127.0.0.1:57433 127.0.0.1:57415 378316158 26 1600000067f41f00000000000100030000000000000000000000 ....g..................... +515 1.755127192 127.0.0.1:57415 127.0.0.1:57433 3334950625 12 ffffffffae370b0000000000 .....7...... +523 1.791632175 127.0.0.1:57415 127.0.0.1:57433 3334950637 12 1a00000045620b0000000000 ....Eb...... +525 1.791802168 127.0.0.1:57415 127.0.0.1:57433 3334950649 26 16000000548f6340e25e314001000300000069f41f0000000000 ....T.c@.^1@......i....... +527 1.792071819 127.0.0.1:57433 127.0.0.1:57415 378316184 12 ffffffff45620b0000000000 ....Eb...... +529 1.792611599 127.0.0.1:57433 127.0.0.1:57415 378316196 12 16000000af370b0000000000 .....7...... +531 1.792784691 127.0.0.1:57433 127.0.0.1:57415 378316208 22 1200000069f41f000000000001000300000000000000 ....i................. +533 1.793065548 127.0.0.1:57415 127.0.0.1:57433 3334950675 12 ffffffffaf370b0000000000 .....7...... +539 1.894321442 127.0.0.1:57415 127.0.0.1:57433 3334950687 12 1a00000046620b0000000000 ....Fb...... +541 1.894516230 127.0.0.1:57415 127.0.0.1:57433 3334950699 26 16000000548f6340e25e31400100030000006bf41f0000000000 ....T.c@.^1@......k....... +543 1.894874096 127.0.0.1:57433 127.0.0.1:57415 378316230 12 ffffffff46620b0000000000 ....Fb...... +545 1.895452023 127.0.0.1:57433 127.0.0.1:57415 378316242 12 16000000b0370b0000000000 .....7...... +547 1.895619869 127.0.0.1:57433 127.0.0.1:57415 378316254 22 120000006bf41f000000000001000300000000000000 ....k................. +549 1.896002531 127.0.0.1:57415 127.0.0.1:57433 3334950725 12 ffffffffb0370b0000000000 .....7...... +637 1.997193098 127.0.0.1:57415 127.0.0.1:57433 3334950737 12 1a00000047620b0000000000 ....Gb...... +639 1.997414589 127.0.0.1:57415 127.0.0.1:57433 3334950749 26 16000000548f6340e25e31400100030000006df41f0000000000 ....T.c@.^1@......m....... +641 1.997841597 127.0.0.1:57433 127.0.0.1:57415 378316276 12 ffffffff47620b0000000000 ....Gb...... +643 1.998296738 127.0.0.1:57433 127.0.0.1:57415 378316288 12 16000000b1370b0000000000 .....7...... +645 1.998562574 127.0.0.1:57433 127.0.0.1:57415 378316300 22 120000006df41f000000000001000300000000000000 ....m................. +647 1.998799801 127.0.0.1:57415 127.0.0.1:57433 3334950775 12 ffffffffb1370b0000000000 .....7...... +649 2.002935410 127.0.0.1:57433 127.0.0.1:57415 378316322 12 feffffffb54a0100c54a0100 .....J...J.. +657 2.053400993 127.0.0.1:57415 127.0.0.1:57433 3334950787 12 6500000048620b0000000000 e...Hb...... +659 2.053550482 127.0.0.1:57415 127.0.0.1:57433 3334950799 101 1e0000001c2118d0c46f33bb0100030000004d1e02000000000028ca32c39d01 .....!...o3.......M.......(.2.....?.....3...|8.. +661 2.053912640 127.0.0.1:57433 127.0.0.1:57415 378316334 12 ffffffff48620b0000000000 ....Hb...... +663 2.055067062 127.0.0.1:57433 127.0.0.1:57415 378316346 12 34000000b2370b0000000000 4....7...... +665 2.055282354 127.0.0.1:57433 127.0.0.1:57415 378316358 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....M..........h.. +667 2.055614948 127.0.0.1:57415 127.0.0.1:57433 3334950900 12 ffffffffb2370b0000000000 .....7...... +671 2.056398392 127.0.0.1:57415 127.0.0.1:57433 3334950912 12 1e00000049620b0000000000 ....Ib...... +673 2.056536674 127.0.0.1:57415 127.0.0.1:57433 3334950924 30 1a00000055ceff62b21b3a500100030000006ff41f000000000000000000 ....U..b..:P......o........... +675 2.056709051 127.0.0.1:57433 127.0.0.1:57415 378316410 12 ffffffff49620b0000000000 ....Ib...... +681 2.057076693 127.0.0.1:57433 127.0.0.1:57415 378316422 12 1a000000b3370b0000000000 .....7...... +684 2.057239771 127.0.0.1:57433 127.0.0.1:57415 378316434 26 160000006ff41f00000000000100030000000000000000000000 ....o..................... +687 2.057611704 127.0.0.1:57415 127.0.0.1:57433 3334950954 12 ffffffffb3370b0000000000 .....7...... +741 2.064832211 127.0.0.1:57415 127.0.0.1:57433 3334950966 12 feffffffc64a0100b54a0100 .....J...J.. +815 2.099917412 127.0.0.1:57415 127.0.0.1:57433 3334950978 12 1a0000004a620b0000000000 ....Jb...... +817 2.100078344 127.0.0.1:57415 127.0.0.1:57433 3334950990 26 16000000548f6340e25e314001000300000071f41f0000000000 ....T.c@.^1@......q....... +819 2.100431919 127.0.0.1:57433 127.0.0.1:57415 378316460 12 ffffffff4a620b0000000000 ....Jb...... +821 2.100987673 127.0.0.1:57433 127.0.0.1:57415 378316472 12 16000000b4370b0000000000 .....7...... +823 2.101188183 127.0.0.1:57433 127.0.0.1:57415 378316484 22 1200000071f41f000000000001000300000000000000 ....q................. +825 2.101596594 127.0.0.1:57415 127.0.0.1:57433 3334951016 12 ffffffffb4370b0000000000 .....7...... +827 2.204149485 127.0.0.1:57415 127.0.0.1:57433 3334951028 12 1a0000004b620b0000000000 ....Kb...... +829 2.204327822 127.0.0.1:57415 127.0.0.1:57433 3334951040 26 16000000548f6340e25e314001000300000073f41f0000000000 ....T.c@.^1@......s....... +831 2.204781771 127.0.0.1:57433 127.0.0.1:57415 378316506 12 ffffffff4b620b0000000000 ....Kb...... +833 2.208680868 127.0.0.1:57433 127.0.0.1:57415 378316518 12 16000000b5370b0000000000 .....7...... +835 2.208876371 127.0.0.1:57433 127.0.0.1:57415 378316530 22 1200000073f41f000000000001000300000000000000 ....s................. +837 2.209157467 127.0.0.1:57415 127.0.0.1:57433 3334951066 12 ffffffffb5370b0000000000 .....7...... +912 2.311485291 127.0.0.1:57415 127.0.0.1:57433 3334951078 12 1a0000004c620b0000000000 ....Lb...... +914 2.311741829 127.0.0.1:57415 127.0.0.1:57433 3334951090 26 16000000548f6340e25e314001000300000075f41f0000000000 ....T.c@.^1@......u....... +916 2.312105417 127.0.0.1:57433 127.0.0.1:57415 378316552 12 ffffffff4c620b0000000000 ....Lb...... +918 2.312764168 127.0.0.1:57433 127.0.0.1:57415 378316564 12 16000000b6370b0000000000 .....7...... +920 2.313018560 127.0.0.1:57433 127.0.0.1:57415 378316576 22 1200000075f41f000000000001000300000000000000 ....u................. +922 2.313296795 127.0.0.1:57415 127.0.0.1:57433 3334951116 12 ffffffffb6370b0000000000 .....7...... +926 2.358938217 127.0.0.1:57415 127.0.0.1:57433 3334951128 12 650000004d620b0000000000 e...Mb...... +928 2.359107494 127.0.0.1:57415 127.0.0.1:57433 3334951140 101 1e0000001c2118d0c46f33bb0100030000004e1e0200000000005acb32c39d01 .....!...o3.......N.......Z.2.....?.....3...|8.. +930 2.359421730 127.0.0.1:57433 127.0.0.1:57415 378316598 12 ffffffff4d620b0000000000 ....Mb...... +932 2.360593319 127.0.0.1:57433 127.0.0.1:57415 378316610 12 34000000b7370b0000000000 4....7...... +934 2.360785961 127.0.0.1:57433 127.0.0.1:57415 378316622 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....N.........D... +936 2.361047506 127.0.0.1:57415 127.0.0.1:57433 3334951241 12 ffffffffb7370b0000000000 .....7...... +938 2.361920357 127.0.0.1:57415 127.0.0.1:57433 3334951253 12 1e0000004e620b0000000000 ....Nb...... +940 2.362062693 127.0.0.1:57415 127.0.0.1:57433 3334951265 30 1a00000055ceff62b21b3a5001000300000077f41f000000000000000000 ....U..b..:P......w........... +942 2.362311125 127.0.0.1:57433 127.0.0.1:57415 378316674 12 ffffffff4e620b0000000000 ....Nb...... +944 2.362791300 127.0.0.1:57433 127.0.0.1:57415 378316686 12 1a000000b8370b0000000000 .....7...... +946 2.362986803 127.0.0.1:57433 127.0.0.1:57415 378316698 26 1600000077f41f00000000000100030000000000000000000000 ....w..................... +948 2.363246441 127.0.0.1:57415 127.0.0.1:57433 3334951295 12 ffffffffb8370b0000000000 .....7...... +1028 2.414350033 127.0.0.1:57415 127.0.0.1:57433 3334951307 12 1a0000004f620b0000000000 ....Ob...... +1030 2.414527893 127.0.0.1:57415 127.0.0.1:57433 3334951319 26 16000000548f6340e25e314001000300000079f41f0000000000 ....T.c@.^1@......y....... +1032 2.414932728 127.0.0.1:57433 127.0.0.1:57415 378316724 12 ffffffff4f620b0000000000 ....Ob...... +1034 2.415475130 127.0.0.1:57433 127.0.0.1:57415 378316736 12 16000000b9370b0000000000 .....7...... +1036 2.415704727 127.0.0.1:57433 127.0.0.1:57415 378316748 22 1200000079f41f000000000001000300000000000000 ....y................. +1038 2.416048765 127.0.0.1:57415 127.0.0.1:57433 3334951345 12 ffffffffb9370b0000000000 .....7...... +1040 2.503593683 127.0.0.1:57433 127.0.0.1:57415 378316770 12 feffffffb64a0100c64a0100 .....J...J.. +1048 2.517361164 127.0.0.1:57415 127.0.0.1:57433 3334951357 12 1a00000050620b0000000000 ....Pb...... +1050 2.517542839 127.0.0.1:57415 127.0.0.1:57433 3334951369 26 16000000548f6340e25e31400100030000007bf41f0000000000 ....T.c@.^1@......{....... +1052 2.517995358 127.0.0.1:57433 127.0.0.1:57415 378316782 12 ffffffff50620b0000000000 ....Pb...... +1054 2.519185543 127.0.0.1:57433 127.0.0.1:57415 378316794 12 16000000ba370b0000000000 .....7...... +1056 2.519348860 127.0.0.1:57433 127.0.0.1:57415 378316806 22 120000007bf41f000000000001000300000000000000 ....{................. +1058 2.519607782 127.0.0.1:57415 127.0.0.1:57433 3334951395 12 ffffffffba370b0000000000 .....7...... +1071 2.566067934 127.0.0.1:57415 127.0.0.1:57433 3334951407 12 feffffffc74a0100b64a0100 .....J...J.. +1079 2.622262716 127.0.0.1:57415 127.0.0.1:57433 3334951419 12 1a00000051620b0000000000 ....Qb...... +1081 2.622459888 127.0.0.1:57415 127.0.0.1:57433 3334951431 26 16000000548f6340e25e31400100030000007df41f0000000000 ....T.c@.^1@......}....... +1083 2.622841358 127.0.0.1:57433 127.0.0.1:57415 378316828 12 ffffffff51620b0000000000 ....Qb...... +1085 2.623673201 127.0.0.1:57433 127.0.0.1:57415 378316840 12 16000000bb370b0000000000 .....7...... +1087 2.623869419 127.0.0.1:57433 127.0.0.1:57415 378316852 22 120000007df41f000000000001000300000000000000 ....}................. +1089 2.624148369 127.0.0.1:57415 127.0.0.1:57433 3334951457 12 ffffffffbb370b0000000000 .....7...... +1091 2.663804054 127.0.0.1:57415 127.0.0.1:57433 3334951469 12 6500000052620b0000000000 e...Rb...... +1093 2.663968801 127.0.0.1:57415 127.0.0.1:57433 3334951481 101 1e0000001c2118d0c46f33bb0100030000004f1e0200000000008bcc32c39d01 .....!...o3.......O.........2.....?.....3...|8.. +1095 2.664254427 127.0.0.1:57433 127.0.0.1:57415 378316874 12 ffffffff52620b0000000000 ....Rb...... +1097 2.666011810 127.0.0.1:57433 127.0.0.1:57415 378316886 12 34000000bc370b0000000000 4....7...... +1099 2.666168451 127.0.0.1:57433 127.0.0.1:57415 378316898 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....O............. +1101 2.666492939 127.0.0.1:57415 127.0.0.1:57433 3334951582 12 ffffffffbc370b0000000000 .....7...... +1103 2.667170048 127.0.0.1:57415 127.0.0.1:57433 3334951594 12 1e00000053620b0000000000 ....Sb...... +1105 2.667329788 127.0.0.1:57415 127.0.0.1:57433 3334951606 30 1a00000055ceff62b21b3a500100030000007ff41f000000000000000000 ....U..b..:P.................. +1107 2.667559147 127.0.0.1:57433 127.0.0.1:57415 378316950 12 ffffffff53620b0000000000 ....Sb...... +1109 2.667960644 127.0.0.1:57433 127.0.0.1:57415 378316962 12 1a000000bd370b0000000000 .....7...... +1111 2.668107510 127.0.0.1:57433 127.0.0.1:57415 378316974 26 160000007ff41f00000000000100030000000000000000000000 .......................... +1113 2.668347120 127.0.0.1:57415 127.0.0.1:57433 3334951636 12 ffffffffbd370b0000000000 .....7...... +1115 2.726359844 127.0.0.1:57415 127.0.0.1:57433 3334951648 12 1a00000054620b0000000000 ....Tb...... +1117 2.726655483 127.0.0.1:57415 127.0.0.1:57433 3334951660 26 16000000548f6340e25e314001000300000081f41f0000000000 ....T.c@.^1@.............. +1119 2.727068663 127.0.0.1:57433 127.0.0.1:57415 378317000 12 ffffffff54620b0000000000 ....Tb...... +1121 2.727483749 127.0.0.1:57433 127.0.0.1:57415 378317012 12 16000000be370b0000000000 .....7...... +1123 2.727659941 127.0.0.1:57433 127.0.0.1:57415 378317024 22 1200000081f41f000000000001000300000000000000 ...................... +1125 2.728013992 127.0.0.1:57415 127.0.0.1:57433 3334951686 12 ffffffffbe370b0000000000 .....7...... +1136 2.829837799 127.0.0.1:57415 127.0.0.1:57433 3334951698 12 1a00000055620b0000000000 ....Ub...... +1138 2.830068111 127.0.0.1:57415 127.0.0.1:57433 3334951710 26 16000000548f6340e25e314001000300000083f41f0000000000 ....T.c@.^1@.............. +1140 2.830533266 127.0.0.1:57433 127.0.0.1:57415 378317046 12 ffffffff55620b0000000000 ....Ub...... +1142 2.831118822 127.0.0.1:57433 127.0.0.1:57415 378317058 12 16000000bf370b0000000000 .....7...... +1144 2.831374884 127.0.0.1:57433 127.0.0.1:57415 378317070 22 1200000083f41f000000000001000300000000000000 ...................... +1146 2.831677675 127.0.0.1:57415 127.0.0.1:57433 3334951736 12 ffffffffbf370b0000000000 .....7...... +1150 2.932759523 127.0.0.1:57415 127.0.0.1:57433 3334951748 12 1a00000056620b0000000000 ....Vb...... +1152 2.932937622 127.0.0.1:57415 127.0.0.1:57433 3334951760 26 16000000548f6340e25e314001000300000085f41f0000000000 ....T.c@.^1@.............. +1154 2.933337688 127.0.0.1:57433 127.0.0.1:57415 378317092 12 ffffffff56620b0000000000 ....Vb...... +1156 2.933766603 127.0.0.1:57433 127.0.0.1:57415 378317104 12 16000000c0370b0000000000 .....7...... +1158 2.933935642 127.0.0.1:57433 127.0.0.1:57415 378317116 22 1200000085f41f000000000001000300000000000000 ...................... +1160 2.934250832 127.0.0.1:57415 127.0.0.1:57433 3334951786 12 ffffffffc0370b0000000000 .....7...... +1162 2.969223022 127.0.0.1:57415 127.0.0.1:57433 3334951798 12 6500000057620b0000000000 e...Wb...... +1164 2.969404459 127.0.0.1:57415 127.0.0.1:57433 3334951810 101 1e0000001c2118d0c46f33bb010003000000501e020000000000bccd32c39d01 .....!...o3.......P.........2.....?.....3...|8.. +1166 2.969730377 127.0.0.1:57433 127.0.0.1:57415 378317138 12 ffffffff57620b0000000000 ....Wb...... +1168 2.970957994 127.0.0.1:57433 127.0.0.1:57415 378317150 12 34000000c1370b0000000000 4....7...... +1170 2.971193552 127.0.0.1:57433 127.0.0.1:57415 378317162 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....P..........'.. +1172 2.971483707 127.0.0.1:57415 127.0.0.1:57433 3334951911 12 ffffffffc1370b0000000000 .....7...... +1174 2.972274780 127.0.0.1:57415 127.0.0.1:57433 3334951923 12 1e00000058620b0000000000 ....Xb...... +1176 2.972511292 127.0.0.1:57415 127.0.0.1:57433 3334951935 30 1a00000055ceff62b21b3a5001000300000087f41f000000000000000000 ....U..b..:P.................. +1178 2.972797394 127.0.0.1:57433 127.0.0.1:57415 378317214 12 ffffffff58620b0000000000 ....Xb...... +1180 2.973198175 127.0.0.1:57433 127.0.0.1:57415 378317226 12 1a000000c2370b0000000000 .....7...... +1182 2.973361492 127.0.0.1:57433 127.0.0.1:57415 378317238 26 1600000087f41f00000000000100030000000000000000000000 .......................... +1184 2.973614454 127.0.0.1:57415 127.0.0.1:57433 3334951965 12 ffffffffc2370b0000000000 .....7...... +1198 3.004620790 127.0.0.1:57433 127.0.0.1:57415 378317264 12 feffffffb74a0100c74a0100 .....J...J.. +1206 3.035894394 127.0.0.1:57415 127.0.0.1:57433 3334951977 12 1a00000059620b0000000000 ....Yb...... +1208 3.036078215 127.0.0.1:57415 127.0.0.1:57433 3334951989 26 16000000548f6340e25e314001000300000089f41f0000000000 ....T.c@.^1@.............. +1210 3.036539078 127.0.0.1:57433 127.0.0.1:57415 378317276 12 ffffffff59620b0000000000 ....Yb...... +1212 3.037047863 127.0.0.1:57433 127.0.0.1:57415 378317288 12 16000000c3370b0000000000 .....7...... +1214 3.037409782 127.0.0.1:57433 127.0.0.1:57415 378317300 22 1200000089f41f000000000001000300000000000000 ...................... +1216 3.037806273 127.0.0.1:57415 127.0.0.1:57433 3334952015 12 ffffffffc3370b0000000000 .....7...... +1218 3.067520142 127.0.0.1:57415 127.0.0.1:57433 3334952027 12 feffffffc84a0100b74a0100 .....J...J.. +1224 3.140011072 127.0.0.1:57415 127.0.0.1:57433 3334952039 12 1a0000005a620b0000000000 ....Zb...... +1226 3.140185118 127.0.0.1:57415 127.0.0.1:57433 3334952051 26 16000000548f6340e25e31400100030000008bf41f0000000000 ....T.c@.^1@.............. +1228 3.140629292 127.0.0.1:57433 127.0.0.1:57415 378317322 12 ffffffff5a620b0000000000 ....Zb...... +1230 3.141048670 127.0.0.1:57433 127.0.0.1:57415 378317334 12 16000000c4370b0000000000 .....7...... +1232 3.141208887 127.0.0.1:57433 127.0.0.1:57415 378317346 22 120000008bf41f000000000001000300000000000000 ...................... +1234 3.141430140 127.0.0.1:57415 127.0.0.1:57433 3334952077 12 ffffffffc4370b0000000000 .....7...... +1236 3.242752552 127.0.0.1:57415 127.0.0.1:57433 3334952089 12 1a0000005b620b0000000000 ....[b...... +1238 3.243061781 127.0.0.1:57415 127.0.0.1:57433 3334952101 26 16000000548f6340e25e31400100030000008df41f0000000000 ....T.c@.^1@.............. +1240 3.243429422 127.0.0.1:57433 127.0.0.1:57415 378317368 12 ffffffff5b620b0000000000 ....[b...... +1242 3.246224642 127.0.0.1:57433 127.0.0.1:57415 378317380 12 16000000c5370b0000000000 .....7...... +1244 3.246387482 127.0.0.1:57433 127.0.0.1:57415 378317392 22 120000008df41f000000000001000300000000000000 ...................... +1246 3.246654749 127.0.0.1:57415 127.0.0.1:57433 3334952127 12 ffffffffc5370b0000000000 .....7...... +1250 3.274079800 127.0.0.1:57415 127.0.0.1:57433 3334952139 12 650000005c620b0000000000 e...\b...... +1252 3.274352789 127.0.0.1:57415 127.0.0.1:57433 3334952151 101 1e0000001c2118d0c46f33bb010003000000511e020000000000edce32c39d01 .....!...o3.......Q.........2.....?.....3...|8.. +1254 3.274809599 127.0.0.1:57433 127.0.0.1:57415 378317414 12 ffffffff5c620b0000000000 ....\b...... +1256 3.275778055 127.0.0.1:57433 127.0.0.1:57415 378317426 12 34000000c6370b0000000000 4....7...... +1258 3.275941133 127.0.0.1:57433 127.0.0.1:57415 378317438 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Q.........g.F. +1260 3.276278019 127.0.0.1:57415 127.0.0.1:57433 3334952252 12 ffffffffc6370b0000000000 .....7...... +1262 3.277413368 127.0.0.1:57415 127.0.0.1:57433 3334952264 12 1e0000005d620b0000000000 ....]b...... +1264 3.277576447 127.0.0.1:57415 127.0.0.1:57433 3334952276 30 1a00000055ceff62b21b3a500100030000008ff41f000000000000000000 ....U..b..:P.................. +1266 3.277898788 127.0.0.1:57433 127.0.0.1:57415 378317490 12 ffffffff5d620b0000000000 ....]b...... +1268 3.278299570 127.0.0.1:57433 127.0.0.1:57415 378317502 12 1a000000c7370b0000000000 .....7...... +1270 3.278460741 127.0.0.1:57433 127.0.0.1:57415 378317514 26 160000008ff41f00000000000100030000000000000000000000 .......................... +1276 3.278694630 127.0.0.1:57415 127.0.0.1:57433 3334952306 12 ffffffffc7370b0000000000 .....7...... +1280 3.347755671 127.0.0.1:57415 127.0.0.1:57433 3334952318 12 1a0000005e620b0000000000 ....^b...... +1282 3.347938538 127.0.0.1:57415 127.0.0.1:57433 3334952330 26 16000000548f6340e25e314001000300000091f41f0000000000 ....T.c@.^1@.............. +1284 3.348337889 127.0.0.1:57433 127.0.0.1:57415 378317540 12 ffffffff5e620b0000000000 ....^b...... +1286 3.348872423 127.0.0.1:57433 127.0.0.1:57415 378317552 12 16000000c8370b0000000000 .....7...... +1288 3.349018335 127.0.0.1:57433 127.0.0.1:57415 378317564 22 1200000091f41f000000000001000300000000000000 ...................... +1290 3.349265337 127.0.0.1:57415 127.0.0.1:57433 3334952356 12 ffffffffc8370b0000000000 .....7...... +1294 3.450247526 127.0.0.1:57415 127.0.0.1:57433 3334952368 12 1a0000005f620b0000000000 ...._b...... +1296 3.450476646 127.0.0.1:57415 127.0.0.1:57433 3334952380 26 16000000548f6340e25e314001000300000093f41f0000000000 ....T.c@.^1@.............. +1298 3.450787783 127.0.0.1:57433 127.0.0.1:57415 378317586 12 ffffffff5f620b0000000000 ...._b...... +1300 3.451863766 127.0.0.1:57433 127.0.0.1:57415 378317598 12 16000000c9370b0000000000 .....7...... +1302 3.452035904 127.0.0.1:57433 127.0.0.1:57415 378317610 22 1200000093f41f000000000001000300000000000000 ...................... +1304 3.452340603 127.0.0.1:57415 127.0.0.1:57433 3334952406 12 ffffffffc9370b0000000000 .....7...... +1306 3.505068302 127.0.0.1:57433 127.0.0.1:57415 378317632 12 feffffffb84a0100c84a0100 .....J...J.. +1314 3.554272652 127.0.0.1:57415 127.0.0.1:57433 3334952418 12 1a00000060620b0000000000 ....`b...... +1316 3.554509878 127.0.0.1:57415 127.0.0.1:57433 3334952430 26 16000000548f6340e25e314001000300000095f41f0000000000 ....T.c@.^1@.............. +1318 3.554859638 127.0.0.1:57433 127.0.0.1:57415 378317644 12 ffffffff60620b0000000000 ....`b...... +1320 3.555358887 127.0.0.1:57433 127.0.0.1:57415 378317656 12 16000000ca370b0000000000 .....7...... +1322 3.555637360 127.0.0.1:57433 127.0.0.1:57415 378317668 22 1200000095f41f000000000001000300000000000000 ...................... +1324 3.555928469 127.0.0.1:57415 127.0.0.1:57433 3334952456 12 ffffffffca370b0000000000 .....7...... +1326 3.568823099 127.0.0.1:57415 127.0.0.1:57433 3334952468 12 feffffffc94a0100b84a0100 .....J...J.. +1332 3.578308344 127.0.0.1:57415 127.0.0.1:57433 3334952480 12 6500000061620b0000000000 e...ab...... +1334 3.578431368 127.0.0.1:57415 127.0.0.1:57433 3334952492 101 1e0000001c2118d0c46f33bb010003000000521e0200000000001dd032c39d01 .....!...o3.......R.........2.....?.....3...|8.. +1336 3.578726292 127.0.0.1:57433 127.0.0.1:57415 378317690 12 ffffffff61620b0000000000 ....ab...... +1338 3.579806089 127.0.0.1:57433 127.0.0.1:57415 378317702 12 34000000cb370b0000000000 4....7...... +1340 3.580031633 127.0.0.1:57433 127.0.0.1:57415 378317714 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....R...........u. +1342 3.580396652 127.0.0.1:57415 127.0.0.1:57433 3334952593 12 ffffffffcb370b0000000000 .....7...... +1344 3.581196547 127.0.0.1:57415 127.0.0.1:57433 3334952605 12 1e00000062620b0000000000 ....bb...... +1346 3.581343412 127.0.0.1:57415 127.0.0.1:57433 3334952617 30 1a00000055ceff62b21b3a5001000300000097f41f000000000000000000 ....U..b..:P.................. +1348 3.581679344 127.0.0.1:57433 127.0.0.1:57415 378317766 12 ffffffff62620b0000000000 ....bb...... +1350 3.582067251 127.0.0.1:57433 127.0.0.1:57415 378317778 12 1a000000cc370b0000000000 .....7...... +1352 3.582229376 127.0.0.1:57433 127.0.0.1:57415 378317790 26 1600000097f41f00000000000100030000000000000000000000 .......................... +1354 3.582623482 127.0.0.1:57415 127.0.0.1:57433 3334952647 12 ffffffffcc370b0000000000 .....7...... +1356 3.657357454 127.0.0.1:57415 127.0.0.1:57433 3334952659 12 1a00000063620b0000000000 ....cb...... +1358 3.657608747 127.0.0.1:57415 127.0.0.1:57433 3334952671 26 16000000548f6340e25e314001000300000099f41f0000000000 ....T.c@.^1@.............. +1360 3.658010721 127.0.0.1:57433 127.0.0.1:57415 378317816 12 ffffffff63620b0000000000 ....cb...... +1362 3.658475161 127.0.0.1:57433 127.0.0.1:57415 378317828 12 16000000cd370b0000000000 .....7...... +1364 3.658662081 127.0.0.1:57433 127.0.0.1:57415 378317840 22 1200000099f41f000000000001000300000000000000 ...................... +1366 3.658989191 127.0.0.1:57415 127.0.0.1:57433 3334952697 12 ffffffffcd370b0000000000 .....7...... +1368 3.761446953 127.0.0.1:57415 127.0.0.1:57433 3334952709 12 1a00000064620b0000000000 ....db...... +1370 3.761678457 127.0.0.1:57415 127.0.0.1:57433 3334952721 26 16000000548f6340e25e31400100030000009bf41f0000000000 ....T.c@.^1@.............. +1372 3.762021065 127.0.0.1:57433 127.0.0.1:57415 378317862 12 ffffffff64620b0000000000 ....db...... +1374 3.762413740 127.0.0.1:57433 127.0.0.1:57415 378317874 12 16000000ce370b0000000000 .....7...... +1376 3.762604713 127.0.0.1:57433 127.0.0.1:57415 378317886 22 120000009bf41f000000000001000300000000000000 ...................... +1378 3.763144970 127.0.0.1:57415 127.0.0.1:57433 3334952747 12 ffffffffce370b0000000000 .....7...... +1390 3.864798546 127.0.0.1:57415 127.0.0.1:57433 3334952759 12 1a00000065620b0000000000 ....eb...... +1392 3.865025759 127.0.0.1:57415 127.0.0.1:57433 3334952771 26 16000000548f6340e25e31400100030000009df41f0000000000 ....T.c@.^1@.............. +1394 3.865338326 127.0.0.1:57433 127.0.0.1:57415 378317908 12 ffffffff65620b0000000000 ....eb...... +1396 3.865763187 127.0.0.1:57433 127.0.0.1:57415 378317920 12 16000000cf370b0000000000 .....7...... +1398 3.866135120 127.0.0.1:57433 127.0.0.1:57415 378317932 22 120000009df41f000000000001000300000000000000 ...................... +1400 3.866457701 127.0.0.1:57415 127.0.0.1:57433 3334952797 12 ffffffffcf370b0000000000 .....7...... +1402 3.882092953 127.0.0.1:57415 127.0.0.1:57433 3334952809 12 2200000066620b0000000000 "...fb...... +1404 3.882260561 127.0.0.1:57415 127.0.0.1:57433 3334952821 34 1e0000001c2118d0c46f33bb010003000000531e0200000000004dd132c39d01 .....!...o3.......S.......M.2..... +1407 3.882396221 127.0.0.1:57415 127.0.0.1:57433 3334952855 12 4300000067620b0000000000 C...gb...... +1409 3.882483482 127.0.0.1:57415 127.0.0.1:57433 3334952867 67 3f000000980433cb0cb47c380100030000000100000000531e0200000000003d ?.....3...|8...........S.......=B.....&......... +1412 3.882618666 127.0.0.1:57433 127.0.0.1:57415 378317954 12 ffffffff66620b0000000000 ....fb...... +1414 3.882847786 127.0.0.1:57433 127.0.0.1:57415 378317966 12 ffffffff67620b0000000000 ....gb...... +1416 3.883912086 127.0.0.1:57433 127.0.0.1:57415 378317978 12 34000000d0370b0000000000 4....7...... +1418 3.884120941 127.0.0.1:57433 127.0.0.1:57415 378317990 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....S..........v.. +1420 3.884429693 127.0.0.1:57415 127.0.0.1:57433 3334952934 12 ffffffffd0370b0000000000 .....7...... +1422 3.885373592 127.0.0.1:57415 127.0.0.1:57433 3334952946 12 1e00000068620b0000000000 ....hb...... +1424 3.885639191 127.0.0.1:57415 127.0.0.1:57433 3334952958 30 1a00000055ceff62b21b3a500100030000009ff41f000000000000000000 ....U..b..:P.................. +1426 3.886090517 127.0.0.1:57433 127.0.0.1:57415 378318042 12 ffffffff68620b0000000000 ....hb...... +1428 3.886651278 127.0.0.1:57433 127.0.0.1:57415 378318054 12 1a000000d1370b0000000000 .....7...... +1430 3.886978388 127.0.0.1:57433 127.0.0.1:57415 378318066 26 160000009ff41f00000000000100030000000000000000000000 .......................... +1432 3.887278557 127.0.0.1:57415 127.0.0.1:57433 3334952988 12 ffffffffd1370b0000000000 .....7...... +1443 3.968204975 127.0.0.1:57415 127.0.0.1:57433 3334953000 12 1a00000069620b0000000000 ....ib...... +1445 3.968381643 127.0.0.1:57415 127.0.0.1:57433 3334953012 26 16000000548f6340e25e3140010003000000a1f41f0000000000 ....T.c@.^1@.............. +1449 3.968811274 127.0.0.1:57433 127.0.0.1:57415 378318092 12 ffffffff69620b0000000000 ....ib...... +1451 3.969382286 127.0.0.1:57433 127.0.0.1:57415 378318104 12 16000000d2370b0000000000 .....7...... +1453 3.969601870 127.0.0.1:57433 127.0.0.1:57415 378318116 22 12000000a1f41f000000000001000300000000000000 ...................... +1455 3.969925404 127.0.0.1:57415 127.0.0.1:57433 3334953038 12 ffffffffd2370b0000000000 .....7...... +1480 4.005964994 127.0.0.1:57433 127.0.0.1:57415 378318138 12 feffffffb94a0100c94a0100 .....J...J.. +1488 4.069530725 127.0.0.1:57415 127.0.0.1:57433 3334953050 12 feffffffca4a0100b94a0100 .....J...J.. +1494 4.070740223 127.0.0.1:57415 127.0.0.1:57433 3334953062 12 1a0000006a620b0000000000 ....jb...... +1496 4.070934057 127.0.0.1:57415 127.0.0.1:57433 3334953074 26 16000000548f6340e25e3140010003000000a3f41f0000000000 ....T.c@.^1@.............. +1498 4.071559429 127.0.0.1:57433 127.0.0.1:57415 378318150 12 ffffffff6a620b0000000000 ....jb...... +1500 4.071836948 127.0.0.1:57433 127.0.0.1:57415 378318162 12 16000000d3370b0000000000 .....7...... +1502 4.072026730 127.0.0.1:57433 127.0.0.1:57415 378318174 22 12000000a3f41f000000000001000300000000000000 ...................... +1504 4.072332144 127.0.0.1:57415 127.0.0.1:57433 3334953100 12 ffffffffd3370b0000000000 .....7...... +1538 4.174970865 127.0.0.1:57415 127.0.0.1:57433 3334953112 12 1a0000006b620b0000000000 ....kb...... +1540 4.175152779 127.0.0.1:57415 127.0.0.1:57433 3334953124 26 16000000548f6340e25e3140010003000000a5f41f0000000000 ....T.c@.^1@.............. +1542 4.175501108 127.0.0.1:57433 127.0.0.1:57415 378318196 12 ffffffff6b620b0000000000 ....kb...... +1544 4.175970078 127.0.0.1:57433 127.0.0.1:57415 378318208 12 16000000d4370b0000000000 .....7...... +1546 4.176133633 127.0.0.1:57433 127.0.0.1:57415 378318220 22 12000000a5f41f000000000001000300000000000000 ...................... +1548 4.176432610 127.0.0.1:57415 127.0.0.1:57433 3334953150 12 ffffffffd4370b0000000000 .....7...... +1550 4.187526703 127.0.0.1:57415 127.0.0.1:57433 3334953162 12 220000006c620b0000000000 "...lb...... +1552 4.187734365 127.0.0.1:57415 127.0.0.1:57433 3334953174 34 1e0000001c2118d0c46f33bb010003000000541e0200000000007fd232c39d01 .....!...o3.......T.........2..... +1554 4.187828779 127.0.0.1:57415 127.0.0.1:57433 3334953208 12 430000006d620b0000000000 C...mb...... +1556 4.187916756 127.0.0.1:57415 127.0.0.1:57433 3334953220 67 3f000000980433cb0cb47c380100030000000100000000541e0200000000003d ?.....3...|8...........T.......=B.....&......... +1558 4.188036680 127.0.0.1:57433 127.0.0.1:57415 378318242 12 ffffffff6c620b0000000000 ....lb...... +1560 4.188211203 127.0.0.1:57433 127.0.0.1:57415 378318254 12 ffffffff6d620b0000000000 ....mb...... +1562 4.189142227 127.0.0.1:57433 127.0.0.1:57415 378318266 12 34000000d5370b0000000000 4....7...... +1564 4.189361095 127.0.0.1:57433 127.0.0.1:57415 378318278 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....T............. +1566 4.189650774 127.0.0.1:57415 127.0.0.1:57433 3334953287 12 ffffffffd5370b0000000000 .....7...... +1568 4.190448046 127.0.0.1:57415 127.0.0.1:57433 3334953299 12 1e0000006e620b0000000000 ....nb...... +1570 4.190596342 127.0.0.1:57415 127.0.0.1:57433 3334953311 30 1a00000055ceff62b21b3a50010003000000a7f41f000000000000000000 ....U..b..:P.................. +1572 4.190897703 127.0.0.1:57433 127.0.0.1:57415 378318330 12 ffffffff6e620b0000000000 ....nb...... +1574 4.191422701 127.0.0.1:57433 127.0.0.1:57415 378318342 12 1a000000d6370b0000000000 .....7...... +1576 4.191616774 127.0.0.1:57433 127.0.0.1:57415 378318354 26 16000000a7f41f00000000000100030000000000000000000000 .......................... +1578 4.191888571 127.0.0.1:57415 127.0.0.1:57433 3334953341 12 ffffffffd6370b0000000000 .....7...... +1592 4.278611422 127.0.0.1:57415 127.0.0.1:57433 3334953353 12 1a0000006f620b0000000000 ....ob...... +1596 4.278808594 127.0.0.1:57415 127.0.0.1:57433 3334953365 26 16000000548f6340e25e3140010003000000a9f41f0000000000 ....T.c@.^1@.............. +1599 4.279186487 127.0.0.1:57433 127.0.0.1:57415 378318380 12 ffffffff6f620b0000000000 ....ob...... +1601 4.279710531 127.0.0.1:57433 127.0.0.1:57415 378318392 12 16000000d7370b0000000000 .....7...... +1603 4.279913664 127.0.0.1:57433 127.0.0.1:57415 378318404 22 12000000a9f41f000000000001000300000000000000 ...................... +1605 4.280247927 127.0.0.1:57415 127.0.0.1:57433 3334953391 12 ffffffffd7370b0000000000 .....7...... +1634 4.382808685 127.0.0.1:57415 127.0.0.1:57433 3334953403 12 1a00000070620b0000000000 ....pb...... +1637 4.383006573 127.0.0.1:57415 127.0.0.1:57433 3334953415 26 16000000548f6340e25e3140010003000000abf41f0000000000 ....T.c@.^1@.............. +1640 4.383729458 127.0.0.1:57433 127.0.0.1:57415 378318426 12 ffffffff70620b0000000000 ....pb...... +1642 4.384088993 127.0.0.1:57433 127.0.0.1:57415 378318438 12 16000000d8370b0000000000 .....7...... +1644 4.384249926 127.0.0.1:57433 127.0.0.1:57415 378318450 22 12000000abf41f000000000001000300000000000000 ...................... +1646 4.384583473 127.0.0.1:57415 127.0.0.1:57433 3334953441 12 ffffffffd8370b0000000000 .....7...... +1648 4.485671282 127.0.0.1:57415 127.0.0.1:57433 3334953453 12 1a00000071620b0000000000 ....qb...... +1650 4.485875845 127.0.0.1:57415 127.0.0.1:57433 3334953465 26 16000000548f6340e25e3140010003000000adf41f0000000000 ....T.c@.^1@.............. +1652 4.486208677 127.0.0.1:57433 127.0.0.1:57415 378318472 12 ffffffff71620b0000000000 ....qb...... +1654 4.486751556 127.0.0.1:57433 127.0.0.1:57415 378318484 12 16000000d9370b0000000000 .....7...... +1656 4.487035990 127.0.0.1:57433 127.0.0.1:57415 378318496 22 12000000adf41f000000000001000300000000000000 ...................... +1658 4.487327099 127.0.0.1:57415 127.0.0.1:57433 3334953491 12 ffffffffd9370b0000000000 .....7...... +1660 4.492866278 127.0.0.1:57415 127.0.0.1:57433 3334953503 12 6500000072620b0000000000 e...rb...... +1662 4.493036985 127.0.0.1:57415 127.0.0.1:57433 3334953515 101 1e0000001c2118d0c46f33bb010003000000551e020000000000b0d332c39d01 .....!...o3.......U.........2.....?.....3...|8.. +1664 4.493302584 127.0.0.1:57433 127.0.0.1:57415 378318518 12 ffffffff72620b0000000000 ....rb...... +1666 4.494234562 127.0.0.1:57433 127.0.0.1:57415 378318530 12 34000000da370b0000000000 4....7...... +1668 4.494398117 127.0.0.1:57433 127.0.0.1:57415 378318542 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....U.........B... +1670 4.494683981 127.0.0.1:57415 127.0.0.1:57433 3334953616 12 ffffffffda370b0000000000 .....7...... +1672 4.495601177 127.0.0.1:57415 127.0.0.1:57433 3334953628 12 1e00000073620b0000000000 ....sb...... +1674 4.495760202 127.0.0.1:57415 127.0.0.1:57433 3334953640 30 1a00000055ceff62b21b3a50010003000000aff41f000000000000000000 ....U..b..:P.................. +1676 4.496065140 127.0.0.1:57433 127.0.0.1:57415 378318594 12 ffffffff73620b0000000000 ....sb...... +1678 4.496545553 127.0.0.1:57433 127.0.0.1:57415 378318606 12 1a000000db370b0000000000 .....7...... +1680 4.496778965 127.0.0.1:57433 127.0.0.1:57415 378318618 26 16000000aff41f00000000000100030000000000000000000000 .......................... +1682 4.497256517 127.0.0.1:57415 127.0.0.1:57433 3334953670 12 ffffffffdb370b0000000000 .....7...... +1684 4.507401705 127.0.0.1:57433 127.0.0.1:57415 378318644 12 feffffffba4a0100ca4a0100 .....J...J.. +1692 4.570036411 127.0.0.1:57415 127.0.0.1:57433 3334953682 12 feffffffcb4a0100ba4a0100 .....J...J.. +1698 4.590060234 127.0.0.1:57415 127.0.0.1:57433 3334953694 12 1a00000074620b0000000000 ....tb...... +1700 4.590241671 127.0.0.1:57415 127.0.0.1:57433 3334953706 26 16000000548f6340e25e3140010003000000b1f41f0000000000 ....T.c@.^1@.............. +1702 4.590590477 127.0.0.1:57433 127.0.0.1:57415 378318656 12 ffffffff74620b0000000000 ....tb...... +1704 4.591051579 127.0.0.1:57433 127.0.0.1:57415 378318668 12 16000000dc370b0000000000 .....7...... +1706 4.591214180 127.0.0.1:57433 127.0.0.1:57415 378318680 22 12000000b1f41f000000000001000300000000000000 ...................... +1708 4.591455221 127.0.0.1:57415 127.0.0.1:57433 3334953732 12 ffffffffdc370b0000000000 .....7...... +1710 4.693654776 127.0.0.1:57415 127.0.0.1:57433 3334953744 12 1a00000075620b0000000000 ....ub...... +1712 4.693878174 127.0.0.1:57415 127.0.0.1:57433 3334953756 26 16000000548f6340e25e3140010003000000b3f41f0000000000 ....T.c@.^1@.............. +1714 4.694205046 127.0.0.1:57433 127.0.0.1:57415 378318702 12 ffffffff75620b0000000000 ....ub...... +1716 4.694741011 127.0.0.1:57433 127.0.0.1:57415 378318714 12 16000000dd370b0000000000 .....7...... +1718 4.694953442 127.0.0.1:57433 127.0.0.1:57415 378318726 22 12000000b3f41f000000000001000300000000000000 ...................... +1720 4.695312262 127.0.0.1:57415 127.0.0.1:57433 3334953782 12 ffffffffdd370b0000000000 .....7...... +1729 4.796970606 127.0.0.1:57415 127.0.0.1:57433 3334953794 12 1a00000076620b0000000000 ....vb...... +1731 4.797187805 127.0.0.1:57415 127.0.0.1:57433 3334953806 26 16000000548f6340e25e3140010003000000b5f41f0000000000 ....T.c@.^1@.............. +1733 4.797332764 127.0.0.1:57415 127.0.0.1:57433 3334953832 12 6500000077620b0000000000 e...wb...... +1735 4.797426224 127.0.0.1:57415 127.0.0.1:57433 3334953844 101 1e0000001c2118d0c46f33bb010003000000561e020000000000e0d432c39d01 .....!...o3.......V.........2.....?.....3...|8.. +1737 4.797579288 127.0.0.1:57433 127.0.0.1:57415 378318748 12 ffffffff76620b0000000000 ....vb...... +1739 4.797782183 127.0.0.1:57433 127.0.0.1:57415 378318760 12 ffffffff77620b0000000000 ....wb...... +1741 4.798068285 127.0.0.1:57433 127.0.0.1:57415 378318772 12 16000000de370b0000000000 .....7...... +1743 4.798271418 127.0.0.1:57433 127.0.0.1:57415 378318784 22 12000000b5f41f000000000001000300000000000000 ...................... +1745 4.798514128 127.0.0.1:57433 127.0.0.1:57415 378318806 12 34000000df370b0000000000 4....7...... +1746 4.798553705 127.0.0.1:57415 127.0.0.1:57433 3334953945 12 ffffffffde370b0000000000 .....7...... +1747 4.798664808 127.0.0.1:57433 127.0.0.1:57415 378318818 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....V.........../. +1749 4.798827171 127.0.0.1:57415 127.0.0.1:57433 3334953957 12 ffffffffdf370b0000000000 .....7...... +1751 4.799736977 127.0.0.1:57415 127.0.0.1:57433 3334953969 12 1e00000078620b0000000000 ....xb...... +1753 4.799888372 127.0.0.1:57415 127.0.0.1:57433 3334953981 30 1a00000055ceff62b21b3a50010003000000b7f41f000000000000000000 ....U..b..:P.................. +1755 4.800266266 127.0.0.1:57433 127.0.0.1:57415 378318870 12 ffffffff78620b0000000000 ....xb...... +1756 4.800576925 127.0.0.1:57433 127.0.0.1:57415 378318882 12 1a000000e0370b0000000000 .....7...... +1758 4.800742865 127.0.0.1:57433 127.0.0.1:57415 378318894 26 16000000b7f41f00000000000100030000000000000000000000 .......................... +1760 4.801026583 127.0.0.1:57415 127.0.0.1:57433 3334954011 12 ffffffffe0370b0000000000 .....7...... +1766 4.899686575 127.0.0.1:57415 127.0.0.1:57433 3334954023 12 1a00000079620b0000000000 ....yb...... +1768 4.899863482 127.0.0.1:57415 127.0.0.1:57433 3334954035 26 16000000548f6340e25e3140010003000000b9f41f0000000000 ....T.c@.^1@.............. +1770 4.900323391 127.0.0.1:57433 127.0.0.1:57415 378318920 12 ffffffff79620b0000000000 ....yb...... +1772 4.900647163 127.0.0.1:57433 127.0.0.1:57415 378318932 12 16000000e1370b0000000000 .....7...... +1774 4.901122570 127.0.0.1:57433 127.0.0.1:57415 378318944 22 12000000b9f41f000000000001000300000000000000 ...................... +1776 4.901395082 127.0.0.1:57415 127.0.0.1:57433 3334954061 12 ffffffffe1370b0000000000 .....7...... +1778 5.003419876 127.0.0.1:57415 127.0.0.1:57433 3334954073 12 1a0000007a620b0000000000 ....zb...... +1780 5.003628492 127.0.0.1:57415 127.0.0.1:57433 3334954085 26 16000000548f6340e25e3140010003000000bbf41f0000000000 ....T.c@.^1@.............. +1782 5.004108667 127.0.0.1:57433 127.0.0.1:57415 378318966 12 ffffffff7a620b0000000000 ....zb...... +1784 5.004542828 127.0.0.1:57433 127.0.0.1:57415 378318978 12 16000000e2370b0000000000 .....7...... +1786 5.004734993 127.0.0.1:57433 127.0.0.1:57415 378318990 22 12000000bbf41f000000000001000300000000000000 ...................... +1788 5.005013466 127.0.0.1:57415 127.0.0.1:57433 3334954111 12 ffffffffe2370b0000000000 .....7...... +1790 5.008111238 127.0.0.1:57433 127.0.0.1:57415 378319012 12 feffffffbb4a0100cb4a0100 .....J...J.. +1799 5.072031021 127.0.0.1:57415 127.0.0.1:57433 3334954123 12 feffffffcc4a0100bb4a0100 .....J...J.. +1834 5.100580692 127.0.0.1:57415 127.0.0.1:57433 3334954135 12 650000007b620b0000000000 e...{b...... +1836 5.100776672 127.0.0.1:57415 127.0.0.1:57433 3334954147 101 1e0000001c2118d0c46f33bb010003000000571e02000000000010d632c39d01 .....!...o3.......W.........2.....?.....3...|8.. +1838 5.101177454 127.0.0.1:57433 127.0.0.1:57415 378319024 12 ffffffff7b620b0000000000 ....{b...... +1840 5.102362156 127.0.0.1:57433 127.0.0.1:57415 378319036 12 34000000e3370b0000000000 4....7...... +1842 5.102520227 127.0.0.1:57433 127.0.0.1:57415 378319048 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....W.........:d]. +1844 5.102881670 127.0.0.1:57415 127.0.0.1:57433 3334954248 12 ffffffffe3370b0000000000 .....7...... +1846 5.103563070 127.0.0.1:57415 127.0.0.1:57433 3334954260 12 1e0000007c620b0000000000 ....|b...... +1848 5.103793144 127.0.0.1:57415 127.0.0.1:57433 3334954272 30 1a00000055ceff62b21b3a50010003000000bdf41f000000000000000000 ....U..b..:P.................. +1850 5.104473352 127.0.0.1:57433 127.0.0.1:57415 378319100 12 ffffffff7c620b0000000000 ....|b...... +1852 5.105109930 127.0.0.1:57433 127.0.0.1:57415 378319112 12 1a000000e4370b0000000000 .....7...... +1854 5.105251074 127.0.0.1:57433 127.0.0.1:57415 378319124 26 16000000bdf41f00000000000100030000000000000000000000 .......................... +1856 5.105521917 127.0.0.1:57415 127.0.0.1:57433 3334954302 12 ffffffffe4370b0000000000 .....7...... +1858 5.106702328 127.0.0.1:57415 127.0.0.1:57433 3334954314 12 1a0000007d620b0000000000 ....}b...... +1860 5.106891870 127.0.0.1:57415 127.0.0.1:57433 3334954326 26 16000000548f6340e25e3140010003000000bff41f0000000000 ....T.c@.^1@.............. +1862 5.107260227 127.0.0.1:57433 127.0.0.1:57415 378319150 12 ffffffff7d620b0000000000 ....}b...... +1864 5.107768774 127.0.0.1:57433 127.0.0.1:57415 378319162 12 16000000e5370b0000000000 .....7...... +1866 5.107951164 127.0.0.1:57433 127.0.0.1:57415 378319174 22 12000000bff41f000000000001000300000000000000 ...................... +1868 5.108335495 127.0.0.1:57415 127.0.0.1:57433 3334954352 12 ffffffffe5370b0000000000 .....7...... +1871 5.210655928 127.0.0.1:57415 127.0.0.1:57433 3334954364 12 1a0000007e620b0000000000 ....~b...... +1873 5.210916996 127.0.0.1:57415 127.0.0.1:57433 3334954376 26 16000000548f6340e25e3140010003000000c1f41f0000000000 ....T.c@.^1@.............. +1875 5.211468458 127.0.0.1:57433 127.0.0.1:57415 378319196 12 ffffffff7e620b0000000000 ....~b...... +1877 5.211830854 127.0.0.1:57433 127.0.0.1:57415 378319208 12 16000000e6370b0000000000 .....7...... +1879 5.211990356 127.0.0.1:57433 127.0.0.1:57415 378319220 22 12000000c1f41f000000000001000300000000000000 ...................... +1881 5.212262869 127.0.0.1:57415 127.0.0.1:57433 3334954402 12 ffffffffe6370b0000000000 .....7...... +1919 5.314258575 127.0.0.1:57415 127.0.0.1:57433 3334954414 12 1a0000007f620b0000000000 .....b...... +1921 5.314558506 127.0.0.1:57415 127.0.0.1:57433 3334954426 26 16000000548f6340e25e3140010003000000c3f41f0000000000 ....T.c@.^1@.............. +1923 5.314996243 127.0.0.1:57433 127.0.0.1:57415 378319242 12 ffffffff7f620b0000000000 .....b...... +1925 5.315463781 127.0.0.1:57433 127.0.0.1:57415 378319254 12 16000000e7370b0000000000 .....7...... +1927 5.315677404 127.0.0.1:57433 127.0.0.1:57415 378319266 22 12000000c3f41f000000000001000300000000000000 ...................... +1929 5.316076756 127.0.0.1:57415 127.0.0.1:57433 3334954452 12 ffffffffe7370b0000000000 .....7...... +1936 5.405983925 127.0.0.1:57415 127.0.0.1:57433 3334954464 12 6500000080620b0000000000 e....b...... +1938 5.406236172 127.0.0.1:57415 127.0.0.1:57433 3334954476 101 1e0000001c2118d0c46f33bb010003000000581e02000000000041d732c39d01 .....!...o3.......X.......A.2.....?.....3...|8.. +1940 5.406658888 127.0.0.1:57433 127.0.0.1:57415 378319288 12 ffffffff80620b0000000000 .....b...... +1942 5.408147573 127.0.0.1:57433 127.0.0.1:57415 378319300 12 34000000e8370b0000000000 4....7...... +1944 5.408307552 127.0.0.1:57433 127.0.0.1:57415 378319312 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....X............. +1946 5.408585072 127.0.0.1:57415 127.0.0.1:57433 3334954577 12 ffffffffe8370b0000000000 .....7...... +1948 5.409433126 127.0.0.1:57415 127.0.0.1:57433 3334954589 12 1e00000081620b0000000000 .....b...... +1950 5.409582376 127.0.0.1:57415 127.0.0.1:57433 3334954601 30 1a00000055ceff62b21b3a50010003000000c5f41f000000000000000000 ....U..b..:P.................. +1952 5.409955263 127.0.0.1:57433 127.0.0.1:57415 378319364 12 ffffffff81620b0000000000 .....b...... +1954 5.410299540 127.0.0.1:57433 127.0.0.1:57415 378319376 12 1a000000e9370b0000000000 .....7...... +1956 5.410442591 127.0.0.1:57433 127.0.0.1:57415 378319388 26 16000000c5f41f00000000000100030000000000000000000000 .......................... +1958 5.410695314 127.0.0.1:57415 127.0.0.1:57433 3334954631 12 ffffffffe9370b0000000000 .....7...... +1960 5.417620659 127.0.0.1:57415 127.0.0.1:57433 3334954643 12 1a00000082620b0000000000 .....b...... +1962 5.417831898 127.0.0.1:57415 127.0.0.1:57433 3334954655 26 16000000548f6340e25e3140010003000000c7f41f0000000000 ....T.c@.^1@.............. +1964 5.418216467 127.0.0.1:57433 127.0.0.1:57415 378319414 12 ffffffff82620b0000000000 .....b...... +1966 5.418527603 127.0.0.1:57433 127.0.0.1:57415 378319426 12 16000000ea370b0000000000 .....7...... +1968 5.418668509 127.0.0.1:57433 127.0.0.1:57415 378319438 22 12000000c7f41f000000000001000300000000000000 ...................... +1970 5.418854952 127.0.0.1:57415 127.0.0.1:57433 3334954681 12 ffffffffea370b0000000000 .....7...... +1977 5.508473873 127.0.0.1:57433 127.0.0.1:57415 378319460 12 feffffffbc4a0100cc4a0100 .....J...J.. +1985 5.521700382 127.0.0.1:57415 127.0.0.1:57433 3334954693 12 1a00000083620b0000000000 .....b...... +1987 5.521899700 127.0.0.1:57415 127.0.0.1:57433 3334954705 26 16000000548f6340e25e3140010003000000c9f41f0000000000 ....T.c@.^1@.............. +1989 5.522253275 127.0.0.1:57433 127.0.0.1:57415 378319472 12 ffffffff83620b0000000000 .....b...... +1991 5.522807837 127.0.0.1:57433 127.0.0.1:57415 378319484 12 16000000eb370b0000000000 .....7...... +1993 5.522951603 127.0.0.1:57433 127.0.0.1:57415 378319496 22 12000000c9f41f000000000001000300000000000000 ...................... +1995 5.523271084 127.0.0.1:57415 127.0.0.1:57433 3334954731 12 ffffffffeb370b0000000000 .....7...... +1997 5.574494839 127.0.0.1:57415 127.0.0.1:57433 3334954743 12 feffffffcd4a0100bc4a0100 .....J...J.. +2004 5.625495195 127.0.0.1:57415 127.0.0.1:57433 3334954755 12 1a00000084620b0000000000 .....b...... +2006 5.625714540 127.0.0.1:57415 127.0.0.1:57433 3334954767 26 16000000548f6340e25e3140010003000000cbf41f0000000000 ....T.c@.^1@.............. +2008 5.626272678 127.0.0.1:57433 127.0.0.1:57415 378319518 12 ffffffff84620b0000000000 .....b...... +2010 5.626809120 127.0.0.1:57433 127.0.0.1:57415 378319530 12 16000000ec370b0000000000 .....7...... +2012 5.627011776 127.0.0.1:57433 127.0.0.1:57415 378319542 22 12000000cbf41f000000000001000300000000000000 ...................... +2014 5.627317429 127.0.0.1:57415 127.0.0.1:57433 3334954793 12 ffffffffec370b0000000000 .....7...... +2023 5.711152315 127.0.0.1:57415 127.0.0.1:57433 3334954805 12 2200000085620b0000000000 "....b...... +2025 5.711354256 127.0.0.1:57415 127.0.0.1:57433 3334954817 34 1e0000001c2118d0c46f33bb010003000000591e02000000000073d832c39d01 .....!...o3.......Y.......s.2..... +2027 5.711480141 127.0.0.1:57415 127.0.0.1:57433 3334954851 12 4300000086620b0000000000 C....b...... +2029 5.711564064 127.0.0.1:57415 127.0.0.1:57433 3334954863 67 3f000000980433cb0cb47c380100030000000100000000591e0200000000003d ?.....3...|8...........Y.......=B.....&......... +2031 5.711733580 127.0.0.1:57433 127.0.0.1:57415 378319564 12 ffffffff85620b0000000000 .....b...... +2033 5.712027311 127.0.0.1:57433 127.0.0.1:57415 378319576 12 ffffffff86620b0000000000 .....b...... +2035 5.712751389 127.0.0.1:57433 127.0.0.1:57415 378319588 12 34000000ed370b0000000000 4....7...... +2037 5.712940693 127.0.0.1:57433 127.0.0.1:57415 378319600 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Y............. +2039 5.713248730 127.0.0.1:57415 127.0.0.1:57433 3334954930 12 ffffffffed370b0000000000 .....7...... +2041 5.714045286 127.0.0.1:57415 127.0.0.1:57433 3334954942 12 1e00000087620b0000000000 .....b...... +2043 5.714186668 127.0.0.1:57415 127.0.0.1:57433 3334954954 30 1a00000055ceff62b21b3a50010003000000cdf41f000000000000000000 ....U..b..:P.................. +2045 5.714489460 127.0.0.1:57433 127.0.0.1:57415 378319652 12 ffffffff87620b0000000000 .....b...... +2047 5.714898348 127.0.0.1:57433 127.0.0.1:57415 378319664 12 1a000000ee370b0000000000 .....7...... +2049 5.715043783 127.0.0.1:57433 127.0.0.1:57415 378319676 26 16000000cdf41f00000000000100030000000000000000000000 .......................... +2051 5.715298891 127.0.0.1:57415 127.0.0.1:57433 3334954984 12 ffffffffee370b0000000000 .....7...... +2053 5.728418350 127.0.0.1:57415 127.0.0.1:57433 3334954996 12 1a00000088620b0000000000 .....b...... +2055 5.728577852 127.0.0.1:57415 127.0.0.1:57433 3334955008 26 16000000548f6340e25e3140010003000000cff41f0000000000 ....T.c@.^1@.............. +2057 5.728964090 127.0.0.1:57433 127.0.0.1:57415 378319702 12 ffffffff88620b0000000000 .....b...... +2059 5.729345322 127.0.0.1:57433 127.0.0.1:57415 378319714 12 16000000ef370b0000000000 .....7...... +2061 5.729506969 127.0.0.1:57433 127.0.0.1:57415 378319726 22 12000000cff41f000000000001000300000000000000 ...................... +2063 5.729743719 127.0.0.1:57415 127.0.0.1:57433 3334955034 12 ffffffffef370b0000000000 .....7...... +2103 5.831407547 127.0.0.1:57415 127.0.0.1:57433 3334955046 12 1a00000089620b0000000000 .....b...... +2105 5.831602812 127.0.0.1:57415 127.0.0.1:57433 3334955058 26 16000000548f6340e25e3140010003000000d1f41f0000000000 ....T.c@.^1@.............. +2107 5.831959963 127.0.0.1:57433 127.0.0.1:57415 378319748 12 ffffffff89620b0000000000 .....b...... +2109 5.832478523 127.0.0.1:57433 127.0.0.1:57415 378319760 12 16000000f0370b0000000000 .....7...... +2111 5.832638502 127.0.0.1:57433 127.0.0.1:57415 378319772 22 12000000d1f41f000000000001000300000000000000 ...................... +2113 5.833081245 127.0.0.1:57415 127.0.0.1:57433 3334955084 12 fffffffff0370b0000000000 .....7...... +2128 5.933758974 127.0.0.1:57415 127.0.0.1:57433 3334955096 12 1a0000008a620b0000000000 .....b...... +2130 5.933940172 127.0.0.1:57415 127.0.0.1:57433 3334955108 26 16000000548f6340e25e3140010003000000d3f41f0000000000 ....T.c@.^1@.............. +2132 5.934267759 127.0.0.1:57433 127.0.0.1:57415 378319794 12 ffffffff8a620b0000000000 .....b...... +2134 5.935948133 127.0.0.1:57433 127.0.0.1:57415 378319806 12 16000000f1370b0000000000 .....7...... +2136 5.936234951 127.0.0.1:57433 127.0.0.1:57415 378319818 22 12000000d3f41f000000000001000300000000000000 ...................... +2138 5.936502457 127.0.0.1:57415 127.0.0.1:57433 3334955134 12 fffffffff1370b0000000000 .....7...... +2140 6.008835554 127.0.0.1:57433 127.0.0.1:57415 378319840 12 feffffffbd4a0100cd4a0100 .....J...J.. +2142 6.015493155 127.0.0.1:57415 127.0.0.1:57433 3334955146 12 220000008b620b0000000000 "....b...... +2144 6.015745163 127.0.0.1:57415 127.0.0.1:57433 3334955158 34 1e0000001c2118d0c46f33bb0100030000005a1e020000000000a2d932c39d01 .....!...o3.......Z.........2..... +2146 6.015923023 127.0.0.1:57415 127.0.0.1:57433 3334955192 12 430000008c620b0000000000 C....b...... +2148 6.016047955 127.0.0.1:57415 127.0.0.1:57433 3334955204 67 3f000000980433cb0cb47c3801000300000001000000005a1e0200000000003d ?.....3...|8...........Z.......=B.....&......... +2150 6.016321898 127.0.0.1:57433 127.0.0.1:57415 378319852 12 ffffffff8b620b0000000000 .....b...... +2152 6.016530037 127.0.0.1:57433 127.0.0.1:57415 378319864 12 ffffffff8c620b0000000000 .....b...... +2154 6.017252684 127.0.0.1:57433 127.0.0.1:57415 378319876 12 34000000f2370b0000000000 4....7...... +2156 6.017540932 127.0.0.1:57433 127.0.0.1:57415 378319888 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....Z............. +2158 6.017827272 127.0.0.1:57415 127.0.0.1:57433 3334955271 12 fffffffff2370b0000000000 .....7...... +2164 6.018731594 127.0.0.1:57415 127.0.0.1:57433 3334955283 12 1e0000008d620b0000000000 .....b...... +2166 6.018880367 127.0.0.1:57415 127.0.0.1:57433 3334955295 30 1a00000055ceff62b21b3a50010003000000d5f41f000000000000000000 ....U..b..:P.................. +2168 6.019207716 127.0.0.1:57433 127.0.0.1:57415 378319940 12 ffffffff8d620b0000000000 .....b...... +2170 6.019791365 127.0.0.1:57433 127.0.0.1:57415 378319952 12 1a000000f3370b0000000000 .....7...... +2172 6.019942045 127.0.0.1:57433 127.0.0.1:57415 378319964 26 16000000d5f41f00000000000100030000000000000000000000 .......................... +2174 6.020186424 127.0.0.1:57415 127.0.0.1:57433 3334955325 12 fffffffff3370b0000000000 .....7...... +2178 6.038104057 127.0.0.1:57415 127.0.0.1:57433 3334955337 12 1a0000008e620b0000000000 .....b...... +2180 6.038286924 127.0.0.1:57415 127.0.0.1:57433 3334955349 26 16000000548f6340e25e3140010003000000d7f41f0000000000 ....T.c@.^1@.............. +2182 6.038683653 127.0.0.1:57433 127.0.0.1:57415 378319990 12 ffffffff8e620b0000000000 .....b...... +2184 6.039042950 127.0.0.1:57433 127.0.0.1:57415 378320002 12 16000000f4370b0000000000 .....7...... +2186 6.039200783 127.0.0.1:57433 127.0.0.1:57415 378320014 22 12000000d7f41f000000000001000300000000000000 ...................... +2188 6.039588690 127.0.0.1:57415 127.0.0.1:57433 3334955375 12 fffffffff4370b0000000000 .....7...... +2190 6.075734615 127.0.0.1:57415 127.0.0.1:57433 3334955387 12 feffffffce4a0100bd4a0100 .....J...J.. +2196 6.140419006 127.0.0.1:57415 127.0.0.1:57433 3334955399 12 1a0000008f620b0000000000 .....b...... +2198 6.140676975 127.0.0.1:57415 127.0.0.1:57433 3334955411 26 16000000548f6340e25e3140010003000000d9f41f0000000000 ....T.c@.^1@.............. +2200 6.141304731 127.0.0.1:57433 127.0.0.1:57415 378320036 12 ffffffff8f620b0000000000 .....b...... +2202 6.141862392 127.0.0.1:57433 127.0.0.1:57415 378320048 12 16000000f5370b0000000000 .....7...... +2204 6.142027617 127.0.0.1:57433 127.0.0.1:57415 378320060 22 12000000d9f41f000000000001000300000000000000 ...................... +2206 6.142308712 127.0.0.1:57415 127.0.0.1:57433 3334955437 12 fffffffff5370b0000000000 .....7...... +2208 6.243604183 127.0.0.1:57415 127.0.0.1:57433 3334955449 12 1a00000090620b0000000000 .....b...... +2210 6.243841171 127.0.0.1:57415 127.0.0.1:57433 3334955461 26 16000000548f6340e25e3140010003000000dbf41f0000000000 ....T.c@.^1@.............. +2212 6.244208336 127.0.0.1:57433 127.0.0.1:57415 378320082 12 ffffffff90620b0000000000 .....b...... +2214 6.244745731 127.0.0.1:57433 127.0.0.1:57415 378320094 12 16000000f6370b0000000000 .....7...... +2216 6.244897604 127.0.0.1:57433 127.0.0.1:57415 378320106 22 12000000dbf41f000000000001000300000000000000 ...................... +2218 6.245128393 127.0.0.1:57415 127.0.0.1:57433 3334955487 12 fffffffff6370b0000000000 .....7...... +2228 6.319854498 127.0.0.1:57415 127.0.0.1:57433 3334955499 12 6500000091620b0000000000 e....b...... +2230 6.320071220 127.0.0.1:57415 127.0.0.1:57433 3334955511 101 1e0000001c2118d0c46f33bb0100030000005b1e020000000000d3da32c39d01 .....!...o3.......[.........2.....?.....3...|8.. +2232 6.320379257 127.0.0.1:57433 127.0.0.1:57415 378320128 12 ffffffff91620b0000000000 .....b...... +2236 6.321598768 127.0.0.1:57433 127.0.0.1:57415 378320140 12 34000000f7370b0000000000 4....7...... +2238 6.321795940 127.0.0.1:57433 127.0.0.1:57415 378320152 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....[..........n.. +2240 6.322068214 127.0.0.1:57415 127.0.0.1:57433 3334955612 12 fffffffff7370b0000000000 .....7...... +2242 6.323010206 127.0.0.1:57415 127.0.0.1:57433 3334955624 12 1e00000092620b0000000000 .....b...... +2244 6.323153973 127.0.0.1:57415 127.0.0.1:57433 3334955636 30 1a00000055ceff62b21b3a50010003000000ddf41f000000000000000000 ....U..b..:P.................. +2246 6.323587894 127.0.0.1:57433 127.0.0.1:57415 378320204 12 ffffffff92620b0000000000 .....b...... +2248 6.323910236 127.0.0.1:57433 127.0.0.1:57415 378320216 12 1a000000f8370b0000000000 .....7...... +2250 6.324051857 127.0.0.1:57433 127.0.0.1:57415 378320228 26 16000000ddf41f00000000000100030000000000000000000000 .......................... +2252 6.324278831 127.0.0.1:57415 127.0.0.1:57433 3334955666 12 fffffffff8370b0000000000 .....7...... +2254 6.346096039 127.0.0.1:57415 127.0.0.1:57433 3334955678 12 1a00000093620b0000000000 .....b...... +2256 6.346273661 127.0.0.1:57415 127.0.0.1:57433 3334955690 26 16000000548f6340e25e3140010003000000dff41f0000000000 ....T.c@.^1@.............. +2258 6.346659660 127.0.0.1:57433 127.0.0.1:57415 378320254 12 ffffffff93620b0000000000 .....b...... +2260 6.347039223 127.0.0.1:57433 127.0.0.1:57415 378320266 12 16000000f9370b0000000000 .....7...... +2262 6.347204208 127.0.0.1:57433 127.0.0.1:57415 378320278 22 12000000dff41f000000000001000300000000000000 ...................... +2264 6.347535849 127.0.0.1:57415 127.0.0.1:57433 3334955716 12 fffffffff9370b0000000000 .....7...... +2268 6.449124575 127.0.0.1:57415 127.0.0.1:57433 3334955728 12 1a00000094620b0000000000 .....b...... +2270 6.449306011 127.0.0.1:57415 127.0.0.1:57433 3334955740 26 16000000548f6340e25e3140010003000000e1f41f0000000000 ....T.c@.^1@.............. +2272 6.449820757 127.0.0.1:57433 127.0.0.1:57415 378320300 12 ffffffff94620b0000000000 .....b...... +2274 6.450132370 127.0.0.1:57433 127.0.0.1:57415 378320312 12 16000000fa370b0000000000 .....7...... +2276 6.450293064 127.0.0.1:57433 127.0.0.1:57415 378320324 22 12000000e1f41f000000000001000300000000000000 ...................... +2278 6.450669050 127.0.0.1:57415 127.0.0.1:57433 3334955766 12 fffffffffa370b0000000000 .....7...... +2280 6.509937763 127.0.0.1:57433 127.0.0.1:57415 378320346 12 feffffffbe4a0100ce4a0100 .....J...J.. +2288 6.552448750 127.0.0.1:57415 127.0.0.1:57433 3334955778 12 1a00000095620b0000000000 .....b...... +2290 6.552727699 127.0.0.1:57415 127.0.0.1:57433 3334955790 26 16000000548f6340e25e3140010003000000e3f41f0000000000 ....T.c@.^1@.............. +2292 6.553088427 127.0.0.1:57433 127.0.0.1:57415 378320358 12 ffffffff95620b0000000000 .....b...... +2294 6.553672314 127.0.0.1:57433 127.0.0.1:57415 378320370 12 16000000fb370b0000000000 .....7...... +2296 6.553840637 127.0.0.1:57433 127.0.0.1:57415 378320382 22 12000000e3f41f000000000001000300000000000000 ...................... +2298 6.554177046 127.0.0.1:57415 127.0.0.1:57433 3334955816 12 fffffffffb370b0000000000 .....7...... +2300 6.576856613 127.0.0.1:57415 127.0.0.1:57433 3334955828 12 feffffffcf4a0100be4a0100 .....J...J.. +2306 6.625501394 127.0.0.1:57415 127.0.0.1:57433 3334955840 12 6500000096620b0000000000 e....b...... +2308 6.625669479 127.0.0.1:57415 127.0.0.1:57433 3334955852 101 1e0000001c2118d0c46f33bb0100030000005c1e02000000000004dc32c39d01 .....!...o3.......\.........2.....?.....3...|8.. +2310 6.626025677 127.0.0.1:57433 127.0.0.1:57415 378320404 12 ffffffff96620b0000000000 .....b...... +2312 6.627054453 127.0.0.1:57433 127.0.0.1:57415 378320416 12 34000000fc370b0000000000 4....7...... +2314 6.627213955 127.0.0.1:57433 127.0.0.1:57415 378320428 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....\...........F. +2316 6.627619982 127.0.0.1:57415 127.0.0.1:57433 3334955953 12 fffffffffc370b0000000000 .....7...... +2318 6.628288507 127.0.0.1:57415 127.0.0.1:57433 3334955965 12 1e00000097620b0000000000 .....b...... +2320 6.628463507 127.0.0.1:57415 127.0.0.1:57433 3334955977 30 1a00000055ceff62b21b3a50010003000000e5f41f000000000000000000 ....U..b..:P.................. +2322 6.628785133 127.0.0.1:57433 127.0.0.1:57415 378320480 12 ffffffff97620b0000000000 .....b...... +2324 6.629315376 127.0.0.1:57433 127.0.0.1:57415 378320492 12 1a000000fd370b0000000000 .....7...... +2326 6.629487753 127.0.0.1:57433 127.0.0.1:57415 378320504 26 16000000e5f41f00000000000100030000000000000000000000 .......................... +2328 6.629985571 127.0.0.1:57415 127.0.0.1:57433 3334956007 12 fffffffffd370b0000000000 .....7...... +2330 6.656142473 127.0.0.1:57415 127.0.0.1:57433 3334956019 12 1a00000098620b0000000000 .....b...... +2332 6.656357050 127.0.0.1:57415 127.0.0.1:57433 3334956031 26 16000000548f6340e25e3140010003000000e7f41f0000000000 ....T.c@.^1@.............. +2334 6.656708956 127.0.0.1:57433 127.0.0.1:57415 378320530 12 ffffffff98620b0000000000 .....b...... +2336 6.657092571 127.0.0.1:57433 127.0.0.1:57415 378320542 12 16000000fe370b0000000000 .....7...... +2338 6.657255888 127.0.0.1:57433 127.0.0.1:57415 378320554 22 12000000e7f41f000000000001000300000000000000 ...................... +2340 6.657578230 127.0.0.1:57415 127.0.0.1:57433 3334956057 12 fffffffffe370b0000000000 .....7...... +2342 6.758963823 127.0.0.1:57415 127.0.0.1:57433 3334956069 12 1a00000099620b0000000000 .....b...... +2344 6.759190559 127.0.0.1:57415 127.0.0.1:57433 3334956081 26 16000000548f6340e25e3140010003000000e9f41f0000000000 ....T.c@.^1@.............. +2346 6.759603500 127.0.0.1:57433 127.0.0.1:57415 378320576 12 ffffffff99620b0000000000 .....b...... +2348 6.760064363 127.0.0.1:57433 127.0.0.1:57415 378320588 12 16000000ff370b0000000000 .....7...... +2350 6.760325909 127.0.0.1:57433 127.0.0.1:57415 378320600 22 12000000e9f41f000000000001000300000000000000 ...................... +2352 6.760682583 127.0.0.1:57415 127.0.0.1:57433 3334956107 12 ffffffffff370b0000000000 .....7...... +2362 6.862056017 127.0.0.1:57415 127.0.0.1:57433 3334956119 12 1a0000009a620b0000000000 .....b...... +2364 6.862226486 127.0.0.1:57415 127.0.0.1:57433 3334956131 26 16000000548f6340e25e3140010003000000ebf41f0000000000 ....T.c@.^1@.............. +2366 6.862652302 127.0.0.1:57433 127.0.0.1:57415 378320622 12 ffffffff9a620b0000000000 .....b...... +2368 6.863197803 127.0.0.1:57433 127.0.0.1:57415 378320634 12 1600000000380b0000000000 .....8...... +2370 6.863386631 127.0.0.1:57433 127.0.0.1:57415 378320646 22 12000000ebf41f000000000001000300000000000000 ...................... +2372 6.863717079 127.0.0.1:57415 127.0.0.1:57433 3334956157 12 ffffffff00380b0000000000 .....8...... +2376 6.929488897 127.0.0.1:57415 127.0.0.1:57433 3334956169 12 220000009b620b0000000000 "....b...... +2378 6.929649591 127.0.0.1:57415 127.0.0.1:57433 3334956181 34 1e0000001c2118d0c46f33bb0100030000005d1e02000000000035dd32c39d01 .....!...o3.......].......5.2..... +2380 6.929738760 127.0.0.1:57415 127.0.0.1:57433 3334956215 12 430000009c620b0000000000 C....b...... +2382 6.929822922 127.0.0.1:57415 127.0.0.1:57433 3334956227 67 3f000000980433cb0cb47c3801000300000001000000005d1e0200000000003d ?.....3...|8...........].......=B.....&......... +2384 6.929929972 127.0.0.1:57433 127.0.0.1:57415 378320668 12 ffffffff9b620b0000000000 .....b...... +2386 6.930120945 127.0.0.1:57433 127.0.0.1:57415 378320680 12 ffffffff9c620b0000000000 .....b...... +2388 6.931212902 127.0.0.1:57433 127.0.0.1:57415 378320692 12 3400000001380b0000000000 4....8...... +2390 6.931386471 127.0.0.1:57433 127.0.0.1:57415 378320704 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....].........est. +2392 6.931667089 127.0.0.1:57415 127.0.0.1:57433 3334956294 12 ffffffff01380b0000000000 .....8...... +2394 6.932630062 127.0.0.1:57415 127.0.0.1:57433 3334956306 12 1e0000009d620b0000000000 .....b...... +2396 6.932825565 127.0.0.1:57415 127.0.0.1:57433 3334956318 30 1a00000055ceff62b21b3a50010003000000edf41f000000000000000000 ....U..b..:P.................. +2398 6.933130026 127.0.0.1:57433 127.0.0.1:57415 378320756 12 ffffffff9d620b0000000000 .....b...... +2400 6.933555126 127.0.0.1:57433 127.0.0.1:57415 378320768 12 1a00000002380b0000000000 .....8...... +2402 6.933725357 127.0.0.1:57433 127.0.0.1:57415 378320780 26 16000000edf41f00000000000100030000000000000000000000 .......................... +2404 6.933989763 127.0.0.1:57415 127.0.0.1:57433 3334956348 12 ffffffff02380b0000000000 .....8...... +2406 6.965975285 127.0.0.1:57415 127.0.0.1:57433 3334956360 12 1a0000009e620b0000000000 .....b...... +2408 6.966137648 127.0.0.1:57415 127.0.0.1:57433 3334956372 26 16000000548f6340e25e3140010003000000eff41f0000000000 ....T.c@.^1@.............. +2410 6.966538429 127.0.0.1:57433 127.0.0.1:57415 378320806 12 ffffffff9e620b0000000000 .....b...... +2412 6.967084169 127.0.0.1:57433 127.0.0.1:57415 378320818 12 1600000003380b0000000000 .....8...... +2414 6.967250586 127.0.0.1:57433 127.0.0.1:57415 378320830 22 12000000eff41f000000000001000300000000000000 ...................... +2416 6.967542410 127.0.0.1:57415 127.0.0.1:57433 3334956398 12 ffffffff03380b0000000000 .....8...... +2418 7.010967493 127.0.0.1:57433 127.0.0.1:57415 378320852 12 feffffffbf4a0100cf4a0100 .....J...J.. +2426 7.069144249 127.0.0.1:57415 127.0.0.1:57433 3334956410 12 1a0000009f620b0000000000 .....b...... +2428 7.069491863 127.0.0.1:57415 127.0.0.1:57433 3334956422 26 16000000548f6340e25e3140010003000000f1f41f0000000000 ....T.c@.^1@.............. +2430 7.069765568 127.0.0.1:57433 127.0.0.1:57415 378320864 12 ffffffff9f620b0000000000 .....b...... +2432 7.070301771 127.0.0.1:57433 127.0.0.1:57415 378320876 12 1600000004380b0000000000 .....8...... +2434 7.070517063 127.0.0.1:57433 127.0.0.1:57415 378320888 22 12000000f1f41f000000000001000300000000000000 ...................... +2436 7.070829153 127.0.0.1:57415 127.0.0.1:57433 3334956448 12 ffffffff04380b0000000000 .....8...... +2438 7.077615976 127.0.0.1:57415 127.0.0.1:57433 3334956460 12 feffffffd04a0100bf4a0100 .....J...J.. +2444 7.172109365 127.0.0.1:57415 127.0.0.1:57433 3334956472 12 1a000000a0620b0000000000 .....b...... +2446 7.172420025 127.0.0.1:57415 127.0.0.1:57433 3334956484 26 16000000548f6340e25e3140010003000000f3f41f0000000000 ....T.c@.^1@.............. +2448 7.172840595 127.0.0.1:57433 127.0.0.1:57415 378320910 12 ffffffffa0620b0000000000 .....b...... +2450 7.173365116 127.0.0.1:57433 127.0.0.1:57415 378320922 12 1600000005380b0000000000 .....8...... +2452 7.173522711 127.0.0.1:57433 127.0.0.1:57415 378320934 22 12000000f3f41f000000000001000300000000000000 ...................... +2454 7.173808098 127.0.0.1:57415 127.0.0.1:57433 3334956510 12 ffffffff05380b0000000000 .....8...... +2456 7.234492302 127.0.0.1:57415 127.0.0.1:57433 3334956522 12 65000000a1620b0000000000 e....b...... +2458 7.234695673 127.0.0.1:57415 127.0.0.1:57433 3334956534 101 1e0000001c2118d0c46f33bb0100030000005e1e02000000000066de32c39d01 .....!...o3.......^.......f.2.....?.....3...|8.. +2460 7.235132694 127.0.0.1:57433 127.0.0.1:57415 378320956 12 ffffffffa1620b0000000000 .....b...... +2462 7.235940218 127.0.0.1:57433 127.0.0.1:57415 378320968 12 3400000006380b0000000000 4....8...... +2464 7.236100197 127.0.0.1:57433 127.0.0.1:57415 378320980 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....^............. +2466 7.236431837 127.0.0.1:57415 127.0.0.1:57433 3334956635 12 ffffffff06380b0000000000 .....8...... +2468 7.237156391 127.0.0.1:57415 127.0.0.1:57433 3334956647 12 1e000000a2620b0000000000 .....b...... +2470 7.237299204 127.0.0.1:57415 127.0.0.1:57433 3334956659 30 1a00000055ceff62b21b3a50010003000000f5f41f000000000000000000 ....U..b..:P.................. +2472 7.237649202 127.0.0.1:57433 127.0.0.1:57415 378321032 12 ffffffffa2620b0000000000 .....b...... +2474 7.237980843 127.0.0.1:57433 127.0.0.1:57415 378321044 12 1a00000007380b0000000000 .....8...... +2476 7.238121271 127.0.0.1:57433 127.0.0.1:57415 378321056 26 16000000f5f41f00000000000100030000000000000000000000 .......................... +2478 7.238315821 127.0.0.1:57415 127.0.0.1:57433 3334956689 12 ffffffff07380b0000000000 .....8...... +2482 7.276159048 127.0.0.1:57415 127.0.0.1:57433 3334956701 12 1a000000a3620b0000000000 .....b...... +2484 7.276329756 127.0.0.1:57415 127.0.0.1:57433 3334956713 26 16000000548f6340e25e3140010003000000f7f41f0000000000 ....T.c@.^1@.............. +2486 7.277009010 127.0.0.1:57433 127.0.0.1:57415 378321082 12 1600000008380b0000000000 .....8...... +2488 7.277174711 127.0.0.1:57433 127.0.0.1:57415 378321094 22 12000000f7f41f000000000001000300000000000000 ...................... +2490 7.277443647 127.0.0.1:57415 127.0.0.1:57433 3334956739 12 ffffffff08380b0000000000 .....8...... +2491 7.277460337 127.0.0.1:57433 127.0.0.1:57415 378321116 12 ffffffffa3620b0000000000 .....b...... +2500 7.378372431 127.0.0.1:57415 127.0.0.1:57433 3334956751 12 1a000000a4620b0000000000 .....b...... +2502 7.378570557 127.0.0.1:57415 127.0.0.1:57433 3334956763 26 16000000548f6340e25e3140010003000000f9f41f0000000000 ....T.c@.^1@.............. +2504 7.378903151 127.0.0.1:57433 127.0.0.1:57415 378321128 12 ffffffffa4620b0000000000 .....b...... +2506 7.379450083 127.0.0.1:57433 127.0.0.1:57415 378321140 12 1600000009380b0000000000 .....8...... +2508 7.379610300 127.0.0.1:57433 127.0.0.1:57415 378321152 22 12000000f9f41f000000000001000300000000000000 ...................... +2510 7.380026340 127.0.0.1:57415 127.0.0.1:57433 3334956789 12 ffffffff09380b0000000000 .....8...... +2514 7.481071711 127.0.0.1:57415 127.0.0.1:57433 3334956801 12 1a000000a5620b0000000000 .....b...... +2516 7.481307983 127.0.0.1:57415 127.0.0.1:57433 3334956813 26 16000000548f6340e25e3140010003000000fbf41f0000000000 ....T.c@.^1@.............. +2518 7.481682777 127.0.0.1:57433 127.0.0.1:57415 378321174 12 ffffffffa5620b0000000000 .....b...... +2520 7.482021809 127.0.0.1:57433 127.0.0.1:57415 378321186 12 160000000a380b0000000000 .....8...... +2522 7.482190609 127.0.0.1:57433 127.0.0.1:57415 378321198 22 12000000fbf41f000000000001000300000000000000 ...................... +2524 7.482511282 127.0.0.1:57415 127.0.0.1:57433 3334956839 12 ffffffff0a380b0000000000 .....8...... +2526 7.511182308 127.0.0.1:57433 127.0.0.1:57415 378321220 12 feffffffc04a0100d04a0100 .....J...J.. +2542 7.538144112 127.0.0.1:57415 127.0.0.1:57433 3334956851 12 22000000a6620b0000000000 "....b...... +2544 7.538359880 127.0.0.1:57415 127.0.0.1:57433 3334956863 34 1e0000001c2118d0c46f33bb0100030000005f1e02000000000095df32c39d01 .....!...o3......._.........2..... +2546 7.538532495 127.0.0.1:57415 127.0.0.1:57433 3334956897 12 43000000a7620b0000000000 C....b...... +2548 7.538624287 127.0.0.1:57415 127.0.0.1:57433 3334956909 67 3f000000980433cb0cb47c3801000300000001000000005f1e0200000000003d ?.....3...|8..........._.......=B.....&......... +2549 7.538671970 127.0.0.1:57433 127.0.0.1:57415 378321232 12 ffffffffa6620b0000000000 .....b...... +2552 7.538899183 127.0.0.1:57433 127.0.0.1:57415 378321244 12 ffffffffa7620b0000000000 .....b...... +2554 7.539802790 127.0.0.1:57433 127.0.0.1:57415 378321256 12 340000000b380b0000000000 4....8...... +2556 7.539966583 127.0.0.1:57433 127.0.0.1:57415 378321268 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([....._.........VQ.. +2558 7.540239811 127.0.0.1:57415 127.0.0.1:57433 3334956976 12 ffffffff0b380b0000000000 .....8...... +2559 7.541033506 127.0.0.1:57415 127.0.0.1:57433 3334956988 12 1e000000a8620b0000000000 .....b...... +2561 7.541191816 127.0.0.1:57415 127.0.0.1:57433 3334957000 30 1a00000055ceff62b21b3a50010003000000fdf41f000000000000000000 ....U..b..:P.................. +2563 7.541528463 127.0.0.1:57433 127.0.0.1:57415 378321320 12 ffffffffa8620b0000000000 .....b...... +2565 7.542227507 127.0.0.1:57433 127.0.0.1:57415 378321332 12 1a0000000c380b0000000000 .....8...... +2567 7.542486668 127.0.0.1:57433 127.0.0.1:57415 378321344 26 16000000fdf41f00000000000100030000000000000000000000 .......................... +2569 7.542747974 127.0.0.1:57415 127.0.0.1:57433 3334957030 12 ffffffff0c380b0000000000 .....8...... +2571 7.579034090 127.0.0.1:57415 127.0.0.1:57433 3334957042 12 feffffffd14a0100c04a0100 .....J...J.. +2577 7.584731579 127.0.0.1:57415 127.0.0.1:57433 3334957054 12 1a000000a9620b0000000000 .....b...... +2579 7.585017204 127.0.0.1:57415 127.0.0.1:57433 3334957066 26 16000000548f6340e25e3140010003000000fff41f0000000000 ....T.c@.^1@.............. +2581 7.585397959 127.0.0.1:57433 127.0.0.1:57415 378321370 12 ffffffffa9620b0000000000 .....b...... +2583 7.585944891 127.0.0.1:57433 127.0.0.1:57415 378321382 12 160000000d380b0000000000 .....8...... +2585 7.586121559 127.0.0.1:57433 127.0.0.1:57415 378321394 22 12000000fff41f000000000001000300000000000000 ...................... +2587 7.586476564 127.0.0.1:57415 127.0.0.1:57433 3334957092 12 ffffffff0d380b0000000000 .....8...... +2592 7.688565016 127.0.0.1:57415 127.0.0.1:57433 3334957104 12 1a000000aa620b0000000000 .....b...... +2594 7.688763380 127.0.0.1:57415 127.0.0.1:57433 3334957116 26 16000000548f6340e25e314001000300000001f51f0000000000 ....T.c@.^1@.............. +2596 7.689141989 127.0.0.1:57433 127.0.0.1:57415 378321416 12 ffffffffaa620b0000000000 .....b...... +2598 7.689476490 127.0.0.1:57433 127.0.0.1:57415 378321428 12 160000000e380b0000000000 .....8...... +2600 7.689634562 127.0.0.1:57433 127.0.0.1:57415 378321440 22 1200000001f51f000000000001000300000000000000 ...................... +2602 7.690021992 127.0.0.1:57415 127.0.0.1:57433 3334957142 12 ffffffff0e380b0000000000 .....8...... +2650 7.791651487 127.0.0.1:57415 127.0.0.1:57433 3334957154 12 1a000000ab620b0000000000 .....b...... +2652 7.791847229 127.0.0.1:57415 127.0.0.1:57433 3334957166 26 16000000548f6340e25e314001000300000003f51f0000000000 ....T.c@.^1@.............. +2654 7.792167187 127.0.0.1:57433 127.0.0.1:57415 378321462 12 ffffffffab620b0000000000 .....b...... +2656 7.792731762 127.0.0.1:57433 127.0.0.1:57415 378321474 12 160000000f380b0000000000 .....8...... +2658 7.793030262 127.0.0.1:57433 127.0.0.1:57415 378321486 22 1200000003f51f000000000001000300000000000000 ...................... +2660 7.793380260 127.0.0.1:57415 127.0.0.1:57433 3334957192 12 ffffffff0f380b0000000000 .....8...... +2673 7.843341112 127.0.0.1:57415 127.0.0.1:57433 3334957204 12 65000000ac620b0000000000 e....b...... +2675 7.843557835 127.0.0.1:57415 127.0.0.1:57433 3334957216 101 1e0000001c2118d0c46f33bb010003000000601e020000000000c6e032c39d01 .....!...o3.......`.........2.....?.....3...|8.. +2677 7.843805552 127.0.0.1:57433 127.0.0.1:57415 378321508 12 ffffffffac620b0000000000 .....b...... +2679 7.844870090 127.0.0.1:57433 127.0.0.1:57415 378321520 12 3400000010380b0000000000 4....8...... +2681 7.845032215 127.0.0.1:57433 127.0.0.1:57415 378321532 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....`.........<... +2683 7.845301390 127.0.0.1:57415 127.0.0.1:57433 3334957317 12 ffffffff10380b0000000000 .....8...... +2685 7.846062660 127.0.0.1:57415 127.0.0.1:57433 3334957329 12 1e000000ad620b0000000000 .....b...... +2687 7.846216440 127.0.0.1:57415 127.0.0.1:57433 3334957341 30 1a00000055ceff62b21b3a5001000300000005f51f000000000000000000 ....U..b..:P.................. +2689 7.846657038 127.0.0.1:57433 127.0.0.1:57415 378321584 12 ffffffffad620b0000000000 .....b...... +2691 7.847237825 127.0.0.1:57433 127.0.0.1:57415 378321596 12 1a00000011380b0000000000 .....8...... +2693 7.847451687 127.0.0.1:57433 127.0.0.1:57415 378321608 26 1600000005f51f00000000000100030000000000000000000000 .......................... +2695 7.847775936 127.0.0.1:57415 127.0.0.1:57433 3334957371 12 ffffffff11380b0000000000 .....8...... +2700 7.894859552 127.0.0.1:57415 127.0.0.1:57433 3334957383 12 1a000000ae620b0000000000 .....b...... +2702 7.895027399 127.0.0.1:57415 127.0.0.1:57433 3334957395 26 16000000548f6340e25e314001000300000007f51f0000000000 ....T.c@.^1@.............. +2704 7.895324707 127.0.0.1:57433 127.0.0.1:57415 378321634 12 ffffffffae620b0000000000 .....b...... +2706 7.895873308 127.0.0.1:57433 127.0.0.1:57415 378321646 12 1600000012380b0000000000 .....8...... +2708 7.896112204 127.0.0.1:57433 127.0.0.1:57415 378321658 22 1200000007f51f000000000001000300000000000000 ...................... +2710 7.896427393 127.0.0.1:57415 127.0.0.1:57433 3334957421 12 ffffffff12380b0000000000 .....8...... +2713 7.998295307 127.0.0.1:57415 127.0.0.1:57433 3334957433 12 1a000000af620b0000000000 .....b...... +2715 7.998654842 127.0.0.1:57415 127.0.0.1:57433 3334957445 26 16000000548f6340e25e314001000300000009f51f0000000000 ....T.c@.^1@.............. +2717 7.998998642 127.0.0.1:57433 127.0.0.1:57415 378321680 12 ffffffffaf620b0000000000 .....b...... +2719 7.999435186 127.0.0.1:57433 127.0.0.1:57415 378321692 12 1600000013380b0000000000 .....8...... +2721 7.999598742 127.0.0.1:57433 127.0.0.1:57415 378321704 22 1200000009f51f000000000001000300000000000000 ...................... +2723 8.000001192 127.0.0.1:57415 127.0.0.1:57433 3334957471 12 ffffffff13380b0000000000 .....8...... +2725 8.012390852 127.0.0.1:57433 127.0.0.1:57415 378321726 12 feffffffc14a0100d14a0100 .....J...J.. +2733 8.081438780 127.0.0.1:57415 127.0.0.1:57433 3334957483 12 feffffffd24a0100c14a0100 .....J...J.. +2740 8.102497339 127.0.0.1:57415 127.0.0.1:57433 3334957495 12 1a000000b0620b0000000000 .....b...... +2742 8.102660418 127.0.0.1:57415 127.0.0.1:57433 3334957507 26 16000000548f6340e25e31400100030000000bf51f0000000000 ....T.c@.^1@.............. +2744 8.103072405 127.0.0.1:57433 127.0.0.1:57415 378321738 12 ffffffffb0620b0000000000 .....b...... +2746 8.103474379 127.0.0.1:57433 127.0.0.1:57415 378321750 12 1600000014380b0000000000 .....8...... +2748 8.103643179 127.0.0.1:57433 127.0.0.1:57415 378321762 22 120000000bf51f000000000001000300000000000000 ...................... +2750 8.103908777 127.0.0.1:57415 127.0.0.1:57433 3334957533 12 ffffffff14380b0000000000 .....8...... +2752 8.148188829 127.0.0.1:57415 127.0.0.1:57433 3334957545 12 22000000b1620b0000000000 "....b...... +2754 8.148340225 127.0.0.1:57415 127.0.0.1:57433 3334957557 34 1e0000001c2118d0c46f33bb010003000000611e020000000000f7e132c39d01 .....!...o3.......a.........2..... +2756 8.148427725 127.0.0.1:57415 127.0.0.1:57433 3334957591 12 43000000b2620b0000000000 C....b...... +2758 8.148510218 127.0.0.1:57415 127.0.0.1:57433 3334957603 67 3f000000980433cb0cb47c380100030000000100000000611e0200000000003d ?.....3...|8...........a.......=B.....&......... +2760 8.148697138 127.0.0.1:57433 127.0.0.1:57415 378321784 12 ffffffffb1620b0000000000 .....b...... +2762 8.148919106 127.0.0.1:57433 127.0.0.1:57415 378321796 12 ffffffffb2620b0000000000 .....b...... +2764 8.149697781 127.0.0.1:57433 127.0.0.1:57415 378321808 12 3400000015380b0000000000 4....8...... +2766 8.149860144 127.0.0.1:57433 127.0.0.1:57415 378321820 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....a.........._.. +2768 8.150193691 127.0.0.1:57415 127.0.0.1:57433 3334957670 12 ffffffff15380b0000000000 .....8...... +2770 8.150933981 127.0.0.1:57415 127.0.0.1:57433 3334957682 12 1e000000b3620b0000000000 .....b...... +2772 8.151093245 127.0.0.1:57415 127.0.0.1:57433 3334957694 30 1a00000055ceff62b21b3a500100030000000df51f000000000000000000 ....U..b..:P.................. +2774 8.151477098 127.0.0.1:57433 127.0.0.1:57415 378321872 12 ffffffffb3620b0000000000 .....b...... +2776 8.151851177 127.0.0.1:57433 127.0.0.1:57415 378321884 12 1a00000016380b0000000000 .....8...... +2778 8.151992083 127.0.0.1:57433 127.0.0.1:57415 378321896 26 160000000df51f00000000000100030000000000000000000000 .......................... +2780 8.152295113 127.0.0.1:57415 127.0.0.1:57433 3334957724 12 ffffffff16380b0000000000 .....8...... +2782 8.206214190 127.0.0.1:57415 127.0.0.1:57433 3334957736 12 1a000000b4620b0000000000 .....b...... +2785 8.206440210 127.0.0.1:57415 127.0.0.1:57433 3334957748 26 16000000548f6340e25e31400100030000000ff51f0000000000 ....T.c@.^1@.............. +2787 8.206850767 127.0.0.1:57433 127.0.0.1:57415 378321922 12 ffffffffb4620b0000000000 .....b...... +2789 8.207118511 127.0.0.1:57433 127.0.0.1:57415 378321934 12 1600000017380b0000000000 .....8...... +2791 8.207319021 127.0.0.1:57433 127.0.0.1:57415 378321946 22 120000000ff51f000000000001000300000000000000 ...................... +2793 8.207579374 127.0.0.1:57415 127.0.0.1:57433 3334957774 12 ffffffff17380b0000000000 .....8...... +2801 8.310606956 127.0.0.1:57415 127.0.0.1:57433 3334957786 12 1a000000b5620b0000000000 .....b...... +2803 8.310832739 127.0.0.1:57415 127.0.0.1:57433 3334957798 26 16000000548f6340e25e314001000300000011f51f0000000000 ....T.c@.^1@.............. +2805 8.311164379 127.0.0.1:57433 127.0.0.1:57415 378321968 12 ffffffffb5620b0000000000 .....b...... +2807 8.311670780 127.0.0.1:57433 127.0.0.1:57415 378321980 12 1600000018380b0000000000 .....8...... +2809 8.311875343 127.0.0.1:57433 127.0.0.1:57415 378321992 22 1200000011f51f000000000001000300000000000000 ...................... +2811 8.312164068 127.0.0.1:57415 127.0.0.1:57433 3334957824 12 ffffffff18380b0000000000 .....8...... +2824 8.413914680 127.0.0.1:57415 127.0.0.1:57433 3334957836 12 1a000000b6620b0000000000 .....b...... +2826 8.414180994 127.0.0.1:57415 127.0.0.1:57433 3334957848 26 16000000548f6340e25e314001000300000013f51f0000000000 ....T.c@.^1@.............. +2828 8.414608479 127.0.0.1:57433 127.0.0.1:57415 378322014 12 ffffffffb6620b0000000000 .....b...... +2830 8.415073872 127.0.0.1:57433 127.0.0.1:57415 378322026 12 1600000019380b0000000000 .....8...... +2832 8.415250301 127.0.0.1:57433 127.0.0.1:57415 378322038 22 1200000013f51f000000000001000300000000000000 ...................... +2834 8.415483952 127.0.0.1:57415 127.0.0.1:57433 3334957874 12 ffffffff19380b0000000000 .....8...... +2837 8.453169823 127.0.0.1:57415 127.0.0.1:57433 3334957886 12 22000000b7620b0000000000 "....b...... +2839 8.453410864 127.0.0.1:57415 127.0.0.1:57433 3334957898 34 1e0000001c2118d0c46f33bb010003000000621e02000000000028e332c39d01 .....!...o3.......b.......(.2..... +2841 8.453542233 127.0.0.1:57415 127.0.0.1:57433 3334957932 12 43000000b8620b0000000000 C....b...... +2843 8.453624010 127.0.0.1:57415 127.0.0.1:57433 3334957944 67 3f000000980433cb0cb47c380100030000000100000000621e0200000000003d ?.....3...|8...........b.......=B.....&......... +2845 8.453736305 127.0.0.1:57433 127.0.0.1:57415 378322060 12 ffffffffb7620b0000000000 .....b...... +2847 8.453918457 127.0.0.1:57433 127.0.0.1:57415 378322072 12 ffffffffb8620b0000000000 .....b...... +2849 8.454787493 127.0.0.1:57433 127.0.0.1:57415 378322084 12 340000001a380b0000000000 4....8...... +2851 8.454945564 127.0.0.1:57433 127.0.0.1:57415 378322096 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....b...........\. +2853 8.455301523 127.0.0.1:57415 127.0.0.1:57433 3334958011 12 ffffffff1a380b0000000000 .....8...... +2855 8.455998421 127.0.0.1:57415 127.0.0.1:57433 3334958023 12 1e000000b9620b0000000000 .....b...... +2857 8.456163168 127.0.0.1:57415 127.0.0.1:57433 3334958035 30 1a00000055ceff62b21b3a5001000300000015f51f000000000000000000 ....U..b..:P.................. +2859 8.456514359 127.0.0.1:57433 127.0.0.1:57415 378322148 12 ffffffffb9620b0000000000 .....b...... +2861 8.456853390 127.0.0.1:57433 127.0.0.1:57415 378322160 12 1a0000001b380b0000000000 .....8...... +2863 8.456997633 127.0.0.1:57433 127.0.0.1:57415 378322172 26 1600000015f51f00000000000100030000000000000000000000 .......................... +2865 8.457342625 127.0.0.1:57415 127.0.0.1:57433 3334958065 12 ffffffff1b380b0000000000 .....8...... +2870 8.513440371 127.0.0.1:57433 127.0.0.1:57415 378322198 12 feffffffc24a0100d24a0100 .....J...J.. +2872 8.516727686 127.0.0.1:57415 127.0.0.1:57433 3334958077 12 1a000000ba620b0000000000 .....b...... +2874 8.516909361 127.0.0.1:57415 127.0.0.1:57433 3334958089 26 16000000548f6340e25e314001000300000017f51f0000000000 ....T.c@.^1@.............. +2876 8.517194271 127.0.0.1:57433 127.0.0.1:57415 378322210 12 ffffffffba620b0000000000 .....b...... +2878 8.517692804 127.0.0.1:57433 127.0.0.1:57415 378322222 12 160000001c380b0000000000 .....8...... +2880 8.517853260 127.0.0.1:57433 127.0.0.1:57415 378322234 22 1200000017f51f000000000001000300000000000000 ...................... +2882 8.518162966 127.0.0.1:57415 127.0.0.1:57433 3334958115 12 ffffffff1c380b0000000000 .....8...... +2892 8.582043886 127.0.0.1:57415 127.0.0.1:57433 3334958127 12 feffffffd34a0100c24a0100 .....J...J.. +2897 8.619239330 127.0.0.1:57415 127.0.0.1:57433 3334958139 12 1a000000bb620b0000000000 .....b...... +2899 8.619415045 127.0.0.1:57415 127.0.0.1:57433 3334958151 26 16000000548f6340e25e314001000300000019f51f0000000000 ....T.c@.^1@.............. +2901 8.619783163 127.0.0.1:57433 127.0.0.1:57415 378322256 12 ffffffffbb620b0000000000 .....b...... +2903 8.620322466 127.0.0.1:57433 127.0.0.1:57415 378322268 12 160000001d380b0000000000 .....8...... +2905 8.620526791 127.0.0.1:57433 127.0.0.1:57415 378322280 22 1200000019f51f000000000001000300000000000000 ...................... +2907 8.620769024 127.0.0.1:57415 127.0.0.1:57433 3334958177 12 ffffffff1d380b0000000000 .....8...... +2919 8.723253489 127.0.0.1:57415 127.0.0.1:57433 3334958189 12 1a000000bc620b0000000000 .....b...... +2922 8.723432302 127.0.0.1:57415 127.0.0.1:57433 3334958201 26 16000000548f6340e25e31400100030000001bf51f0000000000 ....T.c@.^1@.............. +2924 8.723824739 127.0.0.1:57433 127.0.0.1:57415 378322302 12 ffffffffbc620b0000000000 .....b...... +2926 8.724282742 127.0.0.1:57433 127.0.0.1:57415 378322314 12 160000001e380b0000000000 .....8...... +2928 8.724440098 127.0.0.1:57433 127.0.0.1:57415 378322326 22 120000001bf51f000000000001000300000000000000 ...................... +2930 8.724701881 127.0.0.1:57415 127.0.0.1:57433 3334958227 12 ffffffff1e380b0000000000 .....8...... +2999 8.758634090 127.0.0.1:57415 127.0.0.1:57433 3334958239 12 65000000bd620b0000000000 e....b...... +3001 8.758828878 127.0.0.1:57415 127.0.0.1:57433 3334958251 101 1e0000001c2118d0c46f33bb010003000000631e0200000000005ae432c39d01 .....!...o3.......c.......Z.2.....?.....3...|8.. +3003 8.759136677 127.0.0.1:57433 127.0.0.1:57415 378322348 12 ffffffffbd620b0000000000 .....b...... +3005 8.760081530 127.0.0.1:57433 127.0.0.1:57415 378322360 12 340000001f380b0000000000 4....8...... +3007 8.760242224 127.0.0.1:57433 127.0.0.1:57415 378322372 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....c.........+... +3009 8.760508537 127.0.0.1:57415 127.0.0.1:57433 3334958352 12 ffffffff1f380b0000000000 .....8...... +3011 8.761231661 127.0.0.1:57415 127.0.0.1:57433 3334958364 12 1e000000be620b0000000000 .....b...... +3013 8.761382103 127.0.0.1:57415 127.0.0.1:57433 3334958376 30 1a00000055ceff62b21b3a500100030000001df51f000000000000000000 ....U..b..:P.................. +3015 8.761744261 127.0.0.1:57433 127.0.0.1:57415 378322424 12 ffffffffbe620b0000000000 .....b...... +3017 8.762503624 127.0.0.1:57433 127.0.0.1:57415 378322436 12 1a00000020380b0000000000 .... 8...... +3019 8.762678623 127.0.0.1:57433 127.0.0.1:57415 378322448 26 160000001df51f00000000000100030000000000000000000000 .......................... +3021 8.762989283 127.0.0.1:57415 127.0.0.1:57433 3334958406 12 ffffffff20380b0000000000 .... 8...... +3167 8.826475143 127.0.0.1:57415 127.0.0.1:57433 3334958418 12 1a000000bf620b0000000000 .....b...... +3169 8.826692343 127.0.0.1:57415 127.0.0.1:57433 3334958430 26 16000000548f6340e25e31400100030000001ff51f0000000000 ....T.c@.^1@.............. +3171 8.827015877 127.0.0.1:57433 127.0.0.1:57415 378322474 12 ffffffffbf620b0000000000 .....b...... +3173 8.827482224 127.0.0.1:57433 127.0.0.1:57415 378322486 12 1600000021380b0000000000 ....!8...... +3175 8.827633142 127.0.0.1:57433 127.0.0.1:57415 378322498 22 120000001ff51f000000000001000300000000000000 ...................... +3177 8.828063726 127.0.0.1:57415 127.0.0.1:57433 3334958456 12 ffffffff21380b0000000000 ....!8...... +3364 8.929532528 127.0.0.1:57415 127.0.0.1:57433 3334958468 12 1a000000c0620b0000000000 .....b...... +3366 8.929810762 127.0.0.1:57415 127.0.0.1:57433 3334958480 26 16000000548f6340e25e314001000300000021f51f0000000000 ....T.c@.^1@......!....... +3368 8.930190563 127.0.0.1:57433 127.0.0.1:57415 378322520 12 ffffffffc0620b0000000000 .....b...... +3372 8.930822849 127.0.0.1:57433 127.0.0.1:57415 378322532 12 1600000022380b0000000000 ...."8...... +3375 8.931032658 127.0.0.1:57433 127.0.0.1:57415 378322544 22 1200000021f51f000000000001000300000000000000 ....!................. +3380 8.931393862 127.0.0.1:57415 127.0.0.1:57433 3334958506 12 ffffffff22380b0000000000 ...."8...... +3476 9.013589144 127.0.0.1:57433 127.0.0.1:57415 378322566 12 feffffffc34a0100d34a0100 .....J...J.. +3484 9.032896042 127.0.0.1:57415 127.0.0.1:57433 3334958518 12 1a000000c1620b0000000000 .....b...... +3486 9.033080816 127.0.0.1:57415 127.0.0.1:57433 3334958530 26 16000000548f6340e25e314001000300000023f51f0000000000 ....T.c@.^1@......#....... +3488 9.033708811 127.0.0.1:57433 127.0.0.1:57415 378322578 12 ffffffffc1620b0000000000 .....b...... +3490 9.033947468 127.0.0.1:57433 127.0.0.1:57415 378322590 12 1600000023380b0000000000 ....#8...... +3492 9.034109592 127.0.0.1:57433 127.0.0.1:57415 378322602 22 1200000023f51f000000000001000300000000000000 ....#................. +3494 9.034456968 127.0.0.1:57415 127.0.0.1:57433 3334958556 12 ffffffff23380b0000000000 ....#8...... +3500 9.062114477 127.0.0.1:57415 127.0.0.1:57433 3334958568 12 22000000c2620b0000000000 "....b...... +3502 9.062363386 127.0.0.1:57415 127.0.0.1:57433 3334958580 34 1e0000001c2118d0c46f33bb010003000000641e02000000000089e532c39d01 .....!...o3.......d.........2..... +3504 9.062457085 127.0.0.1:57415 127.0.0.1:57433 3334958614 12 43000000c3620b0000000000 C....b...... +3506 9.062543392 127.0.0.1:57415 127.0.0.1:57433 3334958626 67 3f000000980433cb0cb47c380100030000000100000000641e0200000000003d ?.....3...|8...........d.......=B.....&......... +3508 9.062830448 127.0.0.1:57433 127.0.0.1:57415 378322624 12 ffffffffc2620b0000000000 .....b...... +3510 9.063014269 127.0.0.1:57433 127.0.0.1:57415 378322636 12 ffffffffc3620b0000000000 .....b...... +3512 9.069159985 127.0.0.1:57433 127.0.0.1:57415 378322648 12 3400000024380b0000000000 4...$8...... +3514 9.069429874 127.0.0.1:57433 127.0.0.1:57415 378322660 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....d.........S... +3516 9.069709778 127.0.0.1:57415 127.0.0.1:57433 3334958693 12 ffffffff24380b0000000000 ....$8...... +3518 9.070538282 127.0.0.1:57415 127.0.0.1:57433 3334958705 12 1e000000c4620b0000000000 .....b...... +3520 9.070691824 127.0.0.1:57415 127.0.0.1:57433 3334958717 30 1a00000055ceff62b21b3a5001000300000025f51f000000000000000000 ....U..b..:P......%........... +3522 9.071029902 127.0.0.1:57433 127.0.0.1:57415 378322712 12 ffffffffc4620b0000000000 .....b...... +3524 9.075550079 127.0.0.1:57433 127.0.0.1:57415 378322724 12 1a00000025380b0000000000 ....%8...... +3526 9.075742006 127.0.0.1:57433 127.0.0.1:57415 378322736 26 1600000025f51f00000000000100030000000000000000000000 ....%..................... +3528 9.075982809 127.0.0.1:57415 127.0.0.1:57433 3334958747 12 ffffffff25380b0000000000 ....%8...... +3530 9.082573891 127.0.0.1:57415 127.0.0.1:57433 3334958759 12 feffffffd44a0100c34a0100 .....J...J.. +3536 9.136072397 127.0.0.1:57415 127.0.0.1:57433 3334958771 12 1a000000c5620b0000000000 .....b...... +3538 9.136427879 127.0.0.1:57415 127.0.0.1:57433 3334958783 26 16000000548f6340e25e314001000300000027f51f0000000000 ....T.c@.^1@......'....... +3540 9.136858463 127.0.0.1:57433 127.0.0.1:57415 378322762 12 ffffffffc5620b0000000000 .....b...... +3542 9.137442350 127.0.0.1:57433 127.0.0.1:57415 378322774 12 1600000026380b0000000000 ....&8...... +3544 9.137609482 127.0.0.1:57433 127.0.0.1:57415 378322786 22 1200000027f51f000000000001000300000000000000 ....'................. +3546 9.137840509 127.0.0.1:57415 127.0.0.1:57433 3334958809 12 ffffffff26380b0000000000 ....&8...... +3548 9.240874767 127.0.0.1:57415 127.0.0.1:57433 3334958821 12 1a000000c6620b0000000000 .....b...... +3550 9.241114616 127.0.0.1:57415 127.0.0.1:57433 3334958833 26 16000000548f6340e25e314001000300000029f51f0000000000 ....T.c@.^1@......)....... +3552 9.241721869 127.0.0.1:57433 127.0.0.1:57415 378322808 12 ffffffffc6620b0000000000 .....b...... +3554 9.242129326 127.0.0.1:57433 127.0.0.1:57415 378322820 12 1600000027380b0000000000 ....'8...... +3556 9.242326736 127.0.0.1:57433 127.0.0.1:57415 378322832 22 1200000029f51f000000000001000300000000000000 ....)................. +3558 9.242743254 127.0.0.1:57415 127.0.0.1:57433 3334958859 12 ffffffff27380b0000000000 ....'8...... +3626 9.344799995 127.0.0.1:57415 127.0.0.1:57433 3334958871 12 1a000000c7620b0000000000 .....b...... +3628 9.344969988 127.0.0.1:57415 127.0.0.1:57433 3334958883 26 16000000548f6340e25e31400100030000002bf51f0000000000 ....T.c@.^1@......+....... +3630 9.345404387 127.0.0.1:57433 127.0.0.1:57415 378322854 12 ffffffffc7620b0000000000 .....b...... +3632 9.345907688 127.0.0.1:57433 127.0.0.1:57415 378322866 12 1600000028380b0000000000 ....(8...... +3634 9.346104383 127.0.0.1:57433 127.0.0.1:57415 378322878 22 120000002bf51f000000000001000300000000000000 ....+................. +3636 9.346430779 127.0.0.1:57415 127.0.0.1:57433 3334958909 12 ffffffff28380b0000000000 ....(8...... +3650 9.372106552 127.0.0.1:57415 127.0.0.1:57433 3334958921 12 22000000c8620b0000000000 "....b...... +3652 9.372317791 127.0.0.1:57415 127.0.0.1:57433 3334958933 34 1e0000001c2118d0c46f33bb010003000000651e020000000000bfe632c39d01 .....!...o3.......e.........2..... +3654 9.372416735 127.0.0.1:57415 127.0.0.1:57433 3334958967 12 43000000c9620b0000000000 C....b...... +3656 9.372501850 127.0.0.1:57415 127.0.0.1:57433 3334958979 67 3f000000980433cb0cb47c380100030000000100000000651e0200000000003d ?.....3...|8...........e.......=B.....&......... +3657 9.372550726 127.0.0.1:57433 127.0.0.1:57415 378322900 12 ffffffffc8620b0000000000 .....b...... +3660 9.372792721 127.0.0.1:57433 127.0.0.1:57415 378322912 12 ffffffffc9620b0000000000 .....b...... +3662 9.373737812 127.0.0.1:57433 127.0.0.1:57415 378322924 12 3400000029380b0000000000 4...)8...... +3664 9.373924017 127.0.0.1:57433 127.0.0.1:57415 378322936 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....e..........&.. +3666 9.374176502 127.0.0.1:57415 127.0.0.1:57433 3334959046 12 ffffffff29380b0000000000 ....)8...... +3667 9.374970675 127.0.0.1:57415 127.0.0.1:57433 3334959058 12 1e000000ca620b0000000000 .....b...... +3669 9.375136137 127.0.0.1:57415 127.0.0.1:57433 3334959070 30 1a00000055ceff62b21b3a500100030000002df51f000000000000000000 ....U..b..:P......-........... +3671 9.375481844 127.0.0.1:57433 127.0.0.1:57415 378322988 12 ffffffffca620b0000000000 .....b...... +3673 9.376122475 127.0.0.1:57433 127.0.0.1:57415 378323000 12 1a0000002a380b0000000000 ....*8...... +3675 9.376309395 127.0.0.1:57433 127.0.0.1:57415 378323012 26 160000002df51f00000000000100030000000000000000000000 ....-..................... +3677 9.376533985 127.0.0.1:57415 127.0.0.1:57433 3334959100 12 ffffffff2a380b0000000000 ....*8...... +3681 9.449202061 127.0.0.1:57415 127.0.0.1:57433 3334959112 12 1a000000cb620b0000000000 .....b...... +3683 9.449446440 127.0.0.1:57415 127.0.0.1:57433 3334959124 26 16000000548f6340e25e31400100030000002ff51f0000000000 ....T.c@.^1@....../....... +3685 9.449936628 127.0.0.1:57433 127.0.0.1:57415 378323038 12 ffffffffcb620b0000000000 .....b...... +3687 9.450362921 127.0.0.1:57433 127.0.0.1:57415 378323050 12 160000002b380b0000000000 ....+8...... +3689 9.450570107 127.0.0.1:57433 127.0.0.1:57415 378323062 22 120000002ff51f000000000001000300000000000000 ..../................. +3691 9.450918674 127.0.0.1:57415 127.0.0.1:57433 3334959150 12 ffffffff2b380b0000000000 ....+8...... +3732 9.514460325 127.0.0.1:57433 127.0.0.1:57415 378323084 12 feffffffc44a0100d44a0100 .....J...J.. +3740 9.553362131 127.0.0.1:57415 127.0.0.1:57433 3334959162 12 1a000000cc620b0000000000 .....b...... +3742 9.553544283 127.0.0.1:57415 127.0.0.1:57433 3334959174 26 16000000548f6340e25e314001000300000031f51f0000000000 ....T.c@.^1@......1....... +3744 9.553990841 127.0.0.1:57433 127.0.0.1:57415 378323096 12 ffffffffcc620b0000000000 .....b...... +3746 9.554421663 127.0.0.1:57433 127.0.0.1:57415 378323108 12 160000002c380b0000000000 ....,8...... +3748 9.554587126 127.0.0.1:57433 127.0.0.1:57415 378323120 22 1200000031f51f000000000001000300000000000000 ....1................. +3750 9.554905176 127.0.0.1:57415 127.0.0.1:57433 3334959200 12 ffffffff2c380b0000000000 ....,8...... +3752 9.582920074 127.0.0.1:57415 127.0.0.1:57433 3334959212 12 feffffffd54a0100c44a0100 .....J...J.. +3797 9.656273365 127.0.0.1:57415 127.0.0.1:57433 3334959224 12 1a000000cd620b0000000000 .....b...... +3799 9.656445980 127.0.0.1:57415 127.0.0.1:57433 3334959236 26 16000000548f6340e25e314001000300000033f51f0000000000 ....T.c@.^1@......3....... +3801 9.656887770 127.0.0.1:57433 127.0.0.1:57415 378323142 12 ffffffffcd620b0000000000 .....b...... +3803 9.657303333 127.0.0.1:57433 127.0.0.1:57415 378323154 12 160000002d380b0000000000 ....-8...... +3805 9.657520771 127.0.0.1:57433 127.0.0.1:57415 378323166 22 1200000033f51f000000000001000300000000000000 ....3................. +3807 9.657859564 127.0.0.1:57415 127.0.0.1:57433 3334959262 12 ffffffff2d380b0000000000 ....-8...... +3809 9.676445961 127.0.0.1:57415 127.0.0.1:57433 3334959274 12 22000000ce620b0000000000 "....b...... +3811 9.676647663 127.0.0.1:57415 127.0.0.1:57433 3334959286 34 1e0000001c2118d0c46f33bb010003000000661e020000000000f0e732c39d01 .....!...o3.......f.........2..... +3813 9.676738262 127.0.0.1:57415 127.0.0.1:57433 3334959320 12 43000000cf620b0000000000 C....b...... +3815 9.676823616 127.0.0.1:57415 127.0.0.1:57433 3334959332 67 3f000000980433cb0cb47c380100030000000100000000661e0200000000003d ?.....3...|8...........f.......=B.....&......... +3816 9.676907063 127.0.0.1:57433 127.0.0.1:57415 378323188 12 ffffffffce620b0000000000 .....b...... +3817 9.677008390 127.0.0.1:57433 127.0.0.1:57415 378323200 12 ffffffffcf620b0000000000 .....b...... +3820 9.678031445 127.0.0.1:57433 127.0.0.1:57415 378323212 12 340000002e380b0000000000 4....8...... +3822 9.678206682 127.0.0.1:57433 127.0.0.1:57415 378323224 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....f............. +3824 9.678463459 127.0.0.1:57415 127.0.0.1:57433 3334959399 12 ffffffff2e380b0000000000 .....8...... +3825 9.679229975 127.0.0.1:57415 127.0.0.1:57433 3334959411 12 1e000000d0620b0000000000 .....b...... +3826 9.679327488 127.0.0.1:57415 127.0.0.1:57433 3334959423 30 1a00000055ceff62b21b3a5001000300000035f51f000000000000000000 ....U..b..:P......5........... +3827 9.679540873 127.0.0.1:57433 127.0.0.1:57415 378323276 12 ffffffffd0620b0000000000 .....b...... +3829 9.679900169 127.0.0.1:57433 127.0.0.1:57415 378323288 12 1a0000002f380b0000000000 ..../8...... +3831 9.680052042 127.0.0.1:57433 127.0.0.1:57415 378323300 26 1600000035f51f00000000000100030000000000000000000000 ....5..................... +3833 9.680284739 127.0.0.1:57415 127.0.0.1:57433 3334959453 12 ffffffff2f380b0000000000 ..../8...... +3835 9.759223938 127.0.0.1:57415 127.0.0.1:57433 3334959465 12 1a000000d1620b0000000000 .....b...... +3837 9.759450674 127.0.0.1:57415 127.0.0.1:57433 3334959477 26 16000000548f6340e25e314001000300000037f51f0000000000 ....T.c@.^1@......7....... +3839 9.759846687 127.0.0.1:57433 127.0.0.1:57415 378323326 12 ffffffffd1620b0000000000 .....b...... +3841 9.760424614 127.0.0.1:57433 127.0.0.1:57415 378323338 12 1600000030380b0000000000 ....08...... +3843 9.760583401 127.0.0.1:57433 127.0.0.1:57415 378323350 22 1200000037f51f000000000001000300000000000000 ....7................. +3845 9.761105537 127.0.0.1:57415 127.0.0.1:57433 3334959503 12 ffffffff30380b0000000000 ....08...... +3895 9.862031460 127.0.0.1:57415 127.0.0.1:57433 3334959515 12 1a000000d2620b0000000000 .....b...... +3897 9.862200975 127.0.0.1:57415 127.0.0.1:57433 3334959527 26 16000000548f6340e25e314001000300000039f51f0000000000 ....T.c@.^1@......9....... +3899 9.862506151 127.0.0.1:57433 127.0.0.1:57415 378323372 12 ffffffffd2620b0000000000 .....b...... +3901 9.863132715 127.0.0.1:57433 127.0.0.1:57415 378323384 12 1600000031380b0000000000 ....18...... +3903 9.863311768 127.0.0.1:57433 127.0.0.1:57415 378323396 22 1200000039f51f000000000001000300000000000000 ....9................. +3905 9.863703489 127.0.0.1:57415 127.0.0.1:57433 3334959553 12 ffffffff31380b0000000000 ....18...... +3949 9.966311932 127.0.0.1:57415 127.0.0.1:57433 3334959565 12 1a000000d3620b0000000000 .....b...... +3951 9.966476440 127.0.0.1:57415 127.0.0.1:57433 3334959577 26 16000000548f6340e25e31400100030000003bf51f0000000000 ....T.c@.^1@......;....... +3953 9.966802359 127.0.0.1:57433 127.0.0.1:57415 378323418 12 ffffffffd3620b0000000000 .....b...... +3955 9.967292070 127.0.0.1:57433 127.0.0.1:57415 378323430 12 1600000032380b0000000000 ....28...... +3957 9.967457294 127.0.0.1:57433 127.0.0.1:57415 378323442 22 120000003bf51f000000000001000300000000000000 ....;................. +3959 9.967710257 127.0.0.1:57415 127.0.0.1:57433 3334959603 12 ffffffff32380b0000000000 ....28...... +3961 9.980782032 127.0.0.1:57415 127.0.0.1:57433 3334959615 12 65000000d4620b0000000000 e....b...... +3963 9.980950117 127.0.0.1:57415 127.0.0.1:57433 3334959627 101 1e0000001c2118d0c46f33bb010003000000671e02000000000020e932c39d01 .....!...o3.......g....... .2.....?.....3...|8.. +3965 9.981420994 127.0.0.1:57433 127.0.0.1:57415 378323464 12 ffffffffd4620b0000000000 .....b...... +3967 9.982316017 127.0.0.1:57433 127.0.0.1:57415 378323476 12 3400000033380b0000000000 4...38...... +3969 9.982532501 127.0.0.1:57433 127.0.0.1:57415 378323488 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....g...........E. +3971 9.982920408 127.0.0.1:57415 127.0.0.1:57433 3334959728 12 ffffffff33380b0000000000 ....38...... +3973 9.983794451 127.0.0.1:57415 127.0.0.1:57433 3334959740 12 1e000000d5620b0000000000 .....b...... +3975 9.983947039 127.0.0.1:57415 127.0.0.1:57433 3334959752 30 1a00000055ceff62b21b3a500100030000003df51f000000000000000000 ....U..b..:P......=........... +3977 9.984241962 127.0.0.1:57433 127.0.0.1:57415 378323540 12 ffffffffd5620b0000000000 .....b...... +3979 9.984591722 127.0.0.1:57433 127.0.0.1:57415 378323552 12 1a00000034380b0000000000 ....48...... +3981 9.984786034 127.0.0.1:57433 127.0.0.1:57415 378323564 26 160000003df51f00000000000100030000000000000000000000 ....=..................... +3983 9.985048056 127.0.0.1:57415 127.0.0.1:57433 3334959782 12 ffffffff34380b0000000000 ....48...... +3985 10.014503479 127.0.0.1:57433 127.0.0.1:57415 378323590 12 feffffffc54a0100d54a0100 .....J...J.. +4033 10.069848299 127.0.0.1:57415 127.0.0.1:57433 3334959794 12 1a000000d6620b0000000000 .....b...... +4035 10.070068598 127.0.0.1:57415 127.0.0.1:57433 3334959806 26 16000000548f6340e25e31400100030000003ff51f0000000000 ....T.c@.^1@......?....... +4037 10.070412636 127.0.0.1:57433 127.0.0.1:57415 378323602 12 ffffffffd6620b0000000000 .....b...... +4039 10.070917606 127.0.0.1:57433 127.0.0.1:57415 378323614 12 1600000035380b0000000000 ....58...... +4041 10.071077824 127.0.0.1:57433 127.0.0.1:57415 378323626 22 120000003ff51f000000000001000300000000000000 ....?................. +4043 10.071429253 127.0.0.1:57415 127.0.0.1:57433 3334959832 12 ffffffff35380b0000000000 ....58...... +4045 10.084948301 127.0.0.1:57415 127.0.0.1:57433 3334959844 12 feffffffd64a0100c54a0100 .....J...J.. +4051 10.172731638 127.0.0.1:57415 127.0.0.1:57433 3334959856 12 1a000000d7620b0000000000 .....b...... +4053 10.172930241 127.0.0.1:57415 127.0.0.1:57433 3334959868 26 16000000548f6340e25e314001000300000041f51f0000000000 ....T.c@.^1@......A....... +4055 10.173423290 127.0.0.1:57433 127.0.0.1:57415 378323648 12 ffffffffd7620b0000000000 .....b...... +4057 10.173888683 127.0.0.1:57433 127.0.0.1:57415 378323660 12 1600000036380b0000000000 ....68...... +4059 10.174050808 127.0.0.1:57433 127.0.0.1:57415 378323672 22 1200000041f51f000000000001000300000000000000 ....A................. +4061 10.174388885 127.0.0.1:57415 127.0.0.1:57433 3334959894 12 ffffffff36380b0000000000 ....68...... +4119 10.276212215 127.0.0.1:57415 127.0.0.1:57433 3334959906 12 1a000000d8620b0000000000 .....b...... +4121 10.276369810 127.0.0.1:57415 127.0.0.1:57433 3334959918 26 16000000548f6340e25e314001000300000043f51f0000000000 ....T.c@.^1@......C....... +4124 10.276647091 127.0.0.1:57433 127.0.0.1:57415 378323694 12 ffffffffd8620b0000000000 .....b...... +4127 10.277122498 127.0.0.1:57433 127.0.0.1:57415 378323706 12 1600000037380b0000000000 ....78...... +4129 10.277274609 127.0.0.1:57433 127.0.0.1:57415 378323718 22 1200000043f51f000000000001000300000000000000 ....C................. +4131 10.277562857 127.0.0.1:57415 127.0.0.1:57433 3334959944 12 ffffffff37380b0000000000 ....78...... +4152 10.286534786 127.0.0.1:57415 127.0.0.1:57433 3334959956 12 65000000d9620b0000000000 e....b...... +4154 10.286708593 127.0.0.1:57415 127.0.0.1:57433 3334959968 101 1e0000001c2118d0c46f33bb010003000000681e02000000000051ea32c39d01 .....!...o3.......h.......Q.2.....?.....3...|8.. +4156 10.287166834 127.0.0.1:57433 127.0.0.1:57415 378323740 12 ffffffffd9620b0000000000 .....b...... +4158 10.288279295 127.0.0.1:57433 127.0.0.1:57415 378323752 12 3400000038380b0000000000 4...88...... +4160 10.288466692 127.0.0.1:57433 127.0.0.1:57415 378323764 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....h...........t. +4162 10.288725615 127.0.0.1:57415 127.0.0.1:57433 3334960069 12 ffffffff38380b0000000000 ....88...... +4164 10.289573193 127.0.0.1:57415 127.0.0.1:57433 3334960081 12 1e000000da620b0000000000 .....b...... +4166 10.289726496 127.0.0.1:57415 127.0.0.1:57433 3334960093 30 1a00000055ceff62b21b3a5001000300000045f51f000000000000000000 ....U..b..:P......E........... +4168 10.290131330 127.0.0.1:57433 127.0.0.1:57415 378323816 12 ffffffffda620b0000000000 .....b...... +4170 10.290455580 127.0.0.1:57433 127.0.0.1:57415 378323828 12 1a00000039380b0000000000 ....98...... +4172 10.290601015 127.0.0.1:57433 127.0.0.1:57415 378323840 26 1600000045f51f00000000000100030000000000000000000000 ....E..................... +4174 10.290850878 127.0.0.1:57415 127.0.0.1:57433 3334960123 12 ffffffff39380b0000000000 ....98...... +4178 10.378773451 127.0.0.1:57415 127.0.0.1:57433 3334960135 12 1a000000db620b0000000000 .....b...... +4180 10.378949642 127.0.0.1:57415 127.0.0.1:57433 3334960147 26 16000000548f6340e25e314001000300000047f51f0000000000 ....T.c@.^1@......G....... +4182 10.379300117 127.0.0.1:57433 127.0.0.1:57415 378323866 12 ffffffffdb620b0000000000 .....b...... +4184 10.379734278 127.0.0.1:57433 127.0.0.1:57415 378323878 12 160000003a380b0000000000 ....:8...... +4186 10.379890442 127.0.0.1:57433 127.0.0.1:57415 378323890 22 1200000047f51f000000000001000300000000000000 ....G................. +4188 10.380152941 127.0.0.1:57415 127.0.0.1:57433 3334960173 12 ffffffff3a380b0000000000 ....:8...... +4193 10.481171846 127.0.0.1:57415 127.0.0.1:57433 3334960185 12 1a000000dc620b0000000000 .....b...... +4195 10.481360674 127.0.0.1:57415 127.0.0.1:57433 3334960197 26 16000000548f6340e25e314001000300000049f51f0000000000 ....T.c@.^1@......I....... +4197 10.481781244 127.0.0.1:57433 127.0.0.1:57415 378323912 12 ffffffffdc620b0000000000 .....b...... +4199 10.482248783 127.0.0.1:57433 127.0.0.1:57415 378323924 12 160000003b380b0000000000 ....;8...... +4201 10.482428312 127.0.0.1:57433 127.0.0.1:57415 378323936 22 1200000049f51f000000000001000300000000000000 ....I................. +4203 10.482770681 127.0.0.1:57415 127.0.0.1:57433 3334960223 12 ffffffff3b380b0000000000 ....;8...... +4206 10.516025066 127.0.0.1:57433 127.0.0.1:57415 378323958 12 feffffffc64a0100d64a0100 .....J...J.. +4214 10.584890842 127.0.0.1:57415 127.0.0.1:57433 3334960235 12 1a000000dd620b0000000000 .....b...... +4216 10.585110903 127.0.0.1:57415 127.0.0.1:57433 3334960247 26 16000000548f6340e25e31400100030000004bf51f0000000000 ....T.c@.^1@......K....... +4218 10.585453510 127.0.0.1:57433 127.0.0.1:57415 378323970 12 ffffffffdd620b0000000000 .....b...... +4220 10.585941076 127.0.0.1:57433 127.0.0.1:57415 378323982 12 160000003c380b0000000000 ....<8...... +4222 10.586100578 127.0.0.1:57433 127.0.0.1:57415 378323994 22 120000004bf51f000000000001000300000000000000 ....K................. +4224 10.586432934 127.0.0.1:57415 127.0.0.1:57433 3334960273 12 ffffffff3c380b0000000000 ....<8...... +4226 10.587105989 127.0.0.1:57415 127.0.0.1:57433 3334960285 12 feffffffd74a0100c64a0100 .....J...J.. +4232 10.591628075 127.0.0.1:57415 127.0.0.1:57433 3334960297 12 65000000de620b0000000000 e....b...... +4234 10.591946840 127.0.0.1:57415 127.0.0.1:57433 3334960309 101 1e0000001c2118d0c46f33bb010003000000691e02000000000083eb32c39d01 .....!...o3.......i.........2.....?.....3...|8.. +4236 10.592348099 127.0.0.1:57433 127.0.0.1:57415 378324016 12 ffffffffde620b0000000000 .....b...... +4238 10.593242168 127.0.0.1:57433 127.0.0.1:57415 378324028 12 340000003d380b0000000000 4...=8...... +4240 10.593403101 127.0.0.1:57433 127.0.0.1:57415 378324040 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....i..........<.. +4242 10.593714952 127.0.0.1:57415 127.0.0.1:57433 3334960410 12 ffffffff3d380b0000000000 ....=8...... +4244 10.594482183 127.0.0.1:57415 127.0.0.1:57433 3334960422 12 1e000000df620b0000000000 .....b...... +4246 10.594734907 127.0.0.1:57415 127.0.0.1:57433 3334960434 30 1a00000055ceff62b21b3a500100030000004df51f000000000000000000 ....U..b..:P......M........... +4248 10.595046759 127.0.0.1:57433 127.0.0.1:57415 378324092 12 ffffffffdf620b0000000000 .....b...... +4250 10.595431089 127.0.0.1:57433 127.0.0.1:57415 378324104 12 1a0000003e380b0000000000 ....>8...... +4252 10.595571995 127.0.0.1:57433 127.0.0.1:57415 378324116 26 160000004df51f00000000000100030000000000000000000000 ....M..................... +4254 10.595842600 127.0.0.1:57415 127.0.0.1:57433 3334960464 12 ffffffff3e380b0000000000 ....>8...... +4257 10.687549353 127.0.0.1:57415 127.0.0.1:57433 3334960476 12 1a000000e0620b0000000000 .....b...... +4259 10.687719584 127.0.0.1:57415 127.0.0.1:57433 3334960488 26 16000000548f6340e25e31400100030000004ff51f0000000000 ....T.c@.^1@......O....... +4261 10.688110828 127.0.0.1:57433 127.0.0.1:57415 378324142 12 ffffffffe0620b0000000000 .....b...... +4263 10.688631296 127.0.0.1:57433 127.0.0.1:57415 378324154 12 160000003f380b0000000000 ....?8...... +4265 10.688791752 127.0.0.1:57433 127.0.0.1:57415 378324166 22 120000004ff51f000000000001000300000000000000 ....O................. +4267 10.689220667 127.0.0.1:57415 127.0.0.1:57433 3334960514 12 ffffffff3f380b0000000000 ....?8...... +4276 10.790849924 127.0.0.1:57415 127.0.0.1:57433 3334960526 12 1a000000e1620b0000000000 .....b...... +4278 10.791037083 127.0.0.1:57415 127.0.0.1:57433 3334960538 26 16000000548f6340e25e314001000300000051f51f0000000000 ....T.c@.^1@......Q....... +4280 10.791555166 127.0.0.1:57433 127.0.0.1:57415 378324188 12 ffffffffe1620b0000000000 .....b...... +4282 10.792169809 127.0.0.1:57433 127.0.0.1:57415 378324200 12 1600000040380b0000000000 ....@8...... +4284 10.792407990 127.0.0.1:57433 127.0.0.1:57415 378324212 22 1200000051f51f000000000001000300000000000000 ....Q................. +4286 10.792649031 127.0.0.1:57415 127.0.0.1:57433 3334960564 12 ffffffff40380b0000000000 ....@8...... +4293 10.895310879 127.0.0.1:57415 127.0.0.1:57433 3334960576 12 1a000000e2620b0000000000 .....b...... +4295 10.895480156 127.0.0.1:57415 127.0.0.1:57433 3334960588 26 16000000548f6340e25e314001000300000053f51f0000000000 ....T.c@.^1@......S....... +4297 10.895687580 127.0.0.1:57415 127.0.0.1:57433 3334960614 12 22000000e3620b0000000000 "....b...... +4299 10.895804167 127.0.0.1:57415 127.0.0.1:57433 3334960626 34 1e0000001c2118d0c46f33bb0100030000006a1e020000000000b3ec32c39d01 .....!...o3.......j.........2..... +4300 10.895876884 127.0.0.1:57433 127.0.0.1:57415 378324234 12 ffffffffe2620b0000000000 .....b...... +4301 10.895888805 127.0.0.1:57415 127.0.0.1:57433 3334960660 12 43000000e4620b0000000000 C....b...... +4302 10.895995140 127.0.0.1:57415 127.0.0.1:57433 3334960672 67 3f000000980433cb0cb47c3801000300000001000000006a1e0200000000003d ?.....3...|8...........j.......=B.....&......... +4304 10.896172285 127.0.0.1:57433 127.0.0.1:57415 378324246 12 ffffffffe3620b0000000000 .....b...... +4306 10.896405697 127.0.0.1:57433 127.0.0.1:57415 378324258 12 ffffffffe4620b0000000000 .....b...... +4308 10.896698475 127.0.0.1:57433 127.0.0.1:57415 378324270 12 1600000041380b0000000000 ....A8...... +4310 10.896889448 127.0.0.1:57433 127.0.0.1:57415 378324282 22 1200000053f51f000000000001000300000000000000 ....S................. +4312 10.897040129 127.0.0.1:57433 127.0.0.1:57415 378324304 12 3400000042380b0000000000 4...B8...... +4314 10.897129774 127.0.0.1:57433 127.0.0.1:57415 378324316 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....j............. +4315 10.897152424 127.0.0.1:57415 127.0.0.1:57433 3334960739 12 ffffffff41380b0000000000 ....A8...... +4317 10.897303581 127.0.0.1:57415 127.0.0.1:57433 3334960751 12 ffffffff42380b0000000000 ....B8...... +4318 10.898068428 127.0.0.1:57415 127.0.0.1:57433 3334960763 12 1e000000e5620b0000000000 .....b...... +4320 10.898211479 127.0.0.1:57415 127.0.0.1:57433 3334960775 30 1a00000055ceff62b21b3a5001000300000055f51f000000000000000000 ....U..b..:P......U........... +4322 10.898491383 127.0.0.1:57433 127.0.0.1:57415 378324368 12 ffffffffe5620b0000000000 .....b...... +4323 10.898849964 127.0.0.1:57433 127.0.0.1:57415 378324380 12 1a00000043380b0000000000 ....C8...... +4325 10.899001360 127.0.0.1:57433 127.0.0.1:57415 378324392 26 1600000055f51f00000000000100030000000000000000000000 ....U..................... +4327 10.899234056 127.0.0.1:57415 127.0.0.1:57433 3334960805 12 ffffffff43380b0000000000 ....C8...... +4330 10.998222113 127.0.0.1:57415 127.0.0.1:57433 3334960817 12 1a000000e6620b0000000000 .....b...... +4332 10.998441458 127.0.0.1:57415 127.0.0.1:57433 3334960829 26 16000000548f6340e25e314001000300000057f51f0000000000 ....T.c@.^1@......W....... +4334 10.998869419 127.0.0.1:57433 127.0.0.1:57415 378324418 12 ffffffffe6620b0000000000 .....b...... +4336 10.999336481 127.0.0.1:57433 127.0.0.1:57415 378324430 12 1600000044380b0000000000 ....D8...... +4338 10.999567509 127.0.0.1:57433 127.0.0.1:57415 378324442 22 1200000057f51f000000000001000300000000000000 ....W................. +4340 10.999856949 127.0.0.1:57415 127.0.0.1:57433 3334960855 12 ffffffff44380b0000000000 ....D8...... +4342 11.017246485 127.0.0.1:57433 127.0.0.1:57415 378324464 12 feffffffc74a0100d74a0100 .....J...J.. +4351 11.088005066 127.0.0.1:57415 127.0.0.1:57433 3334960867 12 feffffffd84a0100c74a0100 .....J...J.. +4357 11.101232052 127.0.0.1:57415 127.0.0.1:57433 3334960879 12 1a000000e7620b0000000000 .....b...... +4359 11.101396322 127.0.0.1:57415 127.0.0.1:57433 3334960891 26 16000000548f6340e25e314001000300000059f51f0000000000 ....T.c@.^1@......Y....... +4361 11.101771355 127.0.0.1:57433 127.0.0.1:57415 378324476 12 ffffffffe7620b0000000000 .....b...... +4363 11.102303982 127.0.0.1:57433 127.0.0.1:57415 378324488 12 1600000045380b0000000000 ....E8...... +4365 11.102482319 127.0.0.1:57433 127.0.0.1:57415 378324500 22 1200000059f51f000000000001000300000000000000 ....Y................. +4367 11.102811575 127.0.0.1:57415 127.0.0.1:57433 3334960917 12 ffffffff45380b0000000000 ....E8...... +4369 11.200732231 127.0.0.1:57415 127.0.0.1:57433 3334960929 12 22000000e8620b0000000000 "....b...... +4371 11.200944901 127.0.0.1:57415 127.0.0.1:57433 3334960941 34 1e0000001c2118d0c46f33bb0100030000006b1e020000000000e4ed32c39d01 .....!...o3.......k.........2..... +4373 11.201086044 127.0.0.1:57415 127.0.0.1:57433 3334960975 12 43000000e9620b0000000000 C....b...... +4375 11.201175213 127.0.0.1:57415 127.0.0.1:57433 3334960987 67 3f000000980433cb0cb47c3801000300000001000000006b1e0200000000003d ?.....3...|8...........k.......=B.....&......... +4377 11.201286793 127.0.0.1:57433 127.0.0.1:57415 378324522 12 ffffffffe8620b0000000000 .....b...... +4379 11.201493740 127.0.0.1:57433 127.0.0.1:57415 378324534 12 ffffffffe9620b0000000000 .....b...... +4381 11.202113390 127.0.0.1:57433 127.0.0.1:57415 378324546 12 3400000046380b0000000000 4...F8...... +4383 11.202273846 127.0.0.1:57433 127.0.0.1:57415 378324558 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....k........._$.. +4385 11.202557087 127.0.0.1:57415 127.0.0.1:57433 3334961054 12 ffffffff46380b0000000000 ....F8...... +4387 11.203376770 127.0.0.1:57415 127.0.0.1:57433 3334961066 12 1e000000ea620b0000000000 .....b...... +4389 11.203535318 127.0.0.1:57415 127.0.0.1:57433 3334961078 30 1a00000055ceff62b21b3a500100030000005bf51f000000000000000000 ....U..b..:P......[........... +4391 11.203848839 127.0.0.1:57433 127.0.0.1:57415 378324610 12 ffffffffea620b0000000000 .....b...... +4393 11.204238892 127.0.0.1:57433 127.0.0.1:57415 378324622 12 1a00000047380b0000000000 ....G8...... +4395 11.204396725 127.0.0.1:57433 127.0.0.1:57415 378324634 26 160000005bf51f00000000000100030000000000000000000000 ....[..................... +4397 11.204638720 127.0.0.1:57415 127.0.0.1:57433 3334961108 12 ffffffff47380b0000000000 ....G8...... +4399 11.205347061 127.0.0.1:57415 127.0.0.1:57433 3334961120 12 1a000000eb620b0000000000 .....b...... +4401 11.205492020 127.0.0.1:57415 127.0.0.1:57433 3334961132 26 16000000548f6340e25e31400100030000005df51f0000000000 ....T.c@.^1@......]....... +4403 11.207209110 127.0.0.1:57433 127.0.0.1:57415 378324660 12 ffffffffeb620b0000000000 .....b...... +4405 11.207509518 127.0.0.1:57433 127.0.0.1:57415 378324672 12 1600000048380b0000000000 ....H8...... +4407 11.207756758 127.0.0.1:57433 127.0.0.1:57415 378324684 22 120000005df51f000000000001000300000000000000 ....]................. +4409 11.208065987 127.0.0.1:57415 127.0.0.1:57433 3334961158 12 ffffffff48380b0000000000 ....H8...... +4417 11.309727907 127.0.0.1:57415 127.0.0.1:57433 3334961170 12 1a000000ec620b0000000000 .....b...... +4419 11.309905052 127.0.0.1:57415 127.0.0.1:57433 3334961182 26 16000000548f6340e25e31400100030000005ff51f0000000000 ....T.c@.^1@......_....... +4421 11.310351849 127.0.0.1:57433 127.0.0.1:57415 378324706 12 ffffffffec620b0000000000 .....b...... +4423 11.311079025 127.0.0.1:57433 127.0.0.1:57415 378324718 12 1600000049380b0000000000 ....I8...... +4425 11.311290264 127.0.0.1:57433 127.0.0.1:57415 378324730 22 120000005ff51f000000000001000300000000000000 ...._................. +4427 11.311653376 127.0.0.1:57415 127.0.0.1:57433 3334961208 12 ffffffff49380b0000000000 ....I8...... +4433 11.413295269 127.0.0.1:57415 127.0.0.1:57433 3334961220 12 1a000000ed620b0000000000 .....b...... +4435 11.413459301 127.0.0.1:57415 127.0.0.1:57433 3334961232 26 16000000548f6340e25e314001000300000061f51f0000000000 ....T.c@.^1@......a....... +4437 11.413864613 127.0.0.1:57433 127.0.0.1:57415 378324752 12 ffffffffed620b0000000000 .....b...... +4439 11.414249897 127.0.0.1:57433 127.0.0.1:57415 378324764 12 160000004a380b0000000000 ....J8...... +4441 11.414479017 127.0.0.1:57433 127.0.0.1:57415 378324776 22 1200000061f51f000000000001000300000000000000 ....a................. +4443 11.414853573 127.0.0.1:57415 127.0.0.1:57433 3334961258 12 ffffffff4a380b0000000000 ....J8...... +4445 11.505876780 127.0.0.1:57415 127.0.0.1:57433 3334961270 12 65000000ee620b0000000000 e....b...... +4447 11.506031752 127.0.0.1:57415 127.0.0.1:57433 3334961282 101 1e0000001c2118d0c46f33bb0100030000006c1e02000000000015ef32c39d01 .....!...o3.......l.........2.....?.....3...|8.. +4449 11.506382465 127.0.0.1:57433 127.0.0.1:57415 378324798 12 ffffffffee620b0000000000 .....b...... +4451 11.507754087 127.0.0.1:57433 127.0.0.1:57415 378324810 12 340000004b380b0000000000 4...K8...... +4453 11.507977486 127.0.0.1:57433 127.0.0.1:57415 378324822 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....l.........F... +4455 11.508323908 127.0.0.1:57415 127.0.0.1:57433 3334961383 12 ffffffff4b380b0000000000 ....K8...... +4457 11.509139061 127.0.0.1:57415 127.0.0.1:57433 3334961395 12 1e000000ef620b0000000000 .....b...... +4459 11.509298563 127.0.0.1:57415 127.0.0.1:57433 3334961407 30 1a00000055ceff62b21b3a5001000300000063f51f000000000000000000 ....U..b..:P......c........... +4461 11.509621859 127.0.0.1:57433 127.0.0.1:57415 378324874 12 ffffffffef620b0000000000 .....b...... +4463 11.510065079 127.0.0.1:57433 127.0.0.1:57415 378324886 12 1a0000004c380b0000000000 ....L8...... +4465 11.510228634 127.0.0.1:57433 127.0.0.1:57415 378324898 26 1600000063f51f00000000000100030000000000000000000000 ....c..................... +4467 11.510492325 127.0.0.1:57415 127.0.0.1:57433 3334961437 12 ffffffff4c380b0000000000 ....L8...... +4469 11.516223431 127.0.0.1:57415 127.0.0.1:57433 3334961449 12 1a000000f0620b0000000000 .....b...... +4471 11.516385555 127.0.0.1:57415 127.0.0.1:57433 3334961461 26 16000000548f6340e25e314001000300000065f51f0000000000 ....T.c@.^1@......e....... +4473 11.516701937 127.0.0.1:57433 127.0.0.1:57415 378324924 12 fffffffff0620b0000000000 .....b...... +4475 11.516981840 127.0.0.1:57433 127.0.0.1:57415 378324936 12 feffffffc84a0100d84a0100 .....J...J.. +4477 11.517385721 127.0.0.1:57433 127.0.0.1:57415 378324948 12 160000004d380b0000000000 ....M8...... +4479 11.517553806 127.0.0.1:57433 127.0.0.1:57415 378324960 22 1200000065f51f000000000001000300000000000000 ....e................. +4481 11.517840147 127.0.0.1:57415 127.0.0.1:57433 3334961487 12 ffffffff4d380b0000000000 ....M8...... +4489 11.588995457 127.0.0.1:57415 127.0.0.1:57433 3334961499 12 feffffffd94a0100c84a0100 .....J...J.. +4495 11.619263887 127.0.0.1:57415 127.0.0.1:57433 3334961511 12 1a000000f1620b0000000000 .....b...... +4497 11.619427681 127.0.0.1:57415 127.0.0.1:57433 3334961523 26 16000000548f6340e25e314001000300000067f51f0000000000 ....T.c@.^1@......g....... +4499 11.619842768 127.0.0.1:57433 127.0.0.1:57415 378324982 12 fffffffff1620b0000000000 .....b...... +4501 11.620424271 127.0.0.1:57433 127.0.0.1:57415 378324994 12 160000004e380b0000000000 ....N8...... +4503 11.620583296 127.0.0.1:57433 127.0.0.1:57415 378325006 22 1200000067f51f000000000001000300000000000000 ....g................. +4505 11.620795965 127.0.0.1:57415 127.0.0.1:57433 3334961549 12 ffffffff4e380b0000000000 ....N8...... +4511 11.722346544 127.0.0.1:57415 127.0.0.1:57433 3334961561 12 1a000000f2620b0000000000 .....b...... +4513 11.722545624 127.0.0.1:57415 127.0.0.1:57433 3334961573 26 16000000548f6340e25e314001000300000069f51f0000000000 ....T.c@.^1@......i....... +4515 11.722974300 127.0.0.1:57433 127.0.0.1:57415 378325028 12 fffffffff2620b0000000000 .....b...... +4517 11.723260880 127.0.0.1:57433 127.0.0.1:57415 378325040 12 160000004f380b0000000000 ....O8...... +4519 11.723423958 127.0.0.1:57433 127.0.0.1:57415 378325052 22 1200000069f51f000000000001000300000000000000 ....i................. +4521 11.723719358 127.0.0.1:57415 127.0.0.1:57433 3334961599 12 ffffffff4f380b0000000000 ....O8...... +4531 11.810825586 127.0.0.1:57415 127.0.0.1:57433 3334961611 12 22000000f3620b0000000000 "....b...... +4533 11.811026573 127.0.0.1:57415 127.0.0.1:57433 3334961623 34 1e0000001c2118d0c46f33bb0100030000006d1e02000000000046f032c39d01 .....!...o3.......m.......F.2..... +4535 11.811112642 127.0.0.1:57415 127.0.0.1:57433 3334961657 12 43000000f4620b0000000000 C....b...... +4537 11.811194420 127.0.0.1:57415 127.0.0.1:57433 3334961669 67 3f000000980433cb0cb47c3801000300000001000000006d1e0200000000003d ?.....3...|8...........m.......=B.....&......... +4539 11.811460257 127.0.0.1:57433 127.0.0.1:57415 378325074 12 fffffffff3620b0000000000 .....b...... +4541 11.811675549 127.0.0.1:57433 127.0.0.1:57415 378325086 12 fffffffff4620b0000000000 .....b...... +4543 11.812477589 127.0.0.1:57433 127.0.0.1:57415 378325098 12 3400000050380b0000000000 4...P8...... +4545 11.812657118 127.0.0.1:57433 127.0.0.1:57415 378325110 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....m..........E]. +4547 11.813017607 127.0.0.1:57415 127.0.0.1:57433 3334961736 12 ffffffff50380b0000000000 ....P8...... +4549 11.813792706 127.0.0.1:57415 127.0.0.1:57433 3334961748 12 1e000000f5620b0000000000 .....b...... +4551 11.813945055 127.0.0.1:57415 127.0.0.1:57433 3334961760 30 1a00000055ceff62b21b3a500100030000006bf51f000000000000000000 ....U..b..:P......k........... +4553 11.814272642 127.0.0.1:57433 127.0.0.1:57415 378325162 12 fffffffff5620b0000000000 .....b...... +4555 11.814641476 127.0.0.1:57433 127.0.0.1:57415 378325174 12 1a00000051380b0000000000 ....Q8...... +4557 11.814791679 127.0.0.1:57433 127.0.0.1:57415 378325186 26 160000006bf51f00000000000100030000000000000000000000 ....k..................... +4559 11.815097094 127.0.0.1:57415 127.0.0.1:57433 3334961790 12 ffffffff51380b0000000000 ....Q8...... +4561 11.825739384 127.0.0.1:57415 127.0.0.1:57433 3334961802 12 1a000000f6620b0000000000 .....b...... +4563 11.825881720 127.0.0.1:57415 127.0.0.1:57433 3334961814 26 16000000548f6340e25e31400100030000006df51f0000000000 ....T.c@.^1@......m....... +4565 11.826189518 127.0.0.1:57433 127.0.0.1:57415 378325212 12 fffffffff6620b0000000000 .....b...... +4567 11.826780796 127.0.0.1:57433 127.0.0.1:57415 378325224 12 1600000052380b0000000000 ....R8...... +4569 11.826927900 127.0.0.1:57433 127.0.0.1:57415 378325236 22 120000006df51f000000000001000300000000000000 ....m................. +4571 11.827140093 127.0.0.1:57415 127.0.0.1:57433 3334961840 12 ffffffff52380b0000000000 ....R8...... +4577 11.929102898 127.0.0.1:57415 127.0.0.1:57433 3334961852 12 1a000000f7620b0000000000 .....b...... +4579 11.929266691 127.0.0.1:57415 127.0.0.1:57433 3334961864 26 16000000548f6340e25e31400100030000006ff51f0000000000 ....T.c@.^1@......o....... +4581 11.929604769 127.0.0.1:57433 127.0.0.1:57415 378325258 12 fffffffff7620b0000000000 .....b...... +4583 11.929992437 127.0.0.1:57433 127.0.0.1:57415 378325270 12 1600000053380b0000000000 ....S8...... +4585 11.930155516 127.0.0.1:57433 127.0.0.1:57415 378325282 22 120000006ff51f000000000001000300000000000000 ....o................. +4587 11.930432081 127.0.0.1:57415 127.0.0.1:57433 3334961890 12 ffffffff53380b0000000000 ....S8...... +4589 12.018108606 127.0.0.1:57433 127.0.0.1:57415 378325304 12 feffffffc94a0100d94a0100 .....J...J.. +4597 12.032531023 127.0.0.1:57415 127.0.0.1:57433 3334961902 12 1a000000f8620b0000000000 .....b...... +4599 12.032737494 127.0.0.1:57415 127.0.0.1:57433 3334961914 26 16000000548f6340e25e314001000300000071f51f0000000000 ....T.c@.^1@......q....... +4601 12.033019066 127.0.0.1:57433 127.0.0.1:57415 378325316 12 fffffffff8620b0000000000 .....b...... +4603 12.033735037 127.0.0.1:57433 127.0.0.1:57415 378325328 12 1600000054380b0000000000 ....T8...... +4605 12.033951521 127.0.0.1:57433 127.0.0.1:57415 378325340 22 1200000071f51f000000000001000300000000000000 ....q................. +4607 12.034230471 127.0.0.1:57415 127.0.0.1:57433 3334961940 12 ffffffff54380b0000000000 ....T8...... +4609 12.090170383 127.0.0.1:57415 127.0.0.1:57433 3334961952 12 feffffffda4a0100c94a0100 .....J...J.. +4615 12.115008831 127.0.0.1:57415 127.0.0.1:57433 3334961964 12 22000000f9620b0000000000 "....b...... +4617 12.115248919 127.0.0.1:57415 127.0.0.1:57433 3334961976 34 1e0000001c2118d0c46f33bb0100030000006e1e02000000000077f132c39d01 .....!...o3.......n.......w.2..... +4619 12.115444183 127.0.0.1:57415 127.0.0.1:57433 3334962010 12 43000000fa620b0000000000 C....b...... +4621 12.115550995 127.0.0.1:57415 127.0.0.1:57433 3334962022 67 3f000000980433cb0cb47c3801000300000001000000006e1e0200000000003d ?.....3...|8...........n.......=B.....&......... +4622 12.115617514 127.0.0.1:57433 127.0.0.1:57415 378325362 12 fffffffff9620b0000000000 .....b...... +4625 12.115905523 127.0.0.1:57433 127.0.0.1:57415 378325374 12 fffffffffa620b0000000000 .....b...... +4627 12.116590738 127.0.0.1:57433 127.0.0.1:57415 378325386 12 3400000055380b0000000000 4...U8...... +4629 12.116855860 127.0.0.1:57433 127.0.0.1:57415 378325398 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....n............. +4631 12.117198706 127.0.0.1:57415 127.0.0.1:57433 3334962089 12 ffffffff55380b0000000000 ....U8...... +4632 12.118034363 127.0.0.1:57415 127.0.0.1:57433 3334962101 12 1e000000fb620b0000000000 .....b...... +4634 12.118241549 127.0.0.1:57415 127.0.0.1:57433 3334962113 30 1a00000055ceff62b21b3a5001000300000073f51f000000000000000000 ....U..b..:P......s........... +4636 12.118587971 127.0.0.1:57433 127.0.0.1:57415 378325450 12 fffffffffb620b0000000000 .....b...... +4638 12.119017363 127.0.0.1:57433 127.0.0.1:57415 378325462 12 1a00000056380b0000000000 ....V8...... +4640 12.119176388 127.0.0.1:57433 127.0.0.1:57415 378325474 26 1600000073f51f00000000000100030000000000000000000000 ....s..................... +4642 12.119485378 127.0.0.1:57415 127.0.0.1:57433 3334962143 12 ffffffff56380b0000000000 ....V8...... +4644 12.136280060 127.0.0.1:57415 127.0.0.1:57433 3334962155 12 1a000000fc620b0000000000 .....b...... +4646 12.136454582 127.0.0.1:57415 127.0.0.1:57433 3334962167 26 16000000548f6340e25e314001000300000075f51f0000000000 ....T.c@.^1@......u....... +4648 12.136799574 127.0.0.1:57433 127.0.0.1:57415 378325500 12 fffffffffc620b0000000000 .....b...... +4650 12.137188435 127.0.0.1:57433 127.0.0.1:57415 378325512 12 1600000057380b0000000000 ....W8...... +4652 12.137351274 127.0.0.1:57433 127.0.0.1:57415 378325524 22 1200000075f51f000000000001000300000000000000 ....u................. +4654 12.137669563 127.0.0.1:57415 127.0.0.1:57433 3334962193 12 ffffffff57380b0000000000 ....W8...... +4657 12.239947081 127.0.0.1:57415 127.0.0.1:57433 3334962205 12 1a000000fd620b0000000000 .....b...... +4659 12.240182161 127.0.0.1:57415 127.0.0.1:57433 3334962217 26 16000000548f6340e25e314001000300000077f51f0000000000 ....T.c@.^1@......w....... +4661 12.240523338 127.0.0.1:57433 127.0.0.1:57415 378325546 12 fffffffffd620b0000000000 .....b...... +4663 12.240991592 127.0.0.1:57433 127.0.0.1:57415 378325558 12 1600000058380b0000000000 ....X8...... +4665 12.241176128 127.0.0.1:57433 127.0.0.1:57415 378325570 22 1200000077f51f000000000001000300000000000000 ....w................. +4667 12.241450548 127.0.0.1:57415 127.0.0.1:57433 3334962243 12 ffffffff58380b0000000000 ....X8...... +4680 12.342910767 127.0.0.1:57415 127.0.0.1:57433 3334962255 12 1a000000fe620b0000000000 .....b...... +4682 12.343215704 127.0.0.1:57415 127.0.0.1:57433 3334962267 26 16000000548f6340e25e314001000300000079f51f0000000000 ....T.c@.^1@......y....... +4684 12.343540668 127.0.0.1:57433 127.0.0.1:57415 378325592 12 fffffffffe620b0000000000 .....b...... +4686 12.343965292 127.0.0.1:57433 127.0.0.1:57415 378325604 12 1600000059380b0000000000 ....Y8...... +4688 12.344163656 127.0.0.1:57433 127.0.0.1:57415 378325616 22 1200000079f51f000000000001000300000000000000 ....y................. +4690 12.344381332 127.0.0.1:57415 127.0.0.1:57433 3334962293 12 ffffffff59380b0000000000 ....Y8...... +4738 12.419281483 127.0.0.1:57415 127.0.0.1:57433 3334962305 12 65000000ff620b0000000000 e....b...... +4740 12.419459581 127.0.0.1:57415 127.0.0.1:57433 3334962317 101 1e0000001c2118d0c46f33bb0100030000006f1e020000000000a6f232c39d01 .....!...o3.......o.........2.....?.....3...|8.. +4742 12.419809818 127.0.0.1:57433 127.0.0.1:57415 378325638 12 ffffffffff620b0000000000 .....b...... +4744 12.420779467 127.0.0.1:57433 127.0.0.1:57415 378325650 12 340000005a380b0000000000 4...Z8...... +4746 12.420937777 127.0.0.1:57433 127.0.0.1:57415 378325662 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....o............. +4748 12.421438456 127.0.0.1:57415 127.0.0.1:57433 3334962418 12 ffffffff5a380b0000000000 ....Z8...... +4750 12.422029018 127.0.0.1:57415 127.0.0.1:57433 3334962430 12 1e00000000630b0000000000 .....c...... +4752 12.422260523 127.0.0.1:57415 127.0.0.1:57433 3334962442 30 1a00000055ceff62b21b3a500100030000007bf51f000000000000000000 ....U..b..:P......{........... +4754 12.422698498 127.0.0.1:57433 127.0.0.1:57415 378325714 12 ffffffff00630b0000000000 .....c...... +4756 12.422871590 127.0.0.1:57433 127.0.0.1:57415 378325726 12 1a0000005b380b0000000000 ....[8...... +4758 12.423013449 127.0.0.1:57433 127.0.0.1:57415 378325738 26 160000007bf51f00000000000100030000000000000000000000 ....{..................... +4760 12.423382759 127.0.0.1:57415 127.0.0.1:57433 3334962472 12 ffffffff5b380b0000000000 ....[8...... +4762 12.445654631 127.0.0.1:57415 127.0.0.1:57433 3334962484 12 1a00000001630b0000000000 .....c...... +4764 12.445825577 127.0.0.1:57415 127.0.0.1:57433 3334962496 26 16000000548f6340e25e31400100030000007df51f0000000000 ....T.c@.^1@......}....... +4766 12.446158648 127.0.0.1:57433 127.0.0.1:57415 378325764 12 ffffffff01630b0000000000 .....c...... +4768 12.446646929 127.0.0.1:57433 127.0.0.1:57415 378325776 12 160000005c380b0000000000 ....\8...... +4770 12.446807384 127.0.0.1:57433 127.0.0.1:57415 378325788 22 120000007df51f000000000001000300000000000000 ....}................. +4772 12.447094202 127.0.0.1:57415 127.0.0.1:57433 3334962522 12 ffffffff5c380b0000000000 ....\8...... +4775 12.518406153 127.0.0.1:57433 127.0.0.1:57415 378325810 12 feffffffca4a0100da4a0100 .....J...J.. +4783 12.548629761 127.0.0.1:57415 127.0.0.1:57433 3334962534 12 1a00000002630b0000000000 .....c...... +4785 12.548820972 127.0.0.1:57415 127.0.0.1:57433 3334962546 26 16000000548f6340e25e31400100030000007ff51f0000000000 ....T.c@.^1@.............. +4787 12.549254894 127.0.0.1:57433 127.0.0.1:57415 378325822 12 ffffffff02630b0000000000 .....c...... +4789 12.549680233 127.0.0.1:57433 127.0.0.1:57415 378325834 12 160000005d380b0000000000 ....]8...... +4791 12.549844265 127.0.0.1:57433 127.0.0.1:57415 378325846 22 120000007ff51f000000000001000300000000000000 ...................... +4793 12.550215006 127.0.0.1:57415 127.0.0.1:57433 3334962572 12 ffffffff5d380b0000000000 ....]8...... +4795 12.591264725 127.0.0.1:57415 127.0.0.1:57433 3334962584 12 feffffffdb4a0100ca4a0100 .....J...J.. +4804 12.652481556 127.0.0.1:57415 127.0.0.1:57433 3334962596 12 1a00000003630b0000000000 .....c...... +4806 12.652649879 127.0.0.1:57415 127.0.0.1:57433 3334962608 26 16000000548f6340e25e314001000300000081f51f0000000000 ....T.c@.^1@.............. +4808 12.653133154 127.0.0.1:57433 127.0.0.1:57415 378325868 12 ffffffff03630b0000000000 .....c...... +4810 12.653471470 127.0.0.1:57433 127.0.0.1:57415 378325880 12 160000005e380b0000000000 ....^8...... +4812 12.653632164 127.0.0.1:57433 127.0.0.1:57415 378325892 22 1200000081f51f000000000001000300000000000000 ...................... +4814 12.653997660 127.0.0.1:57415 127.0.0.1:57433 3334962634 12 ffffffff5e380b0000000000 ....^8...... +4817 12.723820210 127.0.0.1:57415 127.0.0.1:57433 3334962646 12 6500000004630b0000000000 e....c...... +4819 12.724034786 127.0.0.1:57415 127.0.0.1:57433 3334962658 101 1e0000001c2118d0c46f33bb010003000000701e020000000000d7f332c39d01 .....!...o3.......p.........2.....?.....3...|8.. +4821 12.724297285 127.0.0.1:57433 127.0.0.1:57415 378325914 12 ffffffff04630b0000000000 .....c...... +4823 12.725383282 127.0.0.1:57433 127.0.0.1:57415 378325926 12 340000005f380b0000000000 4..._8...... +4825 12.725552797 127.0.0.1:57433 127.0.0.1:57415 378325938 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....p............. +4827 12.725759983 127.0.0.1:57415 127.0.0.1:57433 3334962759 12 ffffffff5f380b0000000000 ...._8...... +4829 12.726622581 127.0.0.1:57415 127.0.0.1:57433 3334962771 12 1e00000005630b0000000000 .....c...... +4831 12.726786375 127.0.0.1:57415 127.0.0.1:57433 3334962783 30 1a00000055ceff62b21b3a5001000300000083f51f000000000000000000 ....U..b..:P.................. +4833 12.727181673 127.0.0.1:57433 127.0.0.1:57415 378325990 12 ffffffff05630b0000000000 .....c...... +4835 12.727459431 127.0.0.1:57433 127.0.0.1:57415 378326002 12 1a00000060380b0000000000 ....`8...... +4837 12.727609634 127.0.0.1:57433 127.0.0.1:57415 378326014 26 1600000083f51f00000000000100030000000000000000000000 .......................... +4839 12.727869034 127.0.0.1:57415 127.0.0.1:57433 3334962813 12 ffffffff60380b0000000000 ....`8...... +4841 12.756860256 127.0.0.1:57415 127.0.0.1:57433 3334962825 12 1a00000006630b0000000000 .....c...... +4843 12.757030010 127.0.0.1:57415 127.0.0.1:57433 3334962837 26 16000000548f6340e25e314001000300000085f51f0000000000 ....T.c@.^1@.............. +4845 12.757330179 127.0.0.1:57433 127.0.0.1:57415 378326040 12 ffffffff06630b0000000000 .....c...... +4847 12.757883072 127.0.0.1:57433 127.0.0.1:57415 378326052 12 1600000061380b0000000000 ....a8...... +4849 12.758047342 127.0.0.1:57433 127.0.0.1:57415 378326064 22 1200000085f51f000000000001000300000000000000 ...................... +4851 12.758287668 127.0.0.1:57415 127.0.0.1:57433 3334962863 12 ffffffff61380b0000000000 ....a8...... +4862 12.859810591 127.0.0.1:57415 127.0.0.1:57433 3334962875 12 1a00000007630b0000000000 .....c...... +4864 12.859986067 127.0.0.1:57415 127.0.0.1:57433 3334962887 26 16000000548f6340e25e314001000300000087f51f0000000000 ....T.c@.^1@.............. +4866 12.860505581 127.0.0.1:57433 127.0.0.1:57415 378326086 12 ffffffff07630b0000000000 .....c...... +4868 12.861008644 127.0.0.1:57433 127.0.0.1:57415 378326098 12 1600000062380b0000000000 ....b8...... +4870 12.861205816 127.0.0.1:57433 127.0.0.1:57415 378326110 22 1200000087f51f000000000001000300000000000000 ...................... +4872 12.861603975 127.0.0.1:57415 127.0.0.1:57433 3334962913 12 ffffffff62380b0000000000 ....b8...... +4879 12.963492155 127.0.0.1:57415 127.0.0.1:57433 3334962925 12 1a00000008630b0000000000 .....c...... +4881 12.963672161 127.0.0.1:57415 127.0.0.1:57433 3334962937 26 16000000548f6340e25e314001000300000089f51f0000000000 ....T.c@.^1@.............. +4883 12.964022875 127.0.0.1:57433 127.0.0.1:57415 378326132 12 ffffffff08630b0000000000 .....c...... +4885 12.964471817 127.0.0.1:57433 127.0.0.1:57415 378326144 12 1600000063380b0000000000 ....c8...... +4887 12.964634418 127.0.0.1:57433 127.0.0.1:57415 378326156 22 1200000089f51f000000000001000300000000000000 ...................... +4889 12.964942694 127.0.0.1:57415 127.0.0.1:57433 3334962963 12 ffffffff63380b0000000000 ....c8...... +4905 13.019308805 127.0.0.1:57433 127.0.0.1:57415 378326178 12 feffffffcb4a0100db4a0100 .....J...J.. +4911 13.028384447 127.0.0.1:57415 127.0.0.1:57433 3334962975 12 2200000009630b0000000000 "....c...... +4913 13.028553009 127.0.0.1:57415 127.0.0.1:57433 3334962987 34 1e0000001c2118d0c46f33bb010003000000711e02000000000007f532c39d01 .....!...o3.......q.........2..... +4916 13.028644323 127.0.0.1:57415 127.0.0.1:57433 3334963021 12 430000000a630b0000000000 C....c...... +4917 13.028702021 127.0.0.1:57433 127.0.0.1:57415 378326190 12 ffffffff09630b0000000000 .....c...... +4918 13.028710365 127.0.0.1:57415 127.0.0.1:57433 3334963033 67 3f000000980433cb0cb47c380100030000000100000000711e0200000000003d ?.....3...|8...........q.......=B.....&......... +4922 13.028872967 127.0.0.1:57433 127.0.0.1:57415 378326202 12 ffffffff0a630b0000000000 .....c...... +4924 13.030023336 127.0.0.1:57433 127.0.0.1:57415 378326214 12 3400000064380b0000000000 4...d8...... +4926 13.030218124 127.0.0.1:57433 127.0.0.1:57415 378326226 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....q............. +4928 13.030420065 127.0.0.1:57415 127.0.0.1:57433 3334963100 12 ffffffff64380b0000000000 ....d8...... +4930 13.031511784 127.0.0.1:57415 127.0.0.1:57433 3334963112 12 1e0000000b630b0000000000 .....c...... +4932 13.031675577 127.0.0.1:57415 127.0.0.1:57433 3334963124 30 1a00000055ceff62b21b3a500100030000008bf51f000000000000000000 ....U..b..:P.................. +4934 13.031968355 127.0.0.1:57433 127.0.0.1:57415 378326278 12 ffffffff0b630b0000000000 .....c...... +4936 13.032406807 127.0.0.1:57433 127.0.0.1:57415 378326290 12 1a00000065380b0000000000 ....e8...... +4938 13.032574892 127.0.0.1:57433 127.0.0.1:57415 378326302 26 160000008bf51f00000000000100030000000000000000000000 .......................... +4940 13.032835960 127.0.0.1:57415 127.0.0.1:57433 3334963154 12 ffffffff65380b0000000000 ....e8...... +4943 13.067745447 127.0.0.1:57415 127.0.0.1:57433 3334963166 12 1a0000000c630b0000000000 .....c...... +4945 13.067914248 127.0.0.1:57415 127.0.0.1:57433 3334963178 26 16000000548f6340e25e31400100030000008df51f0000000000 ....T.c@.^1@.............. +4947 13.068216562 127.0.0.1:57433 127.0.0.1:57415 378326328 12 ffffffff0c630b0000000000 .....c...... +4949 13.068818092 127.0.0.1:57433 127.0.0.1:57415 378326340 12 1600000066380b0000000000 ....f8...... +4951 13.068979263 127.0.0.1:57433 127.0.0.1:57415 378326352 22 120000008df51f000000000001000300000000000000 ...................... +4953 13.069299698 127.0.0.1:57415 127.0.0.1:57433 3334963204 12 ffffffff66380b0000000000 ....f8...... +4955 13.092581511 127.0.0.1:57415 127.0.0.1:57433 3334963216 12 feffffffdc4a0100cb4a0100 .....J...J.. +4962 13.170218706 127.0.0.1:57415 127.0.0.1:57433 3334963228 12 1a0000000d630b0000000000 .....c...... +4964 13.170373678 127.0.0.1:57415 127.0.0.1:57433 3334963240 26 16000000548f6340e25e31400100030000008ff51f0000000000 ....T.c@.^1@.............. +4966 13.170861244 127.0.0.1:57433 127.0.0.1:57415 378326374 12 ffffffff0d630b0000000000 .....c...... +4968 13.171161652 127.0.0.1:57433 127.0.0.1:57415 378326386 12 1600000067380b0000000000 ....g8...... +4970 13.171324968 127.0.0.1:57433 127.0.0.1:57415 378326398 22 120000008ff51f000000000001000300000000000000 ...................... +4972 13.171583176 127.0.0.1:57415 127.0.0.1:57433 3334963266 12 ffffffff67380b0000000000 ....g8...... +4977 13.274325371 127.0.0.1:57415 127.0.0.1:57433 3334963278 12 1a0000000e630b0000000000 .....c...... +4979 13.274495840 127.0.0.1:57415 127.0.0.1:57433 3334963290 26 16000000548f6340e25e314001000300000091f51f0000000000 ....T.c@.^1@.............. +4981 13.274872780 127.0.0.1:57433 127.0.0.1:57415 378326420 12 ffffffff0e630b0000000000 .....c...... +4983 13.275319815 127.0.0.1:57433 127.0.0.1:57415 378326432 12 1600000068380b0000000000 ....h8...... +4985 13.275480509 127.0.0.1:57433 127.0.0.1:57415 378326444 22 1200000091f51f000000000001000300000000000000 ...................... +4987 13.275776625 127.0.0.1:57415 127.0.0.1:57433 3334963316 12 ffffffff68380b0000000000 ....h8...... +4997 13.332452774 127.0.0.1:57415 127.0.0.1:57433 3334963328 12 650000000f630b0000000000 e....c...... +4999 13.332609653 127.0.0.1:57415 127.0.0.1:57433 3334963340 101 1e0000001c2118d0c46f33bb010003000000721e02000000000038f632c39d01 .....!...o3.......r.......8.2.....?.....3...|8.. +5001 13.332926035 127.0.0.1:57433 127.0.0.1:57415 378326466 12 ffffffff0f630b0000000000 .....c...... +5003 13.334649801 127.0.0.1:57433 127.0.0.1:57415 378326478 12 3400000069380b0000000000 4...i8...... +5005 13.334935427 127.0.0.1:57433 127.0.0.1:57415 378326490 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....r..........vE. +5007 13.335254669 127.0.0.1:57415 127.0.0.1:57433 3334963441 12 ffffffff69380b0000000000 ....i8...... +5009 13.336024761 127.0.0.1:57415 127.0.0.1:57433 3334963453 12 1e00000010630b0000000000 .....c...... +5011 13.336234093 127.0.0.1:57415 127.0.0.1:57433 3334963465 30 1a00000055ceff62b21b3a5001000300000093f51f000000000000000000 ....U..b..:P.................. +5013 13.336508989 127.0.0.1:57433 127.0.0.1:57415 378326542 12 ffffffff10630b0000000000 .....c...... +5015 13.336990833 127.0.0.1:57433 127.0.0.1:57415 378326554 12 1a0000006a380b0000000000 ....j8...... +5017 13.337231874 127.0.0.1:57433 127.0.0.1:57415 378326566 26 1600000093f51f00000000000100030000000000000000000000 .......................... +5019 13.337503910 127.0.0.1:57415 127.0.0.1:57433 3334963495 12 ffffffff6a380b0000000000 ....j8...... +5022 13.378762960 127.0.0.1:57415 127.0.0.1:57433 3334963507 12 1a00000011630b0000000000 .....c...... +5024 13.378923893 127.0.0.1:57415 127.0.0.1:57433 3334963519 26 16000000548f6340e25e314001000300000095f51f0000000000 ....T.c@.^1@.............. +5026 13.379509687 127.0.0.1:57433 127.0.0.1:57415 378326592 12 ffffffff11630b0000000000 .....c...... +5028 13.379902601 127.0.0.1:57433 127.0.0.1:57415 378326604 12 160000006b380b0000000000 ....k8...... +5030 13.380152464 127.0.0.1:57433 127.0.0.1:57415 378326616 22 1200000095f51f000000000001000300000000000000 ...................... +5032 13.380414009 127.0.0.1:57415 127.0.0.1:57433 3334963545 12 ffffffff6b380b0000000000 ....k8...... +5036 13.481833935 127.0.0.1:57415 127.0.0.1:57433 3334963557 12 1a00000012630b0000000000 .....c...... +5038 13.482010126 127.0.0.1:57415 127.0.0.1:57433 3334963569 26 16000000548f6340e25e314001000300000097f51f0000000000 ....T.c@.^1@.............. +5040 13.482459784 127.0.0.1:57433 127.0.0.1:57415 378326638 12 ffffffff12630b0000000000 .....c...... +5042 13.483141661 127.0.0.1:57433 127.0.0.1:57415 378326650 12 160000006c380b0000000000 ....l8...... +5044 13.483345985 127.0.0.1:57433 127.0.0.1:57415 378326662 22 1200000097f51f000000000001000300000000000000 ...................... +5046 13.483609438 127.0.0.1:57415 127.0.0.1:57433 3334963595 12 ffffffff6c380b0000000000 ....l8...... +5048 13.520251989 127.0.0.1:57433 127.0.0.1:57415 378326684 12 feffffffcc4a0100dc4a0100 .....J...J.. +5056 13.586361170 127.0.0.1:57415 127.0.0.1:57433 3334963607 12 1a00000013630b0000000000 .....c...... +5058 13.586537600 127.0.0.1:57415 127.0.0.1:57433 3334963619 26 16000000548f6340e25e314001000300000099f51f0000000000 ....T.c@.^1@.............. +5060 13.586941957 127.0.0.1:57433 127.0.0.1:57415 378326696 12 ffffffff13630b0000000000 .....c...... +5062 13.587488413 127.0.0.1:57433 127.0.0.1:57415 378326708 12 160000006d380b0000000000 ....m8...... +5064 13.587659359 127.0.0.1:57433 127.0.0.1:57415 378326720 22 1200000099f51f000000000001000300000000000000 ...................... +5066 13.588021040 127.0.0.1:57415 127.0.0.1:57433 3334963645 12 ffffffff6d380b0000000000 ....m8...... +5068 13.593152285 127.0.0.1:57415 127.0.0.1:57433 3334963657 12 feffffffdd4a0100cc4a0100 .....J...J.. +5074 13.637681723 127.0.0.1:57415 127.0.0.1:57433 3334963669 12 6500000014630b0000000000 e....c...... +5076 13.637878180 127.0.0.1:57415 127.0.0.1:57433 3334963681 101 1e0000001c2118d0c46f33bb010003000000731e02000000000069f732c39d01 .....!...o3.......s.......i.2.....?.....3...|8.. +5078 13.638239622 127.0.0.1:57433 127.0.0.1:57415 378326742 12 ffffffff14630b0000000000 .....c...... +5080 13.639085770 127.0.0.1:57433 127.0.0.1:57415 378326754 12 340000006e380b0000000000 4...n8...... +5082 13.639241695 127.0.0.1:57433 127.0.0.1:57415 378326766 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....s.........u.s. +5084 13.639506578 127.0.0.1:57415 127.0.0.1:57433 3334963782 12 ffffffff6e380b0000000000 ....n8...... +5086 13.640517712 127.0.0.1:57415 127.0.0.1:57433 3334963794 12 1e00000015630b0000000000 .....c...... +5088 13.640743732 127.0.0.1:57415 127.0.0.1:57433 3334963806 30 1a00000055ceff62b21b3a500100030000009bf51f000000000000000000 ....U..b..:P.................. +5090 13.641253948 127.0.0.1:57433 127.0.0.1:57415 378326818 12 ffffffff15630b0000000000 .....c...... +5092 13.641694069 127.0.0.1:57433 127.0.0.1:57415 378326830 12 1a0000006f380b0000000000 ....o8...... +5094 13.641901016 127.0.0.1:57433 127.0.0.1:57415 378326842 26 160000009bf51f00000000000100030000000000000000000000 .......................... +5096 13.642183065 127.0.0.1:57415 127.0.0.1:57433 3334963836 12 ffffffff6f380b0000000000 ....o8...... +5098 13.689460278 127.0.0.1:57415 127.0.0.1:57433 3334963848 12 1a00000016630b0000000000 .....c...... +5100 13.689620972 127.0.0.1:57415 127.0.0.1:57433 3334963860 26 16000000548f6340e25e31400100030000009df51f0000000000 ....T.c@.^1@.............. +5102 13.690086603 127.0.0.1:57433 127.0.0.1:57415 378326868 12 ffffffff16630b0000000000 .....c...... +5104 13.690588236 127.0.0.1:57433 127.0.0.1:57415 378326880 12 1600000070380b0000000000 ....p8...... +5106 13.690784693 127.0.0.1:57433 127.0.0.1:57415 378326892 22 120000009df51f000000000001000300000000000000 ...................... +5108 13.691187859 127.0.0.1:57415 127.0.0.1:57433 3334963886 12 ffffffff70380b0000000000 ....p8...... +5116 13.793787718 127.0.0.1:57415 127.0.0.1:57433 3334963898 12 1a00000017630b0000000000 .....c...... +5118 13.794078588 127.0.0.1:57415 127.0.0.1:57433 3334963910 26 16000000548f6340e25e31400100030000009ff51f0000000000 ....T.c@.^1@.............. +5120 13.794431925 127.0.0.1:57433 127.0.0.1:57415 378326914 12 ffffffff17630b0000000000 .....c...... +5122 13.795055389 127.0.0.1:57433 127.0.0.1:57415 378326926 12 1600000071380b0000000000 ....q8...... +5124 13.795202732 127.0.0.1:57433 127.0.0.1:57415 378326938 22 120000009ff51f000000000001000300000000000000 ...................... +5126 13.795406818 127.0.0.1:57415 127.0.0.1:57433 3334963936 12 ffffffff71380b0000000000 ....q8...... +5132 13.896498203 127.0.0.1:57415 127.0.0.1:57433 3334963948 12 1a00000018630b0000000000 .....c...... +5134 13.896679163 127.0.0.1:57415 127.0.0.1:57433 3334963960 26 16000000548f6340e25e3140010003000000a1f51f0000000000 ....T.c@.^1@.............. +5136 13.897111416 127.0.0.1:57433 127.0.0.1:57415 378326960 12 ffffffff18630b0000000000 .....c...... +5138 13.897588968 127.0.0.1:57433 127.0.0.1:57415 378326972 12 1600000072380b0000000000 ....r8...... +5140 13.897828102 127.0.0.1:57433 127.0.0.1:57415 378326984 22 12000000a1f51f000000000001000300000000000000 ...................... +5142 13.898121834 127.0.0.1:57415 127.0.0.1:57433 3334963986 12 ffffffff72380b0000000000 ....r8...... +5146 13.941613674 127.0.0.1:57415 127.0.0.1:57433 3334963998 12 6500000019630b0000000000 e....c...... +5148 13.941903591 127.0.0.1:57415 127.0.0.1:57433 3334964010 101 1e0000001c2118d0c46f33bb010003000000741e02000000000099f832c39d01 .....!...o3.......t.........2.....?.....3...|8.. +5150 13.942394972 127.0.0.1:57433 127.0.0.1:57415 378327006 12 ffffffff19630b0000000000 .....c...... +5152 13.943283558 127.0.0.1:57433 127.0.0.1:57415 378327018 12 3400000073380b0000000000 4...s8...... +5154 13.943442583 127.0.0.1:57433 127.0.0.1:57415 378327030 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....t..........g.. +5156 13.943791628 127.0.0.1:57415 127.0.0.1:57433 3334964111 12 ffffffff73380b0000000000 ....s8...... +5158 13.944609165 127.0.0.1:57415 127.0.0.1:57433 3334964123 12 1e0000001a630b0000000000 .....c...... +5160 13.944866896 127.0.0.1:57415 127.0.0.1:57433 3334964135 30 1a00000055ceff62b21b3a50010003000000a3f51f000000000000000000 ....U..b..:P.................. +5162 13.945178509 127.0.0.1:57433 127.0.0.1:57415 378327082 12 ffffffff1a630b0000000000 .....c...... +5164 13.945622683 127.0.0.1:57433 127.0.0.1:57415 378327094 12 1a00000074380b0000000000 ....t8...... +5166 13.945809126 127.0.0.1:57433 127.0.0.1:57415 378327106 26 16000000a3f51f00000000000100030000000000000000000000 .......................... +5168 13.946107626 127.0.0.1:57415 127.0.0.1:57433 3334964165 12 ffffffff74380b0000000000 ....t8...... +5170 13.999632597 127.0.0.1:57415 127.0.0.1:57433 3334964177 12 1a0000001b630b0000000000 .....c...... +5172 13.999811888 127.0.0.1:57415 127.0.0.1:57433 3334964189 26 16000000548f6340e25e3140010003000000a5f51f0000000000 ....T.c@.^1@.............. +5174 14.000188351 127.0.0.1:57433 127.0.0.1:57415 378327132 12 ffffffff1b630b0000000000 .....c...... +5176 14.000664473 127.0.0.1:57433 127.0.0.1:57415 378327144 12 1600000075380b0000000000 ....u8...... +5178 14.000827551 127.0.0.1:57433 127.0.0.1:57415 378327156 22 12000000a5f51f000000000001000300000000000000 ...................... +5180 14.001157761 127.0.0.1:57415 127.0.0.1:57433 3334964215 12 ffffffff75380b0000000000 ....u8...... +5182 14.021165371 127.0.0.1:57433 127.0.0.1:57415 378327178 12 feffffffcd4a0100dd4a0100 .....J...J.. +5191 14.093938351 127.0.0.1:57415 127.0.0.1:57433 3334964227 12 feffffffde4a0100cd4a0100 .....J...J.. +5198 14.102166891 127.0.0.1:57415 127.0.0.1:57433 3334964239 12 1a0000001c630b0000000000 .....c...... +5200 14.102357864 127.0.0.1:57415 127.0.0.1:57433 3334964251 26 16000000548f6340e25e3140010003000000a7f51f0000000000 ....T.c@.^1@.............. +5202 14.102731228 127.0.0.1:57433 127.0.0.1:57415 378327190 12 ffffffff1c630b0000000000 .....c...... +5204 14.103228331 127.0.0.1:57433 127.0.0.1:57415 378327202 12 1600000076380b0000000000 ....v8...... +5206 14.103384972 127.0.0.1:57433 127.0.0.1:57415 378327214 22 12000000a7f51f000000000001000300000000000000 ...................... +5208 14.103656292 127.0.0.1:57415 127.0.0.1:57433 3334964277 12 ffffffff76380b0000000000 ....v8...... +5210 14.205970526 127.0.0.1:57415 127.0.0.1:57433 3334964289 12 1a0000001d630b0000000000 .....c...... +5212 14.206171989 127.0.0.1:57415 127.0.0.1:57433 3334964301 26 16000000548f6340e25e3140010003000000a9f51f0000000000 ....T.c@.^1@.............. +5214 14.206486702 127.0.0.1:57433 127.0.0.1:57415 378327236 12 ffffffff1d630b0000000000 .....c...... +5216 14.206946373 127.0.0.1:57433 127.0.0.1:57415 378327248 12 1600000077380b0000000000 ....w8...... +5218 14.207112312 127.0.0.1:57433 127.0.0.1:57415 378327260 22 12000000a9f51f000000000001000300000000000000 ...................... +5220 14.207458019 127.0.0.1:57415 127.0.0.1:57433 3334964327 12 ffffffff77380b0000000000 ....w8...... +5222 14.247433662 127.0.0.1:57415 127.0.0.1:57433 3334964339 12 650000001e630b0000000000 e....c...... +5224 14.247735739 127.0.0.1:57415 127.0.0.1:57433 3334964351 101 1e0000001c2118d0c46f33bb010003000000751e020000000000caf932c39d01 .....!...o3.......u.........2.....?.....3...|8.. +5226 14.248068810 127.0.0.1:57433 127.0.0.1:57415 378327282 12 ffffffff1e630b0000000000 .....c...... +5228 14.250970602 127.0.0.1:57433 127.0.0.1:57415 378327294 12 3400000078380b0000000000 4...x8...... +5230 14.251132250 127.0.0.1:57433 127.0.0.1:57415 378327306 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....u..........[.. +5232 14.251437187 127.0.0.1:57415 127.0.0.1:57433 3334964452 12 ffffffff78380b0000000000 ....x8...... +5234 14.252350807 127.0.0.1:57415 127.0.0.1:57433 3334964464 12 1e0000001f630b0000000000 .....c...... +5236 14.252570868 127.0.0.1:57415 127.0.0.1:57433 3334964476 30 1a00000055ceff62b21b3a50010003000000abf51f000000000000000000 ....U..b..:P.................. +5238 14.252903223 127.0.0.1:57433 127.0.0.1:57415 378327358 12 ffffffff1f630b0000000000 .....c...... +5240 14.253302574 127.0.0.1:57433 127.0.0.1:57415 378327370 12 1a00000079380b0000000000 ....y8...... +5242 14.253475904 127.0.0.1:57433 127.0.0.1:57415 378327382 26 16000000abf51f00000000000100030000000000000000000000 .......................... +5244 14.253738880 127.0.0.1:57415 127.0.0.1:57433 3334964506 12 ffffffff79380b0000000000 ....y8...... +5252 14.309830427 127.0.0.1:57415 127.0.0.1:57433 3334964518 12 1a00000020630b0000000000 .... c...... +5254 14.310013056 127.0.0.1:57415 127.0.0.1:57433 3334964530 26 16000000548f6340e25e3140010003000000adf51f0000000000 ....T.c@.^1@.............. +5256 14.310425997 127.0.0.1:57433 127.0.0.1:57415 378327408 12 ffffffff20630b0000000000 .... c...... +5258 14.310886145 127.0.0.1:57433 127.0.0.1:57415 378327420 12 160000007a380b0000000000 ....z8...... +5260 14.311052561 127.0.0.1:57433 127.0.0.1:57415 378327432 22 12000000adf51f000000000001000300000000000000 ...................... +5262 14.311372280 127.0.0.1:57415 127.0.0.1:57433 3334964556 12 ffffffff7a380b0000000000 ....z8...... +5268 14.413040638 127.0.0.1:57415 127.0.0.1:57433 3334964568 12 1a00000021630b0000000000 ....!c...... +5270 14.413213253 127.0.0.1:57415 127.0.0.1:57433 3334964580 26 16000000548f6340e25e3140010003000000aff51f0000000000 ....T.c@.^1@.............. +5272 14.413650513 127.0.0.1:57433 127.0.0.1:57415 378327454 12 ffffffff21630b0000000000 ....!c...... +5274 14.414117336 127.0.0.1:57433 127.0.0.1:57415 378327466 12 160000007b380b0000000000 ....{8...... +5276 14.414281368 127.0.0.1:57433 127.0.0.1:57415 378327478 22 12000000aff51f000000000001000300000000000000 ...................... +5278 14.414541245 127.0.0.1:57415 127.0.0.1:57433 3334964606 12 ffffffff7b380b0000000000 ....{8...... +5281 14.517489672 127.0.0.1:57415 127.0.0.1:57433 3334964618 12 1a00000022630b0000000000 ...."c...... +5283 14.517692566 127.0.0.1:57415 127.0.0.1:57433 3334964630 26 16000000548f6340e25e3140010003000000b1f51f0000000000 ....T.c@.^1@.............. +5285 14.518032551 127.0.0.1:57433 127.0.0.1:57415 378327500 12 ffffffff22630b0000000000 ...."c...... +5287 14.518570185 127.0.0.1:57433 127.0.0.1:57415 378327512 12 160000007c380b0000000000 ....|8...... +5289 14.518823624 127.0.0.1:57433 127.0.0.1:57415 378327524 22 12000000b1f51f000000000001000300000000000000 ...................... +5291 14.519111395 127.0.0.1:57415 127.0.0.1:57433 3334964656 12 ffffffff7c380b0000000000 ....|8...... +5293 14.523109674 127.0.0.1:57433 127.0.0.1:57415 378327546 12 feffffffce4a0100de4a0100 .....J...J.. +5301 14.553282022 127.0.0.1:57415 127.0.0.1:57433 3334964668 12 2200000023630b0000000000 "...#c...... +5303 14.553479195 127.0.0.1:57415 127.0.0.1:57433 3334964680 34 1e0000001c2118d0c46f33bb010003000000761e020000000000fcfa32c39d01 .....!...o3.......v.........2..... +5305 14.553602934 127.0.0.1:57415 127.0.0.1:57433 3334964714 12 4300000024630b0000000000 C...$c...... +5307 14.553690195 127.0.0.1:57415 127.0.0.1:57433 3334964726 67 3f000000980433cb0cb47c380100030000000100000000761e0200000000003d ?.....3...|8...........v.......=B.....&......... +5309 14.553847790 127.0.0.1:57433 127.0.0.1:57415 378327558 12 ffffffff23630b0000000000 ....#c...... +5311 14.554008484 127.0.0.1:57433 127.0.0.1:57415 378327570 12 ffffffff24630b0000000000 ....$c...... +5313 14.554728031 127.0.0.1:57433 127.0.0.1:57415 378327582 12 340000007d380b0000000000 4...}8...... +5315 14.554888725 127.0.0.1:57433 127.0.0.1:57415 378327594 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....v............. +5317 14.555159092 127.0.0.1:57415 127.0.0.1:57433 3334964793 12 ffffffff7d380b0000000000 ....}8...... +5319 14.555936575 127.0.0.1:57415 127.0.0.1:57433 3334964805 12 1e00000025630b0000000000 ....%c...... +5321 14.556092978 127.0.0.1:57415 127.0.0.1:57433 3334964817 30 1a00000055ceff62b21b3a50010003000000b3f51f000000000000000000 ....U..b..:P.................. +5323 14.556445599 127.0.0.1:57433 127.0.0.1:57415 378327646 12 ffffffff25630b0000000000 ....%c...... +5325 14.556961060 127.0.0.1:57433 127.0.0.1:57415 378327658 12 1a0000007e380b0000000000 ....~8...... +5327 14.557110548 127.0.0.1:57433 127.0.0.1:57415 378327670 26 16000000b3f51f00000000000100030000000000000000000000 .......................... +5329 14.557377338 127.0.0.1:57415 127.0.0.1:57433 3334964847 12 ffffffff7e380b0000000000 ....~8...... +5371 14.594704151 127.0.0.1:57415 127.0.0.1:57433 3334964859 12 feffffffdf4a0100ce4a0100 .....J...J.. +5377 14.620734692 127.0.0.1:57415 127.0.0.1:57433 3334964871 12 1a00000026630b0000000000 ....&c...... +5379 14.620897770 127.0.0.1:57415 127.0.0.1:57433 3334964883 26 16000000548f6340e25e3140010003000000b5f51f0000000000 ....T.c@.^1@.............. +5381 14.621210575 127.0.0.1:57433 127.0.0.1:57415 378327696 12 ffffffff26630b0000000000 ....&c...... +5383 14.621734858 127.0.0.1:57433 127.0.0.1:57415 378327708 12 160000007f380b0000000000 .....8...... +5385 14.621926069 127.0.0.1:57433 127.0.0.1:57415 378327720 22 12000000b5f51f000000000001000300000000000000 ...................... +5387 14.622299194 127.0.0.1:57415 127.0.0.1:57433 3334964909 12 ffffffff7f380b0000000000 .....8...... +5429 14.723892927 127.0.0.1:57415 127.0.0.1:57433 3334964921 12 1a00000027630b0000000000 ....'c...... +5431 14.724064350 127.0.0.1:57415 127.0.0.1:57433 3334964933 26 16000000548f6340e25e3140010003000000b7f51f0000000000 ....T.c@.^1@.............. +5433 14.724390030 127.0.0.1:57433 127.0.0.1:57415 378327742 12 ffffffff27630b0000000000 ....'c...... +5435 14.724899292 127.0.0.1:57433 127.0.0.1:57415 378327754 12 1600000080380b0000000000 .....8...... +5437 14.725064278 127.0.0.1:57433 127.0.0.1:57415 378327766 22 12000000b7f51f000000000001000300000000000000 ...................... +5439 14.725383043 127.0.0.1:57415 127.0.0.1:57433 3334964959 12 ffffffff80380b0000000000 .....8...... +5448 14.826909065 127.0.0.1:57415 127.0.0.1:57433 3334964971 12 1a00000028630b0000000000 ....(c...... +5450 14.827104568 127.0.0.1:57415 127.0.0.1:57433 3334964983 26 16000000548f6340e25e3140010003000000b9f51f0000000000 ....T.c@.^1@.............. +5452 14.827427864 127.0.0.1:57433 127.0.0.1:57415 378327788 12 ffffffff28630b0000000000 ....(c...... +5454 14.827941656 127.0.0.1:57433 127.0.0.1:57415 378327800 12 1600000081380b0000000000 .....8...... +5456 14.828135490 127.0.0.1:57433 127.0.0.1:57415 378327812 22 12000000b9f51f000000000001000300000000000000 ...................... +5458 14.828481436 127.0.0.1:57415 127.0.0.1:57433 3334965009 12 ffffffff81380b0000000000 .....8...... +5479 14.857095242 127.0.0.1:57415 127.0.0.1:57433 3334965021 12 6500000029630b0000000000 e...)c...... +5481 14.857257605 127.0.0.1:57415 127.0.0.1:57433 3334965033 101 1e0000001c2118d0c46f33bb010003000000771e0200000000002cfc32c39d01 .....!...o3.......w.......,.2.....?.....3...|8.. +5487 14.857692480 127.0.0.1:57433 127.0.0.1:57415 378327834 12 ffffffff29630b0000000000 ....)c...... +5489 14.858422518 127.0.0.1:57433 127.0.0.1:57415 378327846 12 3400000082380b0000000000 4....8...... +5492 14.858808756 127.0.0.1:57433 127.0.0.1:57415 378327858 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....w............. +5497 14.859081507 127.0.0.1:57415 127.0.0.1:57433 3334965134 12 ffffffff82380b0000000000 .....8...... +5501 14.860039949 127.0.0.1:57415 127.0.0.1:57433 3334965146 12 1e0000002a630b0000000000 ....*c...... +5504 14.860183001 127.0.0.1:57415 127.0.0.1:57433 3334965158 30 1a00000055ceff62b21b3a50010003000000bbf51f000000000000000000 ....U..b..:P.................. +5509 14.860758066 127.0.0.1:57433 127.0.0.1:57415 378327910 12 ffffffff2a630b0000000000 ....*c...... +5513 14.861278296 127.0.0.1:57433 127.0.0.1:57415 378327922 12 1a00000083380b0000000000 .....8...... +5515 14.861884594 127.0.0.1:57433 127.0.0.1:57415 378327934 26 16000000bbf51f00000000000100030000000000000000000000 .......................... +5517 14.862154722 127.0.0.1:57415 127.0.0.1:57433 3334965188 12 ffffffff83380b0000000000 .....8...... +5528 14.930838108 127.0.0.1:57415 127.0.0.1:57433 3334965200 12 1a0000002b630b0000000000 ....+c...... +5530 14.931007862 127.0.0.1:57415 127.0.0.1:57433 3334965212 26 16000000548f6340e25e3140010003000000bdf51f0000000000 ....T.c@.^1@.............. +5532 14.931321383 127.0.0.1:57433 127.0.0.1:57415 378327960 12 ffffffff2b630b0000000000 ....+c...... +5534 14.931829929 127.0.0.1:57433 127.0.0.1:57415 378327972 12 1600000084380b0000000000 .....8...... +5536 14.931989193 127.0.0.1:57433 127.0.0.1:57415 378327984 22 12000000bdf51f000000000001000300000000000000 ...................... +5538 14.932227373 127.0.0.1:57415 127.0.0.1:57433 3334965238 12 ffffffff84380b0000000000 .....8...... +5562 15.022758722 127.0.0.1:57433 127.0.0.1:57415 378328006 12 feffffffcf4a0100df4a0100 .....J...J.. +5588 15.033772945 127.0.0.1:57415 127.0.0.1:57433 3334965250 12 1a0000002c630b0000000000 ....,c...... +5590 15.033947945 127.0.0.1:57415 127.0.0.1:57433 3334965262 26 16000000548f6340e25e3140010003000000bff51f0000000000 ....T.c@.^1@.............. +5592 15.034555674 127.0.0.1:57433 127.0.0.1:57415 378328018 12 ffffffff2c630b0000000000 ....,c...... +5594 15.035897732 127.0.0.1:57433 127.0.0.1:57415 378328030 12 1600000085380b0000000000 .....8...... +5596 15.036110640 127.0.0.1:57433 127.0.0.1:57415 378328042 22 12000000bff51f000000000001000300000000000000 ...................... +5598 15.036420584 127.0.0.1:57415 127.0.0.1:57433 3334965288 12 ffffffff85380b0000000000 .....8...... +5605 15.095388412 127.0.0.1:57415 127.0.0.1:57433 3334965300 12 feffffffe04a0100cf4a0100 .....J...J.. +5637 15.138678312 127.0.0.1:57415 127.0.0.1:57433 3334965312 12 1a0000002d630b0000000000 ....-c...... +5639 15.138839960 127.0.0.1:57415 127.0.0.1:57433 3334965324 26 16000000548f6340e25e3140010003000000c1f51f0000000000 ....T.c@.^1@.............. +5641 15.139240980 127.0.0.1:57433 127.0.0.1:57415 378328064 12 ffffffff2d630b0000000000 ....-c...... +5643 15.139591932 127.0.0.1:57433 127.0.0.1:57415 378328076 12 1600000086380b0000000000 .....8...... +5645 15.139758110 127.0.0.1:57433 127.0.0.1:57415 378328088 22 12000000c1f51f000000000001000300000000000000 ...................... +5647 15.140086889 127.0.0.1:57415 127.0.0.1:57433 3334965350 12 ffffffff86380b0000000000 .....8...... +5649 15.161002159 127.0.0.1:57415 127.0.0.1:57433 3334965362 12 650000002e630b0000000000 e....c...... +5651 15.161161423 127.0.0.1:57415 127.0.0.1:57433 3334965374 101 1e0000001c2118d0c46f33bb010003000000781e0200000000005cfd32c39d01 .....!...o3.......x.......\.2.....?.....3...|8.. +5653 15.161483049 127.0.0.1:57433 127.0.0.1:57415 378328110 12 ffffffff2e630b0000000000 .....c...... +5658 15.162660122 127.0.0.1:57433 127.0.0.1:57415 378328122 12 3400000087380b0000000000 4....8...... +5660 15.162827492 127.0.0.1:57433 127.0.0.1:57415 378328134 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....x..........x\. +5662 15.163113832 127.0.0.1:57415 127.0.0.1:57433 3334965475 12 ffffffff87380b0000000000 .....8...... +5668 15.163895130 127.0.0.1:57415 127.0.0.1:57433 3334965487 12 1e0000002f630b0000000000 ..../c...... +5670 15.164032221 127.0.0.1:57415 127.0.0.1:57433 3334965499 30 1a00000055ceff62b21b3a50010003000000c3f51f000000000000000000 ....U..b..:P.................. +5672 15.164576292 127.0.0.1:57433 127.0.0.1:57415 378328186 12 ffffffff2f630b0000000000 ..../c...... +5674 15.164898157 127.0.0.1:57433 127.0.0.1:57415 378328198 12 1a00000088380b0000000000 .....8...... +5676 15.165053129 127.0.0.1:57433 127.0.0.1:57415 378328210 26 16000000c3f51f00000000000100030000000000000000000000 .......................... +5678 15.165381432 127.0.0.1:57415 127.0.0.1:57433 3334965529 12 ffffffff88380b0000000000 .....8...... +5712 15.241684198 127.0.0.1:57415 127.0.0.1:57433 3334965541 12 1a00000030630b0000000000 ....0c...... +5714 15.241855383 127.0.0.1:57415 127.0.0.1:57433 3334965553 26 16000000548f6340e25e3140010003000000c5f51f0000000000 ....T.c@.^1@.............. +5717 15.242426872 127.0.0.1:57433 127.0.0.1:57415 378328236 12 ffffffff30630b0000000000 ....0c...... +5719 15.242773771 127.0.0.1:57433 127.0.0.1:57415 378328248 12 1600000089380b0000000000 .....8...... +5721 15.242983818 127.0.0.1:57433 127.0.0.1:57415 378328260 22 12000000c5f51f000000000001000300000000000000 ...................... +5723 15.243257761 127.0.0.1:57415 127.0.0.1:57433 3334965579 12 ffffffff89380b0000000000 .....8...... +5733 15.345625639 127.0.0.1:57415 127.0.0.1:57433 3334965591 12 1a00000031630b0000000000 ....1c...... +5735 15.345793962 127.0.0.1:57415 127.0.0.1:57433 3334965603 26 16000000548f6340e25e3140010003000000c7f51f0000000000 ....T.c@.^1@.............. +5737 15.346047640 127.0.0.1:57433 127.0.0.1:57415 378328282 12 ffffffff31630b0000000000 ....1c...... +5739 15.346530676 127.0.0.1:57433 127.0.0.1:57415 378328294 12 160000008a380b0000000000 .....8...... +5741 15.346688509 127.0.0.1:57433 127.0.0.1:57415 378328306 22 12000000c7f51f000000000001000300000000000000 ...................... +5743 15.346959829 127.0.0.1:57415 127.0.0.1:57433 3334965629 12 ffffffff8a380b0000000000 .....8...... +5748 15.449757338 127.0.0.1:57415 127.0.0.1:57433 3334965641 12 1a00000032630b0000000000 ....2c...... +5750 15.449922323 127.0.0.1:57415 127.0.0.1:57433 3334965653 26 16000000548f6340e25e3140010003000000c9f51f0000000000 ....T.c@.^1@.............. +5752 15.450214148 127.0.0.1:57433 127.0.0.1:57415 378328328 12 ffffffff32630b0000000000 ....2c...... +5754 15.450678825 127.0.0.1:57433 127.0.0.1:57415 378328340 12 160000008b380b0000000000 .....8...... +5756 15.450854778 127.0.0.1:57433 127.0.0.1:57415 378328352 22 12000000c9f51f000000000001000300000000000000 ...................... +5758 15.451239824 127.0.0.1:57415 127.0.0.1:57433 3334965679 12 ffffffff8b380b0000000000 .....8...... +5761 15.465882063 127.0.0.1:57415 127.0.0.1:57433 3334965691 12 6500000033630b0000000000 e...3c...... +5763 15.466074944 127.0.0.1:57415 127.0.0.1:57433 3334965703 101 1e0000001c2118d0c46f33bb010003000000791e0200000000008dfe32c39d01 .....!...o3.......y.........2.....?.....3...|8.. +5765 15.466435909 127.0.0.1:57433 127.0.0.1:57415 378328374 12 ffffffff33630b0000000000 ....3c...... +5767 15.467362404 127.0.0.1:57433 127.0.0.1:57415 378328386 12 340000008c380b0000000000 4....8...... +5769 15.467569590 127.0.0.1:57433 127.0.0.1:57415 378328398 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....y.........%... +5771 15.467836380 127.0.0.1:57415 127.0.0.1:57433 3334965804 12 ffffffff8c380b0000000000 .....8...... +5773 15.468644619 127.0.0.1:57415 127.0.0.1:57433 3334965816 12 1e00000034630b0000000000 ....4c...... +5775 15.468785048 127.0.0.1:57415 127.0.0.1:57433 3334965828 30 1a00000055ceff62b21b3a50010003000000cbf51f000000000000000000 ....U..b..:P.................. +5777 15.469113588 127.0.0.1:57433 127.0.0.1:57415 378328450 12 ffffffff34630b0000000000 ....4c...... +5779 15.469636440 127.0.0.1:57433 127.0.0.1:57415 378328462 12 1a0000008d380b0000000000 .....8...... +5781 15.469868422 127.0.0.1:57433 127.0.0.1:57415 378328474 26 16000000cbf51f00000000000100030000000000000000000000 .......................... +5783 15.470144510 127.0.0.1:57415 127.0.0.1:57433 3334965858 12 ffffffff8d380b0000000000 .....8...... +5785 15.522756100 127.0.0.1:57433 127.0.0.1:57415 378328500 12 feffffffd04a0100e04a0100 .....J...J.. +5793 15.552855968 127.0.0.1:57415 127.0.0.1:57433 3334965870 12 1a00000035630b0000000000 ....5c...... +5795 15.553064585 127.0.0.1:57415 127.0.0.1:57433 3334965882 26 16000000548f6340e25e3140010003000000cdf51f0000000000 ....T.c@.^1@.............. +5797 15.553407431 127.0.0.1:57433 127.0.0.1:57415 378328512 12 ffffffff35630b0000000000 ....5c...... +5799 15.553872108 127.0.0.1:57433 127.0.0.1:57415 378328524 12 160000008e380b0000000000 .....8...... +5801 15.554025173 127.0.0.1:57433 127.0.0.1:57415 378328536 22 12000000cdf51f000000000001000300000000000000 ...................... +5803 15.554257631 127.0.0.1:57415 127.0.0.1:57433 3334965908 12 ffffffff8e380b0000000000 .....8...... +5806 15.596354961 127.0.0.1:57415 127.0.0.1:57433 3334965920 12 feffffffe14a0100d04a0100 .....J...J.. +5812 15.655757666 127.0.0.1:57415 127.0.0.1:57433 3334965932 12 1a00000036630b0000000000 ....6c...... +5814 15.656015873 127.0.0.1:57415 127.0.0.1:57433 3334965944 26 16000000548f6340e25e3140010003000000cff51f0000000000 ....T.c@.^1@.............. +5816 15.656404972 127.0.0.1:57433 127.0.0.1:57415 378328558 12 ffffffff36630b0000000000 ....6c...... +5818 15.656786442 127.0.0.1:57433 127.0.0.1:57415 378328570 12 160000008f380b0000000000 .....8...... +5820 15.656980753 127.0.0.1:57433 127.0.0.1:57415 378328582 22 12000000cff51f000000000001000300000000000000 ...................... +5822 15.657315016 127.0.0.1:57415 127.0.0.1:57433 3334965970 12 ffffffff8f380b0000000000 .....8...... +5831 15.758794308 127.0.0.1:57415 127.0.0.1:57433 3334965982 12 1a00000037630b0000000000 ....7c...... +5833 15.758981705 127.0.0.1:57415 127.0.0.1:57433 3334965994 26 16000000548f6340e25e3140010003000000d1f51f0000000000 ....T.c@.^1@.............. +5835 15.759351969 127.0.0.1:57433 127.0.0.1:57415 378328604 12 ffffffff37630b0000000000 ....7c...... +5837 15.759821415 127.0.0.1:57433 127.0.0.1:57415 378328616 12 1600000090380b0000000000 .....8...... +5839 15.760015488 127.0.0.1:57433 127.0.0.1:57415 378328628 22 12000000d1f51f000000000001000300000000000000 ...................... +5841 15.760308981 127.0.0.1:57415 127.0.0.1:57433 3334966020 12 ffffffff90380b0000000000 .....8...... +5848 15.769929886 127.0.0.1:57415 127.0.0.1:57433 3334966032 12 2200000038630b0000000000 "...8c...... +5850 15.770081758 127.0.0.1:57415 127.0.0.1:57433 3334966044 34 1e0000001c2118d0c46f33bb0100030000007a1e020000000000bdff32c39d01 .....!...o3.......z.........2..... +5852 15.770256281 127.0.0.1:57415 127.0.0.1:57433 3334966078 12 4300000039630b0000000000 C...9c...... +5854 15.770343781 127.0.0.1:57415 127.0.0.1:57433 3334966090 67 3f000000980433cb0cb47c3801000300000001000000007a1e0200000000003d ?.....3...|8...........z.......=B.....&......... +5856 15.770409107 127.0.0.1:57433 127.0.0.1:57415 378328650 12 ffffffff38630b0000000000 ....8c...... +5858 15.770574808 127.0.0.1:57433 127.0.0.1:57415 378328662 12 ffffffff39630b0000000000 ....9c...... +5860 15.772097349 127.0.0.1:57433 127.0.0.1:57415 378328674 12 3400000091380b0000000000 4....8...... +5862 15.772450924 127.0.0.1:57433 127.0.0.1:57415 378328686 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....z.........sl.. +5864 15.772697449 127.0.0.1:57415 127.0.0.1:57433 3334966157 12 ffffffff91380b0000000000 .....8...... +5867 15.773635864 127.0.0.1:57415 127.0.0.1:57433 3334966169 12 1e0000003a630b0000000000 ....:c...... +5870 15.773776293 127.0.0.1:57415 127.0.0.1:57433 3334966181 30 1a00000055ceff62b21b3a50010003000000d3f51f000000000000000000 ....U..b..:P.................. +5872 15.774180174 127.0.0.1:57433 127.0.0.1:57415 378328738 12 ffffffff3a630b0000000000 ....:c...... +5874 15.774714470 127.0.0.1:57433 127.0.0.1:57415 378328750 12 1a00000092380b0000000000 .....8...... +5876 15.774905205 127.0.0.1:57433 127.0.0.1:57415 378328762 26 16000000d3f51f00000000000100030000000000000000000000 .......................... +5878 15.775182247 127.0.0.1:57415 127.0.0.1:57433 3334966211 12 ffffffff92380b0000000000 .....8...... +5912 15.862565756 127.0.0.1:57415 127.0.0.1:57433 3334966223 12 1a0000003b630b0000000000 ....;c...... +5914 15.862837791 127.0.0.1:57415 127.0.0.1:57433 3334966235 26 16000000548f6340e25e3140010003000000d5f51f0000000000 ....T.c@.^1@.............. +5916 15.863236666 127.0.0.1:57433 127.0.0.1:57415 378328788 12 ffffffff3b630b0000000000 ....;c...... +5918 15.863705635 127.0.0.1:57433 127.0.0.1:57415 378328800 12 1600000093380b0000000000 .....8...... +5920 15.863972902 127.0.0.1:57433 127.0.0.1:57415 378328812 22 12000000d5f51f000000000001000300000000000000 ...................... +5922 15.864256144 127.0.0.1:57415 127.0.0.1:57433 3334966261 12 ffffffff93380b0000000000 .....8...... +5927 15.966819048 127.0.0.1:57415 127.0.0.1:57433 3334966273 12 1a0000003c630b0000000000 ....c...... +5962 16.075920343 127.0.0.1:57415 127.0.0.1:57433 3334966385 101 1e0000001c2118d0c46f33bb0100030000007b1e020000000000ef0033c39d01 .....!...o3.......{.........3.....?.....3...|8.. +5964 16.076286793 127.0.0.1:57433 127.0.0.1:57415 378328938 12 ffffffff3e630b0000000000 ....>c...... +5966 16.077103138 127.0.0.1:57433 127.0.0.1:57415 378328950 12 3400000096380b0000000000 4....8...... +5968 16.077369452 127.0.0.1:57433 127.0.0.1:57415 378328962 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....{............. +5970 16.077691555 127.0.0.1:57415 127.0.0.1:57433 3334966486 12 ffffffff96380b0000000000 .....8...... +5972 16.078418732 127.0.0.1:57415 127.0.0.1:57433 3334966498 12 1e0000003f630b0000000000 ....?c...... +5974 16.078575373 127.0.0.1:57415 127.0.0.1:57433 3334966510 30 1a00000055ceff62b21b3a50010003000000dbf51f000000000000000000 ....U..b..:P.................. +5976 16.078918457 127.0.0.1:57433 127.0.0.1:57415 378329014 12 ffffffff3f630b0000000000 ....?c...... +5978 16.079208136 127.0.0.1:57433 127.0.0.1:57415 378329026 12 1a00000097380b0000000000 .....8...... +5980 16.079393387 127.0.0.1:57433 127.0.0.1:57415 378329038 26 16000000dbf51f00000000000100030000000000000000000000 .......................... +5982 16.079701424 127.0.0.1:57415 127.0.0.1:57433 3334966540 12 ffffffff97380b0000000000 .....8...... +5984 16.098297358 127.0.0.1:57415 127.0.0.1:57433 3334966552 12 feffffffe24a0100d14a0100 .....J...J.. +5991 16.172659159 127.0.0.1:57415 127.0.0.1:57433 3334966564 12 1a00000040630b0000000000 ....@c...... +5993 16.172838449 127.0.0.1:57415 127.0.0.1:57433 3334966576 26 16000000548f6340e25e3140010003000000ddf51f0000000000 ....T.c@.^1@.............. +5995 16.173257351 127.0.0.1:57433 127.0.0.1:57415 378329064 12 ffffffff40630b0000000000 ....@c...... +5997 16.173546314 127.0.0.1:57433 127.0.0.1:57415 378329076 12 1600000098380b0000000000 .....8...... +5999 16.173707485 127.0.0.1:57433 127.0.0.1:57415 378329088 22 12000000ddf51f000000000001000300000000000000 ...................... +6001 16.173997402 127.0.0.1:57415 127.0.0.1:57433 3334966602 12 ffffffff98380b0000000000 .....8...... +6043 16.274940968 127.0.0.1:57415 127.0.0.1:57433 3334966614 12 1a00000041630b0000000000 ....Ac...... +6045 16.275113106 127.0.0.1:57415 127.0.0.1:57433 3334966626 26 16000000548f6340e25e3140010003000000dff51f0000000000 ....T.c@.^1@.............. +6047 16.275731564 127.0.0.1:57433 127.0.0.1:57415 378329110 12 ffffffff41630b0000000000 ....Ac...... +6049 16.275991201 127.0.0.1:57433 127.0.0.1:57415 378329122 12 1600000099380b0000000000 .....8...... +6051 16.276156902 127.0.0.1:57433 127.0.0.1:57415 378329134 22 12000000dff51f000000000001000300000000000000 ...................... +6053 16.276477098 127.0.0.1:57415 127.0.0.1:57433 3334966652 12 ffffffff99380b0000000000 .....8...... +6071 16.377899885 127.0.0.1:57415 127.0.0.1:57433 3334966664 12 1a00000042630b0000000000 ....Bc...... +6073 16.378153563 127.0.0.1:57415 127.0.0.1:57433 3334966676 26 16000000548f6340e25e3140010003000000e1f51f0000000000 ....T.c@.^1@.............. +6075 16.378518105 127.0.0.1:57433 127.0.0.1:57415 378329156 12 ffffffff42630b0000000000 ....Bc...... +6077 16.379004955 127.0.0.1:57433 127.0.0.1:57415 378329168 12 160000009a380b0000000000 .....8...... +6079 16.379203320 127.0.0.1:57433 127.0.0.1:57415 378329180 22 12000000e1f51f000000000001000300000000000000 ...................... +6081 16.379467726 127.0.0.1:57415 127.0.0.1:57433 3334966702 12 ffffffff9a380b0000000000 .....8...... +6085 16.379993916 127.0.0.1:57415 127.0.0.1:57433 3334966714 12 6500000043630b0000000000 e...Cc...... +6087 16.380208015 127.0.0.1:57415 127.0.0.1:57433 3334966726 101 1e0000001c2118d0c46f33bb0100030000007c1e0200000000001f0233c39d01 .....!...o3.......|.........3.....?.....3...|8.. +6089 16.380645514 127.0.0.1:57433 127.0.0.1:57415 378329202 12 ffffffff43630b0000000000 ....Cc...... +6095 16.381298780 127.0.0.1:57433 127.0.0.1:57415 378329214 12 340000009b380b0000000000 4....8...... +6097 16.381447077 127.0.0.1:57433 127.0.0.1:57415 378329226 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....|.........-l.. +6101 16.381683588 127.0.0.1:57415 127.0.0.1:57433 3334966827 12 ffffffff9b380b0000000000 .....8...... +6105 16.382458925 127.0.0.1:57415 127.0.0.1:57433 3334966839 12 1e00000044630b0000000000 ....Dc...... +6107 16.382632256 127.0.0.1:57415 127.0.0.1:57433 3334966851 30 1a00000055ceff62b21b3a50010003000000e3f51f000000000000000000 ....U..b..:P.................. +6113 16.382946730 127.0.0.1:57433 127.0.0.1:57415 378329278 12 ffffffff44630b0000000000 ....Dc...... +6115 16.383413315 127.0.0.1:57433 127.0.0.1:57415 378329290 12 1a0000009c380b0000000000 .....8...... +6117 16.383578062 127.0.0.1:57433 127.0.0.1:57415 378329302 26 16000000e3f51f00000000000100030000000000000000000000 .......................... +6119 16.383815289 127.0.0.1:57415 127.0.0.1:57433 3334966881 12 ffffffff9c380b0000000000 .....8...... +6142 16.481228828 127.0.0.1:57415 127.0.0.1:57433 3334966893 12 1a00000045630b0000000000 ....Ec...... +6144 16.481410265 127.0.0.1:57415 127.0.0.1:57433 3334966905 26 16000000548f6340e25e3140010003000000e5f51f0000000000 ....T.c@.^1@.............. +6146 16.481755972 127.0.0.1:57433 127.0.0.1:57415 378329328 12 ffffffff45630b0000000000 ....Ec...... +6148 16.482164383 127.0.0.1:57433 127.0.0.1:57415 378329340 12 160000009d380b0000000000 .....8...... +6150 16.482355356 127.0.0.1:57433 127.0.0.1:57415 378329352 22 12000000e5f51f000000000001000300000000000000 ...................... +6152 16.482693911 127.0.0.1:57415 127.0.0.1:57433 3334966931 12 ffffffff9d380b0000000000 .....8...... +6163 16.524690628 127.0.0.1:57433 127.0.0.1:57415 378329374 12 feffffffd24a0100e24a0100 .....J...J.. +6202 16.584578514 127.0.0.1:57415 127.0.0.1:57433 3334966943 12 1a00000046630b0000000000 ....Fc...... +6204 16.584800959 127.0.0.1:57415 127.0.0.1:57433 3334966955 26 16000000548f6340e25e3140010003000000e7f51f0000000000 ....T.c@.^1@.............. +6206 16.585142851 127.0.0.1:57433 127.0.0.1:57415 378329386 12 ffffffff46630b0000000000 ....Fc...... +6208 16.585602999 127.0.0.1:57433 127.0.0.1:57415 378329398 12 160000009e380b0000000000 .....8...... +6210 16.585805416 127.0.0.1:57433 127.0.0.1:57415 378329410 22 12000000e7f51f000000000001000300000000000000 ...................... +6212 16.586081028 127.0.0.1:57415 127.0.0.1:57433 3334966981 12 ffffffff9e380b0000000000 .....8...... +6214 16.598748922 127.0.0.1:57415 127.0.0.1:57433 3334966993 12 feffffffe34a0100d24a0100 .....J...J.. +6258 16.683735132 127.0.0.1:57415 127.0.0.1:57433 3334967005 12 6500000047630b0000000000 e...Gc...... +6260 16.683922529 127.0.0.1:57415 127.0.0.1:57433 3334967017 101 1e0000001c2118d0c46f33bb0100030000007d1e0200000000004f0333c39d01 .....!...o3.......}.......O.3.....?.....3...|8.. +6263 16.684256077 127.0.0.1:57433 127.0.0.1:57415 378329432 12 ffffffff47630b0000000000 ....Gc...... +6270 16.685144663 127.0.0.1:57433 127.0.0.1:57415 378329444 12 340000009f380b0000000000 4....8...... +6272 16.685310364 127.0.0.1:57433 127.0.0.1:57415 378329456 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....}...........D. +6274 16.685598850 127.0.0.1:57415 127.0.0.1:57433 3334967118 12 ffffffff9f380b0000000000 .....8...... +6276 16.686555147 127.0.0.1:57415 127.0.0.1:57433 3334967130 12 1e00000048630b0000000000 ....Hc...... +6278 16.686722279 127.0.0.1:57415 127.0.0.1:57433 3334967142 30 1a00000055ceff62b21b3a50010003000000e9f51f000000000000000000 ....U..b..:P.................. +6280 16.687028885 127.0.0.1:57433 127.0.0.1:57415 378329508 12 ffffffff48630b0000000000 ....Hc...... +6282 16.687311649 127.0.0.1:57415 127.0.0.1:57433 3334967172 12 1a00000049630b0000000000 ....Ic...... +6284 16.687483311 127.0.0.1:57433 127.0.0.1:57415 378329520 12 1a000000a0380b0000000000 .....8...... +6285 16.687513351 127.0.0.1:57415 127.0.0.1:57433 3334967184 26 16000000548f6340e25e3140010003000000ebf51f0000000000 ....T.c@.^1@.............. +6287 16.687628984 127.0.0.1:57433 127.0.0.1:57415 378329532 26 16000000e9f51f00000000000100030000000000000000000000 .......................... +6289 16.687838793 127.0.0.1:57415 127.0.0.1:57433 3334967210 12 ffffffffa0380b0000000000 .....8...... +6290 16.687976122 127.0.0.1:57433 127.0.0.1:57415 378329558 12 ffffffff49630b0000000000 ....Ic...... +6291 16.688277483 127.0.0.1:57433 127.0.0.1:57415 378329570 12 16000000a1380b0000000000 .....8...... +6293 16.688506603 127.0.0.1:57433 127.0.0.1:57415 378329582 22 12000000ebf51f000000000001000300000000000000 ...................... +6295 16.688837290 127.0.0.1:57415 127.0.0.1:57433 3334967222 12 ffffffffa1380b0000000000 .....8...... +6311 16.790580988 127.0.0.1:57415 127.0.0.1:57433 3334967234 12 1a0000004a630b0000000000 ....Jc...... +6313 16.790828466 127.0.0.1:57415 127.0.0.1:57433 3334967246 26 16000000548f6340e25e3140010003000000edf51f0000000000 ....T.c@.^1@.............. +6315 16.791294098 127.0.0.1:57433 127.0.0.1:57415 378329604 12 ffffffff4a630b0000000000 ....Jc...... +6317 16.791882038 127.0.0.1:57433 127.0.0.1:57415 378329616 12 16000000a2380b0000000000 .....8...... +6319 16.792066574 127.0.0.1:57433 127.0.0.1:57415 378329628 22 12000000edf51f000000000001000300000000000000 ...................... +6321 16.792344332 127.0.0.1:57415 127.0.0.1:57433 3334967272 12 ffffffffa2380b0000000000 .....8...... +6377 16.893260479 127.0.0.1:57415 127.0.0.1:57433 3334967284 12 1a0000004b630b0000000000 ....Kc...... +6379 16.893423080 127.0.0.1:57415 127.0.0.1:57433 3334967296 26 16000000548f6340e25e3140010003000000eff51f0000000000 ....T.c@.^1@.............. +6381 16.893917084 127.0.0.1:57433 127.0.0.1:57415 378329650 12 ffffffff4b630b0000000000 ....Kc...... +6383 16.894555807 127.0.0.1:57433 127.0.0.1:57415 378329662 12 16000000a3380b0000000000 .....8...... +6385 16.894718885 127.0.0.1:57433 127.0.0.1:57415 378329674 22 12000000eff51f000000000001000300000000000000 ...................... +6387 16.894987345 127.0.0.1:57415 127.0.0.1:57433 3334967322 12 ffffffffa3380b0000000000 .....8...... +6391 16.987992764 127.0.0.1:57415 127.0.0.1:57433 3334967334 12 650000004c630b0000000000 e...Lc...... +6393 16.988176584 127.0.0.1:57415 127.0.0.1:57433 3334967346 101 1e0000001c2118d0c46f33bb0100030000007e1e0200000000007f0433c39d01 .....!...o3.......~.........3.....?.....3...|8.. +6395 16.988622665 127.0.0.1:57433 127.0.0.1:57415 378329696 12 ffffffff4c630b0000000000 ....Lc...... +6397 16.989631653 127.0.0.1:57433 127.0.0.1:57415 378329708 12 34000000a4380b0000000000 4....8...... +6399 16.989800453 127.0.0.1:57433 127.0.0.1:57415 378329720 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....~.........m>s. +6401 16.990185738 127.0.0.1:57415 127.0.0.1:57433 3334967447 12 ffffffffa4380b0000000000 .....8...... +6403 16.991051912 127.0.0.1:57415 127.0.0.1:57433 3334967459 12 1e0000004d630b0000000000 ....Mc...... +6405 16.991197586 127.0.0.1:57415 127.0.0.1:57433 3334967471 30 1a00000055ceff62b21b3a50010003000000f1f51f000000000000000000 ....U..b..:P.................. +6407 16.991513729 127.0.0.1:57433 127.0.0.1:57415 378329772 12 ffffffff4d630b0000000000 ....Mc...... +6409 16.991864681 127.0.0.1:57433 127.0.0.1:57415 378329784 12 1a000000a5380b0000000000 .....8...... +6411 16.992036343 127.0.0.1:57433 127.0.0.1:57415 378329796 26 16000000f1f51f00000000000100030000000000000000000000 .......................... +6413 16.992242575 127.0.0.1:57415 127.0.0.1:57433 3334967501 12 ffffffffa5380b0000000000 .....8...... +6416 16.996422529 127.0.0.1:57415 127.0.0.1:57433 3334967513 12 1a0000004e630b0000000000 ....Nc...... +6418 16.996581078 127.0.0.1:57415 127.0.0.1:57433 3334967525 26 16000000548f6340e25e3140010003000000f3f51f0000000000 ....T.c@.^1@.............. +6420 16.996875525 127.0.0.1:57433 127.0.0.1:57415 378329822 12 ffffffff4e630b0000000000 ....Nc...... +6422 16.997380495 127.0.0.1:57433 127.0.0.1:57415 378329834 12 16000000a6380b0000000000 .....8...... +6424 16.997522831 127.0.0.1:57433 127.0.0.1:57415 378329846 22 12000000f3f51f000000000001000300000000000000 ...................... +6426 16.997772217 127.0.0.1:57415 127.0.0.1:57433 3334967551 12 ffffffffa6380b0000000000 .....8...... +6428 17.025471926 127.0.0.1:57433 127.0.0.1:57415 378329868 12 feffffffd34a0100e34a0100 .....J...J.. +6436 17.099261284 127.0.0.1:57415 127.0.0.1:57433 3334967563 12 feffffffe44a0100d34a0100 .....J...J.. +6442 17.099594831 127.0.0.1:57415 127.0.0.1:57433 3334967575 12 1a0000004f630b0000000000 ....Oc...... +6444 17.099795103 127.0.0.1:57415 127.0.0.1:57433 3334967587 26 16000000548f6340e25e3140010003000000f5f51f0000000000 ....T.c@.^1@.............. +6446 17.100263834 127.0.0.1:57433 127.0.0.1:57415 378329880 12 ffffffff4f630b0000000000 ....Oc...... +6448 17.100573301 127.0.0.1:57433 127.0.0.1:57415 378329892 12 16000000a7380b0000000000 .....8...... +6450 17.100803614 127.0.0.1:57433 127.0.0.1:57415 378329904 22 12000000f5f51f000000000001000300000000000000 ...................... +6452 17.101083755 127.0.0.1:57415 127.0.0.1:57433 3334967613 12 ffffffffa7380b0000000000 .....8...... +6454 17.202542782 127.0.0.1:57415 127.0.0.1:57433 3334967625 12 1a00000050630b0000000000 ....Pc...... +6456 17.202775478 127.0.0.1:57415 127.0.0.1:57433 3334967637 26 16000000548f6340e25e3140010003000000f7f51f0000000000 ....T.c@.^1@.............. +6458 17.203135252 127.0.0.1:57433 127.0.0.1:57415 378329926 12 ffffffff50630b0000000000 ....Pc...... +6460 17.203728199 127.0.0.1:57433 127.0.0.1:57415 378329938 12 16000000a8380b0000000000 .....8...... +6462 17.203876734 127.0.0.1:57433 127.0.0.1:57415 378329950 22 12000000f7f51f000000000001000300000000000000 ...................... +6464 17.204082012 127.0.0.1:57415 127.0.0.1:57433 3334967663 12 ffffffffa8380b0000000000 .....8...... +6468 17.291946173 127.0.0.1:57415 127.0.0.1:57433 3334967675 12 6500000051630b0000000000 e...Qc...... +6470 17.292121172 127.0.0.1:57415 127.0.0.1:57433 3334967687 101 1e0000001c2118d0c46f33bb0100030000007f1e020000000000af0533c39d01 .....!...o3.................3.....?.....3...|8.. +6472 17.292814493 127.0.0.1:57433 127.0.0.1:57415 378329972 12 ffffffff51630b0000000000 ....Qc...... +6474 17.293941975 127.0.0.1:57433 127.0.0.1:57415 378329984 12 34000000a9380b0000000000 4....8...... +6476 17.294104815 127.0.0.1:57433 127.0.0.1:57415 378329996 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............,... +6478 17.294473886 127.0.0.1:57415 127.0.0.1:57433 3334967788 12 ffffffffa9380b0000000000 .....8...... +6480 17.295316219 127.0.0.1:57415 127.0.0.1:57433 3334967800 12 1e00000052630b0000000000 ....Rc...... +6482 17.295475721 127.0.0.1:57415 127.0.0.1:57433 3334967812 30 1a00000055ceff62b21b3a50010003000000f9f51f000000000000000000 ....U..b..:P.................. +6488 17.295851469 127.0.0.1:57433 127.0.0.1:57415 378330048 12 ffffffff52630b0000000000 ....Rc...... +6490 17.296175003 127.0.0.1:57433 127.0.0.1:57415 378330060 12 1a000000aa380b0000000000 .....8...... +6492 17.296316385 127.0.0.1:57433 127.0.0.1:57415 378330072 26 16000000f9f51f00000000000100030000000000000000000000 .......................... +6494 17.296583176 127.0.0.1:57415 127.0.0.1:57433 3334967842 12 ffffffffaa380b0000000000 .....8...... +6496 17.305358887 127.0.0.1:57415 127.0.0.1:57433 3334967854 12 1a00000053630b0000000000 ....Sc...... +6498 17.305510283 127.0.0.1:57415 127.0.0.1:57433 3334967866 26 16000000548f6340e25e3140010003000000fbf51f0000000000 ....T.c@.^1@.............. +6500 17.305861235 127.0.0.1:57433 127.0.0.1:57415 378330098 12 ffffffff53630b0000000000 ....Sc...... +6502 17.306884289 127.0.0.1:57433 127.0.0.1:57415 378330110 12 16000000ab380b0000000000 .....8...... +6504 17.307044506 127.0.0.1:57433 127.0.0.1:57415 378330122 22 12000000fbf51f000000000001000300000000000000 ...................... +6506 17.307305098 127.0.0.1:57415 127.0.0.1:57433 3334967892 12 ffffffffab380b0000000000 .....8...... +6512 17.408569813 127.0.0.1:57415 127.0.0.1:57433 3334967904 12 1a00000054630b0000000000 ....Tc...... +6514 17.408734560 127.0.0.1:57415 127.0.0.1:57433 3334967916 26 16000000548f6340e25e3140010003000000fdf51f0000000000 ....T.c@.^1@.............. +6516 17.409154892 127.0.0.1:57433 127.0.0.1:57415 378330144 12 ffffffff54630b0000000000 ....Tc...... +6518 17.409533739 127.0.0.1:57433 127.0.0.1:57415 378330156 12 16000000ac380b0000000000 .....8...... +6520 17.409694195 127.0.0.1:57433 127.0.0.1:57415 378330168 22 12000000fdf51f000000000001000300000000000000 ...................... +6522 17.410036802 127.0.0.1:57415 127.0.0.1:57433 3334967942 12 ffffffffac380b0000000000 .....8...... +6524 17.512294292 127.0.0.1:57415 127.0.0.1:57433 3334967954 12 1a00000055630b0000000000 ....Uc...... +6526 17.512608767 127.0.0.1:57415 127.0.0.1:57433 3334967966 26 16000000548f6340e25e3140010003000000fff51f0000000000 ....T.c@.^1@.............. +6528 17.513146639 127.0.0.1:57433 127.0.0.1:57415 378330190 12 ffffffff55630b0000000000 ....Uc...... +6530 17.513571739 127.0.0.1:57433 127.0.0.1:57415 378330202 12 16000000ad380b0000000000 .....8...... +6532 17.513783693 127.0.0.1:57433 127.0.0.1:57415 378330214 22 12000000fff51f000000000001000300000000000000 ...................... +6534 17.514126778 127.0.0.1:57415 127.0.0.1:57433 3334967992 12 ffffffffad380b0000000000 .....8...... +6544 17.526930094 127.0.0.1:57433 127.0.0.1:57415 378330236 12 feffffffd44a0100e44a0100 .....J...J.. +6553 17.598050594 127.0.0.1:57415 127.0.0.1:57433 3334968004 12 6500000056630b0000000000 e...Vc...... +6556 17.598302841 127.0.0.1:57415 127.0.0.1:57433 3334968016 101 1e0000001c2118d0c46f33bb010003000000801e020000000000e10633c39d01 .....!...o3.................3.....?.....3...|8.. +6559 17.598634720 127.0.0.1:57433 127.0.0.1:57415 378330248 12 ffffffff56630b0000000000 ....Vc...... +6561 17.600117922 127.0.0.1:57433 127.0.0.1:57415 378330260 12 34000000ae380b0000000000 4....8...... +6564 17.600244522 127.0.0.1:57415 127.0.0.1:57433 3334968117 12 feffffffe54a0100d44a0100 .....J...J.. +6568 17.600407362 127.0.0.1:57433 127.0.0.1:57415 378330272 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............~`.. +6570 17.600696564 127.0.0.1:57415 127.0.0.1:57433 3334968129 12 ffffffffae380b0000000000 .....8...... +6572 17.601484776 127.0.0.1:57415 127.0.0.1:57433 3334968141 12 1e00000057630b0000000000 ....Wc...... +6574 17.601678371 127.0.0.1:57415 127.0.0.1:57433 3334968153 30 1a00000055ceff62b21b3a5001000300000001f61f000000000000000000 ....U..b..:P.................. +6576 17.601989269 127.0.0.1:57433 127.0.0.1:57415 378330324 12 ffffffff57630b0000000000 ....Wc...... +6578 17.602415323 127.0.0.1:57433 127.0.0.1:57415 378330336 12 1a000000af380b0000000000 .....8...... +6580 17.602561474 127.0.0.1:57433 127.0.0.1:57415 378330348 26 1600000001f61f00000000000100030000000000000000000000 .......................... +6582 17.602861643 127.0.0.1:57415 127.0.0.1:57433 3334968183 12 ffffffffaf380b0000000000 .....8...... +6584 17.615461588 127.0.0.1:57415 127.0.0.1:57433 3334968195 12 1a00000058630b0000000000 ....Xc...... +6586 17.615620136 127.0.0.1:57415 127.0.0.1:57433 3334968207 26 16000000548f6340e25e314001000300000003f61f0000000000 ....T.c@.^1@.............. +6588 17.616029501 127.0.0.1:57433 127.0.0.1:57415 378330374 12 ffffffff58630b0000000000 ....Xc...... +6590 17.616480350 127.0.0.1:57433 127.0.0.1:57415 378330386 12 16000000b0380b0000000000 .....8...... +6592 17.616642475 127.0.0.1:57433 127.0.0.1:57415 378330398 22 1200000003f61f000000000001000300000000000000 ...................... +6594 17.616986513 127.0.0.1:57415 127.0.0.1:57433 3334968233 12 ffffffffb0380b0000000000 .....8...... +6597 17.718357801 127.0.0.1:57415 127.0.0.1:57433 3334968245 12 1a00000059630b0000000000 ....Yc...... +6599 17.718523026 127.0.0.1:57415 127.0.0.1:57433 3334968257 26 16000000548f6340e25e314001000300000005f61f0000000000 ....T.c@.^1@.............. +6601 17.718887091 127.0.0.1:57433 127.0.0.1:57415 378330420 12 ffffffff59630b0000000000 ....Yc...... +6603 17.719457865 127.0.0.1:57433 127.0.0.1:57415 378330432 12 16000000b1380b0000000000 .....8...... +6605 17.719667673 127.0.0.1:57433 127.0.0.1:57415 378330444 22 1200000005f61f000000000001000300000000000000 ...................... +6607 17.720000744 127.0.0.1:57415 127.0.0.1:57433 3334968283 12 ffffffffb1380b0000000000 .....8...... +6616 17.822107077 127.0.0.1:57415 127.0.0.1:57433 3334968295 12 1a0000005a630b0000000000 ....Zc...... +6618 17.822317123 127.0.0.1:57415 127.0.0.1:57433 3334968307 26 16000000548f6340e25e314001000300000007f61f0000000000 ....T.c@.^1@.............. +6620 17.822656870 127.0.0.1:57433 127.0.0.1:57415 378330466 12 ffffffff5a630b0000000000 ....Zc...... +6622 17.824120998 127.0.0.1:57433 127.0.0.1:57415 378330478 12 16000000b2380b0000000000 .....8...... +6624 17.824317455 127.0.0.1:57433 127.0.0.1:57415 378330490 22 1200000007f61f000000000001000300000000000000 ...................... +6626 17.824616909 127.0.0.1:57415 127.0.0.1:57433 3334968333 12 ffffffffb2380b0000000000 .....8...... +6630 17.902566671 127.0.0.1:57415 127.0.0.1:57433 3334968345 12 220000005b630b0000000000 "...[c...... +6632 17.902733326 127.0.0.1:57415 127.0.0.1:57433 3334968357 34 1e0000001c2118d0c46f33bb010003000000811e020000000000120833c39d01 .....!...o3.................3..... +6634 17.902870893 127.0.0.1:57415 127.0.0.1:57433 3334968391 12 430000005c630b0000000000 C...\c...... +6636 17.902956724 127.0.0.1:57415 127.0.0.1:57433 3334968403 67 3f000000980433cb0cb47c380100030000000100000000811e0200000000003d ?.....3...|8...................=B.....&......... +6638 17.903069973 127.0.0.1:57433 127.0.0.1:57415 378330512 12 ffffffff5b630b0000000000 ....[c...... +6640 17.903256893 127.0.0.1:57433 127.0.0.1:57415 378330524 12 ffffffff5c630b0000000000 ....\c...... +6642 17.903894186 127.0.0.1:57433 127.0.0.1:57415 378330536 12 34000000b3380b0000000000 4....8...... +6644 17.904054880 127.0.0.1:57433 127.0.0.1:57415 378330548 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +6646 17.904327393 127.0.0.1:57415 127.0.0.1:57433 3334968470 12 ffffffffb3380b0000000000 .....8...... +6648 17.905099154 127.0.0.1:57415 127.0.0.1:57433 3334968482 12 1e0000005d630b0000000000 ....]c...... +6650 17.905259609 127.0.0.1:57415 127.0.0.1:57433 3334968494 30 1a00000055ceff62b21b3a5001000300000009f61f000000000000000000 ....U..b..:P.................. +6652 17.905574083 127.0.0.1:57433 127.0.0.1:57415 378330600 12 ffffffff5d630b0000000000 ....]c...... +6654 17.905996561 127.0.0.1:57433 127.0.0.1:57415 378330612 12 1a000000b4380b0000000000 .....8...... +6656 17.906154156 127.0.0.1:57433 127.0.0.1:57415 378330624 26 1600000009f61f00000000000100030000000000000000000000 .......................... +6658 17.906401157 127.0.0.1:57415 127.0.0.1:57433 3334968524 12 ffffffffb4380b0000000000 .....8...... +6663 17.927226067 127.0.0.1:57415 127.0.0.1:57433 3334968536 12 1a0000005e630b0000000000 ....^c...... +6665 17.927407980 127.0.0.1:57415 127.0.0.1:57433 3334968548 26 16000000548f6340e25e31400100030000000bf61f0000000000 ....T.c@.^1@.............. +6667 17.927874804 127.0.0.1:57433 127.0.0.1:57415 378330650 12 ffffffff5e630b0000000000 ....^c...... +6669 17.929234743 127.0.0.1:57433 127.0.0.1:57415 378330662 12 16000000b5380b0000000000 .....8...... +6671 17.929394722 127.0.0.1:57433 127.0.0.1:57415 378330674 22 120000000bf61f000000000001000300000000000000 ...................... +6673 17.929699898 127.0.0.1:57415 127.0.0.1:57433 3334968574 12 ffffffffb5380b0000000000 .....8...... +6675 18.027631998 127.0.0.1:57433 127.0.0.1:57415 378330696 12 feffffffd54a0100e54a0100 .....J...J.. +6680 18.030650854 127.0.0.1:57415 127.0.0.1:57433 3334968586 12 1a0000005f630b0000000000 ...._c...... +6683 18.030826092 127.0.0.1:57415 127.0.0.1:57433 3334968598 26 16000000548f6340e25e31400100030000000df61f0000000000 ....T.c@.^1@.............. +6685 18.031140089 127.0.0.1:57433 127.0.0.1:57415 378330708 12 ffffffff5f630b0000000000 ...._c...... +6687 18.031738043 127.0.0.1:57433 127.0.0.1:57415 378330720 12 16000000b6380b0000000000 .....8...... +6689 18.031899452 127.0.0.1:57433 127.0.0.1:57415 378330732 22 120000000df61f000000000001000300000000000000 ...................... +6691 18.032157421 127.0.0.1:57415 127.0.0.1:57433 3334968624 12 ffffffffb6380b0000000000 .....8...... +6709 18.101252317 127.0.0.1:57415 127.0.0.1:57433 3334968636 12 feffffffe64a0100d54a0100 .....J...J.. +6715 18.133457184 127.0.0.1:57415 127.0.0.1:57433 3334968648 12 1a00000060630b0000000000 ....`c...... +6717 18.133621931 127.0.0.1:57415 127.0.0.1:57433 3334968660 26 16000000548f6340e25e31400100030000000ff61f0000000000 ....T.c@.^1@.............. +6719 18.134038448 127.0.0.1:57433 127.0.0.1:57415 378330754 12 ffffffff60630b0000000000 ....`c...... +6721 18.135491371 127.0.0.1:57433 127.0.0.1:57415 378330766 12 16000000b7380b0000000000 .....8...... +6723 18.135650158 127.0.0.1:57433 127.0.0.1:57415 378330778 22 120000000ff61f000000000001000300000000000000 ...................... +6725 18.135958910 127.0.0.1:57415 127.0.0.1:57433 3334968686 12 ffffffffb7380b0000000000 .....8...... +6728 18.205927610 127.0.0.1:57415 127.0.0.1:57433 3334968698 12 2200000061630b0000000000 "...ac...... +6730 18.206139326 127.0.0.1:57415 127.0.0.1:57433 3334968710 34 1e0000001c2118d0c46f33bb010003000000821e020000000000410933c39d01 .....!...o3...............A.3..... +6732 18.206292868 127.0.0.1:57415 127.0.0.1:57433 3334968744 12 4300000062630b0000000000 C...bc...... +6734 18.206379175 127.0.0.1:57415 127.0.0.1:57433 3334968756 67 3f000000980433cb0cb47c380100030000000100000000821e0200000000003d ?.....3...|8...................=B.....&......... +6736 18.206521034 127.0.0.1:57433 127.0.0.1:57415 378330800 12 ffffffff61630b0000000000 ....ac...... +6738 18.206751585 127.0.0.1:57433 127.0.0.1:57415 378330812 12 ffffffff62630b0000000000 ....bc...... +6740 18.207502365 127.0.0.1:57433 127.0.0.1:57415 378330824 12 34000000b8380b0000000000 4....8...... +6742 18.207648039 127.0.0.1:57433 127.0.0.1:57415 378330836 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............l.-. +6744 18.208017826 127.0.0.1:57415 127.0.0.1:57433 3334968823 12 ffffffffb8380b0000000000 .....8...... +6746 18.208695889 127.0.0.1:57415 127.0.0.1:57433 3334968835 12 1e00000063630b0000000000 ....cc...... +6748 18.209336996 127.0.0.1:57415 127.0.0.1:57433 3334968847 30 1a00000055ceff62b21b3a5001000300000011f61f000000000000000000 ....U..b..:P.................. +6750 18.209733248 127.0.0.1:57433 127.0.0.1:57415 378330888 12 ffffffff63630b0000000000 ....cc...... +6752 18.210309267 127.0.0.1:57433 127.0.0.1:57415 378330900 12 1a000000b9380b0000000000 .....8...... +6754 18.210450888 127.0.0.1:57433 127.0.0.1:57415 378330912 26 1600000011f61f00000000000100030000000000000000000000 .......................... +6756 18.210793972 127.0.0.1:57415 127.0.0.1:57433 3334968877 12 ffffffffb9380b0000000000 .....8...... +6758 18.238655567 127.0.0.1:57415 127.0.0.1:57433 3334968889 12 1a00000064630b0000000000 ....dc...... +6760 18.238827467 127.0.0.1:57415 127.0.0.1:57433 3334968901 26 16000000548f6340e25e314001000300000013f61f0000000000 ....T.c@.^1@.............. +6762 18.239077330 127.0.0.1:57433 127.0.0.1:57415 378330938 12 ffffffff64630b0000000000 ....dc...... +6764 18.239631891 127.0.0.1:57433 127.0.0.1:57415 378330950 12 16000000ba380b0000000000 .....8...... +6766 18.239794970 127.0.0.1:57433 127.0.0.1:57415 378330962 22 1200000013f61f000000000001000300000000000000 ...................... +6768 18.240066290 127.0.0.1:57415 127.0.0.1:57433 3334968927 12 ffffffffba380b0000000000 .....8...... +6779 18.341665745 127.0.0.1:57415 127.0.0.1:57433 3334968939 12 1a00000065630b0000000000 ....ec...... +6781 18.341838121 127.0.0.1:57415 127.0.0.1:57433 3334968951 26 16000000548f6340e25e314001000300000015f61f0000000000 ....T.c@.^1@.............. +6783 18.342386723 127.0.0.1:57433 127.0.0.1:57415 378330984 12 ffffffff65630b0000000000 ....ec...... +6785 18.343915224 127.0.0.1:57433 127.0.0.1:57415 378330996 12 16000000bb380b0000000000 .....8...... +6787 18.344081163 127.0.0.1:57433 127.0.0.1:57415 378331008 22 1200000015f61f000000000001000300000000000000 ...................... +6789 18.344367027 127.0.0.1:57415 127.0.0.1:57433 3334968977 12 ffffffffbb380b0000000000 .....8...... +6794 18.446687222 127.0.0.1:57415 127.0.0.1:57433 3334968989 12 1a00000066630b0000000000 ....fc...... +6796 18.446865797 127.0.0.1:57415 127.0.0.1:57433 3334969001 26 16000000548f6340e25e314001000300000017f61f0000000000 ....T.c@.^1@.............. +6798 18.447236061 127.0.0.1:57433 127.0.0.1:57415 378331030 12 ffffffff66630b0000000000 ....fc...... +6800 18.448037386 127.0.0.1:57433 127.0.0.1:57415 378331042 12 16000000bc380b0000000000 .....8...... +6802 18.448259592 127.0.0.1:57433 127.0.0.1:57415 378331054 22 1200000017f61f000000000001000300000000000000 ...................... +6804 18.448525906 127.0.0.1:57415 127.0.0.1:57433 3334969027 12 ffffffffbc380b0000000000 .....8...... +6808 18.510256290 127.0.0.1:57415 127.0.0.1:57433 3334969039 12 6500000067630b0000000000 e...gc...... +6810 18.510505915 127.0.0.1:57415 127.0.0.1:57433 3334969051 101 1e0000001c2118d0c46f33bb010003000000831e020000000000710a33c39d01 .....!...o3...............q.3.....?.....3...|8.. +6812 18.510911703 127.0.0.1:57433 127.0.0.1:57415 378331076 12 ffffffff67630b0000000000 ....gc...... +6814 18.511674643 127.0.0.1:57433 127.0.0.1:57415 378331088 12 34000000bd380b0000000000 4....8...... +6816 18.511838675 127.0.0.1:57433 127.0.0.1:57415 378331100 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................~[. +6818 18.512116194 127.0.0.1:57415 127.0.0.1:57433 3334969152 12 ffffffffbd380b0000000000 .....8...... +6820 18.512917757 127.0.0.1:57415 127.0.0.1:57433 3334969164 12 1e00000068630b0000000000 ....hc...... +6822 18.513083220 127.0.0.1:57415 127.0.0.1:57433 3334969176 30 1a00000055ceff62b21b3a5001000300000019f61f000000000000000000 ....U..b..:P.................. +6824 18.513390779 127.0.0.1:57433 127.0.0.1:57415 378331152 12 ffffffff68630b0000000000 ....hc...... +6826 18.513960361 127.0.0.1:57433 127.0.0.1:57415 378331164 12 1a000000be380b0000000000 .....8...... +6828 18.514113426 127.0.0.1:57433 127.0.0.1:57415 378331176 26 1600000019f61f00000000000100030000000000000000000000 .......................... +6830 18.514384031 127.0.0.1:57415 127.0.0.1:57433 3334969206 12 ffffffffbe380b0000000000 .....8...... +6832 18.528814316 127.0.0.1:57433 127.0.0.1:57415 378331202 12 feffffffd64a0100e64a0100 .....J...J.. +6840 18.550941229 127.0.0.1:57415 127.0.0.1:57433 3334969218 12 1a00000069630b0000000000 ....ic...... +6842 18.551140070 127.0.0.1:57415 127.0.0.1:57433 3334969230 26 16000000548f6340e25e31400100030000001bf61f0000000000 ....T.c@.^1@.............. +6844 18.551779270 127.0.0.1:57433 127.0.0.1:57415 378331214 12 ffffffff69630b0000000000 ....ic...... +6846 18.552900791 127.0.0.1:57433 127.0.0.1:57415 378331226 12 16000000bf380b0000000000 .....8...... +6848 18.553111076 127.0.0.1:57433 127.0.0.1:57415 378331238 22 120000001bf61f000000000001000300000000000000 ...................... +6850 18.553440094 127.0.0.1:57415 127.0.0.1:57433 3334969256 12 ffffffffbf380b0000000000 .....8...... +6854 18.602695942 127.0.0.1:57415 127.0.0.1:57433 3334969268 12 feffffffe74a0100d64a0100 .....J...J.. +6860 18.654613256 127.0.0.1:57415 127.0.0.1:57433 3334969280 12 1a0000006a630b0000000000 ....jc...... +6862 18.654792786 127.0.0.1:57415 127.0.0.1:57433 3334969292 26 16000000548f6340e25e31400100030000001df61f0000000000 ....T.c@.^1@.............. +6864 18.655183077 127.0.0.1:57433 127.0.0.1:57415 378331260 12 ffffffff6a630b0000000000 ....jc...... +6866 18.655719042 127.0.0.1:57433 127.0.0.1:57415 378331272 12 16000000c0380b0000000000 .....8...... +6868 18.655939817 127.0.0.1:57433 127.0.0.1:57415 378331284 22 120000001df61f000000000001000300000000000000 ...................... +6870 18.656310320 127.0.0.1:57415 127.0.0.1:57433 3334969318 12 ffffffffc0380b0000000000 .....8...... +6875 18.758690596 127.0.0.1:57415 127.0.0.1:57433 3334969330 12 1a0000006b630b0000000000 ....kc...... +6877 18.758886576 127.0.0.1:57415 127.0.0.1:57433 3334969342 26 16000000548f6340e25e31400100030000001ff61f0000000000 ....T.c@.^1@.............. +6879 18.759300232 127.0.0.1:57433 127.0.0.1:57415 378331306 12 ffffffff6b630b0000000000 ....kc...... +6881 18.759746313 127.0.0.1:57433 127.0.0.1:57415 378331318 12 16000000c1380b0000000000 .....8...... +6883 18.759911299 127.0.0.1:57433 127.0.0.1:57415 378331330 22 120000001ff61f000000000001000300000000000000 ...................... +6885 18.760201931 127.0.0.1:57415 127.0.0.1:57433 3334969368 12 ffffffffc1380b0000000000 .....8...... +6895 18.814868450 127.0.0.1:57415 127.0.0.1:57433 3334969380 12 650000006c630b0000000000 e...lc...... +6897 18.815031052 127.0.0.1:57415 127.0.0.1:57433 3334969392 101 1e0000001c2118d0c46f33bb010003000000841e020000000000a20b33c39d01 .....!...o3.................3.....?.....3...|8.. +6899 18.815421104 127.0.0.1:57433 127.0.0.1:57415 378331352 12 ffffffff6c630b0000000000 ....lc...... +6901 18.816568136 127.0.0.1:57433 127.0.0.1:57415 378331364 12 34000000c2380b0000000000 4....8...... +6903 18.816722631 127.0.0.1:57433 127.0.0.1:57415 378331376 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +6905 18.816992283 127.0.0.1:57415 127.0.0.1:57433 3334969493 12 ffffffffc2380b0000000000 .....8...... +6907 18.817872286 127.0.0.1:57415 127.0.0.1:57433 3334969505 12 1e0000006d630b0000000000 ....mc...... +6909 18.818013191 127.0.0.1:57415 127.0.0.1:57433 3334969517 30 1a00000055ceff62b21b3a5001000300000021f61f000000000000000000 ....U..b..:P......!........... +6911 18.818445444 127.0.0.1:57433 127.0.0.1:57415 378331428 12 ffffffff6d630b0000000000 ....mc...... +6913 18.818789959 127.0.0.1:57433 127.0.0.1:57415 378331440 12 1a000000c3380b0000000000 .....8...... +6915 18.818930864 127.0.0.1:57433 127.0.0.1:57415 378331452 26 1600000021f61f00000000000100030000000000000000000000 ....!..................... +6917 18.819257021 127.0.0.1:57415 127.0.0.1:57433 3334969547 12 ffffffffc3380b0000000000 .....8...... +6924 18.861541510 127.0.0.1:57415 127.0.0.1:57433 3334969559 12 1a0000006e630b0000000000 ....nc...... +6926 18.861975431 127.0.0.1:57415 127.0.0.1:57433 3334969571 26 16000000548f6340e25e314001000300000023f61f0000000000 ....T.c@.^1@......#....... +6928 18.862272739 127.0.0.1:57433 127.0.0.1:57415 378331478 12 ffffffff6e630b0000000000 ....nc...... +6930 18.862978220 127.0.0.1:57433 127.0.0.1:57415 378331490 12 16000000c4380b0000000000 .....8...... +6932 18.863154173 127.0.0.1:57433 127.0.0.1:57415 378331502 22 1200000023f61f000000000001000300000000000000 ....#................. +6934 18.863416672 127.0.0.1:57415 127.0.0.1:57433 3334969597 12 ffffffffc4380b0000000000 .....8...... +6940 18.964576483 127.0.0.1:57415 127.0.0.1:57433 3334969609 12 1a0000006f630b0000000000 ....oc...... +6942 18.964766502 127.0.0.1:57415 127.0.0.1:57433 3334969621 26 16000000548f6340e25e314001000300000025f61f0000000000 ....T.c@.^1@......%....... +6944 18.965229988 127.0.0.1:57433 127.0.0.1:57415 378331524 12 ffffffff6f630b0000000000 ....oc...... +6946 18.966065884 127.0.0.1:57433 127.0.0.1:57415 378331536 12 16000000c5380b0000000000 .....8...... +6948 18.966262579 127.0.0.1:57433 127.0.0.1:57415 378331548 22 1200000025f61f000000000001000300000000000000 ....%................. +6950 18.966533899 127.0.0.1:57415 127.0.0.1:57433 3334969647 12 ffffffffc5380b0000000000 .....8...... +6953 19.029339552 127.0.0.1:57433 127.0.0.1:57415 378331570 12 feffffffd74a0100e74a0100 .....J...J.. +6962 19.068585157 127.0.0.1:57415 127.0.0.1:57433 3334969659 12 1a00000070630b0000000000 ....pc...... +6964 19.068806410 127.0.0.1:57415 127.0.0.1:57433 3334969671 26 16000000548f6340e25e314001000300000027f61f0000000000 ....T.c@.^1@......'....... +6966 19.069135189 127.0.0.1:57433 127.0.0.1:57415 378331582 12 ffffffff70630b0000000000 ....pc...... +6968 19.069907427 127.0.0.1:57433 127.0.0.1:57415 378331594 12 16000000c6380b0000000000 .....8...... +6970 19.070104361 127.0.0.1:57433 127.0.0.1:57415 378331606 22 1200000027f61f000000000001000300000000000000 ....'................. +6972 19.070391893 127.0.0.1:57415 127.0.0.1:57433 3334969697 12 ffffffffc6380b0000000000 .....8...... +6974 19.104000568 127.0.0.1:57415 127.0.0.1:57433 3334969709 12 feffffffe84a0100d74a0100 .....J...J.. +6981 19.120738268 127.0.0.1:57415 127.0.0.1:57433 3334969721 12 6500000071630b0000000000 e...qc...... +6983 19.120925903 127.0.0.1:57415 127.0.0.1:57433 3334969733 101 1e0000001c2118d0c46f33bb010003000000851e020000000000d40c33c39d01 .....!...o3.................3.....?.....3...|8.. +6985 19.121488333 127.0.0.1:57433 127.0.0.1:57415 378331628 12 ffffffff71630b0000000000 ....qc...... +6987 19.122936487 127.0.0.1:57433 127.0.0.1:57415 378331640 12 34000000c7380b0000000000 4....8...... +6989 19.123089552 127.0.0.1:57433 127.0.0.1:57415 378331652 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +6991 19.123390913 127.0.0.1:57415 127.0.0.1:57433 3334969834 12 ffffffffc7380b0000000000 .....8...... +6993 19.124354839 127.0.0.1:57415 127.0.0.1:57433 3334969846 12 1e00000072630b0000000000 ....rc...... +6995 19.124504089 127.0.0.1:57415 127.0.0.1:57433 3334969858 30 1a00000055ceff62b21b3a5001000300000029f61f000000000000000000 ....U..b..:P......)........... +6997 19.124936342 127.0.0.1:57433 127.0.0.1:57415 378331704 12 ffffffff72630b0000000000 ....rc...... +6999 19.125329971 127.0.0.1:57433 127.0.0.1:57415 378331716 12 1a000000c8380b0000000000 .....8...... +7001 19.125532150 127.0.0.1:57433 127.0.0.1:57415 378331728 26 1600000029f61f00000000000100030000000000000000000000 ....)..................... +7003 19.125842333 127.0.0.1:57415 127.0.0.1:57433 3334969888 12 ffffffffc8380b0000000000 .....8...... +7006 19.173197746 127.0.0.1:57415 127.0.0.1:57433 3334969900 12 1a00000073630b0000000000 ....sc...... +7008 19.173384666 127.0.0.1:57415 127.0.0.1:57433 3334969912 26 16000000548f6340e25e31400100030000002bf61f0000000000 ....T.c@.^1@......+....... +7010 19.173849583 127.0.0.1:57433 127.0.0.1:57415 378331754 12 ffffffff73630b0000000000 ....sc...... +7012 19.174394608 127.0.0.1:57433 127.0.0.1:57415 378331766 12 16000000c9380b0000000000 .....8...... +7014 19.174703121 127.0.0.1:57433 127.0.0.1:57415 378331778 22 120000002bf61f000000000001000300000000000000 ....+................. +7016 19.174978971 127.0.0.1:57415 127.0.0.1:57433 3334969938 12 ffffffffc9380b0000000000 .....8...... +7052 19.276899576 127.0.0.1:57415 127.0.0.1:57433 3334969950 12 1a00000074630b0000000000 ....tc...... +7054 19.277086496 127.0.0.1:57415 127.0.0.1:57433 3334969962 26 16000000548f6340e25e31400100030000002df61f0000000000 ....T.c@.^1@......-....... +7056 19.277465582 127.0.0.1:57433 127.0.0.1:57415 378331800 12 ffffffff74630b0000000000 ....tc...... +7058 19.278093338 127.0.0.1:57433 127.0.0.1:57415 378331812 12 16000000ca380b0000000000 .....8...... +7060 19.278261185 127.0.0.1:57433 127.0.0.1:57415 378331824 22 120000002df61f000000000001000300000000000000 ....-................. +7062 19.278513193 127.0.0.1:57415 127.0.0.1:57433 3334969988 12 ffffffffca380b0000000000 .....8...... +7113 19.380006075 127.0.0.1:57415 127.0.0.1:57433 3334970000 12 1a00000075630b0000000000 ....uc...... +7115 19.380261898 127.0.0.1:57415 127.0.0.1:57433 3334970012 26 16000000548f6340e25e31400100030000002ff61f0000000000 ....T.c@.^1@....../....... +7117 19.380661488 127.0.0.1:57433 127.0.0.1:57415 378331846 12 ffffffff75630b0000000000 ....uc...... +7119 19.381526232 127.0.0.1:57433 127.0.0.1:57415 378331858 12 16000000cb380b0000000000 .....8...... +7121 19.381690979 127.0.0.1:57433 127.0.0.1:57415 378331870 22 120000002ff61f000000000001000300000000000000 ..../................. +7123 19.381970882 127.0.0.1:57415 127.0.0.1:57433 3334970038 12 ffffffffcb380b0000000000 .....8...... +7127 19.425229788 127.0.0.1:57415 127.0.0.1:57433 3334970050 12 6500000076630b0000000000 e...vc...... +7129 19.425484896 127.0.0.1:57415 127.0.0.1:57433 3334970062 101 1e0000001c2118d0c46f33bb010003000000861e020000000000040e33c39d01 .....!...o3.................3.....?.....3...|8.. +7131 19.425848961 127.0.0.1:57433 127.0.0.1:57415 378331892 12 ffffffff76630b0000000000 ....vc...... +7133 19.426730156 127.0.0.1:57433 127.0.0.1:57415 378331904 12 34000000cc380b0000000000 4....8...... +7135 19.426892281 127.0.0.1:57433 127.0.0.1:57415 378331916 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +7137 19.427151680 127.0.0.1:57415 127.0.0.1:57433 3334970163 12 ffffffffcc380b0000000000 .....8...... +7139 19.427937984 127.0.0.1:57415 127.0.0.1:57433 3334970175 12 1e00000077630b0000000000 ....wc...... +7141 19.428125620 127.0.0.1:57415 127.0.0.1:57433 3334970187 30 1a00000055ceff62b21b3a5001000300000031f61f000000000000000000 ....U..b..:P......1........... +7143 19.428460598 127.0.0.1:57433 127.0.0.1:57415 378331968 12 ffffffff77630b0000000000 ....wc...... +7145 19.428829432 127.0.0.1:57433 127.0.0.1:57415 378331980 12 1a000000cd380b0000000000 .....8...... +7147 19.429008722 127.0.0.1:57433 127.0.0.1:57415 378331992 26 1600000031f61f00000000000100030000000000000000000000 ....1..................... +7149 19.429180145 127.0.0.1:57415 127.0.0.1:57433 3334970217 12 ffffffffcd380b0000000000 .....8...... +7153 19.482931376 127.0.0.1:57415 127.0.0.1:57433 3334970229 12 1a00000078630b0000000000 ....xc...... +7155 19.483177185 127.0.0.1:57415 127.0.0.1:57433 3334970241 26 16000000548f6340e25e314001000300000033f61f0000000000 ....T.c@.^1@......3....... +7157 19.483722925 127.0.0.1:57433 127.0.0.1:57415 378332018 12 ffffffff78630b0000000000 ....xc...... +7159 19.484000921 127.0.0.1:57433 127.0.0.1:57415 378332030 12 16000000ce380b0000000000 .....8...... +7161 19.484168053 127.0.0.1:57433 127.0.0.1:57415 378332042 22 1200000033f61f000000000001000300000000000000 ....3................. +7163 19.484414339 127.0.0.1:57415 127.0.0.1:57433 3334970267 12 ffffffffce380b0000000000 .....8...... +7194 19.531141996 127.0.0.1:57433 127.0.0.1:57415 378332064 12 feffffffd84a0100e84a0100 .....J...J.. +7214 19.586124659 127.0.0.1:57415 127.0.0.1:57433 3334970279 12 1a00000079630b0000000000 ....yc...... +7216 19.586360931 127.0.0.1:57415 127.0.0.1:57433 3334970291 26 16000000548f6340e25e314001000300000035f61f0000000000 ....T.c@.^1@......5....... +7218 19.586875677 127.0.0.1:57433 127.0.0.1:57415 378332076 12 ffffffff79630b0000000000 ....yc...... +7220 19.587391376 127.0.0.1:57433 127.0.0.1:57415 378332088 12 16000000cf380b0000000000 .....8...... +7222 19.587543964 127.0.0.1:57433 127.0.0.1:57415 378332100 22 1200000035f61f000000000001000300000000000000 ....5................. +7224 19.587803841 127.0.0.1:57415 127.0.0.1:57433 3334970317 12 ffffffffcf380b0000000000 .....8...... +7226 19.604734421 127.0.0.1:57415 127.0.0.1:57433 3334970329 12 feffffffe94a0100d84a0100 .....J...J.. +7234 19.690107584 127.0.0.1:57415 127.0.0.1:57433 3334970341 12 1a0000007a630b0000000000 ....zc...... +7236 19.690317869 127.0.0.1:57415 127.0.0.1:57433 3334970353 26 16000000548f6340e25e314001000300000037f61f0000000000 ....T.c@.^1@......7....... +7238 19.690752983 127.0.0.1:57433 127.0.0.1:57415 378332122 12 ffffffff7a630b0000000000 ....zc...... +7240 19.691278458 127.0.0.1:57433 127.0.0.1:57415 378332134 12 16000000d0380b0000000000 .....8...... +7242 19.691505194 127.0.0.1:57433 127.0.0.1:57415 378332146 22 1200000037f61f000000000001000300000000000000 ....7................. +7244 19.691795588 127.0.0.1:57415 127.0.0.1:57433 3334970379 12 ffffffffd0380b0000000000 .....8...... +7246 19.729436874 127.0.0.1:57415 127.0.0.1:57433 3334970391 12 220000007b630b0000000000 "...{c...... +7248 19.729622364 127.0.0.1:57415 127.0.0.1:57433 3334970403 34 1e0000001c2118d0c46f33bb010003000000871e020000000000340f33c39d01 .....!...o3...............4.3..... +7250 19.729727983 127.0.0.1:57415 127.0.0.1:57433 3334970437 12 430000007c630b0000000000 C...|c...... +7252 19.729814053 127.0.0.1:57415 127.0.0.1:57433 3334970449 67 3f000000980433cb0cb47c380100030000000100000000871e0200000000003d ?.....3...|8...................=B.....&......... +7253 19.729871035 127.0.0.1:57433 127.0.0.1:57415 378332168 12 ffffffff7b630b0000000000 ....{c...... +7256 19.730092525 127.0.0.1:57433 127.0.0.1:57415 378332180 12 ffffffff7c630b0000000000 ....|c...... +7258 19.731125593 127.0.0.1:57433 127.0.0.1:57415 378332192 12 34000000d1380b0000000000 4....8...... +7260 19.731328011 127.0.0.1:57433 127.0.0.1:57415 378332204 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([................... +7262 19.731662989 127.0.0.1:57415 127.0.0.1:57433 3334970516 12 ffffffffd1380b0000000000 .....8...... +7263 19.732567549 127.0.0.1:57415 127.0.0.1:57433 3334970528 12 1e0000007d630b0000000000 ....}c...... +7265 19.732736588 127.0.0.1:57415 127.0.0.1:57433 3334970540 30 1a00000055ceff62b21b3a5001000300000039f61f000000000000000000 ....U..b..:P......9........... +7267 19.733120680 127.0.0.1:57433 127.0.0.1:57415 378332256 12 ffffffff7d630b0000000000 ....}c...... +7269 19.733457088 127.0.0.1:57433 127.0.0.1:57415 378332268 12 1a000000d2380b0000000000 .....8...... +7271 19.733611107 127.0.0.1:57433 127.0.0.1:57415 378332280 26 1600000039f61f00000000000100030000000000000000000000 ....9..................... +7273 19.733871460 127.0.0.1:57415 127.0.0.1:57433 3334970570 12 ffffffffd2380b0000000000 .....8...... +7278 19.793147564 127.0.0.1:57415 127.0.0.1:57433 3334970582 12 1a0000007e630b0000000000 ....~c...... +7280 19.793329239 127.0.0.1:57415 127.0.0.1:57433 3334970594 26 16000000548f6340e25e31400100030000003bf61f0000000000 ....T.c@.^1@......;....... +7282 19.793809414 127.0.0.1:57433 127.0.0.1:57415 378332306 12 ffffffff7e630b0000000000 ....~c...... +7284 19.794214964 127.0.0.1:57433 127.0.0.1:57415 378332318 12 16000000d3380b0000000000 .....8...... +7286 19.794423103 127.0.0.1:57433 127.0.0.1:57415 378332330 22 120000003bf61f000000000001000300000000000000 ....;................. +7288 19.794692516 127.0.0.1:57415 127.0.0.1:57433 3334970620 12 ffffffffd3380b0000000000 .....8...... +7296 19.895819187 127.0.0.1:57415 127.0.0.1:57433 3334970632 12 1a0000007f630b0000000000 .....c...... +7299 19.896507025 127.0.0.1:57415 127.0.0.1:57433 3334970644 26 16000000548f6340e25e31400100030000003df61f0000000000 ....T.c@.^1@......=....... +7301 19.896816730 127.0.0.1:57433 127.0.0.1:57415 378332352 12 ffffffff7f630b0000000000 .....c...... +7303 19.897217035 127.0.0.1:57433 127.0.0.1:57415 378332364 12 16000000d4380b0000000000 .....8...... +7305 19.897426605 127.0.0.1:57433 127.0.0.1:57415 378332376 22 120000003df61f000000000001000300000000000000 ....=................. +7307 19.897691250 127.0.0.1:57415 127.0.0.1:57433 3334970670 12 ffffffffd4380b0000000000 .....8...... +7311 19.999852419 127.0.0.1:57415 127.0.0.1:57433 3334970682 12 1a00000080630b0000000000 .....c...... +7313 20.000049353 127.0.0.1:57415 127.0.0.1:57433 3334970694 26 16000000548f6340e25e31400100030000003ff61f0000000000 ....T.c@.^1@......?....... +7315 20.000526667 127.0.0.1:57433 127.0.0.1:57415 378332398 12 ffffffff80630b0000000000 .....c...... +7317 20.001073837 127.0.0.1:57433 127.0.0.1:57415 378332410 12 16000000d5380b0000000000 .....8...... +7319 20.001290083 127.0.0.1:57433 127.0.0.1:57415 378332422 22 120000003ff61f000000000001000300000000000000 ....?................. +7321 20.001537085 127.0.0.1:57415 127.0.0.1:57433 3334970720 12 ffffffffd5380b0000000000 .....8...... +7324 20.033024073 127.0.0.1:57433 127.0.0.1:57415 378332444 12 feffffffd94a0100e94a0100 .....J...J.. +7329 20.034883499 127.0.0.1:57415 127.0.0.1:57433 3334970732 12 6500000081630b0000000000 e....c...... +7331 20.035124063 127.0.0.1:57415 127.0.0.1:57433 3334970744 101 1e0000001c2118d0c46f33bb010003000000881e020000000000661033c39d01 .....!...o3...............f.3.....?.....3...|8.. +7333 20.035501003 127.0.0.1:57433 127.0.0.1:57415 378332456 12 ffffffff81630b0000000000 .....c...... +7335 20.036611795 127.0.0.1:57433 127.0.0.1:57415 378332468 12 34000000d6380b0000000000 4....8...... +7337 20.036767006 127.0.0.1:57433 127.0.0.1:57415 378332480 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............M.D. +7339 20.036971331 127.0.0.1:57415 127.0.0.1:57433 3334970845 12 ffffffffd6380b0000000000 .....8...... +7341 20.038043261 127.0.0.1:57415 127.0.0.1:57433 3334970857 12 1e00000082630b0000000000 .....c...... +7345 20.038289309 127.0.0.1:57415 127.0.0.1:57433 3334970869 30 1a00000055ceff62b21b3a5001000300000041f61f000000000000000000 ....U..b..:P......A........... +7347 20.038431883 127.0.0.1:57433 127.0.0.1:57415 378332532 12 ffffffff82630b0000000000 .....c...... +7349 20.038852453 127.0.0.1:57433 127.0.0.1:57415 378332544 12 1a000000d7380b0000000000 .....8...... +7351 20.039003134 127.0.0.1:57433 127.0.0.1:57415 378332556 26 1600000041f61f00000000000100030000000000000000000000 ....A..................... +7353 20.039227247 127.0.0.1:57415 127.0.0.1:57433 3334970899 12 ffffffffd7380b0000000000 .....8...... +7355 20.103000879 127.0.0.1:57415 127.0.0.1:57433 3334970911 12 1a00000083630b0000000000 .....c...... +7357 20.103226662 127.0.0.1:57415 127.0.0.1:57433 3334970923 26 16000000548f6340e25e314001000300000043f61f0000000000 ....T.c@.^1@......C....... +7359 20.103565931 127.0.0.1:57433 127.0.0.1:57415 378332582 12 ffffffff83630b0000000000 .....c...... +7361 20.103951216 127.0.0.1:57433 127.0.0.1:57415 378332594 12 16000000d8380b0000000000 .....8...... +7363 20.104110956 127.0.0.1:57433 127.0.0.1:57415 378332606 22 1200000043f61f000000000001000300000000000000 ....C................. +7365 20.104393482 127.0.0.1:57415 127.0.0.1:57433 3334970949 12 ffffffffd8380b0000000000 .....8...... +7367 20.106487513 127.0.0.1:57415 127.0.0.1:57433 3334970961 12 feffffffea4a0100d94a0100 .....J...J.. +7376 20.207110167 127.0.0.1:57415 127.0.0.1:57433 3334970973 12 1a00000084630b0000000000 .....c...... +7378 20.207437992 127.0.0.1:57415 127.0.0.1:57433 3334970985 26 16000000548f6340e25e314001000300000045f61f0000000000 ....T.c@.^1@......E....... +7380 20.207875013 127.0.0.1:57433 127.0.0.1:57415 378332628 12 ffffffff84630b0000000000 .....c...... +7384 20.208239079 127.0.0.1:57433 127.0.0.1:57415 378332640 12 16000000d9380b0000000000 .....8...... +7386 20.208416939 127.0.0.1:57433 127.0.0.1:57415 378332652 22 1200000045f61f000000000001000300000000000000 ....E................. +7388 20.208651304 127.0.0.1:57415 127.0.0.1:57433 3334971011 12 ffffffffd9380b0000000000 .....8...... +7427 20.310752630 127.0.0.1:57415 127.0.0.1:57433 3334971023 12 1a00000085630b0000000000 .....c...... +7429 20.310948372 127.0.0.1:57415 127.0.0.1:57433 3334971035 26 16000000548f6340e25e314001000300000047f61f0000000000 ....T.c@.^1@......G....... +7431 20.311362267 127.0.0.1:57433 127.0.0.1:57415 378332674 12 ffffffff85630b0000000000 .....c...... +7433 20.311874390 127.0.0.1:57433 127.0.0.1:57415 378332686 12 16000000da380b0000000000 .....8...... +7435 20.312067270 127.0.0.1:57433 127.0.0.1:57415 378332698 22 1200000047f61f000000000001000300000000000000 ....G................. +7437 20.312334061 127.0.0.1:57415 127.0.0.1:57433 3334971061 12 ffffffffda380b0000000000 .....8...... +7439 20.340163946 127.0.0.1:57415 127.0.0.1:57433 3334971073 12 6500000086630b0000000000 e....c...... +7441 20.340385437 127.0.0.1:57415 127.0.0.1:57433 3334971085 101 1e0000001c2118d0c46f33bb010003000000891e020000000000971133c39d01 .....!...o3.................3.....?.....3...|8.. +7443 20.340676785 127.0.0.1:57433 127.0.0.1:57415 378332720 12 ffffffff86630b0000000000 .....c...... +7445 20.342156887 127.0.0.1:57433 127.0.0.1:57415 378332732 12 34000000db380b0000000000 4....8...... +7447 20.342353582 127.0.0.1:57433 127.0.0.1:57415 378332744 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([...............R.r. +565 0.000000000 ::1:61256 ::1:49704 2651791114 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +567 0.000726938 ::1:49704 ::1:61256 3041252943 84 05000c03100000005400000002000000d016d016bbb900000600343937303400 ........T.................49704..........]...... +569 0.000884771 ::1:61256 ::1:49704 2651791230 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +571 0.001120806 ::1:49704 ::1:61256 3041253027 44 05000203100000002c000000020000001400000000000000000000001ebc5152 ........,.....................QR[.XL..<..U.? +573 0.001332760 ::1:61256 ::1:49704 2651791270 72 05000e03100000004800000003000000d016d016bbb900000100000001000100 ........H.......................K....k.F.@.`..Q. +575 0.001504183 ::1:49704 ::1:61256 3041253071 56 05000f03100000003800000003000000d016d016bbb900000000000001000000 ........8............................].......... +577 0.001645565 ::1:61256 ::1:49704 2651791342 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K..........QR +579 0.003812313 ::1:49704 ::1:61256 3041253127 28 05000203100000001c00000003000000040000000100000001000000 ............................ +581 0.004002571 ::1:61256 ::1:49704 2651791438 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........QR +583 0.004501104 ::1:49704 ::1:61256 3041253155 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +585 0.004761219 ::1:61256 ::1:49704 2651791498 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........QR +587 0.004955053 ::1:49704 ::1:61256 3041253247 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +589 0.005110025 ::1:61256 ::1:49704 2651791618 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........QR +591 0.005281210 ::1:49704 ::1:61256 3041253279 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +593 0.005432129 ::1:61256 ::1:49704 2651791742 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K..........QR +595 0.005668402 ::1:49704 ::1:61256 3041253311 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +597 0.005851030 ::1:61256 ::1:49704 2651791860 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........QR +599 0.006019354 ::1:49704 ::1:61256 3041253343 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +601 0.006183863 ::1:61256 ::1:49704 2651791980 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........QR +603 0.006354094 ::1:49704 ::1:61256 3041253375 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +605 0.006595850 ::1:61256 ::1:49704 2651792110 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........QR +607 0.006797075 ::1:49704 ::1:61256 3041253407 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +609 0.006994963 ::1:61256 ::1:49704 2651792240 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........QR +611 0.007165909 ::1:49704 ::1:61256 3041253439 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +613 0.007318020 ::1:61256 ::1:49704 2651792382 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K..........QR +615 0.007511139 ::1:49704 ::1:61256 3041253471 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +617 0.007654667 ::1:61256 ::1:49704 2651792498 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........QR +619 0.007821083 ::1:49704 ::1:61256 3041253503 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +621 0.007968903 ::1:61256 ::1:49704 2651792628 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........QR +623 0.008133173 ::1:49704 ::1:61256 3041253535 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +625 0.008275747 ::1:61256 ::1:49704 2651792756 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K..........QR +627 0.008441210 ::1:49704 ::1:61256 3041253567 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +629 0.009085655 ::1:61256 ::1:49704 2651792882 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........QR +631 0.009258509 ::1:49704 ::1:61256 3041253599 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +633 0.009460211 ::1:61256 ::1:49704 2651793014 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........QR +635 0.009667635 ::1:49704 ::1:61256 3041253631 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +679 0.120378494 ::1:61256 ::1:49704 2651793166 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +683 0.120637894 ::1:49704 ::1:61256 3041253663 44 05000203100000002c00000012000000140000000000000000000000b58b609a ........,.....................`....@..Q....X +689 0.121413469 ::1:61256 ::1:49704 2651793206 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K..........`. +691 0.123366833 ::1:49704 ::1:61256 3041253707 28 05000203100000001c00000013000000040000000100000001000000 ............................ +693 0.123549938 ::1:61256 ::1:49704 2651793314 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........`. +695 0.123757839 ::1:49704 ::1:61256 3041253735 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +697 0.124066591 ::1:61256 ::1:49704 2651793374 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........`. +699 0.124285698 ::1:49704 ::1:61256 3041253827 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +701 0.124526739 ::1:61256 ::1:49704 2651793506 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K..........`. +703 0.124690294 ::1:49704 ::1:61256 3041253859 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +705 0.124834538 ::1:61256 ::1:49704 2651793642 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........`. +707 0.125012398 ::1:49704 ::1:61256 3041253891 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +709 0.125178576 ::1:61256 ::1:49704 2651793772 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........`. +711 0.125334263 ::1:49704 ::1:61256 3041253923 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +713 0.125478029 ::1:61256 ::1:49704 2651793904 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........`. +715 0.125632763 ::1:49704 ::1:61256 3041253955 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +717 0.125794649 ::1:61256 ::1:49704 2651794046 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........`. +719 0.125977993 ::1:49704 ::1:61256 3041253987 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +721 0.126111746 ::1:61256 ::1:49704 2651794188 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K..........`. +723 0.126266956 ::1:49704 ::1:61256 3041254019 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +725 0.126357317 ::1:61256 ::1:49704 2651794342 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........`. +727 0.126511097 ::1:49704 ::1:61256 3041254051 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +729 0.126650810 ::1:61256 ::1:49704 2651794470 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........`. +731 0.126801014 ::1:49704 ::1:61256 3041254083 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +733 0.126967669 ::1:61256 ::1:49704 2651794612 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K..........`. +735 0.127115250 ::1:49704 ::1:61256 3041254115 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +737 0.127259016 ::1:61256 ::1:49704 2651794752 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K..........`. +739 0.127413273 ::1:49704 ::1:61256 3041254147 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +751 0.144445419 ::1:61256 ::1:49704 2651794890 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +753 0.144681215 ::1:49704 ::1:61256 3041254179 44 05000203100000002c00000020000000140000000000000000000000d62411e2 ........,... ................$..50.L.}..W.[. +755 0.144902229 ::1:61256 ::1:49704 2651794930 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K.........$.. +757 0.146398067 ::1:49704 ::1:61256 3041254223 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +759 0.146692038 ::1:61256 ::1:49704 2651795034 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K.........$.. +761 0.146957397 ::1:49704 ::1:61256 3041254251 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +763 0.147294521 ::1:61256 ::1:49704 2651795094 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K.........$.. +765 0.147560596 ::1:49704 ::1:61256 3041254343 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +767 0.147826195 ::1:61256 ::1:49704 2651795222 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K.........$.. +769 0.148508787 ::1:49704 ::1:61256 3041254375 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +771 0.148788929 ::1:61256 ::1:49704 2651795354 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K.........$.. +773 0.148997307 ::1:49704 ::1:61256 3041254407 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +775 0.149242401 ::1:61256 ::1:49704 2651795480 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K.........$.. +777 0.149459600 ::1:49704 ::1:61256 3041254439 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +779 0.149730206 ::1:61256 ::1:49704 2651795608 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K.........$.. +781 0.149935246 ::1:49704 ::1:61256 3041254471 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +783 0.150169849 ::1:61256 ::1:49704 2651795746 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K.........$.. +785 0.150362015 ::1:49704 ::1:61256 3041254503 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +787 0.150576115 ::1:61256 ::1:49704 2651795884 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K.........$.. +789 0.150813103 ::1:49704 ::1:61256 3041254535 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +791 0.151046038 ::1:61256 ::1:49704 2651796034 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K.........$.. +793 0.151233673 ::1:49704 ::1:61256 3041254567 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +795 0.151458025 ::1:61256 ::1:49704 2651796158 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K.........$.. +797 0.151681423 ::1:49704 ::1:61256 3041254599 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +799 0.152000904 ::1:61256 ::1:49704 2651796296 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K.........$.. +801 0.152354479 ::1:49704 ::1:61256 3041254631 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +803 0.152590513 ::1:61256 ::1:49704 2651796432 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K.........$.. +805 0.152994871 ::1:49704 ::1:61256 3041254663 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +807 0.153339624 ::1:61256 ::1:49704 2651796566 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........$.. +809 0.153558493 ::1:49704 ::1:61256 3041254695 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +811 0.153850079 ::1:61256 ::1:49704 2651796706 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K.........$.. +813 0.154039860 ::1:49704 ::1:61256 3041254727 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +843 0.284383535 ::1:61256 ::1:49704 2651796852 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +845 0.284669876 ::1:49704 ::1:61256 3041254759 44 05000203100000002c00000030000000140000000000000000000000e7a5e608 ........,...0......................M..l1?... +847 0.285032511 ::1:61256 ::1:49704 2651796892 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K............ +849 0.287084103 ::1:49704 ::1:61256 3041254803 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +851 0.287302494 ::1:61256 ::1:49704 2651797004 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K............ +853 0.287497520 ::1:49704 ::1:61256 3041254831 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +855 0.287805557 ::1:61256 ::1:49704 2651797064 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K............ +857 0.288273811 ::1:49704 ::1:61256 3041254923 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +859 0.288471222 ::1:61256 ::1:49704 2651797200 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K............ +861 0.288659334 ::1:49704 ::1:61256 3041254955 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +863 0.288836241 ::1:61256 ::1:49704 2651797340 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K............ +865 0.289134502 ::1:49704 ::1:61256 3041254987 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +867 0.289371252 ::1:61256 ::1:49704 2651797474 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K............ +869 0.289605379 ::1:49704 ::1:61256 3041255019 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +871 0.289811611 ::1:61256 ::1:49704 2651797610 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K............ +873 0.290082693 ::1:49704 ::1:61256 3041255051 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +875 0.290342569 ::1:61256 ::1:49704 2651797756 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K............ +877 0.290788412 ::1:49704 ::1:61256 3041255083 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +879 0.290965319 ::1:61256 ::1:49704 2651797902 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K............ +881 0.291219473 ::1:49704 ::1:61256 3041255115 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +882 0.291387081 ::1:61256 ::1:49704 2651798060 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K............ +884 0.291943312 ::1:49704 ::1:61256 3041255147 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +886 0.292077303 ::1:61256 ::1:49704 2651798192 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K............ +888 0.292276144 ::1:49704 ::1:61256 3041255179 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +890 0.292427778 ::1:61256 ::1:49704 2651798338 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K............ +892 0.292645216 ::1:49704 ::1:61256 3041255211 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +894 0.292812586 ::1:61256 ::1:49704 2651798482 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K............ +896 0.293005705 ::1:49704 ::1:61256 3041255243 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +898 0.293245077 ::1:61256 ::1:49704 2651798624 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K............ +900 0.293799400 ::1:49704 ::1:61256 3041255275 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +902 0.294068098 ::1:61256 ::1:49704 2651798772 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K............ +904 0.294395447 ::1:49704 ::1:61256 3041255307 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +954 0.428999901 ::1:61256 ::1:49704 2651798926 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +956 0.429288864 ::1:49704 ::1:61256 3041255339 44 05000203100000002c00000040000000140000000000000000000000be51d56a ........,...@................Q.j..0O...Z..c. +958 0.429490328 ::1:61256 ::1:49704 2651798966 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K.........Q.j +960 0.431252003 ::1:49704 ::1:61256 3041255383 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +962 0.431426048 ::1:61256 ::1:49704 2651799058 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K.........Q.j +964 0.431617498 ::1:49704 ::1:61256 3041255411 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +966 0.431902647 ::1:61256 ::1:49704 2651799118 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K.........Q.j +968 0.432130098 ::1:49704 ::1:61256 3041255503 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +970 0.432322264 ::1:61256 ::1:49704 2651799234 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K.........Q.j +972 0.432528734 ::1:49704 ::1:61256 3041255535 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +974 0.432681084 ::1:61256 ::1:49704 2651799354 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K.........Q.j +976 0.432861090 ::1:49704 ::1:61256 3041255567 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +978 0.433010101 ::1:61256 ::1:49704 2651799468 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K.........Q.j +980 0.433215857 ::1:49704 ::1:61256 3041255599 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +982 0.433358908 ::1:61256 ::1:49704 2651799584 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K.........Q.j +984 0.433554888 ::1:49704 ::1:61256 3041255631 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +986 0.433705568 ::1:61256 ::1:49704 2651799710 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K.........Q.j +988 0.433882236 ::1:49704 ::1:61256 3041255663 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +990 0.434028387 ::1:61256 ::1:49704 2651799836 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K.........Q.j +992 0.434228659 ::1:49704 ::1:61256 3041255695 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +994 0.434396505 ::1:61256 ::1:49704 2651799974 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K.........Q.j +996 0.434572220 ::1:49704 ::1:61256 3041255727 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +998 0.434725523 ::1:61256 ::1:49704 2651800086 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K.........Q.j +1000 0.434902668 ::1:49704 ::1:61256 3041255759 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1002 0.435049772 ::1:61256 ::1:49704 2651800212 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K.........Q.j +1004 0.435277462 ::1:49704 ::1:61256 3041255791 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1006 0.435422897 ::1:61256 ::1:49704 2651800336 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K.........Q.j +1008 0.435599566 ::1:49704 ::1:61256 3041255823 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1010 0.435833693 ::1:61256 ::1:49704 2651800458 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K.........Q.j +1012 0.436016083 ::1:49704 ::1:61256 3041255855 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1014 0.436203241 ::1:61256 ::1:49704 2651800586 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K.........Q.j +1016 0.436427355 ::1:49704 ::1:61256 3041255887 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1018 0.436598063 ::1:61256 ::1:49704 2651800720 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K.........Q.j +1020 0.436777592 ::1:49704 ::1:61256 3041255919 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1022 0.436948299 ::1:61256 ::1:49704 2651800850 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K.........Q.j +1024 0.437151432 ::1:49704 ::1:61256 3041255951 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +2914 6.786099195 ::1:61256 ::1:49704 2651800978 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +2916 6.786394119 ::1:49704 ::1:61256 3041255983 44 05000203100000002c000000520000001400000000000000000000005dec346d ........,...R...............].4mY..L....?.<. +2918 6.786607027 ::1:61256 ::1:49704 2651801018 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K........].4m +2932 6.788447380 ::1:49704 ::1:61256 3041256027 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +2934 6.788618088 ::1:61256 ::1:49704 2651801118 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K........].4m +2936 6.788797617 ::1:49704 ::1:61256 3041256055 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +2938 6.789109230 ::1:61256 ::1:49704 2651801178 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K........].4m +2940 6.789325714 ::1:49704 ::1:61256 3041256147 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +2942 6.789492369 ::1:61256 ::1:49704 2651801302 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K........].4m +2944 6.789697409 ::1:49704 ::1:61256 3041256179 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +2946 6.789859295 ::1:61256 ::1:49704 2651801430 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K........].4m +2948 6.790057421 ::1:49704 ::1:61256 3041256211 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +2950 6.790225029 ::1:61256 ::1:49704 2651801552 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K........].4m +2952 6.790400028 ::1:49704 ::1:61256 3041256243 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +2954 6.790555239 ::1:61256 ::1:49704 2651801676 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K........].4m +2956 6.790722847 ::1:49704 ::1:61256 3041256275 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +2958 6.790877104 ::1:61256 ::1:49704 2651801810 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K........].4m +2960 6.791070461 ::1:49704 ::1:61256 3041256307 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +2962 6.791278839 ::1:61256 ::1:49704 2651801944 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K........].4m +2964 6.791506767 ::1:49704 ::1:61256 3041256339 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +2966 6.791695833 ::1:61256 ::1:49704 2651802090 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K........].4m +2968 6.791870117 ::1:49704 ::1:61256 3041256371 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +2970 6.792047501 ::1:61256 ::1:49704 2651802210 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K........].4m +2972 6.792215109 ::1:49704 ::1:61256 3041256403 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +2974 6.792372942 ::1:61256 ::1:49704 2651802344 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K........].4m +2976 6.792539835 ::1:49704 ::1:61256 3041256435 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +2978 6.792694330 ::1:61256 ::1:49704 2651802476 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K........].4m +2980 6.792859793 ::1:49704 ::1:61256 3041256467 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +2982 6.793083906 ::1:61256 ::1:49704 2651802606 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K........].4m +2984 6.793249846 ::1:49704 ::1:61256 3041256499 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +2986 6.793415546 ::1:61256 ::1:49704 2651802750 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K........].4m +2988 6.793584824 ::1:49704 ::1:61256 3041256531 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +2990 6.793752909 ::1:61256 ::1:49704 2651802898 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K........].4m +2992 6.793922663 ::1:49704 ::1:61256 3041256563 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +2994 6.794174194 ::1:61256 ::1:49704 2651803044 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K........].4m +2996 6.794348717 ::1:49704 ::1:61256 3041256595 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3033 6.870680809 ::1:61256 ::1:49704 2651803202 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3035 6.870963335 ::1:49704 ::1:61256 3041256627 44 05000203100000002c00000064000000140000000000000000000000d1163f06 ........,...d.................?....E...N...v +3037 6.871165037 ::1:61256 ::1:49704 2651803242 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........?. +3039 6.872943878 ::1:49704 ::1:61256 3041256671 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3041 6.873159885 ::1:61256 ::1:49704 2651803326 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........?. +3043 6.873429537 ::1:49704 ::1:61256 3041256699 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3045 6.873681784 ::1:61256 ::1:49704 2651803386 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........?. +3047 6.873875141 ::1:49704 ::1:61256 3041256791 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3049 6.874048948 ::1:61256 ::1:49704 2651803494 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........?. +3051 6.874228001 ::1:49704 ::1:61256 3041256823 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3053 6.874384403 ::1:61256 ::1:49704 2651803606 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........?. +3055 6.874550104 ::1:49704 ::1:61256 3041256855 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3057 6.874704123 ::1:61256 ::1:49704 2651803712 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........?. +3059 6.874868393 ::1:49704 ::1:61256 3041256887 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3061 6.875021935 ::1:61256 ::1:49704 2651803820 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........?. +3063 6.875210524 ::1:49704 ::1:61256 3041256919 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3065 6.875364065 ::1:61256 ::1:49704 2651803938 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........?. +3067 6.875531197 ::1:49704 ::1:61256 3041256951 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3069 6.875686169 ::1:61256 ::1:49704 2651804056 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........?. +3071 6.875889063 ::1:49704 ::1:61256 3041256983 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3073 6.876073837 ::1:61256 ::1:49704 2651804186 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........?. +3075 6.876238823 ::1:49704 ::1:61256 3041257015 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3077 6.876393557 ::1:61256 ::1:49704 2651804290 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........?. +3079 6.876557589 ::1:49704 ::1:61256 3041257047 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3081 6.876747608 ::1:61256 ::1:49704 2651804408 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........?. +3083 6.876918316 ::1:49704 ::1:61256 3041257079 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3085 6.877097845 ::1:61256 ::1:49704 2651804524 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........?. +3087 6.877264261 ::1:49704 ::1:61256 3041257111 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3089 6.877833128 ::1:61256 ::1:49704 2651804638 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........?. +3091 6.878005028 ::1:49704 ::1:61256 3041257143 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3093 6.878251791 ::1:61256 ::1:49704 2651804766 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........?. +3095 6.878418207 ::1:49704 ::1:61256 3041257175 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3097 6.878617048 ::1:61256 ::1:49704 2651804886 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........?. +3099 6.878785610 ::1:49704 ::1:61256 3041257207 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3101 6.878978968 ::1:61256 ::1:49704 2651805006 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........?. +3103 6.879172802 ::1:49704 ::1:61256 3041257239 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3105 6.879365206 ::1:61256 ::1:49704 2651805128 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........?. +3107 6.879532814 ::1:49704 ::1:61256 3041257271 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3109 6.879753590 ::1:61256 ::1:49704 2651805262 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........?. +3111 6.879919529 ::1:49704 ::1:61256 3041257303 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3113 6.880112171 ::1:61256 ::1:49704 2651805394 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........?. +3115 6.880327463 ::1:49704 ::1:61256 3041257335 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3117 6.880531073 ::1:61256 ::1:49704 2651805524 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........?. +3119 6.880695581 ::1:49704 ::1:61256 3041257367 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3121 6.880889177 ::1:61256 ::1:49704 2651805662 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........?. +3123 6.881053925 ::1:49704 ::1:61256 3041257399 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3125 6.881324530 ::1:61256 ::1:49704 2651805806 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........?. +3127 6.881490469 ::1:49704 ::1:61256 3041257431 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3129 6.881733418 ::1:61256 ::1:49704 2651805950 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........?. +3131 6.881900787 ::1:49704 ::1:61256 3041257463 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3133 6.882105589 ::1:61256 ::1:49704 2651806066 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........?. +3135 6.882298708 ::1:49704 ::1:61256 3041257495 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3137 6.882493496 ::1:61256 ::1:49704 2651806196 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........?. +3139 6.882662535 ::1:49704 ::1:61256 3041257527 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3141 6.882853746 ::1:61256 ::1:49704 2651806334 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........?. +3143 6.883018732 ::1:49704 ::1:61256 3041257559 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3145 6.883232355 ::1:61256 ::1:49704 2651806464 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........?. +3147 6.883414745 ::1:49704 ::1:61256 3041257591 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3149 6.883608580 ::1:61256 ::1:49704 2651806586 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........?. +3151 6.883772135 ::1:49704 ::1:61256 3041257623 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3153 6.883962870 ::1:61256 ::1:49704 2651806708 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........?. +3155 6.884154320 ::1:49704 ::1:61256 3041257655 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3157 6.884365797 ::1:61256 ::1:49704 2651806842 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........?. +3159 6.884531498 ::1:49704 ::1:61256 3041257687 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3161 6.884724140 ::1:61256 ::1:49704 2651806970 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........?. +3163 6.884888649 ::1:49704 ::1:61256 3041257719 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3181 6.921769619 ::1:61256 ::1:49704 2651807094 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........?. +3183 6.922303677 ::1:49704 ::1:61256 3041257751 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3192 6.960847616 ::1:61256 ::1:49704 2651807610 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3194 6.961137772 ::1:49704 ::1:61256 3041257779 44 05000203100000002c0000008600000014000000000000000000000005406992 ........,....................@i.}..N.k%.BHm? +3196 6.961427927 ::1:61256 ::1:49704 2651807650 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K.........@i. +3198 6.963489532 ::1:49704 ::1:61256 3041257823 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3200 6.963656425 ::1:61256 ::1:49704 2651807762 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........@i. +3202 6.963832378 ::1:49704 ::1:61256 3041257851 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3204 6.964072943 ::1:61256 ::1:49704 2651807822 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........@i. +3206 6.964323997 ::1:49704 ::1:61256 3041257943 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3208 6.964483023 ::1:61256 ::1:49704 2651807958 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........@i. +3210 6.964649200 ::1:49704 ::1:61256 3041257975 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3212 6.964802980 ::1:61256 ::1:49704 2651808098 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K.........@i. +3214 6.964962959 ::1:49704 ::1:61256 3041258007 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3216 6.965215445 ::1:61256 ::1:49704 2651808232 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........@i. +3218 6.965514183 ::1:49704 ::1:61256 3041258039 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3220 6.965731859 ::1:61256 ::1:49704 2651808368 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........@i. +3222 6.965923786 ::1:49704 ::1:61256 3041258071 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3224 6.966159105 ::1:61256 ::1:49704 2651808514 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........@i. +3226 6.966336966 ::1:49704 ::1:61256 3041258103 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3228 6.966531754 ::1:61256 ::1:49704 2651808660 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K.........@i. +3230 6.966704845 ::1:49704 ::1:61256 3041258135 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3232 6.966904402 ::1:61256 ::1:49704 2651808818 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........@i. +3234 6.967111588 ::1:49704 ::1:61256 3041258167 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3236 6.967247725 ::1:61256 ::1:49704 2651808950 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........@i. +3238 6.967427015 ::1:49704 ::1:61256 3041258199 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3240 6.967686415 ::1:61256 ::1:49704 2651809096 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K.........@i. +3242 6.967859268 ::1:49704 ::1:61256 3041258231 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3244 6.968018532 ::1:61256 ::1:49704 2651809240 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........@i. +3246 6.968183994 ::1:49704 ::1:61256 3041258263 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3248 6.968506336 ::1:61256 ::1:49704 2651809382 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K.........@i. +3250 6.968684196 ::1:49704 ::1:61256 3041258295 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3252 6.968852043 ::1:61256 ::1:49704 2651809542 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K.........@i. +3254 6.969009399 ::1:49704 ::1:61256 3041258327 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3256 6.969213009 ::1:61256 ::1:49704 2651809698 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........@i. +3258 6.969372988 ::1:49704 ::1:61256 3041258359 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3260 6.969532728 ::1:61256 ::1:49704 2651809852 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K.........@i. +3262 6.969691753 ::1:49704 ::1:61256 3041258391 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3264 6.969849110 ::1:61256 ::1:49704 2651809998 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........@i. +3266 6.970005512 ::1:49704 ::1:61256 3041258423 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3268 6.970188141 ::1:61256 ::1:49704 2651810152 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K.........@i. +3270 6.970342636 ::1:49704 ::1:61256 3041258455 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3272 6.970500708 ::1:61256 ::1:49704 2651810302 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........@i. +3274 6.970657110 ::1:49704 ::1:61256 3041258487 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3276 6.970819712 ::1:61256 ::1:49704 2651810454 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........@i. +3278 6.970978975 ::1:49704 ::1:61256 3041258519 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3280 6.971165657 ::1:61256 ::1:49704 2651810594 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........@i. +3282 6.971326113 ::1:49704 ::1:61256 3041258551 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3284 6.971490145 ::1:61256 ::1:49704 2651810742 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K.........@i. +3286 6.971653223 ::1:49704 ::1:61256 3041258583 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3288 6.971818209 ::1:61256 ::1:49704 2651810904 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K.........@i. +3290 6.971981525 ::1:49704 ::1:61256 3041258615 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3292 6.972168684 ::1:61256 ::1:49704 2651811076 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K.........@i. +3294 6.972328901 ::1:49704 ::1:61256 3041258647 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3300 6.980344057 ::1:61256 ::1:49704 2651811220 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3302 6.980560303 ::1:49704 ::1:61256 3041258679 44 05000203100000002c000000a00000001400000000000000000000004ee1f452 ........,...................N..R.?HE....._.x +3304 6.980770350 ::1:61256 ::1:49704 2651811260 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........N..R +3306 6.982509613 ::1:49704 ::1:61256 3041258723 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3308 6.982752562 ::1:61256 ::1:49704 2651811388 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........N..R +3310 6.982954979 ::1:49704 ::1:61256 3041258751 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3312 6.983246088 ::1:61256 ::1:49704 2651811448 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........N..R +3314 6.983455896 ::1:49704 ::1:61256 3041258843 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3316 6.983643770 ::1:61256 ::1:49704 2651811600 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........N..R +3318 6.983832359 ::1:49704 ::1:61256 3041258875 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3320 6.984000921 ::1:61256 ::1:49704 2651811756 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........N..R +3322 6.984199762 ::1:49704 ::1:61256 3041258907 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3324 6.984356403 ::1:61256 ::1:49704 2651811906 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........N..R +3326 6.984458923 ::1:49704 ::1:61256 3041258939 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3328 6.984622478 ::1:61256 ::1:49704 2651812058 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........N..R +3330 6.984812498 ::1:49704 ::1:61256 3041258971 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3332 6.984989166 ::1:61256 ::1:49704 2651812220 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........N..R +3334 6.985163689 ::1:49704 ::1:61256 3041259003 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3336 6.985322714 ::1:61256 ::1:49704 2651812382 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........N..R +3338 6.985490799 ::1:49704 ::1:61256 3041259035 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3340 6.985649586 ::1:61256 ::1:49704 2651812556 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........N..R +3342 6.985838413 ::1:49704 ::1:61256 3041259067 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3344 6.985995770 ::1:61256 ::1:49704 2651812704 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........N..R +3346 6.986167192 ::1:49704 ::1:61256 3041259099 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3348 6.986341000 ::1:61256 ::1:49704 2651812866 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........N..R +3350 6.986543655 ::1:49704 ::1:61256 3041259131 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3352 6.986719608 ::1:61256 ::1:49704 2651813026 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........N..R +3354 6.986943960 ::1:49704 ::1:61256 3041259163 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3356 6.987315655 ::1:61256 ::1:49704 2651813184 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........N..R +3358 6.987545013 ::1:49704 ::1:61256 3041259195 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3360 6.987796307 ::1:61256 ::1:49704 2651813354 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........N..R +3362 6.988046408 ::1:49704 ::1:61256 3041259227 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3378 6.994602680 ::1:61256 ::1:49704 2651813536 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3381 6.994834661 ::1:49704 ::1:61256 3041259259 44 05000203100000002c000000b0000000140000000000000000000000e7d5a101 ........,........................WUA..Y..f|. +3384 6.995021105 ::1:61256 ::1:49704 2651813576 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +3386 6.996909380 ::1:49704 ::1:61256 3041259303 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3388 6.997190714 ::1:61256 ::1:49704 2651813672 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +3390 6.997374296 ::1:49704 ::1:61256 3041259331 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3392 6.997608900 ::1:61256 ::1:49704 2651813732 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +3394 6.997792721 ::1:49704 ::1:61256 3041259423 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3396 6.997953415 ::1:61256 ::1:49704 2651813852 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +3398 6.998124361 ::1:49704 ::1:61256 3041259455 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3400 6.998312950 ::1:61256 ::1:49704 2651813976 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +3402 6.998482943 ::1:49704 ::1:61256 3041259487 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3404 6.998642445 ::1:61256 ::1:49704 2651814094 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +3406 6.998841524 ::1:49704 ::1:61256 3041259519 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3408 6.999012709 ::1:61256 ::1:49704 2651814214 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3410 6.999207020 ::1:49704 ::1:61256 3041259551 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3412 6.999374866 ::1:61256 ::1:49704 2651814344 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3414 6.999542713 ::1:49704 ::1:61256 3041259583 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3416 6.999701262 ::1:61256 ::1:49704 2651814474 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +3418 6.999864101 ::1:49704 ::1:61256 3041259615 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3420 7.000021219 ::1:61256 ::1:49704 2651814616 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +3422 7.000253439 ::1:49704 ::1:61256 3041259647 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +3424 7.000417948 ::1:61256 ::1:49704 2651814732 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3426 7.000605106 ::1:49704 ::1:61256 3041259679 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +3428 7.000799656 ::1:61256 ::1:49704 2651814862 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +3430 7.000975609 ::1:49704 ::1:61256 3041259711 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +3432 7.001186609 ::1:61256 ::1:49704 2651814990 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +3434 7.001371145 ::1:49704 ::1:61256 3041259743 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +3436 7.001573086 ::1:61256 ::1:49704 2651815116 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +3438 7.001892090 ::1:49704 ::1:61256 3041259775 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +3440 7.002064466 ::1:61256 ::1:49704 2651815242 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +3442 7.002268791 ::1:49704 ::1:61256 3041259807 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +3444 7.002475262 ::1:61256 ::1:49704 2651815374 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +3446 7.002637625 ::1:49704 ::1:61256 3041259839 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +3448 7.002877712 ::1:61256 ::1:49704 2651815504 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +3450 7.003047705 ::1:49704 ::1:61256 3041259871 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +3452 7.003212452 ::1:61256 ::1:49704 2651815642 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +3454 7.003405809 ::1:49704 ::1:61256 3041259903 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +3456 7.003569365 ::1:61256 ::1:49704 2651815778 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +3458 7.003736496 ::1:49704 ::1:61256 3041259935 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +3460 7.003901005 ::1:61256 ::1:49704 2651815910 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +3462 7.004063606 ::1:49704 ::1:61256 3041259967 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +3464 7.004226685 ::1:61256 ::1:49704 2651816052 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K............ +3466 7.004417419 ::1:49704 ::1:61256 3041259999 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +3468 7.043212652 ::1:61256 ::1:49704 2651816200 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........?. +3470 7.043554544 ::1:49704 ::1:61256 3041260031 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +3496 7.117722750 ::1:61256 ::1:49704 2651816490 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........?. +3498 7.118021488 ::1:49704 ::1:61256 3041260059 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +6305 0.000000000 fe80::3608:256c:365:cc73:61308 fe80::3608:256c:365:cc73:55555 554360935 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +6370 0.074829578 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61308 4011966442 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +1584 0.000000000 fe80::3608:256c:365:cc73:61260 fe80::3608:256c:365:cc73:55555 3932163599 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +1611 0.074858665 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61260 3577125791 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +26 0.000000000 fe80::3608:256c:365:cc73:61252 fe80::3608:256c:365:cc73:55555 3645455460 77 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +168 0.419585228 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:61252 7375058 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +172 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149123040 1284 17030304ff0000000000000699310e737ccf28bc16b59ad4abc8e47b87db659a .............1.s|.(........{..e....H..J.Z9..=..6 +174 0.005350113 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088340462 54 1703030031000000000000074130dd33d72a30d74f0c3e2cec19a8f42b65e750 ....1.......A0.3.*0.O.>,....+e.P...7.:e...-.>..6 +176 0.005810022 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149124324 105 1703030064000000000000069af15f128475de3d47fec3beb983ca1d2ec426ab ....d........._..u.=G.........&....Z.\.......}.} +178 0.006674290 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088340516 264 1703030103000000000000074226f21bb4a73330d1fbec79477c7c135ca676ea ............B&....30...yG||.\.v..k.}{....&...C.. +180 0.007020712 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088340780 34 170303001d000000000000074383d56f0f05b17b6947661f163fb2f30b2ad44d ............C..o...{iGf..?...*.M.. +3575 8.806115866 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149124429 1284 17030304ff000000000000069b353a89e60f47fd170432f33db7fd7e7483fe39 .............5:...G...2.=..~t..9).......^..*A].. +3577 8.810908794 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088340814 54 17030300310000000000000744726c808c5570b5342fd7407cac15121510f574 ....1.......Drl..Up.4/.@|......t.8I.{...3....... +3579 8.811467409 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149125713 117 1703030070000000000000069c757d70e249f6ea4a3e28376a7db9cd76ac1c73 ....p........u}p.I..J>(7j}..v..sy-.."..r}.z..q1. +3581 8.813601494 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088340868 173 17030300a80000000000000745967c73e57f688991d658cba689cf6777cc5f69 ............E.|s..h...X....gw._iYF.<. .?.....NS. +3583 8.814640045 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149125830 1284 17030304ff000000000000069d55cc5177ad62ea84943c44c10e59a8891e08b9 .............U.Qw.b...... +3585 8.818548918 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088341041 54 17030300310000000000000746c5dec98b660fe0511a362cc6196ecfdb4c84e5 ....1.......F....f..Q.6,..n..L..K?...?.....F..Y. +3587 8.818915367 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149127114 117 1703030070000000000000069ed75954965238debf7295421bef63fdb5500dcb ....p.........YT.R8..r.B..c..P...3J.%.......j.X. +3589 8.820799351 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088341095 173 17030300a80000000000000747d65af86f64cc0ce85d0b641752b3341dacc6e5 ............G.Z.od...].d.R.4....... 6.. EWwX..i....GLd... +3618 8.838009119 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088341322 173 17030300a80000000000000749cf980ab36a674a00ba0c44fbabfd6326242403 ............I....jgJ...D...c&$$.i?.<...9..KF..Mb +3620 8.838979721 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149128646 1285 170303050000000000000006a163886c2a37fe7c77cfbab8302799a2c6e7dbe8 .............c.l*7.|w...0'.......F_mF.=...X).... +3622 8.844013929 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088341495 54 1703030031000000000000074aa754f29adf618adf5ca7b077526c309dbe5abb ....1.......J.T...a..\..wRl0..Z..,...i......+..Y +3624 8.844451427 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3149129931 130 170303007d00000000000006a22b077c3a6746cfe6b04bbc892f3273990273a8 ....}........+.|:gF...K../2s..s.`...i..2F..e)}.. +3638 8.859442949 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088341549 173 17030300a8000000000000074b54f645660a9fac4053f885bc1ffe828418d16c ............KT.Ef...@S.........l..........h;.tT. +1437 0.000000000 ::1:61258 ::1:443 289719642 171 16030300a6010000a2030369ec56bc192d1ea81711443c801ef671acff9edebd ...........i.V..-....D<...q.........d.@......*., +1439 0.009669065 ::1:443 ::1:61258 411593249 2118 160303084102000051030369ec56bcff9a460503a234ef920c679eeff9027737 ....A...Q..i.V...F...4...g....w7.....<.yv7. .G.. +1441 0.020187140 ::1:61258 ::1:443 289719813 158 1603030066100000626104992d7c73b5ec335fee96907df5702e7bc6c2e20628 ....f...ba..-|s..3_...}.p.{....(..S=....Q...\... +1447 0.025740385 ::1:443 ::1:61258 411595367 51 14030300010116030300280000000000000000ec5ad4d605dea24fe9d1f16e86 ..........(.........Z.....O...n..B.,t!{..Hu9B.C. +1457 0.027560472 ::1:61258 ::1:443 289719971 309 170303013000000000000000010b9a2663e6405427e3a2ae43d32905553e93e4 ....0..........&c.@T'...C.).U>....d...s.P..9..e. +1459 0.028872013 ::1:443 ::1:61258 411595418 925 17030303980000000000000001d328397d9f2431dececce15d4992c4fd97d1f9 ..............(9}.$1....]I......v.za@)ZBo^.....( +1461 0.030155182 ::1:61258 ::1:443 289720280 325 17030301400000000000000002edc32efd7073b9cdad5828a7ddc7882067bf71 ....@............ps...X(.... g.q.1Wq...J.H.T.&5. +1463 0.034255743 ::1:443 ::1:61258 411596343 720 17030302cb00000000000000025167327e372ecc6a0630807e9b08fa30116df7 .............Qg2~7..j.0.~...0.m.?.....#n.k$...os +1506 0.000000000 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124111 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +1508 0.000238895 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124162 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +1510 0.001671076 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586513 1 0a . +1512 0.003204584 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124185 5 160100006e ....n +1514 0.003327131 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124190 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +1516 0.003857136 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586514 5 160100010f ..... +1518 0.004041433 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586519 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +1520 0.004900455 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124300 5 1601000079 ....y +1522 0.005023956 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124305 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +1524 0.005999804 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586790 5 140100001d ..... +1526 0.006182909 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586795 29 a11b3019a0030a0100a312041001000000079ff5ba71f519c700000000 ..0..................q....... +1528 0.006803751 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124426 21 11000000010000002d351be97a63a4ae010000008d ........-5..zc....... +1530 0.007054806 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586824 21 1100000001000000c342ebd795ae35e301000000fd .........B....5...... +1532 0.007483244 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151124447 1229 c904000001000000fd1f5fe596ff904c0200000015574ae009aea810942bbd72 .........._....L.....WJ......+.r....-...q.OyM... +1534 0.007831812 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151125676 21 1100000001000000d1cee3678d4d90f10300000098 ...........g.M....... +1536 0.009900808 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586845 21 11000000010000006d8cd6799f0a5504020000003c ........m..y..U.....< +7018 15.121778488 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151125697 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +7020 15.121996880 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151125748 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +7022 15.123580933 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586866 1 0a . +7024 15.124621630 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151125771 5 160100006e ....n +7026 15.124753475 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151125776 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +7028 15.125348806 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586867 5 160100010f ..... +7030 15.125486612 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748586872 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +7032 15.126336098 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151125886 5 1601000079 ....y +7034 15.126449823 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151125891 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +7036 15.127936125 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748587143 5 140100001d ..... +7038 15.128079653 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748587148 29 a11b3019a0030a0100a31204100100000030105cd1c2ba04f500000000 ..0..............0.\......... +7040 15.128680706 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151126012 21 11000000010000008a2f72924fd83d6e010000004e ........./r.O.=n....N +7042 15.128880978 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748587177 21 1100000001000000d3b2a6ac5a4ba3c5010000004c ............ZK......L +7044 15.129281521 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151126033 1229 c904000001000000e3bf3fe9d05ecb3d02000000c9e8b1f84a6df3a6a3cb745d ..........?..^.=........Jm....t]...1.....f....7. +7046 15.129620552 fe80::3608:256c:365:cc73:49758 fe80::3608:256c:365:cc73:808 1151127262 21 1100000001000000afd301aac993dd940300000056 ....................V +7048 15.132080555 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:49758 1748587198 21 110000000100000052316a54561bbe3a0200000022 ........R1jTV..:...." diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..d188f5b Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..9598c3a Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_443-to-__1_61258.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_443-to-__1_61258.bin new file mode 100644 index 0000000..14c2203 Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_443-to-__1_61258.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_49704-to-__1_61256.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_49704-to-__1_61256.bin new file mode 100644 index 0000000..8dd23ea Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_49704-to-__1_61256.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_61256-to-__1_49704.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_61256-to-__1_49704.bin new file mode 100644 index 0000000..6ce46e6 Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_61256-to-__1_49704.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_61258-to-__1_443.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_61258-to-__1_443.bin new file mode 100644 index 0000000..f28a046 Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-__1_61258-to-__1_443.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..0e4eb2b Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_49758-to-fe80__3608_256c_365_cc73_808.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_49758-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..e241311 Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_49758-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61252.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61252.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61252.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61260.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61260.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61260.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61308.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61308.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_61308.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61252-to-fe80__3608_256c_365_cc73_55555.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61252-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..189e721 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61252-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,3 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 + diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61260-to-fe80__3608_256c_365_cc73_55555.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61260-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61260-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61308-to-fe80__3608_256c_365_cc73_55555.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61308-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61308-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..ca3c0ea Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_49758.bin b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_49758.bin new file mode 100644 index 0000000..dacd600 Binary files /dev/null and b/captures/021-loopback-write-test-int-sequence-103-105/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_49758.bin differ diff --git a/captures/021-loopback-write-test-int-sequence-103-105/write-window-mixed-records.tsv b/captures/021-loopback-write-test-int-sequence-103-105/write-window-mixed-records.tsv new file mode 100644 index 0000000..4eb2aa8 --- /dev/null +++ b/captures/021-loopback-write-test-int-sequence-103-105/write-window-mixed-records.tsv @@ -0,0 +1,200 @@ +capture write_index write_value frame packet_time_relative_to_write packet_time_relative_to_complete direction src dst tcp_seq payload_offset record_index record_type record_size announced_length i32_0 i32_1 i32_2 i32_3 signature16 signature24 hex ascii_preview +021-loopback-write-test-int-sequence-103-105 0 103 3949 -0.139791250 -0.352088451 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959565 0 0 control_announce 12 26 746195 0 1a 00 00 00 d3 62 0b 00 00 00 00 00 1a 00 00 00 d3 62 0b 00 00 00 00 00 1a 00 00 00 d3 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 3951 -0.139626741 -0.351923943 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959577 0 0 data 26 22 1080266580 1076977378 196609 -180682752 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b f5 1f 00 00 00 00 00 T.c@.^1@......;....... +021-loopback-write-test-int-sequence-103-105 0 103 3953 -0.139300823 -0.351598024 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323418 0 0 control 12 -1 746195 0 ff ff ff ff d3 62 0b 00 00 00 00 00 ff ff ff ff d3 62 0b 00 00 00 00 00 ff ff ff ff d3 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 3955 -0.138811111 -0.351108313 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323430 0 0 control_announce 12 22 735282 0 16 00 00 00 32 38 0b 00 00 00 00 00 16 00 00 00 32 38 0b 00 00 00 00 00 16 00 00 00 32 38 0b 00 00 00 00 00 ....28...... +021-loopback-write-test-int-sequence-103-105 0 103 3957 -0.138645887 -0.350943089 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323442 0 0 data 22 18 2094395 0 196609 0 3b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 3b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 3b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ;................. +021-loopback-write-test-int-sequence-103-105 0 103 3959 -0.138392925 -0.350690126 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959603 0 0 control 12 -1 735282 0 ff ff ff ff 32 38 0b 00 00 00 00 00 ff ff ff ff 32 38 0b 00 00 00 00 00 ff ff ff ff 32 38 0b 00 00 00 00 00 ....28...... +021-loopback-write-test-int-sequence-103-105 0 103 3961 -0.125321150 -0.337618351 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959615 0 0 control_announce 12 101 746196 0 65 00 00 00 d4 62 0b 00 00 00 00 00 65 00 00 00 d4 62 0b 00 00 00 00 00 65 00 00 00 d4 62 0b 00 00 00 00 00 e....b...... +021-loopback-write-test-int-sequence-103-105 0 103 3963 -0.125153065 -0.337450266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959627 0 0 data 34 30 -803725028 -1154256956 196609 510066688 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 1e 02 00 00 00 00 00 20 e9 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 67 1e 02 00 00 00 00 00 20 e9 32 c3 9d 01 00 00 .!...o3.......g....... .2..... +021-loopback-write-test-int-sequence-103-105 0 103 3963 -0.125153065 -0.337450266 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959627 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 67 1e 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 67 1e 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 5c b8 95 bf 83 a9 18 ..3...|8...........g.......=B.....&............. +021-loopback-write-test-int-sequence-103-105 0 103 3965 -0.124682188 -0.336979389 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323464 0 0 control 12 -1 746196 0 ff ff ff ff d4 62 0b 00 00 00 00 00 ff ff ff ff d4 62 0b 00 00 00 00 00 ff ff ff ff d4 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 3967 -0.123787165 -0.336084366 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323476 0 0 control_announce 12 52 735283 0 34 00 00 00 33 38 0b 00 00 00 00 00 34 00 00 00 33 38 0b 00 00 00 00 00 34 00 00 00 33 38 0b 00 00 00 00 00 4...38...... +021-loopback-write-test-int-sequence-103-105 0 103 3969 -0.123570681 -0.335867882 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323488 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 67 1e 02 00 00 00 00 00 00 00 02 fb 45 e8 4f 01 00 00 "Dk.................L."".([.....g...........E.O..." +021-loopback-write-test-int-sequence-103-105 0 103 3971 -0.123182774 -0.335479975 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959728 0 0 control 12 -1 735283 0 ff ff ff ff 33 38 0b 00 00 00 00 00 ff ff ff ff 33 38 0b 00 00 00 00 00 ff ff ff ff 33 38 0b 00 00 00 00 00 ....38...... +021-loopback-write-test-int-sequence-103-105 0 103 3973 -0.122308731 -0.334605932 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959740 0 0 control_announce 12 30 746197 0 1e 00 00 00 d5 62 0b 00 00 00 00 00 1e 00 00 00 d5 62 0b 00 00 00 00 00 1e 00 00 00 d5 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 3975 -0.122156143 -0.334453344 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959752 0 0 data 30 26 1660931669 1345985458 196609 -180551680 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d f5 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d f5 1f 00 00 00 00 00 00 00 00 00 U..b..:P......=........... +021-loopback-write-test-int-sequence-103-105 0 103 3977 -0.121861219 -0.334158421 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323540 0 0 control 12 -1 746197 0 ff ff ff ff d5 62 0b 00 00 00 00 00 ff ff ff ff d5 62 0b 00 00 00 00 00 ff ff ff ff d5 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 3979 -0.121511459 -0.333808661 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323552 0 0 control_announce 12 26 735284 0 1a 00 00 00 34 38 0b 00 00 00 00 00 1a 00 00 00 34 38 0b 00 00 00 00 00 1a 00 00 00 34 38 0b 00 00 00 00 00 ....48...... +021-loopback-write-test-int-sequence-103-105 0 103 3981 -0.121317148 -0.333614349 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323564 0 0 data 26 22 2094397 0 196609 0 3d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 3d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 3d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 =..................... +021-loopback-write-test-int-sequence-103-105 0 103 3983 -0.121055126 -0.333352327 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959782 0 0 control 12 -1 735284 0 ff ff ff ff 34 38 0b 00 00 00 00 00 ff ff ff ff 34 38 0b 00 00 00 00 00 ff ff ff ff 34 38 0b 00 00 00 00 00 ....48...... +021-loopback-write-test-int-sequence-103-105 0 103 3985 -0.091599703 -0.303896904 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323590 0 0 control 12 -2 84677 84693 fe ff ff ff c5 4a 01 00 d5 4a 01 00 fe ff ff ff c5 4a 01 00 d5 4a 01 00 fe ff ff ff c5 4a 01 00 d5 4a 01 00 .....J...J.. +021-loopback-write-test-int-sequence-103-105 0 103 4033 -0.036254883 -0.248552084 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959794 0 0 control_announce 12 26 746198 0 1a 00 00 00 d6 62 0b 00 00 00 00 00 1a 00 00 00 d6 62 0b 00 00 00 00 00 1a 00 00 00 d6 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4035 -0.036034584 -0.248331785 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959806 0 0 data 26 22 1080266580 1076977378 196609 -180420608 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f f5 1f 00 00 00 00 00 T.c@.^1@......?....... +021-loopback-write-test-int-sequence-103-105 0 103 4037 -0.035690546 -0.247987747 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323602 0 0 control 12 -1 746198 0 ff ff ff ff d6 62 0b 00 00 00 00 00 ff ff ff ff d6 62 0b 00 00 00 00 00 ff ff ff ff d6 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4039 -0.035185575 -0.247482777 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323614 0 0 control_announce 12 22 735285 0 16 00 00 00 35 38 0b 00 00 00 00 00 16 00 00 00 35 38 0b 00 00 00 00 00 16 00 00 00 35 38 0b 00 00 00 00 00 ....58...... +021-loopback-write-test-int-sequence-103-105 0 103 4041 -0.035025358 -0.247322559 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323626 0 0 data 22 18 2094399 0 196609 0 3f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 3f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 3f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ?................. +021-loopback-write-test-int-sequence-103-105 0 103 4043 -0.034673929 -0.246971130 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959832 0 0 control 12 -1 735285 0 ff ff ff ff 35 38 0b 00 00 00 00 00 ff ff ff ff 35 38 0b 00 00 00 00 00 ff ff ff ff 35 38 0b 00 00 00 00 00 ....58...... +021-loopback-write-test-int-sequence-103-105 0 103 4045 -0.021154881 -0.233452082 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959844 0 0 control 12 -2 84694 84677 fe ff ff ff d6 4a 01 00 c5 4a 01 00 fe ff ff ff d6 4a 01 00 c5 4a 01 00 fe ff ff ff d6 4a 01 00 c5 4a 01 00 .....J...J.. +021-loopback-write-test-int-sequence-103-105 0 103 4051 0.066628456 -0.145668745 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959856 0 0 control_announce 12 26 746199 0 1a 00 00 00 d7 62 0b 00 00 00 00 00 1a 00 00 00 d7 62 0b 00 00 00 00 00 1a 00 00 00 d7 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4053 0.066827059 -0.145470142 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959868 0 0 data 26 22 1080266580 1076977378 196609 -180289536 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 f5 1f 00 00 00 00 00 T.c@.^1@......A....... +021-loopback-write-test-int-sequence-103-105 0 103 4055 0.067320108 -0.144977093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323648 0 0 control 12 -1 746199 0 ff ff ff ff d7 62 0b 00 00 00 00 00 ff ff ff ff d7 62 0b 00 00 00 00 00 ff ff ff ff d7 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4057 0.067785501 -0.144511700 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323660 0 0 control_announce 12 22 735286 0 16 00 00 00 36 38 0b 00 00 00 00 00 16 00 00 00 36 38 0b 00 00 00 00 00 16 00 00 00 36 38 0b 00 00 00 00 00 ....68...... +021-loopback-write-test-int-sequence-103-105 0 103 4059 0.067947626 -0.144349575 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323672 0 0 data 22 18 2094401 0 196609 0 41 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 41 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 41 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 A................. +021-loopback-write-test-int-sequence-103-105 0 103 4061 0.068285704 -0.144011497 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959894 0 0 control 12 -1 735286 0 ff ff ff ff 36 38 0b 00 00 00 00 00 ff ff ff ff 36 38 0b 00 00 00 00 00 ff ff ff ff 36 38 0b 00 00 00 00 00 ....68...... +021-loopback-write-test-int-sequence-103-105 0 103 4119 0.170109034 -0.042188168 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959906 0 0 control_announce 12 26 746200 0 1a 00 00 00 d8 62 0b 00 00 00 00 00 1a 00 00 00 d8 62 0b 00 00 00 00 00 1a 00 00 00 d8 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4121 0.170266628 -0.042030573 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959918 0 0 data 26 22 1080266580 1076977378 196609 -180158464 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 f5 1f 00 00 00 00 00 T.c@.^1@......C....... +021-loopback-write-test-int-sequence-103-105 0 103 4124 0.170543909 -0.041753292 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323694 0 0 control 12 -1 746200 0 ff ff ff ff d8 62 0b 00 00 00 00 00 ff ff ff ff d8 62 0b 00 00 00 00 00 ff ff ff ff d8 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4127 0.171019316 -0.041277885 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323706 0 0 control_announce 12 22 735287 0 16 00 00 00 37 38 0b 00 00 00 00 00 16 00 00 00 37 38 0b 00 00 00 00 00 16 00 00 00 37 38 0b 00 00 00 00 00 ....78...... +021-loopback-write-test-int-sequence-103-105 0 103 4129 0.171171427 -0.041125774 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323718 0 0 data 22 18 2094403 0 196609 0 43 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 43 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 43 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 C................. +021-loopback-write-test-int-sequence-103-105 0 103 4131 0.171459675 -0.040837526 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959944 0 0 control 12 -1 735287 0 ff ff ff ff 37 38 0b 00 00 00 00 00 ff ff ff ff 37 38 0b 00 00 00 00 00 ff ff ff ff 37 38 0b 00 00 00 00 00 ....78...... +021-loopback-write-test-int-sequence-103-105 0 103 4152 0.180431604 -0.031865597 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959956 0 0 control_announce 12 101 746201 0 65 00 00 00 d9 62 0b 00 00 00 00 00 65 00 00 00 d9 62 0b 00 00 00 00 00 65 00 00 00 d9 62 0b 00 00 00 00 00 e....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4154 0.180605412 -0.031691790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959968 0 0 data 34 30 -803725028 -1154256956 196609 510132224 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 1e 02 00 00 00 00 00 51 ea 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 68 1e 02 00 00 00 00 00 51 ea 32 c3 9d 01 00 00 .!...o3.......h.......Q.2..... +021-loopback-write-test-int-sequence-103-105 0 103 4154 0.180605412 -0.031691790 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334959968 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 68 1e 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 68 1e 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 20 af f1 a7 bf 83 a9 18 ..3...|8...........h.......=B.....&............. +021-loopback-write-test-int-sequence-103-105 0 103 4156 0.181063652 -0.031233549 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323740 0 0 control 12 -1 746201 0 ff ff ff ff d9 62 0b 00 00 00 00 00 ff ff ff ff d9 62 0b 00 00 00 00 00 ff ff ff ff d9 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4158 0.182176113 -0.030121088 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323752 0 0 control_announce 12 52 735288 0 34 00 00 00 38 38 0b 00 00 00 00 00 34 00 00 00 38 38 0b 00 00 00 00 00 34 00 00 00 38 38 0b 00 00 00 00 00 4...88...... +021-loopback-write-test-int-sequence-103-105 0 103 4160 0.182363510 -0.029933691 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323764 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 68 1e 02 00 00 00 00 00 00 00 0b b3 74 e8 4f 01 00 00 "Dk.................L."".([.....h...........t.O..." +021-loopback-write-test-int-sequence-103-105 0 103 4162 0.182622433 -0.029674768 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960069 0 0 control 12 -1 735288 0 ff ff ff ff 38 38 0b 00 00 00 00 00 ff ff ff ff 38 38 0b 00 00 00 00 00 ff ff ff ff 38 38 0b 00 00 00 00 00 ....88...... +021-loopback-write-test-int-sequence-103-105 0 103 4164 0.183470011 -0.028827190 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960081 0 0 control_announce 12 30 746202 0 1e 00 00 00 da 62 0b 00 00 00 00 00 1e 00 00 00 da 62 0b 00 00 00 00 00 1e 00 00 00 da 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4166 0.183623314 -0.028673887 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960093 0 0 data 30 26 1660931669 1345985458 196609 -180027392 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 f5 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 f5 1f 00 00 00 00 00 00 00 00 00 U..b..:P......E........... +021-loopback-write-test-int-sequence-103-105 0 103 4168 0.184028149 -0.028269053 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323816 0 0 control 12 -1 746202 0 ff ff ff ff da 62 0b 00 00 00 00 00 ff ff ff ff da 62 0b 00 00 00 00 00 ff ff ff ff da 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4170 0.184352398 -0.027944803 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323828 0 0 control_announce 12 26 735289 0 1a 00 00 00 39 38 0b 00 00 00 00 00 1a 00 00 00 39 38 0b 00 00 00 00 00 1a 00 00 00 39 38 0b 00 00 00 00 00 ....98...... +021-loopback-write-test-int-sequence-103-105 0 103 4172 0.184497833 -0.027799368 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323840 0 0 data 26 22 2094405 0 196609 0 45 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 45 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 45 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 E..................... +021-loopback-write-test-int-sequence-103-105 0 103 4174 0.184747696 -0.027549505 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960123 0 0 control 12 -1 735289 0 ff ff ff ff 39 38 0b 00 00 00 00 00 ff ff ff ff 39 38 0b 00 00 00 00 00 ff ff ff ff 39 38 0b 00 00 00 00 00 ....98...... +021-loopback-write-test-int-sequence-103-105 0 103 4178 0.272670269 0.060373068 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960135 0 0 control_announce 12 26 746203 0 1a 00 00 00 db 62 0b 00 00 00 00 00 1a 00 00 00 db 62 0b 00 00 00 00 00 1a 00 00 00 db 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4180 0.272846460 0.060549259 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960147 0 0 data 26 22 1080266580 1076977378 196609 -179896320 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 f5 1f 00 00 00 00 00 T.c@.^1@......G....... +021-loopback-write-test-int-sequence-103-105 0 103 4182 0.273196936 0.060899734 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323866 0 0 control 12 -1 746203 0 ff ff ff ff db 62 0b 00 00 00 00 00 ff ff ff ff db 62 0b 00 00 00 00 00 ff ff ff ff db 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4184 0.273631096 0.061333895 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323878 0 0 control_announce 12 22 735290 0 16 00 00 00 3a 38 0b 00 00 00 00 00 16 00 00 00 3a 38 0b 00 00 00 00 00 16 00 00 00 3a 38 0b 00 00 00 00 00 ....:8...... +021-loopback-write-test-int-sequence-103-105 0 103 4186 0.273787260 0.061490059 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323890 0 0 data 22 18 2094407 0 196609 0 47 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 47 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 47 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 G................. +021-loopback-write-test-int-sequence-103-105 0 103 4188 0.274049759 0.061752558 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960173 0 0 control 12 -1 735290 0 ff ff ff ff 3a 38 0b 00 00 00 00 00 ff ff ff ff 3a 38 0b 00 00 00 00 00 ff ff ff ff 3a 38 0b 00 00 00 00 00 ....:8...... +021-loopback-write-test-int-sequence-103-105 0 103 4193 0.375068665 0.162771463 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960185 0 0 control_announce 12 26 746204 0 1a 00 00 00 dc 62 0b 00 00 00 00 00 1a 00 00 00 dc 62 0b 00 00 00 00 00 1a 00 00 00 dc 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4195 0.375257492 0.162960291 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960197 0 0 data 26 22 1080266580 1076977378 196609 -179765248 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 f5 1f 00 00 00 00 00 T.c@.^1@......I....... +021-loopback-write-test-int-sequence-103-105 0 103 4197 0.375678062 0.163380861 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323912 0 0 control 12 -1 746204 0 ff ff ff ff dc 62 0b 00 00 00 00 00 ff ff ff ff dc 62 0b 00 00 00 00 00 ff ff ff ff dc 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 0 103 4199 0.376145601 0.163848400 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323924 0 0 control_announce 12 22 735291 0 16 00 00 00 3b 38 0b 00 00 00 00 00 16 00 00 00 3b 38 0b 00 00 00 00 00 16 00 00 00 3b 38 0b 00 00 00 00 00 ....;8...... +021-loopback-write-test-int-sequence-103-105 0 103 4201 0.376325130 0.164027929 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323936 0 0 data 22 18 2094409 0 196609 0 49 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 49 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 49 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 I................. +021-loopback-write-test-int-sequence-103-105 0 103 4203 0.376667500 0.164370298 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960223 0 0 control 12 -1 735291 0 ff ff ff ff 3b 38 0b 00 00 00 00 00 ff ff ff ff 3b 38 0b 00 00 00 00 00 ff ff ff ff 3b 38 0b 00 00 00 00 00 ....;8...... +021-loopback-write-test-int-sequence-103-105 0 103 4206 0.409921885 0.197624683 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378323958 0 0 control 12 -2 84678 84694 fe ff ff ff c6 4a 01 00 d6 4a 01 00 fe ff ff ff c6 4a 01 00 d6 4a 01 00 fe ff ff ff c6 4a 01 00 d6 4a 01 00 .....J...J.. +021-loopback-write-test-int-sequence-103-105 1 104 4257 -0.140208006 -0.299089909 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960476 0 0 control_announce 12 26 746208 0 1a 00 00 00 e0 62 0b 00 00 00 00 00 1a 00 00 00 e0 62 0b 00 00 00 00 00 1a 00 00 00 e0 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4259 -0.140037775 -0.298919678 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960488 0 0 data 26 22 1080266580 1076977378 196609 -179372032 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f f5 1f 00 00 00 00 00 T.c@.^1@......O....... +021-loopback-write-test-int-sequence-103-105 1 104 4261 -0.139646530 -0.298528433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324142 0 0 control 12 -1 746208 0 ff ff ff ff e0 62 0b 00 00 00 00 00 ff ff ff ff e0 62 0b 00 00 00 00 00 ff ff ff ff e0 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4263 -0.139126062 -0.298007965 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324154 0 0 control_announce 12 22 735295 0 16 00 00 00 3f 38 0b 00 00 00 00 00 16 00 00 00 3f 38 0b 00 00 00 00 00 16 00 00 00 3f 38 0b 00 00 00 00 00 ....?8...... +021-loopback-write-test-int-sequence-103-105 1 104 4265 -0.138965607 -0.297847509 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324166 0 0 data 22 18 2094415 0 196609 0 4f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 4f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 4f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 O................. +021-loopback-write-test-int-sequence-103-105 1 104 4267 -0.138536692 -0.297418594 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960514 0 0 control 12 -1 735295 0 ff ff ff ff 3f 38 0b 00 00 00 00 00 ff ff ff ff 3f 38 0b 00 00 00 00 00 ff ff ff ff 3f 38 0b 00 00 00 00 00 ....?8...... +021-loopback-write-test-int-sequence-103-105 1 104 4276 -0.036907434 -0.195789337 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960526 0 0 control_announce 12 26 746209 0 1a 00 00 00 e1 62 0b 00 00 00 00 00 1a 00 00 00 e1 62 0b 00 00 00 00 00 1a 00 00 00 e1 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4278 -0.036720276 -0.195602179 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960538 0 0 data 26 22 1080266580 1076977378 196609 -179240960 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 f5 1f 00 00 00 00 00 T.c@.^1@......Q....... +021-loopback-write-test-int-sequence-103-105 1 104 4280 -0.036202192 -0.195084095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324188 0 0 control 12 -1 746209 0 ff ff ff ff e1 62 0b 00 00 00 00 00 ff ff ff ff e1 62 0b 00 00 00 00 00 ff ff ff ff e1 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4282 -0.035587549 -0.194469452 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324200 0 0 control_announce 12 22 735296 0 16 00 00 00 40 38 0b 00 00 00 00 00 16 00 00 00 40 38 0b 00 00 00 00 00 16 00 00 00 40 38 0b 00 00 00 00 00 ....@8...... +021-loopback-write-test-int-sequence-103-105 1 104 4284 -0.035349369 -0.194231272 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324212 0 0 data 22 18 2094417 0 196609 0 51 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 51 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 51 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 Q................. +021-loopback-write-test-int-sequence-103-105 1 104 4286 -0.035108328 -0.193990231 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960564 0 0 control 12 -1 735296 0 ff ff ff ff 40 38 0b 00 00 00 00 00 ff ff ff ff 40 38 0b 00 00 00 00 00 ff ff ff ff 40 38 0b 00 00 00 00 00 ....@8...... +021-loopback-write-test-int-sequence-103-105 1 104 4293 0.067553520 -0.091328382 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960576 0 0 control_announce 12 26 746210 0 1a 00 00 00 e2 62 0b 00 00 00 00 00 1a 00 00 00 e2 62 0b 00 00 00 00 00 1a 00 00 00 e2 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4295 0.067722797 -0.091159105 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960588 0 0 data 26 22 1080266580 1076977378 196609 -179109888 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 f5 1f 00 00 00 00 00 T.c@.^1@......S....... +021-loopback-write-test-int-sequence-103-105 1 104 4297 0.067930222 -0.090951681 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960614 0 0 control_announce 12 34 746211 0 22 00 00 00 e3 62 0b 00 00 00 00 00 22 00 00 00 e3 62 0b 00 00 00 00 00 22 00 00 00 e3 62 0b 00 00 00 00 00 """....b......" +021-loopback-write-test-int-sequence-103-105 1 104 4299 0.068046808 -0.090835094 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960626 0 0 data 34 30 -803725028 -1154256956 196609 510263296 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 1e 02 00 00 00 00 00 b3 ec 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6a 1e 02 00 00 00 00 00 b3 ec 32 c3 9d 01 00 00 .!...o3.......j.........2..... +021-loopback-write-test-int-sequence-103-105 1 104 4300 0.068119526 -0.090762377 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324234 0 0 control 12 -1 746210 0 ff ff ff ff e2 62 0b 00 00 00 00 00 ff ff ff ff e2 62 0b 00 00 00 00 00 ff ff ff ff e2 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4301 0.068131447 -0.090750456 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960660 0 0 control_announce 12 67 746212 0 43 00 00 00 e4 62 0b 00 00 00 00 00 43 00 00 00 e4 62 0b 00 00 00 00 00 43 00 00 00 e4 62 0b 00 00 00 00 00 C....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4302 0.068237782 -0.090644121 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960672 0 0 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6a 1e 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6a 1e 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 60 40 cc bf 83 a9 18 ..3...|8...........j.......=B.....&............. +021-loopback-write-test-int-sequence-103-105 1 104 4304 0.068414927 -0.090466976 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324246 0 0 control 12 -1 746211 0 ff ff ff ff e3 62 0b 00 00 00 00 00 ff ff ff ff e3 62 0b 00 00 00 00 00 ff ff ff ff e3 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4306 0.068648338 -0.090233564 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324258 0 0 control 12 -1 746212 0 ff ff ff ff e4 62 0b 00 00 00 00 00 ff ff ff ff e4 62 0b 00 00 00 00 00 ff ff ff ff e4 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4308 0.068941116 -0.089940786 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324270 0 0 control_announce 12 22 735297 0 16 00 00 00 41 38 0b 00 00 00 00 00 16 00 00 00 41 38 0b 00 00 00 00 00 16 00 00 00 41 38 0b 00 00 00 00 00 ....A8...... +021-loopback-write-test-int-sequence-103-105 1 104 4310 0.069132090 -0.089749813 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324282 0 0 data 22 18 2094419 0 196609 0 53 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 53 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 53 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 S................. +021-loopback-write-test-int-sequence-103-105 1 104 4312 0.069282770 -0.089599133 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324304 0 0 control_announce 12 52 735298 0 34 00 00 00 42 38 0b 00 00 00 00 00 34 00 00 00 42 38 0b 00 00 00 00 00 34 00 00 00 42 38 0b 00 00 00 00 00 4...B8...... +021-loopback-write-test-int-sequence-103-105 1 104 4314 0.069372416 -0.089509487 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324316 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6a 1e 02 00 00 00 00 00 00 00 e5 96 d1 e8 4f 01 00 00 "Dk.................L."".([.....j.............O..." +021-loopback-write-test-int-sequence-103-105 1 104 4315 0.069395065 -0.089486837 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960739 0 0 control 12 -1 735297 0 ff ff ff ff 41 38 0b 00 00 00 00 00 ff ff ff ff 41 38 0b 00 00 00 00 00 ff ff ff ff 41 38 0b 00 00 00 00 00 ....A8...... +021-loopback-write-test-int-sequence-103-105 1 104 4317 0.069546223 -0.089335680 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960751 0 0 control 12 -1 735298 0 ff ff ff ff 42 38 0b 00 00 00 00 00 ff ff ff ff 42 38 0b 00 00 00 00 00 ff ff ff ff 42 38 0b 00 00 00 00 00 ....B8...... +021-loopback-write-test-int-sequence-103-105 1 104 4318 0.070311069 -0.088570833 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960763 0 0 control_announce 12 30 746213 0 1e 00 00 00 e5 62 0b 00 00 00 00 00 1e 00 00 00 e5 62 0b 00 00 00 00 00 1e 00 00 00 e5 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4320 0.070454121 -0.088427782 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960775 0 0 data 30 26 1660931669 1345985458 196609 -178978816 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 f5 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 f5 1f 00 00 00 00 00 00 00 00 00 U..b..:P......U........... +021-loopback-write-test-int-sequence-103-105 1 104 4322 0.070734024 -0.088147879 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324368 0 0 control 12 -1 746213 0 ff ff ff ff e5 62 0b 00 00 00 00 00 ff ff ff ff e5 62 0b 00 00 00 00 00 ff ff ff ff e5 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4323 0.071092606 -0.087789297 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324380 0 0 control_announce 12 26 735299 0 1a 00 00 00 43 38 0b 00 00 00 00 00 1a 00 00 00 43 38 0b 00 00 00 00 00 1a 00 00 00 43 38 0b 00 00 00 00 00 ....C8...... +021-loopback-write-test-int-sequence-103-105 1 104 4325 0.071244001 -0.087637901 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324392 0 0 data 26 22 2094421 0 196609 0 55 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 55 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 55 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 U..................... +021-loopback-write-test-int-sequence-103-105 1 104 4327 0.071476698 -0.087405205 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960805 0 0 control 12 -1 735299 0 ff ff ff ff 43 38 0b 00 00 00 00 00 ff ff ff ff 43 38 0b 00 00 00 00 00 ff ff ff ff 43 38 0b 00 00 00 00 00 ....C8...... +021-loopback-write-test-int-sequence-103-105 1 104 4330 0.170464754 0.011582851 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960817 0 0 control_announce 12 26 746214 0 1a 00 00 00 e6 62 0b 00 00 00 00 00 1a 00 00 00 e6 62 0b 00 00 00 00 00 1a 00 00 00 e6 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4332 0.170684099 0.011802197 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960829 0 0 data 26 22 1080266580 1076977378 196609 -178847744 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 f5 1f 00 00 00 00 00 T.c@.^1@......W....... +021-loopback-write-test-int-sequence-103-105 1 104 4334 0.171112061 0.012230158 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324418 0 0 control 12 -1 746214 0 ff ff ff ff e6 62 0b 00 00 00 00 00 ff ff ff ff e6 62 0b 00 00 00 00 00 ff ff ff ff e6 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4336 0.171579123 0.012697220 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324430 0 0 control_announce 12 22 735300 0 16 00 00 00 44 38 0b 00 00 00 00 00 16 00 00 00 44 38 0b 00 00 00 00 00 16 00 00 00 44 38 0b 00 00 00 00 00 ....D8...... +021-loopback-write-test-int-sequence-103-105 1 104 4338 0.171810150 0.012928247 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324442 0 0 data 22 18 2094423 0 196609 0 57 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 57 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 57 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 W................. +021-loopback-write-test-int-sequence-103-105 1 104 4340 0.172099590 0.013217688 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960855 0 0 control 12 -1 735300 0 ff ff ff ff 44 38 0b 00 00 00 00 00 ff ff ff ff 44 38 0b 00 00 00 00 00 ff ff ff ff 44 38 0b 00 00 00 00 00 ....D8...... +021-loopback-write-test-int-sequence-103-105 1 104 4342 0.189489126 0.030607224 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324464 0 0 control 12 -2 84679 84695 fe ff ff ff c7 4a 01 00 d7 4a 01 00 fe ff ff ff c7 4a 01 00 d7 4a 01 00 fe ff ff ff c7 4a 01 00 d7 4a 01 00 .....J...J.. +021-loopback-write-test-int-sequence-103-105 1 104 4351 0.260247707 0.101365805 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960867 0 0 control 12 -2 84696 84679 fe ff ff ff d8 4a 01 00 c7 4a 01 00 fe ff ff ff d8 4a 01 00 c7 4a 01 00 fe ff ff ff d8 4a 01 00 c7 4a 01 00 .....J...J.. +021-loopback-write-test-int-sequence-103-105 1 104 4357 0.273474693 0.114592791 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960879 0 0 control_announce 12 26 746215 0 1a 00 00 00 e7 62 0b 00 00 00 00 00 1a 00 00 00 e7 62 0b 00 00 00 00 00 1a 00 00 00 e7 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4359 0.273638964 0.114757061 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960891 0 0 data 26 22 1080266580 1076977378 196609 -178716672 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 f5 1f 00 00 00 00 00 T.c@.^1@......Y....... +021-loopback-write-test-int-sequence-103-105 1 104 4361 0.274013996 0.115132093 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324476 0 0 control 12 -1 746215 0 ff ff ff ff e7 62 0b 00 00 00 00 00 ff ff ff ff e7 62 0b 00 00 00 00 00 ff ff ff ff e7 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4363 0.274546623 0.115664721 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324488 0 0 control_announce 12 22 735301 0 16 00 00 00 45 38 0b 00 00 00 00 00 16 00 00 00 45 38 0b 00 00 00 00 00 16 00 00 00 45 38 0b 00 00 00 00 00 ....E8...... +021-loopback-write-test-int-sequence-103-105 1 104 4365 0.274724960 0.115843058 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324500 0 0 data 22 18 2094425 0 196609 0 59 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 59 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 59 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 Y................. +021-loopback-write-test-int-sequence-103-105 1 104 4367 0.275054216 0.116172314 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960917 0 0 control 12 -1 735301 0 ff ff ff ff 45 38 0b 00 00 00 00 00 ff ff ff ff 45 38 0b 00 00 00 00 00 ff ff ff ff 45 38 0b 00 00 00 00 00 ....E8...... +021-loopback-write-test-int-sequence-103-105 1 104 4369 0.372974873 0.214092970 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960929 0 0 control_announce 12 34 746216 0 22 00 00 00 e8 62 0b 00 00 00 00 00 22 00 00 00 e8 62 0b 00 00 00 00 00 22 00 00 00 e8 62 0b 00 00 00 00 00 """....b......" +021-loopback-write-test-int-sequence-103-105 1 104 4371 0.373187542 0.214305639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960941 0 0 data 34 30 -803725028 -1154256956 196609 510328832 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6b 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6b 1e 02 00 00 00 00 00 e4 ed 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6b 1e 02 00 00 00 00 00 e4 ed 32 c3 9d 01 00 00 .!...o3.......k.........2..... +021-loopback-write-test-int-sequence-103-105 1 104 4373 0.373328686 0.214446783 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960975 0 0 control_announce 12 67 746217 0 43 00 00 00 e9 62 0b 00 00 00 00 00 43 00 00 00 e9 62 0b 00 00 00 00 00 43 00 00 00 e9 62 0b 00 00 00 00 00 C....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4375 0.373417854 0.214535952 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334960987 0 0 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6b 1e 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6b 1e 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 1f 70 de bf 83 a9 18 ..3...|8...........k.......=B.....&............. +021-loopback-write-test-int-sequence-103-105 1 104 4377 0.373529434 0.214647532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324522 0 0 control 12 -1 746216 0 ff ff ff ff e8 62 0b 00 00 00 00 00 ff ff ff ff e8 62 0b 00 00 00 00 00 ff ff ff ff e8 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4379 0.373736382 0.214854479 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324534 0 0 control 12 -1 746217 0 ff ff ff ff e9 62 0b 00 00 00 00 00 ff ff ff ff e9 62 0b 00 00 00 00 00 ff ff ff ff e9 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4381 0.374356031 0.215474129 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324546 0 0 control_announce 12 52 735302 0 34 00 00 00 46 38 0b 00 00 00 00 00 34 00 00 00 46 38 0b 00 00 00 00 00 34 00 00 00 46 38 0b 00 00 00 00 00 4...F8...... +021-loopback-write-test-int-sequence-103-105 1 104 4383 0.374516487 0.215634584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324558 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6b 1e 02 00 00 00 00 00 00 00 5f 24 00 e9 4f 01 00 00 "Dk.................L."".([.....k........._$..O..." +021-loopback-write-test-int-sequence-103-105 1 104 4385 0.374799728 0.215917826 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961054 0 0 control 12 -1 735302 0 ff ff ff ff 46 38 0b 00 00 00 00 00 ff ff ff ff 46 38 0b 00 00 00 00 00 ff ff ff ff 46 38 0b 00 00 00 00 00 ....F8...... +021-loopback-write-test-int-sequence-103-105 1 104 4387 0.375619411 0.216737509 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961066 0 0 control_announce 12 30 746218 0 1e 00 00 00 ea 62 0b 00 00 00 00 00 1e 00 00 00 ea 62 0b 00 00 00 00 00 1e 00 00 00 ea 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4389 0.375777960 0.216896057 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961078 0 0 data 30 26 1660931669 1345985458 196609 -178585600 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5b f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5b f5 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5b f5 1f 00 00 00 00 00 00 00 00 00 U..b..:P......[........... +021-loopback-write-test-int-sequence-103-105 1 104 4391 0.376091480 0.217209578 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324610 0 0 control 12 -1 746218 0 ff ff ff ff ea 62 0b 00 00 00 00 00 ff ff ff ff ea 62 0b 00 00 00 00 00 ff ff ff ff ea 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4393 0.376481533 0.217599630 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324622 0 0 control_announce 12 26 735303 0 1a 00 00 00 47 38 0b 00 00 00 00 00 1a 00 00 00 47 38 0b 00 00 00 00 00 1a 00 00 00 47 38 0b 00 00 00 00 00 ....G8...... +021-loopback-write-test-int-sequence-103-105 1 104 4395 0.376639366 0.217757463 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324634 0 0 data 26 22 2094427 0 196609 0 5b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 5b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 5b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 [..................... +021-loopback-write-test-int-sequence-103-105 1 104 4397 0.376881361 0.217999458 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961108 0 0 control 12 -1 735303 0 ff ff ff ff 47 38 0b 00 00 00 00 00 ff ff ff ff 47 38 0b 00 00 00 00 00 ff ff ff ff 47 38 0b 00 00 00 00 00 ....G8...... +021-loopback-write-test-int-sequence-103-105 1 104 4399 0.377589703 0.218707800 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961120 0 0 control_announce 12 26 746219 0 1a 00 00 00 eb 62 0b 00 00 00 00 00 1a 00 00 00 eb 62 0b 00 00 00 00 00 1a 00 00 00 eb 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4401 0.377734661 0.218852758 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961132 0 0 data 26 22 1080266580 1076977378 196609 -178454528 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d f5 1f 00 00 00 00 00 T.c@.^1@......]....... +021-loopback-write-test-int-sequence-103-105 1 104 4403 0.379451752 0.220569849 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324660 0 0 control 12 -1 746219 0 ff ff ff ff eb 62 0b 00 00 00 00 00 ff ff ff ff eb 62 0b 00 00 00 00 00 ff ff ff ff eb 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 1 104 4405 0.379752159 0.220870256 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324672 0 0 control_announce 12 22 735304 0 16 00 00 00 48 38 0b 00 00 00 00 00 16 00 00 00 48 38 0b 00 00 00 00 00 16 00 00 00 48 38 0b 00 00 00 00 00 ....H8...... +021-loopback-write-test-int-sequence-103-105 1 104 4407 0.379999399 0.221117496 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324684 0 0 data 22 18 2094429 0 196609 0 5d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 5d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 5d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ]................. +021-loopback-write-test-int-sequence-103-105 1 104 4409 0.380308628 0.221426725 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961158 0 0 control 12 -1 735304 0 ff ff ff ff 48 38 0b 00 00 00 00 00 ff ff ff ff 48 38 0b 00 00 00 00 00 ff ff ff ff 48 38 0b 00 00 00 00 00 ....H8...... +021-loopback-write-test-int-sequence-103-105 2 105 4433 -0.136171103 -0.345595121 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961220 0 0 control_announce 12 26 746221 0 1a 00 00 00 ed 62 0b 00 00 00 00 00 1a 00 00 00 ed 62 0b 00 00 00 00 00 1a 00 00 00 ed 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4435 -0.136007071 -0.345431089 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961232 0 0 data 26 22 1080266580 1076977378 196609 -178192384 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 f5 1f 00 00 00 00 00 T.c@.^1@......a....... +021-loopback-write-test-int-sequence-103-105 2 105 4437 -0.135601759 -0.345025778 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324752 0 0 control 12 -1 746221 0 ff ff ff ff ed 62 0b 00 00 00 00 00 ff ff ff ff ed 62 0b 00 00 00 00 00 ff ff ff ff ed 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4439 -0.135216475 -0.344640493 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324764 0 0 control_announce 12 22 735306 0 16 00 00 00 4a 38 0b 00 00 00 00 00 16 00 00 00 4a 38 0b 00 00 00 00 00 16 00 00 00 4a 38 0b 00 00 00 00 00 ....J8...... +021-loopback-write-test-int-sequence-103-105 2 105 4441 -0.134987354 -0.344411373 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324776 0 0 data 22 18 2094433 0 196609 0 61 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 61 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 61 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 a................. +021-loopback-write-test-int-sequence-103-105 2 105 4443 -0.134612799 -0.344036818 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961258 0 0 control 12 -1 735306 0 ff ff ff ff 4a 38 0b 00 00 00 00 00 ff ff ff ff 4a 38 0b 00 00 00 00 00 ff ff ff ff 4a 38 0b 00 00 00 00 00 ....J8...... +021-loopback-write-test-int-sequence-103-105 2 105 4445 -0.043589592 -0.253013611 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961270 0 0 control_announce 12 101 746222 0 65 00 00 00 ee 62 0b 00 00 00 00 00 65 00 00 00 ee 62 0b 00 00 00 00 00 65 00 00 00 ee 62 0b 00 00 00 00 00 e....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4447 -0.043434620 -0.252858639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961282 0 0 data 34 30 -803725028 -1154256956 196609 510394368 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6c 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6c 1e 02 00 00 00 00 00 15 ef 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6c 1e 02 00 00 00 00 00 15 ef 32 c3 9d 01 00 00 .!...o3.......l.........2..... +021-loopback-write-test-int-sequence-103-105 2 105 4447 -0.043434620 -0.252858639 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961282 34 1 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6c 1e 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6c 1e 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 0d 9e f0 bf 83 a9 18 ..3...|8...........l.......=B.....&............. +021-loopback-write-test-int-sequence-103-105 2 105 4449 -0.043083906 -0.252507925 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324798 0 0 control 12 -1 746222 0 ff ff ff ff ee 62 0b 00 00 00 00 00 ff ff ff ff ee 62 0b 00 00 00 00 00 ff ff ff ff ee 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4451 -0.041712284 -0.251136303 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324810 0 0 control_announce 12 52 735307 0 34 00 00 00 4b 38 0b 00 00 00 00 00 34 00 00 00 4b 38 0b 00 00 00 00 00 34 00 00 00 4b 38 0b 00 00 00 00 00 4...K8...... +021-loopback-write-test-int-sequence-103-105 2 105 4453 -0.041488886 -0.250912905 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324822 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6c 1e 02 00 00 00 00 00 00 00 46 c6 2e e9 4f 01 00 00 "Dk.................L."".([.....l.........F...O..." +021-loopback-write-test-int-sequence-103-105 2 105 4455 -0.041142464 -0.250566483 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961383 0 0 control 12 -1 735307 0 ff ff ff ff 4b 38 0b 00 00 00 00 00 ff ff ff ff 4b 38 0b 00 00 00 00 00 ff ff ff ff 4b 38 0b 00 00 00 00 00 ....K8...... +021-loopback-write-test-int-sequence-103-105 2 105 4457 -0.040327311 -0.249751329 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961395 0 0 control_announce 12 30 746223 0 1e 00 00 00 ef 62 0b 00 00 00 00 00 1e 00 00 00 ef 62 0b 00 00 00 00 00 1e 00 00 00 ef 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4459 -0.040167809 -0.249591827 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961407 0 0 data 30 26 1660931669 1345985458 196609 -178061312 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 63 f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 63 f5 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 63 f5 1f 00 00 00 00 00 00 00 00 00 U..b..:P......c........... +021-loopback-write-test-int-sequence-103-105 2 105 4461 -0.039844513 -0.249268532 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324874 0 0 control 12 -1 746223 0 ff ff ff ff ef 62 0b 00 00 00 00 00 ff ff ff ff ef 62 0b 00 00 00 00 00 ff ff ff ff ef 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4463 -0.039401293 -0.248825312 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324886 0 0 control_announce 12 26 735308 0 1a 00 00 00 4c 38 0b 00 00 00 00 00 1a 00 00 00 4c 38 0b 00 00 00 00 00 1a 00 00 00 4c 38 0b 00 00 00 00 00 ....L8...... +021-loopback-write-test-int-sequence-103-105 2 105 4465 -0.039237738 -0.248661757 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324898 0 0 data 26 22 2094435 0 196609 0 63 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 63 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 63 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 c..................... +021-loopback-write-test-int-sequence-103-105 2 105 4467 -0.038974047 -0.248398066 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961437 0 0 control 12 -1 735308 0 ff ff ff ff 4c 38 0b 00 00 00 00 00 ff ff ff ff 4c 38 0b 00 00 00 00 00 ff ff ff ff 4c 38 0b 00 00 00 00 00 ....L8...... +021-loopback-write-test-int-sequence-103-105 2 105 4469 -0.033242941 -0.242666960 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961449 0 0 control_announce 12 26 746224 0 1a 00 00 00 f0 62 0b 00 00 00 00 00 1a 00 00 00 f0 62 0b 00 00 00 00 00 1a 00 00 00 f0 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4471 -0.033080816 -0.242504835 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961461 0 0 data 26 22 1080266580 1076977378 196609 -177930240 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 f5 1f 00 00 00 00 00 T.c@.^1@......e....... +021-loopback-write-test-int-sequence-103-105 2 105 4473 -0.032764435 -0.242188454 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324924 0 0 control 12 -1 746224 0 ff ff ff ff f0 62 0b 00 00 00 00 00 ff ff ff ff f0 62 0b 00 00 00 00 00 ff ff ff ff f0 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4475 -0.032484531 -0.241908550 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324936 0 0 control 12 -2 84680 84696 fe ff ff ff c8 4a 01 00 d8 4a 01 00 fe ff ff ff c8 4a 01 00 d8 4a 01 00 fe ff ff ff c8 4a 01 00 d8 4a 01 00 .....J...J.. +021-loopback-write-test-int-sequence-103-105 2 105 4477 -0.032080650 -0.241504669 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324948 0 0 control_announce 12 22 735309 0 16 00 00 00 4d 38 0b 00 00 00 00 00 16 00 00 00 4d 38 0b 00 00 00 00 00 16 00 00 00 4d 38 0b 00 00 00 00 00 ....M8...... +021-loopback-write-test-int-sequence-103-105 2 105 4479 -0.031912565 -0.241336584 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324960 0 0 data 22 18 2094437 0 196609 0 65 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 65 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 65 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 e................. +021-loopback-write-test-int-sequence-103-105 2 105 4481 -0.031626225 -0.241050243 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961487 0 0 control 12 -1 735309 0 ff ff ff ff 4d 38 0b 00 00 00 00 00 ff ff ff ff 4d 38 0b 00 00 00 00 00 ff ff ff ff 4d 38 0b 00 00 00 00 00 ....M8...... +021-loopback-write-test-int-sequence-103-105 2 105 4489 0.039529085 -0.169894934 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961499 0 0 control 12 -2 84697 84680 fe ff ff ff d9 4a 01 00 c8 4a 01 00 fe ff ff ff d9 4a 01 00 c8 4a 01 00 fe ff ff ff d9 4a 01 00 c8 4a 01 00 .....J...J.. +021-loopback-write-test-int-sequence-103-105 2 105 4495 0.069797516 -0.139626503 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961511 0 0 control_announce 12 26 746225 0 1a 00 00 00 f1 62 0b 00 00 00 00 00 1a 00 00 00 f1 62 0b 00 00 00 00 00 1a 00 00 00 f1 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4497 0.069961309 -0.139462709 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961523 0 0 data 26 22 1080266580 1076977378 196609 -177799168 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 f5 1f 00 00 00 00 00 T.c@.^1@......g....... +021-loopback-write-test-int-sequence-103-105 2 105 4499 0.070376396 -0.139047623 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324982 0 0 control 12 -1 746225 0 ff ff ff ff f1 62 0b 00 00 00 00 00 ff ff ff ff f1 62 0b 00 00 00 00 00 ff ff ff ff f1 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4501 0.070957899 -0.138466120 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378324994 0 0 control_announce 12 22 735310 0 16 00 00 00 4e 38 0b 00 00 00 00 00 16 00 00 00 4e 38 0b 00 00 00 00 00 16 00 00 00 4e 38 0b 00 00 00 00 00 ....N8...... +021-loopback-write-test-int-sequence-103-105 2 105 4503 0.071116924 -0.138307095 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325006 0 0 data 22 18 2094439 0 196609 0 67 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 67 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 67 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 g................. +021-loopback-write-test-int-sequence-103-105 2 105 4505 0.071329594 -0.138094425 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961549 0 0 control 12 -1 735310 0 ff ff ff ff 4e 38 0b 00 00 00 00 00 ff ff ff ff 4e 38 0b 00 00 00 00 00 ff ff ff ff 4e 38 0b 00 00 00 00 00 ....N8...... +021-loopback-write-test-int-sequence-103-105 2 105 4511 0.172880173 -0.036543846 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961561 0 0 control_announce 12 26 746226 0 1a 00 00 00 f2 62 0b 00 00 00 00 00 1a 00 00 00 f2 62 0b 00 00 00 00 00 1a 00 00 00 f2 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4513 0.173079252 -0.036344767 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961573 0 0 data 26 22 1080266580 1076977378 196609 -177668096 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 f5 1f 00 00 00 00 00 T.c@.^1@......i....... +021-loopback-write-test-int-sequence-103-105 2 105 4515 0.173507929 -0.035916090 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325028 0 0 control 12 -1 746226 0 ff ff ff ff f2 62 0b 00 00 00 00 00 ff ff ff ff f2 62 0b 00 00 00 00 00 ff ff ff ff f2 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4517 0.173794508 -0.035629511 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325040 0 0 control_announce 12 22 735311 0 16 00 00 00 4f 38 0b 00 00 00 00 00 16 00 00 00 4f 38 0b 00 00 00 00 00 16 00 00 00 4f 38 0b 00 00 00 00 00 ....O8...... +021-loopback-write-test-int-sequence-103-105 2 105 4519 0.173957586 -0.035466433 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325052 0 0 data 22 18 2094441 0 196609 0 69 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 69 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 69 f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 i................. +021-loopback-write-test-int-sequence-103-105 2 105 4521 0.174252987 -0.035171032 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961599 0 0 control 12 -1 735311 0 ff ff ff ff 4f 38 0b 00 00 00 00 00 ff ff ff ff 4f 38 0b 00 00 00 00 00 ff ff ff ff 4f 38 0b 00 00 00 00 00 ....O8...... +021-loopback-write-test-int-sequence-103-105 2 105 4531 0.261359215 0.051935196 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961611 0 0 control_announce 12 34 746227 0 22 00 00 00 f3 62 0b 00 00 00 00 00 22 00 00 00 f3 62 0b 00 00 00 00 00 22 00 00 00 f3 62 0b 00 00 00 00 00 """....b......" +021-loopback-write-test-int-sequence-103-105 2 105 4533 0.261560202 0.052136183 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961623 0 0 data 34 30 -803725028 -1154256956 196609 510459904 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 1e 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 1e 02 00 00 00 00 00 46 f0 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 6d 1e 02 00 00 00 00 00 46 f0 32 c3 9d 01 00 00 .!...o3.......m.......F.2..... +021-loopback-write-test-int-sequence-103-105 2 105 4535 0.261646271 0.052222252 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961657 0 0 control_announce 12 67 746228 0 43 00 00 00 f4 62 0b 00 00 00 00 00 43 00 00 00 f4 62 0b 00 00 00 00 00 43 00 00 00 f4 62 0b 00 00 00 00 00 C....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4537 0.261728048 0.052304029 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961669 0 0 data 67 63 -885848936 947696652 196609 65536 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6d 1e 02 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 6d 1e 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 80 c1 ce 02 c0 83 a9 18 ..3...|8...........m.......=B.....&............. +021-loopback-write-test-int-sequence-103-105 2 105 4539 0.261993885 0.052569866 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325074 0 0 control 12 -1 746227 0 ff ff ff ff f3 62 0b 00 00 00 00 00 ff ff ff ff f3 62 0b 00 00 00 00 00 ff ff ff ff f3 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4541 0.262209177 0.052785158 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325086 0 0 control 12 -1 746228 0 ff ff ff ff f4 62 0b 00 00 00 00 00 ff ff ff ff f4 62 0b 00 00 00 00 00 ff ff ff ff f4 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4543 0.263011217 0.053587198 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325098 0 0 control_announce 12 52 735312 0 34 00 00 00 50 38 0b 00 00 00 00 00 34 00 00 00 50 38 0b 00 00 00 00 00 34 00 00 00 50 38 0b 00 00 00 00 00 4...P8...... +021-loopback-write-test-int-sequence-103-105 2 105 4545 0.263190746 0.053766727 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325110 0 0 data 52 48 -661034172 -1245897748 196609 65536 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 6d 1e 02 00 00 00 00 00 00 00 ec 45 5d e9 4f 01 00 00 "Dk.................L."".([.....m..........E].O..." +021-loopback-write-test-int-sequence-103-105 2 105 4547 0.263551235 0.054127216 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961736 0 0 control 12 -1 735312 0 ff ff ff ff 50 38 0b 00 00 00 00 00 ff ff ff ff 50 38 0b 00 00 00 00 00 ff ff ff ff 50 38 0b 00 00 00 00 00 ....P8...... +021-loopback-write-test-int-sequence-103-105 2 105 4549 0.264326334 0.054902315 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961748 0 0 control_announce 12 30 746229 0 1e 00 00 00 f5 62 0b 00 00 00 00 00 1e 00 00 00 f5 62 0b 00 00 00 00 00 1e 00 00 00 f5 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4551 0.264478683 0.055054665 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961760 0 0 data 30 26 1660931669 1345985458 196609 -177537024 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b f5 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b f5 1f 00 00 00 00 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6b f5 1f 00 00 00 00 00 00 00 00 00 U..b..:P......k........... +021-loopback-write-test-int-sequence-103-105 2 105 4553 0.264806271 0.055382252 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325162 0 0 control 12 -1 746229 0 ff ff ff ff f5 62 0b 00 00 00 00 00 ff ff ff ff f5 62 0b 00 00 00 00 00 ff ff ff ff f5 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4555 0.265175104 0.055751085 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325174 0 0 control_announce 12 26 735313 0 1a 00 00 00 51 38 0b 00 00 00 00 00 1a 00 00 00 51 38 0b 00 00 00 00 00 1a 00 00 00 51 38 0b 00 00 00 00 00 ....Q8...... +021-loopback-write-test-int-sequence-103-105 2 105 4557 0.265325308 0.055901289 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325186 0 0 data 26 22 2094443 0 196609 0 6b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 6b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 6b f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 k..................... +021-loopback-write-test-int-sequence-103-105 2 105 4559 0.265630722 0.056206703 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961790 0 0 control 12 -1 735313 0 ff ff ff ff 51 38 0b 00 00 00 00 00 ff ff ff ff 51 38 0b 00 00 00 00 00 ff ff ff ff 51 38 0b 00 00 00 00 00 ....Q8...... +021-loopback-write-test-int-sequence-103-105 2 105 4561 0.276273012 0.066848993 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961802 0 0 control_announce 12 26 746230 0 1a 00 00 00 f6 62 0b 00 00 00 00 00 1a 00 00 00 f6 62 0b 00 00 00 00 00 1a 00 00 00 f6 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4563 0.276415348 0.066991329 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961814 0 0 data 26 22 1080266580 1076977378 196609 -177405952 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d f5 1f 00 00 00 00 00 T.c@.^1@......m....... +021-loopback-write-test-int-sequence-103-105 2 105 4565 0.276723146 0.067299128 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325212 0 0 control 12 -1 746230 0 ff ff ff ff f6 62 0b 00 00 00 00 00 ff ff ff ff f6 62 0b 00 00 00 00 00 ff ff ff ff f6 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4567 0.277314425 0.067890406 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325224 0 0 control_announce 12 22 735314 0 16 00 00 00 52 38 0b 00 00 00 00 00 16 00 00 00 52 38 0b 00 00 00 00 00 16 00 00 00 52 38 0b 00 00 00 00 00 ....R8...... +021-loopback-write-test-int-sequence-103-105 2 105 4569 0.277461529 0.068037510 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325236 0 0 data 22 18 2094445 0 196609 0 6d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 6d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 6d f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 m................. +021-loopback-write-test-int-sequence-103-105 2 105 4571 0.277673721 0.068249702 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961840 0 0 control 12 -1 735314 0 ff ff ff ff 52 38 0b 00 00 00 00 00 ff ff ff ff 52 38 0b 00 00 00 00 00 ff ff ff ff 52 38 0b 00 00 00 00 00 ....R8...... +021-loopback-write-test-int-sequence-103-105 2 105 4577 0.379636526 0.170212507 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961852 0 0 control_announce 12 26 746231 0 1a 00 00 00 f7 62 0b 00 00 00 00 00 1a 00 00 00 f7 62 0b 00 00 00 00 00 1a 00 00 00 f7 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4579 0.379800320 0.170376301 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961864 0 0 data 26 22 1080266580 1076977378 196609 -177274880 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f f5 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f f5 1f 00 00 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f f5 1f 00 00 00 00 00 T.c@.^1@......o....... +021-loopback-write-test-int-sequence-103-105 2 105 4581 0.380138397 0.170714378 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325258 0 0 control 12 -1 746231 0 ff ff ff ff f7 62 0b 00 00 00 00 00 ff ff ff ff f7 62 0b 00 00 00 00 00 ff ff ff ff f7 62 0b 00 00 00 00 00 .....b...... +021-loopback-write-test-int-sequence-103-105 2 105 4583 0.380526066 0.171102047 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325270 0 0 control_announce 12 22 735315 0 16 00 00 00 53 38 0b 00 00 00 00 00 16 00 00 00 53 38 0b 00 00 00 00 00 16 00 00 00 53 38 0b 00 00 00 00 00 ....S8...... +021-loopback-write-test-int-sequence-103-105 2 105 4585 0.380689144 0.171265125 b_to_a 127.0.0.1:57433 127.0.0.1:57415 378325282 0 0 data 22 18 2094447 0 196609 0 6f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 6f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 6f f5 1f 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 o................. +021-loopback-write-test-int-sequence-103-105 2 105 4587 0.380965710 0.171541691 a_to_b 127.0.0.1:57415 127.0.0.1:57433 3334961890 0 0 control 12 -1 735315 0 ff ff ff ff 53 38 0b 00 00 00 00 00 ff ff ff ff 53 38 0b 00 00 00 00 00 ff ff ff ff 53 38 0b 00 00 00 00 00 ....S8...... diff --git a/captures/022-frida-write-test-int-sequence-106-108/frida-command.txt b/captures/022-frida-write-test-int-sequence-106-108/frida-command.txt new file mode 100644 index 0000000..abae0b9 --- /dev/null +++ b/captures/022-frida-write-test-int-sequence-106-108/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=int --values=106,107,108 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\022-frida-write-test-int-sequence-106-108\harness.log --client=MxFridaTrace-022-frida-write-test-int-sequence-106-108 diff --git a/captures/022-frida-write-test-int-sequence-106-108/frida-events.tsv b/captures/022-frida-write-test-int-sequence-106-108/frida-events.tsv new file mode 100644 index 0000000..88ab8f4 --- /dev/null +++ b/captures/022-frida-write-test-int-sequence-106-108/frida-events.tsv @@ -0,0 +1,103 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T06:17:48.379Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T06:17:48.380Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T06:17:48.380Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T06:17:48.381Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T06:17:48.381Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T06:17:55.321Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T06:17:55.322Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T06:17:55.322Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T06:17:55.323Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T06:17:55.378Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xf3ebcc "[""0x6418ff0"",""0x1"",""0x1"",""0x7b7c3c71"",""0x74794704""]" +2026-04-25T06:17:55.379Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T06:17:55.503Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9640648"",""0xf3e890"",""0xdd21334b""]" 0 1 0x2 +2026-04-25T06:17:55.503Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9640648"",""0xf3e890"",""0xdd21334b""]" 1 314 0x9640648 +2026-04-25T06:17:55.504Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9fc8020"",""0x7786906e"",""0x9640214"",""0x9640204"",""0x641add04"",""0x0""]" 0 360 0x9fc8020 +2026-04-25T06:17:55.505Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:55.505Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:17:55.506Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x970e4e0"",""0xf3e890"",""0xdd21334b""]" 0 2 0x2 +2026-04-25T06:17:55.506Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x970e4e0"",""0xf3e890"",""0xdd21334b""]" 1 39 0x970e4e0 +2026-04-25T06:17:55.508Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9fc8020"",""0x7786906e"",""0x971a39c"",""0x971a38c"",""0x641add04"",""0x0""]" 0 85 0x9fc8020 +2026-04-25T06:17:55.509Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:55.509Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:17:55.547Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x2c2"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x2c2"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 0 706 0x818c120 +2026-04-25T06:17:55.547Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x2c2"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x2c2"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:55.547Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x2c2"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x2c2"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:55.548Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:55.549Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x97"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x97"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 0 151 0x811fb70 +2026-04-25T06:17:55.549Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x97"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x97"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:55.549Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x97"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x97"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:55.549Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:55.557Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x5c"",""0x818b018"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x5c"",""0x818b018"",""0x206"",""0x3"",""0x7d51664""]" 0 92 0x818b018 +2026-04-25T06:17:55.557Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x5c"",""0x818b018"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x5c"",""0x818b018"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:55.557Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x5c"",""0x818b018"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x5c"",""0x818b018"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:55.557Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:55.558Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x6c"",""0x814a460"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x6c"",""0x814a460"",""0x206"",""0x3"",""0x7d51664""]" 0 108 0x814a460 +2026-04-25T06:17:55.558Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x6c"",""0x814a460"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x6c"",""0x814a460"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:55.558Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x6c"",""0x814a460"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x6c"",""0x814a460"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:55.559Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:55.613Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x9fc8020"",""0x77869082"",""0x9637010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9fc8020 +2026-04-25T06:17:55.614Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:55.635Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9fc8020"",""0x77869082"",""0x9637010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9fc8020 +2026-04-25T06:17:55.636Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:56.407Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xf3ebc0 "[""0x6418ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x6a"",""0x0"",""0x1"",""0x7b7c3c71"",""0x74794704""]" +2026-04-25T06:17:56.408Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:17:56.511Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x970e3c0"",""0xf3e890"",""0xdd21334b""]" 0 2 0x2 +2026-04-25T06:17:56.511Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x970e3c0"",""0xf3e890"",""0xdd21334b""]" 1 40 0x970e3c0 +2026-04-25T06:17:56.512Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x9fc8020"",""0x7786906e"",""0x96377f4"",""0x96377e4"",""0x641add04"",""0x0""]" 0 86 0x9fc8020 +2026-04-25T06:17:56.513Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:56.513Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:17:56.566Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 0 51 0x818c120 +2026-04-25T06:17:56.566Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:56.566Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:56.566Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:56.567Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 0 88 0x811fb70 +2026-04-25T06:17:56.567Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:56.567Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:56.568Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:56.618Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9fc8020"",""0x77869082"",""0x9637010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9fc8020 +2026-04-25T06:17:56.619Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:57.136Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xf3ebc0 "[""0x6418ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x6b"",""0x0"",""0x1"",""0x7b7c3c71"",""0x74794704""]" +2026-04-25T06:17:57.136Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:17:57.238Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x970e690"",""0xf3e890"",""0xdd21334b""]" 0 2 0x2 +2026-04-25T06:17:57.238Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x970e690"",""0xf3e890"",""0xdd21334b""]" 1 40 0x970e690 +2026-04-25T06:17:57.239Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x9fc8020"",""0x7786906e"",""0x971a7f4"",""0x971a7e4"",""0x641add04"",""0x0""]" 0 86 0x9fc8020 +2026-04-25T06:17:57.240Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:57.240Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:17:57.260Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818b018"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818b018"",""0x206"",""0x3"",""0x7d51664""]" 0 51 0x818b018 +2026-04-25T06:17:57.260Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818b018"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818b018"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:57.260Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818b018"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818b018"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:57.260Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:57.261Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x814a460"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x814a460"",""0x206"",""0x3"",""0x7d51664""]" 0 88 0x814a460 +2026-04-25T06:17:57.261Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x814a460"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x814a460"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:57.261Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x814a460"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x814a460"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:57.261Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:57.344Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9fc8020"",""0x77869082"",""0x9637010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9fc8020 +2026-04-25T06:17:57.345Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:57.861Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xf3ebc0 "[""0x6418ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x6c"",""0x0"",""0x1"",""0x7b7c3c71"",""0x74794704""]" +2026-04-25T06:17:57.861Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:17:57.913Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x970e2e8"",""0xf3e890"",""0xdd21334b""]" 0 2 0x2 +2026-04-25T06:17:57.913Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x970e2e8"",""0xf3e890"",""0xdd21334b""]" 1 40 0x970e2e8 +2026-04-25T06:17:57.914Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x9fc8020"",""0x7786906e"",""0x96377f4"",""0x96377e4"",""0x641add04"",""0x0""]" 0 86 0x9fc8020 +2026-04-25T06:17:57.915Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:17:57.915Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:17:57.950Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 0 51 0x818c120 +2026-04-25T06:17:57.950Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:57.950Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x33"",""0x818c120"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x33"",""0x818c120"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:57.950Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:57.952Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 0 88 0x811fb70 +2026-04-25T06:17:57.952Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 1 518 0x3 +2026-04-25T06:17:57.952Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x963c738 "[""0x58"",""0x811fb70"",""0x798e8f8"",""0x76ffedd8"",""0x963c744"",""0x58"",""0x811fb70"",""0x206"",""0x3"",""0x7d51664""]" 2 3 0x7d51664 +2026-04-25T06:17:57.952Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:17:58.019Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9fc8020"",""0x77869082"",""0x9637010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9fc8020 +2026-04-25T06:17:58.020Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:01.924Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x970e258"",""0xf3ea4c"",""0xdd213d87""]" 0 1 0x2 +2026-04-25T06:18:01.924Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x970e258"",""0xf3ea4c"",""0xdd213d87""]" 1 58 0x970e258 +2026-04-25T06:18:01.925Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x9fc8020"",""0x77869e12"",""0x96377f4"",""0x96377e4"",""0x641add04"",""0x64""]" 0 104 0x9fc8020 +2026-04-25T06:18:01.925Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:01.925Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:18:01.926Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x970e8d0"",""0xf3ea4c"",""0xdd213d87""]" 0 2 0x2 +2026-04-25T06:18:01.926Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x963c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x970e8d0"",""0xf3ea4c"",""0xdd213d87""]" 1 37 0x970e8d0 +2026-04-25T06:18:01.927Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x963c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9fc8020"",""0x77869e12"",""0x971a39c"",""0x971a38c"",""0x641add04"",""0x64""]" 0 83 0x9fc8020 +2026-04-25T06:18:01.928Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:01.928Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/022-frida-write-test-int-sequence-106-108/frida-exit.txt b/captures/022-frida-write-test-int-sequence-106-108/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/022-frida-write-test-int-sequence-106-108/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/022-frida-write-test-int-sequence-106-108/frida.stderr.txt b/captures/022-frida-write-test-int-sequence-106-108/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/022-frida-write-test-int-sequence-106-108/frida.stdout.jsonl b/captures/022-frida-write-test-int-sequence-106-108/frida.stdout.jsonl new file mode 100644 index 0000000..54f7249 --- /dev/null +++ b/captures/022-frida-write-test-int-sequence-106-108/frida.stdout.jsonl @@ -0,0 +1,91 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --values=106,107,108 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\022-frida-write-test-int-sequence-106-108\harness.log --client=MxFridaTrace-022-frida-write-test-int-sequence-106-108`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --values=106,107,108 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\022-frida-write-test-int-sequence-106-108\harness.log --client=MxFridaTrace-022-frida-write-test-int-sequence-106-108`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:17:48.379Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:17:48.380Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:17:48.380Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:17:48.381Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:17:48.381Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:17:55.321Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:17:55.322Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:17:55.322Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:17:55.323Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xf3ebcc","args":["0x6418ff0","0x1","0x1","0x7b7c3c71","0x74794704"],"time":"2026-04-25T06:17:55.378Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:17:55.379Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x963c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9640648","0xf3e890","0xdd21334b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9640648","hex":""}],"time":"2026-04-25T06:17:55.503Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x1","0x168","0x9fc8020","0x7786906e","0x9640214","0x9640204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:55.504Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:55.505Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:17:55.505Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x963c738","0x1","0x1","0x2","0x2","0x0","0x27","0x970e4e0","0xf3e890","0xdd21334b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x970e4e0","hex":""}],"time":"2026-04-25T06:17:55.506Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x55","0x9fc8020","0x7786906e","0x971a39c","0x971a38c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:55.508Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:55.509Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:17:55.509Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x2c2","0x818c120","0x798e8f8","0x76ffedd8","0x963c744","0x2c2","0x818c120","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x818c120","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:55.547Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:55.548Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x97","0x811fb70","0x798e8f8","0x76ffedd8","0x963c744","0x97","0x811fb70","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x811fb70","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:55.549Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:55.549Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x5c","0x818b018","0x798e8f8","0x76ffedd8","0x963c744","0x5c","0x818b018","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x818b018","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:55.557Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:55.557Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x6c","0x814a460","0x798e8f8","0x76ffedd8","0x963c744","0x6c","0x814a460","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x814a460","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:55.558Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:55.559Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x1","0x2e","0x9fc8020","0x77869082","0x9637010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:55.613Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:55.614Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x2e","0x9fc8020","0x77869082","0x9637010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:55.635Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:55.636Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf3ebc0","args":["0x6418ff0","0x1","0x1","0x3","0x0","0x6a","0x0","0x1","0x7b7c3c71","0x74794704"],"time":"2026-04-25T06:17:56.407Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:17:56.408Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x963c738","0x1","0x1","0x2","0x2","0x0","0x28","0x970e3c0","0xf3e890","0xdd21334b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x970e3c0","hex":""}],"time":"2026-04-25T06:17:56.511Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x56","0x9fc8020","0x7786906e","0x96377f4","0x96377e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:56.512Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:56.513Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:17:56.513Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x33","0x818c120","0x798e8f8","0x76ffedd8","0x963c744","0x33","0x818c120","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x818c120","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:56.566Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:56.566Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x58","0x811fb70","0x798e8f8","0x76ffedd8","0x963c744","0x58","0x811fb70","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x811fb70","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:56.567Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:56.568Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x2e","0x9fc8020","0x77869082","0x9637010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:56.618Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:56.619Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf3ebc0","args":["0x6418ff0","0x1","0x1","0x3","0x0","0x6b","0x0","0x1","0x7b7c3c71","0x74794704"],"time":"2026-04-25T06:17:57.136Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:17:57.136Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x963c738","0x1","0x1","0x2","0x2","0x0","0x28","0x970e690","0xf3e890","0xdd21334b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x970e690","hex":""}],"time":"2026-04-25T06:17:57.238Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x56","0x9fc8020","0x7786906e","0x971a7f4","0x971a7e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:57.239Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:57.240Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:17:57.240Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x33","0x818b018","0x798e8f8","0x76ffedd8","0x963c744","0x33","0x818b018","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x818b018","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:57.260Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:57.260Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x58","0x814a460","0x798e8f8","0x76ffedd8","0x963c744","0x58","0x814a460","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x814a460","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:57.261Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:57.261Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x2e","0x9fc8020","0x77869082","0x9637010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:57.344Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:57.345Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf3ebc0","args":["0x6418ff0","0x1","0x1","0x3","0x0","0x6c","0x0","0x1","0x7b7c3c71","0x74794704"],"time":"2026-04-25T06:17:57.861Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:17:57.861Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x963c738","0x1","0x1","0x2","0x2","0x0","0x28","0x970e2e8","0xf3e890","0xdd21334b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x970e2e8","hex":""}],"time":"2026-04-25T06:17:57.913Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x56","0x9fc8020","0x7786906e","0x96377f4","0x96377e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:57.914Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:57.915Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:17:57.915Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x33","0x818c120","0x798e8f8","0x76ffedd8","0x963c744","0x33","0x818c120","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x818c120","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:57.950Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:57.950Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x963c738","args":["0x58","0x811fb70","0x798e8f8","0x76ffedd8","0x963c744","0x58","0x811fb70","0x206","0x3","0x7d51664"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x811fb70","hex":""},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d51664","hex":""}],"time":"2026-04-25T06:17:57.952Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:17:57.952Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x2e","0x9fc8020","0x77869082","0x9637010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:17:58.019Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:17:58.020Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x963c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x970e258","0xf3ea4c","0xdd213d87"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x970e258","hex":""}],"time":"2026-04-25T06:18:01.924Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x1","0x68","0x9fc8020","0x77869e12","0x96377f4","0x96377e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:18:01.925Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:18:01.925Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:18:01.925Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x963c738","0x1","0x1","0x2","0x2","0x0","0x25","0x970e8d0","0xf3ea4c","0xdd213d87"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x970e8d0","hex":""}],"time":"2026-04-25T06:18:01.926Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x963c738","args":["0x1","0x1","0x2","0x53","0x9fc8020","0x77869e12","0x971a39c","0x971a38c","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9fc8020","hex":""}],"time":"2026-04-25T06:18:01.927Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:18:01.928Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:18:01.928Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/022-frida-write-test-int-sequence-106-108/harness.log b/captures/022-frida-write-test-int-sequence-106-108/harness.log new file mode 100644 index 0000000..0bfa1b3 --- /dev/null +++ b/captures/022-frida-write-test-int-sequence-106-108/harness.log @@ -0,0 +1,27 @@ +2026-04-25T06:17:48.2752420+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-022-frida-write-test-int-sequence-106-108","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"","WriteValues":["106","107","108"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:17:55.0007159+00:00 mx.register.begin {"ClientName":"MxFridaTrace-022-frida-write-test-int-sequence-106-108"} +2026-04-25T06:17:55.3734702+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:17:55.3745288+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T06:17:55.3763943+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:17:55.3774913+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:17:55.3794105+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:17:55.6336199+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"105"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 1:53:08.539 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:17:56.4069584+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"106"},"UserId":1} +2026-04-25T06:17:56.4089809+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:17:56.6181465+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"106"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:17:56.564 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:17:56.6223188+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:17:57.1351009+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.Int32","Value":"107"},"UserId":1} +2026-04-25T06:17:57.1360406+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":1} +2026-04-25T06:17:57.3438425+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"107"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:17:57.258 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:17:57.3478543+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:17:57.8605164+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.Int32","Value":"108"},"UserId":1} +2026-04-25T06:17:57.8614588+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":2} +2026-04-25T06:17:58.0189539+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"108"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:17:57.949 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:17:58.0219575+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:18:01.9092604+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:18:01.9102628+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:18:01.9102628+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:18:01.9102628+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:18:01.9112646+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:18:05.6422122+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:18:05.6472086+00:00 harness.stop {} diff --git a/captures/023-frida-write-test-int-sequence-109-111/frida-command.txt b/captures/023-frida-write-test-int-sequence-109-111/frida-command.txt new file mode 100644 index 0000000..9bd6842 --- /dev/null +++ b/captures/023-frida-write-test-int-sequence-109-111/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=int --values=109,110,111 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\023-frida-write-test-int-sequence-109-111\harness.log --client=MxFridaTrace-023-frida-write-test-int-sequence-109-111 diff --git a/captures/023-frida-write-test-int-sequence-109-111/frida-events.tsv b/captures/023-frida-write-test-int-sequence-109-111/frida-events.tsv new file mode 100644 index 0000000..a8ce1cc --- /dev/null +++ b/captures/023-frida-write-test-int-sequence-109-111/frida-events.tsv @@ -0,0 +1,107 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T06:18:51.374Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T06:18:51.375Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T06:18:51.376Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T06:18:51.376Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T06:18:51.377Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T06:18:58.723Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T06:18:58.723Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T06:18:58.724Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T06:18:58.725Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T06:18:58.819Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcff25c "[""0x6288ff0"",""0x1"",""0x1"",""0xea04c6ad"",""0x74794704""]" +2026-04-25T06:18:58.820Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T06:18:58.945Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9340648"",""0xcfef20"",""0x33c462b3""]" 0 1 0x2 +2026-04-25T06:18:58.945Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9340648"",""0xcfef20"",""0x33c462b3""]" 1 314 0x9340648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 33 09 1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 +2026-04-25T06:18:58.948Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa600020"",""0x4dc10bda"",""0x9340214"",""0x9340204"",""0x641add04"",""0x0""]" 0 360 0xa600020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 33 09 1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d +2026-04-25T06:18:58.948Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:58.949Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:18:58.950Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x940e840"",""0xcfef20"",""0x33c462b3""]" 0 2 0x2 +2026-04-25T06:18:58.950Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x940e840"",""0xcfef20"",""0x33c462b3""]" 1 39 0x940e840 1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T06:18:58.951Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa600020"",""0x4dc10bda"",""0x9419584"",""0x9419574"",""0x641add04"",""0x0""]" 0 85 0xa600020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T06:18:58.952Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:58.952Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:18:58.982Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x2c2"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x2c2"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 0 706 0x7a45838 109@147 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f +2026-04-25T06:18:58.982Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x2c2"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x2c2"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:18:58.982Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x2c2"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x2c2"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:18:58.982Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:18:58.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x97"",""0x7a32220"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x97"",""0x7a32220"",""0x206"",""0x3"",""0x7a7f03c""]" 0 151 0x7a32220 01 00 69 00 00 00 00 00 00 00 ef e4 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 13 27 1c 4c c8 d3 95 40 b9 dd 17 80 70 23 4a 9d 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T06:18:58.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x97"",""0x7a32220"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x97"",""0x7a32220"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:18:58.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x97"",""0x7a32220"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x97"",""0x7a32220"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:18:58.986Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:18:59.003Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x5c"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x5c"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 0 92 0x1011a70 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 +2026-04-25T06:18:59.003Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x5c"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x5c"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:18:59.003Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x5c"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x5c"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:18:59.003Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:18:59.005Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x6c"",""0x7a4be68"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x6c"",""0x7a4be68"",""0x206"",""0x3"",""0x7a7f03c""]" 0 108 0x7a4be68 01 00 3e 00 00 00 00 00 00 00 7f 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 03 00 00 00 03 00 00 00 c0 00 d0 e6 b4 42 7b d4 dc 01 02 6c 00 00 00 +2026-04-25T06:18:59.005Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x6c"",""0x7a4be68"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x6c"",""0x7a4be68"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:18:59.005Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x6c"",""0x7a4be68"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x6c"",""0x7a4be68"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:18:59.006Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:18:59.055Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0xa600020"",""0x4dc10836"",""0x9337010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa600020 01 00 00 00 00 00 00 00 00 00 ef e4 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:18:59.057Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:59.088Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa600020"",""0x4dc10836"",""0x9337010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa600020 01 00 00 00 00 00 00 00 00 00 7f 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:18:59.089Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:59.863Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcff250 "[""0x6288ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x6d"",""0x0"",""0x1"",""0xea04c6ad"",""0x74794704""]" +2026-04-25T06:18:59.864Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:18:59.917Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x940e960"",""0xcfef20"",""0x33c462b3""]" 0 2 0x2 +2026-04-25T06:18:59.917Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x940e960"",""0xcfef20"",""0x33c462b3""]" 1 40 0x940e960 109@18 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00 +2026-04-25T06:18:59.918Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa600020"",""0x4dc10bda"",""0x93377f4"",""0x93377e4"",""0x641add04"",""0x0""]" 0 86 0xa600020 109@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00 +2026-04-25T06:18:59.919Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:18:59.919Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:18:59.950Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 0 51 0x7a45838 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:18:59.950Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:18:59.950Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:18:59.951Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:18:59.953Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7cedc48"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7cedc48"",""0x206"",""0x3"",""0x7a7f03c""]" 0 88 0x7cedc48 109@84 01 00 2a 00 00 00 00 00 00 00 82 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 03 00 00 00 c0 00 d0 59 a9 67 7b d4 dc 01 02 6d 00 00 00 +2026-04-25T06:18:59.953Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7cedc48"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7cedc48"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:18:59.953Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7cedc48"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7cedc48"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:18:59.953Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:19:00.024Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa600020"",""0x4dc10836"",""0x9337010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa600020 01 00 00 00 00 00 00 00 00 00 82 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:19:00.025Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:19:00.589Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcff250 "[""0x6288ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x6e"",""0x0"",""0x1"",""0xea04c6ad"",""0x74794704""]" +2026-04-25T06:19:00.590Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:19:00.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x940e498"",""0xcfef20"",""0x33c462b3""]" 0 2 0x2 +2026-04-25T06:19:00.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x940e498"",""0xcfef20"",""0x33c462b3""]" 1 40 0x940e498 110@18 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6e 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 02 00 00 00 +2026-04-25T06:19:00.694Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa600020"",""0x4dc10bda"",""0x94199dc"",""0x94199cc"",""0x641add04"",""0x0""]" 0 86 0xa600020 110@64 01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6e 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 02 00 00 00 +2026-04-25T06:19:00.695Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:19:00.695Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:19:00.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 0 51 0x1011a70 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:19:00.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:19:00.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:19:00.714Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:19:00.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7a2d060"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7a2d060"",""0x206"",""0x3"",""0x7a7f03c""]" 0 88 0x7a2d060 110@84 01 00 2a 00 00 00 00 00 00 00 85 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 03 00 00 00 c0 00 80 c6 1d 68 7b d4 dc 01 02 6e 00 00 00 +2026-04-25T06:19:00.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7a2d060"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7a2d060"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:19:00.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7a2d060"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7a2d060"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:19:00.715Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:19:00.800Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa600020"",""0x4dc10836"",""0x9337010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa600020 01 00 00 00 00 00 00 00 00 00 85 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:19:00.801Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:19:01.313Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcff250 "[""0x6288ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x6f"",""0x0"",""0x1"",""0xea04c6ad"",""0x74794704""]" +2026-04-25T06:19:01.314Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:19:01.366Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x940e2e8"",""0xcfef20"",""0x33c462b3""]" 0 2 0x2 +2026-04-25T06:19:01.366Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x940e2e8"",""0xcfef20"",""0x33c462b3""]" 1 40 0x940e2e8 111@18 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6f 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 03 00 00 00 +2026-04-25T06:19:01.366Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa600020"",""0x4dc10bda"",""0x93377f4"",""0x93377e4"",""0x641add04"",""0x0""]" 0 86 0xa600020 111@64 01 00 28 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6f 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 03 00 00 00 +2026-04-25T06:19:01.367Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:19:01.368Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:19:01.370Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 0 51 0x7a45838 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:19:01.370Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:19:01.370Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x33"",""0x7a45838"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x33"",""0x7a45838"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:19:01.371Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:19:01.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7a4be68"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7a4be68"",""0x206"",""0x3"",""0x7a7f03c""]" 0 88 0x7a4be68 111@84 01 00 2a 00 00 00 00 00 00 00 88 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 03 00 00 00 c0 00 90 06 82 68 7b d4 dc 01 02 6f 00 00 00 +2026-04-25T06:19:01.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7a4be68"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7a4be68"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:19:01.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x58"",""0x7a4be68"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x58"",""0x7a4be68"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:19:01.373Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:19:01.474Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa600020"",""0x4dc10836"",""0x9337010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa600020 01 00 00 00 00 00 00 00 00 00 88 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:19:01.475Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:19:05.378Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x940ea38"",""0xcff0dc"",""0x33c4637f""]" 0 1 0x2 +2026-04-25T06:19:05.378Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x940ea38"",""0xcff0dc"",""0x33c4637f""]" 1 58 0x940ea38 21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:19:05.380Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0xa600020"",""0x4dc10986"",""0x93377f4"",""0x93377e4"",""0x641add04"",""0x64""]" 0 104 0xa600020 01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:19:05.381Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:19:05.381Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:19:05.382Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x940e5b8"",""0xcff0dc"",""0x33c4637f""]" 0 2 0x2 +2026-04-25T06:19:05.382Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x933c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x940e5b8"",""0xcff0dc"",""0x33c4637f""]" 1 37 0x940e5b8 21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T06:19:05.383Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x933c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0xa600020"",""0x4dc10986"",""0x9419584"",""0x9419574"",""0x641add04"",""0x64""]" 0 83 0xa600020 01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T06:19:05.384Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:19:05.384Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:19:05.386Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x2e"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x2e"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 0 46 0x1011a70 01 00 00 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:19:05.386Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x2e"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x2e"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 1 518 0x3 +2026-04-25T06:19:05.386Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x933c738 "[""0x2e"",""0x1011a70"",""0x75cebc8"",""0x76ffedd8"",""0x933c744"",""0x2e"",""0x1011a70"",""0x206"",""0x3"",""0x7a7f03c""]" 2 3 0x7a7f03c 18 df a7 +2026-04-25T06:19:05.386Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] diff --git a/captures/023-frida-write-test-int-sequence-109-111/frida-exit.txt b/captures/023-frida-write-test-int-sequence-109-111/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/023-frida-write-test-int-sequence-109-111/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/023-frida-write-test-int-sequence-109-111/frida.stderr.txt b/captures/023-frida-write-test-int-sequence-109-111/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/023-frida-write-test-int-sequence-109-111/frida.stdout.jsonl b/captures/023-frida-write-test-int-sequence-109-111/frida.stdout.jsonl new file mode 100644 index 0000000..d287c03 --- /dev/null +++ b/captures/023-frida-write-test-int-sequence-109-111/frida.stdout.jsonl @@ -0,0 +1,93 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --values=109,110,111 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\023-frida-write-test-int-sequence-109-111\harness.log --client=MxFridaTrace-023-frida-write-test-int-sequence-109-111`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --values=109,110,111 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\023-frida-write-test-int-sequence-109-111\harness.log --client=MxFridaTrace-023-frida-write-test-int-sequence-109-111`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:18:51.374Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:18:51.375Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:18:51.376Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:18:51.376Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:18:51.377Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:18:58.723Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:18:58.723Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:18:58.724Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:18:58.725Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcff25c","args":["0x6288ff0","0x1","0x1","0xea04c6ad","0x74794704"],"time":"2026-04-25T06:18:58.819Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:18:58.820Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x933c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9340648","0xcfef20","0x33c462b3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9340648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 33 09 1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:18:58.945Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x1","0x168","0xa600020","0x4dc10bda","0x9340214","0x9340204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa600020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 33 09 1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:18:58.948Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:18:58.948Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:18:58.949Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x933c738","0x1","0x1","0x2","0x2","0x0","0x27","0x940e840","0xcfef20","0x33c462b3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x940e840","hex":"1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:18:58.950Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x55","0xa600020","0x4dc10bda","0x9419584","0x9419574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa600020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:18:58.951Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:18:58.952Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:18:58.952Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x2c2","0x7a45838","0x75cebc8","0x76ffedd8","0x933c744","0x2c2","0x7a45838","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7a45838","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:18:58.982Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:18:58.982Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x97","0x7a32220","0x75cebc8","0x76ffedd8","0x933c744","0x97","0x7a32220","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7a32220","hex":"01 00 69 00 00 00 00 00 00 00 ef e4 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 13 27 1c 4c c8 d3 95 40 b9 dd 17 80 70 23 4a 9d 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:18:58.985Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:18:58.986Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x5c","0x1011a70","0x75cebc8","0x76ffedd8","0x933c744","0x5c","0x1011a70","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x1011a70","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:18:59.003Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:18:59.003Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x6c","0x7a4be68","0x75cebc8","0x76ffedd8","0x933c744","0x6c","0x7a4be68","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7a4be68","hex":"01 00 3e 00 00 00 00 00 00 00 7f 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 03 00 00 00 03 00 00 00 c0 00 d0 e6 b4 42 7b d4 dc 01 02 6c 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:18:59.005Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:18:59.006Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x1","0x2e","0xa600020","0x4dc10836","0x9337010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa600020","hex":"01 00 00 00 00 00 00 00 00 00 ef e4 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:18:59.055Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:18:59.057Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x2e","0xa600020","0x4dc10836","0x9337010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa600020","hex":"01 00 00 00 00 00 00 00 00 00 7f 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:18:59.088Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:18:59.089Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcff250","args":["0x6288ff0","0x1","0x1","0x3","0x0","0x6d","0x0","0x1","0xea04c6ad","0x74794704"],"time":"2026-04-25T06:18:59.863Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:18:59.864Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x933c738","0x1","0x1","0x2","0x2","0x0","0x28","0x940e960","0xcfef20","0x33c462b3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x940e960","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00"}],"time":"2026-04-25T06:18:59.917Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x56","0xa600020","0x4dc10bda","0x93377f4","0x93377e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa600020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00"}],"time":"2026-04-25T06:18:59.918Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:18:59.919Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:18:59.919Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x33","0x7a45838","0x75cebc8","0x76ffedd8","0x933c744","0x33","0x7a45838","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7a45838","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:18:59.950Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:18:59.951Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x58","0x7cedc48","0x75cebc8","0x76ffedd8","0x933c744","0x58","0x7cedc48","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7cedc48","hex":"01 00 2a 00 00 00 00 00 00 00 82 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 03 00 00 00 c0 00 d0 59 a9 67 7b d4 dc 01 02 6d 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:18:59.953Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:18:59.953Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x2e","0xa600020","0x4dc10836","0x9337010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa600020","hex":"01 00 00 00 00 00 00 00 00 00 82 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:19:00.024Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:19:00.025Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcff250","args":["0x6288ff0","0x1","0x1","0x3","0x0","0x6e","0x0","0x1","0xea04c6ad","0x74794704"],"time":"2026-04-25T06:19:00.589Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:19:00.590Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x933c738","0x1","0x1","0x2","0x2","0x0","0x28","0x940e498","0xcfef20","0x33c462b3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x940e498","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6e 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 02 00 00 00"}],"time":"2026-04-25T06:19:00.693Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x56","0xa600020","0x4dc10bda","0x94199dc","0x94199cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa600020","hex":"01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6e 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 02 00 00 00"}],"time":"2026-04-25T06:19:00.694Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:19:00.695Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:19:00.695Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x33","0x1011a70","0x75cebc8","0x76ffedd8","0x933c744","0x33","0x1011a70","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x1011a70","hex":"01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:19:00.713Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:19:00.714Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x58","0x7a2d060","0x75cebc8","0x76ffedd8","0x933c744","0x58","0x7a2d060","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7a2d060","hex":"01 00 2a 00 00 00 00 00 00 00 85 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 03 00 00 00 c0 00 80 c6 1d 68 7b d4 dc 01 02 6e 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:19:00.715Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:19:00.715Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x2e","0xa600020","0x4dc10836","0x9337010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa600020","hex":"01 00 00 00 00 00 00 00 00 00 85 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:19:00.800Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:19:00.801Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcff250","args":["0x6288ff0","0x1","0x1","0x3","0x0","0x6f","0x0","0x1","0xea04c6ad","0x74794704"],"time":"2026-04-25T06:19:01.313Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:19:01.314Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x933c738","0x1","0x1","0x2","0x2","0x0","0x28","0x940e2e8","0xcfef20","0x33c462b3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x940e2e8","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6f 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 03 00 00 00"}],"time":"2026-04-25T06:19:01.366Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x56","0xa600020","0x4dc10bda","0x93377f4","0x93377e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa600020","hex":"01 00 28 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6f 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 03 00 00 00"}],"time":"2026-04-25T06:19:01.366Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:19:01.367Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:19:01.368Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x33","0x7a45838","0x75cebc8","0x76ffedd8","0x933c744","0x33","0x7a45838","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7a45838","hex":"01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:19:01.370Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:19:01.371Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x58","0x7a4be68","0x75cebc8","0x76ffedd8","0x933c744","0x58","0x7a4be68","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7a4be68","hex":"01 00 2a 00 00 00 00 00 00 00 88 72 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 51 df a5 39 65 59 eb 4a bf 24 92 1a d8 ab 18 22 03 00 00 00 c0 00 90 06 82 68 7b d4 dc 01 02 6f 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:19:01.372Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:19:01.373Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x2e","0xa600020","0x4dc10836","0x9337010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa600020","hex":"01 00 00 00 00 00 00 00 00 00 88 72 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:19:01.474Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:19:01.475Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x933c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x940ea38","0xcff0dc","0x33c4637f"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x940ea38","hex":"21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:19:05.378Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x1","0x68","0xa600020","0x4dc10986","0x93377f4","0x93377e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0xa600020","hex":"01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:19:05.380Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:19:05.381Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:19:05.381Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x933c738","0x1","0x1","0x2","0x2","0x0","0x25","0x940e5b8","0xcff0dc","0x33c4637f"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x940e5b8","hex":"21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:19:05.382Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x933c738","args":["0x1","0x1","0x2","0x53","0xa600020","0x4dc10986","0x9419584","0x9419574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa600020","hex":"01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:19:05.383Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:19:05.384Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:19:05.384Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x933c738","args":["0x2e","0x1011a70","0x75cebc8","0x76ffedd8","0x933c744","0x2e","0x1011a70","0x206","0x3","0x7a7f03c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1011a70","hex":"01 00 00 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a7f03c","hex":"18 df a7"}],"time":"2026-04-25T06:19:05.386Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:19:05.386Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/023-frida-write-test-int-sequence-109-111/harness.log b/captures/023-frida-write-test-int-sequence-109-111/harness.log new file mode 100644 index 0000000..4d95f70 --- /dev/null +++ b/captures/023-frida-write-test-int-sequence-109-111/harness.log @@ -0,0 +1,27 @@ +2026-04-25T06:18:51.2700652+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-023-frida-write-test-int-sequence-109-111","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"","WriteValues":["109","110","111"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:18:58.4327762+00:00 mx.register.begin {"ClientName":"MxFridaTrace-023-frida-write-test-int-sequence-109-111"} +2026-04-25T06:18:58.8153467+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:18:58.8153467+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T06:18:58.8173486+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:18:58.8183480+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:18:58.8203494+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:18:59.0868729+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"108"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:17:57.949 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:18:59.8628552+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"109"},"UserId":1} +2026-04-25T06:18:59.8648539+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:19:00.0242270+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"109"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:18:59.949 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:19:00.0282274+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:19:00.5898111+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.Int32","Value":"110"},"UserId":1} +2026-04-25T06:19:00.5908119+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":1} +2026-04-25T06:19:00.7996026+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"110"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:19:00.712 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:19:00.8026020+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:19:01.3134718+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.Int32","Value":"111"},"UserId":1} +2026-04-25T06:19:01.3145433+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":2} +2026-04-25T06:19:01.4741368+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"111"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:19:01.369 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:19:01.4791001+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:19:05.3628503+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:19:05.3639230+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:19:05.3639230+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:19:05.3639230+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:19:05.3639230+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:19:09.3632633+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:19:09.3692650+00:00 harness.stop {} diff --git a/captures/024-frida-write-test-bool-sequence/frida-command.txt b/captures/024-frida-write-test-bool-sequence/frida-command.txt new file mode 100644 index 0000000..4ef0fa9 --- /dev/null +++ b/captures/024-frida-write-test-bool-sequence/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestBool --type=bool --values=true,false,true --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\024-frida-write-test-bool-sequence\harness.log --client=MxFridaTrace-024-frida-write-test-bool-sequence diff --git a/captures/024-frida-write-test-bool-sequence/frida-events.tsv b/captures/024-frida-write-test-bool-sequence/frida-events.tsv new file mode 100644 index 0000000..2839641 --- /dev/null +++ b/captures/024-frida-write-test-bool-sequence/frida-events.tsv @@ -0,0 +1,103 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T06:24:03.946Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T06:24:03.947Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T06:24:03.948Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T06:24:03.948Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T06:24:03.949Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T06:24:11.091Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T06:24:11.092Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T06:24:11.092Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T06:24:11.093Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T06:24:11.146Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xaff1dc "[""0x5f78ff0"",""0x1"",""0x1"",""0xc2b46254"",""0x74794704""]" +2026-04-25T06:24:11.147Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T06:24:11.271Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x91c0648"",""0xafeea0"",""0x26829a42""]" 0 1 0x2 +2026-04-25T06:24:11.271Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x91c0648"",""0xafeea0"",""0x26829a42""]" 1 314 0x91c0648 True:u8@1 True:u8@3 True:u8@4 True:u8@6 True:u8@111 True:u8@112 True:u8@114 True:u8@116 True:u8@130 True:u8@136 True:u8@156 True:u8@161 True:u8@163 True:u8@164 True:u8@166 True:i32@6 True:i32@116 True:i32@156 True:i32@166 False:u8@2 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@18 False:u8@19 False:u8@22 False:u8@23 False:u8@24 False:u8@26 False:u8@27 False:u8@30 False:u8@32 False:u8@34 False:u8@36 False:u8@38 False:u8@40 False:u8@42 False:u8@44 False:u8@46 False:u8@48 False:u8@50 False:u8@52 False:u8@54 False:u8@56 False:u8@58 False:u8@60 False:u8@62 False:u8@64 False:u8@66 False:u8@68 False:u8@70 False:u8@72 False:u8@74 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@95 False:u8@96 False:u8@97 False:u8@98 False:u8@100 False:u8@101 False:u8@102 False:u8@103 False:u8@104 False:u8@106 False:u8@107 False:u8@108 False:u8@109 False:u8@110 False:u8@113 False:u8@115 False:u8@117 False:u8@118 False:u8@119 False:u8@120 False:u8@121 False:u8@122 False:u8@123 False:u8@124 False:u8@125 False:u8@126 False:u8@127 False:u8@128 False:u8@129 False:u8@137 False:u8@154 False:u8@155 False:u8@157 False:u8@158 False:u8@159 False:u8@162 False:u8@165 False:u8@167 False:u8@168 False:u8@169 False:u8@171 False:u8@173 False:u8@175 False:u8@176 False:u8@177 False:u8@178 False:u8@179 False:u8@182 False:u8@183 False:u8@184 False:u8@186 False:u8@187 False:u8@190 False:u8@192 False:u8@194 False:u8@196 False:u8@198 False:u8@200 False:u8@202 False:u8@204 False:u8@206 False:u8@208 False:u8@210 False:u8@212 False:u8@214 False:u8@216 False:u8@218 False:u8@220 False:u8@222 False:u8@224 False:u8@226 False:u8@228 False:u8@230 False:u8@232 False:u8@234 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:i32@15 False:i32@16 False:i32@94 False:i32@95 False:i32@100 False:i32@101 False:i32@106 False:i32@107 False:i32@117 False:i32@118 False:i32@119 False:i32@120 False:i32@121 False:i32@122 False:i32@123 False:i32@124 False:i32@125 False:i32@126 False:i32@175 False:i32@176 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@17 False:variant_bool@18 False:variant_bool@22 False:variant_bool@23 False:variant_bool@26 False:variant_bool@90 False:variant_bool@91 False:variant_bool@94 False:variant_bool@95 False:variant_bool@96 False:variant_bool@97 False:variant_bool@100 False:variant_bool@101 False:variant_bool@102 False:variant_bool@103 False:variant_bool@106 False:variant_bool@107 False:variant_bool@108 False:variant_bool@109 False:variant_bool@117 False:variant_bool@118 False:variant_bool@119 False:variant_bool@120 False:variant_bool@121 False:variant_bool@122 False:variant_bool@123 False:variant_bool@124 False:variant_bool@125 False:variant_bool@126 False:variant_bool@127 False:variant_bool@128 False:variant_bool@154 False:variant_bool@157 False:variant_bool@158 False:variant_bool@167 False:variant_bool@168 False:variant_bool@175 False:variant_bool@176 False:variant_bool@177 False:variant_bool@178 False:variant_bool@182 False:variant_bool@183 False:variant_bool@186 True:u8@1 True:u8@3 True:u8@4 True:u8@6 True:u8@111 True:u8@112 True:u8@114 True:u8@116 True:u8@130 True:u8@136 True:u8@156 True:u8@161 True:u8@163 True:u8@164 True:u8@166 True:i32@6 True:i32@116 True:i32@156 True:i32@166 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1b 09 1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 +2026-04-25T06:24:11.273Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9b43020"",""0x4197ad83"",""0x91c0214"",""0x91c0204"",""0x641add04"",""0x0""]" 0 360 0x9b43020 True:u8@0 True:u8@3 True:u8@10 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@49 True:u8@50 True:u8@52 True:u8@157 True:u8@158 True:u8@160 True:u8@162 True:u8@176 True:u8@182 True:u8@202 True:u8@207 True:u8@209 True:u8@210 True:u8@212 True:i32@3 True:i32@10 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@52 True:i32@162 True:i32@202 True:i32@212 False:u8@1 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@51 False:u8@53 False:u8@54 False:u8@55 False:u8@57 False:u8@59 False:u8@61 False:u8@62 False:u8@63 False:u8@64 False:u8@65 False:u8@68 False:u8@69 False:u8@70 False:u8@72 False:u8@73 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@92 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@122 False:u8@124 False:u8@126 False:u8@128 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@137 False:u8@138 False:u8@140 False:u8@141 False:u8@142 False:u8@143 False:u8@144 False:u8@146 False:u8@147 False:u8@148 False:u8@149 False:u8@150 False:u8@152 False:u8@153 False:u8@154 False:u8@155 False:u8@156 False:u8@159 False:u8@161 False:u8@163 False:u8@164 False:u8@165 False:u8@166 False:u8@167 False:u8@168 False:u8@169 False:u8@170 False:u8@171 False:u8@172 False:u8@173 False:u8@174 False:u8@175 False:u8@183 False:u8@200 False:u8@201 False:u8@203 False:u8@204 False:u8@205 False:u8@208 False:u8@211 False:u8@213 False:u8@214 False:u8@215 False:u8@217 False:u8@219 False:u8@221 False:u8@222 False:u8@223 False:u8@224 False:u8@225 False:u8@228 False:u8@229 False:u8@230 False:u8@232 False:u8@233 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:i32@4 False:i32@5 False:i32@6 False:i32@61 False:i32@62 False:i32@140 False:i32@141 False:i32@146 False:i32@147 False:i32@152 False:i32@153 False:i32@163 False:i32@164 False:i32@165 False:i32@166 False:i32@167 False:i32@168 False:i32@169 False:i32@170 False:i32@171 False:i32@172 False:i32@221 False:i32@222 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@53 False:variant_bool@54 False:variant_bool@61 False:variant_bool@62 False:variant_bool@63 False:variant_bool@64 False:variant_bool@68 False:variant_bool@69 False:variant_bool@72 False:variant_bool@136 False:variant_bool@137 False:variant_bool@140 False:variant_bool@141 False:variant_bool@142 False:variant_bool@143 False:variant_bool@146 False:variant_bool@147 False:variant_bool@148 False:variant_bool@149 False:variant_bool@152 False:variant_bool@153 False:variant_bool@154 False:variant_bool@155 False:variant_bool@163 False:variant_bool@164 False:variant_bool@165 False:variant_bool@166 False:variant_bool@167 False:variant_bool@168 False:variant_bool@169 False:variant_bool@170 False:variant_bool@171 False:variant_bool@172 False:variant_bool@173 False:variant_bool@174 False:variant_bool@200 False:variant_bool@203 False:variant_bool@204 False:variant_bool@213 False:variant_bool@214 False:variant_bool@221 False:variant_bool@222 False:variant_bool@223 False:variant_bool@224 False:variant_bool@228 False:variant_bool@229 False:variant_bool@232 True:u8@0 True:u8@3 True:u8@10 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@49 True:u8@50 True:u8@52 True:u8@157 True:u8@158 True:u8@160 True:u8@162 True:u8@176 True:u8@182 True:u8@202 True:u8@207 True:u8@209 True:u8@210 True:u8@212 True:i32@3 True:i32@10 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@52 True:i32@162 True:i32@202 True:i32@212 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1b 09 1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d +2026-04-25T06:24:11.274Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:11.274Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:11.275Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x928d1c0"",""0xafeea0"",""0x26829a42""]" 0 2 0x2 +2026-04-25T06:24:11.275Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x928d1c0"",""0xafeea0"",""0x26829a42""]" 1 39 0x928d1c0 True:u8@1 False:u8@2 False:u8@19 False:u8@20 False:u8@22 False:u8@26 False:u8@28 False:u8@30 False:u8@33 False:u8@34 False:u8@36 False:u8@37 False:u8@38 False:variant_bool@19 False:variant_bool@33 False:variant_bool@36 False:variant_bool@37 True:u8@1 1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T06:24:11.276Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9b43020"",""0x4197ad83"",""0x9299584"",""0x9299574"",""0x641add04"",""0x0""]" 0 85 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@65 False:u8@66 False:u8@68 False:u8@72 False:u8@74 False:u8@76 False:u8@79 False:u8@80 False:u8@82 False:u8@83 False:u8@84 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@65 False:variant_bool@79 False:variant_bool@82 False:variant_bool@83 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T06:24:11.277Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:11.277Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:11.293Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x5c"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x5c"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 0 92 0x7c373a8 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@50 True:u8@52 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@46 False:u8@47 False:u8@51 False:u8@53 False:u8@55 False:u8@58 False:u8@59 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@44 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@45 False:variant_bool@46 False:variant_bool@58 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@50 True:u8@52 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c +2026-04-25T06:24:11.293Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x5c"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x5c"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:11.293Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x5c"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x5c"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:11.293Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:11.295Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x69"",""0x7c2c958"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x69"",""0x7c2c958"",""0x206"",""0x3"",""0x7797a94""]" 0 105 0x7c2c958 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@102 True:u8@103 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@51 False:u8@52 False:u8@86 False:u8@87 False:u8@88 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@104 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@50 False:variant_bool@51 False:variant_bool@86 False:variant_bool@87 False:variant_bool@90 False:variant_bool@91 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@102 True:u8@103 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 01 00 3b 00 00 00 00 00 00 00 f6 74 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 01 00 +2026-04-25T06:24:11.295Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x69"",""0x7c2c958"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x69"",""0x7c2c958"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:11.295Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x69"",""0x7c2c958"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x69"",""0x7c2c958"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:11.295Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:11.297Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x2c2"",""0x7c1ed10"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x2c2"",""0x7c1ed10"",""0x206"",""0x3"",""0x7797a94""]" 0 706 0x7c1ed10 True:u8@0 True:u8@10 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@201 True:u8@202 True:u8@204 True:u8@206 True:u8@220 True:i32@10 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 False:u8@1 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@52 False:u8@53 False:u8@54 False:u8@56 False:u8@57 False:u8@60 False:u8@62 False:u8@64 False:u8@66 False:u8@68 False:u8@70 False:u8@72 False:u8@74 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@92 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@121 False:u8@122 False:u8@124 False:u8@125 False:u8@126 False:u8@128 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@138 False:u8@140 False:u8@142 False:u8@144 False:u8@146 False:u8@148 False:u8@149 False:u8@150 False:u8@152 False:u8@153 False:u8@154 False:u8@156 False:u8@158 False:u8@160 False:u8@162 False:u8@164 False:u8@166 False:u8@168 False:u8@170 False:u8@172 False:u8@174 False:u8@176 False:u8@178 False:u8@180 False:u8@182 False:u8@184 False:u8@186 False:u8@188 False:u8@190 False:u8@192 False:u8@193 False:u8@194 False:u8@196 False:u8@197 False:u8@198 False:u8@199 False:u8@200 False:u8@203 False:u8@205 False:u8@207 False:u8@211 False:u8@213 False:u8@215 False:u8@218 False:u8@219 False:u8@222 False:u8@223 False:u8@224 False:u8@226 False:u8@228 False:u8@230 False:u8@232 False:u8@234 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:i32@4 False:i32@5 False:i32@6 False:i32@196 False:i32@197 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@52 False:variant_bool@53 False:variant_bool@56 False:variant_bool@120 False:variant_bool@121 False:variant_bool@124 False:variant_bool@125 False:variant_bool@148 False:variant_bool@149 False:variant_bool@152 False:variant_bool@153 False:variant_bool@192 False:variant_bool@193 False:variant_bool@196 False:variant_bool@197 False:variant_bool@198 False:variant_bool@199 False:variant_bool@218 False:variant_bool@222 False:variant_bool@223 True:u8@0 True:u8@10 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@201 True:u8@202 True:u8@204 True:u8@206 True:u8@220 True:i32@10 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f +2026-04-25T06:24:11.297Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x2c2"",""0x7c1ed10"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x2c2"",""0x7c1ed10"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:11.297Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x2c2"",""0x7c1ed10"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x2c2"",""0x7c1ed10"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:11.298Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:11.299Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x97"",""0x1051950"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x97"",""0x1051950"",""0x206"",""0x3"",""0x7797a94""]" 0 151 0x1051950 True:u8@0 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@85 True:u8@102 True:u8@115 True:u8@135 True:u8@148 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@85 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@51 False:u8@52 False:u8@86 False:u8@87 False:u8@88 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@105 False:u8@106 False:u8@107 False:u8@108 False:u8@116 False:u8@117 False:u8@119 False:u8@120 False:u8@121 False:u8@123 False:u8@124 False:u8@125 False:u8@127 False:u8@138 False:u8@139 False:u8@140 False:u8@149 False:u8@150 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@105 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@50 False:variant_bool@51 False:variant_bool@86 False:variant_bool@87 False:variant_bool@90 False:variant_bool@91 False:variant_bool@105 False:variant_bool@106 False:variant_bool@107 False:variant_bool@116 False:variant_bool@119 False:variant_bool@120 False:variant_bool@123 False:variant_bool@124 False:variant_bool@138 False:variant_bool@139 False:variant_bool@149 True:u8@0 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@85 True:u8@102 True:u8@115 True:u8@135 True:u8@148 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@85 01 00 69 00 00 00 00 00 00 00 d2 e9 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 08 24 97 44 b2 e1 3f 4a a7 cb b4 68 c9 97 a9 02 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T06:24:11.299Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x97"",""0x1051950"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x97"",""0x1051950"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:11.299Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x97"",""0x1051950"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x97"",""0x1051950"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:11.300Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:11.404Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9b43020"",""0x4197ad6f"",""0x91b7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@2 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:i32@1 False:i32@2 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@1 False:variant_bool@2 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 00 00 00 00 00 00 00 00 f6 74 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:11.405Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:11.407Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x9b43020"",""0x4197ad6f"",""0x91b7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 False:u8@1 False:u8@2 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:i32@1 False:i32@2 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@1 False:variant_bool@2 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 01 00 00 00 00 00 00 00 00 00 d2 e9 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:11.408Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:12.179Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xaff1d0 "[""0x5f78ff0"",""0x1"",""0x1"",""0xb"",""0x0"",""0xffff"",""0x0"",""0x1"",""0xc2b46254"",""0x74794704""]" +2026-04-25T06:24:12.180Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:24:12.283Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d7f0"",""0xafeea0"",""0x26829a42""]" 0 2 0x2 +2026-04-25T06:24:12.283Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d7f0"",""0xafeea0"",""0x26829a42""]" 1 37 0x928d7f0 True:u8@1 True:u8@17 True:u8@33 True:i32@33 True:variant_bool@18 True:variant_bool@19 False:u8@2 False:u8@4 False:u8@8 False:u8@10 False:u8@12 False:u8@15 False:u8@16 False:u8@21 False:u8@22 False:u8@23 False:u8@24 False:u8@25 False:u8@26 False:u8@27 False:u8@28 False:u8@34 False:u8@35 False:u8@36 False:i32@21 False:i32@22 False:i32@23 False:i32@24 False:i32@25 False:variant_bool@15 False:variant_bool@21 False:variant_bool@22 False:variant_bool@23 False:variant_bool@24 False:variant_bool@25 False:variant_bool@26 False:variant_bool@27 False:variant_bool@34 False:variant_bool@35 True:u8@1 True:u8@17 True:u8@33 True:i32@33 True:variant_bool@18 True:variant_bool@19 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 01 00 00 00 +2026-04-25T06:24:12.283Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9b43020"",""0x4197ad83"",""0x91b77f4"",""0x91b77e4"",""0x641add04"",""0x0""]" 0 83 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:u8@79 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@79 True:variant_bool@64 True:variant_bool@65 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@54 False:u8@56 False:u8@58 False:u8@61 False:u8@62 False:u8@67 False:u8@68 False:u8@69 False:u8@70 False:u8@71 False:u8@72 False:u8@73 False:u8@74 False:u8@80 False:u8@81 False:u8@82 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@67 False:i32@68 False:i32@69 False:i32@70 False:i32@71 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@61 False:variant_bool@67 False:variant_bool@68 False:variant_bool@69 False:variant_bool@70 False:variant_bool@71 False:variant_bool@72 False:variant_bool@73 False:variant_bool@80 False:variant_bool@81 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:u8@79 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@79 True:variant_bool@64 True:variant_bool@65 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 01 00 00 00 +2026-04-25T06:24:12.284Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:12.284Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:12.289Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 0 51 0x7c373a8 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@46 False:u8@47 False:u8@50 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@44 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@45 False:variant_bool@46 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:24:12.289Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:12.289Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:12.289Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:12.291Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x10541b8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x10541b8"",""0x206"",""0x3"",""0x7797a94""]" 0 85 0x10541b8 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@82 True:u8@83 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@51 False:u8@52 False:u8@70 False:u8@71 False:u8@72 False:u8@74 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@50 False:variant_bool@51 False:variant_bool@70 False:variant_bool@71 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@82 True:u8@83 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 01 00 27 00 00 00 00 00 00 00 f9 74 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 03 00 00 00 c0 00 f0 58 d4 21 7c d4 dc 01 01 ff +2026-04-25T06:24:12.291Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x10541b8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x10541b8"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:12.291Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x10541b8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x10541b8"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:12.292Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:12.389Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9b43020"",""0x4197ad6f"",""0x91b7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@2 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:i32@1 False:i32@2 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@1 False:variant_bool@2 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 00 00 00 00 00 00 00 00 f9 74 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:12.389Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:12.904Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xaff1d0 "[""0x5f78ff0"",""0x1"",""0x1"",""0xb"",""0x0"",""0x0"",""0x0"",""0x1"",""0xc2b46254"",""0x74794704""]" +2026-04-25T06:24:12.904Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:24:13.009Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d298"",""0xafeea0"",""0x26829a42""]" 0 2 0x2 +2026-04-25T06:24:13.009Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d298"",""0xafeea0"",""0x26829a42""]" 1 37 0x928d298 True:u8@1 True:u8@17 True:variant_bool@19 False:u8@2 False:u8@4 False:u8@8 False:u8@10 False:u8@12 False:u8@15 False:u8@16 False:u8@18 False:u8@21 False:u8@22 False:u8@23 False:u8@24 False:u8@25 False:u8@26 False:u8@27 False:u8@28 False:u8@34 False:u8@35 False:u8@36 False:i32@21 False:i32@22 False:i32@23 False:i32@24 False:i32@25 False:variant_bool@15 False:variant_bool@21 False:variant_bool@22 False:variant_bool@23 False:variant_bool@24 False:variant_bool@25 False:variant_bool@26 False:variant_bool@27 False:variant_bool@34 False:variant_bool@35 True:u8@1 True:u8@17 True:variant_bool@19 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 02 00 00 00 +2026-04-25T06:24:13.010Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9b43020"",""0x4197ad83"",""0x92999dc"",""0x92999cc"",""0x641add04"",""0x0""]" 0 83 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:variant_bool@65 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@54 False:u8@56 False:u8@58 False:u8@61 False:u8@62 False:u8@64 False:u8@67 False:u8@68 False:u8@69 False:u8@70 False:u8@71 False:u8@72 False:u8@73 False:u8@74 False:u8@80 False:u8@81 False:u8@82 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@67 False:i32@68 False:i32@69 False:i32@70 False:i32@71 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@61 False:variant_bool@67 False:variant_bool@68 False:variant_bool@69 False:variant_bool@70 False:variant_bool@71 False:variant_bool@72 False:variant_bool@73 False:variant_bool@80 False:variant_bool@81 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:variant_bool@65 01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 02 00 00 00 +2026-04-25T06:24:13.010Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:13.011Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:13.056Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c9d1c0"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c9d1c0"",""0x206"",""0x3"",""0x7797a94""]" 0 51 0x7c9d1c0 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@46 False:u8@47 False:u8@50 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@44 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@45 False:variant_bool@46 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:24:13.056Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c9d1c0"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c9d1c0"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:13.056Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c9d1c0"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c9d1c0"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:13.056Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:13.057Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x1051950"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x1051950"",""0x206"",""0x3"",""0x7797a94""]" 0 85 0x1051950 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@82 True:u8@83 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@51 False:u8@52 False:u8@70 False:u8@71 False:u8@72 False:u8@74 False:u8@84 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@50 False:variant_bool@51 False:variant_bool@70 False:variant_bool@71 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@82 True:u8@83 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 01 00 27 00 00 00 00 00 00 00 fd 74 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 03 00 00 00 c0 00 e0 61 49 22 7c d4 dc 01 01 00 +2026-04-25T06:24:13.057Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x1051950"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x1051950"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:13.057Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x1051950"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x1051950"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:13.058Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:13.116Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9b43020"",""0x4197ad6f"",""0x91b7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@2 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:i32@1 False:i32@2 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@1 False:variant_bool@2 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 00 00 00 00 00 00 00 00 fd 74 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:13.117Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:13.631Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xaff1d0 "[""0x5f78ff0"",""0x1"",""0x1"",""0xb"",""0x0"",""0xffff"",""0x0"",""0x1"",""0xc2b46254"",""0x74794704""]" +2026-04-25T06:24:13.632Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:24:13.684Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d1c0"",""0xafeea0"",""0x26829a42""]" 0 2 0x2 +2026-04-25T06:24:13.684Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d1c0"",""0xafeea0"",""0x26829a42""]" 1 37 0x928d1c0 True:u8@1 True:u8@17 True:variant_bool@18 True:variant_bool@19 False:u8@2 False:u8@4 False:u8@8 False:u8@10 False:u8@12 False:u8@15 False:u8@16 False:u8@21 False:u8@22 False:u8@23 False:u8@24 False:u8@25 False:u8@26 False:u8@27 False:u8@28 False:u8@34 False:u8@35 False:u8@36 False:i32@21 False:i32@22 False:i32@23 False:i32@24 False:i32@25 False:variant_bool@15 False:variant_bool@21 False:variant_bool@22 False:variant_bool@23 False:variant_bool@24 False:variant_bool@25 False:variant_bool@26 False:variant_bool@27 False:variant_bool@34 False:variant_bool@35 True:u8@1 True:u8@17 True:variant_bool@18 True:variant_bool@19 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 03 00 00 00 +2026-04-25T06:24:13.685Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9b43020"",""0x4197ad83"",""0x91b77f4"",""0x91b77e4"",""0x641add04"",""0x0""]" 0 83 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:variant_bool@64 True:variant_bool@65 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@54 False:u8@56 False:u8@58 False:u8@61 False:u8@62 False:u8@67 False:u8@68 False:u8@69 False:u8@70 False:u8@71 False:u8@72 False:u8@73 False:u8@74 False:u8@80 False:u8@81 False:u8@82 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@67 False:i32@68 False:i32@69 False:i32@70 False:i32@71 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@61 False:variant_bool@67 False:variant_bool@68 False:variant_bool@69 False:variant_bool@70 False:variant_bool@71 False:variant_bool@72 False:variant_bool@73 False:variant_bool@80 False:variant_bool@81 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:variant_bool@64 True:variant_bool@65 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 03 00 00 00 +2026-04-25T06:24:13.686Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:13.686Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:13.720Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 0 51 0x7c373a8 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@46 False:u8@47 False:u8@50 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@44 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@45 False:variant_bool@46 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:24:13.720Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:13.720Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x33"",""0x7c373a8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x33"",""0x7c373a8"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:13.721Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:13.721Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x7ca26e8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x7ca26e8"",""0x206"",""0x3"",""0x7797a94""]" 0 85 0x7ca26e8 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@82 True:u8@83 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@51 False:u8@52 False:u8@70 False:u8@71 False:u8@72 False:u8@74 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@7 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@50 False:variant_bool@51 False:variant_bool@70 False:variant_bool@71 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@49 True:u8@82 True:u8@83 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@49 01 00 27 00 00 00 00 00 00 00 00 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 03 00 00 00 c0 00 70 da ae 22 7c d4 dc 01 01 ff +2026-04-25T06:24:13.721Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x7ca26e8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x7ca26e8"",""0x206"",""0x3"",""0x7797a94""]" 1 518 0x3 +2026-04-25T06:24:13.721Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91bc738 "[""0x55"",""0x7ca26e8"",""0x74dee90"",""0x76ffedd8"",""0x91bc744"",""0x55"",""0x7ca26e8"",""0x206"",""0x3"",""0x7797a94""]" 2 3 0x7797a94 98 5c dd +2026-04-25T06:24:13.721Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:13.790Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9b43020"",""0x4197ad6f"",""0x91b7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@2 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:i32@1 False:i32@2 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@7 False:variant_bool@1 False:variant_bool@2 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:i32@0 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 00 00 00 00 00 00 00 00 00 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:13.791Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:17.692Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x928d010"",""0xaff05c"",""0x2682988e""]" 0 1 0x2 +2026-04-25T06:24:17.692Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x928d010"",""0xaff05c"",""0x2682988e""]" 1 58 0x928d010 True:u8@1 True:u8@19 True:u8@33 True:u8@38 True:u8@40 True:i32@33 False:u8@2 False:u8@20 False:u8@24 False:u8@26 False:u8@28 False:u8@31 False:u8@32 False:u8@34 False:u8@35 False:u8@36 False:u8@39 False:u8@41 False:u8@45 False:u8@47 False:u8@49 False:u8@52 False:u8@53 False:u8@55 False:u8@56 False:u8@57 False:variant_bool@31 False:variant_bool@34 False:variant_bool@35 False:variant_bool@52 False:variant_bool@55 False:variant_bool@56 True:u8@1 True:u8@19 True:u8@33 True:u8@38 True:u8@40 True:i32@33 21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:24:17.693Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x9b43020"",""0x4197afdf"",""0x91b77f4"",""0x91b77e4"",""0x641add04"",""0x64""]" 0 104 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@65 True:u8@79 True:u8@84 True:u8@86 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@79 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@66 False:u8@70 False:u8@72 False:u8@74 False:u8@77 False:u8@78 False:u8@80 False:u8@81 False:u8@82 False:u8@85 False:u8@87 False:u8@91 False:u8@93 False:u8@95 False:u8@98 False:u8@99 False:u8@101 False:u8@102 False:u8@103 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@77 False:variant_bool@80 False:variant_bool@81 False:variant_bool@98 False:variant_bool@101 False:variant_bool@102 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@65 True:u8@79 True:u8@84 True:u8@86 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@79 01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:24:17.694Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:17.694Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:17.695Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d250"",""0xaff05c"",""0x2682988e""]" 0 2 0x2 +2026-04-25T06:24:17.695Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x928d250"",""0xaff05c"",""0x2682988e""]" 1 37 0x928d250 True:u8@1 False:u8@2 False:u8@20 False:u8@24 False:u8@26 False:u8@28 False:u8@31 False:u8@32 False:u8@34 False:u8@35 False:u8@36 False:variant_bool@31 False:variant_bool@34 False:variant_bool@35 True:u8@1 21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T06:24:17.696Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91bc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9b43020"",""0x4197afdf"",""0x9299584"",""0x9299574"",""0x641add04"",""0x64""]" 0 83 0x9b43020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@66 False:u8@70 False:u8@72 False:u8@74 False:u8@77 False:u8@78 False:u8@80 False:u8@81 False:u8@82 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@77 False:variant_bool@80 False:variant_bool@81 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T06:24:17.697Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:17.698Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/024-frida-write-test-bool-sequence/frida-exit.txt b/captures/024-frida-write-test-bool-sequence/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/024-frida-write-test-bool-sequence/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/024-frida-write-test-bool-sequence/frida.stderr.txt b/captures/024-frida-write-test-bool-sequence/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/024-frida-write-test-bool-sequence/frida.stdout.jsonl b/captures/024-frida-write-test-bool-sequence/frida.stdout.jsonl new file mode 100644 index 0000000..7562d38 --- /dev/null +++ b/captures/024-frida-write-test-bool-sequence/frida.stdout.jsonl @@ -0,0 +1,91 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBool --type=bool --values=true,false,true --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\024-frida-write-test-bool-sequence\harness.log --client=MxFridaTrace-024-frida-write-test-bool-sequence`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBool --type=bool --values=true,false,true --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\024-frida-write-test-bool-sequence\harness.log --client=MxFridaTrace-024-frida-write-test-bool-sequence`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:24:03.946Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:24:03.947Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:24:03.948Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:24:03.948Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:24:03.949Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:24:11.091Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:24:11.092Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:24:11.092Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:24:11.093Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xaff1dc","args":["0x5f78ff0","0x1","0x1","0xc2b46254","0x74794704"],"time":"2026-04-25T06:24:11.146Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:24:11.147Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91bc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x91c0648","0xafeea0","0x26829a42"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x91c0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1b 09 1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:24:11.271Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x1","0x168","0x9b43020","0x4197ad83","0x91c0214","0x91c0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9b43020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1b 09 1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:24:11.273Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:11.274Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:11.274Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91bc738","0x1","0x1","0x2","0x2","0x0","0x27","0x928d1c0","0xafeea0","0x26829a42"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x928d1c0","hex":"1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:11.275Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x55","0x9b43020","0x4197ad83","0x9299584","0x9299574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9b43020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:11.276Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:11.277Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:11.277Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x5c","0x7c373a8","0x74dee90","0x76ffedd8","0x91bc744","0x5c","0x7c373a8","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7c373a8","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:11.293Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:11.293Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x69","0x7c2c958","0x74dee90","0x76ffedd8","0x91bc744","0x69","0x7c2c958","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x7c2c958","hex":"01 00 3b 00 00 00 00 00 00 00 f6 74 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:11.295Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:11.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x2c2","0x7c1ed10","0x74dee90","0x76ffedd8","0x91bc744","0x2c2","0x7c1ed10","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7c1ed10","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:11.297Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:11.298Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x97","0x1051950","0x74dee90","0x76ffedd8","0x91bc744","0x97","0x1051950","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x1051950","hex":"01 00 69 00 00 00 00 00 00 00 d2 e9 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 08 24 97 44 b2 e1 3f 4a a7 cb b4 68 c9 97 a9 02 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:11.299Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:11.300Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x2e","0x9b43020","0x4197ad6f","0x91b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9b43020","hex":"01 00 00 00 00 00 00 00 00 00 f6 74 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:11.404Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:11.405Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x1","0x2e","0x9b43020","0x4197ad6f","0x91b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9b43020","hex":"01 00 00 00 00 00 00 00 00 00 d2 e9 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:11.407Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:11.408Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xaff1d0","args":["0x5f78ff0","0x1","0x1","0xb","0x0","0xffff","0x0","0x1","0xc2b46254","0x74794704"],"time":"2026-04-25T06:24:12.179Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:24:12.180Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91bc738","0x1","0x1","0x2","0x2","0x0","0x25","0x928d7f0","0xafeea0","0x26829a42"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x928d7f0","hex":"37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 01 00 00 00"}],"time":"2026-04-25T06:24:12.283Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x53","0x9b43020","0x4197ad83","0x91b77f4","0x91b77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9b43020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 01 00 00 00"}],"time":"2026-04-25T06:24:12.283Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:12.284Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:12.284Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x33","0x7c373a8","0x74dee90","0x76ffedd8","0x91bc744","0x33","0x7c373a8","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7c373a8","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:12.289Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:12.289Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x55","0x10541b8","0x74dee90","0x76ffedd8","0x91bc744","0x55","0x10541b8","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x10541b8","hex":"01 00 27 00 00 00 00 00 00 00 f9 74 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 03 00 00 00 c0 00 f0 58 d4 21 7c d4 dc 01 01 ff"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:12.291Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:12.292Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x2e","0x9b43020","0x4197ad6f","0x91b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9b43020","hex":"01 00 00 00 00 00 00 00 00 00 f9 74 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:12.389Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:12.389Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xaff1d0","args":["0x5f78ff0","0x1","0x1","0xb","0x0","0x0","0x0","0x1","0xc2b46254","0x74794704"],"time":"2026-04-25T06:24:12.904Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:24:12.904Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91bc738","0x1","0x1","0x2","0x2","0x0","0x25","0x928d298","0xafeea0","0x26829a42"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x928d298","hex":"37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 02 00 00 00"}],"time":"2026-04-25T06:24:13.009Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x53","0x9b43020","0x4197ad83","0x92999dc","0x92999cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9b43020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 02 00 00 00"}],"time":"2026-04-25T06:24:13.010Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:13.010Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:13.011Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x33","0x7c9d1c0","0x74dee90","0x76ffedd8","0x91bc744","0x33","0x7c9d1c0","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7c9d1c0","hex":"01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:13.056Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:13.056Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x55","0x1051950","0x74dee90","0x76ffedd8","0x91bc744","0x55","0x1051950","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x1051950","hex":"01 00 27 00 00 00 00 00 00 00 fd 74 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 03 00 00 00 c0 00 e0 61 49 22 7c d4 dc 01 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:13.057Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:13.058Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x2e","0x9b43020","0x4197ad6f","0x91b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9b43020","hex":"01 00 00 00 00 00 00 00 00 00 fd 74 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:13.116Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:13.117Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xaff1d0","args":["0x5f78ff0","0x1","0x1","0xb","0x0","0xffff","0x0","0x1","0xc2b46254","0x74794704"],"time":"2026-04-25T06:24:13.631Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:24:13.632Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91bc738","0x1","0x1","0x2","0x2","0x0","0x25","0x928d1c0","0xafeea0","0x26829a42"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x928d1c0","hex":"37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 03 00 00 00"}],"time":"2026-04-25T06:24:13.684Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x53","0x9b43020","0x4197ad83","0x91b77f4","0x91b77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9b43020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 03 00 00 00"}],"time":"2026-04-25T06:24:13.685Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:13.686Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:13.686Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x33","0x7c373a8","0x74dee90","0x76ffedd8","0x91bc744","0x33","0x7c373a8","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7c373a8","hex":"01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:13.720Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:13.721Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91bc738","args":["0x55","0x7ca26e8","0x74dee90","0x76ffedd8","0x91bc744","0x55","0x7ca26e8","0x206","0x3","0x7797a94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x7ca26e8","hex":"01 00 27 00 00 00 00 00 00 00 00 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 03 00 00 00 c0 00 70 da ae 22 7c d4 dc 01 01 ff"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7797a94","hex":"98 5c dd"}],"time":"2026-04-25T06:24:13.721Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:13.721Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x2e","0x9b43020","0x4197ad6f","0x91b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9b43020","hex":"01 00 00 00 00 00 00 00 00 00 00 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:13.790Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:13.791Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91bc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x928d010","0xaff05c","0x2682988e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x928d010","hex":"21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:24:17.692Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x1","0x68","0x9b43020","0x4197afdf","0x91b77f4","0x91b77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9b43020","hex":"01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:24:17.693Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:17.694Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:17.694Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91bc738","0x1","0x1","0x2","0x2","0x0","0x25","0x928d250","0xaff05c","0x2682988e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x928d250","hex":"21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:17.695Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91bc738","args":["0x1","0x1","0x2","0x53","0x9b43020","0x4197afdf","0x9299584","0x9299574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9b43020","hex":"01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 75 a4 2f 89 c7 a3 b7 4a 84 6a 27 33 53 86 48 0c 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:17.696Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:17.697Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:17.698Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/024-frida-write-test-bool-sequence/harness.log b/captures/024-frida-write-test-bool-sequence/harness.log new file mode 100644 index 0000000..32130c1 --- /dev/null +++ b/captures/024-frida-write-test-bool-sequence/harness.log @@ -0,0 +1,27 @@ +2026-04-25T06:24:03.8488336+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-024-frida-write-test-bool-sequence","Tags":["TestChildObject.TestBool"],"WriteType":"bool","WriteValue":"","WriteValues":["true","false","true"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:24:10.7850665+00:00 mx.register.begin {"ClientName":"MxFridaTrace-024-frida-write-test-bool-sequence"} +2026-04-25T06:24:11.1421136+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:24:11.1431133+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-25T06:24:11.1451201+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T06:24:11.1461138+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T06:24:11.1471126+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T06:24:11.4017053+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:12.1779280+00:00 mx.write.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1} +2026-04-25T06:24:12.1809243+00:00 mx.write.end {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:24:12.3888401+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"True"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:24:12.287 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:12.3928030+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:24:12.9039755+00:00 mx.write.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.Boolean","Value":"False"},"UserId":1} +2026-04-25T06:24:12.9049433+00:00 mx.write.end {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":1} +2026-04-25T06:24:13.1142844+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:24:13.054 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:13.1193117+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:24:13.6310561+00:00 mx.write.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1} +2026-04-25T06:24:13.6320511+00:00 mx.write.end {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":2} +2026-04-25T06:24:13.7894977+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"True"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:24:13.719 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:13.7924865+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:24:17.6786703+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T06:24:17.6797164+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T06:24:17.6797164+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T06:24:17.6797164+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T06:24:17.6797164+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:24:21.5664309+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:24:21.5724331+00:00 harness.stop {} diff --git a/captures/025-frida-write-test-float-sequence/frida-command.txt b/captures/025-frida-write-test-float-sequence/frida-command.txt new file mode 100644 index 0000000..0f080ef --- /dev/null +++ b/captures/025-frida-write-test-float-sequence/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestFloat --type=float --values=1.25,2.5,3.75 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\025-frida-write-test-float-sequence\harness.log --client=MxFridaTrace-025-frida-write-test-float-sequence diff --git a/captures/025-frida-write-test-float-sequence/frida-events.tsv b/captures/025-frida-write-test-float-sequence/frida-events.tsv new file mode 100644 index 0000000..26ceac5 --- /dev/null +++ b/captures/025-frida-write-test-float-sequence/frida-events.tsv @@ -0,0 +1,107 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T06:24:42.541Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T06:24:42.542Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T06:24:42.542Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T06:24:42.543Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T06:24:42.543Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T06:24:49.590Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T06:24:49.591Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T06:24:49.592Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T06:24:49.592Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T06:24:49.685Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xf3eb1c "[""0x6538ff0"",""0x1"",""0x1"",""0xc41389c2"",""0x74794704""]" +2026-04-25T06:24:49.685Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T06:24:49.810Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x95f0648"",""0xf3e7e0"",""0x782e0f40""]" 0 1 0x2 +2026-04-25T06:24:49.810Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x95f0648"",""0xf3e7e0"",""0x782e0f40""]" 1 314 0x95f0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5e 09 1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 +2026-04-25T06:24:49.812Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa0b1020"",""0xe14d710"",""0x95f0214"",""0x95f0204"",""0x641add04"",""0x0""]" 0 360 0xa0b1020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5e 09 1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d +2026-04-25T06:24:49.813Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:49.813Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:49.814Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x96bde68"",""0xf3e7e0"",""0x782e0f40""]" 0 2 0x2 +2026-04-25T06:24:49.814Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x96bde68"",""0xf3e7e0"",""0x782e0f40""]" 1 39 0x96bde68 1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00 +2026-04-25T06:24:49.815Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa0b1020"",""0xe14d710"",""0x96c9584"",""0x96c9574"",""0x641add04"",""0x0""]" 0 85 0xa0b1020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00 +2026-04-25T06:24:49.816Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:49.816Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:49.827Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x5c"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x5c"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 0 92 0x8110950 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 +2026-04-25T06:24:49.827Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x5c"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x5c"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:49.827Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x5c"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x5c"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:49.827Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:49.829Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x6c"",""0x811c4a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x6c"",""0x811c4a8"",""0x206"",""0x3"",""0x8275474""]" 0 108 0x811c4a8 01 00 3e 00 00 00 00 00 00 00 4a 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 03 00 00 00 00 +2026-04-25T06:24:49.829Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x6c"",""0x811c4a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x6c"",""0x811c4a8"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:49.829Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x6c"",""0x811c4a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x6c"",""0x811c4a8"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:49.829Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:49.864Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x2c2"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x2c2"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 0 706 0x7d005a8 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f +2026-04-25T06:24:49.864Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x2c2"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x2c2"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:49.864Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x2c2"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x2c2"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:49.864Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:49.866Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x97"",""0x811d5b0"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x97"",""0x811d5b0"",""0x206"",""0x3"",""0x8275474""]" 0 151 0x811d5b0 01 00 69 00 00 00 00 00 00 00 6d ea 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 c4 08 77 69 27 15 52 4e 82 b3 a6 62 14 f8 61 19 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T06:24:49.866Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x97"",""0x811d5b0"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x97"",""0x811d5b0"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:49.866Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x97"",""0x811d5b0"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x97"",""0x811d5b0"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:49.866Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:49.937Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa0b1020"",""0xe14d77c"",""0x95e7010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa0b1020 01 00 00 00 00 00 00 00 00 00 4a 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:49.938Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:49.939Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0xa0b1020"",""0xe14d77c"",""0x95e7010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa0b1020 01 00 00 00 00 00 00 00 00 00 6d ea 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:49.940Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:50.714Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xf3eb10 "[""0x6538ff0"",""0x1"",""0x1"",""0x4"",""0x0"",""0x3fa00000"",""0x0"",""0x1"",""0xc41389c2"",""0x74794704""]" +2026-04-25T06:24:50.714Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:24:50.767Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x96bde68"",""0xf3e7e0"",""0x782e0f40""]" 0 2 0x2 +2026-04-25T06:24:50.767Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x96bde68"",""0xf3e7e0"",""0x782e0f40""]" 1 40 0x96bde68 1.25:f32@18 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 a0 3f ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 01 00 00 00 +2026-04-25T06:24:50.767Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa0b1020"",""0xe14d710"",""0x95e77f4"",""0x95e77e4"",""0x641add04"",""0x0""]" 0 86 0xa0b1020 1.25:f32@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 a0 3f ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 01 00 00 00 +2026-04-25T06:24:50.768Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:50.769Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:50.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 0 51 0x8110950 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:24:50.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:50.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:50.819Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:50.820Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x811c4a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x811c4a8"",""0x206"",""0x3"",""0x8275474""]" 0 88 0x811c4a8 1.25:f32@84 01 00 2a 00 00 00 00 00 00 00 4d 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 03 00 00 00 c0 00 10 8f cb 38 7c d4 dc 01 03 00 00 a0 3f +2026-04-25T06:24:50.820Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x811c4a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x811c4a8"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:50.820Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x811c4a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x811c4a8"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:50.820Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:50.927Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa0b1020"",""0xe14d77c"",""0x95e7010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa0b1020 01 00 00 00 00 00 00 00 00 00 4d 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:50.928Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:51.441Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xf3eb10 "[""0x6538ff0"",""0x1"",""0x1"",""0x4"",""0x0"",""0x40200000"",""0x0"",""0x1"",""0xc41389c2"",""0x74794704""]" +2026-04-25T06:24:51.441Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:24:51.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x96bdcb8"",""0xf3e7e0"",""0x782e0f40""]" 0 2 0x2 +2026-04-25T06:24:51.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x96bdcb8"",""0xf3e7e0"",""0x782e0f40""]" 1 40 0x96bdcb8 2.5:f32@18 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 20 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 02 00 00 00 +2026-04-25T06:24:51.546Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa0b1020"",""0xe14d710"",""0x96c99dc"",""0x96c99cc"",""0x641add04"",""0x0""]" 0 86 0xa0b1020 2.5:f32@64 01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 20 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 02 00 00 00 +2026-04-25T06:24:51.546Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:51.547Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:51.554Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 0 51 0x7d005a8 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:24:51.554Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:51.554Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:51.555Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:51.556Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x811d5b0"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x811d5b0"",""0x206"",""0x3"",""0x8275474""]" 0 88 0x811d5b0 2.5:f32@84 01 00 2a 00 00 00 00 00 00 00 51 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 03 00 00 00 c0 00 10 dd 3b 39 7c d4 dc 01 03 00 00 20 40 +2026-04-25T06:24:51.556Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x811d5b0"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x811d5b0"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:51.556Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x811d5b0"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x811d5b0"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:51.556Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:51.651Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa0b1020"",""0xe14d77c"",""0x95e7010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa0b1020 01 00 00 00 00 00 00 00 00 00 51 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:51.652Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:52.163Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xf3eb10 "[""0x6538ff0"",""0x1"",""0x1"",""0x4"",""0x0"",""0x40700000"",""0x0"",""0x1"",""0xc41389c2"",""0x74794704""]" +2026-04-25T06:24:52.163Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:24:52.216Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x96bdd48"",""0xf3e7e0"",""0x782e0f40""]" 0 2 0x2 +2026-04-25T06:24:52.216Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x96bdd48"",""0xf3e7e0"",""0x782e0f40""]" 1 40 0x96bdd48 3.75:f32@18 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 70 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 03 00 00 00 +2026-04-25T06:24:52.217Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa0b1020"",""0xe14d710"",""0x95e77f4"",""0x95e77e4"",""0x641add04"",""0x0""]" 0 86 0xa0b1020 3.75:f32@64 01 00 28 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 70 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 03 00 00 00 +2026-04-25T06:24:52.217Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:52.217Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:52.234Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 0 51 0x8110950 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:24:52.234Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:52.234Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x33"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x33"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:52.234Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:52.235Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 0 88 0x7d005a8 3.75:f32@84 01 00 2a 00 00 00 00 00 00 00 54 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 03 00 00 00 c0 00 80 78 a3 39 7c d4 dc 01 03 00 00 70 40 +2026-04-25T06:24:52.235Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:52.235Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x58"",""0x7d005a8"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x58"",""0x7d005a8"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:52.235Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:52.323Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0xa0b1020"",""0xe14d77c"",""0x95e7010"",""0x0"",""0x0"",""0x0""]" 0 46 0xa0b1020 01 00 00 00 00 00 00 00 00 00 54 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:52.324Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:56.232Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x96bd8c8"",""0xf3e99c"",""0x782e010c""]" 0 1 0x2 +2026-04-25T06:24:56.232Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x96bd8c8"",""0xf3e99c"",""0x782e010c""]" 1 58 0x96bd8c8 21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:24:56.235Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0xa0b1020"",""0xe14d9cc"",""0x95e77f4"",""0x95e77e4"",""0x641add04"",""0x64""]" 0 104 0xa0b1020 01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:24:56.236Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:56.237Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:24:56.237Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x96bdc28"",""0xf3e99c"",""0x782e010c""]" 0 2 0x2 +2026-04-25T06:24:56.237Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x96bdc28"",""0xf3e99c"",""0x782e010c""]" 1 37 0x96bdc28 21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00 +2026-04-25T06:24:56.241Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95ec738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0xa0b1020"",""0xe14d9cc"",""0x96c9584"",""0x96c9574"",""0x641add04"",""0x64""]" 0 83 0xa0b1020 01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00 +2026-04-25T06:24:56.242Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x2e"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x2e"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 0 46 0x8110950 01 00 00 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:24:56.242Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x2e"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x2e"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 1 518 0x3 +2026-04-25T06:24:56.242Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95ec738 "[""0x2e"",""0x8110950"",""0x79dedb0"",""0x76ffedd8"",""0x95ec744"",""0x2e"",""0x8110950"",""0x206"",""0x3"",""0x8275474""]" 2 3 0x8275474 58 2b 14 +2026-04-25T06:24:56.243Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:24:56.243Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:24:56.243Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/025-frida-write-test-float-sequence/frida-exit.txt b/captures/025-frida-write-test-float-sequence/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/025-frida-write-test-float-sequence/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/025-frida-write-test-float-sequence/frida.stderr.txt b/captures/025-frida-write-test-float-sequence/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/025-frida-write-test-float-sequence/frida.stdout.jsonl b/captures/025-frida-write-test-float-sequence/frida.stdout.jsonl new file mode 100644 index 0000000..819ccce --- /dev/null +++ b/captures/025-frida-write-test-float-sequence/frida.stdout.jsonl @@ -0,0 +1,93 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestFloat --type=float --values=1.25,2.5,3.75 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\025-frida-write-test-float-sequence\harness.log --client=MxFridaTrace-025-frida-write-test-float-sequence`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestFloat --type=float --values=1.25,2.5,3.75 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\025-frida-write-test-float-sequence\harness.log --client=MxFridaTrace-025-frida-write-test-float-sequence`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:24:42.541Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:24:42.542Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:24:42.542Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:24:42.543Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:24:42.543Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:24:49.590Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:24:49.591Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:24:49.592Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:24:49.592Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xf3eb1c","args":["0x6538ff0","0x1","0x1","0xc41389c2","0x74794704"],"time":"2026-04-25T06:24:49.685Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:24:49.685Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95ec738","0x1","0x1","0x1","0x2","0x0","0x13a","0x95f0648","0xf3e7e0","0x782e0f40"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x95f0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5e 09 1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:24:49.810Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x1","0x168","0xa0b1020","0xe14d710","0x95f0214","0x95f0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa0b1020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5e 09 1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:24:49.812Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:49.813Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:49.813Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95ec738","0x1","0x1","0x2","0x2","0x0","0x27","0x96bde68","0xf3e7e0","0x782e0f40"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x96bde68","hex":"1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:49.814Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x55","0xa0b1020","0xe14d710","0x96c9584","0x96c9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa0b1020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:49.815Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:49.816Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:49.816Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x5c","0x8110950","0x79dedb0","0x76ffedd8","0x95ec744","0x5c","0x8110950","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8110950","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:49.827Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:49.827Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x6c","0x811c4a8","0x79dedb0","0x76ffedd8","0x95ec744","0x6c","0x811c4a8","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x811c4a8","hex":"01 00 3e 00 00 00 00 00 00 00 4a 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 03 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:49.829Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:49.829Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x2c2","0x7d005a8","0x79dedb0","0x76ffedd8","0x95ec744","0x2c2","0x7d005a8","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7d005a8","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:49.864Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:49.864Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x97","0x811d5b0","0x79dedb0","0x76ffedd8","0x95ec744","0x97","0x811d5b0","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x811d5b0","hex":"01 00 69 00 00 00 00 00 00 00 6d ea 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 c4 08 77 69 27 15 52 4e 82 b3 a6 62 14 f8 61 19 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:49.866Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:49.866Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x2e","0xa0b1020","0xe14d77c","0x95e7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa0b1020","hex":"01 00 00 00 00 00 00 00 00 00 4a 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:49.937Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:49.938Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x1","0x2e","0xa0b1020","0xe14d77c","0x95e7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa0b1020","hex":"01 00 00 00 00 00 00 00 00 00 6d ea 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:49.939Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:49.940Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf3eb10","args":["0x6538ff0","0x1","0x1","0x4","0x0","0x3fa00000","0x0","0x1","0xc41389c2","0x74794704"],"time":"2026-04-25T06:24:50.714Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:24:50.714Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95ec738","0x1","0x1","0x2","0x2","0x0","0x28","0x96bde68","0xf3e7e0","0x782e0f40"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x96bde68","hex":"37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 a0 3f ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 01 00 00 00"}],"time":"2026-04-25T06:24:50.767Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x56","0xa0b1020","0xe14d710","0x95e77f4","0x95e77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa0b1020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 a0 3f ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 01 00 00 00"}],"time":"2026-04-25T06:24:50.767Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:50.768Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:50.769Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x33","0x8110950","0x79dedb0","0x76ffedd8","0x95ec744","0x33","0x8110950","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x8110950","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:50.819Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:50.819Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x58","0x811c4a8","0x79dedb0","0x76ffedd8","0x95ec744","0x58","0x811c4a8","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x811c4a8","hex":"01 00 2a 00 00 00 00 00 00 00 4d 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 03 00 00 00 c0 00 10 8f cb 38 7c d4 dc 01 03 00 00 a0 3f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:50.820Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:50.820Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x2e","0xa0b1020","0xe14d77c","0x95e7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa0b1020","hex":"01 00 00 00 00 00 00 00 00 00 4d 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:50.927Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:50.928Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf3eb10","args":["0x6538ff0","0x1","0x1","0x4","0x0","0x40200000","0x0","0x1","0xc41389c2","0x74794704"],"time":"2026-04-25T06:24:51.441Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:24:51.441Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95ec738","0x1","0x1","0x2","0x2","0x0","0x28","0x96bdcb8","0xf3e7e0","0x782e0f40"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x96bdcb8","hex":"37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 20 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 02 00 00 00"}],"time":"2026-04-25T06:24:51.545Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x56","0xa0b1020","0xe14d710","0x96c99dc","0x96c99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa0b1020","hex":"01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 20 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 02 00 00 00"}],"time":"2026-04-25T06:24:51.546Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:51.546Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:51.547Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x33","0x7d005a8","0x79dedb0","0x76ffedd8","0x95ec744","0x33","0x7d005a8","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7d005a8","hex":"01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:51.554Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:51.555Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x58","0x811d5b0","0x79dedb0","0x76ffedd8","0x95ec744","0x58","0x811d5b0","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x811d5b0","hex":"01 00 2a 00 00 00 00 00 00 00 51 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 03 00 00 00 c0 00 10 dd 3b 39 7c d4 dc 01 03 00 00 20 40"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:51.556Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:51.556Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x2e","0xa0b1020","0xe14d77c","0x95e7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa0b1020","hex":"01 00 00 00 00 00 00 00 00 00 51 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:51.651Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:51.652Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf3eb10","args":["0x6538ff0","0x1","0x1","0x4","0x0","0x40700000","0x0","0x1","0xc41389c2","0x74794704"],"time":"2026-04-25T06:24:52.163Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:24:52.163Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95ec738","0x1","0x1","0x2","0x2","0x0","0x28","0x96bdd48","0xf3e7e0","0x782e0f40"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x96bdd48","hex":"37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 70 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 03 00 00 00"}],"time":"2026-04-25T06:24:52.216Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x56","0xa0b1020","0xe14d710","0x95e77f4","0x95e77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa0b1020","hex":"01 00 28 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 70 40 ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 03 00 00 00"}],"time":"2026-04-25T06:24:52.217Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:52.217Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:52.217Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x33","0x8110950","0x79dedb0","0x76ffedd8","0x95ec744","0x33","0x8110950","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x8110950","hex":"01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:52.234Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:52.234Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x58","0x7d005a8","0x79dedb0","0x76ffedd8","0x95ec744","0x58","0x7d005a8","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7d005a8","hex":"01 00 2a 00 00 00 00 00 00 00 54 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 03 00 00 00 c0 00 80 78 a3 39 7c d4 dc 01 03 00 00 70 40"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:52.235Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:52.235Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x2e","0xa0b1020","0xe14d77c","0x95e7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa0b1020","hex":"01 00 00 00 00 00 00 00 00 00 54 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:24:52.323Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:52.324Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95ec738","0x1","0x1","0x1","0x2","0x0","0x3a","0x96bd8c8","0xf3e99c","0x782e010c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x96bd8c8","hex":"21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:24:56.232Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x1","0x68","0xa0b1020","0xe14d9cc","0x95e77f4","0x95e77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0xa0b1020","hex":"01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:24:56.235Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:56.236Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:56.237Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95ec738","0x1","0x1","0x2","0x2","0x0","0x25","0x96bdc28","0xf3e99c","0x782e010c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x96bdc28","hex":"21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:56.237Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95ec738","args":["0x1","0x1","0x2","0x53","0xa0b1020","0xe14d9cc","0x96c9584","0x96c9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa0b1020","hex":"01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 f0 9b 78 72 35 c0 c4 4c a5 16 5c d4 76 bc 23 d4 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00"}],"time":"2026-04-25T06:24:56.241Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95ec738","args":["0x2e","0x8110950","0x79dedb0","0x76ffedd8","0x95ec744","0x2e","0x8110950","0x206","0x3","0x8275474"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x8110950","hex":"01 00 00 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x8275474","hex":"58 2b 14"}],"time":"2026-04-25T06:24:56.242Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:24:56.243Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:24:56.243Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:24:56.243Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/025-frida-write-test-float-sequence/harness.log b/captures/025-frida-write-test-float-sequence/harness.log new file mode 100644 index 0000000..0875dcb --- /dev/null +++ b/captures/025-frida-write-test-float-sequence/harness.log @@ -0,0 +1,27 @@ +2026-04-25T06:24:42.4675358+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-025-frida-write-test-float-sequence","Tags":["TestChildObject.TestFloat"],"WriteType":"float","WriteValue":"","WriteValues":["1.25","2.5","3.75"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:24:49.3274682+00:00 mx.register.begin {"ClientName":"MxFridaTrace-025-frida-write-test-float-sequence"} +2026-04-25T06:24:49.6800854+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:24:49.6800854+00:00 mx.additem.begin {"Tag":"TestChildObject.TestFloat"} +2026-04-25T06:24:49.6821479+00:00 mx.additem.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T06:24:49.6830853+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T06:24:49.6850829+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T06:24:49.9351484+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Single","Value":"0"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:50.7129339+00:00 mx.write.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Single","Value":"1.25"},"UserId":1} +2026-04-25T06:24:50.7149406+00:00 mx.write.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:24:50.9260939+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Single","Value":"1.25"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:24:50.817 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:50.9310983+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:24:51.4409992+00:00 mx.write.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.Single","Value":"2.5"},"UserId":1} +2026-04-25T06:24:51.4419943+00:00 mx.write.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":1} +2026-04-25T06:24:51.6505400+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Single","Value":"2.5"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:24:51.553 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:51.6535528+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:24:52.1637825+00:00 mx.write.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.Single","Value":"3.75"},"UserId":1} +2026-04-25T06:24:52.1647787+00:00 mx.write.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":2} +2026-04-25T06:24:52.3228235+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Single","Value":"3.75"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:24:52.232 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:24:52.3268939+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:24:56.2154652+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T06:24:56.2164628+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T06:24:56.2164628+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T06:24:56.2164628+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T06:24:56.2164628+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:25:00.2078444+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:25:00.2128250+00:00 harness.stop {} diff --git a/captures/026-frida-write-test-double-sequence/frida-command.txt b/captures/026-frida-write-test-double-sequence/frida-command.txt new file mode 100644 index 0000000..a1e2dd5 --- /dev/null +++ b/captures/026-frida-write-test-double-sequence/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestDouble --type=double --values=1.125,2.25,4.5 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\026-frida-write-test-double-sequence\harness.log --client=MxFridaTrace-026-frida-write-test-double-sequence diff --git a/captures/026-frida-write-test-double-sequence/frida-events.tsv b/captures/026-frida-write-test-double-sequence/frida-events.tsv new file mode 100644 index 0000000..08b1971 --- /dev/null +++ b/captures/026-frida-write-test-double-sequence/frida-events.tsv @@ -0,0 +1,103 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T06:25:20.602Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T06:25:20.602Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T06:25:20.603Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T06:25:20.603Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T06:25:20.604Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T06:25:27.856Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T06:25:27.857Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T06:25:27.858Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T06:25:27.858Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T06:25:27.926Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xb3ec6c "[""0x5e08ff0"",""0x1"",""0x1"",""0x116da592"",""0x74794704""]" +2026-04-25T06:25:27.927Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T06:25:28.056Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x91d0648"",""0xb3e930"",""0x6c07d660""]" 0 1 0x2 +2026-04-25T06:25:28.056Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x91d0648"",""0xb3e930"",""0x6c07d660""]" 1 314 0x91d0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 +2026-04-25T06:25:28.059Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9c99020"",""0x7d66439d"",""0x91d0214"",""0x91d0204"",""0x641add04"",""0x0""]" 0 360 0x9c99020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d +2026-04-25T06:25:28.060Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:28.060Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:25:28.060Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x929cf38"",""0xb3e930"",""0x6c07d660""]" 0 2 0x2 +2026-04-25T06:25:28.060Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x929cf38"",""0xb3e930"",""0x6c07d660""]" 1 39 0x929cf38 1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00 +2026-04-25T06:25:28.062Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9c99020"",""0x7d66439d"",""0x92a9584"",""0x92a9574"",""0x641add04"",""0x0""]" 0 85 0x9c99020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00 +2026-04-25T06:25:28.062Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:28.063Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:25:28.084Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x2c2"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x2c2"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 0 706 0x79fd620 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f +2026-04-25T06:25:28.084Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x2c2"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x2c2"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:28.084Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x2c2"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x2c2"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:28.084Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:28.085Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x97"",""0x7782c68"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x97"",""0x7782c68"",""0x206"",""0x3"",""0x77adf54""]" 0 151 0x7782c68 01 00 69 00 00 00 00 00 00 00 06 eb 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 02 26 4f 68 87 f6 e6 49 8c f9 ad ef b2 3d 5c ac 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T06:25:28.085Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x97"",""0x7782c68"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x97"",""0x7782c68"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:28.085Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x97"",""0x7782c68"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x97"",""0x7782c68"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:28.086Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:28.107Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 0 92 0x79f6ff0 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e +2026-04-25T06:25:28.107Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:28.107Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:28.108Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:28.109Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x70"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x70"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 0 112 0x79fd620 01 00 42 00 00 00 00 00 00 00 9e 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 04 00 00 00 00 00 00 00 00 +2026-04-25T06:25:28.109Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x70"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x70"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:28.109Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x70"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x70"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:28.109Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:28.168Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x9c99020"",""0x7d6643b1"",""0x91c7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9c99020 01 00 00 00 00 00 00 00 00 00 06 eb 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:25:28.169Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:28.188Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9c99020"",""0x7d6643b1"",""0x91c7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9c99020 01 00 00 00 00 00 00 00 00 00 9e 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:25:28.190Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:28.962Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xb3ec60 "[""0x5e08ff0"",""0x1"",""0x1"",""0x5"",""0x0"",""0x0"",""0x3ff20000"",""0x1"",""0x116da592"",""0x74794704""]" +2026-04-25T06:25:28.962Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:25:29.168Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x929ce60"",""0xb3e930"",""0x6c07d660""]" 0 2 0x2 +2026-04-25T06:25:29.168Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x929ce60"",""0xb3e930"",""0x6c07d660""]" 1 44 0x929ce60 1.125:f64@18 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 f2 3f ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 01 00 00 00 +2026-04-25T06:25:29.168Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x5a"",""0x9c99020"",""0x7d66439d"",""0x91c77f4"",""0x91c77e4"",""0x641add04"",""0x0""]" 0 90 0x9c99020 1.125:f64@64 01 00 2c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 f2 3f ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 01 00 00 00 +2026-04-25T06:25:29.169Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:29.170Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:25:29.219Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 0 51 0x79f6ff0 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:25:29.219Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:29.219Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:29.220Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:29.221Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0xf52e08"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0xf52e08"",""0x206"",""0x3"",""0x77adf54""]" 0 92 0xf52e08 1.125:f64@84 01 00 2e 00 00 00 00 00 00 00 a1 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 03 00 00 00 c0 00 20 16 af 4f 7c d4 dc 01 04 00 00 00 00 00 00 f2 3f +2026-04-25T06:25:29.221Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0xf52e08"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0xf52e08"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:29.221Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0xf52e08"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0xf52e08"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:29.221Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:29.275Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9c99020"",""0x7d6643b1"",""0x91c7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9c99020 01 00 00 00 00 00 00 00 00 00 a1 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:25:29.275Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:29.689Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xb3ec60 "[""0x5e08ff0"",""0x1"",""0x1"",""0x5"",""0x0"",""0x0"",""0x40020000"",""0x1"",""0x116da592"",""0x74794704""]" +2026-04-25T06:25:29.689Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:25:29.792Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x929c7e8"",""0xb3e930"",""0x6c07d660""]" 0 2 0x2 +2026-04-25T06:25:29.792Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x929c7e8"",""0xb3e930"",""0x6c07d660""]" 1 44 0x929c7e8 2.25:f64@18 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 02 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 02 00 00 00 +2026-04-25T06:25:29.793Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x5a"",""0x9c99020"",""0x7d66439d"",""0x92a9584"",""0x92a9574"",""0x641add04"",""0x0""]" 0 90 0x9c99020 2.25:f64@64 01 00 2c 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 02 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 02 00 00 00 +2026-04-25T06:25:29.793Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:29.794Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:25:29.825Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 0 51 0x79fd620 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:25:29.825Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:29.825Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:29.825Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:29.826Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0xf60b70"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0xf60b70"",""0x206"",""0x3"",""0x77adf54""]" 0 92 0xf60b70 2.25:f64@84 01 00 2e 00 00 00 00 00 00 00 a4 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 03 00 00 00 c0 00 f0 66 0b 50 7c d4 dc 01 04 00 00 00 00 00 00 02 40 +2026-04-25T06:25:29.826Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0xf60b70"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0xf60b70"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:29.826Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0xf60b70"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0xf60b70"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:29.827Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:29.901Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9c99020"",""0x7d6643b1"",""0x91c7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9c99020 01 00 00 00 00 00 00 00 00 00 a4 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:25:29.902Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:30.415Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xb3ec60 "[""0x5e08ff0"",""0x1"",""0x1"",""0x5"",""0x0"",""0x0"",""0x40120000"",""0x1"",""0x116da592"",""0x74794704""]" +2026-04-25T06:25:30.416Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:25:30.468Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x929cb48"",""0xb3e930"",""0x6c07d660""]" 0 2 0x2 +2026-04-25T06:25:30.468Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x929cb48"",""0xb3e930"",""0x6c07d660""]" 1 44 0x929cb48 4.5:f64@18 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 12 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 03 00 00 00 +2026-04-25T06:25:30.469Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x5a"",""0x9c99020"",""0x7d66439d"",""0x91c77f4"",""0x91c77e4"",""0x641add04"",""0x0""]" 0 90 0x9c99020 4.5:f64@64 01 00 2c 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 12 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 03 00 00 00 +2026-04-25T06:25:30.470Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:30.470Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:25:30.506Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 0 51 0x79f6ff0 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:25:30.506Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:30.506Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x33"",""0x79f6ff0"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x33"",""0x79f6ff0"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:30.506Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:30.508Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 0 92 0x79fd620 4.5:f64@84 01 00 2e 00 00 00 00 00 00 00 a8 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 03 00 00 00 c0 00 80 50 73 50 7c d4 dc 01 04 00 00 00 00 00 00 12 40 +2026-04-25T06:25:30.508Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 1 518 0x3 +2026-04-25T06:25:30.508Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x79fd620"",""0x744ef60"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x79fd620"",""0x206"",""0x3"",""0x77adf54""]" 2 3 0x77adf54 b8 d7 72 +2026-04-25T06:25:30.508Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:25:30.574Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9c99020"",""0x7d6643b1"",""0x91c7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9c99020 01 00 00 00 00 00 00 00 00 00 a8 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:25:30.575Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:34.479Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x929ccf8"",""0xb3eaec"",""0x6c07d42c""]" 0 1 0x2 +2026-04-25T06:25:34.479Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x929ccf8"",""0xb3eaec"",""0x6c07d42c""]" 1 58 0x929ccf8 21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:25:34.480Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x9c99020"",""0x7d664221"",""0x91c77f4"",""0x91c77e4"",""0x641add04"",""0x64""]" 0 104 0x9c99020 01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:25:34.481Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:34.481Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:25:34.482Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x929cf38"",""0xb3eaec"",""0x6c07d42c""]" 0 2 0x2 +2026-04-25T06:25:34.482Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x929cf38"",""0xb3eaec"",""0x6c07d42c""]" 1 37 0x929cf38 21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00 +2026-04-25T06:25:34.483Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9c99020"",""0x7d664221"",""0x92a99dc"",""0x92a99cc"",""0x641add04"",""0x64""]" 0 83 0x9c99020 01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00 +2026-04-25T06:25:34.484Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:25:34.484Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/026-frida-write-test-double-sequence/frida-exit.txt b/captures/026-frida-write-test-double-sequence/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/026-frida-write-test-double-sequence/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/026-frida-write-test-double-sequence/frida.stderr.txt b/captures/026-frida-write-test-double-sequence/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/026-frida-write-test-double-sequence/frida.stdout.jsonl b/captures/026-frida-write-test-double-sequence/frida.stdout.jsonl new file mode 100644 index 0000000..74fd3cc --- /dev/null +++ b/captures/026-frida-write-test-double-sequence/frida.stdout.jsonl @@ -0,0 +1,91 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDouble --type=double --values=1.125,2.25,4.5 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\026-frida-write-test-double-sequence\harness.log --client=MxFridaTrace-026-frida-write-test-double-sequence`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDouble --type=double --values=1.125,2.25,4.5 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\026-frida-write-test-double-sequence\harness.log --client=MxFridaTrace-026-frida-write-test-double-sequence`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:25:20.602Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:25:20.602Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:25:20.603Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:25:20.603Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:25:20.604Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:25:27.856Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:25:27.857Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:25:27.858Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:25:27.858Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xb3ec6c","args":["0x5e08ff0","0x1","0x1","0x116da592","0x74794704"],"time":"2026-04-25T06:25:27.926Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:25:27.927Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x91d0648","0xb3e930","0x6c07d660"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x91d0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:25:28.056Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x1","0x168","0x9c99020","0x7d66439d","0x91d0214","0x91d0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9c99020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:25:28.059Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:28.060Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:25:28.060Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x2","0x2","0x0","0x27","0x929cf38","0xb3e930","0x6c07d660"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x929cf38","hex":"1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00"}],"time":"2026-04-25T06:25:28.060Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x55","0x9c99020","0x7d66439d","0x92a9584","0x92a9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9c99020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00"}],"time":"2026-04-25T06:25:28.062Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:28.062Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:25:28.063Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x2c2","0x79fd620","0x744ef60","0x76ffedd8","0x91cc744","0x2c2","0x79fd620","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x79fd620","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:28.084Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:28.084Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x97","0x7782c68","0x744ef60","0x76ffedd8","0x91cc744","0x97","0x7782c68","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7782c68","hex":"01 00 69 00 00 00 00 00 00 00 06 eb 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 02 26 4f 68 87 f6 e6 49 8c f9 ad ef b2 3d 5c ac 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:28.085Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:28.086Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x5c","0x79f6ff0","0x744ef60","0x76ffedd8","0x91cc744","0x5c","0x79f6ff0","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x79f6ff0","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:28.107Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:28.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x70","0x79fd620","0x744ef60","0x76ffedd8","0x91cc744","0x70","0x79fd620","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x79fd620","hex":"01 00 42 00 00 00 00 00 00 00 9e 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 04 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:28.109Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:28.109Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x1","0x2e","0x9c99020","0x7d6643b1","0x91c7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9c99020","hex":"01 00 00 00 00 00 00 00 00 00 06 eb 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:25:28.168Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:28.169Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x2e","0x9c99020","0x7d6643b1","0x91c7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9c99020","hex":"01 00 00 00 00 00 00 00 00 00 9e 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:25:28.188Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:28.190Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xb3ec60","args":["0x5e08ff0","0x1","0x1","0x5","0x0","0x0","0x3ff20000","0x1","0x116da592","0x74794704"],"time":"2026-04-25T06:25:28.962Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:25:28.962Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x2","0x2","0x0","0x2c","0x929ce60","0xb3e930","0x6c07d660"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":44,"ptr":"0x929ce60","hex":"37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 f2 3f ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 01 00 00 00"}],"time":"2026-04-25T06:25:29.168Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x5a","0x9c99020","0x7d66439d","0x91c77f4","0x91c77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":90,"ptr":"0x9c99020","hex":"01 00 2c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 f2 3f ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 01 00 00 00"}],"time":"2026-04-25T06:25:29.168Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:29.169Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:25:29.170Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x33","0x79f6ff0","0x744ef60","0x76ffedd8","0x91cc744","0x33","0x79f6ff0","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x79f6ff0","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:29.219Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:29.220Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x5c","0xf52e08","0x744ef60","0x76ffedd8","0x91cc744","0x5c","0xf52e08","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xf52e08","hex":"01 00 2e 00 00 00 00 00 00 00 a1 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 03 00 00 00 c0 00 20 16 af 4f 7c d4 dc 01 04 00 00 00 00 00 00 f2 3f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:29.221Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:29.221Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x2e","0x9c99020","0x7d6643b1","0x91c7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9c99020","hex":"01 00 00 00 00 00 00 00 00 00 a1 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:25:29.275Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:29.275Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xb3ec60","args":["0x5e08ff0","0x1","0x1","0x5","0x0","0x0","0x40020000","0x1","0x116da592","0x74794704"],"time":"2026-04-25T06:25:29.689Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:25:29.689Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x2","0x2","0x0","0x2c","0x929c7e8","0xb3e930","0x6c07d660"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":44,"ptr":"0x929c7e8","hex":"37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 02 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 02 00 00 00"}],"time":"2026-04-25T06:25:29.792Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x5a","0x9c99020","0x7d66439d","0x92a9584","0x92a9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":90,"ptr":"0x9c99020","hex":"01 00 2c 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 02 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 02 00 00 00"}],"time":"2026-04-25T06:25:29.793Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:29.793Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:25:29.794Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x33","0x79fd620","0x744ef60","0x76ffedd8","0x91cc744","0x33","0x79fd620","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x79fd620","hex":"01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:29.825Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:29.825Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x5c","0xf60b70","0x744ef60","0x76ffedd8","0x91cc744","0x5c","0xf60b70","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xf60b70","hex":"01 00 2e 00 00 00 00 00 00 00 a4 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 03 00 00 00 c0 00 f0 66 0b 50 7c d4 dc 01 04 00 00 00 00 00 00 02 40"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:29.826Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:29.827Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x2e","0x9c99020","0x7d6643b1","0x91c7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9c99020","hex":"01 00 00 00 00 00 00 00 00 00 a4 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:25:29.901Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:29.902Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xb3ec60","args":["0x5e08ff0","0x1","0x1","0x5","0x0","0x0","0x40120000","0x1","0x116da592","0x74794704"],"time":"2026-04-25T06:25:30.415Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:25:30.416Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x2","0x2","0x0","0x2c","0x929cb48","0xb3e930","0x6c07d660"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":44,"ptr":"0x929cb48","hex":"37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 12 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 03 00 00 00"}],"time":"2026-04-25T06:25:30.468Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x5a","0x9c99020","0x7d66439d","0x91c77f4","0x91c77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":90,"ptr":"0x9c99020","hex":"01 00 2c 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 12 40 ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 03 00 00 00"}],"time":"2026-04-25T06:25:30.469Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:30.470Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:25:30.470Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x33","0x79f6ff0","0x744ef60","0x76ffedd8","0x91cc744","0x33","0x79f6ff0","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x79f6ff0","hex":"01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:30.506Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:30.506Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x5c","0x79fd620","0x744ef60","0x76ffedd8","0x91cc744","0x5c","0x79fd620","0x206","0x3","0x77adf54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x79fd620","hex":"01 00 2e 00 00 00 00 00 00 00 a8 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 03 00 00 00 c0 00 80 50 73 50 7c d4 dc 01 04 00 00 00 00 00 00 12 40"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77adf54","hex":"b8 d7 72"}],"time":"2026-04-25T06:25:30.508Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:25:30.508Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x2e","0x9c99020","0x7d6643b1","0x91c7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9c99020","hex":"01 00 00 00 00 00 00 00 00 00 a8 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:25:30.574Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:30.575Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x929ccf8","0xb3eaec","0x6c07d42c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x929ccf8","hex":"21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:25:34.479Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x1","0x68","0x9c99020","0x7d664221","0x91c77f4","0x91c77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9c99020","hex":"01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:25:34.480Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:34.481Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:25:34.481Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x2","0x2","0x0","0x25","0x929cf38","0xb3eaec","0x6c07d42c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x929cf38","hex":"21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00"}],"time":"2026-04-25T06:25:34.482Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x53","0x9c99020","0x7d664221","0x92a99dc","0x92a99cc","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9c99020","hex":"01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 21 83 1a ab d9 2e 4e 4b 90 b7 e4 46 17 d1 6a 4e 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00"}],"time":"2026-04-25T06:25:34.483Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:25:34.484Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:25:34.484Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/026-frida-write-test-double-sequence/harness.log b/captures/026-frida-write-test-double-sequence/harness.log new file mode 100644 index 0000000..b45c6a7 --- /dev/null +++ b/captures/026-frida-write-test-double-sequence/harness.log @@ -0,0 +1,27 @@ +2026-04-25T06:25:20.4951372+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-026-frida-write-test-double-sequence","Tags":["TestChildObject.TestDouble"],"WriteType":"double","WriteValue":"","WriteValues":["1.125","2.25","4.5"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:25:27.5494334+00:00 mx.register.begin {"ClientName":"MxFridaTrace-026-frida-write-test-double-sequence"} +2026-04-25T06:25:27.9234119+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:25:27.9234119+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDouble"} +2026-04-25T06:25:27.9253662+00:00 mx.additem.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T06:25:27.9263652+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T06:25:27.9273662+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T06:25:28.1872280+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Double","Value":"0"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:25:28.9602907+00:00 mx.write.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Double","Value":"1.125"},"UserId":1} +2026-04-25T06:25:28.9623187+00:00 mx.write.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:25:29.2746192+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Double","Value":"1.125"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:25:29.218 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:25:29.2786145+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:25:29.6890682+00:00 mx.write.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.Double","Value":"2.25"},"UserId":1} +2026-04-25T06:25:29.6901149+00:00 mx.write.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":1} +2026-04-25T06:25:29.8996280+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Double","Value":"2.25"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:25:29.823 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:25:29.9046192+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:25:30.4157977+00:00 mx.write.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.Double","Value":"4.5"},"UserId":1} +2026-04-25T06:25:30.4168089+00:00 mx.write.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":2} +2026-04-25T06:25:30.5745082+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Double","Value":"4.5"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:25:30.504 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:25:30.5785200+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:25:34.4597440+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T06:25:34.4607464+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T06:25:34.4607464+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T06:25:34.4617460+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T06:25:34.4617460+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:25:38.4060986+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:25:38.4120442+00:00 harness.stop {} diff --git a/captures/027-frida-write-test-string-sequence/frida-command.txt b/captures/027-frida-write-test-string-sequence/frida-command.txt new file mode 100644 index 0000000..580f14e --- /dev/null +++ b/captures/027-frida-write-test-string-sequence/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestString --type=string --values=AlphaMX,BetaMX,GammaMX --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\027-frida-write-test-string-sequence\harness.log --client=MxFridaTrace-027-frida-write-test-string-sequence diff --git a/captures/027-frida-write-test-string-sequence/frida-events.tsv b/captures/027-frida-write-test-string-sequence/frida-events.tsv new file mode 100644 index 0000000..e5ffa12 --- /dev/null +++ b/captures/027-frida-write-test-string-sequence/frida-events.tsv @@ -0,0 +1,103 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T06:26:00.778Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T06:26:00.778Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T06:26:00.778Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T06:26:00.779Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T06:26:00.780Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T06:26:07.921Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T06:26:07.923Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T06:26:07.924Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T06:26:07.924Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T06:26:07.975Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x1df27c "[""0x5788ff0"",""0x1"",""0x1"",""0x8f01c86c"",""0x74794704""]" +2026-04-25T06:26:07.976Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T06:26:08.103Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8aa0648"",""0x1def40"",""0xd98c27c5""]" 0 1 0x2 +2026-04-25T06:26:08.103Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8aa0648"",""0x1def40"",""0xd98c27c5""]" 1 314 0x8aa0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc a9 08 1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 +2026-04-25T06:26:08.107Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x956a020"",""0xaf9ba286"",""0x8aa0214"",""0x8aa0204"",""0x641add04"",""0x0""]" 0 360 0x956a020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc a9 08 1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d +2026-04-25T06:26:08.107Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:08.108Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:26:08.108Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8b6e918"",""0x1def40"",""0xd98c27c5""]" 0 2 0x2 +2026-04-25T06:26:08.108Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8b6e918"",""0x1def40"",""0xd98c27c5""]" 1 39 0x8b6e918 1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T06:26:08.109Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x956a020"",""0xaf9ba286"",""0x8b79584"",""0x8b79574"",""0x641add04"",""0x0""]" 0 85 0x956a020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T06:26:08.110Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:08.110Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:26:08.133Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x2c2"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x2c2"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 0 706 0x72528b8 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f +2026-04-25T06:26:08.133Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x2c2"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x2c2"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:08.133Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x2c2"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x2c2"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:08.134Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:08.135Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x97"",""0x72b5d18"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x97"",""0x72b5d18"",""0x206"",""0x3"",""0x70872ec""]" 0 151 0x72b5d18 01 00 69 00 00 00 00 00 00 00 a7 eb 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 37 97 a5 01 0f ce b8 48 82 23 80 08 73 95 16 5b b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T06:26:08.135Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x97"",""0x72b5d18"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x97"",""0x72b5d18"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:08.135Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x97"",""0x72b5d18"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x97"",""0x72b5d18"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:08.136Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:08.157Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x5c"",""0x72b4c10"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x5c"",""0x72b4c10"",""0x206"",""0x3"",""0x70872ec""]" 0 92 0x72b4c10 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc +2026-04-25T06:26:08.157Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x5c"",""0x72b4c10"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x5c"",""0x72b4c10"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:08.157Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x5c"",""0x72b4c10"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x5c"",""0x72b4c10"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:08.158Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:08.159Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x8e"",""0x7a1928"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x8e"",""0x7a1928"",""0x206"",""0x3"",""0x70872ec""]" 0 142 0x7a1928 01 00 60 00 00 00 00 00 00 00 f5 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 05 22 00 00 00 1e 00 00 00 48 00 65 00 6c 00 6c 00 6f 00 46 00 72 00 6f 00 6d 00 4f 00 70 00 63 00 55 00 61 00 00 00 +2026-04-25T06:26:08.159Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x8e"",""0x7a1928"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x8e"",""0x7a1928"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:08.159Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x8e"",""0x7a1928"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x8e"",""0x7a1928"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:08.159Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:08.214Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x956a020"",""0xaf9ba2aa"",""0x8a97010"",""0x0"",""0x0"",""0x0""]" 0 46 0x956a020 01 00 00 00 00 00 00 00 00 00 a7 eb 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:26:08.215Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:08.237Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x956a020"",""0xaf9ba2aa"",""0x8a97010"",""0x0"",""0x0"",""0x0""]" 0 46 0x956a020 01 00 00 00 00 00 00 00 00 00 f5 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:26:08.238Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:09.012Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x1df270 "[""0x5788ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x73d0204"",""0x0"",""0x1"",""0x8f01c86c"",""0x74794704""]" +2026-04-25T06:26:09.012Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:26:09.066Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3c"",""0x8b6e498"",""0x1def40"",""0xd98c27c5""]" 0 2 0x2 +2026-04-25T06:26:09.066Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3c"",""0x8b6e498"",""0x1def40"",""0xd98c27c5""]" 1 60 0x8b6e498 AlphaMX:utf16le@26 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 01 00 00 00 +2026-04-25T06:26:09.068Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x6a"",""0x956a020"",""0xaf9ba286"",""0x8a977f4"",""0x8a977e4"",""0x641add04"",""0x0""]" 0 106 0x956a020 AlphaMX:utf16le@72 01 00 3c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 01 00 00 00 +2026-04-25T06:26:09.068Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:09.069Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:26:09.106Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 0 51 0x72528b8 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:26:09.106Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:09.106Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:09.107Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:09.108Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6c"",""0x79a1f0"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6c"",""0x79a1f0"",""0x206"",""0x3"",""0x70872ec""]" 0 108 0x79a1f0 AlphaMX:utf16le@92 01 00 3e 00 00 00 00 00 00 00 f8 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed 03 00 00 00 c0 00 10 5c 75 67 7c d4 dc 01 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00 +2026-04-25T06:26:09.108Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6c"",""0x79a1f0"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6c"",""0x79a1f0"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:09.108Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6c"",""0x79a1f0"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6c"",""0x79a1f0"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:09.108Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:09.173Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x956a020"",""0xaf9ba2aa"",""0x8a97010"",""0x0"",""0x0"",""0x0""]" 0 46 0x956a020 01 00 00 00 00 00 00 00 00 00 f8 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:26:09.173Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:09.740Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x1df270 "[""0x5788ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x73cfe44"",""0x0"",""0x1"",""0x8f01c86c"",""0x74794704""]" +2026-04-25T06:26:09.740Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:26:09.844Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3a"",""0x8b6e8d0"",""0x1def40"",""0xd98c27c5""]" 0 2 0x2 +2026-04-25T06:26:09.844Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3a"",""0x8b6e8d0"",""0x1def40"",""0xd98c27c5""]" 1 58 0x8b6e8d0 BetaMX:utf16le@26 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 12 00 00 00 0e 00 00 00 42 00 65 00 74 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 02 00 00 00 +2026-04-25T06:26:09.845Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x68"",""0x956a020"",""0xaf9ba286"",""0x8b799dc"",""0x8b799cc"",""0x641add04"",""0x0""]" 0 104 0x956a020 BetaMX:utf16le@72 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 12 00 00 00 0e 00 00 00 42 00 65 00 74 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 02 00 00 00 +2026-04-25T06:26:09.846Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:09.846Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:26:09.849Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72b4c10"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72b4c10"",""0x206"",""0x3"",""0x70872ec""]" 0 51 0x72b4c10 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:26:09.849Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72b4c10"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72b4c10"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:09.849Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72b4c10"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72b4c10"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:09.850Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:09.851Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6a"",""0x7a1928"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6a"",""0x7a1928"",""0x206"",""0x3"",""0x70872ec""]" 0 106 0x7a1928 BetaMX:utf16le@92 01 00 3c 00 00 00 00 00 00 00 fb 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed 03 00 00 00 c0 00 80 bb e6 67 7c d4 dc 01 05 12 00 00 00 0e 00 00 00 42 00 65 00 74 00 61 00 4d 00 58 00 00 00 +2026-04-25T06:26:09.851Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6a"",""0x7a1928"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6a"",""0x7a1928"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:09.851Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6a"",""0x7a1928"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6a"",""0x7a1928"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:09.852Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:09.950Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x956a020"",""0xaf9ba2aa"",""0x8a97010"",""0x0"",""0x0"",""0x0""]" 0 46 0x956a020 01 00 00 00 00 00 00 00 00 00 fb 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:26:09.951Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:10.465Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x1df270 "[""0x5788ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x73cffd4"",""0x0"",""0x1"",""0x8f01c86c"",""0x74794704""]" +2026-04-25T06:26:10.465Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:26:10.518Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3c"",""0x8b6e180"",""0x1def40"",""0xd98c27c5""]" 0 2 0x2 +2026-04-25T06:26:10.518Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3c"",""0x8b6e180"",""0x1def40"",""0xd98c27c5""]" 1 60 0x8b6e180 GammaMX:utf16le@26 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 03 00 00 00 +2026-04-25T06:26:10.519Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x6a"",""0x956a020"",""0xaf9ba286"",""0x8a977f4"",""0x8a977e4"",""0x641add04"",""0x0""]" 0 106 0x956a020 GammaMX:utf16le@72 01 00 3c 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 03 00 00 00 +2026-04-25T06:26:10.519Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:10.520Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:26:10.554Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 0 51 0x72528b8 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:26:10.554Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:10.554Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x33"",""0x72528b8"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x33"",""0x72528b8"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:10.554Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:10.555Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6c"",""0x79a1f0"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6c"",""0x79a1f0"",""0x206"",""0x3"",""0x70872ec""]" 0 108 0x79a1f0 GammaMX:utf16le@92 01 00 3e 00 00 00 00 00 00 00 ff 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed 03 00 00 00 c0 00 90 4e 52 68 7c d4 dc 01 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 58 00 00 00 +2026-04-25T06:26:10.555Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6c"",""0x79a1f0"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6c"",""0x79a1f0"",""0x206"",""0x3"",""0x70872ec""]" 1 518 0x3 +2026-04-25T06:26:10.555Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8a9c738 "[""0x6c"",""0x79a1f0"",""0x6e1ec18"",""0x76ffedd8"",""0x8a9c744"",""0x6c"",""0x79a1f0"",""0x206"",""0x3"",""0x70872ec""]" 2 3 0x70872ec d0 c4 3d +2026-04-25T06:26:10.557Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:26:10.624Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x956a020"",""0xaf9ba2aa"",""0x8a97010"",""0x0"",""0x0"",""0x0""]" 0 46 0x956a020 01 00 00 00 00 00 00 00 00 00 ff 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:26:10.626Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:14.521Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x8b6e210"",""0x1df0fc"",""0xd98c3989""]" 0 1 0x2 +2026-04-25T06:26:14.521Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x8b6e210"",""0x1df0fc"",""0xd98c3989""]" 1 58 0x8b6e210 21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:26:14.522Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x956a020"",""0xaf9ba35a"",""0x8a977f4"",""0x8a977e4"",""0x641add04"",""0x64""]" 0 104 0x956a020 01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:26:14.522Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:14.523Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:26:14.524Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8b6e258"",""0x1df0fc"",""0xd98c3989""]" 0 2 0x2 +2026-04-25T06:26:14.524Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8a9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8b6e258"",""0x1df0fc"",""0xd98c3989""]" 1 37 0x8b6e258 21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T06:26:14.525Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8a9c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x956a020"",""0xaf9ba35a"",""0x8b79584"",""0x8b79574"",""0x641add04"",""0x64""]" 0 83 0x956a020 01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T06:26:14.525Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:26:14.526Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/027-frida-write-test-string-sequence/frida-exit.txt b/captures/027-frida-write-test-string-sequence/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/027-frida-write-test-string-sequence/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/027-frida-write-test-string-sequence/frida.stderr.txt b/captures/027-frida-write-test-string-sequence/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/027-frida-write-test-string-sequence/frida.stdout.jsonl b/captures/027-frida-write-test-string-sequence/frida.stdout.jsonl new file mode 100644 index 0000000..701d6b2 --- /dev/null +++ b/captures/027-frida-write-test-string-sequence/frida.stdout.jsonl @@ -0,0 +1,91 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestString --type=string --values=AlphaMX,BetaMX,GammaMX --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\027-frida-write-test-string-sequence\harness.log --client=MxFridaTrace-027-frida-write-test-string-sequence`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestString --type=string --values=AlphaMX,BetaMX,GammaMX --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\027-frida-write-test-string-sequence\harness.log --client=MxFridaTrace-027-frida-write-test-string-sequence`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:26:00.778Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:26:00.778Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:26:00.778Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:26:00.779Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:26:00.780Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:26:07.921Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:26:07.923Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:26:07.924Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:26:07.924Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x1df27c","args":["0x5788ff0","0x1","0x1","0x8f01c86c","0x74794704"],"time":"2026-04-25T06:26:07.975Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:26:07.976Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8a9c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8aa0648","0x1def40","0xd98c27c5"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8aa0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc a9 08 1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:26:08.103Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x1","0x168","0x956a020","0xaf9ba286","0x8aa0214","0x8aa0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x956a020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc a9 08 1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:26:08.107Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:08.107Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:26:08.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8a9c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8b6e918","0x1def40","0xd98c27c5"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8b6e918","hex":"1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T06:26:08.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x55","0x956a020","0xaf9ba286","0x8b79584","0x8b79574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x956a020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T06:26:08.109Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:08.110Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:26:08.110Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x2c2","0x72528b8","0x6e1ec18","0x76ffedd8","0x8a9c744","0x2c2","0x72528b8","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x72528b8","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:08.133Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:08.134Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x97","0x72b5d18","0x6e1ec18","0x76ffedd8","0x8a9c744","0x97","0x72b5d18","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x72b5d18","hex":"01 00 69 00 00 00 00 00 00 00 a7 eb 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 37 97 a5 01 0f ce b8 48 82 23 80 08 73 95 16 5b b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:08.135Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:08.136Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x5c","0x72b4c10","0x6e1ec18","0x76ffedd8","0x8a9c744","0x5c","0x72b4c10","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x72b4c10","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:08.157Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:08.158Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x8e","0x7a1928","0x6e1ec18","0x76ffedd8","0x8a9c744","0x8e","0x7a1928","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":142,"ptr":"0x7a1928","hex":"01 00 60 00 00 00 00 00 00 00 f5 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 05 22 00 00 00 1e 00 00 00 48 00 65 00 6c 00 6c 00 6f 00 46 00 72 00 6f 00 6d 00 4f 00 70 00 63 00 55 00 61 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:08.159Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:08.159Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x1","0x2e","0x956a020","0xaf9ba2aa","0x8a97010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x956a020","hex":"01 00 00 00 00 00 00 00 00 00 a7 eb 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:26:08.214Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:08.215Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x2e","0x956a020","0xaf9ba2aa","0x8a97010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x956a020","hex":"01 00 00 00 00 00 00 00 00 00 f5 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:26:08.237Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:08.238Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x1df270","args":["0x5788ff0","0x1","0x1","0x8","0x0","0x73d0204","0x0","0x1","0x8f01c86c","0x74794704"],"time":"2026-04-25T06:26:09.012Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:26:09.012Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8a9c738","0x1","0x1","0x2","0x2","0x0","0x3c","0x8b6e498","0x1def40","0xd98c27c5"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":60,"ptr":"0x8b6e498","hex":"37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 01 00 00 00"}],"time":"2026-04-25T06:26:09.066Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x6a","0x956a020","0xaf9ba286","0x8a977f4","0x8a977e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":106,"ptr":"0x956a020","hex":"01 00 3c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 01 00 00 00"}],"time":"2026-04-25T06:26:09.068Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:09.068Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:26:09.069Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x33","0x72528b8","0x6e1ec18","0x76ffedd8","0x8a9c744","0x33","0x72528b8","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x72528b8","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:09.106Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:09.107Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x6c","0x79a1f0","0x6e1ec18","0x76ffedd8","0x8a9c744","0x6c","0x79a1f0","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x79a1f0","hex":"01 00 3e 00 00 00 00 00 00 00 f8 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed 03 00 00 00 c0 00 10 5c 75 67 7c d4 dc 01 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:09.108Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:09.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x2e","0x956a020","0xaf9ba2aa","0x8a97010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x956a020","hex":"01 00 00 00 00 00 00 00 00 00 f8 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:26:09.173Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:09.173Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x1df270","args":["0x5788ff0","0x1","0x1","0x8","0x0","0x73cfe44","0x0","0x1","0x8f01c86c","0x74794704"],"time":"2026-04-25T06:26:09.740Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:26:09.740Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8a9c738","0x1","0x1","0x2","0x2","0x0","0x3a","0x8b6e8d0","0x1def40","0xd98c27c5"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8b6e8d0","hex":"37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 12 00 00 00 0e 00 00 00 42 00 65 00 74 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 02 00 00 00"}],"time":"2026-04-25T06:26:09.844Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x68","0x956a020","0xaf9ba286","0x8b799dc","0x8b799cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x956a020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 12 00 00 00 0e 00 00 00 42 00 65 00 74 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 02 00 00 00"}],"time":"2026-04-25T06:26:09.845Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:09.846Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:26:09.846Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x33","0x72b4c10","0x6e1ec18","0x76ffedd8","0x8a9c744","0x33","0x72b4c10","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x72b4c10","hex":"01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:09.849Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:09.850Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x6a","0x7a1928","0x6e1ec18","0x76ffedd8","0x8a9c744","0x6a","0x7a1928","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":106,"ptr":"0x7a1928","hex":"01 00 3c 00 00 00 00 00 00 00 fb 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed 03 00 00 00 c0 00 80 bb e6 67 7c d4 dc 01 05 12 00 00 00 0e 00 00 00 42 00 65 00 74 00 61 00 4d 00 58 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:09.851Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:09.852Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x2e","0x956a020","0xaf9ba2aa","0x8a97010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x956a020","hex":"01 00 00 00 00 00 00 00 00 00 fb 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:26:09.950Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:09.951Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x1df270","args":["0x5788ff0","0x1","0x1","0x8","0x0","0x73cffd4","0x0","0x1","0x8f01c86c","0x74794704"],"time":"2026-04-25T06:26:10.465Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:26:10.465Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8a9c738","0x1","0x1","0x2","0x2","0x0","0x3c","0x8b6e180","0x1def40","0xd98c27c5"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":60,"ptr":"0x8b6e180","hex":"37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 03 00 00 00"}],"time":"2026-04-25T06:26:10.518Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x6a","0x956a020","0xaf9ba286","0x8a977f4","0x8a977e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":106,"ptr":"0x956a020","hex":"01 00 3c 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 03 00 00 00"}],"time":"2026-04-25T06:26:10.519Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:10.519Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:26:10.520Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x33","0x72528b8","0x6e1ec18","0x76ffedd8","0x8a9c744","0x33","0x72528b8","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x72528b8","hex":"01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:10.554Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:10.554Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8a9c738","args":["0x6c","0x79a1f0","0x6e1ec18","0x76ffedd8","0x8a9c744","0x6c","0x79a1f0","0x206","0x3","0x70872ec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x79a1f0","hex":"01 00 3e 00 00 00 00 00 00 00 ff 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed 03 00 00 00 c0 00 90 4e 52 68 7c d4 dc 01 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 58 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70872ec","hex":"d0 c4 3d"}],"time":"2026-04-25T06:26:10.555Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:26:10.557Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x2e","0x956a020","0xaf9ba2aa","0x8a97010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x956a020","hex":"01 00 00 00 00 00 00 00 00 00 ff 75 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:26:10.624Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:10.626Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8a9c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x8b6e210","0x1df0fc","0xd98c3989"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8b6e210","hex":"21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:26:14.521Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x1","0x68","0x956a020","0xaf9ba35a","0x8a977f4","0x8a977e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x956a020","hex":"01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:26:14.522Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:14.522Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:26:14.523Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8a9c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8b6e258","0x1df0fc","0xd98c3989"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8b6e258","hex":"21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T06:26:14.524Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8a9c738","args":["0x1","0x1","0x2","0x53","0x956a020","0xaf9ba35a","0x8b79584","0x8b79574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x956a020","hex":"01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T06:26:14.525Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:26:14.525Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:26:14.526Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/027-frida-write-test-string-sequence/harness.log b/captures/027-frida-write-test-string-sequence/harness.log new file mode 100644 index 0000000..a5f04c6 --- /dev/null +++ b/captures/027-frida-write-test-string-sequence/harness.log @@ -0,0 +1,27 @@ +2026-04-25T06:26:00.6750689+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-027-frida-write-test-string-sequence","Tags":["TestChildObject.TestString"],"WriteType":"string","WriteValue":"","WriteValues":["AlphaMX","BetaMX","GammaMX"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:26:07.6260170+00:00 mx.register.begin {"ClientName":"MxFridaTrace-027-frida-write-test-string-sequence"} +2026-04-25T06:26:07.9719590+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:26:07.9729441+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-25T06:26:07.9739278+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T06:26:07.9749416+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T06:26:07.9769711+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T06:26:08.2359448+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String","Value":"HelloFromOpcUa"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:26:09.0090765+00:00 mx.write.begin {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String","Value":"AlphaMX"},"UserId":1} +2026-04-25T06:26:09.0130775+00:00 mx.write.end {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:26:09.1728426+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String","Value":"AlphaMX"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:26:09.105 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:26:09.1768561+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:26:09.7393193+00:00 mx.write.begin {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.String","Value":"BetaMX"},"UserId":1} +2026-04-25T06:26:09.7403191+00:00 mx.write.end {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":1} +2026-04-25T06:26:09.9494250+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String","Value":"BetaMX"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:26:09.848 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:26:09.9534212+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:26:10.4643300+00:00 mx.write.begin {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.String","Value":"GammaMX"},"UserId":1} +2026-04-25T06:26:10.4653281+00:00 mx.write.end {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":2} +2026-04-25T06:26:10.6239803+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String","Value":"GammaMX"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:26:10.553 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:26:10.6280523+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:26:14.5114906+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T06:26:14.5114906+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T06:26:14.5114906+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T06:26:14.5125390+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T06:26:14.5125390+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:26:18.2802077+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:26:18.2862274+00:00 harness.stop {} diff --git a/captures/028-frida-write-test-datetime-sequence/frida-command.txt b/captures/028-frida-write-test-datetime-sequence/frida-command.txt new file mode 100644 index 0000000..0f1e19d --- /dev/null +++ b/captures/028-frida-write-test-datetime-sequence/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestDateTime --type=datetime --values=2026-04-25T02:30:00,2026-04-25T02:31:00,2026-04-25T02:32:00 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\028-frida-write-test-datetime-sequence\harness.log --client=MxFridaTrace-028-frida-write-test-datetime-sequence diff --git a/captures/028-frida-write-test-datetime-sequence/frida-events.tsv b/captures/028-frida-write-test-datetime-sequence/frida-events.tsv new file mode 100644 index 0000000..a2772e5 --- /dev/null +++ b/captures/028-frida-write-test-datetime-sequence/frida-events.tsv @@ -0,0 +1,103 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T06:27:02.976Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T06:27:02.977Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T06:27:02.978Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T06:27:02.978Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T06:27:02.979Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T06:27:10.122Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T06:27:10.123Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T06:27:10.123Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T06:27:10.124Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T06:27:10.220Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xafed7c "[""0x5f28ff0"",""0x1"",""0x1"",""0xa8837d04"",""0x74794704""]" +2026-04-25T06:27:10.221Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T06:27:10.350Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9100648"",""0xafea40"",""0x5d23e122""]" 0 1 0x2 +2026-04-25T06:27:10.350Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9100648"",""0xafea40"",""0x5d23e122""]" 1 314 0x9100648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 0f 09 1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 +2026-04-25T06:27:10.353Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9a84020"",""0xdfcc8c99"",""0x9100214"",""0x9100204"",""0x641add04"",""0x0""]" 0 360 0x9a84020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 0f 09 1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d +2026-04-25T06:27:10.354Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:10.354Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:27:10.355Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ce9a8"",""0xafea40"",""0x5d23e122""]" 0 2 0x2 +2026-04-25T06:27:10.355Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ce9a8"",""0xafea40"",""0x5d23e122""]" 1 39 0x91ce9a8 1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00 +2026-04-25T06:27:10.358Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9a84020"",""0xdfcc8c99"",""0x91d9584"",""0x91d9574"",""0x641add04"",""0x0""]" 0 85 0x9a84020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00 +2026-04-25T06:27:10.358Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:10.359Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:27:10.365Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x5c"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x5c"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 0 92 0x78962d0 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba +2026-04-25T06:27:10.365Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x5c"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x5c"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:10.365Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x5c"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x5c"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:10.365Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:10.368Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x76"",""0x78a6720"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x76"",""0x78a6720"",""0x206"",""0x3"",""0x765f8a4""]" 0 118 0x78a6720 01 00 48 00 00 00 00 00 00 00 78 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 06 0a 00 00 00 c0 d6 54 04 aa b9 dc 01 00 00 +2026-04-25T06:27:10.368Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x76"",""0x78a6720"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x76"",""0x78a6720"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:10.368Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x76"",""0x78a6720"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x76"",""0x78a6720"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:10.368Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:10.400Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x2c2"",""0x791ed68"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x2c2"",""0x791ed68"",""0x206"",""0x3"",""0x765f8a4""]" 0 706 0x791ed68 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f +2026-04-25T06:27:10.400Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x2c2"",""0x791ed68"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x2c2"",""0x791ed68"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:10.400Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x2c2"",""0x791ed68"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x2c2"",""0x791ed68"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:10.401Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:10.403Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x97"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x97"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 0 151 0x7916528 01 00 69 00 00 00 00 00 00 00 a2 ec 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 92 e4 b6 f0 35 ad bc 46 a0 ea 5c 4b 34 cb 9f 90 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T06:27:10.403Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x97"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x97"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:10.403Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x97"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x97"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:10.403Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:10.494Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9a84020"",""0xdfcc8cb5"",""0x90f7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9a84020 01 00 00 00 00 00 00 00 00 00 78 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:27:10.495Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:10.497Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x9a84020"",""0xdfcc8cb5"",""0x90f7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9a84020 01 00 00 00 00 00 00 00 00 00 a2 ec 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:27:10.498Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:11.271Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xafed70 "[""0x5f28ff0"",""0x1"",""0x1"",""0x7"",""0x0"",""0x55555555"",""0x40e68723"",""0x1"",""0xa8837d04"",""0x74794704""]" +2026-04-25T06:27:11.271Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:27:11.324Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x91d9bc8"",""0xafea40"",""0x5d23e122""]" 0 2 0x2 +2026-04-25T06:27:11.324Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x91d9bc8"",""0xafea40"",""0x5d23e122""]" 1 86 0x91d9bc8 4/25/2026 2:30:00 AM:utf16le@26 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 01 00 00 00 +2026-04-25T06:27:11.325Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x84"",""0x9a84020"",""0xdfcc8c99"",""0x90f77f4"",""0x90f77e4"",""0x641add04"",""0x0""]" 0 132 0x9a84020 4/25/2026 2:30:00 AM:utf16le@72 01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 01 00 00 00 +2026-04-25T06:27:11.326Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:11.326Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:27:11.344Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 0 51 0x78962d0 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:27:11.344Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:11.344Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:11.345Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:11.346Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 0 98 0x7916528 04/25/2026 02:30:00:filetime@88 01 00 34 00 00 00 00 00 00 00 7b 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 03 00 00 00 c0 00 f0 1f 8e 8c 7c d4 dc 01 06 0a 00 00 00 00 24 15 f1 7c d4 dc 01 00 00 +2026-04-25T06:27:11.346Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:11.346Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:11.346Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:11.431Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9a84020"",""0xdfcc8cb5"",""0x90f7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9a84020 01 00 00 00 00 00 00 00 00 00 7b 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:27:11.432Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:11.996Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xafed70 "[""0x5f28ff0"",""0x1"",""0x1"",""0x7"",""0x0"",""0x5b05b05b"",""0x40e68723"",""0x1"",""0xa8837d04"",""0x74794704""]" +2026-04-25T06:27:11.997Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:27:12.100Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x91d9bc8"",""0xafea40"",""0x5d23e122""]" 0 2 0x2 +2026-04-25T06:27:12.100Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x91d9bc8"",""0xafea40"",""0x5d23e122""]" 1 86 0x91d9bc8 4/25/2026 2:31:00 AM:utf16le@26 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 02 00 00 00 +2026-04-25T06:27:12.101Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x84"",""0x9a84020"",""0xdfcc8c99"",""0x91d99dc"",""0x91d99cc"",""0x641add04"",""0x0""]" 0 132 0x9a84020 4/25/2026 2:31:00 AM:utf16le@72 01 00 56 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 02 00 00 00 +2026-04-25T06:27:12.102Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:12.102Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:27:12.108Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x7922080"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x7922080"",""0x206"",""0x3"",""0x765f8a4""]" 0 51 0x7922080 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:27:12.108Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x7922080"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x7922080"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:12.108Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x7922080"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x7922080"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:12.108Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:12.109Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 0 98 0x78962d0 04/25/2026 02:31:00:filetime@88 01 00 34 00 00 00 00 00 00 00 7f 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 03 00 00 00 c0 00 a0 8c 02 8d 7c d4 dc 01 06 0a 00 00 00 00 6a d8 14 7d d4 dc 01 00 00 +2026-04-25T06:27:12.109Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:12.109Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0x78962d0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0x78962d0"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:12.110Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:12.208Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9a84020"",""0xdfcc8cb5"",""0x90f7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9a84020 01 00 00 00 00 00 00 00 00 00 7f 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:27:12.209Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:12.719Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xafed70 "[""0x5f28ff0"",""0x1"",""0x1"",""0x7"",""0x0"",""0x60b60b61"",""0x40e68723"",""0x1"",""0xa8837d04"",""0x74794704""]" +2026-04-25T06:27:12.720Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T06:27:12.772Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x91d9bc8"",""0xafea40"",""0x5d23e122""]" 0 2 0x2 +2026-04-25T06:27:12.772Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x91d9bc8"",""0xafea40"",""0x5d23e122""]" 1 86 0x91d9bc8 4/25/2026 2:32:00 AM:utf16le@26 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 03 00 00 00 +2026-04-25T06:27:12.773Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x84"",""0x9a84020"",""0xdfcc8c99"",""0x90f77f4"",""0x90f77e4"",""0x641add04"",""0x0""]" 0 132 0x9a84020 4/25/2026 2:32:00 AM:utf16le@72 01 00 56 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 03 00 00 00 +2026-04-25T06:27:12.773Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:12.774Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:27:12.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 0 51 0x7916528 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T06:27:12.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:12.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x33"",""0x7916528"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x33"",""0x7916528"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:12.820Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:12.821Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0xddf2c0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0xddf2c0"",""0x206"",""0x3"",""0x765f8a4""]" 0 98 0xddf2c0 04/25/2026 02:32:00:filetime@88 01 00 34 00 00 00 00 00 00 00 82 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 03 00 00 00 c0 00 20 31 6f 8d 7c d4 dc 01 06 0a 00 00 00 00 b0 9b 38 7d d4 dc 01 00 00 +2026-04-25T06:27:12.821Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0xddf2c0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0xddf2c0"",""0x206"",""0x3"",""0x765f8a4""]" 1 518 0x3 +2026-04-25T06:27:12.821Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc738 "[""0x62"",""0xddf2c0"",""0x741ece0"",""0x76ffedd8"",""0x90fc744"",""0x62"",""0xddf2c0"",""0x206"",""0x3"",""0x765f8a4""]" 2 3 0x765f8a4 90 b3 59 +2026-04-25T06:27:12.821Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T06:27:12.878Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9a84020"",""0xdfcc8cb5"",""0x90f7010"",""0x0"",""0x0"",""0x0""]" 0 46 0x9a84020 01 00 00 00 00 00 00 00 00 00 82 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T06:27:12.879Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:16.778Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x91ce7f8"",""0xafebfc"",""0x5d23e36e""]" 0 1 0x2 +2026-04-25T06:27:16.778Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x91ce7f8"",""0xafebfc"",""0x5d23e36e""]" 1 58 0x91ce7f8 21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:27:16.780Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x9a84020"",""0xdfcc8f45"",""0x90f77f4"",""0x90f77e4"",""0x641add04"",""0x64""]" 0 104 0x9a84020 01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T06:27:16.780Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:16.781Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T06:27:16.782Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x91ce1c8"",""0xafebfc"",""0x5d23e36e""]" 0 2 0x2 +2026-04-25T06:27:16.782Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x91ce1c8"",""0xafebfc"",""0x5d23e36e""]" 1 37 0x91ce1c8 21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00 +2026-04-25T06:27:16.783Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9a84020"",""0xdfcc8f45"",""0x91d9584"",""0x91d9574"",""0x641add04"",""0x64""]" 0 83 0x9a84020 01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00 +2026-04-25T06:27:16.784Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T06:27:16.784Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/028-frida-write-test-datetime-sequence/frida-exit.txt b/captures/028-frida-write-test-datetime-sequence/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/028-frida-write-test-datetime-sequence/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/028-frida-write-test-datetime-sequence/frida.stderr.txt b/captures/028-frida-write-test-datetime-sequence/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/028-frida-write-test-datetime-sequence/frida.stdout.jsonl b/captures/028-frida-write-test-datetime-sequence/frida.stdout.jsonl new file mode 100644 index 0000000..98032ba --- /dev/null +++ b/captures/028-frida-write-test-datetime-sequence/frida.stdout.jsonl @@ -0,0 +1,91 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTime --type=datetime --values=2026-04-25T02:30:00,2026-04-25T02:31:00,2026-04-25T02:32:00 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\028-frida-write-test-datetime-sequence\harness.log --client=MxFridaTrace-028-frida-write-test-datetime-sequence`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTime --type=datetime --values=2026-04-25T02:30:00,2026-04-25T02:31:00,2026-04-25T02:32:00 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\028-frida-write-test-datetime-sequence\harness.log --client=MxFridaTrace-028-frida-write-test-datetime-sequence`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:27:02.976Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:27:02.977Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:27:02.978Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:27:02.978Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:27:02.979Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:27:10.122Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:27:10.123Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:27:10.123Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:27:10.124Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xafed7c","args":["0x5f28ff0","0x1","0x1","0xa8837d04","0x74794704"],"time":"2026-04-25T06:27:10.220Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:27:10.221Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9100648","0xafea40","0x5d23e122"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9100648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 0f 09 1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:27:10.350Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x1","0x168","0x9a84020","0xdfcc8c99","0x9100214","0x9100204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9a84020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 0f 09 1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:27:10.353Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:10.354Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:27:10.354Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x27","0x91ce9a8","0xafea40","0x5d23e122"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x91ce9a8","hex":"1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00"}],"time":"2026-04-25T06:27:10.355Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x55","0x9a84020","0xdfcc8c99","0x91d9584","0x91d9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9a84020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00"}],"time":"2026-04-25T06:27:10.358Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:10.358Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:27:10.359Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x5c","0x78962d0","0x741ece0","0x76ffedd8","0x90fc744","0x5c","0x78962d0","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x78962d0","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:10.365Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:10.365Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x76","0x78a6720","0x741ece0","0x76ffedd8","0x90fc744","0x76","0x78a6720","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":118,"ptr":"0x78a6720","hex":"01 00 48 00 00 00 00 00 00 00 78 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 06 0a 00 00 00 c0 d6 54 04 aa b9 dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:10.368Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:10.368Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x2c2","0x791ed68","0x741ece0","0x76ffedd8","0x90fc744","0x2c2","0x791ed68","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x791ed68","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:10.400Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:10.401Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x97","0x7916528","0x741ece0","0x76ffedd8","0x90fc744","0x97","0x7916528","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7916528","hex":"01 00 69 00 00 00 00 00 00 00 a2 ec 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 92 e4 b6 f0 35 ad bc 46 a0 ea 5c 4b 34 cb 9f 90 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:10.403Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:10.403Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x2e","0x9a84020","0xdfcc8cb5","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a84020","hex":"01 00 00 00 00 00 00 00 00 00 78 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:27:10.494Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:10.495Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x1","0x2e","0x9a84020","0xdfcc8cb5","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a84020","hex":"01 00 00 00 00 00 00 00 00 00 a2 ec 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:27:10.497Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:10.498Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xafed70","args":["0x5f28ff0","0x1","0x1","0x7","0x0","0x55555555","0x40e68723","0x1","0xa8837d04","0x74794704"],"time":"2026-04-25T06:27:11.271Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:27:11.271Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x56","0x91d9bc8","0xafea40","0x5d23e122"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x91d9bc8","hex":"37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 01 00 00 00"}],"time":"2026-04-25T06:27:11.324Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x84","0x9a84020","0xdfcc8c99","0x90f77f4","0x90f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0x9a84020","hex":"01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 01 00 00 00"}],"time":"2026-04-25T06:27:11.325Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:11.326Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:27:11.326Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x33","0x78962d0","0x741ece0","0x76ffedd8","0x90fc744","0x33","0x78962d0","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x78962d0","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:11.344Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:11.345Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x62","0x7916528","0x741ece0","0x76ffedd8","0x90fc744","0x62","0x7916528","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x7916528","hex":"01 00 34 00 00 00 00 00 00 00 7b 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 03 00 00 00 c0 00 f0 1f 8e 8c 7c d4 dc 01 06 0a 00 00 00 00 24 15 f1 7c d4 dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:11.346Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:11.346Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x2e","0x9a84020","0xdfcc8cb5","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a84020","hex":"01 00 00 00 00 00 00 00 00 00 7b 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:27:11.431Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:11.432Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xafed70","args":["0x5f28ff0","0x1","0x1","0x7","0x0","0x5b05b05b","0x40e68723","0x1","0xa8837d04","0x74794704"],"time":"2026-04-25T06:27:11.996Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:27:11.997Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x56","0x91d9bc8","0xafea40","0x5d23e122"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x91d9bc8","hex":"37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 02 00 00 00"}],"time":"2026-04-25T06:27:12.100Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x84","0x9a84020","0xdfcc8c99","0x91d99dc","0x91d99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0x9a84020","hex":"01 00 56 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 02 00 00 00"}],"time":"2026-04-25T06:27:12.101Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:12.102Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:27:12.102Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x33","0x7922080","0x741ece0","0x76ffedd8","0x90fc744","0x33","0x7922080","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7922080","hex":"01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:12.108Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:12.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x62","0x78962d0","0x741ece0","0x76ffedd8","0x90fc744","0x62","0x78962d0","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x78962d0","hex":"01 00 34 00 00 00 00 00 00 00 7f 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 03 00 00 00 c0 00 a0 8c 02 8d 7c d4 dc 01 06 0a 00 00 00 00 6a d8 14 7d d4 dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:12.109Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:12.110Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x2e","0x9a84020","0xdfcc8cb5","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a84020","hex":"01 00 00 00 00 00 00 00 00 00 7f 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:27:12.208Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:12.209Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xafed70","args":["0x5f28ff0","0x1","0x1","0x7","0x0","0x60b60b61","0x40e68723","0x1","0xa8837d04","0x74794704"],"time":"2026-04-25T06:27:12.719Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:27:12.720Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x56","0x91d9bc8","0xafea40","0x5d23e122"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x91d9bc8","hex":"37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 03 00 00 00"}],"time":"2026-04-25T06:27:12.772Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x84","0x9a84020","0xdfcc8c99","0x90f77f4","0x90f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0x9a84020","hex":"01 00 56 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 03 00 00 00"}],"time":"2026-04-25T06:27:12.773Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:12.773Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:27:12.774Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x33","0x7916528","0x741ece0","0x76ffedd8","0x90fc744","0x33","0x7916528","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7916528","hex":"01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:12.819Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:12.820Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x62","0xddf2c0","0x741ece0","0x76ffedd8","0x90fc744","0x62","0xddf2c0","0x206","0x3","0x765f8a4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0xddf2c0","hex":"01 00 34 00 00 00 00 00 00 00 82 76 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 e5 c1 81 a9 f6 1b d0 4d 8e 68 b0 2a 1c c0 40 c8 03 00 00 00 c0 00 20 31 6f 8d 7c d4 dc 01 06 0a 00 00 00 00 b0 9b 38 7d d4 dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x765f8a4","hex":"90 b3 59"}],"time":"2026-04-25T06:27:12.821Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:27:12.821Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x2e","0x9a84020","0xdfcc8cb5","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a84020","hex":"01 00 00 00 00 00 00 00 00 00 82 76 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:27:12.878Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:12.879Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x91ce7f8","0xafebfc","0x5d23e36e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x91ce7f8","hex":"21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:27:16.778Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x1","0x68","0x9a84020","0xdfcc8f45","0x90f77f4","0x90f77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9a84020","hex":"01 00 3a 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:27:16.780Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:16.780Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:27:16.781Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x25","0x91ce1c8","0xafebfc","0x5d23e36e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x91ce1c8","hex":"21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00"}],"time":"2026-04-25T06:27:16.782Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x53","0x9a84020","0xdfcc8f45","0x91d9584","0x91d9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9a84020","hex":"01 00 25 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b8 0e 42 27 b6 74 7a 43 9f 03 79 02 6c 2c 9e ba 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00"}],"time":"2026-04-25T06:27:16.783Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:27:16.784Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:27:16.784Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/028-frida-write-test-datetime-sequence/harness.log b/captures/028-frida-write-test-datetime-sequence/harness.log new file mode 100644 index 0000000..ab11094 --- /dev/null +++ b/captures/028-frida-write-test-datetime-sequence/harness.log @@ -0,0 +1,27 @@ +2026-04-25T06:27:02.8693077+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-028-frida-write-test-datetime-sequence","Tags":["TestChildObject.TestDateTime"],"WriteType":"datetime","WriteValue":"","WriteValues":["2026-04-25T02:30:00","2026-04-25T02:31:00","2026-04-25T02:32:00"],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":700,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:27:09.8600057+00:00 mx.register.begin {"ClientName":"MxFridaTrace-028-frida-write-test-datetime-sequence"} +2026-04-25T06:27:10.2169760+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:27:10.2169760+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDateTime"} +2026-04-25T06:27:10.2189712+00:00 mx.additem.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T06:27:10.2199713+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T06:27:10.2219682+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T06:27:10.4910258+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime","Value":"03/21/2026 23:14:38"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:27:11.2684050+00:00 mx.write.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.DateTime","Value":"04/25/2026 02:30:00"},"UserId":1} +2026-04-25T06:27:11.2723829+00:00 mx.write.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:27:11.4312868+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime","Value":"04/25/2026 02:30:00"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:27:11.343 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:27:11.4352227+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:27:11.9965842+00:00 mx.write.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.DateTime","Value":"04/25/2026 02:31:00"},"UserId":1} +2026-04-25T06:27:11.9976467+00:00 mx.write.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":1} +2026-04-25T06:27:12.2070798+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime","Value":"04/25/2026 02:31:00"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:27:12.106 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:27:12.2100783+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:27:12.7197397+00:00 mx.write.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.DateTime","Value":"04/25/2026 02:32:00"},"UserId":1} +2026-04-25T06:27:12.7207358+00:00 mx.write.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":2} +2026-04-25T06:27:12.8786261+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime","Value":"04/25/2026 02:32:00"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:27:12.818 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:27:12.8827094+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:27:16.7645209+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T06:27:16.7655198+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T06:27:16.7655198+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T06:27:16.7665202+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T06:27:16.7665202+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:27:20.4718909+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:27:20.4778953+00:00 harness.stop {} diff --git a/captures/029-frida-write-test-int-array/frida-command.txt b/captures/029-frida-write-test-int-array/frida-command.txt new file mode 100644 index 0000000..6c90266 --- /dev/null +++ b/captures/029-frida-write-test-int-array/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestIntArray[] --type=int[] --value=201;202;203;204;205;206;207;208;209;210 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\029-frida-write-test-int-array\harness.log --client=MxFridaTrace-029-frida-write-test-int-array diff --git a/captures/029-frida-write-test-int-array/frida-exit.txt b/captures/029-frida-write-test-int-array/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/029-frida-write-test-int-array/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/029-frida-write-test-int-array/frida.stderr.txt b/captures/029-frida-write-test-int-array/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/029-frida-write-test-int-array/frida.stdout.jsonl b/captures/029-frida-write-test-int-array/frida.stdout.jsonl new file mode 100644 index 0000000..6bc2cd1 --- /dev/null +++ b/captures/029-frida-write-test-int-array/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestIntArray[] --type=int[] --value=201;202;203;204;205;206;207;208;209;210 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\029-frida-write-test-int-array\harness.log --client=MxFridaTrace-029-frida-write-test-int-array`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestIntArray[] --type=int[] --value=201;202;203;204;205;206;207;208;209;210 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\029-frida-write-test-int-array\harness.log --client=MxFridaTrace-029-frida-write-test-int-array`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:40:21.301Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:40:21.302Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:40:21.302Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:40:21.303Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:40:21.303Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:40:28.553Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:40:28.554Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:40:28.555Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:40:28.556Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6feefc","args":["0x59d8ff0","0x1","0x1","0x2d0d1eee","0x74794704"],"time":"2026-04-25T06:40:28.661Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:40:28.662Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d0c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8d10648","0x6febc0","0xae2a7ca3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8d10648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d0 08 1f 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:40:28.787Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x1","0x168","0x9712020","0xaec5c264","0x8d10214","0x8d10204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9712020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d0 08 1f 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:40:28.789Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:28.790Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:40:28.790Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d0c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8de2448","0x6febc0","0xae2a7ca3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8de2448","hex":"1f 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 00 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00"}],"time":"2026-04-25T06:40:28.791Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x2","0x55","0x9712020","0xaec5c264","0x8dea60c","0x8dea5fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9712020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 00 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00"}],"time":"2026-04-25T06:40:28.792Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:28.793Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:40:28.793Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d0c738","args":["0x2c2","0xbbcfe8","0x6e5ebe8","0x76ffedd8","0x8d0c744","0x2c2","0xbbcfe8","0x206","0x3","0x74408e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xbbcfe8","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74408e4","hex":"08 b8 62"}],"time":"2026-04-25T06:40:28.803Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:40:28.804Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d0c738","args":["0x97","0x752ee88","0x6e5ebe8","0x76ffedd8","0x8d0c744","0x97","0x752ee88","0x206","0x3","0x74408e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x752ee88","hex":"01 00 69 00 00 00 00 00 00 00 1d f9 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 d6 74 96 71 c9 b9 69 43 be 0e 2d 3b a2 b7 f2 03 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74408e4","hex":"08 b8 62"}],"time":"2026-04-25T06:40:28.805Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:40:28.806Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d0c738","args":["0x5c","0x7523330","0x6e5ebe8","0x76ffedd8","0x8d0c744","0x5c","0x7523330","0x206","0x3","0x74408e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7523330","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 46 5a 30 af 6a 87 65 46 ac c5 4d 98 f2 e2 12 fe 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74408e4","hex":"08 b8 62"}],"time":"2026-04-25T06:40:28.820Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:40:28.820Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d0c738","args":["0x9a","0x752dd80","0x6e5ebe8","0x76ffedd8","0x8d0c744","0x9a","0x752dd80","0x206","0x3","0x74408e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":154,"ptr":"0x752dd80","hex":"01 00 6c 00 00 00 00 00 00 00 bc 7c 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 46 5a 30 af 6a 87 65 46 ac c5 4d 98 f2 e2 12 fe 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 03 00 00 00 03 00 00 00 c0 00 c0 c7 e2 57 47 bd dc 01 42 00 00 00 00 0a 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74408e4","hex":"08 b8 62"}],"time":"2026-04-25T06:40:28.822Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:40:28.822Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x1","0x2e","0x9712020","0xaec5c248","0x8d07010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9712020","hex":"01 00 00 00 00 00 00 00 00 00 1d f9 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:40:28.897Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:28.898Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x2","0x2e","0x9712020","0xaec5c248","0x8d07010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9712020","hex":"01 00 00 00 00 00 00 00 00 00 bc 7c 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:40:28.919Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:28.920Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x6feef0","args":["0x59d8ff0","0x1","0x1","0x2003","0x0","0x755c980","0x0","0x1","0x2d0d1eee","0x74794704"],"time":"2026-04-25T06:40:29.697Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:40:29.697Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d0c738","0x1","0x1","0x2","0x2","0x0","0x56","0x8deb050","0x6febc0","0xae2a7ca3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x8deb050","hex":"37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00 d2 00 00 00 ff ff 00 00 00 00 00 00 00 00 4d c3 c4 08 01 00 00 00"}],"time":"2026-04-25T06:40:29.903Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x2","0x84","0x9712020","0xaec5c264","0x8d077f4","0x8d077e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0x9712020","hex":"01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00 d2 00 00 00 ff ff 00 00 00 00 00 00 00 00 4d c3 c4 08 01 00 00 00"}],"time":"2026-04-25T06:40:29.904Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:29.905Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:40:29.905Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d0c738","args":["0x33","0xbbcfe8","0x6e5ebe8","0x76ffedd8","0x8d0c744","0x33","0xbbcfe8","0x206","0x3","0x74408e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xbbcfe8","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74408e4","hex":"08 b8 62"}],"time":"2026-04-25T06:40:29.951Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:40:29.952Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d0c738","args":["0x86","0x752cc78","0x6e5ebe8","0x76ffedd8","0x8d0c744","0x86","0x752cc78","0x206","0x3","0x74408e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":134,"ptr":"0x752cc78","hex":"01 00 58 00 00 00 00 00 00 00 c0 7c 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 46 5a 30 af 6a 87 65 46 ac c5 4d 98 f2 e2 12 fe 03 00 00 00 c0 00 d0 ba 8f 68 7e d4 dc 01 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00 d2 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74408e4","hex":"08 b8 62"}],"time":"2026-04-25T06:40:29.953Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:40:29.954Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x2","0x2e","0x9712020","0xaec5c248","0x8d07010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9712020","hex":"01 00 00 00 00 00 00 00 00 00 c0 7c 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:40:30.011Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:30.012Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d0c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x8de2250","0x6fed7c","0xae2a7aef"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8de2250","hex":"21 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:40:34.734Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x1","0x68","0x9712020","0xaec5c4b8","0x8d077f4","0x8d077e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9712020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:40:34.736Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:34.736Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:40:34.736Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d0c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8de2718","0x6fed7c","0xae2a7aef"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8de2718","hex":"21 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00"}],"time":"2026-04-25T06:40:34.737Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d0c738","args":["0x1","0x1","0x2","0x53","0x9712020","0xaec5c4b8","0x8deae64","0x8deae54","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9712020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 2a 01 c4 eb b0 39 c5 45 bc 18 e3 e3 72 58 f0 94 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00"}],"time":"2026-04-25T06:40:34.738Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:40:34.739Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:40:34.739Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d0c738","args":["0x2e","0x7523330","0x6e5ebe8","0x76ffedd8","0x8d0c744","0x2e","0x7523330","0x206","0x3","0x74408e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7523330","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74408e4","hex":"08 b8 62"}],"time":"2026-04-25T06:40:34.743Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:40:34.743Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/029-frida-write-test-int-array/harness.log b/captures/029-frida-write-test-int-array/harness.log new file mode 100644 index 0000000..df32340 --- /dev/null +++ b/captures/029-frida-write-test-int-array/harness.log @@ -0,0 +1,19 @@ +2026-04-25T06:40:21.1994813+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-029-frida-write-test-int-array","Tags":["TestChildObject.TestIntArray[]"],"WriteType":"int[]","WriteValue":"201;202;203;204;205;206;207;208;209;210","WriteValues":[],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:40:28.2976247+00:00 mx.register.begin {"ClientName":"MxFridaTrace-029-frida-write-test-int-array"} +2026-04-25T06:40:28.6586400+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:40:28.6586400+00:00 mx.additem.begin {"Tag":"TestChildObject.TestIntArray[]"} +2026-04-25T06:40:28.6606315+00:00 mx.additem.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T06:40:28.6616269+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T06:40:28.6626291+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T06:40:28.9175980+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32[]","Length":10,"Values":["0","0","0","0","0","0","0","0","0","0"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.908 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:40:29.6956928+00:00 mx.write.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32[]","Length":10,"Values":["201","202","203","204","205","206","207","208","209","210"]},"UserId":1} +2026-04-25T06:40:29.6987567+00:00 mx.write.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:40:30.0108722+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32[]","Length":10,"Values":["201","202","203","204","205","206","207","208","209","210"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:40:29.949 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:40:30.0158672+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:40:34.7203064+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T06:40:34.7213056+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T06:40:34.7213056+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T06:40:34.7223318+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T06:40:34.7223318+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:40:38.9486991+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:40:38.9566778+00:00 harness.stop {} diff --git a/captures/030-frida-write-test-bool-array/frida-command.txt b/captures/030-frida-write-test-bool-array/frida-command.txt new file mode 100644 index 0000000..8519bc6 --- /dev/null +++ b/captures/030-frida-write-test-bool-array/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;true;false;true;false;true;false;true;false --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\030-frida-write-test-bool-array\harness.log --client=MxFridaTrace-030-frida-write-test-bool-array diff --git a/captures/030-frida-write-test-bool-array/frida-exit.txt b/captures/030-frida-write-test-bool-array/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/030-frida-write-test-bool-array/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/030-frida-write-test-bool-array/frida.stderr.txt b/captures/030-frida-write-test-bool-array/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/030-frida-write-test-bool-array/frida.stdout.jsonl b/captures/030-frida-write-test-bool-array/frida.stdout.jsonl new file mode 100644 index 0000000..1fe8ec6 --- /dev/null +++ b/captures/030-frida-write-test-bool-array/frida.stdout.jsonl @@ -0,0 +1,67 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;true;false;true;false;true;false;true;false --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\030-frida-write-test-bool-array\harness.log --client=MxFridaTrace-030-frida-write-test-bool-array`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;true;false;true;false;true;false;true;false --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\030-frida-write-test-bool-array\harness.log --client=MxFridaTrace-030-frida-write-test-bool-array`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:41:09.573Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:41:09.574Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:41:09.574Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:41:09.575Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:41:09.575Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:41:16.823Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:41:16.824Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:41:16.824Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:41:16.825Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xafeb4c","args":["0x5e58ff0","0x1","0x1","0x432c4d56","0x74794704"],"time":"2026-04-25T06:41:16.881Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:41:16.882Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9100648","0xafe810","0x9f46157a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9100648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 0f 09 1f 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:41:17.004Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x1","0x168","0x9a88020","0x703bb9c3","0x9100214","0x9100204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9a88020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 0f 09 1f 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:41:17.006Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:17.006Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:17.007Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x27","0x91ce648","0xafe810","0x9f46157a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x91ce648","hex":"1f 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:17.007Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x55","0x9a88020","0x703bb9c3","0x91d9584","0x91d9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9a88020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:17.008Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:17.009Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:17.009Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x5c","0x7ba4f40","0x73aee98","0x76ffedd8","0x90fc744","0x5c","0x7ba4f40","0x206","0x3","0x76e362c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7ba4f40","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f6 8c cc e9 ef 7e 36 4e ab 35 e3 d0 27 51 db 55 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x76e362c","hex":"10 f5 6d"}],"time":"2026-04-25T06:41:17.059Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:17.059Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x86","0x7b9e910","0x73aee98","0x76ffedd8","0x90fc744","0x86","0x7b9e910","0x206","0x3","0x76e362c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":134,"ptr":"0x7b9e910","hex":"01 00 58 00 00 00 00 00 00 00 20 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f6 8c cc e9 ef 7e 36 4e ab 35 e3 d0 27 51 db 55 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 41 00 00 00 00 0a 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x76e362c","hex":"10 f5 6d"}],"time":"2026-04-25T06:41:17.061Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:17.062Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x2c2","0x7ba7150","0x73aee98","0x76ffedd8","0x90fc744","0x2c2","0x7ba7150","0x206","0x3","0x76e362c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7ba7150","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x76e362c","hex":"10 f5 6d"}],"time":"2026-04-25T06:41:17.064Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:17.064Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x97","0x7ba3e38","0x73aee98","0x76ffedd8","0x90fc744","0x97","0x7ba3e38","0x206","0x3","0x76e362c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7ba3e38","hex":"01 00 69 00 00 00 00 00 00 00 de f9 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 41 0e f1 4b df 4a ce 42 91 49 f8 78 8b e0 e5 69 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x76e362c","hex":"10 f5 6d"}],"time":"2026-04-25T06:41:17.065Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:17.066Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x2e","0x9a88020","0x703bb82f","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a88020","hex":"01 00 00 00 00 00 00 00 00 00 20 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:41:17.135Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:17.136Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x1","0x2e","0x9a88020","0x703bb82f","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a88020","hex":"01 00 00 00 00 00 00 00 00 00 de f9 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:41:17.137Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:17.138Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xafeb40","args":["0x5e58ff0","0x1","0x1","0x200b","0x0","0x7b4d838","0x0","0x1","0x432c4d56","0x74794704"],"time":"2026-04-25T06:41:17.918Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:41:17.919Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x42","0x91d9bc8","0xafe810","0x9f46157a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":66,"ptr":"0x91d9bc8","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff ff ff 00 00 00 00 00 00 00 00 a8 7f c5 08 01 00 00 00"}],"time":"2026-04-25T06:41:18.124Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x70","0x9a88020","0x703bb9c3","0x90f77f4","0x90f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":112,"ptr":"0x9a88020","hex":"01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff ff ff 00 00 00 00 00 00 00 00 a8 7f c5 08 01 00 00 00"}],"time":"2026-04-25T06:41:18.125Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:18.125Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:18.126Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x33","0x7ba4f40","0x73aee98","0x76ffedd8","0x90fc744","0x33","0x7ba4f40","0x206","0x3","0x76e362c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7ba4f40","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x76e362c","hex":"10 f5 6d"}],"time":"2026-04-25T06:41:18.163Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:18.164Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc738","args":["0x72","0x7b7e7b8","0x73aee98","0x76ffedd8","0x90fc744","0x72","0x7b7e7b8","0x206","0x3","0x76e362c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":114,"ptr":"0x7b7e7b8","hex":"01 00 44 00 00 00 00 00 00 00 23 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 f6 8c cc e9 ef 7e 36 4e ab 35 e3 d0 27 51 db 55 03 00 00 00 c0 00 20 73 4c 85 7e d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x76e362c","hex":"10 f5 6d"}],"time":"2026-04-25T06:41:18.165Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:18.165Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x2e","0x9a88020","0x703bb82f","0x90f7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a88020","hex":"01 00 00 00 00 00 00 00 00 00 23 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:41:18.231Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:18.232Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x91ce720","0xafe9cc","0x9f461ab6"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x91ce720","hex":"21 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:41:22.958Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x1","0x68","0x9a88020","0x703bb7bf","0x90f77f4","0x90f77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9a88020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:41:22.960Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:22.960Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:22.960Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc738","0x1","0x1","0x2","0x2","0x0","0x25","0x91ce7f8","0xafe9cc","0x9f461ab6"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x91ce7f8","hex":"21 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:22.961Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc738","args":["0x1","0x1","0x2","0x53","0x9a88020","0x703bb7bf","0x91d99dc","0x91d99cc","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9a88020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 4b 17 e5 b2 83 24 bd 4d 8d 50 f9 34 8b 30 30 83 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:22.963Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:22.963Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:22.963Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/030-frida-write-test-bool-array/harness.log b/captures/030-frida-write-test-bool-array/harness.log new file mode 100644 index 0000000..b2af9f9 --- /dev/null +++ b/captures/030-frida-write-test-bool-array/harness.log @@ -0,0 +1,19 @@ +2026-04-25T06:41:09.4684412+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-030-frida-write-test-bool-array","Tags":["TestChildObject.TestBoolArray[]"],"WriteType":"bool[]","WriteValue":"true;false;true;false;true;false;true;false;true;false","WriteValues":[],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:41:16.5275178+00:00 mx.register.begin {"ClientName":"MxFridaTrace-030-frida-write-test-bool-array"} +2026-04-25T06:41:16.8770602+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:41:16.8780481+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBoolArray[]"} +2026-04-25T06:41:16.8790515+00:00 mx.additem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T06:41:16.8800455+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T06:41:16.8820309+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T06:41:17.1323486+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean[]","Length":10,"Values":["False","False","False","False","False","False","False","False","False","False"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:41:17.9165317+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean[]","Length":10,"Values":["True","False","True","False","True","False","True","False","True","False"]},"UserId":1} +2026-04-25T06:41:17.9195300+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:41:18.2306371+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean[]","Length":10,"Values":["True","True","False","False","True","True","False","False","True","True"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:41:18.162 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:41:18.2366418+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:41:22.9447699+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T06:41:22.9457708+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T06:41:22.9457708+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T06:41:22.9457708+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T06:41:22.9457708+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:41:26.7922152+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:41:26.7982162+00:00 harness.stop {} diff --git a/captures/031-frida-write-test-float-array/frida-command.txt b/captures/031-frida-write-test-float-array/frida-command.txt new file mode 100644 index 0000000..3eb7743 --- /dev/null +++ b/captures/031-frida-write-test-float-array/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestFloatArray[] --type=float[] --value=1.25;2.5;3.75;4.25;5.5;6.75;7.25;8.5;9.75;10.25 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\031-frida-write-test-float-array\harness.log --client=MxFridaTrace-031-frida-write-test-float-array diff --git a/captures/031-frida-write-test-float-array/frida-exit.txt b/captures/031-frida-write-test-float-array/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/031-frida-write-test-float-array/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/031-frida-write-test-float-array/frida.stderr.txt b/captures/031-frida-write-test-float-array/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/031-frida-write-test-float-array/frida.stdout.jsonl b/captures/031-frida-write-test-float-array/frida.stdout.jsonl new file mode 100644 index 0000000..c92e288 --- /dev/null +++ b/captures/031-frida-write-test-float-array/frida.stdout.jsonl @@ -0,0 +1,67 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestFloatArray[] --type=float[] --value=1.25;2.5;3.75;4.25;5.5;6.75;7.25;8.5;9.75;10.25 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\031-frida-write-test-float-array\harness.log --client=MxFridaTrace-031-frida-write-test-float-array`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestFloatArray[] --type=float[] --value=1.25;2.5;3.75;4.25;5.5;6.75;7.25;8.5;9.75;10.25 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\031-frida-write-test-float-array\harness.log --client=MxFridaTrace-031-frida-write-test-float-array`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:41:39.244Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:41:39.245Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:41:39.245Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:41:39.246Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:41:39.247Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:41:46.591Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:41:46.592Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:41:46.592Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:41:46.593Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x73f2ac","args":["0x5be8ff0","0x1","0x1","0xc742bd86","0x74794704"],"time":"2026-04-25T06:41:46.703Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:41:46.703Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e0c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8e10648","0x73ef70","0x23306414"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8e10648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e0 08 1f 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:41:46.828Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x1","0x168","0x9793020","0x74a92851","0x8e10214","0x8e10204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9793020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e0 08 1f 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:41:46.831Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:46.832Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:46.832Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e0c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8edcd40","0x73ef70","0x23306414"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8edcd40","hex":"1f 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 00 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:46.833Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x2","0x55","0x9793020","0x74a92851","0x8ee9634","0x8ee9624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9793020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 00 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:46.835Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:46.836Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:46.836Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e0c738","args":["0x5c","0x7970a00","0x729ed20","0x76ffedd8","0x8e0c744","0x5c","0x7970a00","0x206","0x3","0x756ffdc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7970a00","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 43 cd bf c8 a6 e1 a7 44 b7 14 99 a0 52 81 ec 43 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x756ffdc","hex":"d8 ca 95"}],"time":"2026-04-25T06:41:46.842Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:46.842Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e0c738","args":["0x9a","0x7964ea8","0x729ed20","0x76ffedd8","0x8e0c744","0x9a","0x7964ea8","0x206","0x3","0x756ffdc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":154,"ptr":"0x7964ea8","hex":"01 00 6c 00 00 00 00 00 00 00 5e 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 43 cd bf c8 a6 e1 a7 44 b7 14 99 a0 52 81 ec 43 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 03 00 00 00 03 00 00 00 c0 00 c0 c7 e2 57 47 bd dc 01 43 00 00 00 00 0a 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x756ffdc","hex":"d8 ca 95"}],"time":"2026-04-25T06:41:46.844Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:46.844Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e0c738","args":["0x2c2","0x7929390","0x729ed20","0x76ffedd8","0x8e0c744","0x2c2","0x7929390","0x206","0x3","0x756ffdc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7929390","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x756ffdc","hex":"d8 ca 95"}],"time":"2026-04-25T06:41:46.856Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:46.856Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e0c738","args":["0x97","0xa28640","0x729ed20","0x76ffedd8","0x8e0c744","0x97","0xa28640","0x206","0x3","0x756ffdc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xa28640","hex":"01 00 69 00 00 00 00 00 00 00 57 fa 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 5e 4e b6 d6 c8 b6 de 43 8a 09 88 28 c4 45 b6 d6 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x756ffdc","hex":"d8 ca 95"}],"time":"2026-04-25T06:41:46.858Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:46.858Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x2","0x2e","0x9793020","0x74a9287d","0x8e07010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9793020","hex":"01 00 00 00 00 00 00 00 00 00 5e 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:41:46.963Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:46.963Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x1","0x2e","0x9793020","0x74a9287d","0x8e07010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9793020","hex":"01 00 00 00 00 00 00 00 00 00 57 fa 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:41:46.965Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:46.965Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x73f2a0","args":["0x5be8ff0","0x1","0x1","0x2004","0x0","0x7986578","0x0","0x1","0xc742bd86","0x74794704"],"time":"2026-04-25T06:41:47.751Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:41:47.751Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e0c738","0x1","0x1","0x2","0x2","0x0","0x56","0x8ee9c78","0x73ef70","0x23306414"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x8ee9c78","hex":"37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41 00 00 24 41 ff ff 00 00 00 00 00 00 00 00 0c f4 c5 08 01 00 00 00"}],"time":"2026-04-25T06:41:47.906Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x2","0x84","0x9793020","0x74a92851","0x8e077f4","0x8e077e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0x9793020","hex":"01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41 00 00 24 41 ff ff 00 00 00 00 00 00 00 00 0c f4 c5 08 01 00 00 00"}],"time":"2026-04-25T06:41:47.907Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:47.907Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:47.907Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e0c738","args":["0x33","0x791d838","0x729ed20","0x76ffedd8","0x8e0c744","0x33","0x791d838","0x206","0x3","0x756ffdc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x791d838","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x756ffdc","hex":"d8 ca 95"}],"time":"2026-04-25T06:41:47.950Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:47.950Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e0c738","args":["0x86","0x7964ea8","0x729ed20","0x76ffedd8","0x8e0c744","0x86","0x7964ea8","0x206","0x3","0x756ffdc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":134,"ptr":"0x7964ea8","hex":"01 00 58 00 00 00 00 00 00 00 62 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 43 cd bf c8 a6 e1 a7 44 b7 14 99 a0 52 81 ec 43 03 00 00 00 c0 00 b0 47 0d 97 7e d4 dc 01 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41 00 00 24 41"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x756ffdc","hex":"d8 ca 95"}],"time":"2026-04-25T06:41:47.951Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:41:47.951Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x2","0x2e","0x9793020","0x74a9287d","0x8e07010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9793020","hex":"01 00 00 00 00 00 00 00 00 00 62 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:41:48.064Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:48.066Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e0c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x8edc878","0x73f12c","0x23307ad8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8edc878","hex":"21 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:41:52.787Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x1","0x68","0x9793020","0x74a929ed","0x8e077f4","0x8e077e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9793020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:41:52.788Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:52.789Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:52.789Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e0c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8edc950","0x73f12c","0x23307ad8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8edc950","hex":"21 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:52.791Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e0c738","args":["0x1","0x1","0x2","0x53","0x9793020","0x74a929ed","0x8ee9a8c","0x8ee9a7c","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9793020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 5d d6 4a 5e 08 55 89 4c 80 f4 d2 be fa b1 b5 8d 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00"}],"time":"2026-04-25T06:41:52.792Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:41:52.793Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:41:52.793Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/031-frida-write-test-float-array/harness.log b/captures/031-frida-write-test-float-array/harness.log new file mode 100644 index 0000000..0f8fc1e --- /dev/null +++ b/captures/031-frida-write-test-float-array/harness.log @@ -0,0 +1,19 @@ +2026-04-25T06:41:39.1378217+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-031-frida-write-test-float-array","Tags":["TestChildObject.TestFloatArray[]"],"WriteType":"float[]","WriteValue":"1.25;2.5;3.75;4.25;5.5;6.75;7.25;8.5;9.75;10.25","WriteValues":[],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:41:46.3135751+00:00 mx.register.begin {"ClientName":"MxFridaTrace-031-frida-write-test-float-array"} +2026-04-25T06:41:46.6997629+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:41:46.6997629+00:00 mx.additem.begin {"Tag":"TestChildObject.TestFloatArray[]"} +2026-04-25T06:41:46.7017676+00:00 mx.additem.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T06:41:46.7027590+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T06:41:46.7037606+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T06:41:46.9608052+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Single[]","Length":10,"Values":["0","0","0","0","0","0","0","0","0","0"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.908 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:41:47.7491460+00:00 mx.write.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Single[]","Length":10,"Values":["1.25","2.5","3.75","4.25","5.5","6.75","7.25","8.5","9.75","10.25"]},"UserId":1} +2026-04-25T06:41:47.7511450+00:00 mx.write.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:41:48.0643597+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Single[]","Length":10,"Values":["1.25","2.5","3.75","4.25","5.5","6.75","7.25","8.5","9.75","10.25"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:41:47.947 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:41:48.0693590+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:41:52.7721789+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T06:41:52.7731783+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T06:41:52.7731783+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T06:41:52.7731783+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T06:41:52.7741798+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:41:56.6896904+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:41:56.6957786+00:00 harness.stop {} diff --git a/captures/032-frida-write-test-double-array/frida-command.txt b/captures/032-frida-write-test-double-array/frida-command.txt new file mode 100644 index 0000000..ca514ea --- /dev/null +++ b/captures/032-frida-write-test-double-array/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestDoubleArray[] --type=double[] --value=1.125;2.25;3.5;4.625;5.75;6.875;7.0;8.125;9.25;10.375 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\032-frida-write-test-double-array\harness.log --client=MxFridaTrace-032-frida-write-test-double-array diff --git a/captures/032-frida-write-test-double-array/frida-exit.txt b/captures/032-frida-write-test-double-array/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/032-frida-write-test-double-array/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/032-frida-write-test-double-array/frida.stderr.txt b/captures/032-frida-write-test-double-array/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/032-frida-write-test-double-array/frida.stdout.jsonl b/captures/032-frida-write-test-double-array/frida.stdout.jsonl new file mode 100644 index 0000000..ae2bf1d --- /dev/null +++ b/captures/032-frida-write-test-double-array/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDoubleArray[] --type=double[] --value=1.125;2.25;3.5;4.625;5.75;6.875;7.0;8.125;9.25;10.375 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\032-frida-write-test-double-array\harness.log --client=MxFridaTrace-032-frida-write-test-double-array`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDoubleArray[] --type=double[] --value=1.125;2.25;3.5;4.625;5.75;6.875;7.0;8.125;9.25;10.375 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\032-frida-write-test-double-array\harness.log --client=MxFridaTrace-032-frida-write-test-double-array`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:42:09.195Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:42:09.195Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:42:09.196Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:42:09.196Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:42:09.196Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:42:16.451Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:42:16.452Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:42:16.453Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:42:16.454Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xf9ee9c","args":["0x3e38ff0","0x1","0x1","0x5d7efa5","0x74794704"],"time":"2026-04-25T06:42:16.588Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:42:16.588Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x985c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9860648","0xf9eb60","0x16c34b80"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9860648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 85 09 1f 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:42:16.714Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x1","0x168","0xab25020","0xc985d4fa","0x9860214","0x9860204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xab25020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 85 09 1f 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:42:16.716Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:16.716Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:16.717Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x985c738","0x1","0x1","0x2","0x2","0x0","0x27","0x992ccf8","0xf9eb60","0x16c34b80"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x992ccf8","hex":"1f 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 00 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:16.718Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x2","0x55","0xab25020","0xc985d4fa","0x9939634","0x9939624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xab25020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 00 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:16.719Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:16.719Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:16.719Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x985c738","args":["0x5c","0x8332808","0x69cef40","0x76ffedd8","0x985c744","0x5c","0x8332808","0x206","0x3","0x7e0849c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8332808","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 eb 4d ab 7d 2e d8 02 49 b9 04 34 db b0 c9 41 06 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e0849c","hex":"60 e3 49"}],"time":"2026-04-25T06:42:16.731Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:16.731Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x985c738","args":["0xc2","0x83ab420","0x69cef40","0x76ffedd8","0x985c744","0xc2","0x83ab420","0x206","0x3","0x7e0849c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":194,"ptr":"0x83ab420","hex":"01 00 94 00 00 00 00 00 00 00 9d 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 eb 4d ab 7d 2e d8 02 49 b9 04 34 db b0 c9 41 06 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e0849c","hex":"60 e3 49"}],"time":"2026-04-25T06:42:16.733Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:16.733Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x985c738","args":["0x2c2","0x832b0d0","0x69cef40","0x76ffedd8","0x985c744","0x2c2","0x832b0d0","0x206","0x3","0x7e0849c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x832b0d0","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e0849c","hex":"60 e3 49"}],"time":"2026-04-25T06:42:16.749Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:16.749Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x985c738","args":["0x97","0x82ee530","0x69cef40","0x76ffedd8","0x985c744","0x97","0x82ee530","0x206","0x3","0x7e0849c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x82ee530","hex":"01 00 69 00 00 00 00 00 00 00 d0 fa 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 bc b7 5f 57 dc 37 fc 4e ac 96 79 a4 da 1a 2e f0 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e0849c","hex":"60 e3 49"}],"time":"2026-04-25T06:42:16.751Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:16.751Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x2","0x2e","0xab25020","0xc985d496","0x9857010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xab25020","hex":"01 00 00 00 00 00 00 00 00 00 9d 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:42:16.846Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:16.847Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x1","0x2e","0xab25020","0xc985d496","0x9857010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xab25020","hex":"01 00 00 00 00 00 00 00 00 00 d0 fa 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:42:16.849Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:16.849Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf9ee90","args":["0x3e38ff0","0x1","0x1","0x2005","0x0","0x8359798","0x0","0x1","0x5d7efa5","0x74794704"],"time":"2026-04-25T06:42:17.628Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:42:17.629Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x985c738","0x1","0x1","0x2","0x2","0x0","0x7e","0x9939c78","0xf9eb60","0x16c34b80"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":126,"ptr":"0x9939c78","hex":"37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f2 3f 00 00 00 00 00 00 02 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 80 12 40 00 00 00 00 00 00 17 40 00 00 00 00 00 80 1b 40 00 00 00 00 00 00 1c 40 00 00 00 00 00 40 20 40 00 00 00 00 00 80 22 40 00 00 00 00 00 c0 24 40 ff ff 00 00 00 00 00 00 00 00 cf 68 c6 08 01 00 00 00"}],"time":"2026-04-25T06:42:17.682Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x2","0xac","0xab25020","0xc985d4fa","0x98577f4","0x98577e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":172,"ptr":"0xab25020","hex":"01 00 7e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f2 3f 00 00 00 00 00 00 02 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 80 12 40 00 00 00 00 00 00 17 40 00 00 00 00 00 80 1b 40 00 00 00 00 00 00 1c 40 00 00 00 00 00 40 20 40 00 00 00 00 00 80 22 40 00 00 00 00 00 c0 24 40 ff ff 00 00 00 00 00 00 00 00 cf 68 c6 08 01 00 00 00"}],"time":"2026-04-25T06:42:17.683Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:17.684Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:17.684Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x985c738","args":["0x33","0x832c1d8","0x69cef40","0x76ffedd8","0x985c744","0x33","0x832c1d8","0x206","0x3","0x7e0849c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x832c1d8","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e0849c","hex":"60 e3 49"}],"time":"2026-04-25T06:42:17.725Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:17.725Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x985c738","args":["0xae","0x8333910","0x69cef40","0x76ffedd8","0x985c744","0xae","0x8333910","0x206","0x3","0x7e0849c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":174,"ptr":"0x8333910","hex":"01 00 80 00 00 00 00 00 00 00 a0 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 eb 4d ab 7d 2e d8 02 49 b9 04 34 db b0 c9 41 06 03 00 00 00 c0 00 b0 bc cc a8 7e d4 dc 01 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f2 3f 00 00 00 00 00 00 02 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 80 12 40 00 00 00 00 00 00 17 40 00 00 00 00 00 80 1b 40 00 00 00 00 00 00 1c 40 00 00 00 00 00 40 20 40 00 00 00 00 00 80 22 40 00 00 00 00 00 c0 24 40"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e0849c","hex":"60 e3 49"}],"time":"2026-04-25T06:42:17.727Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:17.727Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x2","0x2e","0xab25020","0xc985d496","0x9857010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xab25020","hex":"01 00 00 00 00 00 00 00 00 00 a0 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:42:17.789Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:17.790Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x985c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x992cd40","0xf9ed1c","0x16c34dcc"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x992cd40","hex":"21 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:42:22.675Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x1","0x68","0xab25020","0xc985d526","0x98577f4","0x98577e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0xab25020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:42:22.677Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:22.677Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:22.677Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x985c738","0x1","0x1","0x2","0x2","0x0","0x25","0x992cd88","0xf9ed1c","0x16c34dcc"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x992cd88","hex":"21 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:22.678Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x985c738","args":["0x1","0x1","0x2","0x53","0xab25020","0xc985d526","0x9939634","0x9939624","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xab25020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 6f 0a 69 2e b4 6e 56 4e aa 8f 5e 1b 39 4d 0f 38 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:22.679Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:22.680Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:22.680Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x985c738","args":["0x2e","0x8327db8","0x69cef40","0x76ffedd8","0x985c744","0x2e","0x8327db8","0x206","0x3","0x7e0849c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x8327db8","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e0849c","hex":"60 e3 49"}],"time":"2026-04-25T06:42:22.681Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:22.682Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/032-frida-write-test-double-array/harness.log b/captures/032-frida-write-test-double-array/harness.log new file mode 100644 index 0000000..f31bb28 --- /dev/null +++ b/captures/032-frida-write-test-double-array/harness.log @@ -0,0 +1,19 @@ +2026-04-25T06:42:09.0836032+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-032-frida-write-test-double-array","Tags":["TestChildObject.TestDoubleArray[]"],"WriteType":"double[]","WriteValue":"1.125;2.25;3.5;4.625;5.75;6.875;7.0;8.125;9.25;10.375","WriteValues":[],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:42:16.2069692+00:00 mx.register.begin {"ClientName":"MxFridaTrace-032-frida-write-test-double-array"} +2026-04-25T06:42:16.5831526+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:42:16.5841829+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDoubleArray[]"} +2026-04-25T06:42:16.5861592+00:00 mx.additem.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T06:42:16.5871439+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T06:42:16.5881480+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T06:42:16.8431547+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Double[]","Length":10,"Values":["0","0","0","0","0","0","0","0","0","0"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:42:17.6271283+00:00 mx.write.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Double[]","Length":10,"Values":["1.125","2.25","3.5","4.625","5.75","6.875","7","8.125","9.25","10.375"]},"UserId":1} +2026-04-25T06:42:17.6291435+00:00 mx.write.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:42:17.7894663+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Double[]","Length":10,"Values":["1.125","2.25","3.5","4.625","5.75","6.875","7","8.125","9.25","10.375"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:42:17.723 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:42:17.7934475+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:42:22.6561069+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T06:42:22.6570885+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T06:42:22.6570885+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T06:42:22.6570885+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T06:42:22.6570885+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:42:26.4560275+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:42:26.4619618+00:00 harness.stop {} diff --git a/captures/033-frida-write-test-string-array/frida-command.txt b/captures/033-frida-write-test-string-array/frida-command.txt new file mode 100644 index 0000000..b9856ec --- /dev/null +++ b/captures/033-frida-write-test-string-array/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestStringArray[] --type=string[] --value=A01;B02;C03;D04;E05;F06;G07;H08;I09;J10 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\033-frida-write-test-string-array\harness.log --client=MxFridaTrace-033-frida-write-test-string-array diff --git a/captures/033-frida-write-test-string-array/frida-exit.txt b/captures/033-frida-write-test-string-array/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/033-frida-write-test-string-array/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/033-frida-write-test-string-array/frida.stderr.txt b/captures/033-frida-write-test-string-array/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/033-frida-write-test-string-array/frida.stdout.jsonl b/captures/033-frida-write-test-string-array/frida.stdout.jsonl new file mode 100644 index 0000000..c2f9ab9 --- /dev/null +++ b/captures/033-frida-write-test-string-array/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestStringArray[] --type=string[] --value=A01;B02;C03;D04;E05;F06;G07;H08;I09;J10 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\033-frida-write-test-string-array\harness.log --client=MxFridaTrace-033-frida-write-test-string-array`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestStringArray[] --type=string[] --value=A01;B02;C03;D04;E05;F06;G07;H08;I09;J10 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\033-frida-write-test-string-array\harness.log --client=MxFridaTrace-033-frida-write-test-string-array`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:42:38.496Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:42:38.497Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:42:38.498Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:42:38.498Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:42:38.499Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:42:45.646Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:42:45.646Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:42:45.647Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:42:45.647Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xbff25c","args":["0x62f8ff0","0x1","0x1","0xa1a740a3","0x74794704"],"time":"2026-04-25T06:42:45.754Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:42:45.755Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x94c0648","0xbfef20","0xe9fa2b6f"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x94c0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4b 09 1f 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:42:45.879Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x1","0x168","0xa642020","0x1d4aabb2","0x94c0214","0x94c0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa642020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4b 09 1f 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:42:45.882Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:45.883Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:45.883Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x2","0x2","0x0","0x27","0x958c878","0xbfef20","0xe9fa2b6f"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x958c878","hex":"1f 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:45.884Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x55","0xa642020","0x1d4aabb2","0x9599634","0x9599624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa642020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:45.886Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:45.886Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:45.887Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x5c","0x11165a8","0x769ee28","0x76ffedd8","0x94bc744","0x5c","0x11165a8","0x206","0x3","0x7a6edbc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x11165a8","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 d7 ef 00 6d e2 dc 01 41 9e 2b 46 ce c4 ca 88 07 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a6edbc","hex":"88 ae a6"}],"time":"2026-04-25T06:42:45.906Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:45.906Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0xf4","0x1152020","0x769ee28","0x76ffedd8","0x94bc744","0xf4","0x1152020","0x206","0x3","0x7a6edbc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":244,"ptr":"0x1152020","hex":"01 00 c6 00 00 00 00 00 00 00 db 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 d7 ef 00 6d e2 dc 01 41 9e 2b 46 ce c4 ca 88 07 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 03 00 00 00 03 00 00 00 c0 00 c0 c7 e2 57 47 bd dc 01 45 00 00 00 00 0a 00 04 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00 09 00 00 00 05 04 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a6edbc","hex":"88 ae a6"}],"time":"2026-04-25T06:42:45.908Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:45.908Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x2c2","0x7fcc2f0","0x769ee28","0x76ffedd8","0x94bc744","0x2c2","0x7fcc2f0","0x206","0x3","0x7a6edbc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7fcc2f0","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a6edbc","hex":"88 ae a6"}],"time":"2026-04-25T06:42:45.910Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:45.911Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x97","0x1159758","0x769ee28","0x76ffedd8","0x94bc744","0x97","0x1159758","0x206","0x3","0x7a6edbc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x1159758","hex":"01 00 69 00 00 00 00 00 00 00 45 fb 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 41 b3 b4 fc 67 66 8e 47 a7 e8 3e d3 d8 05 c4 d5 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a6edbc","hex":"88 ae a6"}],"time":"2026-04-25T06:42:45.912Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:45.913Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x2e","0xa642020","0x1d4aa85e","0x94b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa642020","hex":"01 00 00 00 00 00 00 00 00 00 db 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:42:46.010Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:46.011Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x1","0x2e","0xa642020","0x1d4aa85e","0x94b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa642020","hex":"01 00 00 00 00 00 00 00 00 00 45 fb 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:42:46.012Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:46.012Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xbff250","args":["0x62f8ff0","0x1","0x1","0x2008","0x0","0x7fc1ee8","0x0","0x1","0xa1a740a3","0x74794704"],"time":"2026-04-25T06:42:46.795Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:42:46.796Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x2","0x2","0x0","0x100","0x9599dc0","0xbfef20","0xe9fa2b6f"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":256,"ptr":"0x9599dc0","hex":"37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 30 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 30 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 30 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 30 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 30 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 30 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 30 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 30 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 30 00 39 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4a 00 31 00 30 00 00 00 ff ff 00 00 00 00 00 00 00 00 c3 da c6 08 01 00 00 00"}],"time":"2026-04-25T06:42:46.953Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x12e","0xa642020","0x1d4aabb2","0x94b77f4","0x94b77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":302,"ptr":"0xa642020","hex":"01 00 00 01 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 30 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 30 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 30 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 30 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 30 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 30 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 30 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 30 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49"}],"time":"2026-04-25T06:42:46.955Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:46.955Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:46.955Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x33","0x7f71998","0x769ee28","0x76ffedd8","0x94bc744","0x33","0x7f71998","0x206","0x3","0x7a6edbc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7f71998","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a6edbc","hex":"88 ae a6"}],"time":"2026-04-25T06:42:47.005Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:47.006Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x130","0x1152020","0x769ee28","0x76ffedd8","0x94bc744","0x130","0x1152020","0x206","0x3","0x7a6edbc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":304,"ptr":"0x1152020","hex":"01 00 02 01 00 00 00 00 00 00 de 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 d7 ef 00 6d e2 dc 01 41 9e 2b 46 ce c4 ca 88 07 03 00 00 00 c0 00 c0 a9 40 ba 7e d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 30 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 30 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 30 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 30 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 30 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 30 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 30 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a6edbc","hex":"88 ae a6"}],"time":"2026-04-25T06:42:47.007Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:47.008Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x2e","0xa642020","0x1d4aa85e","0x94b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa642020","hex":"01 00 00 00 00 00 00 00 00 00 de 7d 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:42:47.113Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:47.114Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x958c710","0xbff0dc","0xe9fa2aa3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x958c710","hex":"21 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:42:51.838Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x1","0x68","0xa642020","0x1d4aa9ee","0x94b77f4","0x94b77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0xa642020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:42:51.839Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:51.840Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:51.841Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x2","0x2","0x0","0x25","0x958c908","0xbff0dc","0xe9fa2aa3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x958c908","hex":"21 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:51.842Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x53","0xa642020","0x1d4aa9ee","0x9599a8c","0x9599a7c","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa642020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 6e 2b 87 df c8 91 19 4c b4 a2 4f 17 fb 1f 9f 80 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T06:42:51.843Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:42:51.843Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:42:51.843Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x2e","0x1159758","0x769ee28","0x76ffedd8","0x94bc744","0x2e","0x1159758","0x206","0x3","0x7a6edbc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1159758","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a6edbc","hex":"88 ae a6"}],"time":"2026-04-25T06:42:51.846Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:42:51.847Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/033-frida-write-test-string-array/harness.log b/captures/033-frida-write-test-string-array/harness.log new file mode 100644 index 0000000..636edca --- /dev/null +++ b/captures/033-frida-write-test-string-array/harness.log @@ -0,0 +1,19 @@ +2026-04-25T06:42:38.4044576+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-033-frida-write-test-string-array","Tags":["TestChildObject.TestStringArray[]"],"WriteType":"string[]","WriteValue":"A01;B02;C03;D04;E05;F06;G07;H08;I09;J10","WriteValues":[],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:42:45.3849048+00:00 mx.register.begin {"ClientName":"MxFridaTrace-033-frida-write-test-string-array"} +2026-04-25T06:42:45.7501963+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:42:45.7512156+00:00 mx.additem.begin {"Tag":"TestChildObject.TestStringArray[]"} +2026-04-25T06:42:45.7521542+00:00 mx.additem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T06:42:45.7531803+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T06:42:45.7551420+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T06:42:46.0074007+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String[]","Length":10,"Values":["","","","","","","","","",""]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.908 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:42:46.7923059+00:00 mx.write.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String[]","Length":10,"Values":["A01","B02","C03","D04","E05","F06","G07","H08","I09","J10"]},"UserId":1} +2026-04-25T06:42:46.7963060+00:00 mx.write.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:42:47.1129309+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.String[]","Length":10,"Values":["A01","B02","C03","D04","E05","F06","G07","H08","I09","J10"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:42:47.004 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:42:47.1168821+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:42:51.8233660+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T06:42:51.8243643+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T06:42:51.8243643+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T06:42:51.8243643+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T06:42:51.8253029+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:42:55.7328658+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:42:55.7378647+00:00 harness.stop {} diff --git a/captures/034-frida-write-test-datetime-array/frida-command.txt b/captures/034-frida-write-test-datetime-array/frida-command.txt new file mode 100644 index 0000000..5076d90 --- /dev/null +++ b/captures/034-frida-write-test-datetime-array/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\034-frida-write-test-datetime-array\harness.log --client=MxFridaTrace-034-frida-write-test-datetime-array diff --git a/captures/034-frida-write-test-datetime-array/frida-exit.txt b/captures/034-frida-write-test-datetime-array/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/034-frida-write-test-datetime-array/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/034-frida-write-test-datetime-array/frida.stderr.txt b/captures/034-frida-write-test-datetime-array/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/034-frida-write-test-datetime-array/frida.stdout.jsonl b/captures/034-frida-write-test-datetime-array/frida.stdout.jsonl new file mode 100644 index 0000000..5d11d0a --- /dev/null +++ b/captures/034-frida-write-test-datetime-array/frida.stdout.jsonl @@ -0,0 +1,67 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\034-frida-write-test-datetime-array\harness.log --client=MxFridaTrace-034-frida-write-test-datetime-array`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\034-frida-write-test-datetime-array\harness.log --client=MxFridaTrace-034-frida-write-test-datetime-array`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:43:07.728Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:43:07.729Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:43:07.730Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:43:07.730Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:43:07.730Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:43:14.676Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:43:14.676Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:43:14.677Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:43:14.677Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xbfec3c","args":["0x6108ff0","0x1","0x1","0xf6996252","0x74794704"],"time":"2026-04-25T06:43:14.789Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:43:14.789Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x94c0648","0xbfe900","0xd9f6e1c7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x94c0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4b 09 1f 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61"}],"time":"2026-04-25T06:43:14.912Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x1","0x168","0x9e45020","0x64279885","0x94c0214","0x94c0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9e45020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4b 09 1f 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d"}],"time":"2026-04-25T06:43:14.915Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:14.915Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:43:14.916Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x2","0x2","0x0","0x27","0x958cab8","0xbfe900","0xd9f6e1c7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x958cab8","hex":"1f 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:43:14.916Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x55","0x9e45020","0x64279885","0x9599634","0x9599624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9e45020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:43:14.918Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:14.918Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:43:14.918Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x5c","0x7f34ba0","0x764e8d0","0x76ffedd8","0x94bc744","0x5c","0x7f34ba0","0x206","0x3","0x7a5cd4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7f34ba0","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 09 22 51 27 94 65 ff 40 a5 33 bf 25 18 6e b8 6e d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a5cd4c","hex":"a0 40 0c"}],"time":"2026-04-25T06:43:14.948Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:43:14.948Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0xea","0x1338d38","0x764e8d0","0x76ffedd8","0x94bc744","0xea","0x1338d38","0x206","0x3","0x7a5cd4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":234,"ptr":"0x1338d38","hex":"01 00 bc 00 00 00 00 00 00 00 18 7e 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 09 22 51 27 94 65 ff 40 a5 33 bf 25 18 6e b8 6e d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 46 00 00 00 00 0a 00 0c 00 00 00 50 df f4 20 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00 b0 ca 57 22 aa b9 dc 01 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a5cd4c","hex":"a0 40 0c"}],"time":"2026-04-25T06:43:14.950Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:43:14.950Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x2c2","0x1322a00","0x764e8d0","0x76ffedd8","0x94bc744","0x2c2","0x1322a00","0x206","0x3","0x7a5cd4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x1322a00","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a5cd4c","hex":"a0 40 0c"}],"time":"2026-04-25T06:43:14.957Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:43:14.958Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x97","0x7f42350","0x764e8d0","0x76ffedd8","0x94bc744","0x97","0x7f42350","0x206","0x3","0x7a5cd4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7f42350","hex":"01 00 69 00 00 00 00 00 00 00 ba fb 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 04 f1 e8 0f 4c 1c 4f 49 91 4e 68 a8 61 ac 33 f9 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a5cd4c","hex":"a0 40 0c"}],"time":"2026-04-25T06:43:14.959Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:43:14.959Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x2e","0x9e45020","0x642798a9","0x94b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9e45020","hex":"01 00 00 00 00 00 00 00 00 00 18 7e 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:43:15.052Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:15.053Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x1","0x2e","0x9e45020","0x642798a9","0x94b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9e45020","hex":"01 00 00 00 00 00 00 00 00 00 ba fb 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:43:15.055Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:15.056Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xbfec30","args":["0x6108ff0","0x1","0x1","0x2007","0x0","0x7fa48c8","0x0","0x1","0xf6996252","0x74794704"],"time":"2026-04-25T06:43:15.841Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:43:15.842Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x2","0x2","0x0","0x254","0x959a0c0","0xbfe900","0xd9f6e1c7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":596,"ptr":"0x959a0c0","hex":"37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00"}],"time":"2026-04-25T06:43:15.894Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x282","0x9e45020","0x64279885","0x94b77f4","0x94b77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":642,"ptr":"0x9e45020","hex":"01 00 54 02 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00"}],"time":"2026-04-25T06:43:15.896Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:15.896Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:43:15.898Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0x33","0x7f34ba0","0x764e8d0","0x76ffedd8","0x94bc744","0x33","0x7f34ba0","0x206","0x3","0x7a5cd4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7f34ba0","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a5cd4c","hex":"a0 40 0c"}],"time":"2026-04-25T06:43:15.902Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:43:15.903Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94bc738","args":["0xd6","0x132d450","0x764e8d0","0x76ffedd8","0x94bc744","0xd6","0x132d450","0x206","0x3","0x7a5cd4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":214,"ptr":"0x132d450","hex":"01 00 a8 00 00 00 00 00 00 00 1b 7e 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 09 22 51 27 94 65 ff 40 a5 33 bf 25 18 6e b8 6e 03 00 00 00 c0 00 d0 fe 79 cb 7e d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 58 f7 21 81 d4 dc 01 00 00 00 00 00 9e ba 45 81 d4 dc 01 00 00 00 00 00 e4 7d 69 81 d4 dc 01 00 00 00 00 00 2a 41 8d 81 d4 dc 01 00 00 00 00 00 70 04 b1 81 d4 dc 01 00 00 00 00 00 b6 c7 d4 81 d4 dc 01 00 00 00 00 00 fc 8a f8 81 d4 dc 01 00 00 00 00 00 42 4e 1c 82 d4 dc 01 00 00 00 00 00 88 11 40 82 d4 dc 01 00 00 00 00 00 ce d4 63 82 d4 dc 01 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a5cd4c","hex":"a0 40 0c"}],"time":"2026-04-25T06:43:15.904Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:43:15.905Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x2e","0x9e45020","0x642798a9","0x94b7010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9e45020","hex":"01 00 00 00 00 00 00 00 00 00 1b 7e 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:43:16.002Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:16.003Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x958cab8","0xbfeabc","0xd9f6e00b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x958cab8","hex":"21 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:43:20.874Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x1","0x68","0x9e45020","0x642796d9","0x94b77f4","0x94b77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9e45020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:43:20.875Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:20.876Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:43:20.876Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94bc738","0x1","0x1","0x2","0x2","0x0","0x25","0x958ca70","0xbfeabc","0xd9f6e00b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x958ca70","hex":"21 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:43:20.877Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94bc738","args":["0x1","0x1","0x2","0x53","0x9e45020","0x642796d9","0x9599634","0x9599624","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9e45020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 d6 e9 73 0d 4e d3 54 41 80 2f 5a 7a ac ff bb aa 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:43:20.878Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:43:20.879Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:43:20.879Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/034-frida-write-test-datetime-array/harness.log b/captures/034-frida-write-test-datetime-array/harness.log new file mode 100644 index 0000000..0f96b57 --- /dev/null +++ b/captures/034-frida-write-test-datetime-array/harness.log @@ -0,0 +1,19 @@ +2026-04-25T06:43:07.6224842+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-034-frida-write-test-datetime-array","Tags":["TestChildObject.TestDateTimeArray[]"],"WriteType":"datetime[]","WriteValue":"2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00","WriteValues":[],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:43:14.4344222+00:00 mx.register.begin {"ClientName":"MxFridaTrace-034-frida-write-test-datetime-array"} +2026-04-25T06:43:14.7854313+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:43:14.7864357+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDateTimeArray[]"} +2026-04-25T06:43:14.7884322+00:00 mx.additem.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:43:14.7884322+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:43:14.7894336+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:43:15.0481406+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["3/21/2026 11:15:26 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM","3/21/2026 11:15:28 PM"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.907 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:43:15.8392793+00:00 mx.write.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["4/25/2026 3:00:00 AM","4/25/2026 3:01:00 AM","4/25/2026 3:02:00 AM","4/25/2026 3:03:00 AM","4/25/2026 3:04:00 AM","4/25/2026 3:05:00 AM","4/25/2026 3:06:00 AM","4/25/2026 3:07:00 AM","4/25/2026 3:08:00 AM","4/25/2026 3:09:00 AM"]},"UserId":1} +2026-04-25T06:43:15.8422802+00:00 mx.write.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:43:16.0019380+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["4/25/2026 3:00:00 AM","4/25/2026 3:01:00 AM","4/25/2026 3:02:00 AM","4/25/2026 3:03:00 AM","4/25/2026 3:04:00 AM","4/25/2026 3:05:00 AM","4/25/2026 3:06:00 AM","4/25/2026 3:07:00 AM","4/25/2026 3:08:00 AM","4/25/2026 3:09:00 AM"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:43:15.901 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:43:16.0059569+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:43:20.8603261+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:43:20.8603261+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:43:20.8613349+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:43:20.8613349+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:43:20.8613349+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:43:25.0136625+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:43:25.0197245+00:00 harness.stop {} diff --git a/captures/034-frida-write-test-datetime-array/putrequest-body.txt b/captures/034-frida-write-test-datetime-array/putrequest-body.txt new file mode 100644 index 0000000..a3296bd --- /dev/null +++ b/captures/034-frida-write-test-datetime-array/putrequest-body.txt @@ -0,0 +1,2 @@ +034-frida-write-test-datetime-array len 256 +37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 diff --git a/captures/035-frida-write-test-datetime-array-full/frida-command.txt b/captures/035-frida-write-test-datetime-array-full/frida-command.txt new file mode 100644 index 0000000..7fb66c2 --- /dev/null +++ b/captures/035-frida-write-test-datetime-array-full/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\035-frida-write-test-datetime-array-full\harness.log --client=MxFridaTrace-035-frida-write-test-datetime-array-full diff --git a/captures/035-frida-write-test-datetime-array-full/frida-exit.txt b/captures/035-frida-write-test-datetime-array-full/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/035-frida-write-test-datetime-array-full/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/035-frida-write-test-datetime-array-full/frida.stderr.txt b/captures/035-frida-write-test-datetime-array-full/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/035-frida-write-test-datetime-array-full/frida.stdout.jsonl b/captures/035-frida-write-test-datetime-array-full/frida.stdout.jsonl new file mode 100644 index 0000000..b7e9915 --- /dev/null +++ b/captures/035-frida-write-test-datetime-array-full/frida.stdout.jsonl @@ -0,0 +1,67 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\035-frida-write-test-datetime-array-full\harness.log --client=MxFridaTrace-035-frida-write-test-datetime-array-full`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\035-frida-write-test-datetime-array-full\harness.log --client=MxFridaTrace-035-frida-write-test-datetime-array-full`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:44:47.064Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:44:47.065Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:44:47.066Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:44:47.066Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:44:47.067Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:44:54.009Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:44:54.010Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:44:54.011Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:44:54.012Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xafed5c","args":["0x5e58ff0","0x1","0x1","0xb63804b8","0x74794704"],"time":"2026-04-25T06:44:54.165Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:44:54.165Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9090648","0xafea20","0x73c3bb08"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9090648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:44:54.289Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x1","0x168","0x9d14020","0x3011becd","0x9090214","0x9090204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9d14020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:44:54.291Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:44:54.292Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:44:54.292Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x2","0x2","0x0","0x27","0x915ca70","0xafea20","0x73c3bb08"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x915ca70","hex":"1f 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:44:54.293Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x2","0x55","0x9d14020","0x3011becd","0x9169634","0x9169624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9d14020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:44:54.294Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:44:54.295Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:44:54.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x2c2","0xe43d10","0x8cae9b0","0x76ffedd8","0x908c744","0x2c2","0xe43d10","0x206","0x3","0x79293ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xe43d10","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 72 ad e9 54 a8 92 ab 4c 93 f0 a1 63 71 a1 1e b7 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79293ac","hex":"50 81 92"}],"time":"2026-04-25T06:44:54.319Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:44:54.319Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x97","0x7975338","0x8cae9b0","0x76ffedd8","0x908c744","0x97","0x7975338","0x206","0x3","0x79293ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7975338","hex":"01 00 69 00 00 00 00 00 00 00 49 fd 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 72 ad e9 54 a8 92 ab 4c 93 f0 a1 63 71 a1 1e b7 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79293ac","hex":"50 81 92"}],"time":"2026-04-25T06:44:54.322Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:44:54.322Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x5c","0x76f9a08","0x8cae9b0","0x76ffedd8","0x908c744","0x5c","0x76f9a08","0x206","0x3","0x79293ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x76f9a08","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c4 10 20 21 f5 14 45 42 aa 5a 7e 63 fc e1 d7 72 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79293ac","hex":"50 81 92"}],"time":"2026-04-25T06:44:54.326Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:44:54.326Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0xea","0x78a2ae0","0x8cae9b0","0x76ffedd8","0x908c744","0xea","0x78a2ae0","0x206","0x3","0x79293ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":234,"ptr":"0x78a2ae0","hex":"01 00 bc 00 00 00 00 00 00 00 e1 7e 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c4 10 20 21 f5 14 45 42 aa 5a 7e 63 fc e1 d7 72 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 03 00 00 00 03 00 00 00 c0 00 d0 fe 79 cb 7e d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 58 f7 21 81 d4 dc 01 00 00 00 00 00 9e ba 45 81 d4 dc 01 00 00 00 00 00 e4 7d 69 81 d4 dc 01 00 00 00 00 00 2a 41 8d 81 d4 dc 01 00 00 00 00 00 70 04 b1 81 d4 dc 01 00 00 00 00 00 b6 c7 d4 81 d4 dc 01 00 00 00 00 00 fc 8a f8 81 d4 dc 01 00 00 00 00 00 42 4e 1c 82 d4 dc 01 00 00 00 00 00 88 11 40 82 d4 dc 01 00 00 00 00 00 ce d4 63 82 d4 dc 01 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79293ac","hex":"50 81 92"}],"time":"2026-04-25T06:44:54.330Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:44:54.334Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x1","0x2e","0x9d14020","0x3011bf21","0x9087010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9d14020","hex":"01 00 00 00 00 00 00 00 00 00 49 fd 08 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:44:54.400Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:44:54.400Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x2","0x2e","0x9d14020","0x3011bf21","0x9087010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9d14020","hex":"01 00 00 00 00 00 00 00 00 00 e1 7e 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:44:54.421Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:44:54.421Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xafed50","args":["0x5e58ff0","0x1","0x1","0x2007","0x0","0x792c268","0x0","0x1","0xb63804b8","0x74794704"],"time":"2026-04-25T06:44:55.233Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T06:44:55.235Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x2","0x2","0x0","0x254","0x916a0c0","0xafea20","0x73c3bb08"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":596,"ptr":"0x916a0c0","hex":"37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 34 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 35 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 36 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 37 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 38 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 39 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 3a d0 c8 08 01 00 00 00"}],"time":"2026-04-25T06:44:55.291Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x2","0x282","0x9d14020","0x3011becd","0x90877f4","0x90877e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":642,"ptr":"0x9d14020","hex":"01 00 54 02 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 34 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 35 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 36 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 37 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 38 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 33 00 3a 00 30 00 39 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 3a d0 c8 08 01 00 00 00"}],"time":"2026-04-25T06:44:55.293Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:44:55.294Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:44:55.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x33","0xe43d10","0x8cae9b0","0x76ffedd8","0x908c744","0x33","0xe43d10","0x206","0x3","0x79293ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xe43d10","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79293ac","hex":"50 81 92"}],"time":"2026-04-25T06:44:55.318Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:44:55.318Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0xd6","0x7976440","0x8cae9b0","0x76ffedd8","0x908c744","0xd6","0x7976440","0x206","0x3","0x79293ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":214,"ptr":"0x7976440","hex":"01 00 a8 00 00 00 00 00 00 00 e4 7e 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 c4 10 20 21 f5 14 45 42 aa 5a 7e 63 fc e1 d7 72 03 00 00 00 c0 00 40 85 bb 06 7f d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 58 f7 21 81 d4 dc 01 00 00 00 00 00 9e ba 45 81 d4 dc 01 00 00 00 00 00 e4 7d 69 81 d4 dc 01 00 00 00 00 00 2a 41 8d 81 d4 dc 01 00 00 00 00 00 70 04 b1 81 d4 dc 01 00 00 00 00 00 b6 c7 d4 81 d4 dc 01 00 00 00 00 00 fc 8a f8 81 d4 dc 01 00 00 00 00 00 42 4e 1c 82 d4 dc 01 00 00 00 00 00 88 11 40 82 d4 dc 01 00 00 00 00 00 ce d4 63 82 d4 dc 01 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79293ac","hex":"50 81 92"}],"time":"2026-04-25T06:44:55.320Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:44:55.320Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x2","0x2e","0x9d14020","0x3011bf21","0x9087010","0x0","0x0","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9d14020","hex":"01 00 00 00 00 00 00 00 00 00 e4 7e 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:44:55.400Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:44:55.400Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x915c830","0xafebdc","0x73c3b8c4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x915c830","hex":"21 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:45:00.273Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x1","0x68","0x9d14020","0x3011bc91","0x90877f4","0x90877e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9d14020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:45:00.274Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:45:00.274Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:45:00.275Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x2","0x2","0x0","0x25","0x915ca28","0xafebdc","0x73c3b8c4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x915ca28","hex":"21 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:45:00.276Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x2","0x53","0x9d14020","0x3011bc91","0x9169634","0x9169624","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9d14020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 25 02 68 5f 5d 63 73 41 a7 e6 fc 68 22 8a 57 68 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T06:45:00.278Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:45:00.279Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:45:00.279Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/035-frida-write-test-datetime-array-full/harness.log b/captures/035-frida-write-test-datetime-array-full/harness.log new file mode 100644 index 0000000..1c728e0 --- /dev/null +++ b/captures/035-frida-write-test-datetime-array-full/harness.log @@ -0,0 +1,19 @@ +2026-04-25T06:44:46.9587433+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-035-frida-write-test-datetime-array-full","Tags":["TestChildObject.TestDateTimeArray[]"],"WriteType":"datetime[]","WriteValue":"2026-04-25T03:00:00;2026-04-25T03:01:00;2026-04-25T03:02:00;2026-04-25T03:03:00;2026-04-25T03:04:00;2026-04-25T03:05:00;2026-04-25T03:06:00;2026-04-25T03:07:00;2026-04-25T03:08:00;2026-04-25T03:09:00","WriteValues":[],"UserId":1,"WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:44:53.7669999+00:00 mx.register.begin {"ClientName":"MxFridaTrace-035-frida-write-test-datetime-array-full"} +2026-04-25T06:44:54.1618842+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:44:54.1628820+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDateTimeArray[]"} +2026-04-25T06:44:54.1648858+00:00 mx.additem.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:44:54.1648858+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:44:54.1657968+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:44:54.4189624+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["4/25/2026 3:00:00 AM","4/25/2026 3:01:00 AM","4/25/2026 3:02:00 AM","4/25/2026 3:03:00 AM","4/25/2026 3:04:00 AM","4/25/2026 3:05:00 AM","4/25/2026 3:06:00 AM","4/25/2026 3:07:00 AM","4/25/2026 3:08:00 AM","4/25/2026 3:09:00 AM"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:43:15.901 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:44:55.2295456+00:00 mx.write.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["4/25/2026 3:00:00 AM","4/25/2026 3:01:00 AM","4/25/2026 3:02:00 AM","4/25/2026 3:03:00 AM","4/25/2026 3:04:00 AM","4/25/2026 3:05:00 AM","4/25/2026 3:06:00 AM","4/25/2026 3:07:00 AM","4/25/2026 3:08:00 AM","4/25/2026 3:09:00 AM"]},"UserId":1} +2026-04-25T06:44:55.2355455+00:00 mx.write.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T06:44:55.3993369+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["4/25/2026 3:00:00 AM","4/25/2026 3:01:00 AM","4/25/2026 3:02:00 AM","4/25/2026 3:03:00 AM","4/25/2026 3:04:00 AM","4/25/2026 3:05:00 AM","4/25/2026 3:06:00 AM","4/25/2026 3:07:00 AM","4/25/2026 3:08:00 AM","4/25/2026 3:09:00 AM"]},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:44:55.316 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:44:55.4032764+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T06:45:00.2589303+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:45:00.2599984+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:45:00.2599984+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:45:00.2599984+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T06:45:00.2599984+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:45:04.0901334+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:45:04.0951379+00:00 harness.stop {} diff --git a/captures/036-frida-write-secured-test-int/frida-command.txt b/captures/036-frida-write-secured-test-int/frida-command.txt new file mode 100644 index 0000000..753450e --- /dev/null +++ b/captures/036-frida-write-secured-test-int/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured --tag=TestChildObject.TestInt --type=int --value=112 --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\036-frida-write-secured-test-int\harness.log --client=MxFridaTrace-036-frida-write-secured-test-int diff --git a/captures/036-frida-write-secured-test-int/frida-exit.txt b/captures/036-frida-write-secured-test-int/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/036-frida-write-secured-test-int/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/036-frida-write-secured-test-int/frida.stderr.txt b/captures/036-frida-write-secured-test-int/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/036-frida-write-secured-test-int/frida.stdout.jsonl b/captures/036-frida-write-secured-test-int/frida.stdout.jsonl new file mode 100644 index 0000000..30ff2d6 --- /dev/null +++ b/captures/036-frida-write-secured-test-int/frida.stdout.jsonl @@ -0,0 +1,57 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestChildObject.TestInt --type=int --value=112 --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\036-frida-write-secured-test-int\harness.log --client=MxFridaTrace-036-frida-write-secured-test-int`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestChildObject.TestInt --type=int --value=112 --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\036-frida-write-secured-test-int\harness.log --client=MxFridaTrace-036-frida-write-secured-test-int`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:56:34.152Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:56:34.152Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:56:34.153Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:56:34.153Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:56:34.154Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:56:41.405Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:56:41.406Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:56:41.406Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:56:41.407Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x10fec60","args":["0x6408ff0","0x1","0x1","0xf91b24f6","0x74794704"],"time":"2026-04-25T06:56:41.479Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:56:41.480Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ec738","0x1","0x1","0x1","0x2","0x0","0x13a","0x96f0648","0x10fe924","0x7900e020"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x96f0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6e 09 1f 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6f 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:56:41.609Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ec738","args":["0x1","0x1","0x1","0x168","0xa874020","0xd9e82ef3","0x96f0214","0x96f0204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa874020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6e 09 1f 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6f 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:56:41.611Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:56:41.612Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:56:41.613Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ec738","0x1","0x1","0x2","0x2","0x0","0x27","0x97be210","0x10fe924","0x7900e020"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x97be210","hex":"1f 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:56:41.614Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ec738","args":["0x1","0x1","0x2","0x55","0xa874020","0xd9e82ef3","0x97c9584","0x97c9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa874020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:56:41.615Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:56:41.616Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:56:41.616Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ec738","args":["0x5c","0x81bc748","0x7a2ef78","0x76ffedd8","0x96ec744","0x5c","0x81bc748","0x206","0x3","0x7cfbc84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x81bc748","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 13 95 a3 28 80 16 df 49 92 51 51 ac d9 3d 07 6e 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7cfbc84","hex":"08 1e 1f"}],"time":"2026-04-25T06:56:41.631Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:56:41.631Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ec738","args":["0x6c","0x1576d88","0x7a2ef78","0x76ffedd8","0x96ec744","0x6c","0x1576d88","0x206","0x3","0x7cfbc84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x1576d88","hex":"01 00 3e 00 00 00 00 00 00 00 6b 84 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 13 95 a3 28 80 16 df 49 92 51 51 ac d9 3d 07 6e 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 03 00 00 00 03 00 00 00 c0 00 90 06 82 68 7b d4 dc 01 02 6f 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7cfbc84","hex":"08 1e 1f"}],"time":"2026-04-25T06:56:41.633Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:56:41.633Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ec738","args":["0x2c2","0x81bb640","0x7a2ef78","0x76ffedd8","0x96ec744","0x2c2","0x81bb640","0x206","0x3","0x7cfbc84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x81bb640","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 dc d6 1c 3e 15 05 f9 4c 89 ab 96 69 22 df ec 33 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7cfbc84","hex":"08 1e 1f"}],"time":"2026-04-25T06:56:41.639Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:56:41.639Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ec738","args":["0x97","0x81b8328","0x7a2ef78","0x76ffedd8","0x96ec744","0x97","0x81b8328","0x206","0x3","0x7cfbc84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x81b8328","hex":"01 00 69 00 00 00 00 00 00 00 57 08 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 dc d6 1c 3e 15 05 f9 4c 89 ab 96 69 22 df ec 33 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7cfbc84","hex":"08 1e 1f"}],"time":"2026-04-25T06:56:41.641Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:56:41.641Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ec738","args":["0x1","0x1","0x2","0x2e","0xa874020","0xd9e82127","0x96e7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa874020","hex":"01 00 00 00 00 00 00 00 00 00 6b 84 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:56:41.743Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:56:41.744Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ec738","args":["0x1","0x1","0x1","0x2e","0xa874020","0xd9e82127","0x96e7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa874020","hex":"01 00 00 00 00 00 00 00 00 00 57 08 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:56:41.745Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:56:41.746Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","address":"0x65a52f24","ecx":"0x10fec30","args":["0x6408ff0","0x1","0x1","0x1","0x0","0x3","0x0","0x70","0x0","0xf91b24f6"],"time":"2026-04-25T06:56:42.529Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","retval":"0x80004021","time":"2026-04-25T06:56:42.529Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ec738","0x1","0x1","0x1","0x2","0x0","0x3a","0x97be180","0x10feae0","0x7900e1e4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x97be180","hex":"21 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:56:47.586Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ec738","args":["0x1","0x1","0x1","0x68","0xa874020","0xd9e820b7","0x96f01ac","0x96f019c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0xa874020","hex":"01 00 3a 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:56:47.589Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:56:47.590Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:56:47.590Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ec738","0x1","0x1","0x2","0x2","0x0","0x25","0x97be9f0","0x10feae0","0x7900e1e4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x97be9f0","hex":"21 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:56:47.592Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ec738","args":["0x1","0x1","0x2","0x53","0xa874020","0xd9e820b7","0x97c99dc","0x97c99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa874020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 99 3d 25 fd e2 ff 9c 4d aa c9 a4 9a af 7d 33 2c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:56:47.593Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:56:47.594Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:56:47.594Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/036-frida-write-secured-test-int/harness.log b/captures/036-frida-write-secured-test-int/harness.log new file mode 100644 index 0000000..e7612d9 --- /dev/null +++ b/captures/036-frida-write-secured-test-int/harness.log @@ -0,0 +1,17 @@ +2026-04-25T06:56:34.0551683+00:00 harness.start {"Scenario":"write-secured","ClientName":"MxFridaTrace-036-frida-write-secured-test-int","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"112","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:56:41.0884902+00:00 mx.register.begin {"ClientName":"MxFridaTrace-036-frida-write-secured-test-int"} +2026-04-25T06:56:41.4734387+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:56:41.4744189+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T06:56:41.4754130+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:56:41.4780143+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:56:41.4801610+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:56:41.7406838+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"111"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:19:01.369 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:56:42.5261037+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"112"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T06:56:42.5500928+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.TestInt"},"Exception":"System.Runtime.InteropServices.COMException","Message":"The operation attempted is not supported. (Exception from HRESULT: 0x80004021)","HResult":"0x80004021","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.WriteSecured(Int32 hLMXServerHandle, Int32 hItem, Int32 CurrentUserID, Int32 VerifierUserID, Object pItemValue)\r\n at MxTraceHarness.Program.InvokeWrite(LMXProxyServerClass proxy, Int32 sessionHandle, Int32 itemHandle, Object writeValue, Options options) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 237\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 100"} +2026-04-25T06:56:47.5711721+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:56:47.5721691+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:56:47.5721691+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:56:47.5721691+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:56:47.5721691+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:56:51.5163142+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:56:51.5223559+00:00 harness.stop {} diff --git a/captures/037-frida-write-secured2-test-int/frida-command.txt b/captures/037-frida-write-secured2-test-int/frida-command.txt new file mode 100644 index 0000000..520cc6c --- /dev/null +++ b/captures/037-frida-write-secured2-test-int/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured2 --tag=TestChildObject.TestInt --type=int --value=113 --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-time=2026-04-25T03:10:00 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\037-frida-write-secured2-test-int\harness.log --client=MxFridaTrace-037-frida-write-secured2-test-int diff --git a/captures/037-frida-write-secured2-test-int/frida-exit.txt b/captures/037-frida-write-secured2-test-int/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/037-frida-write-secured2-test-int/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/037-frida-write-secured2-test-int/frida.stderr.txt b/captures/037-frida-write-secured2-test-int/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/037-frida-write-secured2-test-int/frida.stdout.jsonl b/captures/037-frida-write-secured2-test-int/frida.stdout.jsonl new file mode 100644 index 0000000..319e168 --- /dev/null +++ b/captures/037-frida-write-secured2-test-int/frida.stdout.jsonl @@ -0,0 +1,57 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestChildObject.TestInt --type=int --value=113 --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-time=2026-04-25T03:10:00 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\037-frida-write-secured2-test-int\harness.log --client=MxFridaTrace-037-frida-write-secured2-test-int`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestChildObject.TestInt --type=int --value=113 --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-time=2026-04-25T03:10:00 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\037-frida-write-secured2-test-int\harness.log --client=MxFridaTrace-037-frida-write-secured2-test-int`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:57:05.950Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:57:05.950Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:57:05.951Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:57:05.951Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:57:05.952Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:57:13.298Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:57:13.299Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:57:13.299Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:57:13.300Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6ff120","args":["0x3158ff0","0x1","0x1","0x9beaabad","0x74794704"],"time":"2026-04-25T06:57:13.451Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:57:13.451Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d1c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8d20648","0x6fede4","0x19233346"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8d20648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d1 08 1f 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d2 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:57:13.579Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d1c738","args":["0x1","0x1","0x1","0x168","0x9ea0020","0xb711d897","0x8d20214","0x8d20204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9ea0020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d1 08 1f 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d2 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:57:13.581Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:57:13.582Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:57:13.582Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d1c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8ded4d8","0x6fede4","0x19233346"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8ded4d8","hex":"1f 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:57:13.583Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d1c738","args":["0x1","0x1","0x2","0x55","0x9ea0020","0xb711d897","0x8df9584","0x8df9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9ea0020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:57:13.584Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:57:13.585Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:57:13.585Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d1c738","args":["0x5c","0x77ea750","0x706e9c8","0x76ffedd8","0x8d1c744","0x5c","0x77ea750","0x206","0x3","0x732cf24"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x77ea750","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 ea 98 b5 2b 07 6b 03 48 be 42 89 47 80 05 ec 3f 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x732cf24","hex":"b0 dd 16"}],"time":"2026-04-25T06:57:13.632Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:57:13.632Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d1c738","args":["0x6c","0x78212c8","0x706e9c8","0x76ffedd8","0x8d1c744","0x6c","0x78212c8","0x206","0x3","0x732cf24"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x78212c8","hex":"01 00 3e 00 00 00 00 00 00 00 ac 84 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 ea 98 b5 2b 07 6b 03 48 be 42 89 47 80 05 ec 3f 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 03 00 00 00 03 00 00 00 c0 00 90 06 82 68 7b d4 dc 01 02 6f 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x732cf24","hex":"b0 dd 16"}],"time":"2026-04-25T06:57:13.634Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:57:13.634Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d1c738","args":["0x2c2","0x77ec960","0x706e9c8","0x76ffedd8","0x8d1c744","0x2c2","0x77ec960","0x206","0x3","0x732cf24"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x77ec960","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 ac e3 ab d5 77 c8 f6 4f 89 b4 a8 6b a4 c4 40 b9 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x732cf24","hex":"b0 dd 16"}],"time":"2026-04-25T06:57:13.639Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:57:13.639Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d1c738","args":["0x97","0x78234d8","0x706e9c8","0x76ffedd8","0x8d1c744","0x97","0x78234d8","0x206","0x3","0x732cf24"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x78234d8","hex":"01 00 69 00 00 00 00 00 00 00 d8 08 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 ac e3 ab d5 77 c8 f6 4f 89 b4 a8 6b a4 c4 40 b9 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x732cf24","hex":"b0 dd 16"}],"time":"2026-04-25T06:57:13.641Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:57:13.641Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d1c738","args":["0x1","0x1","0x2","0x2e","0x9ea0020","0xb711d8c3","0x8d17010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9ea0020","hex":"01 00 00 00 00 00 00 00 00 00 ac 84 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:57:13.712Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:57:13.713Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d1c738","args":["0x1","0x1","0x1","0x2e","0x9ea0020","0xb711d8c3","0x8d17010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9ea0020","hex":"01 00 00 00 00 00 00 00 00 00 d8 08 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:57:13.714Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:57:13.715Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","address":"0x65a535fe","ecx":"0x6ff0ec","args":["0x3158ff0","0x1","0x1","0x1","0x0","0x3","0x0","0x71","0x0","0x7","0x0","0x38e38e39","0x40e68724","0x9beaabad"],"time":"2026-04-25T06:57:14.498Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","retval":"0x80070057","time":"2026-04-25T06:57:14.498Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d1c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x8ded2e0","0x6fefa0","0x19233102"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8ded2e0","hex":"21 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:57:19.556Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d1c738","args":["0x1","0x1","0x1","0x68","0x9ea0020","0xb711da53","0x8d201ac","0x8d2019c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9ea0020","hex":"01 00 3a 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:57:19.557Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:57:19.557Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:57:19.558Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d1c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8ded4d8","0x6fefa0","0x19233102"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8ded4d8","hex":"21 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:57:19.559Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d1c738","args":["0x1","0x1","0x2","0x53","0x9ea0020","0xb711da53","0x8df99dc","0x8df99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9ea0020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 05 38 3c 56 2a b5 61 46 92 4c d6 57 50 e7 1e 1f 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T06:57:19.560Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:57:19.561Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:57:19.561Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/037-frida-write-secured2-test-int/harness.log b/captures/037-frida-write-secured2-test-int/harness.log new file mode 100644 index 0000000..b38de91 --- /dev/null +++ b/captures/037-frida-write-secured2-test-int/harness.log @@ -0,0 +1,17 @@ +2026-04-25T06:57:05.8467585+00:00 harness.start {"Scenario":"write-secured2","ClientName":"MxFridaTrace-037-frida-write-secured2-test-int","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"113","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T03:10:00","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:57:13.0773683+00:00 mx.register.begin {"ClientName":"MxFridaTrace-037-frida-write-secured2-test-int"} +2026-04-25T06:57:13.4468099+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:57:13.4468099+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T06:57:13.4488066+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:57:13.4508083+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:57:13.4518016+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:57:13.7088289+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"111"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:19:01.369 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:57:14.4949532+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"113"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T03:10:00"} +2026-04-25T06:57:14.5190048+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.TestInt"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.WriteSecured2(Int32 hLMXServerHandle, Int32 hItem, Int32 CurrentUserID, Int32 VerifierUserID, Object pItemValue, Object pItemTime)\r\n at MxTraceHarness.Program.InvokeWrite(LMXProxyServerClass proxy, Int32 sessionHandle, Int32 itemHandle, Object writeValue, Options options) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 256\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 100"} +2026-04-25T06:57:19.5377503+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:57:19.5397874+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:57:19.5397874+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:57:19.5397874+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T06:57:19.5397874+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:57:23.4640339+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:57:23.4690466+00:00 harness.stop {} diff --git a/captures/038-frida-write-secured-protectedvalue/frida-command.txt b/captures/038-frida-write-secured-protectedvalue/frida-command.txt new file mode 100644 index 0000000..b9780ec --- /dev/null +++ b/captures/038-frida-write-secured-protectedvalue/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\038-frida-write-secured-protectedvalue\harness.log --client=MxFridaTrace-038-frida-write-secured-protectedvalue diff --git a/captures/038-frida-write-secured-protectedvalue/frida-exit.txt b/captures/038-frida-write-secured-protectedvalue/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/038-frida-write-secured-protectedvalue/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/038-frida-write-secured-protectedvalue/frida.stderr.txt b/captures/038-frida-write-secured-protectedvalue/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/038-frida-write-secured-protectedvalue/frida.stdout.jsonl b/captures/038-frida-write-secured-protectedvalue/frida.stdout.jsonl new file mode 100644 index 0000000..428ad0a --- /dev/null +++ b/captures/038-frida-write-secured-protectedvalue/frida.stdout.jsonl @@ -0,0 +1,59 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\038-frida-write-secured-protectedvalue\harness.log --client=MxFridaTrace-038-frida-write-secured-protectedvalue`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=1 --verifier-user-id=0 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\038-frida-write-secured-protectedvalue\harness.log --client=MxFridaTrace-038-frida-write-secured-protectedvalue`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:58:53.718Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:58:53.718Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:58:53.719Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:58:53.719Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:58:53.720Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:59:01.176Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:59:01.177Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:59:01.177Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:59:01.178Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x4feaf0","args":["0x5518ff0","0x1","0x1","0xf937e9fc","0x74794704"],"time":"2026-04-25T06:59:01.309Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:59:01.309Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8b00648","0x4fe7b4","0x2ca69931"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8b00648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc af 08 1f 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:59:01.438Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x1","0x168","0x9c8a020","0x83c47aad","0x8b00214","0x8b00204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9c8a020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc af 08 1f 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:59:01.441Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:01.442Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:01.442Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x2","0x2","0x0","0x27","0x8bce210","0x4fe7b4","0x2ca69931"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8bce210","hex":"1f 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:01.444Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x55","0x9c8a020","0x83c47aad","0x8bd9584","0x8bd9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9c8a020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:01.446Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:01.447Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:01.447Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x5c","0x75ba190","0x6ddf010","0x76ffedd8","0x8afc744","0x5c","0x75ba190","0x206","0x3","0x709893c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x75ba190","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 6f 5f cd 91 a9 9a e5 47 a4 47 05 6b 3b 93 ef b9 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x709893c","hex":"48 c8 71"}],"time":"2026-04-25T06:59:01.456Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:01.456Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x69","0x75f1360","0x6ddf010","0x76ffedd8","0x8afc744","0x69","0x75f1360","0x206","0x3","0x709893c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x75f1360","hex":"01 00 3b 00 00 00 00 00 00 00 85 85 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 6f 5f cd 91 a9 9a e5 47 a4 47 05 6b 3b 93 ef b9 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 03 00 00 00 03 00 00 00 c0 00 d0 ee e2 57 47 bd dc 01 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x709893c","hex":"48 c8 71"}],"time":"2026-04-25T06:59:01.457Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:01.458Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x2c2","0x75bc3a0","0x6ddf010","0x76ffedd8","0x8afc744","0x2c2","0x75bc3a0","0x206","0x3","0x709893c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x75bc3a0","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 93 85 18 5b d8 4d e1 4f a6 8d 3f 71 6c 07 93 9a 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x709893c","hex":"48 c8 71"}],"time":"2026-04-25T06:59:01.468Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:01.468Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x97","0x75bb298","0x6ddf010","0x76ffedd8","0x8afc744","0x97","0x75bb298","0x206","0x3","0x709893c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x75bb298","hex":"01 00 69 00 00 00 00 00 00 00 89 0a 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 93 85 18 5b d8 4d e1 4f a6 8d 3f 71 6c 07 93 9a 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x709893c","hex":"48 c8 71"}],"time":"2026-04-25T06:59:01.470Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:01.470Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x2e","0x9c8a020","0x83c47a99","0x8af7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9c8a020","hex":"01 00 00 00 00 00 00 00 00 00 85 85 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:59:01.571Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:01.572Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x1","0x2e","0x9c8a020","0x83c47a99","0x8af7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9c8a020","hex":"01 00 00 00 00 00 00 00 00 00 89 0a 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:59:01.574Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:01.575Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","address":"0x65a52f24","ecx":"0x4feac0","args":["0x5518ff0","0x1","0x1","0x1","0x0","0xb","0x0","0xffff","0x0","0xf937e9fc"],"time":"2026-04-25T06:59:02.355Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","retval":"0x80004021","time":"2026-04-25T06:59:02.356Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x8bce600","0x4fe970","0x2ca69775"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8bce600","hex":"21 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:59:07.408Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x1","0x68","0x9c8a020","0x83c47469","0x8b001ac","0x8b0019c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9c8a020","hex":"01 00 3a 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:59:07.410Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:07.410Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:07.410Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x2","0x2","0x0","0x25","0x8bce258","0x4fe970","0x2ca69775"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8bce258","hex":"21 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:07.411Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x53","0x9c8a020","0x83c47469","0x8bd99dc","0x8bd99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9c8a020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 02 f8 93 23 a4 5b c5 42 a1 5c a8 64 79 bb a4 b4 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:07.412Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:07.413Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:07.413Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x2e","0x75ba190","0x6ddf010","0x76ffedd8","0x8afc744","0x2e","0x75ba190","0x206","0x3","0x709893c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x75ba190","hex":"01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x709893c","hex":"48 c8 71"}],"time":"2026-04-25T06:59:07.418Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:07.419Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/038-frida-write-secured-protectedvalue/harness.log b/captures/038-frida-write-secured-protectedvalue/harness.log new file mode 100644 index 0000000..7151260 --- /dev/null +++ b/captures/038-frida-write-secured-protectedvalue/harness.log @@ -0,0 +1,17 @@ +2026-04-25T06:58:53.6301450+00:00 harness.start {"Scenario":"write-secured","ClientName":"MxFridaTrace-038-frida-write-secured-protectedvalue","Tags":["TestMachine_001.ProtectedValue"],"WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:59:00.9358669+00:00 mx.register.begin {"ClientName":"MxFridaTrace-038-frida-write-secured-protectedvalue"} +2026-04-25T06:59:01.3058533+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:59:01.3058533+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue"} +2026-04-25T06:59:01.3089076+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T06:59:01.3089076+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T06:59:01.3108537+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T06:59:01.5692785+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.909 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:59:02.3524352+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T06:59:02.3773919+00:00 mx.item.error {"Payload":{"Tag":"TestMachine_001.ProtectedValue"},"Exception":"System.Runtime.InteropServices.COMException","Message":"The operation attempted is not supported. (Exception from HRESULT: 0x80004021)","HResult":"0x80004021","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.WriteSecured(Int32 hLMXServerHandle, Int32 hItem, Int32 CurrentUserID, Int32 VerifierUserID, Object pItemValue)\r\n at MxTraceHarness.Program.InvokeWrite(LMXProxyServerClass proxy, Int32 sessionHandle, Int32 itemHandle, Object writeValue, Options options) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 237\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 100"} +2026-04-25T06:59:07.3939312+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T06:59:07.3949487+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T06:59:07.3949487+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T06:59:07.3949487+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T06:59:07.3949487+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:59:11.5396662+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:59:11.5476477+00:00 harness.stop {} diff --git a/captures/039-frida-write-secured-verified-protectedvalue1/frida-command.txt b/captures/039-frida-write-secured-verified-protectedvalue1/frida-command.txt new file mode 100644 index 0000000..ed00d08 --- /dev/null +++ b/captures/039-frida-write-secured-verified-protectedvalue1/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=1 --verifier-user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\039-frida-write-secured-verified-protectedvalue1\harness.log --client=MxFridaTrace-039-frida-write-secured-verified-protectedvalue1 diff --git a/captures/039-frida-write-secured-verified-protectedvalue1/frida-exit.txt b/captures/039-frida-write-secured-verified-protectedvalue1/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/039-frida-write-secured-verified-protectedvalue1/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/039-frida-write-secured-verified-protectedvalue1/frida.stderr.txt b/captures/039-frida-write-secured-verified-protectedvalue1/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/039-frida-write-secured-verified-protectedvalue1/frida.stdout.jsonl b/captures/039-frida-write-secured-verified-protectedvalue1/frida.stdout.jsonl new file mode 100644 index 0000000..aa9a333 --- /dev/null +++ b/captures/039-frida-write-secured-verified-protectedvalue1/frida.stdout.jsonl @@ -0,0 +1,59 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=1 --verifier-user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\039-frida-write-secured-verified-protectedvalue1\harness.log --client=MxFridaTrace-039-frida-write-secured-verified-protectedvalue1`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=1 --verifier-user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\039-frida-write-secured-verified-protectedvalue1\harness.log --client=MxFridaTrace-039-frida-write-secured-verified-protectedvalue1`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T06:59:22.162Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T06:59:22.163Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T06:59:22.164Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T06:59:22.164Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T06:59:22.165Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T06:59:29.517Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T06:59:29.518Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T06:59:29.519Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T06:59:29.519Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfeb80","args":["0x6078ff0","0x1","0x1","0xdea8e4c4","0x74794704"],"time":"2026-04-25T06:59:29.633Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T06:59:29.633Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x936c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9370648","0xcfe844","0x272fa374"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9370648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 36 09 1f 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 37 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:59:29.767Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x936c738","args":["0x1","0x1","0x1","0x168","0x9cf8020","0x16e52740","0x9370214","0x9370204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9cf8020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 36 09 1f 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 37 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T06:59:29.771Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:29.772Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:29.772Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x936c738","0x1","0x1","0x2","0x2","0x0","0x27","0x943d910","0xcfe844","0x272fa374"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x943d910","hex":"1f 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:29.773Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x936c738","args":["0x1","0x1","0x2","0x55","0x9cf8020","0x16e52740","0x9449584","0x9449574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9cf8020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:29.774Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:29.774Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:29.775Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x936c738","args":["0x5c","0x7e79f98","0x774eed0","0x76ffedd8","0x936c744","0x5c","0x7e79f98","0x206","0x3","0x7ea3624"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7e79f98","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 ef 08 c9 74 12 c1 59 40 bd 89 c5 a4 c0 85 f1 87 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7ea3624","hex":"a8 a7 99"}],"time":"2026-04-25T06:59:29.791Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:29.791Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x936c738","args":["0x69","0x7e51890","0x774eed0","0x76ffedd8","0x936c744","0x69","0x7e51890","0x206","0x3","0x7ea3624"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x7e51890","hex":"01 00 3b 00 00 00 00 00 00 00 be 85 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 ef 08 c9 74 12 c1 59 40 bd 89 c5 a4 c0 85 f1 87 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 03 00 00 00 03 00 00 00 c0 00 e0 15 e3 57 47 bd dc 01 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7ea3624","hex":"a8 a7 99"}],"time":"2026-04-25T06:59:29.792Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:29.793Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x936c738","args":["0x2c2","0x7e78e90","0x774eed0","0x76ffedd8","0x936c744","0x2c2","0x7e78e90","0x206","0x3","0x7ea3624"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7e78e90","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 29 3f ca b7 d3 b7 5b 4d a9 41 b3 22 66 87 19 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7ea3624","hex":"a8 a7 99"}],"time":"2026-04-25T06:59:29.824Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:29.825Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x936c738","args":["0x97","0x7e88e08","0x774eed0","0x76ffedd8","0x936c744","0x97","0x7e88e08","0x206","0x3","0x7ea3624"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7e88e08","hex":"01 00 69 00 00 00 00 00 00 00 fc 0a 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 29 3f ca b7 d3 b7 5b 4d a9 41 b3 22 66 87 19 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7ea3624","hex":"a8 a7 99"}],"time":"2026-04-25T06:59:29.827Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:29.827Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x936c738","args":["0x1","0x1","0x2","0x2e","0x9cf8020","0x16e52714","0x9367010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9cf8020","hex":"01 00 00 00 00 00 00 00 00 00 be 85 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:59:29.900Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:29.901Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x936c738","args":["0x1","0x1","0x1","0x2e","0x9cf8020","0x16e52714","0x9367010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9cf8020","hex":"01 00 00 00 00 00 00 00 00 00 fc 0a 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T06:59:29.902Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:29.903Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","address":"0x65a52f24","ecx":"0xcfeb50","args":["0x6078ff0","0x1","0x1","0x1","0x1","0xb","0x0","0xffff","0x0","0xdea8e4c4"],"time":"2026-04-25T06:59:30.682Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","retval":"0x80004021","time":"2026-04-25T06:59:30.683Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x936c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x943d9a0","0xcfea00","0x272fad30"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x943d9a0","hex":"21 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:59:35.739Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x936c738","args":["0x1","0x1","0x1","0x68","0x9cf8020","0x16e52884","0x93701ac","0x937019c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9cf8020","hex":"01 00 3a 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T06:59:35.741Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:35.742Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:35.742Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x936c738","0x1","0x1","0x2","0x2","0x0","0x25","0x943de68","0xcfea00","0x272fad30"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x943de68","hex":"21 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:35.743Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x936c738","args":["0x1","0x1","0x2","0x53","0x9cf8020","0x16e52884","0x94499dc","0x94499cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9cf8020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 42 f1 a4 29 54 1f 64 4c 81 e1 36 c9 d9 aa 73 95 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T06:59:35.744Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T06:59:35.745Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T06:59:35.745Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x936c738","args":["0x2e","0xfed598","0x774eed0","0x76ffedd8","0x936c744","0x2e","0xfed598","0x206","0x3","0x7ea3624"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0xfed598","hex":"01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7ea3624","hex":"a8 a7 99"}],"time":"2026-04-25T06:59:35.757Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T06:59:35.757Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/039-frida-write-secured-verified-protectedvalue1/harness.log b/captures/039-frida-write-secured-verified-protectedvalue1/harness.log new file mode 100644 index 0000000..9a20060 --- /dev/null +++ b/captures/039-frida-write-secured-verified-protectedvalue1/harness.log @@ -0,0 +1,17 @@ +2026-04-25T06:59:22.0896828+00:00 harness.start {"Scenario":"write-secured","ClientName":"MxFridaTrace-039-frida-write-secured-verified-protectedvalue1","Tags":["TestMachine_001.ProtectedValue1"],"WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":1,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T06:59:29.2542758+00:00 mx.register.begin {"ClientName":"MxFridaTrace-039-frida-write-secured-verified-protectedvalue1"} +2026-04-25T06:59:29.6285171+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T06:59:29.6295169+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue1"} +2026-04-25T06:59:29.6315653+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T06:59:29.6325620+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T06:59:29.6346452+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T06:59:29.8983669+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.910 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T06:59:30.6796228+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1,"CurrentUserId":1,"VerifierUserId":1,"WriteTimestamp":""} +2026-04-25T06:59:30.7074144+00:00 mx.item.error {"Payload":{"Tag":"TestMachine_001.ProtectedValue1"},"Exception":"System.Runtime.InteropServices.COMException","Message":"The operation attempted is not supported. (Exception from HRESULT: 0x80004021)","HResult":"0x80004021","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.WriteSecured(Int32 hLMXServerHandle, Int32 hItem, Int32 CurrentUserID, Int32 VerifierUserID, Object pItemValue)\r\n at MxTraceHarness.Program.InvokeWrite(LMXProxyServerClass proxy, Int32 sessionHandle, Int32 itemHandle, Object writeValue, Options options) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 237\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 100"} +2026-04-25T06:59:35.7207485+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T06:59:35.7217474+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T06:59:35.7217474+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T06:59:35.7217474+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T06:59:35.7217474+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T06:59:40.0187522+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T06:59:40.0247577+00:00 harness.stop {} diff --git a/captures/040-frida-write-normal-secured-protectedvalue/frida-command.txt b/captures/040-frida-write-normal-secured-protectedvalue/frida-command.txt new file mode 100644 index 0000000..3a78fa4 --- /dev/null +++ b/captures/040-frida-write-normal-secured-protectedvalue/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\040-frida-write-normal-secured-protectedvalue\harness.log --client=MxFridaTrace-040-frida-write-normal-secured-protectedvalue diff --git a/captures/040-frida-write-normal-secured-protectedvalue/frida-exit.txt b/captures/040-frida-write-normal-secured-protectedvalue/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/040-frida-write-normal-secured-protectedvalue/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/040-frida-write-normal-secured-protectedvalue/frida.stderr.txt b/captures/040-frida-write-normal-secured-protectedvalue/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/040-frida-write-normal-secured-protectedvalue/frida.stdout.jsonl b/captures/040-frida-write-normal-secured-protectedvalue/frida.stdout.jsonl new file mode 100644 index 0000000..54910c6 --- /dev/null +++ b/captures/040-frida-write-normal-secured-protectedvalue/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\040-frida-write-normal-secured-protectedvalue\harness.log --client=MxFridaTrace-040-frida-write-normal-secured-protectedvalue`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\040-frida-write-normal-secured-protectedvalue\harness.log --client=MxFridaTrace-040-frida-write-normal-secured-protectedvalue`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T07:00:15.192Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T07:00:15.193Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T07:00:15.194Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T07:00:15.194Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T07:00:15.195Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T07:00:22.334Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T07:00:22.335Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T07:00:22.335Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T07:00:22.336Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x5ceae0","args":["0x5998ff0","0x1","0x1","0xe75b4b84","0x74794704"],"time":"2026-04-25T07:00:22.484Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T07:00:22.484Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8e90648","0x5ce7a4","0xc7a4c199"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8e90648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e8 08 1f 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e9 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:00:22.610Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x1","0x168","0x9811020","0xf314eb4b","0x8e90214","0x8e90204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9811020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e8 08 1f 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e9 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:00:22.613Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:22.613Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:22.613Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8f5df88","0x5ce7a4","0xc7a4c199"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8f5df88","hex":"1f 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:22.614Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x2","0x55","0x9811020","0xf314eb4b","0x8f69584","0x8f69574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9811020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:22.615Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:22.616Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:22.616Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x5c","0x7698ea8","0x715e8d8","0x76ffedd8","0x8e8c744","0x5c","0x7698ea8","0x206","0x3","0x7438f4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7698ea8","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f7 c8 8c 36 28 54 36 42 a6 57 32 17 29 c5 d1 2f 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7438f4c","hex":"78 d0 7c"}],"time":"2026-04-25T07:00:22.629Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:22.629Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x69","0xa17780","0x715e8d8","0x76ffedd8","0x8e8c744","0x69","0xa17780","0x206","0x3","0x7438f4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0xa17780","hex":"01 00 3b 00 00 00 00 00 00 00 29 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f7 c8 8c 36 28 54 36 42 a6 57 32 17 29 c5 d1 2f 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 03 00 00 00 03 00 00 00 c0 00 d0 ee e2 57 47 bd dc 01 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7438f4c","hex":"78 d0 7c"}],"time":"2026-04-25T07:00:22.630Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:22.631Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x2c2","0x7692878","0x715e8d8","0x76ffedd8","0x8e8c744","0x2c2","0x7692878","0x206","0x3","0x7438f4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7692878","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 69 32 02 d8 10 32 2a 49 82 56 bf 85 2f 61 b8 58 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7438f4c","hex":"78 d0 7c"}],"time":"2026-04-25T07:00:22.635Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:22.635Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x97","0x7693980","0x715e8d8","0x76ffedd8","0x8e8c744","0x97","0x7693980","0x206","0x3","0x7438f4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7693980","hex":"01 00 69 00 00 00 00 00 00 00 cf 0b 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 69 32 02 d8 10 32 2a 49 82 56 bf 85 2f 61 b8 58 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7438f4c","hex":"78 d0 7c"}],"time":"2026-04-25T07:00:22.637Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:22.637Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x2","0x2e","0x9811020","0xf314eb9f","0x8e87010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9811020","hex":"01 00 00 00 00 00 00 00 00 00 29 86 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:00:22.739Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:22.740Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x1","0x2e","0x9811020","0xf314eb9f","0x8e87010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9811020","hex":"01 00 00 00 00 00 00 00 00 00 cf 0b 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:00:22.741Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:22.742Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x5ceab4","args":["0x5998ff0","0x1","0x1","0xb","0x0","0xffff","0x0","0x2","0xe75b4b84","0x74794704"],"time":"2026-04-25T07:00:23.523Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T07:00:23.524Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8f5d880","0x5ce7a4","0xc7a4c199"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8f5d880","hex":"37 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 a1 fa d6 08 01 00 00 00"}],"time":"2026-04-25T07:00:23.628Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x2","0x53","0x9811020","0xf314eb4b","0x8e877f4","0x8e877e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9811020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 a1 fa d6 08 01 00 00 00"}],"time":"2026-04-25T07:00:23.629Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:23.630Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:23.630Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x33","0xa4df10","0x715e8d8","0x76ffedd8","0x8e8c744","0x33","0xa4df10","0x206","0x3","0x7438f4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xa4df10","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7438f4c","hex":"78 d0 7c"}],"time":"2026-04-25T07:00:23.680Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:23.680Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x55","0x7698ea8","0x715e8d8","0x76ffedd8","0x8e8c744","0x55","0x7698ea8","0x206","0x3","0x7438f4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x7698ea8","hex":"01 00 27 00 00 00 00 00 00 00 2c 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 f7 c8 8c 36 28 54 36 42 a6 57 32 17 29 c5 d1 2f 03 00 00 00 c0 00 e0 51 14 30 81 d4 dc 01 01 ff"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7438f4c","hex":"78 d0 7c"}],"time":"2026-04-25T07:00:23.681Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:23.682Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x2","0x2e","0x9811020","0xf314eb9f","0x8e87010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9811020","hex":"01 00 00 00 00 00 00 00 00 00 2c 86 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:00:23.736Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:23.737Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x8f5dcb8","0x5ce960","0xc7a4cf5d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8f5dcb8","hex":"21 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:00:28.569Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x1","0x68","0x9811020","0xf314e50f","0x8e877f4","0x8e877e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9811020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:00:28.570Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:28.571Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:28.571Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8f5d8c8","0x5ce960","0xc7a4cf5d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8f5d8c8","hex":"21 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:28.572Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x2","0x53","0x9811020","0xf314e50f","0x8f69584","0x8f69574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9811020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 27 76 82 4c 0c f9 2d 4e 86 9c 39 04 b8 96 c0 f8 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:28.573Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:28.573Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:28.574Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x2e","0xa17780","0x715e8d8","0x76ffedd8","0x8e8c744","0x2e","0xa17780","0x206","0x3","0x7438f4c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0xa17780","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7438f4c","hex":"78 d0 7c"}],"time":"2026-04-25T07:00:28.581Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:28.581Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/040-frida-write-normal-secured-protectedvalue/harness.log b/captures/040-frida-write-normal-secured-protectedvalue/harness.log new file mode 100644 index 0000000..f1f8a4d --- /dev/null +++ b/captures/040-frida-write-normal-secured-protectedvalue/harness.log @@ -0,0 +1,19 @@ +2026-04-25T07:00:15.0908416+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-040-frida-write-normal-secured-protectedvalue","Tags":["TestMachine_001.ProtectedValue"],"WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":2,"CurrentUserId":2,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T07:00:22.1238965+00:00 mx.register.begin {"ClientName":"MxFridaTrace-040-frida-write-normal-secured-protectedvalue"} +2026-04-25T07:00:22.4794469+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T07:00:22.4800450+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue"} +2026-04-25T07:00:22.4826120+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T07:00:22.4836090+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T07:00:22.4846100+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T07:00:22.7378498+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.909 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:00:23.5212293+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":2,"CurrentUserId":2,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T07:00:23.5242198+00:00 mx.write.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0} +2026-04-25T07:00:23.7353252+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"True"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:00:23.678 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:00:23.7413216+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T07:00:28.5531915+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T07:00:28.5541745+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T07:00:28.5541745+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T07:00:28.5551713+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-25T07:00:28.5551713+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T07:00:32.4387577+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T07:00:32.4447687+00:00 harness.stop {} diff --git a/captures/041-frida-write-normal-verified-protectedvalue1/frida-command.txt b/captures/041-frida-write-normal-verified-protectedvalue1/frida-command.txt new file mode 100644 index 0000000..f389dd6 --- /dev/null +++ b/captures/041-frida-write-normal-verified-protectedvalue1/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=3 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\041-frida-write-normal-verified-protectedvalue1\harness.log --client=MxFridaTrace-041-frida-write-normal-verified-protectedvalue1 diff --git a/captures/041-frida-write-normal-verified-protectedvalue1/frida-exit.txt b/captures/041-frida-write-normal-verified-protectedvalue1/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/041-frida-write-normal-verified-protectedvalue1/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/041-frida-write-normal-verified-protectedvalue1/frida.stderr.txt b/captures/041-frida-write-normal-verified-protectedvalue1/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/041-frida-write-normal-verified-protectedvalue1/frida.stdout.jsonl b/captures/041-frida-write-normal-verified-protectedvalue1/frida.stdout.jsonl new file mode 100644 index 0000000..aec29f8 --- /dev/null +++ b/captures/041-frida-write-normal-verified-protectedvalue1/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=3 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\041-frida-write-normal-verified-protectedvalue1\harness.log --client=MxFridaTrace-041-frida-write-normal-verified-protectedvalue1`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=3 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\041-frida-write-normal-verified-protectedvalue1\harness.log --client=MxFridaTrace-041-frida-write-normal-verified-protectedvalue1`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T07:00:42.372Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T07:00:42.373Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T07:00:42.373Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T07:00:42.374Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T07:00:42.374Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T07:00:49.420Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T07:00:49.421Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T07:00:49.422Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T07:00:49.422Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x4feba0","args":["0x5808ff0","0x1","0x1","0x1fd5866d","0x74794704"],"time":"2026-04-25T07:00:49.579Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T07:00:49.580Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8b00648","0x4fe864","0x1b278b77"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8b00648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc af 08 1f 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:00:49.709Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x1","0x168","0x9484020","0x92cc6068","0x8b00214","0x8b00204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9484020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc af 08 1f 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:00:49.712Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:49.713Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:49.714Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x2","0x2","0x0","0x27","0x8bcd298","0x4fe864","0x1b278b77"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8bcd298","hex":"1f 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:49.715Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x55","0x9484020","0x92cc6068","0x8bd9584","0x8bd9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9484020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:49.716Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:49.717Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:49.717Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x5c","0x6fdd30","0x6e8eaa8","0x76ffedd8","0x8afc744","0x5c","0x6fdd30","0x206","0x3","0x70d6744"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x6fdd30","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 bf 71 50 d4 9c d2 d5 42 8d d0 89 b1 13 60 ad 23 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70d6744","hex":"90 84 72"}],"time":"2026-04-25T07:00:49.755Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:49.756Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x69","0x757afc0","0x6e8eaa8","0x76ffedd8","0x8afc744","0x69","0x757afc0","0x206","0x3","0x70d6744"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x757afc0","hex":"01 00 3b 00 00 00 00 00 00 00 61 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 bf 71 50 d4 9c d2 d5 42 8d d0 89 b1 13 60 ad 23 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 03 00 00 00 03 00 00 00 c0 00 e0 15 e3 57 47 bd dc 01 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70d6744","hex":"90 84 72"}],"time":"2026-04-25T07:00:49.759Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:49.759Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x2c2","0x703258","0x6e8eaa8","0x76ffedd8","0x8afc744","0x2c2","0x703258","0x206","0x3","0x70d6744"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x703258","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 bc fd 2b 31 ec 91 df 48 9e d2 1e 58 5a 66 a9 16 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70d6744","hex":"90 84 72"}],"time":"2026-04-25T07:00:49.769Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:49.771Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x97","0x70a8d80","0x6e8eaa8","0x76ffedd8","0x8afc744","0x97","0x70a8d80","0x206","0x3","0x70d6744"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x70a8d80","hex":"01 00 69 00 00 00 00 00 00 00 3e 0c 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 bc fd 2b 31 ec 91 df 48 9e d2 1e 58 5a 66 a9 16 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70d6744","hex":"90 84 72"}],"time":"2026-04-25T07:00:49.774Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:49.774Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x2e","0x9484020","0x92cc603c","0x8af7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9484020","hex":"01 00 00 00 00 00 00 00 00 00 61 86 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:00:49.838Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:49.839Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x1","0x2e","0x9484020","0x92cc603c","0x8af7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9484020","hex":"01 00 00 00 00 00 00 00 00 00 3e 0c 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:00:49.840Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:49.841Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x4feb74","args":["0x5808ff0","0x1","0x1","0xb","0x0","0xffff","0x0","0x3","0x1fd5866d","0x74794704"],"time":"2026-04-25T07:00:50.631Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T07:00:50.631Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x2","0x2","0x0","0x25","0x8bcd208","0x4fe864","0x1b278b77"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8bcd208","hex":"37 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 67 64 d7 08 01 00 00 00"}],"time":"2026-04-25T07:00:50.786Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x53","0x9484020","0x92cc6068","0x8af77f4","0x8af77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9484020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 67 64 d7 08 01 00 00 00"}],"time":"2026-04-25T07:00:50.787Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:50.788Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:50.788Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x33","0x6fdd30","0x6e8eaa8","0x76ffedd8","0x8afc744","0x33","0x6fdd30","0x206","0x3","0x70d6744"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x6fdd30","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70d6744","hex":"90 84 72"}],"time":"2026-04-25T07:00:50.798Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:50.798Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x55","0x70ba98","0x6e8eaa8","0x76ffedd8","0x8afc744","0x55","0x70ba98","0x206","0x3","0x70d6744"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x70ba98","hex":"01 00 27 00 00 00 00 00 00 00 64 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 bf 71 50 d4 9c d2 d5 42 8d d0 89 b1 13 60 ad 23 03 00 00 00 c0 00 c0 32 3e 40 81 d4 dc 01 01 ff"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70d6744","hex":"90 84 72"}],"time":"2026-04-25T07:00:50.799Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:50.799Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x2e","0x9484020","0x92cc603c","0x8af7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9484020","hex":"01 00 00 00 00 00 00 00 00 00 64 86 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:00:50.893Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:50.895Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x1","0x2","0x0","0x3a","0x8bcd130","0x4fea20","0x1b278533"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x8bcd130","hex":"21 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:00:55.668Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x1","0x68","0x9484020","0x92cc6fac","0x8af77f4","0x8af77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9484020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:00:55.669Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:55.670Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:55.670Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8afc738","0x1","0x1","0x2","0x2","0x0","0x25","0x8bcd688","0x4fea20","0x1b278533"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8bcd688","hex":"21 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:55.671Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8afc738","args":["0x1","0x1","0x2","0x53","0x9484020","0x92cc6fac","0x8bd99dc","0x8bd99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9484020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 d1 a3 3f 18 c3 5b a6 4d 8a 55 1e b9 d0 7d 0f 46 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-25T07:00:55.673Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8afc738","args":["0x2e","0x703258","0x6e8eaa8","0x76ffedd8","0x8afc744","0x2e","0x703258","0x206","0x3","0x70d6744"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x703258","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70d6744","hex":"90 84 72"}],"time":"2026-04-25T07:00:55.674Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:00:55.674Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:00:55.675Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:00:55.675Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/041-frida-write-normal-verified-protectedvalue1/harness.log b/captures/041-frida-write-normal-verified-protectedvalue1/harness.log new file mode 100644 index 0000000..6ce319c --- /dev/null +++ b/captures/041-frida-write-normal-verified-protectedvalue1/harness.log @@ -0,0 +1,19 @@ +2026-04-25T07:00:42.2596667+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-041-frida-write-normal-verified-protectedvalue1","Tags":["TestMachine_001.ProtectedValue1"],"WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":3,"CurrentUserId":3,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T07:00:49.1918433+00:00 mx.register.begin {"ClientName":"MxFridaTrace-041-frida-write-normal-verified-protectedvalue1"} +2026-04-25T07:00:49.5742885+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T07:00:49.5752845+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue1"} +2026-04-25T07:00:49.5783477+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T07:00:49.5793452+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T07:00:49.5803462+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T07:00:49.8351009+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"False"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"3/26/2026 1:38:22.910 PM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:00:50.6259765+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":3,"CurrentUserId":3,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T07:00:50.6319970+00:00 mx.write.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1,"WriteIndex":0} +2026-04-25T07:00:50.8938236+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Boolean","Value":"True"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:00:50.796 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:00:50.8998283+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T07:00:55.6511754+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T07:00:55.6521849+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T07:00:55.6531458+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T07:00:55.6531458+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-25T07:00:55.6531458+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T07:00:59.6914436+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T07:00:59.6964793+00:00 harness.stop {} diff --git a/captures/042-frida-write2-test-int-timestamp/frida-command.txt b/captures/042-frida-write2-test-int-timestamp/frida-command.txt new file mode 100644 index 0000000..69295ef --- /dev/null +++ b/captures/042-frida-write2-test-int-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestInt --type=int --value=114 --user-id=1 --write-time=2026-04-25T03:15:00 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\042-frida-write2-test-int-timestamp\harness.log --client=MxFridaTrace-042-frida-write2-test-int-timestamp diff --git a/captures/042-frida-write2-test-int-timestamp/frida-exit.txt b/captures/042-frida-write2-test-int-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/042-frida-write2-test-int-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/042-frida-write2-test-int-timestamp/frida.stderr.txt b/captures/042-frida-write2-test-int-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/042-frida-write2-test-int-timestamp/frida.stdout.jsonl b/captures/042-frida-write2-test-int-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..5e2b1d9 --- /dev/null +++ b/captures/042-frida-write2-test-int-timestamp/frida.stdout.jsonl @@ -0,0 +1,67 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestInt --type=int --value=114 --user-id=1 --write-time=2026-04-25T03:15:00 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\042-frida-write2-test-int-timestamp\harness.log --client=MxFridaTrace-042-frida-write2-test-int-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestInt --type=int --value=114 --user-id=1 --write-time=2026-04-25T03:15:00 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\042-frida-write2-test-int-timestamp\harness.log --client=MxFridaTrace-042-frida-write2-test-int-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T07:01:33.654Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T07:01:33.655Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T07:01:33.655Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T07:01:33.656Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T07:01:33.656Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T07:01:41.103Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T07:01:41.104Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T07:01:41.105Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T07:01:41.106Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x12fee10","args":["0x64b8ff0","0x1","0x1","0xd81b59ee","0x74794704"],"time":"2026-04-25T07:01:41.201Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T07:01:41.201Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x999c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x99a0648","0x12fead4","0xc025659"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x99a0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 99 09 1f 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 9a 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:01:41.324Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x1","0x168","0xa32a020","0x963c47ab","0x99a0214","0x99a0204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa32a020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 99 09 1f 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 9a 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:01:41.328Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:41.328Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:01:41.329Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x999c738","0x1","0x1","0x2","0x2","0x0","0x27","0x9a6cb00","0x12fead4","0xc025659"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x9a6cb00","hex":"1f 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:01:41.330Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x2","0x55","0xa32a020","0x963c47ab","0x9a79584","0x9a79574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa32a020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:01:41.331Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:41.333Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:01:41.333Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x999c738","args":["0x5c","0x8498518","0x7b3ed40","0x76ffedd8","0x999c744","0x5c","0x8498518","0x206","0x3","0x7f4b704"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8498518","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 1c c8 68 ce e5 13 e8 48 89 87 21 91 a8 dc 42 93 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4b704","hex":"f0 47 5c"}],"time":"2026-04-25T07:01:41.346Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:01:41.346Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x999c738","args":["0x6c","0x17c8048","0x7b3ed40","0x76ffedd8","0x999c744","0x6c","0x17c8048","0x206","0x3","0x7f4b704"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x17c8048","hex":"01 00 3e 00 00 00 00 00 00 00 ca 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 1c c8 68 ce e5 13 e8 48 89 87 21 91 a8 dc 42 93 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 03 00 00 00 03 00 00 00 c0 00 90 06 82 68 7b d4 dc 01 02 6f 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4b704","hex":"f0 47 5c"}],"time":"2026-04-25T07:01:41.348Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:01:41.348Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x999c738","args":["0x2c2","0x17bd5f8","0x7b3ed40","0x76ffedd8","0x999c744","0x2c2","0x17bd5f8","0x206","0x3","0x7f4b704"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x17bd5f8","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 35 a0 63 1d 68 b3 37 4a 82 9c d2 f9 d1 b8 6b 12 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4b704","hex":"f0 47 5c"}],"time":"2026-04-25T07:01:41.362Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:01:41.363Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x999c738","args":["0x97","0x8420630","0x7b3ed40","0x76ffedd8","0x999c744","0x97","0x8420630","0x206","0x3","0x7f4b704"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x8420630","hex":"01 00 69 00 00 00 00 00 00 00 0d 0d 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 35 a0 63 1d 68 b3 37 4a 82 9c d2 f9 d1 b8 6b 12 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4b704","hex":"f0 47 5c"}],"time":"2026-04-25T07:01:41.365Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:01:41.365Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x2","0x2e","0xa32a020","0x963c47df","0x9997010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa32a020","hex":"01 00 00 00 00 00 00 00 00 00 ca 86 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:01:41.456Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:41.457Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x1","0x2e","0xa32a020","0x963c47df","0x9997010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa32a020","hex":"01 00 00 00 00 00 00 00 00 00 0d 0d 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:01:41.459Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:41.459Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0x12fede0","args":["0x64b8ff0","0x1","0x1","0x3","0x0","0x72","0x0","0x7","0x0","0x55555555","0x40e68724","0x1","0xd81b59ee"],"time":"2026-04-25T07:01:42.240Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T07:01:42.241Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x999c738","0x1","0x1","0x2","0x2","0x0","0x28","0x9a6cbd8","0x12fead4","0xc025659"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x9a6cbd8","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 72 00 00 00 00 00 00 72 68 3a 83 d4 dc 01 20 2e d8 08 01 00 00 00"}],"time":"2026-04-25T07:01:42.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x2","0x56","0xa32a020","0x963c47ab","0x99977f4","0x99977e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa32a020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 72 00 00 00 00 00 00 72 68 3a 83 d4 dc 01 20 2e d8 08 01 00 00 00"}],"time":"2026-04-25T07:01:42.295Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:42.296Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:01:42.297Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x999c738","args":["0x33","0x8498518","0x7b3ed40","0x76ffedd8","0x999c744","0x33","0x8498518","0x206","0x3","0x7f4b704"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x8498518","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4b704","hex":"f0 47 5c"}],"time":"2026-04-25T07:01:42.317Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:01:42.318Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x999c738","args":["0x58","0x17c9150","0x7b3ed40","0x76ffedd8","0x999c744","0x58","0x17c9150","0x206","0x3","0x7f4b704"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x17c9150","hex":"01 00 2a 00 00 00 00 00 00 00 cd 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 1c c8 68 ce e5 13 e8 48 89 87 21 91 a8 dc 42 93 03 00 00 00 c0 00 00 72 68 3a 83 d4 dc 01 02 72 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4b704","hex":"f0 47 5c"}],"time":"2026-04-25T07:01:42.319Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:01:42.319Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x2","0x2e","0xa32a020","0x963c47df","0x9997010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa32a020","hex":"01 00 00 00 00 00 00 00 00 00 cd 86 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:01:42.401Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:42.402Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x999c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x9a6ca70","0x12fec90","0xc02541d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x9a6ca70","hex":"21 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:01:47.278Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x1","0x68","0xa32a020","0x963c456f","0x99977f4","0x99977e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0xa32a020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:01:47.280Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:47.281Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:01:47.281Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x999c738","0x1","0x1","0x2","0x2","0x0","0x25","0x9a6ccf8","0x12fec90","0xc02541d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x9a6ccf8","hex":"21 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:01:47.282Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x999c738","args":["0x1","0x1","0x2","0x53","0xa32a020","0x963c456f","0x9a79584","0x9a79574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa32a020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:01:47.283Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:01:47.284Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:01:47.284Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/042-frida-write2-test-int-timestamp/harness.log b/captures/042-frida-write2-test-int-timestamp/harness.log new file mode 100644 index 0000000..4ce8af5 --- /dev/null +++ b/captures/042-frida-write2-test-int-timestamp/harness.log @@ -0,0 +1,19 @@ +2026-04-25T07:01:33.5454169+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-042-frida-write2-test-int-timestamp","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"114","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T03:15:00","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T07:01:40.8182954+00:00 mx.register.begin {"ClientName":"MxFridaTrace-042-frida-write2-test-int-timestamp"} +2026-04-25T07:01:41.1976342+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T07:01:41.1976342+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T07:01:41.1996763+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:01:41.2006404+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:01:41.2016371+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:01:41.4532067+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"111"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 2:19:01.369 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:01:42.2367170+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"114"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T03:15:00"} +2026-04-25T07:01:42.2427386+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T07:01:42.4005962+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"114"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:15:00 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:01:42.4066068+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T07:01:47.2621994+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:01:47.2631704+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:01:47.2631704+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:01:47.2631704+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:01:47.2641565+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T07:01:51.6836978+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T07:01:51.6887339+00:00 harness.stop {} diff --git a/captures/043-frida-loopback-write-test-int-115/command.txt b/captures/043-frida-loopback-write-test-int-115/command.txt new file mode 100644 index 0000000..52a0f68 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/command.txt @@ -0,0 +1,4 @@ +dumpcap=C:\Program Files\Wireshark\dumpcap.exe +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=int --value=115 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\043-frida-loopback-write-test-int-115\harness.log --client=MxFridaLoopback-043-frida-loopback-write-test-int-115 diff --git a/captures/043-frida-loopback-write-test-int-115/dcerpc-stream-pdus.tsv b/captures/043-frida-loopback-write-test-int-115/dcerpc-stream-pdus.tsv new file mode 100644 index 0000000..dc7d7a1 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/dcerpc-stream-pdus.tsv @@ -0,0 +1,451 @@ +stream offset ptype ptype_name flags frag_len auth_len call_id alloc_hint context_id opnum stub_offset stub_len scalar_hit_offsets stub_hex_prefix +tcp-stream-__1_49704-to-__1_53874.bin 0 12 bind_ack 0x03 84 0 2 0 +tcp-stream-__1_49704-to-__1_53874.bin 84 2 response 0x03 44 0 2 20 0 108 20 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 +tcp-stream-__1_49704-to-__1_53874.bin 128 15 alter_context_resp 0x03 56 0 3 0 +tcp-stream-__1_49704-to-__1_53874.bin 184 2 response 0x03 28 0 3 4 1 208 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 212 2 response 0x03 92 0 4 68 1 236 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 304 2 response 0x03 32 0 5 8 1 328 8 09 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 336 2 response 0x03 32 0 6 8 1 360 8 0a 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 368 2 response 0x03 32 0 7 8 1 392 8 0b 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 400 2 response 0x03 32 0 8 8 1 424 8 0c 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 432 2 response 0x03 32 0 9 8 1 456 8 0d 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 464 2 response 0x03 32 0 10 8 1 488 8 0e 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 496 2 response 0x03 32 0 11 8 1 520 8 0f 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 528 2 response 0x03 32 0 12 8 1 552 8 10 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 560 2 response 0x03 32 0 13 8 1 584 8 11 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 592 2 response 0x03 32 0 14 8 1 616 8 12 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 624 2 response 0x03 32 0 15 8 1 648 8 13 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 656 2 response 0x03 32 0 16 8 1 680 8 14 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 688 2 response 0x03 32 0 17 8 1 712 8 15 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 720 2 response 0x03 44 0 18 20 0 744 20 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 +tcp-stream-__1_49704-to-__1_53874.bin 764 2 response 0x03 28 0 19 4 1 788 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 792 2 response 0x03 92 0 20 68 1 816 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 884 2 response 0x03 32 0 21 8 1 908 8 60 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 916 2 response 0x03 32 0 22 8 1 940 8 61 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 948 2 response 0x03 32 0 23 8 1 972 8 62 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 980 2 response 0x03 32 0 24 8 1 1004 8 63 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1012 2 response 0x03 32 0 25 8 1 1036 8 64 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1044 2 response 0x03 32 0 26 8 1 1068 8 65 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1076 2 response 0x03 32 0 27 8 1 1100 8 66 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1108 2 response 0x03 32 0 28 8 1 1132 8 67 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1140 2 response 0x03 32 0 29 8 1 1164 8 68 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1172 2 response 0x03 32 0 30 8 1 1196 8 69 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1204 2 response 0x03 32 0 31 8 1 1228 8 6a 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1236 2 response 0x03 44 0 32 20 0 1260 20 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c +tcp-stream-__1_49704-to-__1_53874.bin 1280 2 response 0x03 28 0 33 4 1 1304 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1308 2 response 0x03 92 0 34 68 1 1332 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1400 2 response 0x03 32 0 35 8 1 1424 8 63 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1432 2 response 0x03 32 0 36 8 1 1456 8 64 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1464 2 response 0x03 32 0 37 8 1 1488 8 65 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1496 2 response 0x03 32 0 38 8 1 1520 8 66 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1528 2 response 0x03 32 0 39 8 1 1552 8 67 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1560 2 response 0x03 32 0 40 8 1 1584 8 68 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1592 2 response 0x03 32 0 41 8 1 1616 8 69 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1624 2 response 0x03 32 0 42 8 1 1648 8 6a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1656 2 response 0x03 32 0 43 8 1 1680 8 6b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1688 2 response 0x03 32 0 44 8 1 1712 8 6c 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1720 2 response 0x03 32 0 45 8 1 1744 8 6d 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1752 2 response 0x03 32 0 46 8 1 1776 8 6e 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1784 2 response 0x03 32 0 47 8 1 1808 8 6f 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1816 2 response 0x03 44 0 48 20 0 1840 20 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 +tcp-stream-__1_49704-to-__1_53874.bin 1860 2 response 0x03 28 0 49 4 1 1884 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1888 2 response 0x03 92 0 50 68 1 1912 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 1980 2 response 0x03 32 0 51 8 1 2004 8 70 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2012 2 response 0x03 32 0 52 8 1 2036 8 71 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2044 2 response 0x03 32 0 53 8 1 2068 8 72 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2076 2 response 0x03 32 0 54 8 1 2100 8 73 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2108 2 response 0x03 32 0 55 8 1 2132 8 74 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2140 2 response 0x03 32 0 56 8 1 2164 8 75 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2172 2 response 0x03 32 0 57 8 1 2196 8 76 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2204 2 response 0x03 32 0 58 8 1 2228 8 77 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2236 2 response 0x03 32 0 59 8 1 2260 8 78 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2268 2 response 0x03 32 0 60 8 1 2292 8 79 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2300 2 response 0x03 32 0 61 8 1 2324 8 7a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2332 2 response 0x03 32 0 62 8 1 2356 8 7b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2364 2 response 0x03 32 0 63 8 1 2388 8 7c 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2396 2 response 0x03 44 0 64 20 0 2420 20 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da +tcp-stream-__1_49704-to-__1_53874.bin 2440 2 response 0x03 28 0 65 4 1 2464 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2468 2 response 0x03 92 0 66 68 1 2492 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2560 2 response 0x03 32 0 67 8 1 2584 8 7d 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2592 2 response 0x03 32 0 68 8 1 2616 8 7e 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2624 2 response 0x03 32 0 69 8 1 2648 8 7f 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2656 2 response 0x03 32 0 70 8 1 2680 8 80 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2688 2 response 0x03 32 0 71 8 1 2712 8 81 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2720 2 response 0x03 32 0 72 8 1 2744 8 82 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2752 2 response 0x03 32 0 73 8 1 2776 8 83 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2784 2 response 0x03 32 0 74 8 1 2808 8 84 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2816 2 response 0x03 32 0 75 8 1 2840 8 85 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2848 2 response 0x03 32 0 76 8 1 2872 8 86 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2880 2 response 0x03 32 0 77 8 1 2904 8 87 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2912 2 response 0x03 32 0 78 8 1 2936 8 88 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2944 2 response 0x03 32 0 79 8 1 2968 8 89 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 2976 2 response 0x03 32 0 80 8 1 3000 8 8a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3008 2 response 0x03 32 0 81 8 1 3032 8 8b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3040 2 response 0x03 44 0 82 20 0 3064 20 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 +tcp-stream-__1_49704-to-__1_53874.bin 3084 2 response 0x03 28 0 83 4 1 3108 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3112 2 response 0x03 92 0 84 68 1 3136 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3204 2 response 0x03 32 0 85 8 1 3228 8 30 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3236 2 response 0x03 32 0 86 8 1 3260 8 31 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3268 2 response 0x03 32 0 87 8 1 3292 8 32 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3300 2 response 0x03 32 0 88 8 1 3324 8 33 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3332 2 response 0x03 32 0 89 8 1 3356 8 34 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3364 2 response 0x03 32 0 90 8 1 3388 8 35 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3396 2 response 0x03 32 0 91 8 1 3420 8 36 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3428 2 response 0x03 32 0 92 8 1 3452 8 37 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3460 2 response 0x03 32 0 93 8 1 3484 8 38 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3492 2 response 0x03 32 0 94 8 1 3516 8 39 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3524 2 response 0x03 32 0 95 8 1 3548 8 3a 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3556 2 response 0x03 32 0 96 8 1 3580 8 3b 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3588 2 response 0x03 32 0 97 8 1 3612 8 3c 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3620 2 response 0x03 32 0 98 8 1 3644 8 3d 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3652 2 response 0x03 32 0 99 8 1 3676 8 95 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3684 2 response 0x03 44 0 100 20 0 3708 20 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd +tcp-stream-__1_49704-to-__1_53874.bin 3728 2 response 0x03 28 0 101 4 1 3752 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3756 2 response 0x03 92 0 102 68 1 3780 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3848 2 response 0x03 32 0 103 8 1 3872 8 e5 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3880 2 response 0x03 32 0 104 8 1 3904 8 e6 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3912 2 response 0x03 32 0 105 8 1 3936 8 e7 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3944 2 response 0x03 32 0 106 8 1 3968 8 e8 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 3976 2 response 0x03 32 0 107 8 1 4000 8 e9 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4008 2 response 0x03 32 0 108 8 1 4032 8 ea 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4040 2 response 0x03 32 0 109 8 1 4064 8 eb 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4072 2 response 0x03 32 0 110 8 1 4096 8 ec 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4104 2 response 0x03 32 0 111 8 1 4128 8 ed 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4136 2 response 0x03 32 0 112 8 1 4160 8 ee 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4168 2 response 0x03 32 0 113 8 1 4192 8 ef 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4200 2 response 0x03 32 0 114 8 1 4224 8 f0 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4232 2 response 0x03 32 0 115 8 1 4256 8 f1 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4264 2 response 0x03 32 0 116 8 1 4288 8 f2 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4296 2 response 0x03 32 0 117 8 1 4320 8 f3 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4328 2 response 0x03 32 0 118 8 1 4352 8 f4 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4360 2 response 0x03 32 0 119 8 1 4384 8 f5 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4392 2 response 0x03 32 0 120 8 1 4416 8 f6 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4424 2 response 0x03 32 0 121 8 1 4448 8 f7 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4456 2 response 0x03 32 0 122 8 1 4480 8 f8 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4488 2 response 0x03 32 0 123 8 1 4512 8 f9 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4520 2 response 0x03 32 0 124 8 1 4544 8 fa 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4552 2 response 0x03 32 0 125 8 1 4576 8 fb 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4584 2 response 0x03 32 0 126 8 1 4608 8 fc 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4616 2 response 0x03 32 0 127 8 1 4640 8 fd 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4648 2 response 0x03 32 0 128 8 1 4672 8 fe 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4680 2 response 0x03 32 0 129 8 1 4704 8 ff 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4712 2 response 0x03 32 0 130 8 1 4736 8 00 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4744 2 response 0x03 32 0 131 8 1 4768 8 01 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4776 2 response 0x03 32 0 132 8 1 4800 8 02 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4808 2 response 0x03 28 0 133 4 1 4832 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4836 2 response 0x03 44 0 134 20 0 4860 20 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 +tcp-stream-__1_49704-to-__1_53874.bin 4880 2 response 0x03 28 0 135 4 1 4904 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 4908 2 response 0x03 92 0 136 68 1 4932 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5000 2 response 0x03 32 0 137 8 1 5024 8 dd 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5032 2 response 0x03 32 0 138 8 1 5056 8 de 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5064 2 response 0x03 32 0 139 8 1 5088 8 df 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5096 2 response 0x03 32 0 140 8 1 5120 8 e0 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5128 2 response 0x03 32 0 141 8 1 5152 8 e1 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5160 2 response 0x03 32 0 142 8 1 5184 8 e2 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5192 2 response 0x03 32 0 143 8 1 5216 8 e3 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5224 2 response 0x03 32 0 144 8 1 5248 8 e4 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5256 2 response 0x03 32 0 145 8 1 5280 8 e5 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5288 2 response 0x03 32 0 146 8 1 5312 8 e6 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5320 2 response 0x03 32 0 147 8 1 5344 8 e7 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5352 2 response 0x03 32 0 148 8 1 5376 8 e8 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5384 2 response 0x03 32 0 149 8 1 5408 8 e9 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5416 2 response 0x03 32 0 150 8 1 5440 8 ea 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5448 2 response 0x03 32 0 151 8 1 5472 8 eb 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5480 2 response 0x03 32 0 152 8 1 5504 8 ec 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5512 2 response 0x03 32 0 153 8 1 5536 8 ed 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5544 2 response 0x03 32 0 154 8 1 5568 8 ee 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5576 2 response 0x03 32 0 155 8 1 5600 8 ef 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5608 2 response 0x03 32 0 156 8 1 5632 8 f0 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5640 2 response 0x03 32 0 157 8 1 5664 8 f1 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5672 2 response 0x03 32 0 158 8 1 5696 8 f2 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5704 2 response 0x03 32 0 159 8 1 5728 8 f3 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5736 2 response 0x03 44 0 160 20 0 5760 20 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 +tcp-stream-__1_49704-to-__1_53874.bin 5780 2 response 0x03 28 0 161 4 1 5804 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5808 2 response 0x03 92 0 162 68 1 5832 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5900 2 response 0x03 32 0 163 8 1 5924 8 11 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5932 2 response 0x03 32 0 164 8 1 5956 8 12 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5964 2 response 0x03 32 0 165 8 1 5988 8 13 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 5996 2 response 0x03 32 0 166 8 1 6020 8 14 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6028 2 response 0x03 32 0 167 8 1 6052 8 15 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6060 2 response 0x03 32 0 168 8 1 6084 8 16 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6092 2 response 0x03 32 0 169 8 1 6116 8 17 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6124 2 response 0x03 32 0 170 8 1 6148 8 18 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6156 2 response 0x03 32 0 171 8 1 6180 8 19 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6188 2 response 0x03 32 0 172 8 1 6212 8 1a 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6220 2 response 0x03 32 0 173 8 1 6244 8 1b 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6252 2 response 0x03 32 0 174 8 1 6276 8 1c 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6284 2 response 0x03 32 0 175 8 1 6308 8 1d 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6316 2 response 0x03 44 0 176 20 0 6340 20 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 +tcp-stream-__1_49704-to-__1_53874.bin 6360 2 response 0x03 28 0 177 4 1 6384 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6388 2 response 0x03 92 0 178 68 1 6412 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6480 2 response 0x03 32 0 179 8 1 6504 8 f4 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6512 2 response 0x03 32 0 180 8 1 6536 8 f5 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6544 2 response 0x03 32 0 181 8 1 6568 8 f6 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6576 2 response 0x03 32 0 182 8 1 6600 8 f7 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6608 2 response 0x03 32 0 183 8 1 6632 8 f8 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6640 2 response 0x03 32 0 184 8 1 6664 8 f9 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6672 2 response 0x03 32 0 185 8 1 6696 8 fa 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6704 2 response 0x03 32 0 186 8 1 6728 8 fb 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6736 2 response 0x03 32 0 187 8 1 6760 8 fc 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6768 2 response 0x03 32 0 188 8 1 6792 8 fd 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6800 2 response 0x03 32 0 189 8 1 6824 8 fe 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6832 2 response 0x03 32 0 190 8 1 6856 8 ff 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6864 2 response 0x03 32 0 191 8 1 6888 8 00 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6896 2 response 0x03 32 0 192 8 1 6920 8 01 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6928 2 response 0x03 32 0 193 8 1 6952 8 02 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6960 2 response 0x03 32 0 194 8 1 6984 8 03 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 6992 2 response 0x03 32 0 195 8 1 7016 8 04 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7024 2 response 0x03 32 0 196 8 1 7048 8 05 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7056 2 response 0x03 32 0 197 8 1 7080 8 06 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7088 2 response 0x03 28 0 198 4 1 7112 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7116 2 response 0x03 28 0 199 4 1 7140 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7144 2 response 0x03 28 0 200 4 1 7168 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7172 2 response 0x03 44 0 201 20 0 7196 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7216 2 response 0x03 44 0 202 20 0 7240 20 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 +tcp-stream-__1_49704-to-__1_53874.bin 7260 2 response 0x03 28 0 203 4 1 7284 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7288 2 response 0x03 92 0 204 68 1 7312 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7380 2 response 0x03 32 0 205 8 1 7404 8 60 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7412 2 response 0x03 32 0 206 8 1 7436 8 61 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7444 2 response 0x03 32 0 207 8 1 7468 8 62 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7476 2 response 0x03 32 0 208 8 1 7500 8 63 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7508 2 response 0x03 32 0 209 8 1 7532 8 64 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7540 2 response 0x03 32 0 210 8 1 7564 8 65 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7572 2 response 0x03 32 0 211 8 1 7596 8 66 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7604 2 response 0x03 32 0 212 8 1 7628 8 67 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7636 2 response 0x03 32 0 213 8 1 7660 8 68 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7668 2 response 0x03 32 0 214 8 1 7692 8 69 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7700 2 response 0x03 32 0 215 8 1 7724 8 6a 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7732 2 response 0x03 28 0 216 4 1 7756 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7760 2 response 0x03 44 0 217 20 0 7784 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7804 2 response 0x03 28 0 218 4 1 7828 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7832 2 response 0x03 44 0 219 20 0 7856 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7876 2 response 0x03 28 0 220 4 1 7900 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7904 2 response 0x03 44 0 221 20 0 7928 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7948 2 response 0x03 28 0 222 4 1 7972 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 7976 2 response 0x03 44 0 223 20 0 8000 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_53874.bin 8020 2 response 0x03 28 0 224 4 1 8044 4 01 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 0 11 bind 0x03 116 0 2 0 +tcp-stream-__1_53874-to-__1_49704.bin 116 0 request 0x83 40 0 2 0 0 0 140 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 156 14 alter_context 0x03 72 0 3 0 +tcp-stream-__1_53874-to-__1_49704.bin 228 0 request 0x83 96 0 3 56 1 0 252 72 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 78 00 79 00 +tcp-stream-__1_53874-to-__1_49704.bin 324 0 request 0x83 60 0 4 20 1 2 348 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 +tcp-stream-__1_53874-to-__1_49704.bin 384 0 request 0x83 120 0 5 80 1 3 408 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 504 0 request 0x83 124 0 6 84 1 3 528 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 628 0 request 0x83 118 0 7 78 1 3 652 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 746 0 request 0x83 120 0 8 80 1 3 770 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 866 0 request 0x83 130 0 9 90 1 3 890 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 996 0 request 0x83 130 0 10 90 1 3 1020 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 1126 0 request 0x83 142 0 11 102 1 3 1150 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 1268 0 request 0x83 116 0 12 76 1 3 1292 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 1384 0 request 0x83 130 0 13 90 1 3 1408 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 1514 0 request 0x83 128 0 14 88 1 3 1538 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 1642 0 request 0x83 126 0 15 86 1 3 1666 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 1768 0 request 0x83 132 0 16 92 1 3 1792 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 1900 0 request 0x83 152 0 17 112 1 3 1924 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 d0 1c 5a d9 52 3d cf 4a b0 27 be cb 4c b7 3f 44 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 2052 0 request 0x83 40 0 18 0 0 0 2076 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 2092 0 request 0x83 108 0 19 68 1 0 2116 84 74 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 65 00 48 00 +tcp-stream-__1_53874-to-__1_49704.bin 2200 0 request 0x83 60 0 20 20 1 2 2224 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 +tcp-stream-__1_53874-to-__1_49704.bin 2260 0 request 0x83 132 0 21 92 1 3 2284 108 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 2392 0 request 0x83 136 0 22 96 1 3 2416 112 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 2528 0 request 0x83 130 0 23 90 1 3 2552 106 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 2658 0 request 0x83 132 0 24 92 1 3 2682 108 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 2790 0 request 0x83 142 0 25 102 1 3 2814 118 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 2932 0 request 0x83 142 0 26 102 1 3 2956 118 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 3074 0 request 0x83 154 0 27 114 1 3 3098 130 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 3228 0 request 0x83 128 0 28 88 1 3 3252 104 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 3356 0 request 0x83 142 0 29 102 1 3 3380 118 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 3498 0 request 0x83 140 0 30 100 1 3 3522 116 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 3638 0 request 0x83 138 0 31 98 1 3 3662 114 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 3776 0 request 0x83 40 0 32 0 0 0 3800 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 3816 0 request 0x83 104 0 33 64 1 0 3840 80 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 4c 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 3920 0 request 0x83 60 0 34 20 1 2 3944 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c +tcp-stream-__1_53874-to-__1_49704.bin 3980 0 request 0x83 128 0 35 88 1 3 4004 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 4108 0 request 0x83 132 0 36 92 1 3 4132 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 4240 0 request 0x83 126 0 37 86 1 3 4264 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 4366 0 request 0x83 128 0 38 88 1 3 4390 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 4494 0 request 0x83 138 0 39 98 1 3 4518 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 4632 0 request 0x83 138 0 40 98 1 3 4656 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 4770 0 request 0x83 150 0 41 110 1 3 4794 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 4920 0 request 0x83 124 0 42 84 1 3 4944 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 5044 0 request 0x83 138 0 43 98 1 3 5068 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 5182 0 request 0x83 136 0 44 96 1 3 5206 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 5318 0 request 0x83 134 0 45 94 1 3 5342 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 5452 0 request 0x83 140 0 46 100 1 3 5476 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 5592 0 request 0x83 146 0 47 106 1 3 5616 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e8 b7 db 7f 62 c0 e5 47 81 7c 6a f3 75 15 9e 9c 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 5738 0 request 0x83 40 0 48 0 0 0 5762 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 5778 0 request 0x83 112 0 49 72 1 0 5802 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 43 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 5890 0 request 0x83 60 0 50 20 1 2 5914 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 +tcp-stream-__1_53874-to-__1_49704.bin 5950 0 request 0x83 136 0 51 96 1 3 5974 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 6086 0 request 0x83 140 0 52 100 1 3 6110 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 6226 0 request 0x83 134 0 53 94 1 3 6250 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 6360 0 request 0x83 136 0 54 96 1 3 6384 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 6496 0 request 0x83 146 0 55 106 1 3 6520 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 6642 0 request 0x83 146 0 56 106 1 3 6666 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 6788 0 request 0x83 158 0 57 118 1 3 6812 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 6946 0 request 0x83 132 0 58 92 1 3 6970 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 7078 0 request 0x83 146 0 59 106 1 3 7102 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 7224 0 request 0x83 144 0 60 104 1 3 7248 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 7368 0 request 0x83 142 0 61 102 1 3 7392 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 7510 0 request 0x83 148 0 62 108 1 3 7534 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 7658 0 request 0x83 154 0 63 114 1 3 7682 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 32 31 96 e9 cd d4 de 46 80 a9 a2 11 81 13 39 e5 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 7812 0 request 0x83 40 0 64 0 0 0 7836 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 7852 0 request 0x83 92 0 65 52 1 0 7876 68 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 00 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 7944 0 request 0x83 60 0 66 20 1 2 7968 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da +tcp-stream-__1_53874-to-__1_49704.bin 8004 0 request 0x83 116 0 67 76 1 3 8028 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8120 0 request 0x83 120 0 68 80 1 3 8144 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8240 0 request 0x83 114 0 69 74 1 3 8264 90 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8354 0 request 0x83 116 0 70 76 1 3 8378 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8470 0 request 0x83 126 0 71 86 1 3 8494 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8596 0 request 0x83 126 0 72 86 1 3 8620 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8722 0 request 0x83 138 0 73 98 1 3 8746 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8860 0 request 0x83 112 0 74 72 1 3 8884 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 8972 0 request 0x83 126 0 75 86 1 3 8996 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 9098 0 request 0x83 124 0 76 84 1 3 9122 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 9222 0 request 0x83 122 0 77 82 1 3 9246 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 9344 0 request 0x83 128 0 78 88 1 3 9368 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 9472 0 request 0x83 134 0 79 94 1 3 9496 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 9606 0 request 0x83 130 0 80 90 1 3 9630 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 9736 0 request 0x83 128 0 81 88 1 3 9760 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 6d 4b 44 ec 0a 3c 32 43 be 86 29 73 de d9 4a da 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_53874-to-__1_49704.bin 9864 0 request 0x83 40 0 82 0 0 0 9888 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 9904 0 request 0x83 100 0 83 60 1 0 9928 76 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 72 00 69 00 +tcp-stream-__1_53874-to-__1_49704.bin 10004 0 request 0x83 60 0 84 20 1 2 10028 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 +tcp-stream-__1_53874-to-__1_49704.bin 10064 0 request 0x83 124 0 85 84 1 3 10088 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 10188 0 request 0x83 128 0 86 88 1 3 10212 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 10316 0 request 0x83 122 0 87 82 1 3 10340 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 10438 0 request 0x83 124 0 88 84 1 3 10462 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 10562 0 request 0x83 134 0 89 94 1 3 10586 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 10696 0 request 0x83 134 0 90 94 1 3 10720 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 10830 0 request 0x83 146 0 91 106 1 3 10854 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 10976 0 request 0x83 120 0 92 80 1 3 11000 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 11096 0 request 0x83 134 0 93 94 1 3 11120 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 11230 0 request 0x83 132 0 94 92 1 3 11254 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 11362 0 request 0x83 130 0 95 90 1 3 11386 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 11492 0 request 0x83 144 0 96 104 1 3 11516 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 11636 0 request 0x83 148 0 97 108 1 3 11660 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 11784 0 request 0x83 146 0 98 106 1 3 11808 122 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 11930 0 request 0x83 158 0 99 118 1 3 11954 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_53874-to-__1_49704.bin 12088 0 request 0x83 40 0 100 0 0 0 12112 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 12128 0 request 0x83 84 0 101 44 1 0 12152 60 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 98 e7 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 12212 0 request 0x83 60 0 102 20 1 2 12236 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd +tcp-stream-__1_53874-to-__1_49704.bin 12272 0 request 0x83 108 0 103 68 1 3 12296 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 06 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 12380 0 request 0x83 112 0 104 72 1 3 12404 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 08 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 12492 0 request 0x83 106 0 105 66 1 3 12516 82 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 05 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 12598 0 request 0x83 108 0 106 68 1 3 12622 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 06 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 12706 0 request 0x83 118 0 107 78 1 3 12730 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 12824 0 request 0x83 118 0 108 78 1 3 12848 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 12942 0 request 0x83 130 0 109 90 1 3 12966 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13072 0 request 0x83 104 0 110 64 1 3 13096 80 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 04 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13176 0 request 0x83 118 0 111 78 1 3 13200 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13294 0 request 0x83 116 0 112 76 1 3 13318 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0a 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13410 0 request 0x83 114 0 113 74 1 3 13434 90 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 09 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13524 0 request 0x83 128 0 114 88 1 3 13548 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 10 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13652 0 request 0x83 120 0 115 80 1 3 13676 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0c 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13772 0 request 0x83 120 0 116 80 1 3 13796 96 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0c 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 13892 0 request 0x83 122 0 117 82 1 3 13916 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14014 0 request 0x83 134 0 118 94 1 3 14038 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 13 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14148 0 request 0x83 132 0 119 92 1 3 14172 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 12 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14280 0 request 0x83 130 0 120 90 1 3 14304 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14410 0 request 0x83 138 0 121 98 1 3 14434 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 15 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14548 0 request 0x83 144 0 122 104 1 3 14572 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 18 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14692 0 request 0x83 144 0 123 104 1 3 14716 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 18 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14836 0 request 0x83 116 0 124 76 1 3 14860 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0a 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 14952 0 request 0x83 130 0 125 90 1 3 14976 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15082 0 request 0x83 138 0 126 98 1 3 15106 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 15 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15220 0 request 0x83 130 0 127 90 1 3 15244 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15350 0 request 0x83 122 0 128 82 1 3 15374 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15472 0 request 0x83 122 0 129 82 1 3 15496 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15594 0 request 0x83 134 0 130 94 1 3 15618 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 13 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15728 0 request 0x83 128 0 131 88 1 3 15752 104 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 10 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15856 0 request 0x83 124 0 132 84 1 3 15880 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0e 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 15980 0 request 0x83 516 0 133 476 1 5 16004 492 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 16496 0 request 0x83 40 0 134 0 0 0 16520 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 16536 0 request 0x83 112 0 135 72 1 0 16560 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 74 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 16648 0 request 0x83 60 0 136 20 1 2 16672 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 +tcp-stream-__1_53874-to-__1_49704.bin 16708 0 request 0x83 136 0 137 96 1 3 16732 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 16844 0 request 0x83 140 0 138 100 1 3 16868 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 16984 0 request 0x83 134 0 139 94 1 3 17008 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 17118 0 request 0x83 136 0 140 96 1 3 17142 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 17254 0 request 0x83 146 0 141 106 1 3 17278 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 17400 0 request 0x83 146 0 142 106 1 3 17424 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 17546 0 request 0x83 158 0 143 118 1 3 17570 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 17704 0 request 0x83 132 0 144 92 1 3 17728 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 17836 0 request 0x83 146 0 145 106 1 3 17860 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 17982 0 request 0x83 144 0 146 104 1 3 18006 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 18126 0 request 0x83 142 0 147 102 1 3 18150 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 18268 0 request 0x83 160 0 148 120 1 3 18292 136 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 18428 0 request 0x83 156 0 149 116 1 3 18452 132 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 18584 0 request 0x83 154 0 150 114 1 3 18608 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 18738 0 request 0x83 146 0 151 106 1 3 18762 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 18884 0 request 0x83 154 0 152 114 1 3 18908 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 19038 0 request 0x83 150 0 153 110 1 3 19062 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 19188 0 request 0x83 152 0 154 112 1 3 19212 128 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 19340 0 request 0x83 140 0 155 100 1 3 19364 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 19480 0 request 0x83 148 0 156 108 1 3 19504 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 19628 0 request 0x83 162 0 157 122 1 3 19652 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 19790 0 request 0x83 172 0 158 132 1 3 19814 148 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 19962 0 request 0x83 144 0 159 104 1 3 19986 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_53874-to-__1_49704.bin 20106 0 request 0x83 40 0 160 0 0 0 20130 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 20146 0 request 0x83 128 0 161 88 1 0 20170 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 +tcp-stream-__1_53874-to-__1_49704.bin 20274 0 request 0x83 60 0 162 20 1 2 20298 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 +tcp-stream-__1_53874-to-__1_49704.bin 20334 0 request 0x83 152 0 163 112 1 3 20358 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 20486 0 request 0x83 156 0 164 116 1 3 20510 132 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 20642 0 request 0x83 150 0 165 110 1 3 20666 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 20792 0 request 0x83 152 0 166 112 1 3 20816 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 20944 0 request 0x83 162 0 167 122 1 3 20968 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 21106 0 request 0x83 162 0 168 122 1 3 21130 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 21268 0 request 0x83 174 0 169 134 1 3 21292 150 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 21442 0 request 0x83 148 0 170 108 1 3 21466 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 21590 0 request 0x83 162 0 171 122 1 3 21614 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 21752 0 request 0x83 160 0 172 120 1 3 21776 136 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 21912 0 request 0x83 158 0 173 118 1 3 21936 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 22070 0 request 0x83 170 0 174 130 1 3 22094 146 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 22240 0 request 0x83 182 0 175 142 1 3 22264 158 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_53874-to-__1_49704.bin 22422 0 request 0x83 40 0 176 0 0 0 22446 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 22462 0 request 0x83 96 0 177 56 1 0 22486 72 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 74 00 72 00 +tcp-stream-__1_53874-to-__1_49704.bin 22558 0 request 0x83 60 0 178 20 1 2 22582 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 +tcp-stream-__1_53874-to-__1_49704.bin 22618 0 request 0x83 120 0 179 80 1 3 22642 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 22738 0 request 0x83 124 0 180 84 1 3 22762 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 22862 0 request 0x83 118 0 181 78 1 3 22886 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 22980 0 request 0x83 120 0 182 80 1 3 23004 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 23100 0 request 0x83 130 0 183 90 1 3 23124 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 23230 0 request 0x83 130 0 184 90 1 3 23254 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 23360 0 request 0x83 142 0 185 102 1 3 23384 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 23502 0 request 0x83 116 0 186 76 1 3 23526 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 23618 0 request 0x83 130 0 187 90 1 3 23642 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 23748 0 request 0x83 128 0 188 88 1 3 23772 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 23876 0 request 0x83 126 0 189 86 1 3 23900 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24002 0 request 0x83 126 0 190 86 1 3 24026 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24128 0 request 0x83 132 0 191 92 1 3 24152 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24260 0 request 0x83 130 0 192 90 1 3 24284 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24390 0 request 0x83 138 0 193 98 1 3 24414 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24528 0 request 0x83 136 0 194 96 1 3 24552 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24664 0 request 0x83 132 0 195 92 1 3 24688 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24796 0 request 0x83 142 0 196 102 1 3 24820 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 24938 0 request 0x83 148 0 197 108 1 3 24962 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_53874-to-__1_49704.bin 25086 0 request 0x83 290 0 198 250 1 5 25110 266 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 25376 0 request 0x83 206 0 199 166 1 5 25400 182 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_53874-to-__1_49704.bin 25582 0 request 0x83 60 0 200 20 1 6 25606 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 +tcp-stream-__1_53874-to-__1_49704.bin 25642 0 request 0x83 60 0 201 20 0 1 25666 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c1 60 50 71 35 c2 0b 46 ac 19 fb 47 aa ce 54 f2 +tcp-stream-__1_53874-to-__1_49704.bin 25702 0 request 0x83 40 0 202 0 0 0 25726 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_53874-to-__1_49704.bin 25742 0 request 0x83 108 0 203 68 1 0 25766 84 74 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 65 00 48 00 +tcp-stream-__1_53874-to-__1_49704.bin 25850 0 request 0x83 60 0 204 20 1 2 25874 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 +tcp-stream-__1_53874-to-__1_49704.bin 25910 0 request 0x83 132 0 205 92 1 3 25934 108 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 26042 0 request 0x83 136 0 206 96 1 3 26066 112 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 26178 0 request 0x83 130 0 207 90 1 3 26202 106 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 26308 0 request 0x83 132 0 208 92 1 3 26332 108 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 26440 0 request 0x83 142 0 209 102 1 3 26464 118 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 26582 0 request 0x83 142 0 210 102 1 3 26606 118 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 26724 0 request 0x83 154 0 211 114 1 3 26748 130 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 26878 0 request 0x83 128 0 212 88 1 3 26902 104 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 27006 0 request 0x83 142 0 213 102 1 3 27030 118 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 27148 0 request 0x83 140 0 214 100 1 3 27172 116 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 27288 0 request 0x83 138 0 215 98 1 3 27312 114 78 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 46 15 f1 64 3c a1 e3 4f 89 d0 f5 e0 f7 1d 2f 73 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_53874-to-__1_49704.bin 27426 0 request 0x83 60 0 216 20 1 6 27450 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 +tcp-stream-__1_53874-to-__1_49704.bin 27486 0 request 0x83 60 0 217 20 0 1 27510 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 85 47 89 c8 c7 d8 8c 4a 8c 9d 9f b8 fc 7b 09 26 +tcp-stream-__1_53874-to-__1_49704.bin 27546 0 request 0x83 60 0 218 20 1 6 27570 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 +tcp-stream-__1_53874-to-__1_49704.bin 27606 0 request 0x83 60 0 219 20 0 1 27630 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 be fa 65 32 1a 3e 28 4a a3 d3 03 62 e3 99 f9 30 +tcp-stream-__1_53874-to-__1_49704.bin 27666 0 request 0x83 60 0 220 20 1 6 27690 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 +tcp-stream-__1_53874-to-__1_49704.bin 27726 0 request 0x83 60 0 221 20 0 1 27750 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 24 ee 6a f7 d9 ab 61 4b 86 1d 9b fc 70 2b 88 c7 +tcp-stream-__1_53874-to-__1_49704.bin 27786 0 request 0x83 60 0 222 20 1 6 27810 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd +tcp-stream-__1_53874-to-__1_49704.bin 27846 0 request 0x83 60 0 223 20 0 1 27870 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f4 c4 be 46 55 e3 90 45 9c 9d dd 6e 3c 30 0a cd +tcp-stream-__1_53874-to-__1_49704.bin 27906 0 request 0x83 60 0 224 20 1 6 27930 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 48 85 32 2d bd aa 96 49 b4 18 e3 d2 0f 94 f9 f7 diff --git a/captures/043-frida-loopback-write-test-int-115/dumpcap.stderr.txt b/captures/043-frida-loopback-write-test-int-115/dumpcap.stderr.txt new file mode 100644 index 0000000..fa53958 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\043-frida-loopback-write-test-int-115\loopback.pcapng diff --git a/captures/043-frida-loopback-write-test-int-115/dumpcap.stdout.txt b/captures/043-frida-loopback-write-test-int-115/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/043-frida-loopback-write-test-int-115/frida-exit.txt b/captures/043-frida-loopback-write-test-int-115/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/043-frida-loopback-write-test-int-115/frida-to-tcp-map.tsv b/captures/043-frida-loopback-write-test-int-115/frida-to-tcp-map.tsv new file mode 100644 index 0000000..35dc04b --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/frida-to-tcp-map.tsv @@ -0,0 +1,9 @@ +needle needle_len stream offset +int32:115 4 tcp-stream-__1_49704-to-__1_53874.bin 4244 +int32:115 4 tcp-stream-__1_53874-to-__1_49704.bin 2190 +int32:115 4 tcp-stream-fe80__3608_256c_365_cc73_53882-to-fe80__3608_256c_365_cc73_55555.bin 477 +int32:115 4 tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53882.bin 929 +int32:115 4 tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53904.bin 929 +putrequest-body 40 -1 +transferdata-body 86 -1 +callback-body 88 -1 diff --git a/captures/043-frida-loopback-write-test-int-115/frida.stderr.txt b/captures/043-frida-loopback-write-test-int-115/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/043-frida-loopback-write-test-int-115/frida.stdout.jsonl b/captures/043-frida-loopback-write-test-int-115/frida.stdout.jsonl new file mode 100644 index 0000000..bd7ef3b --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/frida.stdout.jsonl @@ -0,0 +1,67 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=115 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\043-frida-loopback-write-test-int-115\harness.log --client=MxFridaLoopback-043-frida-loopback-write-test-int-115`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=115 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\043-frida-loopback-write-test-int-115\harness.log --client=MxFridaLoopback-043-frida-loopback-write-test-int-115`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T07:04:35.539Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T07:04:35.540Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T07:04:35.541Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T07:04:35.541Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T07:04:35.542Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T07:04:43.389Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T07:04:43.390Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T07:04:43.390Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T07:04:43.391Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x8feec0","args":["0x5b08ff0","0x1","0x1","0xbaab3056","0x74794704"],"time":"2026-04-25T07:04:43.482Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T07:04:43.483Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fac738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8fb0648","0x8feb84","0x3e1cd1e0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8fb0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc fa 08 1f 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fb 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:04:43.619Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x1","0x168","0x9a7d020","0xdab2b083","0x8fb0214","0x8fb0204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9a7d020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc fa 08 1f 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fb 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:04:43.622Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:43.623Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:04:43.623Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fac738","0x1","0x1","0x2","0x2","0x0","0x27","0x907e1c8","0x8feb84","0x3e1cd1e0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x907e1c8","hex":"1f 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:04:43.624Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x2","0x55","0x9a7d020","0xdab2b083","0x9089584","0x9089574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9a7d020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:04:43.626Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:43.627Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:04:43.628Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fac738","args":["0x5c","0x7ace998","0x710e8e8","0x76ffedd8","0x8fac744","0x5c","0x7ace998","0x206","0x3","0x758cd54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7ace998","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 71 a5 c5 5e f2 e4 fa 41 b7 e6 ff 02 7c c4 7c ca 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x758cd54","hex":"50 97 58"}],"time":"2026-04-25T07:04:43.647Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:04:43.648Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fac738","args":["0x6c","0x7a7c8b0","0x710e8e8","0x76ffedd8","0x8fac744","0x6c","0x7a7c8b0","0x206","0x3","0x758cd54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7a7c8b0","hex":"01 00 3e 00 00 00 00 00 00 00 3a 88 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 71 a5 c5 5e f2 e4 fa 41 b7 e6 ff 02 7c c4 7c ca 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 03 00 00 00 03 00 00 00 c0 00 00 72 68 3a 83 d4 dc 01 02 72 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x758cd54","hex":"50 97 58"}],"time":"2026-04-25T07:04:43.649Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:04:43.649Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fac738","args":["0x2c2","0x7acb680","0x710e8e8","0x76ffedd8","0x8fac744","0x2c2","0x7acb680","0x206","0x3","0x758cd54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7acb680","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 7f 75 48 e8 f4 6e 77 4e ad b5 cd d3 6e 55 3b 91 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x758cd54","hex":"50 97 58"}],"time":"2026-04-25T07:04:43.656Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:04:43.656Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fac738","args":["0x97","0x7a74070","0x710e8e8","0x76ffedd8","0x8fac744","0x97","0x7a74070","0x206","0x3","0x758cd54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7a74070","hex":"01 00 69 00 00 00 00 00 00 00 e6 0f 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 7f 75 48 e8 f4 6e 77 4e ad b5 cd d3 6e 55 3b 91 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x758cd54","hex":"50 97 58"}],"time":"2026-04-25T07:04:43.661Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:04:43.662Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x2","0x2e","0x9a7d020","0xdab2b057","0x8fa7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a7d020","hex":"01 00 00 00 00 00 00 00 00 00 3a 88 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:04:43.755Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:43.756Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x1","0x2e","0x9a7d020","0xdab2b057","0x8fa7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a7d020","hex":"01 00 00 00 00 00 00 00 00 00 e6 0f 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:04:43.757Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:43.758Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x8fee94","args":["0x5b08ff0","0x1","0x1","0x3","0x0","0x73","0x0","0x1","0xbaab3056","0x74794704"],"time":"2026-04-25T07:04:44.538Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T07:04:44.538Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fac738","0x1","0x1","0x2","0x2","0x0","0x28","0x907e570","0x8feb84","0x3e1cd1e0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x907e570","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 73 00 00 00 ff ff 00 00 00 00 00 00 00 00 0a f6 da 08 01 00 00 00"}],"time":"2026-04-25T07:04:44.591Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x2","0x56","0x9a7d020","0xdab2b083","0x90899dc","0x90899cc","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x9a7d020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 73 00 00 00 ff ff 00 00 00 00 00 00 00 00 0a f6 da 08 01 00 00 00"}],"time":"2026-04-25T07:04:44.592Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:44.593Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:04:44.594Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fac738","args":["0x33","0x7ace998","0x710e8e8","0x76ffedd8","0x8fac744","0x33","0x7ace998","0x206","0x3","0x758cd54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7ace998","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x758cd54","hex":"50 97 58"}],"time":"2026-04-25T07:04:44.648Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:04:44.648Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fac738","args":["0x58","0x7a1ec38","0x710e8e8","0x76ffedd8","0x8fac744","0x58","0x7a1ec38","0x206","0x3","0x758cd54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7a1ec38","hex":"01 00 2a 00 00 00 00 00 00 00 3d 88 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 71 a5 c5 5e f2 e4 fa 41 b7 e6 ff 02 7c c4 7c ca 03 00 00 00 c0 00 60 e0 a0 cb 81 d4 dc 01 02 73 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x758cd54","hex":"50 97 58"}],"time":"2026-04-25T07:04:44.649Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:04:44.649Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x2","0x2e","0x9a7d020","0xdab2b057","0x8fa7010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9a7d020","hex":"01 00 00 00 00 00 00 00 00 00 3d 88 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:04:44.698Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:44.699Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fac738","0x1","0x1","0x1","0x2","0x0","0x3a","0x907e378","0x8fed40","0x3e1cd724"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x907e378","hex":"21 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:04:49.573Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x1","0x68","0x9a7d020","0xdab2b6c7","0x90899dc","0x90899cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9a7d020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:04:49.575Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:49.575Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:04:49.576Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fac738","0x1","0x1","0x2","0x2","0x0","0x25","0x907e918","0x8fed40","0x3e1cd724"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x907e918","hex":"21 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:04:49.577Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fac738","args":["0x1","0x1","0x2","0x53","0x9a7d020","0xdab2b6c7","0x9089584","0x9089574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9a7d020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 94 13 0d 82 cc ad fb 4f b3 7e 9b 20 f6 96 da b2 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:04:49.578Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:04:49.579Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:04:49.579Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/043-frida-loopback-write-test-int-115/harness.log b/captures/043-frida-loopback-write-test-int-115/harness.log new file mode 100644 index 0000000..92e11e9 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/harness.log @@ -0,0 +1,19 @@ +2026-04-25T07:04:35.4322559+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaLoopback-043-frida-loopback-write-test-int-115","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"115","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T07:04:43.0645843+00:00 mx.register.begin {"ClientName":"MxFridaLoopback-043-frida-loopback-write-test-int-115"} +2026-04-25T07:04:43.4748096+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T07:04:43.4748096+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T07:04:43.4788463+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:04:43.4808849+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:04:43.4838416+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:04:43.7527512+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"114"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:15:00 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:04:44.5366086+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"115"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T07:04:44.5396107+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T07:04:44.6982685+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"115"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:04:44.646 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:04:44.7042782+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T07:04:49.5581437+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:04:49.5591299+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:04:49.5591299+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:04:49.5591299+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:04:49.5601275+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T07:04:53.8187172+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T07:04:53.8237122+00:00 harness.stop {} diff --git a/captures/043-frida-loopback-write-test-int-115/loopback.pcapng b/captures/043-frida-loopback-write-test-int-115/loopback.pcapng new file mode 100644 index 0000000..56d0e4e Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/loopback.pcapng differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-conversations.tsv b/captures/043-frida-loopback-write-test-int-115/tcp-conversations.tsv new file mode 100644 index 0000000..dded9b6 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-conversations.tsv @@ -0,0 +1,64 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2422 46364 0.055297375 23.194090843 +::1:49704 ::1:53874 450 36014 4.846987009 23.228228092 +fe80::3608:256c:365:cc73:53901 fe80::3608:256c:365:cc73:55555 2 14170 19.157724142 19.273068905 +fe80::3608:256c:365:cc73:53880 fe80::3608:256c:365:cc73:55555 2 13997 7.209701061 7.333288908 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 16 6540 13.390556097 13.463185072 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53900 19 6443 17.664438009 17.681134701 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 32 3878 2.404726505 17.556515932 +::1:135 ::1:53873 22 2860 4.844409227 23.201266050 +fe80::3608:256c:365:cc73:53882 fe80::3608:256c:365:cc73:55555 3 2703 8.959253073 12.047381401 +::1:32571 ::1:53879 4 2220 7.152660847 7.159474373 +fe80::3608:256c:365:cc73:53904 fe80::3608:256c:365:cc73:55555 3 1941 20.485512257 22.994386196 +::1:80 ::1:53864 6 1821 1.763400316 1.769314766 +::1:80 ::1:53866 6 1793 2.374889612 2.382465839 +::1:80 ::1:53869 6 1793 2.885800362 2.893191576 +::1:80 ::1:53885 6 1793 12.379623175 12.390088081 +::1:80 ::1:53895 6 1793 12.886385679 12.894291401 +::1:80 ::1:53910 6 1793 22.381304741 22.392921686 +::1:80 ::1:53913 6 1793 22.888763428 22.900340796 +::1:80 ::1:53906 6 1792 21.182769775 21.193192005 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 8.709217310 8.709619284 +::1:80 ::1:53876 6 1788 6.860517979 6.867359400 +::1:80 ::1:53878 6 1788 7.008138418 7.016087532 +::1:80 ::1:53908 6 1788 21.218530178 21.225518703 +::1:80 ::1:53903 6 1787 19.389250994 19.398164511 +::1:80 ::1:53899 6 1784 15.323353291 15.334586859 +127.0.0.1:57470 127.0.0.1:57477 104 1328 0.248169661 22.918532610 +127.0.0.1:57608 127.0.0.1:57631 104 1328 0.270854473 22.918528795 +fe80::3608:256c:365:cc73:53881 fe80::3608:256c:365:cc73:55555 2 1202 7.342639685 7.349848986 +::1:808 ::1:55800 2 1150 2.753538609 2.754019260 +127.0.0.1:57484 127.0.0.1:57746 94 1128 0.000000000 23.086174488 +127.0.0.1:57485 127.0.0.1:57747 93 1116 0.040569305 23.086174488 +127.0.0.1:57684 127.0.0.1:57745 93 1116 0.123316765 23.157255173 +10.100.0.48:1433 10.100.0.48:49792 8 1028 7.453226328 17.615811586 +10.100.0.48:1433 10.100.0.48:49805 12 1002 9.203709126 19.219798565 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53897 6 913 13.434919119 13.465249777 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53896 6 900 13.384597063 13.431680202 +fe80::3608:256c:365:cc73:80 fe80::3608:256c:365:cc73:53887 2 663 12.584527493 12.584961891 +fe80::3608:256c:365:cc73:80 fe80::3608:256c:365:cc73:53888 2 663 12.586266518 12.587042809 +::1:808 ::1:55769 1 488 19.062811375 19.062811375 +::1:80 ::1:53863 2 332 1.757470369 1.760518551 +::1:80 ::1:53865 2 332 2.367848158 2.371295691 +::1:80 ::1:53868 2 332 2.878748655 2.882394314 +::1:80 ::1:53875 2 332 6.854726315 6.857884645 +::1:80 ::1:53877 2 332 7.001536131 7.005135536 +::1:80 ::1:53883 2 332 12.369807482 12.375021696 +::1:80 ::1:53894 2 332 12.879336119 12.883466721 +::1:80 ::1:53898 2 332 15.315166712 15.319326162 +::1:80 ::1:53902 2 332 19.380412102 19.384605646 +::1:80 ::1:53905 2 332 21.173796892 21.178762913 +::1:80 ::1:53907 2 332 21.211738825 21.215319157 +::1:80 ::1:53909 2 332 22.371498585 22.376833200 +::1:80 ::1:53912 2 332 22.880984783 22.885172129 +::1:49704 ::1:49829 2 270 18.954496861 18.954855204 +::1:49704 ::1:51439 2 220 2.589257479 2.590651751 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53867 1 52 2.445928574 2.445928574 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53886 1 52 12.447526693 12.447526693 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53911 1 52 22.448753834 22.448753834 +127.0.0.1:49248 127.0.0.1:63342 4 24 4.584928513 19.587371588 +127.0.0.1:49787 127.0.0.1:49788 21 21 0.529506207 22.993966818 +10.100.0.48:1433 10.100.0.48:49936 2 2 8.175229311 9.204283953 +10.100.0.48:1433 10.100.0.48:49933 2 2 8.617191792 10.498017788 +10.100.0.48:1433 10.100.0.48:49935 2 2 8.680837154 9.542847395 +10.100.0.48:1433 10.100.0.48:49934 2 2 8.706292152 9.351711750 diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-payload-packets.tsv b/captures/043-frida-loopback-write-test-int-115/tcp-payload-packets.tsv new file mode 100644 index 0000000..294979e --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-payload-packets.tsv @@ -0,0 +1,2982 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +8 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3339714986 12 1a0000002e890c0000000000 ............ +10 0.000166416 127.0.0.1:57415 127.0.0.1:57433 3339714998 26 16000000548f6340e25e3140010003000000f7a5210000000000 ....T.c@.^1@........!..... +12 0.000548601 127.0.0.1:57433 127.0.0.1:57415 382168780 12 ffffffff2e890c0000000000 ............ +14 0.000995636 127.0.0.1:57433 127.0.0.1:57415 382168792 12 1600000049470c0000000000 ....IG...... +16 0.001195908 127.0.0.1:57433 127.0.0.1:57415 382168804 22 12000000f7a521000000000001000300000000000000 ......!............... +18 0.001706123 127.0.0.1:57415 127.0.0.1:57433 3339715024 12 ffffffff49470c0000000000 ....IG...... +23 0.103496313 127.0.0.1:57415 127.0.0.1:57433 3339715036 12 1a0000002f890c0000000000 ..../....... +25 0.103663683 127.0.0.1:57415 127.0.0.1:57433 3339715048 26 16000000548f6340e25e3140010003000000f9a5210000000000 ....T.c@.^1@........!..... +27 0.104025602 127.0.0.1:57433 127.0.0.1:57415 382168826 12 ffffffff2f890c0000000000 ..../....... +29 0.104679823 127.0.0.1:57433 127.0.0.1:57415 382168838 12 160000004a470c0000000000 ....JG...... +31 0.104857922 127.0.0.1:57433 127.0.0.1:57415 382168850 22 12000000f9a521000000000001000300000000000000 ......!............... +33 0.105154276 127.0.0.1:57415 127.0.0.1:57433 3339715074 12 ffffffff4a470c0000000000 ....JG...... +38 0.193822145 127.0.0.1:57415 127.0.0.1:57433 3339715086 12 6500000030890c0000000000 e...0....... +40 0.193989754 127.0.0.1:57415 127.0.0.1:57433 3339715098 101 1e0000001c2118d0c46f33bb0100030000004a55020000000000a64774c39d01 .....!...o3.......JU.......Gt.....?.....3...|8.. +42 0.194293261 127.0.0.1:57433 127.0.0.1:57415 382168872 12 ffffffff30890c0000000000 ....0....... +44 0.195822239 127.0.0.1:57433 127.0.0.1:57415 382168884 12 340000004b470c0000000000 4...KG...... +46 0.196076632 127.0.0.1:57433 127.0.0.1:57415 382168896 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....JU........cl.. +48 0.196354151 127.0.0.1:57415 127.0.0.1:57433 3339715199 12 ffffffff4b470c0000000000 ....KG...... +50 0.197180271 127.0.0.1:57415 127.0.0.1:57433 3339715211 12 1e00000031890c0000000000 ....1....... +52 0.197317362 127.0.0.1:57415 127.0.0.1:57433 3339715223 30 1a00000055ceff62b21b3a50010003000000fba521000000000000000000 ....U..b..:P........!......... +54 0.197651386 127.0.0.1:57433 127.0.0.1:57415 382168948 12 ffffffff31890c0000000000 ....1....... +56 0.198280811 127.0.0.1:57433 127.0.0.1:57415 382168960 12 1a0000004c470c0000000000 ....LG...... +58 0.198415756 127.0.0.1:57433 127.0.0.1:57415 382168972 26 16000000fba52100000000000100030000000000000000000000 ......!................... +60 0.198644400 127.0.0.1:57415 127.0.0.1:57433 3339715253 12 ffffffff4c470c0000000000 ....LG...... +62 0.199502230 127.0.0.1:57433 127.0.0.1:57415 382168998 12 feffffff256c0100396c0100 ....%l..9l.. +64 0.206432581 127.0.0.1:57415 127.0.0.1:57433 3339715265 12 1a00000032890c0000000000 ....2....... +66 0.206573963 127.0.0.1:57415 127.0.0.1:57433 3339715277 26 16000000548f6340e25e3140010003000000fda5210000000000 ....T.c@.^1@........!..... +68 0.207063913 127.0.0.1:57433 127.0.0.1:57415 382169010 12 ffffffff32890c0000000000 ....2....... +70 0.207548141 127.0.0.1:57433 127.0.0.1:57415 382169022 12 160000004d470c0000000000 ....MG...... +72 0.207748652 127.0.0.1:57433 127.0.0.1:57415 382169034 22 12000000fda521000000000001000300000000000000 ......!............... +74 0.208028555 127.0.0.1:57415 127.0.0.1:57433 3339715303 12 ffffffff4d470c0000000000 ....MG...... +81 0.309301615 127.0.0.1:57415 127.0.0.1:57433 3339715315 12 1a00000033890c0000000000 ....3....... +83 0.309475660 127.0.0.1:57415 127.0.0.1:57433 3339715327 26 16000000548f6340e25e3140010003000000ffa5210000000000 ....T.c@.^1@........!..... +85 0.309844017 127.0.0.1:57433 127.0.0.1:57415 382169056 12 ffffffff33890c0000000000 ....3....... +87 0.310950041 127.0.0.1:57433 127.0.0.1:57415 382169068 12 160000004e470c0000000000 ....NG...... +89 0.311239004 127.0.0.1:57433 127.0.0.1:57415 382169080 22 12000000ffa521000000000001000300000000000000 ......!............... +91 0.311548948 127.0.0.1:57415 127.0.0.1:57433 3339715353 12 ffffffff4e470c0000000000 ....NG...... +97 0.380199671 127.0.0.1:57415 127.0.0.1:57433 3339715365 12 feffffff3a6c0100256c0100 ....:l..%l.. +102 0.413430691 127.0.0.1:57415 127.0.0.1:57433 3339715377 12 1a00000034890c0000000000 ....4....... +104 0.413578033 127.0.0.1:57415 127.0.0.1:57433 3339715389 26 16000000548f6340e25e314001000300000001a6210000000000 ....T.c@.^1@........!..... +106 0.414069414 127.0.0.1:57433 127.0.0.1:57415 382169102 12 ffffffff34890c0000000000 ....4....... +108 0.416327953 127.0.0.1:57433 127.0.0.1:57415 382169114 12 160000004f470c0000000000 ....OG...... +110 0.416528702 127.0.0.1:57433 127.0.0.1:57415 382169126 22 1200000001a621000000000001000300000000000000 ......!............... +112 0.416747093 127.0.0.1:57415 127.0.0.1:57433 3339715415 12 ffffffff4f470c0000000000 ....OG...... +123 0.499793768 127.0.0.1:57415 127.0.0.1:57433 3339715427 12 2200000035890c0000000000 "...5....... +125 0.500018835 127.0.0.1:57415 127.0.0.1:57433 3339715439 34 1e0000001c2118d0c46f33bb0100030000004b55020000000000d84874c39d01 .....!...o3.......KU.......Ht..... +127 0.500108004 127.0.0.1:57415 127.0.0.1:57433 3339715473 12 4300000036890c0000000000 C...6....... +129 0.500186682 127.0.0.1:57415 127.0.0.1:57433 3339715485 67 3f000000980433cb0cb47c3801000300000001000000004b550200000000003d ?.....3...|8...........KU......=B.....&......... +131 0.500754118 127.0.0.1:57433 127.0.0.1:57415 382169148 12 ffffffff35890c0000000000 ....5....... +133 0.501049995 127.0.0.1:57433 127.0.0.1:57415 382169160 12 ffffffff36890c0000000000 ....6....... +135 0.502342463 127.0.0.1:57433 127.0.0.1:57415 382169172 12 3400000050470c0000000000 4...PG...... +137 0.502701044 127.0.0.1:57433 127.0.0.1:57415 382169184 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....KU.........(.. +139 0.503051758 127.0.0.1:57415 127.0.0.1:57433 3339715552 12 ffffffff50470c0000000000 ....PG...... +141 0.503771067 127.0.0.1:57415 127.0.0.1:57433 3339715564 12 1e00000037890c0000000000 ....7....... +143 0.503956556 127.0.0.1:57415 127.0.0.1:57433 3339715576 30 1a00000055ceff62b21b3a5001000300000003a621000000000000000000 ....U..b..:P........!......... +145 0.505184650 127.0.0.1:57433 127.0.0.1:57415 382169236 12 ffffffff37890c0000000000 ....7....... +147 0.505685568 127.0.0.1:57433 127.0.0.1:57415 382169248 12 1a00000051470c0000000000 ....QG...... +149 0.505907059 127.0.0.1:57433 127.0.0.1:57415 382169260 26 1600000003a62100000000000100030000000000000000000000 ......!................... +151 0.506200075 127.0.0.1:57415 127.0.0.1:57433 3339715606 12 ffffffff51470c0000000000 ....QG...... +153 0.518211126 127.0.0.1:57415 127.0.0.1:57433 3339715618 12 1a00000038890c0000000000 ....8....... +155 0.518370390 127.0.0.1:57415 127.0.0.1:57433 3339715630 26 16000000548f6340e25e314001000300000005a6210000000000 ....T.c@.^1@........!..... +157 0.518917561 127.0.0.1:57433 127.0.0.1:57415 382169286 12 ffffffff38890c0000000000 ....8....... +159 0.519876957 127.0.0.1:57433 127.0.0.1:57415 382169298 12 1600000052470c0000000000 ....RG...... +161 0.520102739 127.0.0.1:57433 127.0.0.1:57415 382169310 22 1200000005a621000000000001000300000000000000 ......!............... +163 0.520372391 127.0.0.1:57415 127.0.0.1:57433 3339715656 12 ffffffff52470c0000000000 ....RG...... +168 0.623063087 127.0.0.1:57415 127.0.0.1:57433 3339715668 12 1a00000039890c0000000000 ....9....... +170 0.623240948 127.0.0.1:57415 127.0.0.1:57433 3339715680 26 16000000548f6340e25e314001000300000007a6210000000000 ....T.c@.^1@........!..... +172 0.623739243 127.0.0.1:57433 127.0.0.1:57415 382169332 12 ffffffff39890c0000000000 ....9....... +174 0.624313831 127.0.0.1:57433 127.0.0.1:57415 382169344 12 1600000053470c0000000000 ....SG...... +176 0.624529839 127.0.0.1:57433 127.0.0.1:57415 382169356 22 1200000007a621000000000001000300000000000000 ......!............... +178 0.624797344 127.0.0.1:57415 127.0.0.1:57433 3339715706 12 ffffffff53470c0000000000 ....SG...... +182 0.700763702 127.0.0.1:57433 127.0.0.1:57415 382169378 12 feffffff266c01003a6c0100 ....&l..:l.. +189 0.726366997 127.0.0.1:57415 127.0.0.1:57433 3339715718 12 1a0000003a890c0000000000 ....:....... +191 0.726543665 127.0.0.1:57415 127.0.0.1:57433 3339715730 26 16000000548f6340e25e314001000300000009a6210000000000 ....T.c@.^1@........!..... +193 0.727111816 127.0.0.1:57433 127.0.0.1:57415 382169390 12 ffffffff3a890c0000000000 ....:....... +195 0.727483988 127.0.0.1:57433 127.0.0.1:57415 382169402 12 1600000054470c0000000000 ....TG...... +197 0.727706194 127.0.0.1:57433 127.0.0.1:57415 382169414 22 1200000009a621000000000001000300000000000000 ......!............... +199 0.728121042 127.0.0.1:57415 127.0.0.1:57433 3339715756 12 ffffffff54470c0000000000 ....TG...... +201 0.806114674 127.0.0.1:57415 127.0.0.1:57433 3339715768 12 650000003b890c0000000000 e...;....... +203 0.806280613 127.0.0.1:57415 127.0.0.1:57433 3339715780 101 1e0000001c2118d0c46f33bb0100030000004c550200000000000a4a74c39d01 .....!...o3.......LU.......Jt.....?.....3...|8.. +205 0.806750298 127.0.0.1:57433 127.0.0.1:57415 382169436 12 ffffffff3b890c0000000000 ....;....... +207 0.808361053 127.0.0.1:57433 127.0.0.1:57415 382169448 12 3400000055470c0000000000 4...UG...... +209 0.808593512 127.0.0.1:57433 127.0.0.1:57415 382169460 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....LU............ +211 0.808875561 127.0.0.1:57415 127.0.0.1:57433 3339715881 12 ffffffff55470c0000000000 ....UG...... +213 0.809993029 127.0.0.1:57415 127.0.0.1:57433 3339715893 12 1e0000003c890c0000000000 ....<....... +215 0.810198307 127.0.0.1:57415 127.0.0.1:57433 3339715905 30 1a00000055ceff62b21b3a500100030000000ba621000000000000000000 ....U..b..:P........!......... +217 0.810564995 127.0.0.1:57433 127.0.0.1:57415 382169512 12 ffffffff3c890c0000000000 ....<....... +219 0.810996294 127.0.0.1:57433 127.0.0.1:57415 382169524 12 1a00000056470c0000000000 ....VG...... +221 0.811228514 127.0.0.1:57433 127.0.0.1:57415 382169536 26 160000000ba62100000000000100030000000000000000000000 ......!................... +223 0.811479330 127.0.0.1:57415 127.0.0.1:57433 3339715935 12 ffffffff56470c0000000000 ....VG...... +230 0.829712629 127.0.0.1:57415 127.0.0.1:57433 3339715947 12 1a0000003d890c0000000000 ....=....... +232 0.829904318 127.0.0.1:57415 127.0.0.1:57433 3339715959 26 16000000548f6340e25e31400100030000000da6210000000000 ....T.c@.^1@........!..... +234 0.830273390 127.0.0.1:57433 127.0.0.1:57415 382169562 12 ffffffff3d890c0000000000 ....=....... +236 0.832549810 127.0.0.1:57433 127.0.0.1:57415 382169574 12 1600000057470c0000000000 ....WG...... +238 0.832792282 127.0.0.1:57433 127.0.0.1:57415 382169586 22 120000000da621000000000001000300000000000000 ......!............... +240 0.833104610 127.0.0.1:57415 127.0.0.1:57433 3339715985 12 ffffffff57470c0000000000 ....WG...... +242 0.881433725 127.0.0.1:57415 127.0.0.1:57433 3339715997 12 feffffff3b6c0100266c0100 ....;l..&l.. +247 0.934196234 127.0.0.1:57415 127.0.0.1:57433 3339716009 12 1a0000003e890c0000000000 ....>....... +249 0.934404612 127.0.0.1:57415 127.0.0.1:57433 3339716021 26 16000000548f6340e25e31400100030000000fa6210000000000 ....T.c@.^1@........!..... +251 0.935021639 127.0.0.1:57433 127.0.0.1:57415 382169608 12 ffffffff3e890c0000000000 ....>....... +253 0.935711622 127.0.0.1:57433 127.0.0.1:57415 382169620 12 1600000058470c0000000000 ....XG...... +255 0.935909510 127.0.0.1:57433 127.0.0.1:57415 382169632 22 120000000fa621000000000001000300000000000000 ......!............... +257 0.936175108 127.0.0.1:57415 127.0.0.1:57433 3339716047 12 ffffffff58470c0000000000 ....XG...... +265 1.037213326 127.0.0.1:57415 127.0.0.1:57433 3339716059 12 1a0000003f890c0000000000 ....?....... +267 1.037413359 127.0.0.1:57415 127.0.0.1:57433 3339716071 26 16000000548f6340e25e314001000300000011a6210000000000 ....T.c@.^1@........!..... +269 1.037871838 127.0.0.1:57433 127.0.0.1:57415 382169654 12 ffffffff3f890c0000000000 ....?....... +272 1.039064646 127.0.0.1:57433 127.0.0.1:57415 382169666 12 1600000059470c0000000000 ....YG...... +274 1.039310932 127.0.0.1:57433 127.0.0.1:57415 382169678 22 1200000011a621000000000001000300000000000000 ......!............... +276 1.039715528 127.0.0.1:57415 127.0.0.1:57433 3339716097 12 ffffffff59470c0000000000 ....YG...... +280 1.111215830 127.0.0.1:57415 127.0.0.1:57433 3339716109 12 2200000040890c0000000000 "...@....... +282 1.111389160 127.0.0.1:57415 127.0.0.1:57433 3339716121 34 1e0000001c2118d0c46f33bb0100030000004d550200000000003c4b74c39d01 .....!...o3.......MU......l..)l.. +711 2.387134314 127.0.0.1:57415 127.0.0.1:57433 3339717664 12 1a00000058890c0000000000 ....X....... +713 2.387293577 127.0.0.1:57415 127.0.0.1:57433 3339717676 26 16000000548f6340e25e314001000300000035a6210000000000 ....T.c@.^1@......5.!..... +715 2.387925386 127.0.0.1:57433 127.0.0.1:57415 382170942 12 ffffffff58890c0000000000 ....X....... +717 2.388633728 127.0.0.1:57433 127.0.0.1:57415 382170954 12 1600000070470c0000000000 ....pG...... +719 2.388813257 127.0.0.1:57433 127.0.0.1:57415 382170966 22 1200000035a621000000000001000300000000000000 ....5.!............... +721 2.389152050 127.0.0.1:57415 127.0.0.1:57433 3339717702 12 ffffffff70470c0000000000 ....pG...... +736 2.490819454 127.0.0.1:57415 127.0.0.1:57433 3339717714 12 1a00000059890c0000000000 ....Y....... +738 2.491006374 127.0.0.1:57415 127.0.0.1:57433 3339717726 26 16000000548f6340e25e314001000300000037a6210000000000 ....T.c@.^1@......7.!..... +740 2.491469860 127.0.0.1:57433 127.0.0.1:57415 382170988 12 ffffffff59890c0000000000 ....Y....... +742 2.491983891 127.0.0.1:57433 127.0.0.1:57415 382171000 12 1600000071470c0000000000 ....qG...... +744 2.492269754 127.0.0.1:57433 127.0.0.1:57415 382171012 22 1200000037a621000000000001000300000000000000 ....7.!............... +746 2.492609739 127.0.0.1:57415 127.0.0.1:57433 3339717752 12 ffffffff71470c0000000000 ....qG...... +756 2.595287561 127.0.0.1:57415 127.0.0.1:57433 3339717764 12 1a0000005a890c0000000000 ....Z....... +758 2.595516205 127.0.0.1:57415 127.0.0.1:57433 3339717776 26 16000000548f6340e25e314001000300000039a6210000000000 ....T.c@.^1@......9.!..... +760 2.596029997 127.0.0.1:57433 127.0.0.1:57415 382171034 12 ffffffff5a890c0000000000 ....Z....... +762 2.596475124 127.0.0.1:57433 127.0.0.1:57415 382171046 12 1600000072470c0000000000 ....rG...... +764 2.596656561 127.0.0.1:57433 127.0.0.1:57415 382171058 22 1200000039a621000000000001000300000000000000 ....9.!............... +766 2.597007036 127.0.0.1:57415 127.0.0.1:57433 3339717802 12 ffffffff72470c0000000000 ....rG...... +768 2.634495020 127.0.0.1:57415 127.0.0.1:57433 3339717814 12 220000005b890c0000000000 "...[....... +770 2.634746790 127.0.0.1:57415 127.0.0.1:57433 3339717826 34 1e0000001c2118d0c46f33bb01000300000052550200000000002f5174c39d01 .....!...o3.......RU....../Qt..... +772 2.634882927 127.0.0.1:57415 127.0.0.1:57433 3339717860 12 430000005c890c0000000000 C...\....... +774 2.634966612 127.0.0.1:57415 127.0.0.1:57433 3339717872 67 3f000000980433cb0cb47c38010003000000010000000052550200000000003d ?.....3...|8...........RU......=B.....&......... +776 2.635279179 127.0.0.1:57433 127.0.0.1:57415 382171080 12 ffffffff5b890c0000000000 ....[....... +778 2.635639191 127.0.0.1:57433 127.0.0.1:57415 382171092 12 ffffffff5c890c0000000000 ....\....... +780 2.640664577 127.0.0.1:57433 127.0.0.1:57415 382171104 12 3400000073470c0000000000 4...sG...... +782 2.640856504 127.0.0.1:57433 127.0.0.1:57415 382171116 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....RU.........t7. +784 2.641129017 127.0.0.1:57415 127.0.0.1:57433 3339717939 12 ffffffff73470c0000000000 ....sG...... +786 2.642159224 127.0.0.1:57415 127.0.0.1:57433 3339717951 12 1e0000005d890c0000000000 ....]....... +788 2.642300129 127.0.0.1:57415 127.0.0.1:57433 3339717963 30 1a00000055ceff62b21b3a500100030000003ba621000000000000000000 ....U..b..:P......;.!......... +790 2.642746449 127.0.0.1:57433 127.0.0.1:57415 382171168 12 ffffffff5d890c0000000000 ....]....... +792 2.645689964 127.0.0.1:57433 127.0.0.1:57415 382171180 12 1a00000074470c0000000000 ....tG...... +794 2.645995378 127.0.0.1:57433 127.0.0.1:57415 382171192 26 160000003ba62100000000000100030000000000000000000000 ....;.!................... +796 2.646306515 127.0.0.1:57415 127.0.0.1:57433 3339717993 12 ffffffff74470c0000000000 ....tG...... +798 2.698214531 127.0.0.1:57415 127.0.0.1:57433 3339718005 12 1a0000005e890c0000000000 ....^....... +802 2.698461294 127.0.0.1:57415 127.0.0.1:57433 3339718017 26 16000000548f6340e25e31400100030000003da6210000000000 ....T.c@.^1@......=.!..... +806 2.699005842 127.0.0.1:57433 127.0.0.1:57415 382171218 12 ffffffff5e890c0000000000 ....^....... +810 2.699843407 127.0.0.1:57433 127.0.0.1:57415 382171230 12 1600000075470c0000000000 ....uG...... +812 2.700056314 127.0.0.1:57433 127.0.0.1:57415 382171242 22 120000003da621000000000001000300000000000000 ....=.!............... +814 2.700360298 127.0.0.1:57415 127.0.0.1:57433 3339718043 12 ffffffff75470c0000000000 ....uG...... +816 2.705020189 127.0.0.1:57433 127.0.0.1:57415 382171264 12 feffffff2a6c01003e6c0100 ....*l..>l.. +822 2.801262379 127.0.0.1:57415 127.0.0.1:57433 3339718055 12 1a0000005f890c0000000000 ...._....... +824 2.801517487 127.0.0.1:57415 127.0.0.1:57433 3339718067 26 16000000548f6340e25e31400100030000003fa6210000000000 ....T.c@.^1@......?.!..... +826 2.801898003 127.0.0.1:57433 127.0.0.1:57415 382171276 12 ffffffff5f890c0000000000 ...._....... +828 2.802312613 127.0.0.1:57433 127.0.0.1:57415 382171288 12 1600000076470c0000000000 ....vG...... +830 2.802506924 127.0.0.1:57433 127.0.0.1:57415 382171300 22 120000003fa621000000000001000300000000000000 ....?.!............... +832 2.802837133 127.0.0.1:57415 127.0.0.1:57433 3339718093 12 ffffffff76470c0000000000 ....vG...... +868 2.887633801 127.0.0.1:57415 127.0.0.1:57433 3339718105 12 feffffff3f6c01002a6c0100 ....?l..*l.. +872 2.903888702 127.0.0.1:57415 127.0.0.1:57433 3339718117 12 1a00000060890c0000000000 ....`....... +874 2.904061317 127.0.0.1:57415 127.0.0.1:57433 3339718129 26 16000000548f6340e25e314001000300000041a6210000000000 ....T.c@.^1@......A.!..... +876 2.904580832 127.0.0.1:57433 127.0.0.1:57415 382171322 12 ffffffff60890c0000000000 ....`....... +878 2.905200243 127.0.0.1:57433 127.0.0.1:57415 382171334 12 1600000077470c0000000000 ....wG...... +880 2.905555725 127.0.0.1:57433 127.0.0.1:57415 382171346 22 1200000041a621000000000001000300000000000000 ....A.!............... +882 2.905881405 127.0.0.1:57415 127.0.0.1:57433 3339718155 12 ffffffff77470c0000000000 ....wG...... +884 2.942812443 127.0.0.1:57415 127.0.0.1:57433 3339718167 12 6500000061890c0000000000 e...a....... +886 2.942973137 127.0.0.1:57415 127.0.0.1:57433 3339718179 101 1e0000001c2118d0c46f33bb0100030000005355020000000000635274c39d01 .....!...o3.......SU......cRt.....?.....3...|8.. +888 2.943462849 127.0.0.1:57433 127.0.0.1:57415 382171368 12 ffffffff61890c0000000000 ....a....... +890 2.944966316 127.0.0.1:57433 127.0.0.1:57415 382171380 12 3400000078470c0000000000 4...xG...... +892 2.945226192 127.0.0.1:57433 127.0.0.1:57415 382171392 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....SU..........e. +894 2.945498705 127.0.0.1:57415 127.0.0.1:57433 3339718280 12 ffffffff78470c0000000000 ....xG...... +896 2.946207047 127.0.0.1:57415 127.0.0.1:57433 3339718292 12 1e00000062890c0000000000 ....b....... +898 2.946335554 127.0.0.1:57415 127.0.0.1:57433 3339718304 30 1a00000055ceff62b21b3a5001000300000043a621000000000000000000 ....U..b..:P......C.!......... +900 2.946648121 127.0.0.1:57433 127.0.0.1:57415 382171444 12 ffffffff62890c0000000000 ....b....... +902 2.947331190 127.0.0.1:57433 127.0.0.1:57415 382171456 12 1a00000079470c0000000000 ....yG...... +904 2.947611809 127.0.0.1:57433 127.0.0.1:57415 382171468 26 1600000043a62100000000000100030000000000000000000000 ....C.!................... +906 2.947854996 127.0.0.1:57415 127.0.0.1:57433 3339718334 12 ffffffff79470c0000000000 ....yG...... +914 3.006771088 127.0.0.1:57415 127.0.0.1:57433 3339718346 12 1a00000063890c0000000000 ....c....... +916 3.006932497 127.0.0.1:57415 127.0.0.1:57433 3339718358 26 16000000548f6340e25e314001000300000045a6210000000000 ....T.c@.^1@......E.!..... +918 3.007312536 127.0.0.1:57433 127.0.0.1:57415 382171494 12 ffffffff63890c0000000000 ....c....... +920 3.007919788 127.0.0.1:57433 127.0.0.1:57415 382171506 12 160000007a470c0000000000 ....zG...... +922 3.008081675 127.0.0.1:57433 127.0.0.1:57415 382171518 22 1200000045a621000000000001000300000000000000 ....E.!............... +924 3.008348942 127.0.0.1:57415 127.0.0.1:57433 3339718384 12 ffffffff7a470c0000000000 ....zG...... +928 3.110175848 127.0.0.1:57415 127.0.0.1:57433 3339718396 12 1a00000064890c0000000000 ....d....... +930 3.110444307 127.0.0.1:57415 127.0.0.1:57433 3339718408 26 16000000548f6340e25e314001000300000047a6210000000000 ....T.c@.^1@......G.!..... +932 3.110921144 127.0.0.1:57433 127.0.0.1:57415 382171540 12 ffffffff64890c0000000000 ....d....... +934 3.111774445 127.0.0.1:57433 127.0.0.1:57415 382171552 12 160000007b470c0000000000 ....{G...... +936 3.112018108 127.0.0.1:57433 127.0.0.1:57415 382171564 22 1200000047a621000000000001000300000000000000 ....G.!............... +938 3.112301826 127.0.0.1:57415 127.0.0.1:57433 3339718434 12 ffffffff7b470c0000000000 ....{G...... +942 3.206368208 127.0.0.1:57433 127.0.0.1:57415 382171586 12 feffffff2b6c01003f6c0100 ....+l..?l.. +944 3.213666201 127.0.0.1:57415 127.0.0.1:57433 3339718446 12 1a00000065890c0000000000 ....e....... +946 3.213948727 127.0.0.1:57415 127.0.0.1:57433 3339718458 26 16000000548f6340e25e314001000300000049a6210000000000 ....T.c@.^1@......I.!..... +948 3.214313507 127.0.0.1:57433 127.0.0.1:57415 382171598 12 ffffffff65890c0000000000 ....e....... +950 3.215057135 127.0.0.1:57433 127.0.0.1:57415 382171610 12 160000007c470c0000000000 ....|G...... +952 3.215208054 127.0.0.1:57433 127.0.0.1:57415 382171622 22 1200000049a621000000000001000300000000000000 ....I.!............... +954 3.215486765 127.0.0.1:57415 127.0.0.1:57433 3339718484 12 ffffffff7c470c0000000000 ....|G...... +960 3.247675180 127.0.0.1:57415 127.0.0.1:57433 3339718496 12 6500000066890c0000000000 e...f....... +962 3.247935534 127.0.0.1:57415 127.0.0.1:57433 3339718508 101 1e0000001c2118d0c46f33bb0100030000005455020000000000945374c39d01 .....!...o3.......TU.......St.....?.....3...|8.. +964 3.248416901 127.0.0.1:57433 127.0.0.1:57415 382171644 12 ffffffff66890c0000000000 ....f....... +966 3.249795437 127.0.0.1:57433 127.0.0.1:57415 382171656 12 340000007d470c0000000000 4...}G...... +968 3.249979496 127.0.0.1:57433 127.0.0.1:57415 382171668 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....TU.........l.. +970 3.250325680 127.0.0.1:57415 127.0.0.1:57433 3339718609 12 ffffffff7d470c0000000000 ....}G...... +972 3.251026154 127.0.0.1:57415 127.0.0.1:57433 3339718621 12 1e00000067890c0000000000 ....g....... +974 3.251273632 127.0.0.1:57415 127.0.0.1:57433 3339718633 30 1a00000055ceff62b21b3a500100030000004ba621000000000000000000 ....U..b..:P......K.!......... +976 3.251613617 127.0.0.1:57433 127.0.0.1:57415 382171720 12 ffffffff67890c0000000000 ....g....... +978 3.252195120 127.0.0.1:57433 127.0.0.1:57415 382171732 12 1a0000007e470c0000000000 ....~G...... +980 3.252334118 127.0.0.1:57433 127.0.0.1:57415 382171744 26 160000004ba62100000000000100030000000000000000000000 ....K.!................... +982 3.252570868 127.0.0.1:57415 127.0.0.1:57433 3339718663 12 ffffffff7e470c0000000000 ....~G...... +984 3.317631006 127.0.0.1:57415 127.0.0.1:57433 3339718675 12 1a00000068890c0000000000 ....h....... +986 3.317811728 127.0.0.1:57415 127.0.0.1:57433 3339718687 26 16000000548f6340e25e31400100030000004da6210000000000 ....T.c@.^1@......M.!..... +988 3.318171263 127.0.0.1:57433 127.0.0.1:57415 382171770 12 ffffffff68890c0000000000 ....h....... +990 3.318667650 127.0.0.1:57433 127.0.0.1:57415 382171782 12 160000007f470c0000000000 .....G...... +992 3.318882465 127.0.0.1:57433 127.0.0.1:57415 382171794 22 120000004da621000000000001000300000000000000 ....M.!............... +994 3.319283724 127.0.0.1:57415 127.0.0.1:57433 3339718713 12 ffffffff7f470c0000000000 .....G...... +1000 3.389180422 127.0.0.1:57415 127.0.0.1:57433 3339718725 12 feffffff406c01002b6c0100 ....@l..+l.. +1004 3.420805216 127.0.0.1:57415 127.0.0.1:57433 3339718737 12 1a00000069890c0000000000 ....i....... +1006 3.421077013 127.0.0.1:57415 127.0.0.1:57433 3339718749 26 16000000548f6340e25e31400100030000004fa6210000000000 ....T.c@.^1@......O.!..... +1008 3.422107935 127.0.0.1:57433 127.0.0.1:57415 382171816 12 ffffffff69890c0000000000 ....i....... +1010 3.422836065 127.0.0.1:57433 127.0.0.1:57415 382171828 12 1600000080470c0000000000 .....G...... +1012 3.423117876 127.0.0.1:57433 127.0.0.1:57415 382171840 22 120000004fa621000000000001000300000000000000 ....O.!............... +1014 3.423458576 127.0.0.1:57415 127.0.0.1:57433 3339718775 12 ffffffff80470c0000000000 .....G...... +1022 3.525392532 127.0.0.1:57415 127.0.0.1:57433 3339718787 12 1a0000006a890c0000000000 ....j....... +1024 3.525613070 127.0.0.1:57415 127.0.0.1:57433 3339718799 26 16000000548f6340e25e314001000300000051a6210000000000 ....T.c@.^1@......Q.!..... +1026 3.526654005 127.0.0.1:57433 127.0.0.1:57415 382171862 12 ffffffff6a890c0000000000 ....j....... +1028 3.528187990 127.0.0.1:57433 127.0.0.1:57415 382171874 12 1600000081470c0000000000 .....G...... +1030 3.528439522 127.0.0.1:57433 127.0.0.1:57415 382171886 22 1200000051a621000000000001000300000000000000 ....Q.!............... +1032 3.528996229 127.0.0.1:57415 127.0.0.1:57433 3339718825 12 ffffffff81470c0000000000 .....G...... +1034 3.552581787 127.0.0.1:57415 127.0.0.1:57433 3339718837 12 650000006b890c0000000000 e...k....... +1036 3.552807093 127.0.0.1:57415 127.0.0.1:57433 3339718849 101 1e0000001c2118d0c46f33bb0100030000005555020000000000c55474c39d01 .....!...o3.......UU.......Tt.....?.....3...|8.. +1038 3.553187370 127.0.0.1:57433 127.0.0.1:57415 382171908 12 ffffffff6b890c0000000000 ....k....... +1040 3.554455519 127.0.0.1:57433 127.0.0.1:57415 382171920 12 3400000082470c0000000000 4....G...... +1042 3.554623127 127.0.0.1:57433 127.0.0.1:57415 382171932 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....UU............ +1044 3.554959536 127.0.0.1:57415 127.0.0.1:57433 3339718950 12 ffffffff82470c0000000000 .....G...... +1046 3.555857420 127.0.0.1:57415 127.0.0.1:57433 3339718962 12 1e0000006c890c0000000000 ....l....... +1048 3.556016922 127.0.0.1:57415 127.0.0.1:57433 3339718974 30 1a00000055ceff62b21b3a5001000300000053a621000000000000000000 ....U..b..:P......S.!......... +1050 3.556429625 127.0.0.1:57433 127.0.0.1:57415 382171984 12 ffffffff6c890c0000000000 ....l....... +1052 3.556834698 127.0.0.1:57433 127.0.0.1:57415 382171996 12 1a00000083470c0000000000 .....G...... +1054 3.557012558 127.0.0.1:57433 127.0.0.1:57415 382172008 26 1600000053a62100000000000100030000000000000000000000 ....S.!................... +1056 3.557335138 127.0.0.1:57415 127.0.0.1:57433 3339719004 12 ffffffff83470c0000000000 .....G...... +1060 3.630154133 127.0.0.1:57415 127.0.0.1:57433 3339719016 12 1a0000006d890c0000000000 ....m....... +1062 3.630346537 127.0.0.1:57415 127.0.0.1:57433 3339719028 26 16000000548f6340e25e314001000300000055a6210000000000 ....T.c@.^1@......U.!..... +1064 3.630799294 127.0.0.1:57433 127.0.0.1:57415 382172034 12 ffffffff6d890c0000000000 ....m....... +1068 3.638474941 127.0.0.1:57433 127.0.0.1:57415 382172046 12 1600000084470c0000000000 .....G...... +1070 3.638735771 127.0.0.1:57433 127.0.0.1:57415 382172058 22 1200000055a621000000000001000300000000000000 ....U.!............... +1073 3.639040947 127.0.0.1:57415 127.0.0.1:57433 3339719054 12 ffffffff84470c0000000000 .....G...... +1082 3.706827402 127.0.0.1:57433 127.0.0.1:57415 382172080 12 feffffff2c6c0100406c0100 ....,l..@l.. +1088 3.741138458 127.0.0.1:57415 127.0.0.1:57433 3339719066 12 1a0000006e890c0000000000 ....n....... +1090 3.741394997 127.0.0.1:57415 127.0.0.1:57433 3339719078 26 16000000548f6340e25e314001000300000057a6210000000000 ....T.c@.^1@......W.!..... +1092 3.741955757 127.0.0.1:57433 127.0.0.1:57415 382172092 12 ffffffff6e890c0000000000 ....n....... +1094 3.743398666 127.0.0.1:57433 127.0.0.1:57415 382172104 12 1600000085470c0000000000 .....G...... +1096 3.743712187 127.0.0.1:57433 127.0.0.1:57415 382172116 22 1200000057a621000000000001000300000000000000 ....W.!............... +1098 3.744086027 127.0.0.1:57415 127.0.0.1:57433 3339719104 12 ffffffff85470c0000000000 .....G...... +1104 3.846435308 127.0.0.1:57415 127.0.0.1:57433 3339719116 12 1a0000006f890c0000000000 ....o....... +1106 3.846651554 127.0.0.1:57415 127.0.0.1:57433 3339719128 26 16000000548f6340e25e314001000300000059a6210000000000 ....T.c@.^1@......Y.!..... +1108 3.847110033 127.0.0.1:57433 127.0.0.1:57415 382172138 12 ffffffff6f890c0000000000 ....o....... +1110 3.847647905 127.0.0.1:57433 127.0.0.1:57415 382172150 12 1600000086470c0000000000 .....G...... +1112 3.847803831 127.0.0.1:57433 127.0.0.1:57415 382172162 22 1200000059a621000000000001000300000000000000 ....Y.!............... +1114 3.848275185 127.0.0.1:57415 127.0.0.1:57433 3339719154 12 ffffffff86470c0000000000 .....G...... +1116 3.857974291 127.0.0.1:57415 127.0.0.1:57433 3339719166 12 2200000070890c0000000000 "...p....... +1118 3.858120918 127.0.0.1:57415 127.0.0.1:57433 3339719178 34 1e0000001c2118d0c46f33bb0100030000005655020000000000f65574c39d01 .....!...o3.......VU.......Ut..... +1120 3.858208418 127.0.0.1:57415 127.0.0.1:57433 3339719212 12 4300000071890c0000000000 C...q....... +1122 3.858289719 127.0.0.1:57415 127.0.0.1:57433 3339719224 67 3f000000980433cb0cb47c38010003000000010000000056550200000000003d ?.....3...|8...........VU......=B.....&......... +1124 3.858534098 127.0.0.1:57433 127.0.0.1:57415 382172184 12 ffffffff70890c0000000000 ....p....... +1126 3.858792305 127.0.0.1:57433 127.0.0.1:57415 382172196 12 ffffffff71890c0000000000 ....q....... +1128 3.859511137 127.0.0.1:57433 127.0.0.1:57415 382172208 12 3400000087470c0000000000 4....G...... +1130 3.859732151 127.0.0.1:57433 127.0.0.1:57415 382172220 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....VU........Fu.. +1132 3.860094309 127.0.0.1:57415 127.0.0.1:57433 3339719291 12 ffffffff87470c0000000000 .....G...... +1134 3.861016512 127.0.0.1:57415 127.0.0.1:57433 3339719303 12 1e00000072890c0000000000 ....r....... +1136 3.861146688 127.0.0.1:57415 127.0.0.1:57433 3339719315 30 1a00000055ceff62b21b3a500100030000005ba621000000000000000000 ....U..b..:P......[.!......... +1138 3.861596107 127.0.0.1:57433 127.0.0.1:57415 382172272 12 ffffffff72890c0000000000 ....r....... +1140 3.862290621 127.0.0.1:57433 127.0.0.1:57415 382172284 12 1a00000088470c0000000000 .....G...... +1142 3.862482548 127.0.0.1:57433 127.0.0.1:57415 382172296 26 160000005ba62100000000000100030000000000000000000000 ....[.!................... +1144 3.862736702 127.0.0.1:57415 127.0.0.1:57433 3339719345 12 ffffffff88470c0000000000 .....G...... +1146 3.891340733 127.0.0.1:57415 127.0.0.1:57433 3339719357 12 feffffff416c01002c6c0100 ....Al..,l.. +1152 3.949990273 127.0.0.1:57415 127.0.0.1:57433 3339719369 12 1a00000073890c0000000000 ....s....... +1154 3.950166702 127.0.0.1:57415 127.0.0.1:57433 3339719381 26 16000000548f6340e25e31400100030000005da6210000000000 ....T.c@.^1@......].!..... +1156 3.950649023 127.0.0.1:57433 127.0.0.1:57415 382172322 12 ffffffff73890c0000000000 ....s....... +1158 3.951401472 127.0.0.1:57433 127.0.0.1:57415 382172334 12 1600000089470c0000000000 .....G...... +1160 3.951746702 127.0.0.1:57433 127.0.0.1:57415 382172346 22 120000005da621000000000001000300000000000000 ....].!............... +1162 3.952282429 127.0.0.1:57415 127.0.0.1:57433 3339719407 12 ffffffff89470c0000000000 .....G...... +1170 4.054695606 127.0.0.1:57415 127.0.0.1:57433 3339719419 12 1a00000074890c0000000000 ....t....... +1172 4.054868221 127.0.0.1:57415 127.0.0.1:57433 3339719431 26 16000000548f6340e25e31400100030000005fa6210000000000 ....T.c@.^1@......_.!..... +1174 4.055232048 127.0.0.1:57433 127.0.0.1:57415 382172368 12 ffffffff74890c0000000000 ....t....... +1176 4.056696892 127.0.0.1:57433 127.0.0.1:57415 382172380 12 160000008a470c0000000000 .....G...... +1178 4.056918383 127.0.0.1:57433 127.0.0.1:57415 382172392 22 120000005fa621000000000001000300000000000000 ...._.!............... +1180 4.057196379 127.0.0.1:57415 127.0.0.1:57433 3339719457 12 ffffffff8a470c0000000000 .....G...... +1188 4.159189939 127.0.0.1:57415 127.0.0.1:57433 3339719469 12 1a00000075890c0000000000 ....u....... +1190 4.159354687 127.0.0.1:57415 127.0.0.1:57433 3339719481 26 16000000548f6340e25e314001000300000061a6210000000000 ....T.c@.^1@......a.!..... +1192 4.159714222 127.0.0.1:57433 127.0.0.1:57415 382172414 12 ffffffff75890c0000000000 ....u....... +1194 4.160437822 127.0.0.1:57433 127.0.0.1:57415 382172426 12 160000008b470c0000000000 .....G...... +1196 4.160784483 127.0.0.1:57433 127.0.0.1:57415 382172438 22 1200000061a621000000000001000300000000000000 ....a.!............... +1198 4.161230087 127.0.0.1:57415 127.0.0.1:57433 3339719507 12 ffffffff8b470c0000000000 .....G...... +1200 4.163616419 127.0.0.1:57415 127.0.0.1:57433 3339719519 12 2200000076890c0000000000 "...v....... +1202 4.163971901 127.0.0.1:57415 127.0.0.1:57433 3339719531 34 1e0000001c2118d0c46f33bb0100030000005755020000000000285774c39d01 .....!...o3.......WU......(Wt..... +1204 4.164146662 127.0.0.1:57415 127.0.0.1:57433 3339719565 12 4300000077890c0000000000 C...w....... +1206 4.164251328 127.0.0.1:57415 127.0.0.1:57433 3339719577 67 3f000000980433cb0cb47c38010003000000010000000057550200000000003d ?.....3...|8...........WU......=B.....&......... +1207 4.164426804 127.0.0.1:57433 127.0.0.1:57415 382172460 12 ffffffff76890c0000000000 ....v....... +1209 4.164703369 127.0.0.1:57433 127.0.0.1:57415 382172472 12 ffffffff77890c0000000000 ....w....... +1211 4.166056395 127.0.0.1:57433 127.0.0.1:57415 382172484 12 340000008c470c0000000000 4....G...... +1213 4.166269302 127.0.0.1:57433 127.0.0.1:57415 382172496 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....WU.........= . +1215 4.166556835 127.0.0.1:57415 127.0.0.1:57433 3339719644 12 ffffffff8c470c0000000000 .....G...... +1217 4.167362690 127.0.0.1:57415 127.0.0.1:57433 3339719656 12 1e00000078890c0000000000 ....x....... +1219 4.167504787 127.0.0.1:57415 127.0.0.1:57433 3339719668 30 1a00000055ceff62b21b3a5001000300000063a621000000000000000000 ....U..b..:P......c.!......... +1221 4.168008566 127.0.0.1:57433 127.0.0.1:57415 382172548 12 ffffffff78890c0000000000 ....x....... +1223 4.169138908 127.0.0.1:57433 127.0.0.1:57415 382172560 12 1a0000008d470c0000000000 .....G...... +1225 4.169402361 127.0.0.1:57433 127.0.0.1:57415 382172572 26 1600000063a62100000000000100030000000000000000000000 ....c.!................... +1227 4.169883013 127.0.0.1:57415 127.0.0.1:57433 3339719698 12 ffffffff8d470c0000000000 .....G...... +1231 4.207502127 127.0.0.1:57433 127.0.0.1:57415 382172598 12 feffffff2d6c0100416c0100 ....-l..Al.. +1237 4.262714386 127.0.0.1:57415 127.0.0.1:57433 3339719710 12 1a00000079890c0000000000 ....y....... +1239 4.262892485 127.0.0.1:57415 127.0.0.1:57433 3339719722 26 16000000548f6340e25e314001000300000065a6210000000000 ....T.c@.^1@......e.!..... +1241 4.263434172 127.0.0.1:57433 127.0.0.1:57415 382172610 12 ffffffff79890c0000000000 ....y....... +1243 4.267318726 127.0.0.1:57433 127.0.0.1:57415 382172622 12 160000008e470c0000000000 .....G...... +1245 4.267612457 127.0.0.1:57433 127.0.0.1:57415 382172634 22 1200000065a621000000000001000300000000000000 ....e.!............... +1247 4.267939091 127.0.0.1:57415 127.0.0.1:57433 3339719748 12 ffffffff8e470c0000000000 .....G...... +1253 4.371335506 127.0.0.1:57415 127.0.0.1:57433 3339719760 12 1a0000007a890c0000000000 ....z....... +1255 4.371575594 127.0.0.1:57415 127.0.0.1:57433 3339719772 26 16000000548f6340e25e314001000300000067a6210000000000 ....T.c@.^1@......g.!..... +1257 4.372334719 127.0.0.1:57433 127.0.0.1:57415 382172656 12 ffffffff7a890c0000000000 ....z....... +1259 4.373077154 127.0.0.1:57433 127.0.0.1:57415 382172668 12 160000008f470c0000000000 .....G...... +1261 4.373423338 127.0.0.1:57433 127.0.0.1:57415 382172680 22 1200000067a621000000000001000300000000000000 ....g.!............... +1263 4.373779535 127.0.0.1:57415 127.0.0.1:57433 3339719798 12 ffffffff8f470c0000000000 .....G...... +1265 4.392322063 127.0.0.1:57415 127.0.0.1:57433 3339719810 12 feffffff426c01002d6c0100 ....Bl..-l.. +1274 4.469919205 127.0.0.1:57415 127.0.0.1:57433 3339719822 12 220000007b890c0000000000 "...{....... +1276 4.470124245 127.0.0.1:57415 127.0.0.1:57433 3339719834 34 1e0000001c2118d0c46f33bb01000300000058550200000000005a5874c39d01 .....!...o3.......XU......ZXt..... +1278 4.470222235 127.0.0.1:57415 127.0.0.1:57433 3339719868 12 430000007c890c0000000000 C...|....... +1280 4.470339537 127.0.0.1:57415 127.0.0.1:57433 3339719880 67 3f000000980433cb0cb47c38010003000000010000000058550200000000003d ?.....3...|8...........XU......=B.....&......... +1282 4.470647335 127.0.0.1:57433 127.0.0.1:57415 382172702 12 ffffffff7b890c0000000000 ....{....... +1284 4.470979929 127.0.0.1:57433 127.0.0.1:57415 382172714 12 ffffffff7c890c0000000000 ....|....... +1286 4.471958160 127.0.0.1:57433 127.0.0.1:57415 382172726 12 3400000090470c0000000000 4....G...... +1288 4.472169638 127.0.0.1:57433 127.0.0.1:57415 382172738 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....XU........t.N. +1290 4.472473145 127.0.0.1:57415 127.0.0.1:57433 3339719947 12 ffffffff90470c0000000000 .....G...... +1292 4.473421335 127.0.0.1:57415 127.0.0.1:57433 3339719959 12 1e0000007d890c0000000000 ....}....... +1294 4.473608732 127.0.0.1:57415 127.0.0.1:57433 3339719971 30 1a00000055ceff62b21b3a5001000300000069a621000000000000000000 ....U..b..:P......i.!......... +1296 4.474035740 127.0.0.1:57433 127.0.0.1:57415 382172790 12 ffffffff7d890c0000000000 ....}....... +1298 4.474724054 127.0.0.1:57433 127.0.0.1:57415 382172802 12 1a00000091470c0000000000 .....G...... +1300 4.474961042 127.0.0.1:57433 127.0.0.1:57415 382172814 26 1600000069a62100000000000100030000000000000000000000 ....i.!................... +1302 4.475230455 127.0.0.1:57415 127.0.0.1:57433 3339720001 12 ffffffff91470c0000000000 .....G...... +1304 4.475517273 127.0.0.1:57415 127.0.0.1:57433 3339720013 12 1a0000007e890c0000000000 ....~....... +1306 4.475816488 127.0.0.1:57415 127.0.0.1:57433 3339720025 26 16000000548f6340e25e31400100030000006ba6210000000000 ....T.c@.^1@......k.!..... +1308 4.476531029 127.0.0.1:57433 127.0.0.1:57415 382172840 12 ffffffff7e890c0000000000 ....~....... +1310 4.477262974 127.0.0.1:57433 127.0.0.1:57415 382172852 12 1600000092470c0000000000 .....G...... +1312 4.477511883 127.0.0.1:57433 127.0.0.1:57415 382172864 22 120000006ba621000000000001000300000000000000 ....k.!............... +1314 4.477819920 127.0.0.1:57415 127.0.0.1:57433 3339720051 12 ffffffff92470c0000000000 .....G...... +1325 4.579593420 127.0.0.1:57415 127.0.0.1:57433 3339720063 12 1a0000007f890c0000000000 ............ +1327 4.579811811 127.0.0.1:57415 127.0.0.1:57433 3339720075 26 16000000548f6340e25e31400100030000006da6210000000000 ....T.c@.^1@......m.!..... +1329 4.580265999 127.0.0.1:57433 127.0.0.1:57415 382172886 12 ffffffff7f890c0000000000 ............ +1331 4.581055880 127.0.0.1:57433 127.0.0.1:57415 382172898 12 1600000093470c0000000000 .....G...... +1333 4.581313848 127.0.0.1:57433 127.0.0.1:57415 382172910 22 120000006da621000000000001000300000000000000 ....m.!............... +1335 4.581619978 127.0.0.1:57415 127.0.0.1:57433 3339720101 12 ffffffff93470c0000000000 .....G...... +1346 4.683600426 127.0.0.1:57415 127.0.0.1:57433 3339720113 12 1a00000080890c0000000000 ............ +1348 4.683774233 127.0.0.1:57415 127.0.0.1:57433 3339720125 26 16000000548f6340e25e31400100030000006fa6210000000000 ....T.c@.^1@......o.!..... +1350 4.684231758 127.0.0.1:57433 127.0.0.1:57415 382172932 12 ffffffff80890c0000000000 ............ +1352 4.684807062 127.0.0.1:57433 127.0.0.1:57415 382172944 12 1600000094470c0000000000 .....G...... +1354 4.685065746 127.0.0.1:57433 127.0.0.1:57415 382172956 22 120000006fa621000000000001000300000000000000 ....o.!............... +1356 4.685423851 127.0.0.1:57415 127.0.0.1:57433 3339720151 12 ffffffff94470c0000000000 .....G...... +1360 4.709278584 127.0.0.1:57433 127.0.0.1:57415 382172978 12 feffffff2e6c0100426c0100 .....l..Bl.. +1367 4.774835825 127.0.0.1:57415 127.0.0.1:57433 3339720163 12 2200000081890c0000000000 "........... +1369 4.775039196 127.0.0.1:57415 127.0.0.1:57433 3339720175 34 1e0000001c2118d0c46f33bb01000300000059550200000000008b5974c39d01 .....!...o3.......YU.......Yt..... +1371 4.775125027 127.0.0.1:57415 127.0.0.1:57433 3339720209 12 4300000082890c0000000000 C........... +1373 4.775205374 127.0.0.1:57415 127.0.0.1:57433 3339720221 67 3f000000980433cb0cb47c38010003000000010000000059550200000000003d ?.....3...|8...........YU......=B.....&......... +1375 4.775506020 127.0.0.1:57433 127.0.0.1:57415 382172990 12 ffffffff81890c0000000000 ............ +1377 4.775835514 127.0.0.1:57433 127.0.0.1:57415 382173002 12 ffffffff82890c0000000000 ............ +1379 4.776920319 127.0.0.1:57433 127.0.0.1:57415 382173014 12 3400000095470c0000000000 4....G...... +1381 4.777133226 127.0.0.1:57433 127.0.0.1:57415 382173026 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....YU.........q}. +1383 4.777428150 127.0.0.1:57415 127.0.0.1:57433 3339720288 12 ffffffff95470c0000000000 .....G...... +1385 4.778276920 127.0.0.1:57415 127.0.0.1:57433 3339720300 12 1e00000083890c0000000000 ............ +1387 4.778446198 127.0.0.1:57415 127.0.0.1:57433 3339720312 30 1a00000055ceff62b21b3a5001000300000071a621000000000000000000 ....U..b..:P......q.!......... +1389 4.778782845 127.0.0.1:57433 127.0.0.1:57415 382173078 12 ffffffff83890c0000000000 ............ +1391 4.779425621 127.0.0.1:57433 127.0.0.1:57415 382173090 12 1a00000096470c0000000000 .....G...... +1393 4.779636621 127.0.0.1:57433 127.0.0.1:57415 382173102 26 1600000071a62100000000000100030000000000000000000000 ....q.!................... +1395 4.779944181 127.0.0.1:57415 127.0.0.1:57433 3339720342 12 ffffffff96470c0000000000 .....G...... +1400 4.788253546 127.0.0.1:57415 127.0.0.1:57433 3339720354 12 1a00000084890c0000000000 ............ +1402 4.788408518 127.0.0.1:57415 127.0.0.1:57433 3339720366 26 16000000548f6340e25e314001000300000073a6210000000000 ....T.c@.^1@......s.!..... +1406 4.788888216 127.0.0.1:57433 127.0.0.1:57415 382173128 12 ffffffff84890c0000000000 ............ +1412 4.789331436 127.0.0.1:57433 127.0.0.1:57415 382173140 12 1600000097470c0000000000 .....G...... +1414 4.789523840 127.0.0.1:57433 127.0.0.1:57415 382173152 22 1200000073a621000000000001000300000000000000 ....s.!............... +1418 4.789906025 127.0.0.1:57415 127.0.0.1:57433 3339720392 12 ffffffff97470c0000000000 .....G...... +1500 4.891195774 127.0.0.1:57415 127.0.0.1:57433 3339720404 12 1a00000085890c0000000000 ............ +1502 4.891371489 127.0.0.1:57415 127.0.0.1:57433 3339720416 26 16000000548f6340e25e314001000300000075a6210000000000 ....T.c@.^1@......u.!..... +1504 4.891850710 127.0.0.1:57433 127.0.0.1:57415 382173174 12 ffffffff85890c0000000000 ............ +1506 4.892415047 127.0.0.1:57433 127.0.0.1:57415 382173186 12 1600000098470c0000000000 .....G...... +1508 4.892629623 127.0.0.1:57433 127.0.0.1:57415 382173198 22 1200000075a621000000000001000300000000000000 ....u.!............... +1510 4.892912626 127.0.0.1:57415 127.0.0.1:57433 3339720442 12 ffffffff98470c0000000000 .....G...... +1512 4.893811703 127.0.0.1:57415 127.0.0.1:57433 3339720454 12 feffffff436c01002e6c0100 ....Cl...l.. +1651 4.994113684 127.0.0.1:57415 127.0.0.1:57433 3339720466 12 1a00000086890c0000000000 ............ +1653 4.994274855 127.0.0.1:57415 127.0.0.1:57433 3339720478 26 16000000548f6340e25e314001000300000077a6210000000000 ....T.c@.^1@......w.!..... +1655 4.994894505 127.0.0.1:57433 127.0.0.1:57415 382173220 12 ffffffff86890c0000000000 ............ +1657 4.995539427 127.0.0.1:57433 127.0.0.1:57415 382173232 12 1600000099470c0000000000 .....G...... +1659 4.995695591 127.0.0.1:57433 127.0.0.1:57415 382173244 22 1200000077a621000000000001000300000000000000 ....w.!............... +1661 4.995956182 127.0.0.1:57415 127.0.0.1:57433 3339720504 12 ffffffff99470c0000000000 .....G...... +1736 5.079789162 127.0.0.1:57415 127.0.0.1:57433 3339720516 12 6500000087890c0000000000 e........... +1738 5.079983473 127.0.0.1:57415 127.0.0.1:57433 3339720528 101 1e0000001c2118d0c46f33bb0100030000005a55020000000000bc5a74c39d01 .....!...o3.......ZU.......Zt.....?.....3...|8.. +1740 5.080410719 127.0.0.1:57433 127.0.0.1:57415 382173266 12 ffffffff87890c0000000000 ............ +1742 5.081586599 127.0.0.1:57433 127.0.0.1:57415 382173278 12 340000009a470c0000000000 4....G...... +1744 5.081778526 127.0.0.1:57433 127.0.0.1:57415 382173290 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....ZU........c... +1746 5.082209110 127.0.0.1:57415 127.0.0.1:57433 3339720629 12 ffffffff9a470c0000000000 .....G...... +1748 5.083158970 127.0.0.1:57415 127.0.0.1:57433 3339720641 12 1e00000088890c0000000000 ............ +1750 5.083374262 127.0.0.1:57415 127.0.0.1:57433 3339720653 30 1a00000055ceff62b21b3a5001000300000079a621000000000000000000 ....U..b..:P......y.!......... +1752 5.083718538 127.0.0.1:57433 127.0.0.1:57415 382173342 12 ffffffff88890c0000000000 ............ +1754 5.084496021 127.0.0.1:57433 127.0.0.1:57415 382173354 12 1a0000009b470c0000000000 .....G...... +1756 5.084682465 127.0.0.1:57433 127.0.0.1:57415 382173366 26 1600000079a62100000000000100030000000000000000000000 ....y.!................... +1758 5.085148811 127.0.0.1:57415 127.0.0.1:57433 3339720683 12 ffffffff9b470c0000000000 .....G...... +1760 5.097535610 127.0.0.1:57415 127.0.0.1:57433 3339720695 12 1a00000089890c0000000000 ............ +1762 5.097737312 127.0.0.1:57415 127.0.0.1:57433 3339720707 26 16000000548f6340e25e31400100030000007ba6210000000000 ....T.c@.^1@......{.!..... +1764 5.098366737 127.0.0.1:57433 127.0.0.1:57415 382173392 12 ffffffff89890c0000000000 ............ +1766 5.099104404 127.0.0.1:57433 127.0.0.1:57415 382173404 12 160000009c470c0000000000 .....G...... +1768 5.099353313 127.0.0.1:57433 127.0.0.1:57415 382173416 22 120000007ba621000000000001000300000000000000 ....{.!............... +1770 5.099669218 127.0.0.1:57415 127.0.0.1:57433 3339720733 12 ffffffff9c470c0000000000 .....G...... +1777 5.201443434 127.0.0.1:57415 127.0.0.1:57433 3339720745 12 1a0000008a890c0000000000 ............ +1779 5.201627016 127.0.0.1:57415 127.0.0.1:57433 3339720757 26 16000000548f6340e25e31400100030000007da6210000000000 ....T.c@.^1@......}.!..... +1781 5.202197313 127.0.0.1:57433 127.0.0.1:57415 382173438 12 ffffffff8a890c0000000000 ............ +1783 5.203113317 127.0.0.1:57433 127.0.0.1:57415 382173450 12 160000009d470c0000000000 .....G...... +1785 5.203289032 127.0.0.1:57433 127.0.0.1:57415 382173462 22 120000007da621000000000001000300000000000000 ....}.!............... +1787 5.203616619 127.0.0.1:57415 127.0.0.1:57433 3339720783 12 ffffffff9d470c0000000000 .....G...... +1791 5.210505486 127.0.0.1:57433 127.0.0.1:57415 382173484 12 feffffff2f6c0100436c0100 ..../l..Cl.. +1874 5.304764509 127.0.0.1:57415 127.0.0.1:57433 3339720795 12 1a0000008b890c0000000000 ............ +1876 5.304962873 127.0.0.1:57415 127.0.0.1:57433 3339720807 26 16000000548f6340e25e31400100030000007fa6210000000000 ....T.c@.^1@........!..... +1878 5.305366516 127.0.0.1:57433 127.0.0.1:57415 382173496 12 ffffffff8b890c0000000000 ............ +1880 5.305893183 127.0.0.1:57433 127.0.0.1:57415 382173508 12 160000009e470c0000000000 .....G...... +1882 5.306076765 127.0.0.1:57433 127.0.0.1:57415 382173520 22 120000007fa621000000000001000300000000000000 ......!............... +1884 5.306358099 127.0.0.1:57415 127.0.0.1:57433 3339720833 12 ffffffff9e470c0000000000 .....G...... +1890 5.383787870 127.0.0.1:57415 127.0.0.1:57433 3339720845 12 650000008c890c0000000000 e........... +1892 5.383953333 127.0.0.1:57415 127.0.0.1:57433 3339720857 101 1e0000001c2118d0c46f33bb0100030000005b55020000000000ec5b74c39d01 .....!...o3.......[U.......[t.....?.....3...|8.. +1894 5.384323597 127.0.0.1:57433 127.0.0.1:57415 382173542 12 ffffffff8c890c0000000000 ............ +1897 5.386038542 127.0.0.1:57433 127.0.0.1:57415 382173554 12 340000009f470c0000000000 4....G...... +1899 5.386208773 127.0.0.1:57433 127.0.0.1:57415 382173566 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....[U........$`.. +1901 5.386454582 127.0.0.1:57415 127.0.0.1:57433 3339720958 12 ffffffff9f470c0000000000 .....G...... +1903 5.387478352 127.0.0.1:57415 127.0.0.1:57433 3339720970 12 1e0000008d890c0000000000 ............ +1905 5.387612104 127.0.0.1:57415 127.0.0.1:57433 3339720982 30 1a00000055ceff62b21b3a5001000300000081a621000000000000000000 ....U..b..:P........!......... +1907 5.388014078 127.0.0.1:57433 127.0.0.1:57415 382173618 12 ffffffff8d890c0000000000 ............ +1909 5.388554811 127.0.0.1:57433 127.0.0.1:57415 382173630 12 1a000000a0470c0000000000 .....G...... +1911 5.388691902 127.0.0.1:57433 127.0.0.1:57415 382173642 26 1600000081a62100000000000100030000000000000000000000 ......!................... +1913 5.388871908 127.0.0.1:57415 127.0.0.1:57433 3339721012 12 ffffffffa0470c0000000000 .....G...... +1915 5.394323349 127.0.0.1:57415 127.0.0.1:57433 3339721024 12 feffffff446c01002f6c0100 ....Dl../l.. +1921 5.408686876 127.0.0.1:57415 127.0.0.1:57433 3339721036 12 1a0000008e890c0000000000 ............ +1923 5.408849955 127.0.0.1:57415 127.0.0.1:57433 3339721048 26 16000000548f6340e25e314001000300000083a6210000000000 ....T.c@.^1@........!..... +1925 5.409350634 127.0.0.1:57433 127.0.0.1:57415 382173668 12 ffffffff8e890c0000000000 ............ +1927 5.409871817 127.0.0.1:57433 127.0.0.1:57415 382173680 12 16000000a1470c0000000000 .....G...... +1929 5.410059214 127.0.0.1:57433 127.0.0.1:57415 382173692 22 1200000083a621000000000001000300000000000000 ......!............... +1931 5.410328627 127.0.0.1:57415 127.0.0.1:57433 3339721074 12 ffffffffa1470c0000000000 .....G...... +1942 5.511702061 127.0.0.1:57415 127.0.0.1:57433 3339721086 12 1a0000008f890c0000000000 ............ +1944 5.511866808 127.0.0.1:57415 127.0.0.1:57433 3339721098 26 16000000548f6340e25e314001000300000085a6210000000000 ....T.c@.^1@........!..... +1946 5.512178421 127.0.0.1:57433 127.0.0.1:57415 382173714 12 ffffffff8f890c0000000000 ............ +1948 5.512731552 127.0.0.1:57433 127.0.0.1:57415 382173726 12 16000000a2470c0000000000 .....G...... +1950 5.512886286 127.0.0.1:57433 127.0.0.1:57415 382173738 22 1200000085a621000000000001000300000000000000 ......!............... +1952 5.513122320 127.0.0.1:57415 127.0.0.1:57433 3339721124 12 ffffffffa2470c0000000000 .....G...... +1957 5.615660667 127.0.0.1:57415 127.0.0.1:57433 3339721136 12 1a00000090890c0000000000 ............ +1959 5.615875721 127.0.0.1:57415 127.0.0.1:57433 3339721148 26 16000000548f6340e25e314001000300000087a6210000000000 ....T.c@.^1@........!..... +1961 5.616370916 127.0.0.1:57433 127.0.0.1:57415 382173760 12 ffffffff90890c0000000000 ............ +1963 5.616843939 127.0.0.1:57433 127.0.0.1:57415 382173772 12 16000000a3470c0000000000 .....G...... +1965 5.617100239 127.0.0.1:57433 127.0.0.1:57415 382173784 22 1200000087a621000000000001000300000000000000 ......!............... +1967 5.617436647 127.0.0.1:57415 127.0.0.1:57433 3339721174 12 ffffffffa3470c0000000000 .....G...... +1973 5.689400434 127.0.0.1:57415 127.0.0.1:57433 3339721186 12 2200000091890c0000000000 "........... +1975 5.689561844 127.0.0.1:57415 127.0.0.1:57433 3339721198 34 1e0000001c2118d0c46f33bb0100030000005c550200000000001e5d74c39d01 .....!...o3.......\U.......]t..... +1977 5.689647198 127.0.0.1:57415 127.0.0.1:57433 3339721232 12 4300000092890c0000000000 C........... +1979 5.689727306 127.0.0.1:57415 127.0.0.1:57433 3339721244 67 3f000000980433cb0cb47c3801000300000001000000005c550200000000003d ?.....3...|8...........\U......=B.....&......... +1981 5.689981937 127.0.0.1:57433 127.0.0.1:57415 382173806 12 ffffffff91890c0000000000 ............ +1983 5.690299034 127.0.0.1:57433 127.0.0.1:57415 382173818 12 ffffffff92890c0000000000 ............ +1985 5.691260576 127.0.0.1:57433 127.0.0.1:57415 382173830 12 34000000a4470c0000000000 4....G...... +1987 5.691445112 127.0.0.1:57433 127.0.0.1:57415 382173842 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....\U............ +1989 5.691741705 127.0.0.1:57415 127.0.0.1:57433 3339721311 12 ffffffffa4470c0000000000 .....G...... +1991 5.692850828 127.0.0.1:57415 127.0.0.1:57433 3339721323 12 1e00000093890c0000000000 ............ +1993 5.693086386 127.0.0.1:57415 127.0.0.1:57433 3339721335 30 1a00000055ceff62b21b3a5001000300000089a621000000000000000000 ....U..b..:P........!......... +1995 5.693569183 127.0.0.1:57433 127.0.0.1:57415 382173894 12 ffffffff93890c0000000000 ............ +1997 5.694533348 127.0.0.1:57433 127.0.0.1:57415 382173906 12 1a000000a5470c0000000000 .....G...... +1999 5.694748640 127.0.0.1:57433 127.0.0.1:57415 382173918 26 1600000089a62100000000000100030000000000000000000000 ......!................... +2001 5.695224762 127.0.0.1:57415 127.0.0.1:57433 3339721365 12 ffffffffa5470c0000000000 .....G...... +2005 5.710907221 127.0.0.1:57433 127.0.0.1:57415 382173944 12 feffffff306c0100446c0100 ....0l..Dl.. +2008 5.719182730 127.0.0.1:57415 127.0.0.1:57433 3339721377 12 1a00000094890c0000000000 ............ +2010 5.719329596 127.0.0.1:57415 127.0.0.1:57433 3339721389 26 16000000548f6340e25e31400100030000008ba6210000000000 ....T.c@.^1@........!..... +2012 5.719777346 127.0.0.1:57433 127.0.0.1:57415 382173956 12 ffffffff94890c0000000000 ............ +2014 5.720291853 127.0.0.1:57433 127.0.0.1:57415 382173968 12 16000000a6470c0000000000 .....G...... +2016 5.720471382 127.0.0.1:57433 127.0.0.1:57415 382173980 22 120000008ba621000000000001000300000000000000 ......!............... +2018 5.720757246 127.0.0.1:57415 127.0.0.1:57433 3339721415 12 ffffffffa6470c0000000000 .....G...... +2024 5.821807623 127.0.0.1:57415 127.0.0.1:57433 3339721427 12 1a00000095890c0000000000 ............ +2026 5.821985722 127.0.0.1:57415 127.0.0.1:57433 3339721439 26 16000000548f6340e25e31400100030000008da6210000000000 ....T.c@.^1@........!..... +2028 5.822484016 127.0.0.1:57433 127.0.0.1:57415 382174002 12 ffffffff95890c0000000000 ............ +2030 5.822954893 127.0.0.1:57433 127.0.0.1:57415 382174014 12 16000000a7470c0000000000 .....G...... +2032 5.823139191 127.0.0.1:57433 127.0.0.1:57415 382174026 22 120000008da621000000000001000300000000000000 ......!............... +2034 5.823414326 127.0.0.1:57415 127.0.0.1:57433 3339721465 12 ffffffffa7470c0000000000 .....G...... +2040 5.895251751 127.0.0.1:57415 127.0.0.1:57433 3339721477 12 feffffff456c0100306c0100 ....El..0l.. +2044 5.924410820 127.0.0.1:57415 127.0.0.1:57433 3339721489 12 1a00000096890c0000000000 ............ +2046 5.924580574 127.0.0.1:57415 127.0.0.1:57433 3339721501 26 16000000548f6340e25e31400100030000008fa6210000000000 ....T.c@.^1@........!..... +2048 5.924944878 127.0.0.1:57433 127.0.0.1:57415 382174048 12 ffffffff96890c0000000000 ............ +2050 5.925675631 127.0.0.1:57433 127.0.0.1:57415 382174060 12 16000000a8470c0000000000 .....G...... +2052 5.925993443 127.0.0.1:57433 127.0.0.1:57415 382174072 22 120000008fa621000000000001000300000000000000 ......!............... +2054 5.926260233 127.0.0.1:57415 127.0.0.1:57433 3339721527 12 ffffffffa8470c0000000000 .....G...... +2058 5.993582010 127.0.0.1:57415 127.0.0.1:57433 3339721539 12 2200000097890c0000000000 "........... +2060 5.993800640 127.0.0.1:57415 127.0.0.1:57433 3339721551 34 1e0000001c2118d0c46f33bb0100030000005d550200000000004e5e74c39d01 .....!...o3.......]U......N^t..... +2062 5.993921995 127.0.0.1:57415 127.0.0.1:57433 3339721585 12 4300000098890c0000000000 C........... +2065 5.994028091 127.0.0.1:57415 127.0.0.1:57433 3339721597 67 3f000000980433cb0cb47c3801000300000001000000005d550200000000003d ?.....3...|8...........]U......=B.....&......... +2068 5.994190454 127.0.0.1:57433 127.0.0.1:57415 382174094 12 ffffffff97890c0000000000 ............ +2070 5.994578123 127.0.0.1:57433 127.0.0.1:57415 382174106 12 ffffffff98890c0000000000 ............ +2072 5.996035099 127.0.0.1:57433 127.0.0.1:57415 382174118 12 34000000a9470c0000000000 4....G...... +2074 5.996223450 127.0.0.1:57433 127.0.0.1:57415 382174130 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....]U.........u7. +2076 5.996505737 127.0.0.1:57415 127.0.0.1:57433 3339721664 12 ffffffffa9470c0000000000 .....G...... +2078 5.997337580 127.0.0.1:57415 127.0.0.1:57433 3339721676 12 1e00000099890c0000000000 ............ +2080 5.997479439 127.0.0.1:57415 127.0.0.1:57433 3339721688 30 1a00000055ceff62b21b3a5001000300000091a621000000000000000000 ....U..b..:P........!......... +2082 5.997819424 127.0.0.1:57433 127.0.0.1:57415 382174182 12 ffffffff99890c0000000000 ............ +2084 5.998392820 127.0.0.1:57433 127.0.0.1:57415 382174194 12 1a000000aa470c0000000000 .....G...... +2086 5.998578310 127.0.0.1:57433 127.0.0.1:57415 382174206 26 1600000091a62100000000000100030000000000000000000000 ......!................... +2088 5.998894930 127.0.0.1:57415 127.0.0.1:57433 3339721718 12 ffffffffaa470c0000000000 .....G...... +2092 6.027204990 127.0.0.1:57415 127.0.0.1:57433 3339721730 12 1a0000009a890c0000000000 ............ +2094 6.027387381 127.0.0.1:57415 127.0.0.1:57433 3339721742 26 16000000548f6340e25e314001000300000093a6210000000000 ....T.c@.^1@........!..... +2096 6.027711391 127.0.0.1:57433 127.0.0.1:57415 382174232 12 ffffffff9a890c0000000000 ............ +2098 6.028313875 127.0.0.1:57433 127.0.0.1:57415 382174244 12 16000000ab470c0000000000 .....G...... +2100 6.028583765 127.0.0.1:57433 127.0.0.1:57415 382174256 22 1200000093a621000000000001000300000000000000 ......!............... +2102 6.028888702 127.0.0.1:57415 127.0.0.1:57433 3339721768 12 ffffffffab470c0000000000 .....G...... +2106 6.129884720 127.0.0.1:57415 127.0.0.1:57433 3339721780 12 1a0000009b890c0000000000 ............ +2108 6.130063772 127.0.0.1:57415 127.0.0.1:57433 3339721792 26 16000000548f6340e25e314001000300000095a6210000000000 ....T.c@.^1@........!..... +2110 6.130563736 127.0.0.1:57433 127.0.0.1:57415 382174278 12 ffffffff9b890c0000000000 ............ +2112 6.130892754 127.0.0.1:57433 127.0.0.1:57415 382174290 12 16000000ac470c0000000000 .....G...... +2114 6.131160021 127.0.0.1:57433 127.0.0.1:57415 382174302 22 1200000095a621000000000001000300000000000000 ......!............... +2116 6.131496906 127.0.0.1:57415 127.0.0.1:57433 3339721818 12 ffffffffac470c0000000000 .....G...... +2120 6.213123322 127.0.0.1:57433 127.0.0.1:57415 382174324 12 feffffff316c0100456c0100 ....1l..El.. +2124 6.232923508 127.0.0.1:57415 127.0.0.1:57433 3339721830 12 1a0000009c890c0000000000 ............ +2126 6.233100891 127.0.0.1:57415 127.0.0.1:57433 3339721842 26 16000000548f6340e25e314001000300000097a6210000000000 ....T.c@.^1@........!..... +2128 6.233549833 127.0.0.1:57433 127.0.0.1:57415 382174336 12 ffffffff9c890c0000000000 ............ +2132 6.235146523 127.0.0.1:57433 127.0.0.1:57415 382174348 12 16000000ad470c0000000000 .....G...... +2134 6.235486984 127.0.0.1:57433 127.0.0.1:57415 382174360 22 1200000097a621000000000001000300000000000000 ......!............... +2136 6.235796213 127.0.0.1:57415 127.0.0.1:57433 3339721868 12 ffffffffad470c0000000000 .....G...... +2139 6.299085140 127.0.0.1:57415 127.0.0.1:57433 3339721880 12 650000009d890c0000000000 e........... +2141 6.299242020 127.0.0.1:57415 127.0.0.1:57433 3339721892 101 1e0000001c2118d0c46f33bb0100030000005e550200000000007f5f74c39d01 .....!...o3.......^U......._t.....?.....3...|8.. +2143 6.299822569 127.0.0.1:57433 127.0.0.1:57415 382174382 12 ffffffff9d890c0000000000 ............ +2145 6.301162481 127.0.0.1:57433 127.0.0.1:57415 382174394 12 34000000ae470c0000000000 4....G...... +2147 6.301396847 127.0.0.1:57433 127.0.0.1:57415 382174406 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....^U..........f. +2149 6.301691294 127.0.0.1:57415 127.0.0.1:57433 3339721993 12 ffffffffae470c0000000000 .....G...... +2151 6.302718639 127.0.0.1:57415 127.0.0.1:57433 3339722005 12 1e0000009e890c0000000000 ............ +2153 6.302857876 127.0.0.1:57415 127.0.0.1:57433 3339722017 30 1a00000055ceff62b21b3a5001000300000099a621000000000000000000 ....U..b..:P........!......... +2155 6.303448677 127.0.0.1:57433 127.0.0.1:57415 382174458 12 ffffffff9e890c0000000000 ............ +2157 6.303746462 127.0.0.1:57433 127.0.0.1:57415 382174470 12 1a000000af470c0000000000 .....G...... +2159 6.303950548 127.0.0.1:57433 127.0.0.1:57415 382174482 26 1600000099a62100000000000100030000000000000000000000 ......!................... +2161 6.304278374 127.0.0.1:57415 127.0.0.1:57433 3339722047 12 ffffffffaf470c0000000000 .....G...... +2167 6.337624073 127.0.0.1:57415 127.0.0.1:57433 3339722059 12 1a0000009f890c0000000000 ............ +2169 6.337779284 127.0.0.1:57415 127.0.0.1:57433 3339722071 26 16000000548f6340e25e31400100030000009ba6210000000000 ....T.c@.^1@........!..... +2171 6.338270903 127.0.0.1:57433 127.0.0.1:57415 382174508 12 ffffffff9f890c0000000000 ............ +2173 6.339175940 127.0.0.1:57433 127.0.0.1:57415 382174520 12 16000000b0470c0000000000 .....G...... +2175 6.339400530 127.0.0.1:57433 127.0.0.1:57415 382174532 22 120000009ba621000000000001000300000000000000 ......!............... +2177 6.339706421 127.0.0.1:57415 127.0.0.1:57433 3339722097 12 ffffffffb0470c0000000000 .....G...... +2180 6.397384644 127.0.0.1:57415 127.0.0.1:57433 3339722109 12 feffffff466c0100316c0100 ....Fl..1l.. +2185 6.440734863 127.0.0.1:57415 127.0.0.1:57433 3339722121 12 1a000000a0890c0000000000 ............ +2187 6.440912962 127.0.0.1:57415 127.0.0.1:57433 3339722133 26 16000000548f6340e25e31400100030000009da6210000000000 ....T.c@.^1@........!..... +2189 6.441536665 127.0.0.1:57433 127.0.0.1:57415 382174554 12 ffffffffa0890c0000000000 ............ +2191 6.441945314 127.0.0.1:57433 127.0.0.1:57415 382174566 12 16000000b1470c0000000000 .....G...... +2193 6.442275047 127.0.0.1:57433 127.0.0.1:57415 382174578 22 120000009da621000000000001000300000000000000 ......!............... +2195 6.442541838 127.0.0.1:57415 127.0.0.1:57433 3339722159 12 ffffffffb1470c0000000000 .....G...... +2204 6.543773890 127.0.0.1:57415 127.0.0.1:57433 3339722171 12 1a000000a1890c0000000000 ............ +2206 6.543997765 127.0.0.1:57415 127.0.0.1:57433 3339722183 26 16000000548f6340e25e31400100030000009fa6210000000000 ....T.c@.^1@........!..... +2208 6.544559002 127.0.0.1:57433 127.0.0.1:57415 382174600 12 ffffffffa1890c0000000000 ............ +2210 6.545615435 127.0.0.1:57433 127.0.0.1:57415 382174612 12 16000000b2470c0000000000 .....G...... +2212 6.545827150 127.0.0.1:57433 127.0.0.1:57415 382174624 22 120000009fa621000000000001000300000000000000 ......!............... +2214 6.546225071 127.0.0.1:57415 127.0.0.1:57433 3339722209 12 ffffffffb2470c0000000000 .....G...... +2226 6.604377270 127.0.0.1:57415 127.0.0.1:57433 3339722221 12 22000000a2890c0000000000 "........... +2228 6.604609728 127.0.0.1:57415 127.0.0.1:57433 3339722233 34 1e0000001c2118d0c46f33bb0100030000005f55020000000000b06074c39d01 .....!...o3......._U.......`t..... +2230 6.604695559 127.0.0.1:57415 127.0.0.1:57433 3339722267 12 43000000a3890c0000000000 C........... +2232 6.604774475 127.0.0.1:57415 127.0.0.1:57433 3339722279 67 3f000000980433cb0cb47c3801000300000001000000005f550200000000003d ?.....3...|8..........._U......=B.....&......... +2234 6.605066299 127.0.0.1:57433 127.0.0.1:57415 382174646 12 ffffffffa2890c0000000000 ............ +2236 6.605382681 127.0.0.1:57433 127.0.0.1:57415 382174658 12 ffffffffa3890c0000000000 ............ +2238 6.606077433 127.0.0.1:57433 127.0.0.1:57415 382174670 12 34000000b3470c0000000000 4....G...... +2240 6.606280804 127.0.0.1:57433 127.0.0.1:57415 382174682 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([....._U........3... +2242 6.606695652 127.0.0.1:57415 127.0.0.1:57433 3339722346 12 ffffffffb3470c0000000000 .....G...... +2244 6.607419729 127.0.0.1:57415 127.0.0.1:57433 3339722358 12 1e000000a4890c0000000000 ............ +2246 6.607583046 127.0.0.1:57415 127.0.0.1:57433 3339722370 30 1a00000055ceff62b21b3a50010003000000a1a621000000000000000000 ....U..b..:P........!......... +2248 6.607966423 127.0.0.1:57433 127.0.0.1:57415 382174734 12 ffffffffa4890c0000000000 ............ +2250 6.608959436 127.0.0.1:57433 127.0.0.1:57415 382174746 12 1a000000b4470c0000000000 .....G...... +2252 6.609154940 127.0.0.1:57433 127.0.0.1:57415 382174758 26 16000000a1a62100000000000100030000000000000000000000 ......!................... +2254 6.609505415 127.0.0.1:57415 127.0.0.1:57433 3339722400 12 ffffffffb4470c0000000000 .....G...... +2266 6.648088694 127.0.0.1:57415 127.0.0.1:57433 3339722412 12 1a000000a5890c0000000000 ............ +2268 6.648264170 127.0.0.1:57415 127.0.0.1:57433 3339722424 26 16000000548f6340e25e3140010003000000a3a6210000000000 ....T.c@.^1@........!..... +2270 6.648803949 127.0.0.1:57433 127.0.0.1:57415 382174784 12 ffffffffa5890c0000000000 ............ +2272 6.650108814 127.0.0.1:57433 127.0.0.1:57415 382174796 12 16000000b5470c0000000000 .....G...... +2274 6.650370836 127.0.0.1:57433 127.0.0.1:57415 382174808 22 12000000a3a621000000000001000300000000000000 ......!............... +2276 6.650612593 127.0.0.1:57415 127.0.0.1:57433 3339722450 12 ffffffffb5470c0000000000 .....G...... +2293 6.714274406 127.0.0.1:57433 127.0.0.1:57415 382174830 12 feffffff326c0100466c0100 ....2l..Fl.. +2300 6.753415108 127.0.0.1:57415 127.0.0.1:57433 3339722462 12 1a000000a6890c0000000000 ............ +2302 6.753584623 127.0.0.1:57415 127.0.0.1:57433 3339722474 26 16000000548f6340e25e3140010003000000a5a6210000000000 ....T.c@.^1@........!..... +2304 6.753909826 127.0.0.1:57433 127.0.0.1:57415 382174842 12 ffffffffa6890c0000000000 ............ +2306 6.754371405 127.0.0.1:57433 127.0.0.1:57415 382174854 12 16000000b6470c0000000000 .....G...... +2308 6.754532337 127.0.0.1:57433 127.0.0.1:57415 382174866 22 12000000a5a621000000000001000300000000000000 ......!............... +2310 6.754834175 127.0.0.1:57415 127.0.0.1:57433 3339722500 12 ffffffffb6470c0000000000 .....G...... +2348 6.856310606 127.0.0.1:57415 127.0.0.1:57433 3339722512 12 1a000000a7890c0000000000 ............ +2350 6.856524706 127.0.0.1:57415 127.0.0.1:57433 3339722524 26 16000000548f6340e25e3140010003000000a7a6210000000000 ....T.c@.^1@........!..... +2352 6.856999159 127.0.0.1:57433 127.0.0.1:57415 382174888 12 ffffffffa7890c0000000000 ............ +2354 6.857722521 127.0.0.1:57433 127.0.0.1:57415 382174900 12 16000000b7470c0000000000 .....G...... +2356 6.857947111 127.0.0.1:57433 127.0.0.1:57415 382174912 22 12000000a7a621000000000001000300000000000000 ......!............... +2358 6.858181238 127.0.0.1:57415 127.0.0.1:57433 3339722550 12 ffffffffb7470c0000000000 .....G...... +2361 6.897777081 127.0.0.1:57415 127.0.0.1:57433 3339722562 12 feffffff476c0100326c0100 ....Gl..2l.. +2365 6.908728838 127.0.0.1:57415 127.0.0.1:57433 3339722574 12 65000000a8890c0000000000 e........... +2367 6.908895493 127.0.0.1:57415 127.0.0.1:57433 3339722586 101 1e0000001c2118d0c46f33bb0100030000006055020000000000e16174c39d01 .....!...o3.......`U.......at.....?.....3...|8.. +2369 6.909258127 127.0.0.1:57433 127.0.0.1:57415 382174934 12 ffffffffa8890c0000000000 ............ +2371 6.911843538 127.0.0.1:57433 127.0.0.1:57415 382174946 12 34000000b8470c0000000000 4....G...... +2373 6.912089109 127.0.0.1:57433 127.0.0.1:57415 382174958 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....`U........t1.. +2375 6.912455082 127.0.0.1:57415 127.0.0.1:57433 3339722687 12 ffffffffb8470c0000000000 .....G...... +2377 6.913107157 127.0.0.1:57415 127.0.0.1:57433 3339722699 12 1e000000a9890c0000000000 ............ +2379 6.913254499 127.0.0.1:57415 127.0.0.1:57433 3339722711 30 1a00000055ceff62b21b3a50010003000000a9a621000000000000000000 ....U..b..:P........!......... +2381 6.913733006 127.0.0.1:57433 127.0.0.1:57415 382175010 12 ffffffffa9890c0000000000 ............ +2383 6.914792538 127.0.0.1:57433 127.0.0.1:57415 382175022 12 1a000000b9470c0000000000 .....G...... +2385 6.914994240 127.0.0.1:57433 127.0.0.1:57415 382175034 26 16000000a9a62100000000000100030000000000000000000000 ......!................... +2387 6.915355921 127.0.0.1:57415 127.0.0.1:57433 3339722741 12 ffffffffb9470c0000000000 .....G...... +2410 6.959257841 127.0.0.1:57415 127.0.0.1:57433 3339722753 12 1a000000aa890c0000000000 ............ +2413 6.959434748 127.0.0.1:57415 127.0.0.1:57433 3339722765 26 16000000548f6340e25e3140010003000000aba6210000000000 ....T.c@.^1@........!..... +2416 6.959895611 127.0.0.1:57433 127.0.0.1:57415 382175060 12 ffffffffaa890c0000000000 ............ +2420 6.960464001 127.0.0.1:57433 127.0.0.1:57415 382175072 12 16000000ba470c0000000000 .....G...... +2423 6.960796595 127.0.0.1:57433 127.0.0.1:57415 382175084 22 12000000aba621000000000001000300000000000000 ......!............... +2427 6.961070776 127.0.0.1:57415 127.0.0.1:57433 3339722791 12 ffffffffba470c0000000000 .....G...... +2440 7.063039064 127.0.0.1:57415 127.0.0.1:57433 3339722803 12 1a000000ab890c0000000000 ............ +2442 7.063264608 127.0.0.1:57415 127.0.0.1:57433 3339722815 26 16000000548f6340e25e3140010003000000ada6210000000000 ....T.c@.^1@........!..... +2444 7.063693285 127.0.0.1:57433 127.0.0.1:57415 382175106 12 ffffffffab890c0000000000 ............ +2446 7.064094782 127.0.0.1:57433 127.0.0.1:57415 382175118 12 16000000bb470c0000000000 .....G...... +2448 7.064291716 127.0.0.1:57433 127.0.0.1:57415 382175130 22 12000000ada621000000000001000300000000000000 ......!............... +2450 7.064600706 127.0.0.1:57415 127.0.0.1:57433 3339722841 12 ffffffffbb470c0000000000 .....G...... +2480 7.165551424 127.0.0.1:57415 127.0.0.1:57433 3339722853 12 1a000000ac890c0000000000 ............ +2482 7.165746450 127.0.0.1:57415 127.0.0.1:57433 3339722865 26 16000000548f6340e25e3140010003000000afa6210000000000 ....T.c@.^1@........!..... +2484 7.166303873 127.0.0.1:57433 127.0.0.1:57415 382175152 12 ffffffffac890c0000000000 ............ +2486 7.166943550 127.0.0.1:57433 127.0.0.1:57415 382175164 12 16000000bc470c0000000000 .....G...... +2488 7.167160034 127.0.0.1:57433 127.0.0.1:57415 382175176 22 12000000afa621000000000001000300000000000000 ......!............... +2490 7.167358637 127.0.0.1:57415 127.0.0.1:57433 3339722891 12 ffffffffbc470c0000000000 .....G...... +2495 7.214084864 127.0.0.1:57415 127.0.0.1:57433 3339722903 12 22000000ad890c0000000000 "........... +2496 7.214116812 127.0.0.1:57433 127.0.0.1:57415 382175198 12 feffffff336c0100476c0100 ....3l..Gl.. +2497 7.214280605 127.0.0.1:57415 127.0.0.1:57433 3339722915 113 1e0000001c2118d0c46f33bb0100030000006155020000000000126374c39d01 .....!...o3.......aU.......ct.....C...........?. +2499 7.214633703 127.0.0.1:57433 127.0.0.1:57415 382175210 12 ffffffffad890c0000000000 ............ +2501 7.214820862 127.0.0.1:57433 127.0.0.1:57415 382175222 12 ffffffffae890c0000000000 ............ +2503 7.216243267 127.0.0.1:57433 127.0.0.1:57415 382175234 12 34000000bd470c0000000000 4....G...... +2505 7.216457367 127.0.0.1:57433 127.0.0.1:57415 382175246 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....aU........s... +2507 7.216835976 127.0.0.1:57415 127.0.0.1:57433 3339723028 12 ffffffffbd470c0000000000 .....G...... +2508 7.217862606 127.0.0.1:57415 127.0.0.1:57433 3339723040 12 1e000000af890c0000000000 ............ +2510 7.218102694 127.0.0.1:57415 127.0.0.1:57433 3339723052 30 1a00000055ceff62b21b3a50010003000000b1a621000000000000000000 ....U..b..:P........!......... +2512 7.218477249 127.0.0.1:57433 127.0.0.1:57415 382175298 12 ffffffffaf890c0000000000 ............ +2514 7.219030857 127.0.0.1:57433 127.0.0.1:57415 382175310 12 1a000000be470c0000000000 .....G...... +2516 7.219218254 127.0.0.1:57433 127.0.0.1:57415 382175322 26 16000000b1a62100000000000100030000000000000000000000 ......!................... +2518 7.219489098 127.0.0.1:57415 127.0.0.1:57433 3339723082 12 ffffffffbe470c0000000000 .....G...... +2525 7.269325733 127.0.0.1:57415 127.0.0.1:57433 3339723094 12 1a000000b0890c0000000000 ............ +2527 7.269485235 127.0.0.1:57415 127.0.0.1:57433 3339723106 26 16000000548f6340e25e3140010003000000b3a6210000000000 ....T.c@.^1@........!..... +2529 7.269933224 127.0.0.1:57433 127.0.0.1:57415 382175348 12 ffffffffb0890c0000000000 ............ +2531 7.270744324 127.0.0.1:57433 127.0.0.1:57415 382175360 12 16000000bf470c0000000000 .....G...... +2533 7.270977974 127.0.0.1:57433 127.0.0.1:57415 382175372 22 12000000b3a621000000000001000300000000000000 ......!............... +2535 7.271196604 127.0.0.1:57415 127.0.0.1:57433 3339723132 12 ffffffffbf470c0000000000 .....G...... +2568 7.372848749 127.0.0.1:57415 127.0.0.1:57433 3339723144 12 1a000000b1890c0000000000 ............ +2570 7.373022556 127.0.0.1:57415 127.0.0.1:57433 3339723156 26 16000000548f6340e25e3140010003000000b5a6210000000000 ....T.c@.^1@........!..... +2572 7.373540640 127.0.0.1:57433 127.0.0.1:57415 382175394 12 ffffffffb1890c0000000000 ............ +2574 7.373995781 127.0.0.1:57433 127.0.0.1:57415 382175406 12 16000000c0470c0000000000 .....G...... +2576 7.374179602 127.0.0.1:57433 127.0.0.1:57415 382175418 22 12000000b5a621000000000001000300000000000000 ......!............... +2578 7.374441385 127.0.0.1:57415 127.0.0.1:57433 3339723182 12 ffffffffc0470c0000000000 .....G...... +2582 7.399127245 127.0.0.1:57415 127.0.0.1:57433 3339723194 12 feffffff486c0100336c0100 ....Hl..3l.. +2596 7.476058960 127.0.0.1:57415 127.0.0.1:57433 3339723206 12 1a000000b2890c0000000000 ............ +2598 7.476279259 127.0.0.1:57415 127.0.0.1:57433 3339723218 26 16000000548f6340e25e3140010003000000b7a6210000000000 ....T.c@.^1@........!..... +2600 7.476683617 127.0.0.1:57433 127.0.0.1:57415 382175440 12 ffffffffb2890c0000000000 ............ +2602 7.477249384 127.0.0.1:57433 127.0.0.1:57415 382175452 12 16000000c1470c0000000000 .....G...... +2604 7.477447271 127.0.0.1:57433 127.0.0.1:57415 382175464 22 12000000b7a621000000000001000300000000000000 ......!............... +2606 7.477659464 127.0.0.1:57415 127.0.0.1:57433 3339723244 12 ffffffffc1470c0000000000 .....G...... +2612 7.519680262 127.0.0.1:57415 127.0.0.1:57433 3339723256 12 22000000b3890c0000000000 "........... +2614 7.519845724 127.0.0.1:57415 127.0.0.1:57433 3339723268 34 1e0000001c2118d0c46f33bb0100030000006255020000000000456474c39d01 .....!...o3.......bU......Edt..... +2616 7.519934654 127.0.0.1:57415 127.0.0.1:57433 3339723302 12 43000000b4890c0000000000 C........... +2618 7.520015001 127.0.0.1:57415 127.0.0.1:57433 3339723314 67 3f000000980433cb0cb47c38010003000000010000000062550200000000003d ?.....3...|8...........bU......=B.....&......... +2620 7.520461321 127.0.0.1:57433 127.0.0.1:57415 382175486 12 ffffffffb3890c0000000000 ............ +2622 7.520733833 127.0.0.1:57433 127.0.0.1:57415 382175498 12 ffffffffb4890c0000000000 ............ +2624 7.521473169 127.0.0.1:57433 127.0.0.1:57415 382175510 12 34000000c2470c0000000000 4....G...... +2626 7.521673441 127.0.0.1:57433 127.0.0.1:57415 382175522 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....bU........n; . +2628 7.521955013 127.0.0.1:57415 127.0.0.1:57433 3339723381 12 ffffffffc2470c0000000000 .....G...... +2630 7.522822618 127.0.0.1:57415 127.0.0.1:57433 3339723393 12 1e000000b5890c0000000000 ............ +2632 7.523025513 127.0.0.1:57415 127.0.0.1:57433 3339723405 30 1a00000055ceff62b21b3a50010003000000b9a621000000000000000000 ....U..b..:P........!......... +2634 7.523532629 127.0.0.1:57433 127.0.0.1:57415 382175574 12 ffffffffb5890c0000000000 ............ +2636 7.524488926 127.0.0.1:57433 127.0.0.1:57415 382175586 12 1a000000c3470c0000000000 .....G...... +2638 7.524669886 127.0.0.1:57433 127.0.0.1:57415 382175598 26 16000000b9a62100000000000100030000000000000000000000 ......!................... +2640 7.524862051 127.0.0.1:57415 127.0.0.1:57433 3339723435 12 ffffffffc3470c0000000000 .....G...... +2645 7.580266714 127.0.0.1:57415 127.0.0.1:57433 3339723447 12 1a000000b6890c0000000000 ............ +2647 7.580474377 127.0.0.1:57415 127.0.0.1:57433 3339723459 26 16000000548f6340e25e3140010003000000bba6210000000000 ....T.c@.^1@........!..... +2649 7.580828428 127.0.0.1:57433 127.0.0.1:57415 382175624 12 ffffffffb6890c0000000000 ............ +2651 7.581321001 127.0.0.1:57433 127.0.0.1:57415 382175636 12 16000000c4470c0000000000 .....G...... +2653 7.581506491 127.0.0.1:57433 127.0.0.1:57415 382175648 22 12000000bba621000000000001000300000000000000 ......!............... +2655 7.581870794 127.0.0.1:57415 127.0.0.1:57433 3339723485 12 ffffffffc4470c0000000000 .....G...... +2658 7.683494329 127.0.0.1:57415 127.0.0.1:57433 3339723497 12 1a000000b7890c0000000000 ............ +2660 7.683676243 127.0.0.1:57415 127.0.0.1:57433 3339723509 26 16000000548f6340e25e3140010003000000bda6210000000000 ....T.c@.^1@........!..... +2662 7.684094191 127.0.0.1:57433 127.0.0.1:57415 382175670 12 ffffffffb7890c0000000000 ............ +2664 7.684877157 127.0.0.1:57433 127.0.0.1:57415 382175682 12 16000000c5470c0000000000 .....G...... +2666 7.685101271 127.0.0.1:57433 127.0.0.1:57415 382175694 22 12000000bda621000000000001000300000000000000 ......!............... +2668 7.685461998 127.0.0.1:57415 127.0.0.1:57433 3339723535 12 ffffffffc5470c0000000000 .....G...... +2672 7.715265989 127.0.0.1:57433 127.0.0.1:57415 382175716 12 feffffff346c0100486c0100 ....4l..Hl.. +2679 7.788194180 127.0.0.1:57415 127.0.0.1:57433 3339723547 12 1a000000b8890c0000000000 ............ +2681 7.788428307 127.0.0.1:57415 127.0.0.1:57433 3339723559 26 16000000548f6340e25e3140010003000000bfa6210000000000 ....T.c@.^1@........!..... +2683 7.788783312 127.0.0.1:57433 127.0.0.1:57415 382175728 12 ffffffffb8890c0000000000 ............ +2685 7.789234877 127.0.0.1:57433 127.0.0.1:57415 382175740 12 16000000c6470c0000000000 .....G...... +2687 7.789488316 127.0.0.1:57433 127.0.0.1:57415 382175752 22 12000000bfa621000000000001000300000000000000 ......!............... +2689 7.789844036 127.0.0.1:57415 127.0.0.1:57433 3339723585 12 ffffffffc6470c0000000000 .....G...... +2691 7.824821711 127.0.0.1:57415 127.0.0.1:57433 3339723597 12 65000000b9890c0000000000 e........... +2693 7.825020790 127.0.0.1:57415 127.0.0.1:57433 3339723609 101 1e0000001c2118d0c46f33bb0100030000006355020000000000766574c39d01 .....!...o3.......cU......vet.....?.....3...|8.. +2695 7.825474024 127.0.0.1:57433 127.0.0.1:57415 382175774 12 ffffffffb9890c0000000000 ............ +2697 7.826511860 127.0.0.1:57433 127.0.0.1:57415 382175786 12 34000000c7470c0000000000 4....G...... +2699 7.826756001 127.0.0.1:57433 127.0.0.1:57415 382175798 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....cU........'.N. +2701 7.827247143 127.0.0.1:57415 127.0.0.1:57433 3339723710 12 ffffffffc7470c0000000000 .....G...... +2703 7.828047752 127.0.0.1:57415 127.0.0.1:57433 3339723722 12 1e000000ba890c0000000000 ............ +2705 7.828202963 127.0.0.1:57415 127.0.0.1:57433 3339723734 30 1a00000055ceff62b21b3a50010003000000c1a621000000000000000000 ....U..b..:P........!......... +2707 7.828547716 127.0.0.1:57433 127.0.0.1:57415 382175850 12 ffffffffba890c0000000000 ............ +2709 7.829169512 127.0.0.1:57433 127.0.0.1:57415 382175862 12 1a000000c8470c0000000000 .....G...... +2711 7.829361677 127.0.0.1:57433 127.0.0.1:57415 382175874 26 16000000c1a62100000000000100030000000000000000000000 ......!................... +2713 7.829626560 127.0.0.1:57415 127.0.0.1:57433 3339723764 12 ffffffffc8470c0000000000 .....G...... +2720 7.892240524 127.0.0.1:57415 127.0.0.1:57433 3339723776 12 1a000000bb890c0000000000 ............ +2722 7.892469406 127.0.0.1:57415 127.0.0.1:57433 3339723788 26 16000000548f6340e25e3140010003000000c3a6210000000000 ....T.c@.^1@........!..... +2724 7.892841339 127.0.0.1:57433 127.0.0.1:57415 382175900 12 ffffffffbb890c0000000000 ............ +2726 7.893353701 127.0.0.1:57433 127.0.0.1:57415 382175912 12 16000000c9470c0000000000 .....G...... +2728 7.893582106 127.0.0.1:57433 127.0.0.1:57415 382175924 22 12000000c3a621000000000001000300000000000000 ......!............... +2730 7.893913031 127.0.0.1:57415 127.0.0.1:57433 3339723814 12 ffffffffc9470c0000000000 .....G...... +2732 7.900806665 127.0.0.1:57415 127.0.0.1:57433 3339723826 12 feffffff496c0100346c0100 ....Il..4l.. +2739 7.995334625 127.0.0.1:57415 127.0.0.1:57433 3339723838 12 1a000000bc890c0000000000 ............ +2741 7.995507956 127.0.0.1:57415 127.0.0.1:57433 3339723850 26 16000000548f6340e25e3140010003000000c5a6210000000000 ....T.c@.^1@........!..... +2743 7.995829344 127.0.0.1:57433 127.0.0.1:57415 382175946 12 ffffffffbc890c0000000000 ............ +2745 7.996330500 127.0.0.1:57433 127.0.0.1:57415 382175958 12 16000000ca470c0000000000 .....G...... +2747 7.996513128 127.0.0.1:57433 127.0.0.1:57415 382175970 22 12000000c5a621000000000001000300000000000000 ......!............... +2749 7.996923208 127.0.0.1:57415 127.0.0.1:57433 3339723876 12 ffffffffca470c0000000000 .....G...... +2758 8.099493504 127.0.0.1:57415 127.0.0.1:57433 3339723888 12 1a000000bd890c0000000000 ............ +2760 8.099710226 127.0.0.1:57415 127.0.0.1:57433 3339723900 26 16000000548f6340e25e3140010003000000c7a6210000000000 ....T.c@.^1@........!..... +2762 8.100124121 127.0.0.1:57433 127.0.0.1:57415 382175992 12 ffffffffbd890c0000000000 ............ +2764 8.100594997 127.0.0.1:57433 127.0.0.1:57415 382176004 12 16000000cb470c0000000000 .....G...... +2766 8.100775480 127.0.0.1:57433 127.0.0.1:57415 382176016 22 12000000c7a621000000000001000300000000000000 ......!............... +2768 8.101004839 127.0.0.1:57415 127.0.0.1:57433 3339723926 12 ffffffffcb470c0000000000 .....G...... +2772 8.129735708 127.0.0.1:57415 127.0.0.1:57433 3339723938 12 65000000be890c0000000000 e........... +2774 8.129924059 127.0.0.1:57415 127.0.0.1:57433 3339723950 101 1e0000001c2118d0c46f33bb0100030000006455020000000000a66674c39d01 .....!...o3.......dU.......ft.....?.....3...|8.. +2776 8.130381107 127.0.0.1:57433 127.0.0.1:57415 382176038 12 ffffffffbe890c0000000000 ............ +2778 8.131377697 127.0.0.1:57433 127.0.0.1:57415 382176050 12 34000000cc470c0000000000 4....G...... +2780 8.131535530 127.0.0.1:57433 127.0.0.1:57415 382176062 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....dU.........L}. +2782 8.131910563 127.0.0.1:57415 127.0.0.1:57433 3339724051 12 ffffffffcc470c0000000000 .....G...... +2784 8.132648945 127.0.0.1:57415 127.0.0.1:57433 3339724063 12 1e000000bf890c0000000000 ............ +2786 8.132848263 127.0.0.1:57415 127.0.0.1:57433 3339724075 30 1a00000055ceff62b21b3a50010003000000c9a621000000000000000000 ....U..b..:P........!......... +2788 8.133053064 127.0.0.1:57433 127.0.0.1:57415 382176114 12 ffffffffbf890c0000000000 ............ +2790 8.133481026 127.0.0.1:57433 127.0.0.1:57415 382176126 12 1a000000cd470c0000000000 .....G...... +2792 8.133611917 127.0.0.1:57433 127.0.0.1:57415 382176138 26 16000000c9a62100000000000100030000000000000000000000 ......!................... +2794 8.133890152 127.0.0.1:57415 127.0.0.1:57433 3339724105 12 ffffffffcd470c0000000000 .....G...... +2797 8.202405214 127.0.0.1:57415 127.0.0.1:57433 3339724117 12 1a000000c0890c0000000000 ............ +2799 8.202594042 127.0.0.1:57415 127.0.0.1:57433 3339724129 26 16000000548f6340e25e3140010003000000cba6210000000000 ....T.c@.^1@........!..... +2801 8.203039885 127.0.0.1:57433 127.0.0.1:57415 382176164 12 ffffffffc0890c0000000000 ............ +2803 8.203615427 127.0.0.1:57433 127.0.0.1:57415 382176176 12 16000000ce470c0000000000 .....G...... +2805 8.203825712 127.0.0.1:57433 127.0.0.1:57415 382176188 22 12000000cba621000000000001000300000000000000 ......!............... +2807 8.204106808 127.0.0.1:57415 127.0.0.1:57433 3339724155 12 ffffffffce470c0000000000 .....G...... +2811 8.217231035 127.0.0.1:57433 127.0.0.1:57415 382176210 12 feffffff356c0100496c0100 ....5l..Il.. +2818 8.305562019 127.0.0.1:57415 127.0.0.1:57433 3339724167 12 1a000000c1890c0000000000 ............ +2820 8.305748463 127.0.0.1:57415 127.0.0.1:57433 3339724179 26 16000000548f6340e25e3140010003000000cda6210000000000 ....T.c@.^1@........!..... +2822 8.306152582 127.0.0.1:57433 127.0.0.1:57415 382176222 12 ffffffffc1890c0000000000 ............ +2824 8.306794405 127.0.0.1:57433 127.0.0.1:57415 382176234 12 16000000cf470c0000000000 .....G...... +2826 8.307004213 127.0.0.1:57433 127.0.0.1:57415 382176246 22 12000000cda621000000000001000300000000000000 ......!............... +2828 8.307703495 127.0.0.1:57415 127.0.0.1:57433 3339724205 12 ffffffffcf470c0000000000 .....G...... +2835 8.402070761 127.0.0.1:57415 127.0.0.1:57433 3339724217 12 feffffff4a6c0100356c0100 ....Jl..5l.. +2839 8.409605026 127.0.0.1:57415 127.0.0.1:57433 3339724229 12 1a000000c2890c0000000000 ............ +2841 8.409954309 127.0.0.1:57415 127.0.0.1:57433 3339724241 26 16000000548f6340e25e3140010003000000cfa6210000000000 ....T.c@.^1@........!..... +2843 8.410640001 127.0.0.1:57433 127.0.0.1:57415 382176268 12 ffffffffc2890c0000000000 ............ +2845 8.411545515 127.0.0.1:57433 127.0.0.1:57415 382176280 12 16000000d0470c0000000000 .....G...... +2847 8.412112713 127.0.0.1:57433 127.0.0.1:57415 382176292 22 12000000cfa621000000000001000300000000000000 ......!............... +2849 8.412569761 127.0.0.1:57415 127.0.0.1:57433 3339724267 12 ffffffffd0470c0000000000 .....G...... +2852 8.435190439 127.0.0.1:57415 127.0.0.1:57433 3339724279 12 65000000c3890c0000000000 e........... +2854 8.435490847 127.0.0.1:57415 127.0.0.1:57433 3339724291 101 1e0000001c2118d0c46f33bb0100030000006555020000000000d76774c39d01 .....!...o3.......eU.......gt.....?.....3...|8.. +2856 8.436115503 127.0.0.1:57433 127.0.0.1:57415 382176314 12 ffffffffc3890c0000000000 ............ +2858 8.437838316 127.0.0.1:57433 127.0.0.1:57415 382176326 12 34000000d1470c0000000000 4....G...... +2860 8.438183069 127.0.0.1:57433 127.0.0.1:57415 382176338 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....eU............ +2862 8.438401222 127.0.0.1:57415 127.0.0.1:57433 3339724392 12 ffffffffd1470c0000000000 .....G...... +2864 8.439653873 127.0.0.1:57415 127.0.0.1:57433 3339724404 12 1e000000c4890c0000000000 ............ +2866 8.440011501 127.0.0.1:57415 127.0.0.1:57433 3339724416 30 1a00000055ceff62b21b3a50010003000000d1a621000000000000000000 ....U..b..:P........!......... +2868 8.440584660 127.0.0.1:57433 127.0.0.1:57415 382176390 12 ffffffffc4890c0000000000 ............ +2870 8.441660404 127.0.0.1:57433 127.0.0.1:57415 382176402 12 1a000000d2470c0000000000 .....G...... +2872 8.441892624 127.0.0.1:57433 127.0.0.1:57415 382176414 26 16000000d1a62100000000000100030000000000000000000000 ......!................... +2874 8.442173481 127.0.0.1:57415 127.0.0.1:57433 3339724446 12 ffffffffd2470c0000000000 .....G...... +2882 8.514765024 127.0.0.1:57415 127.0.0.1:57433 3339724458 12 1a000000c5890c0000000000 ............ +2884 8.515074730 127.0.0.1:57415 127.0.0.1:57433 3339724470 26 16000000548f6340e25e3140010003000000d3a6210000000000 ....T.c@.^1@........!..... +2886 8.515824556 127.0.0.1:57433 127.0.0.1:57415 382176440 12 ffffffffc5890c0000000000 ............ +2888 8.517025471 127.0.0.1:57433 127.0.0.1:57415 382176452 12 16000000d3470c0000000000 .....G...... +2890 8.517402172 127.0.0.1:57433 127.0.0.1:57415 382176464 22 12000000d3a621000000000001000300000000000000 ......!............... +2892 8.517816782 127.0.0.1:57415 127.0.0.1:57433 3339724496 12 ffffffffd3470c0000000000 .....G...... +2899 8.619588137 127.0.0.1:57415 127.0.0.1:57433 3339724508 12 1a000000c6890c0000000000 ............ +2901 8.619863033 127.0.0.1:57415 127.0.0.1:57433 3339724520 26 16000000548f6340e25e3140010003000000d5a6210000000000 ....T.c@.^1@........!..... +2903 8.620349169 127.0.0.1:57433 127.0.0.1:57415 382176486 12 ffffffffc6890c0000000000 ............ +2905 8.620837927 127.0.0.1:57433 127.0.0.1:57415 382176498 12 16000000d4470c0000000000 .....G...... +2907 8.620983839 127.0.0.1:57433 127.0.0.1:57415 382176510 22 12000000d5a621000000000001000300000000000000 ......!............... +2909 8.621227026 127.0.0.1:57415 127.0.0.1:57433 3339724546 12 ffffffffd4470c0000000000 .....G...... +2922 8.717567921 127.0.0.1:57433 127.0.0.1:57415 382176532 12 feffffff366c01004a6c0100 ....6l..Jl.. +2924 8.722385645 127.0.0.1:57415 127.0.0.1:57433 3339724558 12 1a000000c7890c0000000000 ............ +2926 8.722613811 127.0.0.1:57415 127.0.0.1:57433 3339724570 26 16000000548f6340e25e3140010003000000d7a6210000000000 ....T.c@.^1@........!..... +2928 8.723099947 127.0.0.1:57433 127.0.0.1:57415 382176544 12 ffffffffc7890c0000000000 ............ +2930 8.723478556 127.0.0.1:57433 127.0.0.1:57415 382176556 12 16000000d5470c0000000000 .....G...... +2932 8.723726749 127.0.0.1:57433 127.0.0.1:57415 382176568 22 12000000d7a621000000000001000300000000000000 ......!............... +2934 8.723997355 127.0.0.1:57415 127.0.0.1:57433 3339724596 12 ffffffffd5470c0000000000 .....G...... +2940 8.740530729 127.0.0.1:57415 127.0.0.1:57433 3339724608 12 65000000c8890c0000000000 e........... +2942 8.740792990 127.0.0.1:57415 127.0.0.1:57433 3339724620 101 1e0000001c2118d0c46f33bb0100030000006655020000000000096974c39d01 .....!...o3.......fU.......it.....?.....3...|8.. +2944 8.741206646 127.0.0.1:57433 127.0.0.1:57415 382176590 12 ffffffffc8890c0000000000 ............ +2947 8.742955446 127.0.0.1:57433 127.0.0.1:57415 382176602 12 34000000d6470c0000000000 4....G...... +2949 8.743365288 127.0.0.1:57433 127.0.0.1:57415 382176614 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....fU........4... +2951 8.743677855 127.0.0.1:57415 127.0.0.1:57433 3339724721 12 ffffffffd6470c0000000000 .....G...... +2953 8.744679689 127.0.0.1:57415 127.0.0.1:57433 3339724733 12 1e000000c9890c0000000000 ............ +2955 8.744842291 127.0.0.1:57415 127.0.0.1:57433 3339724745 30 1a00000055ceff62b21b3a50010003000000d9a621000000000000000000 ....U..b..:P........!......... +2957 8.745233536 127.0.0.1:57433 127.0.0.1:57415 382176666 12 ffffffffc9890c0000000000 ............ +2959 8.745868206 127.0.0.1:57433 127.0.0.1:57415 382176678 12 1a000000d7470c0000000000 .....G...... +2961 8.746108532 127.0.0.1:57433 127.0.0.1:57415 382176690 26 16000000d9a62100000000000100030000000000000000000000 ......!................... +2963 8.746416330 127.0.0.1:57415 127.0.0.1:57433 3339724775 12 ffffffffd7470c0000000000 .....G...... +2965 8.826044798 127.0.0.1:57415 127.0.0.1:57433 3339724787 12 1a000000ca890c0000000000 ............ +2967 8.826306105 127.0.0.1:57415 127.0.0.1:57433 3339724799 26 16000000548f6340e25e3140010003000000dba6210000000000 ....T.c@.^1@........!..... +2969 8.826849222 127.0.0.1:57433 127.0.0.1:57415 382176716 12 ffffffffca890c0000000000 ............ +2971 8.827471733 127.0.0.1:57433 127.0.0.1:57415 382176728 12 16000000d8470c0000000000 .....G...... +2973 8.827764750 127.0.0.1:57433 127.0.0.1:57415 382176740 22 12000000dba621000000000001000300000000000000 ......!............... +2975 8.828139544 127.0.0.1:57415 127.0.0.1:57433 3339724825 12 ffffffffd8470c0000000000 .....G...... +2989 8.903038025 127.0.0.1:57415 127.0.0.1:57433 3339724837 12 feffffff4b6c0100366c0100 ....Kl..6l.. +2997 8.929299831 127.0.0.1:57415 127.0.0.1:57433 3339724849 12 1a000000cb890c0000000000 ............ +2999 8.929502010 127.0.0.1:57415 127.0.0.1:57433 3339724861 26 16000000548f6340e25e3140010003000000dda6210000000000 ....T.c@.^1@........!..... +3001 8.930011034 127.0.0.1:57433 127.0.0.1:57415 382176762 12 ffffffffcb890c0000000000 ............ +3003 8.930815458 127.0.0.1:57433 127.0.0.1:57415 382176774 12 16000000d9470c0000000000 .....G...... +3005 8.931070089 127.0.0.1:57433 127.0.0.1:57415 382176786 22 12000000dda621000000000001000300000000000000 ......!............... +3007 8.931337833 127.0.0.1:57415 127.0.0.1:57433 3339724887 12 ffffffffd9470c0000000000 .....G...... +3016 9.032965183 127.0.0.1:57415 127.0.0.1:57433 3339724899 12 1a000000cc890c0000000000 ............ +3018 9.033180475 127.0.0.1:57415 127.0.0.1:57433 3339724911 26 16000000548f6340e25e3140010003000000dfa6210000000000 ....T.c@.^1@........!..... +3020 9.033844471 127.0.0.1:57433 127.0.0.1:57415 382176808 12 ffffffffcc890c0000000000 ............ +3022 9.034348726 127.0.0.1:57433 127.0.0.1:57415 382176820 12 16000000da470c0000000000 .....G...... +3024 9.034495115 127.0.0.1:57433 127.0.0.1:57415 382176832 22 12000000dfa621000000000001000300000000000000 ......!............... +3026 9.034727335 127.0.0.1:57415 127.0.0.1:57433 3339724937 12 ffffffffda470c0000000000 .....G...... +3028 9.046392918 127.0.0.1:57415 127.0.0.1:57433 3339724949 12 65000000cd890c0000000000 e........... +3030 9.046607018 127.0.0.1:57415 127.0.0.1:57433 3339724961 101 1e0000001c2118d0c46f33bb01000300000067550200000000003a6a74c39d01 .....!...o3.......gU......:jt.....?.....3...|8.. +3032 9.047007561 127.0.0.1:57433 127.0.0.1:57415 382176854 12 ffffffffcd890c0000000000 ............ +3034 9.048065186 127.0.0.1:57433 127.0.0.1:57415 382176866 12 34000000db470c0000000000 4....G...... +3036 9.048403263 127.0.0.1:57433 127.0.0.1:57415 382176878 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....gU.........-.. +3038 9.048856735 127.0.0.1:57415 127.0.0.1:57433 3339725062 12 ffffffffdb470c0000000000 .....G...... +3040 9.049829483 127.0.0.1:57415 127.0.0.1:57433 3339725074 12 1e000000ce890c0000000000 ............ +3042 9.050022125 127.0.0.1:57415 127.0.0.1:57433 3339725086 30 1a00000055ceff62b21b3a50010003000000e1a621000000000000000000 ....U..b..:P........!......... +3044 9.050515413 127.0.0.1:57433 127.0.0.1:57415 382176930 12 ffffffffce890c0000000000 ............ +3046 9.050889969 127.0.0.1:57433 127.0.0.1:57415 382176942 12 1a000000dc470c0000000000 .....G...... +3048 9.051060200 127.0.0.1:57433 127.0.0.1:57415 382176954 26 16000000e1a62100000000000100030000000000000000000000 ......!................... +3050 9.051507950 127.0.0.1:57415 127.0.0.1:57433 3339725116 12 ffffffffdc470c0000000000 .....G...... +3055 9.136630774 127.0.0.1:57415 127.0.0.1:57433 3339725128 12 1a000000cf890c0000000000 ............ +3057 9.136848927 127.0.0.1:57415 127.0.0.1:57433 3339725140 26 16000000548f6340e25e3140010003000000e3a6210000000000 ....T.c@.^1@........!..... +3059 9.137201071 127.0.0.1:57433 127.0.0.1:57415 382176980 12 ffffffffcf890c0000000000 ............ +3061 9.137858868 127.0.0.1:57433 127.0.0.1:57415 382176992 12 16000000dd470c0000000000 .....G...... +3063 9.138065338 127.0.0.1:57433 127.0.0.1:57415 382177004 22 12000000e3a621000000000001000300000000000000 ......!............... +3065 9.138324738 127.0.0.1:57415 127.0.0.1:57433 3339725166 12 ffffffffdd470c0000000000 .....G...... +3083 9.219130039 127.0.0.1:57433 127.0.0.1:57415 382177026 12 feffffff376c01004b6c0100 ....7l..Kl.. +3089 9.240482807 127.0.0.1:57415 127.0.0.1:57433 3339725178 12 1a000000d0890c0000000000 ............ +3091 9.240767479 127.0.0.1:57415 127.0.0.1:57433 3339725190 26 16000000548f6340e25e3140010003000000e5a6210000000000 ....T.c@.^1@........!..... +3093 9.241066933 127.0.0.1:57433 127.0.0.1:57415 382177038 12 ffffffffd0890c0000000000 ............ +3095 9.241856337 127.0.0.1:57433 127.0.0.1:57415 382177050 12 16000000de470c0000000000 .....G...... +3097 9.242006302 127.0.0.1:57433 127.0.0.1:57415 382177062 22 12000000e5a621000000000001000300000000000000 ......!............... +3099 9.242322206 127.0.0.1:57415 127.0.0.1:57433 3339725216 12 ffffffffde470c0000000000 .....G...... +3109 9.344601870 127.0.0.1:57415 127.0.0.1:57433 3339725228 12 1a000000d1890c0000000000 ............ +3111 9.344877958 127.0.0.1:57415 127.0.0.1:57433 3339725240 26 16000000548f6340e25e3140010003000000e7a6210000000000 ....T.c@.^1@........!..... +3113 9.345199585 127.0.0.1:57433 127.0.0.1:57415 382177084 12 ffffffffd1890c0000000000 ............ +3115 9.346067667 127.0.0.1:57433 127.0.0.1:57415 382177096 12 16000000df470c0000000000 .....G...... +3117 9.346277952 127.0.0.1:57433 127.0.0.1:57415 382177108 22 12000000e7a621000000000001000300000000000000 ......!............... +3119 9.346648216 127.0.0.1:57415 127.0.0.1:57433 3339725266 12 ffffffffdf470c0000000000 .....G...... +3121 9.353018522 127.0.0.1:57415 127.0.0.1:57433 3339725278 12 65000000d2890c0000000000 e........... +3123 9.353277206 127.0.0.1:57415 127.0.0.1:57433 3339725290 101 1e0000001c2118d0c46f33bb01000300000068550200000000006e6b74c39d01 .....!...o3.......hU......nkt.....?.....3...|8.. +3125 9.353847027 127.0.0.1:57433 127.0.0.1:57415 382177130 12 ffffffffd2890c0000000000 ............ +3127 9.354962111 127.0.0.1:57433 127.0.0.1:57415 382177142 12 34000000e0470c0000000000 4....G...... +3129 9.355098486 127.0.0.1:57433 127.0.0.1:57415 382177154 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....hU..........8. +3131 9.355326414 127.0.0.1:57415 127.0.0.1:57433 3339725391 12 ffffffffe0470c0000000000 .....G...... +3133 9.356453180 127.0.0.1:57415 127.0.0.1:57433 3339725403 12 1e000000d3890c0000000000 ............ +3135 9.356643200 127.0.0.1:57415 127.0.0.1:57433 3339725415 30 1a00000055ceff62b21b3a50010003000000e9a621000000000000000000 ....U..b..:P........!......... +3137 9.357115269 127.0.0.1:57433 127.0.0.1:57415 382177206 12 ffffffffd3890c0000000000 ............ +3139 9.357727528 127.0.0.1:57433 127.0.0.1:57415 382177218 12 1a000000e1470c0000000000 .....G...... +3141 9.357864618 127.0.0.1:57433 127.0.0.1:57415 382177230 26 16000000e9a62100000000000100030000000000000000000000 ......!................... +3143 9.358165026 127.0.0.1:57415 127.0.0.1:57433 3339725445 12 ffffffffe1470c0000000000 .....G...... +3145 9.404128790 127.0.0.1:57415 127.0.0.1:57433 3339725457 12 feffffff4c6c0100376c0100 ....Ll..7l.. +3149 9.448231220 127.0.0.1:57415 127.0.0.1:57433 3339725469 12 1a000000d4890c0000000000 ............ +3151 9.448462009 127.0.0.1:57415 127.0.0.1:57433 3339725481 26 16000000548f6340e25e3140010003000000eba6210000000000 ....T.c@.^1@........!..... +3153 9.448835850 127.0.0.1:57433 127.0.0.1:57415 382177256 12 ffffffffd4890c0000000000 ............ +3155 9.449943781 127.0.0.1:57433 127.0.0.1:57415 382177268 12 16000000e2470c0000000000 .....G...... +3157 9.450228453 127.0.0.1:57433 127.0.0.1:57415 382177280 22 12000000eba621000000000001000300000000000000 ......!............... +3159 9.450617552 127.0.0.1:57415 127.0.0.1:57433 3339725507 12 ffffffffe2470c0000000000 .....G...... +3171 9.553122282 127.0.0.1:57415 127.0.0.1:57433 3339725519 12 1a000000d5890c0000000000 ............ +3173 9.553389549 127.0.0.1:57415 127.0.0.1:57433 3339725531 26 16000000548f6340e25e3140010003000000eda6210000000000 ....T.c@.^1@........!..... +3175 9.553649426 127.0.0.1:57433 127.0.0.1:57415 382177302 12 ffffffffd5890c0000000000 ............ +3177 9.554471016 127.0.0.1:57433 127.0.0.1:57415 382177314 12 16000000e3470c0000000000 .....G...... +3179 9.554694414 127.0.0.1:57433 127.0.0.1:57415 382177326 22 12000000eda621000000000001000300000000000000 ......!............... +3181 9.555015802 127.0.0.1:57415 127.0.0.1:57433 3339725557 12 ffffffffe3470c0000000000 .....G...... +3185 9.656845570 127.0.0.1:57415 127.0.0.1:57433 3339725569 12 1a000000d6890c0000000000 ............ +3187 9.657092333 127.0.0.1:57415 127.0.0.1:57433 3339725581 26 16000000548f6340e25e3140010003000000efa6210000000000 ....T.c@.^1@........!..... +3189 9.657441616 127.0.0.1:57433 127.0.0.1:57415 382177348 12 ffffffffd6890c0000000000 ............ +3191 9.658014297 127.0.0.1:57415 127.0.0.1:57433 3339725607 12 65000000d7890c0000000000 e........... +3193 9.658184767 127.0.0.1:57415 127.0.0.1:57433 3339725619 101 1e0000001c2118d0c46f33bb01000300000069550200000000009e6c74c39d01 .....!...o3.......iU.......lt.....?.....3...|8.. +3194 9.658283472 127.0.0.1:57433 127.0.0.1:57415 382177360 34 16000000e4470c000000000012000000efa62100000000000100030000000000 .....G............!............... +3196 9.658561945 127.0.0.1:57433 127.0.0.1:57415 382177394 12 ffffffffd7890c0000000000 ............ +3198 9.658697605 127.0.0.1:57415 127.0.0.1:57433 3339725720 12 ffffffffe4470c0000000000 .....G...... +3200 9.659797907 127.0.0.1:57433 127.0.0.1:57415 382177406 12 34000000e5470c0000000000 4....G...... +3202 9.660084724 127.0.0.1:57433 127.0.0.1:57415 382177418 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....iU........`.f. +3204 9.660474777 127.0.0.1:57415 127.0.0.1:57433 3339725732 12 ffffffffe5470c0000000000 .....G...... +3206 9.662070036 127.0.0.1:57415 127.0.0.1:57433 3339725744 12 1e000000d8890c0000000000 ............ +3208 9.662258863 127.0.0.1:57415 127.0.0.1:57433 3339725756 30 1a00000055ceff62b21b3a50010003000000f1a621000000000000000000 ....U..b..:P........!......... +3210 9.662693024 127.0.0.1:57433 127.0.0.1:57415 382177470 12 ffffffffd8890c0000000000 ............ +3212 9.663401127 127.0.0.1:57433 127.0.0.1:57415 382177482 12 1a000000e6470c0000000000 .....G...... +3214 9.663607597 127.0.0.1:57433 127.0.0.1:57415 382177494 26 16000000f1a62100000000000100030000000000000000000000 ......!................... +3216 9.663918018 127.0.0.1:57415 127.0.0.1:57433 3339725786 12 ffffffffe6470c0000000000 .....G...... +3220 9.719774246 127.0.0.1:57433 127.0.0.1:57415 382177520 12 feffffff386c01004c6c0100 ....8l..Ll.. +3226 9.760439634 127.0.0.1:57415 127.0.0.1:57433 3339725798 12 1a000000d9890c0000000000 ............ +3228 9.760690451 127.0.0.1:57415 127.0.0.1:57433 3339725810 26 16000000548f6340e25e3140010003000000f3a6210000000000 ....T.c@.^1@........!..... +3230 9.761039257 127.0.0.1:57433 127.0.0.1:57415 382177532 12 ffffffffd9890c0000000000 ............ +3232 9.761654615 127.0.0.1:57433 127.0.0.1:57415 382177544 12 16000000e7470c0000000000 .....G...... +3234 9.761907816 127.0.0.1:57433 127.0.0.1:57415 382177556 22 12000000f3a621000000000001000300000000000000 ......!............... +3236 9.762300014 127.0.0.1:57415 127.0.0.1:57433 3339725836 12 ffffffffe7470c0000000000 .....G...... +3242 9.864174366 127.0.0.1:57415 127.0.0.1:57433 3339725848 12 1a000000da890c0000000000 ............ +3244 9.864448071 127.0.0.1:57415 127.0.0.1:57433 3339725860 26 16000000548f6340e25e3140010003000000f5a6210000000000 ....T.c@.^1@........!..... +3246 9.864835739 127.0.0.1:57433 127.0.0.1:57415 382177578 12 ffffffffda890c0000000000 ............ +3248 9.865490437 127.0.0.1:57433 127.0.0.1:57415 382177590 12 16000000e8470c0000000000 .....G...... +3250 9.865652084 127.0.0.1:57433 127.0.0.1:57415 382177602 22 12000000f5a621000000000001000300000000000000 ......!............... +3252 9.865911484 127.0.0.1:57415 127.0.0.1:57433 3339725886 12 ffffffffe8470c0000000000 .....G...... +3254 9.906210899 127.0.0.1:57415 127.0.0.1:57433 3339725898 12 feffffff4d6c0100386c0100 ....Ml..8l.. +3258 9.964505196 127.0.0.1:57415 127.0.0.1:57433 3339725910 12 22000000db890c0000000000 "........... +3260 9.964795589 127.0.0.1:57415 127.0.0.1:57433 3339725922 34 1e0000001c2118d0c46f33bb0100030000006a55020000000000d06d74c39d01 .....!...o3.......jU.......mt..... +3262 9.964930296 127.0.0.1:57415 127.0.0.1:57433 3339725956 12 43000000dc890c0000000000 C........... +3264 9.965012312 127.0.0.1:57415 127.0.0.1:57433 3339725968 67 3f000000980433cb0cb47c3801000300000001000000006a550200000000003d ?.....3...|8...........jU......=B.....&......... +3266 9.965295315 127.0.0.1:57433 127.0.0.1:57415 382177624 12 ffffffffdb890c0000000000 ............ +3268 9.965523720 127.0.0.1:57433 127.0.0.1:57415 382177636 12 ffffffffdc890c0000000000 ............ +3270 9.967303276 127.0.0.1:57433 127.0.0.1:57415 382177648 12 34000000e9470c0000000000 4....G...... +3272 9.967541933 127.0.0.1:57433 127.0.0.1:57415 382177660 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....jU........Al.. +3274 9.967864037 127.0.0.1:57415 127.0.0.1:57433 3339726035 12 ffffffffe9470c0000000000 .....G...... +3276 9.968650103 127.0.0.1:57415 127.0.0.1:57433 3339726047 12 1a000000dd890c0000000000 ............ +3278 9.968856096 127.0.0.1:57415 127.0.0.1:57433 3339726059 26 16000000548f6340e25e3140010003000000f7a6210000000000 ....T.c@.^1@........!..... +3280 9.969310522 127.0.0.1:57433 127.0.0.1:57415 382177712 12 ffffffffdd890c0000000000 ............ +3282 9.969563246 127.0.0.1:57415 127.0.0.1:57433 3339726085 12 1e000000de890c0000000000 ............ +3284 9.969751358 127.0.0.1:57415 127.0.0.1:57433 3339726097 30 1a00000055ceff62b21b3a50010003000000f9a621000000000000000000 ....U..b..:P........!......... +3287 9.970002651 127.0.0.1:57433 127.0.0.1:57415 382177724 12 16000000ea470c0000000000 .....G...... +3290 9.970198154 127.0.0.1:57433 127.0.0.1:57415 382177736 22 12000000f7a621000000000001000300000000000000 ......!............... +3292 9.970648766 127.0.0.1:57433 127.0.0.1:57415 382177758 12 1a000000eb470c0000000000 .....G...... +3294 9.970777988 127.0.0.1:57433 127.0.0.1:57415 382177770 26 16000000f9a62100000000000100030000000000000000000000 ......!................... +3295 9.970784187 127.0.0.1:57415 127.0.0.1:57433 3339726127 12 ffffffffea470c0000000000 .....G...... +3298 9.971109867 127.0.0.1:57415 127.0.0.1:57433 3339726139 12 ffffffffeb470c0000000000 .....G...... +3300 9.971424818 127.0.0.1:57433 127.0.0.1:57415 382177796 12 ffffffffde890c0000000000 ............ +3307 10.072957039 127.0.0.1:57415 127.0.0.1:57433 3339726151 12 1a000000df890c0000000000 ............ +3309 10.073246956 127.0.0.1:57415 127.0.0.1:57433 3339726163 26 16000000548f6340e25e3140010003000000fba6210000000000 ....T.c@.^1@........!..... +3311 10.074127913 127.0.0.1:57433 127.0.0.1:57415 382177808 12 ffffffffdf890c0000000000 ............ +3313 10.074407578 127.0.0.1:57433 127.0.0.1:57415 382177820 12 16000000ec470c0000000000 .....G...... +3315 10.074558973 127.0.0.1:57433 127.0.0.1:57415 382177832 22 12000000fba621000000000001000300000000000000 ......!............... +3317 10.074890375 127.0.0.1:57415 127.0.0.1:57433 3339726189 12 ffffffffec470c0000000000 .....G...... +3322 10.178599119 127.0.0.1:57415 127.0.0.1:57433 3339726201 12 1a000000e0890c0000000000 ............ +3324 10.178857327 127.0.0.1:57415 127.0.0.1:57433 3339726213 26 16000000548f6340e25e3140010003000000fda6210000000000 ....T.c@.^1@........!..... +3326 10.179143190 127.0.0.1:57433 127.0.0.1:57415 382177854 12 ffffffffe0890c0000000000 ............ +3328 10.179754734 127.0.0.1:57433 127.0.0.1:57415 382177866 12 16000000ed470c0000000000 .....G...... +3330 10.180025339 127.0.0.1:57433 127.0.0.1:57415 382177878 22 12000000fda621000000000001000300000000000000 ......!............... +3332 10.180392027 127.0.0.1:57415 127.0.0.1:57433 3339726239 12 ffffffffed470c0000000000 .....G...... +3337 10.219270706 127.0.0.1:57433 127.0.0.1:57415 382177900 12 feffffff396c01004d6c0100 ....9l..Ml.. +3343 10.270939589 127.0.0.1:57415 127.0.0.1:57433 3339726251 12 65000000e1890c0000000000 e........... +3345 10.271186829 127.0.0.1:57415 127.0.0.1:57433 3339726263 101 1e0000001c2118d0c46f33bb0100030000006b55020000000000036f74c39d01 .....!...o3.......kU.......ot.....?.....3...|8.. +3347 10.271541357 127.0.0.1:57433 127.0.0.1:57415 382177912 12 ffffffffe1890c0000000000 ............ +3349 10.273075104 127.0.0.1:57433 127.0.0.1:57415 382177924 12 34000000ee470c0000000000 4....G...... +3351 10.273254633 127.0.0.1:57433 127.0.0.1:57415 382177936 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....kU............ +3353 10.273563862 127.0.0.1:57415 127.0.0.1:57433 3339726364 12 ffffffffee470c0000000000 .....G...... +3355 10.274817228 127.0.0.1:57415 127.0.0.1:57433 3339726376 12 1e000000e2890c0000000000 ............ +3357 10.275067806 127.0.0.1:57415 127.0.0.1:57433 3339726388 30 1a00000055ceff62b21b3a50010003000000ffa621000000000000000000 ....U..b..:P........!......... +3359 10.275655508 127.0.0.1:57433 127.0.0.1:57415 382177988 12 ffffffffe2890c0000000000 ............ +3361 10.276842594 127.0.0.1:57433 127.0.0.1:57415 382178000 12 1a000000ef470c0000000000 .....G...... +3363 10.277040958 127.0.0.1:57433 127.0.0.1:57415 382178012 26 16000000ffa62100000000000100030000000000000000000000 ......!................... +3365 10.277412415 127.0.0.1:57415 127.0.0.1:57433 3339726418 12 ffffffffef470c0000000000 .....G...... +3367 10.282688618 127.0.0.1:57415 127.0.0.1:57433 3339726430 12 1a000000e3890c0000000000 ............ +3369 10.282984972 127.0.0.1:57415 127.0.0.1:57433 3339726442 26 16000000548f6340e25e314001000300000001a7210000000000 ....T.c@.^1@........!..... +3371 10.283275127 127.0.0.1:57433 127.0.0.1:57415 382178038 12 ffffffffe3890c0000000000 ............ +3373 10.283945322 127.0.0.1:57433 127.0.0.1:57415 382178050 12 16000000f0470c0000000000 .....G...... +3375 10.284098625 127.0.0.1:57433 127.0.0.1:57415 382178062 22 1200000001a721000000000001000300000000000000 ......!............... +3377 10.284410715 127.0.0.1:57415 127.0.0.1:57433 3339726468 12 fffffffff0470c0000000000 .....G...... +3384 10.387632608 127.0.0.1:57415 127.0.0.1:57433 3339726480 12 1a000000e4890c0000000000 ............ +3386 10.387956142 127.0.0.1:57415 127.0.0.1:57433 3339726492 26 16000000548f6340e25e314001000300000003a7210000000000 ....T.c@.^1@........!..... +3388 10.388402939 127.0.0.1:57433 127.0.0.1:57415 382178084 12 ffffffffe4890c0000000000 ............ +3390 10.388916731 127.0.0.1:57433 127.0.0.1:57415 382178096 12 16000000f1470c0000000000 .....G...... +3392 10.389102936 127.0.0.1:57433 127.0.0.1:57415 382178108 22 1200000003a721000000000001000300000000000000 ......!............... +3394 10.389514685 127.0.0.1:57415 127.0.0.1:57433 3339726518 12 fffffffff1470c0000000000 .....G...... +3396 10.407246113 127.0.0.1:57415 127.0.0.1:57433 3339726530 12 feffffff4e6c0100396c0100 ....Nl..9l.. +3407 10.491637707 127.0.0.1:57415 127.0.0.1:57433 3339726542 12 1a000000e5890c0000000000 ............ +3409 10.491819859 127.0.0.1:57415 127.0.0.1:57433 3339726554 26 16000000548f6340e25e314001000300000005a7210000000000 ....T.c@.^1@........!..... +3411 10.492171526 127.0.0.1:57433 127.0.0.1:57415 382178130 12 ffffffffe5890c0000000000 ............ +3413 10.492797613 127.0.0.1:57433 127.0.0.1:57415 382178142 12 16000000f2470c0000000000 .....G...... +3415 10.492993355 127.0.0.1:57433 127.0.0.1:57415 382178154 22 1200000005a721000000000001000300000000000000 ......!............... +3417 10.493741035 127.0.0.1:57415 127.0.0.1:57433 3339726580 12 fffffffff2470c0000000000 .....G...... +3424 10.576638222 127.0.0.1:57415 127.0.0.1:57433 3339726592 12 22000000e6890c0000000000 "........... +3426 10.576911449 127.0.0.1:57415 127.0.0.1:57433 3339726604 34 1e0000001c2118d0c46f33bb0100030000006c55020000000000357074c39d01 .....!...o3.......lU......5pt..... +3428 10.577044010 127.0.0.1:57415 127.0.0.1:57433 3339726638 12 43000000e7890c0000000000 C........... +3430 10.577156544 127.0.0.1:57415 127.0.0.1:57433 3339726650 67 3f000000980433cb0cb47c3801000300000001000000006c550200000000003d ?.....3...|8...........lU......=B.....&......... +3432 10.577529430 127.0.0.1:57433 127.0.0.1:57415 382178176 12 ffffffffe6890c0000000000 ............ +3434 10.577831507 127.0.0.1:57433 127.0.0.1:57415 382178188 12 ffffffffe7890c0000000000 ............ +3436 10.578721285 127.0.0.1:57433 127.0.0.1:57415 382178200 12 34000000f3470c0000000000 4....G...... +3438 10.578909397 127.0.0.1:57433 127.0.0.1:57415 382178212 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....lU........>... +3440 10.579154730 127.0.0.1:57415 127.0.0.1:57433 3339726717 12 fffffffff3470c0000000000 .....G...... +3442 10.580650568 127.0.0.1:57415 127.0.0.1:57433 3339726729 12 1e000000e8890c0000000000 ............ +3444 10.580822706 127.0.0.1:57415 127.0.0.1:57433 3339726741 30 1a00000055ceff62b21b3a5001000300000007a721000000000000000000 ....U..b..:P........!......... +3447 10.581196070 127.0.0.1:57433 127.0.0.1:57415 382178264 12 ffffffffe8890c0000000000 ............ +3450 10.581908464 127.0.0.1:57433 127.0.0.1:57415 382178276 12 1a000000f4470c0000000000 .....G...... +3452 10.582096100 127.0.0.1:57433 127.0.0.1:57415 382178288 26 1600000007a72100000000000100030000000000000000000000 ......!................... +3454 10.582328320 127.0.0.1:57415 127.0.0.1:57433 3339726771 12 fffffffff4470c0000000000 .....G...... +3456 10.595565319 127.0.0.1:57415 127.0.0.1:57433 3339726783 12 1a000000e9890c0000000000 ............ +3458 10.595909834 127.0.0.1:57415 127.0.0.1:57433 3339726795 26 16000000548f6340e25e314001000300000009a7210000000000 ....T.c@.^1@........!..... +3460 10.596615314 127.0.0.1:57433 127.0.0.1:57415 382178314 12 ffffffffe9890c0000000000 ............ +3462 10.596978903 127.0.0.1:57433 127.0.0.1:57415 382178326 12 16000000f5470c0000000000 .....G...... +3464 10.597213030 127.0.0.1:57433 127.0.0.1:57415 382178338 22 1200000009a721000000000001000300000000000000 ......!............... +3466 10.597619772 127.0.0.1:57415 127.0.0.1:57433 3339726821 12 fffffffff5470c0000000000 .....G...... +3472 10.699507236 127.0.0.1:57415 127.0.0.1:57433 3339726833 12 1a000000ea890c0000000000 ............ +3474 10.699815035 127.0.0.1:57415 127.0.0.1:57433 3339726845 26 16000000548f6340e25e31400100030000000ba7210000000000 ....T.c@.^1@........!..... +3476 10.700177908 127.0.0.1:57433 127.0.0.1:57415 382178360 12 ffffffffea890c0000000000 ............ +3478 10.701199055 127.0.0.1:57433 127.0.0.1:57415 382178372 12 16000000f6470c0000000000 .....G...... +3480 10.701385975 127.0.0.1:57433 127.0.0.1:57415 382178384 22 120000000ba721000000000001000300000000000000 ......!............... +3482 10.701779127 127.0.0.1:57415 127.0.0.1:57433 3339726871 12 fffffffff6470c0000000000 .....G...... +3486 10.721067667 127.0.0.1:57433 127.0.0.1:57415 382178406 12 feffffff3a6c01004e6c0100 ....:l..Nl.. +3492 10.805330992 127.0.0.1:57415 127.0.0.1:57433 3339726883 12 1a000000eb890c0000000000 ............ +3494 10.805518627 127.0.0.1:57415 127.0.0.1:57433 3339726895 26 16000000548f6340e25e31400100030000000da7210000000000 ....T.c@.^1@........!..... +3496 10.806288958 127.0.0.1:57433 127.0.0.1:57415 382178418 12 ffffffffeb890c0000000000 ............ +3498 10.806555271 127.0.0.1:57433 127.0.0.1:57415 382178430 12 16000000f7470c0000000000 .....G...... +3500 10.806747913 127.0.0.1:57433 127.0.0.1:57415 382178442 22 120000000da721000000000001000300000000000000 ......!............... +3502 10.806972504 127.0.0.1:57415 127.0.0.1:57433 3339726921 12 fffffffff7470c0000000000 .....G...... +3508 10.882279634 127.0.0.1:57415 127.0.0.1:57433 3339726933 12 22000000ec890c0000000000 "........... +3510 10.882470369 127.0.0.1:57415 127.0.0.1:57433 3339726945 34 1e0000001c2118d0c46f33bb0100030000006d55020000000000677174c39d01 .....!...o3.......mU......gqt..... +3512 10.882590294 127.0.0.1:57415 127.0.0.1:57433 3339726979 12 43000000ed890c0000000000 C........... +3514 10.882669687 127.0.0.1:57415 127.0.0.1:57433 3339726991 67 3f000000980433cb0cb47c3801000300000001000000006d550200000000003d ?.....3...|8...........mU......=B.....&......... +3516 10.882897139 127.0.0.1:57433 127.0.0.1:57415 382178464 12 ffffffffec890c0000000000 ............ +3518 10.883135080 127.0.0.1:57433 127.0.0.1:57415 382178476 12 ffffffffed890c0000000000 ............ +3520 10.886140823 127.0.0.1:57433 127.0.0.1:57415 382178488 12 34000000f8470c0000000000 4....G...... +3522 10.886377811 127.0.0.1:57433 127.0.0.1:57415 382178500 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....mU..........!. +3524 10.886670828 127.0.0.1:57415 127.0.0.1:57433 3339727058 12 fffffffff8470c0000000000 .....G...... +3526 10.888200998 127.0.0.1:57415 127.0.0.1:57433 3339727070 12 1e000000ee890c0000000000 ............ +3528 10.888407707 127.0.0.1:57415 127.0.0.1:57433 3339727082 30 1a00000055ceff62b21b3a500100030000000fa721000000000000000000 ....U..b..:P........!......... +3530 10.889025688 127.0.0.1:57433 127.0.0.1:57415 382178552 12 ffffffffee890c0000000000 ............ +3532 10.889496326 127.0.0.1:57433 127.0.0.1:57415 382178564 12 1a000000f9470c0000000000 .....G...... +3534 10.889732838 127.0.0.1:57433 127.0.0.1:57415 382178576 26 160000000fa72100000000000100030000000000000000000000 ......!................... +3536 10.890012264 127.0.0.1:57415 127.0.0.1:57433 3339727112 12 fffffffff9470c0000000000 .....G...... +3538 10.908154726 127.0.0.1:57415 127.0.0.1:57433 3339727124 12 feffffff4f6c01003a6c0100 ....Ol..:l.. +3540 10.910336733 127.0.0.1:57415 127.0.0.1:57433 3339727136 12 1a000000ef890c0000000000 ............ +3542 10.910567045 127.0.0.1:57415 127.0.0.1:57433 3339727148 26 16000000548f6340e25e314001000300000011a7210000000000 ....T.c@.^1@........!..... +3544 10.911007881 127.0.0.1:57433 127.0.0.1:57415 382178602 12 ffffffffef890c0000000000 ............ +3546 10.911650181 127.0.0.1:57433 127.0.0.1:57415 382178614 12 16000000fa470c0000000000 .....G...... +3548 10.911871910 127.0.0.1:57433 127.0.0.1:57415 382178626 22 1200000011a721000000000001000300000000000000 ......!............... +3550 10.912875652 127.0.0.1:57415 127.0.0.1:57433 3339727174 12 fffffffffa470c0000000000 .....G...... +3560 11.013939619 127.0.0.1:57415 127.0.0.1:57433 3339727186 12 1a000000f0890c0000000000 ............ +3562 11.014165878 127.0.0.1:57415 127.0.0.1:57433 3339727198 26 16000000548f6340e25e314001000300000013a7210000000000 ....T.c@.^1@........!..... +3564 11.014522552 127.0.0.1:57433 127.0.0.1:57415 382178648 12 fffffffff0890c0000000000 ............ +3566 11.015317678 127.0.0.1:57433 127.0.0.1:57415 382178660 12 16000000fb470c0000000000 .....G...... +3568 11.015516520 127.0.0.1:57433 127.0.0.1:57415 382178672 22 1200000013a721000000000001000300000000000000 ......!............... +3570 11.015898705 127.0.0.1:57415 127.0.0.1:57433 3339727224 12 fffffffffb470c0000000000 .....G...... +3574 11.118431568 127.0.0.1:57415 127.0.0.1:57433 3339727236 12 1a000000f1890c0000000000 ............ +3576 11.118729830 127.0.0.1:57415 127.0.0.1:57433 3339727248 26 16000000548f6340e25e314001000300000015a7210000000000 ....T.c@.^1@........!..... +3578 11.118994713 127.0.0.1:57433 127.0.0.1:57415 382178694 12 fffffffff1890c0000000000 ............ +3580 11.119543076 127.0.0.1:57433 127.0.0.1:57415 382178706 12 16000000fc470c0000000000 .....G...... +3582 11.119716167 127.0.0.1:57433 127.0.0.1:57415 382178718 22 1200000015a721000000000001000300000000000000 ......!............... +3584 11.120031118 127.0.0.1:57415 127.0.0.1:57433 3339727274 12 fffffffffc470c0000000000 .....G...... +3586 11.189785004 127.0.0.1:57415 127.0.0.1:57433 3339727286 12 65000000f2890c0000000000 e........... +3588 11.190003157 127.0.0.1:57415 127.0.0.1:57433 3339727298 101 1e0000001c2118d0c46f33bb0100030000006e550200000000009a7274c39d01 .....!...o3.......nU.......rt.....?.....3...|8.. +3590 11.190261841 127.0.0.1:57433 127.0.0.1:57415 382178740 12 fffffffff2890c0000000000 ............ +3592 11.192178726 127.0.0.1:57433 127.0.0.1:57415 382178752 12 34000000fd470c0000000000 4....G...... +3594 11.192433357 127.0.0.1:57433 127.0.0.1:57415 382178764 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....nU........fUP. +3596 11.192849874 127.0.0.1:57415 127.0.0.1:57433 3339727399 12 fffffffffd470c0000000000 .....G...... +3598 11.194177389 127.0.0.1:57415 127.0.0.1:57433 3339727411 12 1e000000f3890c0000000000 ............ +3600 11.194425344 127.0.0.1:57415 127.0.0.1:57433 3339727423 30 1a00000055ceff62b21b3a5001000300000017a721000000000000000000 ....U..b..:P........!......... +3602 11.194761038 127.0.0.1:57433 127.0.0.1:57415 382178816 12 fffffffff3890c0000000000 ............ +3604 11.195212603 127.0.0.1:57433 127.0.0.1:57415 382178828 12 1a000000fe470c0000000000 .....G...... +3606 11.195448875 127.0.0.1:57433 127.0.0.1:57415 382178840 26 1600000017a72100000000000100030000000000000000000000 ......!................... +3608 11.195689917 127.0.0.1:57415 127.0.0.1:57433 3339727453 12 fffffffffe470c0000000000 .....G...... +3612 11.221287489 127.0.0.1:57433 127.0.0.1:57415 382178866 12 feffffff3b6c01004f6c0100 ....;l..Ol.. +3614 11.223202705 127.0.0.1:57415 127.0.0.1:57433 3339727465 12 1a000000f4890c0000000000 ............ +3616 11.223383665 127.0.0.1:57415 127.0.0.1:57433 3339727477 26 16000000548f6340e25e314001000300000019a7210000000000 ....T.c@.^1@........!..... +3618 11.223711014 127.0.0.1:57433 127.0.0.1:57415 382178878 12 fffffffff4890c0000000000 ............ +3620 11.224364758 127.0.0.1:57433 127.0.0.1:57415 382178890 12 16000000ff470c0000000000 .....G...... +3622 11.224516392 127.0.0.1:57433 127.0.0.1:57415 382178902 22 1200000019a721000000000001000300000000000000 ......!............... +3624 11.224814415 127.0.0.1:57415 127.0.0.1:57433 3339727503 12 ffffffffff470c0000000000 .....G...... +3630 11.326515436 127.0.0.1:57415 127.0.0.1:57433 3339727515 12 1a000000f5890c0000000000 ............ +3632 11.326696873 127.0.0.1:57415 127.0.0.1:57433 3339727527 26 16000000548f6340e25e31400100030000001ba7210000000000 ....T.c@.^1@........!..... +3634 11.327128410 127.0.0.1:57433 127.0.0.1:57415 382178924 12 fffffffff5890c0000000000 ............ +3636 11.327673435 127.0.0.1:57433 127.0.0.1:57415 382178936 12 1600000000480c0000000000 .....H...... +3638 11.327822924 127.0.0.1:57433 127.0.0.1:57415 382178948 22 120000001ba721000000000001000300000000000000 ......!............... +3640 11.328069210 127.0.0.1:57415 127.0.0.1:57433 3339727553 12 ffffffff00480c0000000000 .....H...... +3646 11.410175323 127.0.0.1:57415 127.0.0.1:57433 3339727565 12 feffffff506c01003b6c0100 ....Pl..;l.. +3650 11.431210041 127.0.0.1:57415 127.0.0.1:57433 3339727577 12 1a000000f6890c0000000000 ............ +3652 11.431421518 127.0.0.1:57415 127.0.0.1:57433 3339727589 26 16000000548f6340e25e31400100030000001da7210000000000 ....T.c@.^1@........!..... +3654 11.431715012 127.0.0.1:57433 127.0.0.1:57415 382178970 12 fffffffff6890c0000000000 ............ +3656 11.432775259 127.0.0.1:57433 127.0.0.1:57415 382178982 12 1600000001480c0000000000 .....H...... +3658 11.433418512 127.0.0.1:57433 127.0.0.1:57415 382178994 22 120000001da721000000000001000300000000000000 ......!............... +3660 11.433874130 127.0.0.1:57415 127.0.0.1:57433 3339727615 12 ffffffff01480c0000000000 .....H...... +3664 11.495216608 127.0.0.1:57415 127.0.0.1:57433 3339727627 12 22000000f7890c0000000000 "........... +3666 11.495616913 127.0.0.1:57415 127.0.0.1:57433 3339727639 34 1e0000001c2118d0c46f33bb0100030000006f55020000000000cc7374c39d01 .....!...o3.......oU.......st..... +3668 11.495896339 127.0.0.1:57415 127.0.0.1:57433 3339727673 12 43000000f8890c0000000000 C........... +3670 11.496004820 127.0.0.1:57415 127.0.0.1:57433 3339727685 67 3f000000980433cb0cb47c3801000300000001000000006f550200000000003d ?.....3...|8...........oU......=B.....&......... +3672 11.496365309 127.0.0.1:57433 127.0.0.1:57415 382179016 12 fffffffff7890c0000000000 ............ +3674 11.496570110 127.0.0.1:57433 127.0.0.1:57415 382179028 12 fffffffff8890c0000000000 ............ +3676 11.497490644 127.0.0.1:57433 127.0.0.1:57415 382179040 12 3400000002480c0000000000 4....H...... +3678 11.497688055 127.0.0.1:57433 127.0.0.1:57415 382179052 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....oU........n.~. +3680 11.498226643 127.0.0.1:57415 127.0.0.1:57433 3339727752 12 ffffffff02480c0000000000 .....H...... +3682 11.499438286 127.0.0.1:57415 127.0.0.1:57433 3339727764 12 1e000000f9890c0000000000 ............ +3684 11.499596596 127.0.0.1:57415 127.0.0.1:57433 3339727776 30 1a00000055ceff62b21b3a500100030000001fa721000000000000000000 ....U..b..:P........!......... +3686 11.500447035 127.0.0.1:57433 127.0.0.1:57415 382179104 12 fffffffff9890c0000000000 ............ +3688 11.500900745 127.0.0.1:57433 127.0.0.1:57415 382179116 12 1a00000003480c0000000000 .....H...... +3690 11.501102686 127.0.0.1:57433 127.0.0.1:57415 382179128 26 160000001fa72100000000000100030000000000000000000000 ......!................... +3692 11.501399517 127.0.0.1:57415 127.0.0.1:57433 3339727806 12 ffffffff03480c0000000000 .....H...... +3698 11.535923243 127.0.0.1:57415 127.0.0.1:57433 3339727818 12 1a000000fa890c0000000000 ............ +3700 11.536608934 127.0.0.1:57415 127.0.0.1:57433 3339727830 26 16000000548f6340e25e314001000300000021a7210000000000 ....T.c@.^1@......!.!..... +3702 11.537438631 127.0.0.1:57433 127.0.0.1:57415 382179154 12 fffffffffa890c0000000000 ............ +3704 11.537980795 127.0.0.1:57433 127.0.0.1:57415 382179166 12 1600000004480c0000000000 .....H...... +3706 11.538165808 127.0.0.1:57433 127.0.0.1:57415 382179178 22 1200000021a721000000000001000300000000000000 ....!.!............... +3708 11.538464069 127.0.0.1:57415 127.0.0.1:57433 3339727856 12 ffffffff04480c0000000000 .....H...... +3712 11.641276360 127.0.0.1:57415 127.0.0.1:57433 3339727868 12 1a000000fb890c0000000000 ............ +3714 11.641526699 127.0.0.1:57415 127.0.0.1:57433 3339727880 26 16000000548f6340e25e314001000300000023a7210000000000 ....T.c@.^1@......#.!..... +3716 11.642013788 127.0.0.1:57433 127.0.0.1:57415 382179200 12 fffffffffb890c0000000000 ............ +3718 11.642684221 127.0.0.1:57433 127.0.0.1:57415 382179212 12 1600000005480c0000000000 .....H...... +3720 11.642864704 127.0.0.1:57433 127.0.0.1:57415 382179224 22 1200000023a721000000000001000300000000000000 ....#.!............... +3722 11.643431187 127.0.0.1:57415 127.0.0.1:57433 3339727906 12 ffffffff05480c0000000000 .....H...... +3726 11.723273277 127.0.0.1:57433 127.0.0.1:57415 382179246 12 feffffff3c6c0100506c0100 ....l..Rl.. +4548 12.725839376 127.0.0.1:57433 127.0.0.1:57415 382180244 12 1a00000017480c0000000000 .....H...... +4550 12.726077557 127.0.0.1:57433 127.0.0.1:57415 382180256 26 160000003fa72100000000000100030000000000000000000000 ....?.!................... +4552 12.726467133 127.0.0.1:57415 127.0.0.1:57433 3339729182 12 ffffffff17480c0000000000 .....H...... +4562 12.785987139 127.0.0.1:57415 127.0.0.1:57433 3339729194 12 1a000000118a0c0000000000 ............ +4564 12.786234140 127.0.0.1:57415 127.0.0.1:57433 3339729206 26 16000000548f6340e25e314001000300000041a7210000000000 ....T.c@.^1@......A.!..... +4566 12.786666155 127.0.0.1:57433 127.0.0.1:57415 382180282 12 ffffffff118a0c0000000000 ............ +4568 12.787426233 127.0.0.1:57433 127.0.0.1:57415 382180294 12 1600000018480c0000000000 .....H...... +4570 12.787622690 127.0.0.1:57433 127.0.0.1:57415 382180306 22 1200000041a721000000000001000300000000000000 ....A.!............... +4572 12.787887573 127.0.0.1:57415 127.0.0.1:57433 3339729232 12 ffffffff18480c0000000000 .....H...... +4608 12.890517235 127.0.0.1:57415 127.0.0.1:57433 3339729244 12 1a000000128a0c0000000000 ............ +4610 12.890857935 127.0.0.1:57415 127.0.0.1:57433 3339729256 26 16000000548f6340e25e314001000300000043a7210000000000 ....T.c@.^1@......C.!..... +4612 12.891250134 127.0.0.1:57433 127.0.0.1:57415 382180328 12 ffffffff128a0c0000000000 ............ +4614 12.891968727 127.0.0.1:57433 127.0.0.1:57415 382180340 12 1600000019480c0000000000 .....H...... +4616 12.892147779 127.0.0.1:57433 127.0.0.1:57415 382180352 22 1200000043a721000000000001000300000000000000 ....C.!............... +4618 12.892425537 127.0.0.1:57415 127.0.0.1:57433 3339729282 12 ffffffff19480c0000000000 .....H...... +4620 12.915155411 127.0.0.1:57415 127.0.0.1:57433 3339729294 12 feffffff536c01003e6c0100 ....Sl..>l.. +4626 12.994564533 127.0.0.1:57415 127.0.0.1:57433 3339729306 12 1a000000138a0c0000000000 ............ +4628 12.994755268 127.0.0.1:57415 127.0.0.1:57433 3339729318 26 16000000548f6340e25e314001000300000045a7210000000000 ....T.c@.^1@......E.!..... +4630 12.995136499 127.0.0.1:57433 127.0.0.1:57415 382180374 12 ffffffff138a0c0000000000 ............ +4632 12.995856047 127.0.0.1:57433 127.0.0.1:57415 382180386 12 160000001a480c0000000000 .....H...... +4634 12.996071815 127.0.0.1:57433 127.0.0.1:57415 382180398 22 1200000045a721000000000001000300000000000000 ....E.!............... +4636 12.996453762 127.0.0.1:57415 127.0.0.1:57433 3339729344 12 ffffffff1a480c0000000000 .....H...... +4642 13.025875568 127.0.0.1:57415 127.0.0.1:57433 3339729356 12 65000000148a0c0000000000 e........... +4644 13.026069641 127.0.0.1:57415 127.0.0.1:57433 3339729368 101 1e0000001c2118d0c46f33bb0100030000007455020000000000c67974c39d01 .....!...o3.......tU.......yt.....?.....3...|8.. +4646 13.026477814 127.0.0.1:57433 127.0.0.1:57415 382180420 12 ffffffff148a0c0000000000 ............ +4648 13.027709723 127.0.0.1:57433 127.0.0.1:57415 382180432 12 340000001b480c0000000000 4....H...... +4650 13.027860403 127.0.0.1:57433 127.0.0.1:57415 382180444 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....tU........^jh. +4652 13.028227329 127.0.0.1:57415 127.0.0.1:57433 3339729469 12 ffffffff1b480c0000000000 .....H...... +4654 13.029211521 127.0.0.1:57415 127.0.0.1:57433 3339729481 12 1e000000158a0c0000000000 ............ +4656 13.029358864 127.0.0.1:57415 127.0.0.1:57433 3339729493 30 1a00000055ceff62b21b3a5001000300000047a721000000000000000000 ....U..b..:P......G.!......... +4658 13.029811382 127.0.0.1:57433 127.0.0.1:57415 382180496 12 ffffffff158a0c0000000000 ............ +4660 13.030292988 127.0.0.1:57433 127.0.0.1:57415 382180508 12 1a0000001c480c0000000000 .....H...... +4662 13.030473232 127.0.0.1:57433 127.0.0.1:57415 382180520 26 1600000047a72100000000000100030000000000000000000000 ....G.!................... +4664 13.030800581 127.0.0.1:57415 127.0.0.1:57433 3339729523 12 ffffffff1c480c0000000000 .....H...... +4668 13.099883318 127.0.0.1:57415 127.0.0.1:57433 3339729535 12 1a000000168a0c0000000000 ............ +4670 13.100076437 127.0.0.1:57415 127.0.0.1:57433 3339729547 26 16000000548f6340e25e314001000300000049a7210000000000 ....T.c@.^1@......I.!..... +4672 13.100493670 127.0.0.1:57433 127.0.0.1:57415 382180546 12 ffffffff168a0c0000000000 ............ +4674 13.101162672 127.0.0.1:57433 127.0.0.1:57415 382180558 12 160000001d480c0000000000 .....H...... +4676 13.101311922 127.0.0.1:57433 127.0.0.1:57415 382180570 22 1200000049a721000000000001000300000000000000 ....I.!............... +4678 13.101671696 127.0.0.1:57415 127.0.0.1:57433 3339729573 12 ffffffff1d480c0000000000 .....H...... +4680 13.203778744 127.0.0.1:57415 127.0.0.1:57433 3339729585 12 1a000000178a0c0000000000 ............ +4682 13.204055309 127.0.0.1:57415 127.0.0.1:57433 3339729597 26 16000000548f6340e25e31400100030000004ba7210000000000 ....T.c@.^1@......K.!..... +4684 13.204566956 127.0.0.1:57433 127.0.0.1:57415 382180592 12 ffffffff178a0c0000000000 ............ +4686 13.205285549 127.0.0.1:57433 127.0.0.1:57415 382180604 12 160000001e480c0000000000 .....H...... +4688 13.205528259 127.0.0.1:57433 127.0.0.1:57415 382180616 22 120000004ba721000000000001000300000000000000 ....K.!............... +4690 13.205971479 127.0.0.1:57415 127.0.0.1:57433 3339729623 12 ffffffff1e480c0000000000 .....H...... +4694 13.226256609 127.0.0.1:57433 127.0.0.1:57415 382180638 12 feffffff3f6c0100536c0100 ....?l..Sl.. +4700 13.308164835 127.0.0.1:57415 127.0.0.1:57433 3339729635 12 1a000000188a0c0000000000 ............ +4702 13.308415413 127.0.0.1:57415 127.0.0.1:57433 3339729647 26 16000000548f6340e25e31400100030000004da7210000000000 ....T.c@.^1@......M.!..... +4704 13.308911800 127.0.0.1:57433 127.0.0.1:57415 382180650 12 ffffffff188a0c0000000000 ............ +4706 13.309552908 127.0.0.1:57433 127.0.0.1:57415 382180662 12 160000001f480c0000000000 .....H...... +4708 13.309785128 127.0.0.1:57433 127.0.0.1:57415 382180674 22 120000004da721000000000001000300000000000000 ....M.!............... +4710 13.310071468 127.0.0.1:57415 127.0.0.1:57433 3339729673 12 ffffffff1f480c0000000000 .....H...... +4717 13.331144333 127.0.0.1:57415 127.0.0.1:57433 3339729685 12 65000000198a0c0000000000 e........... +4719 13.331400156 127.0.0.1:57415 127.0.0.1:57433 3339729697 101 1e0000001c2118d0c46f33bb0100030000007555020000000000f87a74c39d01 .....!...o3.......uU.......zt.....?.....3...|8.. +4723 13.331955433 127.0.0.1:57433 127.0.0.1:57415 382180696 12 ffffffff198a0c0000000000 ............ +4727 13.333477020 127.0.0.1:57433 127.0.0.1:57415 382180708 12 3400000020480c0000000000 4... H...... +4729 13.333660364 127.0.0.1:57433 127.0.0.1:57415 382180720 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....uU............ +4731 13.333951712 127.0.0.1:57415 127.0.0.1:57433 3339729798 12 ffffffff20480c0000000000 .... H...... +4733 13.335012913 127.0.0.1:57415 127.0.0.1:57433 3339729810 12 1e0000001a8a0c0000000000 ............ +4735 13.335154772 127.0.0.1:57415 127.0.0.1:57433 3339729822 30 1a00000055ceff62b21b3a500100030000004fa721000000000000000000 ....U..b..:P......O.!......... +4739 13.336025715 127.0.0.1:57433 127.0.0.1:57415 382180772 12 ffffffff1a8a0c0000000000 ............ +4741 13.336228132 127.0.0.1:57433 127.0.0.1:57415 382180784 12 1a00000021480c0000000000 ....!H...... +4743 13.336395264 127.0.0.1:57433 127.0.0.1:57415 382180796 26 160000004fa72100000000000100030000000000000000000000 ....O.!................... +4745 13.337247849 127.0.0.1:57415 127.0.0.1:57433 3339729852 12 ffffffff21480c0000000000 ....!H...... +4810 13.412505865 127.0.0.1:57415 127.0.0.1:57433 3339729864 12 1a0000001b8a0c0000000000 ............ +4812 13.412696123 127.0.0.1:57415 127.0.0.1:57433 3339729876 26 16000000548f6340e25e314001000300000051a7210000000000 ....T.c@.^1@......Q.!..... +4814 13.413224459 127.0.0.1:57433 127.0.0.1:57415 382180822 12 ffffffff1b8a0c0000000000 ............ +4816 13.413759232 127.0.0.1:57433 127.0.0.1:57415 382180834 12 1600000022480c0000000000 ...."H...... +4818 13.413952827 127.0.0.1:57433 127.0.0.1:57415 382180846 22 1200000051a721000000000001000300000000000000 ....Q.!............... +4820 13.414488792 127.0.0.1:57415 127.0.0.1:57433 3339729902 12 ffffffff22480c0000000000 ...."H...... +4822 13.415730715 127.0.0.1:57415 127.0.0.1:57433 3339729914 12 feffffff546c01003f6c0100 ....Tl..?l.. +4832 13.516413450 127.0.0.1:57415 127.0.0.1:57433 3339729926 12 1a0000001c8a0c0000000000 ............ +4834 13.516671419 127.0.0.1:57415 127.0.0.1:57433 3339729938 26 16000000548f6340e25e314001000300000053a7210000000000 ....T.c@.^1@......S.!..... +4836 13.517226934 127.0.0.1:57433 127.0.0.1:57415 382180868 12 ffffffff1c8a0c0000000000 ............ +4838 13.517801285 127.0.0.1:57433 127.0.0.1:57415 382180880 12 1600000023480c0000000000 ....#H...... +4840 13.517979383 127.0.0.1:57433 127.0.0.1:57415 382180892 22 1200000053a721000000000001000300000000000000 ....S.!............... +4842 13.518319845 127.0.0.1:57415 127.0.0.1:57433 3339729964 12 ffffffff23480c0000000000 ....#H...... +4846 13.620922327 127.0.0.1:57415 127.0.0.1:57433 3339729976 12 1a0000001d8a0c0000000000 ............ +4848 13.621137381 127.0.0.1:57415 127.0.0.1:57433 3339729988 26 16000000548f6340e25e314001000300000055a7210000000000 ....T.c@.^1@......U.!..... +4850 13.621432304 127.0.0.1:57433 127.0.0.1:57415 382180914 12 ffffffff1d8a0c0000000000 ............ +4852 13.622083426 127.0.0.1:57433 127.0.0.1:57415 382180926 12 1600000024480c0000000000 ....$H...... +4854 13.622283936 127.0.0.1:57433 127.0.0.1:57415 382180938 22 1200000055a721000000000001000300000000000000 ....U.!............... +4856 13.622578144 127.0.0.1:57415 127.0.0.1:57433 3339730014 12 ffffffff24480c0000000000 ....$H...... +4858 13.636124611 127.0.0.1:57415 127.0.0.1:57433 3339730026 12 650000001e8a0c0000000000 e........... +4860 13.636362314 127.0.0.1:57415 127.0.0.1:57433 3339730038 101 1e0000001c2118d0c46f33bb0100030000007655020000000000297c74c39d01 .....!...o3.......vU......)|t.....?.....3...|8.. +4862 13.637287855 127.0.0.1:57433 127.0.0.1:57415 382180960 12 ffffffff1e8a0c0000000000 ............ +4864 13.638902426 127.0.0.1:57433 127.0.0.1:57415 382180972 12 3400000025480c0000000000 4...%H...... +4866 13.639120817 127.0.0.1:57433 127.0.0.1:57415 382180984 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....vU............ +4868 13.639484882 127.0.0.1:57415 127.0.0.1:57433 3339730139 12 ffffffff25480c0000000000 ....%H...... +4870 13.640600443 127.0.0.1:57415 127.0.0.1:57433 3339730151 12 1e0000001f8a0c0000000000 ............ +4872 13.640830517 127.0.0.1:57415 127.0.0.1:57433 3339730163 30 1a00000055ceff62b21b3a5001000300000057a721000000000000000000 ....U..b..:P......W.!......... +4874 13.641235113 127.0.0.1:57433 127.0.0.1:57415 382181036 12 ffffffff1f8a0c0000000000 ............ +4876 13.642174721 127.0.0.1:57433 127.0.0.1:57415 382181048 12 1a00000026480c0000000000 ....&H...... +4878 13.642366171 127.0.0.1:57433 127.0.0.1:57415 382181060 26 1600000057a72100000000000100030000000000000000000000 ....W.!................... +4880 13.642832518 127.0.0.1:57415 127.0.0.1:57433 3339730193 12 ffffffff26480c0000000000 ....&H...... +4884 13.725443363 127.0.0.1:57415 127.0.0.1:57433 3339730205 12 1a000000208a0c0000000000 .... ....... +4886 13.725625753 127.0.0.1:57415 127.0.0.1:57433 3339730217 26 16000000548f6340e25e314001000300000059a7210000000000 ....T.c@.^1@......Y.!..... +4888 13.725948334 127.0.0.1:57433 127.0.0.1:57415 382181086 12 ffffffff208a0c0000000000 .... ....... +4890 13.726277113 127.0.0.1:57433 127.0.0.1:57415 382181098 12 feffffff406c0100546c0100 ....@l..Tl.. +4892 13.726473808 127.0.0.1:57433 127.0.0.1:57415 382181110 12 1600000027480c0000000000 ....'H...... +4894 13.726668358 127.0.0.1:57433 127.0.0.1:57415 382181122 22 1200000059a721000000000001000300000000000000 ....Y.!............... +4896 13.727194309 127.0.0.1:57415 127.0.0.1:57433 3339730243 12 ffffffff27480c0000000000 ....'H...... +4902 13.829777718 127.0.0.1:57415 127.0.0.1:57433 3339730255 12 1a000000218a0c0000000000 ....!....... +4904 13.830163956 127.0.0.1:57415 127.0.0.1:57433 3339730267 26 16000000548f6340e25e31400100030000005ba7210000000000 ....T.c@.^1@......[.!..... +4906 13.831021547 127.0.0.1:57433 127.0.0.1:57415 382181144 12 ffffffff218a0c0000000000 ....!....... +4908 13.831638336 127.0.0.1:57433 127.0.0.1:57415 382181156 12 1600000028480c0000000000 ....(H...... +4910 13.831835032 127.0.0.1:57433 127.0.0.1:57415 382181168 22 120000005ba721000000000001000300000000000000 ....[.!............... +4912 13.832727194 127.0.0.1:57415 127.0.0.1:57433 3339730293 12 ffffffff28480c0000000000 ....(H...... +4918 13.916357517 127.0.0.1:57415 127.0.0.1:57433 3339730305 12 feffffff556c0100406c0100 ....Ul..@l.. +4922 13.934962273 127.0.0.1:57415 127.0.0.1:57433 3339730317 12 1a000000228a0c0000000000 ...."....... +4924 13.935186625 127.0.0.1:57415 127.0.0.1:57433 3339730329 26 16000000548f6340e25e31400100030000005da7210000000000 ....T.c@.^1@......].!..... +4926 13.935567856 127.0.0.1:57433 127.0.0.1:57415 382181190 12 ffffffff228a0c0000000000 ...."....... +4928 13.936377764 127.0.0.1:57433 127.0.0.1:57415 382181202 12 1600000029480c0000000000 ....)H...... +4930 13.936582565 127.0.0.1:57433 127.0.0.1:57415 382181214 22 120000005da721000000000001000300000000000000 ....].!............... +4932 13.937084675 127.0.0.1:57415 127.0.0.1:57433 3339730355 12 ffffffff29480c0000000000 ....)H...... +4934 13.942257404 127.0.0.1:57415 127.0.0.1:57433 3339730367 12 65000000238a0c0000000000 e...#....... +4936 13.942452192 127.0.0.1:57415 127.0.0.1:57433 3339730379 101 1e0000001c2118d0c46f33bb01000300000077550200000000005b7d74c39d01 .....!...o3.......wU......[}t.....?.....3...|8.. +4938 13.942779064 127.0.0.1:57433 127.0.0.1:57415 382181236 12 ffffffff238a0c0000000000 ....#....... +4940 13.944311857 127.0.0.1:57433 127.0.0.1:57415 382181248 12 340000002a480c0000000000 4...*H...... +4942 13.944478989 127.0.0.1:57433 127.0.0.1:57415 382181260 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....wU........vD.. +4944 13.944815397 127.0.0.1:57415 127.0.0.1:57433 3339730480 12 ffffffff2a480c0000000000 ....*H...... +4946 13.946066618 127.0.0.1:57415 127.0.0.1:57433 3339730492 12 1e000000248a0c0000000000 ....$....... +4948 13.946212053 127.0.0.1:57415 127.0.0.1:57433 3339730504 30 1a00000055ceff62b21b3a500100030000005fa721000000000000000000 ....U..b..:P......_.!......... +4950 13.946490526 127.0.0.1:57433 127.0.0.1:57415 382181312 12 ffffffff248a0c0000000000 ....$....... +4952 13.947258711 127.0.0.1:57433 127.0.0.1:57415 382181324 12 1a0000002b480c0000000000 ....+H...... +4954 13.947452068 127.0.0.1:57433 127.0.0.1:57415 382181336 26 160000005fa72100000000000100030000000000000000000000 ...._.!................... +4956 13.947762728 127.0.0.1:57415 127.0.0.1:57433 3339730534 12 ffffffff2b480c0000000000 ....+H...... +4964 14.039936543 127.0.0.1:57415 127.0.0.1:57433 3339730546 12 1a000000258a0c0000000000 ....%....... +4966 14.040183544 127.0.0.1:57415 127.0.0.1:57433 3339730558 26 16000000548f6340e25e314001000300000061a7210000000000 ....T.c@.^1@......a.!..... +4968 14.041461706 127.0.0.1:57433 127.0.0.1:57415 382181362 12 ffffffff258a0c0000000000 ....%....... +4970 14.042127371 127.0.0.1:57433 127.0.0.1:57415 382181374 12 160000002c480c0000000000 ....,H...... +4972 14.042309523 127.0.0.1:57433 127.0.0.1:57415 382181386 22 1200000061a721000000000001000300000000000000 ....a.!............... +4974 14.042691708 127.0.0.1:57415 127.0.0.1:57433 3339730584 12 ffffffff2c480c0000000000 ....,H...... +4978 14.144973278 127.0.0.1:57415 127.0.0.1:57433 3339730596 12 1a000000268a0c0000000000 ....&....... +4980 14.145219564 127.0.0.1:57415 127.0.0.1:57433 3339730608 26 16000000548f6340e25e314001000300000063a7210000000000 ....T.c@.^1@......c.!..... +4982 14.145610809 127.0.0.1:57433 127.0.0.1:57415 382181408 12 ffffffff268a0c0000000000 ....&....... +4984 14.146394730 127.0.0.1:57433 127.0.0.1:57415 382181420 12 160000002d480c0000000000 ....-H...... +4986 14.146583319 127.0.0.1:57433 127.0.0.1:57415 382181432 22 1200000063a721000000000001000300000000000000 ....c.!............... +4988 14.146912336 127.0.0.1:57415 127.0.0.1:57433 3339730634 12 ffffffff2d480c0000000000 ....-H...... +4992 14.226589203 127.0.0.1:57433 127.0.0.1:57415 382181454 12 feffffff416c0100556c0100 ....Al..Ul.. +4998 14.248233795 127.0.0.1:57415 127.0.0.1:57433 3339730646 12 22000000278a0c0000000000 "...'....... +5000 14.248459816 127.0.0.1:57415 127.0.0.1:57433 3339730658 34 1e0000001c2118d0c46f33bb01000300000078550200000000008d7e74c39d01 .....!...o3.......xU.......~t..... +5002 14.248646498 127.0.0.1:57415 127.0.0.1:57433 3339730692 12 43000000288a0c0000000000 C...(....... +5004 14.248772621 127.0.0.1:57415 127.0.0.1:57433 3339730704 67 3f000000980433cb0cb47c38010003000000010000000078550200000000003d ?.....3...|8...........xU......=B.....&......... +5006 14.249144554 127.0.0.1:57433 127.0.0.1:57415 382181466 12 ffffffff278a0c0000000000 ....'....... +5008 14.249374866 127.0.0.1:57433 127.0.0.1:57415 382181478 12 ffffffff288a0c0000000000 ....(....... +5010 14.249512672 127.0.0.1:57415 127.0.0.1:57433 3339730771 12 1a000000298a0c0000000000 ....)....... +5012 14.249732256 127.0.0.1:57415 127.0.0.1:57433 3339730783 26 16000000548f6340e25e314001000300000065a7210000000000 ....T.c@.^1@......e.!..... +5014 14.250132322 127.0.0.1:57433 127.0.0.1:57415 382181490 12 ffffffff298a0c0000000000 ....)....... +5016 14.250610113 127.0.0.1:57433 127.0.0.1:57415 382181502 12 340000002e480c0000000000 4....H...... +5018 14.250923395 127.0.0.1:57433 127.0.0.1:57415 382181514 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....xU........*.#. +5020 14.251082420 127.0.0.1:57433 127.0.0.1:57415 382181566 12 160000002f480c0000000000 ..../H...... +5022 14.251165390 127.0.0.1:57433 127.0.0.1:57415 382181578 22 1200000065a721000000000001000300000000000000 ....e.!............... +5023 14.251209021 127.0.0.1:57415 127.0.0.1:57433 3339730809 12 ffffffff2e480c0000000000 .....H...... +5026 14.251453161 127.0.0.1:57415 127.0.0.1:57433 3339730821 12 ffffffff2f480c0000000000 ..../H...... +5028 14.252876520 127.0.0.1:57415 127.0.0.1:57433 3339730833 12 1e0000002a8a0c0000000000 ....*....... +5030 14.253038645 127.0.0.1:57415 127.0.0.1:57433 3339730845 30 1a00000055ceff62b21b3a5001000300000067a721000000000000000000 ....U..b..:P......g.!......... +5032 14.253447533 127.0.0.1:57433 127.0.0.1:57415 382181600 12 ffffffff2a8a0c0000000000 ....*....... +5033 14.254094601 127.0.0.1:57433 127.0.0.1:57415 382181612 12 1a00000030480c0000000000 ....0H...... +5035 14.254288197 127.0.0.1:57433 127.0.0.1:57415 382181624 26 1600000067a72100000000000100030000000000000000000000 ....g.!................... +5037 14.254548311 127.0.0.1:57415 127.0.0.1:57433 3339730875 12 ffffffff30480c0000000000 ....0H...... +5043 14.352928162 127.0.0.1:57415 127.0.0.1:57433 3339730887 12 1a0000002b8a0c0000000000 ....+....... +5045 14.353180408 127.0.0.1:57415 127.0.0.1:57433 3339730899 26 16000000548f6340e25e314001000300000069a7210000000000 ....T.c@.^1@......i.!..... +5047 14.353582382 127.0.0.1:57433 127.0.0.1:57415 382181650 12 ffffffff2b8a0c0000000000 ....+....... +5049 14.354292631 127.0.0.1:57433 127.0.0.1:57415 382181662 12 1600000031480c0000000000 ....1H...... +5051 14.354457855 127.0.0.1:57433 127.0.0.1:57415 382181674 22 1200000069a721000000000001000300000000000000 ....i.!............... +5053 14.354902029 127.0.0.1:57415 127.0.0.1:57433 3339730925 12 ffffffff31480c0000000000 ....1H...... +5055 14.417333841 127.0.0.1:57415 127.0.0.1:57433 3339730937 12 feffffff566c0100416c0100 ....Vl..Al.. +5059 14.457784891 127.0.0.1:57415 127.0.0.1:57433 3339730949 12 1a0000002c8a0c0000000000 ....,....... +5061 14.457960129 127.0.0.1:57415 127.0.0.1:57433 3339730961 26 16000000548f6340e25e31400100030000006ba7210000000000 ....T.c@.^1@......k.!..... +5063 14.458264351 127.0.0.1:57433 127.0.0.1:57415 382181696 12 ffffffff2c8a0c0000000000 ....,....... +5065 14.459089518 127.0.0.1:57433 127.0.0.1:57415 382181708 12 1600000032480c0000000000 ....2H...... +5067 14.459278107 127.0.0.1:57433 127.0.0.1:57415 382181720 22 120000006ba721000000000001000300000000000000 ....k.!............... +5069 14.459673405 127.0.0.1:57415 127.0.0.1:57433 3339730987 12 ffffffff32480c0000000000 ....2H...... +5079 14.554897070 127.0.0.1:57415 127.0.0.1:57433 3339730999 12 650000002d8a0c0000000000 e...-....... +5081 14.555070639 127.0.0.1:57415 127.0.0.1:57433 3339731011 101 1e0000001c2118d0c46f33bb0100030000007955020000000000bf7f74c39d01 .....!...o3.......yU........t.....?.....3...|8.. +5083 14.555467606 127.0.0.1:57433 127.0.0.1:57415 382181742 12 ffffffff2d8a0c0000000000 ....-....... +5085 14.556957245 127.0.0.1:57433 127.0.0.1:57415 382181754 12 3400000033480c0000000000 4...3H...... +5087 14.557567120 127.0.0.1:57433 127.0.0.1:57415 382181766 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....yU........Q.Q. +5089 14.557920218 127.0.0.1:57415 127.0.0.1:57433 3339731112 12 ffffffff33480c0000000000 ....3H...... +5091 14.559670210 127.0.0.1:57415 127.0.0.1:57433 3339731124 12 1e0000002e8a0c0000000000 ............ +5093 14.559906721 127.0.0.1:57415 127.0.0.1:57433 3339731136 30 1a00000055ceff62b21b3a500100030000006da721000000000000000000 ....U..b..:P......m.!......... +5095 14.560306787 127.0.0.1:57433 127.0.0.1:57415 382181818 12 ffffffff2e8a0c0000000000 ............ +5097 14.560946226 127.0.0.1:57433 127.0.0.1:57415 382181830 12 1a00000034480c0000000000 ....4H...... +5099 14.561216593 127.0.0.1:57433 127.0.0.1:57415 382181842 26 160000006da72100000000000100030000000000000000000000 ....m.!................... +5101 14.561539412 127.0.0.1:57415 127.0.0.1:57433 3339731166 12 ffffffff34480c0000000000 ....4H...... +5103 14.561824560 127.0.0.1:57415 127.0.0.1:57433 3339731178 12 1a0000002f8a0c0000000000 ..../....... +5105 14.562015295 127.0.0.1:57415 127.0.0.1:57433 3339731190 26 16000000548f6340e25e31400100030000006fa7210000000000 ....T.c@.^1@......o.!..... +5107 14.562227249 127.0.0.1:57433 127.0.0.1:57415 382181868 12 ffffffff2f8a0c0000000000 ..../....... +5109 14.562725306 127.0.0.1:57433 127.0.0.1:57415 382181880 12 1600000035480c0000000000 ....5H...... +5111 14.562886477 127.0.0.1:57433 127.0.0.1:57415 382181892 22 120000006fa721000000000001000300000000000000 ....o.!............... +5113 14.563108921 127.0.0.1:57415 127.0.0.1:57433 3339731216 12 ffffffff35480c0000000000 ....5H...... +5117 14.665003777 127.0.0.1:57415 127.0.0.1:57433 3339731228 12 1a000000308a0c0000000000 ....0....... +5119 14.665359735 127.0.0.1:57415 127.0.0.1:57433 3339731240 26 16000000548f6340e25e314001000300000071a7210000000000 ....T.c@.^1@......q.!..... +5121 14.665898561 127.0.0.1:57433 127.0.0.1:57415 382181914 12 ffffffff308a0c0000000000 ....0....... +5123 14.666558266 127.0.0.1:57433 127.0.0.1:57415 382181926 12 1600000036480c0000000000 ....6H...... +5125 14.666734934 127.0.0.1:57433 127.0.0.1:57415 382181938 22 1200000071a721000000000001000300000000000000 ....q.!............... +5127 14.667336941 127.0.0.1:57415 127.0.0.1:57433 3339731266 12 ffffffff36480c0000000000 ....6H...... +5131 14.727823019 127.0.0.1:57433 127.0.0.1:57415 382181960 12 feffffff426c0100566c0100 ....Bl..Vl.. +5137 14.770197630 127.0.0.1:57415 127.0.0.1:57433 3339731278 12 1a000000318a0c0000000000 ....1....... +5139 14.770427227 127.0.0.1:57415 127.0.0.1:57433 3339731290 26 16000000548f6340e25e314001000300000073a7210000000000 ....T.c@.^1@......s.!..... +5141 14.770984173 127.0.0.1:57433 127.0.0.1:57415 382181972 12 ffffffff318a0c0000000000 ....1....... +5143 14.771629572 127.0.0.1:57433 127.0.0.1:57415 382181984 12 1600000037480c0000000000 ....7H...... +5145 14.771780968 127.0.0.1:57433 127.0.0.1:57415 382181996 22 1200000073a721000000000001000300000000000000 ....s.!............... +5147 14.772211313 127.0.0.1:57415 127.0.0.1:57433 3339731316 12 ffffffff37480c0000000000 ....7H...... +5153 14.862117529 127.0.0.1:57415 127.0.0.1:57433 3339731328 12 65000000328a0c0000000000 e...2....... +5155 14.862406731 127.0.0.1:57415 127.0.0.1:57433 3339731340 101 1e0000001c2118d0c46f33bb0100030000007a55020000000000f28074c39d01 .....!...o3.......zU........t.....?.....3...|8.. +5157 14.862884998 127.0.0.1:57433 127.0.0.1:57415 382182018 12 ffffffff328a0c0000000000 ....2....... +5159 14.864297390 127.0.0.1:57433 127.0.0.1:57415 382182030 12 3400000038480c0000000000 4...8H...... +5161 14.864546776 127.0.0.1:57433 127.0.0.1:57415 382182042 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....zU........:... +5163 14.864845753 127.0.0.1:57415 127.0.0.1:57433 3339731441 12 ffffffff38480c0000000000 ....8H...... +5165 14.866076469 127.0.0.1:57415 127.0.0.1:57433 3339731453 12 1e000000338a0c0000000000 ....3....... +5167 14.866280794 127.0.0.1:57415 127.0.0.1:57433 3339731465 30 1a00000055ceff62b21b3a5001000300000075a721000000000000000000 ....U..b..:P......u.!......... +5169 14.866680861 127.0.0.1:57433 127.0.0.1:57415 382182094 12 ffffffff338a0c0000000000 ....3....... +5171 14.867386580 127.0.0.1:57433 127.0.0.1:57415 382182106 12 1a00000039480c0000000000 ....9H...... +5173 14.867580652 127.0.0.1:57433 127.0.0.1:57415 382182118 26 1600000075a72100000000000100030000000000000000000000 ....u.!................... +5175 14.867794037 127.0.0.1:57415 127.0.0.1:57433 3339731495 12 ffffffff39480c0000000000 ....9H...... +5177 14.874588490 127.0.0.1:57415 127.0.0.1:57433 3339731507 12 1a000000348a0c0000000000 ....4....... +5179 14.874959469 127.0.0.1:57415 127.0.0.1:57433 3339731519 26 16000000548f6340e25e314001000300000077a7210000000000 ....T.c@.^1@......w.!..... +5181 14.875537872 127.0.0.1:57433 127.0.0.1:57415 382182144 12 ffffffff348a0c0000000000 ....4....... +5183 14.876632690 127.0.0.1:57433 127.0.0.1:57415 382182156 12 160000003a480c0000000000 ....:H...... +5185 14.876829624 127.0.0.1:57433 127.0.0.1:57415 382182168 22 1200000077a721000000000001000300000000000000 ....w.!............... +5187 14.877357483 127.0.0.1:57415 127.0.0.1:57433 3339731545 12 ffffffff3a480c0000000000 ....:H...... +5189 14.918854713 127.0.0.1:57415 127.0.0.1:57433 3339731557 12 feffffff576c0100426c0100 ....Wl..Bl.. +5193 14.980309486 127.0.0.1:57415 127.0.0.1:57433 3339731569 12 1a000000358a0c0000000000 ....5....... +5195 14.980524540 127.0.0.1:57415 127.0.0.1:57433 3339731581 26 16000000548f6340e25e314001000300000079a7210000000000 ....T.c@.^1@......y.!..... +5197 14.980918407 127.0.0.1:57433 127.0.0.1:57415 382182190 12 ffffffff358a0c0000000000 ....5....... +5199 14.981793404 127.0.0.1:57433 127.0.0.1:57415 382182202 12 160000003b480c0000000000 ....;H...... +5201 14.981981993 127.0.0.1:57433 127.0.0.1:57415 382182214 22 1200000079a721000000000001000300000000000000 ....y.!............... +5203 14.982387543 127.0.0.1:57415 127.0.0.1:57433 3339731607 12 ffffffff3b480c0000000000 ....;H...... +5211 15.084665537 127.0.0.1:57415 127.0.0.1:57433 3339731619 12 1a000000368a0c0000000000 ....6....... +5213 15.084864140 127.0.0.1:57415 127.0.0.1:57433 3339731631 26 16000000548f6340e25e31400100030000007ba7210000000000 ....T.c@.^1@......{.!..... +5215 15.085093737 127.0.0.1:57433 127.0.0.1:57415 382182236 12 ffffffff368a0c0000000000 ....6....... +5217 15.085764408 127.0.0.1:57433 127.0.0.1:57415 382182248 12 160000003c480c0000000000 ....H...... +5245 15.173692465 127.0.0.1:57433 127.0.0.1:57415 382182382 26 160000007da72100000000000100030000000000000000000000 ....}.!................... +5247 15.173960924 127.0.0.1:57415 127.0.0.1:57433 3339731836 12 ffffffff3e480c0000000000 ....>H...... +5249 15.188480854 127.0.0.1:57415 127.0.0.1:57433 3339731848 12 1a000000398a0c0000000000 ....9....... +5251 15.188804150 127.0.0.1:57415 127.0.0.1:57433 3339731860 26 16000000548f6340e25e31400100030000007fa7210000000000 ....T.c@.^1@........!..... +5253 15.189510107 127.0.0.1:57433 127.0.0.1:57415 382182408 12 ffffffff398a0c0000000000 ....9....... +5255 15.190084219 127.0.0.1:57433 127.0.0.1:57415 382182420 12 160000003f480c0000000000 ....?H...... +5257 15.190279007 127.0.0.1:57433 127.0.0.1:57415 382182432 22 120000007fa721000000000001000300000000000000 ......!............... +5259 15.190660000 127.0.0.1:57415 127.0.0.1:57433 3339731886 12 ffffffff3f480c0000000000 ....?H...... +5263 15.229451895 127.0.0.1:57433 127.0.0.1:57415 382182454 12 feffffff436c0100576c0100 ....Cl..Wl.. +5300 15.292321444 127.0.0.1:57415 127.0.0.1:57433 3339731898 12 1a0000003a8a0c0000000000 ....:....... +5302 15.292634964 127.0.0.1:57415 127.0.0.1:57433 3339731910 26 16000000548f6340e25e314001000300000081a7210000000000 ....T.c@.^1@........!..... +5304 15.292989492 127.0.0.1:57433 127.0.0.1:57415 382182466 12 ffffffff3a8a0c0000000000 ....:....... +5306 15.293778896 127.0.0.1:57433 127.0.0.1:57415 382182478 12 1600000040480c0000000000 ....@H...... +5308 15.294062614 127.0.0.1:57433 127.0.0.1:57415 382182490 22 1200000081a721000000000001000300000000000000 ......!............... +5310 15.294441223 127.0.0.1:57415 127.0.0.1:57433 3339731936 12 ffffffff40480c0000000000 ....@H...... +5316 15.396135330 127.0.0.1:57415 127.0.0.1:57433 3339731948 12 1a0000003b8a0c0000000000 ....;....... +5318 15.396379232 127.0.0.1:57415 127.0.0.1:57433 3339731960 26 16000000548f6340e25e314001000300000083a7210000000000 ....T.c@.^1@........!..... +5320 15.396603107 127.0.0.1:57433 127.0.0.1:57415 382182512 12 ffffffff3b8a0c0000000000 ....;....... +5322 15.397298336 127.0.0.1:57433 127.0.0.1:57415 382182524 12 1600000041480c0000000000 ....AH...... +5324 15.397489309 127.0.0.1:57433 127.0.0.1:57415 382182536 22 1200000083a721000000000001000300000000000000 ......!............... +5326 15.397848606 127.0.0.1:57415 127.0.0.1:57433 3339731986 12 ffffffff41480c0000000000 ....AH...... +5329 15.419770241 127.0.0.1:57415 127.0.0.1:57433 3339731998 12 feffffff586c0100436c0100 ....Xl..Cl.. +5333 15.474613667 127.0.0.1:57415 127.0.0.1:57433 3339732010 12 650000003c8a0c0000000000 e...<....... +5335 15.474889278 127.0.0.1:57415 127.0.0.1:57433 3339732022 101 1e0000001c2118d0c46f33bb0100030000007c55020000000000578374c39d01 .....!...o3.......|U......W.t.....?.....3...|8.. +5339 15.476255655 127.0.0.1:57433 127.0.0.1:57415 382182558 12 ffffffff3c8a0c0000000000 ....<....... +5341 15.477566004 127.0.0.1:57433 127.0.0.1:57415 382182570 12 3400000042480c0000000000 4...BH...... +5343 15.477819204 127.0.0.1:57433 127.0.0.1:57415 382182582 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....|U.........7.. +5345 15.478141546 127.0.0.1:57415 127.0.0.1:57433 3339732123 12 ffffffff42480c0000000000 ....BH...... +5347 15.479651928 127.0.0.1:57415 127.0.0.1:57433 3339732135 12 1e0000003d8a0c0000000000 ....=....... +5349 15.479908466 127.0.0.1:57415 127.0.0.1:57433 3339732147 30 1a00000055ceff62b21b3a5001000300000085a721000000000000000000 ....U..b..:P........!......... +5351 15.480334997 127.0.0.1:57433 127.0.0.1:57415 382182634 12 ffffffff3d8a0c0000000000 ....=....... +5353 15.480825663 127.0.0.1:57433 127.0.0.1:57415 382182646 12 1a00000043480c0000000000 ....CH...... +5355 15.481016397 127.0.0.1:57433 127.0.0.1:57415 382182658 26 1600000085a72100000000000100030000000000000000000000 ......!................... +5357 15.481361389 127.0.0.1:57415 127.0.0.1:57433 3339732177 12 ffffffff43480c0000000000 ....CH...... +5361 15.499440670 127.0.0.1:57415 127.0.0.1:57433 3339732189 12 1a0000003e8a0c0000000000 ....>....... +5363 15.499747992 127.0.0.1:57415 127.0.0.1:57433 3339732201 26 16000000548f6340e25e314001000300000087a7210000000000 ....T.c@.^1@........!..... +5365 15.500881910 127.0.0.1:57433 127.0.0.1:57415 382182684 12 ffffffff3e8a0c0000000000 ....>....... +5367 15.502402067 127.0.0.1:57433 127.0.0.1:57415 382182696 12 1600000044480c0000000000 ....DH...... +5369 15.502663374 127.0.0.1:57433 127.0.0.1:57415 382182708 22 1200000087a721000000000001000300000000000000 ......!............... +5371 15.502953291 127.0.0.1:57415 127.0.0.1:57433 3339732227 12 ffffffff44480c0000000000 ....DH...... +5380 15.606149197 127.0.0.1:57415 127.0.0.1:57433 3339732239 12 1a0000003f8a0c0000000000 ....?....... +5382 15.606463432 127.0.0.1:57415 127.0.0.1:57433 3339732251 26 16000000548f6340e25e314001000300000089a7210000000000 ....T.c@.^1@........!..... +5384 15.606842995 127.0.0.1:57433 127.0.0.1:57415 382182730 12 ffffffff3f8a0c0000000000 ....?....... +5386 15.607988119 127.0.0.1:57433 127.0.0.1:57415 382182742 12 1600000045480c0000000000 ....EH...... +5388 15.608186007 127.0.0.1:57433 127.0.0.1:57415 382182754 22 1200000089a721000000000001000300000000000000 ......!............... +5390 15.608694792 127.0.0.1:57415 127.0.0.1:57433 3339732277 12 ffffffff45480c0000000000 ....EH...... +5393 15.710795164 127.0.0.1:57415 127.0.0.1:57433 3339732289 12 1a000000408a0c0000000000 ....@....... +5395 15.711030960 127.0.0.1:57415 127.0.0.1:57433 3339732301 26 16000000548f6340e25e31400100030000008ba7210000000000 ....T.c@.^1@........!..... +5397 15.711645126 127.0.0.1:57433 127.0.0.1:57415 382182776 12 ffffffff408a0c0000000000 ....@....... +5399 15.712099314 127.0.0.1:57433 127.0.0.1:57415 382182788 12 1600000046480c0000000000 ....FH...... +5401 15.712355614 127.0.0.1:57433 127.0.0.1:57415 382182800 22 120000008ba721000000000001000300000000000000 ......!............... +5403 15.712764740 127.0.0.1:57415 127.0.0.1:57433 3339732327 12 ffffffff46480c0000000000 ....FH...... +5408 15.731505632 127.0.0.1:57433 127.0.0.1:57415 382182822 12 feffffff446c0100586c0100 ....Dl..Xl.. +5416 15.781330824 127.0.0.1:57415 127.0.0.1:57433 3339732339 12 22000000418a0c0000000000 "...A....... +5418 15.781569481 127.0.0.1:57415 127.0.0.1:57433 3339732351 34 1e0000001c2118d0c46f33bb0100030000007d550200000000008a8474c39d01 .....!...o3.......}U........t..... +5420 15.781721830 127.0.0.1:57415 127.0.0.1:57433 3339732385 12 43000000428a0c0000000000 C...B....... +5422 15.781826019 127.0.0.1:57415 127.0.0.1:57433 3339732397 67 3f000000980433cb0cb47c3801000300000001000000007d550200000000003d ?.....3...|8...........}U......=B.....&......... +5424 15.782010317 127.0.0.1:57433 127.0.0.1:57415 382182834 12 ffffffff418a0c0000000000 ....A....... +5426 15.782208204 127.0.0.1:57433 127.0.0.1:57415 382182846 12 ffffffff428a0c0000000000 ....B....... +5428 15.783378601 127.0.0.1:57433 127.0.0.1:57415 382182858 12 3400000047480c0000000000 4...GH...... +5430 15.783530712 127.0.0.1:57433 127.0.0.1:57415 382182870 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....}U............ +5432 15.783750534 127.0.0.1:57415 127.0.0.1:57433 3339732464 12 ffffffff47480c0000000000 ....GH...... +5434 15.785207748 127.0.0.1:57415 127.0.0.1:57433 3339732476 12 1e000000438a0c0000000000 ....C....... +5436 15.785394907 127.0.0.1:57415 127.0.0.1:57433 3339732488 30 1a00000055ceff62b21b3a500100030000008da721000000000000000000 ....U..b..:P........!......... +5438 15.786254883 127.0.0.1:57433 127.0.0.1:57415 382182922 12 ffffffff438a0c0000000000 ....C....... +5440 15.786781311 127.0.0.1:57433 127.0.0.1:57415 382182934 12 1a00000048480c0000000000 ....HH...... +5442 15.786997318 127.0.0.1:57433 127.0.0.1:57415 382182946 26 160000008da72100000000000100030000000000000000000000 ......!................... +5444 15.787307739 127.0.0.1:57415 127.0.0.1:57433 3339732518 12 ffffffff48480c0000000000 ....HH...... +5446 15.816351175 127.0.0.1:57415 127.0.0.1:57433 3339732530 12 1a000000448a0c0000000000 ....D....... +5448 15.816541910 127.0.0.1:57415 127.0.0.1:57433 3339732542 26 16000000548f6340e25e31400100030000008fa7210000000000 ....T.c@.^1@........!..... +5450 15.816904306 127.0.0.1:57433 127.0.0.1:57415 382182972 12 ffffffff448a0c0000000000 ....D....... +5452 15.817477703 127.0.0.1:57433 127.0.0.1:57415 382182984 12 1600000049480c0000000000 ....IH...... +5454 15.817676544 127.0.0.1:57433 127.0.0.1:57415 382182996 22 120000008fa721000000000001000300000000000000 ......!............... +5456 15.818084002 127.0.0.1:57415 127.0.0.1:57433 3339732568 12 ffffffff49480c0000000000 ....IH...... +5463 15.920221806 127.0.0.1:57415 127.0.0.1:57433 3339732580 12 1a000000458a0c0000000000 ....E....... +5465 15.920520067 127.0.0.1:57415 127.0.0.1:57433 3339732592 26 16000000548f6340e25e314001000300000091a7210000000000 ....T.c@.^1@........!..... +5467 15.920899868 127.0.0.1:57433 127.0.0.1:57415 382183018 12 ffffffff458a0c0000000000 ....E....... +5469 15.921564102 127.0.0.1:57433 127.0.0.1:57415 382183030 12 160000004a480c0000000000 ....JH...... +5471 15.921724319 127.0.0.1:57433 127.0.0.1:57415 382183042 22 1200000091a721000000000001000300000000000000 ......!............... +5473 15.922016382 127.0.0.1:57415 127.0.0.1:57433 3339732618 12 ffffffff4a480c0000000000 ....JH...... +5475 15.922254086 127.0.0.1:57415 127.0.0.1:57433 3339732630 12 feffffff596c0100446c0100 ....Yl..Dl.. +5486 16.025068521 127.0.0.1:57415 127.0.0.1:57433 3339732642 12 1a000000468a0c0000000000 ....F....... +5488 16.025302649 127.0.0.1:57415 127.0.0.1:57433 3339732654 26 16000000548f6340e25e314001000300000093a7210000000000 ....T.c@.^1@........!..... +5490 16.025533199 127.0.0.1:57433 127.0.0.1:57415 382183064 12 ffffffff468a0c0000000000 ....F....... +5492 16.026233673 127.0.0.1:57433 127.0.0.1:57415 382183076 12 160000004b480c0000000000 ....KH...... +5494 16.026414871 127.0.0.1:57433 127.0.0.1:57415 382183088 22 1200000093a721000000000001000300000000000000 ......!............... +5496 16.026737690 127.0.0.1:57415 127.0.0.1:57433 3339732680 12 ffffffff4b480c0000000000 ....KH...... +5499 16.087314367 127.0.0.1:57415 127.0.0.1:57433 3339732692 12 65000000478a0c0000000000 e...G....... +5501 16.087572336 127.0.0.1:57415 127.0.0.1:57433 3339732704 101 1e0000001c2118d0c46f33bb0100030000007e55020000000000bb8574c39d01 .....!...o3.......~U........t.....?.....3...|8.. +5503 16.088053226 127.0.0.1:57433 127.0.0.1:57415 382183110 12 ffffffff478a0c0000000000 ....G....... +5505 16.089449406 127.0.0.1:57433 127.0.0.1:57415 382183122 12 340000004c480c0000000000 4...LH...... +5507 16.089626312 127.0.0.1:57433 127.0.0.1:57415 382183134 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([.....~U..........;. +5509 16.089932442 127.0.0.1:57415 127.0.0.1:57433 3339732805 12 ffffffff4c480c0000000000 ....LH...... +5512 16.091463566 127.0.0.1:57415 127.0.0.1:57433 3339732817 12 1e000000488a0c0000000000 ....H....... +5515 16.091656208 127.0.0.1:57415 127.0.0.1:57433 3339732829 30 1a00000055ceff62b21b3a5001000300000095a721000000000000000000 ....U..b..:P........!......... +5517 16.091971636 127.0.0.1:57433 127.0.0.1:57415 382183186 12 ffffffff488a0c0000000000 ....H....... +5519 16.092760324 127.0.0.1:57433 127.0.0.1:57415 382183198 12 1a0000004d480c0000000000 ....MH...... +5521 16.092987061 127.0.0.1:57433 127.0.0.1:57415 382183210 26 1600000095a72100000000000100030000000000000000000000 ......!................... +5523 16.093212128 127.0.0.1:57415 127.0.0.1:57433 3339732859 12 ffffffff4d480c0000000000 ....MH...... +5525 16.128845453 127.0.0.1:57415 127.0.0.1:57433 3339732871 12 1a000000498a0c0000000000 ....I....... +5527 16.129081011 127.0.0.1:57415 127.0.0.1:57433 3339732883 26 16000000548f6340e25e314001000300000097a7210000000000 ....T.c@.^1@........!..... +5529 16.129412889 127.0.0.1:57433 127.0.0.1:57415 382183236 12 ffffffff498a0c0000000000 ....I....... +5531 16.130245209 127.0.0.1:57433 127.0.0.1:57415 382183248 12 160000004e480c0000000000 ....NH...... +5533 16.130456686 127.0.0.1:57433 127.0.0.1:57415 382183260 22 1200000097a721000000000001000300000000000000 ......!............... +5535 16.130766153 127.0.0.1:57415 127.0.0.1:57433 3339732909 12 ffffffff4e480c0000000000 ....NH...... +5540 16.233533859 127.0.0.1:57433 127.0.0.1:57415 382183282 12 feffffff456c0100596c0100 ....El..Yl.. +5541 16.233545542 127.0.0.1:57415 127.0.0.1:57433 3339732921 12 1a0000004a8a0c0000000000 ....J....... +5544 16.233757973 127.0.0.1:57415 127.0.0.1:57433 3339732933 26 16000000548f6340e25e314001000300000099a7210000000000 ....T.c@.^1@........!..... +5546 16.234144688 127.0.0.1:57433 127.0.0.1:57415 382183294 12 ffffffff4a8a0c0000000000 ....J....... +5548 16.235431433 127.0.0.1:57433 127.0.0.1:57415 382183306 12 160000004f480c0000000000 ....OH...... +5550 16.235630035 127.0.0.1:57433 127.0.0.1:57415 382183318 22 1200000099a721000000000001000300000000000000 ......!............... +5552 16.235959530 127.0.0.1:57415 127.0.0.1:57433 3339732959 12 ffffffff4f480c0000000000 ....OH...... +5560 16.337967634 127.0.0.1:57415 127.0.0.1:57433 3339732971 12 1a0000004b8a0c0000000000 ....K....... +5562 16.338224173 127.0.0.1:57415 127.0.0.1:57433 3339732983 26 16000000548f6340e25e31400100030000009ba7210000000000 ....T.c@.^1@........!..... +5564 16.338640690 127.0.0.1:57433 127.0.0.1:57415 382183340 12 ffffffff4b8a0c0000000000 ....K....... +5566 16.339221001 127.0.0.1:57433 127.0.0.1:57415 382183352 12 1600000050480c0000000000 ....PH...... +5568 16.339408875 127.0.0.1:57433 127.0.0.1:57415 382183364 22 120000009ba721000000000001000300000000000000 ......!............... +5570 16.339790106 127.0.0.1:57415 127.0.0.1:57433 3339733009 12 ffffffff50480c0000000000 ....PH...... +5578 16.393424511 127.0.0.1:57415 127.0.0.1:57433 3339733021 12 650000004c8a0c0000000000 e...L....... +5580 16.393646002 127.0.0.1:57415 127.0.0.1:57433 3339733033 101 1e0000001c2118d0c46f33bb0100030000007f55020000000000ed8674c39d01 .....!...o3........U........t.....?.....3...|8.. +5582 16.394027948 127.0.0.1:57433 127.0.0.1:57415 382183386 12 ffffffff4c8a0c0000000000 ....L....... +5584 16.395339012 127.0.0.1:57433 127.0.0.1:57415 382183398 12 3400000051480c0000000000 4...QH...... +5586 16.395558357 127.0.0.1:57433 127.0.0.1:57415 382183410 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U.........Cj. +5588 16.395905018 127.0.0.1:57415 127.0.0.1:57433 3339733134 12 ffffffff51480c0000000000 ....QH...... +5590 16.397930384 127.0.0.1:57415 127.0.0.1:57433 3339733146 12 1e0000004d8a0c0000000000 ....M....... +5592 16.398142338 127.0.0.1:57415 127.0.0.1:57433 3339733158 30 1a00000055ceff62b21b3a500100030000009da721000000000000000000 ....U..b..:P........!......... +5594 16.398455381 127.0.0.1:57433 127.0.0.1:57415 382183462 12 ffffffff4d8a0c0000000000 ....M....... +5596 16.399325371 127.0.0.1:57433 127.0.0.1:57415 382183474 12 1a00000052480c0000000000 ....RH...... +5598 16.399521112 127.0.0.1:57433 127.0.0.1:57415 382183486 26 160000009da72100000000000100030000000000000000000000 ......!................... +5600 16.399891853 127.0.0.1:57415 127.0.0.1:57433 3339733188 12 ffffffff52480c0000000000 ....RH...... +5602 16.423784018 127.0.0.1:57415 127.0.0.1:57433 3339733200 12 feffffff5a6c0100456c0100 ....Zl..El.. +5606 16.441288948 127.0.0.1:57415 127.0.0.1:57433 3339733212 12 1a0000004e8a0c0000000000 ....N....... +5608 16.441498518 127.0.0.1:57415 127.0.0.1:57433 3339733224 26 16000000548f6340e25e31400100030000009fa7210000000000 ....T.c@.^1@........!..... +5610 16.442713737 127.0.0.1:57433 127.0.0.1:57415 382183512 12 ffffffff4e8a0c0000000000 ....N....... +5612 16.443262577 127.0.0.1:57433 127.0.0.1:57415 382183524 12 1600000053480c0000000000 ....SH...... +5614 16.443436623 127.0.0.1:57433 127.0.0.1:57415 382183536 22 120000009fa721000000000001000300000000000000 ......!............... +5616 16.443789482 127.0.0.1:57415 127.0.0.1:57433 3339733250 12 ffffffff53480c0000000000 ....SH...... +5626 16.546732426 127.0.0.1:57415 127.0.0.1:57433 3339733262 12 1a0000004f8a0c0000000000 ....O....... +5628 16.546985149 127.0.0.1:57415 127.0.0.1:57433 3339733274 26 16000000548f6340e25e3140010003000000a1a7210000000000 ....T.c@.^1@........!..... +5630 16.547401190 127.0.0.1:57433 127.0.0.1:57415 382183558 12 ffffffff4f8a0c0000000000 ....O....... +5632 16.548018932 127.0.0.1:57433 127.0.0.1:57415 382183570 12 1600000054480c0000000000 ....TH...... +5634 16.548157692 127.0.0.1:57433 127.0.0.1:57415 382183582 22 12000000a1a721000000000001000300000000000000 ......!............... +5636 16.548417568 127.0.0.1:57415 127.0.0.1:57433 3339733300 12 ffffffff54480c0000000000 ....TH...... +5641 16.650090218 127.0.0.1:57415 127.0.0.1:57433 3339733312 12 1a000000508a0c0000000000 ....P....... +5643 16.650391579 127.0.0.1:57415 127.0.0.1:57433 3339733324 26 16000000548f6340e25e3140010003000000a3a7210000000000 ....T.c@.^1@........!..... +5645 16.650776625 127.0.0.1:57433 127.0.0.1:57415 382183604 12 ffffffff508a0c0000000000 ....P....... +5647 16.651713133 127.0.0.1:57433 127.0.0.1:57415 382183616 12 1600000055480c0000000000 ....UH...... +5649 16.651895046 127.0.0.1:57433 127.0.0.1:57415 382183628 22 12000000a3a721000000000001000300000000000000 ......!............... +5651 16.652233839 127.0.0.1:57415 127.0.0.1:57433 3339733350 12 ffffffff55480c0000000000 ....UH...... +5653 16.699849844 127.0.0.1:57415 127.0.0.1:57433 3339733362 12 65000000518a0c0000000000 e...Q....... +5655 16.700065613 127.0.0.1:57415 127.0.0.1:57433 3339733374 101 1e0000001c2118d0c46f33bb0100030000008055020000000000218874c39d01 .....!...o3........U......!.t.....?.....3...|8.. +5657 16.700474501 127.0.0.1:57433 127.0.0.1:57415 382183650 12 ffffffff518a0c0000000000 ....Q....... +5659 16.702315569 127.0.0.1:57433 127.0.0.1:57415 382183662 12 3400000056480c0000000000 4...VH...... +5661 16.702503443 127.0.0.1:57433 127.0.0.1:57415 382183674 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U............ +5663 16.702881575 127.0.0.1:57415 127.0.0.1:57433 3339733475 12 ffffffff56480c0000000000 ....VH...... +5665 16.704761982 127.0.0.1:57415 127.0.0.1:57433 3339733487 12 1e000000528a0c0000000000 ....R....... +5667 16.704957724 127.0.0.1:57415 127.0.0.1:57433 3339733499 30 1a00000055ceff62b21b3a50010003000000a5a721000000000000000000 ....U..b..:P........!......... +5669 16.705400705 127.0.0.1:57433 127.0.0.1:57415 382183726 12 ffffffff528a0c0000000000 ....R....... +5671 16.706450224 127.0.0.1:57433 127.0.0.1:57415 382183738 12 1a00000057480c0000000000 ....WH...... +5673 16.706668854 127.0.0.1:57433 127.0.0.1:57415 382183750 26 16000000a5a72100000000000100030000000000000000000000 ......!................... +5675 16.707013607 127.0.0.1:57415 127.0.0.1:57433 3339733529 12 ffffffff57480c0000000000 ....WH...... +5680 16.734189510 127.0.0.1:57433 127.0.0.1:57415 382183776 12 feffffff466c01005a6c0100 ....Fl..Zl.. +5686 16.754278898 127.0.0.1:57415 127.0.0.1:57433 3339733541 12 1a000000538a0c0000000000 ....S....... +5688 16.754460812 127.0.0.1:57415 127.0.0.1:57433 3339733553 26 16000000548f6340e25e3140010003000000a7a7210000000000 ....T.c@.^1@........!..... +5690 16.754723072 127.0.0.1:57433 127.0.0.1:57415 382183788 12 ffffffff538a0c0000000000 ....S....... +5692 16.755744696 127.0.0.1:57433 127.0.0.1:57415 382183800 12 1600000058480c0000000000 ....XH...... +5694 16.755939960 127.0.0.1:57433 127.0.0.1:57415 382183812 22 12000000a7a721000000000001000300000000000000 ......!............... +5696 16.756365299 127.0.0.1:57415 127.0.0.1:57433 3339733579 12 ffffffff58480c0000000000 ....XH...... +5703 16.858643770 127.0.0.1:57415 127.0.0.1:57433 3339733591 12 1a000000548a0c0000000000 ....T....... +5705 16.858920336 127.0.0.1:57415 127.0.0.1:57433 3339733603 26 16000000548f6340e25e3140010003000000a9a7210000000000 ....T.c@.^1@........!..... +5707 16.859307766 127.0.0.1:57433 127.0.0.1:57415 382183834 12 ffffffff548a0c0000000000 ....T....... +5709 16.860028505 127.0.0.1:57433 127.0.0.1:57415 382183846 12 1600000059480c0000000000 ....YH...... +5711 16.860214949 127.0.0.1:57433 127.0.0.1:57415 382183858 22 12000000a9a721000000000001000300000000000000 ......!............... +5713 16.860571861 127.0.0.1:57415 127.0.0.1:57433 3339733629 12 ffffffff59480c0000000000 ....YH...... +5715 16.925431252 127.0.0.1:57415 127.0.0.1:57433 3339733641 12 feffffff5b6c0100466c0100 ....[l..Fl.. +5720 16.962558985 127.0.0.1:57415 127.0.0.1:57433 3339733653 12 1a000000558a0c0000000000 ....U....... +5722 16.962846756 127.0.0.1:57415 127.0.0.1:57433 3339733665 26 16000000548f6340e25e3140010003000000aba7210000000000 ....T.c@.^1@........!..... +5724 16.963203430 127.0.0.1:57433 127.0.0.1:57415 382183880 12 ffffffff558a0c0000000000 ....U....... +5726 16.964089394 127.0.0.1:57433 127.0.0.1:57415 382183892 12 160000005a480c0000000000 ....ZH...... +5728 16.964250565 127.0.0.1:57433 127.0.0.1:57415 382183904 22 12000000aba721000000000001000300000000000000 ......!............... +5730 16.964579105 127.0.0.1:57415 127.0.0.1:57433 3339733691 12 ffffffff5a480c0000000000 ....ZH...... +5734 17.007580280 127.0.0.1:57415 127.0.0.1:57433 3339733703 12 65000000568a0c0000000000 e...V....... +5736 17.007818699 127.0.0.1:57415 127.0.0.1:57433 3339733715 101 1e0000001c2118d0c46f33bb0100030000008155020000000000538974c39d01 .....!...o3........U......S.t.....?.....3...|8.. +5738 17.008141041 127.0.0.1:57433 127.0.0.1:57415 382183926 12 ffffffff568a0c0000000000 ....V....... +5740 17.009843111 127.0.0.1:57433 127.0.0.1:57415 382183938 12 340000005b480c0000000000 4...[H...... +5742 17.010008812 127.0.0.1:57433 127.0.0.1:57415 382183950 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U............ +5744 17.010285854 127.0.0.1:57415 127.0.0.1:57433 3339733816 12 ffffffff5b480c0000000000 ....[H...... +5746 17.011818409 127.0.0.1:57415 127.0.0.1:57433 3339733828 12 1e000000578a0c0000000000 ....W....... +5748 17.012004137 127.0.0.1:57415 127.0.0.1:57433 3339733840 30 1a00000055ceff62b21b3a50010003000000ada721000000000000000000 ....U..b..:P........!......... +5750 17.012525320 127.0.0.1:57433 127.0.0.1:57415 382184002 12 ffffffff578a0c0000000000 ....W....... +5752 17.013295889 127.0.0.1:57433 127.0.0.1:57415 382184014 12 1a0000005c480c0000000000 ....\H...... +5754 17.013523340 127.0.0.1:57433 127.0.0.1:57415 382184026 26 16000000ada72100000000000100030000000000000000000000 ......!................... +5756 17.013952255 127.0.0.1:57415 127.0.0.1:57433 3339733870 12 ffffffff5c480c0000000000 ....\H...... +5763 17.067333698 127.0.0.1:57415 127.0.0.1:57433 3339733882 12 1a000000588a0c0000000000 ....X....... +5765 17.067541838 127.0.0.1:57415 127.0.0.1:57433 3339733894 26 16000000548f6340e25e3140010003000000afa7210000000000 ....T.c@.^1@........!..... +5767 17.068109035 127.0.0.1:57433 127.0.0.1:57415 382184052 12 ffffffff588a0c0000000000 ....X....... +5769 17.068538904 127.0.0.1:57433 127.0.0.1:57415 382184064 12 160000005d480c0000000000 ....]H...... +5771 17.068781614 127.0.0.1:57433 127.0.0.1:57415 382184076 22 12000000afa721000000000001000300000000000000 ......!............... +5773 17.069043875 127.0.0.1:57415 127.0.0.1:57433 3339733920 12 ffffffff5d480c0000000000 ....]H...... +5778 17.171157837 127.0.0.1:57415 127.0.0.1:57433 3339733932 12 1a000000598a0c0000000000 ....Y....... +5780 17.171397209 127.0.0.1:57415 127.0.0.1:57433 3339733944 26 16000000548f6340e25e3140010003000000b1a7210000000000 ....T.c@.^1@........!..... +5782 17.172138214 127.0.0.1:57433 127.0.0.1:57415 382184098 12 ffffffff598a0c0000000000 ....Y....... +5784 17.172585487 127.0.0.1:57433 127.0.0.1:57415 382184110 12 160000005e480c0000000000 ....^H...... +5786 17.172709227 127.0.0.1:57433 127.0.0.1:57415 382184122 22 12000000b1a721000000000001000300000000000000 ......!............... +5788 17.173089266 127.0.0.1:57415 127.0.0.1:57433 3339733970 12 ffffffff5e480c0000000000 ....^H...... +5792 17.236222506 127.0.0.1:57433 127.0.0.1:57415 382184144 12 feffffff476c01005b6c0100 ....Gl..[l.. +5799 17.275344372 127.0.0.1:57415 127.0.0.1:57433 3339733982 12 1a0000005a8a0c0000000000 ....Z....... +5801 17.275600433 127.0.0.1:57415 127.0.0.1:57433 3339733994 26 16000000548f6340e25e3140010003000000b3a7210000000000 ....T.c@.^1@........!..... +5803 17.275976419 127.0.0.1:57433 127.0.0.1:57415 382184156 12 ffffffff5a8a0c0000000000 ....Z....... +5805 17.276789665 127.0.0.1:57433 127.0.0.1:57415 382184168 12 160000005f480c0000000000 ...._H...... +5807 17.277024269 127.0.0.1:57433 127.0.0.1:57415 382184180 22 12000000b3a721000000000001000300000000000000 ......!............... +5809 17.277463436 127.0.0.1:57415 127.0.0.1:57433 3339734020 12 ffffffff5f480c0000000000 ...._H...... +5811 17.313093185 127.0.0.1:57415 127.0.0.1:57433 3339734032 12 650000005b8a0c0000000000 e...[....... +5813 17.313281536 127.0.0.1:57415 127.0.0.1:57433 3339734044 101 1e0000001c2118d0c46f33bb0100030000008255020000000000858a74c39d01 .....!...o3........U........t.....?.....3...|8.. +5815 17.313670397 127.0.0.1:57433 127.0.0.1:57415 382184202 12 ffffffff5b8a0c0000000000 ....[....... +5817 17.315000534 127.0.0.1:57433 127.0.0.1:57415 382184214 12 3400000060480c0000000000 4...`H...... +5819 17.315193415 127.0.0.1:57433 127.0.0.1:57415 382184226 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U............ +5821 17.315413237 127.0.0.1:57415 127.0.0.1:57433 3339734145 12 ffffffff60480c0000000000 ....`H...... +5823 17.316848278 127.0.0.1:57415 127.0.0.1:57433 3339734157 12 1e0000005c8a0c0000000000 ....\....... +5825 17.317078352 127.0.0.1:57415 127.0.0.1:57433 3339734169 30 1a00000055ceff62b21b3a50010003000000b5a721000000000000000000 ....U..b..:P........!......... +5827 17.317470074 127.0.0.1:57433 127.0.0.1:57415 382184278 12 ffffffff5c8a0c0000000000 ....\....... +5829 17.318108082 127.0.0.1:57433 127.0.0.1:57415 382184290 12 1a00000061480c0000000000 ....aH...... +5831 17.318287373 127.0.0.1:57433 127.0.0.1:57415 382184302 26 16000000b5a72100000000000100030000000000000000000000 ......!................... +5833 17.318654299 127.0.0.1:57415 127.0.0.1:57433 3339734199 12 ffffffff61480c0000000000 ....aH...... +5840 17.379684210 127.0.0.1:57415 127.0.0.1:57433 3339734211 12 1a0000005d8a0c0000000000 ....]....... +5842 17.379987955 127.0.0.1:57415 127.0.0.1:57433 3339734223 26 16000000548f6340e25e3140010003000000b7a7210000000000 ....T.c@.^1@........!..... +5844 17.380433559 127.0.0.1:57433 127.0.0.1:57415 382184328 12 ffffffff5d8a0c0000000000 ....]....... +5846 17.381255388 127.0.0.1:57433 127.0.0.1:57415 382184340 12 1600000062480c0000000000 ....bH...... +5848 17.381467819 127.0.0.1:57433 127.0.0.1:57415 382184352 22 12000000b7a721000000000001000300000000000000 ......!............... +5850 17.381803513 127.0.0.1:57415 127.0.0.1:57433 3339734249 12 ffffffff62480c0000000000 ....bH...... +5854 17.426352024 127.0.0.1:57415 127.0.0.1:57433 3339734261 12 feffffff5c6c0100476c0100 ....\l..Gl.. +5859 17.484893799 127.0.0.1:57415 127.0.0.1:57433 3339734273 12 1a0000005e8a0c0000000000 ....^....... +5861 17.485129595 127.0.0.1:57415 127.0.0.1:57433 3339734285 26 16000000548f6340e25e3140010003000000b9a7210000000000 ....T.c@.^1@........!..... +5863 17.485564232 127.0.0.1:57433 127.0.0.1:57415 382184374 12 ffffffff5e8a0c0000000000 ....^....... +5865 17.485840321 127.0.0.1:57433 127.0.0.1:57415 382184386 12 1600000063480c0000000000 ....cH...... +5867 17.486020088 127.0.0.1:57433 127.0.0.1:57415 382184398 22 12000000b9a721000000000001000300000000000000 ......!............... +5869 17.486281633 127.0.0.1:57415 127.0.0.1:57433 3339734311 12 ffffffff63480c0000000000 ....cH...... +5915 17.588074207 127.0.0.1:57415 127.0.0.1:57433 3339734323 12 1a0000005f8a0c0000000000 ...._....... +5917 17.588339567 127.0.0.1:57415 127.0.0.1:57433 3339734335 26 16000000548f6340e25e3140010003000000bba7210000000000 ....T.c@.^1@........!..... +5919 17.588744640 127.0.0.1:57433 127.0.0.1:57415 382184420 12 ffffffff5f8a0c0000000000 ...._....... +5921 17.589470863 127.0.0.1:57433 127.0.0.1:57415 382184432 12 1600000064480c0000000000 ....dH...... +5923 17.589679003 127.0.0.1:57433 127.0.0.1:57415 382184444 22 12000000bba721000000000001000300000000000000 ......!............... +5925 17.590098143 127.0.0.1:57415 127.0.0.1:57433 3339734361 12 ffffffff64480c0000000000 ....dH...... +5954 17.619767904 127.0.0.1:57415 127.0.0.1:57433 3339734373 12 65000000608a0c0000000000 e...`....... +5956 17.619975090 127.0.0.1:57415 127.0.0.1:57433 3339734385 101 1e0000001c2118d0c46f33bb0100030000008355020000000000b88b74c39d01 .....!...o3........U........t.....?.....3...|8.. +5958 17.620398045 127.0.0.1:57433 127.0.0.1:57415 382184466 12 ffffffff608a0c0000000000 ....`....... +5964 17.621429682 127.0.0.1:57433 127.0.0.1:57415 382184478 12 3400000065480c0000000000 4...eH...... +5966 17.621614218 127.0.0.1:57433 127.0.0.1:57415 382184490 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U........cX%. +5968 17.621861458 127.0.0.1:57415 127.0.0.1:57433 3339734486 12 ffffffff65480c0000000000 ....eH...... +5974 17.623074532 127.0.0.1:57415 127.0.0.1:57433 3339734498 12 1e000000618a0c0000000000 ....a....... +5976 17.623266935 127.0.0.1:57415 127.0.0.1:57433 3339734510 30 1a00000055ceff62b21b3a50010003000000bda721000000000000000000 ....U..b..:P........!......... +5980 17.623653889 127.0.0.1:57433 127.0.0.1:57415 382184542 12 ffffffff618a0c0000000000 ....a....... +5988 17.628535032 127.0.0.1:57433 127.0.0.1:57415 382184554 12 1a00000066480c0000000000 ....fH...... +5990 17.628708124 127.0.0.1:57433 127.0.0.1:57415 382184566 26 16000000bda72100000000000100030000000000000000000000 ......!................... +5992 17.628952265 127.0.0.1:57415 127.0.0.1:57433 3339734540 12 ffffffff66480c0000000000 ....fH...... +5994 17.693130016 127.0.0.1:57415 127.0.0.1:57433 3339734552 12 1a000000628a0c0000000000 ....b....... +5996 17.693447351 127.0.0.1:57415 127.0.0.1:57433 3339734564 26 16000000548f6340e25e3140010003000000bfa7210000000000 ....T.c@.^1@........!..... +5998 17.693849802 127.0.0.1:57433 127.0.0.1:57415 382184592 12 ffffffff628a0c0000000000 ....b....... +6000 17.694548130 127.0.0.1:57433 127.0.0.1:57415 382184604 12 1600000067480c0000000000 ....gH...... +6002 17.694755316 127.0.0.1:57433 127.0.0.1:57415 382184616 22 12000000bfa721000000000001000300000000000000 ......!............... +6004 17.695031881 127.0.0.1:57415 127.0.0.1:57433 3339734590 12 ffffffff67480c0000000000 ....gH...... +6008 17.737201929 127.0.0.1:57433 127.0.0.1:57415 382184638 12 feffffff486c01005c6c0100 ....Hl..\l.. +6014 17.797184706 127.0.0.1:57415 127.0.0.1:57433 3339734602 12 1a000000638a0c0000000000 ....c....... +6016 17.797444820 127.0.0.1:57415 127.0.0.1:57433 3339734614 26 16000000548f6340e25e3140010003000000c1a7210000000000 ....T.c@.^1@........!..... +6018 17.798232555 127.0.0.1:57433 127.0.0.1:57415 382184650 12 ffffffff638a0c0000000000 ....c....... +6020 17.799019814 127.0.0.1:57433 127.0.0.1:57415 382184662 12 1600000068480c0000000000 ....hH...... +6022 17.799210310 127.0.0.1:57433 127.0.0.1:57415 382184674 22 12000000c1a721000000000001000300000000000000 ......!............... +6024 17.799566031 127.0.0.1:57415 127.0.0.1:57433 3339734640 12 ffffffff68480c0000000000 ....hH...... +6030 17.902989149 127.0.0.1:57415 127.0.0.1:57433 3339734652 12 1a000000648a0c0000000000 ....d....... +6032 17.903273582 127.0.0.1:57415 127.0.0.1:57433 3339734664 26 16000000548f6340e25e3140010003000000c3a7210000000000 ....T.c@.^1@........!..... +6034 17.903767109 127.0.0.1:57433 127.0.0.1:57415 382184696 12 ffffffff648a0c0000000000 ....d....... +6036 17.904474258 127.0.0.1:57433 127.0.0.1:57415 382184708 12 1600000069480c0000000000 ....iH...... +6038 17.904696226 127.0.0.1:57433 127.0.0.1:57415 382184720 22 12000000c3a721000000000001000300000000000000 ......!............... +6040 17.905002594 127.0.0.1:57415 127.0.0.1:57433 3339734690 12 ffffffff69480c0000000000 ....iH...... +6042 17.924157619 127.0.0.1:57415 127.0.0.1:57433 3339734702 12 65000000658a0c0000000000 e...e....... +6044 17.924365044 127.0.0.1:57415 127.0.0.1:57433 3339734714 101 1e0000001c2118d0c46f33bb0100030000008455020000000000e88c74c39d01 .....!...o3........U........t.....?.....3...|8.. +6046 17.924719095 127.0.0.1:57433 127.0.0.1:57415 382184742 12 ffffffff658a0c0000000000 ....e....... +6048 17.926059008 127.0.0.1:57433 127.0.0.1:57415 382184754 12 340000006a480c0000000000 4...jH...... +6050 17.926262140 127.0.0.1:57433 127.0.0.1:57415 382184766 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U........y.S. +6052 17.926639318 127.0.0.1:57415 127.0.0.1:57433 3339734815 12 ffffffff6a480c0000000000 ....jH...... +6054 17.927471399 127.0.0.1:57415 127.0.0.1:57433 3339734827 12 feffffff5d6c0100486c0100 ....]l..Hl.. +6056 17.927847385 127.0.0.1:57415 127.0.0.1:57433 3339734839 12 1e000000668a0c0000000000 ....f....... +6058 17.928000689 127.0.0.1:57415 127.0.0.1:57433 3339734851 30 1a00000055ceff62b21b3a50010003000000c5a721000000000000000000 ....U..b..:P........!......... +6060 17.928365946 127.0.0.1:57433 127.0.0.1:57415 382184818 12 ffffffff668a0c0000000000 ....f....... +6062 17.928949594 127.0.0.1:57433 127.0.0.1:57415 382184830 12 1a0000006b480c0000000000 ....kH...... +6064 17.929133415 127.0.0.1:57433 127.0.0.1:57415 382184842 26 16000000c5a72100000000000100030000000000000000000000 ......!................... +6066 17.929939032 127.0.0.1:57415 127.0.0.1:57433 3339734881 12 ffffffff6b480c0000000000 ....kH...... +6072 18.007209539 127.0.0.1:57415 127.0.0.1:57433 3339734893 12 1a000000678a0c0000000000 ....g....... +6074 18.007480145 127.0.0.1:57415 127.0.0.1:57433 3339734905 26 16000000548f6340e25e3140010003000000c7a7210000000000 ....T.c@.^1@........!..... +6076 18.007985592 127.0.0.1:57433 127.0.0.1:57415 382184868 12 ffffffff678a0c0000000000 ....g....... +6078 18.008549213 127.0.0.1:57433 127.0.0.1:57415 382184880 12 160000006c480c0000000000 ....lH...... +6080 18.008719921 127.0.0.1:57433 127.0.0.1:57415 382184892 22 12000000c7a721000000000001000300000000000000 ......!............... +6082 18.008987427 127.0.0.1:57415 127.0.0.1:57433 3339734931 12 ffffffff6c480c0000000000 ....lH...... +6090 18.110886335 127.0.0.1:57415 127.0.0.1:57433 3339734943 12 1a000000688a0c0000000000 ....h....... +6092 18.111115932 127.0.0.1:57415 127.0.0.1:57433 3339734955 26 16000000548f6340e25e3140010003000000c9a7210000000000 ....T.c@.^1@........!..... +6094 18.111468315 127.0.0.1:57433 127.0.0.1:57415 382184914 12 ffffffff688a0c0000000000 ....h....... +6096 18.111873388 127.0.0.1:57433 127.0.0.1:57415 382184926 12 160000006d480c0000000000 ....mH...... +6098 18.112023830 127.0.0.1:57433 127.0.0.1:57415 382184938 22 12000000c9a721000000000001000300000000000000 ......!............... +6100 18.112275839 127.0.0.1:57415 127.0.0.1:57433 3339734981 12 ffffffff6d480c0000000000 ....mH...... +6102 18.214390755 127.0.0.1:57415 127.0.0.1:57433 3339734993 12 1a000000698a0c0000000000 ....i....... +6104 18.214670897 127.0.0.1:57415 127.0.0.1:57433 3339735005 26 16000000548f6340e25e3140010003000000cba7210000000000 ....T.c@.^1@........!..... +6106 18.215083838 127.0.0.1:57433 127.0.0.1:57415 382184960 12 ffffffff698a0c0000000000 ....i....... +6108 18.215886831 127.0.0.1:57433 127.0.0.1:57415 382184972 12 160000006e480c0000000000 ....nH...... +6110 18.216080427 127.0.0.1:57433 127.0.0.1:57415 382184984 22 12000000cba721000000000001000300000000000000 ......!............... +6112 18.216464520 127.0.0.1:57415 127.0.0.1:57433 3339735031 12 ffffffff6e480c0000000000 ....nH...... +6114 18.229328394 127.0.0.1:57415 127.0.0.1:57433 3339735043 12 220000006a8a0c0000000000 "...j....... +6116 18.229613781 127.0.0.1:57415 127.0.0.1:57433 3339735055 34 1e0000001c2118d0c46f33bb01000300000085550200000000001a8e74c39d01 .....!...o3........U........t..... +6118 18.229804754 127.0.0.1:57415 127.0.0.1:57433 3339735089 12 430000006b8a0c0000000000 C...k....... +6120 18.229956150 127.0.0.1:57415 127.0.0.1:57433 3339735101 67 3f000000980433cb0cb47c38010003000000010000000085550200000000003d ?.....3...|8............U......=B.....&......... +6122 18.230077744 127.0.0.1:57433 127.0.0.1:57415 382185006 12 ffffffff6a8a0c0000000000 ....j....... +6124 18.230277300 127.0.0.1:57433 127.0.0.1:57415 382185018 12 ffffffff6b8a0c0000000000 ....k....... +6128 18.231498718 127.0.0.1:57433 127.0.0.1:57415 382185030 12 340000006f480c0000000000 4...oH...... +6130 18.231651783 127.0.0.1:57433 127.0.0.1:57415 382185042 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U........ec.. +6132 18.231907129 127.0.0.1:57415 127.0.0.1:57433 3339735168 12 ffffffff6f480c0000000000 ....oH...... +6134 18.233469009 127.0.0.1:57415 127.0.0.1:57433 3339735180 12 1e0000006c8a0c0000000000 ....l....... +6136 18.233651876 127.0.0.1:57415 127.0.0.1:57433 3339735192 30 1a00000055ceff62b21b3a50010003000000cda721000000000000000000 ....U..b..:P........!......... +6138 18.234388351 127.0.0.1:57433 127.0.0.1:57415 382185094 12 ffffffff6c8a0c0000000000 ....l....... +6140 18.234838486 127.0.0.1:57433 127.0.0.1:57415 382185106 12 1a00000070480c0000000000 ....pH...... +6142 18.234973669 127.0.0.1:57433 127.0.0.1:57415 382185118 26 16000000cda72100000000000100030000000000000000000000 ......!................... +6144 18.235379934 127.0.0.1:57415 127.0.0.1:57433 3339735222 12 ffffffff70480c0000000000 ....pH...... +6146 18.237781525 127.0.0.1:57433 127.0.0.1:57415 382185144 12 feffffff496c01005d6c0100 ....Il..]l.. +6152 18.318351507 127.0.0.1:57415 127.0.0.1:57433 3339735234 12 1a0000006d8a0c0000000000 ....m....... +6154 18.318567038 127.0.0.1:57415 127.0.0.1:57433 3339735246 26 16000000548f6340e25e3140010003000000cfa7210000000000 ....T.c@.^1@........!..... +6156 18.319094658 127.0.0.1:57433 127.0.0.1:57415 382185156 12 ffffffff6d8a0c0000000000 ....m....... +6158 18.319807768 127.0.0.1:57433 127.0.0.1:57415 382185168 12 1600000071480c0000000000 ....qH...... +6160 18.320000410 127.0.0.1:57433 127.0.0.1:57415 382185180 22 12000000cfa721000000000001000300000000000000 ......!............... +6162 18.320319414 127.0.0.1:57415 127.0.0.1:57433 3339735272 12 ffffffff71480c0000000000 ....qH...... +6168 18.422552347 127.0.0.1:57415 127.0.0.1:57433 3339735284 12 1a0000006e8a0c0000000000 ....n....... +6170 18.422839880 127.0.0.1:57415 127.0.0.1:57433 3339735296 26 16000000548f6340e25e3140010003000000d1a7210000000000 ....T.c@.^1@........!..... +6172 18.423326492 127.0.0.1:57433 127.0.0.1:57415 382185202 12 ffffffff6e8a0c0000000000 ....n....... +6174 18.423996210 127.0.0.1:57433 127.0.0.1:57415 382185214 12 1600000072480c0000000000 ....rH...... +6176 18.424178362 127.0.0.1:57433 127.0.0.1:57415 382185226 22 12000000d1a721000000000001000300000000000000 ......!............... +6178 18.424588442 127.0.0.1:57415 127.0.0.1:57433 3339735322 12 ffffffff72480c0000000000 ....rH...... +6180 18.429008245 127.0.0.1:57415 127.0.0.1:57433 3339735334 12 feffffff5e6c0100496c0100 ....^l..Il.. +6190 18.526062965 127.0.0.1:57415 127.0.0.1:57433 3339735346 12 1a0000006f8a0c0000000000 ....o....... +6192 18.526265383 127.0.0.1:57415 127.0.0.1:57433 3339735358 26 16000000548f6340e25e3140010003000000d3a7210000000000 ....T.c@.^1@........!..... +6194 18.526691914 127.0.0.1:57433 127.0.0.1:57415 382185248 12 ffffffff6f8a0c0000000000 ....o....... +6196 18.527336121 127.0.0.1:57433 127.0.0.1:57415 382185260 12 1600000073480c0000000000 ....sH...... +6198 18.527530432 127.0.0.1:57433 127.0.0.1:57415 382185272 22 12000000d3a721000000000001000300000000000000 ......!............... +6200 18.527812004 127.0.0.1:57415 127.0.0.1:57433 3339735384 12 ffffffff73480c0000000000 ....sH...... +6202 18.536420107 127.0.0.1:57415 127.0.0.1:57433 3339735396 12 65000000708a0c0000000000 e...p....... +6204 18.536603212 127.0.0.1:57415 127.0.0.1:57433 3339735408 101 1e0000001c2118d0c46f33bb01000300000086550200000000004d8f74c39d01 .....!...o3........U......M.t.....?.....3...|8.. +6206 18.536906719 127.0.0.1:57433 127.0.0.1:57415 382185294 12 ffffffff708a0c0000000000 ....p....... +6208 18.538517714 127.0.0.1:57433 127.0.0.1:57415 382185306 12 3400000074480c0000000000 4...tH...... +6210 18.538675308 127.0.0.1:57433 127.0.0.1:57415 382185318 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U........xJ.. +6212 18.538928032 127.0.0.1:57415 127.0.0.1:57433 3339735509 12 ffffffff74480c0000000000 ....tH...... +6214 18.540701389 127.0.0.1:57415 127.0.0.1:57433 3339735521 12 1e000000718a0c0000000000 ....q....... +6216 18.540917397 127.0.0.1:57415 127.0.0.1:57433 3339735533 30 1a00000055ceff62b21b3a50010003000000d5a721000000000000000000 ....U..b..:P........!......... +6218 18.541331530 127.0.0.1:57433 127.0.0.1:57415 382185370 12 ffffffff718a0c0000000000 ....q....... +6220 18.542352915 127.0.0.1:57433 127.0.0.1:57415 382185382 12 1a00000075480c0000000000 ....uH...... +6222 18.542584419 127.0.0.1:57433 127.0.0.1:57415 382185394 26 16000000d5a72100000000000100030000000000000000000000 ......!................... +6224 18.542843103 127.0.0.1:57415 127.0.0.1:57433 3339735563 12 ffffffff75480c0000000000 ....uH...... +6228 18.629459143 127.0.0.1:57415 127.0.0.1:57433 3339735575 12 1a000000728a0c0000000000 ....r....... +6230 18.629775286 127.0.0.1:57415 127.0.0.1:57433 3339735587 26 16000000548f6340e25e3140010003000000d7a7210000000000 ....T.c@.^1@........!..... +6232 18.630134821 127.0.0.1:57433 127.0.0.1:57415 382185420 12 ffffffff728a0c0000000000 ....r....... +6234 18.631126165 127.0.0.1:57433 127.0.0.1:57415 382185432 12 1600000076480c0000000000 ....vH...... +6236 18.631277561 127.0.0.1:57433 127.0.0.1:57415 382185444 22 12000000d7a721000000000001000300000000000000 ......!............... +6238 18.631499290 127.0.0.1:57415 127.0.0.1:57433 3339735613 12 ffffffff76480c0000000000 ....vH...... +6246 18.733392715 127.0.0.1:57415 127.0.0.1:57433 3339735625 12 1a000000738a0c0000000000 ....s....... +6248 18.733630180 127.0.0.1:57415 127.0.0.1:57433 3339735637 26 16000000548f6340e25e3140010003000000d9a7210000000000 ....T.c@.^1@........!..... +6250 18.734039545 127.0.0.1:57433 127.0.0.1:57415 382185466 12 ffffffff738a0c0000000000 ....s....... +6252 18.734513521 127.0.0.1:57433 127.0.0.1:57415 382185478 12 1600000077480c0000000000 ....wH...... +6254 18.734788895 127.0.0.1:57433 127.0.0.1:57415 382185490 22 12000000d9a721000000000001000300000000000000 ......!............... +6256 18.735148907 127.0.0.1:57415 127.0.0.1:57433 3339735663 12 ffffffff77480c0000000000 ....wH...... +6258 18.738173723 127.0.0.1:57433 127.0.0.1:57415 382185512 12 feffffff4a6c01005e6c0100 ....Jl..^l.. +6264 18.837814331 127.0.0.1:57415 127.0.0.1:57433 3339735675 12 1a000000748a0c0000000000 ....t....... +6266 18.838072777 127.0.0.1:57415 127.0.0.1:57433 3339735687 26 16000000548f6340e25e3140010003000000dba7210000000000 ....T.c@.^1@........!..... +6268 18.838411808 127.0.0.1:57433 127.0.0.1:57415 382185524 12 ffffffff748a0c0000000000 ....t....... +6270 18.839298248 127.0.0.1:57433 127.0.0.1:57415 382185536 12 1600000078480c0000000000 ....xH...... +6272 18.839529276 127.0.0.1:57433 127.0.0.1:57415 382185548 22 12000000dba721000000000001000300000000000000 ......!............... +6274 18.839870214 127.0.0.1:57415 127.0.0.1:57433 3339735713 12 ffffffff78480c0000000000 ....xH...... +6276 18.842089176 127.0.0.1:57415 127.0.0.1:57433 3339735725 12 22000000758a0c0000000000 "...u....... +6278 18.842404842 127.0.0.1:57415 127.0.0.1:57433 3339735737 34 1e0000001c2118d0c46f33bb01000300000087550200000000007f9074c39d01 .....!...o3........U........t..... +6280 18.842564106 127.0.0.1:57415 127.0.0.1:57433 3339735771 12 43000000768a0c0000000000 C...v....... +6282 18.842685461 127.0.0.1:57415 127.0.0.1:57433 3339735783 67 3f000000980433cb0cb47c38010003000000010000000087550200000000003d ?.....3...|8............U......=B.....&......... +6284 18.842938662 127.0.0.1:57433 127.0.0.1:57415 382185570 12 ffffffff758a0c0000000000 ....u....... +6286 18.843101025 127.0.0.1:57433 127.0.0.1:57415 382185582 12 ffffffff768a0c0000000000 ....v....... +6288 18.844208241 127.0.0.1:57433 127.0.0.1:57415 382185594 12 3400000079480c0000000000 4...yH...... +6290 18.844457626 127.0.0.1:57433 127.0.0.1:57415 382185606 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U............ +6292 18.844812393 127.0.0.1:57415 127.0.0.1:57433 3339735850 12 ffffffff79480c0000000000 ....yH...... +6294 18.846061230 127.0.0.1:57415 127.0.0.1:57433 3339735862 12 1e000000778a0c0000000000 ....w....... +6296 18.846308708 127.0.0.1:57415 127.0.0.1:57433 3339735874 30 1a00000055ceff62b21b3a50010003000000dda721000000000000000000 ....U..b..:P........!......... +6298 18.846813202 127.0.0.1:57433 127.0.0.1:57415 382185658 12 ffffffff778a0c0000000000 ....w....... +6300 18.847422123 127.0.0.1:57433 127.0.0.1:57415 382185670 12 1a0000007a480c0000000000 ....zH...... +6302 18.847634315 127.0.0.1:57433 127.0.0.1:57415 382185682 26 16000000dda72100000000000100030000000000000000000000 ......!................... +6304 18.847934723 127.0.0.1:57415 127.0.0.1:57433 3339735904 12 ffffffff7a480c0000000000 ....zH...... +6314 18.930002689 127.0.0.1:57415 127.0.0.1:57433 3339735916 12 feffffff5f6c01004a6c0100 ...._l..Jl.. +6316 18.941269398 127.0.0.1:57415 127.0.0.1:57433 3339735928 12 1a000000788a0c0000000000 ....x....... +6318 18.941566229 127.0.0.1:57415 127.0.0.1:57433 3339735940 26 16000000548f6340e25e3140010003000000dfa7210000000000 ....T.c@.^1@........!..... +6320 18.941955090 127.0.0.1:57433 127.0.0.1:57415 382185708 12 ffffffff788a0c0000000000 ....x....... +6322 18.942633390 127.0.0.1:57433 127.0.0.1:57415 382185720 12 160000007b480c0000000000 ....{H...... +6324 18.942779064 127.0.0.1:57433 127.0.0.1:57415 382185732 22 12000000dfa721000000000001000300000000000000 ......!............... +6328 18.943207979 127.0.0.1:57415 127.0.0.1:57433 3339735966 12 ffffffff7b480c0000000000 ....{H...... +6338 19.046014309 127.0.0.1:57415 127.0.0.1:57433 3339735978 12 1a000000798a0c0000000000 ....y....... +6340 19.046325922 127.0.0.1:57415 127.0.0.1:57433 3339735990 26 16000000548f6340e25e3140010003000000e1a7210000000000 ....T.c@.^1@........!..... +6342 19.048118830 127.0.0.1:57433 127.0.0.1:57415 382185754 12 160000007c480c0000000000 ....|H...... +6344 19.048409939 127.0.0.1:57433 127.0.0.1:57415 382185766 22 12000000e1a721000000000001000300000000000000 ......!............... +6346 19.048658371 127.0.0.1:57433 127.0.0.1:57415 382185788 12 ffffffff798a0c0000000000 ....y....... +6347 19.048684359 127.0.0.1:57415 127.0.0.1:57433 3339736016 12 ffffffff7c480c0000000000 ....|H...... +6363 19.148216486 127.0.0.1:57415 127.0.0.1:57433 3339736028 12 650000007a8a0c0000000000 e...z....... +6365 19.148436308 127.0.0.1:57415 127.0.0.1:57433 3339736040 101 1e0000001c2118d0c46f33bb0100030000008855020000000000b19174c39d01 .....!...o3........U........t.....?.....3...|8.. +6367 19.148850679 127.0.0.1:57433 127.0.0.1:57415 382185800 12 ffffffff7a8a0c0000000000 ....z....... +6371 19.150137424 127.0.0.1:57433 127.0.0.1:57415 382185812 12 340000007d480c0000000000 4...}H...... +6373 19.150304794 127.0.0.1:57433 127.0.0.1:57415 382185824 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U............ +6375 19.150423527 127.0.0.1:57415 127.0.0.1:57433 3339736141 12 1a0000007b8a0c0000000000 ....{....... +6377 19.150656939 127.0.0.1:57415 127.0.0.1:57433 3339736153 26 16000000548f6340e25e3140010003000000e3a7210000000000 ....T.c@.^1@........!..... +6379 19.150930405 127.0.0.1:57415 127.0.0.1:57433 3339736179 12 ffffffff7d480c0000000000 ....}H...... +6381 19.151040316 127.0.0.1:57433 127.0.0.1:57415 382185876 12 ffffffff7b8a0c0000000000 ....{....... +6383 19.151530981 127.0.0.1:57433 127.0.0.1:57415 382185888 12 160000007e480c0000000000 ....~H...... +6384 19.151777506 127.0.0.1:57415 127.0.0.1:57433 3339736191 42 1e0000007c8a0c00000000001a00000055ceff62b21b3a50010003000000e5a7 ....|...........U..b..:P........!......... +6386 19.151985407 127.0.0.1:57433 127.0.0.1:57415 382185900 22 12000000e3a721000000000001000300000000000000 ......!............... +6388 19.152347803 127.0.0.1:57415 127.0.0.1:57433 3339736233 12 ffffffff7e480c0000000000 ....~H...... +6390 19.152731180 127.0.0.1:57433 127.0.0.1:57415 382185922 12 ffffffff7c8a0c0000000000 ....|....... +6392 19.153083086 127.0.0.1:57433 127.0.0.1:57415 382185934 12 1a0000007f480c0000000000 .....H...... +6394 19.153497934 127.0.0.1:57433 127.0.0.1:57415 382185946 26 16000000e5a72100000000000100030000000000000000000000 ......!................... +6396 19.153986216 127.0.0.1:57415 127.0.0.1:57433 3339736245 12 ffffffff7f480c0000000000 .....H...... +6418 19.240077019 127.0.0.1:57433 127.0.0.1:57415 382185972 12 feffffff4b6c01005f6c0100 ....Kl.._l.. +6422 19.254273653 127.0.0.1:57415 127.0.0.1:57433 3339736257 12 1a0000007d8a0c0000000000 ....}....... +6424 19.254514694 127.0.0.1:57415 127.0.0.1:57433 3339736269 26 16000000548f6340e25e3140010003000000e7a7210000000000 ....T.c@.^1@........!..... +6426 19.254883528 127.0.0.1:57433 127.0.0.1:57415 382185984 12 ffffffff7d8a0c0000000000 ....}....... +6428 19.255501509 127.0.0.1:57433 127.0.0.1:57415 382185996 12 1600000080480c0000000000 .....H...... +6430 19.255718231 127.0.0.1:57433 127.0.0.1:57415 382186008 22 12000000e7a721000000000001000300000000000000 ......!............... +6432 19.256036520 127.0.0.1:57415 127.0.0.1:57433 3339736295 12 ffffffff80480c0000000000 .....H...... +6470 19.358193636 127.0.0.1:57415 127.0.0.1:57433 3339736307 12 1a0000007e8a0c0000000000 ....~....... +6471 19.358206749 127.0.0.1:57415 127.0.0.1:57433 3339736319 26 16000000548f6340e25e3140010003000000e9a7210000000000 ....T.c@.^1@........!..... +6473 19.358735323 127.0.0.1:57433 127.0.0.1:57415 382186030 12 ffffffff7e8a0c0000000000 ....~....... +6475 19.359259844 127.0.0.1:57433 127.0.0.1:57415 382186042 12 1600000081480c0000000000 .....H...... +6477 19.359465837 127.0.0.1:57433 127.0.0.1:57415 382186054 22 12000000e9a721000000000001000300000000000000 ......!............... +6479 19.359796524 127.0.0.1:57415 127.0.0.1:57433 3339736345 12 ffffffff81480c0000000000 .....H...... +6481 19.430749655 127.0.0.1:57415 127.0.0.1:57433 3339736357 12 feffffff606c01004b6c0100 ....`l..Kl.. +6485 19.453598738 127.0.0.1:57415 127.0.0.1:57433 3339736369 12 650000007f8a0c0000000000 e........... +6487 19.453785419 127.0.0.1:57415 127.0.0.1:57433 3339736381 101 1e0000001c2118d0c46f33bb0100030000008955020000000000e29274c39d01 .....!...o3........U........t.....?.....3...|8.. +6489 19.454212904 127.0.0.1:57433 127.0.0.1:57415 382186076 12 ffffffff7f8a0c0000000000 ............ +6491 19.455021381 127.0.0.1:57433 127.0.0.1:57415 382186088 12 3400000082480c0000000000 4....H...... +6493 19.455331564 127.0.0.1:57433 127.0.0.1:57415 382186100 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U.........%=. +6495 19.455632210 127.0.0.1:57415 127.0.0.1:57433 3339736482 12 ffffffff82480c0000000000 .....H...... +6497 19.456972361 127.0.0.1:57415 127.0.0.1:57433 3339736494 12 1e000000808a0c0000000000 ............ +6499 19.457218409 127.0.0.1:57415 127.0.0.1:57433 3339736506 30 1a00000055ceff62b21b3a50010003000000eba721000000000000000000 ....U..b..:P........!......... +6501 19.457757235 127.0.0.1:57433 127.0.0.1:57415 382186152 12 ffffffff808a0c0000000000 ............ +6503 19.458250761 127.0.0.1:57433 127.0.0.1:57415 382186164 12 1a00000083480c0000000000 .....H...... +6505 19.458493233 127.0.0.1:57433 127.0.0.1:57415 382186176 26 16000000eba72100000000000100030000000000000000000000 ......!................... +6507 19.458867311 127.0.0.1:57415 127.0.0.1:57433 3339736536 12 ffffffff83480c0000000000 .....H...... +6509 19.460766792 127.0.0.1:57415 127.0.0.1:57433 3339736548 12 1a000000818a0c0000000000 ............ +6511 19.460925579 127.0.0.1:57415 127.0.0.1:57433 3339736560 26 16000000548f6340e25e3140010003000000eda7210000000000 ....T.c@.^1@........!..... +6513 19.461324692 127.0.0.1:57433 127.0.0.1:57415 382186202 12 ffffffff818a0c0000000000 ............ +6515 19.461821318 127.0.0.1:57433 127.0.0.1:57415 382186214 12 1600000084480c0000000000 .....H...... +6517 19.462007284 127.0.0.1:57433 127.0.0.1:57415 382186226 22 12000000eda721000000000001000300000000000000 ......!............... +6519 19.462279081 127.0.0.1:57415 127.0.0.1:57433 3339736586 12 ffffffff84480c0000000000 .....H...... +6529 19.564076662 127.0.0.1:57415 127.0.0.1:57433 3339736598 12 1a000000828a0c0000000000 ............ +6531 19.564352751 127.0.0.1:57415 127.0.0.1:57433 3339736610 26 16000000548f6340e25e3140010003000000efa7210000000000 ....T.c@.^1@........!..... +6533 19.564924240 127.0.0.1:57433 127.0.0.1:57415 382186248 12 ffffffff828a0c0000000000 ............ +6535 19.565432310 127.0.0.1:57433 127.0.0.1:57415 382186260 12 1600000085480c0000000000 .....H...... +6537 19.565742016 127.0.0.1:57433 127.0.0.1:57415 382186272 22 12000000efa721000000000001000300000000000000 ......!............... +6539 19.566283464 127.0.0.1:57415 127.0.0.1:57433 3339736636 12 ffffffff85480c0000000000 .....H...... +6543 19.667816162 127.0.0.1:57415 127.0.0.1:57433 3339736648 12 1a000000838a0c0000000000 ............ +6545 19.668037415 127.0.0.1:57415 127.0.0.1:57433 3339736660 26 16000000548f6340e25e3140010003000000f1a7210000000000 ....T.c@.^1@........!..... +6547 19.668434143 127.0.0.1:57433 127.0.0.1:57415 382186294 12 ffffffff838a0c0000000000 ............ +6549 19.669320583 127.0.0.1:57433 127.0.0.1:57415 382186306 12 1600000086480c0000000000 .....H...... +6551 19.669476271 127.0.0.1:57433 127.0.0.1:57415 382186318 22 12000000f1a721000000000001000300000000000000 ......!............... +6553 19.669759750 127.0.0.1:57415 127.0.0.1:57433 3339736686 12 ffffffff86480c0000000000 .....H...... +6557 19.741130114 127.0.0.1:57433 127.0.0.1:57415 382186340 12 feffffff4c6c0100606c0100 ....Ll..`l.. +6561 19.758336067 127.0.0.1:57415 127.0.0.1:57433 3339736698 12 22000000848a0c0000000000 "........... +6563 19.758538485 127.0.0.1:57415 127.0.0.1:57433 3339736710 34 1e0000001c2118d0c46f33bb0100030000008a55020000000000129474c39d01 .....!...o3........U........t..... +6565 19.758651733 127.0.0.1:57415 127.0.0.1:57433 3339736744 12 43000000858a0c0000000000 C........... +6567 19.758756638 127.0.0.1:57415 127.0.0.1:57433 3339736756 67 3f000000980433cb0cb47c3801000300000001000000008a550200000000003d ?.....3...|8............U......=B.....&......... +6569 19.758942366 127.0.0.1:57433 127.0.0.1:57415 382186352 12 ffffffff848a0c0000000000 ............ +6571 19.759146214 127.0.0.1:57433 127.0.0.1:57415 382186364 12 ffffffff858a0c0000000000 ............ +6575 19.759992838 127.0.0.1:57433 127.0.0.1:57415 382186376 12 3400000087480c0000000000 4....H...... +6577 19.760231495 127.0.0.1:57433 127.0.0.1:57415 382186388 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U..........k. +6579 19.760547876 127.0.0.1:57415 127.0.0.1:57433 3339736823 12 ffffffff87480c0000000000 .....H...... +6581 19.762512207 127.0.0.1:57415 127.0.0.1:57433 3339736835 12 1e000000868a0c0000000000 ............ +6583 19.762724638 127.0.0.1:57415 127.0.0.1:57433 3339736847 30 1a00000055ceff62b21b3a50010003000000f3a721000000000000000000 ....U..b..:P........!......... +6585 19.763336420 127.0.0.1:57433 127.0.0.1:57415 382186440 12 ffffffff868a0c0000000000 ............ +6587 19.763853073 127.0.0.1:57433 127.0.0.1:57415 382186452 12 1a00000088480c0000000000 .....H...... +6589 19.764011383 127.0.0.1:57433 127.0.0.1:57415 382186464 26 16000000f3a72100000000000100030000000000000000000000 ......!................... +6591 19.764415264 127.0.0.1:57415 127.0.0.1:57433 3339736877 12 ffffffff88480c0000000000 .....H...... +6593 19.771173716 127.0.0.1:57415 127.0.0.1:57433 3339736889 12 1a000000878a0c0000000000 ............ +6595 19.771377325 127.0.0.1:57415 127.0.0.1:57433 3339736901 26 16000000548f6340e25e3140010003000000f5a7210000000000 ....T.c@.^1@........!..... +6597 19.771861553 127.0.0.1:57433 127.0.0.1:57415 382186490 12 ffffffff878a0c0000000000 ............ +6599 19.772474527 127.0.0.1:57433 127.0.0.1:57415 382186502 12 1600000089480c0000000000 .....H...... +6601 19.772601604 127.0.0.1:57433 127.0.0.1:57415 382186514 22 12000000f5a721000000000001000300000000000000 ......!............... +6603 19.773272514 127.0.0.1:57415 127.0.0.1:57433 3339736927 12 ffffffff89480c0000000000 .....H...... +6609 19.874992132 127.0.0.1:57415 127.0.0.1:57433 3339736939 12 1a000000888a0c0000000000 ............ +6611 19.875190973 127.0.0.1:57415 127.0.0.1:57433 3339736951 26 16000000548f6340e25e3140010003000000f7a7210000000000 ....T.c@.^1@........!..... +6613 19.875659704 127.0.0.1:57433 127.0.0.1:57415 382186536 12 ffffffff888a0c0000000000 ............ +6615 19.876737833 127.0.0.1:57433 127.0.0.1:57415 382186548 12 160000008a480c0000000000 .....H...... +6617 19.876969814 127.0.0.1:57433 127.0.0.1:57415 382186560 22 12000000f7a721000000000001000300000000000000 ......!............... +6619 19.877524853 127.0.0.1:57415 127.0.0.1:57433 3339736977 12 ffffffff8a480c0000000000 .....H...... +6621 19.932440519 127.0.0.1:57415 127.0.0.1:57433 3339736989 12 feffffff616c01004c6c0100 ....al..Ll.. +6625 19.979511738 127.0.0.1:57415 127.0.0.1:57433 3339737001 12 1a000000898a0c0000000000 ............ +6627 19.979746819 127.0.0.1:57415 127.0.0.1:57433 3339737013 26 16000000548f6340e25e3140010003000000f9a7210000000000 ....T.c@.^1@........!..... +6629 19.980081081 127.0.0.1:57433 127.0.0.1:57415 382186582 12 ffffffff898a0c0000000000 ............ +6631 19.980662584 127.0.0.1:57433 127.0.0.1:57415 382186594 12 160000008b480c0000000000 .....H...... +6633 19.980839968 127.0.0.1:57433 127.0.0.1:57415 382186606 22 12000000f9a721000000000001000300000000000000 ......!............... +6635 19.981207609 127.0.0.1:57415 127.0.0.1:57433 3339737039 12 ffffffff8b480c0000000000 .....H...... +6643 20.063574314 127.0.0.1:57415 127.0.0.1:57433 3339737051 12 650000008a8a0c0000000000 e........... +6645 20.063826323 127.0.0.1:57415 127.0.0.1:57433 3339737063 101 1e0000001c2118d0c46f33bb0100030000008b55020000000000439574c39d01 .....!...o3........U......C.t.....?.....3...|8.. +6647 20.064210892 127.0.0.1:57433 127.0.0.1:57415 382186628 12 ffffffff8a8a0c0000000000 ............ +6649 20.065544844 127.0.0.1:57433 127.0.0.1:57415 382186640 12 340000008c480c0000000000 4....H...... +6651 20.065697908 127.0.0.1:57433 127.0.0.1:57415 382186652 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U.........N.. +6653 20.065998554 127.0.0.1:57415 127.0.0.1:57433 3339737164 12 ffffffff8c480c0000000000 .....H...... +6655 20.067685604 127.0.0.1:57415 127.0.0.1:57433 3339737176 12 1e0000008b8a0c0000000000 ............ +6657 20.067895174 127.0.0.1:57415 127.0.0.1:57433 3339737188 30 1a00000055ceff62b21b3a50010003000000fba721000000000000000000 ....U..b..:P........!......... +6659 20.068391562 127.0.0.1:57433 127.0.0.1:57415 382186704 12 ffffffff8b8a0c0000000000 ............ +6661 20.068819046 127.0.0.1:57433 127.0.0.1:57415 382186716 12 1a0000008d480c0000000000 .....H...... +6663 20.068969488 127.0.0.1:57433 127.0.0.1:57415 382186728 26 16000000fba72100000000000100030000000000000000000000 ......!................... +6665 20.069382191 127.0.0.1:57415 127.0.0.1:57433 3339737218 12 ffffffff8d480c0000000000 .....H...... +6667 20.083265066 127.0.0.1:57415 127.0.0.1:57433 3339737230 12 1a0000008c8a0c0000000000 ............ +6669 20.083509445 127.0.0.1:57415 127.0.0.1:57433 3339737242 26 16000000548f6340e25e3140010003000000fda7210000000000 ....T.c@.^1@........!..... +6671 20.084012508 127.0.0.1:57433 127.0.0.1:57415 382186754 12 ffffffff8c8a0c0000000000 ............ +6673 20.084631681 127.0.0.1:57433 127.0.0.1:57415 382186766 12 160000008e480c0000000000 .....H...... +6675 20.084858656 127.0.0.1:57433 127.0.0.1:57415 382186778 22 12000000fda721000000000001000300000000000000 ......!............... +6677 20.085226774 127.0.0.1:57415 127.0.0.1:57433 3339737268 12 ffffffff8e480c0000000000 .....H...... +6681 20.186704159 127.0.0.1:57415 127.0.0.1:57433 3339737280 12 1a0000008d8a0c0000000000 ............ +6683 20.186892509 127.0.0.1:57415 127.0.0.1:57433 3339737292 26 16000000548f6340e25e3140010003000000ffa7210000000000 ....T.c@.^1@........!..... +6685 20.187286377 127.0.0.1:57433 127.0.0.1:57415 382186800 12 ffffffff8d8a0c0000000000 ............ +6687 20.187882662 127.0.0.1:57433 127.0.0.1:57415 382186812 12 160000008f480c0000000000 .....H...... +6689 20.188036680 127.0.0.1:57433 127.0.0.1:57415 382186824 22 12000000ffa721000000000001000300000000000000 ......!............... +6691 20.188364744 127.0.0.1:57415 127.0.0.1:57433 3339737318 12 ffffffff8f480c0000000000 .....H...... +6695 20.241017818 127.0.0.1:57433 127.0.0.1:57415 382186846 12 feffffff4d6c0100616c0100 ....Ml..al.. +6701 20.291139603 127.0.0.1:57415 127.0.0.1:57433 3339737330 12 1a0000008e8a0c0000000000 ............ +6703 20.291417360 127.0.0.1:57415 127.0.0.1:57433 3339737342 26 16000000548f6340e25e314001000300000001a8210000000000 ....T.c@.^1@........!..... +6705 20.291916609 127.0.0.1:57433 127.0.0.1:57415 382186858 12 ffffffff8e8a0c0000000000 ............ +6707 20.292498350 127.0.0.1:57433 127.0.0.1:57415 382186870 12 1600000090480c0000000000 .....H...... +6709 20.292696714 127.0.0.1:57433 127.0.0.1:57415 382186882 22 1200000001a821000000000001000300000000000000 ......!............... +6711 20.293125629 127.0.0.1:57415 127.0.0.1:57433 3339737368 12 ffffffff90480c0000000000 .....H...... +6717 20.369552612 127.0.0.1:57415 127.0.0.1:57433 3339737380 12 650000008f8a0c0000000000 e........... +6719 20.369871616 127.0.0.1:57415 127.0.0.1:57433 3339737392 101 1e0000001c2118d0c46f33bb0100030000008c55020000000000769674c39d01 .....!...o3........U......v.t.....?.....3...|8.. +6721 20.370242834 127.0.0.1:57433 127.0.0.1:57415 382186904 12 ffffffff8f8a0c0000000000 ............ +6723 20.371203899 127.0.0.1:57433 127.0.0.1:57415 382186916 12 3400000091480c0000000000 4....H...... +6725 20.371387243 127.0.0.1:57433 127.0.0.1:57415 382186928 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U............ +6727 20.371693611 127.0.0.1:57415 127.0.0.1:57433 3339737493 12 ffffffff91480c0000000000 .....H...... +6729 20.372963428 127.0.0.1:57415 127.0.0.1:57433 3339737505 12 1e000000908a0c0000000000 ............ +6731 20.373153925 127.0.0.1:57415 127.0.0.1:57433 3339737517 30 1a00000055ceff62b21b3a5001000300000003a821000000000000000000 ....U..b..:P........!......... +6733 20.373479605 127.0.0.1:57433 127.0.0.1:57415 382186980 12 ffffffff908a0c0000000000 ............ +6735 20.374207258 127.0.0.1:57433 127.0.0.1:57415 382186992 12 1a00000092480c0000000000 .....H...... +6737 20.374384403 127.0.0.1:57433 127.0.0.1:57415 382187004 26 1600000003a82100000000000100030000000000000000000000 ......!................... +6739 20.374706030 127.0.0.1:57415 127.0.0.1:57433 3339737547 12 ffffffff92480c0000000000 .....H...... +6741 20.394879341 127.0.0.1:57415 127.0.0.1:57433 3339737559 12 1a000000918a0c0000000000 ............ +6743 20.395169258 127.0.0.1:57415 127.0.0.1:57433 3339737571 26 16000000548f6340e25e314001000300000005a8210000000000 ....T.c@.^1@........!..... +6745 20.395630836 127.0.0.1:57433 127.0.0.1:57415 382187030 12 ffffffff918a0c0000000000 ............ +6747 20.396179676 127.0.0.1:57433 127.0.0.1:57415 382187042 12 1600000093480c0000000000 .....H...... +6749 20.396499634 127.0.0.1:57433 127.0.0.1:57415 382187054 22 1200000005a821000000000001000300000000000000 ......!............... +6751 20.396942139 127.0.0.1:57415 127.0.0.1:57433 3339737597 12 ffffffff93480c0000000000 .....H...... +6764 20.434711456 127.0.0.1:57415 127.0.0.1:57433 3339737609 12 feffffff626c01004d6c0100 ....bl..Ml.. +6770 20.499567270 127.0.0.1:57415 127.0.0.1:57433 3339737621 12 1a000000928a0c0000000000 ............ +6772 20.499813318 127.0.0.1:57415 127.0.0.1:57433 3339737633 26 16000000548f6340e25e314001000300000007a8210000000000 ....T.c@.^1@........!..... +6774 20.500216007 127.0.0.1:57433 127.0.0.1:57415 382187076 12 ffffffff928a0c0000000000 ............ +6778 20.501107693 127.0.0.1:57433 127.0.0.1:57415 382187088 12 1600000094480c0000000000 .....H...... +6780 20.501321554 127.0.0.1:57433 127.0.0.1:57415 382187100 22 1200000007a821000000000001000300000000000000 ......!............... +6782 20.501725912 127.0.0.1:57415 127.0.0.1:57433 3339737659 12 ffffffff94480c0000000000 .....H...... +6790 20.603464127 127.0.0.1:57415 127.0.0.1:57433 3339737671 12 1a000000938a0c0000000000 ............ +6792 20.603661537 127.0.0.1:57415 127.0.0.1:57433 3339737683 26 16000000548f6340e25e314001000300000009a8210000000000 ....T.c@.^1@........!..... +6794 20.603978157 127.0.0.1:57433 127.0.0.1:57415 382187122 12 ffffffff938a0c0000000000 ............ +6796 20.604646683 127.0.0.1:57433 127.0.0.1:57415 382187134 12 1600000095480c0000000000 .....H...... +6798 20.604835272 127.0.0.1:57433 127.0.0.1:57415 382187146 22 1200000009a821000000000001000300000000000000 ......!............... +6800 20.605220318 127.0.0.1:57415 127.0.0.1:57433 3339737709 12 ffffffff95480c0000000000 .....H...... +6802 20.674375534 127.0.0.1:57415 127.0.0.1:57433 3339737721 12 65000000948a0c0000000000 e........... +6804 20.674617290 127.0.0.1:57415 127.0.0.1:57433 3339737733 101 1e0000001c2118d0c46f33bb0100030000008d55020000000000a69774c39d01 .....!...o3........U........t.....?.....3...|8.. +6806 20.675057173 127.0.0.1:57433 127.0.0.1:57415 382187168 12 ffffffff948a0c0000000000 ............ +6808 20.676427364 127.0.0.1:57433 127.0.0.1:57415 382187180 12 3400000096480c0000000000 4....H...... +6810 20.676577806 127.0.0.1:57433 127.0.0.1:57415 382187192 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U........-... +6812 20.676879883 127.0.0.1:57415 127.0.0.1:57433 3339737834 12 ffffffff96480c0000000000 .....H...... +6814 20.678463936 127.0.0.1:57415 127.0.0.1:57433 3339737846 12 1e000000958a0c0000000000 ............ +6816 20.678680420 127.0.0.1:57415 127.0.0.1:57433 3339737858 30 1a00000055ceff62b21b3a500100030000000ba821000000000000000000 ....U..b..:P........!......... +6818 20.679152250 127.0.0.1:57433 127.0.0.1:57415 382187244 12 ffffffff958a0c0000000000 ............ +6820 20.680111885 127.0.0.1:57433 127.0.0.1:57415 382187256 12 1a00000097480c0000000000 .....H...... +6822 20.680296421 127.0.0.1:57433 127.0.0.1:57415 382187268 26 160000000ba82100000000000100030000000000000000000000 ......!................... +6824 20.680645466 127.0.0.1:57415 127.0.0.1:57433 3339737888 12 ffffffff97480c0000000000 .....H...... +6826 20.706902504 127.0.0.1:57415 127.0.0.1:57433 3339737900 12 1a000000968a0c0000000000 ............ +6828 20.707170725 127.0.0.1:57415 127.0.0.1:57433 3339737912 26 16000000548f6340e25e31400100030000000da8210000000000 ....T.c@.^1@........!..... +6830 20.707524061 127.0.0.1:57433 127.0.0.1:57415 382187294 12 ffffffff968a0c0000000000 ............ +6832 20.708292961 127.0.0.1:57433 127.0.0.1:57415 382187306 12 1600000098480c0000000000 .....H...... +6834 20.708502769 127.0.0.1:57433 127.0.0.1:57415 382187318 22 120000000da821000000000001000300000000000000 ......!............... +6836 20.708923340 127.0.0.1:57415 127.0.0.1:57433 3339737938 12 ffffffff98480c0000000000 .....H...... +6840 20.741583824 127.0.0.1:57433 127.0.0.1:57415 382187340 12 feffffff4e6c0100626c0100 ....Nl..bl.. +6846 20.810989618 127.0.0.1:57415 127.0.0.1:57433 3339737950 12 1a000000978a0c0000000000 ............ +6848 20.811211109 127.0.0.1:57415 127.0.0.1:57433 3339737962 26 16000000548f6340e25e31400100030000000fa8210000000000 ....T.c@.^1@........!..... +6850 20.811463594 127.0.0.1:57433 127.0.0.1:57415 382187352 12 ffffffff978a0c0000000000 ............ +6852 20.812093258 127.0.0.1:57433 127.0.0.1:57415 382187364 12 1600000099480c0000000000 .....H...... +6854 20.812298536 127.0.0.1:57433 127.0.0.1:57415 382187376 22 120000000fa821000000000001000300000000000000 ......!............... +6856 20.812651873 127.0.0.1:57415 127.0.0.1:57433 3339737988 12 ffffffff99480c0000000000 .....H...... +6862 20.914501667 127.0.0.1:57415 127.0.0.1:57433 3339738000 12 1a000000988a0c0000000000 ............ +6864 20.914755821 127.0.0.1:57415 127.0.0.1:57433 3339738012 26 16000000548f6340e25e314001000300000011a8210000000000 ....T.c@.^1@........!..... +6866 20.915108204 127.0.0.1:57433 127.0.0.1:57415 382187398 12 ffffffff988a0c0000000000 ............ +6868 20.915950060 127.0.0.1:57433 127.0.0.1:57415 382187410 12 160000009a480c0000000000 .....H...... +6870 20.916129351 127.0.0.1:57433 127.0.0.1:57415 382187422 22 1200000011a821000000000001000300000000000000 ......!............... +6872 20.916444540 127.0.0.1:57415 127.0.0.1:57433 3339738038 12 ffffffff9a480c0000000000 .....H...... +6874 20.935921907 127.0.0.1:57415 127.0.0.1:57433 3339738050 12 feffffff636c01004e6c0100 ....cl..Nl.. +6878 20.980370045 127.0.0.1:57415 127.0.0.1:57433 3339738062 12 65000000998a0c0000000000 e........... +6880 20.980638266 127.0.0.1:57415 127.0.0.1:57433 3339738074 101 1e0000001c2118d0c46f33bb0100030000008e55020000000000d99874c39d01 .....!...o3........U........t.....?.....3...|8.. +6882 20.981130838 127.0.0.1:57433 127.0.0.1:57415 382187444 12 ffffffff998a0c0000000000 ............ +6884 20.982765198 127.0.0.1:57433 127.0.0.1:57415 382187456 12 340000009b480c0000000000 4....H...... +6886 20.982955217 127.0.0.1:57433 127.0.0.1:57415 382187468 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U.........A&. +6888 20.983336926 127.0.0.1:57415 127.0.0.1:57433 3339738175 12 ffffffff9b480c0000000000 .....H...... +6890 20.985505819 127.0.0.1:57415 127.0.0.1:57433 3339738187 12 1e0000009a8a0c0000000000 ............ +6892 20.985704660 127.0.0.1:57415 127.0.0.1:57433 3339738199 30 1a00000055ceff62b21b3a5001000300000013a821000000000000000000 ....U..b..:P........!......... +6894 20.986026525 127.0.0.1:57433 127.0.0.1:57415 382187520 12 ffffffff9a8a0c0000000000 ............ +6896 20.986605406 127.0.0.1:57433 127.0.0.1:57415 382187532 12 1a0000009c480c0000000000 .....H...... +6898 20.986809969 127.0.0.1:57433 127.0.0.1:57415 382187544 26 1600000013a82100000000000100030000000000000000000000 ......!................... +6900 20.987151146 127.0.0.1:57415 127.0.0.1:57433 3339738229 12 ffffffff9c480c0000000000 .....H...... +6904 21.019839048 127.0.0.1:57415 127.0.0.1:57433 3339738241 12 1a0000009b8a0c0000000000 ............ +6906 21.020058632 127.0.0.1:57415 127.0.0.1:57433 3339738253 26 16000000548f6340e25e314001000300000015a8210000000000 ....T.c@.^1@........!..... +6908 21.020382881 127.0.0.1:57433 127.0.0.1:57415 382187570 12 ffffffff9b8a0c0000000000 ............ +6910 21.021194696 127.0.0.1:57433 127.0.0.1:57415 382187582 12 160000009d480c0000000000 .....H...... +6912 21.021422625 127.0.0.1:57433 127.0.0.1:57415 382187594 22 1200000015a821000000000001000300000000000000 ......!............... +6914 21.021982193 127.0.0.1:57415 127.0.0.1:57433 3339738279 12 ffffffff9d480c0000000000 .....H...... +6929 21.124401808 127.0.0.1:57415 127.0.0.1:57433 3339738291 12 1a0000009c8a0c0000000000 ............ +6931 21.124593019 127.0.0.1:57415 127.0.0.1:57433 3339738303 26 16000000548f6340e25e314001000300000017a8210000000000 ....T.c@.^1@........!..... +6933 21.124913692 127.0.0.1:57433 127.0.0.1:57415 382187616 12 ffffffff9c8a0c0000000000 ............ +6935 21.125429630 127.0.0.1:57433 127.0.0.1:57415 382187628 12 160000009e480c0000000000 .....H...... +6939 21.125663042 127.0.0.1:57433 127.0.0.1:57415 382187640 22 1200000017a821000000000001000300000000000000 ......!............... +6943 21.126008034 127.0.0.1:57415 127.0.0.1:57433 3339738329 12 ffffffff9e480c0000000000 .....H...... +6994 21.227619886 127.0.0.1:57415 127.0.0.1:57433 3339738341 12 1a0000009d8a0c0000000000 ............ +6996 21.227876663 127.0.0.1:57415 127.0.0.1:57433 3339738353 26 16000000548f6340e25e314001000300000019a8210000000000 ....T.c@.^1@........!..... +6998 21.228327751 127.0.0.1:57433 127.0.0.1:57415 382187662 12 ffffffff9d8a0c0000000000 ............ +7000 21.229155064 127.0.0.1:57433 127.0.0.1:57415 382187674 12 160000009f480c0000000000 .....H...... +7002 21.229355574 127.0.0.1:57433 127.0.0.1:57415 382187686 22 1200000019a821000000000001000300000000000000 ......!............... +7004 21.229656219 127.0.0.1:57415 127.0.0.1:57433 3339738379 12 ffffffff9f480c0000000000 .....H...... +7008 21.242499590 127.0.0.1:57433 127.0.0.1:57415 382187708 12 feffffff4f6c0100636c0100 ....Ol..cl.. +7014 21.288202524 127.0.0.1:57415 127.0.0.1:57433 3339738391 12 650000009e8a0c0000000000 e........... +7016 21.288474321 127.0.0.1:57415 127.0.0.1:57433 3339738403 101 1e0000001c2118d0c46f33bb0100030000008f550200000000000c9a74c39d01 .....!...o3........U........t.....?.....3...|8.. +7018 21.288921833 127.0.0.1:57433 127.0.0.1:57415 382187720 12 ffffffff9e8a0c0000000000 ............ +7020 21.290208340 127.0.0.1:57433 127.0.0.1:57415 382187732 12 34000000a0480c0000000000 4....H...... +7022 21.290363312 127.0.0.1:57433 127.0.0.1:57415 382187744 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U........}-U. +7024 21.290657043 127.0.0.1:57415 127.0.0.1:57433 3339738504 12 ffffffffa0480c0000000000 .....H...... +7026 21.291958570 127.0.0.1:57415 127.0.0.1:57433 3339738516 12 1e0000009f8a0c0000000000 ............ +7028 21.292158127 127.0.0.1:57415 127.0.0.1:57433 3339738528 30 1a00000055ceff62b21b3a500100030000001ba821000000000000000000 ....U..b..:P........!......... +7030 21.292456388 127.0.0.1:57433 127.0.0.1:57415 382187796 12 ffffffff9f8a0c0000000000 ............ +7032 21.293233395 127.0.0.1:57433 127.0.0.1:57415 382187808 12 1a000000a1480c0000000000 .....H...... +7034 21.293415070 127.0.0.1:57433 127.0.0.1:57415 382187820 26 160000001ba82100000000000100030000000000000000000000 ......!................... +7036 21.293707848 127.0.0.1:57415 127.0.0.1:57433 3339738558 12 ffffffffa1480c0000000000 .....H...... +7038 21.331246853 127.0.0.1:57415 127.0.0.1:57433 3339738570 12 1a000000a08a0c0000000000 ............ +7040 21.331493378 127.0.0.1:57415 127.0.0.1:57433 3339738582 26 16000000548f6340e25e31400100030000001da8210000000000 ....T.c@.^1@........!..... +7042 21.331863642 127.0.0.1:57433 127.0.0.1:57415 382187846 12 ffffffffa08a0c0000000000 ............ +7044 21.332389116 127.0.0.1:57433 127.0.0.1:57415 382187858 12 16000000a2480c0000000000 .....H...... +7046 21.332537413 127.0.0.1:57433 127.0.0.1:57415 382187870 22 120000001da821000000000001000300000000000000 ......!............... +7048 21.332870483 127.0.0.1:57415 127.0.0.1:57433 3339738608 12 ffffffffa2480c0000000000 .....H...... +7054 21.434414387 127.0.0.1:57415 127.0.0.1:57433 3339738620 12 1a000000a18a0c0000000000 ............ +7056 21.434697628 127.0.0.1:57415 127.0.0.1:57433 3339738632 26 16000000548f6340e25e31400100030000001fa8210000000000 ....T.c@.^1@........!..... +7058 21.435230732 127.0.0.1:57433 127.0.0.1:57415 382187892 12 ffffffffa18a0c0000000000 ............ +7060 21.436593294 127.0.0.1:57433 127.0.0.1:57415 382187904 12 16000000a3480c0000000000 .....H...... +7062 21.436699867 127.0.0.1:57415 127.0.0.1:57433 3339738658 12 feffffff646c01004f6c0100 ....dl..Ol.. +7064 21.436898470 127.0.0.1:57433 127.0.0.1:57415 382187916 22 120000001fa821000000000001000300000000000000 ......!............... +7066 21.437724352 127.0.0.1:57415 127.0.0.1:57433 3339738670 12 ffffffffa3480c0000000000 .....H...... +7076 21.540266275 127.0.0.1:57415 127.0.0.1:57433 3339738682 12 1a000000a28a0c0000000000 ............ +7078 21.540563345 127.0.0.1:57415 127.0.0.1:57433 3339738694 26 16000000548f6340e25e314001000300000021a8210000000000 ....T.c@.^1@......!.!..... +7080 21.540984631 127.0.0.1:57433 127.0.0.1:57415 382187938 12 ffffffffa28a0c0000000000 ............ +7082 21.541629553 127.0.0.1:57433 127.0.0.1:57415 382187950 12 16000000a4480c0000000000 .....H...... +7084 21.541766882 127.0.0.1:57433 127.0.0.1:57415 382187962 22 1200000021a821000000000001000300000000000000 ....!.!............... +7086 21.542054176 127.0.0.1:57415 127.0.0.1:57433 3339738720 12 ffffffffa4480c0000000000 .....H...... +7088 21.595235825 127.0.0.1:57415 127.0.0.1:57433 3339738732 12 65000000a38a0c0000000000 e........... +7090 21.595531702 127.0.0.1:57415 127.0.0.1:57433 3339738744 101 1e0000001c2118d0c46f33bb0100030000009055020000000000409b74c39d01 .....!...o3........U......@.t.....?.....3...|8.. +7092 21.597327471 127.0.0.1:57433 127.0.0.1:57415 382187984 12 ffffffffa38a0c0000000000 ............ +7094 21.598967552 127.0.0.1:57433 127.0.0.1:57415 382187996 12 34000000a5480c0000000000 4....H...... +7096 21.599201441 127.0.0.1:57433 127.0.0.1:57415 382188008 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U.........E.. +7098 21.599546432 127.0.0.1:57415 127.0.0.1:57433 3339738845 12 ffffffffa5480c0000000000 .....H...... +7102 21.601034880 127.0.0.1:57415 127.0.0.1:57433 3339738857 12 1e000000a48a0c0000000000 ............ +7104 21.601180315 127.0.0.1:57415 127.0.0.1:57433 3339738869 30 1a00000055ceff62b21b3a5001000300000023a821000000000000000000 ....U..b..:P......#.!......... +7106 21.601815939 127.0.0.1:57433 127.0.0.1:57415 382188060 12 ffffffffa48a0c0000000000 ............ +7108 21.602457523 127.0.0.1:57433 127.0.0.1:57415 382188072 12 1a000000a6480c0000000000 .....H...... +7110 21.602741003 127.0.0.1:57433 127.0.0.1:57415 382188084 26 1600000023a82100000000000100030000000000000000000000 ....#.!................... +7112 21.603141069 127.0.0.1:57415 127.0.0.1:57433 3339738899 12 ffffffffa6480c0000000000 .....H...... +7126 21.644249916 127.0.0.1:57415 127.0.0.1:57433 3339738911 12 1a000000a58a0c0000000000 ............ +7128 21.644668102 127.0.0.1:57415 127.0.0.1:57433 3339738923 26 16000000548f6340e25e314001000300000025a8210000000000 ....T.c@.^1@......%.!..... +7130 21.645165920 127.0.0.1:57433 127.0.0.1:57415 382188110 12 ffffffffa58a0c0000000000 ............ +7132 21.646903515 127.0.0.1:57433 127.0.0.1:57415 382188122 12 16000000a7480c0000000000 .....H...... +7134 21.647146940 127.0.0.1:57433 127.0.0.1:57415 382188134 22 1200000025a821000000000001000300000000000000 ....%.!............... +7136 21.648197412 127.0.0.1:57415 127.0.0.1:57433 3339738949 12 ffffffffa7480c0000000000 .....H...... +7152 21.742963076 127.0.0.1:57433 127.0.0.1:57415 382188156 12 feffffff506c0100646c0100 ....Pl..dl.. +7154 21.749758720 127.0.0.1:57415 127.0.0.1:57433 3339738961 12 1a000000a68a0c0000000000 ............ +7156 21.750066996 127.0.0.1:57415 127.0.0.1:57433 3339738973 26 16000000548f6340e25e314001000300000027a8210000000000 ....T.c@.^1@......'.!..... +7158 21.750600815 127.0.0.1:57433 127.0.0.1:57415 382188168 12 ffffffffa68a0c0000000000 ............ +7160 21.751493216 127.0.0.1:57433 127.0.0.1:57415 382188180 12 16000000a8480c0000000000 .....H...... +7162 21.751747608 127.0.0.1:57433 127.0.0.1:57415 382188192 22 1200000027a821000000000001000300000000000000 ....'.!............... +7164 21.752448320 127.0.0.1:57415 127.0.0.1:57433 3339738999 12 ffffffffa8480c0000000000 .....H...... +7170 21.855854988 127.0.0.1:57415 127.0.0.1:57433 3339739011 12 1a000000a78a0c0000000000 ............ +7172 21.856096745 127.0.0.1:57415 127.0.0.1:57433 3339739023 26 16000000548f6340e25e314001000300000029a8210000000000 ....T.c@.^1@......).!..... +7174 21.856825829 127.0.0.1:57433 127.0.0.1:57415 382188214 12 ffffffffa78a0c0000000000 ............ +7176 21.857558012 127.0.0.1:57433 127.0.0.1:57415 382188226 12 16000000a9480c0000000000 .....H...... +7178 21.857867002 127.0.0.1:57433 127.0.0.1:57415 382188238 22 1200000029a821000000000001000300000000000000 ....).!............... +7180 21.858307600 127.0.0.1:57415 127.0.0.1:57433 3339739049 12 ffffffffa9480c0000000000 .....H...... +7186 21.902456522 127.0.0.1:57415 127.0.0.1:57433 3339739061 12 65000000a88a0c0000000000 e........... +7188 21.902712107 127.0.0.1:57415 127.0.0.1:57433 3339739073 101 1e0000001c2118d0c46f33bb0100030000009155020000000000739c74c39d01 .....!...o3........U......s.t.....?.....3...|8.. +7190 21.903107405 127.0.0.1:57433 127.0.0.1:57415 382188260 12 ffffffffa88a0c0000000000 ............ +7192 21.906565666 127.0.0.1:57433 127.0.0.1:57415 382188272 12 34000000aa480c0000000000 4....H...... +7194 21.906866312 127.0.0.1:57433 127.0.0.1:57415 382188284 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U............ +7196 21.907538891 127.0.0.1:57415 127.0.0.1:57433 3339739174 12 ffffffffaa480c0000000000 .....H...... +7198 21.909248352 127.0.0.1:57415 127.0.0.1:57433 3339739186 12 1e000000a98a0c0000000000 ............ +7200 21.909536839 127.0.0.1:57415 127.0.0.1:57433 3339739198 30 1a00000055ceff62b21b3a500100030000002ba821000000000000000000 ....U..b..:P......+.!......... +7202 21.910223007 127.0.0.1:57433 127.0.0.1:57415 382188336 12 ffffffffa98a0c0000000000 ............ +7204 21.911044121 127.0.0.1:57433 127.0.0.1:57415 382188348 12 1a000000ab480c0000000000 .....H...... +7206 21.911232233 127.0.0.1:57433 127.0.0.1:57415 382188360 26 160000002ba82100000000000100030000000000000000000000 ....+.!................... +7208 21.911600113 127.0.0.1:57415 127.0.0.1:57433 3339739228 12 ffffffffab480c0000000000 .....H...... +7210 21.937294960 127.0.0.1:57415 127.0.0.1:57433 3339739240 12 feffffff656c0100506c0100 ....el..Pl.. +7214 21.960920095 127.0.0.1:57415 127.0.0.1:57433 3339739252 12 1a000000aa8a0c0000000000 ............ +7216 21.961225510 127.0.0.1:57415 127.0.0.1:57433 3339739264 26 16000000548f6340e25e31400100030000002da8210000000000 ....T.c@.^1@......-.!..... +7218 21.961750746 127.0.0.1:57433 127.0.0.1:57415 382188386 12 ffffffffaa8a0c0000000000 ............ +7220 21.962465525 127.0.0.1:57433 127.0.0.1:57415 382188398 12 16000000ac480c0000000000 .....H...... +7222 21.962716341 127.0.0.1:57433 127.0.0.1:57415 382188410 22 120000002da821000000000001000300000000000000 ....-.!............... +7224 21.963121891 127.0.0.1:57415 127.0.0.1:57433 3339739290 12 ffffffffac480c0000000000 .....H...... +7232 22.065357447 127.0.0.1:57415 127.0.0.1:57433 3339739302 12 1a000000ab8a0c0000000000 ............ +7234 22.065648079 127.0.0.1:57415 127.0.0.1:57433 3339739314 26 16000000548f6340e25e31400100030000002fa8210000000000 ....T.c@.^1@....../.!..... +7236 22.066136837 127.0.0.1:57433 127.0.0.1:57415 382188432 12 ffffffffab8a0c0000000000 ............ +7238 22.066720486 127.0.0.1:57433 127.0.0.1:57415 382188444 12 16000000ad480c0000000000 .....H...... +7240 22.066926479 127.0.0.1:57433 127.0.0.1:57415 382188456 22 120000002fa821000000000001000300000000000000 ..../.!............... +7242 22.067371130 127.0.0.1:57415 127.0.0.1:57433 3339739340 12 ffffffffad480c0000000000 .....H...... +7246 22.169043779 127.0.0.1:57415 127.0.0.1:57433 3339739352 12 1a000000ac8a0c0000000000 ............ +7248 22.169265032 127.0.0.1:57415 127.0.0.1:57433 3339739364 26 16000000548f6340e25e314001000300000031a8210000000000 ....T.c@.^1@......1.!..... +7250 22.169619322 127.0.0.1:57433 127.0.0.1:57415 382188478 12 ffffffffac8a0c0000000000 ............ +7252 22.170381308 127.0.0.1:57433 127.0.0.1:57415 382188490 12 16000000ae480c0000000000 .....H...... +7254 22.170563221 127.0.0.1:57433 127.0.0.1:57415 382188502 22 1200000031a821000000000001000300000000000000 ....1.!............... +7256 22.170952320 127.0.0.1:57415 127.0.0.1:57433 3339739390 12 ffffffffae480c0000000000 .....H...... +7258 22.212340355 127.0.0.1:57415 127.0.0.1:57433 3339739402 12 22000000ad8a0c0000000000 "........... +7260 22.212625742 127.0.0.1:57415 127.0.0.1:57433 3339739414 34 1e0000001c2118d0c46f33bb0100030000009255020000000000a99d74c39d01 .....!...o3........U........t..... +7262 22.212819815 127.0.0.1:57415 127.0.0.1:57433 3339739448 12 43000000ae8a0c0000000000 C........... +7264 22.212977409 127.0.0.1:57415 127.0.0.1:57433 3339739460 67 3f000000980433cb0cb47c38010003000000010000000092550200000000003d ?.....3...|8............U......=B.....&......... +7266 22.213053226 127.0.0.1:57433 127.0.0.1:57415 382188524 12 ffffffffad8a0c0000000000 ............ +7268 22.213457108 127.0.0.1:57433 127.0.0.1:57415 382188536 12 ffffffffae8a0c0000000000 ............ +7270 22.216201305 127.0.0.1:57433 127.0.0.1:57415 382188548 12 34000000af480c0000000000 4....H...... +7272 22.216468334 127.0.0.1:57433 127.0.0.1:57415 382188560 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U........]r.. +7274 22.216902494 127.0.0.1:57415 127.0.0.1:57433 3339739527 12 ffffffffaf480c0000000000 .....H...... +7276 22.218718529 127.0.0.1:57415 127.0.0.1:57433 3339739539 12 1e000000af8a0c0000000000 ............ +7278 22.218935013 127.0.0.1:57415 127.0.0.1:57433 3339739551 30 1a00000055ceff62b21b3a5001000300000033a821000000000000000000 ....U..b..:P......3.!......... +7280 22.219312429 127.0.0.1:57433 127.0.0.1:57415 382188612 12 ffffffffaf8a0c0000000000 ............ +7282 22.220121622 127.0.0.1:57433 127.0.0.1:57415 382188624 12 1a000000b0480c0000000000 .....H...... +7284 22.220279932 127.0.0.1:57433 127.0.0.1:57415 382188636 26 1600000033a82100000000000100030000000000000000000000 ....3.!................... +7286 22.220574617 127.0.0.1:57415 127.0.0.1:57433 3339739581 12 ffffffffb0480c0000000000 .....H...... +7290 22.244500160 127.0.0.1:57433 127.0.0.1:57415 382188662 12 feffffff516c0100656c0100 ....Ql..el.. +7296 22.273374319 127.0.0.1:57415 127.0.0.1:57433 3339739593 12 1a000000b08a0c0000000000 ............ +7298 22.273694754 127.0.0.1:57415 127.0.0.1:57433 3339739605 26 16000000548f6340e25e314001000300000035a8210000000000 ....T.c@.^1@......5.!..... +7300 22.274071932 127.0.0.1:57433 127.0.0.1:57415 382188674 12 ffffffffb08a0c0000000000 ............ +7302 22.275477409 127.0.0.1:57433 127.0.0.1:57415 382188686 12 16000000b1480c0000000000 .....H...... +7304 22.275682211 127.0.0.1:57433 127.0.0.1:57415 382188698 22 1200000035a821000000000001000300000000000000 ....5.!............... +7306 22.275977850 127.0.0.1:57415 127.0.0.1:57433 3339739631 12 ffffffffb1480c0000000000 .....H...... +7342 22.377809048 127.0.0.1:57415 127.0.0.1:57433 3339739643 12 1a000000b18a0c0000000000 ............ +7344 22.378044605 127.0.0.1:57415 127.0.0.1:57433 3339739655 26 16000000548f6340e25e314001000300000037a8210000000000 ....T.c@.^1@......7.!..... +7346 22.378406048 127.0.0.1:57433 127.0.0.1:57415 382188720 12 ffffffffb18a0c0000000000 ............ +7348 22.378993034 127.0.0.1:57433 127.0.0.1:57415 382188732 12 16000000b2480c0000000000 .....H...... +7350 22.379191875 127.0.0.1:57433 127.0.0.1:57415 382188744 22 1200000037a821000000000001000300000000000000 ....7.!............... +7352 22.379519224 127.0.0.1:57415 127.0.0.1:57433 3339739681 12 ffffffffb2480c0000000000 .....H...... +7360 22.438600063 127.0.0.1:57415 127.0.0.1:57433 3339739693 12 feffffff666c0100516c0100 ....fl..Ql.. +7364 22.482958317 127.0.0.1:57415 127.0.0.1:57433 3339739705 12 1a000000b28a0c0000000000 ............ +7366 22.483321905 127.0.0.1:57415 127.0.0.1:57433 3339739717 26 16000000548f6340e25e314001000300000039a8210000000000 ....T.c@.^1@......9.!..... +7368 22.483765602 127.0.0.1:57433 127.0.0.1:57415 382188766 12 ffffffffb28a0c0000000000 ............ +7370 22.484359264 127.0.0.1:57433 127.0.0.1:57415 382188778 12 16000000b3480c0000000000 .....H...... +7372 22.484557390 127.0.0.1:57433 127.0.0.1:57415 382188790 22 1200000039a821000000000001000300000000000000 ....9.!............... +7374 22.484979391 127.0.0.1:57415 127.0.0.1:57433 3339739743 12 ffffffffb3480c0000000000 .....H...... +7378 22.520758867 127.0.0.1:57415 127.0.0.1:57433 3339739755 12 22000000b38a0c0000000000 "........... +7380 22.521106005 127.0.0.1:57415 127.0.0.1:57433 3339739767 34 1e0000001c2118d0c46f33bb0100030000009355020000000000dd9e74c39d01 .....!...o3........U........t..... +7382 22.521289110 127.0.0.1:57415 127.0.0.1:57433 3339739801 12 43000000b48a0c0000000000 C........... +7384 22.521412611 127.0.0.1:57415 127.0.0.1:57433 3339739813 67 3f000000980433cb0cb47c38010003000000010000000093550200000000003d ?.....3...|8............U......=B.....&......... +7386 22.521621227 127.0.0.1:57433 127.0.0.1:57415 382188812 12 ffffffffb38a0c0000000000 ............ +7388 22.521841526 127.0.0.1:57433 127.0.0.1:57415 382188824 12 ffffffffb48a0c0000000000 ............ +7390 22.522957563 127.0.0.1:57433 127.0.0.1:57415 382188836 12 34000000b4480c0000000000 4....H...... +7392 22.523153543 127.0.0.1:57433 127.0.0.1:57415 382188848 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U.........E.. +7394 22.523510695 127.0.0.1:57415 127.0.0.1:57433 3339739880 12 ffffffffb4480c0000000000 .....H...... +7396 22.525005102 127.0.0.1:57415 127.0.0.1:57433 3339739892 12 1e000000b58a0c0000000000 ............ +7398 22.525280714 127.0.0.1:57415 127.0.0.1:57433 3339739904 30 1a00000055ceff62b21b3a500100030000003ba821000000000000000000 ....U..b..:P......;.!......... +7400 22.525631428 127.0.0.1:57433 127.0.0.1:57415 382188900 12 ffffffffb58a0c0000000000 ............ +7402 22.526183844 127.0.0.1:57433 127.0.0.1:57415 382188912 12 1a000000b5480c0000000000 .....H...... +7404 22.526404142 127.0.0.1:57433 127.0.0.1:57415 382188924 26 160000003ba82100000000000100030000000000000000000000 ....;.!................... +7406 22.526725054 127.0.0.1:57415 127.0.0.1:57433 3339739934 12 ffffffffb5480c0000000000 .....H...... +7412 22.586740494 127.0.0.1:57415 127.0.0.1:57433 3339739946 12 1a000000b68a0c0000000000 ............ +7414 22.587144852 127.0.0.1:57415 127.0.0.1:57433 3339739958 26 16000000548f6340e25e31400100030000003da8210000000000 ....T.c@.^1@......=.!..... +7416 22.587701797 127.0.0.1:57433 127.0.0.1:57415 382188950 12 ffffffffb68a0c0000000000 ............ +7418 22.588370562 127.0.0.1:57433 127.0.0.1:57415 382188962 12 16000000b6480c0000000000 .....H...... +7420 22.588554144 127.0.0.1:57433 127.0.0.1:57415 382188974 22 120000003da821000000000001000300000000000000 ....=.!............... +7422 22.588792801 127.0.0.1:57415 127.0.0.1:57433 3339739984 12 ffffffffb6480c0000000000 .....H...... +7426 22.691802502 127.0.0.1:57415 127.0.0.1:57433 3339739996 12 1a000000b78a0c0000000000 ............ +7428 22.692109823 127.0.0.1:57415 127.0.0.1:57433 3339740008 26 16000000548f6340e25e31400100030000003fa8210000000000 ....T.c@.^1@......?.!..... +7430 22.692481756 127.0.0.1:57433 127.0.0.1:57415 382188996 12 ffffffffb78a0c0000000000 ............ +7432 22.693120241 127.0.0.1:57433 127.0.0.1:57415 382189008 12 16000000b7480c0000000000 .....H...... +7434 22.693314791 127.0.0.1:57433 127.0.0.1:57415 382189020 22 120000003fa821000000000001000300000000000000 ....?.!............... +7436 22.693664789 127.0.0.1:57415 127.0.0.1:57433 3339740034 12 ffffffffb7480c0000000000 .....H...... +7440 22.745752335 127.0.0.1:57433 127.0.0.1:57415 382189042 12 feffffff526c0100666c0100 ....Rl..fl.. +7446 22.796891451 127.0.0.1:57415 127.0.0.1:57433 3339740046 12 1a000000b88a0c0000000000 ............ +7448 22.797210217 127.0.0.1:57415 127.0.0.1:57433 3339740058 26 16000000548f6340e25e314001000300000041a8210000000000 ....T.c@.^1@......A.!..... +7450 22.797629595 127.0.0.1:57433 127.0.0.1:57415 382189054 12 ffffffffb88a0c0000000000 ............ +7452 22.798298120 127.0.0.1:57433 127.0.0.1:57415 382189066 12 16000000b8480c0000000000 .....H...... +7454 22.798474312 127.0.0.1:57433 127.0.0.1:57415 382189078 22 1200000041a821000000000001000300000000000000 ....A.!............... +7456 22.798768520 127.0.0.1:57415 127.0.0.1:57433 3339740084 12 ffffffffb8480c0000000000 .....H...... +7463 22.827675104 127.0.0.1:57415 127.0.0.1:57433 3339740096 12 22000000b98a0c0000000000 "........... +7465 22.827938557 127.0.0.1:57415 127.0.0.1:57433 3339740108 34 1e0000001c2118d0c46f33bb010003000000945502000000000010a074c39d01 .....!...o3........U........t..... +7467 22.828107119 127.0.0.1:57415 127.0.0.1:57433 3339740142 12 43000000ba8a0c0000000000 C........... +7469 22.828219414 127.0.0.1:57415 127.0.0.1:57433 3339740154 67 3f000000980433cb0cb47c38010003000000010000000094550200000000003d ?.....3...|8............U......=B.....&......... +7471 22.828475475 127.0.0.1:57433 127.0.0.1:57415 382189100 12 ffffffffb98a0c0000000000 ............ +7473 22.828768015 127.0.0.1:57433 127.0.0.1:57415 382189112 12 ffffffffba8a0c0000000000 ............ +7475 22.829432249 127.0.0.1:57433 127.0.0.1:57415 382189124 12 34000000b9480c0000000000 4....H...... +7477 22.829648733 127.0.0.1:57433 127.0.0.1:57415 382189136 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U..........@. +7480 22.829887867 127.0.0.1:57415 127.0.0.1:57433 3339740221 12 ffffffffb9480c0000000000 .....H...... +7483 22.831365108 127.0.0.1:57415 127.0.0.1:57433 3339740233 12 1e000000bb8a0c0000000000 ............ +7485 22.831607580 127.0.0.1:57415 127.0.0.1:57433 3339740245 30 1a00000055ceff62b21b3a5001000300000043a821000000000000000000 ....U..b..:P......C.!......... +7491 22.832229853 127.0.0.1:57433 127.0.0.1:57415 382189188 12 ffffffffbb8a0c0000000000 ............ +7493 22.832725763 127.0.0.1:57433 127.0.0.1:57415 382189200 12 1a000000ba480c0000000000 .....H...... +7496 22.833007812 127.0.0.1:57433 127.0.0.1:57415 382189212 26 1600000043a82100000000000100030000000000000000000000 ....C.!................... +7500 22.833316565 127.0.0.1:57415 127.0.0.1:57433 3339740275 12 ffffffffba480c0000000000 .....H...... +7522 22.900605679 127.0.0.1:57415 127.0.0.1:57433 3339740287 12 1a000000bc8a0c0000000000 ............ +7524 22.900911331 127.0.0.1:57415 127.0.0.1:57433 3339740299 26 16000000548f6340e25e314001000300000045a8210000000000 ....T.c@.^1@......E.!..... +7526 22.901280403 127.0.0.1:57433 127.0.0.1:57415 382189238 12 ffffffffbc8a0c0000000000 ............ +7528 22.901859760 127.0.0.1:57433 127.0.0.1:57415 382189250 12 16000000bb480c0000000000 .....H...... +7530 22.901999235 127.0.0.1:57433 127.0.0.1:57415 382189262 22 1200000045a821000000000001000300000000000000 ....E.!............... +7532 22.902268410 127.0.0.1:57415 127.0.0.1:57433 3339740325 12 ffffffffbb480c0000000000 .....H...... +7540 22.939839125 127.0.0.1:57415 127.0.0.1:57433 3339740337 12 feffffff676c0100526c0100 ....gl..Rl.. +7544 23.005345106 127.0.0.1:57415 127.0.0.1:57433 3339740349 12 1a000000bd8a0c0000000000 ............ +7546 23.005586863 127.0.0.1:57415 127.0.0.1:57433 3339740361 26 16000000548f6340e25e314001000300000047a8210000000000 ....T.c@.^1@......G.!..... +7548 23.006116152 127.0.0.1:57433 127.0.0.1:57415 382189284 12 ffffffffbd8a0c0000000000 ............ +7550 23.006555080 127.0.0.1:57433 127.0.0.1:57415 382189296 12 16000000bc480c0000000000 .....H...... +7553 23.006708622 127.0.0.1:57433 127.0.0.1:57415 382189308 22 1200000047a821000000000001000300000000000000 ....G.!............... +7556 23.007001162 127.0.0.1:57415 127.0.0.1:57433 3339740387 12 ffffffffbc480c0000000000 .....H...... +7564 23.110091209 127.0.0.1:57415 127.0.0.1:57433 3339740399 12 1a000000be8a0c0000000000 ............ +7566 23.110359192 127.0.0.1:57415 127.0.0.1:57433 3339740411 26 16000000548f6340e25e314001000300000049a8210000000000 ....T.c@.^1@......I.!..... +7568 23.110679388 127.0.0.1:57433 127.0.0.1:57415 382189330 12 ffffffffbe8a0c0000000000 ............ +7570 23.111229897 127.0.0.1:57433 127.0.0.1:57415 382189342 12 16000000bd480c0000000000 .....H...... +7572 23.111444473 127.0.0.1:57433 127.0.0.1:57415 382189354 22 1200000049a821000000000001000300000000000000 ....I.!............... +7574 23.111739635 127.0.0.1:57415 127.0.0.1:57433 3339740437 12 ffffffffbd480c0000000000 .....H...... +7576 23.132533312 127.0.0.1:57415 127.0.0.1:57433 3339740449 12 65000000bf8a0c0000000000 e........... +7578 23.132724285 127.0.0.1:57415 127.0.0.1:57433 3339740461 101 1e0000001c2118d0c46f33bb010003000000955502000000000041a174c39d01 .....!...o3........U......A.t.....?.....3...|8.. +7580 23.133151531 127.0.0.1:57433 127.0.0.1:57415 382189376 12 ffffffffbf8a0c0000000000 ............ +7582 23.134639263 127.0.0.1:57433 127.0.0.1:57415 382189388 12 34000000be480c0000000000 4....H...... +7584 23.134905338 127.0.0.1:57433 127.0.0.1:57415 382189400 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......U..........n. +7586 23.135519743 127.0.0.1:57415 127.0.0.1:57433 3339740562 12 ffffffffbe480c0000000000 .....H...... +7588 23.136922359 127.0.0.1:57415 127.0.0.1:57433 3339740574 12 1e000000c08a0c0000000000 ............ +7590 23.137169600 127.0.0.1:57415 127.0.0.1:57433 3339740586 30 1a00000055ceff62b21b3a500100030000004ba821000000000000000000 ....U..b..:P......K.!......... +7594 23.137534618 127.0.0.1:57433 127.0.0.1:57415 382189452 12 ffffffffc08a0c0000000000 ............ +7601 23.138265610 127.0.0.1:57433 127.0.0.1:57415 382189464 12 1a000000bf480c0000000000 .....H...... +7604 23.138454437 127.0.0.1:57433 127.0.0.1:57415 382189476 26 160000004ba82100000000000100030000000000000000000000 ....K.!................... +7606 23.138793468 127.0.0.1:57415 127.0.0.1:57433 3339740616 12 ffffffffbf480c0000000000 .....H...... +1423 0.000000000 ::1:53874 ::1:49704 1644782032 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +1425 0.000386715 ::1:49704 ::1:53874 138218575 84 05000c03100000005400000002000000d016d016d1b900000600343937303400 ........T.................49704..........]...... +1427 0.000524521 ::1:53874 ::1:49704 1644782148 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +1429 0.000703335 ::1:49704 ::1:53874 138218659 44 05000203100000002c00000002000000140000000000000000000000d01c5ad9 ........,.....................Z.R=.J.'..L.?D +1431 0.000875950 ::1:53874 ::1:49704 1644782188 72 05000e03100000004800000003000000d016d016d1b900000100000001000100 ........H.......................K....k.F.@.`..Q. +1433 0.001000166 ::1:49704 ::1:53874 138218703 56 05000f03100000003800000003000000d016d016d1b900000000000001000000 ........8............................].......... +1435 0.001275778 ::1:53874 ::1:49704 1644782260 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K..........Z. +1437 0.002914906 ::1:49704 ::1:53874 138218759 28 05000203100000001c00000003000000040000000100000001000000 ............................ +1439 0.003124714 ::1:53874 ::1:49704 1644782356 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........Z. +1441 0.003286123 ::1:49704 ::1:53874 138218787 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +1443 0.003538609 ::1:53874 ::1:49704 1644782416 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........Z. +1445 0.003706694 ::1:49704 ::1:53874 138218879 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +1447 0.003839254 ::1:53874 ::1:49704 1644782536 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........Z. +1449 0.003980637 ::1:49704 ::1:53874 138218911 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +1451 0.004123449 ::1:53874 ::1:49704 1644782660 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K..........Z. +1453 0.004262686 ::1:49704 ::1:53874 138218943 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +1455 0.004384995 ::1:53874 ::1:49704 1644782778 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........Z. +1457 0.004522085 ::1:49704 ::1:53874 138218975 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +1459 0.004673243 ::1:53874 ::1:49704 1644782898 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........Z. +1461 0.004814625 ::1:49704 ::1:53874 138219007 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +1463 0.005059242 ::1:53874 ::1:49704 1644783028 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........Z. +1465 0.005223989 ::1:49704 ::1:53874 138219039 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +1467 0.005390644 ::1:53874 ::1:49704 1644783158 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........Z. +1469 0.005571604 ::1:49704 ::1:53874 138219071 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +1471 0.005738974 ::1:53874 ::1:49704 1644783300 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K..........Z. +1473 0.005894899 ::1:49704 ::1:53874 138219103 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +1475 0.006092310 ::1:53874 ::1:49704 1644783416 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........Z. +1477 0.006257296 ::1:49704 ::1:53874 138219135 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +1479 0.006435394 ::1:53874 ::1:49704 1644783546 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........Z. +1481 0.006615162 ::1:49704 ::1:53874 138219167 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +1483 0.006768703 ::1:53874 ::1:49704 1644783674 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K..........Z. +1485 0.006945133 ::1:49704 ::1:53874 138219199 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +1487 0.007624865 ::1:53874 ::1:49704 1644783800 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........Z. +1489 0.007778883 ::1:49704 ::1:53874 138219231 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +1491 0.007990837 ::1:53874 ::1:49704 1644783932 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........Z. +1493 0.008131981 ::1:49704 ::1:53874 138219263 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +1522 0.141562223 ::1:53874 ::1:49704 1644784084 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +1524 0.141805887 ::1:49704 ::1:53874 138219295 44 05000203100000002c00000012000000140000000000000000000000c1605071 ........,....................`Pq5..F...G..T. +1526 0.142246008 ::1:53874 ::1:49704 1644784124 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K.........`Pq +1528 0.143703461 ::1:49704 ::1:53874 138219339 28 05000203100000001c00000013000000040000000100000001000000 ............................ +1530 0.143861055 ::1:53874 ::1:49704 1644784232 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........`Pq +1532 0.144131422 ::1:49704 ::1:53874 138219367 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +1534 0.144351006 ::1:53874 ::1:49704 1644784292 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........`Pq +1536 0.144501686 ::1:49704 ::1:53874 138219459 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +1538 0.144640923 ::1:53874 ::1:49704 1644784424 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........`Pq +1540 0.144777775 ::1:49704 ::1:53874 138219491 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +1542 0.144915581 ::1:53874 ::1:49704 1644784560 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........`Pq +1544 0.145073891 ::1:49704 ::1:53874 138219523 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +1546 0.145217657 ::1:53874 ::1:49704 1644784690 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........`Pq +1548 0.145404816 ::1:49704 ::1:53874 138219555 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +1550 0.145543575 ::1:53874 ::1:49704 1644784822 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........`Pq +1552 0.145679474 ::1:49704 ::1:53874 138219587 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +1554 0.145813704 ::1:53874 ::1:49704 1644784964 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........`Pq +1556 0.145985842 ::1:49704 ::1:53874 138219619 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +1558 0.146125555 ::1:53874 ::1:49704 1644785106 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K.........`Pq +1560 0.146260738 ::1:49704 ::1:53874 138219651 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +1562 0.146397352 ::1:53874 ::1:49704 1644785260 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........`Pq +1564 0.146530628 ::1:49704 ::1:53874 138219683 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +1566 0.146669626 ::1:53874 ::1:49704 1644785388 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........`Pq +1568 0.146802902 ::1:49704 ::1:53874 138219715 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +1570 0.146962643 ::1:53874 ::1:49704 1644785530 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K.........`Pq +1572 0.147073746 ::1:49704 ::1:53874 138219747 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +1574 0.147207975 ::1:53874 ::1:49704 1644785670 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........`Pq +1576 0.147411346 ::1:49704 ::1:53874 138219779 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +1583 0.163541079 ::1:53874 ::1:49704 1644785808 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +1585 0.163759232 ::1:49704 ::1:53874 138219811 44 05000203100000002c00000020000000140000000000000000000000e8b7db7f ........,... ...................b..G.|j.u... +1587 0.163958073 ::1:53874 ::1:49704 1644785848 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K............ +1589 0.165392399 ::1:49704 ::1:53874 138219855 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +1591 0.165550709 ::1:53874 ::1:49704 1644785952 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K............ +1593 0.165731907 ::1:49704 ::1:53874 138219883 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +1596 0.165952206 ::1:53874 ::1:49704 1644786012 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K............ +1599 0.166153431 ::1:49704 ::1:53874 138219975 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +1601 0.166389227 ::1:53874 ::1:49704 1644786140 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K............ +1603 0.166566133 ::1:49704 ::1:53874 138220007 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +1605 0.166836977 ::1:53874 ::1:49704 1644786272 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K............ +1607 0.167017937 ::1:49704 ::1:53874 138220039 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +1609 0.167323112 ::1:53874 ::1:49704 1644786398 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K............ +1611 0.167480469 ::1:49704 ::1:53874 138220071 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +1613 0.167661190 ::1:53874 ::1:49704 1644786526 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K............ +1615 0.168115377 ::1:49704 ::1:53874 138220103 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +1617 0.168265820 ::1:53874 ::1:49704 1644786664 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K............ +1619 0.168415785 ::1:49704 ::1:53874 138220135 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +1621 0.168557167 ::1:53874 ::1:49704 1644786802 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K............ +1623 0.168727875 ::1:49704 ::1:53874 138220167 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +1625 0.168905020 ::1:53874 ::1:49704 1644786952 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K............ +1627 0.169142485 ::1:49704 ::1:53874 138220199 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +1629 0.169301033 ::1:53874 ::1:49704 1644787076 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K............ +1631 0.169452906 ::1:49704 ::1:53874 138220231 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +1633 0.169591188 ::1:53874 ::1:49704 1644787214 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K............ +1635 0.169821501 ::1:49704 ::1:53874 138220263 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +1637 0.169984341 ::1:53874 ::1:49704 1644787350 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K............ +1639 0.170183182 ::1:49704 ::1:53874 138220295 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +1641 0.170388937 ::1:53874 ::1:49704 1644787484 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +1643 0.170563698 ::1:49704 ::1:53874 138220327 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +1645 0.170764446 ::1:53874 ::1:49704 1644787624 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K............ +1647 0.170974493 ::1:49704 ::1:53874 138220359 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +1670 0.279642820 ::1:53874 ::1:49704 1644787770 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +1672 0.279908419 ::1:49704 ::1:53874 138220391 44 05000203100000002c00000030000000140000000000000000000000323196e9 ........,...0...............21.....F......9. +1674 0.280176163 ::1:53874 ::1:49704 1644787810 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........21.. +1676 0.281739473 ::1:49704 ::1:53874 138220435 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +1678 0.281951189 ::1:53874 ::1:49704 1644787922 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........21.. +1680 0.282153606 ::1:49704 ::1:53874 138220463 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +1684 0.282464027 ::1:53874 ::1:49704 1644787982 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........21.. +1686 0.282680035 ::1:49704 ::1:53874 138220555 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +1688 0.282865286 ::1:53874 ::1:49704 1644788118 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........21.. +1690 0.283034801 ::1:49704 ::1:53874 138220587 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +1692 0.283201218 ::1:53874 ::1:49704 1644788258 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........21.. +1694 0.283397436 ::1:49704 ::1:53874 138220619 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +1696 0.283704758 ::1:53874 ::1:49704 1644788392 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........21.. +1698 0.283857346 ::1:49704 ::1:53874 138220651 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +1700 0.284031868 ::1:53874 ::1:49704 1644788528 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........21.. +1702 0.284273386 ::1:49704 ::1:53874 138220683 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +1704 0.284589291 ::1:53874 ::1:49704 1644788674 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........21.. +1706 0.284756899 ::1:49704 ::1:53874 138220715 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +1708 0.284932137 ::1:53874 ::1:49704 1644788820 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........21.. +1710 0.285162449 ::1:49704 ::1:53874 138220747 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +1712 0.285344839 ::1:53874 ::1:49704 1644788978 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........21.. +1714 0.285594940 ::1:49704 ::1:53874 138220779 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +1716 0.285757780 ::1:53874 ::1:49704 1644789110 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........21.. +1718 0.285927534 ::1:49704 ::1:53874 138220811 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +1720 0.286088228 ::1:53874 ::1:49704 1644789256 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........21.. +1722 0.286391258 ::1:49704 ::1:53874 138220843 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +1724 0.286525011 ::1:53874 ::1:49704 1644789400 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........21.. +1726 0.286818504 ::1:49704 ::1:53874 138220875 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +1728 0.287138939 ::1:53874 ::1:49704 1644789542 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........21.. +1730 0.287335873 ::1:49704 ::1:53874 138220907 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +1732 0.287479639 ::1:53874 ::1:49704 1644789690 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........21.. +1734 0.287643433 ::1:49704 ::1:53874 138220939 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +1797 0.426453590 ::1:53874 ::1:49704 1644789844 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +1799 0.426668882 ::1:49704 ::1:53874 138220971 44 05000203100000002c000000400000001400000000000000000000006d4b44ec ........,...@...............mKD..<2C..)s..J. +1801 0.426849365 ::1:53874 ::1:49704 1644789884 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........mKD. +1803 0.429227352 ::1:49704 ::1:53874 138221015 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +1805 0.429392099 ::1:53874 ::1:49704 1644789976 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........mKD. +1807 0.429635286 ::1:49704 ::1:53874 138221043 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1809 0.429894686 ::1:53874 ::1:49704 1644790036 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........mKD. +1811 0.430248499 ::1:49704 ::1:53874 138221135 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1813 0.430408001 ::1:53874 ::1:49704 1644790152 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........mKD. +1815 0.430663586 ::1:49704 ::1:53874 138221167 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1817 0.430880785 ::1:53874 ::1:49704 1644790272 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........mKD. +1819 0.431177139 ::1:49704 ::1:53874 138221199 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1821 0.431414843 ::1:53874 ::1:49704 1644790386 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........mKD. +1824 0.431676149 ::1:49704 ::1:53874 138221231 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1827 0.431835651 ::1:53874 ::1:49704 1644790502 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........mKD. +1829 0.432124853 ::1:49704 ::1:53874 138221263 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1831 0.432309151 ::1:53874 ::1:49704 1644790628 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........mKD. +1833 0.432537794 ::1:49704 ::1:53874 138221295 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1835 0.432694197 ::1:53874 ::1:49704 1644790754 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........mKD. +1837 0.432864904 ::1:49704 ::1:53874 138221327 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1839 0.433011770 ::1:53874 ::1:49704 1644790892 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........mKD. +1841 0.433284283 ::1:49704 ::1:53874 138221359 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1843 0.433429003 ::1:53874 ::1:49704 1644791004 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........mKD. +1845 0.433588982 ::1:49704 ::1:53874 138221391 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1847 0.433734179 ::1:53874 ::1:49704 1644791130 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........mKD. +1849 0.433887243 ::1:49704 ::1:53874 138221423 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1851 0.434024096 ::1:53874 ::1:49704 1644791254 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........mKD. +1853 0.434216022 ::1:49704 ::1:53874 138221455 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1855 0.434455872 ::1:53874 ::1:49704 1644791376 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........mKD. +1857 0.434614658 ::1:49704 ::1:53874 138221487 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1859 0.434769630 ::1:53874 ::1:49704 1644791504 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........mKD. +1861 0.434922457 ::1:49704 ::1:53874 138221519 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1863 0.435070992 ::1:53874 ::1:49704 1644791638 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........mKD. +1865 0.435308218 ::1:49704 ::1:53874 138221551 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1867 0.435471773 ::1:53874 ::1:49704 1644791768 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........mKD. +1869 0.435652971 ::1:49704 ::1:53874 138221583 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3944 7.592025995 ::1:53874 ::1:49704 1644791896 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3946 7.592437983 ::1:49704 ::1:53874 138221615 44 05000203100000002c000000520000001400000000000000000000004885322d ........,...R...............H.2-...I........ +3948 7.592650175 ::1:53874 ::1:49704 1644791936 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K........H.2- +3950 7.595401287 ::1:49704 ::1:53874 138221659 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3952 7.595582247 ::1:53874 ::1:49704 1644792036 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K........H.2- +3954 7.595764399 ::1:49704 ::1:53874 138221687 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3956 7.595987082 ::1:53874 ::1:49704 1644792096 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K........H.2- +3958 7.596192360 ::1:49704 ::1:53874 138221779 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3960 7.596366405 ::1:53874 ::1:49704 1644792220 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K........H.2- +3962 7.596555948 ::1:49704 ::1:53874 138221811 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3964 7.596704245 ::1:53874 ::1:49704 1644792348 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K........H.2- +3966 7.596965790 ::1:49704 ::1:53874 138221843 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3968 7.597132683 ::1:53874 ::1:49704 1644792470 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K........H.2- +3970 7.597344398 ::1:49704 ::1:53874 138221875 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3972 7.597521305 ::1:53874 ::1:49704 1644792594 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K........H.2- +3974 7.597725630 ::1:49704 ::1:53874 138221907 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3976 7.597888231 ::1:53874 ::1:49704 1644792728 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K........H.2- +3978 7.598077774 ::1:49704 ::1:53874 138221939 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3980 7.598228216 ::1:53874 ::1:49704 1644792862 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K........H.2- +3982 7.598592520 ::1:49704 ::1:53874 138221971 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3984 7.598749638 ::1:53874 ::1:49704 1644793008 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K........H.2- +3986 7.598916769 ::1:49704 ::1:53874 138222003 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3988 7.599061012 ::1:53874 ::1:49704 1644793128 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K........H.2- +3990 7.599272490 ::1:49704 ::1:53874 138222035 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3992 7.599426031 ::1:53874 ::1:49704 1644793262 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K........H.2- +3994 7.599673271 ::1:49704 ::1:53874 138222067 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3996 7.599828482 ::1:53874 ::1:49704 1644793394 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K........H.2- +3999 7.600010395 ::1:49704 ::1:53874 138222099 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +4003 7.600229025 ::1:53874 ::1:49704 1644793524 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K........H.2- +4005 7.600457668 ::1:49704 ::1:53874 138222131 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +4009 7.600612640 ::1:53874 ::1:49704 1644793668 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K........H.2- +4011 7.600796223 ::1:49704 ::1:53874 138222163 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +4013 7.600969553 ::1:53874 ::1:49704 1644793816 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K........H.2- +4015 7.601187468 ::1:49704 ::1:53874 138222195 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +4017 7.601470232 ::1:53874 ::1:49704 1644793962 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K........H.2- +4019 7.601665497 ::1:49704 ::1:53874 138222227 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +4057 7.677094460 ::1:53874 ::1:49704 1644794120 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +4059 7.677476168 ::1:49704 ::1:53874 138222259 44 05000203100000002c00000064000000140000000000000000000000f4c4be46 ........,...d..................FU..E...n<0.. +4061 7.677719116 ::1:53874 ::1:49704 1644794160 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K...........F +4063 7.680467606 ::1:49704 ::1:53874 138222303 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +4065 7.680743217 ::1:53874 ::1:49704 1644794244 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K...........F +4067 7.681353569 ::1:49704 ::1:53874 138222331 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +4069 7.681647539 ::1:53874 ::1:49704 1644794304 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K...........F +4075 7.682133913 ::1:49704 ::1:53874 138222423 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +4077 7.682317972 ::1:53874 ::1:49704 1644794412 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K...........F +4081 7.682631254 ::1:49704 ::1:53874 138222455 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +4083 7.682796240 ::1:53874 ::1:49704 1644794524 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K...........F +4086 7.683041334 ::1:49704 ::1:53874 138222487 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +4090 7.683203697 ::1:53874 ::1:49704 1644794630 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K...........F +4093 7.683421373 ::1:49704 ::1:53874 138222519 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +4095 7.683636427 ::1:53874 ::1:49704 1644794738 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K...........F +4099 7.683868647 ::1:49704 ::1:53874 138222551 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +4101 7.684032440 ::1:53874 ::1:49704 1644794856 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K...........F +4103 7.684262753 ::1:49704 ::1:53874 138222583 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +4105 7.684412956 ::1:53874 ::1:49704 1644794974 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K...........F +4107 7.684693098 ::1:49704 ::1:53874 138222615 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +4109 7.684841156 ::1:53874 ::1:49704 1644795104 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K...........F +4111 7.685029984 ::1:49704 ::1:53874 138222647 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +4113 7.685192823 ::1:53874 ::1:49704 1644795208 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K...........F +4115 7.685401678 ::1:49704 ::1:53874 138222679 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +4117 7.685709953 ::1:53874 ::1:49704 1644795326 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K...........F +4119 7.685917139 ::1:49704 ::1:53874 138222711 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +4122 7.686080217 ::1:53874 ::1:49704 1644795442 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K...........F +4125 7.686309338 ::1:49704 ::1:53874 138222743 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +4127 7.686843872 ::1:53874 ::1:49704 1644795556 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K...........F +4129 7.687089682 ::1:49704 ::1:53874 138222775 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +4131 7.687301397 ::1:53874 ::1:49704 1644795684 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K...........F +4133 7.687472582 ::1:49704 ::1:53874 138222807 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +4135 7.687681198 ::1:53874 ::1:49704 1644795804 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K...........F +4137 7.687942982 ::1:49704 ::1:53874 138222839 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +4139 7.688128471 ::1:53874 ::1:49704 1644795924 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K...........F +4141 7.688387394 ::1:49704 ::1:53874 138222871 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +4143 7.688610315 ::1:53874 ::1:49704 1644796046 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K...........F +4145 7.688919783 ::1:49704 ::1:53874 138222903 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +4147 7.689253330 ::1:53874 ::1:49704 1644796180 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K...........F +4149 7.689563274 ::1:49704 ::1:53874 138222935 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +4151 7.689756870 ::1:53874 ::1:49704 1644796312 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K...........F +4153 7.690028667 ::1:49704 ::1:53874 138222967 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +4155 7.690171957 ::1:53874 ::1:49704 1644796442 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K...........F +4157 7.690537930 ::1:49704 ::1:53874 138222999 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +4159 7.690744162 ::1:53874 ::1:49704 1644796580 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K...........F +4161 7.690993071 ::1:49704 ::1:53874 138223031 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +4163 7.691221476 ::1:53874 ::1:49704 1644796724 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K...........F +4165 7.691455364 ::1:49704 ::1:53874 138223063 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +4167 7.691711903 ::1:53874 ::1:49704 1644796868 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K...........F +4169 7.691956997 ::1:49704 ::1:53874 138223095 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +4171 7.692148209 ::1:53874 ::1:49704 1644796984 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K...........F +4173 7.692391872 ::1:49704 ::1:53874 138223127 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +4175 7.692601442 ::1:53874 ::1:49704 1644797114 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K...........F +4177 7.692885637 ::1:49704 ::1:53874 138223159 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +4179 7.693077087 ::1:53874 ::1:49704 1644797252 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K...........F +4181 7.693393946 ::1:49704 ::1:53874 138223191 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +4183 7.693597794 ::1:53874 ::1:49704 1644797382 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K...........F +4185 7.693827629 ::1:49704 ::1:53874 138223223 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +4187 7.694052935 ::1:53874 ::1:49704 1644797504 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K...........F +4189 7.694322348 ::1:49704 ::1:53874 138223255 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +4191 7.694557428 ::1:53874 ::1:49704 1644797626 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K...........F +4193 7.695011854 ::1:49704 ::1:53874 138223287 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +4195 7.695237398 ::1:53874 ::1:49704 1644797760 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K...........F +4197 7.695543051 ::1:49704 ::1:53874 138223319 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +4199 7.695735931 ::1:53874 ::1:49704 1644797888 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K...........F +4201 7.696019173 ::1:49704 ::1:53874 138223351 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +4207 7.732672691 ::1:53874 ::1:49704 1644798012 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K...........F +4209 7.733186483 ::1:49704 ::1:53874 138223383 28 05000203100000001c00000085000000040000000100000001000000 ............................ +4233 7.774638653 ::1:53874 ::1:49704 1644798528 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4235 7.774864674 ::1:49704 ::1:53874 138223411 44 05000203100000002c0000008600000014000000000000000000000024ee6af7 ........,...................$.j...aK....p+.. +4237 7.775073290 ::1:53874 ::1:49704 1644798568 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........$.j. +4239 7.777346611 ::1:49704 ::1:53874 138223455 28 05000203100000001c00000087000000040000000100000001000000 ............................ +4241 7.777544975 ::1:53874 ::1:49704 1644798680 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........$.j. +4243 7.777806997 ::1:49704 ::1:53874 138223483 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4245 7.778041840 ::1:53874 ::1:49704 1644798740 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........$.j. +4247 7.778280973 ::1:49704 ::1:53874 138223575 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +4249 7.778486490 ::1:53874 ::1:49704 1644798876 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........$.j. +4251 7.778643131 ::1:49704 ::1:53874 138223607 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +4253 7.778825760 ::1:53874 ::1:49704 1644799016 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........$.j. +4255 7.779039860 ::1:49704 ::1:53874 138223639 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +4257 7.779191494 ::1:53874 ::1:49704 1644799150 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........$.j. +4259 7.779495478 ::1:49704 ::1:53874 138223671 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +4261 7.779664516 ::1:53874 ::1:49704 1644799286 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........$.j. +4263 7.779878855 ::1:49704 ::1:53874 138223703 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +4265 7.780052662 ::1:53874 ::1:49704 1644799432 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........$.j. +4267 7.780275345 ::1:49704 ::1:53874 138223735 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +4269 7.780473471 ::1:53874 ::1:49704 1644799578 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........$.j. +4271 7.780796528 ::1:49704 ::1:53874 138223767 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +4273 7.780969381 ::1:53874 ::1:49704 1644799736 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........$.j. +4275 7.781186342 ::1:49704 ::1:53874 138223799 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +4277 7.781431437 ::1:53874 ::1:49704 1644799868 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........$.j. +4279 7.781758070 ::1:49704 ::1:53874 138223831 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +4281 7.781918526 ::1:53874 ::1:49704 1644800014 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........$.j. +4283 7.782154560 ::1:49704 ::1:53874 138223863 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +4284 7.782507181 ::1:53874 ::1:49704 1644800158 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........$.j. +4286 7.782786608 ::1:49704 ::1:53874 138223895 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +4288 7.782992601 ::1:53874 ::1:49704 1644800300 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........$.j. +4290 7.783189058 ::1:49704 ::1:53874 138223927 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +4292 7.783373356 ::1:53874 ::1:49704 1644800460 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........$.j. +4294 7.783607244 ::1:49704 ::1:53874 138223959 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +4296 7.783838511 ::1:53874 ::1:49704 1644800616 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........$.j. +4298 7.784117222 ::1:49704 ::1:53874 138223991 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +4300 7.784269094 ::1:53874 ::1:49704 1644800770 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........$.j. +4302 7.784488678 ::1:49704 ::1:53874 138224023 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +4304 7.784672976 ::1:53874 ::1:49704 1644800916 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........$.j. +4306 7.784935713 ::1:49704 ::1:53874 138224055 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +4308 7.785086870 ::1:53874 ::1:49704 1644801070 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........$.j. +4310 7.785247564 ::1:49704 ::1:53874 138224087 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +4313 7.785430193 ::1:53874 ::1:49704 1644801220 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........$.j. +4318 7.785703897 ::1:49704 ::1:53874 138224119 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +4320 7.785862684 ::1:53874 ::1:49704 1644801372 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........$.j. +4324 7.786014318 ::1:49704 ::1:53874 138224151 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +4326 7.786159039 ::1:53874 ::1:49704 1644801512 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........$.j. +4328 7.786359787 ::1:49704 ::1:53874 138224183 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +4331 7.786585569 ::1:53874 ::1:49704 1644801660 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........$.j. +4336 7.786829710 ::1:49704 ::1:53874 138224215 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +4338 7.786988974 ::1:53874 ::1:49704 1644801822 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........$.j. +4342 7.787218571 ::1:49704 ::1:53874 138224247 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +4344 7.787397861 ::1:53874 ::1:49704 1644801994 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........$.j. +4346 7.787628174 ::1:49704 ::1:53874 138224279 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +4354 7.795887947 ::1:53874 ::1:49704 1644802138 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4356 7.796122551 ::1:49704 ::1:53874 138224311 44 05000203100000002c000000a0000000140000000000000000000000befa6532 ........,.....................e2.>(J...b...0 +4358 7.796295404 ::1:53874 ::1:49704 1644802178 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K..........e2 +4360 7.798540592 ::1:49704 ::1:53874 138224355 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +4362 7.798706770 ::1:53874 ::1:49704 1644802306 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........e2 +4364 7.798888922 ::1:49704 ::1:53874 138224383 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4366 7.799149752 ::1:53874 ::1:49704 1644802366 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........e2 +4368 7.799545288 ::1:49704 ::1:53874 138224475 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +4370 7.799701691 ::1:53874 ::1:49704 1644802518 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K..........e2 +4372 7.799919605 ::1:49704 ::1:53874 138224507 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +4374 7.800076723 ::1:53874 ::1:49704 1644802674 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K..........e2 +4376 7.800239086 ::1:49704 ::1:53874 138224539 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +4378 7.800404310 ::1:53874 ::1:49704 1644802824 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........e2 +4380 7.800659180 ::1:49704 ::1:53874 138224571 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +4382 7.800815582 ::1:53874 ::1:49704 1644802976 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........e2 +4384 7.801058769 ::1:49704 ::1:53874 138224603 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +4386 7.801223040 ::1:53874 ::1:49704 1644803138 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........e2 +4388 7.801431179 ::1:49704 ::1:53874 138224635 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +4390 7.801589727 ::1:53874 ::1:49704 1644803300 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K..........e2 +4392 7.801900148 ::1:49704 ::1:53874 138224667 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +4394 7.802064896 ::1:53874 ::1:49704 1644803474 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K..........e2 +4396 7.802268028 ::1:49704 ::1:53874 138224699 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +4398 7.802437782 ::1:53874 ::1:49704 1644803622 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K..........e2 +4400 7.802671432 ::1:49704 ::1:53874 138224731 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +4402 7.802817583 ::1:53874 ::1:49704 1644803784 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K..........e2 +4404 7.802999973 ::1:49704 ::1:53874 138224763 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +4406 7.803147316 ::1:53874 ::1:49704 1644803944 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K..........e2 +4408 7.803443432 ::1:49704 ::1:53874 138224795 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +4410 7.803664684 ::1:53874 ::1:49704 1644804102 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K..........e2 +4412 7.803909302 ::1:49704 ::1:53874 138224827 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +4414 7.804080009 ::1:53874 ::1:49704 1644804272 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K..........e2 +4416 7.804385900 ::1:49704 ::1:53874 138224859 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +4422 7.811352730 ::1:53874 ::1:49704 1644804454 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4424 7.811836243 ::1:49704 ::1:53874 138224891 44 05000203100000002c000000b0000000140000000000000000000000854789c8 ........,....................G.....J.....{.& +4426 7.812028408 ::1:53874 ::1:49704 1644804494 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........G.. +4428 7.814680338 ::1:49704 ::1:53874 138224935 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +4430 7.814850569 ::1:53874 ::1:49704 1644804590 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........G.. +4432 7.815029621 ::1:49704 ::1:53874 138224963 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4434 7.815238476 ::1:53874 ::1:49704 1644804650 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........G.. +4436 7.815518856 ::1:49704 ::1:53874 138225055 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +4438 7.815668821 ::1:53874 ::1:49704 1644804770 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........G.. +4440 7.815883875 ::1:49704 ::1:53874 138225087 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +4442 7.816027641 ::1:53874 ::1:49704 1644804894 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........G.. +4444 7.816212654 ::1:49704 ::1:53874 138225119 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +4446 7.816361427 ::1:53874 ::1:49704 1644805012 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........G.. +4448 7.816754580 ::1:49704 ::1:53874 138225151 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +4450 7.816923857 ::1:53874 ::1:49704 1644805132 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........G.. +4452 7.817161083 ::1:49704 ::1:53874 138225183 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +4454 7.817316532 ::1:53874 ::1:49704 1644805262 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........G.. +4456 7.817588806 ::1:49704 ::1:53874 138225215 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +4458 7.817748070 ::1:53874 ::1:49704 1644805392 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........G.. +4460 7.817957878 ::1:49704 ::1:53874 138225247 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +4462 7.818107128 ::1:53874 ::1:49704 1644805534 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........G.. +4464 7.818320990 ::1:49704 ::1:53874 138225279 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +4466 7.818528652 ::1:53874 ::1:49704 1644805650 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........G.. +4468 7.818764687 ::1:49704 ::1:53874 138225311 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +4470 7.818923712 ::1:53874 ::1:49704 1644805780 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........G.. +4472 7.819171667 ::1:49704 ::1:53874 138225343 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +4474 7.819321632 ::1:53874 ::1:49704 1644805908 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........G.. +4476 7.819622993 ::1:49704 ::1:53874 138225375 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +4478 7.819938183 ::1:53874 ::1:49704 1644806034 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........G.. +4480 7.820124865 ::1:49704 ::1:53874 138225407 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +4482 7.820285797 ::1:53874 ::1:49704 1644806160 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........G.. +4484 7.820478916 ::1:49704 ::1:53874 138225439 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +4486 7.820638657 ::1:53874 ::1:49704 1644806292 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........G.. +4488 7.820894003 ::1:49704 ::1:53874 138225471 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +4490 7.821073294 ::1:53874 ::1:49704 1644806422 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........G.. +4492 7.821277857 ::1:49704 ::1:53874 138225503 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +4494 7.821443319 ::1:53874 ::1:49704 1644806560 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........G.. +4496 7.821622610 ::1:49704 ::1:53874 138225535 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4498 7.821786880 ::1:53874 ::1:49704 1644806696 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........G.. +4500 7.822020292 ::1:49704 ::1:53874 138225567 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4502 7.822183609 ::1:53874 ::1:49704 1644806828 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........G.. +4504 7.822435617 ::1:49704 ::1:53874 138225599 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4506 7.822590113 ::1:53874 ::1:49704 1644806970 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........G.. +4508 7.822784185 ::1:49704 ::1:53874 138225631 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4510 7.865281343 ::1:53874 ::1:49704 1644807118 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K...........F +4512 7.865782976 ::1:49704 ::1:53874 138225663 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4558 7.957067966 ::1:53874 ::1:49704 1644807408 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K...........F +4560 7.957616806 ::1:49704 ::1:53874 138225691 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +7592 18.345676899 ::1:53874 ::1:49704 1644807614 60 05000083100000003c000000c800000014000000010006008c9e288562f29747 ........<.................(.b..G..>K.........`Pq +7596 18.346045494 ::1:49704 ::1:53874 138225719 28 05000203100000001c000000c8000000040000000100000001000000 ............................ +7598 18.346248150 ::1:53874 ::1:49704 1644807674 60 05000083100000003c000000c900000014000000000001008c9e288562f29747 ........<.................(.b..G..>K.........`Pq +7600 18.346464872 ::1:49704 ::1:53874 138225747 44 05000203100000002c000000c900000014000000000000000000000000000000 ........,................................... +7612 18.354530334 ::1:53874 ::1:49704 1644807734 40 050000831000000028000000ca00000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +7614 18.354891539 ::1:49704 ::1:53874 138225791 44 05000203100000002c000000ca0000001400000000000000000000004615f164 ........,...................F..d<..O....../s +7616 18.355594873 ::1:53874 ::1:49704 1644807774 108 05000083100000006c000000cb00000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........F..d +7618 18.358676195 ::1:49704 ::1:53874 138225835 28 05000203100000001c000000cb000000040000000100000001000000 ............................ +7620 18.358874798 ::1:53874 ::1:49704 1644807882 60 05000083100000003c000000cc00000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........F..d +7622 18.359104395 ::1:49704 ::1:53874 138225863 92 05000203100000005c000000cc00000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +7624 18.359345675 ::1:53874 ::1:49704 1644807942 132 050000831000000084000000cd0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........F..d +7626 18.359622240 ::1:49704 ::1:53874 138225955 32 050002031000000020000000cd0000000800000001000000600d000001000000 ........ ...............`....... +7628 18.359796286 ::1:53874 ::1:49704 1644808074 136 050000831000000088000000ce00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........F..d +7630 18.359976768 ::1:49704 ::1:53874 138225987 32 050002031000000020000000ce0000000800000001000000610d000001000000 ........ ...............a....... +7632 18.360132456 ::1:53874 ::1:49704 1644808210 130 050000831000000082000000cf0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........F..d +7634 18.360428333 ::1:49704 ::1:53874 138226019 32 050002031000000020000000cf0000000800000001000000620d000001000000 ........ ...............b....... +7636 18.360611916 ::1:53874 ::1:49704 1644808340 132 050000831000000084000000d00000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........F..d +7638 18.360839128 ::1:49704 ::1:53874 138226051 32 050002031000000020000000d00000000800000001000000630d000001000000 ........ ...............c....... +7640 18.360996008 ::1:53874 ::1:49704 1644808472 142 05000083100000008e000000d100000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........F..d +7642 18.361294270 ::1:49704 ::1:53874 138226083 32 050002031000000020000000d10000000800000001000000640d000001000000 ........ ...............d....... +7644 18.361457348 ::1:53874 ::1:49704 1644808614 142 05000083100000008e000000d200000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........F..d +7646 18.361644030 ::1:49704 ::1:53874 138226115 32 050002031000000020000000d20000000800000001000000650d000001000000 ........ ...............e....... +7648 18.361802101 ::1:53874 ::1:49704 1644808756 154 05000083100000009a000000d300000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........F..d +7650 18.361980438 ::1:49704 ::1:53874 138226147 32 050002031000000020000000d30000000800000001000000660d000001000000 ........ ...............f....... +7652 18.362132788 ::1:53874 ::1:49704 1644808910 128 050000831000000080000000d400000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........F..d +7654 18.362404585 ::1:49704 ::1:53874 138226179 32 050002031000000020000000d40000000800000001000000670d000001000000 ........ ...............g....... +7656 18.362559557 ::1:53874 ::1:49704 1644809038 142 05000083100000008e000000d500000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........F..d +7658 18.362740755 ::1:49704 ::1:53874 138226211 32 050002031000000020000000d50000000800000001000000680d000001000000 ........ ...............h....... +7660 18.362887621 ::1:53874 ::1:49704 1644809180 140 05000083100000008c000000d600000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........F..d +7662 18.363037586 ::1:49704 ::1:53874 138226243 32 050002031000000020000000d60000000800000001000000690d000001000000 ........ ...............i....... +7664 18.363213539 ::1:53874 ::1:49704 1644809320 138 05000083100000008a000000d700000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........F..d +7666 18.363336563 ::1:49704 ::1:53874 138226275 32 050002031000000020000000d700000008000000010000006a0d000001000000 ........ ...............j....... +7669 18.376121998 ::1:53874 ::1:49704 1644809458 60 05000083100000003c000000d800000014000000010006008c9e288562f29747 ........<.................(.b..G..>K.........G.. +7671 18.376645088 ::1:49704 ::1:53874 138226307 28 05000203100000001c000000d8000000040000000100000001000000 ............................ +7673 18.376842976 ::1:53874 ::1:49704 1644809518 60 05000083100000003c000000d900000014000000000001008c9e288562f29747 ........<.................(.b..G..>K.........G.. +7675 18.377389669 ::1:49704 ::1:53874 138226335 44 05000203100000002c000000d900000014000000000000000000000000000000 ........,................................... +7677 18.377680779 ::1:53874 ::1:49704 1644809578 60 05000083100000003c000000da00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K..........e2 +7679 18.377907515 ::1:49704 ::1:53874 138226379 28 05000203100000001c000000da000000040000000100000001000000 ............................ +7681 18.378059387 ::1:53874 ::1:49704 1644809638 60 05000083100000003c000000db00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K..........e2 +7683 18.378232479 ::1:49704 ::1:53874 138226407 44 05000203100000002c000000db00000014000000000000000000000000000000 ........,................................... +7685 18.378472805 ::1:53874 ::1:49704 1644809698 60 05000083100000003c000000dc00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........$.j. +7687 18.378659487 ::1:49704 ::1:53874 138226451 28 05000203100000001c000000dc000000040000000100000001000000 ............................ +7689 18.378834963 ::1:53874 ::1:49704 1644809758 60 05000083100000003c000000dd00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K........$.j. +7691 18.379046440 ::1:49704 ::1:53874 138226479 44 05000203100000002c000000dd00000014000000000000000000000000000000 ........,................................... +7693 18.379729748 ::1:53874 ::1:49704 1644809818 60 05000083100000003c000000de00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K...........F +7695 18.379997969 ::1:49704 ::1:53874 138226523 28 05000203100000001c000000de000000040000000100000001000000 ............................ +7697 18.380293131 ::1:53874 ::1:49704 1644809878 60 05000083100000003c000000df00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K...........F +7699 18.380508900 ::1:49704 ::1:53874 138226551 44 05000203100000002c000000df00000014000000000000000000000000000000 ........,................................... +7701 18.380944490 ::1:53874 ::1:49704 1644809938 60 05000083100000003c000000e000000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........H.2- +7703 18.381241083 ::1:49704 ::1:53874 138226595 28 05000203100000001c000000e0000000040000000100000001000000 ............................ +6357 0.000000000 fe80::3608:256c:365:cc73:53901 fe80::3608:256c:365:cc73:55555 3265611895 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +6410 0.115344763 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:53901 1679015648 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +2474 0.000000000 fe80::3608:256c:365:cc73:53880 fe80::3608:256c:365:cc73:55555 60902663 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +2539 0.123587847 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:53880 3704486162 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +4737 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150128432 1284 17030304ff0000000000000c31a63f1ce36b49069e5e825ded5dabba1038bf8f ............1.?..kI..^.].]...8.....7...e..%..U.. +4747 0.007007360 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088520994 54 17030300310000000000000d69b4f4c4c0043c34424cd949aea4db9fe5936b0c ....1.......i.....<4BL.I......k...7..M.c....7... +4749 0.007785559 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150129716 117 17030300700000000000000c32390359e29f6f3b1ad7abbe7dd379fc12986cfd ....p.......29.Y..o;....}.y...l...u...+..,`l...d +4755 0.011343002 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088521048 173 17030300a80000000000000d6a78478571a1274fd35ec5a1a7f4632338f69483 ............jxG.q.'O.^....c#8.....(.e.....B.A.2. +4757 0.013025999 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150129833 1284 17030304ff0000000000000c3342f47e90fee57d72af7031adef7477fe12113d ............3B.~...}r.p1..tw...=.{...U........2= +4759 0.032788754 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088521221 54 17030300310000000000000d6b327723959c0e7cf24c0646c4f09e0987312686 ....1.......k2w#...|.L.F.....1&.....G.O3....>w.N +4761 0.033954859 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150131117 117 17030300700000000000000c348cf78f7691262c1e851d932acdeae032eba941 ....p.......4...v.&,....*...2..A..(.u.u2|V..e... +4763 0.038587093 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088521275 173 17030300a80000000000000d6c739070e50490542bcc504b01ba48f5e9e641a0 ............ls.p...T+.PK..H...A.`2...Q"W.7^....n +4784 0.049773216 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150131234 1285 17030305000000000000000c35f86e8866fcf5af2e4d64884f9fedcede26dad9 ............5.n.f....Md.O....&.....>..U...~ms.1. +4786 0.057369709 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088521448 54 17030300310000000000000d6df5e5cded043ade246907b2f5f8ffa89d995286 ....1.......m.....:.$i........R............-.c.R +4788 0.057930470 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150132519 130 170303007d0000000000000c36a65bbb540665da7d10033895c4a9e0016917e4 ....}.......6.[.T.e.}..8.....i.......(......2..* +4790 0.060433388 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088521502 173 17030300a80000000000000d6eebd497b891e3d31ad4bdee883289287cf7b1a2 ............n............2.(|.....:...i.y...K.R. +4792 0.061906338 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150132649 1285 17030305000000000000000c373c484e84a8c7683c03c898dedfa5fdda0c06ff ............7.G..+t}w.PJ.v.*G...lE... +677 0.000000000 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763457 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +679 0.000282288 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763508 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +681 0.001596689 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319436 1 0a . +683 0.002654076 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763531 5 160100006e ....n +685 0.002775669 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763536 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +687 0.003441572 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319437 5 160100010f ..... +689 0.003631353 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319442 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +691 0.004439354 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763646 5 1601000079 ....y +693 0.004554749 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763651 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +695 0.005895376 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319713 5 140100001d ..... +697 0.006155014 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319718 29 a11b3019a0030a0100a312041001000000b57da2b9b7ff55de00000000 ..0...............}....U..... +699 0.006738424 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763772 21 11000000010000001f8f24a5596108270100000053 ..........$.Ya.'....S +701 0.007043839 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319747 21 11000000010000003f867ad905323ccd010000004b ........?.z..2<.....K +703 0.007396936 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633763793 1229 c9040000010000009285d32000f0e9300200000023ae62ff8f9364562c94d58b ........... ...0....#.b...dV,.....K.......%...y. +705 0.007741451 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765022 21 11000000010000008dd4db17d6a9f5db03000000b2 ..................... +707 0.010353088 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319768 21 11000000010000000a482b1de975b25d02000000f9 .........H+..u.]..... +5871 15.139945507 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765043 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +5873 15.140170813 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765094 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +5875 15.141823292 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319789 1 0a . +5879 15.143067360 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765117 5 160100006e ....n +5881 15.143218994 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765122 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +5883 15.143945217 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319790 5 160100010f ..... +5885 15.144133806 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081319795 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +5887 15.145171881 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765232 5 1601000079 ....y +5889 15.145318031 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765237 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +5891 15.146672010 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081320066 5 140100001d ..... +5893 15.146809101 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081320071 29 a11b3019a0030a0100a312041001000000a8a9a83a5395821a00000000 ..0.................:S....... +5895 15.147469997 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765358 21 11000000010000006cbb93dbb44ff59a01000000fa ........l....O....... +5897 15.147767782 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081320100 21 1100000001000000345997d44421bfad01000000d9 ........4Y..D!....... +5899 15.148306608 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633765379 1229 c9040000010000001940690d686ad0fb0200000028d0fb0c74719bfc39f16a25 .........@i.hj......(...tq..9.j%1@.../..;.I?Q.@. +5901 15.148806095 fe80::3608:256c:365:cc73:53342 fe80::3608:256c:365:cc73:808 2633766608 21 110000000100000083f479f4325ce12c0300000021 ..........y.2\.,....! +5903 15.151789427 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:53342 4081320121 21 1100000001000000b4c8b56feb0df0ce0200000044 ...........o........D +1410 0.000000000 ::1:53873 ::1:135 3570958819 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1415 0.000450373 ::1:135 ::1:53873 203109340 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1518 0.142651081 ::1:53873 ::1:135 3570958975 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1520 0.143929958 ::1:135 ::1:53873 203109492 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1579 0.165265322 ::1:53873 ::1:135 3570959131 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1581 0.165886402 ::1:135 ::1:53873 203109644 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1666 0.281337976 ::1:53873 ::1:135 3570959287 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1668 0.281922579 ::1:135 ::1:53873 203109796 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1793 0.428010702 ::1:53873 ::1:135 3570959443 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1795 0.428783178 ::1:135 ::1:53873 203109948 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3940 7.593757868 ::1:53873 ::1:135 3570959599 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3942 7.594386339 ::1:135 ::1:53873 203110100 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4053 7.678794146 ::1:53873 ::1:135 3570959755 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4055 7.679423332 ::1:135 ::1:53873 203110252 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4229 7.776437521 ::1:53873 ::1:135 3570959911 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4231 7.776962519 ::1:135 ::1:53873 203110404 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4350 7.797626495 ::1:53873 ::1:135 3570960067 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4352 7.798277378 ::1:135 ::1:53873 203110556 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4418 7.813246727 ::1:53873 ::1:135 3570960223 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4420 7.813748360 ::1:135 ::1:53873 203110708 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +7608 18.355760098 ::1:53873 ::1:135 3570960379 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +7610 18.356856823 ::1:135 ::1:53873 203110860 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2991 0.000000000 fe80::3608:256c:365:cc73:53882 fe80::3608:256c:365:cc73:55555 3122631930 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +3101 0.370712280 fe80::3608:256c:365:cc73:53882 fe80::3608:256c:365:cc73:55555 3122632135 508 000001fc000012b9000000000000000b00010000000002000000100007025343 ..............................SCHNEIDR......M.DE +3810 3.088128328 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:53882 290830580 1990 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1861..Content-T +2461 0.000000000 ::1:53879 ::1:32571 2373941901 299 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +2463 0.000935078 ::1:32571 ::1:53879 64222358 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +2465 0.001968145 ::1:53879 ::1:32571 2373942200 291 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +2468 0.006813526 ::1:32571 ::1:53879 64223254 734 485454502f312e3120323030204f4b0d0a43616368652d436f6e74726f6c3a20 HTTP/1.1 200 OK..Cache-Control: public,max-age=1 +6756 0.000000000 fe80::3608:256c:365:cc73:53904 fe80::3608:256c:365:cc73:55555 2579195126 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +6761 0.000440598 fe80::3608:256c:365:cc73:53904 fe80::3608:256c:365:cc73:55555 2579195331 456 000001c8000051f0000000000000000b00010000000002000000100007025343 ......Q.......................SCHNEIDR......M.DE +7536 2.508873940 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:53904 1791300242 1280 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1151..Content-T +455 0.000000000 ::1:53864 ::1:80 1408063418 347 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +457 0.001224756 ::1:80 ::1:53864 1591307516 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +459 0.002181768 ::1:53864 ::1:80 1408063765 354 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +461 0.004971266 ::1:80 ::1:53864 1591308412 25 485454502f312e312031303020436f6e74696e75650d0a0d0a HTTP/1.1 100 Continue.... +463 0.005230427 ::1:53864 ::1:80 1408064119 23 224576656e74486973746f72697a65725f313838363822 "EventHistorizer_18868" +465 0.005914450 ::1:80 ::1:53864 1591308437 176 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 0..Server: Micr diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..d9c324d Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..1441bd2 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_135-to-__1_53873.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_135-to-__1_53873.bin new file mode 100644 index 0000000..8cae186 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_135-to-__1_53873.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_32571-to-__1_53879.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_32571-to-__1_53879.bin new file mode 100644 index 0000000..f52cda5 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_32571-to-__1_53879.bin @@ -0,0 +1,28 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworiNzmBHCpjBwPMWAMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAKf6iseB1NwBAAAAAA== +Date: Sat, 25 Apr 2026 07:04:37 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 200 OK +Cache-Control: public,max-age=15770000 +Content-Type: image/svg+xml +Last-Modified: Mon, 06 Apr 2020 03:33:02 GMT +Accept-Ranges: bytes +ETag: "1d60bc413576a8a" +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAAByDa1TPDikEAAAAAA= +Date: Sat, 25 Apr 2026 07:04:37 GMT +Content-Length: 394 + + + + + \ No newline at end of file diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_49704-to-__1_53874.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_49704-to-__1_53874.bin new file mode 100644 index 0000000..bfb72d0 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_49704-to-__1_53874.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53864-to-__1_80.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53864-to-__1_80.bin new file mode 100644 index 0000000..26d849c --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53864-to-__1_80.bin @@ -0,0 +1,16 @@ +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate YIGCBgYrBgEFBQKgeDB2oDAwLgYKKwYBBAGCNwICCgYJKoZIgvcSAQICBgkqhkiG9xIBAgIGCisGAQQBgjcCAh6iQgRATlRMTVNTUAABAAAAl7II4gkACQA3AAAADwAPACgAAAAKAGFKAAAAD0RFU0tUT1AtNkpMM0tLT1dPUktHUk9VUA== +Host: localhost +Content-Length: 0 + +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAAD3CjCd0Xx6ykBa+zpPL3fiKjEgQQAQAAAEL/5YuqjpOzAAAAAA== +Host: localhost +Content-Length: 23 +Expect: 100-continue + +"EventHistorizer_18868" \ No newline at end of file diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53873-to-__1_135.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53873-to-__1_135.bin new file mode 100644 index 0000000..47fbe09 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53873-to-__1_135.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53874-to-__1_49704.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53874-to-__1_49704.bin new file mode 100644 index 0000000..e330194 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53874-to-__1_49704.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53879-to-__1_32571.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53879-to-__1_32571.bin new file mode 100644 index 0000000..18a49c4 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_53879-to-__1_32571.bin @@ -0,0 +1,9 @@ +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate YGwGBisGAQUFAqBiMGCgGjAYBgorBgEEAYI3AgIKBgorBgEEAYI3AgIeokIEQE5UTE1TU1AAAQAAAJeyCOIJAAkANwAAAA8ADwAoAAAACgBhSgAAAA9ERVNLVE9QLTZKTDNLS09XT1JLR1JPVVA= +Host: localhost:32571 +Connection: Keep-Alive + +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAADwUMLrUBHErxjZzLbHeIlY2jEgQQAQAAAGWJYkjvCQRzAAAAAA== +Host: localhost:32571 + diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_80-to-__1_53864.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_80-to-__1_53864.bin new file mode 100644 index 0000000..0550276 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-__1_80-to-__1_53864.bin @@ -0,0 +1,21 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworisnkhvAV5wEbGWAMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIABeFVMSB1NwBAAAAAA== +Date: Sat, 25 Apr 2026 07:04:32 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 100 Continue + +HTTP/1.1 200 OK +Content-Length: 0 +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAAC9DXEv+Wu13wAAAAA= +Date: Sat, 25 Apr 2026 07:04:32 GMT + diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..e55f07a Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53342-to-fe80__3608_256c_365_cc73_808.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53342-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..8e503d8 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53342-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53880-to-fe80__3608_256c_365_cc73_55555.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53880-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53880-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53882-to-fe80__3608_256c_365_cc73_55555.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53882-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..e8f407b Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53882-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53900-to-fe80__3608_256c_365_cc73_808.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53900-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..283544a Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53900-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53901-to-fe80__3608_256c_365_cc73_55555.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53901-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53901-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53904-to-fe80__3608_256c_365_cc73_55555.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53904-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..fb0629a Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_53904-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53880.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53880.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53880.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53882.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53882.bin new file mode 100644 index 0000000..2fff3ab Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53882.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53901.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53901.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53901.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53904.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53904.bin new file mode 100644 index 0000000..5030c0d Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_53904.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..88c9d64 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_53342.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_53342.bin new file mode 100644 index 0000000..accb585 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_53342.bin differ diff --git a/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_53900.bin b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_53900.bin new file mode 100644 index 0000000..32329e4 Binary files /dev/null and b/captures/043-frida-loopback-write-test-int-115/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_53900.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/command.txt b/captures/044-frida-loopback-write-test-int-123456789/command.txt new file mode 100644 index 0000000..03637bc --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/command.txt @@ -0,0 +1,4 @@ +dumpcap=C:\Program Files\Wireshark\dumpcap.exe +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456789 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\044-frida-loopback-write-test-int-123456789\harness.log --client=MxFridaLoopback-044-frida-loopback-write-test-int-123456789 diff --git a/captures/044-frida-loopback-write-test-int-123456789/dcerpc-stream-pdus.tsv b/captures/044-frida-loopback-write-test-int-123456789/dcerpc-stream-pdus.tsv new file mode 100644 index 0000000..daf26d0 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/dcerpc-stream-pdus.tsv @@ -0,0 +1,453 @@ +stream offset ptype ptype_name flags frag_len auth_len call_id alloc_hint context_id opnum stub_offset stub_len scalar_hit_offsets stub_hex_prefix +tcp-stream-__1_49704-to-__1_52846.bin 0 12 bind_ack 0x03 84 0 2 0 +tcp-stream-__1_49704-to-__1_52846.bin 84 2 response 0x03 44 0 2 20 0 108 20 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 +tcp-stream-__1_49704-to-__1_52846.bin 128 15 alter_context_resp 0x03 56 0 3 0 +tcp-stream-__1_49704-to-__1_52846.bin 184 2 response 0x03 28 0 3 4 1 208 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 212 2 response 0x03 92 0 4 68 1 236 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 304 2 response 0x03 32 0 5 8 1 328 8 09 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 336 2 response 0x03 32 0 6 8 1 360 8 0a 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 368 2 response 0x03 32 0 7 8 1 392 8 0b 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 400 2 response 0x03 32 0 8 8 1 424 8 0c 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 432 2 response 0x03 32 0 9 8 1 456 8 0d 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 464 2 response 0x03 32 0 10 8 1 488 8 0e 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 496 2 response 0x03 32 0 11 8 1 520 8 0f 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 528 2 response 0x03 32 0 12 8 1 552 8 10 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 560 2 response 0x03 32 0 13 8 1 584 8 11 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 592 2 response 0x03 32 0 14 8 1 616 8 12 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 624 2 response 0x03 32 0 15 8 1 648 8 13 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 656 2 response 0x03 32 0 16 8 1 680 8 14 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 688 2 response 0x03 32 0 17 8 1 712 8 15 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 720 2 response 0x03 44 0 18 20 0 744 20 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d +tcp-stream-__1_49704-to-__1_52846.bin 764 2 response 0x03 28 0 19 4 1 788 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 792 2 response 0x03 92 0 20 68 1 816 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 884 2 response 0x03 32 0 21 8 1 908 8 60 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 916 2 response 0x03 32 0 22 8 1 940 8 61 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 948 2 response 0x03 32 0 23 8 1 972 8 62 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 980 2 response 0x03 32 0 24 8 1 1004 8 63 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1012 2 response 0x03 32 0 25 8 1 1036 8 64 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1044 2 response 0x03 32 0 26 8 1 1068 8 65 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1076 2 response 0x03 32 0 27 8 1 1100 8 66 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1108 2 response 0x03 32 0 28 8 1 1132 8 67 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1140 2 response 0x03 32 0 29 8 1 1164 8 68 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1172 2 response 0x03 32 0 30 8 1 1196 8 69 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1204 2 response 0x03 32 0 31 8 1 1228 8 6a 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1236 2 response 0x03 44 0 32 20 0 1260 20 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 +tcp-stream-__1_49704-to-__1_52846.bin 1280 2 response 0x03 28 0 33 4 1 1304 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1308 2 response 0x03 92 0 34 68 1 1332 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1400 2 response 0x03 32 0 35 8 1 1424 8 63 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1432 2 response 0x03 32 0 36 8 1 1456 8 64 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1464 2 response 0x03 32 0 37 8 1 1488 8 65 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1496 2 response 0x03 32 0 38 8 1 1520 8 66 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1528 2 response 0x03 32 0 39 8 1 1552 8 67 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1560 2 response 0x03 32 0 40 8 1 1584 8 68 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1592 2 response 0x03 32 0 41 8 1 1616 8 69 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1624 2 response 0x03 32 0 42 8 1 1648 8 6a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1656 2 response 0x03 32 0 43 8 1 1680 8 6b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1688 2 response 0x03 32 0 44 8 1 1712 8 6c 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1720 2 response 0x03 32 0 45 8 1 1744 8 6d 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1752 2 response 0x03 32 0 46 8 1 1776 8 6e 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1784 2 response 0x03 32 0 47 8 1 1808 8 6f 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1816 2 response 0x03 44 0 48 20 0 1840 20 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a +tcp-stream-__1_49704-to-__1_52846.bin 1860 2 response 0x03 28 0 49 4 1 1884 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1888 2 response 0x03 92 0 50 68 1 1912 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 1980 2 response 0x03 32 0 51 8 1 2004 8 70 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2012 2 response 0x03 32 0 52 8 1 2036 8 71 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2044 2 response 0x03 32 0 53 8 1 2068 8 72 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2076 2 response 0x03 32 0 54 8 1 2100 8 73 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2108 2 response 0x03 32 0 55 8 1 2132 8 74 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2140 2 response 0x03 32 0 56 8 1 2164 8 75 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2172 2 response 0x03 32 0 57 8 1 2196 8 76 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2204 2 response 0x03 32 0 58 8 1 2228 8 77 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2236 2 response 0x03 32 0 59 8 1 2260 8 78 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2268 2 response 0x03 32 0 60 8 1 2292 8 79 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2300 2 response 0x03 32 0 61 8 1 2324 8 7a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2332 2 response 0x03 32 0 62 8 1 2356 8 7b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2364 2 response 0x03 32 0 63 8 1 2388 8 7c 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2396 2 response 0x03 44 0 64 20 0 2420 20 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 +tcp-stream-__1_49704-to-__1_52846.bin 2440 2 response 0x03 28 0 65 4 1 2464 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2468 2 response 0x03 92 0 66 68 1 2492 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2560 2 response 0x03 32 0 67 8 1 2584 8 7d 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2592 2 response 0x03 32 0 68 8 1 2616 8 7e 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2624 2 response 0x03 32 0 69 8 1 2648 8 7f 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2656 2 response 0x03 32 0 70 8 1 2680 8 80 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2688 2 response 0x03 32 0 71 8 1 2712 8 81 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2720 2 response 0x03 32 0 72 8 1 2744 8 82 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2752 2 response 0x03 32 0 73 8 1 2776 8 83 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2784 2 response 0x03 32 0 74 8 1 2808 8 84 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2816 2 response 0x03 32 0 75 8 1 2840 8 85 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2848 2 response 0x03 32 0 76 8 1 2872 8 86 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2880 2 response 0x03 32 0 77 8 1 2904 8 87 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2912 2 response 0x03 32 0 78 8 1 2936 8 88 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2944 2 response 0x03 32 0 79 8 1 2968 8 89 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 2976 2 response 0x03 32 0 80 8 1 3000 8 8a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3008 2 response 0x03 32 0 81 8 1 3032 8 8b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3040 2 response 0x03 44 0 82 20 0 3064 20 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 +tcp-stream-__1_49704-to-__1_52846.bin 3084 2 response 0x03 28 0 83 4 1 3108 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3112 2 response 0x03 92 0 84 68 1 3136 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3204 2 response 0x03 32 0 85 8 1 3228 8 30 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3236 2 response 0x03 32 0 86 8 1 3260 8 31 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3268 2 response 0x03 32 0 87 8 1 3292 8 32 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3300 2 response 0x03 32 0 88 8 1 3324 8 33 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3332 2 response 0x03 32 0 89 8 1 3356 8 34 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3364 2 response 0x03 32 0 90 8 1 3388 8 35 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3396 2 response 0x03 32 0 91 8 1 3420 8 36 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3428 2 response 0x03 32 0 92 8 1 3452 8 37 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3460 2 response 0x03 32 0 93 8 1 3484 8 38 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3492 2 response 0x03 32 0 94 8 1 3516 8 39 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3524 2 response 0x03 32 0 95 8 1 3548 8 3a 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3556 2 response 0x03 32 0 96 8 1 3580 8 3b 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3588 2 response 0x03 32 0 97 8 1 3612 8 3c 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3620 2 response 0x03 32 0 98 8 1 3644 8 3d 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3652 2 response 0x03 32 0 99 8 1 3676 8 95 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3684 2 response 0x03 44 0 100 20 0 3708 20 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 +tcp-stream-__1_49704-to-__1_52846.bin 3728 2 response 0x03 28 0 101 4 1 3752 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3756 2 response 0x03 92 0 102 68 1 3780 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3848 2 response 0x03 32 0 103 8 1 3872 8 e5 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3880 2 response 0x03 32 0 104 8 1 3904 8 e6 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3912 2 response 0x03 32 0 105 8 1 3936 8 e7 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3944 2 response 0x03 32 0 106 8 1 3968 8 e8 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 3976 2 response 0x03 32 0 107 8 1 4000 8 e9 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4008 2 response 0x03 32 0 108 8 1 4032 8 ea 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4040 2 response 0x03 32 0 109 8 1 4064 8 eb 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4072 2 response 0x03 32 0 110 8 1 4096 8 ec 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4104 2 response 0x03 32 0 111 8 1 4128 8 ed 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4136 2 response 0x03 32 0 112 8 1 4160 8 ee 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4168 2 response 0x03 32 0 113 8 1 4192 8 ef 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4200 2 response 0x03 32 0 114 8 1 4224 8 f0 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4232 2 response 0x03 32 0 115 8 1 4256 8 f1 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4264 2 response 0x03 32 0 116 8 1 4288 8 f2 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4296 2 response 0x03 32 0 117 8 1 4320 8 f3 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4328 2 response 0x03 32 0 118 8 1 4352 8 f4 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4360 2 response 0x03 32 0 119 8 1 4384 8 f5 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4392 2 response 0x03 32 0 120 8 1 4416 8 f6 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4424 2 response 0x03 32 0 121 8 1 4448 8 f7 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4456 2 response 0x03 32 0 122 8 1 4480 8 f8 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4488 2 response 0x03 32 0 123 8 1 4512 8 f9 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4520 2 response 0x03 32 0 124 8 1 4544 8 fa 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4552 2 response 0x03 32 0 125 8 1 4576 8 fb 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4584 2 response 0x03 32 0 126 8 1 4608 8 fc 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4616 2 response 0x03 32 0 127 8 1 4640 8 fd 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4648 2 response 0x03 32 0 128 8 1 4672 8 fe 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4680 2 response 0x03 32 0 129 8 1 4704 8 ff 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4712 2 response 0x03 32 0 130 8 1 4736 8 00 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4744 2 response 0x03 32 0 131 8 1 4768 8 01 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4776 2 response 0x03 32 0 132 8 1 4800 8 02 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4808 2 response 0x03 28 0 133 4 1 4832 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4836 2 response 0x03 44 0 134 20 0 4860 20 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f +tcp-stream-__1_49704-to-__1_52846.bin 4880 2 response 0x03 28 0 135 4 1 4904 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 4908 2 response 0x03 92 0 136 68 1 4932 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5000 2 response 0x03 32 0 137 8 1 5024 8 dd 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5032 2 response 0x03 32 0 138 8 1 5056 8 de 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5064 2 response 0x03 32 0 139 8 1 5088 8 df 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5096 2 response 0x03 32 0 140 8 1 5120 8 e0 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5128 2 response 0x03 32 0 141 8 1 5152 8 e1 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5160 2 response 0x03 32 0 142 8 1 5184 8 e2 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5192 2 response 0x03 32 0 143 8 1 5216 8 e3 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5224 2 response 0x03 32 0 144 8 1 5248 8 e4 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5256 2 response 0x03 32 0 145 8 1 5280 8 e5 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5288 2 response 0x03 32 0 146 8 1 5312 8 e6 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5320 2 response 0x03 32 0 147 8 1 5344 8 e7 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5352 2 response 0x03 32 0 148 8 1 5376 8 e8 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5384 2 response 0x03 32 0 149 8 1 5408 8 e9 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5416 2 response 0x03 32 0 150 8 1 5440 8 ea 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5448 2 response 0x03 32 0 151 8 1 5472 8 eb 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5480 2 response 0x03 32 0 152 8 1 5504 8 ec 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5512 2 response 0x03 32 0 153 8 1 5536 8 ed 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5544 2 response 0x03 32 0 154 8 1 5568 8 ee 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5576 2 response 0x03 32 0 155 8 1 5600 8 ef 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5608 2 response 0x03 32 0 156 8 1 5632 8 f0 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5640 2 response 0x03 32 0 157 8 1 5664 8 f1 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5672 2 response 0x03 32 0 158 8 1 5696 8 f2 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5704 2 response 0x03 32 0 159 8 1 5728 8 f3 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5736 2 response 0x03 44 0 160 20 0 5760 20 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 +tcp-stream-__1_49704-to-__1_52846.bin 5780 2 response 0x03 28 0 161 4 1 5804 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5808 2 response 0x03 92 0 162 68 1 5832 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5900 2 response 0x03 32 0 163 8 1 5924 8 11 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5932 2 response 0x03 32 0 164 8 1 5956 8 12 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5964 2 response 0x03 32 0 165 8 1 5988 8 13 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 5996 2 response 0x03 32 0 166 8 1 6020 8 14 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6028 2 response 0x03 32 0 167 8 1 6052 8 15 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6060 2 response 0x03 32 0 168 8 1 6084 8 16 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6092 2 response 0x03 32 0 169 8 1 6116 8 17 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6124 2 response 0x03 32 0 170 8 1 6148 8 18 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6156 2 response 0x03 32 0 171 8 1 6180 8 19 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6188 2 response 0x03 32 0 172 8 1 6212 8 1a 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6220 2 response 0x03 32 0 173 8 1 6244 8 1b 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6252 2 response 0x03 32 0 174 8 1 6276 8 1c 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6284 2 response 0x03 32 0 175 8 1 6308 8 1d 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6316 2 response 0x03 44 0 176 20 0 6340 20 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 +tcp-stream-__1_49704-to-__1_52846.bin 6360 2 response 0x03 28 0 177 4 1 6384 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6388 2 response 0x03 92 0 178 68 1 6412 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6480 2 response 0x03 32 0 179 8 1 6504 8 f4 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6512 2 response 0x03 32 0 180 8 1 6536 8 f5 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6544 2 response 0x03 32 0 181 8 1 6568 8 f6 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6576 2 response 0x03 32 0 182 8 1 6600 8 f7 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6608 2 response 0x03 32 0 183 8 1 6632 8 f8 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6640 2 response 0x03 32 0 184 8 1 6664 8 f9 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6672 2 response 0x03 32 0 185 8 1 6696 8 fa 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6704 2 response 0x03 32 0 186 8 1 6728 8 fb 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6736 2 response 0x03 32 0 187 8 1 6760 8 fc 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6768 2 response 0x03 32 0 188 8 1 6792 8 fd 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6800 2 response 0x03 32 0 189 8 1 6824 8 fe 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6832 2 response 0x03 32 0 190 8 1 6856 8 ff 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6864 2 response 0x03 32 0 191 8 1 6888 8 00 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6896 2 response 0x03 32 0 192 8 1 6920 8 01 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6928 2 response 0x03 32 0 193 8 1 6952 8 02 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6960 2 response 0x03 32 0 194 8 1 6984 8 03 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 6992 2 response 0x03 32 0 195 8 1 7016 8 04 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7024 2 response 0x03 32 0 196 8 1 7048 8 05 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7056 2 response 0x03 32 0 197 8 1 7080 8 06 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7088 2 response 0x03 28 0 198 4 1 7112 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7116 2 response 0x03 28 0 199 4 1 7140 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7144 2 response 0x03 28 0 200 4 1 7168 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7172 2 response 0x03 44 0 201 20 0 7196 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7216 2 response 0x03 44 0 202 20 0 7240 20 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 +tcp-stream-__1_49704-to-__1_52846.bin 7260 2 response 0x03 28 0 203 4 1 7284 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7288 2 response 0x03 92 0 204 68 1 7312 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7380 2 response 0x03 32 0 205 8 1 7404 8 60 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7412 2 response 0x03 32 0 206 8 1 7436 8 61 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7444 2 response 0x03 32 0 207 8 1 7468 8 62 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7476 2 response 0x03 32 0 208 8 1 7500 8 63 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7508 2 response 0x03 32 0 209 8 1 7532 8 64 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7540 2 response 0x03 32 0 210 8 1 7564 8 65 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7572 2 response 0x03 32 0 211 8 1 7596 8 66 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7604 2 response 0x03 32 0 212 8 1 7628 8 67 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7636 2 response 0x03 32 0 213 8 1 7660 8 68 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7668 2 response 0x03 32 0 214 8 1 7692 8 69 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7700 2 response 0x03 32 0 215 8 1 7724 8 6a 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7732 2 response 0x03 28 0 216 4 1 7756 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7760 2 response 0x03 44 0 217 20 0 7784 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7804 2 response 0x03 28 0 218 4 1 7828 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7832 2 response 0x03 44 0 219 20 0 7856 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7876 2 response 0x03 28 0 220 4 1 7900 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7904 2 response 0x03 44 0 221 20 0 7928 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7948 2 response 0x03 28 0 222 4 1 7972 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 7976 2 response 0x03 44 0 223 20 0 8000 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 8020 2 response 0x03 28 0 224 4 1 8044 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_52846.bin 8048 2 response 0x03 44 0 225 20 0 8072 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 0 11 bind 0x03 116 0 2 0 +tcp-stream-__1_52846-to-__1_49704.bin 116 0 request 0x83 40 0 2 0 0 0 140 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 156 14 alter_context 0x03 72 0 3 0 +tcp-stream-__1_52846-to-__1_49704.bin 228 0 request 0x83 96 0 3 56 1 0 252 72 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 78 00 79 00 +tcp-stream-__1_52846-to-__1_49704.bin 324 0 request 0x83 60 0 4 20 1 2 348 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 +tcp-stream-__1_52846-to-__1_49704.bin 384 0 request 0x83 120 0 5 80 1 3 408 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 504 0 request 0x83 124 0 6 84 1 3 528 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 628 0 request 0x83 118 0 7 78 1 3 652 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 746 0 request 0x83 120 0 8 80 1 3 770 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 866 0 request 0x83 130 0 9 90 1 3 890 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 996 0 request 0x83 130 0 10 90 1 3 1020 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 1126 0 request 0x83 142 0 11 102 1 3 1150 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 1268 0 request 0x83 116 0 12 76 1 3 1292 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 1384 0 request 0x83 130 0 13 90 1 3 1408 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 1514 0 request 0x83 128 0 14 88 1 3 1538 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 1642 0 request 0x83 126 0 15 86 1 3 1666 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 1768 0 request 0x83 132 0 16 92 1 3 1792 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 1900 0 request 0x83 152 0 17 112 1 3 1924 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7f 8e f1 d9 4c d7 91 41 82 7f 84 3e 37 4d 2c d9 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 2052 0 request 0x83 40 0 18 0 0 0 2076 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 2092 0 request 0x83 108 0 19 68 1 0 2116 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 65 00 48 00 +tcp-stream-__1_52846-to-__1_49704.bin 2200 0 request 0x83 60 0 20 20 1 2 2224 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d +tcp-stream-__1_52846-to-__1_49704.bin 2260 0 request 0x83 132 0 21 92 1 3 2284 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 2392 0 request 0x83 136 0 22 96 1 3 2416 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 2528 0 request 0x83 130 0 23 90 1 3 2552 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 2658 0 request 0x83 132 0 24 92 1 3 2682 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 2790 0 request 0x83 142 0 25 102 1 3 2814 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 2932 0 request 0x83 142 0 26 102 1 3 2956 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 3074 0 request 0x83 154 0 27 114 1 3 3098 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 3228 0 request 0x83 128 0 28 88 1 3 3252 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 3356 0 request 0x83 142 0 29 102 1 3 3380 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 3498 0 request 0x83 140 0 30 100 1 3 3522 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 3638 0 request 0x83 138 0 31 98 1 3 3662 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 3776 0 request 0x83 40 0 32 0 0 0 3800 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 3816 0 request 0x83 104 0 33 64 1 0 3840 80 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 4c 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 3920 0 request 0x83 60 0 34 20 1 2 3944 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 +tcp-stream-__1_52846-to-__1_49704.bin 3980 0 request 0x83 128 0 35 88 1 3 4004 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 4108 0 request 0x83 132 0 36 92 1 3 4132 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 4240 0 request 0x83 126 0 37 86 1 3 4264 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 4366 0 request 0x83 128 0 38 88 1 3 4390 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 4494 0 request 0x83 138 0 39 98 1 3 4518 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 4632 0 request 0x83 138 0 40 98 1 3 4656 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 4770 0 request 0x83 150 0 41 110 1 3 4794 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 4920 0 request 0x83 124 0 42 84 1 3 4944 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 5044 0 request 0x83 138 0 43 98 1 3 5068 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 5182 0 request 0x83 136 0 44 96 1 3 5206 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 5318 0 request 0x83 134 0 45 94 1 3 5342 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 5452 0 request 0x83 140 0 46 100 1 3 5476 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 5592 0 request 0x83 146 0 47 106 1 3 5616 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 2d 95 f3 3e 4d 9d 2c 4a 8c eb 88 6c e9 05 9d 26 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 5738 0 request 0x83 40 0 48 0 0 0 5762 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 5778 0 request 0x83 112 0 49 72 1 0 5802 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 43 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 5890 0 request 0x83 60 0 50 20 1 2 5914 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a +tcp-stream-__1_52846-to-__1_49704.bin 5950 0 request 0x83 136 0 51 96 1 3 5974 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 6086 0 request 0x83 140 0 52 100 1 3 6110 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 6226 0 request 0x83 134 0 53 94 1 3 6250 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 6360 0 request 0x83 136 0 54 96 1 3 6384 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 6496 0 request 0x83 146 0 55 106 1 3 6520 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 6642 0 request 0x83 146 0 56 106 1 3 6666 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 6788 0 request 0x83 158 0 57 118 1 3 6812 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 6946 0 request 0x83 132 0 58 92 1 3 6970 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 7078 0 request 0x83 146 0 59 106 1 3 7102 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 7224 0 request 0x83 144 0 60 104 1 3 7248 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 7368 0 request 0x83 142 0 61 102 1 3 7392 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 7510 0 request 0x83 148 0 62 108 1 3 7534 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 7658 0 request 0x83 154 0 63 114 1 3 7682 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 8d f2 b9 03 90 20 30 4b 8d 97 53 cb 7e 2e 69 7a 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 7812 0 request 0x83 40 0 64 0 0 0 7836 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 7852 0 request 0x83 92 0 65 52 1 0 7876 68 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 00 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 7944 0 request 0x83 60 0 66 20 1 2 7968 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 +tcp-stream-__1_52846-to-__1_49704.bin 8004 0 request 0x83 116 0 67 76 1 3 8028 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8120 0 request 0x83 120 0 68 80 1 3 8144 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8240 0 request 0x83 114 0 69 74 1 3 8264 90 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8354 0 request 0x83 116 0 70 76 1 3 8378 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8470 0 request 0x83 126 0 71 86 1 3 8494 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8596 0 request 0x83 126 0 72 86 1 3 8620 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8722 0 request 0x83 138 0 73 98 1 3 8746 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8860 0 request 0x83 112 0 74 72 1 3 8884 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 8972 0 request 0x83 126 0 75 86 1 3 8996 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 9098 0 request 0x83 124 0 76 84 1 3 9122 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 9222 0 request 0x83 122 0 77 82 1 3 9246 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 9344 0 request 0x83 128 0 78 88 1 3 9368 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 9472 0 request 0x83 134 0 79 94 1 3 9496 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 9606 0 request 0x83 130 0 80 90 1 3 9630 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 9736 0 request 0x83 128 0 81 88 1 3 9760 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 44 1b 93 7b aa dc 23 4b b5 6a 28 a3 b2 26 f3 d7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_52846-to-__1_49704.bin 9864 0 request 0x83 40 0 82 0 0 0 9888 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 9904 0 request 0x83 100 0 83 60 1 0 9928 76 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 72 00 69 00 +tcp-stream-__1_52846-to-__1_49704.bin 10004 0 request 0x83 60 0 84 20 1 2 10028 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 +tcp-stream-__1_52846-to-__1_49704.bin 10064 0 request 0x83 124 0 85 84 1 3 10088 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 10188 0 request 0x83 128 0 86 88 1 3 10212 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 10316 0 request 0x83 122 0 87 82 1 3 10340 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 10438 0 request 0x83 124 0 88 84 1 3 10462 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 10562 0 request 0x83 134 0 89 94 1 3 10586 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 10696 0 request 0x83 134 0 90 94 1 3 10720 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 10830 0 request 0x83 146 0 91 106 1 3 10854 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 10976 0 request 0x83 120 0 92 80 1 3 11000 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 11096 0 request 0x83 134 0 93 94 1 3 11120 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 11230 0 request 0x83 132 0 94 92 1 3 11254 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 11362 0 request 0x83 130 0 95 90 1 3 11386 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 11492 0 request 0x83 144 0 96 104 1 3 11516 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 11636 0 request 0x83 148 0 97 108 1 3 11660 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 11784 0 request 0x83 146 0 98 106 1 3 11808 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 11930 0 request 0x83 158 0 99 118 1 3 11954 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_52846-to-__1_49704.bin 12088 0 request 0x83 40 0 100 0 0 0 12112 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 12128 0 request 0x83 84 0 101 44 1 0 12152 60 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 24 ef 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 12212 0 request 0x83 60 0 102 20 1 2 12236 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 +tcp-stream-__1_52846-to-__1_49704.bin 12272 0 request 0x83 108 0 103 68 1 3 12296 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 06 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 12380 0 request 0x83 112 0 104 72 1 3 12404 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 08 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 12492 0 request 0x83 106 0 105 66 1 3 12516 82 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 05 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 12598 0 request 0x83 108 0 106 68 1 3 12622 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 06 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 12706 0 request 0x83 118 0 107 78 1 3 12730 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 12824 0 request 0x83 118 0 108 78 1 3 12848 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 12942 0 request 0x83 130 0 109 90 1 3 12966 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13072 0 request 0x83 104 0 110 64 1 3 13096 80 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 04 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13176 0 request 0x83 118 0 111 78 1 3 13200 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13294 0 request 0x83 116 0 112 76 1 3 13318 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0a 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13410 0 request 0x83 114 0 113 74 1 3 13434 90 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 09 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13524 0 request 0x83 128 0 114 88 1 3 13548 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 10 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13652 0 request 0x83 120 0 115 80 1 3 13676 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0c 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13772 0 request 0x83 120 0 116 80 1 3 13796 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0c 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 13892 0 request 0x83 122 0 117 82 1 3 13916 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14014 0 request 0x83 134 0 118 94 1 3 14038 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 13 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14148 0 request 0x83 132 0 119 92 1 3 14172 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 12 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14280 0 request 0x83 130 0 120 90 1 3 14304 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14410 0 request 0x83 138 0 121 98 1 3 14434 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 15 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14548 0 request 0x83 144 0 122 104 1 3 14572 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 18 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14692 0 request 0x83 144 0 123 104 1 3 14716 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 18 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14836 0 request 0x83 116 0 124 76 1 3 14860 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0a 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 14952 0 request 0x83 130 0 125 90 1 3 14976 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15082 0 request 0x83 138 0 126 98 1 3 15106 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 15 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15220 0 request 0x83 130 0 127 90 1 3 15244 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15350 0 request 0x83 122 0 128 82 1 3 15374 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15472 0 request 0x83 122 0 129 82 1 3 15496 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15594 0 request 0x83 134 0 130 94 1 3 15618 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 13 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15728 0 request 0x83 128 0 131 88 1 3 15752 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 10 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15856 0 request 0x83 124 0 132 84 1 3 15880 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0e 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 15980 0 request 0x83 516 0 133 476 1 5 16004 492 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 16496 0 request 0x83 40 0 134 0 0 0 16520 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 16536 0 request 0x83 112 0 135 72 1 0 16560 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 74 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 16648 0 request 0x83 60 0 136 20 1 2 16672 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f +tcp-stream-__1_52846-to-__1_49704.bin 16708 0 request 0x83 136 0 137 96 1 3 16732 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 16844 0 request 0x83 140 0 138 100 1 3 16868 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 16984 0 request 0x83 134 0 139 94 1 3 17008 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 17118 0 request 0x83 136 0 140 96 1 3 17142 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 17254 0 request 0x83 146 0 141 106 1 3 17278 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 17400 0 request 0x83 146 0 142 106 1 3 17424 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 17546 0 request 0x83 158 0 143 118 1 3 17570 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 17704 0 request 0x83 132 0 144 92 1 3 17728 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 17836 0 request 0x83 146 0 145 106 1 3 17860 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 17982 0 request 0x83 144 0 146 104 1 3 18006 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 18126 0 request 0x83 142 0 147 102 1 3 18150 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 18268 0 request 0x83 160 0 148 120 1 3 18292 136 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 18428 0 request 0x83 156 0 149 116 1 3 18452 132 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 18584 0 request 0x83 154 0 150 114 1 3 18608 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 18738 0 request 0x83 146 0 151 106 1 3 18762 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 18884 0 request 0x83 154 0 152 114 1 3 18908 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 19038 0 request 0x83 150 0 153 110 1 3 19062 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 19188 0 request 0x83 152 0 154 112 1 3 19212 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 19340 0 request 0x83 140 0 155 100 1 3 19364 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 19480 0 request 0x83 148 0 156 108 1 3 19504 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 19628 0 request 0x83 162 0 157 122 1 3 19652 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 19790 0 request 0x83 172 0 158 132 1 3 19814 148 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 19962 0 request 0x83 144 0 159 104 1 3 19986 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_52846-to-__1_49704.bin 20106 0 request 0x83 40 0 160 0 0 0 20130 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 20146 0 request 0x83 128 0 161 88 1 0 20170 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 +tcp-stream-__1_52846-to-__1_49704.bin 20274 0 request 0x83 60 0 162 20 1 2 20298 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 +tcp-stream-__1_52846-to-__1_49704.bin 20334 0 request 0x83 152 0 163 112 1 3 20358 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 20486 0 request 0x83 156 0 164 116 1 3 20510 132 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 20642 0 request 0x83 150 0 165 110 1 3 20666 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 20792 0 request 0x83 152 0 166 112 1 3 20816 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 20944 0 request 0x83 162 0 167 122 1 3 20968 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 21106 0 request 0x83 162 0 168 122 1 3 21130 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 21268 0 request 0x83 174 0 169 134 1 3 21292 150 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 21442 0 request 0x83 148 0 170 108 1 3 21466 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 21590 0 request 0x83 162 0 171 122 1 3 21614 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 21752 0 request 0x83 160 0 172 120 1 3 21776 136 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 21912 0 request 0x83 158 0 173 118 1 3 21936 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 22070 0 request 0x83 170 0 174 130 1 3 22094 146 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 22240 0 request 0x83 182 0 175 142 1 3 22264 158 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_52846-to-__1_49704.bin 22422 0 request 0x83 40 0 176 0 0 0 22446 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 22462 0 request 0x83 96 0 177 56 1 0 22486 72 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 74 00 72 00 +tcp-stream-__1_52846-to-__1_49704.bin 22558 0 request 0x83 60 0 178 20 1 2 22582 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 +tcp-stream-__1_52846-to-__1_49704.bin 22618 0 request 0x83 120 0 179 80 1 3 22642 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 22738 0 request 0x83 124 0 180 84 1 3 22762 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 22862 0 request 0x83 118 0 181 78 1 3 22886 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 22980 0 request 0x83 120 0 182 80 1 3 23004 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 23100 0 request 0x83 130 0 183 90 1 3 23124 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 23230 0 request 0x83 130 0 184 90 1 3 23254 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 23360 0 request 0x83 142 0 185 102 1 3 23384 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 23502 0 request 0x83 116 0 186 76 1 3 23526 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 23618 0 request 0x83 130 0 187 90 1 3 23642 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 23748 0 request 0x83 128 0 188 88 1 3 23772 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 23876 0 request 0x83 126 0 189 86 1 3 23900 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24002 0 request 0x83 126 0 190 86 1 3 24026 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24128 0 request 0x83 132 0 191 92 1 3 24152 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24260 0 request 0x83 130 0 192 90 1 3 24284 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24390 0 request 0x83 138 0 193 98 1 3 24414 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24528 0 request 0x83 136 0 194 96 1 3 24552 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24664 0 request 0x83 132 0 195 92 1 3 24688 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24796 0 request 0x83 142 0 196 102 1 3 24820 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 24938 0 request 0x83 148 0 197 108 1 3 24962 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_52846-to-__1_49704.bin 25086 0 request 0x83 290 0 198 250 1 5 25110 266 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 25376 0 request 0x83 206 0 199 166 1 5 25400 182 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_52846-to-__1_49704.bin 25582 0 request 0x83 60 0 200 20 1 6 25606 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d +tcp-stream-__1_52846-to-__1_49704.bin 25642 0 request 0x83 60 0 201 20 0 1 25666 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 1c 11 8b 0e 85 54 e2 4f 9d 01 3b 9b 37 33 2b 7d +tcp-stream-__1_52846-to-__1_49704.bin 25702 0 request 0x83 40 0 202 0 0 0 25726 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_52846-to-__1_49704.bin 25742 0 request 0x83 108 0 203 68 1 0 25766 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 65 00 48 00 +tcp-stream-__1_52846-to-__1_49704.bin 25850 0 request 0x83 60 0 204 20 1 2 25874 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 +tcp-stream-__1_52846-to-__1_49704.bin 25910 0 request 0x83 132 0 205 92 1 3 25934 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 26042 0 request 0x83 136 0 206 96 1 3 26066 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 26178 0 request 0x83 130 0 207 90 1 3 26202 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 26308 0 request 0x83 132 0 208 92 1 3 26332 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 26440 0 request 0x83 142 0 209 102 1 3 26464 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 26582 0 request 0x83 142 0 210 102 1 3 26606 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 26724 0 request 0x83 154 0 211 114 1 3 26748 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 26878 0 request 0x83 128 0 212 88 1 3 26902 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 27006 0 request 0x83 142 0 213 102 1 3 27030 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 27148 0 request 0x83 140 0 214 100 1 3 27172 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 27288 0 request 0x83 138 0 215 98 1 3 27312 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 5a 7c 8e 7b d8 ac 8b 40 99 6d 2e 2b 81 e2 9c 22 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_52846-to-__1_49704.bin 27426 0 request 0x83 60 0 216 20 1 6 27450 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 +tcp-stream-__1_52846-to-__1_49704.bin 27486 0 request 0x83 60 0 217 20 0 1 27510 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 40 d6 bb a2 6c dd 65 4d 85 69 75 35 04 7e 6f d4 +tcp-stream-__1_52846-to-__1_49704.bin 27546 0 request 0x83 60 0 218 20 1 6 27570 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 +tcp-stream-__1_52846-to-__1_49704.bin 27606 0 request 0x83 60 0 219 20 0 1 27630 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 3f c2 44 76 46 e5 42 af 88 a8 2f db 14 9b 05 +tcp-stream-__1_52846-to-__1_49704.bin 27666 0 request 0x83 60 0 220 20 1 6 27690 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f +tcp-stream-__1_52846-to-__1_49704.bin 27726 0 request 0x83 60 0 221 20 0 1 27750 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 c5 87 f1 80 35 b8 f3 42 bf f7 ef 99 62 f0 40 9f +tcp-stream-__1_52846-to-__1_49704.bin 27786 0 request 0x83 60 0 222 20 1 6 27810 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 +tcp-stream-__1_52846-to-__1_49704.bin 27846 0 request 0x83 60 0 223 20 0 1 27870 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 ac c8 7e a9 fa a9 07 49 b1 cc e9 b3 22 25 c9 d4 +tcp-stream-__1_52846-to-__1_49704.bin 27906 0 request 0x83 60 0 224 20 1 6 27930 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 +tcp-stream-__1_52846-to-__1_49704.bin 27966 0 request 0x83 60 0 225 20 0 1 27990 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 f3 7e e0 8d 4b e9 c4 45 83 e6 b9 77 42 6b 10 11 diff --git a/captures/044-frida-loopback-write-test-int-123456789/dumpcap.stderr.txt b/captures/044-frida-loopback-write-test-int-123456789/dumpcap.stderr.txt new file mode 100644 index 0000000..2aca901 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\044-frida-loopback-write-test-int-123456789\loopback.pcapng diff --git a/captures/044-frida-loopback-write-test-int-123456789/dumpcap.stdout.txt b/captures/044-frida-loopback-write-test-int-123456789/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/044-frida-loopback-write-test-int-123456789/frida-exit.txt b/captures/044-frida-loopback-write-test-int-123456789/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/044-frida-loopback-write-test-int-123456789/frida-to-tcp-map.tsv b/captures/044-frida-loopback-write-test-int-123456789/frida-to-tcp-map.tsv new file mode 100644 index 0000000..bbd250f --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/frida-to-tcp-map.tsv @@ -0,0 +1,5 @@ +needle needle_len stream offset +int32:123456789 4 -1 +putrequest-body 40 -1 +transferdata-body 86 -1 +callback-body 88 -1 diff --git a/captures/044-frida-loopback-write-test-int-123456789/frida.stderr.txt b/captures/044-frida-loopback-write-test-int-123456789/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/044-frida-loopback-write-test-int-123456789/frida.stdout.jsonl b/captures/044-frida-loopback-write-test-int-123456789/frida.stdout.jsonl new file mode 100644 index 0000000..db328f3 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456789 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\044-frida-loopback-write-test-int-123456789\harness.log --client=MxFridaLoopback-044-frida-loopback-write-test-int-123456789`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456789 --user-id=1 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\044-frida-loopback-write-test-int-123456789\harness.log --client=MxFridaLoopback-044-frida-loopback-write-test-int-123456789`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T07:10:05.692Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T07:10:05.692Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T07:10:05.693Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T07:10:05.694Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T07:10:05.694Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T07:10:13.152Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T07:10:13.153Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T07:10:13.154Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T07:10:13.155Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x138f120","args":["0x6648ff0","0x1","0x1","0x9545c43f","0x74794704"],"time":"2026-04-25T07:10:13.250Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T07:10:13.251Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x9a4c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9a50648","0x138ede4","0x28ba17d8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9a50648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc a4 09 1f 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 a5 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:10:13.382Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x1","0x168","0xa3d9020","0xa663a41b","0x9a50214","0x9a50204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa3d9020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc a4 09 1f 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 a5 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:10:13.385Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:13.386Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:10:13.386Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x9a4c738","0x1","0x1","0x2","0x2","0x0","0x27","0x9b1d640","0x138ede4","0x28ba17d8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x9b1d640","hex":"1f 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:10:13.387Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x2","0x55","0xa3d9020","0xa663a41b","0x9b29584","0x9b29574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa3d9020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:10:13.388Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:13.389Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:10:13.389Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x9a4c738","args":["0x5c","0x1704488","0x7cee968","0x76ffedd8","0x9a4c744","0x5c","0x1704488","0x206","0x3","0x803bd9c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x1704488","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 77 60 88 a5 96 5b 11 41 9d 55 14 c4 26 04 a2 92 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x803bd9c","hex":"f0 99 64"}],"time":"2026-04-25T07:10:13.413Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:10:13.413Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x9a4c738","args":["0x6c","0x1704488","0x7cee968","0x76ffedd8","0x9a4c744","0x6c","0x1704488","0x206","0x3","0x803bd9c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x1704488","hex":"01 00 3e 00 00 00 00 00 00 00 d1 8a 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 77 60 88 a5 96 5b 11 41 9d 55 14 c4 26 04 a2 92 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 03 00 00 00 03 00 00 00 c0 00 60 e0 a0 cb 81 d4 dc 01 02 73 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x803bd9c","hex":"f0 99 64"}],"time":"2026-04-25T07:10:13.414Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:10:13.415Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x9a4c738","args":["0x2c2","0x16fef60","0x7cee968","0x76ffedd8","0x9a4c744","0x2c2","0x16fef60","0x206","0x3","0x803bd9c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x16fef60","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 6b 0f 02 d2 94 ec fe 4c 86 10 da b5 a4 ba aa c2 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x803bd9c","hex":"f0 99 64"}],"time":"2026-04-25T07:10:13.418Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:10:13.419Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x9a4c738","args":["0x97","0x8010f18","0x7cee968","0x76ffedd8","0x9a4c744","0x97","0x8010f18","0x206","0x3","0x803bd9c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x8010f18","hex":"01 00 69 00 00 00 00 00 00 00 0d 15 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 6b 0f 02 d2 94 ec fe 4c 86 10 da b5 a4 ba aa c2 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x803bd9c","hex":"f0 99 64"}],"time":"2026-04-25T07:10:13.421Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:10:13.421Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x2","0x2e","0xa3d9020","0xa663a44f","0x9a47010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa3d9020","hex":"01 00 00 00 00 00 00 00 00 00 d1 8a 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:10:13.512Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:13.513Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x1","0x2e","0xa3d9020","0xa663a44f","0x9a47010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa3d9020","hex":"01 00 00 00 00 00 00 00 00 00 0d 15 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:10:13.514Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:13.515Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x138f0f4","args":["0x6648ff0","0x1","0x1","0x3","0x0","0x75bcd15","0x0","0x1","0x9545c43f","0x74794704"],"time":"2026-04-25T07:10:14.297Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T07:10:14.298Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x9a4c738","0x1","0x1","0x2","0x2","0x0","0x28","0x9b1d298","0x138ede4","0x28ba17d8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x9b1d298","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 15 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 4f fe df 08 01 00 00 00"}],"time":"2026-04-25T07:10:14.351Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x2","0x56","0xa3d9020","0xa663a41b","0x9a477f4","0x9a477e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa3d9020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 15 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 4f fe df 08 01 00 00 00"}],"time":"2026-04-25T07:10:14.352Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:14.353Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:10:14.353Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x9a4c738","args":["0x33","0x1700068","0x7cee968","0x76ffedd8","0x9a4c744","0x33","0x1700068","0x206","0x3","0x803bd9c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x1700068","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x803bd9c","hex":"f0 99 64"}],"time":"2026-04-25T07:10:14.356Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:10:14.357Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x9a4c738","args":["0x58","0x16fcd50","0x7cee968","0x76ffedd8","0x9a4c744","0x58","0x16fcd50","0x206","0x3","0x803bd9c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x16fcd50","hex":"01 00 2a 00 00 00 00 00 00 00 d3 8a 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 77 60 88 a5 96 5b 11 41 9d 55 14 c4 26 04 a2 92 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x803bd9c","hex":"f0 99 64"}],"time":"2026-04-25T07:10:14.358Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:10:14.358Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x2","0x2e","0xa3d9020","0xa663a44f","0x9a47010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0xa3d9020","hex":"01 00 00 00 00 00 00 00 00 00 d3 8a 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:10:14.460Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:14.461Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x9a4c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x9b1d6d0","0x138efa0","0x28ba159c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x9b1d6d0","hex":"21 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:10:19.336Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x1","0x68","0xa3d9020","0xa663a6df","0x9a477f4","0x9a477e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0xa3d9020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:10:19.338Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:19.338Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:10:19.339Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x9a4c738","0x1","0x1","0x2","0x2","0x0","0x25","0x9b1d5f8","0x138efa0","0x28ba159c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x9b1d5f8","hex":"21 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:10:19.340Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x9a4c738","args":["0x1","0x1","0x2","0x53","0xa3d9020","0xa663a6df","0x9b29584","0x9b29574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa3d9020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 96 57 a7 d9 16 fe 3b 4e 91 35 02 ca f3 36 a7 31 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:10:19.341Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:10:19.341Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:10:19.341Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x9a4c738","args":["0x2e","0x16fef60","0x7cee968","0x76ffedd8","0x9a4c744","0x2e","0x16fef60","0x206","0x3","0x803bd9c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x16fef60","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x803bd9c","hex":"f0 99 64"}],"time":"2026-04-25T07:10:19.345Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:10:19.345Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/044-frida-loopback-write-test-int-123456789/harness.log b/captures/044-frida-loopback-write-test-int-123456789/harness.log new file mode 100644 index 0000000..e11b95a --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/harness.log @@ -0,0 +1,19 @@ +2026-04-25T07:10:05.5950401+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaLoopback-044-frida-loopback-write-test-int-123456789","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"123456789","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T07:10:12.8684764+00:00 mx.register.begin {"ClientName":"MxFridaLoopback-044-frida-loopback-write-test-int-123456789"} +2026-04-25T07:10:13.2462373+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T07:10:13.2462373+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T07:10:13.2482405+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:10:13.2502064+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:10:13.2512542+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:10:13.5091932+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"115"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:04:44.646 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:10:14.2949457+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"123456789"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T07:10:14.2989964+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T07:10:14.4589457+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"123456789"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:10:14.354 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:10:14.4649552+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T07:10:19.3237640+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:10:19.3237640+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:10:19.3247621+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:10:19.3247621+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:10:19.3247621+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T07:10:23.2320836+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T07:10:23.2370850+00:00 harness.stop {} diff --git a/captures/044-frida-loopback-write-test-int-123456789/loopback.pcapng b/captures/044-frida-loopback-write-test-int-123456789/loopback.pcapng new file mode 100644 index 0000000..ae3a49a Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/loopback.pcapng differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/mixed-stream-57415-to-57433.tsv b/captures/044-frida-loopback-write-test-int-123456789/mixed-stream-57415-to-57433.tsv new file mode 100644 index 0000000..502facd --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/mixed-stream-57415-to-57433.tsv @@ -0,0 +1,1193 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 26 827206 0 26 827206 0 1a 00 00 00 46 9f 0c 00 00 00 00 00 ....F....... +1 0x0000000c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -958070784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +2 0x00000026 control 12 -1 809968 0 -1 809968 0 ff ff ff ff f0 5b 0c 00 00 00 00 00 .....[...... +3 0x00000032 control 12 26 827207 0 26 827207 0 1a 00 00 00 47 9f 0c 00 00 00 00 00 ....G....... +4 0x0000003e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -957939712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +5 0x00000058 control 12 -1 809969 0 -1 809969 0 ff ff ff ff f1 5b 0c 00 00 00 00 00 .....[...... +6 0x00000064 control 12 -2 93901 93875 -2 93901 93875 fe ff ff ff cd 6e 01 00 b3 6e 01 00 .....n...n.. +7 0x00000070 control 12 101 827208 0 101 827208 0 65 00 00 00 48 9f 0c 00 00 00 00 00 e...H....... +8 0x0000007c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1501757440 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 83 59 02 00 00 00 00 00 d1 53 79 c3 9d 01 00 00 .....!...o3........Y.......Sy..... +9 0x0000009e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 83 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 20 3a 0f f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +10 0x000000e1 control 12 -1 809970 0 -1 809970 0 ff ff ff ff f2 5b 0c 00 00 00 00 00 .....[...... +11 0x000000ed control 12 30 827209 0 30 827209 0 1e 00 00 00 49 9f 0c 00 00 00 00 00 ....I....... +12 0x000000f9 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -957808640 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e9 c6 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +13 0x00000117 control 12 -1 809971 0 -1 809971 0 ff ff ff ff f3 5b 0c 00 00 00 00 00 .....[...... +14 0x00000123 control 12 26 827210 0 26 827210 0 1a 00 00 00 4a 9f 0c 00 00 00 00 00 ....J....... +15 0x0000012f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -957677568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +16 0x00000149 control 12 -1 809972 0 -1 809972 0 ff ff ff ff f4 5b 0c 00 00 00 00 00 .....[...... +17 0x00000155 control 12 26 827211 0 26 827211 0 1a 00 00 00 4b 9f 0c 00 00 00 00 00 ....K....... +18 0x00000161 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -957546496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +19 0x0000017b control 12 -1 809973 0 -1 809973 0 ff ff ff ff f5 5b 0c 00 00 00 00 00 .....[...... +20 0x00000187 control 12 26 827212 0 26 827212 0 1a 00 00 00 4c 9f 0c 00 00 00 00 00 ....L....... +21 0x00000193 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -957415424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +22 0x000001ad control 12 -1 809974 0 -1 809974 0 ff ff ff ff f6 5b 0c 00 00 00 00 00 .....[...... +23 0x000001b9 control 12 101 827213 0 101 827213 0 65 00 00 00 4d 9f 0c 00 00 00 00 00 e...M....... +24 0x000001c5 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1501822976 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 84 59 02 00 00 00 00 00 03 55 79 c3 9d 01 00 00 .....!...o3........Y.......Uy..... +25 0x000001e7 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 84 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 8e 6f 21 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +26 0x0000022a control 12 -1 809975 0 -1 809975 0 ff ff ff ff f7 5b 0c 00 00 00 00 00 .....[...... +27 0x00000236 control 12 30 827214 0 30 827214 0 1e 00 00 00 4e 9f 0c 00 00 00 00 00 ....N....... +28 0x00000242 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -957284352 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f1 c6 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +29 0x00000260 control 12 -1 809976 0 -1 809976 0 ff ff ff ff f8 5b 0c 00 00 00 00 00 .....[...... +30 0x0000026c control 12 26 827215 0 26 827215 0 1a 00 00 00 4f 9f 0c 00 00 00 00 00 ....O....... +31 0x00000278 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -957153280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +32 0x00000292 control 12 -1 809977 0 -1 809977 0 ff ff ff ff f9 5b 0c 00 00 00 00 00 .....[...... +33 0x0000029e control 12 26 827216 0 26 827216 0 1a 00 00 00 50 9f 0c 00 00 00 00 00 ....P....... +34 0x000002aa data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -957022208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +35 0x000002c4 control 12 -1 809978 0 -1 809978 0 ff ff ff ff fa 5b 0c 00 00 00 00 00 .....[...... +36 0x000002d0 control 12 -2 93902 93876 -2 93902 93876 fe ff ff ff ce 6e 01 00 b4 6e 01 00 .....n...n.. +37 0x000002dc control 12 26 827217 0 26 827217 0 1a 00 00 00 51 9f 0c 00 00 00 00 00 ....Q....... +38 0x000002e8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -956891136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +39 0x00000302 control 12 -1 809979 0 -1 809979 0 ff ff ff ff fb 5b 0c 00 00 00 00 00 .....[...... +40 0x0000030e control 12 34 827218 0 34 827218 0 22 00 00 00 52 9f 0c 00 00 00 00 00 """...R......." +41 0x0000031a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1501888512 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 85 59 02 00 00 00 00 00 37 56 79 c3 9d 01 00 00 .....!...o3........Y......7Vy..... +42 0x0000033c control 12 67 827219 0 67 827219 0 43 00 00 00 53 9f 0c 00 00 00 00 00 C...S....... +43 0x00000348 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 85 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c4 de c9 33 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +44 0x0000038b control 12 -1 809980 0 -1 809980 0 ff ff ff ff fc 5b 0c 00 00 00 00 00 .....[...... +45 0x00000397 control 12 30 827220 0 30 827220 0 1e 00 00 00 54 9f 0c 00 00 00 00 00 ....T....... +46 0x000003a3 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -956760064 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f9 c6 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +47 0x000003c1 control 12 -1 809981 0 -1 809981 0 ff ff ff ff fd 5b 0c 00 00 00 00 00 .....[...... +48 0x000003cd control 12 26 827221 0 26 827221 0 1a 00 00 00 55 9f 0c 00 00 00 00 00 ....U....... +49 0x000003d9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -956628992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +50 0x000003f3 control 12 -1 809982 0 -1 809982 0 ff ff ff ff fe 5b 0c 00 00 00 00 00 .....[...... +51 0x000003ff control 12 26 827222 0 26 827222 0 1a 00 00 00 56 9f 0c 00 00 00 00 00 ....V....... +52 0x0000040b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -956497920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +53 0x00000425 control 12 -1 809983 0 -1 809983 0 ff ff ff ff ff 5b 0c 00 00 00 00 00 .....[...... +54 0x00000431 control 12 26 827223 0 26 827223 0 1a 00 00 00 57 9f 0c 00 00 00 00 00 ....W....... +55 0x0000043d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -956366848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff c6 21 00 00 00 00 00 ....T.c@.^1@........!..... +56 0x00000457 control 12 -1 809984 0 -1 809984 0 ff ff ff ff 00 5c 0c 00 00 00 00 00 .....\...... +57 0x00000463 control 12 101 827224 0 101 827224 0 65 00 00 00 58 9f 0c 00 00 00 00 00 e...X....... +58 0x0000046f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1501954048 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 86 59 02 00 00 00 00 00 68 57 79 c3 9d 01 00 00 .....!...o3........Y......hWy..... +59 0x00000491 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 86 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 04 fb 45 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +60 0x000004d4 control 12 -1 809985 0 -1 809985 0 ff ff ff ff 01 5c 0c 00 00 00 00 00 .....\...... +61 0x000004e0 control 12 30 827225 0 30 827225 0 1e 00 00 00 59 9f 0c 00 00 00 00 00 ....Y....... +62 0x000004ec data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -956235776 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 01 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +63 0x0000050a control 12 -1 809986 0 -1 809986 0 ff ff ff ff 02 5c 0c 00 00 00 00 00 .....\...... +64 0x00000516 control 12 26 827226 0 26 827226 0 1a 00 00 00 5a 9f 0c 00 00 00 00 00 ....Z....... +65 0x00000522 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -956104704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +66 0x0000053c control 12 -1 809987 0 -1 809987 0 ff ff ff ff 03 5c 0c 00 00 00 00 00 .....\...... +67 0x00000548 control 12 -2 93903 93877 -2 93903 93877 fe ff ff ff cf 6e 01 00 b5 6e 01 00 .....n...n.. +68 0x00000554 control 12 26 827227 0 26 827227 0 1a 00 00 00 5b 9f 0c 00 00 00 00 00 ....[....... +69 0x00000560 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -955973632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +70 0x0000057a control 12 -1 809988 0 -1 809988 0 ff ff ff ff 04 5c 0c 00 00 00 00 00 .....\...... +71 0x00000586 control 12 26 827228 0 26 827228 0 1a 00 00 00 5c 9f 0c 00 00 00 00 00 ....\....... +72 0x00000592 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -955842560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +73 0x000005ac control 12 -1 809989 0 -1 809989 0 ff ff ff ff 05 5c 0c 00 00 00 00 00 .....\...... +74 0x000005b8 control 12 34 827229 0 34 827229 0 22 00 00 00 5d 9f 0c 00 00 00 00 00 """...]......." +75 0x000005c4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502019584 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 87 59 02 00 00 00 00 00 99 58 79 c3 9d 01 00 00 .....!...o3........Y.......Xy..... +76 0x000005e6 control 12 67 827230 0 67 827230 0 43 00 00 00 5e 9f 0c 00 00 00 00 00 C...^....... +77 0x000005f2 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 87 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 73 28 58 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +78 0x00000635 control 12 -1 809990 0 -1 809990 0 ff ff ff ff 06 5c 0c 00 00 00 00 00 .....\...... +79 0x00000641 control 12 30 827231 0 30 827231 0 1e 00 00 00 5f 9f 0c 00 00 00 00 00 ...._....... +80 0x0000064d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -955711488 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 09 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +81 0x0000066b control 12 -1 809991 0 -1 809991 0 ff ff ff ff 07 5c 0c 00 00 00 00 00 .....\...... +82 0x00000677 control 12 26 827232 0 26 827232 0 1a 00 00 00 60 9f 0c 00 00 00 00 00 ....`....... +83 0x00000683 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -955580416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +84 0x0000069d control 12 -1 809992 0 -1 809992 0 ff ff ff ff 08 5c 0c 00 00 00 00 00 .....\...... +85 0x000006a9 control 12 26 827233 0 26 827233 0 1a 00 00 00 61 9f 0c 00 00 00 00 00 ....a....... +86 0x000006b5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -955449344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +87 0x000006cf control 12 -1 809993 0 -1 809993 0 ff ff ff ff 09 5c 0c 00 00 00 00 00 .....\...... +88 0x000006db control 12 -2 93904 93878 -2 93904 93878 fe ff ff ff d0 6e 01 00 b6 6e 01 00 .....n...n.. +89 0x000006e7 control 12 26 827234 0 26 827234 0 1a 00 00 00 62 9f 0c 00 00 00 00 00 ....b....... +90 0x000006f3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -955318272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +91 0x0000070d control 12 -1 809994 0 -1 809994 0 ff ff ff ff 0a 5c 0c 00 00 00 00 00 .....\...... +92 0x00000719 control 12 101 827235 0 101 827235 0 65 00 00 00 63 9f 0c 00 00 00 00 00 e...c....... +93 0x00000725 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502085120 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 88 59 02 00 00 00 00 00 c9 59 79 c3 9d 01 00 00 .....!...o3........Y.......Yy..... +94 0x00000747 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 88 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f cc 5b 5e 6a f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +95 0x0000078a control 12 -1 809995 0 -1 809995 0 ff ff ff ff 0b 5c 0c 00 00 00 00 00 .....\...... +96 0x00000796 control 12 30 827236 0 30 827236 0 1e 00 00 00 64 9f 0c 00 00 00 00 00 ....d....... +97 0x000007a2 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -955187200 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 11 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +98 0x000007c0 control 12 -1 809996 0 -1 809996 0 ff ff ff ff 0c 5c 0c 00 00 00 00 00 .....\...... +99 0x000007cc control 12 26 827237 0 26 827237 0 1a 00 00 00 65 9f 0c 00 00 00 00 00 ....e....... +100 0x000007d8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -955056128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +101 0x000007f2 control 12 -1 809997 0 -1 809997 0 ff ff ff ff 0d 5c 0c 00 00 00 00 00 .....\...... +102 0x000007fe control 12 26 827238 0 26 827238 0 1a 00 00 00 66 9f 0c 00 00 00 00 00 ....f....... +103 0x0000080a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -954925056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +104 0x00000824 control 12 -1 809998 0 -1 809998 0 ff ff ff ff 0e 5c 0c 00 00 00 00 00 .....\...... +105 0x00000830 control 12 26 827239 0 26 827239 0 1a 00 00 00 67 9f 0c 00 00 00 00 00 ....g....... +106 0x0000083c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -954793984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +107 0x00000856 control 12 -1 809999 0 -1 809999 0 ff ff ff ff 0f 5c 0c 00 00 00 00 00 .....\...... +108 0x00000862 control 12 101 827240 0 101 827240 0 65 00 00 00 68 9f 0c 00 00 00 00 00 e...h....... +109 0x0000086e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502150656 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 89 59 02 00 00 00 00 00 fa 5a 79 c3 9d 01 00 00 .....!...o3........Y.......Zy..... +110 0x00000890 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 89 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 84 01 80 7c f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +111 0x000008d3 control 12 -1 810000 0 -1 810000 0 ff ff ff ff 10 5c 0c 00 00 00 00 00 .....\...... +112 0x000008df control 12 30 827241 0 30 827241 0 1e 00 00 00 69 9f 0c 00 00 00 00 00 ....i....... +113 0x000008eb data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -954662912 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 19 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +114 0x00000909 control 12 -1 810001 0 -1 810001 0 ff ff ff ff 11 5c 0c 00 00 00 00 00 .....\...... +115 0x00000915 control 12 26 827242 0 26 827242 0 1a 00 00 00 6a 9f 0c 00 00 00 00 00 ....j....... +116 0x00000921 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -954531840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +117 0x0000093b control 12 -1 810002 0 -1 810002 0 ff ff ff ff 12 5c 0c 00 00 00 00 00 .....\...... +118 0x00000947 control 12 -2 93905 93879 -2 93905 93879 fe ff ff ff d1 6e 01 00 b7 6e 01 00 .....n...n.. +119 0x00000953 control 12 26 827243 0 26 827243 0 1a 00 00 00 6b 9f 0c 00 00 00 00 00 ....k....... +120 0x0000095f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -954400768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1d c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +121 0x00000979 control 12 -1 810003 0 -1 810003 0 ff ff ff ff 13 5c 0c 00 00 00 00 00 .....\...... +122 0x00000985 control 12 26 827244 0 26 827244 0 1a 00 00 00 6c 9f 0c 00 00 00 00 00 ....l....... +123 0x00000991 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -954269696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +124 0x000009ab control 12 -1 810004 0 -1 810004 0 ff ff ff ff 14 5c 0c 00 00 00 00 00 .....\...... +125 0x000009b7 control 12 101 827245 0 101 827245 0 65 00 00 00 6d 9f 0c 00 00 00 00 00 e...m....... +126 0x000009c3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502216192 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8a 59 02 00 00 00 00 00 2c 5c 79 c3 9d 01 00 00 .....!...o3........Y......,\y..... +127 0x000009e5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8a 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc 6f b1 8e f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +128 0x00000a28 control 12 -1 810005 0 -1 810005 0 ff ff ff ff 15 5c 0c 00 00 00 00 00 .....\...... +129 0x00000a34 control 12 30 827246 0 30 827246 0 1e 00 00 00 6e 9f 0c 00 00 00 00 00 ....n....... +130 0x00000a40 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -954138624 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 21 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......!.!......... +131 0x00000a5e control 12 -1 810006 0 -1 810006 0 ff ff ff ff 16 5c 0c 00 00 00 00 00 .....\...... +132 0x00000a6a control 12 26 827247 0 26 827247 0 1a 00 00 00 6f 9f 0c 00 00 00 00 00 ....o....... +133 0x00000a76 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -954007552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 c7 21 00 00 00 00 00 ....T.c@.^1@......#.!..... +134 0x00000a90 control 12 -1 810007 0 -1 810007 0 ff ff ff ff 17 5c 0c 00 00 00 00 00 .....\...... +135 0x00000a9c control 12 26 827248 0 26 827248 0 1a 00 00 00 70 9f 0c 00 00 00 00 00 ....p....... +136 0x00000aa8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -953876480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 25 c7 21 00 00 00 00 00 ....T.c@.^1@......%.!..... +137 0x00000ac2 control 12 -1 810008 0 -1 810008 0 ff ff ff ff 18 5c 0c 00 00 00 00 00 .....\...... +138 0x00000ace control 12 26 827249 0 26 827249 0 1a 00 00 00 71 9f 0c 00 00 00 00 00 ....q....... +139 0x00000ada data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -953745408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 c7 21 00 00 00 00 00 ....T.c@.^1@......'.!..... +140 0x00000af4 control 12 -1 810009 0 -1 810009 0 ff ff ff ff 19 5c 0c 00 00 00 00 00 .....\...... +141 0x00000b00 control 12 34 827250 0 34 827250 0 22 00 00 00 72 9f 0c 00 00 00 00 00 """...r......." +142 0x00000b0c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502281728 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8b 59 02 00 00 00 00 00 5c 5d 79 c3 9d 01 00 00 .....!...o3........Y......\]y..... +143 0x00000b2e control 12 67 827251 0 67 827251 0 43 00 00 00 73 9f 0c 00 00 00 00 00 C...s....... +144 0x00000b3a data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8b 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 2c 9e df a0 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +145 0x00000b7d control 12 -1 810010 0 -1 810010 0 ff ff ff ff 1a 5c 0c 00 00 00 00 00 .....\...... +146 0x00000b89 control 12 30 827252 0 30 827252 0 1e 00 00 00 74 9f 0c 00 00 00 00 00 ....t....... +147 0x00000b95 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -953614336 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 29 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......).!......... +148 0x00000bb3 control 12 -1 810011 0 -1 810011 0 ff ff ff ff 1b 5c 0c 00 00 00 00 00 .....\...... +149 0x00000bbf control 12 -2 93906 93880 -2 93906 93880 fe ff ff ff d2 6e 01 00 b8 6e 01 00 .....n...n.. +150 0x00000bcb control 12 26 827253 0 26 827253 0 1a 00 00 00 75 9f 0c 00 00 00 00 00 ....u....... +151 0x00000bd7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -953483264 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b c7 21 00 00 00 00 00 ....T.c@.^1@......+.!..... +152 0x00000bf1 control 12 -1 810012 0 -1 810012 0 ff ff ff ff 1c 5c 0c 00 00 00 00 00 .....\...... +153 0x00000bfd control 12 26 827254 0 26 827254 0 1a 00 00 00 76 9f 0c 00 00 00 00 00 ....v....... +154 0x00000c09 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -953352192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2d c7 21 00 00 00 00 00 ....T.c@.^1@......-.!..... +155 0x00000c23 control 12 -1 810013 0 -1 810013 0 ff ff ff ff 1d 5c 0c 00 00 00 00 00 .....\...... +156 0x00000c2f control 12 26 827255 0 26 827255 0 1a 00 00 00 77 9f 0c 00 00 00 00 00 ....w....... +157 0x00000c3b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -953221120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f c7 21 00 00 00 00 00 ....T.c@.^1@....../.!..... +158 0x00000c55 control 12 -1 810014 0 -1 810014 0 ff ff ff ff 1e 5c 0c 00 00 00 00 00 .....\...... +159 0x00000c61 control 12 101 827256 0 101 827256 0 65 00 00 00 78 9f 0c 00 00 00 00 00 e...x....... +160 0x00000c6d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502347264 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8c 59 02 00 00 00 00 00 8e 5e 79 c3 9d 01 00 00 .....!...o3........Y.......^y..... +161 0x00000c8f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8c 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 28 18 b3 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +162 0x00000cd2 control 12 -1 810015 0 -1 810015 0 ff ff ff ff 1f 5c 0c 00 00 00 00 00 .....\...... +163 0x00000cde control 12 30 827257 0 30 827257 0 1e 00 00 00 79 9f 0c 00 00 00 00 00 ....y....... +164 0x00000cea data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -953090048 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 31 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......1.!......... +165 0x00000d08 control 12 -1 810016 0 -1 810016 0 ff ff ff ff 20 5c 0c 00 00 00 00 00 .... \...... +166 0x00000d14 control 12 26 827258 0 26 827258 0 1a 00 00 00 7a 9f 0c 00 00 00 00 00 ....z....... +167 0x00000d20 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -952958976 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 c7 21 00 00 00 00 00 ....T.c@.^1@......3.!..... +168 0x00000d3a control 12 -1 810017 0 -1 810017 0 ff ff ff ff 21 5c 0c 00 00 00 00 00 ....!\...... +169 0x00000d46 control 12 26 827259 0 26 827259 0 1a 00 00 00 7b 9f 0c 00 00 00 00 00 ....{....... +170 0x00000d52 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -952827904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 35 c7 21 00 00 00 00 00 ....T.c@.^1@......5.!..... +171 0x00000d6c control 12 -1 810018 0 -1 810018 0 ff ff ff ff 22 5c 0c 00 00 00 00 00 "....""\......" +172 0x00000d78 control 12 -2 93907 93881 -2 93907 93881 fe ff ff ff d3 6e 01 00 b9 6e 01 00 .....n...n.. +173 0x00000d84 control 12 26 827260 0 26 827260 0 1a 00 00 00 7c 9f 0c 00 00 00 00 00 ....|....... +174 0x00000d90 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -952696832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 c7 21 00 00 00 00 00 ....T.c@.^1@......7.!..... +175 0x00000daa control 12 -1 810019 0 -1 810019 0 ff ff ff ff 23 5c 0c 00 00 00 00 00 ....#\...... +176 0x00000db6 control 12 101 827261 0 101 827261 0 65 00 00 00 7d 9f 0c 00 00 00 00 00 e...}....... +177 0x00000dc2 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502412800 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8d 59 02 00 00 00 00 00 be 5f 79 c3 9d 01 00 00 .....!...o3........Y......._y..... +178 0x00000de4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8d 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 28 3d c5 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +179 0x00000e27 control 12 -1 810020 0 -1 810020 0 ff ff ff ff 24 5c 0c 00 00 00 00 00 ....$\...... +180 0x00000e33 control 12 30 827262 0 30 827262 0 1e 00 00 00 7e 9f 0c 00 00 00 00 00 ....~....... +181 0x00000e3f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -952565760 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 39 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......9.!......... +182 0x00000e5d control 12 -1 810021 0 -1 810021 0 ff ff ff ff 25 5c 0c 00 00 00 00 00 ....%\...... +183 0x00000e69 control 12 26 827263 0 26 827263 0 1a 00 00 00 7f 9f 0c 00 00 00 00 00 ............ +184 0x00000e75 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -952434688 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b c7 21 00 00 00 00 00 ....T.c@.^1@......;.!..... +185 0x00000e8f control 12 -1 810022 0 -1 810022 0 ff ff ff ff 26 5c 0c 00 00 00 00 00 ....&\...... +186 0x00000e9b control 12 26 827264 0 26 827264 0 1a 00 00 00 80 9f 0c 00 00 00 00 00 ............ +187 0x00000ea7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -952303616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3d c7 21 00 00 00 00 00 ....T.c@.^1@......=.!..... +188 0x00000ec1 control 12 -1 810023 0 -1 810023 0 ff ff ff ff 27 5c 0c 00 00 00 00 00 ....'\...... +189 0x00000ecd control 12 26 827265 0 26 827265 0 1a 00 00 00 81 9f 0c 00 00 00 00 00 ............ +190 0x00000ed9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -952172544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f c7 21 00 00 00 00 00 ....T.c@.^1@......?.!..... +191 0x00000ef3 control 12 -1 810024 0 -1 810024 0 ff ff ff ff 28 5c 0c 00 00 00 00 00 ....(\...... +192 0x00000eff control 12 101 827266 0 101 827266 0 65 00 00 00 82 9f 0c 00 00 00 00 00 e........... +193 0x00000f0b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502478336 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8e 59 02 00 00 00 00 00 ef 60 79 c3 9d 01 00 00 .....!...o3........Y.......`y..... +194 0x00000f2d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8e 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 da 6e d7 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +195 0x00000f70 control 12 -1 810025 0 -1 810025 0 ff ff ff ff 29 5c 0c 00 00 00 00 00 ....)\...... +196 0x00000f7c control 12 30 827267 0 30 827267 0 1e 00 00 00 83 9f 0c 00 00 00 00 00 ............ +197 0x00000f88 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -952041472 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 41 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......A.!......... +198 0x00000fa6 control 12 -1 810026 0 -1 810026 0 ff ff ff ff 2a 5c 0c 00 00 00 00 00 ....*\...... +199 0x00000fb2 control 12 26 827268 0 26 827268 0 1a 00 00 00 84 9f 0c 00 00 00 00 00 ............ +200 0x00000fbe data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -951910400 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 c7 21 00 00 00 00 00 ....T.c@.^1@......C.!..... +201 0x00000fd8 control 12 -1 810027 0 -1 810027 0 ff ff ff ff 2b 5c 0c 00 00 00 00 00 ....+\...... +202 0x00000fe4 control 12 -2 93908 93882 -2 93908 93882 fe ff ff ff d4 6e 01 00 ba 6e 01 00 .....n...n.. +203 0x00000ff0 control 12 26 827269 0 26 827269 0 1a 00 00 00 85 9f 0c 00 00 00 00 00 ............ +204 0x00000ffc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -951779328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 45 c7 21 00 00 00 00 00 ....T.c@.^1@......E.!..... +205 0x00001016 control 12 -1 810028 0 -1 810028 0 ff ff ff ff 2c 5c 0c 00 00 00 00 00 ....,\...... +206 0x00001022 control 12 26 827270 0 26 827270 0 1a 00 00 00 86 9f 0c 00 00 00 00 00 ............ +207 0x0000102e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -951648256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 c7 21 00 00 00 00 00 ....T.c@.^1@......G.!..... +208 0x00001048 control 12 -1 810029 0 -1 810029 0 ff ff ff ff 2d 5c 0c 00 00 00 00 00 ....-\...... +209 0x00001054 control 12 101 827271 0 101 827271 0 65 00 00 00 87 9f 0c 00 00 00 00 00 e........... +210 0x00001060 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502543872 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 8f 59 02 00 00 00 00 00 20 62 79 c3 9d 01 00 00 .....!...o3........Y...... by..... +211 0x00001082 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 8f 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a8 49 88 e9 f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +212 0x000010c5 control 12 -1 810030 0 -1 810030 0 ff ff ff ff 2e 5c 0c 00 00 00 00 00 .....\...... +213 0x000010d1 control 12 30 827272 0 30 827272 0 1e 00 00 00 88 9f 0c 00 00 00 00 00 ............ +214 0x000010dd data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -951517184 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 49 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......I.!......... +215 0x000010fb control 12 -1 810031 0 -1 810031 0 ff ff ff ff 2f 5c 0c 00 00 00 00 00 ..../\...... +216 0x00001107 control 12 26 827273 0 26 827273 0 1a 00 00 00 89 9f 0c 00 00 00 00 00 ............ +217 0x00001113 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -951386112 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b c7 21 00 00 00 00 00 ....T.c@.^1@......K.!..... +218 0x0000112d control 12 -1 810032 0 -1 810032 0 ff ff ff ff 30 5c 0c 00 00 00 00 00 ....0\...... +219 0x00001139 control 12 26 827274 0 26 827274 0 1a 00 00 00 8a 9f 0c 00 00 00 00 00 ............ +220 0x00001145 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -951255040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4d c7 21 00 00 00 00 00 ....T.c@.^1@......M.!..... +221 0x0000115f control 12 -1 810033 0 -1 810033 0 ff ff ff ff 31 5c 0c 00 00 00 00 00 ....1\...... +222 0x0000116b control 12 26 827275 0 26 827275 0 1a 00 00 00 8b 9f 0c 00 00 00 00 00 ............ +223 0x00001177 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -951123968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f c7 21 00 00 00 00 00 ....T.c@.^1@......O.!..... +224 0x00001191 control 12 -1 810034 0 -1 810034 0 ff ff ff ff 32 5c 0c 00 00 00 00 00 ....2\...... +225 0x0000119d control 12 101 827276 0 101 827276 0 65 00 00 00 8c 9f 0c 00 00 00 00 00 e........... +226 0x000011a9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502609408 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 90 59 02 00 00 00 00 00 53 63 79 c3 9d 01 00 00 .....!...o3........Y......Scy..... +227 0x000011cb data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 90 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 a5 d1 fb f2 87 a9 18 ?.....3...|8............Y......=B.....&......... +228 0x0000120e control 12 -1 810035 0 -1 810035 0 ff ff ff ff 33 5c 0c 00 00 00 00 00 ....3\...... +229 0x0000121a control 12 30 827277 0 30 827277 0 1e 00 00 00 8d 9f 0c 00 00 00 00 00 ............ +230 0x00001226 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -950992896 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 51 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......Q.!......... +231 0x00001244 control 12 -1 810036 0 -1 810036 0 ff ff ff ff 34 5c 0c 00 00 00 00 00 ....4\...... +232 0x00001250 control 12 -2 93909 93883 -2 93909 93883 fe ff ff ff d5 6e 01 00 bb 6e 01 00 .....n...n.. +233 0x0000125c control 12 26 827278 0 26 827278 0 1a 00 00 00 8e 9f 0c 00 00 00 00 00 ............ +234 0x00001268 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -950861824 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 c7 21 00 00 00 00 00 ....T.c@.^1@......S.!..... +235 0x00001282 control 12 -1 810037 0 -1 810037 0 ff ff ff ff 35 5c 0c 00 00 00 00 00 ....5\...... +236 0x0000128e control 12 26 827279 0 26 827279 0 1a 00 00 00 8f 9f 0c 00 00 00 00 00 ............ +237 0x0000129a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -950730752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 55 c7 21 00 00 00 00 00 ....T.c@.^1@......U.!..... +238 0x000012b4 control 12 -1 810038 0 -1 810038 0 ff ff ff ff 36 5c 0c 00 00 00 00 00 ....6\...... +239 0x000012c0 control 12 26 827280 0 26 827280 0 1a 00 00 00 90 9f 0c 00 00 00 00 00 ............ +240 0x000012cc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -950599680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 c7 21 00 00 00 00 00 ....T.c@.^1@......W.!..... +241 0x000012e6 control 12 -1 810039 0 -1 810039 0 ff ff ff ff 37 5c 0c 00 00 00 00 00 ....7\...... +242 0x000012f2 control 12 34 827281 0 34 827281 0 22 00 00 00 91 9f 0c 00 00 00 00 00 """..........." +243 0x000012fe data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502674944 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 91 59 02 00 00 00 00 00 83 64 79 c3 9d 01 00 00 .....!...o3........Y.......dy..... +244 0x00001320 control 12 67 827282 0 67 827282 0 43 00 00 00 92 9f 0c 00 00 00 00 00 C........... +245 0x0000132c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 91 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f cc 29 0a 0e f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +246 0x0000136f control 12 -1 810040 0 -1 810040 0 ff ff ff ff 38 5c 0c 00 00 00 00 00 ....8\...... +247 0x0000137b control 12 30 827283 0 30 827283 0 1e 00 00 00 93 9f 0c 00 00 00 00 00 ............ +248 0x00001387 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -950468608 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 59 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......Y.!......... +249 0x000013a5 control 12 -1 810041 0 -1 810041 0 ff ff ff ff 39 5c 0c 00 00 00 00 00 ....9\...... +250 0x000013b1 control 12 26 827284 0 26 827284 0 1a 00 00 00 94 9f 0c 00 00 00 00 00 ............ +251 0x000013bd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -950337536 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b c7 21 00 00 00 00 00 ....T.c@.^1@......[.!..... +252 0x000013d7 control 12 -1 810042 0 -1 810042 0 ff ff ff ff 3a 5c 0c 00 00 00 00 00 ....:\...... +253 0x000013e3 control 12 26 827285 0 26 827285 0 1a 00 00 00 95 9f 0c 00 00 00 00 00 ............ +254 0x000013ef data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -950206464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5d c7 21 00 00 00 00 00 ....T.c@.^1@......].!..... +255 0x00001409 control 12 -1 810043 0 -1 810043 0 ff ff ff ff 3b 5c 0c 00 00 00 00 00 ....;\...... +256 0x00001415 control 12 -2 93910 93884 -2 93910 93884 fe ff ff ff d6 6e 01 00 bc 6e 01 00 .....n...n.. +257 0x00001421 control 12 26 827286 0 26 827286 0 1a 00 00 00 96 9f 0c 00 00 00 00 00 ............ +258 0x0000142d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -950075392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f c7 21 00 00 00 00 00 ....T.c@.^1@......_.!..... +259 0x00001447 control 12 101 827287 0 101 827287 0 65 00 00 00 97 9f 0c 00 00 00 00 00 e........... +260 0x00001453 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502740480 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 92 59 02 00 00 00 00 00 b4 65 79 c3 9d 01 00 00 .....!...o3........Y.......ey..... +261 0x00001475 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 92 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e4 47 26 20 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +262 0x000014b8 control 12 -1 810044 0 -1 810044 0 ff ff ff ff 3c 5c 0c 00 00 00 00 00 ....<\...... +263 0x000014c4 control 12 -1 810045 0 -1 810045 0 ff ff ff ff 3d 5c 0c 00 00 00 00 00 ....=\...... +264 0x000014d0 control 12 30 827288 0 30 827288 0 1e 00 00 00 98 9f 0c 00 00 00 00 00 ............ +265 0x000014dc data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -949944320 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 61 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......a.!......... +266 0x000014fa control 12 -1 810046 0 -1 810046 0 ff ff ff ff 3e 5c 0c 00 00 00 00 00 ....>\...... +267 0x00001506 control 12 26 827289 0 26 827289 0 1a 00 00 00 99 9f 0c 00 00 00 00 00 ............ +268 0x00001512 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -949813248 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 c7 21 00 00 00 00 00 ....T.c@.^1@......c.!..... +269 0x0000152c control 12 -1 810047 0 -1 810047 0 ff ff ff ff 3f 5c 0c 00 00 00 00 00 ....?\...... +270 0x00001538 control 12 26 827290 0 26 827290 0 1a 00 00 00 9a 9f 0c 00 00 00 00 00 ............ +271 0x00001544 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -949682176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 65 c7 21 00 00 00 00 00 ....T.c@.^1@......e.!..... +272 0x0000155e control 12 -1 810048 0 -1 810048 0 ff ff ff ff 40 5c 0c 00 00 00 00 00 ....@\...... +273 0x0000156a control 12 34 827291 0 34 827291 0 22 00 00 00 9b 9f 0c 00 00 00 00 00 """..........." +274 0x00001576 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502806016 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 93 59 02 00 00 00 00 00 e5 66 79 c3 9d 01 00 00 .....!...o3........Y.......fy..... +275 0x00001598 control 12 67 827292 0 67 827292 0 43 00 00 00 9c 9f 0c 00 00 00 00 00 C........... +276 0x000015a4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 93 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a4 94 57 32 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +277 0x000015e7 control 12 -1 810049 0 -1 810049 0 ff ff ff ff 41 5c 0c 00 00 00 00 00 ....A\...... +278 0x000015f3 control 12 30 827293 0 30 827293 0 1e 00 00 00 9d 9f 0c 00 00 00 00 00 ............ +279 0x000015ff data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -949551104 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 67 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......g.!......... +280 0x0000161d control 12 26 827294 0 26 827294 0 1a 00 00 00 9e 9f 0c 00 00 00 00 00 ............ +281 0x00001629 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -949420032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 c7 21 00 00 00 00 00 ....T.c@.^1@......i.!..... +282 0x00001643 control 12 -1 810050 0 -1 810050 0 ff ff ff ff 42 5c 0c 00 00 00 00 00 ....B\...... +283 0x0000164f control 12 -1 810051 0 -1 810051 0 ff ff ff ff 43 5c 0c 00 00 00 00 00 ....C\...... +284 0x0000165b control 12 -2 93911 93885 -2 93911 93885 fe ff ff ff d7 6e 01 00 bd 6e 01 00 .....n...n.. +285 0x00001667 control 12 26 827295 0 26 827295 0 1a 00 00 00 9f 9f 0c 00 00 00 00 00 ............ +286 0x00001673 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -949288960 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b c7 21 00 00 00 00 00 ....T.c@.^1@......k.!..... +287 0x0000168d control 12 -1 810052 0 -1 810052 0 ff ff ff ff 44 5c 0c 00 00 00 00 00 ....D\...... +288 0x00001699 control 12 26 827296 0 26 827296 0 1a 00 00 00 a0 9f 0c 00 00 00 00 00 ............ +289 0x000016a5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -949157888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6d c7 21 00 00 00 00 00 ....T.c@.^1@......m.!..... +290 0x000016bf control 12 -1 810053 0 -1 810053 0 ff ff ff ff 45 5c 0c 00 00 00 00 00 ....E\...... +291 0x000016cb control 12 101 827297 0 101 827297 0 65 00 00 00 a1 9f 0c 00 00 00 00 00 e........... +292 0x000016d7 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502871552 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 94 59 02 00 00 00 00 00 17 68 79 c3 9d 01 00 00 .....!...o3........Y.......hy..... +293 0x000016f9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 94 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 40 cb 95 44 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +294 0x0000173c control 12 -1 810054 0 -1 810054 0 ff ff ff ff 46 5c 0c 00 00 00 00 00 ....F\...... +295 0x00001748 control 12 30 827298 0 30 827298 0 1e 00 00 00 a2 9f 0c 00 00 00 00 00 ............ +296 0x00001754 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -949026816 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6f c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......o.!......... +297 0x00001772 control 12 -1 810055 0 -1 810055 0 ff ff ff ff 47 5c 0c 00 00 00 00 00 ....G\...... +298 0x0000177e control 12 26 827299 0 26 827299 0 1a 00 00 00 a3 9f 0c 00 00 00 00 00 ............ +299 0x0000178a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -948895744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 c7 21 00 00 00 00 00 ....T.c@.^1@......q.!..... +300 0x000017a4 control 12 -1 810056 0 -1 810056 0 ff ff ff ff 48 5c 0c 00 00 00 00 00 ....H\...... +301 0x000017b0 control 12 26 827300 0 26 827300 0 1a 00 00 00 a4 9f 0c 00 00 00 00 00 ............ +302 0x000017bc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -948764672 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 c7 21 00 00 00 00 00 ....T.c@.^1@......s.!..... +303 0x000017d6 control 12 -1 810057 0 -1 810057 0 ff ff ff ff 49 5c 0c 00 00 00 00 00 ....I\...... +304 0x000017e2 control 12 26 827301 0 26 827301 0 1a 00 00 00 a5 9f 0c 00 00 00 00 00 ............ +305 0x000017ee data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -948633600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 75 c7 21 00 00 00 00 00 ....T.c@.^1@......u.!..... +306 0x00001808 control 12 -1 810058 0 -1 810058 0 ff ff ff ff 4a 5c 0c 00 00 00 00 00 ....J\...... +307 0x00001814 control 12 -2 93912 93886 -2 93912 93886 fe ff ff ff d8 6e 01 00 be 6e 01 00 .....n...n.. +308 0x00001820 control 12 101 827302 0 101 827302 0 65 00 00 00 a6 9f 0c 00 00 00 00 00 e........... +309 0x0000182c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1502937088 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 95 59 02 00 00 00 00 00 48 69 79 c3 9d 01 00 00 .....!...o3........Y......Hiy..... +310 0x0000184e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 95 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 20 0b d2 56 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +311 0x00001891 control 12 -1 810059 0 -1 810059 0 ff ff ff ff 4b 5c 0c 00 00 00 00 00 ....K\...... +312 0x0000189d control 12 30 827303 0 30 827303 0 1e 00 00 00 a7 9f 0c 00 00 00 00 00 ............ +313 0x000018a9 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -948502528 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 77 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......w.!......... +314 0x000018c7 control 12 -1 810060 0 -1 810060 0 ff ff ff ff 4c 5c 0c 00 00 00 00 00 ....L\...... +315 0x000018d3 control 12 26 827304 0 26 827304 0 1a 00 00 00 a8 9f 0c 00 00 00 00 00 ............ +316 0x000018df data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -948371456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 c7 21 00 00 00 00 00 ....T.c@.^1@......y.!..... +317 0x000018f9 control 12 -1 810061 0 -1 810061 0 ff ff ff ff 4d 5c 0c 00 00 00 00 00 ....M\...... +318 0x00001905 control 12 26 827305 0 26 827305 0 1a 00 00 00 a9 9f 0c 00 00 00 00 00 ............ +319 0x00001911 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -948240384 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b c7 21 00 00 00 00 00 ....T.c@.^1@......{.!..... +320 0x0000192b control 12 -1 810062 0 -1 810062 0 ff ff ff ff 4e 5c 0c 00 00 00 00 00 ....N\...... +321 0x00001937 control 12 26 827306 0 26 827306 0 1a 00 00 00 aa 9f 0c 00 00 00 00 00 ............ +322 0x00001943 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -948109312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7d c7 21 00 00 00 00 00 ....T.c@.^1@......}.!..... +323 0x0000195d control 12 -1 810063 0 -1 810063 0 ff ff ff ff 4f 5c 0c 00 00 00 00 00 ....O\...... +324 0x00001969 control 12 101 827307 0 101 827307 0 65 00 00 00 ab 9f 0c 00 00 00 00 00 e........... +325 0x00001975 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503002624 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 96 59 02 00 00 00 00 00 79 6a 79 c3 9d 01 00 00 .....!...o3........Y......yjy..... +326 0x00001997 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 96 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 75 e9 68 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +327 0x000019da control 12 -1 810064 0 -1 810064 0 ff ff ff ff 50 5c 0c 00 00 00 00 00 ....P\...... +328 0x000019e6 control 12 30 827308 0 30 827308 0 1e 00 00 00 ac 9f 0c 00 00 00 00 00 ............ +329 0x000019f2 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -947978240 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7f c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +330 0x00001a10 control 12 -1 810065 0 -1 810065 0 ff ff ff ff 51 5c 0c 00 00 00 00 00 ....Q\...... +331 0x00001a1c control 12 26 827309 0 26 827309 0 1a 00 00 00 ad 9f 0c 00 00 00 00 00 ............ +332 0x00001a28 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -947847168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +333 0x00001a42 control 12 -1 810066 0 -1 810066 0 ff ff ff ff 52 5c 0c 00 00 00 00 00 ....R\...... +334 0x00001a4e control 12 26 827310 0 26 827310 0 1a 00 00 00 ae 9f 0c 00 00 00 00 00 ............ +335 0x00001a5a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -947716096 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +336 0x00001a74 control 12 -1 810067 0 -1 810067 0 ff ff ff ff 53 5c 0c 00 00 00 00 00 ....S\...... +337 0x00001a80 control 12 -2 93913 93887 -2 93913 93887 fe ff ff ff d9 6e 01 00 bf 6e 01 00 .....n...n.. +338 0x00001a8c control 12 26 827311 0 26 827311 0 1a 00 00 00 af 9f 0c 00 00 00 00 00 ............ +339 0x00001a98 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -947585024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 85 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +340 0x00001ab2 control 12 -1 810068 0 -1 810068 0 ff ff ff ff 54 5c 0c 00 00 00 00 00 ....T\...... +341 0x00001abe control 12 34 827312 0 34 827312 0 22 00 00 00 b0 9f 0c 00 00 00 00 00 """..........." +342 0x00001aca data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503068160 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 97 59 02 00 00 00 00 00 aa 6b 79 c3 9d 01 00 00 .....!...o3........Y.......ky..... +343 0x00001aec control 12 67 827313 0 67 827313 0 43 00 00 00 b1 9f 0c 00 00 00 00 00 C........... +344 0x00001af8 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 97 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec 3e 1c 7b f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +345 0x00001b3b control 12 -1 810069 0 -1 810069 0 ff ff ff ff 55 5c 0c 00 00 00 00 00 ....U\...... +346 0x00001b47 control 12 30 827314 0 30 827314 0 1e 00 00 00 b2 9f 0c 00 00 00 00 00 ............ +347 0x00001b53 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -947453952 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 87 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +348 0x00001b71 control 12 -1 810070 0 -1 810070 0 ff ff ff ff 56 5c 0c 00 00 00 00 00 ....V\...... +349 0x00001b7d control 12 26 827315 0 26 827315 0 1a 00 00 00 b3 9f 0c 00 00 00 00 00 ............ +350 0x00001b89 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -947322880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +351 0x00001ba3 control 12 -1 810071 0 -1 810071 0 ff ff ff ff 57 5c 0c 00 00 00 00 00 ....W\...... +352 0x00001baf control 12 26 827316 0 26 827316 0 1a 00 00 00 b4 9f 0c 00 00 00 00 00 ............ +353 0x00001bbb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -947191808 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +354 0x00001bd5 control 12 -1 810072 0 -1 810072 0 ff ff ff ff 58 5c 0c 00 00 00 00 00 ....X\...... +355 0x00001be1 control 12 26 827317 0 26 827317 0 1a 00 00 00 b5 9f 0c 00 00 00 00 00 ............ +356 0x00001bed data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -947060736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8d c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +357 0x00001c07 control 12 -1 810073 0 -1 810073 0 ff ff ff ff 59 5c 0c 00 00 00 00 00 ....Y\...... +358 0x00001c13 control 12 101 827318 0 101 827318 0 65 00 00 00 b6 9f 0c 00 00 00 00 00 e........... +359 0x00001c1f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503133696 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 98 59 02 00 00 00 00 00 da 6c 79 c3 9d 01 00 00 .....!...o3........Y.......ly..... +360 0x00001c41 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 98 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 24 39 8d f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +361 0x00001c84 control 12 -1 810074 0 -1 810074 0 ff ff ff ff 5a 5c 0c 00 00 00 00 00 ....Z\...... +362 0x00001c90 control 12 30 827319 0 30 827319 0 1e 00 00 00 b7 9f 0c 00 00 00 00 00 ............ +363 0x00001c9c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -946929664 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8f c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +364 0x00001cba control 12 -1 810075 0 -1 810075 0 ff ff ff ff 5b 5c 0c 00 00 00 00 00 ....[\...... +365 0x00001cc6 control 12 26 827320 0 26 827320 0 1a 00 00 00 b8 9f 0c 00 00 00 00 00 ............ +366 0x00001cd2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -946798592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +367 0x00001cec control 12 -1 810076 0 -1 810076 0 ff ff ff ff 5c 5c 0c 00 00 00 00 00 ....\\...... +368 0x00001cf8 control 12 -2 93914 93888 -2 93914 93888 fe ff ff ff da 6e 01 00 c0 6e 01 00 .....n...n.. +369 0x00001d04 control 12 26 827321 0 26 827321 0 1a 00 00 00 b9 9f 0c 00 00 00 00 00 ............ +370 0x00001d10 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -946667520 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +371 0x00001d2a control 12 -1 810077 0 -1 810077 0 ff ff ff ff 5d 5c 0c 00 00 00 00 00 ....]\...... +372 0x00001d36 control 12 26 827322 0 26 827322 0 1a 00 00 00 ba 9f 0c 00 00 00 00 00 ............ +373 0x00001d42 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -946536448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 95 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +374 0x00001d5c control 12 -1 810078 0 -1 810078 0 ff ff ff ff 5e 5c 0c 00 00 00 00 00 ....^\...... +375 0x00001d68 control 12 101 827323 0 101 827323 0 65 00 00 00 bb 9f 0c 00 00 00 00 00 e........... +376 0x00001d74 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503199232 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 99 59 02 00 00 00 00 00 0c 6e 79 c3 9d 01 00 00 .....!...o3........Y.......ny..... +377 0x00001d96 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 99 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 6c c7 85 9f f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +378 0x00001dd9 control 12 -1 810079 0 -1 810079 0 ff ff ff ff 5f 5c 0c 00 00 00 00 00 ...._\...... +379 0x00001de5 control 12 30 827324 0 30 827324 0 1e 00 00 00 bc 9f 0c 00 00 00 00 00 ............ +380 0x00001df1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -946405376 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 97 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +381 0x00001e0f control 12 -1 810080 0 -1 810080 0 ff ff ff ff 60 5c 0c 00 00 00 00 00 ....`\...... +382 0x00001e1b control 12 26 827325 0 26 827325 0 1a 00 00 00 bd 9f 0c 00 00 00 00 00 ............ +383 0x00001e27 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -946274304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +384 0x00001e41 control 12 -1 810081 0 -1 810081 0 ff ff ff ff 61 5c 0c 00 00 00 00 00 ....a\...... +385 0x00001e4d control 12 26 827326 0 26 827326 0 1a 00 00 00 be 9f 0c 00 00 00 00 00 ............ +386 0x00001e59 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -946143232 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +387 0x00001e73 control 12 -1 810082 0 -1 810082 0 ff ff ff ff 62 5c 0c 00 00 00 00 00 ....b\...... +388 0x00001e7f control 12 26 827327 0 26 827327 0 1a 00 00 00 bf 9f 0c 00 00 00 00 00 ............ +389 0x00001e8b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -946012160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9d c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +390 0x00001ea5 control 12 -1 810083 0 -1 810083 0 ff ff ff ff 63 5c 0c 00 00 00 00 00 ....c\...... +391 0x00001eb1 control 12 -2 93915 93889 -2 93915 93889 fe ff ff ff db 6e 01 00 c1 6e 01 00 .....n...n.. +392 0x00001ebd control 12 101 827328 0 101 827328 0 65 00 00 00 c0 9f 0c 00 00 00 00 00 e........... +393 0x00001ec9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503264768 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9a 59 02 00 00 00 00 00 3d 6f 79 c3 9d 01 00 00 .....!...o3........Y......=oy..... +394 0x00001eeb data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9a 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 54 13 a4 b1 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +395 0x00001f2e control 12 -1 810084 0 -1 810084 0 ff ff ff ff 64 5c 0c 00 00 00 00 00 ....d\...... +396 0x00001f3a control 12 30 827329 0 30 827329 0 1e 00 00 00 c1 9f 0c 00 00 00 00 00 ............ +397 0x00001f46 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -945881088 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9f c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +398 0x00001f64 control 12 -1 810085 0 -1 810085 0 ff ff ff ff 65 5c 0c 00 00 00 00 00 ....e\...... +399 0x00001f70 control 12 26 827330 0 26 827330 0 1a 00 00 00 c2 9f 0c 00 00 00 00 00 ............ +400 0x00001f7c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -945750016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +401 0x00001f96 control 12 -1 810086 0 -1 810086 0 ff ff ff ff 66 5c 0c 00 00 00 00 00 ....f\...... +402 0x00001fa2 control 12 26 827331 0 26 827331 0 1a 00 00 00 c3 9f 0c 00 00 00 00 00 ............ +403 0x00001fae data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -945618944 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a3 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +404 0x00001fc8 control 12 -1 810087 0 -1 810087 0 ff ff ff ff 67 5c 0c 00 00 00 00 00 ....g\...... +405 0x00001fd4 control 12 26 827332 0 26 827332 0 1a 00 00 00 c4 9f 0c 00 00 00 00 00 ............ +406 0x00001fe0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -945487872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +407 0x00001ffa control 12 -1 810088 0 -1 810088 0 ff ff ff ff 68 5c 0c 00 00 00 00 00 ....h\...... +408 0x00002006 control 12 101 827333 0 101 827333 0 65 00 00 00 c5 9f 0c 00 00 00 00 00 e........... +409 0x00002012 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503330304 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9b 59 02 00 00 00 00 00 70 70 79 c3 9d 01 00 00 .....!...o3........Y......ppy..... +410 0x00002034 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9b 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 f6 f1 c3 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +411 0x00002077 control 12 -1 810089 0 -1 810089 0 ff ff ff ff 69 5c 0c 00 00 00 00 00 ....i\...... +412 0x00002083 control 12 30 827334 0 30 827334 0 1e 00 00 00 c6 9f 0c 00 00 00 00 00 ............ +413 0x0000208f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -945356800 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a7 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +414 0x000020ad control 12 -1 810090 0 -1 810090 0 ff ff ff ff 6a 5c 0c 00 00 00 00 00 ....j\...... +415 0x000020b9 control 12 26 827335 0 26 827335 0 1a 00 00 00 c7 9f 0c 00 00 00 00 00 ............ +416 0x000020c5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -945225728 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +417 0x000020df control 12 -1 810091 0 -1 810091 0 ff ff ff ff 6b 5c 0c 00 00 00 00 00 ....k\...... +418 0x000020eb control 12 26 827336 0 26 827336 0 1a 00 00 00 c8 9f 0c 00 00 00 00 00 ............ +419 0x000020f7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -945094656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ab c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +420 0x00002111 control 12 -1 810092 0 -1 810092 0 ff ff ff ff 6c 5c 0c 00 00 00 00 00 ....l\...... +421 0x0000211d control 12 -2 93916 93890 -2 93916 93890 fe ff ff ff dc 6e 01 00 c2 6e 01 00 .....n...n.. +422 0x00002129 control 12 26 827337 0 26 827337 0 1a 00 00 00 c9 9f 0c 00 00 00 00 00 ............ +423 0x00002135 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -944963584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +424 0x0000214f control 12 -1 810093 0 -1 810093 0 ff ff ff ff 6d 5c 0c 00 00 00 00 00 ....m\...... +425 0x0000215b control 12 101 827338 0 101 827338 0 65 00 00 00 ca 9f 0c 00 00 00 00 00 e........... +426 0x00002167 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503395840 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9c 59 02 00 00 00 00 00 a3 71 79 c3 9d 01 00 00 .....!...o3........Y.......qy..... +427 0x00002189 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9c 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f a0 fc 3a d6 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +428 0x000021cc control 12 -1 810094 0 -1 810094 0 ff ff ff ff 6e 5c 0c 00 00 00 00 00 ....n\...... +429 0x000021d8 control 12 30 827339 0 30 827339 0 1e 00 00 00 cb 9f 0c 00 00 00 00 00 ............ +430 0x000021e4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -944832512 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 af c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +431 0x00002202 control 12 -1 810095 0 -1 810095 0 ff ff ff ff 6f 5c 0c 00 00 00 00 00 ....o\...... +432 0x0000220e control 12 26 827340 0 26 827340 0 1a 00 00 00 cc 9f 0c 00 00 00 00 00 ............ +433 0x0000221a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -944701440 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +434 0x00002234 control 12 -1 810096 0 -1 810096 0 ff ff ff ff 70 5c 0c 00 00 00 00 00 ....p\...... +435 0x00002240 control 12 26 827341 0 26 827341 0 1a 00 00 00 cd 9f 0c 00 00 00 00 00 ............ +436 0x0000224c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -944570368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b3 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +437 0x00002266 control 12 -1 810097 0 -1 810097 0 ff ff ff ff 71 5c 0c 00 00 00 00 00 ....q\...... +438 0x00002272 control 12 26 827342 0 26 827342 0 1a 00 00 00 ce 9f 0c 00 00 00 00 00 ............ +439 0x0000227e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -944439296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +440 0x00002298 control 12 -1 810098 0 -1 810098 0 ff ff ff ff 72 5c 0c 00 00 00 00 00 ....r\...... +441 0x000022a4 control 12 101 827343 0 101 827343 0 65 00 00 00 cf 9f 0c 00 00 00 00 00 e........... +442 0x000022b0 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503461376 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9d 59 02 00 00 00 00 00 d4 72 79 c3 9d 01 00 00 .....!...o3........Y.......ry..... +443 0x000022d2 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9d 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 e7 6c e8 f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +444 0x00002315 control 12 -1 810099 0 -1 810099 0 ff ff ff ff 73 5c 0c 00 00 00 00 00 ....s\...... +445 0x00002321 control 12 30 827344 0 30 827344 0 1e 00 00 00 d0 9f 0c 00 00 00 00 00 ............ +446 0x0000232d data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -944308224 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b7 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +447 0x0000234b control 12 -1 810100 0 -1 810100 0 ff ff ff ff 74 5c 0c 00 00 00 00 00 ....t\...... +448 0x00002357 control 12 -2 93917 93891 -2 93917 93891 fe ff ff ff dd 6e 01 00 c3 6e 01 00 .....n...n.. +449 0x00002363 control 12 26 827345 0 26 827345 0 1a 00 00 00 d1 9f 0c 00 00 00 00 00 ............ +450 0x0000236f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -944177152 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +451 0x00002389 control 12 -1 810101 0 -1 810101 0 ff ff ff ff 75 5c 0c 00 00 00 00 00 ....u\...... +452 0x00002395 control 12 26 827346 0 26 827346 0 1a 00 00 00 d2 9f 0c 00 00 00 00 00 ............ +453 0x000023a1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -944046080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bb c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +454 0x000023bb control 12 -1 810102 0 -1 810102 0 ff ff ff ff 76 5c 0c 00 00 00 00 00 ....v\...... +455 0x000023c7 control 12 26 827347 0 26 827347 0 1a 00 00 00 d3 9f 0c 00 00 00 00 00 ............ +456 0x000023d3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -943915008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +457 0x000023ed control 12 -1 810103 0 -1 810103 0 ff ff ff ff 77 5c 0c 00 00 00 00 00 ....w\...... +458 0x000023f9 control 12 101 827348 0 101 827348 0 65 00 00 00 d4 9f 0c 00 00 00 00 00 e........... +459 0x00002405 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503526912 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9e 59 02 00 00 00 00 00 04 74 79 c3 9d 01 00 00 .....!...o3........Y.......ty..... +460 0x00002427 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9e 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f c8 3c 9f fa f3 87 a9 18 ?.....3...|8............Y......=B.....&......... +461 0x0000246a control 12 -1 810104 0 -1 810104 0 ff ff ff ff 78 5c 0c 00 00 00 00 00 ....x\...... +462 0x00002476 control 12 30 827349 0 30 827349 0 1e 00 00 00 d5 9f 0c 00 00 00 00 00 ............ +463 0x00002482 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -943783936 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bf c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +464 0x000024a0 control 12 -1 810105 0 -1 810105 0 ff ff ff ff 79 5c 0c 00 00 00 00 00 ....y\...... +465 0x000024ac control 12 26 827350 0 26 827350 0 1a 00 00 00 d6 9f 0c 00 00 00 00 00 ............ +466 0x000024b8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -943652864 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +467 0x000024d2 control 12 -1 810106 0 -1 810106 0 ff ff ff ff 7a 5c 0c 00 00 00 00 00 ....z\...... +468 0x000024de control 12 26 827351 0 26 827351 0 1a 00 00 00 d7 9f 0c 00 00 00 00 00 ............ +469 0x000024ea data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -943521792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c3 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +470 0x00002504 control 12 -1 810107 0 -1 810107 0 ff ff ff ff 7b 5c 0c 00 00 00 00 00 ....{\...... +471 0x00002510 control 12 -2 93918 93892 -2 93918 93892 fe ff ff ff de 6e 01 00 c4 6e 01 00 .....n...n.. +472 0x0000251c control 12 26 827352 0 26 827352 0 1a 00 00 00 d8 9f 0c 00 00 00 00 00 ............ +473 0x00002528 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -943390720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +474 0x00002542 control 12 -1 810108 0 -1 810108 0 ff ff ff ff 7c 5c 0c 00 00 00 00 00 ....|\...... +475 0x0000254e control 12 101 827353 0 101 827353 0 65 00 00 00 d9 9f 0c 00 00 00 00 00 e........... +476 0x0000255a data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503592448 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 9f 59 02 00 00 00 00 00 35 75 79 c3 9d 01 00 00 .....!...o3........Y......5uy..... +477 0x0000257c data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 9f 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 70 c7 be 0c f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +478 0x000025bf control 12 -1 810109 0 -1 810109 0 ff ff ff ff 7d 5c 0c 00 00 00 00 00 ....}\...... +479 0x000025cb control 12 30 827354 0 30 827354 0 1e 00 00 00 da 9f 0c 00 00 00 00 00 ............ +480 0x000025d7 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -943259648 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c7 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +481 0x000025f5 control 12 -1 810110 0 -1 810110 0 ff ff ff ff 7e 5c 0c 00 00 00 00 00 ....~\...... +482 0x00002601 control 12 26 827355 0 26 827355 0 1a 00 00 00 db 9f 0c 00 00 00 00 00 ............ +483 0x0000260d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -943128576 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +484 0x00002627 control 12 -1 810111 0 -1 810111 0 ff ff ff ff 7f 5c 0c 00 00 00 00 00 .....\...... +485 0x00002633 control 12 26 827356 0 26 827356 0 1a 00 00 00 dc 9f 0c 00 00 00 00 00 ............ +486 0x0000263f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -942997504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cb c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +487 0x00002659 control 12 -1 810112 0 -1 810112 0 ff ff ff ff 80 5c 0c 00 00 00 00 00 .....\...... +488 0x00002665 control 12 26 827357 0 26 827357 0 1a 00 00 00 dd 9f 0c 00 00 00 00 00 ............ +489 0x00002671 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -942866432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +490 0x0000268b control 12 -1 810113 0 -1 810113 0 ff ff ff ff 81 5c 0c 00 00 00 00 00 .....\...... +491 0x00002697 control 12 34 827358 0 34 827358 0 22 00 00 00 de 9f 0c 00 00 00 00 00 """..........." +492 0x000026a3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503657984 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a0 59 02 00 00 00 00 00 66 76 79 c3 9d 01 00 00 .....!...o3........Y......fvy..... +493 0x000026c5 control 12 67 827359 0 67 827359 0 43 00 00 00 df 9f 0c 00 00 00 00 00 C........... +494 0x000026d1 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a0 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 5c 0d e9 1e f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +495 0x00002714 control 12 -1 810114 0 -1 810114 0 ff ff ff ff 82 5c 0c 00 00 00 00 00 .....\...... +496 0x00002720 control 12 30 827360 0 30 827360 0 1e 00 00 00 e0 9f 0c 00 00 00 00 00 ............ +497 0x0000272c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -942735360 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cf c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +498 0x0000274a control 12 -1 810115 0 -1 810115 0 ff ff ff ff 83 5c 0c 00 00 00 00 00 .....\...... +499 0x00002756 control 12 26 827361 0 26 827361 0 1a 00 00 00 e1 9f 0c 00 00 00 00 00 ............ +500 0x00002762 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -942604288 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +501 0x0000277c control 12 -1 810116 0 -1 810116 0 ff ff ff ff 84 5c 0c 00 00 00 00 00 .....\...... +502 0x00002788 control 12 -2 93919 93893 -2 93919 93893 fe ff ff ff df 6e 01 00 c5 6e 01 00 .....n...n.. +503 0x00002794 control 12 26 827362 0 26 827362 0 1a 00 00 00 e2 9f 0c 00 00 00 00 00 ............ +504 0x000027a0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -942473216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d3 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +505 0x000027ba control 12 -1 810117 0 -1 810117 0 ff ff ff ff 85 5c 0c 00 00 00 00 00 .....\...... +506 0x000027c6 control 12 26 827363 0 26 827363 0 1a 00 00 00 e3 9f 0c 00 00 00 00 00 ............ +507 0x000027d2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -942342144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +508 0x000027ec control 12 -1 810118 0 -1 810118 0 ff ff ff ff 86 5c 0c 00 00 00 00 00 .....\...... +509 0x000027f8 control 12 101 827364 0 101 827364 0 65 00 00 00 e4 9f 0c 00 00 00 00 00 e........... +510 0x00002804 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503723520 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a1 59 02 00 00 00 00 00 96 77 79 c3 9d 01 00 00 .....!...o3........Y.......wy..... +511 0x00002826 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a1 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 80 b8 02 31 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +512 0x00002869 control 12 -1 810119 0 -1 810119 0 ff ff ff ff 87 5c 0c 00 00 00 00 00 .....\...... +513 0x00002875 control 12 30 827365 0 30 827365 0 1e 00 00 00 e5 9f 0c 00 00 00 00 00 ............ +514 0x00002881 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -942211072 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d7 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +515 0x0000289f control 12 -1 810120 0 -1 810120 0 ff ff ff ff 88 5c 0c 00 00 00 00 00 .....\...... +516 0x000028ab control 12 26 827366 0 26 827366 0 1a 00 00 00 e6 9f 0c 00 00 00 00 00 ............ +517 0x000028b7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -942080000 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +518 0x000028d1 control 12 -1 810121 0 -1 810121 0 ff ff ff ff 89 5c 0c 00 00 00 00 00 .....\...... +519 0x000028dd control 12 26 827367 0 26 827367 0 1a 00 00 00 e7 9f 0c 00 00 00 00 00 ............ +520 0x000028e9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -941948928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 db c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +521 0x00002903 control 12 -1 810122 0 -1 810122 0 ff ff ff ff 8a 5c 0c 00 00 00 00 00 .....\...... +522 0x0000290f control 12 26 827368 0 26 827368 0 1a 00 00 00 e8 9f 0c 00 00 00 00 00 ............ +523 0x0000291b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -941817856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +524 0x00002935 control 12 -1 810123 0 -1 810123 0 ff ff ff ff 8b 5c 0c 00 00 00 00 00 .....\...... +525 0x00002941 control 12 101 827369 0 101 827369 0 65 00 00 00 e9 9f 0c 00 00 00 00 00 e........... +526 0x0000294d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503789056 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a2 59 02 00 00 00 00 00 c8 78 79 c3 9d 01 00 00 .....!...o3........Y.......xy..... +527 0x0000296f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a2 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 80 91 3f 43 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +528 0x000029b2 control 12 -1 810124 0 -1 810124 0 ff ff ff ff 8c 5c 0c 00 00 00 00 00 .....\...... +529 0x000029be control 12 30 827370 0 30 827370 0 1e 00 00 00 ea 9f 0c 00 00 00 00 00 ............ +530 0x000029ca data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -941686784 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 df c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +531 0x000029e8 control 12 -1 810125 0 -1 810125 0 ff ff ff ff 8d 5c 0c 00 00 00 00 00 .....\...... +532 0x000029f4 control 12 -2 93920 93894 -2 93920 93894 fe ff ff ff e0 6e 01 00 c6 6e 01 00 .....n...n.. +533 0x00002a00 control 12 26 827371 0 26 827371 0 1a 00 00 00 eb 9f 0c 00 00 00 00 00 ............ +534 0x00002a0c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -941555712 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +535 0x00002a26 control 12 -1 810126 0 -1 810126 0 ff ff ff ff 8e 5c 0c 00 00 00 00 00 .....\...... +536 0x00002a32 control 12 26 827372 0 26 827372 0 1a 00 00 00 ec 9f 0c 00 00 00 00 00 ............ +537 0x00002a3e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -941424640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e3 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +538 0x00002a58 control 12 -1 810127 0 -1 810127 0 ff ff ff ff 8f 5c 0c 00 00 00 00 00 .....\...... +539 0x00002a64 control 12 26 827373 0 26 827373 0 1a 00 00 00 ed 9f 0c 00 00 00 00 00 ............ +540 0x00002a70 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -941293568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +541 0x00002a8a control 12 -1 810128 0 -1 810128 0 ff ff ff ff 90 5c 0c 00 00 00 00 00 .....\...... +542 0x00002a96 control 12 101 827374 0 101 827374 0 65 00 00 00 ee 9f 0c 00 00 00 00 00 e........... +543 0x00002aa2 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503854592 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a3 59 02 00 00 00 00 00 f8 79 79 c3 9d 01 00 00 .....!...o3........Y.......yy..... +544 0x00002ac4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a3 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 88 8a 63 55 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +545 0x00002b07 control 12 -1 810129 0 -1 810129 0 ff ff ff ff 91 5c 0c 00 00 00 00 00 .....\...... +546 0x00002b13 control 12 30 827375 0 30 827375 0 1e 00 00 00 ef 9f 0c 00 00 00 00 00 ............ +547 0x00002b1f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -941162496 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e7 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +548 0x00002b3d control 12 -1 810130 0 -1 810130 0 ff ff ff ff 92 5c 0c 00 00 00 00 00 .....\...... +549 0x00002b49 control 12 26 827376 0 26 827376 0 1a 00 00 00 f0 9f 0c 00 00 00 00 00 ............ +550 0x00002b55 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -941031424 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +551 0x00002b6f control 12 -1 810131 0 -1 810131 0 ff ff ff ff 93 5c 0c 00 00 00 00 00 .....\...... +552 0x00002b7b control 12 26 827377 0 26 827377 0 1a 00 00 00 f1 9f 0c 00 00 00 00 00 ............ +553 0x00002b87 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -940900352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 eb c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +554 0x00002ba1 control 12 -1 810132 0 -1 810132 0 ff ff ff ff 94 5c 0c 00 00 00 00 00 .....\...... +555 0x00002bad control 12 -2 93921 93895 -2 93921 93895 fe ff ff ff e1 6e 01 00 c7 6e 01 00 .....n...n.. +556 0x00002bb9 control 12 26 827378 0 26 827378 0 1a 00 00 00 f2 9f 0c 00 00 00 00 00 ............ +557 0x00002bc5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -940769280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +558 0x00002bdf control 12 101 827379 0 101 827379 0 65 00 00 00 f3 9f 0c 00 00 00 00 00 e........... +559 0x00002beb data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503920128 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a4 59 02 00 00 00 00 00 28 7b 79 c3 9d 01 00 00 .....!...o3........Y......({y..... +560 0x00002c0d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a4 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c dc 82 67 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +561 0x00002c50 control 12 -1 810133 0 -1 810133 0 ff ff ff ff 95 5c 0c 00 00 00 00 00 .....\...... +562 0x00002c5c control 12 -1 810134 0 -1 810134 0 ff ff ff ff 96 5c 0c 00 00 00 00 00 .....\...... +563 0x00002c68 control 12 30 827380 0 30 827380 0 1e 00 00 00 f4 9f 0c 00 00 00 00 00 ............ +564 0x00002c74 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -940638208 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ef c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +565 0x00002c92 control 12 -1 810135 0 -1 810135 0 ff ff ff ff 97 5c 0c 00 00 00 00 00 .....\...... +566 0x00002c9e control 12 26 827381 0 26 827381 0 1a 00 00 00 f5 9f 0c 00 00 00 00 00 ............ +567 0x00002caa data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -940507136 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +568 0x00002cc4 control 12 -1 810136 0 -1 810136 0 ff ff ff ff 98 5c 0c 00 00 00 00 00 .....\...... +569 0x00002cd0 control 12 26 827382 0 26 827382 0 1a 00 00 00 f6 9f 0c 00 00 00 00 00 ............ +570 0x00002cdc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -940376064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f3 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +571 0x00002cf6 control 12 -1 810137 0 -1 810137 0 ff ff ff ff 99 5c 0c 00 00 00 00 00 .....\...... +572 0x00002d02 control 12 101 827383 0 101 827383 0 65 00 00 00 f7 9f 0c 00 00 00 00 00 e........... +573 0x00002d0e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1503985664 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a5 59 02 00 00 00 00 00 5a 7c 79 c3 9d 01 00 00 .....!...o3........Y......Z|y..... +574 0x00002d30 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a5 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 06 c5 79 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +575 0x00002d73 control 12 -1 810138 0 -1 810138 0 ff ff ff ff 9a 5c 0c 00 00 00 00 00 .....\...... +576 0x00002d7f control 12 26 827384 0 26 827384 0 1a 00 00 00 f8 9f 0c 00 00 00 00 00 ............ +577 0x00002d8b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -940244992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +578 0x00002da5 control 12 30 827385 0 30 827385 0 1e 00 00 00 f9 9f 0c 00 00 00 00 00 ............ +579 0x00002db1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -940113920 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f7 c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +580 0x00002dcf control 12 -1 810139 0 -1 810139 0 ff ff ff ff 9b 5c 0c 00 00 00 00 00 .....\...... +581 0x00002ddb control 12 -1 810140 0 -1 810140 0 ff ff ff ff 9c 5c 0c 00 00 00 00 00 .....\...... +582 0x00002de7 control 12 26 827386 0 26 827386 0 1a 00 00 00 fa 9f 0c 00 00 00 00 00 ............ +583 0x00002df3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -939982848 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +584 0x00002e0d control 12 -1 810141 0 -1 810141 0 ff ff ff ff 9d 5c 0c 00 00 00 00 00 .....\...... +585 0x00002e19 control 12 -2 93922 93896 -2 93922 93896 fe ff ff ff e2 6e 01 00 c8 6e 01 00 .....n...n.. +586 0x00002e25 control 12 26 827387 0 26 827387 0 1a 00 00 00 fb 9f 0c 00 00 00 00 00 ............ +587 0x00002e31 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -939851776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fb c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +588 0x00002e4b control 12 -1 810142 0 -1 810142 0 ff ff ff ff 9e 5c 0c 00 00 00 00 00 .....\...... +589 0x00002e57 control 12 34 827388 0 34 827388 0 22 00 00 00 fc 9f 0c 00 00 00 00 00 """..........." +590 0x00002e63 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504051200 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a6 59 02 00 00 00 00 00 8a 7d 79 c3 9d 01 00 00 .....!...o3........Y.......}y..... +591 0x00002e85 control 12 67 827389 0 67 827389 0 43 00 00 00 fd 9f 0c 00 00 00 00 00 C........... +592 0x00002e91 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a6 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e4 f1 f0 8b f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +593 0x00002ed4 control 12 -1 810143 0 -1 810143 0 ff ff ff ff 9f 5c 0c 00 00 00 00 00 .....\...... +594 0x00002ee0 control 12 30 827390 0 30 827390 0 1e 00 00 00 fe 9f 0c 00 00 00 00 00 ............ +595 0x00002eec data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -939720704 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fd c7 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +596 0x00002f0a control 12 -1 810144 0 -1 810144 0 ff ff ff ff a0 5c 0c 00 00 00 00 00 .....\...... +597 0x00002f16 control 12 26 827391 0 26 827391 0 1a 00 00 00 ff 9f 0c 00 00 00 00 00 ............ +598 0x00002f22 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -939589632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff c7 21 00 00 00 00 00 ....T.c@.^1@........!..... +599 0x00002f3c control 12 -1 810145 0 -1 810145 0 ff ff ff ff a1 5c 0c 00 00 00 00 00 .....\...... +600 0x00002f48 control 12 26 827392 0 26 827392 0 1a 00 00 00 00 a0 0c 00 00 00 00 00 ............ +601 0x00002f54 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -939458560 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +602 0x00002f6e control 12 -1 810146 0 -1 810146 0 ff ff ff ff a2 5c 0c 00 00 00 00 00 .....\...... +603 0x00002f7a control 12 26 827393 0 26 827393 0 1a 00 00 00 01 a0 0c 00 00 00 00 00 ............ +604 0x00002f86 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -939327488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 03 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +605 0x00002fa0 control 12 -1 810147 0 -1 810147 0 ff ff ff ff a3 5c 0c 00 00 00 00 00 .....\...... +606 0x00002fac control 12 101 827394 0 101 827394 0 65 00 00 00 02 a0 0c 00 00 00 00 00 e........... +607 0x00002fb8 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504116736 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a7 59 02 00 00 00 00 00 bc 7e 79 c3 9d 01 00 00 .....!...o3........Y.......~y..... +608 0x00002fda data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a7 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 1c e9 13 9e f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +609 0x0000301d control 12 -1 810148 0 -1 810148 0 ff ff ff ff a4 5c 0c 00 00 00 00 00 .....\...... +610 0x00003029 control 12 -2 93923 93897 -2 93923 93897 fe ff ff ff e3 6e 01 00 c9 6e 01 00 .....n...n.. +611 0x00003035 control 12 30 827395 0 30 827395 0 1e 00 00 00 03 a0 0c 00 00 00 00 00 ............ +612 0x00003041 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -939196416 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 05 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +613 0x0000305f control 12 -1 810149 0 -1 810149 0 ff ff ff ff a5 5c 0c 00 00 00 00 00 .....\...... +614 0x0000306b control 12 26 827396 0 26 827396 0 1a 00 00 00 04 a0 0c 00 00 00 00 00 ............ +615 0x00003077 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -939065344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +616 0x00003091 control 12 -1 810150 0 -1 810150 0 ff ff ff ff a6 5c 0c 00 00 00 00 00 .....\...... +617 0x0000309d control 12 26 827397 0 26 827397 0 1a 00 00 00 05 a0 0c 00 00 00 00 00 ............ +618 0x000030a9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -938934272 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +619 0x000030c3 control 12 -1 810151 0 -1 810151 0 ff ff ff ff a7 5c 0c 00 00 00 00 00 .....\...... +620 0x000030cf control 12 26 827398 0 26 827398 0 1a 00 00 00 06 a0 0c 00 00 00 00 00 ............ +621 0x000030db data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -938803200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0b c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +622 0x000030f5 control 12 -1 810152 0 -1 810152 0 ff ff ff ff a8 5c 0c 00 00 00 00 00 .....\...... +623 0x00003101 control 12 101 827399 0 101 827399 0 65 00 00 00 07 a0 0c 00 00 00 00 00 e........... +624 0x0000310d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504182272 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a8 59 02 00 00 00 00 00 ed 7f 79 c3 9d 01 00 00 .....!...o3........Y........y..... +625 0x0000312f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a8 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 c8 54 b0 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +626 0x00003172 control 12 -1 810153 0 -1 810153 0 ff ff ff ff a9 5c 0c 00 00 00 00 00 .....\...... +627 0x0000317e control 12 30 827400 0 30 827400 0 1e 00 00 00 08 a0 0c 00 00 00 00 00 ............ +628 0x0000318a data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -938672128 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +629 0x000031a8 control 12 -1 810154 0 -1 810154 0 ff ff ff ff aa 5c 0c 00 00 00 00 00 .....\...... +630 0x000031b4 control 12 26 827401 0 26 827401 0 1a 00 00 00 09 a0 0c 00 00 00 00 00 ............ +631 0x000031c0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -938541056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +632 0x000031da control 12 -1 810155 0 -1 810155 0 ff ff ff ff ab 5c 0c 00 00 00 00 00 .....\...... +633 0x000031e6 control 12 26 827402 0 26 827402 0 1a 00 00 00 0a a0 0c 00 00 00 00 00 ............ +634 0x000031f2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -938409984 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +635 0x0000320c control 12 -1 810156 0 -1 810156 0 ff ff ff ff ac 5c 0c 00 00 00 00 00 .....\...... +636 0x00003218 control 12 -2 93924 93898 -2 93924 93898 fe ff ff ff e4 6e 01 00 ca 6e 01 00 .....n...n.. +637 0x00003224 control 12 26 827403 0 26 827403 0 1a 00 00 00 0b a0 0c 00 00 00 00 00 ............ +638 0x00003230 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -938278912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 13 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +639 0x0000324a control 12 -1 810157 0 -1 810157 0 ff ff ff ff ad 5c 0c 00 00 00 00 00 .....\...... +640 0x00003256 control 12 101 827404 0 101 827404 0 65 00 00 00 0c a0 0c 00 00 00 00 00 e........... +641 0x00003262 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504247808 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 a9 59 02 00 00 00 00 00 1e 81 79 c3 9d 01 00 00 .....!...o3........Y........y..... +642 0x00003284 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 a9 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 9e 6f c2 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +643 0x000032c7 control 12 -1 810158 0 -1 810158 0 ff ff ff ff ae 5c 0c 00 00 00 00 00 .....\...... +644 0x000032d3 control 12 30 827405 0 30 827405 0 1e 00 00 00 0d a0 0c 00 00 00 00 00 ............ +645 0x000032df data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -938147840 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 15 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +646 0x000032fd control 12 -1 810159 0 -1 810159 0 ff ff ff ff af 5c 0c 00 00 00 00 00 .....\...... +647 0x00003309 control 12 26 827406 0 26 827406 0 1a 00 00 00 0e a0 0c 00 00 00 00 00 ............ +648 0x00003315 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -938016768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +649 0x0000332f control 12 -1 810160 0 -1 810160 0 ff ff ff ff b0 5c 0c 00 00 00 00 00 .....\...... +650 0x0000333b control 12 26 827407 0 26 827407 0 1a 00 00 00 0f a0 0c 00 00 00 00 00 ............ +651 0x00003347 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -937885696 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +652 0x00003361 control 12 -1 810161 0 -1 810161 0 ff ff ff ff b1 5c 0c 00 00 00 00 00 .....\...... +653 0x0000336d control 12 26 827408 0 26 827408 0 1a 00 00 00 10 a0 0c 00 00 00 00 00 ............ +654 0x00003379 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -937754624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1b c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +655 0x00003393 control 12 -1 810162 0 -1 810162 0 ff ff ff ff b2 5c 0c 00 00 00 00 00 .....\...... +656 0x0000339f control 12 34 827409 0 34 827409 0 22 00 00 00 11 a0 0c 00 00 00 00 00 """..........." +657 0x000033ab data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504313344 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 aa 59 02 00 00 00 00 00 5b 82 79 c3 9d 01 00 00 .....!...o3........Y......[.y..... +658 0x000033cd control 12 67 827410 0 67 827410 0 43 00 00 00 12 a0 0c 00 00 00 00 00 C........... +659 0x000033d9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 aa 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d0 b7 54 d5 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +660 0x0000341c control 12 -1 810163 0 -1 810163 0 ff ff ff ff b3 5c 0c 00 00 00 00 00 .....\...... +661 0x00003428 control 12 30 827411 0 30 827411 0 1e 00 00 00 13 a0 0c 00 00 00 00 00 ............ +662 0x00003434 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -937623552 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 1d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +663 0x00003452 control 12 -1 810164 0 -1 810164 0 ff ff ff ff b4 5c 0c 00 00 00 00 00 .....\...... +664 0x0000345e control 12 26 827412 0 26 827412 0 1a 00 00 00 14 a0 0c 00 00 00 00 00 ............ +665 0x0000346a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -937492480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 1f c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +666 0x00003484 control 12 -1 810165 0 -1 810165 0 ff ff ff ff b5 5c 0c 00 00 00 00 00 .....\...... +667 0x00003490 control 12 -2 93925 93899 -2 93925 93899 fe ff ff ff e5 6e 01 00 cb 6e 01 00 .....n...n.. +668 0x0000349c control 12 26 827413 0 26 827413 0 1a 00 00 00 15 a0 0c 00 00 00 00 00 ............ +669 0x000034a8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -937361408 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 21 c8 21 00 00 00 00 00 ....T.c@.^1@......!.!..... +670 0x000034c2 control 12 -1 810166 0 -1 810166 0 ff ff ff ff b6 5c 0c 00 00 00 00 00 .....\...... +671 0x000034ce control 12 26 827414 0 26 827414 0 1a 00 00 00 16 a0 0c 00 00 00 00 00 ............ +672 0x000034da data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -937230336 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 23 c8 21 00 00 00 00 00 ....T.c@.^1@......#.!..... +673 0x000034f4 control 12 -1 810167 0 -1 810167 0 ff ff ff ff b7 5c 0c 00 00 00 00 00 .....\...... +674 0x00003500 control 12 101 827415 0 101 827415 0 65 00 00 00 17 a0 0c 00 00 00 00 00 e........... +675 0x0000350c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504378880 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ab 59 02 00 00 00 00 00 8c 83 79 c3 9d 01 00 00 .....!...o3........Y........y..... +676 0x0000352e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ab 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b0 95 7f e7 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +677 0x00003571 control 12 -1 810168 0 -1 810168 0 ff ff ff ff b8 5c 0c 00 00 00 00 00 .....\...... +678 0x0000357d control 12 30 827416 0 30 827416 0 1e 00 00 00 18 a0 0c 00 00 00 00 00 ............ +679 0x00003589 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -937099264 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 25 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......%.!......... +680 0x000035a7 control 12 -1 810169 0 -1 810169 0 ff ff ff ff b9 5c 0c 00 00 00 00 00 .....\...... +681 0x000035b3 control 12 26 827417 0 26 827417 0 1a 00 00 00 19 a0 0c 00 00 00 00 00 ............ +682 0x000035bf data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -936968192 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 27 c8 21 00 00 00 00 00 ....T.c@.^1@......'.!..... +683 0x000035d9 control 12 -1 810170 0 -1 810170 0 ff ff ff ff ba 5c 0c 00 00 00 00 00 .....\...... +684 0x000035e5 control 12 26 827418 0 26 827418 0 1a 00 00 00 1a a0 0c 00 00 00 00 00 ............ +685 0x000035f1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -936837120 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 29 c8 21 00 00 00 00 00 ....T.c@.^1@......).!..... +686 0x0000360b control 12 -1 810171 0 -1 810171 0 ff ff ff ff bb 5c 0c 00 00 00 00 00 .....\...... +687 0x00003617 control 12 26 827419 0 26 827419 0 1a 00 00 00 1b a0 0c 00 00 00 00 00 ............ +688 0x00003623 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -936706048 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2b c8 21 00 00 00 00 00 ....T.c@.^1@......+.!..... +689 0x0000363d control 12 -1 810172 0 -1 810172 0 ff ff ff ff bc 5c 0c 00 00 00 00 00 .....\...... +690 0x00003649 control 12 -2 93926 93900 -2 93926 93900 fe ff ff ff e6 6e 01 00 cc 6e 01 00 .....n...n.. +691 0x00003655 control 12 34 827420 0 34 827420 0 22 00 00 00 1c a0 0c 00 00 00 00 00 """..........." +692 0x00003661 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504444416 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ac 59 02 00 00 00 00 00 bb 84 79 c3 9d 01 00 00 .....!...o3........Y........y..... +693 0x00003683 control 12 67 827421 0 67 827421 0 43 00 00 00 1d a0 0c 00 00 00 00 00 C........... +694 0x0000368f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ac 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 2a aa f9 f4 87 a9 18 ?.....3...|8............Y......=B.....&......... +695 0x000036d2 control 12 -1 810173 0 -1 810173 0 ff ff ff ff bd 5c 0c 00 00 00 00 00 .....\...... +696 0x000036de control 12 30 827422 0 30 827422 0 1e 00 00 00 1e a0 0c 00 00 00 00 00 ............ +697 0x000036ea data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -936574976 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 2d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......-.!......... +698 0x00003708 control 12 -1 810174 0 -1 810174 0 ff ff ff ff be 5c 0c 00 00 00 00 00 .....\...... +699 0x00003714 control 12 26 827423 0 26 827423 0 1a 00 00 00 1f a0 0c 00 00 00 00 00 ............ +700 0x00003720 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -936443904 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 2f c8 21 00 00 00 00 00 ....T.c@.^1@....../.!..... +701 0x0000373a control 12 -1 810175 0 -1 810175 0 ff ff ff ff bf 5c 0c 00 00 00 00 00 .....\...... +702 0x00003746 control 12 26 827424 0 26 827424 0 1a 00 00 00 20 a0 0c 00 00 00 00 00 .... ....... +703 0x00003752 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -936312832 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 31 c8 21 00 00 00 00 00 ....T.c@.^1@......1.!..... +704 0x0000376c control 12 -1 810176 0 -1 810176 0 ff ff ff ff c0 5c 0c 00 00 00 00 00 .....\...... +705 0x00003778 control 12 26 827425 0 26 827425 0 1a 00 00 00 21 a0 0c 00 00 00 00 00 ....!....... +706 0x00003784 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -936181760 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 33 c8 21 00 00 00 00 00 ....T.c@.^1@......3.!..... +707 0x0000379e control 12 -1 810177 0 -1 810177 0 ff ff ff ff c1 5c 0c 00 00 00 00 00 .....\...... +708 0x000037aa control 12 101 827426 0 101 827426 0 65 00 00 00 22 a0 0c 00 00 00 00 00 "e...""......." +709 0x000037b6 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504509952 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ad 59 02 00 00 00 00 00 ed 85 79 c3 9d 01 00 00 .....!...o3........Y........y..... +710 0x000037d8 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ad 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec 61 da 0b f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +711 0x0000381b control 12 -1 810178 0 -1 810178 0 ff ff ff ff c2 5c 0c 00 00 00 00 00 .....\...... +712 0x00003827 control 12 30 827427 0 30 827427 0 1e 00 00 00 23 a0 0c 00 00 00 00 00 ....#....... +713 0x00003833 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -936050688 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 35 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......5.!......... +714 0x00003851 control 12 -1 810179 0 -1 810179 0 ff ff ff ff c3 5c 0c 00 00 00 00 00 .....\...... +715 0x0000385d control 12 26 827428 0 26 827428 0 1a 00 00 00 24 a0 0c 00 00 00 00 00 ....$....... +716 0x00003869 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -935919616 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 37 c8 21 00 00 00 00 00 ....T.c@.^1@......7.!..... +717 0x00003883 control 12 -1 810180 0 -1 810180 0 ff ff ff ff c4 5c 0c 00 00 00 00 00 .....\...... +718 0x0000388f control 12 26 827429 0 26 827429 0 1a 00 00 00 25 a0 0c 00 00 00 00 00 ....%....... +719 0x0000389b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -935788544 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 39 c8 21 00 00 00 00 00 ....T.c@.^1@......9.!..... +720 0x000038b5 control 12 -1 810181 0 -1 810181 0 ff ff ff ff c5 5c 0c 00 00 00 00 00 .....\...... +721 0x000038c1 control 12 -2 93927 93901 -2 93927 93901 fe ff ff ff e7 6e 01 00 cd 6e 01 00 .....n...n.. +722 0x000038cd control 12 26 827430 0 26 827430 0 1a 00 00 00 26 a0 0c 00 00 00 00 00 ....&....... +723 0x000038d9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -935657472 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3b c8 21 00 00 00 00 00 ....T.c@.^1@......;.!..... +724 0x000038f3 control 12 -1 810182 0 -1 810182 0 ff ff ff ff c6 5c 0c 00 00 00 00 00 .....\...... +725 0x000038ff control 12 101 827431 0 101 827431 0 65 00 00 00 27 a0 0c 00 00 00 00 00 e...'....... +726 0x0000390b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504575488 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ae 59 02 00 00 00 00 00 1f 87 79 c3 9d 01 00 00 .....!...o3........Y........y..... +727 0x0000392d data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ae 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b0 50 15 1e f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +728 0x00003970 control 12 -1 810183 0 -1 810183 0 ff ff ff ff c7 5c 0c 00 00 00 00 00 .....\...... +729 0x0000397c control 12 30 827432 0 30 827432 0 1e 00 00 00 28 a0 0c 00 00 00 00 00 ....(....... +730 0x00003988 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -935526400 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 3d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......=.!......... +731 0x000039a6 control 12 -1 810184 0 -1 810184 0 ff ff ff ff c8 5c 0c 00 00 00 00 00 .....\...... +732 0x000039b2 control 12 26 827433 0 26 827433 0 1a 00 00 00 29 a0 0c 00 00 00 00 00 ....)....... +733 0x000039be data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -935395328 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 3f c8 21 00 00 00 00 00 ....T.c@.^1@......?.!..... +734 0x000039d8 control 12 -1 810185 0 -1 810185 0 ff ff ff ff c9 5c 0c 00 00 00 00 00 .....\...... +735 0x000039e4 control 12 26 827434 0 26 827434 0 1a 00 00 00 2a a0 0c 00 00 00 00 00 ....*....... +736 0x000039f0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -935264256 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 41 c8 21 00 00 00 00 00 ....T.c@.^1@......A.!..... +737 0x00003a0a control 12 -1 810186 0 -1 810186 0 ff ff ff ff ca 5c 0c 00 00 00 00 00 .....\...... +738 0x00003a16 control 12 26 827435 0 26 827435 0 1a 00 00 00 2b a0 0c 00 00 00 00 00 ....+....... +739 0x00003a22 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -935133184 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 43 c8 21 00 00 00 00 00 ....T.c@.^1@......C.!..... +740 0x00003a3c control 12 -1 810187 0 -1 810187 0 ff ff ff ff cb 5c 0c 00 00 00 00 00 .....\...... +741 0x00003a48 control 12 101 827436 0 101 827436 0 65 00 00 00 2c a0 0c 00 00 00 00 00 e...,....... +742 0x00003a54 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504641024 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 af 59 02 00 00 00 00 00 50 88 79 c3 9d 01 00 00 .....!...o3........Y......P.y..... +743 0x00003a76 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 af 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d0 d4 4f 30 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +744 0x00003ab9 control 12 -1 810188 0 -1 810188 0 ff ff ff ff cc 5c 0c 00 00 00 00 00 .....\...... +745 0x00003ac5 control 12 30 827437 0 30 827437 0 1e 00 00 00 2d a0 0c 00 00 00 00 00 ....-....... +746 0x00003ad1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -935002112 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 45 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......E.!......... +747 0x00003aef control 12 -1 810189 0 -1 810189 0 ff ff ff ff cd 5c 0c 00 00 00 00 00 .....\...... +748 0x00003afb control 12 26 827438 0 26 827438 0 1a 00 00 00 2e a0 0c 00 00 00 00 00 ............ +749 0x00003b07 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -934871040 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 47 c8 21 00 00 00 00 00 ....T.c@.^1@......G.!..... +750 0x00003b21 control 12 -1 810190 0 -1 810190 0 ff ff ff ff ce 5c 0c 00 00 00 00 00 .....\...... +751 0x00003b2d control 12 -2 93928 93902 -2 93928 93902 fe ff ff ff e8 6e 01 00 ce 6e 01 00 .....n...n.. +752 0x00003b39 control 12 26 827439 0 26 827439 0 1a 00 00 00 2f a0 0c 00 00 00 00 00 ..../....... +753 0x00003b45 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -934739968 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 49 c8 21 00 00 00 00 00 ....T.c@.^1@......I.!..... +754 0x00003b5f control 12 -1 810191 0 -1 810191 0 ff ff ff ff cf 5c 0c 00 00 00 00 00 .....\...... +755 0x00003b6b control 12 26 827440 0 26 827440 0 1a 00 00 00 30 a0 0c 00 00 00 00 00 ....0....... +756 0x00003b77 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -934608896 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4b c8 21 00 00 00 00 00 ....T.c@.^1@......K.!..... +757 0x00003b91 control 12 -1 810192 0 -1 810192 0 ff ff ff ff d0 5c 0c 00 00 00 00 00 .....\...... +758 0x00003b9d control 12 101 827441 0 101 827441 0 65 00 00 00 31 a0 0c 00 00 00 00 00 e...1....... +759 0x00003ba9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504706560 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b0 59 02 00 00 00 00 00 81 89 79 c3 9d 01 00 00 .....!...o3........Y........y..... +760 0x00003bcb data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b0 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 14 06 69 42 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +761 0x00003c0e control 12 -1 810193 0 -1 810193 0 ff ff ff ff d1 5c 0c 00 00 00 00 00 .....\...... +762 0x00003c1a control 12 30 827442 0 30 827442 0 1e 00 00 00 32 a0 0c 00 00 00 00 00 ....2....... +763 0x00003c26 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -934477824 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 4d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......M.!......... +764 0x00003c44 control 12 -1 810194 0 -1 810194 0 ff ff ff ff d2 5c 0c 00 00 00 00 00 .....\...... +765 0x00003c50 control 12 26 827443 0 26 827443 0 1a 00 00 00 33 a0 0c 00 00 00 00 00 ....3....... +766 0x00003c5c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -934346752 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 4f c8 21 00 00 00 00 00 ....T.c@.^1@......O.!..... +767 0x00003c76 control 12 -1 810195 0 -1 810195 0 ff ff ff ff d3 5c 0c 00 00 00 00 00 .....\...... +768 0x00003c82 control 12 26 827444 0 26 827444 0 1a 00 00 00 34 a0 0c 00 00 00 00 00 ....4....... +769 0x00003c8e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -934215680 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 51 c8 21 00 00 00 00 00 ....T.c@.^1@......Q.!..... +770 0x00003ca8 control 12 -1 810196 0 -1 810196 0 ff ff ff ff d4 5c 0c 00 00 00 00 00 .....\...... +771 0x00003cb4 control 12 26 827445 0 26 827445 0 1a 00 00 00 35 a0 0c 00 00 00 00 00 ....5....... +772 0x00003cc0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -934084608 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 53 c8 21 00 00 00 00 00 ....T.c@.^1@......S.!..... +773 0x00003cda control 12 -2 93929 93903 -2 93929 93903 fe ff ff ff e9 6e 01 00 cf 6e 01 00 .....n...n.. +774 0x00003ce6 control 12 -1 810197 0 -1 810197 0 ff ff ff ff d5 5c 0c 00 00 00 00 00 .....\...... +775 0x00003cf2 control 12 101 827446 0 101 827446 0 65 00 00 00 36 a0 0c 00 00 00 00 00 e...6....... +776 0x00003cfe data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504772096 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b1 59 02 00 00 00 00 00 b2 8a 79 c3 9d 01 00 00 .....!...o3........Y........y..... +777 0x00003d20 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b1 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b0 81 a8 54 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +778 0x00003d63 control 12 -1 810198 0 -1 810198 0 ff ff ff ff d6 5c 0c 00 00 00 00 00 .....\...... +779 0x00003d6f control 12 30 827447 0 30 827447 0 1e 00 00 00 37 a0 0c 00 00 00 00 00 ....7....... +780 0x00003d7b data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -933953536 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 55 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......U.!......... +781 0x00003d99 control 12 -1 810199 0 -1 810199 0 ff ff ff ff d7 5c 0c 00 00 00 00 00 .....\...... +782 0x00003da5 control 12 26 827448 0 26 827448 0 1a 00 00 00 38 a0 0c 00 00 00 00 00 ....8....... +783 0x00003db1 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -933822464 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 57 c8 21 00 00 00 00 00 ....T.c@.^1@......W.!..... +784 0x00003dcb control 12 -1 810200 0 -1 810200 0 ff ff ff ff d8 5c 0c 00 00 00 00 00 .....\...... +785 0x00003dd7 control 12 26 827449 0 26 827449 0 1a 00 00 00 39 a0 0c 00 00 00 00 00 ....9....... +786 0x00003de3 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -933691392 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 59 c8 21 00 00 00 00 00 ....T.c@.^1@......Y.!..... +787 0x00003dfd control 12 -1 810201 0 -1 810201 0 ff ff ff ff d9 5c 0c 00 00 00 00 00 .....\...... +788 0x00003e09 control 12 26 827450 0 26 827450 0 1a 00 00 00 3a a0 0c 00 00 00 00 00 ....:....... +789 0x00003e15 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -933560320 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5b c8 21 00 00 00 00 00 ....T.c@.^1@......[.!..... +790 0x00003e2f control 12 -1 810202 0 -1 810202 0 ff ff ff ff da 5c 0c 00 00 00 00 00 .....\...... +791 0x00003e3b control 12 101 827451 0 101 827451 0 65 00 00 00 3b a0 0c 00 00 00 00 00 e...;....... +792 0x00003e47 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504837632 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b2 59 02 00 00 00 00 00 e3 8b 79 c3 9d 01 00 00 .....!...o3........Y........y..... +793 0x00003e69 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b2 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 04 12 c1 66 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +794 0x00003eac control 12 -1 810203 0 -1 810203 0 ff ff ff ff db 5c 0c 00 00 00 00 00 .....\...... +795 0x00003eb8 control 12 30 827452 0 30 827452 0 1e 00 00 00 3c a0 0c 00 00 00 00 00 ....<....... +796 0x00003ec4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -933429248 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 5d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......].!......... +797 0x00003ee2 control 12 -1 810204 0 -1 810204 0 ff ff ff ff dc 5c 0c 00 00 00 00 00 .....\...... +798 0x00003eee control 12 26 827453 0 26 827453 0 1a 00 00 00 3d a0 0c 00 00 00 00 00 ....=....... +799 0x00003efa data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -933298176 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 5f c8 21 00 00 00 00 00 ....T.c@.^1@......_.!..... +800 0x00003f14 control 12 -1 810205 0 -1 810205 0 ff ff ff ff dd 5c 0c 00 00 00 00 00 .....\...... +801 0x00003f20 control 12 -2 93930 93904 -2 93930 93904 fe ff ff ff ea 6e 01 00 d0 6e 01 00 .....n...n.. +802 0x00003f2c control 12 26 827454 0 26 827454 0 1a 00 00 00 3e a0 0c 00 00 00 00 00 ....>....... +803 0x00003f38 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -933167104 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 61 c8 21 00 00 00 00 00 ....T.c@.^1@......a.!..... +804 0x00003f52 control 12 -1 810206 0 -1 810206 0 ff ff ff ff de 5c 0c 00 00 00 00 00 .....\...... +805 0x00003f5e control 12 26 827455 0 26 827455 0 1a 00 00 00 3f a0 0c 00 00 00 00 00 ....?....... +806 0x00003f6a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -933036032 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 63 c8 21 00 00 00 00 00 ....T.c@.^1@......c.!..... +807 0x00003f84 control 12 -1 810207 0 -1 810207 0 ff ff ff ff df 5c 0c 00 00 00 00 00 .....\...... +808 0x00003f90 control 12 34 827456 0 34 827456 0 22 00 00 00 40 a0 0c 00 00 00 00 00 """...@......." +809 0x00003f9c data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504903168 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b3 59 02 00 00 00 00 00 13 8d 79 c3 9d 01 00 00 .....!...o3........Y........y..... +810 0x00003fbe control 12 67 827457 0 67 827457 0 43 00 00 00 41 a0 0c 00 00 00 00 00 C...A....... +811 0x00003fca data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b3 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 60 b8 e3 78 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +812 0x0000400d control 12 -1 810208 0 -1 810208 0 ff ff ff ff e0 5c 0c 00 00 00 00 00 .....\...... +813 0x00004019 control 12 30 827458 0 30 827458 0 1e 00 00 00 42 a0 0c 00 00 00 00 00 ....B....... +814 0x00004025 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -932904960 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 65 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......e.!......... +815 0x00004043 control 12 -1 810209 0 -1 810209 0 ff ff ff ff e1 5c 0c 00 00 00 00 00 .....\...... +816 0x0000404f control 12 26 827459 0 26 827459 0 1a 00 00 00 43 a0 0c 00 00 00 00 00 ....C....... +817 0x0000405b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -932773888 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 67 c8 21 00 00 00 00 00 ....T.c@.^1@......g.!..... +818 0x00004075 control 12 -1 810210 0 -1 810210 0 ff ff ff ff e2 5c 0c 00 00 00 00 00 .....\...... +819 0x00004081 control 12 26 827460 0 26 827460 0 1a 00 00 00 44 a0 0c 00 00 00 00 00 ....D....... +820 0x0000408d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -932642816 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 69 c8 21 00 00 00 00 00 ....T.c@.^1@......i.!..... +821 0x000040a7 control 12 -1 810211 0 -1 810211 0 ff ff ff ff e3 5c 0c 00 00 00 00 00 .....\...... +822 0x000040b3 control 12 26 827461 0 26 827461 0 1a 00 00 00 45 a0 0c 00 00 00 00 00 ....E....... +823 0x000040bf data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -932511744 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6b c8 21 00 00 00 00 00 ....T.c@.^1@......k.!..... +824 0x000040d9 control 12 -1 810212 0 -1 810212 0 ff ff ff ff e4 5c 0c 00 00 00 00 00 .....\...... +825 0x000040e5 control 12 101 827462 0 101 827462 0 65 00 00 00 46 a0 0c 00 00 00 00 00 e...F....... +826 0x000040f1 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1504968704 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b4 59 02 00 00 00 00 00 43 8e 79 c3 9d 01 00 00 .....!...o3........Y......C.y..... +827 0x00004113 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b4 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 d0 13 8b f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +828 0x00004156 control 12 -1 810213 0 -1 810213 0 ff ff ff ff e5 5c 0c 00 00 00 00 00 .....\...... +829 0x00004162 control 12 30 827463 0 30 827463 0 1e 00 00 00 47 a0 0c 00 00 00 00 00 ....G....... +830 0x0000416e data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -932380672 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 6d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......m.!......... +831 0x0000418c control 12 -1 810214 0 -1 810214 0 ff ff ff ff e6 5c 0c 00 00 00 00 00 .....\...... +832 0x00004198 control 12 -2 93931 93905 -2 93931 93905 fe ff ff ff eb 6e 01 00 d1 6e 01 00 .....n...n.. +833 0x000041a4 control 12 26 827464 0 26 827464 0 1a 00 00 00 48 a0 0c 00 00 00 00 00 ....H....... +834 0x000041b0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -932249600 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 6f c8 21 00 00 00 00 00 ....T.c@.^1@......o.!..... +835 0x000041ca control 12 -1 810215 0 -1 810215 0 ff ff ff ff e7 5c 0c 00 00 00 00 00 .....\...... +836 0x000041d6 control 12 26 827465 0 26 827465 0 1a 00 00 00 49 a0 0c 00 00 00 00 00 ....I....... +837 0x000041e2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -932118528 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 71 c8 21 00 00 00 00 00 ....T.c@.^1@......q.!..... +838 0x000041fc control 12 -1 810216 0 -1 810216 0 ff ff ff ff e8 5c 0c 00 00 00 00 00 .....\...... +839 0x00004208 control 12 26 827466 0 26 827466 0 1a 00 00 00 4a a0 0c 00 00 00 00 00 ....J....... +840 0x00004214 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -931987456 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 73 c8 21 00 00 00 00 00 ....T.c@.^1@......s.!..... +841 0x0000422e control 12 -1 810217 0 -1 810217 0 ff ff ff ff e9 5c 0c 00 00 00 00 00 .....\...... +842 0x0000423a control 12 101 827467 0 101 827467 0 65 00 00 00 4b a0 0c 00 00 00 00 00 e...K....... +843 0x00004246 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505034240 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b5 59 02 00 00 00 00 00 74 8f 79 c3 9d 01 00 00 .....!...o3........Y......t.y..... +844 0x00004268 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b5 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 54 33 9d f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +845 0x000042ab control 12 -1 810218 0 -1 810218 0 ff ff ff ff ea 5c 0c 00 00 00 00 00 .....\...... +846 0x000042b7 control 12 30 827468 0 30 827468 0 1e 00 00 00 4c a0 0c 00 00 00 00 00 ....L....... +847 0x000042c3 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -931856384 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 75 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......u.!......... +848 0x000042e1 control 12 -1 810219 0 -1 810219 0 ff ff ff ff eb 5c 0c 00 00 00 00 00 .....\...... +849 0x000042ed control 12 26 827469 0 26 827469 0 1a 00 00 00 4d a0 0c 00 00 00 00 00 ....M....... +850 0x000042f9 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -931725312 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 77 c8 21 00 00 00 00 00 ....T.c@.^1@......w.!..... +851 0x00004313 control 12 -1 810220 0 -1 810220 0 ff ff ff ff ec 5c 0c 00 00 00 00 00 .....\...... +852 0x0000431f control 12 26 827470 0 26 827470 0 1a 00 00 00 4e a0 0c 00 00 00 00 00 ....N....... +853 0x0000432b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -931594240 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 79 c8 21 00 00 00 00 00 ....T.c@.^1@......y.!..... +854 0x00004345 control 12 -1 810221 0 -1 810221 0 ff ff ff ff ed 5c 0c 00 00 00 00 00 .....\...... +855 0x00004351 control 12 -2 93932 93906 -2 93932 93906 fe ff ff ff ec 6e 01 00 d2 6e 01 00 .....n...n.. +856 0x0000435d control 12 26 827471 0 26 827471 0 1a 00 00 00 4f a0 0c 00 00 00 00 00 ....O....... +857 0x00004369 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -931463168 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7b c8 21 00 00 00 00 00 ....T.c@.^1@......{.!..... +858 0x00004383 control 12 -1 810222 0 -1 810222 0 ff ff ff ff ee 5c 0c 00 00 00 00 00 .....\...... +859 0x0000438f control 12 101 827472 0 101 827472 0 65 00 00 00 50 a0 0c 00 00 00 00 00 e...P....... +860 0x0000439b data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505099776 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b6 59 02 00 00 00 00 00 a5 90 79 c3 9d 01 00 00 .....!...o3........Y........y..... +861 0x000043bd data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b6 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 85 5c af f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +862 0x00004400 control 12 -1 810223 0 -1 810223 0 ff ff ff ff ef 5c 0c 00 00 00 00 00 .....\...... +863 0x0000440c control 12 30 827473 0 30 827473 0 1e 00 00 00 51 a0 0c 00 00 00 00 00 ....Q....... +864 0x00004418 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -931332096 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 7d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P......}.!......... +865 0x00004436 control 12 -1 810224 0 -1 810224 0 ff ff ff ff f0 5c 0c 00 00 00 00 00 .....\...... +866 0x00004442 control 12 26 827474 0 26 827474 0 1a 00 00 00 52 a0 0c 00 00 00 00 00 ....R....... +867 0x0000444e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -931201024 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 7f c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +868 0x00004468 control 12 -1 810225 0 -1 810225 0 ff ff ff ff f1 5c 0c 00 00 00 00 00 .....\...... +869 0x00004474 control 12 26 827475 0 26 827475 0 1a 00 00 00 53 a0 0c 00 00 00 00 00 ....S....... +870 0x00004480 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -931069952 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 81 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +871 0x0000449a control 12 -1 810226 0 -1 810226 0 ff ff ff ff f2 5c 0c 00 00 00 00 00 .....\...... +872 0x000044a6 control 12 26 827476 0 26 827476 0 1a 00 00 00 54 a0 0c 00 00 00 00 00 ....T....... +873 0x000044b2 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -930938880 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 83 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +874 0x000044cc control 12 -1 810227 0 -1 810227 0 ff ff ff ff f3 5c 0c 00 00 00 00 00 .....\...... +875 0x000044d8 control 12 101 827477 0 101 827477 0 65 00 00 00 55 a0 0c 00 00 00 00 00 e...U....... +876 0x000044e4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505165312 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b7 59 02 00 00 00 00 00 d4 91 79 c3 9d 01 00 00 .....!...o3........Y........y..... +877 0x00004506 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b7 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 10 70 83 c1 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +878 0x00004549 control 12 -1 810228 0 -1 810228 0 ff ff ff ff f4 5c 0c 00 00 00 00 00 .....\...... +879 0x00004555 control 12 30 827478 0 30 827478 0 1e 00 00 00 56 a0 0c 00 00 00 00 00 ....V....... +880 0x00004561 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -930807808 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 85 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +881 0x0000457f control 12 -1 810229 0 -1 810229 0 ff ff ff ff f5 5c 0c 00 00 00 00 00 .....\...... +882 0x0000458b control 12 26 827479 0 26 827479 0 1a 00 00 00 57 a0 0c 00 00 00 00 00 ....W....... +883 0x00004597 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -930676736 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 87 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +884 0x000045b1 control 12 -1 810230 0 -1 810230 0 ff ff ff ff f6 5c 0c 00 00 00 00 00 .....\...... +885 0x000045bd control 12 -2 93933 93907 -2 93933 93907 fe ff ff ff ed 6e 01 00 d3 6e 01 00 .....n...n.. +886 0x000045c9 control 12 26 827480 0 26 827480 0 1a 00 00 00 58 a0 0c 00 00 00 00 00 ....X....... +887 0x000045d5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -930545664 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 89 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +888 0x000045ef control 12 -1 810231 0 -1 810231 0 ff ff ff ff f7 5c 0c 00 00 00 00 00 .....\...... +889 0x000045fb control 12 26 827481 0 26 827481 0 1a 00 00 00 59 a0 0c 00 00 00 00 00 ....Y....... +890 0x00004607 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -930414592 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8b c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +891 0x00004621 control 12 -1 810232 0 -1 810232 0 ff ff ff ff f8 5c 0c 00 00 00 00 00 .....\...... +892 0x0000462d control 12 101 827482 0 101 827482 0 65 00 00 00 5a a0 0c 00 00 00 00 00 e...Z....... +893 0x00004639 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505230848 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b8 59 02 00 00 00 00 00 06 93 79 c3 9d 01 00 00 .....!...o3........Y........y..... +894 0x0000465b data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b8 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f b4 3f b2 d3 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +895 0x0000469e control 12 -1 810233 0 -1 810233 0 ff ff ff ff f9 5c 0c 00 00 00 00 00 .....\...... +896 0x000046aa control 12 30 827483 0 30 827483 0 1e 00 00 00 5b a0 0c 00 00 00 00 00 ....[....... +897 0x000046b6 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -930283520 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 8d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +898 0x000046d4 control 12 -1 810234 0 -1 810234 0 ff ff ff ff fa 5c 0c 00 00 00 00 00 .....\...... +899 0x000046e0 control 12 26 827484 0 26 827484 0 1a 00 00 00 5c a0 0c 00 00 00 00 00 ....\....... +900 0x000046ec data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -930152448 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 8f c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +901 0x00004706 control 12 -1 810235 0 -1 810235 0 ff ff ff ff fb 5c 0c 00 00 00 00 00 .....\...... +902 0x00004712 control 12 26 827485 0 26 827485 0 1a 00 00 00 5d a0 0c 00 00 00 00 00 ....]....... +903 0x0000471e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -930021376 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 91 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +904 0x00004738 control 12 -1 810236 0 -1 810236 0 ff ff ff ff fc 5c 0c 00 00 00 00 00 .....\...... +905 0x00004744 control 12 26 827486 0 26 827486 0 1a 00 00 00 5e a0 0c 00 00 00 00 00 ....^....... +906 0x00004750 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -929890304 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 93 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +907 0x0000476a control 12 -1 810237 0 -1 810237 0 ff ff ff ff fd 5c 0c 00 00 00 00 00 .....\...... +908 0x00004776 control 12 101 827487 0 101 827487 0 65 00 00 00 5f a0 0c 00 00 00 00 00 e..._....... +909 0x00004782 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505296384 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 b9 59 02 00 00 00 00 00 36 94 79 c3 9d 01 00 00 .....!...o3........Y......6.y..... +910 0x000047a4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 b9 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f ec fc cd e5 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +911 0x000047e7 control 12 -1 810238 0 -1 810238 0 ff ff ff ff fe 5c 0c 00 00 00 00 00 .....\...... +912 0x000047f3 control 12 30 827488 0 30 827488 0 1e 00 00 00 60 a0 0c 00 00 00 00 00 ....`....... +913 0x000047ff data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -929759232 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 95 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +914 0x0000481d control 12 -1 810239 0 -1 810239 0 ff ff ff ff ff 5c 0c 00 00 00 00 00 .....\...... +915 0x00004829 control 12 -2 93934 93908 -2 93934 93908 fe ff ff ff ee 6e 01 00 d4 6e 01 00 .....n...n.. +916 0x00004835 control 12 26 827489 0 26 827489 0 1a 00 00 00 61 a0 0c 00 00 00 00 00 ....a....... +917 0x00004841 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -929628160 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 97 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +918 0x0000485b control 12 -1 810240 0 -1 810240 0 ff ff ff ff 00 5d 0c 00 00 00 00 00 .....]...... +919 0x00004867 control 12 26 827490 0 26 827490 0 1a 00 00 00 62 a0 0c 00 00 00 00 00 ....b....... +920 0x00004873 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -929497088 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 99 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +921 0x0000488d control 12 -1 810241 0 -1 810241 0 ff ff ff ff 01 5d 0c 00 00 00 00 00 .....]...... +922 0x00004899 control 12 26 827491 0 26 827491 0 1a 00 00 00 63 a0 0c 00 00 00 00 00 ....c....... +923 0x000048a5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -929366016 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9b c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +924 0x000048bf control 12 -1 810242 0 -1 810242 0 ff ff ff ff 02 5d 0c 00 00 00 00 00 .....]...... +925 0x000048cb control 12 101 827492 0 101 827492 0 65 00 00 00 64 a0 0c 00 00 00 00 00 e...d....... +926 0x000048d7 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505361920 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ba 59 02 00 00 00 00 00 67 95 79 c3 9d 01 00 00 .....!...o3........Y......g.y..... +927 0x000048f9 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ba 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f0 ee fc f7 f5 87 a9 18 ?.....3...|8............Y......=B.....&......... +928 0x0000493c control 12 -1 810243 0 -1 810243 0 ff ff ff ff 03 5d 0c 00 00 00 00 00 .....]...... +929 0x00004948 control 12 30 827493 0 30 827493 0 1e 00 00 00 65 a0 0c 00 00 00 00 00 ....e....... +930 0x00004954 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -929234944 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 9d c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +931 0x00004972 control 12 -1 810244 0 -1 810244 0 ff ff ff ff 04 5d 0c 00 00 00 00 00 .....]...... +932 0x0000497e control 12 26 827494 0 26 827494 0 1a 00 00 00 66 a0 0c 00 00 00 00 00 ....f....... +933 0x0000498a data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -929103872 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 9f c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +934 0x000049a4 control 12 -1 810245 0 -1 810245 0 ff ff ff ff 05 5d 0c 00 00 00 00 00 .....]...... +935 0x000049b0 control 12 26 827495 0 26 827495 0 1a 00 00 00 67 a0 0c 00 00 00 00 00 ....g....... +936 0x000049bc data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -928972800 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a1 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +937 0x000049d6 control 12 -1 810246 0 -1 810246 0 ff ff ff ff 06 5d 0c 00 00 00 00 00 .....]...... +938 0x000049e2 control 12 -2 93935 93909 -2 93935 93909 fe ff ff ff ef 6e 01 00 d5 6e 01 00 .....n...n.. +939 0x000049ee control 12 34 827496 0 34 827496 0 22 00 00 00 68 a0 0c 00 00 00 00 00 """...h......." +940 0x000049fa data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505427456 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bb 59 02 00 00 00 00 00 98 96 79 c3 9d 01 00 00 .....!...o3........Y........y..... +941 0x00004a1c control 12 67 827497 0 67 827497 0 43 00 00 00 69 a0 0c 00 00 00 00 00 C...i....... +942 0x00004a28 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bb 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f f4 12 2c 0a f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +943 0x00004a6b control 12 -1 810247 0 -1 810247 0 ff ff ff ff 07 5d 0c 00 00 00 00 00 .....]...... +944 0x00004a77 control 12 30 827498 0 30 827498 0 1e 00 00 00 6a a0 0c 00 00 00 00 00 ....j....... +945 0x00004a83 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -928841728 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 a3 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +946 0x00004aa1 control 12 26 827499 0 26 827499 0 1a 00 00 00 6b a0 0c 00 00 00 00 00 ....k....... +947 0x00004aad data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -928710656 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a5 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +948 0x00004ac7 control 12 -1 810248 0 -1 810248 0 ff ff ff ff 08 5d 0c 00 00 00 00 00 .....]...... +949 0x00004ad3 control 12 -1 810249 0 -1 810249 0 ff ff ff ff 09 5d 0c 00 00 00 00 00 .....]...... +950 0x00004adf control 12 26 827500 0 26 827500 0 1a 00 00 00 6c a0 0c 00 00 00 00 00 ....l....... +951 0x00004aeb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -928579584 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a7 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +952 0x00004b05 control 12 -1 810250 0 -1 810250 0 ff ff ff ff 0a 5d 0c 00 00 00 00 00 .....]...... +953 0x00004b11 control 12 26 827501 0 26 827501 0 1a 00 00 00 6d a0 0c 00 00 00 00 00 ....m....... +954 0x00004b1d data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -928448512 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 a9 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +955 0x00004b37 control 12 -1 810251 0 -1 810251 0 ff ff ff ff 0b 5d 0c 00 00 00 00 00 .....]...... +956 0x00004b43 control 12 101 827502 0 101 827502 0 65 00 00 00 6e a0 0c 00 00 00 00 00 e...n....... +957 0x00004b4f data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505492992 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bc 59 02 00 00 00 00 00 ca 97 79 c3 9d 01 00 00 .....!...o3........Y........y..... +958 0x00004b71 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bc 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 8c 38 66 1c f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +959 0x00004bb4 control 12 -1 810252 0 -1 810252 0 ff ff ff ff 0c 5d 0c 00 00 00 00 00 .....]...... +960 0x00004bc0 control 12 30 827503 0 30 827503 0 1e 00 00 00 6f a0 0c 00 00 00 00 00 ....o....... +961 0x00004bcc data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -928317440 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 ab c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +962 0x00004bea control 12 -1 810253 0 -1 810253 0 ff ff ff ff 0d 5d 0c 00 00 00 00 00 .....]...... +963 0x00004bf6 control 12 26 827504 0 26 827504 0 1a 00 00 00 70 a0 0c 00 00 00 00 00 ....p....... +964 0x00004c02 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -928186368 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ad c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +965 0x00004c1c control 12 -1 810254 0 -1 810254 0 ff ff ff ff 0e 5d 0c 00 00 00 00 00 .....]...... +966 0x00004c28 control 12 -2 93936 93910 -2 93936 93910 fe ff ff ff f0 6e 01 00 d6 6e 01 00 .....n...n.. +967 0x00004c34 control 12 26 827505 0 26 827505 0 1a 00 00 00 71 a0 0c 00 00 00 00 00 ....q....... +968 0x00004c40 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -928055296 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 af c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +969 0x00004c5a control 12 -1 810255 0 -1 810255 0 ff ff ff ff 0f 5d 0c 00 00 00 00 00 .....]...... +970 0x00004c66 control 12 26 827506 0 26 827506 0 1a 00 00 00 72 a0 0c 00 00 00 00 00 ....r....... +971 0x00004c72 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -927924224 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b1 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +972 0x00004c8c control 12 -1 810256 0 -1 810256 0 ff ff ff ff 10 5d 0c 00 00 00 00 00 .....]...... +973 0x00004c98 control 12 101 827507 0 101 827507 0 65 00 00 00 73 a0 0c 00 00 00 00 00 e...s....... +974 0x00004ca4 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505558528 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bd 59 02 00 00 00 00 00 fb 98 79 c3 9d 01 00 00 .....!...o3........Y........y..... +975 0x00004cc6 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bd 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 80 65 8d 2e f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +976 0x00004d09 control 12 -1 810257 0 -1 810257 0 ff ff ff ff 11 5d 0c 00 00 00 00 00 .....]...... +977 0x00004d15 control 12 30 827508 0 30 827508 0 1e 00 00 00 74 a0 0c 00 00 00 00 00 ....t....... +978 0x00004d21 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -927793152 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 b3 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +979 0x00004d3f control 12 -1 810258 0 -1 810258 0 ff ff ff ff 12 5d 0c 00 00 00 00 00 .....]...... +980 0x00004d4b control 12 26 827509 0 26 827509 0 1a 00 00 00 75 a0 0c 00 00 00 00 00 ....u....... +981 0x00004d57 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -927662080 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b5 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +982 0x00004d71 control 12 -1 810259 0 -1 810259 0 ff ff ff ff 13 5d 0c 00 00 00 00 00 .....]...... +983 0x00004d7d control 12 26 827510 0 26 827510 0 1a 00 00 00 76 a0 0c 00 00 00 00 00 ....v....... +984 0x00004d89 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -927531008 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b7 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +985 0x00004da3 control 12 -1 810260 0 -1 810260 0 ff ff ff ff 14 5d 0c 00 00 00 00 00 .....]...... +986 0x00004daf control 12 26 827511 0 26 827511 0 1a 00 00 00 77 a0 0c 00 00 00 00 00 ....w....... +987 0x00004dbb data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -927399936 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 b9 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +988 0x00004dd5 control 12 -1 810261 0 -1 810261 0 ff ff ff ff 15 5d 0c 00 00 00 00 00 .....]...... +989 0x00004de1 control 12 -2 93937 93911 -2 93937 93911 fe ff ff ff f1 6e 01 00 d7 6e 01 00 .....n...n.. +990 0x00004ded control 12 34 827512 0 34 827512 0 22 00 00 00 78 a0 0c 00 00 00 00 00 """...x......." +991 0x00004df9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505624064 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 be 59 02 00 00 00 00 00 2c 9a 79 c3 9d 01 00 00 .....!...o3........Y......,.y..... +992 0x00004e1b control 12 67 827513 0 67 827513 0 43 00 00 00 79 a0 0c 00 00 00 00 00 C...y....... +993 0x00004e27 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 be 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 48 00 c8 40 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +994 0x00004e6a control 12 -1 810262 0 -1 810262 0 ff ff ff ff 16 5d 0c 00 00 00 00 00 .....]...... +995 0x00004e76 control 12 30 827514 0 30 827514 0 1e 00 00 00 7a a0 0c 00 00 00 00 00 ....z....... +996 0x00004e82 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -927268864 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 bb c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +997 0x00004ea0 control 12 -1 810263 0 -1 810263 0 ff ff ff ff 17 5d 0c 00 00 00 00 00 .....]...... +998 0x00004eac control 12 26 827515 0 26 827515 0 1a 00 00 00 7b a0 0c 00 00 00 00 00 ....{....... +999 0x00004eb8 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -927137792 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bd c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1000 0x00004ed2 control 12 -1 810264 0 -1 810264 0 ff ff ff ff 18 5d 0c 00 00 00 00 00 .....]...... +1001 0x00004ede control 12 26 827516 0 26 827516 0 1a 00 00 00 7c a0 0c 00 00 00 00 00 ....|....... +1002 0x00004eea data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -927006720 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 bf c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1003 0x00004f04 control 12 -1 810265 0 -1 810265 0 ff ff ff ff 19 5d 0c 00 00 00 00 00 .....]...... +1004 0x00004f10 control 12 26 827517 0 26 827517 0 1a 00 00 00 7d a0 0c 00 00 00 00 00 ....}....... +1005 0x00004f1c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -926875648 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c1 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1006 0x00004f36 control 12 -1 810266 0 -1 810266 0 ff ff ff ff 1a 5d 0c 00 00 00 00 00 .....]...... +1007 0x00004f42 control 12 101 827518 0 101 827518 0 65 00 00 00 7e a0 0c 00 00 00 00 00 e...~....... +1008 0x00004f4e data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505689600 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 bf 59 02 00 00 00 00 00 5d 9b 79 c3 9d 01 00 00 .....!...o3........Y......].y..... +1009 0x00004f70 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 bf 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 3c 5f ef 52 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1010 0x00004fb3 control 12 -1 810267 0 -1 810267 0 ff ff ff ff 1b 5d 0c 00 00 00 00 00 .....]...... +1011 0x00004fbf control 12 30 827519 0 30 827519 0 1e 00 00 00 7f a0 0c 00 00 00 00 00 ............ +1012 0x00004fcb data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -926744576 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 c3 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1013 0x00004fe9 control 12 -1 810268 0 -1 810268 0 ff ff ff ff 1c 5d 0c 00 00 00 00 00 .....]...... +1014 0x00004ff5 control 12 26 827520 0 26 827520 0 1a 00 00 00 80 a0 0c 00 00 00 00 00 ............ +1015 0x00005001 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -926613504 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c5 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1016 0x0000501b control 12 -1 810269 0 -1 810269 0 ff ff ff ff 1d 5d 0c 00 00 00 00 00 .....]...... +1017 0x00005027 control 12 26 827521 0 26 827521 0 1a 00 00 00 81 a0 0c 00 00 00 00 00 ............ +1018 0x00005033 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -926482432 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c7 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1019 0x0000504d control 12 -1 810270 0 -1 810270 0 ff ff ff ff 1e 5d 0c 00 00 00 00 00 .....]...... +1020 0x00005059 control 12 -2 93938 93912 -2 93938 93912 fe ff ff ff f2 6e 01 00 d8 6e 01 00 .....n...n.. +1021 0x00005065 control 12 26 827522 0 26 827522 0 1a 00 00 00 82 a0 0c 00 00 00 00 00 ............ +1022 0x00005071 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -926351360 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 c9 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1023 0x0000508b control 12 -1 810271 0 -1 810271 0 ff ff ff ff 1f 5d 0c 00 00 00 00 00 .....]...... +1024 0x00005097 control 12 101 827523 0 101 827523 0 65 00 00 00 83 a0 0c 00 00 00 00 00 e........... +1025 0x000050a3 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505755136 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c0 59 02 00 00 00 00 00 8d 9c 79 c3 9d 01 00 00 .....!...o3........Y........y..... +1026 0x000050c5 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c0 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 70 4f 1d 65 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1027 0x00005108 control 12 -1 810272 0 -1 810272 0 ff ff ff ff 20 5d 0c 00 00 00 00 00 .... ]...... +1028 0x00005114 control 12 30 827524 0 30 827524 0 1e 00 00 00 84 a0 0c 00 00 00 00 00 ............ +1029 0x00005120 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -926220288 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 cb c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1030 0x0000513e control 12 -1 810273 0 -1 810273 0 ff ff ff ff 21 5d 0c 00 00 00 00 00 ....!]...... +1031 0x0000514a control 12 26 827525 0 26 827525 0 1a 00 00 00 85 a0 0c 00 00 00 00 00 ............ +1032 0x00005156 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -926089216 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cd c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1033 0x00005170 control 12 -1 810274 0 -1 810274 0 ff ff ff ff 22 5d 0c 00 00 00 00 00 "....""]......" +1034 0x0000517c control 12 26 827526 0 26 827526 0 1a 00 00 00 86 a0 0c 00 00 00 00 00 ............ +1035 0x00005188 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -925958144 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 cf c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1036 0x000051a2 control 12 -1 810275 0 -1 810275 0 ff ff ff ff 23 5d 0c 00 00 00 00 00 ....#]...... +1037 0x000051ae control 12 26 827527 0 26 827527 0 1a 00 00 00 87 a0 0c 00 00 00 00 00 ............ +1038 0x000051ba data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -925827072 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d1 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1039 0x000051d4 control 12 -1 810276 0 -1 810276 0 ff ff ff ff 24 5d 0c 00 00 00 00 00 ....$]...... +1040 0x000051e0 control 12 101 827528 0 101 827528 0 65 00 00 00 88 a0 0c 00 00 00 00 00 e........... +1041 0x000051ec data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505820672 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c1 59 02 00 00 00 00 00 bd 9d 79 c3 9d 01 00 00 .....!...o3........Y........y..... +1042 0x0000520e data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c1 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 00 7e 33 77 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1043 0x00005251 control 12 -1 810277 0 -1 810277 0 ff ff ff ff 25 5d 0c 00 00 00 00 00 ....%]...... +1044 0x0000525d control 12 30 827529 0 30 827529 0 1e 00 00 00 89 a0 0c 00 00 00 00 00 ............ +1045 0x00005269 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -925696000 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 d3 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1046 0x00005287 control 12 -1 810278 0 -1 810278 0 ff ff ff ff 26 5d 0c 00 00 00 00 00 ....&]...... +1047 0x00005293 control 12 26 827530 0 26 827530 0 1a 00 00 00 8a a0 0c 00 00 00 00 00 ............ +1048 0x0000529f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -925564928 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d5 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1049 0x000052b9 control 12 -1 810279 0 -1 810279 0 ff ff ff ff 27 5d 0c 00 00 00 00 00 ....']...... +1050 0x000052c5 control 12 -2 93939 93913 -2 93939 93913 fe ff ff ff f3 6e 01 00 d9 6e 01 00 .....n...n.. +1051 0x000052d1 control 12 26 827531 0 26 827531 0 1a 00 00 00 8b a0 0c 00 00 00 00 00 ............ +1052 0x000052dd data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -925433856 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d7 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1053 0x000052f7 control 12 -1 810280 0 -1 810280 0 ff ff ff ff 28 5d 0c 00 00 00 00 00 ....(]...... +1054 0x00005303 control 12 26 827532 0 26 827532 0 1a 00 00 00 8c a0 0c 00 00 00 00 00 ............ +1055 0x0000530f data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -925302784 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 d9 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1056 0x00005329 control 12 -1 810281 0 -1 810281 0 ff ff ff ff 29 5d 0c 00 00 00 00 00 ....)]...... +1057 0x00005335 control 12 101 827533 0 101 827533 0 65 00 00 00 8d a0 0c 00 00 00 00 00 e........... +1058 0x00005341 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505886208 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c2 59 02 00 00 00 00 00 ee 9e 79 c3 9d 01 00 00 .....!...o3........Y........y..... +1059 0x00005363 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c2 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 74 99 5f 89 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1060 0x000053a6 control 12 -1 810282 0 -1 810282 0 ff ff ff ff 2a 5d 0c 00 00 00 00 00 ....*]...... +1061 0x000053b2 control 12 30 827534 0 30 827534 0 1e 00 00 00 8e a0 0c 00 00 00 00 00 ............ +1062 0x000053be data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -925171712 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 db c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1063 0x000053dc control 12 -1 810283 0 -1 810283 0 ff ff ff ff 2b 5d 0c 00 00 00 00 00 ....+]...... +1064 0x000053e8 control 12 26 827535 0 26 827535 0 1a 00 00 00 8f a0 0c 00 00 00 00 00 ............ +1065 0x000053f4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -925040640 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 dd c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1066 0x0000540e control 12 -1 810284 0 -1 810284 0 ff ff ff ff 2c 5d 0c 00 00 00 00 00 ....,]...... +1067 0x0000541a control 12 26 827536 0 26 827536 0 1a 00 00 00 90 a0 0c 00 00 00 00 00 ............ +1068 0x00005426 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -924909568 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 df c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1069 0x00005440 control 12 -1 810285 0 -1 810285 0 ff ff ff ff 2d 5d 0c 00 00 00 00 00 ....-]...... +1070 0x0000544c control 12 26 827537 0 26 827537 0 1a 00 00 00 91 a0 0c 00 00 00 00 00 ............ +1071 0x00005458 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -924778496 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e1 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1072 0x00005472 control 12 -1 810286 0 -1 810286 0 ff ff ff ff 2e 5d 0c 00 00 00 00 00 .....]...... +1073 0x0000547e control 12 -2 93940 93914 -2 93940 93914 fe ff ff ff f4 6e 01 00 da 6e 01 00 .....n...n.. +1074 0x0000548a control 12 101 827538 0 101 827538 0 65 00 00 00 92 a0 0c 00 00 00 00 00 e........... +1075 0x00005496 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1505951744 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c3 59 02 00 00 00 00 00 1e a0 79 c3 9d 01 00 00 .....!...o3........Y........y..... +1076 0x000054b8 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c3 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 70 e4 7e 9b f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1077 0x000054fb control 12 -1 810287 0 -1 810287 0 ff ff ff ff 2f 5d 0c 00 00 00 00 00 ..../]...... +1078 0x00005507 control 12 30 827539 0 30 827539 0 1e 00 00 00 93 a0 0c 00 00 00 00 00 ............ +1079 0x00005513 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -924647424 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 e3 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1080 0x00005531 control 12 -1 810288 0 -1 810288 0 ff ff ff ff 30 5d 0c 00 00 00 00 00 ....0]...... +1081 0x0000553d control 12 26 827540 0 26 827540 0 1a 00 00 00 94 a0 0c 00 00 00 00 00 ............ +1082 0x00005549 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -924516352 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e5 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1083 0x00005563 control 12 -1 810289 0 -1 810289 0 ff ff ff ff 31 5d 0c 00 00 00 00 00 ....1]...... +1084 0x0000556f control 12 26 827541 0 26 827541 0 1a 00 00 00 95 a0 0c 00 00 00 00 00 ............ +1085 0x0000557b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -924385280 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e7 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1086 0x00005595 control 12 -1 810290 0 -1 810290 0 ff ff ff ff 32 5d 0c 00 00 00 00 00 ....2]...... +1087 0x000055a1 control 12 26 827542 0 26 827542 0 1a 00 00 00 96 a0 0c 00 00 00 00 00 ............ +1088 0x000055ad data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -924254208 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 e9 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1089 0x000055c7 control 12 -1 810291 0 -1 810291 0 ff ff ff ff 33 5d 0c 00 00 00 00 00 ....3]...... +1090 0x000055d3 control 12 101 827543 0 101 827543 0 65 00 00 00 97 a0 0c 00 00 00 00 00 e........... +1091 0x000055df data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1506017280 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c4 59 02 00 00 00 00 00 4e a1 79 c3 9d 01 00 00 .....!...o3........Y......N.y..... +1092 0x00005601 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c4 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 78 f3 96 ad f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1093 0x00005644 control 12 -1 810292 0 -1 810292 0 ff ff ff ff 34 5d 0c 00 00 00 00 00 ....4]...... +1094 0x00005650 control 12 30 827544 0 30 827544 0 1e 00 00 00 98 a0 0c 00 00 00 00 00 ............ +1095 0x0000565c data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -924123136 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 eb c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1096 0x0000567a control 12 -1 810293 0 -1 810293 0 ff ff ff ff 35 5d 0c 00 00 00 00 00 ....5]...... +1097 0x00005686 control 12 26 827545 0 26 827545 0 1a 00 00 00 99 a0 0c 00 00 00 00 00 ............ +1098 0x00005692 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -923992064 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ed c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1099 0x000056ac control 12 -1 810294 0 -1 810294 0 ff ff ff ff 36 5d 0c 00 00 00 00 00 ....6]...... +1100 0x000056b8 control 12 26 827546 0 26 827546 0 1a 00 00 00 9a a0 0c 00 00 00 00 00 ............ +1101 0x000056c4 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -923860992 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ef c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1102 0x000056de control 12 -1 810295 0 -1 810295 0 ff ff ff ff 37 5d 0c 00 00 00 00 00 ....7]...... +1103 0x000056ea control 12 -2 93941 93915 -2 93941 93915 fe ff ff ff f5 6e 01 00 db 6e 01 00 .....n...n.. +1104 0x000056f6 control 12 26 827547 0 26 827547 0 1a 00 00 00 9b a0 0c 00 00 00 00 00 ............ +1105 0x00005702 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -923729920 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f1 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1106 0x0000571c control 12 -1 810296 0 -1 810296 0 ff ff ff ff 38 5d 0c 00 00 00 00 00 ....8]...... +1107 0x00005728 control 12 101 827548 0 101 827548 0 65 00 00 00 9c a0 0c 00 00 00 00 00 e........... +1108 0x00005734 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1506082816 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c5 59 02 00 00 00 00 00 7e a2 79 c3 9d 01 00 00 .....!...o3........Y......~.y..... +1109 0x00005756 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c5 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 24 e6 b8 bf f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1110 0x00005799 control 12 -1 810297 0 -1 810297 0 ff ff ff ff 39 5d 0c 00 00 00 00 00 ....9]...... +1111 0x000057a5 control 12 30 827549 0 30 827549 0 1e 00 00 00 9d a0 0c 00 00 00 00 00 ............ +1112 0x000057b1 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -923598848 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 f3 c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1113 0x000057cf control 12 -1 810298 0 -1 810298 0 ff ff ff ff 3a 5d 0c 00 00 00 00 00 ....:]...... +1114 0x000057db control 12 26 827550 0 26 827550 0 1a 00 00 00 9e a0 0c 00 00 00 00 00 ............ +1115 0x000057e7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -923467776 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f5 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1116 0x00005801 control 12 -1 810299 0 -1 810299 0 ff ff ff ff 3b 5d 0c 00 00 00 00 00 ....;]...... +1117 0x0000580d control 12 26 827551 0 26 827551 0 1a 00 00 00 9f a0 0c 00 00 00 00 00 ............ +1118 0x00005819 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -923336704 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f7 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1119 0x00005833 control 12 -1 810300 0 -1 810300 0 ff ff ff ff 3c 5d 0c 00 00 00 00 00 ....<]...... +1120 0x0000583f control 12 26 827552 0 26 827552 0 1a 00 00 00 a0 a0 0c 00 00 00 00 00 ............ +1121 0x0000584b data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -923205632 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 f9 c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1122 0x00005865 control 12 -1 810301 0 -1 810301 0 ff ff ff ff 3d 5d 0c 00 00 00 00 00 ....=]...... +1123 0x00005871 control 12 101 827553 0 101 827553 0 65 00 00 00 a1 a0 0c 00 00 00 00 00 e........... +1124 0x0000587d data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1506148352 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c6 59 02 00 00 00 00 00 af a3 79 c3 9d 01 00 00 .....!...o3........Y........y..... +1125 0x0000589f data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c6 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f dc 12 ea d1 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1126 0x000058e2 control 12 -1 810302 0 -1 810302 0 ff ff ff ff 3e 5d 0c 00 00 00 00 00 ....>]...... +1127 0x000058ee control 12 30 827554 0 30 827554 0 1e 00 00 00 a2 a0 0c 00 00 00 00 00 ............ +1128 0x000058fa data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -923074560 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 fb c8 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1129 0x00005918 control 12 -1 810303 0 -1 810303 0 ff ff ff ff 3f 5d 0c 00 00 00 00 00 ....?]...... +1130 0x00005924 control 12 -2 93942 93916 -2 93942 93916 fe ff ff ff f6 6e 01 00 dc 6e 01 00 .....n...n.. +1131 0x00005930 control 12 26 827555 0 26 827555 0 1a 00 00 00 a3 a0 0c 00 00 00 00 00 ............ +1132 0x0000593c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -922943488 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 fd c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1133 0x00005956 control 12 -1 810304 0 -1 810304 0 ff ff ff ff 40 5d 0c 00 00 00 00 00 ....@]...... +1134 0x00005962 control 12 26 827556 0 26 827556 0 1a 00 00 00 a4 a0 0c 00 00 00 00 00 ............ +1135 0x0000596e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -922812416 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 ff c8 21 00 00 00 00 00 ....T.c@.^1@........!..... +1136 0x00005988 control 12 -1 810305 0 -1 810305 0 ff ff ff ff 41 5d 0c 00 00 00 00 00 ....A]...... +1137 0x00005994 control 12 26 827557 0 26 827557 0 1a 00 00 00 a5 a0 0c 00 00 00 00 00 ............ +1138 0x000059a0 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -922681344 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 01 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1139 0x000059ba control 12 -1 810306 0 -1 810306 0 ff ff ff ff 42 5d 0c 00 00 00 00 00 ....B]...... +1140 0x000059c6 control 12 101 827558 0 101 827558 0 65 00 00 00 a6 a0 0c 00 00 00 00 00 e........... +1141 0x000059d2 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1506213888 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c7 59 02 00 00 00 00 00 df a4 79 c3 9d 01 00 00 .....!...o3........Y........y..... +1142 0x000059f4 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c7 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f d4 b1 09 e4 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1143 0x00005a37 control 12 -1 810307 0 -1 810307 0 ff ff ff ff 43 5d 0c 00 00 00 00 00 ....C]...... +1144 0x00005a43 control 12 30 827559 0 30 827559 0 1e 00 00 00 a7 a0 0c 00 00 00 00 00 ............ +1145 0x00005a4f data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -922550272 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 03 c9 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1146 0x00005a6d control 12 -1 810308 0 -1 810308 0 ff ff ff ff 44 5d 0c 00 00 00 00 00 ....D]...... +1147 0x00005a79 control 12 26 827560 0 26 827560 0 1a 00 00 00 a8 a0 0c 00 00 00 00 00 ............ +1148 0x00005a85 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -922419200 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 05 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1149 0x00005a9f control 12 -1 810309 0 -1 810309 0 ff ff ff ff 45 5d 0c 00 00 00 00 00 ....E]...... +1150 0x00005aab control 12 26 827561 0 26 827561 0 1a 00 00 00 a9 a0 0c 00 00 00 00 00 ............ +1151 0x00005ab7 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -922288128 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 07 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1152 0x00005ad1 control 12 -1 810310 0 -1 810310 0 ff ff ff ff 46 5d 0c 00 00 00 00 00 ....F]...... +1153 0x00005add control 12 -2 93943 93917 -2 93943 93917 fe ff ff ff f7 6e 01 00 dd 6e 01 00 .....n...n.. +1154 0x00005ae9 control 12 26 827562 0 26 827562 0 1a 00 00 00 aa a0 0c 00 00 00 00 00 ............ +1155 0x00005af5 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -922157056 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 09 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1156 0x00005b0f control 12 -1 810311 0 -1 810311 0 ff ff ff ff 47 5d 0c 00 00 00 00 00 ....G]...... +1157 0x00005b1b control 12 101 827563 0 101 827563 0 65 00 00 00 ab a0 0c 00 00 00 00 00 e........... +1158 0x00005b27 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1506279424 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c8 59 02 00 00 00 00 00 12 a6 79 c3 9d 01 00 00 .....!...o3........Y........y..... +1159 0x00005b49 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c8 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 7c 77 4d f6 f6 87 a9 18 ?.....3...|8............Y......=B.....&......... +1160 0x00005b8c control 12 -1 810312 0 -1 810312 0 ff ff ff ff 48 5d 0c 00 00 00 00 00 ....H]...... +1161 0x00005b98 control 12 30 827564 0 30 827564 0 1e 00 00 00 ac a0 0c 00 00 00 00 00 ............ +1162 0x00005ba4 data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -922025984 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 0b c9 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1163 0x00005bc2 control 12 -1 810313 0 -1 810313 0 ff ff ff ff 49 5d 0c 00 00 00 00 00 ....I]...... +1164 0x00005bce control 12 26 827565 0 26 827565 0 1a 00 00 00 ad a0 0c 00 00 00 00 00 ............ +1165 0x00005bda data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -921894912 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0d c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1166 0x00005bf4 control 12 -1 810314 0 -1 810314 0 ff ff ff ff 4a 5d 0c 00 00 00 00 00 ....J]...... +1167 0x00005c00 control 12 26 827566 0 26 827566 0 1a 00 00 00 ae a0 0c 00 00 00 00 00 ............ +1168 0x00005c0c data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -921763840 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 0f c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1169 0x00005c26 control 12 -1 810315 0 -1 810315 0 ff ff ff ff 4b 5d 0c 00 00 00 00 00 ....K]...... +1170 0x00005c32 control 12 26 827567 0 26 827567 0 1a 00 00 00 af a0 0c 00 00 00 00 00 ............ +1171 0x00005c3e data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -921632768 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 11 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1172 0x00005c58 control 12 -1 810316 0 -1 810316 0 ff ff ff ff 4c 5d 0c 00 00 00 00 00 ....L]...... +1173 0x00005c64 control 12 101 827568 0 101 827568 0 65 00 00 00 b0 a0 0c 00 00 00 00 00 e........... +1174 0x00005c70 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1506344960 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 c9 59 02 00 00 00 00 00 42 a7 79 c3 9d 01 00 00 .....!...o3........Y......B.y..... +1175 0x00005c92 data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 c9 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f e8 c6 6b 08 f7 87 a9 18 ?.....3...|8............Y......=B.....&......... +1176 0x00005cd5 control 12 -1 810317 0 -1 810317 0 ff ff ff ff 4d 5d 0c 00 00 00 00 00 ....M]...... +1177 0x00005ce1 control 12 30 827569 0 30 827569 0 1e 00 00 00 b1 a0 0c 00 00 00 00 00 ............ +1178 0x00005ced data 30 26 1660931669 1345985458 1660931669 1345985458 196609 -921501696 1a 00 00 00 55 ce ff 62 b2 1b 3a 50 01 00 03 00 00 00 13 c9 21 00 00 00 00 00 00 00 00 00 ....U..b..:P........!......... +1179 0x00005d0b control 12 -1 810318 0 -1 810318 0 ff ff ff ff 4e 5d 0c 00 00 00 00 00 ....N]...... +1180 0x00005d17 control 12 26 827570 0 26 827570 0 1a 00 00 00 b2 a0 0c 00 00 00 00 00 ............ +1181 0x00005d23 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -921370624 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 15 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1182 0x00005d3d control 12 -1 810319 0 -1 810319 0 ff ff ff ff 4f 5d 0c 00 00 00 00 00 ....O]...... +1183 0x00005d49 control 12 -2 93944 93918 -2 93944 93918 fe ff ff ff f8 6e 01 00 de 6e 01 00 .....n...n.. +1184 0x00005d55 control 12 26 827571 0 26 827571 0 1a 00 00 00 b3 a0 0c 00 00 00 00 00 ............ +1185 0x00005d61 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -921239552 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 17 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1186 0x00005d7b control 12 -1 810320 0 -1 810320 0 ff ff ff ff 50 5d 0c 00 00 00 00 00 ....P]...... +1187 0x00005d87 control 12 26 827572 0 26 827572 0 1a 00 00 00 b4 a0 0c 00 00 00 00 00 ............ +1188 0x00005d93 data 26 22 1080266580 1076977378 1080266580 1076977378 196609 -921108480 16 00 00 00 54 8f 63 40 e2 5e 31 40 01 00 03 00 00 00 19 c9 21 00 00 00 00 00 ....T.c@.^1@........!..... +1189 0x00005dad control 12 101 827573 0 101 827573 0 65 00 00 00 b5 a0 0c 00 00 00 00 00 e........... +1190 0x00005db9 data 34 30 -803725028 -1154256956 -803725028 -1154256956 196609 1506410496 1e 00 00 00 1c 21 18 d0 c4 6f 33 bb 01 00 03 00 00 00 ca 59 02 00 00 00 00 00 73 a8 79 c3 9d 01 00 00 .....!...o3........Y......s.y..... +1191 0x00005ddb data 67 63 -885848936 947696652 -885848936 947696652 196609 65536 3f 00 00 00 98 04 33 cb 0c b4 7c 38 01 00 03 00 00 00 01 00 00 00 00 ca 59 02 00 00 00 00 00 3d 42 0c c0 e7 c1 b8 26 00 00 00 00 ff ff ff ff ff ff ff 7f ff ff ff ff ff ff ff 7f 30 bb 95 1a f7 87 a9 18 ?.....3...|8............Y......=B.....&......... diff --git a/captures/044-frida-loopback-write-test-int-123456789/mixed-stream-57433-to-57415.tsv b/captures/044-frida-loopback-write-test-int-123456789/mixed-stream-57433-to-57415.tsv new file mode 100644 index 0000000..b16977a --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/mixed-stream-57433-to-57415.tsv @@ -0,0 +1,1120 @@ +index offset record_type record_size first_i32 second_i32 third_i32 body_i32_0 body_i32_1 body_i32_2 body_i32_3 hex_prefix ascii_preview +0 0x00000000 control 12 -1 827206 0 -1 827206 0 ff ff ff ff 46 9f 0c 00 00 00 00 00 ....F....... +1 0x0000000c control 12 22 809968 0 22 809968 0 16 00 00 00 f0 5b 0c 00 00 00 00 00 .....[...... +2 0x00000018 data 22 18 2213605 0 2213605 0 196609 0 12 00 00 00 e5 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +3 0x0000002e control 12 -1 827207 0 -1 827207 0 ff ff ff ff 47 9f 0c 00 00 00 00 00 ....G....... +4 0x0000003a control 12 22 809969 0 22 809969 0 16 00 00 00 f1 5b 0c 00 00 00 00 00 .....[...... +5 0x00000046 data 22 18 2213607 0 2213607 0 196609 0 12 00 00 00 e7 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +6 0x0000005c control 12 -1 827208 0 -1 827208 0 ff ff ff ff 48 9f 0c 00 00 00 00 00 ....H....... +7 0x00000068 control 12 52 809970 0 52 809970 0 34 00 00 00 f2 5b 0c 00 00 00 00 00 4....[...... +8 0x00000074 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 83 59 02 00 00 00 00 00 00 00 35 b5 ed a6 5a 01 00 00 "0...Dk.................L."".([......Y........5..." +9 0x000000a8 control 12 -1 827209 0 -1 827209 0 ff ff ff ff 49 9f 0c 00 00 00 00 00 ....I....... +10 0x000000b4 control 12 26 809971 0 26 809971 0 1a 00 00 00 f3 5b 0c 00 00 00 00 00 .....[...... +11 0x000000c0 data 26 22 2213609 0 2213609 0 196609 0 16 00 00 00 e9 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +12 0x000000da control 12 -2 93876 93901 -2 93876 93901 fe ff ff ff b4 6e 01 00 cd 6e 01 00 .....n...n.. +13 0x000000e6 control 12 -1 827210 0 -1 827210 0 ff ff ff ff 4a 9f 0c 00 00 00 00 00 ....J....... +14 0x000000f2 control 12 22 809972 0 22 809972 0 16 00 00 00 f4 5b 0c 00 00 00 00 00 .....[...... +15 0x000000fe data 22 18 2213611 0 2213611 0 196609 0 12 00 00 00 eb c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +16 0x00000114 control 12 -1 827211 0 -1 827211 0 ff ff ff ff 4b 9f 0c 00 00 00 00 00 ....K....... +17 0x00000120 control 12 22 809973 0 22 809973 0 16 00 00 00 f5 5b 0c 00 00 00 00 00 .....[...... +18 0x0000012c data 22 18 2213613 0 2213613 0 196609 0 12 00 00 00 ed c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +19 0x00000142 control 12 -1 827212 0 -1 827212 0 ff ff ff ff 4c 9f 0c 00 00 00 00 00 ....L....... +20 0x0000014e control 12 22 809974 0 22 809974 0 16 00 00 00 f6 5b 0c 00 00 00 00 00 .....[...... +21 0x0000015a data 22 18 2213615 0 2213615 0 196609 0 12 00 00 00 ef c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +22 0x00000170 control 12 -1 827213 0 -1 827213 0 ff ff ff ff 4d 9f 0c 00 00 00 00 00 ....M....... +23 0x0000017c control 12 52 809975 0 52 809975 0 34 00 00 00 f7 5b 0c 00 00 00 00 00 4....[...... +24 0x00000188 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 84 59 02 00 00 00 00 00 00 00 cd ae 1c a7 5a 01 00 00 "0...Dk.................L."".([......Y............" +25 0x000001bc control 12 -1 827214 0 -1 827214 0 ff ff ff ff 4e 9f 0c 00 00 00 00 00 ....N....... +26 0x000001c8 control 12 26 809976 0 26 809976 0 1a 00 00 00 f8 5b 0c 00 00 00 00 00 .....[...... +27 0x000001d4 data 26 22 2213617 0 2213617 0 196609 0 16 00 00 00 f1 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +28 0x000001ee control 12 -1 827215 0 -1 827215 0 ff ff ff ff 4f 9f 0c 00 00 00 00 00 ....O....... +29 0x000001fa control 12 22 809977 0 22 809977 0 16 00 00 00 f9 5b 0c 00 00 00 00 00 .....[...... +30 0x00000206 data 22 18 2213619 0 2213619 0 196609 0 12 00 00 00 f3 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +31 0x0000021c control 12 -1 827216 0 -1 827216 0 ff ff ff ff 50 9f 0c 00 00 00 00 00 ....P....... +32 0x00000228 control 12 22 809978 0 22 809978 0 16 00 00 00 fa 5b 0c 00 00 00 00 00 .....[...... +33 0x00000234 data 22 18 2213621 0 2213621 0 196609 0 12 00 00 00 f5 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +34 0x0000024a control 12 -2 93877 93902 -2 93877 93902 fe ff ff ff b5 6e 01 00 ce 6e 01 00 .....n...n.. +35 0x00000256 control 12 -1 827217 0 -1 827217 0 ff ff ff ff 51 9f 0c 00 00 00 00 00 ....Q....... +36 0x00000262 control 12 22 809979 0 22 809979 0 16 00 00 00 fb 5b 0c 00 00 00 00 00 .....[...... +37 0x0000026e data 22 18 2213623 0 2213623 0 196609 0 12 00 00 00 f7 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +38 0x00000284 control 12 -1 827218 0 -1 827218 0 ff ff ff ff 52 9f 0c 00 00 00 00 00 ....R....... +39 0x00000290 control 12 -1 827219 0 -1 827219 0 ff ff ff ff 53 9f 0c 00 00 00 00 00 ....S....... +40 0x0000029c control 12 52 809980 0 52 809980 0 34 00 00 00 fc 5b 0c 00 00 00 00 00 4....[...... +41 0x000002a8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 85 59 02 00 00 00 00 00 00 00 e4 46 4b a7 5a 01 00 00 "0...Dk.................L."".([......Y.........FK." +42 0x000002dc control 12 -1 827220 0 -1 827220 0 ff ff ff ff 54 9f 0c 00 00 00 00 00 ....T....... +43 0x000002e8 control 12 26 809981 0 26 809981 0 1a 00 00 00 fd 5b 0c 00 00 00 00 00 .....[...... +44 0x000002f4 data 26 22 2213625 0 2213625 0 196609 0 16 00 00 00 f9 c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +45 0x0000030e control 12 -1 827221 0 -1 827221 0 ff ff ff ff 55 9f 0c 00 00 00 00 00 ....U....... +46 0x0000031a control 12 22 809982 0 22 809982 0 16 00 00 00 fe 5b 0c 00 00 00 00 00 .....[...... +47 0x00000326 data 22 18 2213627 0 2213627 0 196609 0 12 00 00 00 fb c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +48 0x0000033c control 12 -1 827222 0 -1 827222 0 ff ff ff ff 56 9f 0c 00 00 00 00 00 ....V....... +49 0x00000348 control 12 22 809983 0 22 809983 0 16 00 00 00 ff 5b 0c 00 00 00 00 00 .....[...... +50 0x00000354 data 22 18 2213629 0 2213629 0 196609 0 12 00 00 00 fd c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +51 0x0000036a control 12 -1 827223 0 -1 827223 0 ff ff ff ff 57 9f 0c 00 00 00 00 00 ....W....... +52 0x00000376 control 12 22 809984 0 22 809984 0 16 00 00 00 00 5c 0c 00 00 00 00 00 .....\...... +53 0x00000382 data 22 18 2213631 0 2213631 0 196609 0 12 00 00 00 ff c6 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +54 0x00000398 control 12 -1 827224 0 -1 827224 0 ff ff ff ff 58 9f 0c 00 00 00 00 00 ....X....... +55 0x000003a4 control 12 52 809985 0 52 809985 0 34 00 00 00 01 5c 0c 00 00 00 00 00 4....\...... +56 0x000003b0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 86 59 02 00 00 00 00 00 00 00 f5 ea 79 a7 5a 01 00 00 "0...Dk.................L."".([......Y..........y." +57 0x000003e4 control 12 -1 827225 0 -1 827225 0 ff ff ff ff 59 9f 0c 00 00 00 00 00 ....Y....... +58 0x000003f0 control 12 26 809986 0 26 809986 0 1a 00 00 00 02 5c 0c 00 00 00 00 00 .....\...... +59 0x000003fc data 26 22 2213633 0 2213633 0 196609 0 16 00 00 00 01 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +60 0x00000416 control 12 -1 827226 0 -1 827226 0 ff ff ff ff 5a 9f 0c 00 00 00 00 00 ....Z....... +61 0x00000422 control 12 22 809987 0 22 809987 0 16 00 00 00 03 5c 0c 00 00 00 00 00 .....\...... +62 0x0000042e data 22 18 2213635 0 2213635 0 196609 0 12 00 00 00 03 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +63 0x00000444 control 12 -2 93878 93903 -2 93878 93903 fe ff ff ff b6 6e 01 00 cf 6e 01 00 .....n...n.. +64 0x00000450 control 12 -1 827227 0 -1 827227 0 ff ff ff ff 5b 9f 0c 00 00 00 00 00 ....[....... +65 0x0000045c control 12 22 809988 0 22 809988 0 16 00 00 00 04 5c 0c 00 00 00 00 00 .....\...... +66 0x00000468 data 22 18 2213637 0 2213637 0 196609 0 12 00 00 00 05 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +67 0x0000047e control 12 -1 827228 0 -1 827228 0 ff ff ff ff 5c 9f 0c 00 00 00 00 00 ....\....... +68 0x0000048a control 12 22 809989 0 22 809989 0 16 00 00 00 05 5c 0c 00 00 00 00 00 .....\...... +69 0x00000496 data 22 18 2213639 0 2213639 0 196609 0 12 00 00 00 07 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +70 0x000004ac control 12 -1 827229 0 -1 827229 0 ff ff ff ff 5d 9f 0c 00 00 00 00 00 ....]....... +71 0x000004b8 control 12 -1 827230 0 -1 827230 0 ff ff ff ff 5e 9f 0c 00 00 00 00 00 ....^....... +72 0x000004c4 control 12 52 809990 0 52 809990 0 34 00 00 00 06 5c 0c 00 00 00 00 00 4....\...... +73 0x000004d0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 87 59 02 00 00 00 00 00 00 00 01 64 a8 a7 5a 01 00 00 "0...Dk.................L."".([......Y.........d.." +74 0x00000504 control 12 -1 827231 0 -1 827231 0 ff ff ff ff 5f 9f 0c 00 00 00 00 00 ...._....... +75 0x00000510 control 12 26 809991 0 26 809991 0 1a 00 00 00 07 5c 0c 00 00 00 00 00 .....\...... +76 0x0000051c data 26 22 2213641 0 2213641 0 196609 0 16 00 00 00 09 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +77 0x00000536 control 12 -1 827232 0 -1 827232 0 ff ff ff ff 60 9f 0c 00 00 00 00 00 ....`....... +78 0x00000542 control 12 22 809992 0 22 809992 0 16 00 00 00 08 5c 0c 00 00 00 00 00 .....\...... +79 0x0000054e data 22 18 2213643 0 2213643 0 196609 0 12 00 00 00 0b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +80 0x00000564 control 12 -1 827233 0 -1 827233 0 ff ff ff ff 61 9f 0c 00 00 00 00 00 ....a....... +81 0x00000570 control 12 22 809993 0 22 809993 0 16 00 00 00 09 5c 0c 00 00 00 00 00 .....\...... +82 0x0000057c data 22 18 2213645 0 2213645 0 196609 0 12 00 00 00 0d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +83 0x00000592 control 12 -1 827234 0 -1 827234 0 ff ff ff ff 62 9f 0c 00 00 00 00 00 ....b....... +84 0x0000059e control 12 22 809994 0 22 809994 0 16 00 00 00 0a 5c 0c 00 00 00 00 00 .....\...... +85 0x000005aa data 22 18 2213647 0 2213647 0 196609 0 12 00 00 00 0f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +86 0x000005c0 control 12 -2 93879 93904 -2 93879 93904 fe ff ff ff b7 6e 01 00 d0 6e 01 00 .....n...n.. +87 0x000005cc control 12 -1 827235 0 -1 827235 0 ff ff ff ff 63 9f 0c 00 00 00 00 00 ....c....... +88 0x000005d8 control 12 52 809995 0 52 809995 0 34 00 00 00 0b 5c 0c 00 00 00 00 00 4....\...... +89 0x000005e4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 88 59 02 00 00 00 00 00 00 00 ef f1 d6 a7 5a 01 00 00 "0...Dk.................L."".([......Y............" +90 0x00000618 control 12 -1 827236 0 -1 827236 0 ff ff ff ff 64 9f 0c 00 00 00 00 00 ....d....... +91 0x00000624 control 12 26 809996 0 26 809996 0 1a 00 00 00 0c 5c 0c 00 00 00 00 00 .....\...... +92 0x00000630 data 26 22 2213649 0 2213649 0 196609 0 16 00 00 00 11 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +93 0x0000064a control 12 -1 827237 0 -1 827237 0 ff ff ff ff 65 9f 0c 00 00 00 00 00 ....e....... +94 0x00000656 control 12 22 809997 0 22 809997 0 16 00 00 00 0d 5c 0c 00 00 00 00 00 .....\...... +95 0x00000662 data 22 18 2213651 0 2213651 0 196609 0 12 00 00 00 13 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +96 0x00000678 control 12 -1 827238 0 -1 827238 0 ff ff ff ff 66 9f 0c 00 00 00 00 00 ....f....... +97 0x00000684 control 12 22 809998 0 22 809998 0 16 00 00 00 0e 5c 0c 00 00 00 00 00 .....\...... +98 0x00000690 data 22 18 2213653 0 2213653 0 196609 0 12 00 00 00 15 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +99 0x000006a6 control 12 -1 827239 0 -1 827239 0 ff ff ff ff 67 9f 0c 00 00 00 00 00 ....g....... +100 0x000006b2 control 12 22 809999 0 22 809999 0 16 00 00 00 0f 5c 0c 00 00 00 00 00 .....\...... +101 0x000006be data 22 18 2213655 0 2213655 0 196609 0 12 00 00 00 17 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +102 0x000006d4 control 12 -1 827240 0 -1 827240 0 ff ff ff ff 68 9f 0c 00 00 00 00 00 ....h....... +103 0x000006e0 control 12 52 810000 0 52 810000 0 34 00 00 00 10 5c 0c 00 00 00 00 00 4....\...... +104 0x000006ec data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 89 59 02 00 00 00 00 00 00 00 b0 7d 05 a8 5a 01 00 00 "0...Dk.................L."".([......Y.........}.." +105 0x00000720 control 12 -1 827241 0 -1 827241 0 ff ff ff ff 69 9f 0c 00 00 00 00 00 ....i....... +106 0x0000072c control 12 26 810001 0 26 810001 0 1a 00 00 00 11 5c 0c 00 00 00 00 00 .....\...... +107 0x00000738 data 26 22 2213657 0 2213657 0 196609 0 16 00 00 00 19 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +108 0x00000752 control 12 -1 827242 0 -1 827242 0 ff ff ff ff 6a 9f 0c 00 00 00 00 00 ....j....... +109 0x0000075e control 12 22 810002 0 22 810002 0 16 00 00 00 12 5c 0c 00 00 00 00 00 .....\...... +110 0x0000076a data 22 18 2213659 0 2213659 0 196609 0 12 00 00 00 1b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +111 0x00000780 control 12 -1 827243 0 -1 827243 0 ff ff ff ff 6b 9f 0c 00 00 00 00 00 ....k....... +112 0x0000078c control 12 22 810003 0 22 810003 0 16 00 00 00 13 5c 0c 00 00 00 00 00 .....\...... +113 0x00000798 data 22 18 2213661 0 2213661 0 196609 0 12 00 00 00 1d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +114 0x000007ae control 12 -2 93880 93905 -2 93880 93905 fe ff ff ff b8 6e 01 00 d1 6e 01 00 .....n...n.. +115 0x000007ba control 12 -1 827244 0 -1 827244 0 ff ff ff ff 6c 9f 0c 00 00 00 00 00 ....l....... +116 0x000007c6 control 12 22 810004 0 22 810004 0 16 00 00 00 14 5c 0c 00 00 00 00 00 .....\...... +117 0x000007d2 data 22 18 2213663 0 2213663 0 196609 0 12 00 00 00 1f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +118 0x000007e8 control 12 -1 827245 0 -1 827245 0 ff ff ff ff 6d 9f 0c 00 00 00 00 00 ....m....... +119 0x000007f4 control 12 52 810005 0 52 810005 0 34 00 00 00 15 5c 0c 00 00 00 00 00 4....\...... +120 0x00000800 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8a 59 02 00 00 00 00 00 00 00 b2 09 34 a8 5a 01 00 00 "0...Dk.................L."".([......Y..........4." +121 0x00000834 control 12 -1 827246 0 -1 827246 0 ff ff ff ff 6e 9f 0c 00 00 00 00 00 ....n....... +122 0x00000840 control 12 26 810006 0 26 810006 0 1a 00 00 00 16 5c 0c 00 00 00 00 00 .....\...... +123 0x0000084c data 26 22 2213665 0 2213665 0 196609 0 16 00 00 00 21 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....!.!................... +124 0x00000866 control 12 -1 827247 0 -1 827247 0 ff ff ff ff 6f 9f 0c 00 00 00 00 00 ....o....... +125 0x00000872 control 12 22 810007 0 22 810007 0 16 00 00 00 17 5c 0c 00 00 00 00 00 .....\...... +126 0x0000087e data 22 18 2213667 0 2213667 0 196609 0 12 00 00 00 23 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#.!............... +127 0x00000894 control 12 -1 827248 0 -1 827248 0 ff ff ff ff 70 9f 0c 00 00 00 00 00 ....p....... +128 0x000008a0 control 12 22 810008 0 22 810008 0 16 00 00 00 18 5c 0c 00 00 00 00 00 .....\...... +129 0x000008ac data 22 18 2213669 0 2213669 0 196609 0 12 00 00 00 25 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....%.!............... +130 0x000008c2 control 12 -1 827249 0 -1 827249 0 ff ff ff ff 71 9f 0c 00 00 00 00 00 ....q....... +131 0x000008ce control 12 22 810009 0 22 810009 0 16 00 00 00 19 5c 0c 00 00 00 00 00 .....\...... +132 0x000008da data 22 18 2213671 0 2213671 0 196609 0 12 00 00 00 27 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'.!............... +133 0x000008f0 control 12 -1 827250 0 -1 827250 0 ff ff ff ff 72 9f 0c 00 00 00 00 00 ....r....... +134 0x000008fc control 12 -1 827251 0 -1 827251 0 ff ff ff ff 73 9f 0c 00 00 00 00 00 ....s....... +135 0x00000908 control 12 52 810010 0 52 810010 0 34 00 00 00 1a 5c 0c 00 00 00 00 00 4....\...... +136 0x00000914 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8b 59 02 00 00 00 00 00 00 00 c0 ab 62 a8 5a 01 00 00 "0...Dk.................L."".([......Y..........b." +137 0x00000948 control 12 -1 827252 0 -1 827252 0 ff ff ff ff 74 9f 0c 00 00 00 00 00 ....t....... +138 0x00000954 control 12 26 810011 0 26 810011 0 1a 00 00 00 1b 5c 0c 00 00 00 00 00 .....\...... +139 0x00000960 data 26 22 2213673 0 2213673 0 196609 0 16 00 00 00 29 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....).!................... +140 0x0000097a control 12 -1 827253 0 -1 827253 0 ff ff ff ff 75 9f 0c 00 00 00 00 00 ....u....... +141 0x00000986 control 12 22 810012 0 22 810012 0 16 00 00 00 1c 5c 0c 00 00 00 00 00 .....\...... +142 0x00000992 data 22 18 2213675 0 2213675 0 196609 0 12 00 00 00 2b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+.!............... +143 0x000009a8 control 12 -2 93881 93906 -2 93881 93906 fe ff ff ff b9 6e 01 00 d2 6e 01 00 .....n...n.. +144 0x000009b4 control 12 -1 827254 0 -1 827254 0 ff ff ff ff 76 9f 0c 00 00 00 00 00 ....v....... +145 0x000009c0 control 12 22 810013 0 22 810013 0 16 00 00 00 1d 5c 0c 00 00 00 00 00 .....\...... +146 0x000009cc data 22 18 2213677 0 2213677 0 196609 0 12 00 00 00 2d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....-.!............... +147 0x000009e2 control 12 -1 827255 0 -1 827255 0 ff ff ff ff 77 9f 0c 00 00 00 00 00 ....w....... +148 0x000009ee control 12 22 810014 0 22 810014 0 16 00 00 00 1e 5c 0c 00 00 00 00 00 .....\...... +149 0x000009fa data 22 18 2213679 0 2213679 0 196609 0 12 00 00 00 2f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../.!............... +150 0x00000a10 control 12 -1 827256 0 -1 827256 0 ff ff ff ff 78 9f 0c 00 00 00 00 00 ....x....... +151 0x00000a1c control 12 52 810015 0 52 810015 0 34 00 00 00 1f 5c 0c 00 00 00 00 00 4....\...... +152 0x00000a28 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8c 59 02 00 00 00 00 00 00 00 86 1a 91 a8 5a 01 00 00 "0...Dk.................L."".([......Y............" +153 0x00000a5c control 12 -1 827257 0 -1 827257 0 ff ff ff ff 79 9f 0c 00 00 00 00 00 ....y....... +154 0x00000a68 control 12 26 810016 0 26 810016 0 1a 00 00 00 20 5c 0c 00 00 00 00 00 .... \...... +155 0x00000a74 data 26 22 2213681 0 2213681 0 196609 0 16 00 00 00 31 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....1.!................... +156 0x00000a8e control 12 -1 827258 0 -1 827258 0 ff ff ff ff 7a 9f 0c 00 00 00 00 00 ....z....... +157 0x00000a9a control 12 22 810017 0 22 810017 0 16 00 00 00 21 5c 0c 00 00 00 00 00 ....!\...... +158 0x00000aa6 data 22 18 2213683 0 2213683 0 196609 0 12 00 00 00 33 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3.!............... +159 0x00000abc control 12 -1 827259 0 -1 827259 0 ff ff ff ff 7b 9f 0c 00 00 00 00 00 ....{....... +160 0x00000ac8 control 12 22 810018 0 22 810018 0 16 00 00 00 22 5c 0c 00 00 00 00 00 "....""\......" +161 0x00000ad4 data 22 18 2213685 0 2213685 0 196609 0 12 00 00 00 35 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....5.!............... +162 0x00000aea control 12 -2 93882 93907 -2 93882 93907 fe ff ff ff ba 6e 01 00 d3 6e 01 00 .....n...n.. +163 0x00000af6 control 12 -1 827260 0 -1 827260 0 ff ff ff ff 7c 9f 0c 00 00 00 00 00 ....|....... +164 0x00000b02 control 12 22 810019 0 22 810019 0 16 00 00 00 23 5c 0c 00 00 00 00 00 ....#\...... +165 0x00000b0e data 22 18 2213687 0 2213687 0 196609 0 12 00 00 00 37 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7.!............... +166 0x00000b24 control 12 -1 827261 0 -1 827261 0 ff ff ff ff 7d 9f 0c 00 00 00 00 00 ....}....... +167 0x00000b30 control 12 52 810020 0 52 810020 0 34 00 00 00 24 5c 0c 00 00 00 00 00 4...$\...... +168 0x00000b3c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8d 59 02 00 00 00 00 00 00 00 32 aa bf a8 5a 01 00 00 "0...Dk.................L."".([......Y........2..." +169 0x00000b70 control 12 -1 827262 0 -1 827262 0 ff ff ff ff 7e 9f 0c 00 00 00 00 00 ....~....... +170 0x00000b7c control 12 26 810021 0 26 810021 0 1a 00 00 00 25 5c 0c 00 00 00 00 00 ....%\...... +171 0x00000b88 data 26 22 2213689 0 2213689 0 196609 0 16 00 00 00 39 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....9.!................... +172 0x00000ba2 control 12 -1 827263 0 -1 827263 0 ff ff ff ff 7f 9f 0c 00 00 00 00 00 ............ +173 0x00000bae control 12 22 810022 0 22 810022 0 16 00 00 00 26 5c 0c 00 00 00 00 00 ....&\...... +174 0x00000bba data 22 18 2213691 0 2213691 0 196609 0 12 00 00 00 3b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;.!............... +175 0x00000bd0 control 12 -1 827264 0 -1 827264 0 ff ff ff ff 80 9f 0c 00 00 00 00 00 ............ +176 0x00000bdc control 12 22 810023 0 22 810023 0 16 00 00 00 27 5c 0c 00 00 00 00 00 ....'\...... +177 0x00000be8 data 22 18 2213693 0 2213693 0 196609 0 12 00 00 00 3d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....=.!............... +178 0x00000bfe control 12 -1 827265 0 -1 827265 0 ff ff ff ff 81 9f 0c 00 00 00 00 00 ............ +179 0x00000c0a control 12 22 810024 0 22 810024 0 16 00 00 00 28 5c 0c 00 00 00 00 00 ....(\...... +180 0x00000c16 data 22 18 2213695 0 2213695 0 196609 0 12 00 00 00 3f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?.!............... +181 0x00000c2c control 12 -1 827266 0 -1 827266 0 ff ff ff ff 82 9f 0c 00 00 00 00 00 ............ +182 0x00000c38 control 12 52 810025 0 52 810025 0 34 00 00 00 29 5c 0c 00 00 00 00 00 4...)\...... +183 0x00000c44 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8e 59 02 00 00 00 00 00 00 00 9d 24 ee a8 5a 01 00 00 "0...Dk.................L."".([......Y.........$.." +184 0x00000c78 control 12 -1 827267 0 -1 827267 0 ff ff ff ff 83 9f 0c 00 00 00 00 00 ............ +185 0x00000c84 control 12 26 810026 0 26 810026 0 1a 00 00 00 2a 5c 0c 00 00 00 00 00 ....*\...... +186 0x00000c90 data 26 22 2213697 0 2213697 0 196609 0 16 00 00 00 41 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....A.!................... +187 0x00000caa control 12 -1 827268 0 -1 827268 0 ff ff ff ff 84 9f 0c 00 00 00 00 00 ............ +188 0x00000cb6 control 12 22 810027 0 22 810027 0 16 00 00 00 2b 5c 0c 00 00 00 00 00 ....+\...... +189 0x00000cc2 data 22 18 2213699 0 2213699 0 196609 0 12 00 00 00 43 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C.!............... +190 0x00000cd8 control 12 -2 93883 93908 -2 93883 93908 fe ff ff ff bb 6e 01 00 d4 6e 01 00 .....n...n.. +191 0x00000ce4 control 12 -1 827269 0 -1 827269 0 ff ff ff ff 85 9f 0c 00 00 00 00 00 ............ +192 0x00000cf0 control 12 22 810028 0 22 810028 0 16 00 00 00 2c 5c 0c 00 00 00 00 00 ....,\...... +193 0x00000cfc data 22 18 2213701 0 2213701 0 196609 0 12 00 00 00 45 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....E.!............... +194 0x00000d12 control 12 -1 827270 0 -1 827270 0 ff ff ff ff 86 9f 0c 00 00 00 00 00 ............ +195 0x00000d1e control 12 22 810029 0 22 810029 0 16 00 00 00 2d 5c 0c 00 00 00 00 00 ....-\...... +196 0x00000d2a data 22 18 2213703 0 2213703 0 196609 0 12 00 00 00 47 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G.!............... +197 0x00000d40 control 12 -1 827271 0 -1 827271 0 ff ff ff ff 87 9f 0c 00 00 00 00 00 ............ +198 0x00000d4c control 12 52 810030 0 52 810030 0 34 00 00 00 2e 5c 0c 00 00 00 00 00 4....\...... +199 0x00000d58 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 8f 59 02 00 00 00 00 00 00 00 2f 9a 1c a9 5a 01 00 00 "0...Dk.................L."".([......Y......../..." +200 0x00000d8c control 12 -1 827272 0 -1 827272 0 ff ff ff ff 88 9f 0c 00 00 00 00 00 ............ +201 0x00000d98 control 12 26 810031 0 26 810031 0 1a 00 00 00 2f 5c 0c 00 00 00 00 00 ..../\...... +202 0x00000da4 data 26 22 2213705 0 2213705 0 196609 0 16 00 00 00 49 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....I.!................... +203 0x00000dbe control 12 -1 827273 0 -1 827273 0 ff ff ff ff 89 9f 0c 00 00 00 00 00 ............ +204 0x00000dca control 12 22 810032 0 22 810032 0 16 00 00 00 30 5c 0c 00 00 00 00 00 ....0\...... +205 0x00000dd6 data 22 18 2213707 0 2213707 0 196609 0 12 00 00 00 4b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K.!............... +206 0x00000dec control 12 -1 827274 0 -1 827274 0 ff ff ff ff 8a 9f 0c 00 00 00 00 00 ............ +207 0x00000df8 control 12 22 810033 0 22 810033 0 16 00 00 00 31 5c 0c 00 00 00 00 00 ....1\...... +208 0x00000e04 data 22 18 2213709 0 2213709 0 196609 0 12 00 00 00 4d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....M.!............... +209 0x00000e1a control 12 -1 827275 0 -1 827275 0 ff ff ff ff 8b 9f 0c 00 00 00 00 00 ............ +210 0x00000e26 control 12 22 810034 0 22 810034 0 16 00 00 00 32 5c 0c 00 00 00 00 00 ....2\...... +211 0x00000e32 data 22 18 2213711 0 2213711 0 196609 0 12 00 00 00 4f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O.!............... +212 0x00000e48 control 12 -1 827276 0 -1 827276 0 ff ff ff ff 8c 9f 0c 00 00 00 00 00 ............ +213 0x00000e54 control 12 52 810035 0 52 810035 0 34 00 00 00 33 5c 0c 00 00 00 00 00 4...3\...... +214 0x00000e60 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 90 59 02 00 00 00 00 00 00 00 a4 63 4b a9 5a 01 00 00 "0...Dk.................L."".([......Y.........cK." +215 0x00000e94 control 12 -1 827277 0 -1 827277 0 ff ff ff ff 8d 9f 0c 00 00 00 00 00 ............ +216 0x00000ea0 control 12 26 810036 0 26 810036 0 1a 00 00 00 34 5c 0c 00 00 00 00 00 ....4\...... +217 0x00000eac data 26 22 2213713 0 2213713 0 196609 0 16 00 00 00 51 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Q.!................... +218 0x00000ec6 control 12 -2 93884 93909 -2 93884 93909 fe ff ff ff bc 6e 01 00 d5 6e 01 00 .....n...n.. +219 0x00000ed2 control 12 -1 827278 0 -1 827278 0 ff ff ff ff 8e 9f 0c 00 00 00 00 00 ............ +220 0x00000ede control 12 22 810037 0 22 810037 0 16 00 00 00 35 5c 0c 00 00 00 00 00 ....5\...... +221 0x00000eea data 22 18 2213715 0 2213715 0 196609 0 12 00 00 00 53 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S.!............... +222 0x00000f00 control 12 -1 827279 0 -1 827279 0 ff ff ff ff 8f 9f 0c 00 00 00 00 00 ............ +223 0x00000f0c control 12 22 810038 0 22 810038 0 16 00 00 00 36 5c 0c 00 00 00 00 00 ....6\...... +224 0x00000f18 data 22 18 2213717 0 2213717 0 196609 0 12 00 00 00 55 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....U.!............... +225 0x00000f2e control 12 -1 827280 0 -1 827280 0 ff ff ff ff 90 9f 0c 00 00 00 00 00 ............ +226 0x00000f3a control 12 22 810039 0 22 810039 0 16 00 00 00 37 5c 0c 00 00 00 00 00 ....7\...... +227 0x00000f46 data 22 18 2213719 0 2213719 0 196609 0 12 00 00 00 57 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W.!............... +228 0x00000f5c control 12 -1 827281 0 -1 827281 0 ff ff ff ff 91 9f 0c 00 00 00 00 00 ............ +229 0x00000f68 control 12 -1 827282 0 -1 827282 0 ff ff ff ff 92 9f 0c 00 00 00 00 00 ............ +230 0x00000f74 control 12 52 810040 0 52 810040 0 34 00 00 00 38 5c 0c 00 00 00 00 00 4...8\...... +231 0x00000f80 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 91 59 02 00 00 00 00 00 00 00 db ea 79 a9 5a 01 00 00 "0...Dk.................L."".([......Y..........y." +232 0x00000fb4 control 12 -1 827283 0 -1 827283 0 ff ff ff ff 93 9f 0c 00 00 00 00 00 ............ +233 0x00000fc0 control 12 26 810041 0 26 810041 0 1a 00 00 00 39 5c 0c 00 00 00 00 00 ....9\...... +234 0x00000fcc data 26 22 2213721 0 2213721 0 196609 0 16 00 00 00 59 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....Y.!................... +235 0x00000fe6 control 12 -1 827284 0 -1 827284 0 ff ff ff ff 94 9f 0c 00 00 00 00 00 ............ +236 0x00000ff2 control 12 22 810042 0 22 810042 0 16 00 00 00 3a 5c 0c 00 00 00 00 00 ....:\...... +237 0x00000ffe data 22 18 2213723 0 2213723 0 196609 0 12 00 00 00 5b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[.!............... +238 0x00001014 control 12 -1 827285 0 -1 827285 0 ff ff ff ff 95 9f 0c 00 00 00 00 00 ............ +239 0x00001020 control 12 22 810043 0 22 810043 0 16 00 00 00 3b 5c 0c 00 00 00 00 00 ....;\...... +240 0x0000102c data 22 18 2213725 0 2213725 0 196609 0 12 00 00 00 5d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....].!............... +241 0x00001042 control 12 -2 93885 93910 -2 93885 93910 fe ff ff ff bd 6e 01 00 d6 6e 01 00 .....n...n.. +242 0x0000104e control 12 -1 827286 0 -1 827286 0 ff ff ff ff 96 9f 0c 00 00 00 00 00 ............ +243 0x0000105a control 12 22 810044 0 22 810044 0 16 00 00 00 3c 5c 0c 00 00 00 00 00 ....<\...... +244 0x00001066 data 22 18 2213727 0 2213727 0 196609 0 12 00 00 00 5f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._.!............... +245 0x0000107c control 12 -1 827287 0 -1 827287 0 ff ff ff ff 97 9f 0c 00 00 00 00 00 ............ +246 0x00001088 control 12 52 810045 0 52 810045 0 34 00 00 00 3d 5c 0c 00 00 00 00 00 4...=\...... +247 0x00001094 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 92 59 02 00 00 00 00 00 00 00 30 5b a8 a9 5a 01 00 00 "0...Dk.................L."".([......Y........0[.." +248 0x000010c8 control 12 -1 827288 0 -1 827288 0 ff ff ff ff 98 9f 0c 00 00 00 00 00 ............ +249 0x000010d4 control 12 26 810046 0 26 810046 0 1a 00 00 00 3e 5c 0c 00 00 00 00 00 ....>\...... +250 0x000010e0 data 26 22 2213729 0 2213729 0 196609 0 16 00 00 00 61 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....a.!................... +251 0x000010fa control 12 -1 827289 0 -1 827289 0 ff ff ff ff 99 9f 0c 00 00 00 00 00 ............ +252 0x00001106 control 12 22 810047 0 22 810047 0 16 00 00 00 3f 5c 0c 00 00 00 00 00 ....?\...... +253 0x00001112 data 22 18 2213731 0 2213731 0 196609 0 12 00 00 00 63 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c.!............... +254 0x00001128 control 12 -1 827290 0 -1 827290 0 ff ff ff ff 9a 9f 0c 00 00 00 00 00 ............ +255 0x00001134 control 12 22 810048 0 22 810048 0 16 00 00 00 40 5c 0c 00 00 00 00 00 ....@\...... +256 0x00001140 data 22 18 2213733 0 2213733 0 196609 0 12 00 00 00 65 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....e.!............... +257 0x00001156 control 12 -1 827291 0 -1 827291 0 ff ff ff ff 9b 9f 0c 00 00 00 00 00 ............ +258 0x00001162 control 12 -1 827292 0 -1 827292 0 ff ff ff ff 9c 9f 0c 00 00 00 00 00 ............ +259 0x0000116e control 12 52 810049 0 52 810049 0 34 00 00 00 41 5c 0c 00 00 00 00 00 4...A\...... +260 0x0000117a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 93 59 02 00 00 00 00 00 00 00 5e f8 d6 a9 5a 01 00 00 "0...Dk.................L."".([......Y........^..." +261 0x000011ae control 12 -1 827293 0 -1 827293 0 ff ff ff ff 9d 9f 0c 00 00 00 00 00 ............ +262 0x000011ba control 12 26 810050 0 26 810050 0 1a 00 00 00 42 5c 0c 00 00 00 00 00 ....B\...... +263 0x000011c6 data 26 22 2213735 0 2213735 0 196609 0 16 00 00 00 67 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....g.!................... +264 0x000011e0 control 12 -1 827294 0 -1 827294 0 ff ff ff ff 9e 9f 0c 00 00 00 00 00 ............ +265 0x000011ec control 12 22 810051 0 22 810051 0 16 00 00 00 43 5c 0c 00 00 00 00 00 ....C\...... +266 0x000011f8 data 22 18 2213737 0 2213737 0 196609 0 12 00 00 00 69 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i.!............... +267 0x0000120e control 12 -1 827295 0 -1 827295 0 ff ff ff ff 9f 9f 0c 00 00 00 00 00 ............ +268 0x0000121a control 12 22 810052 0 22 810052 0 16 00 00 00 44 5c 0c 00 00 00 00 00 ....D\...... +269 0x00001226 data 22 18 2213739 0 2213739 0 196609 0 12 00 00 00 6b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k.!............... +270 0x0000123c control 12 -2 93886 93911 -2 93886 93911 fe ff ff ff be 6e 01 00 d7 6e 01 00 .....n...n.. +271 0x00001248 control 12 -1 827296 0 -1 827296 0 ff ff ff ff a0 9f 0c 00 00 00 00 00 ............ +272 0x00001254 control 12 22 810053 0 22 810053 0 16 00 00 00 45 5c 0c 00 00 00 00 00 ....E\...... +273 0x00001260 data 22 18 2213741 0 2213741 0 196609 0 12 00 00 00 6d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....m.!............... +274 0x00001276 control 12 -1 827297 0 -1 827297 0 ff ff ff ff a1 9f 0c 00 00 00 00 00 ............ +275 0x00001282 control 12 52 810054 0 52 810054 0 34 00 00 00 46 5c 0c 00 00 00 00 00 4...F\...... +276 0x0000128e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 94 59 02 00 00 00 00 00 00 00 d6 b3 05 aa 5a 01 00 00 "0...Dk.................L."".([......Y............" +277 0x000012c2 control 12 -1 827298 0 -1 827298 0 ff ff ff ff a2 9f 0c 00 00 00 00 00 ............ +278 0x000012ce control 12 26 810055 0 26 810055 0 1a 00 00 00 47 5c 0c 00 00 00 00 00 ....G\...... +279 0x000012da data 26 22 2213743 0 2213743 0 196609 0 16 00 00 00 6f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....o.!................... +280 0x000012f4 control 12 -1 827299 0 -1 827299 0 ff ff ff ff a3 9f 0c 00 00 00 00 00 ............ +281 0x00001300 control 12 22 810056 0 22 810056 0 16 00 00 00 48 5c 0c 00 00 00 00 00 ....H\...... +282 0x0000130c data 22 18 2213745 0 2213745 0 196609 0 12 00 00 00 71 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q.!............... +283 0x00001322 control 12 -1 827300 0 -1 827300 0 ff ff ff ff a4 9f 0c 00 00 00 00 00 ............ +284 0x0000132e control 12 22 810057 0 22 810057 0 16 00 00 00 49 5c 0c 00 00 00 00 00 ....I\...... +285 0x0000133a data 22 18 2213747 0 2213747 0 196609 0 12 00 00 00 73 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s.!............... +286 0x00001350 control 12 -1 827301 0 -1 827301 0 ff ff ff ff a5 9f 0c 00 00 00 00 00 ............ +287 0x0000135c control 12 22 810058 0 22 810058 0 16 00 00 00 4a 5c 0c 00 00 00 00 00 ....J\...... +288 0x00001368 data 22 18 2213749 0 2213749 0 196609 0 12 00 00 00 75 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....u.!............... +289 0x0000137e control 12 -1 827302 0 -1 827302 0 ff ff ff ff a6 9f 0c 00 00 00 00 00 ............ +290 0x0000138a control 12 52 810059 0 52 810059 0 34 00 00 00 4b 5c 0c 00 00 00 00 00 4...K\...... +291 0x00001396 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 95 59 02 00 00 00 00 00 00 00 df 44 34 aa 5a 01 00 00 "0...Dk.................L."".([......Y.........D4." +292 0x000013ca control 12 -1 827303 0 -1 827303 0 ff ff ff ff a7 9f 0c 00 00 00 00 00 ............ +293 0x000013d6 control 12 26 810060 0 26 810060 0 1a 00 00 00 4c 5c 0c 00 00 00 00 00 ....L\...... +294 0x000013e2 data 26 22 2213751 0 2213751 0 196609 0 16 00 00 00 77 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....w.!................... +295 0x000013fc control 12 -1 827304 0 -1 827304 0 ff ff ff ff a8 9f 0c 00 00 00 00 00 ............ +296 0x00001408 control 12 22 810061 0 22 810061 0 16 00 00 00 4d 5c 0c 00 00 00 00 00 ....M\...... +297 0x00001414 data 22 18 2213753 0 2213753 0 196609 0 12 00 00 00 79 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y.!............... +298 0x0000142a control 12 -2 93887 93912 -2 93887 93912 fe ff ff ff bf 6e 01 00 d8 6e 01 00 .....n...n.. +299 0x00001436 control 12 -1 827305 0 -1 827305 0 ff ff ff ff a9 9f 0c 00 00 00 00 00 ............ +300 0x00001442 control 12 22 810062 0 22 810062 0 16 00 00 00 4e 5c 0c 00 00 00 00 00 ....N\...... +301 0x0000144e data 22 18 2213755 0 2213755 0 196609 0 12 00 00 00 7b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{.!............... +302 0x00001464 control 12 -1 827306 0 -1 827306 0 ff ff ff ff aa 9f 0c 00 00 00 00 00 ............ +303 0x00001470 control 12 22 810063 0 22 810063 0 16 00 00 00 4f 5c 0c 00 00 00 00 00 ....O\...... +304 0x0000147c data 22 18 2213757 0 2213757 0 196609 0 12 00 00 00 7d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....}.!............... +305 0x00001492 control 12 -1 827307 0 -1 827307 0 ff ff ff ff ab 9f 0c 00 00 00 00 00 ............ +306 0x0000149e control 12 52 810064 0 52 810064 0 34 00 00 00 50 5c 0c 00 00 00 00 00 4...P\...... +307 0x000014aa data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 96 59 02 00 00 00 00 00 00 00 f4 a8 62 aa 5a 01 00 00 "0...Dk.................L."".([......Y..........b." +308 0x000014de control 12 -1 827308 0 -1 827308 0 ff ff ff ff ac 9f 0c 00 00 00 00 00 ............ +309 0x000014ea control 12 26 810065 0 26 810065 0 1a 00 00 00 51 5c 0c 00 00 00 00 00 ....Q\...... +310 0x000014f6 data 26 22 2213759 0 2213759 0 196609 0 16 00 00 00 7f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +311 0x00001510 control 12 -1 827309 0 -1 827309 0 ff ff ff ff ad 9f 0c 00 00 00 00 00 ............ +312 0x0000151c control 12 22 810066 0 22 810066 0 16 00 00 00 52 5c 0c 00 00 00 00 00 ....R\...... +313 0x00001528 data 22 18 2213761 0 2213761 0 196609 0 12 00 00 00 81 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +314 0x0000153e control 12 -1 827310 0 -1 827310 0 ff ff ff ff ae 9f 0c 00 00 00 00 00 ............ +315 0x0000154a control 12 22 810067 0 22 810067 0 16 00 00 00 53 5c 0c 00 00 00 00 00 ....S\...... +316 0x00001556 data 22 18 2213763 0 2213763 0 196609 0 12 00 00 00 83 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +317 0x0000156c control 12 -2 93888 93913 -2 93888 93913 fe ff ff ff c0 6e 01 00 d9 6e 01 00 .....n...n.. +318 0x00001578 control 12 -1 827311 0 -1 827311 0 ff ff ff ff af 9f 0c 00 00 00 00 00 ............ +319 0x00001584 control 12 22 810068 0 22 810068 0 16 00 00 00 54 5c 0c 00 00 00 00 00 ....T\...... +320 0x00001590 data 22 18 2213765 0 2213765 0 196609 0 12 00 00 00 85 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +321 0x000015a6 control 12 -1 827312 0 -1 827312 0 ff ff ff ff b0 9f 0c 00 00 00 00 00 ............ +322 0x000015b2 control 12 -1 827313 0 -1 827313 0 ff ff ff ff b1 9f 0c 00 00 00 00 00 ............ +323 0x000015be control 12 52 810069 0 52 810069 0 34 00 00 00 55 5c 0c 00 00 00 00 00 4...U\...... +324 0x000015ca data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 97 59 02 00 00 00 00 00 00 00 56 25 91 aa 5a 01 00 00 "0...Dk.................L."".([......Y........V%.." +325 0x000015fe control 12 -1 827314 0 -1 827314 0 ff ff ff ff b2 9f 0c 00 00 00 00 00 ............ +326 0x0000160a control 12 26 810070 0 26 810070 0 1a 00 00 00 56 5c 0c 00 00 00 00 00 ....V\...... +327 0x00001616 data 26 22 2213767 0 2213767 0 196609 0 16 00 00 00 87 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +328 0x00001630 control 12 -1 827315 0 -1 827315 0 ff ff ff ff b3 9f 0c 00 00 00 00 00 ............ +329 0x0000163c control 12 22 810071 0 22 810071 0 16 00 00 00 57 5c 0c 00 00 00 00 00 ....W\...... +330 0x00001648 data 22 18 2213769 0 2213769 0 196609 0 12 00 00 00 89 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +331 0x0000165e control 12 -1 827316 0 -1 827316 0 ff ff ff ff b4 9f 0c 00 00 00 00 00 ............ +332 0x0000166a control 12 22 810072 0 22 810072 0 16 00 00 00 58 5c 0c 00 00 00 00 00 ....X\...... +333 0x00001676 data 22 18 2213771 0 2213771 0 196609 0 12 00 00 00 8b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +334 0x0000168c control 12 -1 827317 0 -1 827317 0 ff ff ff ff b5 9f 0c 00 00 00 00 00 ............ +335 0x00001698 control 12 22 810073 0 22 810073 0 16 00 00 00 59 5c 0c 00 00 00 00 00 ....Y\...... +336 0x000016a4 data 22 18 2213773 0 2213773 0 196609 0 12 00 00 00 8d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +337 0x000016ba control 12 -1 827318 0 -1 827318 0 ff ff ff ff b6 9f 0c 00 00 00 00 00 ............ +338 0x000016c6 control 12 52 810074 0 52 810074 0 34 00 00 00 5a 5c 0c 00 00 00 00 00 4...Z\...... +339 0x000016d2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 98 59 02 00 00 00 00 00 00 00 cd ae bf aa 5a 01 00 00 "0...Dk.................L."".([......Y............" +340 0x00001706 control 12 -1 827319 0 -1 827319 0 ff ff ff ff b7 9f 0c 00 00 00 00 00 ............ +341 0x00001712 control 12 26 810075 0 26 810075 0 1a 00 00 00 5b 5c 0c 00 00 00 00 00 ....[\...... +342 0x0000171e data 26 22 2213775 0 2213775 0 196609 0 16 00 00 00 8f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +343 0x00001738 control 12 -1 827320 0 -1 827320 0 ff ff ff ff b8 9f 0c 00 00 00 00 00 ............ +344 0x00001744 control 12 22 810076 0 22 810076 0 16 00 00 00 5c 5c 0c 00 00 00 00 00 ....\\...... +345 0x00001750 data 22 18 2213777 0 2213777 0 196609 0 12 00 00 00 91 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +346 0x00001766 control 12 -2 93889 93914 -2 93889 93914 fe ff ff ff c1 6e 01 00 da 6e 01 00 .....n...n.. +347 0x00001772 control 12 -1 827321 0 -1 827321 0 ff ff ff ff b9 9f 0c 00 00 00 00 00 ............ +348 0x0000177e control 12 22 810077 0 22 810077 0 16 00 00 00 5d 5c 0c 00 00 00 00 00 ....]\...... +349 0x0000178a data 22 18 2213779 0 2213779 0 196609 0 12 00 00 00 93 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +350 0x000017a0 control 12 -1 827322 0 -1 827322 0 ff ff ff ff ba 9f 0c 00 00 00 00 00 ............ +351 0x000017ac control 12 22 810078 0 22 810078 0 16 00 00 00 5e 5c 0c 00 00 00 00 00 ....^\...... +352 0x000017b8 data 22 18 2213781 0 2213781 0 196609 0 12 00 00 00 95 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +353 0x000017ce control 12 -1 827323 0 -1 827323 0 ff ff ff ff bb 9f 0c 00 00 00 00 00 ............ +354 0x000017da control 12 52 810079 0 52 810079 0 34 00 00 00 5f 5c 0c 00 00 00 00 00 4..._\...... +355 0x000017e6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 99 59 02 00 00 00 00 00 00 00 8c 5c ee aa 5a 01 00 00 "0...Dk.................L."".([......Y.........\.." +356 0x0000181a control 12 -1 827324 0 -1 827324 0 ff ff ff ff bc 9f 0c 00 00 00 00 00 ............ +357 0x00001826 control 12 26 810080 0 26 810080 0 1a 00 00 00 60 5c 0c 00 00 00 00 00 ....`\...... +358 0x00001832 data 26 22 2213783 0 2213783 0 196609 0 16 00 00 00 97 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +359 0x0000184c control 12 -1 827325 0 -1 827325 0 ff ff ff ff bd 9f 0c 00 00 00 00 00 ............ +360 0x00001858 control 12 22 810081 0 22 810081 0 16 00 00 00 61 5c 0c 00 00 00 00 00 ....a\...... +361 0x00001864 data 22 18 2213785 0 2213785 0 196609 0 12 00 00 00 99 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +362 0x0000187a control 12 -1 827326 0 -1 827326 0 ff ff ff ff be 9f 0c 00 00 00 00 00 ............ +363 0x00001886 control 12 22 810082 0 22 810082 0 16 00 00 00 62 5c 0c 00 00 00 00 00 ....b\...... +364 0x00001892 data 22 18 2213787 0 2213787 0 196609 0 12 00 00 00 9b c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +365 0x000018a8 control 12 -1 827327 0 -1 827327 0 ff ff ff ff bf 9f 0c 00 00 00 00 00 ............ +366 0x000018b4 control 12 22 810083 0 22 810083 0 16 00 00 00 63 5c 0c 00 00 00 00 00 ....c\...... +367 0x000018c0 data 22 18 2213789 0 2213789 0 196609 0 12 00 00 00 9d c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +368 0x000018d6 control 12 -1 827328 0 -1 827328 0 ff ff ff ff c0 9f 0c 00 00 00 00 00 ............ +369 0x000018e2 control 12 52 810084 0 52 810084 0 34 00 00 00 64 5c 0c 00 00 00 00 00 4...d\...... +370 0x000018ee data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9a 59 02 00 00 00 00 00 00 00 ab fc 1c ab 5a 01 00 00 "0...Dk.................L."".([......Y............" +371 0x00001922 control 12 -2 93890 93915 -2 93890 93915 fe ff ff ff c2 6e 01 00 db 6e 01 00 .....n...n.. +372 0x0000192e control 12 -1 827329 0 -1 827329 0 ff ff ff ff c1 9f 0c 00 00 00 00 00 ............ +373 0x0000193a control 12 26 810085 0 26 810085 0 1a 00 00 00 65 5c 0c 00 00 00 00 00 ....e\...... +374 0x00001946 data 26 22 2213791 0 2213791 0 196609 0 16 00 00 00 9f c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +375 0x00001960 control 12 -1 827330 0 -1 827330 0 ff ff ff ff c2 9f 0c 00 00 00 00 00 ............ +376 0x0000196c control 12 22 810086 0 22 810086 0 16 00 00 00 66 5c 0c 00 00 00 00 00 ....f\...... +377 0x00001978 data 22 18 2213793 0 2213793 0 196609 0 12 00 00 00 a1 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +378 0x0000198e control 12 -1 827331 0 -1 827331 0 ff ff ff ff c3 9f 0c 00 00 00 00 00 ............ +379 0x0000199a control 12 22 810087 0 22 810087 0 16 00 00 00 67 5c 0c 00 00 00 00 00 ....g\...... +380 0x000019a6 data 22 18 2213795 0 2213795 0 196609 0 12 00 00 00 a3 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +381 0x000019bc control 12 -1 827332 0 -1 827332 0 ff ff ff ff c4 9f 0c 00 00 00 00 00 ............ +382 0x000019c8 control 12 22 810088 0 22 810088 0 16 00 00 00 68 5c 0c 00 00 00 00 00 ....h\...... +383 0x000019d4 data 22 18 2213797 0 2213797 0 196609 0 12 00 00 00 a5 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +384 0x000019ea control 12 -1 827333 0 -1 827333 0 ff ff ff ff c5 9f 0c 00 00 00 00 00 ............ +385 0x000019f6 control 12 52 810089 0 52 810089 0 34 00 00 00 69 5c 0c 00 00 00 00 00 4...i\...... +386 0x00001a02 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9b 59 02 00 00 00 00 00 00 00 1d c5 4b ab 5a 01 00 00 "0...Dk.................L."".([......Y..........K." +387 0x00001a36 control 12 -1 827334 0 -1 827334 0 ff ff ff ff c6 9f 0c 00 00 00 00 00 ............ +388 0x00001a42 control 12 26 810090 0 26 810090 0 1a 00 00 00 6a 5c 0c 00 00 00 00 00 ....j\...... +389 0x00001a4e data 26 22 2213799 0 2213799 0 196609 0 16 00 00 00 a7 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +390 0x00001a68 control 12 -1 827335 0 -1 827335 0 ff ff ff ff c7 9f 0c 00 00 00 00 00 ............ +391 0x00001a74 control 12 22 810091 0 22 810091 0 16 00 00 00 6b 5c 0c 00 00 00 00 00 ....k\...... +392 0x00001a80 data 22 18 2213801 0 2213801 0 196609 0 12 00 00 00 a9 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +393 0x00001a96 control 12 -1 827336 0 -1 827336 0 ff ff ff ff c8 9f 0c 00 00 00 00 00 ............ +394 0x00001aa2 control 12 22 810092 0 22 810092 0 16 00 00 00 6c 5c 0c 00 00 00 00 00 ....l\...... +395 0x00001aae data 22 18 2213803 0 2213803 0 196609 0 12 00 00 00 ab c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +396 0x00001ac4 control 12 -2 93891 93916 -2 93891 93916 fe ff ff ff c3 6e 01 00 dc 6e 01 00 .....n...n.. +397 0x00001ad0 control 12 -1 827337 0 -1 827337 0 ff ff ff ff c9 9f 0c 00 00 00 00 00 ............ +398 0x00001adc control 12 22 810093 0 22 810093 0 16 00 00 00 6d 5c 0c 00 00 00 00 00 ....m\...... +399 0x00001ae8 data 22 18 2213805 0 2213805 0 196609 0 12 00 00 00 ad c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +400 0x00001afe control 12 -1 827338 0 -1 827338 0 ff ff ff ff ca 9f 0c 00 00 00 00 00 ............ +401 0x00001b0a control 12 52 810094 0 52 810094 0 34 00 00 00 6e 5c 0c 00 00 00 00 00 4...n\...... +402 0x00001b16 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9c 59 02 00 00 00 00 00 00 00 4d 90 7a ab 5a 01 00 00 "0...Dk.................L."".([......Y........M.z." +403 0x00001b4a control 12 -1 827339 0 -1 827339 0 ff ff ff ff cb 9f 0c 00 00 00 00 00 ............ +404 0x00001b56 control 12 26 810095 0 26 810095 0 1a 00 00 00 6f 5c 0c 00 00 00 00 00 ....o\...... +405 0x00001b62 data 26 22 2213807 0 2213807 0 196609 0 16 00 00 00 af c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +406 0x00001b7c control 12 -1 827340 0 -1 827340 0 ff ff ff ff cc 9f 0c 00 00 00 00 00 ............ +407 0x00001b88 control 12 22 810096 0 22 810096 0 16 00 00 00 70 5c 0c 00 00 00 00 00 ....p\...... +408 0x00001b94 data 22 18 2213809 0 2213809 0 196609 0 12 00 00 00 b1 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +409 0x00001baa control 12 -1 827341 0 -1 827341 0 ff ff ff ff cd 9f 0c 00 00 00 00 00 ............ +410 0x00001bb6 control 12 22 810097 0 22 810097 0 16 00 00 00 71 5c 0c 00 00 00 00 00 ....q\...... +411 0x00001bc2 data 22 18 2213811 0 2213811 0 196609 0 12 00 00 00 b3 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +412 0x00001bd8 control 12 -1 827342 0 -1 827342 0 ff ff ff ff ce 9f 0c 00 00 00 00 00 ............ +413 0x00001be4 control 12 22 810098 0 22 810098 0 16 00 00 00 72 5c 0c 00 00 00 00 00 ....r\...... +414 0x00001bf0 data 22 18 2213813 0 2213813 0 196609 0 12 00 00 00 b5 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +415 0x00001c06 control 12 -1 827343 0 -1 827343 0 ff ff ff ff cf 9f 0c 00 00 00 00 00 ............ +416 0x00001c12 control 12 52 810099 0 52 810099 0 34 00 00 00 73 5c 0c 00 00 00 00 00 4...s\...... +417 0x00001c1e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9d 59 02 00 00 00 00 00 00 00 e8 24 a9 ab 5a 01 00 00 "0...Dk.................L."".([......Y.........$.." +418 0x00001c52 control 12 -1 827344 0 -1 827344 0 ff ff ff ff d0 9f 0c 00 00 00 00 00 ............ +419 0x00001c5e control 12 26 810100 0 26 810100 0 1a 00 00 00 74 5c 0c 00 00 00 00 00 ....t\...... +420 0x00001c6a data 26 22 2213815 0 2213815 0 196609 0 16 00 00 00 b7 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +421 0x00001c84 control 12 -1 827345 0 -1 827345 0 ff ff ff ff d1 9f 0c 00 00 00 00 00 ............ +422 0x00001c90 control 12 22 810101 0 22 810101 0 16 00 00 00 75 5c 0c 00 00 00 00 00 ....u\...... +423 0x00001c9c data 22 18 2213817 0 2213817 0 196609 0 12 00 00 00 b9 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +424 0x00001cb2 control 12 -2 93892 93917 -2 93892 93917 fe ff ff ff c4 6e 01 00 dd 6e 01 00 .....n...n.. +425 0x00001cbe control 12 -1 827346 0 -1 827346 0 ff ff ff ff d2 9f 0c 00 00 00 00 00 ............ +426 0x00001cca control 12 22 810102 0 22 810102 0 16 00 00 00 76 5c 0c 00 00 00 00 00 ....v\...... +427 0x00001cd6 data 22 18 2213819 0 2213819 0 196609 0 12 00 00 00 bb c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +428 0x00001cec control 12 -1 827347 0 -1 827347 0 ff ff ff ff d3 9f 0c 00 00 00 00 00 ............ +429 0x00001cf8 control 12 22 810103 0 22 810103 0 16 00 00 00 77 5c 0c 00 00 00 00 00 ....w\...... +430 0x00001d04 data 22 18 2213821 0 2213821 0 196609 0 12 00 00 00 bd c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +431 0x00001d1a control 12 -1 827348 0 -1 827348 0 ff ff ff ff d4 9f 0c 00 00 00 00 00 ............ +432 0x00001d26 control 12 52 810104 0 52 810104 0 34 00 00 00 78 5c 0c 00 00 00 00 00 4...x\...... +433 0x00001d32 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9e 59 02 00 00 00 00 00 00 00 82 8f d7 ab 5a 01 00 00 "0...Dk.................L."".([......Y............" +434 0x00001d66 control 12 -1 827349 0 -1 827349 0 ff ff ff ff d5 9f 0c 00 00 00 00 00 ............ +435 0x00001d72 control 12 26 810105 0 26 810105 0 1a 00 00 00 79 5c 0c 00 00 00 00 00 ....y\...... +436 0x00001d7e data 26 22 2213823 0 2213823 0 196609 0 16 00 00 00 bf c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +437 0x00001d98 control 12 -1 827350 0 -1 827350 0 ff ff ff ff d6 9f 0c 00 00 00 00 00 ............ +438 0x00001da4 control 12 22 810106 0 22 810106 0 16 00 00 00 7a 5c 0c 00 00 00 00 00 ....z\...... +439 0x00001db0 data 22 18 2213825 0 2213825 0 196609 0 12 00 00 00 c1 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +440 0x00001dc6 control 12 -1 827351 0 -1 827351 0 ff ff ff ff d7 9f 0c 00 00 00 00 00 ............ +441 0x00001dd2 control 12 22 810107 0 22 810107 0 16 00 00 00 7b 5c 0c 00 00 00 00 00 ....{\...... +442 0x00001dde data 22 18 2213827 0 2213827 0 196609 0 12 00 00 00 c3 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +443 0x00001df4 control 12 -1 827352 0 -1 827352 0 ff ff ff ff d8 9f 0c 00 00 00 00 00 ............ +444 0x00001e00 control 12 22 810108 0 22 810108 0 16 00 00 00 7c 5c 0c 00 00 00 00 00 ....|\...... +445 0x00001e0c data 22 18 2213829 0 2213829 0 196609 0 12 00 00 00 c5 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +446 0x00001e22 control 12 -2 93893 93918 -2 93893 93918 fe ff ff ff c5 6e 01 00 de 6e 01 00 .....n...n.. +447 0x00001e2e control 12 -1 827353 0 -1 827353 0 ff ff ff ff d9 9f 0c 00 00 00 00 00 ............ +448 0x00001e3a control 12 52 810109 0 52 810109 0 34 00 00 00 7d 5c 0c 00 00 00 00 00 4...}\...... +449 0x00001e46 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 9f 59 02 00 00 00 00 00 00 00 b6 16 06 ac 5a 01 00 00 "0...Dk.................L."".([......Y............" +450 0x00001e7a control 12 -1 827354 0 -1 827354 0 ff ff ff ff da 9f 0c 00 00 00 00 00 ............ +451 0x00001e86 control 12 26 810110 0 26 810110 0 1a 00 00 00 7e 5c 0c 00 00 00 00 00 ....~\...... +452 0x00001e92 data 26 22 2213831 0 2213831 0 196609 0 16 00 00 00 c7 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +453 0x00001eac control 12 -1 827355 0 -1 827355 0 ff ff ff ff db 9f 0c 00 00 00 00 00 ............ +454 0x00001eb8 control 12 22 810111 0 22 810111 0 16 00 00 00 7f 5c 0c 00 00 00 00 00 .....\...... +455 0x00001ec4 data 22 18 2213833 0 2213833 0 196609 0 12 00 00 00 c9 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +456 0x00001eda control 12 -1 827356 0 -1 827356 0 ff ff ff ff dc 9f 0c 00 00 00 00 00 ............ +457 0x00001ee6 control 12 22 810112 0 22 810112 0 16 00 00 00 80 5c 0c 00 00 00 00 00 .....\...... +458 0x00001ef2 data 22 18 2213835 0 2213835 0 196609 0 12 00 00 00 cb c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +459 0x00001f08 control 12 -1 827357 0 -1 827357 0 ff ff ff ff dd 9f 0c 00 00 00 00 00 ............ +460 0x00001f14 control 12 22 810113 0 22 810113 0 16 00 00 00 81 5c 0c 00 00 00 00 00 .....\...... +461 0x00001f20 data 22 18 2213837 0 2213837 0 196609 0 12 00 00 00 cd c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +462 0x00001f36 control 12 -1 827358 0 -1 827358 0 ff ff ff ff de 9f 0c 00 00 00 00 00 ............ +463 0x00001f42 control 12 -1 827359 0 -1 827359 0 ff ff ff ff df 9f 0c 00 00 00 00 00 ............ +464 0x00001f4e control 12 52 810114 0 52 810114 0 34 00 00 00 82 5c 0c 00 00 00 00 00 4....\...... +465 0x00001f5a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a0 59 02 00 00 00 00 00 00 00 eb 7e 34 ac 5a 01 00 00 "0...Dk.................L."".([......Y.........~4." +466 0x00001f8e control 12 -1 827360 0 -1 827360 0 ff ff ff ff e0 9f 0c 00 00 00 00 00 ............ +467 0x00001f9a control 12 26 810115 0 26 810115 0 1a 00 00 00 83 5c 0c 00 00 00 00 00 .....\...... +468 0x00001fa6 data 26 22 2213839 0 2213839 0 196609 0 16 00 00 00 cf c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +469 0x00001fc0 control 12 -1 827361 0 -1 827361 0 ff ff ff ff e1 9f 0c 00 00 00 00 00 ............ +470 0x00001fcc control 12 22 810116 0 22 810116 0 16 00 00 00 84 5c 0c 00 00 00 00 00 .....\...... +471 0x00001fd8 data 22 18 2213841 0 2213841 0 196609 0 12 00 00 00 d1 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +472 0x00001fee control 12 -2 93894 93919 -2 93894 93919 fe ff ff ff c6 6e 01 00 df 6e 01 00 .....n...n.. +473 0x00001ffa control 12 -1 827362 0 -1 827362 0 ff ff ff ff e2 9f 0c 00 00 00 00 00 ............ +474 0x00002006 control 12 22 810117 0 22 810117 0 16 00 00 00 85 5c 0c 00 00 00 00 00 .....\...... +475 0x00002012 data 22 18 2213843 0 2213843 0 196609 0 12 00 00 00 d3 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +476 0x00002028 control 12 -1 827363 0 -1 827363 0 ff ff ff ff e3 9f 0c 00 00 00 00 00 ............ +477 0x00002034 control 12 22 810118 0 22 810118 0 16 00 00 00 86 5c 0c 00 00 00 00 00 .....\...... +478 0x00002040 data 22 18 2213845 0 2213845 0 196609 0 12 00 00 00 d5 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +479 0x00002056 control 12 -1 827364 0 -1 827364 0 ff ff ff ff e4 9f 0c 00 00 00 00 00 ............ +480 0x00002062 control 12 52 810119 0 52 810119 0 34 00 00 00 87 5c 0c 00 00 00 00 00 4....\...... +481 0x0000206e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a1 59 02 00 00 00 00 00 00 00 a8 f0 62 ac 5a 01 00 00 "0...Dk.................L."".([......Y..........b." +482 0x000020a2 control 12 -1 827365 0 -1 827365 0 ff ff ff ff e5 9f 0c 00 00 00 00 00 ............ +483 0x000020ae control 12 26 810120 0 26 810120 0 1a 00 00 00 88 5c 0c 00 00 00 00 00 .....\...... +484 0x000020ba data 26 22 2213847 0 2213847 0 196609 0 16 00 00 00 d7 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +485 0x000020d4 control 12 -1 827366 0 -1 827366 0 ff ff ff ff e6 9f 0c 00 00 00 00 00 ............ +486 0x000020e0 control 12 22 810121 0 22 810121 0 16 00 00 00 89 5c 0c 00 00 00 00 00 .....\...... +487 0x000020ec data 22 18 2213849 0 2213849 0 196609 0 12 00 00 00 d9 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +488 0x00002102 control 12 -1 827367 0 -1 827367 0 ff ff ff ff e7 9f 0c 00 00 00 00 00 ............ +489 0x0000210e control 12 22 810122 0 22 810122 0 16 00 00 00 8a 5c 0c 00 00 00 00 00 .....\...... +490 0x0000211a data 22 18 2213851 0 2213851 0 196609 0 12 00 00 00 db c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +491 0x00002130 control 12 -1 827368 0 -1 827368 0 ff ff ff ff e8 9f 0c 00 00 00 00 00 ............ +492 0x0000213c control 12 22 810123 0 22 810123 0 16 00 00 00 8b 5c 0c 00 00 00 00 00 .....\...... +493 0x00002148 data 22 18 2213853 0 2213853 0 196609 0 12 00 00 00 dd c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +494 0x0000215e control 12 -1 827369 0 -1 827369 0 ff ff ff ff e9 9f 0c 00 00 00 00 00 ............ +495 0x0000216a control 12 52 810124 0 52 810124 0 34 00 00 00 8c 5c 0c 00 00 00 00 00 4....\...... +496 0x00002176 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a2 59 02 00 00 00 00 00 00 00 bc a0 91 ac 5a 01 00 00 "0...Dk.................L."".([......Y............" +497 0x000021aa control 12 -1 827370 0 -1 827370 0 ff ff ff ff ea 9f 0c 00 00 00 00 00 ............ +498 0x000021b6 control 12 26 810125 0 26 810125 0 1a 00 00 00 8d 5c 0c 00 00 00 00 00 .....\...... +499 0x000021c2 data 26 22 2213855 0 2213855 0 196609 0 16 00 00 00 df c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +500 0x000021dc control 12 -2 93895 93920 -2 93895 93920 fe ff ff ff c7 6e 01 00 e0 6e 01 00 .....n...n.. +501 0x000021e8 control 12 -1 827371 0 -1 827371 0 ff ff ff ff eb 9f 0c 00 00 00 00 00 ............ +502 0x000021f4 control 12 22 810126 0 22 810126 0 16 00 00 00 8e 5c 0c 00 00 00 00 00 .....\...... +503 0x00002200 data 22 18 2213857 0 2213857 0 196609 0 12 00 00 00 e1 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +504 0x00002216 control 12 -1 827372 0 -1 827372 0 ff ff ff ff ec 9f 0c 00 00 00 00 00 ............ +505 0x00002222 control 12 22 810127 0 22 810127 0 16 00 00 00 8f 5c 0c 00 00 00 00 00 .....\...... +506 0x0000222e data 22 18 2213859 0 2213859 0 196609 0 12 00 00 00 e3 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +507 0x00002244 control 12 -1 827373 0 -1 827373 0 ff ff ff ff ed 9f 0c 00 00 00 00 00 ............ +508 0x00002250 control 12 22 810128 0 22 810128 0 16 00 00 00 90 5c 0c 00 00 00 00 00 .....\...... +509 0x0000225c data 22 18 2213861 0 2213861 0 196609 0 12 00 00 00 e5 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +510 0x00002272 control 12 -1 827374 0 -1 827374 0 ff ff ff ff ee 9f 0c 00 00 00 00 00 ............ +511 0x0000227e control 12 52 810129 0 52 810129 0 34 00 00 00 91 5c 0c 00 00 00 00 00 4....\...... +512 0x0000228a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a3 59 02 00 00 00 00 00 00 00 62 0d c0 ac 5a 01 00 00 "0...Dk.................L."".([......Y........b..." +513 0x000022be control 12 -1 827375 0 -1 827375 0 ff ff ff ff ef 9f 0c 00 00 00 00 00 ............ +514 0x000022ca control 12 26 810130 0 26 810130 0 1a 00 00 00 92 5c 0c 00 00 00 00 00 .....\...... +515 0x000022d6 data 26 22 2213863 0 2213863 0 196609 0 16 00 00 00 e7 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +516 0x000022f0 control 12 -1 827376 0 -1 827376 0 ff ff ff ff f0 9f 0c 00 00 00 00 00 ............ +517 0x000022fc control 12 22 810131 0 22 810131 0 16 00 00 00 93 5c 0c 00 00 00 00 00 .....\...... +518 0x00002308 data 22 18 2213865 0 2213865 0 196609 0 12 00 00 00 e9 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +519 0x0000231e control 12 -1 827377 0 -1 827377 0 ff ff ff ff f1 9f 0c 00 00 00 00 00 ............ +520 0x0000232a control 12 22 810132 0 22 810132 0 16 00 00 00 94 5c 0c 00 00 00 00 00 .....\...... +521 0x00002336 data 22 18 2213867 0 2213867 0 196609 0 12 00 00 00 eb c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +522 0x0000234c control 12 -2 93896 93921 -2 93896 93921 fe ff ff ff c8 6e 01 00 e1 6e 01 00 .....n...n.. +523 0x00002358 control 12 -1 827378 0 -1 827378 0 ff ff ff ff f2 9f 0c 00 00 00 00 00 ............ +524 0x00002364 control 12 22 810133 0 22 810133 0 16 00 00 00 95 5c 0c 00 00 00 00 00 .....\...... +525 0x00002370 data 22 18 2213869 0 2213869 0 196609 0 12 00 00 00 ed c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +526 0x00002386 control 12 -1 827379 0 -1 827379 0 ff ff ff ff f3 9f 0c 00 00 00 00 00 ............ +527 0x00002392 control 12 52 810134 0 52 810134 0 34 00 00 00 96 5c 0c 00 00 00 00 00 4....\...... +528 0x0000239e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a4 59 02 00 00 00 00 00 00 00 15 73 ee ac 5a 01 00 00 "0...Dk.................L."".([......Y.........s.." +529 0x000023d2 control 12 -1 827380 0 -1 827380 0 ff ff ff ff f4 9f 0c 00 00 00 00 00 ............ +530 0x000023de control 12 26 810135 0 26 810135 0 1a 00 00 00 97 5c 0c 00 00 00 00 00 .....\...... +531 0x000023ea data 26 22 2213871 0 2213871 0 196609 0 16 00 00 00 ef c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +532 0x00002404 control 12 -1 827381 0 -1 827381 0 ff ff ff ff f5 9f 0c 00 00 00 00 00 ............ +533 0x00002410 control 12 22 810136 0 22 810136 0 16 00 00 00 98 5c 0c 00 00 00 00 00 .....\...... +534 0x0000241c data 22 18 2213873 0 2213873 0 196609 0 12 00 00 00 f1 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +535 0x00002432 control 12 -1 827382 0 -1 827382 0 ff ff ff ff f6 9f 0c 00 00 00 00 00 ............ +536 0x0000243e control 12 22 810137 0 22 810137 0 16 00 00 00 99 5c 0c 00 00 00 00 00 .....\...... +537 0x0000244a data 22 18 2213875 0 2213875 0 196609 0 12 00 00 00 f3 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +538 0x00002460 control 12 -1 827383 0 -1 827383 0 ff ff ff ff f7 9f 0c 00 00 00 00 00 ............ +539 0x0000246c control 12 52 810138 0 52 810138 0 34 00 00 00 9a 5c 0c 00 00 00 00 00 4....\...... +540 0x00002478 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a5 59 02 00 00 00 00 00 00 00 ba 1a 1d ad 5a 01 00 00 "0...Dk.................L."".([......Y............" +541 0x000024ac control 12 -1 827384 0 -1 827384 0 ff ff ff ff f8 9f 0c 00 00 00 00 00 ............ +542 0x000024b8 control 12 -1 827385 0 -1 827385 0 ff ff ff ff f9 9f 0c 00 00 00 00 00 ............ +543 0x000024c4 control 12 22 810139 0 22 810139 0 16 00 00 00 9b 5c 0c 00 00 00 00 00 .....\...... +544 0x000024d0 data 22 18 2213877 0 2213877 0 196609 0 12 00 00 00 f5 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +545 0x000024e6 control 12 26 810140 0 26 810140 0 1a 00 00 00 9c 5c 0c 00 00 00 00 00 .....\...... +546 0x000024f2 data 26 22 2213879 0 2213879 0 196609 0 16 00 00 00 f7 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +547 0x0000250c control 12 -1 827386 0 -1 827386 0 ff ff ff ff fa 9f 0c 00 00 00 00 00 ............ +548 0x00002518 control 12 22 810141 0 22 810141 0 16 00 00 00 9d 5c 0c 00 00 00 00 00 .....\...... +549 0x00002524 data 22 18 2213881 0 2213881 0 196609 0 12 00 00 00 f9 c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +550 0x0000253a control 12 -2 93897 93922 -2 93897 93922 fe ff ff ff c9 6e 01 00 e2 6e 01 00 .....n...n.. +551 0x00002546 control 12 -1 827387 0 -1 827387 0 ff ff ff ff fb 9f 0c 00 00 00 00 00 ............ +552 0x00002552 control 12 22 810142 0 22 810142 0 16 00 00 00 9e 5c 0c 00 00 00 00 00 .....\...... +553 0x0000255e data 22 18 2213883 0 2213883 0 196609 0 12 00 00 00 fb c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +554 0x00002574 control 12 -1 827388 0 -1 827388 0 ff ff ff ff fc 9f 0c 00 00 00 00 00 ............ +555 0x00002580 control 12 -1 827389 0 -1 827389 0 ff ff ff ff fd 9f 0c 00 00 00 00 00 ............ +556 0x0000258c control 12 52 810143 0 52 810143 0 34 00 00 00 9f 5c 0c 00 00 00 00 00 4....\...... +557 0x00002598 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a6 59 02 00 00 00 00 00 00 00 7a 95 4b ad 5a 01 00 00 "0...Dk.................L."".([......Y........z.K." +558 0x000025cc control 12 -1 827390 0 -1 827390 0 ff ff ff ff fe 9f 0c 00 00 00 00 00 ............ +559 0x000025d8 control 12 26 810144 0 26 810144 0 1a 00 00 00 a0 5c 0c 00 00 00 00 00 .....\...... +560 0x000025e4 data 26 22 2213885 0 2213885 0 196609 0 16 00 00 00 fd c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +561 0x000025fe control 12 -1 827391 0 -1 827391 0 ff ff ff ff ff 9f 0c 00 00 00 00 00 ............ +562 0x0000260a control 12 22 810145 0 22 810145 0 16 00 00 00 a1 5c 0c 00 00 00 00 00 .....\...... +563 0x00002616 data 22 18 2213887 0 2213887 0 196609 0 12 00 00 00 ff c7 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +564 0x0000262c control 12 -1 827392 0 -1 827392 0 ff ff ff ff 00 a0 0c 00 00 00 00 00 ............ +565 0x00002638 control 12 22 810146 0 22 810146 0 16 00 00 00 a2 5c 0c 00 00 00 00 00 .....\...... +566 0x00002644 data 22 18 2213889 0 2213889 0 196609 0 12 00 00 00 01 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +567 0x0000265a control 12 -1 827393 0 -1 827393 0 ff ff ff ff 01 a0 0c 00 00 00 00 00 ............ +568 0x00002666 control 12 22 810147 0 22 810147 0 16 00 00 00 a3 5c 0c 00 00 00 00 00 .....\...... +569 0x00002672 data 22 18 2213891 0 2213891 0 196609 0 12 00 00 00 03 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +570 0x00002688 control 12 -1 827394 0 -1 827394 0 ff ff ff ff 02 a0 0c 00 00 00 00 00 ............ +571 0x00002694 control 12 52 810148 0 52 810148 0 34 00 00 00 a4 5c 0c 00 00 00 00 00 4....\...... +572 0x000026a0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a7 59 02 00 00 00 00 00 00 00 63 32 7a ad 5a 01 00 00 "0...Dk.................L."".([......Y........c2z." +573 0x000026d4 control 12 -1 827395 0 -1 827395 0 ff ff ff ff 03 a0 0c 00 00 00 00 00 ............ +574 0x000026e0 control 12 26 810149 0 26 810149 0 1a 00 00 00 a5 5c 0c 00 00 00 00 00 .....\...... +575 0x000026ec data 26 22 2213893 0 2213893 0 196609 0 16 00 00 00 05 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +576 0x00002706 control 12 -1 827396 0 -1 827396 0 ff ff ff ff 04 a0 0c 00 00 00 00 00 ............ +577 0x00002712 control 12 22 810150 0 22 810150 0 16 00 00 00 a6 5c 0c 00 00 00 00 00 .....\...... +578 0x0000271e data 22 18 2213895 0 2213895 0 196609 0 12 00 00 00 07 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +579 0x00002734 control 12 -2 93898 93923 -2 93898 93923 fe ff ff ff ca 6e 01 00 e3 6e 01 00 .....n...n.. +580 0x00002740 control 12 -1 827397 0 -1 827397 0 ff ff ff ff 05 a0 0c 00 00 00 00 00 ............ +581 0x0000274c control 12 22 810151 0 22 810151 0 16 00 00 00 a7 5c 0c 00 00 00 00 00 .....\...... +582 0x00002758 data 22 18 2213897 0 2213897 0 196609 0 12 00 00 00 09 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +583 0x0000276e control 12 -1 827398 0 -1 827398 0 ff ff ff ff 06 a0 0c 00 00 00 00 00 ............ +584 0x0000277a control 12 22 810152 0 22 810152 0 16 00 00 00 a8 5c 0c 00 00 00 00 00 .....\...... +585 0x00002786 data 22 18 2213899 0 2213899 0 196609 0 12 00 00 00 0b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +586 0x0000279c control 12 -1 827399 0 -1 827399 0 ff ff ff ff 07 a0 0c 00 00 00 00 00 ............ +587 0x000027a8 control 12 52 810153 0 52 810153 0 34 00 00 00 a9 5c 0c 00 00 00 00 00 4....\...... +588 0x000027b4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a8 59 02 00 00 00 00 00 00 00 9b c3 a8 ad 5a 01 00 00 "0...Dk.................L."".([......Y............" +589 0x000027e8 control 12 -1 827400 0 -1 827400 0 ff ff ff ff 08 a0 0c 00 00 00 00 00 ............ +590 0x000027f4 control 12 26 810154 0 26 810154 0 1a 00 00 00 aa 5c 0c 00 00 00 00 00 .....\...... +591 0x00002800 data 26 22 2213901 0 2213901 0 196609 0 16 00 00 00 0d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +592 0x0000281a control 12 -1 827401 0 -1 827401 0 ff ff ff ff 09 a0 0c 00 00 00 00 00 ............ +593 0x00002826 control 12 22 810155 0 22 810155 0 16 00 00 00 ab 5c 0c 00 00 00 00 00 .....\...... +594 0x00002832 data 22 18 2213903 0 2213903 0 196609 0 12 00 00 00 0f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +595 0x00002848 control 12 -1 827402 0 -1 827402 0 ff ff ff ff 0a a0 0c 00 00 00 00 00 ............ +596 0x00002854 control 12 22 810156 0 22 810156 0 16 00 00 00 ac 5c 0c 00 00 00 00 00 .....\...... +597 0x00002860 data 22 18 2213905 0 2213905 0 196609 0 12 00 00 00 11 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +598 0x00002876 control 12 -1 827403 0 -1 827403 0 ff ff ff ff 0b a0 0c 00 00 00 00 00 ............ +599 0x00002882 control 12 22 810157 0 22 810157 0 16 00 00 00 ad 5c 0c 00 00 00 00 00 .....\...... +600 0x0000288e data 22 18 2213907 0 2213907 0 196609 0 12 00 00 00 13 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +601 0x000028a4 control 12 -2 93899 93924 -2 93899 93924 fe ff ff ff cb 6e 01 00 e4 6e 01 00 .....n...n.. +602 0x000028b0 control 12 -1 827404 0 -1 827404 0 ff ff ff ff 0c a0 0c 00 00 00 00 00 ............ +603 0x000028bc control 12 52 810158 0 52 810158 0 34 00 00 00 ae 5c 0c 00 00 00 00 00 4....\...... +604 0x000028c8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 a9 59 02 00 00 00 00 00 00 00 71 39 d7 ad 5a 01 00 00 "0...Dk.................L."".([......Y........q9.." +605 0x000028fc control 12 -1 827405 0 -1 827405 0 ff ff ff ff 0d a0 0c 00 00 00 00 00 ............ +606 0x00002908 control 12 26 810159 0 26 810159 0 1a 00 00 00 af 5c 0c 00 00 00 00 00 .....\...... +607 0x00002914 data 26 22 2213909 0 2213909 0 196609 0 16 00 00 00 15 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +608 0x0000292e control 12 -1 827406 0 -1 827406 0 ff ff ff ff 0e a0 0c 00 00 00 00 00 ............ +609 0x0000293a control 12 22 810160 0 22 810160 0 16 00 00 00 b0 5c 0c 00 00 00 00 00 .....\...... +610 0x00002946 data 22 18 2213911 0 2213911 0 196609 0 12 00 00 00 17 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +611 0x0000295c control 12 -1 827407 0 -1 827407 0 ff ff ff ff 0f a0 0c 00 00 00 00 00 ............ +612 0x00002968 control 12 22 810161 0 22 810161 0 16 00 00 00 b1 5c 0c 00 00 00 00 00 .....\...... +613 0x00002974 data 22 18 2213913 0 2213913 0 196609 0 12 00 00 00 19 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +614 0x0000298a control 12 -1 827408 0 -1 827408 0 ff ff ff ff 10 a0 0c 00 00 00 00 00 ............ +615 0x00002996 control 12 22 810162 0 22 810162 0 16 00 00 00 b2 5c 0c 00 00 00 00 00 .....\...... +616 0x000029a2 data 22 18 2213915 0 2213915 0 196609 0 12 00 00 00 1b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +617 0x000029b8 control 12 -1 827409 0 -1 827409 0 ff ff ff ff 11 a0 0c 00 00 00 00 00 ............ +618 0x000029c4 control 12 -1 827410 0 -1 827410 0 ff ff ff ff 12 a0 0c 00 00 00 00 00 ............ +619 0x000029d0 control 12 52 810163 0 52 810163 0 34 00 00 00 b3 5c 0c 00 00 00 00 00 4....\...... +620 0x000029dc data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 aa 59 02 00 00 00 00 00 00 00 a1 81 07 ae 5a 01 00 00 "0...Dk.................L."".([......Y............" +621 0x00002a10 control 12 -1 827411 0 -1 827411 0 ff ff ff ff 13 a0 0c 00 00 00 00 00 ............ +622 0x00002a1c control 12 26 810164 0 26 810164 0 1a 00 00 00 b4 5c 0c 00 00 00 00 00 .....\...... +623 0x00002a28 data 26 22 2213917 0 2213917 0 196609 0 16 00 00 00 1d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +624 0x00002a42 control 12 -1 827412 0 -1 827412 0 ff ff ff ff 14 a0 0c 00 00 00 00 00 ............ +625 0x00002a4e control 12 22 810165 0 22 810165 0 16 00 00 00 b5 5c 0c 00 00 00 00 00 .....\...... +626 0x00002a5a data 22 18 2213919 0 2213919 0 196609 0 12 00 00 00 1f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +627 0x00002a70 control 12 -1 827413 0 -1 827413 0 ff ff ff ff 15 a0 0c 00 00 00 00 00 ............ +628 0x00002a7c control 12 22 810166 0 22 810166 0 16 00 00 00 b6 5c 0c 00 00 00 00 00 .....\...... +629 0x00002a88 data 22 18 2213921 0 2213921 0 196609 0 12 00 00 00 21 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....!.!............... +630 0x00002a9e control 12 -2 93900 93925 -2 93900 93925 fe ff ff ff cc 6e 01 00 e5 6e 01 00 .....n...n.. +631 0x00002aaa control 12 -1 827414 0 -1 827414 0 ff ff ff ff 16 a0 0c 00 00 00 00 00 ............ +632 0x00002ab6 control 12 22 810167 0 22 810167 0 16 00 00 00 b7 5c 0c 00 00 00 00 00 .....\...... +633 0x00002ac2 data 22 18 2213923 0 2213923 0 196609 0 12 00 00 00 23 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....#.!............... +634 0x00002ad8 control 12 -1 827415 0 -1 827415 0 ff ff ff ff 17 a0 0c 00 00 00 00 00 ............ +635 0x00002ae4 control 12 52 810168 0 52 810168 0 34 00 00 00 b8 5c 0c 00 00 00 00 00 4....\...... +636 0x00002af0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ab 59 02 00 00 00 00 00 00 00 08 19 36 ae 5a 01 00 00 "0...Dk.................L."".([......Y..........6." +637 0x00002b24 control 12 -1 827416 0 -1 827416 0 ff ff ff ff 18 a0 0c 00 00 00 00 00 ............ +638 0x00002b30 control 12 26 810169 0 26 810169 0 1a 00 00 00 b9 5c 0c 00 00 00 00 00 .....\...... +639 0x00002b3c data 26 22 2213925 0 2213925 0 196609 0 16 00 00 00 25 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....%.!................... +640 0x00002b56 control 12 -1 827417 0 -1 827417 0 ff ff ff ff 19 a0 0c 00 00 00 00 00 ............ +641 0x00002b62 control 12 22 810170 0 22 810170 0 16 00 00 00 ba 5c 0c 00 00 00 00 00 .....\...... +642 0x00002b6e data 22 18 2213927 0 2213927 0 196609 0 12 00 00 00 27 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....'.!............... +643 0x00002b84 control 12 -1 827418 0 -1 827418 0 ff ff ff ff 1a a0 0c 00 00 00 00 00 ............ +644 0x00002b90 control 12 22 810171 0 22 810171 0 16 00 00 00 bb 5c 0c 00 00 00 00 00 .....\...... +645 0x00002b9c data 22 18 2213929 0 2213929 0 196609 0 12 00 00 00 29 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....).!............... +646 0x00002bb2 control 12 -1 827419 0 -1 827419 0 ff ff ff ff 1b a0 0c 00 00 00 00 00 ............ +647 0x00002bbe control 12 22 810172 0 22 810172 0 16 00 00 00 bc 5c 0c 00 00 00 00 00 .....\...... +648 0x00002bca data 22 18 2213931 0 2213931 0 196609 0 12 00 00 00 2b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....+.!............... +649 0x00002be0 control 12 -1 827420 0 -1 827420 0 ff ff ff ff 1c a0 0c 00 00 00 00 00 ............ +650 0x00002bec control 12 -1 827421 0 -1 827421 0 ff ff ff ff 1d a0 0c 00 00 00 00 00 ............ +651 0x00002bf8 control 12 52 810173 0 52 810173 0 34 00 00 00 bd 5c 0c 00 00 00 00 00 4....\...... +652 0x00002c04 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ac 59 02 00 00 00 00 00 00 00 9f 84 64 ae 5a 01 00 00 "0...Dk.................L."".([......Y..........d." +653 0x00002c38 control 12 -1 827422 0 -1 827422 0 ff ff ff ff 1e a0 0c 00 00 00 00 00 ............ +654 0x00002c44 control 12 26 810174 0 26 810174 0 1a 00 00 00 be 5c 0c 00 00 00 00 00 .....\...... +655 0x00002c50 data 26 22 2213933 0 2213933 0 196609 0 16 00 00 00 2d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....-.!................... +656 0x00002c6a control 12 -2 93901 93926 -2 93901 93926 fe ff ff ff cd 6e 01 00 e6 6e 01 00 .....n...n.. +657 0x00002c76 control 12 -1 827423 0 -1 827423 0 ff ff ff ff 1f a0 0c 00 00 00 00 00 ............ +658 0x00002c82 control 12 22 810175 0 22 810175 0 16 00 00 00 bf 5c 0c 00 00 00 00 00 .....\...... +659 0x00002c8e data 22 18 2213935 0 2213935 0 196609 0 12 00 00 00 2f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ..../.!............... +660 0x00002ca4 control 12 -1 827424 0 -1 827424 0 ff ff ff ff 20 a0 0c 00 00 00 00 00 .... ....... +661 0x00002cb0 control 12 22 810176 0 22 810176 0 16 00 00 00 c0 5c 0c 00 00 00 00 00 .....\...... +662 0x00002cbc data 22 18 2213937 0 2213937 0 196609 0 12 00 00 00 31 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....1.!............... +663 0x00002cd2 control 12 -1 827425 0 -1 827425 0 ff ff ff ff 21 a0 0c 00 00 00 00 00 ....!....... +664 0x00002cde control 12 22 810177 0 22 810177 0 16 00 00 00 c1 5c 0c 00 00 00 00 00 .....\...... +665 0x00002cea data 22 18 2213939 0 2213939 0 196609 0 12 00 00 00 33 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....3.!............... +666 0x00002d00 control 12 -1 827426 0 -1 827426 0 ff ff ff ff 22 a0 0c 00 00 00 00 00 "....""......." +667 0x00002d0c control 12 52 810178 0 52 810178 0 34 00 00 00 c2 5c 0c 00 00 00 00 00 4....\...... +668 0x00002d18 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ad 59 02 00 00 00 00 00 00 00 34 35 93 ae 5a 01 00 00 "0...Dk.................L."".([......Y........45.." +669 0x00002d4c control 12 -1 827427 0 -1 827427 0 ff ff ff ff 23 a0 0c 00 00 00 00 00 ....#....... +670 0x00002d58 control 12 26 810179 0 26 810179 0 1a 00 00 00 c3 5c 0c 00 00 00 00 00 .....\...... +671 0x00002d64 data 26 22 2213941 0 2213941 0 196609 0 16 00 00 00 35 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....5.!................... +672 0x00002d7e control 12 -1 827428 0 -1 827428 0 ff ff ff ff 24 a0 0c 00 00 00 00 00 ....$....... +673 0x00002d8a control 12 22 810180 0 22 810180 0 16 00 00 00 c4 5c 0c 00 00 00 00 00 .....\...... +674 0x00002d96 data 22 18 2213943 0 2213943 0 196609 0 12 00 00 00 37 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....7.!............... +675 0x00002dac control 12 -1 827429 0 -1 827429 0 ff ff ff ff 25 a0 0c 00 00 00 00 00 ....%....... +676 0x00002db8 control 12 22 810181 0 22 810181 0 16 00 00 00 c5 5c 0c 00 00 00 00 00 .....\...... +677 0x00002dc4 data 22 18 2213945 0 2213945 0 196609 0 12 00 00 00 39 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....9.!............... +678 0x00002dda control 12 -2 93902 93927 -2 93902 93927 fe ff ff ff ce 6e 01 00 e7 6e 01 00 .....n...n.. +679 0x00002de6 control 12 -1 827430 0 -1 827430 0 ff ff ff ff 26 a0 0c 00 00 00 00 00 ....&....... +680 0x00002df2 control 12 22 810182 0 22 810182 0 16 00 00 00 c6 5c 0c 00 00 00 00 00 .....\...... +681 0x00002dfe data 22 18 2213947 0 2213947 0 196609 0 12 00 00 00 3b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....;.!............... +682 0x00002e14 control 12 -1 827431 0 -1 827431 0 ff ff ff ff 27 a0 0c 00 00 00 00 00 ....'....... +683 0x00002e20 control 12 52 810183 0 52 810183 0 34 00 00 00 c7 5c 0c 00 00 00 00 00 4....\...... +684 0x00002e2c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ae 59 02 00 00 00 00 00 00 00 9c d7 c1 ae 5a 01 00 00 "0...Dk.................L."".([......Y............" +685 0x00002e60 control 12 -1 827432 0 -1 827432 0 ff ff ff ff 28 a0 0c 00 00 00 00 00 ....(....... +686 0x00002e6c control 12 26 810184 0 26 810184 0 1a 00 00 00 c8 5c 0c 00 00 00 00 00 .....\...... +687 0x00002e78 data 26 22 2213949 0 2213949 0 196609 0 16 00 00 00 3d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....=.!................... +688 0x00002e92 control 12 -1 827433 0 -1 827433 0 ff ff ff ff 29 a0 0c 00 00 00 00 00 ....)....... +689 0x00002e9e control 12 22 810185 0 22 810185 0 16 00 00 00 c9 5c 0c 00 00 00 00 00 .....\...... +690 0x00002eaa data 22 18 2213951 0 2213951 0 196609 0 12 00 00 00 3f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....?.!............... +691 0x00002ec0 control 12 -1 827434 0 -1 827434 0 ff ff ff ff 2a a0 0c 00 00 00 00 00 ....*....... +692 0x00002ecc control 12 22 810186 0 22 810186 0 16 00 00 00 ca 5c 0c 00 00 00 00 00 .....\...... +693 0x00002ed8 data 22 18 2213953 0 2213953 0 196609 0 12 00 00 00 41 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....A.!............... +694 0x00002eee control 12 -1 827435 0 -1 827435 0 ff ff ff ff 2b a0 0c 00 00 00 00 00 ....+....... +695 0x00002efa control 12 22 810187 0 22 810187 0 16 00 00 00 cb 5c 0c 00 00 00 00 00 .....\...... +696 0x00002f06 data 22 18 2213955 0 2213955 0 196609 0 12 00 00 00 43 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....C.!............... +697 0x00002f1c control 12 -1 827436 0 -1 827436 0 ff ff ff ff 2c a0 0c 00 00 00 00 00 ....,....... +698 0x00002f28 control 12 52 810188 0 52 810188 0 34 00 00 00 cc 5c 0c 00 00 00 00 00 4....\...... +699 0x00002f34 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 af 59 02 00 00 00 00 00 00 00 21 59 f0 ae 5a 01 00 00 "0...Dk.................L."".([......Y........!Y.." +700 0x00002f68 control 12 -1 827437 0 -1 827437 0 ff ff ff ff 2d a0 0c 00 00 00 00 00 ....-....... +701 0x00002f74 control 12 26 810189 0 26 810189 0 1a 00 00 00 cd 5c 0c 00 00 00 00 00 .....\...... +702 0x00002f80 data 26 22 2213957 0 2213957 0 196609 0 16 00 00 00 45 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....E.!................... +703 0x00002f9a control 12 -1 827438 0 -1 827438 0 ff ff ff ff 2e a0 0c 00 00 00 00 00 ............ +704 0x00002fa6 control 12 22 810190 0 22 810190 0 16 00 00 00 ce 5c 0c 00 00 00 00 00 .....\...... +705 0x00002fb2 data 22 18 2213959 0 2213959 0 196609 0 12 00 00 00 47 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....G.!............... +706 0x00002fc8 control 12 -2 93903 93928 -2 93903 93928 fe ff ff ff cf 6e 01 00 e8 6e 01 00 .....n...n.. +707 0x00002fd4 control 12 -1 827439 0 -1 827439 0 ff ff ff ff 2f a0 0c 00 00 00 00 00 ..../....... +708 0x00002fe0 control 12 22 810191 0 22 810191 0 16 00 00 00 cf 5c 0c 00 00 00 00 00 .....\...... +709 0x00002fec data 22 18 2213961 0 2213961 0 196609 0 12 00 00 00 49 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....I.!............... +710 0x00003002 control 12 -1 827440 0 -1 827440 0 ff ff ff ff 30 a0 0c 00 00 00 00 00 ....0....... +711 0x0000300e control 12 22 810192 0 22 810192 0 16 00 00 00 d0 5c 0c 00 00 00 00 00 .....\...... +712 0x0000301a data 22 18 2213963 0 2213963 0 196609 0 12 00 00 00 4b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....K.!............... +713 0x00003030 control 12 -1 827441 0 -1 827441 0 ff ff ff ff 31 a0 0c 00 00 00 00 00 ....1....... +714 0x0000303c control 12 52 810193 0 52 810193 0 34 00 00 00 d1 5c 0c 00 00 00 00 00 4....\...... +715 0x00003048 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b0 59 02 00 00 00 00 00 00 00 d4 c5 1e af 5a 01 00 00 "0...Dk.................L."".([......Y............" +716 0x0000307c control 12 -1 827442 0 -1 827442 0 ff ff ff ff 32 a0 0c 00 00 00 00 00 ....2....... +717 0x00003088 control 12 26 810194 0 26 810194 0 1a 00 00 00 d2 5c 0c 00 00 00 00 00 .....\...... +718 0x00003094 data 26 22 2213965 0 2213965 0 196609 0 16 00 00 00 4d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....M.!................... +719 0x000030ae control 12 -1 827443 0 -1 827443 0 ff ff ff ff 33 a0 0c 00 00 00 00 00 ....3....... +720 0x000030ba control 12 22 810195 0 22 810195 0 16 00 00 00 d3 5c 0c 00 00 00 00 00 .....\...... +721 0x000030c6 data 22 18 2213967 0 2213967 0 196609 0 12 00 00 00 4f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....O.!............... +722 0x000030dc control 12 -1 827444 0 -1 827444 0 ff ff ff ff 34 a0 0c 00 00 00 00 00 ....4....... +723 0x000030e8 control 12 22 810196 0 22 810196 0 16 00 00 00 d4 5c 0c 00 00 00 00 00 .....\...... +724 0x000030f4 data 22 18 2213969 0 2213969 0 196609 0 12 00 00 00 51 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Q.!............... +725 0x0000310a control 12 -1 827445 0 -1 827445 0 ff ff ff ff 35 a0 0c 00 00 00 00 00 ....5....... +726 0x00003116 control 12 22 810197 0 22 810197 0 16 00 00 00 d5 5c 0c 00 00 00 00 00 .....\...... +727 0x00003122 data 22 18 2213971 0 2213971 0 196609 0 12 00 00 00 53 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....S.!............... +728 0x00003138 control 12 -2 93904 93929 -2 93904 93929 fe ff ff ff d0 6e 01 00 e9 6e 01 00 .....n...n.. +729 0x00003144 control 12 -1 827446 0 -1 827446 0 ff ff ff ff 36 a0 0c 00 00 00 00 00 ....6....... +730 0x00003150 control 12 52 810198 0 52 810198 0 34 00 00 00 d6 5c 0c 00 00 00 00 00 4....\...... +731 0x0000315c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b1 59 02 00 00 00 00 00 00 00 7a 60 4d af 5a 01 00 00 "0...Dk.................L."".([......Y........z`M." +732 0x00003190 control 12 -1 827447 0 -1 827447 0 ff ff ff ff 37 a0 0c 00 00 00 00 00 ....7....... +733 0x0000319c control 12 26 810199 0 26 810199 0 1a 00 00 00 d7 5c 0c 00 00 00 00 00 .....\...... +734 0x000031a8 data 26 22 2213973 0 2213973 0 196609 0 16 00 00 00 55 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....U.!................... +735 0x000031c2 control 12 -1 827448 0 -1 827448 0 ff ff ff ff 38 a0 0c 00 00 00 00 00 ....8....... +736 0x000031ce control 12 22 810200 0 22 810200 0 16 00 00 00 d8 5c 0c 00 00 00 00 00 .....\...... +737 0x000031da data 22 18 2213975 0 2213975 0 196609 0 12 00 00 00 57 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....W.!............... +738 0x000031f0 control 12 -1 827449 0 -1 827449 0 ff ff ff ff 39 a0 0c 00 00 00 00 00 ....9....... +739 0x000031fc control 12 22 810201 0 22 810201 0 16 00 00 00 d9 5c 0c 00 00 00 00 00 .....\...... +740 0x00003208 data 22 18 2213977 0 2213977 0 196609 0 12 00 00 00 59 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....Y.!............... +741 0x0000321e control 12 -1 827450 0 -1 827450 0 ff ff ff ff 3a a0 0c 00 00 00 00 00 ....:....... +742 0x0000322a control 12 22 810202 0 22 810202 0 16 00 00 00 da 5c 0c 00 00 00 00 00 .....\...... +743 0x00003236 data 22 18 2213979 0 2213979 0 196609 0 12 00 00 00 5b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....[.!............... +744 0x0000324c control 12 -1 827451 0 -1 827451 0 ff ff ff ff 3b a0 0c 00 00 00 00 00 ....;....... +745 0x00003258 control 12 52 810203 0 52 810203 0 34 00 00 00 db 5c 0c 00 00 00 00 00 4....\...... +746 0x00003264 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b2 59 02 00 00 00 00 00 00 00 b4 e8 7b af 5a 01 00 00 "0...Dk.................L."".([......Y..........{." +747 0x00003298 control 12 -1 827452 0 -1 827452 0 ff ff ff ff 3c a0 0c 00 00 00 00 00 ....<....... +748 0x000032a4 control 12 26 810204 0 26 810204 0 1a 00 00 00 dc 5c 0c 00 00 00 00 00 .....\...... +749 0x000032b0 data 26 22 2213981 0 2213981 0 196609 0 16 00 00 00 5d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....].!................... +750 0x000032ca control 12 -1 827453 0 -1 827453 0 ff ff ff ff 3d a0 0c 00 00 00 00 00 ....=....... +751 0x000032d6 control 12 22 810205 0 22 810205 0 16 00 00 00 dd 5c 0c 00 00 00 00 00 .....\...... +752 0x000032e2 data 22 18 2213983 0 2213983 0 196609 0 12 00 00 00 5f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ...._.!............... +753 0x000032f8 control 12 -1 827454 0 -1 827454 0 ff ff ff ff 3e a0 0c 00 00 00 00 00 ....>....... +754 0x00003304 control 12 22 810206 0 22 810206 0 16 00 00 00 de 5c 0c 00 00 00 00 00 .....\...... +755 0x00003310 data 22 18 2213985 0 2213985 0 196609 0 12 00 00 00 61 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....a.!............... +756 0x00003326 control 12 -2 93905 93930 -2 93905 93930 fe ff ff ff d1 6e 01 00 ea 6e 01 00 .....n...n.. +757 0x00003332 control 12 -1 827455 0 -1 827455 0 ff ff ff ff 3f a0 0c 00 00 00 00 00 ....?....... +758 0x0000333e control 12 22 810207 0 22 810207 0 16 00 00 00 df 5c 0c 00 00 00 00 00 .....\...... +759 0x0000334a data 22 18 2213987 0 2213987 0 196609 0 12 00 00 00 63 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....c.!............... +760 0x00003360 control 12 -1 827456 0 -1 827456 0 ff ff ff ff 40 a0 0c 00 00 00 00 00 ....@....... +761 0x0000336c control 12 -1 827457 0 -1 827457 0 ff ff ff ff 41 a0 0c 00 00 00 00 00 ....A....... +762 0x00003378 control 12 52 810208 0 52 810208 0 34 00 00 00 e0 5c 0c 00 00 00 00 00 4....\...... +763 0x00003384 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b3 59 02 00 00 00 00 00 00 00 ca 4f aa af 5a 01 00 00 "0...Dk.................L."".([......Y.........O.." +764 0x000033b8 control 12 -1 827458 0 -1 827458 0 ff ff ff ff 42 a0 0c 00 00 00 00 00 ....B....... +765 0x000033c4 control 12 26 810209 0 26 810209 0 1a 00 00 00 e1 5c 0c 00 00 00 00 00 .....\...... +766 0x000033d0 data 26 22 2213989 0 2213989 0 196609 0 16 00 00 00 65 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....e.!................... +767 0x000033ea control 12 -1 827459 0 -1 827459 0 ff ff ff ff 43 a0 0c 00 00 00 00 00 ....C....... +768 0x000033f6 control 12 22 810210 0 22 810210 0 16 00 00 00 e2 5c 0c 00 00 00 00 00 .....\...... +769 0x00003402 data 22 18 2213991 0 2213991 0 196609 0 12 00 00 00 67 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....g.!............... +770 0x00003418 control 12 -1 827460 0 -1 827460 0 ff ff ff ff 44 a0 0c 00 00 00 00 00 ....D....... +771 0x00003424 control 12 22 810211 0 22 810211 0 16 00 00 00 e3 5c 0c 00 00 00 00 00 .....\...... +772 0x00003430 data 22 18 2213993 0 2213993 0 196609 0 12 00 00 00 69 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....i.!............... +773 0x00003446 control 12 -1 827461 0 -1 827461 0 ff ff ff ff 45 a0 0c 00 00 00 00 00 ....E....... +774 0x00003452 control 12 22 810212 0 22 810212 0 16 00 00 00 e4 5c 0c 00 00 00 00 00 .....\...... +775 0x0000345e data 22 18 2213995 0 2213995 0 196609 0 12 00 00 00 6b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....k.!............... +776 0x00003474 control 12 -1 827462 0 -1 827462 0 ff ff ff ff 46 a0 0c 00 00 00 00 00 ....F....... +777 0x00003480 control 12 52 810213 0 52 810213 0 34 00 00 00 e5 5c 0c 00 00 00 00 00 4....\...... +778 0x0000348c data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b4 59 02 00 00 00 00 00 00 00 b6 d2 d8 af 5a 01 00 00 "0...Dk.................L."".([......Y............" +779 0x000034c0 control 12 -1 827463 0 -1 827463 0 ff ff ff ff 47 a0 0c 00 00 00 00 00 ....G....... +780 0x000034cc control 12 26 810214 0 26 810214 0 1a 00 00 00 e6 5c 0c 00 00 00 00 00 .....\...... +781 0x000034d8 data 26 22 2213997 0 2213997 0 196609 0 16 00 00 00 6d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....m.!................... +782 0x000034f2 control 12 -1 827464 0 -1 827464 0 ff ff ff ff 48 a0 0c 00 00 00 00 00 ....H....... +783 0x000034fe control 12 22 810215 0 22 810215 0 16 00 00 00 e7 5c 0c 00 00 00 00 00 .....\...... +784 0x0000350a data 22 18 2213999 0 2213999 0 196609 0 12 00 00 00 6f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....o.!............... +785 0x00003520 control 12 -2 93906 93931 -2 93906 93931 fe ff ff ff d2 6e 01 00 eb 6e 01 00 .....n...n.. +786 0x0000352c control 12 -1 827465 0 -1 827465 0 ff ff ff ff 49 a0 0c 00 00 00 00 00 ....I....... +787 0x00003538 control 12 22 810216 0 22 810216 0 16 00 00 00 e8 5c 0c 00 00 00 00 00 .....\...... +788 0x00003544 data 22 18 2214001 0 2214001 0 196609 0 12 00 00 00 71 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....q.!............... +789 0x0000355a control 12 -1 827466 0 -1 827466 0 ff ff ff ff 4a a0 0c 00 00 00 00 00 ....J....... +790 0x00003566 control 12 22 810217 0 22 810217 0 16 00 00 00 e9 5c 0c 00 00 00 00 00 .....\...... +791 0x00003572 data 22 18 2214003 0 2214003 0 196609 0 12 00 00 00 73 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....s.!............... +792 0x00003588 control 12 -1 827467 0 -1 827467 0 ff ff ff ff 4b a0 0c 00 00 00 00 00 ....K....... +793 0x00003594 control 12 52 810218 0 52 810218 0 34 00 00 00 ea 5c 0c 00 00 00 00 00 4....\...... +794 0x000035a0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b5 59 02 00 00 00 00 00 00 00 62 37 07 b0 5a 01 00 00 "0...Dk.................L."".([......Y........b7.." +795 0x000035d4 control 12 -1 827468 0 -1 827468 0 ff ff ff ff 4c a0 0c 00 00 00 00 00 ....L....... +796 0x000035e0 control 12 26 810219 0 26 810219 0 1a 00 00 00 eb 5c 0c 00 00 00 00 00 .....\...... +797 0x000035ec data 26 22 2214005 0 2214005 0 196609 0 16 00 00 00 75 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....u.!................... +798 0x00003606 control 12 -1 827469 0 -1 827469 0 ff ff ff ff 4d a0 0c 00 00 00 00 00 ....M....... +799 0x00003612 control 12 22 810220 0 22 810220 0 16 00 00 00 ec 5c 0c 00 00 00 00 00 .....\...... +800 0x0000361e data 22 18 2214007 0 2214007 0 196609 0 12 00 00 00 77 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....w.!............... +801 0x00003634 control 12 -1 827470 0 -1 827470 0 ff ff ff ff 4e a0 0c 00 00 00 00 00 ....N....... +802 0x00003640 control 12 22 810221 0 22 810221 0 16 00 00 00 ed 5c 0c 00 00 00 00 00 .....\...... +803 0x0000364c data 22 18 2214009 0 2214009 0 196609 0 12 00 00 00 79 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....y.!............... +804 0x00003662 control 12 -2 93907 93932 -2 93907 93932 fe ff ff ff d3 6e 01 00 ec 6e 01 00 .....n...n.. +805 0x0000366e control 12 -1 827471 0 -1 827471 0 ff ff ff ff 4f a0 0c 00 00 00 00 00 ....O....... +806 0x0000367a control 12 22 810222 0 22 810222 0 16 00 00 00 ee 5c 0c 00 00 00 00 00 .....\...... +807 0x00003686 data 22 18 2214011 0 2214011 0 196609 0 12 00 00 00 7b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ....{.!............... +808 0x0000369c control 12 -1 827472 0 -1 827472 0 ff ff ff ff 50 a0 0c 00 00 00 00 00 ....P....... +809 0x000036a8 control 12 52 810223 0 52 810223 0 34 00 00 00 ef 5c 0c 00 00 00 00 00 4....\...... +810 0x000036b4 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b6 59 02 00 00 00 00 00 00 00 de aa 35 b0 5a 01 00 00 "0...Dk.................L."".([......Y..........5." +811 0x000036e8 control 12 -1 827473 0 -1 827473 0 ff ff ff ff 51 a0 0c 00 00 00 00 00 ....Q....... +812 0x000036f4 control 12 26 810224 0 26 810224 0 1a 00 00 00 f0 5c 0c 00 00 00 00 00 .....\...... +813 0x00003700 data 26 22 2214013 0 2214013 0 196609 0 16 00 00 00 7d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ....}.!................... +814 0x0000371a control 12 -1 827474 0 -1 827474 0 ff ff ff ff 52 a0 0c 00 00 00 00 00 ....R....... +815 0x00003726 control 12 22 810225 0 22 810225 0 16 00 00 00 f1 5c 0c 00 00 00 00 00 .....\...... +816 0x00003732 data 22 18 2214015 0 2214015 0 196609 0 12 00 00 00 7f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +817 0x00003748 control 12 -1 827475 0 -1 827475 0 ff ff ff ff 53 a0 0c 00 00 00 00 00 ....S....... +818 0x00003754 control 12 22 810226 0 22 810226 0 16 00 00 00 f2 5c 0c 00 00 00 00 00 .....\...... +819 0x00003760 data 22 18 2214017 0 2214017 0 196609 0 12 00 00 00 81 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +820 0x00003776 control 12 -1 827476 0 -1 827476 0 ff ff ff ff 54 a0 0c 00 00 00 00 00 ....T....... +821 0x00003782 control 12 22 810227 0 22 810227 0 16 00 00 00 f3 5c 0c 00 00 00 00 00 .....\...... +822 0x0000378e data 22 18 2214019 0 2214019 0 196609 0 12 00 00 00 83 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +823 0x000037a4 control 12 -1 827477 0 -1 827477 0 ff ff ff ff 55 a0 0c 00 00 00 00 00 ....U....... +824 0x000037b0 control 12 52 810228 0 52 810228 0 34 00 00 00 f4 5c 0c 00 00 00 00 00 4....\...... +825 0x000037bc data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b7 59 02 00 00 00 00 00 00 00 61 23 64 b0 5a 01 00 00 "0...Dk.................L."".([......Y........a#d." +826 0x000037f0 control 12 -1 827478 0 -1 827478 0 ff ff ff ff 56 a0 0c 00 00 00 00 00 ....V....... +827 0x000037fc control 12 26 810229 0 26 810229 0 1a 00 00 00 f5 5c 0c 00 00 00 00 00 .....\...... +828 0x00003808 data 26 22 2214021 0 2214021 0 196609 0 16 00 00 00 85 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +829 0x00003822 control 12 -1 827479 0 -1 827479 0 ff ff ff ff 57 a0 0c 00 00 00 00 00 ....W....... +830 0x0000382e control 12 22 810230 0 22 810230 0 16 00 00 00 f6 5c 0c 00 00 00 00 00 .....\...... +831 0x0000383a data 22 18 2214023 0 2214023 0 196609 0 12 00 00 00 87 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +832 0x00003850 control 12 -2 93908 93933 -2 93908 93933 fe ff ff ff d4 6e 01 00 ed 6e 01 00 .....n...n.. +833 0x0000385c control 12 -1 827480 0 -1 827480 0 ff ff ff ff 58 a0 0c 00 00 00 00 00 ....X....... +834 0x00003868 control 12 22 810231 0 22 810231 0 16 00 00 00 f7 5c 0c 00 00 00 00 00 .....\...... +835 0x00003874 data 22 18 2214025 0 2214025 0 196609 0 12 00 00 00 89 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +836 0x0000388a control 12 -1 827481 0 -1 827481 0 ff ff ff ff 59 a0 0c 00 00 00 00 00 ....Y....... +837 0x00003896 control 12 22 810232 0 22 810232 0 16 00 00 00 f8 5c 0c 00 00 00 00 00 .....\...... +838 0x000038a2 data 22 18 2214027 0 2214027 0 196609 0 12 00 00 00 8b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +839 0x000038b8 control 12 -1 827482 0 -1 827482 0 ff ff ff ff 5a a0 0c 00 00 00 00 00 ....Z....... +840 0x000038c4 control 12 52 810233 0 52 810233 0 34 00 00 00 f9 5c 0c 00 00 00 00 00 4....\...... +841 0x000038d0 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b8 59 02 00 00 00 00 00 00 00 5a a9 92 b0 5a 01 00 00 "0...Dk.................L."".([......Y........Z..." +842 0x00003904 control 12 -1 827483 0 -1 827483 0 ff ff ff ff 5b a0 0c 00 00 00 00 00 ....[....... +843 0x00003910 control 12 26 810234 0 26 810234 0 1a 00 00 00 fa 5c 0c 00 00 00 00 00 .....\...... +844 0x0000391c data 26 22 2214029 0 2214029 0 196609 0 16 00 00 00 8d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +845 0x00003936 control 12 -1 827484 0 -1 827484 0 ff ff ff ff 5c a0 0c 00 00 00 00 00 ....\....... +846 0x00003942 control 12 22 810235 0 22 810235 0 16 00 00 00 fb 5c 0c 00 00 00 00 00 .....\...... +847 0x0000394e data 22 18 2214031 0 2214031 0 196609 0 12 00 00 00 8f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +848 0x00003964 control 12 -1 827485 0 -1 827485 0 ff ff ff ff 5d a0 0c 00 00 00 00 00 ....]....... +849 0x00003970 control 12 22 810236 0 22 810236 0 16 00 00 00 fc 5c 0c 00 00 00 00 00 .....\...... +850 0x0000397c data 22 18 2214033 0 2214033 0 196609 0 12 00 00 00 91 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +851 0x00003992 control 12 -1 827486 0 -1 827486 0 ff ff ff ff 5e a0 0c 00 00 00 00 00 ....^....... +852 0x0000399e control 12 22 810237 0 22 810237 0 16 00 00 00 fd 5c 0c 00 00 00 00 00 .....\...... +853 0x000039aa data 22 18 2214035 0 2214035 0 196609 0 12 00 00 00 93 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +854 0x000039c0 control 12 -1 827487 0 -1 827487 0 ff ff ff ff 5f a0 0c 00 00 00 00 00 ...._....... +855 0x000039cc control 12 52 810238 0 52 810238 0 34 00 00 00 fe 5c 0c 00 00 00 00 00 4....\...... +856 0x000039d8 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 b9 59 02 00 00 00 00 00 00 00 40 23 c1 b0 5a 01 00 00 "0...Dk.................L."".([......Y........@#.." +857 0x00003a0c control 12 -1 827488 0 -1 827488 0 ff ff ff ff 60 a0 0c 00 00 00 00 00 ....`....... +858 0x00003a18 control 12 26 810239 0 26 810239 0 1a 00 00 00 ff 5c 0c 00 00 00 00 00 .....\...... +859 0x00003a24 data 26 22 2214037 0 2214037 0 196609 0 16 00 00 00 95 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +860 0x00003a3e control 12 -2 93909 93934 -2 93909 93934 fe ff ff ff d5 6e 01 00 ee 6e 01 00 .....n...n.. +861 0x00003a4a control 12 -1 827489 0 -1 827489 0 ff ff ff ff 61 a0 0c 00 00 00 00 00 ....a....... +862 0x00003a56 control 12 22 810240 0 22 810240 0 16 00 00 00 00 5d 0c 00 00 00 00 00 .....]...... +863 0x00003a62 data 22 18 2214039 0 2214039 0 196609 0 12 00 00 00 97 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +864 0x00003a78 control 12 -1 827490 0 -1 827490 0 ff ff ff ff 62 a0 0c 00 00 00 00 00 ....b....... +865 0x00003a84 control 12 22 810241 0 22 810241 0 16 00 00 00 01 5d 0c 00 00 00 00 00 .....]...... +866 0x00003a90 data 22 18 2214041 0 2214041 0 196609 0 12 00 00 00 99 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +867 0x00003aa6 control 12 -1 827491 0 -1 827491 0 ff ff ff ff 63 a0 0c 00 00 00 00 00 ....c....... +868 0x00003ab2 control 12 22 810242 0 22 810242 0 16 00 00 00 02 5d 0c 00 00 00 00 00 .....]...... +869 0x00003abe data 22 18 2214043 0 2214043 0 196609 0 12 00 00 00 9b c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +870 0x00003ad4 control 12 -1 827492 0 -1 827492 0 ff ff ff ff 64 a0 0c 00 00 00 00 00 ....d....... +871 0x00003ae0 control 12 52 810243 0 52 810243 0 34 00 00 00 03 5d 0c 00 00 00 00 00 4....]...... +872 0x00003aec data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 ba 59 02 00 00 00 00 00 00 00 53 8f ef b0 5a 01 00 00 "0...Dk.................L."".([......Y........S..." +873 0x00003b20 control 12 -1 827493 0 -1 827493 0 ff ff ff ff 65 a0 0c 00 00 00 00 00 ....e....... +874 0x00003b2c control 12 26 810244 0 26 810244 0 1a 00 00 00 04 5d 0c 00 00 00 00 00 .....]...... +875 0x00003b38 data 26 22 2214045 0 2214045 0 196609 0 16 00 00 00 9d c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +876 0x00003b52 control 12 -1 827494 0 -1 827494 0 ff ff ff ff 66 a0 0c 00 00 00 00 00 ....f....... +877 0x00003b5e control 12 22 810245 0 22 810245 0 16 00 00 00 05 5d 0c 00 00 00 00 00 .....]...... +878 0x00003b6a data 22 18 2214047 0 2214047 0 196609 0 12 00 00 00 9f c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +879 0x00003b80 control 12 -1 827495 0 -1 827495 0 ff ff ff ff 67 a0 0c 00 00 00 00 00 ....g....... +880 0x00003b8c control 12 22 810246 0 22 810246 0 16 00 00 00 06 5d 0c 00 00 00 00 00 .....]...... +881 0x00003b98 data 22 18 2214049 0 2214049 0 196609 0 12 00 00 00 a1 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +882 0x00003bae control 12 -2 93910 93935 -2 93910 93935 fe ff ff ff d6 6e 01 00 ef 6e 01 00 .....n...n.. +883 0x00003bba control 12 -1 827496 0 -1 827496 0 ff ff ff ff 68 a0 0c 00 00 00 00 00 ....h....... +884 0x00003bc6 control 12 -1 827497 0 -1 827497 0 ff ff ff ff 69 a0 0c 00 00 00 00 00 ....i....... +885 0x00003bd2 control 12 52 810247 0 52 810247 0 34 00 00 00 07 5d 0c 00 00 00 00 00 4....]...... +886 0x00003bde data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bb 59 02 00 00 00 00 00 00 00 e9 36 1e b1 5a 01 00 00 "0...Dk.................L."".([......Y.........6.." +887 0x00003c12 control 12 -1 827498 0 -1 827498 0 ff ff ff ff 6a a0 0c 00 00 00 00 00 ....j....... +888 0x00003c1e control 12 -1 827499 0 -1 827499 0 ff ff ff ff 6b a0 0c 00 00 00 00 00 ....k....... +889 0x00003c2a control 12 26 810248 0 26 810248 0 1a 00 00 00 08 5d 0c 00 00 00 00 00 .....]...... +890 0x00003c36 data 26 22 2214051 0 2214051 0 196609 0 16 00 00 00 a3 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +891 0x00003c50 control 12 22 810249 0 22 810249 0 16 00 00 00 09 5d 0c 00 00 00 00 00 .....]...... +892 0x00003c5c data 22 18 2214053 0 2214053 0 196609 0 12 00 00 00 a5 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +893 0x00003c72 control 12 -1 827500 0 -1 827500 0 ff ff ff ff 6c a0 0c 00 00 00 00 00 ....l....... +894 0x00003c7e control 12 22 810250 0 22 810250 0 16 00 00 00 0a 5d 0c 00 00 00 00 00 .....]...... +895 0x00003c8a data 22 18 2214055 0 2214055 0 196609 0 12 00 00 00 a7 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +896 0x00003ca0 control 12 -1 827501 0 -1 827501 0 ff ff ff ff 6d a0 0c 00 00 00 00 00 ....m....... +897 0x00003cac control 12 22 810251 0 22 810251 0 16 00 00 00 0b 5d 0c 00 00 00 00 00 .....]...... +898 0x00003cb8 data 22 18 2214057 0 2214057 0 196609 0 12 00 00 00 a9 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +899 0x00003cce control 12 -1 827502 0 -1 827502 0 ff ff ff ff 6e a0 0c 00 00 00 00 00 ....n....... +900 0x00003cda control 12 52 810252 0 52 810252 0 34 00 00 00 0c 5d 0c 00 00 00 00 00 4....]...... +901 0x00003ce6 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bc 59 02 00 00 00 00 00 00 00 8b dc 4c b1 5a 01 00 00 "0...Dk.................L."".([......Y..........L." +902 0x00003d1a control 12 -1 827503 0 -1 827503 0 ff ff ff ff 6f a0 0c 00 00 00 00 00 ....o....... +903 0x00003d26 control 12 26 810253 0 26 810253 0 1a 00 00 00 0d 5d 0c 00 00 00 00 00 .....]...... +904 0x00003d32 data 26 22 2214059 0 2214059 0 196609 0 16 00 00 00 ab c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +905 0x00003d4c control 12 -1 827504 0 -1 827504 0 ff ff ff ff 70 a0 0c 00 00 00 00 00 ....p....... +906 0x00003d58 control 12 22 810254 0 22 810254 0 16 00 00 00 0e 5d 0c 00 00 00 00 00 .....]...... +907 0x00003d64 data 22 18 2214061 0 2214061 0 196609 0 12 00 00 00 ad c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +908 0x00003d7a control 12 -1 827505 0 -1 827505 0 ff ff ff ff 71 a0 0c 00 00 00 00 00 ....q....... +909 0x00003d86 control 12 22 810255 0 22 810255 0 16 00 00 00 0f 5d 0c 00 00 00 00 00 .....]...... +910 0x00003d92 data 22 18 2214063 0 2214063 0 196609 0 12 00 00 00 af c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +911 0x00003da8 control 12 -2 93911 93936 -2 93911 93936 fe ff ff ff d7 6e 01 00 f0 6e 01 00 .....n...n.. +912 0x00003db4 control 12 -1 827506 0 -1 827506 0 ff ff ff ff 72 a0 0c 00 00 00 00 00 ....r....... +913 0x00003dc0 control 12 22 810256 0 22 810256 0 16 00 00 00 10 5d 0c 00 00 00 00 00 .....]...... +914 0x00003dcc data 22 18 2214065 0 2214065 0 196609 0 12 00 00 00 b1 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +915 0x00003de2 control 12 -1 827507 0 -1 827507 0 ff ff ff ff 73 a0 0c 00 00 00 00 00 ....s....... +916 0x00003dee control 12 52 810257 0 52 810257 0 34 00 00 00 11 5d 0c 00 00 00 00 00 4....]...... +917 0x00003dfa data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bd 59 02 00 00 00 00 00 00 00 80 5d 7b b1 5a 01 00 00 "0...Dk.................L."".([......Y.........]{." +918 0x00003e2e control 12 -1 827508 0 -1 827508 0 ff ff ff ff 74 a0 0c 00 00 00 00 00 ....t....... +919 0x00003e3a control 12 26 810258 0 26 810258 0 1a 00 00 00 12 5d 0c 00 00 00 00 00 .....]...... +920 0x00003e46 data 26 22 2214067 0 2214067 0 196609 0 16 00 00 00 b3 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +921 0x00003e60 control 12 -1 827509 0 -1 827509 0 ff ff ff ff 75 a0 0c 00 00 00 00 00 ....u....... +922 0x00003e6c control 12 22 810259 0 22 810259 0 16 00 00 00 13 5d 0c 00 00 00 00 00 .....]...... +923 0x00003e78 data 22 18 2214069 0 2214069 0 196609 0 12 00 00 00 b5 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +924 0x00003e8e control 12 -1 827510 0 -1 827510 0 ff ff ff ff 76 a0 0c 00 00 00 00 00 ....v....... +925 0x00003e9a control 12 22 810260 0 22 810260 0 16 00 00 00 14 5d 0c 00 00 00 00 00 .....]...... +926 0x00003ea6 data 22 18 2214071 0 2214071 0 196609 0 12 00 00 00 b7 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +927 0x00003ebc control 12 -1 827511 0 -1 827511 0 ff ff ff ff 77 a0 0c 00 00 00 00 00 ....w....... +928 0x00003ec8 control 12 22 810261 0 22 810261 0 16 00 00 00 15 5d 0c 00 00 00 00 00 .....]...... +929 0x00003ed4 data 22 18 2214073 0 2214073 0 196609 0 12 00 00 00 b9 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +930 0x00003eea control 12 -1 827512 0 -1 827512 0 ff ff ff ff 78 a0 0c 00 00 00 00 00 ....x....... +931 0x00003ef6 control 12 -1 827513 0 -1 827513 0 ff ff ff ff 79 a0 0c 00 00 00 00 00 ....y....... +932 0x00003f02 control 12 52 810262 0 52 810262 0 34 00 00 00 16 5d 0c 00 00 00 00 00 4....]...... +933 0x00003f0e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 be 59 02 00 00 00 00 00 00 00 aa ea a9 b1 5a 01 00 00 "0...Dk.................L."".([......Y............" +934 0x00003f42 control 12 -1 827514 0 -1 827514 0 ff ff ff ff 7a a0 0c 00 00 00 00 00 ....z....... +935 0x00003f4e control 12 26 810263 0 26 810263 0 1a 00 00 00 17 5d 0c 00 00 00 00 00 .....]...... +936 0x00003f5a data 26 22 2214075 0 2214075 0 196609 0 16 00 00 00 bb c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +937 0x00003f74 control 12 -1 827515 0 -1 827515 0 ff ff ff ff 7b a0 0c 00 00 00 00 00 ....{....... +938 0x00003f80 control 12 22 810264 0 22 810264 0 16 00 00 00 18 5d 0c 00 00 00 00 00 .....]...... +939 0x00003f8c data 22 18 2214077 0 2214077 0 196609 0 12 00 00 00 bd c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +940 0x00003fa2 control 12 -2 93912 93937 -2 93912 93937 fe ff ff ff d8 6e 01 00 f1 6e 01 00 .....n...n.. +941 0x00003fae control 12 -1 827516 0 -1 827516 0 ff ff ff ff 7c a0 0c 00 00 00 00 00 ....|....... +942 0x00003fba control 12 22 810265 0 22 810265 0 16 00 00 00 19 5d 0c 00 00 00 00 00 .....]...... +943 0x00003fc6 data 22 18 2214079 0 2214079 0 196609 0 12 00 00 00 bf c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +944 0x00003fdc control 12 -1 827517 0 -1 827517 0 ff ff ff ff 7d a0 0c 00 00 00 00 00 ....}....... +945 0x00003fe8 control 12 22 810266 0 22 810266 0 16 00 00 00 1a 5d 0c 00 00 00 00 00 .....]...... +946 0x00003ff4 data 22 18 2214081 0 2214081 0 196609 0 12 00 00 00 c1 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +947 0x0000400a control 12 -1 827518 0 -1 827518 0 ff ff ff ff 7e a0 0c 00 00 00 00 00 ....~....... +948 0x00004016 control 12 52 810267 0 52 810267 0 34 00 00 00 1b 5d 0c 00 00 00 00 00 4....]...... +949 0x00004022 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 bf 59 02 00 00 00 00 00 00 00 ae 6e d8 b1 5a 01 00 00 "0...Dk.................L."".([......Y.........n.." +950 0x00004056 control 12 -1 827519 0 -1 827519 0 ff ff ff ff 7f a0 0c 00 00 00 00 00 ............ +951 0x00004062 control 12 26 810268 0 26 810268 0 1a 00 00 00 1c 5d 0c 00 00 00 00 00 .....]...... +952 0x0000406e data 26 22 2214083 0 2214083 0 196609 0 16 00 00 00 c3 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +953 0x00004088 control 12 -1 827520 0 -1 827520 0 ff ff ff ff 80 a0 0c 00 00 00 00 00 ............ +954 0x00004094 control 12 22 810269 0 22 810269 0 16 00 00 00 1d 5d 0c 00 00 00 00 00 .....]...... +955 0x000040a0 data 22 18 2214085 0 2214085 0 196609 0 12 00 00 00 c5 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +956 0x000040b6 control 12 -1 827521 0 -1 827521 0 ff ff ff ff 81 a0 0c 00 00 00 00 00 ............ +957 0x000040c2 control 12 22 810270 0 22 810270 0 16 00 00 00 1e 5d 0c 00 00 00 00 00 .....]...... +958 0x000040ce data 22 18 2214087 0 2214087 0 196609 0 12 00 00 00 c7 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +959 0x000040e4 control 12 -2 93913 93938 -2 93913 93938 fe ff ff ff d9 6e 01 00 f2 6e 01 00 .....n...n.. +960 0x000040f0 control 12 -1 827522 0 -1 827522 0 ff ff ff ff 82 a0 0c 00 00 00 00 00 ............ +961 0x000040fc control 12 22 810271 0 22 810271 0 16 00 00 00 1f 5d 0c 00 00 00 00 00 .....]...... +962 0x00004108 data 22 18 2214089 0 2214089 0 196609 0 12 00 00 00 c9 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +963 0x0000411e control 12 -1 827523 0 -1 827523 0 ff ff ff ff 83 a0 0c 00 00 00 00 00 ............ +964 0x0000412a control 12 52 810272 0 52 810272 0 34 00 00 00 20 5d 0c 00 00 00 00 00 4... ]...... +965 0x00004136 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c0 59 02 00 00 00 00 00 00 00 a2 e0 06 b2 5a 01 00 00 "0...Dk.................L."".([......Y............" +966 0x0000416a control 12 -1 827524 0 -1 827524 0 ff ff ff ff 84 a0 0c 00 00 00 00 00 ............ +967 0x00004176 control 12 26 810273 0 26 810273 0 1a 00 00 00 21 5d 0c 00 00 00 00 00 ....!]...... +968 0x00004182 data 26 22 2214091 0 2214091 0 196609 0 16 00 00 00 cb c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +969 0x0000419c control 12 -1 827525 0 -1 827525 0 ff ff ff ff 85 a0 0c 00 00 00 00 00 ............ +970 0x000041a8 control 12 22 810274 0 22 810274 0 16 00 00 00 22 5d 0c 00 00 00 00 00 "....""]......" +971 0x000041b4 data 22 18 2214093 0 2214093 0 196609 0 12 00 00 00 cd c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +972 0x000041ca control 12 -1 827526 0 -1 827526 0 ff ff ff ff 86 a0 0c 00 00 00 00 00 ............ +973 0x000041d6 control 12 22 810275 0 22 810275 0 16 00 00 00 23 5d 0c 00 00 00 00 00 ....#]...... +974 0x000041e2 data 22 18 2214095 0 2214095 0 196609 0 12 00 00 00 cf c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +975 0x000041f8 control 12 -1 827527 0 -1 827527 0 ff ff ff ff 87 a0 0c 00 00 00 00 00 ............ +976 0x00004204 control 12 22 810276 0 22 810276 0 16 00 00 00 24 5d 0c 00 00 00 00 00 ....$]...... +977 0x00004210 data 22 18 2214097 0 2214097 0 196609 0 12 00 00 00 d1 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +978 0x00004226 control 12 -1 827528 0 -1 827528 0 ff ff ff ff 88 a0 0c 00 00 00 00 00 ............ +979 0x00004232 control 12 52 810277 0 52 810277 0 34 00 00 00 25 5d 0c 00 00 00 00 00 4...%]...... +980 0x0000423e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c1 59 02 00 00 00 00 00 00 00 fc 51 35 b2 5a 01 00 00 "0...Dk.................L."".([......Y.........Q5." +981 0x00004272 control 12 -1 827529 0 -1 827529 0 ff ff ff ff 89 a0 0c 00 00 00 00 00 ............ +982 0x0000427e control 12 26 810278 0 26 810278 0 1a 00 00 00 26 5d 0c 00 00 00 00 00 ....&]...... +983 0x0000428a data 26 22 2214099 0 2214099 0 196609 0 16 00 00 00 d3 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +984 0x000042a4 control 12 -1 827530 0 -1 827530 0 ff ff ff ff 8a a0 0c 00 00 00 00 00 ............ +985 0x000042b0 control 12 22 810279 0 22 810279 0 16 00 00 00 27 5d 0c 00 00 00 00 00 ....']...... +986 0x000042bc data 22 18 2214101 0 2214101 0 196609 0 12 00 00 00 d5 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +987 0x000042d2 control 12 -2 93914 93939 -2 93914 93939 fe ff ff ff da 6e 01 00 f3 6e 01 00 .....n...n.. +988 0x000042de control 12 -1 827531 0 -1 827531 0 ff ff ff ff 8b a0 0c 00 00 00 00 00 ............ +989 0x000042ea control 12 22 810280 0 22 810280 0 16 00 00 00 28 5d 0c 00 00 00 00 00 ....(]...... +990 0x000042f6 data 22 18 2214103 0 2214103 0 196609 0 12 00 00 00 d7 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +991 0x0000430c control 12 -1 827532 0 -1 827532 0 ff ff ff ff 8c a0 0c 00 00 00 00 00 ............ +992 0x00004318 control 12 22 810281 0 22 810281 0 16 00 00 00 29 5d 0c 00 00 00 00 00 ....)]...... +993 0x00004324 data 22 18 2214105 0 2214105 0 196609 0 12 00 00 00 d9 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +994 0x0000433a control 12 -1 827533 0 -1 827533 0 ff ff ff ff 8d a0 0c 00 00 00 00 00 ............ +995 0x00004346 control 12 52 810282 0 52 810282 0 34 00 00 00 2a 5d 0c 00 00 00 00 00 4...*]...... +996 0x00004352 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c2 59 02 00 00 00 00 00 00 00 e3 c0 63 b2 5a 01 00 00 "0...Dk.................L."".([......Y..........c." +997 0x00004386 control 12 -1 827534 0 -1 827534 0 ff ff ff ff 8e a0 0c 00 00 00 00 00 ............ +998 0x00004392 control 12 26 810283 0 26 810283 0 1a 00 00 00 2b 5d 0c 00 00 00 00 00 ....+]...... +999 0x0000439e data 26 22 2214107 0 2214107 0 196609 0 16 00 00 00 db c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1000 0x000043b8 control 12 -1 827535 0 -1 827535 0 ff ff ff ff 8f a0 0c 00 00 00 00 00 ............ +1001 0x000043c4 control 12 22 810284 0 22 810284 0 16 00 00 00 2c 5d 0c 00 00 00 00 00 ....,]...... +1002 0x000043d0 data 22 18 2214109 0 2214109 0 196609 0 12 00 00 00 dd c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1003 0x000043e6 control 12 -1 827536 0 -1 827536 0 ff ff ff ff 90 a0 0c 00 00 00 00 00 ............ +1004 0x000043f2 control 12 22 810285 0 22 810285 0 16 00 00 00 2d 5d 0c 00 00 00 00 00 ....-]...... +1005 0x000043fe data 22 18 2214111 0 2214111 0 196609 0 12 00 00 00 df c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1006 0x00004414 control 12 -1 827537 0 -1 827537 0 ff ff ff ff 91 a0 0c 00 00 00 00 00 ............ +1007 0x00004420 control 12 22 810286 0 22 810286 0 16 00 00 00 2e 5d 0c 00 00 00 00 00 .....]...... +1008 0x0000442c data 22 18 2214113 0 2214113 0 196609 0 12 00 00 00 e1 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1009 0x00004442 control 12 -1 827538 0 -1 827538 0 ff ff ff ff 92 a0 0c 00 00 00 00 00 ............ +1010 0x0000444e control 12 52 810287 0 52 810287 0 34 00 00 00 2f 5d 0c 00 00 00 00 00 4.../]...... +1011 0x0000445a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c3 59 02 00 00 00 00 00 00 00 ec 3a 92 b2 5a 01 00 00 "0...Dk.................L."".([......Y.........:.." +1012 0x0000448e control 12 -1 827539 0 -1 827539 0 ff ff ff ff 93 a0 0c 00 00 00 00 00 ............ +1013 0x0000449a control 12 26 810288 0 26 810288 0 1a 00 00 00 30 5d 0c 00 00 00 00 00 ....0]...... +1014 0x000044a6 data 26 22 2214115 0 2214115 0 196609 0 16 00 00 00 e3 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1015 0x000044c0 control 12 -2 93915 93940 -2 93915 93940 fe ff ff ff db 6e 01 00 f4 6e 01 00 .....n...n.. +1016 0x000044cc control 12 -1 827540 0 -1 827540 0 ff ff ff ff 94 a0 0c 00 00 00 00 00 ............ +1017 0x000044d8 control 12 22 810289 0 22 810289 0 16 00 00 00 31 5d 0c 00 00 00 00 00 ....1]...... +1018 0x000044e4 data 22 18 2214117 0 2214117 0 196609 0 12 00 00 00 e5 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1019 0x000044fa control 12 -1 827541 0 -1 827541 0 ff ff ff ff 95 a0 0c 00 00 00 00 00 ............ +1020 0x00004506 control 12 22 810290 0 22 810290 0 16 00 00 00 32 5d 0c 00 00 00 00 00 ....2]...... +1021 0x00004512 data 22 18 2214119 0 2214119 0 196609 0 12 00 00 00 e7 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1022 0x00004528 control 12 -1 827542 0 -1 827542 0 ff ff ff ff 96 a0 0c 00 00 00 00 00 ............ +1023 0x00004534 control 12 22 810291 0 22 810291 0 16 00 00 00 33 5d 0c 00 00 00 00 00 ....3]...... +1024 0x00004540 data 22 18 2214121 0 2214121 0 196609 0 12 00 00 00 e9 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1025 0x00004556 control 12 -1 827543 0 -1 827543 0 ff ff ff ff 97 a0 0c 00 00 00 00 00 ............ +1026 0x00004562 control 12 52 810292 0 52 810292 0 34 00 00 00 34 5d 0c 00 00 00 00 00 4...4]...... +1027 0x0000456e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c4 59 02 00 00 00 00 00 00 00 90 9d c0 b2 5a 01 00 00 "0...Dk.................L."".([......Y............" +1028 0x000045a2 control 12 -1 827544 0 -1 827544 0 ff ff ff ff 98 a0 0c 00 00 00 00 00 ............ +1029 0x000045ae control 12 26 810293 0 26 810293 0 1a 00 00 00 35 5d 0c 00 00 00 00 00 ....5]...... +1030 0x000045ba data 26 22 2214123 0 2214123 0 196609 0 16 00 00 00 eb c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1031 0x000045d4 control 12 -1 827545 0 -1 827545 0 ff ff ff ff 99 a0 0c 00 00 00 00 00 ............ +1032 0x000045e0 control 12 22 810294 0 22 810294 0 16 00 00 00 36 5d 0c 00 00 00 00 00 ....6]...... +1033 0x000045ec data 22 18 2214125 0 2214125 0 196609 0 12 00 00 00 ed c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1034 0x00004602 control 12 -1 827546 0 -1 827546 0 ff ff ff ff 9a a0 0c 00 00 00 00 00 ............ +1035 0x0000460e control 12 22 810295 0 22 810295 0 16 00 00 00 37 5d 0c 00 00 00 00 00 ....7]...... +1036 0x0000461a data 22 18 2214127 0 2214127 0 196609 0 12 00 00 00 ef c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1037 0x00004630 control 12 -2 93916 93941 -2 93916 93941 fe ff ff ff dc 6e 01 00 f5 6e 01 00 .....n...n.. +1038 0x0000463c control 12 -1 827547 0 -1 827547 0 ff ff ff ff 9b a0 0c 00 00 00 00 00 ............ +1039 0x00004648 control 12 22 810296 0 22 810296 0 16 00 00 00 38 5d 0c 00 00 00 00 00 ....8]...... +1040 0x00004654 data 22 18 2214129 0 2214129 0 196609 0 12 00 00 00 f1 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1041 0x0000466a control 12 -1 827548 0 -1 827548 0 ff ff ff ff 9c a0 0c 00 00 00 00 00 ............ +1042 0x00004676 control 12 52 810297 0 52 810297 0 34 00 00 00 39 5d 0c 00 00 00 00 00 4...9]...... +1043 0x00004682 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c5 59 02 00 00 00 00 00 00 00 c5 03 ef b2 5a 01 00 00 "0...Dk.................L."".([......Y............" +1044 0x000046b6 control 12 -1 827549 0 -1 827549 0 ff ff ff ff 9d a0 0c 00 00 00 00 00 ............ +1045 0x000046c2 control 12 26 810298 0 26 810298 0 1a 00 00 00 3a 5d 0c 00 00 00 00 00 ....:]...... +1046 0x000046ce data 26 22 2214131 0 2214131 0 196609 0 16 00 00 00 f3 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1047 0x000046e8 control 12 -1 827550 0 -1 827550 0 ff ff ff ff 9e a0 0c 00 00 00 00 00 ............ +1048 0x000046f4 control 12 22 810299 0 22 810299 0 16 00 00 00 3b 5d 0c 00 00 00 00 00 ....;]...... +1049 0x00004700 data 22 18 2214133 0 2214133 0 196609 0 12 00 00 00 f5 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1050 0x00004716 control 12 -1 827551 0 -1 827551 0 ff ff ff ff 9f a0 0c 00 00 00 00 00 ............ +1051 0x00004722 control 12 22 810300 0 22 810300 0 16 00 00 00 3c 5d 0c 00 00 00 00 00 ....<]...... +1052 0x0000472e data 22 18 2214135 0 2214135 0 196609 0 12 00 00 00 f7 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1053 0x00004744 control 12 -1 827552 0 -1 827552 0 ff ff ff ff a0 a0 0c 00 00 00 00 00 ............ +1054 0x00004750 control 12 22 810301 0 22 810301 0 16 00 00 00 3d 5d 0c 00 00 00 00 00 ....=]...... +1055 0x0000475c data 22 18 2214137 0 2214137 0 196609 0 12 00 00 00 f9 c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1056 0x00004772 control 12 -1 827553 0 -1 827553 0 ff ff ff ff a1 a0 0c 00 00 00 00 00 ............ +1057 0x0000477e control 12 52 810302 0 52 810302 0 34 00 00 00 3e 5d 0c 00 00 00 00 00 4...>]...... +1058 0x0000478a data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c6 59 02 00 00 00 00 00 00 00 ee 8f 1d b3 5a 01 00 00 "0...Dk.................L."".([......Y............" +1059 0x000047be control 12 -1 827554 0 -1 827554 0 ff ff ff ff a2 a0 0c 00 00 00 00 00 ............ +1060 0x000047ca control 12 26 810303 0 26 810303 0 1a 00 00 00 3f 5d 0c 00 00 00 00 00 ....?]...... +1061 0x000047d6 data 26 22 2214139 0 2214139 0 196609 0 16 00 00 00 fb c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1062 0x000047f0 control 12 -1 827555 0 -1 827555 0 ff ff ff ff a3 a0 0c 00 00 00 00 00 ............ +1063 0x000047fc control 12 22 810304 0 22 810304 0 16 00 00 00 40 5d 0c 00 00 00 00 00 ....@]...... +1064 0x00004808 data 22 18 2214141 0 2214141 0 196609 0 12 00 00 00 fd c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1065 0x0000481e control 12 -2 93917 93942 -2 93917 93942 fe ff ff ff dd 6e 01 00 f6 6e 01 00 .....n...n.. +1066 0x0000482a control 12 -1 827556 0 -1 827556 0 ff ff ff ff a4 a0 0c 00 00 00 00 00 ............ +1067 0x00004836 control 12 22 810305 0 22 810305 0 16 00 00 00 41 5d 0c 00 00 00 00 00 ....A]...... +1068 0x00004842 data 22 18 2214143 0 2214143 0 196609 0 12 00 00 00 ff c8 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1069 0x00004858 control 12 -1 827557 0 -1 827557 0 ff ff ff ff a5 a0 0c 00 00 00 00 00 ............ +1070 0x00004864 control 12 22 810306 0 22 810306 0 16 00 00 00 42 5d 0c 00 00 00 00 00 ....B]...... +1071 0x00004870 data 22 18 2214145 0 2214145 0 196609 0 12 00 00 00 01 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1072 0x00004886 control 12 -1 827558 0 -1 827558 0 ff ff ff ff a6 a0 0c 00 00 00 00 00 ............ +1073 0x00004892 control 12 52 810307 0 52 810307 0 34 00 00 00 43 5d 0c 00 00 00 00 00 4...C]...... +1074 0x0000489e data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c7 59 02 00 00 00 00 00 00 00 85 06 4c b3 5a 01 00 00 "0...Dk.................L."".([......Y..........L." +1075 0x000048d2 control 12 -1 827559 0 -1 827559 0 ff ff ff ff a7 a0 0c 00 00 00 00 00 ............ +1076 0x000048de control 12 26 810308 0 26 810308 0 1a 00 00 00 44 5d 0c 00 00 00 00 00 ....D]...... +1077 0x000048ea data 26 22 2214147 0 2214147 0 196609 0 16 00 00 00 03 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1078 0x00004904 control 12 -1 827560 0 -1 827560 0 ff ff ff ff a8 a0 0c 00 00 00 00 00 ............ +1079 0x00004910 control 12 22 810309 0 22 810309 0 16 00 00 00 45 5d 0c 00 00 00 00 00 ....E]...... +1080 0x0000491c data 22 18 2214149 0 2214149 0 196609 0 12 00 00 00 05 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1081 0x00004932 control 12 -1 827561 0 -1 827561 0 ff ff ff ff a9 a0 0c 00 00 00 00 00 ............ +1082 0x0000493e control 12 22 810310 0 22 810310 0 16 00 00 00 46 5d 0c 00 00 00 00 00 ....F]...... +1083 0x0000494a data 22 18 2214151 0 2214151 0 196609 0 12 00 00 00 07 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1084 0x00004960 control 12 -1 827562 0 -1 827562 0 ff ff ff ff aa a0 0c 00 00 00 00 00 ............ +1085 0x0000496c control 12 22 810311 0 22 810311 0 16 00 00 00 47 5d 0c 00 00 00 00 00 ....G]...... +1086 0x00004978 data 22 18 2214153 0 2214153 0 196609 0 12 00 00 00 09 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1087 0x0000498e control 12 -2 93918 93943 -2 93918 93943 fe ff ff ff de 6e 01 00 f7 6e 01 00 .....n...n.. +1088 0x0000499a control 12 -1 827563 0 -1 827563 0 ff ff ff ff ab a0 0c 00 00 00 00 00 ............ +1089 0x000049a6 control 12 52 810312 0 52 810312 0 34 00 00 00 48 5d 0c 00 00 00 00 00 4...H]...... +1090 0x000049b2 data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c8 59 02 00 00 00 00 00 00 00 20 a5 7a b3 5a 01 00 00 "0...Dk.................L."".([......Y........ .z." +1091 0x000049e6 control 12 -1 827564 0 -1 827564 0 ff ff ff ff ac a0 0c 00 00 00 00 00 ............ +1092 0x000049f2 control 12 26 810313 0 26 810313 0 1a 00 00 00 49 5d 0c 00 00 00 00 00 ....I]...... +1093 0x000049fe data 26 22 2214155 0 2214155 0 196609 0 16 00 00 00 0b c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1094 0x00004a18 control 12 -1 827565 0 -1 827565 0 ff ff ff ff ad a0 0c 00 00 00 00 00 ............ +1095 0x00004a24 control 12 22 810314 0 22 810314 0 16 00 00 00 4a 5d 0c 00 00 00 00 00 ....J]...... +1096 0x00004a30 data 22 18 2214157 0 2214157 0 196609 0 12 00 00 00 0d c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1097 0x00004a46 control 12 -1 827566 0 -1 827566 0 ff ff ff ff ae a0 0c 00 00 00 00 00 ............ +1098 0x00004a52 control 12 22 810315 0 22 810315 0 16 00 00 00 4b 5d 0c 00 00 00 00 00 ....K]...... +1099 0x00004a5e data 22 18 2214159 0 2214159 0 196609 0 12 00 00 00 0f c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1100 0x00004a74 control 12 -1 827567 0 -1 827567 0 ff ff ff ff af a0 0c 00 00 00 00 00 ............ +1101 0x00004a80 control 12 22 810316 0 22 810316 0 16 00 00 00 4c 5d 0c 00 00 00 00 00 ....L]...... +1102 0x00004a8c data 22 18 2214161 0 2214161 0 196609 0 12 00 00 00 11 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1103 0x00004aa2 control 12 -1 827568 0 -1 827568 0 ff ff ff ff b0 a0 0c 00 00 00 00 00 ............ +1104 0x00004aae control 12 52 810317 0 52 810317 0 34 00 00 00 4d 5d 0c 00 00 00 00 00 4...M]...... +1105 0x00004aba data 52 48 -661034172 -1245897748 -661034172 -1245897748 196609 65536 30 00 00 00 44 6b 99 d8 ec 1b bd b5 01 00 03 00 00 00 01 00 00 00 ff 4c 9e 22 cf 28 5b 1b 0a 00 00 00 c9 59 02 00 00 00 00 00 00 00 48 1a a9 b3 5a 01 00 00 "0...Dk.................L."".([......Y........H..." +1106 0x00004aee control 12 -1 827569 0 -1 827569 0 ff ff ff ff b1 a0 0c 00 00 00 00 00 ............ +1107 0x00004afa control 12 26 810318 0 26 810318 0 1a 00 00 00 4e 5d 0c 00 00 00 00 00 ....N]...... +1108 0x00004b06 data 26 22 2214163 0 2214163 0 196609 0 16 00 00 00 13 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 00 00 00 00 ......!................... +1109 0x00004b20 control 12 -1 827570 0 -1 827570 0 ff ff ff ff b2 a0 0c 00 00 00 00 00 ............ +1110 0x00004b2c control 12 22 810319 0 22 810319 0 16 00 00 00 4f 5d 0c 00 00 00 00 00 ....O]...... +1111 0x00004b38 data 22 18 2214165 0 2214165 0 196609 0 12 00 00 00 15 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1112 0x00004b4e control 12 -2 93919 93944 -2 93919 93944 fe ff ff ff df 6e 01 00 f8 6e 01 00 .....n...n.. +1113 0x00004b5a control 12 -1 827571 0 -1 827571 0 ff ff ff ff b3 a0 0c 00 00 00 00 00 ............ +1114 0x00004b66 control 12 22 810320 0 22 810320 0 16 00 00 00 50 5d 0c 00 00 00 00 00 ....P]...... +1115 0x00004b72 data 22 18 2214167 0 2214167 0 196609 0 12 00 00 00 17 c9 21 00 00 00 00 00 01 00 03 00 00 00 00 00 00 00 ......!............... +1116 0x00004b88 control 12 -1 827572 0 -1 827572 0 ff ff ff ff b4 a0 0c 00 00 00 00 00 ............ +1117 0x00004b94 control 12 -1 827573 0 -1 827573 0 ff ff ff ff b5 a0 0c 00 00 00 00 00 ............ +1118 0x00004ba0 unknown 12 22 810321 0 22 810321 0 16 00 00 00 51 5d 0c 00 00 00 00 00 ....Q]...... diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-conversations.tsv b/captures/044-frida-loopback-write-test-int-123456789/tcp-conversations.tsv new file mode 100644 index 0000000..586eec5 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-conversations.tsv @@ -0,0 +1,82 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 2251 43466 0.000000000 21.859385967 +::1:49704 ::1:52846 452 36118 4.161494732 21.787788868 +fe80::3608:256c:365:cc73:52889 fe80::3608:256c:365:cc73:55555 2 14170 18.059652090 18.216836214 +fe80::3608:256c:365:cc73:52861 fe80::3608:256c:365:cc73:55555 2 13997 6.628551960 6.703291655 +fe80::3608:256c:365:cc73:52850 fe80::3608:256c:365:cc73:55555 2 13978 4.581058264 4.655302286 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 16 6540 13.295992136 13.343153954 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 32 3878 4.546719074 19.679943323 +::1:808 ::1:52888 16 2882 17.066066504 17.077814817 +::1:808 ::1:52887 16 2880 16.922641039 16.934479713 +::1:808 ::1:52884 16 2870 15.240860701 15.252781868 +::1:808 ::1:52883 16 2868 15.086760998 15.099592686 +::1:135 ::1:52845 22 2860 4.158016920 21.762241840 +fe80::3608:256c:365:cc73:52865 fe80::3608:256c:365:cc73:55555 3 2703 8.338651180 10.987233877 +::1:443 ::1:52851 6 2674 4.633342505 4.644741297 +::1:808 ::1:52878 16 2430 12.196526527 12.211286545 +::1:808 ::1:52875 16 2429 12.015075445 12.027095795 +::1:808 ::1:52879 16 2423 12.361037016 12.381327152 +::1:808 ::1:52868 16 2418 10.516235828 10.528310776 +::1:808 ::1:52867 16 2417 10.345037699 10.356289625 +::1:808 ::1:52869 16 2411 10.679186344 10.691583872 +::1:808 ::1:52874 16 2398 11.860328197 11.874846458 +::1:808 ::1:52880 16 2390 12.552695990 12.564703941 +::1:808 ::1:52866 16 2386 10.166637897 10.178983927 +::1:808 ::1:52870 16 2378 10.833328009 10.844199896 +::1:32571 ::1:52863 4 2196 6.897694111 6.904662609 +::1:443 ::1:52852 6 2054 4.648403406 4.667782307 +::1:808 ::1:52856 16 1990 5.554922819 5.566157341 +::1:808 ::1:52853 16 1985 5.073342800 5.089227676 +::1:808 ::1:52858 16 1980 5.859330654 5.872775793 +::1:808 ::1:52855 16 1975 5.403676510 5.415711403 +::1:808 ::1:52857 16 1969 5.706068754 5.716967344 +::1:808 ::1:52854 16 1964 5.253641844 5.265658379 +::1:808 ::1:52864 16 1941 7.989725351 8.002866983 +fe80::3608:256c:365:cc73:52892 fe80::3608:256c:365:cc73:55555 3 1941 19.439446688 21.552904606 +::1:80 ::1:52836 6 1821 0.941807508 0.947696209 +::1:80 ::1:52838 6 1793 1.602238178 1.608257294 +::1:80 ::1:52841 6 1793 2.124391079 2.131097078 +::1:80 ::1:52872 6 1793 11.609883547 11.616229296 +::1:80 ::1:52877 6 1793 12.128115892 12.136592627 +::1:80 ::1:52898 6 1793 21.614466667 21.620243311 +::1:80 ::1:52894 6 1792 20.363871336 20.372599125 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 8.028932333 8.029454708 +::1:80 ::1:52860 6 1788 6.275944710 6.284046412 +::1:80 ::1:52886 6 1788 16.384112835 16.390162230 +::1:80 ::1:52896 6 1788 20.403576612 20.410542488 +::1:80 ::1:52891 6 1787 18.565232515 18.572692871 +::1:80 ::1:52849 6 1784 4.567577839 4.573531389 +127.0.0.1:57470 127.0.0.1:57477 100 1280 0.206132889 21.765163183 +127.0.0.1:57608 127.0.0.1:57631 100 1280 0.208753347 21.781321764 +fe80::3608:256c:365:cc73:52862 fe80::3608:256c:365:cc73:55555 2 1202 6.710581541 6.716006041 +::1:808 ::1:55800 2 1150 1.997909546 1.998308182 +127.0.0.1:57484 127.0.0.1:57746 88 1056 0.135826588 21.732676268 +127.0.0.1:57485 127.0.0.1:57747 88 1056 0.135826588 21.737722635 +127.0.0.1:57684 127.0.0.1:57745 88 1056 0.199999809 21.738514900 +10.100.0.48:1433 10.100.0.48:49792 8 1028 7.844619989 17.978393793 +10.100.0.48:1433 10.100.0.48:49805 12 1002 8.353704929 18.361898422 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52882 6 913 13.320444345 13.345824480 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52881 6 900 13.290688515 13.317678213 +::1:808 ::1:55769 1 488 18.259832621 18.259832621 +::1:80 ::1:52835 2 332 0.935764313 0.938823700 +::1:80 ::1:52837 2 332 1.595971823 1.599215508 +::1:80 ::1:52840 2 332 2.116688490 2.120234728 +::1:80 ::1:52848 2 332 4.559725523 4.564160347 +::1:80 ::1:52859 2 332 6.267752409 6.272269249 +::1:80 ::1:52871 2 332 11.603816509 11.606801748 +::1:80 ::1:52876 2 332 12.119186640 12.123672724 +::1:80 ::1:52885 2 332 16.376948833 16.380520582 +::1:80 ::1:52890 2 332 18.556989670 18.561233521 +::1:80 ::1:52893 2 332 20.356000900 20.360402822 +::1:80 ::1:52895 2 332 20.395294905 20.399712324 +::1:80 ::1:52897 2 332 21.605211735 21.610368013 +::1:49704 ::1:49829 2 270 17.865168810 17.865561247 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52839 1 52 1.637832403 1.637832403 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52873 1 52 11.638444424 11.638444424 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52899 1 52 21.640053272 21.640053272 +127.0.0.1:49248 127.0.0.1:63342 4 24 3.776938915 18.780520201 +127.0.0.1:49787 127.0.0.1:49788 24 24 4.581458092 21.552636385 +10.100.0.48:1433 10.100.0.48:49936 2 2 7.332711458 8.359053850 +10.100.0.48:1433 10.100.0.48:49933 2 2 7.779240131 9.686875582 +10.100.0.48:1433 10.100.0.48:49935 2 2 7.839268446 8.696252823 +10.100.0.48:1433 10.100.0.48:49934 2 2 7.875755787 8.513921022 diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-payload-packets.tsv b/captures/044-frida-loopback-write-test-int-123456789/tcp-payload-packets.tsv new file mode 100644 index 0000000..6fc1b04 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-payload-packets.tsv @@ -0,0 +1,2844 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +1 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3340077281 12 1a000000469f0c0000000000 ....F....... +3 0.000227213 127.0.0.1:57415 127.0.0.1:57433 3340077293 26 16000000548f6340e25e3140010003000000e5c6210000000000 ....T.c@.^1@........!..... +5 0.000560760 127.0.0.1:57433 127.0.0.1:57415 382461201 12 ffffffff469f0c0000000000 ....F....... +7 0.001169205 127.0.0.1:57433 127.0.0.1:57415 382461213 12 16000000f05b0c0000000000 .....[...... +9 0.001326561 127.0.0.1:57433 127.0.0.1:57415 382461225 22 12000000e5c621000000000001000300000000000000 ......!............... +11 0.001631975 127.0.0.1:57415 127.0.0.1:57433 3340077319 12 fffffffff05b0c0000000000 .....[...... +13 0.103145361 127.0.0.1:57415 127.0.0.1:57433 3340077331 12 1a000000479f0c0000000000 ....G....... +15 0.103341341 127.0.0.1:57415 127.0.0.1:57433 3340077343 26 16000000548f6340e25e3140010003000000e7c6210000000000 ....T.c@.^1@........!..... +17 0.103938580 127.0.0.1:57433 127.0.0.1:57415 382461247 12 ffffffff479f0c0000000000 ....G....... +19 0.104340792 127.0.0.1:57433 127.0.0.1:57415 382461259 12 16000000f15b0c0000000000 .....[...... +21 0.104517460 127.0.0.1:57433 127.0.0.1:57415 382461271 22 12000000e7c621000000000001000300000000000000 ......!............... +23 0.104725361 127.0.0.1:57415 127.0.0.1:57433 3340077369 12 fffffffff15b0c0000000000 .....[...... +29 0.156694651 127.0.0.1:57415 127.0.0.1:57433 3340077381 12 feffffffcd6e0100b36e0100 .....n...n.. +31 0.193343878 127.0.0.1:57415 127.0.0.1:57433 3340077393 12 65000000489f0c0000000000 e...H....... +33 0.193505526 127.0.0.1:57415 127.0.0.1:57433 3340077405 101 1e0000001c2118d0c46f33bb0100030000008359020000000000d15379c39d01 .....!...o3........Y.......Sy.....?.....3...|8.. +35 0.193873405 127.0.0.1:57433 127.0.0.1:57415 382461293 12 ffffffff489f0c0000000000 ....H....... +37 0.194920301 127.0.0.1:57433 127.0.0.1:57415 382461305 12 34000000f25b0c0000000000 4....[...... +39 0.195093393 127.0.0.1:57433 127.0.0.1:57415 382461317 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........5... +41 0.195358992 127.0.0.1:57415 127.0.0.1:57433 3340077506 12 fffffffff25b0c0000000000 .....[...... +43 0.196108341 127.0.0.1:57415 127.0.0.1:57433 3340077518 12 1e000000499f0c0000000000 ....I....... +45 0.196242809 127.0.0.1:57415 127.0.0.1:57433 3340077530 30 1a00000055ceff62b21b3a50010003000000e9c621000000000000000000 ....U..b..:P........!......... +47 0.196682930 127.0.0.1:57433 127.0.0.1:57415 382461369 12 ffffffff499f0c0000000000 ....I....... +49 0.197124958 127.0.0.1:57433 127.0.0.1:57415 382461381 12 1a000000f35b0c0000000000 .....[...... +51 0.197213650 127.0.0.1:57433 127.0.0.1:57415 382461393 26 16000000e9c62100000000000100030000000000000000000000 ......!................... +53 0.197464705 127.0.0.1:57415 127.0.0.1:57433 3340077560 12 fffffffff35b0c0000000000 .....[...... +61 0.206113338 127.0.0.1:57415 127.0.0.1:57433 3340077572 12 1a0000004a9f0c0000000000 ....J....... +63 0.206219673 127.0.0.1:57433 127.0.0.1:57415 382461419 12 feffffffb46e0100cd6e0100 .....n...n.. +66 0.206393719 127.0.0.1:57415 127.0.0.1:57433 3340077584 26 16000000548f6340e25e3140010003000000ebc6210000000000 ....T.c@.^1@........!..... +68 0.206786156 127.0.0.1:57433 127.0.0.1:57415 382461431 12 ffffffff4a9f0c0000000000 ....J....... +70 0.207172871 127.0.0.1:57433 127.0.0.1:57415 382461443 12 16000000f45b0c0000000000 .....[...... +72 0.207326651 127.0.0.1:57433 127.0.0.1:57415 382461455 22 12000000ebc621000000000001000300000000000000 ......!............... +74 0.207632542 127.0.0.1:57415 127.0.0.1:57433 3340077610 12 fffffffff45b0c0000000000 .....[...... +84 0.310192823 127.0.0.1:57415 127.0.0.1:57433 3340077622 12 1a0000004b9f0c0000000000 ....K....... +86 0.310418129 127.0.0.1:57415 127.0.0.1:57433 3340077634 26 16000000548f6340e25e3140010003000000edc6210000000000 ....T.c@.^1@........!..... +88 0.310767174 127.0.0.1:57433 127.0.0.1:57415 382461477 12 ffffffff4b9f0c0000000000 ....K....... +90 0.311158419 127.0.0.1:57433 127.0.0.1:57415 382461489 12 16000000f55b0c0000000000 .....[...... +92 0.311306000 127.0.0.1:57433 127.0.0.1:57415 382461501 22 12000000edc621000000000001000300000000000000 ......!............... +94 0.311649323 127.0.0.1:57415 127.0.0.1:57433 3340077660 12 fffffffff55b0c0000000000 .....[...... +96 0.413465738 127.0.0.1:57415 127.0.0.1:57433 3340077672 12 1a0000004c9f0c0000000000 ....L....... +98 0.413746119 127.0.0.1:57415 127.0.0.1:57433 3340077684 26 16000000548f6340e25e3140010003000000efc6210000000000 ....T.c@.^1@........!..... +100 0.414106369 127.0.0.1:57433 127.0.0.1:57415 382461523 12 ffffffff4c9f0c0000000000 ....L....... +102 0.414542913 127.0.0.1:57433 127.0.0.1:57415 382461535 12 16000000f65b0c0000000000 .....[...... +104 0.414763689 127.0.0.1:57433 127.0.0.1:57415 382461547 22 12000000efc621000000000001000300000000000000 ......!............... +106 0.415056944 127.0.0.1:57415 127.0.0.1:57433 3340077710 12 fffffffff65b0c0000000000 .....[...... +108 0.498724222 127.0.0.1:57415 127.0.0.1:57433 3340077722 12 650000004d9f0c0000000000 e...M....... +110 0.498940229 127.0.0.1:57415 127.0.0.1:57433 3340077734 101 1e0000001c2118d0c46f33bb0100030000008459020000000000035579c39d01 .....!...o3........Y.......Uy.....?.....3...|8.. +112 0.499324083 127.0.0.1:57433 127.0.0.1:57415 382461569 12 ffffffff4d9f0c0000000000 ....M....... +114 0.502705336 127.0.0.1:57433 127.0.0.1:57415 382461581 12 34000000f75b0c0000000000 4....[...... +116 0.502932787 127.0.0.1:57433 127.0.0.1:57415 382461593 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +118 0.503157854 127.0.0.1:57415 127.0.0.1:57433 3340077835 12 fffffffff75b0c0000000000 .....[...... +120 0.504181623 127.0.0.1:57415 127.0.0.1:57433 3340077847 12 1e0000004e9f0c0000000000 ....N....... +122 0.504327059 127.0.0.1:57415 127.0.0.1:57433 3340077859 30 1a00000055ceff62b21b3a50010003000000f1c621000000000000000000 ....U..b..:P........!......... +124 0.504694223 127.0.0.1:57433 127.0.0.1:57415 382461645 12 ffffffff4e9f0c0000000000 ....N....... +126 0.505908728 127.0.0.1:57433 127.0.0.1:57415 382461657 12 1a000000f85b0c0000000000 .....[...... +128 0.506034613 127.0.0.1:57433 127.0.0.1:57415 382461669 26 16000000f1c62100000000000100030000000000000000000000 ......!................... +130 0.506292820 127.0.0.1:57415 127.0.0.1:57433 3340077889 12 fffffffff85b0c0000000000 .....[...... +132 0.516602039 127.0.0.1:57415 127.0.0.1:57433 3340077901 12 1a0000004f9f0c0000000000 ....O....... +134 0.516781569 127.0.0.1:57415 127.0.0.1:57433 3340077913 26 16000000548f6340e25e3140010003000000f3c6210000000000 ....T.c@.^1@........!..... +136 0.517290592 127.0.0.1:57433 127.0.0.1:57415 382461695 12 ffffffff4f9f0c0000000000 ....O....... +138 0.517683506 127.0.0.1:57433 127.0.0.1:57415 382461707 12 16000000f95b0c0000000000 .....[...... +140 0.517834663 127.0.0.1:57433 127.0.0.1:57415 382461719 22 12000000f3c621000000000001000300000000000000 ......!............... +142 0.518147945 127.0.0.1:57415 127.0.0.1:57433 3340077939 12 fffffffff95b0c0000000000 .....[...... +144 0.621250153 127.0.0.1:57415 127.0.0.1:57433 3340077951 12 1a000000509f0c0000000000 ....P....... +146 0.621518612 127.0.0.1:57415 127.0.0.1:57433 3340077963 26 16000000548f6340e25e3140010003000000f5c6210000000000 ....T.c@.^1@........!..... +148 0.622324467 127.0.0.1:57433 127.0.0.1:57415 382461741 12 ffffffff509f0c0000000000 ....P....... +150 0.626359463 127.0.0.1:57433 127.0.0.1:57415 382461753 12 16000000fa5b0c0000000000 .....[...... +152 0.626679420 127.0.0.1:57433 127.0.0.1:57415 382461765 22 12000000f5c621000000000001000300000000000000 ......!............... +154 0.626998663 127.0.0.1:57415 127.0.0.1:57433 3340077989 12 fffffffffa5b0c0000000000 .....[...... +160 0.658903360 127.0.0.1:57415 127.0.0.1:57433 3340078001 12 feffffffce6e0100b46e0100 .....n...n.. +169 0.706720352 127.0.0.1:57433 127.0.0.1:57415 382461787 12 feffffffb56e0100ce6e0100 .....n...n.. +178 0.728729010 127.0.0.1:57415 127.0.0.1:57433 3340078013 12 1a000000519f0c0000000000 ....Q....... +180 0.728890657 127.0.0.1:57415 127.0.0.1:57433 3340078025 26 16000000548f6340e25e3140010003000000f7c6210000000000 ....T.c@.^1@........!..... +182 0.729201317 127.0.0.1:57433 127.0.0.1:57415 382461799 12 ffffffff519f0c0000000000 ....Q....... +184 0.729770184 127.0.0.1:57433 127.0.0.1:57415 382461811 12 16000000fb5b0c0000000000 .....[...... +186 0.729981899 127.0.0.1:57433 127.0.0.1:57415 382461823 22 12000000f7c621000000000001000300000000000000 ......!............... +188 0.730327845 127.0.0.1:57415 127.0.0.1:57433 3340078051 12 fffffffffb5b0c0000000000 .....[...... +192 0.806105614 127.0.0.1:57415 127.0.0.1:57433 3340078063 12 22000000529f0c0000000000 "...R....... +194 0.806354284 127.0.0.1:57415 127.0.0.1:57433 3340078075 34 1e0000001c2118d0c46f33bb0100030000008559020000000000375679c39d01 .....!...o3........Y......7Vy..... +196 0.806494951 127.0.0.1:57415 127.0.0.1:57433 3340078109 12 43000000539f0c0000000000 C...S....... +198 0.806618214 127.0.0.1:57415 127.0.0.1:57433 3340078121 67 3f000000980433cb0cb47c38010003000000010000000085590200000000003d ?.....3...|8............Y......=B.....&......... +200 0.806957245 127.0.0.1:57433 127.0.0.1:57415 382461845 12 ffffffff529f0c0000000000 ....R....... +202 0.807340860 127.0.0.1:57433 127.0.0.1:57415 382461857 12 ffffffff539f0c0000000000 ....S....... +204 0.808227062 127.0.0.1:57433 127.0.0.1:57415 382461869 12 34000000fc5b0c0000000000 4....[...... +206 0.808399677 127.0.0.1:57433 127.0.0.1:57415 382461881 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........FK. +208 0.808791399 127.0.0.1:57415 127.0.0.1:57433 3340078188 12 fffffffffc5b0c0000000000 .....[...... +210 0.809782743 127.0.0.1:57415 127.0.0.1:57433 3340078200 12 1e000000549f0c0000000000 ....T....... +212 0.809969902 127.0.0.1:57415 127.0.0.1:57433 3340078212 30 1a00000055ceff62b21b3a50010003000000f9c621000000000000000000 ....U..b..:P........!......... +214 0.810287237 127.0.0.1:57433 127.0.0.1:57415 382461933 12 ffffffff549f0c0000000000 ....T....... +216 0.810822725 127.0.0.1:57433 127.0.0.1:57415 382461945 12 1a000000fd5b0c0000000000 .....[...... +218 0.811074734 127.0.0.1:57433 127.0.0.1:57415 382461957 26 16000000f9c62100000000000100030000000000000000000000 ......!................... +220 0.811330080 127.0.0.1:57415 127.0.0.1:57433 3340078242 12 fffffffffd5b0c0000000000 .....[...... +222 0.831874371 127.0.0.1:57415 127.0.0.1:57433 3340078254 12 1a000000559f0c0000000000 ....U....... +224 0.832112312 127.0.0.1:57415 127.0.0.1:57433 3340078266 26 16000000548f6340e25e3140010003000000fbc6210000000000 ....T.c@.^1@........!..... +226 0.832475185 127.0.0.1:57433 127.0.0.1:57415 382461983 12 ffffffff559f0c0000000000 ....U....... +228 0.833034992 127.0.0.1:57433 127.0.0.1:57415 382461995 12 16000000fe5b0c0000000000 .....[...... +230 0.833197832 127.0.0.1:57433 127.0.0.1:57415 382462007 22 12000000fbc621000000000001000300000000000000 ......!............... +232 0.833488464 127.0.0.1:57415 127.0.0.1:57433 3340078292 12 fffffffffe5b0c0000000000 .....[...... +234 0.934643984 127.0.0.1:57415 127.0.0.1:57433 3340078304 12 1a000000569f0c0000000000 ....V....... +236 0.934867382 127.0.0.1:57415 127.0.0.1:57433 3340078316 26 16000000548f6340e25e3140010003000000fdc6210000000000 ....T.c@.^1@........!..... +241 0.935288906 127.0.0.1:57433 127.0.0.1:57415 382462029 12 ffffffff569f0c0000000000 ....V....... +245 0.935912132 127.0.0.1:57433 127.0.0.1:57415 382462041 12 16000000ff5b0c0000000000 .....[...... +247 0.936071634 127.0.0.1:57433 127.0.0.1:57415 382462053 22 12000000fdc621000000000001000300000000000000 ......!............... +249 0.936322689 127.0.0.1:57415 127.0.0.1:57433 3340078342 12 ffffffffff5b0c0000000000 .....[...... +276 1.037959814 127.0.0.1:57415 127.0.0.1:57433 3340078354 12 1a000000579f0c0000000000 ....W....... +278 1.038171291 127.0.0.1:57415 127.0.0.1:57433 3340078366 26 16000000548f6340e25e3140010003000000ffc6210000000000 ....T.c@.^1@........!..... +280 1.038619995 127.0.0.1:57433 127.0.0.1:57415 382462075 12 ffffffff579f0c0000000000 ....W....... +282 1.039469957 127.0.0.1:57433 127.0.0.1:57415 382462087 12 16000000005c0c0000000000 .....\...... +284 1.039624929 127.0.0.1:57433 127.0.0.1:57415 382462099 22 12000000ffc621000000000001000300000000000000 ......!............... +286 1.040007353 127.0.0.1:57415 127.0.0.1:57433 3340078392 12 ffffffff005c0c0000000000 .....\...... +288 1.111414909 127.0.0.1:57415 127.0.0.1:57433 3340078404 12 65000000589f0c0000000000 e...X....... +290 1.111613512 127.0.0.1:57415 127.0.0.1:57433 3340078416 101 1e0000001c2118d0c46f33bb0100030000008659020000000000685779c39d01 .....!...o3........Y......hWy.....?.....3...|8.. +292 1.111915112 127.0.0.1:57433 127.0.0.1:57415 382462121 12 ffffffff589f0c0000000000 ....X....... +294 1.113825798 127.0.0.1:57433 127.0.0.1:57415 382462133 12 34000000015c0c0000000000 4....\...... +296 1.114072800 127.0.0.1:57433 127.0.0.1:57415 382462145 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........y. +298 1.114390135 127.0.0.1:57415 127.0.0.1:57433 3340078517 12 ffffffff015c0c0000000000 .....\...... +300 1.115492821 127.0.0.1:57415 127.0.0.1:57433 3340078529 12 1e000000599f0c0000000000 ....Y....... +302 1.115633249 127.0.0.1:57415 127.0.0.1:57433 3340078541 30 1a00000055ceff62b21b3a5001000300000001c721000000000000000000 ....U..b..:P........!......... +304 1.115928888 127.0.0.1:57433 127.0.0.1:57415 382462197 12 ffffffff599f0c0000000000 ....Y....... +306 1.116282225 127.0.0.1:57433 127.0.0.1:57415 382462209 12 1a000000025c0c0000000000 .....\...... +308 1.116432667 127.0.0.1:57433 127.0.0.1:57415 382462221 26 1600000001c72100000000000100030000000000000000000000 ......!................... +310 1.116719246 127.0.0.1:57415 127.0.0.1:57433 3340078571 12 ffffffff025c0c0000000000 .....\...... +316 1.141927242 127.0.0.1:57415 127.0.0.1:57433 3340078583 12 1a0000005a9f0c0000000000 ....Z....... +318 1.142156124 127.0.0.1:57415 127.0.0.1:57433 3340078595 26 16000000548f6340e25e314001000300000003c7210000000000 ....T.c@.^1@........!..... +320 1.142492533 127.0.0.1:57433 127.0.0.1:57415 382462247 12 ffffffff5a9f0c0000000000 ....Z....... +322 1.142923117 127.0.0.1:57433 127.0.0.1:57415 382462259 12 16000000035c0c0000000000 .....\...... +324 1.143101692 127.0.0.1:57433 127.0.0.1:57415 382462271 22 1200000003c721000000000001000300000000000000 ......!............... +326 1.143316746 127.0.0.1:57415 127.0.0.1:57433 3340078621 12 ffffffff035c0c0000000000 .....\...... +328 1.161500692 127.0.0.1:57415 127.0.0.1:57433 3340078633 12 feffffffcf6e0100b56e0100 .....n...n.. +336 1.207598448 127.0.0.1:57433 127.0.0.1:57415 382462293 12 feffffffb66e0100cf6e0100 .....n...n.. +347 1.244473219 127.0.0.1:57415 127.0.0.1:57433 3340078645 12 1a0000005b9f0c0000000000 ....[....... +350 1.244673252 127.0.0.1:57415 127.0.0.1:57433 3340078657 26 16000000548f6340e25e314001000300000005c7210000000000 ....T.c@.^1@........!..... +352 1.245060205 127.0.0.1:57433 127.0.0.1:57415 382462305 12 ffffffff5b9f0c0000000000 ....[....... +354 1.245707989 127.0.0.1:57433 127.0.0.1:57415 382462317 12 16000000045c0c0000000000 .....\...... +356 1.245954990 127.0.0.1:57433 127.0.0.1:57415 382462329 22 1200000005c721000000000001000300000000000000 ......!............... +358 1.246212721 127.0.0.1:57415 127.0.0.1:57433 3340078683 12 ffffffff045c0c0000000000 .....\...... +360 1.348644257 127.0.0.1:57415 127.0.0.1:57433 3340078695 12 1a0000005c9f0c0000000000 ....\....... +362 1.348811865 127.0.0.1:57415 127.0.0.1:57433 3340078707 26 16000000548f6340e25e314001000300000007c7210000000000 ....T.c@.^1@........!..... +364 1.349073887 127.0.0.1:57433 127.0.0.1:57415 382462351 12 ffffffff5c9f0c0000000000 ....\....... +366 1.349568605 127.0.0.1:57433 127.0.0.1:57415 382462363 12 16000000055c0c0000000000 .....\...... +368 1.349721193 127.0.0.1:57433 127.0.0.1:57415 382462375 22 1200000007c721000000000001000300000000000000 ......!............... +370 1.350095272 127.0.0.1:57415 127.0.0.1:57433 3340078733 12 ffffffff055c0c0000000000 .....\...... +372 1.416977644 127.0.0.1:57415 127.0.0.1:57433 3340078745 12 220000005d9f0c0000000000 "...]....... +374 1.417257071 127.0.0.1:57415 127.0.0.1:57433 3340078757 34 1e0000001c2118d0c46f33bb0100030000008759020000000000995879c39d01 .....!...o3........Y.......Xy..... +376 1.417350531 127.0.0.1:57415 127.0.0.1:57433 3340078791 12 430000005e9f0c0000000000 C...^....... +378 1.417466402 127.0.0.1:57415 127.0.0.1:57433 3340078803 67 3f000000980433cb0cb47c38010003000000010000000087590200000000003d ?.....3...|8............Y......=B.....&......... +380 1.417619705 127.0.0.1:57433 127.0.0.1:57415 382462397 12 ffffffff5d9f0c0000000000 ....]....... +382 1.417791843 127.0.0.1:57433 127.0.0.1:57415 382462409 12 ffffffff5e9f0c0000000000 ....^....... +384 1.418312550 127.0.0.1:57433 127.0.0.1:57415 382462421 12 34000000065c0c0000000000 4....\...... +386 1.418464184 127.0.0.1:57433 127.0.0.1:57415 382462433 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........d.. +388 1.418746710 127.0.0.1:57415 127.0.0.1:57433 3340078870 12 ffffffff065c0c0000000000 .....\...... +390 1.419756889 127.0.0.1:57415 127.0.0.1:57433 3340078882 12 1e0000005f9f0c0000000000 ...._....... +392 1.419999838 127.0.0.1:57415 127.0.0.1:57433 3340078894 30 1a00000055ceff62b21b3a5001000300000009c721000000000000000000 ....U..b..:P........!......... +394 1.420314789 127.0.0.1:57433 127.0.0.1:57415 382462485 12 ffffffff5f9f0c0000000000 ...._....... +396 1.420778751 127.0.0.1:57433 127.0.0.1:57415 382462497 12 1a000000075c0c0000000000 .....\...... +398 1.420938969 127.0.0.1:57433 127.0.0.1:57415 382462509 26 1600000009c72100000000000100030000000000000000000000 ......!................... +400 1.421161175 127.0.0.1:57415 127.0.0.1:57433 3340078924 12 ffffffff075c0c0000000000 .....\...... +402 1.452800512 127.0.0.1:57415 127.0.0.1:57433 3340078936 12 1a000000609f0c0000000000 ....`....... +404 1.453080893 127.0.0.1:57415 127.0.0.1:57433 3340078948 26 16000000548f6340e25e31400100030000000bc7210000000000 ....T.c@.^1@........!..... +406 1.453763723 127.0.0.1:57433 127.0.0.1:57415 382462535 12 ffffffff609f0c0000000000 ....`....... +408 1.455003023 127.0.0.1:57433 127.0.0.1:57415 382462547 12 16000000085c0c0000000000 .....\...... +410 1.455168009 127.0.0.1:57433 127.0.0.1:57415 382462559 22 120000000bc721000000000001000300000000000000 ......!............... +412 1.455474377 127.0.0.1:57415 127.0.0.1:57433 3340078974 12 ffffffff085c0c0000000000 .....\...... +414 1.558558702 127.0.0.1:57415 127.0.0.1:57433 3340078986 12 1a000000619f0c0000000000 ....a....... +416 1.558782339 127.0.0.1:57415 127.0.0.1:57433 3340078998 26 16000000548f6340e25e31400100030000000dc7210000000000 ....T.c@.^1@........!..... +418 1.559099197 127.0.0.1:57433 127.0.0.1:57415 382462581 12 ffffffff619f0c0000000000 ....a....... +420 1.559735537 127.0.0.1:57433 127.0.0.1:57415 382462593 12 16000000095c0c0000000000 .....\...... +422 1.559946537 127.0.0.1:57433 127.0.0.1:57415 382462605 22 120000000dc721000000000001000300000000000000 ......!............... +424 1.560318470 127.0.0.1:57415 127.0.0.1:57433 3340079024 12 ffffffff095c0c0000000000 .....\...... +466 1.662806511 127.0.0.1:57415 127.0.0.1:57433 3340079036 12 feffffffd06e0100b66e0100 .....n...n.. +468 1.663005829 127.0.0.1:57415 127.0.0.1:57433 3340079048 12 1a000000629f0c0000000000 ....b....... +470 1.663207293 127.0.0.1:57415 127.0.0.1:57433 3340079060 26 16000000548f6340e25e31400100030000000fc7210000000000 ....T.c@.^1@........!..... +472 1.663520575 127.0.0.1:57433 127.0.0.1:57415 382462627 12 ffffffff629f0c0000000000 ....b....... +474 1.664002657 127.0.0.1:57433 127.0.0.1:57415 382462639 12 160000000a5c0c0000000000 .....\...... +476 1.664270163 127.0.0.1:57433 127.0.0.1:57415 382462651 22 120000000fc721000000000001000300000000000000 ......!............... +478 1.664723396 127.0.0.1:57415 127.0.0.1:57433 3340079086 12 ffffffff0a5c0c0000000000 .....\...... +486 1.707886696 127.0.0.1:57433 127.0.0.1:57415 382462673 12 feffffffb76e0100d06e0100 .....n...n.. +494 1.721731186 127.0.0.1:57415 127.0.0.1:57433 3340079098 12 65000000639f0c0000000000 e...c....... +496 1.721896410 127.0.0.1:57415 127.0.0.1:57433 3340079110 101 1e0000001c2118d0c46f33bb0100030000008859020000000000c95979c39d01 .....!...o3........Y.......Yy.....?.....3...|8.. +498 1.722216368 127.0.0.1:57433 127.0.0.1:57415 382462685 12 ffffffff639f0c0000000000 ....c....... +500 1.723399401 127.0.0.1:57433 127.0.0.1:57415 382462697 12 340000000b5c0c0000000000 4....\...... +502 1.723584652 127.0.0.1:57433 127.0.0.1:57415 382462709 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +504 1.723762989 127.0.0.1:57415 127.0.0.1:57433 3340079211 12 ffffffff0b5c0c0000000000 .....\...... +506 1.724584341 127.0.0.1:57415 127.0.0.1:57433 3340079223 12 1e000000649f0c0000000000 ....d....... +508 1.724732637 127.0.0.1:57415 127.0.0.1:57433 3340079235 30 1a00000055ceff62b21b3a5001000300000011c721000000000000000000 ....U..b..:P........!......... +510 1.724997282 127.0.0.1:57433 127.0.0.1:57415 382462761 12 ffffffff649f0c0000000000 ....d....... +512 1.725339890 127.0.0.1:57433 127.0.0.1:57415 382462773 12 1a0000000c5c0c0000000000 .....\...... +514 1.725543499 127.0.0.1:57433 127.0.0.1:57415 382462785 26 1600000011c72100000000000100030000000000000000000000 ......!................... +516 1.725755215 127.0.0.1:57415 127.0.0.1:57433 3340079265 12 ffffffff0c5c0c0000000000 .....\...... +522 1.766337395 127.0.0.1:57415 127.0.0.1:57433 3340079277 12 1a000000659f0c0000000000 ....e....... +524 1.766510010 127.0.0.1:57415 127.0.0.1:57433 3340079289 26 16000000548f6340e25e314001000300000013c7210000000000 ....T.c@.^1@........!..... +526 1.766805887 127.0.0.1:57433 127.0.0.1:57415 382462811 12 ffffffff659f0c0000000000 ....e....... +528 1.767253160 127.0.0.1:57433 127.0.0.1:57415 382462823 12 160000000d5c0c0000000000 .....\...... +530 1.767405987 127.0.0.1:57433 127.0.0.1:57415 382462835 22 1200000013c721000000000001000300000000000000 ......!............... +532 1.768064260 127.0.0.1:57415 127.0.0.1:57433 3340079315 12 ffffffff0d5c0c0000000000 .....\...... +534 1.869311094 127.0.0.1:57415 127.0.0.1:57433 3340079327 12 1a000000669f0c0000000000 ....f....... +536 1.869597435 127.0.0.1:57415 127.0.0.1:57433 3340079339 26 16000000548f6340e25e314001000300000015c7210000000000 ....T.c@.^1@........!..... +538 1.869908094 127.0.0.1:57433 127.0.0.1:57415 382462857 12 ffffffff669f0c0000000000 ....f....... +540 1.870364189 127.0.0.1:57433 127.0.0.1:57415 382462869 12 160000000e5c0c0000000000 .....\...... +542 1.870563745 127.0.0.1:57433 127.0.0.1:57415 382462881 22 1200000015c721000000000001000300000000000000 ......!............... +544 1.870811224 127.0.0.1:57415 127.0.0.1:57433 3340079365 12 ffffffff0e5c0c0000000000 .....\...... +546 1.972061396 127.0.0.1:57415 127.0.0.1:57433 3340079377 12 1a000000679f0c0000000000 ....g....... +548 1.972318411 127.0.0.1:57415 127.0.0.1:57433 3340079389 26 16000000548f6340e25e314001000300000017c7210000000000 ....T.c@.^1@........!..... +550 1.972719431 127.0.0.1:57433 127.0.0.1:57415 382462903 12 ffffffff679f0c0000000000 ....g....... +552 1.973160744 127.0.0.1:57433 127.0.0.1:57415 382462915 12 160000000f5c0c0000000000 .....\...... +554 1.973358870 127.0.0.1:57433 127.0.0.1:57415 382462927 22 1200000017c721000000000001000300000000000000 ......!............... +556 1.973681450 127.0.0.1:57415 127.0.0.1:57433 3340079415 12 ffffffff0f5c0c0000000000 .....\...... +562 2.026659489 127.0.0.1:57415 127.0.0.1:57433 3340079427 12 65000000689f0c0000000000 e...h....... +564 2.026920080 127.0.0.1:57415 127.0.0.1:57433 3340079439 101 1e0000001c2118d0c46f33bb0100030000008959020000000000fa5a79c39d01 .....!...o3........Y.......Zy.....?.....3...|8.. +566 2.027253866 127.0.0.1:57433 127.0.0.1:57415 382462949 12 ffffffff689f0c0000000000 ....h....... +568 2.028493404 127.0.0.1:57433 127.0.0.1:57415 382462961 12 34000000105c0c0000000000 4....\...... +570 2.028735876 127.0.0.1:57433 127.0.0.1:57415 382462973 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........}.. +572 2.029094219 127.0.0.1:57415 127.0.0.1:57433 3340079540 12 ffffffff105c0c0000000000 .....\...... +574 2.030107975 127.0.0.1:57415 127.0.0.1:57433 3340079552 12 1e000000699f0c0000000000 ....i....... +576 2.030263901 127.0.0.1:57415 127.0.0.1:57433 3340079564 30 1a00000055ceff62b21b3a5001000300000019c721000000000000000000 ....U..b..:P........!......... +578 2.030514240 127.0.0.1:57433 127.0.0.1:57415 382463025 12 ffffffff699f0c0000000000 ....i....... +580 2.031053305 127.0.0.1:57433 127.0.0.1:57415 382463037 12 1a000000115c0c0000000000 .....\...... +582 2.031232357 127.0.0.1:57433 127.0.0.1:57415 382463049 26 1600000019c72100000000000100030000000000000000000000 ......!................... +584 2.031580925 127.0.0.1:57415 127.0.0.1:57433 3340079594 12 ffffffff115c0c0000000000 .....\...... +586 2.076499462 127.0.0.1:57415 127.0.0.1:57433 3340079606 12 1a0000006a9f0c0000000000 ....j....... +588 2.076707840 127.0.0.1:57415 127.0.0.1:57433 3340079618 26 16000000548f6340e25e31400100030000001bc7210000000000 ....T.c@.^1@........!..... +590 2.077074051 127.0.0.1:57433 127.0.0.1:57415 382463075 12 ffffffff6a9f0c0000000000 ....j....... +592 2.078510284 127.0.0.1:57433 127.0.0.1:57415 382463087 12 16000000125c0c0000000000 .....\...... +594 2.078772306 127.0.0.1:57433 127.0.0.1:57415 382463099 22 120000001bc721000000000001000300000000000000 ......!............... +596 2.079029560 127.0.0.1:57415 127.0.0.1:57433 3340079644 12 ffffffff125c0c0000000000 .....\...... +632 2.164095402 127.0.0.1:57415 127.0.0.1:57433 3340079656 12 feffffffd16e0100b76e0100 .....n...n.. +634 2.180032492 127.0.0.1:57415 127.0.0.1:57433 3340079668 12 1a0000006b9f0c0000000000 ....k....... +636 2.180211782 127.0.0.1:57415 127.0.0.1:57433 3340079680 26 16000000548f6340e25e31400100030000001dc7210000000000 ....T.c@.^1@........!..... +638 2.180591822 127.0.0.1:57433 127.0.0.1:57415 382463121 12 ffffffff6b9f0c0000000000 ....k....... +640 2.181068420 127.0.0.1:57433 127.0.0.1:57415 382463133 12 16000000135c0c0000000000 .....\...... +642 2.181265354 127.0.0.1:57433 127.0.0.1:57415 382463145 22 120000001dc721000000000001000300000000000000 ......!............... +644 2.181645393 127.0.0.1:57415 127.0.0.1:57433 3340079706 12 ffffffff135c0c0000000000 .....\...... +653 2.208201408 127.0.0.1:57433 127.0.0.1:57415 382463167 12 feffffffb86e0100d16e0100 .....n...n.. +664 2.283723831 127.0.0.1:57415 127.0.0.1:57433 3340079718 12 1a0000006c9f0c0000000000 ....l....... +666 2.283950090 127.0.0.1:57415 127.0.0.1:57433 3340079730 26 16000000548f6340e25e31400100030000001fc7210000000000 ....T.c@.^1@........!..... +668 2.284390211 127.0.0.1:57433 127.0.0.1:57415 382463179 12 ffffffff6c9f0c0000000000 ....l....... +670 2.285581112 127.0.0.1:57433 127.0.0.1:57415 382463191 12 16000000145c0c0000000000 .....\...... +672 2.285763025 127.0.0.1:57433 127.0.0.1:57415 382463203 22 120000001fc721000000000001000300000000000000 ......!............... +674 2.286010504 127.0.0.1:57415 127.0.0.1:57433 3340079756 12 ffffffff145c0c0000000000 .....\...... +676 2.331813812 127.0.0.1:57415 127.0.0.1:57433 3340079768 12 650000006d9f0c0000000000 e...m....... +678 2.332085609 127.0.0.1:57415 127.0.0.1:57433 3340079780 101 1e0000001c2118d0c46f33bb0100030000008a590200000000002c5c79c39d01 .....!...o3........Y......,\y.....?.....3...|8.. +680 2.332391500 127.0.0.1:57433 127.0.0.1:57415 382463225 12 ffffffff6d9f0c0000000000 ....m....... +682 2.333490372 127.0.0.1:57433 127.0.0.1:57415 382463237 12 34000000155c0c0000000000 4....\...... +684 2.333644867 127.0.0.1:57433 127.0.0.1:57415 382463249 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........4. +686 2.334000826 127.0.0.1:57415 127.0.0.1:57433 3340079881 12 ffffffff155c0c0000000000 .....\...... +688 2.334841728 127.0.0.1:57415 127.0.0.1:57433 3340079893 12 1e0000006e9f0c0000000000 ....n....... +690 2.334984064 127.0.0.1:57415 127.0.0.1:57433 3340079905 30 1a00000055ceff62b21b3a5001000300000021c721000000000000000000 ....U..b..:P......!.!......... +692 2.335275412 127.0.0.1:57433 127.0.0.1:57415 382463301 12 ffffffff6e9f0c0000000000 ....n....... +694 2.335600615 127.0.0.1:57433 127.0.0.1:57415 382463313 12 1a000000165c0c0000000000 .....\...... +696 2.335736036 127.0.0.1:57433 127.0.0.1:57415 382463325 26 1600000021c72100000000000100030000000000000000000000 ....!.!................... +698 2.336054802 127.0.0.1:57415 127.0.0.1:57433 3340079935 12 ffffffff165c0c0000000000 .....\...... +700 2.388588428 127.0.0.1:57415 127.0.0.1:57433 3340079947 12 1a0000006f9f0c0000000000 ....o....... +702 2.388780117 127.0.0.1:57415 127.0.0.1:57433 3340079959 26 16000000548f6340e25e314001000300000023c7210000000000 ....T.c@.^1@......#.!..... +704 2.389110565 127.0.0.1:57433 127.0.0.1:57415 382463351 12 ffffffff6f9f0c0000000000 ....o....... +706 2.389575481 127.0.0.1:57433 127.0.0.1:57415 382463363 12 16000000175c0c0000000000 .....\...... +708 2.389729023 127.0.0.1:57433 127.0.0.1:57415 382463375 22 1200000023c721000000000001000300000000000000 ....#.!............... +710 2.390096188 127.0.0.1:57415 127.0.0.1:57433 3340079985 12 ffffffff175c0c0000000000 .....\...... +712 2.491402626 127.0.0.1:57415 127.0.0.1:57433 3340079997 12 1a000000709f0c0000000000 ....p....... +714 2.491666794 127.0.0.1:57415 127.0.0.1:57433 3340080009 26 16000000548f6340e25e314001000300000025c7210000000000 ....T.c@.^1@......%.!..... +716 2.492087603 127.0.0.1:57433 127.0.0.1:57415 382463397 12 ffffffff709f0c0000000000 ....p....... +718 2.492608547 127.0.0.1:57433 127.0.0.1:57415 382463409 12 16000000185c0c0000000000 .....\...... +720 2.492768288 127.0.0.1:57433 127.0.0.1:57415 382463421 22 1200000025c721000000000001000300000000000000 ....%.!............... +722 2.492999554 127.0.0.1:57415 127.0.0.1:57433 3340080035 12 ffffffff185c0c0000000000 .....\...... +724 2.596191168 127.0.0.1:57415 127.0.0.1:57433 3340080047 12 1a000000719f0c0000000000 ....q....... +726 2.596478701 127.0.0.1:57415 127.0.0.1:57433 3340080059 26 16000000548f6340e25e314001000300000027c7210000000000 ....T.c@.^1@......'.!..... +728 2.596794605 127.0.0.1:57433 127.0.0.1:57415 382463443 12 ffffffff719f0c0000000000 ....q....... +730 2.597360611 127.0.0.1:57433 127.0.0.1:57415 382463455 12 16000000195c0c0000000000 .....\...... +732 2.597511768 127.0.0.1:57433 127.0.0.1:57415 382463467 22 1200000027c721000000000001000300000000000000 ....'.!............... +734 2.597774744 127.0.0.1:57415 127.0.0.1:57433 3340080085 12 ffffffff195c0c0000000000 .....\...... +736 2.636039019 127.0.0.1:57415 127.0.0.1:57433 3340080097 12 22000000729f0c0000000000 "...r....... +738 2.636291504 127.0.0.1:57415 127.0.0.1:57433 3340080109 34 1e0000001c2118d0c46f33bb0100030000008b590200000000005c5d79c39d01 .....!...o3........Y......\]y..... +740 2.636430740 127.0.0.1:57415 127.0.0.1:57433 3340080143 12 43000000739f0c0000000000 C...s....... +742 2.636519432 127.0.0.1:57415 127.0.0.1:57433 3340080155 67 3f000000980433cb0cb47c3801000300000001000000008b590200000000003d ?.....3...|8............Y......=B.....&......... +744 2.636771917 127.0.0.1:57433 127.0.0.1:57415 382463489 12 ffffffff729f0c0000000000 ....r....... +746 2.637017012 127.0.0.1:57433 127.0.0.1:57415 382463501 12 ffffffff739f0c0000000000 ....s....... +748 2.639150620 127.0.0.1:57433 127.0.0.1:57415 382463513 12 340000001a5c0c0000000000 4....\...... +750 2.639315844 127.0.0.1:57433 127.0.0.1:57415 382463525 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........b. +752 2.639591217 127.0.0.1:57415 127.0.0.1:57433 3340080222 12 ffffffff1a5c0c0000000000 .....\...... +754 2.640543222 127.0.0.1:57415 127.0.0.1:57433 3340080234 12 1e000000749f0c0000000000 ....t....... +756 2.640681267 127.0.0.1:57415 127.0.0.1:57433 3340080246 30 1a00000055ceff62b21b3a5001000300000029c721000000000000000000 ....U..b..:P......).!......... +758 2.641037226 127.0.0.1:57433 127.0.0.1:57415 382463577 12 ffffffff749f0c0000000000 ....t....... +760 2.641553879 127.0.0.1:57433 127.0.0.1:57415 382463589 12 1a0000001b5c0c0000000000 .....\...... +762 2.641714334 127.0.0.1:57433 127.0.0.1:57415 382463601 26 1600000029c72100000000000100030000000000000000000000 ....).!................... +764 2.642008066 127.0.0.1:57415 127.0.0.1:57433 3340080276 12 ffffffff1b5c0c0000000000 .....\...... +770 2.665275335 127.0.0.1:57415 127.0.0.1:57433 3340080288 12 feffffffd26e0100b86e0100 .....n...n.. +772 2.699657679 127.0.0.1:57415 127.0.0.1:57433 3340080300 12 1a000000759f0c0000000000 ....u....... +774 2.699885607 127.0.0.1:57415 127.0.0.1:57433 3340080312 26 16000000548f6340e25e31400100030000002bc7210000000000 ....T.c@.^1@......+.!..... +776 2.700440407 127.0.0.1:57433 127.0.0.1:57415 382463627 12 ffffffff759f0c0000000000 ....u....... +778 2.700946093 127.0.0.1:57433 127.0.0.1:57415 382463639 12 160000001c5c0c0000000000 .....\...... +780 2.701180220 127.0.0.1:57433 127.0.0.1:57415 382463651 22 120000002bc721000000000001000300000000000000 ....+.!............... +782 2.701560974 127.0.0.1:57415 127.0.0.1:57433 3340080338 12 ffffffff1c5c0c0000000000 .....\...... +790 2.708364010 127.0.0.1:57433 127.0.0.1:57415 382463673 12 feffffffb96e0100d26e0100 .....n...n.. +802 2.802915096 127.0.0.1:57415 127.0.0.1:57433 3340080350 12 1a000000769f0c0000000000 ....v....... +804 2.803163290 127.0.0.1:57415 127.0.0.1:57433 3340080362 26 16000000548f6340e25e31400100030000002dc7210000000000 ....T.c@.^1@......-.!..... +806 2.803495407 127.0.0.1:57433 127.0.0.1:57415 382463685 12 ffffffff769f0c0000000000 ....v....... +808 2.803973913 127.0.0.1:57433 127.0.0.1:57415 382463697 12 160000001d5c0c0000000000 .....\...... +810 2.804187059 127.0.0.1:57433 127.0.0.1:57415 382463709 22 120000002dc721000000000001000300000000000000 ....-.!............... +812 2.804494619 127.0.0.1:57415 127.0.0.1:57433 3340080388 12 ffffffff1d5c0c0000000000 .....\...... +814 2.907399654 127.0.0.1:57415 127.0.0.1:57433 3340080400 12 1a000000779f0c0000000000 ....w....... +816 2.907575846 127.0.0.1:57415 127.0.0.1:57433 3340080412 26 16000000548f6340e25e31400100030000002fc7210000000000 ....T.c@.^1@....../.!..... +818 2.908040524 127.0.0.1:57433 127.0.0.1:57415 382463731 12 ffffffff779f0c0000000000 ....w....... +820 2.909099817 127.0.0.1:57433 127.0.0.1:57415 382463743 12 160000001e5c0c0000000000 .....\...... +822 2.909284353 127.0.0.1:57433 127.0.0.1:57415 382463755 22 120000002fc721000000000001000300000000000000 ..../.!............... +824 2.909713507 127.0.0.1:57415 127.0.0.1:57433 3340080438 12 ffffffff1e5c0c0000000000 .....\...... +826 2.941936493 127.0.0.1:57415 127.0.0.1:57433 3340080450 12 65000000789f0c0000000000 e...x....... +828 2.942131042 127.0.0.1:57415 127.0.0.1:57433 3340080462 101 1e0000001c2118d0c46f33bb0100030000008c590200000000008e5e79c39d01 .....!...o3........Y.......^y.....?.....3...|8.. +830 2.942472935 127.0.0.1:57433 127.0.0.1:57415 382463777 12 ffffffff789f0c0000000000 ....x....... +832 2.943509102 127.0.0.1:57433 127.0.0.1:57415 382463789 12 340000001f5c0c0000000000 4....\...... +834 2.943736792 127.0.0.1:57433 127.0.0.1:57415 382463801 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +836 2.944118977 127.0.0.1:57415 127.0.0.1:57433 3340080563 12 ffffffff1f5c0c0000000000 .....\...... +838 2.945078850 127.0.0.1:57415 127.0.0.1:57433 3340080575 12 1e000000799f0c0000000000 ....y....... +840 2.945271492 127.0.0.1:57415 127.0.0.1:57433 3340080587 30 1a00000055ceff62b21b3a5001000300000031c721000000000000000000 ....U..b..:P......1.!......... +842 2.945772171 127.0.0.1:57433 127.0.0.1:57415 382463853 12 ffffffff799f0c0000000000 ....y....... +844 2.946058512 127.0.0.1:57433 127.0.0.1:57415 382463865 12 1a000000205c0c0000000000 .... \...... +846 2.946219683 127.0.0.1:57433 127.0.0.1:57415 382463877 26 1600000031c72100000000000100030000000000000000000000 ....1.!................... +848 2.946494102 127.0.0.1:57415 127.0.0.1:57433 3340080617 12 ffffffff205c0c0000000000 .... \...... +850 3.011406660 127.0.0.1:57415 127.0.0.1:57433 3340080629 12 1a0000007a9f0c0000000000 ....z....... +852 3.011664629 127.0.0.1:57415 127.0.0.1:57433 3340080641 26 16000000548f6340e25e314001000300000033c7210000000000 ....T.c@.^1@......3.!..... +854 3.012075663 127.0.0.1:57433 127.0.0.1:57415 382463903 12 ffffffff7a9f0c0000000000 ....z....... +856 3.012590408 127.0.0.1:57433 127.0.0.1:57415 382463915 12 16000000215c0c0000000000 ....!\...... +858 3.012838364 127.0.0.1:57433 127.0.0.1:57415 382463927 22 1200000033c721000000000001000300000000000000 ....3.!............... +860 3.013068676 127.0.0.1:57415 127.0.0.1:57433 3340080667 12 ffffffff215c0c0000000000 ....!\...... +862 3.115425110 127.0.0.1:57415 127.0.0.1:57433 3340080679 12 1a0000007b9f0c0000000000 ....{....... +864 3.115635395 127.0.0.1:57415 127.0.0.1:57433 3340080691 26 16000000548f6340e25e314001000300000035c7210000000000 ....T.c@.^1@......5.!..... +866 3.116034269 127.0.0.1:57433 127.0.0.1:57415 382463949 12 ffffffff7b9f0c0000000000 ....{....... +868 3.116444111 127.0.0.1:57433 127.0.0.1:57415 382463961 12 16000000225c0c0000000000 ...."\...... +870 3.116625309 127.0.0.1:57433 127.0.0.1:57415 382463973 22 1200000035c721000000000001000300000000000000 ....5.!............... +872 3.116947174 127.0.0.1:57415 127.0.0.1:57433 3340080717 12 ffffffff225c0c0000000000 ...."\...... +886 3.166215420 127.0.0.1:57415 127.0.0.1:57433 3340080729 12 feffffffd36e0100b96e0100 .....n...n.. +896 3.208704233 127.0.0.1:57433 127.0.0.1:57415 382463995 12 feffffffba6e0100d36e0100 .....n...n.. +902 3.219588041 127.0.0.1:57415 127.0.0.1:57433 3340080741 12 1a0000007c9f0c0000000000 ....|....... +904 3.219758749 127.0.0.1:57415 127.0.0.1:57433 3340080753 26 16000000548f6340e25e314001000300000037c7210000000000 ....T.c@.^1@......7.!..... +906 3.220094919 127.0.0.1:57433 127.0.0.1:57415 382464007 12 ffffffff7c9f0c0000000000 ....|....... +908 3.220607519 127.0.0.1:57433 127.0.0.1:57415 382464019 12 16000000235c0c0000000000 ....#\...... +910 3.220757246 127.0.0.1:57433 127.0.0.1:57415 382464031 22 1200000037c721000000000001000300000000000000 ....7.!............... +912 3.221055508 127.0.0.1:57415 127.0.0.1:57433 3340080779 12 ffffffff235c0c0000000000 ....#\...... +916 3.246224403 127.0.0.1:57415 127.0.0.1:57433 3340080791 12 650000007d9f0c0000000000 e...}....... +918 3.246928692 127.0.0.1:57415 127.0.0.1:57433 3340080803 101 1e0000001c2118d0c46f33bb0100030000008d59020000000000be5f79c39d01 .....!...o3........Y......._y.....?.....3...|8.. +920 3.247414112 127.0.0.1:57433 127.0.0.1:57415 382464053 12 ffffffff7d9f0c0000000000 ....}....... +924 3.248539925 127.0.0.1:57433 127.0.0.1:57415 382464065 12 34000000245c0c0000000000 4...$\...... +926 3.248687267 127.0.0.1:57433 127.0.0.1:57415 382464077 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........2... +928 3.248920679 127.0.0.1:57415 127.0.0.1:57433 3340080904 12 ffffffff245c0c0000000000 ....$\...... +930 3.249848843 127.0.0.1:57415 127.0.0.1:57433 3340080916 12 1e0000007e9f0c0000000000 ....~....... +932 3.250044346 127.0.0.1:57415 127.0.0.1:57433 3340080928 30 1a00000055ceff62b21b3a5001000300000039c721000000000000000000 ....U..b..:P......9.!......... +934 3.250429630 127.0.0.1:57433 127.0.0.1:57415 382464129 12 ffffffff7e9f0c0000000000 ....~....... +936 3.250878096 127.0.0.1:57433 127.0.0.1:57415 382464141 12 1a000000255c0c0000000000 ....%\...... +938 3.251015186 127.0.0.1:57433 127.0.0.1:57415 382464153 26 1600000039c72100000000000100030000000000000000000000 ....9.!................... +940 3.251345873 127.0.0.1:57415 127.0.0.1:57433 3340080958 12 ffffffff255c0c0000000000 ....%\...... +942 3.323886395 127.0.0.1:57415 127.0.0.1:57433 3340080970 12 1a0000007f9f0c0000000000 ............ +944 3.324069738 127.0.0.1:57415 127.0.0.1:57433 3340080982 26 16000000548f6340e25e31400100030000003bc7210000000000 ....T.c@.^1@......;.!..... +946 3.324426413 127.0.0.1:57433 127.0.0.1:57415 382464179 12 ffffffff7f9f0c0000000000 ............ +948 3.324869871 127.0.0.1:57433 127.0.0.1:57415 382464191 12 16000000265c0c0000000000 ....&\...... +950 3.325020790 127.0.0.1:57433 127.0.0.1:57415 382464203 22 120000003bc721000000000001000300000000000000 ....;.!............... +952 3.325249910 127.0.0.1:57415 127.0.0.1:57433 3340081008 12 ffffffff265c0c0000000000 ....&\...... +956 3.426928759 127.0.0.1:57415 127.0.0.1:57433 3340081020 12 1a000000809f0c0000000000 ............ +958 3.427154064 127.0.0.1:57415 127.0.0.1:57433 3340081032 26 16000000548f6340e25e31400100030000003dc7210000000000 ....T.c@.^1@......=.!..... +960 3.427675486 127.0.0.1:57433 127.0.0.1:57415 382464225 12 ffffffff809f0c0000000000 ............ +962 3.428192854 127.0.0.1:57433 127.0.0.1:57415 382464237 12 16000000275c0c0000000000 ....'\...... +964 3.428452730 127.0.0.1:57433 127.0.0.1:57415 382464249 22 120000003dc721000000000001000300000000000000 ....=.!............... +966 3.428758383 127.0.0.1:57415 127.0.0.1:57433 3340081058 12 ffffffff275c0c0000000000 ....'\...... +968 3.530248642 127.0.0.1:57415 127.0.0.1:57433 3340081070 12 1a000000819f0c0000000000 ............ +970 3.530464411 127.0.0.1:57415 127.0.0.1:57433 3340081082 26 16000000548f6340e25e31400100030000003fc7210000000000 ....T.c@.^1@......?.!..... +972 3.530799150 127.0.0.1:57433 127.0.0.1:57415 382464271 12 ffffffff819f0c0000000000 ............ +974 3.531352997 127.0.0.1:57433 127.0.0.1:57415 382464283 12 16000000285c0c0000000000 ....(\...... +976 3.531527758 127.0.0.1:57433 127.0.0.1:57415 382464295 22 120000003fc721000000000001000300000000000000 ....?.!............... +978 3.531804562 127.0.0.1:57415 127.0.0.1:57433 3340081108 12 ffffffff285c0c0000000000 ....(\...... +980 3.551436901 127.0.0.1:57415 127.0.0.1:57433 3340081120 12 65000000829f0c0000000000 e........... +982 3.551626205 127.0.0.1:57415 127.0.0.1:57433 3340081132 101 1e0000001c2118d0c46f33bb0100030000008e59020000000000ef6079c39d01 .....!...o3........Y.......`y.....?.....3...|8.. +984 3.551954746 127.0.0.1:57433 127.0.0.1:57415 382464317 12 ffffffff829f0c0000000000 ............ +986 3.553172588 127.0.0.1:57433 127.0.0.1:57415 382464329 12 34000000295c0c0000000000 4...)\...... +988 3.553581476 127.0.0.1:57433 127.0.0.1:57415 382464341 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........$.. +990 3.553912401 127.0.0.1:57415 127.0.0.1:57433 3340081233 12 ffffffff295c0c0000000000 ....)\...... +992 3.554803610 127.0.0.1:57415 127.0.0.1:57433 3340081245 12 1e000000839f0c0000000000 ............ +994 3.554942131 127.0.0.1:57415 127.0.0.1:57433 3340081257 30 1a00000055ceff62b21b3a5001000300000041c721000000000000000000 ....U..b..:P......A.!......... +996 3.555257082 127.0.0.1:57433 127.0.0.1:57415 382464393 12 ffffffff839f0c0000000000 ............ +998 3.555619240 127.0.0.1:57433 127.0.0.1:57415 382464405 12 1a0000002a5c0c0000000000 ....*\...... +1000 3.555758715 127.0.0.1:57433 127.0.0.1:57415 382464417 26 1600000041c72100000000000100030000000000000000000000 ....A.!................... +1002 3.555993795 127.0.0.1:57415 127.0.0.1:57433 3340081287 12 ffffffff2a5c0c0000000000 ....*\...... +1008 3.632841587 127.0.0.1:57415 127.0.0.1:57433 3340081299 12 1a000000849f0c0000000000 ............ +1010 3.633043289 127.0.0.1:57415 127.0.0.1:57433 3340081311 26 16000000548f6340e25e314001000300000043c7210000000000 ....T.c@.^1@......C.!..... +1012 3.633373260 127.0.0.1:57433 127.0.0.1:57415 382464443 12 ffffffff849f0c0000000000 ............ +1014 3.633876324 127.0.0.1:57433 127.0.0.1:57415 382464455 12 160000002b5c0c0000000000 ....+\...... +1016 3.634030342 127.0.0.1:57433 127.0.0.1:57415 382464467 22 1200000043c721000000000001000300000000000000 ....C.!............... +1018 3.634284735 127.0.0.1:57415 127.0.0.1:57433 3340081337 12 ffffffff2b5c0c0000000000 ....+\...... +1024 3.667761087 127.0.0.1:57415 127.0.0.1:57433 3340081349 12 feffffffd46e0100ba6e0100 .....n...n.. +1033 3.710004568 127.0.0.1:57433 127.0.0.1:57415 382464489 12 feffffffbb6e0100d46e0100 .....n...n.. +1042 3.735770464 127.0.0.1:57415 127.0.0.1:57433 3340081361 12 1a000000859f0c0000000000 ............ +1044 3.735939741 127.0.0.1:57415 127.0.0.1:57433 3340081373 26 16000000548f6340e25e314001000300000045c7210000000000 ....T.c@.^1@......E.!..... +1046 3.736367226 127.0.0.1:57433 127.0.0.1:57415 382464501 12 ffffffff859f0c0000000000 ............ +1048 3.736738443 127.0.0.1:57433 127.0.0.1:57415 382464513 12 160000002c5c0c0000000000 ....,\...... +1050 3.736884356 127.0.0.1:57433 127.0.0.1:57415 382464525 22 1200000045c721000000000001000300000000000000 ....E.!............... +1052 3.737147808 127.0.0.1:57415 127.0.0.1:57433 3340081399 12 ffffffff2c5c0c0000000000 ....,\...... +1058 3.839604378 127.0.0.1:57415 127.0.0.1:57433 3340081411 12 1a000000869f0c0000000000 ............ +1060 3.839777708 127.0.0.1:57415 127.0.0.1:57433 3340081423 26 16000000548f6340e25e314001000300000047c7210000000000 ....T.c@.^1@......G.!..... +1062 3.840175629 127.0.0.1:57433 127.0.0.1:57415 382464547 12 ffffffff869f0c0000000000 ............ +1064 3.840583563 127.0.0.1:57433 127.0.0.1:57415 382464559 12 160000002d5c0c0000000000 ....-\...... +1066 3.840730429 127.0.0.1:57433 127.0.0.1:57415 382464571 22 1200000047c721000000000001000300000000000000 ....G.!............... +1068 3.841104984 127.0.0.1:57415 127.0.0.1:57433 3340081449 12 ffffffff2d5c0c0000000000 ....-\...... +1070 3.855995655 127.0.0.1:57415 127.0.0.1:57433 3340081461 12 65000000879f0c0000000000 e........... +1072 3.856221914 127.0.0.1:57415 127.0.0.1:57433 3340081473 101 1e0000001c2118d0c46f33bb0100030000008f59020000000000206279c39d01 .....!...o3........Y...... by.....?.....3...|8.. +1074 3.856536627 127.0.0.1:57433 127.0.0.1:57415 382464593 12 ffffffff879f0c0000000000 ............ +1076 3.857663155 127.0.0.1:57433 127.0.0.1:57415 382464605 12 340000002e5c0c0000000000 4....\...... +1078 3.857862473 127.0.0.1:57433 127.0.0.1:57415 382464617 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y......../... +1080 3.858278275 127.0.0.1:57415 127.0.0.1:57433 3340081574 12 ffffffff2e5c0c0000000000 .....\...... +1082 3.859098673 127.0.0.1:57415 127.0.0.1:57433 3340081586 12 1e000000889f0c0000000000 ............ +1084 3.859276295 127.0.0.1:57415 127.0.0.1:57433 3340081598 30 1a00000055ceff62b21b3a5001000300000049c721000000000000000000 ....U..b..:P......I.!......... +1086 3.859676123 127.0.0.1:57433 127.0.0.1:57415 382464669 12 ffffffff889f0c0000000000 ............ +1088 3.860013962 127.0.0.1:57433 127.0.0.1:57415 382464681 12 1a0000002f5c0c0000000000 ..../\...... +1090 3.860163689 127.0.0.1:57433 127.0.0.1:57415 382464693 26 1600000049c72100000000000100030000000000000000000000 ....I.!................... +1092 3.860611439 127.0.0.1:57415 127.0.0.1:57433 3340081628 12 ffffffff2f5c0c0000000000 ..../\...... +1096 3.943028212 127.0.0.1:57415 127.0.0.1:57433 3340081640 12 1a000000899f0c0000000000 ............ +1098 3.943242788 127.0.0.1:57415 127.0.0.1:57433 3340081652 26 16000000548f6340e25e31400100030000004bc7210000000000 ....T.c@.^1@......K.!..... +1100 3.943557024 127.0.0.1:57433 127.0.0.1:57415 382464719 12 ffffffff899f0c0000000000 ............ +1102 3.944229364 127.0.0.1:57433 127.0.0.1:57415 382464731 12 16000000305c0c0000000000 ....0\...... +1104 3.944449425 127.0.0.1:57433 127.0.0.1:57415 382464743 22 120000004bc721000000000001000300000000000000 ....K.!............... +1106 3.944837332 127.0.0.1:57415 127.0.0.1:57433 3340081678 12 ffffffff305c0c0000000000 ....0\...... +1108 4.046122313 127.0.0.1:57415 127.0.0.1:57433 3340081690 12 1a0000008a9f0c0000000000 ............ +1110 4.046319246 127.0.0.1:57415 127.0.0.1:57433 3340081702 26 16000000548f6340e25e31400100030000004dc7210000000000 ....T.c@.^1@......M.!..... +1112 4.046635389 127.0.0.1:57433 127.0.0.1:57415 382464765 12 ffffffff8a9f0c0000000000 ............ +1114 4.047097921 127.0.0.1:57433 127.0.0.1:57415 382464777 12 16000000315c0c0000000000 ....1\...... +1116 4.047276497 127.0.0.1:57433 127.0.0.1:57415 382464789 22 120000004dc721000000000001000300000000000000 ....M.!............... +1118 4.047531366 127.0.0.1:57415 127.0.0.1:57433 3340081728 12 ffffffff315c0c0000000000 ....1\...... +1132 4.150494576 127.0.0.1:57415 127.0.0.1:57433 3340081740 12 1a0000008b9f0c0000000000 ............ +1134 4.150700808 127.0.0.1:57415 127.0.0.1:57433 3340081752 26 16000000548f6340e25e31400100030000004fc7210000000000 ....T.c@.^1@......O.!..... +1136 4.151130676 127.0.0.1:57433 127.0.0.1:57415 382464811 12 ffffffff8b9f0c0000000000 ............ +1138 4.151709795 127.0.0.1:57433 127.0.0.1:57415 382464823 12 16000000325c0c0000000000 ....2\...... +1140 4.151849985 127.0.0.1:57433 127.0.0.1:57415 382464835 22 120000004fc721000000000001000300000000000000 ....O.!............... +1142 4.152165890 127.0.0.1:57415 127.0.0.1:57433 3340081778 12 ffffffff325c0c0000000000 ....2\...... +1169 4.162829399 127.0.0.1:57415 127.0.0.1:57433 3340081790 12 650000008c9f0c0000000000 e........... +1173 4.163045406 127.0.0.1:57415 127.0.0.1:57433 3340081802 101 1e0000001c2118d0c46f33bb0100030000009059020000000000536379c39d01 .....!...o3........Y......Scy.....?.....3...|8.. +1176 4.163439989 127.0.0.1:57433 127.0.0.1:57415 382464857 12 ffffffff8c9f0c0000000000 ............ +1178 4.164304495 127.0.0.1:57433 127.0.0.1:57415 382464869 12 34000000335c0c0000000000 4...3\...... +1180 4.164467573 127.0.0.1:57433 127.0.0.1:57415 382464881 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........cK. +1182 4.164782286 127.0.0.1:57415 127.0.0.1:57433 3340081903 12 ffffffff335c0c0000000000 ....3\...... +1192 4.165549994 127.0.0.1:57415 127.0.0.1:57433 3340081915 12 1e0000008d9f0c0000000000 ............ +1197 4.165745020 127.0.0.1:57415 127.0.0.1:57433 3340081927 30 1a00000055ceff62b21b3a5001000300000051c721000000000000000000 ....U..b..:P......Q.!......... +1203 4.166089296 127.0.0.1:57433 127.0.0.1:57415 382464933 12 ffffffff8d9f0c0000000000 ............ +1211 4.166561127 127.0.0.1:57433 127.0.0.1:57415 382464945 12 1a000000345c0c0000000000 ....4\...... +1214 4.166755438 127.0.0.1:57433 127.0.0.1:57415 382464957 26 1600000051c72100000000000100030000000000000000000000 ....Q.!................... +1220 4.167029381 127.0.0.1:57415 127.0.0.1:57433 3340081957 12 ffffffff345c0c0000000000 ....4\...... +1235 4.168161154 127.0.0.1:57415 127.0.0.1:57433 3340081969 12 feffffffd56e0100bb6e0100 .....n...n.. +1264 4.212488651 127.0.0.1:57433 127.0.0.1:57415 382464983 12 feffffffbc6e0100d56e0100 .....n...n.. +1274 4.253655910 127.0.0.1:57415 127.0.0.1:57433 3340081981 12 1a0000008e9f0c0000000000 ............ +1276 4.253916740 127.0.0.1:57415 127.0.0.1:57433 3340081993 26 16000000548f6340e25e314001000300000053c7210000000000 ....T.c@.^1@......S.!..... +1278 4.254297495 127.0.0.1:57433 127.0.0.1:57415 382464995 12 ffffffff8e9f0c0000000000 ............ +1280 4.254672289 127.0.0.1:57433 127.0.0.1:57415 382465007 12 16000000355c0c0000000000 ....5\...... +1282 4.254876375 127.0.0.1:57433 127.0.0.1:57415 382465019 22 1200000053c721000000000001000300000000000000 ....S.!............... +1284 4.255177259 127.0.0.1:57415 127.0.0.1:57433 3340082019 12 ffffffff355c0c0000000000 ....5\...... +1414 4.357158899 127.0.0.1:57415 127.0.0.1:57433 3340082031 12 1a0000008f9f0c0000000000 ............ +1416 4.357441664 127.0.0.1:57415 127.0.0.1:57433 3340082043 26 16000000548f6340e25e314001000300000055c7210000000000 ....T.c@.^1@......U.!..... +1418 4.357759237 127.0.0.1:57433 127.0.0.1:57415 382465041 12 ffffffff8f9f0c0000000000 ............ +1420 4.358149767 127.0.0.1:57433 127.0.0.1:57415 382465053 12 16000000365c0c0000000000 ....6\...... +1422 4.358302355 127.0.0.1:57433 127.0.0.1:57415 382465065 22 1200000055c721000000000001000300000000000000 ....U.!............... +1424 4.358636856 127.0.0.1:57415 127.0.0.1:57433 3340082069 12 ffffffff365c0c0000000000 ....6\...... +1496 4.461101532 127.0.0.1:57415 127.0.0.1:57433 3340082081 12 1a000000909f0c0000000000 ............ +1498 4.461287737 127.0.0.1:57415 127.0.0.1:57433 3340082093 26 16000000548f6340e25e314001000300000057c7210000000000 ....T.c@.^1@......W.!..... +1500 4.461654902 127.0.0.1:57433 127.0.0.1:57415 382465087 12 ffffffff909f0c0000000000 ............ +1502 4.461922407 127.0.0.1:57433 127.0.0.1:57415 382465099 12 16000000375c0c0000000000 ....7\...... +1504 4.462104797 127.0.0.1:57433 127.0.0.1:57415 382465111 22 1200000057c721000000000001000300000000000000 ....W.!............... +1506 4.462399483 127.0.0.1:57415 127.0.0.1:57433 3340082119 12 ffffffff375c0c0000000000 ....7\...... +1508 4.467498302 127.0.0.1:57415 127.0.0.1:57433 3340082131 12 22000000919f0c0000000000 "........... +1510 4.467703581 127.0.0.1:57415 127.0.0.1:57433 3340082143 34 1e0000001c2118d0c46f33bb0100030000009159020000000000836479c39d01 .....!...o3........Y.......dy..... +1512 4.467882156 127.0.0.1:57415 127.0.0.1:57433 3340082177 12 43000000929f0c0000000000 C........... +1514 4.468006611 127.0.0.1:57415 127.0.0.1:57433 3340082189 67 3f000000980433cb0cb47c38010003000000010000000091590200000000003d ?.....3...|8............Y......=B.....&......... +1515 4.468111992 127.0.0.1:57433 127.0.0.1:57415 382465133 12 ffffffff919f0c0000000000 ............ +1516 4.468218803 127.0.0.1:57433 127.0.0.1:57415 382465145 12 ffffffff929f0c0000000000 ............ +1519 4.469168663 127.0.0.1:57433 127.0.0.1:57415 382465157 12 34000000385c0c0000000000 4...8\...... +1521 4.469323397 127.0.0.1:57433 127.0.0.1:57415 382465169 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........y. +1523 4.469692945 127.0.0.1:57415 127.0.0.1:57433 3340082256 12 ffffffff385c0c0000000000 ....8\...... +1524 4.470844507 127.0.0.1:57415 127.0.0.1:57433 3340082268 12 1e000000939f0c0000000000 ............ +1525 4.470951557 127.0.0.1:57415 127.0.0.1:57433 3340082280 30 1a00000055ceff62b21b3a5001000300000059c721000000000000000000 ....U..b..:P......Y.!......... +1526 4.471229792 127.0.0.1:57433 127.0.0.1:57415 382465221 12 ffffffff939f0c0000000000 ............ +1528 4.471671820 127.0.0.1:57433 127.0.0.1:57415 382465233 12 1a000000395c0c0000000000 ....9\...... +1530 4.471870422 127.0.0.1:57433 127.0.0.1:57415 382465245 26 1600000059c72100000000000100030000000000000000000000 ....Y.!................... +1532 4.472171783 127.0.0.1:57415 127.0.0.1:57433 3340082310 12 ffffffff395c0c0000000000 ....9\...... +1578 4.564148426 127.0.0.1:57415 127.0.0.1:57433 3340082322 12 1a000000949f0c0000000000 ............ +1582 4.564389706 127.0.0.1:57415 127.0.0.1:57433 3340082334 26 16000000548f6340e25e31400100030000005bc7210000000000 ....T.c@.^1@......[.!..... +1584 4.564885616 127.0.0.1:57433 127.0.0.1:57415 382465271 12 ffffffff949f0c0000000000 ............ +1586 4.565308094 127.0.0.1:57433 127.0.0.1:57415 382465283 12 160000003a5c0c0000000000 ....:\...... +1588 4.565483809 127.0.0.1:57433 127.0.0.1:57415 382465295 22 120000005bc721000000000001000300000000000000 ....[.!............... +1590 4.565707684 127.0.0.1:57415 127.0.0.1:57433 3340082360 12 ffffffff3a5c0c0000000000 ....:\...... +1744 4.666918755 127.0.0.1:57415 127.0.0.1:57433 3340082372 12 1a000000959f0c0000000000 ............ +1746 4.667141914 127.0.0.1:57415 127.0.0.1:57433 3340082384 26 16000000548f6340e25e31400100030000005dc7210000000000 ....T.c@.^1@......].!..... +1748 4.667501450 127.0.0.1:57433 127.0.0.1:57415 382465317 12 ffffffff959f0c0000000000 ............ +1752 4.667955399 127.0.0.1:57433 127.0.0.1:57415 382465329 12 160000003b5c0c0000000000 ....;\...... +1754 4.668114901 127.0.0.1:57433 127.0.0.1:57415 382465341 22 120000005dc721000000000001000300000000000000 ....].!............... +1756 4.668467522 127.0.0.1:57415 127.0.0.1:57433 3340082410 12 ffffffff3b5c0c0000000000 ....;\...... +1758 4.668646812 127.0.0.1:57415 127.0.0.1:57433 3340082422 12 feffffffd66e0100bc6e0100 .....n...n.. +1766 4.712600708 127.0.0.1:57433 127.0.0.1:57415 382465363 12 feffffffbd6e0100d66e0100 .....n...n.. +1780 4.770891190 127.0.0.1:57415 127.0.0.1:57433 3340082434 12 1a000000969f0c0000000000 ............ +1782 4.771074772 127.0.0.1:57415 127.0.0.1:57433 3340082446 26 16000000548f6340e25e31400100030000005fc7210000000000 ....T.c@.^1@......_.!..... +1784 4.771448851 127.0.0.1:57433 127.0.0.1:57415 382465375 12 ffffffff969f0c0000000000 ............ +1786 4.772221327 127.0.0.1:57415 127.0.0.1:57433 3340082472 12 65000000979f0c0000000000 e........... +1788 4.772431374 127.0.0.1:57415 127.0.0.1:57433 3340082484 101 1e0000001c2118d0c46f33bb0100030000009259020000000000b46579c39d01 .....!...o3........Y.......ey.....?.....3...|8.. +1789 4.772451162 127.0.0.1:57433 127.0.0.1:57415 382465387 12 160000003c5c0c0000000000 ....<\...... +1792 4.772643805 127.0.0.1:57433 127.0.0.1:57415 382465399 22 120000005fc721000000000001000300000000000000 ...._.!............... +1794 4.772908449 127.0.0.1:57433 127.0.0.1:57415 382465421 12 ffffffff979f0c0000000000 ............ +1796 4.773009300 127.0.0.1:57415 127.0.0.1:57433 3340082585 12 ffffffff3c5c0c0000000000 ....<\...... +1797 4.773500443 127.0.0.1:57433 127.0.0.1:57415 382465433 12 340000003d5c0c0000000000 4...=\...... +1799 4.773642540 127.0.0.1:57433 127.0.0.1:57415 382465445 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........0[.. +1801 4.773808241 127.0.0.1:57415 127.0.0.1:57433 3340082597 12 ffffffff3d5c0c0000000000 ....=\...... +1802 4.774681330 127.0.0.1:57415 127.0.0.1:57433 3340082609 12 1e000000989f0c0000000000 ............ +1804 4.774837494 127.0.0.1:57415 127.0.0.1:57433 3340082621 30 1a00000055ceff62b21b3a5001000300000061c721000000000000000000 ....U..b..:P......a.!......... +1806 4.775053501 127.0.0.1:57433 127.0.0.1:57415 382465497 12 ffffffff989f0c0000000000 ............ +1808 4.775757790 127.0.0.1:57433 127.0.0.1:57415 382465509 12 1a0000003e5c0c0000000000 ....>\...... +1810 4.775892973 127.0.0.1:57433 127.0.0.1:57415 382465521 26 1600000061c72100000000000100030000000000000000000000 ....a.!................... +1812 4.776055574 127.0.0.1:57415 127.0.0.1:57433 3340082651 12 ffffffff3e5c0c0000000000 ....>\...... +1814 4.874907017 127.0.0.1:57415 127.0.0.1:57433 3340082663 12 1a000000999f0c0000000000 ............ +1816 4.875168324 127.0.0.1:57415 127.0.0.1:57433 3340082675 26 16000000548f6340e25e314001000300000063c7210000000000 ....T.c@.^1@......c.!..... +1818 4.875593185 127.0.0.1:57433 127.0.0.1:57415 382465547 12 ffffffff999f0c0000000000 ............ +1820 4.876648903 127.0.0.1:57433 127.0.0.1:57415 382465559 12 160000003f5c0c0000000000 ....?\...... +1822 4.876869678 127.0.0.1:57433 127.0.0.1:57415 382465571 22 1200000063c721000000000001000300000000000000 ....c.!............... +1824 4.877274513 127.0.0.1:57415 127.0.0.1:57433 3340082701 12 ffffffff3f5c0c0000000000 ....?\...... +1828 4.978589058 127.0.0.1:57415 127.0.0.1:57433 3340082713 12 1a0000009a9f0c0000000000 ............ +1830 4.978845596 127.0.0.1:57415 127.0.0.1:57433 3340082725 26 16000000548f6340e25e314001000300000065c7210000000000 ....T.c@.^1@......e.!..... +1832 4.979123592 127.0.0.1:57433 127.0.0.1:57415 382465593 12 ffffffff9a9f0c0000000000 ............ +1837 4.979665041 127.0.0.1:57433 127.0.0.1:57415 382465605 12 16000000405c0c0000000000 ....@\...... +1840 4.979810953 127.0.0.1:57433 127.0.0.1:57415 382465617 22 1200000065c721000000000001000300000000000000 ....e.!............... +1844 4.980540514 127.0.0.1:57415 127.0.0.1:57433 3340082751 12 ffffffff405c0c0000000000 ....@\...... +1865 5.076669216 127.0.0.1:57415 127.0.0.1:57433 3340082763 12 220000009b9f0c0000000000 "........... +1869 5.077088356 127.0.0.1:57415 127.0.0.1:57433 3340082775 34 1e0000001c2118d0c46f33bb0100030000009359020000000000e56679c39d01 .....!...o3........Y.......fy..... +1871 5.077330589 127.0.0.1:57415 127.0.0.1:57433 3340082809 12 430000009c9f0c0000000000 C........... +1873 5.077491045 127.0.0.1:57415 127.0.0.1:57433 3340082821 67 3f000000980433cb0cb47c38010003000000010000000093590200000000003d ?.....3...|8............Y......=B.....&......... +1874 5.077522516 127.0.0.1:57433 127.0.0.1:57415 382465639 12 ffffffff9b9f0c0000000000 ............ +1877 5.077765942 127.0.0.1:57433 127.0.0.1:57415 382465651 12 ffffffff9c9f0c0000000000 ............ +1882 5.079028368 127.0.0.1:57433 127.0.0.1:57415 382465663 12 34000000415c0c0000000000 4...A\...... +1885 5.079763412 127.0.0.1:57433 127.0.0.1:57415 382465675 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........^... +1890 5.080177307 127.0.0.1:57415 127.0.0.1:57433 3340082888 12 ffffffff415c0c0000000000 ....A\...... +1892 5.081082106 127.0.0.1:57415 127.0.0.1:57433 3340082900 12 1e0000009d9f0c0000000000 ............ +1894 5.081377745 127.0.0.1:57415 127.0.0.1:57433 3340082912 30 1a00000055ceff62b21b3a5001000300000067c721000000000000000000 ....U..b..:P......g.!......... +1900 5.081771612 127.0.0.1:57433 127.0.0.1:57415 382465727 12 ffffffff9d9f0c0000000000 ............ +1902 5.082121849 127.0.0.1:57415 127.0.0.1:57433 3340082942 12 1a0000009e9f0c0000000000 ............ +1903 5.082319975 127.0.0.1:57433 127.0.0.1:57415 382465739 38 1a000000425c0c00000000001600000067c72100000000000100030000000000 ....B\..........g.!................... +1905 5.082518578 127.0.0.1:57415 127.0.0.1:57433 3340082954 26 16000000548f6340e25e314001000300000069c7210000000000 ....T.c@.^1@......i.!..... +1907 5.082872629 127.0.0.1:57433 127.0.0.1:57415 382465777 12 ffffffff9e9f0c0000000000 ............ +1908 5.082924843 127.0.0.1:57415 127.0.0.1:57433 3340082980 12 ffffffff425c0c0000000000 ....B\...... +1915 5.083436728 127.0.0.1:57433 127.0.0.1:57415 382465789 12 16000000435c0c0000000000 ....C\...... +1916 5.083596706 127.0.0.1:57433 127.0.0.1:57415 382465801 22 1200000069c721000000000001000300000000000000 ....i.!............... +1917 5.083814144 127.0.0.1:57415 127.0.0.1:57433 3340082992 12 ffffffff435c0c0000000000 ....C\...... +1947 5.169266939 127.0.0.1:57415 127.0.0.1:57433 3340083004 12 feffffffd76e0100bd6e0100 .....n...n.. +1949 5.186612368 127.0.0.1:57415 127.0.0.1:57433 3340083016 12 1a0000009f9f0c0000000000 ............ +1951 5.186796904 127.0.0.1:57415 127.0.0.1:57433 3340083028 26 16000000548f6340e25e31400100030000006bc7210000000000 ....T.c@.^1@......k.!..... +1953 5.187185764 127.0.0.1:57433 127.0.0.1:57415 382465823 12 ffffffff9f9f0c0000000000 ............ +1955 5.187688828 127.0.0.1:57433 127.0.0.1:57415 382465835 12 16000000445c0c0000000000 ....D\...... +1957 5.187842131 127.0.0.1:57433 127.0.0.1:57415 382465847 22 120000006bc721000000000001000300000000000000 ....k.!............... +1959 5.188039541 127.0.0.1:57415 127.0.0.1:57433 3340083054 12 ffffffff445c0c0000000000 ....D\...... +1967 5.212709904 127.0.0.1:57433 127.0.0.1:57415 382465869 12 feffffffbe6e0100d76e0100 .....n...n.. +2018 5.289569616 127.0.0.1:57415 127.0.0.1:57433 3340083066 12 1a000000a09f0c0000000000 ............ +2020 5.289752007 127.0.0.1:57415 127.0.0.1:57433 3340083078 26 16000000548f6340e25e31400100030000006dc7210000000000 ....T.c@.^1@......m.!..... +2022 5.290124416 127.0.0.1:57433 127.0.0.1:57415 382465881 12 ffffffffa09f0c0000000000 ............ +2024 5.290523767 127.0.0.1:57433 127.0.0.1:57415 382465893 12 16000000455c0c0000000000 ....E\...... +2026 5.290661335 127.0.0.1:57433 127.0.0.1:57415 382465905 22 120000006dc721000000000001000300000000000000 ....m.!............... +2028 5.290973425 127.0.0.1:57415 127.0.0.1:57433 3340083104 12 ffffffff455c0c0000000000 ....E\...... +2030 5.383664608 127.0.0.1:57415 127.0.0.1:57433 3340083116 12 65000000a19f0c0000000000 e........... +2032 5.383871078 127.0.0.1:57415 127.0.0.1:57433 3340083128 101 1e0000001c2118d0c46f33bb0100030000009459020000000000176879c39d01 .....!...o3........Y.......hy.....?.....3...|8.. +2034 5.384283781 127.0.0.1:57433 127.0.0.1:57415 382465927 12 ffffffffa19f0c0000000000 ............ +2036 5.385282278 127.0.0.1:57433 127.0.0.1:57415 382465939 12 34000000465c0c0000000000 4...F\...... +2038 5.385461807 127.0.0.1:57433 127.0.0.1:57415 382465951 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +2040 5.385770798 127.0.0.1:57415 127.0.0.1:57433 3340083229 12 ffffffff465c0c0000000000 ....F\...... +2042 5.386861563 127.0.0.1:57415 127.0.0.1:57433 3340083241 12 1e000000a29f0c0000000000 ............ +2044 5.387066364 127.0.0.1:57415 127.0.0.1:57433 3340083253 30 1a00000055ceff62b21b3a500100030000006fc721000000000000000000 ....U..b..:P......o.!......... +2046 5.387361050 127.0.0.1:57433 127.0.0.1:57415 382466003 12 ffffffffa29f0c0000000000 ............ +2048 5.387980461 127.0.0.1:57433 127.0.0.1:57415 382466015 12 1a000000475c0c0000000000 ....G\...... +2050 5.388124228 127.0.0.1:57433 127.0.0.1:57415 382466027 26 160000006fc72100000000000100030000000000000000000000 ....o.!................... +2052 5.388379097 127.0.0.1:57415 127.0.0.1:57433 3340083283 12 ffffffff475c0c0000000000 ....G\...... +2054 5.392375708 127.0.0.1:57415 127.0.0.1:57433 3340083295 12 1a000000a39f0c0000000000 ............ +2056 5.392626286 127.0.0.1:57415 127.0.0.1:57433 3340083307 26 16000000548f6340e25e314001000300000071c7210000000000 ....T.c@.^1@......q.!..... +2058 5.392938137 127.0.0.1:57433 127.0.0.1:57415 382466053 12 ffffffffa39f0c0000000000 ............ +2060 5.393396378 127.0.0.1:57433 127.0.0.1:57415 382466065 12 16000000485c0c0000000000 ....H\...... +2062 5.393593311 127.0.0.1:57433 127.0.0.1:57415 382466077 22 1200000071c721000000000001000300000000000000 ....q.!............... +2064 5.393851757 127.0.0.1:57415 127.0.0.1:57433 3340083333 12 ffffffff485c0c0000000000 ....H\...... +2105 5.495331526 127.0.0.1:57415 127.0.0.1:57433 3340083345 12 1a000000a49f0c0000000000 ............ +2107 5.495630980 127.0.0.1:57415 127.0.0.1:57433 3340083357 26 16000000548f6340e25e314001000300000073c7210000000000 ....T.c@.^1@......s.!..... +2109 5.495944023 127.0.0.1:57433 127.0.0.1:57415 382466099 12 ffffffffa49f0c0000000000 ............ +2111 5.496801615 127.0.0.1:57433 127.0.0.1:57415 382466111 12 16000000495c0c0000000000 ....I\...... +2113 5.497030497 127.0.0.1:57433 127.0.0.1:57415 382466123 22 1200000073c721000000000001000300000000000000 ....s.!............... +2115 5.497220039 127.0.0.1:57415 127.0.0.1:57433 3340083383 12 ffffffff495c0c0000000000 ....I\...... +2156 5.600541830 127.0.0.1:57415 127.0.0.1:57433 3340083395 12 1a000000a59f0c0000000000 ............ +2158 5.600915194 127.0.0.1:57415 127.0.0.1:57433 3340083407 26 16000000548f6340e25e314001000300000075c7210000000000 ....T.c@.^1@......u.!..... +2160 5.601413488 127.0.0.1:57433 127.0.0.1:57415 382466145 12 ffffffffa59f0c0000000000 ............ +2162 5.601896763 127.0.0.1:57433 127.0.0.1:57415 382466157 12 160000004a5c0c0000000000 ....J\...... +2164 5.602040052 127.0.0.1:57433 127.0.0.1:57415 382466169 22 1200000075c721000000000001000300000000000000 ....u.!............... +2166 5.602283716 127.0.0.1:57415 127.0.0.1:57433 3340083433 12 ffffffff4a5c0c0000000000 ....J\...... +2172 5.670952559 127.0.0.1:57415 127.0.0.1:57433 3340083445 12 feffffffd86e0100be6e0100 .....n...n.. +2174 5.688666582 127.0.0.1:57415 127.0.0.1:57433 3340083457 12 65000000a69f0c0000000000 e........... +2176 5.688883305 127.0.0.1:57415 127.0.0.1:57433 3340083469 101 1e0000001c2118d0c46f33bb0100030000009559020000000000486979c39d01 .....!...o3........Y......Hiy.....?.....3...|8.. +2178 5.689308882 127.0.0.1:57433 127.0.0.1:57415 382466191 12 ffffffffa69f0c0000000000 ............ +2180 5.690497398 127.0.0.1:57433 127.0.0.1:57415 382466203 12 340000004b5c0c0000000000 4...K\...... +2182 5.690751076 127.0.0.1:57433 127.0.0.1:57415 382466215 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........D4. +2184 5.691049099 127.0.0.1:57415 127.0.0.1:57433 3340083570 12 ffffffff4b5c0c0000000000 ....K\...... +2186 5.692231894 127.0.0.1:57415 127.0.0.1:57433 3340083582 12 1e000000a79f0c0000000000 ............ +2188 5.692412138 127.0.0.1:57415 127.0.0.1:57433 3340083594 30 1a00000055ceff62b21b3a5001000300000077c721000000000000000000 ....U..b..:P......w.!......... +2190 5.692844868 127.0.0.1:57433 127.0.0.1:57415 382466267 12 ffffffffa79f0c0000000000 ............ +2192 5.693318129 127.0.0.1:57433 127.0.0.1:57415 382466279 12 1a0000004c5c0c0000000000 ....L\...... +2194 5.693577290 127.0.0.1:57433 127.0.0.1:57415 382466291 26 1600000077c72100000000000100030000000000000000000000 ....w.!................... +2196 5.693816185 127.0.0.1:57415 127.0.0.1:57433 3340083624 12 ffffffff4c5c0c0000000000 ....L\...... +2201 5.705022097 127.0.0.1:57415 127.0.0.1:57433 3340083636 12 1a000000a89f0c0000000000 ............ +2203 5.705209017 127.0.0.1:57415 127.0.0.1:57433 3340083648 26 16000000548f6340e25e314001000300000079c7210000000000 ....T.c@.^1@......y.!..... +2205 5.705754519 127.0.0.1:57433 127.0.0.1:57415 382466317 12 ffffffffa89f0c0000000000 ............ +2207 5.706064224 127.0.0.1:57433 127.0.0.1:57415 382466329 12 160000004d5c0c0000000000 ....M\...... +2211 5.706217527 127.0.0.1:57433 127.0.0.1:57415 382466341 22 1200000079c721000000000001000300000000000000 ....y.!............... +2215 5.706412315 127.0.0.1:57415 127.0.0.1:57433 3340083674 12 ffffffff4d5c0c0000000000 ....M\...... +2247 5.713992357 127.0.0.1:57433 127.0.0.1:57415 382466363 12 feffffffbf6e0100d86e0100 .....n...n.. +2267 5.808102369 127.0.0.1:57415 127.0.0.1:57433 3340083686 12 1a000000a99f0c0000000000 ............ +2269 5.808299303 127.0.0.1:57415 127.0.0.1:57433 3340083698 26 16000000548f6340e25e31400100030000007bc7210000000000 ....T.c@.^1@......{.!..... +2271 5.808586121 127.0.0.1:57433 127.0.0.1:57415 382466375 12 ffffffffa99f0c0000000000 ............ +2273 5.809005737 127.0.0.1:57433 127.0.0.1:57415 382466387 12 160000004e5c0c0000000000 ....N\...... +2275 5.809157610 127.0.0.1:57433 127.0.0.1:57415 382466399 22 120000007bc721000000000001000300000000000000 ....{.!............... +2277 5.809495449 127.0.0.1:57415 127.0.0.1:57433 3340083724 12 ffffffff4e5c0c0000000000 ....N\...... +2318 5.911889791 127.0.0.1:57415 127.0.0.1:57433 3340083736 12 1a000000aa9f0c0000000000 ............ +2320 5.912109613 127.0.0.1:57415 127.0.0.1:57433 3340083748 26 16000000548f6340e25e31400100030000007dc7210000000000 ....T.c@.^1@......}.!..... +2322 5.912383318 127.0.0.1:57433 127.0.0.1:57415 382466421 12 ffffffffaa9f0c0000000000 ............ +2324 5.912859917 127.0.0.1:57433 127.0.0.1:57415 382466433 12 160000004f5c0c0000000000 ....O\...... +2326 5.913087845 127.0.0.1:57433 127.0.0.1:57415 382466445 22 120000007dc721000000000001000300000000000000 ....}.!............... +2328 5.913405895 127.0.0.1:57415 127.0.0.1:57433 3340083774 12 ffffffff4f5c0c0000000000 ....O\...... +2330 5.992931604 127.0.0.1:57415 127.0.0.1:57433 3340083786 12 65000000ab9f0c0000000000 e........... +2332 5.993183851 127.0.0.1:57415 127.0.0.1:57433 3340083798 101 1e0000001c2118d0c46f33bb0100030000009659020000000000796a79c39d01 .....!...o3........Y......yjy.....?.....3...|8.. +2334 5.993435860 127.0.0.1:57433 127.0.0.1:57415 382466467 12 ffffffffab9f0c0000000000 ............ +2336 5.994482517 127.0.0.1:57433 127.0.0.1:57415 382466479 12 34000000505c0c0000000000 4...P\...... +2338 5.994626522 127.0.0.1:57433 127.0.0.1:57415 382466491 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........b. +2340 5.994837761 127.0.0.1:57415 127.0.0.1:57433 3340083899 12 ffffffff505c0c0000000000 ....P\...... +2342 5.995628595 127.0.0.1:57415 127.0.0.1:57433 3340083911 12 1e000000ac9f0c0000000000 ............ +2344 5.995765209 127.0.0.1:57415 127.0.0.1:57433 3340083923 30 1a00000055ceff62b21b3a500100030000007fc721000000000000000000 ....U..b..:P........!......... +2346 5.996014118 127.0.0.1:57433 127.0.0.1:57415 382466543 12 ffffffffac9f0c0000000000 ............ +2348 5.996880054 127.0.0.1:57433 127.0.0.1:57415 382466555 12 1a000000515c0c0000000000 ....Q\...... +2350 5.997041464 127.0.0.1:57433 127.0.0.1:57415 382466567 26 160000007fc72100000000000100030000000000000000000000 ......!................... +2352 5.997253418 127.0.0.1:57415 127.0.0.1:57433 3340083953 12 ffffffff515c0c0000000000 ....Q\...... +2354 6.014825583 127.0.0.1:57415 127.0.0.1:57433 3340083965 12 1a000000ad9f0c0000000000 ............ +2356 6.015177727 127.0.0.1:57415 127.0.0.1:57433 3340083977 26 16000000548f6340e25e314001000300000081c7210000000000 ....T.c@.^1@........!..... +2358 6.015502691 127.0.0.1:57433 127.0.0.1:57415 382466593 12 ffffffffad9f0c0000000000 ............ +2360 6.016059399 127.0.0.1:57433 127.0.0.1:57415 382466605 12 16000000525c0c0000000000 ....R\...... +2362 6.016588688 127.0.0.1:57433 127.0.0.1:57415 382466617 22 1200000081c721000000000001000300000000000000 ......!............... +2364 6.016963243 127.0.0.1:57415 127.0.0.1:57433 3340084003 12 ffffffff525c0c0000000000 ....R\...... +2366 6.119696140 127.0.0.1:57415 127.0.0.1:57433 3340084015 12 1a000000ae9f0c0000000000 ............ +2368 6.119951487 127.0.0.1:57415 127.0.0.1:57433 3340084027 26 16000000548f6340e25e314001000300000083c7210000000000 ....T.c@.^1@........!..... +2370 6.120267153 127.0.0.1:57433 127.0.0.1:57415 382466639 12 ffffffffae9f0c0000000000 ............ +2372 6.120782852 127.0.0.1:57433 127.0.0.1:57415 382466651 12 16000000535c0c0000000000 ....S\...... +2374 6.120932102 127.0.0.1:57433 127.0.0.1:57415 382466663 22 1200000083c721000000000001000300000000000000 ......!............... +2376 6.121762514 127.0.0.1:57415 127.0.0.1:57433 3340084053 12 ffffffff535c0c0000000000 ....S\...... +2386 6.171863079 127.0.0.1:57415 127.0.0.1:57433 3340084065 12 feffffffd96e0100bf6e0100 .....n...n.. +2396 6.215545893 127.0.0.1:57433 127.0.0.1:57415 382466685 12 feffffffc06e0100d96e0100 .....n...n.. +2402 6.223482609 127.0.0.1:57415 127.0.0.1:57433 3340084077 12 1a000000af9f0c0000000000 ............ +2404 6.223681688 127.0.0.1:57415 127.0.0.1:57433 3340084089 26 16000000548f6340e25e314001000300000085c7210000000000 ....T.c@.^1@........!..... +2406 6.223989725 127.0.0.1:57433 127.0.0.1:57415 382466697 12 ffffffffaf9f0c0000000000 ............ +2408 6.224456310 127.0.0.1:57433 127.0.0.1:57415 382466709 12 16000000545c0c0000000000 ....T\...... +2410 6.224640131 127.0.0.1:57433 127.0.0.1:57415 382466721 22 1200000085c721000000000001000300000000000000 ......!............... +2412 6.225107670 127.0.0.1:57415 127.0.0.1:57433 3340084115 12 ffffffff545c0c0000000000 ....T\...... +2448 6.297493458 127.0.0.1:57415 127.0.0.1:57433 3340084127 12 22000000b09f0c0000000000 "........... +2450 6.297725201 127.0.0.1:57415 127.0.0.1:57433 3340084139 34 1e0000001c2118d0c46f33bb0100030000009759020000000000aa6b79c39d01 .....!...o3........Y.......ky..... +2452 6.297863007 127.0.0.1:57415 127.0.0.1:57433 3340084173 12 43000000b19f0c0000000000 C........... +2454 6.297959566 127.0.0.1:57415 127.0.0.1:57433 3340084185 67 3f000000980433cb0cb47c38010003000000010000000097590200000000003d ?.....3...|8............Y......=B.....&......... +2456 6.298123837 127.0.0.1:57433 127.0.0.1:57415 382466743 12 ffffffffb09f0c0000000000 ............ +2458 6.298325539 127.0.0.1:57433 127.0.0.1:57415 382466755 12 ffffffffb19f0c0000000000 ............ +2460 6.299223423 127.0.0.1:57433 127.0.0.1:57415 382466767 12 34000000555c0c0000000000 4...U\...... +2462 6.299431324 127.0.0.1:57433 127.0.0.1:57415 382466779 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........V%.. +2464 6.299831390 127.0.0.1:57415 127.0.0.1:57433 3340084252 12 ffffffff555c0c0000000000 ....U\...... +2466 6.300659657 127.0.0.1:57415 127.0.0.1:57433 3340084264 12 1e000000b29f0c0000000000 ............ +2468 6.300887585 127.0.0.1:57415 127.0.0.1:57433 3340084276 30 1a00000055ceff62b21b3a5001000300000087c721000000000000000000 ....U..b..:P........!......... +2470 6.301272154 127.0.0.1:57433 127.0.0.1:57415 382466831 12 ffffffffb29f0c0000000000 ............ +2472 6.301874161 127.0.0.1:57433 127.0.0.1:57415 382466843 12 1a000000565c0c0000000000 ....V\...... +2474 6.302049160 127.0.0.1:57433 127.0.0.1:57415 382466855 26 1600000087c72100000000000100030000000000000000000000 ......!................... +2476 6.302399874 127.0.0.1:57415 127.0.0.1:57433 3340084306 12 ffffffff565c0c0000000000 ....V\...... +2478 6.326322794 127.0.0.1:57415 127.0.0.1:57433 3340084318 12 1a000000b39f0c0000000000 ............ +2480 6.326503515 127.0.0.1:57415 127.0.0.1:57433 3340084330 26 16000000548f6340e25e314001000300000089c7210000000000 ....T.c@.^1@........!..... +2482 6.327123880 127.0.0.1:57433 127.0.0.1:57415 382466881 12 ffffffffb39f0c0000000000 ............ +2484 6.327349424 127.0.0.1:57433 127.0.0.1:57415 382466893 12 16000000575c0c0000000000 ....W\...... +2486 6.327546835 127.0.0.1:57433 127.0.0.1:57415 382466905 22 1200000089c721000000000001000300000000000000 ......!............... +2488 6.327851295 127.0.0.1:57415 127.0.0.1:57433 3340084356 12 ffffffff575c0c0000000000 ....W\...... +2490 6.429259300 127.0.0.1:57415 127.0.0.1:57433 3340084368 12 1a000000b49f0c0000000000 ............ +2492 6.429443359 127.0.0.1:57415 127.0.0.1:57433 3340084380 26 16000000548f6340e25e31400100030000008bc7210000000000 ....T.c@.^1@........!..... +2494 6.429763556 127.0.0.1:57433 127.0.0.1:57415 382466927 12 ffffffffb49f0c0000000000 ............ +2496 6.430351257 127.0.0.1:57433 127.0.0.1:57415 382466939 12 16000000585c0c0000000000 ....X\...... +2498 6.430503607 127.0.0.1:57433 127.0.0.1:57415 382466951 22 120000008bc721000000000001000300000000000000 ......!............... +2500 6.430875063 127.0.0.1:57415 127.0.0.1:57433 3340084406 12 ffffffff585c0c0000000000 ....X\...... +2502 6.532115936 127.0.0.1:57415 127.0.0.1:57433 3340084418 12 1a000000b59f0c0000000000 ............ +2504 6.532397509 127.0.0.1:57415 127.0.0.1:57433 3340084430 26 16000000548f6340e25e31400100030000008dc7210000000000 ....T.c@.^1@........!..... +2506 6.532763720 127.0.0.1:57433 127.0.0.1:57415 382466973 12 ffffffffb59f0c0000000000 ............ +2508 6.533326149 127.0.0.1:57433 127.0.0.1:57415 382466985 12 16000000595c0c0000000000 ....Y\...... +2510 6.533482552 127.0.0.1:57433 127.0.0.1:57415 382466997 22 120000008dc721000000000001000300000000000000 ......!............... +2512 6.533747673 127.0.0.1:57415 127.0.0.1:57433 3340084456 12 ffffffff595c0c0000000000 ....Y\...... +2514 6.602483988 127.0.0.1:57415 127.0.0.1:57433 3340084468 12 65000000b69f0c0000000000 e........... +2516 6.602717638 127.0.0.1:57415 127.0.0.1:57433 3340084480 101 1e0000001c2118d0c46f33bb0100030000009859020000000000da6c79c39d01 .....!...o3........Y.......ly.....?.....3...|8.. +2518 6.603131533 127.0.0.1:57433 127.0.0.1:57415 382467019 12 ffffffffb69f0c0000000000 ............ +2520 6.604123831 127.0.0.1:57433 127.0.0.1:57415 382467031 12 340000005a5c0c0000000000 4...Z\...... +2522 6.604308367 127.0.0.1:57433 127.0.0.1:57415 382467043 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +2524 6.604651928 127.0.0.1:57415 127.0.0.1:57433 3340084581 12 ffffffff5a5c0c0000000000 ....Z\...... +2526 6.605436087 127.0.0.1:57415 127.0.0.1:57433 3340084593 12 1e000000b79f0c0000000000 ............ +2528 6.605615854 127.0.0.1:57415 127.0.0.1:57433 3340084605 30 1a00000055ceff62b21b3a500100030000008fc721000000000000000000 ....U..b..:P........!......... +2530 6.605962992 127.0.0.1:57433 127.0.0.1:57415 382467095 12 ffffffffb79f0c0000000000 ............ +2532 6.606394291 127.0.0.1:57433 127.0.0.1:57415 382467107 12 1a0000005b5c0c0000000000 ....[\...... +2534 6.606556892 127.0.0.1:57433 127.0.0.1:57415 382467119 26 160000008fc72100000000000100030000000000000000000000 ......!................... +2536 6.606874466 127.0.0.1:57415 127.0.0.1:57433 3340084635 12 ffffffff5b5c0c0000000000 ....[\...... +2547 6.636812210 127.0.0.1:57415 127.0.0.1:57433 3340084647 12 1a000000b89f0c0000000000 ............ +2549 6.636991978 127.0.0.1:57415 127.0.0.1:57433 3340084659 26 16000000548f6340e25e314001000300000091c7210000000000 ....T.c@.^1@........!..... +2551 6.637351274 127.0.0.1:57433 127.0.0.1:57415 382467145 12 ffffffffb89f0c0000000000 ............ +2553 6.637866497 127.0.0.1:57433 127.0.0.1:57415 382467157 12 160000005c5c0c0000000000 ....\\...... +2555 6.638045788 127.0.0.1:57433 127.0.0.1:57415 382467169 22 1200000091c721000000000001000300000000000000 ......!............... +2557 6.638495922 127.0.0.1:57415 127.0.0.1:57433 3340084685 12 ffffffff5c5c0c0000000000 ....\\...... +2563 6.672646284 127.0.0.1:57415 127.0.0.1:57433 3340084697 12 feffffffda6e0100c06e0100 .....n...n.. +2590 6.715578318 127.0.0.1:57433 127.0.0.1:57415 382467191 12 feffffffc16e0100da6e0100 .....n...n.. +2606 6.739763498 127.0.0.1:57415 127.0.0.1:57433 3340084709 12 1a000000b99f0c0000000000 ............ +2608 6.739928961 127.0.0.1:57415 127.0.0.1:57433 3340084721 26 16000000548f6340e25e314001000300000093c7210000000000 ....T.c@.^1@........!..... +2610 6.740228891 127.0.0.1:57433 127.0.0.1:57415 382467203 12 ffffffffb99f0c0000000000 ............ +2612 6.740653515 127.0.0.1:57433 127.0.0.1:57415 382467215 12 160000005d5c0c0000000000 ....]\...... +2614 6.740786791 127.0.0.1:57433 127.0.0.1:57415 382467227 22 1200000093c721000000000001000300000000000000 ......!............... +2616 6.741058588 127.0.0.1:57415 127.0.0.1:57433 3340084747 12 ffffffff5d5c0c0000000000 ....]\...... +2620 6.842318058 127.0.0.1:57415 127.0.0.1:57433 3340084759 12 1a000000ba9f0c0000000000 ............ +2622 6.842586517 127.0.0.1:57415 127.0.0.1:57433 3340084771 26 16000000548f6340e25e314001000300000095c7210000000000 ....T.c@.^1@........!..... +2624 6.842947245 127.0.0.1:57433 127.0.0.1:57415 382467249 12 ffffffffba9f0c0000000000 ............ +2626 6.843382120 127.0.0.1:57433 127.0.0.1:57415 382467261 12 160000005e5c0c0000000000 ....^\...... +2628 6.843537569 127.0.0.1:57433 127.0.0.1:57415 382467273 22 1200000095c721000000000001000300000000000000 ......!............... +2630 6.843801498 127.0.0.1:57415 127.0.0.1:57433 3340084797 12 ffffffff5e5c0c0000000000 ....^\...... +2643 6.908476591 127.0.0.1:57415 127.0.0.1:57433 3340084809 12 65000000bb9f0c0000000000 e........... +2645 6.908655882 127.0.0.1:57415 127.0.0.1:57433 3340084821 101 1e0000001c2118d0c46f33bb01000300000099590200000000000c6e79c39d01 .....!...o3........Y.......ny.....?.....3...|8.. +2647 6.908934116 127.0.0.1:57433 127.0.0.1:57415 382467295 12 ffffffffbb9f0c0000000000 ............ +2649 6.910342693 127.0.0.1:57433 127.0.0.1:57415 382467307 12 340000005f5c0c0000000000 4..._\...... +2651 6.910481930 127.0.0.1:57433 127.0.0.1:57415 382467319 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........\.. +2653 6.910675049 127.0.0.1:57415 127.0.0.1:57433 3340084922 12 ffffffff5f5c0c0000000000 ...._\...... +2655 6.911772490 127.0.0.1:57415 127.0.0.1:57433 3340084934 12 1e000000bc9f0c0000000000 ............ +2657 6.911957502 127.0.0.1:57415 127.0.0.1:57433 3340084946 30 1a00000055ceff62b21b3a5001000300000097c721000000000000000000 ....U..b..:P........!......... +2659 6.912506104 127.0.0.1:57433 127.0.0.1:57415 382467371 12 ffffffffbc9f0c0000000000 ............ +2661 6.912962914 127.0.0.1:57433 127.0.0.1:57415 382467383 12 1a000000605c0c0000000000 ....`\...... +2663 6.913112879 127.0.0.1:57433 127.0.0.1:57415 382467395 26 1600000097c72100000000000100030000000000000000000000 ......!................... +2665 6.913426638 127.0.0.1:57415 127.0.0.1:57433 3340084976 12 ffffffff605c0c0000000000 ....`\...... +2667 6.945885658 127.0.0.1:57415 127.0.0.1:57433 3340084988 12 1a000000bd9f0c0000000000 ............ +2669 6.946067333 127.0.0.1:57415 127.0.0.1:57433 3340085000 26 16000000548f6340e25e314001000300000099c7210000000000 ....T.c@.^1@........!..... +2671 6.946477175 127.0.0.1:57433 127.0.0.1:57415 382467421 12 ffffffffbd9f0c0000000000 ............ +2673 6.946967363 127.0.0.1:57433 127.0.0.1:57415 382467433 12 16000000615c0c0000000000 ....a\...... +2675 6.947177172 127.0.0.1:57433 127.0.0.1:57415 382467445 22 1200000099c721000000000001000300000000000000 ......!............... +2677 6.947551012 127.0.0.1:57415 127.0.0.1:57433 3340085026 12 ffffffff615c0c0000000000 ....a\...... +2679 7.049075365 127.0.0.1:57415 127.0.0.1:57433 3340085038 12 1a000000be9f0c0000000000 ............ +2681 7.049282312 127.0.0.1:57415 127.0.0.1:57433 3340085050 26 16000000548f6340e25e31400100030000009bc7210000000000 ....T.c@.^1@........!..... +2683 7.049565554 127.0.0.1:57433 127.0.0.1:57415 382467467 12 ffffffffbe9f0c0000000000 ............ +2685 7.050002575 127.0.0.1:57433 127.0.0.1:57415 382467479 12 16000000625c0c0000000000 ....b\...... +2687 7.050157070 127.0.0.1:57433 127.0.0.1:57415 382467491 22 120000009bc721000000000001000300000000000000 ......!............... +2689 7.050403357 127.0.0.1:57415 127.0.0.1:57433 3340085076 12 ffffffff625c0c0000000000 ....b\...... +2691 7.151984930 127.0.0.1:57415 127.0.0.1:57433 3340085088 12 1a000000bf9f0c0000000000 ............ +2693 7.152270555 127.0.0.1:57415 127.0.0.1:57433 3340085100 26 16000000548f6340e25e31400100030000009dc7210000000000 ....T.c@.^1@........!..... +2695 7.152655363 127.0.0.1:57433 127.0.0.1:57415 382467513 12 ffffffffbf9f0c0000000000 ............ +2697 7.153234005 127.0.0.1:57433 127.0.0.1:57415 382467525 12 16000000635c0c0000000000 ....c\...... +2699 7.153396845 127.0.0.1:57433 127.0.0.1:57415 382467537 22 120000009dc721000000000001000300000000000000 ......!............... +2701 7.153626442 127.0.0.1:57415 127.0.0.1:57433 3340085126 12 ffffffff635c0c0000000000 ....c\...... +2707 7.173691511 127.0.0.1:57415 127.0.0.1:57433 3340085138 12 feffffffdb6e0100c16e0100 .....n...n.. +2715 7.213584900 127.0.0.1:57415 127.0.0.1:57433 3340085150 12 65000000c09f0c0000000000 e........... +2717 7.213862419 127.0.0.1:57415 127.0.0.1:57433 3340085162 101 1e0000001c2118d0c46f33bb0100030000009a590200000000003d6f79c39d01 .....!...o3........Y......=oy.....?.....3...|8.. +2719 7.214466333 127.0.0.1:57433 127.0.0.1:57415 382467559 12 ffffffffc09f0c0000000000 ............ +2721 7.215602398 127.0.0.1:57433 127.0.0.1:57415 382467571 12 34000000645c0c0000000000 4...d\...... +2723 7.215797663 127.0.0.1:57433 127.0.0.1:57415 382467583 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +2725 7.216108561 127.0.0.1:57415 127.0.0.1:57433 3340085263 12 ffffffff645c0c0000000000 ....d\...... +2730 7.217054605 127.0.0.1:57433 127.0.0.1:57415 382467635 12 feffffffc26e0100db6e0100 .....n...n.. +2735 7.217554331 127.0.0.1:57415 127.0.0.1:57433 3340085275 12 1e000000c19f0c0000000000 ............ +2737 7.217745304 127.0.0.1:57415 127.0.0.1:57433 3340085287 30 1a00000055ceff62b21b3a500100030000009fc721000000000000000000 ....U..b..:P........!......... +2739 7.218111277 127.0.0.1:57433 127.0.0.1:57415 382467647 12 ffffffffc19f0c0000000000 ............ +2741 7.218694687 127.0.0.1:57433 127.0.0.1:57415 382467659 12 1a000000655c0c0000000000 ....e\...... +2743 7.218844652 127.0.0.1:57433 127.0.0.1:57415 382467671 26 160000009fc72100000000000100030000000000000000000000 ......!................... +2745 7.219129324 127.0.0.1:57415 127.0.0.1:57433 3340085317 12 ffffffff655c0c0000000000 ....e\...... +2749 7.255319357 127.0.0.1:57415 127.0.0.1:57433 3340085329 12 1a000000c29f0c0000000000 ............ +2753 7.255506277 127.0.0.1:57415 127.0.0.1:57433 3340085341 26 16000000548f6340e25e3140010003000000a1c7210000000000 ....T.c@.^1@........!..... +2755 7.255807400 127.0.0.1:57433 127.0.0.1:57415 382467697 12 ffffffffc29f0c0000000000 ............ +2757 7.256585598 127.0.0.1:57433 127.0.0.1:57415 382467709 12 16000000665c0c0000000000 ....f\...... +2759 7.256862879 127.0.0.1:57433 127.0.0.1:57415 382467721 22 12000000a1c721000000000001000300000000000000 ......!............... +2761 7.257202387 127.0.0.1:57415 127.0.0.1:57433 3340085367 12 ffffffff665c0c0000000000 ....f\...... +2765 7.358967066 127.0.0.1:57415 127.0.0.1:57433 3340085379 12 1a000000c39f0c0000000000 ............ +2767 7.359174728 127.0.0.1:57415 127.0.0.1:57433 3340085391 26 16000000548f6340e25e3140010003000000a3c7210000000000 ....T.c@.^1@........!..... +2769 7.359646082 127.0.0.1:57433 127.0.0.1:57415 382467743 12 ffffffffc39f0c0000000000 ............ +2771 7.360296965 127.0.0.1:57433 127.0.0.1:57415 382467755 12 16000000675c0c0000000000 ....g\...... +2773 7.360502481 127.0.0.1:57433 127.0.0.1:57415 382467767 22 12000000a3c721000000000001000300000000000000 ......!............... +2775 7.360804796 127.0.0.1:57415 127.0.0.1:57433 3340085417 12 ffffffff675c0c0000000000 ....g\...... +2777 7.462742090 127.0.0.1:57415 127.0.0.1:57433 3340085429 12 1a000000c49f0c0000000000 ............ +2779 7.462924004 127.0.0.1:57415 127.0.0.1:57433 3340085441 26 16000000548f6340e25e3140010003000000a5c7210000000000 ....T.c@.^1@........!..... +2781 7.463253021 127.0.0.1:57433 127.0.0.1:57415 382467789 12 ffffffffc49f0c0000000000 ............ +2783 7.463870525 127.0.0.1:57433 127.0.0.1:57415 382467801 12 16000000685c0c0000000000 ....h\...... +2785 7.464028597 127.0.0.1:57433 127.0.0.1:57415 382467813 22 12000000a5c721000000000001000300000000000000 ......!............... +2787 7.464268684 127.0.0.1:57415 127.0.0.1:57433 3340085467 12 ffffffff685c0c0000000000 ....h\...... +2789 7.520316601 127.0.0.1:57415 127.0.0.1:57433 3340085479 12 65000000c59f0c0000000000 e........... +2791 7.520562649 127.0.0.1:57415 127.0.0.1:57433 3340085491 101 1e0000001c2118d0c46f33bb0100030000009b59020000000000707079c39d01 .....!...o3........Y......ppy.....?.....3...|8.. +2793 7.520994902 127.0.0.1:57433 127.0.0.1:57415 382467835 12 ffffffffc59f0c0000000000 ............ +2795 7.522206306 127.0.0.1:57433 127.0.0.1:57415 382467847 12 34000000695c0c0000000000 4...i\...... +2797 7.522402525 127.0.0.1:57433 127.0.0.1:57415 382467859 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........K. +2799 7.523462534 127.0.0.1:57415 127.0.0.1:57433 3340085592 12 ffffffff695c0c0000000000 ....i\...... +2801 7.524343014 127.0.0.1:57415 127.0.0.1:57433 3340085604 12 1e000000c69f0c0000000000 ............ +2803 7.524563551 127.0.0.1:57415 127.0.0.1:57433 3340085616 30 1a00000055ceff62b21b3a50010003000000a7c721000000000000000000 ....U..b..:P........!......... +2805 7.524973392 127.0.0.1:57433 127.0.0.1:57415 382467911 12 ffffffffc69f0c0000000000 ............ +2807 7.525473595 127.0.0.1:57433 127.0.0.1:57415 382467923 12 1a0000006a5c0c0000000000 ....j\...... +2809 7.525650978 127.0.0.1:57433 127.0.0.1:57415 382467935 26 16000000a7c72100000000000100030000000000000000000000 ......!................... +2811 7.525910378 127.0.0.1:57415 127.0.0.1:57433 3340085646 12 ffffffff6a5c0c0000000000 ....j\...... +2813 7.566102505 127.0.0.1:57415 127.0.0.1:57433 3340085658 12 1a000000c79f0c0000000000 ............ +2815 7.566370964 127.0.0.1:57415 127.0.0.1:57433 3340085670 26 16000000548f6340e25e3140010003000000a9c7210000000000 ....T.c@.^1@........!..... +2817 7.566674948 127.0.0.1:57433 127.0.0.1:57415 382467961 12 ffffffffc79f0c0000000000 ............ +2819 7.567171335 127.0.0.1:57433 127.0.0.1:57415 382467973 12 160000006b5c0c0000000000 ....k\...... +2821 7.567404747 127.0.0.1:57433 127.0.0.1:57415 382467985 22 12000000a9c721000000000001000300000000000000 ......!............... +2823 7.567657948 127.0.0.1:57415 127.0.0.1:57433 3340085696 12 ffffffff6b5c0c0000000000 ....k\...... +2829 7.669126511 127.0.0.1:57415 127.0.0.1:57433 3340085708 12 1a000000c89f0c0000000000 ............ +2831 7.669497013 127.0.0.1:57415 127.0.0.1:57433 3340085720 26 16000000548f6340e25e3140010003000000abc7210000000000 ....T.c@.^1@........!..... +2833 7.670011282 127.0.0.1:57433 127.0.0.1:57415 382468007 12 ffffffffc89f0c0000000000 ............ +2835 7.670444965 127.0.0.1:57433 127.0.0.1:57415 382468019 12 160000006c5c0c0000000000 ....l\...... +2837 7.670591831 127.0.0.1:57433 127.0.0.1:57415 382468031 22 12000000abc721000000000001000300000000000000 ......!............... +2839 7.670814514 127.0.0.1:57415 127.0.0.1:57433 3340085746 12 ffffffff6c5c0c0000000000 ....l\...... +2841 7.674835205 127.0.0.1:57415 127.0.0.1:57433 3340085758 12 feffffffdc6e0100c26e0100 .....n...n.. +2855 7.719232798 127.0.0.1:57433 127.0.0.1:57415 382468053 12 feffffffc36e0100dc6e0100 .....n...n.. +2861 7.773909092 127.0.0.1:57415 127.0.0.1:57433 3340085770 12 1a000000c99f0c0000000000 ............ +2863 7.774191856 127.0.0.1:57415 127.0.0.1:57433 3340085782 26 16000000548f6340e25e3140010003000000adc7210000000000 ....T.c@.^1@........!..... +2865 7.774579525 127.0.0.1:57433 127.0.0.1:57415 382468065 12 ffffffffc99f0c0000000000 ............ +2867 7.775450706 127.0.0.1:57433 127.0.0.1:57415 382468077 12 160000006d5c0c0000000000 ....m\...... +2869 7.775604725 127.0.0.1:57433 127.0.0.1:57415 382468089 22 12000000adc721000000000001000300000000000000 ......!............... +2871 7.775878906 127.0.0.1:57415 127.0.0.1:57433 3340085808 12 ffffffff6d5c0c0000000000 ....m\...... +2875 7.827029705 127.0.0.1:57415 127.0.0.1:57433 3340085820 12 65000000ca9f0c0000000000 e........... +2877 7.827278137 127.0.0.1:57415 127.0.0.1:57433 3340085832 101 1e0000001c2118d0c46f33bb0100030000009c59020000000000a37179c39d01 .....!...o3........Y.......qy.....?.....3...|8.. +2879 7.827531576 127.0.0.1:57433 127.0.0.1:57415 382468111 12 ffffffffca9f0c0000000000 ............ +2881 7.828912497 127.0.0.1:57433 127.0.0.1:57415 382468123 12 340000006e5c0c0000000000 4...n\...... +2883 7.829134703 127.0.0.1:57433 127.0.0.1:57415 382468135 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........M.z. +2885 7.829365730 127.0.0.1:57415 127.0.0.1:57433 3340085933 12 ffffffff6e5c0c0000000000 ....n\...... +2887 7.830175400 127.0.0.1:57415 127.0.0.1:57433 3340085945 12 1e000000cb9f0c0000000000 ............ +2889 7.830450535 127.0.0.1:57415 127.0.0.1:57433 3340085957 30 1a00000055ceff62b21b3a50010003000000afc721000000000000000000 ....U..b..:P........!......... +2891 7.830775023 127.0.0.1:57433 127.0.0.1:57415 382468187 12 ffffffffcb9f0c0000000000 ............ +2893 7.831178665 127.0.0.1:57433 127.0.0.1:57415 382468199 12 1a0000006f5c0c0000000000 ....o\...... +2895 7.831312895 127.0.0.1:57433 127.0.0.1:57415 382468211 26 16000000afc72100000000000100030000000000000000000000 ......!................... +2897 7.831585169 127.0.0.1:57415 127.0.0.1:57433 3340085987 12 ffffffff6f5c0c0000000000 ....o\...... +2905 7.877872229 127.0.0.1:57415 127.0.0.1:57433 3340085999 12 1a000000cc9f0c0000000000 ............ +2907 7.878097057 127.0.0.1:57415 127.0.0.1:57433 3340086011 26 16000000548f6340e25e3140010003000000b1c7210000000000 ....T.c@.^1@........!..... +2909 7.878412724 127.0.0.1:57433 127.0.0.1:57415 382468237 12 ffffffffcc9f0c0000000000 ............ +2911 7.879216194 127.0.0.1:57433 127.0.0.1:57415 382468249 12 16000000705c0c0000000000 ....p\...... +2913 7.879371643 127.0.0.1:57433 127.0.0.1:57415 382468261 22 12000000b1c721000000000001000300000000000000 ......!............... +2915 7.879628897 127.0.0.1:57415 127.0.0.1:57433 3340086037 12 ffffffff705c0c0000000000 ....p\...... +2923 7.981199503 127.0.0.1:57415 127.0.0.1:57433 3340086049 12 1a000000cd9f0c0000000000 ............ +2925 7.981513262 127.0.0.1:57415 127.0.0.1:57433 3340086061 26 16000000548f6340e25e3140010003000000b3c7210000000000 ....T.c@.^1@........!..... +2927 7.981990576 127.0.0.1:57433 127.0.0.1:57415 382468283 12 ffffffffcd9f0c0000000000 ............ +2929 7.982720375 127.0.0.1:57433 127.0.0.1:57415 382468295 12 16000000715c0c0000000000 ....q\...... +2931 7.983062506 127.0.0.1:57433 127.0.0.1:57415 382468307 22 12000000b3c721000000000001000300000000000000 ......!............... +2933 7.983358383 127.0.0.1:57415 127.0.0.1:57433 3340086087 12 ffffffff715c0c0000000000 ....q\...... +2978 8.085527420 127.0.0.1:57415 127.0.0.1:57433 3340086099 12 1a000000ce9f0c0000000000 ............ +2980 8.085814953 127.0.0.1:57415 127.0.0.1:57433 3340086111 26 16000000548f6340e25e3140010003000000b5c7210000000000 ....T.c@.^1@........!..... +2982 8.086106539 127.0.0.1:57433 127.0.0.1:57415 382468329 12 ffffffffce9f0c0000000000 ............ +2984 8.086579800 127.0.0.1:57433 127.0.0.1:57415 382468341 12 16000000725c0c0000000000 ....r\...... +2986 8.086731672 127.0.0.1:57433 127.0.0.1:57415 382468353 22 12000000b5c721000000000001000300000000000000 ......!............... +2988 8.087151051 127.0.0.1:57415 127.0.0.1:57433 3340086137 12 ffffffff725c0c0000000000 ....r\...... +2990 8.132403374 127.0.0.1:57415 127.0.0.1:57433 3340086149 12 65000000cf9f0c0000000000 e........... +2992 8.132664680 127.0.0.1:57415 127.0.0.1:57433 3340086161 101 1e0000001c2118d0c46f33bb0100030000009d59020000000000d47279c39d01 .....!...o3........Y.......ry.....?.....3...|8.. +2994 8.133007050 127.0.0.1:57433 127.0.0.1:57415 382468375 12 ffffffffcf9f0c0000000000 ............ +2996 8.134149313 127.0.0.1:57433 127.0.0.1:57415 382468387 12 34000000735c0c0000000000 4...s\...... +2998 8.134362221 127.0.0.1:57433 127.0.0.1:57415 382468399 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........$.. +3000 8.134557009 127.0.0.1:57415 127.0.0.1:57433 3340086262 12 ffffffff735c0c0000000000 ....s\...... +3002 8.135515451 127.0.0.1:57415 127.0.0.1:57433 3340086274 12 1e000000d09f0c0000000000 ............ +3004 8.135756969 127.0.0.1:57415 127.0.0.1:57433 3340086286 30 1a00000055ceff62b21b3a50010003000000b7c721000000000000000000 ....U..b..:P........!......... +3006 8.136066198 127.0.0.1:57433 127.0.0.1:57415 382468451 12 ffffffffd09f0c0000000000 ............ +3008 8.136539221 127.0.0.1:57433 127.0.0.1:57415 382468463 12 1a000000745c0c0000000000 ....t\...... +3010 8.136680841 127.0.0.1:57433 127.0.0.1:57415 382468475 26 16000000b7c72100000000000100030000000000000000000000 ......!................... +3012 8.137006044 127.0.0.1:57415 127.0.0.1:57433 3340086316 12 ffffffff745c0c0000000000 ....t\...... +3018 8.175666571 127.0.0.1:57415 127.0.0.1:57433 3340086328 12 feffffffdd6e0100c36e0100 .....n...n.. +3020 8.188896179 127.0.0.1:57415 127.0.0.1:57433 3340086340 12 1a000000d19f0c0000000000 ............ +3022 8.189114094 127.0.0.1:57415 127.0.0.1:57433 3340086352 26 16000000548f6340e25e3140010003000000b9c7210000000000 ....T.c@.^1@........!..... +3024 8.189760447 127.0.0.1:57433 127.0.0.1:57415 382468501 12 ffffffffd19f0c0000000000 ............ +3026 8.190158606 127.0.0.1:57433 127.0.0.1:57415 382468513 12 16000000755c0c0000000000 ....u\...... +3028 8.190404415 127.0.0.1:57433 127.0.0.1:57415 382468525 22 12000000b9c721000000000001000300000000000000 ......!............... +3030 8.190706253 127.0.0.1:57415 127.0.0.1:57433 3340086378 12 ffffffff755c0c0000000000 ....u\...... +3044 8.220679045 127.0.0.1:57433 127.0.0.1:57415 382468547 12 feffffffc46e0100dd6e0100 .....n...n.. +3050 8.293426275 127.0.0.1:57415 127.0.0.1:57433 3340086390 12 1a000000d29f0c0000000000 ............ +3052 8.293631315 127.0.0.1:57415 127.0.0.1:57433 3340086402 26 16000000548f6340e25e3140010003000000bbc7210000000000 ....T.c@.^1@........!..... +3054 8.294046640 127.0.0.1:57433 127.0.0.1:57415 382468559 12 ffffffffd29f0c0000000000 ............ +3056 8.294496059 127.0.0.1:57433 127.0.0.1:57415 382468571 12 16000000765c0c0000000000 ....v\...... +3058 8.294687986 127.0.0.1:57433 127.0.0.1:57415 382468583 22 12000000bbc721000000000001000300000000000000 ......!............... +3060 8.295024157 127.0.0.1:57415 127.0.0.1:57433 3340086428 12 ffffffff765c0c0000000000 ....v\...... +3087 8.396649599 127.0.0.1:57415 127.0.0.1:57433 3340086440 12 1a000000d39f0c0000000000 ............ +3089 8.396894693 127.0.0.1:57415 127.0.0.1:57433 3340086452 26 16000000548f6340e25e3140010003000000bdc7210000000000 ....T.c@.^1@........!..... +3091 8.397203445 127.0.0.1:57433 127.0.0.1:57415 382468605 12 ffffffffd39f0c0000000000 ............ +3093 8.397732973 127.0.0.1:57433 127.0.0.1:57415 382468617 12 16000000775c0c0000000000 ....w\...... +3095 8.397925138 127.0.0.1:57433 127.0.0.1:57415 382468629 22 12000000bdc721000000000001000300000000000000 ......!............... +3097 8.398216963 127.0.0.1:57415 127.0.0.1:57433 3340086478 12 ffffffff775c0c0000000000 ....w\...... +3099 8.436968803 127.0.0.1:57415 127.0.0.1:57433 3340086490 12 65000000d49f0c0000000000 e........... +3101 8.437199593 127.0.0.1:57415 127.0.0.1:57433 3340086502 101 1e0000001c2118d0c46f33bb0100030000009e59020000000000047479c39d01 .....!...o3........Y.......ty.....?.....3...|8.. +3103 8.437601328 127.0.0.1:57433 127.0.0.1:57415 382468651 12 ffffffffd49f0c0000000000 ............ +3105 8.438352823 127.0.0.1:57433 127.0.0.1:57415 382468663 12 34000000785c0c0000000000 4...x\...... +3107 8.438503981 127.0.0.1:57433 127.0.0.1:57415 382468675 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +3109 8.438762665 127.0.0.1:57415 127.0.0.1:57433 3340086603 12 ffffffff785c0c0000000000 ....x\...... +3111 8.439625740 127.0.0.1:57415 127.0.0.1:57433 3340086615 12 1e000000d59f0c0000000000 ............ +3113 8.439805984 127.0.0.1:57415 127.0.0.1:57433 3340086627 30 1a00000055ceff62b21b3a50010003000000bfc721000000000000000000 ....U..b..:P........!......... +3115 8.440166235 127.0.0.1:57433 127.0.0.1:57415 382468727 12 ffffffffd59f0c0000000000 ............ +3117 8.440521955 127.0.0.1:57433 127.0.0.1:57415 382468739 12 1a000000795c0c0000000000 ....y\...... +3119 8.440804720 127.0.0.1:57433 127.0.0.1:57415 382468751 26 16000000bfc72100000000000100030000000000000000000000 ......!................... +3121 8.441059113 127.0.0.1:57415 127.0.0.1:57433 3340086657 12 ffffffff795c0c0000000000 ....y\...... +3123 8.500627041 127.0.0.1:57415 127.0.0.1:57433 3340086669 12 1a000000d69f0c0000000000 ............ +3125 8.500812769 127.0.0.1:57415 127.0.0.1:57433 3340086681 26 16000000548f6340e25e3140010003000000c1c7210000000000 ....T.c@.^1@........!..... +3127 8.501125336 127.0.0.1:57433 127.0.0.1:57415 382468777 12 ffffffffd69f0c0000000000 ............ +3129 8.501829624 127.0.0.1:57433 127.0.0.1:57415 382468789 12 160000007a5c0c0000000000 ....z\...... +3131 8.501985312 127.0.0.1:57433 127.0.0.1:57415 382468801 22 12000000c1c721000000000001000300000000000000 ......!............... +3133 8.502204895 127.0.0.1:57415 127.0.0.1:57433 3340086707 12 ffffffff7a5c0c0000000000 ....z\...... +3137 8.605666399 127.0.0.1:57415 127.0.0.1:57433 3340086719 12 1a000000d79f0c0000000000 ............ +3139 8.605887175 127.0.0.1:57415 127.0.0.1:57433 3340086731 26 16000000548f6340e25e3140010003000000c3c7210000000000 ....T.c@.^1@........!..... +3141 8.606259346 127.0.0.1:57433 127.0.0.1:57415 382468823 12 ffffffffd79f0c0000000000 ............ +3143 8.606950045 127.0.0.1:57433 127.0.0.1:57415 382468835 12 160000007b5c0c0000000000 ....{\...... +3145 8.607164145 127.0.0.1:57433 127.0.0.1:57415 382468847 22 12000000c3c721000000000001000300000000000000 ......!............... +3147 8.607537508 127.0.0.1:57415 127.0.0.1:57433 3340086757 12 ffffffff7b5c0c0000000000 ....{\...... +3153 8.677204132 127.0.0.1:57415 127.0.0.1:57433 3340086769 12 feffffffde6e0100c46e0100 .....n...n.. +3159 8.709465027 127.0.0.1:57415 127.0.0.1:57433 3340086781 12 1a000000d89f0c0000000000 ............ +3161 8.709665298 127.0.0.1:57415 127.0.0.1:57433 3340086793 26 16000000548f6340e25e3140010003000000c5c7210000000000 ....T.c@.^1@........!..... +3163 8.710096121 127.0.0.1:57433 127.0.0.1:57415 382468869 12 ffffffffd89f0c0000000000 ............ +3165 8.710577250 127.0.0.1:57433 127.0.0.1:57415 382468881 12 160000007c5c0c0000000000 ....|\...... +3167 8.710799932 127.0.0.1:57433 127.0.0.1:57415 382468893 22 12000000c5c721000000000001000300000000000000 ......!............... +3169 8.711085320 127.0.0.1:57415 127.0.0.1:57433 3340086819 12 ffffffff7c5c0c0000000000 ....|\...... +3183 8.721009254 127.0.0.1:57433 127.0.0.1:57415 382468915 12 feffffffc56e0100de6e0100 .....n...n.. +3187 8.741679668 127.0.0.1:57415 127.0.0.1:57433 3340086831 12 65000000d99f0c0000000000 e........... +3189 8.741854668 127.0.0.1:57415 127.0.0.1:57433 3340086843 101 1e0000001c2118d0c46f33bb0100030000009f59020000000000357579c39d01 .....!...o3........Y......5uy.....?.....3...|8.. +3191 8.742169142 127.0.0.1:57433 127.0.0.1:57415 382468927 12 ffffffffd99f0c0000000000 ............ +3193 8.743275881 127.0.0.1:57433 127.0.0.1:57415 382468939 12 340000007d5c0c0000000000 4...}\...... +3195 8.743432283 127.0.0.1:57433 127.0.0.1:57415 382468951 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +3197 8.743795633 127.0.0.1:57415 127.0.0.1:57433 3340086944 12 ffffffff7d5c0c0000000000 ....}\...... +3199 8.744621992 127.0.0.1:57415 127.0.0.1:57433 3340086956 12 1e000000da9f0c0000000000 ............ +3201 8.744830132 127.0.0.1:57415 127.0.0.1:57433 3340086968 30 1a00000055ceff62b21b3a50010003000000c7c721000000000000000000 ....U..b..:P........!......... +3203 8.745082378 127.0.0.1:57433 127.0.0.1:57415 382469003 12 ffffffffda9f0c0000000000 ............ +3205 8.745470524 127.0.0.1:57433 127.0.0.1:57415 382469015 12 1a0000007e5c0c0000000000 ....~\...... +3207 8.745639801 127.0.0.1:57433 127.0.0.1:57415 382469027 26 16000000c7c72100000000000100030000000000000000000000 ......!................... +3209 8.745926142 127.0.0.1:57415 127.0.0.1:57433 3340086998 12 ffffffff7e5c0c0000000000 ....~\...... +3215 8.813078403 127.0.0.1:57415 127.0.0.1:57433 3340087010 12 1a000000db9f0c0000000000 ............ +3217 8.813249826 127.0.0.1:57415 127.0.0.1:57433 3340087022 26 16000000548f6340e25e3140010003000000c9c7210000000000 ....T.c@.^1@........!..... +3219 8.813537836 127.0.0.1:57433 127.0.0.1:57415 382469053 12 ffffffffdb9f0c0000000000 ............ +3221 8.813959360 127.0.0.1:57433 127.0.0.1:57415 382469065 12 160000007f5c0c0000000000 .....\...... +3223 8.814109087 127.0.0.1:57433 127.0.0.1:57415 382469077 22 12000000c9c721000000000001000300000000000000 ......!............... +3225 8.814349651 127.0.0.1:57415 127.0.0.1:57433 3340087048 12 ffffffff7f5c0c0000000000 .....\...... +3227 8.917743921 127.0.0.1:57415 127.0.0.1:57433 3340087060 12 1a000000dc9f0c0000000000 ............ +3229 8.917928696 127.0.0.1:57415 127.0.0.1:57433 3340087072 26 16000000548f6340e25e3140010003000000cbc7210000000000 ....T.c@.^1@........!..... +3231 8.918390989 127.0.0.1:57433 127.0.0.1:57415 382469099 12 ffffffffdc9f0c0000000000 ............ +3233 8.918732882 127.0.0.1:57433 127.0.0.1:57415 382469111 12 16000000805c0c0000000000 .....\...... +3235 8.918881893 127.0.0.1:57433 127.0.0.1:57415 382469123 22 12000000cbc721000000000001000300000000000000 ......!............... +3237 8.919185400 127.0.0.1:57415 127.0.0.1:57433 3340087098 12 ffffffff805c0c0000000000 .....\...... +3239 9.022581100 127.0.0.1:57415 127.0.0.1:57433 3340087110 12 1a000000dd9f0c0000000000 ............ +3241 9.022760868 127.0.0.1:57415 127.0.0.1:57433 3340087122 26 16000000548f6340e25e3140010003000000cdc7210000000000 ....T.c@.^1@........!..... +3243 9.023119688 127.0.0.1:57433 127.0.0.1:57415 382469145 12 ffffffffdd9f0c0000000000 ............ +3245 9.023559809 127.0.0.1:57433 127.0.0.1:57415 382469157 12 16000000815c0c0000000000 .....\...... +3247 9.023682594 127.0.0.1:57433 127.0.0.1:57415 382469169 22 12000000cdc721000000000001000300000000000000 ......!............... +3249 9.024038315 127.0.0.1:57415 127.0.0.1:57433 3340087148 12 ffffffff815c0c0000000000 .....\...... +3251 9.045743227 127.0.0.1:57415 127.0.0.1:57433 3340087160 12 22000000de9f0c0000000000 "........... +3253 9.046098948 127.0.0.1:57415 127.0.0.1:57433 3340087172 34 1e0000001c2118d0c46f33bb010003000000a059020000000000667679c39d01 .....!...o3........Y......fvy..... +3255 9.046290398 127.0.0.1:57415 127.0.0.1:57433 3340087206 12 43000000df9f0c0000000000 C........... +3257 9.046437025 127.0.0.1:57415 127.0.0.1:57433 3340087218 67 3f000000980433cb0cb47c380100030000000100000000a0590200000000003d ?.....3...|8............Y......=B.....&......... +3259 9.046651125 127.0.0.1:57433 127.0.0.1:57415 382469191 12 ffffffffde9f0c0000000000 ............ +3261 9.046822786 127.0.0.1:57433 127.0.0.1:57415 382469203 12 ffffffffdf9f0c0000000000 ............ +3263 9.047422409 127.0.0.1:57433 127.0.0.1:57415 382469215 12 34000000825c0c0000000000 4....\...... +3265 9.047564268 127.0.0.1:57433 127.0.0.1:57415 382469227 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........~4. +3267 9.047958851 127.0.0.1:57415 127.0.0.1:57433 3340087285 12 ffffffff825c0c0000000000 .....\...... +3269 9.049185514 127.0.0.1:57415 127.0.0.1:57433 3340087297 12 1e000000e09f0c0000000000 ............ +3271 9.049357414 127.0.0.1:57415 127.0.0.1:57433 3340087309 30 1a00000055ceff62b21b3a50010003000000cfc721000000000000000000 ....U..b..:P........!......... +3273 9.049850464 127.0.0.1:57433 127.0.0.1:57415 382469279 12 ffffffffe09f0c0000000000 ............ +3275 9.050232410 127.0.0.1:57433 127.0.0.1:57415 382469291 12 1a000000835c0c0000000000 .....\...... +3277 9.050379038 127.0.0.1:57433 127.0.0.1:57415 382469303 26 16000000cfc72100000000000100030000000000000000000000 ......!................... +3279 9.050758123 127.0.0.1:57415 127.0.0.1:57433 3340087339 12 ffffffff835c0c0000000000 .....\...... +3281 9.125336885 127.0.0.1:57415 127.0.0.1:57433 3340087351 12 1a000000e19f0c0000000000 ............ +3283 9.125569105 127.0.0.1:57415 127.0.0.1:57433 3340087363 26 16000000548f6340e25e3140010003000000d1c7210000000000 ....T.c@.^1@........!..... +3285 9.125819921 127.0.0.1:57433 127.0.0.1:57415 382469329 12 ffffffffe19f0c0000000000 ............ +3287 9.126413345 127.0.0.1:57433 127.0.0.1:57415 382469341 12 16000000845c0c0000000000 .....\...... +3289 9.126611233 127.0.0.1:57433 127.0.0.1:57415 382469353 22 12000000d1c721000000000001000300000000000000 ......!............... +3291 9.126874208 127.0.0.1:57415 127.0.0.1:57433 3340087389 12 ffffffff845c0c0000000000 .....\...... +3297 9.178702593 127.0.0.1:57415 127.0.0.1:57433 3340087401 12 feffffffdf6e0100c56e0100 .....n...n.. +3311 9.221938133 127.0.0.1:57433 127.0.0.1:57415 382469375 12 feffffffc66e0100df6e0100 .....n...n.. +3313 9.228276730 127.0.0.1:57415 127.0.0.1:57433 3340087413 12 1a000000e29f0c0000000000 ............ +3315 9.228483677 127.0.0.1:57415 127.0.0.1:57433 3340087425 26 16000000548f6340e25e3140010003000000d3c7210000000000 ....T.c@.^1@........!..... +3317 9.228804827 127.0.0.1:57433 127.0.0.1:57415 382469387 12 ffffffffe29f0c0000000000 ............ +3319 9.229331017 127.0.0.1:57433 127.0.0.1:57415 382469399 12 16000000855c0c0000000000 .....\...... +3321 9.229475498 127.0.0.1:57433 127.0.0.1:57415 382469411 22 12000000d3c721000000000001000300000000000000 ......!............... +3323 9.229743719 127.0.0.1:57415 127.0.0.1:57433 3340087451 12 ffffffff855c0c0000000000 .....\...... +3329 9.330808878 127.0.0.1:57415 127.0.0.1:57433 3340087463 12 1a000000e39f0c0000000000 ............ +3331 9.331001043 127.0.0.1:57415 127.0.0.1:57433 3340087475 26 16000000548f6340e25e3140010003000000d5c7210000000000 ....T.c@.^1@........!..... +3333 9.331326962 127.0.0.1:57433 127.0.0.1:57415 382469433 12 ffffffffe39f0c0000000000 ............ +3335 9.331818104 127.0.0.1:57433 127.0.0.1:57415 382469445 12 16000000865c0c0000000000 .....\...... +3337 9.332005262 127.0.0.1:57433 127.0.0.1:57415 382469457 22 12000000d5c721000000000001000300000000000000 ......!............... +3339 9.332248926 127.0.0.1:57415 127.0.0.1:57433 3340087501 12 ffffffff865c0c0000000000 .....\...... +3341 9.350173950 127.0.0.1:57415 127.0.0.1:57433 3340087513 12 65000000e49f0c0000000000 e........... +3343 9.350382090 127.0.0.1:57415 127.0.0.1:57433 3340087525 101 1e0000001c2118d0c46f33bb010003000000a159020000000000967779c39d01 .....!...o3........Y.......wy.....?.....3...|8.. +3345 9.350687027 127.0.0.1:57433 127.0.0.1:57415 382469479 12 ffffffffe49f0c0000000000 ............ +3347 9.351806879 127.0.0.1:57433 127.0.0.1:57415 382469491 12 34000000875c0c0000000000 4....\...... +3349 9.351987362 127.0.0.1:57433 127.0.0.1:57415 382469503 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........b. +3351 9.352624178 127.0.0.1:57415 127.0.0.1:57433 3340087626 12 ffffffff875c0c0000000000 .....\...... +3353 9.353522301 127.0.0.1:57415 127.0.0.1:57433 3340087638 12 1e000000e59f0c0000000000 ............ +3355 9.353658199 127.0.0.1:57415 127.0.0.1:57433 3340087650 30 1a00000055ceff62b21b3a50010003000000d7c721000000000000000000 ....U..b..:P........!......... +3357 9.354075909 127.0.0.1:57433 127.0.0.1:57415 382469555 12 ffffffffe59f0c0000000000 ............ +3359 9.354368687 127.0.0.1:57433 127.0.0.1:57415 382469567 12 1a000000885c0c0000000000 .....\...... +3361 9.354569197 127.0.0.1:57433 127.0.0.1:57415 382469579 26 16000000d7c72100000000000100030000000000000000000000 ......!................... +3363 9.354827404 127.0.0.1:57415 127.0.0.1:57433 3340087680 12 ffffffff885c0c0000000000 .....\...... +3365 9.433772564 127.0.0.1:57415 127.0.0.1:57433 3340087692 12 1a000000e69f0c0000000000 ............ +3367 9.433968306 127.0.0.1:57415 127.0.0.1:57433 3340087704 26 16000000548f6340e25e3140010003000000d9c7210000000000 ....T.c@.^1@........!..... +3369 9.434373856 127.0.0.1:57433 127.0.0.1:57415 382469605 12 ffffffffe69f0c0000000000 ............ +3371 9.434901953 127.0.0.1:57433 127.0.0.1:57415 382469617 12 16000000895c0c0000000000 .....\...... +3373 9.435143232 127.0.0.1:57433 127.0.0.1:57415 382469629 22 12000000d9c721000000000001000300000000000000 ......!............... +3375 9.435475111 127.0.0.1:57415 127.0.0.1:57433 3340087730 12 ffffffff895c0c0000000000 .....\...... +3377 9.536740065 127.0.0.1:57415 127.0.0.1:57433 3340087742 12 1a000000e79f0c0000000000 ............ +3379 9.536919832 127.0.0.1:57415 127.0.0.1:57433 3340087754 26 16000000548f6340e25e3140010003000000dbc7210000000000 ....T.c@.^1@........!..... +3381 9.537303925 127.0.0.1:57433 127.0.0.1:57415 382469651 12 ffffffffe79f0c0000000000 ............ +3383 9.537743092 127.0.0.1:57433 127.0.0.1:57415 382469663 12 160000008a5c0c0000000000 .....\...... +3385 9.537995100 127.0.0.1:57433 127.0.0.1:57415 382469675 22 12000000dbc721000000000001000300000000000000 ......!............... +3387 9.538235903 127.0.0.1:57415 127.0.0.1:57433 3340087780 12 ffffffff8a5c0c0000000000 .....\...... +3389 9.639749050 127.0.0.1:57415 127.0.0.1:57433 3340087792 12 1a000000e89f0c0000000000 ............ +3391 9.639983654 127.0.0.1:57415 127.0.0.1:57433 3340087804 26 16000000548f6340e25e3140010003000000ddc7210000000000 ....T.c@.^1@........!..... +3393 9.640432358 127.0.0.1:57433 127.0.0.1:57415 382469697 12 ffffffffe89f0c0000000000 ............ +3395 9.640971899 127.0.0.1:57433 127.0.0.1:57415 382469709 12 160000008b5c0c0000000000 .....\...... +3397 9.641198635 127.0.0.1:57433 127.0.0.1:57415 382469721 22 12000000ddc721000000000001000300000000000000 ......!............... +3399 9.641511679 127.0.0.1:57415 127.0.0.1:57433 3340087830 12 ffffffff8b5c0c0000000000 .....\...... +3401 9.656086922 127.0.0.1:57415 127.0.0.1:57433 3340087842 12 65000000e99f0c0000000000 e........... +3403 9.656341791 127.0.0.1:57415 127.0.0.1:57433 3340087854 101 1e0000001c2118d0c46f33bb010003000000a259020000000000c87879c39d01 .....!...o3........Y.......xy.....?.....3...|8.. +3405 9.656719923 127.0.0.1:57433 127.0.0.1:57415 382469743 12 ffffffffe99f0c0000000000 ............ +3407 9.657744884 127.0.0.1:57433 127.0.0.1:57415 382469755 12 340000008c5c0c0000000000 4....\...... +3409 9.658122540 127.0.0.1:57433 127.0.0.1:57415 382469767 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +3411 9.658477306 127.0.0.1:57415 127.0.0.1:57433 3340087955 12 ffffffff8c5c0c0000000000 .....\...... +3416 9.659530878 127.0.0.1:57415 127.0.0.1:57433 3340087967 12 1e000000ea9f0c0000000000 ............ +3419 9.659707069 127.0.0.1:57415 127.0.0.1:57433 3340087979 30 1a00000055ceff62b21b3a50010003000000dfc721000000000000000000 ....U..b..:P........!......... +3421 9.660115004 127.0.0.1:57433 127.0.0.1:57415 382469819 12 ffffffffea9f0c0000000000 ............ +3423 9.660520315 127.0.0.1:57433 127.0.0.1:57415 382469831 12 1a0000008d5c0c0000000000 .....\...... +3425 9.660717487 127.0.0.1:57433 127.0.0.1:57415 382469843 26 16000000dfc72100000000000100030000000000000000000000 ......!................... +3427 9.660948038 127.0.0.1:57415 127.0.0.1:57433 3340088009 12 ffffffff8d5c0c0000000000 .....\...... +3430 9.679316044 127.0.0.1:57415 127.0.0.1:57433 3340088021 12 feffffffe06e0100c66e0100 .....n...n.. +3448 9.721940517 127.0.0.1:57433 127.0.0.1:57415 382469869 12 feffffffc76e0100e06e0100 .....n...n.. +3452 9.743850708 127.0.0.1:57415 127.0.0.1:57433 3340088033 12 1a000000eb9f0c0000000000 ............ +3454 9.744078398 127.0.0.1:57415 127.0.0.1:57433 3340088045 26 16000000548f6340e25e3140010003000000e1c7210000000000 ....T.c@.^1@........!..... +3456 9.744352102 127.0.0.1:57433 127.0.0.1:57415 382469881 12 ffffffffeb9f0c0000000000 ............ +3458 9.744992018 127.0.0.1:57433 127.0.0.1:57415 382469893 12 160000008e5c0c0000000000 .....\...... +3460 9.745177984 127.0.0.1:57433 127.0.0.1:57415 382469905 22 12000000e1c721000000000001000300000000000000 ......!............... +3462 9.745455265 127.0.0.1:57415 127.0.0.1:57433 3340088071 12 ffffffff8e5c0c0000000000 .....\...... +3467 9.848246813 127.0.0.1:57415 127.0.0.1:57433 3340088083 12 1a000000ec9f0c0000000000 ............ +3469 9.848443747 127.0.0.1:57415 127.0.0.1:57433 3340088095 26 16000000548f6340e25e3140010003000000e3c7210000000000 ....T.c@.^1@........!..... +3471 9.848819733 127.0.0.1:57433 127.0.0.1:57415 382469927 12 ffffffffec9f0c0000000000 ............ +3473 9.849244833 127.0.0.1:57433 127.0.0.1:57415 382469939 12 160000008f5c0c0000000000 .....\...... +3475 9.849395990 127.0.0.1:57433 127.0.0.1:57415 382469951 22 12000000e3c721000000000001000300000000000000 ......!............... +3477 9.849734068 127.0.0.1:57415 127.0.0.1:57433 3340088121 12 ffffffff8f5c0c0000000000 .....\...... +3480 9.952208281 127.0.0.1:57415 127.0.0.1:57433 3340088133 12 1a000000ed9f0c0000000000 ............ +3482 9.952447414 127.0.0.1:57415 127.0.0.1:57433 3340088145 26 16000000548f6340e25e3140010003000000e5c7210000000000 ....T.c@.^1@........!..... +3484 9.952830315 127.0.0.1:57433 127.0.0.1:57415 382469973 12 ffffffffed9f0c0000000000 ............ +3486 9.953699589 127.0.0.1:57433 127.0.0.1:57415 382469985 12 16000000905c0c0000000000 .....\...... +3488 9.953848124 127.0.0.1:57433 127.0.0.1:57415 382469997 22 12000000e5c721000000000001000300000000000000 ......!............... +3490 9.954151869 127.0.0.1:57415 127.0.0.1:57433 3340088171 12 ffffffff905c0c0000000000 .....\...... +3492 9.960343599 127.0.0.1:57415 127.0.0.1:57433 3340088183 12 65000000ee9f0c0000000000 e........... +3494 9.960566998 127.0.0.1:57415 127.0.0.1:57433 3340088195 101 1e0000001c2118d0c46f33bb010003000000a359020000000000f87979c39d01 .....!...o3........Y.......yy.....?.....3...|8.. +3496 9.960917711 127.0.0.1:57433 127.0.0.1:57415 382470019 12 ffffffffee9f0c0000000000 ............ +3498 9.961996078 127.0.0.1:57433 127.0.0.1:57415 382470031 12 34000000915c0c0000000000 4....\...... +3500 9.962179422 127.0.0.1:57433 127.0.0.1:57415 382470043 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........b... +3502 9.962451458 127.0.0.1:57415 127.0.0.1:57433 3340088296 12 ffffffff915c0c0000000000 .....\...... +3504 9.963268518 127.0.0.1:57415 127.0.0.1:57433 3340088308 12 1e000000ef9f0c0000000000 ............ +3506 9.963469505 127.0.0.1:57415 127.0.0.1:57433 3340088320 30 1a00000055ceff62b21b3a50010003000000e7c721000000000000000000 ....U..b..:P........!......... +3508 9.963807106 127.0.0.1:57433 127.0.0.1:57415 382470095 12 ffffffffef9f0c0000000000 ............ +3510 9.964210272 127.0.0.1:57433 127.0.0.1:57415 382470107 12 1a000000925c0c0000000000 .....\...... +3512 9.964455605 127.0.0.1:57433 127.0.0.1:57415 382470119 26 16000000e7c72100000000000100030000000000000000000000 ......!................... +3514 9.964702368 127.0.0.1:57415 127.0.0.1:57433 3340088350 12 ffffffff925c0c0000000000 .....\...... +3517 10.056131840 127.0.0.1:57415 127.0.0.1:57433 3340088362 12 1a000000f09f0c0000000000 ............ +3519 10.056331158 127.0.0.1:57415 127.0.0.1:57433 3340088374 26 16000000548f6340e25e3140010003000000e9c7210000000000 ....T.c@.^1@........!..... +3521 10.056700706 127.0.0.1:57433 127.0.0.1:57415 382470145 12 fffffffff09f0c0000000000 ............ +3523 10.057193041 127.0.0.1:57433 127.0.0.1:57415 382470157 12 16000000935c0c0000000000 .....\...... +3525 10.057348013 127.0.0.1:57433 127.0.0.1:57415 382470169 22 12000000e9c721000000000001000300000000000000 ......!............... +3527 10.057675600 127.0.0.1:57415 127.0.0.1:57433 3340088400 12 ffffffff935c0c0000000000 .....\...... +3534 10.159240007 127.0.0.1:57415 127.0.0.1:57433 3340088412 12 1a000000f19f0c0000000000 ............ +3536 10.159430981 127.0.0.1:57415 127.0.0.1:57433 3340088424 26 16000000548f6340e25e3140010003000000ebc7210000000000 ....T.c@.^1@........!..... +3538 10.159851313 127.0.0.1:57433 127.0.0.1:57415 382470191 12 fffffffff19f0c0000000000 ............ +3544 10.160276890 127.0.0.1:57433 127.0.0.1:57415 382470203 12 16000000945c0c0000000000 .....\...... +3546 10.160427570 127.0.0.1:57433 127.0.0.1:57415 382470215 22 12000000ebc721000000000001000300000000000000 ......!............... +3548 10.160760164 127.0.0.1:57415 127.0.0.1:57433 3340088450 12 ffffffff945c0c0000000000 .....\...... +3589 10.180029631 127.0.0.1:57415 127.0.0.1:57433 3340088462 12 feffffffe16e0100c76e0100 .....n...n.. +3604 10.224088669 127.0.0.1:57433 127.0.0.1:57415 382470237 12 feffffffc86e0100e16e0100 .....n...n.. +3610 10.262388468 127.0.0.1:57415 127.0.0.1:57433 3340088474 12 1a000000f29f0c0000000000 ............ +3612 10.262635708 127.0.0.1:57415 127.0.0.1:57433 3340088486 26 16000000548f6340e25e3140010003000000edc7210000000000 ....T.c@.^1@........!..... +3614 10.262951851 127.0.0.1:57433 127.0.0.1:57415 382470249 12 fffffffff29f0c0000000000 ............ +3616 10.263751745 127.0.0.1:57433 127.0.0.1:57415 382470261 12 16000000955c0c0000000000 .....\...... +3618 10.263970613 127.0.0.1:57433 127.0.0.1:57415 382470273 22 12000000edc721000000000001000300000000000000 ......!............... +3620 10.264359236 127.0.0.1:57415 127.0.0.1:57433 3340088512 12 65000000f39f0c0000000000 e........... +3622 10.264592886 127.0.0.1:57415 127.0.0.1:57433 3340088524 101 1e0000001c2118d0c46f33bb010003000000a459020000000000287b79c39d01 .....!...o3........Y......({y.....?.....3...|8.. +3624 10.264860392 127.0.0.1:57415 127.0.0.1:57433 3340088625 12 ffffffff955c0c0000000000 .....\...... +3626 10.264980555 127.0.0.1:57433 127.0.0.1:57415 382470295 12 fffffffff39f0c0000000000 ............ +3628 10.266068935 127.0.0.1:57433 127.0.0.1:57415 382470307 12 34000000965c0c0000000000 4....\...... +3630 10.266225815 127.0.0.1:57433 127.0.0.1:57415 382470319 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........s.. +3632 10.266470432 127.0.0.1:57415 127.0.0.1:57433 3340088637 12 ffffffff965c0c0000000000 .....\...... +3634 10.267362833 127.0.0.1:57415 127.0.0.1:57433 3340088649 12 1e000000f49f0c0000000000 ............ +3636 10.267532349 127.0.0.1:57415 127.0.0.1:57433 3340088661 30 1a00000055ceff62b21b3a50010003000000efc721000000000000000000 ....U..b..:P........!......... +3638 10.267883301 127.0.0.1:57433 127.0.0.1:57415 382470371 12 fffffffff49f0c0000000000 ............ +3640 10.268356562 127.0.0.1:57433 127.0.0.1:57415 382470383 12 1a000000975c0c0000000000 .....\...... +3642 10.268554926 127.0.0.1:57433 127.0.0.1:57415 382470395 26 16000000efc72100000000000100030000000000000000000000 ......!................... +3644 10.268848419 127.0.0.1:57415 127.0.0.1:57433 3340088691 12 ffffffff975c0c0000000000 .....\...... +3689 10.367342472 127.0.0.1:57415 127.0.0.1:57433 3340088703 12 1a000000f59f0c0000000000 ............ +3691 10.367510557 127.0.0.1:57415 127.0.0.1:57433 3340088715 26 16000000548f6340e25e3140010003000000f1c7210000000000 ....T.c@.^1@........!..... +3693 10.367955685 127.0.0.1:57433 127.0.0.1:57415 382470421 12 fffffffff59f0c0000000000 ............ +3695 10.368358135 127.0.0.1:57433 127.0.0.1:57415 382470433 12 16000000985c0c0000000000 .....\...... +3697 10.368523598 127.0.0.1:57433 127.0.0.1:57415 382470445 22 12000000f1c721000000000001000300000000000000 ......!............... +3699 10.368870020 127.0.0.1:57415 127.0.0.1:57433 3340088741 12 ffffffff985c0c0000000000 .....\...... +3702 10.470364332 127.0.0.1:57415 127.0.0.1:57433 3340088753 12 1a000000f69f0c0000000000 ............ +3704 10.470579386 127.0.0.1:57415 127.0.0.1:57433 3340088765 26 16000000548f6340e25e3140010003000000f3c7210000000000 ....T.c@.^1@........!..... +3706 10.470954895 127.0.0.1:57433 127.0.0.1:57415 382470467 12 fffffffff69f0c0000000000 ............ +3708 10.471399784 127.0.0.1:57433 127.0.0.1:57415 382470479 12 16000000995c0c0000000000 .....\...... +3710 10.471563339 127.0.0.1:57433 127.0.0.1:57415 382470491 22 12000000f3c721000000000001000300000000000000 ......!............... +3712 10.471819162 127.0.0.1:57415 127.0.0.1:57433 3340088791 12 ffffffff995c0c0000000000 .....\...... +3754 10.570044994 127.0.0.1:57415 127.0.0.1:57433 3340088803 12 65000000f79f0c0000000000 e........... +3756 10.570283413 127.0.0.1:57415 127.0.0.1:57433 3340088815 101 1e0000001c2118d0c46f33bb010003000000a5590200000000005a7c79c39d01 .....!...o3........Y......Z|y.....?.....3...|8.. +3758 10.570703745 127.0.0.1:57433 127.0.0.1:57415 382470513 12 fffffffff79f0c0000000000 ............ +3760 10.572011471 127.0.0.1:57433 127.0.0.1:57415 382470525 12 340000009a5c0c0000000000 4....\...... +3762 10.572203875 127.0.0.1:57433 127.0.0.1:57415 382470537 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +3764 10.572622299 127.0.0.1:57415 127.0.0.1:57433 3340088916 12 ffffffff9a5c0c0000000000 .....\...... +3766 10.573085308 127.0.0.1:57415 127.0.0.1:57433 3340088928 12 1a000000f89f0c0000000000 ............ +3768 10.573256493 127.0.0.1:57415 127.0.0.1:57433 3340088940 26 16000000548f6340e25e3140010003000000f5c7210000000000 ....T.c@.^1@........!..... +3770 10.573382139 127.0.0.1:57415 127.0.0.1:57433 3340088966 12 1e000000f99f0c0000000000 ............ +3772 10.573463202 127.0.0.1:57415 127.0.0.1:57433 3340088978 30 1a00000055ceff62b21b3a50010003000000f7c721000000000000000000 ....U..b..:P........!......... +3774 10.573651791 127.0.0.1:57433 127.0.0.1:57415 382470589 12 fffffffff89f0c0000000000 ............ +3776 10.573874474 127.0.0.1:57433 127.0.0.1:57415 382470601 12 fffffffff99f0c0000000000 ............ +3778 10.574035883 127.0.0.1:57433 127.0.0.1:57415 382470613 12 160000009b5c0c0000000000 .....\...... +3780 10.574206114 127.0.0.1:57433 127.0.0.1:57415 382470625 22 12000000f5c721000000000001000300000000000000 ......!............... +3782 10.574366808 127.0.0.1:57433 127.0.0.1:57415 382470647 12 1a0000009c5c0c0000000000 .....\...... +3784 10.574453115 127.0.0.1:57415 127.0.0.1:57433 3340089008 12 ffffffff9b5c0c0000000000 .....\...... +3785 10.574470043 127.0.0.1:57433 127.0.0.1:57415 382470659 26 16000000f7c72100000000000100030000000000000000000000 ......!................... +3788 10.574635029 127.0.0.1:57415 127.0.0.1:57433 3340089020 12 ffffffff9c5c0c0000000000 .....\...... +3795 10.676066637 127.0.0.1:57415 127.0.0.1:57433 3340089032 12 1a000000fa9f0c0000000000 ............ +3797 10.676249743 127.0.0.1:57415 127.0.0.1:57433 3340089044 26 16000000548f6340e25e3140010003000000f9c7210000000000 ....T.c@.^1@........!..... +3799 10.676630020 127.0.0.1:57433 127.0.0.1:57415 382470685 12 fffffffffa9f0c0000000000 ............ +3801 10.677126408 127.0.0.1:57433 127.0.0.1:57415 382470697 12 160000009d5c0c0000000000 .....\...... +3803 10.677346945 127.0.0.1:57433 127.0.0.1:57415 382470709 22 12000000f9c721000000000001000300000000000000 ......!............... +3805 10.677648544 127.0.0.1:57415 127.0.0.1:57433 3340089070 12 ffffffff9d5c0c0000000000 .....\...... +3814 10.680596828 127.0.0.1:57415 127.0.0.1:57433 3340089082 12 feffffffe26e0100c86e0100 .....n...n.. +3860 10.724319696 127.0.0.1:57433 127.0.0.1:57415 382470731 12 feffffffc96e0100e26e0100 .....n...n.. +3867 10.779241323 127.0.0.1:57415 127.0.0.1:57433 3340089094 12 1a000000fb9f0c0000000000 ............ +3869 10.779478788 127.0.0.1:57415 127.0.0.1:57433 3340089106 26 16000000548f6340e25e3140010003000000fbc7210000000000 ....T.c@.^1@........!..... +3871 10.779810429 127.0.0.1:57433 127.0.0.1:57415 382470743 12 fffffffffb9f0c0000000000 ............ +3873 10.780270100 127.0.0.1:57433 127.0.0.1:57415 382470755 12 160000009e5c0c0000000000 .....\...... +3875 10.780460835 127.0.0.1:57433 127.0.0.1:57415 382470767 22 12000000fbc721000000000001000300000000000000 ......!............... +3877 10.780813217 127.0.0.1:57415 127.0.0.1:57433 3340089132 12 ffffffff9e5c0c0000000000 .....\...... +3919 10.874755621 127.0.0.1:57415 127.0.0.1:57433 3340089144 12 22000000fc9f0c0000000000 "........... +3921 10.874932766 127.0.0.1:57415 127.0.0.1:57433 3340089156 34 1e0000001c2118d0c46f33bb010003000000a6590200000000008a7d79c39d01 .....!...o3........Y.......}y..... +3923 10.875071526 127.0.0.1:57415 127.0.0.1:57433 3340089190 12 43000000fd9f0c0000000000 C........... +3925 10.875154495 127.0.0.1:57415 127.0.0.1:57433 3340089202 67 3f000000980433cb0cb47c380100030000000100000000a6590200000000003d ?.....3...|8............Y......=B.....&......... +3927 10.875255346 127.0.0.1:57433 127.0.0.1:57415 382470789 12 fffffffffc9f0c0000000000 ............ +3929 10.875432014 127.0.0.1:57433 127.0.0.1:57415 382470801 12 fffffffffd9f0c0000000000 ............ +3931 10.876429796 127.0.0.1:57433 127.0.0.1:57415 382470813 12 340000009f5c0c0000000000 4....\...... +3933 10.876594782 127.0.0.1:57433 127.0.0.1:57415 382470825 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........z.K. +3935 10.876876116 127.0.0.1:57415 127.0.0.1:57433 3340089269 12 ffffffff9f5c0c0000000000 .....\...... +3937 10.877532005 127.0.0.1:57415 127.0.0.1:57433 3340089281 12 1e000000fe9f0c0000000000 ............ +3939 10.877756596 127.0.0.1:57415 127.0.0.1:57433 3340089293 30 1a00000055ceff62b21b3a50010003000000fdc721000000000000000000 ....U..b..:P........!......... +3941 10.878176451 127.0.0.1:57433 127.0.0.1:57415 382470877 12 fffffffffe9f0c0000000000 ............ +3943 10.878461361 127.0.0.1:57433 127.0.0.1:57415 382470889 12 1a000000a05c0c0000000000 .....\...... +3945 10.878627062 127.0.0.1:57433 127.0.0.1:57415 382470901 26 16000000fdc72100000000000100030000000000000000000000 ......!................... +3947 10.878830910 127.0.0.1:57415 127.0.0.1:57433 3340089323 12 ffffffffa05c0c0000000000 .....\...... +3949 10.882138252 127.0.0.1:57415 127.0.0.1:57433 3340089335 12 1a000000ff9f0c0000000000 ............ +3951 10.882360220 127.0.0.1:57415 127.0.0.1:57433 3340089347 26 16000000548f6340e25e3140010003000000ffc7210000000000 ....T.c@.^1@........!..... +3953 10.882769823 127.0.0.1:57433 127.0.0.1:57415 382470927 12 ffffffffff9f0c0000000000 ............ +3955 10.883117437 127.0.0.1:57433 127.0.0.1:57415 382470939 12 16000000a15c0c0000000000 .....\...... +3957 10.883252859 127.0.0.1:57433 127.0.0.1:57415 382470951 22 12000000ffc721000000000001000300000000000000 ......!............... +3959 10.883502722 127.0.0.1:57415 127.0.0.1:57433 3340089373 12 ffffffffa15c0c0000000000 .....\...... +3961 10.985983610 127.0.0.1:57415 127.0.0.1:57433 3340089385 12 1a00000000a00c0000000000 ............ +3963 10.986180305 127.0.0.1:57415 127.0.0.1:57433 3340089397 26 16000000548f6340e25e314001000300000001c8210000000000 ....T.c@.^1@........!..... +3965 10.986507177 127.0.0.1:57433 127.0.0.1:57415 382470973 12 ffffffff00a00c0000000000 ............ +3969 10.987071514 127.0.0.1:57433 127.0.0.1:57415 382470985 12 16000000a25c0c0000000000 .....\...... +3972 10.987242937 127.0.0.1:57433 127.0.0.1:57415 382470997 22 1200000001c821000000000001000300000000000000 ......!............... +3977 10.987569332 127.0.0.1:57415 127.0.0.1:57433 3340089423 12 ffffffffa25c0c0000000000 .....\...... +3979 11.089990616 127.0.0.1:57415 127.0.0.1:57433 3340089435 12 1a00000001a00c0000000000 ............ +3981 11.090261221 127.0.0.1:57415 127.0.0.1:57433 3340089447 26 16000000548f6340e25e314001000300000003c8210000000000 ....T.c@.^1@........!..... +3983 11.090586424 127.0.0.1:57433 127.0.0.1:57415 382471019 12 ffffffff01a00c0000000000 ............ +3985 11.091043711 127.0.0.1:57433 127.0.0.1:57415 382471031 12 16000000a35c0c0000000000 .....\...... +3987 11.091230154 127.0.0.1:57433 127.0.0.1:57415 382471043 22 1200000003c821000000000001000300000000000000 ......!............... +3989 11.091513157 127.0.0.1:57415 127.0.0.1:57433 3340089473 12 ffffffffa35c0c0000000000 .....\...... +3995 11.179769516 127.0.0.1:57415 127.0.0.1:57433 3340089485 12 6500000002a00c0000000000 e........... +3997 11.179987431 127.0.0.1:57415 127.0.0.1:57433 3340089497 101 1e0000001c2118d0c46f33bb010003000000a759020000000000bc7e79c39d01 .....!...o3........Y.......~y.....?.....3...|8.. +3999 11.180295706 127.0.0.1:57433 127.0.0.1:57415 382471065 12 ffffffff02a00c0000000000 ............ +4001 11.181941032 127.0.0.1:57433 127.0.0.1:57415 382471077 12 34000000a45c0c0000000000 4....\...... +4003 11.182092190 127.0.0.1:57433 127.0.0.1:57415 382471089 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........c2z. +4005 11.182378292 127.0.0.1:57415 127.0.0.1:57433 3340089598 12 ffffffffa45c0c0000000000 .....\...... +4007 11.182636023 127.0.0.1:57415 127.0.0.1:57433 3340089610 12 feffffffe36e0100c96e0100 .....n...n.. +4009 11.183149576 127.0.0.1:57415 127.0.0.1:57433 3340089622 12 1e00000003a00c0000000000 ............ +4011 11.183296442 127.0.0.1:57415 127.0.0.1:57433 3340089634 30 1a00000055ceff62b21b3a5001000300000005c821000000000000000000 ....U..b..:P........!......... +4013 11.183546782 127.0.0.1:57433 127.0.0.1:57415 382471141 12 ffffffff03a00c0000000000 ............ +4015 11.183949709 127.0.0.1:57433 127.0.0.1:57415 382471153 12 1a000000a55c0c0000000000 .....\...... +4017 11.184088230 127.0.0.1:57433 127.0.0.1:57415 382471165 26 1600000005c82100000000000100030000000000000000000000 ......!................... +4019 11.184340000 127.0.0.1:57415 127.0.0.1:57433 3340089664 12 ffffffffa55c0c0000000000 .....\...... +4021 11.193095207 127.0.0.1:57415 127.0.0.1:57433 3340089676 12 1a00000004a00c0000000000 ............ +4023 11.193242073 127.0.0.1:57415 127.0.0.1:57433 3340089688 26 16000000548f6340e25e314001000300000007c8210000000000 ....T.c@.^1@........!..... +4025 11.193533659 127.0.0.1:57433 127.0.0.1:57415 382471191 12 ffffffff04a00c0000000000 ............ +4027 11.194289684 127.0.0.1:57433 127.0.0.1:57415 382471203 12 16000000a65c0c0000000000 .....\...... +4029 11.194486380 127.0.0.1:57433 127.0.0.1:57415 382471215 22 1200000007c821000000000001000300000000000000 ......!............... +4031 11.195167065 127.0.0.1:57415 127.0.0.1:57433 3340089714 12 ffffffffa65c0c0000000000 .....\...... +4043 11.224360228 127.0.0.1:57433 127.0.0.1:57415 382471237 12 feffffffca6e0100e36e0100 .....n...n.. +4051 11.295977354 127.0.0.1:57415 127.0.0.1:57433 3340089726 12 1a00000005a00c0000000000 ............ +4053 11.296283484 127.0.0.1:57415 127.0.0.1:57433 3340089738 26 16000000548f6340e25e314001000300000009c8210000000000 ....T.c@.^1@........!..... +4055 11.296647549 127.0.0.1:57433 127.0.0.1:57415 382471249 12 ffffffff05a00c0000000000 ............ +4057 11.297132730 127.0.0.1:57433 127.0.0.1:57415 382471261 12 16000000a75c0c0000000000 .....\...... +4059 11.297297716 127.0.0.1:57433 127.0.0.1:57415 382471273 22 1200000009c821000000000001000300000000000000 ......!............... +4061 11.297556639 127.0.0.1:57415 127.0.0.1:57433 3340089764 12 ffffffffa75c0c0000000000 .....\...... +4124 11.399896383 127.0.0.1:57415 127.0.0.1:57433 3340089776 12 1a00000006a00c0000000000 ............ +4127 11.400053263 127.0.0.1:57415 127.0.0.1:57433 3340089788 26 16000000548f6340e25e31400100030000000bc8210000000000 ....T.c@.^1@........!..... +4132 11.400404215 127.0.0.1:57433 127.0.0.1:57415 382471295 12 ffffffff06a00c0000000000 ............ +4139 11.400828123 127.0.0.1:57433 127.0.0.1:57415 382471307 12 16000000a85c0c0000000000 .....\...... +4143 11.400977612 127.0.0.1:57433 127.0.0.1:57415 382471319 22 120000000bc821000000000001000300000000000000 ......!............... +4148 11.401335955 127.0.0.1:57415 127.0.0.1:57433 3340089814 12 ffffffffa85c0c0000000000 .....\...... +4189 11.485317707 127.0.0.1:57415 127.0.0.1:57433 3340089826 12 6500000007a00c0000000000 e........... +4193 11.485480309 127.0.0.1:57415 127.0.0.1:57433 3340089838 101 1e0000001c2118d0c46f33bb010003000000a859020000000000ed7f79c39d01 .....!...o3........Y........y.....?.....3...|8.. +4197 11.485768080 127.0.0.1:57433 127.0.0.1:57415 382471341 12 ffffffff07a00c0000000000 ............ +4216 11.487198591 127.0.0.1:57433 127.0.0.1:57415 382471353 12 34000000a95c0c0000000000 4....\...... +4219 11.487417698 127.0.0.1:57433 127.0.0.1:57415 382471365 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +4221 11.487705946 127.0.0.1:57415 127.0.0.1:57433 3340089939 12 ffffffffa95c0c0000000000 .....\...... +4231 11.488544226 127.0.0.1:57415 127.0.0.1:57433 3340089951 12 1e00000008a00c0000000000 ............ +4234 11.488688469 127.0.0.1:57415 127.0.0.1:57433 3340089963 30 1a00000055ceff62b21b3a500100030000000dc821000000000000000000 ....U..b..:P........!......... +4241 11.489044666 127.0.0.1:57433 127.0.0.1:57415 382471417 12 ffffffff08a00c0000000000 ............ +4247 11.489574432 127.0.0.1:57433 127.0.0.1:57415 382471429 12 1a000000aa5c0c0000000000 .....\...... +4251 11.489797592 127.0.0.1:57433 127.0.0.1:57415 382471441 26 160000000dc82100000000000100030000000000000000000000 ......!................... +4257 11.490123272 127.0.0.1:57415 127.0.0.1:57433 3340089993 12 ffffffffaa5c0c0000000000 .....\...... +4311 11.502722979 127.0.0.1:57415 127.0.0.1:57433 3340090005 12 1a00000009a00c0000000000 ............ +4313 11.502881289 127.0.0.1:57415 127.0.0.1:57433 3340090017 26 16000000548f6340e25e31400100030000000fc8210000000000 ....T.c@.^1@........!..... +4315 11.503168344 127.0.0.1:57433 127.0.0.1:57415 382471467 12 ffffffff09a00c0000000000 ............ +4317 11.503648043 127.0.0.1:57433 127.0.0.1:57415 382471479 12 16000000ab5c0c0000000000 .....\...... +4319 11.503785133 127.0.0.1:57433 127.0.0.1:57415 382471491 22 120000000fc821000000000001000300000000000000 ......!............... +4321 11.504060745 127.0.0.1:57415 127.0.0.1:57433 3340090043 12 ffffffffab5c0c0000000000 .....\...... +4518 11.604921818 127.0.0.1:57415 127.0.0.1:57433 3340090055 12 1a0000000aa00c0000000000 ............ +4520 11.605129480 127.0.0.1:57415 127.0.0.1:57433 3340090067 26 16000000548f6340e25e314001000300000011c8210000000000 ....T.c@.^1@........!..... +4522 11.605538130 127.0.0.1:57433 127.0.0.1:57415 382471513 12 ffffffff0aa00c0000000000 ............ +4524 11.605950832 127.0.0.1:57433 127.0.0.1:57415 382471525 12 16000000ac5c0c0000000000 .....\...... +4526 11.606096506 127.0.0.1:57433 127.0.0.1:57415 382471537 22 1200000011c821000000000001000300000000000000 ......!............... +4528 11.606405497 127.0.0.1:57415 127.0.0.1:57433 3340090093 12 ffffffffac5c0c0000000000 .....\...... +4651 11.683458090 127.0.0.1:57415 127.0.0.1:57433 3340090105 12 feffffffe46e0100ca6e0100 .....n...n.. +4653 11.707677603 127.0.0.1:57415 127.0.0.1:57433 3340090117 12 1a0000000ba00c0000000000 ............ +4655 11.707944393 127.0.0.1:57415 127.0.0.1:57433 3340090129 26 16000000548f6340e25e314001000300000013c8210000000000 ....T.c@.^1@........!..... +4657 11.708335876 127.0.0.1:57433 127.0.0.1:57415 382471559 12 ffffffff0ba00c0000000000 ............ +4659 11.708843470 127.0.0.1:57433 127.0.0.1:57415 382471571 12 16000000ad5c0c0000000000 .....\...... +4661 11.709077835 127.0.0.1:57433 127.0.0.1:57415 382471583 22 1200000013c821000000000001000300000000000000 ......!............... +4663 11.709311485 127.0.0.1:57415 127.0.0.1:57433 3340090155 12 ffffffffad5c0c0000000000 .....\...... +4674 11.724609375 127.0.0.1:57433 127.0.0.1:57415 382471605 12 feffffffcb6e0100e46e0100 .....n...n.. +4686 11.789704084 127.0.0.1:57415 127.0.0.1:57433 3340090167 12 650000000ca00c0000000000 e........... +4688 11.790017843 127.0.0.1:57415 127.0.0.1:57433 3340090179 101 1e0000001c2118d0c46f33bb010003000000a9590200000000001e8179c39d01 .....!...o3........Y........y.....?.....3...|8.. +4690 11.790484190 127.0.0.1:57433 127.0.0.1:57415 382471617 12 ffffffff0ca00c0000000000 ............ +4692 11.791596413 127.0.0.1:57433 127.0.0.1:57415 382471629 12 34000000ae5c0c0000000000 4....\...... +4694 11.791769505 127.0.0.1:57433 127.0.0.1:57415 382471641 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........q9.. +4696 11.791984320 127.0.0.1:57415 127.0.0.1:57433 3340090280 12 ffffffffae5c0c0000000000 .....\...... +4698 11.804117680 127.0.0.1:57415 127.0.0.1:57433 3340090292 12 1e0000000da00c0000000000 ............ +4700 11.804275990 127.0.0.1:57415 127.0.0.1:57433 3340090304 30 1a00000055ceff62b21b3a5001000300000015c821000000000000000000 ....U..b..:P........!......... +4702 11.804596424 127.0.0.1:57433 127.0.0.1:57415 382471693 12 ffffffff0da00c0000000000 ............ +4704 11.805275679 127.0.0.1:57433 127.0.0.1:57415 382471705 12 1a000000af5c0c0000000000 .....\...... +4706 11.805470705 127.0.0.1:57433 127.0.0.1:57415 382471717 26 1600000015c82100000000000100030000000000000000000000 ......!................... +4708 11.805761576 127.0.0.1:57415 127.0.0.1:57433 3340090334 12 ffffffffaf5c0c0000000000 .....\...... +4710 11.811596394 127.0.0.1:57415 127.0.0.1:57433 3340090346 12 1a0000000ea00c0000000000 ............ +4712 11.811755896 127.0.0.1:57415 127.0.0.1:57433 3340090358 26 16000000548f6340e25e314001000300000017c8210000000000 ....T.c@.^1@........!..... +4714 11.812141895 127.0.0.1:57433 127.0.0.1:57415 382471743 12 ffffffff0ea00c0000000000 ............ +4716 11.812480688 127.0.0.1:57433 127.0.0.1:57415 382471755 12 16000000b05c0c0000000000 .....\...... +4718 11.812630892 127.0.0.1:57433 127.0.0.1:57415 382471767 22 1200000017c821000000000001000300000000000000 ......!............... +4720 11.812891483 127.0.0.1:57415 127.0.0.1:57433 3340090384 12 ffffffffb05c0c0000000000 .....\...... +4761 11.914611340 127.0.0.1:57415 127.0.0.1:57433 3340090396 12 1a0000000fa00c0000000000 ............ +4763 11.914788961 127.0.0.1:57415 127.0.0.1:57433 3340090408 26 16000000548f6340e25e314001000300000019c8210000000000 ....T.c@.^1@........!..... +4765 11.915144205 127.0.0.1:57433 127.0.0.1:57415 382471789 12 ffffffff0fa00c0000000000 ............ +4767 11.915628433 127.0.0.1:57433 127.0.0.1:57415 382471801 12 16000000b15c0c0000000000 .....\...... +4769 11.915779352 127.0.0.1:57433 127.0.0.1:57415 382471813 22 1200000019c821000000000001000300000000000000 ......!............... +4771 11.916119576 127.0.0.1:57415 127.0.0.1:57433 3340090434 12 ffffffffb15c0c0000000000 .....\...... +4780 12.017730474 127.0.0.1:57415 127.0.0.1:57433 3340090446 12 1a00000010a00c0000000000 ............ +4782 12.017938614 127.0.0.1:57415 127.0.0.1:57433 3340090458 26 16000000548f6340e25e31400100030000001bc8210000000000 ....T.c@.^1@........!..... +4786 12.018571615 127.0.0.1:57433 127.0.0.1:57415 382471835 12 ffffffff10a00c0000000000 ............ +4788 12.018779516 127.0.0.1:57433 127.0.0.1:57415 382471847 12 16000000b25c0c0000000000 .....\...... +4790 12.018959522 127.0.0.1:57433 127.0.0.1:57415 382471859 22 120000001bc821000000000001000300000000000000 ......!............... +4792 12.019154787 127.0.0.1:57415 127.0.0.1:57433 3340090484 12 ffffffffb25c0c0000000000 .....\...... +4824 12.106233120 127.0.0.1:57415 127.0.0.1:57433 3340090496 12 2200000011a00c0000000000 "........... +4826 12.106568575 127.0.0.1:57415 127.0.0.1:57433 3340090508 34 1e0000001c2118d0c46f33bb010003000000aa590200000000005b8279c39d01 .....!...o3........Y......[.y..... +4828 12.106701136 127.0.0.1:57415 127.0.0.1:57433 3340090542 12 4300000012a00c0000000000 C........... +4830 12.106784344 127.0.0.1:57415 127.0.0.1:57433 3340090554 67 3f000000980433cb0cb47c380100030000000100000000aa590200000000003d ?.....3...|8............Y......=B.....&......... +4832 12.106906414 127.0.0.1:57433 127.0.0.1:57415 382471881 12 ffffffff11a00c0000000000 ............ +4834 12.107135296 127.0.0.1:57433 127.0.0.1:57415 382471893 12 ffffffff12a00c0000000000 ............ +4836 12.108034849 127.0.0.1:57433 127.0.0.1:57415 382471905 12 34000000b35c0c0000000000 4....\...... +4838 12.108187199 127.0.0.1:57433 127.0.0.1:57415 382471917 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +4840 12.108460665 127.0.0.1:57415 127.0.0.1:57433 3340090621 12 ffffffffb35c0c0000000000 .....\...... +4842 12.109249115 127.0.0.1:57415 127.0.0.1:57433 3340090633 12 1e00000013a00c0000000000 ............ +4844 12.109379053 127.0.0.1:57415 127.0.0.1:57433 3340090645 30 1a00000055ceff62b21b3a500100030000001dc821000000000000000000 ....U..b..:P........!......... +4846 12.109653711 127.0.0.1:57433 127.0.0.1:57415 382471969 12 ffffffff13a00c0000000000 ............ +4848 12.110087633 127.0.0.1:57433 127.0.0.1:57415 382471981 12 1a000000b45c0c0000000000 .....\...... +4850 12.110219002 127.0.0.1:57433 127.0.0.1:57415 382471993 26 160000001dc82100000000000100030000000000000000000000 ......!................... +4852 12.110413313 127.0.0.1:57415 127.0.0.1:57433 3340090675 12 ffffffffb45c0c0000000000 .....\...... +4859 12.120518208 127.0.0.1:57415 127.0.0.1:57433 3340090687 12 1a00000014a00c0000000000 ............ +4861 12.120672941 127.0.0.1:57415 127.0.0.1:57433 3340090699 26 16000000548f6340e25e31400100030000001fc8210000000000 ....T.c@.^1@........!..... +4863 12.121573925 127.0.0.1:57433 127.0.0.1:57415 382472019 12 ffffffff14a00c0000000000 ............ +4865 12.122272730 127.0.0.1:57433 127.0.0.1:57415 382472031 12 16000000b55c0c0000000000 .....\...... +4867 12.122542620 127.0.0.1:57433 127.0.0.1:57415 382472043 22 120000001fc821000000000001000300000000000000 ......!............... +4869 12.123002291 127.0.0.1:57415 127.0.0.1:57433 3340090725 12 ffffffffb55c0c0000000000 .....\...... +4900 12.184314489 127.0.0.1:57415 127.0.0.1:57433 3340090737 12 feffffffe56e0100cb6e0100 .....n...n.. +4951 12.224122524 127.0.0.1:57415 127.0.0.1:57433 3340090749 12 1a00000015a00c0000000000 ............ +4953 12.224280596 127.0.0.1:57415 127.0.0.1:57433 3340090761 26 16000000548f6340e25e314001000300000021c8210000000000 ....T.c@.^1@......!.!..... +4955 12.224557161 127.0.0.1:57433 127.0.0.1:57415 382472065 12 ffffffff15a00c0000000000 ............ +4957 12.224946976 127.0.0.1:57433 127.0.0.1:57415 382472077 12 16000000b65c0c0000000000 .....\...... +4959 12.225085020 127.0.0.1:57433 127.0.0.1:57415 382472089 22 1200000021c821000000000001000300000000000000 ....!.!............... +4961 12.225359201 127.0.0.1:57415 127.0.0.1:57433 3340090787 12 ffffffffb65c0c0000000000 .....\...... +4963 12.225509167 127.0.0.1:57433 127.0.0.1:57415 382472111 12 feffffffcc6e0100e56e0100 .....n...n.. +4971 12.326925278 127.0.0.1:57415 127.0.0.1:57433 3340090799 12 1a00000016a00c0000000000 ............ +4973 12.327162981 127.0.0.1:57415 127.0.0.1:57433 3340090811 26 16000000548f6340e25e314001000300000023c8210000000000 ....T.c@.^1@......#.!..... +4975 12.327462673 127.0.0.1:57433 127.0.0.1:57415 382472123 12 ffffffff16a00c0000000000 ............ +4977 12.327894211 127.0.0.1:57433 127.0.0.1:57415 382472135 12 16000000b75c0c0000000000 .....\...... +4979 12.328121424 127.0.0.1:57433 127.0.0.1:57415 382472147 22 1200000023c821000000000001000300000000000000 ....#.!............... +4981 12.328439713 127.0.0.1:57415 127.0.0.1:57433 3340090837 12 ffffffffb75c0c0000000000 .....\...... +5022 12.411625385 127.0.0.1:57415 127.0.0.1:57433 3340090849 12 6500000017a00c0000000000 e........... +5024 12.411831617 127.0.0.1:57415 127.0.0.1:57433 3340090861 101 1e0000001c2118d0c46f33bb010003000000ab590200000000008c8379c39d01 .....!...o3........Y........y.....?.....3...|8.. +5026 12.412259817 127.0.0.1:57433 127.0.0.1:57415 382472169 12 ffffffff17a00c0000000000 ............ +5028 12.413321018 127.0.0.1:57433 127.0.0.1:57415 382472181 12 34000000b85c0c0000000000 4....\...... +5030 12.413468599 127.0.0.1:57433 127.0.0.1:57415 382472193 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........6. +5032 12.413748980 127.0.0.1:57415 127.0.0.1:57433 3340090962 12 ffffffffb85c0c0000000000 .....\...... +5034 12.414575815 127.0.0.1:57415 127.0.0.1:57433 3340090974 12 1e00000018a00c0000000000 ............ +5036 12.414705515 127.0.0.1:57415 127.0.0.1:57433 3340090986 30 1a00000055ceff62b21b3a5001000300000025c821000000000000000000 ....U..b..:P......%.!......... +5038 12.414968014 127.0.0.1:57433 127.0.0.1:57415 382472245 12 ffffffff18a00c0000000000 ............ +5040 12.415968180 127.0.0.1:57433 127.0.0.1:57415 382472257 12 1a000000b95c0c0000000000 .....\...... +5042 12.416101456 127.0.0.1:57433 127.0.0.1:57415 382472269 26 1600000025c82100000000000100030000000000000000000000 ....%.!................... +5044 12.416322947 127.0.0.1:57415 127.0.0.1:57433 3340091016 12 ffffffffb95c0c0000000000 .....\...... +5046 12.430325270 127.0.0.1:57415 127.0.0.1:57433 3340091028 12 1a00000019a00c0000000000 ............ +5048 12.430498362 127.0.0.1:57415 127.0.0.1:57433 3340091040 26 16000000548f6340e25e314001000300000027c8210000000000 ....T.c@.^1@......'.!..... +5050 12.430750847 127.0.0.1:57433 127.0.0.1:57415 382472295 12 ffffffff19a00c0000000000 ............ +5052 12.431511164 127.0.0.1:57433 127.0.0.1:57415 382472307 12 16000000ba5c0c0000000000 .....\...... +5054 12.431665659 127.0.0.1:57433 127.0.0.1:57415 382472319 22 1200000027c821000000000001000300000000000000 ....'.!............... +5056 12.432021618 127.0.0.1:57415 127.0.0.1:57433 3340091066 12 ffffffffba5c0c0000000000 .....\...... +5058 12.533328056 127.0.0.1:57415 127.0.0.1:57433 3340091078 12 1a0000001aa00c0000000000 ............ +5060 12.533628702 127.0.0.1:57415 127.0.0.1:57433 3340091090 26 16000000548f6340e25e314001000300000029c8210000000000 ....T.c@.^1@......).!..... +5062 12.533963680 127.0.0.1:57433 127.0.0.1:57415 382472341 12 ffffffff1aa00c0000000000 ............ +5064 12.534780502 127.0.0.1:57433 127.0.0.1:57415 382472353 12 16000000bb5c0c0000000000 .....\...... +5066 12.534928799 127.0.0.1:57433 127.0.0.1:57415 382472365 22 1200000029c821000000000001000300000000000000 ....).!............... +5068 12.535252094 127.0.0.1:57415 127.0.0.1:57433 3340091116 12 ffffffffbb5c0c0000000000 .....\...... +5109 12.636539221 127.0.0.1:57415 127.0.0.1:57433 3340091128 12 1a0000001ba00c0000000000 ............ +5111 12.636779547 127.0.0.1:57415 127.0.0.1:57433 3340091140 26 16000000548f6340e25e31400100030000002bc8210000000000 ....T.c@.^1@......+.!..... +5113 12.637044191 127.0.0.1:57433 127.0.0.1:57415 382472387 12 ffffffff1ba00c0000000000 ............ +5115 12.637574911 127.0.0.1:57433 127.0.0.1:57415 382472399 12 16000000bc5c0c0000000000 .....\...... +5117 12.637773514 127.0.0.1:57433 127.0.0.1:57415 382472411 22 120000002bc821000000000001000300000000000000 ....+.!............... +5119 12.638064861 127.0.0.1:57415 127.0.0.1:57433 3340091166 12 ffffffffbc5c0c0000000000 .....\...... +5125 12.685183287 127.0.0.1:57415 127.0.0.1:57433 3340091178 12 feffffffe66e0100cc6e0100 .....n...n.. +5127 12.715853214 127.0.0.1:57415 127.0.0.1:57433 3340091190 12 220000001ca00c0000000000 "........... +5129 12.716134071 127.0.0.1:57415 127.0.0.1:57433 3340091202 34 1e0000001c2118d0c46f33bb010003000000ac59020000000000bb8479c39d01 .....!...o3........Y........y..... +5131 12.716272354 127.0.0.1:57415 127.0.0.1:57433 3340091236 12 430000001da00c0000000000 C........... +5133 12.716357708 127.0.0.1:57415 127.0.0.1:57433 3340091248 67 3f000000980433cb0cb47c380100030000000100000000ac590200000000003d ?.....3...|8............Y......=B.....&......... +5135 12.716621399 127.0.0.1:57433 127.0.0.1:57415 382472433 12 ffffffff1ca00c0000000000 ............ +5137 12.716834068 127.0.0.1:57433 127.0.0.1:57415 382472445 12 ffffffff1da00c0000000000 ............ +5139 12.717646360 127.0.0.1:57433 127.0.0.1:57415 382472457 12 34000000bd5c0c0000000000 4....\...... +5141 12.717806339 127.0.0.1:57433 127.0.0.1:57415 382472469 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........d. +5143 12.718159914 127.0.0.1:57415 127.0.0.1:57433 3340091315 12 ffffffffbd5c0c0000000000 .....\...... +5145 12.719031096 127.0.0.1:57415 127.0.0.1:57433 3340091327 12 1e0000001ea00c0000000000 ............ +5147 12.719172716 127.0.0.1:57415 127.0.0.1:57433 3340091339 30 1a00000055ceff62b21b3a500100030000002dc821000000000000000000 ....U..b..:P......-.!......... +5150 12.719595909 127.0.0.1:57433 127.0.0.1:57415 382472521 12 ffffffff1ea00c0000000000 ............ +5153 12.719886303 127.0.0.1:57433 127.0.0.1:57415 382472533 12 1a000000be5c0c0000000000 .....\...... +5155 12.720028400 127.0.0.1:57433 127.0.0.1:57415 382472545 26 160000002dc82100000000000100030000000000000000000000 ....-.!................... +5157 12.720275879 127.0.0.1:57415 127.0.0.1:57433 3340091369 12 ffffffffbe5c0c0000000000 .....\...... +5169 12.726892948 127.0.0.1:57433 127.0.0.1:57415 382472571 12 feffffffcd6e0100e66e0100 .....n...n.. +5171 12.739753008 127.0.0.1:57415 127.0.0.1:57433 3340091381 12 1a0000001fa00c0000000000 ............ +5173 12.740097046 127.0.0.1:57415 127.0.0.1:57433 3340091393 26 16000000548f6340e25e31400100030000002fc8210000000000 ....T.c@.^1@....../.!..... +5175 12.740564585 127.0.0.1:57433 127.0.0.1:57415 382472583 12 ffffffff1fa00c0000000000 ............ +5177 12.741173267 127.0.0.1:57433 127.0.0.1:57415 382472595 12 16000000bf5c0c0000000000 .....\...... +5179 12.741394997 127.0.0.1:57433 127.0.0.1:57415 382472607 22 120000002fc821000000000001000300000000000000 ..../.!............... +5181 12.741746902 127.0.0.1:57415 127.0.0.1:57433 3340091419 12 ffffffffbf5c0c0000000000 .....\...... +5187 12.843367815 127.0.0.1:57415 127.0.0.1:57433 3340091431 12 1a00000020a00c0000000000 .... ....... +5189 12.843550920 127.0.0.1:57415 127.0.0.1:57433 3340091443 26 16000000548f6340e25e314001000300000031c8210000000000 ....T.c@.^1@......1.!..... +5191 12.843957901 127.0.0.1:57433 127.0.0.1:57415 382472629 12 ffffffff20a00c0000000000 .... ....... +5193 12.844547272 127.0.0.1:57433 127.0.0.1:57415 382472641 12 16000000c05c0c0000000000 .....\...... +5195 12.844753742 127.0.0.1:57433 127.0.0.1:57415 382472653 22 1200000031c821000000000001000300000000000000 ....1.!............... +5197 12.845006466 127.0.0.1:57415 127.0.0.1:57433 3340091469 12 ffffffffc05c0c0000000000 .....\...... +5199 12.946449041 127.0.0.1:57415 127.0.0.1:57433 3340091481 12 1a00000021a00c0000000000 ....!....... +5201 12.946739912 127.0.0.1:57415 127.0.0.1:57433 3340091493 26 16000000548f6340e25e314001000300000033c8210000000000 ....T.c@.^1@......3.!..... +5203 12.947376490 127.0.0.1:57433 127.0.0.1:57415 382472675 12 ffffffff21a00c0000000000 ....!....... +5205 12.947865725 127.0.0.1:57433 127.0.0.1:57415 382472687 12 16000000c15c0c0000000000 .....\...... +5207 12.948089600 127.0.0.1:57433 127.0.0.1:57415 382472699 22 1200000033c821000000000001000300000000000000 ....3.!............... +5209 12.948433638 127.0.0.1:57415 127.0.0.1:57433 3340091519 12 ffffffffc15c0c0000000000 .....\...... +5211 13.021778345 127.0.0.1:57415 127.0.0.1:57433 3340091531 12 6500000022a00c0000000000 e..."....... +5213 13.021951914 127.0.0.1:57415 127.0.0.1:57433 3340091543 101 1e0000001c2118d0c46f33bb010003000000ad59020000000000ed8579c39d01 .....!...o3........Y........y.....?.....3...|8.. +5215 13.022301674 127.0.0.1:57433 127.0.0.1:57415 382472721 12 ffffffff22a00c0000000000 ...."....... +5217 13.023870468 127.0.0.1:57433 127.0.0.1:57415 382472733 12 34000000c25c0c0000000000 4....\...... +5219 13.024020195 127.0.0.1:57433 127.0.0.1:57415 382472745 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........45.. +5221 13.024273157 127.0.0.1:57415 127.0.0.1:57433 3340091644 12 ffffffffc25c0c0000000000 .....\...... +5223 13.025316000 127.0.0.1:57415 127.0.0.1:57433 3340091656 12 1e00000023a00c0000000000 ....#....... +5225 13.025451422 127.0.0.1:57415 127.0.0.1:57433 3340091668 30 1a00000055ceff62b21b3a5001000300000035c821000000000000000000 ....U..b..:P......5.!......... +5227 13.025855303 127.0.0.1:57433 127.0.0.1:57415 382472797 12 ffffffff23a00c0000000000 ....#....... +5229 13.026281834 127.0.0.1:57433 127.0.0.1:57415 382472809 12 1a000000c35c0c0000000000 .....\...... +5231 13.026411533 127.0.0.1:57433 127.0.0.1:57415 382472821 26 1600000035c82100000000000100030000000000000000000000 ....5.!................... +5233 13.026684523 127.0.0.1:57415 127.0.0.1:57433 3340091698 12 ffffffffc35c0c0000000000 .....\...... +5235 13.050441742 127.0.0.1:57415 127.0.0.1:57433 3340091710 12 1a00000024a00c0000000000 ....$....... +5237 13.050670624 127.0.0.1:57415 127.0.0.1:57433 3340091722 26 16000000548f6340e25e314001000300000037c8210000000000 ....T.c@.^1@......7.!..... +5239 13.050972939 127.0.0.1:57433 127.0.0.1:57415 382472847 12 ffffffff24a00c0000000000 ....$....... +5241 13.051532030 127.0.0.1:57433 127.0.0.1:57415 382472859 12 16000000c45c0c0000000000 .....\...... +5243 13.051736116 127.0.0.1:57433 127.0.0.1:57415 382472871 22 1200000037c821000000000001000300000000000000 ....7.!............... +5245 13.051995993 127.0.0.1:57415 127.0.0.1:57433 3340091748 12 ffffffffc45c0c0000000000 .....\...... +5247 13.153343201 127.0.0.1:57415 127.0.0.1:57433 3340091760 12 1a00000025a00c0000000000 ....%....... +5249 13.153573513 127.0.0.1:57415 127.0.0.1:57433 3340091772 26 16000000548f6340e25e314001000300000039c8210000000000 ....T.c@.^1@......9.!..... +5251 13.153828382 127.0.0.1:57433 127.0.0.1:57415 382472893 12 ffffffff25a00c0000000000 ....%....... +5253 13.154526711 127.0.0.1:57433 127.0.0.1:57415 382472905 12 16000000c55c0c0000000000 .....\...... +5255 13.154675961 127.0.0.1:57433 127.0.0.1:57415 382472917 22 1200000039c821000000000001000300000000000000 ....9.!............... +5257 13.155004978 127.0.0.1:57415 127.0.0.1:57433 3340091798 12 ffffffffc55c0c0000000000 .....\...... +5263 13.186884403 127.0.0.1:57415 127.0.0.1:57433 3340091810 12 feffffffe76e0100cd6e0100 .....n...n.. +5277 13.227965355 127.0.0.1:57433 127.0.0.1:57415 382472939 12 feffffffce6e0100e76e0100 .....n...n.. +5281 13.257242680 127.0.0.1:57415 127.0.0.1:57433 3340091822 12 1a00000026a00c0000000000 ....&....... +5283 13.257530928 127.0.0.1:57415 127.0.0.1:57433 3340091834 26 16000000548f6340e25e31400100030000003bc8210000000000 ....T.c@.^1@......;.!..... +5285 13.257879496 127.0.0.1:57433 127.0.0.1:57415 382472951 12 ffffffff26a00c0000000000 ....&....... +5287 13.258516312 127.0.0.1:57433 127.0.0.1:57415 382472963 12 16000000c65c0c0000000000 .....\...... +5289 13.258739710 127.0.0.1:57433 127.0.0.1:57415 382472975 22 120000003bc821000000000001000300000000000000 ....;.!............... +5291 13.259016037 127.0.0.1:57415 127.0.0.1:57433 3340091860 12 ffffffffc65c0c0000000000 .....\...... +5341 13.327423811 127.0.0.1:57415 127.0.0.1:57433 3340091872 12 6500000027a00c0000000000 e...'....... +5343 13.327636957 127.0.0.1:57415 127.0.0.1:57433 3340091884 101 1e0000001c2118d0c46f33bb010003000000ae590200000000001f8779c39d01 .....!...o3........Y........y.....?.....3...|8.. +5345 13.327972889 127.0.0.1:57433 127.0.0.1:57415 382472997 12 ffffffff27a00c0000000000 ....'....... +5347 13.329135418 127.0.0.1:57433 127.0.0.1:57415 382473009 12 34000000c75c0c0000000000 4....\...... +5349 13.329313755 127.0.0.1:57433 127.0.0.1:57415 382473021 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +5351 13.329631567 127.0.0.1:57415 127.0.0.1:57433 3340091985 12 ffffffffc75c0c0000000000 .....\...... +5357 13.330384493 127.0.0.1:57415 127.0.0.1:57433 3340091997 12 1e00000028a00c0000000000 ....(....... +5359 13.330568314 127.0.0.1:57415 127.0.0.1:57433 3340092009 30 1a00000055ceff62b21b3a500100030000003dc821000000000000000000 ....U..b..:P......=.!......... +5361 13.330904484 127.0.0.1:57433 127.0.0.1:57415 382473073 12 ffffffff28a00c0000000000 ....(....... +5363 13.331398010 127.0.0.1:57433 127.0.0.1:57415 382473085 12 1a000000c85c0c0000000000 .....\...... +5365 13.331600666 127.0.0.1:57433 127.0.0.1:57415 382473097 26 160000003dc82100000000000100030000000000000000000000 ....=.!................... +5367 13.331848383 127.0.0.1:57415 127.0.0.1:57433 3340092039 12 ffffffffc85c0c0000000000 .....\...... +5389 13.360217571 127.0.0.1:57415 127.0.0.1:57433 3340092051 12 1a00000029a00c0000000000 ....)....... +5391 13.360461235 127.0.0.1:57415 127.0.0.1:57433 3340092063 26 16000000548f6340e25e31400100030000003fc8210000000000 ....T.c@.^1@......?.!..... +5393 13.360857248 127.0.0.1:57433 127.0.0.1:57415 382473123 12 ffffffff29a00c0000000000 ....)....... +5395 13.361474276 127.0.0.1:57433 127.0.0.1:57415 382473135 12 16000000c95c0c0000000000 .....\...... +5397 13.361631393 127.0.0.1:57433 127.0.0.1:57415 382473147 22 120000003fc821000000000001000300000000000000 ....?.!............... +5399 13.361960411 127.0.0.1:57415 127.0.0.1:57433 3340092089 12 ffffffffc95c0c0000000000 .....\...... +5401 13.462999105 127.0.0.1:57415 127.0.0.1:57433 3340092101 12 1a0000002aa00c0000000000 ....*....... +5403 13.463155270 127.0.0.1:57415 127.0.0.1:57433 3340092113 26 16000000548f6340e25e314001000300000041c8210000000000 ....T.c@.^1@......A.!..... +5405 13.463643789 127.0.0.1:57433 127.0.0.1:57415 382473169 12 ffffffff2aa00c0000000000 ....*....... +5407 13.464019299 127.0.0.1:57433 127.0.0.1:57415 382473181 12 16000000ca5c0c0000000000 .....\...... +5409 13.464165211 127.0.0.1:57433 127.0.0.1:57415 382473193 22 1200000041c821000000000001000300000000000000 ....A.!............... +5411 13.464527607 127.0.0.1:57415 127.0.0.1:57433 3340092139 12 ffffffffca5c0c0000000000 .....\...... +5413 13.567072868 127.0.0.1:57415 127.0.0.1:57433 3340092151 12 1a0000002ba00c0000000000 ....+....... +5415 13.567333221 127.0.0.1:57415 127.0.0.1:57433 3340092163 26 16000000548f6340e25e314001000300000043c8210000000000 ....T.c@.^1@......C.!..... +5417 13.567668676 127.0.0.1:57433 127.0.0.1:57415 382473215 12 ffffffff2ba00c0000000000 ....+....... +5419 13.568093777 127.0.0.1:57433 127.0.0.1:57415 382473227 12 16000000cb5c0c0000000000 .....\...... +5421 13.568242073 127.0.0.1:57433 127.0.0.1:57415 382473239 22 1200000043c821000000000001000300000000000000 ....C.!............... +5423 13.568600416 127.0.0.1:57415 127.0.0.1:57433 3340092189 12 ffffffffcb5c0c0000000000 .....\...... +5425 13.632444620 127.0.0.1:57415 127.0.0.1:57433 3340092201 12 650000002ca00c0000000000 e...,....... +5427 13.632649660 127.0.0.1:57415 127.0.0.1:57433 3340092213 101 1e0000001c2118d0c46f33bb010003000000af59020000000000508879c39d01 .....!...o3........Y......P.y.....?.....3...|8.. +5429 13.632924318 127.0.0.1:57433 127.0.0.1:57415 382473261 12 ffffffff2ca00c0000000000 ....,....... +5431 13.633989096 127.0.0.1:57433 127.0.0.1:57415 382473273 12 34000000cc5c0c0000000000 4....\...... +5433 13.634138346 127.0.0.1:57433 127.0.0.1:57415 382473285 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........!Y.. +5435 13.634727955 127.0.0.1:57415 127.0.0.1:57433 3340092314 12 ffffffffcc5c0c0000000000 .....\...... +5437 13.635586023 127.0.0.1:57415 127.0.0.1:57433 3340092326 12 1e0000002da00c0000000000 ....-....... +5439 13.635723114 127.0.0.1:57415 127.0.0.1:57433 3340092338 30 1a00000055ceff62b21b3a5001000300000045c821000000000000000000 ....U..b..:P......E.!......... +5441 13.636040926 127.0.0.1:57433 127.0.0.1:57415 382473337 12 ffffffff2da00c0000000000 ....-....... +5443 13.636396885 127.0.0.1:57433 127.0.0.1:57415 382473349 12 1a000000cd5c0c0000000000 .....\...... +5445 13.636584997 127.0.0.1:57433 127.0.0.1:57415 382473361 26 1600000045c82100000000000100030000000000000000000000 ....E.!................... +5447 13.636814594 127.0.0.1:57415 127.0.0.1:57433 3340092368 12 ffffffffcd5c0c0000000000 .....\...... +5453 13.669910669 127.0.0.1:57415 127.0.0.1:57433 3340092380 12 1a0000002ea00c0000000000 ............ +5455 13.670066595 127.0.0.1:57415 127.0.0.1:57433 3340092392 26 16000000548f6340e25e314001000300000047c8210000000000 ....T.c@.^1@......G.!..... +5457 13.670401335 127.0.0.1:57433 127.0.0.1:57415 382473387 12 ffffffff2ea00c0000000000 ............ +5459 13.670975447 127.0.0.1:57433 127.0.0.1:57415 382473399 12 16000000ce5c0c0000000000 .....\...... +5461 13.671121836 127.0.0.1:57433 127.0.0.1:57415 382473411 22 1200000047c821000000000001000300000000000000 ....G.!............... +5463 13.671397448 127.0.0.1:57415 127.0.0.1:57433 3340092418 12 ffffffffce5c0c0000000000 .....\...... +5465 13.687980413 127.0.0.1:57415 127.0.0.1:57433 3340092430 12 feffffffe86e0100ce6e0100 .....n...n.. +5479 13.728827238 127.0.0.1:57433 127.0.0.1:57415 382473433 12 feffffffcf6e0100e86e0100 .....n...n.. +5485 13.772762060 127.0.0.1:57415 127.0.0.1:57433 3340092442 12 1a0000002fa00c0000000000 ..../....... +5487 13.772979498 127.0.0.1:57415 127.0.0.1:57433 3340092454 26 16000000548f6340e25e314001000300000049c8210000000000 ....T.c@.^1@......I.!..... +5489 13.773617744 127.0.0.1:57433 127.0.0.1:57415 382473445 12 ffffffff2fa00c0000000000 ..../....... +5491 13.774161339 127.0.0.1:57433 127.0.0.1:57415 382473457 12 16000000cf5c0c0000000000 .....\...... +5493 13.774372816 127.0.0.1:57433 127.0.0.1:57415 382473469 22 1200000049c821000000000001000300000000000000 ....I.!............... +5495 13.774645805 127.0.0.1:57415 127.0.0.1:57433 3340092480 12 ffffffffcf5c0c0000000000 .....\...... +5499 13.875765324 127.0.0.1:57415 127.0.0.1:57433 3340092492 12 1a00000030a00c0000000000 ....0....... +5501 13.875931740 127.0.0.1:57415 127.0.0.1:57433 3340092504 26 16000000548f6340e25e31400100030000004bc8210000000000 ....T.c@.^1@......K.!..... +5503 13.876341343 127.0.0.1:57433 127.0.0.1:57415 382473491 12 ffffffff30a00c0000000000 ....0....... +5505 13.876975775 127.0.0.1:57433 127.0.0.1:57415 382473503 12 16000000d05c0c0000000000 .....\...... +5507 13.877160311 127.0.0.1:57433 127.0.0.1:57415 382473515 22 120000004bc821000000000001000300000000000000 ....K.!............... +5509 13.877368689 127.0.0.1:57415 127.0.0.1:57433 3340092530 12 ffffffffd05c0c0000000000 .....\...... +5511 13.936938047 127.0.0.1:57415 127.0.0.1:57433 3340092542 12 6500000031a00c0000000000 e...1....... +5513 13.937133789 127.0.0.1:57415 127.0.0.1:57433 3340092554 101 1e0000001c2118d0c46f33bb010003000000b059020000000000818979c39d01 .....!...o3........Y........y.....?.....3...|8.. +5515 13.937491179 127.0.0.1:57433 127.0.0.1:57415 382473537 12 ffffffff31a00c0000000000 ....1....... +5517 13.938137054 127.0.0.1:57433 127.0.0.1:57415 382473549 12 34000000d15c0c0000000000 4....\...... +5519 13.938348532 127.0.0.1:57433 127.0.0.1:57415 382473561 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +5521 13.938603640 127.0.0.1:57415 127.0.0.1:57433 3340092655 12 ffffffffd15c0c0000000000 .....\...... +5523 13.939387083 127.0.0.1:57415 127.0.0.1:57433 3340092667 12 1e00000032a00c0000000000 ....2....... +5525 13.939552307 127.0.0.1:57415 127.0.0.1:57433 3340092679 30 1a00000055ceff62b21b3a500100030000004dc821000000000000000000 ....U..b..:P......M.!......... +5527 13.939801693 127.0.0.1:57433 127.0.0.1:57415 382473613 12 ffffffff32a00c0000000000 ....2....... +5529 13.940119743 127.0.0.1:57433 127.0.0.1:57415 382473625 12 1a000000d25c0c0000000000 .....\...... +5531 13.940318108 127.0.0.1:57433 127.0.0.1:57415 382473637 26 160000004dc82100000000000100030000000000000000000000 ....M.!................... +5533 13.940594196 127.0.0.1:57415 127.0.0.1:57433 3340092709 12 ffffffffd25c0c0000000000 .....\...... +5535 13.978767157 127.0.0.1:57415 127.0.0.1:57433 3340092721 12 1a00000033a00c0000000000 ....3....... +5537 13.978935003 127.0.0.1:57415 127.0.0.1:57433 3340092733 26 16000000548f6340e25e31400100030000004fc8210000000000 ....T.c@.^1@......O.!..... +5539 13.979238510 127.0.0.1:57433 127.0.0.1:57415 382473663 12 ffffffff33a00c0000000000 ....3....... +5541 13.979968071 127.0.0.1:57433 127.0.0.1:57415 382473675 12 16000000d35c0c0000000000 .....\...... +5543 13.980315208 127.0.0.1:57433 127.0.0.1:57415 382473687 22 120000004fc821000000000001000300000000000000 ....O.!............... +5545 13.980819464 127.0.0.1:57415 127.0.0.1:57433 3340092759 12 ffffffffd35c0c0000000000 .....\...... +5548 14.083629847 127.0.0.1:57415 127.0.0.1:57433 3340092771 12 1a00000034a00c0000000000 ....4....... +5550 14.083821535 127.0.0.1:57415 127.0.0.1:57433 3340092783 26 16000000548f6340e25e314001000300000051c8210000000000 ....T.c@.^1@......Q.!..... +5552 14.084146023 127.0.0.1:57433 127.0.0.1:57415 382473709 12 ffffffff34a00c0000000000 ....4....... +5554 14.084863901 127.0.0.1:57433 127.0.0.1:57415 382473721 12 16000000d45c0c0000000000 .....\...... +5556 14.085087538 127.0.0.1:57433 127.0.0.1:57415 382473733 22 1200000051c821000000000001000300000000000000 ....Q.!............... +5558 14.085282564 127.0.0.1:57415 127.0.0.1:57433 3340092809 12 ffffffffd45c0c0000000000 .....\...... +5565 14.187767267 127.0.0.1:57415 127.0.0.1:57433 3340092821 12 1a00000035a00c0000000000 ....5....... +5567 14.187950850 127.0.0.1:57415 127.0.0.1:57433 3340092833 26 16000000548f6340e25e314001000300000053c8210000000000 ....T.c@.^1@......S.!..... +5569 14.188233376 127.0.0.1:57433 127.0.0.1:57415 382473755 12 ffffffff35a00c0000000000 ....5....... +5571 14.188611269 127.0.0.1:57415 127.0.0.1:57433 3340092859 12 feffffffe96e0100cf6e0100 .....n...n.. +5573 14.188856840 127.0.0.1:57433 127.0.0.1:57415 382473767 12 16000000d55c0c0000000000 .....\...... +5575 14.189049006 127.0.0.1:57433 127.0.0.1:57415 382473779 22 1200000053c821000000000001000300000000000000 ....S.!............... +5577 14.189498425 127.0.0.1:57415 127.0.0.1:57433 3340092871 12 ffffffffd55c0c0000000000 .....\...... +5592 14.228674650 127.0.0.1:57433 127.0.0.1:57415 382473801 12 feffffffd06e0100e96e0100 .....n...n.. +5594 14.242249966 127.0.0.1:57415 127.0.0.1:57433 3340092883 12 6500000036a00c0000000000 e...6....... +5596 14.242439508 127.0.0.1:57415 127.0.0.1:57433 3340092895 101 1e0000001c2118d0c46f33bb010003000000b159020000000000b28a79c39d01 .....!...o3........Y........y.....?.....3...|8.. +5598 14.242746353 127.0.0.1:57433 127.0.0.1:57415 382473813 12 ffffffff36a00c0000000000 ....6....... +5600 14.243624210 127.0.0.1:57433 127.0.0.1:57415 382473825 12 34000000d65c0c0000000000 4....\...... +5602 14.243807077 127.0.0.1:57433 127.0.0.1:57415 382473837 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........z`M. +5604 14.244105339 127.0.0.1:57415 127.0.0.1:57433 3340092996 12 ffffffffd65c0c0000000000 .....\...... +5606 14.244884014 127.0.0.1:57415 127.0.0.1:57433 3340093008 12 1e00000037a00c0000000000 ....7....... +5608 14.245033503 127.0.0.1:57415 127.0.0.1:57433 3340093020 30 1a00000055ceff62b21b3a5001000300000055c821000000000000000000 ....U..b..:P......U.!......... +5610 14.245286942 127.0.0.1:57433 127.0.0.1:57415 382473889 12 ffffffff37a00c0000000000 ....7....... +5612 14.245802879 127.0.0.1:57433 127.0.0.1:57415 382473901 12 1a000000d75c0c0000000000 .....\...... +5614 14.246424675 127.0.0.1:57433 127.0.0.1:57415 382473913 26 1600000055c82100000000000100030000000000000000000000 ....U.!................... +5616 14.246787548 127.0.0.1:57415 127.0.0.1:57433 3340093050 12 ffffffffd75c0c0000000000 .....\...... +5622 14.292400122 127.0.0.1:57415 127.0.0.1:57433 3340093062 12 1a00000038a00c0000000000 ....8....... +5624 14.292575598 127.0.0.1:57415 127.0.0.1:57433 3340093074 26 16000000548f6340e25e314001000300000057c8210000000000 ....T.c@.^1@......W.!..... +5626 14.292898655 127.0.0.1:57433 127.0.0.1:57415 382473939 12 ffffffff38a00c0000000000 ....8....... +5628 14.293922424 127.0.0.1:57433 127.0.0.1:57415 382473951 12 16000000d85c0c0000000000 .....\...... +5630 14.294072390 127.0.0.1:57433 127.0.0.1:57415 382473963 22 1200000057c821000000000001000300000000000000 ....W.!............... +5632 14.294386625 127.0.0.1:57415 127.0.0.1:57433 3340093100 12 ffffffffd85c0c0000000000 .....\...... +5635 14.396746635 127.0.0.1:57415 127.0.0.1:57433 3340093112 12 1a00000039a00c0000000000 ....9....... +5637 14.397016525 127.0.0.1:57415 127.0.0.1:57433 3340093124 26 16000000548f6340e25e314001000300000059c8210000000000 ....T.c@.^1@......Y.!..... +5639 14.397324800 127.0.0.1:57433 127.0.0.1:57415 382473985 12 ffffffff39a00c0000000000 ....9....... +5641 14.397888660 127.0.0.1:57433 127.0.0.1:57415 382473997 12 16000000d95c0c0000000000 .....\...... +5643 14.398057699 127.0.0.1:57433 127.0.0.1:57415 382474009 22 1200000059c821000000000001000300000000000000 ....Y.!............... +5645 14.398299694 127.0.0.1:57415 127.0.0.1:57433 3340093150 12 ffffffffd95c0c0000000000 .....\...... +5648 14.500198126 127.0.0.1:57415 127.0.0.1:57433 3340093162 12 1a0000003aa00c0000000000 ....:....... +5650 14.500431299 127.0.0.1:57415 127.0.0.1:57433 3340093174 26 16000000548f6340e25e31400100030000005bc8210000000000 ....T.c@.^1@......[.!..... +5652 14.500843525 127.0.0.1:57433 127.0.0.1:57415 382474031 12 ffffffff3aa00c0000000000 ....:....... +5654 14.501317501 127.0.0.1:57433 127.0.0.1:57415 382474043 12 16000000da5c0c0000000000 .....\...... +5656 14.501548767 127.0.0.1:57433 127.0.0.1:57415 382474055 22 120000005bc821000000000001000300000000000000 ....[.!............... +5658 14.501819372 127.0.0.1:57415 127.0.0.1:57433 3340093200 12 ffffffffda5c0c0000000000 .....\...... +5661 14.546313047 127.0.0.1:57415 127.0.0.1:57433 3340093212 12 650000003ba00c0000000000 e...;....... +5663 14.546631813 127.0.0.1:57415 127.0.0.1:57433 3340093224 101 1e0000001c2118d0c46f33bb010003000000b259020000000000e38b79c39d01 .....!...o3........Y........y.....?.....3...|8.. +5665 14.547069073 127.0.0.1:57433 127.0.0.1:57415 382474077 12 ffffffff3ba00c0000000000 ....;....... +5667 14.548556328 127.0.0.1:57433 127.0.0.1:57415 382474089 12 34000000db5c0c0000000000 4....\...... +5669 14.548738003 127.0.0.1:57433 127.0.0.1:57415 382474101 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........{. +5671 14.548989773 127.0.0.1:57415 127.0.0.1:57433 3340093325 12 ffffffffdb5c0c0000000000 .....\...... +5673 14.549835920 127.0.0.1:57415 127.0.0.1:57433 3340093337 12 1e0000003ca00c0000000000 ....<....... +5675 14.550043583 127.0.0.1:57415 127.0.0.1:57433 3340093349 30 1a00000055ceff62b21b3a500100030000005dc821000000000000000000 ....U..b..:P......].!......... +5677 14.550364494 127.0.0.1:57433 127.0.0.1:57415 382474153 12 ffffffff3ca00c0000000000 ....<....... +5679 14.550852060 127.0.0.1:57433 127.0.0.1:57415 382474165 12 1a000000dc5c0c0000000000 .....\...... +5681 14.551016331 127.0.0.1:57433 127.0.0.1:57415 382474177 26 160000005dc82100000000000100030000000000000000000000 ....].!................... +5683 14.551257610 127.0.0.1:57415 127.0.0.1:57433 3340093379 12 ffffffffdc5c0c0000000000 .....\...... +5685 14.603488684 127.0.0.1:57415 127.0.0.1:57433 3340093391 12 1a0000003da00c0000000000 ....=....... +5687 14.603700638 127.0.0.1:57415 127.0.0.1:57433 3340093403 26 16000000548f6340e25e31400100030000005fc8210000000000 ....T.c@.^1@......_.!..... +5689 14.604022026 127.0.0.1:57433 127.0.0.1:57415 382474203 12 ffffffff3da00c0000000000 ....=....... +5691 14.604445696 127.0.0.1:57433 127.0.0.1:57415 382474215 12 16000000dd5c0c0000000000 .....\...... +5693 14.604650021 127.0.0.1:57433 127.0.0.1:57415 382474227 22 120000005fc821000000000001000300000000000000 ...._.!............... +5695 14.605019093 127.0.0.1:57415 127.0.0.1:57433 3340093429 12 ffffffffdd5c0c0000000000 .....\...... +5702 14.690297842 127.0.0.1:57415 127.0.0.1:57433 3340093441 12 feffffffea6e0100d06e0100 .....n...n.. +5704 14.706419706 127.0.0.1:57415 127.0.0.1:57433 3340093453 12 1a0000003ea00c0000000000 ....>....... +5706 14.706594944 127.0.0.1:57415 127.0.0.1:57433 3340093465 26 16000000548f6340e25e314001000300000061c8210000000000 ....T.c@.^1@......a.!..... +5708 14.706978321 127.0.0.1:57433 127.0.0.1:57415 382474249 12 ffffffff3ea00c0000000000 ....>....... +5710 14.707313061 127.0.0.1:57433 127.0.0.1:57415 382474261 12 16000000de5c0c0000000000 .....\...... +5712 14.707426548 127.0.0.1:57433 127.0.0.1:57415 382474273 22 1200000061c821000000000001000300000000000000 ....a.!............... +5714 14.707734346 127.0.0.1:57415 127.0.0.1:57433 3340093491 12 ffffffffde5c0c0000000000 .....\...... +5728 14.729058743 127.0.0.1:57433 127.0.0.1:57415 382474295 12 feffffffd16e0100ea6e0100 .....n...n.. +5737 14.809072018 127.0.0.1:57415 127.0.0.1:57433 3340093503 12 1a0000003fa00c0000000000 ....?....... +5739 14.809261560 127.0.0.1:57415 127.0.0.1:57433 3340093515 26 16000000548f6340e25e314001000300000063c8210000000000 ....T.c@.^1@......c.!..... +5741 14.809534788 127.0.0.1:57433 127.0.0.1:57415 382474307 12 ffffffff3fa00c0000000000 ....?....... +5743 14.810133457 127.0.0.1:57433 127.0.0.1:57415 382474319 12 16000000df5c0c0000000000 .....\...... +5745 14.810313225 127.0.0.1:57433 127.0.0.1:57415 382474331 22 1200000063c821000000000001000300000000000000 ....c.!............... +5747 14.810694218 127.0.0.1:57415 127.0.0.1:57433 3340093541 12 ffffffffdf5c0c0000000000 .....\...... +5749 14.850837231 127.0.0.1:57415 127.0.0.1:57433 3340093553 12 2200000040a00c0000000000 "...@....... +5751 14.851073027 127.0.0.1:57415 127.0.0.1:57433 3340093565 34 1e0000001c2118d0c46f33bb010003000000b359020000000000138d79c39d01 .....!...o3........Y........y..... +5753 14.851216078 127.0.0.1:57415 127.0.0.1:57433 3340093599 12 4300000041a00c0000000000 C...A....... +5755 14.851321697 127.0.0.1:57415 127.0.0.1:57433 3340093611 67 3f000000980433cb0cb47c380100030000000100000000b3590200000000003d ?.....3...|8............Y......=B.....&......... +5756 14.851327658 127.0.0.1:57433 127.0.0.1:57415 382474353 12 ffffffff40a00c0000000000 ....@....... +5759 14.851552010 127.0.0.1:57433 127.0.0.1:57415 382474365 12 ffffffff41a00c0000000000 ....A....... +5761 14.852736473 127.0.0.1:57433 127.0.0.1:57415 382474377 12 34000000e05c0c0000000000 4....\...... +5763 14.852989435 127.0.0.1:57433 127.0.0.1:57415 382474389 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........O.. +5765 14.853288651 127.0.0.1:57415 127.0.0.1:57433 3340093678 12 ffffffffe05c0c0000000000 .....\...... +5767 14.854215384 127.0.0.1:57415 127.0.0.1:57433 3340093690 12 1e00000042a00c0000000000 ....B....... +5769 14.854397774 127.0.0.1:57415 127.0.0.1:57433 3340093702 30 1a00000055ceff62b21b3a5001000300000065c821000000000000000000 ....U..b..:P......e.!......... +5771 14.854726553 127.0.0.1:57433 127.0.0.1:57415 382474441 12 ffffffff42a00c0000000000 ....B....... +5773 14.855206013 127.0.0.1:57433 127.0.0.1:57415 382474453 12 1a000000e15c0c0000000000 .....\...... +5775 14.855366707 127.0.0.1:57433 127.0.0.1:57415 382474465 26 1600000065c82100000000000100030000000000000000000000 ....e.!................... +5777 14.855606079 127.0.0.1:57415 127.0.0.1:57433 3340093732 12 ffffffffe15c0c0000000000 .....\...... +5780 14.912129641 127.0.0.1:57415 127.0.0.1:57433 3340093744 12 1a00000043a00c0000000000 ....C....... +5782 14.912368774 127.0.0.1:57415 127.0.0.1:57433 3340093756 26 16000000548f6340e25e314001000300000067c8210000000000 ....T.c@.^1@......g.!..... +5784 14.912688255 127.0.0.1:57433 127.0.0.1:57415 382474491 12 ffffffff43a00c0000000000 ....C....... +5786 14.913191080 127.0.0.1:57433 127.0.0.1:57415 382474503 12 16000000e25c0c0000000000 .....\...... +5788 14.913446426 127.0.0.1:57433 127.0.0.1:57415 382474515 22 1200000067c821000000000001000300000000000000 ....g.!............... +5790 14.913635015 127.0.0.1:57415 127.0.0.1:57433 3340093782 12 ffffffffe25c0c0000000000 .....\...... +5794 15.015006304 127.0.0.1:57415 127.0.0.1:57433 3340093794 12 1a00000044a00c0000000000 ....D....... +5796 15.015265465 127.0.0.1:57415 127.0.0.1:57433 3340093806 26 16000000548f6340e25e314001000300000069c8210000000000 ....T.c@.^1@......i.!..... +5798 15.015697241 127.0.0.1:57433 127.0.0.1:57415 382474537 12 ffffffff44a00c0000000000 ....D....... +5800 15.016479254 127.0.0.1:57433 127.0.0.1:57415 382474549 12 16000000e35c0c0000000000 .....\...... +5802 15.016657829 127.0.0.1:57433 127.0.0.1:57415 382474561 22 1200000069c821000000000001000300000000000000 ....i.!............... +5804 15.016971827 127.0.0.1:57415 127.0.0.1:57433 3340093832 12 ffffffffe35c0c0000000000 .....\...... +5843 15.118395090 127.0.0.1:57415 127.0.0.1:57433 3340093844 12 1a00000045a00c0000000000 ....E....... +5845 15.118558645 127.0.0.1:57415 127.0.0.1:57433 3340093856 26 16000000548f6340e25e31400100030000006bc8210000000000 ....T.c@.^1@......k.!..... +5847 15.118861914 127.0.0.1:57433 127.0.0.1:57415 382474583 12 ffffffff45a00c0000000000 ....E....... +5849 15.119358063 127.0.0.1:57433 127.0.0.1:57415 382474595 12 16000000e45c0c0000000000 .....\...... +5851 15.119547606 127.0.0.1:57433 127.0.0.1:57415 382474607 22 120000006bc821000000000001000300000000000000 ....k.!............... +5853 15.119888067 127.0.0.1:57415 127.0.0.1:57433 3340093882 12 ffffffffe45c0c0000000000 .....\...... +5855 15.155441761 127.0.0.1:57415 127.0.0.1:57433 3340093894 12 6500000046a00c0000000000 e...F....... +5857 15.155683279 127.0.0.1:57415 127.0.0.1:57433 3340093906 101 1e0000001c2118d0c46f33bb010003000000b459020000000000438e79c39d01 .....!...o3........Y......C.y.....?.....3...|8.. +5859 15.156127214 127.0.0.1:57433 127.0.0.1:57415 382474629 12 ffffffff46a00c0000000000 ....F....... +5861 15.157524824 127.0.0.1:57433 127.0.0.1:57415 382474641 12 34000000e55c0c0000000000 4....\...... +5863 15.157684088 127.0.0.1:57433 127.0.0.1:57415 382474653 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +5865 15.158000708 127.0.0.1:57415 127.0.0.1:57433 3340094007 12 ffffffffe55c0c0000000000 .....\...... +5867 15.158912420 127.0.0.1:57415 127.0.0.1:57433 3340094019 12 1e00000047a00c0000000000 ....G....... +5869 15.159049511 127.0.0.1:57415 127.0.0.1:57433 3340094031 30 1a00000055ceff62b21b3a500100030000006dc821000000000000000000 ....U..b..:P......m.!......... +5871 15.159380436 127.0.0.1:57433 127.0.0.1:57415 382474705 12 ffffffff47a00c0000000000 ....G....... +5873 15.159949064 127.0.0.1:57433 127.0.0.1:57415 382474717 12 1a000000e65c0c0000000000 .....\...... +5875 15.160215616 127.0.0.1:57433 127.0.0.1:57415 382474729 26 160000006dc82100000000000100030000000000000000000000 ....m.!................... +5877 15.160507917 127.0.0.1:57415 127.0.0.1:57433 3340094061 12 ffffffffe65c0c0000000000 .....\...... +5884 15.192459583 127.0.0.1:57415 127.0.0.1:57433 3340094073 12 feffffffeb6e0100d16e0100 .....n...n.. +5887 15.222210646 127.0.0.1:57415 127.0.0.1:57433 3340094085 12 1a00000048a00c0000000000 ....H....... +5889 15.222388029 127.0.0.1:57415 127.0.0.1:57433 3340094097 26 16000000548f6340e25e31400100030000006fc8210000000000 ....T.c@.^1@......o.!..... +5891 15.222687006 127.0.0.1:57433 127.0.0.1:57415 382474755 12 ffffffff48a00c0000000000 ....H....... +5893 15.223299503 127.0.0.1:57433 127.0.0.1:57415 382474767 12 16000000e75c0c0000000000 .....\...... +5895 15.223454714 127.0.0.1:57433 127.0.0.1:57415 382474779 22 120000006fc821000000000001000300000000000000 ....o.!............... +5897 15.223778486 127.0.0.1:57415 127.0.0.1:57433 3340094123 12 ffffffffe75c0c0000000000 .....\...... +5909 15.228662014 127.0.0.1:57433 127.0.0.1:57415 382474801 12 feffffffd26e0100eb6e0100 .....n...n.. +5957 15.325548887 127.0.0.1:57415 127.0.0.1:57433 3340094135 12 1a00000049a00c0000000000 ....I....... +5959 15.325763702 127.0.0.1:57415 127.0.0.1:57433 3340094147 26 16000000548f6340e25e314001000300000071c8210000000000 ....T.c@.^1@......q.!..... +5961 15.326223612 127.0.0.1:57433 127.0.0.1:57415 382474813 12 ffffffff49a00c0000000000 ....I....... +5963 15.326704264 127.0.0.1:57433 127.0.0.1:57415 382474825 12 16000000e85c0c0000000000 .....\...... +5965 15.326880693 127.0.0.1:57433 127.0.0.1:57415 382474837 22 1200000071c821000000000001000300000000000000 ....q.!............... +5967 15.327176571 127.0.0.1:57415 127.0.0.1:57433 3340094173 12 ffffffffe85c0c0000000000 .....\...... +5970 15.428817034 127.0.0.1:57415 127.0.0.1:57433 3340094185 12 1a0000004aa00c0000000000 ....J....... +5972 15.428990126 127.0.0.1:57415 127.0.0.1:57433 3340094197 26 16000000548f6340e25e314001000300000073c8210000000000 ....T.c@.^1@......s.!..... +5974 15.429354191 127.0.0.1:57433 127.0.0.1:57415 382474859 12 ffffffff4aa00c0000000000 ....J....... +5976 15.429824829 127.0.0.1:57433 127.0.0.1:57415 382474871 12 16000000e95c0c0000000000 .....\...... +5978 15.430014849 127.0.0.1:57433 127.0.0.1:57415 382474883 22 1200000073c821000000000001000300000000000000 ....s.!............... +5980 15.430486441 127.0.0.1:57415 127.0.0.1:57433 3340094223 12 ffffffffe95c0c0000000000 .....\...... +5982 15.460099697 127.0.0.1:57415 127.0.0.1:57433 3340094235 12 650000004ba00c0000000000 e...K....... +5984 15.460299969 127.0.0.1:57415 127.0.0.1:57433 3340094247 101 1e0000001c2118d0c46f33bb010003000000b559020000000000748f79c39d01 .....!...o3........Y......t.y.....?.....3...|8.. +5986 15.460528612 127.0.0.1:57433 127.0.0.1:57415 382474905 12 ffffffff4ba00c0000000000 ....K....... +5988 15.461613894 127.0.0.1:57433 127.0.0.1:57415 382474917 12 34000000ea5c0c0000000000 4....\...... +5990 15.461841345 127.0.0.1:57433 127.0.0.1:57415 382474929 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........b7.. +5992 15.462225199 127.0.0.1:57415 127.0.0.1:57433 3340094348 12 ffffffffea5c0c0000000000 .....\...... +5994 15.463422537 127.0.0.1:57415 127.0.0.1:57433 3340094360 12 1e0000004ca00c0000000000 ....L....... +5996 15.463598013 127.0.0.1:57415 127.0.0.1:57433 3340094372 30 1a00000055ceff62b21b3a5001000300000075c821000000000000000000 ....U..b..:P......u.!......... +5998 15.463927984 127.0.0.1:57433 127.0.0.1:57415 382474981 12 ffffffff4ca00c0000000000 ....L....... +6000 15.464520931 127.0.0.1:57433 127.0.0.1:57415 382474993 12 1a000000eb5c0c0000000000 .....\...... +6002 15.464715719 127.0.0.1:57433 127.0.0.1:57415 382475005 26 1600000075c82100000000000100030000000000000000000000 ....u.!................... +6004 15.465006351 127.0.0.1:57415 127.0.0.1:57433 3340094402 12 ffffffffeb5c0c0000000000 .....\...... +6007 15.531955719 127.0.0.1:57415 127.0.0.1:57433 3340094414 12 1a0000004da00c0000000000 ....M....... +6009 15.532293797 127.0.0.1:57415 127.0.0.1:57433 3340094426 26 16000000548f6340e25e314001000300000077c8210000000000 ....T.c@.^1@......w.!..... +6011 15.532646894 127.0.0.1:57433 127.0.0.1:57415 382475031 12 ffffffff4da00c0000000000 ....M....... +6013 15.533110857 127.0.0.1:57433 127.0.0.1:57415 382475043 12 16000000ec5c0c0000000000 .....\...... +6015 15.533287764 127.0.0.1:57433 127.0.0.1:57415 382475055 22 1200000077c821000000000001000300000000000000 ....w.!............... +6017 15.533565998 127.0.0.1:57415 127.0.0.1:57433 3340094452 12 ffffffffec5c0c0000000000 .....\...... +6020 15.634973764 127.0.0.1:57415 127.0.0.1:57433 3340094464 12 1a0000004ea00c0000000000 ....N....... +6022 15.635187864 127.0.0.1:57415 127.0.0.1:57433 3340094476 26 16000000548f6340e25e314001000300000079c8210000000000 ....T.c@.^1@......y.!..... +6024 15.635512114 127.0.0.1:57433 127.0.0.1:57415 382475077 12 ffffffff4ea00c0000000000 ....N....... +6026 15.636002779 127.0.0.1:57433 127.0.0.1:57415 382475089 12 16000000ed5c0c0000000000 .....\...... +6028 15.636241198 127.0.0.1:57433 127.0.0.1:57415 382475101 22 1200000079c821000000000001000300000000000000 ....y.!............... +6030 15.636579990 127.0.0.1:57415 127.0.0.1:57433 3340094502 12 ffffffffed5c0c0000000000 .....\...... +6036 15.693390608 127.0.0.1:57415 127.0.0.1:57433 3340094514 12 feffffffec6e0100d26e0100 .....n...n.. +6050 15.730145693 127.0.0.1:57433 127.0.0.1:57415 382475123 12 feffffffd36e0100ec6e0100 .....n...n.. +6053 15.738578558 127.0.0.1:57415 127.0.0.1:57433 3340094526 12 1a0000004fa00c0000000000 ....O....... +6055 15.738732576 127.0.0.1:57415 127.0.0.1:57433 3340094538 26 16000000548f6340e25e31400100030000007bc8210000000000 ....T.c@.^1@......{.!..... +6057 15.739110947 127.0.0.1:57433 127.0.0.1:57415 382475135 12 ffffffff4fa00c0000000000 ....O....... +6059 15.739526749 127.0.0.1:57433 127.0.0.1:57415 382475147 12 16000000ee5c0c0000000000 .....\...... +6061 15.739674807 127.0.0.1:57433 127.0.0.1:57415 382475159 22 120000007bc821000000000001000300000000000000 ....{.!............... +6063 15.740093708 127.0.0.1:57415 127.0.0.1:57433 3340094564 12 ffffffffee5c0c0000000000 .....\...... +6067 15.764844656 127.0.0.1:57415 127.0.0.1:57433 3340094576 12 6500000050a00c0000000000 e...P....... +6069 15.765043736 127.0.0.1:57415 127.0.0.1:57433 3340094588 101 1e0000001c2118d0c46f33bb010003000000b659020000000000a59079c39d01 .....!...o3........Y........y.....?.....3...|8.. +6071 15.765387535 127.0.0.1:57433 127.0.0.1:57415 382475181 12 ffffffff50a00c0000000000 ....P....... +6073 15.765961170 127.0.0.1:57433 127.0.0.1:57415 382475193 12 34000000ef5c0c0000000000 4....\...... +6075 15.766105890 127.0.0.1:57433 127.0.0.1:57415 382475205 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........5. +6077 15.766374111 127.0.0.1:57415 127.0.0.1:57433 3340094689 12 ffffffffef5c0c0000000000 .....\...... +6079 15.767115593 127.0.0.1:57415 127.0.0.1:57433 3340094701 12 1e00000051a00c0000000000 ....Q....... +6081 15.767246723 127.0.0.1:57415 127.0.0.1:57433 3340094713 30 1a00000055ceff62b21b3a500100030000007dc821000000000000000000 ....U..b..:P......}.!......... +6083 15.767546177 127.0.0.1:57433 127.0.0.1:57415 382475257 12 ffffffff51a00c0000000000 ....Q....... +6085 15.768019915 127.0.0.1:57433 127.0.0.1:57415 382475269 12 1a000000f05c0c0000000000 .....\...... +6087 15.768296003 127.0.0.1:57433 127.0.0.1:57415 382475281 26 160000007dc82100000000000100030000000000000000000000 ....}.!................... +6089 15.768664837 127.0.0.1:57415 127.0.0.1:57433 3340094743 12 fffffffff05c0c0000000000 .....\...... +6094 15.841711044 127.0.0.1:57415 127.0.0.1:57433 3340094755 12 1a00000052a00c0000000000 ....R....... +6096 15.841904640 127.0.0.1:57415 127.0.0.1:57433 3340094767 26 16000000548f6340e25e31400100030000007fc8210000000000 ....T.c@.^1@........!..... +6098 15.842295408 127.0.0.1:57433 127.0.0.1:57415 382475307 12 ffffffff52a00c0000000000 ....R....... +6100 15.843194246 127.0.0.1:57433 127.0.0.1:57415 382475319 12 16000000f15c0c0000000000 .....\...... +6102 15.843400955 127.0.0.1:57433 127.0.0.1:57415 382475331 22 120000007fc821000000000001000300000000000000 ......!............... +6104 15.843710423 127.0.0.1:57415 127.0.0.1:57433 3340094793 12 fffffffff15c0c0000000000 .....\...... +6107 15.945422411 127.0.0.1:57415 127.0.0.1:57433 3340094805 12 1a00000053a00c0000000000 ....S....... +6109 15.945607185 127.0.0.1:57415 127.0.0.1:57433 3340094817 26 16000000548f6340e25e314001000300000081c8210000000000 ....T.c@.^1@........!..... +6111 15.945912123 127.0.0.1:57433 127.0.0.1:57415 382475353 12 ffffffff53a00c0000000000 ....S....... +6113 15.946384192 127.0.0.1:57433 127.0.0.1:57415 382475365 12 16000000f25c0c0000000000 .....\...... +6115 15.946539164 127.0.0.1:57433 127.0.0.1:57415 382475377 22 1200000081c821000000000001000300000000000000 ......!............... +6117 15.946875811 127.0.0.1:57415 127.0.0.1:57433 3340094843 12 fffffffff25c0c0000000000 .....\...... +6120 16.048460960 127.0.0.1:57415 127.0.0.1:57433 3340094855 12 1a00000054a00c0000000000 ....T....... +6122 16.048665285 127.0.0.1:57415 127.0.0.1:57433 3340094867 26 16000000548f6340e25e314001000300000083c8210000000000 ....T.c@.^1@........!..... +6124 16.049083233 127.0.0.1:57433 127.0.0.1:57415 382475399 12 ffffffff54a00c0000000000 ....T....... +6126 16.049526453 127.0.0.1:57433 127.0.0.1:57415 382475411 12 16000000f35c0c0000000000 .....\...... +6128 16.049716473 127.0.0.1:57433 127.0.0.1:57415 382475423 22 1200000083c821000000000001000300000000000000 ......!............... +6130 16.049987793 127.0.0.1:57415 127.0.0.1:57433 3340094893 12 fffffffff35c0c0000000000 .....\...... +6132 16.068718672 127.0.0.1:57415 127.0.0.1:57433 3340094905 12 6500000055a00c0000000000 e...U....... +6134 16.068897009 127.0.0.1:57415 127.0.0.1:57433 3340094917 101 1e0000001c2118d0c46f33bb010003000000b759020000000000d49179c39d01 .....!...o3........Y........y.....?.....3...|8.. +6136 16.069231510 127.0.0.1:57433 127.0.0.1:57415 382475445 12 ffffffff55a00c0000000000 ....U....... +6138 16.070554495 127.0.0.1:57433 127.0.0.1:57415 382475457 12 34000000f45c0c0000000000 4....\...... +6140 16.070704937 127.0.0.1:57433 127.0.0.1:57415 382475469 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........a#d. +6142 16.070979834 127.0.0.1:57415 127.0.0.1:57433 3340095018 12 fffffffff45c0c0000000000 .....\...... +6144 16.072022676 127.0.0.1:57415 127.0.0.1:57433 3340095030 12 1e00000056a00c0000000000 ....V....... +6146 16.072214603 127.0.0.1:57415 127.0.0.1:57433 3340095042 30 1a00000055ceff62b21b3a5001000300000085c821000000000000000000 ....U..b..:P........!......... +6148 16.072622061 127.0.0.1:57433 127.0.0.1:57415 382475521 12 ffffffff56a00c0000000000 ....V....... +6150 16.073059797 127.0.0.1:57433 127.0.0.1:57415 382475533 12 1a000000f55c0c0000000000 .....\...... +6152 16.073251486 127.0.0.1:57433 127.0.0.1:57415 382475545 26 1600000085c82100000000000100030000000000000000000000 ......!................... +6154 16.073615074 127.0.0.1:57415 127.0.0.1:57433 3340095072 12 fffffffff55c0c0000000000 .....\...... +6156 16.152165413 127.0.0.1:57415 127.0.0.1:57433 3340095084 12 1a00000057a00c0000000000 ....W....... +6158 16.152343512 127.0.0.1:57415 127.0.0.1:57433 3340095096 26 16000000548f6340e25e314001000300000087c8210000000000 ....T.c@.^1@........!..... +6160 16.152698755 127.0.0.1:57433 127.0.0.1:57415 382475571 12 ffffffff57a00c0000000000 ....W....... +6162 16.153102636 127.0.0.1:57433 127.0.0.1:57415 382475583 12 16000000f65c0c0000000000 .....\...... +6164 16.153253794 127.0.0.1:57433 127.0.0.1:57415 382475595 22 1200000087c821000000000001000300000000000000 ......!............... +6167 16.153568029 127.0.0.1:57415 127.0.0.1:57433 3340095122 12 fffffffff65c0c0000000000 .....\...... +6173 16.194046259 127.0.0.1:57415 127.0.0.1:57433 3340095134 12 feffffffed6e0100d36e0100 .....n...n.. +6183 16.231905699 127.0.0.1:57433 127.0.0.1:57415 382475617 12 feffffffd46e0100ed6e0100 .....n...n.. +6191 16.255474091 127.0.0.1:57415 127.0.0.1:57433 3340095146 12 1a00000058a00c0000000000 ....X....... +6193 16.255824089 127.0.0.1:57415 127.0.0.1:57433 3340095158 26 16000000548f6340e25e314001000300000089c8210000000000 ....T.c@.^1@........!..... +6195 16.256365299 127.0.0.1:57433 127.0.0.1:57415 382475629 12 ffffffff58a00c0000000000 ....X....... +6197 16.256823301 127.0.0.1:57433 127.0.0.1:57415 382475641 12 16000000f75c0c0000000000 .....\...... +6199 16.257075310 127.0.0.1:57433 127.0.0.1:57415 382475653 22 1200000089c821000000000001000300000000000000 ......!............... +6201 16.257610559 127.0.0.1:57415 127.0.0.1:57433 3340095184 12 fffffffff75c0c0000000000 .....\...... +6205 16.359080315 127.0.0.1:57415 127.0.0.1:57433 3340095196 12 1a00000059a00c0000000000 ....Y....... +6207 16.359273195 127.0.0.1:57415 127.0.0.1:57433 3340095208 26 16000000548f6340e25e31400100030000008bc8210000000000 ....T.c@.^1@........!..... +6209 16.359587908 127.0.0.1:57433 127.0.0.1:57415 382475675 12 ffffffff59a00c0000000000 ....Y....... +6211 16.360075712 127.0.0.1:57433 127.0.0.1:57415 382475687 12 16000000f85c0c0000000000 .....\...... +6213 16.360228777 127.0.0.1:57433 127.0.0.1:57415 382475699 22 120000008bc821000000000001000300000000000000 ......!............... +6215 16.360488176 127.0.0.1:57415 127.0.0.1:57433 3340095234 12 fffffffff85c0c0000000000 .....\...... +6217 16.373883486 127.0.0.1:57415 127.0.0.1:57433 3340095246 12 650000005aa00c0000000000 e...Z....... +6219 16.374112368 127.0.0.1:57415 127.0.0.1:57433 3340095258 101 1e0000001c2118d0c46f33bb010003000000b859020000000000069379c39d01 .....!...o3........Y........y.....?.....3...|8.. +6221 16.374465227 127.0.0.1:57433 127.0.0.1:57415 382475721 12 ffffffff5aa00c0000000000 ....Z....... +6223 16.375387907 127.0.0.1:57433 127.0.0.1:57415 382475733 12 34000000f95c0c0000000000 4....\...... +6225 16.375602722 127.0.0.1:57433 127.0.0.1:57415 382475745 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........Z... +6227 16.375871181 127.0.0.1:57415 127.0.0.1:57433 3340095359 12 fffffffff95c0c0000000000 .....\...... +6234 16.377050400 127.0.0.1:57415 127.0.0.1:57433 3340095371 12 1e0000005ba00c0000000000 ....[....... +6236 16.377209663 127.0.0.1:57415 127.0.0.1:57433 3340095383 30 1a00000055ceff62b21b3a500100030000008dc821000000000000000000 ....U..b..:P........!......... +6238 16.377545595 127.0.0.1:57433 127.0.0.1:57415 382475797 12 ffffffff5ba00c0000000000 ....[....... +6240 16.377885103 127.0.0.1:57433 127.0.0.1:57415 382475809 12 1a000000fa5c0c0000000000 .....\...... +6242 16.378026485 127.0.0.1:57433 127.0.0.1:57415 382475821 26 160000008dc82100000000000100030000000000000000000000 ......!................... +6244 16.378264427 127.0.0.1:57415 127.0.0.1:57433 3340095413 12 fffffffffa5c0c0000000000 .....\...... +6271 16.462948799 127.0.0.1:57415 127.0.0.1:57433 3340095425 12 1a0000005ca00c0000000000 ....\....... +6273 16.463142157 127.0.0.1:57415 127.0.0.1:57433 3340095437 26 16000000548f6340e25e31400100030000008fc8210000000000 ....T.c@.^1@........!..... +6275 16.463465929 127.0.0.1:57433 127.0.0.1:57415 382475847 12 ffffffff5ca00c0000000000 ....\....... +6277 16.463943243 127.0.0.1:57433 127.0.0.1:57415 382475859 12 16000000fb5c0c0000000000 .....\...... +6279 16.464153290 127.0.0.1:57433 127.0.0.1:57415 382475871 22 120000008fc821000000000001000300000000000000 ......!............... +6281 16.464547396 127.0.0.1:57415 127.0.0.1:57433 3340095463 12 fffffffffb5c0c0000000000 .....\...... +6283 16.566051245 127.0.0.1:57415 127.0.0.1:57433 3340095475 12 1a0000005da00c0000000000 ....]....... +6285 16.566224813 127.0.0.1:57415 127.0.0.1:57433 3340095487 26 16000000548f6340e25e314001000300000091c8210000000000 ....T.c@.^1@........!..... +6287 16.566488743 127.0.0.1:57433 127.0.0.1:57415 382475893 12 ffffffff5da00c0000000000 ....]....... +6289 16.566879511 127.0.0.1:57433 127.0.0.1:57415 382475905 12 16000000fc5c0c0000000000 .....\...... +6291 16.567046165 127.0.0.1:57433 127.0.0.1:57415 382475917 22 1200000091c821000000000001000300000000000000 ......!............... +6293 16.567386389 127.0.0.1:57415 127.0.0.1:57433 3340095513 12 fffffffffc5c0c0000000000 .....\...... +6295 16.670074940 127.0.0.1:57415 127.0.0.1:57433 3340095525 12 1a0000005ea00c0000000000 ....^....... +6297 16.670295000 127.0.0.1:57415 127.0.0.1:57433 3340095537 26 16000000548f6340e25e314001000300000093c8210000000000 ....T.c@.^1@........!..... +6299 16.670693874 127.0.0.1:57433 127.0.0.1:57415 382475939 12 ffffffff5ea00c0000000000 ....^....... +6301 16.671083212 127.0.0.1:57433 127.0.0.1:57415 382475951 12 16000000fd5c0c0000000000 .....\...... +6303 16.671239853 127.0.0.1:57433 127.0.0.1:57415 382475963 22 1200000093c821000000000001000300000000000000 ......!............... +6305 16.671620846 127.0.0.1:57415 127.0.0.1:57433 3340095563 12 fffffffffd5c0c0000000000 .....\...... +6311 16.678201914 127.0.0.1:57415 127.0.0.1:57433 3340095575 12 650000005fa00c0000000000 e..._....... +6313 16.678441525 127.0.0.1:57415 127.0.0.1:57433 3340095587 101 1e0000001c2118d0c46f33bb010003000000b959020000000000369479c39d01 .....!...o3........Y......6.y.....?.....3...|8.. +6315 16.678864002 127.0.0.1:57433 127.0.0.1:57415 382475985 12 ffffffff5fa00c0000000000 ...._....... +6317 16.680026531 127.0.0.1:57433 127.0.0.1:57415 382475997 12 34000000fe5c0c0000000000 4....\...... +6319 16.680181503 127.0.0.1:57433 127.0.0.1:57415 382476009 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........@#.. +6321 16.680546761 127.0.0.1:57415 127.0.0.1:57433 3340095688 12 fffffffffe5c0c0000000000 .....\...... +6323 16.681293249 127.0.0.1:57415 127.0.0.1:57433 3340095700 12 1e00000060a00c0000000000 ....`....... +6325 16.681493521 127.0.0.1:57415 127.0.0.1:57433 3340095712 30 1a00000055ceff62b21b3a5001000300000095c821000000000000000000 ....U..b..:P........!......... +6327 16.681797981 127.0.0.1:57433 127.0.0.1:57415 382476061 12 ffffffff60a00c0000000000 ....`....... +6329 16.682127953 127.0.0.1:57433 127.0.0.1:57415 382476073 12 1a000000ff5c0c0000000000 .....\...... +6331 16.682338238 127.0.0.1:57433 127.0.0.1:57415 382476085 26 1600000095c82100000000000100030000000000000000000000 ......!................... +6333 16.682592630 127.0.0.1:57415 127.0.0.1:57433 3340095742 12 ffffffffff5c0c0000000000 .....\...... +6335 16.695775270 127.0.0.1:57415 127.0.0.1:57433 3340095754 12 feffffffee6e0100d46e0100 .....n...n.. +6349 16.732933044 127.0.0.1:57433 127.0.0.1:57415 382476111 12 feffffffd56e0100ee6e0100 .....n...n.. +6353 16.773084641 127.0.0.1:57415 127.0.0.1:57433 3340095766 12 1a00000061a00c0000000000 ....a....... +6355 16.773301601 127.0.0.1:57415 127.0.0.1:57433 3340095778 26 16000000548f6340e25e314001000300000097c8210000000000 ....T.c@.^1@........!..... +6357 16.773671389 127.0.0.1:57433 127.0.0.1:57415 382476123 12 ffffffff61a00c0000000000 ....a....... +6361 16.774237633 127.0.0.1:57433 127.0.0.1:57415 382476135 12 16000000005d0c0000000000 .....]...... +6363 16.774525166 127.0.0.1:57433 127.0.0.1:57415 382476147 22 1200000097c821000000000001000300000000000000 ......!............... +6365 16.774788141 127.0.0.1:57415 127.0.0.1:57433 3340095804 12 ffffffff005d0c0000000000 .....]...... +6367 16.875892639 127.0.0.1:57415 127.0.0.1:57433 3340095816 12 1a00000062a00c0000000000 ....b....... +6369 16.876071215 127.0.0.1:57415 127.0.0.1:57433 3340095828 26 16000000548f6340e25e314001000300000099c8210000000000 ....T.c@.^1@........!..... +6371 16.876405239 127.0.0.1:57433 127.0.0.1:57415 382476169 12 ffffffff62a00c0000000000 ....b....... +6373 16.876689196 127.0.0.1:57433 127.0.0.1:57415 382476181 12 16000000015d0c0000000000 .....]...... +6375 16.876833916 127.0.0.1:57433 127.0.0.1:57415 382476193 22 1200000099c821000000000001000300000000000000 ......!............... +6377 16.877049685 127.0.0.1:57415 127.0.0.1:57433 3340095854 12 ffffffff015d0c0000000000 .....]...... +6419 16.980929375 127.0.0.1:57415 127.0.0.1:57433 3340095866 12 1a00000063a00c0000000000 ....c....... +6421 16.981106043 127.0.0.1:57415 127.0.0.1:57433 3340095878 26 16000000548f6340e25e31400100030000009bc8210000000000 ....T.c@.^1@........!..... +6423 16.981433392 127.0.0.1:57433 127.0.0.1:57415 382476215 12 ffffffff63a00c0000000000 ....c....... +6425 16.981976032 127.0.0.1:57433 127.0.0.1:57415 382476227 12 16000000025d0c0000000000 .....]...... +6427 16.982159853 127.0.0.1:57433 127.0.0.1:57415 382476239 22 120000009bc821000000000001000300000000000000 ......!............... +6429 16.982539892 127.0.0.1:57415 127.0.0.1:57433 3340095904 12 ffffffff025d0c0000000000 .....]...... +6431 16.983153343 127.0.0.1:57415 127.0.0.1:57433 3340095916 12 6500000064a00c0000000000 e...d....... +6433 16.983298779 127.0.0.1:57415 127.0.0.1:57433 3340095928 101 1e0000001c2118d0c46f33bb010003000000ba59020000000000679579c39d01 .....!...o3........Y......g.y.....?.....3...|8.. +6435 16.983588696 127.0.0.1:57433 127.0.0.1:57415 382476261 12 ffffffff64a00c0000000000 ....d....... +6437 16.984231710 127.0.0.1:57433 127.0.0.1:57415 382476273 12 34000000035d0c0000000000 4....]...... +6439 16.984471798 127.0.0.1:57433 127.0.0.1:57415 382476285 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........S... +6441 16.984716415 127.0.0.1:57415 127.0.0.1:57433 3340096029 12 ffffffff035d0c0000000000 .....]...... +6443 16.985500336 127.0.0.1:57415 127.0.0.1:57433 3340096041 12 1e00000065a00c0000000000 ....e....... +6445 16.985649586 127.0.0.1:57415 127.0.0.1:57433 3340096053 30 1a00000055ceff62b21b3a500100030000009dc821000000000000000000 ....U..b..:P........!......... +6447 16.986035347 127.0.0.1:57433 127.0.0.1:57415 382476337 12 ffffffff65a00c0000000000 ....e....... +6449 16.986377954 127.0.0.1:57433 127.0.0.1:57415 382476349 12 1a000000045d0c0000000000 .....]...... +6451 16.986539364 127.0.0.1:57433 127.0.0.1:57415 382476361 26 160000009dc82100000000000100030000000000000000000000 ......!................... +6453 16.986891985 127.0.0.1:57415 127.0.0.1:57433 3340096083 12 ffffffff045d0c0000000000 .....]...... +6494 17.085129499 127.0.0.1:57415 127.0.0.1:57433 3340096095 12 1a00000066a00c0000000000 ....f....... +6496 17.085337877 127.0.0.1:57415 127.0.0.1:57433 3340096107 26 16000000548f6340e25e31400100030000009fc8210000000000 ....T.c@.^1@........!..... +6498 17.085904121 127.0.0.1:57433 127.0.0.1:57415 382476387 12 ffffffff66a00c0000000000 ....f....... +6500 17.086288929 127.0.0.1:57433 127.0.0.1:57415 382476399 12 16000000055d0c0000000000 .....]...... +6502 17.086459160 127.0.0.1:57433 127.0.0.1:57415 382476411 22 120000009fc821000000000001000300000000000000 ......!............... +6504 17.087043524 127.0.0.1:57415 127.0.0.1:57433 3340096133 12 ffffffff055d0c0000000000 .....]...... +6510 17.189358711 127.0.0.1:57415 127.0.0.1:57433 3340096145 12 1a00000067a00c0000000000 ....g....... +6512 17.189527988 127.0.0.1:57415 127.0.0.1:57433 3340096157 26 16000000548f6340e25e3140010003000000a1c8210000000000 ....T.c@.^1@........!..... +6514 17.189830065 127.0.0.1:57433 127.0.0.1:57415 382476433 12 ffffffff67a00c0000000000 ....g....... +6516 17.190300465 127.0.0.1:57433 127.0.0.1:57415 382476445 12 16000000065d0c0000000000 .....]...... +6518 17.190445423 127.0.0.1:57433 127.0.0.1:57415 382476457 22 12000000a1c821000000000001000300000000000000 ......!............... +6520 17.190753460 127.0.0.1:57415 127.0.0.1:57433 3340096183 12 ffffffff065d0c0000000000 .....]...... +6522 17.198152781 127.0.0.1:57415 127.0.0.1:57433 3340096195 12 feffffffef6e0100d56e0100 .....n...n.. +6535 17.233541965 127.0.0.1:57433 127.0.0.1:57415 382476479 12 feffffffd66e0100ef6e0100 .....n...n.. +6542 17.287586927 127.0.0.1:57415 127.0.0.1:57433 3340096207 12 2200000068a00c0000000000 "...h....... +6544 17.287812471 127.0.0.1:57415 127.0.0.1:57433 3340096219 34 1e0000001c2118d0c46f33bb010003000000bb59020000000000989679c39d01 .....!...o3........Y........y..... +6546 17.287933588 127.0.0.1:57415 127.0.0.1:57433 3340096253 12 4300000069a00c0000000000 C...i....... +6548 17.288067341 127.0.0.1:57415 127.0.0.1:57433 3340096265 67 3f000000980433cb0cb47c380100030000000100000000bb590200000000003d ?.....3...|8............Y......=B.....&......... +6549 17.288114786 127.0.0.1:57433 127.0.0.1:57415 382476491 12 ffffffff68a00c0000000000 ....h....... +6550 17.288261890 127.0.0.1:57433 127.0.0.1:57415 382476503 12 ffffffff69a00c0000000000 ....i....... +6553 17.290049314 127.0.0.1:57433 127.0.0.1:57415 382476515 12 34000000075d0c0000000000 4....]...... +6555 17.290282249 127.0.0.1:57433 127.0.0.1:57415 382476527 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........6.. +6557 17.290569544 127.0.0.1:57415 127.0.0.1:57433 3340096332 12 ffffffff075d0c0000000000 .....]...... +6559 17.292129517 127.0.0.1:57415 127.0.0.1:57433 3340096344 12 1e0000006aa00c0000000000 ....j....... +6561 17.292363644 127.0.0.1:57415 127.0.0.1:57433 3340096356 30 1a00000055ceff62b21b3a50010003000000a3c821000000000000000000 ....U..b..:P........!......... +6563 17.292856693 127.0.0.1:57415 127.0.0.1:57433 3340096386 12 1a0000006ba00c0000000000 ....k....... +6564 17.292907715 127.0.0.1:57433 127.0.0.1:57415 382476579 12 ffffffff6aa00c0000000000 ....j....... +6566 17.293067932 127.0.0.1:57415 127.0.0.1:57433 3340096398 26 16000000548f6340e25e3140010003000000a5c8210000000000 ....T.c@.^1@........!..... +6568 17.293241739 127.0.0.1:57433 127.0.0.1:57415 382476591 12 ffffffff6ba00c0000000000 ....k....... +6570 17.293989182 127.0.0.1:57433 127.0.0.1:57415 382476603 12 1a000000085d0c0000000000 .....]...... +6572 17.294172287 127.0.0.1:57433 127.0.0.1:57415 382476615 26 16000000a3c82100000000000100030000000000000000000000 ......!................... +6574 17.294359446 127.0.0.1:57433 127.0.0.1:57415 382476641 12 16000000095d0c0000000000 .....]...... +6576 17.294487000 127.0.0.1:57415 127.0.0.1:57433 3340096424 12 ffffffff085d0c0000000000 .....]...... +6577 17.294604301 127.0.0.1:57433 127.0.0.1:57415 382476653 22 12000000a5c821000000000001000300000000000000 ......!............... +6579 17.295028925 127.0.0.1:57415 127.0.0.1:57433 3340096436 12 ffffffff095d0c0000000000 .....]...... +6581 17.397075653 127.0.0.1:57415 127.0.0.1:57433 3340096448 12 1a0000006ca00c0000000000 ....l....... +6583 17.397420406 127.0.0.1:57415 127.0.0.1:57433 3340096460 26 16000000548f6340e25e3140010003000000a7c8210000000000 ....T.c@.^1@........!..... +6585 17.397674322 127.0.0.1:57433 127.0.0.1:57415 382476675 12 ffffffff6ca00c0000000000 ....l....... +6587 17.398463249 127.0.0.1:57433 127.0.0.1:57415 382476687 12 160000000a5d0c0000000000 .....]...... +6589 17.398657799 127.0.0.1:57433 127.0.0.1:57415 382476699 22 12000000a7c821000000000001000300000000000000 ......!............... +6591 17.398958683 127.0.0.1:57415 127.0.0.1:57433 3340096486 12 ffffffff0a5d0c0000000000 .....]...... +6593 17.500738621 127.0.0.1:57415 127.0.0.1:57433 3340096498 12 1a0000006da00c0000000000 ....m....... +6595 17.500917912 127.0.0.1:57415 127.0.0.1:57433 3340096510 26 16000000548f6340e25e3140010003000000a9c8210000000000 ....T.c@.^1@........!..... +6597 17.501499414 127.0.0.1:57433 127.0.0.1:57415 382476721 12 ffffffff6da00c0000000000 ....m....... +6599 17.501807213 127.0.0.1:57433 127.0.0.1:57415 382476733 12 160000000b5d0c0000000000 .....]...... +6601 17.502030849 127.0.0.1:57433 127.0.0.1:57415 382476745 22 12000000a9c821000000000001000300000000000000 ......!............... +6603 17.502309799 127.0.0.1:57415 127.0.0.1:57433 3340096536 12 ffffffff0b5d0c0000000000 .....]...... +6605 17.594159126 127.0.0.1:57415 127.0.0.1:57433 3340096548 12 650000006ea00c0000000000 e...n....... +6607 17.594384670 127.0.0.1:57415 127.0.0.1:57433 3340096560 101 1e0000001c2118d0c46f33bb010003000000bc59020000000000ca9779c39d01 .....!...o3........Y........y.....?.....3...|8.. +6609 17.594668150 127.0.0.1:57433 127.0.0.1:57415 382476767 12 ffffffff6ea00c0000000000 ....n....... +6611 17.595735788 127.0.0.1:57433 127.0.0.1:57415 382476779 12 340000000c5d0c0000000000 4....]...... +6613 17.595930815 127.0.0.1:57433 127.0.0.1:57415 382476791 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........L. +6615 17.596227884 127.0.0.1:57415 127.0.0.1:57433 3340096661 12 ffffffff0c5d0c0000000000 .....]...... +6617 17.597125530 127.0.0.1:57415 127.0.0.1:57433 3340096673 12 1e0000006fa00c0000000000 ....o....... +6619 17.597319126 127.0.0.1:57415 127.0.0.1:57433 3340096685 30 1a00000055ceff62b21b3a50010003000000abc821000000000000000000 ....U..b..:P........!......... +6621 17.597624540 127.0.0.1:57433 127.0.0.1:57415 382476843 12 ffffffff6fa00c0000000000 ....o....... +6623 17.597965240 127.0.0.1:57433 127.0.0.1:57415 382476855 12 1a0000000d5d0c0000000000 .....]...... +6625 17.598146439 127.0.0.1:57433 127.0.0.1:57415 382476867 26 16000000abc82100000000000100030000000000000000000000 ......!................... +6627 17.598409176 127.0.0.1:57415 127.0.0.1:57433 3340096715 12 ffffffff0d5d0c0000000000 .....]...... +6629 17.603734970 127.0.0.1:57415 127.0.0.1:57433 3340096727 12 1a00000070a00c0000000000 ....p....... +6631 17.603897810 127.0.0.1:57415 127.0.0.1:57433 3340096739 26 16000000548f6340e25e3140010003000000adc8210000000000 ....T.c@.^1@........!..... +6633 17.604251623 127.0.0.1:57433 127.0.0.1:57415 382476893 12 ffffffff70a00c0000000000 ....p....... +6635 17.604640961 127.0.0.1:57433 127.0.0.1:57415 382476905 12 160000000e5d0c0000000000 .....]...... +6637 17.604783297 127.0.0.1:57433 127.0.0.1:57415 382476917 22 12000000adc821000000000001000300000000000000 ......!............... +6639 17.605015755 127.0.0.1:57415 127.0.0.1:57433 3340096765 12 ffffffff0e5d0c0000000000 .....]...... +6645 17.699853182 127.0.0.1:57415 127.0.0.1:57433 3340096777 12 fefffffff06e0100d66e0100 .....n...n.. +6647 17.706100702 127.0.0.1:57415 127.0.0.1:57433 3340096789 12 1a00000071a00c0000000000 ....q....... +6649 17.706264496 127.0.0.1:57415 127.0.0.1:57433 3340096801 26 16000000548f6340e25e3140010003000000afc8210000000000 ....T.c@.^1@........!..... +6651 17.706644773 127.0.0.1:57433 127.0.0.1:57415 382476939 12 ffffffff71a00c0000000000 ....q....... +6653 17.707109690 127.0.0.1:57433 127.0.0.1:57415 382476951 12 160000000f5d0c0000000000 .....]...... +6655 17.707259417 127.0.0.1:57433 127.0.0.1:57415 382476963 22 12000000afc821000000000001000300000000000000 ......!............... +6657 17.707472563 127.0.0.1:57415 127.0.0.1:57433 3340096827 12 ffffffff0f5d0c0000000000 .....]...... +6670 17.734854460 127.0.0.1:57433 127.0.0.1:57415 382476985 12 feffffffd76e0100f06e0100 .....n...n.. +6677 17.810505152 127.0.0.1:57415 127.0.0.1:57433 3340096839 12 1a00000072a00c0000000000 ....r....... +6679 17.810701370 127.0.0.1:57415 127.0.0.1:57433 3340096851 26 16000000548f6340e25e3140010003000000b1c8210000000000 ....T.c@.^1@........!..... +6681 17.811058998 127.0.0.1:57433 127.0.0.1:57415 382476997 12 ffffffff72a00c0000000000 ....r....... +6683 17.811517715 127.0.0.1:57433 127.0.0.1:57415 382477009 12 16000000105d0c0000000000 .....]...... +6685 17.811743975 127.0.0.1:57433 127.0.0.1:57415 382477021 22 12000000b1c821000000000001000300000000000000 ......!............... +6687 17.811985254 127.0.0.1:57415 127.0.0.1:57433 3340096877 12 ffffffff105d0c0000000000 .....]...... +6693 17.898889303 127.0.0.1:57415 127.0.0.1:57433 3340096889 12 6500000073a00c0000000000 e...s....... +6695 17.899113417 127.0.0.1:57415 127.0.0.1:57433 3340096901 101 1e0000001c2118d0c46f33bb010003000000bd59020000000000fb9879c39d01 .....!...o3........Y........y.....?.....3...|8.. +6697 17.899480104 127.0.0.1:57433 127.0.0.1:57415 382477043 12 ffffffff73a00c0000000000 ....s....... +6699 17.900430441 127.0.0.1:57433 127.0.0.1:57415 382477055 12 34000000115d0c0000000000 4....]...... +6701 17.900579453 127.0.0.1:57433 127.0.0.1:57415 382477067 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........]{. +6703 17.900931358 127.0.0.1:57415 127.0.0.1:57433 3340097002 12 ffffffff115d0c0000000000 .....]...... +6705 17.901689768 127.0.0.1:57415 127.0.0.1:57433 3340097014 12 1e00000074a00c0000000000 ....t....... +6707 17.901887655 127.0.0.1:57415 127.0.0.1:57433 3340097026 30 1a00000055ceff62b21b3a50010003000000b3c821000000000000000000 ....U..b..:P........!......... +6709 17.902211428 127.0.0.1:57433 127.0.0.1:57415 382477119 12 ffffffff74a00c0000000000 ....t....... +6711 17.902524471 127.0.0.1:57433 127.0.0.1:57415 382477131 12 1a000000125d0c0000000000 .....]...... +6713 17.902658463 127.0.0.1:57433 127.0.0.1:57415 382477143 26 16000000b3c82100000000000100030000000000000000000000 ......!................... +6715 17.903365374 127.0.0.1:57415 127.0.0.1:57433 3340097056 12 ffffffff125d0c0000000000 .....]...... +6717 17.913833380 127.0.0.1:57415 127.0.0.1:57433 3340097068 12 1a00000075a00c0000000000 ....u....... +6719 17.914056540 127.0.0.1:57415 127.0.0.1:57433 3340097080 26 16000000548f6340e25e3140010003000000b5c8210000000000 ....T.c@.^1@........!..... +6721 17.914439201 127.0.0.1:57433 127.0.0.1:57415 382477169 12 ffffffff75a00c0000000000 ....u....... +6723 17.914945364 127.0.0.1:57433 127.0.0.1:57415 382477181 12 16000000135d0c0000000000 .....]...... +6725 17.915154696 127.0.0.1:57433 127.0.0.1:57415 382477193 22 12000000b5c821000000000001000300000000000000 ......!............... +6727 17.915427923 127.0.0.1:57415 127.0.0.1:57433 3340097106 12 ffffffff135d0c0000000000 .....]...... +6737 18.017648697 127.0.0.1:57415 127.0.0.1:57433 3340097118 12 1a00000076a00c0000000000 ....v....... +6739 18.017836809 127.0.0.1:57415 127.0.0.1:57433 3340097130 26 16000000548f6340e25e3140010003000000b7c8210000000000 ....T.c@.^1@........!..... +6741 18.018258810 127.0.0.1:57433 127.0.0.1:57415 382477215 12 ffffffff76a00c0000000000 ....v....... +6743 18.018777847 127.0.0.1:57433 127.0.0.1:57415 382477227 12 16000000145d0c0000000000 .....]...... +6745 18.018960953 127.0.0.1:57433 127.0.0.1:57415 382477239 22 12000000b7c821000000000001000300000000000000 ......!............... +6747 18.019196272 127.0.0.1:57415 127.0.0.1:57433 3340097156 12 ffffffff145d0c0000000000 .....]...... +6760 18.121962070 127.0.0.1:57415 127.0.0.1:57433 3340097168 12 1a00000077a00c0000000000 ....w....... +6762 18.122224331 127.0.0.1:57415 127.0.0.1:57433 3340097180 26 16000000548f6340e25e3140010003000000b9c8210000000000 ....T.c@.^1@........!..... +6764 18.122577667 127.0.0.1:57433 127.0.0.1:57415 382477261 12 ffffffff77a00c0000000000 ....w....... +6766 18.123372316 127.0.0.1:57433 127.0.0.1:57415 382477273 12 16000000155d0c0000000000 .....]...... +6768 18.123647213 127.0.0.1:57433 127.0.0.1:57415 382477285 22 12000000b9c821000000000001000300000000000000 ......!............... +6770 18.124055862 127.0.0.1:57415 127.0.0.1:57433 3340097206 12 ffffffff155d0c0000000000 .....]...... +6780 18.200981140 127.0.0.1:57415 127.0.0.1:57433 3340097218 12 fefffffff16e0100d76e0100 .....n...n.. +6782 18.204113960 127.0.0.1:57415 127.0.0.1:57433 3340097230 12 2200000078a00c0000000000 "...x....... +6784 18.204288244 127.0.0.1:57415 127.0.0.1:57433 3340097242 34 1e0000001c2118d0c46f33bb010003000000be590200000000002c9a79c39d01 .....!...o3........Y......,.y..... +6786 18.204433203 127.0.0.1:57415 127.0.0.1:57433 3340097276 12 4300000079a00c0000000000 C...y....... +6788 18.204519987 127.0.0.1:57415 127.0.0.1:57433 3340097288 67 3f000000980433cb0cb47c380100030000000100000000be590200000000003d ?.....3...|8............Y......=B.....&......... +6790 18.204701424 127.0.0.1:57433 127.0.0.1:57415 382477307 12 ffffffff78a00c0000000000 ....x....... +6792 18.204924107 127.0.0.1:57433 127.0.0.1:57415 382477319 12 ffffffff79a00c0000000000 ....y....... +6794 18.205559015 127.0.0.1:57433 127.0.0.1:57415 382477331 12 34000000165d0c0000000000 4....]...... +6796 18.205786705 127.0.0.1:57433 127.0.0.1:57415 382477343 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +6798 18.206070185 127.0.0.1:57415 127.0.0.1:57433 3340097355 12 ffffffff165d0c0000000000 .....]...... +6800 18.207331419 127.0.0.1:57415 127.0.0.1:57433 3340097367 12 1e0000007aa00c0000000000 ....z....... +6802 18.207554102 127.0.0.1:57415 127.0.0.1:57433 3340097379 30 1a00000055ceff62b21b3a50010003000000bbc821000000000000000000 ....U..b..:P........!......... +6804 18.207918167 127.0.0.1:57433 127.0.0.1:57415 382477395 12 ffffffff7aa00c0000000000 ....z....... +6806 18.208474159 127.0.0.1:57433 127.0.0.1:57415 382477407 12 1a000000175d0c0000000000 .....]...... +6808 18.208709717 127.0.0.1:57433 127.0.0.1:57415 382477419 26 16000000bbc82100000000000100030000000000000000000000 ......!................... +6810 18.209003448 127.0.0.1:57415 127.0.0.1:57433 3340097409 12 ffffffff175d0c0000000000 .....]...... +6820 18.225404739 127.0.0.1:57415 127.0.0.1:57433 3340097421 12 1a0000007ba00c0000000000 ....{....... +6822 18.225674629 127.0.0.1:57415 127.0.0.1:57433 3340097433 26 16000000548f6340e25e3140010003000000bdc8210000000000 ....T.c@.^1@........!..... +6824 18.226087809 127.0.0.1:57433 127.0.0.1:57415 382477445 12 ffffffff7ba00c0000000000 ....{....... +6826 18.226559639 127.0.0.1:57433 127.0.0.1:57415 382477457 12 16000000185d0c0000000000 .....]...... +6828 18.226768494 127.0.0.1:57433 127.0.0.1:57415 382477469 22 12000000bdc821000000000001000300000000000000 ......!............... +6830 18.227109671 127.0.0.1:57415 127.0.0.1:57433 3340097459 12 ffffffff185d0c0000000000 .....]...... +6843 18.235465288 127.0.0.1:57433 127.0.0.1:57415 382477491 12 feffffffd86e0100f16e0100 .....n...n.. +6852 18.329939365 127.0.0.1:57415 127.0.0.1:57433 3340097471 12 1a0000007ca00c0000000000 ....|....... +6854 18.330146551 127.0.0.1:57415 127.0.0.1:57433 3340097483 26 16000000548f6340e25e3140010003000000bfc8210000000000 ....T.c@.^1@........!..... +6856 18.330523968 127.0.0.1:57433 127.0.0.1:57415 382477503 12 ffffffff7ca00c0000000000 ....|....... +6858 18.331013918 127.0.0.1:57433 127.0.0.1:57415 382477515 12 16000000195d0c0000000000 .....]...... +6860 18.331167221 127.0.0.1:57433 127.0.0.1:57415 382477527 22 12000000bfc821000000000001000300000000000000 ......!............... +6862 18.331645489 127.0.0.1:57415 127.0.0.1:57433 3340097509 12 ffffffff195d0c0000000000 .....]...... +6876 18.433282137 127.0.0.1:57415 127.0.0.1:57433 3340097521 12 1a0000007da00c0000000000 ....}....... +6878 18.433536291 127.0.0.1:57415 127.0.0.1:57433 3340097533 26 16000000548f6340e25e3140010003000000c1c8210000000000 ....T.c@.^1@........!..... +6880 18.433851004 127.0.0.1:57433 127.0.0.1:57415 382477549 12 ffffffff7da00c0000000000 ....}....... +6882 18.434435368 127.0.0.1:57433 127.0.0.1:57415 382477561 12 160000001a5d0c0000000000 .....]...... +6884 18.434667826 127.0.0.1:57433 127.0.0.1:57415 382477573 22 12000000c1c821000000000001000300000000000000 ......!............... +6886 18.435060740 127.0.0.1:57415 127.0.0.1:57433 3340097559 12 ffffffff1a5d0c0000000000 .....]...... +6888 18.508665800 127.0.0.1:57415 127.0.0.1:57433 3340097571 12 650000007ea00c0000000000 e...~....... +6890 18.508856297 127.0.0.1:57415 127.0.0.1:57433 3340097583 101 1e0000001c2118d0c46f33bb010003000000bf590200000000005d9b79c39d01 .....!...o3........Y......].y.....?.....3...|8.. +6892 18.509267569 127.0.0.1:57433 127.0.0.1:57415 382477595 12 ffffffff7ea00c0000000000 ....~....... +6894 18.510419607 127.0.0.1:57433 127.0.0.1:57415 382477607 12 340000001b5d0c0000000000 4....]...... +6896 18.510573387 127.0.0.1:57433 127.0.0.1:57415 382477619 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........n.. +6898 18.510818481 127.0.0.1:57415 127.0.0.1:57433 3340097684 12 ffffffff1b5d0c0000000000 .....]...... +6900 18.511733294 127.0.0.1:57415 127.0.0.1:57433 3340097696 12 1e0000007fa00c0000000000 ............ +6902 18.511920214 127.0.0.1:57415 127.0.0.1:57433 3340097708 30 1a00000055ceff62b21b3a50010003000000c3c821000000000000000000 ....U..b..:P........!......... +6904 18.512560844 127.0.0.1:57433 127.0.0.1:57415 382477671 12 ffffffff7fa00c0000000000 ............ +6906 18.512874126 127.0.0.1:57433 127.0.0.1:57415 382477683 12 1a0000001c5d0c0000000000 .....]...... +6908 18.513012886 127.0.0.1:57433 127.0.0.1:57415 382477695 26 16000000c3c82100000000000100030000000000000000000000 ......!................... +6910 18.513287783 127.0.0.1:57415 127.0.0.1:57433 3340097738 12 ffffffff1c5d0c0000000000 .....]...... +6912 18.537170410 127.0.0.1:57415 127.0.0.1:57433 3340097750 12 1a00000080a00c0000000000 ............ +6914 18.537442923 127.0.0.1:57415 127.0.0.1:57433 3340097762 26 16000000548f6340e25e3140010003000000c5c8210000000000 ....T.c@.^1@........!..... +6916 18.537829399 127.0.0.1:57433 127.0.0.1:57415 382477721 12 ffffffff80a00c0000000000 ............ +6918 18.538290501 127.0.0.1:57433 127.0.0.1:57415 382477733 12 160000001d5d0c0000000000 .....]...... +6920 18.538450003 127.0.0.1:57433 127.0.0.1:57415 382477745 22 12000000c5c821000000000001000300000000000000 ......!............... +6922 18.538791418 127.0.0.1:57415 127.0.0.1:57433 3340097788 12 ffffffff1d5d0c0000000000 .....]...... +6954 18.641311407 127.0.0.1:57415 127.0.0.1:57433 3340097800 12 1a00000081a00c0000000000 ............ +6956 18.641541481 127.0.0.1:57415 127.0.0.1:57433 3340097812 26 16000000548f6340e25e3140010003000000c7c8210000000000 ....T.c@.^1@........!..... +6958 18.641838789 127.0.0.1:57433 127.0.0.1:57415 382477767 12 ffffffff81a00c0000000000 ............ +6960 18.642424345 127.0.0.1:57433 127.0.0.1:57415 382477779 12 160000001e5d0c0000000000 .....]...... +6962 18.642605066 127.0.0.1:57433 127.0.0.1:57415 382477791 22 12000000c7c821000000000001000300000000000000 ......!............... +6964 18.642947197 127.0.0.1:57415 127.0.0.1:57433 3340097838 12 ffffffff1e5d0c0000000000 .....]...... +6970 18.701941490 127.0.0.1:57415 127.0.0.1:57433 3340097850 12 fefffffff26e0100d86e0100 .....n...n.. +6982 18.735894442 127.0.0.1:57433 127.0.0.1:57415 382477813 12 feffffffd96e0100f26e0100 .....n...n.. +6986 18.746568203 127.0.0.1:57415 127.0.0.1:57433 3340097862 12 1a00000082a00c0000000000 ............ +6988 18.746808052 127.0.0.1:57415 127.0.0.1:57433 3340097874 26 16000000548f6340e25e3140010003000000c9c8210000000000 ....T.c@.^1@........!..... +6990 18.747151613 127.0.0.1:57433 127.0.0.1:57415 382477825 12 ffffffff82a00c0000000000 ............ +6992 18.747630596 127.0.0.1:57433 127.0.0.1:57415 382477837 12 160000001f5d0c0000000000 .....]...... +6994 18.747783661 127.0.0.1:57433 127.0.0.1:57415 382477849 22 12000000c9c821000000000001000300000000000000 ......!............... +6996 18.748081923 127.0.0.1:57415 127.0.0.1:57433 3340097900 12 ffffffff1f5d0c0000000000 .....]...... +7004 18.813342810 127.0.0.1:57415 127.0.0.1:57433 3340097912 12 6500000083a00c0000000000 e........... +7006 18.813521385 127.0.0.1:57415 127.0.0.1:57433 3340097924 101 1e0000001c2118d0c46f33bb010003000000c0590200000000008d9c79c39d01 .....!...o3........Y........y.....?.....3...|8.. +7008 18.813805819 127.0.0.1:57433 127.0.0.1:57415 382477871 12 ffffffff83a00c0000000000 ............ +7010 18.814787626 127.0.0.1:57433 127.0.0.1:57415 382477883 12 34000000205d0c0000000000 4... ]...... +7012 18.814938307 127.0.0.1:57433 127.0.0.1:57415 382477895 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +7014 18.815271616 127.0.0.1:57415 127.0.0.1:57433 3340098025 12 ffffffff205d0c0000000000 .... ]...... +7016 18.816011667 127.0.0.1:57415 127.0.0.1:57433 3340098037 12 1e00000084a00c0000000000 ............ +7018 18.816195011 127.0.0.1:57415 127.0.0.1:57433 3340098049 30 1a00000055ceff62b21b3a50010003000000cbc821000000000000000000 ....U..b..:P........!......... +7020 18.816458464 127.0.0.1:57433 127.0.0.1:57415 382477947 12 ffffffff84a00c0000000000 ............ +7022 18.816860199 127.0.0.1:57433 127.0.0.1:57415 382477959 12 1a000000215d0c0000000000 ....!]...... +7024 18.817006350 127.0.0.1:57433 127.0.0.1:57415 382477971 26 16000000cbc82100000000000100030000000000000000000000 ......!................... +7026 18.817286968 127.0.0.1:57415 127.0.0.1:57433 3340098079 12 ffffffff215d0c0000000000 ....!]...... +7028 18.849919558 127.0.0.1:57415 127.0.0.1:57433 3340098091 12 1a00000085a00c0000000000 ............ +7030 18.850128889 127.0.0.1:57415 127.0.0.1:57433 3340098103 26 16000000548f6340e25e3140010003000000cdc8210000000000 ....T.c@.^1@........!..... +7032 18.850512028 127.0.0.1:57433 127.0.0.1:57415 382477997 12 ffffffff85a00c0000000000 ............ +7034 18.850955248 127.0.0.1:57433 127.0.0.1:57415 382478009 12 16000000225d0c0000000000 ...."]...... +7036 18.851539373 127.0.0.1:57433 127.0.0.1:57415 382478021 22 12000000cdc821000000000001000300000000000000 ......!............... +7038 18.851814985 127.0.0.1:57415 127.0.0.1:57433 3340098129 12 ffffffff225d0c0000000000 ...."]...... +7040 18.952922583 127.0.0.1:57415 127.0.0.1:57433 3340098141 12 1a00000086a00c0000000000 ............ +7042 18.953108311 127.0.0.1:57415 127.0.0.1:57433 3340098153 26 16000000548f6340e25e3140010003000000cfc8210000000000 ....T.c@.^1@........!..... +7044 18.953474998 127.0.0.1:57433 127.0.0.1:57415 382478043 12 ffffffff86a00c0000000000 ............ +7046 18.953979969 127.0.0.1:57433 127.0.0.1:57415 382478055 12 16000000235d0c0000000000 ....#]...... +7048 18.954137564 127.0.0.1:57433 127.0.0.1:57415 382478067 22 12000000cfc821000000000001000300000000000000 ......!............... +7050 18.954431057 127.0.0.1:57415 127.0.0.1:57433 3340098179 12 ffffffff235d0c0000000000 ....#]...... +7052 19.055480003 127.0.0.1:57415 127.0.0.1:57433 3340098191 12 1a00000087a00c0000000000 ............ +7054 19.056062222 127.0.0.1:57415 127.0.0.1:57433 3340098203 26 16000000548f6340e25e3140010003000000d1c8210000000000 ....T.c@.^1@........!..... +7056 19.056478500 127.0.0.1:57433 127.0.0.1:57415 382478089 12 ffffffff87a00c0000000000 ............ +7058 19.057162285 127.0.0.1:57433 127.0.0.1:57415 382478101 12 16000000245d0c0000000000 ....$]...... +7060 19.057299376 127.0.0.1:57433 127.0.0.1:57415 382478113 22 12000000d1c821000000000001000300000000000000 ......!............... +7062 19.057691813 127.0.0.1:57415 127.0.0.1:57433 3340098229 12 ffffffff245d0c0000000000 ....$]...... +7064 19.117641449 127.0.0.1:57415 127.0.0.1:57433 3340098241 12 6500000088a00c0000000000 e........... +7066 19.117815495 127.0.0.1:57415 127.0.0.1:57433 3340098253 101 1e0000001c2118d0c46f33bb010003000000c159020000000000bd9d79c39d01 .....!...o3........Y........y.....?.....3...|8.. +7068 19.118069649 127.0.0.1:57433 127.0.0.1:57415 382478135 12 ffffffff88a00c0000000000 ............ +7070 19.119147539 127.0.0.1:57433 127.0.0.1:57415 382478147 12 34000000255d0c0000000000 4...%]...... +7072 19.119320393 127.0.0.1:57433 127.0.0.1:57415 382478159 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........Q5. +7074 19.119663954 127.0.0.1:57415 127.0.0.1:57433 3340098354 12 ffffffff255d0c0000000000 ....%]...... +7076 19.120572090 127.0.0.1:57415 127.0.0.1:57433 3340098366 12 1e00000089a00c0000000000 ............ +7078 19.121216059 127.0.0.1:57415 127.0.0.1:57433 3340098378 30 1a00000055ceff62b21b3a50010003000000d3c821000000000000000000 ....U..b..:P........!......... +7080 19.121478319 127.0.0.1:57433 127.0.0.1:57415 382478211 12 ffffffff89a00c0000000000 ............ +7082 19.121880531 127.0.0.1:57433 127.0.0.1:57415 382478223 12 1a000000265d0c0000000000 ....&]...... +7084 19.122112513 127.0.0.1:57433 127.0.0.1:57415 382478235 26 16000000d3c82100000000000100030000000000000000000000 ......!................... +7086 19.122407913 127.0.0.1:57415 127.0.0.1:57433 3340098408 12 ffffffff265d0c0000000000 ....&]...... +7088 19.159471273 127.0.0.1:57415 127.0.0.1:57433 3340098420 12 1a0000008aa00c0000000000 ............ +7090 19.159736872 127.0.0.1:57415 127.0.0.1:57433 3340098432 26 16000000548f6340e25e3140010003000000d5c8210000000000 ....T.c@.^1@........!..... +7092 19.160099506 127.0.0.1:57433 127.0.0.1:57415 382478261 12 ffffffff8aa00c0000000000 ............ +7094 19.160745859 127.0.0.1:57433 127.0.0.1:57415 382478273 12 16000000275d0c0000000000 ....']...... +7096 19.160903454 127.0.0.1:57433 127.0.0.1:57415 382478285 22 12000000d5c821000000000001000300000000000000 ......!............... +7098 19.161156178 127.0.0.1:57415 127.0.0.1:57433 3340098458 12 ffffffff275d0c0000000000 ....']...... +7104 19.203718185 127.0.0.1:57415 127.0.0.1:57433 3340098470 12 fefffffff36e0100d96e0100 .....n...n.. +7116 19.236341715 127.0.0.1:57433 127.0.0.1:57415 382478307 12 feffffffda6e0100f36e0100 .....n...n.. +7122 19.262644291 127.0.0.1:57415 127.0.0.1:57433 3340098482 12 1a0000008ba00c0000000000 ............ +7124 19.262803078 127.0.0.1:57415 127.0.0.1:57433 3340098494 26 16000000548f6340e25e3140010003000000d7c8210000000000 ....T.c@.^1@........!..... +7126 19.263228893 127.0.0.1:57433 127.0.0.1:57415 382478319 12 ffffffff8ba00c0000000000 ............ +7128 19.263865471 127.0.0.1:57433 127.0.0.1:57415 382478331 12 16000000285d0c0000000000 ....(]...... +7130 19.264011145 127.0.0.1:57433 127.0.0.1:57415 382478343 22 12000000d7c821000000000001000300000000000000 ......!............... +7132 19.264324427 127.0.0.1:57415 127.0.0.1:57433 3340098520 12 ffffffff285d0c0000000000 ....(]...... +7136 19.367253304 127.0.0.1:57415 127.0.0.1:57433 3340098532 12 1a0000008ca00c0000000000 ............ +7138 19.367454767 127.0.0.1:57415 127.0.0.1:57433 3340098544 26 16000000548f6340e25e3140010003000000d9c8210000000000 ....T.c@.^1@........!..... +7140 19.367752075 127.0.0.1:57433 127.0.0.1:57415 382478365 12 ffffffff8ca00c0000000000 ............ +7142 19.368339062 127.0.0.1:57433 127.0.0.1:57415 382478377 12 16000000295d0c0000000000 ....)]...... +7144 19.368599176 127.0.0.1:57433 127.0.0.1:57415 382478389 22 12000000d9c821000000000001000300000000000000 ......!............... +7146 19.368847847 127.0.0.1:57415 127.0.0.1:57433 3340098570 12 ffffffff295d0c0000000000 ....)]...... +7150 19.421863317 127.0.0.1:57415 127.0.0.1:57433 3340098582 12 650000008da00c0000000000 e........... +7152 19.422162533 127.0.0.1:57415 127.0.0.1:57433 3340098594 101 1e0000001c2118d0c46f33bb010003000000c259020000000000ee9e79c39d01 .....!...o3........Y........y.....?.....3...|8.. +7154 19.422686338 127.0.0.1:57433 127.0.0.1:57415 382478411 12 ffffffff8da00c0000000000 ............ +7156 19.423467636 127.0.0.1:57433 127.0.0.1:57415 382478423 12 340000002a5d0c0000000000 4...*]...... +7158 19.423638821 127.0.0.1:57433 127.0.0.1:57415 382478435 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........c. +7160 19.423950911 127.0.0.1:57415 127.0.0.1:57433 3340098695 12 ffffffff2a5d0c0000000000 ....*]...... +7162 19.425196648 127.0.0.1:57415 127.0.0.1:57433 3340098707 12 1e0000008ea00c0000000000 ............ +7164 19.425401211 127.0.0.1:57415 127.0.0.1:57433 3340098719 30 1a00000055ceff62b21b3a50010003000000dbc821000000000000000000 ....U..b..:P........!......... +7166 19.425655842 127.0.0.1:57433 127.0.0.1:57415 382478487 12 ffffffff8ea00c0000000000 ............ +7168 19.426202774 127.0.0.1:57433 127.0.0.1:57415 382478499 12 1a0000002b5d0c0000000000 ....+]...... +7170 19.426349401 127.0.0.1:57433 127.0.0.1:57415 382478511 26 16000000dbc82100000000000100030000000000000000000000 ......!................... +7172 19.426520348 127.0.0.1:57415 127.0.0.1:57433 3340098749 12 ffffffff2b5d0c0000000000 ....+]...... +7187 19.471533537 127.0.0.1:57415 127.0.0.1:57433 3340098761 12 1a0000008fa00c0000000000 ............ +7189 19.471869230 127.0.0.1:57415 127.0.0.1:57433 3340098773 26 16000000548f6340e25e3140010003000000ddc8210000000000 ....T.c@.^1@........!..... +7191 19.472204447 127.0.0.1:57433 127.0.0.1:57415 382478537 12 ffffffff8fa00c0000000000 ............ +7193 19.472958326 127.0.0.1:57433 127.0.0.1:57415 382478549 12 160000002c5d0c0000000000 ....,]...... +7195 19.473144293 127.0.0.1:57433 127.0.0.1:57415 382478561 22 12000000ddc821000000000001000300000000000000 ......!............... +7197 19.473347902 127.0.0.1:57415 127.0.0.1:57433 3340098799 12 ffffffff2c5d0c0000000000 ....,]...... +7200 19.575294733 127.0.0.1:57415 127.0.0.1:57433 3340098811 12 1a00000090a00c0000000000 ............ +7202 19.575529099 127.0.0.1:57415 127.0.0.1:57433 3340098823 26 16000000548f6340e25e3140010003000000dfc8210000000000 ....T.c@.^1@........!..... +7204 19.575840235 127.0.0.1:57433 127.0.0.1:57415 382478583 12 ffffffff90a00c0000000000 ............ +7206 19.576331615 127.0.0.1:57433 127.0.0.1:57415 382478595 12 160000002d5d0c0000000000 ....-]...... +7208 19.576515198 127.0.0.1:57433 127.0.0.1:57415 382478607 22 12000000dfc821000000000001000300000000000000 ......!............... +7210 19.576850176 127.0.0.1:57415 127.0.0.1:57433 3340098849 12 ffffffff2d5d0c0000000000 ....-]...... +7243 19.679116488 127.0.0.1:57415 127.0.0.1:57433 3340098861 12 1a00000091a00c0000000000 ............ +7245 19.679274797 127.0.0.1:57415 127.0.0.1:57433 3340098873 26 16000000548f6340e25e3140010003000000e1c8210000000000 ....T.c@.^1@........!..... +7247 19.679884672 127.0.0.1:57433 127.0.0.1:57415 382478629 12 ffffffff91a00c0000000000 ............ +7251 19.680235624 127.0.0.1:57433 127.0.0.1:57415 382478641 12 160000002e5d0c0000000000 .....]...... +7253 19.680422306 127.0.0.1:57433 127.0.0.1:57415 382478653 22 12000000e1c821000000000001000300000000000000 ......!............... +7255 19.680838823 127.0.0.1:57415 127.0.0.1:57433 3340098899 12 ffffffff2e5d0c0000000000 .....]...... +7261 19.705002785 127.0.0.1:57415 127.0.0.1:57433 3340098911 12 fefffffff46e0100da6e0100 .....n...n.. +7265 19.726444006 127.0.0.1:57415 127.0.0.1:57433 3340098923 12 6500000092a00c0000000000 e........... +7267 19.726659775 127.0.0.1:57415 127.0.0.1:57433 3340098935 101 1e0000001c2118d0c46f33bb010003000000c3590200000000001ea079c39d01 .....!...o3........Y........y.....?.....3...|8.. +7269 19.727011204 127.0.0.1:57433 127.0.0.1:57415 382478675 12 ffffffff92a00c0000000000 ............ +7271 19.728033543 127.0.0.1:57433 127.0.0.1:57415 382478687 12 340000002f5d0c0000000000 4.../]...... +7273 19.728182554 127.0.0.1:57433 127.0.0.1:57415 382478699 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y.........:.. +7275 19.728467703 127.0.0.1:57415 127.0.0.1:57433 3340099036 12 ffffffff2f5d0c0000000000 ..../]...... +7278 19.729167938 127.0.0.1:57415 127.0.0.1:57433 3340099048 12 1e00000093a00c0000000000 ............ +7280 19.729312658 127.0.0.1:57415 127.0.0.1:57433 3340099060 30 1a00000055ceff62b21b3a50010003000000e3c821000000000000000000 ....U..b..:P........!......... +7282 19.729634285 127.0.0.1:57433 127.0.0.1:57415 382478751 12 ffffffff93a00c0000000000 ............ +7284 19.730022192 127.0.0.1:57433 127.0.0.1:57415 382478763 12 1a000000305d0c0000000000 ....0]...... +7287 19.730235100 127.0.0.1:57433 127.0.0.1:57415 382478775 26 16000000e3c82100000000000100030000000000000000000000 ......!................... +7292 19.730482817 127.0.0.1:57415 127.0.0.1:57433 3340099090 12 ffffffff305d0c0000000000 ....0]...... +7302 19.737345219 127.0.0.1:57433 127.0.0.1:57415 382478801 12 feffffffdb6e0100f46e0100 .....n...n.. +7308 19.782042503 127.0.0.1:57415 127.0.0.1:57433 3340099102 12 1a00000094a00c0000000000 ............ +7310 19.782249928 127.0.0.1:57415 127.0.0.1:57433 3340099114 26 16000000548f6340e25e3140010003000000e5c8210000000000 ....T.c@.^1@........!..... +7312 19.782666445 127.0.0.1:57433 127.0.0.1:57415 382478813 12 ffffffff94a00c0000000000 ............ +7314 19.783261299 127.0.0.1:57433 127.0.0.1:57415 382478825 12 16000000315d0c0000000000 ....1]...... +7316 19.783474445 127.0.0.1:57433 127.0.0.1:57415 382478837 22 12000000e5c821000000000001000300000000000000 ......!............... +7318 19.783680677 127.0.0.1:57415 127.0.0.1:57433 3340099140 12 ffffffff315d0c0000000000 ....1]...... +7321 19.886106253 127.0.0.1:57415 127.0.0.1:57433 3340099152 12 1a00000095a00c0000000000 ............ +7323 19.886475563 127.0.0.1:57415 127.0.0.1:57433 3340099164 26 16000000548f6340e25e3140010003000000e7c8210000000000 ....T.c@.^1@........!..... +7325 19.886854410 127.0.0.1:57433 127.0.0.1:57415 382478859 12 ffffffff95a00c0000000000 ............ +7327 19.887537003 127.0.0.1:57433 127.0.0.1:57415 382478871 12 16000000325d0c0000000000 ....2]...... +7329 19.887691021 127.0.0.1:57433 127.0.0.1:57415 382478883 22 12000000e7c821000000000001000300000000000000 ......!............... +7331 19.887944937 127.0.0.1:57415 127.0.0.1:57433 3340099190 12 ffffffff325d0c0000000000 ....2]...... +7334 19.991001368 127.0.0.1:57415 127.0.0.1:57433 3340099202 12 1a00000096a00c0000000000 ............ +7336 19.991233826 127.0.0.1:57415 127.0.0.1:57433 3340099214 26 16000000548f6340e25e3140010003000000e9c8210000000000 ....T.c@.^1@........!..... +7338 19.991552830 127.0.0.1:57433 127.0.0.1:57415 382478905 12 ffffffff96a00c0000000000 ............ +7340 19.992165565 127.0.0.1:57433 127.0.0.1:57415 382478917 12 16000000335d0c0000000000 ....3]...... +7342 19.992405415 127.0.0.1:57433 127.0.0.1:57415 382478929 22 12000000e9c821000000000001000300000000000000 ......!............... +7344 19.992736578 127.0.0.1:57415 127.0.0.1:57433 3340099240 12 ffffffff335d0c0000000000 ....3]...... +7346 20.030283213 127.0.0.1:57415 127.0.0.1:57433 3340099252 12 6500000097a00c0000000000 e........... +7348 20.030468702 127.0.0.1:57415 127.0.0.1:57433 3340099264 101 1e0000001c2118d0c46f33bb010003000000c4590200000000004ea179c39d01 .....!...o3........Y......N.y.....?.....3...|8.. +7350 20.030769825 127.0.0.1:57433 127.0.0.1:57415 382478951 12 ffffffff97a00c0000000000 ............ +7352 20.031949759 127.0.0.1:57433 127.0.0.1:57415 382478963 12 34000000345d0c0000000000 4...4]...... +7354 20.032137871 127.0.0.1:57433 127.0.0.1:57415 382478975 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +7356 20.032369614 127.0.0.1:57415 127.0.0.1:57433 3340099365 12 ffffffff345d0c0000000000 ....4]...... +7358 20.033309221 127.0.0.1:57415 127.0.0.1:57433 3340099377 12 1e00000098a00c0000000000 ............ +7360 20.033460140 127.0.0.1:57415 127.0.0.1:57433 3340099389 30 1a00000055ceff62b21b3a50010003000000ebc821000000000000000000 ....U..b..:P........!......... +7362 20.033728600 127.0.0.1:57433 127.0.0.1:57415 382479027 12 ffffffff98a00c0000000000 ............ +7364 20.034091473 127.0.0.1:57433 127.0.0.1:57415 382479039 12 1a000000355d0c0000000000 ....5]...... +7366 20.034478903 127.0.0.1:57433 127.0.0.1:57415 382479051 26 16000000ebc82100000000000100030000000000000000000000 ......!................... +7368 20.034706116 127.0.0.1:57415 127.0.0.1:57433 3340099419 12 ffffffff355d0c0000000000 ....5]...... +7371 20.094255924 127.0.0.1:57415 127.0.0.1:57433 3340099431 12 1a00000099a00c0000000000 ............ +7373 20.094440937 127.0.0.1:57415 127.0.0.1:57433 3340099443 26 16000000548f6340e25e3140010003000000edc8210000000000 ....T.c@.^1@........!..... +7375 20.094779968 127.0.0.1:57433 127.0.0.1:57415 382479077 12 ffffffff99a00c0000000000 ............ +7377 20.095205069 127.0.0.1:57433 127.0.0.1:57415 382479089 12 16000000365d0c0000000000 ....6]...... +7379 20.095357895 127.0.0.1:57433 127.0.0.1:57415 382479101 22 12000000edc821000000000001000300000000000000 ......!............... +7381 20.095694304 127.0.0.1:57415 127.0.0.1:57433 3340099469 12 ffffffff365d0c0000000000 ....6]...... +7412 20.197343111 127.0.0.1:57415 127.0.0.1:57433 3340099481 12 1a0000009aa00c0000000000 ............ +7414 20.197551727 127.0.0.1:57415 127.0.0.1:57433 3340099493 26 16000000548f6340e25e3140010003000000efc8210000000000 ....T.c@.^1@........!..... +7416 20.197832584 127.0.0.1:57433 127.0.0.1:57415 382479123 12 ffffffff9aa00c0000000000 ............ +7418 20.198474884 127.0.0.1:57433 127.0.0.1:57415 382479135 12 16000000375d0c0000000000 ....7]...... +7420 20.198643923 127.0.0.1:57433 127.0.0.1:57415 382479147 22 12000000efc821000000000001000300000000000000 ......!............... +7422 20.198839426 127.0.0.1:57415 127.0.0.1:57433 3340099519 12 ffffffff375d0c0000000000 ....7]...... +7424 20.206936598 127.0.0.1:57415 127.0.0.1:57433 3340099531 12 fefffffff56e0100db6e0100 .....n...n.. +7438 20.238461018 127.0.0.1:57433 127.0.0.1:57415 382479169 12 feffffffdc6e0100f56e0100 .....n...n.. +7445 20.299858570 127.0.0.1:57415 127.0.0.1:57433 3340099543 12 1a0000009ba00c0000000000 ............ +7447 20.300038099 127.0.0.1:57415 127.0.0.1:57433 3340099555 26 16000000548f6340e25e3140010003000000f1c8210000000000 ....T.c@.^1@........!..... +7449 20.300443411 127.0.0.1:57433 127.0.0.1:57415 382479181 12 ffffffff9ba00c0000000000 ............ +7451 20.300773859 127.0.0.1:57433 127.0.0.1:57415 382479193 12 16000000385d0c0000000000 ....8]...... +7453 20.300929070 127.0.0.1:57433 127.0.0.1:57415 382479205 22 12000000f1c821000000000001000300000000000000 ......!............... +7455 20.301176071 127.0.0.1:57415 127.0.0.1:57433 3340099581 12 ffffffff385d0c0000000000 ....8]...... +7457 20.334336281 127.0.0.1:57415 127.0.0.1:57433 3340099593 12 650000009ca00c0000000000 e........... +7459 20.334529400 127.0.0.1:57415 127.0.0.1:57433 3340099605 101 1e0000001c2118d0c46f33bb010003000000c5590200000000007ea279c39d01 .....!...o3........Y......~.y.....?.....3...|8.. +7461 20.335070133 127.0.0.1:57433 127.0.0.1:57415 382479227 12 ffffffff9ca00c0000000000 ............ +7463 20.336106777 127.0.0.1:57433 127.0.0.1:57415 382479239 12 34000000395d0c0000000000 4...9]...... +7465 20.336266756 127.0.0.1:57433 127.0.0.1:57415 382479251 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +7467 20.336618900 127.0.0.1:57415 127.0.0.1:57433 3340099706 12 ffffffff395d0c0000000000 ....9]...... +7469 20.337368965 127.0.0.1:57415 127.0.0.1:57433 3340099718 12 1e0000009da00c0000000000 ............ +7471 20.337567568 127.0.0.1:57415 127.0.0.1:57433 3340099730 30 1a00000055ceff62b21b3a50010003000000f3c821000000000000000000 ....U..b..:P........!......... +7473 20.337894917 127.0.0.1:57433 127.0.0.1:57415 382479303 12 ffffffff9da00c0000000000 ............ +7475 20.338335514 127.0.0.1:57433 127.0.0.1:57415 382479315 12 1a0000003a5d0c0000000000 ....:]...... +7477 20.338493586 127.0.0.1:57433 127.0.0.1:57415 382479327 26 16000000f3c82100000000000100030000000000000000000000 ......!................... +7479 20.338776112 127.0.0.1:57415 127.0.0.1:57433 3340099760 12 ffffffff3a5d0c0000000000 ....:]...... +7527 20.403663635 127.0.0.1:57415 127.0.0.1:57433 3340099772 12 1a0000009ea00c0000000000 ............ +7530 20.403869390 127.0.0.1:57415 127.0.0.1:57433 3340099784 26 16000000548f6340e25e3140010003000000f5c8210000000000 ....T.c@.^1@........!..... +7532 20.404323339 127.0.0.1:57433 127.0.0.1:57415 382479353 12 ffffffff9ea00c0000000000 ............ +7536 20.405278683 127.0.0.1:57433 127.0.0.1:57415 382479365 12 160000003b5d0c0000000000 ....;]...... +7538 20.405554056 127.0.0.1:57433 127.0.0.1:57415 382479377 22 12000000f5c821000000000001000300000000000000 ......!............... +7542 20.405861378 127.0.0.1:57415 127.0.0.1:57433 3340099810 12 ffffffff3b5d0c0000000000 ....;]...... +7555 20.509102106 127.0.0.1:57415 127.0.0.1:57433 3340099822 12 1a0000009fa00c0000000000 ............ +7557 20.509272337 127.0.0.1:57415 127.0.0.1:57433 3340099834 26 16000000548f6340e25e3140010003000000f7c8210000000000 ....T.c@.^1@........!..... +7559 20.509641409 127.0.0.1:57433 127.0.0.1:57415 382479399 12 ffffffff9fa00c0000000000 ............ +7561 20.510036945 127.0.0.1:57433 127.0.0.1:57415 382479411 12 160000003c5d0c0000000000 ....<]...... +7563 20.510190725 127.0.0.1:57433 127.0.0.1:57415 382479423 22 12000000f7c821000000000001000300000000000000 ......!............... +7565 20.510414600 127.0.0.1:57415 127.0.0.1:57433 3340099860 12 ffffffff3c5d0c0000000000 ....<]...... +7568 20.613198042 127.0.0.1:57415 127.0.0.1:57433 3340099872 12 1a000000a0a00c0000000000 ............ +7570 20.613381624 127.0.0.1:57415 127.0.0.1:57433 3340099884 26 16000000548f6340e25e3140010003000000f9c8210000000000 ....T.c@.^1@........!..... +7572 20.613783121 127.0.0.1:57433 127.0.0.1:57415 382479445 12 ffffffffa0a00c0000000000 ............ +7574 20.614223957 127.0.0.1:57433 127.0.0.1:57415 382479457 12 160000003d5d0c0000000000 ....=]...... +7576 20.614379406 127.0.0.1:57433 127.0.0.1:57415 382479469 22 12000000f9c821000000000001000300000000000000 ......!............... +7578 20.614796638 127.0.0.1:57415 127.0.0.1:57433 3340099910 12 ffffffff3d5d0c0000000000 ....=]...... +7580 20.639654398 127.0.0.1:57415 127.0.0.1:57433 3340099922 12 65000000a1a00c0000000000 e........... +7582 20.639831543 127.0.0.1:57415 127.0.0.1:57433 3340099934 101 1e0000001c2118d0c46f33bb010003000000c659020000000000afa379c39d01 .....!...o3........Y........y.....?.....3...|8.. +7584 20.640098572 127.0.0.1:57433 127.0.0.1:57415 382479491 12 ffffffffa1a00c0000000000 ............ +7586 20.641141891 127.0.0.1:57433 127.0.0.1:57415 382479503 12 340000003e5d0c0000000000 4...>]...... +7588 20.641301155 127.0.0.1:57433 127.0.0.1:57415 382479515 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y............ +7590 20.641626120 127.0.0.1:57415 127.0.0.1:57433 3340100035 12 ffffffff3e5d0c0000000000 ....>]...... +7592 20.642763376 127.0.0.1:57415 127.0.0.1:57433 3340100047 12 1e000000a2a00c0000000000 ............ +7594 20.642928839 127.0.0.1:57415 127.0.0.1:57433 3340100059 30 1a00000055ceff62b21b3a50010003000000fbc821000000000000000000 ....U..b..:P........!......... +7596 20.643251181 127.0.0.1:57433 127.0.0.1:57415 382479567 12 ffffffffa2a00c0000000000 ............ +7598 20.643557549 127.0.0.1:57433 127.0.0.1:57415 382479579 12 1a0000003f5d0c0000000000 ....?]...... +7600 20.643685102 127.0.0.1:57433 127.0.0.1:57415 382479591 26 16000000fbc82100000000000100030000000000000000000000 ......!................... +7602 20.643959999 127.0.0.1:57415 127.0.0.1:57433 3340100089 12 ffffffff3f5d0c0000000000 ....?]...... +7608 20.707473516 127.0.0.1:57415 127.0.0.1:57433 3340100101 12 fefffffff66e0100dc6e0100 .....n...n.. +7610 20.715806723 127.0.0.1:57415 127.0.0.1:57433 3340100113 12 1a000000a3a00c0000000000 ............ +7612 20.716104269 127.0.0.1:57415 127.0.0.1:57433 3340100125 26 16000000548f6340e25e3140010003000000fdc8210000000000 ....T.c@.^1@........!..... +7614 20.716400862 127.0.0.1:57433 127.0.0.1:57415 382479617 12 ffffffffa3a00c0000000000 ............ +7616 20.716845751 127.0.0.1:57433 127.0.0.1:57415 382479629 12 16000000405d0c0000000000 ....@]...... +7618 20.716992140 127.0.0.1:57433 127.0.0.1:57415 382479641 22 12000000fdc821000000000001000300000000000000 ......!............... +7620 20.717361212 127.0.0.1:57415 127.0.0.1:57433 3340100151 12 ffffffff405d0c0000000000 ....@]...... +7634 20.739674807 127.0.0.1:57433 127.0.0.1:57415 382479663 12 feffffffdd6e0100f66e0100 .....n...n.. +7640 20.819042921 127.0.0.1:57415 127.0.0.1:57433 3340100163 12 1a000000a4a00c0000000000 ............ +7642 20.819329977 127.0.0.1:57415 127.0.0.1:57433 3340100175 26 16000000548f6340e25e3140010003000000ffc8210000000000 ....T.c@.^1@........!..... +7644 20.819626093 127.0.0.1:57433 127.0.0.1:57415 382479675 12 ffffffffa4a00c0000000000 ............ +7646 20.819998026 127.0.0.1:57433 127.0.0.1:57415 382479687 12 16000000415d0c0000000000 ....A]...... +7648 20.820146799 127.0.0.1:57433 127.0.0.1:57415 382479699 22 12000000ffc821000000000001000300000000000000 ......!............... +7650 20.820461035 127.0.0.1:57415 127.0.0.1:57433 3340100201 12 ffffffff415d0c0000000000 ....A]...... +7652 20.922482729 127.0.0.1:57415 127.0.0.1:57433 3340100213 12 1a000000a5a00c0000000000 ............ +7654 20.922703266 127.0.0.1:57415 127.0.0.1:57433 3340100225 26 16000000548f6340e25e314001000300000001c9210000000000 ....T.c@.^1@........!..... +7656 20.922985554 127.0.0.1:57433 127.0.0.1:57415 382479721 12 ffffffffa5a00c0000000000 ............ +7658 20.923436165 127.0.0.1:57433 127.0.0.1:57415 382479733 12 16000000425d0c0000000000 ....B]...... +7660 20.923645496 127.0.0.1:57433 127.0.0.1:57415 382479745 22 1200000001c921000000000001000300000000000000 ......!............... +7662 20.924109697 127.0.0.1:57415 127.0.0.1:57433 3340100251 12 ffffffff425d0c0000000000 ....B]...... +7664 20.943476677 127.0.0.1:57415 127.0.0.1:57433 3340100263 12 65000000a6a00c0000000000 e........... +7666 20.943680286 127.0.0.1:57415 127.0.0.1:57433 3340100275 101 1e0000001c2118d0c46f33bb010003000000c759020000000000dfa479c39d01 .....!...o3........Y........y.....?.....3...|8.. +7668 20.944027424 127.0.0.1:57433 127.0.0.1:57415 382479767 12 ffffffffa6a00c0000000000 ............ +7670 20.945690393 127.0.0.1:57433 127.0.0.1:57415 382479779 12 34000000435d0c0000000000 4...C]...... +7672 20.945848942 127.0.0.1:57433 127.0.0.1:57415 382479791 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y..........L. +7674 20.946157217 127.0.0.1:57415 127.0.0.1:57433 3340100376 12 ffffffff435d0c0000000000 ....C]...... +7676 20.947380304 127.0.0.1:57415 127.0.0.1:57433 3340100388 12 1e000000a7a00c0000000000 ............ +7678 20.947632074 127.0.0.1:57415 127.0.0.1:57433 3340100400 30 1a00000055ceff62b21b3a5001000300000003c921000000000000000000 ....U..b..:P........!......... +7680 20.947964668 127.0.0.1:57433 127.0.0.1:57415 382479843 12 ffffffffa7a00c0000000000 ............ +7682 20.948275089 127.0.0.1:57433 127.0.0.1:57415 382479855 12 1a000000445d0c0000000000 ....D]...... +7684 20.948415756 127.0.0.1:57433 127.0.0.1:57415 382479867 26 1600000003c92100000000000100030000000000000000000000 ......!................... +7686 20.948899984 127.0.0.1:57415 127.0.0.1:57433 3340100430 12 ffffffff445d0c0000000000 ....D]...... +7688 21.026377201 127.0.0.1:57415 127.0.0.1:57433 3340100442 12 1a000000a8a00c0000000000 ............ +7690 21.026550055 127.0.0.1:57415 127.0.0.1:57433 3340100454 26 16000000548f6340e25e314001000300000005c9210000000000 ....T.c@.^1@........!..... +7692 21.027453899 127.0.0.1:57433 127.0.0.1:57415 382479893 12 ffffffffa8a00c0000000000 ............ +7694 21.028068304 127.0.0.1:57433 127.0.0.1:57415 382479905 12 16000000455d0c0000000000 ....E]...... +7696 21.028209686 127.0.0.1:57433 127.0.0.1:57415 382479917 22 1200000005c921000000000001000300000000000000 ......!............... +7698 21.028510809 127.0.0.1:57415 127.0.0.1:57433 3340100480 12 ffffffff455d0c0000000000 ....E]...... +7700 21.131589174 127.0.0.1:57415 127.0.0.1:57433 3340100492 12 1a000000a9a00c0000000000 ............ +7702 21.131856203 127.0.0.1:57415 127.0.0.1:57433 3340100504 26 16000000548f6340e25e314001000300000007c9210000000000 ....T.c@.^1@........!..... +7704 21.132094622 127.0.0.1:57433 127.0.0.1:57415 382479939 12 ffffffffa9a00c0000000000 ............ +7706 21.132595778 127.0.0.1:57433 127.0.0.1:57415 382479951 12 16000000465d0c0000000000 ....F]...... +7708 21.132803917 127.0.0.1:57433 127.0.0.1:57415 382479963 22 1200000007c921000000000001000300000000000000 ......!............... +7710 21.133102179 127.0.0.1:57415 127.0.0.1:57433 3340100530 12 ffffffff465d0c0000000000 ....F]...... +7716 21.208284616 127.0.0.1:57415 127.0.0.1:57433 3340100542 12 fefffffff76e0100dd6e0100 .....n...n.. +7722 21.235647917 127.0.0.1:57415 127.0.0.1:57433 3340100554 12 1a000000aaa00c0000000000 ............ +7725 21.235840797 127.0.0.1:57415 127.0.0.1:57433 3340100566 26 16000000548f6340e25e314001000300000009c9210000000000 ....T.c@.^1@........!..... +7728 21.236218691 127.0.0.1:57433 127.0.0.1:57415 382479985 12 ffffffffaaa00c0000000000 ............ +7730 21.236697197 127.0.0.1:57433 127.0.0.1:57415 382479997 12 16000000475d0c0000000000 ....G]...... +7732 21.236901999 127.0.0.1:57433 127.0.0.1:57415 382480009 22 1200000009c921000000000001000300000000000000 ......!............... +7734 21.237242699 127.0.0.1:57415 127.0.0.1:57433 3340100592 12 ffffffff475d0c0000000000 ....G]...... +7742 21.240413189 127.0.0.1:57433 127.0.0.1:57415 382480031 12 feffffffde6e0100f76e0100 .....n...n.. +7744 21.249409676 127.0.0.1:57415 127.0.0.1:57433 3340100604 12 65000000aba00c0000000000 e........... +7746 21.249593258 127.0.0.1:57415 127.0.0.1:57433 3340100616 101 1e0000001c2118d0c46f33bb010003000000c85902000000000012a679c39d01 .....!...o3........Y........y.....?.....3...|8.. +7748 21.249939203 127.0.0.1:57433 127.0.0.1:57415 382480043 12 ffffffffaba00c0000000000 ............ +7750 21.251189709 127.0.0.1:57433 127.0.0.1:57415 382480055 12 34000000485d0c0000000000 4...H]...... +7752 21.251413584 127.0.0.1:57433 127.0.0.1:57415 382480067 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........ .z. +7754 21.251626968 127.0.0.1:57415 127.0.0.1:57433 3340100717 12 ffffffff485d0c0000000000 ....H]...... +7756 21.252628803 127.0.0.1:57415 127.0.0.1:57433 3340100729 12 1e000000aca00c0000000000 ............ +7758 21.252775192 127.0.0.1:57415 127.0.0.1:57433 3340100741 30 1a00000055ceff62b21b3a500100030000000bc921000000000000000000 ....U..b..:P........!......... +7760 21.253082991 127.0.0.1:57433 127.0.0.1:57415 382480119 12 ffffffffaca00c0000000000 ............ +7762 21.253629446 127.0.0.1:57433 127.0.0.1:57415 382480131 12 1a000000495d0c0000000000 ....I]...... +7764 21.253789425 127.0.0.1:57433 127.0.0.1:57415 382480143 26 160000000bc92100000000000100030000000000000000000000 ......!................... +7766 21.254212379 127.0.0.1:57415 127.0.0.1:57433 3340100771 12 ffffffff495d0c0000000000 ....I]...... +7772 21.338783503 127.0.0.1:57415 127.0.0.1:57433 3340100783 12 1a000000ada00c0000000000 ............ +7774 21.339075565 127.0.0.1:57415 127.0.0.1:57433 3340100795 26 16000000548f6340e25e31400100030000000dc9210000000000 ....T.c@.^1@........!..... +7776 21.339576960 127.0.0.1:57433 127.0.0.1:57415 382480169 12 ffffffffada00c0000000000 ............ +7778 21.339981079 127.0.0.1:57433 127.0.0.1:57415 382480181 12 160000004a5d0c0000000000 ....J]...... +7780 21.340145826 127.0.0.1:57433 127.0.0.1:57415 382480193 22 120000000dc921000000000001000300000000000000 ......!............... +7782 21.340369463 127.0.0.1:57415 127.0.0.1:57433 3340100821 12 ffffffff4a5d0c0000000000 ....J]...... +7785 21.443048954 127.0.0.1:57415 127.0.0.1:57433 3340100833 12 1a000000aea00c0000000000 ............ +7787 21.443252802 127.0.0.1:57415 127.0.0.1:57433 3340100845 26 16000000548f6340e25e31400100030000000fc9210000000000 ....T.c@.^1@........!..... +7789 21.443581104 127.0.0.1:57433 127.0.0.1:57415 382480215 12 ffffffffaea00c0000000000 ............ +7791 21.444153547 127.0.0.1:57433 127.0.0.1:57415 382480227 12 160000004b5d0c0000000000 ....K]...... +7793 21.444334745 127.0.0.1:57433 127.0.0.1:57415 382480239 22 120000000fc921000000000001000300000000000000 ......!............... +7795 21.444602013 127.0.0.1:57415 127.0.0.1:57433 3340100871 12 ffffffff4b5d0c0000000000 ....K]...... +7797 21.545737028 127.0.0.1:57415 127.0.0.1:57433 3340100883 12 1a000000afa00c0000000000 ............ +7799 21.545922756 127.0.0.1:57415 127.0.0.1:57433 3340100895 26 16000000548f6340e25e314001000300000011c9210000000000 ....T.c@.^1@........!..... +7801 21.546607733 127.0.0.1:57433 127.0.0.1:57415 382480261 12 ffffffffafa00c0000000000 ............ +7803 21.546881914 127.0.0.1:57433 127.0.0.1:57415 382480273 12 160000004c5d0c0000000000 ....L]...... +7805 21.547080517 127.0.0.1:57433 127.0.0.1:57415 382480285 22 1200000011c921000000000001000300000000000000 ......!............... +7807 21.547302723 127.0.0.1:57415 127.0.0.1:57433 3340100921 12 ffffffff4c5d0c0000000000 ....L]...... +7815 21.553897858 127.0.0.1:57415 127.0.0.1:57433 3340100933 12 65000000b0a00c0000000000 e........... +7817 21.554350138 127.0.0.1:57415 127.0.0.1:57433 3340100945 101 1e0000001c2118d0c46f33bb010003000000c95902000000000042a779c39d01 .....!...o3........Y......B.y.....?.....3...|8.. +7819 21.554643869 127.0.0.1:57433 127.0.0.1:57415 382480307 12 ffffffffb0a00c0000000000 ............ +7821 21.555622339 127.0.0.1:57433 127.0.0.1:57415 382480319 12 340000004d5d0c0000000000 4...M]...... +7823 21.555777550 127.0.0.1:57433 127.0.0.1:57415 382480331 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......Y........H... +7825 21.556065559 127.0.0.1:57415 127.0.0.1:57433 3340101046 12 ffffffff4d5d0c0000000000 ....M]...... +7827 21.557121277 127.0.0.1:57415 127.0.0.1:57433 3340101058 12 1e000000b1a00c0000000000 ............ +7829 21.557265282 127.0.0.1:57415 127.0.0.1:57433 3340101070 30 1a00000055ceff62b21b3a5001000300000013c921000000000000000000 ....U..b..:P........!......... +7831 21.557592392 127.0.0.1:57433 127.0.0.1:57415 382480383 12 ffffffffb1a00c0000000000 ............ +7833 21.558144093 127.0.0.1:57433 127.0.0.1:57415 382480395 12 1a0000004e5d0c0000000000 ....N]...... +7835 21.558292866 127.0.0.1:57433 127.0.0.1:57415 382480407 26 1600000013c92100000000000100030000000000000000000000 ......!................... +7837 21.558554411 127.0.0.1:57415 127.0.0.1:57433 3340101100 12 ffffffff4e5d0c0000000000 ....N]...... +7875 21.648687363 127.0.0.1:57415 127.0.0.1:57433 3340101112 12 1a000000b2a00c0000000000 ............ +7877 21.648853779 127.0.0.1:57415 127.0.0.1:57433 3340101124 26 16000000548f6340e25e314001000300000015c9210000000000 ....T.c@.^1@........!..... +7879 21.649234056 127.0.0.1:57433 127.0.0.1:57415 382480433 12 ffffffffb2a00c0000000000 ............ +7881 21.649677992 127.0.0.1:57433 127.0.0.1:57415 382480445 12 160000004f5d0c0000000000 ....O]...... +7883 21.649829626 127.0.0.1:57433 127.0.0.1:57415 382480457 22 1200000015c921000000000001000300000000000000 ......!............... +7885 21.650068760 127.0.0.1:57415 127.0.0.1:57433 3340101150 12 ffffffff4f5d0c0000000000 ....O]...... +7891 21.709203005 127.0.0.1:57415 127.0.0.1:57433 3340101162 12 fefffffff86e0100de6e0100 .....n...n.. +7905 21.741491318 127.0.0.1:57433 127.0.0.1:57415 382480479 12 feffffffdf6e0100f86e0100 .....n...n.. +7907 21.753440857 127.0.0.1:57415 127.0.0.1:57433 3340101174 12 1a000000b3a00c0000000000 ............ +7909 21.753625631 127.0.0.1:57415 127.0.0.1:57433 3340101186 26 16000000548f6340e25e314001000300000017c9210000000000 ....T.c@.^1@........!..... +7911 21.754074097 127.0.0.1:57433 127.0.0.1:57415 382480491 12 ffffffffb3a00c0000000000 ............ +7915 21.755577326 127.0.0.1:57433 127.0.0.1:57415 382480503 12 16000000505d0c0000000000 ....P]...... +7918 21.755725622 127.0.0.1:57433 127.0.0.1:57415 382480515 22 1200000017c921000000000001000300000000000000 ......!............... +7924 21.756266117 127.0.0.1:57415 127.0.0.1:57433 3340101212 12 ffffffff505d0c0000000000 ....P]...... +8034 21.857674837 127.0.0.1:57415 127.0.0.1:57433 3340101224 12 1a000000b4a00c0000000000 ............ +8036 21.857946873 127.0.0.1:57415 127.0.0.1:57433 3340101236 26 16000000548f6340e25e314001000300000019c9210000000000 ....T.c@.^1@........!..... +8038 21.858088970 127.0.0.1:57415 127.0.0.1:57433 3340101262 12 65000000b5a00c0000000000 e........... +8040 21.858222246 127.0.0.1:57415 127.0.0.1:57433 3340101274 101 1e0000001c2118d0c46f33bb010003000000ca5902000000000073a879c39d01 .....!...o3........Y......s.y.....?.....3...|8.. +8042 21.858511925 127.0.0.1:57433 127.0.0.1:57415 382480537 12 ffffffffb4a00c0000000000 ............ +8044 21.858869076 127.0.0.1:57433 127.0.0.1:57415 382480549 12 ffffffffb5a00c0000000000 ............ +8046 21.859385967 127.0.0.1:57433 127.0.0.1:57415 382480561 12 16000000515d0c0000000000 ....Q]...... +1158 0.000000000 ::1:52846 ::1:49704 176558711 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +1160 0.000634193 ::1:49704 ::1:52846 2961338284 84 05000c03100000005400000002000000d016d016d2b900000600343937303400 ........T.................49704..........]...... +1162 0.000832319 ::1:52846 ::1:49704 176558827 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +1164 0.001010895 ::1:49704 ::1:52846 2961338368 44 05000203100000002c000000020000001400000000000000000000007f8ef1d9 ........,.......................L..A...>7M,. +1166 0.001205206 ::1:52846 ::1:49704 176558867 72 05000e03100000004800000003000000d016d016d2b900000100000001000100 ........H.......................K....k.F.@.`..Q. +1168 0.001334906 ::1:49704 ::1:52846 2961338412 56 05000f03100000003800000003000000d016d016d2b900000000000001000000 ........8............................].......... +1172 0.001503706 ::1:52846 ::1:49704 176558939 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K............ +1183 0.003369331 ::1:49704 ::1:52846 2961338468 28 05000203100000001c00000003000000040000000100000001000000 ............................ +1186 0.003524780 ::1:52846 ::1:49704 176559035 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +1188 0.003688574 ::1:49704 ::1:52846 2961338496 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +1190 0.003937244 ::1:52846 ::1:49704 176559095 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +1193 0.004105806 ::1:49704 ::1:52846 2961338588 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +1196 0.004240274 ::1:52846 ::1:49704 176559215 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K............ +1200 0.004446745 ::1:49704 ::1:52846 2961338620 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +1202 0.004576445 ::1:52846 ::1:49704 176559339 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K............ +1206 0.004725933 ::1:49704 ::1:52846 2961338652 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +1208 0.004892588 ::1:52846 ::1:49704 176559457 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K............ +1210 0.005055189 ::1:49704 ::1:52846 2961338684 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +1215 0.005274534 ::1:52846 ::1:49704 176559577 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +1218 0.005428791 ::1:49704 ::1:52846 2961338716 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +1221 0.005558968 ::1:52846 ::1:49704 176559707 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +1224 0.005703926 ::1:49704 ::1:52846 2961338748 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +1226 0.005868912 ::1:52846 ::1:49704 176559837 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +1228 0.006022930 ::1:49704 ::1:52846 2961338780 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +1230 0.006191969 ::1:52846 ::1:49704 176559979 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K............ +1232 0.006363153 ::1:49704 ::1:52846 2961338812 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +1234 0.006654263 ::1:52846 ::1:49704 176560095 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +1238 0.006847143 ::1:49704 ::1:52846 2961338844 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +1240 0.006987572 ::1:52846 ::1:49704 176560225 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +1242 0.007139921 ::1:49704 ::1:52846 2961338876 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +1244 0.007298470 ::1:52846 ::1:49704 176560353 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K............ +1246 0.007443666 ::1:49704 ::1:52846 2961338908 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +1248 0.007947445 ::1:52846 ::1:49704 176560479 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +1250 0.008090258 ::1:49704 ::1:52846 2961338940 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +1252 0.008265257 ::1:52846 ::1:49704 176560611 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +1254 0.008443594 ::1:49704 ::1:52846 2961338972 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +1290 0.115822792 ::1:52846 ::1:49704 176560763 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +1292 0.116088629 ::1:49704 ::1:52846 2961339004 44 05000203100000002c000000120000001400000000000000000000001c118b0e ........,........................T.O..;.73+} +1294 0.116584063 ::1:52846 ::1:49704 176560803 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K............ +1296 0.118684769 ::1:49704 ::1:52846 2961339048 28 05000203100000001c00000013000000040000000100000001000000 ............................ +1298 0.118949175 ::1:52846 ::1:49704 176560911 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +1300 0.119317055 ::1:49704 ::1:52846 2961339076 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +1302 0.119647026 ::1:52846 ::1:49704 176560971 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +1304 0.119892359 ::1:49704 ::1:52846 2961339168 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +1306 0.120140791 ::1:52846 ::1:49704 176561103 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +1308 0.120413065 ::1:49704 ::1:52846 2961339200 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +1310 0.120623827 ::1:52846 ::1:49704 176561239 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K............ +1312 0.120795727 ::1:49704 ::1:52846 2961339232 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +1314 0.120996952 ::1:52846 ::1:49704 176561369 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +1316 0.121172428 ::1:49704 ::1:52846 2961339264 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +1318 0.121433735 ::1:52846 ::1:49704 176561501 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +1320 0.121622562 ::1:49704 ::1:52846 2961339296 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +1322 0.121828794 ::1:52846 ::1:49704 176561643 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +1324 0.122039557 ::1:49704 ::1:52846 2961339328 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +1326 0.122317076 ::1:52846 ::1:49704 176561785 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +1328 0.122536898 ::1:49704 ::1:52846 2961339360 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +1330 0.122746468 ::1:52846 ::1:49704 176561939 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K............ +1332 0.122958422 ::1:49704 ::1:52846 2961339392 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +1334 0.123162031 ::1:52846 ::1:49704 176562067 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +1336 0.123488903 ::1:49704 ::1:52846 2961339424 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +1338 0.123739958 ::1:52846 ::1:49704 176562209 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +1340 0.123938084 ::1:49704 ::1:52846 2961339456 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +1342 0.124145985 ::1:52846 ::1:49704 176562349 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K............ +1344 0.124455214 ::1:49704 ::1:52846 2961339488 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +1350 0.146593809 ::1:52846 ::1:49704 176562487 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +1352 0.146936178 ::1:49704 ::1:52846 2961339520 44 05000203100000002c000000200000001400000000000000000000002d95f33e ........,... ...............-..>M.,J...l...& +1354 0.147115231 ::1:52846 ::1:49704 176562527 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K........-..> +1356 0.148602962 ::1:49704 ::1:52846 2961339564 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +1358 0.148740292 ::1:52846 ::1:49704 176562631 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K........-..> +1360 0.148935795 ::1:49704 ::1:52846 2961339592 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +1362 0.149141312 ::1:52846 ::1:49704 176562691 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K........-..> +1364 0.149520159 ::1:49704 ::1:52846 2961339684 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +1366 0.149691343 ::1:52846 ::1:49704 176562819 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K........-..> +1368 0.150031805 ::1:49704 ::1:52846 2961339716 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +1370 0.150201797 ::1:52846 ::1:49704 176562951 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K........-..> +1372 0.150313854 ::1:49704 ::1:52846 2961339748 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +1374 0.150443077 ::1:52846 ::1:49704 176563077 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K........-..> +1376 0.150611877 ::1:49704 ::1:52846 2961339780 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +1378 0.150739431 ::1:52846 ::1:49704 176563205 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K........-..> +1380 0.150931597 ::1:49704 ::1:52846 2961339812 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +1382 0.151059389 ::1:52846 ::1:49704 176563343 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K........-..> +1384 0.151216984 ::1:49704 ::1:52846 2961339844 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +1386 0.151341677 ::1:52846 ::1:49704 176563481 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K........-..> +1388 0.151495218 ::1:49704 ::1:52846 2961339876 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +1390 0.151617050 ::1:52846 ::1:49704 176563631 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K........-..> +1392 0.151785135 ::1:49704 ::1:52846 2961339908 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +1394 0.151935577 ::1:52846 ::1:49704 176563755 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K........-..> +1396 0.152095079 ::1:49704 ::1:52846 2961339940 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +1398 0.152230978 ::1:52846 ::1:49704 176563893 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K........-..> +1400 0.152440548 ::1:49704 ::1:52846 2961339972 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +1402 0.152579069 ::1:52846 ::1:49704 176564029 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K........-..> +1404 0.152819872 ::1:49704 ::1:52846 2961340004 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +1406 0.153018475 ::1:52846 ::1:49704 176564163 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........-..> +1408 0.153579235 ::1:49704 ::1:52846 2961340036 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +1410 0.153726578 ::1:52846 ::1:49704 176564303 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K........-..> +1412 0.153947353 ::1:49704 ::1:52846 2961340068 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +1432 0.265488625 ::1:52846 ::1:49704 176564449 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +1434 0.265730858 ::1:49704 ::1:52846 2961340100 44 05000203100000002c000000300000001400000000000000000000008df2b903 ........,...0.................... 0K..S.~.iz +1436 0.266058207 ::1:52846 ::1:49704 176564489 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K............ +1438 0.267969608 ::1:49704 ::1:52846 2961340144 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +1440 0.268254280 ::1:52846 ::1:49704 176564601 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K............ +1442 0.268481731 ::1:49704 ::1:52846 2961340172 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +1444 0.268805265 ::1:52846 ::1:49704 176564661 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K............ +1446 0.269129515 ::1:49704 ::1:52846 2961340264 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +1448 0.269274950 ::1:52846 ::1:49704 176564797 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K............ +1450 0.269458532 ::1:49704 ::1:52846 2961340296 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +1452 0.269650221 ::1:52846 ::1:49704 176564937 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K............ +1454 0.269833088 ::1:49704 ::1:52846 2961340328 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +1456 0.270155907 ::1:52846 ::1:49704 176565071 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K............ +1458 0.270340443 ::1:49704 ::1:52846 2961340360 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +1460 0.270524979 ::1:52846 ::1:49704 176565207 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K............ +1462 0.270699739 ::1:49704 ::1:52846 2961340392 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +1464 0.270933390 ::1:52846 ::1:49704 176565353 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K............ +1466 0.271078587 ::1:49704 ::1:52846 2961340424 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +1468 0.271256208 ::1:52846 ::1:49704 176565499 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K............ +1470 0.271434784 ::1:49704 ::1:52846 2961340456 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +1472 0.271615028 ::1:52846 ::1:49704 176565657 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K............ +1474 0.271779537 ::1:49704 ::1:52846 2961340488 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +1476 0.271976471 ::1:52846 ::1:49704 176565789 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K............ +1478 0.272171497 ::1:49704 ::1:52846 2961340520 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +1480 0.272373199 ::1:52846 ::1:49704 176565935 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K............ +1482 0.272517443 ::1:49704 ::1:52846 2961340552 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +1484 0.272658348 ::1:52846 ::1:49704 176566079 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K............ +1486 0.272811890 ::1:49704 ::1:52846 2961340584 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +1488 0.273168087 ::1:52846 ::1:49704 176566221 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K............ +1490 0.273338795 ::1:49704 ::1:52846 2961340616 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +1492 0.273581982 ::1:52846 ::1:49704 176566369 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K............ +1494 0.273775339 ::1:49704 ::1:52846 2961340648 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +1609 0.410528898 ::1:52846 ::1:49704 176566523 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +1611 0.410762072 ::1:49704 ::1:52846 2961340680 44 05000203100000002c00000040000000140000000000000000000000441b937b ........,...@...............D..{..#K.j(..&.. +1615 0.411021709 ::1:52846 ::1:49704 176566563 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K........D..{ +1625 0.412831545 ::1:49704 ::1:52846 2961340724 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +1627 0.413107395 ::1:52846 ::1:49704 176566655 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K........D..{ +1629 0.413327932 ::1:49704 ::1:52846 2961340752 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1631 0.413558722 ::1:52846 ::1:49704 176566715 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K........D..{ +1633 0.413762808 ::1:49704 ::1:52846 2961340844 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1635 0.413899183 ::1:52846 ::1:49704 176566831 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K........D..{ +1637 0.414066792 ::1:49704 ::1:52846 2961340876 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1639 0.414210796 ::1:52846 ::1:49704 176566951 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K........D..{ +1641 0.414367914 ::1:49704 ::1:52846 2961340908 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1643 0.414589643 ::1:52846 ::1:49704 176567065 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K........D..{ +1645 0.414767981 ::1:49704 ::1:52846 2961340940 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1647 0.415027857 ::1:52846 ::1:49704 176567181 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K........D..{ +1649 0.415218353 ::1:49704 ::1:52846 2961340972 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1651 0.415394783 ::1:52846 ::1:49704 176567307 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K........D..{ +1653 0.415557861 ::1:49704 ::1:52846 2961341004 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1655 0.415745974 ::1:52846 ::1:49704 176567433 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K........D..{ +1657 0.415945292 ::1:49704 ::1:52846 2961341036 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1659 0.416174173 ::1:52846 ::1:49704 176567571 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K........D..{ +1661 0.416340590 ::1:49704 ::1:52846 2961341068 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1663 0.416467428 ::1:52846 ::1:49704 176567683 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K........D..{ +1665 0.416619301 ::1:49704 ::1:52846 2961341100 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1667 0.416759968 ::1:52846 ::1:49704 176567809 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K........D..{ +1669 0.416951418 ::1:49704 ::1:52846 2961341132 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1671 0.417094231 ::1:52846 ::1:49704 176567933 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K........D..{ +1673 0.417248487 ::1:49704 ::1:52846 2961341164 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1675 0.417420387 ::1:52846 ::1:49704 176568055 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K........D..{ +1677 0.417569637 ::1:49704 ::1:52846 2961341196 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1679 0.417707682 ::1:52846 ::1:49704 176568183 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K........D..{ +1681 0.417896271 ::1:49704 ::1:52846 2961341228 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1683 0.418078184 ::1:52846 ::1:49704 176568317 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K........D..{ +1685 0.418228865 ::1:49704 ::1:52846 2961341260 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1687 0.418360472 ::1:52846 ::1:49704 176568447 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K........D..{ +1689 0.418507576 ::1:49704 ::1:52846 2961341292 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +4067 7.231144667 ::1:52846 ::1:49704 176568575 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +4069 7.231384039 ::1:49704 ::1:52846 2961341324 44 05000203100000002c00000052000000140000000000000000000000f37ee08d ........,...R................~..K..E...wBk.. +4071 7.231614828 ::1:52846 ::1:49704 176568615 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K.........~.. +4073 7.233840227 ::1:49704 ::1:52846 2961341368 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +4075 7.234008074 ::1:52846 ::1:49704 176568715 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K.........~.. +4077 7.234173298 ::1:49704 ::1:52846 2961341396 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +4079 7.234662533 ::1:52846 ::1:49704 176568775 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K.........~.. +4081 7.234960079 ::1:49704 ::1:52846 2961341488 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +4083 7.235113382 ::1:52846 ::1:49704 176568899 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K.........~.. +4085 7.235268354 ::1:49704 ::1:52846 2961341520 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +4087 7.235411406 ::1:52846 ::1:49704 176569027 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K.........~.. +4089 7.235624075 ::1:49704 ::1:52846 2961341552 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +4091 7.235764503 ::1:52846 ::1:49704 176569149 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K.........~.. +4093 7.235920191 ::1:49704 ::1:52846 2961341584 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +4095 7.236062527 ::1:52846 ::1:49704 176569273 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K.........~.. +4097 7.236211061 ::1:49704 ::1:52846 2961341616 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +4099 7.236351013 ::1:52846 ::1:49704 176569407 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K.........~.. +4101 7.236496687 ::1:49704 ::1:52846 2961341648 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +4103 7.236662388 ::1:52846 ::1:49704 176569541 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K.........~.. +4105 7.236906528 ::1:49704 ::1:52846 2961341680 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +4107 7.237059832 ::1:52846 ::1:49704 176569687 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K.........~.. +4109 7.237222672 ::1:49704 ::1:52846 2961341712 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +4111 7.237365484 ::1:52846 ::1:49704 176569807 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K.........~.. +4113 7.237517595 ::1:49704 ::1:52846 2961341744 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +4115 7.237738848 ::1:52846 ::1:49704 176569941 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K.........~.. +4117 7.237893820 ::1:49704 ::1:52846 2961341776 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +4119 7.238039970 ::1:52846 ::1:49704 176570073 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K.........~.. +4121 7.238190889 ::1:49704 ::1:52846 2961341808 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +4123 7.238377333 ::1:52846 ::1:49704 176570203 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K.........~.. +4128 7.238631725 ::1:49704 ::1:52846 2961341840 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +4131 7.238847256 ::1:52846 ::1:49704 176570347 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K.........~.. +4135 7.239023924 ::1:49704 ::1:52846 2961341872 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +4137 7.239182472 ::1:52846 ::1:49704 176570495 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K.........~.. +4140 7.239369869 ::1:49704 ::1:52846 2961341904 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +4145 7.239628077 ::1:52846 ::1:49704 176570641 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K.........~.. +4147 7.239790201 ::1:49704 ::1:52846 2961341936 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +4155 7.318721771 ::1:52846 ::1:49704 176570799 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +4157 7.319017410 ::1:49704 ::1:52846 2961341968 44 05000203100000002c00000064000000140000000000000000000000acc87ea9 ........,...d.................~....I...."%.. +4159 7.319312572 ::1:52846 ::1:49704 176570839 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K..........~. +4161 7.321223259 ::1:49704 ::1:52846 2961342012 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +4163 7.321452141 ::1:52846 ::1:49704 176570923 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K..........~. +4165 7.321652174 ::1:49704 ::1:52846 2961342040 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +4167 7.321896315 ::1:52846 ::1:49704 176570983 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K..........~. +4169 7.322084904 ::1:49704 ::1:52846 2961342132 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +4171 7.322238922 ::1:52846 ::1:49704 176571091 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K..........~. +4173 7.322391748 ::1:49704 ::1:52846 2961342164 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +4175 7.322532654 ::1:52846 ::1:49704 176571203 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K..........~. +4177 7.322709084 ::1:49704 ::1:52846 2961342196 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +4179 7.322848797 ::1:52846 ::1:49704 176571309 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K..........~. +4181 7.323020935 ::1:49704 ::1:52846 2961342228 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +4183 7.323164701 ::1:52846 ::1:49704 176571417 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K..........~. +4185 7.323310137 ::1:49704 ::1:52846 2961342260 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +4187 7.323456526 ::1:52846 ::1:49704 176571535 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K..........~. +4190 7.323864937 ::1:49704 ::1:52846 2961342292 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +4195 7.324022055 ::1:52846 ::1:49704 176571653 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K..........~. +4198 7.324289083 ::1:49704 ::1:52846 2961342324 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +4201 7.324522257 ::1:52846 ::1:49704 176571783 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K..........~. +4203 7.324762106 ::1:49704 ::1:52846 2961342356 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +4205 7.324918032 ::1:52846 ::1:49704 176571887 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K..........~. +4207 7.325067759 ::1:49704 ::1:52846 2961342388 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +4209 7.325212479 ::1:52846 ::1:49704 176572005 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K..........~. +4211 7.325355291 ::1:49704 ::1:52846 2961342420 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +4213 7.325492382 ::1:52846 ::1:49704 176572121 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K..........~. +4215 7.325661659 ::1:49704 ::1:52846 2961342452 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +4222 7.326220512 ::1:52846 ::1:49704 176572235 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K..........~. +4225 7.326400042 ::1:49704 ::1:52846 2961342484 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +4227 7.326776981 ::1:52846 ::1:49704 176572363 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K..........~. +4229 7.326935768 ::1:49704 ::1:52846 2961342516 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +4232 7.327130079 ::1:52846 ::1:49704 176572483 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K..........~. +4236 7.327281475 ::1:49704 ::1:52846 2961342548 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +4239 7.327464819 ::1:52846 ::1:49704 176572603 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K..........~. +4242 7.327642679 ::1:49704 ::1:52846 2961342580 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +4245 7.327923059 ::1:52846 ::1:49704 176572725 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K..........~. +4248 7.328095913 ::1:49704 ::1:52846 2961342612 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +4252 7.328333855 ::1:52846 ::1:49704 176572859 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K..........~. +4255 7.328485966 ::1:49704 ::1:52846 2961342644 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +4258 7.328703165 ::1:52846 ::1:49704 176572991 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K..........~. +4261 7.328864574 ::1:49704 ::1:52846 2961342676 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +4263 7.329055786 ::1:52846 ::1:49704 176573121 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K..........~. +4265 7.329204559 ::1:49704 ::1:52846 2961342708 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +4267 7.329497814 ::1:52846 ::1:49704 176573259 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K..........~. +4269 7.329698563 ::1:49704 ::1:52846 2961342740 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +4271 7.330206156 ::1:52846 ::1:49704 176573403 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K..........~. +4273 7.330569267 ::1:49704 ::1:52846 2961342772 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +4275 7.330847979 ::1:52846 ::1:49704 176573547 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K..........~. +4277 7.331139088 ::1:49704 ::1:52846 2961342804 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +4279 7.331363678 ::1:52846 ::1:49704 176573663 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K..........~. +4281 7.331706762 ::1:49704 ::1:52846 2961342836 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +4283 7.331922054 ::1:52846 ::1:49704 176573793 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K..........~. +4285 7.332194567 ::1:49704 ::1:52846 2961342868 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +4287 7.332423449 ::1:52846 ::1:49704 176573931 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........~. +4289 7.332733870 ::1:49704 ::1:52846 2961342900 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +4291 7.332984686 ::1:52846 ::1:49704 176574061 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........~. +4293 7.333257675 ::1:49704 ::1:52846 2961342932 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +4295 7.333459616 ::1:52846 ::1:49704 176574183 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K..........~. +4297 7.333767891 ::1:49704 ::1:52846 2961342964 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +4299 7.333964586 ::1:52846 ::1:49704 176574305 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K..........~. +4301 7.334229469 ::1:49704 ::1:52846 2961342996 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +4303 7.334446669 ::1:52846 ::1:49704 176574439 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........~. +4305 7.335266113 ::1:49704 ::1:52846 2961343028 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +4307 7.335458755 ::1:52846 ::1:49704 176574567 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........~. +4309 7.335702181 ::1:49704 ::1:52846 2961343060 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +4323 7.372324228 ::1:52846 ::1:49704 176574691 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K..........~. +4325 7.372853994 ::1:49704 ::1:52846 2961343092 28 05000203100000001c00000085000000040000000100000001000000 ............................ +4331 7.408583879 ::1:52846 ::1:49704 176575207 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4333 7.408910513 ::1:49704 ::1:52846 2961343120 44 05000203100000002c00000086000000140000000000000000000000c587f180 ........,.......................5..B....b.@. +4335 7.409101963 ::1:52846 ::1:49704 176575247 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K............ +4337 7.411247253 ::1:49704 ::1:52846 2961343164 28 05000203100000001c00000087000000040000000100000001000000 ............................ +4339 7.411457539 ::1:52846 ::1:49704 176575359 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K............ +4341 7.411680937 ::1:49704 ::1:52846 2961343192 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4343 7.411957979 ::1:52846 ::1:49704 176575419 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +4345 7.412199020 ::1:49704 ::1:52846 2961343284 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +4347 7.412364006 ::1:52846 ::1:49704 176575555 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +4349 7.412565470 ::1:49704 ::1:52846 2961343316 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +4351 7.412793636 ::1:52846 ::1:49704 176575695 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K............ +4353 7.412970066 ::1:49704 ::1:52846 2961343348 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +4355 7.413126469 ::1:52846 ::1:49704 176575829 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K............ +4357 7.413329363 ::1:49704 ::1:52846 2961343380 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +4359 7.413482666 ::1:52846 ::1:49704 176575965 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K............ +4361 7.413665295 ::1:49704 ::1:52846 2961343412 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +4363 7.413813591 ::1:52846 ::1:49704 176576111 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K............ +4365 7.414023876 ::1:49704 ::1:52846 2961343444 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +4367 7.414172411 ::1:52846 ::1:49704 176576257 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K............ +4369 7.414367437 ::1:49704 ::1:52846 2961343476 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +4371 7.414522648 ::1:52846 ::1:49704 176576415 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K............ +4373 7.414726973 ::1:49704 ::1:52846 2961343508 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +4375 7.414924860 ::1:52846 ::1:49704 176576547 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K............ +4377 7.415116072 ::1:49704 ::1:52846 2961343540 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +4379 7.415395021 ::1:52846 ::1:49704 176576693 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K............ +4381 7.415560722 ::1:49704 ::1:52846 2961343572 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +4383 7.415721893 ::1:52846 ::1:49704 176576837 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K............ +4385 7.415902376 ::1:49704 ::1:52846 2961343604 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +4387 7.416097164 ::1:52846 ::1:49704 176576979 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K............ +4389 7.416250229 ::1:49704 ::1:52846 2961343636 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +4391 7.416406631 ::1:52846 ::1:49704 176577139 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K............ +4393 7.416555166 ::1:49704 ::1:52846 2961343668 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +4395 7.416728973 ::1:52846 ::1:49704 176577295 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +4397 7.416898966 ::1:49704 ::1:52846 2961343700 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +4399 7.417052269 ::1:52846 ::1:49704 176577449 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K............ +4401 7.417198658 ::1:49704 ::1:52846 2961343732 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +4403 7.417347431 ::1:52846 ::1:49704 176577595 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K............ +4405 7.417492151 ::1:49704 ::1:52846 2961343764 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +4407 7.417639017 ::1:52846 ::1:49704 176577749 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K............ +4409 7.417783737 ::1:49704 ::1:52846 2961343796 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +4411 7.417932749 ::1:52846 ::1:49704 176577899 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K............ +4413 7.418079615 ::1:49704 ::1:52846 2961343828 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +4415 7.418229580 ::1:52846 ::1:49704 176578051 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K............ +4417 7.418377876 ::1:49704 ::1:52846 2961343860 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +4419 7.418570757 ::1:52846 ::1:49704 176578191 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K............ +4421 7.418722868 ::1:49704 ::1:52846 2961343892 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +4423 7.418914318 ::1:52846 ::1:49704 176578339 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K............ +4425 7.419160128 ::1:49704 ::1:52846 2961343924 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +4427 7.419350386 ::1:52846 ::1:49704 176578501 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K............ +4429 7.419538736 ::1:49704 ::1:52846 2961343956 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +4431 7.419718027 ::1:52846 ::1:49704 176578673 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K............ +4433 7.419975758 ::1:49704 ::1:52846 2961343988 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +4439 7.428571939 ::1:52846 ::1:49704 176578817 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4441 7.428774118 ::1:49704 ::1:52846 2961344020 44 05000203100000002c000000a00000001400000000000000000000007c3fc244 ........,...................|?.DvF.B.../.... +4443 7.429051876 ::1:52846 ::1:49704 176578857 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K........|?.D +4445 7.431003094 ::1:49704 ::1:52846 2961344064 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +4447 7.431178093 ::1:52846 ::1:49704 176578985 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........|?.D +4449 7.431344986 ::1:49704 ::1:52846 2961344092 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4451 7.431575775 ::1:52846 ::1:49704 176579045 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........|?.D +4453 7.431800365 ::1:49704 ::1:52846 2961344184 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +4455 7.431951761 ::1:52846 ::1:49704 176579197 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........|?.D +4457 7.432124138 ::1:49704 ::1:52846 2961344216 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +4459 7.432266712 ::1:52846 ::1:49704 176579353 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........|?.D +4461 7.432415485 ::1:49704 ::1:52846 2961344248 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +4463 7.432553530 ::1:52846 ::1:49704 176579503 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........|?.D +4465 7.432700872 ::1:49704 ::1:52846 2961344280 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +4467 7.432843208 ::1:52846 ::1:49704 176579655 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........|?.D +4469 7.432993174 ::1:49704 ::1:52846 2961344312 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +4471 7.433133364 ::1:52846 ::1:49704 176579817 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........|?.D +4473 7.433281660 ::1:49704 ::1:52846 2961344344 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +4475 7.433420658 ::1:52846 ::1:49704 176579979 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K........|?.D +4477 7.433566570 ::1:49704 ::1:52846 2961344376 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +4479 7.433705330 ::1:52846 ::1:49704 176580153 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........|?.D +4481 7.433851480 ::1:49704 ::1:52846 2961344408 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +4483 7.433991194 ::1:52846 ::1:49704 176580301 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........|?.D +4485 7.434275150 ::1:49704 ::1:52846 2961344440 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +4487 7.434420586 ::1:52846 ::1:49704 176580463 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........|?.D +4489 7.434596539 ::1:49704 ::1:52846 2961344472 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +4491 7.434917212 ::1:52846 ::1:49704 176580623 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........|?.D +4493 7.435156822 ::1:49704 ::1:52846 2961344504 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +4495 7.435377598 ::1:52846 ::1:49704 176580781 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K........|?.D +4497 7.435525179 ::1:49704 ::1:52846 2961344536 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +4499 7.435673475 ::1:52846 ::1:49704 176580951 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K........|?.D +4501 7.435869694 ::1:49704 ::1:52846 2961344568 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +4510 7.442318439 ::1:52846 ::1:49704 176581133 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +4514 7.442499638 ::1:49704 ::1:52846 2961344600 44 05000203100000002c000000b000000014000000000000000000000040d6bba2 ........,...................@...l.eM.iu5.~o. +4516 7.442726374 ::1:52846 ::1:49704 176581173 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K........@... +4532 7.445637703 ::1:49704 ::1:52846 2961344644 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +4534 7.445848227 ::1:52846 ::1:49704 176581269 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........@... +4536 7.445991993 ::1:49704 ::1:52846 2961344672 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +4538 7.446212053 ::1:52846 ::1:49704 176581329 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........@... +4540 7.446384430 ::1:49704 ::1:52846 2961344764 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +4542 7.446530581 ::1:52846 ::1:49704 176581449 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........@... +4544 7.446679592 ::1:49704 ::1:52846 2961344796 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +4547 7.446851969 ::1:52846 ::1:49704 176581573 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K........@... +4552 7.447112322 ::1:49704 ::1:52846 2961344828 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +4554 7.447355270 ::1:52846 ::1:49704 176581691 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K........@... +4556 7.447559595 ::1:49704 ::1:52846 2961344860 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +4559 7.447712421 ::1:52846 ::1:49704 176581811 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........@... +4562 7.447916269 ::1:49704 ::1:52846 2961344892 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +4565 7.448065758 ::1:52846 ::1:49704 176581941 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........@... +4567 7.448228359 ::1:49704 ::1:52846 2961344924 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +4570 7.448412180 ::1:52846 ::1:49704 176582071 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........@... +4573 7.448564291 ::1:49704 ::1:52846 2961344956 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +4575 7.448759794 ::1:52846 ::1:49704 176582213 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K........@... +4577 7.448915005 ::1:49704 ::1:52846 2961344988 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +4579 7.449059963 ::1:52846 ::1:49704 176582329 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........@... +4581 7.449203253 ::1:49704 ::1:52846 2961345020 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +4584 7.449340105 ::1:52846 ::1:49704 176582459 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........@... +4587 7.449515581 ::1:49704 ::1:52846 2961345052 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +4589 7.449663401 ::1:52846 ::1:49704 176582587 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........@... +4591 7.449910402 ::1:49704 ::1:52846 2961345084 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +4593 7.450232983 ::1:52846 ::1:49704 176582713 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K........@... +4595 7.450397491 ::1:49704 ::1:52846 2961345116 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +4599 7.450558424 ::1:52846 ::1:49704 176582839 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........@... +4601 7.450705051 ::1:49704 ::1:52846 2961345148 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +4603 7.450899839 ::1:52846 ::1:49704 176582971 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........@... +4605 7.451055288 ::1:49704 ::1:52846 2961345180 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +4607 7.451226473 ::1:52846 ::1:49704 176583101 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........@... +4609 7.451467991 ::1:49704 ::1:52846 2961345212 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +4611 7.451657295 ::1:52846 ::1:49704 176583239 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........@... +4613 7.451855183 ::1:49704 ::1:52846 2961345244 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4615 7.452023268 ::1:52846 ::1:49704 176583375 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........@... +4617 7.452179909 ::1:49704 ::1:52846 2961345276 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4619 7.452319145 ::1:52846 ::1:49704 176583507 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........@... +4621 7.452461481 ::1:49704 ::1:52846 2961345308 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4623 7.452607870 ::1:52846 ::1:49704 176583649 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........@... +4625 7.452751160 ::1:49704 ::1:52846 2961345340 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4643 7.490444660 ::1:52846 ::1:49704 176583797 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K..........~. +4645 7.490773916 ::1:49704 ::1:52846 2961345372 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4678 7.572737217 ::1:52846 ::1:49704 176584087 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K..........~. +4680 7.573014259 ::1:49704 ::1:52846 2961345400 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +7913 17.593862295 ::1:52846 ::1:49704 176584293 60 05000083100000003c000000c800000014000000010006008c9e288562f29747 ........<.................(.b..G..>K............ +7916 17.594169140 ::1:49704 ::1:52846 2961345428 28 05000203100000001c000000c8000000040000000100000001000000 ............................ +7921 17.594427347 ::1:52846 ::1:49704 176584353 60 05000083100000003c000000c900000014000000000001008c9e288562f29747 ........<.................(.b..G..>K............ +7923 17.594644547 ::1:49704 ::1:52846 2961345456 44 05000203100000002c000000c900000014000000000000000000000000000000 ........,................................... +7931 17.601020813 ::1:52846 ::1:49704 176584413 40 050000831000000028000000ca00000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +7933 17.601324797 ::1:49704 ::1:52846 2961345500 44 05000203100000002c000000ca0000001400000000000000000000005a7c8e7b ........,...................Z|.{...@.m.+..." +7935 17.602066755 ::1:52846 ::1:49704 176584453 108 05000083100000006c000000cb00000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........Z|.{ +7939 17.604135275 ::1:49704 ::1:52846 2961345544 28 05000203100000001c000000cb000000040000000100000001000000 ............................ +7941 17.604358673 ::1:52846 ::1:49704 176584561 60 05000083100000003c000000cc00000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........Z|.{ +7943 17.604527235 ::1:49704 ::1:52846 2961345572 92 05000203100000005c000000cc00000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +7945 17.604781866 ::1:52846 ::1:49704 176584621 132 050000831000000084000000cd0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Z|.{ +7947 17.604939222 ::1:49704 ::1:52846 2961345664 32 050002031000000020000000cd0000000800000001000000600d000001000000 ........ ...............`....... +7949 17.605096817 ::1:52846 ::1:49704 176584753 136 050000831000000088000000ce00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........Z|.{ +7951 17.605327368 ::1:49704 ::1:52846 2961345696 32 050002031000000020000000ce0000000800000001000000610d000001000000 ........ ...............a....... +7953 17.605477571 ::1:52846 ::1:49704 176584889 130 050000831000000082000000cf0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........Z|.{ +7955 17.605624676 ::1:49704 ::1:52846 2961345728 32 050002031000000020000000cf0000000800000001000000620d000001000000 ........ ...............b....... +7957 17.605767488 ::1:52846 ::1:49704 176585019 132 050000831000000084000000d00000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........Z|.{ +7959 17.605906248 ::1:49704 ::1:52846 2961345760 32 050002031000000020000000d00000000800000001000000630d000001000000 ........ ...............c....... +7961 17.606043577 ::1:52846 ::1:49704 176585151 142 05000083100000008e000000d100000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Z|.{ +7963 17.606180668 ::1:49704 ::1:52846 2961345792 32 050002031000000020000000d10000000800000001000000640d000001000000 ........ ...............d....... +7965 17.606400490 ::1:52846 ::1:49704 176585293 142 05000083100000008e000000d200000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Z|.{ +7967 17.606544018 ::1:49704 ::1:52846 2961345824 32 050002031000000020000000d20000000800000001000000650d000001000000 ........ ...............e....... +7969 17.606683493 ::1:52846 ::1:49704 176585435 154 05000083100000009a000000d300000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........Z|.{ +7971 17.606830597 ::1:49704 ::1:52846 2961345856 32 050002031000000020000000d30000000800000001000000660d000001000000 ........ ...............f....... +7973 17.606972933 ::1:52846 ::1:49704 176585589 128 050000831000000080000000d400000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........Z|.{ +7975 17.607166290 ::1:49704 ::1:52846 2961345888 32 050002031000000020000000d40000000800000001000000670d000001000000 ........ ...............g....... +7977 17.607393503 ::1:52846 ::1:49704 176585717 142 05000083100000008e000000d500000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........Z|.{ +7979 17.607552290 ::1:49704 ::1:52846 2961345920 32 050002031000000020000000d50000000800000001000000680d000001000000 ........ ...............h....... +7981 17.607693434 ::1:52846 ::1:49704 176585859 140 05000083100000008c000000d600000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........Z|.{ +7983 17.607832670 ::1:49704 ::1:52846 2961345952 32 050002031000000020000000d60000000800000001000000690d000001000000 ........ ...............i....... +7985 17.607970476 ::1:52846 ::1:49704 176585999 138 05000083100000008a000000d700000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........Z|.{ +7987 17.608107328 ::1:49704 ::1:52846 2961345984 32 050002031000000020000000d700000008000000010000006a0d000001000000 ........ ...............j....... +7992 17.622353792 ::1:52846 ::1:49704 176586137 60 05000083100000003c000000d800000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........@... +7994 17.622529268 ::1:49704 ::1:52846 2961346016 28 05000203100000001c000000d8000000040000000100000001000000 ............................ +7996 17.622694969 ::1:52846 ::1:49704 176586197 60 05000083100000003c000000d900000014000000000001008c9e288562f29747 ........<.................(.b..G..>K........@... +7998 17.622860432 ::1:49704 ::1:52846 2961346044 44 05000203100000002c000000d900000014000000000000000000000000000000 ........,................................... +8000 17.623151302 ::1:52846 ::1:49704 176586257 60 05000083100000003c000000da00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........|?.D +8002 17.623329401 ::1:49704 ::1:52846 2961346088 28 05000203100000001c000000da000000040000000100000001000000 ............................ +8004 17.623549223 ::1:52846 ::1:49704 176586317 60 05000083100000003c000000db00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K........|?.D +8006 17.623687506 ::1:49704 ::1:52846 2961346116 44 05000203100000002c000000db00000014000000000000000000000000000000 ........,................................... +8008 17.623985052 ::1:52846 ::1:49704 176586377 60 05000083100000003c000000dc00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K............ +8010 17.624123573 ::1:49704 ::1:52846 2961346160 28 05000203100000001c000000dc000000040000000100000001000000 ............................ +8012 17.624341965 ::1:52846 ::1:49704 176586437 60 05000083100000003c000000dd00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K............ +8014 17.624471188 ::1:49704 ::1:52846 2961346188 44 05000203100000002c000000dd00000014000000000000000000000000000000 ........,................................... +8016 17.624886274 ::1:52846 ::1:49704 176586497 60 05000083100000003c000000de00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K..........~. +8018 17.625103951 ::1:49704 ::1:52846 2961346232 28 05000203100000001c000000de000000040000000100000001000000 ............................ +8020 17.625294685 ::1:52846 ::1:49704 176586557 60 05000083100000003c000000df00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K..........~. +8022 17.625511408 ::1:49704 ::1:52846 2961346260 44 05000203100000002c000000df00000014000000000000000000000000000000 ........,................................... +8024 17.625776052 ::1:52846 ::1:49704 176586617 60 05000083100000003c000000e000000014000000010006008c9e288562f29747 ........<.................(.b..G..>K.........~.. +8026 17.625954628 ::1:49704 ::1:52846 2961346304 28 05000203100000001c000000e0000000040000000100000001000000 ............................ +8028 17.626117945 ::1:52846 ::1:49704 176586677 60 05000083100000003c000000e100000014000000000001008c9e288562f29747 ........<.................(.b..G..>K.........~.. +8030 17.626294136 ::1:49704 ::1:52846 2961346332 44 05000203100000002c000000e100000014000000000000000000000000000000 ........,................................... +6754 0.000000000 fe80::3608:256c:365:cc73:52889 fe80::3608:256c:365:cc73:55555 105902673 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +6814 0.157184124 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:52889 3538247809 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +2541 0.000000000 fe80::3608:256c:365:cc73:52861 fe80::3608:256c:365:cc73:55555 135767553 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +2567 0.074739695 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:52861 2039383242 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +1696 0.000000000 fe80::3608:256c:365:cc73:52850 fe80::3608:256c:365:cc73:55555 3992294557 77 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +1740 0.074244022 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:52850 209627307 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +5304 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150205663 1284 17030304ff0000000000000c9fb2826d05b14e7edea85f026c84f9c92f234c05 ...............m..N~.._.l.../#L.o.../....w.f.;l' +5306 0.006366730 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088534854 54 17030300310000000000000de22b8d02e5100434df410cfd9bd77b2a7b45397c ....1........+.....4.A....{*{E9|Ww.'...... ...=: +5308 0.007078648 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150206947 117 17030300700000000000000ca0645c6fa1efb034f64dabbd7592ea5d62c1e745 ....p........d\o...4.M..u..]b..E...W.x.p... :.I. +5310 0.010075808 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088534908 173 17030300a80000000000000de3e29d3711eb04db5e417f78d5644e936413af55 ...............7....^A.x.dN.d..U.'99Kf...[...?TB +5312 0.011754274 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150207064 1284 17030304ff0000000000000ca185935c8d3c9cc24fda66a92a5555fe94b1d945 ...............\.<..O.f.*UU....Ez]N.Ge+...D.@.!. +5314 0.017334700 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088535081 54 17030300310000000000000de48271f34c1378d0d6f15badedd4546de3f8aaaa ....1.........q.L.x...[...Tm....YK.Z.......X.... +5316 0.017703295 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150208348 117 17030300700000000000000ca20ef57bd3335fc80bf9af935a1c67c7f972a3fa ....p..........{.3_.....Z.g..r.....M..@...."..-. +5318 0.019843102 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088535135 173 17030300a80000000000000de57a0cac876b633255296c13bd54da1617354b02 .............z...kc2U)l..T...5K.........o......# +5339 0.029047966 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150208465 1285 17030305000000000000000ca3834b864b205d7fda657a79762a57af97a122fb ..............K.K ]..ezyv*W...".s...Y.0....a./}\ +5353 0.033905983 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088535308 54 17030300310000000000000de6382d67ab55b08447ebe6bb2877892ee304b8f3 ....1........8-g.U..G...(w......0AD......9>BG..l +5355 0.034271002 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150209750 130 170303007d0000000000000ca4056d13eb3beae16ca20cffc2ae9731998b0c15 ....}.........m..;..l......1....1?...U..0E..h..b +5369 0.036953211 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088535362 173 17030300a80000000000000de7a0cea6c00b1e6493db6f5a7b8d24eb5c258062 ...................d..oZ{.$.\%.b...*H]..a..6..K. +5371 0.037964582 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150209880 1285 17030305000000000000000ca5c15fca63cbd4068ea62f9a762bcc2c79d5928e .............._.c...../.v+.,y......x;2..l...d.U. +5373 0.042623758 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088535535 54 17030300310000000000000de8178af11bc5272b9e3f74e1c73aac333c8d5699 ....1.............'+.?t..:.3<.V..>..D........... +5375 0.043064833 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150211165 130 170303007d0000000000000ca6e21830ea46283355d9366db24edbbf35e0dc19 ....}..........0.F(3U.6m.N..5....38.]......+..fK +5377 0.047161818 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088535589 173 17030300a80000000000000de982204092e83bb4745d00b54d0eacc6e484ed8f .............. @..;.t]..M.........`/......nd.... +1541 0.000000000 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521057750 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +1543 0.000126362 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521057801 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +1545 0.002600908 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914047 1 0a . +1547 0.003661633 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521057824 5 160100006e ....n +1549 0.003914595 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521057829 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +1551 0.004522085 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914048 5 160100010f ..... +1553 0.004794836 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914053 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +1555 0.005777597 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521057939 5 1601000079 ....y +1557 0.005892277 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521057944 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +1559 0.006872892 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914324 5 140100001d ..... +1561 0.007015467 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914329 29 a11b3019a0030a0100a3120410010000009a5d94a8dce3864200000000 ..0...............].....B.... +1563 0.007637024 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521058065 21 1100000001000000151c2cb8aa49f43d01000000b6 ..........,..I.=..... +1565 0.007899284 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914358 21 11000000010000007d66fa5cd641350a010000000b ........}f.\.A5...... +1567 0.008335590 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521058086 1229 c9040000010000000ff9f1760e8ae5e902000000a9cfc5d1714381833d92ee13 ...........v............qC..=...E...L..l......=. +1569 0.008721828 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059315 21 1100000001000000c2394570a3331430030000001f .........9Ep.3.0..... +1571 0.011692286 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914379 21 1100000001000000faf9a9f31ce0a19c0200000024 ....................$ +7213 15.122888088 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059336 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +7215 15.123133183 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059387 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +7217 15.124687433 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914400 1 0a . +7219 15.125897169 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059410 5 160100006e ....n +7221 15.126060247 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059415 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +7223 15.126628637 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914401 5 160100010f ..... +7225 15.126779318 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914406 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +7227 15.127907515 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059525 5 1601000079 ....y +7229 15.128087997 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059530 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +7231 15.129137516 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914677 5 140100001d ..... +7233 15.129280567 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914682 29 a11b3019a0030a0100a3120410010000002bc4a28419a952ab00000000 ..0..............+.....R..... +7235 15.129900932 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059651 21 11000000010000007c360988a35351fd0100000094 ........|6...SQ...... +7237 15.130097866 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914711 21 11000000010000007e2ddf1b8806f0b101000000aa ........~-........... +7239 15.130628347 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521059672 1229 c9040000010000005afa1ea81bd2b02b020000008427f3c5a8c81de376d48fb3 ........Z......+.....'......v......,-.>.....&... +7241 15.131053448 fe80::3608:256c:365:cc73:52847 fe80::3608:256c:365:cc73:808 3521060901 21 1100000001000000dd1d97e969b4c3d303000000d9 ............i........ +7248 15.133224249 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:52847 339914732 21 1100000001000000a8024ae4da56ec14020000002a ..........J..V......* +6458 0.000000000 ::1:52888 ::1:808 77463136 45 000100010202246e65742e7463703a2f2f6c6f63616c686f73742f4c44532f41 ......$net.tcp://localhost/LDS/Announcement.. +6460 0.000144482 ::1:52888 ::1:808 77463181 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +6462 0.002829790 ::1:808 ::1:52888 2350760061 1 0a . +6464 0.003937483 ::1:52888 ::1:808 77463204 5 160100006e ....n +6466 0.004090786 ::1:52888 ::1:808 77463209 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +6468 0.004915953 ::1:808 ::1:52888 2350760062 5 160100010f ..... +6470 0.005084991 ::1:808 ::1:52888 2350760067 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +6472 0.006097794 ::1:52888 ::1:808 77463319 5 1601000079 ....y +6474 0.006240368 ::1:52888 ::1:808 77463324 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +6476 0.007319689 ::1:808 ::1:52888 2350760338 5 140100001d ..... +6478 0.007538795 ::1:808 ::1:52888 2350760343 29 a11b3019a0030a0100a312041001000000eb5369776fa2973400000000 ..0...............Siwo..4.... +6480 0.008308887 ::1:52888 ::1:808 77463445 21 1100000001000000a0cef61e3b982a8201000000d9 ............;.*...... +6482 0.008550406 ::1:808 ::1:52888 2350760372 21 11000000010000002311fe7d7e01775d01000000d6 ........#..}~.w]..... +6484 0.009061575 ::1:52888 ::1:808 77463466 2178 7e08000001000000cd69e3ab50ad8c90020000007e8c791822a0afb0b216ce11 ~........i..P.......~.y."........:.N.....W.=.... +6486 0.009419441 ::1:52888 ::1:808 77465644 21 110000000100000069dc9a579dd1902003000000a3 ........i..W... ..... +6488 0.011748314 ::1:808 ::1:52888 2350760393 21 11000000010000007963f941bf92acc30200000054 ........yc.A........T +6383 0.000000000 ::1:52887 ::1:808 4131589063 45 000100010202246e65742e7463703a2f2f6c6f63616c686f73742f4c44532f41 ......$net.tcp://localhost/LDS/Announcement.. +6385 0.000193119 ::1:52887 ::1:808 4131589108 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +6387 0.002419233 ::1:808 ::1:52887 762333303 1 0a . +6389 0.003624678 ::1:52887 ::1:808 4131589131 5 160100006e ....n +6391 0.003849268 ::1:52887 ::1:808 4131589136 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +6393 0.004481792 ::1:808 ::1:52887 762333304 5 160100010f ..... +6395 0.004711151 ::1:808 ::1:52887 762333309 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +6397 0.005561352 ::1:52887 ::1:808 4131589246 5 1601000079 ....y +6399 0.005770922 ::1:52887 ::1:808 4131589251 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +6401 0.006731272 ::1:808 ::1:52887 762333580 5 140100001d ..... +6403 0.006891966 ::1:808 ::1:52887 762333585 29 a11b3019a0030a0100a312041001000000dccd292f96c3726900000000 ..0................)/..ri.... +6405 0.007616758 ::1:52887 ::1:808 4131589372 21 1100000001000000187ea666d6cd6c9a01000000bd .........~.f..l...... +6407 0.008015156 ::1:808 ::1:52887 762333614 21 1100000001000000a13cc018f5f3db3101000000b9 .........<.....1..... +6409 0.008830070 ::1:52887 ::1:808 4131589393 2176 7c08000001000000e92da17dd91ba7b6020000008c106c73eddfef9e8fa71b37 |........-.}..........ls.......7i..:............ +6411 0.009265184 ::1:52887 ::1:808 4131591569 21 1100000001000000e690768b44d564710300000074 ..........v.D.dq....t +6413 0.011838675 ::1:808 ::1:52887 762333635 21 1100000001000000f1698bf71787e1b202000000f1 .........i........... +5916 0.000000000 ::1:52884 ::1:808 3395942811 45 000100010202246e65742e7463703a2f2f6c6f63616c686f73742f4c44532f41 ......$net.tcp://localhost/LDS/Announcement.. +5918 0.000185013 ::1:52884 ::1:808 3395942856 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +5920 0.002500772 ::1:808 ::1:52884 4175259351 1 0a . +5922 0.003749847 ::1:52884 ::1:808 3395942879 5 160100006e ....n +5924 0.003899574 ::1:52884 ::1:808 3395942884 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +5926 0.004579544 ::1:808 ::1:52884 4175259352 5 160100010f ..... +5928 0.004740953 ::1:808 ::1:52884 4175259357 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +5930 0.006139517 ::1:52884 ::1:808 3395942994 5 1601000079 ....y +5932 0.006273746 ::1:52884 ::1:808 3395942999 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +5934 0.007431984 ::1:808 ::1:52884 4175259628 5 140100001d ..... +5936 0.007613659 ::1:808 ::1:52884 4175259633 29 a11b3019a0030a0100a3120410010000008779e876d998e8c800000000 ..0...............y.v........ +5938 0.008352518 ::1:52884 ::1:808 3395943120 21 110000000100000050576eb928120c6101000000cd ........PWn.(..a..... +5940 0.008571625 ::1:808 ::1:52884 4175259662 21 11000000010000005ce41f5a97fcc10c010000009b ........\..Z......... +5944 0.009132862 ::1:52884 ::1:808 3395943141 2166 7208000001000000c5b21947e7877daa020000003b17230ccf005a39240c3254 r..........G..}.....;.#...Z9$.2T. ..e..?.o..q..k +5946 0.009494066 ::1:52884 ::1:808 3395945307 21 1100000001000000f6eb138aa0734993030000007e .............sI.....~ +5948 0.011921167 ::1:808 ::1:52884 4175259683 21 11000000010000006e23bfabbb6f5c300200000096 ........n#...o\0..... +5810 0.000000000 ::1:52883 ::1:808 1276039184 45 000100010202246e65742e7463703a2f2f6c6f63616c686f73742f4c44532f41 ......$net.tcp://localhost/LDS/Announcement.. +5812 0.000147581 ::1:52883 ::1:808 1276039229 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +5814 0.002868176 ::1:808 ::1:52883 877429731 1 0a . +5816 0.004692316 ::1:52883 ::1:808 1276039252 5 160100006e ....n +5818 0.004945517 ::1:52883 ::1:808 1276039257 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +5820 0.005649567 ::1:808 ::1:52883 877429732 5 160100010f ..... +5822 0.005800724 ::1:808 ::1:52883 877429737 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +5825 0.006825924 ::1:52883 ::1:808 1276039367 5 1601000079 ....y +5827 0.006941080 ::1:52883 ::1:808 1276039372 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +5829 0.007994890 ::1:808 ::1:52883 877430008 5 140100001d ..... +5830 0.008108616 ::1:808 ::1:52883 877430013 29 a11b3019a0030a0100a3120410010000000e27c41a89b6bea100000000 ..0...............'.......... +5831 0.008908033 ::1:52883 ::1:808 1276039493 21 110000000100000096655d9e4117ac9c01000000c2 .........e].A........ +5833 0.009135723 ::1:808 ::1:52883 877430042 21 1100000001000000c2d1e7614a78c7b1010000005d ...........aJx......] +5834 0.009946108 ::1:52883 ::1:808 1276039514 2164 7008000001000000e44e8340ba83972002000000fe6593642e83f23eefa2c58b p........N.@... .....e.d...>......T^...~...E.V4. +5836 0.010460615 ::1:52883 ::1:808 1276041678 21 1100000001000000998041ec0eba0b490300000019 ..........A....I..... +5838 0.012831688 ::1:808 ::1:52883 877430063 21 11000000010000008fba5f0aa28afa170200000031 .........._.........1 +1151 0.000000000 ::1:52845 ::1:135 3786845729 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1153 0.000540018 ::1:135 ::1:52845 422420543 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1286 0.118244171 ::1:52845 ::1:135 3786845885 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1288 0.119007111 ::1:135 ::1:52845 422420695 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1346 0.149204254 ::1:52845 ::1:135 3786846041 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1348 0.149860144 ::1:135 ::1:52845 422420847 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1428 0.267495871 ::1:52845 ::1:135 3786846197 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1430 0.268580198 ::1:135 ::1:52845 422420999 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1605 0.413010597 ::1:52845 ::1:135 3786846353 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1607 0.413783550 ::1:135 ::1:52845 422421151 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4063 7.233619452 ::1:52845 ::1:135 3786846509 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4065 7.234434605 ::1:135 ::1:52845 422421303 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4151 7.321335077 ::1:52845 ::1:135 3786846665 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4153 7.321945429 ::1:135 ::1:52845 422421455 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4327 7.411201477 ::1:52845 ::1:135 3786846821 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4329 7.411831617 ::1:135 ::1:52845 422421607 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4435 7.431134939 ::1:52845 ::1:135 3786846977 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4437 7.431813240 ::1:135 ::1:52845 422421759 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +4503 7.444909811 ::1:52845 ::1:135 3786847133 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +4508 7.445540190 ::1:135 ::1:52845 422421911 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +7927 17.603085756 ::1:52845 ::1:135 3786847289 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +7929 17.604224920 ::1:135 ::1:52845 422422063 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..ecf90e8 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..b614303 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_135-to-__1_52845.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_135-to-__1_52845.bin new file mode 100644 index 0000000..8cae186 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_135-to-__1_52845.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_49704-to-__1_52846.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_49704-to-__1_52846.bin new file mode 100644 index 0000000..b9942ce Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_49704-to-__1_52846.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52845-to-__1_135.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52845-to-__1_135.bin new file mode 100644 index 0000000..47fbe09 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52845-to-__1_135.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52846-to-__1_49704.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52846-to-__1_49704.bin new file mode 100644 index 0000000..99df3e4 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52846-to-__1_49704.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52883-to-__1_808.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52883-to-__1_808.bin new file mode 100644 index 0000000..e91fca9 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52883-to-__1_808.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52884-to-__1_808.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52884-to-__1_808.bin new file mode 100644 index 0000000..8158f41 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52884-to-__1_808.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52887-to-__1_808.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52887-to-__1_808.bin new file mode 100644 index 0000000..443adfd Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52887-to-__1_808.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52888-to-__1_808.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52888-to-__1_808.bin new file mode 100644 index 0000000..5c58fd3 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_52888-to-__1_808.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52883.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52883.bin new file mode 100644 index 0000000..d5dca6f Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52883.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52884.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52884.bin new file mode 100644 index 0000000..07421d3 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52884.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52887.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52887.bin new file mode 100644 index 0000000..2ba9976 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52887.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52888.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52888.bin new file mode 100644 index 0000000..5f5f60b Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-__1_808-to-__1_52888.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..f645e15 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52847-to-fe80__3608_256c_365_cc73_808.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52847-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..4c718a5 Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52847-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52850-to-fe80__3608_256c_365_cc73_55555.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52850-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..189e721 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52850-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,3 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 + diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52861-to-fe80__3608_256c_365_cc73_55555.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52861-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52861-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52889-to-fe80__3608_256c_365_cc73_55555.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52889-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_52889-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52850.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52850.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52850.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52861.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52861.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52861.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52889.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52889.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_52889.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..a67dffa Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_52847.bin b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_52847.bin new file mode 100644 index 0000000..119942d Binary files /dev/null and b/captures/044-frida-loopback-write-test-int-123456789/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_52847.bin differ diff --git a/captures/045-service-boundary-write-test-int-123456790/client-frida-events.tsv b/captures/045-service-boundary-write-test-int-123456790/client-frida-events.tsv new file mode 100644 index 0000000..5fd50d2 --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/client-frida-events.tsv @@ -0,0 +1,73 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T07:22:39.805Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T07:22:39.806Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T07:22:39.807Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T07:22:39.808Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T07:22:39.808Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T07:22:47.036Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T07:22:47.037Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T07:22:47.037Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T07:22:47.038Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T07:22:47.147Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xd6f080 "[""0x60a8ff0"",""0x1"",""0x1"",""0xd394249e"",""0x74794704""]" +2026-04-25T07:22:47.147Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T07:22:47.273Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9430648"",""0xd6ed44"",""0xa8382065""]" 0 1 0x2 +2026-04-25T07:22:47.273Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9430648"",""0xd6ed44"",""0xa8382065""]" 1 314 0x9430648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00 +2026-04-25T07:22:47.279Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9db7020"",""0xe4687a0b"",""0x9430214"",""0x9430204"",""0x641add04"",""0x64""]" 0 360 0x9db7020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00 +2026-04-25T07:22:47.357Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:47.357Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:22:47.358Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x94fdeb0"",""0xd6ed44"",""0xa8382065""]" 0 2 0x2 +2026-04-25T07:22:47.358Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x94fdeb0"",""0xd6ed44"",""0xa8382065""]" 1 39 0x94fdeb0 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:47.397Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9db7020"",""0xe4687a0b"",""0x9509584"",""0x9509574"",""0x641add04"",""0x64""]" 0 85 0x9db7020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:47.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x2c2"",""0x10040d0"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x2c2"",""0x10040d0"",""0x206"",""0x3"",""0x7a30f94""]" 0 706 0x10040d0 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:22:47.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x2c2"",""0x10040d0"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x2c2"",""0x10040d0"",""0x206"",""0x3"",""0x7a30f94""]" 1 518 0x3 +2026-04-25T07:22:47.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x2c2"",""0x10040d0"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x2c2"",""0x10040d0"",""0x206"",""0x3"",""0x7a30f94""]" 2 3 0x7a30f94 a8 a6 d6 +2026-04-25T07:22:47.466Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:22:47.536Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:47.536Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:22:47.562Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x97"",""0xffb890"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x97"",""0xffb890"",""0x206"",""0x3"",""0x7a30f94""]" 0 151 0xffb890 01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:22:47.562Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x97"",""0xffb890"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x97"",""0xffb890"",""0x206"",""0x3"",""0x7a30f94""]" 1 518 0x3 +2026-04-25T07:22:47.562Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x97"",""0xffb890"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x97"",""0xffb890"",""0x206"",""0x3"",""0x7a30f94""]" 2 3 0x7a30f94 a8 a6 d6 +2026-04-25T07:22:47.562Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:22:47.576Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x9db7020"",""0xe4687a5f"",""0x9427010"",""0x0"",""0x0"",""0x64""]" 0 46 0x9db7020 01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.628Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:47.649Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x5c"",""0x1000db8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x5c"",""0x1000db8"",""0x206"",""0x3"",""0x7a30f94""]" 0 92 0x1000db8 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c +2026-04-25T07:22:47.649Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x5c"",""0x1000db8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x5c"",""0x1000db8"",""0x206"",""0x3"",""0x7a30f94""]" 1 518 0x3 +2026-04-25T07:22:47.649Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x5c"",""0x1000db8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x5c"",""0x1000db8"",""0x206"",""0x3"",""0x7a30f94""]" 2 3 0x7a30f94 a8 a6 d6 +2026-04-25T07:22:47.649Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:22:47.679Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x6c"",""0x79ddfb8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x6c"",""0x79ddfb8"",""0x206"",""0x3"",""0x7a30f94""]" 0 108 0x79ddfb8 01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07 +2026-04-25T07:22:47.679Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x6c"",""0x79ddfb8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x6c"",""0x79ddfb8"",""0x206"",""0x3"",""0x7a30f94""]" 1 518 0x3 +2026-04-25T07:22:47.679Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x6c"",""0x79ddfb8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x6c"",""0x79ddfb8"",""0x206"",""0x3"",""0x7a30f94""]" 2 3 0x7a30f94 a8 a6 d6 +2026-04-25T07:22:47.680Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:22:47.753Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9db7020"",""0xe4687a5f"",""0x9427010"",""0x0"",""0x0"",""0x64""]" 0 46 0x9db7020 01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.807Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:47.921Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xd6f054 "[""0x60a8ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x75bcd16"",""0x0"",""0x1"",""0xd394249e"",""0x74794704""]" +2026-04-25T07:22:47.921Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T07:22:48.025Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x94fd9e8"",""0xd6ed44"",""0xa8382065""]" 0 2 0x2 +2026-04-25T07:22:48.025Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x94fd9e8"",""0xd6ed44"",""0xa8382065""]" 1 40 0x94fd9e8 123456790@18 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00 +2026-04-25T07:22:48.026Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x9db7020"",""0xe4687a0b"",""0x95099dc"",""0x95099cc"",""0x641add04"",""0x64""]" 0 86 0x9db7020 123456790@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00 +2026-04-25T07:22:48.054Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:48.054Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:22:48.103Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x33"",""0x79fbc58"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x33"",""0x79fbc58"",""0x206"",""0x3"",""0x7a30f94""]" 0 51 0x79fbc58 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:22:48.103Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x33"",""0x79fbc58"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x33"",""0x79fbc58"",""0x206"",""0x3"",""0x7a30f94""]" 1 518 0x3 +2026-04-25T07:22:48.103Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x33"",""0x79fbc58"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x33"",""0x79fbc58"",""0x206"",""0x3"",""0x7a30f94""]" 2 3 0x7a30f94 a8 a6 d6 +2026-04-25T07:22:48.104Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:22:48.132Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x58"",""0x79ddfb8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x58"",""0x79ddfb8"",""0x206"",""0x3"",""0x7a30f94""]" 0 88 0x79ddfb8 123456790@84 01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.132Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x58"",""0x79ddfb8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x58"",""0x79ddfb8"",""0x206"",""0x3"",""0x7a30f94""]" 1 518 0x3 +2026-04-25T07:22:48.132Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x58"",""0x79ddfb8"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x58"",""0x79ddfb8"",""0x206"",""0x3"",""0x7a30f94""]" 2 3 0x7a30f94 a8 a6 d6 +2026-04-25T07:22:48.132Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:22:48.160Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x9db7020"",""0xe4687a5f"",""0x9427010"",""0x0"",""0x0"",""0x64""]" 0 46 0x9db7020 01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.187Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:49.945Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x94fdcb8"",""0xd6ef00"",""0xa8382221""]" 0 1 0x2 +2026-04-25T07:22:49.945Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x94fdcb8"",""0xd6ef00"",""0xa8382221""]" 1 58 0x94fdcb8 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:22:49.946Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x9db7020"",""0xe4687bcf"",""0x95099dc"",""0x95099cc"",""0x641add04"",""0x0""]" 0 104 0x9db7020 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:22:49.986Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:49.986Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:22:49.987Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x94fda78"",""0xd6ef00"",""0xa8382221""]" 0 2 0x2 +2026-04-25T07:22:49.987Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x942c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x94fda78"",""0xd6ef00"",""0xa8382221""]" 1 37 0x94fda78 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:50.006Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x942c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9db7020"",""0xe4687bcf"",""0x94277f4"",""0x94277e4"",""0x641add04"",""0x0""]" 0 83 0x9db7020 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:50.038Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x2e"",""0xffb890"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x2e"",""0xffb890"",""0x206"",""0x3"",""0x7a30f94""]" 0 46 0xffb890 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.038Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x2e"",""0xffb890"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x2e"",""0xffb890"",""0x206"",""0x3"",""0x7a30f94""]" 1 518 0x3 +2026-04-25T07:22:50.038Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x942c738 "[""0x2e"",""0xffb890"",""0x76bef60"",""0x76ffedd8"",""0x942c744"",""0x2e"",""0xffb890"",""0x206"",""0x3"",""0x7a30f94""]" 2 3 0x7a30f94 a8 a6 d6 +2026-04-25T07:22:50.038Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:22:50.065Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:22:50.065Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/045-service-boundary-write-test-int-123456790/client-frida-exit.txt b/captures/045-service-boundary-write-test-int-123456790/client-frida-exit.txt new file mode 100644 index 0000000..43ca038 --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/client-frida-exit.txt @@ -0,0 +1 @@ +client_exit_code=1 diff --git a/captures/045-service-boundary-write-test-int-123456790/client-frida.stderr.txt b/captures/045-service-boundary-write-test-int-123456790/client-frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/045-service-boundary-write-test-int-123456790/client-frida.stdout.jsonl b/captures/045-service-boundary-write-test-int-123456790/client-frida.stdout.jsonl new file mode 100644 index 0000000..9e77539 --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/client-frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456790 --user-id=1 --duration=2 --write-delay-ms=750 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\045-service-boundary-write-test-int-123456790\harness.log --client=MxBoundary-045-service-boundary-write-test-int-123456790`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456790 --user-id=1 --duration=2 --write-delay-ms=750 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\045-service-boundary-write-test-int-123456790\harness.log --client=MxBoundary-045-service-boundary-write-test-int-123456790`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T07:22:39.805Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T07:22:39.806Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T07:22:39.807Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T07:22:39.808Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T07:22:39.808Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T07:22:47.036Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T07:22:47.037Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T07:22:47.037Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T07:22:47.038Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xd6f080","args":["0x60a8ff0","0x1","0x1","0xd394249e","0x74794704"],"time":"2026-04-25T07:22:47.147Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T07:22:47.147Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x942c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9430648","0xd6ed44","0xa8382065"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9430648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:22:47.273Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x1","0x168","0x9db7020","0xe4687a0b","0x9430214","0x9430204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9db7020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:22:47.279Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.357Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:22:47.357Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x942c738","0x1","0x1","0x2","0x2","0x0","0x27","0x94fdeb0","0xd6ed44","0xa8382065"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x94fdeb0","hex":"1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:22:47.358Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x2","0x55","0x9db7020","0xe4687a0b","0x9509584","0x9509574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9db7020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:22:47.397Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x942c738","args":["0x2c2","0x10040d0","0x76bef60","0x76ffedd8","0x942c744","0x2c2","0x10040d0","0x206","0x3","0x7a30f94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x10040d0","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a30f94","hex":"a8 a6 d6"}],"time":"2026-04-25T07:22:47.466Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:22:47.466Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.536Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:22:47.536Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x942c738","args":["0x97","0xffb890","0x76bef60","0x76ffedd8","0x942c744","0x97","0xffb890","0x206","0x3","0x7a30f94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xffb890","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a30f94","hex":"a8 a6 d6"}],"time":"2026-04-25T07:22:47.562Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:22:47.562Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x1","0x2e","0x9db7020","0xe4687a5f","0x9427010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9db7020","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.576Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.628Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x942c738","args":["0x5c","0x1000db8","0x76bef60","0x76ffedd8","0x942c744","0x5c","0x1000db8","0x206","0x3","0x7a30f94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x1000db8","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a30f94","hex":"a8 a6 d6"}],"time":"2026-04-25T07:22:47.649Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:22:47.649Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x942c738","args":["0x6c","0x79ddfb8","0x76bef60","0x76ffedd8","0x942c744","0x6c","0x79ddfb8","0x206","0x3","0x7a30f94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x79ddfb8","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a30f94","hex":"a8 a6 d6"}],"time":"2026-04-25T07:22:47.679Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:22:47.680Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x2","0x2e","0x9db7020","0xe4687a5f","0x9427010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9db7020","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.753Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.807Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xd6f054","args":["0x60a8ff0","0x1","0x1","0x3","0x0","0x75bcd16","0x0","0x1","0xd394249e","0x74794704"],"time":"2026-04-25T07:22:47.921Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T07:22:47.921Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x942c738","0x1","0x1","0x2","0x2","0x0","0x28","0x94fd9e8","0xd6ed44","0xa8382065"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x94fd9e8","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"}],"time":"2026-04-25T07:22:48.025Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x2","0x56","0x9db7020","0xe4687a0b","0x95099dc","0x95099cc","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x9db7020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"}],"time":"2026-04-25T07:22:48.026Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.054Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:22:48.054Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x942c738","args":["0x33","0x79fbc58","0x76bef60","0x76ffedd8","0x942c744","0x33","0x79fbc58","0x206","0x3","0x7a30f94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x79fbc58","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a30f94","hex":"a8 a6 d6"}],"time":"2026-04-25T07:22:48.103Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:22:48.104Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x942c738","args":["0x58","0x79ddfb8","0x76bef60","0x76ffedd8","0x942c744","0x58","0x79ddfb8","0x206","0x3","0x7a30f94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x79ddfb8","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a30f94","hex":"a8 a6 d6"}],"time":"2026-04-25T07:22:48.132Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:22:48.132Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x2","0x2e","0x9db7020","0xe4687a5f","0x9427010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x9db7020","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.160Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.187Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x942c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x94fdcb8","0xd6ef00","0xa8382221"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x94fdcb8","hex":"21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:22:49.945Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x1","0x68","0x9db7020","0xe4687bcf","0x95099dc","0x95099cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x9db7020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:22:49.946Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.986Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:22:49.986Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x942c738","0x1","0x1","0x2","0x2","0x0","0x25","0x94fda78","0xd6ef00","0xa8382221"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x94fda78","hex":"21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:22:49.987Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x942c738","args":["0x1","0x1","0x2","0x53","0x9db7020","0xe4687bcf","0x94277f4","0x94277e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9db7020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:22:50.006Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x942c738","args":["0x2e","0xffb890","0x76bef60","0x76ffedd8","0x942c744","0x2e","0xffb890","0x206","0x3","0x7a30f94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0xffb890","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a30f94","hex":"a8 a6 d6"}],"time":"2026-04-25T07:22:50.038Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:22:50.038Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.065Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:22:50.065Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/045-service-boundary-write-test-int-123456790/command.txt b/captures/045-service-boundary-write-test-int-123456790/command.txt new file mode 100644 index 0000000..54873a3 --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/command.txt @@ -0,0 +1,7 @@ +nmxsvc_pid=13944 +nmxsvc_path=C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvc.exe +dumpcap=C:\Program Files\Wireshark\dumpcap.exe +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +service_args=-p 13944 -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmxsvc-trace.js +client_args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456790 --user-id=1 --duration=2 --write-delay-ms=750 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\045-service-boundary-write-test-int-123456790\harness.log --client=MxBoundary-045-service-boundary-write-test-int-123456790 diff --git a/captures/045-service-boundary-write-test-int-123456790/dumpcap.stderr.txt b/captures/045-service-boundary-write-test-int-123456790/dumpcap.stderr.txt new file mode 100644 index 0000000..385c30c --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\045-service-boundary-write-test-int-123456790\loopback.pcapng diff --git a/captures/045-service-boundary-write-test-int-123456790/dumpcap.stdout.txt b/captures/045-service-boundary-write-test-int-123456790/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/045-service-boundary-write-test-int-123456790/harness.log b/captures/045-service-boundary-write-test-int-123456790/harness.log new file mode 100644 index 0000000..ed8557f --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/harness.log @@ -0,0 +1,19 @@ +2026-04-25T07:22:39.6881148+00:00 harness.start {"Scenario":"write","ClientName":"MxBoundary-045-service-boundary-write-test-int-123456790","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"123456790","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T07:22:46.6969727+00:00 mx.register.begin {"ClientName":"MxBoundary-045-service-boundary-write-test-int-123456790"} +2026-04-25T07:22:47.1426958+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T07:22:47.1426958+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T07:22:47.1447005+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:22:47.1466722+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:22:47.1476954+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:22:47.7516299+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"123456789"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:10:14.354 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:22:47.9185492+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"123456790"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T07:22:47.9215358+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T07:22:48.1593164+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"123456790"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:22:48.079 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:22:48.1893462+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T07:22:49.9305327+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:22:49.9315395+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:22:49.9315395+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:22:49.9315395+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:22:49.9315395+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T07:22:54.0211816+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T07:22:54.0271522+00:00 harness.stop {} diff --git a/captures/045-service-boundary-write-test-int-123456790/loopback.pcapng b/captures/045-service-boundary-write-test-int-123456790/loopback.pcapng new file mode 100644 index 0000000..f967e95 Binary files /dev/null and b/captures/045-service-boundary-write-test-int-123456790/loopback.pcapng differ diff --git a/captures/045-service-boundary-write-test-int-123456790/service-frida-events.tsv b/captures/045-service-boundary-write-test-int-123456790/service-frida-events.tsv new file mode 100644 index 0000000..a5d32d5 --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/service-frida-events.tsv @@ -0,0 +1,2102 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T07:22:34.537Z script.loaded [] +2026-04-25T07:22:34.537Z hook.installed NmxSvc.exe CFMCCallback.DataReceived [] +2026-04-25T07:22:34.537Z hook.installed NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine [] +2026-04-25T07:22:34.538Z hook.installed NmxSvc.exe CNmxControler.DataReceived [] +2026-04-25T07:22:34.538Z hook.installed NmxSvc.exe CNmxControler.TransferData [] +2026-04-25T07:22:34.539Z hook.installed NmxSvc.exe CNmxControler.LocalCallbackDataReceived [] +2026-04-25T07:22:34.539Z hook.installed NmxSvc.exe CNmxService.TransferData [] +2026-04-25T07:22:34.760Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f8654"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.760Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f8654"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.772Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f8654"",""0x0"",""0x27e701ad"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.772Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f8654"",""0x0"",""0x27e701ad"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.773Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:34.773Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:34.773Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:34.773Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:34.788Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b480c"",""0x27e700f5"",""0x23eefb0"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.788Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b480c"",""0x27e700f5"",""0x23eefb0"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.801Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b480c"",""0x0"",""0x27e701ad"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.801Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b480c"",""0x0"",""0x27e701ad"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.802Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:34.802Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:34.802Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:34.802Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:34.874Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b3944"",""0x27e700f5"",""0x23eefb0"",""0x51ec224"",""0x51ec180"",""0x7700459e""]" 0 46 0x51b3944 01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.874Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b3944"",""0x27e700f5"",""0x23eefb0"",""0x51ec224"",""0x51ec180"",""0x7700459e""]" 1 46 0x51b3944 01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.885Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b3944"",""0x0"",""0x27e701ad"",""0x51b3944"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b3944 01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.885Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b3944"",""0x0"",""0x27e701ad"",""0x51b3944"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b3944 01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.894Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:34.894Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:34.894Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:34.895Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:34.901Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18301a4"",""0x24a705d5"",""0x17eea90"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 46 0x18301a4 01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.901Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18301a4"",""0x24a705d5"",""0x17eea90"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 46 0x18301a4 01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.914Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18301a4"",""0x0"",""0x24a7068d"",""0x18301a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18301a4 01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.914Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18301a4"",""0x0"",""0x24a7068d"",""0x18301a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18301a4 01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.914Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:34.914Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:34.914Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:34.914Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:34.930Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.930Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.941Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.941Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00 +2026-04-25T07:22:34.942Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:34.942Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:34.942Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:34.942Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:34.980Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18378dc"",""0x27e700f5"",""0x23eefb0"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 0 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.980Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18378dc"",""0x27e700f5"",""0x23eefb0"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 1 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.991Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18378dc"",""0x0"",""0x27e701ad"",""0x18378dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.991Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18378dc"",""0x0"",""0x27e701ad"",""0x18378dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:34.992Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:34.992Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:34.992Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:34.992Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.268Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183bcfc"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.268Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183bcfc"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.281Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183bcfc"",""0x0"",""0x27e701ad"",""0x183bcfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.281Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183bcfc"",""0x0"",""0x27e701ad"",""0x183bcfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.282Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.282Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.282Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.282Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.299Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.299Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.312Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.312Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.320Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.320Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.320Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.320Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.328Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18c6a24"",""0x24a705d5"",""0x17eea90"",""0x51ecdb4"",""0x51ecd10"",""0x7700459e""]" 0 46 0x18c6a24 01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.328Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18c6a24"",""0x24a705d5"",""0x17eea90"",""0x51ecdb4"",""0x51ecd10"",""0x7700459e""]" 1 46 0x18c6a24 01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.339Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18c6a24"",""0x0"",""0x24a7068d"",""0x18c6a24"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18c6a24 01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.339Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18c6a24"",""0x0"",""0x24a7068d"",""0x18c6a24"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18c6a24 01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.339Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.339Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.339Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.339Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.414Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x24a705d5"",""0x17eea90"",""0x51ecdb4"",""0x51ecd10"",""0x7700459e""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.414Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x24a705d5"",""0x17eea90"",""0x51ecdb4"",""0x51ecd10"",""0x7700459e""]" 1 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.427Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b480c"",""0x0"",""0x24a7068d"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.427Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b480c"",""0x0"",""0x24a7068d"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00 +2026-04-25T07:22:35.428Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.428Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.428Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.428Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.442Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.442Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.453Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.453Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.453Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.453Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.454Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.454Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.529Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18212a4"",""0x27e700f5"",""0x23eefb0"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.529Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18212a4"",""0x27e700f5"",""0x23eefb0"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.541Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x27e701ad"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.541Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x27e701ad"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.541Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.542Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.542Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.542Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.754Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183bcfc"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.754Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183bcfc"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.768Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183bcfc"",""0x0"",""0x27e701ad"",""0x183bcfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.768Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183bcfc"",""0x0"",""0x27e701ad"",""0x183bcfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183bcfc 01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.769Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.769Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.769Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.769Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x27e700f5"",""0x23eefb0"",""0x51ebc5c"",""0x51ebbb8"",""0x7700459e""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x27e700f5"",""0x23eefb0"",""0x51ebc5c"",""0x51ebbb8"",""0x7700459e""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.804Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x27e701ad"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.804Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x27e701ad"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.805Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.805Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.805Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.805Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.860Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x27e700f5"",""0x23eefb0"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.860Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x27e700f5"",""0x23eefb0"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.871Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x27e701ad"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.871Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x27e701ad"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.883Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.883Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.883Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.884Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.892Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b1734"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.892Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b1734"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.906Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b1734"",""0x0"",""0x24a7068d"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.906Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b1734"",""0x0"",""0x24a7068d"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.907Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.907Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.907Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.907Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.934Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.934Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:35.934Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.935Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.935Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.935Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:35.970Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x27e700f5"",""0x23eefb0"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.970Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x27e700f5"",""0x23eefb0"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.982Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x27e701ad"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.982Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x27e701ad"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:35.983Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:35.983Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:35.983Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:35.983Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.273Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f8654"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.273Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f8654"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.284Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f8654"",""0x0"",""0x27e701ad"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.284Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f8654"",""0x0"",""0x27e701ad"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f8654 01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.284Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.285Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.285Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.285Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.298Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.298Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.309Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.309Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.310Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.310Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.310Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.310Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.404Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x27e700f5"",""0x23eefb0"",""0x9593fc"",""0x959358"",""0x7700459e""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.404Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x27e700f5"",""0x23eefb0"",""0x9593fc"",""0x959358"",""0x7700459e""]" 1 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.414Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18256c4"",""0x0"",""0x27e701ad"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.414Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18256c4"",""0x0"",""0x27e701ad"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.437Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.437Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.437Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.437Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.442Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523dfc4"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x523dfc4 01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.442Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523dfc4"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x523dfc4 01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.455Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523dfc4"",""0x0"",""0x24a7068d"",""0x523dfc4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523dfc4 01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.455Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523dfc4"",""0x0"",""0x24a7068d"",""0x523dfc4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523dfc4 01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.456Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.456Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.456Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.456Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.463Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x19265d4"",""0x1926530"",""0x7700459e""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.463Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x19265d4"",""0x1926530"",""0x7700459e""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.477Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.477Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.477Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.477Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.518Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.518Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.529Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.529Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.529Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.529Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.529Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.530Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.772Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b6c5c"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.772Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b6c5c"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.786Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b6c5c"",""0x0"",""0x255c0055"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.786Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b6c5c"",""0x0"",""0x255c0055"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.786Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.787Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.787Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.787Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.805Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1915f6c"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 98 0x1915f6c 01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.805Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1915f6c"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 98 0x1915f6c 01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.822Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1915f6c"",""0x0"",""0x255c0055"",""0x1915f6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1915f6c 01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.822Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1915f6c"",""0x0"",""0x255c0055"",""0x1915f6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1915f6c 01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.823Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.823Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.823Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.823Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.841Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523688c"",""0x255c009d"",""0x85efc8"",""0x95886c"",""0x9587c8"",""0x7700459e""]" 0 46 0x523688c 01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.841Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523688c"",""0x255c009d"",""0x85efc8"",""0x95886c"",""0x9587c8"",""0x7700459e""]" 1 46 0x523688c 01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.853Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523688c"",""0x0"",""0x255c0055"",""0x523688c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523688c 01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.853Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523688c"",""0x0"",""0x255c0055"",""0x523688c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523688c 01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.862Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.862Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.862Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.863Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.868Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x24a705d5"",""0x17eea90"",""0x9599c4"",""0x959920"",""0x7700459e""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.868Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x24a705d5"",""0x17eea90"",""0x9599c4"",""0x959920"",""0x7700459e""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.880Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x24a7068d"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.880Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x24a7068d"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.881Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.881Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.881Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.881Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.915Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b1734"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.915Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b1734"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.926Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b1734"",""0x0"",""0x24a7068d"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.926Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b1734"",""0x0"",""0x24a7068d"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:36.927Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.927Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.927Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.927Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:36.954Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18836ec"",""0x24a705d5"",""0x17eea90"",""0x17f23cc"",""0x17f2328"",""0x7700459e""]" 0 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.954Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18836ec"",""0x24a705d5"",""0x17eea90"",""0x17f23cc"",""0x17f2328"",""0x7700459e""]" 1 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.965Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18836ec"",""0x0"",""0x24a7068d"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.965Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18836ec"",""0x0"",""0x24a7068d"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:36.966Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:36.966Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:36.966Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:36.966Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x24a705d5"",""0x17eea90"",""0x17f011c"",""0x17f0078"",""0x7700459e""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x24a705d5"",""0x17eea90"",""0x17f011c"",""0x17f0078"",""0x7700459e""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.280Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x24a7068d"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.280Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x24a7068d"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.280Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.281Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.281Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.281Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.302Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b1734"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.302Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b1734"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.321Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b1734"",""0x0"",""0x24a7068d"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.321Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b1734"",""0x0"",""0x24a7068d"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b1734 01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00 +2026-04-25T07:22:37.322Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.322Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.322Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.322Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.399Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x24a705d5"",""0x17eea90"",""0x51ebc5c"",""0x51ebbb8"",""0x7700459e""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.399Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x24a705d5"",""0x17eea90"",""0x51ebc5c"",""0x51ebbb8"",""0x7700459e""]" 1 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.422Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7068d"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.422Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7068d"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.445Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.445Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.445Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.445Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.453Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.453Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.465Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.465Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.466Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.466Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.466Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.466Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.475Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f8654"",""0x255c009d"",""0x85efc8"",""0x95886c"",""0x9587c8"",""0x7700459e""]" 0 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.475Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f8654"",""0x255c009d"",""0x85efc8"",""0x95886c"",""0x9587c8"",""0x7700459e""]" 1 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.492Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f8654"",""0x0"",""0x255c0055"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.492Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f8654"",""0x0"",""0x255c0055"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.500Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.500Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.501Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.501Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.506Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18c14fc"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 46 0x18c14fc 01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.506Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18c14fc"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 46 0x18c14fc 01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.517Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18c14fc"",""0x0"",""0x27e701ad"",""0x18c14fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18c14fc 01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.517Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18c14fc"",""0x0"",""0x27e701ad"",""0x18c14fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18c14fc 01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.517Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.517Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.518Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.518Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.758Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.758Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18323b4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.770Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.770Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x27e701ad"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.770Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.770Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.770Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.771Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.784Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x27e700f5"",""0x23eefb0"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.784Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x27e700f5"",""0x23eefb0"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.796Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x27e701ad"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.796Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x27e701ad"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.796Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.796Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.796Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.796Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.827Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18245bc"",""0x27e700f5"",""0x23eefb0"",""0x8dcecc"",""0x8dce28"",""0x7700459e""]" 0 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.827Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18245bc"",""0x27e700f5"",""0x23eefb0"",""0x8dcecc"",""0x8dce28"",""0x7700459e""]" 1 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.847Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18245bc"",""0x0"",""0x27e701ad"",""0x18245bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.847Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18245bc"",""0x0"",""0x27e701ad"",""0x18245bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.847Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.847Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.847Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.847Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.855Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x187817c"",""0x18780d8"",""0x7700459e""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.855Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x187817c"",""0x18780d8"",""0x7700459e""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.868Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.868Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:37.869Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.869Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.869Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.869Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:37.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:37.930Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:37.930Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:37.930Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:37.930Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.044Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.044Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.056Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.056Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.056Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.056Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.056Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.056Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18814dc"",""0x255c009d"",""0x85efc8"",""0x17f011c"",""0x17f0078"",""0x7700459e""]" 0 98 0x18814dc 01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18814dc"",""0x255c009d"",""0x85efc8"",""0x17f011c"",""0x17f0078"",""0x7700459e""]" 1 98 0x18814dc 01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.274Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18814dc"",""0x0"",""0x255c0055"",""0x18814dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18814dc 01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.274Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18814dc"",""0x0"",""0x255c0055"",""0x18814dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18814dc 01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.275Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.275Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.275Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.276Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 0 98 0x191b494 01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 1 98 0x191b494 01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.301Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191b494 01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.301Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191b494 01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.301Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.301Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.302Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.302Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.374Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1905274"",""0x255c009d"",""0x85efc8"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.374Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1905274"",""0x255c009d"",""0x85efc8"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.385Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1905274"",""0x0"",""0x255c0055"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.385Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1905274"",""0x0"",""0x255c0055"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.386Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.386Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.386Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.408Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x27e700f5"",""0x23eefb0"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.408Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x27e700f5"",""0x23eefb0"",""0x517365c"",""0x51735b8"",""0x7700459e""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.426Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x27e701ad"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.426Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x27e701ad"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.427Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.427Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.427Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.428Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.428Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.465Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x24a705d5"",""0x17eea90"",""0x17f011c"",""0x17f0078"",""0x7700459e""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.465Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x24a705d5"",""0x17eea90"",""0x17f011c"",""0x17f0078"",""0x7700459e""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.487Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x24a7068d"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.487Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x24a7068d"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.487Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.488Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.488Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.488Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.591Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b6c5c"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.591Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b6c5c"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.602Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7068d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.602Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7068d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.602Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.602Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.602Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.602Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b6c5c"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b6c5c"",""0x24a705d5"",""0x17eea90"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b6c5c"",""0x0"",""0x24a7068d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b6c5c"",""0x0"",""0x24a7068d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b6c5c 01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.780Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.780Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.780Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.780Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.799Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182df04"",""0x24a705d5"",""0x17eea90"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 0 98 0x182df04 01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.799Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182df04"",""0x24a705d5"",""0x17eea90"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 1 98 0x182df04 01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.813Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182df04"",""0x0"",""0x24a7068d"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182df04 01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.813Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182df04"",""0x0"",""0x24a7068d"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182df04 01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.814Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.814Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.814Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.814Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.828Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b1734"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.828Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b1734"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.839Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b1734"",""0x0"",""0x255c0055"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.839Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b1734"",""0x0"",""0x255c0055"",""0x51b1734"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b1734 01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.840Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.840Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.840Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.840Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.920Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.920Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.940Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.940Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00 +2026-04-25T07:22:38.948Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.948Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.949Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.949Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:38.955Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5235784"",""0x24a705d5"",""0x17eea90"",""0x17f2f5c"",""0x17f2eb8"",""0x7700459e""]" 0 46 0x5235784 01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.955Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5235784"",""0x24a705d5"",""0x17eea90"",""0x17f2f5c"",""0x17f2eb8"",""0x7700459e""]" 1 46 0x5235784 01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.967Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5235784"",""0x0"",""0x24a7068d"",""0x5235784"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5235784 01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.967Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5235784"",""0x0"",""0x24a7068d"",""0x5235784"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5235784 01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:38.967Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:38.967Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:38.967Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:38.967Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.030Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1888c14"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 0 46 0x1888c14 01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.030Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1888c14"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 1 46 0x1888c14 01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.045Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1888c14"",""0x0"",""0x24a7068d"",""0x1888c14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1888c14 01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.045Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1888c14"",""0x0"",""0x24a7068d"",""0x1888c14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1888c14 01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.045Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.046Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.046Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.046Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.265Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523025c"",""0x24a705d5"",""0x17eea90"",""0x17f1274"",""0x17f11d0"",""0x7700459e""]" 0 98 0x523025c 01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.265Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523025c"",""0x24a705d5"",""0x17eea90"",""0x17f1274"",""0x17f11d0"",""0x7700459e""]" 1 98 0x523025c 01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.279Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523025c"",""0x0"",""0x24a7068d"",""0x523025c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x523025c 01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.279Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523025c"",""0x0"",""0x24a7068d"",""0x523025c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x523025c 01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.279Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.279Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.279Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.279Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.293Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.293Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.304Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x24a7068d"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.304Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x24a7068d"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.305Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.305Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.305Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.305Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.357Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1905274"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.357Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1905274"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.369Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1905274"",""0x0"",""0x24a7068d"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.369Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1905274"",""0x0"",""0x24a7068d"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1905274 01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.377Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.377Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.377Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.378Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.383Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b3704"",""0x255c009d"",""0x85efc8"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.383Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b3704"",""0x255c009d"",""0x85efc8"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 1 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b3704"",""0x0"",""0x255c0055"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b3704"",""0x0"",""0x255c0055"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.395Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.395Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.395Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.395Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.424Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18389e4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 0 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.424Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18389e4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 1 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.438Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18389e4"",""0x0"",""0x255c0055"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.438Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18389e4"",""0x0"",""0x255c0055"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.438Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.438Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.438Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.438Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.473Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x255c009d"",""0x85efc8"",""0x8da654"",""0x8da5b0"",""0x7700459e""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.473Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x255c009d"",""0x85efc8"",""0x8da654"",""0x8da5b0"",""0x7700459e""]" 1 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.485Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c5744"",""0x0"",""0x255c0055"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.485Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c5744"",""0x0"",""0x255c0055"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.486Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.486Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.486Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.486Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.772Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.772Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.787Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x255c0055"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.787Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x255c0055"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.787Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.787Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.787Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.787Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.805Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.805Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.825Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x255c0055"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.825Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x255c0055"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.826Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.826Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.826Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.826Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.910Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18389e4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 0 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.910Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18389e4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 1 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.920Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18389e4"",""0x0"",""0x255c0055"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.920Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18389e4"",""0x0"",""0x255c0055"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.936Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.936Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.936Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.937Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.942Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18825e4"",""0x24a705d5"",""0x17eea90"",""0x17f1274"",""0x17f11d0"",""0x7700459e""]" 0 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.942Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18825e4"",""0x24a705d5"",""0x17eea90"",""0x17f1274"",""0x17f11d0"",""0x7700459e""]" 1 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.954Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18825e4"",""0x0"",""0x24a7068d"",""0x18825e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.954Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18825e4"",""0x0"",""0x24a7068d"",""0x18825e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:39.954Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.955Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.955Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.955Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:39.962Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.962Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.974Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.974Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:39.974Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:39.974Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:39.975Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:39.975Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.022Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x523246c"",""0x27e700f5"",""0x23eefb0"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.022Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x523246c"",""0x27e700f5"",""0x23eefb0"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 1 46 0x523246c 01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.039Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523246c"",""0x0"",""0x27e701ad"",""0x523246c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.039Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523246c"",""0x0"",""0x27e701ad"",""0x523246c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523246c 01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.039Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.039Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.040Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.040Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.278Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.278Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.293Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x27e701ad"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.293Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x27e701ad"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.293Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.294Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.294Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.294Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.309Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18c03f4"",""0x27e700f5"",""0x23eefb0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 0 98 0x18c03f4 01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.309Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18c03f4"",""0x27e700f5"",""0x23eefb0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 1 98 0x18c03f4 01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.328Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18c03f4"",""0x0"",""0x27e701ad"",""0x18c03f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18c03f4 01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.328Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18c03f4"",""0x0"",""0x27e701ad"",""0x18c03f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18c03f4 01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.336Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.336Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.336Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.336Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.342Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x190858c"",""0x24a705d5"",""0x17eea90"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 0 46 0x190858c 01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.342Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x190858c"",""0x24a705d5"",""0x17eea90"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 1 46 0x190858c 01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.352Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x190858c"",""0x0"",""0x24a7068d"",""0x190858c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x190858c 01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.352Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x190858c"",""0x0"",""0x24a7068d"",""0x190858c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x190858c 01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.353Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.353Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.353Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.353Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.414Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.414Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.429Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x24a7068d"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.429Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x24a7068d"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00 +2026-04-25T07:22:40.429Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.429Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.430Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.430Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.453Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1886a04"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 0 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.453Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1886a04"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 1 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.469Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1886a04"",""0x0"",""0x24a7068d"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.469Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1886a04"",""0x0"",""0x24a7068d"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.478Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.478Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.479Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.479Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.486Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.486Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.499Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.499Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.499Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.500Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.500Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.500Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.765Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1888c14"",""0x27e700f5"",""0x23eefb0"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 0 98 0x1888c14 01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.765Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1888c14"",""0x27e700f5"",""0x23eefb0"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 1 98 0x1888c14 01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.780Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1888c14"",""0x0"",""0x27e701ad"",""0x1888c14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1888c14 01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.780Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1888c14"",""0x0"",""0x27e701ad"",""0x1888c14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1888c14 01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.781Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.781Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.781Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.781Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.809Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.809Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.809Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.809Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.809Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.810Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.890Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.890Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.904Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b6c5c"",""0x0"",""0x27e701ad"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.904Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b6c5c"",""0x0"",""0x27e701ad"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.911Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.911Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.911Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.919Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.926Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1886a04"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 0 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.926Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1886a04"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 1 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.936Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1886a04"",""0x0"",""0x24a7068d"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.936Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1886a04"",""0x0"",""0x24a7068d"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1886a04 01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.938Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.938Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.938Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.938Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.944Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.944Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.956Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x255c0055"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.956Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x255c0055"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:40.957Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:40.957Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:40.957Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:40.957Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:40.999Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:40.999Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.010Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.010Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.010Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.010Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.010Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.010Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.267Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1905274"",""0x255c009d"",""0x85efc8"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 98 0x1905274 01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.267Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1905274"",""0x255c009d"",""0x85efc8"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 98 0x1905274 01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.279Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1905274"",""0x0"",""0x255c0055"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1905274 01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.279Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1905274"",""0x0"",""0x255c0055"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1905274 01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.280Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.280Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.280Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.280Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x183df0c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x183df0c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.307Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x255c0055"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.307Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x255c0055"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.307Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.307Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.307Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.307Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.324Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x190858c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 0 46 0x190858c 01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.324Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x190858c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 1 46 0x190858c 01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.335Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x190858c"",""0x0"",""0x255c0055"",""0x190858c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x190858c 01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.335Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x190858c"",""0x0"",""0x255c0055"",""0x190858c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x190858c 01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.343Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.343Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.343Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.343Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.348Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.348Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.361Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x24a7068d"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.361Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x24a7068d"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.361Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.361Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.361Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.361Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.430Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.430Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.431Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.431Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.431Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.431Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.543Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18356cc"",""0x24a705d5"",""0x17eea90"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.543Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18356cc"",""0x24a705d5"",""0x17eea90"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.554Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18356cc"",""0x0"",""0x24a7068d"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.554Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18356cc"",""0x0"",""0x24a7068d"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.554Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.554Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.554Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.554Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.765Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523025c"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 0 98 0x523025c 01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.765Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523025c"",""0x24a705d5"",""0x17eea90"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 1 98 0x523025c 01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.778Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523025c"",""0x0"",""0x24a7068d"",""0x523025c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x523025c 01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.778Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523025c"",""0x0"",""0x24a7068d"",""0x523025c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x523025c 01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.779Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.779Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.779Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.779Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.795Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f312c"",""0x24a705d5"",""0x17eea90"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.795Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f312c"",""0x24a705d5"",""0x17eea90"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.807Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x24a7068d"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.807Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x24a7068d"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.807Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.807Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.807Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.808Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.872Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.872Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.883Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.883Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.891Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.891Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.891Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.892Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.897Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x190858c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 0 46 0x190858c 01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.897Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x190858c"",""0x255c009d"",""0x85efc8"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 1 46 0x190858c 01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.908Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x190858c"",""0x0"",""0x255c0055"",""0x190858c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x190858c 01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.908Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x190858c"",""0x0"",""0x255c0055"",""0x190858c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x190858c 01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.909Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.909Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.909Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.909Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.923Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.923Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.935Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x24a7068d"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.935Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x24a7068d"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:41.935Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.935Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.935Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.936Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:41.979Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1914e64"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.979Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1914e64"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.992Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x24a7068d"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.992Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x24a7068d"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:41.993Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:41.993Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:41.993Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:41.993Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1901f5c"",""0x24a705d5"",""0x17eea90"",""0x1923d5c"",""0x1923cb8"",""0x7700459e""]" 0 98 0x1901f5c 01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1901f5c"",""0x24a705d5"",""0x17eea90"",""0x1923d5c"",""0x1923cb8"",""0x7700459e""]" 1 98 0x1901f5c 01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.274Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1901f5c"",""0x0"",""0x24a7068d"",""0x1901f5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1901f5c 01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.274Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1901f5c"",""0x0"",""0x24a7068d"",""0x1901f5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1901f5c 01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.274Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.274Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.275Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.275Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.299Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.299Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00 +2026-04-25T07:22:42.307Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.307Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.307Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.307Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.312Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x183ce04"",""0x255c009d"",""0x85efc8"",""0x51ee4d4"",""0x51ee430"",""0x7700459e""]" 0 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.312Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x183ce04"",""0x255c009d"",""0x85efc8"",""0x51ee4d4"",""0x51ee430"",""0x7700459e""]" 1 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.324Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x183ce04"",""0x0"",""0x255c0055"",""0x183ce04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.324Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x183ce04"",""0x0"",""0x255c0055"",""0x183ce04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.324Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.325Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.325Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.325Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x522f154"",""0x255c009d"",""0x85efc8"",""0x51ee4d4"",""0x51ee430"",""0x7700459e""]" 0 98 0x522f154 01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x522f154"",""0x255c009d"",""0x85efc8"",""0x51ee4d4"",""0x51ee430"",""0x7700459e""]" 1 98 0x522f154 01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.440Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x522f154"",""0x0"",""0x255c0055"",""0x522f154"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x522f154 01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.440Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x522f154"",""0x0"",""0x255c0055"",""0x522f154"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x522f154 01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.441Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.441Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.441Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.441Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.457Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1905274"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 0 46 0x1905274 01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.457Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1905274"",""0x24a705d5"",""0x17eea90"",""0x187a9f4"",""0x187a950"",""0x7700459e""]" 1 46 0x1905274 01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.469Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1905274"",""0x0"",""0x24a7068d"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1905274 01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.469Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1905274"",""0x0"",""0x24a7068d"",""0x1905274"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1905274 01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.469Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.470Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.470Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.470Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.541Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x24a705d5"",""0x17eea90"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.541Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x24a705d5"",""0x17eea90"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.569Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x24a7068d"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.569Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x24a7068d"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.570Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.570Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.570Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.570Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.770Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.770Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.787Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x24a7068d"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.787Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x24a7068d"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.787Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.787Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.788Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.788Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.801Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f975c"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x51f975c 01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.801Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f975c"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x51f975c 01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.814Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f975c"",""0x0"",""0x24a7068d"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f975c 01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.814Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f975c"",""0x0"",""0x24a7068d"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f975c 01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.814Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.814Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.814Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.814Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.859Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1829ae4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.859Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1829ae4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.870Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1829ae4"",""0x0"",""0x24a7068d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.870Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1829ae4"",""0x0"",""0x24a7068d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.878Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.878Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.879Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.879Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.884Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18323b4"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.884Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18323b4"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.895Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18323b4"",""0x0"",""0x255c0055"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.895Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18323b4"",""0x0"",""0x255c0055"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18323b4 01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.896Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.896Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.896Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.896Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.914Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.914Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.926Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.926Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:42.927Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.927Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.927Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.927Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:42.969Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18825e4"",""0x255c009d"",""0x85efc8"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 0 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.969Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18825e4"",""0x255c009d"",""0x85efc8"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 1 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.981Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18825e4"",""0x0"",""0x255c0055"",""0x18825e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.981Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18825e4"",""0x0"",""0x255c0055"",""0x18825e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18825e4 01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:42.981Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:42.981Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:42.981Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:42.982Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18323b4"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18323b4"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.282Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x255c0055"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.282Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18323b4"",""0x0"",""0x255c0055"",""0x18323b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18323b4 01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.283Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.283Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.283Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.283Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.297Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.297Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.308Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x255c0055"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.308Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x255c0055"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.309Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.309Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.309Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.309Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.410Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18356cc"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.410Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18356cc"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.426Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18356cc"",""0x0"",""0x255c0055"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.426Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18356cc"",""0x0"",""0x255c0055"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.441Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.442Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.442Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.442Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.447Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.447Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.463Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.463Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.463Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.463Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.464Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.464Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.469Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x24a705d5"",""0x17eea90"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.469Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x24a705d5"",""0x17eea90"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.481Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x24a7068d"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.481Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x24a7068d"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.481Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.481Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.481Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.481Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.526Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.526Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.527Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.527Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.527Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.527Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51ad314"",""0x24a705d5"",""0x17eea90"",""0x1923d5c"",""0x1923cb8"",""0x7700459e""]" 0 98 0x51ad314 01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51ad314"",""0x24a705d5"",""0x17eea90"",""0x1923d5c"",""0x1923cb8"",""0x7700459e""]" 1 98 0x51ad314 01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.781Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51ad314"",""0x0"",""0x24a7068d"",""0x51ad314"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51ad314 01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.781Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51ad314"",""0x0"",""0x24a7068d"",""0x51ad314"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51ad314 01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.782Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.782Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.782Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.782Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.800Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1886a04"",""0x24a705d5"",""0x17eea90"",""0x524a514"",""0x524a470"",""0x7700459e""]" 0 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.800Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1886a04"",""0x24a705d5"",""0x17eea90"",""0x524a514"",""0x524a470"",""0x7700459e""]" 1 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.817Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1886a04"",""0x0"",""0x24a7068d"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.817Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1886a04"",""0x0"",""0x24a7068d"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.818Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.818Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.818Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.818Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.843Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x24a705d5"",""0x17eea90"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.843Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x24a705d5"",""0x17eea90"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 1 46 0x523246c 01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.854Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523246c"",""0x0"",""0x24a7068d"",""0x523246c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.854Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523246c"",""0x0"",""0x24a7068d"",""0x523246c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523246c 01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.854Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.854Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.854Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.854Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.885Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.885Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 1 46 0x5233574 01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.912Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5233574"",""0x0"",""0x27e701ad"",""0x5233574"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.912Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5233574"",""0x0"",""0x27e701ad"",""0x5233574"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5233574 01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:43.926Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.926Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.926Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.927Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:43.937Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.937Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.961Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.961Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a7068d"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00 +2026-04-25T07:22:43.963Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:43.963Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:43.964Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:43.964Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.064Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182df04"",""0x24a705d5"",""0x17eea90"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 0 46 0x182df04 01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.064Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182df04"",""0x24a705d5"",""0x17eea90"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 1 46 0x182df04 01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.080Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182df04"",""0x0"",""0x24a7068d"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182df04 01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.080Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182df04"",""0x0"",""0x24a7068d"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182df04 01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.080Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.080Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.081Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.081Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x24a705d5"",""0x17eea90"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.281Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x24a7068d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.281Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x24a7068d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.281Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.281Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.281Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.282Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.296Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18836ec"",""0x24a705d5"",""0x17eea90"",""0x524a514"",""0x524a470"",""0x7700459e""]" 0 98 0x18836ec 01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.296Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18836ec"",""0x24a705d5"",""0x17eea90"",""0x524a514"",""0x524a470"",""0x7700459e""]" 1 98 0x18836ec 01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.308Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18836ec"",""0x0"",""0x24a7068d"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18836ec 01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.308Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18836ec"",""0x0"",""0x24a7068d"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18836ec 01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.308Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.308Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.308Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.308Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x24a705d5"",""0x17eea90"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x24a705d5"",""0x17eea90"",""0x52476d4"",""0x5247630"",""0x7700459e""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x24a7068d"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x24a7068d"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.412Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.412Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.413Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.413Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.433Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 0 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.433Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 1 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.449Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.449Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.451Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.451Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.451Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.451Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.457Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.457Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.471Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.471Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.471Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.471Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.471Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.471Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.498Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.498Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.510Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.510Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.510Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.510Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.510Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.510Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.757Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.757Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.772Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x255c0055"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.772Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x255c0055"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.772Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.772Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.772Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.773Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.786Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18825e4"",""0x255c009d"",""0x85efc8"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 0 98 0x18825e4 01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.786Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18825e4"",""0x255c009d"",""0x85efc8"",""0x17f0cac"",""0x17f0c08"",""0x7700459e""]" 1 98 0x18825e4 01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.801Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18825e4"",""0x0"",""0x255c0055"",""0x18825e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18825e4 01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.801Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18825e4"",""0x0"",""0x255c0055"",""0x18825e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18825e4 01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.801Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.801Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.801Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.801Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.825Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.825Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.837Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.837Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.845Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.845Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.845Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.845Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.851Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.851Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.862Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.862Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:44.862Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.862Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.862Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.862Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:44.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.935Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.935Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:44.936Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:44.936Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:44.936Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:44.936Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.045Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x27e700f5"",""0x23eefb0"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.045Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x27e700f5"",""0x23eefb0"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.056Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x27e701ad"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.056Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x27e701ad"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.056Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.057Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.057Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.057Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.283Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.283Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.283Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.283Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.283Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.283Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.301Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18356cc"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.301Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18356cc"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.314Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18356cc"",""0x0"",""0x27e701ad"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.314Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18356cc"",""0x0"",""0x27e701ad"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.315Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.315Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.315Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.315Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.369Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1915f6c"",""0x27e700f5"",""0x23eefb0"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 0 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.369Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1915f6c"",""0x27e700f5"",""0x23eefb0"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 1 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.381Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1915f6c"",""0x0"",""0x27e701ad"",""0x1915f6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.381Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1915f6c"",""0x0"",""0x27e701ad"",""0x1915f6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.390Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.390Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.390Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.390Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.396Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.396Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.408Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.408Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.420Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.420Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.420Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.420Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.427Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.427Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.440Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.440Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.440Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.440Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.440Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.441Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.481Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.481Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.493Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.493Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.494Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.494Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.494Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.494Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.759Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.759Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b25fc"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.775Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.775Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x27e701ad"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.776Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.776Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.776Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.776Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.791Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x183df0c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.791Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x183df0c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.804Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x27e701ad"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.804Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x27e701ad"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00 +2026-04-25T07:22:45.812Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.812Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.812Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.812Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.817Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1913d5c"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.817Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1913d5c"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.828Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x24a7068d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.828Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x24a7068d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.829Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.829Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.829Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.830Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1914e64"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00 +2026-04-25T07:22:45.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1914e64"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00 +2026-04-25T07:22:45.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x24a7068d"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00 +2026-04-25T07:22:45.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x24a7068d"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00 +2026-04-25T07:22:45.935Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.936Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.936Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.936Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:45.942Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18356cc"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.942Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18356cc"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.955Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18356cc"",""0x0"",""0x255c0055"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.955Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18356cc"",""0x0"",""0x255c0055"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18356cc 01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:45.955Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:45.955Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:45.955Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:45.955Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.030Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.030Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.041Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.041Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.041Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.041Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.042Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.042Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.258Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.258Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.271Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.271Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.271Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.271Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.271Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.271Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.285Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.285Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f312c"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.298Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.298Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x255c0055"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.299Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.299Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.299Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.299Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.356Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.356Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.371Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.371Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.379Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.379Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.379Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.379Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.385Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b6a1c"",""0x24a705d5"",""0x17eea90"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.385Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b6a1c"",""0x24a705d5"",""0x17eea90"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.397Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b6a1c"",""0x0"",""0x24a7068d"",""0x18b6a1c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.397Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b6a1c"",""0x0"",""0x24a7068d"",""0x18b6a1c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.398Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.398Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.398Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.398Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.424Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18356cc"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.424Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18356cc"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.436Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18356cc"",""0x0"",""0x24a7068d"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.436Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18356cc"",""0x0"",""0x24a7068d"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.436Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.436Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.436Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.436Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.469Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1914e64"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.469Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1914e64"",""0x24a705d5"",""0x17eea90"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.481Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x24a7068d"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.481Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x24a7068d"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.482Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.482Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.482Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.482Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.777Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f312c"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.777Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51f312c"",""0x24a705d5"",""0x17eea90"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.797Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x24a7068d"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.797Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f312c"",""0x0"",""0x24a7068d"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f312c 01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.797Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.798Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.798Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.798Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.816Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x183abf4"",""0x24a705d5"",""0x17eea90"",""0x17f1e04"",""0x17f1d60"",""0x7700459e""]" 0 98 0x183abf4 01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.816Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x183abf4"",""0x24a705d5"",""0x17eea90"",""0x17f1e04"",""0x17f1d60"",""0x7700459e""]" 1 98 0x183abf4 01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.828Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183abf4"",""0x0"",""0x24a7068d"",""0x183abf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183abf4 01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.828Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183abf4"",""0x0"",""0x24a7068d"",""0x183abf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183abf4 01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.829Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.829Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.829Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.829Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.905Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x24a705d5"",""0x17eea90"",""0x8dda5c"",""0x8dd9b8"",""0x7700459e""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.905Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x24a705d5"",""0x17eea90"",""0x8dda5c"",""0x8dd9b8"",""0x7700459e""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.940Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x24a7068d"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.940Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x24a7068d"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.940Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.940Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.941Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.941Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.946Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.946Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.960Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x27e701ad"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.960Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x27e701ad"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00 +2026-04-25T07:22:46.961Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.961Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.961Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.961Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:46.970Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1915f6c"",""0x255c009d"",""0x85efc8"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 0 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.970Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1915f6c"",""0x255c009d"",""0x85efc8"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 1 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.987Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1915f6c"",""0x0"",""0x255c0055"",""0x1915f6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.987Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1915f6c"",""0x0"",""0x255c0055"",""0x1915f6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1915f6c 01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:46.987Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:46.988Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:46.988Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:46.988Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.007Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x523467c"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.007Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x523467c"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 46 0x523467c 01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.019Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523467c"",""0x0"",""0x255c0055"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.019Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523467c"",""0x0"",""0x255c0055"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523467c 01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.019Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.019Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.019Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.019Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.041Z nmxsvc.enter NmxSvc.exe CNmxControler.LocalCallbackDataReceived 0x5db38eab "[""0x2209b38"",""0x666fd60"",""0x7508fcc9"",""0x2209b38"",""0x7508fcb0"",""0x666fdbc"",""0x772482ae"",""0x2209b38"",""0x5c608d67"",""0x0""]" +2026-04-25T07:22:47.264Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18356cc"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.264Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18356cc"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.277Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18356cc"",""0x0"",""0x255c0055"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.277Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18356cc"",""0x0"",""0x255c0055"",""0x18356cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18356cc 01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.277Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.277Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.277Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.278Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.293Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.293Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.305Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.305Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00 +2026-04-25T07:22:47.315Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.315Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.315Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.316Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.323Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x51f312c"",""0x27e700f5"",""0x23eefb0"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 360 0x51f312c 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00 +2026-04-25T07:22:47.323Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x51f312c"",""0x27e700f5"",""0x23eefb0"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 360 0x51f312c 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00 +2026-04-25T07:22:47.341Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x168"",""0x51f312c"",""0x0"",""0x27e701ad"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 360 0x51f312c 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00 +2026-04-25T07:22:47.341Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x168"",""0x51f312c"",""0x0"",""0x27e701ad"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 360 0x51f312c 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00 +2026-04-25T07:22:47.356Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.356Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.356Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.356Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.362Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18378dc"",""0x24a705d5"",""0x17eea90"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 0 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.362Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18378dc"",""0x24a705d5"",""0x17eea90"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 1 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.373Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18378dc"",""0x0"",""0x24a7068d"",""0x18378dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.373Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18378dc"",""0x0"",""0x24a7068d"",""0x18378dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18378dc 01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.373Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.373Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.373Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.373Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.380Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.380Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.395Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.395Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.395Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.395Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.396Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.396Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.428Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 706 0x18b25fc 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:22:47.428Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:22:47.428Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 2 706 0x18b25fc 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:22:47.428Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 3 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:22:47.457Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 706 0x18b25fc 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:22:47.457Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:22:47.457Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 706 0x18b25fc 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:22:47.457Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:22:47.478Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.478Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.478Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.478Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.484Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.484Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x183df0c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.496Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x27e701ad"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.496Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x183df0c"",""0x0"",""0x27e701ad"",""0x183df0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x183df0c 01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.506Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.506Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.506Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.506Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 0 85 0x18847f4 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:47.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 1 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:22:47.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 2 85 0x18847f4 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:47.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 3 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:22:47.535Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 85 0x18847f4 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:47.535Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:22:47.535Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 85 0x18847f4 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:47.535Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:22:47.535Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.536Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.536Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.536Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.542Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 151 0x1914e64 01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:22:47.542Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:22:47.542Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 2 151 0x1914e64 01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:22:47.542Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 3 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:22:47.559Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 151 0x1914e64 01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:22:47.559Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:22:47.559Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 151 0x1914e64 01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:22:47.559Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:22:47.573Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.573Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.573Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.573Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.580Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.580Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.591Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.591Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.592Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.592Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.592Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.592Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.608Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.608Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.619Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.619Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.627Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.628Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.628Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.628Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.634Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x1887b0c"",""0x27e700f5"",""0x23eefb0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 0 92 0x1887b0c 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c +2026-04-25T07:22:47.634Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x1887b0c"",""0x27e700f5"",""0x23eefb0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 1 92 0x1887b0c 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c +2026-04-25T07:22:47.647Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x5c"",""0x1887b0c"",""0x0"",""0x27e701ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 92 0x1887b0c 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c +2026-04-25T07:22:47.647Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x5c"",""0x1887b0c"",""0x0"",""0x27e701ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 92 0x1887b0c 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c +2026-04-25T07:22:47.647Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.647Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.647Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.647Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.662Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x1914e64"",""0x27e700f5"",""0x23eefb0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 108 0x1914e64 01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07 +2026-04-25T07:22:47.662Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x1914e64"",""0x27e700f5"",""0x23eefb0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:22:47.662Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x1914e64"",""0x27e700f5"",""0x23eefb0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 2 108 0x1914e64 01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07 +2026-04-25T07:22:47.662Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x1914e64"",""0x27e700f5"",""0x23eefb0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 3 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:22:47.676Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x1914e64"",""0x0"",""0x27e701ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 108 0x1914e64 01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07 +2026-04-25T07:22:47.676Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x1914e64"",""0x0"",""0x27e701ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:22:47.676Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x1914e64"",""0x0"",""0x27e701ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 108 0x1914e64 01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07 +2026-04-25T07:22:47.676Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x1914e64"",""0x0"",""0x27e701ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:22:47.676Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.676Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.676Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.677Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.766Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.766Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.780Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.780Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.788Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.788Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.788Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.788Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.794Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.794Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.805Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.805Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.806Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.806Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.806Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.806Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.819Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182df04"",""0x27e700f5"",""0x23eefb0"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 0 98 0x182df04 01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.819Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182df04"",""0x27e700f5"",""0x23eefb0"",""0x51ea4cc"",""0x51ea428"",""0x7700459e""]" 1 98 0x182df04 01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.832Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182df04"",""0x0"",""0x27e701ad"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182df04 01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.832Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182df04"",""0x0"",""0x27e701ad"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182df04 01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.832Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.832Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.832Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.832Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.886Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18389e4"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 0 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.886Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18389e4"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 1 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.898Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18389e4"",""0x0"",""0x27e701ad"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.898Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18389e4"",""0x0"",""0x27e701ad"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18389e4 01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.906Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.914Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.914Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.915Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.934Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.934Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b25fc 01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.935Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.935Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.935Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.935Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.941Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b03ec"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 0 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.941Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b03ec"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 1 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.953Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b03ec"",""0x0"",""0x23f207ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.953Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b03ec"",""0x0"",""0x23f207ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00 +2026-04-25T07:22:47.953Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:47.954Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:47.954Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:47.954Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:47.997Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x183ce04"",""0x23f206f5"",""0x62be9b0"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 0 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:47.997Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x183ce04"",""0x23f206f5"",""0x62be9b0"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 1 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.013Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x183ce04"",""0x0"",""0x23f207ad"",""0x183ce04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.013Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x183ce04"",""0x0"",""0x23f207ad"",""0x183ce04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x183ce04 01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.014Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.014Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.014Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.014Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.040Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 0 86 0x18b3704 123456790@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00 +2026-04-25T07:22:48.040Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 1 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:22:48.040Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 2 86 0x18b3704 123456790@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00 +2026-04-25T07:22:48.040Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 3 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:22:48.053Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 86 0x18b3704 123456790@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00 +2026-04-25T07:22:48.053Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:22:48.053Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 86 0x18b3704 123456790@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00 +2026-04-25T07:22:48.053Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:22:48.053Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.053Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.053Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.053Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.092Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x18b03ec"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 0 51 0x18b03ec 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:22:48.092Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x18b03ec"",""0x23f206f5"",""0x62be9b0"",""0x1879e64"",""0x1879dc0"",""0x7700459e""]" 1 51 0x18b03ec 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:22:48.102Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x33"",""0x18b03ec"",""0x0"",""0x23f207ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 51 0x18b03ec 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:22:48.102Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x33"",""0x18b03ec"",""0x0"",""0x23f207ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 51 0x18b03ec 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:22:48.102Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.103Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.103Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.103Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.118Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x1887b0c"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 0 88 0x1887b0c 123456790@84 01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.118Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x1887b0c"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 1 88 0x1887b0c 123456790@84 01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.130Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x1887b0c"",""0x0"",""0x23f207ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 88 0x1887b0c 123456790@84 01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.130Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x1887b0c"",""0x0"",""0x23f207ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 88 0x1887b0c 123456790@84 01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.131Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.131Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.131Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.131Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.146Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 88 0x1914e64 123456790@84 01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.146Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 88 0x1914e64 123456790@84 01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.157Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 88 0x1914e64 123456790@84 01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.157Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 88 0x1914e64 123456790@84 01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:22:48.157Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.157Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.158Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.158Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.173Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.173Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.186Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.186Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.186Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.186Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.186Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.186Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.222Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b6a1c"",""0x23f206f5"",""0x62be9b0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.222Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b6a1c"",""0x23f206f5"",""0x62be9b0"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.233Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b6a1c"",""0x0"",""0x23f207ad"",""0x18b6a1c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.233Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b6a1c"",""0x0"",""0x23f207ad"",""0x18b6a1c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b6a1c 01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.234Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.234Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.234Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.234Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.270Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.270Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.282Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.282Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.282Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.283Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.283Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.283Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.300Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 0 98 0x18847f4 01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.300Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 1 98 0x18847f4 01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18847f4 01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18847f4 01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.313Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.313Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.313Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.314Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.330Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x183bcfc"",""0x23f206f5"",""0x62be9b0"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 0 46 0x183bcfc 01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.330Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x183bcfc"",""0x23f206f5"",""0x62be9b0"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 1 46 0x183bcfc 01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.341Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x183bcfc"",""0x0"",""0x23f207ad"",""0x183bcfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x183bcfc 01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.341Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x183bcfc"",""0x0"",""0x23f207ad"",""0x183bcfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x183bcfc 01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.341Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.342Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.342Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.342Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.415Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.415Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.428Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.428Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.428Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.429Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.429Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.429Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.443Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b7b24"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 0 46 0x18b7b24 01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.443Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b7b24"",""0x255c009d"",""0x85efc8"",""0x51741ec"",""0x5174148"",""0x7700459e""]" 1 46 0x18b7b24 01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.455Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b7b24"",""0x0"",""0x255c0055"",""0x18b7b24"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b7b24 01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.455Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b7b24"",""0x0"",""0x255c0055"",""0x18b7b24"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b7b24 01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.456Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.456Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.456Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.456Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.546Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x517e3fc"",""0x255c009d"",""0x85efc8"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 0 46 0x517e3fc 01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.546Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x517e3fc"",""0x255c009d"",""0x85efc8"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 1 46 0x517e3fc 01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.556Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x517e3fc"",""0x0"",""0x255c0055"",""0x517e3fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x517e3fc 01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.556Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x517e3fc"",""0x0"",""0x255c0055"",""0x517e3fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x517e3fc 01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.556Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.556Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.556Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.557Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d6a2c"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 98 0x18d6a2c 01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d6a2c"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 98 0x18d6a2c 01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.778Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d6a2c"",""0x0"",""0x255c0055"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d6a2c 01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.778Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d6a2c"",""0x0"",""0x255c0055"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d6a2c 01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.778Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.779Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.779Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.779Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.799Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x517e3fc"",""0x255c009d"",""0x85efc8"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 0 98 0x517e3fc 01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.799Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x517e3fc"",""0x255c009d"",""0x85efc8"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 1 98 0x517e3fc 01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.811Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x517e3fc"",""0x0"",""0x255c0055"",""0x517e3fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x517e3fc 01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.811Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x517e3fc"",""0x0"",""0x255c0055"",""0x517e3fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x517e3fc 01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.811Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.811Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.811Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.811Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.871Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.871Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.881Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.881Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.891Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.891Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.892Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.892Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.897Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x517d2f4"",""0x23f206f5"",""0x62be9b0"",""0x18e919c"",""0x18e90f8"",""0x7700459e""]" 0 46 0x517d2f4 01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.897Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x517d2f4"",""0x23f206f5"",""0x62be9b0"",""0x18e919c"",""0x18e90f8"",""0x7700459e""]" 1 46 0x517d2f4 01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.913Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x517d2f4"",""0x0"",""0x23f207ad"",""0x517d2f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x517d2f4 01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.913Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x517d2f4"",""0x0"",""0x23f207ad"",""0x517d2f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x517d2f4 01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.921Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.921Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.921Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.921Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.928Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.928Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.939Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.939Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00 +2026-04-25T07:22:48.940Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.940Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.940Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.940Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:48.980Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.980Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.990Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.990Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:48.991Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:48.991Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:48.991Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:48.991Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51747b4"",""0x5174710"",""0x7700459e""]" 1 98 0x1917074 01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.274Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.274Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1917074 01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.274Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.274Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.275Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.275Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.290Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.290Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.303Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d5924"",""0x0"",""0x255c0055"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.303Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d5924"",""0x0"",""0x255c0055"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.311Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.311Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.311Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.312Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.318Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x518060c"",""0x23f206f5"",""0x62be9b0"",""0x18e9764"",""0x18e96c0"",""0x7700459e""]" 0 46 0x518060c 01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.318Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x518060c"",""0x23f206f5"",""0x62be9b0"",""0x18e9764"",""0x18e96c0"",""0x7700459e""]" 1 46 0x518060c 01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.332Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x518060c"",""0x0"",""0x23f207ad"",""0x518060c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x518060c 01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.332Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x518060c"",""0x0"",""0x23f207ad"",""0x518060c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x518060c 01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.333Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.333Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.333Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.333Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.419Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x18e919c"",""0x18e90f8"",""0x7700459e""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.419Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x23f206f5"",""0x62be9b0"",""0x18e919c"",""0x18e90f8"",""0x7700459e""]" 1 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.431Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.431Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b3704"",""0x0"",""0x23f207ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.432Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.432Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.432Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.432Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.447Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.447Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.459Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.459Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.460Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.460Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.460Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.460Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.531Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d3714"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 0 46 0x18d3714 01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.531Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d3714"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 1 46 0x18d3714 01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.544Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d3714"",""0x0"",""0x255c0055"",""0x18d3714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d3714 01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.544Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d3714"",""0x0"",""0x255c0055"",""0x18d3714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d3714 01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.544Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.544Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.544Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.544Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.768Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.768Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.786Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.786Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.787Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.787Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.787Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.787Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.802Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x523467c"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.802Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x523467c"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.815Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x255c0055"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.815Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x255c0055"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.815Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.815Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.815Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.815Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.857Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.857Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.867Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.867Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.876Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.876Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.876Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.876Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.882Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x18e919c"",""0x18e90f8"",""0x7700459e""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.882Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x23f206f5"",""0x62be9b0"",""0x18e919c"",""0x18e90f8"",""0x7700459e""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.897Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.897Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x23f207ad"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.897Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.897Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.897Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.897Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b03ec"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b03ec"",""0x23f206f5"",""0x62be9b0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b03ec"",""0x0"",""0x23f207ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b03ec"",""0x0"",""0x23f207ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00 +2026-04-25T07:22:49.929Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.929Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.929Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.929Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.962Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 0 104 0x18847f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:22:49.962Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x19248ec"",""0x1924848"",""0x7700459e""]" 1 104 0x18847f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:22:49.976Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x68"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 104 0x18847f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:22:49.976Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x68"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 104 0x18847f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:22:49.985Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:49.985Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:49.985Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:49.985Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:49.991Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d03fc"",""0x255c009d"",""0x85efc8"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 0 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:49.991Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d03fc"",""0x255c009d"",""0x85efc8"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 1 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.004Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d03fc"",""0x0"",""0x255c0055"",""0x18d03fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.004Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d03fc"",""0x0"",""0x255c0055"",""0x18d03fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.004Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.004Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.005Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.005Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.022Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18345c4"",""0x27e700f5"",""0x23eefb0"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.022Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18345c4"",""0x27e700f5"",""0x23eefb0"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.036Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x27e701ad"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.036Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x27e701ad"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.045Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.045Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.045Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.045Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.051Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x5239ba4"",""0x255c009d"",""0x85efc8"",""0x51bc20c"",""0x51bc168"",""0x7700459e""]" 0 83 0x5239ba4 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:50.051Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x5239ba4"",""0x255c009d"",""0x85efc8"",""0x51bc20c"",""0x51bc168"",""0x7700459e""]" 1 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:22:50.051Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x5239ba4"",""0x255c009d"",""0x85efc8"",""0x51bc20c"",""0x51bc168"",""0x7700459e""]" 2 83 0x5239ba4 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:50.051Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x5239ba4"",""0x255c009d"",""0x85efc8"",""0x51bc20c"",""0x51bc168"",""0x7700459e""]" 3 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:22:50.063Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x5239ba4"",""0x0"",""0x255c0055"",""0x5239ba4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 83 0x5239ba4 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:50.063Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x5239ba4"",""0x0"",""0x255c0055"",""0x5239ba4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:22:50.063Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x5239ba4"",""0x0"",""0x255c0055"",""0x5239ba4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 83 0x5239ba4 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:22:50.063Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x5239ba4"",""0x0"",""0x255c0055"",""0x5239ba4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:22:50.064Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.065Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.065Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.065Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.084Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e7b0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x0""]" 0 81 0x94e7b0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:22:50.084Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e7b0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x0""]" 1 2 0x70ec0005 00 00 +2026-04-25T07:22:50.084Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e7b0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x0""]" 2 81 0x94e7b0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:22:50.084Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e7b0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x0""]" 3 2 0x70ec0005 00 00 +2026-04-25T07:22:50.084Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e7b0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x0""]" 4 35 0x21f3c50 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:22:50.084Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e7b0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x0""]" 5 35 0x1000116 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T07:22:50.098Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94e7b0"",""0x0"",""0x255c02f1"",""0x94e7b0"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 81 0x94e7b0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:22:50.098Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94e7b0"",""0x0"",""0x255c02f1"",""0x94e7b0"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 81 0x94e7b0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:22:50.099Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.099Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.099Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.108Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94ebd0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x77260000""]" 0 81 0x94ebd0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:22:50.108Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94ebd0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x77260000""]" 1 2 0x21f0005 f3 01 +2026-04-25T07:22:50.108Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94ebd0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x77260000""]" 2 81 0x94ebd0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:22:50.108Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94ebd0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x77260000""]" 3 2 0x21f0005 f3 01 +2026-04-25T07:22:50.108Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94ebd0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x77260000""]" 4 35 0x21f3c50 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:22:50.108Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94ebd0"",""0x255c01fd"",""0x85eeb8"",""0x85eee0"",""0x2209b38"",""0x77260000""]" 5 35 0x1000116 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T07:22:50.124Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94ebd0"",""0x0"",""0x255c02f1"",""0x94ebd0"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 81 0x94ebd0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:22:50.124Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94ebd0"",""0x0"",""0x255c02f1"",""0x94ebd0"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 81 0x94ebd0 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:22:50.133Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.133Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.134Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.134Z nmxsvc.leave NmxSvc.exe CNmxControler.LocalCallbackDataReceived 0x0 [] +2026-04-25T07:22:50.140Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18d1504"",""0x27e700f5"",""0x23eefb0"",""0x51bc20c"",""0x51bc168"",""0x7700459e""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.140Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18d1504"",""0x27e700f5"",""0x23eefb0"",""0x51bc20c"",""0x51bc168"",""0x7700459e""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.141Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x1 [] +2026-04-25T07:22:50.141Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x1 [] +2026-04-25T07:22:50.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d9d44"",""0x255c009d"",""0x85efc8"",""0x51be4bc"",""0x51be418"",""0x7700459e""]" 0 98 0x18d9d44 01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d9d44"",""0x255c009d"",""0x85efc8"",""0x51be4bc"",""0x51be418"",""0x7700459e""]" 1 98 0x18d9d44 01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d9d44"",""0x0"",""0x255c0055"",""0x18d9d44"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d9d44 01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d9d44"",""0x0"",""0x255c0055"",""0x18d9d44"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d9d44 01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.274Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.274Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.274Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.274Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b25fc"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.301Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.301Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b25fc"",""0x0"",""0x255c0055"",""0x18b25fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b25fc 01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.308Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.309Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.309Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.309Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.315Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x27e700f5"",""0x23eefb0"",""0x51be4bc"",""0x51be418"",""0x7700459e""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.315Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x27e700f5"",""0x23eefb0"",""0x51be4bc"",""0x51be418"",""0x7700459e""]" 1 46 0x5233574 01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.326Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5233574"",""0x0"",""0x27e701ad"",""0x5233574"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.326Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5233574"",""0x0"",""0x27e701ad"",""0x5233574"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5233574 01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.327Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.327Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.327Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.327Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.409Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.409Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.421Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x27e701ad"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.421Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x27e701ad"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.431Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.432Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.432Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.432Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.438Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b6a1c"",""0x255c009d"",""0x85efc8"",""0x51bea84"",""0x51be9e0"",""0x7700459e""]" 0 98 0x18b6a1c 01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.438Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b6a1c"",""0x255c009d"",""0x85efc8"",""0x51bea84"",""0x51be9e0"",""0x7700459e""]" 1 98 0x18b6a1c 01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.449Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b6a1c"",""0x0"",""0x255c0055"",""0x18b6a1c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b6a1c 01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.449Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b6a1c"",""0x0"",""0x255c0055"",""0x18b6a1c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b6a1c 01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.450Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.450Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.451Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.451Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.511Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d03fc"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.511Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d03fc"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.523Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d03fc"",""0x0"",""0x255c0055"",""0x18d03fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.523Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d03fc"",""0x0"",""0x255c0055"",""0x18d03fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d03fc 01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.523Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.523Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.523Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.523Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.759Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.759Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.771Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.771Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.771Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.771Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.772Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.772Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.793Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18389e4"",""0x255c009d"",""0x85efc8"",""0x51bb0b4"",""0x51bb010"",""0x7700459e""]" 0 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.793Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18389e4"",""0x255c009d"",""0x85efc8"",""0x51bb0b4"",""0x51bb010"",""0x7700459e""]" 1 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.807Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18389e4"",""0x0"",""0x255c0055"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.807Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18389e4"",""0x0"",""0x255c0055"",""0x18389e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18389e4 01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00 +2026-04-25T07:22:50.808Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.808Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.808Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.808Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.843Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d5924"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.843Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d5924"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.860Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d5924"",""0x0"",""0x255c0055"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.860Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d5924"",""0x0"",""0x255c0055"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.860Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.860Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.860Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.860Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.874Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d8c3c"",""0x27e700f5"",""0x23eefb0"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 0 46 0x18d8c3c 01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.874Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d8c3c"",""0x27e700f5"",""0x23eefb0"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 1 46 0x18d8c3c 01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.885Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d8c3c"",""0x0"",""0x27e701ad"",""0x18d8c3c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d8c3c 01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.885Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d8c3c"",""0x0"",""0x27e701ad"",""0x18d8c3c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d8c3c 01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.885Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.885Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.885Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.885Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00 +2026-04-25T07:22:50.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x523467c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00 +2026-04-25T07:22:50.930Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x27e701ad"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x523467c 01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00 +2026-04-25T07:22:50.930Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x523467c"",""0x0"",""0x27e701ad"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x523467c 01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00 +2026-04-25T07:22:50.930Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.930Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.931Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.931Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:50.969Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.969Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.985Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.985Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:50.985Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:50.986Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:50.986Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:50.986Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.256Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.256Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x27e700f5"",""0x23eefb0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.268Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1913d5c"",""0x0"",""0x27e701ad"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.268Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1913d5c"",""0x0"",""0x27e701ad"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.269Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.269Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.269Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.269Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.282Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x27e700f5"",""0x23eefb0"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.282Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x27e700f5"",""0x23eefb0"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.294Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d3714"",""0x0"",""0x27e701ad"",""0x18d3714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.294Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d3714"",""0x0"",""0x27e701ad"",""0x18d3714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.295Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.295Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.295Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.295Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 46 0x523467c 01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523467c"",""0x0"",""0x27e701ad"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523467c"",""0x0"",""0x27e701ad"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523467c 01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.407Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.408Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.408Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.408Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.422Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.422Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.433Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.433Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.433Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.433Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.440Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18334bc"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 0 98 0x18334bc 01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.440Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18334bc"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 1 98 0x18334bc 01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.455Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18334bc"",""0x0"",""0x23f207ad"",""0x18334bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18334bc 01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.455Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18334bc"",""0x0"",""0x23f207ad"",""0x18334bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18334bc 01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.456Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.456Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.456Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.457Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.498Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18312ac"",""0x23f206f5"",""0x62be9b0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.498Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18312ac"",""0x23f206f5"",""0x62be9b0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.509Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18312ac"",""0x0"",""0x23f207ad"",""0x18312ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.509Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18312ac"",""0x0"",""0x23f207ad"",""0x18312ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.510Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.510Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.510Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.510Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x23f206f5"",""0x62be9b0"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.763Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x23f206f5"",""0x62be9b0"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x23f207ad"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x23f207ad"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.780Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.780Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.780Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.780Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1887b0c"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 0 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1887b0c"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 1 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.810Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1887b0c"",""0x0"",""0x23f207ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.810Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1887b0c"",""0x0"",""0x23f207ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.810Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.811Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.811Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.811Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.823Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 0 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.823Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 1 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.834Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.834Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.835Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.835Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.835Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.835Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1887b0c"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 0 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1887b0c"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 1 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1887b0c"",""0x0"",""0x23f207ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1887b0c"",""0x0"",""0x23f207ad"",""0x1887b0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1887b0c 01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00 +2026-04-25T07:22:51.928Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.929Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.929Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.929Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:51.948Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x255c009d"",""0x85efc8"",""0x51bbc44"",""0x51bbba0"",""0x7700459e""]" 0 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.948Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x255c009d"",""0x85efc8"",""0x51bbc44"",""0x51bbba0"",""0x7700459e""]" 1 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.965Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d6a2c"",""0x0"",""0x255c0055"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.965Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d6a2c"",""0x0"",""0x255c0055"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:51.965Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:51.965Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:51.966Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:51.966Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.048Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x5181714"",""0x255c009d"",""0x85efc8"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 46 0x5181714 01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.048Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x5181714"",""0x255c009d"",""0x85efc8"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 46 0x5181714 01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.058Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5181714"",""0x0"",""0x255c0055"",""0x5181714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5181714 01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.058Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5181714"",""0x0"",""0x255c0055"",""0x5181714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5181714 01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.059Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.059Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.059Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.059Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.265Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.265Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.279Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.279Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.279Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.279Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.279Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.280Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.294Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f4234"",""0x255c009d"",""0x85efc8"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 0 98 0x51f4234 01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.294Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f4234"",""0x255c009d"",""0x85efc8"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 1 98 0x51f4234 01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.306Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f4234"",""0x0"",""0x255c0055"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f4234 01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.306Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f4234"",""0x0"",""0x255c0055"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f4234 01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.306Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.306Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.306Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.307Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.377Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d481c"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 0 46 0x18d481c 01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.377Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d481c"",""0x255c009d"",""0x85efc8"",""0x51bc7d4"",""0x51bc730"",""0x7700459e""]" 1 46 0x18d481c 01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.388Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d481c"",""0x0"",""0x255c0055"",""0x18d481c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d481c 01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.388Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d481c"",""0x0"",""0x255c0055"",""0x18d481c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d481c 01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.397Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.397Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.397Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.397Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.404Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 0 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.404Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18847f4"",""0x23f206f5"",""0x62be9b0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 1 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.416Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.416Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18847f4"",""0x0"",""0x23f207ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.425Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.425Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.425Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.425Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.432Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.432Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.445Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.445Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00 +2026-04-25T07:22:52.445Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.445Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.445Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.446Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.481Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.481Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.492Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.492Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.492Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.492Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.492Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.492Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.760Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.760Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.771Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.771Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.772Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.772Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.772Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.772Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.787Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1886a04"",""0x255c009d"",""0x85efc8"",""0x524a514"",""0x524a470"",""0x7700459e""]" 0 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.787Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1886a04"",""0x255c009d"",""0x85efc8"",""0x524a514"",""0x524a470"",""0x7700459e""]" 1 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.802Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1886a04"",""0x0"",""0x255c0055"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.802Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1886a04"",""0x0"",""0x255c0055"",""0x1886a04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1886a04 01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.809Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.809Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.810Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.810Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.815Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b480c"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.815Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b480c"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.827Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b480c"",""0x0"",""0x27e701ad"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.827Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b480c"",""0x0"",""0x27e701ad"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.827Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.827Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.827Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.827Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x27e700f5"",""0x23eefb0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x27e701ad"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x27e701ad"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00 +2026-04-25T07:22:52.936Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.936Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.936Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.936Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:52.942Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.942Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.953Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.953Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:52.954Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:52.954Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:52.954Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:52.954Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.040Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191e7ac"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 46 0x191e7ac 01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.040Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191e7ac"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 46 0x191e7ac 01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.054Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191e7ac"",""0x0"",""0x255c0055"",""0x191e7ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191e7ac 01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.054Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191e7ac"",""0x0"",""0x255c0055"",""0x191e7ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191e7ac 01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.055Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.055Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.055Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.055Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.263Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.263Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.282Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.282Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.283Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.283Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.283Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.283Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.298Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18312ac"",""0x255c009d"",""0x85efc8"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 98 0x18312ac 01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.298Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18312ac"",""0x255c009d"",""0x85efc8"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 98 0x18312ac 01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18312ac"",""0x0"",""0x255c0055"",""0x18312ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18312ac 01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18312ac"",""0x0"",""0x255c0055"",""0x18312ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18312ac 01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.313Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.314Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.314Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.314Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.362Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.362Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.378Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.378Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.386Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.386Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.386Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.387Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.392Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5181714"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 46 0x5181714 01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.392Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5181714"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 46 0x5181714 01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.405Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5181714"",""0x0"",""0x27e701ad"",""0x5181714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5181714 01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.405Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5181714"",""0x0"",""0x27e701ad"",""0x5181714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5181714 01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.413Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.413Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.414Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.414Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.432Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.432Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.433Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.433Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.433Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.433Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.470Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18312ac"",""0x255c009d"",""0x85efc8"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.470Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18312ac"",""0x255c009d"",""0x85efc8"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.481Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18312ac"",""0x0"",""0x255c0055"",""0x18312ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.481Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18312ac"",""0x0"",""0x255c0055"",""0x18312ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18312ac 01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.481Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.482Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.482Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.482Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.757Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.757Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d1504"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.773Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.773Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d1504"",""0x0"",""0x255c0055"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d1504 01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.773Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.773Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.774Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.774Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.794Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b03ec"",""0x255c009d"",""0x85efc8"",""0x51bbc44"",""0x51bbba0"",""0x7700459e""]" 0 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.794Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b03ec"",""0x255c009d"",""0x85efc8"",""0x51bbc44"",""0x51bbba0"",""0x7700459e""]" 1 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.808Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b03ec"",""0x0"",""0x255c0055"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.808Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b03ec"",""0x0"",""0x255c0055"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b03ec 01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.816Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.816Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.816Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.822Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18847f4"",""0x27e700f5"",""0x23eefb0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 0 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.822Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18847f4"",""0x27e700f5"",""0x23eefb0"",""0x8dac1c"",""0x8dab78"",""0x7700459e""]" 1 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.823Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.835Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18847f4"",""0x0"",""0x27e701ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.835Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18847f4"",""0x0"",""0x27e701ad"",""0x18847f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18847f4 01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.836Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.836Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.836Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.836Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.900Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5181714"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 46 0x5181714 01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.900Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5181714"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 46 0x5181714 01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.910Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5181714"",""0x0"",""0x27e701ad"",""0x5181714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5181714 01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.910Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5181714"",""0x0"",""0x27e701ad"",""0x5181714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5181714 01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:53.918Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.918Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.918Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.918Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:53.926Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191e7ac"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 98 0x191e7ac 01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.926Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191e7ac"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 98 0x191e7ac 01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.940Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191e7ac"",""0x0"",""0x255c0055"",""0x191e7ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191e7ac 01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.940Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191e7ac"",""0x0"",""0x255c0055"",""0x191e7ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191e7ac 01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00 +2026-04-25T07:22:53.940Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:53.940Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:53.940Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:53.940Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:54.014Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18836ec"",""0x255c009d"",""0x85efc8"",""0x524a514"",""0x524a470"",""0x7700459e""]" 0 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.014Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18836ec"",""0x255c009d"",""0x85efc8"",""0x524a514"",""0x524a470"",""0x7700459e""]" 1 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.025Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18836ec"",""0x0"",""0x255c0055"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.025Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18836ec"",""0x0"",""0x255c0055"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.026Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:54.026Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:54.026Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:54.026Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:54.264Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.264Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18dbf54"",""0x255c009d"",""0x85efc8"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.277Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.277Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18dbf54"",""0x0"",""0x255c0055"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18dbf54 01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.278Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:54.278Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:54.278Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:54.278Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:54.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b7b24"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 0 98 0x18b7b24 01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18b7b24"",""0x255c009d"",""0x85efc8"",""0x187bb4c"",""0x187baa8"",""0x7700459e""]" 1 98 0x18b7b24 01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.308Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b7b24"",""0x0"",""0x255c0055"",""0x18b7b24"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b7b24 01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.308Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b7b24"",""0x0"",""0x255c0055"",""0x18b7b24"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b7b24 01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.308Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:54.308Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:54.308Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:54.308Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:54.343Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18836ec"",""0x255c009d"",""0x85efc8"",""0x524a514"",""0x524a470"",""0x7700459e""]" 0 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.343Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18836ec"",""0x255c009d"",""0x85efc8"",""0x524a514"",""0x524a470"",""0x7700459e""]" 1 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.359Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18836ec"",""0x0"",""0x255c0055"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.359Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18836ec"",""0x0"",""0x255c0055"",""0x18836ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18836ec 01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.370Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:54.370Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:54.370Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:54.370Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:54.382Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18245bc"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 0 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.382Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18245bc"",""0x27e700f5"",""0x23eefb0"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 1 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.393Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18245bc"",""0x0"",""0x27e701ad"",""0x18245bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.393Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18245bc"",""0x0"",""0x27e701ad"",""0x18245bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18245bc 01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:22:54.394Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:22:54.394Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:22:54.394Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:22:54.394Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:22:54.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18312ac"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 98 0x18312ac 01 00 34 00 00 00 00 00 00 00 c8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 99 2c 55 84 d4 dc 01 06 0a 00 00 00 30 99 2c 55 84 d4 dc 01 00 00 +2026-04-25T07:22:54.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18312ac"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 98 0x18312ac 01 00 34 00 00 00 00 00 00 00 c8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 99 2c 55 84 d4 dc 01 06 0a 00 00 00 30 99 2c 55 84 d4 dc 01 00 00 diff --git a/captures/045-service-boundary-write-test-int-123456790/service-frida.stderr.txt b/captures/045-service-boundary-write-test-int-123456790/service-frida.stderr.txt new file mode 100644 index 0000000..c40bfbc --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/service-frida.stderr.txt @@ -0,0 +1,4 @@ +TypeError: not a function + at hookWinsock (C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmxsvc-trace.js:181) + at installKnownHooks (C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmxsvc-trace.js:215) + at (C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmxsvc-trace.js:228) diff --git a/captures/045-service-boundary-write-test-int-123456790/service-frida.stdout.jsonl b/captures/045-service-boundary-write-test-int-123456790/service-frida.stdout.jsonl new file mode 100644 index 0000000..086f3cd --- /dev/null +++ b/captures/045-service-boundary-write-test-int-123456790/service-frida.stdout.jsonl @@ -0,0 +1,2079 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Attaching... +{"event":"script.loaded","process":13944,"arch":"ia32","pointerSize":4,"time":"2026-04-25T07:22:34.537Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CFMCCallback.DataReceived","base":"0x9a0000","rva":"0x5be1","address":"0x9a5be1","time":"2026-04-25T07:22:34.537Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","base":"0x9a0000","rva":"0x1807f","address":"0x9b807f","time":"2026-04-25T07:22:34.537Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","base":"0x9a0000","rva":"0x1d910","address":"0x9bd910","time":"2026-04-25T07:22:34.538Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.TransferData","base":"0x9a0000","rva":"0x1dcb5","address":"0x9bdcb5","time":"2026-04-25T07:22:34.538Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","base":"0x9a0000","rva":"0x1eea5","address":"0x9beea5","time":"2026-04-25T07:22:34.539Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxService.TransferData","base":"0x9a0000","rva":"0x21b20","address":"0x9c1b20","time":"2026-04-25T07:22:34.539Z"} +[Local::PID::13944 ]-> {"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51f8654","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51f8654","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:34.754Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x51f8654","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51f8654","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:34.760Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51f8654","0x0","0x27e70065","0x51f8654","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f8654","0x0","0x27e70065","0x51f8654","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:34.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51f8654","0x0","0x27e701ad","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f8654","0x0","0x27e701ad","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f8654","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:34.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:34.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:34.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b480c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b480c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:34.781Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18b480c","0x27e700f5","0x23eefb0","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b480c","0x27e700f5","0x23eefb0","0x187bb4c","0x187baa8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:34.788Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x27e70065","0x18b480c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x27e70065","0x18b480c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:34.795Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18b480c","0x0","0x27e701ad","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x27e701ad","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 01 6e 49 84 d4 dc 01 06 0a 00 00 00 b0 01 6e 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:34.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:34.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:34.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51b3944","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51b3944","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51ec228","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:34.868Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x51b3944","0x27e700f5","0x23eefb0","0x51ec224","0x51ec180","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51b3944","0x27e700f5","0x23eefb0","0x51ec224","0x51ec180","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:34.874Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51b3944","0x0","0x27e70065","0x51b3944","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b3944","0x0","0x27e70065","0x51b3944","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uc228\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uc228\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:34.879Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51b3944","0x0","0x27e701ad","0x51b3944","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b3944","0x0","0x27e701ad","0x51b3944","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b3944","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b3944","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:34.885Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18301a4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18301a4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:34.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:34.894Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:34.894Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.894Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.895Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x18301a4","0x24a705d5","0x17eea90","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18301a4","0x24a705d5","0x17eea90","0x187bb4c","0x187baa8","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:34.901Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18301a4","0x0","0x24a70545","0x18301a4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18301a4","0x0","0x24a70545","0x18301a4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:34.909Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18301a4","0x0","0x24a7068d","0x18301a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18301a4","0x0","0x24a7068d","0x18301a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18301a4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18301a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:34.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:34.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:34.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.914Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:34.924Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:34.930Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:34.936Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 fb 8c 49 84 d4 dc 01 06 0a 00 00 00 60 fb 8c 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:34.941Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:34.942Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:34.942Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.942Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.942Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18378dc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18378dc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51ea4d0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:34.974Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x18378dc","0x27e700f5","0x23eefb0","0x51ea4cc","0x51ea428","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18378dc","0x27e700f5","0x23eefb0","0x51ea4cc","0x51ea428","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:34.980Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18378dc","0x0","0x27e70065","0x18378dc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18378dc","0x0","0x27e70065","0x18378dc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:34.986Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18378dc","0x0","0x27e701ad","0x18378dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18378dc","0x0","0x27e701ad","0x18378dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18378dc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9e 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:34.991Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:34.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:34.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:34.992Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x183bcfc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x183bcfc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.259Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x183bcfc","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x183bcfc","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.268Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x183bcfc","0x0","0x27e70065","0x183bcfc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183bcfc","0x0","0x27e70065","0x183bcfc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x183bcfc","0x0","0x27e701ad","0x183bcfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183bcfc","0x0","0x27e701ad","0x183bcfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183bcfc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.299Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.306Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 74 ba 49 84 d4 dc 01 06 0a 00 00 00 00 74 ba 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.312Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18c6a24","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18c6a24","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ecdb8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.319Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.320Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.320Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.320Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.320Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x18c6a24","0x24a705d5","0x17eea90","0x51ecdb4","0x51ecd10","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18c6a24","0x24a705d5","0x17eea90","0x51ecdb4","0x51ecd10","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.328Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18c6a24","0x0","0x24a70545","0x18c6a24","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18c6a24","0x0","0x24a70545","0x18c6a24","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ucdb8\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ucdb8\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:35.334Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18c6a24","0x0","0x24a7068d","0x18c6a24","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18c6a24","0x0","0x24a7068d","0x18c6a24","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18c6a24","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18c6a24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.339Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.339Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.339Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.339Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.339Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ecdb8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.408Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x18b480c","0x24a705d5","0x17eea90","0x51ecdb4","0x51ecd10","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b480c","0x24a705d5","0x17eea90","0x51ecdb4","0x51ecd10","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x24a70545","0x18b480c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x24a70545","0x18b480c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ucdb8\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ucdb8\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:35.422Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18b480c","0x0","0x24a7068d","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x24a7068d","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 1f d9 49 84 d4 dc 01 06 0a 00 00 00 90 1f d9 49 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.427Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.428Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.428Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.428Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.428Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.436Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.442Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.448Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18323b4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.454Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.454Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18212a4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18212a4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.521Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x18212a4","0x27e700f5","0x23eefb0","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18212a4","0x27e700f5","0x23eefb0","0x187bb4c","0x187baa8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.529Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18212a4","0x0","0x27e70065","0x18212a4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18212a4","0x0","0x27e70065","0x18212a4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.535Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18212a4","0x0","0x27e701ad","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18212a4","0x0","0x27e701ad","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 9f 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.541Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.541Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.542Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.542Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.542Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x183bcfc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x183bcfc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.750Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x183bcfc","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x183bcfc","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.754Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x183bcfc","0x0","0x27e70065","0x183bcfc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183bcfc","0x0","0x27e70065","0x183bcfc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.762Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x183bcfc","0x0","0x27e701ad","0x183bcfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183bcfc","0x0","0x27e701ad","0x183bcfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183bcfc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183bcfc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.768Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.769Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51ebc60","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x51bf114","0x27e700f5","0x23eefb0","0x51ebc5c","0x51ebbb8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51bf114","0x27e700f5","0x23eefb0","0x51ebc5c","0x51ebbb8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.791Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51bf114","0x0","0x27e70065","0x51bf114","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51bf114","0x0","0x27e70065","0x51bf114","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubc60\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubc60\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.799Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51bf114","0x0","0x27e701ad","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51bf114","0x0","0x27e701ad","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 71 06 4a 84 d4 dc 01 06 0a 00 00 00 20 71 06 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.804Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.805Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.805Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.805Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.805Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e7690","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.854Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18234b4","0x27e700f5","0x23eefb0","0x51e768c","0x51e75e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18234b4","0x27e700f5","0x23eefb0","0x51e768c","0x51e75e8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.860Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18234b4","0x0","0x27e70065","0x18234b4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18234b4","0x0","0x27e70065","0x18234b4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7690\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7690\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.866Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18234b4","0x0","0x27e701ad","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18234b4","0x0","0x27e701ad","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18234b4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.871Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51b1734","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51b1734","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.882Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.883Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.883Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.883Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.884Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x51b1734","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51b1734","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.892Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x51b1734","0x0","0x24a70545","0x51b1734","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b1734","0x0","0x24a70545","0x51b1734","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:35.901Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x51b1734","0x0","0x24a7068d","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b1734","0x0","0x24a7068d","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b1734","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.906Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.907Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.907Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.907Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.907Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.915Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18323b4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 91 25 4a 84 d4 dc 01 06 0a 00 00 00 e0 91 25 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:35.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.935Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51f975c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51f975c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:35.964Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x51f975c","0x27e700f5","0x23eefb0","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51f975c","0x27e700f5","0x23eefb0","0x1922c04","0x1922b60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.970Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51f975c","0x0","0x27e70065","0x51f975c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f975c","0x0","0x27e70065","0x51f975c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:35.976Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51f975c","0x0","0x27e701ad","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f975c","0x0","0x27e701ad","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f975c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:35.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:35.983Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:35.983Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.983Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:35.983Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51f8654","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51f8654","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x51f8654","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51f8654","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.273Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51f8654","0x0","0x27e70065","0x51f8654","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f8654","0x0","0x27e70065","0x51f8654","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:36.279Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51f8654","0x0","0x27e701ad","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f8654","0x0","0x27e701ad","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f8654","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f8654","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.284Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.284Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.285Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.285Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.285Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.298Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:36.304Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18323b4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e3 52 4a 84 d4 dc 01 06 0a 00 00 00 70 e3 52 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.309Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.310Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.310Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.310Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.310Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18256c4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18256c4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x959400","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.397Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18256c4","0x27e700f5","0x23eefb0","0x9593fc","0x959358","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18256c4","0x27e700f5","0x23eefb0","0x9593fc","0x959358","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.404Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18256c4","0x0","0x27e70065","0x18256c4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18256c4","0x0","0x27e70065","0x18256c4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9400\x95\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9400\x95\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:36.410Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18256c4","0x0","0x27e701ad","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18256c4","0x0","0x27e701ad","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x523dfc4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x523dfc4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.421Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x19265d8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.437Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.437Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.437Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.437Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x523dfc4","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523dfc4","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.442Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x523dfc4","0x0","0x24a70545","0x523dfc4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523dfc4","0x0","0x24a70545","0x523dfc4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:36.449Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x523dfc4","0x0","0x24a7068d","0x523dfc4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523dfc4","0x0","0x24a7068d","0x523dfc4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523dfc4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523dfc4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.455Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.456Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x1914e64","0x255c009d","0x85efc8","0x19265d4","0x1926530","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1914e64","0x255c009d","0x85efc8","0x19265d4","0x1926530","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.463Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u65d8ƒ\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u65d8ƒ\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:36.471Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 b6 71 4a 84 d4 dc 01 06 0a 00 00 00 10 b6 71 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.477Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.511Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:36.524Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.529Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.529Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.529Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.529Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.530Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.765Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51b6c5c","0x0","0x255c000d","0x51b6c5c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b6c5c","0x0","0x255c000d","0x51b6c5c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:36.781Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51b6c5c","0x0","0x255c0055","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b6c5c","0x0","0x255c0055","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b6c5c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1915f6c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1915f6c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.799Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1915f6c","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1915f6c","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.805Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1915f6c","0x0","0x255c000d","0x1915f6c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1915f6c","0x0","0x255c000d","0x1915f6c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:36.812Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1915f6c","0x0","0x255c0055","0x1915f6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1915f6c","0x0","0x255c0055","0x1915f6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1915f6c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1915f6c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 07 9f 4a 84 d4 dc 01 06 0a 00 00 00 a0 07 9f 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.822Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.823Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.823Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.823Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.823Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x523688c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x523688c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x958870","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.835Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x523688c","0x255c009d","0x85efc8","0x95886c","0x9587c8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523688c","0x255c009d","0x85efc8","0x95886c","0x9587c8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.841Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x523688c","0x0","0x255c000d","0x523688c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523688c","0x0","0x255c000d","0x523688c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u8870\x95\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u8870\x95\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:36.848Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x523688c","0x0","0x255c0055","0x523688c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523688c","0x0","0x255c0055","0x523688c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523688c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523688c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.853Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x9599c8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.861Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.863Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x191a38c","0x24a705d5","0x17eea90","0x9599c4","0x959920","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191a38c","0x24a705d5","0x17eea90","0x9599c4","0x959920","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.868Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x191a38c","0x0","0x24a70545","0x191a38c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191a38c","0x0","0x24a70545","0x191a38c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u99c8\x95\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u99c8\x95\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:36.875Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x191a38c","0x0","0x24a7068d","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191a38c","0x0","0x24a7068d","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.880Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.881Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.881Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.881Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.881Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51b1734","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51b1734","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.909Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x51b1734","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51b1734","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.915Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x51b1734","0x0","0x24a70545","0x51b1734","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b1734","0x0","0x24a70545","0x51b1734","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:36.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x51b1734","0x0","0x24a7068d","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b1734","0x0","0x24a7068d","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b1734","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 28 be 4a 84 d4 dc 01 06 0a 00 00 00 60 28 be 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:36.926Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.927Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.927Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.927Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.927Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18836ec","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18836ec","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f23d0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:36.947Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x18836ec","0x24a705d5","0x17eea90","0x17f23cc","0x17f2328","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18836ec","0x24a705d5","0x17eea90","0x17f23cc","0x17f2328","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.954Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18836ec","0x0","0x24a70545","0x18836ec","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18836ec","0x0","0x24a70545","0x18836ec","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u23d0\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u23d0\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:36.961Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18836ec","0x0","0x24a7068d","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18836ec","0x0","0x24a7068d","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18836ec","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:36.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:36.966Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:36.966Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.966Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:36.966Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f0120","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.254Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x523467c","0x24a705d5","0x17eea90","0x17f011c","0x17f0078","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523467c","0x24a705d5","0x17eea90","0x17f011c","0x17f0078","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.262Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x523467c","0x0","0x24a70545","0x523467c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x24a70545","0x523467c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0120\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0120\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:37.271Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x523467c","0x0","0x24a7068d","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x24a7068d","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.280Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.280Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.281Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51b1734","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51b1734","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.293Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x51b1734","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51b1734","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.302Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x51b1734","0x0","0x24a70545","0x51b1734","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b1734","0x0","0x24a70545","0x51b1734","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:37.313Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x51b1734","0x0","0x24a7068d","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b1734","0x0","0x24a7068d","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b1734","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b1734","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 c8 eb 4a 84 d4 dc 01 06 0a 00 00 00 10 c8 eb 4a 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.321Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.322Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.322Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.322Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.322Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51c463c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51c463c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ebc60","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.389Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x51c463c","0x24a705d5","0x17eea90","0x51ebc5c","0x51ebbb8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c463c","0x24a705d5","0x17eea90","0x51ebc5c","0x51ebbb8","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.399Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x51c463c","0x0","0x24a70545","0x51c463c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c463c","0x0","0x24a70545","0x51c463c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ubc60\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ubc60\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:37.415Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x51c463c","0x0","0x24a7068d","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c463c","0x0","0x24a7068d","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.422Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.433Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f8654","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f8654","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x958870","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.444Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.445Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.453Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:37.459Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 4c 0a 4b 84 d4 dc 01 06 0a 00 00 00 90 4c 0a 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.465Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.466Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.466Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.466Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.466Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x51f8654","0x255c009d","0x85efc8","0x95886c","0x9587c8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f8654","0x255c009d","0x85efc8","0x95886c","0x9587c8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.475Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51f8654","0x0","0x255c000d","0x51f8654","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f8654","0x0","0x255c000d","0x51f8654","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u8870\x95\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u8870\x95\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:37.485Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51f8654","0x0","0x255c0055","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f8654","0x0","0x255c0055","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f8654","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f8654","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18c14fc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18c14fc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.500Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.500Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.500Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.501Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.501Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x18c14fc","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18c14fc","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18c14fc","0x0","0x27e70065","0x18c14fc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18c14fc","0x0","0x27e70065","0x18c14fc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:37.512Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18c14fc","0x0","0x27e701ad","0x18c14fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18c14fc","0x0","0x27e701ad","0x18c14fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18c14fc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18c14fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.517Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.517Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.517Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.518Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18323b4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.753Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18323b4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.758Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18323b4","0x0","0x27e70065","0x18323b4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:37.765Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18323b4","0x0","0x27e701ad","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18323b4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.771Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18345c4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18345c4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.778Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18345c4","0x27e700f5","0x23eefb0","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18345c4","0x27e700f5","0x23eefb0","0x187a9f4","0x187a950","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.784Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18345c4","0x0","0x27e70065","0x18345c4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18345c4","0x0","0x27e70065","0x18345c4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:37.790Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18345c4","0x0","0x27e701ad","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18345c4","0x0","0x27e701ad","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 c5 37 4b 84 d4 dc 01 06 0a 00 00 00 30 c5 37 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.796Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18245bc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18245bc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x8dced0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.820Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18245bc","0x27e700f5","0x23eefb0","0x8dcecc","0x8dce28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18245bc","0x27e700f5","0x23eefb0","0x8dcecc","0x8dce28","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.827Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1878180","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.834Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18245bc","0x0","0x27e70065","0x18245bc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18245bc","0x0","0x27e70065","0x18245bc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uced0\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uced0\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:37.841Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18245bc","0x0","0x27e701ad","0x18245bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18245bc","0x0","0x27e701ad","0x18245bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18245bc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.847Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.847Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.847Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.847Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.847Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x187817c","0x18780d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x187817c","0x18780d8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.855Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u8180\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u8180\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:37.863Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:37.868Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.869Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.869Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.869Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.869Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5173660","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:37.909Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x517365c","0x51735b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x517365c","0x51735b8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:37.924Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 97 56 4b 84 d4 dc 01 06 0a 00 00 00 d0 97 56 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:37.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:37.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:37.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:37.930Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5173660","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.039Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x191b494","0x255c009d","0x85efc8","0x517365c","0x51735b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x191b494","0x255c009d","0x85efc8","0x517365c","0x51735b8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.044Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:38.051Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191b494","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.056Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18814dc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18814dc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x17f0120","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.254Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18814dc","0x255c009d","0x85efc8","0x17f011c","0x17f0078","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18814dc","0x255c009d","0x85efc8","0x17f011c","0x17f0078","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.261Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18814dc","0x0","0x255c000d","0x18814dc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18814dc","0x0","0x255c000d","0x18814dc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u0120\u017f\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u0120\u017f\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:38.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18814dc","0x0","0x255c0055","0x18814dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18814dc","0x0","0x255c0055","0x18814dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18814dc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18814dc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.275Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.275Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.275Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.276Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x191b494","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x191b494","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5173660","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.283Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x191b494","0x255c009d","0x85efc8","0x517365c","0x51735b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x191b494","0x255c009d","0x85efc8","0x517365c","0x51735b8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:38.296Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191b494","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191b494","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 37 84 4b 84 d4 dc 01 06 0a 00 00 00 80 37 84 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.301Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.301Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.301Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.302Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.302Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1905274","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1905274","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.368Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1905274","0x255c009d","0x85efc8","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1905274","0x255c009d","0x85efc8","0x187a9f4","0x187a950","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.374Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1905274","0x0","0x255c000d","0x1905274","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1905274","0x0","0x255c000d","0x1905274","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:38.380Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1905274","0x0","0x255c0055","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1905274","0x0","0x255c0055","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1905274","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.385Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.386Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.386Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.386Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5173660","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.400Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x191a38c","0x27e700f5","0x23eefb0","0x517365c","0x51735b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191a38c","0x27e700f5","0x23eefb0","0x517365c","0x51735b8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.408Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x191a38c","0x0","0x27e70065","0x191a38c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191a38c","0x0","0x27e70065","0x191a38c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u3660\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:38.419Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x191a38c","0x0","0x27e701ad","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191a38c","0x0","0x27e701ad","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.426Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.427Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.427Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.427Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.428Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.428Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f0120","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.449Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x523467c","0x24a705d5","0x17eea90","0x17f011c","0x17f0078","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523467c","0x24a705d5","0x17eea90","0x17f011c","0x17f0078","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.465Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x523467c","0x0","0x24a70545","0x523467c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x24a70545","0x523467c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0120\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0120\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:38.477Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x523467c","0x0","0x24a7068d","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x24a7068d","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 31 a3 4b 84 d4 dc 01 06 0a 00 00 00 30 31 a3 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.487Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.487Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.488Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.488Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.488Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51b6c5c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51b6c5c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.586Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x51b6c5c","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51b6c5c","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.591Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x51b6c5c","0x0","0x24a70545","0x51b6c5c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b6c5c","0x0","0x24a70545","0x51b6c5c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:38.597Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x51b6c5c","0x0","0x24a7068d","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b6c5c","0x0","0x24a7068d","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b6c5c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.602Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.602Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.602Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.602Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.602Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.756Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51b6c5c","0x24a705d5","0x17eea90","0x524aadc","0x524aa38","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.763Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x51b6c5c","0x0","0x24a70545","0x51b6c5c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b6c5c","0x0","0x24a70545","0x51b6c5c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:38.771Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x51b6c5c","0x0","0x24a7068d","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b6c5c","0x0","0x24a7068d","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b6c5c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b6c5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x182df04","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x182df04","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ea4d0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.792Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x182df04","0x24a705d5","0x17eea90","0x51ea4cc","0x51ea428","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x182df04","0x24a705d5","0x17eea90","0x51ea4cc","0x51ea428","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.799Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x182df04","0x0","0x24a70545","0x182df04","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182df04","0x0","0x24a70545","0x182df04","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:38.807Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x182df04","0x0","0x24a7068d","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182df04","0x0","0x24a7068d","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182df04","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 82 d0 4b 84 d4 dc 01 06 0a 00 00 00 c0 82 d0 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.813Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.814Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51b1734","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51b1734","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.822Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x51b1734","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51b1734","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.828Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51b1734","0x0","0x255c000d","0x51b1734","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b1734","0x0","0x255c000d","0x51b1734","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:38.835Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51b1734","0x0","0x255c0055","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b1734","0x0","0x255c0055","0x51b1734","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b1734","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b1734","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.839Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.840Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.840Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.840Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.840Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18345c4","0x255c009d","0x85efc8","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18345c4","0x255c009d","0x85efc8","0x187a9f4","0x187a950","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.920Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:38.933Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 55 ef 4b 84 d4 dc 01 06 0a 00 00 00 60 55 ef 4b 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:38.940Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x5235784","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x5235784","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f2f60","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:38.948Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.948Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.948Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.949Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.949Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x5235784","0x24a705d5","0x17eea90","0x17f2f5c","0x17f2eb8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5235784","0x24a705d5","0x17eea90","0x17f2f5c","0x17f2eb8","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.955Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x5235784","0x0","0x24a70545","0x5235784","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5235784","0x0","0x24a70545","0x5235784","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2f60\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2f60\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:38.962Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x5235784","0x0","0x24a7068d","0x5235784","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5235784","0x0","0x24a7068d","0x5235784","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5235784","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5235784","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:38.967Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:38.967Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:38.967Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.967Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:38.967Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1888c14","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1888c14","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f0cb0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.024Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x1888c14","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1888c14","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.030Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1888c14","0x0","0x24a70545","0x1888c14","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1888c14","0x0","0x24a70545","0x1888c14","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:39.037Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1888c14","0x0","0x24a7068d","0x1888c14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1888c14","0x0","0x24a7068d","0x1888c14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1888c14","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1888c14","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.045Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.045Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.046Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x523025c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x523025c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f1278","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.260Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x523025c","0x24a705d5","0x17eea90","0x17f1274","0x17f11d0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523025c","0x24a705d5","0x17eea90","0x17f1274","0x17f11d0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.265Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x523025c","0x0","0x24a70545","0x523025c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523025c","0x0","0x24a70545","0x523025c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u1278\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u1278\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:39.273Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x523025c","0x0","0x24a7068d","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523025c","0x0","0x24a7068d","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523025c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.279Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18345c4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18345c4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.287Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x18345c4","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18345c4","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.293Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18345c4","0x0","0x24a70545","0x18345c4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18345c4","0x0","0x24a70545","0x18345c4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:39.299Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18345c4","0x0","0x24a7068d","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18345c4","0x0","0x24a7068d","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 ce 1c 4c 84 d4 dc 01 06 0a 00 00 00 00 ce 1c 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.304Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.305Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.305Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.305Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.305Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1905274","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1905274","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.351Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x1905274","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1905274","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.357Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1905274","0x0","0x24a70545","0x1905274","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1905274","0x0","0x24a70545","0x1905274","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:39.364Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1905274","0x0","0x24a7068d","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1905274","0x0","0x24a7068d","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1905274","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.369Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b3704","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b3704","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5174d80","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.378Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18b3704","0x255c009d","0x85efc8","0x5174d7c","0x5174cd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b3704","0x255c009d","0x85efc8","0x5174d7c","0x5174cd8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.383Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18b3704","0x0","0x255c000d","0x18b3704","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b3704","0x0","0x255c000d","0x18b3704","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u4d80\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u4d80\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:39.389Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18b3704","0x0","0x255c0055","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b3704","0x0","0x255c0055","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b3704","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b3704","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.395Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.395Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.395Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.395Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18389e4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18389e4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51747b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.417Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18389e4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18389e4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.424Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18389e4","0x0","0x255c000d","0x18389e4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18389e4","0x0","0x255c000d","0x18389e4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:39.432Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18389e4","0x0","0x255c0055","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18389e4","0x0","0x255c0055","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18389e4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 c7 3b 4c 84 d4 dc 01 06 0a 00 00 00 b0 c7 3b 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.438Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.438Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.438Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.438Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.438Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51c5744","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51c5744","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x8da658","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.466Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x51c5744","0x255c009d","0x85efc8","0x8da654","0x8da5b0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c5744","0x255c009d","0x85efc8","0x8da654","0x8da5b0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.473Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51c5744","0x0","0x255c000d","0x51c5744","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c5744","0x0","0x255c000d","0x51c5744","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua658\x8d\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua658\x8d\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:39.480Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51c5744","0x0","0x255c0055","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c5744","0x0","0x255c0055","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c5744","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c5744","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.485Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.486Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.486Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.486Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.486Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5247ca0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.765Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x183df0c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x183df0c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x183df0c","0x0","0x255c000d","0x183df0c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183df0c","0x0","0x255c000d","0x183df0c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:39.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x183df0c","0x0","0x255c0055","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183df0c","0x0","0x255c0055","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183df0c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1829ae4","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.805Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1829ae4","0x0","0x255c000d","0x1829ae4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1829ae4","0x0","0x255c000d","0x1829ae4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:39.817Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1829ae4","0x0","0x255c0055","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1829ae4","0x0","0x255c0055","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 cb 68 4c 84 d4 dc 01 06 0a 00 00 00 20 cb 68 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.825Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.826Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.826Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.826Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.826Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18389e4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18389e4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51747b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.901Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18389e4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18389e4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18389e4","0x0","0x255c000d","0x18389e4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18389e4","0x0","0x255c000d","0x18389e4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:39.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18389e4","0x0","0x255c0055","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18389e4","0x0","0x255c0055","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18389e4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.920Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18825e4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18825e4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f1278","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.928Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:39.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.937Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x18825e4","0x24a705d5","0x17eea90","0x17f1274","0x17f11d0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18825e4","0x24a705d5","0x17eea90","0x17f1274","0x17f11d0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.942Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18825e4","0x0","0x24a70545","0x18825e4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18825e4","0x0","0x24a70545","0x18825e4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u1278\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u1278\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:39.949Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18825e4","0x0","0x24a7068d","0x18825e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18825e4","0x0","0x24a7068d","0x18825e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18825e4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:39.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.955Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51741ec","0x5174148","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.962Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:39.969Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 eb 87 4c 84 d4 dc 01 06 0a 00 00 00 e0 eb 87 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:39.974Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:39.974Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:39.974Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.975Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:39.975Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x523246c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x523246c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x52476d8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.013Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x523246c","0x27e700f5","0x23eefb0","0x52476d4","0x5247630","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x523246c","0x27e700f5","0x23eefb0","0x52476d4","0x5247630","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.022Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x523246c","0x0","0x27e70065","0x523246c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523246c","0x0","0x27e70065","0x523246c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:40.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x523246c","0x0","0x27e701ad","0x523246c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523246c","0x0","0x27e701ad","0x523246c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523246c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a8 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.040Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x523467c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523467c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.278Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x523467c","0x0","0x27e70065","0x523467c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x27e70065","0x523467c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:40.287Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x523467c","0x0","0x27e701ad","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x27e701ad","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.293Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.293Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.294Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.294Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.294Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18c03f4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18c03f4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x8dac20","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.303Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18c03f4","0x27e700f5","0x23eefb0","0x8dac1c","0x8dab78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18c03f4","0x27e700f5","0x23eefb0","0x8dac1c","0x8dab78","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.309Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18c03f4","0x0","0x27e70065","0x18c03f4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18c03f4","0x0","0x27e70065","0x18c03f4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:40.319Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18c03f4","0x0","0x27e701ad","0x18c03f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18c03f4","0x0","0x27e701ad","0x18c03f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18c03f4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18c03f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 16 b5 4c 84 d4 dc 01 06 0a 00 00 00 60 16 b5 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.328Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x190858c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x190858c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x5247ca0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.335Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.336Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.336Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.336Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.336Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x190858c","0x24a705d5","0x17eea90","0x5247c9c","0x5247bf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x190858c","0x24a705d5","0x17eea90","0x5247c9c","0x5247bf8","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.342Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x190858c","0x0","0x24a70545","0x190858c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x190858c","0x0","0x24a70545","0x190858c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:40.348Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x190858c","0x0","0x24a7068d","0x190858c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x190858c","0x0","0x24a7068d","0x190858c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x190858c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.352Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.353Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.353Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.353Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.353Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.408Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x18345c4","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18345c4","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18345c4","0x0","0x24a70545","0x18345c4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18345c4","0x0","0x24a70545","0x18345c4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:40.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18345c4","0x0","0x24a7068d","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18345c4","0x0","0x24a7068d","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 10 d4 4c 84 d4 dc 01 06 0a 00 00 00 10 10 d4 4c 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.429Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.429Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.429Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.430Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1886a04","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1886a04","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f0cb0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x1886a04","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1886a04","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.453Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1886a04","0x0","0x24a70545","0x1886a04","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1886a04","0x0","0x24a70545","0x1886a04","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:40.461Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1886a04","0x0","0x24a7068d","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1886a04","0x0","0x24a7068d","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1886a04","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 a9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.469Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.478Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.478Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.479Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.479Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.486Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:40.493Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.499Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.499Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.500Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.500Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.500Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1888c14","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1888c14","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x17f0cb0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.756Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x1888c14","0x27e700f5","0x23eefb0","0x17f0cac","0x17f0c08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1888c14","0x27e700f5","0x23eefb0","0x17f0cac","0x17f0c08","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.765Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x1888c14","0x0","0x27e70065","0x1888c14","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1888c14","0x0","0x27e70065","0x1888c14","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:40.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x1888c14","0x0","0x27e701ad","0x1888c14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1888c14","0x0","0x27e701ad","0x1888c14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1888c14","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1888c14","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.781Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.781Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.781Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.781Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.790Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:40.804Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 61 01 4d 84 d4 dc 01 06 0a 00 00 00 a0 61 01 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.810Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51b6c5c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51b6c5c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.883Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x51b6c5c","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51b6c5c","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.890Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51b6c5c","0x0","0x27e70065","0x51b6c5c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b6c5c","0x0","0x27e70065","0x51b6c5c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uaae0\u0524\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:40.898Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51b6c5c","0x0","0x27e701ad","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b6c5c","0x0","0x27e701ad","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b6c5c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b6c5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.904Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1886a04","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1886a04","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f0cb0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.911Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.911Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.911Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5247ca0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.919Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.919Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x1886a04","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1886a04","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.926Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1886a04","0x0","0x24a70545","0x1886a04","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1886a04","0x0","0x24a70545","0x1886a04","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:40.933Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1886a04","0x0","0x24a7068d","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1886a04","0x0","0x24a7068d","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1886a04","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1886a04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.938Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.938Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.938Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.938Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x183df0c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x183df0c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.944Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x183df0c","0x0","0x255c000d","0x183df0c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183df0c","0x0","0x255c000d","0x183df0c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:40.950Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x183df0c","0x0","0x255c0055","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183df0c","0x0","0x255c0055","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183df0c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 f7 20 4d 84 d4 dc 01 06 0a 00 00 00 90 f7 20 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:40.956Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:40.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:40.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:40.957Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175348","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:40.992Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x191b494","0x255c009d","0x85efc8","0x5175344","0x51752a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x191b494","0x255c009d","0x85efc8","0x5175344","0x51752a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:40.999Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5348\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5348\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:41.004Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191b494","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 aa 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.010Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.010Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.010Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.010Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.010Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1905274","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1905274","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.260Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x1905274","0x255c009d","0x85efc8","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1905274","0x255c009d","0x85efc8","0x187a9f4","0x187a950","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1905274","0x0","0x255c000d","0x1905274","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1905274","0x0","0x255c000d","0x1905274","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:41.274Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1905274","0x0","0x255c0055","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1905274","0x0","0x255c0055","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1905274","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1905274","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.280Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.280Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.280Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.280Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x183df0c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x183df0c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5247ca0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x183df0c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x183df0c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x183df0c","0x0","0x255c000d","0x183df0c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183df0c","0x0","0x255c000d","0x183df0c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:41.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x183df0c","0x0","0x255c0055","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183df0c","0x0","0x255c0055","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183df0c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ac 4d 4d 84 d4 dc 01 06 0a 00 00 00 e0 ac 4d 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.307Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x190858c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x190858c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5247ca0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.318Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x190858c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x190858c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.324Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x190858c","0x0","0x255c000d","0x190858c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x190858c","0x0","0x255c000d","0x190858c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:41.331Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x190858c","0x0","0x255c0055","0x190858c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x190858c","0x0","0x255c0055","0x190858c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x190858c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.335Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.342Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.343Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.343Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.343Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.343Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x182abec","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182abec","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.348Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x24a70545","0x182abec","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x24a70545","0x182abec","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.356Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x182abec","0x0","0x24a7068d","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x24a7068d","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.361Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.361Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.361Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.361Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.361Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.411Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x18212a4","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18212a4","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.417Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.425Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 f4 6c 4d 84 d4 dc 01 06 0a 00 00 00 b0 f4 6c 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.431Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18356cc","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18356cc","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.537Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x18356cc","0x24a705d5","0x17eea90","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18356cc","0x24a705d5","0x17eea90","0x51e9f04","0x51e9e60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.543Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18356cc","0x0","0x24a70545","0x18356cc","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18356cc","0x0","0x24a70545","0x18356cc","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.549Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18356cc","0x0","0x24a7068d","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18356cc","0x0","0x24a7068d","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18356cc","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ab 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.554Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.554Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.554Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.554Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.554Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x523025c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x523025c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f0cb0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.756Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x523025c","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523025c","0x24a705d5","0x17eea90","0x17f0cac","0x17f0c08","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.765Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x523025c","0x0","0x24a70545","0x523025c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523025c","0x0","0x24a70545","0x523025c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x523025c","0x0","0x24a7068d","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523025c","0x0","0x24a7068d","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523025c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523025c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.778Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.779Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f312c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f312c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x51f312c","0x24a705d5","0x17eea90","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51f312c","0x24a705d5","0x17eea90","0x51e9f04","0x51e9e60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.795Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x51f312c","0x0","0x24a70545","0x51f312c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f312c","0x0","0x24a70545","0x51f312c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x51f312c","0x0","0x24a7068d","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f312c","0x0","0x24a7068d","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 1f 9a 4d 84 d4 dc 01 06 0a 00 00 00 30 1f 9a 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.807Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.807Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.807Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.807Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.808Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.867Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x18212a4","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18212a4","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.872Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.878Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.883Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x190858c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x190858c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5247ca0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.890Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.891Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.891Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.891Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.892Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x190858c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x190858c","0x255c009d","0x85efc8","0x5247c9c","0x5247bf8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.897Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x190858c","0x0","0x255c000d","0x190858c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x190858c","0x0","0x255c000d","0x190858c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u7ca0\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:41.904Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x190858c","0x0","0x255c0055","0x190858c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x190858c","0x0","0x255c0055","0x190858c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x190858c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x190858c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.908Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.909Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.909Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.909Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.909Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.917Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x182abec","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182abec","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.923Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x182abec","0x0","0x24a70545","0x182abec","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x24a70545","0x182abec","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x182abec","0x0","0x24a7068d","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x24a7068d","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 18 b9 4d 84 d4 dc 01 06 0a 00 00 00 e0 18 b9 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:41.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.936Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1914e64","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1914e64","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:41.974Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x1914e64","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1914e64","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.979Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1914e64","0x0","0x24a70545","0x1914e64","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1914e64","0x0","0x24a70545","0x1914e64","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:41.987Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1914e64","0x0","0x24a7068d","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1914e64","0x0","0x24a7068d","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ac 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:41.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:41.993Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:41.993Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.993Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:41.993Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1901f5c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1901f5c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x1923d60","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.255Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x1901f5c","0x24a705d5","0x17eea90","0x1923d5c","0x1923cb8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1901f5c","0x24a705d5","0x17eea90","0x1923d5c","0x1923cb8","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.261Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x1901f5c","0x0","0x24a70545","0x1901f5c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1901f5c","0x0","0x24a70545","0x1901f5c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u3d60ƒ\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u3d60ƒ\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:42.268Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x1901f5c","0x0","0x24a7068d","0x1901f5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1901f5c","0x0","0x24a7068d","0x1901f5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1901f5c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1901f5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.275Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.275Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x18212a4","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18212a4","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.288Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:42.294Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 43 e6 4d 84 d4 dc 01 06 0a 00 00 00 60 43 e6 4d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.299Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x183ce04","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x183ce04","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ee4d8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.306Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.307Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x183ce04","0x255c009d","0x85efc8","0x51ee4d4","0x51ee430","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x183ce04","0x255c009d","0x85efc8","0x51ee4d4","0x51ee430","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.312Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x183ce04","0x0","0x255c000d","0x183ce04","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x183ce04","0x0","0x255c000d","0x183ce04","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ue4d8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ue4d8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:42.318Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x183ce04","0x0","0x255c0055","0x183ce04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x183ce04","0x0","0x255c0055","0x183ce04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183ce04","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.324Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.324Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.325Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.325Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.325Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x522f154","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x522f154","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ee4d8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.410Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x522f154","0x255c009d","0x85efc8","0x51ee4d4","0x51ee430","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x522f154","0x255c009d","0x85efc8","0x51ee4d4","0x51ee430","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.420Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x522f154","0x0","0x255c000d","0x522f154","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x522f154","0x0","0x255c000d","0x522f154","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ue4d8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ue4d8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:42.431Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x522f154","0x0","0x255c0055","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x522f154","0x0","0x255c0055","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x522f154","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 64 05 4e 84 d4 dc 01 06 0a 00 00 00 20 64 05 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.440Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.441Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1905274","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1905274","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x187a9f8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.449Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x1905274","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1905274","0x24a705d5","0x17eea90","0x187a9f4","0x187a950","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1905274","0x0","0x24a70545","0x1905274","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1905274","0x0","0x24a70545","0x1905274","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua9f8\u0187\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:42.464Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1905274","0x0","0x24a7068d","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1905274","0x0","0x24a7068d","0x1905274","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1905274","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1905274","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.469Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.469Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.470Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.470Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.470Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x191817c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x191817c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x52476d8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.527Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x191817c","0x24a705d5","0x17eea90","0x52476d4","0x5247630","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x191817c","0x24a705d5","0x17eea90","0x52476d4","0x5247630","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.541Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x191817c","0x0","0x24a70545","0x191817c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191817c","0x0","0x24a70545","0x191817c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:42.556Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x191817c","0x0","0x24a7068d","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191817c","0x0","0x24a7068d","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ad 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.569Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.570Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.570Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.570Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.570Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.762Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x182abec","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182abec","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.770Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x182abec","0x0","0x24a70545","0x182abec","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x24a70545","0x182abec","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:42.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x182abec","0x0","0x24a7068d","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x24a7068d","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.788Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.788Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f975c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f975c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.795Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x51f975c","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51f975c","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.801Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x51f975c","0x0","0x24a70545","0x51f975c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f975c","0x0","0x24a70545","0x51f975c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:42.808Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x51f975c","0x0","0x24a7068d","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f975c","0x0","0x24a7068d","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f975c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f975c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 b5 32 4e 84 d4 dc 01 06 0a 00 00 00 b0 b5 32 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.814Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1829ae4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1829ae4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.853Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x1829ae4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1829ae4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.859Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1829ae4","0x0","0x24a70545","0x1829ae4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1829ae4","0x0","0x24a70545","0x1829ae4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:42.865Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1829ae4","0x0","0x24a7068d","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1829ae4","0x0","0x24a7068d","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.870Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18323b4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18323b4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.878Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.878Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.878Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.879Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.879Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18323b4","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18323b4","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.884Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18323b4","0x0","0x255c000d","0x18323b4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18323b4","0x0","0x255c000d","0x18323b4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:42.891Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18323b4","0x0","0x255c0055","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18323b4","0x0","0x255c0055","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18323b4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18323b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.895Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.896Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.896Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.896Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.896Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.908Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18278d4","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18278d4","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.914Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:42.921Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 88 51 4e 84 d4 dc 01 06 0a 00 00 00 50 88 51 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:42.926Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.927Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.927Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.927Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.927Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18825e4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18825e4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x17f0cb0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:42.963Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18825e4","0x255c009d","0x85efc8","0x17f0cac","0x17f0c08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18825e4","0x255c009d","0x85efc8","0x17f0cac","0x17f0c08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.969Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18825e4","0x0","0x255c000d","0x18825e4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18825e4","0x0","0x255c000d","0x18825e4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:42.975Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18825e4","0x0","0x255c0055","0x18825e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18825e4","0x0","0x255c0055","0x18825e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18825e4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18825e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ae 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:42.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:42.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:42.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:42.982Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18323b4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18323b4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.263Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18323b4","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18323b4","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18323b4","0x0","0x255c000d","0x18323b4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18323b4","0x0","0x255c000d","0x18323b4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:43.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18323b4","0x0","0x255c0055","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18323b4","0x0","0x255c0055","0x18323b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18323b4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18323b4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.283Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.291Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1829ae4","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.297Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1829ae4","0x0","0x255c000d","0x1829ae4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1829ae4","0x0","0x255c000d","0x1829ae4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:43.303Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1829ae4","0x0","0x255c0055","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1829ae4","0x0","0x255c0055","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 00 7f 4e 84 d4 dc 01 06 0a 00 00 00 f0 00 7f 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.309Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.309Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.309Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.309Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18356cc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18356cc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.402Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18356cc","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18356cc","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.410Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18356cc","0x0","0x255c000d","0x18356cc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18356cc","0x0","0x255c000d","0x18356cc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:43.419Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18356cc","0x0","0x255c0055","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18356cc","0x0","0x255c0055","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18356cc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.426Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.434Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.442Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.442Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.442Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:43.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 fa 9d 4e 84 d4 dc 01 06 0a 00 00 00 a0 fa 9d 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.463Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.463Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.463Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.464Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x18234b4","0x24a705d5","0x17eea90","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18234b4","0x24a705d5","0x17eea90","0x51e993c","0x51e9898","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.469Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18234b4","0x0","0x24a70545","0x18234b4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18234b4","0x0","0x24a70545","0x18234b4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:43.476Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18234b4","0x0","0x24a7068d","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18234b4","0x0","0x24a7068d","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18234b4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.481Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.481Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.481Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.481Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.481Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.509Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x18212a4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18212a4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.515Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:43.521Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 af 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.526Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.527Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.527Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.527Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.527Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51ad314","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51ad314","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x1923d60","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.754Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x51ad314","0x24a705d5","0x17eea90","0x1923d5c","0x1923cb8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51ad314","0x24a705d5","0x17eea90","0x1923d5c","0x1923cb8","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.763Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x51ad314","0x0","0x24a70545","0x51ad314","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51ad314","0x0","0x24a70545","0x51ad314","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u3d60ƒ\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u3d60ƒ\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:43.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x51ad314","0x0","0x24a7068d","0x51ad314","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51ad314","0x0","0x24a7068d","0x51ad314","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51ad314","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51ad314","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.781Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.782Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.782Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.782Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.782Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1886a04","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1886a04","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x524a518","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.791Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x1886a04","0x24a705d5","0x17eea90","0x524a514","0x524a470","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1886a04","0x24a705d5","0x17eea90","0x524a514","0x524a470","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.800Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x1886a04","0x0","0x24a70545","0x1886a04","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1886a04","0x0","0x24a70545","0x1886a04","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:43.810Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x1886a04","0x0","0x24a7068d","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1886a04","0x0","0x24a7068d","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1886a04","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 25 cb 4e 84 d4 dc 01 06 0a 00 00 00 20 25 cb 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.817Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.818Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.818Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.818Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.818Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x523246c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x523246c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x52476d8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.838Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x523246c","0x24a705d5","0x17eea90","0x52476d4","0x5247630","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523246c","0x24a705d5","0x17eea90","0x52476d4","0x5247630","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.843Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x523246c","0x0","0x24a70545","0x523246c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523246c","0x0","0x24a70545","0x523246c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:43.849Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x523246c","0x0","0x24a7068d","0x523246c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523246c","0x0","0x24a7068d","0x523246c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523246c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523246c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.854Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.854Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.854Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.854Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.854Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x5233574","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x5233574","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e7c58","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.873Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x5233574","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5233574","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.885Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x5233574","0x0","0x27e70065","0x5233574","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5233574","0x0","0x27e70065","0x5233574","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:43.898Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x5233574","0x0","0x27e701ad","0x5233574","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5233574","0x0","0x27e701ad","0x5233574","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5233574","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:43.912Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:43.925Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.926Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.926Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.926Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.927Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x18212a4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18212a4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.937Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18212a4","0x0","0x24a70545","0x18212a4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:43.949Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18212a4","0x0","0x24a7068d","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 1e ea 4e 84 d4 dc 01 06 0a 00 00 00 d0 1e ea 4e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:43.961Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:43.963Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:43.963Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:43.964Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182df04","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182df04","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ea4d0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.056Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x182df04","0x24a705d5","0x17eea90","0x51ea4cc","0x51ea428","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182df04","0x24a705d5","0x17eea90","0x51ea4cc","0x51ea428","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.064Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x182df04","0x0","0x24a70545","0x182df04","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182df04","0x0","0x24a70545","0x182df04","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:44.073Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x182df04","0x0","0x24a7068d","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182df04","0x0","0x24a7068d","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182df04","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182df04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.080Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.080Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.080Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.081Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.081Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.263Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x1829ae4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x24a705d5","0x17eea90","0x1922c04","0x1922b60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x1829ae4","0x0","0x24a70545","0x1829ae4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1829ae4","0x0","0x24a70545","0x1829ae4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:44.276Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x1829ae4","0x0","0x24a7068d","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1829ae4","0x0","0x24a7068d","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18836ec","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18836ec","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x524a518","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.290Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x18836ec","0x24a705d5","0x17eea90","0x524a514","0x524a470","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18836ec","0x24a705d5","0x17eea90","0x524a514","0x524a470","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.296Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18836ec","0x0","0x24a70545","0x18836ec","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18836ec","0x0","0x24a70545","0x18836ec","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:44.302Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18836ec","0x0","0x24a7068d","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18836ec","0x0","0x24a7068d","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18836ec","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18836ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 e5 17 4f 84 d4 dc 01 06 0a 00 00 00 90 e5 17 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.308Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x191817c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x191817c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x52476d8","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.381Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x191817c","0x24a705d5","0x17eea90","0x52476d4","0x5247630","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191817c","0x24a705d5","0x17eea90","0x52476d4","0x5247630","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.388Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x191817c","0x0","0x24a70545","0x191817c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191817c","0x0","0x24a70545","0x191817c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u76d8\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:44.395Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x191817c","0x0","0x24a7068d","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191817c","0x0","0x24a7068d","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c9 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.400Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e7c58","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.411Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.412Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.412Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.413Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.413Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.424Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18223ac","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18223ac","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.433Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:44.442Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18223ac","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18223ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c8 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.449Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.451Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.451Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.451Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.451Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x51f312c","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51f312c","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:44.465Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 91 36 4f 84 d4 dc 01 06 0a 00 00 00 20 91 36 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.471Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.471Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.471Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.471Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.471Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51747b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18345c4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18345c4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.498Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:44.504Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.751Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18212a4","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18212a4","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.757Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18212a4","0x0","0x255c000d","0x18212a4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18212a4","0x0","0x255c000d","0x18212a4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:44.765Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18212a4","0x0","0x255c0055","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18212a4","0x0","0x255c0055","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18825e4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18825e4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x17f0cb0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18825e4","0x255c009d","0x85efc8","0x17f0cac","0x17f0c08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18825e4","0x255c009d","0x85efc8","0x17f0cac","0x17f0c08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.786Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18825e4","0x0","0x255c000d","0x18825e4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18825e4","0x0","0x255c000d","0x18825e4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u0cb0\u017f\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:44.794Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18825e4","0x0","0x255c0055","0x18825e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18825e4","0x0","0x255c0055","0x18825e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18825e4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18825e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e2 63 4f 84 d4 dc 01 06 0a 00 00 00 b0 e2 63 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.801Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.820Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x51f312c","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f312c","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.825Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:44.831Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cb 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.837Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.844Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.845Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x1829ae4","0x27e700f5","0x23eefb0","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1829ae4","0x27e700f5","0x23eefb0","0x1922c04","0x1922b60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.851Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2c08ƒ\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:44.857Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1829ae4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ca 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:44.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.862Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:44.913Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:44.930Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 dc 82 4f 84 d4 dc 01 06 0a 00 00 00 60 dc 82 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:44.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:44.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:44.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:44.936Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182abec","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182abec","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x182abec","0x27e700f5","0x23eefb0","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182abec","0x27e700f5","0x23eefb0","0x51ed944","0x51ed8a0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.045Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x27e70065","0x182abec","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x27e70065","0x182abec","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.051Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x182abec","0x0","0x27e701ad","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x27e701ad","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.057Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.057Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.057Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.262Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.283Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18356cc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18356cc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.293Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18356cc","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18356cc","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18356cc","0x0","0x27e70065","0x18356cc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18356cc","0x0","0x27e70065","0x18356cc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9f08\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.309Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18356cc","0x0","0x27e701ad","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18356cc","0x0","0x27e701ad","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18356cc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 2d b0 4f 84 d4 dc 01 06 0a 00 00 00 f0 2d b0 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.315Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.315Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.315Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.315Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1915f6c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1915f6c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5175348","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.364Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x1915f6c","0x27e700f5","0x23eefb0","0x5175344","0x51752a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1915f6c","0x27e700f5","0x23eefb0","0x5175344","0x51752a0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.369Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x1915f6c","0x0","0x27e70065","0x1915f6c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1915f6c","0x0","0x27e70065","0x1915f6c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u5348\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u5348\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.376Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x1915f6c","0x0","0x27e701ad","0x1915f6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1915f6c","0x0","0x27e701ad","0x1915f6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1915f6c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cd 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.381Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.389Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.390Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.390Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.390Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.390Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x182abec","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182abec","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.396Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:45.403Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cc 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.408Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.419Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.420Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.420Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.420Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.420Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.427Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.435Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 27 cf 4f 84 d4 dc 01 06 0a 00 00 00 a0 27 cf 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.440Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.440Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.440Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.440Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.441Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.475Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.481Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.488Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.493Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.494Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.494Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.494Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.494Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.753Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.759Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x27e70065","0x18b25fc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.767Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x27e701ad","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.775Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.776Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.776Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.776Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.776Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x183df0c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x183df0c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.785Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x183df0c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x183df0c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.791Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x183df0c","0x0","0x27e70065","0x183df0c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183df0c","0x0","0x27e70065","0x183df0c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:45.798Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x183df0c","0x0","0x27e701ad","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183df0c","0x0","0x27e701ad","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183df0c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 79 fc 4f 84 d4 dc 01 06 0a 00 00 00 30 79 fc 4f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.804Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1913d5c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1913d5c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.812Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.812Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.812Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.812Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x1913d5c","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1913d5c","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.817Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1913d5c","0x0","0x24a70545","0x1913d5c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1913d5c","0x0","0x24a70545","0x1913d5c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:45.823Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1913d5c","0x0","0x24a7068d","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1913d5c","0x0","0x24a7068d","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ce 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.829Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.829Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.829Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.830Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1914e64","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1914e64","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x1914e64","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1914e64","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x1914e64","0x0","0x24a70545","0x1914e64","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1914e64","0x0","0x24a70545","0x1914e64","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:45.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x1914e64","0x0","0x24a7068d","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1914e64","0x0","0x24a7068d","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 72 1b 50 84 d4 dc 01 06 0a 00 00 00 e0 72 1b 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:45.928Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18356cc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18356cc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:45.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.936Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18356cc","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18356cc","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.942Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18356cc","0x0","0x255c000d","0x18356cc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18356cc","0x0","0x255c000d","0x18356cc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:45.949Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18356cc","0x0","0x255c0055","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18356cc","0x0","0x255c0055","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18356cc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18356cc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 cf 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:45.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:45.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:45.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:45.955Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.025Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x51f312c","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51f312c","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.030Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:46.035Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.041Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.041Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.041Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.042Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.042Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.252Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.258Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:46.265Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.271Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f312c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.279Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x51f312c","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51f312c","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.285Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f312c","0x0","0x255c000d","0x51f312c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:46.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f312c","0x0","0x255c0055","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 eb 48 50 84 d4 dc 01 06 0a 00 00 00 70 c4 48 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.298Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.299Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.299Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.299Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.299Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.350Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.356Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:46.363Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d1 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.371Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.379Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.379Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.379Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.379Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.379Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x18b6a1c","0x24a705d5","0x17eea90","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b6a1c","0x24a705d5","0x17eea90","0x524710c","0x5247068","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.385Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18b6a1c","0x0","0x24a70545","0x18b6a1c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b6a1c","0x0","0x24a70545","0x18b6a1c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u7110\u0524\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u7110\u0524\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:46.392Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18b6a1c","0x0","0x24a7068d","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b6a1c","0x0","0x24a7068d","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d0 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.397Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.398Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.398Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.398Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.398Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18356cc","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18356cc","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.415Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x18356cc","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18356cc","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.424Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x18356cc","0x0","0x24a70545","0x18356cc","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18356cc","0x0","0x24a70545","0x18356cc","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\ucdc4\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:46.431Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x18356cc","0x0","0x24a7068d","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18356cc","0x0","0x24a7068d","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18356cc","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 be 67 50 84 d4 dc 01 06 0a 00 00 00 20 be 67 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.436Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1914e64","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1914e64","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.464Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x2","0x2e","0x1914e64","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1914e64","0x24a705d5","0x17eea90","0x517590c","0x5175868","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.469Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x1914e64","0x0","0x24a70545","0x1914e64","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1914e64","0x0","0x24a70545","0x1914e64","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:46.476Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x1914e64","0x0","0x24a7068d","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1914e64","0x0","0x24a7068d","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.481Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.482Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.482Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.482Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.482Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51f312c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51f312c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.768Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffd","0x62","0x51f312c","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51f312c","0x24a705d5","0x17eea90","0x51ed944","0x51ed8a0","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.777Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x51f312c","0x0","0x24a70545","0x51f312c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f312c","0x0","0x24a70545","0x51f312c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:46.789Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x51f312c","0x0","0x24a7068d","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f312c","0x0","0x24a7068d","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f312c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.797Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.797Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.798Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.798Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.798Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x183abf4","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x183abf4","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x17f1e08","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.810Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x7ffe","0x62","0x183abf4","0x24a705d5","0x17eea90","0x17f1e04","0x17f1d60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x183abf4","0x24a705d5","0x17eea90","0x17f1e04","0x17f1d60","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.816Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x62","0x183abf4","0x0","0x24a70545","0x183abf4","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183abf4","0x0","0x24a70545","0x183abf4","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u1e08\u017f\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u9e84\u0126\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\u1e08\u017f\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:46.822Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x62","0x183abf4","0x0","0x24a7068d","0x183abf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183abf4","0x0","0x24a7068d","0x183abf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183abf4","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183abf4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 0f 95 50 84 d4 dc 01 06 0a 00 00 00 b0 0f 95 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.829Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.829Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.829Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.829Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c021c","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c021c","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x8dda60","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.899Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x51c021c","0x24a705d5","0x17eea90","0x8dda5c","0x8dd9b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c021c","0x24a705d5","0x17eea90","0x8dda5c","0x8dd9b8","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.905Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x51c021c","0x0","0x24a70545","0x51c021c","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c021c","0x0","0x24a70545","0x51c021c","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u2b0c\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:46.913Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1915f6c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1915f6c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5174d80","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:46.935Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x51c021c","0x0","0x24a7068d","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c021c","0x0","0x24a7068d","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c021c","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d3 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.941Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.941Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x183df0c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x183df0c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.946Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x183df0c","0x0","0x27e70065","0x183df0c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183df0c","0x0","0x27e70065","0x183df0c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:46.953Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x183df0c","0x0","0x27e701ad","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183df0c","0x0","0x27e701ad","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183df0c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 e2 b3 50 84 d4 dc 01 06 0a 00 00 00 50 e2 b3 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:46.960Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.961Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.961Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.961Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.961Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1915f6c","0x255c009d","0x85efc8","0x5174d7c","0x5174cd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1915f6c","0x255c009d","0x85efc8","0x5174d7c","0x5174cd8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.970Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1915f6c","0x0","0x255c000d","0x1915f6c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1915f6c","0x0","0x255c000d","0x1915f6c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u4d80\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u4d80\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:46.982Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1915f6c","0x0","0x255c0055","0x1915f6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1915f6c","0x0","0x255c0055","0x1915f6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1915f6c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1915f6c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d2 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:46.987Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:46.987Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:46.988Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.988Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:46.988Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x523467c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x523467c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.000Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x523467c","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x523467c","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.007Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x523467c","0x0","0x255c000d","0x523467c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523467c","0x0","0x255c000d","0x523467c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x523467c","0x0","0x255c0055","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523467c","0x0","0x255c0055","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.019Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","address":"0x9beea5","ecx":"0x5db38eab","esp":"0x666fd48","args":["0x2209b38","0x666fd60","0x7508fcc9","0x2209b38","0x7508fcb0","0x666fdbc","0x772482ae","0x2209b38","0x5c608d67","0x0"],"stack":["0x9bf6b0","0x2209b38","0x666fd60","0x7508fcc9","0x2209b38","0x7508fcb0","0x666fdbc","0x772482ae","0x2209b38","0x5c608d67","0x0","0x0","0x2209b38","0x0","0x0","0x0","0x0","0x0"],"candidates":[],"time":"2026-04-25T07:22:47.041Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18356cc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18356cc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.258Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18356cc","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18356cc","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.264Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18356cc","0x0","0x255c000d","0x18356cc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18356cc","0x0","0x255c000d","0x18356cc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.271Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18356cc","0x0","0x255c0055","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18356cc","0x0","0x255c0055","0x18356cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18356cc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18356cc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.278Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.287Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.293Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.300Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 5a e1 50 84 d4 dc 01 06 0a 00 00 00 f0 5a e1 50 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.305Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f3604","0x1","0x1","0x1","0x168","0x51f312c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x1","0x168","0x51f312c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.315Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.315Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.315Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.315Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.316Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x168","0x51f312c","0x27e700f5","0x23eefb0","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x168","0x51f312c","0x27e700f5","0x23eefb0","0x51ed944","0x51ed8a0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:22:47.323Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x168","0x51f312c","0x0","0x27e70065","0x51f312c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x168","0x51f312c","0x0","0x27e70065","0x51f312c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.334Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x168","0x51f312c","0x0","0x27e701ad","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x168","0x51f312c","0x0","0x27e701ad","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":360,"ptr":"0x51f312c","utf16":"\u0001\u013a","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 42 09 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 43 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:22:47.341Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eea90","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18378dc","0x206","0x6","0x8f5cac","0x17eec54"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18378dc","0x206","0x6","0x8f5cac","0x17eec54","0x76fc4ef5","0x9c1b20","0x51ea4d0","0x6","0xd7b576c4","0x8f5cac","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f5cac","utf16":"\u8a80\x88\u0010","hex":"80 8a 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888a80","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.348Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.355Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.356Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.356Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.356Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.356Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eea20","args":["0x1","0x1","0x1","0x2e","0x18378dc","0x24a705d5","0x17eea90","0x51ea4cc","0x51ea428","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18378dc","0x24a705d5","0x17eea90","0x51ea4cc","0x51ea428","0x7700459e","0x17eea28","0x17eeadc","0x17eec44","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.362Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee9d8","args":["0x1","0x1200","0x2e","0x18378dc","0x0","0x24a70545","0x18378dc","0x9effe8","0x1","0x17eea8c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18378dc","0x0","0x24a70545","0x18378dc","0x9effe8","0x1","0x17eea8c","0x17eea20","0x1","0x1","0x17eea80","0x9cf3a6","0xffffffff","0x17eea8c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"54"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eea8c","utf16":"\ueab8ž\u0a0f\u0538\u47ac\u021f\u0001","hex":"b8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeab8","utf16":"\uec54ž\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"54"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea80","utf16":"\uec44ž\uf8b7\x9c\u0002","hex":"44"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eec44","utf16":"\uec8cž\uee30\u76ff\u89f0\ua1cd\u0002","hex":"8c"}],"time":"2026-04-25T07:22:47.368Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee974","args":["0x1","0x2e","0x18378dc","0x0","0x24a7068d","0x18378dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18378dc","0x0","0x24a7068d","0x18378dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18378dc","0x9effe8","0x17eea1c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18378dc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d4 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.373Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.373Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.373Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.373Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.373Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x182019c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182019c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.380Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.389Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d5 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.395Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.395Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.395Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.396Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.396Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffb","0x2c2","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffb","0x2c2","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffb","0x2c2","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x2c2","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"}],"time":"2026-04-25T07:22:47.428Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2c2","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2c2","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.443Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2c2","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2c2","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x18b25fc","utf16":"\u0001\u0294","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x2940001","utf16":"\u6600\u6900\u6c00\u6500\u2000\u7300\u7900\u7300\u7400\u6500\u6d00\u2000\u7300\u7500\u6300\u6300\u6500\u7300\u7300\u6600\u7500\u6c00\u6c00\u7900\u2000\u7700\u7200\u6f00\u7400\u6500\u2000\u6100\u2000\u7200\u6500\u6400\u7500\u6e00\u6400\u6100\u6e00\u7400\u2000\u6300\u6f00\u7000\u7900\u2000\u6f00\u6600\u2000\u7400\u6800\u6500\u2000\u6900\u6e00\u6600\u6f00\u7200\u6d00\u6100\u7400\u6900\u6f00\u6e00\u2e00\u0d00\u0a00\u5400\u6800\u6900\u7300\u2000\u7700\u6100\u7300\u2000\u6400\u6f00\u6e00\u6500\u2000\u6200\u6500\u6300\u6100\u7500\u7300\u6500\u2000\u7400\u6800\u6500\u2000\u6600","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"}],"time":"2026-04-25T07:22:47.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x183df0c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.465Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f3604","0x1","0x1","0x2","0x55","0x18847f4","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x55","0x18847f4","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x19248f0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.478Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.478Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.478Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.478Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x183df0c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x183df0c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.484Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x183df0c","0x0","0x27e70065","0x183df0c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x183df0c","0x0","0x27e70065","0x183df0c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.491Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x183df0c","0x0","0x27e701ad","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x183df0c","0x0","0x27e701ad","0x183df0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183df0c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x183df0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 2d 00 51 84 d4 dc 01 06 0a 00 00 00 90 2d 00 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.496Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffb","0x97","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffb","0x97","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x2","0x55","0x18847f4","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x55","0x18847f4","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"}],"time":"2026-04-25T07:22:47.515Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x55","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x55","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x55","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x55","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18847f4","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x18847f4","utf16":"\u0001'","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x270001","utf16":"","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"}],"time":"2026-04-25T07:22:47.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.536Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.536Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.536Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffb","0x97","0x1914e64","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x97","0x1914e64","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"}],"time":"2026-04-25T07:22:47.542Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x97","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x97","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.553Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x97","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x97","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x1914e64","utf16":"\u0001i","hex":"01 00 69 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a7 9b b8 8f 32 13 9f 4e 80 6b db 39 c9 c8 f8 b7 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x690001","utf16":"","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"}],"time":"2026-04-25T07:22:47.559Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.572Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.573Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.573Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.573Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.573Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.580Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.587Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.591Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.592Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.592Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.592Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.592Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f3604","0x1","0x1","0x1","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x1","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.602Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.608Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u3604\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u3604\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.614Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d6 20 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.619Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffb","0x5c","0x1887b0c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x5c","0x1887b0c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x19248f0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.627Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.627Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.628Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.628Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.628Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffb","0x5c","0x1887b0c","0x27e700f5","0x23eefb0","0x19248ec","0x1924848","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x5c","0x1887b0c","0x27e700f5","0x23eefb0","0x19248ec","0x1924848","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"}],"time":"2026-04-25T07:22:47.634Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x5c","0x1887b0c","0x0","0x27e70065","0x1887b0c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x5c","0x1887b0c","0x0","0x27e70065","0x1887b0c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.641Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x5c","0x1887b0c","0x0","0x27e701ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x5c","0x1887b0c","0x0","0x27e701ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1887b0c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":92,"ptr":"0x1887b0c","utf16":"\u0001.","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c"}],"time":"2026-04-25T07:22:47.647Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.647Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.647Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.647Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.647Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffb","0x6c","0x1914e64","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x6c","0x1914e64","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.656Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffb","0x6c","0x1914e64","0x27e700f5","0x23eefb0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x6c","0x1914e64","0x27e700f5","0x23eefb0","0x517590c","0x5175868","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"}],"time":"2026-04-25T07:22:47.662Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x6c","0x1914e64","0x0","0x27e70065","0x1914e64","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x6c","0x1914e64","0x0","0x27e70065","0x1914e64","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.670Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x6c","0x1914e64","0x0","0x27e701ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x6c","0x1914e64","0x0","0x27e701ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x1914e64","utf16":"\u0001>","hex":"01 00 3e 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 03 00 00 00 03 00 00 00 c0 00 20 53 26 90 82 d4 dc 01 02 15 cd 5b 07"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x3e0001","utf16":"\u7463\u2078","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"}],"time":"2026-04-25T07:22:47.676Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.676Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.676Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.676Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.677Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.759Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18223ac","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18223ac","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u9940\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.774Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18223ac","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f3604","0x1","0x1","0x2","0x2e","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x2e","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.788Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.788Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.788Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.788Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.794Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u3604\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u3604\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.800Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b8 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.805Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.806Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.806Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.806Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.806Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x182df04","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x182df04","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51ea4d0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.813Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x182df04","0x27e700f5","0x23eefb0","0x51ea4cc","0x51ea428","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x182df04","0x27e700f5","0x23eefb0","0x51ea4cc","0x51ea428","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.819Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x182df04","0x0","0x27e70065","0x182df04","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182df04","0x0","0x27e70065","0x182df04","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua4d0\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.826Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x182df04","0x0","0x27e701ad","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182df04","0x0","0x27e701ad","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182df04","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182df04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 a6 2d 51 84 d4 dc 01 06 0a 00 00 00 30 a6 2d 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.832Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.832Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.832Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.832Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.832Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18389e4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18389e4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e7c58","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.880Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18389e4","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18389e4","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.886Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18389e4","0x0","0x27e70065","0x18389e4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18389e4","0x0","0x27e70065","0x18389e4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.893Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18389e4","0x0","0x27e701ad","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18389e4","0x0","0x27e701ad","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18389e4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18389e4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.898Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.906Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.906Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x1879e68","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.915Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:47.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.935Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x18b03ec","0x23f206f5","0x62be9b0","0x1879e64","0x1879dc0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x23f206f5","0x62be9b0","0x1879e64","0x1879dc0","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.941Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x18b03ec","0x0","0x23f20665","0x18b03ec","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b03ec","0x0","0x23f20665","0x18b03ec","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9e68\u0187\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9e68\u0187\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:47.948Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x18b03ec","0x0","0x23f207ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b03ec","0x0","0x23f207ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 9f 4c 51 84 d4 dc 01 06 0a 00 00 00 e0 9f 4c 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:47.953Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:47.953Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:47.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:47.954Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x183ce04","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x183ce04","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x5174d80","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:47.991Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x2","0x2e","0x183ce04","0x23f206f5","0x62be9b0","0x5174d7c","0x5174cd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x183ce04","0x23f206f5","0x62be9b0","0x5174d7c","0x5174cd8","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:47.997Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x183ce04","0x0","0x23f20665","0x183ce04","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x183ce04","0x0","0x23f20665","0x183ce04","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u4d80\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u4d80\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.008Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x183ce04","0x0","0x23f207ad","0x183ce04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x183ce04","0x0","0x23f207ad","0x183ce04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183ce04","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x183ce04","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 b9 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.013Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.014Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.014Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.014Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f3604","0x1","0x1","0x2","0x56","0x18b3704","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x56","0x18b3704","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x1879e68","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.034Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x2","0x56","0x18b3704","0x23f206f5","0x62be9b0","0x1879e64","0x1879dc0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x56","0x18b3704","0x23f206f5","0x62be9b0","0x1879e64","0x1879dc0","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"}],"time":"2026-04-25T07:22:48.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x56","0x18b3704","0x0","0x23f20665","0x18b3704","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x56","0x18b3704","0x0","0x23f20665","0x18b3704","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9e68\u0187\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9e68\u0187\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.047Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x56","0x18b3704","0x0","0x23f207ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x56","0x18b3704","0x0","0x23f207ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b3704","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x18b3704","utf16":"\u0001(","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 16 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 41 7f eb 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x280001","utf16":"\u6e00\u2d00\u6300\u6f00\u7200\u6500\u2d00\u6c00\u6900\u6300\u6500\u6e00\u7300\u6500\u6d00\u6100\u6e00\u6100\u6700\u6500\u7200\u2d00\u6c00\u3100\u2d00\u3100\u2d00\u3000","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"}],"time":"2026-04-25T07:22:48.053Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.053Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.053Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.053Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.053Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffb","0x33","0x18b03ec","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x33","0x18b03ec","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x1879e68","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.086Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffb","0x33","0x18b03ec","0x23f206f5","0x62be9b0","0x1879e64","0x1879dc0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x33","0x18b03ec","0x23f206f5","0x62be9b0","0x1879e64","0x1879dc0","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"}],"time":"2026-04-25T07:22:48.092Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x33","0x18b03ec","0x0","0x23f20665","0x18b03ec","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x33","0x18b03ec","0x0","0x23f20665","0x18b03ec","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9e68\u0187\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9e68\u0187\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x33","0x18b03ec","0x0","0x23f207ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x33","0x18b03ec","0x0","0x23f207ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":51,"ptr":"0x18b03ec","utf16":"\u0001\u0005","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"}],"time":"2026-04-25T07:22:48.102Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.102Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.103Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.103Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.103Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffb","0x58","0x1887b0c","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x58","0x1887b0c","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x19248f0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.112Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffb","0x58","0x1887b0c","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x58","0x1887b0c","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"}],"time":"2026-04-25T07:22:48.118Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x58","0x1887b0c","0x0","0x23f20665","0x1887b0c","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x58","0x1887b0c","0x0","0x23f20665","0x1887b0c","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.125Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x58","0x1887b0c","0x0","0x23f207ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x58","0x1887b0c","0x0","0x23f207ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1887b0c","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x1887b0c","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 88 8a b4 ee d6 10 48 a1 ac 1d 2b f6 1d 9c f0 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"}],"time":"2026-04-25T07:22:48.130Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.131Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.131Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.131Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.131Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x58","0x1914e64","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x58","0x1914e64","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.140Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x58","0x1914e64","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x58","0x1914e64","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"}],"time":"2026-04-25T07:22:48.146Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x58","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x58","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.152Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x58","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x58","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x1914e64","utf16":"\u0001*","hex":"01 00 2a 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"}],"time":"2026-04-25T07:22:48.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.158Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.158Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f3604","0x1","0x1","0x2","0x2e","0x1914e64","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x2e","0x1914e64","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.167Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x2","0x2e","0x1914e64","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1914e64","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.173Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.180Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ba 90 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.186Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.186Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.186Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.186Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.186Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18b6a1c","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18b6a1c","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.217Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x2","0x2e","0x18b6a1c","0x23f206f5","0x62be9b0","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b6a1c","0x23f206f5","0x62be9b0","0x51741ec","0x5174148","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.222Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x18b6a1c","0x0","0x23f20665","0x18b6a1c","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b6a1c","0x0","0x23f20665","0x18b6a1c","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.228Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x18b6a1c","0x0","0x23f207ad","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b6a1c","0x0","0x23f207ad","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bb 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.233Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.234Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.234Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.234Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.234Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b3704","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b3704","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.264Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x18b3704","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b3704","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.270Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x18b3704","0x0","0x23f20665","0x18b3704","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b3704","0x0","0x23f20665","0x18b3704","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x18b3704","0x0","0x23f207ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b3704","0x0","0x23f207ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b3704","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.283Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18847f4","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18847f4","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x19248f0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.293Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffe","0x62","0x18847f4","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18847f4","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.300Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.307Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18847f4","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18847f4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 f1 79 51 84 d4 dc 01 06 0a 00 00 00 70 f1 79 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.314Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x183bcfc","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x183bcfc","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x18e9d30","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.323Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x1","0x2e","0x183bcfc","0x23f206f5","0x62be9b0","0x18e9d2c","0x18e9c88","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x183bcfc","0x23f206f5","0x62be9b0","0x18e9d2c","0x18e9c88","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.330Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x183bcfc","0x0","0x23f20665","0x183bcfc","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x183bcfc","0x0","0x23f20665","0x183bcfc","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9d30\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9d30\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.336Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x183bcfc","0x0","0x23f207ad","0x183bcfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x183bcfc","0x0","0x23f207ad","0x183bcfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x183bcfc","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x183bcfc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 d9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.341Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.341Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.342Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.342Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.342Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1914e64","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1914e64","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.409Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x1914e64","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1914e64","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.415Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 c4 98 51 84 d4 dc 01 06 0a 00 00 00 10 c4 98 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.428Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.428Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.429Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.429Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.429Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b7b24","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b7b24","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51741f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.437Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18b7b24","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b7b24","0x255c009d","0x85efc8","0x51741ec","0x5174148","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.443Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18b7b24","0x0","0x255c000d","0x18b7b24","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b7b24","0x0","0x255c000d","0x18b7b24","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u41f0\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:48.450Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18b7b24","0x0","0x255c0055","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b7b24","0x0","0x255c0055","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b7b24","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b7b24","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 da 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.455Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.456Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x517e3fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x517e3fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x18e9d30","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.539Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x517e3fc","0x255c009d","0x85efc8","0x18e9d2c","0x18e9c88","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x517e3fc","0x255c009d","0x85efc8","0x18e9d2c","0x18e9c88","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.546Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x517e3fc","0x0","0x255c000d","0x517e3fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517e3fc","0x0","0x255c000d","0x517e3fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9d30\u018e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9d30\u018e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:48.551Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x517e3fc","0x0","0x255c0055","0x517e3fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517e3fc","0x0","0x255c0055","0x517e3fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517e3fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517e3fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bc 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.556Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.556Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.556Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.556Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.557Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d6a2c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d6a2c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.755Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18d6a2c","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18d6a2c","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.763Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18d6a2c","0x0","0x255c000d","0x18d6a2c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d6a2c","0x0","0x255c000d","0x18d6a2c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:48.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18d6a2c","0x0","0x255c0055","0x18d6a2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d6a2c","0x0","0x255c0055","0x18d6a2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d6a2c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d6a2c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.778Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.778Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.779Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x517e3fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x517e3fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x18e9d30","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.789Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x517e3fc","0x255c009d","0x85efc8","0x18e9d2c","0x18e9c88","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x517e3fc","0x255c009d","0x85efc8","0x18e9d2c","0x18e9c88","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.799Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x517e3fc","0x0","0x255c000d","0x517e3fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x517e3fc","0x0","0x255c000d","0x517e3fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9d30\u018e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u9d30\u018e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:48.806Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x517e3fc","0x0","0x255c0055","0x517e3fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x517e3fc","0x0","0x255c0055","0x517e3fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517e3fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517e3fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 15 c6 51 84 d4 dc 01 06 0a 00 00 00 a0 15 c6 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.811Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51747b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.865Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.871Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:48.876Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dc 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.881Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x18e91a0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.890Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.891Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.891Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.892Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.892Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x1","0x2e","0x517d2f4","0x23f206f5","0x62be9b0","0x18e919c","0x18e90f8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x517d2f4","0x23f206f5","0x62be9b0","0x18e919c","0x18e90f8","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.897Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x517d2f4","0x0","0x23f20665","0x517d2f4","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517d2f4","0x0","0x23f20665","0x517d2f4","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u91a0\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u91a0\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:48.906Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x517d2f4","0x0","0x23f207ad","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517d2f4","0x0","0x23f207ad","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 db 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.913Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51747b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.921Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.921Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.921Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.921Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.921Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18345c4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18345c4","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.928Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:48.935Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 0f e5 51 84 d4 dc 01 06 0a 00 00 00 50 0f e5 51 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:48.939Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.940Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51747b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:48.976Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1917074","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1917074","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.980Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:48.986Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bd 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:48.990Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:48.991Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:48.991Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.991Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:48.991Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51747b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.256Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x1917074","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1917074","0x255c009d","0x85efc8","0x51747b4","0x5174710","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.262Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u47b8\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.270Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1917074","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.275Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.275Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d5924","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d5924","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.284Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18d5924","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18d5924","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.290Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18d5924","0x0","0x255c000d","0x18d5924","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d5924","0x0","0x255c000d","0x18d5924","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.297Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18d5924","0x0","0x255c0055","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d5924","0x0","0x255c0055","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d5924","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d5924","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 d6 12 52 84 d4 dc 01 06 0a 00 00 00 10 d6 12 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.303Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x518060c","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x518060c","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x18e9768","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.311Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.311Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.311Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.311Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.312Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x1","0x2e","0x518060c","0x23f206f5","0x62be9b0","0x18e9764","0x18e96c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x518060c","0x23f206f5","0x62be9b0","0x18e9764","0x18e96c0","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.318Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x518060c","0x0","0x23f20665","0x518060c","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x518060c","0x0","0x23f20665","0x518060c","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9768\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u9768\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:49.326Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x518060c","0x0","0x23f207ad","0x518060c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x518060c","0x0","0x23f207ad","0x518060c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x518060c","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x518060c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 dd 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.332Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.333Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.333Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.333Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.333Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b3704","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b3704","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x18e91a0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.411Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x18b3704","0x23f206f5","0x62be9b0","0x18e919c","0x18e90f8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b3704","0x23f206f5","0x62be9b0","0x18e919c","0x18e90f8","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.419Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x18b3704","0x0","0x23f20665","0x18b3704","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b3704","0x0","0x23f20665","0x18b3704","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u91a0\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u91a0\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:49.426Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x18b3704","0x0","0x23f207ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b3704","0x0","0x23f207ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b3704","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b3704","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 81 31 52 84 d4 dc 01 06 0a 00 00 00 a0 81 31 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.432Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.440Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18345c4","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18345c4","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.454Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 de 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.459Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.460Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.460Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.460Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.460Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18d3714","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18d3714","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bc7d8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.524Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18d3714","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18d3714","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.531Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d3714","0x0","0x255c000d","0x18d3714","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d3714","0x0","0x255c000d","0x18d3714","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.538Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d3714","0x0","0x255c0055","0x18d3714","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d3714","0x0","0x255c0055","0x18d3714","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d3714","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d3714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 be 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.544Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bc7d8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.759Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18345c4","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18345c4","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.768Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.778Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.787Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x523467c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x523467c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.796Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x523467c","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x523467c","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x523467c","0x0","0x255c000d","0x523467c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x255c000d","0x523467c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.809Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x523467c","0x0","0x255c0055","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x255c0055","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 d3 5e 52 84 d4 dc 01 06 0a 00 00 00 30 d3 5e 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.815Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.815Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.815Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.815Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.815Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bc7d8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.851Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.857Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.863Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.867Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1914e64","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1914e64","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x18e91a0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.875Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.876Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.876Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.876Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.876Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x1","0x2e","0x1914e64","0x23f206f5","0x62be9b0","0x18e919c","0x18e90f8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1914e64","0x23f206f5","0x62be9b0","0x18e919c","0x18e90f8","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.882Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1914e64","0x0","0x23f20665","0x1914e64","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u91a0\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u91a0\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:49.890Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1914e64","0x0","0x23f207ad","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 df 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.897Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.897Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.897Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.897Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.897Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x18b03ec","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x23f206f5","0x62be9b0","0x517590c","0x5175868","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x18b03ec","0x0","0x23f20665","0x18b03ec","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b03ec","0x0","0x23f20665","0x18b03ec","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u5910\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:49.923Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x18b03ec","0x0","0x23f207ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b03ec","0x0","0x23f207ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 cc 7d 52 84 d4 dc 01 06 0a 00 00 00 e0 cc 7d 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:49.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f3604","0x1","0x1","0x1","0x68","0x18847f4","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x1","0x68","0x18847f4","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x19248f0","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.956Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x1","0x68","0x18847f4","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x68","0x18847f4","0x23f206f5","0x62be9b0","0x19248ec","0x1924848","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:22:49.962Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x68","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x68","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u3604\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\u48f0ƒ\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:49.969Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x68","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x68","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18847f4","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":104,"ptr":"0x18847f4","utf16":"\u0001:","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:22:49.976Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18d03fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18d03fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bcda0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:49.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:49.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:49.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:49.985Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18d03fc","0x255c009d","0x85efc8","0x51bcd9c","0x51bccf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18d03fc","0x255c009d","0x85efc8","0x51bcd9c","0x51bccf8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:49.991Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d03fc","0x0","0x255c000d","0x18d03fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d03fc","0x0","0x255c000d","0x18d03fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ucda0\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ucda0\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:49.998Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d03fc","0x0","0x255c0055","0x18d03fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d03fc","0x0","0x255c0055","0x18d03fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d03fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 bf 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.004Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.004Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.004Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.005Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.005Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffb","0x2e","0x18345c4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffb","0x2e","0x18345c4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bc7d8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.015Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffb","0x2e","0x18345c4","0x27e700f5","0x23eefb0","0x51bc7d4","0x51bc730","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x2e","0x18345c4","0x27e700f5","0x23eefb0","0x51bc7d4","0x51bc730","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.022Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18345c4","0x0","0x27e70065","0x18345c4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18345c4","0x0","0x27e70065","0x18345c4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:50.030Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18345c4","0x0","0x27e701ad","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18345c4","0x0","0x27e701ad","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.036Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f3604","0x1","0x1","0x2","0x53","0x5239ba4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x53","0x5239ba4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bc210","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.045Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.045Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.045Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.045Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x53","0x5239ba4","0x255c009d","0x85efc8","0x51bc20c","0x51bc168","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x53","0x5239ba4","0x255c009d","0x85efc8","0x51bc20c","0x51bc168","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"}],"time":"2026-04-25T07:22:50.051Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x53","0x5239ba4","0x0","0x255c000d","0x5239ba4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x53","0x5239ba4","0x0","0x255c000d","0x5239ba4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u3604\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc210\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u3604\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc210\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.058Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x53","0x5239ba4","0x0","0x255c0055","0x5239ba4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x53","0x5239ba4","0x0","0x255c0055","0x5239ba4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5239ba4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x5239ba4","utf16":"\u0001%","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b4 d8 98 04 a6 7d 58 42 ba b6 f9 c4 8d f0 ea 9c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x250001","utf16":"\u0002\u4e00\ubc61\u1f00","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"}],"time":"2026-04-25T07:22:50.063Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.064Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.065Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.065Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.065Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85edf4","args":["0x1","0x1","0x1","0x51","0x94e7b0","0x255c01fd","0x85eeb8","0x85eee0","0x2209b38","0x0"],"stack":["0x9be1db","0x1","0x1","0x1","0x51","0x94e7b0","0x255c01fd","0x85eeb8","0x85eee0","0x2209b38","0x0","0x3","0x2","0x70ec0005","0x21f3c50","0x9d2b7c","0x23","0x21f3c50"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94e7b0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"args.direct","sizeIndex":11,"ptrIndex":12,"size":2,"ptr":"0x70ec0005","utf16":"","hex":"00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":81,"ptr":"0x94e7b0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":12,"ptrIndex":13,"size":2,"ptr":"0x70ec0005","utf16":"","hex":"00 00"},{"source":"stack.direct","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x21f3c50","utf16":"\u0116\u0100","hex":"16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.byref","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x1000116","utf16":"","hex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"}],"time":"2026-04-25T07:22:50.084Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85edac","args":["0x1","0x1200","0x51","0x94e7b0","0x0","0x255c02a9","0x94e7b0","0x70ec0110","0x51","0x85eea4"],"stack":["0x9bdd43","0x1","0x1200","0x51","0x94e7b0","0x0","0x255c02a9","0x94e7b0","0x70ec0110","0x51","0x85eea4","0x85edf4","0x51","0x1","0x85ee98","0x9cf3a6","0xffffffff","0x85eea4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94e7b0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x85eea4","utf16":"\uef00\x85\ue596\x9b\u0001","hex":"00 ef 85 00 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 05 00 00 00 e8 ff 9e 00 08 c0 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x85ef00","utf16":"\uef70\x85\u037f\x9c\u3078\u021f\u0001","hex":"70 ef 85 00 7f 03 9c 00 78 30 1f 02 01 00 00 00 29 00 5c 25 a8 01 9f 00 bc e4 1b 05 00 00 00 00 08 c0 26 01 5e 80 fe 70 01 00 00 00 c0 ef 85 00 1c 38 fe 70 b8 6f 26 01 00 00 00 00 43 ef 85 00 b0 6b 26 00 58 ef 85 00 4d 5a fe 70 b8 6f 26 01 00"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ee98","utf16":"\uef64\x85\uf3c9\x9c","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef64","utf16":"\uefc8\x85\uf613\x9c\uffff\uffff\uefd4\x85\u16a0\x9c\u7ffb","hex":"c8"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94e7b0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x85eea4","utf16":"\uef00\x85\ue596\x9b\u0001","hex":"00 ef 85 00 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 05 00 00 00 e8 ff 9e 00 08 c0 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x85ef00","utf16":"\uef70\x85\u037f\x9c\u3078\u021f\u0001","hex":"70 ef 85 00 7f 03 9c 00 78 30 1f 02 01 00 00 00 29 00 5c 25 a8 01 9f 00 bc e4 1b 05 00 00 00 00 08 c0 26 01 5e 80 fe 70 01 00 00 00 c0 ef 85 00 1c 38 fe 70 b8 6f 26 01 00 00 00 00 43 ef 85 00 b0 6b 26 00 58 ef 85 00 4d 5a fe 70 b8 6f 26 01 00"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ee98","utf16":"\uef64\x85\uf3c9\x9c","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef64","utf16":"\uefc8\x85\uf613\x9c\uffff\uffff\uefd4\x85\u16a0\x9c\u7ffb","hex":"c8"}],"time":"2026-04-25T07:22:50.092Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ed48","args":["0x1","0x51","0x94e7b0","0x0","0x255c02f1","0x94e7b0","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x51","0x94e7b0","0x0","0x255c02f1","0x94e7b0","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x94e7b0","0x9effe8","0x85edf0"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":81,"ptr":"0x94e7b0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94e7b0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"}],"time":"2026-04-25T07:22:50.098Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.099Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.099Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.099Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85edf4","args":["0x1","0x1","0x2","0x51","0x94ebd0","0x255c01fd","0x85eeb8","0x85eee0","0x2209b38","0x77260000"],"stack":["0x9be1db","0x1","0x1","0x2","0x51","0x94ebd0","0x255c01fd","0x85eeb8","0x85eee0","0x2209b38","0x77260000","0x3","0x2","0x21f0005","0x21f3c50","0x9d2b7c","0x23","0x21f3c50"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94ebd0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"args.direct","sizeIndex":11,"ptrIndex":12,"size":2,"ptr":"0x21f0005","utf16":"\u01f3\uee01\ueeff\u02ff","hex":"f3 01"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":81,"ptr":"0x94ebd0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.direct","sizeIndex":12,"ptrIndex":13,"size":2,"ptr":"0x21f0005","utf16":"\u01f3\uee01\ueeff\u02ff","hex":"f3 01"},{"source":"stack.direct","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x21f3c50","utf16":"\u0116\u0100","hex":"16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.byref","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x1000116","utf16":"","hex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"}],"time":"2026-04-25T07:22:50.108Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85edac","args":["0x1","0x1200","0x51","0x94ebd0","0x0","0x255c02a9","0x94ebd0","0x70ec0110","0x51","0x85eea4"],"stack":["0x9bdd43","0x1","0x1200","0x51","0x94ebd0","0x0","0x255c02a9","0x94ebd0","0x70ec0110","0x51","0x85eea4","0x85edf4","0x51","0x1","0x85ee98","0x9cf3a6","0xffffffff","0x85eea4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94ebd0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x85eea4","utf16":"\uef00\x85\ue596\x9b\u0001","hex":"00 ef 85 00 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 05 00 00 00 e8 ff 9e 00 08 c0 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x85ef00","utf16":"\uef70\x85\u037f\x9c\u3280\u021f\u0001","hex":"70 ef 85 00 7f 03 9c 00 80 32 1f 02 01 00 00 00 29 00 5c 25 a8 01 9f 00 bc e4 1b 05 00 00 00 00 08 c0 26 01 5e 80 fe 70 01 00 00 00 c0 ef 85 00 1c 38 fe 70 b8 6f 26 01 00 00 00 00 43 ef 85 00 b0 6b 26 00 58 ef 85 00 4d 5a fe 70 b8 6f 26 01 00"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ee98","utf16":"\uef64\x85\uf3c9\x9c","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef64","utf16":"\uefc8\x85\uf613\x9c\uffff\uffff\uefd4\x85\u16a0\x9c\u7ffb","hex":"c8"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94ebd0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x85eea4","utf16":"\uef00\x85\ue596\x9b\u0001","hex":"00 ef 85 00 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 05 00 00 00 e8 ff 9e 00 08 c0 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x85ef00","utf16":"\uef70\x85\u037f\x9c\u3280\u021f\u0001","hex":"70 ef 85 00 7f 03 9c 00 80 32 1f 02 01 00 00 00 29 00 5c 25 a8 01 9f 00 bc e4 1b 05 00 00 00 00 08 c0 26 01 5e 80 fe 70 01 00 00 00 c0 ef 85 00 1c 38 fe 70 b8 6f 26 01 00 00 00 00 43 ef 85 00 b0 6b 26 00 58 ef 85 00 4d 5a fe 70 b8 6f 26 01 00"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ee98","utf16":"\uef64\x85\uf3c9\x9c","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef64","utf16":"\uefc8\x85\uf613\x9c\uffff\uffff\uefd4\x85\u16a0\x9c\u7ffb","hex":"c8"}],"time":"2026-04-25T07:22:50.117Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ed48","args":["0x1","0x51","0x94ebd0","0x0","0x255c02f1","0x94ebd0","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x51","0x94ebd0","0x0","0x255c02f1","0x94ebd0","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x94ebd0","0x9effe8","0x85edf0"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":81,"ptr":"0x94ebd0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94ebd0","utf16":"\u0001#","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"}],"time":"2026-04-25T07:22:50.124Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffb","0x2e","0x18d1504","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x2e","0x18d1504","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bc210","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.133Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.133Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.133Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.134Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","retval":"0x0","time":"2026-04-25T07:22:50.134Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffb","0x2e","0x18d1504","0x27e700f5","0x23eefb0","0x51bc20c","0x51bc168","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x2e","0x18d1504","0x27e700f5","0x23eefb0","0x51bc20c","0x51bc168","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.140Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x1","time":"2026-04-25T07:22:50.141Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x1","time":"2026-04-25T07:22:50.141Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d9d44","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d9d44","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51be4c0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.254Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18d9d44","0x255c009d","0x85efc8","0x51be4bc","0x51be418","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18d9d44","0x255c009d","0x85efc8","0x51be4bc","0x51be418","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.261Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18d9d44","0x0","0x255c000d","0x18d9d44","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d9d44","0x0","0x255c000d","0x18d9d44","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ue4c0\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ue4c0\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.268Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18d9d44","0x0","0x255c0055","0x18d9d44","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d9d44","0x0","0x255c0055","0x18d9d44","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d9d44","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d9d44","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.274Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x255c000d","0x18b25fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.296Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x255c0055","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 1e ab 52 84 d4 dc 01 06 0a 00 00 00 70 1e ab 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x5233574","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x5233574","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51be4c0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.309Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.309Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.309Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x5233574","0x27e700f5","0x23eefb0","0x51be4bc","0x51be418","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5233574","0x27e700f5","0x23eefb0","0x51be4bc","0x51be418","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.315Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x5233574","0x0","0x27e70065","0x5233574","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5233574","0x0","0x27e70065","0x5233574","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ue4c0\u051b\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ue4c0\u051b\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:50.321Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x5233574","0x0","0x27e701ad","0x5233574","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5233574","0x0","0x27e701ad","0x5233574","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5233574","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5233574","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.326Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.327Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x191817c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x191817c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.402Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x191817c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191817c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.409Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x191817c","0x0","0x27e70065","0x191817c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191817c","0x0","0x27e70065","0x191817c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:50.416Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x191817c","0x0","0x27e701ad","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191817c","0x0","0x27e701ad","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.421Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bea88","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.432Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x255c009d","0x85efc8","0x51bea84","0x51be9e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x255c009d","0x85efc8","0x51bea84","0x51be9e0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.438Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18b6a1c","0x0","0x255c000d","0x18b6a1c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b6a1c","0x0","0x255c000d","0x18b6a1c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uea88\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uea88\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.444Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18b6a1c","0x0","0x255c0055","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b6a1c","0x0","0x255c0055","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b6a1c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 18 ca 52 84 d4 dc 01 06 0a 00 00 00 20 18 ca 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.449Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.450Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.450Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.451Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.451Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18d03fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18d03fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18d03fc","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18d03fc","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.511Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d03fc","0x0","0x255c000d","0x18d03fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d03fc","0x0","0x255c000d","0x18d03fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ub680\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ub680\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d03fc","0x0","0x255c0055","0x18d03fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d03fc","0x0","0x255c0055","0x18d03fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d03fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d03fc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c0 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.523Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.523Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.523Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.523Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.523Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.754Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x1913d5c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.759Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.771Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.771Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.771Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18389e4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18389e4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bb0b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.784Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18389e4","0x255c009d","0x85efc8","0x51bb0b4","0x51bb010","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18389e4","0x255c009d","0x85efc8","0x51bb0b4","0x51bb010","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.793Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18389e4","0x0","0x255c000d","0x18389e4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18389e4","0x0","0x255c000d","0x18389e4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ub0b8\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ub0b8\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18389e4","0x0","0x255c0055","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18389e4","0x0","0x255c0055","0x18389e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18389e4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18389e4","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 42 f7 52 84 d4 dc 01 06 0a 00 00 00 a0 42 f7 52 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.807Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.808Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d5924","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d5924","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.835Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18d5924","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d5924","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.843Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d5924","0x0","0x255c000d","0x18d5924","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d5924","0x0","0x255c000d","0x18d5924","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ub680\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ub680\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:50.853Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d5924","0x0","0x255c0055","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d5924","0x0","0x255c0055","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d5924","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d5924","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e4 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.860Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.860Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.860Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.860Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.860Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18d8c3c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18d8c3c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bd368","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.868Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18d8c3c","0x27e700f5","0x23eefb0","0x51bd364","0x51bd2c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d8c3c","0x27e700f5","0x23eefb0","0x51bd364","0x51bd2c0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.874Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18d8c3c","0x0","0x27e70065","0x18d8c3c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d8c3c","0x0","0x27e70065","0x18d8c3c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ud368\u051b\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ud368\u051b\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:50.880Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18d8c3c","0x0","0x27e701ad","0x18d8c3c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d8c3c","0x0","0x27e701ad","0x18d8c3c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d8c3c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d8c3c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e3 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.885Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.885Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.885Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.885Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.885Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x523467c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523467c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.918Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x523467c","0x0","0x27e70065","0x523467c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x27e70065","0x523467c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:50.925Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x523467c","0x0","0x27e701ad","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x27e701ad","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 3c 16 53 84 d4 dc 01 06 0a 00 00 00 50 3c 16 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:50.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.931Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.931Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e7690","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:50.961Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x18278d4","0x27e700f5","0x23eefb0","0x51e768c","0x51e75e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18278d4","0x27e700f5","0x23eefb0","0x51e768c","0x51e75e8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.969Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7690\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7690\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:50.978Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c1 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:50.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:50.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:50.986Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.986Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:50.986Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.250Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x1913d5c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x27e700f5","0x23eefb0","0x51e70c4","0x51e7020","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.256Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x1913d5c","0x0","0x27e70065","0x1913d5c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1913d5c","0x0","0x27e70065","0x1913d5c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u70c8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.263Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x1913d5c","0x0","0x27e701ad","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1913d5c","0x0","0x27e701ad","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1913d5c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.268Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.269Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.269Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.269Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d3714","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d3714","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.276Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18d3714","0x27e700f5","0x23eefb0","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18d3714","0x27e700f5","0x23eefb0","0x187bb4c","0x187baa8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18d3714","0x0","0x27e70065","0x18d3714","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d3714","0x0","0x27e70065","0x18d3714","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18d3714","0x0","0x27e701ad","0x18d3714","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d3714","0x0","0x27e701ad","0x18d3714","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d3714","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d3714","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 b4 43 53 84 d4 dc 01 06 0a 00 00 00 f0 b4 43 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.294Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.295Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.295Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.295Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x523467c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x523467c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.383Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x523467c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523467c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.388Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x523467c","0x0","0x27e70065","0x523467c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523467c","0x0","0x27e70065","0x523467c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.395Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x523467c","0x0","0x27e701ad","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523467c","0x0","0x27e701ad","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e6 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.400Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.407Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.407Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.408Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.408Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.408Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18334bc","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18334bc","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x8dac20","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.416Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.422Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:51.428Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d1504","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e5 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.433Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x18334bc","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18334bc","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.440Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x18334bc","0x0","0x23f20665","0x18334bc","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18334bc","0x0","0x23f20665","0x18334bc","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x18334bc","0x0","0x23f207ad","0x18334bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18334bc","0x0","0x23f207ad","0x18334bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18334bc","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18334bc","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 87 62 53 84 d4 dc 01 06 0a 00 00 00 90 87 62 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.455Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18312ac","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18312ac","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x2","0x2e","0x18312ac","0x23f206f5","0x62be9b0","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18312ac","0x23f206f5","0x62be9b0","0x18ea2f4","0x18ea250","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.498Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x18312ac","0x0","0x23f20665","0x18312ac","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18312ac","0x0","0x23f20665","0x18312ac","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.504Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x18312ac","0x0","0x23f207ad","0x18312ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18312ac","0x0","0x23f207ad","0x18312ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18312ac","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c2 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.509Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.756Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x18dbf54","0x23f206f5","0x62be9b0","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x23f206f5","0x62be9b0","0x51bd92c","0x51bd888","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.763Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x18dbf54","0x0","0x23f20665","0x18dbf54","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18dbf54","0x0","0x23f20665","0x18dbf54","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x18dbf54","0x0","0x23f207ad","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18dbf54","0x0","0x23f207ad","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18dbf54","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1887b0c","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1887b0c","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x8dac20","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.788Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffe","0x62","0x1887b0c","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1887b0c","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x1887b0c","0x0","0x23f20665","0x1887b0c","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1887b0c","0x0","0x23f20665","0x1887b0c","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u9e84\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.804Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x1887b0c","0x0","0x23f207ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1887b0c","0x0","0x23f207ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1887b0c","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 00 90 53 84 d4 dc 01 06 0a 00 00 00 30 00 90 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.811Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18847f4","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18847f4","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x8dac20","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.818Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x1","0x2e","0x18847f4","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18847f4","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.823Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.830Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18847f4","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e7 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.835Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1887b0c","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1887b0c","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x8dac20","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x7ffd","0x62","0x1887b0c","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1887b0c","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x62","0x1887b0c","0x0","0x23f20665","0x1887b0c","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1887b0c","0x0","0x23f20665","0x1887b0c","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:51.923Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x62","0x1887b0c","0x0","0x23f207ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1887b0c","0x0","0x23f207ad","0x1887b0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1887b0c","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1887b0c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 20 af 53 84 d4 dc 01 06 0a 00 00 00 f0 20 af 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:51.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d6a2c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d6a2c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bbc48","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:51.940Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18d6a2c","0x255c009d","0x85efc8","0x51bbc44","0x51bbba0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d6a2c","0x255c009d","0x85efc8","0x51bbc44","0x51bbba0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.948Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d6a2c","0x0","0x255c000d","0x18d6a2c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d6a2c","0x0","0x255c000d","0x18d6a2c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubc48\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubc48\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:51.957Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d6a2c","0x0","0x255c0055","0x18d6a2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d6a2c","0x0","0x255c0055","0x18d6a2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d6a2c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d6a2c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e8 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:51.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:51.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:51.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.966Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:51.966Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x5181714","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x5181714","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.042Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x5181714","0x255c009d","0x85efc8","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x5181714","0x255c009d","0x85efc8","0x18ea2f4","0x18ea250","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.048Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x5181714","0x0","0x255c000d","0x5181714","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5181714","0x0","0x255c000d","0x5181714","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.053Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x5181714","0x0","0x255c0055","0x5181714","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5181714","0x0","0x255c0055","0x5181714","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5181714","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c3 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.058Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.059Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.059Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.059Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.059Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.258Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.265Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.273Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d1504","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.279Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.280Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f4234","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f4234","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bdef8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.288Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x51f4234","0x255c009d","0x85efc8","0x51bdef4","0x51bde50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51f4234","0x255c009d","0x85efc8","0x51bdef4","0x51bde50","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.294Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51f4234","0x0","0x255c000d","0x51f4234","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f4234","0x0","0x255c000d","0x51f4234","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51f4234","0x0","0x255c0055","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f4234","0x0","0x255c0055","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f4234","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f4234","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 99 dc 53 84 d4 dc 01 06 0a 00 00 00 90 99 dc 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.306Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.306Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.306Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.306Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.307Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d481c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d481c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bc7d8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.371Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18d481c","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d481c","0x255c009d","0x85efc8","0x51bc7d4","0x51bc730","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.377Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d481c","0x0","0x255c000d","0x18d481c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d481c","0x0","0x255c000d","0x18d481c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\uc7d8\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.383Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d481c","0x0","0x255c0055","0x18d481c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d481c","0x0","0x255c0055","0x18d481c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d481c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d481c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ea 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.388Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62be9b0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18847f4","0x206","0x6","0x900184","0x62beb74"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18847f4","0x206","0x6","0x900184","0x62beb74","0x76fc4ef5","0x9c1b20","0x8dac20","0x6","0xd0e071e4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","utf16":"\u87e0\x88\u0010","hex":"e0 87 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8887e0","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.396Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.397Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.397Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.397Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.397Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62be940","args":["0x1","0x1","0x1","0x2e","0x18847f4","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18847f4","0x23f206f5","0x62be9b0","0x8dac1c","0x8dab78","0x7700459e","0x62be948","0x62be9fc","0x62beb64","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.404Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62be8f8","args":["0x1","0x1200","0x2e","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18847f4","0x0","0x23f20665","0x18847f4","0x9effe8","0x1","0x62be9ac","0x62be940","0x1","0x1","0x62be9a0","0x9cf3a6","0xffffffff","0x62be9ac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9ac","utf16":"\ue9d8\u062b\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62be9d8","utf16":"\ueb74\u062b\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62be9a0","utf16":"\ueb64\u062b\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62beb64","utf16":"\uebac\u062b\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:52.411Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62be894","args":["0x1","0x2e","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18847f4","0x0","0x23f207ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18847f4","0x9effe8","0x62be93c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 e9 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.416Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.425Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.425Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.425Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.425Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.425Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.432Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.439Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18dbf54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1e fb 53 84 d4 dc 01 06 0a 00 00 00 10 1e fb 53 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.446Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.475Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.481Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.487Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d1504","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c4 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.492Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.492Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.492Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.492Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.754Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.760Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18dbf54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.771Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1886a04","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1886a04","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524a518","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.781Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1886a04","0x255c009d","0x85efc8","0x524a514","0x524a470","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1886a04","0x255c009d","0x85efc8","0x524a514","0x524a470","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1886a04","0x0","0x255c000d","0x1886a04","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1886a04","0x0","0x255c000d","0x1886a04","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.796Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1886a04","0x0","0x255c0055","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1886a04","0x0","0x255c0055","0x1886a04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1886a04","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1886a04","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 e4 28 54 84 d4 dc 01 06 0a 00 00 00 c0 bd 28 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b480c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b480c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.810Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18b480c","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b480c","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.815Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18b480c","0x0","0x27e70065","0x18b480c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b480c","0x0","0x27e70065","0x18b480c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u87e8\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:52.821Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18b480c","0x0","0x27e701ad","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b480c","0x0","0x27e701ad","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b480c","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 eb 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.827Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.827Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.827Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.827Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.827Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x191817c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191817c","0x27e700f5","0x23eefb0","0x5172504","0x5172460","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x191817c","0x0","0x27e70065","0x191817c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191817c","0x0","0x27e70065","0x191817c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\ucdc4\u0126\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u2508\u0517\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:52.923Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x191817c","0x0","0x27e701ad","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191817c","0x0","0x27e701ad","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 b7 47 54 84 d4 dc 01 06 0a 00 00 00 70 b7 47 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:52.928Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:52.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.936Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.942Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:52.948Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d1504","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ec 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:52.953Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:52.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:52.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:52.954Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x191e7ac","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x191e7ac","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x191e7ac","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x191e7ac","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191e7ac","0x0","0x255c000d","0x191e7ac","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191e7ac","0x0","0x255c000d","0x191e7ac","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3798ƒ\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3798ƒ\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.049Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191e7ac","0x0","0x255c0055","0x191e7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191e7ac","0x0","0x255c0055","0x191e7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191e7ac","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191e7ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c5 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.054Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.055Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.055Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.055Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.055Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.254Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.263Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.274Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18dbf54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.283Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.283Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18312ac","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18312ac","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.291Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18312ac","0x255c009d","0x85efc8","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18312ac","0x255c009d","0x85efc8","0x18ea2f4","0x18ea250","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.298Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18312ac","0x0","0x255c000d","0x18312ac","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18312ac","0x0","0x255c000d","0x18312ac","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.305Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18312ac","0x0","0x255c0055","0x18312ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18312ac","0x0","0x255c0055","0x18312ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18312ac","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 ba 74 54 84 d4 dc 01 06 0a 00 00 00 e0 ba 74 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.314Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.353Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.362Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.371Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d1504","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ed 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.378Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x5181714","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x5181714","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.386Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.386Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.386Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.386Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.387Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x5181714","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5181714","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.392Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x5181714","0x0","0x27e70065","0x5181714","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5181714","0x0","0x27e70065","0x5181714","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:53.400Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x5181714","0x0","0x27e701ad","0x5181714","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5181714","0x0","0x27e701ad","0x5181714","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5181714","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ee 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.405Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.413Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.413Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.413Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.420Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.427Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18dbf54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 db 93 54 84 d4 dc 01 06 0a 00 00 00 a0 db 93 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.433Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18312ac","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18312ac","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.465Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18312ac","0x255c009d","0x85efc8","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18312ac","0x255c009d","0x85efc8","0x18ea2f4","0x18ea250","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.470Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18312ac","0x0","0x255c000d","0x18312ac","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18312ac","0x0","0x255c000d","0x18312ac","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.476Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18312ac","0x0","0x255c0055","0x18312ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18312ac","0x0","0x255c0055","0x18312ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18312ac","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18312ac","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c6 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.481Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.481Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.482Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.482Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.482Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18d1504","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.749Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18d1504","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.757Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d1504","0x0","0x255c000d","0x18d1504","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d1504","0x0","0x255c0055","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d1504","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d1504","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.774Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.774Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b03ec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b03ec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bbc48","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.785Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18b03ec","0x255c009d","0x85efc8","0x51bbc44","0x51bbba0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b03ec","0x255c009d","0x85efc8","0x51bbc44","0x51bbba0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.794Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18b03ec","0x0","0x255c000d","0x18b03ec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b03ec","0x0","0x255c000d","0x18b03ec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubc48\u051b\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubc48\u051b\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.803Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18b03ec","0x0","0x255c0055","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b03ec","0x0","0x255c0055","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 06 c1 54 84 d4 dc 01 06 0a 00 00 00 20 06 c1 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.808Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18847f4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18847f4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x8dac20","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.815Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.816Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.816Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.816Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18847f4","0x27e700f5","0x23eefb0","0x8dac1c","0x8dab78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18847f4","0x27e700f5","0x23eefb0","0x8dac1c","0x8dab78","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.822Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.823Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18847f4","0x0","0x27e70065","0x18847f4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18847f4","0x0","0x27e70065","0x18847f4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\uac20\x8d\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:53.831Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18847f4","0x0","0x27e701ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18847f4","0x0","0x27e701ad","0x18847f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18847f4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18847f4","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 ef 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.836Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.836Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.836Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.836Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x5181714","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x5181714","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.894Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x5181714","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5181714","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.900Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x5181714","0x0","0x27e70065","0x5181714","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5181714","0x0","0x27e70065","0x5181714","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u2b0c\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\ua2f8\u018e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:53.906Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x5181714","0x0","0x27e701ad","0x5181714","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5181714","0x0","0x27e701ad","0x5181714","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5181714","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5181714","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f0 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:53.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191e7ac","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191e7ac","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:53.918Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.918Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.918Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.918Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.918Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191e7ac","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191e7ac","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.926Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191e7ac","0x0","0x255c000d","0x191e7ac","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191e7ac","0x0","0x255c000d","0x191e7ac","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3798ƒ\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\ucdc4\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\u3798ƒ\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:53.933Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191e7ac","0x0","0x255c0055","0x191e7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191e7ac","0x0","0x255c0055","0x191e7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191e7ac","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191e7ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 4d e0 54 84 d4 dc 01 06 0a 00 00 00 f0 4d e0 54 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:53.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:53.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:53.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:53.940Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18836ec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18836ec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524a518","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:54.008Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18836ec","0x255c009d","0x85efc8","0x524a514","0x524a470","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18836ec","0x255c009d","0x85efc8","0x524a514","0x524a470","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:54.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18836ec","0x0","0x255c000d","0x18836ec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18836ec","0x0","0x255c000d","0x18836ec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u47ac\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:54.020Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18836ec","0x0","0x255c0055","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18836ec","0x0","0x255c0055","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18836ec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 c7 90 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:54.025Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:54.026Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:54.026Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.026Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.026Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:54.257Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18dbf54","0x255c009d","0x85efc8","0x51bd92c","0x51bd888","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:54.264Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18dbf54","0x0","0x255c000d","0x18dbf54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:54.272Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18dbf54","0x0","0x255c0055","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18dbf54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18dbf54","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:54.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:54.278Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:54.278Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.278Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.278Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b7b24","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b7b24","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187bb50","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:54.286Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18b7b24","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b7b24","0x255c009d","0x85efc8","0x187bb4c","0x187baa8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:54.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18b7b24","0x0","0x255c000d","0x18b7b24","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b7b24","0x0","0x255c000d","0x18b7b24","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u9e84\u0126\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ubb50\u0187\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:54.302Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18b7b24","0x0","0x255c0055","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b7b24","0x0","0x255c0055","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b7b24","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 78 0d 55 84 d4 dc 01 06 0a 00 00 00 70 78 0d 55 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:54.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:54.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:54.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.308Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18836ec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18836ec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524a518","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","utf16":"\u8e70\x88\u0010","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:54.335Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18836ec","0x255c009d","0x85efc8","0x524a514","0x524a470","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18836ec","0x255c009d","0x85efc8","0x524a514","0x524a470","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:54.343Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18836ec","0x0","0x255c000d","0x18836ec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18836ec","0x0","0x255c000d","0x18836ec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","utf16":"\ueff0\x85\u0a0f\u0538\u2b0c\u021f\u0001","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","utf16":"\uf18c\x85\u4ef5\u76fc\u1b20\x9c\ua518\u0524\u0006","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","utf16":"\uf17c\x85\uf8b7\x9c\u0002","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","utf16":"\uf1c4\x85\uee30\u76ff\u89f0\ua1cd\u0002","hex":"c4"}],"time":"2026-04-25T07:22:54.352Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18836ec","0x0","0x255c0055","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18836ec","0x0","0x255c0055","0x18836ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18836ec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18836ec","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f2 20 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:54.359Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18245bc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18245bc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e7c58","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:54.368Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:54.370Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:54.370Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.370Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.370Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18245bc","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18245bc","0x27e700f5","0x23eefb0","0x51e7c54","0x51e7bb0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:54.382Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18245bc","0x0","0x27e70065","0x18245bc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18245bc","0x0","0x27e70065","0x18245bc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","utf16":"\uefd8\u023e\u0a0f\u0538\u47ac\u021f\u0001","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","utf16":"\uf174\u023e\u4ef5\u76fc\u1b20\x9c\u7c58\u051e\u0006","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","utf16":"\uf164\u023e\uf8b7\x9c\u0002","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","utf16":"\uf1ac\u023e\uee30\u76ff\u89f0\ua1cd\u0002","hex":"ac"}],"time":"2026-04-25T07:22:54.388Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18245bc","0x0","0x27e701ad","0x18245bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18245bc","0x0","0x27e701ad","0x18245bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18245bc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18245bc","utf16":"\u0001","hex":"01 00 00 00 00 00 00 00 00 00 f1 20 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:22:54.393Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:22:54.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:22:54.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:22:54.394Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18312ac","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18312ac","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 99 2c 55 84 d4 dc 01 06 0a 00 00 00 30 99 2c 55 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 99 2c 55 84 d4 dc 01 06 0a 00 00 00 30 99 2c 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","utf16":"\u8b28\x88\u0010","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","utf16":"\u80b8\u7551\u6db8\u7553\u80a8\u7551\u6db0\u7553","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:22:54.411Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18312ac","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18312ac","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 99 2c 55 84 d4 dc 01 06 0a 00 00 00 30 99 2c 55 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18312ac","utf16":"\u00014","hex":"01 00 34 00 00 00 00 00 00 00 c8 90 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 99 2c 55 84 d4 dc 01 06 0a 00 00 00 30 99 2c 55 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:22:54.417Z"} \ No newline at end of file diff --git a/captures/046-service-boundary-write-test-int-123456791/client-frida-events.tsv b/captures/046-service-boundary-write-test-int-123456791/client-frida-events.tsv new file mode 100644 index 0000000..bad6391 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/client-frida-events.tsv @@ -0,0 +1,77 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T07:24:33.675Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T07:24:33.676Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T07:24:33.676Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T07:24:33.678Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T07:24:33.678Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T07:24:40.934Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T07:24:40.935Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T07:24:40.936Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T07:24:40.936Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T07:24:41.050Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x8fec20 "[""0x5cc8ff0"",""0x1"",""0x1"",""0x47f26091"",""0x74794704""]" +2026-04-25T07:24:41.051Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T07:24:41.174Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8fa0648"",""0x8fe8e4"",""0xcec8a324""]" 0 1 0x2 +2026-04-25T07:24:41.174Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8fa0648"",""0x8fe8e4"",""0xcec8a324""]" 1 314 0x8fa0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.176Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x992d020"",""0x1d64cd2"",""0x8fa0214"",""0x8fa0204"",""0x641add04"",""0x64""]" 0 360 0x992d020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.212Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:41.213Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:24:41.213Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x906d5f8"",""0x8fe8e4"",""0xcec8a324""]" 0 2 0x2 +2026-04-25T07:24:41.213Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x906d5f8"",""0x8fe8e4"",""0xcec8a324""]" 1 39 0x906d5f8 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.215Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x992d020"",""0x1d64cd2"",""0x9079584"",""0x9079574"",""0x641add04"",""0x64""]" 0 85 0x992d020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.245Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:41.245Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:24:41.361Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x5c"",""0x7a27240"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x5c"",""0x7a27240"",""0x206"",""0x3"",""0x755a7ac""]" 0 92 0x7a27240 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.361Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x5c"",""0x7a27240"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x5c"",""0x7a27240"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:41.361Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x5c"",""0x7a27240"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x5c"",""0x7a27240"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:41.361Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:24:41.403Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x6c"",""0x7a1ea00"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x6c"",""0x7a1ea00"",""0x206"",""0x3"",""0x755a7ac""]" 0 108 0x7a1ea00 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.403Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x6c"",""0x7a1ea00"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x6c"",""0x7a1ea00"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:41.403Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x6c"",""0x7a1ea00"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x6c"",""0x7a1ea00"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:41.403Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:24:41.461Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x992d020"",""0x1d64c86"",""0x8f97010"",""0x0"",""0x0"",""0x64""]" 0 46 0x992d020 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.497Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2c2"",""0x7a194d8"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2c2"",""0x7a194d8"",""0x206"",""0x3"",""0x755a7ac""]" 0 706 0x7a194d8 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.497Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2c2"",""0x7a194d8"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2c2"",""0x7a194d8"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:41.497Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2c2"",""0x7a194d8"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2c2"",""0x7a194d8"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:41.498Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:24:41.594Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:41.621Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x97"",""0x7a8d1d8"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x97"",""0x7a8d1d8"",""0x206"",""0x3"",""0x755a7ac""]" 0 151 0x7a8d1d8 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.621Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x97"",""0x7a8d1d8"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x97"",""0x7a8d1d8"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:41.621Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x97"",""0x7a8d1d8"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x97"",""0x7a8d1d8"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:41.621Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:24:41.723Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x992d020"",""0x1d64c86"",""0x8f97010"",""0x0"",""0x0"",""0x64""]" 0 46 0x992d020 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.749Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:41.867Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x8febf4 "[""0x5cc8ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x75bcd17"",""0x0"",""0x1"",""0x47f26091"",""0x74794704""]" +2026-04-25T07:24:41.867Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T07:24:42.071Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x906d6d0"",""0x8fe8e4"",""0xcec8a324""]" 0 2 0x2 +2026-04-25T07:24:42.071Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x906d6d0"",""0x8fe8e4"",""0xcec8a324""]" 1 40 0x906d6d0 123456791@18 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.072Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x992d020"",""0x1d64cd2"",""0x90799dc"",""0x90799cc"",""0x641add04"",""0x64""]" 0 86 0x992d020 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.100Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:42.100Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:24:42.142Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x33"",""0xe55498"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x33"",""0xe55498"",""0x206"",""0x3"",""0x755a7ac""]" 0 51 0xe55498 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.142Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x33"",""0xe55498"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x33"",""0xe55498"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:42.142Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x33"",""0xe55498"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x33"",""0xe55498"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:42.142Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:24:42.179Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x58"",""0x7a8e2e0"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x58"",""0x7a8e2e0"",""0x206"",""0x3"",""0x755a7ac""]" 0 88 0x7a8e2e0 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.179Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x58"",""0x7a8e2e0"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x58"",""0x7a8e2e0"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:42.179Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x58"",""0x7a8e2e0"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x58"",""0x7a8e2e0"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:42.180Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:24:42.261Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x992d020"",""0x1d64c86"",""0x8f97010"",""0x0"",""0x0"",""0x64""]" 0 46 0x992d020 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.319Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:43.941Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x906d490"",""0x8feaa0"",""0xcec8ad60""]" 0 1 0x2 +2026-04-25T07:24:43.941Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x3a"",""0x906d490"",""0x8feaa0"",""0xcec8ad60""]" 1 58 0x906d490 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:43.943Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x992d020"",""0x1d64216"",""0x90799dc"",""0x90799cc"",""0x641add04"",""0x0""]" 0 104 0x992d020 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:44.011Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:44.011Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:24:44.012Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x906d208"",""0x8feaa0"",""0xcec8ad60""]" 0 2 0x2 +2026-04-25T07:24:44.012Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f9c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x906d208"",""0x8feaa0"",""0xcec8ad60""]" 1 37 0x906d208 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.031Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f9c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x992d020"",""0x1d64216"",""0x9079584"",""0x9079574"",""0x641add04"",""0x0""]" 0 83 0x992d020 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.077Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T07:24:44.077Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T07:24:44.100Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2e"",""0xe55498"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2e"",""0xe55498"",""0x206"",""0x3"",""0x755a7ac""]" 0 46 0xe55498 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.100Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2e"",""0xe55498"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2e"",""0xe55498"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:44.100Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2e"",""0xe55498"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2e"",""0xe55498"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:44.101Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T07:24:44.118Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2e"",""0x7a1fb08"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2e"",""0x7a1fb08"",""0x206"",""0x3"",""0x755a7ac""]" 0 46 0x7a1fb08 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.118Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2e"",""0x7a1fb08"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2e"",""0x7a1fb08"",""0x206"",""0x3"",""0x755a7ac""]" 1 518 0x3 +2026-04-25T07:24:44.118Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f9c738 "[""0x2e"",""0x7a1fb08"",""0x719e838"",""0x76ffedd8"",""0x8f9c744"",""0x2e"",""0x7a1fb08"",""0x206"",""0x3"",""0x755a7ac""]" 2 3 0x755a7ac 38 5c bb +2026-04-25T07:24:44.119Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] diff --git a/captures/046-service-boundary-write-test-int-123456791/client-frida-exit.txt b/captures/046-service-boundary-write-test-int-123456791/client-frida-exit.txt new file mode 100644 index 0000000..43ca038 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/client-frida-exit.txt @@ -0,0 +1 @@ +client_exit_code=1 diff --git a/captures/046-service-boundary-write-test-int-123456791/client-frida.stderr.txt b/captures/046-service-boundary-write-test-int-123456791/client-frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/046-service-boundary-write-test-int-123456791/client-frida.stdout.jsonl b/captures/046-service-boundary-write-test-int-123456791/client-frida.stdout.jsonl new file mode 100644 index 0000000..db4b11a --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/client-frida.stdout.jsonl @@ -0,0 +1,71 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456791 --user-id=1 --duration=2 --write-delay-ms=750 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\046-service-boundary-write-test-int-123456791\harness.log --client=MxBoundary-046-service-boundary-write-test-int-123456791`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456791 --user-id=1 --duration=2 --write-delay-ms=750 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\046-service-boundary-write-test-int-123456791\harness.log --client=MxBoundary-046-service-boundary-write-test-int-123456791`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T07:24:33.675Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T07:24:33.676Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T07:24:33.676Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T07:24:33.678Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T07:24:33.678Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T07:24:40.934Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T07:24:40.935Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T07:24:40.936Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T07:24:40.936Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x8fec20","args":["0x5cc8ff0","0x1","0x1","0x47f26091","0x74794704"],"time":"2026-04-25T07:24:41.050Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T07:24:41.051Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f9c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8fa0648","0x8fe8e4","0xcec8a324"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8fa0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:24:41.174Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x1","0x168","0x992d020","0x1d64cd2","0x8fa0214","0x8fa0204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x992d020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:24:41.176Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.212Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:24:41.213Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f9c738","0x1","0x1","0x2","0x2","0x0","0x27","0x906d5f8","0x8fe8e4","0xcec8a324"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x906d5f8","hex":"1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:24:41.213Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x2","0x55","0x992d020","0x1d64cd2","0x9079584","0x9079574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x992d020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:24:41.215Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.245Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:24:41.245Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x5c","0x7a27240","0x719e838","0x76ffedd8","0x8f9c744","0x5c","0x7a27240","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7a27240","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:41.361Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:41.361Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x6c","0x7a1ea00","0x719e838","0x76ffedd8","0x8f9c744","0x6c","0x7a1ea00","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7a1ea00","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:41.403Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:41.403Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x2","0x2e","0x992d020","0x1d64c86","0x8f97010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x992d020","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.461Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x2c2","0x7a194d8","0x719e838","0x76ffedd8","0x8f9c744","0x2c2","0x7a194d8","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7a194d8","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:41.497Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:41.498Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.594Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x97","0x7a8d1d8","0x719e838","0x76ffedd8","0x8f9c744","0x97","0x7a8d1d8","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7a8d1d8","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:41.621Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:41.621Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x1","0x2e","0x992d020","0x1d64c86","0x8f97010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x992d020","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.723Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.749Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x8febf4","args":["0x5cc8ff0","0x1","0x1","0x3","0x0","0x75bcd17","0x0","0x1","0x47f26091","0x74794704"],"time":"2026-04-25T07:24:41.867Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T07:24:41.867Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f9c738","0x1","0x1","0x2","0x2","0x0","0x28","0x906d6d0","0x8fe8e4","0xcec8a324"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x906d6d0","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"}],"time":"2026-04-25T07:24:42.071Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x2","0x56","0x992d020","0x1d64cd2","0x90799dc","0x90799cc","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x992d020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"}],"time":"2026-04-25T07:24:42.072Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.100Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:24:42.100Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x33","0xe55498","0x719e838","0x76ffedd8","0x8f9c744","0x33","0xe55498","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xe55498","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:42.142Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:42.142Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x58","0x7a8e2e0","0x719e838","0x76ffedd8","0x8f9c744","0x58","0x7a8e2e0","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7a8e2e0","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:42.179Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:42.180Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x2","0x2e","0x992d020","0x1d64c86","0x8f97010","0x0","0x0","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x992d020","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.261Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.319Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f9c738","0x1","0x1","0x1","0x2","0x0","0x3a","0x906d490","0x8feaa0","0xcec8ad60"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":58,"ptr":"0x906d490","hex":"21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:24:43.941Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x1","0x68","0x992d020","0x1d64216","0x90799dc","0x90799cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x992d020","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:24:43.943Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.011Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:24:44.011Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f9c738","0x1","0x1","0x2","0x2","0x0","0x25","0x906d208","0x8feaa0","0xcec8ad60"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x906d208","hex":"21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:24:44.012Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f9c738","args":["0x1","0x1","0x2","0x53","0x992d020","0x1d64216","0x9079584","0x9079574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x992d020","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T07:24:44.031Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.077Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T07:24:44.077Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x2e","0xe55498","0x719e838","0x76ffedd8","0x8f9c744","0x2e","0xe55498","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0xe55498","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:44.100Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:44.101Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f9c738","args":["0x2e","0x7a1fb08","0x719e838","0x76ffedd8","0x8f9c744","0x2e","0x7a1fb08","0x206","0x3","0x755a7ac"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7a1fb08","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x755a7ac","hex":"38 5c bb"}],"time":"2026-04-25T07:24:44.118Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T07:24:44.119Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/046-service-boundary-write-test-int-123456791/command.txt b/captures/046-service-boundary-write-test-int-123456791/command.txt new file mode 100644 index 0000000..aa0a622 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/command.txt @@ -0,0 +1,7 @@ +nmxsvc_pid=13944 +nmxsvc_path=C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvc.exe +dumpcap=C:\Program Files\Wireshark\dumpcap.exe +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +service_args=-p 13944 -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmxsvc-trace.js +client_args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=int --value=123456791 --user-id=1 --duration=2 --write-delay-ms=750 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\046-service-boundary-write-test-int-123456791\harness.log --client=MxBoundary-046-service-boundary-write-test-int-123456791 diff --git a/captures/046-service-boundary-write-test-int-123456791/dcerpc-stream-pdus.tsv b/captures/046-service-boundary-write-test-int-123456791/dcerpc-stream-pdus.tsv new file mode 100644 index 0000000..205b8c9 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/dcerpc-stream-pdus.tsv @@ -0,0 +1,453 @@ +stream offset ptype ptype_name flags frag_len auth_len call_id alloc_hint context_id context_interface_uuid context_interface_version opnum stub_offset stub_len scalar_hit_offsets bind_contexts stub_hex_prefix +tcp-stream-__1_49704-to-__1_57385.bin 0 12 bind_ack 0x03 84 0 2 0 +tcp-stream-__1_49704-to-__1_57385.bin 84 2 response 0x03 44 0 2 20 0 108 20 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e +tcp-stream-__1_49704-to-__1_57385.bin 128 15 alter_context_resp 0x03 56 0 3 0 +tcp-stream-__1_49704-to-__1_57385.bin 184 2 response 0x03 28 0 3 4 1 208 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 212 2 response 0x03 92 0 4 68 1 236 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 304 2 response 0x03 32 0 5 8 1 328 8 09 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 336 2 response 0x03 32 0 6 8 1 360 8 0a 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 368 2 response 0x03 32 0 7 8 1 392 8 0b 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 400 2 response 0x03 32 0 8 8 1 424 8 0c 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 432 2 response 0x03 32 0 9 8 1 456 8 0d 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 464 2 response 0x03 32 0 10 8 1 488 8 0e 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 496 2 response 0x03 32 0 11 8 1 520 8 0f 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 528 2 response 0x03 32 0 12 8 1 552 8 10 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 560 2 response 0x03 32 0 13 8 1 584 8 11 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 592 2 response 0x03 32 0 14 8 1 616 8 12 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 624 2 response 0x03 32 0 15 8 1 648 8 13 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 656 2 response 0x03 32 0 16 8 1 680 8 14 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 688 2 response 0x03 32 0 17 8 1 712 8 15 0b 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 720 2 response 0x03 44 0 18 20 0 744 20 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 +tcp-stream-__1_49704-to-__1_57385.bin 764 2 response 0x03 28 0 19 4 1 788 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 792 2 response 0x03 92 0 20 68 1 816 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 884 2 response 0x03 32 0 21 8 1 908 8 60 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 916 2 response 0x03 32 0 22 8 1 940 8 61 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 948 2 response 0x03 32 0 23 8 1 972 8 62 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 980 2 response 0x03 32 0 24 8 1 1004 8 63 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1012 2 response 0x03 32 0 25 8 1 1036 8 64 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1044 2 response 0x03 32 0 26 8 1 1068 8 65 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1076 2 response 0x03 32 0 27 8 1 1100 8 66 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1108 2 response 0x03 32 0 28 8 1 1132 8 67 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1140 2 response 0x03 32 0 29 8 1 1164 8 68 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1172 2 response 0x03 32 0 30 8 1 1196 8 69 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1204 2 response 0x03 32 0 31 8 1 1228 8 6a 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1236 2 response 0x03 44 0 32 20 0 1260 20 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 +tcp-stream-__1_49704-to-__1_57385.bin 1280 2 response 0x03 28 0 33 4 1 1304 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1308 2 response 0x03 92 0 34 68 1 1332 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1400 2 response 0x03 32 0 35 8 1 1424 8 63 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1432 2 response 0x03 32 0 36 8 1 1456 8 64 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1464 2 response 0x03 32 0 37 8 1 1488 8 65 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1496 2 response 0x03 32 0 38 8 1 1520 8 66 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1528 2 response 0x03 32 0 39 8 1 1552 8 67 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1560 2 response 0x03 32 0 40 8 1 1584 8 68 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1592 2 response 0x03 32 0 41 8 1 1616 8 69 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1624 2 response 0x03 32 0 42 8 1 1648 8 6a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1656 2 response 0x03 32 0 43 8 1 1680 8 6b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1688 2 response 0x03 32 0 44 8 1 1712 8 6c 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1720 2 response 0x03 32 0 45 8 1 1744 8 6d 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1752 2 response 0x03 32 0 46 8 1 1776 8 6e 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1784 2 response 0x03 32 0 47 8 1 1808 8 6f 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1816 2 response 0x03 44 0 48 20 0 1840 20 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 +tcp-stream-__1_49704-to-__1_57385.bin 1860 2 response 0x03 28 0 49 4 1 1884 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1888 2 response 0x03 92 0 50 68 1 1912 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 1980 2 response 0x03 32 0 51 8 1 2004 8 70 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2012 2 response 0x03 32 0 52 8 1 2036 8 71 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2044 2 response 0x03 32 0 53 8 1 2068 8 72 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2076 2 response 0x03 32 0 54 8 1 2100 8 73 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2108 2 response 0x03 32 0 55 8 1 2132 8 74 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2140 2 response 0x03 32 0 56 8 1 2164 8 75 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2172 2 response 0x03 32 0 57 8 1 2196 8 76 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2204 2 response 0x03 32 0 58 8 1 2228 8 77 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2236 2 response 0x03 32 0 59 8 1 2260 8 78 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2268 2 response 0x03 32 0 60 8 1 2292 8 79 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2300 2 response 0x03 32 0 61 8 1 2324 8 7a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2332 2 response 0x03 32 0 62 8 1 2356 8 7b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2364 2 response 0x03 32 0 63 8 1 2388 8 7c 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2396 2 response 0x03 44 0 64 20 0 2420 20 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 +tcp-stream-__1_49704-to-__1_57385.bin 2440 2 response 0x03 28 0 65 4 1 2464 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2468 2 response 0x03 92 0 66 68 1 2492 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2560 2 response 0x03 32 0 67 8 1 2584 8 7d 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2592 2 response 0x03 32 0 68 8 1 2616 8 7e 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2624 2 response 0x03 32 0 69 8 1 2648 8 7f 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2656 2 response 0x03 32 0 70 8 1 2680 8 80 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2688 2 response 0x03 32 0 71 8 1 2712 8 81 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2720 2 response 0x03 32 0 72 8 1 2744 8 82 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2752 2 response 0x03 32 0 73 8 1 2776 8 83 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2784 2 response 0x03 32 0 74 8 1 2808 8 84 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2816 2 response 0x03 32 0 75 8 1 2840 8 85 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2848 2 response 0x03 32 0 76 8 1 2872 8 86 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2880 2 response 0x03 32 0 77 8 1 2904 8 87 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2912 2 response 0x03 32 0 78 8 1 2936 8 88 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2944 2 response 0x03 32 0 79 8 1 2968 8 89 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 2976 2 response 0x03 32 0 80 8 1 3000 8 8a 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3008 2 response 0x03 32 0 81 8 1 3032 8 8b 01 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3040 2 response 0x03 44 0 82 20 0 3064 20 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba +tcp-stream-__1_49704-to-__1_57385.bin 3084 2 response 0x03 28 0 83 4 1 3108 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3112 2 response 0x03 92 0 84 68 1 3136 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3204 2 response 0x03 32 0 85 8 1 3228 8 30 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3236 2 response 0x03 32 0 86 8 1 3260 8 31 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3268 2 response 0x03 32 0 87 8 1 3292 8 32 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3300 2 response 0x03 32 0 88 8 1 3324 8 33 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3332 2 response 0x03 32 0 89 8 1 3356 8 34 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3364 2 response 0x03 32 0 90 8 1 3388 8 35 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3396 2 response 0x03 32 0 91 8 1 3420 8 36 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3428 2 response 0x03 32 0 92 8 1 3452 8 37 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3460 2 response 0x03 32 0 93 8 1 3484 8 38 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3492 2 response 0x03 32 0 94 8 1 3516 8 39 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3524 2 response 0x03 32 0 95 8 1 3548 8 3a 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3556 2 response 0x03 32 0 96 8 1 3580 8 3b 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3588 2 response 0x03 32 0 97 8 1 3612 8 3c 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3620 2 response 0x03 32 0 98 8 1 3644 8 3d 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3652 2 response 0x03 32 0 99 8 1 3676 8 95 05 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3684 2 response 0x03 44 0 100 20 0 3708 20 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 +tcp-stream-__1_49704-to-__1_57385.bin 3728 2 response 0x03 28 0 101 4 1 3752 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3756 2 response 0x03 92 0 102 68 1 3780 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3848 2 response 0x03 32 0 103 8 1 3872 8 e5 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3880 2 response 0x03 32 0 104 8 1 3904 8 e6 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3912 2 response 0x03 32 0 105 8 1 3936 8 e7 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3944 2 response 0x03 32 0 106 8 1 3968 8 e8 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 3976 2 response 0x03 32 0 107 8 1 4000 8 e9 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4008 2 response 0x03 32 0 108 8 1 4032 8 ea 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4040 2 response 0x03 32 0 109 8 1 4064 8 eb 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4072 2 response 0x03 32 0 110 8 1 4096 8 ec 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4104 2 response 0x03 32 0 111 8 1 4128 8 ed 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4136 2 response 0x03 32 0 112 8 1 4160 8 ee 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4168 2 response 0x03 32 0 113 8 1 4192 8 ef 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4200 2 response 0x03 32 0 114 8 1 4224 8 f0 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4232 2 response 0x03 32 0 115 8 1 4256 8 f1 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4264 2 response 0x03 32 0 116 8 1 4288 8 f2 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4296 2 response 0x03 32 0 117 8 1 4320 8 f3 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4328 2 response 0x03 32 0 118 8 1 4352 8 f4 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4360 2 response 0x03 32 0 119 8 1 4384 8 f5 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4392 2 response 0x03 32 0 120 8 1 4416 8 f6 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4424 2 response 0x03 32 0 121 8 1 4448 8 f7 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4456 2 response 0x03 32 0 122 8 1 4480 8 f8 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4488 2 response 0x03 32 0 123 8 1 4512 8 f9 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4520 2 response 0x03 32 0 124 8 1 4544 8 fa 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4552 2 response 0x03 32 0 125 8 1 4576 8 fb 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4584 2 response 0x03 32 0 126 8 1 4608 8 fc 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4616 2 response 0x03 32 0 127 8 1 4640 8 fd 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4648 2 response 0x03 32 0 128 8 1 4672 8 fe 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4680 2 response 0x03 32 0 129 8 1 4704 8 ff 06 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4712 2 response 0x03 32 0 130 8 1 4736 8 00 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4744 2 response 0x03 32 0 131 8 1 4768 8 01 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4776 2 response 0x03 32 0 132 8 1 4800 8 02 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4808 2 response 0x03 28 0 133 4 1 4832 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4836 2 response 0x03 44 0 134 20 0 4860 20 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e +tcp-stream-__1_49704-to-__1_57385.bin 4880 2 response 0x03 28 0 135 4 1 4904 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 4908 2 response 0x03 92 0 136 68 1 4932 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5000 2 response 0x03 32 0 137 8 1 5024 8 dd 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5032 2 response 0x03 32 0 138 8 1 5056 8 de 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5064 2 response 0x03 32 0 139 8 1 5088 8 df 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5096 2 response 0x03 32 0 140 8 1 5120 8 e0 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5128 2 response 0x03 32 0 141 8 1 5152 8 e1 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5160 2 response 0x03 32 0 142 8 1 5184 8 e2 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5192 2 response 0x03 32 0 143 8 1 5216 8 e3 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5224 2 response 0x03 32 0 144 8 1 5248 8 e4 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5256 2 response 0x03 32 0 145 8 1 5280 8 e5 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5288 2 response 0x03 32 0 146 8 1 5312 8 e6 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5320 2 response 0x03 32 0 147 8 1 5344 8 e7 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5352 2 response 0x03 32 0 148 8 1 5376 8 e8 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5384 2 response 0x03 32 0 149 8 1 5408 8 e9 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5416 2 response 0x03 32 0 150 8 1 5440 8 ea 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5448 2 response 0x03 32 0 151 8 1 5472 8 eb 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5480 2 response 0x03 32 0 152 8 1 5504 8 ec 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5512 2 response 0x03 32 0 153 8 1 5536 8 ed 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5544 2 response 0x03 32 0 154 8 1 5568 8 ee 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5576 2 response 0x03 32 0 155 8 1 5600 8 ef 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5608 2 response 0x03 32 0 156 8 1 5632 8 f0 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5640 2 response 0x03 32 0 157 8 1 5664 8 f1 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5672 2 response 0x03 32 0 158 8 1 5696 8 f2 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5704 2 response 0x03 32 0 159 8 1 5728 8 f3 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5736 2 response 0x03 44 0 160 20 0 5760 20 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd +tcp-stream-__1_49704-to-__1_57385.bin 5780 2 response 0x03 28 0 161 4 1 5804 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5808 2 response 0x03 92 0 162 68 1 5832 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5900 2 response 0x03 32 0 163 8 1 5924 8 11 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5932 2 response 0x03 32 0 164 8 1 5956 8 12 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5964 2 response 0x03 32 0 165 8 1 5988 8 13 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 5996 2 response 0x03 32 0 166 8 1 6020 8 14 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6028 2 response 0x03 32 0 167 8 1 6052 8 15 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6060 2 response 0x03 32 0 168 8 1 6084 8 16 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6092 2 response 0x03 32 0 169 8 1 6116 8 17 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6124 2 response 0x03 32 0 170 8 1 6148 8 18 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6156 2 response 0x03 32 0 171 8 1 6180 8 19 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6188 2 response 0x03 32 0 172 8 1 6212 8 1a 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6220 2 response 0x03 32 0 173 8 1 6244 8 1b 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6252 2 response 0x03 32 0 174 8 1 6276 8 1c 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6284 2 response 0x03 32 0 175 8 1 6308 8 1d 04 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6316 2 response 0x03 44 0 176 20 0 6340 20 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e +tcp-stream-__1_49704-to-__1_57385.bin 6360 2 response 0x03 28 0 177 4 1 6384 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6388 2 response 0x03 92 0 178 68 1 6412 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6480 2 response 0x03 32 0 179 8 1 6504 8 f4 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6512 2 response 0x03 32 0 180 8 1 6536 8 f5 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6544 2 response 0x03 32 0 181 8 1 6568 8 f6 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6576 2 response 0x03 32 0 182 8 1 6600 8 f7 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6608 2 response 0x03 32 0 183 8 1 6632 8 f8 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6640 2 response 0x03 32 0 184 8 1 6664 8 f9 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6672 2 response 0x03 32 0 185 8 1 6696 8 fa 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6704 2 response 0x03 32 0 186 8 1 6728 8 fb 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6736 2 response 0x03 32 0 187 8 1 6760 8 fc 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6768 2 response 0x03 32 0 188 8 1 6792 8 fd 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6800 2 response 0x03 32 0 189 8 1 6824 8 fe 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6832 2 response 0x03 32 0 190 8 1 6856 8 ff 07 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6864 2 response 0x03 32 0 191 8 1 6888 8 00 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6896 2 response 0x03 32 0 192 8 1 6920 8 01 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6928 2 response 0x03 32 0 193 8 1 6952 8 02 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6960 2 response 0x03 32 0 194 8 1 6984 8 03 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 6992 2 response 0x03 32 0 195 8 1 7016 8 04 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7024 2 response 0x03 32 0 196 8 1 7048 8 05 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7056 2 response 0x03 32 0 197 8 1 7080 8 06 08 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7088 2 response 0x03 28 0 198 4 1 7112 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7116 2 response 0x03 28 0 199 4 1 7140 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7144 2 response 0x03 28 0 200 4 1 7168 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7172 2 response 0x03 44 0 201 20 0 7196 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7216 2 response 0x03 44 0 202 20 0 7240 20 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 +tcp-stream-__1_49704-to-__1_57385.bin 7260 2 response 0x03 28 0 203 4 1 7284 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7288 2 response 0x03 92 0 204 68 1 7312 68 00 00 02 00 18 00 00 00 00 00 00 00 18 00 00 00 47 00 6c 00 6f 00 62 00 61 00 6c 00 5c 00 4c 00 6f 00 67 00 46 00 6c 00 61 00 67 00 4d 00 65 00 6d 00 6f 00 72 00 79 00 4d 00 61 00 70 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7380 2 response 0x03 32 0 205 8 1 7404 8 60 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7412 2 response 0x03 32 0 206 8 1 7436 8 61 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7444 2 response 0x03 32 0 207 8 1 7468 8 62 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7476 2 response 0x03 32 0 208 8 1 7500 8 63 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7508 2 response 0x03 32 0 209 8 1 7532 8 64 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7540 2 response 0x03 32 0 210 8 1 7564 8 65 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7572 2 response 0x03 32 0 211 8 1 7596 8 66 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7604 2 response 0x03 32 0 212 8 1 7628 8 67 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7636 2 response 0x03 32 0 213 8 1 7660 8 68 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7668 2 response 0x03 32 0 214 8 1 7692 8 69 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7700 2 response 0x03 32 0 215 8 1 7724 8 6a 0d 00 00 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7732 2 response 0x03 28 0 216 4 1 7756 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7760 2 response 0x03 44 0 217 20 0 7784 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7804 2 response 0x03 28 0 218 4 1 7828 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7832 2 response 0x03 44 0 219 20 0 7856 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7876 2 response 0x03 28 0 220 4 1 7900 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7904 2 response 0x03 44 0 221 20 0 7928 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7948 2 response 0x03 28 0 222 4 1 7972 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 7976 2 response 0x03 44 0 223 20 0 8000 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 8020 2 response 0x03 28 0 224 4 1 8044 4 01 00 00 00 +tcp-stream-__1_49704-to-__1_57385.bin 8048 2 response 0x03 44 0 225 20 0 8072 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 0 11 bind 0x03 116 0 2 0 0:4E0C90DF-E39D-4164-A421-ACE89484C602:1.0;1:4E0C90DF-E39D-4164-A421-ACE89484C602:1.0 +tcp-stream-__1_57385-to-__1_49704.bin 116 0 request 0x83 40 0 2 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 140 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 156 14 alter_context 0x03 72 0 3 0 1:1981974B-6BF7-46CB-9640-0260BBB551BA:1.0 +tcp-stream-__1_57385-to-__1_49704.bin 228 0 request 0x83 96 0 3 56 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 252 72 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 78 00 79 00 +tcp-stream-__1_57385-to-__1_49704.bin 324 0 request 0x83 60 0 4 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 348 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e +tcp-stream-__1_57385-to-__1_49704.bin 384 0 request 0x83 120 0 5 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 408 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 504 0 request 0x83 124 0 6 84 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 528 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 628 0 request 0x83 118 0 7 78 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 652 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 746 0 request 0x83 120 0 8 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 770 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 866 0 request 0x83 130 0 9 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 890 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 996 0 request 0x83 130 0 10 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1020 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 1126 0 request 0x83 142 0 11 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1150 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 1268 0 request 0x83 116 0 12 76 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1292 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 1384 0 request 0x83 130 0 13 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1408 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 1514 0 request 0x83 128 0 14 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1538 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 1642 0 request 0x83 126 0 15 86 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1666 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 1768 0 request 0x83 132 0 16 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1792 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 1900 0 request 0x83 152 0 17 112 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 1924 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4c 00 6d 00 78 00 50 00 72 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 2052 0 request 0x83 40 0 18 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 2076 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 2092 0 request 0x83 108 0 19 68 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 2116 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 65 00 48 00 +tcp-stream-__1_57385-to-__1_49704.bin 2200 0 request 0x83 60 0 20 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 2224 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 +tcp-stream-__1_57385-to-__1_49704.bin 2260 0 request 0x83 132 0 21 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 2284 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 2392 0 request 0x83 136 0 22 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 2416 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 2528 0 request 0x83 130 0 23 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 2552 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 2658 0 request 0x83 132 0 24 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 2682 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 2790 0 request 0x83 142 0 25 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 2814 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 2932 0 request 0x83 142 0 26 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 2956 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 3074 0 request 0x83 154 0 27 114 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 3098 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 3228 0 request 0x83 128 0 28 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 3252 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 3356 0 request 0x83 142 0 29 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 3380 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 3498 0 request 0x83 140 0 30 100 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 3522 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 3638 0 request 0x83 138 0 31 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 3662 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 3776 0 request 0x83 40 0 32 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 3800 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 3816 0 request 0x83 104 0 33 64 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 3840 80 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 4c 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 3920 0 request 0x83 60 0 34 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 3944 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 +tcp-stream-__1_57385-to-__1_49704.bin 3980 0 request 0x83 128 0 35 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4004 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 4108 0 request 0x83 132 0 36 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4132 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 4240 0 request 0x83 126 0 37 86 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4264 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 4366 0 request 0x83 128 0 38 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4390 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 4494 0 request 0x83 138 0 39 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4518 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 4632 0 request 0x83 138 0 40 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4656 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 4770 0 request 0x83 150 0 41 110 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4794 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 4920 0 request 0x83 124 0 42 84 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 4944 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 5044 0 request 0x83 138 0 43 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 5068 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 5182 0 request 0x83 136 0 44 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 5206 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 5318 0 request 0x83 134 0 45 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 5342 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 5452 0 request 0x83 140 0 46 100 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 5476 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 5592 0 request 0x83 146 0 47 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 5616 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 97 15 cc 7d ed a5 cb 46 8a 54 20 6f 62 13 8d 21 00 00 02 00 0d 00 00 00 00 00 00 00 0d 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 5738 0 request 0x83 40 0 48 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 5762 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 5778 0 request 0x83 112 0 49 72 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 5802 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 43 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 5890 0 request 0x83 60 0 50 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 5914 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 +tcp-stream-__1_57385-to-__1_49704.bin 5950 0 request 0x83 136 0 51 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 5974 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 6086 0 request 0x83 140 0 52 100 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 6110 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 6226 0 request 0x83 134 0 53 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 6250 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 6360 0 request 0x83 136 0 54 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 6384 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 6496 0 request 0x83 146 0 55 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 6520 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 6642 0 request 0x83 146 0 56 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 6666 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 6788 0 request 0x83 158 0 57 118 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 6812 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 6946 0 request 0x83 132 0 58 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 6970 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 7078 0 request 0x83 146 0 59 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 7102 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 7224 0 request 0x83 144 0 60 104 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 7248 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 7368 0 request 0x83 142 0 61 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 7392 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 7510 0 request 0x83 148 0 62 108 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 7534 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 7658 0 request 0x83 154 0 63 114 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 7682 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 79 8a 9b 80 83 89 69 43 ac 69 f1 dd 5c 16 5c e3 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 7812 0 request 0x83 40 0 64 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 7836 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 7852 0 request 0x83 92 0 65 52 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 7876 68 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 00 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 7944 0 request 0x83 60 0 66 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 7968 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 +tcp-stream-__1_57385-to-__1_49704.bin 8004 0 request 0x83 116 0 67 76 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8028 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8120 0 request 0x83 120 0 68 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8144 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8240 0 request 0x83 114 0 69 74 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8264 90 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8354 0 request 0x83 116 0 70 76 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8378 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8470 0 request 0x83 126 0 71 86 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8494 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8596 0 request 0x83 126 0 72 86 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8620 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8722 0 request 0x83 138 0 73 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8746 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8860 0 request 0x83 112 0 74 72 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8884 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 8972 0 request 0x83 126 0 75 86 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 8996 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 9098 0 request 0x83 124 0 76 84 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 9122 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 9222 0 request 0x83 122 0 77 82 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 9246 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 9344 0 request 0x83 128 0 78 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 9368 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 9472 0 request 0x83 134 0 79 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 9496 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 9606 0 request 0x83 130 0 80 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 9630 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 9736 0 request 0x83 128 0 81 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 9760 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0a 15 74 a5 cc 3d a7 4c b9 c6 90 4c 74 1d 66 f7 00 00 02 00 07 00 00 00 00 00 00 00 07 00 00 00 4c 00 69 00 63 00 41 00 50 00 49 00 +tcp-stream-__1_57385-to-__1_49704.bin 9864 0 request 0x83 40 0 82 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 9888 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 9904 0 request 0x83 100 0 83 60 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 9928 76 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 72 00 69 00 +tcp-stream-__1_57385-to-__1_49704.bin 10004 0 request 0x83 60 0 84 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 10028 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba +tcp-stream-__1_57385-to-__1_49704.bin 10064 0 request 0x83 124 0 85 84 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 10088 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 10188 0 request 0x83 128 0 86 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 10212 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 10316 0 request 0x83 122 0 87 82 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 10340 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 10438 0 request 0x83 124 0 88 84 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 10462 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 10562 0 request 0x83 134 0 89 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 10586 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 10696 0 request 0x83 134 0 90 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 10720 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 10830 0 request 0x83 146 0 91 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 10854 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 10976 0 request 0x83 120 0 92 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11000 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 11096 0 request 0x83 134 0 93 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11120 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 11230 0 request 0x83 132 0 94 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11254 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 11362 0 request 0x83 130 0 95 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11386 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 11492 0 request 0x83 144 0 96 104 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11516 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 11636 0 request 0x83 148 0 97 108 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11660 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 11784 0 request 0x83 146 0 98 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11808 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 11930 0 request 0x83 158 0 99 118 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 11954 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba 00 00 02 00 0b 00 00 00 00 00 00 00 0b 00 00 00 78 00 78 00 53 00 65 00 63 00 75 00 +tcp-stream-__1_57385-to-__1_49704.bin 12088 0 request 0x83 40 0 100 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 12112 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 12128 0 request 0x83 84 0 101 44 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 12152 60 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 a0 d1 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 12212 0 request 0x83 60 0 102 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 12236 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 +tcp-stream-__1_57385-to-__1_49704.bin 12272 0 request 0x83 108 0 103 68 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 12296 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 06 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 12380 0 request 0x83 112 0 104 72 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 12404 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 08 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 12492 0 request 0x83 106 0 105 66 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 12516 82 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 05 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 12598 0 request 0x83 108 0 106 68 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 12622 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 06 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 12706 0 request 0x83 118 0 107 78 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 12730 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 12824 0 request 0x83 118 0 108 78 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 12848 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 12942 0 request 0x83 130 0 109 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 12966 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13072 0 request 0x83 104 0 110 64 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13096 80 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 04 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13176 0 request 0x83 118 0 111 78 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13200 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0b 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13294 0 request 0x83 116 0 112 76 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13318 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0a 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13410 0 request 0x83 114 0 113 74 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13434 90 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 09 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13524 0 request 0x83 128 0 114 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13548 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 10 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13652 0 request 0x83 120 0 115 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13676 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0c 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13772 0 request 0x83 120 0 116 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13796 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0c 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 13892 0 request 0x83 122 0 117 82 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 13916 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14014 0 request 0x83 134 0 118 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14038 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 13 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14148 0 request 0x83 132 0 119 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14172 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 12 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14280 0 request 0x83 130 0 120 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14304 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14410 0 request 0x83 138 0 121 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14434 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 15 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14548 0 request 0x83 144 0 122 104 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14572 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 18 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14692 0 request 0x83 144 0 123 104 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14716 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 18 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14836 0 request 0x83 116 0 124 76 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14860 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0a 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 14952 0 request 0x83 130 0 125 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 14976 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15082 0 request 0x83 138 0 126 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 15106 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 15 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15220 0 request 0x83 130 0 127 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 15244 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 11 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15350 0 request 0x83 122 0 128 82 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 15374 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15472 0 request 0x83 122 0 129 82 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 15496 98 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0d 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15594 0 request 0x83 134 0 130 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 15618 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 13 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15728 0 request 0x83 128 0 131 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 15752 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 10 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15856 0 request 0x83 124 0 132 84 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 15880 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 00 00 02 00 04 00 00 00 00 00 00 00 04 00 00 00 4c 00 6d 00 78 00 00 00 0e 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 15980 0 request 0x83 516 0 133 476 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 5 16004 492 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 16496 0 request 0x83 40 0 134 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 16520 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 16536 0 request 0x83 112 0 135 72 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 16560 88 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 74 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 16648 0 request 0x83 60 0 136 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 16672 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e +tcp-stream-__1_57385-to-__1_49704.bin 16708 0 request 0x83 136 0 137 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 16732 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 16844 0 request 0x83 140 0 138 100 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 16868 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 16984 0 request 0x83 134 0 139 94 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 17008 110 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 17118 0 request 0x83 136 0 140 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 17142 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 17254 0 request 0x83 146 0 141 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 17278 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 17400 0 request 0x83 146 0 142 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 17424 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 17546 0 request 0x83 158 0 143 118 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 17570 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 17704 0 request 0x83 132 0 144 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 17728 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 17836 0 request 0x83 146 0 145 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 17860 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 17982 0 request 0x83 144 0 146 104 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 18006 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 18126 0 request 0x83 142 0 147 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 18150 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 18268 0 request 0x83 160 0 148 120 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 18292 136 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 18428 0 request 0x83 156 0 149 116 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 18452 132 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 18584 0 request 0x83 154 0 150 114 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 18608 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 18738 0 request 0x83 146 0 151 106 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 18762 122 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 18884 0 request 0x83 154 0 152 114 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 18908 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 19038 0 request 0x83 150 0 153 110 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 19062 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 19188 0 request 0x83 152 0 154 112 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 19212 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 19340 0 request 0x83 140 0 155 100 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 19364 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 19480 0 request 0x83 148 0 156 108 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 19504 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 19628 0 request 0x83 162 0 157 122 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 19652 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 19790 0 request 0x83 172 0 158 132 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 19814 148 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 19962 0 request 0x83 144 0 159 104 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 19986 120 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e 00 00 02 00 11 00 00 00 00 00 00 00 11 00 00 00 61 00 61 00 4d 00 78 00 44 00 61 00 +tcp-stream-__1_57385-to-__1_49704.bin 20106 0 request 0x83 40 0 160 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 20130 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 20146 0 request 0x83 128 0 161 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 20170 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 +tcp-stream-__1_57385-to-__1_49704.bin 20274 0 request 0x83 60 0 162 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 20298 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd +tcp-stream-__1_57385-to-__1_49704.bin 20334 0 request 0x83 152 0 163 112 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 20358 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 20486 0 request 0x83 156 0 164 116 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 20510 132 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 20642 0 request 0x83 150 0 165 110 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 20666 126 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 20792 0 request 0x83 152 0 166 112 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 20816 128 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 20944 0 request 0x83 162 0 167 122 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 20968 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 21106 0 request 0x83 162 0 168 122 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 21130 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 21268 0 request 0x83 174 0 169 134 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 21292 150 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 21442 0 request 0x83 148 0 170 108 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 21466 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 21590 0 request 0x83 162 0 171 122 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 21614 138 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 21752 0 request 0x83 160 0 172 120 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 21776 136 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 21912 0 request 0x83 158 0 173 118 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 21936 134 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 22070 0 request 0x83 170 0 174 130 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 22094 146 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 22240 0 request 0x83 182 0 175 142 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 22264 158 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd 00 00 02 00 19 00 00 00 00 00 00 00 19 00 00 00 50 00 6c 00 61 00 74 00 66 00 6f 00 +tcp-stream-__1_57385-to-__1_49704.bin 22422 0 request 0x83 40 0 176 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 22446 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 22462 0 request 0x83 96 0 177 56 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 22486 72 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 74 00 72 00 +tcp-stream-__1_57385-to-__1_49704.bin 22558 0 request 0x83 60 0 178 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 22582 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e +tcp-stream-__1_57385-to-__1_49704.bin 22618 0 request 0x83 120 0 179 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 22642 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 22738 0 request 0x83 124 0 180 84 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 22762 100 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 22862 0 request 0x83 118 0 181 78 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 22886 94 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 22980 0 request 0x83 120 0 182 80 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23004 96 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 23100 0 request 0x83 130 0 183 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23124 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 23230 0 request 0x83 130 0 184 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23254 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 23360 0 request 0x83 142 0 185 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23384 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 23502 0 request 0x83 116 0 186 76 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23526 92 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 23618 0 request 0x83 130 0 187 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23642 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 23748 0 request 0x83 128 0 188 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23772 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 23876 0 request 0x83 126 0 189 86 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 23900 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24002 0 request 0x83 126 0 190 86 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24026 102 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24128 0 request 0x83 132 0 191 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24152 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24260 0 request 0x83 130 0 192 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24284 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24390 0 request 0x83 138 0 193 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24414 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24528 0 request 0x83 136 0 194 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24552 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24664 0 request 0x83 132 0 195 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24688 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24796 0 request 0x83 142 0 196 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24820 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 24938 0 request 0x83 148 0 197 108 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 24962 124 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e 00 00 02 00 09 00 00 00 00 00 00 00 09 00 00 00 4e 00 6d 00 78 00 41 00 64 00 70 00 +tcp-stream-__1_57385-to-__1_49704.bin 25086 0 request 0x83 290 0 198 250 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 5 25110 266 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 25376 0 request 0x83 206 0 199 166 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 5 25400 182 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 02 00 00 00 05 00 00 00 00 00 00 00 05 00 00 00 49 00 6e 00 66 00 6f 00 00 00 00 00 +tcp-stream-__1_57385-to-__1_49704.bin 25582 0 request 0x83 60 0 200 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 6 25606 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 +tcp-stream-__1_57385-to-__1_49704.bin 25642 0 request 0x83 60 0 201 20 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 1 25666 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 4c 28 56 1d 5a 31 16 4a 8a f3 f9 79 6a 83 8d 45 +tcp-stream-__1_57385-to-__1_49704.bin 25702 0 request 0x83 40 0 202 0 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 0 25726 16 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b +tcp-stream-__1_57385-to-__1_49704.bin 25742 0 request 0x83 108 0 203 68 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 0 25766 84 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 65 00 48 00 +tcp-stream-__1_57385-to-__1_49704.bin 25850 0 request 0x83 60 0 204 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 2 25874 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 +tcp-stream-__1_57385-to-__1_49704.bin 25910 0 request 0x83 132 0 205 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 25934 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 26042 0 request 0x83 136 0 206 96 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 26066 112 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 26178 0 request 0x83 130 0 207 90 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 26202 106 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 26308 0 request 0x83 132 0 208 92 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 26332 108 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 26440 0 request 0x83 142 0 209 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 26464 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 26582 0 request 0x83 142 0 210 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 26606 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 26724 0 request 0x83 154 0 211 114 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 26748 130 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 26878 0 request 0x83 128 0 212 88 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 26902 104 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 27006 0 request 0x83 142 0 213 102 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 27030 118 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 27148 0 request 0x83 140 0 214 100 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 27172 116 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 27288 0 request 0x83 138 0 215 98 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 3 27312 114 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7d 79 d2 95 96 c0 66 42 bc ae f2 79 62 5b fa e0 00 00 02 00 0f 00 00 00 00 00 00 00 0f 00 00 00 4d 00 78 00 54 00 72 00 61 00 63 00 +tcp-stream-__1_57385-to-__1_49704.bin 27426 0 request 0x83 60 0 216 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 6 27450 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e +tcp-stream-__1_57385-to-__1_49704.bin 27486 0 request 0x83 60 0 217 20 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 1 27510 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 0f 48 43 5f 1c ad 33 42 95 fe a8 b3 a6 43 59 5e +tcp-stream-__1_57385-to-__1_49704.bin 27546 0 request 0x83 60 0 218 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 6 27570 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd +tcp-stream-__1_57385-to-__1_49704.bin 27606 0 request 0x83 60 0 219 20 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 1 27630 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 db 26 41 f1 77 cc 1d 42 9d d6 0f 50 e6 29 2d cd +tcp-stream-__1_57385-to-__1_49704.bin 27666 0 request 0x83 60 0 220 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 6 27690 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e +tcp-stream-__1_57385-to-__1_49704.bin 27726 0 request 0x83 60 0 221 20 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 1 27750 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7a 3b 55 58 23 93 0c 44 8c ab 72 36 7e f0 3c 2e +tcp-stream-__1_57385-to-__1_49704.bin 27786 0 request 0x83 60 0 222 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 6 27810 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 +tcp-stream-__1_57385-to-__1_49704.bin 27846 0 request 0x83 60 0 223 20 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 1 27870 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 27 84 a7 a7 1e b0 09 41 9f 4c 3c f2 09 82 91 90 +tcp-stream-__1_57385-to-__1_49704.bin 27906 0 request 0x83 60 0 224 20 1 1981974B-6BF7-46CB-9640-0260BBB551BA 1.0 6 27930 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba +tcp-stream-__1_57385-to-__1_49704.bin 27966 0 request 0x83 60 0 225 20 0 4E0C90DF-E39D-4164-A421-ACE89484C602 1.0 1 27990 36 8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e fe 8b 00 00 00 00 7c 4e 40 45 cd 28 6f 46 a9 57 8e 8c a8 38 f9 ba diff --git a/captures/046-service-boundary-write-test-int-123456791/dumpcap.stderr.txt b/captures/046-service-boundary-write-test-int-123456791/dumpcap.stderr.txt new file mode 100644 index 0000000..9f57aac --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/dumpcap.stderr.txt @@ -0,0 +1,2 @@ +Capturing on 'Adapter for loopback traffic capture' +File: C:\Users\dohertj2\Desktop\mxaccess\captures\046-service-boundary-write-test-int-123456791\loopback.pcapng diff --git a/captures/046-service-boundary-write-test-int-123456791/dumpcap.stdout.txt b/captures/046-service-boundary-write-test-int-123456791/dumpcap.stdout.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/046-service-boundary-write-test-int-123456791/frida-to-tcp-map.tsv b/captures/046-service-boundary-write-test-int-123456791/frida-to-tcp-map.tsv new file mode 100644 index 0000000..b66831f --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/frida-to-tcp-map.tsv @@ -0,0 +1,5 @@ +needle needle_len stream offset +int32:123456791 4 -1 +putrequest-body 40 -1 +transferdata-body 86 -1 +callback-body 88 -1 diff --git a/captures/046-service-boundary-write-test-int-123456791/harness.log b/captures/046-service-boundary-write-test-int-123456791/harness.log new file mode 100644 index 0000000..8bde500 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/harness.log @@ -0,0 +1,19 @@ +2026-04-25T07:24:33.5669672+00:00 harness.start {"Scenario":"write","ClientName":"MxBoundary-046-service-boundary-write-test-int-123456791","Tags":["TestChildObject.TestInt"],"WriteType":"int","WriteValue":"123456791","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T07:24:40.6688302+00:00 mx.register.begin {"ClientName":"MxBoundary-046-service-boundary-write-test-int-123456791"} +2026-04-25T07:24:41.0462631+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T07:24:41.0462631+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T07:24:41.0482634+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:24:41.0492378+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:24:41.0512317+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:24:41.4581989+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"123456790"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:22:48.079 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:24:41.8643532+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"123456791"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T07:24:41.8672432+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T07:24:42.1560497+00:00 mx.event.write-complete {"SessionHandle":1,"ItemHandle":1,"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRespondingAutomationObject","Detail":0}]} +2026-04-25T07:24:42.2604950+00:00 mx.event.data-change {"SessionHandle":1,"ItemHandle":1,"Value":{"Type":"System.Int32","Value":"123456791"},"Quality":192,"Timestamp":{"Type":"System.String","Value":"4/25/2026 3:24:42.118 AM"},"Status":[{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}]} +2026-04-25T07:24:43.9116789+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:24:43.9149986+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:24:43.9149986+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:24:43.9149986+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T07:24:43.9153593+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T07:24:47.9984967+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T07:24:48.0035597+00:00 harness.stop {} diff --git a/captures/046-service-boundary-write-test-int-123456791/loopback.pcapng b/captures/046-service-boundary-write-test-int-123456791/loopback.pcapng new file mode 100644 index 0000000..29c4769 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/loopback.pcapng differ diff --git a/captures/046-service-boundary-write-test-int-123456791/pcap-summary.txt b/captures/046-service-boundary-write-test-int-123456791/pcap-summary.txt new file mode 100644 index 0000000..9bdc6ed --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/pcap-summary.txt @@ -0,0 +1,60 @@ +capture captures\046-service-boundary-write-test-int-123456791\loopback.pcapng +packets 6286 +ip_tcp_udp_packets 6286 +packets_with_payload 3068 + +top_ports +proto port packet_refs +TCP 57415 3860 +TCP 57433 3860 +TCP 49704 913 +TCP 57385 905 +TCP 80 240 +TCP 57608 172 +TCP 57631 172 +TCP 57470 172 +TCP 57477 172 +TCP 57746 150 +TCP 57484 150 +TCP 57747 150 +TCP 57485 150 +TCP 57684 148 +TCP 57745 148 +TCP 808 90 +UDP 1900 65 +UDP 5353 64 +TCP 55555 58 +TCP 1433 56 + +top_endpoints +proto src sport dst dport packets payload_packets payload_bytes +TCP 127.0.0.1 57415 127.0.0.1 57433 1945 986 20589 +TCP 127.0.0.1 57433 127.0.0.1 57415 1915 960 16628 +TCP ::1 49704 ::1 57385 453 226 8092 +TCP ::1 57385 ::1 49704 452 226 28026 +TCP 127.0.0.1 57608 127.0.0.1 57631 86 43 536 +TCP 127.0.0.1 57470 127.0.0.1 57477 86 43 536 +TCP 127.0.0.1 57477 127.0.0.1 57470 86 43 576 +TCP 127.0.0.1 57631 127.0.0.1 57608 86 43 576 +TCP 127.0.0.1 57746 127.0.0.1 57484 75 38 456 +TCP 127.0.0.1 57747 127.0.0.1 57485 75 38 456 +TCP 127.0.0.1 57484 127.0.0.1 57746 75 37 444 +TCP 127.0.0.1 57485 127.0.0.1 57747 75 37 444 +TCP 127.0.0.1 57684 127.0.0.1 57745 74 37 444 +TCP 127.0.0.1 57745 127.0.0.1 57684 74 37 444 +TCP ::1 57384 ::1 135 27 11 1452 +TCP ::1 135 ::1 57384 25 11 1408 +UDP fe80::3608:256c:365:cc73 64481 ff02::c 1900 24 24 7776 +TCP 127.0.0.1 49788 127.0.0.1 49787 21 21 21 +TCP 127.0.0.1 49787 127.0.0.1 49788 21 0 0 +UDP fde1:ae41:8a00:452a:bb41:ee7e:5fd4:dc18 64479 ff02::c 1900 17 17 5415 +TCP fe80::3608:256c:365:cc73 56877 fe80::3608:256c:365:cc73 808 16 9 1586 +TCP fe80::3608:256c:365:cc73 808 fe80::3608:256c:365:cc73 56877 16 7 353 +TCP fe80::3608:256c:365:cc73 61633 fe80::3608:256c:365:cc73 443 16 8 5632 +TCP fe80::3608:256c:365:cc73 443 fe80::3608:256c:365:cc73 61633 16 8 908 +TCP 10.100.0.48 49805 10.100.0.48 1433 12 6 696 +TCP 10.100.0.48 1433 10.100.0.48 49805 12 6 306 +UDP fde1:ae41:8a00:452a:5dd:2fa8:9db2:54d9 64480 ff02::c 1900 12 12 3888 +UDP 10.100.0.48 64482 239.255.255.250 1900 12 12 3984 +TCP ::1 57377 ::1 80 10 3 724 +TCP ::1 57383 ::1 80 10 3 696 diff --git a/captures/046-service-boundary-write-test-int-123456791/service-frida-events.tsv b/captures/046-service-boundary-write-test-int-123456791/service-frida-events.tsv new file mode 100644 index 0000000..a0c201f --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/service-frida-events.tsv @@ -0,0 +1,6220 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T07:24:28.682Z script.loaded [] +2026-04-25T07:24:28.683Z hook.installed NmxSvc.exe CFMCCallback.DataReceived [] +2026-04-25T07:24:28.683Z hook.installed NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine [] +2026-04-25T07:24:28.683Z hook.installed NmxSvc.exe CNmxControler.DataReceived [] +2026-04-25T07:24:28.684Z hook.installed NmxSvc.exe CNmxControler.TransferData [] +2026-04-25T07:24:28.684Z hook.installed NmxSvc.exe CNmxControler.LocalCallbackDataReceived [] +2026-04-25T07:24:28.684Z hook.installed NmxSvc.exe CNmxService.TransferData [] +2026-04-25T07:24:28.685Z hook.installed ws2_32.dll send [] +2026-04-25T07:24:28.685Z hook.installed ws2_32.dll recv [] +2026-04-25T07:24:28.686Z hook.installed ws2_32.dll sendto [] +2026-04-25T07:24:28.686Z hook.installed ws2_32.dll recvfrom [] +2026-04-25T07:24:28.769Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.769Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:28.769Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:28.769Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.769Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:28.769Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:28.778Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x27e700f5"",""0x23eefb0"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.778Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x27e700f5"",""0x23eefb0"",""0x5247c9c"",""0x5247bf8"",""0x7700459e""]" 1 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:28.787Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:28.795Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b5b54"",""0x0"",""0x27e701ad"",""0x51b5b54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.795Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b5b54"",""0x0"",""0x27e701ad"",""0x51b5b54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.795Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:28.795Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:28.796Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:28.796Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:28.804Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.804Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:28.804Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:28.804Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.804Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:28.804Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:28.809Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x27e700f5"",""0x23eefb0"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 0 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.809Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b283c"",""0x27e700f5"",""0x23eefb0"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 1 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:28.817Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b283c"",""0x0"",""0x27e70065"",""0x51b283c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:28.822Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b283c"",""0x0"",""0x27e701ad"",""0x51b283c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.822Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b283c"",""0x0"",""0x27e701ad"",""0x51b283c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b283c 01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.823Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:28.823Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:28.823Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:28.823Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:28.834Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.834Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:28.834Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:28.834Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.834Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:28.834Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:28.840Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.840Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:28.846Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:28.851Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.851Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:28.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:28.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:28.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:28.859Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:28.859Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:28.859Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:28.859Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:28.869Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x24a7042d"",""0x17eeb78"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.869Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f975c"",""0x24a7042d"",""0x17eeb78"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:28.878Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:28.882Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x24a705e5"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.882Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x24a705e5"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.882Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:28.883Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:28.883Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:28.883Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:28.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:28.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:28.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:28.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:28.917Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.917Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:28.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:28.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c021c"",""0x0"",""0x24a705e5"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c021c"",""0x0"",""0x24a705e5"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:28.929Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:28.930Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:28.930Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:28.930Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:28.948Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.948Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:28.948Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:28.948Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.948Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:28.948Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:28.953Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x24a7042d"",""0x17eeb78"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.953Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d1504"",""0x24a7042d"",""0x17eeb78"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:28.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d1504"",""0x0"",""0x24a7045d"",""0x18d1504"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:28.964Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x24a705e5"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.964Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d1504"",""0x0"",""0x24a705e5"",""0x18d1504"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d1504 01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:28.964Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:28.964Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:28.965Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:28.965Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.260Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.260Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.260Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.260Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.260Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.260Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.266Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.266Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.276Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.276Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.277Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.277Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.277Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.277Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.286Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.286Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.286Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.286Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.286Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.286Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.314Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.314Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.314Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.315Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.380Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.380Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.380Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.380Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.380Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.380Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x24a7042d"",""0x17eeb78"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 0 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18dbf54"",""0x24a7042d"",""0x17eeb78"",""0x18e9d2c"",""0x18e9c88"",""0x7700459e""]" 1 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a7045d"",""0x18dbf54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a705e5"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18dbf54"",""0x0"",""0x24a705e5"",""0x18dbf54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18dbf54 01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.401Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.401Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.401Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.401Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:29.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:29.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:29.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:29.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18de164"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:29.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:29.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18de164"",""0x0"",""0x27e701ad"",""0x18de164"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18de164"",""0x0"",""0x27e701ad"",""0x18de164"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18de164 01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.440Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.440Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.440Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.440Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.440Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.440Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.441Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.441Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.441Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.441Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.448Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x24a7042d"",""0x17eeb78"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.448Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51fa864"",""0x24a7042d"",""0x17eeb78"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.457Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.463Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51fa864"",""0x0"",""0x24a705e5"",""0x51fa864"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.463Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51fa864"",""0x0"",""0x24a705e5"",""0x51fa864"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51fa864 01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.464Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.464Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.464Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.464Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.496Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.496Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.496Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.496Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.496Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.496Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.501Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x24a7042d"",""0x17eeb78"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 0 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.501Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18d5924"",""0x24a7042d"",""0x17eeb78"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 1 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.507Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.512Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d5924"",""0x0"",""0x24a705e5"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.512Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d5924"",""0x0"",""0x24a705e5"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d5924 01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.512Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.512Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.512Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.513Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.773Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.773Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.773Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.773Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.773Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.773Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.782Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x24a7042d"",""0x17eeb78"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.782Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18212a4"",""0x24a7042d"",""0x17eeb78"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.792Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.798Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a705e5"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.798Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18212a4"",""0x0"",""0x24a705e5"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18212a4 01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.798Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.798Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.799Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.799Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.808Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.808Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.808Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.808Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.808Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.808Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.817Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.817Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18914e4"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.827Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.834Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18914e4"",""0x0"",""0x24a705e5"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.834Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18914e4"",""0x0"",""0x24a705e5"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18914e4 01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00 +2026-04-25T07:24:29.834Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.834Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.834Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.835Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.842Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.842Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:29.842Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:29.842Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.842Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:29.842Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:29.847Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x27e700f5"",""0x23eefb0"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.847Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523246c"",""0x27e700f5"",""0x23eefb0"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 1 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:29.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523246c"",""0x0"",""0x27e70065"",""0x523246c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:29.857Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523246c"",""0x0"",""0x27e701ad"",""0x523246c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.857Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523246c"",""0x0"",""0x27e701ad"",""0x523246c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523246c 01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.857Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.858Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.858Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.858Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:29.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:29.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:29.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:29.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x27e700f5"",""0x23eefb0"",""0x18ea2f4"",""0x18ea250"",""0x7700459e""]" 1 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:29.922Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:29.927Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18df26c"",""0x0"",""0x27e701ad"",""0x18df26c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.927Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18df26c"",""0x0"",""0x27e701ad"",""0x18df26c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:29.934Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.934Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.934Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.934Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.934Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:29.934Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:29.934Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.934Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.935Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.935Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:29.941Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.941Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 1 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:29.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:29.954Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c1324"",""0x0"",""0x24a705e5"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.954Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c1324"",""0x0"",""0x24a705e5"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:29.954Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:29.954Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:29.954Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:29.954Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.048Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.048Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:30.053Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:30.058Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.058Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.059Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.059Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.059Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.059Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.263Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.263Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.263Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.263Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.263Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.263Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182f00c"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:30.275Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182f00c"",""0x0"",""0x24a7045d"",""0x182f00c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:30.281Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182f00c"",""0x0"",""0x24a705e5"",""0x182f00c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.281Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182f00c"",""0x0"",""0x24a705e5"",""0x182f00c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182f00c 01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.282Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.282Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.282Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.282Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.292Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.292Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.292Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.292Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.292Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.292Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.299Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x24a7042d"",""0x17eeb78"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 0 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.299Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d5924"",""0x24a7042d"",""0x17eeb78"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 1 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:30.306Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d5924"",""0x0"",""0x24a7045d"",""0x18d5924"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:30.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d5924"",""0x0"",""0x24a705e5"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d5924"",""0x0"",""0x24a705e5"",""0x18d5924"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d5924 01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.313Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.313Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.313Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.313Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.367Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.367Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.367Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.367Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.367Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.367Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.372Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.372Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5231364"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:30.379Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5231364"",""0x0"",""0x24a7045d"",""0x5231364"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:30.384Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5231364"",""0x0"",""0x24a705e5"",""0x5231364"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.384Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5231364"",""0x0"",""0x24a705e5"",""0x5231364"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5231364 01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.392Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.392Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.392Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.392Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.392Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.392Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.393Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.393Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.394Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.394Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.401Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.401Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b7d64"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:30.408Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:30.412Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e701ad"",""0x51b7d64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.412Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e701ad"",""0x51b7d64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.422Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.423Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.423Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.429Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.429Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:30.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:30.441Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.441Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.441Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.441Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.441Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.442Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.442Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.455Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.455Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.455Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.455Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.455Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.455Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.465Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.465Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:30.475Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x27e70065"",""0x51f975c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:30.483Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x27e701ad"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.483Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x27e701ad"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.483Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.483Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.483Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.484Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.766Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x27e700f5"",""0x23eefb0"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.766Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b3704"",""0x27e700f5"",""0x23eefb0"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 1 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:30.773Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b3704"",""0x0"",""0x27e70065"",""0x18b3704"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:30.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b3704"",""0x0"",""0x27e701ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b3704"",""0x0"",""0x27e701ad"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b3704 01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.779Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.779Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.780Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.780Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.787Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.787Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.787Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.787Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.787Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.787Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.794Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x27e700f5"",""0x23eefb0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 0 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.794Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51b9f74"",""0x27e700f5"",""0x23eefb0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 1 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:30.800Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b9f74"",""0x0"",""0x27e70065"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:30.806Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b9f74"",""0x0"",""0x27e701ad"",""0x51b9f74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.806Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b9f74"",""0x0"",""0x27e701ad"",""0x51b9f74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b9f74 01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.814Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.814Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.814Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.814Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.814Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.814Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.814Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.814Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.815Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.815Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.820Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.820Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:30.826Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:30.831Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x24a705e5"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.831Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x24a705e5"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.831Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.831Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.831Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.831Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:30.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:30.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x24a7042d"",""0x17eeb78"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 0 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18d7b34"",""0x24a7042d"",""0x17eeb78"",""0x51bdef4"",""0x51bde50"",""0x7700459e""]" 1 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:30.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d7b34"",""0x0"",""0x24a7045d"",""0x18d7b34"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:30.932Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d7b34"",""0x0"",""0x24a705e5"",""0x18d7b34"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.932Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d7b34"",""0x0"",""0x24a705e5"",""0x18d7b34"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d7b34 01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:30.942Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.942Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.942Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.942Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.942Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:30.942Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:30.943Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.943Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.944Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.944Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:30.952Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.952Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:30.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:30.965Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.965Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:30.966Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:30.966Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:30.966Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:30.966Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.020Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.020Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.020Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.020Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.020Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.020Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.027Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x27e700f5"",""0x23eefb0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.027Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x27e700f5"",""0x23eefb0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 1 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.034Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x27e70065"",""0x1895904"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.039Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1895904"",""0x0"",""0x27e701ad"",""0x1895904"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.039Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1895904"",""0x0"",""0x27e701ad"",""0x1895904"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1895904 01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.039Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.039Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.039Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.039Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.268Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.272Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.272Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.273Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.273Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.273Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.273Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x27e700f5"",""0x23eefb0"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 0 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18d3714"",""0x27e700f5"",""0x23eefb0"",""0x51bcd9c"",""0x51bccf8"",""0x7700459e""]" 1 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18d3714"",""0x0"",""0x27e70065"",""0x18d3714"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d3714"",""0x0"",""0x27e701ad"",""0x18d3714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18d3714"",""0x0"",""0x27e701ad"",""0x18d3714"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18d3714 01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.300Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.300Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.301Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.301Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.359Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x27e700f5"",""0x23eefb0"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.359Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x27e700f5"",""0x23eefb0"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.365Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x27e70065"",""0x18234b4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.370Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x27e701ad"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.370Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x27e701ad"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:31.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:31.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:31.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:31.383Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.383Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.384Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.384Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.392Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x24a7042d"",""0x17eeb78"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 0 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.392Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182df04"",""0x24a7042d"",""0x17eeb78"",""0x51bd92c"",""0x51bd888"",""0x7700459e""]" 1 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:31.399Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182df04"",""0x0"",""0x24a7045d"",""0x182df04"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:31.404Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182df04"",""0x0"",""0x24a705e5"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.404Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182df04"",""0x0"",""0x24a705e5"",""0x182df04"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182df04 01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.412Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.412Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.412Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.412Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.419Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.419Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18de164"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.431Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18de164"",""0x0"",""0x27e701ad"",""0x18de164"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.431Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18de164"",""0x0"",""0x27e701ad"",""0x18de164"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18de164 01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00 +2026-04-25T07:24:31.432Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.432Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.432Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.432Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.461Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.461Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.461Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.461Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.461Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.461Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.467Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x27e700f5"",""0x23eefb0"",""0x51e821c"",""0x51e8178"",""0x7700459e""]" 0 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.467Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18367d4"",""0x27e700f5"",""0x23eefb0"",""0x51e821c"",""0x51e8178"",""0x7700459e""]" 1 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18367d4"",""0x0"",""0x27e70065"",""0x18367d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.477Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18367d4"",""0x0"",""0x27e701ad"",""0x18367d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.477Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18367d4"",""0x0"",""0x27e701ad"",""0x18367d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18367d4 01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.477Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.477Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.478Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.478Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.756Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.756Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.756Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.756Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.756Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.756Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.761Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.761Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.779Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.780Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.780Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.780Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.780Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.795Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.795Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.802Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.807Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.807Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.808Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.808Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.808Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.808Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.816Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.816Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:31.816Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:31.816Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.816Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:31.816Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:31.822Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x24a7042d"",""0x17eeb78"",""0x521880c"",""0x5218768"",""0x7700459e""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.822Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x523467c"",""0x24a7042d"",""0x17eeb78"",""0x521880c"",""0x5218768"",""0x7700459e""]" 1 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:31.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523467c"",""0x0"",""0x24a7045d"",""0x523467c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:31.834Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523467c"",""0x0"",""0x24a705e5"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.834Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523467c"",""0x0"",""0x24a705e5"",""0x523467c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523467c 01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.835Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.835Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.835Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.835Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:31.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:31.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:31.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:31.905Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.905Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c5744"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 1 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:31.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x24a7045d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:31.916Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c5744"",""0x0"",""0x24a705e5"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.916Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c5744"",""0x0"",""0x24a705e5"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:31.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:31.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:31.925Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.925Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.925Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.926Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:31.932Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.932Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:31.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:31.945Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18df26c"",""0x0"",""0x27e701ad"",""0x18df26c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.945Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18df26c"",""0x0"",""0x27e701ad"",""0x18df26c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:31.946Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:31.946Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:31.947Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:31.947Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.012Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.012Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.012Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.012Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.012Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.012Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.019Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x27e700f5"",""0x23eefb0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.019Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b8e6c"",""0x27e700f5"",""0x23eefb0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e70065"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.030Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e701ad"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.030Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b8e6c"",""0x0"",""0x27e701ad"",""0x51b8e6c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b8e6c 01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.030Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.030Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.030Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.031Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.264Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.264Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.264Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.264Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.264Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.264Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.271Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.271Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.278Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x27e70065"",""0x18278d4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.285Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.285Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x27e701ad"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.286Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.286Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.286Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.286Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.300Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.300Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18de164"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18de164"",""0x0"",""0x27e70065"",""0x18de164"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18de164"",""0x0"",""0x27e701ad"",""0x18de164"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.313Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18de164"",""0x0"",""0x27e701ad"",""0x18de164"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18de164 01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.314Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.314Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.314Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.314Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.344Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.344Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.344Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.344Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.344Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.344Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.357Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.357Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x5233574"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 1 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.373Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x5233574"",""0x0"",""0x27e70065"",""0x5233574"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.385Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5233574"",""0x0"",""0x27e701ad"",""0x5233574"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.385Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x5233574"",""0x0"",""0x27e701ad"",""0x5233574"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x5233574 01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.393Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.393Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:32.393Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:32.393Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.393Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:32.393Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:32.394Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.394Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.394Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.394Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.400Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.400Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:32.407Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:32.412Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.412Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.422Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.422Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.423Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.423Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.423Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.431Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.431Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18df26c"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18df26c"",""0x0"",""0x27e70065"",""0x18df26c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.443Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18df26c"",""0x0"",""0x27e701ad"",""0x18df26c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.443Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18df26c"",""0x0"",""0x27e701ad"",""0x18df26c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18df26c 01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.444Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.444Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.444Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.444Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.558Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.558Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.558Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.558Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.558Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.558Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.564Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x27e700f5"",""0x23eefb0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.564Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b7d64"",""0x27e700f5"",""0x23eefb0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 1 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.571Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e70065"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.576Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e701ad"",""0x51b7d64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.576Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b7d64"",""0x0"",""0x27e701ad"",""0x51b7d64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b7d64 01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.577Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.577Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.577Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.577Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.757Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.757Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.757Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.757Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.757Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.757Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.764Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.764Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.771Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.777Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b5b54"",""0x0"",""0x27e701ad"",""0x51b5b54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.777Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b5b54"",""0x0"",""0x27e701ad"",""0x51b5b54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.777Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.777Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.777Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.778Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.789Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18223ac"",""0x27e700f5"",""0x23eefb0"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.803Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x27e70065"",""0x18223ac"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.808Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.808Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x27e701ad"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.808Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.809Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.809Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.809Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.883Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.883Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.883Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.883Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.883Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:32.883Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:32.888Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.888Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:32.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x27e70065"",""0x51f312c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:32.899Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x27e701ad"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.899Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x27e701ad"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.907Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.907Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:32.907Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:32.907Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.907Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:32.907Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:32.907Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.907Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.908Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.915Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.915Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:32.915Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:32.915Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.915Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:32.915Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:32.916Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:32.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:32.932Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.932Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c463c 01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.933Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.933Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.933Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.933Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.940Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.940Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:32.950Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:32.956Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.956Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00 +2026-04-25T07:24:32.957Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:32.957Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:32.957Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:32.957Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:32.997Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.997Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:32.997Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:32.997Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:32.997Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:32.997Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.004Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x255c009d"",""0x85efc8"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.004Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c5744"",""0x255c009d"",""0x85efc8"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 1 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.011Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.016Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c5744"",""0x0"",""0x255c0055"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.016Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c5744"",""0x0"",""0x255c0055"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c5744 01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.016Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.016Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.017Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.017Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.261Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.261Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.261Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.261Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.261Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.261Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.267Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.267Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.277Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.286Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.286Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.286Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.286Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.287Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.287Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.296Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.296Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.296Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.296Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.296Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.296Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.303Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.303Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.309Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.315Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.315Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.326Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.326Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:33.326Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:33.326Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.326Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:33.326Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:33.327Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.327Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.327Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.327Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.334Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x24a7042d"",""0x17eeb78"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.334Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b9f74"",""0x24a7042d"",""0x17eeb78"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:33.340Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a7045d"",""0x51b9f74"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:33.345Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a705e5"",""0x51b9f74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.345Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b9f74"",""0x0"",""0x24a705e5"",""0x51b9f74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b9f74 01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.345Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.345Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.345Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.346Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:33.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:33.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:33.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:33.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:33.426Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:33.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.441Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.441Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.441Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.441Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.441Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.441Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.442Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.442Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.442Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.442Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.448Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.448Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.455Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.458Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.458Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.459Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.459Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.459Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.459Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.535Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.535Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.535Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.535Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.535Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.535Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.542Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x255c009d"",""0x85efc8"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.542Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x255c009d"",""0x85efc8"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 1 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.548Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.553Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1897b14"",""0x0"",""0x255c0055"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.553Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1897b14"",""0x0"",""0x255c0055"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.553Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.553Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.553Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.553Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.767Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.767Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.767Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.767Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.767Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.767Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.776Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.776Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.791Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.791Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.792Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.792Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.792Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.792Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.799Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.799Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.799Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.799Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.799Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.799Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.805Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.805Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.816Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.816Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1917074 01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.816Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.816Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.816Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.816Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.872Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.872Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.872Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.872Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.872Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.872Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.878Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x255c009d"",""0x85efc8"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 0 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.878Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182cdfc"",""0x255c009d"",""0x85efc8"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 1 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.884Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c000d"",""0x182cdfc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.889Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c0055"",""0x182cdfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.889Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182cdfc"",""0x0"",""0x255c0055"",""0x182cdfc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182cdfc 01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.896Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.896Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:33.896Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:33.896Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.896Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:33.896Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:33.896Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.897Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.897Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.897Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.903Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.903Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:33.911Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:33.917Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x24a705e5"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.917Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x24a705e5"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.924Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.925Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.925Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.925Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.925Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.932Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.932Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.939Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.946Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.946Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00 +2026-04-25T07:24:33.946Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.946Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.946Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.946Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:33.974Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.974Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.974Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.974Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.974Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:33.974Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:33.980Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x255c009d"",""0x85efc8"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 0 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.980Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b480c"",""0x255c009d"",""0x85efc8"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 1 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:33.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:33.992Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b480c"",""0x0"",""0x255c0055"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.992Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b480c"",""0x0"",""0x255c0055"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b480c 01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:33.992Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:33.992Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:33.992Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:33.993Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.252Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.252Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.252Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.252Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.252Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.252Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.258Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x255c009d"",""0x85efc8"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.258Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18b480c"",""0x255c009d"",""0x85efc8"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 1 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18b480c"",""0x0"",""0x255c000d"",""0x18b480c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.270Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b480c"",""0x0"",""0x255c0055"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.270Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18b480c"",""0x0"",""0x255c0055"",""0x18b480c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18b480c 01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.271Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.271Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.271Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.271Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.279Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.279Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.279Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.279Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.279Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.279Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.285Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.285Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18256c4"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x255c000d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.296Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x255c0055"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.296Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x255c0055"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.297Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.297Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.297Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.297Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.304Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.304Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:34.304Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:34.304Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.304Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:34.304Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:34.310Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x24a7042d"",""0x17eeb78"",""0x5249f4c"",""0x5249ea8"",""0x7700459e""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.310Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51b6c5c"",""0x24a7042d"",""0x17eeb78"",""0x5249f4c"",""0x5249ea8"",""0x7700459e""]" 1 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:34.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a7045d"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:34.322Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a705e5"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.322Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b6c5c"",""0x0"",""0x24a705e5"",""0x51b6c5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b6c5c 01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.323Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.323Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.323Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.323Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:34.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:34.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:34.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:34.418Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.418Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.418Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.418Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.418Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.418Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.423Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.423Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:34.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:34.434Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.434Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.435Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.435Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.435Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.435Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.441Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.441Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18223ac"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.452Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18223ac"",""0x0"",""0x255c0055"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.452Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18223ac"",""0x0"",""0x255c0055"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18223ac 01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.453Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.453Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.453Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.453Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.524Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.524Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.524Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.524Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.524Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.524Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.530Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.530Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.536Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.541Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.541Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.541Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.542Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.542Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.542Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.761Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.761Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.761Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.761Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.761Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.761Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.770Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.770Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.788Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.788Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.788Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.788Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.789Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.789Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.804Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.804Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.811Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.816Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1919284"",""0x0"",""0x255c0055"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.816Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1919284"",""0x0"",""0x255c0055"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1919284 01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00 +2026-04-25T07:24:34.817Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.817Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.817Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.817Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.849Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.849Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.849Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.849Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.849Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.849Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.855Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.855Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.861Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.866Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.866Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.873Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.873Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:34.873Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:34.873Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.873Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:34.873Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:34.874Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.874Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.874Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.875Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.884Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x24a7042d"",""0x17eeb78"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.884Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1897b14"",""0x24a7042d"",""0x17eeb78"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 1 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:34.894Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:34.902Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1897b14"",""0x0"",""0x24a705e5"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.902Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1897b14"",""0x0"",""0x24a705e5"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.902Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.903Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.903Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.903Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.917Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.917Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00 +2026-04-25T07:24:34.929Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.929Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.929Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.929Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:34.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:34.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:34.965Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x255c009d"",""0x85efc8"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.965Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1895904"",""0x255c009d"",""0x85efc8"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 1 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:34.975Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1895904"",""0x0"",""0x255c000d"",""0x1895904"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:34.980Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1895904"",""0x0"",""0x255c0055"",""0x1895904"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.980Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1895904"",""0x0"",""0x255c0055"",""0x1895904"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1895904 01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:34.981Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:34.981Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:34.981Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:34.981Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.255Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.255Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.255Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.255Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.255Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.255Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x255c009d"",""0x85efc8"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 0 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b7d64"",""0x255c009d"",""0x85efc8"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 1 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:35.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b7d64"",""0x0"",""0x255c000d"",""0x51b7d64"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:35.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b7d64"",""0x0"",""0x255c0055"",""0x51b7d64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b7d64"",""0x0"",""0x255c0055"",""0x51b7d64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b7d64 01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.273Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.273Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.273Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.273Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1912c54"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:35.296Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:35.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1912c54"",""0x0"",""0x255c0055"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1912c54"",""0x0"",""0x255c0055"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.307Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.307Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.307Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.307Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.307Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.307Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.308Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.308Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.308Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.308Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.314Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x24a7042d"",""0x17eeb78"",""0x521880c"",""0x5218768"",""0x7700459e""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.314Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x24a7042d"",""0x17eeb78"",""0x521880c"",""0x5218768"",""0x7700459e""]" 1 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:35.321Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x24a7045d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:35.326Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18925ec"",""0x0"",""0x24a705e5"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.326Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18925ec"",""0x0"",""0x24a705e5"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.327Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.327Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.327Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.327Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.397Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.397Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.397Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.397Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.397Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.397Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.403Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.403Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:35.409Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:35.414Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.414Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.414Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.414Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.414Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.414Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.426Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.426Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.426Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.426Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.426Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.426Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.436Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.436Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:35.447Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:35.453Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.453Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18278d4 01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.453Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.453Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.453Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.453Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.511Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.511Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.511Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.511Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.511Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.511Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.516Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.516Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:35.523Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:35.528Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.528Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1913d5c 01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.528Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.528Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.529Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.529Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.756Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.756Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18223ac"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:35.762Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18223ac"",""0x0"",""0x255c000d"",""0x18223ac"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:35.769Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x255c0055"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.769Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18223ac"",""0x0"",""0x255c0055"",""0x18223ac"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18223ac 01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.769Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.769Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.770Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.770Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.778Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.778Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.778Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.778Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.778Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.778Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.784Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x255c009d"",""0x85efc8"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.784Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1897b14"",""0x255c009d"",""0x85efc8"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 1 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:35.791Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x255c000d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:35.796Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1897b14"",""0x0"",""0x255c0055"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.796Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1897b14"",""0x0"",""0x255c0055"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.797Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.797Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.797Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.797Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:35.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:35.839Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.839Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18345c4"",""0x255c009d"",""0x85efc8"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:35.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18345c4"",""0x0"",""0x255c000d"",""0x18345c4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:35.851Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.851Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18345c4"",""0x0"",""0x255c0055"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18345c4 01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.858Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.858Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.859Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.859Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.859Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.864Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x24a7042d"",""0x17eeb78"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.864Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191817c"",""0x24a7042d"",""0x17eeb78"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:35.870Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x24a7045d"",""0x191817c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:35.874Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x24a705e5"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.874Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x24a705e5"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.875Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.875Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.875Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.875Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:35.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x24a7045d"",""0x182abec"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:35.931Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x24a705e5"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.931Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x24a705e5"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00 +2026-04-25T07:24:35.932Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.932Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.932Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.932Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:35.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:35.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:35.958Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x24a7042d"",""0x17eeb78"",""0x521880c"",""0x5218768"",""0x7700459e""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.958Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x24a7042d"",""0x17eeb78"",""0x521880c"",""0x5218768"",""0x7700459e""]" 1 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:35.966Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x24a7045d"",""0x18b3704"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:35.973Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b3704"",""0x0"",""0x24a705e5"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.973Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b3704"",""0x0"",""0x24a705e5"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:35.974Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:35.974Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:35.974Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:35.974Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.248Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.248Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:36.248Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:36.248Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.248Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:36.248Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:36.254Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x24a7042d"",""0x17eeb78"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.254Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x24a7042d"",""0x17eeb78"",""0x1925a44"",""0x19259a0"",""0x7700459e""]" 1 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:36.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:36.267Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1897b14"",""0x0"",""0x24a705e5"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.267Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1897b14"",""0x0"",""0x24a705e5"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.268Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.268Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.268Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.268Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.277Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.277Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:36.277Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:36.277Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.277Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:36.277Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:36.282Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x24a7042d"",""0x17eeb78"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.282Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1919284"",""0x24a7042d"",""0x17eeb78"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:36.289Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x24a7045d"",""0x1919284"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:36.294Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1919284"",""0x0"",""0x24a705e5"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.294Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1919284"",""0x0"",""0x24a705e5"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1919284 01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.295Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.295Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.295Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.295Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:36.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:36.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:36.382Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:36.389Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.389Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:36.396Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:36.402Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c3534"",""0x0"",""0x24a705e5"",""0x51c3534"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.402Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c3534"",""0x0"",""0x24a705e5"",""0x51c3534"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:36.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:36.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:36.409Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:36.410Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.410Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.410Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.410Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.423Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.423Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51b5b54"",""0x27e700f5"",""0x23eefb0"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:36.430Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51b5b54"",""0x0"",""0x27e70065"",""0x51b5b54"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:36.435Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b5b54"",""0x0"",""0x27e701ad"",""0x51b5b54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.435Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51b5b54"",""0x0"",""0x27e701ad"",""0x51b5b54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51b5b54 01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00 +2026-04-25T07:24:36.436Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.436Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.436Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.436Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.443Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.443Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:36.450Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:36.456Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.456Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.456Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.456Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.457Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.457Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.466Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.466Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.466Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.466Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.466Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.466Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.471Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.471Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:36.477Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:36.484Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.484Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.485Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.485Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.485Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.485Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.760Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.760Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.760Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.760Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.760Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.760Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.766Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.766Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:36.775Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:36.783Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.783Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.783Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.784Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.784Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.784Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.797Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.806Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.806Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:36.815Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:36.821Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.821Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1914e64 01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.828Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.828Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:36.828Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:36.828Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.828Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:36.828Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:36.828Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.828Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.828Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.828Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.834Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.834Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:36.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:36.845Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f4234"",""0x0"",""0x27e701ad"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.845Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f4234"",""0x0"",""0x27e701ad"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.845Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.846Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.846Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.846Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:36.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:36.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:36.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:36.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:36.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:36.938Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.938Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00 +2026-04-25T07:24:36.946Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.946Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.946Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.946Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.946Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:36.946Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:36.947Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.947Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.947Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.947Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:36.953Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.953Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:36.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:36.964Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.964Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:36.964Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:36.964Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:36.964Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:36.964Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.037Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.037Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.037Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.037Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.037Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.037Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.042Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.042Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.048Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.052Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.052Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.053Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.053Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.053Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.053Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.249Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.249Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.249Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.249Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.249Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.249Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.256Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.256Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.262Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.270Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.270Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18234b4 01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.271Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.272Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.272Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.272Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.280Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.280Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.280Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.280Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.280Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.280Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.286Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.286Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.292Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.297Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.297Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.297Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.297Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.298Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.298Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.365Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.365Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.365Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.365Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.365Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.365Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.371Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.371Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.376Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.381Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.381Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.388Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.388Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:37.388Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:37.388Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.388Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:37.388Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:37.388Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.389Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.389Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.389Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.394Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x27e700f5"",""0x23eefb0"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 0 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.394Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18d6a2c"",""0x27e700f5"",""0x23eefb0"",""0x51bd364"",""0x51bd2c0"",""0x7700459e""]" 1 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:37.400Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e70065"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:37.405Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e701ad"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.405Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18d6a2c"",""0x0"",""0x27e701ad"",""0x18d6a2c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18d6a2c 01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.414Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.414Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.414Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.414Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1913d5c"",""0x255c009d"",""0x85efc8"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.427Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1913d5c"",""0x0"",""0x255c000d"",""0x1913d5c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.432Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.432Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1913d5c"",""0x0"",""0x255c0055"",""0x1913d5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1913d5c 01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.432Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.432Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.432Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.433Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.479Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.479Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.479Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.479Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.479Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.479Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.486Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.486Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18278d4"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.495Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18278d4"",""0x0"",""0x255c000d"",""0x18278d4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.501Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.501Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18278d4"",""0x0"",""0x255c0055"",""0x18278d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18278d4 01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.502Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.502Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.502Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.503Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.754Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.754Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.754Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.754Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.754Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.754Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.760Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.760Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1912c54"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.767Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.772Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1912c54"",""0x0"",""0x255c0055"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.772Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1912c54"",""0x0"",""0x255c0055"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1912c54 01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.773Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.773Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.773Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.773Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.789Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x255c009d"",""0x85efc8"",""0x521880c"",""0x5218768"",""0x7700459e""]" 0 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.789Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c684c"",""0x255c009d"",""0x85efc8"",""0x521880c"",""0x5218768"",""0x7700459e""]" 1 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c684c"",""0x0"",""0x255c000d"",""0x51c684c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.801Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c684c"",""0x0"",""0x255c0055"",""0x51c684c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.801Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c684c"",""0x0"",""0x255c0055"",""0x51c684c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c684c 01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.802Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.802Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.802Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.802Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.818Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.818Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:37.818Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:37.818Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.818Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:37.818Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:37.824Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 0 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.824Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18b03ec"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 1 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:37.829Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e70065"",""0x18b03ec"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:37.835Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e701ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.835Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b03ec"",""0x0"",""0x27e701ad"",""0x18b03ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b03ec 01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.835Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.835Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.835Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.835Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:37.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:37.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:37.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:37.917Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x27e700f5"",""0x23eefb0"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 0 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.917Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191b494"",""0x27e700f5"",""0x23eefb0"",""0x1922c04"",""0x1922b60"",""0x7700459e""]" 1 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:37.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191b494"",""0x0"",""0x27e70065"",""0x191b494"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:37.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191b494"",""0x0"",""0x27e701ad"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191b494"",""0x0"",""0x27e701ad"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191b494 01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00 +2026-04-25T07:24:37.936Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.936Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.936Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.936Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.936Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:37.936Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:37.937Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.937Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.937Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.937Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:37.943Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.943Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:37.951Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:37.955Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.955Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:37.956Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:37.956Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:37.956Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:37.956Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.022Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.022Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.022Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.022Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.022Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.022Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.028Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.028Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1829ae4"",""0x255c009d"",""0x85efc8"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.036Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c000d"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.043Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c0055"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.043Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1829ae4"",""0x0"",""0x255c0055"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1829ae4 01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.044Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.044Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.044Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.044Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.265Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.265Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.272Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.278Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.278Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.278Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.278Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.278Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.278Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.287Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.287Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.287Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.287Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.287Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.287Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.295Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182bcf4"",""0x255c009d"",""0x85efc8"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.302Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x255c000d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.307Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x255c0055"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.307Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x255c0055"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.308Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.308Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.308Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.308Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.353Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:38.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:38.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:38.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:38.368Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.368Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1912c54"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x255c000d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.380Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1912c54"",""0x0"",""0x255c0055"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.380Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1912c54"",""0x0"",""0x255c0055"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.380Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.380Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.380Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.380Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.388Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:38.397Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x27e70065"",""0x51f4234"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:38.405Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f4234"",""0x0"",""0x27e701ad"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.405Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f4234"",""0x0"",""0x27e701ad"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.413Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.414Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.414Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.414Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191a38c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.428Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191a38c"",""0x0"",""0x255c000d"",""0x191a38c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.434Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.434Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191a38c"",""0x0"",""0x255c0055"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191a38c 01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.434Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.435Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.435Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.435Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.462Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.462Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.462Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.462Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.462Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.462Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.467Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.467Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1919284"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.473Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.479Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1919284"",""0x0"",""0x255c0055"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.479Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1919284"",""0x0"",""0x255c0055"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1919284 01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.479Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.480Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.480Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.480Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.758Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.758Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.758Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.758Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.758Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.758Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.767Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.767Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.777Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.785Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.785Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.786Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.786Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.786Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.786Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.799Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.799Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.805Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.810Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.810Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1917074 01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.810Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.810Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.810Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.811Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:38.899Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:38.913Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.913Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18234b4"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:38.930Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18234b4"",""0x0"",""0x255c000d"",""0x18234b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:38.943Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.943Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18234b4"",""0x0"",""0x255c0055"",""0x18234b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18234b4 01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.951Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.951Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:38.951Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:38.951Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.951Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:38.951Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:38.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:38.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:38.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:38.958Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:38.959Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.959Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.959Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.959Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.965Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x27e700f5"",""0x23eefb0"",""0x51bea84"",""0x51be9e0"",""0x7700459e""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.965Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18267cc"",""0x27e700f5"",""0x23eefb0"",""0x51bea84"",""0x51be9e0"",""0x7700459e""]" 1 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:38.971Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18267cc"",""0x0"",""0x27e70065"",""0x18267cc"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:38.976Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18267cc"",""0x0"",""0x27e701ad"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.976Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18267cc"",""0x0"",""0x27e701ad"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18267cc 01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:38.976Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.976Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.977Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.977Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:38.983Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.983Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:38.991Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:38.997Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.997Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00 +2026-04-25T07:24:38.997Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:38.998Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:38.998Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:38.998Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.013Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.013Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.013Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.013Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.013Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.013Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.018Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x24a7042d"",""0x17eeb78"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 0 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.018Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51b283c"",""0x24a7042d"",""0x17eeb78"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 1 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:39.025Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51b283c"",""0x0"",""0x24a7045d"",""0x51b283c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:39.029Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b283c"",""0x0"",""0x24a705e5"",""0x51b283c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.029Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51b283c"",""0x0"",""0x24a705e5"",""0x51b283c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51b283c 01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.030Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.030Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.030Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.030Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.261Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:39.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:39.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.273Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.273Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.274Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.274Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.288Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.288Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.288Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.288Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.288Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.288Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.296Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.296Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:39.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:39.311Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c242c"",""0x0"",""0x24a705e5"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.311Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c242c"",""0x0"",""0x24a705e5"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.312Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.312Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.312Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.312Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.341Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.341Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.341Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.341Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.341Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.341Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.352Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.352Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.352Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.352Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.352Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.352Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.363Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.363Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:39.371Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:39.377Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.377Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.377Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.377Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.378Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.378Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.386Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x27e700f5"",""0x23eefb0"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.386Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182bcf4"",""0x27e700f5"",""0x23eefb0"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:39.394Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e70065"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:39.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e701ad"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.400Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182bcf4"",""0x0"",""0x27e701ad"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182bcf4 01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.401Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.402Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.402Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.402Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.413Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.420Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x51bb67c"",""0x51bb5d8"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:39.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:39.436Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.436Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.436Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.436Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.436Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.436Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.457Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.457Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.457Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.457Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.457Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.457Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.468Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.468Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182019c"",""0x27e700f5"",""0x23eefb0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:39.479Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x27e70065"",""0x182019c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:39.487Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.487Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x27e701ad"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.488Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.488Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.488Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.488Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.804Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.804Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1829ae4"",""0x27e700f5"",""0x23eefb0"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:39.812Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1829ae4"",""0x0"",""0x27e70065"",""0x1829ae4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:39.821Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.821Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1829ae4"",""0x0"",""0x27e701ad"",""0x1829ae4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1829ae4 01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.821Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.821Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.821Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.821Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.831Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.831Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.831Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.831Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.831Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.831Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.837Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x27e700f5"",""0x23eefb0"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.837Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18345c4"",""0x27e700f5"",""0x23eefb0"",""0x52493bc"",""0x5249318"",""0x7700459e""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:39.845Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18345c4"",""0x0"",""0x27e70065"",""0x18345c4"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:39.850Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x27e701ad"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.850Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18345c4"",""0x0"",""0x27e701ad"",""0x18345c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18345c4 01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00 +2026-04-25T07:24:39.861Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.861Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.861Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.861Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.861Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.861Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.861Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.863Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.863Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.863Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.871Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x24a7042d"",""0x17eeb78"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.871Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f4234"",""0x24a7042d"",""0x17eeb78"",""0x51e9f04"",""0x51e9e60"",""0x7700459e""]" 1 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:39.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f4234"",""0x0"",""0x24a7045d"",""0x51f4234"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:39.892Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f4234"",""0x0"",""0x24a705e5"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.892Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f4234"",""0x0"",""0x24a705e5"",""0x51f4234"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f4234 01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.893Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.893Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.893Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.893Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c242c"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:39.925Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:39.932Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c242c"",""0x0"",""0x24a705e5"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.932Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c242c"",""0x0"",""0x24a705e5"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00 +2026-04-25T07:24:39.932Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.932Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.932Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.932Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.943Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.943Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.943Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.943Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.943Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:39.943Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:39.952Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x24a7042d"",""0x17eeb78"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.952Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51f312c"",""0x24a7042d"",""0x17eeb78"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:39.959Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f312c"",""0x0"",""0x24a7045d"",""0x51f312c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:39.963Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x24a705e5"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.963Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f312c"",""0x0"",""0x24a705e5"",""0x51f312c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f312c 01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.972Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.972Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.972Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.972Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.972Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:39.972Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:39.973Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.973Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.973Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.974Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:39.979Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 0 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.979Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x523025c"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 1 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:39.986Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x523025c"",""0x0"",""0x27e70065"",""0x523025c"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:39.992Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523025c"",""0x0"",""0x27e701ad"",""0x523025c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.992Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x523025c"",""0x0"",""0x27e701ad"",""0x523025c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x523025c 01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:39.993Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:39.993Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:39.993Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:39.993Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.259Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.259Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:40.259Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:40.259Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.259Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:40.259Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:40.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.269Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x27e700f5"",""0x23eefb0"",""0x5248df4"",""0x5248d50"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:40.281Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x27e70065"",""0x182abec"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:40.290Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x27e701ad"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.290Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x27e701ad"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.291Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.291Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.291Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.292Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.302Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.302Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:40.302Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:40.302Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.302Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:40.302Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:40.309Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x27e700f5"",""0x23eefb0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.309Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51bf114"",""0x27e700f5"",""0x23eefb0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:40.316Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x27e70065"",""0x51bf114"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:40.324Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x27e701ad"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.324Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x27e701ad"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.325Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.325Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.325Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.325Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.389Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.389Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:40.389Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:40.389Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.389Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:40.389Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:40.397Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.397Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:40.405Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:40.411Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1919284"",""0x0"",""0x27e701ad"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.411Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1919284"",""0x0"",""0x27e701ad"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.420Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.420Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:40.420Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:40.420Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.420Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:40.420Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:40.430Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.430Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.430Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.430Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.430Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.430Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.430Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.431Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.431Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.431Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.437Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.437Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:40.446Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:40.451Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.451Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.452Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.452Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.452Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.452Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.458Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.458Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18947fc"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 1 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:40.465Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:40.470Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18947fc"",""0x0"",""0x24a705e5"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.470Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18947fc"",""0x0"",""0x24a705e5"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.471Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.471Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.471Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.471Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.481Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.481Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.481Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.481Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.481Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.481Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.487Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x24a7042d"",""0x17eeb78"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.487Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1912c54"",""0x24a7042d"",""0x17eeb78"",""0x1923794"",""0x19236f0"",""0x7700459e""]" 1 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:40.493Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1912c54"",""0x0"",""0x24a7045d"",""0x1912c54"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:40.499Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1912c54"",""0x0"",""0x24a705e5"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.499Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1912c54"",""0x0"",""0x24a705e5"",""0x1912c54"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1912c54 01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.499Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.499Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.499Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.499Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.751Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.751Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.751Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.751Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.751Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.751Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.757Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.757Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51bf114"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:40.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51bf114"",""0x0"",""0x24a7045d"",""0x51bf114"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:40.769Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.769Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51bf114"",""0x0"",""0x24a705e5"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51bf114 01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.770Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.770Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.770Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.770Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.781Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.781Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.781Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.781Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.781Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.781Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.789Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.789Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c1324"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:40.796Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x24a7045d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:40.802Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c1324"",""0x0"",""0x24a705e5"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.802Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c1324"",""0x0"",""0x24a705e5"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.802Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.802Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.802Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.802Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.821Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.821Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.821Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.821Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.821Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:40.821Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:40.827Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.827Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x24a7042d"",""0x17eeb78"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:40.832Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:40.837Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c7954"",""0x0"",""0x24a705e5"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.837Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c7954"",""0x0"",""0x24a705e5"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.844Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.844Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:40.844Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:40.844Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.844Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:40.844Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:40.845Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.845Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.845Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.846Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.851Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.851Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1917074"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:40.857Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1917074"",""0x0"",""0x255c000d"",""0x1917074"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:40.861Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.861Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1917074"",""0x0"",""0x255c0055"",""0x1917074"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1917074 01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:40.862Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.862Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.862Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.862Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:40.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:40.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:40.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:40.920Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.920Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1919284"",""0x255c009d"",""0x85efc8"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:40.929Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1919284"",""0x0"",""0x255c000d"",""0x1919284"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:40.937Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1919284"",""0x0"",""0x255c0055"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.937Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1919284"",""0x0"",""0x255c0055"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1919284 01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00 +2026-04-25T07:24:40.938Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:40.938Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:40.938Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:40.938Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:40.942Z nmxsvc.enter NmxSvc.exe CNmxControler.LocalCallbackDataReceived 0x5db38eab "[""0x2209b38"",""0x666fea4"",""0x7508fcc9"",""0x2209b38"",""0x7508fcb0"",""0x666ff00"",""0x772482ae"",""0x2209b38"",""0x5c608fdb"",""0x0""]" +2026-04-25T07:24:41.049Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.049Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.049Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.049Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.049Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.049Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.063Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.063Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f533c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:41.079Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:41.091Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f533c"",""0x0"",""0x255c0055"",""0x51f533c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.091Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f533c"",""0x0"",""0x255c0055"",""0x51f533c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f533c 01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.092Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.092Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.093Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.093Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.186Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.186Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.186Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.186Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.186Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.186Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.196Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.196Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x51c1324"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:41.204Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x168"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:41.211Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x168"",""0x51c1324"",""0x0"",""0x255c0055"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.211Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x168"",""0x51c1324"",""0x0"",""0x255c0055"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 360 0x51c1324 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00 +2026-04-25T07:24:41.212Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.212Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.212Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.212Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 6 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.226Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 7 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.233Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.233Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.233Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 2 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.233Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x51c7954"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 3 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85efc4 f0 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85eff0 8c +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85efb8 7c +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 1 0x85f17c c4 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efc4 f0 +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85eff0 8c +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 10 1 0x85efb8 7c +2026-04-25T07:24:41.239Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x55"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 11 1 0x85f17c c4 +2026-04-25T07:24:41.244Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x51c7954"",""0x0"",""0x255c0055"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.244Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x51c7954"",""0x0"",""0x255c0055"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.244Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x51c7954"",""0x0"",""0x255c0055"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 85 0x51c7954 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:41.244Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x55"",""0x51c7954"",""0x0"",""0x255c0055"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 85 0x270001 00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00 +2026-04-25T07:24:41.245Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.245Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.245Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.245Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.271Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.271Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.271Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.271Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.271Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.271Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.277Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.277Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:41.283Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:41.288Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c1324"",""0x0"",""0x255c0055"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.288Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c1324"",""0x0"",""0x255c0055"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.289Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.289Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.289Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.289Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.298Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.298Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.298Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.298Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.298Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.298Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.305Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.305Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c242c"",""0x24a7042d"",""0x17eeb78"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:41.312Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c242c"",""0x0"",""0x24a7045d"",""0x51c242c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:41.317Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c242c"",""0x0"",""0x24a705e5"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.317Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c242c"",""0x0"",""0x24a705e5"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c242c 01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.329Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.329Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.329Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.329Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.329Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.329Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.329Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.330Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.330Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.330Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.341Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.341Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x5c"",""0x51c7954"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:41.351Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x5c"",""0x51c7954"",""0x0"",""0x255c000d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:41.356Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x5c"",""0x51c7954"",""0x0"",""0x255c0055"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.356Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x5c"",""0x51c7954"",""0x0"",""0x255c0055"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 92 0x51c7954 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 +2026-04-25T07:24:41.356Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.356Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.357Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.357Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 6 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.371Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 7 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.381Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 0 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.381Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 1 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.381Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 2 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.381Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x6c"",""0x18267cc"",""0x255c009d"",""0x85efc8"",""0x52170ec"",""0x5217048"",""0x7700459e""]" 3 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85efc4 f0 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85eff0 8c +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85efb8 7c +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 1 0x85f17c c4 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efc4 f0 +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85eff0 8c +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 10 1 0x85efb8 7c +2026-04-25T07:24:41.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x6c"",""0x18267cc"",""0x0"",""0x255c000d"",""0x18267cc"",""0x9effe8"",""0x1"",""0x85efc4""]" 11 1 0x85f17c c4 +2026-04-25T07:24:41.401Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.401Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.401Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 108 0x18267cc 01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07 +2026-04-25T07:24:41.401Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x6c"",""0x18267cc"",""0x0"",""0x255c0055"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 108 0x3e0001 63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74 +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 6 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.423Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 7 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.432Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.432Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 1 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:41.432Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 2 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:41.432Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 3 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.432Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 4 6 0x8ac17c 28 8b 88 00 10 00 +2026-04-25T07:24:41.432Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x206"",""0x6"",""0x8ac17c"",""0x23ef174""]" 5 6 0x888b28 b8 80 51 75 b8 6d +2026-04-25T07:24:41.439Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94fb44"",""0x62bf034""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.439Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94fb44"",""0x62bf034""]" 1 6 0x94fb44 30 89 88 00 10 00 +2026-04-25T07:24:41.439Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94fb44"",""0x62bf034""]" 2 6 0x888930 b8 80 51 75 b8 6d +2026-04-25T07:24:41.439Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94fb44"",""0x62bf034""]" 3 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.439Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94fb44"",""0x62bf034""]" 4 6 0x94fb44 30 89 88 00 10 00 +2026-04-25T07:24:41.439Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x206"",""0x6"",""0x94fb44"",""0x62bf034""]" 5 6 0x888930 b8 80 51 75 b8 6d +2026-04-25T07:24:41.439Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.439Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.439Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.440Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.461Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 0 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.461Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 1 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.461Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 2 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.461Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2c2"",""0x51c463c"",""0x24a7042d"",""0x17eeb78"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 3 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeb74 a0 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeba0 3c +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eeb68 2c +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 1 0x17eed2c 74 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb74 a0 +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eeba0 3c +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 10 1 0x17eeb68 2c +2026-04-25T07:24:41.478Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a7045d"",""0x51c463c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 11 1 0x17eed2c 74 +2026-04-25T07:24:41.493Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.493Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.493Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 706 0x51c463c 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 +2026-04-25T07:24:41.493Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2c2"",""0x51c463c"",""0x0"",""0x24a705e5"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 706 0x2940001 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65 +2026-04-25T07:24:41.501Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.501Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.501Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.501Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.501Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:41.501Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:41.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.508Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.509Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.509Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.509Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.515Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1919284"",""0x27e700f5"",""0x23eefb0"",""0x51e993c"",""0x51e9898"",""0x7700459e""]" 1 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 1 1 0x23eefac d8 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 2 1 0x23eefd8 74 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 3 1 0x23eefa0 64 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 4 1 0x23ef164 ac +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 5 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 6 1 0x23eefac d8 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 7 1 0x23eefd8 74 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 8 1 0x23eefa0 64 +2026-04-25T07:24:41.522Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1919284"",""0x0"",""0x27e70065"",""0x1919284"",""0x9effe8"",""0x1"",""0x23eefac""]" 9 1 0x23ef164 ac +2026-04-25T07:24:41.527Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1919284"",""0x0"",""0x27e701ad"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.527Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1919284"",""0x0"",""0x27e701ad"",""0x1919284"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1919284 01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 6 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.536Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 7 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.537Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.537Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.537Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.537Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.543Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x23f20135"",""0x62bee70"",""0x51bea84"",""0x51be9e0"",""0x7700459e""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.543Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191a38c"",""0x23f20135"",""0x62bee70"",""0x51bea84"",""0x51be9e0"",""0x7700459e""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 1 1 0x62bee6c 98 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 2 1 0x62bee98 34 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 3 1 0x62bee60 24 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 4 1 0x62bf024 6c +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 5 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 6 1 0x62bee6c 98 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 7 1 0x62bee98 34 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 8 1 0x62bee60 24 +2026-04-25T07:24:41.550Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202a5"",""0x191a38c"",""0x9effe8"",""0x1"",""0x62bee6c""]" 9 1 0x62bf024 6c +2026-04-25T07:24:41.555Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202ed"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.555Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191a38c"",""0x0"",""0x23f202ed"",""0x191a38c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191a38c 01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.555Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.555Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.556Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.556Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.563Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.563Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x255c009d"",""0x85efc8"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:41.570Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x255c000d"",""0x182019c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:41.575Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.575Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x255c0055"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00 +2026-04-25T07:24:41.575Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.575Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.576Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.576Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.581Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x23a401c5"",""0x67deea0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.581Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c242c"",""0x23a401c5"",""0x67deea0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:41.588Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:41.593Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c242c"",""0x0"",""0x23a402bd"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.593Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c242c"",""0x0"",""0x23a402bd"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.593Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.593Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.593Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.593Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.603Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 0 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.603Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 1 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.603Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 2 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.603Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x97"",""0x18947fc"",""0x24a7042d"",""0x17eeb78"",""0x5217c7c"",""0x5217bd8"",""0x7700459e""]" 3 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeb74 a0 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeba0 3c +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eeb68 2c +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 1 0x17eed2c 74 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb74 a0 +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eeba0 3c +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 10 1 0x17eeb68 2c +2026-04-25T07:24:41.613Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x97"",""0x18947fc"",""0x0"",""0x24a7045d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 11 1 0x17eed2c 74 +2026-04-25T07:24:41.619Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x18947fc"",""0x0"",""0x24a705e5"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.619Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x18947fc"",""0x0"",""0x24a705e5"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.619Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x18947fc"",""0x0"",""0x24a705e5"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 151 0x18947fc 01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00 +2026-04-25T07:24:41.619Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x97"",""0x18947fc"",""0x0"",""0x24a705e5"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 151 0x690001 00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00 +2026-04-25T07:24:41.619Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.620Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.620Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.620Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.699Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.699Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.699Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.699Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.699Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.699Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.705Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x23a401c5"",""0x67deea0"",""0x187cd14"",""0x187cc70"",""0x7700459e""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.705Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51bf114"",""0x23a401c5"",""0x67deea0"",""0x187cd14"",""0x187cc70"",""0x7700459e""]" 1 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:41.711Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51bf114"",""0x0"",""0x23a40175"",""0x51bf114"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:41.715Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51bf114"",""0x0"",""0x23a402bd"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.715Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51bf114"",""0x0"",""0x23a402bd"",""0x51bf114"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51bf114 01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.716Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.716Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.716Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.716Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.731Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.731Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.731Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.731Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.731Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.731Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.737Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x23a401c5"",""0x67deea0"",""0x187cd14"",""0x187cc70"",""0x7700459e""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.737Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c242c"",""0x23a401c5"",""0x67deea0"",""0x187cd14"",""0x187cc70"",""0x7700459e""]" 1 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:41.744Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c242c"",""0x0"",""0x23a40175"",""0x51c242c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:41.748Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c242c"",""0x0"",""0x23a402bd"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.748Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c242c"",""0x0"",""0x23a402bd"",""0x51c242c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c242c 01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.748Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.749Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.749Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.749Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.759Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.765Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x23a401c5"",""0x67deea0"",""0x51bbc44"",""0x51bbba0"",""0x7700459e""]" 0 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.765Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18301a4"",""0x23a401c5"",""0x67deea0"",""0x51bbc44"",""0x51bbba0"",""0x7700459e""]" 1 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:41.772Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18301a4"",""0x0"",""0x23a40175"",""0x18301a4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:41.777Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18301a4"",""0x0"",""0x23a402bd"",""0x18301a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.777Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18301a4"",""0x0"",""0x23a402bd"",""0x18301a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18301a4 01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.777Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.778Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.778Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.778Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.793Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.793Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.793Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.793Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.793Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.793Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.800Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.800Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c463c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 1 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:41.808Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c463c"",""0x0"",""0x23a40175"",""0x51c463c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:41.816Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c463c"",""0x0"",""0x23a402bd"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.816Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c463c"",""0x0"",""0x23a402bd"",""0x51c463c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c463c 01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.827Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.827Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.827Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.827Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.827Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.827Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.828Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.828Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.828Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.834Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x24a7042d"",""0x17eeb78"",""0x51bb0b4"",""0x51bb010"",""0x7700459e""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.834Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18289dc"",""0x24a7042d"",""0x17eeb78"",""0x51bb0b4"",""0x51bb010"",""0x7700459e""]" 1 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:41.840Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x24a7045d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:41.845Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18289dc"",""0x0"",""0x24a705e5"",""0x18289dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.845Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18289dc"",""0x0"",""0x24a705e5"",""0x18289dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.845Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.846Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.846Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.846Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.846Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:41.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:41.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x24a7042d"",""0x17eeb78"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.918Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1897b14"",""0x24a7042d"",""0x17eeb78"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:41.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1897b14"",""0x0"",""0x24a7045d"",""0x1897b14"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:41.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1897b14"",""0x0"",""0x24a705e5"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.929Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1897b14"",""0x0"",""0x24a705e5"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1897b14 01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00 +2026-04-25T07:24:41.939Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.939Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.939Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.939Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.939Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:41.939Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:41.939Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.940Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.940Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.940Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:41.946Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.946Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18914e4"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 1 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:41.952Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:41.956Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18914e4"",""0x0"",""0x23a402bd"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.956Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18914e4"",""0x0"",""0x23a402bd"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:41.957Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:41.957Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:41.957Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:41.957Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.021Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.021Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.021Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.021Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.021Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.021Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.026Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x23a401c5"",""0x67deea0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.026Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51c021c"",""0x23a401c5"",""0x67deea0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.032Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.036Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x23a402bd"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.036Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x23a402bd"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.037Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.037Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.037Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.037Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 6 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.080Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 7 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.086Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 0 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.086Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 1 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.086Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 2 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.086Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x18445cc"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 3 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67dee9c c8 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67deec8 64 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67dee90 54 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 1 0x67df054 9c +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee9c c8 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67deec8 64 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 10 1 0x67dee90 54 +2026-04-25T07:24:42.092Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x56"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 11 1 0x67df054 9c +2026-04-25T07:24:42.099Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18445cc"",""0x0"",""0x23a402bd"",""0x18445cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.099Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18445cc"",""0x0"",""0x23a402bd"",""0x18445cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.099Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18445cc"",""0x0"",""0x23a402bd"",""0x18445cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 86 0x18445cc 123456791@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00 +2026-04-25T07:24:42.099Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x56"",""0x18445cc"",""0x0"",""0x23a402bd"",""0x18445cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 86 0x280001 00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d +2026-04-25T07:24:42.099Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.099Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.099Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.100Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.125Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.125Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.125Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.125Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.125Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.125Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.130Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 0 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.130Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x33"",""0x182019c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 1 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.136Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x33"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.141Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x33"",""0x182019c"",""0x0"",""0x23a402bd"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.141Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x33"",""0x182019c"",""0x0"",""0x23a402bd"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 51 0x182019c 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00 +2026-04-25T07:24:42.141Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.141Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.141Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.142Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.154Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.154Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.154Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.154Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.154Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.154Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.163Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 0 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.163Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x58"",""0x18914e4"",""0x23a401c5"",""0x67deea0"",""0x187e434"",""0x187e390"",""0x7700459e""]" 1 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.172Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18914e4"",""0x0"",""0x23a40175"",""0x18914e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.178Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x18914e4"",""0x0"",""0x23a402bd"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.178Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x18914e4"",""0x0"",""0x23a402bd"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 88 0x18914e4 123456791@84 01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.178Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.178Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.178Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.179Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.190Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.190Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.190Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.190Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.190Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.190Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.200Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x23a401c5"",""0x67deea0"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 0 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.200Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x58"",""0x18467dc"",""0x23a401c5"",""0x67deea0"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 1 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.209Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x58"",""0x18467dc"",""0x0"",""0x23a40175"",""0x18467dc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.216Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x18467dc"",""0x0"",""0x23a402bd"",""0x18467dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.216Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x58"",""0x18467dc"",""0x0"",""0x23a402bd"",""0x18467dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 88 0x18467dc 123456791@84 01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07 +2026-04-25T07:24:42.217Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.217Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.217Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.218Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.242Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.242Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.242Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.242Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.242Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.242Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.247Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.247Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x5218244"",""0x52181a0"",""0x7700459e""]" 1 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.253Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.258Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.258Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.266Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.266Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.266Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.266Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.266Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.266Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.266Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.266Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.267Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.267Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.274Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.274Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.274Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.274Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.274Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.274Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.280Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x24a7042d"",""0x17eeb78"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 0 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.280Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18478e4"",""0x24a7042d"",""0x17eeb78"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 1 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:42.287Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18478e4"",""0x0"",""0x24a7045d"",""0x18478e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:42.292Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18478e4"",""0x0"",""0x24a705e5"",""0x18478e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.292Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18478e4"",""0x0"",""0x24a705e5"",""0x18478e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18478e4 01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.292Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.292Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.292Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.292Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.298Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.298Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:42.305Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:42.310Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.310Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.318Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.318Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.318Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.318Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.325Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x24a7042d"",""0x17eeb78"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.325Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x1896a0c"",""0x24a7042d"",""0x17eeb78"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 1 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:42.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:42.336Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1896a0c"",""0x0"",""0x24a705e5"",""0x1896a0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.336Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1896a0c"",""0x0"",""0x24a705e5"",""0x1896a0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.337Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.337Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.337Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.337Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.378Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x24a7042d"",""0x17eeb78"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.378Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c7954"",""0x24a7042d"",""0x17eeb78"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 1 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:42.395Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:42.429Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c7954"",""0x0"",""0x24a705e5"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.429Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c7954"",""0x0"",""0x24a705e5"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c7954 01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.465Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.465Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.465Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.465Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.465Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.465Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.465Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.465Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.465Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.466Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.481Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.481Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:42.496Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:42.504Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.504Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.504Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.505Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.505Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.505Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.517Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.517Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182019c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.531Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.545Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x23a402bd"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.545Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x23a402bd"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.545Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.546Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.546Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.546Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.615Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.615Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.615Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.615Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.615Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.615Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.623Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x23a401c5"",""0x67deea0"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.623Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18925ec"",""0x23a401c5"",""0x67deea0"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 1 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.629Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.633Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18925ec"",""0x0"",""0x23a402bd"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.633Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18925ec"",""0x0"",""0x23a402bd"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.634Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.634Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.634Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.634Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.772Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x23a401c5"",""0x67deea0"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.772Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c1324"",""0x23a401c5"",""0x67deea0"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 1 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.780Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c1324"",""0x0"",""0x23a40175"",""0x51c1324"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.786Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c1324"",""0x0"",""0x23a402bd"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.786Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c1324"",""0x0"",""0x23a402bd"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c1324 01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.786Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.786Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.786Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.786Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.794Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.800Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.800Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x23a401c5"",""0x67deea0"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.806Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x23a40175"",""0x182019c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.811Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x23a402bd"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.811Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x23a402bd"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.812Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.812Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.812Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.812Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.898Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.898Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.898Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.898Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.898Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:42.898Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:42.904Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x23a401c5"",""0x67deea0"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.904Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x23a401c5"",""0x67deea0"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:42.910Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x23a40175"",""0x18434c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:42.915Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18434c4"",""0x0"",""0x23a402bd"",""0x18434c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.915Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18434c4"",""0x0"",""0x23a402bd"",""0x18434c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.923Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.923Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.923Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.923Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.923Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:42.923Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:42.933Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.933Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.933Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.933Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.933Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.933Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.934Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.934Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.934Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.935Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.941Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x24a7042d"",""0x17eeb78"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.941Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x1896a0c"",""0x24a7042d"",""0x17eeb78"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 1 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:42.948Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x1896a0c"",""0x0"",""0x24a7045d"",""0x1896a0c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:42.954Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1896a0c"",""0x0"",""0x24a705e5"",""0x1896a0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.954Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x1896a0c"",""0x0"",""0x24a705e5"",""0x1896a0c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x1896a0c 01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00 +2026-04-25T07:24:42.955Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.955Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.955Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.955Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.960Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x255c009d"",""0x85efc8"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.960Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x255c009d"",""0x85efc8"",""0x5171f3c"",""0x5171e98"",""0x7700459e""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:42.967Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x255c000d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:42.971Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x255c0055"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.971Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x255c0055"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.972Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:42.972Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:42.972Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:42.972Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:42.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:42.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:42.988Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 0 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.988Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f8654"",""0x255c009d"",""0x85efc8"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 1 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:42.995Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f8654"",""0x0"",""0x255c000d"",""0x51f8654"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:42.999Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f8654"",""0x0"",""0x255c0055"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:42.999Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f8654"",""0x0"",""0x255c0055"",""0x51f8654"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f8654 01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.000Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.000Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.000Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.000Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.253Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.253Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.253Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.253Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.253Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.253Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.260Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x255c009d"",""0x85efc8"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.260Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18423bc"",""0x255c009d"",""0x85efc8"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.267Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18423bc"",""0x0"",""0x255c000d"",""0x18423bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18423bc"",""0x0"",""0x255c0055"",""0x18423bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.273Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18423bc"",""0x0"",""0x255c0055"",""0x18423bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18423bc 01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.274Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.274Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.274Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.274Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.282Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.299Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.299Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.299Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.300Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.300Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.300Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.337Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.337Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:43.337Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:43.337Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.337Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:43.337Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:43.344Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.344Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18434c4"",""0x24a7042d"",""0x17eeb78"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:43.350Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18434c4"",""0x0"",""0x24a7045d"",""0x18434c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:43.354Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18434c4"",""0x0"",""0x24a705e5"",""0x18434c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.354Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18434c4"",""0x0"",""0x24a705e5"",""0x18434c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18434c4 01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.362Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.363Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.363Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.364Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.364Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.374Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x255c009d"",""0x85efc8"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 0 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.374Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18412b4"",""0x255c009d"",""0x85efc8"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 1 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.384Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18412b4"",""0x0"",""0x255c000d"",""0x18412b4"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.392Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18412b4"",""0x0"",""0x255c0055"",""0x18412b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.392Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18412b4"",""0x0"",""0x255c0055"",""0x18412b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18412b4 01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.392Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.393Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.393Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.393Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.410Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.415Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.415Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.421Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.426Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.426Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.426Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.426Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.426Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.426Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.447Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.453Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.453Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51f975c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.459Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51f975c"",""0x0"",""0x255c000d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.464Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x255c0055"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.464Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51f975c"",""0x0"",""0x255c0055"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51f975c 01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.464Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.464Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.464Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.464Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.762Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.762Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.762Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.762Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.762Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.762Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.769Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x255c009d"",""0x85efc8"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.769Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x255c009d"",""0x85efc8"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 1 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.776Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.782Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18925ec"",""0x0"",""0x255c0055"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.782Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18925ec"",""0x0"",""0x255c0055"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.782Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.783Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.783Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.783Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.791Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.791Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.791Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.791Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.791Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.791Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.797Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x524aadc"",""0x524aa38"",""0x7700459e""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.804Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.809Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.809Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.809Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.810Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.810Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.810Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.882Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.882Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.882Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.882Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.882Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:43.882Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:43.888Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x255c009d"",""0x85efc8"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.888Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c1324"",""0x255c009d"",""0x85efc8"",""0x52176b4"",""0x5217610"",""0x7700459e""]" 1 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:43.897Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c1324"",""0x0"",""0x255c000d"",""0x51c1324"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:43.903Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c1324"",""0x0"",""0x255c0055"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.903Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c1324"",""0x0"",""0x255c0055"",""0x51c1324"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c1324 01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:43.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:43.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:43.912Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:43.912Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.914Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.914Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.914Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x23a401c5"",""0x67deea0"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 0 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.922Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18412b4"",""0x23a401c5"",""0x67deea0"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 1 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:43.931Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18412b4"",""0x0"",""0x23a40175"",""0x18412b4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:43.939Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18412b4"",""0x0"",""0x23a402bd"",""0x18412b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.939Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18412b4"",""0x0"",""0x23a402bd"",""0x18412b4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18412b4 01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00 +2026-04-25T07:24:43.939Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.940Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.940Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.940Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:43.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:43.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:43.950Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:43.958Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.958Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18212a4"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:43.968Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18212a4"",""0x0"",""0x24a7045d"",""0x18212a4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:43.974Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x24a705e5"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.974Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18212a4"",""0x0"",""0x24a705e5"",""0x18212a4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18212a4 01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:43.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:43.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:43.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:43.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:43.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:43.982Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:43.983Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:43.983Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:43.983Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:43.983Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:43.990Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x187de6c"",""0x187ddc8"",""0x7700459e""]" 0 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:43.990Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x68"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x187de6c"",""0x187ddc8"",""0x7700459e""]" 1 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:43.997Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x68"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:44.002Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x68"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:44.002Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x68"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 104 0x18936f4 01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00 +2026-04-25T07:24:44.010Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.010Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.010Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.010Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.010Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.010Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.010Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.010Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.011Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.011Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.016Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x24a7042d"",""0x17eeb78"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.016Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18914e4"",""0x24a7042d"",""0x17eeb78"",""0x5174d7c"",""0x5174cd8"",""0x7700459e""]" 1 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:44.024Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18914e4"",""0x0"",""0x24a7045d"",""0x18914e4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:44.029Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18914e4"",""0x0"",""0x24a705e5"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.029Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18914e4"",""0x0"",""0x24a705e5"",""0x18914e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18914e4 01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.030Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.030Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.030Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.030Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 6 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.042Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f3604"",""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 7 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.050Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.050Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.050Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 2 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.050Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x51f975c"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 3 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeb74 a0 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeba0 3c +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eeb68 2c +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 1 0x17eed2c 74 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb74 a0 +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eeba0 3c +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 10 1 0x17eeb68 2c +2026-04-25T07:24:44.060Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x53"",""0x51f975c"",""0x0"",""0x24a7045d"",""0x51f975c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 11 1 0x17eed2c 74 +2026-04-25T07:24:44.067Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x51f975c"",""0x0"",""0x24a705e5"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.067Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x51f975c"",""0x0"",""0x24a705e5"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.067Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x51f975c"",""0x0"",""0x24a705e5"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 2 83 0x51f975c 01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T07:24:44.067Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x53"",""0x51f975c"",""0x0"",""0x24a705e5"",""0x51f975c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 3 83 0x250001 02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00 +2026-04-25T07:24:44.075Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.075Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:44.075Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:44.075Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.075Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:44.075Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:44.076Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.076Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.076Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.076Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.083Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.083Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.083Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.083Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.083Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.083Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.089Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x23a401c5"",""0x67deea0"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 0 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.089Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18478e4"",""0x23a401c5"",""0x67deea0"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 1 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:44.095Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18478e4"",""0x0"",""0x23a40175"",""0x18478e4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:44.099Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18478e4"",""0x0"",""0x23a402bd"",""0x18478e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.099Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18478e4"",""0x0"",""0x23a402bd"",""0x18478e4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18478e4 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.100Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.100Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.100Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.100Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.106Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x255c009d"",""0x85efc8"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.106Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffb"",""0x2e"",""0x18947fc"",""0x255c009d"",""0x85efc8"",""0x51e7c54"",""0x51e7bb0"",""0x7700459e""]" 1 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:44.112Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18947fc"",""0x0"",""0x255c000d"",""0x18947fc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:44.117Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18947fc"",""0x0"",""0x255c0055"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.117Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18947fc"",""0x0"",""0x255c0055"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18947fc 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.117Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.118Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.118Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.118Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.125Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x0""]" 0 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:24:44.125Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x0""]" 1 2 0x70ec0005 00 00 +2026-04-25T07:24:44.125Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x0""]" 2 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:24:44.125Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x0""]" 3 2 0x70ec0005 00 00 +2026-04-25T07:24:44.125Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x0""]" 4 35 0x21f3c50 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:24:44.125Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x0""]" 5 35 0x1000116 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 0 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 1 81 0x17eea54 b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 2 81 0x17eeab0 20 eb 7e 01 7f 03 9c 00 f0 2b 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 3 1 0x17eea48 14 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 4 1 0x17eeb14 78 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 5 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 6 81 0x17eea54 b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 7 81 0x17eeab0 20 eb 7e 01 7f 03 9c 00 f0 2b 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 8 1 0x17eea48 14 +2026-04-25T07:24:44.132Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 9 1 0x17eeb14 78 +2026-04-25T07:24:44.137Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94e810"",""0x0"",""0x24a70601"",""0x94e810"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:24:44.137Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94e810"",""0x0"",""0x24a70601"",""0x94e810"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70 +2026-04-25T07:24:44.137Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.137Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.138Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.144Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x77260000""]" 0 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:24:44.144Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x77260000""]" 1 2 0x21f0005 f3 01 +2026-04-25T07:24:44.144Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x77260000""]" 2 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:24:44.144Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x77260000""]" 3 2 0x21f0005 f3 01 +2026-04-25T07:24:44.144Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x77260000""]" 4 35 0x21f3c50 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:24:44.144Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x51"",""0x94e810"",""0x24a7050d"",""0x17eea68"",""0x17eea90"",""0x2209b38"",""0x77260000""]" 5 35 0x1000116 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 0 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 1 81 0x17eea54 b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 2 81 0x17eeab0 20 eb 7e 01 7f 03 9c 00 20 33 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 3 1 0x17eea48 14 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 4 1 0x17eeb14 78 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 5 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 6 81 0x17eea54 b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 7 81 0x17eeab0 20 eb 7e 01 7f 03 9c 00 20 33 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 8 1 0x17eea48 14 +2026-04-25T07:24:44.152Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x51"",""0x94e810"",""0x0"",""0x24a706f9"",""0x94e810"",""0x70ec0110"",""0x51"",""0x17eea54""]" 9 1 0x17eeb14 78 +2026-04-25T07:24:44.157Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94e810"",""0x0"",""0x24a70601"",""0x94e810"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:24:44.157Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x51"",""0x94e810"",""0x0"",""0x24a70601"",""0x94e810"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 81 0x94e810 01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02 +2026-04-25T07:24:44.158Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.158Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.158Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.158Z nmxsvc.leave NmxSvc.exe CNmxControler.LocalCallbackDataReceived 0x0 [] +2026-04-25T07:24:44.254Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.254Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.254Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.254Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.254Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.254Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.259Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x24a7042d"",""0x17eeb78"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 0 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.259Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c8a5c"",""0x24a7042d"",""0x17eeb78"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 1 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:44.265Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a7045d"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:44.271Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a705e5"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.271Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c8a5c"",""0x0"",""0x24a705e5"",""0x51c8a5c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c8a5c 01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.271Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.271Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.271Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.271Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.281Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.281Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.281Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.281Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.281Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.281Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.288Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c7954"",""0x24a7042d"",""0x17eeb78"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:44.294Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c7954"",""0x0"",""0x24a7045d"",""0x51c7954"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:44.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c7954"",""0x0"",""0x24a705e5"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c7954"",""0x0"",""0x24a705e5"",""0x51c7954"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c7954 01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.300Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.300Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.300Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.301Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.324Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.324Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.324Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.324Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.324Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.324Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.332Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x24a7042d"",""0x17eeb78"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.332Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cdf84"",""0x24a7042d"",""0x17eeb78"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:44.338Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a7045d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:44.343Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a705e5"",""0x51cdf84"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.343Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cdf84"",""0x0"",""0x24a705e5"",""0x51cdf84"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51cdf84 01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.343Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.343Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.343Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.343Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.355Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.355Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.355Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.355Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.355Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.355Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.364Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.364Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x1914e64"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:44.372Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1914e64"",""0x0"",""0x255c000d"",""0x1914e64"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:44.377Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.377Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1914e64"",""0x0"",""0x255c0055"",""0x1914e64"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1914e64 01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.378Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.378Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.378Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.378Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.411Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.417Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:44.424Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:44.429Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.429Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.430Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.430Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.430Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.430Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.541Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.541Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.541Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.541Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.541Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.541Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.547Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x255c009d"",""0x85efc8"",""0x51ebc5c"",""0x51ebbb8"",""0x7700459e""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.547Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18289dc"",""0x255c009d"",""0x85efc8"",""0x51ebc5c"",""0x51ebbb8"",""0x7700459e""]" 1 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:44.554Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18289dc"",""0x0"",""0x255c000d"",""0x18289dc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:44.559Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18289dc"",""0x0"",""0x255c0055"",""0x18289dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.559Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18289dc"",""0x0"",""0x255c0055"",""0x18289dc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18289dc 01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.559Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.559Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.560Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.560Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.749Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.755Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x255c009d"",""0x85efc8"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.755Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18925ec"",""0x255c009d"",""0x85efc8"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 1 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:44.764Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18925ec"",""0x0"",""0x255c000d"",""0x18925ec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:44.769Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18925ec"",""0x0"",""0x255c0055"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.769Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18925ec"",""0x0"",""0x255c0055"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18925ec 01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.769Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.769Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.769Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.769Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.780Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.780Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.780Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.780Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.780Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.780Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.788Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 0 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.788Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51f533c"",""0x255c009d"",""0x85efc8"",""0x192600c"",""0x1925f68"",""0x7700459e""]" 1 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:44.795Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51f533c"",""0x0"",""0x255c000d"",""0x51f533c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:44.800Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f533c"",""0x0"",""0x255c0055"",""0x51f533c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.800Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51f533c"",""0x0"",""0x255c0055"",""0x51f533c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51f533c 01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00 +2026-04-25T07:24:44.801Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.801Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.801Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.801Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.868Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.868Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.868Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.868Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.868Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:44.868Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:44.874Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x255c009d"",""0x85efc8"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 0 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.874Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cce7c"",""0x255c009d"",""0x85efc8"",""0x51e768c"",""0x51e75e8"",""0x7700459e""]" 1 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:44.881Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c000d"",""0x51cce7c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:44.886Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c0055"",""0x51cce7c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.886Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cce7c"",""0x0"",""0x255c0055"",""0x51cce7c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51cce7c 01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.886Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.887Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.887Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.895Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.895Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.895Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.895Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.895Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:44.895Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:44.901Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x24a7042d"",""0x17eeb78"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.901Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c3534"",""0x24a7042d"",""0x17eeb78"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:44.908Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c3534"",""0x0"",""0x24a7045d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:44.915Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c3534"",""0x0"",""0x24a705e5"",""0x51c3534"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.915Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c3534"",""0x0"",""0x24a705e5"",""0x51c3534"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c3534 01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.915Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.915Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.915Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.916Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.925Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.925Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:44.925Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:44.925Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.925Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:44.925Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:44.931Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x23a401c5"",""0x67deea0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.931Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x23a401c5"",""0x67deea0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:44.938Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:44.943Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x23a402bd"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.943Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x23a402bd"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00 +2026-04-25T07:24:44.943Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.944Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.944Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.944Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.944Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:44.976Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.976Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:44.976Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:44.976Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.976Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:44.976Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:44.982Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x23a401c5"",""0x67deea0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.982Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x1897b14"",""0x23a401c5"",""0x67deea0"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:44.989Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x1897b14"",""0x0"",""0x23a40175"",""0x1897b14"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:44.995Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1897b14"",""0x0"",""0x23a402bd"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.995Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x1897b14"",""0x0"",""0x23a402bd"",""0x1897b14"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x1897b14 01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:44.995Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:44.996Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:44.996Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:44.996Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.257Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.267Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x23a401c5"",""0x67deea0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.267Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c021c"",""0x23a401c5"",""0x67deea0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:45.276Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:45.284Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c021c"",""0x0"",""0x23a402bd"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.284Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c021c"",""0x0"",""0x23a402bd"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.284Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.285Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.285Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.285Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.294Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.301Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x23a401c5"",""0x67deea0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.301Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18267cc"",""0x23a401c5"",""0x67deea0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:45.308Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:45.314Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18267cc"",""0x0"",""0x23a402bd"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.314Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18267cc"",""0x0"",""0x23a402bd"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.321Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.321Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.321Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.321Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.321Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.321Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.322Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.322Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.322Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.323Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.341Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.341Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x191b494"",""0x255c009d"",""0x85efc8"",""0x51e87e4"",""0x51e8740"",""0x7700459e""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:45.361Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191b494"",""0x0"",""0x255c000d"",""0x191b494"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:45.377Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.377Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191b494"",""0x0"",""0x255c0055"",""0x191b494"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191b494 01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.379Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.379Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.379Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.380Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.421Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.421Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.421Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.421Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.421Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.421Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.428Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.428Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:45.435Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:45.440Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.440Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.448Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.448Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.448Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.448Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.448Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.448Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.448Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.449Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.449Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.449Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.456Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x23a401c5"",""0x67deea0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.456Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x23a401c5"",""0x67deea0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:45.463Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x23a40175"",""0x51c021c"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:45.468Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x23a402bd"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.468Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x23a402bd"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.469Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.469Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.469Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.469Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.522Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.522Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.522Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.522Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.522Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.522Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.529Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x23a401c5"",""0x67deea0"",""0x521880c"",""0x5218768"",""0x7700459e""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.529Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18b3704"",""0x23a401c5"",""0x67deea0"",""0x521880c"",""0x5218768"",""0x7700459e""]" 1 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:45.535Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18b3704"",""0x0"",""0x23a40175"",""0x18b3704"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:45.540Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b3704"",""0x0"",""0x23a402bd"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.540Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18b3704"",""0x0"",""0x23a402bd"",""0x18b3704"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18b3704 01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.540Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.540Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.540Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.540Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.753Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.753Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.753Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.753Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.753Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.753Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.758Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x23a401c5"",""0x67deea0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.758Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x23a401c5"",""0x67deea0"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:45.766Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x23a40175"",""0x18256c4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:45.771Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x23a402bd"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.771Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x23a402bd"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.772Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.772Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.772Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.772Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.782Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.787Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x23a401c5"",""0x67deea0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 0 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.787Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18947fc"",""0x23a401c5"",""0x67deea0"",""0x5248264"",""0x52481c0"",""0x7700459e""]" 1 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:45.797Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18947fc"",""0x0"",""0x23a40175"",""0x18947fc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:45.802Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18947fc"",""0x0"",""0x23a402bd"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.802Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18947fc"",""0x0"",""0x23a402bd"",""0x18947fc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18947fc 01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.802Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.802Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.802Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.802Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.850Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.850Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.850Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.850Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.850Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:45.850Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:45.856Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x23a401c5"",""0x67deea0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.856Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x23a401c5"",""0x67deea0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:45.863Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:45.868Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a402bd"",""0x51cbd74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.868Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a402bd"",""0x51cbd74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.876Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.876Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.876Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.876Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.876Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.876Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.876Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.876Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.877Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.877Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.881Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.881Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51c021c"",""0x255c009d"",""0x85efc8"",""0x51e70c4"",""0x51e7020"",""0x7700459e""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:45.887Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51c021c"",""0x0"",""0x255c000d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:45.893Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x255c0055"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.893Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51c021c"",""0x0"",""0x255c0055"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51c021c 01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.893Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.893Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.893Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.893Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.910Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.916Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:45.923Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:45.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.928Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00 +2026-04-25T07:24:45.928Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.928Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.928Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.928Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:45.964Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.964Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.964Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.964Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.964Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:45.964Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:45.969Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.969Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:45.976Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:45.981Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.981Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x191817c 01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:45.981Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:45.982Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:45.982Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:45.982Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.250Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.250Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.250Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.250Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.250Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.250Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.256Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.256Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:46.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:46.269Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51cdf84"",""0x0"",""0x255c0055"",""0x51cdf84"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.269Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51cdf84"",""0x0"",""0x255c0055"",""0x51cdf84"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.270Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.270Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.270Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.270Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.292Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 0 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.292Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c3534"",""0x255c009d"",""0x85efc8"",""0x5172504"",""0x5172460"",""0x7700459e""]" 1 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:46.303Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c3534"",""0x0"",""0x255c000d"",""0x51c3534"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:46.310Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c3534"",""0x0"",""0x255c0055"",""0x51c3534"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.310Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c3534"",""0x0"",""0x255c0055"",""0x51c3534"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c3534 01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.317Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.319Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.319Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.319Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.324Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x23a401c5"",""0x67deea0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.324Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x23a401c5"",""0x67deea0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:46.331Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:46.335Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a402bd"",""0x51cbd74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.335Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a402bd"",""0x51cbd74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.336Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.336Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.336Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.337Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.337Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.394Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.394Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.394Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.394Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.394Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.394Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.399Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x23a401c5"",""0x67deea0"",""0x51e9374"",""0x51e92d0"",""0x7700459e""]" 0 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.399Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18445cc"",""0x23a401c5"",""0x67deea0"",""0x51e9374"",""0x51e92d0"",""0x7700459e""]" 1 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:46.406Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18445cc"",""0x0"",""0x23a40175"",""0x18445cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:46.409Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18445cc"",""0x0"",""0x23a402bd"",""0x18445cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.409Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18445cc"",""0x0"",""0x23a402bd"",""0x18445cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18445cc 01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.417Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.418Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.418Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.418Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.418Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.425Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.425Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x191817c"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:46.438Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x191817c"",""0x0"",""0x255c000d"",""0x191817c"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:46.443Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.443Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x191817c"",""0x0"",""0x255c0055"",""0x191817c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x191817c 01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00 +2026-04-25T07:24:46.444Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.444Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.445Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.445Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.508Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.514Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.514Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:46.520Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:46.525Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.525Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182abec 01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.525Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.525Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.525Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.526Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.763Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.763Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.763Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.763Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.763Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.763Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.773Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x255c009d"",""0x85efc8"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 0 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.773Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51c5744"",""0x255c009d"",""0x85efc8"",""0x5175344"",""0x51752a0"",""0x7700459e""]" 1 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:46.783Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c5744"",""0x0"",""0x255c000d"",""0x51c5744"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:46.791Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c5744"",""0x0"",""0x255c0055"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.791Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c5744"",""0x0"",""0x255c0055"",""0x51c5744"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c5744 01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.791Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.791Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.792Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.792Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.803Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.803Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.803Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.803Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.803Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.803Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.812Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 0 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.812Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x18245bc"",""0x255c009d"",""0x85efc8"",""0x51ed944"",""0x51ed8a0"",""0x7700459e""]" 1 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:46.822Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18245bc"",""0x0"",""0x255c000d"",""0x18245bc"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:46.829Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18245bc"",""0x0"",""0x255c0055"",""0x18245bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.829Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18245bc"",""0x0"",""0x255c0055"",""0x18245bc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18245bc 01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.837Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.837Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.837Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.837Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.837Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.837Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.837Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.838Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.838Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.838Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.844Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.844Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 1 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:46.852Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:46.858Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.858Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.858Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.858Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.858Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.858Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.911Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.919Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x23a401c5"",""0x67deea0"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 0 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.919Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18456d4"",""0x23a401c5"",""0x67deea0"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 1 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:46.928Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18456d4"",""0x0"",""0x23a40175"",""0x18456d4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:46.934Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18456d4"",""0x0"",""0x23a402bd"",""0x18456d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.934Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18456d4"",""0x0"",""0x23a402bd"",""0x18456d4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18456d4 01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00 +2026-04-25T07:24:46.935Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.935Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.935Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.935Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.949Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.949Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.949Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.949Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.949Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:46.949Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:46.956Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x23a401c5"",""0x67deea0"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.956Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18925ec"",""0x23a401c5"",""0x67deea0"",""0x187c74c"",""0x187c6a8"",""0x7700459e""]" 1 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:46.963Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18925ec"",""0x0"",""0x23a40175"",""0x18925ec"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:46.969Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18925ec"",""0x0"",""0x23a402bd"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.969Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18925ec"",""0x0"",""0x23a402bd"",""0x18925ec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18925ec 01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.984Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.984Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.984Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.984Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.984Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:46.984Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:46.985Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:46.985Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:46.985Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:46.985Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:46.990Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x255c009d"",""0x85efc8"",""0x51edf0c"",""0x51ede68"",""0x7700459e""]" 0 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.990Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fca74"",""0x255c009d"",""0x85efc8"",""0x51edf0c"",""0x51ede68"",""0x7700459e""]" 1 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:46.996Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fca74"",""0x0"",""0x255c000d"",""0x51fca74"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:47.001Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51fca74"",""0x0"",""0x255c0055"",""0x51fca74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.001Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51fca74"",""0x0"",""0x255c0055"",""0x51fca74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51fca74 01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.002Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.002Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.002Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.002Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:47.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:47.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:47.256Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:47.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.262Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x51cdf84"",""0x255c009d"",""0x85efc8"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:47.269Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51cdf84"",""0x0"",""0x255c000d"",""0x51cdf84"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:47.275Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51cdf84"",""0x0"",""0x255c0055"",""0x51cdf84"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.275Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51cdf84"",""0x0"",""0x255c0055"",""0x51cdf84"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51cdf84 01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.275Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.276Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.276Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.276Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.284Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.284Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:47.284Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:47.284Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.284Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:47.284Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:47.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.289Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182abec"",""0x255c009d"",""0x85efc8"",""0x51e8dac"",""0x51e8d08"",""0x7700459e""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:47.295Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182abec"",""0x0"",""0x255c000d"",""0x182abec"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:47.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.300Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182abec"",""0x0"",""0x255c0055"",""0x182abec"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182abec 01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.301Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.301Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.301Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.301Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.381Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.381Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 1 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:47.381Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 2 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:47.381Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 3 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.381Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 4 6 0x94f0dc 70 8e 88 00 10 00 +2026-04-25T07:24:47.381Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x94f0dc"",""0x85f18c""]" 5 6 0x888e70 b8 80 51 75 b8 6d +2026-04-25T07:24:47.386Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x255c009d"",""0x85efc8"",""0x51eb694"",""0x51eb5f0"",""0x7700459e""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.386Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51fa864"",""0x255c009d"",""0x85efc8"",""0x51eb694"",""0x51eb5f0"",""0x7700459e""]" 1 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 1 1 0x85efc4 f0 +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 2 1 0x85eff0 8c +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 3 1 0x85efb8 7c +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 4 1 0x85f17c c4 +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 5 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 6 1 0x85efc4 f0 +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 7 1 0x85eff0 8c +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 8 1 0x85efb8 7c +2026-04-25T07:24:47.392Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x255c000d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x85efc4""]" 9 1 0x85f17c c4 +2026-04-25T07:24:47.396Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51fa864"",""0x0"",""0x255c0055"",""0x51fa864"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.396Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51fa864"",""0x0"",""0x255c0055"",""0x51fa864"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.404Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.404Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:47.404Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:47.404Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.404Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:47.404Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:47.404Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.404Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.404Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.416Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.416Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.416Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.416Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.416Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.416Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.416Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.423Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x51edf0c"",""0x51ede68"",""0x7700459e""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.423Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18936f4"",""0x23a401c5"",""0x67deea0"",""0x51edf0c"",""0x51ede68"",""0x7700459e""]" 1 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:47.429Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18936f4"",""0x0"",""0x23a40175"",""0x18936f4"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:47.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.433Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18936f4"",""0x0"",""0x23a402bd"",""0x18936f4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18936f4 01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.434Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.434Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.434Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.434Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.441Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.441Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18256c4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:47.449Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:47.456Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x24a705e5"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.456Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18256c4"",""0x0"",""0x24a705e5"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18256c4 01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.456Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.456Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.456Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.457Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.490Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.490Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.490Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.490Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.490Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.490Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.496Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x24a7042d"",""0x17eeb78"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.496Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x51fa864"",""0x24a7042d"",""0x17eeb78"",""0x5172acc"",""0x5172a28"",""0x7700459e""]" 1 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:47.501Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51fa864"",""0x0"",""0x24a7045d"",""0x51fa864"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:47.506Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51fa864"",""0x0"",""0x24a705e5"",""0x51fa864"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.506Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51fa864"",""0x0"",""0x24a705e5"",""0x51fa864"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51fa864 01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.506Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.507Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.507Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.507Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.764Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.774Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.774Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:47.786Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:47.795Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.795Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.796Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.796Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.796Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.796Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.807Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.807Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.807Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.807Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.807Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.807Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.813Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x24a7042d"",""0x17eeb78"",""0x51ecdb4"",""0x51ecd10"",""0x7700459e""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.813Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x51c021c"",""0x24a7042d"",""0x17eeb78"",""0x51ecdb4"",""0x51ecd10"",""0x7700459e""]" 1 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:47.821Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x51c021c"",""0x0"",""0x24a7045d"",""0x51c021c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:47.826Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c021c"",""0x0"",""0x24a705e5"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.826Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x51c021c"",""0x0"",""0x24a705e5"",""0x51c021c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x51c021c 01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:47.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:47.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:47.833Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:47.833Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.834Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.834Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.834Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.843Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x23a401c5"",""0x67deea0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.843Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x51cbd74"",""0x23a401c5"",""0x67deea0"",""0x517590c"",""0x5175868"",""0x7700459e""]" 1 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:47.849Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a40175"",""0x51cbd74"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:47.854Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a402bd"",""0x51cbd74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.854Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x51cbd74"",""0x0"",""0x23a402bd"",""0x51cbd74"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x51cbd74 01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.854Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.855Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.855Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.855Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 1 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:47.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 2 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:47.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 3 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 4 6 0x8f625c d8 89 88 00 10 00 +2026-04-25T07:24:47.909Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x126cdc4"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x206"",""0x6"",""0x8f625c"",""0x67df064""]" 5 6 0x8889d8 b8 80 51 75 b8 6d +2026-04-25T07:24:47.915Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x23a401c5"",""0x67deea0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.915Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x18267cc"",""0x23a401c5"",""0x67deea0"",""0x524710c"",""0x5247068"",""0x7700459e""]" 1 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 1 1 0x67dee9c c8 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 2 1 0x67deec8 64 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 3 1 0x67dee90 54 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 4 1 0x67df054 9c +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 5 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 6 1 0x67dee9c c8 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 7 1 0x67deec8 64 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 8 1 0x67dee90 54 +2026-04-25T07:24:47.924Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x18267cc"",""0x0"",""0x23a40175"",""0x18267cc"",""0x9effe8"",""0x1"",""0x67dee9c""]" 9 1 0x67df054 9c +2026-04-25T07:24:47.930Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18267cc"",""0x0"",""0x23a402bd"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.930Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x18267cc"",""0x0"",""0x23a402bd"",""0x18267cc"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x18267cc 01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00 +2026-04-25T07:24:47.940Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.940Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.940Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.940Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.940Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:47.940Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:47.941Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.941Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.941Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.949Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x24a7042d"",""0x17eeb78"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.949Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x182019c"",""0x24a7042d"",""0x17eeb78"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:47.958Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:47.959Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:47.964Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x24a705e5"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.964Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x182019c"",""0x0"",""0x24a705e5"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x182019c 01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:47.965Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:47.965Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:47.965Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:47.965Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:48.039Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.039Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.039Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.039Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.039Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.039Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f47ac"",""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.044Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.044Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x2"",""0x2e"",""0x18256c4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 1 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:48.050Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:48.056Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18256c4"",""0x0"",""0x24a705e5"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.056Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18256c4"",""0x0"",""0x24a705e5"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.056Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:48.056Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:48.056Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:48.057Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:48.251Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.251Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.251Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.251Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.251Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.251Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.257Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.257Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffd"",""0x62"",""0x182bcf4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:48.264Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182bcf4"",""0x0"",""0x24a7045d"",""0x182bcf4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:48.269Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.269Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182bcf4"",""0x0"",""0x24a705e5"",""0x182bcf4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182bcf4 01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.270Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:48.270Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:48.270Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:48.270Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:48.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.278Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x1269e84"",""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.285Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x24a7042d"",""0x17eeb78"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.285Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x7ffe"",""0x62"",""0x182019c"",""0x24a7042d"",""0x17eeb78"",""0x51eaa94"",""0x51ea9f0"",""0x7700459e""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:48.291Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x62"",""0x182019c"",""0x0"",""0x24a7045d"",""0x182019c"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:48.297Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x24a705e5"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.297Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x62"",""0x182019c"",""0x0"",""0x24a705e5"",""0x182019c"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 98 0x182019c 01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00 +2026-04-25T07:24:48.297Z nmxsvc.leave NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x0 [] +2026-04-25T07:24:48.297Z nmxsvc.leave NmxSvc.exe CNmxControler.DataReceived 0x0 [] +2026-04-25T07:24:48.297Z nmxsvc.leave NmxSvc.exe CNmxControler.TransferData 0x0 [] +2026-04-25T07:24:48.298Z nmxsvc.leave NmxSvc.exe CNmxService.TransferData 0x0 [] +2026-04-25T07:24:48.363Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.363Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 1 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.363Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 2 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.363Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 3 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.363Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 4 6 0x900184 90 86 88 00 10 00 +2026-04-25T07:24:48.363Z nmxsvc.enter NmxSvc.exe CNmxService.TransferData 0x9c1b20 "[""0x21f2b0c"",""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x206"",""0x6"",""0x900184"",""0x17eed3c""]" 5 6 0x888690 b8 80 51 75 b8 6d +2026-04-25T07:24:48.369Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.369Z nmxsvc.enter NmxSvc.exe CNmxControler.TransferData 0x9effe8 "[""0x1"",""0x1"",""0x1"",""0x2e"",""0x18256c4"",""0x24a7042d"",""0x17eeb78"",""0x187e9fc"",""0x187e958"",""0x7700459e""]" 1 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 1 1 0x17eeb74 a0 +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 2 1 0x17eeba0 3c +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 3 1 0x17eeb68 2c +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 4 1 0x17eed2c 74 +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 5 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 6 1 0x17eeb74 a0 +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 7 1 0x17eeba0 3c +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 8 1 0x17eeb68 2c +2026-04-25T07:24:48.375Z nmxsvc.enter NmxSvc.exe CNmxControler.DataReceived 0x9effe8 "[""0x1"",""0x1200"",""0x2e"",""0x18256c4"",""0x0"",""0x24a7045d"",""0x18256c4"",""0x9effe8"",""0x1"",""0x17eeb74""]" 9 1 0x17eed2c 74 +2026-04-25T07:24:48.380Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18256c4"",""0x0"",""0x24a705e5"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 0 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 +2026-04-25T07:24:48.380Z nmxsvc.enter NmxSvc.exe CNmxControler.ProcessDataReceivedForEngine 0x9effe8 "[""0x1"",""0x2e"",""0x18256c4"",""0x0"",""0x24a705e5"",""0x18256c4"",""0x9effe8"",""0x1"",""0xffffffff"",""0x70fe2dc6""]" 1 46 0x18256c4 01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00 diff --git a/captures/046-service-boundary-write-test-int-123456791/service-frida.stderr.txt b/captures/046-service-boundary-write-test-int-123456791/service-frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/046-service-boundary-write-test-int-123456791/service-frida.stdout.jsonl b/captures/046-service-boundary-write-test-int-123456791/service-frida.stdout.jsonl new file mode 100644 index 0000000..ae4ab66 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/service-frida.stdout.jsonl @@ -0,0 +1,2073 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Attaching... +{"event":"script.loaded","process":13944,"arch":"ia32","pointerSize":4,"time":"2026-04-25T07:24:28.682Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CFMCCallback.DataReceived","base":"0x9a0000","rva":"0x5be1","address":"0x9a5be1","time":"2026-04-25T07:24:28.683Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","base":"0x9a0000","rva":"0x1807f","address":"0x9b807f","time":"2026-04-25T07:24:28.683Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","base":"0x9a0000","rva":"0x1d910","address":"0x9bd910","time":"2026-04-25T07:24:28.683Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.TransferData","base":"0x9a0000","rva":"0x1dcb5","address":"0x9bdcb5","time":"2026-04-25T07:24:28.684Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","base":"0x9a0000","rva":"0x1eea5","address":"0x9beea5","time":"2026-04-25T07:24:28.684Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxService.TransferData","base":"0x9a0000","rva":"0x21b20","address":"0x9c1b20","time":"2026-04-25T07:24:28.684Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"send","address":"0x766158a0","time":"2026-04-25T07:24:28.685Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"recv","address":"0x766123a0","time":"2026-04-25T07:24:28.685Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"sendto","address":"0x76616160","time":"2026-04-25T07:24:28.686Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"recvfrom","address":"0x76615ab0","time":"2026-04-25T07:24:28.686Z"} +[Local::PID::13944 ]-> {"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5247ca0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:28.769Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x51b5b54","0x27e700f5","0x23eefb0","0x5247c9c","0x5247bf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x27e700f5","0x23eefb0","0x5247c9c","0x5247bf8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:28.778Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51b5b54","0x0","0x27e70065","0x51b5b54","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b5b54","0x0","0x27e70065","0x51b5b54","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:28.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51b5b54","0x0","0x27e701ad","0x51b5b54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b5b54","0x0","0x27e701ad","0x51b5b54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b5b54","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:28.795Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:28.795Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:28.795Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.796Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51b283c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51b283c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x52493c0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:28.804Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x51b283c","0x27e700f5","0x23eefb0","0x52493bc","0x5249318","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51b283c","0x27e700f5","0x23eefb0","0x52493bc","0x5249318","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:28.809Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51b283c","0x0","0x27e70065","0x51b283c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b283c","0x0","0x27e70065","0x51b283c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:28.817Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51b283c","0x0","0x27e701ad","0x51b283c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b283c","0x0","0x27e701ad","0x51b283c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b283c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b283c","hex":"01 00 34 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 06 61 8d 84 d4 dc 01 06 0a 00 00 00 b0 06 61 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:28.822Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:28.823Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:28.823Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.823Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.823Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:28.834Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x51e8dac","0x51e8d08","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:28.840Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:28.846Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 6c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:28.851Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51f975c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51f975c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:28.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:28.859Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:28.859Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.859Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.859Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51f975c","0x24a7042d","0x17eeb78","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f975c","0x24a7042d","0x17eeb78","0x51bd92c","0x51bd888","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:28.869Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51f975c","0x0","0x24a7045d","0x51f975c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f975c","0x0","0x24a7045d","0x51f975c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:28.878Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51f975c","0x0","0x24a705e5","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f975c","0x0","0x24a705e5","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f975c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 6b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:28.882Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:28.882Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:28.883Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.883Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.883Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c021c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c021c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:28.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x51c021c","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c021c","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:28.917Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c021c","0x0","0x24a7045d","0x51c021c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c021c","0x0","0x24a7045d","0x51c021c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:28.924Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c021c","0x0","0x24a705e5","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c021c","0x0","0x24a705e5","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c021c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 00 80 8d 84 d4 dc 01 06 0a 00 00 00 60 00 80 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:28.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:28.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:28.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.930Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.930Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18d1504","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18d1504","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:28.948Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x18d1504","0x24a7042d","0x17eeb78","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18d1504","0x24a7042d","0x17eeb78","0x51bd92c","0x51bd888","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:28.953Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18d1504","0x0","0x24a7045d","0x18d1504","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d1504","0x0","0x24a7045d","0x18d1504","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:28.959Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18d1504","0x0","0x24a705e5","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d1504","0x0","0x24a705e5","0x18d1504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d1504","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d1504","hex":"01 00 00 00 00 00 00 00 00 00 85 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:28.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:28.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:28.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:28.965Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51bf114","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51bf114","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.260Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x51bf114","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51bf114","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.266Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.272Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.276Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.277Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5217c80","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.286Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x51bf114","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51bf114","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.305Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 c7 ad 8d 84 d4 dc 01 06 0a 00 00 00 20 c7 ad 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.315Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18dbf54","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18dbf54","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x18e9d30","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.380Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x18dbf54","0x24a7042d","0x17eeb78","0x18e9d2c","0x18e9c88","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18dbf54","0x24a7042d","0x17eeb78","0x18e9d2c","0x18e9c88","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.388Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18dbf54","0x0","0x24a7045d","0x18dbf54","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18dbf54","0x0","0x24a7045d","0x18dbf54","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.395Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18dbf54","0x0","0x24a705e5","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18dbf54","0x0","0x24a705e5","0x18dbf54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18dbf54","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18dbf54","hex":"01 00 00 00 00 00 00 00 00 00 6e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.400Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.401Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.401Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.401Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.401Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18de164","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18de164","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.409Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18de164","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18de164","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.417Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18de164","0x0","0x27e70065","0x18de164","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18de164","0x0","0x27e70065","0x18de164","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:29.426Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18de164","0x0","0x27e701ad","0x18de164","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18de164","0x0","0x27e701ad","0x18de164","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18de164","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18de164","hex":"01 00 00 00 00 00 00 00 00 00 6d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.433Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51fa864","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51fa864","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.440Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.441Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x51fa864","0x24a7042d","0x17eeb78","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51fa864","0x24a7042d","0x17eeb78","0x51e993c","0x51e9898","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.448Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51fa864","0x0","0x24a7045d","0x51fa864","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51fa864","0x0","0x24a7045d","0x51fa864","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51fa864","0x0","0x24a705e5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51fa864","0x0","0x24a705e5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51fa864","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 4b cc 8d 84 d4 dc 01 06 0a 00 00 00 a0 4b cc 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.463Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.464Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18d5924","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18d5924","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bdef8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.496Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x18d5924","0x24a7042d","0x17eeb78","0x51bdef4","0x51bde50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18d5924","0x24a7042d","0x17eeb78","0x51bdef4","0x51bde50","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.501Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18d5924","0x0","0x24a7045d","0x18d5924","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d5924","0x0","0x24a7045d","0x18d5924","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.507Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18d5924","0x0","0x24a705e5","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d5924","0x0","0x24a705e5","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d5924","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d5924","hex":"01 00 00 00 00 00 00 00 00 00 86 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.512Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.512Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.512Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.512Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.513Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18212a4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x18212a4","0x24a7042d","0x17eeb78","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18212a4","0x24a7042d","0x17eeb78","0x51e993c","0x51e9898","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.782Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x18212a4","0x0","0x24a7045d","0x18212a4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18212a4","0x0","0x24a7045d","0x18212a4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.792Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x18212a4","0x0","0x24a705e5","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18212a4","0x0","0x24a705e5","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18212a4","hex":"01 00 34 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.798Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.798Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.798Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.799Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.799Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18914e4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18914e4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.808Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x18914e4","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18914e4","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.817Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x18914e4","0x0","0x24a7045d","0x18914e4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18914e4","0x0","0x24a7045d","0x18914e4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.827Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x18914e4","0x0","0x24a705e5","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18914e4","0x0","0x24a705e5","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18914e4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18914e4","hex":"01 00 34 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 9d f9 8d 84 d4 dc 01 06 0a 00 00 00 30 9d f9 8d 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.835Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x523246c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x523246c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bcda0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.842Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x523246c","0x27e700f5","0x23eefb0","0x51bcd9c","0x51bccf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523246c","0x27e700f5","0x23eefb0","0x51bcd9c","0x51bccf8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.847Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x523246c","0x0","0x27e70065","0x523246c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523246c","0x0","0x27e70065","0x523246c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:29.852Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x523246c","0x0","0x27e701ad","0x523246c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523246c","0x0","0x27e701ad","0x523246c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523246c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523246c","hex":"01 00 00 00 00 00 00 00 00 00 6f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.857Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.857Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.858Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18df26c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18df26c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x18ea2f8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18df26c","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18df26c","0x27e700f5","0x23eefb0","0x18ea2f4","0x18ea250","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18df26c","0x0","0x27e70065","0x18df26c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18df26c","0x0","0x27e70065","0x18df26c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:29.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18df26c","0x0","0x27e701ad","0x18df26c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18df26c","0x0","0x27e701ad","0x18df26c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18df26c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 bd 18 8e 84 d4 dc 01 06 0a 00 00 00 f0 bd 18 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:29.927Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c1324","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c1324","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5217c80","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:29.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.935Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c1324","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c1324","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.941Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c1324","0x0","0x24a7045d","0x51c1324","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c1324","0x0","0x24a7045d","0x51c1324","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:29.948Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c1324","0x0","0x24a705e5","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c1324","0x0","0x24a705e5","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c1324","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 70 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:29.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:29.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:29.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:29.954Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.042Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.048Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:30.053Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 87 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.058Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.059Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.059Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.059Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.059Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182f00c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182f00c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.263Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182f00c","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182f00c","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182f00c","0x0","0x24a7045d","0x182f00c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182f00c","0x0","0x24a7045d","0x182f00c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:30.275Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182f00c","0x0","0x24a705e5","0x182f00c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182f00c","0x0","0x24a705e5","0x182f00c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182f00c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182f00c","hex":"01 00 34 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.281Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.282Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d5924","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d5924","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bdef8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x18d5924","0x24a7042d","0x17eeb78","0x51bdef4","0x51bde50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18d5924","0x24a7042d","0x17eeb78","0x51bdef4","0x51bde50","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.299Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x18d5924","0x0","0x24a7045d","0x18d5924","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d5924","0x0","0x24a7045d","0x18d5924","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:30.306Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x18d5924","0x0","0x24a705e5","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d5924","0x0","0x24a705e5","0x18d5924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d5924","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d5924","hex":"01 00 34 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 e8 45 8e 84 d4 dc 01 06 0a 00 00 00 70 e8 45 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.313Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x5231364","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x5231364","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.367Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x5231364","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5231364","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.372Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x5231364","0x0","0x24a7045d","0x5231364","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5231364","0x0","0x24a7045d","0x5231364","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:30.379Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x5231364","0x0","0x24a705e5","0x5231364","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5231364","0x0","0x24a705e5","0x5231364","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5231364","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5231364","hex":"01 00 00 00 00 00 00 00 00 00 72 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.384Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51b7d64","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51b7d64","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.392Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.393Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.393Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.394Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x51b7d64","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51b7d64","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.401Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51b7d64","0x0","0x27e70065","0x51b7d64","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b7d64","0x0","0x27e70065","0x51b7d64","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:30.408Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51b7d64","0x0","0x27e701ad","0x51b7d64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b7d64","0x0","0x27e701ad","0x51b7d64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b7d64","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 71 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.412Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.422Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.422Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.423Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.429Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:30.435Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 bb 64 8e 84 d4 dc 01 06 0a 00 00 00 10 bb 64 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.442Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.442Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51f975c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51f975c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.455Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x51f975c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51f975c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.465Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51f975c","0x0","0x27e70065","0x51f975c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f975c","0x0","0x27e70065","0x51f975c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:30.475Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51f975c","0x0","0x27e701ad","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f975c","0x0","0x27e701ad","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f975c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 88 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.483Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.483Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.483Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.483Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.484Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b3704","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b3704","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bcda0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.759Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18b3704","0x27e700f5","0x23eefb0","0x51bcd9c","0x51bccf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b3704","0x27e700f5","0x23eefb0","0x51bcd9c","0x51bccf8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18b3704","0x0","0x27e70065","0x18b3704","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b3704","0x0","0x27e70065","0x18b3704","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:30.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18b3704","0x0","0x27e701ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b3704","0x0","0x27e701ad","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b3704","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b3704","hex":"01 00 34 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51b9f74","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51b9f74","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5248268","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x51b9f74","0x27e700f5","0x23eefb0","0x5248264","0x52481c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51b9f74","0x27e700f5","0x23eefb0","0x5248264","0x52481c0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.794Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51b9f74","0x0","0x27e70065","0x51b9f74","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b9f74","0x0","0x27e70065","0x51b9f74","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:30.800Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51b9f74","0x0","0x27e701ad","0x51b9f74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b9f74","0x0","0x27e701ad","0x51b9f74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b9f74","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b9f74","hex":"01 00 34 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 33 92 8e 84 d4 dc 01 06 0a 00 00 00 b0 33 92 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.806Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.814Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.815Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.815Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x182abec","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182abec","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.820Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x24a7045d","0x182abec","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x24a7045d","0x182abec","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:30.826Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x182abec","0x0","0x24a705e5","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x24a705e5","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 73 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.831Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.831Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.831Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.831Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.831Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18d7b34","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18d7b34","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bdef8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.912Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x18d7b34","0x24a7042d","0x17eeb78","0x51bdef4","0x51bde50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18d7b34","0x24a7042d","0x17eeb78","0x51bdef4","0x51bde50","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.918Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x18d7b34","0x0","0x24a7045d","0x18d7b34","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d7b34","0x0","0x24a7045d","0x18d7b34","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:30.925Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x18d7b34","0x0","0x24a705e5","0x18d7b34","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d7b34","0x0","0x24a705e5","0x18d7b34","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d7b34","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d7b34","hex":"01 00 34 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 2d b1 8e 84 d4 dc 01 06 0a 00 00 00 60 2d b1 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:30.932Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:30.942Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.943Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.943Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.944Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.944Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18278d4","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18278d4","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.952Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:30.958Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 74 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:30.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:30.966Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:30.966Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.966Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:30.966Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1895904","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1895904","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5248268","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.020Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x1895904","0x27e700f5","0x23eefb0","0x5248264","0x52481c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1895904","0x27e700f5","0x23eefb0","0x5248264","0x52481c0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.027Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x1895904","0x0","0x27e70065","0x1895904","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1895904","0x0","0x27e70065","0x1895904","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.034Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x1895904","0x0","0x27e701ad","0x1895904","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1895904","0x0","0x27e701ad","0x1895904","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1895904","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 89 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.039Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.256Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18223ac","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18223ac","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.262Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.268Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18223ac","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.272Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.273Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d3714","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18d3714","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bcda0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18d3714","0x27e700f5","0x23eefb0","0x51bcd9c","0x51bccf8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18d3714","0x27e700f5","0x23eefb0","0x51bcd9c","0x51bccf8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.288Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18d3714","0x0","0x27e70065","0x18d3714","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18d3714","0x0","0x27e70065","0x18d3714","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18d3714","0x0","0x27e701ad","0x18d3714","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18d3714","0x0","0x27e701ad","0x18d3714","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d3714","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18d3714","hex":"01 00 34 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 a6 de 8e 84 d4 dc 01 06 0a 00 00 00 00 a6 de 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.301Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.353Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18234b4","0x27e700f5","0x23eefb0","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18234b4","0x27e700f5","0x23eefb0","0x51e8dac","0x51e8d08","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.359Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18234b4","0x0","0x27e70065","0x18234b4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18234b4","0x0","0x27e70065","0x18234b4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.365Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18234b4","0x0","0x27e701ad","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18234b4","0x0","0x27e701ad","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18234b4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 76 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.370Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x182df04","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x182df04","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bd930","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.382Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.383Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.383Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.384Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.384Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x182df04","0x24a7042d","0x17eeb78","0x51bd92c","0x51bd888","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182df04","0x24a7042d","0x17eeb78","0x51bd92c","0x51bd888","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.392Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x182df04","0x0","0x24a7045d","0x182df04","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182df04","0x0","0x24a7045d","0x182df04","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:31.399Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x182df04","0x0","0x24a705e5","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182df04","0x0","0x24a705e5","0x182df04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182df04","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182df04","hex":"01 00 00 00 00 00 00 00 00 00 75 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.404Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18de164","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18de164","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.411Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.412Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.412Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.412Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.412Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18de164","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18de164","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.419Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18de164","0x0","0x27e70065","0x18de164","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18de164","0x0","0x27e70065","0x18de164","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.426Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18de164","0x0","0x27e701ad","0x18de164","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18de164","0x0","0x27e701ad","0x18de164","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18de164","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 c0 c6 fd 8e 84 d4 dc 01 06 0a 00 00 00 c0 c6 fd 8e 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.432Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18367d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18367d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e8220","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.461Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x18367d4","0x27e700f5","0x23eefb0","0x51e821c","0x51e8178","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18367d4","0x27e700f5","0x23eefb0","0x51e821c","0x51e8178","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.467Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18367d4","0x0","0x27e70065","0x18367d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18367d4","0x0","0x27e70065","0x18367d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.473Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18367d4","0x0","0x27e701ad","0x18367d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18367d4","0x0","0x27e701ad","0x18367d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18367d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18367d4","hex":"01 00 00 00 00 00 00 00 00 00 8a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.477Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.478Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.478Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.756Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51e8dac","0x51e8d08","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.761Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.771Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.779Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.780Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.789Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x1829ae4","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1829ae4","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.795Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 ca 2a 8f 84 d4 dc 01 06 0a 00 00 00 30 ca 2a 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.807Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.808Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x523467c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x523467c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218810","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.816Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x523467c","0x24a7042d","0x17eeb78","0x521880c","0x5218768","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523467c","0x24a7042d","0x17eeb78","0x521880c","0x5218768","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.822Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x523467c","0x0","0x24a7045d","0x523467c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523467c","0x0","0x24a7045d","0x523467c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:31.829Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x523467c","0x0","0x24a705e5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523467c","0x0","0x24a705e5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 77 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.835Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c5744","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c5744","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5217c80","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.899Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c5744","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c5744","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.905Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c5744","0x0","0x24a7045d","0x51c5744","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c5744","0x0","0x24a7045d","0x51c5744","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:31.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c5744","0x0","0x24a705e5","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c5744","0x0","0x24a705e5","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c5744","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 78 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:31.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18df26c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18df26c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:31.924Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.925Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.925Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.925Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.926Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18df26c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18df26c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.932Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18df26c","0x0","0x27e70065","0x18df26c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18df26c","0x0","0x27e70065","0x18df26c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:31.939Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18df26c","0x0","0x27e701ad","0x18df26c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18df26c","0x0","0x27e701ad","0x18df26c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18df26c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 c3 49 8f 84 d4 dc 01 06 0a 00 00 00 e0 c3 49 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:31.945Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:31.946Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:31.946Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.947Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:31.947Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51b8e6c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51b8e6c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.012Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x51b8e6c","0x27e700f5","0x23eefb0","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51b8e6c","0x27e700f5","0x23eefb0","0x524710c","0x5247068","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.019Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51b8e6c","0x0","0x27e70065","0x51b8e6c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b8e6c","0x0","0x27e70065","0x51b8e6c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.025Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51b8e6c","0x0","0x27e701ad","0x51b8e6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b8e6c","0x0","0x27e701ad","0x51b8e6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b8e6c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b8e6c","hex":"01 00 00 00 00 00 00 00 00 00 8b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.031Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.264Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18278d4","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.271Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x27e70065","0x18278d4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.278Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x27e701ad","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.285Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.286Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.286Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.286Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.286Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18de164","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18de164","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.294Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18de164","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18de164","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.300Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18de164","0x0","0x27e70065","0x18de164","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18de164","0x0","0x27e70065","0x18de164","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.308Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18de164","0x0","0x27e701ad","0x18de164","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18de164","0x0","0x27e701ad","0x18de164","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18de164","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18de164","hex":"01 00 34 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 15 77 8f 84 d4 dc 01 06 0a 00 00 00 70 15 77 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.313Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.314Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.314Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x5233574","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x5233574","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5248df8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.344Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x5233574","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5233574","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.357Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x5233574","0x0","0x27e70065","0x5233574","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5233574","0x0","0x27e70065","0x5233574","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.373Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x5233574","0x0","0x27e701ad","0x5233574","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5233574","0x0","0x27e701ad","0x5233574","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5233574","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5233574","hex":"01 00 00 00 00 00 00 00 00 00 7a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.385Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51c463c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51c463c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.393Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.394Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.394Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c463c","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c463c","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.400Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:32.407Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 79 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.412Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18df26c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18df26c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.422Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.422Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.423Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.423Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x18df26c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18df26c","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.431Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18df26c","0x0","0x27e70065","0x18df26c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18df26c","0x0","0x27e70065","0x18df26c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.438Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18df26c","0x0","0x27e701ad","0x18df26c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18df26c","0x0","0x27e701ad","0x18df26c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18df26c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18df26c","hex":"01 00 34 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 30 36 96 8f 84 d4 dc 01 06 0a 00 00 00 20 0f 96 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.443Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.444Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.444Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.444Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.444Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51b7d64","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51b7d64","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5248268","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.558Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x51b7d64","0x27e700f5","0x23eefb0","0x5248264","0x52481c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51b7d64","0x27e700f5","0x23eefb0","0x5248264","0x52481c0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.564Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51b7d64","0x0","0x27e70065","0x51b7d64","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b7d64","0x0","0x27e70065","0x51b7d64","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.571Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51b7d64","0x0","0x27e701ad","0x51b7d64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b7d64","0x0","0x27e701ad","0x51b7d64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b7d64","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b7d64","hex":"01 00 00 00 00 00 00 00 00 00 8c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.576Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.577Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.577Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.577Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.577Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.757Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x51b5b54","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.764Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51b5b54","0x0","0x27e70065","0x51b5b54","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b5b54","0x0","0x27e70065","0x51b5b54","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.771Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51b5b54","0x0","0x27e701ad","0x51b5b54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b5b54","0x0","0x27e701ad","0x51b5b54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b5b54","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.777Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.777Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.777Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.777Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.778Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18223ac","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.789Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18223ac","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18223ac","0x27e700f5","0x23eefb0","0x51e87e4","0x51e8740","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18223ac","0x0","0x27e70065","0x18223ac","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.803Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18223ac","0x0","0x27e701ad","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18223ac","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 60 c3 8f 84 d4 dc 01 06 0a 00 00 00 b0 60 c3 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.808Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.809Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f312c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f312c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.883Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x51f312c","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f312c","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.888Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51f312c","0x0","0x27e70065","0x51f312c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f312c","0x0","0x27e70065","0x51f312c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:32.894Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51f312c","0x0","0x27e701ad","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f312c","0x0","0x27e701ad","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 7c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.899Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51c463c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51c463c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.907Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.907Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.907Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.908Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.915Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c463c","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c463c","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:32.928Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 7b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:32.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.933Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.933Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.933Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.933Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.940Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:32.950Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 81 e2 8f 84 d4 dc 01 06 0a 00 00 00 70 81 e2 8f 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:32.956Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:32.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:32.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:32.957Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51c5744","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51c5744","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5217c80","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:32.997Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x51c5744","0x255c009d","0x85efc8","0x5217c7c","0x5217bd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c5744","0x255c009d","0x85efc8","0x5217c7c","0x5217bd8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.004Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51c5744","0x0","0x255c000d","0x51c5744","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c5744","0x0","0x255c000d","0x51c5744","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.011Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51c5744","0x0","0x255c0055","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c5744","0x0","0x255c0055","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c5744","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c5744","hex":"01 00 00 00 00 00 00 00 00 00 8d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.016Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.016Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.016Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.017Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.017Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.261Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18234b4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.286Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.286Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.286Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.287Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.287Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51eaa98","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.296Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1914e64","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1914e64","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.303Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.309Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 84 0f 90 84 d4 dc 01 06 0a 00 00 00 e0 84 0f 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.315Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51b9f74","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51b9f74","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.326Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.327Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51b9f74","0x24a7042d","0x17eeb78","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51b9f74","0x24a7042d","0x17eeb78","0x524710c","0x5247068","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.334Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51b9f74","0x0","0x24a7045d","0x51b9f74","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b9f74","0x0","0x24a7045d","0x51b9f74","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:33.340Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51b9f74","0x0","0x24a705e5","0x51b9f74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b9f74","0x0","0x24a705e5","0x51b9f74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b9f74","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b9f74","hex":"01 00 00 00 00 00 00 00 00 00 7d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.345Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.345Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.345Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.345Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.346Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.410Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.417Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:33.426Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 cc 2e 90 84 d4 dc 01 06 0a 00 00 00 b0 cc 2e 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.433Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.441Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.442Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.442Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.442Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.442Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.448Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.455Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 7e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.458Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.459Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.459Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.459Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.459Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1897b14","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1897b14","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1925a48","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.535Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1897b14","0x255c009d","0x85efc8","0x1925a44","0x19259a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1897b14","0x255c009d","0x85efc8","0x1925a44","0x19259a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.542Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1897b14","0x0","0x255c000d","0x1897b14","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1897b14","0x0","0x255c000d","0x1897b14","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.548Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1897b14","0x0","0x255c0055","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1897b14","0x0","0x255c0055","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1897b14","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 8e 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.553Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.553Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.553Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.553Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.553Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.767Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.776Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.786Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.791Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.792Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.792Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.792Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.792Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.799Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1917074","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1917074","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.805Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.811Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 1e 5c 90 84 d4 dc 01 06 0a 00 00 00 40 1e 5c 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.816Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.816Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.816Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.816Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.816Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x182cdfc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x182cdfc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e7c58","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.872Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x182cdfc","0x255c009d","0x85efc8","0x51e7c54","0x51e7bb0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182cdfc","0x255c009d","0x85efc8","0x51e7c54","0x51e7bb0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.878Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182cdfc","0x0","0x255c000d","0x182cdfc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182cdfc","0x0","0x255c000d","0x182cdfc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.884Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182cdfc","0x0","0x255c0055","0x182cdfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182cdfc","0x0","0x255c0055","0x182cdfc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182cdfc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182cdfc","hex":"01 00 00 00 00 00 00 00 00 00 7f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.889Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.896Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.896Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.897Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.897Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.897Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x182abec","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182abec","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.903Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x24a7045d","0x182abec","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x24a7045d","0x182abec","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:33.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x182abec","0x0","0x24a705e5","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x24a705e5","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 80 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.917Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.924Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.925Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.925Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.925Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.925Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.932Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.939Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18234b4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 f0 7a 90 84 d4 dc 01 06 0a 00 00 00 e0 f0 7a 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:33.946Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.946Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.946Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.946Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.946Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18b480c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18b480c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd368","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:33.974Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18b480c","0x255c009d","0x85efc8","0x51bd364","0x51bd2c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b480c","0x255c009d","0x85efc8","0x51bd364","0x51bd2c0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.980Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18b480c","0x0","0x255c000d","0x18b480c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b480c","0x0","0x255c000d","0x18b480c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:33.986Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18b480c","0x0","0x255c0055","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b480c","0x0","0x255c0055","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b480c","hex":"01 00 00 00 00 00 00 00 00 00 8f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:33.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:33.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:33.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:33.993Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bd368","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.252Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18b480c","0x255c009d","0x85efc8","0x51bd364","0x51bd2c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b480c","0x255c009d","0x85efc8","0x51bd364","0x51bd2c0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.258Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x255c000d","0x18b480c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x255c000d","0x18b480c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.265Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18b480c","0x0","0x255c0055","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x255c0055","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.271Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18256c4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18256c4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.279Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18256c4","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18256c4","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.285Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18256c4","0x0","0x255c000d","0x18256c4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18256c4","0x0","0x255c000d","0x18256c4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.291Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18256c4","0x0","0x255c0055","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18256c4","0x0","0x255c0055","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 1b a8 90 84 d4 dc 01 06 0a 00 00 00 60 1b a8 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.296Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.297Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51b6c5c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51b6c5c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5249f50","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.304Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51b6c5c","0x24a7042d","0x17eeb78","0x5249f4c","0x5249ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51b6c5c","0x24a7042d","0x17eeb78","0x5249f4c","0x5249ea8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.310Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51b6c5c","0x0","0x24a7045d","0x51b6c5c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b6c5c","0x0","0x24a7045d","0x51b6c5c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:34.316Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51b6c5c","0x0","0x24a705e5","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b6c5c","0x0","0x24a705e5","0x51b6c5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b6c5c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b6c5c","hex":"01 00 00 00 00 00 00 00 00 00 81 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.322Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.323Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.323Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.323Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.323Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.410Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18223ac","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18223ac","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.418Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:34.430Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 3c c7 90 84 d4 dc 01 06 0a 00 00 00 20 3c c7 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.434Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.435Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.435Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.435Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.435Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18223ac","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18223ac","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.441Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18223ac","0x0","0x255c000d","0x18223ac","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18223ac","0x0","0x255c000d","0x18223ac","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18223ac","0x0","0x255c0055","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18223ac","0x0","0x255c0055","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18223ac","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18223ac","hex":"01 00 00 00 00 00 00 00 00 00 82 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.452Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.453Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.524Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.530Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.536Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 90 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.541Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.541Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.542Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.542Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.542Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.761Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x182abec","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182abec","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.770Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.788Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.788Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.788Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.789Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.789Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1919284","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1919284","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1919284","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1919284","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.804Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1919284","0x0","0x255c000d","0x1919284","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1919284","0x0","0x255c000d","0x1919284","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.811Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1919284","0x0","0x255c0055","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1919284","0x0","0x255c0055","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1919284","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 8d f4 90 84 d4 dc 01 06 0a 00 00 00 b0 8d f4 90 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.816Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.817Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.817Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.817Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.817Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.849Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x182abec","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182abec","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.855Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.861Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 84 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.866Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1897b14","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1897b14","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x1925a48","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.873Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.874Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.874Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.874Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.875Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x1897b14","0x24a7042d","0x17eeb78","0x1925a44","0x19259a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1897b14","0x24a7042d","0x17eeb78","0x1925a44","0x19259a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.884Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x1897b14","0x0","0x24a7045d","0x1897b14","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1897b14","0x0","0x24a7045d","0x1897b14","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:34.894Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x1897b14","0x0","0x24a705e5","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1897b14","0x0","0x24a705e5","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1897b14","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 83 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.902Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.902Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.903Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.903Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.903Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.917Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.923Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 ae 13 91 84 d4 dc 01 06 0a 00 00 00 70 ae 13 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:34.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.929Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1895904","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1895904","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5248268","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:34.958Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1895904","0x255c009d","0x85efc8","0x5248264","0x52481c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1895904","0x255c009d","0x85efc8","0x5248264","0x52481c0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.965Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1895904","0x0","0x255c000d","0x1895904","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1895904","0x0","0x255c000d","0x1895904","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:34.975Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1895904","0x0","0x255c0055","0x1895904","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1895904","0x0","0x255c0055","0x1895904","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1895904","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1895904","hex":"01 00 00 00 00 00 00 00 00 00 91 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:34.980Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:34.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:34.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:34.981Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b7d64","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51b7d64","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5248268","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.255Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x51b7d64","0x255c009d","0x85efc8","0x5248264","0x52481c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51b7d64","0x255c009d","0x85efc8","0x5248264","0x52481c0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.261Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51b7d64","0x0","0x255c000d","0x51b7d64","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b7d64","0x0","0x255c000d","0x51b7d64","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:35.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51b7d64","0x0","0x255c0055","0x51b7d64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b7d64","0x0","0x255c0055","0x51b7d64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b7d64","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b7d64","hex":"01 00 34 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.273Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1912c54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1912c54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1912c54","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1912c54","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1912c54","0x0","0x255c000d","0x1912c54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1912c54","0x0","0x255c000d","0x1912c54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:35.296Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1912c54","0x0","0x255c0055","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1912c54","0x0","0x255c0055","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1912c54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 00 41 91 84 d4 dc 01 06 0a 00 00 00 00 00 41 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.300Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18925ec","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18925ec","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218810","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.308Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x18925ec","0x24a7042d","0x17eeb78","0x521880c","0x5218768","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18925ec","0x24a7042d","0x17eeb78","0x521880c","0x5218768","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.314Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18925ec","0x0","0x24a7045d","0x18925ec","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18925ec","0x0","0x24a7045d","0x18925ec","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:35.321Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18925ec","0x0","0x24a705e5","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18925ec","0x0","0x24a705e5","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18925ec","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 85 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.326Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.327Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.327Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.397Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.403Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:35.409Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 86 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.426Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18278d4","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.436Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:35.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18278d4","hex":"01 00 34 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 d2 5f 91 84 d4 dc 01 06 0a 00 00 00 a0 d2 5f 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.453Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.453Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51eaa98","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.511Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1913d5c","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.516Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:35.523Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1913d5c","hex":"01 00 00 00 00 00 00 00 00 00 92 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.528Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.528Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.528Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.529Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.529Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18223ac","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18223ac","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.749Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18223ac","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18223ac","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.756Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18223ac","0x0","0x255c000d","0x18223ac","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18223ac","0x0","0x255c000d","0x18223ac","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:35.762Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18223ac","0x0","0x255c0055","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18223ac","0x0","0x255c0055","0x18223ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18223ac","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18223ac","hex":"01 00 34 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.770Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1897b14","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1897b14","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1925a48","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.778Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1897b14","0x255c009d","0x85efc8","0x1925a44","0x19259a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1897b14","0x255c009d","0x85efc8","0x1925a44","0x19259a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.784Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1897b14","0x0","0x255c000d","0x1897b14","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1897b14","0x0","0x255c000d","0x1897b14","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:35.791Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1897b14","0x0","0x255c0055","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1897b14","0x0","0x255c0055","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1897b14","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 30 24 8d 91 84 d4 dc 01 06 0a 00 00 00 30 24 8d 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.797Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.797Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.797Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18345c4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52493c0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.833Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18345c4","0x255c009d","0x85efc8","0x52493bc","0x5249318","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18345c4","0x255c009d","0x85efc8","0x52493bc","0x5249318","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.839Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18345c4","0x0","0x255c000d","0x18345c4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:35.845Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18345c4","0x0","0x255c0055","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18345c4","hex":"01 00 00 00 00 00 00 00 00 00 88 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.851Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x191817c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x191817c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x1925a48","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.859Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.859Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.859Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x191817c","0x24a7042d","0x17eeb78","0x1925a44","0x19259a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191817c","0x24a7042d","0x17eeb78","0x1925a44","0x19259a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.864Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x191817c","0x0","0x24a7045d","0x191817c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191817c","0x0","0x24a7045d","0x191817c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:35.870Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x191817c","0x0","0x24a705e5","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191817c","0x0","0x24a705e5","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 87 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.874Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.875Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.875Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.875Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.875Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182abec","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182abec","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.918Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182abec","0x0","0x24a7045d","0x182abec","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x24a7045d","0x182abec","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:35.925Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182abec","0x0","0x24a705e5","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x24a705e5","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 44 ac 91 84 d4 dc 01 06 0a 00 00 00 f0 44 ac 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:35.931Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.932Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18b3704","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18b3704","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218810","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:35.950Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x18b3704","0x24a7042d","0x17eeb78","0x521880c","0x5218768","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b3704","0x24a7042d","0x17eeb78","0x521880c","0x5218768","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.958Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18b3704","0x0","0x24a7045d","0x18b3704","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b3704","0x0","0x24a7045d","0x18b3704","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:35.966Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18b3704","0x0","0x24a705e5","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b3704","0x0","0x24a705e5","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b3704","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 93 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:35.973Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:35.974Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:35.974Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.974Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:35.974Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1897b14","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1897b14","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x1925a48","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.248Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x1897b14","0x24a7042d","0x17eeb78","0x1925a44","0x19259a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1897b14","0x24a7042d","0x17eeb78","0x1925a44","0x19259a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.254Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x1897b14","0x0","0x24a7045d","0x1897b14","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1897b14","0x0","0x24a7045d","0x1897b14","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:36.262Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x1897b14","0x0","0x24a705e5","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1897b14","0x0","0x24a705e5","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1897b14","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.267Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.268Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.268Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.268Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.268Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1919284","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1919284","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x1919284","0x24a7042d","0x17eeb78","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1919284","0x24a7042d","0x17eeb78","0x1923794","0x19236f0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x1919284","0x0","0x24a7045d","0x1919284","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1919284","0x0","0x24a7045d","0x1919284","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:36.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x1919284","0x0","0x24a705e5","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1919284","0x0","0x24a705e5","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1919284","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 96 d9 91 84 d4 dc 01 06 0a 00 00 00 80 96 d9 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.294Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.295Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.295Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.295Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.382Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c3534","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c3534","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.389Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c3534","0x0","0x24a7045d","0x51c3534","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c3534","0x0","0x24a7045d","0x51c3534","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:36.396Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c3534","0x0","0x24a705e5","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c3534","0x0","0x24a705e5","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c3534","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 8a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.402Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.409Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.410Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.410Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.410Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.410Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18267cc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18267cc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.417Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x51b5b54","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51b5b54","0x27e700f5","0x23eefb0","0x524aadc","0x524aa38","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51b5b54","0x0","0x27e70065","0x51b5b54","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51b5b54","0x0","0x27e70065","0x51b5b54","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:36.430Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51b5b54","0x0","0x27e701ad","0x51b5b54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51b5b54","0x0","0x27e701ad","0x51b5b54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b5b54","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51b5b54","hex":"01 00 34 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 69 f8 91 84 d4 dc 01 06 0a 00 00 00 20 69 f8 91 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.435Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.436Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18267cc","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18267cc","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.443Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18267cc","0x0","0x255c000d","0x18267cc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18267cc","0x0","0x255c000d","0x18267cc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:36.450Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18267cc","0x0","0x255c0055","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18267cc","0x0","0x255c0055","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18267cc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 89 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.457Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.466Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x182019c","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182019c","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.471Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:36.477Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 94 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.484Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.485Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.485Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.485Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.485Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18267cc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18267cc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.760Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18267cc","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18267cc","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18267cc","0x0","0x255c000d","0x18267cc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18267cc","0x0","0x255c000d","0x18267cc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:36.775Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18267cc","0x0","0x255c0055","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18267cc","0x0","0x255c0055","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18267cc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.783Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.783Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.784Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.784Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.784Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51eaa98","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1914e64","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1914e64","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.806Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:36.815Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1914e64","hex":"01 00 34 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 ba 25 92 84 d4 dc 01 06 0a 00 00 00 b0 ba 25 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.821Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51f4234","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51f4234","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.828Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x51f4234","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f4234","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.834Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51f4234","0x0","0x27e70065","0x51f4234","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f4234","0x0","0x27e70065","0x51f4234","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:36.840Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51f4234","0x0","0x27e701ad","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f4234","0x0","0x27e701ad","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f4234","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 8b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.846Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.846Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.846Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.909Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x1829ae4","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:36.931Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 b4 44 92 84 d4 dc 01 06 0a 00 00 00 60 b4 44 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:36.938Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:36.946Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.947Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.947Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.947Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.947Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.953Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:36.959Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 8c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:36.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:36.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:36.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:36.964Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.037Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1917074","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1917074","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.042Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.048Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 95 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.052Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.053Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.053Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.053Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.053Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.249Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.256Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.262Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18234b4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18234b4","hex":"01 00 34 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.272Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.272Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.272Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.280Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.286Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 f0 05 72 92 84 d4 dc 01 06 0a 00 00 00 f0 05 72 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.298Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.298Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.365Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x191b494","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191b494","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.371Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.376Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191b494","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 8e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.381Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18d6a2c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18d6a2c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bd368","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.388Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.388Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.389Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.389Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.389Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18d6a2c","0x27e700f5","0x23eefb0","0x51bd364","0x51bd2c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18d6a2c","0x27e700f5","0x23eefb0","0x51bd364","0x51bd2c0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.394Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18d6a2c","0x0","0x27e70065","0x18d6a2c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18d6a2c","0x0","0x27e70065","0x18d6a2c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:37.400Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18d6a2c","0x0","0x27e701ad","0x18d6a2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18d6a2c","0x0","0x27e701ad","0x18d6a2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18d6a2c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18d6a2c","hex":"01 00 00 00 00 00 00 00 00 00 8d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.405Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.413Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x1913d5c","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1913d5c","0x255c009d","0x85efc8","0x1922c04","0x1922b60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.420Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1913d5c","0x0","0x255c000d","0x1913d5c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.427Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1913d5c","0x0","0x255c0055","0x1913d5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1913d5c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1913d5c","hex":"01 00 34 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 26 91 92 84 d4 dc 01 06 0a 00 00 00 b0 26 91 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.432Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.433Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18278d4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.479Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18278d4","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18278d4","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.486Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18278d4","0x0","0x255c000d","0x18278d4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.495Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18278d4","0x0","0x255c0055","0x18278d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18278d4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18278d4","hex":"01 00 00 00 00 00 00 00 00 00 96 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.501Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.502Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.502Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.502Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.503Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1912c54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1912c54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.754Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x1912c54","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1912c54","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.760Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1912c54","0x0","0x255c000d","0x1912c54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1912c54","0x0","0x255c000d","0x1912c54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.767Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1912c54","0x0","0x255c0055","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1912c54","0x0","0x255c0055","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1912c54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1912c54","hex":"01 00 34 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.773Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c684c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c684c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5218810","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.782Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x51c684c","0x255c009d","0x85efc8","0x521880c","0x5218768","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c684c","0x255c009d","0x85efc8","0x521880c","0x5218768","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.789Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51c684c","0x0","0x255c000d","0x51c684c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c684c","0x0","0x255c000d","0x51c684c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.795Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51c684c","0x0","0x255c0055","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c684c","0x0","0x255c0055","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 78 be 92 84 d4 dc 01 06 0a 00 00 00 40 78 be 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b03ec","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b03ec","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5248df8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.818Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18b03ec","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b03ec","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.824Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18b03ec","0x0","0x27e70065","0x18b03ec","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b03ec","0x0","0x27e70065","0x18b03ec","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:37.829Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18b03ec","0x0","0x27e701ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b03ec","0x0","0x27e701ad","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 8f 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.835Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.835Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191b494","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191b494","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x1922c08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x191b494","0x27e700f5","0x23eefb0","0x1922c04","0x1922b60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191b494","0x27e700f5","0x23eefb0","0x1922c04","0x1922b60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.917Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x191b494","0x0","0x27e70065","0x191b494","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191b494","0x0","0x27e70065","0x191b494","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:37.924Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x191b494","0x0","0x27e701ad","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191b494","0x0","0x27e701ad","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191b494","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191b494","hex":"01 00 34 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 71 dd 92 84 d4 dc 01 06 0a 00 00 00 f0 71 dd 92 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:37.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:37.936Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.937Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.937Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.937Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.937Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.943Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:37.951Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 90 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:37.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:37.956Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:37.956Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.956Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:37.956Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1829ae4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1829ae4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.022Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1829ae4","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1829ae4","0x255c009d","0x85efc8","0x51e9f04","0x51e9e60","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.028Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1829ae4","0x0","0x255c000d","0x1829ae4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1829ae4","0x0","0x255c000d","0x1829ae4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.036Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1829ae4","0x0","0x255c0055","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1829ae4","0x0","0x255c0055","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1829ae4","hex":"01 00 00 00 00 00 00 00 00 00 97 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.043Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.044Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.257Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.265Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.272Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.278Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.278Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.278Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.278Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.278Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x182bcf4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x182bcf4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.287Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x182bcf4","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x182bcf4","0x255c009d","0x85efc8","0x51bb67c","0x51bb5d8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182bcf4","0x0","0x255c000d","0x182bcf4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182bcf4","0x0","0x255c000d","0x182bcf4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.302Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182bcf4","0x0","0x255c0055","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182bcf4","0x0","0x255c0055","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 c3 0a 93 84 d4 dc 01 06 0a 00 00 00 80 c3 0a 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.307Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.308Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.308Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1912c54","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1912c54","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.353Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51f4234","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51f4234","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.362Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1912c54","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1912c54","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.368Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1912c54","0x0","0x255c000d","0x1912c54","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1912c54","0x0","0x255c000d","0x1912c54","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.375Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1912c54","0x0","0x255c0055","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1912c54","0x0","0x255c0055","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1912c54","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 92 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.380Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.380Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.380Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.380Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.380Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x51f4234","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f4234","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.388Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x51f4234","0x0","0x27e70065","0x51f4234","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f4234","0x0","0x27e70065","0x51f4234","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:38.397Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x51f4234","0x0","0x27e701ad","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f4234","0x0","0x27e701ad","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f4234","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 91 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.405Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191a38c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.413Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.413Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.414Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.414Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191a38c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.420Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191a38c","0x0","0x255c000d","0x191a38c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.428Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191a38c","0x0","0x255c0055","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191a38c","hex":"01 00 34 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 96 29 93 84 d4 dc 01 06 0a 00 00 00 20 96 29 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.434Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.434Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.435Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.435Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.435Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1919284","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1919284","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.462Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x1919284","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1919284","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.467Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1919284","0x0","0x255c000d","0x1919284","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1919284","0x0","0x255c000d","0x1919284","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.473Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1919284","0x0","0x255c0055","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1919284","0x0","0x255c0055","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1919284","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 98 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.479Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.479Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.480Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.480Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.480Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.758Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.767Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.777Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.785Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.786Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.794Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x1917074","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1917074","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.799Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.805Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1917074","hex":"01 00 34 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 e7 56 93 84 d4 dc 01 06 0a 00 00 00 b0 e7 56 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.811Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18234b4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.899Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18234b4","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.913Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18234b4","0x0","0x255c000d","0x18234b4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:38.930Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18234b4","0x0","0x255c0055","0x18234b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18234b4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18234b4","hex":"01 00 00 00 00 00 00 00 00 00 94 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.943Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18267cc","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18267cc","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bea88","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.951Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:38.958Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.959Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.959Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.959Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.959Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x18267cc","0x27e700f5","0x23eefb0","0x51bea84","0x51be9e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18267cc","0x27e700f5","0x23eefb0","0x51bea84","0x51be9e0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.965Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x18267cc","0x0","0x27e70065","0x18267cc","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18267cc","0x0","0x27e70065","0x18267cc","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:38.971Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x18267cc","0x0","0x27e701ad","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18267cc","0x0","0x27e701ad","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18267cc","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18267cc","hex":"01 00 00 00 00 00 00 00 00 00 93 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:38.976Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.976Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.976Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.977Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.977Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x51bb67c","0x51bb5d8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.983Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:38.991Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e1 75 93 84 d4 dc 01 06 0a 00 00 00 60 e1 75 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:38.997Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:38.997Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:38.998Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.998Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:38.998Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51b283c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51b283c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52493c0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.013Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x51b283c","0x24a7042d","0x17eeb78","0x52493bc","0x5249318","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51b283c","0x24a7042d","0x17eeb78","0x52493bc","0x5249318","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.018Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51b283c","0x0","0x24a7045d","0x51b283c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51b283c","0x0","0x24a7045d","0x51b283c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:39.025Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51b283c","0x0","0x24a705e5","0x51b283c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51b283c","0x0","0x24a705e5","0x51b283c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51b283c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51b283c","hex":"01 00 00 00 00 00 00 00 00 00 99 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.029Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.030Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c463c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c463c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.256Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x51c463c","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c463c","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.261Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:39.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.274Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c242c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c242c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.288Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x51c242c","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c242c","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.296Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c242c","0x0","0x24a7045d","0x51c242c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c242c","0x0","0x24a7045d","0x51c242c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:39.305Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c242c","0x0","0x24a705e5","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c242c","0x0","0x24a705e5","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c242c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 5a a3 93 84 d4 dc 01 06 0a 00 00 00 00 5a a3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.311Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.312Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.312Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.312Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.312Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51bf114","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51bf114","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.341Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182bcf4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182bcf4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.352Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51bf114","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51bf114","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.363Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:39.371Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 95 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.378Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.378Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x182bcf4","0x27e700f5","0x23eefb0","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182bcf4","0x27e700f5","0x23eefb0","0x51bb67c","0x51bb5d8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.386Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x182bcf4","0x0","0x27e70065","0x182bcf4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182bcf4","0x0","0x27e70065","0x182bcf4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:39.394Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x182bcf4","0x0","0x27e701ad","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182bcf4","0x0","0x27e701ad","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182bcf4","hex":"01 00 00 00 00 00 00 00 00 00 96 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.400Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.401Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.402Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.402Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.402Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51bb680","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.413Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51bb67c","0x51bb5d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x27e700f5","0x23eefb0","0x51bb67c","0x51bb5d8","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.420Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:39.429Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 b0 53 c2 93 84 d4 dc 01 06 0a 00 00 00 b0 53 c2 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.436Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.436Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182019c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182019c","0x27e700f5","0x23eefb0","0x524710c","0x5247068","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.468Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x27e70065","0x182019c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:39.479Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x27e701ad","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 9a 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.487Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.488Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.488Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.488Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.488Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.794Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x1829ae4","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1829ae4","0x27e700f5","0x23eefb0","0x51e9f04","0x51e9e60","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.804Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1829ae4","0x0","0x27e70065","0x1829ae4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:39.812Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1829ae4","0x0","0x27e701ad","0x1829ae4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1829ae4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1829ae4","hex":"01 00 34 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.821Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.821Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.821Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.821Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.821Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18345c4","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18345c4","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x52493c0","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.831Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x18345c4","0x27e700f5","0x23eefb0","0x52493bc","0x5249318","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18345c4","0x27e700f5","0x23eefb0","0x52493bc","0x5249318","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.837Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x18345c4","0x0","0x27e70065","0x18345c4","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18345c4","0x0","0x27e70065","0x18345c4","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:39.845Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x18345c4","0x0","0x27e701ad","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18345c4","0x0","0x27e701ad","0x18345c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18345c4","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18345c4","hex":"01 00 34 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 27 f3 93 84 d4 dc 01 06 0a 00 00 00 b0 27 f3 93 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.850Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51f4234","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51f4234","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e9f08","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.861Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.861Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.863Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.863Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.863Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51f4234","0x24a7042d","0x17eeb78","0x51e9f04","0x51e9e60","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f4234","0x24a7042d","0x17eeb78","0x51e9f04","0x51e9e60","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.871Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51f4234","0x0","0x24a7045d","0x51f4234","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f4234","0x0","0x24a7045d","0x51f4234","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:39.881Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51f4234","0x0","0x24a705e5","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f4234","0x0","0x24a705e5","0x51f4234","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f4234","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f4234","hex":"01 00 00 00 00 00 00 00 00 00 97 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.892Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.893Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c242c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c242c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x51c242c","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c242c","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.918Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c242c","0x0","0x24a7045d","0x51c242c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c242c","0x0","0x24a7045d","0x51c242c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:39.925Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c242c","0x0","0x24a705e5","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c242c","0x0","0x24a705e5","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c242c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 77 0e 94 84 d4 dc 01 06 0a 00 00 00 e0 77 0e 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:39.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.932Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.932Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f312c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51f312c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.943Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51f312c","0x24a7042d","0x17eeb78","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f312c","0x24a7042d","0x17eeb78","0x524aadc","0x524aa38","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.952Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51f312c","0x0","0x24a7045d","0x51f312c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f312c","0x0","0x24a7045d","0x51f312c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:39.959Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51f312c","0x0","0x24a705e5","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f312c","0x0","0x24a705e5","0x51f312c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f312c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f312c","hex":"01 00 00 00 00 00 00 00 00 00 98 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.963Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x523025c","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x523025c","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5248df8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:39.972Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.973Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.973Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.973Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.974Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x2","0x2e","0x523025c","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x523025c","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.979Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x523025c","0x0","0x27e70065","0x523025c","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523025c","0x0","0x27e70065","0x523025c","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:39.986Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x523025c","0x0","0x27e701ad","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523025c","0x0","0x27e701ad","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523025c","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 9b 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:39.992Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:39.993Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:39.993Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.993Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:39.993Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5248df8","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.259Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffd","0x62","0x182abec","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182abec","0x27e700f5","0x23eefb0","0x5248df4","0x5248d50","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x182abec","0x0","0x27e70065","0x182abec","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x27e70065","0x182abec","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:40.281Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x182abec","0x0","0x27e701ad","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x27e701ad","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.290Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.291Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.291Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.291Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.302Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x7ffe","0x62","0x51bf114","0x27e700f5","0x23eefb0","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51bf114","0x27e700f5","0x23eefb0","0x5218244","0x52181a0","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.309Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x62","0x51bf114","0x0","0x27e70065","0x51bf114","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51bf114","0x0","0x27e70065","0x51bf114","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:40.316Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x62","0x51bf114","0x0","0x27e701ad","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51bf114","0x0","0x27e701ad","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 a2 3b 94 84 d4 dc 01 06 0a 00 00 00 60 a2 3b 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.324Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.325Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.325Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.325Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.325Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1919284","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1919284","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.389Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x1919284","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1919284","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.397Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x1919284","0x0","0x27e70065","0x1919284","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1919284","0x0","0x27e70065","0x1919284","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:40.405Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x1919284","0x0","0x27e701ad","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1919284","0x0","0x27e701ad","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1919284","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9a 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.411Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.420Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18947fc","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18947fc","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5217c80","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.431Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.431Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x1923794","0x19236f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.437Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:40.446Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 9c 5a 94 84 d4 dc 01 06 0a 00 00 00 10 9c 5a 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.451Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.452Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.452Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.452Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.452Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x18947fc","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18947fc","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.458Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18947fc","0x0","0x24a7045d","0x18947fc","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18947fc","0x0","0x24a7045d","0x18947fc","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:40.465Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18947fc","0x0","0x24a705e5","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18947fc","0x0","0x24a705e5","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18947fc","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 99 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.470Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.471Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.471Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.471Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.471Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1912c54","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1912c54","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x1923798","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.481Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x1912c54","0x24a7042d","0x17eeb78","0x1923794","0x19236f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1912c54","0x24a7042d","0x17eeb78","0x1923794","0x19236f0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.487Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x1912c54","0x0","0x24a7045d","0x1912c54","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1912c54","0x0","0x24a7045d","0x1912c54","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:40.493Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x1912c54","0x0","0x24a705e5","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1912c54","0x0","0x24a705e5","0x1912c54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1912c54","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1912c54","hex":"01 00 00 00 00 00 00 00 00 00 9c 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.499Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.499Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.499Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.499Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.499Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51bf114","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51bf114","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.751Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x51bf114","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51bf114","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.757Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51bf114","0x0","0x24a7045d","0x51bf114","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:40.764Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51bf114","0x0","0x24a705e5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.770Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.770Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c1324","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c1324","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.781Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x51c1324","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c1324","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.789Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c1324","0x0","0x24a7045d","0x51c1324","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c1324","0x0","0x24a7045d","0x51c1324","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:40.796Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c1324","0x0","0x24a705e5","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c1324","0x0","0x24a705e5","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c1324","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 ed 87 94 84 d4 dc 01 06 0a 00 00 00 a0 ed 87 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c7954","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c7954","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.821Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c7954","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c7954","0x24a7042d","0x17eeb78","0x52170ec","0x5217048","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.827Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c7954","0x0","0x24a7045d","0x51c7954","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c7954","0x0","0x24a7045d","0x51c7954","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:40.832Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c7954","0x0","0x24a705e5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c7954","0x0","0x24a705e5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c7954","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 9c 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.837Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1917074","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.844Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.846Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1917074","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.851Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1917074","0x0","0x255c000d","0x1917074","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:40.857Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1917074","0x0","0x255c0055","0x1917074","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1917074","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1917074","hex":"01 00 00 00 00 00 00 00 00 00 9b 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:40.861Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.862Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.862Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1919284","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1919284","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:40.912Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x1919284","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1919284","0x255c009d","0x85efc8","0x51e993c","0x51e9898","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.920Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x1919284","0x0","0x255c000d","0x1919284","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1919284","0x0","0x255c000d","0x1919284","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:40.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x1919284","0x0","0x255c0055","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1919284","0x0","0x255c0055","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1919284","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1919284","hex":"01 00 34 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 35 a7 94 84 d4 dc 01 06 0a 00 00 00 70 35 a7 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:40.937Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:40.938Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:40.938Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.938Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:40.938Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","address":"0x9beea5","ecx":"0x5db38eab","esp":"0x666fe8c","args":["0x2209b38","0x666fea4","0x7508fcc9","0x2209b38","0x7508fcb0","0x666ff00","0x772482ae","0x2209b38","0x5c608fdb","0x0"],"stack":["0x9bf6b0","0x2209b38","0x666fea4","0x7508fcc9","0x2209b38","0x7508fcb0","0x666ff00","0x772482ae","0x2209b38","0x5c608fdb","0x0","0x0","0x2209b38","0x0","0x0","0x0","0x0","0x0"],"candidates":[],"time":"2026-04-25T07:24:40.942Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51f533c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51f533c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.049Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x51f533c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51f533c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.063Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51f533c","0x0","0x255c000d","0x51f533c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f533c","0x0","0x255c000d","0x51f533c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:41.079Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51f533c","0x0","0x255c0055","0x51f533c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f533c","0x0","0x255c0055","0x51f533c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f533c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 9d 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.091Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.092Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.092Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.093Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.093Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f3604","0x1","0x1","0x1","0x168","0x51c1324","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x1","0x168","0x51c1324","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.186Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x168","0x51c1324","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x168","0x51c1324","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:24:41.196Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x168","0x51c1324","0x0","0x255c000d","0x51c1324","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x168","0x51c1324","0x0","0x255c000d","0x51c1324","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:41.204Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x168","0x51c1324","0x0","0x255c0055","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x168","0x51c1324","0x0","0x255c0055","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c1324","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":360,"ptr":"0x51c1324","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f9 08 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fa 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T07:24:41.211Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.212Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.212Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.212Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.212Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f3604","0x1","0x1","0x2","0x55","0x51c7954","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x55","0x51c7954","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.226Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x55","0x51c7954","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x55","0x51c7954","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"}],"time":"2026-04-25T07:24:41.233Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x55","0x51c7954","0x0","0x255c000d","0x51c7954","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x55","0x51c7954","0x0","0x255c000d","0x51c7954","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:41.239Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x55","0x51c7954","0x0","0x255c0055","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x55","0x51c7954","0x0","0x255c0055","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c7954","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x51c7954","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":85,"ptr":"0x270001","hex":"00 00 00 a4 c8 01 00 00 00 00 00 7b 03 00 00 1c 00 00 00 cc ac 01 00 1f 00 00 00 01 00 00 00 a4 53 00 00 4a 00 00 00 46 00 00 00 f0 53 00 00 01 00 00 00 01 00 00 00 30 54 00 00 46 00 00 00 42 00 00 00 78 54 00 00 01 00 00 00 01 00 00 00 b0 54 00 00 56 00"}],"time":"2026-04-25T07:24:41.244Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.245Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.245Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.245Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.245Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c1324","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c1324","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.271Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x51c1324","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c1324","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.277Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51c1324","0x0","0x255c000d","0x51c1324","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c1324","0x0","0x255c000d","0x51c1324","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:41.283Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51c1324","0x0","0x255c0055","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c1324","0x0","0x255c0055","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c1324","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.288Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.289Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.289Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.289Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c242c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c242c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.298Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x51c242c","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c242c","0x24a7042d","0x17eeb78","0x5218244","0x52181a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.305Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c242c","0x0","0x24a7045d","0x51c242c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c242c","0x0","0x24a7045d","0x51c242c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:41.312Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c242c","0x0","0x24a705e5","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c242c","0x0","0x24a705e5","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c242c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c242c","hex":"01 00 34 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 87 d4 94 84 d4 dc 01 06 0a 00 00 00 00 87 d4 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.317Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffb","0x5c","0x51c7954","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x5c","0x51c7954","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.329Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.329Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.330Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.330Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.330Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffb","0x5c","0x51c7954","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x5c","0x51c7954","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"}],"time":"2026-04-25T07:24:41.341Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x5c","0x51c7954","0x0","0x255c000d","0x51c7954","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x5c","0x51c7954","0x0","0x255c000d","0x51c7954","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:41.351Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x5c","0x51c7954","0x0","0x255c0055","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x5c","0x51c7954","0x0","0x255c0055","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c7954","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":92,"ptr":"0x51c7954","hex":"01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06"}],"time":"2026-04-25T07:24:41.356Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.356Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.356Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.357Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.357Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffb","0x6c","0x18267cc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x6c","0x18267cc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52170f0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.371Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffb","0x6c","0x18267cc","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x6c","0x18267cc","0x255c009d","0x85efc8","0x52170ec","0x5217048","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"}],"time":"2026-04-25T07:24:41.381Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x6c","0x18267cc","0x0","0x255c000d","0x18267cc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x6c","0x18267cc","0x0","0x255c000d","0x18267cc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:41.392Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x6c","0x18267cc","0x0","0x255c0055","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x6c","0x18267cc","0x0","0x255c0055","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18267cc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x18267cc","hex":"01 00 3e 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 03 00 00 00 03 00 00 00 c0 00 f0 a1 67 51 84 d4 dc 01 02 16 cd 5b 07"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":108,"ptr":"0x3e0001","hex":"63 74 78 20 00 00 00 01 00 00 00 48 04 00 00 64 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 14 00 00 00 01 00 00 00 02 00 00 00 34 00 00 00 e4 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 c0 01 00 00 e0 00 00 00 10 00 00 00 07 00 00 00 74"}],"time":"2026-04-25T07:24:41.401Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffb","0x2c2","0x51c463c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffb","0x2c2","0x51c463c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5171f40","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eefb0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x1919284","0x206","0x6","0x8ac17c","0x23ef174"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x1919284","0x206","0x6","0x8ac17c","0x23ef174","0x76fc4ef5","0x9c1b20","0x51e9940","0x6","0xd4f56be4","0x8ac17c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8ac17c","hex":"28 8b 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888b28","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.432Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x62bee70","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x94fb44","0x62bf034"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x191a38c","0x206","0x6","0x94fb44","0x62bf034","0x76fc4ef5","0x9c1b20","0x51bea88","0x6","0xd0e06aa4","0x94fb44","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94fb44","hex":"30 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888930","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94fb44","hex":"30 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888930","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.439Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.439Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.439Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.439Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.440Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffb","0x2c2","0x51c463c","0x24a7042d","0x17eeb78","0x5171f3c","0x5171e98","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x2c2","0x51c463c","0x24a7042d","0x17eeb78","0x5171f3c","0x5171e98","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"}],"time":"2026-04-25T07:24:41.461Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2c2","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2c2","0x51c463c","0x0","0x24a7045d","0x51c463c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:41.478Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2c2","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2c2","0x51c463c","0x0","0x24a705e5","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x51c463c","hex":"01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":706,"ptr":"0x2940001","hex":"00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 73 00 75 00 63 00 63 00 65 00 73 00 73 00 66 00 75 00 6c 00 6c 00 79 00 20 00 77 00 72 00 6f 00 74 00 65 00 20 00 61 00 20 00 72 00 65 00 64 00 75 00 6e 00 64 00 61 00 6e 00 74 00 20 00 63 00 6f 00 70 00 79 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 69 00 6e 00 66 00 6f 00 72 00 6d 00 61 00 74 00 69 00 6f 00 6e 00 2e 00 0d 00 0a 00 54 00 68 00 69 00 73 00 20 00 77 00 61 00 73 00 20 00 64 00 6f 00 6e 00 65 00 20 00 62 00 65 00 63 00 61 00 75 00 73 00 65 00 20 00 74 00 68 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 73 00 79 00 73 00 74 00 65 00 6d 00 20 00 65 00 6e 00 63 00 6f 00 75 00 6e 00 74 00 65 00 72 00 65 00 64 00 20 00 61 00 20 00 66 00 61 00 69 00 6c 00 75 00 72 00 65 00 20 00 6f 00 6e 00 20 00 61 00 20 00 6d 00 65 00 6d 00 62 00 65 00 72 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 75 00 6c 00 74 00 2d 00 74 00 6f 00 6c 00 65 00 72 00 61 00 6e 00 74 00 20 00 76 00 6f 00 6c 00 75 00 6d 00 65 00 2c 00 20 00 62 00 75 00 74 00 20 00 77 00 61 00 73 00 20 00 6e 00 6f 00 74 00 20 00 61 00 62 00 6c 00 65 00 20 00 74 00 6f 00 20 00 72 00 65 00 61 00 73 00 73 00 69 00 67 00 6e 00 20 00 74 00 68 00 65 00 20 00 66 00 61 00 69 00 6c 00 69 00 6e 00 67 00 20 00 61 00 72 00 65 00 61 00 20 00 6f 00 66 00 20 00 74 00 68 00 65 00 20 00 64 00 65 00 76 00 69 00 63 00 65 00 2e 00 0d 00 0a 00 00 00 00 00 58 01 01 00 7b 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 54 00 79 00 70 00 65 00 20 00 4d 00 69 00 73 00 6d 00 61 00 74 00 63 00 68 00 7d 00 0d 00 0a 00 54 00 68 00 65 00 20 00 69 00 6d 00 61 00 67 00 65 00 20 00 66 00 69 00 6c 00 65 00 20 00 25 00 68 00 73 00 20 00 69 00 73 00 20 00 76 00 61 00 6c 00 69 00 64 00 2c 00 20 00 62 00 75 00 74 00 20 00 69 00 73 00 20 00 66 00 6f 00 72 00 20 00 61 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 20 00 74 00 79 00 70 00 65 00 20 00 6f 00 74 00 68 00 65 00 72 00 20 00 74 00 68 00 61 00 6e 00 20 00 74 00 68 00 65 00 20 00 63 00 75 00 72 00 72 00 65 00 6e 00 74 00 20 00 6d 00 61 00 63 00 68 00 69 00 6e 00 65 00 2e 00 20 00 53 00 65 00 6c 00 65"}],"time":"2026-04-25T07:24:41.493Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.501Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f3604","0x1","0x1","0x2","0x2e","0x51c242c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x2e","0x51c242c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.508Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.508Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.509Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.509Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.509Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eef40","args":["0x1","0x1","0x1","0x2e","0x1919284","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1919284","0x27e700f5","0x23eefb0","0x51e993c","0x51e9898","0x7700459e","0x23eef48","0x23eeffc","0x23ef164","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.515Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeef8","args":["0x1","0x1200","0x2e","0x1919284","0x0","0x27e70065","0x1919284","0x9effe8","0x1","0x23eefac"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1919284","0x0","0x27e70065","0x1919284","0x9effe8","0x1","0x23eefac","0x23eef40","0x1","0x1","0x23eefa0","0x9cf3a6","0xffffffff","0x23eefac"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23ef164","hex":"ac"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefac","hex":"d8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eefd8","hex":"74"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eefa0","hex":"64"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23ef164","hex":"ac"}],"time":"2026-04-25T07:24:41.522Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eee94","args":["0x1","0x2e","0x1919284","0x0","0x27e701ad","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1919284","0x0","0x27e701ad","0x1919284","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1919284","0x9effe8","0x23eef3c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1919284","hex":"01 00 00 00 00 00 00 00 00 00 9e 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.527Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffb","0x97","0x18947fc","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffb","0x97","0x18947fc","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5217c80","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.536Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.537Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.537Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.537Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.537Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x62bee00","args":["0x1","0x1","0x1","0x2e","0x191a38c","0x23f20135","0x62bee70","0x51bea84","0x51be9e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191a38c","0x23f20135","0x62bee70","0x51bea84","0x51be9e0","0x7700459e","0x62bee08","0x62beebc","0x62bf024","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.543Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x62bedb8","args":["0x1","0x1200","0x2e","0x191a38c","0x0","0x23f202a5","0x191a38c","0x9effe8","0x1","0x62bee6c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191a38c","0x0","0x23f202a5","0x191a38c","0x9effe8","0x1","0x62bee6c","0x62bee00","0x1","0x1","0x62bee60","0x9cf3a6","0xffffffff","0x62bee6c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62bee6c","hex":"98"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x62bee98","hex":"34"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62bee60","hex":"24"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x62bf024","hex":"6c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62bee6c","hex":"98"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x62bee98","hex":"34"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62bee60","hex":"24"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x62bf024","hex":"6c"}],"time":"2026-04-25T07:24:41.550Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x62bed54","args":["0x1","0x2e","0x191a38c","0x0","0x23f202ed","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191a38c","0x0","0x23f202ed","0x191a38c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191a38c","0x9effe8","0x62bedfc"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191a38c","hex":"01 00 00 00 00 00 00 00 00 00 9d 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.555Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.555Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.555Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.556Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.556Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x255c009d","0x85efc8","0x524710c","0x5247068","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.563Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x255c000d","0x182019c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:41.570Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x255c0055","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 26 f9 94 84 d4 dc 01 06 0a 00 00 00 00 26 f9 94 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.575Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.575Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.575Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.576Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.576Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x2e","0x51c242c","0x23a401c5","0x67deea0","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c242c","0x23a401c5","0x67deea0","0x5218244","0x52181a0","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.581Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51c242c","0x0","0x23a40175","0x51c242c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c242c","0x0","0x23a40175","0x51c242c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:41.588Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51c242c","0x0","0x23a402bd","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c242c","0x0","0x23a402bd","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c242c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.593Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.593Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.593Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.593Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.593Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffb","0x97","0x18947fc","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x97","0x18947fc","0x24a7042d","0x17eeb78","0x5217c7c","0x5217bd8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"}],"time":"2026-04-25T07:24:41.603Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x97","0x18947fc","0x0","0x24a7045d","0x18947fc","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x97","0x18947fc","0x0","0x24a7045d","0x18947fc","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:41.613Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x97","0x18947fc","0x0","0x24a705e5","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x97","0x18947fc","0x0","0x24a705e5","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18947fc","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x18947fc","hex":"01 00 69 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 fe df 83 9d 5f 39 df 48 bd 6b 41 50 aa a5 de fa e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":151,"ptr":"0x690001","hex":"00 00 00 14 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 27 00 08 67 27 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 16 00 79 00 79 00 79 00 79 00 27 00 74 5e 27 00 4d 00 4d 00 27 00 08 67 27 00 64 00 64 00 27 00 e5 65 27 00 20 00 64 00 64 00 64 00 64 00 00 00 0a 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 00 00 0f 00 79 00 79 00 79 00 79 00 74 5e 4d 00 4d 00 4d 00 64 00 e5 65 20 00 64 00 64 00 64 00 64 00"}],"time":"2026-04-25T07:24:41.619Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.619Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.620Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.620Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.620Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51bf114","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51bf114","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187cd18","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.699Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x2e","0x51bf114","0x23a401c5","0x67deea0","0x187cd14","0x187cc70","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51bf114","0x23a401c5","0x67deea0","0x187cd14","0x187cc70","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.705Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51bf114","0x0","0x23a40175","0x51bf114","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51bf114","0x0","0x23a40175","0x51bf114","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:41.711Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51bf114","0x0","0x23a402bd","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51bf114","0x0","0x23a402bd","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 9f 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.715Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.716Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.716Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.716Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.716Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f3604","0x1","0x1","0x1","0x2e","0x51c242c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x1","0x2e","0x51c242c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187cd18","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.731Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x51c242c","0x23a401c5","0x67deea0","0x187cd14","0x187cc70","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c242c","0x23a401c5","0x67deea0","0x187cd14","0x187cc70","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.737Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51c242c","0x0","0x23a40175","0x51c242c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c242c","0x0","0x23a40175","0x51c242c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:41.744Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51c242c","0x0","0x23a402bd","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c242c","0x0","0x23a402bd","0x51c242c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c242c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c242c","hex":"01 00 00 00 00 00 00 00 00 00 9f 22 09 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.748Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.748Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.749Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.749Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.749Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18301a4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18301a4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x51bbc48","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.759Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x18301a4","0x23a401c5","0x67deea0","0x51bbc44","0x51bbba0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18301a4","0x23a401c5","0x67deea0","0x51bbc44","0x51bbba0","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.765Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18301a4","0x0","0x23a40175","0x18301a4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18301a4","0x0","0x23a40175","0x18301a4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:41.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18301a4","0x0","0x23a402bd","0x18301a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18301a4","0x0","0x23a402bd","0x18301a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18301a4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18301a4","hex":"01 00 34 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.777Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.777Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.778Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.778Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.778Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c463c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c463c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5171f40","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.793Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffe","0x62","0x51c463c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c463c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.800Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x51c463c","0x0","0x23a40175","0x51c463c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c463c","0x0","0x23a40175","0x51c463c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:41.808Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x51c463c","0x0","0x23a402bd","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c463c","0x0","0x23a402bd","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 f9 20 95 84 d4 dc 01 06 0a 00 00 00 40 d2 20 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.816Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18289dc","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18289dc","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51bb0b8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.827Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.828Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.828Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x18289dc","0x24a7042d","0x17eeb78","0x51bb0b4","0x51bb010","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18289dc","0x24a7042d","0x17eeb78","0x51bb0b4","0x51bb010","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.834Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18289dc","0x0","0x24a7045d","0x18289dc","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18289dc","0x0","0x24a7045d","0x18289dc","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:41.840Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18289dc","0x0","0x24a705e5","0x18289dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18289dc","0x0","0x24a705e5","0x18289dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18289dc","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.845Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.846Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.846Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.846Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.846Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1897b14","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1897b14","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.912Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x1897b14","0x24a7042d","0x17eeb78","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1897b14","0x24a7042d","0x17eeb78","0x5172504","0x5172460","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.918Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x1897b14","0x0","0x24a7045d","0x1897b14","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1897b14","0x0","0x24a7045d","0x1897b14","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:41.924Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x1897b14","0x0","0x24a705e5","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1897b14","0x0","0x24a705e5","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1897b14","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1897b14","hex":"01 00 34 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 00 f3 3f 95 84 d4 dc 01 06 0a 00 00 00 00 f3 3f 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:41.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18914e4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18914e4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187e438","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:41.939Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.939Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.940Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x18914e4","0x23a401c5","0x67deea0","0x187e434","0x187e390","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18914e4","0x23a401c5","0x67deea0","0x187e434","0x187e390","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.946Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18914e4","0x0","0x23a40175","0x18914e4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18914e4","0x0","0x23a40175","0x18914e4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:41.952Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18914e4","0x0","0x23a402bd","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18914e4","0x0","0x23a402bd","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18914e4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:41.956Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:41.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:41.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.957Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:41.957Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51c021c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51c021c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.021Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x2e","0x51c021c","0x23a401c5","0x67deea0","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c021c","0x23a401c5","0x67deea0","0x5218244","0x52181a0","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.026Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51c021c","0x0","0x23a40175","0x51c021c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c021c","0x0","0x23a40175","0x51c021c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51c021c","0x0","0x23a402bd","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c021c","0x0","0x23a402bd","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c021c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 a0 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.036Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.037Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.037Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.037Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.037Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f3604","0x1","0x1","0x2","0x56","0x18445cc","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x56","0x18445cc","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187e438","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.080Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x56","0x18445cc","0x23a401c5","0x67deea0","0x187e434","0x187e390","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x56","0x18445cc","0x23a401c5","0x67deea0","0x187e434","0x187e390","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"}],"time":"2026-04-25T07:24:42.086Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x56","0x18445cc","0x0","0x23a40175","0x18445cc","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x56","0x18445cc","0x0","0x23a40175","0x18445cc","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.092Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x56","0x18445cc","0x0","0x23a402bd","0x18445cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x56","0x18445cc","0x0","0x23a402bd","0x18445cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18445cc","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x18445cc","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":86,"ptr":"0x280001","hex":"00 6e 00 2d 00 63 00 6f 00 72 00 65 00 2d 00 6c 00 69 00 63 00 65 00 6e 00 73 00 65 00 6d 00 61 00 6e 00 61 00 67 00 65 00 72 00 2d 00 6c 00 31 00 2d 00 31 00 2d 00 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 65 00 78 00 74 00 2d"}],"time":"2026-04-25T07:24:42.099Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.099Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.099Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.099Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.100Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffb","0x33","0x182019c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x33","0x182019c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5171f40","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.125Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffb","0x33","0x182019c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x33","0x182019c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"}],"time":"2026-04-25T07:24:42.130Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x33","0x182019c","0x0","0x23a40175","0x182019c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x33","0x182019c","0x0","0x23a40175","0x182019c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.136Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x33","0x182019c","0x0","0x23a402bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x33","0x182019c","0x0","0x23a402bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":51,"ptr":"0x182019c","hex":"01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"}],"time":"2026-04-25T07:24:42.141Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.141Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.141Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.141Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.142Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffb","0x58","0x18914e4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x58","0x18914e4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187e438","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.154Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffb","0x58","0x18914e4","0x23a401c5","0x67deea0","0x187e434","0x187e390","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x58","0x18914e4","0x23a401c5","0x67deea0","0x187e434","0x187e390","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"}],"time":"2026-04-25T07:24:42.163Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x58","0x18914e4","0x0","0x23a40175","0x18914e4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x58","0x18914e4","0x0","0x23a40175","0x18914e4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.172Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x58","0x18914e4","0x0","0x23a402bd","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x58","0x18914e4","0x0","0x23a402bd","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18914e4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x18914e4","hex":"01 00 2a 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 a6 bd 8b 67 cc fa c5 4f a7 71 ae 1f e9 14 c3 db 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"}],"time":"2026-04-25T07:24:42.178Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.178Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.178Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.178Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.179Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x58","0x18467dc","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x58","0x18467dc","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x51e7690","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.190Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x58","0x18467dc","0x23a401c5","0x67deea0","0x51e768c","0x51e75e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x58","0x18467dc","0x23a401c5","0x67deea0","0x51e768c","0x51e75e8","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"}],"time":"2026-04-25T07:24:42.200Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x58","0x18467dc","0x0","0x23a40175","0x18467dc","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x58","0x18467dc","0x0","0x23a40175","0x18467dc","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.209Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x58","0x18467dc","0x0","0x23a402bd","0x18467dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x58","0x18467dc","0x0","0x23a402bd","0x18467dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18467dc","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":88,"ptr":"0x18467dc","hex":"01 00 2a 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 05 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 17 cd 5b 07"}],"time":"2026-04-25T07:24:42.216Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.217Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.217Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.217Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.218Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18936f4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18936f4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5218248","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.242Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x2e","0x18936f4","0x23a401c5","0x67deea0","0x5218244","0x52181a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18936f4","0x23a401c5","0x67deea0","0x5218244","0x52181a0","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.247Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.253Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18936f4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 a2 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.258Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18478e4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18478e4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e7690","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.266Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.266Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.266Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.267Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f3604","0x1","0x1","0x2","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.274Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x18478e4","0x24a7042d","0x17eeb78","0x51e768c","0x51e75e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18478e4","0x24a7042d","0x17eeb78","0x51e768c","0x51e75e8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.280Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x18478e4","0x0","0x24a7045d","0x18478e4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18478e4","0x0","0x24a7045d","0x18478e4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:42.287Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x18478e4","0x0","0x24a705e5","0x18478e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18478e4","0x0","0x24a705e5","0x18478e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18478e4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18478e4","hex":"01 00 34 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.292Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.292Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.292Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.292Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x182abec","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182abec","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.298Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:42.305Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a1 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.310Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x1896a0c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x1896a0c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5172ad0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.317Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.318Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.318Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.318Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.318Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x1896a0c","0x24a7042d","0x17eeb78","0x5172acc","0x5172a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x1896a0c","0x24a7042d","0x17eeb78","0x5172acc","0x5172a28","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.325Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x1896a0c","0x0","0x24a7045d","0x1896a0c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1896a0c","0x0","0x24a7045d","0x1896a0c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:42.331Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x1896a0c","0x0","0x24a705e5","0x1896a0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1896a0c","0x0","0x24a705e5","0x1896a0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1896a0c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 cf 6c 95 84 d4 dc 01 06 0a 00 00 00 60 cf 6c 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.336Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.337Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.337Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.337Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.337Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51c7954","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51c7954","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5175348","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.362Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c7954","0x24a7042d","0x17eeb78","0x5175344","0x51752a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c7954","0x24a7042d","0x17eeb78","0x5175344","0x51752a0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.378Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c7954","0x0","0x24a7045d","0x51c7954","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c7954","0x0","0x24a7045d","0x51c7954","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:42.395Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c7954","0x0","0x24a705e5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c7954","0x0","0x24a705e5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c7954","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c7954","hex":"01 00 00 00 00 00 00 00 00 00 a2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.429Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182019c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5171f40","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.465Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.465Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.465Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.465Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.466Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x182abec","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182abec","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.481Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:42.496Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 a3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.504Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.504Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.505Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x182019c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182019c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.517Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x182019c","0x0","0x23a40175","0x182019c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x23a40175","0x182019c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.531Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x182019c","0x0","0x23a402bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x23a402bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f0 8b 95 84 d4 dc 01 06 0a 00 00 00 20 f0 8b 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.545Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.545Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.546Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.546Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.546Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18925ec","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18925ec","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.615Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x2e","0x18925ec","0x23a401c5","0x67deea0","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18925ec","0x23a401c5","0x67deea0","0x187c74c","0x187c6a8","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.623Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18925ec","0x0","0x23a40175","0x18925ec","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18925ec","0x0","0x23a40175","0x18925ec","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.629Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18925ec","0x0","0x23a402bd","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18925ec","0x0","0x23a402bd","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18925ec","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 a3 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.633Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.634Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.634Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.634Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.634Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c1324","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c1324","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5172ad0","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.764Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x51c1324","0x23a401c5","0x67deea0","0x5172acc","0x5172a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c1324","0x23a401c5","0x67deea0","0x5172acc","0x5172a28","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x51c1324","0x0","0x23a40175","0x51c1324","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c1324","0x0","0x23a40175","0x51c1324","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x51c1324","0x0","0x23a402bd","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c1324","0x0","0x23a402bd","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c1324","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c1324","hex":"01 00 34 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.786Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.786Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x182019c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x182019c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5171f40","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.794Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffe","0x62","0x182019c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x182019c","0x23a401c5","0x67deea0","0x5171f3c","0x5171e98","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.800Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x182019c","0x0","0x23a40175","0x182019c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x23a40175","0x182019c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.806Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x182019c","0x0","0x23a402bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x23a402bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 41 b9 95 84 d4 dc 01 06 0a 00 00 00 b0 41 b9 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.811Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.812Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.812Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.812Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.812Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18434c4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18434c4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.898Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x18434c4","0x23a401c5","0x67deea0","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18434c4","0x23a401c5","0x67deea0","0x52176b4","0x5217610","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.904Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18434c4","0x0","0x23a40175","0x18434c4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18434c4","0x0","0x23a40175","0x18434c4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:42.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18434c4","0x0","0x23a402bd","0x18434c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18434c4","0x0","0x23a402bd","0x18434c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18434c4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.915Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1896a0c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1896a0c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5172ad0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.923Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18212a4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18212a4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5171f40","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.933Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.935Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x1896a0c","0x24a7042d","0x17eeb78","0x5172acc","0x5172a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1896a0c","0x24a7042d","0x17eeb78","0x5172acc","0x5172a28","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.941Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x1896a0c","0x0","0x24a7045d","0x1896a0c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1896a0c","0x0","0x24a7045d","0x1896a0c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:42.948Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x1896a0c","0x0","0x24a705e5","0x1896a0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1896a0c","0x0","0x24a705e5","0x1896a0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1896a0c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1896a0c","hex":"01 00 34 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 80 89 d8 95 84 d4 dc 01 06 0a 00 00 00 80 89 d8 95 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:42.954Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.955Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.955Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18212a4","0x255c009d","0x85efc8","0x5171f3c","0x5171e98","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18212a4","0x255c009d","0x85efc8","0x5171f3c","0x5171e98","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.960Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18212a4","0x0","0x255c000d","0x18212a4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18212a4","0x0","0x255c000d","0x18212a4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:42.967Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18212a4","0x0","0x255c0055","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18212a4","0x0","0x255c0055","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.971Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:42.972Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:42.972Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.972Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:42.972Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51f8654","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51f8654","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51eaa98","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:42.982Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x51f8654","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51f8654","0x255c009d","0x85efc8","0x51eaa94","0x51ea9f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.988Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51f8654","0x0","0x255c000d","0x51f8654","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f8654","0x0","0x255c000d","0x51f8654","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:42.995Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51f8654","0x0","0x255c0055","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f8654","0x0","0x255c0055","0x51f8654","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f8654","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f8654","hex":"01 00 00 00 00 00 00 00 00 00 a4 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:42.999Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.000Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.000Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.000Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.000Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18423bc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18423bc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.253Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18423bc","0x255c009d","0x85efc8","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18423bc","0x255c009d","0x85efc8","0x52176b4","0x5217610","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.260Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18423bc","0x0","0x255c000d","0x18423bc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18423bc","0x0","0x255c000d","0x18423bc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18423bc","0x0","0x255c0055","0x18423bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18423bc","0x0","0x255c0055","0x18423bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18423bc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18423bc","hex":"01 00 34 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.273Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.274Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.274Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.282Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x182abec","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x182abec","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.288Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.294Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 b4 05 96 84 d4 dc 01 06 0a 00 00 00 00 b4 05 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.299Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.299Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.300Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18434c4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18434c4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.337Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x18434c4","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18434c4","0x24a7042d","0x17eeb78","0x52176b4","0x5217610","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.344Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18434c4","0x0","0x24a7045d","0x18434c4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18434c4","0x0","0x24a7045d","0x18434c4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:43.350Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18434c4","0x0","0x24a705e5","0x18434c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18434c4","0x0","0x24a705e5","0x18434c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18434c4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18434c4","hex":"01 00 00 00 00 00 00 00 00 00 a6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.354Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18412b4","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18412b4","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.362Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.363Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.363Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.364Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.364Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x18412b4","0x255c009d","0x85efc8","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18412b4","0x255c009d","0x85efc8","0x187c74c","0x187c6a8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.374Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18412b4","0x0","0x255c000d","0x18412b4","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18412b4","0x0","0x255c000d","0x18412b4","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.384Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18412b4","0x0","0x255c0055","0x18412b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18412b4","0x0","0x255c0055","0x18412b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18412b4","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18412b4","hex":"01 00 00 00 00 00 00 00 00 00 a7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.392Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.392Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.393Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.393Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.393Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.410Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.415Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.421Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 86 24 96 84 d4 dc 01 06 0a 00 00 00 a0 86 24 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.426Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.426Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.426Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.426Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.426Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51f975c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51f975c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.447Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x51f975c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51f975c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.453Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51f975c","0x0","0x255c000d","0x51f975c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f975c","0x0","0x255c000d","0x51f975c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.459Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51f975c","0x0","0x255c0055","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f975c","0x0","0x255c0055","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f975c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f975c","hex":"01 00 00 00 00 00 00 00 00 00 a5 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.464Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.464Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18925ec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18925ec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.762Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18925ec","0x255c009d","0x85efc8","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18925ec","0x255c009d","0x85efc8","0x187c74c","0x187c6a8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.769Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18925ec","0x0","0x255c000d","0x18925ec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18925ec","0x0","0x255c000d","0x18925ec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.776Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18925ec","0x0","0x255c0055","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18925ec","0x0","0x255c0055","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18925ec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.782Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.782Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.783Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.783Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.783Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x524aae0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.791Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x191817c","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x191817c","0x255c009d","0x85efc8","0x524aadc","0x524aa38","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.804Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b1 51 96 84 d4 dc 01 06 0a 00 00 00 20 b1 51 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.809Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.810Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.810Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c1324","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c1324","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x52176b8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.882Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x51c1324","0x255c009d","0x85efc8","0x52176b4","0x5217610","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c1324","0x255c009d","0x85efc8","0x52176b4","0x5217610","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.888Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51c1324","0x0","0x255c000d","0x51c1324","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c1324","0x0","0x255c000d","0x51c1324","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:43.897Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51c1324","0x0","0x255c0055","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c1324","0x0","0x255c0055","0x51c1324","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c1324","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c1324","hex":"01 00 00 00 00 00 00 00 00 00 a9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.903Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18412b4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18412b4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.912Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.912Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.914Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.914Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x18412b4","0x23a401c5","0x67deea0","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18412b4","0x23a401c5","0x67deea0","0x187c74c","0x187c6a8","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.922Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18412b4","0x0","0x23a40175","0x18412b4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18412b4","0x0","0x23a40175","0x18412b4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:43.931Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18412b4","0x0","0x23a402bd","0x18412b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18412b4","0x0","0x23a402bd","0x18412b4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18412b4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18412b4","hex":"01 00 34 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 f8 70 96 84 d4 dc 01 06 0a 00 00 00 f0 f8 70 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:43.939Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.939Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.940Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18212a4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18212a4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.950Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x18212a4","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18212a4","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.958Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18212a4","0x0","0x24a7045d","0x18212a4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18212a4","0x0","0x24a7045d","0x18212a4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:43.968Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18212a4","0x0","0x24a705e5","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18212a4","0x0","0x24a705e5","0x18212a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18212a4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18212a4","hex":"01 00 00 00 00 00 00 00 00 00 a8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:43.974Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f3604","0x1","0x1","0x1","0x68","0x18936f4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x1","0x68","0x18936f4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187de70","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:43.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:43.983Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:43.983Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.983Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:43.983Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x68","0x18936f4","0x23a401c5","0x67deea0","0x187de6c","0x187ddc8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x68","0x18936f4","0x23a401c5","0x67deea0","0x187de6c","0x187ddc8","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:24:43.990Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x68","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x68","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:43.997Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x68","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x68","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18936f4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":104,"ptr":"0x18936f4","hex":"01 00 3a 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 00 00 00 22 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 02 00 00 00"}],"time":"2026-04-25T07:24:44.002Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18914e4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18914e4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5174d80","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.010Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.010Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.010Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.011Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.011Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x18914e4","0x24a7042d","0x17eeb78","0x5174d7c","0x5174cd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18914e4","0x24a7042d","0x17eeb78","0x5174d7c","0x5174cd8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.016Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18914e4","0x0","0x24a7045d","0x18914e4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18914e4","0x0","0x24a7045d","0x18914e4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:44.024Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18914e4","0x0","0x24a705e5","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18914e4","0x0","0x24a705e5","0x18914e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18914e4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18914e4","hex":"01 00 00 00 00 00 00 00 00 00 a6 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.029Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.030Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f3604","0x1","0x1","0x2","0x53","0x51f975c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f3604","0x1","0x1","0x2","0x53","0x51f975c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":5,"ptrIndex":6,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.042Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x53","0x51f975c","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x53","0x51f975c","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":4,"ptrIndex":5,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"}],"time":"2026-04-25T07:24:44.050Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x53","0x51f975c","0x0","0x24a7045d","0x51f975c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x53","0x51f975c","0x0","0x24a7045d","0x51f975c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:44.060Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x53","0x51f975c","0x0","0x24a705e5","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x53","0x51f975c","0x0","0x24a705e5","0x51f975c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f975c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"args.byref","sizeIndex":1,"ptrIndex":2,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x51f975c","hex":"01 00 25 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e8 58 f5 87 bb 39 af 42 b8 7e 0f b1 79 58 b1 06 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"},{"source":"stack.byref","sizeIndex":2,"ptrIndex":3,"size":83,"ptr":"0x250001","hex":"02 00 00 4e 61 bc 00 1f 00 00 00 00 00 00 00 15 ec 65 01 10 00 00 00 00 00 00 00 3e 55 6b 01 20 00 00 00 00 00 00 00 8c 25 a4 01 10 00 00 00 00 00 00 00 92 d4 c4 01 20 00 00 00 00 00 00 00 be 23 ec 01 20 00 00 00 00 00 00 00 d2 76 0f 02 2f 00 00 00"}],"time":"2026-04-25T07:24:44.067Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffb","0x2e","0x18478e4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffb","0x2e","0x18478e4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5172ad0","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.075Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.076Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffb","0x2e","0x18947fc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffb","0x2e","0x18947fc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e7c58","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.083Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffb","0x2e","0x18478e4","0x23a401c5","0x67deea0","0x5172acc","0x5172a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x2e","0x18478e4","0x23a401c5","0x67deea0","0x5172acc","0x5172a28","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.089Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18478e4","0x0","0x23a40175","0x18478e4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18478e4","0x0","0x23a40175","0x18478e4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:44.095Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18478e4","0x0","0x23a402bd","0x18478e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18478e4","0x0","0x23a402bd","0x18478e4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18478e4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18478e4","hex":"01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.099Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.100Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.100Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.100Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.100Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffb","0x2e","0x18947fc","0x255c009d","0x85efc8","0x51e7c54","0x51e7bb0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffb","0x2e","0x18947fc","0x255c009d","0x85efc8","0x51e7c54","0x51e7bb0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.106Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18947fc","0x0","0x255c000d","0x18947fc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18947fc","0x0","0x255c000d","0x18947fc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:44.112Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18947fc","0x0","0x255c0055","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18947fc","0x0","0x255c0055","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18947fc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18947fc","hex":"01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.117Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.117Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.118Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.118Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.118Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee9a4","args":["0x1","0x1","0x1","0x51","0x94e810","0x24a7050d","0x17eea68","0x17eea90","0x2209b38","0x0"],"stack":["0x9be1db","0x1","0x1","0x1","0x51","0x94e810","0x24a7050d","0x17eea68","0x17eea90","0x2209b38","0x0","0x3","0x2","0x70ec0005","0x21f3c50","0x9d2b7c","0x23","0x21f3c50"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"args.direct","sizeIndex":11,"ptrIndex":12,"size":2,"ptr":"0x70ec0005","hex":"00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":12,"ptrIndex":13,"size":2,"ptr":"0x70ec0005","hex":"00 00"},{"source":"stack.direct","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x21f3c50","hex":"16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.byref","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x1000116","hex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"}],"time":"2026-04-25T07:24:44.125Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee95c","args":["0x1","0x1200","0x51","0x94e810","0x0","0x24a706f9","0x94e810","0x70ec0110","0x51","0x17eea54"],"stack":["0x9bdd43","0x1","0x1200","0x51","0x94e810","0x0","0x24a706f9","0x94e810","0x70ec0110","0x51","0x17eea54","0x17ee9a4","0x51","0x1","0x17eea48","0x9cf3a6","0xffffffff","0x17eea54"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x17eea54","hex":"b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x17eeab0","hex":"20 eb 7e 01 7f 03 9c 00 f0 2b 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea48","hex":"14"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb14","hex":"78"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x17eea54","hex":"b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x17eeab0","hex":"20 eb 7e 01 7f 03 9c 00 f0 2b 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea48","hex":"14"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb14","hex":"78"}],"time":"2026-04-25T07:24:44.132Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee8f8","args":["0x1","0x51","0x94e810","0x0","0x24a70601","0x94e810","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x51","0x94e810","0x0","0x24a70601","0x94e810","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x94e810","0x9effe8","0x17ee9a0"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"}],"time":"2026-04-25T07:24:44.137Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.137Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.137Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.138Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee9a4","args":["0x1","0x1","0x2","0x51","0x94e810","0x24a7050d","0x17eea68","0x17eea90","0x2209b38","0x77260000"],"stack":["0x9be1db","0x1","0x1","0x2","0x51","0x94e810","0x24a7050d","0x17eea68","0x17eea90","0x2209b38","0x77260000","0x3","0x2","0x21f0005","0x21f3c50","0x9d2b7c","0x23","0x21f3c50"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"args.direct","sizeIndex":11,"ptrIndex":12,"size":2,"ptr":"0x21f0005","hex":"f3 01"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.direct","sizeIndex":12,"ptrIndex":13,"size":2,"ptr":"0x21f0005","hex":"f3 01"},{"source":"stack.direct","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x21f3c50","hex":"16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.byref","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x1000116","hex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"}],"time":"2026-04-25T07:24:44.144Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee95c","args":["0x1","0x1200","0x51","0x94e810","0x0","0x24a706f9","0x94e810","0x70ec0110","0x51","0x17eea54"],"stack":["0x9bdd43","0x1","0x1200","0x51","0x94e810","0x0","0x24a706f9","0x94e810","0x70ec0110","0x51","0x17eea54","0x17ee9a4","0x51","0x1","0x17eea48","0x9cf3a6","0xffffffff","0x17eea54"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x17eea54","hex":"b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x17eeab0","hex":"20 eb 7e 01 7f 03 9c 00 20 33 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea48","hex":"14"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb14","hex":"78"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x17eea54","hex":"b0 ea 7e 01 96 e5 9b 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 05 00 00 00 e8 ff 9e 00 c8 bf 26 01 fb 7f 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x17eeab0","hex":"20 eb 7e 01 7f 03 9c 00 20 33 1f 02 01 00 00 00 79 04 a7 24 a8 01 9f 00 c4 70 1e 05 00 00 00 00 c8 bf 26 01 5e 80 fe 70 01 00 00 00 70 eb 7e 01 18 eb 7e 01 ba 02 22 77 a8 01 9f 00 c4 70 1e 05 00 00 00 00 08 eb 7e 01 4d 5a fe 70 00 00 00 00 00"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea48","hex":"14"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb14","hex":"78"}],"time":"2026-04-25T07:24:44.152Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee8f8","args":["0x1","0x51","0x94e810","0x0","0x24a70601","0x94e810","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x51","0x94e810","0x0","0x24a70601","0x94e810","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x94e810","0x9effe8","0x17ee9a0"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94e810","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 3e 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 00 00 26 77 03 00 00 00 02 00 00 00 05 00 1f 02"}],"time":"2026-04-25T07:24:44.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.158Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.158Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.158Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","retval":"0x0","time":"2026-04-25T07:24:44.158Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e7690","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.254Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x24a7042d","0x17eeb78","0x51e768c","0x51e75e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x24a7042d","0x17eeb78","0x51e768c","0x51e75e8","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.259Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c8a5c","0x0","0x24a7045d","0x51c8a5c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c8a5c","0x0","0x24a7045d","0x51c8a5c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:44.265Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c8a5c","0x0","0x24a705e5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c8a5c","0x0","0x24a705e5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.271Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.271Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c7954","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c7954","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.281Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x51c7954","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c7954","0x24a7042d","0x17eeb78","0x51e70c4","0x51e7020","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.288Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c7954","0x0","0x24a7045d","0x51c7954","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c7954","0x0","0x24a7045d","0x51c7954","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:44.294Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c7954","0x0","0x24a705e5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c7954","0x0","0x24a705e5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c7954","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 4a 9e 96 84 d4 dc 01 06 0a 00 00 00 80 4a 9e 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51cdf84","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51cdf84","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.324Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51cdf84","0x24a7042d","0x17eeb78","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51cdf84","0x24a7042d","0x17eeb78","0x517590c","0x5175868","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.332Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51cdf84","0x0","0x24a7045d","0x51cdf84","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cdf84","0x0","0x24a7045d","0x51cdf84","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:44.338Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51cdf84","0x0","0x24a705e5","0x51cdf84","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cdf84","0x0","0x24a705e5","0x51cdf84","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cdf84","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cdf84","hex":"01 00 00 00 00 00 00 00 00 00 ab 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.343Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.343Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.343Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.343Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.343Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1914e64","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.355Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x1914e64","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1914e64","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.364Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1914e64","0x0","0x255c000d","0x1914e64","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:44.372Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1914e64","0x0","0x255c0055","0x1914e64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1914e64","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1914e64","hex":"01 00 00 00 00 00 00 00 00 00 aa 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.378Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.378Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.378Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.378Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.411Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.417Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:44.424Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 40 6b bd 96 84 d4 dc 01 06 0a 00 00 00 40 6b bd 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.429Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.430Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.430Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18289dc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18289dc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ebc60","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.541Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x18289dc","0x255c009d","0x85efc8","0x51ebc5c","0x51ebbb8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18289dc","0x255c009d","0x85efc8","0x51ebc5c","0x51ebbb8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.547Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x18289dc","0x0","0x255c000d","0x18289dc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18289dc","0x0","0x255c000d","0x18289dc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:44.554Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x18289dc","0x0","0x255c0055","0x18289dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18289dc","0x0","0x255c0055","0x18289dc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18289dc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18289dc","hex":"01 00 00 00 00 00 00 00 00 00 a7 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.559Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.559Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.559Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.560Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.560Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18925ec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18925ec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.749Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x18925ec","0x255c009d","0x85efc8","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18925ec","0x255c009d","0x85efc8","0x187c74c","0x187c6a8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.755Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18925ec","0x0","0x255c000d","0x18925ec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18925ec","0x0","0x255c000d","0x18925ec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:44.764Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18925ec","0x0","0x255c0055","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18925ec","0x0","0x255c0055","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18925ec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18925ec","hex":"01 00 34 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.769Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.769Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f533c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51f533c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x1926010","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.780Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x51f533c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51f533c","0x255c009d","0x85efc8","0x192600c","0x1925f68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.788Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51f533c","0x0","0x255c000d","0x51f533c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51f533c","0x0","0x255c000d","0x51f533c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:44.795Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51f533c","0x0","0x255c0055","0x51f533c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51f533c","0x0","0x255c0055","0x51f533c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f533c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51f533c","hex":"01 00 34 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 b0 6e ea 96 84 d4 dc 01 06 0a 00 00 00 b0 6e ea 96 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.800Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.801Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.801Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51cce7c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51cce7c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e7690","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.868Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x51cce7c","0x255c009d","0x85efc8","0x51e768c","0x51e75e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51cce7c","0x255c009d","0x85efc8","0x51e768c","0x51e75e8","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.874Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51cce7c","0x0","0x255c000d","0x51cce7c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cce7c","0x0","0x255c000d","0x51cce7c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:44.881Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51cce7c","0x0","0x255c0055","0x51cce7c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cce7c","0x0","0x255c0055","0x51cce7c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cce7c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cce7c","hex":"01 00 00 00 00 00 00 00 00 00 ad 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.886Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.886Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.887Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.887Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.895Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x51c3534","0x24a7042d","0x17eeb78","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c3534","0x24a7042d","0x17eeb78","0x5172504","0x5172460","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.901Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51c3534","0x0","0x24a7045d","0x51c3534","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c3534","0x0","0x24a7045d","0x51c3534","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:44.908Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51c3534","0x0","0x24a705e5","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c3534","0x0","0x24a705e5","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c3534","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 ac 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.915Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.915Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.915Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.915Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.925Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x18256c4","0x23a401c5","0x67deea0","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18256c4","0x23a401c5","0x67deea0","0x524710c","0x5247068","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.931Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18256c4","0x0","0x23a40175","0x18256c4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18256c4","0x0","0x23a40175","0x18256c4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:44.938Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18256c4","0x0","0x23a402bd","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18256c4","0x0","0x23a402bd","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 8f 09 97 84 d4 dc 01 06 0a 00 00 00 70 8f 09 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:44.943Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.943Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.944Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.944Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.944Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.944Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1897b14","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1897b14","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:44.976Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x2e","0x1897b14","0x23a401c5","0x67deea0","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1897b14","0x23a401c5","0x67deea0","0x5172504","0x5172460","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.982Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x1897b14","0x0","0x23a40175","0x1897b14","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1897b14","0x0","0x23a40175","0x1897b14","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:44.989Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x1897b14","0x0","0x23a402bd","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1897b14","0x0","0x23a402bd","0x1897b14","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1897b14","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1897b14","hex":"01 00 00 00 00 00 00 00 00 00 a8 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:44.995Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:44.995Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:44.996Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.996Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:44.996Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c021c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c021c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.257Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x51c021c","0x23a401c5","0x67deea0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c021c","0x23a401c5","0x67deea0","0x51e70c4","0x51e7020","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.267Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x51c021c","0x0","0x23a40175","0x51c021c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c021c","0x0","0x23a40175","0x51c021c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:45.276Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x51c021c","0x0","0x23a402bd","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c021c","0x0","0x23a402bd","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c021c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.284Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.284Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.285Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.285Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.285Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18267cc","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18267cc","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.294Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffe","0x62","0x18267cc","0x23a401c5","0x67deea0","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18267cc","0x23a401c5","0x67deea0","0x524710c","0x5247068","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18267cc","0x0","0x23a40175","0x18267cc","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18267cc","0x0","0x23a40175","0x18267cc","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:45.308Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18267cc","0x0","0x23a402bd","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18267cc","0x0","0x23a402bd","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18267cc","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 e1 36 97 84 d4 dc 01 06 0a 00 00 00 00 e1 36 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.314Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x191b494","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e87e8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.321Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.322Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.322Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.322Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.323Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x191b494","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x191b494","0x255c009d","0x85efc8","0x51e87e4","0x51e8740","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.341Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191b494","0x0","0x255c000d","0x191b494","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:45.361Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191b494","0x0","0x255c0055","0x191b494","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191b494","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191b494","hex":"01 00 00 00 00 00 00 00 00 00 ae 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.377Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.379Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.379Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.379Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.380Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.421Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.428Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:45.435Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b3 55 97 84 d4 dc 01 06 0a 00 00 00 a0 b3 55 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.440Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c021c","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c021c","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.448Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.448Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.449Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.449Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.449Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x51c021c","0x23a401c5","0x67deea0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c021c","0x23a401c5","0x67deea0","0x51e70c4","0x51e7020","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.456Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51c021c","0x0","0x23a40175","0x51c021c","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c021c","0x0","0x23a40175","0x51c021c","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:45.463Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51c021c","0x0","0x23a402bd","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c021c","0x0","0x23a402bd","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c021c","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 af 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.468Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.469Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.469Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.469Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.469Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18b3704","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18b3704","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5218810","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.522Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x2","0x2e","0x18b3704","0x23a401c5","0x67deea0","0x521880c","0x5218768","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b3704","0x23a401c5","0x67deea0","0x521880c","0x5218768","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.529Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18b3704","0x0","0x23a40175","0x18b3704","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b3704","0x0","0x23a40175","0x18b3704","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:45.535Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18b3704","0x0","0x23a402bd","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b3704","0x0","0x23a402bd","0x18b3704","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b3704","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b3704","hex":"01 00 00 00 00 00 00 00 00 00 a9 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.540Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.540Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.540Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.540Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.540Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.753Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x18256c4","0x23a401c5","0x67deea0","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18256c4","0x23a401c5","0x67deea0","0x51e70c4","0x51e7020","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.758Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18256c4","0x0","0x23a40175","0x18256c4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18256c4","0x0","0x23a40175","0x18256c4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:45.766Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18256c4","0x0","0x23a402bd","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18256c4","0x0","0x23a402bd","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.771Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.772Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.772Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18947fc","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18947fc","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5248268","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.782Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffe","0x62","0x18947fc","0x23a401c5","0x67deea0","0x5248264","0x52481c0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18947fc","0x23a401c5","0x67deea0","0x5248264","0x52481c0","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.787Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18947fc","0x0","0x23a40175","0x18947fc","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18947fc","0x0","0x23a40175","0x18947fc","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:45.797Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18947fc","0x0","0x23a402bd","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18947fc","0x0","0x23a402bd","0x18947fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18947fc","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18947fc","hex":"01 00 34 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 53 83 97 84 d4 dc 01 06 0a 00 00 00 40 2c 83 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.802Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.802Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.850Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x51cbd74","0x23a401c5","0x67deea0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51cbd74","0x23a401c5","0x67deea0","0x517590c","0x5175868","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.856Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51cbd74","0x0","0x23a40175","0x51cbd74","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cbd74","0x0","0x23a40175","0x51cbd74","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:45.863Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51cbd74","0x0","0x23a402bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cbd74","0x0","0x23a402bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cbd74","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b1 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.868Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51c021c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51c021c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e70c8","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.876Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.876Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.876Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.877Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.877Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x51c021c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c021c","0x255c009d","0x85efc8","0x51e70c4","0x51e7020","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.881Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51c021c","0x0","0x255c000d","0x51c021c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c021c","0x0","0x255c000d","0x51c021c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:45.887Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51c021c","0x0","0x255c0055","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c021c","0x0","0x255c0055","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c021c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c021c","hex":"01 00 00 00 00 00 00 00 00 00 b0 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.893Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.893Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.910Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x182abec","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182abec","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.916Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:45.923Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 f0 25 a2 97 84 d4 dc 01 06 0a 00 00 00 f0 25 a2 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:45.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.928Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.928Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x191817c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x191817c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:45.964Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.969Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:45.976Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x191817c","hex":"01 00 00 00 00 00 00 00 00 00 aa 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:45.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:45.981Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:45.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:45.982Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51cdf84","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51cdf84","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.250Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x51cdf84","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51cdf84","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.256Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51cdf84","0x0","0x255c000d","0x51cdf84","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51cdf84","0x0","0x255c000d","0x51cdf84","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:46.264Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51cdf84","0x0","0x255c0055","0x51cdf84","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51cdf84","0x0","0x255c0055","0x51cdf84","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cdf84","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.269Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.270Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c3534","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c3534","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5172508","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.278Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x51c3534","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c3534","0x255c009d","0x85efc8","0x5172504","0x5172460","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.292Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51c3534","0x0","0x255c000d","0x51c3534","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c3534","0x0","0x255c000d","0x51c3534","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:46.303Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51c3534","0x0","0x255c0055","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c3534","0x0","0x255c0055","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c3534","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 50 cf 97 84 d4 dc 01 06 0a 00 00 00 70 50 cf 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.310Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.317Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.319Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.319Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.319Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x51cbd74","0x23a401c5","0x67deea0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51cbd74","0x23a401c5","0x67deea0","0x517590c","0x5175868","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.324Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51cbd74","0x0","0x23a40175","0x51cbd74","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cbd74","0x0","0x23a40175","0x51cbd74","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:46.331Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51cbd74","0x0","0x23a402bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cbd74","0x0","0x23a402bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cbd74","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b2 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.335Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.336Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.336Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.336Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.337Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.337Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18445cc","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18445cc","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x51e9378","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.394Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x18445cc","0x23a401c5","0x67deea0","0x51e9374","0x51e92d0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18445cc","0x23a401c5","0x67deea0","0x51e9374","0x51e92d0","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.399Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18445cc","0x0","0x23a40175","0x18445cc","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18445cc","0x0","0x23a40175","0x18445cc","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:46.406Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18445cc","0x0","0x23a402bd","0x18445cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18445cc","0x0","0x23a402bd","0x18445cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18445cc","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18445cc","hex":"01 00 00 00 00 00 00 00 00 00 b3 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.409Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x191817c","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.417Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.418Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.418Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.418Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.418Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x191817c","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.425Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x191817c","0x0","0x255c000d","0x191817c","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:46.438Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x191817c","0x0","0x255c0055","0x191817c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x191817c","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x191817c","hex":"01 00 34 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 4a ee 97 84 d4 dc 01 06 0a 00 00 00 20 4a ee 97 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.443Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.444Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.444Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.445Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.445Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.508Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x182abec","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x182abec","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.514Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:46.520Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182abec","hex":"01 00 00 00 00 00 00 00 00 00 ab 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.525Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.525Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.525Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.525Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c5744","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c5744","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175348","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.763Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x51c5744","0x255c009d","0x85efc8","0x5175344","0x51752a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c5744","0x255c009d","0x85efc8","0x5175344","0x51752a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.773Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51c5744","0x0","0x255c000d","0x51c5744","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c5744","0x0","0x255c000d","0x51c5744","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:46.783Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51c5744","0x0","0x255c0055","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c5744","0x0","0x255c0055","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c5744","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.791Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.791Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.791Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.792Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.792Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18245bc","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18245bc","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51ed948","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.803Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x18245bc","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18245bc","0x255c009d","0x85efc8","0x51ed944","0x51ed8a0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.812Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x18245bc","0x0","0x255c000d","0x18245bc","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18245bc","0x0","0x255c000d","0x18245bc","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:46.822Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x18245bc","0x0","0x255c0055","0x18245bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18245bc","0x0","0x255c0055","0x18245bc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18245bc","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18245bc","hex":"01 00 34 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 c0 c2 1b 98 84 d4 dc 01 06 0a 00 00 00 c0 c2 1b 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.829Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18936f4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18936f4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187ea00","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.837Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.837Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.838Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.838Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.838Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x18936f4","0x23a401c5","0x67deea0","0x187e9fc","0x187e958","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18936f4","0x23a401c5","0x67deea0","0x187e9fc","0x187e958","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.844Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:46.852Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18936f4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b4 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.858Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.858Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18456d4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18456d4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187ea00","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.911Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x18456d4","0x23a401c5","0x67deea0","0x187e9fc","0x187e958","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18456d4","0x23a401c5","0x67deea0","0x187e9fc","0x187e958","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.919Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18456d4","0x0","0x23a40175","0x18456d4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18456d4","0x0","0x23a40175","0x18456d4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:46.928Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18456d4","0x0","0x23a402bd","0x18456d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18456d4","0x0","0x23a402bd","0x18456d4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18456d4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18456d4","hex":"01 00 34 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 bc 3a 98 84 d4 dc 01 06 0a 00 00 00 70 bc 3a 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:46.934Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.935Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.935Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18925ec","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18925ec","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.949Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x18925ec","0x23a401c5","0x67deea0","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18925ec","0x23a401c5","0x67deea0","0x187c74c","0x187c6a8","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.956Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18925ec","0x0","0x23a40175","0x18925ec","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18925ec","0x0","0x23a40175","0x18925ec","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:46.963Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18925ec","0x0","0x23a402bd","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18925ec","0x0","0x23a402bd","0x18925ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18925ec","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18925ec","hex":"01 00 00 00 00 00 00 00 00 00 b5 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.969Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51fca74","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51fca74","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51edf10","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:46.984Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:46.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:46.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.985Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:46.985Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x2","0x2e","0x51fca74","0x255c009d","0x85efc8","0x51edf0c","0x51ede68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51fca74","0x255c009d","0x85efc8","0x51edf0c","0x51ede68","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:46.990Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51fca74","0x0","0x255c000d","0x51fca74","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51fca74","0x0","0x255c000d","0x51fca74","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:46.996Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51fca74","0x0","0x255c0055","0x51fca74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51fca74","0x0","0x255c0055","0x51fca74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51fca74","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fca74","hex":"01 00 00 00 00 00 00 00 00 00 ac 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.001Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.002Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.002Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.002Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.002Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51cdf84","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51cdf84","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.256Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffd","0x62","0x51cdf84","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51cdf84","0x255c009d","0x85efc8","0x517590c","0x5175868","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.262Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x51cdf84","0x0","0x255c000d","0x51cdf84","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51cdf84","0x0","0x255c000d","0x51cdf84","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:47.269Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x51cdf84","0x0","0x255c0055","0x51cdf84","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51cdf84","0x0","0x255c0055","0x51cdf84","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cdf84","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cdf84","hex":"01 00 34 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.275Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.275Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.276Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.276Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.276Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x182abec","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51e8db0","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.284Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x7ffe","0x62","0x182abec","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x182abec","0x255c009d","0x85efc8","0x51e8dac","0x51e8d08","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.289Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182abec","0x0","0x255c000d","0x182abec","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:47.295Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182abec","0x0","0x255c0055","0x182abec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182abec","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182abec","hex":"01 00 34 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 bf 67 98 84 d4 dc 01 06 0a 00 00 00 e0 bf 67 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.300Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.301Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.301Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.301Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.301Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85efc8","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51fa864","0x206","0x6","0x94f0dc","0x85f18c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51fa864","0x206","0x6","0x94f0dc","0x85f18c","0x76fc4ef5","0x9c1b20","0x51eb698","0x6","0xd64e6b1c","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"70 8e 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888e70","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.381Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85ef58","args":["0x1","0x1","0x1","0x2e","0x51fa864","0x255c009d","0x85efc8","0x51eb694","0x51eb5f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51fa864","0x255c009d","0x85efc8","0x51eb694","0x51eb5f0","0x7700459e","0x85ef60","0x85f014","0x85f17c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.386Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ef10","args":["0x1","0x1200","0x2e","0x51fa864","0x0","0x255c000d","0x51fa864","0x9effe8","0x1","0x85efc4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51fa864","0x0","0x255c000d","0x51fa864","0x9effe8","0x1","0x85efc4","0x85ef58","0x1","0x1","0x85efb8","0x9cf3a6","0xffffffff","0x85efc4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f17c","hex":"c4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85efc4","hex":"f0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85eff0","hex":"8c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85efb8","hex":"7c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f17c","hex":"c4"}],"time":"2026-04-25T07:24:47.392Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85eeac","args":["0x1","0x2e","0x51fa864","0x0","0x255c0055","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51fa864","0x0","0x255c0055","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51fa864","0x9effe8","0x85ef54"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 b6 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.396Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18936f4","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18936f4","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x51edf10","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.404Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.404Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.404Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.404Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x187ea00","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.416Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.416Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x18936f4","0x23a401c5","0x67deea0","0x51edf0c","0x51ede68","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18936f4","0x23a401c5","0x67deea0","0x51edf0c","0x51ede68","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.423Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18936f4","0x0","0x23a40175","0x18936f4","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:47.429Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18936f4","0x0","0x23a402bd","0x18936f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18936f4","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18936f4","hex":"01 00 00 00 00 00 00 00 00 00 b7 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.433Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.434Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.434Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.434Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.434Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x18256c4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18256c4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.441Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x18256c4","0x0","0x24a7045d","0x18256c4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18256c4","0x0","0x24a7045d","0x18256c4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:47.449Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x18256c4","0x0","0x24a705e5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18256c4","0x0","0x24a705e5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e0 86 98 84 d4 dc 01 06 0a 00 00 00 a0 e0 86 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.456Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.457Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51fa864","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51fa864","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x5172ad0","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.490Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x51fa864","0x24a7042d","0x17eeb78","0x5172acc","0x5172a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51fa864","0x24a7042d","0x17eeb78","0x5172acc","0x5172a28","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.496Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x51fa864","0x0","0x24a7045d","0x51fa864","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51fa864","0x0","0x24a7045d","0x51fa864","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:47.501Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x51fa864","0x0","0x24a705e5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51fa864","0x0","0x24a705e5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51fa864","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 ad 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.507Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.507Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.507Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x187ea00","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.764Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.774Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:47.786Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.795Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.796Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.796Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c021c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c021c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51ecdb8","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.807Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x51c021c","0x24a7042d","0x17eeb78","0x51ecdb4","0x51ecd10","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c021c","0x24a7042d","0x17eeb78","0x51ecdb4","0x51ecd10","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.813Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x51c021c","0x0","0x24a7045d","0x51c021c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c021c","0x0","0x24a7045d","0x51c021c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:47.821Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x51c021c","0x0","0x24a705e5","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c021c","0x0","0x24a705e5","0x51c021c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c021c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c021c","hex":"01 00 34 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 0b b4 98 84 d4 dc 01 06 0a 00 00 00 20 0b b4 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.826Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5175910","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.833Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.833Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.834Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.834Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x1","0x2e","0x51cbd74","0x23a401c5","0x67deea0","0x517590c","0x5175868","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51cbd74","0x23a401c5","0x67deea0","0x517590c","0x5175868","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.843Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x2e","0x51cbd74","0x0","0x23a40175","0x51cbd74","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cbd74","0x0","0x23a40175","0x51cbd74","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:47.849Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x2e","0x51cbd74","0x0","0x23a402bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cbd74","0x0","0x23a402bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cbd74","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 b8 22 09 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.854Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.854Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.855Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.855Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.855Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x67deea0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18267cc","0x206","0x6","0x8f625c","0x67df064"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18267cc","0x206","0x6","0x8f625c","0x67df064","0x76fc4ef5","0x9c1b20","0x5247110","0x6","0xd0b66af4","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"d8 89 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8889d8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.909Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x67dee30","args":["0x1","0x1","0x7ffd","0x62","0x18267cc","0x23a401c5","0x67deea0","0x524710c","0x5247068","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18267cc","0x23a401c5","0x67deea0","0x524710c","0x5247068","0x7700459e","0x67dee38","0x67deeec","0x67df054","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.915Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x67dede8","args":["0x1","0x1200","0x62","0x18267cc","0x0","0x23a40175","0x18267cc","0x9effe8","0x1","0x67dee9c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18267cc","0x0","0x23a40175","0x18267cc","0x9effe8","0x1","0x67dee9c","0x67dee30","0x1","0x1","0x67dee90","0x9cf3a6","0xffffffff","0x67dee9c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x67df054","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67dee9c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x67deec8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67dee90","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x67df054","hex":"9c"}],"time":"2026-04-25T07:24:47.924Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x67ded84","args":["0x1","0x62","0x18267cc","0x0","0x23a402bd","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18267cc","0x0","0x23a402bd","0x18267cc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18267cc","0x9effe8","0x67dee2c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18267cc","hex":"01 00 34 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 2b d3 98 84 d4 dc 01 06 0a 00 00 00 e0 2b d3 98 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:47.930Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51eaa98","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:47.940Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.941Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.941Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.941Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x182019c","0x24a7042d","0x17eeb78","0x51eaa94","0x51ea9f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182019c","0x24a7042d","0x17eeb78","0x51eaa94","0x51ea9f0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.949Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x24a7045d","0x182019c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x24a7045d","0x182019c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:47.958Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.959Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x182019c","0x0","0x24a705e5","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x24a705e5","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 b9 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:47.964Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:47.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:47.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.965Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:47.965Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18256c4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18256c4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x187ea00","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:48.039Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x2","0x2e","0x18256c4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18256c4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:48.044Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18256c4","0x0","0x24a7045d","0x18256c4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18256c4","0x0","0x24a7045d","0x18256c4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:48.050Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18256c4","0x0","0x24a705e5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18256c4","0x0","0x24a705e5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 ae 91 04 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:48.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:48.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:48.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:48.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:48.057Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x187ea00","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:48.251Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x182bcf4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:48.257Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182bcf4","0x0","0x24a7045d","0x182bcf4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:48.264Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182bcf4","0x0","0x24a705e5","0x182bcf4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182bcf4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182bcf4","hex":"01 00 34 00 00 00 00 00 00 00 ba 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:48.269Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:48.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:48.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:48.270Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:48.270Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x182019c","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x182019c","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x51eaa98","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:48.278Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x7ffe","0x62","0x182019c","0x24a7042d","0x17eeb78","0x51eaa94","0x51ea9f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x182019c","0x24a7042d","0x17eeb78","0x51eaa94","0x51ea9f0","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:48.285Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x62","0x182019c","0x0","0x24a7045d","0x182019c","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x182019c","0x0","0x24a7045d","0x182019c","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:48.291Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x62","0x182019c","0x0","0x24a705e5","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x182019c","0x0","0x24a705e5","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x182019c","hex":"01 00 34 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 70 7d 00 99 84 d4 dc 01 06 0a 00 00 00 70 7d 00 99 84 d4 dc 01 00 00"}],"time":"2026-04-25T07:24:48.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T07:24:48.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T07:24:48.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T07:24:48.297Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T07:24:48.298Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17eeb78","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18256c4","0x206","0x6","0x900184","0x17eed3c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18256c4","0x206","0x6","0x900184","0x17eed3c","0x76fc4ef5","0x9c1b20","0x187ea00","0x6","0xd7b577ac","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"90 86 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888690","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T07:24:48.363Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17eeb08","args":["0x1","0x1","0x1","0x2e","0x18256c4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18256c4","0x24a7042d","0x17eeb78","0x187e9fc","0x187e958","0x7700459e","0x17eeb10","0x17eebc4","0x17eed2c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:48.369Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17eeac0","args":["0x1","0x1200","0x2e","0x18256c4","0x0","0x24a7045d","0x18256c4","0x9effe8","0x1","0x17eeb74"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18256c4","0x0","0x24a7045d","0x18256c4","0x9effe8","0x1","0x17eeb74","0x17eeb08","0x1","0x1","0x17eeb68","0x9cf3a6","0xffffffff","0x17eeb74"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eed2c","hex":"74"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeb74","hex":"a0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17eeba0","hex":"3c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eeb68","hex":"2c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eed2c","hex":"74"}],"time":"2026-04-25T07:24:48.375Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17eea5c","args":["0x1","0x2e","0x18256c4","0x0","0x24a705e5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18256c4","0x0","0x24a705e5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x17eeb04"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 bb 22 09 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T07:24:48.380Z"} diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-conversations.tsv b/captures/046-service-boundary-write-test-int-123456791/tcp-conversations.tsv new file mode 100644 index 0000000..5f53634 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-conversations.tsv @@ -0,0 +1,49 @@ +conversation_a conversation_b payload_packets payload_bytes first_relative last_relative +127.0.0.1:57415 127.0.0.1:57433 1946 37217 0.049187422 18.582937956 +::1:49704 ::1:57385 452 36118 4.099331856 18.518697977 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57401 2 14170 14.865499735 14.933510065 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57388 2 13997 6.430495501 6.503382444 +fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 16 6540 16.887420177 16.931259155 +::1:135 ::1:57384 22 2860 4.096544027 18.494770050 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57390 3 2703 8.060954094 10.766581535 +::1:32571 ::1:57395 4 2196 10.880584955 10.888675928 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57403 3 1941 16.175428152 18.267349720 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 16 1939 13.154254675 13.163907051 +::1:80 ::1:57377 6 1821 2.971200466 2.977626324 +::1:80 ::1:57383 6 1793 3.738183975 3.744785786 +::1:80 ::1:57387 6 1793 4.258316040 4.269093513 +::1:80 ::1:57398 6 1793 13.739692211 13.746556044 +::1:80 ::1:57400 6 1793 14.259782553 14.268046618 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:55757 2 1789 10.181640625 10.182575226 +::1:80 ::1:57392 6 1788 8.318043947 8.326290846 +::1:80 ::1:57394 6 1788 8.462028027 8.468484879 +::1:80 ::1:57405 6 1784 16.782871246 16.789427042 +fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57389 2 1202 6.510869980 6.515720844 +::1:808 ::1:55800 2 1150 4.181292772 4.182344198 +127.0.0.1:57608 127.0.0.1:57631 86 1112 0.099488974 18.232506275 +127.0.0.1:57470 127.0.0.1:57477 86 1112 0.099508286 18.168549776 +10.100.0.48:1433 10.100.0.48:49792 8 1028 2.314948559 12.414906502 +10.100.0.48:1433 10.100.0.48:49805 12 1002 0.323045254 10.326808214 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:57407 6 913 16.908560276 16.933598518 +127.0.0.1:57484 127.0.0.1:57746 75 900 0.000000000 18.538926601 +127.0.0.1:57485 127.0.0.1:57747 75 900 0.000047922 18.538865328 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:57406 6 900 16.882299185 16.905648947 +127.0.0.1:57684 127.0.0.1:57745 74 888 0.130834818 18.508908033 +::1:80 ::1:57376 2 332 2.965245247 2.968629837 +::1:80 ::1:57382 2 332 3.731887579 3.735263586 +::1:80 ::1:57386 2 332 4.249957800 4.254094362 +::1:80 ::1:57391 2 332 8.309501886 8.313708067 +::1:80 ::1:57393 2 332 8.454768181 8.458240747 +::1:80 ::1:57397 2 332 13.732917309 13.736122608 +::1:80 ::1:57399 2 332 14.251644850 14.255968332 +::1:80 ::1:57404 2 332 16.775483370 16.779044628 +::1:49704 ::1:49829 2 270 14.640398741 14.640705347 +::1:49704 ::1:51439 2 220 3.764171124 3.765578032 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:57381 1 52 3.714206219 3.714206219 +fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:57396 1 52 13.714852571 13.714852571 +127.0.0.1:49248 127.0.0.1:63342 4 24 0.864134550 15.865798950 +127.0.0.1:49787 127.0.0.1:49788 21 21 1.785775185 18.267004490 +10.100.0.48:1433 10.100.0.48:49936 2 2 9.341529846 10.356706381 +10.100.0.48:1433 10.100.0.48:49933 2 2 9.767561674 11.688196898 +10.100.0.48:1433 10.100.0.48:49935 2 2 9.824790239 10.684834242 +10.100.0.48:1433 10.100.0.48:49934 2 2 9.861648798 10.552848577 diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-payload-packets.tsv b/captures/046-service-boundary-write-test-int-123456791/tcp-payload-packets.tsv new file mode 100644 index 0000000..f859d1b --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-payload-packets.tsv @@ -0,0 +1,2479 @@ +frame time_relative src dst seq payload_len hex_prefix ascii_preview +5 0.000000000 127.0.0.1:57415 127.0.0.1:57433 3341038594 12 1a000000d7d90c0000000000 ............ +7 0.000210524 127.0.0.1:57415 127.0.0.1:57433 3341038606 26 16000000548f6340e25e3140010003000000c51e220000000000 ....T.c@.^1@........"..... +9 0.000628233 127.0.0.1:57433 127.0.0.1:57415 383237942 12 ffffffffd7d90c0000000000 ............ +11 0.001524210 127.0.0.1:57433 127.0.0.1:57415 383237954 12 16000000ef920c0000000000 ............ +13 0.001794338 127.0.0.1:57433 127.0.0.1:57415 383237966 22 12000000c51e22000000000001000300000000000000 ......"............... +15 0.002083540 127.0.0.1:57415 127.0.0.1:57433 3341038632 12 ffffffffef920c0000000000 ............ +17 0.019144535 127.0.0.1:57433 127.0.0.1:57415 383237988 12 feffffff7975010090750100 ....yu...u.. +24 0.057422400 127.0.0.1:57415 127.0.0.1:57433 3341038644 12 22000000d8d90c0000000000 "........... +26 0.057616711 127.0.0.1:57415 127.0.0.1:57433 3341038656 34 1e0000001c2118d0c46f33bb010003000000a4640200000000003a9286c39d01 .....!...o3........d......:....... +28 0.057780504 127.0.0.1:57415 127.0.0.1:57433 3341038690 12 43000000d9d90c0000000000 C........... +30 0.057890415 127.0.0.1:57415 127.0.0.1:57433 3341038702 67 3f000000980433cb0cb47c380100030000000100000000a4640200000000003d ?.....3...|8............d......=B.....&......... +32 0.058467150 127.0.0.1:57433 127.0.0.1:57415 383238000 12 ffffffffd8d90c0000000000 ............ +34 0.058669090 127.0.0.1:57433 127.0.0.1:57415 383238012 12 ffffffffd9d90c0000000000 ............ +36 0.059204817 127.0.0.1:57433 127.0.0.1:57415 383238024 12 34000000f0920c0000000000 4........... +38 0.059378147 127.0.0.1:57433 127.0.0.1:57415 383238036 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........J.C. +40 0.059646845 127.0.0.1:57415 127.0.0.1:57433 3341038769 12 fffffffff0920c0000000000 ............ +42 0.060997963 127.0.0.1:57415 127.0.0.1:57433 3341038781 12 1e000000dad90c0000000000 ............ +44 0.061199188 127.0.0.1:57415 127.0.0.1:57433 3341038793 30 1a00000055ceff62b21b3a50010003000000c71e22000000000000000000 ....U..b..:P........"......... +46 0.061641932 127.0.0.1:57433 127.0.0.1:57415 383238088 12 ffffffffdad90c0000000000 ............ +48 0.061949015 127.0.0.1:57433 127.0.0.1:57415 383238100 12 1a000000f1920c0000000000 ............ +50 0.062137604 127.0.0.1:57433 127.0.0.1:57415 383238112 26 16000000c71e2200000000000100030000000000000000000000 ......"................... +52 0.062464952 127.0.0.1:57415 127.0.0.1:57433 3341038823 12 fffffffff1920c0000000000 ............ +60 0.103600740 127.0.0.1:57415 127.0.0.1:57433 3341038835 12 1a000000dbd90c0000000000 ............ +62 0.103812456 127.0.0.1:57415 127.0.0.1:57433 3341038847 26 16000000548f6340e25e3140010003000000c91e220000000000 ....T.c@.^1@........"..... +64 0.104245901 127.0.0.1:57433 127.0.0.1:57415 383238138 12 ffffffffdbd90c0000000000 ............ +66 0.104767323 127.0.0.1:57433 127.0.0.1:57415 383238150 12 16000000f2920c0000000000 ............ +68 0.104944229 127.0.0.1:57433 127.0.0.1:57415 383238162 22 12000000c91e22000000000001000300000000000000 ......"............... +70 0.105355740 127.0.0.1:57415 127.0.0.1:57433 3341038873 12 fffffffff2920c0000000000 ............ +72 0.114827633 127.0.0.1:57415 127.0.0.1:57433 3341038885 12 feffffff9175010079750100 .....u..yu.. +81 0.208582163 127.0.0.1:57415 127.0.0.1:57433 3341038897 12 1a000000dcd90c0000000000 ............ +83 0.208836794 127.0.0.1:57415 127.0.0.1:57433 3341038909 26 16000000548f6340e25e3140010003000000cb1e220000000000 ....T.c@.^1@........"..... +85 0.209202051 127.0.0.1:57433 127.0.0.1:57415 383238184 12 ffffffffdcd90c0000000000 ............ +87 0.209722757 127.0.0.1:57433 127.0.0.1:57415 383238196 12 16000000f3920c0000000000 ............ +89 0.209974289 127.0.0.1:57433 127.0.0.1:57415 383238208 22 12000000cb1e22000000000001000300000000000000 ......"............... +91 0.210243225 127.0.0.1:57415 127.0.0.1:57433 3341038935 12 fffffffff3920c0000000000 ............ +106 0.312702417 127.0.0.1:57415 127.0.0.1:57433 3341038947 12 1a000000ddd90c0000000000 ............ +108 0.312870264 127.0.0.1:57415 127.0.0.1:57433 3341038959 26 16000000548f6340e25e3140010003000000cd1e220000000000 ....T.c@.^1@........"..... +110 0.313106298 127.0.0.1:57433 127.0.0.1:57415 383238230 12 ffffffffddd90c0000000000 ............ +112 0.313648939 127.0.0.1:57433 127.0.0.1:57415 383238242 12 16000000f4920c0000000000 ............ +114 0.313799858 127.0.0.1:57433 127.0.0.1:57415 383238254 22 12000000cd1e22000000000001000300000000000000 ......"............... +116 0.314147949 127.0.0.1:57415 127.0.0.1:57433 3341038985 12 fffffffff4920c0000000000 ............ +123 0.362201691 127.0.0.1:57415 127.0.0.1:57433 3341038997 12 22000000ded90c0000000000 "........... +125 0.362391233 127.0.0.1:57415 127.0.0.1:57433 3341039009 34 1e0000001c2118d0c46f33bb010003000000a5640200000000006b9386c39d01 .....!...o3........d......k....... +127 0.362517834 127.0.0.1:57415 127.0.0.1:57433 3341039043 12 43000000dfd90c0000000000 C........... +129 0.362645388 127.0.0.1:57415 127.0.0.1:57433 3341039055 67 3f000000980433cb0cb47c380100030000000100000000a5640200000000003d ?.....3...|8............d......=B.....&......... +131 0.362835884 127.0.0.1:57433 127.0.0.1:57415 383238276 12 ffffffffded90c0000000000 ............ +133 0.363064051 127.0.0.1:57433 127.0.0.1:57415 383238288 12 ffffffffdfd90c0000000000 ............ +135 0.363901615 127.0.0.1:57433 127.0.0.1:57415 383238300 12 34000000f5920c0000000000 4........... +137 0.364080667 127.0.0.1:57433 127.0.0.1:57415 383238312 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........5.r. +139 0.364391565 127.0.0.1:57415 127.0.0.1:57433 3341039122 12 fffffffff5920c0000000000 ............ +141 0.365286827 127.0.0.1:57415 127.0.0.1:57433 3341039134 12 1e000000e0d90c0000000000 ............ +143 0.365422487 127.0.0.1:57415 127.0.0.1:57433 3341039146 30 1a00000055ceff62b21b3a50010003000000cf1e22000000000000000000 ....U..b..:P........"......... +145 0.365801573 127.0.0.1:57433 127.0.0.1:57415 383238364 12 ffffffffe0d90c0000000000 ............ +147 0.366998196 127.0.0.1:57433 127.0.0.1:57415 383238376 12 1a000000f6920c0000000000 ............ +149 0.367174387 127.0.0.1:57433 127.0.0.1:57415 383238388 26 16000000cf1e2200000000000100030000000000000000000000 ......"................... +151 0.367449522 127.0.0.1:57415 127.0.0.1:57433 3341039176 12 fffffffff6920c0000000000 ............ +153 0.415246487 127.0.0.1:57415 127.0.0.1:57433 3341039188 12 1a000000e1d90c0000000000 ............ +155 0.415459156 127.0.0.1:57415 127.0.0.1:57433 3341039200 26 16000000548f6340e25e3140010003000000d11e220000000000 ....T.c@.^1@........"..... +157 0.415807247 127.0.0.1:57433 127.0.0.1:57415 383238414 12 ffffffffe1d90c0000000000 ............ +159 0.416231394 127.0.0.1:57433 127.0.0.1:57415 383238426 12 16000000f7920c0000000000 ............ +161 0.416368961 127.0.0.1:57433 127.0.0.1:57415 383238438 22 12000000d11e22000000000001000300000000000000 ......"............... +163 0.416703701 127.0.0.1:57415 127.0.0.1:57433 3341039226 12 fffffffff7920c0000000000 ............ +172 0.518207312 127.0.0.1:57415 127.0.0.1:57433 3341039238 12 1a000000e2d90c0000000000 ............ +174 0.518729448 127.0.0.1:57415 127.0.0.1:57433 3341039250 26 16000000548f6340e25e3140010003000000d31e220000000000 ....T.c@.^1@........"..... +176 0.519101381 127.0.0.1:57433 127.0.0.1:57415 383238460 12 ffffffffe2d90c0000000000 ............ +178 0.519637823 127.0.0.1:57433 127.0.0.1:57415 383238472 12 16000000f8920c0000000000 ............ +180 0.519866943 127.0.0.1:57433 127.0.0.1:57415 383238484 22 12000000d31e22000000000001000300000000000000 ......"............... +182 0.520290375 127.0.0.1:57415 127.0.0.1:57433 3341039276 12 fffffffff8920c0000000000 ............ +184 0.521141529 127.0.0.1:57433 127.0.0.1:57415 383238506 12 feffffff7a75010091750100 ....zu...u.. +195 0.616555929 127.0.0.1:57415 127.0.0.1:57433 3341039288 12 feffffff927501007a750100 .....u..zu.. +201 0.622750521 127.0.0.1:57415 127.0.0.1:57433 3341039300 12 1a000000e3d90c0000000000 ............ +203 0.622977972 127.0.0.1:57415 127.0.0.1:57433 3341039312 26 16000000548f6340e25e3140010003000000d51e220000000000 ....T.c@.^1@........"..... +205 0.623340607 127.0.0.1:57433 127.0.0.1:57415 383238518 12 ffffffffe3d90c0000000000 ............ +207 0.623684645 127.0.0.1:57433 127.0.0.1:57415 383238530 12 16000000f9920c0000000000 ............ +209 0.623824596 127.0.0.1:57433 127.0.0.1:57415 383238542 22 12000000d51e22000000000001000300000000000000 ......"............... +211 0.624190331 127.0.0.1:57415 127.0.0.1:57433 3341039338 12 fffffffff9920c0000000000 ............ +215 0.666693926 127.0.0.1:57415 127.0.0.1:57433 3341039350 12 65000000e4d90c0000000000 e........... +217 0.666873693 127.0.0.1:57415 127.0.0.1:57433 3341039362 101 1e0000001c2118d0c46f33bb010003000000a6640200000000009c9486c39d01 .....!...o3........d..............?.....3...|8.. +219 0.667321444 127.0.0.1:57433 127.0.0.1:57415 383238564 12 ffffffffe4d90c0000000000 ............ +221 0.668230772 127.0.0.1:57433 127.0.0.1:57415 383238576 12 34000000fa920c0000000000 4........... +223 0.668384552 127.0.0.1:57433 127.0.0.1:57415 383238588 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +225 0.668707609 127.0.0.1:57415 127.0.0.1:57433 3341039463 12 fffffffffa920c0000000000 ............ +227 0.669511795 127.0.0.1:57415 127.0.0.1:57433 3341039475 12 1e000000e5d90c0000000000 ............ +229 0.669707298 127.0.0.1:57415 127.0.0.1:57433 3341039487 30 1a00000055ceff62b21b3a50010003000000d71e22000000000000000000 ....U..b..:P........"......... +231 0.669990301 127.0.0.1:57433 127.0.0.1:57415 383238640 12 ffffffffe5d90c0000000000 ............ +233 0.670430183 127.0.0.1:57433 127.0.0.1:57415 383238652 12 1a000000fb920c0000000000 ............ +235 0.670573711 127.0.0.1:57433 127.0.0.1:57415 383238664 26 16000000d71e2200000000000100030000000000000000000000 ......"................... +237 0.670854807 127.0.0.1:57415 127.0.0.1:57433 3341039517 12 fffffffffb920c0000000000 ............ +240 0.725219727 127.0.0.1:57415 127.0.0.1:57433 3341039529 12 1a000000e6d90c0000000000 ............ +242 0.725438595 127.0.0.1:57415 127.0.0.1:57433 3341039541 26 16000000548f6340e25e3140010003000000d91e220000000000 ....T.c@.^1@........"..... +244 0.725870371 127.0.0.1:57433 127.0.0.1:57415 383238690 12 ffffffffe6d90c0000000000 ............ +246 0.726289749 127.0.0.1:57433 127.0.0.1:57415 383238702 12 16000000fc920c0000000000 ............ +248 0.726444721 127.0.0.1:57433 127.0.0.1:57415 383238714 22 12000000d91e22000000000001000300000000000000 ......"............... +250 0.726814508 127.0.0.1:57415 127.0.0.1:57433 3341039567 12 fffffffffc920c0000000000 ............ +255 0.828224897 127.0.0.1:57415 127.0.0.1:57433 3341039579 12 1a000000e7d90c0000000000 ............ +257 0.828411102 127.0.0.1:57415 127.0.0.1:57433 3341039591 26 16000000548f6340e25e3140010003000000db1e220000000000 ....T.c@.^1@........"..... +259 0.828966618 127.0.0.1:57433 127.0.0.1:57415 383238736 12 ffffffffe7d90c0000000000 ............ +261 0.829461098 127.0.0.1:57433 127.0.0.1:57415 383238748 12 16000000fd920c0000000000 ............ +263 0.829670191 127.0.0.1:57433 127.0.0.1:57415 383238760 22 12000000db1e22000000000001000300000000000000 ......"............... +265 0.829901695 127.0.0.1:57415 127.0.0.1:57433 3341039617 12 fffffffffd920c0000000000 ............ +270 0.931738615 127.0.0.1:57415 127.0.0.1:57433 3341039629 12 1a000000e8d90c0000000000 ............ +272 0.931953669 127.0.0.1:57415 127.0.0.1:57433 3341039641 26 16000000548f6340e25e3140010003000000dd1e220000000000 ....T.c@.^1@........"..... +274 0.932304859 127.0.0.1:57433 127.0.0.1:57415 383238782 12 ffffffffe8d90c0000000000 ............ +276 0.932860613 127.0.0.1:57433 127.0.0.1:57415 383238794 12 16000000fe920c0000000000 ............ +278 0.933036327 127.0.0.1:57433 127.0.0.1:57415 383238806 22 12000000dd1e22000000000001000300000000000000 ......"............... +280 0.933548927 127.0.0.1:57415 127.0.0.1:57433 3341039667 12 fffffffffe920c0000000000 ............ +286 0.970799923 127.0.0.1:57415 127.0.0.1:57433 3341039679 12 65000000e9d90c0000000000 e........... +288 0.970983505 127.0.0.1:57415 127.0.0.1:57433 3341039691 101 1e0000001c2118d0c46f33bb010003000000a764020000000000cc9586c39d01 .....!...o3........d..............?.....3...|8.. +290 0.971403599 127.0.0.1:57433 127.0.0.1:57415 383238828 12 ffffffffe9d90c0000000000 ............ +292 0.972612858 127.0.0.1:57433 127.0.0.1:57415 383238840 12 34000000ff920c0000000000 4........... +294 0.972803116 127.0.0.1:57433 127.0.0.1:57415 383238852 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........4... +296 0.972990513 127.0.0.1:57415 127.0.0.1:57433 3341039792 12 ffffffffff920c0000000000 ............ +298 0.974094629 127.0.0.1:57415 127.0.0.1:57433 3341039804 12 1e000000ead90c0000000000 ............ +300 0.974251747 127.0.0.1:57415 127.0.0.1:57433 3341039816 30 1a00000055ceff62b21b3a50010003000000df1e22000000000000000000 ....U..b..:P........"......... +302 0.974560976 127.0.0.1:57433 127.0.0.1:57415 383238904 12 ffffffffead90c0000000000 ............ +304 0.974976540 127.0.0.1:57433 127.0.0.1:57415 383238916 12 1a00000000930c0000000000 ............ +306 0.975146055 127.0.0.1:57433 127.0.0.1:57415 383238928 26 16000000df1e2200000000000100030000000000000000000000 ......"................... +308 0.975390196 127.0.0.1:57415 127.0.0.1:57433 3341039846 12 ffffffff00930c0000000000 ............ +311 1.021652460 127.0.0.1:57433 127.0.0.1:57415 383238954 12 feffffff7b75010092750100 ....{u...u.. +313 1.035365105 127.0.0.1:57415 127.0.0.1:57433 3341039858 12 1a000000ebd90c0000000000 ............ +315 1.035527468 127.0.0.1:57415 127.0.0.1:57433 3341039870 26 16000000548f6340e25e3140010003000000e11e220000000000 ....T.c@.^1@........"..... +317 1.035881996 127.0.0.1:57433 127.0.0.1:57415 383238966 12 ffffffffebd90c0000000000 ............ +319 1.036244154 127.0.0.1:57433 127.0.0.1:57415 383238978 12 1600000001930c0000000000 ............ +321 1.036392212 127.0.0.1:57433 127.0.0.1:57415 383238990 22 12000000e11e22000000000001000300000000000000 ......"............... +323 1.036743879 127.0.0.1:57415 127.0.0.1:57433 3341039896 12 ffffffff01930c0000000000 ............ +333 1.117132664 127.0.0.1:57415 127.0.0.1:57433 3341039908 12 feffffff937501007b750100 .....u..{u.. +339 1.139356613 127.0.0.1:57415 127.0.0.1:57433 3341039920 12 1a000000ecd90c0000000000 ............ +341 1.139557123 127.0.0.1:57415 127.0.0.1:57433 3341039932 26 16000000548f6340e25e3140010003000000e31e220000000000 ....T.c@.^1@........"..... +343 1.139925957 127.0.0.1:57433 127.0.0.1:57415 383239012 12 ffffffffecd90c0000000000 ............ +345 1.142554998 127.0.0.1:57433 127.0.0.1:57415 383239024 12 1600000002930c0000000000 ............ +347 1.142760754 127.0.0.1:57433 127.0.0.1:57415 383239036 22 12000000e31e22000000000001000300000000000000 ......"............... +349 1.143056631 127.0.0.1:57415 127.0.0.1:57433 3341039958 12 ffffffff02930c0000000000 ............ +353 1.245716810 127.0.0.1:57415 127.0.0.1:57433 3341039970 12 1a000000edd90c0000000000 ............ +355 1.246005297 127.0.0.1:57415 127.0.0.1:57433 3341039982 26 16000000548f6340e25e3140010003000000e51e220000000000 ....T.c@.^1@........"..... +357 1.246361256 127.0.0.1:57433 127.0.0.1:57415 383239058 12 ffffffffedd90c0000000000 ............ +359 1.246897221 127.0.0.1:57433 127.0.0.1:57415 383239070 12 1600000003930c0000000000 ............ +361 1.247057676 127.0.0.1:57433 127.0.0.1:57415 383239082 22 12000000e51e22000000000001000300000000000000 ......"............... +363 1.247269392 127.0.0.1:57415 127.0.0.1:57433 3341040008 12 ffffffff03930c0000000000 ............ +365 1.275888920 127.0.0.1:57415 127.0.0.1:57433 3341040020 12 65000000eed90c0000000000 e........... +367 1.276098013 127.0.0.1:57415 127.0.0.1:57433 3341040032 101 1e0000001c2118d0c46f33bb010003000000a864020000000000fd9686c39d01 .....!...o3........d..............?.....3...|8.. +369 1.276445866 127.0.0.1:57433 127.0.0.1:57415 383239104 12 ffffffffeed90c0000000000 ............ +371 1.277218580 127.0.0.1:57433 127.0.0.1:57415 383239116 12 3400000004930c0000000000 4........... +373 1.277368069 127.0.0.1:57433 127.0.0.1:57415 383239128 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........\v.. +375 1.277558565 127.0.0.1:57415 127.0.0.1:57433 3341040133 12 ffffffff04930c0000000000 ............ +377 1.278452396 127.0.0.1:57415 127.0.0.1:57433 3341040145 12 1e000000efd90c0000000000 ............ +379 1.278637171 127.0.0.1:57415 127.0.0.1:57433 3341040157 30 1a00000055ceff62b21b3a50010003000000e71e22000000000000000000 ....U..b..:P........"......... +381 1.279125929 127.0.0.1:57433 127.0.0.1:57415 383239180 12 ffffffffefd90c0000000000 ............ +383 1.279500008 127.0.0.1:57433 127.0.0.1:57415 383239192 12 1a00000005930c0000000000 ............ +385 1.279655933 127.0.0.1:57433 127.0.0.1:57415 383239204 26 16000000e71e2200000000000100030000000000000000000000 ......"................... +387 1.279947281 127.0.0.1:57415 127.0.0.1:57433 3341040187 12 ffffffff05930c0000000000 ............ +393 1.348980665 127.0.0.1:57415 127.0.0.1:57433 3341040199 12 1a000000f0d90c0000000000 ............ +395 1.349231243 127.0.0.1:57415 127.0.0.1:57433 3341040211 26 16000000548f6340e25e3140010003000000e91e220000000000 ....T.c@.^1@........"..... +397 1.349576473 127.0.0.1:57433 127.0.0.1:57415 383239230 12 fffffffff0d90c0000000000 ............ +399 1.350049973 127.0.0.1:57433 127.0.0.1:57415 383239242 12 1600000006930c0000000000 ............ +401 1.350194931 127.0.0.1:57433 127.0.0.1:57415 383239254 22 12000000e91e22000000000001000300000000000000 ......"............... +403 1.350382566 127.0.0.1:57415 127.0.0.1:57433 3341040237 12 ffffffff06930c0000000000 ............ +407 1.451447725 127.0.0.1:57415 127.0.0.1:57433 3341040249 12 1a000000f1d90c0000000000 ............ +409 1.451613903 127.0.0.1:57415 127.0.0.1:57433 3341040261 26 16000000548f6340e25e3140010003000000eb1e220000000000 ....T.c@.^1@........"..... +411 1.451926470 127.0.0.1:57433 127.0.0.1:57415 383239276 12 fffffffff1d90c0000000000 ............ +413 1.452617407 127.0.0.1:57433 127.0.0.1:57415 383239288 12 1600000007930c0000000000 ............ +415 1.452776194 127.0.0.1:57433 127.0.0.1:57415 383239300 22 12000000eb1e22000000000001000300000000000000 ......"............... +417 1.453152180 127.0.0.1:57415 127.0.0.1:57433 3341040287 12 ffffffff07930c0000000000 ............ +423 1.522984743 127.0.0.1:57433 127.0.0.1:57415 383239322 12 feffffff7c75010093750100 ....|u...u.. +429 1.554597855 127.0.0.1:57415 127.0.0.1:57433 3341040299 12 1a000000f2d90c0000000000 ............ +431 1.554907084 127.0.0.1:57415 127.0.0.1:57433 3341040311 26 16000000548f6340e25e3140010003000000ed1e220000000000 ....T.c@.^1@........"..... +433 1.555191994 127.0.0.1:57433 127.0.0.1:57415 383239334 12 fffffffff2d90c0000000000 ............ +435 1.555693388 127.0.0.1:57433 127.0.0.1:57415 383239346 12 1600000008930c0000000000 ............ +437 1.555875301 127.0.0.1:57433 127.0.0.1:57415 383239358 22 12000000ed1e22000000000001000300000000000000 ......"............... +439 1.556138277 127.0.0.1:57415 127.0.0.1:57433 3341040337 12 ffffffff08930c0000000000 ............ +441 1.580877304 127.0.0.1:57415 127.0.0.1:57433 3341040349 12 65000000f3d90c0000000000 e........... +443 1.581048012 127.0.0.1:57415 127.0.0.1:57433 3341040361 101 1e0000001c2118d0c46f33bb010003000000a9640200000000002e9886c39d01 .....!...o3........d..............?.....3...|8.. +445 1.581396341 127.0.0.1:57433 127.0.0.1:57415 383239380 12 fffffffff3d90c0000000000 ............ +447 1.582486629 127.0.0.1:57433 127.0.0.1:57415 383239392 12 3400000009930c0000000000 4........... +449 1.582644701 127.0.0.1:57433 127.0.0.1:57415 383239404 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........,. +451 1.582962036 127.0.0.1:57415 127.0.0.1:57433 3341040462 12 ffffffff09930c0000000000 ............ +453 1.583927870 127.0.0.1:57415 127.0.0.1:57433 3341040474 12 1e000000f4d90c0000000000 ............ +455 1.584115982 127.0.0.1:57415 127.0.0.1:57433 3341040486 30 1a00000055ceff62b21b3a50010003000000ef1e22000000000000000000 ....U..b..:P........"......... +457 1.584430456 127.0.0.1:57433 127.0.0.1:57415 383239456 12 fffffffff4d90c0000000000 ............ +459 1.584830284 127.0.0.1:57433 127.0.0.1:57415 383239468 12 1a0000000a930c0000000000 ............ +461 1.584967852 127.0.0.1:57433 127.0.0.1:57415 383239480 26 16000000ef1e2200000000000100030000000000000000000000 ......"................... +463 1.585218430 127.0.0.1:57415 127.0.0.1:57433 3341040516 12 ffffffff0a930c0000000000 ............ +472 1.619418144 127.0.0.1:57415 127.0.0.1:57433 3341040528 12 feffffff947501007c750100 .....u..|u.. +477 1.657444715 127.0.0.1:57415 127.0.0.1:57433 3341040540 12 1a000000f5d90c0000000000 ............ +479 1.657614231 127.0.0.1:57415 127.0.0.1:57433 3341040552 26 16000000548f6340e25e3140010003000000f11e220000000000 ....T.c@.^1@........"..... +481 1.658047915 127.0.0.1:57433 127.0.0.1:57415 383239506 12 fffffffff5d90c0000000000 ............ +483 1.659152031 127.0.0.1:57433 127.0.0.1:57415 383239518 12 160000000b930c0000000000 ............ +485 1.659305573 127.0.0.1:57433 127.0.0.1:57415 383239530 22 12000000f11e22000000000001000300000000000000 ......"............... +487 1.659601688 127.0.0.1:57415 127.0.0.1:57433 3341040578 12 ffffffff0b930c0000000000 ............ +491 1.760654211 127.0.0.1:57415 127.0.0.1:57433 3341040590 12 1a000000f6d90c0000000000 ............ +493 1.760931253 127.0.0.1:57415 127.0.0.1:57433 3341040602 26 16000000548f6340e25e3140010003000000f31e220000000000 ....T.c@.^1@........"..... +495 1.761186838 127.0.0.1:57433 127.0.0.1:57415 383239552 12 fffffffff6d90c0000000000 ............ +497 1.761656284 127.0.0.1:57433 127.0.0.1:57415 383239564 12 160000000c930c0000000000 ............ +499 1.761846304 127.0.0.1:57433 127.0.0.1:57415 383239576 22 12000000f31e22000000000001000300000000000000 ......"............... +501 1.762118340 127.0.0.1:57415 127.0.0.1:57433 3341040628 12 ffffffff0c930c0000000000 ............ +503 1.864394665 127.0.0.1:57415 127.0.0.1:57433 3341040640 12 1a000000f7d90c0000000000 ............ +505 1.864634752 127.0.0.1:57415 127.0.0.1:57433 3341040652 26 16000000548f6340e25e3140010003000000f51e220000000000 ....T.c@.^1@........"..... +507 1.865139484 127.0.0.1:57433 127.0.0.1:57415 383239598 12 fffffffff7d90c0000000000 ............ +509 1.865519285 127.0.0.1:57433 127.0.0.1:57415 383239610 12 160000000d930c0000000000 ............ +511 1.865676880 127.0.0.1:57433 127.0.0.1:57415 383239622 22 12000000f51e22000000000001000300000000000000 ......"............... +513 1.866052389 127.0.0.1:57415 127.0.0.1:57433 3341040678 12 ffffffff0d930c0000000000 ............ +515 1.885998011 127.0.0.1:57415 127.0.0.1:57433 3341040690 12 22000000f8d90c0000000000 "........... +517 1.886395693 127.0.0.1:57415 127.0.0.1:57433 3341040702 34 1e0000001c2118d0c46f33bb010003000000aa640200000000005f9986c39d01 .....!...o3........d......_....... +519 1.886687040 127.0.0.1:57415 127.0.0.1:57433 3341040736 12 43000000f9d90c0000000000 C........... +521 1.886903524 127.0.0.1:57415 127.0.0.1:57433 3341040748 67 3f000000980433cb0cb47c380100030000000100000000aa640200000000003d ?.....3...|8............d......=B.....&......... +522 1.886905432 127.0.0.1:57433 127.0.0.1:57415 383239644 12 fffffffff8d90c0000000000 ............ +525 1.887121916 127.0.0.1:57433 127.0.0.1:57415 383239656 12 fffffffff9d90c0000000000 ............ +527 1.888391495 127.0.0.1:57433 127.0.0.1:57415 383239668 12 340000000e930c0000000000 4........... +529 1.888584375 127.0.0.1:57433 127.0.0.1:57415 383239680 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........Z. +531 1.888956785 127.0.0.1:57415 127.0.0.1:57433 3341040815 12 ffffffff0e930c0000000000 ............ +533 1.890114546 127.0.0.1:57415 127.0.0.1:57433 3341040827 12 1e000000fad90c0000000000 ............ +535 1.890262127 127.0.0.1:57415 127.0.0.1:57433 3341040839 30 1a00000055ceff62b21b3a50010003000000f71e22000000000000000000 ....U..b..:P........"......... +537 1.890664816 127.0.0.1:57433 127.0.0.1:57415 383239732 12 fffffffffad90c0000000000 ............ +539 1.891331196 127.0.0.1:57433 127.0.0.1:57415 383239744 12 1a0000000f930c0000000000 ............ +541 1.891476393 127.0.0.1:57433 127.0.0.1:57415 383239756 26 16000000f71e2200000000000100030000000000000000000000 ......"................... +543 1.891812563 127.0.0.1:57415 127.0.0.1:57433 3341040869 12 ffffffff0f930c0000000000 ............ +551 1.967459440 127.0.0.1:57415 127.0.0.1:57433 3341040881 12 1a000000fbd90c0000000000 ............ +553 1.967621565 127.0.0.1:57415 127.0.0.1:57433 3341040893 26 16000000548f6340e25e3140010003000000f91e220000000000 ....T.c@.^1@........"..... +555 1.967951059 127.0.0.1:57433 127.0.0.1:57415 383239782 12 fffffffffbd90c0000000000 ............ +557 1.968339920 127.0.0.1:57433 127.0.0.1:57415 383239794 12 1600000010930c0000000000 ............ +559 1.968490124 127.0.0.1:57433 127.0.0.1:57415 383239806 22 12000000f91e22000000000001000300000000000000 ......"............... +561 1.968769312 127.0.0.1:57415 127.0.0.1:57433 3341040919 12 ffffffff10930c0000000000 ............ +563 2.023877144 127.0.0.1:57433 127.0.0.1:57415 383239828 12 feffffff7d75010094750100 ....}u...u.. +569 2.070403337 127.0.0.1:57415 127.0.0.1:57433 3341040931 12 1a000000fcd90c0000000000 ............ +571 2.070577383 127.0.0.1:57415 127.0.0.1:57433 3341040943 26 16000000548f6340e25e3140010003000000fb1e220000000000 ....T.c@.^1@........"..... +573 2.070978165 127.0.0.1:57433 127.0.0.1:57415 383239840 12 fffffffffcd90c0000000000 ............ +575 2.071554184 127.0.0.1:57433 127.0.0.1:57415 383239852 12 1600000011930c0000000000 ............ +577 2.071742296 127.0.0.1:57433 127.0.0.1:57415 383239864 22 12000000fb1e22000000000001000300000000000000 ......"............... +579 2.072010756 127.0.0.1:57415 127.0.0.1:57433 3341040969 12 ffffffff11930c0000000000 ............ +587 2.120028734 127.0.0.1:57415 127.0.0.1:57433 3341040981 12 feffffff957501007d750100 .....u..}u.. +593 2.173320293 127.0.0.1:57415 127.0.0.1:57433 3341040993 12 1a000000fdd90c0000000000 ............ +595 2.173536062 127.0.0.1:57415 127.0.0.1:57433 3341041005 26 16000000548f6340e25e3140010003000000fd1e220000000000 ....T.c@.^1@........"..... +597 2.174157381 127.0.0.1:57433 127.0.0.1:57415 383239886 12 fffffffffdd90c0000000000 ............ +599 2.174688339 127.0.0.1:57433 127.0.0.1:57415 383239898 12 1600000012930c0000000000 ............ +601 2.175005913 127.0.0.1:57433 127.0.0.1:57415 383239910 22 12000000fd1e22000000000001000300000000000000 ......"............... +603 2.175326586 127.0.0.1:57415 127.0.0.1:57433 3341041031 12 ffffffff12930c0000000000 ............ +605 2.191658497 127.0.0.1:57415 127.0.0.1:57433 3341041043 12 65000000fed90c0000000000 e........... +607 2.191843748 127.0.0.1:57415 127.0.0.1:57433 3341041055 101 1e0000001c2118d0c46f33bb010003000000ab64020000000000919a86c39d01 .....!...o3........d..............?.....3...|8.. +609 2.192203283 127.0.0.1:57433 127.0.0.1:57415 383239932 12 fffffffffed90c0000000000 ............ +611 2.194048882 127.0.0.1:57433 127.0.0.1:57415 383239944 12 3400000013930c0000000000 4........... +613 2.194210529 127.0.0.1:57433 127.0.0.1:57415 383239956 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........Z.. +615 2.194574833 127.0.0.1:57415 127.0.0.1:57433 3341041156 12 ffffffff13930c0000000000 ............ +617 2.195641518 127.0.0.1:57415 127.0.0.1:57433 3341041168 12 1e000000ffd90c0000000000 ............ +619 2.195880413 127.0.0.1:57415 127.0.0.1:57433 3341041180 30 1a00000055ceff62b21b3a50010003000000ff1e22000000000000000000 ....U..b..:P........"......... +621 2.196457863 127.0.0.1:57433 127.0.0.1:57415 383240008 12 ffffffffffd90c0000000000 ............ +623 2.196870327 127.0.0.1:57433 127.0.0.1:57415 383240020 12 1a00000014930c0000000000 ............ +625 2.197031021 127.0.0.1:57433 127.0.0.1:57415 383240032 26 16000000ff1e2200000000000100030000000000000000000000 ......"................... +627 2.197342873 127.0.0.1:57415 127.0.0.1:57433 3341041210 12 ffffffff14930c0000000000 ............ +631 2.276698828 127.0.0.1:57415 127.0.0.1:57433 3341041222 12 1a00000000da0c0000000000 ............ +633 2.276944399 127.0.0.1:57415 127.0.0.1:57433 3341041234 26 16000000548f6340e25e3140010003000000011f220000000000 ....T.c@.^1@........"..... +635 2.277263403 127.0.0.1:57433 127.0.0.1:57415 383240058 12 ffffffff00da0c0000000000 ............ +637 2.277855635 127.0.0.1:57433 127.0.0.1:57415 383240070 12 1600000015930c0000000000 ............ +639 2.278016806 127.0.0.1:57433 127.0.0.1:57415 383240082 22 12000000011f22000000000001000300000000000000 ......"............... +641 2.278281927 127.0.0.1:57415 127.0.0.1:57433 3341041260 12 ffffffff15930c0000000000 ............ +649 2.379491091 127.0.0.1:57415 127.0.0.1:57433 3341041272 12 1a00000001da0c0000000000 ............ +651 2.379824400 127.0.0.1:57415 127.0.0.1:57433 3341041284 26 16000000548f6340e25e3140010003000000031f220000000000 ....T.c@.^1@........"..... +653 2.380167246 127.0.0.1:57433 127.0.0.1:57415 383240104 12 ffffffff01da0c0000000000 ............ +655 2.380616426 127.0.0.1:57433 127.0.0.1:57415 383240116 12 1600000016930c0000000000 ............ +657 2.380891323 127.0.0.1:57433 127.0.0.1:57415 383240128 22 12000000031f22000000000001000300000000000000 ......"............... +659 2.381186485 127.0.0.1:57415 127.0.0.1:57433 3341041310 12 ffffffff16930c0000000000 ............ +667 2.482308388 127.0.0.1:57415 127.0.0.1:57433 3341041322 12 1a00000002da0c0000000000 ............ +669 2.482467175 127.0.0.1:57415 127.0.0.1:57433 3341041334 26 16000000548f6340e25e3140010003000000051f220000000000 ....T.c@.^1@........"..... +671 2.482935429 127.0.0.1:57433 127.0.0.1:57415 383240150 12 ffffffff02da0c0000000000 ............ +673 2.483215332 127.0.0.1:57433 127.0.0.1:57415 383240162 12 1600000017930c0000000000 ............ +675 2.483352184 127.0.0.1:57433 127.0.0.1:57415 383240174 22 12000000051f22000000000001000300000000000000 ......"............... +677 2.483591318 127.0.0.1:57415 127.0.0.1:57433 3341041360 12 ffffffff17930c0000000000 ............ +679 2.497784376 127.0.0.1:57415 127.0.0.1:57433 3341041372 12 2200000003da0c0000000000 "........... +681 2.497935534 127.0.0.1:57415 127.0.0.1:57433 3341041384 34 1e0000001c2118d0c46f33bb010003000000ac64020000000000c39b86c39d01 .....!...o3........d.............. +683 2.498064280 127.0.0.1:57415 127.0.0.1:57433 3341041418 12 4300000004da0c0000000000 C........... +685 2.498146296 127.0.0.1:57415 127.0.0.1:57433 3341041430 67 3f000000980433cb0cb47c380100030000000100000000ac640200000000003d ?.....3...|8............d......=B.....&......... +687 2.498319387 127.0.0.1:57433 127.0.0.1:57415 383240196 12 ffffffff03da0c0000000000 ............ +689 2.498516083 127.0.0.1:57433 127.0.0.1:57415 383240208 12 ffffffff04da0c0000000000 ............ +691 2.499323368 127.0.0.1:57433 127.0.0.1:57415 383240220 12 3400000018930c0000000000 4........... +693 2.499457359 127.0.0.1:57433 127.0.0.1:57415 383240232 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +695 2.499755383 127.0.0.1:57415 127.0.0.1:57433 3341041497 12 ffffffff18930c0000000000 ............ +697 2.501284361 127.0.0.1:57415 127.0.0.1:57433 3341041509 12 1e00000005da0c0000000000 ............ +699 2.501479149 127.0.0.1:57415 127.0.0.1:57433 3341041521 30 1a00000055ceff62b21b3a50010003000000071f22000000000000000000 ....U..b..:P........"......... +701 2.501802444 127.0.0.1:57433 127.0.0.1:57415 383240284 12 ffffffff05da0c0000000000 ............ +703 2.502238512 127.0.0.1:57433 127.0.0.1:57415 383240296 12 1a00000019930c0000000000 ............ +705 2.502405643 127.0.0.1:57433 127.0.0.1:57415 383240308 26 16000000071f2200000000000100030000000000000000000000 ......"................... +707 2.502647400 127.0.0.1:57415 127.0.0.1:57433 3341041551 12 ffffffff19930c0000000000 ............ +709 2.524459839 127.0.0.1:57433 127.0.0.1:57415 383240334 12 feffffff7e75010095750100 ....~u...u.. +715 2.585941553 127.0.0.1:57415 127.0.0.1:57433 3341041563 12 1a00000006da0c0000000000 ............ +717 2.586099386 127.0.0.1:57415 127.0.0.1:57433 3341041575 26 16000000548f6340e25e3140010003000000091f220000000000 ....T.c@.^1@........"..... +720 2.586288929 127.0.0.1:57433 127.0.0.1:57415 383240346 12 ffffffff06da0c0000000000 ............ +723 2.586804628 127.0.0.1:57433 127.0.0.1:57415 383240358 12 160000001a930c0000000000 ............ +725 2.586991310 127.0.0.1:57433 127.0.0.1:57415 383240370 22 12000000091f22000000000001000300000000000000 ......"............... +727 2.587260246 127.0.0.1:57415 127.0.0.1:57433 3341041601 12 ffffffff1a930c0000000000 ............ +733 2.620781898 127.0.0.1:57415 127.0.0.1:57433 3341041613 12 feffffff967501007e750100 .....u..~u.. +739 2.689234972 127.0.0.1:57415 127.0.0.1:57433 3341041625 12 1a00000007da0c0000000000 ............ +741 2.689509153 127.0.0.1:57415 127.0.0.1:57433 3341041637 26 16000000548f6340e25e31400100030000000b1f220000000000 ....T.c@.^1@........"..... +743 2.689852715 127.0.0.1:57433 127.0.0.1:57415 383240392 12 ffffffff07da0c0000000000 ............ +745 2.690225363 127.0.0.1:57433 127.0.0.1:57415 383240404 12 160000001b930c0000000000 ............ +747 2.690432787 127.0.0.1:57433 127.0.0.1:57415 383240416 22 120000000b1f22000000000001000300000000000000 ......"............... +749 2.690670252 127.0.0.1:57415 127.0.0.1:57433 3341041663 12 ffffffff1b930c0000000000 ............ +751 2.792097330 127.0.0.1:57415 127.0.0.1:57433 3341041675 12 1a00000008da0c0000000000 ............ +753 2.792419672 127.0.0.1:57415 127.0.0.1:57433 3341041687 26 16000000548f6340e25e31400100030000000d1f220000000000 ....T.c@.^1@........"..... +755 2.792709827 127.0.0.1:57433 127.0.0.1:57415 383240438 12 ffffffff08da0c0000000000 ............ +757 2.793143511 127.0.0.1:57433 127.0.0.1:57415 383240450 12 160000001c930c0000000000 ............ +759 2.793277502 127.0.0.1:57433 127.0.0.1:57415 383240462 22 120000000d1f22000000000001000300000000000000 ......"............... +761 2.793596268 127.0.0.1:57415 127.0.0.1:57433 3341041713 12 ffffffff1c930c0000000000 ............ +763 2.802281618 127.0.0.1:57415 127.0.0.1:57433 3341041725 12 6500000009da0c0000000000 e........... +765 2.802526951 127.0.0.1:57415 127.0.0.1:57433 3341041737 101 1e0000001c2118d0c46f33bb010003000000ad64020000000000f39c86c39d01 .....!...o3........d..............?.....3...|8.. +767 2.802760601 127.0.0.1:57433 127.0.0.1:57415 383240484 12 ffffffff09da0c0000000000 ............ +769 2.803575039 127.0.0.1:57433 127.0.0.1:57415 383240496 12 340000001d930c0000000000 4........... +771 2.803709507 127.0.0.1:57433 127.0.0.1:57415 383240508 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........L^.. +773 2.803961277 127.0.0.1:57415 127.0.0.1:57433 3341041838 12 ffffffff1d930c0000000000 ............ +775 2.804942608 127.0.0.1:57415 127.0.0.1:57433 3341041850 12 1e0000000ada0c0000000000 ............ +777 2.805140972 127.0.0.1:57415 127.0.0.1:57433 3341041862 30 1a00000055ceff62b21b3a500100030000000f1f22000000000000000000 ....U..b..:P........"......... +779 2.805469513 127.0.0.1:57433 127.0.0.1:57415 383240560 12 ffffffff0ada0c0000000000 ............ +781 2.805860519 127.0.0.1:57433 127.0.0.1:57415 383240572 12 1a0000001e930c0000000000 ............ +783 2.805990219 127.0.0.1:57433 127.0.0.1:57415 383240584 26 160000000f1f2200000000000100030000000000000000000000 ......"................... +785 2.806203127 127.0.0.1:57415 127.0.0.1:57433 3341041892 12 ffffffff1e930c0000000000 ............ +787 2.894985199 127.0.0.1:57415 127.0.0.1:57433 3341041904 12 1a0000000bda0c0000000000 ............ +789 2.895172119 127.0.0.1:57415 127.0.0.1:57433 3341041916 26 16000000548f6340e25e3140010003000000111f220000000000 ....T.c@.^1@........"..... +791 2.895479441 127.0.0.1:57433 127.0.0.1:57415 383240610 12 ffffffff0bda0c0000000000 ............ +793 2.896252632 127.0.0.1:57433 127.0.0.1:57415 383240622 12 160000001f930c0000000000 ............ +795 2.896459103 127.0.0.1:57433 127.0.0.1:57415 383240634 22 12000000111f22000000000001000300000000000000 ......"............... +797 2.896731615 127.0.0.1:57415 127.0.0.1:57433 3341041942 12 ffffffff1f930c0000000000 ............ +835 2.997875690 127.0.0.1:57415 127.0.0.1:57433 3341041954 12 1a0000000cda0c0000000000 ............ +837 2.998043537 127.0.0.1:57415 127.0.0.1:57433 3341041966 26 16000000548f6340e25e3140010003000000131f220000000000 ....T.c@.^1@........"..... +839 2.998501778 127.0.0.1:57433 127.0.0.1:57415 383240656 12 ffffffff0cda0c0000000000 ............ +841 2.998776674 127.0.0.1:57433 127.0.0.1:57415 383240668 12 1600000020930c0000000000 .... ....... +843 2.998925924 127.0.0.1:57433 127.0.0.1:57415 383240680 22 12000000131f22000000000001000300000000000000 ......"............... +845 2.999240875 127.0.0.1:57415 127.0.0.1:57433 3341041992 12 ffffffff20930c0000000000 .... ....... +847 3.024950743 127.0.0.1:57433 127.0.0.1:57415 383240702 12 feffffff7f75010096750100 .....u...u.. +857 3.101774216 127.0.0.1:57415 127.0.0.1:57433 3341042004 12 1a0000000dda0c0000000000 ............ +859 3.101979017 127.0.0.1:57415 127.0.0.1:57433 3341042016 26 16000000548f6340e25e3140010003000000151f220000000000 ....T.c@.^1@........"..... +861 3.102368832 127.0.0.1:57433 127.0.0.1:57415 383240714 12 ffffffff0dda0c0000000000 ............ +863 3.106919050 127.0.0.1:57415 127.0.0.1:57433 3341042042 12 650000000eda0c0000000000 e........... +865 3.107141018 127.0.0.1:57415 127.0.0.1:57433 3341042054 101 1e0000001c2118d0c46f33bb010003000000ae64020000000000249e86c39d01 .....!...o3........d......$.......?.....3...|8.. +867 3.107467651 127.0.0.1:57433 127.0.0.1:57415 383240726 12 ffffffff0eda0c0000000000 ............ +869 3.108098269 127.0.0.1:57433 127.0.0.1:57415 383240738 12 1600000021930c0000000000 ....!....... +871 3.108322144 127.0.0.1:57433 127.0.0.1:57415 383240750 22 12000000151f22000000000001000300000000000000 ......"............... +873 3.108616829 127.0.0.1:57415 127.0.0.1:57433 3341042155 12 ffffffff21930c0000000000 ....!....... +875 3.108804226 127.0.0.1:57433 127.0.0.1:57415 383240772 12 3400000022930c0000000000 4..."....... +877 3.108948708 127.0.0.1:57433 127.0.0.1:57415 383240784 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +880 3.109249830 127.0.0.1:57415 127.0.0.1:57433 3341042167 12 ffffffff22930c0000000000 ...."....... +883 3.110077143 127.0.0.1:57415 127.0.0.1:57433 3341042179 12 1e0000000fda0c0000000000 ............ +885 3.110291719 127.0.0.1:57415 127.0.0.1:57433 3341042191 30 1a00000055ceff62b21b3a50010003000000171f22000000000000000000 ....U..b..:P........"......... +888 3.110660076 127.0.0.1:57433 127.0.0.1:57415 383240836 12 ffffffff0fda0c0000000000 ............ +895 3.114550829 127.0.0.1:57433 127.0.0.1:57415 383240848 12 1a00000023930c0000000000 ....#....... +897 3.114695311 127.0.0.1:57433 127.0.0.1:57415 383240860 26 16000000171f2200000000000100030000000000000000000000 ......"................... +899 3.114957094 127.0.0.1:57415 127.0.0.1:57433 3341042221 12 ffffffff23930c0000000000 ....#....... +901 3.121563435 127.0.0.1:57415 127.0.0.1:57433 3341042233 12 feffffff977501007f750100 .....u...u.. +909 3.209563732 127.0.0.1:57415 127.0.0.1:57433 3341042245 12 1a00000010da0c0000000000 ............ +911 3.209799528 127.0.0.1:57415 127.0.0.1:57433 3341042257 26 16000000548f6340e25e3140010003000000191f220000000000 ....T.c@.^1@........"..... +913 3.210154295 127.0.0.1:57433 127.0.0.1:57415 383240886 12 ffffffff10da0c0000000000 ............ +915 3.210810423 127.0.0.1:57433 127.0.0.1:57415 383240898 12 1600000024930c0000000000 ....$....... +917 3.210973024 127.0.0.1:57433 127.0.0.1:57415 383240910 22 12000000191f22000000000001000300000000000000 ......"............... +919 3.211153269 127.0.0.1:57415 127.0.0.1:57433 3341042283 12 ffffffff24930c0000000000 ....$....... +921 3.312614441 127.0.0.1:57415 127.0.0.1:57433 3341042295 12 1a00000011da0c0000000000 ............ +923 3.312788486 127.0.0.1:57415 127.0.0.1:57433 3341042307 26 16000000548f6340e25e31400100030000001b1f220000000000 ....T.c@.^1@........"..... +925 3.313134909 127.0.0.1:57433 127.0.0.1:57415 383240932 12 ffffffff11da0c0000000000 ............ +927 3.313561916 127.0.0.1:57433 127.0.0.1:57415 383240944 12 1600000025930c0000000000 ....%....... +929 3.313771248 127.0.0.1:57433 127.0.0.1:57415 383240956 22 120000001b1f22000000000001000300000000000000 ......"............... +931 3.314112425 127.0.0.1:57415 127.0.0.1:57433 3341042333 12 ffffffff25930c0000000000 ....%....... +935 3.412154198 127.0.0.1:57415 127.0.0.1:57433 3341042345 12 6500000012da0c0000000000 e........... +937 3.412396908 127.0.0.1:57415 127.0.0.1:57433 3341042357 101 1e0000001c2118d0c46f33bb010003000000af64020000000000559f86c39d01 .....!...o3........d......U.......?.....3...|8.. +939 3.412782431 127.0.0.1:57433 127.0.0.1:57415 383240978 12 ffffffff12da0c0000000000 ............ +941 3.414084911 127.0.0.1:57433 127.0.0.1:57415 383240990 12 3400000026930c0000000000 4...&....... +943 3.414243460 127.0.0.1:57433 127.0.0.1:57415 383241002 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........C. +945 3.414475918 127.0.0.1:57415 127.0.0.1:57433 3341042458 12 ffffffff26930c0000000000 ....&....... +947 3.415411234 127.0.0.1:57415 127.0.0.1:57433 3341042470 12 1e00000013da0c0000000000 ............ +949 3.415601015 127.0.0.1:57415 127.0.0.1:57433 3341042482 30 1a00000055ceff62b21b3a500100030000001d1f22000000000000000000 ....U..b..:P........"......... +951 3.416016102 127.0.0.1:57433 127.0.0.1:57415 383241054 12 ffffffff13da0c0000000000 ............ +953 3.416421175 127.0.0.1:57415 127.0.0.1:57433 3341042512 12 1a00000014da0c0000000000 ............ +954 3.416450500 127.0.0.1:57433 127.0.0.1:57415 383241066 12 1a00000027930c0000000000 ....'....... +956 3.416573048 127.0.0.1:57415 127.0.0.1:57433 3341042524 26 16000000548f6340e25e31400100030000001f1f220000000000 ....T.c@.^1@........"..... +958 3.416731834 127.0.0.1:57433 127.0.0.1:57415 383241078 26 160000001d1f2200000000000100030000000000000000000000 ......"................... +960 3.416979313 127.0.0.1:57433 127.0.0.1:57415 383241104 12 ffffffff14da0c0000000000 ............ +962 3.417080402 127.0.0.1:57415 127.0.0.1:57433 3341042550 12 ffffffff27930c0000000000 ....'....... +963 3.417258739 127.0.0.1:57433 127.0.0.1:57415 383241116 12 1600000028930c0000000000 ....(....... +965 3.417394876 127.0.0.1:57433 127.0.0.1:57415 383241128 22 120000001f1f22000000000001000300000000000000 ......"............... +967 3.417687178 127.0.0.1:57415 127.0.0.1:57433 3341042562 12 ffffffff28930c0000000000 ....(....... +975 3.520593882 127.0.0.1:57415 127.0.0.1:57433 3341042574 12 1a00000015da0c0000000000 ............ +977 3.520899534 127.0.0.1:57415 127.0.0.1:57433 3341042586 26 16000000548f6340e25e3140010003000000211f220000000000 ....T.c@.^1@......!."..... +979 3.521254778 127.0.0.1:57433 127.0.0.1:57415 383241150 12 ffffffff15da0c0000000000 ............ +981 3.521657705 127.0.0.1:57433 127.0.0.1:57415 383241162 12 1600000029930c0000000000 ....)....... +983 3.521855831 127.0.0.1:57433 127.0.0.1:57415 383241174 22 12000000211f22000000000001000300000000000000 ....!."............... +985 3.522043228 127.0.0.1:57415 127.0.0.1:57433 3341042612 12 ffffffff29930c0000000000 ....)....... +987 3.525245190 127.0.0.1:57433 127.0.0.1:57415 383241196 12 feffffff8075010097750100 .....u...u.. +1001 3.622807980 127.0.0.1:57415 127.0.0.1:57433 3341042624 12 feffffff9875010080750100 .....u...u.. +1007 3.623294353 127.0.0.1:57415 127.0.0.1:57433 3341042636 12 1a00000016da0c0000000000 ............ +1009 3.623434782 127.0.0.1:57415 127.0.0.1:57433 3341042648 26 16000000548f6340e25e3140010003000000231f220000000000 ....T.c@.^1@......#."..... +1011 3.623820305 127.0.0.1:57433 127.0.0.1:57415 383241208 12 ffffffff16da0c0000000000 ............ +1013 3.624231100 127.0.0.1:57433 127.0.0.1:57415 383241220 12 160000002a930c0000000000 ....*....... +1015 3.624450922 127.0.0.1:57433 127.0.0.1:57415 383241232 22 12000000231f22000000000001000300000000000000 ....#."............... +1017 3.624829292 127.0.0.1:57415 127.0.0.1:57433 3341042674 12 ffffffff2a930c0000000000 ....*....... +1073 3.716699839 127.0.0.1:57415 127.0.0.1:57433 3341042686 12 2200000017da0c0000000000 "........... +1075 3.716853380 127.0.0.1:57415 127.0.0.1:57433 3341042698 34 1e0000001c2118d0c46f33bb010003000000b06402000000000086a086c39d01 .....!...o3........d.............. +1077 3.716946125 127.0.0.1:57415 127.0.0.1:57433 3341042732 12 4300000018da0c0000000000 C........... +1079 3.717028618 127.0.0.1:57415 127.0.0.1:57433 3341042744 67 3f000000980433cb0cb47c380100030000000100000000b0640200000000003d ?.....3...|8............d......=B.....&......... +1080 3.717071533 127.0.0.1:57433 127.0.0.1:57415 383241254 12 ffffffff17da0c0000000000 ............ +1081 3.717163324 127.0.0.1:57433 127.0.0.1:57415 383241266 12 ffffffff18da0c0000000000 ............ +1084 3.718459606 127.0.0.1:57433 127.0.0.1:57415 383241278 12 340000002b930c0000000000 4...+....... +1086 3.718688726 127.0.0.1:57433 127.0.0.1:57415 383241290 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........P.q. +1088 3.718973637 127.0.0.1:57415 127.0.0.1:57433 3341042811 12 ffffffff2b930c0000000000 ....+....... +1089 3.719779015 127.0.0.1:57415 127.0.0.1:57433 3341042823 12 1e00000019da0c0000000000 ............ +1090 3.719883919 127.0.0.1:57415 127.0.0.1:57433 3341042835 30 1a00000055ceff62b21b3a50010003000000251f22000000000000000000 ....U..b..:P......%."......... +1091 3.720029593 127.0.0.1:57433 127.0.0.1:57415 383241342 12 ffffffff19da0c0000000000 ............ +1093 3.720502138 127.0.0.1:57433 127.0.0.1:57415 383241354 12 1a0000002c930c0000000000 ....,....... +1095 3.720667124 127.0.0.1:57433 127.0.0.1:57415 383241366 26 16000000251f2200000000000100030000000000000000000000 ....%."................... +1097 3.721056700 127.0.0.1:57415 127.0.0.1:57433 3341042865 12 ffffffff2c930c0000000000 ....,....... +1098 3.726184130 127.0.0.1:57415 127.0.0.1:57433 3341042877 12 1a0000001ada0c0000000000 ............ +1099 3.726325750 127.0.0.1:57415 127.0.0.1:57433 3341042889 26 16000000548f6340e25e3140010003000000271f220000000000 ....T.c@.^1@......'."..... +1100 3.726790667 127.0.0.1:57433 127.0.0.1:57415 383241392 12 ffffffff1ada0c0000000000 ............ +1102 3.727107286 127.0.0.1:57433 127.0.0.1:57415 383241404 12 160000002d930c0000000000 ....-....... +1104 3.727255106 127.0.0.1:57433 127.0.0.1:57415 383241416 22 12000000271f22000000000001000300000000000000 ....'."............... +1106 3.727572918 127.0.0.1:57415 127.0.0.1:57433 3341042915 12 ffffffff2d930c0000000000 ....-....... +1120 3.830377340 127.0.0.1:57415 127.0.0.1:57433 3341042927 12 1a0000001bda0c0000000000 ............ +1122 3.831797838 127.0.0.1:57415 127.0.0.1:57433 3341042939 26 16000000548f6340e25e3140010003000000291f220000000000 ....T.c@.^1@......)."..... +1124 3.832076788 127.0.0.1:57433 127.0.0.1:57415 383241438 12 ffffffff1bda0c0000000000 ............ +1126 3.832467318 127.0.0.1:57433 127.0.0.1:57415 383241450 12 160000002e930c0000000000 ............ +1128 3.832633018 127.0.0.1:57433 127.0.0.1:57415 383241462 22 12000000291f22000000000001000300000000000000 ....)."............... +1130 3.832898617 127.0.0.1:57415 127.0.0.1:57433 3341042965 12 ffffffff2e930c0000000000 ............ +1136 3.934300423 127.0.0.1:57415 127.0.0.1:57433 3341042977 12 1a0000001cda0c0000000000 ............ +1138 3.934463978 127.0.0.1:57415 127.0.0.1:57433 3341042989 26 16000000548f6340e25e31400100030000002b1f220000000000 ....T.c@.^1@......+."..... +1140 3.934893847 127.0.0.1:57433 127.0.0.1:57415 383241484 12 ffffffff1cda0c0000000000 ............ +1142 3.935233831 127.0.0.1:57433 127.0.0.1:57415 383241496 12 160000002f930c0000000000 ..../....... +1144 3.935386896 127.0.0.1:57433 127.0.0.1:57415 383241508 22 120000002b1f22000000000001000300000000000000 ....+."............... +1146 3.935783625 127.0.0.1:57415 127.0.0.1:57433 3341043015 12 ffffffff2f930c0000000000 ..../....... +1152 4.022631407 127.0.0.1:57415 127.0.0.1:57433 3341043027 12 650000001dda0c0000000000 e........... +1154 4.022856474 127.0.0.1:57415 127.0.0.1:57433 3341043039 101 1e0000001c2118d0c46f33bb010003000000b164020000000000b7a186c39d01 .....!...o3........d..............?.....3...|8.. +1156 4.023177624 127.0.0.1:57433 127.0.0.1:57415 383241530 12 ffffffff1dda0c0000000000 ............ +1158 4.023997307 127.0.0.1:57433 127.0.0.1:57415 383241542 12 3400000030930c0000000000 4...0....... +1160 4.024192095 127.0.0.1:57433 127.0.0.1:57415 383241554 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........Z... +1162 4.024505854 127.0.0.1:57415 127.0.0.1:57433 3341043140 12 ffffffff30930c0000000000 ....0....... +1164 4.025178909 127.0.0.1:57433 127.0.0.1:57415 383241606 12 feffffff8175010098750100 .....u...u.. +1166 4.025327921 127.0.0.1:57415 127.0.0.1:57433 3341043152 12 1e0000001eda0c0000000000 ............ +1168 4.025466919 127.0.0.1:57415 127.0.0.1:57433 3341043164 30 1a00000055ceff62b21b3a500100030000002d1f22000000000000000000 ....U..b..:P......-."......... +1170 4.025760412 127.0.0.1:57433 127.0.0.1:57415 383241618 12 ffffffff1eda0c0000000000 ............ +1172 4.026098490 127.0.0.1:57433 127.0.0.1:57415 383241630 12 1a00000031930c0000000000 ....1....... +1174 4.026233435 127.0.0.1:57433 127.0.0.1:57415 383241642 26 160000002d1f2200000000000100030000000000000000000000 ....-."................... +1176 4.026504278 127.0.0.1:57415 127.0.0.1:57433 3341043194 12 ffffffff31930c0000000000 ....1....... +1178 4.038229465 127.0.0.1:57415 127.0.0.1:57433 3341043206 12 1a0000001fda0c0000000000 ............ +1180 4.038382053 127.0.0.1:57415 127.0.0.1:57433 3341043218 26 16000000548f6340e25e31400100030000002f1f220000000000 ....T.c@.^1@....../."..... +1182 4.038734198 127.0.0.1:57433 127.0.0.1:57415 383241668 12 ffffffff1fda0c0000000000 ............ +1184 4.039107323 127.0.0.1:57433 127.0.0.1:57415 383241680 12 1600000032930c0000000000 ....2....... +1186 4.039271355 127.0.0.1:57433 127.0.0.1:57415 383241692 22 120000002f1f22000000000001000300000000000000 ..../."............... +1188 4.039502382 127.0.0.1:57415 127.0.0.1:57433 3341043244 12 ffffffff32930c0000000000 ....2....... +1292 4.123241901 127.0.0.1:57415 127.0.0.1:57433 3341043256 12 feffffff9975010081750100 .....u...u.. +1302 4.142417192 127.0.0.1:57415 127.0.0.1:57433 3341043268 12 1a00000020da0c0000000000 .... ....... +1304 4.142606258 127.0.0.1:57415 127.0.0.1:57433 3341043280 26 16000000548f6340e25e3140010003000000311f220000000000 ....T.c@.^1@......1."..... +1306 4.142926216 127.0.0.1:57433 127.0.0.1:57415 383241714 12 ffffffff20da0c0000000000 .... ....... +1308 4.143384218 127.0.0.1:57433 127.0.0.1:57415 383241726 12 1600000033930c0000000000 ....3....... +1310 4.143532515 127.0.0.1:57433 127.0.0.1:57415 383241738 22 12000000311f22000000000001000300000000000000 ....1."............... +1312 4.143744946 127.0.0.1:57415 127.0.0.1:57433 3341043306 12 ffffffff33930c0000000000 ....3....... +1474 4.246350050 127.0.0.1:57415 127.0.0.1:57433 3341043318 12 1a00000021da0c0000000000 ....!....... +1476 4.246602297 127.0.0.1:57415 127.0.0.1:57433 3341043330 26 16000000548f6340e25e3140010003000000331f220000000000 ....T.c@.^1@......3."..... +1478 4.247064829 127.0.0.1:57433 127.0.0.1:57415 383241760 12 ffffffff21da0c0000000000 ....!....... +1480 4.247567892 127.0.0.1:57433 127.0.0.1:57415 383241772 12 1600000034930c0000000000 ....4....... +1482 4.247725010 127.0.0.1:57433 127.0.0.1:57415 383241784 22 12000000331f22000000000001000300000000000000 ....3."............... +1484 4.248097420 127.0.0.1:57415 127.0.0.1:57433 3341043356 12 ffffffff34930c0000000000 ....4....... +1553 4.326512575 127.0.0.1:57415 127.0.0.1:57433 3341043368 12 6500000022da0c0000000000 e..."....... +1555 4.326722622 127.0.0.1:57415 127.0.0.1:57433 3341043380 101 1e0000001c2118d0c46f33bb010003000000b264020000000000e7a286c39d01 .....!...o3........d..............?.....3...|8.. +1557 4.327027798 127.0.0.1:57433 127.0.0.1:57415 383241806 12 ffffffff22da0c0000000000 ...."....... +1559 4.328119755 127.0.0.1:57433 127.0.0.1:57415 383241818 12 3400000035930c0000000000 4...5....... +1561 4.328267574 127.0.0.1:57433 127.0.0.1:57415 383241830 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +1563 4.328685045 127.0.0.1:57415 127.0.0.1:57433 3341043481 12 ffffffff35930c0000000000 ....5....... +1565 4.329459429 127.0.0.1:57415 127.0.0.1:57433 3341043493 12 1e00000023da0c0000000000 ....#....... +1567 4.329685211 127.0.0.1:57415 127.0.0.1:57433 3341043505 30 1a00000055ceff62b21b3a50010003000000351f22000000000000000000 ....U..b..:P......5."......... +1569 4.329976320 127.0.0.1:57433 127.0.0.1:57415 383241882 12 ffffffff23da0c0000000000 ....#....... +1571 4.330362797 127.0.0.1:57433 127.0.0.1:57415 383241894 12 1a00000036930c0000000000 ....6....... +1573 4.330519199 127.0.0.1:57433 127.0.0.1:57415 383241906 26 16000000351f2200000000000100030000000000000000000000 ....5."................... +1575 4.330809116 127.0.0.1:57415 127.0.0.1:57433 3341043535 12 ffffffff36930c0000000000 ....6....... +1577 4.349354506 127.0.0.1:57415 127.0.0.1:57433 3341043547 12 1a00000024da0c0000000000 ....$....... +1579 4.349538803 127.0.0.1:57415 127.0.0.1:57433 3341043559 26 16000000548f6340e25e3140010003000000371f220000000000 ....T.c@.^1@......7."..... +1581 4.349920511 127.0.0.1:57433 127.0.0.1:57415 383241932 12 ffffffff24da0c0000000000 ....$....... +1583 4.350383520 127.0.0.1:57433 127.0.0.1:57415 383241944 12 1600000037930c0000000000 ....7....... +1585 4.350596428 127.0.0.1:57433 127.0.0.1:57415 383241956 22 12000000371f22000000000001000300000000000000 ....7."............... +1587 4.350940466 127.0.0.1:57415 127.0.0.1:57433 3341043585 12 ffffffff37930c0000000000 ....7....... +1597 4.452563763 127.0.0.1:57415 127.0.0.1:57433 3341043597 12 1a00000025da0c0000000000 ....%....... +1602 4.452739477 127.0.0.1:57415 127.0.0.1:57433 3341043609 26 16000000548f6340e25e3140010003000000391f220000000000 ....T.c@.^1@......9."..... +1607 4.453056097 127.0.0.1:57433 127.0.0.1:57415 383241978 12 ffffffff25da0c0000000000 ....%....... +1610 4.453554153 127.0.0.1:57433 127.0.0.1:57415 383241990 12 1600000038930c0000000000 ....8....... +1612 4.453697443 127.0.0.1:57433 127.0.0.1:57415 383242002 22 12000000391f22000000000001000300000000000000 ....9."............... +1614 4.454047918 127.0.0.1:57415 127.0.0.1:57433 3341043635 12 ffffffff38930c0000000000 ....8....... +1686 4.527077913 127.0.0.1:57433 127.0.0.1:57415 383242024 12 feffffff8275010099750100 .....u...u.. +1689 4.556252718 127.0.0.1:57415 127.0.0.1:57433 3341043647 12 1a00000026da0c0000000000 ....&....... +1691 4.556430578 127.0.0.1:57415 127.0.0.1:57433 3341043659 26 16000000548f6340e25e31400100030000003b1f220000000000 ....T.c@.^1@......;."..... +1693 4.556773186 127.0.0.1:57433 127.0.0.1:57415 383242036 12 ffffffff26da0c0000000000 ....&....... +1695 4.557188034 127.0.0.1:57433 127.0.0.1:57415 383242048 12 1600000039930c0000000000 ....9....... +1697 4.557321072 127.0.0.1:57433 127.0.0.1:57415 383242060 22 120000003b1f22000000000001000300000000000000 ....;."............... +1699 4.557709455 127.0.0.1:57415 127.0.0.1:57433 3341043685 12 ffffffff39930c0000000000 ....9....... +1714 4.626029253 127.0.0.1:57415 127.0.0.1:57433 3341043697 12 feffffff9a75010082750100 .....u...u.. +1719 4.631210327 127.0.0.1:57415 127.0.0.1:57433 3341043709 12 2200000027da0c0000000000 "...'....... +1721 4.631416559 127.0.0.1:57415 127.0.0.1:57433 3341043721 34 1e0000001c2118d0c46f33bb010003000000b36402000000000018a486c39d01 .....!...o3........d.............. +1723 4.631546021 127.0.0.1:57415 127.0.0.1:57433 3341043755 12 4300000028da0c0000000000 C...(....... +1725 4.631627083 127.0.0.1:57415 127.0.0.1:57433 3341043767 67 3f000000980433cb0cb47c380100030000000100000000b3640200000000003d ?.....3...|8............d......=B.....&......... +1727 4.631716013 127.0.0.1:57433 127.0.0.1:57415 383242082 12 ffffffff27da0c0000000000 ....'....... +1729 4.631910801 127.0.0.1:57433 127.0.0.1:57415 383242094 12 ffffffff28da0c0000000000 ....(....... +1731 4.632721186 127.0.0.1:57433 127.0.0.1:57415 383242106 12 340000003a930c0000000000 4...:....... +1733 4.632912636 127.0.0.1:57433 127.0.0.1:57415 383242118 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........w.. +1735 4.633333921 127.0.0.1:57415 127.0.0.1:57433 3341043834 12 ffffffff3a930c0000000000 ....:....... +1737 4.634463310 127.0.0.1:57415 127.0.0.1:57433 3341043846 12 1e00000029da0c0000000000 ....)....... +1739 4.634610891 127.0.0.1:57415 127.0.0.1:57433 3341043858 30 1a00000055ceff62b21b3a500100030000003d1f22000000000000000000 ....U..b..:P......=."......... +1741 4.634920359 127.0.0.1:57433 127.0.0.1:57415 383242170 12 ffffffff29da0c0000000000 ....)....... +1743 4.635395050 127.0.0.1:57433 127.0.0.1:57415 383242182 12 1a0000003b930c0000000000 ....;....... +1745 4.635528326 127.0.0.1:57433 127.0.0.1:57415 383242194 26 160000003d1f2200000000000100030000000000000000000000 ....=."................... +1747 4.635761499 127.0.0.1:57415 127.0.0.1:57433 3341043888 12 ffffffff3b930c0000000000 ....;....... +1752 4.659474611 127.0.0.1:57415 127.0.0.1:57433 3341043900 12 1a0000002ada0c0000000000 ....*....... +1754 4.659674883 127.0.0.1:57415 127.0.0.1:57433 3341043912 26 16000000548f6340e25e31400100030000003f1f220000000000 ....T.c@.^1@......?."..... +1756 4.659971952 127.0.0.1:57433 127.0.0.1:57415 383242220 12 ffffffff2ada0c0000000000 ....*....... +1758 4.660481453 127.0.0.1:57433 127.0.0.1:57415 383242232 12 160000003c930c0000000000 ....<....... +1760 4.660640955 127.0.0.1:57433 127.0.0.1:57415 383242244 22 120000003f1f22000000000001000300000000000000 ....?."............... +1762 4.661032438 127.0.0.1:57415 127.0.0.1:57433 3341043938 12 ffffffff3c930c0000000000 ....<....... +1765 4.762060881 127.0.0.1:57415 127.0.0.1:57433 3341043950 12 1a0000002bda0c0000000000 ....+....... +1767 4.762284517 127.0.0.1:57415 127.0.0.1:57433 3341043962 26 16000000548f6340e25e3140010003000000411f220000000000 ....T.c@.^1@......A."..... +1769 4.762667656 127.0.0.1:57433 127.0.0.1:57415 383242266 12 ffffffff2bda0c0000000000 ....+....... +1771 4.763132095 127.0.0.1:57433 127.0.0.1:57415 383242278 12 160000003d930c0000000000 ....=....... +1773 4.763348818 127.0.0.1:57433 127.0.0.1:57415 383242290 22 12000000411f22000000000001000300000000000000 ....A."............... +1775 4.763562441 127.0.0.1:57415 127.0.0.1:57433 3341043988 12 ffffffff3d930c0000000000 ....=....... +1777 4.865988255 127.0.0.1:57415 127.0.0.1:57433 3341044000 12 1a0000002cda0c0000000000 ....,....... +1779 4.866202354 127.0.0.1:57415 127.0.0.1:57433 3341044012 26 16000000548f6340e25e3140010003000000431f220000000000 ....T.c@.^1@......C."..... +1781 4.866592407 127.0.0.1:57433 127.0.0.1:57415 383242312 12 ffffffff2cda0c0000000000 ....,....... +1783 4.867099524 127.0.0.1:57433 127.0.0.1:57415 383242324 12 160000003e930c0000000000 ....>....... +1785 4.867409706 127.0.0.1:57433 127.0.0.1:57415 383242336 22 12000000431f22000000000001000300000000000000 ....C."............... +1787 4.867750406 127.0.0.1:57415 127.0.0.1:57433 3341044038 12 ffffffff3e930c0000000000 ....>....... +1794 4.937616825 127.0.0.1:57415 127.0.0.1:57433 3341044050 12 650000002dda0c0000000000 e...-....... +1796 4.937778473 127.0.0.1:57415 127.0.0.1:57433 3341044062 101 1e0000001c2118d0c46f33bb010003000000b4640200000000004ba586c39d01 .....!...o3........d......K.......?.....3...|8.. +1798 4.938093662 127.0.0.1:57433 127.0.0.1:57415 383242358 12 ffffffff2dda0c0000000000 ....-....... +1800 4.939317703 127.0.0.1:57433 127.0.0.1:57415 383242370 12 340000003f930c0000000000 4...?....... +1802 4.939556599 127.0.0.1:57433 127.0.0.1:57415 383242382 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........?,. +1804 4.939868927 127.0.0.1:57415 127.0.0.1:57433 3341044163 12 ffffffff3f930c0000000000 ....?....... +1806 4.940661192 127.0.0.1:57415 127.0.0.1:57433 3341044175 12 1e0000002eda0c0000000000 ............ +1808 4.940814495 127.0.0.1:57415 127.0.0.1:57433 3341044187 30 1a00000055ceff62b21b3a50010003000000451f22000000000000000000 ....U..b..:P......E."......... +1810 4.941164970 127.0.0.1:57433 127.0.0.1:57415 383242434 12 ffffffff2eda0c0000000000 ............ +1812 4.941524029 127.0.0.1:57433 127.0.0.1:57415 383242446 12 1a00000040930c0000000000 ....@....... +1814 4.941682339 127.0.0.1:57433 127.0.0.1:57415 383242458 26 16000000451f2200000000000100030000000000000000000000 ....E."................... +1816 4.941998482 127.0.0.1:57415 127.0.0.1:57433 3341044217 12 ffffffff40930c0000000000 ....@....... +1822 4.968832016 127.0.0.1:57415 127.0.0.1:57433 3341044229 12 1a0000002fda0c0000000000 ..../....... +1824 4.968986273 127.0.0.1:57415 127.0.0.1:57433 3341044241 26 16000000548f6340e25e3140010003000000471f220000000000 ....T.c@.^1@......G."..... +1826 4.969399452 127.0.0.1:57433 127.0.0.1:57415 383242484 12 ffffffff2fda0c0000000000 ..../....... +1828 4.969733238 127.0.0.1:57433 127.0.0.1:57415 383242496 12 1600000041930c0000000000 ....A....... +1830 4.969884396 127.0.0.1:57433 127.0.0.1:57415 383242508 22 12000000471f22000000000001000300000000000000 ....G."............... +1832 4.970086813 127.0.0.1:57415 127.0.0.1:57433 3341044267 12 ffffffff41930c0000000000 ....A....... +1835 5.027747869 127.0.0.1:57433 127.0.0.1:57415 383242530 12 feffffff837501009a750100 .....u...u.. +1841 5.071856499 127.0.0.1:57415 127.0.0.1:57433 3341044279 12 1a00000030da0c0000000000 ....0....... +1843 5.072026253 127.0.0.1:57415 127.0.0.1:57433 3341044291 26 16000000548f6340e25e3140010003000000491f220000000000 ....T.c@.^1@......I."..... +1845 5.072359324 127.0.0.1:57433 127.0.0.1:57415 383242542 12 ffffffff30da0c0000000000 ....0....... +1847 5.072913408 127.0.0.1:57433 127.0.0.1:57415 383242554 12 1600000042930c0000000000 ....B....... +1849 5.073082924 127.0.0.1:57433 127.0.0.1:57415 383242566 22 12000000491f22000000000001000300000000000000 ....I."............... +1851 5.073459864 127.0.0.1:57415 127.0.0.1:57433 3341044317 12 ffffffff42930c0000000000 ....B....... +1863 5.127241850 127.0.0.1:57415 127.0.0.1:57433 3341044329 12 feffffff9b75010083750100 .....u...u.. +1870 5.174873829 127.0.0.1:57415 127.0.0.1:57433 3341044341 12 1a00000031da0c0000000000 ....1....... +1872 5.175126791 127.0.0.1:57415 127.0.0.1:57433 3341044353 26 16000000548f6340e25e31400100030000004b1f220000000000 ....T.c@.^1@......K."..... +1874 5.175520420 127.0.0.1:57433 127.0.0.1:57415 383242588 12 ffffffff31da0c0000000000 ....1....... +1876 5.176039457 127.0.0.1:57433 127.0.0.1:57415 383242600 12 1600000043930c0000000000 ....C....... +1878 5.176263571 127.0.0.1:57433 127.0.0.1:57415 383242612 22 120000004b1f22000000000001000300000000000000 ....K."............... +1880 5.176463604 127.0.0.1:57415 127.0.0.1:57433 3341044379 12 ffffffff43930c0000000000 ....C....... +1883 5.242116451 127.0.0.1:57415 127.0.0.1:57433 3341044391 12 6500000032da0c0000000000 e...2....... +1885 5.242341280 127.0.0.1:57415 127.0.0.1:57433 3341044403 101 1e0000001c2118d0c46f33bb010003000000b5640200000000007ba686c39d01 .....!...o3........d......{.......?.....3...|8.. +1887 5.242681026 127.0.0.1:57433 127.0.0.1:57415 383242634 12 ffffffff32da0c0000000000 ....2....... +1889 5.243513107 127.0.0.1:57433 127.0.0.1:57415 383242646 12 3400000044930c0000000000 4...D....... +1891 5.243670940 127.0.0.1:57433 127.0.0.1:57415 383242658 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........`.Z. +1893 5.243951559 127.0.0.1:57415 127.0.0.1:57433 3341044504 12 ffffffff44930c0000000000 ....D....... +1895 5.244889498 127.0.0.1:57415 127.0.0.1:57433 3341044516 12 1e00000033da0c0000000000 ....3....... +1897 5.245027065 127.0.0.1:57415 127.0.0.1:57433 3341044528 30 1a00000055ceff62b21b3a500100030000004d1f22000000000000000000 ....U..b..:P......M."......... +1899 5.245332241 127.0.0.1:57433 127.0.0.1:57415 383242710 12 ffffffff33da0c0000000000 ....3....... +1901 5.245720625 127.0.0.1:57433 127.0.0.1:57415 383242722 12 1a00000045930c0000000000 ....E....... +1903 5.245854139 127.0.0.1:57433 127.0.0.1:57415 383242734 26 160000004d1f2200000000000100030000000000000000000000 ....M."................... +1905 5.246118307 127.0.0.1:57415 127.0.0.1:57433 3341044558 12 ffffffff45930c0000000000 ....E....... +1907 5.277825117 127.0.0.1:57415 127.0.0.1:57433 3341044570 12 1a00000034da0c0000000000 ....4....... +1909 5.278048277 127.0.0.1:57415 127.0.0.1:57433 3341044582 26 16000000548f6340e25e31400100030000004f1f220000000000 ....T.c@.^1@......O."..... +1911 5.278518677 127.0.0.1:57433 127.0.0.1:57415 383242760 12 ffffffff34da0c0000000000 ....4....... +1913 5.279100418 127.0.0.1:57433 127.0.0.1:57415 383242772 12 1600000046930c0000000000 ....F....... +1915 5.279298782 127.0.0.1:57433 127.0.0.1:57415 383242784 22 120000004f1f22000000000001000300000000000000 ....O."............... +1917 5.279485703 127.0.0.1:57415 127.0.0.1:57433 3341044608 12 ffffffff46930c0000000000 ....F....... +1924 5.380872250 127.0.0.1:57415 127.0.0.1:57433 3341044620 12 1a00000035da0c0000000000 ....5....... +1926 5.381113052 127.0.0.1:57415 127.0.0.1:57433 3341044632 26 16000000548f6340e25e3140010003000000511f220000000000 ....T.c@.^1@......Q."..... +1928 5.381535053 127.0.0.1:57433 127.0.0.1:57415 383242806 12 ffffffff35da0c0000000000 ....5....... +1930 5.382088423 127.0.0.1:57433 127.0.0.1:57415 383242818 12 1600000047930c0000000000 ....G....... +1932 5.382257462 127.0.0.1:57433 127.0.0.1:57415 383242830 22 12000000511f22000000000001000300000000000000 ....Q."............... +1934 5.382431507 127.0.0.1:57415 127.0.0.1:57433 3341044658 12 ffffffff47930c0000000000 ....G....... +1943 5.483976603 127.0.0.1:57415 127.0.0.1:57433 3341044670 12 1a00000036da0c0000000000 ....6....... +1945 5.484202147 127.0.0.1:57415 127.0.0.1:57433 3341044682 26 16000000548f6340e25e3140010003000000531f220000000000 ....T.c@.^1@......S."..... +1947 5.484475613 127.0.0.1:57433 127.0.0.1:57415 383242852 12 ffffffff36da0c0000000000 ....6....... +1949 5.484908342 127.0.0.1:57433 127.0.0.1:57415 383242864 12 1600000048930c0000000000 ....H....... +1951 5.485054970 127.0.0.1:57433 127.0.0.1:57415 383242876 22 12000000531f22000000000001000300000000000000 ....S."............... +1953 5.485450268 127.0.0.1:57415 127.0.0.1:57433 3341044708 12 ffffffff48930c0000000000 ....H....... +1956 5.528695583 127.0.0.1:57433 127.0.0.1:57415 383242898 12 feffffff847501009b750100 .....u...u.. +1958 5.546167374 127.0.0.1:57415 127.0.0.1:57433 3341044720 12 6500000037da0c0000000000 e...7....... +1960 5.546367168 127.0.0.1:57415 127.0.0.1:57433 3341044732 101 1e0000001c2118d0c46f33bb010003000000b664020000000000aba786c39d01 .....!...o3........d..............?.....3...|8.. +1962 5.546918392 127.0.0.1:57433 127.0.0.1:57415 383242910 12 ffffffff37da0c0000000000 ....7....... +1964 5.547894716 127.0.0.1:57433 127.0.0.1:57415 383242922 12 3400000049930c0000000000 4...I....... +1966 5.548116207 127.0.0.1:57433 127.0.0.1:57415 383242934 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +1968 5.548341513 127.0.0.1:57415 127.0.0.1:57433 3341044833 12 ffffffff49930c0000000000 ....I....... +1970 5.549349785 127.0.0.1:57415 127.0.0.1:57433 3341044845 12 1e00000038da0c0000000000 ....8....... +1972 5.549489260 127.0.0.1:57415 127.0.0.1:57433 3341044857 30 1a00000055ceff62b21b3a50010003000000551f22000000000000000000 ....U..b..:P......U."......... +1974 5.549623489 127.0.0.1:57433 127.0.0.1:57415 383242986 12 ffffffff38da0c0000000000 ....8....... +1976 5.550137997 127.0.0.1:57433 127.0.0.1:57415 383242998 12 1a0000004a930c0000000000 ....J....... +1978 5.550295353 127.0.0.1:57433 127.0.0.1:57415 383243010 26 16000000551f2200000000000100030000000000000000000000 ....U."................... +1980 5.550465107 127.0.0.1:57415 127.0.0.1:57433 3341044887 12 ffffffff4a930c0000000000 ....J....... +1986 5.586688519 127.0.0.1:57415 127.0.0.1:57433 3341044899 12 1a00000039da0c0000000000 ....9....... +1988 5.586849451 127.0.0.1:57415 127.0.0.1:57433 3341044911 26 16000000548f6340e25e3140010003000000571f220000000000 ....T.c@.^1@......W."..... +1990 5.587197542 127.0.0.1:57433 127.0.0.1:57415 383243036 12 ffffffff39da0c0000000000 ....9....... +1992 5.587631226 127.0.0.1:57433 127.0.0.1:57415 383243048 12 160000004b930c0000000000 ....K....... +1994 5.587794542 127.0.0.1:57433 127.0.0.1:57415 383243060 22 12000000571f22000000000001000300000000000000 ....W."............... +1996 5.588022232 127.0.0.1:57415 127.0.0.1:57433 3341044937 12 ffffffff4b930c0000000000 ....K....... +2002 5.628356934 127.0.0.1:57415 127.0.0.1:57433 3341044949 12 feffffff9c75010084750100 .....u...u.. +2011 5.688961744 127.0.0.1:57415 127.0.0.1:57433 3341044961 12 1a0000003ada0c0000000000 ....:....... +2013 5.689161062 127.0.0.1:57415 127.0.0.1:57433 3341044973 26 16000000548f6340e25e3140010003000000591f220000000000 ....T.c@.^1@......Y."..... +2015 5.689467430 127.0.0.1:57433 127.0.0.1:57415 383243082 12 ffffffff3ada0c0000000000 ....:....... +2017 5.689919472 127.0.0.1:57433 127.0.0.1:57415 383243094 12 160000004c930c0000000000 ....L....... +2019 5.690104008 127.0.0.1:57433 127.0.0.1:57415 383243106 22 12000000591f22000000000001000300000000000000 ....Y."............... +2021 5.690402508 127.0.0.1:57415 127.0.0.1:57433 3341044999 12 ffffffff4c930c0000000000 ....L....... +2023 5.791917086 127.0.0.1:57415 127.0.0.1:57433 3341045011 12 1a0000003bda0c0000000000 ....;....... +2025 5.792091370 127.0.0.1:57415 127.0.0.1:57433 3341045023 26 16000000548f6340e25e31400100030000005b1f220000000000 ....T.c@.^1@......[."..... +2027 5.792751551 127.0.0.1:57433 127.0.0.1:57415 383243128 12 ffffffff3bda0c0000000000 ....;....... +2029 5.793280840 127.0.0.1:57433 127.0.0.1:57415 383243140 12 160000004d930c0000000000 ....M....... +2031 5.793455601 127.0.0.1:57433 127.0.0.1:57415 383243152 22 120000005b1f22000000000001000300000000000000 ....[."............... +2033 5.793710232 127.0.0.1:57415 127.0.0.1:57433 3341045049 12 ffffffff4d930c0000000000 ....M....... +2037 5.850578308 127.0.0.1:57415 127.0.0.1:57433 3341045061 12 650000003cda0c0000000000 e...<....... +2039 5.850877285 127.0.0.1:57415 127.0.0.1:57433 3341045073 101 1e0000001c2118d0c46f33bb010003000000b764020000000000dca886c39d01 .....!...o3........d..............?.....3...|8.. +2041 5.851269484 127.0.0.1:57433 127.0.0.1:57415 383243174 12 ffffffff3cda0c0000000000 ....<....... +2043 5.852610588 127.0.0.1:57433 127.0.0.1:57415 383243186 12 340000004e930c0000000000 4...N....... +2045 5.852765799 127.0.0.1:57433 127.0.0.1:57415 383243198 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........P... +2047 5.852979898 127.0.0.1:57415 127.0.0.1:57433 3341045174 12 ffffffff4e930c0000000000 ....N....... +2049 5.854076147 127.0.0.1:57415 127.0.0.1:57433 3341045186 12 1e0000003dda0c0000000000 ....=....... +2051 5.854275227 127.0.0.1:57415 127.0.0.1:57433 3341045198 30 1a00000055ceff62b21b3a500100030000005d1f22000000000000000000 ....U..b..:P......]."......... +2053 5.854485273 127.0.0.1:57433 127.0.0.1:57415 383243250 12 ffffffff3dda0c0000000000 ....=....... +2055 5.855382204 127.0.0.1:57433 127.0.0.1:57415 383243262 12 1a0000004f930c0000000000 ....O....... +2057 5.855550766 127.0.0.1:57433 127.0.0.1:57415 383243274 26 160000005d1f2200000000000100030000000000000000000000 ....]."................... +2059 5.855798244 127.0.0.1:57415 127.0.0.1:57433 3341045228 12 ffffffff4f930c0000000000 ....O....... +2061 5.895732403 127.0.0.1:57415 127.0.0.1:57433 3341045240 12 1a0000003eda0c0000000000 ....>....... +2063 5.895892143 127.0.0.1:57415 127.0.0.1:57433 3341045252 26 16000000548f6340e25e31400100030000005f1f220000000000 ....T.c@.^1@......_."..... +2065 5.896630764 127.0.0.1:57433 127.0.0.1:57415 383243300 12 ffffffff3eda0c0000000000 ....>....... +2067 5.896918774 127.0.0.1:57433 127.0.0.1:57415 383243312 12 1600000050930c0000000000 ....P....... +2069 5.897134304 127.0.0.1:57433 127.0.0.1:57415 383243324 22 120000005f1f22000000000001000300000000000000 ...._."............... +2071 5.897412777 127.0.0.1:57415 127.0.0.1:57433 3341045278 12 ffffffff50930c0000000000 ....P....... +2079 6.001097441 127.0.0.1:57415 127.0.0.1:57433 3341045290 12 1a0000003fda0c0000000000 ....?....... +2081 6.001307964 127.0.0.1:57415 127.0.0.1:57433 3341045302 26 16000000548f6340e25e3140010003000000611f220000000000 ....T.c@.^1@......a."..... +2083 6.001715422 127.0.0.1:57433 127.0.0.1:57415 383243346 12 ffffffff3fda0c0000000000 ....?....... +2085 6.002209902 127.0.0.1:57433 127.0.0.1:57415 383243358 12 1600000051930c0000000000 ....Q....... +2087 6.002377033 127.0.0.1:57433 127.0.0.1:57415 383243370 22 12000000611f22000000000001000300000000000000 ....a."............... +2089 6.002799749 127.0.0.1:57415 127.0.0.1:57433 3341045328 12 ffffffff51930c0000000000 ....Q....... +2091 6.028493404 127.0.0.1:57433 127.0.0.1:57415 383243392 12 feffffff857501009c750100 .....u...u.. +2101 6.104418278 127.0.0.1:57415 127.0.0.1:57433 3341045340 12 1a00000040da0c0000000000 ....@....... +2103 6.104612827 127.0.0.1:57415 127.0.0.1:57433 3341045352 26 16000000548f6340e25e3140010003000000631f220000000000 ....T.c@.^1@......c."..... +2105 6.105276823 127.0.0.1:57433 127.0.0.1:57415 383243404 12 ffffffff40da0c0000000000 ....@....... +2107 6.105527401 127.0.0.1:57433 127.0.0.1:57415 383243416 12 1600000052930c0000000000 ....R....... +2109 6.105751991 127.0.0.1:57433 127.0.0.1:57415 383243428 22 12000000631f22000000000001000300000000000000 ....c."............... +2111 6.106134892 127.0.0.1:57415 127.0.0.1:57433 3341045378 12 ffffffff52930c0000000000 ....R....... +2117 6.129186153 127.0.0.1:57415 127.0.0.1:57433 3341045390 12 feffffff9d75010085750100 .....u...u.. +2123 6.155522108 127.0.0.1:57415 127.0.0.1:57433 3341045402 12 6500000041da0c0000000000 e...A....... +2125 6.155762196 127.0.0.1:57415 127.0.0.1:57433 3341045414 101 1e0000001c2118d0c46f33bb010003000000b8640200000000000caa86c39d01 .....!...o3........d..............?.....3...|8.. +2127 6.155999184 127.0.0.1:57433 127.0.0.1:57415 383243450 12 ffffffff41da0c0000000000 ....A....... +2129 6.157248497 127.0.0.1:57433 127.0.0.1:57415 383243462 12 3400000053930c0000000000 4...S....... +2131 6.157382727 127.0.0.1:57433 127.0.0.1:57415 383243474 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +2133 6.157706022 127.0.0.1:57415 127.0.0.1:57433 3341045515 12 ffffffff53930c0000000000 ....S....... +2135 6.158573389 127.0.0.1:57415 127.0.0.1:57433 3341045527 12 1e00000042da0c0000000000 ....B....... +2137 6.158803701 127.0.0.1:57415 127.0.0.1:57433 3341045539 30 1a00000055ceff62b21b3a50010003000000651f22000000000000000000 ....U..b..:P......e."......... +2139 6.159194946 127.0.0.1:57433 127.0.0.1:57415 383243526 12 ffffffff42da0c0000000000 ....B....... +2141 6.159504414 127.0.0.1:57433 127.0.0.1:57415 383243538 12 1a00000054930c0000000000 ....T....... +2143 6.159671783 127.0.0.1:57433 127.0.0.1:57415 383243550 26 16000000651f2200000000000100030000000000000000000000 ....e."................... +2145 6.159861326 127.0.0.1:57415 127.0.0.1:57433 3341045569 12 ffffffff54930c0000000000 ....T....... +2149 6.207916498 127.0.0.1:57415 127.0.0.1:57433 3341045581 12 1a00000043da0c0000000000 ....C....... +2151 6.208102942 127.0.0.1:57415 127.0.0.1:57433 3341045593 26 16000000548f6340e25e3140010003000000671f220000000000 ....T.c@.^1@......g."..... +2153 6.208563328 127.0.0.1:57433 127.0.0.1:57415 383243576 12 ffffffff43da0c0000000000 ....C....... +2155 6.208929300 127.0.0.1:57433 127.0.0.1:57415 383243588 12 1600000055930c0000000000 ....U....... +2157 6.209072828 127.0.0.1:57433 127.0.0.1:57415 383243600 22 12000000671f22000000000001000300000000000000 ....g."............... +2159 6.209440231 127.0.0.1:57415 127.0.0.1:57433 3341045619 12 ffffffff55930c0000000000 ....U....... +2161 6.310787201 127.0.0.1:57415 127.0.0.1:57433 3341045631 12 1a00000044da0c0000000000 ....D....... +2163 6.310964108 127.0.0.1:57415 127.0.0.1:57433 3341045643 26 16000000548f6340e25e3140010003000000691f220000000000 ....T.c@.^1@......i."..... +2165 6.311356783 127.0.0.1:57433 127.0.0.1:57415 383243622 12 ffffffff44da0c0000000000 ....D....... +2167 6.311827898 127.0.0.1:57433 127.0.0.1:57415 383243634 12 1600000056930c0000000000 ....V....... +2169 6.311992645 127.0.0.1:57433 127.0.0.1:57415 383243646 22 12000000691f22000000000001000300000000000000 ....i."............... +2171 6.312353611 127.0.0.1:57415 127.0.0.1:57433 3341045669 12 ffffffff56930c0000000000 ....V....... +2182 6.414885283 127.0.0.1:57415 127.0.0.1:57433 3341045681 12 1a00000045da0c0000000000 ....E....... +2184 6.415154457 127.0.0.1:57415 127.0.0.1:57433 3341045693 26 16000000548f6340e25e31400100030000006b1f220000000000 ....T.c@.^1@......k."..... +2186 6.415381670 127.0.0.1:57433 127.0.0.1:57415 383243668 12 ffffffff45da0c0000000000 ....E....... +2188 6.415734768 127.0.0.1:57433 127.0.0.1:57415 383243680 12 1600000057930c0000000000 ....W....... +2190 6.415885925 127.0.0.1:57433 127.0.0.1:57415 383243692 22 120000006b1f22000000000001000300000000000000 ....k."............... +2192 6.416308165 127.0.0.1:57415 127.0.0.1:57433 3341045719 12 ffffffff57930c0000000000 ....W....... +2204 6.461014271 127.0.0.1:57415 127.0.0.1:57433 3341045731 12 6500000046da0c0000000000 e...F....... +2206 6.461242914 127.0.0.1:57415 127.0.0.1:57433 3341045743 101 1e0000001c2118d0c46f33bb010003000000b9640200000000003eab86c39d01 .....!...o3........d......>.......?.....3...|8.. +2211 6.461491823 127.0.0.1:57433 127.0.0.1:57415 383243714 12 ffffffff46da0c0000000000 ....F....... +2219 6.462614298 127.0.0.1:57433 127.0.0.1:57415 383243726 12 3400000058930c0000000000 4...X....... +2221 6.462810516 127.0.0.1:57433 127.0.0.1:57415 383243738 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +2223 6.463021994 127.0.0.1:57415 127.0.0.1:57433 3341045844 12 ffffffff58930c0000000000 ....X....... +2225 6.463932037 127.0.0.1:57415 127.0.0.1:57433 3341045856 12 1e00000047da0c0000000000 ....G....... +2227 6.464159012 127.0.0.1:57415 127.0.0.1:57433 3341045868 30 1a00000055ceff62b21b3a500100030000006d1f22000000000000000000 ....U..b..:P......m."......... +2229 6.464430571 127.0.0.1:57433 127.0.0.1:57415 383243790 12 ffffffff47da0c0000000000 ....G....... +2231 6.464775562 127.0.0.1:57433 127.0.0.1:57415 383243802 12 1a00000059930c0000000000 ....Y....... +2233 6.464942217 127.0.0.1:57433 127.0.0.1:57415 383243814 26 160000006d1f2200000000000100030000000000000000000000 ....m."................... +2235 6.465295315 127.0.0.1:57415 127.0.0.1:57433 3341045898 12 ffffffff59930c0000000000 ....Y....... +2249 6.517835617 127.0.0.1:57415 127.0.0.1:57433 3341045910 12 1a00000048da0c0000000000 ....H....... +2251 6.518137932 127.0.0.1:57415 127.0.0.1:57433 3341045922 26 16000000548f6340e25e31400100030000006f1f220000000000 ....T.c@.^1@......o."..... +2253 6.518544674 127.0.0.1:57433 127.0.0.1:57415 383243840 12 ffffffff48da0c0000000000 ....H....... +2255 6.519029617 127.0.0.1:57433 127.0.0.1:57415 383243852 12 160000005a930c0000000000 ....Z....... +2257 6.519252777 127.0.0.1:57433 127.0.0.1:57415 383243864 22 120000006f1f22000000000001000300000000000000 ....o."............... +2259 6.519535065 127.0.0.1:57415 127.0.0.1:57433 3341045948 12 ffffffff5a930c0000000000 ....Z....... +2261 6.530523777 127.0.0.1:57433 127.0.0.1:57415 383243886 12 feffffff867501009d750100 .....u...u.. +2271 6.620738506 127.0.0.1:57415 127.0.0.1:57433 3341045960 12 1a00000049da0c0000000000 ....I....... +2273 6.620936871 127.0.0.1:57415 127.0.0.1:57433 3341045972 26 16000000548f6340e25e3140010003000000711f220000000000 ....T.c@.^1@......q."..... +2275 6.621312857 127.0.0.1:57433 127.0.0.1:57415 383243898 12 ffffffff49da0c0000000000 ....I....... +2277 6.621628046 127.0.0.1:57433 127.0.0.1:57415 383243910 12 160000005b930c0000000000 ....[....... +2279 6.621778250 127.0.0.1:57433 127.0.0.1:57415 383243922 22 12000000711f22000000000001000300000000000000 ....q."............... +2281 6.622100592 127.0.0.1:57415 127.0.0.1:57433 3341045998 12 ffffffff5b930c0000000000 ....[....... +2283 6.630142450 127.0.0.1:57415 127.0.0.1:57433 3341046010 12 feffffff9e75010086750100 .....u...u.. +2291 6.723937511 127.0.0.1:57415 127.0.0.1:57433 3341046022 12 1a0000004ada0c0000000000 ....J....... +2293 6.724246025 127.0.0.1:57415 127.0.0.1:57433 3341046034 26 16000000548f6340e25e3140010003000000731f220000000000 ....T.c@.^1@......s."..... +2295 6.724544048 127.0.0.1:57433 127.0.0.1:57415 383243944 12 ffffffff4ada0c0000000000 ....J....... +2297 6.725120068 127.0.0.1:57433 127.0.0.1:57415 383243956 12 160000005c930c0000000000 ....\....... +2299 6.725335121 127.0.0.1:57433 127.0.0.1:57415 383243968 22 12000000731f22000000000001000300000000000000 ....s."............... +2301 6.725600004 127.0.0.1:57415 127.0.0.1:57433 3341046060 12 ffffffff5c930c0000000000 ....\....... +2305 6.766100407 127.0.0.1:57415 127.0.0.1:57433 3341046072 12 220000004bda0c0000000000 "...K....... +2307 6.766295910 127.0.0.1:57415 127.0.0.1:57433 3341046084 34 1e0000001c2118d0c46f33bb010003000000ba640200000000006fac86c39d01 .....!...o3........d......o....... +2309 6.766416550 127.0.0.1:57415 127.0.0.1:57433 3341046118 12 430000004cda0c0000000000 C...L....... +2311 6.766498804 127.0.0.1:57415 127.0.0.1:57433 3341046130 67 3f000000980433cb0cb47c380100030000000100000000ba640200000000003d ?.....3...|8............d......=B.....&......... +2313 6.766666174 127.0.0.1:57433 127.0.0.1:57415 383243990 12 ffffffff4bda0c0000000000 ....K....... +2315 6.766828537 127.0.0.1:57433 127.0.0.1:57415 383244002 12 ffffffff4cda0c0000000000 ....L....... +2317 6.767674446 127.0.0.1:57433 127.0.0.1:57415 383244014 12 340000005d930c0000000000 4...]....... +2319 6.767822027 127.0.0.1:57433 127.0.0.1:57415 383244026 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........S=C. +2321 6.768075228 127.0.0.1:57415 127.0.0.1:57433 3341046197 12 ffffffff5d930c0000000000 ....]....... +2323 6.769152641 127.0.0.1:57415 127.0.0.1:57433 3341046209 12 1e0000004dda0c0000000000 ....M....... +2325 6.769341946 127.0.0.1:57415 127.0.0.1:57433 3341046221 30 1a00000055ceff62b21b3a50010003000000751f22000000000000000000 ....U..b..:P......u."......... +2327 6.769580364 127.0.0.1:57433 127.0.0.1:57415 383244078 12 ffffffff4dda0c0000000000 ....M....... +2329 6.769917965 127.0.0.1:57433 127.0.0.1:57415 383244090 12 1a0000005e930c0000000000 ....^....... +2331 6.770045996 127.0.0.1:57433 127.0.0.1:57415 383244102 26 16000000751f2200000000000100030000000000000000000000 ....u."................... +2333 6.770329952 127.0.0.1:57415 127.0.0.1:57433 3341046251 12 ffffffff5e930c0000000000 ....^....... +2335 6.826933622 127.0.0.1:57415 127.0.0.1:57433 3341046263 12 1a0000004eda0c0000000000 ....N....... +2337 6.827113152 127.0.0.1:57415 127.0.0.1:57433 3341046275 26 16000000548f6340e25e3140010003000000771f220000000000 ....T.c@.^1@......w."..... +2339 6.827511311 127.0.0.1:57433 127.0.0.1:57415 383244128 12 ffffffff4eda0c0000000000 ....N....... +2341 6.828017235 127.0.0.1:57433 127.0.0.1:57415 383244140 12 160000005f930c0000000000 ...._....... +2343 6.828174829 127.0.0.1:57433 127.0.0.1:57415 383244152 22 12000000771f22000000000001000300000000000000 ....w."............... +2345 6.828515530 127.0.0.1:57415 127.0.0.1:57433 3341046301 12 ffffffff5f930c0000000000 ...._....... +2347 6.930986643 127.0.0.1:57415 127.0.0.1:57433 3341046313 12 1a0000004fda0c0000000000 ....O....... +2349 6.931155920 127.0.0.1:57415 127.0.0.1:57433 3341046325 26 16000000548f6340e25e3140010003000000791f220000000000 ....T.c@.^1@......y."..... +2351 6.931540251 127.0.0.1:57433 127.0.0.1:57415 383244174 12 ffffffff4fda0c0000000000 ....O....... +2353 6.932309866 127.0.0.1:57433 127.0.0.1:57415 383244186 12 1600000060930c0000000000 ....`....... +2355 6.932534695 127.0.0.1:57433 127.0.0.1:57415 383244198 22 12000000791f22000000000001000300000000000000 ....y."............... +2357 6.932944298 127.0.0.1:57415 127.0.0.1:57433 3341046351 12 ffffffff60930c0000000000 ....`....... +2365 7.030334711 127.0.0.1:57433 127.0.0.1:57415 383244220 12 feffffff877501009e750100 .....u...u.. +2367 7.034904718 127.0.0.1:57415 127.0.0.1:57433 3341046363 12 1a00000050da0c0000000000 ....P....... +2369 7.035078287 127.0.0.1:57415 127.0.0.1:57433 3341046375 26 16000000548f6340e25e31400100030000007b1f220000000000 ....T.c@.^1@......{."..... +2371 7.035411358 127.0.0.1:57433 127.0.0.1:57415 383244232 12 ffffffff50da0c0000000000 ....P....... +2373 7.035813570 127.0.0.1:57433 127.0.0.1:57415 383244244 12 1600000061930c0000000000 ....a....... +2375 7.035992384 127.0.0.1:57433 127.0.0.1:57415 383244256 22 120000007b1f22000000000001000300000000000000 ....{."............... +2377 7.036243677 127.0.0.1:57415 127.0.0.1:57433 3341046401 12 ffffffff61930c0000000000 ....a....... +2383 7.070520878 127.0.0.1:57415 127.0.0.1:57433 3341046413 12 2200000051da0c0000000000 "...Q....... +2385 7.070817709 127.0.0.1:57415 127.0.0.1:57433 3341046425 34 1e0000001c2118d0c46f33bb010003000000bb640200000000009fad86c39d01 .....!...o3........d.............. +2387 7.070998669 127.0.0.1:57415 127.0.0.1:57433 3341046459 12 4300000052da0c0000000000 C...R....... +2389 7.071113348 127.0.0.1:57415 127.0.0.1:57433 3341046471 67 3f000000980433cb0cb47c380100030000000100000000bb640200000000003d ?.....3...|8............d......=B.....&......... +2390 7.071200371 127.0.0.1:57433 127.0.0.1:57415 383244278 12 ffffffff51da0c0000000000 ....Q....... +2392 7.071317434 127.0.0.1:57433 127.0.0.1:57415 383244290 12 ffffffff52da0c0000000000 ....R....... +2394 7.072319508 127.0.0.1:57433 127.0.0.1:57415 383244302 12 3400000062930c0000000000 4...b....... +2396 7.072467566 127.0.0.1:57433 127.0.0.1:57415 383244314 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........q. +2398 7.072805166 127.0.0.1:57415 127.0.0.1:57433 3341046538 12 ffffffff62930c0000000000 ....b....... +2399 7.073482275 127.0.0.1:57415 127.0.0.1:57433 3341046550 12 1e00000053da0c0000000000 ....S....... +2401 7.073709011 127.0.0.1:57415 127.0.0.1:57433 3341046562 30 1a00000055ceff62b21b3a500100030000007d1f22000000000000000000 ....U..b..:P......}."......... +2403 7.073969603 127.0.0.1:57433 127.0.0.1:57415 383244366 12 ffffffff53da0c0000000000 ....S....... +2405 7.074284315 127.0.0.1:57433 127.0.0.1:57415 383244378 12 1a00000063930c0000000000 ....c....... +2407 7.074413300 127.0.0.1:57433 127.0.0.1:57415 383244390 26 160000007d1f2200000000000100030000000000000000000000 ....}."................... +2409 7.074673653 127.0.0.1:57415 127.0.0.1:57433 3341046592 12 ffffffff63930c0000000000 ....c....... +2415 7.131018639 127.0.0.1:57415 127.0.0.1:57433 3341046604 12 feffffff9f75010087750100 .....u...u.. +2421 7.138333559 127.0.0.1:57415 127.0.0.1:57433 3341046616 12 1a00000054da0c0000000000 ....T....... +2423 7.138525486 127.0.0.1:57415 127.0.0.1:57433 3341046628 26 16000000548f6340e25e31400100030000007f1f220000000000 ....T.c@.^1@........"..... +2425 7.138967991 127.0.0.1:57433 127.0.0.1:57415 383244416 12 ffffffff54da0c0000000000 ....T....... +2427 7.139394522 127.0.0.1:57433 127.0.0.1:57415 383244428 12 1600000064930c0000000000 ....d....... +2429 7.139588594 127.0.0.1:57433 127.0.0.1:57415 383244440 22 120000007f1f22000000000001000300000000000000 ......"............... +2431 7.139890432 127.0.0.1:57415 127.0.0.1:57433 3341046654 12 ffffffff64930c0000000000 ....d....... +2435 7.241597652 127.0.0.1:57415 127.0.0.1:57433 3341046666 12 1a00000055da0c0000000000 ....U....... +2437 7.241956472 127.0.0.1:57415 127.0.0.1:57433 3341046678 26 16000000548f6340e25e3140010003000000811f220000000000 ....T.c@.^1@........"..... +2439 7.242294312 127.0.0.1:57433 127.0.0.1:57415 383244462 12 ffffffff55da0c0000000000 ....U....... +2441 7.242804050 127.0.0.1:57433 127.0.0.1:57415 383244474 12 1600000065930c0000000000 ....e....... +2443 7.243012667 127.0.0.1:57433 127.0.0.1:57415 383244486 22 12000000811f22000000000001000300000000000000 ......"............... +2445 7.243329287 127.0.0.1:57415 127.0.0.1:57433 3341046704 12 ffffffff65930c0000000000 ....e....... +2447 7.344811916 127.0.0.1:57415 127.0.0.1:57433 3341046716 12 1a00000056da0c0000000000 ....V....... +2449 7.344999790 127.0.0.1:57415 127.0.0.1:57433 3341046728 26 16000000548f6340e25e3140010003000000831f220000000000 ....T.c@.^1@........"..... +2451 7.345277786 127.0.0.1:57433 127.0.0.1:57415 383244508 12 ffffffff56da0c0000000000 ....V....... +2453 7.345826387 127.0.0.1:57433 127.0.0.1:57415 383244520 12 1600000066930c0000000000 ....f....... +2455 7.346059322 127.0.0.1:57433 127.0.0.1:57415 383244532 22 12000000831f22000000000001000300000000000000 ......"............... +2457 7.346318960 127.0.0.1:57415 127.0.0.1:57433 3341046754 12 ffffffff66930c0000000000 ....f....... +2459 7.374948263 127.0.0.1:57415 127.0.0.1:57433 3341046766 12 2200000057da0c0000000000 "...W....... +2461 7.375118494 127.0.0.1:57415 127.0.0.1:57433 3341046778 34 1e0000001c2118d0c46f33bb010003000000bc64020000000000d0ae86c39d01 .....!...o3........d.............. +2463 7.375244617 127.0.0.1:57415 127.0.0.1:57433 3341046812 12 4300000058da0c0000000000 C...X....... +2465 7.375326157 127.0.0.1:57415 127.0.0.1:57433 3341046824 67 3f000000980433cb0cb47c380100030000000100000000bc640200000000003d ?.....3...|8............d......=B.....&......... +2466 7.375396967 127.0.0.1:57433 127.0.0.1:57415 383244554 12 ffffffff57da0c0000000000 ....W....... +2467 7.375917912 127.0.0.1:57433 127.0.0.1:57415 383244566 12 ffffffff58da0c0000000000 ....X....... +2470 7.377028942 127.0.0.1:57433 127.0.0.1:57415 383244578 12 3400000067930c0000000000 4...g....... +2472 7.377210617 127.0.0.1:57433 127.0.0.1:57415 383244590 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........8.. +2474 7.377506018 127.0.0.1:57415 127.0.0.1:57433 3341046891 12 ffffffff67930c0000000000 ....g....... +2475 7.378283739 127.0.0.1:57415 127.0.0.1:57433 3341046903 12 1e00000059da0c0000000000 ....Y....... +2476 7.378575802 127.0.0.1:57415 127.0.0.1:57433 3341046915 30 1a00000055ceff62b21b3a50010003000000851f22000000000000000000 ....U..b..:P........"......... +2477 7.378953934 127.0.0.1:57433 127.0.0.1:57415 383244642 12 ffffffff59da0c0000000000 ....Y....... +2479 7.379334211 127.0.0.1:57433 127.0.0.1:57415 383244654 12 1a00000068930c0000000000 ....h....... +2481 7.379526377 127.0.0.1:57433 127.0.0.1:57415 383244666 26 16000000851f2200000000000100030000000000000000000000 ......"................... +2483 7.379848480 127.0.0.1:57415 127.0.0.1:57433 3341046945 12 ffffffff68930c0000000000 ....h....... +2487 7.449081182 127.0.0.1:57415 127.0.0.1:57433 3341046957 12 1a0000005ada0c0000000000 ....Z....... +2489 7.449235916 127.0.0.1:57415 127.0.0.1:57433 3341046969 26 16000000548f6340e25e3140010003000000871f220000000000 ....T.c@.^1@........"..... +2491 7.449700356 127.0.0.1:57433 127.0.0.1:57415 383244692 12 ffffffff5ada0c0000000000 ....Z....... +2493 7.450419903 127.0.0.1:57433 127.0.0.1:57415 383244704 12 1600000069930c0000000000 ....i....... +2495 7.450594664 127.0.0.1:57433 127.0.0.1:57415 383244716 22 12000000871f22000000000001000300000000000000 ......"............... +2497 7.450822830 127.0.0.1:57415 127.0.0.1:57433 3341046995 12 ffffffff69930c0000000000 ....i....... +2503 7.531068563 127.0.0.1:57433 127.0.0.1:57415 383244738 12 feffffff887501009f750100 .....u...u.. +2505 7.552269697 127.0.0.1:57415 127.0.0.1:57433 3341047007 12 1a0000005bda0c0000000000 ....[....... +2507 7.552474022 127.0.0.1:57415 127.0.0.1:57433 3341047019 26 16000000548f6340e25e3140010003000000891f220000000000 ....T.c@.^1@........"..... +2509 7.552941322 127.0.0.1:57433 127.0.0.1:57415 383244750 12 ffffffff5bda0c0000000000 ....[....... +2511 7.553561449 127.0.0.1:57433 127.0.0.1:57415 383244762 12 160000006a930c0000000000 ....j....... +2513 7.553727150 127.0.0.1:57433 127.0.0.1:57415 383244774 22 12000000891f22000000000001000300000000000000 ......"............... +2515 7.554067612 127.0.0.1:57415 127.0.0.1:57433 3341047045 12 ffffffff6a930c0000000000 ....j....... +2526 7.631551027 127.0.0.1:57415 127.0.0.1:57433 3341047057 12 feffffffa075010088750100 .....u...u.. +2531 7.656819582 127.0.0.1:57415 127.0.0.1:57433 3341047069 12 1a0000005cda0c0000000000 ....\....... +2533 7.657042503 127.0.0.1:57415 127.0.0.1:57433 3341047081 26 16000000548f6340e25e31400100030000008b1f220000000000 ....T.c@.^1@........"..... +2535 7.657311201 127.0.0.1:57433 127.0.0.1:57415 383244796 12 ffffffff5cda0c0000000000 ....\....... +2537 7.658323526 127.0.0.1:57433 127.0.0.1:57415 383244808 12 160000006b930c0000000000 ....k....... +2539 7.658507824 127.0.0.1:57433 127.0.0.1:57415 383244820 22 120000008b1f22000000000001000300000000000000 ......"............... +2541 7.658845186 127.0.0.1:57415 127.0.0.1:57433 3341047107 12 ffffffff6b930c0000000000 ....k....... +2545 7.681187153 127.0.0.1:57415 127.0.0.1:57433 3341047119 12 650000005dda0c0000000000 e...]....... +2547 7.681496620 127.0.0.1:57415 127.0.0.1:57433 3341047131 101 1e0000001c2118d0c46f33bb010003000000bd6402000000000002b086c39d01 .....!...o3........d..............?.....3...|8.. +2549 7.681806564 127.0.0.1:57433 127.0.0.1:57415 383244842 12 ffffffff5dda0c0000000000 ....]....... +2551 7.682884216 127.0.0.1:57433 127.0.0.1:57415 383244854 12 340000006c930c0000000000 4...l....... +2553 7.683071613 127.0.0.1:57433 127.0.0.1:57415 383244866 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +2555 7.683256626 127.0.0.1:57415 127.0.0.1:57433 3341047232 12 ffffffff6c930c0000000000 ....l....... +2557 7.684416294 127.0.0.1:57415 127.0.0.1:57433 3341047244 12 1e0000005eda0c0000000000 ....^....... +2559 7.684663773 127.0.0.1:57415 127.0.0.1:57433 3341047256 30 1a00000055ceff62b21b3a500100030000008d1f22000000000000000000 ....U..b..:P........"......... +2561 7.685093164 127.0.0.1:57433 127.0.0.1:57415 383244918 12 ffffffff5eda0c0000000000 ....^....... +2563 7.685503006 127.0.0.1:57433 127.0.0.1:57415 383244930 12 1a0000006d930c0000000000 ....m....... +2565 7.685747147 127.0.0.1:57433 127.0.0.1:57415 383244942 26 160000008d1f2200000000000100030000000000000000000000 ......"................... +2567 7.686011791 127.0.0.1:57415 127.0.0.1:57433 3341047286 12 ffffffff6d930c0000000000 ....m....... +2569 7.761585712 127.0.0.1:57415 127.0.0.1:57433 3341047298 12 1a0000005fda0c0000000000 ...._....... +2571 7.761759520 127.0.0.1:57415 127.0.0.1:57433 3341047310 26 16000000548f6340e25e31400100030000008f1f220000000000 ....T.c@.^1@........"..... +2573 7.762235403 127.0.0.1:57433 127.0.0.1:57415 383244968 12 ffffffff5fda0c0000000000 ...._....... +2575 7.762571812 127.0.0.1:57433 127.0.0.1:57415 383244980 12 160000006e930c0000000000 ....n....... +2577 7.762731552 127.0.0.1:57433 127.0.0.1:57415 383244992 22 120000008f1f22000000000001000300000000000000 ......"............... +2579 7.763019085 127.0.0.1:57415 127.0.0.1:57433 3341047336 12 ffffffff6e930c0000000000 ....n....... +2581 7.865535498 127.0.0.1:57415 127.0.0.1:57433 3341047348 12 1a00000060da0c0000000000 ....`....... +2583 7.865801811 127.0.0.1:57415 127.0.0.1:57433 3341047360 26 16000000548f6340e25e3140010003000000911f220000000000 ....T.c@.^1@........"..... +2585 7.866266251 127.0.0.1:57433 127.0.0.1:57415 383245014 12 ffffffff60da0c0000000000 ....`....... +2587 7.866716623 127.0.0.1:57433 127.0.0.1:57415 383245026 12 160000006f930c0000000000 ....o....... +2589 7.866870403 127.0.0.1:57433 127.0.0.1:57415 383245038 22 12000000911f22000000000001000300000000000000 ......"............... +2591 7.867163897 127.0.0.1:57415 127.0.0.1:57433 3341047386 12 ffffffff6f930c0000000000 ....o....... +2599 7.969911814 127.0.0.1:57415 127.0.0.1:57433 3341047398 12 1a00000061da0c0000000000 ....a....... +2601 7.970105410 127.0.0.1:57415 127.0.0.1:57433 3341047410 26 16000000548f6340e25e3140010003000000931f220000000000 ....T.c@.^1@........"..... +2603 7.970394611 127.0.0.1:57433 127.0.0.1:57415 383245060 12 ffffffff61da0c0000000000 ....a....... +2605 7.970829487 127.0.0.1:57433 127.0.0.1:57415 383245072 12 1600000070930c0000000000 ....p....... +2607 7.971063375 127.0.0.1:57433 127.0.0.1:57415 383245084 22 12000000931f22000000000001000300000000000000 ......"............... +2609 7.971391916 127.0.0.1:57415 127.0.0.1:57433 3341047436 12 ffffffff70930c0000000000 ....p....... +2611 7.986961842 127.0.0.1:57415 127.0.0.1:57433 3341047448 12 6500000062da0c0000000000 e...b....... +2613 7.987097025 127.0.0.1:57415 127.0.0.1:57433 3341047460 101 1e0000001c2118d0c46f33bb010003000000be6402000000000034b186c39d01 .....!...o3........d......4.......?.....3...|8.. +2615 7.987392902 127.0.0.1:57433 127.0.0.1:57415 383245106 12 ffffffff62da0c0000000000 ....b....... +2617 7.988237619 127.0.0.1:57433 127.0.0.1:57415 383245118 12 3400000071930c0000000000 4...q....... +2619 7.988389492 127.0.0.1:57433 127.0.0.1:57415 383245130 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........|.. +2621 7.988624573 127.0.0.1:57415 127.0.0.1:57433 3341047561 12 ffffffff71930c0000000000 ....q....... +2623 7.989538193 127.0.0.1:57415 127.0.0.1:57433 3341047573 12 1e00000063da0c0000000000 ....c....... +2625 7.989687681 127.0.0.1:57415 127.0.0.1:57433 3341047585 30 1a00000055ceff62b21b3a50010003000000951f22000000000000000000 ....U..b..:P........"......... +2627 7.990084171 127.0.0.1:57433 127.0.0.1:57415 383245182 12 ffffffff63da0c0000000000 ....c....... +2629 7.990442514 127.0.0.1:57433 127.0.0.1:57415 383245194 12 1a00000072930c0000000000 ....r....... +2631 7.990579605 127.0.0.1:57433 127.0.0.1:57415 383245206 26 16000000951f2200000000000100030000000000000000000000 ......"................... +2633 7.990839481 127.0.0.1:57415 127.0.0.1:57433 3341047615 12 ffffffff72930c0000000000 ....r....... +2646 8.032271624 127.0.0.1:57433 127.0.0.1:57415 383245232 12 feffffff89750100a0750100 .....u...u.. +2652 8.072874546 127.0.0.1:57415 127.0.0.1:57433 3341047627 12 1a00000064da0c0000000000 ....d....... +2654 8.073070288 127.0.0.1:57415 127.0.0.1:57433 3341047639 26 16000000548f6340e25e3140010003000000971f220000000000 ....T.c@.^1@........"..... +2656 8.073549747 127.0.0.1:57433 127.0.0.1:57415 383245244 12 ffffffff64da0c0000000000 ....d....... +2658 8.073974133 127.0.0.1:57433 127.0.0.1:57415 383245256 12 1600000073930c0000000000 ....s....... +2660 8.074152708 127.0.0.1:57433 127.0.0.1:57415 383245268 22 12000000971f22000000000001000300000000000000 ......"............... +2662 8.074424744 127.0.0.1:57415 127.0.0.1:57433 3341047665 12 ffffffff73930c0000000000 ....s....... +2668 8.132422686 127.0.0.1:57415 127.0.0.1:57433 3341047677 12 feffffffa175010089750100 .....u...u.. +2676 8.176070452 127.0.0.1:57415 127.0.0.1:57433 3341047689 12 1a00000065da0c0000000000 ....e....... +2678 8.176245213 127.0.0.1:57415 127.0.0.1:57433 3341047701 26 16000000548f6340e25e3140010003000000991f220000000000 ....T.c@.^1@........"..... +2680 8.176599026 127.0.0.1:57433 127.0.0.1:57415 383245290 12 ffffffff65da0c0000000000 ....e....... +2682 8.177218676 127.0.0.1:57433 127.0.0.1:57415 383245302 12 1600000074930c0000000000 ....t....... +2684 8.177429676 127.0.0.1:57433 127.0.0.1:57415 383245314 22 12000000991f22000000000001000300000000000000 ......"............... +2686 8.177783012 127.0.0.1:57415 127.0.0.1:57433 3341047727 12 ffffffff74930c0000000000 ....t....... +2718 8.279058218 127.0.0.1:57415 127.0.0.1:57433 3341047739 12 1a00000066da0c0000000000 ....f....... +2720 8.279291391 127.0.0.1:57415 127.0.0.1:57433 3341047751 26 16000000548f6340e25e31400100030000009b1f220000000000 ....T.c@.^1@........"..... +2722 8.279648304 127.0.0.1:57433 127.0.0.1:57415 383245336 12 ffffffff66da0c0000000000 ....f....... +2724 8.280237198 127.0.0.1:57433 127.0.0.1:57415 383245348 12 1600000075930c0000000000 ....u....... +2726 8.280570984 127.0.0.1:57433 127.0.0.1:57415 383245360 22 120000009b1f22000000000001000300000000000000 ......"............... +2728 8.280884027 127.0.0.1:57415 127.0.0.1:57433 3341047777 12 ffffffff75930c0000000000 ....u....... +2730 8.292393923 127.0.0.1:57415 127.0.0.1:57433 3341047789 12 2200000067da0c0000000000 "...g....... +2732 8.292602062 127.0.0.1:57415 127.0.0.1:57433 3341047801 34 1e0000001c2118d0c46f33bb010003000000bf6402000000000066b286c39d01 .....!...o3........d......f....... +2734 8.292792797 127.0.0.1:57415 127.0.0.1:57433 3341047835 12 4300000068da0c0000000000 C...h....... +2736 8.292892456 127.0.0.1:57415 127.0.0.1:57433 3341047847 67 3f000000980433cb0cb47c380100030000000100000000bf640200000000003d ?.....3...|8............d......=B.....&......... +2738 8.293164968 127.0.0.1:57433 127.0.0.1:57415 383245382 12 ffffffff67da0c0000000000 ....g....... +2740 8.293399811 127.0.0.1:57433 127.0.0.1:57415 383245394 12 ffffffff68da0c0000000000 ....h....... +2742 8.294307232 127.0.0.1:57433 127.0.0.1:57415 383245406 12 3400000076930c0000000000 4...v....... +2744 8.294477701 127.0.0.1:57433 127.0.0.1:57415 383245418 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........),. +2746 8.294720650 127.0.0.1:57415 127.0.0.1:57433 3341047914 12 ffffffff76930c0000000000 ....v....... +2748 8.295660734 127.0.0.1:57415 127.0.0.1:57433 3341047926 12 1e00000069da0c0000000000 ....i....... +2750 8.295802355 127.0.0.1:57415 127.0.0.1:57433 3341047938 30 1a00000055ceff62b21b3a500100030000009d1f22000000000000000000 ....U..b..:P........"......... +2752 8.296219349 127.0.0.1:57433 127.0.0.1:57415 383245470 12 ffffffff69da0c0000000000 ....i....... +2754 8.296607494 127.0.0.1:57433 127.0.0.1:57415 383245482 12 1a00000077930c0000000000 ....w....... +2756 8.296757221 127.0.0.1:57433 127.0.0.1:57415 383245494 26 160000009d1f2200000000000100030000000000000000000000 ......"................... +2758 8.296978712 127.0.0.1:57415 127.0.0.1:57433 3341047968 12 ffffffff77930c0000000000 ....w....... +2762 8.382784605 127.0.0.1:57415 127.0.0.1:57433 3341047980 12 1a0000006ada0c0000000000 ....j....... +2764 8.383014202 127.0.0.1:57415 127.0.0.1:57433 3341047992 26 16000000548f6340e25e31400100030000009f1f220000000000 ....T.c@.^1@........"..... +2766 8.383451700 127.0.0.1:57433 127.0.0.1:57415 383245520 12 ffffffff6ada0c0000000000 ....j....... +2768 8.383960247 127.0.0.1:57433 127.0.0.1:57415 383245532 12 1600000078930c0000000000 ....x....... +2770 8.384106398 127.0.0.1:57433 127.0.0.1:57415 383245544 22 120000009f1f22000000000001000300000000000000 ......"............... +2772 8.384485483 127.0.0.1:57415 127.0.0.1:57433 3341048018 12 ffffffff78930c0000000000 ....x....... +2810 8.486854076 127.0.0.1:57415 127.0.0.1:57433 3341048030 12 1a0000006bda0c0000000000 ....k....... +2812 8.487014771 127.0.0.1:57415 127.0.0.1:57433 3341048042 26 16000000548f6340e25e3140010003000000a11f220000000000 ....T.c@.^1@........"..... +2814 8.487330914 127.0.0.1:57433 127.0.0.1:57415 383245566 12 ffffffff6bda0c0000000000 ....k....... +2816 8.487983465 127.0.0.1:57433 127.0.0.1:57415 383245578 12 1600000079930c0000000000 ....y....... +2818 8.488218546 127.0.0.1:57433 127.0.0.1:57415 383245590 22 12000000a11f22000000000001000300000000000000 ......"............... +2820 8.488530636 127.0.0.1:57415 127.0.0.1:57433 3341048068 12 ffffffff79930c0000000000 ....y....... +2822 8.533252478 127.0.0.1:57433 127.0.0.1:57415 383245612 12 feffffff8a750100a1750100 .....u...u.. +2828 8.591072559 127.0.0.1:57415 127.0.0.1:57433 3341048080 12 1a0000006cda0c0000000000 ....l....... +2830 8.591233730 127.0.0.1:57415 127.0.0.1:57433 3341048092 26 16000000548f6340e25e3140010003000000a31f220000000000 ....T.c@.^1@........"..... +2832 8.591650248 127.0.0.1:57433 127.0.0.1:57415 383245624 12 ffffffff6cda0c0000000000 ....l....... +2834 8.592066288 127.0.0.1:57433 127.0.0.1:57415 383245636 12 160000007a930c0000000000 ....z....... +2836 8.592252493 127.0.0.1:57433 127.0.0.1:57415 383245648 22 12000000a31f22000000000001000300000000000000 ......"............... +2838 8.592589855 127.0.0.1:57415 127.0.0.1:57433 3341048118 12 ffffffff7a930c0000000000 ....z....... +2842 8.598567724 127.0.0.1:57415 127.0.0.1:57433 3341048130 12 650000006dda0c0000000000 e...m....... +2844 8.598678112 127.0.0.1:57415 127.0.0.1:57433 3341048142 101 1e0000001c2118d0c46f33bb010003000000c06402000000000097b386c39d01 .....!...o3........d..............?.....3...|8.. +2846 8.599061728 127.0.0.1:57433 127.0.0.1:57415 383245670 12 ffffffff6dda0c0000000000 ....m....... +2848 8.600076914 127.0.0.1:57433 127.0.0.1:57415 383245682 12 340000007b930c0000000000 4...{....... +2850 8.600250006 127.0.0.1:57433 127.0.0.1:57415 383245694 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........Z. +2852 8.600564480 127.0.0.1:57415 127.0.0.1:57433 3341048243 12 ffffffff7b930c0000000000 ....{....... +2854 8.601456165 127.0.0.1:57415 127.0.0.1:57433 3341048255 12 1e0000006eda0c0000000000 ....n....... +2856 8.601680279 127.0.0.1:57415 127.0.0.1:57433 3341048267 30 1a00000055ceff62b21b3a50010003000000a51f22000000000000000000 ....U..b..:P........"......... +2858 8.602032423 127.0.0.1:57433 127.0.0.1:57415 383245746 12 ffffffff6eda0c0000000000 ....n....... +2860 8.602432489 127.0.0.1:57433 127.0.0.1:57415 383245758 12 1a0000007c930c0000000000 ....|....... +2862 8.602621078 127.0.0.1:57433 127.0.0.1:57415 383245770 26 16000000a51f2200000000000100030000000000000000000000 ......"................... +2864 8.602905989 127.0.0.1:57415 127.0.0.1:57433 3341048297 12 ffffffff7c930c0000000000 ....|....... +2868 8.633350134 127.0.0.1:57415 127.0.0.1:57433 3341048309 12 feffffffa27501008a750100 .....u...u.. +2876 8.693682909 127.0.0.1:57415 127.0.0.1:57433 3341048321 12 1a0000006fda0c0000000000 ....o....... +2878 8.693845034 127.0.0.1:57415 127.0.0.1:57433 3341048333 26 16000000548f6340e25e3140010003000000a71f220000000000 ....T.c@.^1@........"..... +2880 8.694180489 127.0.0.1:57433 127.0.0.1:57415 383245796 12 ffffffff6fda0c0000000000 ....o....... +2882 8.694662809 127.0.0.1:57433 127.0.0.1:57415 383245808 12 160000007d930c0000000000 ....}....... +2884 8.694822788 127.0.0.1:57433 127.0.0.1:57415 383245820 22 12000000a71f22000000000001000300000000000000 ......"............... +2886 8.695075989 127.0.0.1:57415 127.0.0.1:57433 3341048359 12 ffffffff7d930c0000000000 ....}....... +2888 8.796792984 127.0.0.1:57415 127.0.0.1:57433 3341048371 12 1a00000070da0c0000000000 ....p....... +2890 8.796963215 127.0.0.1:57415 127.0.0.1:57433 3341048383 26 16000000548f6340e25e3140010003000000a91f220000000000 ....T.c@.^1@........"..... +2892 8.797510624 127.0.0.1:57433 127.0.0.1:57415 383245842 12 ffffffff70da0c0000000000 ....p....... +2894 8.797769547 127.0.0.1:57433 127.0.0.1:57415 383245854 12 160000007e930c0000000000 ....~....... +2896 8.797923803 127.0.0.1:57433 127.0.0.1:57415 383245866 22 12000000a91f22000000000001000300000000000000 ......"............... +2898 8.798308849 127.0.0.1:57415 127.0.0.1:57433 3341048409 12 ffffffff7e930c0000000000 ....~....... +2900 8.900854111 127.0.0.1:57415 127.0.0.1:57433 3341048421 12 1a00000071da0c0000000000 ....q....... +2902 8.901172638 127.0.0.1:57415 127.0.0.1:57433 3341048433 26 16000000548f6340e25e3140010003000000ab1f220000000000 ....T.c@.^1@........"..... +2904 8.901489258 127.0.0.1:57433 127.0.0.1:57415 383245888 12 ffffffff71da0c0000000000 ....q....... +2906 8.901964664 127.0.0.1:57433 127.0.0.1:57415 383245900 12 160000007f930c0000000000 ............ +2908 8.902086973 127.0.0.1:57433 127.0.0.1:57415 383245912 22 12000000ab1f22000000000001000300000000000000 ......"............... +2910 8.902412653 127.0.0.1:57415 127.0.0.1:57433 3341048459 12 ffffffff7f930c0000000000 ............ +2912 8.904011488 127.0.0.1:57415 127.0.0.1:57433 3341048471 12 2200000072da0c0000000000 "...r....... +2914 8.904184103 127.0.0.1:57415 127.0.0.1:57433 3341048483 34 1e0000001c2118d0c46f33bb010003000000c164020000000000c9b486c39d01 .....!...o3........d.............. +2916 8.904451609 127.0.0.1:57415 127.0.0.1:57433 3341048517 12 4300000073da0c0000000000 C...s....... +2917 8.904463053 127.0.0.1:57433 127.0.0.1:57415 383245934 12 ffffffff72da0c0000000000 ....r....... +2920 8.904688358 127.0.0.1:57415 127.0.0.1:57433 3341048529 67 3f000000980433cb0cb47c380100030000000100000000c1640200000000003d ?.....3...|8............d......=B.....&......... +2922 8.904997349 127.0.0.1:57433 127.0.0.1:57415 383245946 12 ffffffff73da0c0000000000 ....s....... +2924 8.906047821 127.0.0.1:57433 127.0.0.1:57415 383245958 12 3400000080930c0000000000 4........... +2926 8.906176805 127.0.0.1:57433 127.0.0.1:57415 383245970 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........2... +2928 8.906468391 127.0.0.1:57415 127.0.0.1:57433 3341048596 12 ffffffff80930c0000000000 ............ +2930 8.907225132 127.0.0.1:57415 127.0.0.1:57433 3341048608 12 1e00000074da0c0000000000 ....t....... +2932 8.907423019 127.0.0.1:57415 127.0.0.1:57433 3341048620 30 1a00000055ceff62b21b3a50010003000000ad1f22000000000000000000 ....U..b..:P........"......... +2934 8.907777548 127.0.0.1:57433 127.0.0.1:57415 383246022 12 ffffffff74da0c0000000000 ....t....... +2936 8.908195496 127.0.0.1:57433 127.0.0.1:57415 383246034 12 1a00000081930c0000000000 ............ +2938 8.908360481 127.0.0.1:57433 127.0.0.1:57415 383246046 26 16000000ad1f2200000000000100030000000000000000000000 ......"................... +2940 8.908566713 127.0.0.1:57415 127.0.0.1:57433 3341048650 12 ffffffff81930c0000000000 ............ +2948 9.005856037 127.0.0.1:57415 127.0.0.1:57433 3341048662 12 1a00000075da0c0000000000 ....u....... +2950 9.006105661 127.0.0.1:57415 127.0.0.1:57433 3341048674 26 16000000548f6340e25e3140010003000000af1f220000000000 ....T.c@.^1@........"..... +2952 9.006358385 127.0.0.1:57433 127.0.0.1:57415 383246072 12 ffffffff75da0c0000000000 ....u....... +2954 9.006880045 127.0.0.1:57433 127.0.0.1:57415 383246084 12 1600000082930c0000000000 ............ +2956 9.007123709 127.0.0.1:57433 127.0.0.1:57415 383246096 22 12000000af1f22000000000001000300000000000000 ......"............... +2958 9.007381916 127.0.0.1:57415 127.0.0.1:57433 3341048700 12 ffffffff82930c0000000000 ............ +2960 9.035071850 127.0.0.1:57433 127.0.0.1:57415 383246118 12 feffffff8b750100a2750100 .....u...u.. +2970 9.108639717 127.0.0.1:57415 127.0.0.1:57433 3341048712 12 1a00000076da0c0000000000 ....v....... +2972 9.108798504 127.0.0.1:57415 127.0.0.1:57433 3341048724 26 16000000548f6340e25e3140010003000000b11f220000000000 ....T.c@.^1@........"..... +2974 9.109057665 127.0.0.1:57433 127.0.0.1:57415 383246130 12 ffffffff76da0c0000000000 ....v....... +2976 9.109695196 127.0.0.1:57433 127.0.0.1:57415 383246142 12 1600000083930c0000000000 ............ +2978 9.109840631 127.0.0.1:57433 127.0.0.1:57415 383246154 22 12000000b11f22000000000001000300000000000000 ......"............... +2980 9.110071421 127.0.0.1:57415 127.0.0.1:57433 3341048750 12 ffffffff83930c0000000000 ............ +2982 9.134345531 127.0.0.1:57415 127.0.0.1:57433 3341048762 12 feffffffa37501008b750100 .....u...u.. +2990 9.209069729 127.0.0.1:57415 127.0.0.1:57433 3341048774 12 6500000077da0c0000000000 e...w....... +2992 9.209249496 127.0.0.1:57415 127.0.0.1:57433 3341048786 101 1e0000001c2118d0c46f33bb010003000000c264020000000000fab586c39d01 .....!...o3........d..............?.....3...|8.. +2994 9.209559202 127.0.0.1:57433 127.0.0.1:57415 383246176 12 ffffffff77da0c0000000000 ....w....... +2996 9.210343838 127.0.0.1:57433 127.0.0.1:57415 383246188 12 3400000084930c0000000000 4........... +2998 9.210510492 127.0.0.1:57433 127.0.0.1:57415 383246200 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +3000 9.210912466 127.0.0.1:57415 127.0.0.1:57433 3341048887 12 ffffffff84930c0000000000 ............ +3002 9.211954117 127.0.0.1:57415 127.0.0.1:57433 3341048899 12 1a00000078da0c0000000000 ....x....... +3004 9.212100506 127.0.0.1:57415 127.0.0.1:57433 3341048911 26 16000000548f6340e25e3140010003000000b31f220000000000 ....T.c@.^1@........"..... +3006 9.212214708 127.0.0.1:57415 127.0.0.1:57433 3341048937 12 1e00000079da0c0000000000 ....y....... +3008 9.212343216 127.0.0.1:57415 127.0.0.1:57433 3341048949 30 1a00000055ceff62b21b3a50010003000000b51f22000000000000000000 ....U..b..:P........"......... +3009 9.212379932 127.0.0.1:57433 127.0.0.1:57415 383246252 12 ffffffff78da0c0000000000 ....x....... +3010 9.212484837 127.0.0.1:57433 127.0.0.1:57415 383246264 12 ffffffff79da0c0000000000 ....y....... +3013 9.212810278 127.0.0.1:57433 127.0.0.1:57415 383246276 12 3000000085930c0000000000 0........... +3015 9.213022470 127.0.0.1:57433 127.0.0.1:57415 383246288 48 12000000b31f2200000000000100030000000000000016000000b51f22000000 ......"....................."................... +3017 9.213190317 127.0.0.1:57415 127.0.0.1:57433 3341048979 12 ffffffff85930c0000000000 ............ +3021 9.315050125 127.0.0.1:57415 127.0.0.1:57433 3341048991 12 1a0000007ada0c0000000000 ....z....... +3023 9.315269709 127.0.0.1:57415 127.0.0.1:57433 3341049003 26 16000000548f6340e25e3140010003000000b71f220000000000 ....T.c@.^1@........"..... +3025 9.315599680 127.0.0.1:57433 127.0.0.1:57415 383246336 12 ffffffff7ada0c0000000000 ....z....... +3027 9.316157818 127.0.0.1:57433 127.0.0.1:57415 383246348 12 1600000086930c0000000000 ............ +3029 9.316305399 127.0.0.1:57433 127.0.0.1:57415 383246360 22 12000000b71f22000000000001000300000000000000 ......"............... +3031 9.316533327 127.0.0.1:57415 127.0.0.1:57433 3341049029 12 ffffffff86930c0000000000 ............ +3033 9.418463469 127.0.0.1:57415 127.0.0.1:57433 3341049041 12 1a0000007bda0c0000000000 ....{....... +3035 9.418671370 127.0.0.1:57415 127.0.0.1:57433 3341049053 26 16000000548f6340e25e3140010003000000b91f220000000000 ....T.c@.^1@........"..... +3037 9.419160843 127.0.0.1:57433 127.0.0.1:57415 383246382 12 ffffffff7bda0c0000000000 ....{....... +3039 9.419598579 127.0.0.1:57433 127.0.0.1:57415 383246394 12 1600000087930c0000000000 ............ +3041 9.419799566 127.0.0.1:57433 127.0.0.1:57415 383246406 22 12000000b91f22000000000001000300000000000000 ......"............... +3043 9.420123100 127.0.0.1:57415 127.0.0.1:57433 3341049079 12 ffffffff87930c0000000000 ............ +3051 9.514068842 127.0.0.1:57415 127.0.0.1:57433 3341049091 12 220000007cda0c0000000000 "...|....... +3053 9.514232159 127.0.0.1:57415 127.0.0.1:57433 3341049103 34 1e0000001c2118d0c46f33bb010003000000c3640200000000002cb786c39d01 .....!...o3........d......,....... +3055 9.514388323 127.0.0.1:57415 127.0.0.1:57433 3341049137 12 430000007dda0c0000000000 C...}....... +3057 9.514500141 127.0.0.1:57415 127.0.0.1:57433 3341049149 67 3f000000980433cb0cb47c380100030000000100000000c3640200000000003d ?.....3...|8............d......=B.....&......... +3058 9.514626026 127.0.0.1:57433 127.0.0.1:57415 383246428 12 ffffffff7cda0c0000000000 ....|....... +3059 9.514740944 127.0.0.1:57433 127.0.0.1:57415 383246440 12 ffffffff7dda0c0000000000 ....}....... +3062 9.516049623 127.0.0.1:57433 127.0.0.1:57415 383246452 12 3400000088930c0000000000 4........... +3064 9.516232491 127.0.0.1:57433 127.0.0.1:57415 383246464 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........x... +3066 9.516540766 127.0.0.1:57415 127.0.0.1:57433 3341049216 12 ffffffff88930c0000000000 ............ +3068 9.517498732 127.0.0.1:57415 127.0.0.1:57433 3341049228 12 1e0000007eda0c0000000000 ....~....... +3070 9.517663240 127.0.0.1:57415 127.0.0.1:57433 3341049240 30 1a00000055ceff62b21b3a50010003000000bb1f22000000000000000000 ....U..b..:P........"......... +3072 9.518070936 127.0.0.1:57433 127.0.0.1:57415 383246516 12 ffffffff7eda0c0000000000 ....~....... +3074 9.518507004 127.0.0.1:57433 127.0.0.1:57415 383246528 12 1a00000089930c0000000000 ............ +3076 9.518644094 127.0.0.1:57433 127.0.0.1:57415 383246540 26 16000000bb1f2200000000000100030000000000000000000000 ......"................... +3078 9.518885136 127.0.0.1:57415 127.0.0.1:57433 3341049270 12 ffffffff89930c0000000000 ............ +3080 9.521292925 127.0.0.1:57415 127.0.0.1:57433 3341049282 12 1a0000007fda0c0000000000 ............ +3082 9.521465063 127.0.0.1:57415 127.0.0.1:57433 3341049294 26 16000000548f6340e25e3140010003000000bd1f220000000000 ....T.c@.^1@........"..... +3084 9.521913767 127.0.0.1:57433 127.0.0.1:57415 383246566 12 ffffffff7fda0c0000000000 ............ +3086 9.522683144 127.0.0.1:57433 127.0.0.1:57415 383246578 12 160000008a930c0000000000 ............ +3088 9.522921085 127.0.0.1:57433 127.0.0.1:57415 383246590 22 12000000bd1f22000000000001000300000000000000 ......"............... +3090 9.523191690 127.0.0.1:57415 127.0.0.1:57433 3341049320 12 ffffffff8a930c0000000000 ............ +3092 9.535776138 127.0.0.1:57433 127.0.0.1:57415 383246612 12 feffffff8c750100a3750100 .....u...u.. +3102 9.626137733 127.0.0.1:57415 127.0.0.1:57433 3341049332 12 1a00000080da0c0000000000 ............ +3104 9.626346111 127.0.0.1:57415 127.0.0.1:57433 3341049344 26 16000000548f6340e25e3140010003000000bf1f220000000000 ....T.c@.^1@........"..... +3106 9.626675606 127.0.0.1:57433 127.0.0.1:57415 383246624 12 ffffffff80da0c0000000000 ............ +3108 9.627234936 127.0.0.1:57433 127.0.0.1:57415 383246636 12 160000008b930c0000000000 ............ +3110 9.627376795 127.0.0.1:57433 127.0.0.1:57415 383246648 22 12000000bf1f22000000000001000300000000000000 ......"............... +3112 9.627731562 127.0.0.1:57415 127.0.0.1:57433 3341049370 12 ffffffff8b930c0000000000 ............ +3114 9.635055780 127.0.0.1:57415 127.0.0.1:57433 3341049382 12 feffffffa47501008c750100 .....u...u.. +3124 9.729773283 127.0.0.1:57415 127.0.0.1:57433 3341049394 12 1a00000081da0c0000000000 ............ +3126 9.729981899 127.0.0.1:57415 127.0.0.1:57433 3341049406 26 16000000548f6340e25e3140010003000000c11f220000000000 ....T.c@.^1@........"..... +3128 9.730528831 127.0.0.1:57433 127.0.0.1:57415 383246670 12 ffffffff81da0c0000000000 ............ +3130 9.731524944 127.0.0.1:57433 127.0.0.1:57415 383246682 12 160000008c930c0000000000 ............ +3132 9.731664419 127.0.0.1:57433 127.0.0.1:57415 383246694 22 12000000c11f22000000000001000300000000000000 ......"............... +3134 9.731985569 127.0.0.1:57415 127.0.0.1:57433 3341049432 12 ffffffff8c930c0000000000 ............ +3140 9.819059610 127.0.0.1:57415 127.0.0.1:57433 3341049444 12 6500000082da0c0000000000 e........... +3142 9.819236755 127.0.0.1:57415 127.0.0.1:57433 3341049456 101 1e0000001c2118d0c46f33bb010003000000c4640200000000005cb886c39d01 .....!...o3........d......\.......?.....3...|8.. +3144 9.819597006 127.0.0.1:57433 127.0.0.1:57415 383246716 12 ffffffff82da0c0000000000 ............ +3146 9.820916891 127.0.0.1:57433 127.0.0.1:57415 383246728 12 340000008d930c0000000000 4........... +3148 9.821195364 127.0.0.1:57433 127.0.0.1:57415 383246740 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +3150 9.821592569 127.0.0.1:57415 127.0.0.1:57433 3341049557 12 ffffffff8d930c0000000000 ............ +3152 9.823287010 127.0.0.1:57415 127.0.0.1:57433 3341049569 12 1e00000083da0c0000000000 ............ +3154 9.823496580 127.0.0.1:57415 127.0.0.1:57433 3341049581 30 1a00000055ceff62b21b3a50010003000000c31f22000000000000000000 ....U..b..:P........"......... +3156 9.823802471 127.0.0.1:57433 127.0.0.1:57415 383246792 12 ffffffff83da0c0000000000 ............ +3158 9.824389219 127.0.0.1:57433 127.0.0.1:57415 383246804 12 1a0000008e930c0000000000 ............ +3160 9.824617386 127.0.0.1:57433 127.0.0.1:57415 383246816 26 16000000c31f2200000000000100030000000000000000000000 ......"................... +3162 9.825033426 127.0.0.1:57415 127.0.0.1:57433 3341049611 12 ffffffff8e930c0000000000 ............ +3164 9.833864927 127.0.0.1:57415 127.0.0.1:57433 3341049623 12 1a00000084da0c0000000000 ............ +3166 9.834205866 127.0.0.1:57415 127.0.0.1:57433 3341049635 26 16000000548f6340e25e3140010003000000c51f220000000000 ....T.c@.^1@........"..... +3168 9.835225821 127.0.0.1:57433 127.0.0.1:57415 383246842 12 ffffffff84da0c0000000000 ............ +3170 9.835611820 127.0.0.1:57433 127.0.0.1:57415 383246854 12 160000008f930c0000000000 ............ +3172 9.835897684 127.0.0.1:57433 127.0.0.1:57415 383246866 22 12000000c51f22000000000001000300000000000000 ......"............... +3174 9.836261988 127.0.0.1:57415 127.0.0.1:57433 3341049661 12 ffffffff8f930c0000000000 ............ +3176 9.937396526 127.0.0.1:57415 127.0.0.1:57433 3341049673 12 1a00000085da0c0000000000 ............ +3178 9.937739611 127.0.0.1:57415 127.0.0.1:57433 3341049685 26 16000000548f6340e25e3140010003000000c71f220000000000 ....T.c@.^1@........"..... +3180 9.938048601 127.0.0.1:57433 127.0.0.1:57415 383246888 12 ffffffff85da0c0000000000 ............ +3182 9.938530922 127.0.0.1:57433 127.0.0.1:57415 383246900 12 1600000090930c0000000000 ............ +3184 9.938748598 127.0.0.1:57433 127.0.0.1:57415 383246912 22 12000000c71f22000000000001000300000000000000 ......"............... +3186 9.939125061 127.0.0.1:57415 127.0.0.1:57433 3341049711 12 ffffffff90930c0000000000 ............ +3194 10.036850214 127.0.0.1:57433 127.0.0.1:57415 383246934 12 feffffff8d750100a4750100 .....u...u.. +3196 10.041379929 127.0.0.1:57415 127.0.0.1:57433 3341049723 12 1a00000086da0c0000000000 ............ +3198 10.041655779 127.0.0.1:57415 127.0.0.1:57433 3341049735 26 16000000548f6340e25e3140010003000000c91f220000000000 ....T.c@.^1@........"..... +3200 10.042052984 127.0.0.1:57433 127.0.0.1:57415 383246946 12 ffffffff86da0c0000000000 ............ +3202 10.042872667 127.0.0.1:57433 127.0.0.1:57415 383246958 12 1600000091930c0000000000 ............ +3204 10.043407202 127.0.0.1:57433 127.0.0.1:57415 383246970 22 12000000c91f22000000000001000300000000000000 ......"............... +3206 10.043704987 127.0.0.1:57415 127.0.0.1:57433 3341049761 12 ffffffff91930c0000000000 ............ +3220 10.124214411 127.0.0.1:57415 127.0.0.1:57433 3341049773 12 2200000087da0c0000000000 "........... +3222 10.124513626 127.0.0.1:57415 127.0.0.1:57433 3341049785 34 1e0000001c2118d0c46f33bb010003000000c5640200000000008db986c39d01 .....!...o3........d.............. +3224 10.124695063 127.0.0.1:57415 127.0.0.1:57433 3341049819 12 4300000088da0c0000000000 C........... +3226 10.124798298 127.0.0.1:57415 127.0.0.1:57433 3341049831 67 3f000000980433cb0cb47c380100030000000100000000c5640200000000003d ?.....3...|8............d......=B.....&......... +3227 10.124894142 127.0.0.1:57433 127.0.0.1:57415 383246992 12 ffffffff87da0c0000000000 ............ +3228 10.125046730 127.0.0.1:57433 127.0.0.1:57415 383247004 12 ffffffff88da0c0000000000 ............ +3231 10.126931667 127.0.0.1:57433 127.0.0.1:57415 383247016 12 3400000092930c0000000000 4........... +3233 10.127198458 127.0.0.1:57433 127.0.0.1:57415 383247028 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........C. +3235 10.127742290 127.0.0.1:57415 127.0.0.1:57433 3341049898 12 ffffffff92930c0000000000 ............ +3236 10.128399134 127.0.0.1:57415 127.0.0.1:57433 3341049910 12 1e00000089da0c0000000000 ............ +3237 10.128541708 127.0.0.1:57415 127.0.0.1:57433 3341049922 30 1a00000055ceff62b21b3a50010003000000cb1f22000000000000000000 ....U..b..:P........"......... +3238 10.128992081 127.0.0.1:57433 127.0.0.1:57415 383247080 12 ffffffff89da0c0000000000 ............ +3240 10.129300117 127.0.0.1:57433 127.0.0.1:57415 383247092 12 1a00000093930c0000000000 ............ +3242 10.129473925 127.0.0.1:57433 127.0.0.1:57415 383247104 26 16000000cb1f2200000000000100030000000000000000000000 ......"................... +3244 10.129765272 127.0.0.1:57415 127.0.0.1:57433 3341049952 12 ffffffff93930c0000000000 ............ +3250 10.136562347 127.0.0.1:57415 127.0.0.1:57433 3341049964 12 feffffffa57501008d750100 .....u...u.. +3256 10.145328045 127.0.0.1:57415 127.0.0.1:57433 3341049976 12 1a0000008ada0c0000000000 ............ +3258 10.145554304 127.0.0.1:57415 127.0.0.1:57433 3341049988 26 16000000548f6340e25e3140010003000000cd1f220000000000 ....T.c@.^1@........"..... +3260 10.145839214 127.0.0.1:57433 127.0.0.1:57415 383247130 12 ffffffff8ada0c0000000000 ............ +3262 10.146999836 127.0.0.1:57433 127.0.0.1:57415 383247142 12 1600000094930c0000000000 ............ +3264 10.147231102 127.0.0.1:57433 127.0.0.1:57415 383247154 22 12000000cd1f22000000000001000300000000000000 ......"............... +3266 10.147548199 127.0.0.1:57415 127.0.0.1:57433 3341050014 12 ffffffff94930c0000000000 ............ +3270 10.249633312 127.0.0.1:57415 127.0.0.1:57433 3341050026 12 1a0000008bda0c0000000000 ............ +3272 10.249828100 127.0.0.1:57415 127.0.0.1:57433 3341050038 26 16000000548f6340e25e3140010003000000cf1f220000000000 ....T.c@.^1@........"..... +3274 10.250235796 127.0.0.1:57433 127.0.0.1:57415 383247176 12 ffffffff8bda0c0000000000 ............ +3276 10.251286983 127.0.0.1:57433 127.0.0.1:57415 383247188 12 1600000095930c0000000000 ............ +3278 10.251468897 127.0.0.1:57433 127.0.0.1:57415 383247200 22 12000000cf1f22000000000001000300000000000000 ......"............... +3280 10.251853466 127.0.0.1:57415 127.0.0.1:57433 3341050064 12 ffffffff95930c0000000000 ............ +3296 10.353523731 127.0.0.1:57415 127.0.0.1:57433 3341050076 12 1a0000008cda0c0000000000 ............ +3298 10.353790998 127.0.0.1:57415 127.0.0.1:57433 3341050088 26 16000000548f6340e25e3140010003000000d11f220000000000 ....T.c@.^1@........"..... +3300 10.354129076 127.0.0.1:57433 127.0.0.1:57415 383247222 12 ffffffff8cda0c0000000000 ............ +3302 10.354629040 127.0.0.1:57433 127.0.0.1:57415 383247234 12 1600000096930c0000000000 ............ +3304 10.354764223 127.0.0.1:57433 127.0.0.1:57415 383247246 22 12000000d11f22000000000001000300000000000000 ......"............... +3306 10.354983330 127.0.0.1:57415 127.0.0.1:57433 3341050114 12 ffffffff96930c0000000000 ............ +3308 10.430092096 127.0.0.1:57415 127.0.0.1:57433 3341050126 12 650000008dda0c0000000000 e........... +3310 10.430328369 127.0.0.1:57415 127.0.0.1:57433 3341050138 101 1e0000001c2118d0c46f33bb010003000000c664020000000000c0ba86c39d01 .....!...o3........d..............?.....3...|8.. +3312 10.430747986 127.0.0.1:57433 127.0.0.1:57415 383247268 12 ffffffff8dda0c0000000000 ............ +3314 10.431691885 127.0.0.1:57433 127.0.0.1:57415 383247280 12 3400000097930c0000000000 4........... +3316 10.432002544 127.0.0.1:57433 127.0.0.1:57415 383247292 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........Pr. +3318 10.432310820 127.0.0.1:57415 127.0.0.1:57433 3341050239 12 ffffffff97930c0000000000 ............ +3320 10.433144808 127.0.0.1:57415 127.0.0.1:57433 3341050251 12 1e0000008eda0c0000000000 ............ +3322 10.433336496 127.0.0.1:57415 127.0.0.1:57433 3341050263 30 1a00000055ceff62b21b3a50010003000000d31f22000000000000000000 ....U..b..:P........"......... +3324 10.433700323 127.0.0.1:57433 127.0.0.1:57415 383247344 12 ffffffff8eda0c0000000000 ............ +3326 10.434151649 127.0.0.1:57433 127.0.0.1:57415 383247356 12 1a00000098930c0000000000 ............ +3328 10.434285164 127.0.0.1:57433 127.0.0.1:57415 383247368 26 16000000d31f2200000000000100030000000000000000000000 ......"................... +3330 10.434607029 127.0.0.1:57415 127.0.0.1:57433 3341050293 12 ffffffff98930c0000000000 ............ +3334 10.457198143 127.0.0.1:57415 127.0.0.1:57433 3341050305 12 1a0000008fda0c0000000000 ............ +3336 10.457386971 127.0.0.1:57415 127.0.0.1:57433 3341050317 26 16000000548f6340e25e3140010003000000d51f220000000000 ....T.c@.^1@........"..... +3338 10.457757950 127.0.0.1:57433 127.0.0.1:57415 383247394 12 ffffffff8fda0c0000000000 ............ +3340 10.458365202 127.0.0.1:57433 127.0.0.1:57415 383247406 12 1600000099930c0000000000 ............ +3342 10.458507776 127.0.0.1:57433 127.0.0.1:57415 383247418 22 12000000d51f22000000000001000300000000000000 ......"............... +3344 10.458796263 127.0.0.1:57415 127.0.0.1:57433 3341050343 12 ffffffff99930c0000000000 ............ +3352 10.537948132 127.0.0.1:57433 127.0.0.1:57415 383247440 12 feffffff8e750100a5750100 .....u...u.. +3354 10.561578274 127.0.0.1:57415 127.0.0.1:57433 3341050355 12 1a00000090da0c0000000000 ............ +3356 10.561820984 127.0.0.1:57415 127.0.0.1:57433 3341050367 26 16000000548f6340e25e3140010003000000d71f220000000000 ....T.c@.^1@........"..... +3358 10.562218666 127.0.0.1:57433 127.0.0.1:57415 383247452 12 ffffffff90da0c0000000000 ............ +3360 10.562797785 127.0.0.1:57433 127.0.0.1:57415 383247464 12 160000009a930c0000000000 ............ +3362 10.562973976 127.0.0.1:57433 127.0.0.1:57415 383247476 22 12000000d71f22000000000001000300000000000000 ......"............... +3364 10.563313246 127.0.0.1:57415 127.0.0.1:57433 3341050393 12 ffffffff9a930c0000000000 ............ +3376 10.638864040 127.0.0.1:57415 127.0.0.1:57433 3341050405 12 feffffffa67501008e750100 .....u...u.. +3382 10.666305304 127.0.0.1:57415 127.0.0.1:57433 3341050417 12 1a00000091da0c0000000000 ............ +3384 10.666546106 127.0.0.1:57415 127.0.0.1:57433 3341050429 26 16000000548f6340e25e3140010003000000d91f220000000000 ....T.c@.^1@........"..... +3386 10.667217970 127.0.0.1:57433 127.0.0.1:57415 383247498 12 ffffffff91da0c0000000000 ............ +3388 10.667546272 127.0.0.1:57433 127.0.0.1:57415 383247510 12 160000009b930c0000000000 ............ +3390 10.667721748 127.0.0.1:57433 127.0.0.1:57415 383247522 22 12000000d91f22000000000001000300000000000000 ......"............... +3392 10.667969704 127.0.0.1:57415 127.0.0.1:57433 3341050455 12 ffffffff9b930c0000000000 ............ +3402 10.734583139 127.0.0.1:57415 127.0.0.1:57433 3341050467 12 6500000092da0c0000000000 e........... +3404 10.734749079 127.0.0.1:57415 127.0.0.1:57433 3341050479 101 1e0000001c2118d0c46f33bb010003000000c764020000000000efbb86c39d01 .....!...o3........d..............?.....3...|8.. +3406 10.735193253 127.0.0.1:57433 127.0.0.1:57415 383247544 12 ffffffff92da0c0000000000 ............ +3408 10.736458063 127.0.0.1:57433 127.0.0.1:57415 383247556 12 340000009c930c0000000000 4........... +3410 10.736699343 127.0.0.1:57433 127.0.0.1:57415 383247568 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........ ... +3412 10.736997604 127.0.0.1:57415 127.0.0.1:57433 3341050580 12 ffffffff9c930c0000000000 ............ +3414 10.737832308 127.0.0.1:57415 127.0.0.1:57433 3341050592 12 1e00000093da0c0000000000 ............ +3416 10.738009930 127.0.0.1:57415 127.0.0.1:57433 3341050604 30 1a00000055ceff62b21b3a50010003000000db1f22000000000000000000 ....U..b..:P........"......... +3418 10.738390207 127.0.0.1:57433 127.0.0.1:57415 383247620 12 ffffffff93da0c0000000000 ............ +3420 10.738821030 127.0.0.1:57433 127.0.0.1:57415 383247632 12 1a0000009d930c0000000000 ............ +3422 10.739017248 127.0.0.1:57433 127.0.0.1:57415 383247644 26 16000000db1f2200000000000100030000000000000000000000 ......"................... +3424 10.739262342 127.0.0.1:57415 127.0.0.1:57433 3341050634 12 ffffffff9d930c0000000000 ............ +3426 10.769307613 127.0.0.1:57415 127.0.0.1:57433 3341050646 12 1a00000094da0c0000000000 ............ +3428 10.769527197 127.0.0.1:57415 127.0.0.1:57433 3341050658 26 16000000548f6340e25e3140010003000000dd1f220000000000 ....T.c@.^1@........"..... +3430 10.770041227 127.0.0.1:57433 127.0.0.1:57415 383247670 12 ffffffff94da0c0000000000 ............ +3432 10.770318985 127.0.0.1:57433 127.0.0.1:57415 383247682 12 160000009e930c0000000000 ............ +3434 10.770542145 127.0.0.1:57433 127.0.0.1:57415 383247694 22 12000000dd1f22000000000001000300000000000000 ......"............... +3436 10.770802975 127.0.0.1:57415 127.0.0.1:57433 3341050684 12 ffffffff9e930c0000000000 ............ +3451 10.872095108 127.0.0.1:57415 127.0.0.1:57433 3341050696 12 1a00000095da0c0000000000 ............ +3453 10.872262239 127.0.0.1:57415 127.0.0.1:57433 3341050708 26 16000000548f6340e25e3140010003000000df1f220000000000 ....T.c@.^1@........"..... +3455 10.872678280 127.0.0.1:57433 127.0.0.1:57415 383247716 12 ffffffff95da0c0000000000 ............ +3457 10.873095274 127.0.0.1:57433 127.0.0.1:57415 383247728 12 160000009f930c0000000000 ............ +3459 10.873245716 127.0.0.1:57433 127.0.0.1:57415 383247740 22 12000000df1f22000000000001000300000000000000 ......"............... +3461 10.873489380 127.0.0.1:57415 127.0.0.1:57433 3341050734 12 ffffffff9f930c0000000000 ............ +3470 10.975423574 127.0.0.1:57415 127.0.0.1:57433 3341050746 12 1a00000096da0c0000000000 ............ +3472 10.975672483 127.0.0.1:57415 127.0.0.1:57433 3341050758 26 16000000548f6340e25e3140010003000000e11f220000000000 ....T.c@.^1@........"..... +3474 10.976037979 127.0.0.1:57433 127.0.0.1:57415 383247762 12 ffffffff96da0c0000000000 ............ +3476 10.976423502 127.0.0.1:57433 127.0.0.1:57415 383247774 12 16000000a0930c0000000000 ............ +3478 10.976661444 127.0.0.1:57433 127.0.0.1:57415 383247786 22 12000000e11f22000000000001000300000000000000 ......"............... +3480 10.976872206 127.0.0.1:57415 127.0.0.1:57433 3341050784 12 ffffffffa0930c0000000000 ............ +3483 11.039341450 127.0.0.1:57433 127.0.0.1:57415 383247808 12 feffffff8f750100a6750100 .....u...u.. +3485 11.039599419 127.0.0.1:57415 127.0.0.1:57433 3341050796 12 6500000097da0c0000000000 e........... +3487 11.039796829 127.0.0.1:57415 127.0.0.1:57433 3341050808 101 1e0000001c2118d0c46f33bb010003000000c86402000000000020bd86c39d01 .....!...o3........d...... .......?.....3...|8.. +3489 11.040112257 127.0.0.1:57433 127.0.0.1:57415 383247820 12 ffffffff97da0c0000000000 ............ +3491 11.041442871 127.0.0.1:57433 127.0.0.1:57415 383247832 12 34000000a1930c0000000000 4........... +3493 11.041617632 127.0.0.1:57433 127.0.0.1:57415 383247844 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........Z.. +3495 11.042223930 127.0.0.1:57415 127.0.0.1:57433 3341050909 12 ffffffffa1930c0000000000 ............ +3497 11.043174982 127.0.0.1:57415 127.0.0.1:57433 3341050921 12 1e00000098da0c0000000000 ............ +3499 11.043362379 127.0.0.1:57415 127.0.0.1:57433 3341050933 30 1a00000055ceff62b21b3a50010003000000e31f22000000000000000000 ....U..b..:P........"......... +3501 11.043699980 127.0.0.1:57433 127.0.0.1:57415 383247896 12 ffffffff98da0c0000000000 ............ +3503 11.044009447 127.0.0.1:57433 127.0.0.1:57415 383247908 12 1a000000a2930c0000000000 ............ +3505 11.044146538 127.0.0.1:57433 127.0.0.1:57415 383247920 26 16000000e31f2200000000000100030000000000000000000000 ......"................... +3507 11.044384956 127.0.0.1:57415 127.0.0.1:57433 3341050963 12 ffffffffa2930c0000000000 ............ +3513 11.078258991 127.0.0.1:57415 127.0.0.1:57433 3341050975 12 1a00000099da0c0000000000 ............ +3515 11.078415632 127.0.0.1:57415 127.0.0.1:57433 3341050987 26 16000000548f6340e25e3140010003000000e51f220000000000 ....T.c@.^1@........"..... +3517 11.078753948 127.0.0.1:57433 127.0.0.1:57415 383247946 12 ffffffff99da0c0000000000 ............ +3519 11.079128265 127.0.0.1:57433 127.0.0.1:57415 383247958 12 16000000a3930c0000000000 ............ +3521 11.079298735 127.0.0.1:57433 127.0.0.1:57415 383247970 22 12000000e51f22000000000001000300000000000000 ......"............... +3523 11.079574347 127.0.0.1:57415 127.0.0.1:57433 3341051013 12 ffffffffa3930c0000000000 ............ +3607 11.139933109 127.0.0.1:57415 127.0.0.1:57433 3341051025 12 feffffffa77501008f750100 .....u...u.. +3614 11.181102514 127.0.0.1:57415 127.0.0.1:57433 3341051037 12 1a0000009ada0c0000000000 ............ +3616 11.181298733 127.0.0.1:57415 127.0.0.1:57433 3341051049 26 16000000548f6340e25e3140010003000000e71f220000000000 ....T.c@.^1@........"..... +3618 11.181626320 127.0.0.1:57433 127.0.0.1:57415 383247992 12 ffffffff9ada0c0000000000 ............ +3620 11.182106972 127.0.0.1:57433 127.0.0.1:57415 383248004 12 16000000a4930c0000000000 ............ +3622 11.182291508 127.0.0.1:57433 127.0.0.1:57415 383248016 22 12000000e71f22000000000001000300000000000000 ......"............... +3624 11.182564497 127.0.0.1:57415 127.0.0.1:57433 3341051075 12 ffffffffa4930c0000000000 ............ +3767 11.284118176 127.0.0.1:57415 127.0.0.1:57433 3341051087 12 1a0000009bda0c0000000000 ............ +3769 11.284382105 127.0.0.1:57415 127.0.0.1:57433 3341051099 26 16000000548f6340e25e3140010003000000e91f220000000000 ....T.c@.^1@........"..... +3771 11.284862757 127.0.0.1:57433 127.0.0.1:57415 383248038 12 ffffffff9bda0c0000000000 ............ +3773 11.285674810 127.0.0.1:57433 127.0.0.1:57415 383248050 12 16000000a5930c0000000000 ............ +3775 11.285841703 127.0.0.1:57433 127.0.0.1:57415 383248062 22 12000000e91f22000000000001000300000000000000 ......"............... +3777 11.286182642 127.0.0.1:57415 127.0.0.1:57433 3341051125 12 ffffffffa5930c0000000000 ............ +4046 11.345563412 127.0.0.1:57415 127.0.0.1:57433 3341051137 12 220000009cda0c0000000000 "........... +4048 11.346006393 127.0.0.1:57415 127.0.0.1:57433 3341051149 34 1e0000001c2118d0c46f33bb010003000000c96402000000000053be86c39d01 .....!...o3........d......S....... +4050 11.346189976 127.0.0.1:57415 127.0.0.1:57433 3341051183 12 430000009dda0c0000000000 C........... +4052 11.346336603 127.0.0.1:57415 127.0.0.1:57433 3341051195 67 3f000000980433cb0cb47c380100030000000100000000c9640200000000003d ?.....3...|8............d......=B.....&......... +4054 11.346503019 127.0.0.1:57433 127.0.0.1:57415 383248084 12 ffffffff9cda0c0000000000 ............ +4056 11.346729517 127.0.0.1:57433 127.0.0.1:57415 383248096 12 ffffffff9dda0c0000000000 ............ +4058 11.347829103 127.0.0.1:57433 127.0.0.1:57415 383248108 12 34000000a6930c0000000000 4........... +4060 11.348086119 127.0.0.1:57433 127.0.0.1:57415 383248120 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........]... +4062 11.348400116 127.0.0.1:57415 127.0.0.1:57433 3341051262 12 ffffffffa6930c0000000000 ............ +4064 11.349402428 127.0.0.1:57415 127.0.0.1:57433 3341051274 12 1e0000009eda0c0000000000 ............ +4066 11.349649906 127.0.0.1:57415 127.0.0.1:57433 3341051286 30 1a00000055ceff62b21b3a50010003000000eb1f22000000000000000000 ....U..b..:P........"......... +4068 11.350036621 127.0.0.1:57433 127.0.0.1:57415 383248172 12 ffffffff9eda0c0000000000 ............ +4070 11.351467371 127.0.0.1:57433 127.0.0.1:57415 383248184 12 1a000000a7930c0000000000 ............ +4072 11.351744652 127.0.0.1:57433 127.0.0.1:57415 383248196 26 16000000eb1f2200000000000100030000000000000000000000 ......"................... +4074 11.352059841 127.0.0.1:57415 127.0.0.1:57433 3341051316 12 ffffffffa7930c0000000000 ............ +4080 11.387769938 127.0.0.1:57415 127.0.0.1:57433 3341051328 12 1a0000009fda0c0000000000 ............ +4082 11.388039351 127.0.0.1:57415 127.0.0.1:57433 3341051340 26 16000000548f6340e25e3140010003000000ed1f220000000000 ....T.c@.^1@........"..... +4084 11.388422251 127.0.0.1:57433 127.0.0.1:57415 383248222 12 ffffffff9fda0c0000000000 ............ +4086 11.388802290 127.0.0.1:57433 127.0.0.1:57415 383248234 12 16000000a8930c0000000000 ............ +4088 11.388956070 127.0.0.1:57433 127.0.0.1:57415 383248246 22 12000000ed1f22000000000001000300000000000000 ......"............... +4090 11.389239073 127.0.0.1:57415 127.0.0.1:57433 3341051366 12 ffffffffa8930c0000000000 ............ +4103 11.490743160 127.0.0.1:57415 127.0.0.1:57433 3341051378 12 1a000000a0da0c0000000000 ............ +4105 11.490976810 127.0.0.1:57415 127.0.0.1:57433 3341051390 26 16000000548f6340e25e3140010003000000ef1f220000000000 ....T.c@.^1@........"..... +4107 11.491237640 127.0.0.1:57433 127.0.0.1:57415 383248268 12 ffffffffa0da0c0000000000 ............ +4109 11.491572857 127.0.0.1:57433 127.0.0.1:57415 383248280 12 16000000a9930c0000000000 ............ +4111 11.491727591 127.0.0.1:57433 127.0.0.1:57415 383248292 22 12000000ef1f22000000000001000300000000000000 ......"............... +4113 11.491983414 127.0.0.1:57415 127.0.0.1:57433 3341051416 12 ffffffffa9930c0000000000 ............ +4116 11.542302132 127.0.0.1:57433 127.0.0.1:57415 383248314 12 feffffff90750100a7750100 .....u...u.. +4122 11.594569206 127.0.0.1:57415 127.0.0.1:57433 3341051428 12 1a000000a1da0c0000000000 ............ +4124 11.594748497 127.0.0.1:57415 127.0.0.1:57433 3341051440 26 16000000548f6340e25e3140010003000000f11f220000000000 ....T.c@.^1@........"..... +4126 11.595101118 127.0.0.1:57433 127.0.0.1:57415 383248326 12 ffffffffa1da0c0000000000 ............ +4128 11.595495224 127.0.0.1:57433 127.0.0.1:57415 383248338 12 16000000aa930c0000000000 ............ +4130 11.595632076 127.0.0.1:57433 127.0.0.1:57415 383248350 22 12000000f11f22000000000001000300000000000000 ......"............... +4132 11.595977068 127.0.0.1:57415 127.0.0.1:57433 3341051466 12 ffffffffaa930c0000000000 ............ +4142 11.642395496 127.0.0.1:57415 127.0.0.1:57433 3341051478 12 feffffffa875010090750100 .....u...u.. +4147 11.651065588 127.0.0.1:57415 127.0.0.1:57433 3341051490 12 22000000a2da0c0000000000 "........... +4149 11.651227951 127.0.0.1:57415 127.0.0.1:57433 3341051502 34 1e0000001c2118d0c46f33bb010003000000ca6402000000000085bf86c39d01 .....!...o3........d.............. +4151 11.651318550 127.0.0.1:57415 127.0.0.1:57433 3341051536 12 43000000a3da0c0000000000 C........... +4153 11.651444912 127.0.0.1:57415 127.0.0.1:57433 3341051548 67 3f000000980433cb0cb47c380100030000000100000000ca640200000000003d ?.....3...|8............d......=B.....&......... +4155 11.651623726 127.0.0.1:57433 127.0.0.1:57415 383248372 12 ffffffffa2da0c0000000000 ............ +4157 11.651785612 127.0.0.1:57433 127.0.0.1:57415 383248384 12 ffffffffa3da0c0000000000 ............ +4159 11.652794838 127.0.0.1:57433 127.0.0.1:57415 383248396 12 34000000ab930c0000000000 4........... +4161 11.653010845 127.0.0.1:57433 127.0.0.1:57415 383248408 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........,. +4163 11.653355360 127.0.0.1:57415 127.0.0.1:57433 3341051615 12 ffffffffab930c0000000000 ............ +4165 11.654396296 127.0.0.1:57415 127.0.0.1:57433 3341051627 12 1e000000a4da0c0000000000 ............ +4167 11.654616117 127.0.0.1:57415 127.0.0.1:57433 3341051639 30 1a00000055ceff62b21b3a50010003000000f31f22000000000000000000 ....U..b..:P........"......... +4169 11.655005693 127.0.0.1:57433 127.0.0.1:57415 383248460 12 ffffffffa4da0c0000000000 ............ +4171 11.655576944 127.0.0.1:57433 127.0.0.1:57415 383248472 12 1a000000ac930c0000000000 ............ +4173 11.655771494 127.0.0.1:57433 127.0.0.1:57415 383248484 26 16000000f31f2200000000000100030000000000000000000000 ......"................... +4175 11.656049252 127.0.0.1:57415 127.0.0.1:57433 3341051669 12 ffffffffac930c0000000000 ............ +4179 11.697523355 127.0.0.1:57415 127.0.0.1:57433 3341051681 12 1a000000a5da0c0000000000 ............ +4181 11.697693348 127.0.0.1:57415 127.0.0.1:57433 3341051693 26 16000000548f6340e25e3140010003000000f51f220000000000 ....T.c@.^1@........"..... +4183 11.698067427 127.0.0.1:57433 127.0.0.1:57415 383248510 12 ffffffffa5da0c0000000000 ............ +4185 11.698432207 127.0.0.1:57433 127.0.0.1:57415 383248522 12 16000000ad930c0000000000 ............ +4187 11.698566437 127.0.0.1:57433 127.0.0.1:57415 383248534 22 12000000f51f22000000000001000300000000000000 ......"............... +4189 11.698905468 127.0.0.1:57415 127.0.0.1:57433 3341051719 12 ffffffffad930c0000000000 ............ +4194 11.800499678 127.0.0.1:57415 127.0.0.1:57433 3341051731 12 1a000000a6da0c0000000000 ............ +4196 11.800706625 127.0.0.1:57415 127.0.0.1:57433 3341051743 26 16000000548f6340e25e3140010003000000f71f220000000000 ....T.c@.^1@........"..... +4198 11.801041365 127.0.0.1:57433 127.0.0.1:57415 383248556 12 ffffffffa6da0c0000000000 ............ +4200 11.801837683 127.0.0.1:57433 127.0.0.1:57415 383248568 12 16000000ae930c0000000000 ............ +4202 11.801976204 127.0.0.1:57433 127.0.0.1:57415 383248580 22 12000000f71f22000000000001000300000000000000 ......"............... +4204 11.802229881 127.0.0.1:57415 127.0.0.1:57433 3341051769 12 ffffffffae930c0000000000 ............ +4207 11.903753519 127.0.0.1:57415 127.0.0.1:57433 3341051781 12 1a000000a7da0c0000000000 ............ +4209 11.904141188 127.0.0.1:57415 127.0.0.1:57433 3341051793 26 16000000548f6340e25e3140010003000000f91f220000000000 ....T.c@.^1@........"..... +4211 11.904484272 127.0.0.1:57433 127.0.0.1:57415 383248602 12 ffffffffa7da0c0000000000 ............ +4213 11.905689001 127.0.0.1:57433 127.0.0.1:57415 383248614 12 16000000af930c0000000000 ............ +4215 11.905901909 127.0.0.1:57433 127.0.0.1:57415 383248626 22 12000000f91f22000000000001000300000000000000 ......"............... +4217 11.906221151 127.0.0.1:57415 127.0.0.1:57433 3341051819 12 ffffffffaf930c0000000000 ............ +4221 11.955847025 127.0.0.1:57415 127.0.0.1:57433 3341051831 12 22000000a8da0c0000000000 "........... +4223 11.956123829 127.0.0.1:57415 127.0.0.1:57433 3341051843 34 1e0000001c2118d0c46f33bb010003000000cb64020000000000b5c086c39d01 .....!...o3........d.............. +4225 11.956298828 127.0.0.1:57415 127.0.0.1:57433 3341051877 12 43000000a9da0c0000000000 C........... +4227 11.956414461 127.0.0.1:57415 127.0.0.1:57433 3341051889 67 3f000000980433cb0cb47c380100030000000100000000cb640200000000003d ?.....3...|8............d......=B.....&......... +4228 11.956464767 127.0.0.1:57433 127.0.0.1:57415 383248648 12 ffffffffa8da0c0000000000 ............ +4229 11.956587791 127.0.0.1:57433 127.0.0.1:57415 383248660 12 ffffffffa9da0c0000000000 ............ +4232 11.957494497 127.0.0.1:57433 127.0.0.1:57415 383248672 12 34000000b0930c0000000000 4........... +4234 11.957634926 127.0.0.1:57433 127.0.0.1:57415 383248684 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........$[. +4236 11.957918882 127.0.0.1:57415 127.0.0.1:57433 3341051956 12 ffffffffb0930c0000000000 ............ +4237 11.959158182 127.0.0.1:57415 127.0.0.1:57433 3341051968 12 1e000000aada0c0000000000 ............ +4238 11.959277630 127.0.0.1:57415 127.0.0.1:57433 3341051980 30 1a00000055ceff62b21b3a50010003000000fb1f22000000000000000000 ....U..b..:P........"......... +4239 11.959499598 127.0.0.1:57433 127.0.0.1:57415 383248736 12 ffffffffaada0c0000000000 ............ +4241 11.960015774 127.0.0.1:57433 127.0.0.1:57415 383248748 12 1a000000b1930c0000000000 ............ +4243 11.960181236 127.0.0.1:57433 127.0.0.1:57415 383248760 26 16000000fb1f2200000000000100030000000000000000000000 ......"................... +4245 11.960407734 127.0.0.1:57415 127.0.0.1:57433 3341052010 12 ffffffffb1930c0000000000 ............ +4252 12.007675171 127.0.0.1:57415 127.0.0.1:57433 3341052022 12 1a000000abda0c0000000000 ............ +4254 12.007842302 127.0.0.1:57415 127.0.0.1:57433 3341052034 26 16000000548f6340e25e3140010003000000fd1f220000000000 ....T.c@.^1@........"..... +4256 12.008293629 127.0.0.1:57433 127.0.0.1:57415 383248786 12 ffffffffabda0c0000000000 ............ +4258 12.008844852 127.0.0.1:57433 127.0.0.1:57415 383248798 12 16000000b2930c0000000000 ............ +4260 12.009027958 127.0.0.1:57433 127.0.0.1:57415 383248810 22 12000000fd1f22000000000001000300000000000000 ......"............... +4262 12.009244442 127.0.0.1:57415 127.0.0.1:57433 3341052060 12 ffffffffb2930c0000000000 ............ +4264 12.042443514 127.0.0.1:57433 127.0.0.1:57415 383248832 12 feffffff91750100a8750100 .....u...u.. +4275 12.111731052 127.0.0.1:57415 127.0.0.1:57433 3341052072 12 1a000000acda0c0000000000 ............ +4277 12.111943722 127.0.0.1:57415 127.0.0.1:57433 3341052084 26 16000000548f6340e25e3140010003000000ff1f220000000000 ....T.c@.^1@........"..... +4279 12.112359524 127.0.0.1:57433 127.0.0.1:57415 383248844 12 ffffffffacda0c0000000000 ............ +4281 12.112704515 127.0.0.1:57433 127.0.0.1:57415 383248856 12 16000000b3930c0000000000 ............ +4283 12.112851143 127.0.0.1:57433 127.0.0.1:57415 383248868 22 12000000ff1f22000000000001000300000000000000 ......"............... +4285 12.113226414 127.0.0.1:57415 127.0.0.1:57433 3341052110 12 ffffffffb3930c0000000000 ............ +4288 12.143342018 127.0.0.1:57415 127.0.0.1:57433 3341052122 12 feffffffa975010091750100 .....u...u.. +4295 12.215690613 127.0.0.1:57415 127.0.0.1:57433 3341052134 12 1a000000adda0c0000000000 ............ +4297 12.215977192 127.0.0.1:57415 127.0.0.1:57433 3341052146 26 16000000548f6340e25e31400100030000000120220000000000 ....T.c@.^1@....... "..... +4299 12.216355801 127.0.0.1:57433 127.0.0.1:57415 383248890 12 ffffffffadda0c0000000000 ............ +4301 12.217018604 127.0.0.1:57433 127.0.0.1:57415 383248902 12 16000000b4930c0000000000 ............ +4303 12.217223644 127.0.0.1:57433 127.0.0.1:57415 383248914 22 12000000012022000000000001000300000000000000 ..... "............... +4305 12.217494249 127.0.0.1:57415 127.0.0.1:57433 3341052172 12 ffffffffb4930c0000000000 ............ +4307 12.261153936 127.0.0.1:57415 127.0.0.1:57433 3341052184 12 65000000aeda0c0000000000 e........... +4309 12.261446476 127.0.0.1:57415 127.0.0.1:57433 3341052196 101 1e0000001c2118d0c46f33bb010003000000cc64020000000000e7c186c39d01 .....!...o3........d..............?.....3...|8.. +4311 12.262017012 127.0.0.1:57433 127.0.0.1:57415 383248936 12 ffffffffaeda0c0000000000 ............ +4313 12.263111115 127.0.0.1:57433 127.0.0.1:57415 383248948 12 34000000b5930c0000000000 4........... +4315 12.263293028 127.0.0.1:57433 127.0.0.1:57415 383248960 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........)... +4317 12.263616323 127.0.0.1:57415 127.0.0.1:57433 3341052297 12 ffffffffb5930c0000000000 ............ +4319 12.264531612 127.0.0.1:57415 127.0.0.1:57433 3341052309 12 1e000000afda0c0000000000 ............ +4321 12.264679432 127.0.0.1:57415 127.0.0.1:57433 3341052321 30 1a00000055ceff62b21b3a50010003000000032022000000000000000000 ....U..b..:P....... "......... +4323 12.265027761 127.0.0.1:57433 127.0.0.1:57415 383249012 12 ffffffffafda0c0000000000 ............ +4325 12.265505791 127.0.0.1:57433 127.0.0.1:57415 383249024 12 1a000000b6930c0000000000 ............ +4327 12.265652418 127.0.0.1:57433 127.0.0.1:57415 383249036 26 1600000003202200000000000100030000000000000000000000 ..... "................... +4329 12.265994549 127.0.0.1:57415 127.0.0.1:57433 3341052351 12 ffffffffb6930c0000000000 ............ +4331 12.318802118 127.0.0.1:57415 127.0.0.1:57433 3341052363 12 1a000000b0da0c0000000000 ............ +4333 12.319007158 127.0.0.1:57415 127.0.0.1:57433 3341052375 26 16000000548f6340e25e31400100030000000520220000000000 ....T.c@.^1@....... "..... +4335 12.319234610 127.0.0.1:57433 127.0.0.1:57415 383249062 12 ffffffffb0da0c0000000000 ............ +4337 12.319793701 127.0.0.1:57433 127.0.0.1:57415 383249074 12 16000000b7930c0000000000 ............ +4339 12.320023298 127.0.0.1:57433 127.0.0.1:57415 383249086 22 12000000052022000000000001000300000000000000 ..... "............... +4341 12.320274830 127.0.0.1:57415 127.0.0.1:57433 3341052401 12 ffffffffb7930c0000000000 ............ +4351 12.422595978 127.0.0.1:57415 127.0.0.1:57433 3341052413 12 1a000000b1da0c0000000000 ............ +4353 12.422775030 127.0.0.1:57415 127.0.0.1:57433 3341052425 26 16000000548f6340e25e31400100030000000720220000000000 ....T.c@.^1@....... "..... +4355 12.423077106 127.0.0.1:57433 127.0.0.1:57415 383249108 12 ffffffffb1da0c0000000000 ............ +4357 12.423643112 127.0.0.1:57433 127.0.0.1:57415 383249120 12 16000000b8930c0000000000 ............ +4359 12.423796892 127.0.0.1:57433 127.0.0.1:57415 383249132 22 12000000072022000000000001000300000000000000 ..... "............... +4361 12.424137592 127.0.0.1:57415 127.0.0.1:57433 3341052451 12 ffffffffb8930c0000000000 ............ +4369 12.525705576 127.0.0.1:57415 127.0.0.1:57433 3341052463 12 1a000000b2da0c0000000000 ............ +4371 12.525875568 127.0.0.1:57415 127.0.0.1:57433 3341052475 26 16000000548f6340e25e31400100030000000920220000000000 ....T.c@.^1@....... "..... +4373 12.526114464 127.0.0.1:57433 127.0.0.1:57415 383249154 12 ffffffffb2da0c0000000000 ............ +4375 12.526649237 127.0.0.1:57433 127.0.0.1:57415 383249166 12 16000000b9930c0000000000 ............ +4377 12.526878834 127.0.0.1:57433 127.0.0.1:57415 383249178 22 12000000092022000000000001000300000000000000 ..... "............... +4379 12.527108431 127.0.0.1:57415 127.0.0.1:57433 3341052501 12 ffffffffb9930c0000000000 ............ +4381 12.543136835 127.0.0.1:57433 127.0.0.1:57415 383249200 12 feffffff92750100a9750100 .....u...u.. +4383 12.566347361 127.0.0.1:57415 127.0.0.1:57433 3341052513 12 65000000b3da0c0000000000 e........... +4385 12.566500664 127.0.0.1:57415 127.0.0.1:57433 3341052525 101 1e0000001c2118d0c46f33bb010003000000cd6402000000000017c386c39d01 .....!...o3........d..............?.....3...|8.. +4387 12.566941500 127.0.0.1:57433 127.0.0.1:57415 383249212 12 ffffffffb3da0c0000000000 ............ +4389 12.568147659 127.0.0.1:57433 127.0.0.1:57415 383249224 12 34000000ba930c0000000000 4........... +4391 12.568322659 127.0.0.1:57433 127.0.0.1:57415 383249236 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........R.. +4393 12.568677902 127.0.0.1:57415 127.0.0.1:57433 3341052626 12 ffffffffba930c0000000000 ............ +4395 12.569368601 127.0.0.1:57415 127.0.0.1:57433 3341052638 12 1e000000b4da0c0000000000 ............ +4397 12.569495201 127.0.0.1:57415 127.0.0.1:57433 3341052650 30 1a00000055ceff62b21b3a500100030000000b2022000000000000000000 ....U..b..:P....... "......... +4399 12.569804430 127.0.0.1:57433 127.0.0.1:57415 383249288 12 ffffffffb4da0c0000000000 ............ +4401 12.570186377 127.0.0.1:57433 127.0.0.1:57415 383249300 12 1a000000bb930c0000000000 ............ +4403 12.570345402 127.0.0.1:57433 127.0.0.1:57415 383249312 26 160000000b202200000000000100030000000000000000000000 ..... "................... +4405 12.570731163 127.0.0.1:57415 127.0.0.1:57433 3341052680 12 ffffffffbb930c0000000000 ............ +4416 12.629787445 127.0.0.1:57415 127.0.0.1:57433 3341052692 12 1a000000b5da0c0000000000 ............ +4418 12.629965544 127.0.0.1:57415 127.0.0.1:57433 3341052704 26 16000000548f6340e25e31400100030000000d20220000000000 ....T.c@.^1@....... "..... +4420 12.630319357 127.0.0.1:57433 127.0.0.1:57415 383249338 12 ffffffffb5da0c0000000000 ............ +4422 12.630836964 127.0.0.1:57433 127.0.0.1:57415 383249350 12 16000000bc930c0000000000 ............ +4424 12.631016731 127.0.0.1:57433 127.0.0.1:57415 383249362 22 120000000d2022000000000001000300000000000000 ..... "............... +4426 12.631634712 127.0.0.1:57415 127.0.0.1:57433 3341052730 12 ffffffffbc930c0000000000 ............ +4432 12.645554543 127.0.0.1:57415 127.0.0.1:57433 3341052742 12 feffffffaa75010092750100 .....u...u.. +4436 12.732787132 127.0.0.1:57415 127.0.0.1:57433 3341052754 12 1a000000b6da0c0000000000 ............ +4438 12.732957125 127.0.0.1:57415 127.0.0.1:57433 3341052766 26 16000000548f6340e25e31400100030000000f20220000000000 ....T.c@.^1@....... "..... +4440 12.733252764 127.0.0.1:57433 127.0.0.1:57415 383249384 12 ffffffffb6da0c0000000000 ............ +4442 12.733849764 127.0.0.1:57433 127.0.0.1:57415 383249396 12 16000000bd930c0000000000 ............ +4444 12.733999014 127.0.0.1:57433 127.0.0.1:57415 383249408 22 120000000f2022000000000001000300000000000000 ..... "............... +4446 12.734352350 127.0.0.1:57415 127.0.0.1:57433 3341052792 12 ffffffffbd930c0000000000 ............ +4448 12.835900307 127.0.0.1:57415 127.0.0.1:57433 3341052804 12 1a000000b7da0c0000000000 ............ +4450 12.836208105 127.0.0.1:57415 127.0.0.1:57433 3341052816 26 16000000548f6340e25e31400100030000001120220000000000 ....T.c@.^1@....... "..... +4452 12.836613655 127.0.0.1:57433 127.0.0.1:57415 383249430 12 ffffffffb7da0c0000000000 ............ +4454 12.837046146 127.0.0.1:57433 127.0.0.1:57415 383249442 12 16000000be930c0000000000 ............ +4456 12.837353468 127.0.0.1:57433 127.0.0.1:57415 383249454 22 12000000112022000000000001000300000000000000 ..... "............... +4458 12.837757111 127.0.0.1:57415 127.0.0.1:57433 3341052842 12 ffffffffbe930c0000000000 ............ +4460 12.871746063 127.0.0.1:57415 127.0.0.1:57433 3341052854 12 22000000b8da0c0000000000 "........... +4462 12.872076750 127.0.0.1:57415 127.0.0.1:57433 3341052866 34 1e0000001c2118d0c46f33bb010003000000ce6402000000000049c486c39d01 .....!...o3........d......I....... +4464 12.872278690 127.0.0.1:57415 127.0.0.1:57433 3341052900 12 43000000b9da0c0000000000 C........... +4466 12.872471094 127.0.0.1:57415 127.0.0.1:57433 3341052912 67 3f000000980433cb0cb47c380100030000000100000000ce640200000000003d ?.....3...|8............d......=B.....&......... +4468 12.872801304 127.0.0.1:57433 127.0.0.1:57415 383249476 12 ffffffffb8da0c0000000000 ............ +4470 12.873028040 127.0.0.1:57433 127.0.0.1:57415 383249488 12 ffffffffb9da0c0000000000 ............ +4472 12.874625444 127.0.0.1:57433 127.0.0.1:57415 383249500 12 34000000bf930c0000000000 4........... +4474 12.874975443 127.0.0.1:57433 127.0.0.1:57415 383249512 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +4476 12.876294613 127.0.0.1:57415 127.0.0.1:57433 3341052979 12 ffffffffbf930c0000000000 ............ +4478 12.877434015 127.0.0.1:57415 127.0.0.1:57433 3341052991 12 1e000000bada0c0000000000 ............ +4480 12.877798319 127.0.0.1:57415 127.0.0.1:57433 3341053003 30 1a00000055ceff62b21b3a50010003000000132022000000000000000000 ....U..b..:P....... "......... +4482 12.878620148 127.0.0.1:57433 127.0.0.1:57415 383249564 12 ffffffffbada0c0000000000 ............ +4484 12.880079508 127.0.0.1:57433 127.0.0.1:57415 383249576 12 1a000000c0930c0000000000 ............ +4486 12.880383730 127.0.0.1:57433 127.0.0.1:57415 383249588 26 1600000013202200000000000100030000000000000000000000 ..... "................... +4488 12.881033421 127.0.0.1:57415 127.0.0.1:57433 3341053033 12 ffffffffc0930c0000000000 ............ +4490 12.939377308 127.0.0.1:57415 127.0.0.1:57433 3341053045 12 1a000000bbda0c0000000000 ............ +4492 12.939903021 127.0.0.1:57415 127.0.0.1:57433 3341053057 26 16000000548f6340e25e31400100030000001520220000000000 ....T.c@.^1@....... "..... +4494 12.940349102 127.0.0.1:57433 127.0.0.1:57415 383249614 12 ffffffffbbda0c0000000000 ............ +4496 12.941513777 127.0.0.1:57433 127.0.0.1:57415 383249626 12 16000000c1930c0000000000 ............ +4498 12.941790819 127.0.0.1:57433 127.0.0.1:57415 383249638 22 12000000152022000000000001000300000000000000 ..... "............... +4500 12.942138672 127.0.0.1:57415 127.0.0.1:57433 3341053083 12 ffffffffc1930c0000000000 ............ +4508 13.043969154 127.0.0.1:57433 127.0.0.1:57415 383249660 12 feffffff93750100aa750100 .....u...u.. +4510 13.045628309 127.0.0.1:57415 127.0.0.1:57433 3341053095 12 1a000000bcda0c0000000000 ............ +4512 13.045951843 127.0.0.1:57415 127.0.0.1:57433 3341053107 26 16000000548f6340e25e31400100030000001720220000000000 ....T.c@.^1@....... "..... +4514 13.046437979 127.0.0.1:57433 127.0.0.1:57415 383249672 12 ffffffffbcda0c0000000000 ............ +4516 13.047109127 127.0.0.1:57433 127.0.0.1:57415 383249684 12 16000000c2930c0000000000 ............ +4518 13.047415495 127.0.0.1:57433 127.0.0.1:57415 383249696 22 12000000172022000000000001000300000000000000 ..... "............... +4520 13.047828436 127.0.0.1:57415 127.0.0.1:57433 3341053133 12 ffffffffc2930c0000000000 ............ +4566 13.148337603 127.0.0.1:57415 127.0.0.1:57433 3341053145 12 feffffffab75010093750100 .....u...u.. +4568 13.149827003 127.0.0.1:57415 127.0.0.1:57433 3341053157 12 1a000000bdda0c0000000000 ............ +4570 13.149975061 127.0.0.1:57415 127.0.0.1:57433 3341053169 26 16000000548f6340e25e31400100030000001920220000000000 ....T.c@.^1@....... "..... +4572 13.150308132 127.0.0.1:57433 127.0.0.1:57415 383249718 12 ffffffffbdda0c0000000000 ............ +4574 13.150882483 127.0.0.1:57433 127.0.0.1:57415 383249730 12 16000000c3930c0000000000 ............ +4576 13.151034355 127.0.0.1:57433 127.0.0.1:57415 383249742 22 12000000192022000000000001000300000000000000 ..... "............... +4578 13.151353359 127.0.0.1:57415 127.0.0.1:57433 3341053195 12 ffffffffc3930c0000000000 ............ +4582 13.178581238 127.0.0.1:57415 127.0.0.1:57433 3341053207 12 65000000beda0c0000000000 e........... +4584 13.178738594 127.0.0.1:57415 127.0.0.1:57433 3341053219 101 1e0000001c2118d0c46f33bb010003000000cf640200000000007cc586c39d01 .....!...o3........d......|.......?.....3...|8.. +4586 13.179110289 127.0.0.1:57433 127.0.0.1:57415 383249764 12 ffffffffbeda0c0000000000 ............ +4588 13.180002928 127.0.0.1:57433 127.0.0.1:57415 383249776 12 34000000c4930c0000000000 4........... +4590 13.180186272 127.0.0.1:57433 127.0.0.1:57415 383249788 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +4592 13.180438995 127.0.0.1:57415 127.0.0.1:57433 3341053320 12 ffffffffc4930c0000000000 ............ +4594 13.181523323 127.0.0.1:57415 127.0.0.1:57433 3341053332 12 1e000000bfda0c0000000000 ............ +4596 13.181658745 127.0.0.1:57415 127.0.0.1:57433 3341053344 30 1a00000055ceff62b21b3a500100030000001b2022000000000000000000 ....U..b..:P....... "......... +4598 13.182054520 127.0.0.1:57433 127.0.0.1:57415 383249840 12 ffffffffbfda0c0000000000 ............ +4600 13.182306290 127.0.0.1:57433 127.0.0.1:57415 383249852 12 1a000000c5930c0000000000 ............ +4602 13.182439327 127.0.0.1:57433 127.0.0.1:57415 383249864 26 160000001b202200000000000100030000000000000000000000 ..... "................... +4604 13.182653904 127.0.0.1:57415 127.0.0.1:57433 3341053374 12 ffffffffc5930c0000000000 ............ +4606 13.252604246 127.0.0.1:57415 127.0.0.1:57433 3341053386 12 1a000000c0da0c0000000000 ............ +4608 13.252811432 127.0.0.1:57415 127.0.0.1:57433 3341053398 26 16000000548f6340e25e31400100030000001d20220000000000 ....T.c@.^1@....... "..... +4610 13.253114939 127.0.0.1:57433 127.0.0.1:57415 383249890 12 ffffffffc0da0c0000000000 ............ +4612 13.253654242 127.0.0.1:57433 127.0.0.1:57415 383249902 12 16000000c6930c0000000000 ............ +4614 13.253830671 127.0.0.1:57433 127.0.0.1:57415 383249914 22 120000001d2022000000000001000300000000000000 ..... "............... +4616 13.254140139 127.0.0.1:57415 127.0.0.1:57433 3341053424 12 ffffffffc6930c0000000000 ............ +4622 13.356492519 127.0.0.1:57415 127.0.0.1:57433 3341053436 12 1a000000c1da0c0000000000 ............ +4624 13.356686354 127.0.0.1:57415 127.0.0.1:57433 3341053448 26 16000000548f6340e25e31400100030000001f20220000000000 ....T.c@.^1@....... "..... +4626 13.357055187 127.0.0.1:57433 127.0.0.1:57415 383249936 12 ffffffffc1da0c0000000000 ............ +4628 13.357445002 127.0.0.1:57433 127.0.0.1:57415 383249948 12 16000000c7930c0000000000 ............ +4630 13.357588053 127.0.0.1:57433 127.0.0.1:57415 383249960 22 120000001f2022000000000001000300000000000000 ..... "............... +4632 13.357861519 127.0.0.1:57415 127.0.0.1:57433 3341053474 12 ffffffffc7930c0000000000 ............ +4636 13.459664345 127.0.0.1:57415 127.0.0.1:57433 3341053486 12 1a000000c2da0c0000000000 ............ +4638 13.459894180 127.0.0.1:57415 127.0.0.1:57433 3341053498 26 16000000548f6340e25e31400100030000002120220000000000 ....T.c@.^1@......! "..... +4640 13.460317373 127.0.0.1:57433 127.0.0.1:57415 383249982 12 ffffffffc2da0c0000000000 ............ +4642 13.460780859 127.0.0.1:57433 127.0.0.1:57415 383249994 12 16000000c8930c0000000000 ............ +4644 13.460995913 127.0.0.1:57433 127.0.0.1:57415 383250006 22 12000000212022000000000001000300000000000000 ....! "............... +4646 13.461382627 127.0.0.1:57415 127.0.0.1:57433 3341053524 12 ffffffffc8930c0000000000 ............ +4652 13.482854128 127.0.0.1:57415 127.0.0.1:57433 3341053536 12 22000000c3da0c0000000000 "........... +4654 13.483026505 127.0.0.1:57415 127.0.0.1:57433 3341053548 34 1e0000001c2118d0c46f33bb010003000000d064020000000000acc686c39d01 .....!...o3........d.............. +4656 13.483117819 127.0.0.1:57415 127.0.0.1:57433 3341053582 12 43000000c4da0c0000000000 C........... +4658 13.483197689 127.0.0.1:57415 127.0.0.1:57433 3341053594 67 3f000000980433cb0cb47c380100030000000100000000d0640200000000003d ?.....3...|8............d......=B.....&......... +4660 13.483438253 127.0.0.1:57433 127.0.0.1:57415 383250028 12 ffffffffc3da0c0000000000 ............ +4662 13.483667850 127.0.0.1:57433 127.0.0.1:57415 383250040 12 ffffffffc4da0c0000000000 ............ +4664 13.484672070 127.0.0.1:57433 127.0.0.1:57415 383250052 12 34000000c9930c0000000000 4........... +4666 13.484871626 127.0.0.1:57433 127.0.0.1:57415 383250064 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........(D. +4668 13.485179424 127.0.0.1:57415 127.0.0.1:57433 3341053661 12 ffffffffc9930c0000000000 ............ +4670 13.486125469 127.0.0.1:57415 127.0.0.1:57433 3341053673 12 1e000000c5da0c0000000000 ............ +4672 13.486260176 127.0.0.1:57415 127.0.0.1:57433 3341053685 30 1a00000055ceff62b21b3a50010003000000232022000000000000000000 ....U..b..:P......# "......... +4674 13.486673117 127.0.0.1:57433 127.0.0.1:57415 383250116 12 ffffffffc5da0c0000000000 ............ +4676 13.487613916 127.0.0.1:57433 127.0.0.1:57415 383250128 12 1a000000ca930c0000000000 ............ +4678 13.487766266 127.0.0.1:57433 127.0.0.1:57415 383250140 26 1600000023202200000000000100030000000000000000000000 ....# "................... +4680 13.488002062 127.0.0.1:57415 127.0.0.1:57433 3341053715 12 ffffffffca930c0000000000 ............ +4682 13.544923782 127.0.0.1:57433 127.0.0.1:57415 383250166 12 feffffff94750100ab750100 .....u...u.. +4684 13.563602924 127.0.0.1:57415 127.0.0.1:57433 3341053727 12 1a000000c6da0c0000000000 ............ +4686 13.563817024 127.0.0.1:57415 127.0.0.1:57433 3341053739 26 16000000548f6340e25e31400100030000002520220000000000 ....T.c@.^1@......% "..... +4688 13.564722538 127.0.0.1:57433 127.0.0.1:57415 383250178 12 ffffffffc6da0c0000000000 ............ +4690 13.565064907 127.0.0.1:57433 127.0.0.1:57415 383250190 12 16000000cb930c0000000000 ............ +4692 13.565234423 127.0.0.1:57433 127.0.0.1:57415 383250202 22 12000000252022000000000001000300000000000000 ....% "............... +4694 13.565552235 127.0.0.1:57415 127.0.0.1:57433 3341053765 12 ffffffffcb930c0000000000 ............ +4707 13.650230169 127.0.0.1:57415 127.0.0.1:57433 3341053777 12 feffffffac75010094750100 .....u...u.. +4715 13.667462349 127.0.0.1:57415 127.0.0.1:57433 3341053789 12 1a000000c7da0c0000000000 ............ +4717 13.667618752 127.0.0.1:57415 127.0.0.1:57433 3341053801 26 16000000548f6340e25e31400100030000002720220000000000 ....T.c@.^1@......' "..... +4719 13.668085814 127.0.0.1:57433 127.0.0.1:57415 383250224 12 ffffffffc7da0c0000000000 ............ +4721 13.668604374 127.0.0.1:57433 127.0.0.1:57415 383250236 12 16000000cc930c0000000000 ............ +4723 13.668751001 127.0.0.1:57433 127.0.0.1:57415 383250248 22 12000000272022000000000001000300000000000000 ....' "............... +4726 13.669122458 127.0.0.1:57415 127.0.0.1:57433 3341053827 12 ffffffffcc930c0000000000 ............ +4761 13.771494389 127.0.0.1:57415 127.0.0.1:57433 3341053839 12 1a000000c8da0c0000000000 ............ +4763 13.771715164 127.0.0.1:57415 127.0.0.1:57433 3341053851 26 16000000548f6340e25e31400100030000002920220000000000 ....T.c@.^1@......) "..... +4765 13.772099733 127.0.0.1:57433 127.0.0.1:57415 383250270 12 ffffffffc8da0c0000000000 ............ +4767 13.772735119 127.0.0.1:57433 127.0.0.1:57415 383250282 12 16000000cd930c0000000000 ............ +4769 13.772968769 127.0.0.1:57433 127.0.0.1:57415 383250294 22 12000000292022000000000001000300000000000000 ....) "............... +4771 13.773228407 127.0.0.1:57415 127.0.0.1:57433 3341053877 12 ffffffffcd930c0000000000 ............ +4773 13.789032936 127.0.0.1:57415 127.0.0.1:57433 3341053889 12 65000000c9da0c0000000000 e........... +4775 13.789240599 127.0.0.1:57415 127.0.0.1:57433 3341053901 101 1e0000001c2118d0c46f33bb010003000000d164020000000000dec786c39d01 .....!...o3........d..............?.....3...|8.. +4777 13.789599895 127.0.0.1:57433 127.0.0.1:57415 383250316 12 ffffffffc9da0c0000000000 ............ +4779 13.790838242 127.0.0.1:57433 127.0.0.1:57415 383250328 12 34000000ce930c0000000000 4........... +4781 13.791040897 127.0.0.1:57433 127.0.0.1:57415 383250340 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........G.r. +4783 13.791248798 127.0.0.1:57415 127.0.0.1:57433 3341054002 12 ffffffffce930c0000000000 ............ +4785 13.792128801 127.0.0.1:57415 127.0.0.1:57433 3341054014 12 1e000000cada0c0000000000 ............ +4787 13.792299032 127.0.0.1:57415 127.0.0.1:57433 3341054026 30 1a00000055ceff62b21b3a500100030000002b2022000000000000000000 ....U..b..:P......+ "......... +4789 13.792671919 127.0.0.1:57433 127.0.0.1:57415 383250392 12 ffffffffcada0c0000000000 ............ +4791 13.793336391 127.0.0.1:57433 127.0.0.1:57415 383250404 12 1a000000cf930c0000000000 ............ +4793 13.793655872 127.0.0.1:57433 127.0.0.1:57415 383250416 26 160000002b202200000000000100030000000000000000000000 ....+ "................... +4795 13.794068813 127.0.0.1:57415 127.0.0.1:57433 3341054056 12 ffffffffcf930c0000000000 ............ +4798 13.876168728 127.0.0.1:57415 127.0.0.1:57433 3341054068 12 1a000000cbda0c0000000000 ............ +4800 13.876355410 127.0.0.1:57415 127.0.0.1:57433 3341054080 26 16000000548f6340e25e31400100030000002d20220000000000 ....T.c@.^1@......- "..... +4802 13.876609087 127.0.0.1:57433 127.0.0.1:57415 383250442 12 ffffffffcbda0c0000000000 ............ +4804 13.877608061 127.0.0.1:57433 127.0.0.1:57415 383250454 12 16000000d0930c0000000000 ............ +4806 13.877859592 127.0.0.1:57433 127.0.0.1:57415 383250466 22 120000002d2022000000000001000300000000000000 ....- "............... +4808 13.878046513 127.0.0.1:57415 127.0.0.1:57433 3341054106 12 ffffffffd0930c0000000000 ............ +4813 13.981322289 127.0.0.1:57415 127.0.0.1:57433 3341054118 12 1a000000ccda0c0000000000 ............ +4817 13.981493235 127.0.0.1:57415 127.0.0.1:57433 3341054130 26 16000000548f6340e25e31400100030000002f20220000000000 ....T.c@.^1@....../ "..... +4821 13.981768131 127.0.0.1:57433 127.0.0.1:57415 383250488 12 ffffffffccda0c0000000000 ............ +4823 13.982332230 127.0.0.1:57433 127.0.0.1:57415 383250500 12 16000000d1930c0000000000 ............ +4825 13.982679129 127.0.0.1:57433 127.0.0.1:57415 383250512 22 120000002f2022000000000001000300000000000000 ..../ "............... +4827 13.983090639 127.0.0.1:57415 127.0.0.1:57433 3341054156 12 ffffffffd1930c0000000000 ............ +4829 14.045908213 127.0.0.1:57433 127.0.0.1:57415 383250534 12 feffffff95750100ac750100 .....u...u.. +4836 14.086022377 127.0.0.1:57415 127.0.0.1:57433 3341054168 12 1a000000cdda0c0000000000 ............ +4838 14.086216688 127.0.0.1:57415 127.0.0.1:57433 3341054180 26 16000000548f6340e25e31400100030000003120220000000000 ....T.c@.^1@......1 "..... +4840 14.086593390 127.0.0.1:57433 127.0.0.1:57415 383250546 12 ffffffffcdda0c0000000000 ............ +4842 14.087011814 127.0.0.1:57433 127.0.0.1:57415 383250558 12 16000000d2930c0000000000 ............ +4844 14.087159157 127.0.0.1:57433 127.0.0.1:57415 383250570 22 12000000312022000000000001000300000000000000 ....1 "............... +4846 14.087489128 127.0.0.1:57415 127.0.0.1:57433 3341054206 12 ffffffffd2930c0000000000 ............ +4848 14.095089912 127.0.0.1:57415 127.0.0.1:57433 3341054218 12 65000000ceda0c0000000000 e........... +4850 14.095243216 127.0.0.1:57415 127.0.0.1:57433 3341054230 101 1e0000001c2118d0c46f33bb010003000000d26402000000000010c986c39d01 .....!...o3........d..............?.....3...|8.. +4852 14.095597744 127.0.0.1:57433 127.0.0.1:57415 383250592 12 ffffffffceda0c0000000000 ............ +4854 14.096616268 127.0.0.1:57433 127.0.0.1:57415 383250604 12 34000000d3930c0000000000 4........... +4856 14.096761227 127.0.0.1:57433 127.0.0.1:57415 383250616 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +4858 14.097050905 127.0.0.1:57415 127.0.0.1:57433 3341054331 12 ffffffffd3930c0000000000 ............ +4860 14.098088264 127.0.0.1:57415 127.0.0.1:57433 3341054343 12 1e000000cfda0c0000000000 ............ +4862 14.098235607 127.0.0.1:57415 127.0.0.1:57433 3341054355 30 1a00000055ceff62b21b3a50010003000000332022000000000000000000 ....U..b..:P......3 "......... +4864 14.098742723 127.0.0.1:57433 127.0.0.1:57415 383250668 12 ffffffffcfda0c0000000000 ............ +4866 14.098969698 127.0.0.1:57433 127.0.0.1:57415 383250680 12 1a000000d4930c0000000000 ............ +4868 14.099117041 127.0.0.1:57433 127.0.0.1:57415 383250692 26 1600000033202200000000000100030000000000000000000000 ....3 "................... +4870 14.099468946 127.0.0.1:57415 127.0.0.1:57433 3341054385 12 ffffffffd4930c0000000000 ............ +4879 14.151622057 127.0.0.1:57415 127.0.0.1:57433 3341054397 12 feffffffad75010095750100 .....u...u.. +4885 14.190136671 127.0.0.1:57415 127.0.0.1:57433 3341054409 12 1a000000d0da0c0000000000 ............ +4887 14.190296412 127.0.0.1:57415 127.0.0.1:57433 3341054421 26 16000000548f6340e25e31400100030000003520220000000000 ....T.c@.^1@......5 "..... +4889 14.190593004 127.0.0.1:57433 127.0.0.1:57415 383250718 12 ffffffffd0da0c0000000000 ............ +4891 14.191099882 127.0.0.1:57433 127.0.0.1:57415 383250730 12 16000000d5930c0000000000 ............ +4893 14.191243172 127.0.0.1:57433 127.0.0.1:57415 383250742 22 12000000352022000000000001000300000000000000 ....5 "............... +4895 14.191604614 127.0.0.1:57415 127.0.0.1:57433 3341054447 12 ffffffffd5930c0000000000 ............ +4928 14.293652058 127.0.0.1:57415 127.0.0.1:57433 3341054459 12 1a000000d1da0c0000000000 ............ +4930 14.293830156 127.0.0.1:57415 127.0.0.1:57433 3341054471 26 16000000548f6340e25e31400100030000003720220000000000 ....T.c@.^1@......7 "..... +4932 14.294158936 127.0.0.1:57433 127.0.0.1:57415 383250764 12 ffffffffd1da0c0000000000 ............ +4934 14.294575930 127.0.0.1:57433 127.0.0.1:57415 383250776 12 16000000d6930c0000000000 ............ +4936 14.294894457 127.0.0.1:57433 127.0.0.1:57415 383250788 22 12000000372022000000000001000300000000000000 ....7 "............... +4938 14.295244932 127.0.0.1:57415 127.0.0.1:57433 3341054497 12 ffffffffd6930c0000000000 ............ +4941 14.397244215 127.0.0.1:57415 127.0.0.1:57433 3341054509 12 1a000000d2da0c0000000000 ............ +4943 14.397494316 127.0.0.1:57415 127.0.0.1:57433 3341054521 26 16000000548f6340e25e31400100030000003920220000000000 ....T.c@.^1@......9 "..... +4945 14.397901773 127.0.0.1:57433 127.0.0.1:57415 383250810 12 ffffffffd2da0c0000000000 ............ +4947 14.398287058 127.0.0.1:57433 127.0.0.1:57415 383250822 12 16000000d7930c0000000000 ............ +4949 14.398438215 127.0.0.1:57433 127.0.0.1:57415 383250834 22 12000000392022000000000001000300000000000000 ....9 "............... +4951 14.399058580 127.0.0.1:57415 127.0.0.1:57433 3341054547 12 ffffffffd7930c0000000000 ............ +4953 14.400310040 127.0.0.1:57415 127.0.0.1:57433 3341054559 12 22000000d3da0c0000000000 "........... +4955 14.400433064 127.0.0.1:57415 127.0.0.1:57433 3341054571 34 1e0000001c2118d0c46f33bb010003000000d36402000000000042ca86c39d01 .....!...o3........d......B....... +4957 14.400623798 127.0.0.1:57415 127.0.0.1:57433 3341054605 12 43000000d4da0c0000000000 C........... +4959 14.400780439 127.0.0.1:57415 127.0.0.1:57433 3341054617 67 3f000000980433cb0cb47c380100030000000100000000d3640200000000003d ?.....3...|8............d......=B.....&......... +4961 14.400928497 127.0.0.1:57433 127.0.0.1:57415 383250856 12 ffffffffd3da0c0000000000 ............ +4963 14.401096106 127.0.0.1:57433 127.0.0.1:57415 383250868 12 ffffffffd4da0c0000000000 ............ +4965 14.401995182 127.0.0.1:57433 127.0.0.1:57415 383250880 12 34000000d8930c0000000000 4........... +4967 14.402159214 127.0.0.1:57433 127.0.0.1:57415 383250892 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........#.. +4969 14.402439833 127.0.0.1:57415 127.0.0.1:57433 3341054684 12 ffffffffd8930c0000000000 ............ +4971 14.403277636 127.0.0.1:57415 127.0.0.1:57433 3341054696 12 1e000000d5da0c0000000000 ............ +4973 14.403441906 127.0.0.1:57415 127.0.0.1:57433 3341054708 30 1a00000055ceff62b21b3a500100030000003b2022000000000000000000 ....U..b..:P......; "......... +4975 14.403710365 127.0.0.1:57433 127.0.0.1:57415 383250944 12 ffffffffd5da0c0000000000 ............ +4977 14.404470205 127.0.0.1:57433 127.0.0.1:57415 383250956 12 1a000000d9930c0000000000 ............ +4979 14.404616117 127.0.0.1:57433 127.0.0.1:57415 383250968 26 160000003b202200000000000100030000000000000000000000 ....; "................... +4981 14.404970407 127.0.0.1:57415 127.0.0.1:57433 3341054738 12 ffffffffd9930c0000000000 ............ +4990 14.500971317 127.0.0.1:57415 127.0.0.1:57433 3341054750 12 1a000000d6da0c0000000000 ............ +4992 14.501150370 127.0.0.1:57415 127.0.0.1:57433 3341054762 26 16000000548f6340e25e31400100030000003d20220000000000 ....T.c@.^1@......= "..... +4994 14.501462698 127.0.0.1:57433 127.0.0.1:57415 383250994 12 ffffffffd6da0c0000000000 ............ +4996 14.502293110 127.0.0.1:57433 127.0.0.1:57415 383251006 12 16000000da930c0000000000 ............ +4998 14.502486706 127.0.0.1:57433 127.0.0.1:57415 383251018 22 120000003d2022000000000001000300000000000000 ....= "............... +5000 14.502987623 127.0.0.1:57415 127.0.0.1:57433 3341054788 12 ffffffffda930c0000000000 ............ +5002 14.547708035 127.0.0.1:57433 127.0.0.1:57415 383251040 12 feffffff96750100ad750100 .....u...u.. +5013 14.604084969 127.0.0.1:57415 127.0.0.1:57433 3341054800 12 1a000000d7da0c0000000000 ............ +5015 14.604251146 127.0.0.1:57415 127.0.0.1:57433 3341054812 26 16000000548f6340e25e31400100030000003f20220000000000 ....T.c@.^1@......? "..... +5017 14.604534388 127.0.0.1:57433 127.0.0.1:57415 383251052 12 ffffffffd7da0c0000000000 ............ +5020 14.604910374 127.0.0.1:57433 127.0.0.1:57415 383251064 12 16000000db930c0000000000 ............ +5023 14.605060816 127.0.0.1:57433 127.0.0.1:57415 383251076 22 120000003f2022000000000001000300000000000000 ....? "............... +5025 14.605311155 127.0.0.1:57415 127.0.0.1:57433 3341054838 12 ffffffffdb930c0000000000 ............ +5033 14.652820826 127.0.0.1:57415 127.0.0.1:57433 3341054850 12 feffffffae75010096750100 .....u...u.. +5037 14.705298185 127.0.0.1:57415 127.0.0.1:57433 3341054862 12 65000000d8da0c0000000000 e........... +5039 14.705567598 127.0.0.1:57415 127.0.0.1:57433 3341054874 101 1e0000001c2118d0c46f33bb010003000000d46402000000000072cb86c39d01 .....!...o3........d......r.......?.....3...|8.. +5041 14.706074715 127.0.0.1:57433 127.0.0.1:57415 383251098 12 ffffffffd8da0c0000000000 ............ +5043 14.707088709 127.0.0.1:57433 127.0.0.1:57415 383251110 12 34000000dc930c0000000000 4........... +5045 14.707227707 127.0.0.1:57433 127.0.0.1:57415 383251122 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +5047 14.707487106 127.0.0.1:57415 127.0.0.1:57433 3341054975 12 ffffffffdc930c0000000000 ............ +5049 14.707847357 127.0.0.1:57415 127.0.0.1:57433 3341054987 12 1a000000d9da0c0000000000 ............ +5051 14.708192587 127.0.0.1:57415 127.0.0.1:57433 3341054999 26 16000000548f6340e25e31400100030000004120220000000000 ....T.c@.^1@......A "..... +5053 14.708501339 127.0.0.1:57433 127.0.0.1:57415 383251174 12 ffffffffd9da0c0000000000 ............ +5055 14.708615780 127.0.0.1:57415 127.0.0.1:57433 3341055025 12 1e000000dada0c0000000000 ............ +5057 14.708755970 127.0.0.1:57415 127.0.0.1:57433 3341055037 30 1a00000055ceff62b21b3a50010003000000432022000000000000000000 ....U..b..:P......C "......... +5059 14.708943367 127.0.0.1:57433 127.0.0.1:57415 383251186 12 16000000dd930c0000000000 ............ +5061 14.709180593 127.0.0.1:57433 127.0.0.1:57415 383251198 22 12000000412022000000000001000300000000000000 ....A "............... +5063 14.709410906 127.0.0.1:57415 127.0.0.1:57433 3341055067 12 ffffffffdd930c0000000000 ............ +5064 14.709428072 127.0.0.1:57433 127.0.0.1:57415 383251220 12 ffffffffdada0c0000000000 ............ +5065 14.709536791 127.0.0.1:57433 127.0.0.1:57415 383251232 38 1a000000de930c00000000001600000043202200000000000100030000000000 ................C "................... +5067 14.709742308 127.0.0.1:57415 127.0.0.1:57433 3341055079 12 ffffffffde930c0000000000 ............ +5070 14.810945034 127.0.0.1:57415 127.0.0.1:57433 3341055091 12 1a000000dbda0c0000000000 ............ +5072 14.811191082 127.0.0.1:57415 127.0.0.1:57433 3341055103 26 16000000548f6340e25e31400100030000004520220000000000 ....T.c@.^1@......E "..... +5074 14.812499285 127.0.0.1:57433 127.0.0.1:57415 383251270 12 ffffffffdbda0c0000000000 ............ +5076 14.812906027 127.0.0.1:57433 127.0.0.1:57415 383251282 12 16000000df930c0000000000 ............ +5078 14.813168764 127.0.0.1:57433 127.0.0.1:57415 383251294 22 12000000452022000000000001000300000000000000 ....E "............... +5080 14.813463449 127.0.0.1:57415 127.0.0.1:57433 3341055129 12 ffffffffdf930c0000000000 ............ +5102 14.915623903 127.0.0.1:57415 127.0.0.1:57433 3341055141 12 1a000000dcda0c0000000000 ............ +5104 14.915792227 127.0.0.1:57415 127.0.0.1:57433 3341055153 26 16000000548f6340e25e31400100030000004720220000000000 ....T.c@.^1@......G "..... +5106 14.916150808 127.0.0.1:57433 127.0.0.1:57415 383251316 12 ffffffffdcda0c0000000000 ............ +5108 14.917178631 127.0.0.1:57433 127.0.0.1:57415 383251328 12 16000000e0930c0000000000 ............ +5110 14.917330742 127.0.0.1:57433 127.0.0.1:57415 383251340 22 12000000472022000000000001000300000000000000 ....G "............... +5112 14.917581081 127.0.0.1:57415 127.0.0.1:57433 3341055179 12 ffffffffe0930c0000000000 ............ +5121 15.011557817 127.0.0.1:57415 127.0.0.1:57433 3341055191 12 65000000ddda0c0000000000 e........... +5123 15.011732101 127.0.0.1:57415 127.0.0.1:57433 3341055203 101 1e0000001c2118d0c46f33bb010003000000d564020000000000a5cc86c39d01 .....!...o3........d..............?.....3...|8.. +5125 15.012149572 127.0.0.1:57433 127.0.0.1:57415 383251362 12 ffffffffddda0c0000000000 ............ +5127 15.012944460 127.0.0.1:57433 127.0.0.1:57415 383251374 12 34000000e1930c0000000000 4........... +5129 15.013106108 127.0.0.1:57433 127.0.0.1:57415 383251386 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........^-. +5131 15.013322353 127.0.0.1:57415 127.0.0.1:57433 3341055304 12 ffffffffe1930c0000000000 ............ +5133 15.014181137 127.0.0.1:57415 127.0.0.1:57433 3341055316 12 1e000000deda0c0000000000 ............ +5135 15.014342785 127.0.0.1:57415 127.0.0.1:57433 3341055328 30 1a00000055ceff62b21b3a50010003000000492022000000000000000000 ....U..b..:P......I "......... +5137 15.014643431 127.0.0.1:57433 127.0.0.1:57415 383251438 12 ffffffffdeda0c0000000000 ............ +5139 15.015017509 127.0.0.1:57433 127.0.0.1:57415 383251450 12 1a000000e2930c0000000000 ............ +5141 15.015208006 127.0.0.1:57433 127.0.0.1:57415 383251462 26 1600000049202200000000000100030000000000000000000000 ....I "................... +5143 15.015488386 127.0.0.1:57415 127.0.0.1:57433 3341055358 12 ffffffffe2930c0000000000 ............ +5145 15.018447638 127.0.0.1:57415 127.0.0.1:57433 3341055370 12 1a000000dfda0c0000000000 ............ +5147 15.018603802 127.0.0.1:57415 127.0.0.1:57433 3341055382 26 16000000548f6340e25e31400100030000004b20220000000000 ....T.c@.^1@......K "..... +5149 15.018859625 127.0.0.1:57433 127.0.0.1:57415 383251488 12 ffffffffdfda0c0000000000 ............ +5151 15.019348621 127.0.0.1:57433 127.0.0.1:57415 383251500 12 16000000e3930c0000000000 ............ +5153 15.019496441 127.0.0.1:57433 127.0.0.1:57415 383251512 22 120000004b2022000000000001000300000000000000 ....K "............... +5155 15.019651413 127.0.0.1:57415 127.0.0.1:57433 3341055408 12 ffffffffe3930c0000000000 ............ +5157 15.049317122 127.0.0.1:57433 127.0.0.1:57415 383251534 12 feffffff97750100ae750100 .....u...u.. +5185 15.120745897 127.0.0.1:57415 127.0.0.1:57433 3341055420 12 1a000000e0da0c0000000000 ............ +5187 15.120971918 127.0.0.1:57415 127.0.0.1:57433 3341055432 26 16000000548f6340e25e31400100030000004d20220000000000 ....T.c@.^1@......M "..... +5189 15.121300220 127.0.0.1:57433 127.0.0.1:57415 383251546 12 ffffffffe0da0c0000000000 ............ +5191 15.121865988 127.0.0.1:57433 127.0.0.1:57415 383251558 12 16000000e4930c0000000000 ............ +5193 15.122082710 127.0.0.1:57433 127.0.0.1:57415 383251570 22 120000004d2022000000000001000300000000000000 ....M "............... +5195 15.122339725 127.0.0.1:57415 127.0.0.1:57433 3341055458 12 ffffffffe4930c0000000000 ............ +5206 15.154680490 127.0.0.1:57415 127.0.0.1:57433 3341055470 12 feffffffaf75010097750100 .....u...u.. +5211 15.223602295 127.0.0.1:57415 127.0.0.1:57433 3341055482 12 1a000000e1da0c0000000000 ............ +5213 15.223786116 127.0.0.1:57415 127.0.0.1:57433 3341055494 26 16000000548f6340e25e31400100030000004f20220000000000 ....T.c@.^1@......O "..... +5215 15.224258900 127.0.0.1:57433 127.0.0.1:57415 383251592 12 ffffffffe1da0c0000000000 ............ +5217 15.224692106 127.0.0.1:57433 127.0.0.1:57415 383251604 12 16000000e5930c0000000000 ............ +5219 15.224933624 127.0.0.1:57433 127.0.0.1:57415 383251616 22 120000004f2022000000000001000300000000000000 ....O "............... +5221 15.225287199 127.0.0.1:57415 127.0.0.1:57433 3341055520 12 ffffffffe5930c0000000000 ............ +5223 15.316109419 127.0.0.1:57415 127.0.0.1:57433 3341055532 12 65000000e2da0c0000000000 e........... +5225 15.316280603 127.0.0.1:57415 127.0.0.1:57433 3341055544 101 1e0000001c2118d0c46f33bb010003000000d664020000000000d5cd86c39d01 .....!...o3........d..............?.....3...|8.. +5227 15.316563129 127.0.0.1:57433 127.0.0.1:57415 383251638 12 ffffffffe2da0c0000000000 ............ +5229 15.317525864 127.0.0.1:57433 127.0.0.1:57415 383251650 12 34000000e6930c0000000000 4........... +5231 15.317714453 127.0.0.1:57433 127.0.0.1:57415 383251662 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........[. +5233 15.318104506 127.0.0.1:57415 127.0.0.1:57433 3341055645 12 ffffffffe6930c0000000000 ............ +5235 15.319161892 127.0.0.1:57415 127.0.0.1:57433 3341055657 12 1e000000e3da0c0000000000 ............ +5237 15.319295406 127.0.0.1:57415 127.0.0.1:57433 3341055669 30 1a00000055ceff62b21b3a50010003000000512022000000000000000000 ....U..b..:P......Q "......... +5239 15.319611549 127.0.0.1:57433 127.0.0.1:57415 383251714 12 ffffffffe3da0c0000000000 ............ +5241 15.319995403 127.0.0.1:57433 127.0.0.1:57415 383251726 12 1a000000e7930c0000000000 ............ +5243 15.320243835 127.0.0.1:57433 127.0.0.1:57415 383251738 26 1600000051202200000000000100030000000000000000000000 ....Q "................... +5245 15.320531607 127.0.0.1:57415 127.0.0.1:57433 3341055699 12 ffffffffe7930c0000000000 ............ +5247 15.326496840 127.0.0.1:57415 127.0.0.1:57433 3341055711 12 1a000000e4da0c0000000000 ............ +5249 15.326654434 127.0.0.1:57415 127.0.0.1:57433 3341055723 26 16000000548f6340e25e31400100030000005320220000000000 ....T.c@.^1@......S "..... +5251 15.327062130 127.0.0.1:57433 127.0.0.1:57415 383251764 12 ffffffffe4da0c0000000000 ............ +5253 15.327559233 127.0.0.1:57433 127.0.0.1:57415 383251776 12 16000000e8930c0000000000 ............ +5255 15.327706099 127.0.0.1:57433 127.0.0.1:57415 383251788 22 12000000532022000000000001000300000000000000 ....S "............... +5257 15.328013420 127.0.0.1:57415 127.0.0.1:57433 3341055749 12 ffffffffe8930c0000000000 ............ +5259 15.429618835 127.0.0.1:57415 127.0.0.1:57433 3341055761 12 1a000000e5da0c0000000000 ............ +5261 15.429801702 127.0.0.1:57415 127.0.0.1:57433 3341055773 26 16000000548f6340e25e31400100030000005520220000000000 ....T.c@.^1@......U "..... +5263 15.430126905 127.0.0.1:57433 127.0.0.1:57415 383251810 12 ffffffffe5da0c0000000000 ............ +5265 15.430568933 127.0.0.1:57433 127.0.0.1:57415 383251822 12 16000000e9930c0000000000 ............ +5267 15.430743694 127.0.0.1:57433 127.0.0.1:57415 383251834 22 12000000552022000000000001000300000000000000 ....U "............... +5269 15.431103945 127.0.0.1:57415 127.0.0.1:57433 3341055799 12 ffffffffe9930c0000000000 ............ +5277 15.532572746 127.0.0.1:57415 127.0.0.1:57433 3341055811 12 1a000000e6da0c0000000000 ............ +5279 15.532716274 127.0.0.1:57415 127.0.0.1:57433 3341055823 26 16000000548f6340e25e31400100030000005720220000000000 ....T.c@.^1@......W "..... +5281 15.533102989 127.0.0.1:57433 127.0.0.1:57415 383251856 12 ffffffffe6da0c0000000000 ............ +5283 15.533513308 127.0.0.1:57433 127.0.0.1:57415 383251868 12 16000000ea930c0000000000 ............ +5285 15.533658266 127.0.0.1:57433 127.0.0.1:57415 383251880 22 12000000572022000000000001000300000000000000 ....W "............... +5287 15.534160376 127.0.0.1:57415 127.0.0.1:57433 3341055849 12 ffffffffea930c0000000000 ............ +5289 15.550420523 127.0.0.1:57433 127.0.0.1:57415 383251902 12 feffffff98750100af750100 .....u...u.. +5299 15.621855021 127.0.0.1:57415 127.0.0.1:57433 3341055861 12 65000000e7da0c0000000000 e........... +5301 15.622060537 127.0.0.1:57415 127.0.0.1:57433 3341055873 101 1e0000001c2118d0c46f33bb010003000000d76402000000000007cf86c39d01 .....!...o3........d..............?.....3...|8.. +5303 15.622423649 127.0.0.1:57433 127.0.0.1:57415 383251914 12 ffffffffe7da0c0000000000 ............ +5305 15.623418331 127.0.0.1:57433 127.0.0.1:57415 383251926 12 34000000eb930c0000000000 4........... +5307 15.623563051 127.0.0.1:57433 127.0.0.1:57415 383251938 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........f... +5309 15.623803854 127.0.0.1:57415 127.0.0.1:57433 3341055974 12 ffffffffeb930c0000000000 ............ +5311 15.624590158 127.0.0.1:57415 127.0.0.1:57433 3341055986 12 1e000000e8da0c0000000000 ............ +5313 15.624722481 127.0.0.1:57415 127.0.0.1:57433 3341055998 30 1a00000055ceff62b21b3a50010003000000592022000000000000000000 ....U..b..:P......Y "......... +5315 15.625521183 127.0.0.1:57433 127.0.0.1:57415 383251990 12 ffffffffe8da0c0000000000 ............ +5317 15.625806332 127.0.0.1:57433 127.0.0.1:57415 383252002 12 1a000000ec930c0000000000 ............ +5319 15.625975847 127.0.0.1:57433 127.0.0.1:57415 383252014 26 1600000059202200000000000100030000000000000000000000 ....Y "................... +5321 15.626159906 127.0.0.1:57415 127.0.0.1:57433 3341056028 12 ffffffffec930c0000000000 ............ +5323 15.635385036 127.0.0.1:57415 127.0.0.1:57433 3341056040 12 1a000000e9da0c0000000000 ............ +5325 15.635536432 127.0.0.1:57415 127.0.0.1:57433 3341056052 26 16000000548f6340e25e31400100030000005b20220000000000 ....T.c@.^1@......[ "..... +5327 15.635761023 127.0.0.1:57433 127.0.0.1:57415 383252040 12 ffffffffe9da0c0000000000 ............ +5329 15.636270285 127.0.0.1:57433 127.0.0.1:57415 383252052 12 16000000ed930c0000000000 ............ +5331 15.636414528 127.0.0.1:57433 127.0.0.1:57415 383252064 22 120000005b2022000000000001000300000000000000 ....[ "............... +5333 15.636660099 127.0.0.1:57415 127.0.0.1:57433 3341056078 12 ffffffffed930c0000000000 ............ +5338 15.655297756 127.0.0.1:57415 127.0.0.1:57433 3341056090 12 feffffffb075010098750100 .....u...u.. +5343 15.738725662 127.0.0.1:57415 127.0.0.1:57433 3341056102 12 1a000000eada0c0000000000 ............ +5345 15.738951206 127.0.0.1:57415 127.0.0.1:57433 3341056114 26 16000000548f6340e25e31400100030000005d20220000000000 ....T.c@.^1@......] "..... +5347 15.739502192 127.0.0.1:57433 127.0.0.1:57415 383252086 12 ffffffffeada0c0000000000 ............ +5349 15.740250587 127.0.0.1:57433 127.0.0.1:57415 383252098 12 16000000ee930c0000000000 ............ +5351 15.740437984 127.0.0.1:57433 127.0.0.1:57415 383252110 22 120000005d2022000000000001000300000000000000 ....] "............... +5353 15.740717649 127.0.0.1:57415 127.0.0.1:57433 3341056140 12 ffffffffee930c0000000000 ............ +5357 15.843653202 127.0.0.1:57415 127.0.0.1:57433 3341056152 12 1a000000ebda0c0000000000 ............ +5359 15.843955517 127.0.0.1:57415 127.0.0.1:57433 3341056164 26 16000000548f6340e25e31400100030000005f20220000000000 ....T.c@.^1@......_ "..... +5361 15.844305515 127.0.0.1:57433 127.0.0.1:57415 383252132 12 ffffffffebda0c0000000000 ............ +5363 15.844710112 127.0.0.1:57433 127.0.0.1:57415 383252144 12 16000000ef930c0000000000 ............ +5365 15.844856977 127.0.0.1:57433 127.0.0.1:57415 383252156 22 120000005f2022000000000001000300000000000000 ...._ "............... +5367 15.845108271 127.0.0.1:57415 127.0.0.1:57433 3341056190 12 ffffffffef930c0000000000 ............ +5369 15.925384521 127.0.0.1:57415 127.0.0.1:57433 3341056202 12 65000000ecda0c0000000000 e........... +5371 15.925555944 127.0.0.1:57415 127.0.0.1:57433 3341056214 101 1e0000001c2118d0c46f33bb010003000000d86402000000000037d086c39d01 .....!...o3........d......7.......?.....3...|8.. +5373 15.925985813 127.0.0.1:57433 127.0.0.1:57415 383252178 12 ffffffffecda0c0000000000 ............ +5375 15.926690340 127.0.0.1:57433 127.0.0.1:57415 383252190 12 34000000f0930c0000000000 4........... +5377 15.926848888 127.0.0.1:57433 127.0.0.1:57415 383252202 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........g... +5379 15.927039623 127.0.0.1:57415 127.0.0.1:57433 3341056315 12 fffffffff0930c0000000000 ............ +5381 15.927896261 127.0.0.1:57415 127.0.0.1:57433 3341056327 12 1e000000edda0c0000000000 ............ +5383 15.928064823 127.0.0.1:57415 127.0.0.1:57433 3341056339 30 1a00000055ceff62b21b3a50010003000000612022000000000000000000 ....U..b..:P......a "......... +5385 15.928334713 127.0.0.1:57433 127.0.0.1:57415 383252254 12 ffffffffedda0c0000000000 ............ +5387 15.928683519 127.0.0.1:57433 127.0.0.1:57415 383252266 12 1a000000f1930c0000000000 ............ +5389 15.928868532 127.0.0.1:57433 127.0.0.1:57415 383252278 26 1600000061202200000000000100030000000000000000000000 ....a "................... +5391 15.929038286 127.0.0.1:57415 127.0.0.1:57433 3341056369 12 fffffffff1930c0000000000 ............ +5393 15.946385384 127.0.0.1:57415 127.0.0.1:57433 3341056381 12 1a000000eeda0c0000000000 ............ +5395 15.946579933 127.0.0.1:57415 127.0.0.1:57433 3341056393 26 16000000548f6340e25e31400100030000006320220000000000 ....T.c@.^1@......c "..... +5397 15.946957111 127.0.0.1:57433 127.0.0.1:57415 383252304 12 ffffffffeeda0c0000000000 ............ +5399 15.947447062 127.0.0.1:57433 127.0.0.1:57415 383252316 12 16000000f2930c0000000000 ............ +5401 15.947600842 127.0.0.1:57433 127.0.0.1:57415 383252328 22 12000000632022000000000001000300000000000000 ....c "............... +5403 15.947972536 127.0.0.1:57415 127.0.0.1:57433 3341056419 12 fffffffff2930c0000000000 ............ +5411 16.049243212 127.0.0.1:57415 127.0.0.1:57433 3341056431 12 1a000000efda0c0000000000 ............ +5413 16.049416542 127.0.0.1:57415 127.0.0.1:57433 3341056443 26 16000000548f6340e25e31400100030000006520220000000000 ....T.c@.^1@......e "..... +5415 16.049734831 127.0.0.1:57433 127.0.0.1:57415 383252350 12 ffffffffefda0c0000000000 ............ +5417 16.050040960 127.0.0.1:57433 127.0.0.1:57415 383252362 12 16000000f3930c0000000000 ............ +5419 16.050184965 127.0.0.1:57433 127.0.0.1:57415 383252374 22 12000000652022000000000001000300000000000000 ....e "............... +5421 16.050400734 127.0.0.1:57415 127.0.0.1:57433 3341056469 12 fffffffff3930c0000000000 ............ +5423 16.051270962 127.0.0.1:57433 127.0.0.1:57415 383252396 12 feffffff99750100b0750100 .....u...u.. +5447 16.151791811 127.0.0.1:57415 127.0.0.1:57433 3341056481 12 1a000000f0da0c0000000000 ............ +5449 16.152069807 127.0.0.1:57415 127.0.0.1:57433 3341056493 26 16000000548f6340e25e31400100030000006720220000000000 ....T.c@.^1@......g "..... +5451 16.152405739 127.0.0.1:57433 127.0.0.1:57415 383252408 12 fffffffff0da0c0000000000 ............ +5453 16.153456450 127.0.0.1:57433 127.0.0.1:57415 383252420 12 16000000f4930c0000000000 ............ +5455 16.153624058 127.0.0.1:57433 127.0.0.1:57415 383252432 22 12000000672022000000000001000300000000000000 ....g "............... +5457 16.153862715 127.0.0.1:57415 127.0.0.1:57433 3341056519 12 fffffffff4930c0000000000 ............ +5462 16.157061815 127.0.0.1:57415 127.0.0.1:57433 3341056531 12 feffffffb175010099750100 .....u...u.. +5467 16.228791475 127.0.0.1:57415 127.0.0.1:57433 3341056543 12 65000000f1da0c0000000000 e........... +5469 16.229003191 127.0.0.1:57415 127.0.0.1:57433 3341056555 101 1e0000001c2118d0c46f33bb010003000000d96402000000000066d186c39d01 .....!...o3........d......f.......?.....3...|8.. +5471 16.229380131 127.0.0.1:57433 127.0.0.1:57415 383252454 12 fffffffff1da0c0000000000 ............ +5473 16.230206490 127.0.0.1:57433 127.0.0.1:57415 383252466 12 34000000f5930c0000000000 4........... +5475 16.230390787 127.0.0.1:57433 127.0.0.1:57415 383252478 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........4... +5477 16.230688334 127.0.0.1:57415 127.0.0.1:57433 3341056656 12 fffffffff5930c0000000000 ............ +5479 16.231554031 127.0.0.1:57415 127.0.0.1:57433 3341056668 12 1e000000f2da0c0000000000 ............ +5481 16.231722116 127.0.0.1:57415 127.0.0.1:57433 3341056680 30 1a00000055ceff62b21b3a50010003000000692022000000000000000000 ....U..b..:P......i "......... +5483 16.232006550 127.0.0.1:57433 127.0.0.1:57415 383252530 12 fffffffff2da0c0000000000 ............ +5485 16.232577324 127.0.0.1:57433 127.0.0.1:57415 383252542 12 1a000000f6930c0000000000 ............ +5487 16.232944250 127.0.0.1:57433 127.0.0.1:57415 383252554 26 1600000069202200000000000100030000000000000000000000 ....i "................... +5489 16.233192682 127.0.0.1:57415 127.0.0.1:57433 3341056710 12 fffffffff6930c0000000000 ............ +5492 16.256211758 127.0.0.1:57415 127.0.0.1:57433 3341056722 12 1a000000f3da0c0000000000 ............ +5494 16.256393194 127.0.0.1:57415 127.0.0.1:57433 3341056734 26 16000000548f6340e25e31400100030000006b20220000000000 ....T.c@.^1@......k "..... +5496 16.256721497 127.0.0.1:57433 127.0.0.1:57415 383252580 12 fffffffff3da0c0000000000 ............ +5498 16.257074118 127.0.0.1:57433 127.0.0.1:57415 383252592 12 16000000f7930c0000000000 ............ +5500 16.257207394 127.0.0.1:57433 127.0.0.1:57415 383252604 22 120000006b2022000000000001000300000000000000 ....k "............... +5502 16.257449627 127.0.0.1:57415 127.0.0.1:57433 3341056760 12 fffffffff7930c0000000000 ............ +5505 16.359288692 127.0.0.1:57415 127.0.0.1:57433 3341056772 12 1a000000f4da0c0000000000 ............ +5507 16.359452963 127.0.0.1:57415 127.0.0.1:57433 3341056784 26 16000000548f6340e25e31400100030000006d20220000000000 ....T.c@.^1@......m "..... +5509 16.359777212 127.0.0.1:57433 127.0.0.1:57415 383252626 12 fffffffff4da0c0000000000 ............ +5511 16.360175848 127.0.0.1:57433 127.0.0.1:57415 383252638 12 16000000f8930c0000000000 ............ +5513 16.360373020 127.0.0.1:57433 127.0.0.1:57415 383252650 22 120000006d2022000000000001000300000000000000 ....m "............... +5515 16.360736132 127.0.0.1:57415 127.0.0.1:57433 3341056810 12 fffffffff8930c0000000000 ............ +5520 16.461752176 127.0.0.1:57415 127.0.0.1:57433 3341056822 12 1a000000f5da0c0000000000 ............ +5522 16.461945772 127.0.0.1:57415 127.0.0.1:57433 3341056834 26 16000000548f6340e25e31400100030000006f20220000000000 ....T.c@.^1@......o "..... +5524 16.462335825 127.0.0.1:57433 127.0.0.1:57415 383252672 12 fffffffff5da0c0000000000 ............ +5526 16.462844133 127.0.0.1:57433 127.0.0.1:57415 383252684 12 16000000f9930c0000000000 ............ +5528 16.462993383 127.0.0.1:57433 127.0.0.1:57415 383252696 22 120000006f2022000000000001000300000000000000 ....o "............... +5530 16.463259697 127.0.0.1:57415 127.0.0.1:57433 3341056860 12 fffffffff9930c0000000000 ............ +5536 16.532626629 127.0.0.1:57415 127.0.0.1:57433 3341056872 12 22000000f6da0c0000000000 "........... +5538 16.532816172 127.0.0.1:57415 127.0.0.1:57433 3341056884 34 1e0000001c2118d0c46f33bb010003000000da6402000000000095d286c39d01 .....!...o3........d.............. +5540 16.532907009 127.0.0.1:57415 127.0.0.1:57433 3341056918 12 43000000f7da0c0000000000 C........... +5542 16.532986879 127.0.0.1:57415 127.0.0.1:57433 3341056930 67 3f000000980433cb0cb47c380100030000000100000000da640200000000003d ?.....3...|8............d......=B.....&......... +5543 16.533042192 127.0.0.1:57433 127.0.0.1:57415 383252718 12 fffffffff6da0c0000000000 ............ +5546 16.533240080 127.0.0.1:57433 127.0.0.1:57415 383252730 12 fffffffff7da0c0000000000 ............ +5548 16.534201622 127.0.0.1:57433 127.0.0.1:57415 383252742 12 34000000fa930c0000000000 4........... +5550 16.534367323 127.0.0.1:57433 127.0.0.1:57415 383252754 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........G~.. +5552 16.534685373 127.0.0.1:57415 127.0.0.1:57433 3341056997 12 fffffffffa930c0000000000 ............ +5553 16.535533190 127.0.0.1:57415 127.0.0.1:57433 3341057009 12 1e000000f8da0c0000000000 ............ +5555 16.535700321 127.0.0.1:57415 127.0.0.1:57433 3341057021 30 1a00000055ceff62b21b3a50010003000000712022000000000000000000 ....U..b..:P......q "......... +5557 16.535944700 127.0.0.1:57433 127.0.0.1:57415 383252806 12 fffffffff8da0c0000000000 ............ +5559 16.536307335 127.0.0.1:57433 127.0.0.1:57415 383252818 12 1a000000fb930c0000000000 ............ +5561 16.536478043 127.0.0.1:57433 127.0.0.1:57415 383252830 26 1600000071202200000000000100030000000000000000000000 ....q "................... +5563 16.536742449 127.0.0.1:57415 127.0.0.1:57433 3341057051 12 fffffffffb930c0000000000 ............ +5565 16.551418304 127.0.0.1:57433 127.0.0.1:57415 383252856 12 feffffff9a750100b1750100 .....u...u.. +5567 16.564221144 127.0.0.1:57415 127.0.0.1:57433 3341057063 12 1a000000f9da0c0000000000 ............ +5569 16.564372778 127.0.0.1:57415 127.0.0.1:57433 3341057075 26 16000000548f6340e25e31400100030000007320220000000000 ....T.c@.^1@......s "..... +5571 16.564597607 127.0.0.1:57433 127.0.0.1:57415 383252868 12 fffffffff9da0c0000000000 ............ +5573 16.565179110 127.0.0.1:57433 127.0.0.1:57415 383252880 12 16000000fc930c0000000000 ............ +5575 16.565319538 127.0.0.1:57433 127.0.0.1:57415 383252892 22 12000000732022000000000001000300000000000000 ....s "............... +5577 16.565541029 127.0.0.1:57415 127.0.0.1:57433 3341057101 12 fffffffffc930c0000000000 ............ +5591 16.658923864 127.0.0.1:57415 127.0.0.1:57433 3341057113 12 feffffffb27501009a750100 .....u...u.. +5594 16.668202400 127.0.0.1:57415 127.0.0.1:57433 3341057125 12 1a000000fada0c0000000000 ............ +5596 16.668363094 127.0.0.1:57415 127.0.0.1:57433 3341057137 26 16000000548f6340e25e31400100030000007520220000000000 ....T.c@.^1@......u "..... +5598 16.668732643 127.0.0.1:57433 127.0.0.1:57415 383252914 12 fffffffffada0c0000000000 ............ +5600 16.669257641 127.0.0.1:57433 127.0.0.1:57415 383252926 12 16000000fd930c0000000000 ............ +5602 16.669449091 127.0.0.1:57433 127.0.0.1:57415 383252938 22 12000000752022000000000001000300000000000000 ....u "............... +5604 16.669856071 127.0.0.1:57415 127.0.0.1:57433 3341057163 12 fffffffffd930c0000000000 ............ +5641 16.772659779 127.0.0.1:57415 127.0.0.1:57433 3341057175 12 1a000000fbda0c0000000000 ............ +5643 16.772840977 127.0.0.1:57415 127.0.0.1:57433 3341057187 26 16000000548f6340e25e31400100030000007720220000000000 ....T.c@.^1@......w "..... +5645 16.773183107 127.0.0.1:57433 127.0.0.1:57415 383252960 12 fffffffffbda0c0000000000 ............ +5647 16.773607016 127.0.0.1:57433 127.0.0.1:57415 383252972 12 16000000fe930c0000000000 ............ +5649 16.773790121 127.0.0.1:57433 127.0.0.1:57415 383252984 22 12000000772022000000000001000300000000000000 ....w "............... +5651 16.774076700 127.0.0.1:57415 127.0.0.1:57433 3341057213 12 fffffffffe930c0000000000 ............ +5663 16.836713552 127.0.0.1:57415 127.0.0.1:57433 3341057225 12 22000000fcda0c0000000000 "........... +5665 16.836913109 127.0.0.1:57415 127.0.0.1:57433 3341057237 34 1e0000001c2118d0c46f33bb010003000000db64020000000000c6d386c39d01 .....!...o3........d.............. +5667 16.837042809 127.0.0.1:57415 127.0.0.1:57433 3341057271 12 43000000fdda0c0000000000 C........... +5669 16.837124586 127.0.0.1:57415 127.0.0.1:57433 3341057283 67 3f000000980433cb0cb47c380100030000000100000000db640200000000003d ?.....3...|8............d......=B.....&......... +5671 16.837340832 127.0.0.1:57433 127.0.0.1:57415 383253006 12 fffffffffcda0c0000000000 ............ +5673 16.837557316 127.0.0.1:57433 127.0.0.1:57415 383253018 12 fffffffffdda0c0000000000 ............ +5677 16.839325666 127.0.0.1:57433 127.0.0.1:57415 383253030 12 34000000ff930c0000000000 4........... +5679 16.839517832 127.0.0.1:57433 127.0.0.1:57415 383253042 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........0.D. +5681 16.839861631 127.0.0.1:57415 127.0.0.1:57433 3341057350 12 ffffffffff930c0000000000 ............ +5683 16.840931416 127.0.0.1:57415 127.0.0.1:57433 3341057362 12 1e000000feda0c0000000000 ............ +5685 16.841080189 127.0.0.1:57415 127.0.0.1:57433 3341057374 30 1a00000055ceff62b21b3a50010003000000792022000000000000000000 ....U..b..:P......y "......... +5687 16.841426134 127.0.0.1:57433 127.0.0.1:57415 383253094 12 fffffffffeda0c0000000000 ............ +5689 16.842514992 127.0.0.1:57433 127.0.0.1:57415 383253106 12 1a00000000940c0000000000 ............ +5691 16.842756033 127.0.0.1:57433 127.0.0.1:57415 383253118 26 1600000079202200000000000100030000000000000000000000 ....y "................... +5693 16.843091488 127.0.0.1:57415 127.0.0.1:57433 3341057404 12 ffffffff00940c0000000000 ............ +5738 16.875862598 127.0.0.1:57415 127.0.0.1:57433 3341057416 12 1a000000ffda0c0000000000 ............ +5740 16.876118422 127.0.0.1:57415 127.0.0.1:57433 3341057428 26 16000000548f6340e25e31400100030000007b20220000000000 ....T.c@.^1@......{ "..... +5742 16.876518011 127.0.0.1:57433 127.0.0.1:57415 383253144 12 ffffffffffda0c0000000000 ............ +5744 16.877116680 127.0.0.1:57433 127.0.0.1:57415 383253156 12 1600000001940c0000000000 ............ +5746 16.877293110 127.0.0.1:57433 127.0.0.1:57415 383253168 22 120000007b2022000000000001000300000000000000 ....{ "............... +5748 16.877645016 127.0.0.1:57415 127.0.0.1:57433 3341057454 12 ffffffff01940c0000000000 ............ +5769 16.980291605 127.0.0.1:57415 127.0.0.1:57433 3341057466 12 1a00000000db0c0000000000 ............ +5771 16.980453730 127.0.0.1:57415 127.0.0.1:57433 3341057478 26 16000000548f6340e25e31400100030000007d20220000000000 ....T.c@.^1@......} "..... +5773 16.980749130 127.0.0.1:57433 127.0.0.1:57415 383253190 12 ffffffff00db0c0000000000 ............ +5775 16.981405497 127.0.0.1:57433 127.0.0.1:57415 383253202 12 1600000002940c0000000000 ............ +5777 16.981601954 127.0.0.1:57433 127.0.0.1:57415 383253214 22 120000007d2022000000000001000300000000000000 ....} "............... +5779 16.981950045 127.0.0.1:57415 127.0.0.1:57433 3341057504 12 ffffffff02940c0000000000 ............ +5786 17.051586866 127.0.0.1:57433 127.0.0.1:57415 383253236 12 feffffff9b750100b2750100 .....u...u.. +5792 17.083469391 127.0.0.1:57415 127.0.0.1:57433 3341057516 12 1a00000001db0c0000000000 ............ +5794 17.083671570 127.0.0.1:57415 127.0.0.1:57433 3341057528 26 16000000548f6340e25e31400100030000007f20220000000000 ....T.c@.^1@....... "..... +5796 17.084063768 127.0.0.1:57433 127.0.0.1:57415 383253248 12 ffffffff01db0c0000000000 ............ +5798 17.086417198 127.0.0.1:57433 127.0.0.1:57415 383253260 12 1600000003940c0000000000 ............ +5800 17.086568117 127.0.0.1:57433 127.0.0.1:57415 383253272 22 120000007f2022000000000001000300000000000000 ..... "............... +5802 17.086880445 127.0.0.1:57415 127.0.0.1:57433 3341057554 12 ffffffff03940c0000000000 ............ +5809 17.142909527 127.0.0.1:57415 127.0.0.1:57433 3341057566 12 2200000002db0c0000000000 "........... +5811 17.143181801 127.0.0.1:57415 127.0.0.1:57433 3341057578 34 1e0000001c2118d0c46f33bb010003000000dc64020000000000f8d486c39d01 .....!...o3........d.............. +5813 17.143342018 127.0.0.1:57415 127.0.0.1:57433 3341057612 12 4300000003db0c0000000000 C........... +5815 17.143462896 127.0.0.1:57415 127.0.0.1:57433 3341057624 67 3f000000980433cb0cb47c380100030000000100000000dc640200000000003d ?.....3...|8............d......=B.....&......... +5816 17.143561363 127.0.0.1:57433 127.0.0.1:57415 383253294 12 ffffffff02db0c0000000000 ............ +5819 17.143851519 127.0.0.1:57433 127.0.0.1:57415 383253306 12 ffffffff03db0c0000000000 ............ +5821 17.145502806 127.0.0.1:57433 127.0.0.1:57415 383253318 12 3400000004940c0000000000 4........... +5823 17.145698071 127.0.0.1:57433 127.0.0.1:57415 383253330 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d..........r. +5825 17.146115303 127.0.0.1:57415 127.0.0.1:57433 3341057691 12 ffffffff04940c0000000000 ............ +5826 17.147376537 127.0.0.1:57415 127.0.0.1:57433 3341057703 12 1e00000004db0c0000000000 ............ +5827 17.147510767 127.0.0.1:57415 127.0.0.1:57433 3341057715 30 1a00000055ceff62b21b3a50010003000000812022000000000000000000 ....U..b..:P....... "......... +5828 17.147768021 127.0.0.1:57433 127.0.0.1:57415 383253382 12 ffffffff04db0c0000000000 ............ +5830 17.148218155 127.0.0.1:57433 127.0.0.1:57415 383253394 12 1a00000005940c0000000000 ............ +5832 17.148416519 127.0.0.1:57433 127.0.0.1:57415 383253406 26 1600000081202200000000000100030000000000000000000000 ..... "................... +5834 17.148726463 127.0.0.1:57415 127.0.0.1:57433 3341057745 12 ffffffff05940c0000000000 ............ +5838 17.160789967 127.0.0.1:57415 127.0.0.1:57433 3341057757 12 feffffffb37501009b750100 .....u...u.. +5844 17.189044476 127.0.0.1:57415 127.0.0.1:57433 3341057769 12 1a00000005db0c0000000000 ............ +5846 17.189203024 127.0.0.1:57415 127.0.0.1:57433 3341057781 26 16000000548f6340e25e31400100030000008320220000000000 ....T.c@.^1@....... "..... +5848 17.189604759 127.0.0.1:57433 127.0.0.1:57415 383253432 12 ffffffff05db0c0000000000 ............ +5850 17.190042019 127.0.0.1:57433 127.0.0.1:57415 383253444 12 1600000006940c0000000000 ............ +5852 17.190204859 127.0.0.1:57433 127.0.0.1:57415 383253456 22 12000000832022000000000001000300000000000000 ..... "............... +5854 17.190565348 127.0.0.1:57415 127.0.0.1:57433 3341057807 12 ffffffff06940c0000000000 ............ +5857 17.293240070 127.0.0.1:57415 127.0.0.1:57433 3341057819 12 1a00000006db0c0000000000 ............ +5859 17.293466330 127.0.0.1:57415 127.0.0.1:57433 3341057831 26 16000000548f6340e25e31400100030000008520220000000000 ....T.c@.^1@....... "..... +5861 17.293864250 127.0.0.1:57433 127.0.0.1:57415 383253478 12 ffffffff06db0c0000000000 ............ +5863 17.294301271 127.0.0.1:57433 127.0.0.1:57415 383253490 12 1600000007940c0000000000 ............ +5865 17.294554234 127.0.0.1:57433 127.0.0.1:57415 383253502 22 12000000852022000000000001000300000000000000 ..... "............... +5867 17.294854403 127.0.0.1:57415 127.0.0.1:57433 3341057857 12 ffffffff07940c0000000000 ............ +5870 17.396657228 127.0.0.1:57415 127.0.0.1:57433 3341057869 12 1a00000007db0c0000000000 ............ +5872 17.396824598 127.0.0.1:57415 127.0.0.1:57433 3341057881 26 16000000548f6340e25e31400100030000008720220000000000 ....T.c@.^1@....... "..... +5874 17.397252560 127.0.0.1:57433 127.0.0.1:57415 383253524 12 ffffffff07db0c0000000000 ............ +5876 17.397599220 127.0.0.1:57433 127.0.0.1:57415 383253536 12 1600000008940c0000000000 ............ +5878 17.397771120 127.0.0.1:57433 127.0.0.1:57415 383253548 22 12000000872022000000000001000300000000000000 ..... "............... +5880 17.398152590 127.0.0.1:57415 127.0.0.1:57433 3341057907 12 ffffffff08940c0000000000 ............ +5882 17.448630810 127.0.0.1:57415 127.0.0.1:57433 3341057919 12 6500000008db0c0000000000 e........... +5884 17.448863745 127.0.0.1:57415 127.0.0.1:57433 3341057931 101 1e0000001c2118d0c46f33bb010003000000dd6402000000000029d686c39d01 .....!...o3........d......).......?.....3...|8.. +5886 17.449142694 127.0.0.1:57433 127.0.0.1:57415 383253570 12 ffffffff08db0c0000000000 ............ +5888 17.450050116 127.0.0.1:57433 127.0.0.1:57415 383253582 12 3400000009940c0000000000 4........... +5890 17.450211525 127.0.0.1:57433 127.0.0.1:57415 383253594 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........=.. +5892 17.450463057 127.0.0.1:57415 127.0.0.1:57433 3341058032 12 ffffffff09940c0000000000 ............ +5894 17.451258898 127.0.0.1:57415 127.0.0.1:57433 3341058044 12 1e00000009db0c0000000000 ............ +5896 17.451475620 127.0.0.1:57415 127.0.0.1:57433 3341058056 30 1a00000055ceff62b21b3a50010003000000892022000000000000000000 ....U..b..:P....... "......... +5898 17.452197552 127.0.0.1:57433 127.0.0.1:57415 383253646 12 ffffffff09db0c0000000000 ............ +5900 17.452510834 127.0.0.1:57433 127.0.0.1:57415 383253658 12 1a0000000a940c0000000000 ............ +5902 17.452647924 127.0.0.1:57433 127.0.0.1:57415 383253670 26 1600000089202200000000000100030000000000000000000000 ..... "................... +5904 17.452933311 127.0.0.1:57415 127.0.0.1:57433 3341058086 12 ffffffff0a940c0000000000 ............ +5912 17.499222279 127.0.0.1:57415 127.0.0.1:57433 3341058098 12 1a0000000adb0c0000000000 ............ +5914 17.499419212 127.0.0.1:57415 127.0.0.1:57433 3341058110 26 16000000548f6340e25e31400100030000008b20220000000000 ....T.c@.^1@....... "..... +5916 17.499870300 127.0.0.1:57433 127.0.0.1:57415 383253696 12 ffffffff0adb0c0000000000 ............ +5918 17.500787258 127.0.0.1:57433 127.0.0.1:57415 383253708 12 160000000b940c0000000000 ............ +5920 17.501222849 127.0.0.1:57433 127.0.0.1:57415 383253720 22 120000008b2022000000000001000300000000000000 ..... "............... +5922 17.501539230 127.0.0.1:57415 127.0.0.1:57433 3341058136 12 ffffffff0b940c0000000000 ............ +5924 17.553192616 127.0.0.1:57433 127.0.0.1:57415 383253742 12 feffffff9c750100b3750100 .....u...u.. +5930 17.603241444 127.0.0.1:57415 127.0.0.1:57433 3341058148 12 1a0000000bdb0c0000000000 ............ +5932 17.603454113 127.0.0.1:57415 127.0.0.1:57433 3341058160 26 16000000548f6340e25e31400100030000008d20220000000000 ....T.c@.^1@....... "..... +5934 17.603838682 127.0.0.1:57433 127.0.0.1:57415 383253754 12 ffffffff0bdb0c0000000000 ............ +5936 17.604289532 127.0.0.1:57433 127.0.0.1:57415 383253766 12 160000000c940c0000000000 ............ +5938 17.604435682 127.0.0.1:57433 127.0.0.1:57415 383253778 22 120000008d2022000000000001000300000000000000 ..... "............... +5940 17.604673386 127.0.0.1:57415 127.0.0.1:57433 3341058186 12 ffffffff0c940c0000000000 ............ +5948 17.661876202 127.0.0.1:57415 127.0.0.1:57433 3341058198 12 feffffffb47501009c750100 .....u...u.. +5954 17.706073523 127.0.0.1:57415 127.0.0.1:57433 3341058210 12 1a0000000cdb0c0000000000 ............ +5956 17.706293821 127.0.0.1:57415 127.0.0.1:57433 3341058222 26 16000000548f6340e25e31400100030000008f20220000000000 ....T.c@.^1@....... "..... +5958 17.706824541 127.0.0.1:57433 127.0.0.1:57415 383253800 12 ffffffff0cdb0c0000000000 ............ +5960 17.707085609 127.0.0.1:57433 127.0.0.1:57415 383253812 12 160000000d940c0000000000 ............ +5962 17.707232952 127.0.0.1:57433 127.0.0.1:57415 383253824 22 120000008f2022000000000001000300000000000000 ..... "............... +5964 17.707490683 127.0.0.1:57415 127.0.0.1:57433 3341058248 12 ffffffff0d940c0000000000 ............ +5966 17.753878832 127.0.0.1:57415 127.0.0.1:57433 3341058260 12 220000000ddb0c0000000000 "........... +5968 17.754044533 127.0.0.1:57415 127.0.0.1:57433 3341058272 34 1e0000001c2118d0c46f33bb010003000000de640200000000005bd786c39d01 .....!...o3........d......[....... +5970 17.754173517 127.0.0.1:57415 127.0.0.1:57433 3341058306 12 430000000edb0c0000000000 C........... +5972 17.754255533 127.0.0.1:57415 127.0.0.1:57433 3341058318 67 3f000000980433cb0cb47c380100030000000100000000de640200000000003d ?.....3...|8............d......=B.....&......... +5974 17.754388332 127.0.0.1:57433 127.0.0.1:57415 383253846 12 ffffffff0ddb0c0000000000 ............ +5976 17.754673958 127.0.0.1:57433 127.0.0.1:57415 383253858 12 ffffffff0edb0c0000000000 ............ +5978 17.755243301 127.0.0.1:57433 127.0.0.1:57415 383253870 12 340000000e940c0000000000 4........... +5980 17.755418301 127.0.0.1:57433 127.0.0.1:57415 383253882 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d............ +5982 17.755718708 127.0.0.1:57415 127.0.0.1:57433 3341058385 12 ffffffff0e940c0000000000 ............ +5984 17.756765127 127.0.0.1:57415 127.0.0.1:57433 3341058397 12 1e0000000fdb0c0000000000 ............ +5986 17.756907940 127.0.0.1:57415 127.0.0.1:57433 3341058409 30 1a00000055ceff62b21b3a50010003000000912022000000000000000000 ....U..b..:P....... "......... +5988 17.757236719 127.0.0.1:57433 127.0.0.1:57415 383253934 12 ffffffff0fdb0c0000000000 ............ +5990 17.757632732 127.0.0.1:57433 127.0.0.1:57415 383253946 12 1a0000000f940c0000000000 ............ +5992 17.757768154 127.0.0.1:57433 127.0.0.1:57415 383253958 26 1600000091202200000000000100030000000000000000000000 ..... "................... +5994 17.758008003 127.0.0.1:57415 127.0.0.1:57433 3341058439 12 ffffffff0f940c0000000000 ............ +5996 17.810086012 127.0.0.1:57415 127.0.0.1:57433 3341058451 12 1a00000010db0c0000000000 ............ +5998 17.810250998 127.0.0.1:57415 127.0.0.1:57433 3341058463 26 16000000548f6340e25e31400100030000009320220000000000 ....T.c@.^1@....... "..... +6000 17.810499430 127.0.0.1:57433 127.0.0.1:57415 383253984 12 ffffffff10db0c0000000000 ............ +6002 17.810994864 127.0.0.1:57433 127.0.0.1:57415 383253996 12 1600000010940c0000000000 ............ +6004 17.811128855 127.0.0.1:57433 127.0.0.1:57415 383254008 22 12000000932022000000000001000300000000000000 ..... "............... +6006 17.811397552 127.0.0.1:57415 127.0.0.1:57433 3341058489 12 ffffffff10940c0000000000 ............ +6009 17.914118767 127.0.0.1:57415 127.0.0.1:57433 3341058501 12 1a00000011db0c0000000000 ............ +6011 17.914296627 127.0.0.1:57415 127.0.0.1:57433 3341058513 26 16000000548f6340e25e31400100030000009520220000000000 ....T.c@.^1@....... "..... +6013 17.914597750 127.0.0.1:57433 127.0.0.1:57415 383254030 12 ffffffff11db0c0000000000 ............ +6015 17.915191174 127.0.0.1:57433 127.0.0.1:57415 383254042 12 1600000011940c0000000000 ............ +6017 17.915367603 127.0.0.1:57433 127.0.0.1:57415 383254054 22 12000000952022000000000001000300000000000000 ..... "............... +6019 17.915695906 127.0.0.1:57415 127.0.0.1:57433 3341058539 12 ffffffff11940c0000000000 ............ +6028 18.018134117 127.0.0.1:57415 127.0.0.1:57433 3341058551 12 1a00000012db0c0000000000 ............ +6030 18.018299818 127.0.0.1:57415 127.0.0.1:57433 3341058563 26 16000000548f6340e25e31400100030000009720220000000000 ....T.c@.^1@....... "..... +6032 18.018699408 127.0.0.1:57433 127.0.0.1:57415 383254076 12 ffffffff12db0c0000000000 ............ +6034 18.019120216 127.0.0.1:57433 127.0.0.1:57415 383254088 12 1600000012940c0000000000 ............ +6036 18.019273043 127.0.0.1:57433 127.0.0.1:57415 383254100 22 12000000972022000000000001000300000000000000 ..... "............... +6038 18.019696474 127.0.0.1:57415 127.0.0.1:57433 3341058589 12 ffffffff12940c0000000000 ............ +6041 18.053061962 127.0.0.1:57433 127.0.0.1:57415 383254122 12 feffffff9d750100b4750100 .....u...u.. +6043 18.059476614 127.0.0.1:57415 127.0.0.1:57433 3341058601 12 6500000013db0c0000000000 e........... +6045 18.059694767 127.0.0.1:57415 127.0.0.1:57433 3341058613 101 1e0000001c2118d0c46f33bb010003000000df640200000000008cd886c39d01 .....!...o3........d..............?.....3...|8.. +6047 18.060217142 127.0.0.1:57433 127.0.0.1:57415 383254134 12 ffffffff13db0c0000000000 ............ +6049 18.061096668 127.0.0.1:57433 127.0.0.1:57415 383254146 12 3400000013940c0000000000 4........... +6051 18.061250925 127.0.0.1:57433 127.0.0.1:57415 383254158 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d.........y.. +6053 18.061516523 127.0.0.1:57415 127.0.0.1:57433 3341058714 12 ffffffff13940c0000000000 ............ +6055 18.062319756 127.0.0.1:57415 127.0.0.1:57433 3341058726 12 1e00000014db0c0000000000 ............ +6057 18.062459469 127.0.0.1:57415 127.0.0.1:57433 3341058738 30 1a00000055ceff62b21b3a50010003000000992022000000000000000000 ....U..b..:P....... "......... +6059 18.062792301 127.0.0.1:57433 127.0.0.1:57415 383254210 12 ffffffff14db0c0000000000 ............ +6061 18.063094854 127.0.0.1:57433 127.0.0.1:57415 383254222 12 1a00000014940c0000000000 ............ +6063 18.063244104 127.0.0.1:57433 127.0.0.1:57415 383254234 26 1600000099202200000000000100030000000000000000000000 ..... "................... +6065 18.063586473 127.0.0.1:57415 127.0.0.1:57433 3341058768 12 ffffffff14940c0000000000 ............ +6079 18.120742083 127.0.0.1:57415 127.0.0.1:57433 3341058780 12 1a00000015db0c0000000000 ............ +6081 18.120902538 127.0.0.1:57415 127.0.0.1:57433 3341058792 26 16000000548f6340e25e31400100030000009b20220000000000 ....T.c@.^1@....... "..... +6083 18.121209621 127.0.0.1:57433 127.0.0.1:57415 383254260 12 ffffffff15db0c0000000000 ............ +6085 18.121729374 127.0.0.1:57433 127.0.0.1:57415 383254272 12 1600000015940c0000000000 ............ +6087 18.121881247 127.0.0.1:57433 127.0.0.1:57415 383254284 22 120000009b2022000000000001000300000000000000 ..... "............... +6089 18.122111082 127.0.0.1:57415 127.0.0.1:57433 3341058818 12 ffffffff15940c0000000000 ............ +6094 18.163236380 127.0.0.1:57415 127.0.0.1:57433 3341058830 12 feffffffb57501009d750100 .....u...u.. +6106 18.223375082 127.0.0.1:57415 127.0.0.1:57433 3341058842 12 1a00000016db0c0000000000 ............ +6108 18.223574400 127.0.0.1:57415 127.0.0.1:57433 3341058854 26 16000000548f6340e25e31400100030000009d20220000000000 ....T.c@.^1@....... "..... +6110 18.223904133 127.0.0.1:57433 127.0.0.1:57415 383254306 12 ffffffff16db0c0000000000 ............ +6112 18.224380255 127.0.0.1:57433 127.0.0.1:57415 383254318 12 1600000016940c0000000000 ............ +6114 18.224558592 127.0.0.1:57433 127.0.0.1:57415 383254330 22 120000009d2022000000000001000300000000000000 ..... "............... +6116 18.224744081 127.0.0.1:57415 127.0.0.1:57433 3341058880 12 ffffffff16940c0000000000 ............ +6119 18.327054739 127.0.0.1:57415 127.0.0.1:57433 3341058892 12 1a00000017db0c0000000000 ............ +6121 18.327395678 127.0.0.1:57415 127.0.0.1:57433 3341058904 26 16000000548f6340e25e31400100030000009f20220000000000 ....T.c@.^1@....... "..... +6123 18.327816486 127.0.0.1:57433 127.0.0.1:57415 383254352 12 ffffffff17db0c0000000000 ............ +6125 18.328721523 127.0.0.1:57433 127.0.0.1:57415 383254364 12 1600000017940c0000000000 ............ +6127 18.328949690 127.0.0.1:57433 127.0.0.1:57415 383254376 22 120000009f2022000000000001000300000000000000 ..... "............... +6129 18.329372406 127.0.0.1:57415 127.0.0.1:57433 3341058930 12 ffffffff17940c0000000000 ............ +6131 18.364861965 127.0.0.1:57415 127.0.0.1:57433 3341058942 12 6500000018db0c0000000000 e........... +6133 18.365037918 127.0.0.1:57415 127.0.0.1:57433 3341058954 101 1e0000001c2118d0c46f33bb010003000000e064020000000000bed986c39d01 .....!...o3........d..............?.....3...|8.. +6135 18.365419865 127.0.0.1:57433 127.0.0.1:57415 383254398 12 ffffffff18db0c0000000000 ............ +6138 18.368559599 127.0.0.1:57433 127.0.0.1:57415 383254410 12 3400000018940c0000000000 4........... +6140 18.368775368 127.0.0.1:57433 127.0.0.1:57415 383254422 52 30000000446b99d8ec1bbdb501000300000001000000ff4c9e22cf285b1b0a00 0...Dk.................L.".([......d........ub-. +6142 18.369065762 127.0.0.1:57415 127.0.0.1:57433 3341059055 12 ffffffff18940c0000000000 ............ +6144 18.370081186 127.0.0.1:57415 127.0.0.1:57433 3341059067 12 1e00000019db0c0000000000 ............ +6146 18.370214462 127.0.0.1:57415 127.0.0.1:57433 3341059079 30 1a00000055ceff62b21b3a50010003000000a12022000000000000000000 ....U..b..:P....... "......... +6148 18.370554209 127.0.0.1:57433 127.0.0.1:57415 383254474 12 ffffffff19db0c0000000000 ............ +6150 18.370962620 127.0.0.1:57433 127.0.0.1:57415 383254486 12 1a00000019940c0000000000 ............ +6152 18.371157646 127.0.0.1:57433 127.0.0.1:57415 383254498 26 16000000a1202200000000000100030000000000000000000000 ..... "................... +6154 18.371548653 127.0.0.1:57415 127.0.0.1:57433 3341059109 12 ffffffff19940c0000000000 ............ +6156 18.430941820 127.0.0.1:57415 127.0.0.1:57433 3341059121 12 1a0000001adb0c0000000000 ............ +6158 18.431069851 127.0.0.1:57415 127.0.0.1:57433 3341059133 26 16000000548f6340e25e3140010003000000a320220000000000 ....T.c@.^1@....... "..... +6160 18.431423187 127.0.0.1:57433 127.0.0.1:57415 383254524 12 ffffffff1adb0c0000000000 ............ +6162 18.431840420 127.0.0.1:57433 127.0.0.1:57415 383254536 12 160000001a940c0000000000 ............ +6164 18.431988716 127.0.0.1:57433 127.0.0.1:57415 383254548 22 12000000a32022000000000001000300000000000000 ..... "............... +6166 18.432318687 127.0.0.1:57415 127.0.0.1:57433 3341059159 12 ffffffff1a940c0000000000 ............ +6286 18.533750534 127.0.0.1:57415 127.0.0.1:57433 3341059171 12 1a0000001bdb0c0000000000 ............ +1204 0.000000000 ::1:57385 ::1:49704 1372382053 116 05000b03100000007400000002000000d016d016000000000200000000000100 ........t..........................N..dA.!...... +1206 0.000360489 ::1:49704 ::1:57385 600981678 84 05000c03100000005400000002000000d016d016d4b900000600343937303400 ........T.................49704..........]...... +1208 0.000534773 ::1:57385 ::1:49704 1372382169 40 0500008310000000280000000200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +1210 0.000640631 ::1:49704 ::1:57385 600981762 44 05000203100000002c00000002000000140000000000000000000000e596745a ........,.....................tZ...O......;n +1212 0.000811338 ::1:57385 ::1:49704 1372382209 72 05000e03100000004800000003000000d016d016d4b900000100000001000100 ........H.......................K....k.F.@.`..Q. +1214 0.000954390 ::1:49704 ::1:57385 600981806 56 05000f03100000003800000003000000d016d016d4b900000000000001000000 ........8............................].......... +1216 0.001074314 ::1:57385 ::1:49704 1372382281 96 0500008310000000600000000300000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K..........tZ +1218 0.002968073 ::1:49704 ::1:57385 600981862 28 05000203100000001c00000003000000040000000100000001000000 ............................ +1220 0.003094673 ::1:57385 ::1:49704 1372382377 60 05000083100000003c0000000400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K..........tZ +1222 0.003263235 ::1:49704 ::1:57385 600981890 92 05000203100000005c0000000400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +1224 0.003741980 ::1:57385 ::1:49704 1372382437 120 0500008310000000780000000500000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........tZ +1226 0.003908396 ::1:49704 ::1:57385 600981982 32 050002031000000020000000050000000800000001000000090b000001000000 ........ ....................... +1228 0.004063606 ::1:57385 ::1:49704 1372382557 124 05000083100000007c0000000600000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K..........tZ +1230 0.004212856 ::1:49704 ::1:57385 600982014 32 0500020310000000200000000600000008000000010000000a0b000001000000 ........ ....................... +1232 0.004356384 ::1:57385 ::1:49704 1372382681 118 050000831000000076000000070000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K..........tZ +1234 0.004675150 ::1:49704 ::1:57385 600982046 32 0500020310000000200000000700000008000000010000000b0b000001000000 ........ ....................... +1236 0.004832506 ::1:57385 ::1:49704 1372382799 120 0500008310000000780000000800000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K..........tZ +1238 0.004983425 ::1:49704 ::1:57385 600982078 32 0500020310000000200000000800000008000000010000000c0b000001000000 ........ ....................... +1240 0.005146265 ::1:57385 ::1:49704 1372382919 130 050000831000000082000000090000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........tZ +1242 0.005322933 ::1:49704 ::1:57385 600982110 32 0500020310000000200000000900000008000000010000000d0b000001000000 ........ ....................... +1244 0.005475998 ::1:57385 ::1:49704 1372383049 130 0500008310000000820000000a0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........tZ +1246 0.005617142 ::1:49704 ::1:57385 600982142 32 0500020310000000200000000a00000008000000010000000e0b000001000000 ........ ....................... +1248 0.005742788 ::1:57385 ::1:49704 1372383179 142 05000083100000008e0000000b00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K..........tZ +1250 0.005887985 ::1:49704 ::1:57385 600982174 32 0500020310000000200000000b00000008000000010000000f0b000001000000 ........ ....................... +1252 0.006011724 ::1:57385 ::1:49704 1372383321 116 0500008310000000740000000c0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K..........tZ +1254 0.006265879 ::1:49704 ::1:57385 600982206 32 0500020310000000200000000c0000000800000001000000100b000001000000 ........ ....................... +1256 0.006425142 ::1:57385 ::1:49704 1372383437 130 0500008310000000820000000d0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K..........tZ +1258 0.006666422 ::1:49704 ::1:57385 600982238 32 0500020310000000200000000d0000000800000001000000110b000001000000 ........ ....................... +1260 0.006801367 ::1:57385 ::1:49704 1372383567 128 0500008310000000800000000e00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K..........tZ +1262 0.006964684 ::1:49704 ::1:57385 600982270 32 0500020310000000200000000e0000000800000001000000120b000001000000 ........ ....................... +1264 0.007088900 ::1:57385 ::1:49704 1372383695 126 05000083100000007e0000000f00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K..........tZ +1266 0.007282495 ::1:49704 ::1:57385 600982302 32 0500020310000000200000000f0000000800000001000000130b000001000000 ........ ....................... +1268 0.007747412 ::1:57385 ::1:49704 1372383821 132 050000831000000084000000100000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K..........tZ +1270 0.007893562 ::1:49704 ::1:57385 600982334 32 050002031000000020000000100000000800000001000000140b000001000000 ........ ....................... +1273 0.008059978 ::1:57385 ::1:49704 1372383953 152 0500008310000000980000001100000070000000010003008c9e288562f29747 ................p.........(.b..G..>K..........tZ +1277 0.008204222 ::1:49704 ::1:57385 600982366 32 050002031000000020000000110000000800000001000000150b000001000000 ........ ....................... +1320 0.121408939 ::1:57385 ::1:49704 1372384105 40 0500008310000000280000001200000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +1322 0.121616602 ::1:49704 ::1:57385 600982398 44 05000203100000002c000000120000001400000000000000000000004c28561d ........,...................L(V.Z1.J...yj..E +1324 0.122092724 ::1:57385 ::1:49704 1372384145 108 05000083100000006c0000001300000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........L(V. +1326 0.123918533 ::1:49704 ::1:57385 600982442 28 05000203100000001c00000013000000040000000100000001000000 ............................ +1328 0.124184608 ::1:57385 ::1:49704 1372384253 60 05000083100000003c0000001400000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........L(V. +1330 0.124439716 ::1:49704 ::1:57385 600982470 92 05000203100000005c0000001400000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +1332 0.124793768 ::1:57385 ::1:49704 1372384313 132 050000831000000084000000150000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........L(V. +1334 0.125095129 ::1:49704 ::1:57385 600982562 32 050002031000000020000000150000000800000001000000600d000001000000 ........ ...............`....... +1336 0.125367165 ::1:57385 ::1:49704 1372384445 136 0500008310000000880000001600000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........L(V. +1338 0.125643015 ::1:49704 ::1:57385 600982594 32 050002031000000020000000160000000800000001000000610d000001000000 ........ ...............a....... +1340 0.125808716 ::1:57385 ::1:49704 1372384581 130 050000831000000082000000170000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........L(V. +1342 0.126018763 ::1:49704 ::1:57385 600982626 32 050002031000000020000000170000000800000001000000620d000001000000 ........ ...............b....... +1344 0.126246452 ::1:57385 ::1:49704 1372384711 132 050000831000000084000000180000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........L(V. +1346 0.126448631 ::1:49704 ::1:57385 600982658 32 050002031000000020000000180000000800000001000000630d000001000000 ........ ...............c....... +1348 0.126614571 ::1:57385 ::1:49704 1372384843 142 05000083100000008e0000001900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........L(V. +1350 0.126997709 ::1:49704 ::1:57385 600982690 32 050002031000000020000000190000000800000001000000640d000001000000 ........ ...............d....... +1352 0.127191782 ::1:57385 ::1:49704 1372384985 142 05000083100000008e0000001a00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........L(V. +1354 0.127557278 ::1:49704 ::1:57385 600982722 32 0500020310000000200000001a0000000800000001000000650d000001000000 ........ ...............e....... +1356 0.127789497 ::1:57385 ::1:49704 1372385127 154 05000083100000009a0000001b00000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........L(V. +1358 0.127959728 ::1:49704 ::1:57385 600982754 32 0500020310000000200000001b0000000800000001000000660d000001000000 ........ ...............f....... +1360 0.128119469 ::1:57385 ::1:49704 1372385281 128 0500008310000000800000001c00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........L(V. +1362 0.128277063 ::1:49704 ::1:57385 600982786 32 0500020310000000200000001c0000000800000001000000670d000001000000 ........ ...............g....... +1364 0.128452539 ::1:57385 ::1:49704 1372385409 142 05000083100000008e0000001d00000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........L(V. +1366 0.128602028 ::1:49704 ::1:57385 600982818 32 0500020310000000200000001d0000000800000001000000680d000001000000 ........ ...............h....... +1368 0.128732681 ::1:57385 ::1:49704 1372385551 140 05000083100000008c0000001e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........L(V. +1370 0.128895998 ::1:49704 ::1:57385 600982850 32 0500020310000000200000001e0000000800000001000000690d000001000000 ........ ...............i....... +1372 0.129034042 ::1:57385 ::1:49704 1372385691 138 05000083100000008a0000001f00000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........L(V. +1374 0.129173517 ::1:49704 ::1:57385 600982882 32 0500020310000000200000001f00000008000000010000006a0d000001000000 ........ ...............j....... +1380 0.148689270 ::1:57385 ::1:49704 1372385829 40 0500008310000000280000002000000000000000000000008c9e288562f29747 ........(... .............(.b..G..>K.... +1382 0.148890495 ::1:49704 ::1:57385 600982914 44 05000203100000002c000000200000001400000000000000000000009715cc7d ........,... ..................}...F.T ob..! +1384 0.149095774 ::1:57385 ::1:49704 1372385869 104 0500008310000000680000002100000040000000010000008c9e288562f29747 ........h...!...@.........(.b..G..>K...........} +1391 0.150752306 ::1:49704 ::1:57385 600982958 28 05000203100000001c00000021000000040000000100000001000000 ............!............... +1393 0.150965452 ::1:57385 ::1:49704 1372385973 60 05000083100000003c0000002200000014000000010002008c9e288562f29747 ........<...".............(.b..G..>K...........} +1395 0.151168346 ::1:49704 ::1:57385 600982986 92 05000203100000005c0000002200000044000000010000000000020018000000 ........\..."...D.......................G.l.o.b. +1397 0.151435852 ::1:57385 ::1:49704 1372386033 128 0500008310000000800000002300000058000000010003008c9e288562f29747 ............#...X.........(.b..G..>K...........} +1399 0.151850700 ::1:49704 ::1:57385 600983078 32 0500020310000000200000002300000008000000010000006301000001000000 ........ ...#...........c....... +1401 0.151998281 ::1:57385 ::1:49704 1372386161 132 050000831000000084000000240000005c000000010003008c9e288562f29747 ............$...\.........(.b..G..>K...........} +1403 0.152204275 ::1:49704 ::1:57385 600983110 32 0500020310000000200000002400000008000000010000006401000001000000 ........ ...$...........d....... +1405 0.152370214 ::1:57385 ::1:49704 1372386293 126 05000083100000007e0000002500000056000000010003008c9e288562f29747 ........~...%...V.........(.b..G..>K...........} +1407 0.152578831 ::1:49704 ::1:57385 600983142 32 0500020310000000200000002500000008000000010000006501000001000000 ........ ...%...........e....... +1409 0.152722836 ::1:57385 ::1:49704 1372386419 128 0500008310000000800000002600000058000000010003008c9e288562f29747 ............&...X.........(.b..G..>K...........} +1411 0.152918577 ::1:49704 ::1:57385 600983174 32 0500020310000000200000002600000008000000010000006601000001000000 ........ ...&...........f....... +1413 0.153068066 ::1:57385 ::1:49704 1372386547 138 05000083100000008a0000002700000062000000010003008c9e288562f29747 ............'...b.........(.b..G..>K...........} +1415 0.153303623 ::1:49704 ::1:57385 600983206 32 0500020310000000200000002700000008000000010000006701000001000000 ........ ...'...........g....... +1417 0.153609276 ::1:57385 ::1:49704 1372386685 138 05000083100000008a0000002800000062000000010003008c9e288562f29747 ............(...b.........(.b..G..>K...........} +1419 0.153907776 ::1:49704 ::1:57385 600983238 32 0500020310000000200000002800000008000000010000006801000001000000 ........ ...(...........h....... +1421 0.154067516 ::1:57385 ::1:49704 1372386823 150 050000831000000096000000290000006e000000010003008c9e288562f29747 ............)...n.........(.b..G..>K...........} +1423 0.154253483 ::1:49704 ::1:57385 600983270 32 0500020310000000200000002900000008000000010000006901000001000000 ........ ...)...........i....... +1425 0.154448271 ::1:57385 ::1:49704 1372386973 124 05000083100000007c0000002a00000054000000010003008c9e288562f29747 ........|...*...T.........(.b..G..>K...........} +1427 0.154660463 ::1:49704 ::1:57385 600983302 32 0500020310000000200000002a00000008000000010000006a01000001000000 ........ ...*...........j....... +1430 0.154808998 ::1:57385 ::1:49704 1372387097 138 05000083100000008a0000002b00000062000000010003008c9e288562f29747 ............+...b.........(.b..G..>K...........} +1433 0.155032396 ::1:49704 ::1:57385 600983334 32 0500020310000000200000002b00000008000000010000006b01000001000000 ........ ...+...........k....... +1435 0.155205011 ::1:57385 ::1:49704 1372387235 136 0500008310000000880000002c00000060000000010003008c9e288562f29747 ............,...`.........(.b..G..>K...........} +1437 0.155365467 ::1:49704 ::1:57385 600983366 32 0500020310000000200000002c00000008000000010000006c01000001000000 ........ ...,...........l....... +1439 0.155602455 ::1:57385 ::1:49704 1372387371 134 0500008310000000860000002d0000005e000000010003008c9e288562f29747 ............-...^.........(.b..G..>K...........} +1441 0.155756474 ::1:49704 ::1:57385 600983398 32 0500020310000000200000002d00000008000000010000006d01000001000000 ........ ...-...........m....... +1443 0.155939579 ::1:57385 ::1:49704 1372387505 140 05000083100000008c0000002e00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K...........} +1445 0.156135798 ::1:49704 ::1:57385 600983430 32 0500020310000000200000002e00000008000000010000006e01000001000000 ........ ...............n....... +1447 0.156292200 ::1:57385 ::1:49704 1372387645 146 0500008310000000920000002f0000006a000000010003008c9e288562f29747 ............/...j.........(.b..G..>K...........} +1449 0.156449795 ::1:49704 ::1:57385 600983462 32 0500020310000000200000002f00000008000000010000006f01000001000000 ........ .../...........o....... +1490 0.264244556 ::1:57385 ::1:49704 1372387791 40 0500008310000000280000003000000000000000000000008c9e288562f29747 ........(...0.............(.b..G..>K.... +1492 0.264557838 ::1:49704 ::1:57385 600983494 44 05000203100000002c00000030000000140000000000000000000000798a9b80 ........,...0...............y.....iC.i..\.\. +1494 0.264719963 ::1:57385 ::1:49704 1372387831 112 0500008310000000700000003100000048000000010000008c9e288562f29747 ........p...1...H.........(.b..G..>K........y... +1496 0.266307354 ::1:49704 ::1:57385 600983538 28 05000203100000001c00000031000000040000000100000001000000 ............1............... +1497 0.266500950 ::1:57385 ::1:49704 1372387943 60 05000083100000003c0000003200000014000000010002008c9e288562f29747 ........<...2.............(.b..G..>K........y... +1499 0.266886473 ::1:49704 ::1:57385 600983566 92 05000203100000005c0000003200000044000000010000000000020018000000 ........\...2...D.......................G.l.o.b. +1501 0.267136812 ::1:57385 ::1:49704 1372388003 136 0500008310000000880000003300000060000000010003008c9e288562f29747 ............3...`.........(.b..G..>K........y... +1503 0.267359495 ::1:49704 ::1:57385 600983658 32 0500020310000000200000003300000008000000010000007001000001000000 ........ ...3...........p....... +1505 0.267530918 ::1:57385 ::1:49704 1372388139 140 05000083100000008c0000003400000064000000010003008c9e288562f29747 ............4...d.........(.b..G..>K........y... +1507 0.267730236 ::1:49704 ::1:57385 600983690 32 0500020310000000200000003400000008000000010000007101000001000000 ........ ...4...........q....... +1509 0.267871618 ::1:57385 ::1:49704 1372388279 134 050000831000000086000000350000005e000000010003008c9e288562f29747 ............5...^.........(.b..G..>K........y... +1511 0.268077135 ::1:49704 ::1:57385 600983722 32 0500020310000000200000003500000008000000010000007201000001000000 ........ ...5...........r....... +1513 0.268211365 ::1:57385 ::1:49704 1372388413 136 0500008310000000880000003600000060000000010003008c9e288562f29747 ............6...`.........(.b..G..>K........y... +1515 0.268444300 ::1:49704 ::1:57385 600983754 32 0500020310000000200000003600000008000000010000007301000001000000 ........ ...6...........s....... +1517 0.268851280 ::1:57385 ::1:49704 1372388549 146 050000831000000092000000370000006a000000010003008c9e288562f29747 ............7...j.........(.b..G..>K........y... +1519 0.269039392 ::1:49704 ::1:57385 600983786 32 0500020310000000200000003700000008000000010000007401000001000000 ........ ...7...........t....... +1521 0.269180536 ::1:57385 ::1:49704 1372388695 146 050000831000000092000000380000006a000000010003008c9e288562f29747 ............8...j.........(.b..G..>K........y... +1523 0.269373417 ::1:49704 ::1:57385 600983818 32 0500020310000000200000003800000008000000010000007501000001000000 ........ ...8...........u....... +1525 0.269523382 ::1:57385 ::1:49704 1372388841 158 05000083100000009e0000003900000076000000010003008c9e288562f29747 ............9...v.........(.b..G..>K........y... +1527 0.269681215 ::1:49704 ::1:57385 600983850 32 0500020310000000200000003900000008000000010000007601000001000000 ........ ...9...........v....... +1529 0.269809246 ::1:57385 ::1:49704 1372388999 132 0500008310000000840000003a0000005c000000010003008c9e288562f29747 ............:...\.........(.b..G..>K........y... +1531 0.269961357 ::1:49704 ::1:57385 600983882 32 0500020310000000200000003a00000008000000010000007701000001000000 ........ ...:...........w....... +1533 0.270113945 ::1:57385 ::1:49704 1372389131 146 0500008310000000920000003b0000006a000000010003008c9e288562f29747 ............;...j.........(.b..G..>K........y... +1535 0.270298719 ::1:49704 ::1:57385 600983914 32 0500020310000000200000003b00000008000000010000007801000001000000 ........ ...;...........x....... +1537 0.270465851 ::1:57385 ::1:49704 1372389277 144 0500008310000000900000003c00000068000000010003008c9e288562f29747 ............<...h.........(.b..G..>K........y... +1539 0.270649910 ::1:49704 ::1:57385 600983946 32 0500020310000000200000003c00000008000000010000007901000001000000 ........ ...<...........y....... +1541 0.270775795 ::1:57385 ::1:49704 1372389421 142 05000083100000008e0000003d00000066000000010003008c9e288562f29747 ............=...f.........(.b..G..>K........y... +1543 0.270927191 ::1:49704 ::1:57385 600983978 32 0500020310000000200000003d00000008000000010000007a01000001000000 ........ ...=...........z....... +1545 0.271098137 ::1:57385 ::1:49704 1372389563 148 0500008310000000940000003e0000006c000000010003008c9e288562f29747 ............>...l.........(.b..G..>K........y... +1547 0.271247625 ::1:49704 ::1:57385 600984010 32 0500020310000000200000003e00000008000000010000007b01000001000000 ........ ...>...........{....... +1549 0.271471739 ::1:57385 ::1:49704 1372389711 154 05000083100000009a0000003f00000072000000010003008c9e288562f29747 ............?...r.........(.b..G..>K........y... +1551 0.271632433 ::1:49704 ::1:57385 600984042 32 0500020310000000200000003f00000008000000010000007c01000001000000 ........ ...?...........|....... +1599 0.402451992 ::1:57385 ::1:49704 1372389865 40 0500008310000000280000004000000000000000000000008c9e288562f29747 ........(...@.............(.b..G..>K.... +1604 0.402681589 ::1:49704 ::1:57385 600984074 44 05000203100000002c000000400000001400000000000000000000000a1574a5 ........,...@.................t..=.L...Lt.f. +1606 0.402855158 ::1:57385 ::1:49704 1372389905 92 05000083100000005c0000004100000034000000010000008c9e288562f29747 ........\...A...4.........(.b..G..>K..........t. +1616 0.404585123 ::1:49704 ::1:57385 600984118 28 05000203100000001c00000041000000040000000100000001000000 ............A............... +1618 0.404728413 ::1:57385 ::1:49704 1372389997 60 05000083100000003c0000004200000014000000010002008c9e288562f29747 ........<...B.............(.b..G..>K..........t. +1620 0.404898405 ::1:49704 ::1:57385 600984146 92 05000203100000005c0000004200000044000000010000000000020018000000 ........\...B...D.......................G.l.o.b. +1622 0.405159235 ::1:57385 ::1:49704 1372390057 116 050000831000000074000000430000004c000000010003008c9e288562f29747 ........t...C...L.........(.b..G..>K..........t. +1624 0.405441284 ::1:49704 ::1:57385 600984238 32 0500020310000000200000004300000008000000010000007d01000001000000 ........ ...C...........}....... +1626 0.405584335 ::1:57385 ::1:49704 1372390173 120 0500008310000000780000004400000050000000010003008c9e288562f29747 ........x...D...P.........(.b..G..>K..........t. +1628 0.405793190 ::1:49704 ::1:57385 600984270 32 0500020310000000200000004400000008000000010000007e01000001000000 ........ ...D...........~....... +1630 0.405945063 ::1:57385 ::1:49704 1372390293 114 050000831000000072000000450000004a000000010003008c9e288562f29747 ........r...E...J.........(.b..G..>K..........t. +1632 0.406101227 ::1:49704 ::1:57385 600984302 32 0500020310000000200000004500000008000000010000007f01000001000000 ........ ...E................... +1634 0.406229973 ::1:57385 ::1:49704 1372390407 116 050000831000000074000000460000004c000000010003008c9e288562f29747 ........t...F...L.........(.b..G..>K..........t. +1636 0.406380892 ::1:49704 ::1:57385 600984334 32 0500020310000000200000004600000008000000010000008001000001000000 ........ ...F................... +1638 0.406525373 ::1:57385 ::1:49704 1372390523 126 05000083100000007e0000004700000056000000010003008c9e288562f29747 ........~...G...V.........(.b..G..>K..........t. +1640 0.406732798 ::1:49704 ::1:57385 600984366 32 0500020310000000200000004700000008000000010000008101000001000000 ........ ...G................... +1642 0.406873703 ::1:57385 ::1:49704 1372390649 126 05000083100000007e0000004800000056000000010003008c9e288562f29747 ........~...H...V.........(.b..G..>K..........t. +1644 0.407072544 ::1:49704 ::1:57385 600984398 32 0500020310000000200000004800000008000000010000008201000001000000 ........ ...H................... +1646 0.407202005 ::1:57385 ::1:49704 1372390775 138 05000083100000008a0000004900000062000000010003008c9e288562f29747 ............I...b.........(.b..G..>K..........t. +1648 0.407359362 ::1:49704 ::1:57385 600984430 32 0500020310000000200000004900000008000000010000008301000001000000 ........ ...I................... +1650 0.407499075 ::1:57385 ::1:49704 1372390913 112 0500008310000000700000004a00000048000000010003008c9e288562f29747 ........p...J...H.........(.b..G..>K..........t. +1652 0.407781124 ::1:49704 ::1:57385 600984462 32 0500020310000000200000004a00000008000000010000008401000001000000 ........ ...J................... +1654 0.407934904 ::1:57385 ::1:49704 1372391025 126 05000083100000007e0000004b00000056000000010003008c9e288562f29747 ........~...K...V.........(.b..G..>K..........t. +1656 0.408097744 ::1:49704 ::1:57385 600984494 32 0500020310000000200000004b00000008000000010000008501000001000000 ........ ...K................... +1658 0.408226013 ::1:57385 ::1:49704 1372391151 124 05000083100000007c0000004c00000054000000010003008c9e288562f29747 ........|...L...T.........(.b..G..>K..........t. +1660 0.408431530 ::1:49704 ::1:57385 600984526 32 0500020310000000200000004c00000008000000010000008601000001000000 ........ ...L................... +1662 0.408572197 ::1:57385 ::1:49704 1372391275 122 05000083100000007a0000004d00000052000000010003008c9e288562f29747 ........z...M...R.........(.b..G..>K..........t. +1664 0.408720970 ::1:49704 ::1:57385 600984558 32 0500020310000000200000004d00000008000000010000008701000001000000 ........ ...M................... +1666 0.408959627 ::1:57385 ::1:49704 1372391397 128 0500008310000000800000004e00000058000000010003008c9e288562f29747 ............N...X.........(.b..G..>K..........t. +1668 0.409116983 ::1:49704 ::1:57385 600984590 32 0500020310000000200000004e00000008000000010000008801000001000000 ........ ...N................... +1670 0.409256935 ::1:57385 ::1:49704 1372391525 134 0500008310000000860000004f0000005e000000010003008c9e288562f29747 ............O...^.........(.b..G..>K..........t. +1672 0.409406662 ::1:49704 ::1:57385 600984622 32 0500020310000000200000004f00000008000000010000008901000001000000 ........ ...O................... +1674 0.409537792 ::1:57385 ::1:49704 1372391659 130 050000831000000082000000500000005a000000010003008c9e288562f29747 ............P...Z.........(.b..G..>K..........t. +1676 0.409687757 ::1:49704 ::1:57385 600984654 32 0500020310000000200000005000000008000000010000008a01000001000000 ........ ...P................... +1678 0.409818888 ::1:57385 ::1:49704 1372391789 128 0500008310000000800000005100000058000000010003008c9e288562f29747 ............Q...X.........(.b..G..>K..........t. +1680 0.409971476 ::1:49704 ::1:57385 600984686 32 0500020310000000200000005100000008000000010000008b01000001000000 ........ ...Q................... +3534 7.063156128 ::1:57385 ::1:49704 1372391917 40 0500008310000000280000005200000000000000000000008c9e288562f29747 ........(...R.............(.b..G..>K.... +3536 7.063388824 ::1:49704 ::1:57385 600984718 44 05000203100000002c000000520000001400000000000000000000007c4e4045 ........,...R...............|N@E.(oF.W...8.. +3538 7.063544273 ::1:57385 ::1:49704 1372391957 100 050000831000000064000000530000003c000000010000008c9e288562f29747 ........d...S...<.........(.b..G..>K........|N@E +3540 7.065175056 ::1:49704 ::1:57385 600984762 28 05000203100000001c00000053000000040000000100000001000000 ............S............... +3542 7.065360069 ::1:57385 ::1:49704 1372392057 60 05000083100000003c0000005400000014000000010002008c9e288562f29747 ........<...T.............(.b..G..>K........|N@E +3544 7.065519571 ::1:49704 ::1:57385 600984790 92 05000203100000005c0000005400000044000000010000000000020018000000 ........\...T...D.......................G.l.o.b. +3546 7.065730333 ::1:57385 ::1:49704 1372392117 124 05000083100000007c0000005500000054000000010003008c9e288562f29747 ........|...U...T.........(.b..G..>K........|N@E +3548 7.065923214 ::1:49704 ::1:57385 600984882 32 0500020310000000200000005500000008000000010000003005000001000000 ........ ...U...........0....... +3550 7.066057205 ::1:57385 ::1:49704 1372392241 128 0500008310000000800000005600000058000000010003008c9e288562f29747 ............V...X.........(.b..G..>K........|N@E +3552 7.066215277 ::1:49704 ::1:57385 600984914 32 0500020310000000200000005600000008000000010000003105000001000000 ........ ...V...........1....... +3554 7.066373825 ::1:57385 ::1:49704 1372392369 122 05000083100000007a0000005700000052000000010003008c9e288562f29747 ........z...W...R.........(.b..G..>K........|N@E +3556 7.066524506 ::1:49704 ::1:57385 600984946 32 0500020310000000200000005700000008000000010000003205000001000000 ........ ...W...........2....... +3558 7.066653013 ::1:57385 ::1:49704 1372392491 124 05000083100000007c0000005800000054000000010003008c9e288562f29747 ........|...X...T.........(.b..G..>K........|N@E +3560 7.066809177 ::1:49704 ::1:57385 600984978 32 0500020310000000200000005800000008000000010000003305000001000000 ........ ...X...........3....... +3562 7.066951036 ::1:57385 ::1:49704 1372392615 134 050000831000000086000000590000005e000000010003008c9e288562f29747 ............Y...^.........(.b..G..>K........|N@E +3564 7.067117214 ::1:49704 ::1:57385 600985010 32 0500020310000000200000005900000008000000010000003405000001000000 ........ ...Y...........4....... +3566 7.067246199 ::1:57385 ::1:49704 1372392749 134 0500008310000000860000005a0000005e000000010003008c9e288562f29747 ............Z...^.........(.b..G..>K........|N@E +3568 7.067398071 ::1:49704 ::1:57385 600985042 32 0500020310000000200000005a00000008000000010000003505000001000000 ........ ...Z...........5....... +3570 7.067517042 ::1:57385 ::1:49704 1372392883 146 0500008310000000920000005b0000006a000000010003008c9e288562f29747 ............[...j.........(.b..G..>K........|N@E +3572 7.067669630 ::1:49704 ::1:57385 600985074 32 0500020310000000200000005b00000008000000010000003605000001000000 ........ ...[...........6....... +3574 7.067797184 ::1:57385 ::1:49704 1372393029 120 0500008310000000780000005c00000050000000010003008c9e288562f29747 ........x...\...P.........(.b..G..>K........|N@E +3576 7.067974329 ::1:49704 ::1:57385 600985106 32 0500020310000000200000005c00000008000000010000003705000001000000 ........ ...\...........7....... +3578 7.068145275 ::1:57385 ::1:49704 1372393149 134 0500008310000000860000005d0000005e000000010003008c9e288562f29747 ............]...^.........(.b..G..>K........|N@E +3580 7.068353415 ::1:49704 ::1:57385 600985138 32 0500020310000000200000005d00000008000000010000003805000001000000 ........ ...]...........8....... +3582 7.068507433 ::1:57385 ::1:49704 1372393283 132 0500008310000000840000005e0000005c000000010003008c9e288562f29747 ............^...\.........(.b..G..>K........|N@E +3584 7.068690300 ::1:49704 ::1:57385 600985170 32 0500020310000000200000005e00000008000000010000003905000001000000 ........ ...^...........9....... +3586 7.068842649 ::1:57385 ::1:49704 1372393415 130 0500008310000000820000005f0000005a000000010003008c9e288562f29747 ............_...Z.........(.b..G..>K........|N@E +3588 7.069000959 ::1:49704 ::1:57385 600985202 32 0500020310000000200000005f00000008000000010000003a05000001000000 ........ ..._...........:....... +3590 7.069230795 ::1:57385 ::1:49704 1372393545 144 0500008310000000900000006000000068000000010003008c9e288562f29747 ............`...h.........(.b..G..>K........|N@E +3592 7.069394350 ::1:49704 ::1:57385 600985234 32 0500020310000000200000006000000008000000010000003b05000001000000 ........ ...`...........;....... +3594 7.069538355 ::1:57385 ::1:49704 1372393689 148 050000831000000094000000610000006c000000010003008c9e288562f29747 ............a...l.........(.b..G..>K........|N@E +3596 7.069697857 ::1:49704 ::1:57385 600985266 32 0500020310000000200000006100000008000000010000003c05000001000000 ........ ...a...........<....... +3598 7.069854736 ::1:57385 ::1:49704 1372393837 146 050000831000000092000000620000006a000000010003008c9e288562f29747 ............b...j.........(.b..G..>K........|N@E +3600 7.070015192 ::1:49704 ::1:57385 600985298 32 0500020310000000200000006200000008000000010000003d05000001000000 ........ ...b...........=....... +3602 7.070248365 ::1:57385 ::1:49704 1372393983 158 05000083100000009e0000006300000076000000010003008c9e288562f29747 ............c...v.........(.b..G..>K........|N@E +3604 7.070445538 ::1:49704 ::1:57385 600985330 32 0500020310000000200000006300000008000000010000009505000001000000 ........ ...c................... +3630 7.148841619 ::1:57385 ::1:49704 1372394141 40 0500008310000000280000006400000000000000000000008c9e288562f29747 ........(...d.............(.b..G..>K.... +3632 7.149066687 ::1:49704 ::1:57385 600985362 44 05000203100000002c000000640000001400000000000000000000002784a7a7 ........,...d...............'......A.L<..... +3634 7.149333477 ::1:57385 ::1:49704 1372394181 84 050000831000000054000000650000002c000000010000008c9e288562f29747 ........T...e...,.........(.b..G..>K........'... +3636 7.151077509 ::1:49704 ::1:57385 600985406 28 05000203100000001c00000065000000040000000100000001000000 ............e............... +3638 7.151348591 ::1:57385 ::1:49704 1372394265 60 05000083100000003c0000006600000014000000010002008c9e288562f29747 ........<...f.............(.b..G..>K........'... +3640 7.151575089 ::1:49704 ::1:57385 600985434 92 05000203100000005c0000006600000044000000010000000000020018000000 ........\...f...D.......................G.l.o.b. +3642 7.151855707 ::1:57385 ::1:49704 1372394325 108 05000083100000006c0000006700000044000000010003008c9e288562f29747 ........l...g...D.........(.b..G..>K........'... +3644 7.152064800 ::1:49704 ::1:57385 600985526 32 050002031000000020000000670000000800000001000000e506000001000000 ........ ...g................... +3646 7.152247667 ::1:57385 ::1:49704 1372394433 112 0500008310000000700000006800000048000000010003008c9e288562f29747 ........p...h...H.........(.b..G..>K........'... +3648 7.152500391 ::1:49704 ::1:57385 600985558 32 050002031000000020000000680000000800000001000000e606000001000000 ........ ...h................... +3650 7.152675867 ::1:57385 ::1:49704 1372394545 106 05000083100000006a0000006900000042000000010003008c9e288562f29747 ........j...i...B.........(.b..G..>K........'... +3652 7.152838469 ::1:49704 ::1:57385 600985590 32 050002031000000020000000690000000800000001000000e706000001000000 ........ ...i................... +3654 7.153009176 ::1:57385 ::1:49704 1372394651 108 05000083100000006c0000006a00000044000000010003008c9e288562f29747 ........l...j...D.........(.b..G..>K........'... +3656 7.153172731 ::1:49704 ::1:57385 600985622 32 0500020310000000200000006a0000000800000001000000e806000001000000 ........ ...j................... +3658 7.153551102 ::1:57385 ::1:49704 1372394759 118 0500008310000000760000006b0000004e000000010003008c9e288562f29747 ........v...k...N.........(.b..G..>K........'... +3660 7.153722286 ::1:49704 ::1:57385 600985654 32 0500020310000000200000006b0000000800000001000000e906000001000000 ........ ...k................... +3662 7.153894186 ::1:57385 ::1:49704 1372394877 118 0500008310000000760000006c0000004e000000010003008c9e288562f29747 ........v...l...N.........(.b..G..>K........'... +3664 7.154049158 ::1:49704 ::1:57385 600985686 32 0500020310000000200000006c0000000800000001000000ea06000001000000 ........ ...l................... +3666 7.154234171 ::1:57385 ::1:49704 1372394995 130 0500008310000000820000006d0000005a000000010003008c9e288562f29747 ............m...Z.........(.b..G..>K........'... +3668 7.154418230 ::1:49704 ::1:57385 600985718 32 0500020310000000200000006d0000000800000001000000eb06000001000000 ........ ...m................... +3670 7.154683590 ::1:57385 ::1:49704 1372395125 104 0500008310000000680000006e00000040000000010003008c9e288562f29747 ........h...n...@.........(.b..G..>K........'... +3672 7.154854774 ::1:49704 ::1:57385 600985750 32 0500020310000000200000006e0000000800000001000000ec06000001000000 ........ ...n................... +3674 7.155043364 ::1:57385 ::1:49704 1372395229 118 0500008310000000760000006f0000004e000000010003008c9e288562f29747 ........v...o...N.........(.b..G..>K........'... +3676 7.155199289 ::1:49704 ::1:57385 600985782 32 0500020310000000200000006f0000000800000001000000ed06000001000000 ........ ...o................... +3678 7.155383587 ::1:57385 ::1:49704 1372395347 116 050000831000000074000000700000004c000000010003008c9e288562f29747 ........t...p...L.........(.b..G..>K........'... +3680 7.155560970 ::1:49704 ::1:57385 600985814 32 050002031000000020000000700000000800000001000000ee06000001000000 ........ ...p................... +3682 7.155699492 ::1:57385 ::1:49704 1372395463 114 050000831000000072000000710000004a000000010003008c9e288562f29747 ........r...q...J.........(.b..G..>K........'... +3684 7.155849218 ::1:49704 ::1:57385 600985846 32 050002031000000020000000710000000800000001000000ef06000001000000 ........ ...q................... +3686 7.156386375 ::1:57385 ::1:49704 1372395577 128 0500008310000000800000007200000058000000010003008c9e288562f29747 ............r...X.........(.b..G..>K........'... +3688 7.156549692 ::1:49704 ::1:57385 600985878 32 050002031000000020000000720000000800000001000000f006000001000000 ........ ...r................... +3690 7.156721354 ::1:57385 ::1:49704 1372395705 120 0500008310000000780000007300000050000000010003008c9e288562f29747 ........x...s...P.........(.b..G..>K........'... +3692 7.156875134 ::1:49704 ::1:57385 600985910 32 050002031000000020000000730000000800000001000000f106000001000000 ........ ...s................... +3694 7.157116413 ::1:57385 ::1:49704 1372395825 120 0500008310000000780000007400000050000000010003008c9e288562f29747 ........x...t...P.........(.b..G..>K........'... +3696 7.157299280 ::1:49704 ::1:57385 600985942 32 050002031000000020000000740000000800000001000000f206000001000000 ........ ...t................... +3698 7.157580137 ::1:57385 ::1:49704 1372395945 122 05000083100000007a0000007500000052000000010003008c9e288562f29747 ........z...u...R.........(.b..G..>K........'... +3701 7.157755136 ::1:49704 ::1:57385 600985974 32 050002031000000020000000750000000800000001000000f306000001000000 ........ ...u................... +3703 7.157979250 ::1:57385 ::1:49704 1372396067 134 050000831000000086000000760000005e000000010003008c9e288562f29747 ............v...^.........(.b..G..>K........'... +3705 7.158190489 ::1:49704 ::1:57385 600986006 32 050002031000000020000000760000000800000001000000f406000001000000 ........ ...v................... +3707 7.158469200 ::1:57385 ::1:49704 1372396201 132 050000831000000084000000770000005c000000010003008c9e288562f29747 ............w...\.........(.b..G..>K........'... +3709 7.158722878 ::1:49704 ::1:57385 600986038 32 050002031000000020000000770000000800000001000000f506000001000000 ........ ...w................... +3711 7.159088373 ::1:57385 ::1:49704 1372396333 130 050000831000000082000000780000005a000000010003008c9e288562f29747 ............x...Z.........(.b..G..>K........'... +3713 7.159253359 ::1:49704 ::1:57385 600986070 32 050002031000000020000000780000000800000001000000f606000001000000 ........ ...x................... +3715 7.159535170 ::1:57385 ::1:49704 1372396463 138 05000083100000008a0000007900000062000000010003008c9e288562f29747 ............y...b.........(.b..G..>K........'... +3717 7.159703493 ::1:49704 ::1:57385 600986102 32 050002031000000020000000790000000800000001000000f706000001000000 ........ ...y................... +3719 7.159917116 ::1:57385 ::1:49704 1372396601 144 0500008310000000900000007a00000068000000010003008c9e288562f29747 ............z...h.........(.b..G..>K........'... +3721 7.160083771 ::1:49704 ::1:57385 600986134 32 0500020310000000200000007a0000000800000001000000f806000001000000 ........ ...z................... +3723 7.160354137 ::1:57385 ::1:49704 1372396745 144 0500008310000000900000007b00000068000000010003008c9e288562f29747 ............{...h.........(.b..G..>K........'... +3725 7.160589695 ::1:49704 ::1:57385 600986166 32 0500020310000000200000007b0000000800000001000000f906000001000000 ........ ...{................... +3727 7.160811901 ::1:57385 ::1:49704 1372396889 116 0500008310000000740000007c0000004c000000010003008c9e288562f29747 ........t...|...L.........(.b..G..>K........'... +3729 7.160985470 ::1:49704 ::1:57385 600986198 32 0500020310000000200000007c0000000800000001000000fa06000001000000 ........ ...|................... +3731 7.161198854 ::1:57385 ::1:49704 1372397005 130 0500008310000000820000007d0000005a000000010003008c9e288562f29747 ............}...Z.........(.b..G..>K........'... +3733 7.161420584 ::1:49704 ::1:57385 600986230 32 0500020310000000200000007d0000000800000001000000fb06000001000000 ........ ...}................... +3735 7.161684513 ::1:57385 ::1:49704 1372397135 138 05000083100000008a0000007e00000062000000010003008c9e288562f29747 ............~...b.........(.b..G..>K........'... +3737 7.161843538 ::1:49704 ::1:57385 600986262 32 0500020310000000200000007e0000000800000001000000fc06000001000000 ........ ...~................... +3739 7.162008286 ::1:57385 ::1:49704 1372397273 130 0500008310000000820000007f0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........'... +3741 7.162158489 ::1:49704 ::1:57385 600986294 32 0500020310000000200000007f0000000800000001000000fd06000001000000 ........ ....................... +3743 7.162329674 ::1:57385 ::1:49704 1372397403 122 05000083100000007a0000008000000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........'... +3745 7.162566423 ::1:49704 ::1:57385 600986326 32 050002031000000020000000800000000800000001000000fe06000001000000 ........ ....................... +3747 7.162729979 ::1:57385 ::1:49704 1372397525 122 05000083100000007a0000008100000052000000010003008c9e288562f29747 ........z.......R.........(.b..G..>K........'... +3749 7.162881374 ::1:49704 ::1:57385 600986358 32 050002031000000020000000810000000800000001000000ff06000001000000 ........ ....................... +3751 7.163041592 ::1:57385 ::1:49704 1372397647 134 050000831000000086000000820000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........'... +3753 7.163191795 ::1:49704 ::1:57385 600986390 32 0500020310000000200000008200000008000000010000000007000001000000 ........ ....................... +3755 7.163357973 ::1:57385 ::1:49704 1372397781 128 0500008310000000800000008300000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........'... +3757 7.163650036 ::1:49704 ::1:57385 600986422 32 0500020310000000200000008300000008000000010000000107000001000000 ........ ....................... +3759 7.163826466 ::1:57385 ::1:49704 1372397909 124 05000083100000007c0000008400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K........'... +3761 7.163979530 ::1:49704 ::1:57385 600986454 32 0500020310000000200000008400000008000000010000000207000001000000 ........ ....................... +3763 7.199638367 ::1:57385 ::1:49704 1372398033 516 05000083100000000402000085000000dc010000010005008c9e288562f29747 ..........................(.b..G..>K........'... +3765 7.199902534 ::1:49704 ::1:57385 600986486 28 05000203100000001c00000085000000040000000100000001000000 ............................ +3783 7.237898350 ::1:57385 ::1:49704 1372398549 40 0500008310000000280000008600000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3785 7.238091230 ::1:49704 ::1:57385 600986514 44 05000203100000002c000000860000001400000000000000000000007a3b5558 ........,...................z;UX#..D..r6~.<. +3787 7.238358498 ::1:57385 ::1:49704 1372398589 112 0500008310000000700000008700000048000000010000008c9e288562f29747 ........p.......H.........(.b..G..>K........z;UX +3789 7.240138769 ::1:49704 ::1:57385 600986558 28 05000203100000001c00000087000000040000000100000001000000 ............................ +3791 7.240386486 ::1:57385 ::1:49704 1372398701 60 05000083100000003c0000008800000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........z;UX +3793 7.240586519 ::1:49704 ::1:57385 600986586 92 05000203100000005c0000008800000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3795 7.240947962 ::1:57385 ::1:49704 1372398761 136 0500008310000000880000008900000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........z;UX +3797 7.241162062 ::1:49704 ::1:57385 600986678 32 050002031000000020000000890000000800000001000000dd07000001000000 ........ ....................... +3799 7.241373062 ::1:57385 ::1:49704 1372398897 140 05000083100000008c0000008a00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........z;UX +3801 7.241559744 ::1:49704 ::1:57385 600986710 32 0500020310000000200000008a0000000800000001000000de07000001000000 ........ ....................... +3803 7.241719961 ::1:57385 ::1:49704 1372399037 134 0500008310000000860000008b0000005e000000010003008c9e288562f29747 ................^.........(.b..G..>K........z;UX +3805 7.241884470 ::1:49704 ::1:57385 600986742 32 0500020310000000200000008b0000000800000001000000df07000001000000 ........ ....................... +3807 7.242038488 ::1:57385 ::1:49704 1372399171 136 0500008310000000880000008c00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........z;UX +3809 7.242199898 ::1:49704 ::1:57385 600986774 32 0500020310000000200000008c0000000800000001000000e007000001000000 ........ ....................... +3811 7.242415905 ::1:57385 ::1:49704 1372399307 146 0500008310000000920000008d0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........z;UX +3813 7.242586136 ::1:49704 ::1:57385 600986806 32 0500020310000000200000008d0000000800000001000000e107000001000000 ........ ....................... +3815 7.242888927 ::1:57385 ::1:49704 1372399453 146 0500008310000000920000008e0000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........z;UX +3817 7.243082523 ::1:49704 ::1:57385 600986838 32 0500020310000000200000008e0000000800000001000000e207000001000000 ........ ....................... +3819 7.243244171 ::1:57385 ::1:49704 1372399599 158 05000083100000009e0000008f00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K........z;UX +3821 7.243407249 ::1:49704 ::1:57385 600986870 32 0500020310000000200000008f0000000800000001000000e307000001000000 ........ ....................... +3823 7.243691921 ::1:57385 ::1:49704 1372399757 132 050000831000000084000000900000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........z;UX +3825 7.243924379 ::1:49704 ::1:57385 600986902 32 050002031000000020000000900000000800000001000000e407000001000000 ........ ....................... +3827 7.244125605 ::1:57385 ::1:49704 1372399889 146 050000831000000092000000910000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........z;UX +3829 7.244349957 ::1:49704 ::1:57385 600986934 32 050002031000000020000000910000000800000001000000e507000001000000 ........ ....................... +3831 7.244554758 ::1:57385 ::1:49704 1372400035 144 0500008310000000900000009200000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........z;UX +3833 7.244813204 ::1:49704 ::1:57385 600986966 32 050002031000000020000000920000000800000001000000e607000001000000 ........ ....................... +3835 7.244992495 ::1:57385 ::1:49704 1372400179 142 05000083100000008e0000009300000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........z;UX +3837 7.245175600 ::1:49704 ::1:57385 600986998 32 050002031000000020000000930000000800000001000000e707000001000000 ........ ....................... +3839 7.245399475 ::1:57385 ::1:49704 1372400321 160 0500008310000000a00000009400000078000000010003008c9e288562f29747 ................x.........(.b..G..>K........z;UX +3841 7.245603800 ::1:49704 ::1:57385 600987030 32 050002031000000020000000940000000800000001000000e807000001000000 ........ ....................... +3843 7.245748043 ::1:57385 ::1:49704 1372400481 156 05000083100000009c0000009500000074000000010003008c9e288562f29747 ................t.........(.b..G..>K........z;UX +3845 7.245973825 ::1:49704 ::1:57385 600987062 32 050002031000000020000000950000000800000001000000e907000001000000 ........ ....................... +3847 7.246254444 ::1:57385 ::1:49704 1372400637 154 05000083100000009a0000009600000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........z;UX +3849 7.246453047 ::1:49704 ::1:57385 600987094 32 050002031000000020000000960000000800000001000000ea07000001000000 ........ ....................... +3851 7.246607542 ::1:57385 ::1:49704 1372400791 146 050000831000000092000000970000006a000000010003008c9e288562f29747 ................j.........(.b..G..>K........z;UX +3853 7.246787548 ::1:49704 ::1:57385 600987126 32 050002031000000020000000970000000800000001000000eb07000001000000 ........ ....................... +3855 7.246967316 ::1:57385 ::1:49704 1372400937 154 05000083100000009a0000009800000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........z;UX +3857 7.247158766 ::1:49704 ::1:57385 600987158 32 050002031000000020000000980000000800000001000000ec07000001000000 ........ ....................... +3859 7.247334957 ::1:57385 ::1:49704 1372401091 150 050000831000000096000000990000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K........z;UX +3861 7.247531176 ::1:49704 ::1:57385 600987190 32 050002031000000020000000990000000800000001000000ed07000001000000 ........ ....................... +3863 7.247674704 ::1:57385 ::1:49704 1372401241 152 0500008310000000980000009a00000070000000010003008c9e288562f29747 ................p.........(.b..G..>K........z;UX +3865 7.247834682 ::1:49704 ::1:57385 600987222 32 0500020310000000200000009a0000000800000001000000ee07000001000000 ........ ....................... +3867 7.247972488 ::1:57385 ::1:49704 1372401393 140 05000083100000008c0000009b00000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........z;UX +3869 7.248128176 ::1:49704 ::1:57385 600987254 32 0500020310000000200000009b0000000800000001000000ef07000001000000 ........ ....................... +3871 7.248264074 ::1:57385 ::1:49704 1372401533 148 0500008310000000940000009c0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K........z;UX +3873 7.248501062 ::1:49704 ::1:57385 600987286 32 0500020310000000200000009c0000000800000001000000f007000001000000 ........ ....................... +3875 7.248680353 ::1:57385 ::1:49704 1372401681 162 0500008310000000a20000009d0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K........z;UX +3877 7.248885155 ::1:49704 ::1:57385 600987318 32 0500020310000000200000009d0000000800000001000000f107000001000000 ........ ....................... +3879 7.249047518 ::1:57385 ::1:49704 1372401843 172 0500008310000000ac0000009e00000084000000010003008c9e288562f29747 ..........................(.b..G..>K........z;UX +3881 7.249271870 ::1:49704 ::1:57385 600987350 32 0500020310000000200000009e0000000800000001000000f207000001000000 ........ ....................... +3883 7.249477863 ::1:57385 ::1:49704 1372402015 144 0500008310000000900000009f00000068000000010003008c9e288562f29747 ................h.........(.b..G..>K........z;UX +3885 7.249712706 ::1:49704 ::1:57385 600987382 32 0500020310000000200000009f0000000800000001000000f307000001000000 ........ ....................... +3891 7.258487701 ::1:57385 ::1:49704 1372402159 40 050000831000000028000000a000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3893 7.258832693 ::1:49704 ::1:57385 600987414 44 05000203100000002c000000a0000000140000000000000000000000db2641f1 ........,....................&A.w..B...P.)-. +3895 7.258977175 ::1:57385 ::1:49704 1372402199 128 050000831000000080000000a100000058000000010000008c9e288562f29747 ................X.........(.b..G..>K.........&A. +3897 7.260676384 ::1:49704 ::1:57385 600987458 28 05000203100000001c000000a1000000040000000100000001000000 ............................ +3899 7.260812283 ::1:57385 ::1:49704 1372402327 60 05000083100000003c000000a200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........&A. +3901 7.260987520 ::1:49704 ::1:57385 600987486 92 05000203100000005c000000a200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3903 7.261182070 ::1:57385 ::1:49704 1372402387 152 050000831000000098000000a300000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........&A. +3905 7.261390686 ::1:49704 ::1:57385 600987578 32 050002031000000020000000a300000008000000010000001104000001000000 ........ ....................... +3907 7.261602402 ::1:57385 ::1:49704 1372402539 156 05000083100000009c000000a400000074000000010003008c9e288562f29747 ................t.........(.b..G..>K.........&A. +3909 7.261766195 ::1:49704 ::1:57385 600987610 32 050002031000000020000000a400000008000000010000001204000001000000 ........ ....................... +3911 7.261901140 ::1:57385 ::1:49704 1372402695 150 050000831000000096000000a50000006e000000010003008c9e288562f29747 ................n.........(.b..G..>K.........&A. +3913 7.262062550 ::1:49704 ::1:57385 600987642 32 050002031000000020000000a500000008000000010000001304000001000000 ........ ....................... +3915 7.262215376 ::1:57385 ::1:49704 1372402845 152 050000831000000098000000a600000070000000010003008c9e288562f29747 ................p.........(.b..G..>K.........&A. +3917 7.262406826 ::1:49704 ::1:57385 600987674 32 050002031000000020000000a600000008000000010000001404000001000000 ........ ....................... +3919 7.262619257 ::1:57385 ::1:49704 1372402997 162 0500008310000000a2000000a70000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K.........&A. +3921 7.262742281 ::1:49704 ::1:57385 600987706 32 050002031000000020000000a700000008000000010000001504000001000000 ........ ....................... +3923 7.262882233 ::1:57385 ::1:49704 1372403159 162 0500008310000000a2000000a80000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K.........&A. +3925 7.263046503 ::1:49704 ::1:57385 600987738 32 050002031000000020000000a800000008000000010000001604000001000000 ........ ....................... +3927 7.263219118 ::1:57385 ::1:49704 1372403321 174 0500008310000000ae000000a900000086000000010003008c9e288562f29747 ..........................(.b..G..>K.........&A. +3929 7.263401270 ::1:49704 ::1:57385 600987770 32 050002031000000020000000a900000008000000010000001704000001000000 ........ ....................... +3931 7.263617277 ::1:57385 ::1:49704 1372403495 148 050000831000000094000000aa0000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........&A. +3933 7.263777733 ::1:49704 ::1:57385 600987802 32 050002031000000020000000aa00000008000000010000001804000001000000 ........ ....................... +3935 7.263912678 ::1:57385 ::1:49704 1372403643 162 0500008310000000a2000000ab0000007a000000010003008c9e288562f29747 ................z.........(.b..G..>K.........&A. +3937 7.264074564 ::1:49704 ::1:57385 600987834 32 050002031000000020000000ab00000008000000010000001904000001000000 ........ ....................... +3939 7.264248610 ::1:57385 ::1:49704 1372403805 160 0500008310000000a0000000ac00000078000000010003008c9e288562f29747 ................x.........(.b..G..>K.........&A. +3941 7.264551401 ::1:49704 ::1:57385 600987866 32 050002031000000020000000ac00000008000000010000001a04000001000000 ........ ....................... +3943 7.264685392 ::1:57385 ::1:49704 1372403965 158 05000083100000009e000000ad00000076000000010003008c9e288562f29747 ................v.........(.b..G..>K.........&A. +3945 7.264838457 ::1:49704 ::1:57385 600987898 32 050002031000000020000000ad00000008000000010000001b04000001000000 ........ ....................... +3947 7.265042782 ::1:57385 ::1:49704 1372404123 170 0500008310000000aa000000ae00000082000000010003008c9e288562f29747 ..........................(.b..G..>K.........&A. +3949 7.265206337 ::1:49704 ::1:57385 600987930 32 050002031000000020000000ae00000008000000010000001c04000001000000 ........ ....................... +3951 7.265383482 ::1:57385 ::1:49704 1372404293 182 0500008310000000b6000000af0000008e000000010003008c9e288562f29747 ..........................(.b..G..>K.........&A. +3953 7.265537500 ::1:49704 ::1:57385 600987962 32 050002031000000020000000af00000008000000010000001d04000001000000 ........ ....................... +3960 7.272629976 ::1:57385 ::1:49704 1372404475 40 050000831000000028000000b000000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +3962 7.272840977 ::1:49704 ::1:57385 600987994 44 05000203100000002c000000b00000001400000000000000000000000f48435f ........,....................HC_..3B.....CY^ +3964 7.273036957 ::1:57385 ::1:49704 1372404515 96 050000831000000060000000b100000038000000010000008c9e288562f29747 ........`.......8.........(.b..G..>K.........HC_ +3966 7.275017023 ::1:49704 ::1:57385 600988038 28 05000203100000001c000000b1000000040000000100000001000000 ............................ +3968 7.275190115 ::1:57385 ::1:49704 1372404611 60 05000083100000003c000000b200000014000000010002008c9e288562f29747 ........<.................(.b..G..>K.........HC_ +3970 7.275495768 ::1:49704 ::1:57385 600988066 92 05000203100000005c000000b200000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +3972 7.275742769 ::1:57385 ::1:49704 1372404671 120 050000831000000078000000b300000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........HC_ +3974 7.275990486 ::1:49704 ::1:57385 600988158 32 050002031000000020000000b30000000800000001000000f407000001000000 ........ ....................... +3976 7.276141882 ::1:57385 ::1:49704 1372404791 124 05000083100000007c000000b400000054000000010003008c9e288562f29747 ........|.......T.........(.b..G..>K.........HC_ +3978 7.276390553 ::1:49704 ::1:57385 600988190 32 050002031000000020000000b40000000800000001000000f507000001000000 ........ ....................... +3980 7.276529074 ::1:57385 ::1:49704 1372404915 118 050000831000000076000000b50000004e000000010003008c9e288562f29747 ........v.......N.........(.b..G..>K.........HC_ +3982 7.276723385 ::1:49704 ::1:57385 600988222 32 050002031000000020000000b50000000800000001000000f607000001000000 ........ ....................... +3984 7.276866674 ::1:57385 ::1:49704 1372405033 120 050000831000000078000000b600000050000000010003008c9e288562f29747 ........x.......P.........(.b..G..>K.........HC_ +3986 7.277091265 ::1:49704 ::1:57385 600988254 32 050002031000000020000000b60000000800000001000000f707000001000000 ........ ....................... +3988 7.277229548 ::1:57385 ::1:49704 1372405153 130 050000831000000082000000b70000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........HC_ +3990 7.277515173 ::1:49704 ::1:57385 600988286 32 050002031000000020000000b70000000800000001000000f807000001000000 ........ ....................... +3992 7.277652740 ::1:57385 ::1:49704 1372405283 130 050000831000000082000000b80000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........HC_ +3994 7.277856827 ::1:49704 ::1:57385 600988318 32 050002031000000020000000b80000000800000001000000f907000001000000 ........ ....................... +3996 7.277998924 ::1:57385 ::1:49704 1372405413 142 05000083100000008e000000b900000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........HC_ +3998 7.278197050 ::1:49704 ::1:57385 600988350 32 050002031000000020000000b90000000800000001000000fa07000001000000 ........ ....................... +3999 7.278339148 ::1:57385 ::1:49704 1372405555 116 050000831000000074000000ba0000004c000000010003008c9e288562f29747 ........t.......L.........(.b..G..>K.........HC_ +4001 7.278561831 ::1:49704 ::1:57385 600988382 32 050002031000000020000000ba0000000800000001000000fb07000001000000 ........ ....................... +4003 7.278703451 ::1:57385 ::1:49704 1372405671 130 050000831000000082000000bb0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........HC_ +4005 7.278886795 ::1:49704 ::1:57385 600988414 32 050002031000000020000000bb0000000800000001000000fc07000001000000 ........ ....................... +4007 7.279025555 ::1:57385 ::1:49704 1372405801 128 050000831000000080000000bc00000058000000010003008c9e288562f29747 ................X.........(.b..G..>K.........HC_ +4009 7.279222965 ::1:49704 ::1:57385 600988446 32 050002031000000020000000bc0000000800000001000000fd07000001000000 ........ ....................... +4010 7.279378176 ::1:57385 ::1:49704 1372405929 126 05000083100000007e000000bd00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........HC_ +4012 7.279530287 ::1:49704 ::1:57385 600988478 32 050002031000000020000000bd0000000800000001000000fe07000001000000 ........ ....................... +4014 7.279695988 ::1:57385 ::1:49704 1372406055 126 05000083100000007e000000be00000056000000010003008c9e288562f29747 ........~.......V.........(.b..G..>K.........HC_ +4016 7.279937506 ::1:49704 ::1:57385 600988510 32 050002031000000020000000be0000000800000001000000ff07000001000000 ........ ....................... +4018 7.280079365 ::1:57385 ::1:49704 1372406181 132 050000831000000084000000bf0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........HC_ +4020 7.280253410 ::1:49704 ::1:57385 600988542 32 050002031000000020000000bf00000008000000010000000008000001000000 ........ ....................... +4022 7.280437469 ::1:57385 ::1:49704 1372406313 130 050000831000000082000000c00000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K.........HC_ +4024 7.280607700 ::1:49704 ::1:57385 600988574 32 050002031000000020000000c000000008000000010000000108000001000000 ........ ....................... +4026 7.280740976 ::1:57385 ::1:49704 1372406443 138 05000083100000008a000000c100000062000000010003008c9e288562f29747 ................b.........(.b..G..>K.........HC_ +4028 7.281012774 ::1:49704 ::1:57385 600988606 32 050002031000000020000000c100000008000000010000000208000001000000 ........ ....................... +4030 7.281165838 ::1:57385 ::1:49704 1372406581 136 050000831000000088000000c200000060000000010003008c9e288562f29747 ................`.........(.b..G..>K.........HC_ +4032 7.281369925 ::1:49704 ::1:57385 600988638 32 050002031000000020000000c200000008000000010000000308000001000000 ........ ....................... +4034 7.281590223 ::1:57385 ::1:49704 1372406717 132 050000831000000084000000c30000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K.........HC_ +4036 7.281758308 ::1:49704 ::1:57385 600988670 32 050002031000000020000000c300000008000000010000000408000001000000 ........ ....................... +4038 7.281900883 ::1:57385 ::1:49704 1372406849 142 05000083100000008e000000c400000066000000010003008c9e288562f29747 ................f.........(.b..G..>K.........HC_ +4040 7.282056808 ::1:49704 ::1:57385 600988702 32 050002031000000020000000c400000008000000010000000508000001000000 ........ ....................... +4042 7.282196522 ::1:57385 ::1:49704 1372406991 148 050000831000000094000000c50000006c000000010003008c9e288562f29747 ................l.........(.b..G..>K.........HC_ +4044 7.282398939 ::1:49704 ::1:57385 600988734 32 050002031000000020000000c500000008000000010000000608000001000000 ........ ....................... +4076 7.321688652 ::1:57385 ::1:49704 1372407139 290 050000831000000022010000c6000000fa000000010005008c9e288562f29747 ........".................(.b..G..>K........'... +4078 7.322033882 ::1:49704 ::1:57385 600988766 28 05000203100000001c000000c6000000040000000100000001000000 ............................ +4095 7.401151419 ::1:57385 ::1:49704 1372407429 206 0500008310000000ce000000c7000000a6000000010005008c9e288562f29747 ..........................(.b..G..>K........'... +4097 7.401445866 ::1:49704 ::1:57385 600988794 28 05000203100000001c000000c7000000040000000100000001000000 ............................ +6168 14.389354944 ::1:57385 ::1:49704 1372407635 60 05000083100000003c000000c800000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........L(V. +6170 14.389577627 ::1:49704 ::1:57385 600988822 28 05000203100000001c000000c8000000040000000100000001000000 ............................ +6172 14.389742851 ::1:57385 ::1:49704 1372407695 60 05000083100000003c000000c900000014000000000001008c9e288562f29747 ........<.................(.b..G..>K........L(V. +6174 14.389893532 ::1:49704 ::1:57385 600988850 44 05000203100000002c000000c900000014000000000000000000000000000000 ........,................................... +6180 14.395628691 ::1:57385 ::1:49704 1372407755 40 050000831000000028000000ca00000000000000000000008c9e288562f29747 ........(.................(.b..G..>K.... +6182 14.395838737 ::1:49704 ::1:57385 600988894 44 05000203100000002c000000ca0000001400000000000000000000007d79d295 ........,...................}y....fB...yb[.. +6184 14.396345854 ::1:57385 ::1:49704 1372407795 108 05000083100000006c000000cb00000044000000010000008c9e288562f29747 ........l.......D.........(.b..G..>K........}y.. +6186 14.398210764 ::1:49704 ::1:57385 600988938 28 05000203100000001c000000cb000000040000000100000001000000 ............................ +6188 14.398355722 ::1:57385 ::1:49704 1372407903 60 05000083100000003c000000cc00000014000000010002008c9e288562f29747 ........<.................(.b..G..>K........}y.. +6190 14.398513794 ::1:49704 ::1:57385 600988966 92 05000203100000005c000000cc00000044000000010000000000020018000000 ........\.......D.......................G.l.o.b. +6192 14.398737669 ::1:57385 ::1:49704 1372407963 132 050000831000000084000000cd0000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........}y.. +6194 14.398888588 ::1:49704 ::1:57385 600989058 32 050002031000000020000000cd0000000800000001000000600d000001000000 ........ ...............`....... +6196 14.399031401 ::1:57385 ::1:49704 1372408095 136 050000831000000088000000ce00000060000000010003008c9e288562f29747 ................`.........(.b..G..>K........}y.. +6198 14.399252892 ::1:49704 ::1:57385 600989090 32 050002031000000020000000ce0000000800000001000000610d000001000000 ........ ...............a....... +6200 14.399391651 ::1:57385 ::1:49704 1372408231 130 050000831000000082000000cf0000005a000000010003008c9e288562f29747 ................Z.........(.b..G..>K........}y.. +6202 14.399530888 ::1:49704 ::1:57385 600989122 32 050002031000000020000000cf0000000800000001000000620d000001000000 ........ ...............b....... +6204 14.399710655 ::1:57385 ::1:49704 1372408361 132 050000831000000084000000d00000005c000000010003008c9e288562f29747 ................\.........(.b..G..>K........}y.. +6206 14.399912596 ::1:49704 ::1:57385 600989154 32 050002031000000020000000d00000000800000001000000630d000001000000 ........ ...............c....... +6208 14.400068760 ::1:57385 ::1:49704 1372408493 142 05000083100000008e000000d100000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........}y.. +6210 14.400245905 ::1:49704 ::1:57385 600989186 32 050002031000000020000000d10000000800000001000000640d000001000000 ........ ...............d....... +6212 14.400394678 ::1:57385 ::1:49704 1372408635 142 05000083100000008e000000d200000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........}y.. +6214 14.400537252 ::1:49704 ::1:57385 600989218 32 050002031000000020000000d20000000800000001000000650d000001000000 ........ ...............e....... +6216 14.400685072 ::1:57385 ::1:49704 1372408777 154 05000083100000009a000000d300000072000000010003008c9e288562f29747 ................r.........(.b..G..>K........}y.. +6218 14.400820255 ::1:49704 ::1:57385 600989250 32 050002031000000020000000d30000000800000001000000660d000001000000 ........ ...............f....... +6220 14.400955200 ::1:57385 ::1:49704 1372408931 128 050000831000000080000000d400000058000000010003008c9e288562f29747 ................X.........(.b..G..>K........}y.. +6222 14.401087999 ::1:49704 ::1:57385 600989282 32 050002031000000020000000d40000000800000001000000670d000001000000 ........ ...............g....... +6224 14.401286364 ::1:57385 ::1:49704 1372409059 142 05000083100000008e000000d500000066000000010003008c9e288562f29747 ................f.........(.b..G..>K........}y.. +6226 14.401419163 ::1:49704 ::1:57385 600989314 32 050002031000000020000000d50000000800000001000000680d000001000000 ........ ...............h....... +6228 14.401588440 ::1:57385 ::1:49704 1372409201 140 05000083100000008c000000d600000064000000010003008c9e288562f29747 ................d.........(.b..G..>K........}y.. +6230 14.401723385 ::1:49704 ::1:57385 600989346 32 050002031000000020000000d60000000800000001000000690d000001000000 ........ ...............i....... +6232 14.401858091 ::1:57385 ::1:49704 1372409341 138 05000083100000008a000000d700000062000000010003008c9e288562f29747 ................b.........(.b..G..>K........}y.. +6234 14.401989222 ::1:49704 ::1:57385 600989378 32 050002031000000020000000d700000008000000010000006a0d000001000000 ........ ...............j....... +6239 14.415708542 ::1:57385 ::1:49704 1372409479 60 05000083100000003c000000d800000014000000010006008c9e288562f29747 ........<.................(.b..G..>K.........HC_ +6241 14.415888548 ::1:49704 ::1:57385 600989410 28 05000203100000001c000000d8000000040000000100000001000000 ............................ +6243 14.416047812 ::1:57385 ::1:49704 1372409539 60 05000083100000003c000000d900000014000000000001008c9e288562f29747 ........<.................(.b..G..>K.........HC_ +6245 14.416236162 ::1:49704 ::1:57385 600989438 44 05000203100000002c000000d900000014000000000000000000000000000000 ........,................................... +6247 14.416499615 ::1:57385 ::1:49704 1372409599 60 05000083100000003c000000da00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K.........&A. +6249 14.416644096 ::1:49704 ::1:57385 600989482 28 05000203100000001c000000da000000040000000100000001000000 ............................ +6251 14.416799545 ::1:57385 ::1:49704 1372409659 60 05000083100000003c000000db00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K.........&A. +6253 14.416966438 ::1:49704 ::1:57385 600989510 44 05000203100000002c000000db00000014000000000000000000000000000000 ........,................................... +6255 14.417442799 ::1:57385 ::1:49704 1372409719 60 05000083100000003c000000dc00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........z;UX +6257 14.417585850 ::1:49704 ::1:57385 600989554 28 05000203100000001c000000dc000000040000000100000001000000 ............................ +6259 14.417726040 ::1:57385 ::1:49704 1372409779 60 05000083100000003c000000dd00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K........z;UX +6261 14.417862415 ::1:49704 ::1:57385 600989582 44 05000203100000002c000000dd00000014000000000000000000000000000000 ........,................................... +6263 14.418310642 ::1:57385 ::1:49704 1372409839 60 05000083100000003c000000de00000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........'... +6265 14.418447018 ::1:49704 ::1:57385 600989626 28 05000203100000001c000000de000000040000000100000001000000 ............................ +6267 14.418586254 ::1:57385 ::1:49704 1372409899 60 05000083100000003c000000df00000014000000000001008c9e288562f29747 ........<.................(.b..G..>K........'... +6269 14.418720961 ::1:49704 ::1:57385 600989654 44 05000203100000002c000000df00000014000000000000000000000000000000 ........,................................... +6271 14.418962717 ::1:57385 ::1:49704 1372409959 60 05000083100000003c000000e000000014000000010006008c9e288562f29747 ........<.................(.b..G..>K........|N@E +6273 14.419129848 ::1:49704 ::1:57385 600989698 28 05000203100000001c000000e0000000040000000100000001000000 ............................ +6275 14.419231892 ::1:57385 ::1:49704 1372410019 60 05000083100000003c000000e100000014000000000001008c9e288562f29747 ........<.................(.b..G..>K........|N@E +6277 14.419366121 ::1:49704 ::1:57385 600989726 44 05000203100000002c000000e100000014000000000000000000000000000000 ........,................................... +5088 0.000000000 fe80::3608:256c:365:cc73:57401 fe80::3608:256c:365:cc73:55555 3837277374 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +5096 0.068010330 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57401 482511381 14074 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13976..Content- +2178 0.000000000 fe80::3608:256c:365:cc73:57388 fe80::3608:256c:365:cc73:55555 181705342 96 474554202f666e652f786d6c2f66656174757265733f64657461696c65643d74 GET /fne/xml/features?detailed=true HTTP/1.1..Ho +2198 0.072886944 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57388 388069972 13901 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 13803..Content- +5675 0.000000000 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150409272 1284 17030304ff0000000000000dc1a262ff91da86db83ad93a7ac64c17bdc54cb66 ..............b..........d.{.T.fA&.QJ..D.......- +5695 0.005313158 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088571394 54 17030300310000000000000f215b3529095b801a3315ae1c1cbb593bf133edfd ....1.......![5).[..3.....Y;.3.. ..XW..h.8U...7. +5697 0.005766630 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150410556 117 17030300700000000000000dc21a26ad1f540af43cd35b5ab0e19cb11aa6816e ....p.........&..T..<.[Z.......nG..l\.U..N.....? +5699 0.007888317 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088571448 173 17030300a80000000000000f2212852f4b28f6f71739a98df4f3cff3af79f08d ............"../K(...9.......y..j.M.}U..M.....Y. +5701 0.008902550 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150410673 1284 17030304ff0000000000000dc37d12e8582a982cf24e7999760bc5640a5e0cc3 .............}..X*.,.Ny.v..d.^....Z{.\.....>.... +5703 0.012862206 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088571621 54 17030300310000000000000f2300c120b5879a7e842139d70b171912cb0b982d ....1.......#.. ...~.!9........-..p.yx..2.XL._.. +5705 0.013290405 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150411957 117 17030300700000000000000dc40a9f4b2bef6f74f422acd56e5c524a6f2f3669 ....p..........K+.ot."..n\RJo/6i.r.O{..q..B\|... +5707 0.016411304 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088571675 173 17030300a80000000000000f24ee166a30cc9c49d9def35dc6305f28130871da ............$..j0..I...].0_(..q....3.&".j..*..2. +5728 0.025957584 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150412074 1285 17030305000000000000000dc5b335b909e494972f9869e23eb25d08466d3efd ..............5...../.i.>.].Fm>.[F..R..*.f.*q... +5730 0.032129765 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088571848 54 17030300310000000000000f252f53c88087102efef196410063678c16e4cf70 ....1.......%/S........A.cg....p...$u*.*....~.q* +5732 0.032590151 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150413359 130 170303007d0000000000000dc6445e93de78e8c4f05e652f226450e54e2eeff2 ....}........D^..x...^e/"dP.N........i./O..Z.e.. +5734 0.034973860 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088571902 173 17030300a80000000000000f260000d186fc5448b73cacfe0692842cd999a081 ............&.....TH.<.....,....p.....Q...[..W.S +5736 0.035977840 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150413489 1285 17030305000000000000000dc7f5d51c3bf4a709a4094f64ce737fd0cdeed4ba ................;.....Od.s......)....Q..e...U..[ +5750 0.041112900 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088572075 54 17030300310000000000000f27168526343af4e0f4270eccbe58fc810eff06ef ....1.......'..&4:...'...X..........;N....Z..{D> +5752 0.041605711 fe80::3608:256c:365:cc73:61633 fe80::3608:256c:365:cc73:443 3150414774 130 170303007d0000000000000dc8f99e04b9a9eceac87429fc839fcba1bdb1afee ....}................t)...........P..OW.....|... +5754 0.043838978 fe80::3608:256c:365:cc73:443 fe80::3608:256c:365:cc73:61633 3088572129 173 17030300a80000000000000f280f2115fe8a891176aeb2b15c092b686b285e87 ............(.!.....v...\.+hk(^...........[T...o +1197 0.000000000 ::1:57384 ::1:135 776840497 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1199 0.000788212 ::1:135 ::1:57384 2342396659 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1316 0.122898579 ::1:57384 ::1:135 776840653 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1318 0.123900414 ::1:135 ::1:57384 2342396811 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1376 0.150507689 ::1:57384 ::1:135 776840809 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1378 0.151237249 ::1:135 ::1:57384 2342396963 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1486 0.265981197 ::1:57384 ::1:135 776840965 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1488 0.266821861 ::1:135 ::1:57384 2342397115 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +1594 0.404066801 ::1:57384 ::1:135 776841121 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +1596 0.405009747 ::1:135 ::1:57384 2342397267 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3530 7.064814091 ::1:57384 ::1:135 776841277 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3532 7.065733433 ::1:135 ::1:57384 2342397419 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3626 7.150503159 ::1:57384 ::1:135 776841433 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3628 7.151347876 ::1:135 ::1:57384 2342397571 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3779 7.239709616 ::1:57384 ::1:135 776841589 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3781 7.240477324 ::1:135 ::1:57384 2342397723 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3887 7.260040998 ::1:57384 ::1:135 776841745 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3889 7.261047363 ::1:135 ::1:57384 2342397875 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +3956 7.273949862 ::1:57384 ::1:135 776841901 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +3958 7.275188446 ::1:135 ::1:57384 2342398027 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +6176 14.397250891 ::1:57384 ::1:135 776842057 132 010000008c9e288562f2974784df3e4ba60efe8b020000004b0000004b000000 ......(.b..G..>K........K...K...........N..dA.!. +6178 14.398226023 ::1:135 ::1:57384 2342398179 128 0000000000000000000000000000000000000000010000000400000000000000 ........................................K...K... +2642 0.000000000 fe80::3608:256c:365:cc73:57390 fe80::3608:256c:365:cc73:55555 4086273288 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +2760 0.368981838 fe80::3608:256c:365:cc73:57390 fe80::3608:256c:365:cc73:55555 4086273493 508 000001fc00004701000000000000000b00010000000002000000100007025343 ......G.......................SCHNEIDR......M.DE +3398 2.705627441 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57390 877034757 1990 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1861..Content-T +3443 0.000000000 ::1:57395 ::1:32571 3374488170 275 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +3445 0.000903368 ::1:32571 ::1:57395 2267154021 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +3447 0.002309084 ::1:57395 ::1:32571 3374488445 291 474554202f496d616765732f476f6f676c654d6174657269616c49636f6e732f GET /Images/GoogleMaterialIcons/ic_account_circl +3449 0.008090973 ::1:32571 ::1:57395 2267154917 734 485454502f312e3120323030204f4b0d0a43616368652d436f6e74726f6c3a20 HTTP/1.1 200 OK..Cache-Control: public,max-age=1 +5438 0.000000000 fe80::3608:256c:365:cc73:57403 fe80::3608:256c:365:cc73:55555 2388258441 205 504f5354202f666e652f62696e2f6361706162696c69747920485454502f312e POST /fne/bin/capability HTTP/1.1..Accept: */*.. +5442 0.000258446 fe80::3608:256c:365:cc73:57403 fe80::3608:256c:365:cc73:55555 2388258646 456 000001c8000004cf000000000000000b00010000000002000000100007025343 ..............................SCHNEIDR......M.DE +6102 2.091921568 fe80::3608:256c:365:cc73:55555 fe80::3608:256c:365:cc73:57403 741763702 1280 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 1151..Content-T +4528 0.000000000 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888051 51 0001000102022a6e65742e7463703a2f2f6465736b746f702d366a6c336b6b6f ......*net.tcp://desktop-6jl3kko/LDS/Announcemen +4530 0.000250816 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888102 23 09156170706c69636174696f6e2f6e65676f7469617465 ..application/negotiate +4532 0.001744509 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 4053264646 1 0a . +4534 0.002757072 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888125 5 160100006e ....n +4536 0.002873659 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888130 110 606c06062b0601050502a0623060a01a3018060a2b06010401823702020a060a `l..+......b0`..0...+.....7.....+.....7....B.@NT +4538 0.003501892 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 4053264647 5 160100010f ..... +4540 0.003660202 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 4053264652 271 a182010b30820107a0030a0101a10c060a2b06010401823702020aa281f10481 ....0............+.....7.........NTLMSSP........ +4542 0.004431725 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888240 5 1601000079 ....y +4544 0.004543066 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888245 121 a1773075a0030a0101a25a04584e544c4d535350000300000000000000580000 .w0u......Z.XNTLMSSP.........X.......X.......X.. +4546 0.005491018 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 4053264923 5 140100001d ..... +4549 0.005660772 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 4053264928 29 a11b3019a0030a0100a312041001000000ba56a89c2363553400000000 ..0...............V..#cU4.... +4552 0.006338358 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888366 21 110000000100000058eead14447b8ee3010000007a ........X...D{......z +4554 0.006574154 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 4053264957 21 11000000010000009fb87b3e483ee8050100000081 ..........{>H>....... +4556 0.006924152 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090888387 1229 c904000001000000a2edc78dbcd63fb50200000032953efdf2a4823aa8d71d02 ..............?.....2.>....:.....sR.{.....c-...= +4558 0.007309914 fe80::3608:256c:365:cc73:56877 fe80::3608:256c:365:cc73:808 4090889616 21 1100000001000000e90e9bea94f9a44603000000ea ...............F..... +4560 0.009652376 fe80::3608:256c:365:cc73:808 fe80::3608:256c:365:cc73:56877 4053264978 21 11000000010000004d46f93b5dcfbbd20200000085 ........MF.;]........ +813 0.000000000 ::1:57377 ::1:80 3523133115 347 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +815 0.001203299 ::1:80 ::1:57377 1710872652 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +817 0.002202749 ::1:57377 ::1:80 3523133462 354 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +819 0.005168915 ::1:80 ::1:57377 1710873548 25 485454502f312e312031303020436f6e74696e75650d0a0d0a HTTP/1.1 100 Continue.... +821 0.005508900 ::1:57377 ::1:80 3523133816 23 224576656e74486973746f72697a65725f313838363822 "EventHistorizer_18868" +825 0.006425858 ::1:80 ::1:57377 1710873573 176 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 0..Server: Micr +1047 0.000000000 ::1:57383 ::1:80 1603206106 315 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +1049 0.000979185 ::1:80 ::1:57383 2373481639 896 485454502f312e312034303120556e617574686f72697a65640d0a436f6e7465 HTTP/1.1 401 Unauthorized..Content-Type: text/ht +1051 0.002200127 ::1:57383 ::1:80 1603206421 354 504f5354202f7063732f72756e74696d652f6170692f76312f7761746368646f POST /pcs/runtime/api/v1/watchdog HTTP/1.1..Acce +1053 0.005444765 ::1:80 ::1:57383 2373482535 25 485454502f312e312031303020436f6e74696e75650d0a0d0a HTTP/1.1 100 Continue.... +1055 0.005808353 ::1:57383 ::1:80 1603206775 27 2244656661756c745f5a425f4d784461746150726f766964657222 "Default_ZB_MxDataProvider" +1057 0.006601810 ::1:80 ::1:57383 2373482560 176 485454502f312e3120323030204f4b0d0a436f6e74656e742d4c656e6774683a HTTP/1.1 200 OK..Content-Length: 0..Server: Micr diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin new file mode 100644 index 0000000..61d5b36 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin new file mode 100644 index 0000000..25b7c5c Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_135-to-__1_57384.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_135-to-__1_57384.bin new file mode 100644 index 0000000..8cae186 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_135-to-__1_57384.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_32571-to-__1_57395.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_32571-to-__1_57395.bin new file mode 100644 index 0000000..6c44dfc --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_32571-to-__1_57395.bin @@ -0,0 +1,28 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworiz1kwG6P5YZCkXQMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAJO8WpSE1NwBAAAAAA== +Date: Sat, 25 Apr 2026 07:24:40 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 200 OK +Cache-Control: public,max-age=15770000 +Content-Type: image/svg+xml +Last-Modified: Mon, 06 Apr 2020 03:33:02 GMT +Accept-Ranges: bytes +ETag: "1d60bc413576a8a" +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAABk+u/Uj1fcmgAAAAA= +Date: Sat, 25 Apr 2026 07:24:40 GMT +Content-Length: 394 + + + + + \ No newline at end of file diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_49704-to-__1_57385.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_49704-to-__1_57385.bin new file mode 100644 index 0000000..33df2eb Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_49704-to-__1_57385.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57377-to-__1_80.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57377-to-__1_80.bin new file mode 100644 index 0000000..7cfaaae --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57377-to-__1_80.bin @@ -0,0 +1,16 @@ +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate YIGCBgYrBgEFBQKgeDB2oDAwLgYKKwYBBAGCNwICCgYJKoZIgvcSAQICBgkqhkiG9xIBAgIGCisGAQQBgjcCAh6iQgRATlRMTVNTUAABAAAAl7II4gkACQA3AAAADwAPACgAAAAKAGFKAAAAD0RFU0tUT1AtNkpMM0tLT1dPUktHUk9VUA== +Host: localhost +Content-Length: 0 + +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAAD9GbpjFST6M5W2Yzv9Hsy6GjEgQQAQAAAACBzLTiYYEyAAAAAA== +Host: localhost +Content-Length: 23 +Expect: 100-continue + +"EventHistorizer_18868" \ No newline at end of file diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57383-to-__1_80.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57383-to-__1_80.bin new file mode 100644 index 0000000..88ef17e --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57383-to-__1_80.bin @@ -0,0 +1,16 @@ +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate YGwGBisGAQUFAqBiMGCgGjAYBgorBgEEAYI3AgIKBgorBgEEAYI3AgIeokIEQE5UTE1TU1AAAQAAAJeyCOIJAAkANwAAAA8ADwAoAAAACgBhSgAAAA9ERVNLVE9QLTZKTDNLS09XT1JLR1JPVVA= +Host: localhost +Content-Length: 0 + +POST /pcs/runtime/api/v1/watchdog HTTP/1.1 +Accept: application/json +Content-Type: application/json +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAADx14cIQ1kpBptiOTmvfXUFGjEgQQAQAAAEoXcFCkQ+yzAAAAAA== +Host: localhost +Content-Length: 27 +Expect: 100-continue + +"Default_ZB_MxDataProvider" \ No newline at end of file diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57384-to-__1_135.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57384-to-__1_135.bin new file mode 100644 index 0000000..47fbe09 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57384-to-__1_135.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57385-to-__1_49704.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57385-to-__1_49704.bin new file mode 100644 index 0000000..50cab57 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57385-to-__1_49704.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57395-to-__1_32571.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57395-to-__1_32571.bin new file mode 100644 index 0000000..1727768 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_57395-to-__1_32571.bin @@ -0,0 +1,8 @@ +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate YGwGBisGAQUFAqBiMGCgGjAYBgorBgEEAYI3AgIKBgorBgEEAYI3AgIeokIEQE5UTE1TU1AAAQAAAJeyCOIJAAkANwAAAA8ADwAoAAAACgBhSgAAAA9ERVNLVE9QLTZKTDNLS09XT1JLR1JPVVA= +Host: localhost:32571 + +GET /Images/GoogleMaterialIcons/ic_account_circle_white_24px.svg HTTP/1.1 +Authorization: Negotiate oXcwdaADCgEBoloEWE5UTE1TU1AAAwAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAABXCiOIKAGFKAAAADzgveZp4k+N6WsX4ScLUsy6jEgQQAQAAAE34eZ8KHRk7AAAAAA== +Host: localhost:32571 + diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_80-to-__1_57377.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_80-to-__1_57377.bin new file mode 100644 index 0000000..dc3ab5a --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_80-to-__1_57377.bin @@ -0,0 +1,21 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworifwNWHnj9CMmfXQMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIAN7mo4+E1NwBAAAAAA== +Date: Sat, 25 Apr 2026 07:24:32 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 100 Continue + +HTTP/1.1 200 OK +Content-Length: 0 +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAAAXL2SVRtMXAAAAAAA= +Date: Sat, 25 Apr 2026 07:24:32 GMT + diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_80-to-__1_57383.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_80-to-__1_57383.bin new file mode 100644 index 0000000..d69d6e5 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-__1_80-to-__1_57383.bin @@ -0,0 +1,21 @@ +HTTP/1.1 401 Unauthorized +Content-Type: text/html; charset=us-ascii +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oYIBCzCCAQegAwoBAaEMBgorBgEEAYI3AgIKooHxBIHuTlRMTVNTUAACAAAAHgAeADgAAAAVworiAPfIB9NnYEKgXQMAAAAAAJgAmABWAAAACgBhSgAAAA9EAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwACAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8AAQAeAEQARQBTAEsAVABPAFAALQA2AEoATAAzAEsASwBPAAQAHgBEAEUAUwBLAFQATwBQAC0ANgBKAEwAMwBLAEsATwADAB4ARABFAFMASwBUAE8AUAAtADYASgBMADMASwBLAE8ABwAIANv2GJCE1NwBAAAAAA== +Date: Sat, 25 Apr 2026 07:24:32 GMT +Content-Length: 341 + + +Not Authorized + +

Not Authorized

+

HTTP Error 401. The requested resource requires user authentication.

+ +HTTP/1.1 100 Continue + +HTTP/1.1 200 OK +Content-Length: 0 +Server: Microsoft-HTTPAPI/2.0 +WWW-Authenticate: Negotiate oRswGaADCgEAoxIEEAEAAADgkRvNoXz2IgAAAAA= +Date: Sat, 25 Apr 2026 07:24:32 GMT + diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin new file mode 100644 index 0000000..91d7476 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_443-to-fe80__3608_256c_365_cc73_61633.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57388.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57388.bin new file mode 100644 index 0000000..10255c5 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57388.bin @@ -0,0 +1,79 @@ +HTTP/1.1 200 OK +Content-Length: 13803 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57390.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57390.bin new file mode 100644 index 0000000..c73ff16 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57390.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57401.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57401.bin new file mode 100644 index 0000000..fe2396b --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57401.bin @@ -0,0 +1,85 @@ +HTTP/1.1 200 OK +Content-Length: 13976 +Content-Type: application/xml +Cache-Control: no-cache + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57403.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57403.bin new file mode 100644 index 0000000..5c742e4 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_55555-to-fe80__3608_256c_365_cc73_57403.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_56877-to-fe80__3608_256c_365_cc73_808.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_56877-to-fe80__3608_256c_365_cc73_808.bin new file mode 100644 index 0000000..dcd5ade Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_56877-to-fe80__3608_256c_365_cc73_808.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57388-to-fe80__3608_256c_365_cc73_55555.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57388-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57388-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57390-to-fe80__3608_256c_365_cc73_55555.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57390-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..48dd465 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57390-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57401-to-fe80__3608_256c_365_cc73_55555.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57401-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..83bf4d4 --- /dev/null +++ b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57401-to-fe80__3608_256c_365_cc73_55555.bin @@ -0,0 +1,4 @@ +GET /fne/xml/features?detailed=true HTTP/1.1 +Host: desktop-6jl3kko:55555 +Connection: Close + diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57403-to-fe80__3608_256c_365_cc73_55555.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57403-to-fe80__3608_256c_365_cc73_55555.bin new file mode 100644 index 0000000..390be04 Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_57403-to-fe80__3608_256c_365_cc73_55555.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin new file mode 100644 index 0000000..ef3b68f Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_61633-to-fe80__3608_256c_365_cc73_443.bin differ diff --git a/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_56877.bin b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_56877.bin new file mode 100644 index 0000000..0f3c55a Binary files /dev/null and b/captures/046-service-boundary-write-test-int-123456791/tcp-stream-fe80__3608_256c_365_cc73_808-to-fe80__3608_256c_365_cc73_56877.bin differ diff --git a/captures/047-frida-com-proxy-register/frida-command.txt b/captures/047-frida-com-proxy-register/frida-command.txt new file mode 100644 index 0000000..e0b5059 --- /dev/null +++ b/captures/047-frida-com-proxy-register/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmx-com-proxy-trace.js -- --scenario=register --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\047-frida-com-proxy-register\harness.log --client=MxComProxyTrace diff --git a/captures/047-frida-com-proxy-register/frida-exit.txt b/captures/047-frida-com-proxy-register/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/047-frida-com-proxy-register/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/047-frida-com-proxy-register/frida.stderr.txt b/captures/047-frida-com-proxy-register/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/047-frida-com-proxy-register/frida.stdout.jsonl b/captures/047-frida-com-proxy-register/frida.stdout.jsonl new file mode 100644 index 0000000..1c08ae8 --- /dev/null +++ b/captures/047-frida-com-proxy-register/frida.stdout.jsonl @@ -0,0 +1,1252 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=register --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\047-frida-com-proxy-register\harness.log --client=MxComProxyTrace`... +{"event":"script.loaded","process":49744,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:42:02.715Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:42:02.716Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:42:02.716Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:42:02.717Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=register --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\047-frida-com-proxy-register\harness.log --client=MxComProxyTrace`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453a9a","procFormatPrefix":"00 48 00 00 00 00 40 00 14 00 32 00 00 00 08 00 40 00 46 04 08 41 00 00 00 00 00 00 0b 00 04 00 e4 11 48 00 08 00 08 00 10 01 0c 00 7c 02 70 00 10 00 08 00 00 00 6e 00 63 00 61 00 6c 00 72 00","time":"2026-04-25T10:42:02.865Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453a9a","retval":"0x0","time":"2026-04-25T10:42:02.866Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.867Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:02.867Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:02.868Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:02.869Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:02.870Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:02.870Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:02.872Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:02.872Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc993a","procFormatPrefix":"00 49 00 00 00 00 07 00 24 00 32 00 00 00 84 00 70 00 43 08 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 0b 01 08 00 58 00 0b 00 0c 00 f4 00 18 01 10 00 2c 00 88 00 14 00 2c 01 50 21 18 00 08 00","time":"2026-04-25T10:42:02.886Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc993a","retval":"0x0","time":"2026-04-25T10:42:02.886Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x6f091000","procFormat":"0x6f091bea","procFormatPrefix":"00 68 00 00 00 00 02 00 1c 00 32 00 00 00 00 00 5c 00 47 06 08 05 00 00 01 00 00 00 0b 00 04 00 14 15 0b 00 08 00 56 15 10 01 0c 00 80 15 13 21 10 00 36 13 50 21 14 00 08 00 70 00 18 00 10 00","time":"2026-04-25T10:42:02.887Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x6f091bea","retval":"0x0","time":"2026-04-25T10:42:02.889Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x6f091000","procFormat":"0x6f091c52","procFormatPrefix":"00 68 00 00 00 00 04 00 14 00 32 00 00 00 2a 00 08 00 45 04 08 03 01 00 00 00 00 00 08 00 04 00 a8 15 48 00 08 00 0d 00 13 20 0c 00 b8 15 70 00 10 00 10 00 00 68 00 00 00 00 05 00 14 00 32 00","time":"2026-04-25T10:42:02.889Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x6f091c52","retval":"0x0","time":"2026-04-25T10:42:02.890Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x6f091000","procFormat":"0x6f091c2a","procFormatPrefix":"00 68 00 00 00 00 03 00 0c 00 32 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 04 00 98 15 70 00 08 00 10 00 00 68 00 00 00 00 04 00 14 00 32 00 00 00 2a 00 08 00 45 04 08 03 01 00","time":"2026-04-25T10:42:02.890Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x6f091c2a","retval":"0x0","time":"2026-04-25T10:42:02.891Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:02.900Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:02.904Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:02.905Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:02.909Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:02.910Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:02.911Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.912Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.912Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.913Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.914Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.914Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.915Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.915Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.916Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.917Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.917Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.918Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.918Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.919Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.920Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.921Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.921Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.922Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.922Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.923Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.924Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.924Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.925Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.926Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.927Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:02.927Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:02.928Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.069Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:03.069Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:03.070Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:03.071Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:03.072Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:03.073Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:03.074Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.075Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.076Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:03.077Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:03.079Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:03.081Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:03.082Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:03.082Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.083Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.084Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.084Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.085Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.086Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.086Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.087Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.088Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.088Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.089Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.089Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.090Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.091Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.091Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.092Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.093Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.094Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.095Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.096Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.096Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.097Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.098Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.118Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:03.118Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:03.119Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:03.120Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:03.121Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:03.122Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:03.123Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.124Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.125Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:03.126Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:03.126Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:03.128Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:03.129Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:03.130Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.130Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.131Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.132Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.132Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.133Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.133Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.134Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.135Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.136Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.136Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.137Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.137Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.138Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.139Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.139Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.140Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.140Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.141Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.143Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.143Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.144Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.145Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.145Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.146Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.146Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.147Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","time":"2026-04-25T10:42:03.162Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","time":"2026-04-25T10:42:03.163Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.164Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.165Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.166Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.166Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.167Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.167Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","time":"2026-04-25T10:42:03.169Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","time":"2026-04-25T10:42:03.172Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70061010","procFormat":"0x70062d2a","procFormatPrefix":"00 48 00 00 00 00 00 00 1c 00 32 00 00 00 08 00 78 00 46 06 08 41 00 00 00 00 00 00 0b 00 04 00 02 00 48 00 08 00 08 00 50 21 0c 00 08 00 50 21 10 00 08 00 10 01 14 00 12 00 70 00 18 00 08 00","time":"2026-04-25T10:42:03.187Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70062d2a","retval":"0x0","time":"2026-04-25T10:42:03.188Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70061010","procFormat":"0x70063160","procFormatPrefix":"00 48 00 00 00 00 0e 00 18 00 30 40 00 00 00 00 60 00 24 00 45 06 08 43 01 00 00 00 00 00 08 00 00 00 1a 05 0a 01 04 00 b0 00 48 00 08 00 08 00 13 21 0c 00 e2 00 50 21 10 00 08 00 70 00 14 00","time":"2026-04-25T10:42:03.189Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70063160","retval":"0x0","time":"2026-04-25T10:42:03.189Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.201Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.201Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452826","procFormatPrefix":"00 48 00 00 00 00 05 00 10 00 30 40 00 00 00 00 2a 00 08 00 45 04 08 03 01 00 00 00 00 00 08 00 00 00 38 04 48 00 04 00 0d 00 13 20 08 00 3c 04 70 00 0c 00 08 00 00 48 00 00 00 00 06 00 10 00","time":"2026-04-25T10:42:03.202Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452826","retval":"0x0","time":"2026-04-25T10:42:03.202Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452826","procFormatPrefix":"00 48 00 00 00 00 05 00 10 00 30 40 00 00 00 00 2a 00 08 00 45 04 08 03 01 00 00 00 00 00 08 00 00 00 38 04 48 00 04 00 0d 00 13 20 08 00 3c 04 70 00 0c 00 08 00 00 48 00 00 00 00 06 00 10 00","time":"2026-04-25T10:42:03.203Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452826","retval":"0x0","time":"2026-04-25T10:42:03.203Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.204Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.204Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.275Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:03.276Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:03.276Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:03.277Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:03.278Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:03.278Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:03.280Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.281Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.282Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:03.283Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:03.283Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:03.286Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:03.287Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:03.288Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.288Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.290Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.291Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.291Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.292Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.293Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.294Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.296Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.296Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.297Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.298Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.298Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.299Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.300Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.300Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.301Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.302Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.303Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.303Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.304Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.304Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.305Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.306Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.307Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.307Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.308Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.384Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.385Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.385Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.386Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.386Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.387Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.387Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.388Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.389Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.389Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.390Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.391Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.391Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.392Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.393Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.394Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.395Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.395Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.396Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.397Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.397Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.398Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.398Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.399Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.400Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.401Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.402Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.402Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.403Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.404Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.405Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.406Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.407Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.407Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.408Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.409Z"} +{"event":"ndr.client.enter","callerModule":"MPCLIENT.DLL","stubDesc":"0x6a29ede0","procFormat":"0x6a2aeeb8","procFormatPrefix":"00 68 00 00 00 00 29 00 10 00 32 00 00 00 00 00 88 02 44 03 08 01 00 00 00 00 00 00 12 01 04 00 a2 06 50 21 08 00 10 00 70 00 0c 00 08 00 00 68 00 00 00 00 2a 00 14 00 32 00 00 00 08 00 24 00","time":"2026-04-25T10:42:03.410Z"} +{"event":"ndr.client.leave","callerModule":"MPCLIENT.DLL","procFormat":"0x6a2aeeb8","retval":"0x0","time":"2026-04-25T10:42:03.412Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.419Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.420Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.420Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.421Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.421Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.422Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.422Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.423Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.424Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.425Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.426Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.426Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.427Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.427Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.428Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.429Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.430Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.430Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.431Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.431Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.432Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.432Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.433Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.434Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.435Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:03.435Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:42:03.436Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:42:03.437Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:03.438Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:03.438Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.439Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.440Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.441Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.441Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.442Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.443Z"} +{"event":"ndr.client.enter","callerModule":"MPCLIENT.DLL","stubDesc":"0x6a29ede0","procFormat":"0x6a2aef88","procFormatPrefix":"00 68 00 00 00 00 2d 00 20 00 32 00 00 00 4c 00 40 00 47 07 08 07 01 00 01 00 00 00 0a 01 04 00 10 00 48 00 08 00 08 00 0b 01 0c 00 d0 06 50 21 10 00 08 00 13 20 14 00 e0 06 50 21 18 00 10 00","time":"2026-04-25T10:42:03.444Z"} +{"event":"ndr.client.leave","callerModule":"MPCLIENT.DLL","procFormat":"0x6a2aef88","retval":"0x0","time":"2026-04-25T10:42:03.445Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.446Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.447Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.447Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.448Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.449Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.450Z"} +{"event":"ndr.client.enter","callerModule":"MPCLIENT.DLL","stubDesc":"0x6a29ede0","procFormat":"0x6a2aef88","procFormatPrefix":"00 68 00 00 00 00 2d 00 20 00 32 00 00 00 4c 00 40 00 47 07 08 07 01 00 01 00 00 00 0a 01 04 00 10 00 48 00 08 00 08 00 0b 01 0c 00 d0 06 50 21 10 00 08 00 13 20 14 00 e0 06 50 21 18 00 10 00","time":"2026-04-25T10:42:03.450Z"} +{"event":"ndr.client.leave","callerModule":"MPCLIENT.DLL","procFormat":"0x6a2aef88","retval":"0x0","time":"2026-04-25T10:42:03.451Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.452Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.452Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.453Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.454Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.454Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.455Z"} +{"event":"ndr.client.enter","callerModule":"MPCLIENT.DLL","stubDesc":"0x6a29ede0","procFormat":"0x6a2aef88","procFormatPrefix":"00 68 00 00 00 00 2d 00 20 00 32 00 00 00 4c 00 40 00 47 07 08 07 01 00 01 00 00 00 0a 01 04 00 10 00 48 00 08 00 08 00 0b 01 0c 00 d0 06 50 21 10 00 08 00 13 20 14 00 e0 06 50 21 18 00 10 00","time":"2026-04-25T10:42:03.456Z"} +{"event":"ndr.client.leave","callerModule":"MPCLIENT.DLL","procFormat":"0x6a2aef88","retval":"0x0","time":"2026-04-25T10:42:03.456Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.501Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:03.501Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:03.502Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:03.503Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:03.504Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:03.504Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:03.505Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:03.506Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:03.507Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:03.508Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:03.509Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:03.512Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:03.512Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:03.513Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.514Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.514Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.515Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.516Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.517Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.518Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.519Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.519Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.520Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.521Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.521Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.523Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.524Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.525Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.525Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.526Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.526Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.527Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.528Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.528Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.529Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.530Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.530Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.531Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.532Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.532Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.533Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.534Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:03.535Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:03.535Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76f11008","procFormat":"0x76f151c4","procFormatPrefix":"00 48 00 00 00 00 82 00 24 00 31 04 00 00 00 5c 10 00 5c 00 47 09 08 07 01 00 01 00 00 00 0b 00 00 00 66 1b 0b 01 04 00 b2 01 48 00 08 00 08 00 48 00 0c 00 08 00 0b 01 10 00 72 1b 50 21 14 00","time":"2026-04-25T10:42:05.398Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76f151c4","retval":"0x0","time":"2026-04-25T10:42:05.399Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76f11008","procFormat":"0x76f13b80","procFormatPrefix":"00 48 00 00 00 00 1f 00 10 00 30 40 00 00 00 00 24 00 34 00 46 04 08 05 00 00 01 00 00 00 08 00 00 00 16 0b 0b 01 04 00 d6 00 12 21 08 00 1a 00 70 00 0c 00 08 00 00 48 00 00 00 00 20 00 10 00","time":"2026-04-25T10:42:05.399Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76f13b80","retval":"0x0","time":"2026-04-25T10:42:05.399Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76f11008","procFormat":"0x76f134c2","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 08 00 30 40 00 00 00 00 24 00 08 00 44 02","time":"2026-04-25T10:42:05.400Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76f134c2","retval":"0x0","time":"2026-04-25T10:42:05.400Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453a9a","procFormatPrefix":"00 48 00 00 00 00 40 00 14 00 32 00 00 00 08 00 40 00 46 04 08 41 00 00 00 00 00 00 0b 00 04 00 e4 11 48 00 08 00 08 00 10 01 0c 00 7c 02 70 00 10 00 08 00 00 00 6e 00 63 00 61 00 6c 00 72 00","time":"2026-04-25T10:42:05.415Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453a9a","retval":"0x0","time":"2026-04-25T10:42:05.416Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:05.416Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:05.417Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452ac2","procFormatPrefix":"00 48 00 00 00 00 06 00 0c 00 30 48 00 00 00 00 24 00 48 00 44 03 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 12 81 04 00 12 00 70 00 08 00 08 00 00 48 00 00 00 00 07 00 0c 00 30 48 00 00 00 00","time":"2026-04-25T10:42:05.418Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452ac2","retval":"0x0","time":"2026-04-25T10:42:05.418Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.419Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.419Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.420Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.420Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453a9a","procFormatPrefix":"00 48 00 00 00 00 40 00 14 00 32 00 00 00 08 00 40 00 46 04 08 41 00 00 00 00 00 00 0b 00 04 00 e4 11 48 00 08 00 08 00 10 01 0c 00 7c 02 70 00 10 00 08 00 00 00 6e 00 63 00 61 00 6c 00 72 00","time":"2026-04-25T10:42:05.422Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453a9a","retval":"0x0","time":"2026-04-25T10:42:05.422Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764530fe","procFormatPrefix":"00 48 00 00 00 00 1c 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 a2 05 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:05.423Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764530fe","retval":"0x0","time":"2026-04-25T10:42:05.424Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452ac2","procFormatPrefix":"00 48 00 00 00 00 06 00 0c 00 30 48 00 00 00 00 24 00 48 00 44 03 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 12 81 04 00 12 00 70 00 08 00 08 00 00 48 00 00 00 00 07 00 0c 00 30 48 00 00 00 00","time":"2026-04-25T10:42:05.425Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452ac2","retval":"0x0","time":"2026-04-25T10:42:05.425Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.426Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.426Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764530fe","procFormatPrefix":"00 48 00 00 00 00 1c 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 a2 05 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:05.427Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764530fe","retval":"0x0","time":"2026-04-25T10:42:05.427Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452ac2","procFormatPrefix":"00 48 00 00 00 00 06 00 0c 00 30 48 00 00 00 00 24 00 48 00 44 03 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 12 81 04 00 12 00 70 00 08 00 08 00 00 48 00 00 00 00 07 00 0c 00 30 48 00 00 00 00","time":"2026-04-25T10:42:05.428Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452ac2","retval":"0x0","time":"2026-04-25T10:42:05.428Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.429Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.429Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.430Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.431Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x6f1f1008","procFormat":"0x6f1f1b4a","procFormatPrefix":"00 48 00 00 00 00 0d 00 10 00 32 00 00 00 08 00 08 00 47 03 08 47 01 00 01 00 00 00 1b 00 04 00 8a 01 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 0e 00 14 00 32 00 00 00 18 00 08 00","time":"2026-04-25T10:42:05.431Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x6f1f1b4a","retval":"0x0","time":"2026-04-25T10:42:05.434Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453a9a","procFormatPrefix":"00 48 00 00 00 00 40 00 14 00 32 00 00 00 08 00 40 00 46 04 08 41 00 00 00 00 00 00 0b 00 04 00 e4 11 48 00 08 00 08 00 10 01 0c 00 7c 02 70 00 10 00 08 00 00 00 6e 00 63 00 61 00 6c 00 72 00","time":"2026-04-25T10:42:05.436Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453a9a","retval":"0x0","time":"2026-04-25T10:42:05.436Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764530fe","procFormatPrefix":"00 48 00 00 00 00 1c 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 a2 05 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:05.437Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453a9a","procFormatPrefix":"00 48 00 00 00 00 40 00 14 00 32 00 00 00 08 00 40 00 46 04 08 41 00 00 00 00 00 00 0b 00 04 00 e4 11 48 00 08 00 08 00 10 01 0c 00 7c 02 70 00 10 00 08 00 00 00 6e 00 63 00 61 00 6c 00 72 00","time":"2026-04-25T10:42:05.438Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764530fe","retval":"0x0","time":"2026-04-25T10:42:05.439Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452ac2","procFormatPrefix":"00 48 00 00 00 00 06 00 0c 00 30 48 00 00 00 00 24 00 48 00 44 03 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 12 81 04 00 12 00 70 00 08 00 08 00 00 48 00 00 00 00 07 00 0c 00 30 48 00 00 00 00","time":"2026-04-25T10:42:05.440Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453a9a","retval":"0x0","time":"2026-04-25T10:42:05.440Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764530fe","procFormatPrefix":"00 48 00 00 00 00 1c 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 a2 05 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:05.441Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452ac2","retval":"0x0","time":"2026-04-25T10:42:05.441Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.442Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764530fe","retval":"0x0","time":"2026-04-25T10:42:05.442Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.443Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.444Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.444Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x6f1f1008","procFormat":"0x6f1f1b4a","procFormatPrefix":"00 48 00 00 00 00 0d 00 10 00 32 00 00 00 08 00 08 00 47 03 08 47 01 00 01 00 00 00 1b 00 04 00 8a 01 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 0e 00 14 00 32 00 00 00 18 00 08 00","time":"2026-04-25T10:42:05.445Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x6f1f1b4a","retval":"0x0","time":"2026-04-25T10:42:05.446Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x6f1f1008","procFormat":"0x6f1f1b4a","procFormatPrefix":"00 48 00 00 00 00 0d 00 10 00 32 00 00 00 08 00 08 00 47 03 08 47 01 00 01 00 00 00 1b 00 04 00 8a 01 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 0e 00 14 00 32 00 00 00 18 00 08 00","time":"2026-04-25T10:42:05.447Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x6f1f1b4a","retval":"0x0","time":"2026-04-25T10:42:05.448Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453848","procFormatPrefix":"00 48 00 00 00 00 37 00 10 00 30 48 00 00 00 00 2c 00 08 00 45 04 08 43 01 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 13 21 08 00 94 10 70 00 0c 00 08 00 00 48 00 00 00 00 38 00 10 00","time":"2026-04-25T10:42:05.449Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453848","retval":"0x0","time":"2026-04-25T10:42:05.450Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764533d4","procFormatPrefix":"00 48 00 00 00 00 28 00 18 00 30 48 00 00 00 00 34 00 24 00 45 06 08 43 01 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 0e 00 13 01 08 00 fc 0a 88 00 0c 00 42 0b 12 21 10 00 50 0b 70 00 14 00","time":"2026-04-25T10:42:05.454Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764533d4","retval":"0x0","time":"2026-04-25T10:42:05.454Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453848","procFormatPrefix":"00 48 00 00 00 00 37 00 10 00 30 48 00 00 00 00 2c 00 08 00 45 04 08 43 01 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 13 21 08 00 94 10 70 00 0c 00 08 00 00 48 00 00 00 00 38 00 10 00","time":"2026-04-25T10:42:05.455Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453848","retval":"0x0","time":"2026-04-25T10:42:05.455Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.463Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.465Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.465Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.467Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.467Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.468Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453a9a","procFormatPrefix":"00 48 00 00 00 00 40 00 14 00 32 00 00 00 08 00 40 00 46 04 08 41 00 00 00 00 00 00 0b 00 04 00 e4 11 48 00 08 00 08 00 10 01 0c 00 7c 02 70 00 10 00 08 00 00 00 6e 00 63 00 61 00 6c 00 72 00","time":"2026-04-25T10:42:05.475Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453a9a","retval":"0x0","time":"2026-04-25T10:42:05.475Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:05.476Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:05.477Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.478Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.478Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76453848","procFormatPrefix":"00 48 00 00 00 00 37 00 10 00 30 48 00 00 00 00 2c 00 08 00 45 04 08 43 01 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 13 21 08 00 94 10 70 00 0c 00 08 00 00 48 00 00 00 00 38 00 10 00","time":"2026-04-25T10:42:05.479Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76453848","retval":"0x0","time":"2026-04-25T10:42:05.479Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452ac2","procFormatPrefix":"00 48 00 00 00 00 06 00 0c 00 30 48 00 00 00 00 24 00 48 00 44 03 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 12 81 04 00 12 00 70 00 08 00 08 00 00 48 00 00 00 00 07 00 0c 00 30 48 00 00 00 00","time":"2026-04-25T10:42:05.480Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764533d4","procFormatPrefix":"00 48 00 00 00 00 28 00 18 00 30 48 00 00 00 00 34 00 24 00 45 06 08 43 01 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 0e 00 13 01 08 00 fc 0a 88 00 0c 00 42 0b 12 21 10 00 50 0b 70 00 14 00","time":"2026-04-25T10:42:05.481Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452ac2","retval":"0x0","time":"2026-04-25T10:42:05.481Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764533d4","retval":"0x0","time":"2026-04-25T10:42:05.481Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:05.482Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:05.483Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.491Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.492Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.493Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.494Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.494Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.495Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.498Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.500Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.512Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.513Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.513Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.514Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.515Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.516Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.519Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.520Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.529Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.530Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.530Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.531Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.532Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.533Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:05.534Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:05.537Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.539Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.540Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.541Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.542Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.542Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.543Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:05.544Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:05.547Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.789Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.790Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.791Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.792Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.793Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.793Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.797Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.798Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.804Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.805Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.806Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.807Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.808Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.808Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.813Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.814Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.820Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.821Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.822Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.823Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.824Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.825Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:05.826Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:05.834Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.838Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.839Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.840Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.842Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.842Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.843Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:05.845Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:05.851Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.858Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.859Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.860Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.861Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.862Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.863Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.867Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.868Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.878Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.879Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.880Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.881Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.882Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.883Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.886Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.887Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.895Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.895Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.896Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.897Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.898Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.899Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.905Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.907Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.916Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.917Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.919Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.920Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.921Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.923Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.927Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.928Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.935Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.936Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.937Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.938Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.939Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.939Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.943Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.945Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.954Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.955Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.956Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:05.957Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.959Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:05.960Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:05.964Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:05.965Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.023Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.024Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.024Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.026Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.026Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.027Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.030Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.032Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.038Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.039Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.040Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.041Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.042Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.042Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.047Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.048Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.054Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.055Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.055Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.056Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.057Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.057Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:06.059Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:06.064Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.066Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.067Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.068Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.069Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.069Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.070Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:06.071Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:06.077Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.081Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.083Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.083Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.084Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.085Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.086Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.089Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.090Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.097Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.098Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.099Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.100Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.101Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.102Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.106Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.107Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.114Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.114Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.115Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.116Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.116Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.117Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.121Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.122Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.128Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.129Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.130Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.131Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.132Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.132Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.136Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.137Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.144Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.145Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.146Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.147Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.148Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.149Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.154Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.155Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.162Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.163Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.163Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:06.165Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.165Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:06.166Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:06.169Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:06.170Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.227Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.228Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.228Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.229Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.230Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.231Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.234Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.236Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.244Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.245Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.246Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.247Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.248Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.249Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.252Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.253Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.259Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.260Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.260Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.261Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.262Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.263Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:10.265Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:10.271Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.274Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.275Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.276Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.277Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.278Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.279Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:10.280Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:10.286Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.290Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.291Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.292Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.293Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.294Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.295Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.299Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.301Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.307Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.308Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.309Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.310Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.311Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.311Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.314Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.316Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.322Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.323Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.324Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.325Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.325Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.326Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.329Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.331Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.337Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.338Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.339Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.340Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.341Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.342Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.345Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.346Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.352Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.353Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.353Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.354Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.355Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.356Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.359Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.360Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.366Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.366Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.367Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:10.368Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.368Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:10.369Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:10.372Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:10.373Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.446Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:10.446Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:10.447Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:10.448Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:10.448Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:10.449Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:10.450Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:10.450Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:10.452Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:10.453Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:10.453Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:10.456Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:10.456Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:10.457Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.457Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.458Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.459Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.460Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.461Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.461Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.462Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.463Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.464Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.464Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.465Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.466Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.467Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.468Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.468Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.469Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.470Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.471Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.472Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.472Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.473Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.473Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.475Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.475Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.476Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.477Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.478Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.478Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.479Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.480Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.482Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.510Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x695267e0","procFormat":"0x69524d96","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 08 00 24 00 44 03 08 41 00 00 00 00 00 00 48 00 04 00 08 00 50 21 08 00 0e 00 70 00 0c 00 08 00 33 6c 00 00 00 00 06 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","time":"2026-04-25T10:42:10.518Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x69524d96","retval":"0x0","time":"2026-04-25T10:42:10.519Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.521Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.532Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:42:10.537Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:42:10.539Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x647a4170","procFormat":"0x647a412c","procFormatPrefix":"33 6c 00 00 00 00 03 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 04 00 08 00 00 00 08 00 44 01 08 41 00 00 00 00 00 00 70 00 04 00","time":"2026-04-25T10:42:10.544Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x647a412c","retval":"0x0","time":"2026-04-25T10:42:10.546Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.546Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.573Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.578Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:10.579Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:10.579Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:10.580Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:10.581Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:10.582Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:10.583Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:10.583Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:10.584Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:10.585Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:10.586Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:10.588Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:10.589Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:10.590Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.591Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.591Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.592Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.593Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.594Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.595Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.595Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.596Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.597Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.598Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.599Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.599Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.600Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.601Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.602Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.603Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.604Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.605Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.605Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.606Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.607Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.608Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.609Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.610Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.611Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.612Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.612Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.613Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.614Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.615Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.615Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.616Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.617Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.617Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.618Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.619Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.619Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.620Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.621Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.621Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.622Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.622Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.623Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.624Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.624Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.625Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.626Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.626Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.627Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.628Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.629Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.630Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.630Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.631Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.634Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.634Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.635Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.635Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.636Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.637Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.638Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.664Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.666Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.675Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe97e4","procFormatPrefix":"00 48 00 00 00 00 05 00 1c 00 30 40 00 00 00 00 34 00 08 00 46 07 08 01 00 00 00 00 00 00 08 00 00 00 12 00 48 00 04 00 08 00 0b 01 08 00 18 00 48 00 0c 00 08 00 0b 00 10 00 1e 00 0b 01 14 00","time":"2026-04-25T10:42:10.681Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe97e4","retval":"0x1","time":"2026-04-25T10:42:10.682Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.683Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.686Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.687Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.712Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","time":"2026-04-25T10:42:10.715Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","time":"2026-04-25T10:42:10.716Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.721Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.723Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:10.724Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:10.724Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.725Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:10.726Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:10.727Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:10.728Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:10.728Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:10.729Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:10.731Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:10.732Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:10.733Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:10.736Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:10.737Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:10.738Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.739Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.740Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.740Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.741Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.742Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.743Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.743Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.743Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.745Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.745Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.746Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.747Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.748Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.749Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.750Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.751Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.752Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.753Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.754Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.755Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.756Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.757Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.758Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.758Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.759Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.760Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.761Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.762Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.763Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.763Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.764Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.765Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.767Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.768Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.769Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.769Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.770Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.771Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.772Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.772Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.773Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.774Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.775Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.776Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.776Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:42:10.777Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.778Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:42:10.779Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.786Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:10.787Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:10.787Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:10.789Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:10.789Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:10.790Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:10.791Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:10.792Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:10.793Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:10.794Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:10.795Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:10.797Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:10.798Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:10.799Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.800Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.801Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.802Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.802Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.803Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.804Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.805Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.806Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.806Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.807Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.808Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.809Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.809Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.810Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.811Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.812Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.812Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.813Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.814Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.814Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.815Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.816Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.817Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.817Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.818Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.819Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.827Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:10.828Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:10.829Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:10.830Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:10.831Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:10.832Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:10.833Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:10.834Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:10.835Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:10.836Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:10.837Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:10.839Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:10.840Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:10.841Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.842Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.842Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.843Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.844Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.845Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.846Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.846Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.847Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.848Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.849Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.850Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.850Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.851Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.851Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.852Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.853Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.853Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.854Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.855Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.856Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.857Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.858Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.859Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.860Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.861Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.861Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.862Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.863Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.863Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.864Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.866Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.867Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.867Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.868Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.869Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.869Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:10.870Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:10.871Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.872Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.898Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x695267e0","procFormat":"0x69524e3e","procFormatPrefix":"33 6c 00 00 00 00 09 00 10 00 08 00 08 00 45 03 08 43 01 00 00 00 00 00 48 00 04 00 08 00 13 41 08 00 4a 00 70 00 0c 00 08 00 33 6c 00 00 00 00 0a 00 10 00 00 00 24 00 46 03 08 41 00 00 00 00","time":"2026-04-25T10:42:10.899Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x69524e3e","retval":"0x0","time":"2026-04-25T10:42:10.901Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8fc","procFormatPrefix":"33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00 00 00 0b 00 04 00 f4 1a 0b 00 08 00 06 1b 13 00 0c 00 18 1b 70 00 10 00 08 00 33 6c 00 00 00 00 03 00 18 00 44 00 08 00 47 05","time":"2026-04-25T10:42:10.902Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8fc","retval":"0x0","time":"2026-04-25T10:42:10.906Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:42:10.911Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:42:10.913Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","time":"2026-04-25T10:42:10.914Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x755362b8","procFormatPrefix":"00 68 00 00 00 00 07 00 24 00 32 00 00 00 58 00 24 00 47 08 08 47 01 00 01 00 00 00 08 00 04 00 72 01 48 01 08 00 0b 00 88 00 0c 00 34 04 0b 00 10 00 3e 04 88 00 14 00 54 04 13 00 18 00 5e 04","time":"2026-04-25T10:42:10.915Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755362b8","retval":"0x0","time":"2026-04-25T10:42:10.915Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x0","time":"2026-04-25T10:42:10.918Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe97e4","procFormatPrefix":"00 48 00 00 00 00 05 00 1c 00 30 40 00 00 00 00 34 00 08 00 46 07 08 01 00 00 00 00 00 00 08 00 00 00 12 00 48 00 04 00 08 00 0b 01 08 00 18 00 48 00 0c 00 08 00 0b 00 10 00 1e 00 0b 01 14 00","time":"2026-04-25T10:42:10.919Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe97e4","retval":"0x1","time":"2026-04-25T10:42:10.920Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x695267e0","procFormat":"0x69524e3e","procFormatPrefix":"33 6c 00 00 00 00 09 00 10 00 08 00 08 00 45 03 08 43 01 00 00 00 00 00 48 00 04 00 08 00 13 41 08 00 4a 00 70 00 0c 00 08 00 33 6c 00 00 00 00 0a 00 10 00 00 00 24 00 46 03 08 41 00 00 00 00","time":"2026-04-25T10:42:10.925Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x69524e3e","retval":"0x0","time":"2026-04-25T10:42:10.926Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe97e4","procFormatPrefix":"00 48 00 00 00 00 05 00 1c 00 30 40 00 00 00 00 34 00 08 00 46 07 08 01 00 00 00 00 00 00 08 00 00 00 12 00 48 00 04 00 08 00 0b 01 08 00 18 00 48 00 0c 00 08 00 0b 00 10 00 1e 00 0b 01 14 00","time":"2026-04-25T10:42:11.048Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe97e4","retval":"0x1","time":"2026-04-25T10:42:11.050Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177652","procFormatPrefix":"33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 48 00 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 06 00 1c 00","time":"2026-04-25T10:42:11.211Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177652","retval":"0x0","time":"2026-04-25T10:42:11.212Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177688","procFormatPrefix":"33 6c 00 00 00 00 06 00 1c 00 20 00 08 00 46 06 08 05 00 00 01 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 48 00 10 00 08 00 0b 01 14 00 4c 00 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:42:11.212Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177688","retval":"0x0","time":"2026-04-25T10:42:11.213Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177688","procFormatPrefix":"33 6c 00 00 00 00 06 00 1c 00 20 00 08 00 46 06 08 05 00 00 01 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 48 00 10 00 08 00 0b 01 14 00 4c 00 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:42:11.317Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177688","retval":"0x0","time":"2026-04-25T10:42:11.318Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x641776c4","procFormatPrefix":"33 6c 00 00 00 00 07 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 48 00 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 08 00 18 00","time":"2026-04-25T10:42:11.319Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x641776c4","retval":"0x0","time":"2026-04-25T10:42:11.319Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x641776fa","procFormatPrefix":"33 6c 00 00 00 00 08 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 48 00 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 09 00 10 00","time":"2026-04-25T10:42:14.153Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x641776fa","retval":"0x0","time":"2026-04-25T10:42:14.154Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177652","procFormatPrefix":"33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 48 00 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 06 00 1c 00","time":"2026-04-25T10:42:14.155Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177652","retval":"0x0","time":"2026-04-25T10:42:14.155Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177688","procFormatPrefix":"33 6c 00 00 00 00 06 00 1c 00 20 00 08 00 46 06 08 05 00 00 01 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 48 00 10 00 08 00 0b 01 14 00 4c 00 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:42:14.157Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177688","retval":"0x0","time":"2026-04-25T10:42:14.158Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.166Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.167Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536304","procFormatPrefix":"00 68 00 00 00 00 08 00 1c 00 32 00 00 00 3c 00 08 00 46 05 08 45 00 00 01 00 00 00 08 00 04 00 72 01 48 00 08 00 0b 00 88 00 10 00 74 04 0b 00 14 00 7e 04 70 00 18 00 10 00 00 68 00 00 00 00","time":"2026-04-25T10:42:14.169Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536304","retval":"0x0","time":"2026-04-25T10:42:14.169Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","time":"2026-04-25T10:42:14.171Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x0","time":"2026-04-25T10:42:14.176Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.218Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.252Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.254Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:14.255Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:42:14.255Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452796","procFormatPrefix":"00 48 00 00 00 00 03 00 24 00 30 40 00 00 00 00 58 00 24 00 47 09 08 07 01 00 01 00 00 00 08 00 00 00 44 02 88 00 04 00 48 02 0b 01 08 00 56 02 13 20 0c 00 78 02 1b 01 10 00 b6 02 58 01 14 00","time":"2026-04-25T10:42:14.256Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452796","retval":"0x0","time":"2026-04-25T10:42:14.257Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:42:14.258Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:42:14.258Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.261Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.261Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.295Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.296Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.297Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.298Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.332Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.333Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.333Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.334Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.335Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:42:14.336Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:42:14.369Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.556Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.556Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.557Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.558Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.559Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.559Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.563Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.564Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.572Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.572Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.573Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.574Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.575Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.576Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.580Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.581Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.589Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.590Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.590Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.592Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.592Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.593Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:14.594Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:14.602Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.604Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.605Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.606Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.607Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.608Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.608Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:14.610Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:14.616Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.621Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.622Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.622Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.623Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.624Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.625Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.628Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.630Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.638Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.639Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.640Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.641Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.642Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.643Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.647Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.648Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.655Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.656Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.657Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.658Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.658Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.659Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.662Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.663Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.670Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.671Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.671Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.672Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.673Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.674Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.678Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.679Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.687Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.688Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.689Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.690Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.690Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.691Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.694Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.695Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.703Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.704Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.705Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:14.706Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.707Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:14.707Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:14.713Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:14.715Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.037Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.038Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.039Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.040Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.041Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.042Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.047Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.049Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.058Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.059Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.060Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.061Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.062Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.062Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.066Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.068Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.075Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.075Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.076Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.077Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.078Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.078Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:18.080Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:18.085Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.087Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.088Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.089Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.090Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.090Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.091Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70521028","procFormat":"0x705262de","procFormatPrefix":"00 48 00 00 00 00 17 00 20 00 32 00 00 00 1e 00 08 00 47 06 08 07 01 00 01 00 00 00 48 00 04 00 06 00 48 00 08 00 0b 00 48 00 10 00 08 00 0b 01 14 00 24 07 13 20 18 00 3a 07 70 00 1c 00 08 00","time":"2026-04-25T10:42:18.093Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x705262de","retval":"0x0","time":"2026-04-25T10:42:18.098Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.102Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.104Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.105Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.107Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.109Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.109Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.114Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.114Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.124Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.125Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.126Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.127Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.128Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.129Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.135Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.136Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.143Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.143Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.144Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.145Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.146Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.146Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.150Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.151Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.157Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.158Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.159Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.160Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.161Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.162Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.165Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.166Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.172Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.173Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.173Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.174Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.175Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.175Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.179Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.180Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.185Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.186Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e1860","procFormatPrefix":"00 48 00 00 00 00 10 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 03 01 00 00 00 00 00 0b 00 00 00 9c 01 13 21 04 00 ca 01 70 00 08 00 08 00 00 48 00 00 00 00 11 00 14 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.186Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e1860","retval":"0x0","time":"2026-04-25T10:42:18.187Z"} +{"event":"ndr.client.enter","callerModule":"dhcpcsvc.DLL","stubDesc":"0x704e1010","procFormat":"0x704e18cc","procFormatPrefix":"00 48 00 00 00 00 12 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 76 02 1b 01 04 00 c8 02 70 00 08 00 08 00 00 48 00 00 00 00 13 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.188Z"} +{"event":"ndr.client.leave","callerModule":"dhcpcsvc.DLL","procFormat":"0x704e18cc","retval":"0x0","time":"2026-04-25T10:42:18.189Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x70501000","procFormat":"0x70501488","procFormatPrefix":"00 48 00 00 00 00 0b 00 0c 00 31 04 00 00 00 5c 00 00 08 00 47 03 08 07 01 00 01 00 00 00 0b 00 00 00 7e 02 1b 01 04 00 c2 02 70 00 08 00 08 00 00 48 00 00 00 00 0c 00 10 00 31 04 00 00 00 5c","time":"2026-04-25T10:42:18.193Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x70501488","retval":"0x0","time":"2026-04-25T10:42:18.194Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe982c","procFormatPrefix":"00 48 00 00 00 00 06 00 08 00 30 40 00 00 00 00 24 00 08 00 44 02 08 01 00 00 00 00 00 00 08 00 00 00 12 00 70 00 04 00 08 00 00 48 00 00 00 00 00 00 0c 00 30 40 00 00 00 00 24 00 08 00 46 03","time":"2026-04-25T10:42:18.222Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe982c","retval":"0x1","time":"2026-04-25T10:42:18.223Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe96ac","procFormatPrefix":"00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00 18 01 00 00 0e 00 00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00","time":"2026-04-25T10:42:18.224Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96ac","retval":"0x0","time":"2026-04-25T10:42:18.225Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x76452d8c","procFormatPrefix":"00 48 00 00 00 00 10 00 14 00 30 48 00 00 00 00 2c 00 40 00 46 05 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 0b 00 04 00 80 02 48 00 08 00 08 00 10 01 0c 00 dc 01 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.229Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452d8c","retval":"0x0","time":"2026-04-25T10:42:18.229Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x764529b4","procFormatPrefix":"00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04 08 41 00 00 00 00 00 00 08 00 00 00 0a 00 48 00 04 00 08 00 12 81 08 00 12 00 70 00 0c 00 08 00 00 48 00 00 00 00 02 00 08 00","time":"2026-04-25T10:42:18.230Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764529b4","retval":"0x0","time":"2026-04-25T10:42:18.231Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x764510a0","procFormat":"0x7645298a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 30 e8 00 00 00 00 38 00 40 00 44 02 08 41 00 00 00 00 00 00 18 01 00 00 06 00 70 00 04 00 08 00 00 48 00 00 00 00 01 00 10 00 30 48 00 00 00 00 2c 00 48 00 44 04","time":"2026-04-25T10:42:18.232Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645298a","retval":"0x0","time":"2026-04-25T10:42:18.232Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe9988","procFormat":"0x70fe968a","procFormatPrefix":"00 48 00 00 00 00 00 00 08 00 32 00 00 00 00 00 38 00 40 01 08 01 00 00 00 00 00 00 10 01 04 00 06 00 00 48 00 00 00 00 01 00 04 00 30 e0 00 00 00 00 38 00 38 00 40 01 08 01 00 00 00 00 00 00","time":"2026-04-25T10:42:18.233Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76fc2140","procFormat":"0x76fc9894","procFormatPrefix":"00 49 00 00 00 00 03 00 20 00 32 00 00 00 84 00 70 00 43 07 08 47 01 00 01 00 00 00 0a 00 04 00 02 00 0b 00 08 00 a0 00 18 01 0c 00 2c 00 88 00 10 00 a4 00 50 21 14 00 08 00 13 01 18 00 b2 00","time":"2026-04-25T10:42:18.234Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76fc9894","retval":"0x0","time":"2026-04-25T10:42:18.236Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe968a","retval":"0x0","time":"2026-04-25T10:42:18.236Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe96d0","procFormatPrefix":"00 48 00 00 00 00 00 00 10 00 30 40 00 00 00 00 2c 00 08 00 46 04 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 01 04 00 18 00 48 00 08 00 08 00 70 00 0c 00 08 00 00 48 00 00 00 00 01 00 0c 00","time":"2026-04-25T10:42:18.237Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe96d0","retval":"0x1","time":"2026-04-25T10:42:18.240Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9736","procFormatPrefix":"00 48 00 00 00 00 02 00 0c 00 30 40 00 00 00 00 24 00 08 00 45 03 08 01 00 00 00 00 00 00 08 00 00 00 12 00 13 20 04 00 1a 00 70 00 08 00 08 00 00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00","time":"2026-04-25T10:42:18.240Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9736","retval":"0x1","time":"2026-04-25T10:42:18.241Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.242Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.242Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.243Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.243Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.244Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.245Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.246Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.246Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.247Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.247Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.248Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.249Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.249Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.250Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.250Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.252Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.253Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.254Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.256Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.257Z"} +{"event":"ndr.client.enter","callerModule":"LoggerDLL.dll","stubDesc":"0x70fe99e8","procFormat":"0x70fe9766","procFormatPrefix":"00 48 00 00 00 00 03 00 14 00 30 40 00 00 00 00 24 00 24 00 46 05 08 01 00 00 00 00 00 00 08 00 00 00 12 00 0b 00 04 00 1e 00 0b 01 08 00 18 00 50 21 0c 00 08 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:42:18.258Z"} +{"event":"ndr.client.leave","callerModule":"LoggerDLL.dll","procFormat":"0x70fe9766","retval":"0x1","time":"2026-04-25T10:42:18.259Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/047-frida-com-proxy-register/harness.log b/captures/047-frida-com-proxy-register/harness.log new file mode 100644 index 0000000..3983607 --- /dev/null +++ b/captures/047-frida-com-proxy-register/harness.log @@ -0,0 +1,6 @@ +2026-04-25T10:42:02.8320883+00:00 harness.start {"Scenario":"register","ClientName":"MxComProxyTrace","Tags":[],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T10:42:10.4341177+00:00 mx.register.begin {"ClientName":"MxComProxyTrace"} +2026-04-25T10:42:11.0831983+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T10:42:14.1351072+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T10:42:18.2067288+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T10:42:18.2127128+00:00 harness.stop {} diff --git a/captures/048-frida-direct-nmx-registerengine2/frida-command.txt b/captures/048-frida-direct-nmx-registerengine2/frida-command.txt new file mode 100644 index 0000000..92ac904 --- /dev/null +++ b/captures/048-frida-direct-nmx-registerengine2/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmx-com-proxy-trace.js -- --engine-id=0x7100 --engine-name=NmxComProxyWire --version=6 --hold-seconds=1 diff --git a/captures/048-frida-direct-nmx-registerengine2/frida-exit.txt b/captures/048-frida-direct-nmx-registerengine2/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/048-frida-direct-nmx-registerengine2/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/048-frida-direct-nmx-registerengine2/frida.stderr.txt b/captures/048-frida-direct-nmx-registerengine2/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/048-frida-direct-nmx-registerengine2/frida.stdout.jsonl b/captures/048-frida-direct-nmx-registerengine2/frida.stdout.jsonl new file mode 100644 index 0000000..0e13e69 --- /dev/null +++ b/captures/048-frida-direct-nmx-registerengine2/frida.stdout.jsonl @@ -0,0 +1,66 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7100 --engine-name=NmxComProxyWire --version=6 --hold-seconds=1`... +{"event":"script.loaded","process":16940,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:44:57.945Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:44:57.946Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:44:57.946Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:44:57.947Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7100 --engine-name=NmxComProxyWire --version=6 --hold-seconds=1`. Resuming main thread! +[Local::NmxComHarness.exe ]-> process=x64:False +engine_id=28928 +engine_name=NmxComProxyWire +version=6 +null_callback=False +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","time":"2026-04-25T10:44:58.044Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","time":"2026-04-25T10:44:58.045Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","time":"2026-04-25T10:44:58.047Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:44:58.047Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","time":"2026-04-25T10:44:58.048Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:44:58.048Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","time":"2026-04-25T10:44:58.049Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:44:58.049Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","time":"2026-04-25T10:44:58.052Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","time":"2026-04-25T10:44:58.055Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8d2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 00 00 08 00 47 03 08 41 00 00 00 00 00 00 0b 00 04 00 cc 1a 13 00 08 00 de 1a 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00","time":"2026-04-25T10:44:58.056Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8d2","retval":"0x0","time":"2026-04-25T10:44:58.060Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:44:58.061Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:44:58.062Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x7551a860","procFormat":"0x755394e2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 44 00 08 00 45 03 08 43 01 00 00 00 00 00 0a 01 04 00 0c 00 13 00 08 00 18 00 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","time":"2026-04-25T10:44:58.063Z"}register.begin + +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755394e2","retval":"0x0","time":"2026-04-25T10:44:58.064Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:44:58.064Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:44:58.065Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:44:58.067Z"} +register.ok +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:44:58.068Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:44:58.069Z"} +partner_version=6 +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:44:58.069Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:44:58.070Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:44:58.070Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","time":"2026-04-25T10:44:58.071Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:44:58.072Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","time":"2026-04-25T10:44:58.081Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x755362b8","procFormatPrefix":"00 68 00 00 00 00 07 00 24 00 32 00 00 00 58 00 24 00 47 08 08 47 01 00 01 00 00 00 08 00 04 00 72 01 48 01 08 00 0b 00 88 00 0c 00 34 04 0b 00 10 00 3e 04 88 00 14 00 54 04 13 00 18 00 5e 04","time":"2026-04-25T10:44:58.085Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755362b8","retval":"0x0","time":"2026-04-25T10:44:58.085Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x0","time":"2026-04-25T10:44:58.089Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177790","procFormatPrefix":"33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 50 21 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 03 00 18 00","time":"2026-04-25T10:44:58.092Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177790","retval":"0x0","time":"2026-04-25T10:44:58.093Z"} +unregister.begin +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","time":"2026-04-25T10:44:59.100Z"} +unregister.ok +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x0","time":"2026-04-25T10:44:59.104Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","time":"2026-04-25T10:44:59.106Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:44:59.107Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/049-frida-direct-nmx-registerengine2-varargs/frida-command.txt b/captures/049-frida-direct-nmx-registerengine2-varargs/frida-command.txt new file mode 100644 index 0000000..387bed7 --- /dev/null +++ b/captures/049-frida-direct-nmx-registerengine2-varargs/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\nmx-com-proxy-trace.js -- --engine-id=0x7101 --engine-name=NmxComProxyWire2 --version=6 --hold-seconds=0 diff --git a/captures/049-frida-direct-nmx-registerengine2-varargs/frida-exit.txt b/captures/049-frida-direct-nmx-registerengine2-varargs/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/049-frida-direct-nmx-registerengine2-varargs/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/049-frida-direct-nmx-registerengine2-varargs/frida.stderr.txt b/captures/049-frida-direct-nmx-registerengine2-varargs/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/049-frida-direct-nmx-registerengine2-varargs/frida.stdout.jsonl b/captures/049-frida-direct-nmx-registerengine2-varargs/frida.stdout.jsonl new file mode 100644 index 0000000..d7e5aa3 --- /dev/null +++ b/captures/049-frida-direct-nmx-registerengine2-varargs/frida.stdout.jsonl @@ -0,0 +1,66 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7101 --engine-name=NmxComProxyWire2 --version=6 --hold-seconds=0`... +{"event":"script.loaded","process":50512,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:45:52.753Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:45:52.754Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:45:52.754Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:45:52.754Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7101 --engine-name=NmxComProxyWire2 --version=6 --hold-seconds=0`. Resuming main thread! +[Local::NmxComHarness.exe ]-> process=x64:False +engine_id=28929 +engine_name=NmxComProxyWire2 +version=6 +null_callback=False +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x8fd37c","module":"","asU32":9425788},{"index":3,"value":"0x8fd960","module":"","asU32":9427296},{"index":4,"value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0xd442f0","module":"","asU32":13910768},{"index":8,"value":"0xd46960","module":"","asU32":13920608},{"index":9,"value":"0x8fd548","module":"","asU32":9426248,"bstr":{"ptr":"0x8fd548","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:45:52.856Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","time":"2026-04-25T10:45:52.858Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","varargs":[{"index":2,"value":"0x8fd7b0","module":"","asU32":9426864},{"index":3,"value":"0x8fd7f4","module":"","asU32":9426932,"bstr":{"ptr":"0x8fd7f4","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x0","module":"","asU32":0},{"index":8,"value":"0x8fd858","module":"","asU32":9427032},{"index":9,"value":"0x800","module":"","asU32":2048},{"index":10,"value":"0x8fd7d4","module":"","asU32":9426900,"bstr":{"ptr":"0x8fd7d4","byteLength":0,"charLength":0,"text":""}},{"index":11,"value":"0x8bdc4b17","module":"","asU32":2346470167}],"time":"2026-04-25T10:45:52.861Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:45:52.862Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","varargs":[{"index":2,"value":"0x8fd788","module":"","asU32":9426824},{"index":3,"value":"0x8fd7ec","module":"","asU32":9426924,"bstr":{"ptr":"0x8fd7ec","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":7,"value":"0xd3c468","module":"","asU32":13878376},{"index":8,"value":"0x8fd7b4","module":"","asU32":9426868},{"index":9,"value":"0x8fd814","module":"","asU32":9426964},{"index":10,"value":"0x8fd7bc","module":"","asU32":9426876},{"index":11,"value":"0x8fd840","module":"","asU32":9427008}],"time":"2026-04-25T10:45:52.864Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:45:52.865Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","varargs":[{"index":2,"value":"0x8fd7c4","module":"","asU32":9426884},{"index":3,"value":"0x8fd7fc","module":"","asU32":9426940,"bstr":{"ptr":"0x8fd7fc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":7,"value":"0x8fd7dc","module":"","asU32":9426908,"bstr":{"ptr":"0x8fd7dc","byteLength":0,"charLength":0,"text":""}},{"index":8,"value":"0x8bdc4b1f","module":"","asU32":2346470175},{"index":9,"value":"0xd27020","module":"","asU32":13791264},{"index":10,"value":"0xd2c660","module":"","asU32":13813344},{"index":11,"value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:45:52.866Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:45:52.867Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x8fd980","module":"","asU32":9427328},{"index":3,"value":"0x8fd9dc","module":"","asU32":9427420,"bstr":{"ptr":"0x8fd9dc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":7,"value":"0xd442f0","module":"","asU32":13910768},{"index":8,"value":"0xd46988","module":"","asU32":13920648},{"index":9,"value":"0x8fda08","module":"","asU32":9427464},{"index":10,"value":"0x8fda18","module":"","asU32":9427480},{"index":11,"value":"0x14","module":"","asU32":20}],"time":"2026-04-25T10:45:52.871Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","time":"2026-04-25T10:45:52.875Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8d2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 00 00 08 00 47 03 08 41 00 00 00 00 00 00 0b 00 04 00 cc 1a 13 00 08 00 de 1a 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x8fdcac","module":"","asU32":9428140},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x8fdca4","module":"","asU32":9428132},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8fdcac","module":"","asU32":9428140},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x8fdda8","module":"","asU32":9428392},{"index":11,"value":"0x755a0067","module":"combase.dll","asU32":1968832615}],"time":"2026-04-25T10:45:52.878Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8d2","retval":"0x0","time":"2026-04-25T10:45:52.882Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x8feb30","module":"","asU32":9431856},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x8feb28","module":"","asU32":9431848},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8feb30","module":"","asU32":9431856},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x8feb84","module":"","asU32":9431940},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"time":"2026-04-25T10:45:52.885Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:45:52.887Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x7551a860","procFormat":"0x755394e2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 44 00 08 00 45 03 08 43 01 00 00 00 00 00 0a 01 04 00 0c 00 13 00 08 00 18 00 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x8fecac","module":"","asU32":9432236},{"index":3,"value":"0x8fecc8","module":"","asU32":9432264,"bstr":{"ptr":"0x8fecc8","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":5,"value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":6,"value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0xd49b84","module":"","asU32":13933444},{"index":8,"value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":9,"value":"0x8fecc4","module":"","asU32":9432260},{"index":10,"value":"0xd49b84","module":"","asU32":13933444},{"index":11,"value":"0x2","module":"","asU32":2}],"time":"2026-04-25T10:45:52.888Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755394e2","retval":"0x0","time":"2026-04-25T10:45:52.889Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x8fec4c","module":"","asU32":9432140},{"index":3,"value":"0xd32fe8","module":"","asU32":13840360},{"index":4,"value":"0x1","module":"","asU32":1},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x8fec44","module":"","asU32":9432132},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8fec4c","module":"","asU32":9432140},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x8fed90","module":"","asU32":9432464},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"time":"2026-04-25T10:45:52.891Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:45:52.892Z"}register.begin + +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x8fe760","module":"","asU32":9430880},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x8fe758","module":"","asU32":9430872},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8fe760","module":"","asU32":9430880},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x8fe7b4","module":"","asU32":9430964},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"time":"2026-04-25T10:45:52.895Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:45:52.896Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x8fe690","module":"","asU32":9430672},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x8fe688","module":"","asU32":9430664},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8fe690","module":"","asU32":9430672},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x8fe6e4","module":"","asU32":9430756},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"time":"2026-04-25T10:45:52.897Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:45:52.898Z"}register.ok + +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x8fe3a0","module":"","asU32":9429920},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x8fe398","module":"","asU32":9429912},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8fe3a0","module":"","asU32":9429920},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x8fe3f4","module":"","asU32":9430004},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"time":"2026-04-25T10:45:52.900Z"} +partner_version=6 +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:45:52.901Z"}unregister.begin + +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x8fed50","module":"","asU32":9432400},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x8fed48","module":"","asU32":9432392},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8fed50","module":"","asU32":9432400},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x8feda4","module":"","asU32":9432484},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"time":"2026-04-25T10:45:52.904Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:45:52.905Z"} +unregister.ok +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","varargs":[{"index":2,"value":"0x8ff084","module":"","asU32":9433220},{"index":3,"value":"0x3473c08","module":"","asU32":55000072,"bstr":{"ptr":"0x3473c08","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x8ff07c","module":"","asU32":9433212,"bstr":{"ptr":"0x8ff07c","byteLength":10,"charLength":5,"text":"\uf12c\x8f\u1171\u032a\u9c5c"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8ff084","module":"","asU32":9433220},{"index":9,"value":"0xa","module":"","asU32":10},{"index":10,"value":"0x8ff12c","module":"","asU32":9433388},{"index":11,"value":"0x32a1171","module":"","asU32":53088625}],"time":"2026-04-25T10:45:52.915Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x755362b8","procFormatPrefix":"00 68 00 00 00 00 07 00 24 00 32 00 00 00 58 00 24 00 47 08 08 47 01 00 01 00 00 00 08 00 04 00 72 01 48 01 08 00 0b 00 88 00 0c 00 34 04 0b 00 10 00 3e 04 88 00 14 00 54 04 13 00 18 00 5e 04","varargs":[{"index":2,"value":"0x8fe5b8","module":"","asU32":9430456},{"index":3,"value":"0x8fe5e4","module":"","asU32":9430500,"bstr":{"ptr":"0x8fe5e4","byteLength":20,"charLength":10,"text":"\ue608\x8f\u7a09\u755f\ue600\x8f\ue634\x8f\ue638\x8f"}},{"index":4,"value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":7,"value":"0xd442f0","module":"","asU32":13910768},{"index":8,"value":"0xd46988","module":"","asU32":13920648},{"index":9,"value":"0x8fe600","module":"","asU32":9430528},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x8fe6d8","module":"","asU32":9430744}],"time":"2026-04-25T10:45:52.917Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755362b8","retval":"0x0","time":"2026-04-25T10:45:52.918Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x0","time":"2026-04-25T10:45:52.920Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177790","procFormatPrefix":"33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 50 21 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 03 00 18 00","varargs":[{"index":2,"value":"0x8ff0c0","module":"","asU32":9433280},{"index":3,"value":"0x1","module":"","asU32":1},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x8ff0b8","module":"","asU32":9433272},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8ff0c0","module":"","asU32":9433280},{"index":9,"value":"0xb","module":"","asU32":11},{"index":10,"value":"0x8ff12c","module":"","asU32":9433388},{"index":11,"value":"0x32a12d5","module":"","asU32":53088981}],"time":"2026-04-25T10:45:52.925Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177790","retval":"0x0","time":"2026-04-25T10:45:52.926Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","varargs":[{"index":2,"value":"0x8ff0dc","module":"","asU32":9433308},{"index":3,"value":"0x7101","module":"","asU32":28929},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0xc","module":"","asU32":12},{"index":6,"value":"0x8ff0d4","module":"","asU32":9433300,"bstr":{"ptr":"0x8ff0d4","byteLength":4,"charLength":2,"text":"\uf138\x8f"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8ff0dc","module":"","asU32":9433308},{"index":9,"value":"0x4","module":"","asU32":4},{"index":10,"value":"0x8ff138","module":"","asU32":9433400},{"index":11,"value":"0x32a13ed","module":"","asU32":53089261}],"time":"2026-04-25T10:45:52.932Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x0","time":"2026-04-25T10:45:52.936Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x8fed64","module":"","asU32":9432420},{"index":3,"value":"0xd32fe8","module":"","asU32":13840360},{"index":4,"value":"0x2","module":"","asU32":2},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x8fed5c","module":"","asU32":9432412},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x8fed64","module":"","asU32":9432420},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x8feea8","module":"","asU32":9432744},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"time":"2026-04-25T10:45:52.939Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:45:52.940Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/050-frida-direct-nmx-registerengine2-stack/frida-exit.txt b/captures/050-frida-direct-nmx-registerengine2-stack/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/050-frida-direct-nmx-registerengine2-stack/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/050-frida-direct-nmx-registerengine2-stack/frida.stderr.txt b/captures/050-frida-direct-nmx-registerengine2-stack/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/050-frida-direct-nmx-registerengine2-stack/frida.stdout.jsonl b/captures/050-frida-direct-nmx-registerengine2-stack/frida.stdout.jsonl new file mode 100644 index 0000000..8b805dd --- /dev/null +++ b/captures/050-frida-direct-nmx-registerengine2-stack/frida.stdout.jsonl @@ -0,0 +1,66 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7102 --engine-name=NmxComProxyWire3 --version=6 --hold-seconds=0`... +{"event":"script.loaded","process":52116,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:46:59.363Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:46:59.364Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:46:59.364Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:46:59.365Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7102 --engine-name=NmxComProxyWire3 --version=6 --hold-seconds=0`. Resuming main thread! +[Local::NmxComHarness.exe ]-> process=x64:False +engine_id=28930 +engine_name=NmxComProxyWire3 +version=6 +null_callback=False +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x10fd05c","module":"","asU32":17813596},{"index":3,"value":"0x10fd640","module":"","asU32":17815104},{"index":4,"value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x153df38","module":"","asU32":22273848},{"index":8,"value":"0x1538478","module":"","asU32":22250616},{"index":9,"value":"0x10fd228","module":"","asU32":17814056,"bstr":{"ptr":"0x10fd228","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0x10fd03c","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x10fd040","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x10fd044","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x10fd048","value":"0x10fd05c","module":"","asU32":17813596},{"index":4,"address":"0x10fd04c","value":"0x10fd640","module":"","asU32":17815104},{"index":5,"address":"0x10fd050","value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":6,"address":"0x10fd054","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x10fd058","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x10fd05c","value":"0x153df38","module":"","asU32":22273848},{"index":9,"address":"0x10fd060","value":"0x1538478","module":"","asU32":22250616},{"index":10,"address":"0x10fd064","value":"0x10fd228","module":"","asU32":17814056,"bstr":{"ptr":"0x10fd228","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":11,"address":"0x10fd068","value":"0x0","module":"","asU32":0},{"index":12,"address":"0x10fd06c","value":"0x0","module":"","asU32":0},{"index":13,"address":"0x10fd070","value":"0x75750160","module":"combase.dll","asU32":1970602336,"bstr":{"ptr":"0x75750160","byteLength":0,"charLength":0,"text":""}},{"index":14,"address":"0x10fd074","value":"0x7574fed8","module":"combase.dll","asU32":1970601688},{"index":15,"address":"0x10fd078","value":"0x10fd0e8","module":"","asU32":17813736,"bstr":{"ptr":"0x10fd0e8","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0x10fd07c","value":"0x75750620","module":"combase.dll","asU32":1970603552,"bstr":{"ptr":"0x75750620","byteLength":0,"charLength":0,"text":""}},{"index":17,"address":"0x10fd080","value":"0xa","module":"","asU32":10},{"index":18,"address":"0x10fd084","value":"0x10fd190","module":"","asU32":17813904,"bstr":{"ptr":"0x10fd190","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x10fd088","value":"0x10fd10c","module":"","asU32":17813772,"bstr":{"ptr":"0x10fd10c","byteLength":0,"charLength":0,"text":""}},{"index":20,"address":"0x10fd08c","value":"0x10fd108","module":"","asU32":17813768,"bstr":{"ptr":"0x10fd108","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0x10fd090","value":"0x75751248","module":"combase.dll","asU32":1970606664,"bstr":{"ptr":"0x75751248","byteLength":0,"charLength":0,"text":""}},{"index":22,"address":"0x10fd094","value":"0x75751244","module":"combase.dll","asU32":1970606660,"bstr":{"ptr":"0x75751244","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x10fd098","value":"0x757501b0","module":"combase.dll","asU32":1970602416,"bstr":{"ptr":"0x757501b0","byteLength":0,"charLength":0,"text":""}}],"time":"2026-04-25T10:46:59.479Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","time":"2026-04-25T10:46:59.482Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","varargs":[{"index":2,"value":"0x10fd490","module":"","asU32":17814672},{"index":3,"value":"0x10fd4d4","module":"","asU32":17814740,"bstr":{"ptr":"0x10fd4d4","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x0","module":"","asU32":0},{"index":8,"value":"0x10fd538","module":"","asU32":17814840},{"index":9,"value":"0x800","module":"","asU32":2048},{"index":10,"value":"0x10fd4b4","module":"","asU32":17814708,"bstr":{"ptr":"0x10fd4b4","byteLength":0,"charLength":0,"text":""}},{"index":11,"value":"0x989e7ffe","module":"","asU32":2560524286}],"stack":[{"index":0,"address":"0x10fd470","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x10fd474","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x10fd478","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x10fd47c","value":"0x10fd490","module":"","asU32":17814672},{"index":4,"address":"0x10fd480","value":"0x10fd4d4","module":"","asU32":17814740,"bstr":{"ptr":"0x10fd4d4","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x10fd484","value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":6,"address":"0x10fd488","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x10fd48c","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x10fd490","value":"0x0","module":"","asU32":0},{"index":9,"address":"0x10fd494","value":"0x10fd538","module":"","asU32":17814840},{"index":10,"address":"0x10fd498","value":"0x800","module":"","asU32":2048},{"index":11,"address":"0x10fd49c","value":"0x10fd4b4","module":"","asU32":17814708,"bstr":{"ptr":"0x10fd4b4","byteLength":0,"charLength":0,"text":""}},{"index":12,"address":"0x10fd4a0","value":"0x989e7ffe","module":"","asU32":2560524286},{"index":13,"address":"0x10fd4a4","value":"0x10fd698","module":"","asU32":17815192},{"index":14,"address":"0x10fd4a8","value":"0x0","module":"","asU32":0},{"index":15,"address":"0x10fd4ac","value":"0x10fd65c","module":"","asU32":17815132},{"index":16,"address":"0x10fd4b0","value":"0x0","module":"","asU32":0},{"index":17,"address":"0x10fd4b4","value":"0x0","module":"","asU32":0},{"index":18,"address":"0x10fd4b8","value":"0x0","module":"","asU32":0},{"index":19,"address":"0x10fd4bc","value":"0x10fd4a0","module":"","asU32":17814688},{"index":20,"address":"0x10fd4c0","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x10fd4c4","value":"0x10feb70","module":"","asU32":17820528},{"index":22,"address":"0x10fd4c8","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":23,"address":"0x10fd4cc","value":"0xefdaf35a","module":"","asU32":4024103770}],"time":"2026-04-25T10:46:59.487Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:46:59.489Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","varargs":[{"index":2,"value":"0x10fd468","module":"","asU32":17814632},{"index":3,"value":"0x10fd4cc","module":"","asU32":17814732,"bstr":{"ptr":"0x10fd4cc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":7,"value":"0x1538360","module":"","asU32":22250336},{"index":8,"value":"0x10fd494","module":"","asU32":17814676},{"index":9,"value":"0x10fd4f4","module":"","asU32":17814772},{"index":10,"value":"0x10fd49c","module":"","asU32":17814684},{"index":11,"value":"0x10fd520","module":"","asU32":17814816}],"stack":[{"index":0,"address":"0x10fd448","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x10fd44c","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x10fd450","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":3,"address":"0x10fd454","value":"0x10fd468","module":"","asU32":17814632},{"index":4,"address":"0x10fd458","value":"0x10fd4cc","module":"","asU32":17814732,"bstr":{"ptr":"0x10fd4cc","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x10fd45c","value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":6,"address":"0x10fd460","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x10fd464","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":8,"address":"0x10fd468","value":"0x1538360","module":"","asU32":22250336},{"index":9,"address":"0x10fd46c","value":"0x10fd494","module":"","asU32":17814676},{"index":10,"address":"0x10fd470","value":"0x10fd4f4","module":"","asU32":17814772},{"index":11,"address":"0x10fd474","value":"0x10fd49c","module":"","asU32":17814684},{"index":12,"address":"0x10fd478","value":"0x10fd520","module":"","asU32":17814816},{"index":13,"address":"0x10fd47c","value":"0x0","module":"","asU32":0},{"index":14,"address":"0x10fd480","value":"0x2","module":"","asU32":2},{"index":15,"address":"0x10fd484","value":"0x989e7fe6","module":"","asU32":2560524262},{"index":16,"address":"0x10fd488","value":"0x10fd698","module":"","asU32":17815192},{"index":17,"address":"0x10fd48c","value":"0x0","module":"","asU32":0},{"index":18,"address":"0x10fd490","value":"0x10fd65c","module":"","asU32":17815132},{"index":19,"address":"0x10fd494","value":"0x1","module":"","asU32":1},{"index":20,"address":"0x10fd498","value":"0x10fd518","module":"","asU32":17814808},{"index":21,"address":"0x10fd49c","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x10fd4a0","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x10fd4a4","value":"0x10fd698","module":"","asU32":17815192}],"time":"2026-04-25T10:46:59.491Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:46:59.492Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","varargs":[{"index":2,"value":"0x10fd4a4","module":"","asU32":17814692},{"index":3,"value":"0x10fd4dc","module":"","asU32":17814748,"bstr":{"ptr":"0x10fd4dc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":7,"value":"0x10fd4bc","module":"","asU32":17814716,"bstr":{"ptr":"0x10fd4bc","byteLength":0,"charLength":0,"text":""}},{"index":8,"value":"0x989e7ff6","module":"","asU32":2560524278},{"index":9,"value":"0x152eff0","module":"","asU32":22212592},{"index":10,"value":"0x151b278","module":"","asU32":22131320},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0x10fd484","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x10fd488","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x10fd48c","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":3,"address":"0x10fd490","value":"0x10fd4a4","module":"","asU32":17814692},{"index":4,"address":"0x10fd494","value":"0x10fd4dc","module":"","asU32":17814748,"bstr":{"ptr":"0x10fd4dc","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x10fd498","value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":6,"address":"0x10fd49c","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x10fd4a0","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":8,"address":"0x10fd4a4","value":"0x10fd4bc","module":"","asU32":17814716,"bstr":{"ptr":"0x10fd4bc","byteLength":0,"charLength":0,"text":""}},{"index":9,"address":"0x10fd4a8","value":"0x989e7ff6","module":"","asU32":2560524278},{"index":10,"address":"0x10fd4ac","value":"0x152eff0","module":"","asU32":22212592},{"index":11,"address":"0x10fd4b0","value":"0x151b278","module":"","asU32":22131320},{"index":12,"address":"0x10fd4b4","value":"0x0","module":"","asU32":0},{"index":13,"address":"0x10fd4b8","value":"0x0","module":"","asU32":0},{"index":14,"address":"0x10fd4bc","value":"0x1538360","module":"","asU32":22250336},{"index":15,"address":"0x10fd4c0","value":"0x10fd498","module":"","asU32":17814680},{"index":16,"address":"0x10fd4c4","value":"0x10fd4a8","module":"","asU32":17814696},{"index":17,"address":"0x10fd4c8","value":"0x10feb70","module":"","asU32":17820528},{"index":18,"address":"0x10fd4cc","value":"0x10feb70","module":"","asU32":17820528},{"index":19,"address":"0x10fd4d0","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":20,"address":"0x10fd4d4","value":"0xefdaf362","module":"","asU32":4024103778},{"index":21,"address":"0x10fd4d8","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x10fd4dc","value":"0x10fd564","module":"","asU32":17814884},{"index":23,"address":"0x10fd4e0","value":"0x76465077","module":"sechost.dll","asU32":1984319607}],"time":"2026-04-25T10:46:59.495Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:46:59.496Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x10fd660","module":"","asU32":17815136},{"index":3,"value":"0x10fd6bc","module":"","asU32":17815228,"bstr":{"ptr":"0x10fd6bc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":7,"value":"0x153df38","module":"","asU32":22273848},{"index":8,"value":"0x1538540","module":"","asU32":22250816},{"index":9,"value":"0x10fd6e8","module":"","asU32":17815272},{"index":10,"value":"0x10fd6f8","module":"","asU32":17815288},{"index":11,"value":"0x14","module":"","asU32":20}],"stack":[{"index":0,"address":"0x10fd640","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x10fd644","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x10fd648","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":3,"address":"0x10fd64c","value":"0x10fd660","module":"","asU32":17815136},{"index":4,"address":"0x10fd650","value":"0x10fd6bc","module":"","asU32":17815228,"bstr":{"ptr":"0x10fd6bc","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x10fd654","value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":6,"address":"0x10fd658","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x10fd65c","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":8,"address":"0x10fd660","value":"0x153df38","module":"","asU32":22273848},{"index":9,"address":"0x10fd664","value":"0x1538540","module":"","asU32":22250816},{"index":10,"address":"0x10fd668","value":"0x10fd6e8","module":"","asU32":17815272},{"index":11,"address":"0x10fd66c","value":"0x10fd6f8","module":"","asU32":17815288},{"index":12,"address":"0x10fd670","value":"0x14","module":"","asU32":20},{"index":13,"address":"0x10fd674","value":"0x10fd7d0","module":"","asU32":17815504,"bstr":{"ptr":"0x10fd7d0","byteLength":20,"charLength":10,"text":""}},{"index":14,"address":"0x10fd678","value":"0x10fd7cc","module":"","asU32":17815500,"bstr":{"ptr":"0x10fd7cc","byteLength":0,"charLength":0,"text":""}},{"index":15,"address":"0x10fd67c","value":"0x10fd700","module":"","asU32":17815296},{"index":16,"address":"0x10fd680","value":"0x15241b8","module":"","asU32":22167992},{"index":17,"address":"0x10fd684","value":"0x151ebd8","module":"","asU32":22146008},{"index":18,"address":"0x10fd688","value":"0x10fd6ac","module":"","asU32":17815212},{"index":19,"address":"0x10fd68c","value":"0x10fd6a4","module":"","asU32":17815204},{"index":20,"address":"0x10fd690","value":"0x1541c08","module":"","asU32":22289416},{"index":21,"address":"0x10fd694","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x10fd698","value":"0x10fd7cc","module":"","asU32":17815500,"bstr":{"ptr":"0x10fd7cc","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x10fd69c","value":"0x152c600","module":"","asU32":22201856}],"time":"2026-04-25T10:46:59.500Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","time":"2026-04-25T10:46:59.505Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8d2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 00 00 08 00 47 03 08 41 00 00 00 00 00 00 0b 00 04 00 cc 1a 13 00 08 00 de 1a 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x10fd98c","module":"","asU32":17815948},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x10fd984","module":"","asU32":17815940},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fd98c","module":"","asU32":17815948},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x10fda88","module":"","asU32":17816200},{"index":11,"value":"0x755a0067","module":"combase.dll","asU32":1968832615}],"stack":[{"index":0,"address":"0x10fd958","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fd95c","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fd960","value":"0x7553c8d2","module":"combase.dll","asU32":1968425170},{"index":3,"address":"0x10fd964","value":"0x10fd98c","module":"","asU32":17815948},{"index":4,"address":"0x10fd968","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x10fd96c","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fd970","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x10fd974","value":"0x10fd984","module":"","asU32":17815940},{"index":8,"address":"0x10fd978","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fd97c","value":"0x10fd98c","module":"","asU32":17815948},{"index":10,"address":"0x10fd980","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x10fd984","value":"0x10fda88","module":"","asU32":17816200},{"index":12,"address":"0x10fd988","value":"0x755a0067","module":"combase.dll","asU32":1968832615},{"index":13,"address":"0x10fd98c","value":"0x1539cd4","module":"","asU32":22256852},{"index":14,"address":"0x10fd990","value":"0x10fdf14","module":"","asU32":17817364,"bstr":{"ptr":"0x10fdf14","byteLength":2,"charLength":1,"text":"\u722c"}},{"index":15,"address":"0x10fd994","value":"0x10fd9a4","module":"","asU32":17815972},{"index":16,"address":"0x10fd998","value":"0x10fdf14","module":"","asU32":17817364,"bstr":{"ptr":"0x10fdf14","byteLength":2,"charLength":1,"text":"\u722c"}},{"index":17,"address":"0x10fd99c","value":"0x755a2c10","module":"combase.dll","asU32":1968843792},{"index":18,"address":"0x10fd9a0","value":"0x10fe644","module":"","asU32":17819204},{"index":19,"address":"0x10fd9a4","value":"0x0","module":"","asU32":0},{"index":20,"address":"0x10fd9a8","value":"0x10fe450","module":"","asU32":17818704,"bstr":{"ptr":"0x10fe450","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0x10fd9ac","value":"0x10fdf1c","module":"","asU32":17817372},{"index":22,"address":"0x10fd9b0","value":"0x75751750","module":"combase.dll","asU32":1970607952,"bstr":{"ptr":"0x75751750","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x10fd9b4","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:46:59.509Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8d2","retval":"0x0","time":"2026-04-25T10:46:59.514Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x10fe810","module":"","asU32":17819664},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x10fe808","module":"","asU32":17819656},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fe810","module":"","asU32":17819664},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x10fe864","module":"","asU32":17819748},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x10fe7dc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fe7e0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fe7e4","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x10fe7e8","value":"0x10fe810","module":"","asU32":17819664},{"index":4,"address":"0x10fe7ec","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x10fe7f0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fe7f4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x10fe7f8","value":"0x10fe808","module":"","asU32":17819656},{"index":8,"address":"0x10fe7fc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fe800","value":"0x10fe810","module":"","asU32":17819664},{"index":10,"address":"0x10fe804","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x10fe808","value":"0x10fe864","module":"","asU32":17819748},{"index":12,"address":"0x10fe80c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x10fe810","value":"0x1539b24","module":"","asU32":22256420},{"index":14,"address":"0x10fe814","value":"0x10fe84c","module":"","asU32":17819724},{"index":15,"address":"0x10fe818","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x10fe81c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x10fe820","value":"0x10fe8e8","module":"","asU32":17819880,"bstr":{"ptr":"0x10fe8e8","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x10fe824","value":"0x10fe8c4","module":"","asU32":17819844,"bstr":{"ptr":"0x10fe8c4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x10fe828","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x10fe82c","value":"0x1556d78","module":"","asU32":22375800},{"index":21,"address":"0x10fe830","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x10fe834","value":"0x1539b24","module":"","asU32":22256420},{"index":23,"address":"0x10fe838","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:46:59.517Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:46:59.519Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x7551a860","procFormat":"0x755394e2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 44 00 08 00 45 03 08 43 01 00 00 00 00 00 0a 01 04 00 0c 00 13 00 08 00 18 00 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x10fe98c","module":"","asU32":17820044},{"index":3,"value":"0x10fe9a8","module":"","asU32":17820072,"bstr":{"ptr":"0x10fe9a8","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":5,"value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":6,"value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x1539974","module":"","asU32":22255988},{"index":8,"value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":9,"value":"0x10fe9a4","module":"","asU32":17820068},{"index":10,"value":"0x1539974","module":"","asU32":22255988},{"index":11,"value":"0x2","module":"","asU32":2}],"stack":[{"index":0,"address":"0x10fe96c","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x10fe970","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fe974","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x10fe978","value":"0x10fe98c","module":"","asU32":17820044},{"index":4,"address":"0x10fe97c","value":"0x10fe9a8","module":"","asU32":17820072,"bstr":{"ptr":"0x10fe9a8","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x10fe980","value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":6,"address":"0x10fe984","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":7,"address":"0x10fe988","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x10fe98c","value":"0x1539974","module":"","asU32":22255988},{"index":9,"address":"0x10fe990","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":10,"address":"0x10fe994","value":"0x10fe9a4","module":"","asU32":17820068},{"index":11,"address":"0x10fe998","value":"0x1539974","module":"","asU32":22255988},{"index":12,"address":"0x10fe99c","value":"0x2","module":"","asU32":2},{"index":13,"address":"0x10fe9a0","value":"0x75521af0","module":"combase.dll","asU32":1968315120},{"index":14,"address":"0x10fe9a4","value":"0x0","module":"","asU32":0},{"index":15,"address":"0x10fe9a8","value":"0x10feb70","module":"","asU32":17820528,"bstr":{"ptr":"0x10feb70","byteLength":16,"charLength":8,"text":"\ueba8\u010f\u13da\u748a\u9974œ"}},{"index":16,"address":"0x10fe9ac","value":"0x748a130c","module":"clr.dll","asU32":1955205900},{"index":17,"address":"0x10fe9b0","value":"0x1539974","module":"","asU32":22255988},{"index":18,"address":"0x10fe9b4","value":"0x0","module":"","asU32":0},{"index":19,"address":"0x10fe9b8","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":20,"address":"0x10fe9bc","value":"0x10feb38","module":"","asU32":17820472,"bstr":{"ptr":"0x10feb38","byteLength":2,"charLength":1,"text":""}},{"index":21,"address":"0x10fe9c0","value":"0xab9623b9","module":"","asU32":2878743481},{"index":22,"address":"0x10fe9c4","value":"0x1539974","module":"","asU32":22255988},{"index":23,"address":"0x10fe9c8","value":"0x1","module":"","asU32":1}],"time":"2026-04-25T10:46:59.523Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755394e2","retval":"0x0","time":"2026-04-25T10:46:59.526Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x10fe92c","module":"","asU32":17819948},{"index":3,"value":"0x1526108","module":"","asU32":22176008},{"index":4,"value":"0x1","module":"","asU32":1},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x10fe924","module":"","asU32":17819940},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fe92c","module":"","asU32":17819948},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x10fea70","module":"","asU32":17820272},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0x10fe8f8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fe8fc","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fe900","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0x10fe904","value":"0x10fe92c","module":"","asU32":17819948},{"index":4,"address":"0x10fe908","value":"0x1526108","module":"","asU32":22176008},{"index":5,"address":"0x10fe90c","value":"0x1","module":"","asU32":1},{"index":6,"address":"0x10fe910","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x10fe914","value":"0x10fe924","module":"","asU32":17819940},{"index":8,"address":"0x10fe918","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fe91c","value":"0x10fe92c","module":"","asU32":17819948},{"index":10,"address":"0x10fe920","value":"0x5","module":"","asU32":5},{"index":11,"address":"0x10fe924","value":"0x10fea70","module":"","asU32":17820272},{"index":12,"address":"0x10fe928","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0x10fe92c","value":"0x1539b24","module":"","asU32":22256420},{"index":14,"address":"0x10fe930","value":"0x1","module":"","asU32":1},{"index":15,"address":"0x10fe934","value":"0x151e7c8","module":"","asU32":22144968},{"index":16,"address":"0x10fe938","value":"0x2","module":"","asU32":2},{"index":17,"address":"0x10fe93c","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0x10fe940","value":"0x1556d78","module":"","asU32":22375800},{"index":19,"address":"0x10fe944","value":"0x76fc5700","module":"RPCRT4.dll","asU32":1996248832},{"index":20,"address":"0x10fe948","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x10fe94c","value":"0x1539b24","module":"","asU32":22256420},{"index":22,"address":"0x10fe950","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x10fe954","value":"0x1539b24","module":"","asU32":22256420}],"time":"2026-04-25T10:46:59.532Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:46:59.533Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x10fe440","module":"","asU32":17818688},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x10fe438","module":"","asU32":17818680},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fe440","module":"","asU32":17818688},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x10fe494","module":"","asU32":17818772},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x10fe40c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fe410","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fe414","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x10fe418","value":"0x10fe440","module":"","asU32":17818688},{"index":4,"address":"0x10fe41c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x10fe420","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fe424","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x10fe428","value":"0x10fe438","module":"","asU32":17818680},{"index":8,"address":"0x10fe42c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fe430","value":"0x10fe440","module":"","asU32":17818688},{"index":10,"address":"0x10fe434","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x10fe438","value":"0x10fe494","module":"","asU32":17818772},{"index":12,"address":"0x10fe43c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x10fe440","value":"0x1539b24","module":"","asU32":22256420},{"index":14,"address":"0x10fe444","value":"0x10fe47c","module":"","asU32":17818748},{"index":15,"address":"0x10fe448","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x10fe44c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x10fe450","value":"0x10fe514","module":"","asU32":17818900,"bstr":{"ptr":"0x10fe514","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x10fe454","value":"0x10fe4f4","module":"","asU32":17818868,"bstr":{"ptr":"0x10fe4f4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x10fe458","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x10fe45c","value":"0x15567b8","module":"","asU32":22374328},{"index":21,"address":"0x10fe460","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x10fe464","value":"0x1539b24","module":"","asU32":22256420},{"index":23,"address":"0x10fe468","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:46:59.538Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:46:59.539Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x10fe370","module":"","asU32":17818480},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x10fe368","module":"","asU32":17818472},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fe370","module":"","asU32":17818480},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x10fe3c4","module":"","asU32":17818564},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x10fe33c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fe340","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fe344","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x10fe348","value":"0x10fe370","module":"","asU32":17818480},{"index":4,"address":"0x10fe34c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x10fe350","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fe354","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x10fe358","value":"0x10fe368","module":"","asU32":17818472},{"index":8,"address":"0x10fe35c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fe360","value":"0x10fe370","module":"","asU32":17818480},{"index":10,"address":"0x10fe364","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x10fe368","value":"0x10fe3c4","module":"","asU32":17818564},{"index":12,"address":"0x10fe36c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x10fe370","value":"0x1539b24","module":"","asU32":22256420},{"index":14,"address":"0x10fe374","value":"0x10fe3ac","module":"","asU32":17818540},{"index":15,"address":"0x10fe378","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x10fe37c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x10fe380","value":"0x10fe44c","module":"","asU32":17818700,"bstr":{"ptr":"0x10fe44c","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x10fe384","value":"0x10fe424","module":"","asU32":17818660,"bstr":{"ptr":"0x10fe424","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x10fe388","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x10fe38c","value":"0x15567b8","module":"","asU32":22374328},{"index":21,"address":"0x10fe390","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x10fe394","value":"0x1539b24","module":"","asU32":22256420},{"index":23,"address":"0x10fe398","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:46:59.543Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:46:59.544Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x10fe080","module":"","asU32":17817728},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x10fe078","module":"","asU32":17817720},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fe080","module":"","asU32":17817728},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x10fe0d4","module":"","asU32":17817812},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x10fe04c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fe050","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fe054","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x10fe058","value":"0x10fe080","module":"","asU32":17817728},{"index":4,"address":"0x10fe05c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x10fe060","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fe064","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x10fe068","value":"0x10fe078","module":"","asU32":17817720},{"index":8,"address":"0x10fe06c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fe070","value":"0x10fe080","module":"","asU32":17817728},{"index":10,"address":"0x10fe074","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x10fe078","value":"0x10fe0d4","module":"","asU32":17817812},{"index":12,"address":"0x10fe07c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x10fe080","value":"0x1539b24","module":"","asU32":22256420},{"index":14,"address":"0x10fe084","value":"0x10fe0bc","module":"","asU32":17817788},{"index":15,"address":"0x10fe088","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x10fe08c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x10fe090","value":"0x10fe160","module":"","asU32":17817952,"bstr":{"ptr":"0x10fe160","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x10fe094","value":"0x10fe134","module":"","asU32":17817908,"bstr":{"ptr":"0x10fe134","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x10fe098","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x10fe09c","value":"0x15567b8","module":"","asU32":22374328},{"index":21,"address":"0x10fe0a0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x10fe0a4","value":"0x1539b24","module":"","asU32":22256420},{"index":23,"address":"0x10fe0a8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:46:59.550Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:46:59.551Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x10fea30","module":"","asU32":17820208},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x10fea28","module":"","asU32":17820200},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fea30","module":"","asU32":17820208},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x10fea84","module":"","asU32":17820292},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x10fe9fc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fea00","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fea04","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x10fea08","value":"0x10fea30","module":"","asU32":17820208},{"index":4,"address":"0x10fea0c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x10fea10","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fea14","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x10fea18","value":"0x10fea28","module":"","asU32":17820200},{"index":8,"address":"0x10fea1c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fea20","value":"0x10fea30","module":"","asU32":17820208},{"index":10,"address":"0x10fea24","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x10fea28","value":"0x10fea84","module":"","asU32":17820292},{"index":12,"address":"0x10fea2c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x10fea30","value":"0x1539b24","module":"","asU32":22256420},{"index":14,"address":"0x10fea34","value":"0x10fea6c","module":"","asU32":17820268},{"index":15,"address":"0x10fea38","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x10fea3c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x10fea40","value":"0x10feb08","module":"","asU32":17820424,"bstr":{"ptr":"0x10feb08","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x10fea44","value":"0x10feae4","module":"","asU32":17820388,"bstr":{"ptr":"0x10feae4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x10fea48","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x10fea4c","value":"0x15567b8","module":"","asU32":22374328},{"index":21,"address":"0x10fea50","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x10fea54","value":"0x1539b24","module":"","asU32":22256420},{"index":23,"address":"0x10fea58","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:46:59.555Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:46:59.556Z"}register.begin + +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","varargs":[{"index":2,"value":"0x10fed64","module":"","asU32":17821028},{"index":3,"value":"0x3cc3c08","module":"","asU32":63716360,"bstr":{"ptr":"0x3cc3c08","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x10fed5c","module":"","asU32":17821020,"bstr":{"ptr":"0x10fed5c","byteLength":10,"charLength":5,"text":"\uee0c\u010f\u1171\u03c8\u9b6c"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fed64","module":"","asU32":17821028},{"index":9,"value":"0xa","module":"","asU32":10},{"index":10,"value":"0x10fee0c","module":"","asU32":17821196},{"index":11,"value":"0x3c81171","module":"","asU32":63443313}],"stack":[{"index":0,"address":"0x10fed30","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fed34","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x10fed38","value":"0x6417775a","module":"NmxSvcps.dll","asU32":1679259482},{"index":3,"address":"0x10fed3c","value":"0x10fed64","module":"","asU32":17821028},{"index":4,"address":"0x10fed40","value":"0x3cc3c08","module":"","asU32":63716360,"bstr":{"ptr":"0x3cc3c08","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x10fed44","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fed48","value":"0x18","module":"","asU32":24},{"index":7,"address":"0x10fed4c","value":"0x10fed5c","module":"","asU32":17821020,"bstr":{"ptr":"0x10fed5c","byteLength":10,"charLength":5,"text":"\uee0c\u010f\u1171\u03c8\u9b6c"}},{"index":8,"address":"0x10fed50","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fed54","value":"0x10fed64","module":"","asU32":17821028},{"index":10,"address":"0x10fed58","value":"0xa","module":"","asU32":10},{"index":11,"address":"0x10fed5c","value":"0x10fee0c","module":"","asU32":17821196},{"index":12,"address":"0x10fed60","value":"0x3c81171","module":"","asU32":63443313},{"index":13,"address":"0x10fed64","value":"0x1539b6c","module":"","asU32":22256492},{"index":14,"address":"0x10fed68","value":"0x7102","module":"","asU32":28930},{"index":15,"address":"0x10fed6c","value":"0x10fed7c","module":"","asU32":17821052,"bstr":{"ptr":"0x10fed7c","byteLength":32,"charLength":16,"text":"NmxComProxyWire3"}},{"index":16,"address":"0x10fed70","value":"0x6","module":"","asU32":6},{"index":17,"address":"0x10fed74","value":"0x6210030","module":"","asU32":102826032,"bstr":{"ptr":"0x6210030","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x10fed78","value":"0x20","module":"","asU32":32},{"index":19,"address":"0x10fed7c","value":"0x6d004e","module":"","asU32":7143502},{"index":20,"address":"0x10fed80","value":"0x430078","module":"","asU32":4391032},{"index":21,"address":"0x10fed84","value":"0x6d006f","module":"","asU32":7143535},{"index":22,"address":"0x10fed88","value":"0x720050","module":"","asU32":7471184},{"index":23,"address":"0x10fed8c","value":"0x78006f","module":"","asU32":7864431}],"time":"2026-04-25T10:46:59.568Z"} +register.ok +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x755362b8","procFormatPrefix":"00 68 00 00 00 00 07 00 24 00 32 00 00 00 58 00 24 00 47 08 08 47 01 00 01 00 00 00 08 00 04 00 72 01 48 01 08 00 0b 00 88 00 0c 00 34 04 0b 00 10 00 3e 04 88 00 14 00 54 04 13 00 18 00 5e 04","varargs":[{"index":2,"value":"0x10fe298","module":"","asU32":17818264},{"index":3,"value":"0x10fe2c4","module":"","asU32":17818308,"bstr":{"ptr":"0x10fe2c4","byteLength":20,"charLength":10,"text":"\ue2e8\u010f\u7a09\u755f\ue2e0\u010f\ue314\u010f\ue318\u010f"}},{"index":4,"value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":7,"value":"0x153df38","module":"","asU32":22273848},{"index":8,"value":"0x1538540","module":"","asU32":22250816},{"index":9,"value":"0x10fe2e0","module":"","asU32":17818336},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x10fe3b8","module":"","asU32":17818552}],"stack":[{"index":0,"address":"0x10fe278","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x10fe27c","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x10fe280","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":3,"address":"0x10fe284","value":"0x10fe298","module":"","asU32":17818264},{"index":4,"address":"0x10fe288","value":"0x10fe2c4","module":"","asU32":17818308,"bstr":{"ptr":"0x10fe2c4","byteLength":20,"charLength":10,"text":"\ue2e8\u010f\u7a09\u755f\ue2e0\u010f\ue314\u010f\ue318\u010f"}},{"index":5,"address":"0x10fe28c","value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":6,"address":"0x10fe290","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x10fe294","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":8,"address":"0x10fe298","value":"0x153df38","module":"","asU32":22273848},{"index":9,"address":"0x10fe29c","value":"0x1538540","module":"","asU32":22250816},{"index":10,"address":"0x10fe2a0","value":"0x10fe2e0","module":"","asU32":17818336},{"index":11,"address":"0x10fe2a4","value":"0x0","module":"","asU32":0},{"index":12,"address":"0x10fe2a8","value":"0x10fe3b8","module":"","asU32":17818552},{"index":13,"address":"0x10fe2ac","value":"0x14","module":"","asU32":20},{"index":14,"address":"0x10fe2b0","value":"0x10fe318","module":"","asU32":17818392,"bstr":{"ptr":"0x10fe318","byteLength":20,"charLength":10,"text":""}},{"index":15,"address":"0x10fe2b4","value":"0x10fe314","module":"","asU32":17818388,"bstr":{"ptr":"0x10fe314","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0x10fe2b8","value":"0x0","module":"","asU32":0},{"index":17,"address":"0x10fe2bc","value":"0x15289d8","module":"","asU32":22186456},{"index":18,"address":"0x10fe2c0","value":"0x14","module":"","asU32":20},{"index":19,"address":"0x10fe2c4","value":"0x10fe2e8","module":"","asU32":17818344},{"index":20,"address":"0x10fe2c8","value":"0x755f7a09","module":"combase.dll","asU32":1969191433},{"index":21,"address":"0x10fe2cc","value":"0x10fe2e0","module":"","asU32":17818336},{"index":22,"address":"0x10fe2d0","value":"0x10fe314","module":"","asU32":17818388,"bstr":{"ptr":"0x10fe314","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x10fe2d4","value":"0x10fe318","module":"","asU32":17818392,"bstr":{"ptr":"0x10fe318","byteLength":20,"charLength":10,"text":""}}],"time":"2026-04-25T10:46:59.572Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755362b8","retval":"0x0","time":"2026-04-25T10:46:59.573Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x0","time":"2026-04-25T10:46:59.575Z"} +partner_version=6 +unregister.begin +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177790","procFormatPrefix":"33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 50 21 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 03 00 18 00","varargs":[{"index":2,"value":"0x10feda0","module":"","asU32":17821088},{"index":3,"value":"0x1","module":"","asU32":1},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x10fed98","module":"","asU32":17821080},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10feda0","module":"","asU32":17821088},{"index":9,"value":"0xb","module":"","asU32":11},{"index":10,"value":"0x10fee0c","module":"","asU32":17821196},{"index":11,"value":"0x3c812d5","module":"","asU32":63443669}],"stack":[{"index":0,"address":"0x10fed6c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fed70","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x10fed74","value":"0x64177790","module":"NmxSvcps.dll","asU32":1679259536},{"index":3,"address":"0x10fed78","value":"0x10feda0","module":"","asU32":17821088},{"index":4,"address":"0x10fed7c","value":"0x1","module":"","asU32":1},{"index":5,"address":"0x10fed80","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10fed84","value":"0x18","module":"","asU32":24},{"index":7,"address":"0x10fed88","value":"0x10fed98","module":"","asU32":17821080},{"index":8,"address":"0x10fed8c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fed90","value":"0x10feda0","module":"","asU32":17821088},{"index":10,"address":"0x10fed94","value":"0xb","module":"","asU32":11},{"index":11,"address":"0x10fed98","value":"0x10fee0c","module":"","asU32":17821196},{"index":12,"address":"0x10fed9c","value":"0x3c812d5","module":"","asU32":63443669},{"index":13,"address":"0x10feda0","value":"0x1539b6c","module":"","asU32":22256492},{"index":14,"address":"0x10feda4","value":"0x1","module":"","asU32":1},{"index":15,"address":"0x10feda8","value":"0x1","module":"","asU32":1},{"index":16,"address":"0x10fedac","value":"0x7ffd","module":"","asU32":32765},{"index":17,"address":"0x10fedb0","value":"0x10feec4","module":"","asU32":17821380,"bstr":{"ptr":"0x10feec4","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x10fedb4","value":"0xa33fbcc0","module":"","asU32":2738863296},{"index":19,"address":"0x10fedb8","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":20,"address":"0x10fedbc","value":"0x10ff06c","module":"","asU32":17821804},{"index":21,"address":"0x10fedc0","value":"0x14","module":"","asU32":20},{"index":22,"address":"0x10fedc4","value":"0x10feda0","module":"","asU32":17821088},{"index":23,"address":"0x10fedc8","value":"0x3c812d5","module":"","asU32":63443669}],"time":"2026-04-25T10:46:59.582Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177790","retval":"0x0","time":"2026-04-25T10:46:59.583Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","varargs":[{"index":2,"value":"0x10fedbc","module":"","asU32":17821116},{"index":3,"value":"0x7102","module":"","asU32":28930},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0xc","module":"","asU32":12},{"index":6,"value":"0x10fedb4","module":"","asU32":17821108,"bstr":{"ptr":"0x10fedb4","byteLength":4,"charLength":2,"text":"\uee18\u010f"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fedbc","module":"","asU32":17821116},{"index":9,"value":"0x4","module":"","asU32":4},{"index":10,"value":"0x10fee18","module":"","asU32":17821208},{"index":11,"value":"0x3c813ed","module":"","asU32":63443949}],"stack":[{"index":0,"address":"0x10fed88","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fed8c","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x10fed90","value":"0x6417762e","module":"NmxSvcps.dll","asU32":1679259182},{"index":3,"address":"0x10fed94","value":"0x10fedbc","module":"","asU32":17821116},{"index":4,"address":"0x10fed98","value":"0x7102","module":"","asU32":28930},{"index":5,"address":"0x10fed9c","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x10feda0","value":"0xc","module":"","asU32":12},{"index":7,"address":"0x10feda4","value":"0x10fedb4","module":"","asU32":17821108,"bstr":{"ptr":"0x10fedb4","byteLength":4,"charLength":2,"text":"\uee18\u010f"}},{"index":8,"address":"0x10feda8","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fedac","value":"0x10fedbc","module":"","asU32":17821116},{"index":10,"address":"0x10fedb0","value":"0x4","module":"","asU32":4},{"index":11,"address":"0x10fedb4","value":"0x10fee18","module":"","asU32":17821208},{"index":12,"address":"0x10fedb8","value":"0x3c813ed","module":"","asU32":63443949},{"index":13,"address":"0x10fedbc","value":"0x1539b6c","module":"","asU32":22256492},{"index":14,"address":"0x10fedc0","value":"0x7102","module":"","asU32":28930},{"index":15,"address":"0x10fedc4","value":"0xa33fbcc0","module":"","asU32":2738863296},{"index":16,"address":"0x10fedc8","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":17,"address":"0x10fedcc","value":"0x10ff06c","module":"","asU32":17821804},{"index":18,"address":"0x10fedd0","value":"0x8","module":"","asU32":8},{"index":19,"address":"0x10fedd4","value":"0x10fedbc","module":"","asU32":17821116},{"index":20,"address":"0x10fedd8","value":"0x3c813ed","module":"","asU32":63443949},{"index":21,"address":"0x10feddc","value":"0x10fee18","module":"","asU32":17821208},{"index":22,"address":"0x10fede0","value":"0x3a04f0c","module":"","asU32":60837644,"bstr":{"ptr":"0x3a04f0c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x10fede4","value":"0x3cc4d00","module":"","asU32":63720704}],"time":"2026-04-25T10:46:59.591Z"} +unregister.ok +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x0","time":"2026-04-25T10:46:59.596Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x10fea44","module":"","asU32":17820228},{"index":3,"value":"0x1526108","module":"","asU32":22176008},{"index":4,"value":"0x2","module":"","asU32":2},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x10fea3c","module":"","asU32":17820220},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x10fea44","module":"","asU32":17820228},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x10feb88","module":"","asU32":17820552},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0x10fea10","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x10fea14","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x10fea18","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0x10fea1c","value":"0x10fea44","module":"","asU32":17820228},{"index":4,"address":"0x10fea20","value":"0x1526108","module":"","asU32":22176008},{"index":5,"address":"0x10fea24","value":"0x2","module":"","asU32":2},{"index":6,"address":"0x10fea28","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x10fea2c","value":"0x10fea3c","module":"","asU32":17820220},{"index":8,"address":"0x10fea30","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x10fea34","value":"0x10fea44","module":"","asU32":17820228},{"index":10,"address":"0x10fea38","value":"0x5","module":"","asU32":5},{"index":11,"address":"0x10fea3c","value":"0x10feb88","module":"","asU32":17820552},{"index":12,"address":"0x10fea40","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0x10fea44","value":"0x1539b24","module":"","asU32":22256420},{"index":14,"address":"0x10fea48","value":"0x2","module":"","asU32":2},{"index":15,"address":"0x10fea4c","value":"0x1534a70","module":"","asU32":22235760},{"index":16,"address":"0x10fea50","value":"0x2","module":"","asU32":2},{"index":17,"address":"0x10fea54","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0x10fea58","value":"0x15567b8","module":"","asU32":22374328},{"index":19,"address":"0x10fea5c","value":"0x10feaa8","module":"","asU32":17820328},{"index":20,"address":"0x10fea60","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x10fea64","value":"0x1539b24","module":"","asU32":22256420},{"index":22,"address":"0x10fea68","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x10fea6c","value":"0x1539b24","module":"","asU32":22256420}],"time":"2026-04-25T10:46:59.600Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:46:59.601Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/051-frida-direct-nmx-registerengine2-marshals/frida-exit.txt b/captures/051-frida-direct-nmx-registerengine2-marshals/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/051-frida-direct-nmx-registerengine2-marshals/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/051-frida-direct-nmx-registerengine2-marshals/frida.stderr.txt b/captures/051-frida-direct-nmx-registerengine2-marshals/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/051-frida-direct-nmx-registerengine2-marshals/frida.stdout.jsonl b/captures/051-frida-direct-nmx-registerengine2-marshals/frida.stdout.jsonl new file mode 100644 index 0000000..1938106 --- /dev/null +++ b/captures/051-frida-direct-nmx-registerengine2-marshals/frida.stdout.jsonl @@ -0,0 +1,68 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7103 --engine-name=NmxComProxyWire4 --version=6 --hold-seconds=0`... +{"event":"script.loaded","process":3820,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:48:10.132Z"} +{"event":"hook.missing","module":"oleaut32.dll","name":"BSTR_UserMarshal","time":"2026-04-25T10:48:10.133Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrInterfacePointerMarshall","address":"0x7704d450","time":"2026-04-25T10:48:10.133Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:48:10.133Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:48:10.135Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:48:10.135Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7103 --engine-name=NmxComProxyWire4 --version=6 --hold-seconds=0`. Resuming main thread! +[Local::NmxComHarness.exe ]-> process=x64:False +engine_id=28931 +engine_name=NmxComProxyWire4 +version=6 +null_callback=False +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","varargs":[{"index":2,"value":"0xcfceac","module":"","asU32":13618860},{"index":3,"value":"0xcfd490","module":"","asU32":13620368},{"index":4,"value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0xec3570","module":"","asU32":15480176},{"index":8,"value":"0xec6078","module":"","asU32":15491192},{"index":9,"value":"0xcfd078","module":"","asU32":13619320,"bstr":{"ptr":"0xcfd078","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0xcfce8c","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xcfce90","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0xcfce94","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0xcfce98","value":"0xcfceac","module":"","asU32":13618860},{"index":4,"address":"0xcfce9c","value":"0xcfd490","module":"","asU32":13620368},{"index":5,"address":"0xcfcea0","value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":6,"address":"0xcfcea4","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0xcfcea8","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0xcfceac","value":"0xec3570","module":"","asU32":15480176},{"index":9,"address":"0xcfceb0","value":"0xec6078","module":"","asU32":15491192},{"index":10,"address":"0xcfceb4","value":"0xcfd078","module":"","asU32":13619320,"bstr":{"ptr":"0xcfd078","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":11,"address":"0xcfceb8","value":"0x0","module":"","asU32":0},{"index":12,"address":"0xcfcebc","value":"0x0","module":"","asU32":0},{"index":13,"address":"0xcfcec0","value":"0x75750160","module":"combase.dll","asU32":1970602336,"bstr":{"ptr":"0x75750160","byteLength":0,"charLength":0,"text":""}},{"index":14,"address":"0xcfcec4","value":"0x7574fed8","module":"combase.dll","asU32":1970601688},{"index":15,"address":"0xcfcec8","value":"0xcfcf38","module":"","asU32":13619000,"bstr":{"ptr":"0xcfcf38","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0xcfcecc","value":"0x75750620","module":"combase.dll","asU32":1970603552,"bstr":{"ptr":"0x75750620","byteLength":0,"charLength":0,"text":""}},{"index":17,"address":"0xcfced0","value":"0xa","module":"","asU32":10},{"index":18,"address":"0xcfced4","value":"0xcfcfe0","module":"","asU32":13619168,"bstr":{"ptr":"0xcfcfe0","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xcfced8","value":"0xcfcf5c","module":"","asU32":13619036,"bstr":{"ptr":"0xcfcf5c","byteLength":0,"charLength":0,"text":""}},{"index":20,"address":"0xcfcedc","value":"0xcfcf58","module":"","asU32":13619032,"bstr":{"ptr":"0xcfcf58","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0xcfcee0","value":"0x75751248","module":"combase.dll","asU32":1970606664,"bstr":{"ptr":"0x75751248","byteLength":0,"charLength":0,"text":""}},{"index":22,"address":"0xcfcee4","value":"0x75751244","module":"combase.dll","asU32":1970606660,"bstr":{"ptr":"0x75751244","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xcfcee8","value":"0x757501b0","module":"combase.dll","asU32":1970602416,"bstr":{"ptr":"0x757501b0","byteLength":0,"charLength":0,"text":""}}],"time":"2026-04-25T10:48:10.236Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","time":"2026-04-25T10:48:10.238Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","varargs":[{"index":2,"value":"0xcfd2e0","module":"","asU32":13619936},{"index":3,"value":"0xcfd324","module":"","asU32":13620004,"bstr":{"ptr":"0xcfd324","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x0","module":"","asU32":0},{"index":8,"value":"0xcfd388","module":"","asU32":13620104},{"index":9,"value":"0x800","module":"","asU32":2048},{"index":10,"value":"0xcfd304","module":"","asU32":13619972,"bstr":{"ptr":"0xcfd304","byteLength":0,"charLength":0,"text":""}},{"index":11,"value":"0x5ff6e795","module":"","asU32":1610016661}],"stack":[{"index":0,"address":"0xcfd2c0","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xcfd2c4","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0xcfd2c8","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0xcfd2cc","value":"0xcfd2e0","module":"","asU32":13619936},{"index":4,"address":"0xcfd2d0","value":"0xcfd324","module":"","asU32":13620004,"bstr":{"ptr":"0xcfd324","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xcfd2d4","value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":6,"address":"0xcfd2d8","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0xcfd2dc","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0xcfd2e0","value":"0x0","module":"","asU32":0},{"index":9,"address":"0xcfd2e4","value":"0xcfd388","module":"","asU32":13620104},{"index":10,"address":"0xcfd2e8","value":"0x800","module":"","asU32":2048},{"index":11,"address":"0xcfd2ec","value":"0xcfd304","module":"","asU32":13619972,"bstr":{"ptr":"0xcfd304","byteLength":0,"charLength":0,"text":""}},{"index":12,"address":"0xcfd2f0","value":"0x5ff6e795","module":"","asU32":1610016661},{"index":13,"address":"0xcfd2f4","value":"0xcfd4e8","module":"","asU32":13620456},{"index":14,"address":"0xcfd2f8","value":"0x0","module":"","asU32":0},{"index":15,"address":"0xcfd2fc","value":"0xcfd4ac","module":"","asU32":13620396},{"index":16,"address":"0xcfd300","value":"0x0","module":"","asU32":0},{"index":17,"address":"0xcfd304","value":"0x0","module":"","asU32":0},{"index":18,"address":"0xcfd308","value":"0x0","module":"","asU32":0},{"index":19,"address":"0xcfd30c","value":"0xcfd2f0","module":"","asU32":13619952},{"index":20,"address":"0xcfd310","value":"0x0","module":"","asU32":0},{"index":21,"address":"0xcfd314","value":"0xcfe9c0","module":"","asU32":13625792},{"index":22,"address":"0xcfd318","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":23,"address":"0xcfd31c","value":"0x29726cc1","module":"","asU32":695364801}],"time":"2026-04-25T10:48:10.242Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:48:10.243Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","varargs":[{"index":2,"value":"0xcfd2b8","module":"","asU32":13619896},{"index":3,"value":"0xcfd31c","module":"","asU32":13619996,"bstr":{"ptr":"0xcfd31c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":7,"value":"0xeb9700","module":"","asU32":15439616},{"index":8,"value":"0xcfd2e4","module":"","asU32":13619940},{"index":9,"value":"0xcfd344","module":"","asU32":13620036},{"index":10,"value":"0xcfd2ec","module":"","asU32":13619948},{"index":11,"value":"0xcfd370","module":"","asU32":13620080}],"stack":[{"index":0,"address":"0xcfd298","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xcfd29c","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0xcfd2a0","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":3,"address":"0xcfd2a4","value":"0xcfd2b8","module":"","asU32":13619896},{"index":4,"address":"0xcfd2a8","value":"0xcfd31c","module":"","asU32":13619996,"bstr":{"ptr":"0xcfd31c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xcfd2ac","value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":6,"address":"0xcfd2b0","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0xcfd2b4","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":8,"address":"0xcfd2b8","value":"0xeb9700","module":"","asU32":15439616},{"index":9,"address":"0xcfd2bc","value":"0xcfd2e4","module":"","asU32":13619940},{"index":10,"address":"0xcfd2c0","value":"0xcfd344","module":"","asU32":13620036},{"index":11,"address":"0xcfd2c4","value":"0xcfd2ec","module":"","asU32":13619948},{"index":12,"address":"0xcfd2c8","value":"0xcfd370","module":"","asU32":13620080},{"index":13,"address":"0xcfd2cc","value":"0x0","module":"","asU32":0},{"index":14,"address":"0xcfd2d0","value":"0x2","module":"","asU32":2},{"index":15,"address":"0xcfd2d4","value":"0x5ff6e7ad","module":"","asU32":1610016685},{"index":16,"address":"0xcfd2d8","value":"0xcfd4e8","module":"","asU32":13620456},{"index":17,"address":"0xcfd2dc","value":"0x0","module":"","asU32":0},{"index":18,"address":"0xcfd2e0","value":"0xcfd4ac","module":"","asU32":13620396},{"index":19,"address":"0xcfd2e4","value":"0x1","module":"","asU32":1},{"index":20,"address":"0xcfd2e8","value":"0xcfd368","module":"","asU32":13620072},{"index":21,"address":"0xcfd2ec","value":"0x0","module":"","asU32":0},{"index":22,"address":"0xcfd2f0","value":"0x0","module":"","asU32":0},{"index":23,"address":"0xcfd2f4","value":"0xcfd4e8","module":"","asU32":13620456}],"time":"2026-04-25T10:48:10.245Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:48:10.246Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","varargs":[{"index":2,"value":"0xcfd2f4","module":"","asU32":13619956},{"index":3,"value":"0xcfd32c","module":"","asU32":13620012,"bstr":{"ptr":"0xcfd32c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":7,"value":"0xcfd30c","module":"","asU32":13619980,"bstr":{"ptr":"0xcfd30c","byteLength":0,"charLength":0,"text":""}},{"index":8,"value":"0x5ff6e79d","module":"","asU32":1610016669},{"index":9,"value":"0xed2420","module":"","asU32":15541280},{"index":10,"value":"0xeaa2c0","module":"","asU32":15377088},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0xcfd2d4","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xcfd2d8","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0xcfd2dc","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":3,"address":"0xcfd2e0","value":"0xcfd2f4","module":"","asU32":13619956},{"index":4,"address":"0xcfd2e4","value":"0xcfd32c","module":"","asU32":13620012,"bstr":{"ptr":"0xcfd32c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xcfd2e8","value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":6,"address":"0xcfd2ec","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0xcfd2f0","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":8,"address":"0xcfd2f4","value":"0xcfd30c","module":"","asU32":13619980,"bstr":{"ptr":"0xcfd30c","byteLength":0,"charLength":0,"text":""}},{"index":9,"address":"0xcfd2f8","value":"0x5ff6e79d","module":"","asU32":1610016669},{"index":10,"address":"0xcfd2fc","value":"0xed2420","module":"","asU32":15541280},{"index":11,"address":"0xcfd300","value":"0xeaa2c0","module":"","asU32":15377088},{"index":12,"address":"0xcfd304","value":"0x0","module":"","asU32":0},{"index":13,"address":"0xcfd308","value":"0x0","module":"","asU32":0},{"index":14,"address":"0xcfd30c","value":"0xeb9700","module":"","asU32":15439616},{"index":15,"address":"0xcfd310","value":"0xcfd2e8","module":"","asU32":13619944},{"index":16,"address":"0xcfd314","value":"0xcfd2f8","module":"","asU32":13619960},{"index":17,"address":"0xcfd318","value":"0xcfe9c0","module":"","asU32":13625792},{"index":18,"address":"0xcfd31c","value":"0xcfe9c0","module":"","asU32":13625792},{"index":19,"address":"0xcfd320","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":20,"address":"0xcfd324","value":"0x29726cf9","module":"","asU32":695364857},{"index":21,"address":"0xcfd328","value":"0x0","module":"","asU32":0},{"index":22,"address":"0xcfd32c","value":"0xcfd3b4","module":"","asU32":13620148},{"index":23,"address":"0xcfd330","value":"0x76465077","module":"sechost.dll","asU32":1984319607}],"time":"2026-04-25T10:48:10.250Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:48:10.251Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","varargs":[{"index":2,"value":"0xcfd4b0","module":"","asU32":13620400},{"index":3,"value":"0xcfd50c","module":"","asU32":13620492,"bstr":{"ptr":"0xcfd50c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":7,"value":"0xec3570","module":"","asU32":15480176},{"index":8,"value":"0xec61b8","module":"","asU32":15491512},{"index":9,"value":"0xcfd538","module":"","asU32":13620536},{"index":10,"value":"0xcfd548","module":"","asU32":13620552},{"index":11,"value":"0x14","module":"","asU32":20}],"stack":[{"index":0,"address":"0xcfd490","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xcfd494","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0xcfd498","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":3,"address":"0xcfd49c","value":"0xcfd4b0","module":"","asU32":13620400},{"index":4,"address":"0xcfd4a0","value":"0xcfd50c","module":"","asU32":13620492,"bstr":{"ptr":"0xcfd50c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xcfd4a4","value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":6,"address":"0xcfd4a8","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0xcfd4ac","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":8,"address":"0xcfd4b0","value":"0xec3570","module":"","asU32":15480176},{"index":9,"address":"0xcfd4b4","value":"0xec61b8","module":"","asU32":15491512},{"index":10,"address":"0xcfd4b8","value":"0xcfd538","module":"","asU32":13620536},{"index":11,"address":"0xcfd4bc","value":"0xcfd548","module":"","asU32":13620552},{"index":12,"address":"0xcfd4c0","value":"0x14","module":"","asU32":20},{"index":13,"address":"0xcfd4c4","value":"0xcfd620","module":"","asU32":13620768,"bstr":{"ptr":"0xcfd620","byteLength":20,"charLength":10,"text":"\u0448í\u0d00ë\u0004\b\ud698Ï\u0298\u755b"}},{"index":14,"address":"0xcfd4c8","value":"0xcfd61c","module":"","asU32":13620764,"bstr":{"ptr":"0xcfd61c","byteLength":0,"charLength":0,"text":""}},{"index":15,"address":"0xcfd4cc","value":"0xcfd550","module":"","asU32":13620560},{"index":16,"address":"0xcfd4d0","value":"0xec7408","module":"","asU32":15496200},{"index":17,"address":"0xcfd4d4","value":"0xeba118","module":"","asU32":15442200},{"index":18,"address":"0xcfd4d8","value":"0xcfd4fc","module":"","asU32":13620476},{"index":19,"address":"0xcfd4dc","value":"0xcfd4f4","module":"","asU32":13620468},{"index":20,"address":"0xcfd4e0","value":"0xed2730","module":"","asU32":15542064},{"index":21,"address":"0xcfd4e4","value":"0x0","module":"","asU32":0},{"index":22,"address":"0xcfd4e8","value":"0xcfd61c","module":"","asU32":13620764,"bstr":{"ptr":"0xcfd61c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xcfd4ec","value":"0xeb18b8","module":"","asU32":15407288}],"time":"2026-04-25T10:48:10.255Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","time":"2026-04-25T10:48:10.258Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8d2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 00 00 08 00 47 03 08 41 00 00 00 00 00 00 0b 00 04 00 cc 1a 13 00 08 00 de 1a 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00","varargs":[{"index":2,"value":"0xcfd7dc","module":"","asU32":13621212},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0xcfd7d4","module":"","asU32":13621204},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfd7dc","module":"","asU32":13621212},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xcfd8d8","module":"","asU32":13621464},{"index":11,"value":"0x755a0067","module":"combase.dll","asU32":1968832615}],"stack":[{"index":0,"address":"0xcfd7a8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfd7ac","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfd7b0","value":"0x7553c8d2","module":"combase.dll","asU32":1968425170},{"index":3,"address":"0xcfd7b4","value":"0xcfd7dc","module":"","asU32":13621212},{"index":4,"address":"0xcfd7b8","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xcfd7bc","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfd7c0","value":"0x10","module":"","asU32":16},{"index":7,"address":"0xcfd7c4","value":"0xcfd7d4","module":"","asU32":13621204},{"index":8,"address":"0xcfd7c8","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfd7cc","value":"0xcfd7dc","module":"","asU32":13621212},{"index":10,"address":"0xcfd7d0","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xcfd7d4","value":"0xcfd8d8","module":"","asU32":13621464},{"index":12,"address":"0xcfd7d8","value":"0x755a0067","module":"combase.dll","asU32":1968832615},{"index":13,"address":"0xcfd7dc","value":"0xeca4dc","module":"","asU32":15508700},{"index":14,"address":"0xcfd7e0","value":"0xcfdd64","module":"","asU32":13622628,"bstr":{"ptr":"0xcfdd64","byteLength":2,"charLength":1,"text":"\u722c"}},{"index":15,"address":"0xcfd7e4","value":"0xcfd7f4","module":"","asU32":13621236},{"index":16,"address":"0xcfd7e8","value":"0xcfdd64","module":"","asU32":13622628,"bstr":{"ptr":"0xcfdd64","byteLength":2,"charLength":1,"text":"\u722c"}},{"index":17,"address":"0xcfd7ec","value":"0x755a2c10","module":"combase.dll","asU32":1968843792},{"index":18,"address":"0xcfd7f0","value":"0xcfe494","module":"","asU32":13624468},{"index":19,"address":"0xcfd7f4","value":"0x0","module":"","asU32":0},{"index":20,"address":"0xcfd7f8","value":"0xcfe2a0","module":"","asU32":13623968,"bstr":{"ptr":"0xcfe2a0","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0xcfd7fc","value":"0xcfdd6c","module":"","asU32":13622636},{"index":22,"address":"0xcfd800","value":"0x75751750","module":"combase.dll","asU32":1970607952,"bstr":{"ptr":"0x75751750","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xcfd804","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:10.261Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8d2","retval":"0x0","time":"2026-04-25T10:48:10.265Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xcfe660","module":"","asU32":13624928},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xcfe658","module":"","asU32":13624920},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfe660","module":"","asU32":13624928},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xcfe6b4","module":"","asU32":13625012},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xcfe62c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfe630","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfe634","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xcfe638","value":"0xcfe660","module":"","asU32":13624928},{"index":4,"address":"0xcfe63c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xcfe640","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfe644","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xcfe648","value":"0xcfe658","module":"","asU32":13624920},{"index":8,"address":"0xcfe64c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfe650","value":"0xcfe660","module":"","asU32":13624928},{"index":10,"address":"0xcfe654","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xcfe658","value":"0xcfe6b4","module":"","asU32":13625012},{"index":12,"address":"0xcfe65c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xcfe660","value":"0xeca3bc","module":"","asU32":15508412},{"index":14,"address":"0xcfe664","value":"0xcfe69c","module":"","asU32":13624988},{"index":15,"address":"0xcfe668","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xcfe66c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xcfe670","value":"0xcfe738","module":"","asU32":13625144,"bstr":{"ptr":"0xcfe738","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xcfe674","value":"0xcfe714","module":"","asU32":13625108,"bstr":{"ptr":"0xcfe714","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xcfe678","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xcfe67c","value":"0xee3038","module":"","asU32":15609912},{"index":21,"address":"0xcfe680","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xcfe684","value":"0xeca3bc","module":"","asU32":15508412},{"index":23,"address":"0xcfe688","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:10.270Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:10.272Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x7551a860","procFormat":"0x755394e2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 44 00 08 00 45 03 08 43 01 00 00 00 00 00 0a 01 04 00 0c 00 13 00 08 00 18 00 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","varargs":[{"index":2,"value":"0xcfe7dc","module":"","asU32":13625308},{"index":3,"value":"0xcfe7f8","module":"","asU32":13625336,"bstr":{"ptr":"0xcfe7f8","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":5,"value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":6,"value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0xec9fcc","module":"","asU32":15507404},{"index":8,"value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":9,"value":"0xcfe7f4","module":"","asU32":13625332},{"index":10,"value":"0xec9fcc","module":"","asU32":15507404},{"index":11,"value":"0x2","module":"","asU32":2}],"stack":[{"index":0,"address":"0xcfe7bc","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xcfe7c0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfe7c4","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0xcfe7c8","value":"0xcfe7dc","module":"","asU32":13625308},{"index":4,"address":"0xcfe7cc","value":"0xcfe7f8","module":"","asU32":13625336,"bstr":{"ptr":"0xcfe7f8","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xcfe7d0","value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":6,"address":"0xcfe7d4","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":7,"address":"0xcfe7d8","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0xcfe7dc","value":"0xec9fcc","module":"","asU32":15507404},{"index":9,"address":"0xcfe7e0","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":10,"address":"0xcfe7e4","value":"0xcfe7f4","module":"","asU32":13625332},{"index":11,"address":"0xcfe7e8","value":"0xec9fcc","module":"","asU32":15507404},{"index":12,"address":"0xcfe7ec","value":"0x2","module":"","asU32":2},{"index":13,"address":"0xcfe7f0","value":"0x75521af0","module":"combase.dll","asU32":1968315120},{"index":14,"address":"0xcfe7f4","value":"0x0","module":"","asU32":0},{"index":15,"address":"0xcfe7f8","value":"0xcfe9c0","module":"","asU32":13625792,"bstr":{"ptr":"0xcfe9c0","byteLength":16,"charLength":8,"text":"\ue9f8Ï\u13da\u748a\u9fccì"}},{"index":16,"address":"0xcfe7fc","value":"0x748a130c","module":"clr.dll","asU32":1955205900},{"index":17,"address":"0xcfe800","value":"0xec9fcc","module":"","asU32":15507404},{"index":18,"address":"0xcfe804","value":"0x0","module":"","asU32":0},{"index":19,"address":"0xcfe808","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":20,"address":"0xcfe80c","value":"0xcfe988","module":"","asU32":13625736,"bstr":{"ptr":"0xcfe988","byteLength":2,"charLength":1,"text":""}},{"index":21,"address":"0xcfe810","value":"0xd98c88fc","module":"","asU32":3649865980},{"index":22,"address":"0xcfe814","value":"0xec9fcc","module":"","asU32":15507404},{"index":23,"address":"0xcfe818","value":"0x1","module":"","asU32":1}],"time":"2026-04-25T10:48:10.276Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755394e2","retval":"0x0","time":"2026-04-25T10:48:10.277Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0xcfe77c","module":"","asU32":13625212},{"index":3,"value":"0xeb0d00","module":"","asU32":15404288},{"index":4,"value":"0x1","module":"","asU32":1},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0xcfe774","module":"","asU32":13625204},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfe77c","module":"","asU32":13625212},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0xcfe8c0","module":"","asU32":13625536},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0xcfe748","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfe74c","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfe750","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0xcfe754","value":"0xcfe77c","module":"","asU32":13625212},{"index":4,"address":"0xcfe758","value":"0xeb0d00","module":"","asU32":15404288},{"index":5,"address":"0xcfe75c","value":"0x1","module":"","asU32":1},{"index":6,"address":"0xcfe760","value":"0x10","module":"","asU32":16},{"index":7,"address":"0xcfe764","value":"0xcfe774","module":"","asU32":13625204},{"index":8,"address":"0xcfe768","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfe76c","value":"0xcfe77c","module":"","asU32":13625212},{"index":10,"address":"0xcfe770","value":"0x5","module":"","asU32":5},{"index":11,"address":"0xcfe774","value":"0xcfe8c0","module":"","asU32":13625536},{"index":12,"address":"0xcfe778","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0xcfe77c","value":"0xeca3bc","module":"","asU32":15508412},{"index":14,"address":"0xcfe780","value":"0x1","module":"","asU32":1},{"index":15,"address":"0xcfe784","value":"0xeba250","module":"","asU32":15442512},{"index":16,"address":"0xcfe788","value":"0x2","module":"","asU32":2},{"index":17,"address":"0xcfe78c","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0xcfe790","value":"0xee3038","module":"","asU32":15609912},{"index":19,"address":"0xcfe794","value":"0x76fc5700","module":"RPCRT4.dll","asU32":1996248832},{"index":20,"address":"0xcfe798","value":"0x0","module":"","asU32":0},{"index":21,"address":"0xcfe79c","value":"0xeca3bc","module":"","asU32":15508412},{"index":22,"address":"0xcfe7a0","value":"0x0","module":"","asU32":0},{"index":23,"address":"0xcfe7a4","value":"0xeca3bc","module":"","asU32":15508412}],"time":"2026-04-25T10:48:10.281Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:48:10.282Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xcfe290","module":"","asU32":13623952},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xcfe288","module":"","asU32":13623944},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfe290","module":"","asU32":13623952},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xcfe2e4","module":"","asU32":13624036},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xcfe25c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfe260","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfe264","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xcfe268","value":"0xcfe290","module":"","asU32":13623952},{"index":4,"address":"0xcfe26c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xcfe270","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfe274","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xcfe278","value":"0xcfe288","module":"","asU32":13623944},{"index":8,"address":"0xcfe27c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfe280","value":"0xcfe290","module":"","asU32":13623952},{"index":10,"address":"0xcfe284","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xcfe288","value":"0xcfe2e4","module":"","asU32":13624036},{"index":12,"address":"0xcfe28c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xcfe290","value":"0xeca3bc","module":"","asU32":15508412},{"index":14,"address":"0xcfe294","value":"0xcfe2cc","module":"","asU32":13624012},{"index":15,"address":"0xcfe298","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xcfe29c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xcfe2a0","value":"0xcfe364","module":"","asU32":13624164,"bstr":{"ptr":"0xcfe364","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xcfe2a4","value":"0xcfe344","module":"","asU32":13624132,"bstr":{"ptr":"0xcfe344","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xcfe2a8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xcfe2ac","value":"0xee2e60","module":"","asU32":15609440},{"index":21,"address":"0xcfe2b0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xcfe2b4","value":"0xeca3bc","module":"","asU32":15508412},{"index":23,"address":"0xcfe2b8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:10.286Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:10.288Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xcfe1c0","module":"","asU32":13623744},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xcfe1b8","module":"","asU32":13623736},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfe1c0","module":"","asU32":13623744},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xcfe214","module":"","asU32":13623828},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xcfe18c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfe190","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfe194","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xcfe198","value":"0xcfe1c0","module":"","asU32":13623744},{"index":4,"address":"0xcfe19c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xcfe1a0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfe1a4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xcfe1a8","value":"0xcfe1b8","module":"","asU32":13623736},{"index":8,"address":"0xcfe1ac","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfe1b0","value":"0xcfe1c0","module":"","asU32":13623744},{"index":10,"address":"0xcfe1b4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xcfe1b8","value":"0xcfe214","module":"","asU32":13623828},{"index":12,"address":"0xcfe1bc","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xcfe1c0","value":"0xeca3bc","module":"","asU32":15508412},{"index":14,"address":"0xcfe1c4","value":"0xcfe1fc","module":"","asU32":13623804},{"index":15,"address":"0xcfe1c8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xcfe1cc","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xcfe1d0","value":"0xcfe29c","module":"","asU32":13623964,"bstr":{"ptr":"0xcfe29c","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xcfe1d4","value":"0xcfe274","module":"","asU32":13623924,"bstr":{"ptr":"0xcfe274","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xcfe1d8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xcfe1dc","value":"0xee2e60","module":"","asU32":15609440},{"index":21,"address":"0xcfe1e0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xcfe1e4","value":"0xeca3bc","module":"","asU32":15508412},{"index":23,"address":"0xcfe1e8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:10.291Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:10.292Z"} +register.begin +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xcfded0","module":"","asU32":13622992},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xcfdec8","module":"","asU32":13622984},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfded0","module":"","asU32":13622992},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xcfdf24","module":"","asU32":13623076},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xcfde9c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfdea0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfdea4","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xcfdea8","value":"0xcfded0","module":"","asU32":13622992},{"index":4,"address":"0xcfdeac","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xcfdeb0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfdeb4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xcfdeb8","value":"0xcfdec8","module":"","asU32":13622984},{"index":8,"address":"0xcfdebc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfdec0","value":"0xcfded0","module":"","asU32":13622992},{"index":10,"address":"0xcfdec4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xcfdec8","value":"0xcfdf24","module":"","asU32":13623076},{"index":12,"address":"0xcfdecc","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xcfded0","value":"0xeca3bc","module":"","asU32":15508412},{"index":14,"address":"0xcfded4","value":"0xcfdf0c","module":"","asU32":13623052},{"index":15,"address":"0xcfded8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xcfdedc","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xcfdee0","value":"0xcfdfb0","module":"","asU32":13623216,"bstr":{"ptr":"0xcfdfb0","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xcfdee4","value":"0xcfdf84","module":"","asU32":13623172,"bstr":{"ptr":"0xcfdf84","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xcfdee8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xcfdeec","value":"0xee2e60","module":"","asU32":15609440},{"index":21,"address":"0xcfdef0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xcfdef4","value":"0xeca3bc","module":"","asU32":15508412},{"index":23,"address":"0xcfdef8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:10.297Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:10.298Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xcfe880","module":"","asU32":13625472},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xcfe878","module":"","asU32":13625464},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfe880","module":"","asU32":13625472},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xcfe8d4","module":"","asU32":13625556},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xcfe84c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfe850","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfe854","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xcfe858","value":"0xcfe880","module":"","asU32":13625472},{"index":4,"address":"0xcfe85c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xcfe860","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfe864","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xcfe868","value":"0xcfe878","module":"","asU32":13625464},{"index":8,"address":"0xcfe86c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfe870","value":"0xcfe880","module":"","asU32":13625472},{"index":10,"address":"0xcfe874","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xcfe878","value":"0xcfe8d4","module":"","asU32":13625556},{"index":12,"address":"0xcfe87c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xcfe880","value":"0xeca3bc","module":"","asU32":15508412},{"index":14,"address":"0xcfe884","value":"0xcfe8bc","module":"","asU32":13625532},{"index":15,"address":"0xcfe888","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xcfe88c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xcfe890","value":"0xcfe958","module":"","asU32":13625688,"bstr":{"ptr":"0xcfe958","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xcfe894","value":"0xcfe934","module":"","asU32":13625652,"bstr":{"ptr":"0xcfe934","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xcfe898","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xcfe89c","value":"0xee2e60","module":"","asU32":15609440},{"index":21,"address":"0xcfe8a0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xcfe8a4","value":"0xeca3bc","module":"","asU32":15508412},{"index":23,"address":"0xcfe8a8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:10.302Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:48:10.304Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","varargs":[{"index":2,"value":"0xcfebb4","module":"","asU32":13626292},{"index":3,"value":"0x3803c08","module":"","asU32":58735624,"bstr":{"ptr":"0x3803c08","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0xcfebac","module":"","asU32":13626284,"bstr":{"ptr":"0xcfebac","byteLength":10,"charLength":5,"text":"\uec5cÏ\u1171\u037d\u9ef4"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfebb4","module":"","asU32":13626292},{"index":9,"value":"0xa","module":"","asU32":10},{"index":10,"value":"0xcfec5c","module":"","asU32":13626460},{"index":11,"value":"0x37d1171","module":"","asU32":58528113}],"stack":[{"index":0,"address":"0xcfeb80","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfeb84","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0xcfeb88","value":"0x6417775a","module":"NmxSvcps.dll","asU32":1679259482},{"index":3,"address":"0xcfeb8c","value":"0xcfebb4","module":"","asU32":13626292},{"index":4,"address":"0xcfeb90","value":"0x3803c08","module":"","asU32":58735624,"bstr":{"ptr":"0x3803c08","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xcfeb94","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfeb98","value":"0x18","module":"","asU32":24},{"index":7,"address":"0xcfeb9c","value":"0xcfebac","module":"","asU32":13626284,"bstr":{"ptr":"0xcfebac","byteLength":10,"charLength":5,"text":"\uec5cÏ\u1171\u037d\u9ef4"}},{"index":8,"address":"0xcfeba0","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfeba4","value":"0xcfebb4","module":"","asU32":13626292},{"index":10,"address":"0xcfeba8","value":"0xa","module":"","asU32":10},{"index":11,"address":"0xcfebac","value":"0xcfec5c","module":"","asU32":13626460},{"index":12,"address":"0xcfebb0","value":"0x37d1171","module":"","asU32":58528113},{"index":13,"address":"0xcfebb4","value":"0xec9ef4","module":"","asU32":15507188},{"index":14,"address":"0xcfebb8","value":"0x7103","module":"","asU32":28931},{"index":15,"address":"0xcfebbc","value":"0xcfebcc","module":"","asU32":13626316,"bstr":{"ptr":"0xcfebcc","byteLength":32,"charLength":16,"text":"NmxComProxyWire4"}},{"index":16,"address":"0xcfebc0","value":"0x6","module":"","asU32":6},{"index":17,"address":"0xcfebc4","value":"0x5e80030","module":"","asU32":99090480,"bstr":{"ptr":"0x5e80030","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xcfebc8","value":"0x20","module":"","asU32":32},{"index":19,"address":"0xcfebcc","value":"0x6d004e","module":"","asU32":7143502},{"index":20,"address":"0xcfebd0","value":"0x430078","module":"","asU32":4391032},{"index":21,"address":"0xcfebd4","value":"0x6d006f","module":"","asU32":7143535},{"index":22,"address":"0xcfebd8","value":"0x720050","module":"","asU32":7471184},{"index":23,"address":"0xcfebdc","value":"0x78006f","module":"","asU32":7864431}],"time":"2026-04-25T10:48:10.316Z"} +register.ok +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x755362b8","procFormatPrefix":"00 68 00 00 00 00 07 00 24 00 32 00 00 00 58 00 24 00 47 08 08 47 01 00 01 00 00 00 08 00 04 00 72 01 48 01 08 00 0b 00 88 00 0c 00 34 04 0b 00 10 00 3e 04 88 00 14 00 54 04 13 00 18 00 5e 04","varargs":[{"index":2,"value":"0xcfe0e8","module":"","asU32":13623528},{"index":3,"value":"0xcfe114","module":"","asU32":13623572,"bstr":{"ptr":"0xcfe114","byteLength":20,"charLength":10,"text":"\ue138Ï\u7a09\u755f\ue130Ï\ue164Ï\ue168Ï"}},{"index":4,"value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":7,"value":"0xec3570","module":"","asU32":15480176},{"index":8,"value":"0xec61b8","module":"","asU32":15491512},{"index":9,"value":"0xcfe130","module":"","asU32":13623600},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0xcfe208","module":"","asU32":13623816}],"stack":[{"index":0,"address":"0xcfe0c8","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xcfe0cc","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0xcfe0d0","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":3,"address":"0xcfe0d4","value":"0xcfe0e8","module":"","asU32":13623528},{"index":4,"address":"0xcfe0d8","value":"0xcfe114","module":"","asU32":13623572,"bstr":{"ptr":"0xcfe114","byteLength":20,"charLength":10,"text":"\ue138Ï\u7a09\u755f\ue130Ï\ue164Ï\ue168Ï"}},{"index":5,"address":"0xcfe0dc","value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":6,"address":"0xcfe0e0","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0xcfe0e4","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":8,"address":"0xcfe0e8","value":"0xec3570","module":"","asU32":15480176},{"index":9,"address":"0xcfe0ec","value":"0xec61b8","module":"","asU32":15491512},{"index":10,"address":"0xcfe0f0","value":"0xcfe130","module":"","asU32":13623600},{"index":11,"address":"0xcfe0f4","value":"0x0","module":"","asU32":0},{"index":12,"address":"0xcfe0f8","value":"0xcfe208","module":"","asU32":13623816},{"index":13,"address":"0xcfe0fc","value":"0x14","module":"","asU32":20},{"index":14,"address":"0xcfe100","value":"0xcfe168","module":"","asU32":13623656,"bstr":{"ptr":"0xcfe168","byteLength":20,"charLength":10,"text":""}},{"index":15,"address":"0xcfe104","value":"0xcfe164","module":"","asU32":13623652,"bstr":{"ptr":"0xcfe164","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0xcfe108","value":"0x0","module":"","asU32":0},{"index":17,"address":"0xcfe10c","value":"0xeb1720","module":"","asU32":15406880},{"index":18,"address":"0xcfe110","value":"0x14","module":"","asU32":20},{"index":19,"address":"0xcfe114","value":"0xcfe138","module":"","asU32":13623608},{"index":20,"address":"0xcfe118","value":"0x755f7a09","module":"combase.dll","asU32":1969191433},{"index":21,"address":"0xcfe11c","value":"0xcfe130","module":"","asU32":13623600},{"index":22,"address":"0xcfe120","value":"0xcfe164","module":"","asU32":13623652,"bstr":{"ptr":"0xcfe164","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xcfe124","value":"0xcfe168","module":"","asU32":13623656,"bstr":{"ptr":"0xcfe168","byteLength":20,"charLength":10,"text":""}}],"time":"2026-04-25T10:48:10.320Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755362b8","retval":"0x0","time":"2026-04-25T10:48:10.321Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x0","time":"2026-04-25T10:48:10.323Z"} +partner_version=6 +unregister.begin +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177790","procFormatPrefix":"33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 50 21 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 03 00 18 00","varargs":[{"index":2,"value":"0xcfebf0","module":"","asU32":13626352},{"index":3,"value":"0x1","module":"","asU32":1},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0xcfebe8","module":"","asU32":13626344},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfebf0","module":"","asU32":13626352},{"index":9,"value":"0xb","module":"","asU32":11},{"index":10,"value":"0xcfec5c","module":"","asU32":13626460},{"index":11,"value":"0x37d12d5","module":"","asU32":58528469}],"stack":[{"index":0,"address":"0xcfebbc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfebc0","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0xcfebc4","value":"0x64177790","module":"NmxSvcps.dll","asU32":1679259536},{"index":3,"address":"0xcfebc8","value":"0xcfebf0","module":"","asU32":13626352},{"index":4,"address":"0xcfebcc","value":"0x1","module":"","asU32":1},{"index":5,"address":"0xcfebd0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfebd4","value":"0x18","module":"","asU32":24},{"index":7,"address":"0xcfebd8","value":"0xcfebe8","module":"","asU32":13626344},{"index":8,"address":"0xcfebdc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfebe0","value":"0xcfebf0","module":"","asU32":13626352},{"index":10,"address":"0xcfebe4","value":"0xb","module":"","asU32":11},{"index":11,"address":"0xcfebe8","value":"0xcfec5c","module":"","asU32":13626460},{"index":12,"address":"0xcfebec","value":"0x37d12d5","module":"","asU32":58528469},{"index":13,"address":"0xcfebf0","value":"0xec9ef4","module":"","asU32":15507188},{"index":14,"address":"0xcfebf4","value":"0x1","module":"","asU32":1},{"index":15,"address":"0xcfebf8","value":"0x1","module":"","asU32":1},{"index":16,"address":"0xcfebfc","value":"0x7ffd","module":"","asU32":32765},{"index":17,"address":"0xcfec00","value":"0xcfed14","module":"","asU32":13626644,"bstr":{"ptr":"0xcfed14","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xcfec04","value":"0xd0e4e94a","module":"","asU32":3504662858},{"index":19,"address":"0xcfec08","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":20,"address":"0xcfec0c","value":"0xcfeebc","module":"","asU32":13627068},{"index":21,"address":"0xcfec10","value":"0x14","module":"","asU32":20},{"index":22,"address":"0xcfec14","value":"0xcfebf0","module":"","asU32":13626352},{"index":23,"address":"0xcfec18","value":"0x37d12d5","module":"","asU32":58528469}],"time":"2026-04-25T10:48:10.330Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177790","retval":"0x0","time":"2026-04-25T10:48:10.330Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","varargs":[{"index":2,"value":"0xcfec0c","module":"","asU32":13626380},{"index":3,"value":"0x7103","module":"","asU32":28931},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0xc","module":"","asU32":12},{"index":6,"value":"0xcfec04","module":"","asU32":13626372,"bstr":{"ptr":"0xcfec04","byteLength":4,"charLength":2,"text":"\uec68Ï"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfec0c","module":"","asU32":13626380},{"index":9,"value":"0x4","module":"","asU32":4},{"index":10,"value":"0xcfec68","module":"","asU32":13626472},{"index":11,"value":"0x37d13ed","module":"","asU32":58528749}],"stack":[{"index":0,"address":"0xcfebd8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfebdc","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0xcfebe0","value":"0x6417762e","module":"NmxSvcps.dll","asU32":1679259182},{"index":3,"address":"0xcfebe4","value":"0xcfec0c","module":"","asU32":13626380},{"index":4,"address":"0xcfebe8","value":"0x7103","module":"","asU32":28931},{"index":5,"address":"0xcfebec","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xcfebf0","value":"0xc","module":"","asU32":12},{"index":7,"address":"0xcfebf4","value":"0xcfec04","module":"","asU32":13626372,"bstr":{"ptr":"0xcfec04","byteLength":4,"charLength":2,"text":"\uec68Ï"}},{"index":8,"address":"0xcfebf8","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfebfc","value":"0xcfec0c","module":"","asU32":13626380},{"index":10,"address":"0xcfec00","value":"0x4","module":"","asU32":4},{"index":11,"address":"0xcfec04","value":"0xcfec68","module":"","asU32":13626472},{"index":12,"address":"0xcfec08","value":"0x37d13ed","module":"","asU32":58528749},{"index":13,"address":"0xcfec0c","value":"0xec9ef4","module":"","asU32":15507188},{"index":14,"address":"0xcfec10","value":"0x7103","module":"","asU32":28931},{"index":15,"address":"0xcfec14","value":"0xd0e4e94a","module":"","asU32":3504662858},{"index":16,"address":"0xcfec18","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":17,"address":"0xcfec1c","value":"0xcfeebc","module":"","asU32":13627068},{"index":18,"address":"0xcfec20","value":"0x8","module":"","asU32":8},{"index":19,"address":"0xcfec24","value":"0xcfec0c","module":"","asU32":13626380},{"index":20,"address":"0xcfec28","value":"0x37d13ed","module":"","asU32":58528749},{"index":21,"address":"0xcfec2c","value":"0xcfec68","module":"","asU32":13626472},{"index":22,"address":"0xcfec30","value":"0x35f4f0c","module":"","asU32":56577804,"bstr":{"ptr":"0x35f4f0c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xcfec34","value":"0x3804d00","module":"","asU32":58739968}],"time":"2026-04-25T10:48:10.338Z"} +unregister.ok +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x0","time":"2026-04-25T10:48:10.342Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0xcfe894","module":"","asU32":13625492},{"index":3,"value":"0xeb0d00","module":"","asU32":15404288},{"index":4,"value":"0x2","module":"","asU32":2},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0xcfe88c","module":"","asU32":13625484},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xcfe894","module":"","asU32":13625492},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0xcfe9d8","module":"","asU32":13625816},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0xcfe860","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xcfe864","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xcfe868","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0xcfe86c","value":"0xcfe894","module":"","asU32":13625492},{"index":4,"address":"0xcfe870","value":"0xeb0d00","module":"","asU32":15404288},{"index":5,"address":"0xcfe874","value":"0x2","module":"","asU32":2},{"index":6,"address":"0xcfe878","value":"0x10","module":"","asU32":16},{"index":7,"address":"0xcfe87c","value":"0xcfe88c","module":"","asU32":13625484},{"index":8,"address":"0xcfe880","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xcfe884","value":"0xcfe894","module":"","asU32":13625492},{"index":10,"address":"0xcfe888","value":"0x5","module":"","asU32":5},{"index":11,"address":"0xcfe88c","value":"0xcfe9d8","module":"","asU32":13625816},{"index":12,"address":"0xcfe890","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0xcfe894","value":"0xeca3bc","module":"","asU32":15508412},{"index":14,"address":"0xcfe898","value":"0x2","module":"","asU32":2},{"index":15,"address":"0xcfe89c","value":"0xee0ac8","module":"","asU32":15600328},{"index":16,"address":"0xcfe8a0","value":"0x2","module":"","asU32":2},{"index":17,"address":"0xcfe8a4","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0xcfe8a8","value":"0xee2e60","module":"","asU32":15609440},{"index":19,"address":"0xcfe8ac","value":"0xcfe8f8","module":"","asU32":13625592},{"index":20,"address":"0xcfe8b0","value":"0x0","module":"","asU32":0},{"index":21,"address":"0xcfe8b4","value":"0xeca3bc","module":"","asU32":15508412},{"index":22,"address":"0xcfe8b8","value":"0x0","module":"","asU32":0},{"index":23,"address":"0xcfe8bc","value":"0xeca3bc","module":"","asU32":15508412}],"time":"2026-04-25T10:48:10.347Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:48:10.348Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida-exit.txt b/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida.stderr.txt b/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida.stdout.jsonl b/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida.stdout.jsonl new file mode 100644 index 0000000..763aed4 --- /dev/null +++ b/captures/052-frida-direct-nmx-registerengine2-marshals-retry/frida.stdout.jsonl @@ -0,0 +1,71 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7104 --engine-name=NmxComProxyWire5 --version=6 --hold-seconds=0`... +{"event":"script.loaded","process":15248,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:48:56.374Z"} +{"event":"hook.missing","module":"oleaut32.dll","name":"BSTR_UserMarshal","time":"2026-04-25T10:48:56.375Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrInterfacePointerMarshall","address":"0x7704d450","time":"2026-04-25T10:48:56.375Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:48:56.376Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:48:56.376Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:48:56.376Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7104 --engine-name=NmxComProxyWire5 --version=6 --hold-seconds=0`. Resuming main thread! +[Local::NmxComHarness.exe ]-> {"event":"hook.installed","module":"oleaut32.dll","name":"BSTR_UserMarshal","address":"0x757a42e0","time":"2026-04-25T10:48:56.478Z"} +process=x64:False +engine_id=28932 +engine_name=NmxComProxyWire5 +version=6 +null_callback=False +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","varargs":[{"index":2,"value":"0xbdd1cc","module":"","asU32":12440012},{"index":3,"value":"0xbdd7b0","module":"","asU32":12441520},{"index":4,"value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x1266eb8","module":"","asU32":19295928},{"index":8,"value":"0x126a0e8","module":"","asU32":19308776},{"index":9,"value":"0xbdd398","module":"","asU32":12440472,"bstr":{"ptr":"0xbdd398","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0xbdd1ac","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xbdd1b0","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0xbdd1b4","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0xbdd1b8","value":"0xbdd1cc","module":"","asU32":12440012},{"index":4,"address":"0xbdd1bc","value":"0xbdd7b0","module":"","asU32":12441520},{"index":5,"address":"0xbdd1c0","value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":6,"address":"0xbdd1c4","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0xbdd1c8","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0xbdd1cc","value":"0x1266eb8","module":"","asU32":19295928},{"index":9,"address":"0xbdd1d0","value":"0x126a0e8","module":"","asU32":19308776},{"index":10,"address":"0xbdd1d4","value":"0xbdd398","module":"","asU32":12440472,"bstr":{"ptr":"0xbdd398","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":11,"address":"0xbdd1d8","value":"0x0","module":"","asU32":0},{"index":12,"address":"0xbdd1dc","value":"0x0","module":"","asU32":0},{"index":13,"address":"0xbdd1e0","value":"0x75750160","module":"combase.dll","asU32":1970602336,"bstr":{"ptr":"0x75750160","byteLength":0,"charLength":0,"text":""}},{"index":14,"address":"0xbdd1e4","value":"0x7574fed8","module":"combase.dll","asU32":1970601688},{"index":15,"address":"0xbdd1e8","value":"0xbdd258","module":"","asU32":12440152,"bstr":{"ptr":"0xbdd258","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0xbdd1ec","value":"0x75750620","module":"combase.dll","asU32":1970603552,"bstr":{"ptr":"0x75750620","byteLength":0,"charLength":0,"text":""}},{"index":17,"address":"0xbdd1f0","value":"0xa","module":"","asU32":10},{"index":18,"address":"0xbdd1f4","value":"0xbdd300","module":"","asU32":12440320,"bstr":{"ptr":"0xbdd300","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xbdd1f8","value":"0xbdd27c","module":"","asU32":12440188,"bstr":{"ptr":"0xbdd27c","byteLength":0,"charLength":0,"text":""}},{"index":20,"address":"0xbdd1fc","value":"0xbdd278","module":"","asU32":12440184,"bstr":{"ptr":"0xbdd278","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0xbdd200","value":"0x75751248","module":"combase.dll","asU32":1970606664,"bstr":{"ptr":"0x75751248","byteLength":0,"charLength":0,"text":""}},{"index":22,"address":"0xbdd204","value":"0x75751244","module":"combase.dll","asU32":1970606660,"bstr":{"ptr":"0x75751244","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xbdd208","value":"0x757501b0","module":"combase.dll","asU32":1970602416,"bstr":{"ptr":"0x757501b0","byteLength":0,"charLength":0,"text":""}}],"time":"2026-04-25T10:48:56.501Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","time":"2026-04-25T10:48:56.503Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","varargs":[{"index":2,"value":"0xbdd600","module":"","asU32":12441088},{"index":3,"value":"0xbdd644","module":"","asU32":12441156,"bstr":{"ptr":"0xbdd644","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x0","module":"","asU32":0},{"index":8,"value":"0xbdd6a8","module":"","asU32":12441256},{"index":9,"value":"0x800","module":"","asU32":2048},{"index":10,"value":"0xbdd624","module":"","asU32":12441124,"bstr":{"ptr":"0xbdd624","byteLength":0,"charLength":0,"text":""}},{"index":11,"value":"0xbd6f31b1","module":"","asU32":3178181041}],"stack":[{"index":0,"address":"0xbdd5e0","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xbdd5e4","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0xbdd5e8","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0xbdd5ec","value":"0xbdd600","module":"","asU32":12441088},{"index":4,"address":"0xbdd5f0","value":"0xbdd644","module":"","asU32":12441156,"bstr":{"ptr":"0xbdd644","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xbdd5f4","value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":6,"address":"0xbdd5f8","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0xbdd5fc","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0xbdd600","value":"0x0","module":"","asU32":0},{"index":9,"address":"0xbdd604","value":"0xbdd6a8","module":"","asU32":12441256},{"index":10,"address":"0xbdd608","value":"0x800","module":"","asU32":2048},{"index":11,"address":"0xbdd60c","value":"0xbdd624","module":"","asU32":12441124,"bstr":{"ptr":"0xbdd624","byteLength":0,"charLength":0,"text":""}},{"index":12,"address":"0xbdd610","value":"0xbd6f31b1","module":"","asU32":3178181041},{"index":13,"address":"0xbdd614","value":"0xbdd808","module":"","asU32":12441608},{"index":14,"address":"0xbdd618","value":"0x0","module":"","asU32":0},{"index":15,"address":"0xbdd61c","value":"0xbdd7cc","module":"","asU32":12441548},{"index":16,"address":"0xbdd620","value":"0x0","module":"","asU32":0},{"index":17,"address":"0xbdd624","value":"0x0","module":"","asU32":0},{"index":18,"address":"0xbdd628","value":"0x0","module":"","asU32":0},{"index":19,"address":"0xbdd62c","value":"0xbdd610","module":"","asU32":12441104},{"index":20,"address":"0xbdd630","value":"0x0","module":"","asU32":0},{"index":21,"address":"0xbdd634","value":"0xbdece0","module":"","asU32":12446944},{"index":22,"address":"0xbdd638","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":23,"address":"0xbdd63c","value":"0xcb99bf85","module":"","asU32":3415850885}],"time":"2026-04-25T10:48:56.506Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","time":"2026-04-25T10:48:56.508Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","varargs":[{"index":2,"value":"0xbdd5d8","module":"","asU32":12441048},{"index":3,"value":"0xbdd63c","module":"","asU32":12441148,"bstr":{"ptr":"0xbdd63c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":7,"value":"0x12550c0","module":"","asU32":19222720},{"index":8,"value":"0xbdd604","module":"","asU32":12441092},{"index":9,"value":"0xbdd664","module":"","asU32":12441188},{"index":10,"value":"0xbdd60c","module":"","asU32":12441100},{"index":11,"value":"0xbdd690","module":"","asU32":12441232}],"stack":[{"index":0,"address":"0xbdd5b8","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xbdd5bc","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0xbdd5c0","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":3,"address":"0xbdd5c4","value":"0xbdd5d8","module":"","asU32":12441048},{"index":4,"address":"0xbdd5c8","value":"0xbdd63c","module":"","asU32":12441148,"bstr":{"ptr":"0xbdd63c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xbdd5cc","value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":6,"address":"0xbdd5d0","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0xbdd5d4","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":8,"address":"0xbdd5d8","value":"0x12550c0","module":"","asU32":19222720},{"index":9,"address":"0xbdd5dc","value":"0xbdd604","module":"","asU32":12441092},{"index":10,"address":"0xbdd5e0","value":"0xbdd664","module":"","asU32":12441188},{"index":11,"address":"0xbdd5e4","value":"0xbdd60c","module":"","asU32":12441100},{"index":12,"address":"0xbdd5e8","value":"0xbdd690","module":"","asU32":12441232},{"index":13,"address":"0xbdd5ec","value":"0x0","module":"","asU32":0},{"index":14,"address":"0xbdd5f0","value":"0x2","module":"","asU32":2},{"index":15,"address":"0xbdd5f4","value":"0xbd6f31c9","module":"","asU32":3178181065},{"index":16,"address":"0xbdd5f8","value":"0xbdd808","module":"","asU32":12441608},{"index":17,"address":"0xbdd5fc","value":"0x0","module":"","asU32":0},{"index":18,"address":"0xbdd600","value":"0xbdd7cc","module":"","asU32":12441548},{"index":19,"address":"0xbdd604","value":"0x1","module":"","asU32":1},{"index":20,"address":"0xbdd608","value":"0xbdd688","module":"","asU32":12441224},{"index":21,"address":"0xbdd60c","value":"0x0","module":"","asU32":0},{"index":22,"address":"0xbdd610","value":"0x0","module":"","asU32":0},{"index":23,"address":"0xbdd614","value":"0xbdd808","module":"","asU32":12441608}],"time":"2026-04-25T10:48:56.510Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","time":"2026-04-25T10:48:56.511Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","varargs":[{"index":2,"value":"0xbdd614","module":"","asU32":12441108},{"index":3,"value":"0xbdd64c","module":"","asU32":12441164,"bstr":{"ptr":"0xbdd64c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":7,"value":"0xbdd62c","module":"","asU32":12441132,"bstr":{"ptr":"0xbdd62c","byteLength":0,"charLength":0,"text":""}},{"index":8,"value":"0xbd6f31b9","module":"","asU32":3178181049},{"index":9,"value":"0x12600b8","module":"","asU32":19267768},{"index":10,"value":"0x124e250","module":"","asU32":19194448},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0xbdd5f4","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xbdd5f8","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0xbdd5fc","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":3,"address":"0xbdd600","value":"0xbdd614","module":"","asU32":12441108},{"index":4,"address":"0xbdd604","value":"0xbdd64c","module":"","asU32":12441164,"bstr":{"ptr":"0xbdd64c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xbdd608","value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":6,"address":"0xbdd60c","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0xbdd610","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":8,"address":"0xbdd614","value":"0xbdd62c","module":"","asU32":12441132,"bstr":{"ptr":"0xbdd62c","byteLength":0,"charLength":0,"text":""}},{"index":9,"address":"0xbdd618","value":"0xbd6f31b9","module":"","asU32":3178181049},{"index":10,"address":"0xbdd61c","value":"0x12600b8","module":"","asU32":19267768},{"index":11,"address":"0xbdd620","value":"0x124e250","module":"","asU32":19194448},{"index":12,"address":"0xbdd624","value":"0x0","module":"","asU32":0},{"index":13,"address":"0xbdd628","value":"0x0","module":"","asU32":0},{"index":14,"address":"0xbdd62c","value":"0x12550c0","module":"","asU32":19222720},{"index":15,"address":"0xbdd630","value":"0xbdd608","module":"","asU32":12441096},{"index":16,"address":"0xbdd634","value":"0xbdd618","module":"","asU32":12441112},{"index":17,"address":"0xbdd638","value":"0xbdece0","module":"","asU32":12446944},{"index":18,"address":"0xbdd63c","value":"0xbdece0","module":"","asU32":12446944},{"index":19,"address":"0xbdd640","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":20,"address":"0xbdd644","value":"0xcb99bfbd","module":"","asU32":3415850941},{"index":21,"address":"0xbdd648","value":"0x0","module":"","asU32":0},{"index":22,"address":"0xbdd64c","value":"0xbdd6d4","module":"","asU32":12441300},{"index":23,"address":"0xbdd650","value":"0x76465077","module":"sechost.dll","asU32":1984319607}],"time":"2026-04-25T10:48:56.514Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","time":"2026-04-25T10:48:56.516Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","varargs":[{"index":2,"value":"0xbdd7d0","module":"","asU32":12441552},{"index":3,"value":"0xbdd82c","module":"","asU32":12441644,"bstr":{"ptr":"0xbdd82c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":7,"value":"0x1266eb8","module":"","asU32":19295928},{"index":8,"value":"0x126a110","module":"","asU32":19308816},{"index":9,"value":"0xbdd858","module":"","asU32":12441688},{"index":10,"value":"0xbdd868","module":"","asU32":12441704},{"index":11,"value":"0x14","module":"","asU32":20}],"stack":[{"index":0,"address":"0xbdd7b0","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xbdd7b4","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0xbdd7b8","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":3,"address":"0xbdd7bc","value":"0xbdd7d0","module":"","asU32":12441552},{"index":4,"address":"0xbdd7c0","value":"0xbdd82c","module":"","asU32":12441644,"bstr":{"ptr":"0xbdd82c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xbdd7c4","value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":6,"address":"0xbdd7c8","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0xbdd7cc","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":8,"address":"0xbdd7d0","value":"0x1266eb8","module":"","asU32":19295928},{"index":9,"address":"0xbdd7d4","value":"0x126a110","module":"","asU32":19308816},{"index":10,"address":"0xbdd7d8","value":"0xbdd858","module":"","asU32":12441688},{"index":11,"address":"0xbdd7dc","value":"0xbdd868","module":"","asU32":12441704},{"index":12,"address":"0xbdd7e0","value":"0x14","module":"","asU32":20},{"index":13,"address":"0xbdd7e4","value":"0xbdd940","module":"","asU32":12441920,"bstr":{"ptr":"0xbdd940","byteLength":20,"charLength":10,"text":""}},{"index":14,"address":"0xbdd7e8","value":"0xbdd93c","module":"","asU32":12441916,"bstr":{"ptr":"0xbdd93c","byteLength":0,"charLength":0,"text":""}},{"index":15,"address":"0xbdd7ec","value":"0xbdd870","module":"","asU32":12441712},{"index":16,"address":"0xbdd7f0","value":"0x1227b70","module":"","asU32":19037040},{"index":17,"address":"0xbdd7f4","value":"0x1274460","module":"","asU32":19350624},{"index":18,"address":"0xbdd7f8","value":"0xbdd81c","module":"","asU32":12441628},{"index":19,"address":"0xbdd7fc","value":"0xbdd814","module":"","asU32":12441620},{"index":20,"address":"0xbdd800","value":"0x1275998","module":"","asU32":19356056},{"index":21,"address":"0xbdd804","value":"0x0","module":"","asU32":0},{"index":22,"address":"0xbdd808","value":"0xbdd93c","module":"","asU32":12441916,"bstr":{"ptr":"0xbdd93c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xbdd80c","value":"0x12563f8","module":"","asU32":19227640}],"time":"2026-04-25T10:48:56.520Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","time":"2026-04-25T10:48:56.523Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8d2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 00 00 08 00 47 03 08 41 00 00 00 00 00 00 0b 00 04 00 cc 1a 13 00 08 00 de 1a 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00","varargs":[{"index":2,"value":"0xbddafc","module":"","asU32":12442364},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0xbddaf4","module":"","asU32":12442356},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbddafc","module":"","asU32":12442364},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xbddbf8","module":"","asU32":12442616},{"index":11,"value":"0x755a0067","module":"combase.dll","asU32":1968832615}],"stack":[{"index":0,"address":"0xbddac8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbddacc","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbddad0","value":"0x7553c8d2","module":"combase.dll","asU32":1968425170},{"index":3,"address":"0xbddad4","value":"0xbddafc","module":"","asU32":12442364},{"index":4,"address":"0xbddad8","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xbddadc","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbddae0","value":"0x10","module":"","asU32":16},{"index":7,"address":"0xbddae4","value":"0xbddaf4","module":"","asU32":12442356},{"index":8,"address":"0xbddae8","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbddaec","value":"0xbddafc","module":"","asU32":12442364},{"index":10,"address":"0xbddaf0","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xbddaf4","value":"0xbddbf8","module":"","asU32":12442616},{"index":12,"address":"0xbddaf8","value":"0x755a0067","module":"combase.dll","asU32":1968832615},{"index":13,"address":"0xbddafc","value":"0x126ed6c","module":"","asU32":19328364},{"index":14,"address":"0xbddb00","value":"0xbde084","module":"","asU32":12443780,"bstr":{"ptr":"0xbde084","byteLength":2,"charLength":1,"text":"\u722c"}},{"index":15,"address":"0xbddb04","value":"0xbddb14","module":"","asU32":12442388},{"index":16,"address":"0xbddb08","value":"0xbde084","module":"","asU32":12443780,"bstr":{"ptr":"0xbde084","byteLength":2,"charLength":1,"text":"\u722c"}},{"index":17,"address":"0xbddb0c","value":"0x755a2c10","module":"combase.dll","asU32":1968843792},{"index":18,"address":"0xbddb10","value":"0xbde7b4","module":"","asU32":12445620},{"index":19,"address":"0xbddb14","value":"0x0","module":"","asU32":0},{"index":20,"address":"0xbddb18","value":"0xbde5c0","module":"","asU32":12445120,"bstr":{"ptr":"0xbde5c0","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0xbddb1c","value":"0xbde08c","module":"","asU32":12443788},{"index":22,"address":"0xbddb20","value":"0x75751750","module":"combase.dll","asU32":1970607952,"bstr":{"ptr":"0x75751750","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xbddb24","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:56.526Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8d2","retval":"0x0","time":"2026-04-25T10:48:56.531Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xbde980","module":"","asU32":12446080},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xbde978","module":"","asU32":12446072},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbde980","module":"","asU32":12446080},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xbde9d4","module":"","asU32":12446164},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xbde94c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbde950","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbde954","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xbde958","value":"0xbde980","module":"","asU32":12446080},{"index":4,"address":"0xbde95c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xbde960","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbde964","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xbde968","value":"0xbde978","module":"","asU32":12446072},{"index":8,"address":"0xbde96c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbde970","value":"0xbde980","module":"","asU32":12446080},{"index":10,"address":"0xbde974","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xbde978","value":"0xbde9d4","module":"","asU32":12446164},{"index":12,"address":"0xbde97c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xbde980","value":"0x126edb4","module":"","asU32":19328436},{"index":14,"address":"0xbde984","value":"0xbde9bc","module":"","asU32":12446140},{"index":15,"address":"0xbde988","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xbde98c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xbde990","value":"0xbdea58","module":"","asU32":12446296,"bstr":{"ptr":"0xbdea58","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xbde994","value":"0xbdea34","module":"","asU32":12446260,"bstr":{"ptr":"0xbdea34","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xbde998","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xbde99c","value":"0x127f448","module":"","asU32":19395656},{"index":21,"address":"0xbde9a0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xbde9a4","value":"0x126edb4","module":"","asU32":19328436},{"index":23,"address":"0xbde9a8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:56.535Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:56.537Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x7551a860","procFormat":"0x755394e2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 44 00 08 00 45 03 08 43 01 00 00 00 00 00 0a 01 04 00 0c 00 13 00 08 00 18 00 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","varargs":[{"index":2,"value":"0xbdeafc","module":"","asU32":12446460},{"index":3,"value":"0xbdeb18","module":"","asU32":12446488,"bstr":{"ptr":"0xbdeb18","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":5,"value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":6,"value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x126e7cc","module":"","asU32":19326924},{"index":8,"value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":9,"value":"0xbdeb14","module":"","asU32":12446484},{"index":10,"value":"0x126e7cc","module":"","asU32":19326924},{"index":11,"value":"0x2","module":"","asU32":2}],"stack":[{"index":0,"address":"0xbdeadc","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xbdeae0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbdeae4","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0xbdeae8","value":"0xbdeafc","module":"","asU32":12446460},{"index":4,"address":"0xbdeaec","value":"0xbdeb18","module":"","asU32":12446488,"bstr":{"ptr":"0xbdeb18","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xbdeaf0","value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":6,"address":"0xbdeaf4","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":7,"address":"0xbdeaf8","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0xbdeafc","value":"0x126e7cc","module":"","asU32":19326924},{"index":9,"address":"0xbdeb00","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":10,"address":"0xbdeb04","value":"0xbdeb14","module":"","asU32":12446484},{"index":11,"address":"0xbdeb08","value":"0x126e7cc","module":"","asU32":19326924},{"index":12,"address":"0xbdeb0c","value":"0x2","module":"","asU32":2},{"index":13,"address":"0xbdeb10","value":"0x75521af0","module":"combase.dll","asU32":1968315120},{"index":14,"address":"0xbdeb14","value":"0x0","module":"","asU32":0},{"index":15,"address":"0xbdeb18","value":"0xbdece0","module":"","asU32":12446944,"bstr":{"ptr":"0xbdece0","byteLength":16,"charLength":8,"text":"\ued18½\u13da\u748a\ue7cc\u0126"}},{"index":16,"address":"0xbdeb1c","value":"0x748a130c","module":"clr.dll","asU32":1955205900},{"index":17,"address":"0xbdeb20","value":"0x126e7cc","module":"","asU32":19326924},{"index":18,"address":"0xbdeb24","value":"0x0","module":"","asU32":0},{"index":19,"address":"0xbdeb28","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":20,"address":"0xbdeb2c","value":"0xbdeca8","module":"","asU32":12446888,"bstr":{"ptr":"0xbdeca8","byteLength":2,"charLength":1,"text":""}},{"index":21,"address":"0xbdeb30","value":"0x5009c83a","module":"","asU32":1342818362},{"index":22,"address":"0xbdeb34","value":"0x126e7cc","module":"","asU32":19326924},{"index":23,"address":"0xbdeb38","value":"0x1","module":"","asU32":1}],"time":"2026-04-25T10:48:56.540Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755394e2","retval":"0x0","time":"2026-04-25T10:48:56.542Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0xbdea9c","module":"","asU32":12446364},{"index":3,"value":"0x1255d88","module":"","asU32":19225992},{"index":4,"value":"0x1","module":"","asU32":1},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0xbdea94","module":"","asU32":12446356},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbdea9c","module":"","asU32":12446364},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0xbdebe0","module":"","asU32":12446688},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0xbdea68","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbdea6c","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbdea70","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0xbdea74","value":"0xbdea9c","module":"","asU32":12446364},{"index":4,"address":"0xbdea78","value":"0x1255d88","module":"","asU32":19225992},{"index":5,"address":"0xbdea7c","value":"0x1","module":"","asU32":1},{"index":6,"address":"0xbdea80","value":"0x10","module":"","asU32":16},{"index":7,"address":"0xbdea84","value":"0xbdea94","module":"","asU32":12446356},{"index":8,"address":"0xbdea88","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbdea8c","value":"0xbdea9c","module":"","asU32":12446364},{"index":10,"address":"0xbdea90","value":"0x5","module":"","asU32":5},{"index":11,"address":"0xbdea94","value":"0xbdebe0","module":"","asU32":12446688},{"index":12,"address":"0xbdea98","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0xbdea9c","value":"0x126edb4","module":"","asU32":19328436},{"index":14,"address":"0xbdeaa0","value":"0x1","module":"","asU32":1},{"index":15,"address":"0xbdeaa4","value":"0x127ff90","module":"","asU32":19398544},{"index":16,"address":"0xbdeaa8","value":"0x2","module":"","asU32":2},{"index":17,"address":"0xbdeaac","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0xbdeab0","value":"0x127f448","module":"","asU32":19395656},{"index":19,"address":"0xbdeab4","value":"0x76fc5700","module":"RPCRT4.dll","asU32":1996248832},{"index":20,"address":"0xbdeab8","value":"0x0","module":"","asU32":0},{"index":21,"address":"0xbdeabc","value":"0x126edb4","module":"","asU32":19328436},{"index":22,"address":"0xbdeac0","value":"0x0","module":"","asU32":0},{"index":23,"address":"0xbdeac4","value":"0x126edb4","module":"","asU32":19328436}],"time":"2026-04-25T10:48:56.546Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:48:56.547Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xbde5b0","module":"","asU32":12445104},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xbde5a8","module":"","asU32":12445096},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbde5b0","module":"","asU32":12445104},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xbde604","module":"","asU32":12445188},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xbde57c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbde580","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbde584","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xbde588","value":"0xbde5b0","module":"","asU32":12445104},{"index":4,"address":"0xbde58c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xbde590","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbde594","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xbde598","value":"0xbde5a8","module":"","asU32":12445096},{"index":8,"address":"0xbde59c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbde5a0","value":"0xbde5b0","module":"","asU32":12445104},{"index":10,"address":"0xbde5a4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xbde5a8","value":"0xbde604","module":"","asU32":12445188},{"index":12,"address":"0xbde5ac","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xbde5b0","value":"0x126edb4","module":"","asU32":19328436},{"index":14,"address":"0xbde5b4","value":"0xbde5ec","module":"","asU32":12445164},{"index":15,"address":"0xbde5b8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xbde5bc","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xbde5c0","value":"0xbde684","module":"","asU32":12445316,"bstr":{"ptr":"0xbde684","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xbde5c4","value":"0xbde664","module":"","asU32":12445284,"bstr":{"ptr":"0xbde664","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xbde5c8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xbde5cc","value":"0x1280570","module":"","asU32":19400048},{"index":21,"address":"0xbde5d0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xbde5d4","value":"0x126edb4","module":"","asU32":19328436},{"index":23,"address":"0xbde5d8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:56.552Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:56.553Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xbde4e0","module":"","asU32":12444896},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xbde4d8","module":"","asU32":12444888},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbde4e0","module":"","asU32":12444896},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xbde534","module":"","asU32":12444980},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xbde4ac","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbde4b0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbde4b4","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xbde4b8","value":"0xbde4e0","module":"","asU32":12444896},{"index":4,"address":"0xbde4bc","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xbde4c0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbde4c4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xbde4c8","value":"0xbde4d8","module":"","asU32":12444888},{"index":8,"address":"0xbde4cc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbde4d0","value":"0xbde4e0","module":"","asU32":12444896},{"index":10,"address":"0xbde4d4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xbde4d8","value":"0xbde534","module":"","asU32":12444980},{"index":12,"address":"0xbde4dc","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xbde4e0","value":"0x126edb4","module":"","asU32":19328436},{"index":14,"address":"0xbde4e4","value":"0xbde51c","module":"","asU32":12444956},{"index":15,"address":"0xbde4e8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xbde4ec","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xbde4f0","value":"0xbde5bc","module":"","asU32":12445116,"bstr":{"ptr":"0xbde5bc","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xbde4f4","value":"0xbde594","module":"","asU32":12445076,"bstr":{"ptr":"0xbde594","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xbde4f8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xbde4fc","value":"0x1280570","module":"","asU32":19400048},{"index":21,"address":"0xbde500","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xbde504","value":"0x126edb4","module":"","asU32":19328436},{"index":23,"address":"0xbde508","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:56.557Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:56.558Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xbde1f0","module":"","asU32":12444144},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xbde1e8","module":"","asU32":12444136},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbde1f0","module":"","asU32":12444144},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xbde244","module":"","asU32":12444228},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xbde1bc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbde1c0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbde1c4","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xbde1c8","value":"0xbde1f0","module":"","asU32":12444144},{"index":4,"address":"0xbde1cc","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xbde1d0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbde1d4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xbde1d8","value":"0xbde1e8","module":"","asU32":12444136},{"index":8,"address":"0xbde1dc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbde1e0","value":"0xbde1f0","module":"","asU32":12444144},{"index":10,"address":"0xbde1e4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xbde1e8","value":"0xbde244","module":"","asU32":12444228},{"index":12,"address":"0xbde1ec","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xbde1f0","value":"0x126edb4","module":"","asU32":19328436},{"index":14,"address":"0xbde1f4","value":"0xbde22c","module":"","asU32":12444204},{"index":15,"address":"0xbde1f8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xbde1fc","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xbde200","value":"0xbde2d0","module":"","asU32":12444368,"bstr":{"ptr":"0xbde2d0","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xbde204","value":"0xbde2a4","module":"","asU32":12444324,"bstr":{"ptr":"0xbde2a4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xbde208","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xbde20c","value":"0x1280570","module":"","asU32":19400048},{"index":21,"address":"0xbde210","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xbde214","value":"0x126edb4","module":"","asU32":19328436},{"index":23,"address":"0xbde218","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:56.565Z"} +register.begin +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","time":"2026-04-25T10:48:56.567Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0xbdeba0","module":"","asU32":12446624},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0xbdeb98","module":"","asU32":12446616},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbdeba0","module":"","asU32":12446624},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0xbdebf4","module":"","asU32":12446708},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0xbdeb6c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbdeb70","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbdeb74","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0xbdeb78","value":"0xbdeba0","module":"","asU32":12446624},{"index":4,"address":"0xbdeb7c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0xbdeb80","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbdeb84","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0xbdeb88","value":"0xbdeb98","module":"","asU32":12446616},{"index":8,"address":"0xbdeb8c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbdeb90","value":"0xbdeba0","module":"","asU32":12446624},{"index":10,"address":"0xbdeb94","value":"0x3","module":"","asU32":3},{"index":11,"address":"0xbdeb98","value":"0xbdebf4","module":"","asU32":12446708},{"index":12,"address":"0xbdeb9c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0xbdeba0","value":"0x126edb4","module":"","asU32":19328436},{"index":14,"address":"0xbdeba4","value":"0xbdebdc","module":"","asU32":12446684},{"index":15,"address":"0xbdeba8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0xbdebac","value":"0x1","module":"","asU32":1},{"index":17,"address":"0xbdebb0","value":"0xbdec78","module":"","asU32":12446840,"bstr":{"ptr":"0xbdec78","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xbdebb4","value":"0xbdec54","module":"","asU32":12446804,"bstr":{"ptr":"0xbdec54","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0xbdebb8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0xbdebbc","value":"0x1280570","module":"","asU32":19400048},{"index":21,"address":"0xbdebc0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0xbdebc4","value":"0x126edb4","module":"","asU32":19328436},{"index":23,"address":"0xbdebc8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:48:56.571Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","time":"2026-04-25T10:48:56.572Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","varargs":[{"index":2,"value":"0xbdeed4","module":"","asU32":12447444},{"index":3,"value":"0x3913c08","module":"","asU32":59849736,"bstr":{"ptr":"0x3913c08","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0xbdeecc","module":"","asU32":12447436,"bstr":{"ptr":"0xbdeecc","byteLength":10,"charLength":5,"text":"\uef7c½\u1171\u037e\ue784"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbdeed4","module":"","asU32":12447444},{"index":9,"value":"0xa","module":"","asU32":10},{"index":10,"value":"0xbdef7c","module":"","asU32":12447612},{"index":11,"value":"0x37e1171","module":"","asU32":58593649}],"stack":[{"index":0,"address":"0xbdeea0","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbdeea4","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0xbdeea8","value":"0x6417775a","module":"NmxSvcps.dll","asU32":1679259482},{"index":3,"address":"0xbdeeac","value":"0xbdeed4","module":"","asU32":12447444},{"index":4,"address":"0xbdeeb0","value":"0x3913c08","module":"","asU32":59849736,"bstr":{"ptr":"0x3913c08","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0xbdeeb4","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbdeeb8","value":"0x18","module":"","asU32":24},{"index":7,"address":"0xbdeebc","value":"0xbdeecc","module":"","asU32":12447436,"bstr":{"ptr":"0xbdeecc","byteLength":10,"charLength":5,"text":"\uef7c½\u1171\u037e\ue784"}},{"index":8,"address":"0xbdeec0","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbdeec4","value":"0xbdeed4","module":"","asU32":12447444},{"index":10,"address":"0xbdeec8","value":"0xa","module":"","asU32":10},{"index":11,"address":"0xbdeecc","value":"0xbdef7c","module":"","asU32":12447612},{"index":12,"address":"0xbdeed0","value":"0x37e1171","module":"","asU32":58593649},{"index":13,"address":"0xbdeed4","value":"0x126e784","module":"","asU32":19326852},{"index":14,"address":"0xbdeed8","value":"0x7104","module":"","asU32":28932},{"index":15,"address":"0xbdeedc","value":"0xbdeeec","module":"","asU32":12447468,"bstr":{"ptr":"0xbdeeec","byteLength":32,"charLength":16,"text":"NmxComProxyWire5"}},{"index":16,"address":"0xbdeee0","value":"0x6","module":"","asU32":6},{"index":17,"address":"0xbdeee4","value":"0x5f40030","module":"","asU32":99876912,"bstr":{"ptr":"0x5f40030","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xbdeee8","value":"0x20","module":"","asU32":32},{"index":19,"address":"0xbdeeec","value":"0x6d004e","module":"","asU32":7143502},{"index":20,"address":"0xbdeef0","value":"0x430078","module":"","asU32":4391032},{"index":21,"address":"0xbdeef4","value":"0x6d006f","module":"","asU32":7143535},{"index":22,"address":"0xbdeef8","value":"0x720050","module":"","asU32":7471184},{"index":23,"address":"0xbdeefc","value":"0x78006f","module":"","asU32":7864431}],"time":"2026-04-25T10:48:56.584Z"} +register.ok +{"event":"bstr.usermarshal.enter","callerModule":"RPCRT4.dll","flags":"0xbdea1c","buffer":"0x128c7b8","bstrSlot":"0xbdeedc","bstr":{"ptr":"0xbdeeec","byteLength":32,"charLength":16,"text":"NmxComProxyWire5"},"time":"2026-04-25T10:48:56.585Z"} +{"event":"bstr.usermarshal.leave","callerModule":"RPCRT4.dll","buffer":"0x128c7b8","retval":"0x128c7e4","marshaledLength":44,"marshaledHex":"10 00 00 00 20 00 00 00 10 00 00 00 4e 00 6d 00 78 00 43 00 6f 00 6d 00 50 00 72 00 6f 00 78 00 79 00 57 00 69 00 72 00 65 00 35 00","time":"2026-04-25T10:48:56.586Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x755362b8","procFormatPrefix":"00 68 00 00 00 00 07 00 24 00 32 00 00 00 58 00 24 00 47 08 08 47 01 00 01 00 00 00 08 00 04 00 72 01 48 01 08 00 0b 00 88 00 0c 00 34 04 0b 00 10 00 3e 04 88 00 14 00 54 04 13 00 18 00 5e 04","varargs":[{"index":2,"value":"0xbde408","module":"","asU32":12444680},{"index":3,"value":"0xbde434","module":"","asU32":12444724,"bstr":{"ptr":"0xbde434","byteLength":20,"charLength":10,"text":"\ue458½\u7a09\u755f\ue450½\ue484½\ue488½"}},{"index":4,"value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":7,"value":"0x1266eb8","module":"","asU32":19295928},{"index":8,"value":"0x126a110","module":"","asU32":19308816},{"index":9,"value":"0xbde450","module":"","asU32":12444752},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0xbde528","module":"","asU32":12444968}],"stack":[{"index":0,"address":"0xbde3e8","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0xbde3ec","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0xbde3f0","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":3,"address":"0xbde3f4","value":"0xbde408","module":"","asU32":12444680},{"index":4,"address":"0xbde3f8","value":"0xbde434","module":"","asU32":12444724,"bstr":{"ptr":"0xbde434","byteLength":20,"charLength":10,"text":"\ue458½\u7a09\u755f\ue450½\ue484½\ue488½"}},{"index":5,"address":"0xbde3fc","value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":6,"address":"0xbde400","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0xbde404","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":8,"address":"0xbde408","value":"0x1266eb8","module":"","asU32":19295928},{"index":9,"address":"0xbde40c","value":"0x126a110","module":"","asU32":19308816},{"index":10,"address":"0xbde410","value":"0xbde450","module":"","asU32":12444752},{"index":11,"address":"0xbde414","value":"0x0","module":"","asU32":0},{"index":12,"address":"0xbde418","value":"0xbde528","module":"","asU32":12444968},{"index":13,"address":"0xbde41c","value":"0x14","module":"","asU32":20},{"index":14,"address":"0xbde420","value":"0xbde488","module":"","asU32":12444808,"bstr":{"ptr":"0xbde488","byteLength":20,"charLength":10,"text":""}},{"index":15,"address":"0xbde424","value":"0xbde484","module":"","asU32":12444804,"bstr":{"ptr":"0xbde484","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0xbde428","value":"0x0","module":"","asU32":0},{"index":17,"address":"0xbde42c","value":"0x1256158","module":"","asU32":19226968},{"index":18,"address":"0xbde430","value":"0x14","module":"","asU32":20},{"index":19,"address":"0xbde434","value":"0xbde458","module":"","asU32":12444760},{"index":20,"address":"0xbde438","value":"0x755f7a09","module":"combase.dll","asU32":1969191433},{"index":21,"address":"0xbde43c","value":"0xbde450","module":"","asU32":12444752},{"index":22,"address":"0xbde440","value":"0xbde484","module":"","asU32":12444804,"bstr":{"ptr":"0xbde484","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xbde444","value":"0xbde488","module":"","asU32":12444808,"bstr":{"ptr":"0xbde488","byteLength":20,"charLength":10,"text":""}}],"time":"2026-04-25T10:48:56.588Z"}partner_version=6 + +unregister.begin +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755362b8","retval":"0x0","time":"2026-04-25T10:48:56.590Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x0","time":"2026-04-25T10:48:56.592Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177790","procFormatPrefix":"33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 50 21 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 03 00 18 00","varargs":[{"index":2,"value":"0xbdef10","module":"","asU32":12447504},{"index":3,"value":"0x1","module":"","asU32":1},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0xbdef08","module":"","asU32":12447496},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbdef10","module":"","asU32":12447504},{"index":9,"value":"0xb","module":"","asU32":11},{"index":10,"value":"0xbdef7c","module":"","asU32":12447612},{"index":11,"value":"0x37e12d5","module":"","asU32":58594005}],"stack":[{"index":0,"address":"0xbdeedc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbdeee0","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0xbdeee4","value":"0x64177790","module":"NmxSvcps.dll","asU32":1679259536},{"index":3,"address":"0xbdeee8","value":"0xbdef10","module":"","asU32":12447504},{"index":4,"address":"0xbdeeec","value":"0x1","module":"","asU32":1},{"index":5,"address":"0xbdeef0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbdeef4","value":"0x18","module":"","asU32":24},{"index":7,"address":"0xbdeef8","value":"0xbdef08","module":"","asU32":12447496},{"index":8,"address":"0xbdeefc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbdef00","value":"0xbdef10","module":"","asU32":12447504},{"index":10,"address":"0xbdef04","value":"0xb","module":"","asU32":11},{"index":11,"address":"0xbdef08","value":"0xbdef7c","module":"","asU32":12447612},{"index":12,"address":"0xbdef0c","value":"0x37e12d5","module":"","asU32":58594005},{"index":13,"address":"0xbdef10","value":"0x126e784","module":"","asU32":19326852},{"index":14,"address":"0xbdef14","value":"0x1","module":"","asU32":1},{"index":15,"address":"0xbdef18","value":"0x1","module":"","asU32":1},{"index":16,"address":"0xbdef1c","value":"0x7ffd","module":"","asU32":32765},{"index":17,"address":"0xbdef20","value":"0xbdf034","module":"","asU32":12447796,"bstr":{"ptr":"0xbdf034","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0xbdef24","value":"0x591c19fa","module":"","asU32":1495013882},{"index":19,"address":"0xbdef28","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":20,"address":"0xbdef2c","value":"0xbdf1d8","module":"","asU32":12448216},{"index":21,"address":"0xbdef30","value":"0x14","module":"","asU32":20},{"index":22,"address":"0xbdef34","value":"0xbdef10","module":"","asU32":12447504},{"index":23,"address":"0xbdef38","value":"0x37e12d5","module":"","asU32":58594005}],"time":"2026-04-25T10:48:56.599Z"}unregister.ok + +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177790","retval":"0x0","time":"2026-04-25T10:48:56.601Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","varargs":[{"index":2,"value":"0xbdef2c","module":"","asU32":12447532},{"index":3,"value":"0x7104","module":"","asU32":28932},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0xc","module":"","asU32":12},{"index":6,"value":"0xbdef24","module":"","asU32":12447524,"bstr":{"ptr":"0xbdef24","byteLength":4,"charLength":2,"text":"\uef88½"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbdef2c","module":"","asU32":12447532},{"index":9,"value":"0x4","module":"","asU32":4},{"index":10,"value":"0xbdef88","module":"","asU32":12447624},{"index":11,"value":"0x37e13ed","module":"","asU32":58594285}],"stack":[{"index":0,"address":"0xbdeef8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbdeefc","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0xbdef00","value":"0x6417762e","module":"NmxSvcps.dll","asU32":1679259182},{"index":3,"address":"0xbdef04","value":"0xbdef2c","module":"","asU32":12447532},{"index":4,"address":"0xbdef08","value":"0x7104","module":"","asU32":28932},{"index":5,"address":"0xbdef0c","value":"0x0","module":"","asU32":0},{"index":6,"address":"0xbdef10","value":"0xc","module":"","asU32":12},{"index":7,"address":"0xbdef14","value":"0xbdef24","module":"","asU32":12447524,"bstr":{"ptr":"0xbdef24","byteLength":4,"charLength":2,"text":"\uef88½"}},{"index":8,"address":"0xbdef18","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbdef1c","value":"0xbdef2c","module":"","asU32":12447532},{"index":10,"address":"0xbdef20","value":"0x4","module":"","asU32":4},{"index":11,"address":"0xbdef24","value":"0xbdef88","module":"","asU32":12447624},{"index":12,"address":"0xbdef28","value":"0x37e13ed","module":"","asU32":58594285},{"index":13,"address":"0xbdef2c","value":"0x126e784","module":"","asU32":19326852},{"index":14,"address":"0xbdef30","value":"0x7104","module":"","asU32":28932},{"index":15,"address":"0xbdef34","value":"0x591c19fa","module":"","asU32":1495013882},{"index":16,"address":"0xbdef38","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":17,"address":"0xbdef3c","value":"0xbdf1d8","module":"","asU32":12448216},{"index":18,"address":"0xbdef40","value":"0x8","module":"","asU32":8},{"index":19,"address":"0xbdef44","value":"0xbdef2c","module":"","asU32":12447532},{"index":20,"address":"0xbdef48","value":"0x37e13ed","module":"","asU32":58594285},{"index":21,"address":"0xbdef4c","value":"0xbdef88","module":"","asU32":12447624},{"index":22,"address":"0xbdef50","value":"0x3744f0c","module":"","asU32":57954060,"bstr":{"ptr":"0x3744f0c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0xbdef54","value":"0x3914d00","module":"","asU32":59854080}],"time":"2026-04-25T10:48:56.611Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x0","time":"2026-04-25T10:48:56.615Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0xbdebb4","module":"","asU32":12446644},{"index":3,"value":"0x1255d88","module":"","asU32":19225992},{"index":4,"value":"0x2","module":"","asU32":2},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0xbdebac","module":"","asU32":12446636},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0xbdebb4","module":"","asU32":12446644},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0xbdecf8","module":"","asU32":12446968},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0xbdeb80","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0xbdeb84","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0xbdeb88","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0xbdeb8c","value":"0xbdebb4","module":"","asU32":12446644},{"index":4,"address":"0xbdeb90","value":"0x1255d88","module":"","asU32":19225992},{"index":5,"address":"0xbdeb94","value":"0x2","module":"","asU32":2},{"index":6,"address":"0xbdeb98","value":"0x10","module":"","asU32":16},{"index":7,"address":"0xbdeb9c","value":"0xbdebac","module":"","asU32":12446636},{"index":8,"address":"0xbdeba0","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0xbdeba4","value":"0xbdebb4","module":"","asU32":12446644},{"index":10,"address":"0xbdeba8","value":"0x5","module":"","asU32":5},{"index":11,"address":"0xbdebac","value":"0xbdecf8","module":"","asU32":12446968},{"index":12,"address":"0xbdebb0","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0xbdebb4","value":"0x126edb4","module":"","asU32":19328436},{"index":14,"address":"0xbdebb8","value":"0x2","module":"","asU32":2},{"index":15,"address":"0xbdebbc","value":"0x12629d0","module":"","asU32":19278288},{"index":16,"address":"0xbdebc0","value":"0x2","module":"","asU32":2},{"index":17,"address":"0xbdebc4","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0xbdebc8","value":"0x1280570","module":"","asU32":19400048},{"index":19,"address":"0xbdebcc","value":"0xbdec18","module":"","asU32":12446744},{"index":20,"address":"0xbdebd0","value":"0x0","module":"","asU32":0},{"index":21,"address":"0xbdebd4","value":"0x126edb4","module":"","asU32":19328436},{"index":22,"address":"0xbdebd8","value":"0x0","module":"","asU32":0},{"index":23,"address":"0xbdebdc","value":"0x126edb4","module":"","asU32":19328436}],"time":"2026-04-25T10:48:56.620Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","time":"2026-04-25T10:48:56.621Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/053-frida-direct-nmx-registerengine2-null-stub/frida-exit.txt b/captures/053-frida-direct-nmx-registerengine2-null-stub/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/053-frida-direct-nmx-registerengine2-null-stub/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/053-frida-direct-nmx-registerengine2-null-stub/frida.stderr.txt b/captures/053-frida-direct-nmx-registerengine2-null-stub/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/053-frida-direct-nmx-registerengine2-null-stub/frida.stdout.jsonl b/captures/053-frida-direct-nmx-registerengine2-null-stub/frida.stdout.jsonl new file mode 100644 index 0000000..4ba0aa1 --- /dev/null +++ b/captures/053-frida-direct-nmx-registerengine2-null-stub/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7107 --engine-name=NmxNullCallbackX86 --version=6 --hold-seconds=0 --null-callback`... +{"event":"script.loaded","process":49952,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:54:12.024Z"} +{"event":"hook.missing","module":"oleaut32.dll","name":"BSTR_UserMarshal","time":"2026-04-25T10:54:12.024Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrInterfacePointerMarshall","address":"0x7704d450","time":"2026-04-25T10:54:12.025Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:54:12.025Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:54:12.026Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:54:12.026Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7107 --engine-name=NmxNullCallbackX86 --version=6 --hold-seconds=0 --null-callback`. Resuming main thread! +[Local::NmxComHarness.exe ]-> {"event":"hook.installed","module":"oleaut32.dll","name":"BSTR_UserMarshal","address":"0x757a42e0","time":"2026-04-25T10:54:12.128Z"} +process=x64:False +engine_id=28935 +engine_name=NmxNullCallbackX86 +version=6 +null_callback=True +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x79d60c","module":"","asU32":7984652},{"index":3,"value":"0x79dbf0","module":"","asU32":7986160},{"index":4,"value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0xc33f30","module":"","asU32":12795696},{"index":8,"value":"0xc2e038","module":"","asU32":12771384},{"index":9,"value":"0x79d7d8","module":"","asU32":7985112,"bstr":{"ptr":"0x79d7d8","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0x79d5ec","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x79d5f0","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x79d5f4","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x79d5f8","value":"0x79d60c","module":"","asU32":7984652},{"index":4,"address":"0x79d5fc","value":"0x79dbf0","module":"","asU32":7986160},{"index":5,"address":"0x79d600","value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":6,"address":"0x79d604","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x79d608","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x79d60c","value":"0xc33f30","module":"","asU32":12795696},{"index":9,"address":"0x79d610","value":"0xc2e038","module":"","asU32":12771384},{"index":10,"address":"0x79d614","value":"0x79d7d8","module":"","asU32":7985112,"bstr":{"ptr":"0x79d7d8","byteLength":256,"charLength":128,"text":"C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\NmxComHarness\\bin\\Release\\net481\\NmxComHarness.exe"}},{"index":11,"address":"0x79d618","value":"0x0","module":"","asU32":0},{"index":12,"address":"0x79d61c","value":"0x0","module":"","asU32":0},{"index":13,"address":"0x79d620","value":"0x75750160","module":"combase.dll","asU32":1970602336,"bstr":{"ptr":"0x75750160","byteLength":0,"charLength":0,"text":""}},{"index":14,"address":"0x79d624","value":"0x7574fed8","module":"combase.dll","asU32":1970601688},{"index":15,"address":"0x79d628","value":"0x79d698","module":"","asU32":7984792,"bstr":{"ptr":"0x79d698","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0x79d62c","value":"0x75750620","module":"combase.dll","asU32":1970603552,"bstr":{"ptr":"0x75750620","byteLength":0,"charLength":0,"text":""}},{"index":17,"address":"0x79d630","value":"0xa","module":"","asU32":10},{"index":18,"address":"0x79d634","value":"0x79d740","module":"","asU32":7984960,"bstr":{"ptr":"0x79d740","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x79d638","value":"0x79d6bc","module":"","asU32":7984828,"bstr":{"ptr":"0x79d6bc","byteLength":0,"charLength":0,"text":""}},{"index":20,"address":"0x79d63c","value":"0x79d6b8","module":"","asU32":7984824,"bstr":{"ptr":"0x79d6b8","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0x79d640","value":"0x75751248","module":"combase.dll","asU32":1970606664,"bstr":{"ptr":"0x75751248","byteLength":0,"charLength":0,"text":""}},{"index":22,"address":"0x79d644","value":"0x75751244","module":"combase.dll","asU32":1970606660,"bstr":{"ptr":"0x75751244","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x79d648","value":"0x757501b0","module":"combase.dll","asU32":1970602416,"bstr":{"ptr":"0x757501b0","byteLength":0,"charLength":0,"text":""}}],"time":"2026-04-25T10:54:12.168Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.172Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","varargs":[{"index":2,"value":"0x79da40","module":"","asU32":7985728},{"index":3,"value":"0x79da84","module":"","asU32":7985796,"bstr":{"ptr":"0x79da84","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x0","module":"","asU32":0},{"index":8,"value":"0x79dae8","module":"","asU32":7985896},{"index":9,"value":"0x800","module":"","asU32":2048},{"index":10,"value":"0x79da64","module":"","asU32":7985764,"bstr":{"ptr":"0x79da64","byteLength":0,"charLength":0,"text":""}},{"index":11,"value":"0xf9625619","module":"","asU32":4183971353}],"stack":[{"index":0,"address":"0x79da20","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x79da24","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x79da28","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x79da2c","value":"0x79da40","module":"","asU32":7985728},{"index":4,"address":"0x79da30","value":"0x79da84","module":"","asU32":7985796,"bstr":{"ptr":"0x79da84","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x79da34","value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":6,"address":"0x79da38","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x79da3c","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x79da40","value":"0x0","module":"","asU32":0},{"index":9,"address":"0x79da44","value":"0x79dae8","module":"","asU32":7985896},{"index":10,"address":"0x79da48","value":"0x800","module":"","asU32":2048},{"index":11,"address":"0x79da4c","value":"0x79da64","module":"","asU32":7985764,"bstr":{"ptr":"0x79da64","byteLength":0,"charLength":0,"text":""}},{"index":12,"address":"0x79da50","value":"0xf9625619","module":"","asU32":4183971353},{"index":13,"address":"0x79da54","value":"0x79dc48","module":"","asU32":7986248},{"index":14,"address":"0x79da58","value":"0x0","module":"","asU32":0},{"index":15,"address":"0x79da5c","value":"0x79dc0c","module":"","asU32":7986188},{"index":16,"address":"0x79da60","value":"0x0","module":"","asU32":0},{"index":17,"address":"0x79da64","value":"0x0","module":"","asU32":0},{"index":18,"address":"0x79da68","value":"0x0","module":"","asU32":0},{"index":19,"address":"0x79da6c","value":"0x79da50","module":"","asU32":7985744},{"index":20,"address":"0x79da70","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x79da74","value":"0x79f124","module":"","asU32":7991588},{"index":22,"address":"0x79da78","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":23,"address":"0x79da7c","value":"0x8f50d4ed","module":"","asU32":2404439277}],"time":"2026-04-25T10:54:12.178Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.180Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","varargs":[{"index":2,"value":"0x79da18","module":"","asU32":7985688},{"index":3,"value":"0x79da7c","module":"","asU32":7985788,"bstr":{"ptr":"0x79da7c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":7,"value":"0xc219b0","module":"","asU32":12720560},{"index":8,"value":"0x79da44","module":"","asU32":7985732},{"index":9,"value":"0x79daa4","module":"","asU32":7985828},{"index":10,"value":"0x79da4c","module":"","asU32":7985740},{"index":11,"value":"0x79dad0","module":"","asU32":7985872}],"stack":[{"index":0,"address":"0x79d9f8","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x79d9fc","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x79da00","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":3,"address":"0x79da04","value":"0x79da18","module":"","asU32":7985688},{"index":4,"address":"0x79da08","value":"0x79da7c","module":"","asU32":7985788,"bstr":{"ptr":"0x79da7c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x79da0c","value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":6,"address":"0x79da10","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x79da14","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":8,"address":"0x79da18","value":"0xc219b0","module":"","asU32":12720560},{"index":9,"address":"0x79da1c","value":"0x79da44","module":"","asU32":7985732},{"index":10,"address":"0x79da20","value":"0x79daa4","module":"","asU32":7985828},{"index":11,"address":"0x79da24","value":"0x79da4c","module":"","asU32":7985740},{"index":12,"address":"0x79da28","value":"0x79dad0","module":"","asU32":7985872},{"index":13,"address":"0x79da2c","value":"0x0","module":"","asU32":0},{"index":14,"address":"0x79da30","value":"0x2","module":"","asU32":2},{"index":15,"address":"0x79da34","value":"0xf96256e1","module":"","asU32":4183971553},{"index":16,"address":"0x79da38","value":"0x79dc48","module":"","asU32":7986248},{"index":17,"address":"0x79da3c","value":"0x0","module":"","asU32":0},{"index":18,"address":"0x79da40","value":"0x79dc0c","module":"","asU32":7986188},{"index":19,"address":"0x79da44","value":"0x1","module":"","asU32":1},{"index":20,"address":"0x79da48","value":"0x79dac8","module":"","asU32":7985864},{"index":21,"address":"0x79da4c","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x79da50","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x79da54","value":"0x79dc48","module":"","asU32":7986248}],"time":"2026-04-25T10:54:12.183Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.185Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","varargs":[{"index":2,"value":"0x79da54","module":"","asU32":7985748},{"index":3,"value":"0x79da8c","module":"","asU32":7985804,"bstr":{"ptr":"0x79da8c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":7,"value":"0x79da6c","module":"","asU32":7985772,"bstr":{"ptr":"0x79da6c","byteLength":0,"charLength":0,"text":""}},{"index":8,"value":"0xf9625611","module":"","asU32":4183971345},{"index":9,"value":"0xc24d30","module":"","asU32":12733744},{"index":10,"value":"0xc121d8","module":"","asU32":12657112},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0x79da34","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x79da38","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x79da3c","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":3,"address":"0x79da40","value":"0x79da54","module":"","asU32":7985748},{"index":4,"address":"0x79da44","value":"0x79da8c","module":"","asU32":7985804,"bstr":{"ptr":"0x79da8c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x79da48","value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":6,"address":"0x79da4c","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x79da50","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":8,"address":"0x79da54","value":"0x79da6c","module":"","asU32":7985772,"bstr":{"ptr":"0x79da6c","byteLength":0,"charLength":0,"text":""}},{"index":9,"address":"0x79da58","value":"0xf9625611","module":"","asU32":4183971345},{"index":10,"address":"0x79da5c","value":"0xc24d30","module":"","asU32":12733744},{"index":11,"address":"0x79da60","value":"0xc121d8","module":"","asU32":12657112},{"index":12,"address":"0x79da64","value":"0x0","module":"","asU32":0},{"index":13,"address":"0x79da68","value":"0x0","module":"","asU32":0},{"index":14,"address":"0x79da6c","value":"0xc219b0","module":"","asU32":12720560},{"index":15,"address":"0x79da70","value":"0x79da48","module":"","asU32":7985736},{"index":16,"address":"0x79da74","value":"0x79da58","module":"","asU32":7985752},{"index":17,"address":"0x79da78","value":"0x79f124","module":"","asU32":7991588},{"index":18,"address":"0x79da7c","value":"0x79f124","module":"","asU32":7991588},{"index":19,"address":"0x79da80","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":20,"address":"0x79da84","value":"0x8f50d4d5","module":"","asU32":2404439253},{"index":21,"address":"0x79da88","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x79da8c","value":"0x79db14","module":"","asU32":7985940},{"index":23,"address":"0x79da90","value":"0x76465077","module":"sechost.dll","asU32":1984319607}],"time":"2026-04-25T10:54:12.189Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.190Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x79dc10","module":"","asU32":7986192},{"index":3,"value":"0x79dc6c","module":"","asU32":7986284,"bstr":{"ptr":"0x79dc6c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":7,"value":"0xc33f30","module":"","asU32":12795696},{"index":8,"value":"0xc2df20","module":"","asU32":12771104},{"index":9,"value":"0x79dc98","module":"","asU32":7986328},{"index":10,"value":"0x79dca8","module":"","asU32":7986344},{"index":11,"value":"0x14","module":"","asU32":20}],"stack":[{"index":0,"address":"0x79dbf0","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x79dbf4","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x79dbf8","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":3,"address":"0x79dbfc","value":"0x79dc10","module":"","asU32":7986192},{"index":4,"address":"0x79dc00","value":"0x79dc6c","module":"","asU32":7986284,"bstr":{"ptr":"0x79dc6c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x79dc04","value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":6,"address":"0x79dc08","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x79dc0c","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":8,"address":"0x79dc10","value":"0xc33f30","module":"","asU32":12795696},{"index":9,"address":"0x79dc14","value":"0xc2df20","module":"","asU32":12771104},{"index":10,"address":"0x79dc18","value":"0x79dc98","module":"","asU32":7986328},{"index":11,"address":"0x79dc1c","value":"0x79dca8","module":"","asU32":7986344},{"index":12,"address":"0x79dc20","value":"0x14","module":"","asU32":20},{"index":13,"address":"0x79dc24","value":"0x79dd80","module":"","asU32":7986560,"bstr":{"ptr":"0x79dd80","byteLength":20,"charLength":10,"text":""}},{"index":14,"address":"0x79dc28","value":"0x79dd7c","module":"","asU32":7986556,"bstr":{"ptr":"0x79dd7c","byteLength":0,"charLength":0,"text":""}},{"index":15,"address":"0x79dc2c","value":"0x79dcb0","module":"","asU32":7986352},{"index":16,"address":"0x79dc30","value":"0xc18000","module":"","asU32":12681216},{"index":17,"address":"0x79dc34","value":"0xc22b00","module":"","asU32":12724992},{"index":18,"address":"0x79dc38","value":"0x79dc5c","module":"","asU32":7986268},{"index":19,"address":"0x79dc3c","value":"0x79dc54","module":"","asU32":7986260},{"index":20,"address":"0x79dc40","value":"0xc368f0","module":"","asU32":12806384},{"index":21,"address":"0x79dc44","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x79dc48","value":"0x79dd7c","module":"","asU32":7986556,"bstr":{"ptr":"0x79dd7c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x79dc4c","value":"0xc19250","module":"","asU32":12685904}],"time":"2026-04-25T10:54:12.197Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.201Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8d2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 00 00 08 00 47 03 08 41 00 00 00 00 00 00 0b 00 04 00 cc 1a 13 00 08 00 de 1a 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x79df3c","module":"","asU32":7987004},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x79df34","module":"","asU32":7986996},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79df3c","module":"","asU32":7987004},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x79e038","module":"","asU32":7987256},{"index":11,"value":"0x755a0067","module":"combase.dll","asU32":1968832615}],"stack":[{"index":0,"address":"0x79df08","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79df0c","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79df10","value":"0x7553c8d2","module":"combase.dll","asU32":1968425170},{"index":3,"address":"0x79df14","value":"0x79df3c","module":"","asU32":7987004},{"index":4,"address":"0x79df18","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x79df1c","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79df20","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x79df24","value":"0x79df34","module":"","asU32":7986996},{"index":8,"address":"0x79df28","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79df2c","value":"0x79df3c","module":"","asU32":7987004},{"index":10,"address":"0x79df30","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x79df34","value":"0x79e038","module":"","asU32":7987256},{"index":12,"address":"0x79df38","value":"0x755a0067","module":"combase.dll","asU32":1968832615},{"index":13,"address":"0x79df3c","value":"0xc2f8c4","module":"","asU32":12777668},{"index":14,"address":"0x79df40","value":"0x79e4c4","module":"","asU32":7988420},{"index":15,"address":"0x79df44","value":"0x79df54","module":"","asU32":7987028},{"index":16,"address":"0x79df48","value":"0x79e4c4","module":"","asU32":7988420},{"index":17,"address":"0x79df4c","value":"0x755a2c10","module":"combase.dll","asU32":1968843792},{"index":18,"address":"0x79df50","value":"0x79ebf4","module":"","asU32":7990260},{"index":19,"address":"0x79df54","value":"0x0","module":"","asU32":0},{"index":20,"address":"0x79df58","value":"0x79ea00","module":"","asU32":7989760,"bstr":{"ptr":"0x79ea00","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0x79df5c","value":"0x79e4cc","module":"","asU32":7988428},{"index":22,"address":"0x79df60","value":"0x75751750","module":"combase.dll","asU32":1970607952,"bstr":{"ptr":"0x75751750","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x79df64","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:54:12.206Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8d2","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.211Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x79edc0","module":"","asU32":7990720},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x79edb8","module":"","asU32":7990712},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79edc0","module":"","asU32":7990720},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x79ee14","module":"","asU32":7990804},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x79ed8c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79ed90","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79ed94","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x79ed98","value":"0x79edc0","module":"","asU32":7990720},{"index":4,"address":"0x79ed9c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x79eda0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79eda4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x79eda8","value":"0x79edb8","module":"","asU32":7990712},{"index":8,"address":"0x79edac","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79edb0","value":"0x79edc0","module":"","asU32":7990720},{"index":10,"address":"0x79edb4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x79edb8","value":"0x79ee14","module":"","asU32":7990804},{"index":12,"address":"0x79edbc","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x79edc0","value":"0xc2fabc","module":"","asU32":12778172},{"index":14,"address":"0x79edc4","value":"0x79edfc","module":"","asU32":7990780},{"index":15,"address":"0x79edc8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x79edcc","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x79edd0","value":"0x79ee9c","module":"","asU32":7990940,"bstr":{"ptr":"0x79ee9c","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x79edd4","value":"0x79ee74","module":"","asU32":7990900,"bstr":{"ptr":"0x79ee74","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x79edd8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x79eddc","value":"0xc47a68","module":"","asU32":12876392},{"index":21,"address":"0x79ede0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x79ede4","value":"0xc2fabc","module":"","asU32":12778172},{"index":23,"address":"0x79ede8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:54:12.217Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.219Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x7551a860","procFormat":"0x755394e2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 44 00 08 00 45 03 08 43 01 00 00 00 00 00 0a 01 04 00 0c 00 13 00 08 00 18 00 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x79ef40","module":"","asU32":7991104},{"index":3,"value":"0x79ef5c","module":"","asU32":7991132,"bstr":{"ptr":"0x79ef5c","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":5,"value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":6,"value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0xc2fb04","module":"","asU32":12778244},{"index":8,"value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":9,"value":"0x79ef58","module":"","asU32":7991128},{"index":10,"value":"0xc2fb04","module":"","asU32":12778244},{"index":11,"value":"0x2","module":"","asU32":2}],"stack":[{"index":0,"address":"0x79ef20","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x79ef24","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79ef28","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x79ef2c","value":"0x79ef40","module":"","asU32":7991104},{"index":4,"address":"0x79ef30","value":"0x79ef5c","module":"","asU32":7991132,"bstr":{"ptr":"0x79ef5c","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x79ef34","value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":6,"address":"0x79ef38","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":7,"address":"0x79ef3c","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x79ef40","value":"0xc2fb04","module":"","asU32":12778244},{"index":9,"address":"0x79ef44","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":10,"address":"0x79ef48","value":"0x79ef58","module":"","asU32":7991128},{"index":11,"address":"0x79ef4c","value":"0xc2fb04","module":"","asU32":12778244},{"index":12,"address":"0x79ef50","value":"0x2","module":"","asU32":2},{"index":13,"address":"0x79ef54","value":"0x75521af0","module":"combase.dll","asU32":1968315120},{"index":14,"address":"0x79ef58","value":"0x0","module":"","asU32":0},{"index":15,"address":"0x79ef5c","value":"0x79f124","module":"","asU32":7991588,"bstr":{"ptr":"0x79f124","byteLength":16,"charLength":8,"text":"\uf15cy\u13da\u748a\ufb04Â"}},{"index":16,"address":"0x79ef60","value":"0x748a130c","module":"clr.dll","asU32":1955205900},{"index":17,"address":"0x79ef64","value":"0xc2fb04","module":"","asU32":12778244},{"index":18,"address":"0x79ef68","value":"0x0","module":"","asU32":0},{"index":19,"address":"0x79ef6c","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":20,"address":"0x79ef70","value":"0x79f0ec","module":"","asU32":7991532,"bstr":{"ptr":"0x79f0ec","byteLength":2,"charLength":1,"text":""}},{"index":21,"address":"0x79ef74","value":"0xfed2597","module":"","asU32":267199895},{"index":22,"address":"0x79ef78","value":"0xc2fb04","module":"","asU32":12778244},{"index":23,"address":"0x79ef7c","value":"0x1","module":"","asU32":1}],"time":"2026-04-25T10:54:12.222Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755394e2","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.224Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x79eedc","module":"","asU32":7991004},{"index":3,"value":"0xc18ad0","module":"","asU32":12683984},{"index":4,"value":"0x1","module":"","asU32":1},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x79eed4","module":"","asU32":7990996},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79eedc","module":"","asU32":7991004},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x79f020","module":"","asU32":7991328},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0x79eea8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79eeac","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79eeb0","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0x79eeb4","value":"0x79eedc","module":"","asU32":7991004},{"index":4,"address":"0x79eeb8","value":"0xc18ad0","module":"","asU32":12683984},{"index":5,"address":"0x79eebc","value":"0x1","module":"","asU32":1},{"index":6,"address":"0x79eec0","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x79eec4","value":"0x79eed4","module":"","asU32":7990996},{"index":8,"address":"0x79eec8","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79eecc","value":"0x79eedc","module":"","asU32":7991004},{"index":10,"address":"0x79eed0","value":"0x5","module":"","asU32":5},{"index":11,"address":"0x79eed4","value":"0x79f020","module":"","asU32":7991328},{"index":12,"address":"0x79eed8","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0x79eedc","value":"0xc2fabc","module":"","asU32":12778172},{"index":14,"address":"0x79eee0","value":"0x1","module":"","asU32":1},{"index":15,"address":"0x79eee4","value":"0xc22c38","module":"","asU32":12725304},{"index":16,"address":"0x79eee8","value":"0x2","module":"","asU32":2},{"index":17,"address":"0x79eeec","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0x79eef0","value":"0xc47a68","module":"","asU32":12876392},{"index":19,"address":"0x79eef4","value":"0x76fc5700","module":"RPCRT4.dll","asU32":1996248832},{"index":20,"address":"0x79eef8","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x79eefc","value":"0xc2fabc","module":"","asU32":12778172},{"index":22,"address":"0x79ef00","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x79ef04","value":"0xc2fabc","module":"","asU32":12778172}],"time":"2026-04-25T10:54:12.229Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.230Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x79e9f0","module":"","asU32":7989744},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x79e9e8","module":"","asU32":7989736},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79e9f0","module":"","asU32":7989744},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x79ea44","module":"","asU32":7989828},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x79e9bc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79e9c0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79e9c4","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x79e9c8","value":"0x79e9f0","module":"","asU32":7989744},{"index":4,"address":"0x79e9cc","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x79e9d0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79e9d4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x79e9d8","value":"0x79e9e8","module":"","asU32":7989736},{"index":8,"address":"0x79e9dc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79e9e0","value":"0x79e9f0","module":"","asU32":7989744},{"index":10,"address":"0x79e9e4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x79e9e8","value":"0x79ea44","module":"","asU32":7989828},{"index":12,"address":"0x79e9ec","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x79e9f0","value":"0xc2fabc","module":"","asU32":12778172},{"index":14,"address":"0x79e9f4","value":"0x79ea2c","module":"","asU32":7989804},{"index":15,"address":"0x79e9f8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x79e9fc","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x79ea00","value":"0x79eacc","module":"","asU32":7989964,"bstr":{"ptr":"0x79eacc","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x79ea04","value":"0x79eaa4","module":"","asU32":7989924,"bstr":{"ptr":"0x79eaa4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x79ea08","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x79ea0c","value":"0xc46918","module":"","asU32":12871960},{"index":21,"address":"0x79ea10","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x79ea14","value":"0xc2fabc","module":"","asU32":12778172},{"index":23,"address":"0x79ea18","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:54:12.235Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.236Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x79e930","module":"","asU32":7989552},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x79e928","module":"","asU32":7989544},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79e930","module":"","asU32":7989552},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x79e984","module":"","asU32":7989636},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x79e8fc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79e900","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79e904","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x79e908","value":"0x79e930","module":"","asU32":7989552},{"index":4,"address":"0x79e90c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x79e910","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79e914","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x79e918","value":"0x79e928","module":"","asU32":7989544},{"index":8,"address":"0x79e91c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79e920","value":"0x79e930","module":"","asU32":7989552},{"index":10,"address":"0x79e924","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x79e928","value":"0x79e984","module":"","asU32":7989636},{"index":12,"address":"0x79e92c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x79e930","value":"0xc2fabc","module":"","asU32":12778172},{"index":14,"address":"0x79e934","value":"0x79e96c","module":"","asU32":7989612},{"index":15,"address":"0x79e938","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x79e93c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x79e940","value":"0x79ea04","module":"","asU32":7989764,"bstr":{"ptr":"0x79ea04","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x79e944","value":"0x79e9e4","module":"","asU32":7989732,"bstr":{"ptr":"0x79e9e4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x79e948","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x79e94c","value":"0xc46918","module":"","asU32":12871960},{"index":21,"address":"0x79e950","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x79e954","value":"0xc2fabc","module":"","asU32":12778172},{"index":23,"address":"0x79e958","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:54:12.239Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.241Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x79e640","module":"","asU32":7988800},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x79e638","module":"","asU32":7988792},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79e640","module":"","asU32":7988800},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x79e694","module":"","asU32":7988884},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x79e60c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79e610","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79e614","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x79e618","value":"0x79e640","module":"","asU32":7988800},{"index":4,"address":"0x79e61c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x79e620","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79e624","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x79e628","value":"0x79e638","module":"","asU32":7988792},{"index":8,"address":"0x79e62c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79e630","value":"0x79e640","module":"","asU32":7988800},{"index":10,"address":"0x79e634","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x79e638","value":"0x79e694","module":"","asU32":7988884},{"index":12,"address":"0x79e63c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x79e640","value":"0xc2fabc","module":"","asU32":12778172},{"index":14,"address":"0x79e644","value":"0x79e67c","module":"","asU32":7988860},{"index":15,"address":"0x79e648","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x79e64c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x79e650","value":"0x79e718","module":"","asU32":7989016,"bstr":{"ptr":"0x79e718","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x79e654","value":"0x79e6f4","module":"","asU32":7988980,"bstr":{"ptr":"0x79e6f4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x79e658","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x79e65c","value":"0xc46918","module":"","asU32":12871960},{"index":21,"address":"0x79e660","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x79e664","value":"0xc2fabc","module":"","asU32":12778172},{"index":23,"address":"0x79e668","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:54:12.245Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.246Z"} +register.begin +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x79efe0","module":"","asU32":7991264},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x79efd8","module":"","asU32":7991256},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79efe0","module":"","asU32":7991264},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x79f034","module":"","asU32":7991348},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x79efac","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79efb0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79efb4","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x79efb8","value":"0x79efe0","module":"","asU32":7991264},{"index":4,"address":"0x79efbc","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x79efc0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79efc4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x79efc8","value":"0x79efd8","module":"","asU32":7991256},{"index":8,"address":"0x79efcc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79efd0","value":"0x79efe0","module":"","asU32":7991264},{"index":10,"address":"0x79efd4","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x79efd8","value":"0x79f034","module":"","asU32":7991348},{"index":12,"address":"0x79efdc","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x79efe0","value":"0xc2fabc","module":"","asU32":12778172},{"index":14,"address":"0x79efe4","value":"0x79f01c","module":"","asU32":7991324},{"index":15,"address":"0x79efe8","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x79efec","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x79eff0","value":"0x79f0c0","module":"","asU32":7991488,"bstr":{"ptr":"0x79f0c0","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x79eff4","value":"0x79f094","module":"","asU32":7991444,"bstr":{"ptr":"0x79f094","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x79eff8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x79effc","value":"0xc46918","module":"","asU32":12871960},{"index":21,"address":"0x79f000","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x79f004","value":"0xc2fabc","module":"","asU32":12778172},{"index":23,"address":"0x79f008","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:54:12.250Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:54:12.252Z"} +register.ok +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","varargs":[{"index":2,"value":"0x79f314","module":"","asU32":7992084},{"index":3,"value":"0x3523d58","module":"","asU32":55721304,"bstr":{"ptr":"0x3523d58","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x79f30c","module":"","asU32":7992076,"bstr":{"ptr":"0x79f30c","byteLength":10,"charLength":5,"text":"\uf3c0y\u1281\u0335\ufcb4"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79f314","module":"","asU32":7992084},{"index":9,"value":"0xa","module":"","asU32":10},{"index":10,"value":"0x79f3c0","module":"","asU32":7992256},{"index":11,"value":"0x3351281","module":"","asU32":53809793}],"stack":[{"index":0,"address":"0x79f2e0","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79f2e4","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x79f2e8","value":"0x6417775a","module":"NmxSvcps.dll","asU32":1679259482},{"index":3,"address":"0x79f2ec","value":"0x79f314","module":"","asU32":7992084},{"index":4,"address":"0x79f2f0","value":"0x3523d58","module":"","asU32":55721304,"bstr":{"ptr":"0x3523d58","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x79f2f4","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79f2f8","value":"0x18","module":"","asU32":24},{"index":7,"address":"0x79f2fc","value":"0x79f30c","module":"","asU32":7992076,"bstr":{"ptr":"0x79f30c","byteLength":10,"charLength":5,"text":"\uf3c0y\u1281\u0335\ufcb4"}},{"index":8,"address":"0x79f300","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79f304","value":"0x79f314","module":"","asU32":7992084},{"index":10,"address":"0x79f308","value":"0xa","module":"","asU32":10},{"index":11,"address":"0x79f30c","value":"0x79f3c0","module":"","asU32":7992256},{"index":12,"address":"0x79f310","value":"0x3351281","module":"","asU32":53809793},{"index":13,"address":"0x79f314","value":"0xc2fcb4","module":"","asU32":12778676},{"index":14,"address":"0x79f318","value":"0x7107","module":"","asU32":28935},{"index":15,"address":"0x79f31c","value":"0x79f32c","module":"","asU32":7992108,"bstr":{"ptr":"0x79f32c","byteLength":36,"charLength":18,"text":"NmxNullCallbackX86"}},{"index":16,"address":"0x79f320","value":"0x6","module":"","asU32":6},{"index":17,"address":"0x79f324","value":"0x0","module":"","asU32":0},{"index":18,"address":"0x79f328","value":"0x24","module":"","asU32":36},{"index":19,"address":"0x79f32c","value":"0x6d004e","module":"","asU32":7143502},{"index":20,"address":"0x79f330","value":"0x4e0078","module":"","asU32":5111928},{"index":21,"address":"0x79f334","value":"0x6c0075","module":"","asU32":7078005},{"index":22,"address":"0x79f338","value":"0x43006c","module":"","asU32":4391020},{"index":23,"address":"0x79f33c","value":"0x6c0061","module":"","asU32":7077985}],"time":"2026-04-25T10:54:12.265Z"} +{"event":"bstr.usermarshal.enter","callerModule":"RPCRT4.dll","flags":"0x79ee5c","buffer":"0xc539a0","bstrSlot":"0x79f31c","bstr":{"ptr":"0x79f32c","byteLength":36,"charLength":18,"text":"NmxNullCallbackX86"},"time":"2026-04-25T10:54:12.266Z"} +{"event":"bstr.usermarshal.leave","callerModule":"RPCRT4.dll","buffer":"0xc539a0","retval":"0xc539d0","marshaledLength":48,"marshaledHex":"12 00 00 00 24 00 00 00 12 00 00 00 4e 00 6d 00 78 00 4e 00 75 00 6c 00 6c 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00","time":"2026-04-25T10:54:12.266Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x1","lastBstrMarshalLength":48,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 71 00 00 55 73 65 72 12 00 00 00 24 00 00 00 12 00 00 00 4e 00 6d 00 78 00 4e 00 75 00 6c 00 6c 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00 06 00 00 00 00 00 00 00 64 00 6f 00 77 00 73 00 50 00 6f 00 77 00 65 00 72 00 53 00 68 00 65 00 6c 00 6c 00 5c 00 76 00 31 00 2e 00 30 00 5c 00 3b 00 43 00 3a 00 5c 00 57 00 69 00 6e 00 64 00 6f 00 77 00 73 00 5c 00 53 00 79 00 73 00 74 00 65 00 6d 00 33 00 32 00 5c 00 4f 00 70 00 65 00 6e 00 53 00 53 00 48 00 5c 00 3b 00","time":"2026-04-25T10:54:12.266Z"} +partner_version=6 +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177790","procFormatPrefix":"33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 50 21 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 03 00 18 00","varargs":[{"index":2,"value":"0x79f354","module":"","asU32":7992148},{"index":3,"value":"0x1","module":"","asU32":1},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x79f34c","module":"","asU32":7992140},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79f354","module":"","asU32":7992148},{"index":9,"value":"0xb","module":"","asU32":11},{"index":10,"value":"0x79f3c0","module":"","asU32":7992256},{"index":11,"value":"0x33513e5","module":"","asU32":53810149}],"stack":[{"index":0,"address":"0x79f320","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79f324","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x79f328","value":"0x64177790","module":"NmxSvcps.dll","asU32":1679259536},{"index":3,"address":"0x79f32c","value":"0x79f354","module":"","asU32":7992148},{"index":4,"address":"0x79f330","value":"0x1","module":"","asU32":1},{"index":5,"address":"0x79f334","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79f338","value":"0x18","module":"","asU32":24},{"index":7,"address":"0x79f33c","value":"0x79f34c","module":"","asU32":7992140},{"index":8,"address":"0x79f340","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79f344","value":"0x79f354","module":"","asU32":7992148},{"index":10,"address":"0x79f348","value":"0xb","module":"","asU32":11},{"index":11,"address":"0x79f34c","value":"0x79f3c0","module":"","asU32":7992256},{"index":12,"address":"0x79f350","value":"0x33513e5","module":"","asU32":53810149},{"index":13,"address":"0x79f354","value":"0xc2fcb4","module":"","asU32":12778676},{"index":14,"address":"0x79f358","value":"0x1","module":"","asU32":1},{"index":15,"address":"0x79f35c","value":"0x1","module":"","asU32":1},{"index":16,"address":"0x79f360","value":"0x7ffd","module":"","asU32":32765},{"index":17,"address":"0x79f364","value":"0x79f49c","module":"","asU32":7992476,"bstr":{"ptr":"0x79f49c","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x79f368","value":"0x639daaa","module":"","asU32":104454826},{"index":19,"address":"0x79f36c","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":20,"address":"0x79f370","value":"0x79f644","module":"","asU32":7992900},{"index":21,"address":"0x79f374","value":"0x14","module":"","asU32":20},{"index":22,"address":"0x79f378","value":"0x79f354","module":"","asU32":7992148},{"index":23,"address":"0x79f37c","value":"0x33513e5","module":"","asU32":53810149}],"time":"2026-04-25T10:54:12.284Z"}unregister.begin + +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177790","retval":"0x0","lastBstrMarshalLength":48,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 24 00 00 00 12 00 00 00 4e 00 6d 00 78 00 4e 00 75 00 6c 00 6c 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00 06 00 00 00 00 00 00 00 64 00 6f 00 77 00 73 00 50 00 6f 00 77 00 65 00 72 00 53 00 68 00 65 00 6c 00 6c 00 5c 00 76 00 31 00 2e 00 30 00 5c 00 3b 00 43 00 3a 00 5c 00 57 00 69 00 6e 00 64 00 6f 00 77 00 73 00 5c 00 53 00 79 00 73 00 74 00 65 00 6d 00 33 00 32 00 5c 00 4f 00 70 00 65 00 6e 00 53 00 53 00 48 00 5c 00 3b 00","time":"2026-04-25T10:54:12.285Z"} +unregister.ok +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","varargs":[{"index":2,"value":"0x79f370","module":"","asU32":7992176},{"index":3,"value":"0x7107","module":"","asU32":28935},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0xc","module":"","asU32":12},{"index":6,"value":"0x79f368","module":"","asU32":7992168,"bstr":{"ptr":"0x79f368","byteLength":4,"charLength":2,"text":"\uf3ccy"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79f370","module":"","asU32":7992176},{"index":9,"value":"0x4","module":"","asU32":4},{"index":10,"value":"0x79f3cc","module":"","asU32":7992268},{"index":11,"value":"0x33514fd","module":"","asU32":53810429}],"stack":[{"index":0,"address":"0x79f33c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79f340","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x79f344","value":"0x6417762e","module":"NmxSvcps.dll","asU32":1679259182},{"index":3,"address":"0x79f348","value":"0x79f370","module":"","asU32":7992176},{"index":4,"address":"0x79f34c","value":"0x7107","module":"","asU32":28935},{"index":5,"address":"0x79f350","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x79f354","value":"0xc","module":"","asU32":12},{"index":7,"address":"0x79f358","value":"0x79f368","module":"","asU32":7992168,"bstr":{"ptr":"0x79f368","byteLength":4,"charLength":2,"text":"\uf3ccy"}},{"index":8,"address":"0x79f35c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79f360","value":"0x79f370","module":"","asU32":7992176},{"index":10,"address":"0x79f364","value":"0x4","module":"","asU32":4},{"index":11,"address":"0x79f368","value":"0x79f3cc","module":"","asU32":7992268},{"index":12,"address":"0x79f36c","value":"0x33514fd","module":"","asU32":53810429},{"index":13,"address":"0x79f370","value":"0xc2fcb4","module":"","asU32":12778676},{"index":14,"address":"0x79f374","value":"0x7107","module":"","asU32":28935},{"index":15,"address":"0x79f378","value":"0x639daaa","module":"","asU32":104454826},{"index":16,"address":"0x79f37c","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":17,"address":"0x79f380","value":"0x79f644","module":"","asU32":7992900},{"index":18,"address":"0x79f384","value":"0x8","module":"","asU32":8},{"index":19,"address":"0x79f388","value":"0x79f370","module":"","asU32":7992176},{"index":20,"address":"0x79f38c","value":"0x33514fd","module":"","asU32":53810429},{"index":21,"address":"0x79f390","value":"0x79f3cc","module":"","asU32":7992268},{"index":22,"address":"0x79f394","value":"0x3304f0c","module":"","asU32":53497612,"bstr":{"ptr":"0x3304f0c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x79f398","value":"0x3524e98","module":"","asU32":55725720}],"time":"2026-04-25T10:54:12.297Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x1","lastBstrMarshalLength":48,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 24 00 00 00 12 00 00 00 4e 00 6d 00 78 00 4e 00 75 00 6c 00 6c 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00 06 00 00 00 00 00 00 00 64 00 6f 00 77 00 73 00 50 00 6f 00 77 00 65 00 72 00 53 00 68 00 65 00 6c 00 6c 00 5c 00 76 00 31 00 2e 00 30 00 5c 00 3b 00 43 00 3a 00 5c 00 57 00 69 00 6e 00 64 00 6f 00 77 00 73 00 5c 00 53 00 79 00 73 00 74 00 65 00 6d 00 33 00 32 00 5c 00 4f 00 70 00 65 00 6e 00 53 00 53 00 48 00 5c 00 3b 00","time":"2026-04-25T10:54:12.299Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x79effc","module":"","asU32":7991292},{"index":3,"value":"0xc18ad0","module":"","asU32":12683984},{"index":4,"value":"0x2","module":"","asU32":2},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x79eff4","module":"","asU32":7991284},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x79effc","module":"","asU32":7991292},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x79f140","module":"","asU32":7991616},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0x79efc8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x79efcc","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x79efd0","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0x79efd4","value":"0x79effc","module":"","asU32":7991292},{"index":4,"address":"0x79efd8","value":"0xc18ad0","module":"","asU32":12683984},{"index":5,"address":"0x79efdc","value":"0x2","module":"","asU32":2},{"index":6,"address":"0x79efe0","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x79efe4","value":"0x79eff4","module":"","asU32":7991284},{"index":8,"address":"0x79efe8","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x79efec","value":"0x79effc","module":"","asU32":7991292},{"index":10,"address":"0x79eff0","value":"0x5","module":"","asU32":5},{"index":11,"address":"0x79eff4","value":"0x79f140","module":"","asU32":7991616},{"index":12,"address":"0x79eff8","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0x79effc","value":"0xc2fabc","module":"","asU32":12778172},{"index":14,"address":"0x79f000","value":"0x2","module":"","asU32":2},{"index":15,"address":"0x79f004","value":"0xc23ef8","module":"","asU32":12730104},{"index":16,"address":"0x79f008","value":"0x2","module":"","asU32":2},{"index":17,"address":"0x79f00c","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0x79f010","value":"0xc46918","module":"","asU32":12871960},{"index":19,"address":"0x79f014","value":"0x3265be0","module":"","asU32":52845536},{"index":20,"address":"0x79f018","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x79f01c","value":"0xc2fabc","module":"","asU32":12778172},{"index":22,"address":"0x79f020","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x79f024","value":"0xc2fabc","module":"","asU32":12778172}],"time":"2026-04-25T10:54:12.304Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","lastBstrMarshalLength":48,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 02 00 00 00 28 24 00 00 78 36 00 00 89 f3 67 eb 50 10 75 32 05 00 00 00 00 00 00 00 29 a4 00 00 78 36 00 00 b3 95 b7 db ec c6 90 9b 05 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 64 00 6f 00 77 00 73 00 50 00 6f 00 77 00 65 00 72 00 53 00 68 00 65 00 6c 00 6c 00 5c 00 76 00 31 00 2e 00 30 00 5c 00 3b 00 43 00 3a 00 5c 00 57 00 69 00 6e 00 64 00 6f 00 77 00 73 00 5c 00 53 00 79 00 73 00 74 00 65 00 6d 00 33 00 32 00 5c 00 4f 00 70 00 65 00 6e 00 53 00 53 00 48 00 5c 00 3b 00","time":"2026-04-25T10:54:12.306Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida-exit.txt b/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida.stderr.txt b/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida.stdout.jsonl b/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida.stdout.jsonl new file mode 100644 index 0000000..d63fe52 --- /dev/null +++ b/captures/054-frida-direct-nmx-registerengine2-callback-stub/frida.stdout.jsonl @@ -0,0 +1,73 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7108 --engine-name=NmxCallbackX86 --version=6 --hold-seconds=0 --dump-callback-objref`... +{"event":"script.loaded","process":41336,"arch":"ia32","pointerSize":4,"time":"2026-04-25T10:57:57.365Z"} +{"event":"hook.missing","module":"oleaut32.dll","name":"BSTR_UserMarshal","time":"2026-04-25T10:57:57.365Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrInterfacePointerMarshall","address":"0x7704d450","time":"2026-04-25T10:57:57.365Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T10:57:57.366Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T10:57:57.366Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T10:57:57.367Z"} +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\NmxComHarness\bin\Release\net481\NmxComHarness.exe --engine-id=0x7108 --engine-name=NmxCallbackX86 --version=6 --hold-seconds=0 --dump-callback-objref`. Resuming main thread! +[Local::NmxComHarness.exe ]-> process=x64:False +engine_id=28936 +engine_name=NmxCallbackX86 +version=6 +null_callback=False +{"event":"hook.installed","module":"oleaut32.dll","name":"BSTR_UserMarshal","address":"0x757a42e0","time":"2026-04-25T10:57:57.468Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x7553601a","procFormatPrefix":"00 68 00 00 00 00 00 00 80 00 32 00 00 00 10 00 5c 02 47 1f 08 43 01 00 00 00 00 00 0b 00 04 00 02 00 0b 00 08 00 02 00 0b 00 0c 00 06 00 48 00 10 00 08 00 10 01 14 00 68 00 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x113d25c","module":"","asU32":18076252},{"index":3,"value":"0x113d840","module":"","asU32":18077760},{"index":4,"value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x1585848","module":"","asU32":22566984},{"index":8,"value":"0x1584f20","module":"","asU32":22564640},{"index":9,"value":"0x113d428","module":"","asU32":18076712},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0x113d23c","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x113d240","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x113d244","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x113d248","value":"0x113d25c","module":"","asU32":18076252},{"index":4,"address":"0x113d24c","value":"0x113d840","module":"","asU32":18077760},{"index":5,"address":"0x113d250","value":"0x75650b15","module":"combase.dll","asU32":1969556245},{"index":6,"address":"0x113d254","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x113d258","value":"0x7553601a","module":"combase.dll","asU32":1968398362,"bstr":{"ptr":"0x7553601a","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x113d25c","value":"0x1585848","module":"","asU32":22566984},{"index":9,"address":"0x113d260","value":"0x1584f20","module":"","asU32":22564640},{"index":10,"address":"0x113d264","value":"0x113d428","module":"","asU32":18076712},{"index":11,"address":"0x113d268","value":"0x0","module":"","asU32":0},{"index":12,"address":"0x113d26c","value":"0x0","module":"","asU32":0},{"index":13,"address":"0x113d270","value":"0x75750160","module":"combase.dll","asU32":1970602336,"bstr":{"ptr":"0x75750160","byteLength":0,"charLength":0,"text":""}},{"index":14,"address":"0x113d274","value":"0x7574fed8","module":"combase.dll","asU32":1970601688},{"index":15,"address":"0x113d278","value":"0x113d2e8","module":"","asU32":18076392,"bstr":{"ptr":"0x113d2e8","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0x113d27c","value":"0x75750620","module":"combase.dll","asU32":1970603552,"bstr":{"ptr":"0x75750620","byteLength":0,"charLength":0,"text":""}},{"index":17,"address":"0x113d280","value":"0xa","module":"","asU32":10},{"index":18,"address":"0x113d284","value":"0x113d390","module":"","asU32":18076560,"bstr":{"ptr":"0x113d390","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x113d288","value":"0x113d30c","module":"","asU32":18076428,"bstr":{"ptr":"0x113d30c","byteLength":0,"charLength":0,"text":""}},{"index":20,"address":"0x113d28c","value":"0x113d308","module":"","asU32":18076424,"bstr":{"ptr":"0x113d308","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0x113d290","value":"0x75751248","module":"combase.dll","asU32":1970606664,"bstr":{"ptr":"0x75751248","byteLength":0,"charLength":0,"text":""}},{"index":22,"address":"0x113d294","value":"0x75751244","module":"combase.dll","asU32":1970606660,"bstr":{"ptr":"0x75751244","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x113d298","value":"0x757501b0","module":"combase.dll","asU32":1970602416,"bstr":{"ptr":"0x757501b0","byteLength":0,"charLength":0,"text":""}}],"time":"2026-04-25T10:57:57.483Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7553601a","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.485Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x764526e2","procFormatPrefix":"00 48 00 00 00 00 00 00 14 00 31 04 00 00 00 5c 08 00 40 00 46 05 08 05 00 00 01 00 00 00 0b 00 00 00 02 00 0b 01 04 00 b8 00 48 00 08 00 08 00 10 01 0c 00 f2 00 70 00 10 00 08 00 00 48 00 00","varargs":[{"index":2,"value":"0x113d690","module":"","asU32":18077328},{"index":3,"value":"0x113d6d4","module":"","asU32":18077396,"bstr":{"ptr":"0x113d6d4","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x0","module":"","asU32":0},{"index":8,"value":"0x113d738","module":"","asU32":18077496},{"index":9,"value":"0x800","module":"","asU32":2048},{"index":10,"value":"0x113d6b4","module":"","asU32":18077364,"bstr":{"ptr":"0x113d6b4","byteLength":0,"charLength":0,"text":""}},{"index":11,"value":"0x1f92bc65","module":"","asU32":529710181}],"stack":[{"index":0,"address":"0x113d670","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x113d674","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x113d678","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x113d67c","value":"0x113d690","module":"","asU32":18077328},{"index":4,"address":"0x113d680","value":"0x113d6d4","module":"","asU32":18077396,"bstr":{"ptr":"0x113d6d4","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x113d684","value":"0x76465468","module":"sechost.dll","asU32":1984320616},{"index":6,"address":"0x113d688","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x113d68c","value":"0x764526e2","module":"sechost.dll","asU32":1984243426,"bstr":{"ptr":"0x764526e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x113d690","value":"0x0","module":"","asU32":0},{"index":9,"address":"0x113d694","value":"0x113d738","module":"","asU32":18077496},{"index":10,"address":"0x113d698","value":"0x800","module":"","asU32":2048},{"index":11,"address":"0x113d69c","value":"0x113d6b4","module":"","asU32":18077364,"bstr":{"ptr":"0x113d6b4","byteLength":0,"charLength":0,"text":""}},{"index":12,"address":"0x113d6a0","value":"0x1f92bc65","module":"","asU32":529710181},{"index":13,"address":"0x113d6a4","value":"0x113d898","module":"","asU32":18077848},{"index":14,"address":"0x113d6a8","value":"0x0","module":"","asU32":0},{"index":15,"address":"0x113d6ac","value":"0x113d85c","module":"","asU32":18077788},{"index":16,"address":"0x113d6b0","value":"0x0","module":"","asU32":0},{"index":17,"address":"0x113d6b4","value":"0x0","module":"","asU32":0},{"index":18,"address":"0x113d6b8","value":"0x0","module":"","asU32":0},{"index":19,"address":"0x113d6bc","value":"0x113d6a0","module":"","asU32":18077344},{"index":20,"address":"0x113d6c0","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x113d6c4","value":"0x113ed74","module":"","asU32":18083188},{"index":22,"address":"0x113d6c8","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":23,"address":"0x113d6cc","value":"0x68ca32c1","module":"","asU32":1758081729}],"time":"2026-04-25T10:57:57.489Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x764526e2","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.491Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x76452748","procFormatPrefix":"00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08 08 07 01 00 01 00 00 00 08 00 00 00 fe 00 0b 01 04 00 46 01 13 20 08 00 58 01 1b 01 0c 00 2e 02 58 01 10 00 08 00 48 00 14 00","varargs":[{"index":2,"value":"0x113d668","module":"","asU32":18077288},{"index":3,"value":"0x113d6cc","module":"","asU32":18077388,"bstr":{"ptr":"0x113d6cc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":7,"value":"0x1597690","module":"","asU32":22640272},{"index":8,"value":"0x113d694","module":"","asU32":18077332},{"index":9,"value":"0x113d6f4","module":"","asU32":18077428},{"index":10,"value":"0x113d69c","module":"","asU32":18077340},{"index":11,"value":"0x113d720","module":"","asU32":18077472}],"stack":[{"index":0,"address":"0x113d648","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x113d64c","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x113d650","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":3,"address":"0x113d654","value":"0x113d668","module":"","asU32":18077288},{"index":4,"address":"0x113d658","value":"0x113d6cc","module":"","asU32":18077388,"bstr":{"ptr":"0x113d6cc","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x113d65c","value":"0x76465374","module":"sechost.dll","asU32":1984320372},{"index":6,"address":"0x113d660","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x113d664","value":"0x76452748","module":"sechost.dll","asU32":1984243528},{"index":8,"address":"0x113d668","value":"0x1597690","module":"","asU32":22640272},{"index":9,"address":"0x113d66c","value":"0x113d694","module":"","asU32":18077332},{"index":10,"address":"0x113d670","value":"0x113d6f4","module":"","asU32":18077428},{"index":11,"address":"0x113d674","value":"0x113d69c","module":"","asU32":18077340},{"index":12,"address":"0x113d678","value":"0x113d720","module":"","asU32":18077472},{"index":13,"address":"0x113d67c","value":"0x0","module":"","asU32":0},{"index":14,"address":"0x113d680","value":"0x2","module":"","asU32":2},{"index":15,"address":"0x113d684","value":"0x1f92bc7d","module":"","asU32":529710205},{"index":16,"address":"0x113d688","value":"0x113d898","module":"","asU32":18077848},{"index":17,"address":"0x113d68c","value":"0x0","module":"","asU32":0},{"index":18,"address":"0x113d690","value":"0x113d85c","module":"","asU32":18077788},{"index":19,"address":"0x113d694","value":"0x1","module":"","asU32":1},{"index":20,"address":"0x113d698","value":"0x113d718","module":"","asU32":18077464},{"index":21,"address":"0x113d69c","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x113d6a0","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x113d6a4","value":"0x113d898","module":"","asU32":18077848}],"time":"2026-04-25T10:57:57.493Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x76452748","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.494Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x76451000","procFormat":"0x7645271e","procFormatPrefix":"00 48 00 00 00 00 01 00 08 00 30 e0 00 00 00 00 38 00 40 00 44 02 08 01 00 00 00 00 00 00 18 01 00 00 fa 00 70 00 04 00 08 00 00 48 00 00 00 00 02 00 20 00 30 40 00 00 00 00 50 00 24 00 47 08","varargs":[{"index":2,"value":"0x113d6a4","module":"","asU32":18077348},{"index":3,"value":"0x113d6dc","module":"","asU32":18077404,"bstr":{"ptr":"0x113d6dc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":5,"value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":6,"value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":7,"value":"0x113d6bc","module":"","asU32":18077372,"bstr":{"ptr":"0x113d6bc","byteLength":0,"charLength":0,"text":""}},{"index":8,"value":"0x1f92bc6d","module":"","asU32":529710189},{"index":9,"value":"0x15978c8","module":"","asU32":22640840},{"index":10,"value":"0x15707d0","module":"","asU32":22480848},{"index":11,"value":"0x0","module":"","asU32":0}],"stack":[{"index":0,"address":"0x113d684","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x113d688","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":2,"address":"0x113d68c","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":3,"address":"0x113d690","value":"0x113d6a4","module":"","asU32":18077348},{"index":4,"address":"0x113d694","value":"0x113d6dc","module":"","asU32":18077404,"bstr":{"ptr":"0x113d6dc","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x113d698","value":"0x764653fa","module":"sechost.dll","asU32":1984320506},{"index":6,"address":"0x113d69c","value":"0x76451000","module":"sechost.dll","asU32":1984237568,"bstr":{"ptr":"0x76451000","byteLength":0,"charLength":0,"text":""}},{"index":7,"address":"0x113d6a0","value":"0x7645271e","module":"sechost.dll","asU32":1984243486},{"index":8,"address":"0x113d6a4","value":"0x113d6bc","module":"","asU32":18077372,"bstr":{"ptr":"0x113d6bc","byteLength":0,"charLength":0,"text":""}},{"index":9,"address":"0x113d6a8","value":"0x1f92bc6d","module":"","asU32":529710189},{"index":10,"address":"0x113d6ac","value":"0x15978c8","module":"","asU32":22640840},{"index":11,"address":"0x113d6b0","value":"0x15707d0","module":"","asU32":22480848},{"index":12,"address":"0x113d6b4","value":"0x0","module":"","asU32":0},{"index":13,"address":"0x113d6b8","value":"0x0","module":"","asU32":0},{"index":14,"address":"0x113d6bc","value":"0x1597690","module":"","asU32":22640272},{"index":15,"address":"0x113d6c0","value":"0x113d698","module":"","asU32":18077336},{"index":16,"address":"0x113d6c4","value":"0x113d6a8","module":"","asU32":18077352},{"index":17,"address":"0x113d6c8","value":"0x113ed74","module":"","asU32":18083188},{"index":18,"address":"0x113d6cc","value":"0x113ed74","module":"","asU32":18083188},{"index":19,"address":"0x113d6d0","value":"0x76476f40","module":"sechost.dll","asU32":1984393024},{"index":20,"address":"0x113d6d4","value":"0x68ca32f9","module":"","asU32":1758081785},{"index":21,"address":"0x113d6d8","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x113d6dc","value":"0x113d764","module":"","asU32":18077540},{"index":23,"address":"0x113d6e0","value":"0x76465077","module":"sechost.dll","asU32":1984319607}],"time":"2026-04-25T10:57:57.497Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x7645271e","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.498Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x75536254","procFormatPrefix":"00 68 00 00 00 00 06 00 34 00 32 00 00 00 2c 00 90 00 47 0c 08 47 01 00 01 00 00 00 08 00 04 00 72 01 50 21 08 00 0b 00 50 21 0c 00 0b 00 88 00 10 00 00 04 13 00 14 00 0a 04 50 21 18 00 08 00","varargs":[{"index":2,"value":"0x113d860","module":"","asU32":18077792},{"index":3,"value":"0x113d8bc","module":"","asU32":18077884,"bstr":{"ptr":"0x113d8bc","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":7,"value":"0x1585848","module":"","asU32":22566984},{"index":8,"value":"0x1584e80","module":"","asU32":22564480},{"index":9,"value":"0x113d8e8","module":"","asU32":18077928},{"index":10,"value":"0x113d8f8","module":"","asU32":18077944},{"index":11,"value":"0x14","module":"","asU32":20}],"stack":[{"index":0,"address":"0x113d840","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x113d844","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x113d848","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":3,"address":"0x113d84c","value":"0x113d860","module":"","asU32":18077792},{"index":4,"address":"0x113d850","value":"0x113d8bc","module":"","asU32":18077884,"bstr":{"ptr":"0x113d8bc","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x113d854","value":"0x755f920a","module":"combase.dll","asU32":1969197578},{"index":6,"address":"0x113d858","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x113d85c","value":"0x75536254","module":"combase.dll","asU32":1968398932},{"index":8,"address":"0x113d860","value":"0x1585848","module":"","asU32":22566984},{"index":9,"address":"0x113d864","value":"0x1584e80","module":"","asU32":22564480},{"index":10,"address":"0x113d868","value":"0x113d8e8","module":"","asU32":18077928},{"index":11,"address":"0x113d86c","value":"0x113d8f8","module":"","asU32":18077944},{"index":12,"address":"0x113d870","value":"0x14","module":"","asU32":20},{"index":13,"address":"0x113d874","value":"0x113d9d0","module":"","asU32":18078160,"bstr":{"ptr":"0x113d9d0","byteLength":20,"charLength":10,"text":""}},{"index":14,"address":"0x113d878","value":"0x113d9cc","module":"","asU32":18078156,"bstr":{"ptr":"0x113d9cc","byteLength":0,"charLength":0,"text":""}},{"index":15,"address":"0x113d87c","value":"0x113d900","module":"","asU32":18077952},{"index":16,"address":"0x113d880","value":"0x15863e0","module":"","asU32":22569952},{"index":17,"address":"0x113d884","value":"0x157ac68","module":"","asU32":22522984},{"index":18,"address":"0x113d888","value":"0x113d8ac","module":"","asU32":18077868},{"index":19,"address":"0x113d88c","value":"0x113d8a4","module":"","asU32":18077860},{"index":20,"address":"0x113d890","value":"0x159ab80","module":"","asU32":22653824},{"index":21,"address":"0x113d894","value":"0x0","module":"","asU32":0},{"index":22,"address":"0x113d898","value":"0x113d9cc","module":"","asU32":18078156,"bstr":{"ptr":"0x113d9cc","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x113d89c","value":"0x1578f30","module":"","asU32":22515504}],"time":"2026-04-25T10:57:57.503Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x75536254","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.506Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c8d2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 00 00 08 00 47 03 08 41 00 00 00 00 00 00 0b 00 04 00 cc 1a 13 00 08 00 de 1a 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 14 00 00 00 08 00 47 04 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x113db8c","module":"","asU32":18078604},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x113db84","module":"","asU32":18078596},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113db8c","module":"","asU32":18078604},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x113dc88","module":"","asU32":18078856},{"index":11,"value":"0x755a0067","module":"combase.dll","asU32":1968832615}],"stack":[{"index":0,"address":"0x113db58","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113db5c","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113db60","value":"0x7553c8d2","module":"combase.dll","asU32":1968425170},{"index":3,"address":"0x113db64","value":"0x113db8c","module":"","asU32":18078604},{"index":4,"address":"0x113db68","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x113db6c","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113db70","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x113db74","value":"0x113db84","module":"","asU32":18078596},{"index":8,"address":"0x113db78","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113db7c","value":"0x113db8c","module":"","asU32":18078604},{"index":10,"address":"0x113db80","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x113db84","value":"0x113dc88","module":"","asU32":18078856},{"index":12,"address":"0x113db88","value":"0x755a0067","module":"combase.dll","asU32":1968832615},{"index":13,"address":"0x113db8c","value":"0x15903b4","module":"","asU32":22610868},{"index":14,"address":"0x113db90","value":"0x113e114","module":"","asU32":18080020},{"index":15,"address":"0x113db94","value":"0x113dba4","module":"","asU32":18078628},{"index":16,"address":"0x113db98","value":"0x113e114","module":"","asU32":18080020},{"index":17,"address":"0x113db9c","value":"0x755a2c10","module":"combase.dll","asU32":1968843792},{"index":18,"address":"0x113dba0","value":"0x113e844","module":"","asU32":18081860},{"index":19,"address":"0x113dba4","value":"0x0","module":"","asU32":0},{"index":20,"address":"0x113dba8","value":"0x113e650","module":"","asU32":18081360,"bstr":{"ptr":"0x113e650","byteLength":0,"charLength":0,"text":""}},{"index":21,"address":"0x113dbac","value":"0x113e11c","module":"","asU32":18080028},{"index":22,"address":"0x113dbb0","value":"0x75751750","module":"combase.dll","asU32":1970607952,"bstr":{"ptr":"0x75751750","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x113dbb4","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:57:57.509Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c8d2","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.513Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x113ea10","module":"","asU32":18082320},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x113ea08","module":"","asU32":18082312},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113ea10","module":"","asU32":18082320},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x113ea64","module":"","asU32":18082404},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x113e9dc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113e9e0","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113e9e4","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x113e9e8","value":"0x113ea10","module":"","asU32":18082320},{"index":4,"address":"0x113e9ec","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x113e9f0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113e9f4","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x113e9f8","value":"0x113ea08","module":"","asU32":18082312},{"index":8,"address":"0x113e9fc","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113ea00","value":"0x113ea10","module":"","asU32":18082320},{"index":10,"address":"0x113ea04","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x113ea08","value":"0x113ea64","module":"","asU32":18082404},{"index":12,"address":"0x113ea0c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x113ea10","value":"0x159012c","module":"","asU32":22610220},{"index":14,"address":"0x113ea14","value":"0x113ea4c","module":"","asU32":18082380},{"index":15,"address":"0x113ea18","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x113ea1c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x113ea20","value":"0x113eaec","module":"","asU32":18082540,"bstr":{"ptr":"0x113eaec","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x113ea24","value":"0x113eac4","module":"","asU32":18082500,"bstr":{"ptr":"0x113eac4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x113ea28","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x113ea2c","value":"0x15ad060","module":"","asU32":22728800},{"index":21,"address":"0x113ea30","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x113ea34","value":"0x159012c","module":"","asU32":22610220},{"index":23,"address":"0x113ea38","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:57:57.516Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.519Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x7551a860","procFormat":"0x755394e2","procFormatPrefix":"33 6c 00 00 00 00 03 00 10 00 44 00 08 00 45 03 08 43 01 00 00 00 00 00 0a 01 04 00 0c 00 13 00 08 00 18 00 70 00 0c 00 08 00 33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 41 00 00 00 00","varargs":[{"index":2,"value":"0x113eb90","module":"","asU32":18082704},{"index":3,"value":"0x113ebac","module":"","asU32":18082732,"bstr":{"ptr":"0x113ebac","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":5,"value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":6,"value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":7,"value":"0x15907a4","module":"","asU32":22611876},{"index":8,"value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":9,"value":"0x113eba8","module":"","asU32":18082728},{"index":10,"value":"0x15907a4","module":"","asU32":22611876},{"index":11,"value":"0x2","module":"","asU32":2}],"stack":[{"index":0,"address":"0x113eb70","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x113eb74","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113eb78","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":3,"address":"0x113eb7c","value":"0x113eb90","module":"","asU32":18082704},{"index":4,"address":"0x113eb80","value":"0x113ebac","module":"","asU32":18082732,"bstr":{"ptr":"0x113ebac","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x113eb84","value":"0x7574a1f6","module":"combase.dll","asU32":1970577910},{"index":6,"address":"0x113eb88","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":7,"address":"0x113eb8c","value":"0x755394e2","module":"combase.dll","asU32":1968411874,"bstr":{"ptr":"0x755394e2","byteLength":0,"charLength":0,"text":""}},{"index":8,"address":"0x113eb90","value":"0x15907a4","module":"","asU32":22611876},{"index":9,"address":"0x113eb94","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":10,"address":"0x113eb98","value":"0x113eba8","module":"","asU32":18082728},{"index":11,"address":"0x113eb9c","value":"0x15907a4","module":"","asU32":22611876},{"index":12,"address":"0x113eba0","value":"0x2","module":"","asU32":2},{"index":13,"address":"0x113eba4","value":"0x75521af0","module":"combase.dll","asU32":1968315120},{"index":14,"address":"0x113eba8","value":"0x0","module":"","asU32":0},{"index":15,"address":"0x113ebac","value":"0x113ed74","module":"","asU32":18083188,"bstr":{"ptr":"0x113ed74","byteLength":16,"charLength":8,"text":"\uedac\u0113\u13da\u748a\u07a4\u0159"}},{"index":16,"address":"0x113ebb0","value":"0x748a130c","module":"clr.dll","asU32":1955205900},{"index":17,"address":"0x113ebb4","value":"0x15907a4","module":"","asU32":22611876},{"index":18,"address":"0x113ebb8","value":"0x0","module":"","asU32":0},{"index":19,"address":"0x113ebbc","value":"0x747cb584","module":"clr.dll","asU32":1954329988},{"index":20,"address":"0x113ebc0","value":"0x113ed3c","module":"","asU32":18083132,"bstr":{"ptr":"0x113ed3c","byteLength":2,"charLength":1,"text":""}},{"index":21,"address":"0x113ebc4","value":"0x5e28c604","module":"","asU32":1579730436},{"index":22,"address":"0x113ebc8","value":"0x15907a4","module":"","asU32":22611876},{"index":23,"address":"0x113ebcc","value":"0x1","module":"","asU32":1}],"time":"2026-04-25T10:57:57.524Z"} +{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755394e2","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.527Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x113eb2c","module":"","asU32":18082604},{"index":3,"value":"0x15786b8","module":"","asU32":22513336},{"index":4,"value":"0x1","module":"","asU32":1},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x113eb24","module":"","asU32":18082596},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113eb2c","module":"","asU32":18082604},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x113ec70","module":"","asU32":18082928},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0x113eaf8","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113eafc","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113eb00","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0x113eb04","value":"0x113eb2c","module":"","asU32":18082604},{"index":4,"address":"0x113eb08","value":"0x15786b8","module":"","asU32":22513336},{"index":5,"address":"0x113eb0c","value":"0x1","module":"","asU32":1},{"index":6,"address":"0x113eb10","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x113eb14","value":"0x113eb24","module":"","asU32":18082596},{"index":8,"address":"0x113eb18","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113eb1c","value":"0x113eb2c","module":"","asU32":18082604},{"index":10,"address":"0x113eb20","value":"0x5","module":"","asU32":5},{"index":11,"address":"0x113eb24","value":"0x113ec70","module":"","asU32":18082928},{"index":12,"address":"0x113eb28","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0x113eb2c","value":"0x159012c","module":"","asU32":22610220},{"index":14,"address":"0x113eb30","value":"0x1","module":"","asU32":1},{"index":15,"address":"0x113eb34","value":"0x157aa60","module":"","asU32":22522464},{"index":16,"address":"0x113eb38","value":"0x2","module":"","asU32":2},{"index":17,"address":"0x113eb3c","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0x113eb40","value":"0x15ad060","module":"","asU32":22728800},{"index":19,"address":"0x113eb44","value":"0x76fc5700","module":"RPCRT4.dll","asU32":1996248832},{"index":20,"address":"0x113eb48","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x113eb4c","value":"0x159012c","module":"","asU32":22610220},{"index":22,"address":"0x113eb50","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x113eb54","value":"0x159012c","module":"","asU32":22610220}],"time":"2026-04-25T10:57:57.533Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.535Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x113e640","module":"","asU32":18081344},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x113e638","module":"","asU32":18081336},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113e640","module":"","asU32":18081344},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x113e694","module":"","asU32":18081428},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x113e60c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113e610","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113e614","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x113e618","value":"0x113e640","module":"","asU32":18081344},{"index":4,"address":"0x113e61c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x113e620","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113e624","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x113e628","value":"0x113e638","module":"","asU32":18081336},{"index":8,"address":"0x113e62c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113e630","value":"0x113e640","module":"","asU32":18081344},{"index":10,"address":"0x113e634","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x113e638","value":"0x113e694","module":"","asU32":18081428},{"index":12,"address":"0x113e63c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x113e640","value":"0x159012c","module":"","asU32":22610220},{"index":14,"address":"0x113e644","value":"0x113e67c","module":"","asU32":18081404},{"index":15,"address":"0x113e648","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x113e64c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x113e650","value":"0x113e71c","module":"","asU32":18081564,"bstr":{"ptr":"0x113e71c","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x113e654","value":"0x113e6f4","module":"","asU32":18081524,"bstr":{"ptr":"0x113e6f4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x113e658","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x113e65c","value":"0x15ac998","module":"","asU32":22727064},{"index":21,"address":"0x113e660","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x113e664","value":"0x159012c","module":"","asU32":22610220},{"index":23,"address":"0x113e668","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:57:57.539Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.540Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x113e580","module":"","asU32":18081152},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x113e578","module":"","asU32":18081144},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113e580","module":"","asU32":18081152},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x113e5d4","module":"","asU32":18081236},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x113e54c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113e550","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113e554","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x113e558","value":"0x113e580","module":"","asU32":18081152},{"index":4,"address":"0x113e55c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x113e560","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113e564","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x113e568","value":"0x113e578","module":"","asU32":18081144},{"index":8,"address":"0x113e56c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113e570","value":"0x113e580","module":"","asU32":18081152},{"index":10,"address":"0x113e574","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x113e578","value":"0x113e5d4","module":"","asU32":18081236},{"index":12,"address":"0x113e57c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x113e580","value":"0x159012c","module":"","asU32":22610220},{"index":14,"address":"0x113e584","value":"0x113e5bc","module":"","asU32":18081212},{"index":15,"address":"0x113e588","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x113e58c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x113e590","value":"0x113e654","module":"","asU32":18081364,"bstr":{"ptr":"0x113e654","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x113e594","value":"0x113e634","module":"","asU32":18081332,"bstr":{"ptr":"0x113e634","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x113e598","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x113e59c","value":"0x15ac998","module":"","asU32":22727064},{"index":21,"address":"0x113e5a0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x113e5a4","value":"0x159012c","module":"","asU32":22610220},{"index":23,"address":"0x113e5a8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:57:57.546Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.547Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x113e290","module":"","asU32":18080400},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x113e288","module":"","asU32":18080392},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113e290","module":"","asU32":18080400},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x113e2e4","module":"","asU32":18080484},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x113e25c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113e260","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113e264","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x113e268","value":"0x113e290","module":"","asU32":18080400},{"index":4,"address":"0x113e26c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x113e270","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113e274","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x113e278","value":"0x113e288","module":"","asU32":18080392},{"index":8,"address":"0x113e27c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113e280","value":"0x113e290","module":"","asU32":18080400},{"index":10,"address":"0x113e284","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x113e288","value":"0x113e2e4","module":"","asU32":18080484},{"index":12,"address":"0x113e28c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x113e290","value":"0x159012c","module":"","asU32":22610220},{"index":14,"address":"0x113e294","value":"0x113e2cc","module":"","asU32":18080460},{"index":15,"address":"0x113e298","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x113e29c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x113e2a0","value":"0x113e368","module":"","asU32":18080616,"bstr":{"ptr":"0x113e368","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x113e2a4","value":"0x113e344","module":"","asU32":18080580,"bstr":{"ptr":"0x113e344","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x113e2a8","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x113e2ac","value":"0x15ac998","module":"","asU32":22727064},{"index":21,"address":"0x113e2b0","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x113e2b4","value":"0x159012c","module":"","asU32":22610220},{"index":23,"address":"0x113e2b8","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:57:57.554Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x80004002","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.556Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c632","procFormatPrefix":"33 6c 00 00 00 00 03 00 1c 00 52 00 08 00 47 06 08 47 01 00 01 00 00 00 0a 01 04 00 0c 00 48 00 08 00 08 00 88 00 0c 00 de 17 0b 01 10 00 ec 17 13 20 14 00 06 18 70 00 18 00 08 00 33 6c 00 00","varargs":[{"index":2,"value":"0x113ec30","module":"","asU32":18082864},{"index":3,"value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x1c","module":"","asU32":28},{"index":6,"value":"0x113ec28","module":"","asU32":18082856},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113ec30","module":"","asU32":18082864},{"index":9,"value":"0x3","module":"","asU32":3},{"index":10,"value":"0x113ec84","module":"","asU32":18082948},{"index":11,"value":"0x75593187","module":"combase.dll","asU32":1968779655}],"stack":[{"index":0,"address":"0x113ebfc","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113ec00","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113ec04","value":"0x7553c632","module":"combase.dll","asU32":1968424498},{"index":3,"address":"0x113ec08","value":"0x113ec30","module":"","asU32":18082864},{"index":4,"address":"0x113ec0c","value":"0x75657f30","module":"combase.dll","asU32":1969585968},{"index":5,"address":"0x113ec10","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113ec14","value":"0x1c","module":"","asU32":28},{"index":7,"address":"0x113ec18","value":"0x113ec28","module":"","asU32":18082856},{"index":8,"address":"0x113ec1c","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113ec20","value":"0x113ec30","module":"","asU32":18082864},{"index":10,"address":"0x113ec24","value":"0x3","module":"","asU32":3},{"index":11,"address":"0x113ec28","value":"0x113ec84","module":"","asU32":18082948},{"index":12,"address":"0x113ec2c","value":"0x75593187","module":"combase.dll","asU32":1968779655},{"index":13,"address":"0x113ec30","value":"0x159012c","module":"","asU32":22610220},{"index":14,"address":"0x113ec34","value":"0x113ec6c","module":"","asU32":18082924},{"index":15,"address":"0x113ec38","value":"0x5","module":"","asU32":5},{"index":16,"address":"0x113ec3c","value":"0x1","module":"","asU32":1},{"index":17,"address":"0x113ec40","value":"0x113ed10","module":"","asU32":18083088,"bstr":{"ptr":"0x113ed10","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x113ec44","value":"0x113ece4","module":"","asU32":18083044,"bstr":{"ptr":"0x113ece4","byteLength":0,"charLength":0,"text":""}},{"index":19,"address":"0x113ec48","value":"0x7574f1ec","module":"combase.dll","asU32":1970598380},{"index":20,"address":"0x113ec4c","value":"0x15ac998","module":"","asU32":22727064},{"index":21,"address":"0x113ec50","value":"0x1","module":"","asU32":1},{"index":22,"address":"0x113ec54","value":"0x159012c","module":"","asU32":22610220},{"index":23,"address":"0x113ec58","value":"0x0","module":"","asU32":0}],"time":"2026-04-25T10:57:57.562Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c632","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.563Z"} +{"event":"ndr.client.enter","callerModule":"RPCRT4.dll","stubDesc":"0x75516db8","procFormat":"0x755362b8","procFormatPrefix":"00 68 00 00 00 00 07 00 24 00 32 00 00 00 58 00 24 00 47 08 08 47 01 00 01 00 00 00 08 00 04 00 72 01 48 01 08 00 0b 00 88 00 0c 00 34 04 0b 00 10 00 3e 04 88 00 14 00 54 04 13 00 18 00 5e 04","varargs":[{"index":2,"value":"0x113e998","module":"","asU32":18082200},{"index":3,"value":"0x113e9c4","module":"","asU32":18082244,"bstr":{"ptr":"0x113e9c4","byteLength":20,"charLength":10,"text":"\ue9e8\u0113\u7a09\u755f\ue9e0\u0113\uea14\u0113\uea18\u0113"}},{"index":4,"value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":5,"value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":6,"value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":7,"value":"0x1585848","module":"","asU32":22566984},{"index":8,"value":"0x1584e80","module":"","asU32":22564480},{"index":9,"value":"0x113e9e0","module":"","asU32":18082272},{"index":10,"value":"0x0","module":"","asU32":0},{"index":11,"value":"0x113eab8","module":"","asU32":18082488}],"stack":[{"index":0,"address":"0x113e978","value":"0x76fc49b4","module":"RPCRT4.dll","asU32":1996245428,"bstr":{"ptr":"0x76fc49b4","byteLength":3404,"charLength":1702,"text":"\uc483\u5d0c\uccc3\ucccc\ucccc\ucccc\uff8b\u8b55\u6aec\u68fe\u1360\u7706\u3068\uffee\u6476¡"}},{"index":1,"address":"0x113e97c","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":2,"address":"0x113e980","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":3,"address":"0x113e984","value":"0x113e998","module":"","asU32":18082200},{"index":4,"address":"0x113e988","value":"0x113e9c4","module":"","asU32":18082244,"bstr":{"ptr":"0x113e9c4","byteLength":20,"charLength":10,"text":"\ue9e8\u0113\u7a09\u755f\ue9e0\u0113\uea14\u0113\uea18\u0113"}},{"index":5,"address":"0x113e98c","value":"0x755f7afd","module":"combase.dll","asU32":1969191677},{"index":6,"address":"0x113e990","value":"0x75516db8","module":"combase.dll","asU32":1968270776},{"index":7,"address":"0x113e994","value":"0x755362b8","module":"combase.dll","asU32":1968399032},{"index":8,"address":"0x113e998","value":"0x1585848","module":"","asU32":22566984},{"index":9,"address":"0x113e99c","value":"0x1584e80","module":"","asU32":22564480},{"index":10,"address":"0x113e9a0","value":"0x113e9e0","module":"","asU32":18082272},{"index":11,"address":"0x113e9a4","value":"0x0","module":"","asU32":0},{"index":12,"address":"0x113e9a8","value":"0x113eab8","module":"","asU32":18082488},{"index":13,"address":"0x113e9ac","value":"0x14","module":"","asU32":20},{"index":14,"address":"0x113e9b0","value":"0x113ea18","module":"","asU32":18082328,"bstr":{"ptr":"0x113ea18","byteLength":20,"charLength":10,"text":""}},{"index":15,"address":"0x113e9b4","value":"0x113ea14","module":"","asU32":18082324,"bstr":{"ptr":"0x113ea14","byteLength":0,"charLength":0,"text":""}},{"index":16,"address":"0x113e9b8","value":"0x0","module":"","asU32":0},{"index":17,"address":"0x113e9bc","value":"0x1578a88","module":"","asU32":22514312},{"index":18,"address":"0x113e9c0","value":"0x14","module":"","asU32":20},{"index":19,"address":"0x113e9c4","value":"0x113e9e8","module":"","asU32":18082280},{"index":20,"address":"0x113e9c8","value":"0x755f7a09","module":"combase.dll","asU32":1969191433},{"index":21,"address":"0x113e9cc","value":"0x113e9e0","module":"","asU32":18082272},{"index":22,"address":"0x113e9d0","value":"0x113ea14","module":"","asU32":18082324,"bstr":{"ptr":"0x113ea14","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x113e9d4","value":"0x113ea18","module":"","asU32":18082328,"bstr":{"ptr":"0x113ea18","byteLength":20,"charLength":10,"text":""}}],"time":"2026-04-25T10:57:57.575Z"}callback_objref_size=366 + +callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B0127468002000005000000109830BCAE3321FB5996FBFB44B785FE02D0000078A1FFFFECF723EDD342BACE95007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E00{"event":"ndr.client.leave","callerModule":"RPCRT4.dll","procFormat":"0x755362b8","retval":"0x0","lastBstrMarshalLength":0,"surroundingStubHex":"","time":"2026-04-25T10:57:57.576Z"} +30002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000310061003A0032006400610034003A0061006200640030003A006600350030006100000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +register.begin +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417775a","procFormatPrefix":"33 6c 00 00 00 00 0a 00 18 00 10 00 08 00 46 05 08 05 00 00 01 00 00 00 48 00 04 00 08 00 8b 00 08 00 2c 00 48 00 0c 00 08 00 0b 00 10 00 36 00 70 00 14 00 08 00 33 6c 00 00 00 00 0b 00 18 00","varargs":[{"index":2,"value":"0x113ef6c","module":"","asU32":18083692},{"index":3,"value":"0x3c73d60","module":"","asU32":63389024,"bstr":{"ptr":"0x3c73d60","byteLength":0,"charLength":0,"text":""}},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x113ef64","module":"","asU32":18083684,"bstr":{"ptr":"0x113ef64","byteLength":10,"charLength":5,"text":"\uf010\u0113\u1951\u03b3\uffc4"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113ef6c","module":"","asU32":18083692},{"index":9,"value":"0xa","module":"","asU32":10},{"index":10,"value":"0x113f010","module":"","asU32":18083856},{"index":11,"value":"0x3b31951","module":"","asU32":62069073}],"stack":[{"index":0,"address":"0x113ef38","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113ef3c","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x113ef40","value":"0x6417775a","module":"NmxSvcps.dll","asU32":1679259482},{"index":3,"address":"0x113ef44","value":"0x113ef6c","module":"","asU32":18083692},{"index":4,"address":"0x113ef48","value":"0x3c73d60","module":"","asU32":63389024,"bstr":{"ptr":"0x3c73d60","byteLength":0,"charLength":0,"text":""}},{"index":5,"address":"0x113ef4c","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113ef50","value":"0x18","module":"","asU32":24},{"index":7,"address":"0x113ef54","value":"0x113ef64","module":"","asU32":18083684,"bstr":{"ptr":"0x113ef64","byteLength":10,"charLength":5,"text":"\uf010\u0113\u1951\u03b3\uffc4"}},{"index":8,"address":"0x113ef58","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113ef5c","value":"0x113ef6c","module":"","asU32":18083692},{"index":10,"address":"0x113ef60","value":"0xa","module":"","asU32":10},{"index":11,"address":"0x113ef64","value":"0x113f010","module":"","asU32":18083856},{"index":12,"address":"0x113ef68","value":"0x3b31951","module":"","asU32":62069073},{"index":13,"address":"0x113ef6c","value":"0x158ffc4","module":"","asU32":22609860},{"index":14,"address":"0x113ef70","value":"0x7108","module":"","asU32":28936},{"index":15,"address":"0x113ef74","value":"0x113ef84","module":"","asU32":18083716,"bstr":{"ptr":"0x113ef84","byteLength":28,"charLength":14,"text":"NmxCallbackX86"}},{"index":16,"address":"0x113ef78","value":"0x6","module":"","asU32":6},{"index":17,"address":"0x113ef7c","value":"0x66f0030","module":"","asU32":107937840},{"index":18,"address":"0x113ef80","value":"0x1c","module":"","asU32":28},{"index":19,"address":"0x113ef84","value":"0x6d004e","module":"","asU32":7143502},{"index":20,"address":"0x113ef88","value":"0x430078","module":"","asU32":4391032},{"index":21,"address":"0x113ef8c","value":"0x6c0061","module":"","asU32":7077985},{"index":22,"address":"0x113ef90","value":"0x62006c","module":"","asU32":6422636},{"index":23,"address":"0x113ef94","value":"0x630061","module":"","asU32":6488161}],"time":"2026-04-25T10:57:57.594Z"} +{"event":"bstr.usermarshal.enter","callerModule":"RPCRT4.dll","flags":"0x113eab4","buffer":"0x15b6b80","bstrSlot":"0x113ef74","bstr":{"ptr":"0x113ef84","byteLength":28,"charLength":14,"text":"NmxCallbackX86"},"time":"2026-04-25T10:57:57.596Z"}register.ok + +{"event":"bstr.usermarshal.leave","callerModule":"RPCRT4.dll","buffer":"0x15b6b80","retval":"0x15b6ba8","marshaledLength":40,"marshaledHex":"0e 00 00 00 1c 00 00 00 0e 00 00 00 4e 00 6d 00 78 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00","time":"2026-04-25T10:57:57.597Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417775a","retval":"0x0","lastBstrMarshalLength":40,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 71 00 00 55 73 65 72 0e 00 00 00 1c 00 00 00 0e 00 00 00 4e 00 6d 00 78 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00 06 00 00 00 00 00 02 00 44 00 00 00 44 00 00 00 4d 45 4f 57 01 00 00 00 f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 80 02 00 00 05 00 00 00 10 98 30 bc ae 33 21 fb 59 96 fb fb 44 b7 85 fe 02 d0 00 00 78 a1 ff ff ec f7 23 ed d3 42 ba ce 00 00 00 00 eb 01 00 00 ee 01 00 00 f1 01 00 00 f4 01 00 00 f7 01 00 00 fa 01 00 00 fd 01 00 00 00 02 00 00","time":"2026-04-25T10:57:57.601Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x64177790","procFormatPrefix":"33 6c 00 00 00 00 0b 00 18 00 18 00 24 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00 08 00 48 00 08 00 08 00 48 00 0c 00 08 00 50 21 10 00 08 00 70 00 14 00 08 00 33 6c 00 00 00 00 03 00 18 00","varargs":[{"index":2,"value":"0x113efa4","module":"","asU32":18083748},{"index":3,"value":"0x1","module":"","asU32":1},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0x18","module":"","asU32":24},{"index":6,"value":"0x113ef9c","module":"","asU32":18083740},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113efa4","module":"","asU32":18083748},{"index":9,"value":"0xb","module":"","asU32":11},{"index":10,"value":"0x113f010","module":"","asU32":18083856},{"index":11,"value":"0x3b31ab5","module":"","asU32":62069429}],"stack":[{"index":0,"address":"0x113ef70","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113ef74","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x113ef78","value":"0x64177790","module":"NmxSvcps.dll","asU32":1679259536},{"index":3,"address":"0x113ef7c","value":"0x113efa4","module":"","asU32":18083748},{"index":4,"address":"0x113ef80","value":"0x1","module":"","asU32":1},{"index":5,"address":"0x113ef84","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113ef88","value":"0x18","module":"","asU32":24},{"index":7,"address":"0x113ef8c","value":"0x113ef9c","module":"","asU32":18083740},{"index":8,"address":"0x113ef90","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113ef94","value":"0x113efa4","module":"","asU32":18083748},{"index":10,"address":"0x113ef98","value":"0xb","module":"","asU32":11},{"index":11,"address":"0x113ef9c","value":"0x113f010","module":"","asU32":18083856},{"index":12,"address":"0x113efa0","value":"0x3b31ab5","module":"","asU32":62069429},{"index":13,"address":"0x113efa4","value":"0x158ffc4","module":"","asU32":22609860},{"index":14,"address":"0x113efa8","value":"0x1","module":"","asU32":1},{"index":15,"address":"0x113efac","value":"0x1","module":"","asU32":1},{"index":16,"address":"0x113efb0","value":"0x7ffd","module":"","asU32":32765},{"index":17,"address":"0x113efb4","value":"0x113f0ec","module":"","asU32":18084076,"bstr":{"ptr":"0x113f0ec","byteLength":0,"charLength":0,"text":""}},{"index":18,"address":"0x113efb8","value":"0x568b5529","module":"","asU32":1451971881},{"index":19,"address":"0x113efbc","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":20,"address":"0x113efc0","value":"0x113f29c","module":"","asU32":18084508},{"index":21,"address":"0x113efc4","value":"0x14","module":"","asU32":20},{"index":22,"address":"0x113efc8","value":"0x113efa4","module":"","asU32":18083748},{"index":23,"address":"0x113efcc","value":"0x3b31ab5","module":"","asU32":62069429}],"time":"2026-04-25T10:57:57.607Z"}partner_version=6 + +unregister.begin +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x64177790","retval":"0x0","lastBstrMarshalLength":40,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 71 00 00 55 73 65 72 0e 00 00 00 1c 00 00 00 0e 00 00 00 4e 00 6d 00 78 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00 06 00 00 00 00 00 02 00 44 00 00 00 44 00 00 00 4d 45 4f 57 01 00 00 00 f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 80 02 00 00 05 00 00 00 10 98 30 bc ae 33 21 fb 59 96 fb fb 44 b7 85 fe 02 d0 00 00 78 a1 ff ff ec f7 23 ed d3 42 ba ce 00 00 00 00 eb 01 00 00 ee 01 00 00 f1 01 00 00 f4 01 00 00 f7 01 00 00 fa 01 00 00 fd 01 00 00 00 02 00 00","time":"2026-04-25T10:57:57.610Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x641779b8","procFormat":"0x6417762e","procFormatPrefix":"33 6c 00 00 00 00 04 00 0c 00 08 00 08 00 44 02 08 01 00 00 00 00 00 00 48 00 04 00 08 00 70 00 08 00 08 00 33 6c 00 00 00 00 05 00 18 00 20 00 08 00 44 05 08 01 00 00 00 00 00 00 48 00 04 00","varargs":[{"index":2,"value":"0x113efc0","module":"","asU32":18083776},{"index":3,"value":"0x7108","module":"","asU32":28936},{"index":4,"value":"0x0","module":"","asU32":0},{"index":5,"value":"0xc","module":"","asU32":12},{"index":6,"value":"0x113efb8","module":"","asU32":18083768,"bstr":{"ptr":"0x113efb8","byteLength":4,"charLength":2,"text":"\uf01c\u0113"}},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113efc0","module":"","asU32":18083776},{"index":9,"value":"0x4","module":"","asU32":4},{"index":10,"value":"0x113f01c","module":"","asU32":18083868},{"index":11,"value":"0x3b31bcd","module":"","asU32":62069709}],"stack":[{"index":0,"address":"0x113ef8c","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113ef90","value":"0x641779b8","module":"NmxSvcps.dll","asU32":1679260088,"bstr":{"ptr":"0x641779b8","byteLength":486,"charLength":243,"text":""}},{"index":2,"address":"0x113ef94","value":"0x6417762e","module":"NmxSvcps.dll","asU32":1679259182},{"index":3,"address":"0x113ef98","value":"0x113efc0","module":"","asU32":18083776},{"index":4,"address":"0x113ef9c","value":"0x7108","module":"","asU32":28936},{"index":5,"address":"0x113efa0","value":"0x0","module":"","asU32":0},{"index":6,"address":"0x113efa4","value":"0xc","module":"","asU32":12},{"index":7,"address":"0x113efa8","value":"0x113efb8","module":"","asU32":18083768,"bstr":{"ptr":"0x113efb8","byteLength":4,"charLength":2,"text":"\uf01c\u0113"}},{"index":8,"address":"0x113efac","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113efb0","value":"0x113efc0","module":"","asU32":18083776},{"index":10,"address":"0x113efb4","value":"0x4","module":"","asU32":4},{"index":11,"address":"0x113efb8","value":"0x113f01c","module":"","asU32":18083868},{"index":12,"address":"0x113efbc","value":"0x3b31bcd","module":"","asU32":62069709},{"index":13,"address":"0x113efc0","value":"0x158ffc4","module":"","asU32":22609860},{"index":14,"address":"0x113efc4","value":"0x7108","module":"","asU32":28936},{"index":15,"address":"0x113efc8","value":"0x568b5529","module":"","asU32":1451971881},{"index":16,"address":"0x113efcc","value":"0x74794704","module":"clr.dll","asU32":1954105092},{"index":17,"address":"0x113efd0","value":"0x113f29c","module":"","asU32":18084508},{"index":18,"address":"0x113efd4","value":"0x8","module":"","asU32":8},{"index":19,"address":"0x113efd8","value":"0x113efc0","module":"","asU32":18083776},{"index":20,"address":"0x113efdc","value":"0x3b31bcd","module":"","asU32":62069709},{"index":21,"address":"0x113efe0","value":"0x113f01c","module":"","asU32":18083868},{"index":22,"address":"0x113efe4","value":"0x3a94f0c","module":"","asU32":61427468,"bstr":{"ptr":"0x3a94f0c","byteLength":0,"charLength":0,"text":""}},{"index":23,"address":"0x113efe8","value":"0x3c74e8c","module":"","asU32":63393420}],"time":"2026-04-25T10:57:57.619Z"}unregister.ok + +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x6417762e","retval":"0x0","lastBstrMarshalLength":40,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 71 00 00 55 73 65 72 0e 00 00 00 1c 00 00 00 0e 00 00 00 4e 00 6d 00 78 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00 06 00 00 00 00 00 02 00 44 00 00 00 44 00 00 00 4d 45 4f 57 01 00 00 00 f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 80 02 00 00 05 00 00 00 10 98 30 bc ae 33 21 fb 59 96 fb fb 44 b7 85 fe 02 d0 00 00 78 a1 ff ff ec f7 23 ed d3 42 ba ce 00 00 00 00 eb 01 00 00 ee 01 00 00 f1 01 00 00 f4 01 00 00 f7 01 00 00 fa 01 00 00 fd 01 00 00 00 02 00 00","time":"2026-04-25T10:57:57.623Z"} +{"event":"ndr.client.enter","callerModule":"combase.dll","stubDesc":"0x7551a860","procFormat":"0x7553c69e","procFormatPrefix":"33 6c 00 00 00 00 05 00 10 00 06 00 08 00 46 03 08 45 00 00 01 00 00 00 48 00 04 00 06 00 0b 00 08 00 96 18 70 00 0c 00 08 00 33 6c 00 00 00 00 03 00 18 00 52 00 08 00 66 05 08 45 00 00 01 00","varargs":[{"index":2,"value":"0x113ec4c","module":"","asU32":18082892},{"index":3,"value":"0x15786b8","module":"","asU32":22513336},{"index":4,"value":"0x2","module":"","asU32":2},{"index":5,"value":"0x10","module":"","asU32":16},{"index":6,"value":"0x113ec44","module":"","asU32":18082884},{"index":7,"value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":8,"value":"0x113ec4c","module":"","asU32":18082892},{"index":9,"value":"0x5","module":"","asU32":5},{"index":10,"value":"0x113ed90","module":"","asU32":18083216},{"index":11,"value":"0x755acab0","module":"combase.dll","asU32":1968884400}],"stack":[{"index":0,"address":"0x113ec18","value":"0x7565ff80","module":"combase.dll","asU32":1969618816},{"index":1,"address":"0x113ec1c","value":"0x7551a860","module":"combase.dll","asU32":1968285792},{"index":2,"address":"0x113ec20","value":"0x7553c69e","module":"combase.dll","asU32":1968424606},{"index":3,"address":"0x113ec24","value":"0x113ec4c","module":"","asU32":18082892},{"index":4,"address":"0x113ec28","value":"0x15786b8","module":"","asU32":22513336},{"index":5,"address":"0x113ec2c","value":"0x2","module":"","asU32":2},{"index":6,"address":"0x113ec30","value":"0x10","module":"","asU32":16},{"index":7,"address":"0x113ec34","value":"0x113ec44","module":"","asU32":18082884},{"index":8,"address":"0x113ec38","value":"0x75657f1f","module":"combase.dll","asU32":1969585951},{"index":9,"address":"0x113ec3c","value":"0x113ec4c","module":"","asU32":18082892},{"index":10,"address":"0x113ec40","value":"0x5","module":"","asU32":5},{"index":11,"address":"0x113ec44","value":"0x113ed90","module":"","asU32":18083216},{"index":12,"address":"0x113ec48","value":"0x755acab0","module":"combase.dll","asU32":1968884400},{"index":13,"address":"0x113ec4c","value":"0x159012c","module":"","asU32":22610220},{"index":14,"address":"0x113ec50","value":"0x2","module":"","asU32":2},{"index":15,"address":"0x113ec54","value":"0x15b4860","module":"","asU32":22759520},{"index":16,"address":"0x113ec58","value":"0x2","module":"","asU32":2},{"index":17,"address":"0x113ec5c","value":"0x7574efb4","module":"combase.dll","asU32":1970597812},{"index":18,"address":"0x113ec60","value":"0x15ac998","module":"","asU32":22727064},{"index":19,"address":"0x113ec64","value":"0x387c580","module":"","asU32":59229568},{"index":20,"address":"0x113ec68","value":"0x0","module":"","asU32":0},{"index":21,"address":"0x113ec6c","value":"0x159012c","module":"","asU32":22610220},{"index":22,"address":"0x113ec70","value":"0x0","module":"","asU32":0},{"index":23,"address":"0x113ec74","value":"0x159012c","module":"","asU32":22610220}],"time":"2026-04-25T10:57:57.631Z"} +{"event":"ndr.client.leave","callerModule":"combase.dll","procFormat":"0x7553c69e","retval":"0x0","lastBstrMarshalLength":40,"surroundingStubHex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 71 00 00 55 73 65 72 0e 00 00 00 1c 00 00 00 0e 00 00 00 4e 00 6d 00 78 00 43 00 61 00 6c 00 6c 00 62 00 61 00 63 00 6b 00 58 00 38 00 36 00 06 00 00 00 00 00 02 00 44 00 00 00 44 00 00 00 4d 45 4f 57 01 00 00 00 f7 92 9f b4 48 c7 69 41 8e ca a0 67 0b 01 27 46 80 02 00 00 05 00 00 00 10 98 30 bc ae 33 21 fb 59 96 fb fb 44 b7 85 fe 02 d0 00 00 78 a1 ff ff ec f7 23 ed d3 42 ba ce 00 00 00 00 eb 01 00 00 ee 01 00 00 f1 01 00 00 f4 01 00 00 f7 01 00 00 fa 01 00 00 fd 01 00 00 00 02 00 00","time":"2026-04-25T10:57:57.633Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/055-managed-callback-route-service-trace/nmxsvc-frida.stderr.txt b/captures/055-managed-callback-route-service-trace/nmxsvc-frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/055-managed-callback-route-service-trace/nmxsvc-frida.stdout.jsonl b/captures/055-managed-callback-route-service-trace/nmxsvc-frida.stdout.jsonl new file mode 100644 index 0000000..3dc0829 --- /dev/null +++ b/captures/055-managed-callback-route-service-trace/nmxsvc-frida.stdout.jsonl @@ -0,0 +1,1527 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Attaching... +{"event":"script.loaded","process":13944,"arch":"ia32","pointerSize":4,"time":"2026-04-25T15:57:20.948Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CFMCCallback.DataReceived","base":"0x9a0000","rva":"0x5be1","address":"0x9a5be1","time":"2026-04-25T15:57:20.949Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","base":"0x9a0000","rva":"0x1807f","address":"0x9b807f","time":"2026-04-25T15:57:20.949Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","base":"0x9a0000","rva":"0x1d910","address":"0x9bd910","time":"2026-04-25T15:57:20.949Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.TransferData","base":"0x9a0000","rva":"0x1dcb5","address":"0x9bdcb5","time":"2026-04-25T15:57:20.950Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","base":"0x9a0000","rva":"0x1eea5","address":"0x9beea5","time":"2026-04-25T15:57:20.950Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxService.TransferData","base":"0x9a0000","rva":"0x21b20","address":"0x9c1b20","time":"2026-04-25T15:57:20.951Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"send","address":"0x766158a0","time":"2026-04-25T15:57:20.951Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"recv","address":"0x766123a0","time":"2026-04-25T15:57:20.952Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"sendto","address":"0x76616160","time":"2026-04-25T15:57:20.952Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"recvfrom","address":"0x76615ab0","time":"2026-04-25T15:57:20.952Z"} +[Local::PID::13944 ]-> {"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f6374","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f6374","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x52070e8","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:20.999Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x18f6374","0x24a707c5","0x17ee8a0","0x52070e4","0x5207040","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f6374","0x24a707c5","0x17ee8a0","0x52070e4","0x5207040","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.006Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18f6374","0x0","0x24a70775","0x18f6374","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f6374","0x0","0x24a70775","0x18f6374","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:21.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18f6374","0x0","0x24a708bd","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f6374","0x0","0x24a708bd","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f6374","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.021Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18fc9a4","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18fc9a4","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.029Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x18fc9a4","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18fc9a4","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.036Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18fc9a4","0x0","0x24a70775","0x18fc9a4","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18fc9a4","0x0","0x24a70775","0x18fc9a4","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:21.043Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18fc9a4","0x0","0x24a708bd","0x18fc9a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18fc9a4","0x0","0x24a708bd","0x18fc9a4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18fc9a4","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18fc9a4","hex":"01 00 34 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 4d 0f 33 cc d4 dc 01 06 0a 00 00 00 50 4d 0f 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.049Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.050Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.050Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.050Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.050Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e31f0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.090Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x517d2f4","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x517d2f4","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x517d2f4","0x0","0x24a70775","0x517d2f4","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517d2f4","0x0","0x24a70775","0x517d2f4","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:21.104Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x517d2f4","0x0","0x24a708bd","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517d2f4","0x0","0x24a708bd","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 44 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.108Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x195cf0c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x195cf0c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.119Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51f533c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51f533c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.127Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.128Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.128Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.128Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.128Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x195cf0c","0x255c006d","0x85ef38","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x195cf0c","0x255c006d","0x85ef38","0x18e2094","0x18e1ff0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.135Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x195cf0c","0x0","0x255c019d","0x195cf0c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x195cf0c","0x0","0x255c019d","0x195cf0c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:21.142Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x195cf0c","0x0","0x255c0125","0x195cf0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x195cf0c","0x0","0x255c0125","0x195cf0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195cf0c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 1b 27 33 cc d4 dc 01 06 0a 00 00 00 10 1b 27 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.148Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.149Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.149Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.149Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.149Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x51f533c","0x27e7023d","0x23eed68","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51f533c","0x27e7023d","0x23eed68","0x18e1504","0x18e1460","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.156Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51f533c","0x0","0x27e703ad","0x51f533c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51f533c","0x0","0x27e703ad","0x51f533c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:21.163Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51f533c","0x0","0x27e703f5","0x51f533c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51f533c","0x0","0x27e703f5","0x51f533c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51f533c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51f533c","hex":"01 00 00 00 00 00 00 00 00 00 43 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.168Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.168Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.168Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.168Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.168Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x196132c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x196132c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5204238","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.182Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x196132c","0x27e7023d","0x23eed68","0x5204234","0x5204190","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x196132c","0x27e7023d","0x23eed68","0x5204234","0x5204190","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.189Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x196132c","0x0","0x27e703ad","0x196132c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x196132c","0x0","0x27e703ad","0x196132c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:21.199Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x196132c","0x0","0x27e703f5","0x196132c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x196132c","0x0","0x27e703f5","0x196132c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x196132c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x196132c","hex":"01 00 00 00 00 00 00 00 00 00 f0 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.204Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.204Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.205Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.205Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.205Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x52070e8","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.499Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18f1f54","0x27e7023d","0x23eed68","0x52070e4","0x5207040","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x27e7023d","0x23eed68","0x52070e4","0x5207040","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.507Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18f1f54","0x0","0x27e703ad","0x18f1f54","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f1f54","0x0","0x27e703ad","0x18f1f54","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:21.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18f1f54","0x0","0x27e703f5","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f1f54","0x0","0x27e703f5","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f1f54","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.524Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.525Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.525Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.525Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.525Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f8584","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f8584","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e03b0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.536Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x18f8584","0x27e7023d","0x23eed68","0x18e03ac","0x18e0308","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18f8584","0x27e7023d","0x23eed68","0x18e03ac","0x18e0308","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.543Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18f8584","0x0","0x27e703ad","0x18f8584","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f8584","0x0","0x27e703ad","0x18f8584","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:21.550Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18f8584","0x0","0x27e703f5","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f8584","0x0","0x27e703f5","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f8584","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 98 5b 33 cc d4 dc 01 06 0a 00 00 00 90 98 5b 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.556Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.557Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.557Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.557Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.557Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b5914","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b5914","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5208240","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.598Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18b5914","0x27e7023d","0x23eed68","0x520823c","0x5208198","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b5914","0x27e7023d","0x23eed68","0x520823c","0x5208198","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.605Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b5914","0x0","0x27e703ad","0x18b5914","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b5914","0x0","0x27e703ad","0x18b5914","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:21.611Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b5914","0x0","0x27e703f5","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b5914","0x0","0x27e703f5","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b5914","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 8d 73 33 cc d4 dc 01 06 0a 00 00 00 60 8d 73 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:21.617Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.617Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.617Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.617Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.618Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.640Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x18be154","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18be154","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.647Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:21.654Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18be154","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 46 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.659Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x5183924","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x5183924","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18798a0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.667Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.667Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.668Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.668Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.668Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x5183924","0x255c006d","0x85ef38","0x187989c","0x18797f8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5183924","0x255c006d","0x85ef38","0x187989c","0x18797f8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.674Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:21.680Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5183924","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 45 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.684Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.685Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.685Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.685Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.685Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18f0e4c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18f0e4c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:21.695Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x18f0e4c","0x255c006d","0x85ef38","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18f0e4c","0x255c006d","0x85ef38","0x18e1acc","0x18e1a28","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.701Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18f0e4c","0x0","0x255c019d","0x18f0e4c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f0e4c","0x0","0x255c019d","0x18f0e4c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:21.707Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18f0e4c","0x0","0x255c0125","0x18f0e4c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f0e4c","0x0","0x255c0125","0x18f0e4c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f0e4c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f0e4c","hex":"01 00 00 00 00 00 00 00 00 00 f1 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:21.712Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:21.712Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:21.713Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.713Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:21.713Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f4164","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f4164","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.000Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18f4164","0x255c006d","0x85ef38","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f4164","0x255c006d","0x85ef38","0x18e1acc","0x18e1a28","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.006Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18f4164","0x0","0x255c019d","0x18f4164","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f4164","0x0","0x255c019d","0x18f4164","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:22.013Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18f4164","0x0","0x255c0125","0x18f4164","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f4164","0x0","0x255c0125","0x18f4164","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f4164","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f4164","hex":"01 00 34 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.018Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.019Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f6374","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f6374","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x52070e8","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.130Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x18f6374","0x255c006d","0x85ef38","0x52070e4","0x5207040","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18f6374","0x255c006d","0x85ef38","0x52070e4","0x5207040","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.136Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18f6374","0x0","0x255c019d","0x18f6374","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f6374","0x0","0x255c019d","0x18f6374","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:22.142Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18f6374","0x0","0x255c0125","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f6374","0x0","0x255c0125","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f6374","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 0a a8 33 cc d4 dc 01 06 0a 00 00 00 e0 0a a8 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.147Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18fdaac","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18fdaac","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2660","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.156Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f0e4c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f0e4c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.163Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.164Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.164Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.164Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.165Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18f0e4c","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f0e4c","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.171Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18f0e4c","0x0","0x27e703ad","0x18f0e4c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f0e4c","0x0","0x27e703ad","0x18f0e4c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:22.179Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18f0e4c","0x0","0x27e703f5","0x18f0e4c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f0e4c","0x0","0x27e703f5","0x18f0e4c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f0e4c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f0e4c","hex":"01 00 34 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 2f c5 33 cc d4 dc 01 06 0a 00 00 00 d0 2f c5 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.184Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.185Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.185Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.185Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.185Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18fdaac","0x24a707c5","0x17ee8a0","0x18e265c","0x18e25b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18fdaac","0x24a707c5","0x17ee8a0","0x18e265c","0x18e25b8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.191Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18fdaac","0x0","0x24a70775","0x18fdaac","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18fdaac","0x0","0x24a70775","0x18fdaac","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:22.197Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18fdaac","0x0","0x24a708bd","0x18fdaac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18fdaac","0x0","0x24a708bd","0x18fdaac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18fdaac","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 47 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.202Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.203Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.203Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.203Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.203Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51c463c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51c463c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x1878180","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.214Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x2","0x2e","0x51c463c","0x24a707c5","0x17ee8a0","0x187817c","0x18780d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c463c","0x24a707c5","0x17ee8a0","0x187817c","0x18780d8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.219Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c463c","0x0","0x24a70775","0x51c463c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c463c","0x0","0x24a70775","0x51c463c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:22.226Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c463c","0x0","0x24a708bd","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c463c","0x0","0x24a708bd","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c463c","hex":"01 00 00 00 00 00 00 00 00 00 f2 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.230Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.231Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.231Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.231Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.231Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.240Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18b6a1c","0x24a707c5","0x17ee8a0","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b6a1c","0x24a707c5","0x17ee8a0","0x520995c","0x52098b8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.247Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18b6a1c","0x0","0x24a70775","0x18b6a1c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b6a1c","0x0","0x24a70775","0x18b6a1c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:22.255Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18b6a1c","0x0","0x24a708bd","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b6a1c","0x0","0x24a708bd","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 48 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.260Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.260Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.260Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.260Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.260Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x18b25fc","0x24a707c5","0x17ee8a0","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x24a707c5","0x17ee8a0","0x520995c","0x52098b8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.498Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x24a70775","0x18b25fc","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x24a70775","0x18b25fc","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:22.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18b25fc","0x0","0x24a708bd","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x24a708bd","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.511Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.511Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.512Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.512Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.512Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x196353c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x196353c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18798a0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.520Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x196353c","0x24a707c5","0x17ee8a0","0x187989c","0x18797f8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x196353c","0x24a707c5","0x17ee8a0","0x187989c","0x18797f8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x196353c","0x0","0x24a70775","0x196353c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x196353c","0x0","0x24a70775","0x196353c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:22.533Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x196353c","0x0","0x24a708bd","0x196353c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x196353c","0x0","0x24a708bd","0x196353c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x196353c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x196353c","hex":"01 00 34 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 56 f4 33 cc d4 dc 01 06 0a 00 00 00 20 56 f4 33 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.539Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.539Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c8a5c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c8a5c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x1878180","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.568Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51c8a5c","0x24a707c5","0x17ee8a0","0x187817c","0x18780d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c8a5c","0x24a707c5","0x17ee8a0","0x187817c","0x18780d8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.574Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c8a5c","0x0","0x24a70775","0x51c8a5c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c8a5c","0x0","0x24a70775","0x51c8a5c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:22.581Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c8a5c","0x0","0x24a708bd","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c8a5c","0x0","0x24a708bd","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 4a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.586Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x517e3fc","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x517e3fc","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.594Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.594Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.595Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.595Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.602Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.603Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x517e3fc","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x517e3fc","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.609Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x517e3fc","0x0","0x27e703ad","0x517e3fc","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517e3fc","0x0","0x27e703ad","0x517e3fc","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:22.616Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x517e3fc","0x0","0x27e703f5","0x517e3fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517e3fc","0x0","0x27e703f5","0x517e3fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517e3fc","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517e3fc","hex":"01 00 00 00 00 00 00 00 00 00 49 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.621Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.621Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.622Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.622Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.622Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b6a1c","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.629Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18b6a1c","0x0","0x255c019d","0x18b6a1c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b6a1c","0x0","0x255c019d","0x18b6a1c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:22.634Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18b6a1c","0x0","0x255c0125","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b6a1c","0x0","0x255c0125","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b6a1c","hex":"01 00 34 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 23 0c 34 cc d4 dc 01 06 0a 00 00 00 e0 23 0c 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:22.640Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.640Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.641Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.641Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.641Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18f8584","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18f8584","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e03b0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:22.679Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x18f8584","0x255c006d","0x85ef38","0x18e03ac","0x18e0308","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18f8584","0x255c006d","0x85ef38","0x18e03ac","0x18e0308","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.685Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18f8584","0x0","0x255c019d","0x18f8584","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f8584","0x0","0x255c019d","0x18f8584","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:22.694Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18f8584","0x0","0x255c0125","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f8584","0x0","0x255c0125","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f8584","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 f3 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:22.698Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:22.699Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:22.699Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.699Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:22.699Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18bbf44","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18bbf44","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209398","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18bbf44","0x255c006d","0x85ef38","0x5209394","0x52092f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18bbf44","0x255c006d","0x85ef38","0x5209394","0x52092f0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.020Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18bbf44","0x0","0x255c019d","0x18bbf44","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18bbf44","0x0","0x255c019d","0x18bbf44","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:23.026Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18bbf44","0x0","0x255c0125","0x18bbf44","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18bbf44","0x0","0x255c0125","0x18bbf44","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18bbf44","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18bbf44","hex":"01 00 34 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.031Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.032Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.032Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.032Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x517f504","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x517f504","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e7518","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x517f504","0x255c006d","0x85ef38","0x18e7514","0x18e7470","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x517f504","0x255c006d","0x85ef38","0x18e7514","0x18e7470","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.046Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x517f504","0x0","0x255c019d","0x517f504","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x517f504","0x0","0x255c019d","0x517f504","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:23.053Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x517f504","0x0","0x255c0125","0x517f504","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x517f504","0x0","0x255c0125","0x517f504","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517f504","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517f504","hex":"01 00 34 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 7a 40 34 cc d4 dc 01 06 0a 00 00 00 50 7a 40 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.060Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.061Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.061Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.061Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.061Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x52070e8","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.096Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18f1f54","0x255c006d","0x85ef38","0x52070e4","0x5207040","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x255c006d","0x85ef38","0x52070e4","0x5207040","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.102Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18f1f54","0x0","0x255c019d","0x18f1f54","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f1f54","0x0","0x255c019d","0x18f1f54","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:23.108Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18f1f54","0x0","0x255c0125","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f1f54","0x0","0x255c0125","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f1f54","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 48 58 34 cc d4 dc 01 06 0a 00 00 00 10 48 58 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.113Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1962434","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1962434","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209398","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.123Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c9b64","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c9b64","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e0978","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.131Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.131Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.132Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.132Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.132Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x1962434","0x27e7023d","0x23eed68","0x5209394","0x52092f0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1962434","0x27e7023d","0x23eed68","0x5209394","0x52092f0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.137Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x1962434","0x0","0x27e703ad","0x1962434","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1962434","0x0","0x27e703ad","0x1962434","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:23.145Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x1962434","0x0","0x27e703f5","0x1962434","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1962434","0x0","0x27e703f5","0x1962434","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1962434","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 4b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.149Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.150Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.150Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.150Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.150Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e0974","0x18e08d0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e0974","0x18e08d0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.156Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:23.162Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c9b64","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 4c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.167Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.175Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.175Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.175Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x18be154","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18be154","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.181Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:23.187Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18be154","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f4 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.193Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.193Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.193Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.487Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18b480c","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b480c","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.493Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x27e703ad","0x18b480c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x27e703ad","0x18b480c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:23.499Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b480c","0x0","0x27e703f5","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x27e703f5","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x1878180","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.513Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x51bf114","0x27e7023d","0x23eed68","0x187817c","0x18780d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51bf114","0x27e7023d","0x23eed68","0x187817c","0x18780d8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.519Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51bf114","0x0","0x27e703ad","0x51bf114","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51bf114","0x0","0x27e703ad","0x51bf114","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:23.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51bf114","0x0","0x27e703f5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51bf114","0x0","0x27e703f5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 9e 8c 34 cc d4 dc 01 06 0a 00 00 00 80 9e 8c 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.530Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.531Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b5914","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b5914","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.551Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x18b5914","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b5914","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.556Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18b5914","0x0","0x27e703ad","0x18b5914","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b5914","0x0","0x27e703ad","0x18b5914","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:23.562Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18b5914","0x0","0x27e703f5","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b5914","0x0","0x27e703f5","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b5914","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 4e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.567Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18efd44","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18efd44","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e31f0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.574Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.574Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.574Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.574Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.575Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18efd44","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18efd44","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.581Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18efd44","0x0","0x24a70775","0x18efd44","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18efd44","0x0","0x24a70775","0x18efd44","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:23.587Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18efd44","0x0","0x24a708bd","0x18efd44","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18efd44","0x0","0x24a708bd","0x18efd44","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18efd44","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18efd44","hex":"01 00 00 00 00 00 00 00 00 00 4d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.592Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.593Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.593Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.593Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.593Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.601Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18b480c","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b480c","0x27e7023d","0x23eed68","0x5208dcc","0x5208d28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.607Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x27e703ad","0x18b480c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x27e703ad","0x18b480c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:23.614Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b480c","0x0","0x27e703f5","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x27e703f5","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 93 a4 34 cc d4 dc 01 06 0a 00 00 00 50 93 a4 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:23.619Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.619Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.619Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.619Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.619Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5208240","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:23.662Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x18be154","0x27e7023d","0x23eed68","0x520823c","0x5208198","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18be154","0x27e7023d","0x23eed68","0x520823c","0x5208198","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.667Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:23.674Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18be154","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 f5 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:23.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:23.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:23.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:23.680Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5208240","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.007Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x27e7023d","0x23eed68","0x520823c","0x5208198","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x27e7023d","0x23eed68","0x520823c","0x5208198","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.013Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b8c2c","0x0","0x27e703ad","0x18b8c2c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b8c2c","0x0","0x27e703ad","0x18b8c2c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:24.019Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b8c2c","0x0","0x27e703f5","0x18b8c2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b8c2c","0x0","0x27e703f5","0x18b8c2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b8c2c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.024Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.025Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.025Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.025Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.025Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f6374","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f6374","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x18f6374","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18f6374","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.038Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18f6374","0x0","0x27e703ad","0x18f6374","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f6374","0x0","0x27e703ad","0x18f6374","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:24.045Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18f6374","0x0","0x27e703f5","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f6374","0x0","0x27e703f5","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f6374","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 10 d9 34 cc d4 dc 01 06 0a 00 00 00 d0 10 d9 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.050Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.050Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.051Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.051Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.051Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18f1f54","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.103Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18f1f54","0x0","0x27e703ad","0x18f1f54","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f1f54","0x0","0x27e703ad","0x18f1f54","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:24.110Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18f1f54","0x0","0x27e703f5","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f1f54","0x0","0x27e703f5","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f1f54","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 05 f1 34 cc d4 dc 01 06 0a 00 00 00 a0 05 f1 34 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.116Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e31f0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.122Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x517d2f4","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x517d2f4","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.129Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x517d2f4","0x0","0x24a70775","0x517d2f4","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517d2f4","0x0","0x24a70775","0x517d2f4","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:24.135Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x517d2f4","0x0","0x24a708bd","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517d2f4","0x0","0x24a708bd","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 50 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.139Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18fdaac","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18fdaac","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x1878180","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.147Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.148Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.148Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.148Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.148Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x18fdaac","0x255c006d","0x85ef38","0x187817c","0x18780d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18fdaac","0x255c006d","0x85ef38","0x187817c","0x18780d8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.154Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18fdaac","0x0","0x255c019d","0x18fdaac","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18fdaac","0x0","0x255c019d","0x18fdaac","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:24.160Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18fdaac","0x0","0x255c0125","0x18fdaac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18fdaac","0x0","0x255c0125","0x18fdaac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18fdaac","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 4f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.164Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.165Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.165Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.165Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.165Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x5183924","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x5183924","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.175Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x5183924","0x255c006d","0x85ef38","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x5183924","0x255c006d","0x85ef38","0x18e6984","0x18e68e0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.180Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:24.186Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5183924","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 f6 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.192Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f8584","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f8584","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e03b0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18f8584","0x255c006d","0x85ef38","0x18e03ac","0x18e0308","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f8584","0x255c006d","0x85ef38","0x18e03ac","0x18e0308","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.497Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18f8584","0x0","0x255c019d","0x18f8584","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f8584","0x0","0x255c019d","0x18f8584","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:24.504Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18f8584","0x0","0x255c0125","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f8584","0x0","0x255c0125","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f8584","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f8584","hex":"01 00 34 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.509Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f526c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18f526c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e2660","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.519Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x18f526c","0x255c006d","0x85ef38","0x18e265c","0x18e25b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18f526c","0x255c006d","0x85ef38","0x18e265c","0x18e25b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.525Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18f526c","0x0","0x255c019d","0x18f526c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f526c","0x0","0x255c019d","0x18f526c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:24.532Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18f526c","0x0","0x255c0125","0x18f526c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f526c","0x0","0x255c0125","0x18f526c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f526c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f526c","hex":"01 00 34 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 5c 25 35 cc d4 dc 01 06 0a 00 00 00 10 5c 25 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.537Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18f968c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18f968c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e03b0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.545Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.545Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18f968c","0x24a707c5","0x17ee8a0","0x18e03ac","0x18e0308","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18f968c","0x24a707c5","0x17ee8a0","0x18e03ac","0x18e0308","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.550Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18f968c","0x0","0x24a70775","0x18f968c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f968c","0x0","0x24a70775","0x18f968c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:24.556Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18f968c","0x0","0x24a708bd","0x18f968c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f968c","0x0","0x24a708bd","0x18f968c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f968c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 51 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.561Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.562Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.562Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.562Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.562Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e31f0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.596Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.602Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c8a5c","0x0","0x24a70775","0x51c8a5c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c8a5c","0x0","0x24a70775","0x51c8a5c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:24.610Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c8a5c","0x0","0x24a708bd","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c8a5c","0x0","0x24a708bd","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 29 3d 35 cc d4 dc 01 06 0a 00 00 00 d0 29 3d 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:24.615Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.616Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.616Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.617Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.617Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x518060c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x518060c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.648Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x518060c","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x518060c","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.654Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x518060c","0x0","0x24a70775","0x518060c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x518060c","0x0","0x24a70775","0x518060c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:24.660Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x518060c","0x0","0x24a708bd","0x518060c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x518060c","0x0","0x24a708bd","0x518060c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x518060c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x518060c","hex":"01 00 00 00 00 00 00 00 00 00 52 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.664Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18f747c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18f747c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e37b8","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:24.673Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.674Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.674Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.674Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.674Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x18f747c","0x255c006d","0x85ef38","0x18e37b4","0x18e3710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18f747c","0x255c006d","0x85ef38","0x18e37b4","0x18e3710","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.681Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18f747c","0x0","0x255c019d","0x18f747c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f747c","0x0","0x255c019d","0x18f747c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:24.686Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18f747c","0x0","0x255c0125","0x18f747c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f747c","0x0","0x255c0125","0x18f747c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f747c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 f7 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:24.692Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:24.692Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:24.692Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.692Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:24.692Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18eec3c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18eec3c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e3d80","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.010Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18eec3c","0x255c006d","0x85ef38","0x18e3d7c","0x18e3cd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18eec3c","0x255c006d","0x85ef38","0x18e3d7c","0x18e3cd8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.016Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18eec3c","0x0","0x255c019d","0x18eec3c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18eec3c","0x0","0x255c019d","0x18eec3c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:25.024Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18eec3c","0x0","0x255c0125","0x18eec3c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18eec3c","0x0","0x255c0125","0x18eec3c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18eec3c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18eec3c","hex":"01 00 34 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.031Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.039Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x18b25fc","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b25fc","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.045Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x255c019d","0x18b25fc","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x255c019d","0x18b25fc","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:25.052Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18b25fc","0x0","0x255c0125","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x255c0125","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 a7 71 35 cc d4 dc 01 06 0a 00 00 00 50 a7 71 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.057Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.058Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.058Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.058Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.059Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.083Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x18b6a1c","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b6a1c","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.090Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51cac6c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51cac6c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x1878748","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2660","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.105Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18b6a1c","0x0","0x255c019d","0x18b6a1c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b6a1c","0x0","0x255c019d","0x18b6a1c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:25.111Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18b6a1c","0x0","0x255c0125","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b6a1c","0x0","0x255c0125","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 54 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.116Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.116Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.116Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.117Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.117Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51cac6c","0x24a707c5","0x17ee8a0","0x1878744","0x18786a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51cac6c","0x24a707c5","0x17ee8a0","0x1878744","0x18786a0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.122Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51cac6c","0x0","0x24a70775","0x51cac6c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cac6c","0x0","0x24a70775","0x51cac6c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:25.129Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51cac6c","0x0","0x24a708bd","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cac6c","0x0","0x24a708bd","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cac6c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 53 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.134Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.134Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.134Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.134Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.135Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18f1f54","0x27e7023d","0x23eed68","0x18e265c","0x18e25b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f1f54","0x27e7023d","0x23eed68","0x18e265c","0x18e25b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.141Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18f1f54","0x0","0x27e703ad","0x18f1f54","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f1f54","0x0","0x27e703ad","0x18f1f54","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:25.148Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18f1f54","0x0","0x27e703f5","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f1f54","0x0","0x27e703f5","0x18f1f54","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f1f54","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f1f54","hex":"01 00 34 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 75 89 35 cc d4 dc 01 06 0a 00 00 00 10 75 89 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.153Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.153Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.153Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.154Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.154Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18f6374","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18f6374","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2660","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.194Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x18f6374","0x27e7023d","0x23eed68","0x18e265c","0x18e25b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18f6374","0x27e7023d","0x23eed68","0x18e265c","0x18e25b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.200Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18f6374","0x0","0x27e703ad","0x18f6374","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f6374","0x0","0x27e703ad","0x18f6374","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:25.205Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18f6374","0x0","0x27e703f5","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f6374","0x0","0x27e703f5","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f6374","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f6374","hex":"01 00 00 00 00 00 00 00 00 00 f8 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.211Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.211Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.211Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.211Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.211Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.491Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b25fc","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.497Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b25fc","0x0","0x27e703ad","0x18b25fc","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b25fc","0x0","0x27e703ad","0x18b25fc","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:25.504Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b25fc","0x0","0x27e703f5","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b25fc","0x0","0x27e703f5","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b25fc","hex":"01 00 34 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.509Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51fa864","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51fa864","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.519Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x51fa864","0x27e7023d","0x23eed68","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51fa864","0x27e7023d","0x23eed68","0x18e1504","0x18e1460","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.524Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51fa864","0x0","0x27e703ad","0x51fa864","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51fa864","0x0","0x27e703ad","0x51fa864","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:25.531Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51fa864","0x0","0x27e703f5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51fa864","0x0","0x27e703f5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51fa864","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51fa864","hex":"01 00 34 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 cb bd 35 cc d4 dc 01 06 0a 00 00 00 80 cb bd 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.536Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b14f4","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b14f4","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208808","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.543Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.544Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.544Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18b14f4","0x24a707c5","0x17ee8a0","0x5208804","0x5208760","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b14f4","0x24a707c5","0x17ee8a0","0x5208804","0x5208760","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.550Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18b14f4","0x0","0x24a70775","0x18b14f4","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b14f4","0x0","0x24a70775","0x18b14f4","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:25.556Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18b14f4","0x0","0x24a708bd","0x18b14f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b14f4","0x0","0x24a708bd","0x18b14f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b14f4","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b14f4","hex":"01 00 00 00 00 00 00 00 00 00 55 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.560Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.561Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.561Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.561Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.561Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x1878748","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.597Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x24a707c5","0x17ee8a0","0x1878744","0x18786a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x24a707c5","0x17ee8a0","0x1878744","0x18786a0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.603Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c8a5c","0x0","0x24a70775","0x51c8a5c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c8a5c","0x0","0x24a70775","0x51c8a5c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:25.610Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c8a5c","0x0","0x24a708bd","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c8a5c","0x0","0x24a708bd","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 e7 d5 35 cc d4 dc 01 06 0a 00 00 00 60 e7 d5 35 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:25.615Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.615Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.615Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.616Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.616Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c9b64","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c9b64","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.631Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x195cf0c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x195cf0c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5206ab0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:25.638Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.644Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:25.650Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c9b64","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 56 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.655Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.655Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.655Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.655Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.655Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x195cf0c","0x27e7023d","0x23eed68","0x5206aac","0x5206a08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x195cf0c","0x27e7023d","0x23eed68","0x5206aac","0x5206a08","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.661Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x195cf0c","0x0","0x27e703ad","0x195cf0c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x195cf0c","0x0","0x27e703ad","0x195cf0c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:25.668Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x195cf0c","0x0","0x27e703f5","0x195cf0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x195cf0c","0x0","0x27e703f5","0x195cf0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195cf0c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195cf0c","hex":"01 00 00 00 00 00 00 00 00 00 f9 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:25.677Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:25.678Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:25.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:25.680Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f6374","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f6374","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.012Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18f6374","0x27e7023d","0x23eed68","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f6374","0x27e7023d","0x23eed68","0x18e1504","0x18e1460","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.021Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18f6374","0x0","0x27e703ad","0x18f6374","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f6374","0x0","0x27e703ad","0x18f6374","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18f6374","0x0","0x27e703f5","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f6374","0x0","0x27e703f5","0x18f6374","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f6374","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f6374","hex":"01 00 34 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.040Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.041Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.041Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.041Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.041Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c7954","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c7954","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18792d8","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.051Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x51c7954","0x27e7023d","0x23eed68","0x18792d4","0x1879230","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c7954","0x27e7023d","0x23eed68","0x18792d4","0x1879230","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.057Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51c7954","0x0","0x27e703ad","0x51c7954","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c7954","0x0","0x27e703ad","0x51c7954","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.063Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51c7954","0x0","0x27e703f5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c7954","0x0","0x27e703f5","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c7954","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 64 0a 36 cc d4 dc 01 06 0a 00 00 00 e0 64 0a 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.069Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18fdaac","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18fdaac","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e3d80","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.077Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18fdaac","0x24a707c5","0x17ee8a0","0x18e3d7c","0x18e3cd8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18fdaac","0x24a707c5","0x17ee8a0","0x18e3d7c","0x18e3cd8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.083Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18fdaac","0x0","0x24a70775","0x18fdaac","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18fdaac","0x0","0x24a70775","0x18fdaac","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:26.089Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18fdaac","0x0","0x24a708bd","0x18fdaac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18fdaac","0x0","0x24a708bd","0x18fdaac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18fdaac","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fdaac","hex":"01 00 00 00 00 00 00 00 00 00 57 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.094Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x1878748","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.101Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.102Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.102Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.102Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.108Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.114Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cac6c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 32 22 36 cc d4 dc 01 06 0a 00 00 00 a0 32 22 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.121Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.121Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.131Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.139Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.145Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fa 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.150Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.150Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.150Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.151Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.151Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x1878748","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.182Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x51c8a5c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c8a5c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.186Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.192Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 58 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.197Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.197Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.197Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.197Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.198Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x1878748","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.498Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.505Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cac6c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.509Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b14f4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b14f4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5206ab0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x18b14f4","0x27e7023d","0x23eed68","0x5206aac","0x5206a08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b14f4","0x27e7023d","0x23eed68","0x5206aac","0x5206a08","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.525Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b14f4","0x0","0x27e703ad","0x18b14f4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b14f4","0x0","0x27e703ad","0x18b14f4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.533Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b14f4","0x0","0x27e703f5","0x18b14f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b14f4","0x0","0x27e703f5","0x18b14f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b14f4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 b0 56 36 cc d4 dc 01 06 0a 00 00 00 20 b0 56 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.539Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.539Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.539Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.539Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.539Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x1878748","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.596Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.602Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:26.608Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 56 6e 36 cc d4 dc 01 06 0a 00 00 00 d0 56 6e 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:26.614Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.622Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18f8584","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18f8584","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5208808","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.630Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.630Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.630Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.630Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.631Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51c3534","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c3534","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.637Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c3534","0x0","0x24a70775","0x51c3534","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c3534","0x0","0x24a70775","0x51c3534","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:26.644Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c3534","0x0","0x24a708bd","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c3534","0x0","0x24a708bd","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c3534","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 5a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.650Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.650Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.650Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.651Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.651Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x18f8584","0x255c006d","0x85ef38","0x5208804","0x5208760","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18f8584","0x255c006d","0x85ef38","0x5208804","0x5208760","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.656Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18f8584","0x0","0x255c019d","0x18f8584","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f8584","0x0","0x255c019d","0x18f8584","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:26.662Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18f8584","0x0","0x255c0125","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f8584","0x0","0x255c0125","0x18f8584","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f8584","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f8584","hex":"01 00 00 00 00 00 00 00 00 00 59 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.667Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.667Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.668Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.668Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.668Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.679Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x2","0x2e","0x51c3534","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c3534","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.685Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c3534","0x0","0x24a70775","0x51c3534","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c3534","0x0","0x24a70775","0x51c3534","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:26.692Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c3534","0x0","0x24a708bd","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c3534","0x0","0x24a708bd","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c3534","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 fb 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:26.697Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:26.697Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:26.698Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.698Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:26.698Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f747c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18f747c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e37b8","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:26.999Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x18f747c","0x24a707c5","0x17ee8a0","0x18e37b4","0x18e3710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18f747c","0x24a707c5","0x17ee8a0","0x18e37b4","0x18e3710","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.006Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18f747c","0x0","0x24a70775","0x18f747c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18f747c","0x0","0x24a70775","0x18f747c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.013Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18f747c","0x0","0x24a708bd","0x18f747c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18f747c","0x0","0x24a708bd","0x18f747c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f747c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18f747c","hex":"01 00 34 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.018Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.018Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.019Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.027Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.039Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c9b64","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 fb a2 36 cc d4 dc 01 06 0a 00 00 00 60 fb a2 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.044Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.045Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18bf25c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18bf25c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e31f0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.053Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18bf25c","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18bf25c","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.059Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18bf25c","0x0","0x24a70775","0x18bf25c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18bf25c","0x0","0x24a70775","0x18bf25c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.065Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18bf25c","0x0","0x24a708bd","0x18bf25c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18bf25c","0x0","0x24a708bd","0x18bf25c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18bf25c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18bf25c","hex":"01 00 00 00 00 00 00 00 00 00 5c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.069Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18f968c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18f968c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5208808","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.078Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x18f968c","0x255c006d","0x85ef38","0x5208804","0x5208760","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18f968c","0x255c006d","0x85ef38","0x5208804","0x5208760","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.083Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18f968c","0x0","0x255c019d","0x18f968c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f968c","0x0","0x255c019d","0x18f968c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:27.090Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18f968c","0x0","0x255c0125","0x18f968c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f968c","0x0","0x255c0125","0x18f968c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f968c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f968c","hex":"01 00 00 00 00 00 00 00 00 00 5b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.094Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c5744","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c5744","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.102Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.102Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.102Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.103Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.103Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c5744","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c5744","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.109Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c5744","0x0","0x24a70775","0x51c5744","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c5744","0x0","0x24a70775","0x51c5744","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.115Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c5744","0x0","0x24a708bd","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c5744","0x0","0x24a708bd","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c5744","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 a2 ba 36 cc d4 dc 01 06 0a 00 00 00 10 a2 ba 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.121Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.121Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.121Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.121Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51c9b64","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51c9b64","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.166Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x2","0x2e","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.172Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.177Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c9b64","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c9b64","hex":"01 00 00 00 00 00 00 00 00 00 fc 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.182Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.182Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.182Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.183Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.183Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.483Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.489Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.496Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c9b64","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.502Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.502Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.502Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.502Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.502Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51af524","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51af524","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5206ab0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x51af524","0x24a707c5","0x17ee8a0","0x5206aac","0x5206a08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51af524","0x24a707c5","0x17ee8a0","0x5206aac","0x5206a08","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.517Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51af524","0x0","0x24a70775","0x51af524","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51af524","0x0","0x24a70775","0x51af524","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.523Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51af524","0x0","0x24a708bd","0x51af524","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51af524","0x0","0x24a708bd","0x51af524","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51af524","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51af524","hex":"01 00 34 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 80 f8 ee 36 cc d4 dc 01 06 0a 00 00 00 80 f8 ee 36 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.529Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.530Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.530Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.530Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.530Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c463c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c463c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.598Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c463c","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c463c","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.604Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c463c","0x0","0x24a70775","0x51c463c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c463c","0x0","0x24a70775","0x51c463c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:27.610Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c463c","0x0","0x24a708bd","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c463c","0x0","0x24a708bd","0x51c463c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c463c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c463c","hex":"01 00 34 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 70 3b 07 37 cc d4 dc 01 06 0a 00 00 00 60 14 07 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:27.615Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b25fc","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b25fc","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.622Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c684c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c684c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.630Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.631Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.631Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.631Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.631Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x18b25fc","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b25fc","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.637Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18b25fc","0x0","0x27e703ad","0x18b25fc","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b25fc","0x0","0x27e703ad","0x18b25fc","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:27.643Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18b25fc","0x0","0x27e703f5","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b25fc","0x0","0x27e703f5","0x18b25fc","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b25fc","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b25fc","hex":"01 00 00 00 00 00 00 00 00 00 5d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.647Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.648Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.648Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.648Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.648Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x51c684c","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c684c","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.654Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x51c684c","0x0","0x255c019d","0x51c684c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c684c","0x0","0x255c019d","0x51c684c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:27.661Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x51c684c","0x0","0x255c0125","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c684c","0x0","0x255c0125","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 5e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.666Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x195f11c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x195f11c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x1878180","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:27.673Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.674Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.674Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.674Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.674Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x195f11c","0x27e7023d","0x23eed68","0x187817c","0x18780d8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x195f11c","0x27e7023d","0x23eed68","0x187817c","0x18780d8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.679Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x195f11c","0x0","0x27e703ad","0x195f11c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x195f11c","0x0","0x27e703ad","0x195f11c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:27.685Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x195f11c","0x0","0x27e703f5","0x195f11c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x195f11c","0x0","0x27e703f5","0x195f11c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195f11c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195f11c","hex":"01 00 00 00 00 00 00 00 00 00 fd 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:27.690Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:27.691Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:27.691Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.691Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:27.691Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.019Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:28.026Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.031Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.031Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.031Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.031Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.039Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.045Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:28.051Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cac6c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 91 3b 37 cc d4 dc 01 06 0a 00 00 00 e0 91 3b 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.057Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.057Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.057Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.057Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x51c684c","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c684c","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.103Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51c684c","0x0","0x27e703ad","0x51c684c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c684c","0x0","0x27e703ad","0x51c684c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:28.109Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51c684c","0x0","0x27e703f5","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c684c","0x0","0x27e703f5","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 90 38 53 37 cc d4 dc 01 06 0a 00 00 00 90 38 53 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.115Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51fa864","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51fa864","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5205f20","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.151Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1960224","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1960224","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e63c0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.158Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x51fa864","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51fa864","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.164Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51fa864","0x0","0x27e703ad","0x51fa864","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51fa864","0x0","0x27e703ad","0x51fa864","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:28.169Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51fa864","0x0","0x27e703f5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51fa864","0x0","0x27e703f5","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51fa864","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 60 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.175Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.175Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x1960224","0x255c006d","0x85ef38","0x18e63bc","0x18e6318","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1960224","0x255c006d","0x85ef38","0x18e63bc","0x18e6318","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.180Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x1960224","0x0","0x255c019d","0x1960224","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1960224","0x0","0x255c019d","0x1960224","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:28.186Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x1960224","0x0","0x255c0125","0x1960224","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1960224","0x0","0x255c0125","0x1960224","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1960224","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1960224","hex":"01 00 00 00 00 00 00 00 00 00 5f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.192Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18256c4","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18256c4","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.201Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x18256c4","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18256c4","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.207Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x18256c4","0x0","0x255c019d","0x18256c4","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18256c4","0x0","0x255c019d","0x18256c4","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:28.213Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x18256c4","0x0","0x255c0125","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18256c4","0x0","0x255c0125","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 fe 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.218Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.218Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.219Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.219Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.219Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.487Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18b03ec","0x255c006d","0x85ef38","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x255c006d","0x85ef38","0x18e6984","0x18e68e0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.493Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18b03ec","0x0","0x255c019d","0x18b03ec","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b03ec","0x0","0x255c019d","0x18b03ec","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:28.499Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18b03ec","0x0","0x255c0125","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b03ec","0x0","0x255c0125","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18256c4","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18256c4","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.513Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x18256c4","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18256c4","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.520Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18256c4","0x0","0x255c019d","0x18256c4","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18256c4","0x0","0x255c019d","0x18256c4","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:28.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18256c4","0x0","0x255c0125","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18256c4","0x0","0x255c0125","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 b6 87 37 cc d4 dc 01 06 0a 00 00 00 10 b6 87 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.531Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x195e014","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x195e014","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.587Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51c684c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51c684c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.594Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x195e014","0x255c006d","0x85ef38","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x195e014","0x255c006d","0x85ef38","0x18e6984","0x18e68e0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.599Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x195e014","0x0","0x255c019d","0x195e014","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x195e014","0x0","0x255c019d","0x195e014","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:28.606Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x195e014","0x0","0x255c0125","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x195e014","0x0","0x255c0125","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195e014","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 62 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.610Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.617Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.618Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.618Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.618Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.618Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x51c684c","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c684c","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.624Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51c684c","0x0","0x27e703ad","0x51c684c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c684c","0x0","0x27e703ad","0x51c684c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:28.631Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51c684c","0x0","0x27e703f5","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c684c","0x0","0x27e703f5","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 61 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.636Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.636Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.637Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.637Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.637Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.643Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:28.650Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c9b64","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 83 9f 37 cc d4 dc 01 06 0a 00 00 00 d0 83 9f 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:28.655Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.655Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.655Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.656Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.656Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18b5914","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18b5914","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:28.692Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x2","0x2e","0x18b5914","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b5914","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.697Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18b5914","0x0","0x24a70775","0x18b5914","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b5914","0x0","0x24a70775","0x18b5914","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:28.704Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18b5914","0x0","0x24a708bd","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b5914","0x0","0x24a708bd","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b5914","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b5914","hex":"01 00 00 00 00 00 00 00 00 00 ff 81 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:28.709Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:28.709Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:28.709Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.709Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:28.710Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b480c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.003Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x18b480c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b480c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.008Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x24a70775","0x18b480c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x24a70775","0x18b480c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:29.015Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18b480c","0x0","0x24a708bd","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x24a708bd","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.021Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.021Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c5744","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c5744","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2098","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.028Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x51c5744","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c5744","0x24a707c5","0x17ee8a0","0x18e2094","0x18e1ff0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.034Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c5744","0x0","0x24a70775","0x51c5744","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c5744","0x0","0x24a70775","0x51c5744","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:29.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c5744","0x0","0x24a708bd","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c5744","0x0","0x24a708bd","0x51c5744","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c5744","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c5744","hex":"01 00 34 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 28 d4 37 cc d4 dc 01 06 0a 00 00 00 60 28 d4 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.045Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.046Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b5914","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b5914","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x18b5914","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b5914","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.103Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18b5914","0x0","0x24a70775","0x18b5914","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b5914","0x0","0x24a70775","0x18b5914","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:29.109Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18b5914","0x0","0x24a708bd","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b5914","0x0","0x24a708bd","0x18b5914","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b5914","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b5914","hex":"01 00 34 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 f6 eb 37 cc d4 dc 01 06 0a 00 00 00 20 f6 eb 37 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.115Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51bf114","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51bf114","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.132Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51bf114","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51bf114","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.137Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51bf114","0x0","0x24a70775","0x51bf114","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51bf114","0x0","0x24a70775","0x51bf114","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:29.144Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51bf114","0x0","0x24a708bd","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51bf114","0x0","0x24a708bd","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 64 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.149Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x17f7494","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x17f7494","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x52036a8","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.156Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.156Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.156Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.156Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.157Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x17f7494","0x27e7023d","0x23eed68","0x52036a4","0x5203600","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x17f7494","0x27e7023d","0x23eed68","0x52036a4","0x5203600","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.162Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x17f7494","0x0","0x27e703ad","0x17f7494","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x17f7494","0x0","0x27e703ad","0x17f7494","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:29.169Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x17f7494","0x0","0x27e703f5","0x17f7494","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x17f7494","0x0","0x27e703f5","0x17f7494","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x17f7494","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x17f7494","hex":"01 00 00 00 00 00 00 00 00 00 63 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.173Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.174Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.174Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18b03ec","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18b03ec","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.184Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x18b03ec","0x27e7023d","0x23eed68","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b03ec","0x27e7023d","0x23eed68","0x18e6984","0x18e68e0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.189Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18b03ec","0x0","0x27e703ad","0x18b03ec","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b03ec","0x0","0x27e703ad","0x18b03ec","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:29.195Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18b03ec","0x0","0x27e703f5","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b03ec","0x0","0x27e703f5","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 00 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.200Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.200Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.200Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.200Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.201Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.491Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.497Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:29.504Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18256c4","hex":"01 00 34 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.509Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.524Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:29.530Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cac6c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51cac6c","hex":"01 00 34 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 90 4c 20 38 cc d4 dc 01 06 0a 00 00 00 90 4c 20 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.536Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.536Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.568Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x51c8a5c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c8a5c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.573Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:29.579Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c8a5c","hex":"01 00 00 00 00 00 00 00 00 00 66 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.583Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x195e014","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x195e014","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.590Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.591Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.591Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.591Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.592Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.599Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x195e014","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x195e014","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.605Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x195e014","0x0","0x24a70775","0x195e014","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x195e014","0x0","0x24a70775","0x195e014","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:29.611Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x195e014","0x0","0x24a708bd","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x195e014","0x0","0x24a708bd","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195e014","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 65 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.616Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.616Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.616Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.616Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.616Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x51c684c","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c684c","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.622Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x51c684c","0x0","0x255c019d","0x51c684c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c684c","0x0","0x255c019d","0x51c684c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:29.629Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x51c684c","0x0","0x255c0125","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c684c","0x0","0x255c0125","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 41 38 38 cc d4 dc 01 06 0a 00 00 00 60 41 38 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:29.634Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.635Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.635Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.635Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.635Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x17fa7ac","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x17fa7ac","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e6f50","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.679Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x17fa7ac","0x255c006d","0x85ef38","0x18e6f4c","0x18e6ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x17fa7ac","0x255c006d","0x85ef38","0x18e6f4c","0x18e6ea8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.684Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x17fa7ac","0x0","0x255c019d","0x17fa7ac","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x17fa7ac","0x0","0x255c019d","0x17fa7ac","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:29.690Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x17fa7ac","0x0","0x255c0125","0x17fa7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x17fa7ac","0x0","0x255c0125","0x17fa7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x17fa7ac","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 01 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.695Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.695Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.695Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.696Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.696Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","address":"0x9beea5","ecx":"0x5db38eab","esp":"0x67cf9c0","args":["0x220a548","0x67cf9d8","0x7508fcc9","0x220a548","0x7508fcb0","0x67cfa34","0x772482ae","0x220a548","0x5c7a8aef","0x0"],"stack":["0x9bf6b0","0x220a548","0x67cf9d8","0x7508fcc9","0x220a548","0x7508fcb0","0x67cfa34","0x772482ae","0x220a548","0x5c7a8aef","0x0","0x0","0x220a548","0x0","0x0","0x0","0x0","0x0"],"candidates":[],"time":"2026-04-25T15:57:29.929Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a8","args":["0x21fcef4","0x1","0x1","0x7308","0x2e","0x8d538c","0x206","0x6","0x900184","0x17eea6c"],"stack":["0x76ffedd8","0x21fcef4","0x1","0x1","0x7308","0x2e","0x8d538c","0x206","0x6","0x900184","0x17eea6c","0x76fc4ef5","0x9c1b20","0x52064e8","0x6","0xd7b570fc","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:29.942Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee838","args":["0x1","0x1","0x7308","0x2e","0x8d538c","0x24a707fd","0x17ee8a8","0x52064e4","0x5206440","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7308","0x2e","0x8d538c","0x24a707fd","0x17ee8a8","0x52064e4","0x5206440","0x7700459e","0x52064fc","0x17ee8f4","0x900100","0x2e","0x0","0x8d538c","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.948Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7f0","args":["0x1","0x1200","0x2e","0x8d538c","0x0","0x24a7076d","0x8d538c","0x9effe8","0x1","0x17ee8a4"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x8d538c","0x0","0x24a7076d","0x8d538c","0x9effe8","0x1","0x17ee8a4","0x17ee838","0x1","0x1","0x17ee898","0x9cf3a6","0xffffffff","0x17ee8a4"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8a4","hex":"d0"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8d0","hex":"6c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee898","hex":"5c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea5c","hex":"a4"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8a4","hex":"d0"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8d0","hex":"6c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee898","hex":"5c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea5c","hex":"a4"}],"time":"2026-04-25T15:57:29.954Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee78c","args":["0x1","0x2e","0x8d538c","0x0","0x24a708b5","0x8d538c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x8d538c","0x0","0x24a708b5","0x8d538c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x8d538c","0x9effe8","0x17ee834"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x8d538c","hex":"01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:29.959Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:29.959Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:29.959Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.960Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:29.960Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.004Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x18b03ec","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b03ec","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.011Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18b03ec","0x0","0x24a70775","0x18b03ec","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b03ec","0x0","0x24a70775","0x18b03ec","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:30.017Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18b03ec","0x0","0x24a708bd","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b03ec","0x0","0x24a708bd","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b03ec","hex":"01 00 34 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.022Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.023Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.023Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.023Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.023Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b480c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b480c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.031Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x18b480c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b480c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.036Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x24a70775","0x18b480c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x24a70775","0x18b480c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:30.043Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x18b480c","0x0","0x24a708bd","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x24a708bd","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 97 6c 38 cc d4 dc 01 06 0a 00 00 00 d0 97 6c 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.048Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.048Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.048Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.048Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.048Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x195e014","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x195e014","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x195e014","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x195e014","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.102Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x195e014","0x0","0x24a70775","0x195e014","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x195e014","0x0","0x24a70775","0x195e014","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:30.108Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x195e014","0x0","0x24a708bd","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x195e014","0x0","0x24a708bd","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195e014","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195e014","hex":"01 00 34 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 8c 84 38 cc d4 dc 01 06 0a 00 00 00 a0 8c 84 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.114Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e7ae0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.121Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18256c4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.129Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.129Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.129Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.129Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.129Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x517d2f4","0x255c006d","0x85ef38","0x18e7adc","0x18e7a38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x517d2f4","0x255c006d","0x85ef38","0x18e7adc","0x18e7a38","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.134Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x517d2f4","0x0","0x255c019d","0x517d2f4","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517d2f4","0x0","0x255c019d","0x517d2f4","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:30.141Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x517d2f4","0x0","0x255c0125","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517d2f4","0x0","0x255c0125","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 68 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.145Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.147Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.147Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.147Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.147Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18256c4","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.152Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18256c4","0x0","0x27e703ad","0x18256c4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:30.160Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18256c4","0x0","0x27e703f5","0x18256c4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18256c4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18256c4","hex":"01 00 00 00 00 00 00 00 00 00 67 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.164Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.165Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.165Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.165Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.165Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.176Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.181Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:30.187Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cac6c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 02 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.193Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.193Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.494Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.500Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:30.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.511Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.511Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.511Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.511Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.511Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x517d2f4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x517d2f4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e7ae0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.519Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x517d2f4","0x27e7023d","0x23eed68","0x18e7adc","0x18e7a38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x517d2f4","0x27e7023d","0x23eed68","0x18e7adc","0x18e7a38","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x517d2f4","0x0","0x27e703ad","0x517d2f4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x517d2f4","0x0","0x27e703ad","0x517d2f4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:30.532Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x517d2f4","0x0","0x27e703f5","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x517d2f4","0x0","0x27e703f5","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 10 e3 b8 38 cc d4 dc 01 06 0a 00 00 00 10 e3 b8 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.537Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.538Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5206ab0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.552Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x18b6a1c","0x27e7023d","0x23eed68","0x5206aac","0x5206a08","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b6a1c","0x27e7023d","0x23eed68","0x5206aac","0x5206a08","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.558Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18b6a1c","0x0","0x27e703ad","0x18b6a1c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b6a1c","0x0","0x27e703ad","0x18b6a1c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:30.564Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18b6a1c","0x0","0x27e703f5","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b6a1c","0x0","0x27e703f5","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 6a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.570Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x5183924","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x5183924","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e7ae0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.577Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.577Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.578Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.578Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.578Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x5183924","0x255c006d","0x85ef38","0x18e7adc","0x18e7a38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5183924","0x255c006d","0x85ef38","0x18e7adc","0x18e7a38","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.583Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:30.590Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e1ad0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.598Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5183924","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 69 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.602Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.603Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.603Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.603Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.603Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18b7b24","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x27e7023d","0x23eed68","0x18e1acc","0x18e1a28","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.609Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b7b24","0x0","0x27e703ad","0x18b7b24","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b7b24","0x0","0x27e703ad","0x18b7b24","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:30.616Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b7b24","0x0","0x27e703f5","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b7b24","0x0","0x27e703f5","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b7b24","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 d7 d0 38 cc d4 dc 01 06 0a 00 00 00 e0 d7 d0 38 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:30.621Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.621Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.621Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.621Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.622Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51cac6c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:30.662Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51cac6c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.668Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cac6c","0x0","0x27e703ad","0x51cac6c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:30.674Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cac6c","0x0","0x27e703f5","0x51cac6c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cac6c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cac6c","hex":"01 00 00 00 00 00 00 00 00 00 03 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:30.678Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:30.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:30.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.679Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:30.679Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c3534","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c3534","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x52030e0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.002Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x51c3534","0x27e7023d","0x23eed68","0x52030dc","0x5203038","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c3534","0x27e7023d","0x23eed68","0x52030dc","0x5203038","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.008Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51c3534","0x0","0x27e703ad","0x51c3534","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c3534","0x0","0x27e703ad","0x51c3534","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:31.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51c3534","0x0","0x27e703f5","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c3534","0x0","0x27e703f5","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c3534","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c3534","hex":"01 00 34 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.019Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.020Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.020Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x17f417c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x17f417c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x52070e8","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.028Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x17f417c","0x27e7023d","0x23eed68","0x52070e4","0x5207040","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x17f417c","0x27e7023d","0x23eed68","0x52070e4","0x5207040","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.033Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x17f417c","0x0","0x27e703ad","0x17f417c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x17f417c","0x0","0x27e703ad","0x17f417c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:31.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x17f417c","0x0","0x27e703f5","0x17f417c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x17f417c","0x0","0x27e703f5","0x17f417c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x17f417c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 50 2e 05 39 cc d4 dc 01 06 0a 00 00 00 50 2e 05 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.045Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.046Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x517d2f4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x517d2f4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e7ae0","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.100Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x517d2f4","0x27e7023d","0x23eed68","0x18e7adc","0x18e7a38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x517d2f4","0x27e7023d","0x23eed68","0x18e7adc","0x18e7a38","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.109Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x517d2f4","0x0","0x27e703ad","0x517d2f4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x517d2f4","0x0","0x27e703ad","0x517d2f4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:31.121Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x517d2f4","0x0","0x27e703f5","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x517d2f4","0x0","0x27e703f5","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 23 1d 39 cc d4 dc 01 06 0a 00 00 00 20 23 1d 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.130Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18f747c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18f747c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e37b8","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.137Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x523467c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x523467c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x187efc8","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.145Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.145Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.145Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.146Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.146Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18f747c","0x24a707c5","0x17ee8a0","0x18e37b4","0x18e3710","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18f747c","0x24a707c5","0x17ee8a0","0x18e37b4","0x18e3710","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.152Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18f747c","0x0","0x24a70775","0x18f747c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18f747c","0x0","0x24a70775","0x18f747c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:31.158Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18f747c","0x0","0x24a708bd","0x18f747c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18f747c","0x0","0x24a708bd","0x18f747c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18f747c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18f747c","hex":"01 00 00 00 00 00 00 00 00 00 6b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.162Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.162Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.163Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.163Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.163Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x523467c","0x255c006d","0x85ef38","0x187efc4","0x187ef20","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523467c","0x255c006d","0x85ef38","0x187efc4","0x187ef20","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.169Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x523467c","0x0","0x255c019d","0x523467c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523467c","0x0","0x255c019d","0x523467c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:31.179Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51cbd74","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51cbd74","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.186Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x523467c","0x0","0x255c0125","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523467c","0x0","0x255c0125","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 6c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.191Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.191Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x2","0x2e","0x51cbd74","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51cbd74","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.197Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51cbd74","0x0","0x24a70775","0x51cbd74","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cbd74","0x0","0x24a70775","0x51cbd74","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:31.203Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51cbd74","0x0","0x24a708bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cbd74","0x0","0x24a708bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cbd74","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 04 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.208Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.208Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.208Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.208Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.208Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x17f417c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x17f417c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.492Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x17f417c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x17f417c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.498Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x17f417c","0x0","0x24a70775","0x17f417c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x17f417c","0x0","0x24a70775","0x17f417c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:31.505Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x17f417c","0x0","0x24a708bd","0x17f417c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x17f417c","0x0","0x24a708bd","0x17f417c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x17f417c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.510Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.510Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x5183924","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x5183924","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e7ae0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x5183924","0x24a707c5","0x17ee8a0","0x18e7adc","0x18e7a38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x5183924","0x24a707c5","0x17ee8a0","0x18e7adc","0x18e7a38","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.524Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x5183924","0x0","0x24a70775","0x5183924","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x5183924","0x0","0x24a70775","0x5183924","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:31.530Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x5183924","0x0","0x24a708bd","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x5183924","0x0","0x24a708bd","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5183924","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 a0 51 39 cc d4 dc 01 06 0a 00 00 00 a0 a0 51 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.536Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x51cbd74","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e1508","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.543Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51cbd74","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51cbd74","0x24a707c5","0x17ee8a0","0x18e1504","0x18e1460","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.550Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51cbd74","0x0","0x24a70775","0x51cbd74","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51cbd74","0x0","0x24a70775","0x51cbd74","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:31.556Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51cbd74","0x0","0x24a708bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51cbd74","0x0","0x24a708bd","0x51cbd74","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51cbd74","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51cbd74","hex":"01 00 00 00 00 00 00 00 00 00 6d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.561Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.561Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.561Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.562Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.562Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1962434","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x1962434","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.597Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x1962434","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x1962434","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.602Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x1962434","0x0","0x24a70775","0x1962434","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x1962434","0x0","0x24a70775","0x1962434","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:31.608Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x1962434","0x0","0x24a708bd","0x1962434","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x1962434","0x0","0x24a708bd","0x1962434","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1962434","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x1962434","hex":"01 00 34 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 47 69 39 cc d4 dc 01 06 0a 00 00 00 50 47 69 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.613Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.614Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b03ec","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18b03ec","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e6988","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.648Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18b03ec","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b03ec","0x24a707c5","0x17ee8a0","0x18e6984","0x18e68e0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.653Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18b03ec","0x0","0x24a70775","0x18b03ec","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b03ec","0x0","0x24a70775","0x18b03ec","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:31.659Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18b03ec","0x0","0x24a708bd","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b03ec","0x0","0x24a708bd","0x18b03ec","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b03ec","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b03ec","hex":"01 00 00 00 00 00 00 00 00 00 6e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.664Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x517d2f4","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x517d2f4","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e7ae0","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.671Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.671Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.671Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.672Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.672Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x517d2f4","0x255c006d","0x85ef38","0x18e7adc","0x18e7a38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x517d2f4","0x255c006d","0x85ef38","0x18e7adc","0x18e7a38","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.677Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x517d2f4","0x0","0x255c019d","0x517d2f4","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517d2f4","0x0","0x255c019d","0x517d2f4","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:31.683Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x517d2f4","0x0","0x255c0125","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517d2f4","0x0","0x255c0125","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 05 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:31.688Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:31.688Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:31.688Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.689Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:31.689Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c7954","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c7954","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x52064e8","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:31.994Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x51c7954","0x255c006d","0x85ef38","0x52064e4","0x5206440","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c7954","0x255c006d","0x85ef38","0x52064e4","0x5206440","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:31.999Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x51c7954","0x0","0x255c019d","0x51c7954","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c7954","0x0","0x255c019d","0x51c7954","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:32.006Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x51c7954","0x0","0x255c0125","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c7954","0x0","0x255c0125","0x51c7954","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c7954","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c7954","hex":"01 00 34 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.011Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.012Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.012Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.012Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.012Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x195be04","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x195be04","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.022Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x195be04","0x255c006d","0x85ef38","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x195be04","0x255c006d","0x85ef38","0x187c74c","0x187c6a8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.031Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x195be04","0x0","0x255c019d","0x195be04","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x195be04","0x0","0x255c019d","0x195be04","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:32.040Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x195be04","0x0","0x255c0125","0x195be04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x195be04","0x0","0x255c0125","0x195be04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195be04","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 d0 c4 9d 39 cc d4 dc 01 06 0a 00 00 00 d0 c4 9d 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.046Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.047Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.047Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.047Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.047Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x522f154","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x522f154","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x187f590","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.087Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x522f154","0x255c006d","0x85ef38","0x187f58c","0x187f4e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x522f154","0x255c006d","0x85ef38","0x187f58c","0x187f4e8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.093Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:32.099Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x522f154","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 70 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.104Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x5235784","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x5235784","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x187c750","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.112Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.120Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.121Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x5235784","0x24a707c5","0x17ee8a0","0x187c74c","0x187c6a8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5235784","0x24a707c5","0x17ee8a0","0x187c74c","0x187c6a8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.126Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x5235784","0x0","0x24a70775","0x5235784","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5235784","0x0","0x24a70775","0x5235784","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:32.133Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x5235784","0x0","0x24a708bd","0x5235784","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5235784","0x0","0x24a708bd","0x5235784","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5235784","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 6f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.138Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.138Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.138Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.138Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.138Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c8a5c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.145Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c8a5c","0x0","0x27e703ad","0x51c8a5c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:32.152Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c8a5c","0x0","0x27e703f5","0x51c8a5c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c8a5c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c8a5c","hex":"01 00 34 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 b9 b5 39 cc d4 dc 01 06 0a 00 00 00 a0 b9 b5 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.157Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.157Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18be154","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x1878748","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.193Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x18be154","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18be154","0x27e7023d","0x23eed68","0x1878744","0x18786a0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.198Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18be154","0x0","0x27e703ad","0x18be154","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:32.205Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18be154","0x0","0x27e703f5","0x18be154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18be154","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18be154","hex":"01 00 00 00 00 00 00 00 00 00 06 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.210Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.210Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.210Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.210Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.210Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.496Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.502Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:32.508Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.513Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.514Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.514Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.514Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.514Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b14f4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b14f4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2660","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.522Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x18b14f4","0x27e7023d","0x23eed68","0x18e265c","0x18e25b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b14f4","0x27e7023d","0x23eed68","0x18e265c","0x18e25b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.529Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b14f4","0x0","0x27e703ad","0x18b14f4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b14f4","0x0","0x27e703ad","0x18b14f4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:32.535Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b14f4","0x0","0x27e703f5","0x18b14f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b14f4","0x0","0x27e703f5","0x18b14f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b14f4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b14f4","hex":"01 00 34 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 20 37 ea 39 cc d4 dc 01 06 0a 00 00 00 20 37 ea 39 cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.541Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x182019c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e03b0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.551Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.552Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.552Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.552Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x182019c","0x24a707c5","0x17ee8a0","0x18e03ac","0x18e0308","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x182019c","0x24a707c5","0x17ee8a0","0x18e03ac","0x18e0308","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.557Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x182019c","0x0","0x24a70775","0x182019c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x182019c","0x0","0x24a70775","0x182019c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:32.565Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x182019c","0x0","0x24a708bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x182019c","0x0","0x24a708bd","0x182019c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x182019c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x182019c","hex":"01 00 00 00 00 00 00 00 00 00 71 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.569Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.569Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.570Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.570Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.570Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.570Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x17f417c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x17f417c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.597Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x17f417c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x17f417c","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.603Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x17f417c","0x0","0x24a70775","0x17f417c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x17f417c","0x0","0x24a70775","0x17f417c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:32.609Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x17f417c","0x0","0x24a708bd","0x17f417c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x17f417c","0x0","0x24a708bd","0x17f417c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x17f417c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x17f417c","hex":"01 00 34 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 e0 04 02 3a cc d4 dc 01 06 0a 00 00 00 e0 04 02 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:32.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.615Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.615Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.615Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.615Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x522f154","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x522f154","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.638Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x522f154","0x24a707c5","0x17ee8a0","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x522f154","0x24a707c5","0x17ee8a0","0x520995c","0x52098b8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.645Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x522f154","0x0","0x24a70775","0x522f154","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x522f154","0x0","0x24a70775","0x522f154","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:32.654Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x522f154","0x0","0x24a708bd","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x522f154","0x0","0x24a708bd","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x522f154","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x522f154","hex":"01 00 00 00 00 00 00 00 00 00 72 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.661Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x196574c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x196574c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x52036a8","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:32.668Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.669Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.669Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.669Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.669Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x196574c","0x27e7023d","0x23eed68","0x52036a4","0x5203600","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x196574c","0x27e7023d","0x23eed68","0x52036a4","0x5203600","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.676Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x196574c","0x0","0x27e703ad","0x196574c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x196574c","0x0","0x27e703ad","0x196574c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:32.684Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x196574c","0x0","0x27e703f5","0x196574c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x196574c","0x0","0x27e703f5","0x196574c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x196574c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x196574c","hex":"01 00 00 00 00 00 00 00 00 00 07 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:32.689Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.689Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.689Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.689Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.690Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eeb9c","args":["0x1","0x1","0x7308","0x51","0x94ee10","0x27e70315","0x23eec60","0x23eec88","0x220a548","0x0"],"stack":["0x9be1db","0x1","0x1","0x7308","0x51","0x94ee10","0x27e70315","0x23eec60","0x23eec88","0x220a548","0x0","0x3","0x2","0x70ec0005","0x21f3c50","0x9d2b7c","0x23","0x21f3c50"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94ee10","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"args.direct","sizeIndex":11,"ptrIndex":12,"size":2,"ptr":"0x70ec0005","hex":"00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":81,"ptr":"0x94ee10","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":12,"ptrIndex":13,"size":2,"ptr":"0x70ec0005","hex":"00 00"},{"source":"stack.direct","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x21f3c50","hex":"16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.byref","sizeIndex":16,"ptrIndex":17,"size":35,"ptr":"0x1000116","hex":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"}],"time":"2026-04-25T15:57:32.969Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eeb54","args":["0x1","0x1200","0x51","0x94ee10","0x0","0x27e704c1","0x94ee10","0x70ec0110","0x51","0x23eec4c"],"stack":["0x9bdd43","0x1","0x1200","0x51","0x94ee10","0x0","0x27e704c1","0x94ee10","0x70ec0110","0x51","0x23eec4c","0x23eeb9c","0x51","0x1","0x23eec40","0x9cf3a6","0xffffffff","0x23eec4c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94ee10","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x23eec4c","hex":"a8 ec 3e 02 dc e4 9b 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 05 00 00 00 e8 ff 9e 00 08 c2 26 01 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":81,"ptr":"0x23eeca8","hex":"18 ed 3e 02 7f 03 9c 00 28 30 1f 02 01 00 00 00 41 02 e7 27 a8 01 9f 00 6c 3c 20 05 00 00 00 00 08 c2 26 01 5e 80 fe 70 01 00 00 00 68 ed 3e 02 1c 38 fe 70 b8 6f 26 01 00 00 00 00 eb ec 3e 02 b0 6b 26 00 00 ed 3e 02 4d 5a fe 70 b8 6f 26 01 00"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eec40","hex":"0c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed0c","hex":"70"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":81,"ptr":"0x94ee10","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x23eec4c","hex":"a8 ec 3e 02 dc e4 9b 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 05 00 00 00 e8 ff 9e 00 08 c2 26 01 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":81,"ptr":"0x23eeca8","hex":"18 ed 3e 02 7f 03 9c 00 28 30 1f 02 01 00 00 00 41 02 e7 27 a8 01 9f 00 6c 3c 20 05 00 00 00 00 08 c2 26 01 5e 80 fe 70 01 00 00 00 68 ed 3e 02 1c 38 fe 70 b8 6f 26 01 00 00 00 00 eb ec 3e 02 b0 6b 26 00 00 ed 3e 02 4d 5a fe 70 b8 6f 26 01 00"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eec40","hex":"0c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed0c","hex":"70"}],"time":"2026-04-25T15:57:32.977Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eeaf0","args":["0x1","0x51","0x94ee10","0x0","0x27e70409","0x94ee10","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x51","0x94ee10","0x0","0x27e70409","0x94ee10","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x94ee10","0x9effe8","0x23eeb98"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":81,"ptr":"0x94ee10","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":81,"ptr":"0x94ee10","hex":"01 00 23 00 00 00 05 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 00 00 00 01 00 00 00 08 73 00 00 01 03 00 ff 80 ee 36 00 16 01 00 01 00 00 00 01 00 00 00 01 00 00 00 08 73 00 00 00 00 00 00 03 00 00 00 02 00 00 00 05 00 ec 70"}],"time":"2026-04-25T15:57:32.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:32.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:32.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:32.982Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","retval":"0x0","time":"2026-04-25T15:57:32.982Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.011Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.018Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:33.024Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.029Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.030Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.030Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x518060c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x518060c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e6f50","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.038Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x518060c","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x518060c","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.044Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x518060c","0x0","0x27e703ad","0x518060c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x518060c","0x0","0x27e703ad","0x518060c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:33.050Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x518060c","0x0","0x27e703f5","0x518060c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x518060c","0x0","0x27e703f5","0x518060c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x518060c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x518060c","hex":"01 00 34 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 40 34 36 3a cc d4 dc 01 06 0a 00 00 00 40 34 36 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.055Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.056Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.056Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x17fa7ac","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x17fa7ac","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e6f50","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.070Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x17fa7ac","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x17fa7ac","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.075Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x17fa7ac","0x0","0x27e703ad","0x17fa7ac","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x17fa7ac","0x0","0x27e703ad","0x17fa7ac","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:33.081Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x17fa7ac","0x0","0x27e703f5","0x17fa7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x17fa7ac","0x0","0x27e703f5","0x17fa7ac","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x17fa7ac","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x17fa7ac","hex":"01 00 00 00 00 00 00 00 00 00 74 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.086Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x1964644","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x1964644","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x52030e0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.093Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.093Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.093Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.094Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.094Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x522f154","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x522f154","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.101Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x1964644","0x24a707c5","0x17ee8a0","0x52030dc","0x5203038","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x1964644","0x24a707c5","0x17ee8a0","0x52030dc","0x5203038","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.108Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x1964644","0x0","0x24a70775","0x1964644","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1964644","0x0","0x24a70775","0x1964644","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:33.114Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x1964644","0x0","0x24a708bd","0x1964644","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1964644","0x0","0x24a708bd","0x1964644","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1964644","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1964644","hex":"01 00 00 00 00 00 00 00 00 00 73 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.118Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.118Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.118Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.119Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.119Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x522f154","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x522f154","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.125Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:33.132Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x522f154","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 10 29 4e 3a cc d4 dc 01 06 0a 00 00 00 10 29 4e 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.137Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.137Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.137Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.138Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.138Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51fa864","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51fa864","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x187d8a8","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.182Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x51fa864","0x255c006d","0x85ef38","0x187d8a4","0x187d800","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51fa864","0x255c006d","0x85ef38","0x187d8a4","0x187d800","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.188Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x51fa864","0x0","0x255c019d","0x51fa864","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51fa864","0x0","0x255c019d","0x51fa864","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:33.194Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x51fa864","0x0","0x255c0125","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51fa864","0x0","0x255c0125","0x51fa864","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51fa864","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51fa864","hex":"01 00 00 00 00 00 00 00 00 00 08 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.198Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.199Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.199Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.199Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.199Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e0978","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.487Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18b7b24","0x255c006d","0x85ef38","0x18e0974","0x18e08d0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x255c006d","0x85ef38","0x18e0974","0x18e08d0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.493Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18b7b24","0x0","0x255c019d","0x18b7b24","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b7b24","0x0","0x255c019d","0x18b7b24","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:33.499Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18b7b24","0x0","0x255c0125","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b7b24","0x0","0x255c0125","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b7b24","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b480c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x18b480c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e0978","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.513Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x18b480c","0x255c006d","0x85ef38","0x18e0974","0x18e08d0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x18b480c","0x255c006d","0x85ef38","0x18e0974","0x18e08d0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.519Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18b480c","0x0","0x255c019d","0x18b480c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b480c","0x0","0x255c019d","0x18b480c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:33.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18b480c","0x0","0x255c0125","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b480c","0x0","0x255c0125","0x18b480c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b480c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b480c","hex":"01 00 34 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 cd 82 3a cc d4 dc 01 06 0a 00 00 00 a0 cd 82 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.531Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.531Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x522f154","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x522f154","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.597Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x522f154","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x522f154","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.603Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:33.610Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x522f154","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 60 9b 9a 3a cc d4 dc 01 06 0a 00 00 00 60 9b 9a 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:33.615Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x195be04","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x195be04","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5205f20","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.625Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c684c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c684c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.632Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.633Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.633Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.633Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.634Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x195be04","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x195be04","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.640Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x195be04","0x0","0x27e703ad","0x195be04","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x195be04","0x0","0x27e703ad","0x195be04","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:33.646Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x195be04","0x0","0x27e703f5","0x195be04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x195be04","0x0","0x27e703f5","0x195be04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195be04","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195be04","hex":"01 00 00 00 00 00 00 00 00 00 75 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.651Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.651Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.651Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.652Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.652Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.657Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:33.664Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 76 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.669Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51bf114","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51bf114","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x52064e8","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.676Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.676Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.677Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.677Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.677Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x51bf114","0x27e7023d","0x23eed68","0x52064e4","0x5206440","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51bf114","0x27e7023d","0x23eed68","0x52064e4","0x5206440","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.682Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x51bf114","0x0","0x27e703ad","0x51bf114","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51bf114","0x0","0x27e703ad","0x51bf114","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:33.689Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x51bf114","0x0","0x27e703f5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51bf114","0x0","0x27e703f5","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51bf114","hex":"01 00 00 00 00 00 00 00 00 00 09 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:33.694Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:33.694Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:33.694Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.694Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:33.694Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x195cf0c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x195cf0c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5205390","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:33.999Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x195cf0c","0x27e7023d","0x23eed68","0x520538c","0x52052e8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x195cf0c","0x27e7023d","0x23eed68","0x520538c","0x52052e8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.006Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x195cf0c","0x0","0x27e703ad","0x195cf0c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x195cf0c","0x0","0x27e703ad","0x195cf0c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.012Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x195cf0c","0x0","0x27e703f5","0x195cf0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x195cf0c","0x0","0x27e703f5","0x195cf0c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195cf0c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195cf0c","hex":"01 00 34 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.017Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.017Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.018Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.018Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.018Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c684c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51c684c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.026Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x51c684c","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51c684c","0x27e7023d","0x23eed68","0x18e2c24","0x18e2b80","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.032Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x51c684c","0x0","0x27e703ad","0x51c684c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c684c","0x0","0x27e703ad","0x51c684c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.038Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x51c684c","0x0","0x27e703f5","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c684c","0x0","0x27e703f5","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 18 cf 3a cc d4 dc 01 06 0a 00 00 00 e0 18 cf 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.043Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.043Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.043Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.043Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.043Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18bbf44","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18bbf44","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5203c70","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.052Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x18bbf44","0x27e7023d","0x23eed68","0x5203c6c","0x5203bc8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18bbf44","0x27e7023d","0x23eed68","0x5203c6c","0x5203bc8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.058Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18bbf44","0x0","0x27e703ad","0x18bbf44","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18bbf44","0x0","0x27e703ad","0x18bbf44","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.064Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18bbf44","0x0","0x27e703f5","0x18bbf44","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18bbf44","0x0","0x27e703f5","0x18bbf44","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18bbf44","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18bbf44","hex":"01 00 00 00 00 00 00 00 00 00 78 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.069Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x18b6a1c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5205958","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.075Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.076Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18b6a1c","0x24a707c5","0x17ee8a0","0x5205954","0x52058b0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18b6a1c","0x24a707c5","0x17ee8a0","0x5205954","0x52058b0","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.082Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18b6a1c","0x0","0x24a70775","0x18b6a1c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b6a1c","0x0","0x24a70775","0x18b6a1c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:34.088Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18b6a1c","0x0","0x24a708bd","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b6a1c","0x0","0x24a708bd","0x18b6a1c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b6a1c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b6a1c","hex":"01 00 00 00 00 00 00 00 00 00 77 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.093Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x517d2f4","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x517d2f4","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e6f50","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.100Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.100Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.101Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.101Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.101Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x517d2f4","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x517d2f4","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.107Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x517d2f4","0x0","0x27e703ad","0x517d2f4","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x517d2f4","0x0","0x27e703ad","0x517d2f4","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.113Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x517d2f4","0x0","0x27e703f5","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x517d2f4","0x0","0x27e703f5","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x517d2f4","hex":"01 00 34 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 e6 e6 3a cc d4 dc 01 06 0a 00 00 00 a0 e6 e6 3a cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.118Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.119Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.119Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.119Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.119Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x18b8c2c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x18b8c2c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5205f20","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.164Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x18b8c2c","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x18b8c2c","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.170Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x18b8c2c","0x0","0x27e703ad","0x18b8c2c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18b8c2c","0x0","0x27e703ad","0x18b8c2c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.175Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x18b8c2c","0x0","0x27e703f5","0x18b8c2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18b8c2c","0x0","0x27e703f5","0x18b8c2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b8c2c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18b8c2c","hex":"01 00 00 00 00 00 00 00 00 00 0a 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.180Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.180Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.181Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.181Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.181Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x195be04","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x195be04","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5205f20","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.487Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x195be04","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x195be04","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.493Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x195be04","0x0","0x27e703ad","0x195be04","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x195be04","0x0","0x27e703ad","0x195be04","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.500Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x195be04","0x0","0x27e703f5","0x195be04","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x195be04","0x0","0x27e703f5","0x195be04","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195be04","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x195be04","hex":"01 00 34 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.505Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.506Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.515Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffe","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.522Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.529Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 00 16 1b 3b cc d4 dc 01 06 0a 00 00 00 00 16 1b 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.534Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.534Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.535Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.535Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5205f20","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.597Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b8c2c","0x27e7023d","0x23eed68","0x5205f1c","0x5205e78","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.602Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x18b8c2c","0x0","0x27e703ad","0x18b8c2c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b8c2c","0x0","0x27e703ad","0x18b8c2c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:34.609Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x18b8c2c","0x0","0x27e703f5","0x18b8c2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b8c2c","0x0","0x27e703f5","0x18b8c2c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b8c2c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b8c2c","hex":"01 00 34 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 d0 0a 33 3b cc d4 dc 01 06 0a 00 00 00 d0 0a 33 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:34.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.615Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18bae3c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18bae3c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x52076b0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.622Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18bae3c","0x24a707c5","0x17ee8a0","0x52076ac","0x5207608","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18bae3c","0x24a707c5","0x17ee8a0","0x52076ac","0x5207608","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.629Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18bae3c","0x0","0x24a70775","0x18bae3c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18bae3c","0x0","0x24a70775","0x18bae3c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:34.635Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18bae3c","0x0","0x24a708bd","0x18bae3c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18bae3c","0x0","0x24a708bd","0x18bae3c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18bae3c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18bae3c","hex":"01 00 00 00 00 00 00 00 00 00 7a 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.640Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x195e014","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x195e014","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x187de70","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.647Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.647Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.648Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.648Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.648Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x195e014","0x255c006d","0x85ef38","0x187de6c","0x187ddc8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x195e014","0x255c006d","0x85ef38","0x187de6c","0x187ddc8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.653Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x195e014","0x0","0x255c019d","0x195e014","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x195e014","0x0","0x255c019d","0x195e014","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:34.659Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x195e014","0x0","0x255c0125","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x195e014","0x0","0x255c0125","0x195e014","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x195e014","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x195e014","hex":"01 00 00 00 00 00 00 00 00 00 79 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.664Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.664Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.665Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.665Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.665Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x1962434","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x1962434","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x520aab8","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:34.674Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x1962434","0x255c006d","0x85ef38","0x520aab4","0x520aa10","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x1962434","0x255c006d","0x85ef38","0x520aab4","0x520aa10","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.680Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x1962434","0x0","0x255c019d","0x1962434","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x1962434","0x0","0x255c019d","0x1962434","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:34.686Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x1962434","0x0","0x255c0125","0x1962434","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x1962434","0x0","0x255c0125","0x1962434","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x1962434","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x1962434","hex":"01 00 00 00 00 00 00 00 00 00 0b 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:34.691Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:34.691Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:34.692Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.692Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:34.692Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x5238a9c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x5238a9c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x187fb58","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.006Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x5238a9c","0x255c006d","0x85ef38","0x187fb54","0x187fab0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x5238a9c","0x255c006d","0x85ef38","0x187fb54","0x187fab0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.013Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x5238a9c","0x0","0x255c019d","0x5238a9c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x5238a9c","0x0","0x255c019d","0x5238a9c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:35.020Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x5238a9c","0x0","0x255c0125","0x5238a9c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x5238a9c","0x0","0x255c0125","0x5238a9c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5238a9c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x5238a9c","hex":"01 00 34 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.026Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.026Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.026Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.026Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.027Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x522f154","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x522f154","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.035Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x522f154","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x522f154","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.041Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x522f154","0x0","0x255c019d","0x522f154","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:35.048Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x522f154","0x0","0x255c0125","0x522f154","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x522f154","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x522f154","hex":"01 00 34 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 60 af 67 3b cc d4 dc 01 06 0a 00 00 00 60 af 67 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.052Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x523025c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x523025c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x520aab8","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.059Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.060Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.060Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.060Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.060Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x523025c","0x24a707c5","0x17ee8a0","0x520aab4","0x520aa10","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x523025c","0x24a707c5","0x17ee8a0","0x520aab4","0x520aa10","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.066Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x523025c","0x0","0x24a70775","0x523025c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523025c","0x0","0x24a70775","0x523025c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:35.072Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x523025c","0x0","0x24a708bd","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523025c","0x0","0x24a708bd","0x523025c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523025c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523025c","hex":"01 00 00 00 00 00 00 00 00 00 7b 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.076Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.077Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.077Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.103Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:35.109Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 20 7d 7f 3b cc d4 dc 01 06 0a 00 00 00 20 7d 7f 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.115Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x51c3534","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e31f0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.152Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x51c3534","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x51c3534","0x24a707c5","0x17ee8a0","0x18e31ec","0x18e3148","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.157Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c3534","0x0","0x24a70775","0x51c3534","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c3534","0x0","0x24a70775","0x51c3534","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:35.163Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c3534","0x0","0x24a708bd","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c3534","0x0","0x24a708bd","0x51c3534","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c3534","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c3534","hex":"01 00 00 00 00 00 00 00 00 00 7c 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.168Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x523467c","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x523467c","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.175Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.175Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.175Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.175Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.175Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x2","0x2e","0x523467c","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x523467c","0x255c006d","0x85ef38","0x520995c","0x52098b8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.181Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x523467c","0x0","0x255c019d","0x523467c","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x523467c","0x0","0x255c019d","0x523467c","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:35.187Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x523467c","0x0","0x255c0125","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x523467c","0x0","0x255c0125","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x523467c","hex":"01 00 00 00 00 00 00 00 00 00 0c 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.192Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.192Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.488Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffd","0x62","0x18b7b24","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x18b7b24","0x255c006d","0x85ef38","0x18e2c24","0x18e2b80","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.494Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x18b7b24","0x0","0x255c019d","0x18b7b24","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x18b7b24","0x0","0x255c019d","0x18b7b24","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:35.500Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x18b7b24","0x0","0x255c0125","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x18b7b24","0x0","0x255c0125","0x18b7b24","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18b7b24","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x18b7b24","hex":"01 00 34 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.506Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.507Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x5183924","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x5183924","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x18e6f50","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.518Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x7ffe","0x62","0x5183924","0x255c006d","0x85ef38","0x18e6f4c","0x18e6ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x5183924","0x255c006d","0x85ef38","0x18e6f4c","0x18e6ea8","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.526Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x62","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x5183924","0x0","0x255c019d","0x5183924","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:35.532Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x62","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x5183924","0x0","0x255c0125","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5183924","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x5183924","hex":"01 00 34 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 a0 fa b3 3b cc d4 dc 01 06 0a 00 00 00 a0 fa b3 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.537Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.538Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.538Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x85ef38","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x5235784","0x206","0x6","0x8f625c","0x85f0fc"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x5235784","0x206","0x6","0x8f625c","0x85f0fc","0x76fc4ef5","0x9c1b20","0x187fb58","0x6","0xd64e6a6c","0x8f625c","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8f625c","hex":"c0 8f 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x888fc0","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.583Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x85eec8","args":["0x1","0x1","0x1","0x2e","0x5235784","0x255c006d","0x85ef38","0x187fb54","0x187fab0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5235784","0x255c006d","0x85ef38","0x187fb54","0x187fab0","0x7700459e","0x85eed0","0x85ef84","0x85f0ec","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.589Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x85ee80","args":["0x1","0x1200","0x2e","0x5235784","0x0","0x255c019d","0x5235784","0x9effe8","0x1","0x85ef34"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5235784","0x0","0x255c019d","0x5235784","0x9effe8","0x1","0x85ef34","0x85eec8","0x1","0x1","0x85ef28","0x9cf3a6","0xffffffff","0x85ef34"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x85f0ec","hex":"34"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef34","hex":"60"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x85ef60","hex":"fc"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85ef28","hex":"ec"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x85f0ec","hex":"34"}],"time":"2026-04-25T15:57:35.595Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x85ee1c","args":["0x1","0x2e","0x5235784","0x0","0x255c0125","0x5235784","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5235784","0x0","0x255c0125","0x5235784","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5235784","0x9effe8","0x85eec4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5235784","hex":"01 00 00 00 00 00 00 00 00 00 7e 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.599Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x523467c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x5209960","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.606Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x517d2f4","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e6f50","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.613Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.613Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.614Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.614Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x7ffd","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x523467c","0x27e7023d","0x23eed68","0x520995c","0x52098b8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.620Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x523467c","0x0","0x27e703ad","0x523467c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:35.627Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x523467c","0x0","0x27e703f5","0x523467c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x523467c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x523467c","hex":"01 00 34 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 50 a1 cb 3b cc d4 dc 01 06 0a 00 00 00 50 a1 cb 3b cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:35.632Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.632Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.632Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.632Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.633Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x517d2f4","0x24a707c5","0x17ee8a0","0x18e6f4c","0x18e6ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x517d2f4","0x24a707c5","0x17ee8a0","0x18e6f4c","0x18e6ea8","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.639Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x517d2f4","0x0","0x24a70775","0x517d2f4","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x517d2f4","0x0","0x24a70775","0x517d2f4","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:35.646Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x517d2f4","0x0","0x24a708bd","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x517d2f4","0x0","0x24a708bd","0x517d2f4","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x517d2f4","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x517d2f4","hex":"01 00 00 00 00 00 00 00 00 00 7d 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.651Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.651Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.651Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.652Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.652Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x51c684c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x51c684c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.662Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x2","0x2e","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.667Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:35.673Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x51c684c","hex":"01 00 00 00 00 00 00 00 00 00 0d 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:35.677Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:35.678Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:35.678Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.678Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:35.678Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x5208dd0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:35.996Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c9b64","0x24a707c5","0x17ee8a0","0x5208dcc","0x5208d28","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:36.002Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c9b64","0x0","0x24a70775","0x51c9b64","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:36.009Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c9b64","0x0","0x24a708bd","0x51c9b64","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c9b64","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c9b64","hex":"01 00 34 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b5 00 b9 5e 9b 78 68 4c a9 c8 01 af 32 f6 b4 e9 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:36.014Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:36.014Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:36.014Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.014Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.014Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x1269e84","0x1","0x1","0x7ffe","0x62","0x51bf114","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e7ae0","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:36.022Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffe","0x62","0x51bf114","0x24a707c5","0x17ee8a0","0x18e7adc","0x18e7a38","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffe","0x62","0x51bf114","0x24a707c5","0x17ee8a0","0x18e7adc","0x18e7a38","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:36.027Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51bf114","0x0","0x24a70775","0x51bf114","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51bf114","0x0","0x24a70775","0x51bf114","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:36.034Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51bf114","0x0","0x24a708bd","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51bf114","0x0","0x24a708bd","0x51bf114","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51bf114","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51bf114","hex":"01 00 34 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 56 6a 1f b1 96 71 fc 47 bf f9 24 00 c7 84 17 14 03 00 00 00 c0 00 e0 45 00 3c cc d4 dc 01 06 0a 00 00 00 e0 45 00 3c cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:36.038Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:36.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:36.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.039Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.039Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x126cdc4","0x1","0x1","0x7ffd","0x62","0x51c684c","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e2c28","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:36.097Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x7ffd","0x62","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x7ffd","0x62","0x51c684c","0x24a707c5","0x17ee8a0","0x18e2c24","0x18e2b80","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:36.103Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x62","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x62","0x51c684c","0x0","0x24a70775","0x51c684c","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:36.109Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x62","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x62","0x51c684c","0x0","0x24a708bd","0x51c684c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x51c684c","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":98,"ptr":"0x51c684c","hex":"01 00 34 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 24 d2 59 01 86 9c b9 47 b7 15 e4 c5 19 f5 93 ef 0e 00 00 00 c0 00 a0 13 18 3c cc d4 dc 01 06 0a 00 00 00 a0 13 18 3c cc d4 dc 01 00 00"}],"time":"2026-04-25T15:57:36.114Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:36.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:36.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.115Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.115Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x17ee8a0","args":["0x21f2b0c","0x1","0x1","0x1","0x2e","0x18fa794","0x206","0x6","0x900184","0x17eea64"],"stack":["0x76ffedd8","0x21f2b0c","0x1","0x1","0x1","0x2e","0x18fa794","0x206","0x6","0x900184","0x17eea64","0x76fc4ef5","0x9c1b20","0x18e0f40","0x6","0xd7b570f4","0x900184","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x900184","hex":"68 90 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x889068","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:36.133Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x17ee830","args":["0x1","0x1","0x1","0x2e","0x18fa794","0x24a707c5","0x17ee8a0","0x18e0f3c","0x18e0e98","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x18fa794","0x24a707c5","0x17ee8a0","0x18e0f3c","0x18e0e98","0x7700459e","0x17ee838","0x17ee8ec","0x17eea54","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:36.139Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x17ee7e8","args":["0x1","0x1200","0x2e","0x18fa794","0x0","0x24a70775","0x18fa794","0x9effe8","0x1","0x17ee89c"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x18fa794","0x0","0x24a70775","0x18fa794","0x9effe8","0x1","0x17ee89c","0x17ee830","0x1","0x1","0x17ee890","0x9cf3a6","0xffffffff","0x17ee89c"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x17eea54","hex":"9c"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee89c","hex":"c8"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x17ee8c8","hex":"64"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17ee890","hex":"54"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x17eea54","hex":"9c"}],"time":"2026-04-25T15:57:36.146Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x17ee784","args":["0x1","0x2e","0x18fa794","0x0","0x24a708bd","0x18fa794","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x18fa794","0x0","0x24a708bd","0x18fa794","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x18fa794","0x9effe8","0x17ee82c"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x18fa794","hex":"01 00 00 00 00 00 00 00 00 00 80 03 0b 00 01 00 00 00 01 00 00 00 fe 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:36.151Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:36.152Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:36.152Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.152Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.152Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x1","0x2e","0x5238a9c","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x1","0x2e","0x5238a9c","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x187fb58","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:36.160Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x1","0x2e","0x5238a9c","0x27e7023d","0x23eed68","0x187fb54","0x187fab0","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x1","0x2e","0x5238a9c","0x27e7023d","0x23eed68","0x187fb54","0x187fab0","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:36.166Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x5238a9c","0x0","0x27e703ad","0x5238a9c","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5238a9c","0x0","0x27e703ad","0x5238a9c","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:36.172Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x5238a9c","0x0","0x27e703f5","0x5238a9c","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5238a9c","0x0","0x27e703f5","0x5238a9c","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5238a9c","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5238a9c","hex":"01 00 00 00 00 00 00 00 00 00 7f 03 0b 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:36.176Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:36.177Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:36.177Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.177Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.177Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxService.TransferData","address":"0x9c1b20","ecx":"0x9c1b20","esp":"0x23eed68","args":["0x21f47ac","0x1","0x1","0x2","0x2e","0x5183924","0x206","0x6","0x94f0dc","0x23eef2c"],"stack":["0x76ffedd8","0x21f47ac","0x1","0x1","0x2","0x2e","0x5183924","0x206","0x6","0x94f0dc","0x23eef2c","0x76fc4ef5","0x9c1b20","0x18e6f50","0x6","0xd4f575bc","0x94f0dc","0x0"],"candidates":[{"source":"args.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"args.byref","sizeIndex":7,"ptrIndex":8,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"},{"source":"stack.direct","sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x94f0dc","hex":"b8 91 88 00 10 00"},{"source":"stack.byref","sizeIndex":8,"ptrIndex":9,"size":6,"ptr":"0x8891b8","hex":"b8 80 51 75 b8 6d"}],"time":"2026-04-25T15:57:36.186Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.TransferData","address":"0x9bdcb5","ecx":"0x9effe8","esp":"0x23eecf8","args":["0x1","0x1","0x2","0x2e","0x5183924","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e"],"stack":["0x9c1bcc","0x1","0x1","0x2","0x2e","0x5183924","0x27e7023d","0x23eed68","0x18e6f4c","0x18e6ea8","0x7700459e","0x23eed00","0x23eedb4","0x23eef1c","0x76ffee30","0xa1cd8ff0","0xfffffffe","0x9c1b20"],"candidates":[{"source":"args.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":4,"ptrIndex":5,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:36.192Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","address":"0x9bd910","ecx":"0x9effe8","esp":"0x23eecb0","args":["0x1","0x1200","0x2e","0x5183924","0x0","0x27e703ad","0x5183924","0x9effe8","0x1","0x23eed64"],"stack":["0x9bdd43","0x1","0x1200","0x2e","0x5183924","0x0","0x27e703ad","0x5183924","0x9effe8","0x1","0x23eed64","0x23eecf8","0x1","0x1","0x23eed58","0x9cf3a6","0xffffffff","0x23eed64"],"candidates":[{"source":"args.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"args.direct","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"args.byref","sizeIndex":8,"ptrIndex":9,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"args.direct","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"args.byref","sizeIndex":12,"ptrIndex":13,"size":1,"ptr":"0x23eef1c","hex":"64"},{"source":"stack.direct","sizeIndex":3,"ptrIndex":4,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed64","hex":"90"},{"source":"stack.byref","sizeIndex":9,"ptrIndex":10,"size":1,"ptr":"0x23eed90","hex":"2c"},{"source":"stack.direct","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eed58","hex":"1c"},{"source":"stack.byref","sizeIndex":13,"ptrIndex":14,"size":1,"ptr":"0x23eef1c","hex":"64"}],"time":"2026-04-25T15:57:36.198Z"} +{"event":"nmxsvc.enter","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","address":"0x9b807f","ecx":"0x9effe8","esp":"0x23eec4c","args":["0x1","0x2e","0x5183924","0x0","0x27e703f5","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6"],"stack":["0x9bdb07","0x1","0x2e","0x5183924","0x0","0x27e703f5","0x5183924","0x9effe8","0x1","0xffffffff","0x70fe2dc6","0x70fe381c","0x1266fb8","0x0","0x9bd910","0x5183924","0x9effe8","0x23eecf4"],"candidates":[{"source":"args.direct","sizeIndex":1,"ptrIndex":2,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"},{"source":"stack.direct","sizeIndex":2,"ptrIndex":3,"size":46,"ptr":"0x5183924","hex":"01 00 00 00 00 00 00 00 00 00 0e 82 05 00 01 00 00 00 01 00 00 00 fd 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 02 02 00 00 30 75 00 00"}],"time":"2026-04-25T15:57:36.202Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","retval":"0x0","time":"2026-04-25T15:57:36.203Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","retval":"0x0","time":"2026-04-25T15:57:36.203Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxControler.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.203Z"} +{"event":"nmxsvc.leave","module":"NmxSvc.exe","name":"CNmxService.TransferData","retval":"0x0","time":"2026-04-25T15:57:36.203Z"} \ No newline at end of file diff --git a/captures/055-managed-callback-route-service-trace/probe.stdout.txt b/captures/055-managed-callback-route-service-trace/probe.stdout.txt new file mode 100644 index 0000000..ea9acd9 --- /dev/null +++ b/captures/055-managed-callback-route-service-trace/probe.stdout.txt @@ -0,0 +1,14 @@ +process=x64:True +engine_id=29448 +engine_name=MxManagedRouteFrida +managed_callback_exporter_port=53377 +managed_callback_objref_size=366 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A000005000000741E8C8CD9F3CF6C34B1C215D2114D55026C000084C3FFFFBA0F62BBA2A57BB895007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=476 +managed_register2_callback_stub_size=16 +managed_register2_callback_stub_hex=00000000000000000000000000000000 +managed_register2_callback_hresult=0x00000000 +managed_callback_connect_self_hresult=0x00000000 +managed_callback_add_self_subscriber_hresult=0x00000000 +managed_callback_self_transfer_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 diff --git a/captures/056-managed-callback-route-nmxsvc-comproxy/nmxsvc-comproxy.stdout.txt b/captures/056-managed-callback-route-nmxsvc-comproxy/nmxsvc-comproxy.stdout.txt new file mode 100644 index 0000000..4712c89 --- /dev/null +++ b/captures/056-managed-callback-route-nmxsvc-comproxy/nmxsvc-comproxy.stdout.txt @@ -0,0 +1,6 @@ +{"event":"script.loaded","process":13944,"arch":"ia32","pointerSize":4,"time":"2026-04-25T15:58:37.863Z"} +{"event":"hook.installed","module":"oleaut32.dll","name":"BSTR_UserMarshal","address":"0x757a42e0","time":"2026-04-25T15:58:37.863Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrInterfacePointerMarshall","address":"0x7704d450","time":"2026-04-25T15:58:37.863Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrClientCall2","address":"0x76fc5700","time":"2026-04-25T15:58:37.864Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"NdrProxySendReceive","address":"0x7704f630","time":"2026-04-25T15:58:37.864Z"} +{"event":"hook.installed","module":"rpcrt4.dll","name":"I_RpcSendReceive","address":"0x76ffc2f0","time":"2026-04-25T15:58:37.865Z"} diff --git a/captures/056-managed-callback-route-nmxsvc-comproxy/probe.stdout.txt b/captures/056-managed-callback-route-nmxsvc-comproxy/probe.stdout.txt new file mode 100644 index 0000000..ddfeb7a --- /dev/null +++ b/captures/056-managed-callback-route-nmxsvc-comproxy/probe.stdout.txt @@ -0,0 +1,14 @@ +process=x64:True +engine_id=29449 +engine_name=MxManagedComProxyTrace +managed_callback_exporter_port=53528 +managed_callback_objref_size=366 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A000005000000D0B5F9BAA50B15CB535E042E18C1523F020C00000898FFFF0A3CABC64661BFF995007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=480 +managed_register2_callback_stub_size=16 +managed_register2_callback_stub_hex=00000000000000000000000000000000 +managed_register2_callback_hresult=0x00000000 +managed_callback_connect_self_hresult=0x00000000 +managed_callback_add_self_subscriber_hresult=0x00000000 +managed_callback_self_transfer_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 diff --git a/captures/057-managed-callback-route-service-trace-saved/nmxsvc-trace.stdout.txt b/captures/057-managed-callback-route-service-trace-saved/nmxsvc-trace.stdout.txt new file mode 100644 index 0000000..1526ca5 --- /dev/null +++ b/captures/057-managed-callback-route-service-trace-saved/nmxsvc-trace.stdout.txt @@ -0,0 +1,11 @@ +{"event":"script.loaded","process":13944,"arch":"ia32","pointerSize":4,"time":"2026-04-25T16:00:06.417Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CFMCCallback.DataReceived","base":"0x9a0000","rva":"0x5be1","address":"0x9a5be1","time":"2026-04-25T16:00:06.417Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.ProcessDataReceivedForEngine","base":"0x9a0000","rva":"0x1807f","address":"0x9b807f","time":"2026-04-25T16:00:06.419Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.DataReceived","base":"0x9a0000","rva":"0x1d910","address":"0x9bd910","time":"2026-04-25T16:00:06.419Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.TransferData","base":"0x9a0000","rva":"0x1dcb5","address":"0x9bdcb5","time":"2026-04-25T16:00:06.419Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxControler.LocalCallbackDataReceived","base":"0x9a0000","rva":"0x1eea5","address":"0x9beea5","time":"2026-04-25T16:00:06.419Z"} +{"event":"hook.installed","module":"NmxSvc.exe","name":"CNmxService.TransferData","base":"0x9a0000","rva":"0x21b20","address":"0x9c1b20","time":"2026-04-25T16:00:06.419Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"send","address":"0x766158a0","time":"2026-04-25T16:00:06.420Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"recv","address":"0x766123a0","time":"2026-04-25T16:00:06.420Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"sendto","address":"0x76616160","time":"2026-04-25T16:00:06.420Z"} +{"event":"hook.installed","module":"ws2_32.dll","name":"recvfrom","address":"0x76615ab0","time":"2026-04-25T16:00:06.421Z"} diff --git a/captures/057-managed-callback-route-service-trace-saved/probe.stdout.txt b/captures/057-managed-callback-route-service-trace-saved/probe.stdout.txt new file mode 100644 index 0000000..617e322 --- /dev/null +++ b/captures/057-managed-callback-route-service-trace-saved/probe.stdout.txt @@ -0,0 +1,14 @@ +process=x64:True +engine_id=29450 +engine_name=MxManagedSvcTraceSaved +managed_callback_exporter_port=52559 +managed_callback_objref_size=366 +managed_callback_objref_hex=4D454F5701000000F7929FB448C769418ECAA0670B012746800A000005000000750CC6C8BA9B1EFD3BF71E12FEE5B5C1022C0000DC32FFFF8AC67645E6ED23FF95007F0007004400450053004B0054004F0050002D0036004A004C0033004B004B004F0000000700310030002E003100300030002E0030002E0034003800000007003100370032002E00320039002E003200320034002E0031000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0062006200340031003A0065006500370065003A0035006600640034003A0064006300310038000000070066006400650031003A0061006500340031003A0038006100300030003A0034003500320061003A0035003000620031003A0038003400360066003A0037006200350031003A006500610034003000000000000900FFFF00001E00FFFF00001000FFFF00000A00FFFF00001600FFFF00001F00FFFF00000E00FFFF00000000 +managed_register2_callback_request_size=480 +managed_register2_callback_stub_size=16 +managed_register2_callback_stub_hex=00000000000000000000000000000000 +managed_register2_callback_hresult=0x00000000 +managed_callback_connect_self_hresult=0x00000000 +managed_callback_add_self_subscriber_hresult=0x00000000 +managed_callback_self_transfer_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 diff --git a/captures/058-frida-subscribe-testint/frida-command.txt b/captures/058-frida-subscribe-testint/frida-command.txt new file mode 100644 index 0000000..096b7e5 --- /dev/null +++ b/captures/058-frida-subscribe-testint/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --duration=5 --tag=TestChildObject.TestInt --log=C:\Users\dohertj2\Desktop\mxaccess\captures\058-frida-subscribe-testint\harness.log --client=MxFridaTrace-058-frida-subscribe-testint diff --git a/captures/058-frida-subscribe-testint/frida-events.tsv b/captures/058-frida-subscribe-testint/frida-events.tsv new file mode 100644 index 0000000..01b9f35 --- /dev/null +++ b/captures/058-frida-subscribe-testint/frida-events.tsv @@ -0,0 +1,43 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T16:20:16.030Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T16:20:16.031Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T16:20:16.031Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T16:20:16.031Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T16:20:16.032Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T16:20:22.980Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T16:20:22.981Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T16:20:22.981Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T16:20:22.982Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T16:20:23.134Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xd5edd0 "[""0x5f08ff0"",""0x1"",""0x1"",""0x50140526"",""0x74794704""]" +2026-04-25T16:20:23.134Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T16:20:23.263Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x940c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9410648"",""0xd5ea94"",""0x7fa9fd1""]" 0 1 0x2 +2026-04-25T16:20:23.263Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x940c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9410648"",""0xd5ea94"",""0x7fa9fd1""]" 1 314 0x9410648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 40 09 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 41 09 20 01 00 02 00 00 00 +2026-04-25T16:20:23.265Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x940c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9d9f020"",""0x91f6cca2"",""0x9410214"",""0x9410204"",""0x641add04"",""0x64""]" 0 360 0x9d9f020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 40 09 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 41 09 20 01 00 02 00 00 00 +2026-04-25T16:20:23.266Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:20:23.266Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T16:20:23.266Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x940c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x94de738"",""0xd5ea94"",""0x7fa9fd1""]" 0 2 0x2 +2026-04-25T16:20:23.266Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x940c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x94de738"",""0xd5ea94"",""0x7fa9fd1""]" 1 39 0x94de738 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T16:20:23.267Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x940c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9d9f020"",""0x91f6cca2"",""0x94ea5ec"",""0x94ea5dc"",""0x641add04"",""0x64""]" 0 85 0x9d9f020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T16:20:23.268Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:20:23.268Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T16:20:23.315Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x5c"",""0x79c4d94"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x5c"",""0x79c4d94"",""0x206"",""0x3"",""0x7a00ce4""]" 0 92 0x79c4d94 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 db 4e 14 ba e9 25 85 47 81 e4 e0 e7 1a d2 b1 aa c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 +2026-04-25T16:20:23.315Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x5c"",""0x79c4d94"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x5c"",""0x79c4d94"",""0x206"",""0x3"",""0x7a00ce4""]" 1 518 0x3 +2026-04-25T16:20:23.315Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x5c"",""0x79c4d94"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x5c"",""0x79c4d94"",""0x206"",""0x3"",""0x7a00ce4""]" 2 3 0x7a00ce4 f0 ac 9f +2026-04-25T16:20:23.317Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:20:23.319Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x6c"",""0x7ee6764"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x6c"",""0x7ee6764"",""0x206"",""0x3"",""0x7a00ce4""]" 0 108 0x7ee6764 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 5d 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 db 4e 14 ba e9 25 85 47 81 e4 e0 e7 1a d2 b1 aa c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 03 00 00 00 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02 +2026-04-25T16:20:23.319Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x6c"",""0x7ee6764"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x6c"",""0x7ee6764"",""0x206"",""0x3"",""0x7a00ce4""]" 1 518 0x3 +2026-04-25T16:20:23.319Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x6c"",""0x7ee6764"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x6c"",""0x7ee6764"",""0x206"",""0x3"",""0x7a00ce4""]" 2 3 0x7a00ce4 f0 ac 9f +2026-04-25T16:20:23.320Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:20:23.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x2c2"",""0x7eebc8c"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x2c2"",""0x7eebc8c"",""0x206"",""0x3"",""0x7a00ce4""]" 0 706 0x7eebc8c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 7f 84 7b ae c2 d5 4d 4e 9e 66 ab 15 77 cc 54 04 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T16:20:23.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x2c2"",""0x7eebc8c"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x2c2"",""0x7eebc8c"",""0x206"",""0x3"",""0x7a00ce4""]" 1 518 0x3 +2026-04-25T16:20:23.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x2c2"",""0x7eebc8c"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x2c2"",""0x7eebc8c"",""0x206"",""0x3"",""0x7a00ce4""]" 2 3 0x7a00ce4 f0 ac 9f +2026-04-25T16:20:23.325Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:20:23.328Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x97"",""0x7ee4554"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x97"",""0x7ee4554"",""0x206"",""0x3"",""0x7a00ce4""]" 0 151 0x7ee4554 97 00 00 00 01 00 69 00 00 00 00 00 00 00 dd 18 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 7f 84 7b ae c2 d5 4d 4e 9e 66 ab 15 77 cc 54 04 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T16:20:23.328Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x97"",""0x7ee4554"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x97"",""0x7ee4554"",""0x206"",""0x3"",""0x7a00ce4""]" 1 518 0x3 +2026-04-25T16:20:23.328Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x940c738 "[""0x97"",""0x7ee4554"",""0x769ea70"",""0x76ffedd8"",""0x940c744"",""0x97"",""0x7ee4554"",""0x206"",""0x3"",""0x7a00ce4""]" 2 3 0x7a00ce4 f0 ac 9f +2026-04-25T16:20:23.330Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:20:28.165Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x940c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x94de3d8"",""0xd5eaf0"",""0x7fa9fbd""]" 0 2 0x2 +2026-04-25T16:20:28.165Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x940c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x94de3d8"",""0xd5eaf0"",""0x7fa9fbd""]" 1 37 0x94de3d8 21 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T16:20:28.166Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x940c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9d9f020"",""0x91f6ccbe"",""0xd5eb40"",""0xd5eb30"",""0x641add04"",""0x64""]" 0 83 0x9d9f020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T16:20:28.167Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:20:28.167Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/058-frida-subscribe-testint/frida-exit.txt b/captures/058-frida-subscribe-testint/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/058-frida-subscribe-testint/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/058-frida-subscribe-testint/frida.stderr.txt b/captures/058-frida-subscribe-testint/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/058-frida-subscribe-testint/frida.stdout.jsonl b/captures/058-frida-subscribe-testint/frida.stdout.jsonl new file mode 100644 index 0000000..92e4bbe --- /dev/null +++ b/captures/058-frida-subscribe-testint/frida.stdout.jsonl @@ -0,0 +1,47 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=5 --tag=TestChildObject.TestInt --log=C:\Users\dohertj2\Desktop\mxaccess\captures\058-frida-subscribe-testint\harness.log --client=MxFridaTrace-058-frida-subscribe-testint`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=5 --tag=TestChildObject.TestInt --log=C:\Users\dohertj2\Desktop\mxaccess\captures\058-frida-subscribe-testint\harness.log --client=MxFridaTrace-058-frida-subscribe-testint`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T16:20:16.030Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T16:20:16.031Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T16:20:16.031Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T16:20:16.031Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T16:20:16.032Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T16:20:22.980Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T16:20:22.981Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T16:20:22.981Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T16:20:22.982Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xd5edd0","args":["0x5f08ff0","0x1","0x1","0x50140526","0x74794704"],"time":"2026-04-25T16:20:23.134Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T16:20:23.134Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x940c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9410648","0xd5ea94","0x7fa9fd1"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9410648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 40 09 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 41 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T16:20:23.263Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x940c738","args":["0x1","0x1","0x1","0x168","0x9d9f020","0x91f6cca2","0x9410214","0x9410204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9d9f020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 40 09 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 41 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T16:20:23.265Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:20:23.266Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:20:23.266Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x940c738","0x1","0x1","0x2","0x2","0x0","0x27","0x94de738","0xd5ea94","0x7fa9fd1"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x94de738","hex":"1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T16:20:23.266Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x940c738","args":["0x1","0x1","0x2","0x55","0x9d9f020","0x91f6cca2","0x94ea5ec","0x94ea5dc","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9d9f020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T16:20:23.267Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:20:23.268Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:20:23.268Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x940c738","args":["0x5c","0x79c4d94","0x769ea70","0x76ffedd8","0x940c744","0x5c","0x79c4d94","0x206","0x3","0x7a00ce4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x79c4d94","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 db 4e 14 ba e9 25 85 47 81 e4 e0 e7 1a d2 b1 aa c0 ca 9c cd 32 65 b0 46 a5 85 a5 83"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a00ce4","hex":"f0 ac 9f"}],"time":"2026-04-25T16:20:23.315Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:20:23.317Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x940c738","args":["0x6c","0x7ee6764","0x769ea70","0x76ffedd8","0x940c744","0x6c","0x7ee6764","0x206","0x3","0x7a00ce4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7ee6764","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 5d 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 db 4e 14 ba e9 25 85 47 81 e4 e0 e7 1a d2 b1 aa c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 03 00 00 00 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a00ce4","hex":"f0 ac 9f"}],"time":"2026-04-25T16:20:23.319Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:20:23.320Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x940c738","args":["0x2c2","0x7eebc8c","0x769ea70","0x76ffedd8","0x940c744","0x2c2","0x7eebc8c","0x206","0x3","0x7a00ce4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7eebc8c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 7f 84 7b ae c2 d5 4d 4e 9e 66 ab 15 77 cc 54 04 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a00ce4","hex":"f0 ac 9f"}],"time":"2026-04-25T16:20:23.324Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:20:23.325Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x940c738","args":["0x97","0x7ee4554","0x769ea70","0x76ffedd8","0x940c744","0x97","0x7ee4554","0x206","0x3","0x7a00ce4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7ee4554","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 dd 18 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 7f 84 7b ae c2 d5 4d 4e 9e 66 ab 15 77 cc 54 04 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7a00ce4","hex":"f0 ac 9f"}],"time":"2026-04-25T16:20:23.328Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:20:23.330Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x940c738","0x1","0x1","0x2","0x2","0x0","0x25","0x94de3d8","0xd5eaf0","0x7fa9fbd"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x94de3d8","hex":"21 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T16:20:28.165Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x940c738","args":["0x1","0x1","0x2","0x53","0x9d9f020","0x91f6ccbe","0xd5eb40","0xd5eb30","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9d9f020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T16:20:28.166Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:20:28.167Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:20:28.167Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/058-frida-subscribe-testint/harness.log b/captures/058-frida-subscribe-testint/harness.log new file mode 100644 index 0000000..37a8b0a --- /dev/null +++ b/captures/058-frida-subscribe-testint/harness.log @@ -0,0 +1,14 @@ +2026-04-25T16:20:15.9479394+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-058-frida-subscribe-testint","Tags":["TestChildObject.TestInt"],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T16:20:22.7351472+00:00 mx.register.begin {"ClientName":"MxFridaTrace-058-frida-subscribe-testint"} +2026-04-25T16:20:23.1299491+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T16:20:23.1299491+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T16:20:23.1319608+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T16:20:23.1339451+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T16:20:23.1359657+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T16:20:28.1536062+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T16:20:28.1536062+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T16:20:28.1536062+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T16:20:28.1536062+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T16:20:28.1546071+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T16:20:32.0839517+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T16:20:32.0899501+00:00 harness.stop {} diff --git a/captures/059-frida-subscribe-testbool/frida-command.txt b/captures/059-frida-subscribe-testbool/frida-command.txt new file mode 100644 index 0000000..398cd70 --- /dev/null +++ b/captures/059-frida-subscribe-testbool/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --duration=3 --tag=TestChildObject.TestBool --log=C:\Users\dohertj2\Desktop\mxaccess\captures\059-frida-subscribe-testbool\harness.log --client=MxFridaTrace-059-frida-subscribe-testbool diff --git a/captures/059-frida-subscribe-testbool/frida-events.tsv b/captures/059-frida-subscribe-testbool/frida-events.tsv new file mode 100644 index 0000000..9285604 --- /dev/null +++ b/captures/059-frida-subscribe-testbool/frida-events.tsv @@ -0,0 +1,43 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T16:39:04.482Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T16:39:04.483Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T16:39:04.484Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T16:39:04.485Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T16:39:04.486Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T16:39:18.994Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T16:39:18.994Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T16:39:18.995Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T16:39:18.996Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T16:39:19.054Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xfceea0 "[""0x6548ff0"",""0x1"",""0x1"",""0xfc833218"",""0x74794704""]" +2026-04-25T16:39:19.055Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T16:39:19.182Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x988c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9890648"",""0xfceb64"",""0xa729c76a""]" 0 1 0x2 +2026-04-25T16:39:19.182Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x988c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9890648"",""0xfceb64"",""0xa729c76a""]" 1 314 0x9890648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 88 09 1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 89 09 20 01 00 02 00 00 00 +2026-04-25T16:39:19.186Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x988c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa352020"",""0xfed66ff7"",""0x9890214"",""0x9890204"",""0x641add04"",""0x64""]" 0 360 0xa352020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 88 09 1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 89 09 20 01 00 02 00 00 00 +2026-04-25T16:39:19.187Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:39:19.187Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T16:39:19.188Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x988c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x995ce60"",""0xfceb64"",""0xa729c76a""]" 0 2 0x2 +2026-04-25T16:39:19.188Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x988c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x995ce60"",""0xfceb64"",""0xa729c76a""]" 1 39 0x995ce60 1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T16:39:19.190Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x988c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa352020"",""0xfed66ff7"",""0x9969584"",""0x9969574"",""0x641add04"",""0x64""]" 0 85 0xa352020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T16:39:19.191Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:39:19.191Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T16:39:19.213Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x2c2"",""0x8362d74"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x2c2"",""0x8362d74"",""0x206"",""0x3"",""0x7e9acfc""]" 0 706 0x8362d74 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 21 e7 d6 93 98 1c e4 41 b6 a8 c9 dc f9 f8 48 1d 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T16:39:19.213Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x2c2"",""0x8362d74"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x2c2"",""0x8362d74"",""0x206"",""0x3"",""0x7e9acfc""]" 1 518 0x3 +2026-04-25T16:39:19.213Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x2c2"",""0x8362d74"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x2c2"",""0x8362d74"",""0x206"",""0x3"",""0x7e9acfc""]" 2 3 0x7e9acfc c0 87 d6 +2026-04-25T16:39:19.215Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:19.219Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x97"",""0x835500c"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x97"",""0x835500c"",""0x206"",""0x3"",""0x7e9acfc""]" 0 151 0x835500c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 a1 2a 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 21 e7 d6 93 98 1c e4 41 b6 a8 c9 dc f9 f8 48 1d 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T16:39:19.219Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x97"",""0x835500c"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x97"",""0x835500c"",""0x206"",""0x3"",""0x7e9acfc""]" 1 518 0x3 +2026-04-25T16:39:19.219Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x97"",""0x835500c"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x97"",""0x835500c"",""0x206"",""0x3"",""0x7e9acfc""]" 2 3 0x7e9acfc c0 87 d6 +2026-04-25T16:39:19.220Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:19.222Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x5c"",""0x8362d74"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x5c"",""0x8362d74"",""0x206"",""0x3"",""0x7e9acfc""]" 0 92 0x8362d74 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 da aa 28 18 65 47 f8 49 99 98 3e 98 06 0c 1c b6 46 86 88 6b e0 16 13 4f 9a 88 2b bc +2026-04-25T16:39:19.222Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x5c"",""0x8362d74"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x5c"",""0x8362d74"",""0x206"",""0x3"",""0x7e9acfc""]" 1 518 0x3 +2026-04-25T16:39:19.222Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x5c"",""0x8362d74"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x5c"",""0x8362d74"",""0x206"",""0x3"",""0x7e9acfc""]" 2 3 0x7e9acfc c0 87 d6 +2026-04-25T16:39:19.223Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:19.226Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x69"",""0x835500c"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x69"",""0x835500c"",""0x206"",""0x3"",""0x7e9acfc""]" 0 105 0x835500c 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 5f 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 da aa 28 18 65 47 f8 49 99 98 3e 98 06 0c 1c b6 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 03 00 00 00 03 00 00 00 c0 00 70 da ae 22 7c d4 +2026-04-25T16:39:19.226Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x69"",""0x835500c"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x69"",""0x835500c"",""0x206"",""0x3"",""0x7e9acfc""]" 1 518 0x3 +2026-04-25T16:39:19.226Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x988c738 "[""0x69"",""0x835500c"",""0x7bceac0"",""0x76ffedd8"",""0x988c744"",""0x69"",""0x835500c"",""0x206"",""0x3"",""0x7e9acfc""]" 2 3 0x7e9acfc c0 87 d6 +2026-04-25T16:39:19.227Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:22.113Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x988c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x995ce60"",""0xfcebc0"",""0xa729c786""]" 0 2 0x2 +2026-04-25T16:39:22.113Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x988c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x995ce60"",""0xfcebc0"",""0xa729c786""]" 1 37 0x995ce60 21 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T16:39:22.114Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x988c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0xa352020"",""0xfed66f8b"",""0xfcec10"",""0xfcec00"",""0x641add04"",""0x64""]" 0 83 0xa352020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T16:39:22.114Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:39:22.114Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/059-frida-subscribe-testbool/frida-exit.txt b/captures/059-frida-subscribe-testbool/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/059-frida-subscribe-testbool/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/059-frida-subscribe-testbool/frida.stderr.txt b/captures/059-frida-subscribe-testbool/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/059-frida-subscribe-testbool/frida.stdout.jsonl b/captures/059-frida-subscribe-testbool/frida.stdout.jsonl new file mode 100644 index 0000000..855e820 --- /dev/null +++ b/captures/059-frida-subscribe-testbool/frida.stdout.jsonl @@ -0,0 +1,47 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=3 --tag=TestChildObject.TestBool --log=C:\Users\dohertj2\Desktop\mxaccess\captures\059-frida-subscribe-testbool\harness.log --client=MxFridaTrace-059-frida-subscribe-testbool`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=3 --tag=TestChildObject.TestBool --log=C:\Users\dohertj2\Desktop\mxaccess\captures\059-frida-subscribe-testbool\harness.log --client=MxFridaTrace-059-frida-subscribe-testbool`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T16:39:04.482Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T16:39:04.483Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T16:39:04.484Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T16:39:04.485Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T16:39:04.486Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T16:39:18.994Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T16:39:18.994Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T16:39:18.995Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T16:39:18.996Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xfceea0","args":["0x6548ff0","0x1","0x1","0xfc833218","0x74794704"],"time":"2026-04-25T16:39:19.054Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T16:39:19.055Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x988c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9890648","0xfceb64","0xa729c76a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9890648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 88 09 1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 89 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T16:39:19.182Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x988c738","args":["0x1","0x1","0x1","0x168","0xa352020","0xfed66ff7","0x9890214","0x9890204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa352020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 88 09 1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 89 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T16:39:19.186Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:39:19.187Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:39:19.187Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x988c738","0x1","0x1","0x2","0x2","0x0","0x27","0x995ce60","0xfceb64","0xa729c76a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x995ce60","hex":"1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:19.188Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x988c738","args":["0x1","0x1","0x2","0x55","0xa352020","0xfed66ff7","0x9969584","0x9969574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa352020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:19.190Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:39:19.191Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:39:19.191Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x988c738","args":["0x2c2","0x8362d74","0x7bceac0","0x76ffedd8","0x988c744","0x2c2","0x8362d74","0x206","0x3","0x7e9acfc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x8362d74","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 21 e7 d6 93 98 1c e4 41 b6 a8 c9 dc f9 f8 48 1d 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e9acfc","hex":"c0 87 d6"}],"time":"2026-04-25T16:39:19.213Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:19.215Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x988c738","args":["0x97","0x835500c","0x7bceac0","0x76ffedd8","0x988c744","0x97","0x835500c","0x206","0x3","0x7e9acfc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x835500c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 a1 2a 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 21 e7 d6 93 98 1c e4 41 b6 a8 c9 dc f9 f8 48 1d 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e9acfc","hex":"c0 87 d6"}],"time":"2026-04-25T16:39:19.219Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:19.220Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x988c738","args":["0x5c","0x8362d74","0x7bceac0","0x76ffedd8","0x988c744","0x5c","0x8362d74","0x206","0x3","0x7e9acfc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8362d74","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 da aa 28 18 65 47 f8 49 99 98 3e 98 06 0c 1c b6 46 86 88 6b e0 16 13 4f 9a 88 2b bc"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e9acfc","hex":"c0 87 d6"}],"time":"2026-04-25T16:39:19.222Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:19.223Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x988c738","args":["0x69","0x835500c","0x7bceac0","0x76ffedd8","0x988c744","0x69","0x835500c","0x206","0x3","0x7e9acfc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x835500c","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 5f 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 da aa 28 18 65 47 f8 49 99 98 3e 98 06 0c 1c b6 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 03 00 00 00 03 00 00 00 c0 00 70 da ae 22 7c d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e9acfc","hex":"c0 87 d6"}],"time":"2026-04-25T16:39:19.226Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:19.227Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x988c738","0x1","0x1","0x2","0x2","0x0","0x25","0x995ce60","0xfcebc0","0xa729c786"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x995ce60","hex":"21 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:22.113Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x988c738","args":["0x1","0x1","0x2","0x53","0xa352020","0xfed66f8b","0xfcec10","0xfcec00","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa352020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:22.114Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:39:22.114Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:39:22.114Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/059-frida-subscribe-testbool/harness.log b/captures/059-frida-subscribe-testbool/harness.log new file mode 100644 index 0000000..2b777eb --- /dev/null +++ b/captures/059-frida-subscribe-testbool/harness.log @@ -0,0 +1,14 @@ +2026-04-25T16:39:04.3910670+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-059-frida-subscribe-testbool","Tags":["TestChildObject.TestBool"],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T16:39:18.6752358+00:00 mx.register.begin {"ClientName":"MxFridaTrace-059-frida-subscribe-testbool"} +2026-04-25T16:39:19.0509439+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T16:39:19.0519685+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-25T16:39:19.0529445+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T16:39:19.0549455+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T16:39:19.0559426+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T16:39:22.0942831+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T16:39:22.0952808+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T16:39:22.0952808+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T16:39:22.0952808+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T16:39:22.0952808+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T16:39:25.9151727+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T16:39:25.9211726+00:00 harness.stop {} diff --git a/captures/060-frida-subscribe-teststring/frida-command.txt b/captures/060-frida-subscribe-teststring/frida-command.txt new file mode 100644 index 0000000..0da6704 --- /dev/null +++ b/captures/060-frida-subscribe-teststring/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --duration=3 --tag=TestChildObject.TestString --log=C:\Users\dohertj2\Desktop\mxaccess\captures\060-frida-subscribe-teststring\harness.log --client=MxFridaTrace-060-frida-subscribe-teststring diff --git a/captures/060-frida-subscribe-teststring/frida-events.tsv b/captures/060-frida-subscribe-teststring/frida-events.tsv new file mode 100644 index 0000000..fe9ea2a --- /dev/null +++ b/captures/060-frida-subscribe-teststring/frida-events.tsv @@ -0,0 +1,43 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T16:39:04.487Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T16:39:04.488Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T16:39:04.488Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T16:39:04.489Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T16:39:04.489Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T16:39:11.937Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T16:39:11.938Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T16:39:11.939Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T16:39:11.940Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T16:39:12.092Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xd3eef0 "[""0x5e38ff0"",""0x1"",""0x1"",""0x4ed46c2e"",""0x74794704""]" +2026-04-25T16:39:12.093Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T16:39:12.220Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93ec738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x93f0648"",""0xd3ebb4"",""0x2c608167""]" 0 1 0x2 +2026-04-25T16:39:12.220Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93ec738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x93f0648"",""0xd3ebb4"",""0x2c608167""]" 1 314 0x93f0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 3e 09 1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 3f 09 20 01 00 02 00 00 00 +2026-04-25T16:39:12.223Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93ec738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9d79020"",""0x2fef99ee"",""0x93f0214"",""0x93f0204"",""0x641add04"",""0x64""]" 0 360 0x9d79020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 3e 09 1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 3f 09 20 01 00 02 00 00 00 +2026-04-25T16:39:12.224Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:39:12.224Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T16:39:12.225Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x94be378"",""0xd3ebb4"",""0x2c608167""]" 0 2 0x2 +2026-04-25T16:39:12.225Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x94be378"",""0xd3ebb4"",""0x2c608167""]" 1 39 0x94be378 1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T16:39:12.227Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93ec738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9d79020"",""0x2fef99ee"",""0x94c9584"",""0x94c9574"",""0x641add04"",""0x64""]" 0 85 0x9d79020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T16:39:12.227Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:39:12.228Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T16:39:12.269Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x2c2"",""0x1139b3c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x2c2"",""0x1139b3c"",""0x206"",""0x3"",""0x79edc04""]" 0 706 0x1139b3c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0a 18 25 03 6d ae e3 43 8d 37 6d 6c f0 ad b2 bf 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T16:39:12.269Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x2c2"",""0x1139b3c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x2c2"",""0x1139b3c"",""0x206"",""0x3"",""0x79edc04""]" 1 518 0x3 +2026-04-25T16:39:12.269Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x2c2"",""0x1139b3c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x2c2"",""0x1139b3c"",""0x206"",""0x3"",""0x79edc04""]" 2 3 0x79edc04 78 11 88 +2026-04-25T16:39:12.271Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:12.274Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x97"",""0x113792c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x97"",""0x113792c"",""0x206"",""0x3"",""0x79edc04""]" 0 151 0x113792c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 84 2a 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0a 18 25 03 6d ae e3 43 8d 37 6d 6c f0 ad b2 bf 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T16:39:12.274Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x97"",""0x113792c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x97"",""0x113792c"",""0x206"",""0x3"",""0x79edc04""]" 1 518 0x3 +2026-04-25T16:39:12.274Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x97"",""0x113792c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x97"",""0x113792c"",""0x206"",""0x3"",""0x79edc04""]" 2 3 0x79edc04 78 11 88 +2026-04-25T16:39:12.275Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:12.281Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x5c"",""0x1139b3c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x5c"",""0x1139b3c"",""0x206"",""0x3"",""0x79edc04""]" 0 92 0x1139b3c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 2d 4a 4d b9 a7 7f 49 41 a0 13 22 ca 6c 81 c0 9f 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 +2026-04-25T16:39:12.281Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x5c"",""0x1139b3c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x5c"",""0x1139b3c"",""0x206"",""0x3"",""0x79edc04""]" 1 518 0x3 +2026-04-25T16:39:12.281Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x5c"",""0x1139b3c"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x5c"",""0x1139b3c"",""0x206"",""0x3"",""0x79edc04""]" 2 3 0x79edc04 78 11 88 +2026-04-25T16:39:12.282Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:12.285Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x80"",""0x112f0ec"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x80"",""0x112f0ec"",""0x206"",""0x3"",""0x79edc04""]" 0 128 0x112f0ec 80 00 00 00 01 00 52 00 00 00 00 00 00 00 5e 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 2d 4a 4d b9 a7 7f 49 41 a0 13 22 ca 6c 81 c0 9f 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 03 00 00 00 03 00 00 00 c0 00 90 4e 52 68 7c d4 dc 01 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 +2026-04-25T16:39:12.285Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x80"",""0x112f0ec"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x80"",""0x112f0ec"",""0x206"",""0x3"",""0x79edc04""]" 1 518 0x3 +2026-04-25T16:39:12.285Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93ec738 "[""0x80"",""0x112f0ec"",""0x769eba8"",""0x76ffedd8"",""0x93ec744"",""0x80"",""0x112f0ec"",""0x206"",""0x3"",""0x79edc04""]" 2 3 0x79edc04 78 11 88 +2026-04-25T16:39:12.286Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T16:39:15.147Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x94be9f0"",""0xd3ec10"",""0x2c60814b""]" 0 2 0x2 +2026-04-25T16:39:15.147Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93ec738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x94be9f0"",""0xd3ec10"",""0x2c60814b""]" 1 37 0x94be9f0 21 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T16:39:15.148Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93ec738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9d79020"",""0x2fef99f2"",""0xd3ec60"",""0xd3ec50"",""0x641add04"",""0x64""]" 0 83 0x9d79020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T16:39:15.149Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T16:39:15.149Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/060-frida-subscribe-teststring/frida-exit.txt b/captures/060-frida-subscribe-teststring/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/060-frida-subscribe-teststring/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/060-frida-subscribe-teststring/frida.stderr.txt b/captures/060-frida-subscribe-teststring/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/060-frida-subscribe-teststring/frida.stdout.jsonl b/captures/060-frida-subscribe-teststring/frida.stdout.jsonl new file mode 100644 index 0000000..a79dc80 --- /dev/null +++ b/captures/060-frida-subscribe-teststring/frida.stdout.jsonl @@ -0,0 +1,47 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=3 --tag=TestChildObject.TestString --log=C:\Users\dohertj2\Desktop\mxaccess\captures\060-frida-subscribe-teststring\harness.log --client=MxFridaTrace-060-frida-subscribe-teststring`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=3 --tag=TestChildObject.TestString --log=C:\Users\dohertj2\Desktop\mxaccess\captures\060-frida-subscribe-teststring\harness.log --client=MxFridaTrace-060-frida-subscribe-teststring`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T16:39:04.487Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T16:39:04.488Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T16:39:04.488Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T16:39:04.489Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T16:39:04.489Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T16:39:11.937Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T16:39:11.938Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T16:39:11.939Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T16:39:11.940Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xd3eef0","args":["0x5e38ff0","0x1","0x1","0x4ed46c2e","0x74794704"],"time":"2026-04-25T16:39:12.092Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T16:39:12.093Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93ec738","0x1","0x1","0x1","0x2","0x0","0x13a","0x93f0648","0xd3ebb4","0x2c608167"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x93f0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 3e 09 1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 3f 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T16:39:12.220Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93ec738","args":["0x1","0x1","0x1","0x168","0x9d79020","0x2fef99ee","0x93f0214","0x93f0204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9d79020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 3e 09 1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 3f 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T16:39:12.223Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:39:12.224Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:39:12.224Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93ec738","0x1","0x1","0x2","0x2","0x0","0x27","0x94be378","0xd3ebb4","0x2c608167"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x94be378","hex":"1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:12.225Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93ec738","args":["0x1","0x1","0x2","0x55","0x9d79020","0x2fef99ee","0x94c9584","0x94c9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9d79020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:12.227Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:39:12.227Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:39:12.228Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93ec738","args":["0x2c2","0x1139b3c","0x769eba8","0x76ffedd8","0x93ec744","0x2c2","0x1139b3c","0x206","0x3","0x79edc04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x1139b3c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0a 18 25 03 6d ae e3 43 8d 37 6d 6c f0 ad b2 bf 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79edc04","hex":"78 11 88"}],"time":"2026-04-25T16:39:12.269Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:12.271Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93ec738","args":["0x97","0x113792c","0x769eba8","0x76ffedd8","0x93ec744","0x97","0x113792c","0x206","0x3","0x79edc04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x113792c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 84 2a 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0a 18 25 03 6d ae e3 43 8d 37 6d 6c f0 ad b2 bf 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79edc04","hex":"78 11 88"}],"time":"2026-04-25T16:39:12.274Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:12.275Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93ec738","args":["0x5c","0x1139b3c","0x769eba8","0x76ffedd8","0x93ec744","0x5c","0x1139b3c","0x206","0x3","0x79edc04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x1139b3c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 2d 4a 4d b9 a7 7f 49 41 a0 13 22 ca 6c 81 c0 9f 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79edc04","hex":"78 11 88"}],"time":"2026-04-25T16:39:12.281Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:12.282Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93ec738","args":["0x80","0x112f0ec","0x769eba8","0x76ffedd8","0x93ec744","0x80","0x112f0ec","0x206","0x3","0x79edc04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":128,"ptr":"0x112f0ec","hex":"80 00 00 00 01 00 52 00 00 00 00 00 00 00 5e 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 2d 4a 4d b9 a7 7f 49 41 a0 13 22 ca 6c 81 c0 9f 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 03 00 00 00 03 00 00 00 c0 00 90 4e 52 68 7c d4 dc 01 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x79edc04","hex":"78 11 88"}],"time":"2026-04-25T16:39:12.285Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T16:39:12.286Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93ec738","0x1","0x1","0x2","0x2","0x0","0x25","0x94be9f0","0xd3ec10","0x2c60814b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x94be9f0","hex":"21 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:15.147Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93ec738","args":["0x1","0x1","0x2","0x53","0x9d79020","0x2fef99f2","0xd3ec60","0xd3ec50","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9d79020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T16:39:15.148Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T16:39:15.149Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T16:39:15.149Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/060-frida-subscribe-teststring/harness.log b/captures/060-frida-subscribe-teststring/harness.log new file mode 100644 index 0000000..c8cec74 --- /dev/null +++ b/captures/060-frida-subscribe-teststring/harness.log @@ -0,0 +1,14 @@ +2026-04-25T16:39:04.3910670+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-060-frida-subscribe-teststring","Tags":["TestChildObject.TestString"],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T16:39:11.6943945+00:00 mx.register.begin {"ClientName":"MxFridaTrace-060-frida-subscribe-teststring"} +2026-04-25T16:39:12.0856537+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T16:39:12.0863017+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-25T16:39:12.0882879+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T16:39:12.0912902+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T16:39:12.0932962+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T16:39:15.1303427+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T16:39:15.1303427+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T16:39:15.1303427+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T16:39:15.1313580+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T16:39:15.1313580+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T16:39:22.2882938+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T16:39:22.2942693+00:00 harness.stop {} diff --git a/captures/061-frida-lmx-resolve-testint/frida-command.txt b/captures/061-frida-lmx-resolve-testint/frida-command.txt new file mode 100644 index 0000000..acf9eb4 --- /dev/null +++ b/captures/061-frida-lmx-resolve-testint/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --duration=5 --tag=TestChildObject.TestInt --log=C:\Users\dohertj2\Desktop\mxaccess\captures\061-frida-lmx-resolve-testint\harness.log --client=MxFridaTrace-061-frida-lmx-resolve-testint diff --git a/captures/061-frida-lmx-resolve-testint/frida-exit.txt b/captures/061-frida-lmx-resolve-testint/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/061-frida-lmx-resolve-testint/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/061-frida-lmx-resolve-testint/frida.stderr.txt b/captures/061-frida-lmx-resolve-testint/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/061-frida-lmx-resolve-testint/frida.stdout.jsonl b/captures/061-frida-lmx-resolve-testint/frida.stdout.jsonl new file mode 100644 index 0000000..3cc6696 --- /dev/null +++ b/captures/061-frida-lmx-resolve-testint/frida.stdout.jsonl @@ -0,0 +1,72 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=5 --tag=TestChildObject.TestInt --log=C:\Users\dohertj2\Desktop\mxaccess\captures\061-frida-lmx-resolve-testint\harness.log --client=MxFridaTrace-061-frida-lmx-resolve-testint`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --duration=5 --tag=TestChildObject.TestInt --log=C:\Users\dohertj2\Desktop\mxaccess\captures\061-frida-lmx-resolve-testint\harness.log --client=MxFridaTrace-061-frida-lmx-resolve-testint`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T17:16:41.489Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T17:16:41.490Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T17:16:41.491Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T17:16:41.492Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T17:16:41.494Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T17:16:48.538Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T17:16:48.539Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T17:16:48.541Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T17:16:48.541Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T17:16:48.542Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T17:16:48.542Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T17:16:48.543Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T17:16:48.641Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T17:16:48.642Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T17:16:48.642Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T17:16:48.643Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e7010","outPtr":"0xcfe920","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T17:16:48.698Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe920","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe920","time":"2026-04-25T17:16:48.699Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e7010","outPtr":"0xcfe920","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T17:16:48.699Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe920","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe920","time":"2026-04-25T17:16:48.700Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T17:16:48.792Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93920a8","outPtr":"0xcfee94","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfee94","time":"2026-04-25T17:16:48.793Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x92f0588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93bd718","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 a8 7c 2e 09 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 d7 3b 09 4c 1d f0 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 2e 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 3c 54 ef 00 00 00 00 00"},"time":"2026-04-25T17:16:48.794Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92f05d8","outPtr":"0xcfee24","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfee24","time":"2026-04-25T17:16:48.794Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92f05d8","outPtr":"0xcfee24","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfee24","time":"2026-04-25T17:16:48.794Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92f05d8","outPtr":"0xcfee24","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfee24","time":"2026-04-25T17:16:48.795Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x92f0588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93bd718","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 a8 7c 2e 09 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 d7 3b 09 4c 1d f0 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 2e 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 3c 54 ef 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T17:16:48.796Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T17:16:48.796Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfefe0","args":["0x5ef8ff0","0x1","0x1","0xdeedff8f","0x74794704"],"time":"2026-04-25T17:16:48.799Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e7010","outPtr":"0xcfee60","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T17:16:48.799Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfee60","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfee60","time":"2026-04-25T17:16:48.800Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e7010","outPtr":"0xcfdaf4","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T17:16:48.800Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfdaf4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfdaf4","time":"2026-04-25T17:16:48.800Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T17:16:48.801Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x92ec738","0x1","0x1","0x1","0x2","0x0","0x13a","0x92f0648","0xcfeca4","0x99b5ebe5"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x92f0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 2e 09 1f 01 00 ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 2f 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T17:16:48.927Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x92ec738","args":["0x1","0x1","0x1","0x168","0x9db4020","0x87180f0e","0x92f0214","0x92f0204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9db4020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 2e 09 1f 01 00 ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 2f 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T17:16:48.930Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T17:16:48.930Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T17:16:48.930Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x92ec738","0x1","0x1","0x2","0x2","0x0","0x27","0x93bd760","0xcfeca4","0x99b5ebe5"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x93bd760","hex":"1f 01 00 ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T17:16:48.931Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x92ec738","args":["0x1","0x1","0x2","0x55","0x9db4020","0x87180f0e","0x93c9584","0x93c9574","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9db4020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T17:16:48.933Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T17:16:48.933Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T17:16:48.934Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec738","args":["0x2c2","0x7d4c174","0x75dede8","0x76ffedd8","0x92ec744","0x2c2","0x7d4c174","0x206","0x3","0x78a70f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7d4c174","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 92 ca 88 78 b6 b4 65 42 b2 6e 32 14 71 8c 99 7f ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78a70f4","hex":"68 c3 f0"}],"time":"2026-04-25T17:16:48.943Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T17:16:48.945Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec738","args":["0x97","0x7db6ffc","0x75dede8","0x76ffedd8","0x92ec744","0x97","0x7db6ffc","0x206","0x3","0x78a70f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7db6ffc","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 2d 4c 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 92 ca 88 78 b6 b4 65 42 b2 6e 32 14 71 8c 99 7f ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78a70f4","hex":"68 c3 f0"}],"time":"2026-04-25T17:16:48.948Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T17:16:48.949Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec738","args":["0x5c","0x7d628a4","0x75dede8","0x76ffedd8","0x92ec744","0x5c","0x7d628a4","0x206","0x3","0x78a70f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7d628a4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 05 45 b3 df e6 95 cb 4b 87 94 b4 d1 78 8f 24 bb ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78a70f4","hex":"68 c3 f0"}],"time":"2026-04-25T17:16:48.954Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T17:16:48.956Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec738","args":["0x6c","0x7dba314","0x75dede8","0x76ffedd8","0x92ec744","0x6c","0x7dba314","0x206","0x3","0x78a70f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7dba314","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 60 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 05 45 b3 df e6 95 cb 4b 87 94 b4 d1 78 8f 24 bb ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 03 00 00 00 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78a70f4","hex":"68 c3 f0"}],"time":"2026-04-25T17:16:48.958Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T17:16:48.960Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x92ec738","0x1","0x1","0x2","0x2","0x0","0x25","0x93bd6d0","0xcfed00","0x99b5eb89"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x93bd6d0","hex":"21 01 00 ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T17:16:53.840Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x92ec738","args":["0x1","0x1","0x2","0x53","0x9db4020","0x87180ff2","0xcfed50","0xcfed40","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9db4020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 ff 1a 6c e5 a3 d3 1d 4a 92 1f f1 2e 18 f0 d9 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T17:16:53.841Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T17:16:53.841Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T17:16:53.842Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec738","args":["0x2e","0x7d628a4","0x75dede8","0x76ffedd8","0x92ec744","0x2e","0x7d628a4","0x206","0x3","0x78a70f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7d628a4","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78a70f4","hex":"68 c3 f0"}],"time":"2026-04-25T17:16:53.849Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T17:16:53.851Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/061-frida-lmx-resolve-testint/harness.log b/captures/061-frida-lmx-resolve-testint/harness.log new file mode 100644 index 0000000..ef8d492 --- /dev/null +++ b/captures/061-frida-lmx-resolve-testint/harness.log @@ -0,0 +1,14 @@ +2026-04-25T17:16:41.3929498+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-061-frida-lmx-resolve-testint","Tags":["TestChildObject.TestInt"],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T17:16:48.4099760+00:00 mx.register.begin {"ClientName":"MxFridaTrace-061-frida-lmx-resolve-testint"} +2026-04-25T17:16:48.7910699+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T17:16:48.7915851+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T17:16:48.7966566+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T17:16:48.7986013+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T17:16:48.8016516+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T17:16:53.8263195+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T17:16:53.8273201+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T17:16:53.8273201+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T17:16:53.8273201+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T17:16:53.8273201+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T17:16:57.7233501+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T17:16:57.7283498+00:00 harness.stop {} diff --git a/captures/062-frida-subscribe-intl-shortdesc/frida-command.txt b/captures/062-frida-subscribe-intl-shortdesc/frida-command.txt new file mode 100644 index 0000000..cb8270d --- /dev/null +++ b/captures/062-frida-subscribe-intl-shortdesc/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=TestChildObject.ShortDesc --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\062-frida-subscribe-intl-shortdesc\harness.log --client=MxFridaTrace-062-frida-subscribe-intl-shortdesc diff --git a/captures/062-frida-subscribe-intl-shortdesc/frida-events.tsv b/captures/062-frida-subscribe-intl-shortdesc/frida-events.tsv new file mode 100644 index 0000000..76e38ec --- /dev/null +++ b/captures/062-frida-subscribe-intl-shortdesc/frida-events.tsv @@ -0,0 +1,70 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T19:51:27.519Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T19:51:27.519Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T19:51:27.520Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T19:51:27.520Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T19:51:27.520Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T19:51:33.867Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:51:33.867Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T19:51:33.868Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T19:51:33.868Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:33.869Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:51:33.869Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T19:51:33.870Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T19:51:33.968Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T19:51:33.969Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T19:51:33.969Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T19:51:33.970Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T19:51:33.972Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:33.973Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fe930 [] +2026-04-25T19:51:33.973Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:33.973Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fe930 [] +2026-04-25T19:51:34.067Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T19:51:34.068Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8feeac [] +2026-04-25T19:51:34.069Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:51:34.070Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8fee3c [] +2026-04-25T19:51:34.070Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8fee3c [] +2026-04-25T19:51:34.070Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8fee3c [] +2026-04-25T19:51:34.071Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T19:51:34.071Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:51:34.073Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x8feffc "[""0x5ae8ff0"",""0x1"",""0x1"",""0xa1a37848"",""0x74794704""]" +2026-04-25T19:51:34.073Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:34.074Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fee7c [] +2026-04-25T19:51:34.074Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:34.074Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fdb10 [] +2026-04-25T19:51:34.075Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T19:51:34.199Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8f70648"",""0x8fecc0"",""0xfff3a01a""]" 0 1 0x2 +2026-04-25T19:51:34.199Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8f70648"",""0x8fecc0"",""0xfff3a01a""]" 1 314 0x8f70648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f6 08 1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 f7 08 20 01 00 02 00 00 00 +2026-04-25T19:51:34.202Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f6c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa107020"",""0x557438fd"",""0x8f70214"",""0x8f70204"",""0x641add04"",""0x0""]" 0 360 0xa107020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f6 08 1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 f7 08 20 01 00 02 00 00 00 +2026-04-25T19:51:34.203Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:51:34.203Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:51:34.204Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x903e7f8"",""0x8fecc0"",""0xfff3a01a""]" 0 2 0x2 +2026-04-25T19:51:34.204Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x903e7f8"",""0x8fecc0"",""0xfff3a01a""]" 1 39 0x903e7f8 1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T19:51:34.205Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f6c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa107020"",""0x557438fd"",""0x9049584"",""0x9049574"",""0x641add04"",""0x0""]" 0 85 0xa107020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T19:51:34.206Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:51:34.206Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:51:34.227Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x2c2"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x2c2"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 0 706 0x7593e84 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 4a d0 63 10 d9 97 81 44 ae 21 13 27 f5 98 c4 04 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T19:51:34.227Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x2c2"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x2c2"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 1 518 0x3 +2026-04-25T19:51:34.227Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x2c2"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x2c2"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 2 3 0x75b23e4 18 09 41 +2026-04-25T19:51:34.229Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:34.232Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x97"",""0x758c74c"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x97"",""0x758c74c"",""0x206"",""0x3"",""0x75b23e4""]" 0 151 0x758c74c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 0a df 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 4a d0 63 10 d9 97 81 44 ae 21 13 27 f5 98 c4 04 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T19:51:34.232Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x97"",""0x758c74c"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x97"",""0x758c74c"",""0x206"",""0x3"",""0x75b23e4""]" 1 518 0x3 +2026-04-25T19:51:34.232Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x97"",""0x758c74c"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x97"",""0x758c74c"",""0x206"",""0x3"",""0x75b23e4""]" 2 3 0x75b23e4 18 09 41 +2026-04-25T19:51:34.233Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:34.255Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x5c"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x5c"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 0 92 0x7593e84 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 bd 26 31 07 1d d2 76 4d b4 48 29 dd a2 53 1e 29 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d +2026-04-25T19:51:34.255Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x5c"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x5c"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 1 518 0x3 +2026-04-25T19:51:34.255Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x5c"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x5c"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 2 3 0x75b23e4 18 09 41 +2026-04-25T19:51:34.256Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:34.259Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x70"",""0x758c74c"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x70"",""0x758c74c"",""0x206"",""0x3"",""0x75b23e4""]" 0 112 0x758c74c 70 00 00 00 01 00 42 00 00 00 00 00 00 00 64 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 bd 26 31 07 1d d2 76 4d b4 48 29 dd a2 53 1e 29 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00 +2026-04-25T19:51:34.259Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x70"",""0x758c74c"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x70"",""0x758c74c"",""0x206"",""0x3"",""0x75b23e4""]" 1 518 0x3 +2026-04-25T19:51:34.259Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x70"",""0x758c74c"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x70"",""0x758c74c"",""0x206"",""0x3"",""0x75b23e4""]" 2 3 0x75b23e4 18 09 41 +2026-04-25T19:51:34.260Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:42.108Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x903e378"",""0x8fed1c"",""0xfff3a02e""]" 0 2 0x2 +2026-04-25T19:51:42.108Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8f6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x903e378"",""0x8fed1c"",""0xfff3a02e""]" 1 37 0x903e378 21 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T19:51:42.109Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8f6c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0xa107020"",""0x557438c9"",""0x8fed6c"",""0x8fed5c"",""0x641add04"",""0x0""]" 0 83 0xa107020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T19:51:42.110Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:51:42.110Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:51:42.120Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x2e"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x2e"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 0 46 0x7593e84 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-25T19:51:42.120Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x2e"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x2e"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 1 518 0x3 +2026-04-25T19:51:42.120Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8f6c738 "[""0x2e"",""0x7593e84"",""0x71ceab0"",""0x76ffedd8"",""0x8f6c744"",""0x2e"",""0x7593e84"",""0x206"",""0x3"",""0x75b23e4""]" 2 3 0x75b23e4 18 09 41 +2026-04-25T19:51:42.122Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/062-frida-subscribe-intl-shortdesc/frida-exit.txt b/captures/062-frida-subscribe-intl-shortdesc/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/062-frida-subscribe-intl-shortdesc/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/062-frida-subscribe-intl-shortdesc/frida.stderr.txt b/captures/062-frida-subscribe-intl-shortdesc/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/062-frida-subscribe-intl-shortdesc/frida.stdout.jsonl b/captures/062-frida-subscribe-intl-shortdesc/frida.stdout.jsonl new file mode 100644 index 0000000..5b6811b --- /dev/null +++ b/captures/062-frida-subscribe-intl-shortdesc/frida.stdout.jsonl @@ -0,0 +1,72 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.ShortDesc --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\062-frida-subscribe-intl-shortdesc\harness.log --client=MxFridaTrace-062-frida-subscribe-intl-shortdesc`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.ShortDesc --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\062-frida-subscribe-intl-shortdesc\harness.log --client=MxFridaTrace-062-frida-subscribe-intl-shortdesc`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T19:51:27.519Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T19:51:27.519Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T19:51:27.520Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T19:51:27.520Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T19:51:27.520Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T19:51:33.867Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T19:51:33.867Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T19:51:33.868Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T19:51:33.868Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T19:51:33.869Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T19:51:33.869Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T19:51:33.870Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T19:51:33.968Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T19:51:33.969Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T19:51:33.969Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T19:51:33.970Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8f67010","outPtr":"0x8fe930","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:51:33.972Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fe930","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x8fe930","time":"2026-04-25T19:51:33.973Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8f67010","outPtr":"0x8fe930","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:51:33.973Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fe930","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x8fe930","time":"2026-04-25T19:51:33.973Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T19:51:34.067Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9011478","outPtr":"0x8feeac","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x8feeac","time":"2026-04-25T19:51:34.068Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8f70588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x903e7b0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b8 e5 03 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 e7 03 09 6c 18 8c 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 f6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 84 65 d4 00 00 00 00 00"},"time":"2026-04-25T19:51:34.069Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8f705d8","outPtr":"0x8fee3c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x8fee3c","time":"2026-04-25T19:51:34.070Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8f705d8","outPtr":"0x8fee3c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x8fee3c","time":"2026-04-25T19:51:34.070Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8f705d8","outPtr":"0x8fee3c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x8fee3c","time":"2026-04-25T19:51:34.070Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8f70588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x903e7b0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b8 e5 03 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 e7 03 09 6c 18 8c 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 f6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 84 65 d4 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T19:51:34.071Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T19:51:34.071Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x8feffc","args":["0x5ae8ff0","0x1","0x1","0xa1a37848","0x74794704"],"time":"2026-04-25T19:51:34.073Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8f67010","outPtr":"0x8fee7c","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T19:51:34.073Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fee7c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x8fee7c","time":"2026-04-25T19:51:34.074Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8f67010","outPtr":"0x8fdb10","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T19:51:34.074Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fdb10","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x8fdb10","time":"2026-04-25T19:51:34.074Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T19:51:34.075Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f6c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8f70648","0x8fecc0","0xfff3a01a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8f70648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f6 08 1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 f7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T19:51:34.199Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f6c738","args":["0x1","0x1","0x1","0x168","0xa107020","0x557438fd","0x8f70214","0x8f70204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa107020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc f6 08 1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 f7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T19:51:34.202Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:51:34.203Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:51:34.203Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f6c738","0x1","0x1","0x2","0x2","0x0","0x27","0x903e7f8","0x8fecc0","0xfff3a01a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x903e7f8","hex":"1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:34.204Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f6c738","args":["0x1","0x1","0x2","0x55","0xa107020","0x557438fd","0x9049584","0x9049574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa107020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:34.205Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:51:34.206Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:51:34.206Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f6c738","args":["0x2c2","0x7593e84","0x71ceab0","0x76ffedd8","0x8f6c744","0x2c2","0x7593e84","0x206","0x3","0x75b23e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7593e84","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 4a d0 63 10 d9 97 81 44 ae 21 13 27 f5 98 c4 04 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75b23e4","hex":"18 09 41"}],"time":"2026-04-25T19:51:34.227Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:34.229Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f6c738","args":["0x97","0x758c74c","0x71ceab0","0x76ffedd8","0x8f6c744","0x97","0x758c74c","0x206","0x3","0x75b23e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x758c74c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 0a df 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 4a d0 63 10 d9 97 81 44 ae 21 13 27 f5 98 c4 04 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75b23e4","hex":"18 09 41"}],"time":"2026-04-25T19:51:34.232Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:34.233Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f6c738","args":["0x5c","0x7593e84","0x71ceab0","0x76ffedd8","0x8f6c744","0x5c","0x7593e84","0x206","0x3","0x75b23e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7593e84","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 bd 26 31 07 1d d2 76 4d b4 48 29 dd a2 53 1e 29 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75b23e4","hex":"18 09 41"}],"time":"2026-04-25T19:51:34.255Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:34.256Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f6c738","args":["0x70","0x758c74c","0x71ceab0","0x76ffedd8","0x8f6c744","0x70","0x758c74c","0x206","0x3","0x75b23e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x758c74c","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 64 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 bd 26 31 07 1d d2 76 4d b4 48 29 dd a2 53 1e 29 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75b23e4","hex":"18 09 41"}],"time":"2026-04-25T19:51:34.259Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:34.260Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8f6c738","0x1","0x1","0x2","0x2","0x0","0x25","0x903e378","0x8fed1c","0xfff3a02e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x903e378","hex":"21 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:42.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8f6c738","args":["0x1","0x1","0x2","0x53","0xa107020","0x557438c9","0x8fed6c","0x8fed5c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa107020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:42.109Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:51:42.110Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:51:42.110Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8f6c738","args":["0x2e","0x7593e84","0x71ceab0","0x76ffedd8","0x8f6c744","0x2e","0x7593e84","0x206","0x3","0x75b23e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7593e84","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75b23e4","hex":"18 09 41"}],"time":"2026-04-25T19:51:42.120Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:42.122Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/062-frida-subscribe-intl-shortdesc/harness.log b/captures/062-frida-subscribe-intl-shortdesc/harness.log new file mode 100644 index 0000000..1fda4f7 --- /dev/null +++ b/captures/062-frida-subscribe-intl-shortdesc/harness.log @@ -0,0 +1,14 @@ +2026-04-25T19:51:27.4190676+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-062-frida-subscribe-intl-shortdesc","Tags":["TestChildObject.ShortDesc"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:51:33.6995679+00:00 mx.register.begin {"ClientName":"MxFridaTrace-062-frida-subscribe-intl-shortdesc"} +2026-04-25T19:51:34.0659514+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:51:34.0659514+00:00 mx.additem.begin {"Tag":"TestChildObject.ShortDesc"} +2026-04-25T19:51:34.0729498+00:00 mx.additem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:51:34.0729498+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:51:34.0759523+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:51:42.0956161+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:51:42.0966153+00:00 mx.unadvise.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:51:42.0966153+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:51:42.0966153+00:00 mx.removeitem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:51:42.0966153+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:51:45.6202980+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:51:45.6262825+00:00 harness.stop {} diff --git a/captures/063-frida-subscribe-elapsed-time-deadband/frida-command.txt b/captures/063-frida-subscribe-elapsed-time-deadband/frida-command.txt new file mode 100644 index 0000000..ab9a33b --- /dev/null +++ b/captures/063-frida-subscribe-elapsed-time-deadband/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\063-frida-subscribe-elapsed-time-deadband\harness.log --client=MxFridaTrace-063-frida-subscribe-elapsed-time-deadband diff --git a/captures/063-frida-subscribe-elapsed-time-deadband/frida-events.tsv b/captures/063-frida-subscribe-elapsed-time-deadband/frida-events.tsv new file mode 100644 index 0000000..b245eb2 --- /dev/null +++ b/captures/063-frida-subscribe-elapsed-time-deadband/frida-events.tsv @@ -0,0 +1,66 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T19:51:27.538Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T19:51:27.539Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T19:51:27.539Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T19:51:27.540Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T19:51:27.540Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T19:51:40.329Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:51:40.330Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T19:51:40.331Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T19:51:40.332Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:40.333Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:51:40.333Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T19:51:40.334Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T19:51:40.407Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:40.407Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fea34 [] +2026-04-25T19:51:40.408Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:40.408Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fea34 [] +2026-04-25T19:51:40.428Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T19:51:40.430Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T19:51:40.430Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T19:51:40.430Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T19:51:40.501Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T19:51:40.502Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fef90 [] +2026-04-25T19:51:40.503Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:51:40.504Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fef20 [] +2026-04-25T19:51:40.505Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fef20 [] +2026-04-25T19:51:40.505Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fef20 [] +2026-04-25T19:51:40.506Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T19:51:40.506Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:51:40.508Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x6ff10c "[""0x5978ff0"",""0x1"",""0x1"",""0x8c75e496"",""0x74794704""]" +2026-04-25T19:51:40.508Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:40.508Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fef8c [] +2026-04-25T19:51:40.509Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:51:40.509Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fdc20 [] +2026-04-25T19:51:40.509Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T19:51:40.636Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d70648"",""0x6fedd0"",""0xedb8acd0""]" 0 1 0x2 +2026-04-25T19:51:40.636Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d70648"",""0x6fedd0"",""0xedb8acd0""]" 1 314 0x8d70648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d6 08 1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d7 08 20 01 00 02 00 00 00 +2026-04-25T19:51:40.639Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d6c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9713020"",""0x25697188"",""0x8d70214"",""0x8d70204"",""0x641add04"",""0x0""]" 0 360 0x9713020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d6 08 1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d7 08 20 01 00 02 00 00 00 +2026-04-25T19:51:40.639Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:51:40.640Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:51:40.641Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e3dfd0"",""0x6fedd0"",""0xedb8acd0""]" 0 2 0x2 +2026-04-25T19:51:40.641Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e3dfd0"",""0x6fedd0"",""0xedb8acd0""]" 1 39 0x8e3dfd0 1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T19:51:40.642Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d6c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9713020"",""0x25697188"",""0x8e49584"",""0x8e49574"",""0x641add04"",""0x0""]" 0 85 0x9713020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T19:51:40.642Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:51:40.643Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:51:40.652Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x5c"",""0xa0a924"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x5c"",""0xa0a924"",""0x206"",""0x3"",""0x74cdf94""]" 0 92 0xa0a924 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 00 c0 ac 3a 1a 83 b4 48 88 e6 43 56 87 4b 87 97 45 d3 97 30 68 7f b9 48 b8 c4 bf cd +2026-04-25T19:51:40.652Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x5c"",""0xa0a924"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x5c"",""0xa0a924"",""0x206"",""0x3"",""0x74cdf94""]" 1 518 0x3 +2026-04-25T19:51:40.652Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x5c"",""0xa0a924"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x5c"",""0xa0a924"",""0x206"",""0x3"",""0x74cdf94""]" 2 3 0x74cdf94 60 a9 9f +2026-04-25T19:51:40.654Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:40.657Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x70"",""0xa3bbac"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x70"",""0xa3bbac"",""0x206"",""0x3"",""0x74cdf94""]" 0 112 0xa3bbac 70 00 00 00 01 00 42 00 00 00 00 00 00 00 65 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 00 c0 ac 3a 1a 83 b4 48 88 e6 43 56 87 4b 87 97 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 00 00 00 +2026-04-25T19:51:40.657Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x70"",""0xa3bbac"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x70"",""0xa3bbac"",""0x206"",""0x3"",""0x74cdf94""]" 1 518 0x3 +2026-04-25T19:51:40.657Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x70"",""0xa3bbac"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x70"",""0xa3bbac"",""0x206"",""0x3"",""0x74cdf94""]" 2 3 0x74cdf94 60 a9 9f +2026-04-25T19:51:40.658Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:40.673Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x2c2"",""0x78cc0bc"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x2c2"",""0x78cc0bc"",""0x206"",""0x3"",""0x74cdf94""]" 0 706 0x78cc0bc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 6d 5e 2f 34 14 1f 63 47 81 8b 17 eb 0c b6 20 81 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T19:51:40.673Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x2c2"",""0x78cc0bc"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x2c2"",""0x78cc0bc"",""0x206"",""0x3"",""0x74cdf94""]" 1 518 0x3 +2026-04-25T19:51:40.673Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x2c2"",""0x78cc0bc"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x2c2"",""0x78cc0bc"",""0x206"",""0x3"",""0x74cdf94""]" 2 3 0x74cdf94 60 a9 9f +2026-04-25T19:51:40.675Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:40.678Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x97"",""0x78ce2cc"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x97"",""0x78ce2cc"",""0x206"",""0x3"",""0x74cdf94""]" 0 151 0x78ce2cc 97 00 00 00 01 00 69 00 00 00 00 00 00 00 25 df 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 6d 5e 2f 34 14 1f 63 47 81 8b 17 eb 0c b6 20 81 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T19:51:40.678Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x97"",""0x78ce2cc"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x97"",""0x78ce2cc"",""0x206"",""0x3"",""0x74cdf94""]" 1 518 0x3 +2026-04-25T19:51:40.678Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d6c738 "[""0x97"",""0x78ce2cc"",""0x717eb18"",""0x76ffedd8"",""0x8d6c744"",""0x97"",""0x78ce2cc"",""0x206"",""0x3"",""0x74cdf94""]" 2 3 0x74cdf94 60 a9 9f +2026-04-25T19:51:40.679Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:51:48.566Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8e3e0a8"",""0x6fee2c"",""0xedb8acc4""]" 0 2 0x2 +2026-04-25T19:51:48.566Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8e3e0a8"",""0x6fee2c"",""0xedb8acc4""]" 1 37 0x8e3e0a8 21 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T19:51:48.567Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d6c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9713020"",""0x2569719c"",""0x6fee7c"",""0x6fee6c"",""0x641add04"",""0x0""]" 0 83 0x9713020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T19:51:48.568Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:51:48.568Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/063-frida-subscribe-elapsed-time-deadband/frida-exit.txt b/captures/063-frida-subscribe-elapsed-time-deadband/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/063-frida-subscribe-elapsed-time-deadband/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/063-frida-subscribe-elapsed-time-deadband/frida.stderr.txt b/captures/063-frida-subscribe-elapsed-time-deadband/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/063-frida-subscribe-elapsed-time-deadband/frida.stdout.jsonl b/captures/063-frida-subscribe-elapsed-time-deadband/frida.stdout.jsonl new file mode 100644 index 0000000..3791736 --- /dev/null +++ b/captures/063-frida-subscribe-elapsed-time-deadband/frida.stdout.jsonl @@ -0,0 +1,70 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\063-frida-subscribe-elapsed-time-deadband\harness.log --client=MxFridaTrace-063-frida-subscribe-elapsed-time-deadband`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\063-frida-subscribe-elapsed-time-deadband\harness.log --client=MxFridaTrace-063-frida-subscribe-elapsed-time-deadband`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T19:51:27.538Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T19:51:27.539Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T19:51:27.539Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T19:51:27.540Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T19:51:27.540Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T19:51:40.329Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T19:51:40.330Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T19:51:40.331Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T19:51:40.332Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T19:51:40.333Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T19:51:40.333Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T19:51:40.334Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d67010","outPtr":"0x6fea34","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:51:40.407Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fea34","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fea34","time":"2026-04-25T19:51:40.407Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d67010","outPtr":"0x6fea34","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:51:40.408Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fea34","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fea34","time":"2026-04-25T19:51:40.408Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T19:51:40.428Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T19:51:40.430Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T19:51:40.430Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T19:51:40.430Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T19:51:40.501Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e10cd0","outPtr":"0x6fef90","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x6fef90","time":"2026-04-25T19:51:40.502Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d70588","referenceString":{"length":47,"capacity":47,"value":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e3dbe0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 48 ba d6 08 00 65 00 00 00 02 00 00 00 00 00 02 2f 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e0 db e3 08 e4 66 9f 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 d6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ec 65 a0 00 00 00 00 00"},"time":"2026-04-25T19:51:40.503Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d705d8","outPtr":"0x6fef20","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x6fef20","time":"2026-04-25T19:51:40.504Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d705d8","outPtr":"0x6fef20","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x6fef20","time":"2026-04-25T19:51:40.505Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d705d8","outPtr":"0x6fef20","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x6fef20","time":"2026-04-25T19:51:40.505Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d70588","referenceString":{"length":47,"capacity":47,"value":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e3dbe0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 48 ba d6 08 00 65 00 00 00 02 00 00 00 00 00 02 2f 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e0 db e3 08 e4 66 9f 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 d6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ec 65 a0 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T19:51:40.506Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T19:51:40.506Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6ff10c","args":["0x5978ff0","0x1","0x1","0x8c75e496","0x74794704"],"time":"2026-04-25T19:51:40.508Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d67010","outPtr":"0x6fef8c","inWords":[65537,393218,8320008,655485,22956,0],"time":"2026-04-25T19:51:40.508Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fef8c","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x6fef8c","time":"2026-04-25T19:51:40.508Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d67010","outPtr":"0x6fdc20","inWords":[65537,393218,8320008,655485,22956,0],"time":"2026-04-25T19:51:40.509Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fdc20","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x6fdc20","time":"2026-04-25T19:51:40.509Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T19:51:40.509Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d6c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8d70648","0x6fedd0","0xedb8acd0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8d70648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d6 08 1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T19:51:40.636Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d6c738","args":["0x1","0x1","0x1","0x168","0x9713020","0x25697188","0x8d70214","0x8d70204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9713020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d6 08 1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T19:51:40.639Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:51:40.639Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:51:40.640Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d6c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8e3dfd0","0x6fedd0","0xedb8acd0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8e3dfd0","hex":"1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:40.641Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d6c738","args":["0x1","0x1","0x2","0x55","0x9713020","0x25697188","0x8e49584","0x8e49574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9713020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:40.642Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:51:40.642Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:51:40.643Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d6c738","args":["0x5c","0xa0a924","0x717eb18","0x76ffedd8","0x8d6c744","0x5c","0xa0a924","0x206","0x3","0x74cdf94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xa0a924","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 00 c0 ac 3a 1a 83 b4 48 88 e6 43 56 87 4b 87 97 45 d3 97 30 68 7f b9 48 b8 c4 bf cd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74cdf94","hex":"60 a9 9f"}],"time":"2026-04-25T19:51:40.652Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:40.654Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d6c738","args":["0x70","0xa3bbac","0x717eb18","0x76ffedd8","0x8d6c744","0x70","0xa3bbac","0x206","0x3","0x74cdf94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0xa3bbac","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 65 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 00 c0 ac 3a 1a 83 b4 48 88 e6 43 56 87 4b 87 97 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74cdf94","hex":"60 a9 9f"}],"time":"2026-04-25T19:51:40.657Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:40.658Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d6c738","args":["0x2c2","0x78cc0bc","0x717eb18","0x76ffedd8","0x8d6c744","0x2c2","0x78cc0bc","0x206","0x3","0x74cdf94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x78cc0bc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 6d 5e 2f 34 14 1f 63 47 81 8b 17 eb 0c b6 20 81 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74cdf94","hex":"60 a9 9f"}],"time":"2026-04-25T19:51:40.673Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:40.675Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d6c738","args":["0x97","0x78ce2cc","0x717eb18","0x76ffedd8","0x8d6c744","0x97","0x78ce2cc","0x206","0x3","0x74cdf94"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x78ce2cc","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 25 df 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 6d 5e 2f 34 14 1f 63 47 81 8b 17 eb 0c b6 20 81 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74cdf94","hex":"60 a9 9f"}],"time":"2026-04-25T19:51:40.678Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:51:40.679Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d6c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8e3e0a8","0x6fee2c","0xedb8acc4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8e3e0a8","hex":"21 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:48.566Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d6c738","args":["0x1","0x1","0x2","0x53","0x9713020","0x2569719c","0x6fee7c","0x6fee6c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9713020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T19:51:48.567Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:51:48.568Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:51:48.568Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/063-frida-subscribe-elapsed-time-deadband/harness.log b/captures/063-frida-subscribe-elapsed-time-deadband/harness.log new file mode 100644 index 0000000..3255e9f --- /dev/null +++ b/captures/063-frida-subscribe-elapsed-time-deadband/harness.log @@ -0,0 +1,14 @@ +2026-04-25T19:51:27.4451527+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-063-frida-subscribe-elapsed-time-deadband","Tags":["TestMachine_001.TestAlarm001.Alarm.TimeDeadband"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:51:40.1400273+00:00 mx.register.begin {"ClientName":"MxFridaTrace-063-frida-subscribe-elapsed-time-deadband"} +2026-04-25T19:51:40.4999364+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:51:40.4999364+00:00 mx.additem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"} +2026-04-25T19:51:40.5069537+00:00 mx.additem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:51:40.5079440+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:51:40.5109235+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:51:48.5472543+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:51:48.5472543+00:00 mx.unadvise.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:51:48.5472543+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:51:48.5472543+00:00 mx.removeitem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:51:48.5482522+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:51:48.8887091+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:51:48.8967091+00:00 harness.stop {} diff --git a/captures/064-frida-subscribe-intl-percent/frida-command.txt b/captures/064-frida-subscribe-intl-percent/frida-command.txt new file mode 100644 index 0000000..8b8c064 --- /dev/null +++ b/captures/064-frida-subscribe-intl-percent/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=DevPlatform._EngUnitsPercent --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\064-frida-subscribe-intl-percent\harness.log --client=MxFridaTrace-064-frida-subscribe-intl-percent diff --git a/captures/064-frida-subscribe-intl-percent/frida-events.tsv b/captures/064-frida-subscribe-intl-percent/frida-events.tsv new file mode 100644 index 0000000..bc636bb --- /dev/null +++ b/captures/064-frida-subscribe-intl-percent/frida-events.tsv @@ -0,0 +1,53 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T19:54:59.868Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T19:54:59.869Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T19:54:59.870Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T19:54:59.870Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T19:54:59.871Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T19:55:06.914Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:55:06.915Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T19:55:06.916Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T19:55:06.916Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:06.917Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:55:06.917Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T19:55:06.918Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T19:55:07.015Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T19:55:07.016Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T19:55:07.017Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T19:55:07.018Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T19:55:07.072Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:07.073Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe464 [] +2026-04-25T19:55:07.073Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:07.073Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe464 [] +2026-04-25T19:55:07.168Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T19:55:07.170Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:55:07.170Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefe968 [] +2026-04-25T19:55:07.170Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefe954 [] +2026-04-25T19:55:07.171Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:07.171Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe954 [] +2026-04-25T19:55:07.171Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefd550 [] +2026-04-25T19:55:07.172Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefd550 [] +2026-04-25T19:55:07.172Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefd550 [] +2026-04-25T19:55:07.173Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefe968 [] +2026-04-25T19:55:07.173Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefe968 [] +2026-04-25T19:55:07.173Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefd51c [] +2026-04-25T19:55:07.175Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefd51c [] +2026-04-25T19:55:07.175Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T19:55:07.175Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:55:07.177Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xefeb2c "[""0x5fd8ff0"",""0x1"",""0x1"",""0xbd9ce1cd"",""0x74794704""]" +2026-04-25T19:55:07.177Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:07.179Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe9ac [] +2026-04-25T19:55:07.179Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T19:55:07.304Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x950c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x1ca"",""0x9510648"",""0xefe7f0"",""0x9cf61b62""]" 0 1 0x2 +2026-04-25T19:55:07.304Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x950c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x1ca"",""0x9510648"",""0xefe7f0"",""0x9cf61b62""]" 1 458 0x9510648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 50 09 1f 01 00 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 51 09 20 01 00 02 00 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 3a 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 ff ff 00 00 00 00 00 00 00 00 01 88 05 51 09 +2026-04-25T19:55:07.309Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x950c738 "[""0x1"",""0x1"",""0x1"",""0x1f8"",""0x9eb7020"",""0x9ba16637"",""0x9510214"",""0x9510204"",""0x641add04"",""0x0""]" 0 504 0x9eb7020 01 00 ca 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 50 09 1f 01 00 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 51 09 20 01 00 02 00 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 3a 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 ff ff 00 00 00 00 00 00 00 00 01 88 05 51 09 +2026-04-25T19:55:07.310Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:55:07.310Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:55:07.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x950c738 "[""0x3d3"",""0x80543ac"",""0x779eae0"",""0x76ffedd8"",""0x950c744"",""0x3d3"",""0x80543ac"",""0x206"",""0x3"",""0x7b0180c""]" 0 979 0x80543ac d3 03 00 00 01 00 a5 03 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 5e 28 9f 74 28 36 f6 4c be b3 c6 16 bc 76 32 dd 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 40 1f 50 80 08 98 00 00 00 3a 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 22 00 00 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 64 00 a9 00 0a 00 0d f3 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 +2026-04-25T19:55:07.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x950c738 "[""0x3d3"",""0x80543ac"",""0x779eae0"",""0x76ffedd8"",""0x950c744"",""0x3d3"",""0x80543ac"",""0x206"",""0x3"",""0x7b0180c""]" 1 518 0x3 +2026-04-25T19:55:07.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x950c738 "[""0x3d3"",""0x80543ac"",""0x779eae0"",""0x76ffedd8"",""0x950c744"",""0x3d3"",""0x80543ac"",""0x206"",""0x3"",""0x7b0180c""]" 2 3 0x7b0180c d0 46 a3 +2026-04-25T19:55:07.355Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:55:07.359Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x950c738 "[""0x97"",""0x805ff04"",""0x779eae0"",""0x76ffedd8"",""0x950c744"",""0x97"",""0x805ff04"",""0x206"",""0x3"",""0x7b0180c""]" 0 151 0x805ff04 97 00 00 00 01 00 69 00 00 00 00 00 00 00 62 e2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 5e 28 9f 74 28 36 f6 4c be b3 c6 16 bc 76 32 dd 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T19:55:07.359Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x950c738 "[""0x97"",""0x805ff04"",""0x779eae0"",""0x76ffedd8"",""0x950c744"",""0x97"",""0x805ff04"",""0x206"",""0x3"",""0x7b0180c""]" 1 518 0x3 +2026-04-25T19:55:07.359Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x950c738 "[""0x97"",""0x805ff04"",""0x779eae0"",""0x76ffedd8"",""0x950c744"",""0x97"",""0x805ff04"",""0x206"",""0x3"",""0x7b0180c""]" 2 3 0x7b0180c d0 46 a3 +2026-04-25T19:55:07.361Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/064-frida-subscribe-intl-percent/frida-exit.txt b/captures/064-frida-subscribe-intl-percent/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/064-frida-subscribe-intl-percent/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/064-frida-subscribe-intl-percent/frida.stderr.txt b/captures/064-frida-subscribe-intl-percent/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/064-frida-subscribe-intl-percent/frida.stdout.jsonl b/captures/064-frida-subscribe-intl-percent/frida.stdout.jsonl new file mode 100644 index 0000000..c869784 --- /dev/null +++ b/captures/064-frida-subscribe-intl-percent/frida.stdout.jsonl @@ -0,0 +1,63 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=DevPlatform._EngUnitsPercent --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\064-frida-subscribe-intl-percent\harness.log --client=MxFridaTrace-064-frida-subscribe-intl-percent`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=DevPlatform._EngUnitsPercent --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\064-frida-subscribe-intl-percent\harness.log --client=MxFridaTrace-064-frida-subscribe-intl-percent`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T19:54:59.868Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T19:54:59.869Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T19:54:59.870Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T19:54:59.870Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T19:54:59.871Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T19:55:06.914Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T19:55:06.915Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T19:55:06.916Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T19:55:06.916Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T19:55:06.917Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T19:55:06.917Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T19:55:06.918Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T19:55:07.015Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T19:55:07.016Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T19:55:07.017Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T19:55:07.018Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9507010","outPtr":"0xefe464","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:55:07.072Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe464","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xefe464","time":"2026-04-25T19:55:07.073Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9507010","outPtr":"0xefe464","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:55:07.073Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe464","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xefe464","time":"2026-04-25T19:55:07.073Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T19:55:07.168Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9510588","referenceString":{"length":28,"capacity":31,"value":"DevPlatform._EngUnitsPercent"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x95de960","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 f0 e9 5d 09 00 65 00 00 00 02 00 00 00 00 00 02 1c 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 e9 5d 09 b4 a4 a2 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 50 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 a4 54 1f 01 00 00 00 00"},"time":"2026-04-25T19:55:07.170Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefe968","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xefe968","time":"2026-04-25T19:55:07.170Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefe954","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xefe954","time":"2026-04-25T19:55:07.170Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9507010","outPtr":"0xefe954","inWords":[65537,65537,62035,0,0,0],"time":"2026-04-25T19:55:07.171Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe954","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefe954","time":"2026-04-25T19:55:07.171Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefd550","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefd550","time":"2026-04-25T19:55:07.171Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefd550","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefd550","time":"2026-04-25T19:55:07.172Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefd550","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefd550","time":"2026-04-25T19:55:07.172Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefe968","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefe968","time":"2026-04-25T19:55:07.173Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefe968","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefe968","time":"2026-04-25T19:55:07.173Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefd51c","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefd51c","time":"2026-04-25T19:55:07.173Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95105d8","outPtr":"0xefd51c","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefd51c","time":"2026-04-25T19:55:07.175Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9510588","referenceString":{"length":28,"capacity":31,"value":"DevPlatform._EngUnitsPercent"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x95de960","status":2,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 01 67 00 43 03 00 00 00 f0 e9 5d 09 00 65 00 00 00 02 00 00 00 00 00 02 1c 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 e9 5d 09 b4 a4 a2 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 50 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 a4 54 1f 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T19:55:07.175Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619204,"time":"2026-04-25T19:55:07.175Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xefeb2c","args":["0x5fd8ff0","0x1","0x1","0xbd9ce1cd","0x74794704"],"time":"2026-04-25T19:55:07.177Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9507010","outPtr":"0xefe9ac","inWords":[65537,65537,62035,0,0,0],"time":"2026-04-25T19:55:07.177Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe9ac","handle":{"raw":"01 00 01 00 01 00 01 00 53 f2 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":62035,"w3":0,"w4":0},"retval":"0xefe9ac","time":"2026-04-25T19:55:07.179Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T19:55:07.179Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x950c738","0x1","0x1","0x1","0x2","0x0","0x1ca","0x9510648","0xefe7f0","0x9cf61b62"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":458,"ptr":"0x9510648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 50 09 1f 01 00 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 51 09 20 01 00 02 00 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 3a 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 ff ff 00 00 00 00 00 00 00 00 01 88 05 51 09"}],"time":"2026-04-25T19:55:07.304Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x950c738","args":["0x1","0x1","0x1","0x1f8","0x9eb7020","0x9ba16637","0x9510214","0x9510204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":504,"ptr":"0x9eb7020","hex":"01 00 ca 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 50 09 1f 01 00 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 51 09 20 01 00 02 00 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 3a 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 ff ff 00 00 00 00 00 00 00 00 01 88 05 51 09"}],"time":"2026-04-25T19:55:07.309Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:55:07.310Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:55:07.310Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x950c738","args":["0x3d3","0x80543ac","0x779eae0","0x76ffedd8","0x950c744","0x3d3","0x80543ac","0x206","0x3","0x7b0180c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":979,"ptr":"0x80543ac","hex":"d3 03 00 00 01 00 a5 03 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 5e 28 9f 74 28 36 f6 4c be b3 c6 16 bc 76 32 dd 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 30 75 00 00 40 1f 50 80 08 98 00 00 00 3a 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 22 00 00 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 50 00 65 00 72 00 63 00 65 00 6e 00 74 00 00 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 64 00 a9 00 0a 00 0d f3 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7b0180c","hex":"d0 46 a3"}],"time":"2026-04-25T19:55:07.352Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:55:07.355Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x950c738","args":["0x97","0x805ff04","0x779eae0","0x76ffedd8","0x950c744","0x97","0x805ff04","0x206","0x3","0x7b0180c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x805ff04","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 62 e2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 5e 28 9f 74 28 36 f6 4c be b3 c6 16 bc 76 32 dd 52 c7 d7 40 49 87 92 43 8c 42 bc 3a 17 2c 9a 99 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7b0180c","hex":"d0 46 a3"}],"time":"2026-04-25T19:55:07.359Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:55:07.361Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/064-frida-subscribe-intl-percent/harness.log b/captures/064-frida-subscribe-intl-percent/harness.log new file mode 100644 index 0000000..b59e70a --- /dev/null +++ b/captures/064-frida-subscribe-intl-percent/harness.log @@ -0,0 +1,14 @@ +2026-04-25T19:54:59.7980277+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-064-frida-subscribe-intl-percent","Tags":["DevPlatform._EngUnitsPercent"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:55:06.7895886+00:00 mx.register.begin {"ClientName":"MxFridaTrace-064-frida-subscribe-intl-percent"} +2026-04-25T19:55:07.1669899+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:55:07.1669899+00:00 mx.additem.begin {"Tag":"DevPlatform._EngUnitsPercent"} +2026-04-25T19:55:07.1759804+00:00 mx.additem.end {"Tag":"DevPlatform._EngUnitsPercent","ItemHandle":1} +2026-04-25T19:55:07.1770000+00:00 mx.advise-supervisory.begin {"Tag":"DevPlatform._EngUnitsPercent","ItemHandle":1} +2026-04-25T19:55:07.1790626+00:00 mx.advise-supervisory.end {"Tag":"DevPlatform._EngUnitsPercent","ItemHandle":1} +2026-04-25T19:55:15.2160346+00:00 mx.unadvise.begin {"Tag":"DevPlatform._EngUnitsPercent","ItemHandle":1} +2026-04-25T19:55:15.2160346+00:00 mx.unadvise.end {"Tag":"DevPlatform._EngUnitsPercent","ItemHandle":1} +2026-04-25T19:55:15.2160346+00:00 mx.removeitem.begin {"Tag":"DevPlatform._EngUnitsPercent","ItemHandle":1} +2026-04-25T19:55:15.2170467+00:00 mx.removeitem.end {"Tag":"DevPlatform._EngUnitsPercent","ItemHandle":1} +2026-04-25T19:55:15.2170467+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:55:19.1165288+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:55:19.1225330+00:00 harness.stop {} diff --git a/captures/065-frida-subscribe-intl-mb/frida-command.txt b/captures/065-frida-subscribe-intl-mb/frida-command.txt new file mode 100644 index 0000000..9584649 --- /dev/null +++ b/captures/065-frida-subscribe-intl-mb/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=DevAppEngine.Scheduler._EngUnitsMB --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\065-frida-subscribe-intl-mb\harness.log --client=MxFridaTrace-065-frida-subscribe-intl-mb diff --git a/captures/065-frida-subscribe-intl-mb/frida-events.tsv b/captures/065-frida-subscribe-intl-mb/frida-events.tsv new file mode 100644 index 0000000..7fedd34 --- /dev/null +++ b/captures/065-frida-subscribe-intl-mb/frida-events.tsv @@ -0,0 +1,62 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T19:54:59.952Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T19:54:59.953Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T19:54:59.953Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T19:54:59.954Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T19:54:59.954Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T19:55:13.650Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:55:13.650Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T19:55:13.651Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T19:55:13.652Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:13.652Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:55:13.653Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T19:55:13.654Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T19:55:13.751Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T19:55:13.752Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T19:55:13.753Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T19:55:13.754Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T19:55:13.781Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:13.782Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe4a0 [] +2026-04-25T19:55:13.783Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:13.783Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe4a0 [] +2026-04-25T19:55:13.892Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T19:55:13.893Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T19:55:13.894Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe98c [] +2026-04-25T19:55:13.895Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe978 [] +2026-04-25T19:55:13.895Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:13.895Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe978 [] +2026-04-25T19:55:13.896Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd574 [] +2026-04-25T19:55:13.896Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd574 [] +2026-04-25T19:55:13.897Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd574 [] +2026-04-25T19:55:13.897Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe98c [] +2026-04-25T19:55:13.897Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe98c [] +2026-04-25T19:55:13.898Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd540 [] +2026-04-25T19:55:13.898Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd540 [] +2026-04-25T19:55:13.899Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T19:55:13.899Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T19:55:13.901Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x12feb5c "[""0x66d8ff0"",""0x1"",""0x1"",""0xb2f5089"",""0x74794704""]" +2026-04-25T19:55:13.902Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T19:55:13.902Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe9dc [] +2026-04-25T19:55:13.902Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T19:55:14.028Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x994c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9950648"",""0x12fe820"",""0xf86303ec""]" 0 1 0x2 +2026-04-25T19:55:14.028Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x994c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9950648"",""0x12fe820"",""0xf86303ec""]" 1 314 0x9950648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 94 09 1f 01 00 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 95 09 20 01 00 02 00 00 00 +2026-04-25T19:55:14.032Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x994c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa2f7020"",""0x9637facd"",""0x9950214"",""0x9950204"",""0x641add04"",""0x0""]" 0 360 0xa2f7020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 94 09 1f 01 00 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 95 09 20 01 00 02 00 00 00 +2026-04-25T19:55:14.032Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:55:14.033Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:55:14.034Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x994c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x9e"",""0x9a29388"",""0x12fe820"",""0xf86303ec""]" 0 2 0x2 +2026-04-25T19:55:14.034Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x994c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x9e"",""0x9a29388"",""0x12fe820"",""0xf86303ec""]" 1 158 0x9a29388 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 46 00 00 81 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 2e 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 1a 00 00 00 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 01 00 65 1b ff ff 00 00 00 00 00 00 00 00 01 88 05 95 09 +2026-04-25T19:55:14.036Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x994c738 "[""0x1"",""0x1"",""0x2"",""0xcc"",""0xa2f7020"",""0x9637facd"",""0x9a29354"",""0x9a29344"",""0x641add04"",""0x99475ac""]" 0 204 0xa2f7020 01 00 9e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 46 00 00 81 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 2e 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 1a 00 00 00 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 01 00 65 1b ff ff 00 00 00 00 00 00 00 00 01 88 05 95 09 +2026-04-25T19:55:14.036Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T19:55:14.037Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T19:55:14.055Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x2c2"",""0x15c6984"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x2c2"",""0x15c6984"",""0x206"",""0x3"",""0x7f4e93c""]" 0 706 0x15c6984 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0f 3a e4 61 5c 66 02 46 90 f7 64 e1 79 d2 b3 d8 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T19:55:14.055Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x2c2"",""0x15c6984"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x2c2"",""0x15c6984"",""0x206"",""0x3"",""0x7f4e93c""]" 1 518 0x3 +2026-04-25T19:55:14.055Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x2c2"",""0x15c6984"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x2c2"",""0x15c6984"",""0x206"",""0x3"",""0x7f4e93c""]" 2 3 0x7f4e93c 58 08 df +2026-04-25T19:55:14.056Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:55:14.059Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x97"",""0x15cbeac"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x97"",""0x15cbeac"",""0x206"",""0x3"",""0x7f4e93c""]" 0 151 0x15cbeac 97 00 00 00 01 00 69 00 00 00 00 00 00 00 7d e2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0f 3a e4 61 5c 66 02 46 90 f7 64 e1 79 d2 b3 d8 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T19:55:14.059Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x97"",""0x15cbeac"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x97"",""0x15cbeac"",""0x206"",""0x3"",""0x7f4e93c""]" 1 518 0x3 +2026-04-25T19:55:14.059Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x97"",""0x15cbeac"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x97"",""0x15cbeac"",""0x206"",""0x3"",""0x7f4e93c""]" 2 3 0x7f4e93c 58 08 df +2026-04-25T19:55:14.061Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T19:55:14.079Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x157"",""0x15c6984"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x157"",""0x15c6984"",""0x206"",""0x3"",""0x7f4e93c""]" 0 343 0x15c6984 57 01 00 00 01 00 29 01 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 b0 00 00 00 46 00 00 81 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 2e 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 1a 00 00 00 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 2c 00 00 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 00 00 00 00 01 01 00 02 00 01 00 65 1b 77 00 8c 00 0a 00 6b 72 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 +2026-04-25T19:55:14.079Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x157"",""0x15c6984"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x157"",""0x15c6984"",""0x206"",""0x3"",""0x7f4e93c""]" 1 518 0x3 +2026-04-25T19:55:14.079Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x994c738 "[""0x157"",""0x15c6984"",""0x7d6ea70"",""0x76ffedd8"",""0x994c744"",""0x157"",""0x15c6984"",""0x206"",""0x3"",""0x7f4e93c""]" 2 3 0x7f4e93c 58 08 df +2026-04-25T19:55:14.080Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/065-frida-subscribe-intl-mb/frida-exit.txt b/captures/065-frida-subscribe-intl-mb/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/065-frida-subscribe-intl-mb/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/065-frida-subscribe-intl-mb/frida.stderr.txt b/captures/065-frida-subscribe-intl-mb/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/065-frida-subscribe-intl-mb/frida.stdout.jsonl b/captures/065-frida-subscribe-intl-mb/frida.stdout.jsonl new file mode 100644 index 0000000..751fb44 --- /dev/null +++ b/captures/065-frida-subscribe-intl-mb/frida.stdout.jsonl @@ -0,0 +1,69 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=DevAppEngine.Scheduler._EngUnitsMB --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\065-frida-subscribe-intl-mb\harness.log --client=MxFridaTrace-065-frida-subscribe-intl-mb`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=DevAppEngine.Scheduler._EngUnitsMB --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\065-frida-subscribe-intl-mb\harness.log --client=MxFridaTrace-065-frida-subscribe-intl-mb`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T19:54:59.952Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T19:54:59.953Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T19:54:59.953Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T19:54:59.954Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T19:54:59.954Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T19:55:13.650Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T19:55:13.650Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T19:55:13.651Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T19:55:13.652Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T19:55:13.652Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T19:55:13.653Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T19:55:13.654Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T19:55:13.751Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T19:55:13.752Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T19:55:13.753Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T19:55:13.754Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9947010","outPtr":"0x12fe4a0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:55:13.781Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe4a0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fe4a0","time":"2026-04-25T19:55:13.782Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9947010","outPtr":"0x12fe4a0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T19:55:13.783Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe4a0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fe4a0","time":"2026-04-25T19:55:13.783Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T19:55:13.892Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9950588","referenceString":{"length":34,"capacity":39,"value":"DevAppEngine.Scheduler._EngUnitsMB"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9a1e330","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 a2 09 00 65 00 00 00 02 00 00 00 00 00 02 22 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 30 e3 a1 09 2c 3f 28 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 94 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 6c 2c 5e 01 00 00 00 00"},"time":"2026-04-25T19:55:13.893Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fe98c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x12fe98c","time":"2026-04-25T19:55:13.894Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fe978","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x12fe978","time":"2026-04-25T19:55:13.895Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9947010","outPtr":"0x12fe978","inWords":[65537,65538,7013,0,0,0],"time":"2026-04-25T19:55:13.895Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe978","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fe978","time":"2026-04-25T19:55:13.895Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fd574","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fd574","time":"2026-04-25T19:55:13.896Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fd574","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fd574","time":"2026-04-25T19:55:13.896Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fd574","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fd574","time":"2026-04-25T19:55:13.897Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fe98c","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fe98c","time":"2026-04-25T19:55:13.897Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fe98c","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fe98c","time":"2026-04-25T19:55:13.897Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fd540","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fd540","time":"2026-04-25T19:55:13.898Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99505d8","outPtr":"0x12fd540","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fd540","time":"2026-04-25T19:55:13.898Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9950588","referenceString":{"length":34,"capacity":39,"value":"DevAppEngine.Scheduler._EngUnitsMB"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9a1e330","status":2,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 01 67 00 43 03 00 00 00 38 90 a2 09 00 65 00 00 00 02 00 00 00 00 00 02 22 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 30 e3 a1 09 2c 3f 28 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 94 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 6c 2c 5e 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T19:55:13.899Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619204,"time":"2026-04-25T19:55:13.899Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x12feb5c","args":["0x66d8ff0","0x1","0x1","0xb2f5089","0x74794704"],"time":"2026-04-25T19:55:13.901Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9947010","outPtr":"0x12fe9dc","inWords":[65537,65538,7013,0,0,0],"time":"2026-04-25T19:55:13.902Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe9dc","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65538,"w2":7013,"w3":0,"w4":0},"retval":"0x12fe9dc","time":"2026-04-25T19:55:13.902Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T19:55:13.902Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x994c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9950648","0x12fe820","0xf86303ec"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9950648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 94 09 1f 01 00 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 95 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T19:55:14.028Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x994c738","args":["0x1","0x1","0x1","0x168","0xa2f7020","0x9637facd","0x9950214","0x9950204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa2f7020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 94 09 1f 01 00 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 95 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T19:55:14.032Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:55:14.032Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:55:14.033Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x994c738","0x1","0x1","0x2","0x2","0x0","0x9e","0x9a29388","0x12fe820","0xf86303ec"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":158,"ptr":"0x9a29388","hex":"01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 46 00 00 81 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 2e 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 1a 00 00 00 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 01 00 65 1b ff ff 00 00 00 00 00 00 00 00 01 88 05 95 09"}],"time":"2026-04-25T19:55:14.034Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x994c738","args":["0x1","0x1","0x2","0xcc","0xa2f7020","0x9637facd","0x9a29354","0x9a29344","0x641add04","0x99475ac"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":204,"ptr":"0xa2f7020","hex":"01 00 9e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 46 00 00 81 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 2e 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 1a 00 00 00 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 01 00 65 1b ff ff 00 00 00 00 00 00 00 00 01 88 05 95 09"}],"time":"2026-04-25T19:55:14.036Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T19:55:14.036Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T19:55:14.037Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x994c738","args":["0x2c2","0x15c6984","0x7d6ea70","0x76ffedd8","0x994c744","0x2c2","0x15c6984","0x206","0x3","0x7f4e93c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x15c6984","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0f 3a e4 61 5c 66 02 46 90 f7 64 e1 79 d2 b3 d8 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4e93c","hex":"58 08 df"}],"time":"2026-04-25T19:55:14.055Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:55:14.056Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x994c738","args":["0x97","0x15cbeac","0x7d6ea70","0x76ffedd8","0x994c744","0x97","0x15cbeac","0x206","0x3","0x7f4e93c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x15cbeac","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 7d e2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0f 3a e4 61 5c 66 02 46 90 f7 64 e1 79 d2 b3 d8 6b b1 e1 ea 69 a1 f5 45 9e a6 84 54 5d c6 e0 a0 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4e93c","hex":"58 08 df"}],"time":"2026-04-25T19:55:14.059Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:55:14.061Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x994c738","args":["0x157","0x15c6984","0x7d6ea70","0x76ffedd8","0x994c744","0x157","0x15c6984","0x206","0x3","0x7f4e93c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":343,"ptr":"0x15c6984","hex":"57 01 00 00 01 00 29 01 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 b0 00 00 00 46 00 00 81 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 2e 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 1a 00 00 00 44 00 65 00 76 00 41 00 70 00 70 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 2c 00 00 00 53 00 63 00 68 00 65 00 64 00 75 00 6c 00 65 00 72 00 2e 00 5f 00 45 00 6e 00 67 00 55 00 6e 00 69 00 74 00 73 00 4d 00 42 00 00 00 00 00 00 00 01 01 00 02 00 01 00 65 1b 77 00 8c 00 0a 00 6b 72 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f4e93c","hex":"58 08 df"}],"time":"2026-04-25T19:55:14.079Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T19:55:14.080Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/065-frida-subscribe-intl-mb/harness.log b/captures/065-frida-subscribe-intl-mb/harness.log new file mode 100644 index 0000000..12af099 --- /dev/null +++ b/captures/065-frida-subscribe-intl-mb/harness.log @@ -0,0 +1,14 @@ +2026-04-25T19:54:59.8587769+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-065-frida-subscribe-intl-mb","Tags":["DevAppEngine.Scheduler._EngUnitsMB"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:55:13.5097346+00:00 mx.register.begin {"ClientName":"MxFridaTrace-065-frida-subscribe-intl-mb"} +2026-04-25T19:55:13.8896687+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:55:13.8906770+00:00 mx.additem.begin {"Tag":"DevAppEngine.Scheduler._EngUnitsMB"} +2026-04-25T19:55:13.9006731+00:00 mx.additem.end {"Tag":"DevAppEngine.Scheduler._EngUnitsMB","ItemHandle":1} +2026-04-25T19:55:13.9006731+00:00 mx.advise-supervisory.begin {"Tag":"DevAppEngine.Scheduler._EngUnitsMB","ItemHandle":1} +2026-04-25T19:55:13.9026674+00:00 mx.advise-supervisory.end {"Tag":"DevAppEngine.Scheduler._EngUnitsMB","ItemHandle":1} +2026-04-25T19:55:21.9476440+00:00 mx.unadvise.begin {"Tag":"DevAppEngine.Scheduler._EngUnitsMB","ItemHandle":1} +2026-04-25T19:55:21.9476440+00:00 mx.unadvise.end {"Tag":"DevAppEngine.Scheduler._EngUnitsMB","ItemHandle":1} +2026-04-25T19:55:21.9476440+00:00 mx.removeitem.begin {"Tag":"DevAppEngine.Scheduler._EngUnitsMB","ItemHandle":1} +2026-04-25T19:55:21.9486444+00:00 mx.removeitem.end {"Tag":"DevAppEngine.Scheduler._EngUnitsMB","ItemHandle":1} +2026-04-25T19:55:21.9486444+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:55:25.7879332+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:55:25.8020077+00:00 harness.stop {} diff --git a/captures/066-frida-write2-test-bool-timestamp/frida-command.txt b/captures/066-frida-write2-test-bool-timestamp/frida-command.txt new file mode 100644 index 0000000..40c39e6 --- /dev/null +++ b/captures/066-frida-write2-test-bool-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestBool --type=bool --value=false --user-id=1 --write-time=2026-04-25T08:01:02 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\066-frida-write2-test-bool-timestamp\harness.log --client=MxFridaTrace-066-frida-write2-test-bool-timestamp diff --git a/captures/066-frida-write2-test-bool-timestamp/frida-events.tsv b/captures/066-frida-write2-test-bool-timestamp/frida-events.tsv new file mode 100644 index 0000000..1f30432 --- /dev/null +++ b/captures/066-frida-write2-test-bool-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:05:22.117Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:05:22.117Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:05:22.118Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:05:22.118Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:05:22.119Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:05:35.299Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:05:35.299Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:05:35.300Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:05:35.301Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:35.302Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:05:35.302Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:05:35.303Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:05:35.376Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:35.376Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe7dc [] +2026-04-25T20:05:35.377Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:35.377Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe7dc [] +2026-04-25T20:05:35.399Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:05:35.400Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:05:35.400Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:05:35.401Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:05:35.480Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:05:35.480Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fed60 [] +2026-04-25T20:05:35.481Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:05:35.482Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fecf0 [] +2026-04-25T20:05:35.482Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fecf0 [] +2026-04-25T20:05:35.483Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fecf0 [] +2026-04-25T20:05:35.484Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:05:35.484Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:05:35.486Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x4feeac "[""0x5898ff0"",""0x1"",""0x1"",""0x6475e633"",""0x74794704""]" +2026-04-25T20:05:35.486Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:35.486Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fed2c [] +2026-04-25T20:05:35.487Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:35.487Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fd9c0 [] +2026-04-25T20:05:35.487Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:05:35.613Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8bb0648"",""0x4feb70"",""0xef83fa20""]" 0 1 0x2 +2026-04-25T20:05:35.613Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8bb0648"",""0x4feb70"",""0xef83fa20""]" 1 314 0x8bb0648 False:u8@2 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@18 False:u8@19 False:u8@22 False:u8@23 False:u8@24 False:u8@26 False:u8@27 False:u8@30 False:u8@32 False:u8@34 False:u8@36 False:u8@38 False:u8@40 False:u8@42 False:u8@44 False:u8@46 False:u8@48 False:u8@50 False:u8@52 False:u8@54 False:u8@56 False:u8@58 False:u8@60 False:u8@62 False:u8@64 False:u8@66 False:u8@68 False:u8@70 False:u8@72 False:u8@74 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@95 False:u8@96 False:u8@97 False:u8@98 False:u8@100 False:u8@101 False:u8@102 False:u8@103 False:u8@104 False:u8@106 False:u8@107 False:u8@108 False:u8@109 False:u8@110 False:u8@113 False:u8@115 False:u8@117 False:u8@118 False:u8@119 False:u8@120 False:u8@121 False:u8@122 False:u8@123 False:u8@124 False:u8@125 False:u8@126 False:u8@127 False:u8@128 False:u8@129 False:u8@137 False:u8@154 False:u8@155 False:u8@157 False:u8@158 False:u8@159 False:u8@162 False:u8@165 False:u8@167 False:u8@168 False:u8@169 False:u8@171 False:u8@173 False:u8@175 False:u8@176 False:u8@177 False:u8@178 False:u8@179 False:u8@182 False:u8@183 False:u8@184 False:u8@186 False:u8@187 False:u8@190 False:u8@192 False:u8@194 False:u8@196 False:u8@198 False:u8@200 False:u8@202 False:u8@204 False:u8@206 False:u8@208 False:u8@210 False:u8@212 False:u8@214 False:u8@216 False:u8@218 False:u8@220 False:u8@222 False:u8@224 False:u8@226 False:u8@228 False:u8@230 False:u8@232 False:u8@234 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:u8@256 False:u8@258 False:u8@260 False:u8@262 False:u8@263 False:u8@264 False:u8@266 False:u8@267 False:u8@268 False:u8@269 False:u8@270 False:u8@272 False:u8@273 False:u8@274 False:u8@275 False:u8@276 False:u8@278 False:u8@279 False:u8@280 False:u8@281 False:u8@282 False:u8@285 False:u8@287 False:u8@289 False:u8@290 False:u8@291 False:u8@292 False:u8@293 False:u8@294 False:u8@295 False:u8@296 False:u8@297 False:u8@298 False:u8@299 False:u8@300 False:u8@301 False:u8@309 False:u8@311 False:u8@312 False:u8@313 False:i32@15 False:i32@16 False:i32@94 False:i32@95 False:i32@100 False:i32@101 False:i32@106 False:i32@107 False:i32@117 False:i32@118 False:i32@119 False:i32@120 False:i32@121 False:i32@122 False:i32@123 False:i32@124 False:i32@125 False:i32@126 False:i32@175 False:i32@176 False:i32@266 False:i32@267 False:i32@272 False:i32@273 False:i32@278 False:i32@279 False:i32@289 False:i32@290 False:i32@291 False:i32@292 False:i32@293 False:i32@294 False:i32@295 False:i32@296 False:i32@297 False:i32@298 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@17 False:variant_bool@18 False:variant_bool@22 False:variant_bool@23 False:variant_bool@26 False:variant_bool@90 False:variant_bool@91 False:variant_bool@94 False:variant_bool@95 False:variant_bool@96 False:variant_bool@97 False:variant_bool@100 False:variant_bool@101 False:variant_bool@102 False:variant_bool@103 False:variant_bool@106 False:variant_bool@107 False:variant_bool@108 False:variant_bool@109 False:variant_bool@117 False:variant_bool@118 False:variant_bool@119 False:variant_bool@120 False:variant_bool@121 False:variant_bool@122 False:variant_bool@123 False:variant_bool@124 False:variant_bool@125 False:variant_bool@126 False:variant_bool@127 False:variant_bool@128 False:variant_bool@154 False:variant_bool@157 False:variant_bool@158 False:variant_bool@167 False:variant_bool@168 False:variant_bool@175 False:variant_bool@176 False:variant_bool@177 False:variant_bool@178 False:variant_bool@182 False:variant_bool@183 False:variant_bool@186 False:variant_bool@262 False:variant_bool@263 False:variant_bool@266 False:variant_bool@267 False:variant_bool@268 False:variant_bool@269 False:variant_bool@272 False:variant_bool@273 False:variant_bool@274 False:variant_bool@275 False:variant_bool@278 False:variant_bool@279 False:variant_bool@280 False:variant_bool@281 False:variant_bool@289 False:variant_bool@290 False:variant_bool@291 False:variant_bool@292 False:variant_bool@293 False:variant_bool@294 False:variant_bool@295 False:variant_bool@296 False:variant_bool@297 False:variant_bool@298 False:variant_bool@299 False:variant_bool@300 False:variant_bool@311 False:variant_bool@312 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ba 08 1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 bb 08 20 01 00 02 00 00 00 +2026-04-25T20:05:35.615Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bac738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9550020"",""0x2316c033"",""0x8bb0214"",""0x8bb0204"",""0x641add04"",""0x0""]" 0 360 0x9550020 False:u8@1 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@51 False:u8@53 False:u8@54 False:u8@55 False:u8@57 False:u8@59 False:u8@61 False:u8@62 False:u8@63 False:u8@64 False:u8@65 False:u8@68 False:u8@69 False:u8@70 False:u8@72 False:u8@73 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@92 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@122 False:u8@124 False:u8@126 False:u8@128 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@137 False:u8@138 False:u8@140 False:u8@141 False:u8@142 False:u8@143 False:u8@144 False:u8@146 False:u8@147 False:u8@148 False:u8@149 False:u8@150 False:u8@152 False:u8@153 False:u8@154 False:u8@155 False:u8@156 False:u8@159 False:u8@161 False:u8@163 False:u8@164 False:u8@165 False:u8@166 False:u8@167 False:u8@168 False:u8@169 False:u8@170 False:u8@171 False:u8@172 False:u8@173 False:u8@174 False:u8@175 False:u8@183 False:u8@200 False:u8@201 False:u8@203 False:u8@204 False:u8@205 False:u8@208 False:u8@211 False:u8@213 False:u8@214 False:u8@215 False:u8@217 False:u8@219 False:u8@221 False:u8@222 False:u8@223 False:u8@224 False:u8@225 False:u8@228 False:u8@229 False:u8@230 False:u8@232 False:u8@233 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:u8@256 False:u8@258 False:u8@260 False:u8@262 False:u8@264 False:u8@266 False:u8@268 False:u8@270 False:u8@272 False:u8@274 False:u8@276 False:u8@278 False:u8@280 False:u8@282 False:u8@284 False:u8@286 False:u8@288 False:u8@290 False:u8@292 False:u8@294 False:u8@296 False:u8@298 False:u8@300 False:u8@302 False:u8@304 False:u8@306 False:u8@308 False:u8@309 False:u8@310 False:u8@312 False:u8@313 False:u8@314 False:u8@315 False:u8@316 False:u8@318 False:u8@319 False:u8@320 False:u8@321 False:u8@322 False:u8@324 False:u8@325 False:u8@326 False:u8@327 False:u8@328 False:u8@331 False:u8@333 False:u8@335 False:u8@336 False:u8@337 False:u8@338 False:u8@339 False:u8@340 False:u8@341 False:u8@342 False:u8@343 False:u8@344 False:u8@345 False:u8@346 False:u8@347 False:u8@355 False:u8@357 False:u8@358 False:u8@359 False:i32@4 False:i32@5 False:i32@6 False:i32@61 False:i32@62 False:i32@140 False:i32@141 False:i32@146 False:i32@147 False:i32@152 False:i32@153 False:i32@163 False:i32@164 False:i32@165 False:i32@166 False:i32@167 False:i32@168 False:i32@169 False:i32@170 False:i32@171 False:i32@172 False:i32@221 False:i32@222 False:i32@312 False:i32@313 False:i32@318 False:i32@319 False:i32@324 False:i32@325 False:i32@335 False:i32@336 False:i32@337 False:i32@338 False:i32@339 False:i32@340 False:i32@341 False:i32@342 False:i32@343 False:i32@344 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@53 False:variant_bool@54 False:variant_bool@61 False:variant_bool@62 False:variant_bool@63 False:variant_bool@64 False:variant_bool@68 False:variant_bool@69 False:variant_bool@72 False:variant_bool@136 False:variant_bool@137 False:variant_bool@140 False:variant_bool@141 False:variant_bool@142 False:variant_bool@143 False:variant_bool@146 False:variant_bool@147 False:variant_bool@148 False:variant_bool@149 False:variant_bool@152 False:variant_bool@153 False:variant_bool@154 False:variant_bool@155 False:variant_bool@163 False:variant_bool@164 False:variant_bool@165 False:variant_bool@166 False:variant_bool@167 False:variant_bool@168 False:variant_bool@169 False:variant_bool@170 False:variant_bool@171 False:variant_bool@172 False:variant_bool@173 False:variant_bool@174 False:variant_bool@200 False:variant_bool@203 False:variant_bool@204 False:variant_bool@213 False:variant_bool@214 False:variant_bool@221 False:variant_bool@222 False:variant_bool@223 False:variant_bool@224 False:variant_bool@228 False:variant_bool@229 False:variant_bool@232 False:variant_bool@308 False:variant_bool@309 False:variant_bool@312 False:variant_bool@313 False:variant_bool@314 False:variant_bool@315 False:variant_bool@318 False:variant_bool@319 False:variant_bool@320 False:variant_bool@321 False:variant_bool@324 False:variant_bool@325 False:variant_bool@326 False:variant_bool@327 False:variant_bool@335 False:variant_bool@336 False:variant_bool@337 False:variant_bool@338 False:variant_bool@339 False:variant_bool@340 False:variant_bool@341 False:variant_bool@342 False:variant_bool@343 False:variant_bool@344 False:variant_bool@345 False:variant_bool@346 False:variant_bool@357 False:variant_bool@358 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ba 08 1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 bb 08 20 01 00 02 00 00 00 +2026-04-25T20:05:35.616Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:05:35.616Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:05:35.617Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c7d760"",""0x4feb70"",""0xef83fa20""]" 0 2 0x2 +2026-04-25T20:05:35.617Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c7d760"",""0x4feb70"",""0xef83fa20""]" 1 39 0x8c7d760 False:u8@2 False:u8@19 False:u8@20 False:u8@22 False:u8@26 False:u8@28 False:u8@30 False:u8@33 False:u8@34 False:u8@36 False:u8@37 False:u8@38 False:variant_bool@19 False:variant_bool@33 False:variant_bool@36 False:variant_bool@37 1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T20:05:35.618Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bac738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9550020"",""0x2316c033"",""0x8c89584"",""0x8c89574"",""0x641add04"",""0x0""]" 0 85 0x9550020 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@65 False:u8@66 False:u8@68 False:u8@72 False:u8@74 False:u8@76 False:u8@79 False:u8@80 False:u8@82 False:u8@83 False:u8@84 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@65 False:variant_bool@79 False:variant_bool@82 False:variant_bool@83 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T20:05:35.619Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:05:35.619Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:05:35.650Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x5c"",""0x7c28cc"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x5c"",""0x7c28cc"",""0x206"",""0x3"",""0x71a8884""]" 0 92 0x7c28cc False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@50 False:u8@51 False:u8@55 False:u8@57 False:u8@59 False:u8@62 False:u8@63 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:i32@48 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@49 False:variant_bool@50 False:variant_bool@62 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 6a fc 2c c1 3b e1 88 42 9f 35 4c b5 58 b5 2e f1 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 +2026-04-25T20:05:35.650Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x5c"",""0x7c28cc"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x5c"",""0x7c28cc"",""0x206"",""0x3"",""0x71a8884""]" 1 518 0x3 +2026-04-25T20:05:35.650Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x5c"",""0x7c28cc"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x5c"",""0x7c28cc"",""0x206"",""0x3"",""0x71a8884""]" 2 3 0x71a8884 d8 60 79 +2026-04-25T20:05:35.652Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:35.655Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x69"",""0x7bb194"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x69"",""0x7bb194"",""0x206"",""0x3"",""0x71a8884""]" 0 105 0x7bb194 False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@52 False:u8@54 False:u8@55 False:u8@56 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@95 False:u8@96 False:u8@98 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@54 False:variant_bool@55 False:variant_bool@90 False:variant_bool@91 False:variant_bool@94 False:variant_bool@95 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 68 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 6a fc 2c c1 3b e1 88 42 9f 35 4c b5 58 b5 2e f1 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 03 00 00 00 03 00 00 00 c0 00 70 da ae 22 7c d4 +2026-04-25T20:05:35.655Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x69"",""0x7bb194"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x69"",""0x7bb194"",""0x206"",""0x3"",""0x71a8884""]" 1 518 0x3 +2026-04-25T20:05:35.655Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x69"",""0x7bb194"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x69"",""0x7bb194"",""0x206"",""0x3"",""0x71a8884""]" 2 3 0x71a8884 d8 60 79 +2026-04-25T20:05:35.656Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:35.667Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x2c2"",""0x7c28cc"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x2c2"",""0x7c28cc"",""0x206"",""0x3"",""0x71a8884""]" 0 706 0x7c28cc False:u8@2 False:u8@3 False:u8@5 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@56 False:u8@57 False:u8@58 False:u8@60 False:u8@61 False:u8@64 False:u8@66 False:u8@68 False:u8@70 False:u8@72 False:u8@74 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@92 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@122 False:u8@124 False:u8@125 False:u8@126 False:u8@128 False:u8@129 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@138 False:u8@140 False:u8@142 False:u8@144 False:u8@146 False:u8@148 False:u8@150 False:u8@152 False:u8@153 False:u8@154 False:u8@156 False:u8@157 False:u8@158 False:u8@160 False:u8@162 False:u8@164 False:u8@166 False:u8@168 False:u8@170 False:u8@172 False:u8@174 False:u8@176 False:u8@178 False:u8@180 False:u8@182 False:u8@184 False:u8@186 False:u8@188 False:u8@190 False:u8@192 False:u8@194 False:u8@196 False:u8@197 False:u8@198 False:u8@200 False:u8@201 False:u8@202 False:u8@203 False:u8@204 False:u8@207 False:u8@209 False:u8@211 False:u8@215 False:u8@217 False:u8@219 False:u8@222 False:u8@223 False:u8@226 False:u8@227 False:u8@228 False:u8@230 False:u8@232 False:u8@234 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:u8@256 False:u8@258 False:u8@260 False:u8@262 False:u8@264 False:u8@266 False:u8@268 False:u8@270 False:u8@272 False:u8@274 False:u8@276 False:u8@278 False:u8@280 False:u8@282 False:u8@284 False:u8@286 False:u8@288 False:u8@290 False:u8@292 False:u8@294 False:u8@296 False:u8@298 False:u8@300 False:u8@302 False:u8@304 False:u8@306 False:u8@308 False:u8@310 False:u8@312 False:u8@314 False:u8@316 False:u8@318 False:u8@320 False:u8@322 False:u8@324 False:u8@326 False:u8@328 False:u8@330 False:u8@332 False:u8@334 False:u8@335 False:u8@336 False:u8@338 False:u8@339 False:u8@343 False:u8@345 False:u8@347 False:u8@350 False:u8@351 False:u8@390 False:u8@391 False:u8@392 False:u8@394 False:u8@395 False:u8@398 False:u8@400 False:u8@402 False:u8@404 False:u8@406 False:u8@408 False:u8@410 False:u8@412 False:u8@414 False:u8@416 False:u8@418 False:u8@420 False:u8@422 False:u8@424 False:u8@426 False:u8@428 False:u8@430 False:u8@432 False:u8@434 False:u8@436 False:u8@438 False:u8@440 False:u8@442 False:u8@444 False:u8@446 False:u8@448 False:u8@450 False:u8@452 False:u8@454 False:u8@456 False:u8@458 False:u8@460 False:u8@462 False:u8@464 False:u8@466 False:u8@468 False:u8@470 False:u8@471 False:u8@472 False:u8@474 False:u8@475 False:u8@476 False:u8@478 False:u8@480 False:u8@482 False:u8@484 False:u8@486 False:u8@488 False:u8@490 False:u8@492 False:u8@494 False:u8@496 False:u8@498 False:u8@499 False:u8@500 False:u8@502 False:u8@503 False:u8@504 False:u8@506 False:u8@508 False:u8@510 False:u8@512 False:u8@514 False:u8@516 False:u8@518 False:u8@520 False:u8@522 False:u8@524 False:u8@526 False:u8@528 False:u8@530 False:u8@532 False:u8@534 False:u8@536 False:u8@538 False:u8@540 False:u8@542 False:u8@544 False:u8@546 False:u8@548 False:u8@550 False:u8@552 False:u8@554 False:u8@555 False:u8@556 False:u8@558 False:u8@559 False:u8@560 False:u8@561 False:u8@562 False:u8@565 False:u8@567 False:u8@569 False:u8@573 False:u8@575 False:u8@577 False:u8@580 False:u8@581 False:u8@584 False:u8@585 False:u8@586 False:u8@588 False:u8@590 False:u8@592 False:u8@594 False:u8@596 False:u8@598 False:u8@600 False:u8@602 False:u8@604 False:u8@606 False:u8@608 False:u8@610 False:u8@612 False:u8@614 False:u8@616 False:u8@618 False:u8@620 False:u8@622 False:u8@624 False:u8@626 False:u8@628 False:u8@630 False:u8@632 False:u8@634 False:u8@636 False:u8@638 False:u8@640 False:u8@642 False:u8@644 False:u8@646 False:u8@648 False:u8@650 False:u8@652 False:u8@654 False:u8@656 False:u8@658 False:u8@660 False:u8@662 False:u8@664 False:u8@666 False:u8@668 False:u8@670 False:u8@672 False:u8@674 False:u8@676 False:u8@678 False:u8@680 False:u8@682 False:u8@684 False:u8@686 False:u8@688 False:u8@690 False:u8@692 False:u8@693 False:u8@694 False:u8@696 False:u8@697 False:u8@701 False:u8@703 False:u8@705 False:i32@8 False:i32@9 False:i32@10 False:i32@200 False:i32@201 False:i32@558 False:i32@559 False:variant_bool@2 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@56 False:variant_bool@57 False:variant_bool@60 False:variant_bool@124 False:variant_bool@125 False:variant_bool@128 False:variant_bool@129 False:variant_bool@152 False:variant_bool@153 False:variant_bool@156 False:variant_bool@157 False:variant_bool@196 False:variant_bool@197 False:variant_bool@200 False:variant_bool@201 False:variant_bool@202 False:variant_bool@203 False:variant_bool@222 False:variant_bool@226 False:variant_bool@227 False:variant_bool@334 False:variant_bool@335 False:variant_bool@338 False:variant_bool@350 False:variant_bool@390 False:variant_bool@391 False:variant_bool@394 False:variant_bool@470 False:variant_bool@471 False:variant_bool@474 False:variant_bool@475 False:variant_bool@498 False:variant_bool@499 False:variant_bool@502 False:variant_bool@503 False:variant_bool@554 False:variant_bool@555 False:variant_bool@558 False:variant_bool@559 False:variant_bool@560 False:variant_bool@561 False:variant_bool@580 False:variant_bool@584 False:variant_bool@585 False:variant_bool@692 False:variant_bool@693 False:variant_bool@696 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 9a 9a 81 18 15 53 39 4c 9a bc 96 63 58 fc 84 72 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:05:35.667Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x2c2"",""0x7c28cc"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x2c2"",""0x7c28cc"",""0x206"",""0x3"",""0x71a8884""]" 1 518 0x3 +2026-04-25T20:05:35.667Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x2c2"",""0x7c28cc"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x2c2"",""0x7c28cc"",""0x206"",""0x3"",""0x71a8884""]" 2 3 0x71a8884 d8 60 79 +2026-04-25T20:05:35.669Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:35.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x97"",""0x7bb194"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x97"",""0x7bb194"",""0x206"",""0x3"",""0x71a8884""]" 0 151 0x7bb194 False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@52 False:u8@54 False:u8@55 False:u8@56 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@95 False:u8@96 False:u8@98 False:u8@109 False:u8@110 False:u8@111 False:u8@112 False:u8@120 False:u8@121 False:u8@123 False:u8@124 False:u8@125 False:u8@127 False:u8@128 False:u8@129 False:u8@131 False:u8@142 False:u8@143 False:u8@144 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:i32@109 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@54 False:variant_bool@55 False:variant_bool@90 False:variant_bool@91 False:variant_bool@94 False:variant_bool@95 False:variant_bool@109 False:variant_bool@110 False:variant_bool@111 False:variant_bool@120 False:variant_bool@123 False:variant_bool@124 False:variant_bool@127 False:variant_bool@128 False:variant_bool@142 False:variant_bool@143 97 00 00 00 01 00 69 00 00 00 00 00 00 00 3b ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 9a 9a 81 18 15 53 39 4c 9a bc 96 63 58 fc 84 72 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:05:35.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x97"",""0x7bb194"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x97"",""0x7bb194"",""0x206"",""0x3"",""0x71a8884""]" 1 518 0x3 +2026-04-25T20:05:35.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x97"",""0x7bb194"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x97"",""0x7bb194"",""0x206"",""0x3"",""0x71a8884""]" 2 3 0x71a8884 d8 60 79 +2026-04-25T20:05:35.673Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:36.529Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0x4fee7c "[""0x5898ff0"",""0x1"",""0x1"",""0xb"",""0x0"",""0x0"",""0x0"",""0x7"",""0x0"",""0xb08b9142"",""0x40e6872a"",""0x1"",""0x6475e633""]" +2026-04-25T20:05:36.530Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:05:36.583Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c7d7f0"",""0x4feb70"",""0xef83fa20""]" 0 2 0x2 +2026-04-25T20:05:36.583Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c7d7f0"",""0x4feb70"",""0xef83fa20""]" 1 37 0x8c7d7f0 False:u8@2 False:u8@4 False:u8@8 False:u8@10 False:u8@12 False:u8@15 False:u8@16 False:u8@18 False:u8@19 False:u8@20 False:u8@21 False:u8@34 False:u8@35 False:u8@36 False:i32@18 False:variant_bool@15 False:variant_bool@18 False:variant_bool@19 False:variant_bool@20 False:variant_bool@34 False:variant_bool@35 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 00 00 00 d3 c1 2f ab d4 dc 01 c9 dd a5 0b 01 00 00 00 +2026-04-25T20:05:36.584Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bac738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9550020"",""0x2316c033"",""0x8ba77f4"",""0x8ba77e4"",""0x641add04"",""0x0""]" 0 83 0x9550020 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@54 False:u8@56 False:u8@58 False:u8@61 False:u8@62 False:u8@64 False:u8@65 False:u8@66 False:u8@67 False:u8@80 False:u8@81 False:u8@82 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@64 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@61 False:variant_bool@64 False:variant_bool@65 False:variant_bool@66 False:variant_bool@80 False:variant_bool@81 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 00 00 00 d3 c1 2f ab d4 dc 01 c9 dd a5 0b 01 00 00 00 +2026-04-25T20:05:36.585Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:05:36.585Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:05:36.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x33"",""0x7c17c4"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x33"",""0x7c17c4"",""0x206"",""0x3"",""0x71a8884""]" 0 51 0x7c17c4 False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@50 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@49 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:05:36.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x33"",""0x7c17c4"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x33"",""0x7c17c4"",""0x206"",""0x3"",""0x71a8884""]" 1 518 0x3 +2026-04-25T20:05:36.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x33"",""0x7c17c4"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x33"",""0x7c17c4"",""0x206"",""0x3"",""0x71a8884""]" 2 3 0x71a8884 d8 60 79 +2026-04-25T20:05:36.620Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:36.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x55"",""0xa052374"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x55"",""0xa052374"",""0x206"",""0x3"",""0x71a8884""]" 0 85 0xa052374 False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@52 False:u8@54 False:u8@55 False:u8@56 False:u8@74 False:u8@75 False:u8@76 False:u8@78 False:u8@79 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@54 False:variant_bool@55 False:variant_bool@74 False:variant_bool@75 False:variant_bool@78 55 00 00 00 01 00 27 00 00 00 00 00 00 00 69 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 6a fc 2c c1 3b e1 88 42 9f 35 4c b5 58 b5 2e f1 03 00 00 00 c0 00 00 d3 c1 2f ab d4 +2026-04-25T20:05:36.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x55"",""0xa052374"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x55"",""0xa052374"",""0x206"",""0x3"",""0x71a8884""]" 1 518 0x3 +2026-04-25T20:05:36.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bac738 "[""0x55"",""0xa052374"",""0x6d4e968"",""0x76ffedd8"",""0x8bac744"",""0x55"",""0xa052374"",""0x206"",""0x3"",""0x71a8884""]" 2 3 0x71a8884 d8 60 79 +2026-04-25T20:05:36.624Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/066-frida-write2-test-bool-timestamp/frida-exit.txt b/captures/066-frida-write2-test-bool-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/066-frida-write2-test-bool-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/066-frida-write2-test-bool-timestamp/frida.stderr.txt b/captures/066-frida-write2-test-bool-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/066-frida-write2-test-bool-timestamp/frida.stdout.jsonl b/captures/066-frida-write2-test-bool-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..9b9f905 --- /dev/null +++ b/captures/066-frida-write2-test-bool-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestBool --type=bool --value=false --user-id=1 --write-time=2026-04-25T08:01:02 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\066-frida-write2-test-bool-timestamp\harness.log --client=MxFridaTrace-066-frida-write2-test-bool-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestBool --type=bool --value=false --user-id=1 --write-time=2026-04-25T08:01:02 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\066-frida-write2-test-bool-timestamp\harness.log --client=MxFridaTrace-066-frida-write2-test-bool-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:05:22.117Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:05:22.117Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:05:22.118Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:05:22.118Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:05:22.119Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:05:35.299Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:05:35.299Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:05:35.300Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:05:35.301Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:05:35.302Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:05:35.302Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:05:35.303Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8ba7010","outPtr":"0x4fe7dc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:05:35.376Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe7dc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe7dc","time":"2026-04-25T20:05:35.376Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8ba7010","outPtr":"0x4fe7dc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:05:35.377Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe7dc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe7dc","time":"2026-04-25T20:05:35.377Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:05:35.399Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:05:35.400Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:05:35.400Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:05:35.401Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:05:35.480Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c51298","outPtr":"0x4fed60","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0x4fed60","time":"2026-04-25T20:05:35.480Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8bb0588","referenceString":{"length":24,"capacity":31,"value":"TestChildObject.TestBool"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c7d010","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 d3 c7 08 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 d0 c7 08 ec 62 4e 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 ba 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ac f1 75 00 00 00 00 00"},"time":"2026-04-25T20:05:35.481Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8bb05d8","outPtr":"0x4fecf0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0x4fecf0","time":"2026-04-25T20:05:35.482Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8bb05d8","outPtr":"0x4fecf0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0x4fecf0","time":"2026-04-25T20:05:35.482Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8bb05d8","outPtr":"0x4fecf0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0x4fecf0","time":"2026-04-25T20:05:35.483Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8bb0588","referenceString":{"length":24,"capacity":31,"value":"TestChildObject.TestBool"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c7d010","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 d3 c7 08 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 d0 c7 08 ec 62 4e 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 ba 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ac f1 75 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:05:35.484Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:05:35.484Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x4feeac","args":["0x5898ff0","0x1","0x1","0x6475e633","0x74794704"],"time":"2026-04-25T20:05:35.486Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8ba7010","outPtr":"0x4fed2c","inWords":[65537,327682,186166,655514,32250,0],"time":"2026-04-25T20:05:35.486Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fed2c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0x4fed2c","time":"2026-04-25T20:05:35.486Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8ba7010","outPtr":"0x4fd9c0","inWords":[65537,327682,186166,655514,32250,0],"time":"2026-04-25T20:05:35.487Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fd9c0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0x4fd9c0","time":"2026-04-25T20:05:35.487Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:05:35.487Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bac738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8bb0648","0x4feb70","0xef83fa20"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8bb0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ba 08 1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 bb 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:05:35.613Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bac738","args":["0x1","0x1","0x1","0x168","0x9550020","0x2316c033","0x8bb0214","0x8bb0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9550020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ba 08 1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 bb 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:05:35.615Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:05:35.616Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:05:35.616Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bac738","0x1","0x1","0x2","0x2","0x0","0x27","0x8c7d760","0x4feb70","0xef83fa20"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8c7d760","hex":"1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T20:05:35.617Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bac738","args":["0x1","0x1","0x2","0x55","0x9550020","0x2316c033","0x8c89584","0x8c89574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9550020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T20:05:35.618Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:05:35.619Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:05:35.619Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bac738","args":["0x5c","0x7c28cc","0x6d4e968","0x76ffedd8","0x8bac744","0x5c","0x7c28cc","0x206","0x3","0x71a8884"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7c28cc","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 6a fc 2c c1 3b e1 88 42 9f 35 4c b5 58 b5 2e f1 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a8884","hex":"d8 60 79"}],"time":"2026-04-25T20:05:35.650Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:35.652Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bac738","args":["0x69","0x7bb194","0x6d4e968","0x76ffedd8","0x8bac744","0x69","0x7bb194","0x206","0x3","0x71a8884"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x7bb194","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 68 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 6a fc 2c c1 3b e1 88 42 9f 35 4c b5 58 b5 2e f1 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 03 00 00 00 03 00 00 00 c0 00 70 da ae 22 7c d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a8884","hex":"d8 60 79"}],"time":"2026-04-25T20:05:35.655Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:35.656Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bac738","args":["0x2c2","0x7c28cc","0x6d4e968","0x76ffedd8","0x8bac744","0x2c2","0x7c28cc","0x206","0x3","0x71a8884"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7c28cc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 9a 9a 81 18 15 53 39 4c 9a bc 96 63 58 fc 84 72 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a8884","hex":"d8 60 79"}],"time":"2026-04-25T20:05:35.667Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:35.669Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bac738","args":["0x97","0x7bb194","0x6d4e968","0x76ffedd8","0x8bac744","0x97","0x7bb194","0x206","0x3","0x71a8884"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7bb194","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 3b ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 9a 9a 81 18 15 53 39 4c 9a bc 96 63 58 fc 84 72 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a8884","hex":"d8 60 79"}],"time":"2026-04-25T20:05:35.672Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:35.673Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0x4fee7c","args":["0x5898ff0","0x1","0x1","0xb","0x0","0x0","0x0","0x7","0x0","0xb08b9142","0x40e6872a","0x1","0x6475e633"],"time":"2026-04-25T20:05:36.529Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:05:36.530Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bac738","0x1","0x1","0x2","0x2","0x0","0x25","0x8c7d7f0","0x4feb70","0xef83fa20"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8c7d7f0","hex":"37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 00 00 00 d3 c1 2f ab d4 dc 01 c9 dd a5 0b 01 00 00 00"}],"time":"2026-04-25T20:05:36.583Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bac738","args":["0x1","0x1","0x2","0x53","0x9550020","0x2316c033","0x8ba77f4","0x8ba77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9550020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 00 00 00 d3 c1 2f ab d4 dc 01 c9 dd a5 0b 01 00 00 00"}],"time":"2026-04-25T20:05:36.584Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:05:36.585Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:05:36.585Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bac738","args":["0x33","0x7c17c4","0x6d4e968","0x76ffedd8","0x8bac744","0x33","0x7c17c4","0x206","0x3","0x71a8884"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7c17c4","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a8884","hex":"d8 60 79"}],"time":"2026-04-25T20:05:36.619Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:36.620Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bac738","args":["0x55","0xa052374","0x6d4e968","0x76ffedd8","0x8bac744","0x55","0xa052374","0x206","0x3","0x71a8884"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0xa052374","hex":"55 00 00 00 01 00 27 00 00 00 00 00 00 00 69 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 6a fc 2c c1 3b e1 88 42 9f 35 4c b5 58 b5 2e f1 03 00 00 00 c0 00 00 d3 c1 2f ab d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a8884","hex":"d8 60 79"}],"time":"2026-04-25T20:05:36.623Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:36.624Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/066-frida-write2-test-bool-timestamp/harness.log b/captures/066-frida-write2-test-bool-timestamp/harness.log new file mode 100644 index 0000000..7e58e6c --- /dev/null +++ b/captures/066-frida-write2-test-bool-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:05:22.0206288+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-066-frida-write2-test-bool-timestamp","Tags":["TestChildObject.TestBool"],"ItemContext":"","WriteType":"bool","WriteValue":"false","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:01:02","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:05:35.1164485+00:00 mx.register.begin {"ClientName":"MxFridaTrace-066-frida-write2-test-bool-timestamp"} +2026-04-25T20:05:35.4770854+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:05:35.4770854+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-25T20:05:35.4840217+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T20:05:35.4850202+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T20:05:35.4880101+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T20:05:36.5256322+00:00 mx.write.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"False"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:01:02"} +2026-04-25T20:05:36.5306340+00:00 mx.write.end {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:05:40.5771624+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T20:05:40.5781590+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T20:05:40.5781590+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T20:05:40.5781590+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T20:05:40.5781590+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:05:44.4222563+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:05:44.4292580+00:00 harness.stop {} diff --git a/captures/067-frida-write2-test-float-timestamp/frida-command.txt b/captures/067-frida-write2-test-float-timestamp/frida-command.txt new file mode 100644 index 0000000..3eebb64 --- /dev/null +++ b/captures/067-frida-write2-test-float-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestFloat --type=float --value=6.25 --user-id=1 --write-time=2026-04-25T08:02:03 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\067-frida-write2-test-float-timestamp\harness.log --client=MxFridaTrace-067-frida-write2-test-float-timestamp diff --git a/captures/067-frida-write2-test-float-timestamp/frida-events.tsv b/captures/067-frida-write2-test-float-timestamp/frida-events.tsv new file mode 100644 index 0000000..46141e3 --- /dev/null +++ b/captures/067-frida-write2-test-float-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:05:21.805Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:05:21.805Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:05:21.806Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:05:21.807Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:05:21.808Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:05:28.756Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:05:28.757Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:05:28.757Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:05:28.758Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:28.759Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:05:28.760Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:05:28.760Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:05:28.925Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:28.925Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xdfe33c [] +2026-04-25T20:05:28.927Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:28.927Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xdfe33c [] +2026-04-25T20:05:28.957Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:05:28.958Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:05:28.958Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:05:28.959Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:05:29.036Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:05:29.036Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xdfe8bc [] +2026-04-25T20:05:29.037Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:05:29.038Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xdfe84c [] +2026-04-25T20:05:29.038Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xdfe84c [] +2026-04-25T20:05:29.039Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xdfe84c [] +2026-04-25T20:05:29.040Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:05:29.040Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:05:29.042Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xdfea0c "[""0x6338ff0"",""0x1"",""0x1"",""0x2f558277"",""0x74794704""]" +2026-04-25T20:05:29.043Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:29.043Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xdfe88c [] +2026-04-25T20:05:29.044Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:05:29.044Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xdfd520 [] +2026-04-25T20:05:29.044Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:05:29.173Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x96d0648"",""0xdfe6d0"",""0x59a913c3""]" 0 1 0x2 +2026-04-25T20:05:29.173Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x96d0648"",""0xdfe6d0"",""0x59a913c3""]" 1 314 0x96d0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6c 09 1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6d 09 20 01 00 02 00 00 00 +2026-04-25T20:05:29.176Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96cc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa879020"",""0xbe9a8782"",""0x96d0214"",""0x96d0204"",""0x641add04"",""0x0""]" 0 360 0xa879020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6c 09 1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6d 09 20 01 00 02 00 00 00 +2026-04-25T20:05:29.177Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:05:29.177Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:05:29.178Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x979e7b0"",""0xdfe6d0"",""0x59a913c3""]" 0 2 0x2 +2026-04-25T20:05:29.178Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x979e7b0"",""0xdfe6d0"",""0x59a913c3""]" 1 39 0x979e7b0 1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00 +2026-04-25T20:05:29.179Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96cc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa879020"",""0xbe9a8782"",""0x97a9584"",""0x97a9574"",""0x641add04"",""0x0""]" 0 85 0xa879020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00 +2026-04-25T20:05:29.180Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:05:29.180Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:05:29.211Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x5c"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x5c"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 0 92 0x819a2fc 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 15 06 56 b5 16 4f 04 41 86 21 a4 bb 6c 75 d9 33 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 +2026-04-25T20:05:29.211Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x5c"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x5c"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 1 518 0x3 +2026-04-25T20:05:29.211Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x5c"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x5c"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 2 3 0x7c6bdf4 50 e6 b7 +2026-04-25T20:05:29.213Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:29.216Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x6c"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x6c"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 0 108 0x81980ec 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 66 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 15 06 56 b5 16 4f 04 41 86 21 a4 bb 6c 75 d9 33 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 03 00 00 00 03 00 00 00 c0 00 80 78 a3 39 7c d4 dc 01 03 +2026-04-25T20:05:29.216Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x6c"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x6c"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 1 518 0x3 +2026-04-25T20:05:29.216Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x6c"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x6c"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 2 3 0x7c6bdf4 50 e6 b7 +2026-04-25T20:05:29.217Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:29.227Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x2c2"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x2c2"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 0 706 0x819a2fc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 b9 60 63 4a ea f7 57 41 bf af 0b c2 c7 cc 33 af 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:05:29.227Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x2c2"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x2c2"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 1 518 0x3 +2026-04-25T20:05:29.227Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x2c2"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x2c2"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 2 3 0x7c6bdf4 50 e6 b7 +2026-04-25T20:05:29.229Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:29.235Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x97"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x97"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 0 151 0x81980ec 97 00 00 00 01 00 69 00 00 00 00 00 00 00 20 ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 b9 60 63 4a ea f7 57 41 bf af 0b c2 c7 cc 33 af 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:05:29.235Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x97"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x97"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 1 518 0x3 +2026-04-25T20:05:29.235Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x97"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x97"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 2 3 0x7c6bdf4 50 e6 b7 +2026-04-25T20:05:29.237Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:30.093Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0xdfe9dc "[""0x6338ff0"",""0x1"",""0x1"",""0x4"",""0x0"",""0x40c80000"",""0x0"",""0x7"",""0x0"",""0xb6543210"",""0x40e6872a"",""0x1"",""0x2f558277""]" +2026-04-25T20:05:30.094Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:05:30.147Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x979e9f0"",""0xdfe6d0"",""0x59a913c3""]" 0 2 0x2 +2026-04-25T20:05:30.147Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x979e9f0"",""0xdfe6d0"",""0x59a913c3""]" 1 40 0x979e9f0 6.25:f32@18 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 c8 40 00 00 80 af 1d 54 ab d4 dc 01 94 c4 a5 0b 01 00 00 00 +2026-04-25T20:05:30.148Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96cc738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa879020"",""0xbe9a8782"",""0x96c77f4"",""0x96c77e4"",""0x641add04"",""0x0""]" 0 86 0xa879020 6.25:f32@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 c8 40 00 00 80 af 1d 54 ab d4 dc 01 94 c4 a5 0b 01 00 00 00 +2026-04-25T20:05:30.148Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:05:30.149Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:05:30.199Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x33"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x33"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 0 51 0x819a2fc 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:05:30.199Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x33"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x33"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 1 518 0x3 +2026-04-25T20:05:30.199Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x33"",""0x819a2fc"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x33"",""0x819a2fc"",""0x206"",""0x3"",""0x7c6bdf4""]" 2 3 0x7c6bdf4 50 e6 b7 +2026-04-25T20:05:30.201Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:05:30.204Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x58"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x58"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 0 88 0x81980ec 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 67 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 15 06 56 b5 16 4f 04 41 86 21 a4 bb 6c 75 d9 33 03 00 00 00 c0 00 80 af 1d 54 ab d4 dc 01 03 +2026-04-25T20:05:30.204Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x58"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x58"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 1 518 0x3 +2026-04-25T20:05:30.204Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96cc738 "[""0x58"",""0x81980ec"",""0x681edb8"",""0x76ffedd8"",""0x96cc744"",""0x58"",""0x81980ec"",""0x206"",""0x3"",""0x7c6bdf4""]" 2 3 0x7c6bdf4 50 e6 b7 +2026-04-25T20:05:30.207Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/067-frida-write2-test-float-timestamp/frida-exit.txt b/captures/067-frida-write2-test-float-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/067-frida-write2-test-float-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/067-frida-write2-test-float-timestamp/frida.stderr.txt b/captures/067-frida-write2-test-float-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/067-frida-write2-test-float-timestamp/frida.stdout.jsonl b/captures/067-frida-write2-test-float-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..5e3c9dd --- /dev/null +++ b/captures/067-frida-write2-test-float-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestFloat --type=float --value=6.25 --user-id=1 --write-time=2026-04-25T08:02:03 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\067-frida-write2-test-float-timestamp\harness.log --client=MxFridaTrace-067-frida-write2-test-float-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestFloat --type=float --value=6.25 --user-id=1 --write-time=2026-04-25T08:02:03 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\067-frida-write2-test-float-timestamp\harness.log --client=MxFridaTrace-067-frida-write2-test-float-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:05:21.805Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:05:21.805Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:05:21.806Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:05:21.807Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:05:21.808Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:05:28.756Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:05:28.757Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:05:28.757Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:05:28.758Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:05:28.759Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:05:28.760Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:05:28.760Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96c7010","outPtr":"0xdfe33c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:05:28.925Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xdfe33c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xdfe33c","time":"2026-04-25T20:05:28.925Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96c7010","outPtr":"0xdfe33c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:05:28.927Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xdfe33c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xdfe33c","time":"2026-04-25T20:05:28.927Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:05:28.957Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:05:28.958Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:05:28.958Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:05:28.959Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:05:29.036Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97721e8","outPtr":"0xdfe8bc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655516,"w4":60838},"retval":"0xdfe8bc","time":"2026-04-25T20:05:29.036Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x96d0588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.TestFloat"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x979e4e0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 c8 e1 79 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e0 e4 79 09 fc 10 b7 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 6c 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 16 57 01 00 00 00 00"},"time":"2026-04-25T20:05:29.037Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96d05d8","outPtr":"0xdfe84c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655516,"w4":60838},"retval":"0xdfe84c","time":"2026-04-25T20:05:29.038Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96d05d8","outPtr":"0xdfe84c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655516,"w4":60838},"retval":"0xdfe84c","time":"2026-04-25T20:05:29.038Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96d05d8","outPtr":"0xdfe84c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655516,"w4":60838},"retval":"0xdfe84c","time":"2026-04-25T20:05:29.039Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x96d0588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.TestFloat"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x979e4e0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 c8 e1 79 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e0 e4 79 09 fc 10 b7 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 6c 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 16 57 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:05:29.040Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:05:29.040Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xdfea0c","args":["0x6338ff0","0x1","0x1","0x2f558277","0x74794704"],"time":"2026-04-25T20:05:29.042Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96c7010","outPtr":"0xdfe88c","inWords":[65537,327682,186166,655516,60838,0],"time":"2026-04-25T20:05:29.043Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xdfe88c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655516,"w4":60838},"retval":"0xdfe88c","time":"2026-04-25T20:05:29.043Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96c7010","outPtr":"0xdfd520","inWords":[65537,327682,186166,655516,60838,0],"time":"2026-04-25T20:05:29.044Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xdfd520","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655516,"w4":60838},"retval":"0xdfd520","time":"2026-04-25T20:05:29.044Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:05:29.044Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96cc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x96d0648","0xdfe6d0","0x59a913c3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x96d0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6c 09 1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6d 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:05:29.173Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96cc738","args":["0x1","0x1","0x1","0x168","0xa879020","0xbe9a8782","0x96d0214","0x96d0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa879020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6c 09 1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6d 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:05:29.176Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:05:29.177Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:05:29.177Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96cc738","0x1","0x1","0x2","0x2","0x0","0x27","0x979e7b0","0xdfe6d0","0x59a913c3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x979e7b0","hex":"1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00"}],"time":"2026-04-25T20:05:29.178Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96cc738","args":["0x1","0x1","0x2","0x55","0xa879020","0xbe9a8782","0x97a9584","0x97a9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa879020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 00 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 00"}],"time":"2026-04-25T20:05:29.179Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:05:29.180Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:05:29.180Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96cc738","args":["0x5c","0x819a2fc","0x681edb8","0x76ffedd8","0x96cc744","0x5c","0x819a2fc","0x206","0x3","0x7c6bdf4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x819a2fc","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 15 06 56 b5 16 4f 04 41 86 21 a4 bb 6c 75 d9 33 5d ca 6d 5b ef 68 72 42 90 bb 4d 87"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c6bdf4","hex":"50 e6 b7"}],"time":"2026-04-25T20:05:29.211Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:29.213Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96cc738","args":["0x6c","0x81980ec","0x681edb8","0x76ffedd8","0x96cc744","0x6c","0x81980ec","0x206","0x3","0x7c6bdf4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x81980ec","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 66 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 15 06 56 b5 16 4f 04 41 86 21 a4 bb 6c 75 d9 33 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 03 00 00 00 03 00 00 00 c0 00 80 78 a3 39 7c d4 dc 01 03"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c6bdf4","hex":"50 e6 b7"}],"time":"2026-04-25T20:05:29.216Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:29.217Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96cc738","args":["0x2c2","0x819a2fc","0x681edb8","0x76ffedd8","0x96cc744","0x2c2","0x819a2fc","0x206","0x3","0x7c6bdf4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x819a2fc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 b9 60 63 4a ea f7 57 41 bf af 0b c2 c7 cc 33 af 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c6bdf4","hex":"50 e6 b7"}],"time":"2026-04-25T20:05:29.227Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:29.229Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96cc738","args":["0x97","0x81980ec","0x681edb8","0x76ffedd8","0x96cc744","0x97","0x81980ec","0x206","0x3","0x7c6bdf4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x81980ec","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 20 ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 b9 60 63 4a ea f7 57 41 bf af 0b c2 c7 cc 33 af 5d ca 6d 5b ef 68 72 42 90 bb 4d 87 c8 17 2d 18 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c6bdf4","hex":"50 e6 b7"}],"time":"2026-04-25T20:05:29.235Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:29.237Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0xdfe9dc","args":["0x6338ff0","0x1","0x1","0x4","0x0","0x40c80000","0x0","0x7","0x0","0xb6543210","0x40e6872a","0x1","0x2f558277"],"time":"2026-04-25T20:05:30.093Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:05:30.094Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96cc738","0x1","0x1","0x2","0x2","0x0","0x28","0x979e9f0","0xdfe6d0","0x59a913c3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x979e9f0","hex":"37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 c8 40 00 00 80 af 1d 54 ab d4 dc 01 94 c4 a5 0b 01 00 00 00"}],"time":"2026-04-25T20:05:30.147Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96cc738","args":["0x1","0x1","0x2","0x56","0xa879020","0xbe9a8782","0x96c77f4","0x96c77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa879020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 c8 40 00 00 80 af 1d 54 ab d4 dc 01 94 c4 a5 0b 01 00 00 00"}],"time":"2026-04-25T20:05:30.148Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:05:30.148Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:05:30.149Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96cc738","args":["0x33","0x819a2fc","0x681edb8","0x76ffedd8","0x96cc744","0x33","0x819a2fc","0x206","0x3","0x7c6bdf4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x819a2fc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c6bdf4","hex":"50 e6 b7"}],"time":"2026-04-25T20:05:30.199Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:30.201Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96cc738","args":["0x58","0x81980ec","0x681edb8","0x76ffedd8","0x96cc744","0x58","0x81980ec","0x206","0x3","0x7c6bdf4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x81980ec","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 67 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 15 06 56 b5 16 4f 04 41 86 21 a4 bb 6c 75 d9 33 03 00 00 00 c0 00 80 af 1d 54 ab d4 dc 01 03"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c6bdf4","hex":"50 e6 b7"}],"time":"2026-04-25T20:05:30.204Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:05:30.207Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/067-frida-write2-test-float-timestamp/harness.log b/captures/067-frida-write2-test-float-timestamp/harness.log new file mode 100644 index 0000000..db83b5b --- /dev/null +++ b/captures/067-frida-write2-test-float-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:05:21.7173576+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-067-frida-write2-test-float-timestamp","Tags":["TestChildObject.TestFloat"],"ItemContext":"","WriteType":"float","WriteValue":"6.25","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:02:03","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:05:28.6615557+00:00 mx.register.begin {"ClientName":"MxFridaTrace-067-frida-write2-test-float-timestamp"} +2026-04-25T20:05:29.0322183+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:05:29.0331864+00:00 mx.additem.begin {"Tag":"TestChildObject.TestFloat"} +2026-04-25T20:05:29.0401843+00:00 mx.additem.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T20:05:29.0412014+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T20:05:29.0451947+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T20:05:30.0897375+00:00 mx.write.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Single","Value":"6.25"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:02:03"} +2026-04-25T20:05:30.0947444+00:00 mx.write.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:05:34.1384927+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T20:05:34.1394915+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T20:05:34.1394915+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T20:05:34.1394915+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestFloat","ItemHandle":1} +2026-04-25T20:05:34.1394915+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:05:38.4892133+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:05:38.4962816+00:00 harness.stop {} diff --git a/captures/068-frida-write2-test-double-timestamp/frida-command.txt b/captures/068-frida-write2-test-double-timestamp/frida-command.txt new file mode 100644 index 0000000..6cbf57f --- /dev/null +++ b/captures/068-frida-write2-test-double-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestDouble --type=double --value=7.125 --user-id=1 --write-time=2026-04-25T08:03:04 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\068-frida-write2-test-double-timestamp\harness.log --client=MxFridaTrace-068-frida-write2-test-double-timestamp diff --git a/captures/068-frida-write2-test-double-timestamp/frida-events.tsv b/captures/068-frida-write2-test-double-timestamp/frida-events.tsv new file mode 100644 index 0000000..cac7593 --- /dev/null +++ b/captures/068-frida-write2-test-double-timestamp/frida-events.tsv @@ -0,0 +1,80 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:05:59.739Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:05:59.739Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:05:59.740Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:05:59.740Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:05:59.741Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:06:06.182Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:06:06.183Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:06:06.184Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:06:06.184Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:06.185Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:06:06.185Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:06:06.186Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:06:06.285Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:06:06.285Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:06:06.286Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:06:06.286Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:06:06.314Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:06.314Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fead8 [] +2026-04-25T20:06:06.315Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:06.315Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fead8 [] +2026-04-25T20:06:06.412Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:06:06.412Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12ff05c [] +2026-04-25T20:06:06.413Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:06:06.414Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fefec [] +2026-04-25T20:06:06.414Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fefec [] +2026-04-25T20:06:06.415Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fefec [] +2026-04-25T20:06:06.416Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:06:06.416Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:06:06.417Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x12ff1ac "[""0x67a8ff0"",""0x1"",""0x1"",""0xf29cae54"",""0x74794704""]" +2026-04-25T20:06:06.418Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:06.418Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12ff02c [] +2026-04-25T20:06:06.419Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:06.419Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fdcc0 [] +2026-04-25T20:06:06.419Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:06:06.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9960648"",""0x12fee70"",""0x47d5350e""]" 0 1 0x2 +2026-04-25T20:06:06.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9960648"",""0x12fee70"",""0x47d5350e""]" 1 314 0x9960648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00 +2026-04-25T20:06:06.547Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x995c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa435020"",""0x66d4970d"",""0x9960214"",""0x9960204"",""0x641add04"",""0x0""]" 0 360 0xa435020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00 +2026-04-25T20:06:06.548Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:06:06.548Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:06:06.550Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x9a30928"",""0x12fee70"",""0x47d5350e""]" 0 2 0x2 +2026-04-25T20:06:06.550Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x9a30928"",""0x12fee70"",""0x47d5350e""]" 1 39 0x9a30928 1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00 +2026-04-25T20:06:06.551Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x995c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa435020"",""0x66d4970d"",""0x9a38ffc"",""0x9a38fec"",""0x641add04"",""0x0""]" 0 85 0xa435020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00 +2026-04-25T20:06:06.552Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:06:06.552Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:06:06.572Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x5c"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x5c"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 0 92 0x82ed6cc 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 4e ff 15 35 39 dc 61 44 b1 6e e4 9f f2 4b 07 cf f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f +2026-04-25T20:06:06.572Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x5c"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x5c"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 1 518 0x3 +2026-04-25T20:06:06.572Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x5c"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x5c"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 2 3 0x80d6e6c 30 d5 ea +2026-04-25T20:06:06.574Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:06.577Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x70"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x70"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 0 112 0x15dd7e4 70 00 00 00 01 00 42 00 00 00 00 00 00 00 6c 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 4e ff 15 35 39 dc 61 44 b1 6e e4 9f f2 4b 07 cf f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 03 00 00 00 03 00 00 00 c0 00 80 50 73 50 7c d4 dc 01 04 00 00 00 00 +2026-04-25T20:06:06.577Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x70"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x70"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 1 518 0x3 +2026-04-25T20:06:06.577Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x70"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x70"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 2 3 0x80d6e6c 30 d5 ea +2026-04-25T20:06:06.578Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:06.582Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x2c2"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x2c2"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 0 706 0x82ed6cc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a2 69 66 bc a7 79 36 42 84 11 3a 8b f8 82 19 d3 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:06:06.582Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x2c2"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x2c2"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 1 518 0x3 +2026-04-25T20:06:06.582Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x2c2"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x2c2"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 2 3 0x80d6e6c 30 d5 ea +2026-04-25T20:06:06.584Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:06.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x97"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x97"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 0 151 0x15dd7e4 97 00 00 00 01 00 69 00 00 00 00 00 00 00 b7 ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a2 69 66 bc a7 79 36 42 84 11 3a 8b f8 82 19 d3 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:06:06.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x97"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x97"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 1 518 0x3 +2026-04-25T20:06:06.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x97"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x97"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 2 3 0x80d6e6c 30 d5 ea +2026-04-25T20:06:06.587Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:07.461Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0x12ff17c "[""0x67a8ff0"",""0x1"",""0x1"",""0x5"",""0x0"",""0x0"",""0x401c8000"",""0x7"",""0x0"",""0xbc1cd2de"",""0x40e6872a"",""0x1"",""0xf29cae54""]" +2026-04-25T20:06:07.463Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:06:07.515Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x9a30460"",""0x12fee70"",""0x47d5350e""]" 0 2 0x2 +2026-04-25T20:06:07.515Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x9a30460"",""0x12fee70"",""0x47d5350e""]" 1 44 0x9a30460 7.125:f64@18 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 80 1c 40 00 00 00 8c 79 78 ab d4 dc 01 a3 56 a6 0b 01 00 00 00 +2026-04-25T20:06:07.515Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x995c738 "[""0x1"",""0x1"",""0x2"",""0x5a"",""0xa435020"",""0x66d4970d"",""0x9a39454"",""0x9a39444"",""0x641add04"",""0x0""]" 0 90 0xa435020 7.125:f64@64 01 00 2c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 80 1c 40 00 00 00 8c 79 78 ab d4 dc 01 a3 56 a6 0b 01 00 00 00 +2026-04-25T20:06:07.516Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:06:07.517Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:06:07.564Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x33"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x33"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 0 51 0x82ed6cc 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:06:07.564Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x33"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x33"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 1 518 0x3 +2026-04-25T20:06:07.564Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x33"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x33"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 2 3 0x80d6e6c 30 d5 ea +2026-04-25T20:06:07.566Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:07.568Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x5c"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x5c"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 0 92 0x15dd7e4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 6d 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 4e ff 15 35 39 dc 61 44 b1 6e e4 9f f2 4b 07 cf 03 00 00 00 c0 00 00 8c 79 78 ab d4 dc 01 04 00 00 00 00 +2026-04-25T20:06:07.568Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x5c"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x5c"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 1 518 0x3 +2026-04-25T20:06:07.568Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x5c"",""0x15dd7e4"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x5c"",""0x15dd7e4"",""0x206"",""0x3"",""0x80d6e6c""]" 2 3 0x80d6e6c 30 d5 ea +2026-04-25T20:06:07.569Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:07.712Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x84"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x84"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 0 132 0x82ed6cc 84 00 00 00 01 00 56 00 00 00 00 00 00 00 be ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 01 00 00 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 01 00 20 03 9a 9a 81 18 15 53 39 4c 9a bc 96 63 58 fc 84 72 24 01 00 02 00 00 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 01 00 20 03 9a 9a 81 18 15 53 39 4c 9a bc 96 63 +2026-04-25T20:06:07.712Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x84"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x84"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 1 518 0x3 +2026-04-25T20:06:07.712Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x84"",""0x82ed6cc"",""0x7d6ebf8"",""0x76ffedd8"",""0x995c744"",""0x84"",""0x82ed6cc"",""0x206"",""0x3"",""0x80d6e6c""]" 2 3 0x80d6e6c 30 d5 ea +2026-04-25T20:06:07.713Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/068-frida-write2-test-double-timestamp/frida-exit.txt b/captures/068-frida-write2-test-double-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/068-frida-write2-test-double-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/068-frida-write2-test-double-timestamp/frida.stderr.txt b/captures/068-frida-write2-test-double-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/068-frida-write2-test-double-timestamp/frida.stdout.jsonl b/captures/068-frida-write2-test-double-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..8e0beb5 --- /dev/null +++ b/captures/068-frida-write2-test-double-timestamp/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestDouble --type=double --value=7.125 --user-id=1 --write-time=2026-04-25T08:03:04 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\068-frida-write2-test-double-timestamp\harness.log --client=MxFridaTrace-068-frida-write2-test-double-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestDouble --type=double --value=7.125 --user-id=1 --write-time=2026-04-25T08:03:04 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\068-frida-write2-test-double-timestamp\harness.log --client=MxFridaTrace-068-frida-write2-test-double-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:05:59.739Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:05:59.739Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:05:59.740Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:05:59.740Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:05:59.741Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:06:06.182Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:06:06.183Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:06:06.184Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:06:06.184Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:06:06.185Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:06:06.185Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:06:06.186Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:06:06.285Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:06:06.285Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:06:06.286Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:06:06.286Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12fead8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:06:06.314Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fead8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fead8","time":"2026-04-25T20:06:06.314Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12fead8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:06:06.315Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fead8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fead8","time":"2026-04-25T20:06:06.315Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:06:06.412Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9a06f48","outPtr":"0x12ff05c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655517,"w4":38174},"retval":"0x12ff05c","time":"2026-04-25T20:06:06.412Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9960588","referenceString":{"length":26,"capacity":31,"value":"TestChildObject.TestDouble"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9a30418","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 c8 05 a3 09 00 65 00 00 00 02 00 00 00 00 00 02 1a 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 04 a3 09 bc 16 ea 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 95 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 b4 cd 57 01 00 00 00 00"},"time":"2026-04-25T20:06:06.413Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fefec","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655517,"w4":38174},"retval":"0x12fefec","time":"2026-04-25T20:06:06.414Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fefec","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655517,"w4":38174},"retval":"0x12fefec","time":"2026-04-25T20:06:06.414Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fefec","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655517,"w4":38174},"retval":"0x12fefec","time":"2026-04-25T20:06:06.415Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9960588","referenceString":{"length":26,"capacity":31,"value":"TestChildObject.TestDouble"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9a30418","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 c8 05 a3 09 00 65 00 00 00 02 00 00 00 00 00 02 1a 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 04 a3 09 bc 16 ea 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 95 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 b4 cd 57 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:06:06.416Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:06:06.416Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x12ff1ac","args":["0x67a8ff0","0x1","0x1","0xf29cae54","0x74794704"],"time":"2026-04-25T20:06:06.417Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12ff02c","inWords":[65537,327682,186166,655517,38174,0],"time":"2026-04-25T20:06:06.418Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12ff02c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655517,"w4":38174},"retval":"0x12ff02c","time":"2026-04-25T20:06:06.418Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12fdcc0","inWords":[65537,327682,186166,655517,38174,0],"time":"2026-04-25T20:06:06.419Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fdcc0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655517,"w4":38174},"retval":"0x12fdcc0","time":"2026-04-25T20:06:06.419Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:06:06.419Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x995c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9960648","0x12fee70","0x47d5350e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9960648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:06:06.545Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x995c738","args":["0x1","0x1","0x1","0x168","0xa435020","0x66d4970d","0x9960214","0x9960204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa435020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:06:06.547Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:06:06.548Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:06:06.548Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x995c738","0x1","0x1","0x2","0x2","0x0","0x27","0x9a30928","0x12fee70","0x47d5350e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x9a30928","hex":"1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00"}],"time":"2026-04-25T20:06:06.550Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x995c738","args":["0x1","0x1","0x2","0x55","0xa435020","0x66d4970d","0x9a38ffc","0x9a38fec","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa435020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 00 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 03 00 00 00"}],"time":"2026-04-25T20:06:06.551Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:06:06.552Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:06:06.552Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x5c","0x82ed6cc","0x7d6ebf8","0x76ffedd8","0x995c744","0x5c","0x82ed6cc","0x206","0x3","0x80d6e6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x82ed6cc","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 4e ff 15 35 39 dc 61 44 b1 6e e4 9f f2 4b 07 cf f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x80d6e6c","hex":"30 d5 ea"}],"time":"2026-04-25T20:06:06.572Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:06.574Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x70","0x15dd7e4","0x7d6ebf8","0x76ffedd8","0x995c744","0x70","0x15dd7e4","0x206","0x3","0x80d6e6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x15dd7e4","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 6c 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 4e ff 15 35 39 dc 61 44 b1 6e e4 9f f2 4b 07 cf f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 03 00 00 00 03 00 00 00 c0 00 80 50 73 50 7c d4 dc 01 04 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x80d6e6c","hex":"30 d5 ea"}],"time":"2026-04-25T20:06:06.577Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:06.578Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x2c2","0x82ed6cc","0x7d6ebf8","0x76ffedd8","0x995c744","0x2c2","0x82ed6cc","0x206","0x3","0x80d6e6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x82ed6cc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a2 69 66 bc a7 79 36 42 84 11 3a 8b f8 82 19 d3 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x80d6e6c","hex":"30 d5 ea"}],"time":"2026-04-25T20:06:06.582Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:06.584Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x97","0x15dd7e4","0x7d6ebf8","0x76ffedd8","0x995c744","0x97","0x15dd7e4","0x206","0x3","0x80d6e6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x15dd7e4","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 b7 ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a2 69 66 bc a7 79 36 42 84 11 3a 8b f8 82 19 d3 f8 a6 ab 47 81 64 e2 46 a6 cf a5 8f fb 28 60 e4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x80d6e6c","hex":"30 d5 ea"}],"time":"2026-04-25T20:06:06.586Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:06.587Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0x12ff17c","args":["0x67a8ff0","0x1","0x1","0x5","0x0","0x0","0x401c8000","0x7","0x0","0xbc1cd2de","0x40e6872a","0x1","0xf29cae54"],"time":"2026-04-25T20:06:07.461Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:06:07.463Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x995c738","0x1","0x1","0x2","0x2","0x0","0x2c","0x9a30460","0x12fee70","0x47d5350e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":44,"ptr":"0x9a30460","hex":"37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 80 1c 40 00 00 00 8c 79 78 ab d4 dc 01 a3 56 a6 0b 01 00 00 00"}],"time":"2026-04-25T20:06:07.515Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x995c738","args":["0x1","0x1","0x2","0x5a","0xa435020","0x66d4970d","0x9a39454","0x9a39444","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":90,"ptr":"0xa435020","hex":"01 00 2c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 80 1c 40 00 00 00 8c 79 78 ab d4 dc 01 a3 56 a6 0b 01 00 00 00"}],"time":"2026-04-25T20:06:07.515Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:06:07.516Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:06:07.517Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x33","0x82ed6cc","0x7d6ebf8","0x76ffedd8","0x995c744","0x33","0x82ed6cc","0x206","0x3","0x80d6e6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x82ed6cc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x80d6e6c","hex":"30 d5 ea"}],"time":"2026-04-25T20:06:07.564Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:07.566Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x5c","0x15dd7e4","0x7d6ebf8","0x76ffedd8","0x995c744","0x5c","0x15dd7e4","0x206","0x3","0x80d6e6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x15dd7e4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 6d 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 4e ff 15 35 39 dc 61 44 b1 6e e4 9f f2 4b 07 cf 03 00 00 00 c0 00 00 8c 79 78 ab d4 dc 01 04 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x80d6e6c","hex":"30 d5 ea"}],"time":"2026-04-25T20:06:07.568Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:07.569Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x84","0x82ed6cc","0x7d6ebf8","0x76ffedd8","0x995c744","0x84","0x82ed6cc","0x206","0x3","0x80d6e6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":132,"ptr":"0x82ed6cc","hex":"84 00 00 00 01 00 56 00 00 00 00 00 00 00 be ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 01 00 00 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 01 00 20 03 9a 9a 81 18 15 53 39 4c 9a bc 96 63 58 fc 84 72 24 01 00 02 00 00 00 20 d8 b9 f9 d2 0e ec 4c 93 a2 22 f0 62 d7 1a 56 01 00 20 03 9a 9a 81 18 15 53 39 4c 9a bc 96 63"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x80d6e6c","hex":"30 d5 ea"}],"time":"2026-04-25T20:06:07.712Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:07.713Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/068-frida-write2-test-double-timestamp/harness.log b/captures/068-frida-write2-test-double-timestamp/harness.log new file mode 100644 index 0000000..6ddd119 --- /dev/null +++ b/captures/068-frida-write2-test-double-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:05:59.6381396+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-068-frida-write2-test-double-timestamp","Tags":["TestChildObject.TestDouble"],"ItemContext":"","WriteType":"double","WriteValue":"7.125","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:03:04","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:06:06.0566954+00:00 mx.register.begin {"ClientName":"MxFridaTrace-068-frida-write2-test-double-timestamp"} +2026-04-25T20:06:06.4092562+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:06:06.4101910+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDouble"} +2026-04-25T20:06:06.4161956+00:00 mx.additem.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T20:06:06.4172151+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T20:06:06.4191858+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T20:06:07.4572545+00:00 mx.write.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Double","Value":"7.125"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:03:04"} +2026-04-25T20:06:07.4633268+00:00 mx.write.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:06:11.4977321+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T20:06:11.4977321+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T20:06:11.4977321+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T20:06:11.4977321+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDouble","ItemHandle":1} +2026-04-25T20:06:11.4977321+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:06:15.5271679+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:06:15.5341687+00:00 harness.stop {} diff --git a/captures/069-frida-write2-test-string-timestamp/frida-command.txt b/captures/069-frida-write2-test-string-timestamp/frida-command.txt new file mode 100644 index 0000000..3e92214 --- /dev/null +++ b/captures/069-frida-write2-test-string-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestString --type=string --value=Write2Alpha --user-id=1 --write-time=2026-04-25T08:04:05 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\069-frida-write2-test-string-timestamp\harness.log --client=MxFridaTrace-069-frida-write2-test-string-timestamp diff --git a/captures/069-frida-write2-test-string-timestamp/frida-events.tsv b/captures/069-frida-write2-test-string-timestamp/frida-events.tsv new file mode 100644 index 0000000..d290b04 --- /dev/null +++ b/captures/069-frida-write2-test-string-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:05:59.829Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:05:59.830Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:05:59.831Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:05:59.831Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:05:59.832Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:06:12.313Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:06:12.314Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:06:12.314Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:06:12.315Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:12.315Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:06:12.316Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:06:12.316Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:06:12.414Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:06:12.415Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:06:12.415Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:06:12.416Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:06:12.460Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:12.461Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8e8e8 [] +2026-04-25T20:06:12.461Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:12.462Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8e8e8 [] +2026-04-25T20:06:12.559Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:06:12.560Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ee6c [] +2026-04-25T20:06:12.561Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:06:12.562Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8edfc [] +2026-04-25T20:06:12.562Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8edfc [] +2026-04-25T20:06:12.563Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8edfc [] +2026-04-25T20:06:12.564Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:06:12.565Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:06:12.567Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xf8efbc "[""0x6168ff0"",""0x1"",""0x1"",""0x7f183629"",""0x74794704""]" +2026-04-25T20:06:12.567Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:12.568Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8ee3c [] +2026-04-25T20:06:12.568Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:06:12.569Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8dad0 [] +2026-04-25T20:06:12.569Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:06:12.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9660648"",""0xf8ec80"",""0xcbd3b30a""]" 0 1 0x2 +2026-04-25T20:06:12.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9660648"",""0xf8ec80"",""0xcbd3b30a""]" 1 314 0x9660648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00 +2026-04-25T20:06:12.696Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x965c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa00c020"",""0xb29e3292"",""0x9660214"",""0x9660204"",""0x641add04"",""0x0""]" 0 360 0xa00c020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00 +2026-04-25T20:06:12.696Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:06:12.697Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:06:12.697Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x972dc28"",""0xf8ec80"",""0xcbd3b30a""]" 0 2 0x2 +2026-04-25T20:06:12.697Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x972dc28"",""0xf8ec80"",""0xcbd3b30a""]" 1 39 0x972dc28 1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T20:06:12.698Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x965c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa00c020"",""0xb29e3292"",""0x9739584"",""0x9739574"",""0x641add04"",""0x0""]" 0 85 0xa00c020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00 +2026-04-25T20:06:12.699Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:06:12.699Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:06:12.707Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x5c"",""0x14cc1ec"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x5c"",""0x14cc1ec"",""0x206"",""0x3"",""0x7c397e4""]" 0 92 0x14cc1ec 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 4c 48 e0 73 a0 5a c9 49 81 a7 6f 9c b6 a7 ac d2 4a 3e 20 28 bd c9 86 47 b1 28 26 8c +2026-04-25T20:06:12.707Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x5c"",""0x14cc1ec"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x5c"",""0x14cc1ec"",""0x206"",""0x3"",""0x7c397e4""]" 1 518 0x3 +2026-04-25T20:06:12.707Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x5c"",""0x14cc1ec"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x5c"",""0x14cc1ec"",""0x206"",""0x3"",""0x7c397e4""]" 2 3 0x7c397e4 58 3b c3 +2026-04-25T20:06:12.709Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:12.712Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x80"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x80"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 0 128 0x14cb0e4 80 00 00 00 01 00 52 00 00 00 00 00 00 00 6e 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 4c 48 e0 73 a0 5a c9 49 81 a7 6f 9c b6 a7 ac d2 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 03 00 00 00 03 00 00 00 c0 00 90 4e 52 68 7c d4 dc 01 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00 +2026-04-25T20:06:12.712Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x80"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x80"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 1 518 0x3 +2026-04-25T20:06:12.712Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x80"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x80"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 2 3 0x7c397e4 58 3b c3 +2026-04-25T20:06:12.714Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:12.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x2c2"",""0x14cc1ec"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x2c2"",""0x14cc1ec"",""0x206"",""0x3"",""0x7c397e4""]" 0 706 0x14cc1ec c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 c5 4f d3 a0 7c 5d 7e 41 bf 40 1d 59 05 35 06 85 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:06:12.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x2c2"",""0x14cc1ec"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x2c2"",""0x14cc1ec"",""0x206"",""0x3"",""0x7c397e4""]" 1 518 0x3 +2026-04-25T20:06:12.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x2c2"",""0x14cc1ec"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x2c2"",""0x14cc1ec"",""0x206"",""0x3"",""0x7c397e4""]" 2 3 0x7c397e4 58 3b c3 +2026-04-25T20:06:12.720Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:12.722Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x97"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x97"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 0 151 0x14cb0e4 97 00 00 00 01 00 69 00 00 00 00 00 00 00 d3 ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 c5 4f d3 a0 7c 5d 7e 41 bf 40 1d 59 05 35 06 85 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:06:12.722Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x97"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x97"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 1 518 0x3 +2026-04-25T20:06:12.722Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x97"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x97"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 2 3 0x7c397e4 58 3b c3 +2026-04-25T20:06:12.723Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:13.609Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0xf8ef8c "[""0x6168ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x825e9c4"",""0x0"",""0x7"",""0x0"",""0xc1e573ad"",""0x40e6872a"",""0x1"",""0x7f183629""]" +2026-04-25T20:06:13.611Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:06:13.664Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x44"",""0x973a0b0"",""0xf8ec80"",""0xcbd3b30a""]" 0 2 0x2 +2026-04-25T20:06:13.664Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x44"",""0x973a0b0"",""0xf8ec80"",""0xcbd3b30a""]" 1 68 0x973a0b0 Write2Alpha:utf16le@26 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00 61 00 00 00 00 00 80 68 d5 9c ab d4 dc 01 9f 6e a6 0b 01 00 00 00 +2026-04-25T20:06:13.665Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x965c738 "[""0x1"",""0x1"",""0x2"",""0x72"",""0xa00c020"",""0xb29e3292"",""0x97399dc"",""0x97399cc"",""0x641add04"",""0x0""]" 0 114 0xa00c020 Write2Alpha:utf16le@72 01 00 44 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00 61 00 00 00 00 00 80 68 d5 9c ab d4 dc 01 9f 6e a6 0b 01 00 00 00 +2026-04-25T20:06:13.665Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:06:13.666Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:06:13.698Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x33"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x33"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 0 51 0x14cb0e4 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:06:13.698Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x33"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x33"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 1 518 0x3 +2026-04-25T20:06:13.698Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x33"",""0x14cb0e4"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x33"",""0x14cb0e4"",""0x206"",""0x3"",""0x7c397e4""]" 2 3 0x7c397e4 58 3b c3 +2026-04-25T20:06:13.700Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:06:13.703Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x74"",""0x14c9fdc"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x74"",""0x14c9fdc"",""0x206"",""0x3"",""0x7c397e4""]" 0 116 0x14c9fdc 74 00 00 00 01 00 46 00 00 00 00 00 00 00 6f 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 4c 48 e0 73 a0 5a c9 49 81 a7 6f 9c b6 a7 ac d2 03 00 00 00 c0 00 80 68 d5 9c ab d4 dc 01 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00 +2026-04-25T20:06:13.703Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x74"",""0x14c9fdc"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x74"",""0x14c9fdc"",""0x206"",""0x3"",""0x7c397e4""]" 1 518 0x3 +2026-04-25T20:06:13.703Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x74"",""0x14c9fdc"",""0x78ee888"",""0x76ffedd8"",""0x965c744"",""0x74"",""0x14c9fdc"",""0x206"",""0x3"",""0x7c397e4""]" 2 3 0x7c397e4 58 3b c3 +2026-04-25T20:06:13.704Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/069-frida-write2-test-string-timestamp/frida-exit.txt b/captures/069-frida-write2-test-string-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/069-frida-write2-test-string-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/069-frida-write2-test-string-timestamp/frida.stderr.txt b/captures/069-frida-write2-test-string-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/069-frida-write2-test-string-timestamp/frida.stdout.jsonl b/captures/069-frida-write2-test-string-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..68f021b --- /dev/null +++ b/captures/069-frida-write2-test-string-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestString --type=string --value=Write2Alpha --user-id=1 --write-time=2026-04-25T08:04:05 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\069-frida-write2-test-string-timestamp\harness.log --client=MxFridaTrace-069-frida-write2-test-string-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestString --type=string --value=Write2Alpha --user-id=1 --write-time=2026-04-25T08:04:05 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\069-frida-write2-test-string-timestamp\harness.log --client=MxFridaTrace-069-frida-write2-test-string-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:05:59.829Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:05:59.830Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:05:59.831Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:05:59.831Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:05:59.832Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:06:12.313Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:06:12.314Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:06:12.314Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:06:12.315Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:06:12.315Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:06:12.316Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:06:12.316Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:06:12.414Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:06:12.415Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:06:12.415Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:06:12.416Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8e8e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:06:12.460Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8e8e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf8e8e8","time":"2026-04-25T20:06:12.461Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8e8e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:06:12.461Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8e8e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf8e8e8","time":"2026-04-25T20:06:12.462Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:06:12.559Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97012e8","outPtr":"0xf8ee6c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655518,"w4":37914},"retval":"0xf8ee6c","time":"2026-04-25T20:06:12.560Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9660588","referenceString":{"length":26,"capacity":31,"value":"TestChildObject.TestString"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x972dfd0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 78 da 72 09 00 65 00 00 00 02 00 00 00 00 00 02 1a 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d0 df 72 09 a4 8d 28 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 65 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c f0 4d 01 00 00 00 00"},"time":"2026-04-25T20:06:12.561Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8edfc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655518,"w4":37914},"retval":"0xf8edfc","time":"2026-04-25T20:06:12.562Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8edfc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655518,"w4":37914},"retval":"0xf8edfc","time":"2026-04-25T20:06:12.562Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8edfc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655518,"w4":37914},"retval":"0xf8edfc","time":"2026-04-25T20:06:12.563Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9660588","referenceString":{"length":26,"capacity":31,"value":"TestChildObject.TestString"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x972dfd0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 78 da 72 09 00 65 00 00 00 02 00 00 00 00 00 02 1a 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d0 df 72 09 a4 8d 28 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 65 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c f0 4d 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:06:12.564Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:06:12.565Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xf8efbc","args":["0x6168ff0","0x1","0x1","0x7f183629","0x74794704"],"time":"2026-04-25T20:06:12.567Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8ee3c","inWords":[65537,327682,186166,655518,37914,0],"time":"2026-04-25T20:06:12.567Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8ee3c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655518,"w4":37914},"retval":"0xf8ee3c","time":"2026-04-25T20:06:12.568Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8dad0","inWords":[65537,327682,186166,655518,37914,0],"time":"2026-04-25T20:06:12.568Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8dad0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655518,"w4":37914},"retval":"0xf8dad0","time":"2026-04-25T20:06:12.569Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:06:12.569Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x965c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9660648","0xf8ec80","0xcbd3b30a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9660648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:06:12.693Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x965c738","args":["0x1","0x1","0x1","0x168","0xa00c020","0xb29e3292","0x9660214","0x9660204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa00c020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:06:12.696Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:06:12.696Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:06:12.697Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x965c738","0x1","0x1","0x2","0x2","0x0","0x27","0x972dc28","0xf8ec80","0xcbd3b30a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x972dc28","hex":"1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T20:06:12.697Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x965c738","args":["0x1","0x1","0x2","0x55","0xa00c020","0xb29e3292","0x9739584","0x9739574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa00c020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00"}],"time":"2026-04-25T20:06:12.698Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:06:12.699Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:06:12.699Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x5c","0x14cc1ec","0x78ee888","0x76ffedd8","0x965c744","0x5c","0x14cc1ec","0x206","0x3","0x7c397e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x14cc1ec","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 4c 48 e0 73 a0 5a c9 49 81 a7 6f 9c b6 a7 ac d2 4a 3e 20 28 bd c9 86 47 b1 28 26 8c"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c397e4","hex":"58 3b c3"}],"time":"2026-04-25T20:06:12.707Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:12.709Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x80","0x14cb0e4","0x78ee888","0x76ffedd8","0x965c744","0x80","0x14cb0e4","0x206","0x3","0x7c397e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":128,"ptr":"0x14cb0e4","hex":"80 00 00 00 01 00 52 00 00 00 00 00 00 00 6e 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 4c 48 e0 73 a0 5a c9 49 81 a7 6f 9c b6 a7 ac d2 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 03 00 00 00 03 00 00 00 c0 00 90 4e 52 68 7c d4 dc 01 05 14 00 00 00 10 00 00 00 47 00 61 00 6d 00 6d 00 61 00 4d 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c397e4","hex":"58 3b c3"}],"time":"2026-04-25T20:06:12.712Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:12.714Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x2c2","0x14cc1ec","0x78ee888","0x76ffedd8","0x965c744","0x2c2","0x14cc1ec","0x206","0x3","0x7c397e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x14cc1ec","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 c5 4f d3 a0 7c 5d 7e 41 bf 40 1d 59 05 35 06 85 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c397e4","hex":"58 3b c3"}],"time":"2026-04-25T20:06:12.718Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:12.720Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x97","0x14cb0e4","0x78ee888","0x76ffedd8","0x965c744","0x97","0x14cb0e4","0x206","0x3","0x7c397e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x14cb0e4","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 d3 ec 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 c5 4f d3 a0 7c 5d 7e 41 bf 40 1d 59 05 35 06 85 4a 3e 20 28 bd c9 86 47 b1 28 26 8c a5 f7 fb 62 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c397e4","hex":"58 3b c3"}],"time":"2026-04-25T20:06:12.722Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:12.723Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0xf8ef8c","args":["0x6168ff0","0x1","0x1","0x8","0x0","0x825e9c4","0x0","0x7","0x0","0xc1e573ad","0x40e6872a","0x1","0x7f183629"],"time":"2026-04-25T20:06:13.609Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:06:13.611Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x965c738","0x1","0x1","0x2","0x2","0x0","0x44","0x973a0b0","0xf8ec80","0xcbd3b30a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":68,"ptr":"0x973a0b0","hex":"37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00 61 00 00 00 00 00 80 68 d5 9c ab d4 dc 01 9f 6e a6 0b 01 00 00 00"}],"time":"2026-04-25T20:06:13.664Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x965c738","args":["0x1","0x1","0x2","0x72","0xa00c020","0xb29e3292","0x97399dc","0x97399cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":114,"ptr":"0xa00c020","hex":"01 00 44 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00 61 00 00 00 00 00 80 68 d5 9c ab d4 dc 01 9f 6e a6 0b 01 00 00 00"}],"time":"2026-04-25T20:06:13.665Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:06:13.665Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:06:13.666Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x33","0x14cb0e4","0x78ee888","0x76ffedd8","0x965c744","0x33","0x14cb0e4","0x206","0x3","0x7c397e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x14cb0e4","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c397e4","hex":"58 3b c3"}],"time":"2026-04-25T20:06:13.698Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:13.700Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x74","0x14c9fdc","0x78ee888","0x76ffedd8","0x965c744","0x74","0x14c9fdc","0x206","0x3","0x7c397e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":116,"ptr":"0x14c9fdc","hex":"74 00 00 00 01 00 46 00 00 00 00 00 00 00 6f 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 4c 48 e0 73 a0 5a c9 49 81 a7 6f 9c b6 a7 ac d2 03 00 00 00 c0 00 80 68 d5 9c ab d4 dc 01 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c397e4","hex":"58 3b c3"}],"time":"2026-04-25T20:06:13.703Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:06:13.704Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/069-frida-write2-test-string-timestamp/harness.log b/captures/069-frida-write2-test-string-timestamp/harness.log new file mode 100644 index 0000000..5a1cfcc --- /dev/null +++ b/captures/069-frida-write2-test-string-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:05:59.7275850+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-069-frida-write2-test-string-timestamp","Tags":["TestChildObject.TestString"],"ItemContext":"","WriteType":"string","WriteValue":"Write2Alpha","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:04:05","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:06:12.2062086+00:00 mx.register.begin {"ClientName":"MxFridaTrace-069-frida-write2-test-string-timestamp"} +2026-04-25T20:06:12.5576941+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:06:12.5576941+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-25T20:06:12.5656365+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T20:06:12.5666532+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T20:06:12.5696253+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T20:06:13.6060810+00:00 mx.write.begin {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String","Value":"Write2Alpha"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:04:05"} +2026-04-25T20:06:13.6111897+00:00 mx.write.end {"Tag":"TestChildObject.TestString","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:06:17.6551067+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T20:06:17.6551067+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T20:06:17.6560956+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T20:06:17.6560956+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T20:06:17.6560956+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:06:18.1688696+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:06:18.1758694+00:00 harness.stop {} diff --git a/captures/070-frida-write2-test-int-array-timestamp/frida-command.txt b/captures/070-frida-write2-test-int-array-timestamp/frida-command.txt new file mode 100644 index 0000000..d355d80 --- /dev/null +++ b/captures/070-frida-write2-test-int-array-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestIntArray[] --type=int[] --value=301;302;303;304;305;306;307;308;309;310 --user-id=1 --write-time=2026-04-25T08:10:11 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\070-frida-write2-test-int-array-timestamp\harness.log --client=MxFridaTrace-070-frida-write2-test-int-array-timestamp diff --git a/captures/070-frida-write2-test-int-array-timestamp/frida-events.tsv b/captures/070-frida-write2-test-int-array-timestamp/frida-events.tsv new file mode 100644 index 0000000..29d9694 --- /dev/null +++ b/captures/070-frida-write2-test-int-array-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:12:17.570Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:12:17.570Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:12:17.571Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:12:17.571Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:12:17.572Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:12:30.858Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:12:30.858Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:12:30.859Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:12:30.859Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:30.861Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:12:30.861Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:12:30.861Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:12:30.959Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:12:30.960Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:12:30.960Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:12:30.961Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:12:30.994Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:30.995Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xbfe654 [] +2026-04-25T20:12:30.996Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:30.996Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xbfe654 [] +2026-04-25T20:12:31.095Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:12:31.096Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xbfebd4 [] +2026-04-25T20:12:31.097Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:12:31.097Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xbfeb64 [] +2026-04-25T20:12:31.098Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xbfeb64 [] +2026-04-25T20:12:31.098Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xbfeb64 [] +2026-04-25T20:12:31.099Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:12:31.100Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:12:31.101Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xbfed2c "[""0x6188ff0"",""0x1"",""0x1"",""0x705ed714"",""0x74794704""]" +2026-04-25T20:12:31.102Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:31.102Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xbfebac [] +2026-04-25T20:12:31.102Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:31.103Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xbfd840 [] +2026-04-25T20:12:31.103Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:12:31.226Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x94d0648"",""0xbfe9f0"",""0x1b1b2ab6""]" 0 1 0x2 +2026-04-25T20:12:31.226Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x94d0648"",""0xbfe9f0"",""0x1b1b2ab6""]" 1 314 0x94d0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4c 09 1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 4d 09 20 01 00 02 00 00 00 +2026-04-25T20:12:31.229Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94cc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9e76020"",""0xd998ad0b"",""0x94d0214"",""0x94d0204"",""0x641add04"",""0x0""]" 0 360 0x9e76020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4c 09 1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 4d 09 20 01 00 02 00 00 00 +2026-04-25T20:12:31.229Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:31.230Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:31.231Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x959d250"",""0xbfe9f0"",""0x1b1b2ab6""]" 0 2 0x2 +2026-04-25T20:12:31.231Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x959d250"",""0xbfe9f0"",""0x1b1b2ab6""]" 1 39 0x959d250 1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00 +2026-04-25T20:12:31.232Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94cc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9e76020"",""0xd998ad0b"",""0x95a9b8c"",""0x95a9b7c"",""0x641add04"",""0x0""]" 0 85 0x9e76020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00 +2026-04-25T20:12:31.233Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:31.233Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:31.255Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x5c"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x5c"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 0 92 0x7f6b3ac 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 93 c5 6e db bc 37 ab 48 93 d2 ab 2d 2b 1a e2 10 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 +2026-04-25T20:12:31.255Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x5c"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x5c"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 1 518 0x3 +2026-04-25T20:12:31.255Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x5c"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x5c"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 2 3 0x7afe0dc 68 d9 10 +2026-04-25T20:12:31.257Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:31.260Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x9a"",""0x7fba414"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x9a"",""0x7fba414"",""0x206"",""0x3"",""0x7afe0dc""]" 0 154 0x7fba414 9a 00 00 00 01 00 6c 00 00 00 00 00 00 00 74 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 93 c5 6e db bc 37 ab 48 93 d2 ab 2d 2b 1a e2 10 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 03 00 00 00 03 00 00 00 c0 00 d0 ba 8f 68 7e d4 dc 01 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00 +2026-04-25T20:12:31.260Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x9a"",""0x7fba414"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x9a"",""0x7fba414"",""0x206"",""0x3"",""0x7afe0dc""]" 1 518 0x3 +2026-04-25T20:12:31.260Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x9a"",""0x7fba414"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x9a"",""0x7fba414"",""0x206"",""0x3"",""0x7afe0dc""]" 2 3 0x7afe0dc 68 d9 10 +2026-04-25T20:12:31.261Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:31.269Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x2c2"",""0x7f5e74c"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x2c2"",""0x7f5e74c"",""0x206"",""0x3"",""0x7afe0dc""]" 0 706 0x7f5e74c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 6b b3 1b d8 4f c1 8b 41 91 23 49 5f 60 4f d7 18 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:12:31.269Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x2c2"",""0x7f5e74c"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x2c2"",""0x7f5e74c"",""0x206"",""0x3"",""0x7afe0dc""]" 1 518 0x3 +2026-04-25T20:12:31.269Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x2c2"",""0x7f5e74c"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x2c2"",""0x7f5e74c"",""0x206"",""0x3"",""0x7afe0dc""]" 2 3 0x7afe0dc 68 d9 10 +2026-04-25T20:12:31.270Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:31.273Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x97"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x97"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 0 151 0x7f6b3ac 97 00 00 00 01 00 69 00 00 00 00 00 00 00 c2 f2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 6b b3 1b d8 4f c1 8b 41 91 23 49 5f 60 4f d7 18 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:12:31.273Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x97"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x97"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 1 518 0x3 +2026-04-25T20:12:31.273Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x97"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x97"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 2 3 0x7afe0dc 68 d9 10 +2026-04-25T20:12:31.274Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:32.144Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0xbfecfc "[""0x6188ff0"",""0x1"",""0x1"",""0x2003"",""0x0"",""0x7ff1fe0"",""0x0"",""0x7"",""0x0"",""0xe4993882"",""0x40e6872a"",""0x1"",""0x705ed714""]" +2026-04-25T20:12:32.146Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:12:32.199Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x95aa6b8"",""0xbfe9f0"",""0x1b1b2ab6""]" 0 2 0x2 +2026-04-25T20:12:32.199Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x95aa6b8"",""0xbfe9f0"",""0x1b1b2ab6""]" 1 86 0x95aa6b8 37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00 36 01 00 00 00 00 80 93 fc 76 ac d4 dc 01 43 35 ac 0b 01 00 00 00 +2026-04-25T20:12:32.199Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94cc738 "[""0x1"",""0x1"",""0x2"",""0x84"",""0x9e76020"",""0xd998ad0b"",""0x95a9fe4"",""0x95a9fd4"",""0x641add04"",""0x0""]" 0 132 0x9e76020 01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00 36 01 00 00 00 00 80 93 fc 76 ac d4 dc 01 43 35 ac 0b 01 00 00 00 +2026-04-25T20:12:32.200Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:32.201Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:32.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x33"",""0x7fba414"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x33"",""0x7fba414"",""0x206"",""0x3"",""0x7afe0dc""]" 0 51 0x7fba414 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:12:32.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x33"",""0x7fba414"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x33"",""0x7fba414"",""0x206"",""0x3"",""0x7afe0dc""]" 1 518 0x3 +2026-04-25T20:12:32.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x33"",""0x7fba414"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x33"",""0x7fba414"",""0x206"",""0x3"",""0x7afe0dc""]" 2 3 0x7afe0dc 68 d9 10 +2026-04-25T20:12:32.253Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:32.256Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x86"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x86"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 0 134 0x7f6b3ac 86 00 00 00 01 00 58 00 00 00 00 00 00 00 75 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 93 c5 6e db bc 37 ab 48 93 d2 ab 2d 2b 1a e2 10 03 00 00 00 c0 00 80 93 fc 76 ac d4 dc 01 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00 +2026-04-25T20:12:32.256Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x86"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x86"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 1 518 0x3 +2026-04-25T20:12:32.256Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94cc738 "[""0x86"",""0x7f6b3ac"",""0x78beaa8"",""0x76ffedd8"",""0x94cc744"",""0x86"",""0x7f6b3ac"",""0x206"",""0x3"",""0x7afe0dc""]" 2 3 0x7afe0dc 68 d9 10 +2026-04-25T20:12:32.257Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/070-frida-write2-test-int-array-timestamp/frida-exit.txt b/captures/070-frida-write2-test-int-array-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/070-frida-write2-test-int-array-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/070-frida-write2-test-int-array-timestamp/frida.stderr.txt b/captures/070-frida-write2-test-int-array-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/070-frida-write2-test-int-array-timestamp/frida.stdout.jsonl b/captures/070-frida-write2-test-int-array-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..168bb1b --- /dev/null +++ b/captures/070-frida-write2-test-int-array-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestIntArray[] --type=int[] --value=301;302;303;304;305;306;307;308;309;310 --user-id=1 --write-time=2026-04-25T08:10:11 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\070-frida-write2-test-int-array-timestamp\harness.log --client=MxFridaTrace-070-frida-write2-test-int-array-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestIntArray[] --type=int[] --value=301;302;303;304;305;306;307;308;309;310 --user-id=1 --write-time=2026-04-25T08:10:11 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\070-frida-write2-test-int-array-timestamp\harness.log --client=MxFridaTrace-070-frida-write2-test-int-array-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:12:17.570Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:12:17.570Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:12:17.571Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:12:17.571Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:12:17.572Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:12:30.858Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:12:30.858Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:12:30.859Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:12:30.859Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:12:30.861Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:12:30.861Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:12:30.861Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:12:30.959Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:12:30.960Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:12:30.960Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:12:30.961Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94c7010","outPtr":"0xbfe654","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:12:30.994Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xbfe654","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xbfe654","time":"2026-04-25T20:12:30.995Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94c7010","outPtr":"0xbfe654","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:12:30.996Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xbfe654","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xbfe654","time":"2026-04-25T20:12:30.996Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:12:31.095Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9570f78","outPtr":"0xbfebd4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655524,"w4":4294924128},"retval":"0xbfebd4","time":"2026-04-25T20:12:31.096Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x94d0588","referenceString":{"length":30,"capacity":31,"value":"TestChildObject.TestIntArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x959d4d8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 e8 d0 59 09 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 d4 59 09 7c 66 0f 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 4c 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 57 1c 01 00 00 00 00"},"time":"2026-04-25T20:12:31.097Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x94d05d8","outPtr":"0xbfeb64","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655524,"w4":4294924128},"retval":"0xbfeb64","time":"2026-04-25T20:12:31.097Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x94d05d8","outPtr":"0xbfeb64","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655524,"w4":4294924128},"retval":"0xbfeb64","time":"2026-04-25T20:12:31.098Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x94d05d8","outPtr":"0xbfeb64","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655524,"w4":4294924128},"retval":"0xbfeb64","time":"2026-04-25T20:12:31.098Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x94d0588","referenceString":{"length":30,"capacity":31,"value":"TestChildObject.TestIntArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x959d4d8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 e8 d0 59 09 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 d4 59 09 7c 66 0f 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 4c 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 57 1c 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:12:31.099Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:12:31.100Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xbfed2c","args":["0x6188ff0","0x1","0x1","0x705ed714","0x74794704"],"time":"2026-04-25T20:12:31.101Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94c7010","outPtr":"0xbfebac","inWords":[65537,327682,186166,655524,4294924128,0],"time":"2026-04-25T20:12:31.102Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xbfebac","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655524,"w4":4294924128},"retval":"0xbfebac","time":"2026-04-25T20:12:31.102Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94c7010","outPtr":"0xbfd840","inWords":[65537,327682,186166,655524,4294924128,0],"time":"2026-04-25T20:12:31.102Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xbfd840","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655524,"w4":4294924128},"retval":"0xbfd840","time":"2026-04-25T20:12:31.103Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:12:31.103Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94cc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x94d0648","0xbfe9f0","0x1b1b2ab6"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x94d0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4c 09 1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 4d 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:12:31.226Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94cc738","args":["0x1","0x1","0x1","0x168","0x9e76020","0xd998ad0b","0x94d0214","0x94d0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9e76020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4c 09 1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 4d 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:12:31.229Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:31.229Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:31.230Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94cc738","0x1","0x1","0x2","0x2","0x0","0x27","0x959d250","0xbfe9f0","0x1b1b2ab6"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x959d250","hex":"1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00"}],"time":"2026-04-25T20:12:31.231Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94cc738","args":["0x1","0x1","0x2","0x55","0x9e76020","0xd998ad0b","0x95a9b8c","0x95a9b7c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9e76020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 00 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 03 00 00 00"}],"time":"2026-04-25T20:12:31.232Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:31.233Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:31.233Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94cc738","args":["0x5c","0x7f6b3ac","0x78beaa8","0x76ffedd8","0x94cc744","0x5c","0x7f6b3ac","0x206","0x3","0x7afe0dc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7f6b3ac","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 93 c5 6e db bc 37 ab 48 93 d2 ab 2d 2b 1a e2 10 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afe0dc","hex":"68 d9 10"}],"time":"2026-04-25T20:12:31.255Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:31.257Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94cc738","args":["0x9a","0x7fba414","0x78beaa8","0x76ffedd8","0x94cc744","0x9a","0x7fba414","0x206","0x3","0x7afe0dc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":154,"ptr":"0x7fba414","hex":"9a 00 00 00 01 00 6c 00 00 00 00 00 00 00 74 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 93 c5 6e db bc 37 ab 48 93 d2 ab 2d 2b 1a e2 10 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 03 00 00 00 03 00 00 00 c0 00 d0 ba 8f 68 7e d4 dc 01 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afe0dc","hex":"68 d9 10"}],"time":"2026-04-25T20:12:31.260Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:31.261Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94cc738","args":["0x2c2","0x7f5e74c","0x78beaa8","0x76ffedd8","0x94cc744","0x2c2","0x7f5e74c","0x206","0x3","0x7afe0dc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7f5e74c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 6b b3 1b d8 4f c1 8b 41 91 23 49 5f 60 4f d7 18 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afe0dc","hex":"68 d9 10"}],"time":"2026-04-25T20:12:31.269Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:31.270Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94cc738","args":["0x97","0x7f6b3ac","0x78beaa8","0x76ffedd8","0x94cc744","0x97","0x7f6b3ac","0x206","0x3","0x7afe0dc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7f6b3ac","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 c2 f2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 6b b3 1b d8 4f c1 8b 41 91 23 49 5f 60 4f d7 18 4b 02 e2 a6 96 ec 9c 4d ad f9 ae e5 65 33 c9 27 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afe0dc","hex":"68 d9 10"}],"time":"2026-04-25T20:12:31.273Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:31.274Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0xbfecfc","args":["0x6188ff0","0x1","0x1","0x2003","0x0","0x7ff1fe0","0x0","0x7","0x0","0xe4993882","0x40e6872a","0x1","0x705ed714"],"time":"2026-04-25T20:12:32.144Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:12:32.146Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94cc738","0x1","0x1","0x2","0x2","0x0","0x56","0x95aa6b8","0xbfe9f0","0x1b1b2ab6"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x95aa6b8","hex":"37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00 36 01 00 00 00 00 80 93 fc 76 ac d4 dc 01 43 35 ac 0b 01 00 00 00"}],"time":"2026-04-25T20:12:32.199Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94cc738","args":["0x1","0x1","0x2","0x84","0x9e76020","0xd998ad0b","0x95a9fe4","0x95a9fd4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0x9e76020","hex":"01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00 36 01 00 00 00 00 80 93 fc 76 ac d4 dc 01 43 35 ac 0b 01 00 00 00"}],"time":"2026-04-25T20:12:32.199Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:32.200Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:32.201Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94cc738","args":["0x33","0x7fba414","0x78beaa8","0x76ffedd8","0x94cc744","0x33","0x7fba414","0x206","0x3","0x7afe0dc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fba414","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afe0dc","hex":"68 d9 10"}],"time":"2026-04-25T20:12:32.252Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:32.253Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94cc738","args":["0x86","0x7f6b3ac","0x78beaa8","0x76ffedd8","0x94cc744","0x86","0x7f6b3ac","0x206","0x3","0x7afe0dc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":134,"ptr":"0x7f6b3ac","hex":"86 00 00 00 01 00 58 00 00 00 00 00 00 00 75 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 93 c5 6e db bc 37 ab 48 93 d2 ab 2d 2b 1a e2 10 03 00 00 00 c0 00 80 93 fc 76 ac d4 dc 01 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afe0dc","hex":"68 d9 10"}],"time":"2026-04-25T20:12:32.256Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:32.257Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/070-frida-write2-test-int-array-timestamp/harness.log b/captures/070-frida-write2-test-int-array-timestamp/harness.log new file mode 100644 index 0000000..bd239de --- /dev/null +++ b/captures/070-frida-write2-test-int-array-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:12:17.4765248+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-070-frida-write2-test-int-array-timestamp","Tags":["TestChildObject.TestIntArray[]"],"ItemContext":"","WriteType":"int[]","WriteValue":"301;302;303;304;305;306;307;308;309;310","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:10:11","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:12:30.7408725+00:00 mx.register.begin {"ClientName":"MxFridaTrace-070-frida-write2-test-int-array-timestamp"} +2026-04-25T20:12:31.0931092+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:12:31.0941085+00:00 mx.additem.begin {"Tag":"TestChildObject.TestIntArray[]"} +2026-04-25T20:12:31.1000522+00:00 mx.additem.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T20:12:31.1011163+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T20:12:31.1030362+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T20:12:32.1406341+00:00 mx.write.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32[]","Length":10,"Values":["301","302","303","304","305","306","307","308","309","310"]},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:10:11"} +2026-04-25T20:12:32.1466202+00:00 mx.write.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:12:36.1863434+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T20:12:36.1863434+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T20:12:36.1863434+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T20:12:36.1863434+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestIntArray[]","ItemHandle":1} +2026-04-25T20:12:36.1873434+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:12:39.9543668+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:12:39.9613042+00:00 harness.stop {} diff --git a/captures/071-frida-write2-test-bool-array-timestamp/frida-command.txt b/captures/071-frida-write2-test-bool-array-timestamp/frida-command.txt new file mode 100644 index 0000000..219be75 --- /dev/null +++ b/captures/071-frida-write2-test-bool-array-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;true;false;true;false;true;false;true;false --user-id=1 --write-time=2026-04-25T08:11:12 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\071-frida-write2-test-bool-array-timestamp\harness.log --client=MxFridaTrace-071-frida-write2-test-bool-array-timestamp diff --git a/captures/071-frida-write2-test-bool-array-timestamp/frida-events.tsv b/captures/071-frida-write2-test-bool-array-timestamp/frida-events.tsv new file mode 100644 index 0000000..c102cc7 --- /dev/null +++ b/captures/071-frida-write2-test-bool-array-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:12:17.587Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:12:17.588Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:12:17.588Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:12:17.589Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:12:17.589Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:12:24.529Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:12:24.529Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:12:24.530Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:12:24.530Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:24.532Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:12:24.532Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:12:24.533Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:12:24.630Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:12:24.630Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:12:24.631Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:12:24.632Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:12:24.661Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:24.662Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10fea20 [] +2026-04-25T20:12:24.663Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:24.663Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10fea20 [] +2026-04-25T20:12:24.764Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:12:24.764Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10fefa0 [] +2026-04-25T20:12:24.765Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:12:24.766Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10fef30 [] +2026-04-25T20:12:24.766Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10fef30 [] +2026-04-25T20:12:24.767Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10fef30 [] +2026-04-25T20:12:24.767Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:12:24.768Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:12:24.769Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x10ff0fc "[""0x6418ff0"",""0x1"",""0x1"",""0x50dbd97b"",""0x74794704""]" +2026-04-25T20:12:24.770Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:24.770Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10fef7c [] +2026-04-25T20:12:24.770Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:24.771Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10fdc10 [] +2026-04-25T20:12:24.771Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:12:24.896Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x978c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9790648"",""0x10fedc0"",""0xd9d08515""]" 0 1 0x2 +2026-04-25T20:12:24.896Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x978c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9790648"",""0x10fedc0"",""0xd9d08515""]" 1 314 0x9790648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 78 09 1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 79 09 20 01 00 02 00 00 00 +2026-04-25T20:12:24.900Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x978c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa272020"",""0x3b9cf7e4"",""0x9790214"",""0x9790204"",""0x641add04"",""0x0""]" 0 360 0xa272020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 78 09 1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 79 09 20 01 00 02 00 00 00 +2026-04-25T20:12:24.900Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:24.901Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:24.902Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x978c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x985d640"",""0x10fedc0"",""0xd9d08515""]" 0 2 0x2 +2026-04-25T20:12:24.902Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x978c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x985d640"",""0x10fedc0"",""0xd9d08515""]" 1 39 0x985d640 1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00 +2026-04-25T20:12:24.902Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x978c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa272020"",""0x3b9cf7e4"",""0x9869584"",""0x9869574"",""0x641add04"",""0x0""]" 0 85 0xa272020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00 +2026-04-25T20:12:24.902Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:24.902Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:24.917Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x5c"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x5c"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 0 92 0x8343244 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be d8 bc 99 d9 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 +2026-04-25T20:12:24.917Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x5c"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x5c"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 1 518 0x3 +2026-04-25T20:12:24.917Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x5c"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x5c"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 2 3 0x7d8f574 e0 3a 31 +2026-04-25T20:12:24.918Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:24.921Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x86"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x86"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 0 134 0x8341034 86 00 00 00 01 00 58 00 00 00 00 00 00 00 72 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be d8 bc 99 d9 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 03 00 00 00 03 00 00 00 c0 00 20 73 4c 85 7e d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 +2026-04-25T20:12:24.921Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x86"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x86"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 1 518 0x3 +2026-04-25T20:12:24.921Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x86"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x86"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 2 3 0x7d8f574 e0 3a 31 +2026-04-25T20:12:24.922Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:24.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x2c2"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x2c2"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 0 706 0x8343244 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 15 a1 06 50 c6 92 ef 47 9a a6 35 3f dc b2 bd cd 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:12:24.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x2c2"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x2c2"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 1 518 0x3 +2026-04-25T20:12:24.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x2c2"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x2c2"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 2 3 0x7d8f574 e0 3a 31 +2026-04-25T20:12:24.938Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:24.941Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x97"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x97"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 0 151 0x8341034 97 00 00 00 01 00 69 00 00 00 00 00 00 00 a7 f2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 15 a1 06 50 c6 92 ef 47 9a a6 35 3f dc b2 bd cd 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:12:24.941Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x97"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x97"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 1 518 0x3 +2026-04-25T20:12:24.941Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x97"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x97"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 2 3 0x7d8f574 e0 3a 31 +2026-04-25T20:12:24.942Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:25.815Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0x10ff0cc "[""0x6418ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x8330540"",""0x0"",""0x7"",""0x0"",""0xea61d951"",""0x40e6872a"",""0x1"",""0x50dbd97b""]" +2026-04-25T20:12:25.817Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:12:25.870Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x978c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x986a0b0"",""0x10fedc0"",""0xd9d08515""]" 0 2 0x2 +2026-04-25T20:12:25.870Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x978c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x986a0b0"",""0x10fedc0"",""0xd9d08515""]" 1 66 0x986a0b0 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 70 58 9b ac d4 dc 01 8b 1c ac 0b 01 00 00 00 +2026-04-25T20:12:25.871Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x978c738 "[""0x1"",""0x1"",""0x2"",""0x70"",""0xa272020"",""0x3b9cf7e4"",""0x98699dc"",""0x98699cc"",""0x641add04"",""0x0""]" 0 112 0xa272020 01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 70 58 9b ac d4 dc 01 8b 1c ac 0b 01 00 00 00 +2026-04-25T20:12:25.871Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:25.871Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:25.909Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x33"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x33"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 0 51 0x8343244 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:12:25.909Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x33"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x33"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 1 518 0x3 +2026-04-25T20:12:25.909Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x33"",""0x8343244"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x33"",""0x8343244"",""0x206"",""0x3"",""0x7d8f574""]" 2 3 0x7d8f574 e0 3a 31 +2026-04-25T20:12:25.911Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:25.914Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x72"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x72"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 0 114 0x8341034 72 00 00 00 01 00 44 00 00 00 00 00 00 00 73 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be d8 bc 99 d9 03 00 00 00 c0 00 00 70 58 9b ac d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 +2026-04-25T20:12:25.914Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x72"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x72"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 1 518 0x3 +2026-04-25T20:12:25.914Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x978c738 "[""0x72"",""0x8341034"",""0x793ef58"",""0x76ffedd8"",""0x978c744"",""0x72"",""0x8341034"",""0x206"",""0x3"",""0x7d8f574""]" 2 3 0x7d8f574 e0 3a 31 +2026-04-25T20:12:25.915Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/071-frida-write2-test-bool-array-timestamp/frida-exit.txt b/captures/071-frida-write2-test-bool-array-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/071-frida-write2-test-bool-array-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/071-frida-write2-test-bool-array-timestamp/frida.stderr.txt b/captures/071-frida-write2-test-bool-array-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/071-frida-write2-test-bool-array-timestamp/frida.stdout.jsonl b/captures/071-frida-write2-test-bool-array-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..f57251d --- /dev/null +++ b/captures/071-frida-write2-test-bool-array-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;true;false;true;false;true;false;true;false --user-id=1 --write-time=2026-04-25T08:11:12 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\071-frida-write2-test-bool-array-timestamp\harness.log --client=MxFridaTrace-071-frida-write2-test-bool-array-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;true;false;true;false;true;false;true;false --user-id=1 --write-time=2026-04-25T08:11:12 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\071-frida-write2-test-bool-array-timestamp\harness.log --client=MxFridaTrace-071-frida-write2-test-bool-array-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:12:17.587Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:12:17.588Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:12:17.588Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:12:17.589Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:12:17.589Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:12:24.529Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:12:24.529Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:12:24.530Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:12:24.530Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:12:24.532Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:12:24.532Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:12:24.533Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:12:24.630Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:12:24.630Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:12:24.631Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:12:24.632Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9787010","outPtr":"0x10fea20","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:12:24.661Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10fea20","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x10fea20","time":"2026-04-25T20:12:24.662Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9787010","outPtr":"0x10fea20","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:12:24.663Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10fea20","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x10fea20","time":"2026-04-25T20:12:24.663Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:12:24.764Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9830e38","outPtr":"0x10fefa0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x10fefa0","time":"2026-04-25T20:12:24.764Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9790588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestBoolArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x985d568","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 98 d2 85 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 68 d5 85 09 c4 a3 44 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 78 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 74 34 2e 01 00 00 00 00"},"time":"2026-04-25T20:12:24.765Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97905d8","outPtr":"0x10fef30","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x10fef30","time":"2026-04-25T20:12:24.766Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97905d8","outPtr":"0x10fef30","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x10fef30","time":"2026-04-25T20:12:24.766Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97905d8","outPtr":"0x10fef30","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x10fef30","time":"2026-04-25T20:12:24.767Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9790588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestBoolArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x985d568","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 98 d2 85 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 68 d5 85 09 c4 a3 44 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 78 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 74 34 2e 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:12:24.767Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:12:24.768Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x10ff0fc","args":["0x6418ff0","0x1","0x1","0x50dbd97b","0x74794704"],"time":"2026-04-25T20:12:24.769Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9787010","outPtr":"0x10fef7c","inWords":[65537,327682,186166,655520,4294937082,0],"time":"2026-04-25T20:12:24.770Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10fef7c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x10fef7c","time":"2026-04-25T20:12:24.770Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9787010","outPtr":"0x10fdc10","inWords":[65537,327682,186166,655520,4294937082,0],"time":"2026-04-25T20:12:24.770Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10fdc10","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x10fdc10","time":"2026-04-25T20:12:24.771Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:12:24.771Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x978c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9790648","0x10fedc0","0xd9d08515"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9790648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 78 09 1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 79 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:12:24.896Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x978c738","args":["0x1","0x1","0x1","0x168","0xa272020","0x3b9cf7e4","0x9790214","0x9790204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa272020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 78 09 1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 79 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:12:24.900Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:24.900Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:24.901Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x978c738","0x1","0x1","0x2","0x2","0x0","0x27","0x985d640","0x10fedc0","0xd9d08515"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x985d640","hex":"1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T20:12:24.902Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x978c738","args":["0x1","0x1","0x2","0x55","0xa272020","0x3b9cf7e4","0x9869584","0x9869574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa272020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T20:12:24.902Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:24.902Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:24.902Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x978c738","args":["0x5c","0x8343244","0x793ef58","0x76ffedd8","0x978c744","0x5c","0x8343244","0x206","0x3","0x7d8f574"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8343244","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be d8 bc 99 d9 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d8f574","hex":"e0 3a 31"}],"time":"2026-04-25T20:12:24.917Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:24.918Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x978c738","args":["0x86","0x8341034","0x793ef58","0x76ffedd8","0x978c744","0x86","0x8341034","0x206","0x3","0x7d8f574"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":134,"ptr":"0x8341034","hex":"86 00 00 00 01 00 58 00 00 00 00 00 00 00 72 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be d8 bc 99 d9 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 03 00 00 00 03 00 00 00 c0 00 20 73 4c 85 7e d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d8f574","hex":"e0 3a 31"}],"time":"2026-04-25T20:12:24.921Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:24.922Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x978c738","args":["0x2c2","0x8343244","0x793ef58","0x76ffedd8","0x978c744","0x2c2","0x8343244","0x206","0x3","0x7d8f574"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x8343244","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 15 a1 06 50 c6 92 ef 47 9a a6 35 3f dc b2 bd cd 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d8f574","hex":"e0 3a 31"}],"time":"2026-04-25T20:12:24.936Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:24.938Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x978c738","args":["0x97","0x8341034","0x793ef58","0x76ffedd8","0x978c744","0x97","0x8341034","0x206","0x3","0x7d8f574"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x8341034","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 a7 f2 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 15 a1 06 50 c6 92 ef 47 9a a6 35 3f dc b2 bd cd 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d8f574","hex":"e0 3a 31"}],"time":"2026-04-25T20:12:24.941Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:24.942Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0x10ff0cc","args":["0x6418ff0","0x1","0x1","0x200b","0x0","0x8330540","0x0","0x7","0x0","0xea61d951","0x40e6872a","0x1","0x50dbd97b"],"time":"2026-04-25T20:12:25.815Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:12:25.817Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x978c738","0x1","0x1","0x2","0x2","0x0","0x42","0x986a0b0","0x10fedc0","0xd9d08515"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":66,"ptr":"0x986a0b0","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 70 58 9b ac d4 dc 01 8b 1c ac 0b 01 00 00 00"}],"time":"2026-04-25T20:12:25.870Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x978c738","args":["0x1","0x1","0x2","0x70","0xa272020","0x3b9cf7e4","0x98699dc","0x98699cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":112,"ptr":"0xa272020","hex":"01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 70 58 9b ac d4 dc 01 8b 1c ac 0b 01 00 00 00"}],"time":"2026-04-25T20:12:25.871Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:25.871Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:25.871Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x978c738","args":["0x33","0x8343244","0x793ef58","0x76ffedd8","0x978c744","0x33","0x8343244","0x206","0x3","0x7d8f574"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x8343244","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d8f574","hex":"e0 3a 31"}],"time":"2026-04-25T20:12:25.909Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:25.911Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x978c738","args":["0x72","0x8341034","0x793ef58","0x76ffedd8","0x978c744","0x72","0x8341034","0x206","0x3","0x7d8f574"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":114,"ptr":"0x8341034","hex":"72 00 00 00 01 00 44 00 00 00 00 00 00 00 73 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be d8 bc 99 d9 03 00 00 00 c0 00 00 70 58 9b ac d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7d8f574","hex":"e0 3a 31"}],"time":"2026-04-25T20:12:25.914Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:25.915Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/071-frida-write2-test-bool-array-timestamp/harness.log b/captures/071-frida-write2-test-bool-array-timestamp/harness.log new file mode 100644 index 0000000..29d0949 --- /dev/null +++ b/captures/071-frida-write2-test-bool-array-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:12:17.4985951+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-071-frida-write2-test-bool-array-timestamp","Tags":["TestChildObject.TestBoolArray[]"],"ItemContext":"","WriteType":"bool[]","WriteValue":"true;false;true;false;true;false;true;false;true;false","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:11:12","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:12:24.3871904+00:00 mx.register.begin {"ClientName":"MxFridaTrace-071-frida-write2-test-bool-array-timestamp"} +2026-04-25T20:12:24.7619511+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:12:24.7629520+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBoolArray[]"} +2026-04-25T20:12:24.7689780+00:00 mx.additem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T20:12:24.7699228+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T20:12:24.7718895+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T20:12:25.8113172+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean[]","Length":10,"Values":["True","False","True","False","True","False","True","False","True","False"]},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:11:12"} +2026-04-25T20:12:25.8173162+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:12:29.8618023+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T20:12:29.8628035+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T20:12:29.8628035+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T20:12:29.8628035+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T20:12:29.8628035+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:12:34.3751165+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:12:34.3811186+00:00 harness.stop {} diff --git a/captures/072-frida-write2-test-string-array-timestamp/frida-command.txt b/captures/072-frida-write2-test-string-array-timestamp/frida-command.txt new file mode 100644 index 0000000..02203cb --- /dev/null +++ b/captures/072-frida-write2-test-string-array-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestStringArray[] --type=string[] --value=AA1;BB2;CC3;DD4;EE5;FF6;GG7;HH8;II9;JJ10 --user-id=1 --write-time=2026-04-25T08:12:13 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\072-frida-write2-test-string-array-timestamp\harness.log --client=MxFridaTrace-072-frida-write2-test-string-array-timestamp diff --git a/captures/072-frida-write2-test-string-array-timestamp/frida-events.tsv b/captures/072-frida-write2-test-string-array-timestamp/frida-events.tsv new file mode 100644 index 0000000..4b34029 --- /dev/null +++ b/captures/072-frida-write2-test-string-array-timestamp/frida-events.tsv @@ -0,0 +1,80 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:12:52.660Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:12:52.661Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:12:52.661Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:12:52.662Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:12:52.662Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:12:59.003Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:12:59.004Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:12:59.004Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:12:59.005Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:59.005Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:12:59.006Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:12:59.006Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:12:59.103Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:12:59.104Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:12:59.104Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:12:59.105Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:12:59.105Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:59.105Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10fea9c [] +2026-04-25T20:12:59.106Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:59.106Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10fea9c [] +2026-04-25T20:12:59.202Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:12:59.202Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10ff01c [] +2026-04-25T20:12:59.203Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:12:59.204Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10fefac [] +2026-04-25T20:12:59.204Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10fefac [] +2026-04-25T20:12:59.205Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x10fefac [] +2026-04-25T20:12:59.206Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:12:59.206Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:12:59.207Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x10ff17c "[""0x6618ff0"",""0x1"",""0x1"",""0x838e64fc"",""0x74794704""]" +2026-04-25T20:12:59.208Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:59.208Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10feffc [] +2026-04-25T20:12:59.208Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:12:59.209Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x10fdc90 [] +2026-04-25T20:12:59.209Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:12:59.333Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97bc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x97c0648"",""0x10fee40"",""0x300447ad""]" 0 1 0x2 +2026-04-25T20:12:59.333Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97bc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x97c0648"",""0x10fee40"",""0x300447ad""]" 1 314 0x97c0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 7b 09 1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 7c 09 20 01 00 02 00 00 00 +2026-04-25T20:12:59.336Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x97bc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa15d020"",""0xddcc6117"",""0x97c0214"",""0x97c0204"",""0x641add04"",""0x0""]" 0 360 0xa15d020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 7b 09 1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 7c 09 20 01 00 02 00 00 00 +2026-04-25T20:12:59.337Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:59.337Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:59.338Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x988d1c0"",""0x10fee40"",""0x300447ad""]" 0 2 0x2 +2026-04-25T20:12:59.338Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x988d1c0"",""0x10fee40"",""0x300447ad""]" 1 39 0x988d1c0 1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T20:12:59.339Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x97bc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa15d020"",""0xddcc6117"",""0x9899634"",""0x9899624"",""0x641add04"",""0x0""]" 0 85 0xa15d020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T20:12:59.340Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:12:59.340Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:12:59.365Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x5c"",""0x8282ee4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x5c"",""0x8282ee4"",""0x206"",""0x3"",""0x7db4344""]" 0 92 0x8282ee4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 10 c0 4e 31 15 93 4c bb 40 8a 98 ff 9d b8 a6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 +2026-04-25T20:12:59.365Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x5c"",""0x8282ee4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x5c"",""0x8282ee4"",""0x206"",""0x3"",""0x7db4344""]" 1 518 0x3 +2026-04-25T20:12:59.365Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x5c"",""0x8282ee4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x5c"",""0x8282ee4"",""0x206"",""0x3"",""0x7db4344""]" 2 3 0x7db4344 68 d3 3e +2026-04-25T20:12:59.366Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:59.370Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x144"",""0x824b0bc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x144"",""0x824b0bc"",""0x206"",""0x3"",""0x7db4344""]" 0 324 0x824b0bc 44 01 00 00 01 00 16 01 00 00 00 00 00 00 76 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 10 c0 4e 31 15 93 4c bb 40 8a 98 ff 9d b8 a6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 03 00 00 00 03 00 00 00 c0 00 c0 a9 40 ba 7e d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 30 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 30 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 30 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 30 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 30 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 30 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 30 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 30 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 30 00 39 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4a 00 31 00 +2026-04-25T20:12:59.370Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x144"",""0x824b0bc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x144"",""0x824b0bc"",""0x206"",""0x3"",""0x7db4344""]" 1 518 0x3 +2026-04-25T20:12:59.370Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x144"",""0x824b0bc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x144"",""0x824b0bc"",""0x206"",""0x3"",""0x7db4344""]" 2 3 0x7db4344 68 d3 3e +2026-04-25T20:12:59.371Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:59.375Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x2c2"",""0x7d836dc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x2c2"",""0x7d836dc"",""0x206"",""0x3"",""0x7db4344""]" 0 706 0x7d836dc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 51 3c e4 01 a3 1b 84 46 b8 7a 2e 9c 6f 8a 23 c6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:12:59.375Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x2c2"",""0x7d836dc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x2c2"",""0x7d836dc"",""0x206"",""0x3"",""0x7db4344""]" 1 518 0x3 +2026-04-25T20:12:59.375Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x2c2"",""0x7d836dc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x2c2"",""0x7d836dc"",""0x206"",""0x3"",""0x7db4344""]" 2 3 0x7db4344 68 d3 3e +2026-04-25T20:12:59.377Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:59.379Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x97"",""0x7d880a4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x97"",""0x7d880a4"",""0x206"",""0x3"",""0x7db4344""]" 0 151 0x7d880a4 97 00 00 00 01 00 69 00 00 00 00 00 00 00 34 f3 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 51 3c e4 01 a3 1b 84 46 b8 7a 2e 9c 6f 8a 23 c6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:12:59.379Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x97"",""0x7d880a4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x97"",""0x7d880a4"",""0x206"",""0x3"",""0x7db4344""]" 1 518 0x3 +2026-04-25T20:12:59.379Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x97"",""0x7d880a4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x97"",""0x7d880a4"",""0x206"",""0x3"",""0x7db4344""]" 2 3 0x7db4344 68 d3 3e +2026-04-25T20:12:59.381Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:12:59.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x59"",""0x7d836dc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x59"",""0x7d836dc"",""0x206"",""0x3"",""0x7db4344""]" 0 89 0x7d836dc 59 00 00 00 01 00 2b 00 00 00 00 00 00 00 77 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 03 00 00 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 01 00 20 03 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be +2026-04-25T20:12:59.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x59"",""0x7d836dc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x59"",""0x7d836dc"",""0x206"",""0x3"",""0x7db4344""]" 1 518 0x3 +2026-04-25T20:12:59.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x59"",""0x7d836dc"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x59"",""0x7d836dc"",""0x206"",""0x3"",""0x7db4344""]" 2 3 0x7db4344 68 d3 3e +2026-04-25T20:12:59.467Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:13:00.253Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0x10ff14c "[""0x6618ff0"",""0x1"",""0x1"",""0x2008"",""0x0"",""0x82c3798"",""0x0"",""0x7"",""0x0"",""0xf02a7a1f"",""0x40e6872a"",""0x1"",""0x838e64fc""]" +2026-04-25T20:13:00.255Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:13:00.308Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x102"",""0x989a2e0"",""0x10fee40"",""0x300447ad""]" 0 2 0x2 +2026-04-25T20:13:00.308Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97bc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x102"",""0x989a2e0"",""0x10fee40"",""0x300447ad""]" 1 258 0x989a2e0 37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 30 00 00 00 00 00 80 4c b4 bf ac d4 dc 01 10 a3 ac 0b 01 00 00 00 +2026-04-25T20:13:00.310Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x97bc738 "[""0x1"",""0x1"",""0x2"",""0x130"",""0xa15d020"",""0xddcc6117"",""0x9899a8c"",""0x9899a7c"",""0x641add04"",""0x0""]" 0 304 0xa15d020 01 00 02 01 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 30 00 00 00 00 00 80 4c b4 bf ac d4 dc 01 10 a3 ac 0b 01 00 00 00 +2026-04-25T20:13:00.311Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:13:00.311Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:13:00.355Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x33"",""0x8249fb4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x33"",""0x8249fb4"",""0x206"",""0x3"",""0x7db4344""]" 0 51 0x8249fb4 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:13:00.355Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x33"",""0x8249fb4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x33"",""0x8249fb4"",""0x206"",""0x3"",""0x7db4344""]" 1 518 0x3 +2026-04-25T20:13:00.355Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x33"",""0x8249fb4"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x33"",""0x8249fb4"",""0x206"",""0x3"",""0x7db4344""]" 2 3 0x7db4344 68 d3 3e +2026-04-25T20:13:00.356Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:13:00.361Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x132"",""0x7d8269c"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x132"",""0x7d8269c"",""0x206"",""0x3"",""0x7db4344""]" 0 306 0x7d8269c 32 01 00 00 01 00 04 01 00 00 00 00 00 00 78 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 f5 10 c0 4e 31 15 93 4c bb 40 8a 98 ff 9d b8 a6 03 00 00 00 c0 00 80 4c b4 bf ac d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 +2026-04-25T20:13:00.361Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x132"",""0x7d8269c"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x132"",""0x7d8269c"",""0x206"",""0x3"",""0x7db4344""]" 1 518 0x3 +2026-04-25T20:13:00.361Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97bc738 "[""0x132"",""0x7d8269c"",""0x7b6e9b8"",""0x76ffedd8"",""0x97bc744"",""0x132"",""0x7d8269c"",""0x206"",""0x3"",""0x7db4344""]" 2 3 0x7db4344 68 d3 3e +2026-04-25T20:13:00.362Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/072-frida-write2-test-string-array-timestamp/frida-exit.txt b/captures/072-frida-write2-test-string-array-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/072-frida-write2-test-string-array-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/072-frida-write2-test-string-array-timestamp/frida.stderr.txt b/captures/072-frida-write2-test-string-array-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/072-frida-write2-test-string-array-timestamp/frida.stdout.jsonl b/captures/072-frida-write2-test-string-array-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..0bb5b30 --- /dev/null +++ b/captures/072-frida-write2-test-string-array-timestamp/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestStringArray[] --type=string[] --value=AA1;BB2;CC3;DD4;EE5;FF6;GG7;HH8;II9;JJ10 --user-id=1 --write-time=2026-04-25T08:12:13 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\072-frida-write2-test-string-array-timestamp\harness.log --client=MxFridaTrace-072-frida-write2-test-string-array-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestStringArray[] --type=string[] --value=AA1;BB2;CC3;DD4;EE5;FF6;GG7;HH8;II9;JJ10 --user-id=1 --write-time=2026-04-25T08:12:13 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\072-frida-write2-test-string-array-timestamp\harness.log --client=MxFridaTrace-072-frida-write2-test-string-array-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:12:52.660Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:12:52.661Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:12:52.661Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:12:52.662Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:12:52.662Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:12:59.003Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:12:59.004Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:12:59.004Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:12:59.005Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:12:59.005Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:12:59.006Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:12:59.006Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:12:59.103Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:12:59.104Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:12:59.104Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:12:59.105Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97b7010","outPtr":"0x10fea9c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:12:59.105Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10fea9c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x10fea9c","time":"2026-04-25T20:12:59.105Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97b7010","outPtr":"0x10fea9c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:12:59.106Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10fea9c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x10fea9c","time":"2026-04-25T20:12:59.106Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:12:59.202Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9860f00","outPtr":"0x10ff01c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x10ff01c","time":"2026-04-25T20:12:59.202Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x97c0588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestStringArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x988d208","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 89 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 08 d2 88 09 6c e4 3d 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 7b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 bc ad 5c 01 00 00 00 00"},"time":"2026-04-25T20:12:59.203Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97c05d8","outPtr":"0x10fefac","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x10fefac","time":"2026-04-25T20:12:59.204Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97c05d8","outPtr":"0x10fefac","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x10fefac","time":"2026-04-25T20:12:59.204Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97c05d8","outPtr":"0x10fefac","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x10fefac","time":"2026-04-25T20:12:59.205Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x97c0588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestStringArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x988d208","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 89 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 08 d2 88 09 6c e4 3d 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 7b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 bc ad 5c 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:12:59.206Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:12:59.206Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x10ff17c","args":["0x6618ff0","0x1","0x1","0x838e64fc","0x74794704"],"time":"2026-04-25T20:12:59.207Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97b7010","outPtr":"0x10feffc","inWords":[65537,327682,186166,655525,4294921053,0],"time":"2026-04-25T20:12:59.208Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10feffc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x10feffc","time":"2026-04-25T20:12:59.208Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97b7010","outPtr":"0x10fdc90","inWords":[65537,327682,186166,655525,4294921053,0],"time":"2026-04-25T20:12:59.208Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x10fdc90","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x10fdc90","time":"2026-04-25T20:12:59.209Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:12:59.209Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x97bc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x97c0648","0x10fee40","0x300447ad"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x97c0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 7b 09 1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 7c 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:12:59.333Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x97bc738","args":["0x1","0x1","0x1","0x168","0xa15d020","0xddcc6117","0x97c0214","0x97c0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa15d020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 7b 09 1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 7c 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:12:59.336Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:59.337Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:59.337Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x97bc738","0x1","0x1","0x2","0x2","0x0","0x27","0x988d1c0","0x10fee40","0x300447ad"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x988d1c0","hex":"1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T20:12:59.338Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x97bc738","args":["0x1","0x1","0x2","0x55","0xa15d020","0xddcc6117","0x9899634","0x9899624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa15d020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T20:12:59.339Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:12:59.340Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:12:59.340Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97bc738","args":["0x5c","0x8282ee4","0x7b6e9b8","0x76ffedd8","0x97bc744","0x5c","0x8282ee4","0x206","0x3","0x7db4344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8282ee4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 10 c0 4e 31 15 93 4c bb 40 8a 98 ff 9d b8 a6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7db4344","hex":"68 d3 3e"}],"time":"2026-04-25T20:12:59.365Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:59.366Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97bc738","args":["0x144","0x824b0bc","0x7b6e9b8","0x76ffedd8","0x97bc744","0x144","0x824b0bc","0x206","0x3","0x7db4344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":324,"ptr":"0x824b0bc","hex":"44 01 00 00 01 00 16 01 00 00 00 00 00 00 76 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 10 c0 4e 31 15 93 4c bb 40 8a 98 ff 9d b8 a6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 03 00 00 00 03 00 00 00 c0 00 c0 a9 40 ba 7e d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 30 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 30 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 30 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 30 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 30 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 30 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 30 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 30 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 30 00 39 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4a 00 31 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7db4344","hex":"68 d3 3e"}],"time":"2026-04-25T20:12:59.370Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:59.371Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97bc738","args":["0x2c2","0x7d836dc","0x7b6e9b8","0x76ffedd8","0x97bc744","0x2c2","0x7d836dc","0x206","0x3","0x7db4344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7d836dc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 51 3c e4 01 a3 1b 84 46 b8 7a 2e 9c 6f 8a 23 c6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7db4344","hex":"68 d3 3e"}],"time":"2026-04-25T20:12:59.375Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:59.377Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97bc738","args":["0x97","0x7d880a4","0x7b6e9b8","0x76ffedd8","0x97bc744","0x97","0x7d880a4","0x206","0x3","0x7db4344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7d880a4","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 34 f3 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 51 3c e4 01 a3 1b 84 46 b8 7a 2e 9c 6f 8a 23 c6 b2 ae b7 42 01 54 c0 46 b4 63 88 d6 2b 8b 13 66 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7db4344","hex":"68 d3 3e"}],"time":"2026-04-25T20:12:59.379Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:59.381Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97bc738","args":["0x59","0x7d836dc","0x7b6e9b8","0x76ffedd8","0x97bc744","0x59","0x7d836dc","0x206","0x3","0x7db4344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":89,"ptr":"0x7d836dc","hex":"59 00 00 00 01 00 2b 00 00 00 00 00 00 00 77 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 03 00 00 00 25 86 f4 2b 29 c6 15 42 a4 a2 0b a2 68 4f 7d b9 01 00 20 03 b0 bb 29 c1 39 74 ad 48 b3 b8 a2 be"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7db4344","hex":"68 d3 3e"}],"time":"2026-04-25T20:12:59.466Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:12:59.467Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0x10ff14c","args":["0x6618ff0","0x1","0x1","0x2008","0x0","0x82c3798","0x0","0x7","0x0","0xf02a7a1f","0x40e6872a","0x1","0x838e64fc"],"time":"2026-04-25T20:13:00.253Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:13:00.255Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x97bc738","0x1","0x1","0x2","0x2","0x0","0x102","0x989a2e0","0x10fee40","0x300447ad"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":258,"ptr":"0x989a2e0","hex":"37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 30 00 00 00 00 00 80 4c b4 bf ac d4 dc 01 10 a3 ac 0b 01 00 00 00"}],"time":"2026-04-25T20:13:00.308Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x97bc738","args":["0x1","0x1","0x2","0x130","0xa15d020","0xddcc6117","0x9899a8c","0x9899a7c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":304,"ptr":"0xa15d020","hex":"01 00 02 01 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 30 00 00 00 00 00 80 4c b4 bf ac d4 dc 01 10 a3 ac 0b 01 00 00 00"}],"time":"2026-04-25T20:13:00.310Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:13:00.311Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:13:00.311Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97bc738","args":["0x33","0x8249fb4","0x7b6e9b8","0x76ffedd8","0x97bc744","0x33","0x8249fb4","0x206","0x3","0x7db4344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x8249fb4","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7db4344","hex":"68 d3 3e"}],"time":"2026-04-25T20:13:00.355Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:13:00.356Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97bc738","args":["0x132","0x7d8269c","0x7b6e9b8","0x76ffedd8","0x97bc744","0x132","0x7d8269c","0x206","0x3","0x7db4344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":306,"ptr":"0x7d8269c","hex":"32 01 00 00 01 00 04 01 00 00 00 00 00 00 78 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 f5 10 c0 4e 31 15 93 4c bb 40 8a 98 ff 9d b8 a6 03 00 00 00 c0 00 80 4c b4 bf ac d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7db4344","hex":"68 d3 3e"}],"time":"2026-04-25T20:13:00.361Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:13:00.362Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/072-frida-write2-test-string-array-timestamp/harness.log b/captures/072-frida-write2-test-string-array-timestamp/harness.log new file mode 100644 index 0000000..545e1bd --- /dev/null +++ b/captures/072-frida-write2-test-string-array-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:12:52.5624665+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-072-frida-write2-test-string-array-timestamp","Tags":["TestChildObject.TestStringArray[]"],"ItemContext":"","WriteType":"string[]","WriteValue":"AA1;BB2;CC3;DD4;EE5;FF6;GG7;HH8;II9;JJ10","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:12:13","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:12:58.8494680+00:00 mx.register.begin {"ClientName":"MxFridaTrace-072-frida-write2-test-string-array-timestamp"} +2026-04-25T20:12:59.1997632+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:12:59.2006969+00:00 mx.additem.begin {"Tag":"TestChildObject.TestStringArray[]"} +2026-04-25T20:12:59.2066984+00:00 mx.additem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T20:12:59.2076912+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T20:12:59.2096926+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T20:13:00.2495528+00:00 mx.write.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String[]","Length":10,"Values":["AA1","BB2","CC3","DD4","EE5","FF6","GG7","HH8","II9","JJ10"]},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:12:13"} +2026-04-25T20:13:00.2555527+00:00 mx.write.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:13:04.3002995+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T20:13:04.3002995+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T20:13:04.3002995+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T20:13:04.3012997+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T20:13:04.3012997+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:13:08.0921776+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:13:08.0981713+00:00 harness.stop {} diff --git a/captures/073-frida-write2-test-float-array-timestamp/frida-command.txt b/captures/073-frida-write2-test-float-array-timestamp/frida-command.txt new file mode 100644 index 0000000..7c4035c --- /dev/null +++ b/captures/073-frida-write2-test-float-array-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestFloatArray[] --type=float[] --value=1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5 --user-id=1 --write-time=2026-04-25T08:13:14 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\073-frida-write2-test-float-array-timestamp\harness.log --client=MxFridaTrace-073-frida-write2-test-float-array-timestamp diff --git a/captures/073-frida-write2-test-float-array-timestamp/frida-events.tsv b/captures/073-frida-write2-test-float-array-timestamp/frida-events.tsv new file mode 100644 index 0000000..21139d3 --- /dev/null +++ b/captures/073-frida-write2-test-float-array-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:15:47.877Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:15:47.878Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:15:47.879Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:15:47.880Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:15:47.881Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:16:01.269Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:16:01.270Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:16:01.270Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:16:01.271Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:01.272Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:16:01.272Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:16:01.272Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:16:01.353Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:01.354Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe6e0 [] +2026-04-25T20:16:01.354Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:01.355Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe6e0 [] +2026-04-25T20:16:01.370Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:16:01.370Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:16:01.371Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:16:01.371Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:16:01.456Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:16:01.457Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefec60 [] +2026-04-25T20:16:01.458Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:16:01.459Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefebf0 [] +2026-04-25T20:16:01.460Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefebf0 [] +2026-04-25T20:16:01.460Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefebf0 [] +2026-04-25T20:16:01.461Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:16:01.462Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:16:01.464Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xefedbc "[""0x6098ff0"",""0x1"",""0x1"",""0x58105d9a"",""0x74794704""]" +2026-04-25T20:16:01.465Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:01.465Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefec3c [] +2026-04-25T20:16:01.466Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:01.466Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefd8d0 [] +2026-04-25T20:16:01.467Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:16:01.599Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x951c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9520648"",""0xefea80"",""0x4275507d""]" 0 1 0x2 +2026-04-25T20:16:01.599Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x951c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9520648"",""0xefea80"",""0x4275507d""]" 1 314 0x9520648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 51 09 1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 52 09 20 01 00 02 00 00 00 +2026-04-25T20:16:01.603Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x951c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa803020"",""0x8c81f729"",""0x9520214"",""0x9520204"",""0x641add04"",""0x0""]" 0 360 0xa803020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 51 09 1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 52 09 20 01 00 02 00 00 00 +2026-04-25T20:16:01.604Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:16:01.604Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:16:01.606Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x951c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x95ed208"",""0xefea80"",""0x4275507d""]" 0 2 0x2 +2026-04-25T20:16:01.606Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x951c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x95ed208"",""0xefea80"",""0x4275507d""]" 1 39 0x95ed208 1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00 +2026-04-25T20:16:01.608Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x951c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa803020"",""0x8c81f729"",""0x95f9634"",""0x95f9624"",""0x641add04"",""0x0""]" 0 85 0xa803020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00 +2026-04-25T20:16:01.609Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:16:01.609Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:16:01.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x5c"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x5c"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 0 92 0x801c244 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 79 59 41 65 54 6b 7c 40 99 21 b5 51 33 37 d5 31 f6 8a a0 1a 92 86 23 41 89 29 ea d9 +2026-04-25T20:16:01.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x5c"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x5c"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 1 518 0x3 +2026-04-25T20:16:01.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x5c"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x5c"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 2 3 0x7afdc54 a8 a7 16 +2026-04-25T20:16:01.621Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:01.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x9a"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x9a"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 0 154 0x801f55c 9a 00 00 00 01 00 6c 00 00 00 00 00 00 00 7e 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 79 59 41 65 54 6b 7c 40 99 21 b5 51 33 37 d5 31 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 03 00 00 00 03 00 00 00 c0 00 b0 47 0d 97 7e d4 dc 01 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41 +2026-04-25T20:16:01.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x9a"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x9a"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 1 518 0x3 +2026-04-25T20:16:01.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x9a"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x9a"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 2 3 0x7afdc54 a8 a7 16 +2026-04-25T20:16:01.625Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:01.675Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x2c2"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x2c2"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 0 706 0x801c244 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 03 60 00 b9 27 c6 f4 4e 88 ee a8 af 65 a4 94 c2 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:16:01.675Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x2c2"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x2c2"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 1 518 0x3 +2026-04-25T20:16:01.675Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x2c2"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x2c2"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 2 3 0x7afdc54 a8 a7 16 +2026-04-25T20:16:01.677Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:01.680Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x97"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x97"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 0 151 0x801f55c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 12 f6 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 03 60 00 b9 27 c6 f4 4e 88 ee a8 af 65 a4 94 c2 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:16:01.680Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x97"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x97"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 1 518 0x3 +2026-04-25T20:16:01.680Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x97"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x97"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 2 3 0x7afdc54 a8 a7 16 +2026-04-25T20:16:01.682Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:02.522Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0xefed8c "[""0x6098ff0"",""0x1"",""0x1"",""0x2004"",""0x0"",""0x8096ee8"",""0x0"",""0x7"",""0x0"",""0xf5f31aed"",""0x40e6872a"",""0x1"",""0x58105d9a""]" +2026-04-25T20:16:02.523Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:16:02.576Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x951c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x95fa160"",""0xefea80"",""0x4275507d""]" 0 2 0x2 +2026-04-25T20:16:02.576Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x951c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x56"",""0x95fa160"",""0xefea80"",""0x4275507d""]" 1 86 0x95fa160 37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 c0 3f 00 00 20 40 00 00 60 40 00 00 90 40 00 00 b0 40 00 00 d0 40 00 00 f0 40 00 00 08 41 00 00 18 41 00 00 28 41 00 00 00 29 10 e4 ac d4 dc 01 fa 6a af 0b 01 00 00 00 +2026-04-25T20:16:02.577Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x951c738 "[""0x1"",""0x1"",""0x2"",""0x84"",""0xa803020"",""0x8c81f729"",""0x95177f4"",""0x95177e4"",""0x641add04"",""0x0""]" 0 132 0xa803020 01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 c0 3f 00 00 20 40 00 00 60 40 00 00 90 40 00 00 b0 40 00 00 d0 40 00 00 f0 40 00 00 08 41 00 00 18 41 00 00 28 41 00 00 00 29 10 e4 ac d4 dc 01 fa 6a af 0b 01 00 00 00 +2026-04-25T20:16:02.577Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:16:02.578Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:16:02.622Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x33"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x33"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 0 51 0x801c244 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:16:02.622Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x33"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x33"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 1 518 0x3 +2026-04-25T20:16:02.622Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x33"",""0x801c244"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x33"",""0x801c244"",""0x206"",""0x3"",""0x7afdc54""]" 2 3 0x7afdc54 a8 a7 16 +2026-04-25T20:16:02.624Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:02.626Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x86"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x86"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 0 134 0x801f55c 86 00 00 00 01 00 58 00 00 00 00 00 00 00 7f 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 79 59 41 65 54 6b 7c 40 99 21 b5 51 33 37 d5 31 03 00 00 00 c0 00 00 29 10 e4 ac d4 dc 01 43 00 00 00 00 0a 00 04 00 00 00 00 00 c0 3f 00 00 20 40 00 00 60 40 00 00 90 40 00 00 b0 40 00 00 d0 40 00 00 f0 40 00 00 08 41 00 00 18 41 +2026-04-25T20:16:02.626Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x86"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x86"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 1 518 0x3 +2026-04-25T20:16:02.626Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x951c738 "[""0x86"",""0x801f55c"",""0x78aeee8"",""0x76ffedd8"",""0x951c744"",""0x86"",""0x801f55c"",""0x206"",""0x3"",""0x7afdc54""]" 2 3 0x7afdc54 a8 a7 16 +2026-04-25T20:16:02.628Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/073-frida-write2-test-float-array-timestamp/frida-exit.txt b/captures/073-frida-write2-test-float-array-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/073-frida-write2-test-float-array-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/073-frida-write2-test-float-array-timestamp/frida.stderr.txt b/captures/073-frida-write2-test-float-array-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/073-frida-write2-test-float-array-timestamp/frida.stdout.jsonl b/captures/073-frida-write2-test-float-array-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..410aaa0 --- /dev/null +++ b/captures/073-frida-write2-test-float-array-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestFloatArray[] --type=float[] --value=1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5 --user-id=1 --write-time=2026-04-25T08:13:14 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\073-frida-write2-test-float-array-timestamp\harness.log --client=MxFridaTrace-073-frida-write2-test-float-array-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestFloatArray[] --type=float[] --value=1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5 --user-id=1 --write-time=2026-04-25T08:13:14 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\073-frida-write2-test-float-array-timestamp\harness.log --client=MxFridaTrace-073-frida-write2-test-float-array-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:15:47.877Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:15:47.878Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:15:47.879Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:15:47.880Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:15:47.881Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:16:01.269Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:16:01.270Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:16:01.270Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:16:01.271Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:16:01.272Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:16:01.272Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:16:01.272Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9517010","outPtr":"0xefe6e0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:16:01.353Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe6e0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xefe6e0","time":"2026-04-25T20:16:01.354Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9517010","outPtr":"0xefe6e0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:16:01.354Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe6e0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xefe6e0","time":"2026-04-25T20:16:01.355Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:16:01.370Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:16:01.370Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:16:01.371Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:16:01.371Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:16:01.456Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95c20d0","outPtr":"0xefec60","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655523,"w4":4294963605},"retval":"0xefec60","time":"2026-04-25T20:16:01.457Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9520588","referenceString":{"length":32,"capacity":39,"value":"TestChildObject.TestFloatArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x95ed298","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 5f 09 00 65 00 00 00 02 00 00 00 00 00 02 20 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 98 d2 5e 09 dc bf 14 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 51 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 5c 3d 0b 01 00 00 00 00"},"time":"2026-04-25T20:16:01.458Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95205d8","outPtr":"0xefebf0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655523,"w4":4294963605},"retval":"0xefebf0","time":"2026-04-25T20:16:01.459Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95205d8","outPtr":"0xefebf0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655523,"w4":4294963605},"retval":"0xefebf0","time":"2026-04-25T20:16:01.460Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95205d8","outPtr":"0xefebf0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655523,"w4":4294963605},"retval":"0xefebf0","time":"2026-04-25T20:16:01.460Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9520588","referenceString":{"length":32,"capacity":39,"value":"TestChildObject.TestFloatArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x95ed298","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 5f 09 00 65 00 00 00 02 00 00 00 00 00 02 20 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 98 d2 5e 09 dc bf 14 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 51 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 5c 3d 0b 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:16:01.461Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:16:01.462Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xefedbc","args":["0x6098ff0","0x1","0x1","0x58105d9a","0x74794704"],"time":"2026-04-25T20:16:01.464Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9517010","outPtr":"0xefec3c","inWords":[65537,327682,186166,655523,4294963605,0],"time":"2026-04-25T20:16:01.465Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefec3c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655523,"w4":4294963605},"retval":"0xefec3c","time":"2026-04-25T20:16:01.465Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9517010","outPtr":"0xefd8d0","inWords":[65537,327682,186166,655523,4294963605,0],"time":"2026-04-25T20:16:01.466Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefd8d0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655523,"w4":4294963605},"retval":"0xefd8d0","time":"2026-04-25T20:16:01.466Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:16:01.467Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x951c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9520648","0xefea80","0x4275507d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9520648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 51 09 1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 52 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:16:01.599Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x951c738","args":["0x1","0x1","0x1","0x168","0xa803020","0x8c81f729","0x9520214","0x9520204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa803020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 51 09 1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 52 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:16:01.603Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:16:01.604Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:16:01.604Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x951c738","0x1","0x1","0x2","0x2","0x0","0x27","0x95ed208","0xefea80","0x4275507d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x95ed208","hex":"1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00"}],"time":"2026-04-25T20:16:01.606Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x951c738","args":["0x1","0x1","0x2","0x55","0xa803020","0x8c81f729","0x95f9634","0x95f9624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa803020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 00 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 03 00 00 00"}],"time":"2026-04-25T20:16:01.608Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:16:01.609Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:16:01.609Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x951c738","args":["0x5c","0x801c244","0x78aeee8","0x76ffedd8","0x951c744","0x5c","0x801c244","0x206","0x3","0x7afdc54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x801c244","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 79 59 41 65 54 6b 7c 40 99 21 b5 51 33 37 d5 31 f6 8a a0 1a 92 86 23 41 89 29 ea d9"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afdc54","hex":"a8 a7 16"}],"time":"2026-04-25T20:16:01.619Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:01.621Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x951c738","args":["0x9a","0x801f55c","0x78aeee8","0x76ffedd8","0x951c744","0x9a","0x801f55c","0x206","0x3","0x7afdc54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":154,"ptr":"0x801f55c","hex":"9a 00 00 00 01 00 6c 00 00 00 00 00 00 00 7e 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 79 59 41 65 54 6b 7c 40 99 21 b5 51 33 37 d5 31 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 03 00 00 00 03 00 00 00 c0 00 b0 47 0d 97 7e d4 dc 01 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afdc54","hex":"a8 a7 16"}],"time":"2026-04-25T20:16:01.623Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:01.625Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x951c738","args":["0x2c2","0x801c244","0x78aeee8","0x76ffedd8","0x951c744","0x2c2","0x801c244","0x206","0x3","0x7afdc54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x801c244","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 03 60 00 b9 27 c6 f4 4e 88 ee a8 af 65 a4 94 c2 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afdc54","hex":"a8 a7 16"}],"time":"2026-04-25T20:16:01.675Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:01.677Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x951c738","args":["0x97","0x801f55c","0x78aeee8","0x76ffedd8","0x951c744","0x97","0x801f55c","0x206","0x3","0x7afdc54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x801f55c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 12 f6 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 03 60 00 b9 27 c6 f4 4e 88 ee a8 af 65 a4 94 c2 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afdc54","hex":"a8 a7 16"}],"time":"2026-04-25T20:16:01.680Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:01.682Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0xefed8c","args":["0x6098ff0","0x1","0x1","0x2004","0x0","0x8096ee8","0x0","0x7","0x0","0xf5f31aed","0x40e6872a","0x1","0x58105d9a"],"time":"2026-04-25T20:16:02.522Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:16:02.523Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x951c738","0x1","0x1","0x2","0x2","0x0","0x56","0x95fa160","0xefea80","0x4275507d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x95fa160","hex":"37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 c0 3f 00 00 20 40 00 00 60 40 00 00 90 40 00 00 b0 40 00 00 d0 40 00 00 f0 40 00 00 08 41 00 00 18 41 00 00 28 41 00 00 00 29 10 e4 ac d4 dc 01 fa 6a af 0b 01 00 00 00"}],"time":"2026-04-25T20:16:02.576Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x951c738","args":["0x1","0x1","0x2","0x84","0xa803020","0x8c81f729","0x95177f4","0x95177e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0xa803020","hex":"01 00 56 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 c0 3f 00 00 20 40 00 00 60 40 00 00 90 40 00 00 b0 40 00 00 d0 40 00 00 f0 40 00 00 08 41 00 00 18 41 00 00 28 41 00 00 00 29 10 e4 ac d4 dc 01 fa 6a af 0b 01 00 00 00"}],"time":"2026-04-25T20:16:02.577Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:16:02.577Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:16:02.578Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x951c738","args":["0x33","0x801c244","0x78aeee8","0x76ffedd8","0x951c744","0x33","0x801c244","0x206","0x3","0x7afdc54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x801c244","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afdc54","hex":"a8 a7 16"}],"time":"2026-04-25T20:16:02.622Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:02.624Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x951c738","args":["0x86","0x801f55c","0x78aeee8","0x76ffedd8","0x951c744","0x86","0x801f55c","0x206","0x3","0x7afdc54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":134,"ptr":"0x801f55c","hex":"86 00 00 00 01 00 58 00 00 00 00 00 00 00 7f 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 79 59 41 65 54 6b 7c 40 99 21 b5 51 33 37 d5 31 03 00 00 00 c0 00 00 29 10 e4 ac d4 dc 01 43 00 00 00 00 0a 00 04 00 00 00 00 00 c0 3f 00 00 20 40 00 00 60 40 00 00 90 40 00 00 b0 40 00 00 d0 40 00 00 f0 40 00 00 08 41 00 00 18 41"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7afdc54","hex":"a8 a7 16"}],"time":"2026-04-25T20:16:02.626Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:02.628Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/073-frida-write2-test-float-array-timestamp/harness.log b/captures/073-frida-write2-test-float-array-timestamp/harness.log new file mode 100644 index 0000000..be7b72d --- /dev/null +++ b/captures/073-frida-write2-test-float-array-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:15:47.8228605+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-073-frida-write2-test-float-array-timestamp","Tags":["TestChildObject.TestFloatArray[]"],"ItemContext":"","WriteType":"float[]","WriteValue":"1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:13:14","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:16:01.0823265+00:00 mx.register.begin {"ClientName":"MxFridaTrace-073-frida-write2-test-float-array-timestamp"} +2026-04-25T20:16:01.4528253+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:16:01.4548232+00:00 mx.additem.begin {"Tag":"TestChildObject.TestFloatArray[]"} +2026-04-25T20:16:01.4625667+00:00 mx.additem.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T20:16:01.4635687+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T20:16:01.4675670+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T20:16:02.5170726+00:00 mx.write.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Single[]","Length":10,"Values":["1.5","2.5","3.5","4.5","5.5","6.5","7.5","8.5","9.5","10.5"]},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:13:14"} +2026-04-25T20:16:02.5230419+00:00 mx.write.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:16:06.5679623+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T20:16:06.5679623+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T20:16:06.5679623+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T20:16:06.5689666+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestFloatArray[]","ItemHandle":1} +2026-04-25T20:16:06.5689666+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:16:10.2398300+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:16:10.2478302+00:00 harness.stop {} diff --git a/captures/074-frida-write2-test-double-array-timestamp/frida-command.txt b/captures/074-frida-write2-test-double-array-timestamp/frida-command.txt new file mode 100644 index 0000000..b1c0281 --- /dev/null +++ b/captures/074-frida-write2-test-double-array-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestDoubleArray[] --type=double[] --value=1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5 --user-id=1 --write-time=2026-04-25T08:14:15 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\074-frida-write2-test-double-array-timestamp\harness.log --client=MxFridaTrace-074-frida-write2-test-double-array-timestamp diff --git a/captures/074-frida-write2-test-double-array-timestamp/frida-events.tsv b/captures/074-frida-write2-test-double-array-timestamp/frida-events.tsv new file mode 100644 index 0000000..9fe5173 --- /dev/null +++ b/captures/074-frida-write2-test-double-array-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:15:47.910Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:15:47.910Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:15:47.911Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:15:47.912Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:15:47.912Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:15:54.863Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:15:54.863Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:15:54.864Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:15:54.865Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:15:54.865Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:15:54.866Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:15:54.866Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:15:54.963Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:15:54.964Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:15:54.965Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:15:54.966Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:15:55.020Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:15:55.022Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf3e7bc [] +2026-04-25T20:15:55.022Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:15:55.022Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf3e7bc [] +2026-04-25T20:15:55.114Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:15:55.114Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf3ed3c [] +2026-04-25T20:15:55.116Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:15:55.116Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf3eccc [] +2026-04-25T20:15:55.116Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf3eccc [] +2026-04-25T20:15:55.117Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf3eccc [] +2026-04-25T20:15:55.118Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:15:55.118Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:15:55.120Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xf3ee9c "[""0x6228ff0"",""0x1"",""0x1"",""0x6331a2d6"",""0x74794704""]" +2026-04-25T20:15:55.120Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:15:55.120Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf3ed1c [] +2026-04-25T20:15:55.121Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:15:55.121Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf3d9b0 [] +2026-04-25T20:15:55.121Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:15:55.249Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95dc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x95e0648"",""0xf3eb60"",""0x351b9931""]" 0 1 0x2 +2026-04-25T20:15:55.249Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95dc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x95e0648"",""0xf3eb60"",""0x351b9931""]" 1 314 0x95e0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5d 09 1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 5e 09 20 01 00 02 00 00 00 +2026-04-25T20:15:55.251Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95dc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa8cc020"",""0x8fe890b8"",""0x95e0214"",""0x95e0204"",""0x641add04"",""0x0""]" 0 360 0xa8cc020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5d 09 1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 5e 09 20 01 00 02 00 00 00 +2026-04-25T20:15:55.252Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:15:55.252Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:15:55.253Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95dc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x96addd8"",""0xf3eb60"",""0x351b9931""]" 0 2 0x2 +2026-04-25T20:15:55.253Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95dc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x96addd8"",""0xf3eb60"",""0x351b9931""]" 1 39 0x96addd8 1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00 +2026-04-25T20:15:55.254Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95dc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa8cc020"",""0x8fe890b8"",""0x96b9634"",""0x96b9624"",""0x641add04"",""0x0""]" 0 85 0xa8cc020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00 +2026-04-25T20:15:55.255Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:15:55.255Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:15:55.288Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x2c2"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x2c2"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 0 706 0x80ee3bc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0d 15 0d 1f db 22 25 40 81 97 90 ca b6 c4 4b 10 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:15:55.288Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x2c2"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x2c2"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 1 518 0x3 +2026-04-25T20:15:55.288Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x2c2"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x2c2"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 2 3 0x7bc535c 70 37 15 +2026-04-25T20:15:55.291Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:15:55.294Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x97"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x97"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 0 151 0x80ad97c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 f7 f5 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0d 15 0d 1f db 22 25 40 81 97 90 ca b6 c4 4b 10 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:15:55.294Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x97"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x97"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 1 518 0x3 +2026-04-25T20:15:55.294Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x97"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x97"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 2 3 0x7bc535c 70 37 15 +2026-04-25T20:15:55.295Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:15:55.300Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x5c"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x5c"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 0 92 0x80ee3bc 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 eb d7 ca b4 9d 31 17 47 a1 54 00 8e 7b b2 f4 e4 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 +2026-04-25T20:15:55.300Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x5c"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x5c"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 1 518 0x3 +2026-04-25T20:15:55.300Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x5c"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x5c"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 2 3 0x7bc535c 70 37 15 +2026-04-25T20:15:55.301Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:15:55.304Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0xc2"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0xc2"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 0 194 0x80ad97c c2 00 00 00 01 00 94 00 00 00 00 00 00 00 7c 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 eb d7 ca b4 9d 31 17 47 a1 54 00 8e 7b b2 f4 e4 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 03 00 00 00 03 00 00 00 c0 00 b0 bc cc a8 7e d4 dc 01 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f2 3f 00 00 00 00 00 00 02 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 80 12 40 00 00 00 00 00 00 17 40 00 00 00 00 00 80 1b 40 00 00 00 00 00 00 1c 40 00 00 00 00 00 40 20 40 00 00 00 00 00 80 22 40 00 00 00 00 +2026-04-25T20:15:55.304Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0xc2"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0xc2"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 1 518 0x3 +2026-04-25T20:15:55.304Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0xc2"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0xc2"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 2 3 0x7bc535c 70 37 15 +2026-04-25T20:15:55.305Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:15:56.174Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0xf3ee6c "[""0x6228ff0"",""0x1"",""0x1"",""0x2005"",""0x0"",""0xaba36c8"",""0x0"",""0x7"",""0x0"",""0xfbbbbbbc"",""0x40e6872a"",""0x1"",""0x6331a2d6""]" +2026-04-25T20:15:56.176Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:15:56.229Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95dc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x7e"",""0x96ba160"",""0xf3eb60"",""0x351b9931""]" 0 2 0x2 +2026-04-25T20:15:56.229Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x95dc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x7e"",""0x96ba160"",""0xf3eb60"",""0x351b9931""]" 1 126 0x96ba160 37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f8 3f 00 00 00 00 00 00 04 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 00 12 40 00 00 00 00 00 00 16 40 00 00 00 00 00 00 1a 40 00 00 00 00 00 00 1e 40 00 00 00 00 00 00 21 40 00 00 00 00 00 00 23 40 00 00 00 00 00 00 25 40 00 00 80 05 6c 08 ad d4 dc 01 42 52 af 0b 01 00 00 00 +2026-04-25T20:15:56.230Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x95dc738 "[""0x1"",""0x1"",""0x2"",""0xac"",""0xa8cc020"",""0x8fe890b8"",""0x95d77f4"",""0x95d77e4"",""0x641add04"",""0x0""]" 0 172 0xa8cc020 01 00 7e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f8 3f 00 00 00 00 00 00 04 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 00 12 40 00 00 00 00 00 00 16 40 00 00 00 00 00 00 1a 40 00 00 00 00 00 00 1e 40 00 00 00 00 00 00 21 40 00 00 00 00 00 00 23 40 00 00 00 00 00 00 25 40 00 00 80 05 6c 08 ad d4 dc 01 42 52 af 0b 01 00 00 00 +2026-04-25T20:15:56.231Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:15:56.231Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:15:56.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x33"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x33"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 0 51 0x80ee3bc 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:15:56.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x33"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x33"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 1 518 0x3 +2026-04-25T20:15:56.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0x33"",""0x80ee3bc"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0x33"",""0x80ee3bc"",""0x206"",""0x3"",""0x7bc535c""]" 2 3 0x7bc535c 70 37 15 +2026-04-25T20:15:56.253Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:15:56.256Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0xae"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0xae"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 0 174 0x80ad97c ae 00 00 00 01 00 80 00 00 00 00 00 00 00 7d 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 eb d7 ca b4 9d 31 17 47 a1 54 00 8e 7b b2 f4 e4 03 00 00 00 c0 00 80 05 6c 08 ad d4 dc 01 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f8 3f 00 00 00 00 00 00 04 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 00 12 40 00 00 00 00 00 00 16 40 00 00 00 00 00 00 1a 40 00 00 00 00 00 00 1e 40 00 00 00 00 00 00 21 40 00 00 00 00 00 00 23 40 00 00 00 00 +2026-04-25T20:15:56.256Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0xae"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0xae"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 1 518 0x3 +2026-04-25T20:15:56.256Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x95dc738 "[""0xae"",""0x80ad97c"",""0x773ee78"",""0x76ffedd8"",""0x95dc744"",""0xae"",""0x80ad97c"",""0x206"",""0x3"",""0x7bc535c""]" 2 3 0x7bc535c 70 37 15 +2026-04-25T20:15:56.257Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/074-frida-write2-test-double-array-timestamp/frida-exit.txt b/captures/074-frida-write2-test-double-array-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/074-frida-write2-test-double-array-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/074-frida-write2-test-double-array-timestamp/frida.stderr.txt b/captures/074-frida-write2-test-double-array-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/074-frida-write2-test-double-array-timestamp/frida.stdout.jsonl b/captures/074-frida-write2-test-double-array-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..2e38cb4 --- /dev/null +++ b/captures/074-frida-write2-test-double-array-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestDoubleArray[] --type=double[] --value=1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5 --user-id=1 --write-time=2026-04-25T08:14:15 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\074-frida-write2-test-double-array-timestamp\harness.log --client=MxFridaTrace-074-frida-write2-test-double-array-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestDoubleArray[] --type=double[] --value=1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5 --user-id=1 --write-time=2026-04-25T08:14:15 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\074-frida-write2-test-double-array-timestamp\harness.log --client=MxFridaTrace-074-frida-write2-test-double-array-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:15:47.910Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:15:47.910Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:15:47.911Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:15:47.912Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:15:47.912Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:15:54.863Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:15:54.863Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:15:54.864Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:15:54.865Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:15:54.865Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:15:54.866Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:15:54.866Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:15:54.963Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:15:54.964Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:15:54.965Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:15:54.966Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x95d7010","outPtr":"0xf3e7bc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:15:55.020Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf3e7bc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf3e7bc","time":"2026-04-25T20:15:55.022Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x95d7010","outPtr":"0xf3e7bc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:15:55.022Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf3e7bc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf3e7bc","time":"2026-04-25T20:15:55.022Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:15:55.114Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96814c8","outPtr":"0xf3ed3c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655522,"w4":4294905361},"retval":"0xf3ed3c","time":"2026-04-25T20:15:55.114Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x95e0588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestDoubleArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x96ade20","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 6b 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 20 de 6a 09 ac 84 20 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 5d 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 9c 78 1d 01 00 00 00 00"},"time":"2026-04-25T20:15:55.116Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95e05d8","outPtr":"0xf3eccc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655522,"w4":4294905361},"retval":"0xf3eccc","time":"2026-04-25T20:15:55.116Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95e05d8","outPtr":"0xf3eccc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655522,"w4":4294905361},"retval":"0xf3eccc","time":"2026-04-25T20:15:55.116Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95e05d8","outPtr":"0xf3eccc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655522,"w4":4294905361},"retval":"0xf3eccc","time":"2026-04-25T20:15:55.117Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x95e0588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestDoubleArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x96ade20","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 6b 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 20 de 6a 09 ac 84 20 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 5d 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 9c 78 1d 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:15:55.118Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:15:55.118Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xf3ee9c","args":["0x6228ff0","0x1","0x1","0x6331a2d6","0x74794704"],"time":"2026-04-25T20:15:55.120Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x95d7010","outPtr":"0xf3ed1c","inWords":[65537,327682,186166,655522,4294905361,0],"time":"2026-04-25T20:15:55.120Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf3ed1c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655522,"w4":4294905361},"retval":"0xf3ed1c","time":"2026-04-25T20:15:55.120Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x95d7010","outPtr":"0xf3d9b0","inWords":[65537,327682,186166,655522,4294905361,0],"time":"2026-04-25T20:15:55.121Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf3d9b0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655522,"w4":4294905361},"retval":"0xf3d9b0","time":"2026-04-25T20:15:55.121Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:15:55.121Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95dc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x95e0648","0xf3eb60","0x351b9931"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x95e0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5d 09 1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 5e 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:15:55.249Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95dc738","args":["0x1","0x1","0x1","0x168","0xa8cc020","0x8fe890b8","0x95e0214","0x95e0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa8cc020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 5d 09 1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 5e 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:15:55.251Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:15:55.252Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:15:55.252Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95dc738","0x1","0x1","0x2","0x2","0x0","0x27","0x96addd8","0xf3eb60","0x351b9931"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x96addd8","hex":"1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00"}],"time":"2026-04-25T20:15:55.253Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95dc738","args":["0x1","0x1","0x2","0x55","0xa8cc020","0x8fe890b8","0x96b9634","0x96b9624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa8cc020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 00 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 03 00 00 00"}],"time":"2026-04-25T20:15:55.254Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:15:55.255Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:15:55.255Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95dc738","args":["0x2c2","0x80ee3bc","0x773ee78","0x76ffedd8","0x95dc744","0x2c2","0x80ee3bc","0x206","0x3","0x7bc535c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x80ee3bc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0d 15 0d 1f db 22 25 40 81 97 90 ca b6 c4 4b 10 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7bc535c","hex":"70 37 15"}],"time":"2026-04-25T20:15:55.288Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:15:55.291Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95dc738","args":["0x97","0x80ad97c","0x773ee78","0x76ffedd8","0x95dc744","0x97","0x80ad97c","0x206","0x3","0x7bc535c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x80ad97c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 f7 f5 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0d 15 0d 1f db 22 25 40 81 97 90 ca b6 c4 4b 10 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7bc535c","hex":"70 37 15"}],"time":"2026-04-25T20:15:55.294Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:15:55.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95dc738","args":["0x5c","0x80ee3bc","0x773ee78","0x76ffedd8","0x95dc744","0x5c","0x80ee3bc","0x206","0x3","0x7bc535c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x80ee3bc","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 eb d7 ca b4 9d 31 17 47 a1 54 00 8e 7b b2 f4 e4 bb 02 36 11 33 b5 7d 4c 84 3e f7 50"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7bc535c","hex":"70 37 15"}],"time":"2026-04-25T20:15:55.300Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:15:55.301Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95dc738","args":["0xc2","0x80ad97c","0x773ee78","0x76ffedd8","0x95dc744","0xc2","0x80ad97c","0x206","0x3","0x7bc535c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":194,"ptr":"0x80ad97c","hex":"c2 00 00 00 01 00 94 00 00 00 00 00 00 00 7c 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 eb d7 ca b4 9d 31 17 47 a1 54 00 8e 7b b2 f4 e4 bb 02 36 11 33 b5 7d 4c 84 3e f7 50 12 97 5c 22 03 00 00 00 03 00 00 00 c0 00 b0 bc cc a8 7e d4 dc 01 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f2 3f 00 00 00 00 00 00 02 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 80 12 40 00 00 00 00 00 00 17 40 00 00 00 00 00 80 1b 40 00 00 00 00 00 00 1c 40 00 00 00 00 00 40 20 40 00 00 00 00 00 80 22 40 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7bc535c","hex":"70 37 15"}],"time":"2026-04-25T20:15:55.304Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:15:55.305Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0xf3ee6c","args":["0x6228ff0","0x1","0x1","0x2005","0x0","0xaba36c8","0x0","0x7","0x0","0xfbbbbbbc","0x40e6872a","0x1","0x6331a2d6"],"time":"2026-04-25T20:15:56.174Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:15:56.176Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x95dc738","0x1","0x1","0x2","0x2","0x0","0x7e","0x96ba160","0xf3eb60","0x351b9931"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":126,"ptr":"0x96ba160","hex":"37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f8 3f 00 00 00 00 00 00 04 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 00 12 40 00 00 00 00 00 00 16 40 00 00 00 00 00 00 1a 40 00 00 00 00 00 00 1e 40 00 00 00 00 00 00 21 40 00 00 00 00 00 00 23 40 00 00 00 00 00 00 25 40 00 00 80 05 6c 08 ad d4 dc 01 42 52 af 0b 01 00 00 00"}],"time":"2026-04-25T20:15:56.229Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x95dc738","args":["0x1","0x1","0x2","0xac","0xa8cc020","0x8fe890b8","0x95d77f4","0x95d77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":172,"ptr":"0xa8cc020","hex":"01 00 7e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f8 3f 00 00 00 00 00 00 04 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 00 12 40 00 00 00 00 00 00 16 40 00 00 00 00 00 00 1a 40 00 00 00 00 00 00 1e 40 00 00 00 00 00 00 21 40 00 00 00 00 00 00 23 40 00 00 00 00 00 00 25 40 00 00 80 05 6c 08 ad d4 dc 01 42 52 af 0b 01 00 00 00"}],"time":"2026-04-25T20:15:56.230Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:15:56.231Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:15:56.231Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95dc738","args":["0x33","0x80ee3bc","0x773ee78","0x76ffedd8","0x95dc744","0x33","0x80ee3bc","0x206","0x3","0x7bc535c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x80ee3bc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7bc535c","hex":"70 37 15"}],"time":"2026-04-25T20:15:56.252Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:15:56.253Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x95dc738","args":["0xae","0x80ad97c","0x773ee78","0x76ffedd8","0x95dc744","0xae","0x80ad97c","0x206","0x3","0x7bc535c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":174,"ptr":"0x80ad97c","hex":"ae 00 00 00 01 00 80 00 00 00 00 00 00 00 7d 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 eb d7 ca b4 9d 31 17 47 a1 54 00 8e 7b b2 f4 e4 03 00 00 00 c0 00 80 05 6c 08 ad d4 dc 01 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f8 3f 00 00 00 00 00 00 04 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 00 12 40 00 00 00 00 00 00 16 40 00 00 00 00 00 00 1a 40 00 00 00 00 00 00 1e 40 00 00 00 00 00 00 21 40 00 00 00 00 00 00 23 40 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7bc535c","hex":"70 37 15"}],"time":"2026-04-25T20:15:56.256Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:15:56.257Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/074-frida-write2-test-double-array-timestamp/harness.log b/captures/074-frida-write2-test-double-array-timestamp/harness.log new file mode 100644 index 0000000..203c3f9 --- /dev/null +++ b/captures/074-frida-write2-test-double-array-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:15:47.8158622+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-074-frida-write2-test-double-array-timestamp","Tags":["TestChildObject.TestDoubleArray[]"],"ItemContext":"","WriteType":"double[]","WriteValue":"1.5;2.5;3.5;4.5;5.5;6.5;7.5;8.5;9.5;10.5","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:14:15","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:15:54.7510142+00:00 mx.register.begin {"ClientName":"MxFridaTrace-074-frida-write2-test-double-array-timestamp"} +2026-04-25T20:15:55.1116960+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:15:55.1126877+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDoubleArray[]"} +2026-04-25T20:15:55.1186996+00:00 mx.additem.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T20:15:55.1197047+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T20:15:55.1226930+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T20:15:56.1703093+00:00 mx.write.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Double[]","Length":10,"Values":["1.5","2.5","3.5","4.5","5.5","6.5","7.5","8.5","9.5","10.5"]},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:14:15"} +2026-04-25T20:15:56.1763304+00:00 mx.write.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:16:00.2196053+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T20:16:00.2205945+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T20:16:00.2205945+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T20:16:00.2205945+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDoubleArray[]","ItemHandle":1} +2026-04-25T20:16:00.2205945+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:16:04.5853708+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:16:04.5923749+00:00 harness.stop {} diff --git a/captures/075-frida-write2-test-datetime-array-timestamp/frida-command.txt b/captures/075-frida-write2-test-datetime-array-timestamp/frida-command.txt new file mode 100644 index 0000000..b67b858 --- /dev/null +++ b/captures/075-frida-write2-test-datetime-array-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestTimeArray[] --type=datetime[] --value=2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00 --user-id=1 --write-time=2026-04-25T08:15:16 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\075-frida-write2-test-datetime-array-timestamp\harness.log --client=MxFridaTrace-075-frida-write2-test-datetime-array-timestamp diff --git a/captures/075-frida-write2-test-datetime-array-timestamp/frida-events.tsv b/captures/075-frida-write2-test-datetime-array-timestamp/frida-events.tsv new file mode 100644 index 0000000..514dbfc --- /dev/null +++ b/captures/075-frida-write2-test-datetime-array-timestamp/frida-events.tsv @@ -0,0 +1,72 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:16:21.986Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:16:21.987Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:16:21.988Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:16:21.989Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:16:21.989Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:16:28.626Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:16:28.627Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:16:28.628Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:16:28.628Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:28.629Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:16:28.629Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:16:28.630Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:16:28.695Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:28.695Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8e6e8 [] +2026-04-25T20:16:28.696Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:28.696Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8e6e8 [] +2026-04-25T20:16:28.727Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:16:28.728Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:16:28.728Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:16:28.729Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:16:28.797Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:16:28.798Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:16:28.798Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ec00 [] +2026-04-25T20:16:28.799Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ebec [] +2026-04-25T20:16:28.799Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:28.799Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8ebec [] +2026-04-25T20:16:28.800Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8d7e8 [] +2026-04-25T20:16:28.800Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8d7e8 [] +2026-04-25T20:16:28.800Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8d7e8 [] +2026-04-25T20:16:28.801Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ec00 [] +2026-04-25T20:16:28.801Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ec00 [] +2026-04-25T20:16:28.802Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8d7b4 [] +2026-04-25T20:16:28.802Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8d7b4 [] +2026-04-25T20:16:28.803Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:16:28.803Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:16:28.805Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xf8edcc "[""0x6228ff0"",""0x1"",""0x1"",""0x1c86faa6"",""0x74794704""]" +2026-04-25T20:16:28.805Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:16:28.806Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8ec4c [] +2026-04-25T20:16:28.806Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:16:28.930Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9660648"",""0xf8ea90"",""0xf55e39b7""]" 0 1 0x2 +2026-04-25T20:16:28.930Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9660648"",""0xf8ea90"",""0xf55e39b7""]" 1 314 0x9660648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00 +2026-04-25T20:16:28.933Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x965c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9ff7020"",""0x16af718f"",""0x9660214"",""0x9660204"",""0x641add04"",""0x0""]" 0 360 0x9ff7020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00 +2026-04-25T20:16:28.933Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:16:28.934Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:16:28.935Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x9e"",""0x9739330"",""0xf8ea90"",""0xf55e39b7""]" 0 2 0x2 +2026-04-25T20:16:28.935Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x965c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x9e"",""0x9739330"",""0xf8ea90"",""0xf55e39b7""]" 1 158 0x9739330 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 40 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 54 00 69 00 6d 00 65 00 41 00 72 00 72 00 61 00 79 00 5b 00 5d 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 66 09 +2026-04-25T20:16:28.936Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x965c738 "[""0x1"",""0x1"",""0x2"",""0xcc"",""0x9ff7020"",""0x16af718f"",""0x97392fc"",""0x97392ec"",""0x641add04"",""0x96575ac""]" 0 204 0x9ff7020 01 00 9e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 40 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 54 00 69 00 6d 00 65 00 41 00 72 00 72 00 61 00 79 00 5b 00 5d 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 66 09 +2026-04-25T20:16:28.937Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:16:28.937Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:16:28.970Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x12b"",""0x13513ec"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x12b"",""0x13513ec"",""0x206"",""0x3"",""0x7c10dd4""]" 0 299 0x13513ec 2b 01 00 00 01 00 fd 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 84 00 00 00 40 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 54 00 69 00 6d 00 65 00 41 00 72 00 72 00 61 00 79 00 5b 00 5d 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 00 00 00 00 0a 00 00 00 ff ff 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 +2026-04-25T20:16:28.970Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x12b"",""0x13513ec"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x12b"",""0x13513ec"",""0x206"",""0x3"",""0x7c10dd4""]" 1 518 0x3 +2026-04-25T20:16:28.970Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x12b"",""0x13513ec"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x12b"",""0x13513ec"",""0x206"",""0x3"",""0x7c10dd4""]" 2 3 0x7c10dd4 48 93 27 +2026-04-25T20:16:28.972Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:28.981Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x2c2"",""0x7bd3fdc"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x2c2"",""0x7bd3fdc"",""0x206"",""0x3"",""0x7c10dd4""]" 0 706 0x7bd3fdc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 f8 49 d9 24 1c 1b 66 43 a4 b5 52 d1 d5 4c 47 35 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:16:28.981Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x2c2"",""0x7bd3fdc"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x2c2"",""0x7bd3fdc"",""0x206"",""0x3"",""0x7c10dd4""]" 1 518 0x3 +2026-04-25T20:16:28.981Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x2c2"",""0x7bd3fdc"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x2c2"",""0x7bd3fdc"",""0x206"",""0x3"",""0x7c10dd4""]" 2 3 0x7c10dd4 48 93 27 +2026-04-25T20:16:28.983Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:28.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x97"",""0x13513ec"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x97"",""0x13513ec"",""0x206"",""0x3"",""0x7c10dd4""]" 0 151 0x13513ec 97 00 00 00 01 00 69 00 00 00 00 00 00 00 80 f6 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 f8 49 d9 24 1c 1b 66 43 a4 b5 52 d1 d5 4c 47 35 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:16:28.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x97"",""0x13513ec"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x97"",""0x13513ec"",""0x206"",""0x3"",""0x7c10dd4""]" 1 518 0x3 +2026-04-25T20:16:28.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x97"",""0x13513ec"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x97"",""0x13513ec"",""0x206"",""0x3"",""0x7c10dd4""]" 2 3 0x7c10dd4 48 93 27 +2026-04-25T20:16:28.987Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:29.861Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0xf8ed9c "[""0x6228ff0"",""0x1"",""0x1"",""0x2007"",""0x0"",""0x8142ae0"",""0x0"",""0x7"",""0x0"",""0x1845c8a"",""0x40e6872b"",""0x1"",""0x1c86faa6""]" +2026-04-25T20:16:29.863Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:16:32.716Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x84"",""0x7bd3fdc"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x84"",""0x7bd3fdc"",""0x206"",""0x3"",""0x7c10dd4""]" 0 132 0x7bd3fdc 84 00 00 00 01 00 56 00 00 00 00 00 00 00 91 f6 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 01 00 00 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 20 03 03 60 00 b9 27 c6 f4 4e 88 ee a8 af 65 a4 94 c2 24 01 00 02 00 00 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 20 03 03 60 00 b9 27 c6 f4 4e 88 ee a8 af +2026-04-25T20:16:32.716Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x84"",""0x7bd3fdc"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x84"",""0x7bd3fdc"",""0x206"",""0x3"",""0x7c10dd4""]" 1 518 0x3 +2026-04-25T20:16:32.716Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x84"",""0x7bd3fdc"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x84"",""0x7bd3fdc"",""0x206"",""0x3"",""0x7c10dd4""]" 2 3 0x7c10dd4 48 93 27 +2026-04-25T20:16:32.717Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:16:36.251Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x59"",""0xab20164"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x59"",""0xab20164"",""0x206"",""0x3"",""0x7c10dd4""]" 0 89 0xab20164 59 00 00 00 01 00 2b 00 00 00 00 00 00 00 81 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 03 00 00 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 20 03 79 59 41 65 54 6b 7c 40 99 21 b5 51 +2026-04-25T20:16:36.251Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x59"",""0xab20164"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x59"",""0xab20164"",""0x206"",""0x3"",""0x7c10dd4""]" 1 518 0x3 +2026-04-25T20:16:36.251Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x965c738 "[""0x59"",""0xab20164"",""0x793ec80"",""0x76ffedd8"",""0x965c744"",""0x59"",""0xab20164"",""0x206"",""0x3"",""0x7c10dd4""]" 2 3 0x7c10dd4 48 93 27 +2026-04-25T20:16:36.252Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/075-frida-write2-test-datetime-array-timestamp/frida-exit.txt b/captures/075-frida-write2-test-datetime-array-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/075-frida-write2-test-datetime-array-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/075-frida-write2-test-datetime-array-timestamp/frida.stderr.txt b/captures/075-frida-write2-test-datetime-array-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/075-frida-write2-test-datetime-array-timestamp/frida.stdout.jsonl b/captures/075-frida-write2-test-datetime-array-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..b76296a --- /dev/null +++ b/captures/075-frida-write2-test-datetime-array-timestamp/frida.stdout.jsonl @@ -0,0 +1,75 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestTimeArray[] --type=datetime[] --value=2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00 --user-id=1 --write-time=2026-04-25T08:15:16 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\075-frida-write2-test-datetime-array-timestamp\harness.log --client=MxFridaTrace-075-frida-write2-test-datetime-array-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestTimeArray[] --type=datetime[] --value=2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00 --user-id=1 --write-time=2026-04-25T08:15:16 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\075-frida-write2-test-datetime-array-timestamp\harness.log --client=MxFridaTrace-075-frida-write2-test-datetime-array-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:16:21.986Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:16:21.987Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:16:21.988Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:16:21.989Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:16:21.989Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:16:28.626Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:16:28.627Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:16:28.628Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:16:28.628Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:16:28.629Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:16:28.629Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:16:28.630Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8e6e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:16:28.695Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8e6e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf8e6e8","time":"2026-04-25T20:16:28.695Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8e6e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:16:28.696Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8e6e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf8e6e8","time":"2026-04-25T20:16:28.696Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:16:28.727Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:16:28.728Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:16:28.728Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:16:28.729Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:16:28.797Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9660588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestTimeArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x972dc70","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b0 de 72 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 70 dc 72 09 14 18 25 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 65 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 9c 13 36 01 00 00 00 00"},"time":"2026-04-25T20:16:28.798Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8ec00","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xf8ec00","time":"2026-04-25T20:16:28.798Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8ebec","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xf8ebec","time":"2026-04-25T20:16:28.799Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8ebec","inWords":[65537,327682,55094,0,0,0],"time":"2026-04-25T20:16:28.799Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8ebec","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8ebec","time":"2026-04-25T20:16:28.799Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8d7e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8d7e8","time":"2026-04-25T20:16:28.800Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8d7e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8d7e8","time":"2026-04-25T20:16:28.800Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8d7e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8d7e8","time":"2026-04-25T20:16:28.800Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8ec00","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8ec00","time":"2026-04-25T20:16:28.801Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8ec00","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8ec00","time":"2026-04-25T20:16:28.801Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8d7b4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8d7b4","time":"2026-04-25T20:16:28.802Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96605d8","outPtr":"0xf8d7b4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8d7b4","time":"2026-04-25T20:16:28.802Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9660588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestTimeArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x972dc70","status":2,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 01 67 00 43 03 00 00 00 b0 de 72 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 70 dc 72 09 14 18 25 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 65 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 9c 13 36 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:16:28.803Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:16:28.803Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xf8edcc","args":["0x6228ff0","0x1","0x1","0x1c86faa6","0x74794704"],"time":"2026-04-25T20:16:28.805Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9657010","outPtr":"0xf8ec4c","inWords":[65537,327682,55094,0,0,0],"time":"2026-04-25T20:16:28.805Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8ec4c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xf8ec4c","time":"2026-04-25T20:16:28.806Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:16:28.806Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x965c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9660648","0xf8ea90","0xf55e39b7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9660648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:16:28.930Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x965c738","args":["0x1","0x1","0x1","0x168","0x9ff7020","0x16af718f","0x9660214","0x9660204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9ff7020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 65 09 1f 01 00 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 66 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:16:28.933Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:16:28.933Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:16:28.934Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x965c738","0x1","0x1","0x2","0x2","0x0","0x9e","0x9739330","0xf8ea90","0xf55e39b7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":158,"ptr":"0x9739330","hex":"01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 40 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 54 00 69 00 6d 00 65 00 41 00 72 00 72 00 61 00 79 00 5b 00 5d 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 66 09"}],"time":"2026-04-25T20:16:28.935Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x965c738","args":["0x1","0x1","0x2","0xcc","0x9ff7020","0x16af718f","0x97392fc","0x97392ec","0x641add04","0x96575ac"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":204,"ptr":"0x9ff7020","hex":"01 00 9e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 84 00 00 00 40 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 54 00 69 00 6d 00 65 00 41 00 72 00 72 00 61 00 79 00 5b 00 5d 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 66 09"}],"time":"2026-04-25T20:16:28.936Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:16:28.937Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:16:28.937Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x12b","0x13513ec","0x793ec80","0x76ffedd8","0x965c744","0x12b","0x13513ec","0x206","0x3","0x7c10dd4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":299,"ptr":"0x13513ec","hex":"2b 01 00 00 01 00 fd 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 84 00 00 00 40 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 54 00 69 00 6d 00 65 00 41 00 72 00 72 00 61 00 79 00 5b 00 5d 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 00 00 00 00 0a 00 00 00 ff ff 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c10dd4","hex":"48 93 27"}],"time":"2026-04-25T20:16:28.970Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:28.972Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x2c2","0x7bd3fdc","0x793ec80","0x76ffedd8","0x965c744","0x2c2","0x7bd3fdc","0x206","0x3","0x7c10dd4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7bd3fdc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 f8 49 d9 24 1c 1b 66 43 a4 b5 52 d1 d5 4c 47 35 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c10dd4","hex":"48 93 27"}],"time":"2026-04-25T20:16:28.981Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:28.983Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x97","0x13513ec","0x793ec80","0x76ffedd8","0x965c744","0x97","0x13513ec","0x206","0x3","0x7c10dd4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x13513ec","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 80 f6 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 f8 49 d9 24 1c 1b 66 43 a4 b5 52 d1 d5 4c 47 35 5a b1 96 ff 52 10 9b 49 b0 4a d8 d9 2b 66 15 f1 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c10dd4","hex":"48 93 27"}],"time":"2026-04-25T20:16:28.985Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:28.987Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0xf8ed9c","args":["0x6228ff0","0x1","0x1","0x2007","0x0","0x8142ae0","0x0","0x7","0x0","0x1845c8a","0x40e6872b","0x1","0x1c86faa6"],"time":"2026-04-25T20:16:29.861Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:16:29.863Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x84","0x7bd3fdc","0x793ec80","0x76ffedd8","0x965c744","0x84","0x7bd3fdc","0x206","0x3","0x7c10dd4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":132,"ptr":"0x7bd3fdc","hex":"84 00 00 00 01 00 56 00 00 00 00 00 00 00 91 f6 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 01 00 00 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 20 03 03 60 00 b9 27 c6 f4 4e 88 ee a8 af 65 a4 94 c2 24 01 00 02 00 00 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 20 03 03 60 00 b9 27 c6 f4 4e 88 ee a8 af"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c10dd4","hex":"48 93 27"}],"time":"2026-04-25T20:16:32.716Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:32.717Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x965c738","args":["0x59","0xab20164","0x793ec80","0x76ffedd8","0x965c744","0x59","0xab20164","0x206","0x3","0x7c10dd4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":89,"ptr":"0xab20164","hex":"59 00 00 00 01 00 2b 00 00 00 00 00 00 00 81 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 03 00 00 00 f6 8a a0 1a 92 86 23 41 89 29 ea d9 6c b4 b8 b3 01 00 20 03 79 59 41 65 54 6b 7c 40 99 21 b5 51"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c10dd4","hex":"48 93 27"}],"time":"2026-04-25T20:16:36.251Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:16:36.252Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/075-frida-write2-test-datetime-array-timestamp/harness.log b/captures/075-frida-write2-test-datetime-array-timestamp/harness.log new file mode 100644 index 0000000..f19513f --- /dev/null +++ b/captures/075-frida-write2-test-datetime-array-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:16:21.9046330+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-075-frida-write2-test-datetime-array-timestamp","Tags":["TestChildObject.TestTimeArray[]"],"ItemContext":"","WriteType":"datetime[]","WriteValue":"2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:15:16","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:16:28.4371732+00:00 mx.register.begin {"ClientName":"MxFridaTrace-075-frida-write2-test-datetime-array-timestamp"} +2026-04-25T20:16:28.7951756+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:16:28.7951756+00:00 mx.additem.begin {"Tag":"TestChildObject.TestTimeArray[]"} +2026-04-25T20:16:28.8031054+00:00 mx.additem.end {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1} +2026-04-25T20:16:28.8041177+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1} +2026-04-25T20:16:28.8061156+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1} +2026-04-25T20:16:29.8572553+00:00 mx.write.begin {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["4/25/2026 9:00:00 AM","4/25/2026 9:01:00 AM","4/25/2026 9:02:00 AM","4/25/2026 9:03:00 AM","4/25/2026 9:04:00 AM","4/25/2026 9:05:00 AM","4/25/2026 9:06:00 AM","4/25/2026 9:07:00 AM","4/25/2026 9:08:00 AM","4/25/2026 9:09:00 AM"]},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:15:16"} +2026-04-25T20:16:29.8631960+00:00 mx.write.end {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:16:33.9019100+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1} +2026-04-25T20:16:33.9029091+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1} +2026-04-25T20:16:33.9029091+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1} +2026-04-25T20:16:33.9029091+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestTimeArray[]","ItemHandle":1} +2026-04-25T20:16:33.9029091+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:16:37.4210315+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:16:37.4280297+00:00 harness.stop {} diff --git a/captures/076-frida-write2-test-datetime-array-timestamp/frida-command.txt b/captures/076-frida-write2-test-datetime-array-timestamp/frida-command.txt new file mode 100644 index 0000000..002e99b --- /dev/null +++ b/captures/076-frida-write2-test-datetime-array-timestamp/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write2 --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00 --user-id=1 --write-time=2026-04-25T08:15:16 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\076-frida-write2-test-datetime-array-timestamp\harness.log --client=MxFridaTrace-076-frida-write2-test-datetime-array-timestamp diff --git a/captures/076-frida-write2-test-datetime-array-timestamp/frida-events.tsv b/captures/076-frida-write2-test-datetime-array-timestamp/frida-events.tsv new file mode 100644 index 0000000..0871031 --- /dev/null +++ b/captures/076-frida-write2-test-datetime-array-timestamp/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:17:40.194Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:17:40.195Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:17:40.195Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:17:40.196Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:17:40.196Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:17:46.750Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:17:46.751Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:17:46.751Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:17:46.752Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:17:46.752Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:17:46.753Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:17:46.753Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:17:46.851Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:17:46.852Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:17:46.852Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:17:46.853Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:17:46.880Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:17:46.880Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x116e548 [] +2026-04-25T20:17:46.881Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:17:46.881Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x116e548 [] +2026-04-25T20:17:46.971Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:17:46.972Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x116eac8 [] +2026-04-25T20:17:46.973Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:17:46.973Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x116ea58 [] +2026-04-25T20:17:46.973Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x116ea58 [] +2026-04-25T20:17:46.974Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x116ea58 [] +2026-04-25T20:17:46.975Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:17:46.975Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:17:46.977Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x116ec2c "[""0x6458ff0"",""0x1"",""0x1"",""0x47a4689a"",""0x74794704""]" +2026-04-25T20:17:46.977Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:17:46.977Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x116eaac [] +2026-04-25T20:17:46.978Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:17:46.978Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x116d740 [] +2026-04-25T20:17:46.978Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:17:47.100Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x983c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9840648"",""0x116e8f0"",""0x1129db16""]" 0 1 0x2 +2026-04-25T20:17:47.100Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x983c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9840648"",""0x116e8f0"",""0x1129db16""]" 1 314 0x9840648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 83 09 1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 84 09 20 01 00 02 00 00 00 +2026-04-25T20:17:47.103Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x983c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa9df020"",""0xcdda3bcb"",""0x9840214"",""0x9840204"",""0x641add04"",""0x0""]" 0 360 0xa9df020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 83 09 1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 84 09 20 01 00 02 00 00 00 +2026-04-25T20:17:47.104Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:17:47.105Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:17:47.106Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x983c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x990e7b0"",""0x116e8f0"",""0x1129db16""]" 0 2 0x2 +2026-04-25T20:17:47.106Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x983c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x990e7b0"",""0x116e8f0"",""0x1129db16""]" 1 39 0x990e7b0 1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00 +2026-04-25T20:17:47.107Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x983c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa9df020"",""0xcdda3bcb"",""0x9919634"",""0x9919624"",""0x641add04"",""0x0""]" 0 85 0xa9df020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00 +2026-04-25T20:17:47.108Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:17:47.109Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:17:47.118Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x5c"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x5c"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 0 92 0x835021c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 cc 92 9c f1 1a fe fa 43 b8 4c 78 14 08 d5 72 24 24 09 15 1f 01 0d a3 40 ad 66 44 f1 +2026-04-25T20:17:47.118Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x5c"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x5c"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 1 518 0x3 +2026-04-25T20:17:47.118Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x5c"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x5c"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 2 3 0x7e3a2c4 f0 a0 4c +2026-04-25T20:17:47.120Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:17:47.123Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0xea"",""0x173e3ec"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0xea"",""0x173e3ec"",""0x206"",""0x3"",""0x7e3a2c4""]" 0 234 0x173e3ec ea 00 00 00 01 00 bc 00 00 00 00 00 00 00 83 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 cc 92 9c f1 1a fe fa 43 b8 4c 78 14 08 d5 72 24 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 03 00 00 00 03 00 00 00 c0 00 40 85 bb 06 7f d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 58 f7 21 81 d4 dc 01 00 00 00 00 00 9e ba 45 81 d4 dc 01 00 00 00 00 00 e4 7d 69 81 d4 dc 01 00 00 00 00 00 2a 41 8d 81 d4 dc 01 00 00 00 00 00 70 04 b1 81 d4 dc 01 00 00 00 00 00 b6 c7 d4 81 d4 dc 01 00 00 00 00 00 fc 8a f8 81 d4 dc 01 00 00 00 00 00 42 4e 1c 82 d4 dc 01 00 00 00 00 00 88 11 40 82 d4 dc 01 00 00 00 00 00 ce d4 63 82 d4 dc 01 +2026-04-25T20:17:47.123Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0xea"",""0x173e3ec"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0xea"",""0x173e3ec"",""0x206"",""0x3"",""0x7e3a2c4""]" 1 518 0x3 +2026-04-25T20:17:47.123Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0xea"",""0x173e3ec"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0xea"",""0x173e3ec"",""0x206"",""0x3"",""0x7e3a2c4""]" 2 3 0x7e3a2c4 f0 a0 4c +2026-04-25T20:17:47.125Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:17:47.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x2c2"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x2c2"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 0 706 0x835021c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 56 17 5c b1 75 a4 64 45 91 76 8a 77 fb 55 74 8a 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:17:47.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x2c2"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x2c2"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 1 518 0x3 +2026-04-25T20:17:47.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x2c2"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x2c2"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 2 3 0x7e3a2c4 f0 a0 4c +2026-04-25T20:17:47.164Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:17:47.167Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x97"",""0x173e3ec"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x97"",""0x173e3ec"",""0x206"",""0x3"",""0x7e3a2c4""]" 0 151 0x173e3ec 97 00 00 00 01 00 69 00 00 00 00 00 00 00 c0 f7 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 56 17 5c b1 75 a4 64 45 91 76 8a 77 fb 55 74 8a 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:17:47.167Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x97"",""0x173e3ec"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x97"",""0x173e3ec"",""0x206"",""0x3"",""0x7e3a2c4""]" 1 518 0x3 +2026-04-25T20:17:47.167Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x97"",""0x173e3ec"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x97"",""0x173e3ec"",""0x206"",""0x3"",""0x7e3a2c4""]" 2 3 0x7e3a2c4 f0 a0 4c +2026-04-25T20:17:47.168Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:17:48.032Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantB 0x116ebfc "[""0x6458ff0"",""0x1"",""0x1"",""0x2007"",""0x0"",""0x83b0618"",""0x0"",""0x7"",""0x0"",""0x1845c8a"",""0x40e6872b"",""0x1"",""0x47a4689a""]" +2026-04-25T20:17:48.033Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantB 0x0 [] +2026-04-25T20:17:48.087Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x983c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x254"",""0x991a4e0"",""0x116e8f0"",""0x1129db16""]" 0 2 0x2 +2026-04-25T20:17:48.087Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x983c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x254"",""0x991a4e0"",""0x116e8f0"",""0x1129db16""]" 1 596 0x991a4e0 37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 34 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 35 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 36 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 37 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 38 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 39 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 00 00 00 e2 c7 2c ad d4 dc 01 35 07 b1 0b 01 00 00 00 +2026-04-25T20:17:48.090Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x983c738 "[""0x1"",""0x1"",""0x2"",""0x282"",""0xa9df020"",""0xcdda3bcb"",""0x9919a8c"",""0x9919a7c"",""0x641add04"",""0x0""]" 0 642 0xa9df020 01 00 54 02 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 34 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 35 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 36 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 37 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 38 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 39 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 00 00 00 e2 c7 2c ad d4 dc 01 35 07 b1 0b 01 00 00 00 +2026-04-25T20:17:48.091Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:17:48.092Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:17:48.100Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x33"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x33"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 0 51 0x835021c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:17:48.100Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x33"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x33"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 1 518 0x3 +2026-04-25T20:17:48.100Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0x33"",""0x835021c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0x33"",""0x835021c"",""0x206"",""0x3"",""0x7e3a2c4""]" 2 3 0x7e3a2c4 f0 a0 4c +2026-04-25T20:17:48.101Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:17:48.104Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0xd6"",""0xadd347c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0xd6"",""0xadd347c"",""0x206"",""0x3"",""0x7e3a2c4""]" 0 214 0xadd347c d6 00 00 00 01 00 a8 00 00 00 00 00 00 00 84 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 cc 92 9c f1 1a fe fa 43 b8 4c 78 14 08 d5 72 24 03 00 00 00 c0 00 00 e2 c7 2c ad d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 c8 91 6c b3 d4 dc 01 00 00 00 00 00 0e 55 90 b3 d4 dc 01 00 00 00 00 00 54 18 b4 b3 d4 dc 01 00 00 00 00 00 9a db d7 b3 d4 dc 01 00 00 00 00 00 e0 9e fb b3 d4 dc 01 00 00 00 00 00 26 62 1f b4 d4 dc 01 00 00 00 00 00 6c 25 43 b4 d4 dc 01 00 00 00 00 00 b2 e8 66 b4 d4 dc 01 00 00 00 00 00 f8 ab 8a b4 d4 dc 01 00 00 00 00 00 3e 6f ae b4 d4 dc 01 +2026-04-25T20:17:48.104Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0xd6"",""0xadd347c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0xd6"",""0xadd347c"",""0x206"",""0x3"",""0x7e3a2c4""]" 1 518 0x3 +2026-04-25T20:17:48.104Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x983c738 "[""0xd6"",""0xadd347c"",""0x7b6eda0"",""0x76ffedd8"",""0x983c744"",""0xd6"",""0xadd347c"",""0x206"",""0x3"",""0x7e3a2c4""]" 2 3 0x7e3a2c4 f0 a0 4c +2026-04-25T20:17:48.105Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/076-frida-write2-test-datetime-array-timestamp/frida-exit.txt b/captures/076-frida-write2-test-datetime-array-timestamp/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/076-frida-write2-test-datetime-array-timestamp/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/076-frida-write2-test-datetime-array-timestamp/frida.stderr.txt b/captures/076-frida-write2-test-datetime-array-timestamp/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/076-frida-write2-test-datetime-array-timestamp/frida.stdout.jsonl b/captures/076-frida-write2-test-datetime-array-timestamp/frida.stdout.jsonl new file mode 100644 index 0000000..1e99a7a --- /dev/null +++ b/captures/076-frida-write2-test-datetime-array-timestamp/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00 --user-id=1 --write-time=2026-04-25T08:15:16 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\076-frida-write2-test-datetime-array-timestamp\harness.log --client=MxFridaTrace-076-frida-write2-test-datetime-array-timestamp`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write2 --tag=TestChildObject.TestDateTimeArray[] --type=datetime[] --value=2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00 --user-id=1 --write-time=2026-04-25T08:15:16 --write-delay-ms=1000 --duration=4 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\076-frida-write2-test-datetime-array-timestamp\harness.log --client=MxFridaTrace-076-frida-write2-test-datetime-array-timestamp`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:17:40.194Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:17:40.195Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:17:40.195Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:17:40.196Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:17:40.196Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:17:46.750Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:17:46.751Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:17:46.751Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:17:46.752Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:17:46.752Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:17:46.753Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:17:46.753Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:17:46.851Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:17:46.852Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:17:46.852Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:17:46.853Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9837010","outPtr":"0x116e548","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:17:46.880Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x116e548","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x116e548","time":"2026-04-25T20:17:46.880Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9837010","outPtr":"0x116e548","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:17:46.881Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x116e548","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x116e548","time":"2026-04-25T20:17:46.881Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:17:46.971Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x98e2788","outPtr":"0x116eac8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655521,"w4":4294958875},"retval":"0x116eac8","time":"2026-04-25T20:17:46.972Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9840588","referenceString":{"length":35,"capacity":39,"value":"TestChildObject.TestDateTimeArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x990e2e8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 91 09 00 65 00 00 00 02 00 00 00 00 00 02 23 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e8 e2 90 09 8c 59 4b 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 83 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 7c fe 6e 01 00 00 00 00"},"time":"2026-04-25T20:17:46.973Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x98405d8","outPtr":"0x116ea58","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655521,"w4":4294958875},"retval":"0x116ea58","time":"2026-04-25T20:17:46.973Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x98405d8","outPtr":"0x116ea58","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655521,"w4":4294958875},"retval":"0x116ea58","time":"2026-04-25T20:17:46.973Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x98405d8","outPtr":"0x116ea58","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655521,"w4":4294958875},"retval":"0x116ea58","time":"2026-04-25T20:17:46.974Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9840588","referenceString":{"length":35,"capacity":39,"value":"TestChildObject.TestDateTimeArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x990e2e8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 91 09 00 65 00 00 00 02 00 00 00 00 00 02 23 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e8 e2 90 09 8c 59 4b 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 83 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 7c fe 6e 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:17:46.975Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:17:46.975Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x116ec2c","args":["0x6458ff0","0x1","0x1","0x47a4689a","0x74794704"],"time":"2026-04-25T20:17:46.977Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9837010","outPtr":"0x116eaac","inWords":[65537,327682,186166,655521,4294958875,0],"time":"2026-04-25T20:17:46.977Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x116eaac","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655521,"w4":4294958875},"retval":"0x116eaac","time":"2026-04-25T20:17:46.977Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9837010","outPtr":"0x116d740","inWords":[65537,327682,186166,655521,4294958875,0],"time":"2026-04-25T20:17:46.978Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x116d740","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655521,"w4":4294958875},"retval":"0x116d740","time":"2026-04-25T20:17:46.978Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:17:46.978Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x983c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9840648","0x116e8f0","0x1129db16"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9840648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 83 09 1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 84 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:17:47.100Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x983c738","args":["0x1","0x1","0x1","0x168","0xa9df020","0xcdda3bcb","0x9840214","0x9840204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa9df020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 83 09 1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 84 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:17:47.103Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:17:47.104Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:17:47.105Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x983c738","0x1","0x1","0x2","0x2","0x0","0x27","0x990e7b0","0x116e8f0","0x1129db16"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x990e7b0","hex":"1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T20:17:47.106Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x983c738","args":["0x1","0x1","0x2","0x55","0xa9df020","0xcdda3bcb","0x9919634","0x9919624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa9df020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 00 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 03 00 00 00"}],"time":"2026-04-25T20:17:47.107Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:17:47.108Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:17:47.109Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x983c738","args":["0x5c","0x835021c","0x7b6eda0","0x76ffedd8","0x983c744","0x5c","0x835021c","0x206","0x3","0x7e3a2c4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x835021c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 cc 92 9c f1 1a fe fa 43 b8 4c 78 14 08 d5 72 24 24 09 15 1f 01 0d a3 40 ad 66 44 f1"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e3a2c4","hex":"f0 a0 4c"}],"time":"2026-04-25T20:17:47.118Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:17:47.120Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x983c738","args":["0xea","0x173e3ec","0x7b6eda0","0x76ffedd8","0x983c744","0xea","0x173e3ec","0x206","0x3","0x7e3a2c4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":234,"ptr":"0x173e3ec","hex":"ea 00 00 00 01 00 bc 00 00 00 00 00 00 00 83 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 cc 92 9c f1 1a fe fa 43 b8 4c 78 14 08 d5 72 24 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 03 00 00 00 03 00 00 00 c0 00 40 85 bb 06 7f d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 58 f7 21 81 d4 dc 01 00 00 00 00 00 9e ba 45 81 d4 dc 01 00 00 00 00 00 e4 7d 69 81 d4 dc 01 00 00 00 00 00 2a 41 8d 81 d4 dc 01 00 00 00 00 00 70 04 b1 81 d4 dc 01 00 00 00 00 00 b6 c7 d4 81 d4 dc 01 00 00 00 00 00 fc 8a f8 81 d4 dc 01 00 00 00 00 00 42 4e 1c 82 d4 dc 01 00 00 00 00 00 88 11 40 82 d4 dc 01 00 00 00 00 00 ce d4 63 82 d4 dc 01"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e3a2c4","hex":"f0 a0 4c"}],"time":"2026-04-25T20:17:47.123Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:17:47.125Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x983c738","args":["0x2c2","0x835021c","0x7b6eda0","0x76ffedd8","0x983c744","0x2c2","0x835021c","0x206","0x3","0x7e3a2c4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x835021c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 56 17 5c b1 75 a4 64 45 91 76 8a 77 fb 55 74 8a 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e3a2c4","hex":"f0 a0 4c"}],"time":"2026-04-25T20:17:47.163Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:17:47.164Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x983c738","args":["0x97","0x173e3ec","0x7b6eda0","0x76ffedd8","0x983c744","0x97","0x173e3ec","0x206","0x3","0x7e3a2c4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x173e3ec","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 c0 f7 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 56 17 5c b1 75 a4 64 45 91 76 8a 77 fb 55 74 8a 24 09 15 1f 01 0d a3 40 ad 66 44 f1 cd a6 01 18 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e3a2c4","hex":"f0 a0 4c"}],"time":"2026-04-25T20:17:47.167Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:17:47.168Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","address":"0x65a53280","ecx":"0x116ebfc","args":["0x6458ff0","0x1","0x1","0x2007","0x0","0x83b0618","0x0","0x7","0x0","0x1845c8a","0x40e6872b","0x1","0x47a4689a"],"time":"2026-04-25T20:17:48.032Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","retval":"0x0","time":"2026-04-25T20:17:48.033Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x983c738","0x1","0x1","0x2","0x2","0x0","0x254","0x991a4e0","0x116e8f0","0x1129db16"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":596,"ptr":"0x991a4e0","hex":"37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 34 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 35 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 36 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 37 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 38 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 39 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 00 00 00 e2 c7 2c ad d4 dc 01 35 07 b1 0b 01 00 00 00"}],"time":"2026-04-25T20:17:48.087Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x983c738","args":["0x1","0x1","0x2","0x282","0xa9df020","0xcdda3bcb","0x9919a8c","0x9919a7c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":642,"ptr":"0xa9df020","hex":"01 00 54 02 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 34 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 35 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 36 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 37 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 38 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 39 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 00 00 00 e2 c7 2c ad d4 dc 01 35 07 b1 0b 01 00 00 00"}],"time":"2026-04-25T20:17:48.090Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:17:48.091Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:17:48.092Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x983c738","args":["0x33","0x835021c","0x7b6eda0","0x76ffedd8","0x983c744","0x33","0x835021c","0x206","0x3","0x7e3a2c4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x835021c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e3a2c4","hex":"f0 a0 4c"}],"time":"2026-04-25T20:17:48.100Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:17:48.101Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x983c738","args":["0xd6","0xadd347c","0x7b6eda0","0x76ffedd8","0x983c744","0xd6","0xadd347c","0x206","0x3","0x7e3a2c4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":214,"ptr":"0xadd347c","hex":"d6 00 00 00 01 00 a8 00 00 00 00 00 00 00 84 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 cc 92 9c f1 1a fe fa 43 b8 4c 78 14 08 d5 72 24 03 00 00 00 c0 00 00 e2 c7 2c ad d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 c8 91 6c b3 d4 dc 01 00 00 00 00 00 0e 55 90 b3 d4 dc 01 00 00 00 00 00 54 18 b4 b3 d4 dc 01 00 00 00 00 00 9a db d7 b3 d4 dc 01 00 00 00 00 00 e0 9e fb b3 d4 dc 01 00 00 00 00 00 26 62 1f b4 d4 dc 01 00 00 00 00 00 6c 25 43 b4 d4 dc 01 00 00 00 00 00 b2 e8 66 b4 d4 dc 01 00 00 00 00 00 f8 ab 8a b4 d4 dc 01 00 00 00 00 00 3e 6f ae b4 d4 dc 01"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7e3a2c4","hex":"f0 a0 4c"}],"time":"2026-04-25T20:17:48.104Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:17:48.105Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/076-frida-write2-test-datetime-array-timestamp/harness.log b/captures/076-frida-write2-test-datetime-array-timestamp/harness.log new file mode 100644 index 0000000..d61eaba --- /dev/null +++ b/captures/076-frida-write2-test-datetime-array-timestamp/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:17:40.1009160+00:00 harness.start {"Scenario":"write2","ClientName":"MxFridaTrace-076-frida-write2-test-datetime-array-timestamp","Tags":["TestChildObject.TestDateTimeArray[]"],"ItemContext":"","WriteType":"datetime[]","WriteValue":"2026-04-25T09:00:00;2026-04-25T09:01:00;2026-04-25T09:02:00;2026-04-25T09:03:00;2026-04-25T09:04:00;2026-04-25T09:05:00;2026-04-25T09:06:00;2026-04-25T09:07:00;2026-04-25T09:08:00;2026-04-25T09:09:00","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"2026-04-25T08:15:16","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":4,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:17:46.6270688+00:00 mx.register.begin {"ClientName":"MxFridaTrace-076-frida-write2-test-datetime-array-timestamp"} +2026-04-25T20:17:46.9696267+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:17:46.9706249+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDateTimeArray[]"} +2026-04-25T20:17:46.9756050+00:00 mx.additem.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T20:17:46.9766035+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T20:17:46.9786757+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T20:17:48.0283514+00:00 mx.write.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.DateTime[]","Length":10,"Values":["4/25/2026 9:00:00 AM","4/25/2026 9:01:00 AM","4/25/2026 9:02:00 AM","4/25/2026 9:03:00 AM","4/25/2026 9:04:00 AM","4/25/2026 9:05:00 AM","4/25/2026 9:06:00 AM","4/25/2026 9:07:00 AM","4/25/2026 9:08:00 AM","4/25/2026 9:09:00 AM"]},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":"2026-04-25T08:15:16"} +2026-04-25T20:17:48.0333520+00:00 mx.write.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:17:52.0770063+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T20:17:52.0770063+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T20:17:52.0770063+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T20:17:52.0770063+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDateTimeArray[]","ItemHandle":1} +2026-04-25T20:17:52.0770063+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:17:55.9242389+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:17:55.9308882+00:00 harness.stop {} diff --git a/captures/077-frida-suspend-advised-scanstate/frida-command.txt b/captures/077-frida-suspend-advised-scanstate/frida-command.txt new file mode 100644 index 0000000..dd59c46 --- /dev/null +++ b/captures/077-frida-suspend-advised-scanstate/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=suspend-advised --tag=TestChildObject.ScanState --write-delay-ms=1000 --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\077-frida-suspend-advised-scanstate\harness.log --client=MxFridaTrace-077-frida-suspend-advised-scanstate diff --git a/captures/077-frida-suspend-advised-scanstate/frida-events.tsv b/captures/077-frida-suspend-advised-scanstate/frida-events.tsv new file mode 100644 index 0000000..3f75cf4 --- /dev/null +++ b/captures/077-frida-suspend-advised-scanstate/frida-events.tsv @@ -0,0 +1,61 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:24:11.739Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:24:11.740Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:24:11.741Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:24:11.741Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:24:11.741Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:24:18.388Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:24:18.388Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:24:18.389Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:24:18.389Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:18.390Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:24:18.390Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:24:18.391Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:24:18.489Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:24:18.490Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:24:18.490Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:24:18.491Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:24:18.491Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:18.492Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafea90 [] +2026-04-25T20:24:18.493Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:18.493Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafea90 [] +2026-04-25T20:24:18.584Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:24:18.585Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xaff00c [] +2026-04-25T20:24:18.586Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:24:18.586Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafef9c [] +2026-04-25T20:24:18.587Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafef9c [] +2026-04-25T20:24:18.587Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafef9c [] +2026-04-25T20:24:18.588Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:24:18.588Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:24:18.590Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xaff15c "[""0x5e28ff0"",""0x1"",""0x1"",""0x57579f0"",""0x74794704""]" +2026-04-25T20:24:18.590Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:18.591Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafefdc [] +2026-04-25T20:24:18.591Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:18.592Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafdc70 [] +2026-04-25T20:24:18.592Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:24:18.716Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x913c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9140648"",""0xafee20"",""0xff237061""]" 0 1 0x2 +2026-04-25T20:24:18.716Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x913c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9140648"",""0xafee20"",""0xff237061""]" 1 314 0x9140648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 13 09 1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 14 09 20 01 00 02 00 00 00 +2026-04-25T20:24:18.719Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x913c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9ad2020"",""0xff49ec4"",""0x9140214"",""0x9140204"",""0x641add04"",""0x0""]" 0 360 0x9ad2020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 13 09 1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 14 09 20 01 00 02 00 00 00 +2026-04-25T20:24:18.720Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:24:18.720Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:24:18.721Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x913c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x920ca28"",""0xafee20"",""0xff237061""]" 0 2 0x2 +2026-04-25T20:24:18.721Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x913c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x920ca28"",""0xafee20"",""0xff237061""]" 1 39 0x920ca28 1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-25T20:24:18.722Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x913c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9ad2020"",""0xff49ec4"",""0x9219584"",""0x9219574"",""0x641add04"",""0x0""]" 0 85 0x9ad2020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-25T20:24:18.723Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:24:18.723Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:24:18.758Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x5c"",""0xa60568c"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x5c"",""0xa60568c"",""0x206"",""0x3"",""0x776441c""]" 0 92 0xa60568c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 49 35 82 be 8f 42 31 4d 82 3b 00 f2 3f f8 36 69 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e +2026-04-25T20:24:18.758Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x5c"",""0xa60568c"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x5c"",""0xa60568c"",""0x206"",""0x3"",""0x776441c""]" 1 518 0x3 +2026-04-25T20:24:18.758Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x5c"",""0xa60568c"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x5c"",""0xa60568c"",""0x206"",""0x3"",""0x776441c""]" 2 3 0x776441c 28 ad 72 +2026-04-25T20:24:18.761Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:24:18.764Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x69"",""0xa602374"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x69"",""0xa602374"",""0x206"",""0x3"",""0x776441c""]" 0 105 0xa602374 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 8b 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 49 35 82 be 8f 42 31 4d 82 3b 00 f2 3f f8 36 69 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 +2026-04-25T20:24:18.764Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x69"",""0xa602374"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x69"",""0xa602374"",""0x206"",""0x3"",""0x776441c""]" 1 518 0x3 +2026-04-25T20:24:18.764Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x69"",""0xa602374"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x69"",""0xa602374"",""0x206"",""0x3"",""0x776441c""]" 2 3 0x776441c 28 ad 72 +2026-04-25T20:24:18.765Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:24:18.770Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x2c2"",""0xef78a4"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x2c2"",""0xef78a4"",""0x206"",""0x3"",""0x776441c""]" 0 706 0xef78a4 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 e4 e4 6e f4 9a 6d f5 45 82 82 cb d7 10 4f ef 1e ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:24:18.770Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x2c2"",""0xef78a4"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x2c2"",""0xef78a4"",""0x206"",""0x3"",""0x776441c""]" 1 518 0x3 +2026-04-25T20:24:18.770Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x2c2"",""0xef78a4"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x2c2"",""0xef78a4"",""0x206"",""0x3"",""0x776441c""]" 2 3 0x776441c 28 ad 72 +2026-04-25T20:24:18.772Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:24:18.774Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x97"",""0xa60568c"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x97"",""0xa60568c"",""0x206"",""0x3"",""0x776441c""]" 0 151 0xa60568c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 f0 fd 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 e4 e4 6e f4 9a 6d f5 45 82 82 cb d7 10 4f ef 1e ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:24:18.774Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x97"",""0xa60568c"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x97"",""0xa60568c"",""0x206"",""0x3"",""0x776441c""]" 1 518 0x3 +2026-04-25T20:24:18.774Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x913c738 "[""0x97"",""0xa60568c"",""0x74fea18"",""0x76ffedd8"",""0x913c744"",""0x97"",""0xa60568c"",""0x206"",""0x3"",""0x776441c""]" 2 3 0x776441c 28 ad 72 +2026-04-25T20:24:18.775Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/077-frida-suspend-advised-scanstate/frida-exit.txt b/captures/077-frida-suspend-advised-scanstate/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/077-frida-suspend-advised-scanstate/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/077-frida-suspend-advised-scanstate/frida.stderr.txt b/captures/077-frida-suspend-advised-scanstate/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/077-frida-suspend-advised-scanstate/frida.stdout.jsonl b/captures/077-frida-suspend-advised-scanstate/frida.stdout.jsonl new file mode 100644 index 0000000..84d740d --- /dev/null +++ b/captures/077-frida-suspend-advised-scanstate/frida.stdout.jsonl @@ -0,0 +1,66 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=suspend-advised --tag=TestChildObject.ScanState --write-delay-ms=1000 --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\077-frida-suspend-advised-scanstate\harness.log --client=MxFridaTrace-077-frida-suspend-advised-scanstate`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=suspend-advised --tag=TestChildObject.ScanState --write-delay-ms=1000 --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\077-frida-suspend-advised-scanstate\harness.log --client=MxFridaTrace-077-frida-suspend-advised-scanstate`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:24:11.739Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:24:11.740Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:24:11.741Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:24:11.741Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:24:11.741Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:24:18.388Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:24:18.388Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:24:18.389Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:24:18.389Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:24:18.390Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:24:18.390Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:24:18.391Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:24:18.489Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:24:18.490Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:24:18.490Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:24:18.491Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9137010","outPtr":"0xafea90","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:24:18.491Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafea90","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafea90","time":"2026-04-25T20:24:18.492Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9137010","outPtr":"0xafea90","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:24:18.493Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafea90","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafea90","time":"2026-04-25T20:24:18.493Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:24:18.584Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91e2238","outPtr":"0xaff00c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0xaff00c","time":"2026-04-25T20:24:18.585Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9140588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x920c710","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 c6 20 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 c7 20 09 1c bf a8 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 13 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 74 10 ea 00 00 00 00 00"},"time":"2026-04-25T20:24:18.586Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91405d8","outPtr":"0xafef9c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0xafef9c","time":"2026-04-25T20:24:18.586Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91405d8","outPtr":"0xafef9c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0xafef9c","time":"2026-04-25T20:24:18.587Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91405d8","outPtr":"0xafef9c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0xafef9c","time":"2026-04-25T20:24:18.587Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9140588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x920c710","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 c6 20 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 c7 20 09 1c bf a8 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 13 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 74 10 ea 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:24:18.588Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:24:18.588Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xaff15c","args":["0x5e28ff0","0x1","0x1","0x57579f0","0x74794704"],"time":"2026-04-25T20:24:18.590Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9137010","outPtr":"0xafefdc","inWords":[65537,327682,186166,655465,37447,0],"time":"2026-04-25T20:24:18.590Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafefdc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0xafefdc","time":"2026-04-25T20:24:18.591Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9137010","outPtr":"0xafdc70","inWords":[65537,327682,186166,655465,37447,0],"time":"2026-04-25T20:24:18.591Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafdc70","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0xafdc70","time":"2026-04-25T20:24:18.592Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:24:18.592Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x913c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9140648","0xafee20","0xff237061"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9140648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 13 09 1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 14 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:24:18.716Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x913c738","args":["0x1","0x1","0x1","0x168","0x9ad2020","0xff49ec4","0x9140214","0x9140204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9ad2020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 13 09 1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 14 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:24:18.719Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:24:18.720Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:24:18.720Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x913c738","0x1","0x1","0x2","0x2","0x0","0x27","0x920ca28","0xafee20","0xff237061"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x920ca28","hex":"1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-25T20:24:18.721Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x913c738","args":["0x1","0x1","0x2","0x55","0x9ad2020","0xff49ec4","0x9219584","0x9219574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9ad2020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-25T20:24:18.722Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:24:18.723Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:24:18.723Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x913c738","args":["0x5c","0xa60568c","0x74fea18","0x76ffedd8","0x913c744","0x5c","0xa60568c","0x206","0x3","0x776441c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xa60568c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 49 35 82 be 8f 42 31 4d 82 3b 00 f2 3f f8 36 69 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776441c","hex":"28 ad 72"}],"time":"2026-04-25T20:24:18.758Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:18.761Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x913c738","args":["0x69","0xa602374","0x74fea18","0x76ffedd8","0x913c744","0x69","0xa602374","0x206","0x3","0x776441c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0xa602374","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 8b 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 49 35 82 be 8f 42 31 4d 82 3b 00 f2 3f f8 36 69 ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776441c","hex":"28 ad 72"}],"time":"2026-04-25T20:24:18.764Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:18.765Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x913c738","args":["0x2c2","0xef78a4","0x74fea18","0x76ffedd8","0x913c744","0x2c2","0xef78a4","0x206","0x3","0x776441c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xef78a4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 e4 e4 6e f4 9a 6d f5 45 82 82 cb d7 10 4f ef 1e ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776441c","hex":"28 ad 72"}],"time":"2026-04-25T20:24:18.770Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:18.772Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x913c738","args":["0x97","0xa60568c","0x74fea18","0x76ffedd8","0x913c744","0x97","0xa60568c","0x206","0x3","0x776441c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xa60568c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 f0 fd 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 e4 e4 6e f4 9a 6d f5 45 82 82 cb d7 10 4f ef 1e ce b5 c1 06 21 e9 fe 4b 97 5a e1 4e fd 3d ec 7c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776441c","hex":"28 ad 72"}],"time":"2026-04-25T20:24:18.774Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:18.775Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/077-frida-suspend-advised-scanstate/harness.log b/captures/077-frida-suspend-advised-scanstate/harness.log new file mode 100644 index 0000000..f00f9b1 --- /dev/null +++ b/captures/077-frida-suspend-advised-scanstate/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:24:11.6510004+00:00 harness.start {"Scenario":"suspend-advised","ClientName":"MxFridaTrace-077-frida-suspend-advised-scanstate","Tags":["TestChildObject.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:24:18.2243073+00:00 mx.register.begin {"ClientName":"MxFridaTrace-077-frida-suspend-advised-scanstate"} +2026-04-25T20:24:18.5823076+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:24:18.5823076+00:00 mx.additem.begin {"Tag":"TestChildObject.ScanState"} +2026-04-25T20:24:18.5893172+00:00 mx.additem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:18.5893172+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:18.5922369+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:19.6191181+00:00 mx.suspend.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:19.6211126+00:00 mx.suspend.end {"Tag":"TestChildObject.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryPending","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-25T20:24:22.6385129+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:22.6385129+00:00 mx.unadvise.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:22.6385129+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:22.6395135+00:00 mx.removeitem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:22.6395135+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:24:28.1076633+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:24:28.1136626+00:00 harness.stop {} diff --git a/captures/078-frida-activate-advised-scanstate/frida-command.txt b/captures/078-frida-activate-advised-scanstate/frida-command.txt new file mode 100644 index 0000000..52978a6 --- /dev/null +++ b/captures/078-frida-activate-advised-scanstate/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=activate-advised --tag=TestChildObject.ScanState --write-delay-ms=1000 --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\078-frida-activate-advised-scanstate\harness.log --client=MxFridaTrace-078-frida-activate-advised-scanstate diff --git a/captures/078-frida-activate-advised-scanstate/frida-events.tsv b/captures/078-frida-activate-advised-scanstate/frida-events.tsv new file mode 100644 index 0000000..433732e --- /dev/null +++ b/captures/078-frida-activate-advised-scanstate/frida-events.tsv @@ -0,0 +1,66 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:24:11.740Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:24:11.740Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:24:11.741Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:24:11.742Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:24:11.742Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:24:24.932Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:24:24.932Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:24:24.933Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:24:24.933Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:24.934Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:24:24.934Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:24:24.935Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:24:25.033Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:24:25.034Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:24:25.035Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:24:25.035Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:24:25.037Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:25.038Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe4cc [] +2026-04-25T20:24:25.039Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:25.039Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe4cc [] +2026-04-25T20:24:25.152Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:24:25.153Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fea4c [] +2026-04-25T20:24:25.154Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:24:25.155Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe9dc [] +2026-04-25T20:24:25.155Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe9dc [] +2026-04-25T20:24:25.156Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe9dc [] +2026-04-25T20:24:25.157Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:24:25.157Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:24:25.160Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x6feb9c "[""0x5868ff0"",""0x1"",""0x1"",""0xd1f51ce8"",""0x74794704""]" +2026-04-25T20:24:25.160Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:25.161Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fea1c [] +2026-04-25T20:24:25.161Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:24:25.161Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fd6b0 [] +2026-04-25T20:24:25.162Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:24:25.288Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d5c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d60648"",""0x6fe860"",""0x9e3aba16""]" 0 1 0x2 +2026-04-25T20:24:25.288Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d5c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d60648"",""0x6fe860"",""0x9e3aba16""]" 1 314 0x8d60648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d5 08 1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d6 08 20 01 00 02 00 00 00 +2026-04-25T20:24:25.291Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d5c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9f03020"",""0x80365578"",""0x8d60214"",""0x8d60204"",""0x641add04"",""0x0""]" 0 360 0x9f03020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d5 08 1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d6 08 20 01 00 02 00 00 00 +2026-04-25T20:24:25.292Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:24:25.292Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:24:25.293Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d5c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e2c908"",""0x6fe860"",""0x9e3aba16""]" 0 2 0x2 +2026-04-25T20:24:25.293Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d5c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e2c908"",""0x6fe860"",""0x9e3aba16""]" 1 39 0x8e2c908 1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-25T20:24:25.294Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d5c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9f03020"",""0x80365578"",""0x8e39584"",""0x8e39574"",""0x641add04"",""0x0""]" 0 85 0x9f03020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-25T20:24:25.295Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:24:25.295Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:24:25.318Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x5c"",""0x784c044"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x5c"",""0x784c044"",""0x206"",""0x3"",""0x731e34c""]" 0 92 0x784c044 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 d7 3d a8 1c 31 42 29 4b 88 e3 6f ae f8 44 fe 26 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 +2026-04-25T20:24:25.318Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x5c"",""0x784c044"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x5c"",""0x784c044"",""0x206"",""0x3"",""0x731e34c""]" 1 518 0x3 +2026-04-25T20:24:25.318Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x5c"",""0x784c044"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x5c"",""0x784c044"",""0x206"",""0x3"",""0x731e34c""]" 2 3 0x731e34c a0 ae 98 +2026-04-25T20:24:25.320Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:24:25.323Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x69"",""0xb50324"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x69"",""0xb50324"",""0x206"",""0x3"",""0x731e34c""]" 0 105 0xb50324 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 8c 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 d7 3d a8 1c 31 42 29 4b 88 e3 6f ae f8 44 fe 26 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 +2026-04-25T20:24:25.323Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x69"",""0xb50324"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x69"",""0xb50324"",""0x206"",""0x3"",""0x731e34c""]" 1 518 0x3 +2026-04-25T20:24:25.323Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x69"",""0xb50324"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x69"",""0xb50324"",""0x206"",""0x3"",""0x731e34c""]" 2 3 0x731e34c a0 ae 98 +2026-04-25T20:24:25.324Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:24:25.334Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x2c2"",""0x784f35c"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x2c2"",""0x784f35c"",""0x206"",""0x3"",""0x731e34c""]" 0 706 0x784f35c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 88 ad 5d 1e f2 cd dc 46 b3 c4 17 18 1e b9 74 18 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:24:25.334Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x2c2"",""0x784f35c"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x2c2"",""0x784f35c"",""0x206"",""0x3"",""0x731e34c""]" 1 518 0x3 +2026-04-25T20:24:25.334Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x2c2"",""0x784f35c"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x2c2"",""0x784f35c"",""0x206"",""0x3"",""0x731e34c""]" 2 3 0x731e34c a0 ae 98 +2026-04-25T20:24:25.335Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:24:25.337Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x97"",""0x784f35c"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x97"",""0x784f35c"",""0x206"",""0x3"",""0x731e34c""]" 0 151 0x784f35c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 0b fe 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 88 ad 5d 1e f2 cd dc 46 b3 c4 17 18 1e b9 74 18 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:24:25.337Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x97"",""0x784f35c"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x97"",""0x784f35c"",""0x206"",""0x3"",""0x731e34c""]" 1 518 0x3 +2026-04-25T20:24:25.337Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d5c738 "[""0x97"",""0x784f35c"",""0x6f4ece8"",""0x76ffedd8"",""0x8d5c744"",""0x97"",""0x784f35c"",""0x206"",""0x3"",""0x731e34c""]" 2 3 0x731e34c a0 ae 98 +2026-04-25T20:24:25.338Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:24:29.229Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d5c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8e2cd88"",""0x6fe8bc"",""0x9e3abae2""]" 0 2 0x2 +2026-04-25T20:24:29.229Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d5c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8e2cd88"",""0x6fe8bc"",""0x9e3abae2""]" 1 37 0x8e2cd88 21 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-25T20:24:29.230Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d5c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9f03020"",""0x8036550c"",""0x6fe90c"",""0x6fe8fc"",""0x641add04"",""0x0""]" 0 83 0x9f03020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-25T20:24:29.230Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:24:29.231Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/078-frida-activate-advised-scanstate/frida-exit.txt b/captures/078-frida-activate-advised-scanstate/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/078-frida-activate-advised-scanstate/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/078-frida-activate-advised-scanstate/frida.stderr.txt b/captures/078-frida-activate-advised-scanstate/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/078-frida-activate-advised-scanstate/frida.stdout.jsonl b/captures/078-frida-activate-advised-scanstate/frida.stdout.jsonl new file mode 100644 index 0000000..a1d79a9 --- /dev/null +++ b/captures/078-frida-activate-advised-scanstate/frida.stdout.jsonl @@ -0,0 +1,70 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=activate-advised --tag=TestChildObject.ScanState --write-delay-ms=1000 --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\078-frida-activate-advised-scanstate\harness.log --client=MxFridaTrace-078-frida-activate-advised-scanstate`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=activate-advised --tag=TestChildObject.ScanState --write-delay-ms=1000 --duration=3 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\078-frida-activate-advised-scanstate\harness.log --client=MxFridaTrace-078-frida-activate-advised-scanstate`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:24:11.740Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:24:11.740Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:24:11.741Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:24:11.742Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:24:11.742Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:24:24.932Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:24:24.932Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:24:24.933Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:24:24.933Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:24:24.934Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:24:24.934Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:24:24.935Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:24:25.033Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:24:25.034Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:24:25.035Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:24:25.035Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d57010","outPtr":"0x6fe4cc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:24:25.037Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe4cc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe4cc","time":"2026-04-25T20:24:25.038Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d57010","outPtr":"0x6fe4cc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:24:25.039Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe4cc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe4cc","time":"2026-04-25T20:24:25.039Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:24:25.152Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e02260","outPtr":"0x6fea4c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0x6fea4c","time":"2026-04-25T20:24:25.153Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d60588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e2cef0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 a8 ce e2 08 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 f0 ce e2 08 7c e0 97 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 d5 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 04 76 ae 00 00 00 00 00"},"time":"2026-04-25T20:24:25.154Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d605d8","outPtr":"0x6fe9dc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0x6fe9dc","time":"2026-04-25T20:24:25.155Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d605d8","outPtr":"0x6fe9dc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0x6fe9dc","time":"2026-04-25T20:24:25.155Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d605d8","outPtr":"0x6fe9dc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0x6fe9dc","time":"2026-04-25T20:24:25.156Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d60588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e2cef0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 a8 ce e2 08 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 f0 ce e2 08 7c e0 97 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 d5 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 04 76 ae 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:24:25.157Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:24:25.157Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6feb9c","args":["0x5868ff0","0x1","0x1","0xd1f51ce8","0x74794704"],"time":"2026-04-25T20:24:25.160Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d57010","outPtr":"0x6fea1c","inWords":[65537,327682,186166,655465,37447,0],"time":"2026-04-25T20:24:25.160Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fea1c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0x6fea1c","time":"2026-04-25T20:24:25.161Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d57010","outPtr":"0x6fd6b0","inWords":[65537,327682,186166,655465,37447,0],"time":"2026-04-25T20:24:25.161Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fd6b0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655465,"w4":37447},"retval":"0x6fd6b0","time":"2026-04-25T20:24:25.161Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:24:25.162Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d5c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8d60648","0x6fe860","0x9e3aba16"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8d60648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d5 08 1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d6 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:24:25.288Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d5c738","args":["0x1","0x1","0x1","0x168","0x9f03020","0x80365578","0x8d60214","0x8d60204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9f03020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d5 08 1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d6 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:24:25.291Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:24:25.292Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:24:25.292Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d5c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8e2c908","0x6fe860","0x9e3aba16"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8e2c908","hex":"1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-25T20:24:25.293Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d5c738","args":["0x1","0x1","0x2","0x55","0x9f03020","0x80365578","0x8e39584","0x8e39574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9f03020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 00 00 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-25T20:24:25.294Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:24:25.295Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:24:25.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d5c738","args":["0x5c","0x784c044","0x6f4ece8","0x76ffedd8","0x8d5c744","0x5c","0x784c044","0x206","0x3","0x731e34c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x784c044","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 d7 3d a8 1c 31 42 29 4b 88 e3 6f ae f8 44 fe 26 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x731e34c","hex":"a0 ae 98"}],"time":"2026-04-25T20:24:25.318Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:25.320Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d5c738","args":["0x69","0xb50324","0x6f4ece8","0x76ffedd8","0x8d5c744","0x69","0xb50324","0x206","0x3","0x731e34c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0xb50324","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 8c 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 d7 3d a8 1c 31 42 29 4b 88 e3 6f ae f8 44 fe 26 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x731e34c","hex":"a0 ae 98"}],"time":"2026-04-25T20:24:25.323Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:25.324Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d5c738","args":["0x2c2","0x784f35c","0x6f4ece8","0x76ffedd8","0x8d5c744","0x2c2","0x784f35c","0x206","0x3","0x731e34c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x784f35c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 88 ad 5d 1e f2 cd dc 46 b3 c4 17 18 1e b9 74 18 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x731e34c","hex":"a0 ae 98"}],"time":"2026-04-25T20:24:25.334Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:25.335Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d5c738","args":["0x97","0x784f35c","0x6f4ece8","0x76ffedd8","0x8d5c744","0x97","0x784f35c","0x206","0x3","0x731e34c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x784f35c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 0b fe 0b 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 88 ad 5d 1e f2 cd dc 46 b3 c4 17 18 1e b9 74 18 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x731e34c","hex":"a0 ae 98"}],"time":"2026-04-25T20:24:25.337Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:24:25.338Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d5c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8e2cd88","0x6fe8bc","0x9e3abae2"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8e2cd88","hex":"21 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-25T20:24:29.229Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d5c738","args":["0x1","0x1","0x2","0x53","0x9f03020","0x8036550c","0x6fe90c","0x6fe8fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9f03020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 ad d5 63 ca 1a 65 3d 48 88 e5 f4 81 00 0e af 0c 05 00 36 d7 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-25T20:24:29.230Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:24:29.230Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:24:29.231Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/078-frida-activate-advised-scanstate/harness.log b/captures/078-frida-activate-advised-scanstate/harness.log new file mode 100644 index 0000000..d90e31b --- /dev/null +++ b/captures/078-frida-activate-advised-scanstate/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:24:11.6532748+00:00 harness.start {"Scenario":"activate-advised","ClientName":"MxFridaTrace-078-frida-activate-advised-scanstate","Tags":["TestChildObject.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:24:24.7705337+00:00 mx.register.begin {"ClientName":"MxFridaTrace-078-frida-activate-advised-scanstate"} +2026-04-25T20:24:25.1497429+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:24:25.1508088+00:00 mx.additem.begin {"Tag":"TestChildObject.ScanState"} +2026-04-25T20:24:25.1577826+00:00 mx.additem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:25.1597778+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:25.1627840+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:26.1923339+00:00 mx.activate.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:26.1943338+00:00 mx.activate.end {"Tag":"TestChildObject.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-25T20:24:29.2202893+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:29.2202893+00:00 mx.unadvise.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:29.2202893+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:29.2202893+00:00 mx.removeitem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:24:29.2202893+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:24:29.7460113+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:24:29.7530043+00:00 harness.stop {} diff --git a/captures/079-frida-add-buffered-advise-testint/frida-command.txt b/captures/079-frida-add-buffered-advise-testint/frida-command.txt new file mode 100644 index 0000000..a2bdaf2 --- /dev/null +++ b/captures/079-frida-add-buffered-advise-testint/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=add-buffered-advise --tag=TestInt --context=TestChildObject --duration=5 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\079-frida-add-buffered-advise-testint\harness.log --client=MxFridaTrace-079-frida-add-buffered-advise-testint diff --git a/captures/079-frida-add-buffered-advise-testint/frida-events.tsv b/captures/079-frida-add-buffered-advise-testint/frida-events.tsv new file mode 100644 index 0000000..e3a1e6f --- /dev/null +++ b/captures/079-frida-add-buffered-advise-testint/frida-events.tsv @@ -0,0 +1,56 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:34:30.945Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:34:30.946Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:34:30.946Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:34:30.947Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:34:30.947Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:34:37.389Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:34:37.390Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:34:37.390Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:34:37.391Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:34:37.391Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:34:37.392Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:34:37.393Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:34:37.457Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:34:37.458Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x57e774 [] +2026-04-25T20:34:37.458Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:34:37.459Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x57e774 [] +2026-04-25T20:34:37.490Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:34:37.492Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:34:37.493Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:34:37.493Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:34:37.556Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x57ec78 [] +2026-04-25T20:34:37.558Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:34:37.558Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x57ec18 [] +2026-04-25T20:34:37.559Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x57ec04 [] +2026-04-25T20:34:37.559Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x57ec18 [] +2026-04-25T20:34:37.560Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:34:37.561Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x57ec78 [] +2026-04-25T20:34:37.563Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x57ee44 "[""0x5918ff0"",""0x1"",""0x1"",""0xd62376b"",""0x74794704""]" +2026-04-25T20:34:37.563Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:34:37.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8c4c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8c50648"",""0x57eb08"",""0xe35f7f3c""]" 0 1 0x2 +2026-04-25T20:34:37.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8c4c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8c50648"",""0x57eb08"",""0xe35f7f3c""]" 1 314 0x8c50648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc c4 08 1f 01 00 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c5 08 20 01 00 02 00 00 00 +2026-04-25T20:34:37.695Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8c4c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x95ec020"",""0x3162ba2a"",""0x8c50214"",""0x8c50204"",""0x641add04"",""0x0""]" 0 360 0x95ec020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc c4 08 1f 01 00 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c5 08 20 01 00 02 00 00 00 +2026-04-25T20:34:37.696Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:34:37.696Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:34:37.722Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x2c2"",""0x97f6dc"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x2c2"",""0x97f6dc"",""0x206"",""0x3"",""0x7249e54""]" 0 706 0x97f6dc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 34 da b8 d2 99 8b c1 4b 9a 0c 93 cb 1b 3b 5c 24 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:34:37.722Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x2c2"",""0x97f6dc"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x2c2"",""0x97f6dc"",""0x206"",""0x3"",""0x7249e54""]" 1 518 0x3 +2026-04-25T20:34:37.722Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x2c2"",""0x97f6dc"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x2c2"",""0x97f6dc"",""0x206"",""0x3"",""0x7249e54""]" 2 3 0x7249e54 70 8c 9a +2026-04-25T20:34:37.724Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:37.726Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x97"",""0x720ef8c"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x97"",""0x720ef8c"",""0x206"",""0x3"",""0x7249e54""]" 0 151 0x720ef8c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 c1 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 34 da b8 d2 99 8b c1 4b 9a 0c 93 cb 1b 3b 5c 24 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:34:37.726Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x97"",""0x720ef8c"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x97"",""0x720ef8c"",""0x206"",""0x3"",""0x7249e54""]" 1 518 0x3 +2026-04-25T20:34:37.726Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x97"",""0x720ef8c"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x97"",""0x720ef8c"",""0x206"",""0x3"",""0x7249e54""]" 2 3 0x7249e54 70 8c 9a +2026-04-25T20:34:37.728Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:37.780Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8c4c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x8d2a448"",""0x57eb08"",""0xe35f7f3c""]" 0 1 0x2 +2026-04-25T20:34:37.780Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8c4c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x8d2a448"",""0x57eb08"",""0xe35f7f3c""]" 1 173 0x8d2a448 10 01 00 01 00 00 00 32 c3 d9 6d ed 72 f1 48 84 85 37 0c 66 bc f8 92 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:37.781Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8c4c738 "[""0x1"",""0x1"",""0x1"",""0xdb"",""0x95ec020"",""0x3162ba2a"",""0x8c477f4"",""0x8c477e4"",""0x641add04"",""0x0""]" 0 219 0x95ec020 01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 32 c3 d9 6d ed 72 f1 48 84 85 37 0c 66 bc f8 92 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:37.782Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:34:37.782Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:34:37.820Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x2e"",""0x97f6dc"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x2e"",""0x97f6dc"",""0x206"",""0x3"",""0x7249e54""]" 0 46 0x97f6dc 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 02 02 00 00 +2026-04-25T20:34:37.820Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x2e"",""0x97f6dc"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x2e"",""0x97f6dc"",""0x206"",""0x3"",""0x7249e54""]" 1 518 0x3 +2026-04-25T20:34:37.820Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0x2e"",""0x97f6dc"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0x2e"",""0x97f6dc"",""0x206"",""0x3"",""0x7249e54""]" 2 3 0x7249e54 70 8c 9a +2026-04-25T20:34:37.822Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:37.824Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0xd3"",""0x740cd44"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0xd3"",""0x740cd44"",""0x206"",""0x3"",""0x7249e54""]" 0 211 0x740cd44 d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 c2 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 32 c3 d9 6d ed 72 f1 48 84 85 37 0c 66 bc f8 92 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T20:34:37.824Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0xd3"",""0x740cd44"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0xd3"",""0x740cd44"",""0x206"",""0x3"",""0x7249e54""]" 1 518 0x3 +2026-04-25T20:34:37.824Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8c4c738 "[""0xd3"",""0x740cd44"",""0x6f6efd0"",""0x76ffedd8"",""0x8c4c744"",""0xd3"",""0x740cd44"",""0x206"",""0x3"",""0x7249e54""]" 2 3 0x7249e54 70 8c 9a +2026-04-25T20:34:37.826Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/079-frida-add-buffered-advise-testint/frida-exit.txt b/captures/079-frida-add-buffered-advise-testint/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/079-frida-add-buffered-advise-testint/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/079-frida-add-buffered-advise-testint/frida.stderr.txt b/captures/079-frida-add-buffered-advise-testint/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/079-frida-add-buffered-advise-testint/frida.stdout.jsonl b/captures/079-frida-add-buffered-advise-testint/frida.stdout.jsonl new file mode 100644 index 0000000..0fb48de --- /dev/null +++ b/captures/079-frida-add-buffered-advise-testint/frida.stdout.jsonl @@ -0,0 +1,61 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=add-buffered-advise --tag=TestInt --context=TestChildObject --duration=5 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\079-frida-add-buffered-advise-testint\harness.log --client=MxFridaTrace-079-frida-add-buffered-advise-testint`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=add-buffered-advise --tag=TestInt --context=TestChildObject --duration=5 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\079-frida-add-buffered-advise-testint\harness.log --client=MxFridaTrace-079-frida-add-buffered-advise-testint`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:34:30.945Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:34:30.946Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:34:30.946Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:34:30.947Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:34:30.947Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:34:37.389Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:34:37.390Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:34:37.390Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:34:37.391Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:34:37.391Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:34:37.392Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:34:37.393Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8c47010","outPtr":"0x57e774","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:34:37.457Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x57e774","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x57e774","time":"2026-04-25T20:34:37.458Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8c47010","outPtr":"0x57e774","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:34:37.458Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x57e774","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x57e774","time":"2026-04-25T20:34:37.459Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:34:37.490Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:34:37.492Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:34:37.493Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:34:37.493Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c505d8","outPtr":"0x57ec78","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x57ec78","time":"2026-04-25T20:34:37.556Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8c50588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8d1e918","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 88 e8 d1 08 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 e9 d1 08 ac 51 59 07 00 00 00 00 00 00 00 00 9c 50 58 07 10 70 c4 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 6a 96 00 00 00 00 00"},"time":"2026-04-25T20:34:37.558Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c505d8","outPtr":"0x57ec18","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x57ec18","time":"2026-04-25T20:34:37.558Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c505d8","outPtr":"0x57ec04","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x57ec04","time":"2026-04-25T20:34:37.559Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c505d8","outPtr":"0x57ec18","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x57ec18","time":"2026-04-25T20:34:37.559Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8c50588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8d1e918","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 88 e8 d1 08 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 e9 d1 08 ac 51 59 07 00 00 00 00 00 00 00 00 9c 50 58 07 10 70 c4 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 44 6a 96 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:34:37.560Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c505d8","outPtr":"0x57ec78","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x57ec78","time":"2026-04-25T20:34:37.561Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x57ee44","args":["0x5918ff0","0x1","0x1","0xd62376b","0x74794704"],"time":"2026-04-25T20:34:37.563Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:34:37.563Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8c4c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8c50648","0x57eb08","0xe35f7f3c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8c50648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc c4 08 1f 01 00 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c5 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:34:37.693Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8c4c738","args":["0x1","0x1","0x1","0x168","0x95ec020","0x3162ba2a","0x8c50214","0x8c50204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x95ec020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc c4 08 1f 01 00 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c5 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:34:37.695Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:34:37.696Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:34:37.696Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8c4c738","args":["0x2c2","0x97f6dc","0x6f6efd0","0x76ffedd8","0x8c4c744","0x2c2","0x97f6dc","0x206","0x3","0x7249e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x97f6dc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 34 da b8 d2 99 8b c1 4b 9a 0c 93 cb 1b 3b 5c 24 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7249e54","hex":"70 8c 9a"}],"time":"2026-04-25T20:34:37.722Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:37.724Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8c4c738","args":["0x97","0x720ef8c","0x6f6efd0","0x76ffedd8","0x8c4c744","0x97","0x720ef8c","0x206","0x3","0x7249e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x720ef8c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 c1 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 34 da b8 d2 99 8b c1 4b 9a 0c 93 cb 1b 3b 5c 24 68 2a 63 a1 f8 29 1e 45 a1 f7 1f 81 59 11 20 21 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7249e54","hex":"70 8c 9a"}],"time":"2026-04-25T20:34:37.726Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:37.728Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8c4c738","0x1","0x1","0x1","0x2","0x0","0xad","0x8d2a448","0x57eb08","0xe35f7f3c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":173,"ptr":"0x8d2a448","hex":"10 01 00 01 00 00 00 32 c3 d9 6d ed 72 f1 48 84 85 37 0c 66 bc f8 92 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:37.780Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8c4c738","args":["0x1","0x1","0x1","0xdb","0x95ec020","0x3162ba2a","0x8c477f4","0x8c477e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":219,"ptr":"0x95ec020","hex":"01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 32 c3 d9 6d ed 72 f1 48 84 85 37 0c 66 bc f8 92 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:37.781Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:34:37.782Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:34:37.782Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8c4c738","args":["0x2e","0x97f6dc","0x6f6efd0","0x76ffedd8","0x8c4c744","0x2e","0x97f6dc","0x206","0x3","0x7249e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x97f6dc","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7249e54","hex":"70 8c 9a"}],"time":"2026-04-25T20:34:37.820Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:37.822Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8c4c738","args":["0xd3","0x740cd44","0x6f6efd0","0x76ffedd8","0x8c4c744","0xd3","0x740cd44","0x206","0x3","0x7249e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":211,"ptr":"0x740cd44","hex":"d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 c2 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f7 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 32 c3 d9 6d ed 72 f1 48 84 85 37 0c 66 bc f8 92 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7249e54","hex":"70 8c 9a"}],"time":"2026-04-25T20:34:37.824Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:37.826Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/079-frida-add-buffered-advise-testint/harness.log b/captures/079-frida-add-buffered-advise-testint/harness.log new file mode 100644 index 0000000..4e9a1ac --- /dev/null +++ b/captures/079-frida-add-buffered-advise-testint/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:34:30.8466112+00:00 harness.start {"Scenario":"add-buffered-advise","ClientName":"MxFridaTrace-079-frida-add-buffered-advise-testint","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:34:37.2021139+00:00 mx.register.begin {"ClientName":"MxFridaTrace-079-frida-add-buffered-advise-testint"} +2026-04-25T20:34:37.5519999+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:34:37.5529999+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T20:34:37.5549372+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T20:34:37.5549372+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:34:37.5619293+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:34:37.5629327+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:37.5639274+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:43.3504993+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:43.3504993+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:43.3514989+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:43.3514989+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:43.3514989+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:34:46.7506920+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:34:46.7576209+00:00 harness.stop {} diff --git a/captures/080-frida-buffered-external-write-testint/frida-command.txt b/captures/080-frida-buffered-external-write-testint/frida-command.txt new file mode 100644 index 0000000..8584357 --- /dev/null +++ b/captures/080-frida-buffered-external-write-testint/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=126,127 --user-id=1 --duration=6 --write-delay-ms=1000 --write-interval-ms=1800 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\080-frida-buffered-external-write-testint\harness.log --client=MxFridaTrace-080-frida-buffered-external-write-testint diff --git a/captures/080-frida-buffered-external-write-testint/frida-events.tsv b/captures/080-frida-buffered-external-write-testint/frida-events.tsv new file mode 100644 index 0000000..abd9c1a --- /dev/null +++ b/captures/080-frida-buffered-external-write-testint/frida-events.tsv @@ -0,0 +1,104 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:34:30.938Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:34:30.939Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:34:30.939Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:34:30.940Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:34:30.940Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:34:43.528Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:34:43.529Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:34:43.529Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:34:43.530Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:34:43.530Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:34:43.531Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:34:43.531Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:34:43.629Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:34:43.630Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:34:43.630Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:34:43.631Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:34:43.665Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:34:43.666Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x9be29c [] +2026-04-25T20:34:43.666Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:34:43.667Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x9be29c [] +2026-04-25T20:34:43.774Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be7a8 [] +2026-04-25T20:34:43.775Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:34:43.775Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be748 [] +2026-04-25T20:34:43.775Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be734 [] +2026-04-25T20:34:43.776Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be748 [] +2026-04-25T20:34:43.777Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:34:43.777Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be7a8 [] +2026-04-25T20:34:43.779Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x9be974 "[""0x5f28ff0"",""0x1"",""0x1"",""0xecdb4db3"",""0x74794704""]" +2026-04-25T20:34:43.779Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:34:43.904Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9290648"",""0x9be638"",""0x8dba32df""]" 0 1 0x2 +2026-04-25T20:34:43.904Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9290648"",""0x9be638"",""0x8dba32df""]" 1 314 0x9290648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00 +2026-04-25T20:34:43.908Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x928c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9d7a020"",""0xd7898d68"",""0x9290214"",""0x9290204"",""0x641add04"",""0x0""]" 0 360 0x9d7a020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00 +2026-04-25T20:34:43.909Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:34:43.909Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:34:43.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2c2"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2c2"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 0 706 0x7d28ed4 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 b7 d5 bb 05 99 4e 6e 4c 8d 39 50 5e 12 d1 cc 84 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:34:43.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2c2"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2c2"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:43.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2c2"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2c2"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:43.938Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:43.941Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x97"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x97"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 0 151 0x781593c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 db 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 b7 d5 bb 05 99 4e 6e 4c 8d 39 50 5e 12 d1 cc 84 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:34:43.941Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x97"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x97"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:43.941Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x97"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x97"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:43.942Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:44.093Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x936a448"",""0x9be638"",""0x8dba32df""]" 0 1 0x2 +2026-04-25T20:34:44.093Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x936a448"",""0x9be638"",""0x8dba32df""]" 1 173 0x936a448 10 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:44.095Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x928c738 "[""0x1"",""0x1"",""0x1"",""0xdb"",""0x9d7a020"",""0xd7898d68"",""0x92877f4"",""0x92877e4"",""0x641add04"",""0x0""]" 0 219 0x9d7a020 01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:44.095Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:34:44.096Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:34:44.097Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 0 46 0x7d28ed4 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00 +2026-04-25T20:34:44.097Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:44.097Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:44.099Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:44.101Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xd3"",""0x7d60bac"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xd3"",""0x7d60bac"",""0x206"",""0x3"",""0x784da5c""]" 0 211 0x7d60bac d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 dc 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T20:34:44.101Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xd3"",""0x7d60bac"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xd3"",""0x7d60bac"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:44.101Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xd3"",""0x7d60bac"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xd3"",""0x7d60bac"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:44.103Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:44.824Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be790 [] +2026-04-25T20:34:44.825Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:34:44.825Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be730 [] +2026-04-25T20:34:44.826Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be71c [] +2026-04-25T20:34:44.826Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be730 [] +2026-04-25T20:34:44.827Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:34:44.828Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be790 [] +2026-04-25T20:34:44.828Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x9be920 "[""0x5f28ff0"",""0x1"",""0x2"",""0xecdb4db3"",""0x74794704""]" +2026-04-25T20:34:44.828Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:34:44.982Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x8b"",""0x936a740"",""0x9be5e4"",""0x8dba3373""]" 0 1 0x2 +2026-04-25T20:34:44.982Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x8b"",""0x936a740"",""0x9be5e4"",""0x8dba3373""]" 1 139 0x936a740 10 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:44.983Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x928c738 "[""0x1"",""0x1"",""0x1"",""0xb9"",""0x9d7a020"",""0xd7898cd4"",""0x92877f4"",""0x92877e4"",""0x641add04"",""0x0""]" 0 185 0x9d7a020 01 00 8b 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:44.983Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:34:44.984Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:34:45.032Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 0 46 0x781593c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00 +2026-04-25T20:34:45.032Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:45.032Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:45.034Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:45.036Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xb1"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xb1"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 0 177 0x7d28ed4 b1 00 00 00 01 00 83 00 00 00 00 00 00 00 e1 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 56 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T20:34:45.036Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xb1"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xb1"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:45.036Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xb1"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xb1"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:45.038Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:45.854Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x9be914 "[""0x5f28ff0"",""0x1"",""0x2"",""0x3"",""0x0"",""0x7e"",""0x0"",""0x1"",""0xecdb4db3"",""0x74794704""]" +2026-04-25T20:34:45.854Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T20:34:49.534Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be790 [] +2026-04-25T20:34:49.535Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:34:49.535Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be730 [] +2026-04-25T20:34:49.535Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be71c [] +2026-04-25T20:34:49.536Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be730 [] +2026-04-25T20:34:49.537Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:34:49.537Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be790 [] +2026-04-25T20:34:49.538Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x9be920 "[""0x5f28ff0"",""0x1"",""0x3"",""0xecdb4db3"",""0x74794704""]" +2026-04-25T20:34:49.538Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:34:49.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x8b"",""0x936ae90"",""0x9be5e4"",""0x8dba3373""]" 0 1 0x2 +2026-04-25T20:34:49.693Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x8b"",""0x936ae90"",""0x9be5e4"",""0x8dba3373""]" 1 139 0x936ae90 10 01 00 03 00 00 00 17 85 e5 e6 54 b1 bf 4a 93 35 59 b2 bf 12 53 20 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:49.694Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x928c738 "[""0x1"",""0x1"",""0x1"",""0xb9"",""0x9d7a020"",""0xd7898cd4"",""0x9369584"",""0x9369574"",""0x641add04"",""0x0""]" 0 185 0x9d7a020 01 00 8b 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 03 00 00 00 17 85 e5 e6 54 b1 bf 4a 93 35 59 b2 bf 12 53 20 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T20:34:49.694Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:34:49.695Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:34:49.708Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 0 46 0x781593c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00 +2026-04-25T20:34:49.708Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:49.708Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2e"",""0x781593c"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0x2e"",""0x781593c"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:49.710Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:49.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xb1"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xb1"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 0 177 0x7d28ed4 b1 00 00 00 01 00 83 00 00 00 00 00 00 00 f9 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 03 00 00 00 17 85 e5 e6 54 b1 bf 4a 93 35 59 b2 bf 12 53 20 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 56 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T20:34:49.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xb1"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xb1"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 1 518 0x3 +2026-04-25T20:34:49.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0xb1"",""0x7d28ed4"",""0x75feca8"",""0x76ffedd8"",""0x928c744"",""0xb1"",""0x7d28ed4"",""0x206"",""0x3"",""0x784da5c""]" 2 3 0x784da5c 90 5f d9 +2026-04-25T20:34:49.714Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:34:50.565Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x9be914 "[""0x5f28ff0"",""0x1"",""0x3"",""0x3"",""0x0"",""0x7f"",""0x0"",""0x1"",""0xecdb4db3"",""0x74794704""]" +2026-04-25T20:34:50.565Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] diff --git a/captures/080-frida-buffered-external-write-testint/frida-exit.txt b/captures/080-frida-buffered-external-write-testint/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/080-frida-buffered-external-write-testint/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/080-frida-buffered-external-write-testint/frida.stderr.txt b/captures/080-frida-buffered-external-write-testint/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/080-frida-buffered-external-write-testint/frida.stdout.jsonl b/captures/080-frida-buffered-external-write-testint/frida.stdout.jsonl new file mode 100644 index 0000000..cbb95c1 --- /dev/null +++ b/captures/080-frida-buffered-external-write-testint/frida.stdout.jsonl @@ -0,0 +1,99 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=126,127 --user-id=1 --duration=6 --write-delay-ms=1000 --write-interval-ms=1800 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\080-frida-buffered-external-write-testint\harness.log --client=MxFridaTrace-080-frida-buffered-external-write-testint`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=126,127 --user-id=1 --duration=6 --write-delay-ms=1000 --write-interval-ms=1800 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\080-frida-buffered-external-write-testint\harness.log --client=MxFridaTrace-080-frida-buffered-external-write-testint`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:34:30.938Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:34:30.939Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:34:30.939Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:34:30.940Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:34:30.940Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:34:43.528Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:34:43.529Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:34:43.529Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:34:43.530Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:34:43.530Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:34:43.531Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:34:43.531Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:34:43.629Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:34:43.630Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:34:43.630Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:34:43.631Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9287010","outPtr":"0x9be29c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:34:43.665Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x9be29c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x9be29c","time":"2026-04-25T20:34:43.666Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9287010","outPtr":"0x9be29c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:34:43.666Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x9be29c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x9be29c","time":"2026-04-25T20:34:43.667Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be7a8","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be7a8","time":"2026-04-25T20:34:43.774Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9290588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935e960","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b8 e5 35 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 e9 35 09 8c c5 eb 07 00 00 00 00 00 00 00 00 bc c6 ea 07 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 bc f5 e2 00 00 00 00 00"},"time":"2026-04-25T20:34:43.775Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be748","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be748","time":"2026-04-25T20:34:43.775Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be734","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be734","time":"2026-04-25T20:34:43.775Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be748","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be748","time":"2026-04-25T20:34:43.776Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9290588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935e960","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 b8 e5 35 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 e9 35 09 8c c5 eb 07 00 00 00 00 00 00 00 00 bc c6 ea 07 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 bc f5 e2 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:34:43.777Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be7a8","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be7a8","time":"2026-04-25T20:34:43.777Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x9be974","args":["0x5f28ff0","0x1","0x1","0xecdb4db3","0x74794704"],"time":"2026-04-25T20:34:43.779Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:34:43.779Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x928c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9290648","0x9be638","0x8dba32df"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9290648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:34:43.904Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x928c738","args":["0x1","0x1","0x1","0x168","0x9d7a020","0xd7898d68","0x9290214","0x9290204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9d7a020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:34:43.908Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:34:43.909Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:34:43.909Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x2c2","0x7d28ed4","0x75feca8","0x76ffedd8","0x928c744","0x2c2","0x7d28ed4","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7d28ed4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 b7 d5 bb 05 99 4e 6e 4c 8d 39 50 5e 12 d1 cc 84 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:43.936Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:43.938Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x97","0x781593c","0x75feca8","0x76ffedd8","0x928c744","0x97","0x781593c","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x781593c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 db 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 b7 d5 bb 05 99 4e 6e 4c 8d 39 50 5e 12 d1 cc 84 dc 60 c5 01 1f 9f f5 4f bb 07 c5 44 15 cc 08 b8 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:43.941Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:43.942Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x928c738","0x1","0x1","0x1","0x2","0x0","0xad","0x936a448","0x9be638","0x8dba32df"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":173,"ptr":"0x936a448","hex":"10 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:44.093Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x928c738","args":["0x1","0x1","0x1","0xdb","0x9d7a020","0xd7898d68","0x92877f4","0x92877e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":219,"ptr":"0x9d7a020","hex":"01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:44.095Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:34:44.095Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:34:44.096Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x2e","0x7d28ed4","0x75feca8","0x76ffedd8","0x928c744","0x2e","0x7d28ed4","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7d28ed4","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:44.097Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:44.099Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0xd3","0x7d60bac","0x75feca8","0x76ffedd8","0x928c744","0xd3","0x7d60bac","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":211,"ptr":"0x7d60bac","hex":"d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 dc 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:44.101Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:44.103Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be790","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be790","time":"2026-04-25T20:34:44.824Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9369f38","referenceString":{"length":7,"capacity":7,"value":"TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935e600","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 36 09 e8 63 19 10 00 19 f6 d3 02 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 07 00 00 00 07 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 11 70 0f 00 00 e6 35 09 04 40 e9 07 00 00 00 00 00 00 00 00 34 c9 eb 07 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 38 35 36 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 98 34 36 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 14 2f ec 07 00 36 36 09"},"time":"2026-04-25T20:34:44.825Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be730","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be730","time":"2026-04-25T20:34:44.825Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be71c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be71c","time":"2026-04-25T20:34:44.826Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be730","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be730","time":"2026-04-25T20:34:44.826Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9369f38","referenceString":{"length":7,"capacity":7,"value":"TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935e600","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 36 09 e8 63 19 10 00 19 f6 d3 03 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 07 00 00 00 07 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 11 70 0f 00 00 e6 35 09 04 40 e9 07 00 00 00 00 00 00 00 00 34 c9 eb 07 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 38 35 36 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 98 34 36 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 14 2f ec 07 00 36 36 09"},"retval":"0x70fe1e01","time":"2026-04-25T20:34:44.827Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be790","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be790","time":"2026-04-25T20:34:44.828Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x9be920","args":["0x5f28ff0","0x1","0x2","0xecdb4db3","0x74794704"],"time":"2026-04-25T20:34:44.828Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:34:44.828Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x928c738","0x1","0x1","0x1","0x2","0x0","0x8b","0x936a740","0x9be5e4","0x8dba3373"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":139,"ptr":"0x936a740","hex":"10 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:44.982Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x928c738","args":["0x1","0x1","0x1","0xb9","0x9d7a020","0xd7898cd4","0x92877f4","0x92877e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":185,"ptr":"0x9d7a020","hex":"01 00 8b 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:44.983Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:34:44.983Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:34:44.984Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x2e","0x781593c","0x75feca8","0x76ffedd8","0x928c744","0x2e","0x781593c","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x781593c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:45.032Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:45.034Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0xb1","0x7d28ed4","0x75feca8","0x76ffedd8","0x928c744","0xb1","0x7d28ed4","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":177,"ptr":"0x7d28ed4","hex":"b1 00 00 00 01 00 83 00 00 00 00 00 00 00 e1 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 56 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:45.036Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:45.038Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x9be914","args":["0x5f28ff0","0x1","0x2","0x3","0x0","0x7e","0x0","0x1","0xecdb4db3","0x74794704"],"time":"2026-04-25T20:34:45.854Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T20:34:45.854Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be790","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be790","time":"2026-04-25T20:34:49.534Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9369f38","referenceString":{"length":7,"capacity":7,"value":"TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935e600","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 36 09 e8 63 19 10 00 19 f6 d3 03 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 07 00 00 00 07 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 11 70 0f 00 00 e6 35 09 04 40 e9 07 00 00 00 00 00 00 00 00 34 c9 eb 07 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 38 35 36 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 98 34 36 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 14 2f ec 07 00 36 36 09"},"time":"2026-04-25T20:34:49.535Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be730","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be730","time":"2026-04-25T20:34:49.535Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be71c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be71c","time":"2026-04-25T20:34:49.535Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be730","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be730","time":"2026-04-25T20:34:49.536Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9369f38","referenceString":{"length":7,"capacity":7,"value":"TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935e600","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 36 09 e8 63 19 10 00 19 f6 d3 04 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 07 00 00 00 07 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 11 70 0f 00 00 e6 35 09 04 40 e9 07 00 00 00 00 00 00 00 00 34 c9 eb 07 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 38 35 36 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 98 34 36 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 14 2f ec 07 00 36 36 09"},"retval":"0x70fe1e01","time":"2026-04-25T20:34:49.537Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9369f88","outPtr":"0x9be790","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x9be790","time":"2026-04-25T20:34:49.537Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x9be920","args":["0x5f28ff0","0x1","0x3","0xecdb4db3","0x74794704"],"time":"2026-04-25T20:34:49.538Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:34:49.538Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x928c738","0x1","0x1","0x1","0x2","0x0","0x8b","0x936ae90","0x9be5e4","0x8dba3373"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":139,"ptr":"0x936ae90","hex":"10 01 00 03 00 00 00 17 85 e5 e6 54 b1 bf 4a 93 35 59 b2 bf 12 53 20 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:49.693Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x928c738","args":["0x1","0x1","0x1","0xb9","0x9d7a020","0xd7898cd4","0x9369584","0x9369574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":185,"ptr":"0x9d7a020","hex":"01 00 8b 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 03 00 00 00 17 85 e5 e6 54 b1 bf 4a 93 35 59 b2 bf 12 53 20 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T20:34:49.694Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:34:49.694Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:34:49.695Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x2e","0x781593c","0x75feca8","0x76ffedd8","0x928c744","0x2e","0x781593c","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x781593c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:49.708Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:49.710Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0xb1","0x7d28ed4","0x75feca8","0x76ffedd8","0x928c744","0xb1","0x7d28ed4","0x206","0x3","0x784da5c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":177,"ptr":"0x7d28ed4","hex":"b1 00 00 00 01 00 83 00 00 00 00 00 00 00 f9 07 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f6 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 03 00 00 00 17 85 e5 e6 54 b1 bf 4a 93 35 59 b2 bf 12 53 20 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 56 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x784da5c","hex":"90 5f d9"}],"time":"2026-04-25T20:34:49.713Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:34:49.714Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x9be914","args":["0x5f28ff0","0x1","0x3","0x3","0x0","0x7f","0x0","0x1","0xecdb4db3","0x74794704"],"time":"2026-04-25T20:34:50.565Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T20:34:50.565Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/080-frida-buffered-external-write-testint/harness.log b/captures/080-frida-buffered-external-write-testint/harness.log new file mode 100644 index 0000000..ff55ced --- /dev/null +++ b/captures/080-frida-buffered-external-write-testint/harness.log @@ -0,0 +1,40 @@ +2026-04-25T20:34:30.8416661+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxFridaTrace-080-frida-buffered-external-write-testint","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"","WriteValues":["126","127"],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":1800,"BufferedUpdateInterval":1000,"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:34:43.4114985+00:00 mx.register.begin {"ClientName":"MxFridaTrace-080-frida-buffered-external-write-testint"} +2026-04-25T20:34:43.7697438+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:34:43.7708064+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T20:34:43.7718076+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T20:34:43.7728075+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:34:43.7787523+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:34:43.7797408+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:43.7807700+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:44.8201881+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"126"},"UserId":1} +2026-04-25T20:34:44.8241867+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:34:44.8282520+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":2} +2026-04-25T20:34:44.8282520+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:34:44.8282520+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:34:45.8521060+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":2,"Value":{"Type":"System.Int32","Value":"126"},"UserId":1} +2026-04-25T20:34:45.8551055+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:34:47.6933334+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:34:47.6933334+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:34:47.6933334+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:34:47.6933334+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:34:47.6933334+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":0} +2026-04-25T20:34:49.5337706+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"127"},"UserId":1} +2026-04-25T20:34:49.5337706+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:34:49.5377495+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":3} +2026-04-25T20:34:49.5377495+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:34:49.5387789+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:34:50.5651551+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":3,"Value":{"Type":"System.Int32","Value":"127"},"UserId":1} +2026-04-25T20:34:50.5661581+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:34:52.4042159+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:34:52.4042159+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:34:52.4042159+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:34:52.4042159+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:34:52.4042159+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":1} +2026-04-25T20:35:00.2718204+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:35:00.2718204+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:35:00.2718204+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:35:00.2718204+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:35:00.2718204+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:35:00.4477307+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:35:00.4547243+00:00 harness.stop {} diff --git a/captures/081-frida-write-testint-after-buffered/frida-command.txt b/captures/081-frida-write-testint-after-buffered/frida-command.txt new file mode 100644 index 0000000..04040ca --- /dev/null +++ b/captures/081-frida-write-testint-after-buffered/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=int --value=132 --user-id=1 --duration=6 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\081-frida-write-testint-after-buffered\harness.log --client=MxFridaTrace-081-frida-write-testint-after-buffered diff --git a/captures/081-frida-write-testint-after-buffered/frida-events.tsv b/captures/081-frida-write-testint-after-buffered/frida-events.tsv new file mode 100644 index 0000000..c533882 --- /dev/null +++ b/captures/081-frida-write-testint-after-buffered/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T20:38:46.365Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T20:38:46.365Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T20:38:46.366Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T20:38:46.366Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T20:38:46.367Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T20:38:53.208Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:38:53.209Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T20:38:53.209Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T20:38:53.210Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:38:53.211Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:38:53.211Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T20:38:53.212Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T20:38:53.279Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:38:53.279Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe2c0 [] +2026-04-25T20:38:53.280Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:38:53.280Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe2c0 [] +2026-04-25T20:38:53.309Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T20:38:53.309Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T20:38:53.310Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T20:38:53.310Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T20:38:53.380Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T20:38:53.381Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe848 [] +2026-04-25T20:38:53.382Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T20:38:53.383Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe7d8 [] +2026-04-25T20:38:53.383Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe7d8 [] +2026-04-25T20:38:53.384Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe7d8 [] +2026-04-25T20:38:53.385Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T20:38:53.385Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T20:38:53.387Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x6fe994 "[""0x5ba8ff0"",""0x1"",""0x1"",""0xa3ba6064"",""0x74794704""]" +2026-04-25T20:38:53.387Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:38:53.388Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe814 [] +2026-04-25T20:38:53.388Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T20:38:53.388Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fd4a8 [] +2026-04-25T20:38:53.388Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T20:38:53.513Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d7c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d80648"",""0x6fe658"",""0xc7d3c8e4""]" 0 1 0x2 +2026-04-25T20:38:53.513Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d7c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d80648"",""0x6fe658"",""0xc7d3c8e4""]" 1 314 0x8d80648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d7 08 1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d8 08 20 01 00 02 00 00 00 +2026-04-25T20:38:53.515Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d7c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9726020"",""0x66cd0996"",""0x8d80214"",""0x8d80204"",""0x641add04"",""0x0""]" 0 360 0x9726020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d7 08 1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d8 08 20 01 00 02 00 00 00 +2026-04-25T20:38:53.516Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:38:53.516Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:38:53.517Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d7c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e4c680"",""0x6fe658"",""0xc7d3c8e4""]" 0 2 0x2 +2026-04-25T20:38:53.517Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d7c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e4c680"",""0x6fe658"",""0xc7d3c8e4""]" 1 39 0x8e4c680 1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T20:38:53.518Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d7c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9726020"",""0x66cd0996"",""0x8e59584"",""0x8e59574"",""0x641add04"",""0x0""]" 0 85 0x9726020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T20:38:53.519Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:38:53.519Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:38:53.539Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x2c2"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x2c2"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 0 706 0xb0044c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 2c e4 59 3a 8d b1 01 4d be f8 17 f7 a2 b3 ad 5d a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T20:38:53.539Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x2c2"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x2c2"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 1 518 0x3 +2026-04-25T20:38:53.539Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x2c2"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x2c2"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 2 3 0x73803bc 90 93 23 +2026-04-25T20:38:53.541Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:38:53.544Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x97"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x97"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 0 151 0xb06a7c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 e2 0b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 2c e4 59 3a 8d b1 01 4d be f8 17 f7 a2 b3 ad 5d a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T20:38:53.544Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x97"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x97"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 1 518 0x3 +2026-04-25T20:38:53.544Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x97"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x97"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 2 3 0x73803bc 90 93 23 +2026-04-25T20:38:53.545Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:38:53.547Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x5c"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x5c"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 0 92 0xb0044c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 7a 38 2f 1d 77 a6 59 48 a5 2b e4 79 95 65 8a 92 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 +2026-04-25T20:38:53.547Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x5c"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x5c"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 1 518 0x3 +2026-04-25T20:38:53.547Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x5c"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x5c"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 2 3 0x73803bc 90 93 23 +2026-04-25T20:38:53.548Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:38:53.551Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x6c"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x6c"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 0 108 0xb06a7c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 9a 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 7a 38 2f 1d 77 a6 59 48 a5 2b e4 79 95 65 8a 92 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 03 00 00 00 03 00 00 00 c0 00 10 5d 79 72 f3 d4 dc 01 02 +2026-04-25T20:38:53.551Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x6c"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x6c"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 1 518 0x3 +2026-04-25T20:38:53.551Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x6c"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x6c"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 2 3 0x73803bc 90 93 23 +2026-04-25T20:38:53.552Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:38:54.430Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x6fe968 "[""0x5ba8ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x84"",""0x0"",""0x1"",""0xa3ba6064"",""0x74794704""]" +2026-04-25T20:38:54.431Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T20:38:54.484Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d7c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e4ccf8"",""0x6fe658"",""0xc7d3c8e4""]" 0 2 0x2 +2026-04-25T20:38:54.484Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d7c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e4ccf8"",""0x6fe658"",""0xc7d3c8e4""]" 1 40 0x8e4ccf8 132@18 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 84 00 00 00 ff ff 00 00 00 00 00 00 00 00 0c 5a c4 0b 01 00 00 00 +2026-04-25T20:38:54.485Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d7c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x9726020"",""0x66cd0996"",""0x8d777f4"",""0x8d777e4"",""0x641add04"",""0x0""]" 0 86 0x9726020 132@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 84 00 00 00 ff ff 00 00 00 00 00 00 00 00 0c 5a c4 0b 01 00 00 00 +2026-04-25T20:38:54.485Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T20:38:54.486Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T20:38:54.512Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x33"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x33"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 0 51 0xb0044c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T20:38:54.512Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x33"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x33"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 1 518 0x3 +2026-04-25T20:38:54.512Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x33"",""0xb0044c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x33"",""0xb0044c"",""0x206"",""0x3"",""0x73803bc""]" 2 3 0x73803bc 90 93 23 +2026-04-25T20:38:54.514Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T20:38:54.516Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x58"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x58"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 0 88 0xb06a7c 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 9b 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 7a 38 2f 1d 77 a6 59 48 a5 2b e4 79 95 65 8a 92 03 00 00 00 c0 00 e0 94 6a 88 f3 d4 dc 01 02 +2026-04-25T20:38:54.516Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x58"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x58"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 1 518 0x3 +2026-04-25T20:38:54.516Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d7c738 "[""0x58"",""0xb06a7c"",""0x719ece0"",""0x76ffedd8"",""0x8d7c744"",""0x58"",""0xb06a7c"",""0x206"",""0x3"",""0x73803bc""]" 2 3 0x73803bc 90 93 23 +2026-04-25T20:38:54.518Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/081-frida-write-testint-after-buffered/frida-exit.txt b/captures/081-frida-write-testint-after-buffered/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/081-frida-write-testint-after-buffered/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/081-frida-write-testint-after-buffered/frida.stderr.txt b/captures/081-frida-write-testint-after-buffered/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/081-frida-write-testint-after-buffered/frida.stdout.jsonl b/captures/081-frida-write-testint-after-buffered/frida.stdout.jsonl new file mode 100644 index 0000000..3f1aed8 --- /dev/null +++ b/captures/081-frida-write-testint-after-buffered/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=132 --user-id=1 --duration=6 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\081-frida-write-testint-after-buffered\harness.log --client=MxFridaTrace-081-frida-write-testint-after-buffered`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=int --value=132 --user-id=1 --duration=6 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\081-frida-write-testint-after-buffered\harness.log --client=MxFridaTrace-081-frida-write-testint-after-buffered`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T20:38:46.365Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T20:38:46.365Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T20:38:46.366Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T20:38:46.366Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T20:38:46.367Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T20:38:53.208Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T20:38:53.209Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T20:38:53.209Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T20:38:53.210Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T20:38:53.211Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T20:38:53.211Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T20:38:53.212Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d77010","outPtr":"0x6fe2c0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:38:53.279Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe2c0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe2c0","time":"2026-04-25T20:38:53.279Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d77010","outPtr":"0x6fe2c0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T20:38:53.280Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe2c0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe2c0","time":"2026-04-25T20:38:53.280Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T20:38:53.309Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T20:38:53.309Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T20:38:53.310Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T20:38:53.310Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T20:38:53.380Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e210e0","outPtr":"0x6fe848","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x6fe848","time":"2026-04-25T20:38:53.381Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d80588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e4ce60","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 48 7f d7 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 ce e4 08 8c 1c 23 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 d7 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 34 f1 ad 00 00 00 00 00"},"time":"2026-04-25T20:38:53.382Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d805d8","outPtr":"0x6fe7d8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x6fe7d8","time":"2026-04-25T20:38:53.383Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d805d8","outPtr":"0x6fe7d8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x6fe7d8","time":"2026-04-25T20:38:53.383Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d805d8","outPtr":"0x6fe7d8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x6fe7d8","time":"2026-04-25T20:38:53.384Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d80588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e4ce60","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 48 7f d7 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 ce e4 08 8c 1c 23 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 d7 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 34 f1 ad 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T20:38:53.385Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T20:38:53.385Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6fe994","args":["0x5ba8ff0","0x1","0x1","0xa3ba6064","0x74794704"],"time":"2026-04-25T20:38:53.387Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d77010","outPtr":"0x6fe814","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T20:38:53.387Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe814","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x6fe814","time":"2026-04-25T20:38:53.388Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d77010","outPtr":"0x6fd4a8","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T20:38:53.388Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fd4a8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x6fd4a8","time":"2026-04-25T20:38:53.388Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T20:38:53.388Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d7c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8d80648","0x6fe658","0xc7d3c8e4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8d80648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d7 08 1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d8 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:38:53.513Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d7c738","args":["0x1","0x1","0x1","0x168","0x9726020","0x66cd0996","0x8d80214","0x8d80204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9726020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc d7 08 1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 d8 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T20:38:53.515Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:38:53.516Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:38:53.516Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d7c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8e4c680","0x6fe658","0xc7d3c8e4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8e4c680","hex":"1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T20:38:53.517Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d7c738","args":["0x1","0x1","0x2","0x55","0x9726020","0x66cd0996","0x8e59584","0x8e59574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9726020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T20:38:53.518Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:38:53.519Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:38:53.519Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d7c738","args":["0x2c2","0xb0044c","0x719ece0","0x76ffedd8","0x8d7c744","0x2c2","0xb0044c","0x206","0x3","0x73803bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xb0044c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 2c e4 59 3a 8d b1 01 4d be f8 17 f7 a2 b3 ad 5d a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73803bc","hex":"90 93 23"}],"time":"2026-04-25T20:38:53.539Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:38:53.541Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d7c738","args":["0x97","0xb06a7c","0x719ece0","0x76ffedd8","0x8d7c744","0x97","0xb06a7c","0x206","0x3","0x73803bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xb06a7c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 e2 0b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 2c e4 59 3a 8d b1 01 4d be f8 17 f7 a2 b3 ad 5d a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73803bc","hex":"90 93 23"}],"time":"2026-04-25T20:38:53.544Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:38:53.545Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d7c738","args":["0x5c","0xb0044c","0x719ece0","0x76ffedd8","0x8d7c744","0x5c","0xb0044c","0x206","0x3","0x73803bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xb0044c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 7a 38 2f 1d 77 a6 59 48 a5 2b e4 79 95 65 8a 92 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73803bc","hex":"90 93 23"}],"time":"2026-04-25T20:38:53.547Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:38:53.548Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d7c738","args":["0x6c","0xb06a7c","0x719ece0","0x76ffedd8","0x8d7c744","0x6c","0xb06a7c","0x206","0x3","0x73803bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0xb06a7c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 9a 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 7a 38 2f 1d 77 a6 59 48 a5 2b e4 79 95 65 8a 92 a4 d5 1d 5a 7d f5 ce 4e a2 c4 c6 86 de 3c 86 96 03 00 00 00 03 00 00 00 c0 00 10 5d 79 72 f3 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73803bc","hex":"90 93 23"}],"time":"2026-04-25T20:38:53.551Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:38:53.552Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x6fe968","args":["0x5ba8ff0","0x1","0x1","0x3","0x0","0x84","0x0","0x1","0xa3ba6064","0x74794704"],"time":"2026-04-25T20:38:54.430Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T20:38:54.431Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d7c738","0x1","0x1","0x2","0x2","0x0","0x28","0x8e4ccf8","0x6fe658","0xc7d3c8e4"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x8e4ccf8","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 84 00 00 00 ff ff 00 00 00 00 00 00 00 00 0c 5a c4 0b 01 00 00 00"}],"time":"2026-04-25T20:38:54.484Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d7c738","args":["0x1","0x1","0x2","0x56","0x9726020","0x66cd0996","0x8d777f4","0x8d777e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x9726020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 84 00 00 00 ff ff 00 00 00 00 00 00 00 00 0c 5a c4 0b 01 00 00 00"}],"time":"2026-04-25T20:38:54.485Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T20:38:54.485Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T20:38:54.486Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d7c738","args":["0x33","0xb0044c","0x719ece0","0x76ffedd8","0x8d7c744","0x33","0xb0044c","0x206","0x3","0x73803bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xb0044c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73803bc","hex":"90 93 23"}],"time":"2026-04-25T20:38:54.512Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:38:54.514Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d7c738","args":["0x58","0xb06a7c","0x719ece0","0x76ffedd8","0x8d7c744","0x58","0xb06a7c","0x206","0x3","0x73803bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0xb06a7c","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 9b 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 7a 38 2f 1d 77 a6 59 48 a5 2b e4 79 95 65 8a 92 03 00 00 00 c0 00 e0 94 6a 88 f3 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73803bc","hex":"90 93 23"}],"time":"2026-04-25T20:38:54.516Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T20:38:54.518Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/081-frida-write-testint-after-buffered/harness.log b/captures/081-frida-write-testint-after-buffered/harness.log new file mode 100644 index 0000000..d6da7e2 --- /dev/null +++ b/captures/081-frida-write-testint-after-buffered/harness.log @@ -0,0 +1,16 @@ +2026-04-25T20:38:46.2645869+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-081-frida-write-testint-after-buffered","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"132","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:38:53.0220610+00:00 mx.register.begin {"ClientName":"MxFridaTrace-081-frida-write-testint-after-buffered"} +2026-04-25T20:38:53.3779960+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:38:53.3789979+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:38:53.3859339+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:53.3869397+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:53.3899373+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:54.4271564+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"132"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T20:38:54.4312165+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:39:00.4616568+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:39:00.4616568+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:39:00.4616568+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:39:00.4616568+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:39:00.4626353+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:39:04.2566961+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:39:04.2636967+00:00 harness.stop {} diff --git a/captures/082-frida-add-buffered-plain-advise-testint/frida-command.txt b/captures/082-frida-add-buffered-plain-advise-testint/frida-command.txt new file mode 100644 index 0000000..20cd33f --- /dev/null +++ b/captures/082-frida-add-buffered-plain-advise-testint/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=add-buffered-plain-advise --tag=TestInt --context=TestChildObject --duration=8 --write-delay-ms=1000 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\082-frida-add-buffered-plain-advise-testint\harness.log --client=MxFridaTrace-082-frida-add-buffered-plain-advise-testint diff --git a/captures/082-frida-add-buffered-plain-advise-testint/frida-events.tsv b/captures/082-frida-add-buffered-plain-advise-testint/frida-events.tsv new file mode 100644 index 0000000..87d66e5 --- /dev/null +++ b/captures/082-frida-add-buffered-plain-advise-testint/frida-events.tsv @@ -0,0 +1,56 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:02:42.559Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:02:42.560Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:02:42.560Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:02:42.561Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:02:42.561Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:02:53.128Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:02:53.128Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:02:53.129Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:02:53.130Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:02:53.130Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:02:53.131Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:02:53.132Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:02:53.229Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:02:53.230Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:02:53.230Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:02:53.231Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:02:53.289Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:02:53.291Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7be25c [] +2026-04-25T21:02:53.291Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:02:53.291Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7be25c [] +2026-04-25T21:02:53.392Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7be76c [] +2026-04-25T21:02:53.393Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:02:53.393Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7be70c [] +2026-04-25T21:02:53.394Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7be6f8 [] +2026-04-25T21:02:53.394Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7be70c [] +2026-04-25T21:02:53.395Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:02:53.396Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7be76c [] +2026-04-25T21:02:53.397Z lmx.user-register-prebound.enter Lmx.dll MxConnection.UserRegisterPreboundReference 0x916639c [] +2026-04-25T21:02:53.398Z lmx.user-register-prebound.leave Lmx.dll MxConnection.UserRegisterPreboundReference 0x0 [] +2026-04-25T21:02:53.522Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9090648"",""0x7be5fc"",""0x390b6112""]" 0 1 0x2 +2026-04-25T21:02:53.522Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9090648"",""0x7be5fc"",""0x390b6112""]" 1 314 0x9090648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00 +2026-04-25T21:02:53.524Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x908c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa232020"",""0x8ec1ef54"",""0x9090214"",""0x9090204"",""0x641add04"",""0x64""]" 0 360 0xa232020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00 +2026-04-25T21:02:53.525Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:02:53.525Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:02:53.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2c2"",""0xc28ba4"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x2c2"",""0xc28ba4"",""0x206"",""0x3"",""0x750ecc4""]" 0 706 0xc28ba4 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 32 3e f0 9c ae 8f 79 40 bc 3a 40 38 cc ba d7 a9 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:02:53.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2c2"",""0xc28ba4"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x2c2"",""0xc28ba4"",""0x206"",""0x3"",""0x750ecc4""]" 1 518 0x3 +2026-04-25T21:02:53.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2c2"",""0xc28ba4"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x2c2"",""0xc28ba4"",""0x206"",""0x3"",""0x750ecc4""]" 2 3 0x750ecc4 a0 12 5b +2026-04-25T21:02:53.588Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:02:53.591Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x97"",""0xc2367c"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x97"",""0xc2367c"",""0x206"",""0x3"",""0x750ecc4""]" 0 151 0xc2367c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 6a 22 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 32 3e f0 9c ae 8f 79 40 bc 3a 40 38 cc ba d7 a9 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:02:53.591Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x97"",""0xc2367c"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x97"",""0xc2367c"",""0x206"",""0x3"",""0x750ecc4""]" 1 518 0x3 +2026-04-25T21:02:53.591Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x97"",""0xc2367c"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x97"",""0xc2367c"",""0x206"",""0x3"",""0x750ecc4""]" 2 3 0x750ecc4 a0 12 5b +2026-04-25T21:02:53.592Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:02:53.659Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x916a448"",""0x7be5fc"",""0x390b6112""]" 0 1 0x2 +2026-04-25T21:02:53.659Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x916a448"",""0x7be5fc"",""0x390b6112""]" 1 173 0x916a448 10 01 00 01 00 00 00 fb df 86 dc 1f c4 34 4b bb 26 a9 97 35 e9 b7 57 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:02:53.661Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x908c738 "[""0x1"",""0x1"",""0x1"",""0xdb"",""0xa232020"",""0x8ec1ef54"",""0x90877f4"",""0x90877e4"",""0x641add04"",""0x64""]" 0 219 0xa232020 01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 fb df 86 dc 1f c4 34 4b bb 26 a9 97 35 e9 b7 57 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:02:53.661Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:02:53.662Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:02:53.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2e"",""0x74e0d54"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x2e"",""0x74e0d54"",""0x206"",""0x3"",""0x750ecc4""]" 0 46 0x74e0d54 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 +2026-04-25T21:02:53.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2e"",""0x74e0d54"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x2e"",""0x74e0d54"",""0x206"",""0x3"",""0x750ecc4""]" 1 518 0x3 +2026-04-25T21:02:53.713Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2e"",""0x74e0d54"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0x2e"",""0x74e0d54"",""0x206"",""0x3"",""0x750ecc4""]" 2 3 0x750ecc4 a0 12 5b +2026-04-25T21:02:53.715Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:02:53.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0xd3"",""0xc22574"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0xd3"",""0xc22574"",""0x206"",""0x3"",""0x750ecc4""]" 0 211 0xc22574 d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 6d 22 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 fb df 86 dc 1f c4 34 4b bb 26 a9 97 35 e9 b7 57 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T21:02:53.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0xd3"",""0xc22574"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0xd3"",""0xc22574"",""0x206"",""0x3"",""0x750ecc4""]" 1 518 0x3 +2026-04-25T21:02:53.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0xd3"",""0xc22574"",""0x61cee88"",""0x76ffedd8"",""0x908c744"",""0xd3"",""0xc22574"",""0x206"",""0x3"",""0x750ecc4""]" 2 3 0x750ecc4 a0 12 5b +2026-04-25T21:02:53.719Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/082-frida-add-buffered-plain-advise-testint/frida-exit.txt b/captures/082-frida-add-buffered-plain-advise-testint/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/082-frida-add-buffered-plain-advise-testint/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/082-frida-add-buffered-plain-advise-testint/frida.stderr.txt b/captures/082-frida-add-buffered-plain-advise-testint/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/082-frida-add-buffered-plain-advise-testint/frida.stdout.jsonl b/captures/082-frida-add-buffered-plain-advise-testint/frida.stdout.jsonl new file mode 100644 index 0000000..1ff77ca --- /dev/null +++ b/captures/082-frida-add-buffered-plain-advise-testint/frida.stdout.jsonl @@ -0,0 +1,61 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=add-buffered-plain-advise --tag=TestInt --context=TestChildObject --duration=8 --write-delay-ms=1000 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\082-frida-add-buffered-plain-advise-testint\harness.log --client=MxFridaTrace-082-frida-add-buffered-plain-advise-testint`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=add-buffered-plain-advise --tag=TestInt --context=TestChildObject --duration=8 --write-delay-ms=1000 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\082-frida-add-buffered-plain-advise-testint\harness.log --client=MxFridaTrace-082-frida-add-buffered-plain-advise-testint`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:02:42.559Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:02:42.560Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:02:42.560Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:02:42.561Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:02:42.561Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:02:53.128Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:02:53.128Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:02:53.129Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:02:53.130Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:02:53.130Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:02:53.131Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:02:53.132Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:02:53.229Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:02:53.230Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:02:53.230Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:02:53.231Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9087010","outPtr":"0x7be25c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:02:53.289Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7be25c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7be25c","time":"2026-04-25T21:02:53.291Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9087010","outPtr":"0x7be25c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:02:53.291Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7be25c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7be25c","time":"2026-04-25T21:02:53.291Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7be76c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7be76c","time":"2026-04-25T21:02:53.392Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9090588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x915d298","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 d8 15 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 98 d2 15 09 34 9d 5a 0a 00 00 00 00 00 00 00 00 e4 30 59 0a 10 70 08 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0c b6 bd 00 00 00 00 00"},"time":"2026-04-25T21:02:53.393Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7be70c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7be70c","time":"2026-04-25T21:02:53.393Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7be6f8","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7be6f8","time":"2026-04-25T21:02:53.394Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7be70c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7be70c","time":"2026-04-25T21:02:53.394Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9090588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x915d298","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 38 d8 15 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 98 d2 15 09 34 9d 5a 0a 00 00 00 00 00 00 00 00 e4 30 59 0a 10 70 08 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 0c b6 bd 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:02:53.395Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7be76c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7be76c","time":"2026-04-25T21:02:53.396Z"} +{"event":"lmx.user-register-prebound.enter","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","ecx":"0x916639c","preboundHandle":151585356,"callback":"0x1","userData":"0x916639c","outPtr":"0x1","time":"2026-04-25T21:02:53.397Z"} +{"event":"lmx.user-register-prebound.leave","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","retval":"0x0","mxReferenceHandle":null,"time":"2026-04-25T21:02:53.398Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9090648","0x7be5fc","0x390b6112"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9090648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:02:53.522Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x1","0x168","0xa232020","0x8ec1ef54","0x9090214","0x9090204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa232020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:02:53.524Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:02:53.525Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:02:53.525Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x2c2","0xc28ba4","0x61cee88","0x76ffedd8","0x908c744","0x2c2","0xc28ba4","0x206","0x3","0x750ecc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xc28ba4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 32 3e f0 9c ae 8f 79 40 bc 3a 40 38 cc ba d7 a9 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x750ecc4","hex":"a0 12 5b"}],"time":"2026-04-25T21:02:53.586Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:02:53.588Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x97","0xc2367c","0x61cee88","0x76ffedd8","0x908c744","0x97","0xc2367c","0x206","0x3","0x750ecc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xc2367c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 6a 22 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 32 3e f0 9c ae 8f 79 40 bc 3a 40 38 cc ba d7 a9 79 b5 69 d3 27 66 d3 4b b2 ed 96 43 5b c0 06 ff 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x750ecc4","hex":"a0 12 5b"}],"time":"2026-04-25T21:02:53.591Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:02:53.592Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x1","0x2","0x0","0xad","0x916a448","0x7be5fc","0x390b6112"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":173,"ptr":"0x916a448","hex":"10 01 00 01 00 00 00 fb df 86 dc 1f c4 34 4b bb 26 a9 97 35 e9 b7 57 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:02:53.659Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x1","0xdb","0xa232020","0x8ec1ef54","0x90877f4","0x90877e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":219,"ptr":"0xa232020","hex":"01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 fb df 86 dc 1f c4 34 4b bb 26 a9 97 35 e9 b7 57 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:02:53.661Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:02:53.661Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:02:53.662Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x2e","0x74e0d54","0x61cee88","0x76ffedd8","0x908c744","0x2e","0x74e0d54","0x206","0x3","0x750ecc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x74e0d54","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x750ecc4","hex":"a0 12 5b"}],"time":"2026-04-25T21:02:53.713Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:02:53.715Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0xd3","0xc22574","0x61cee88","0x76ffedd8","0x908c744","0xd3","0xc22574","0x206","0x3","0x750ecc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":211,"ptr":"0xc22574","hex":"d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 6d 22 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 fb df 86 dc 1f c4 34 4b bb 26 a9 97 35 e9 b7 57 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x750ecc4","hex":"a0 12 5b"}],"time":"2026-04-25T21:02:53.718Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:02:53.719Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/082-frida-add-buffered-plain-advise-testint/harness.log b/captures/082-frida-add-buffered-plain-advise-testint/harness.log new file mode 100644 index 0000000..65d2b15 --- /dev/null +++ b/captures/082-frida-add-buffered-plain-advise-testint/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:02:42.4664825+00:00 harness.start {"Scenario":"add-buffered-plain-advise","ClientName":"MxFridaTrace-082-frida-add-buffered-plain-advise-testint","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:02:53.0198255+00:00 mx.register.begin {"ClientName":"MxFridaTrace-082-frida-add-buffered-plain-advise-testint"} +2026-04-25T21:02:53.3865036+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:02:53.3875052+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T21:02:53.3894850+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T21:02:53.3904414+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T21:02:53.3964600+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T21:02:53.3974446+00:00 mx.advise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:02:53.3984574+00:00 mx.advise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:02.4498533+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:02.4498533+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:02.4498533+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:02.4498533+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:02.4498533+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:03:06.0439959+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:03:06.0496298+00:00 harness.stop {} diff --git a/captures/083-frida-buffered-plain-advise-hooked/frida-command.txt b/captures/083-frida-buffered-plain-advise-hooked/frida-command.txt new file mode 100644 index 0000000..53758c8 --- /dev/null +++ b/captures/083-frida-buffered-plain-advise-hooked/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=add-buffered-plain-advise --tag=TestInt --context=TestChildObject --duration=8 --write-delay-ms=1000 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\083-frida-buffered-plain-advise-hooked\harness.log --client=MxFridaTrace-083-frida-buffered-plain-advise-hooked diff --git a/captures/083-frida-buffered-plain-advise-hooked/frida-events.tsv b/captures/083-frida-buffered-plain-advise-hooked/frida-events.tsv new file mode 100644 index 0000000..6f997fe --- /dev/null +++ b/captures/083-frida-buffered-plain-advise-hooked/frida-events.tsv @@ -0,0 +1,63 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:03:40.659Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:03:40.660Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:03:40.660Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:03:40.661Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:03:40.661Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:03:40.662Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:03:40.662Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:03:40.663Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:03:47.310Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:03:47.311Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:03:47.312Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:03:47.313Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:47.314Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:03:47.314Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:03:47.315Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:03:47.411Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:03:47.412Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:03:47.413Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:03:47.414Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:03:47.418Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:47.419Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x5de844 [] +2026-04-25T21:03:47.419Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:47.420Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x5de844 [] +2026-04-25T21:03:47.518Z call.enter LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x5def18 "[""0x5b78ff0"",""0x1"",""0x3e8""]" +2026-04-25T21:03:47.518Z call.leave LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x0 [] +2026-04-25T21:03:47.520Z call.enter LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x5def0c "[""0x5b78ff0"",""0x1"",""0x5deeac"",""0x5dee84"",""0x5deef0""]" +2026-04-25T21:03:47.521Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5ded4c [] +2026-04-25T21:03:47.522Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:03:47.523Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5decec [] +2026-04-25T21:03:47.523Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5decd8 [] +2026-04-25T21:03:47.524Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5decec [] +2026-04-25T21:03:47.525Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:03:47.525Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5ded4c [] +2026-04-25T21:03:47.525Z call.leave LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x0 [] +2026-04-25T21:03:47.527Z lmx.user-register-prebound.enter Lmx.dll MxConnection.UserRegisterPreboundReference 0x8f86b3c [] +2026-04-25T21:03:47.528Z lmx.user-register-prebound.leave Lmx.dll MxConnection.UserRegisterPreboundReference 0x0 [] +2026-04-25T21:03:47.653Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8eac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8eb0648"",""0x5debdc"",""0x9299463d""]" 0 1 0x2 +2026-04-25T21:03:47.653Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8eac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8eb0648"",""0x5debdc"",""0x9299463d""]" 1 314 0x8eb0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ea 08 1f 01 00 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 eb 08 20 01 00 02 00 00 00 +2026-04-25T21:03:47.656Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8eac738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa041020"",""0x6d232daa"",""0x8eb0214"",""0x8eb0204"",""0x641add04"",""0x64""]" 0 360 0xa041020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ea 08 1f 01 00 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 eb 08 20 01 00 02 00 00 00 +2026-04-25T21:03:47.657Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:03:47.658Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:03:47.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x2c2"",""0x79ab3bc"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x2c2"",""0x79ab3bc"",""0x206"",""0x3"",""0x74a421c""]" 0 706 0x79ab3bc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 70 09 d4 92 20 cd b9 4e ae f9 d2 2b ff 0f 00 08 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:03:47.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x2c2"",""0x79ab3bc"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x2c2"",""0x79ab3bc"",""0x206"",""0x3"",""0x74a421c""]" 1 518 0x3 +2026-04-25T21:03:47.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x2c2"",""0x79ab3bc"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x2c2"",""0x79ab3bc"",""0x206"",""0x3"",""0x74a421c""]" 2 3 0x74a421c 18 7a ad +2026-04-25T21:03:47.674Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:47.677Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x97"",""0xc7661c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x97"",""0xc7661c"",""0x206"",""0x3"",""0x74a421c""]" 0 151 0xc7661c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 4a 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 70 09 d4 92 20 cd b9 4e ae f9 d2 2b ff 0f 00 08 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:03:47.677Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x97"",""0xc7661c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x97"",""0xc7661c"",""0x206"",""0x3"",""0x74a421c""]" 1 518 0x3 +2026-04-25T21:03:47.677Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x97"",""0xc7661c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x97"",""0xc7661c"",""0x206"",""0x3"",""0x74a421c""]" 2 3 0x74a421c 18 7a ad +2026-04-25T21:03:47.678Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:47.843Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8eac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x8f8a448"",""0x5debdc"",""0x9299463d""]" 0 1 0x2 +2026-04-25T21:03:47.843Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8eac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x8f8a448"",""0x5debdc"",""0x9299463d""]" 1 173 0x8f8a448 10 01 00 01 00 00 00 b5 b7 35 ef 41 fe e9 46 97 93 62 43 49 d8 cb f7 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:03:47.844Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8eac738 "[""0x1"",""0x1"",""0x1"",""0xdb"",""0xa041020"",""0x6d232daa"",""0x8ea77f4"",""0x8ea77e4"",""0x641add04"",""0x64""]" 0 219 0xa041020 01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 b5 b7 35 ef 41 fe e9 46 97 93 62 43 49 d8 cb f7 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:03:47.845Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:03:47.846Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:03:47.874Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x2e"",""0xc7aa3c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x2e"",""0xc7aa3c"",""0x206"",""0x3"",""0x74a421c""]" 0 46 0xc7aa3c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 +2026-04-25T21:03:47.874Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x2e"",""0xc7aa3c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x2e"",""0xc7aa3c"",""0x206"",""0x3"",""0x74a421c""]" 1 518 0x3 +2026-04-25T21:03:47.874Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0x2e"",""0xc7aa3c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0x2e"",""0xc7aa3c"",""0x206"",""0x3"",""0x74a421c""]" 2 3 0x74a421c 18 7a ad +2026-04-25T21:03:47.876Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:47.879Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0xd3"",""0xc7661c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0xd3"",""0xc7661c"",""0x206"",""0x3"",""0x74a421c""]" 0 211 0xc7661c d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 4b 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 b5 b7 35 ef 41 fe e9 46 97 93 62 43 49 d8 cb f7 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T21:03:47.879Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0xd3"",""0xc7661c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0xd3"",""0xc7661c"",""0x206"",""0x3"",""0x74a421c""]" 1 518 0x3 +2026-04-25T21:03:47.879Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8eac738 "[""0xd3"",""0xc7661c"",""0x714e980"",""0x76ffedd8"",""0x8eac744"",""0xd3"",""0xc7661c"",""0x206"",""0x3"",""0x74a421c""]" 2 3 0x74a421c 18 7a ad +2026-04-25T21:03:47.880Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/083-frida-buffered-plain-advise-hooked/frida-exit.txt b/captures/083-frida-buffered-plain-advise-hooked/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/083-frida-buffered-plain-advise-hooked/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/083-frida-buffered-plain-advise-hooked/frida.stderr.txt b/captures/083-frida-buffered-plain-advise-hooked/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/083-frida-buffered-plain-advise-hooked/frida.stdout.jsonl b/captures/083-frida-buffered-plain-advise-hooked/frida.stdout.jsonl new file mode 100644 index 0000000..ceb0f09 --- /dev/null +++ b/captures/083-frida-buffered-plain-advise-hooked/frida.stdout.jsonl @@ -0,0 +1,68 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=add-buffered-plain-advise --tag=TestInt --context=TestChildObject --duration=8 --write-delay-ms=1000 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\083-frida-buffered-plain-advise-hooked\harness.log --client=MxFridaTrace-083-frida-buffered-plain-advise-hooked`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=add-buffered-plain-advise --tag=TestInt --context=TestChildObject --duration=8 --write-delay-ms=1000 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\083-frida-buffered-plain-advise-hooked\harness.log --client=MxFridaTrace-083-frida-buffered-plain-advise-hooked`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:03:40.659Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:03:40.660Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:03:40.660Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:03:40.661Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:03:40.661Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:03:40.662Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:03:40.662Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:03:40.663Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:03:47.310Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:03:47.311Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:03:47.312Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:03:47.313Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:03:47.314Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:03:47.314Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:03:47.315Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:03:47.411Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:03:47.412Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:03:47.413Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:03:47.414Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8ea7010","outPtr":"0x5de844","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:03:47.418Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x5de844","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x5de844","time":"2026-04-25T21:03:47.419Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8ea7010","outPtr":"0x5de844","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:03:47.419Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x5de844","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x5de844","time":"2026-04-25T21:03:47.420Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","address":"0x65a4fc80","ecx":"0x5def18","args":["0x5b78ff0","0x1","0x3e8"],"time":"2026-04-25T21:03:47.518Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","retval":"0x0","time":"2026-04-25T21:03:47.518Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","address":"0x65a5121d","ecx":"0x5def0c","args":["0x5b78ff0","0x1","0x5deeac","0x5dee84","0x5deef0"],"time":"2026-04-25T21:03:47.520Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8eb05d8","outPtr":"0x5ded4c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x5ded4c","time":"2026-04-25T21:03:47.521Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8eb0588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f7d958","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 e8 d9 f7 08 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 58 d9 f7 08 54 8f 2d 0a 00 00 00 00 00 00 00 00 64 22 ac 07 10 70 ea 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 e4 34 c9 00 00 00 00 00"},"time":"2026-04-25T21:03:47.522Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8eb05d8","outPtr":"0x5decec","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x5decec","time":"2026-04-25T21:03:47.523Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8eb05d8","outPtr":"0x5decd8","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x5decd8","time":"2026-04-25T21:03:47.523Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8eb05d8","outPtr":"0x5decec","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x5decec","time":"2026-04-25T21:03:47.524Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8eb0588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f7d958","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 e8 d9 f7 08 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 58 d9 f7 08 54 8f 2d 0a 00 00 00 00 00 00 00 00 64 22 ac 07 10 70 ea 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 e4 34 c9 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:03:47.525Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8eb05d8","outPtr":"0x5ded4c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x5ded4c","time":"2026-04-25T21:03:47.525Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","retval":"0x0","time":"2026-04-25T21:03:47.525Z"} +{"event":"lmx.user-register-prebound.enter","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","ecx":"0x8f86b3c","preboundHandle":149619276,"callback":"0x1","userData":"0x8f86b3c","outPtr":"0x1","time":"2026-04-25T21:03:47.527Z"} +{"event":"lmx.user-register-prebound.leave","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","retval":"0x0","mxReferenceHandle":null,"time":"2026-04-25T21:03:47.528Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8eac738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8eb0648","0x5debdc","0x9299463d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8eb0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ea 08 1f 01 00 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 eb 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:03:47.653Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8eac738","args":["0x1","0x1","0x1","0x168","0xa041020","0x6d232daa","0x8eb0214","0x8eb0204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa041020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc ea 08 1f 01 00 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 eb 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:03:47.656Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:03:47.657Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:03:47.658Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8eac738","args":["0x2c2","0x79ab3bc","0x714e980","0x76ffedd8","0x8eac744","0x2c2","0x79ab3bc","0x206","0x3","0x74a421c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x79ab3bc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 70 09 d4 92 20 cd b9 4e ae f9 d2 2b ff 0f 00 08 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74a421c","hex":"18 7a ad"}],"time":"2026-04-25T21:03:47.672Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:47.674Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8eac738","args":["0x97","0xc7661c","0x714e980","0x76ffedd8","0x8eac744","0x97","0xc7661c","0x206","0x3","0x74a421c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xc7661c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 4a 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 70 09 d4 92 20 cd b9 4e ae f9 d2 2b ff 0f 00 08 3b ef a4 c9 4d 2e 36 49 87 59 27 a4 ac d8 b2 41 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74a421c","hex":"18 7a ad"}],"time":"2026-04-25T21:03:47.677Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:47.678Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8eac738","0x1","0x1","0x1","0x2","0x0","0xad","0x8f8a448","0x5debdc","0x9299463d"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":173,"ptr":"0x8f8a448","hex":"10 01 00 01 00 00 00 b5 b7 35 ef 41 fe e9 46 97 93 62 43 49 d8 cb f7 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:03:47.843Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8eac738","args":["0x1","0x1","0x1","0xdb","0xa041020","0x6d232daa","0x8ea77f4","0x8ea77e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":219,"ptr":"0xa041020","hex":"01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 b5 b7 35 ef 41 fe e9 46 97 93 62 43 49 d8 cb f7 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:03:47.844Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:03:47.845Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:03:47.846Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8eac738","args":["0x2e","0xc7aa3c","0x714e980","0x76ffedd8","0x8eac744","0x2e","0xc7aa3c","0x206","0x3","0x74a421c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0xc7aa3c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74a421c","hex":"18 7a ad"}],"time":"2026-04-25T21:03:47.874Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:47.876Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8eac738","args":["0xd3","0xc7661c","0x714e980","0x76ffedd8","0x8eac744","0xd3","0xc7661c","0x206","0x3","0x74a421c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":211,"ptr":"0xc7661c","hex":"d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 4b 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 b5 b7 35 ef 41 fe e9 46 97 93 62 43 49 d8 cb f7 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74a421c","hex":"18 7a ad"}],"time":"2026-04-25T21:03:47.879Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:47.880Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/083-frida-buffered-plain-advise-hooked/harness.log b/captures/083-frida-buffered-plain-advise-hooked/harness.log new file mode 100644 index 0000000..2d1a2b3 --- /dev/null +++ b/captures/083-frida-buffered-plain-advise-hooked/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:03:40.5673727+00:00 harness.start {"Scenario":"add-buffered-plain-advise","ClientName":"MxFridaTrace-083-frida-buffered-plain-advise-hooked","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:03:47.1546015+00:00 mx.register.begin {"ClientName":"MxFridaTrace-083-frida-buffered-plain-advise-hooked"} +2026-04-25T21:03:47.5160787+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:03:47.5170495+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T21:03:47.5190281+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T21:03:47.5190281+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T21:03:47.5260976+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T21:03:47.5270623+00:00 mx.advise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:47.5281184+00:00 mx.advise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:56.5909454+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:56.5909454+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:56.5909454+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:56.5909454+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:56.5909454+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:04:00.2299124+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:04:00.2356789+00:00 harness.stop {} diff --git a/captures/084-frida-buffered-external-write-hooked/frida-command.txt b/captures/084-frida-buffered-external-write-hooked/frida-command.txt new file mode 100644 index 0000000..b9ef071 --- /dev/null +++ b/captures/084-frida-buffered-external-write-hooked/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=134,135 --user-id=1 --duration=8 --write-delay-ms=1000 --write-interval-ms=2500 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\084-frida-buffered-external-write-hooked\harness.log --client=MxFridaTrace-084-frida-buffered-external-write-hooked diff --git a/captures/084-frida-buffered-external-write-hooked/frida-events.tsv b/captures/084-frida-buffered-external-write-hooked/frida-events.tsv new file mode 100644 index 0000000..9f99001 --- /dev/null +++ b/captures/084-frida-buffered-external-write-hooked/frida-events.tsv @@ -0,0 +1,147 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:03:40.700Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:03:40.701Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:03:40.701Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:03:40.702Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:03:40.703Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:03:40.703Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:03:40.704Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:03:40.705Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:03:53.699Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:03:53.700Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:03:53.700Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:03:53.701Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:53.702Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:03:53.702Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:03:53.703Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:03:53.776Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:53.777Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe250 [] +2026-04-25T21:03:53.777Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:53.778Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe250 [] +2026-04-25T21:03:53.800Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:03:53.801Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:03:53.802Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:03:53.803Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:03:53.880Z call.enter LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0xcfe928 "[""0x5e98ff0"",""0x1"",""0x3e8""]" +2026-04-25T21:03:53.881Z call.leave LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x0 [] +2026-04-25T21:03:53.883Z call.enter LmxProxy.dll CLMXProxyServer.AddBufferedItem 0xcfe91c "[""0x5e98ff0"",""0x1"",""0xcfe8bc"",""0xcfe894"",""0xcfe900""]" +2026-04-25T21:03:53.883Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe75c [] +2026-04-25T21:03:53.884Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:03:53.885Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe6fc [] +2026-04-25T21:03:53.885Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe6e8 [] +2026-04-25T21:03:53.886Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe6fc [] +2026-04-25T21:03:53.887Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:03:53.887Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe75c [] +2026-04-25T21:03:53.888Z call.leave LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x0 [] +2026-04-25T21:03:53.889Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfe928 "[""0x5e98ff0"",""0x1"",""0x1"",""0x2e315755"",""0x74794704""]" +2026-04-25T21:03:53.890Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:03:54.015Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9330648"",""0xcfe5ec"",""0x102a10ba""]" 0 1 0x2 +2026-04-25T21:03:54.015Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9330648"",""0xcfe5ec"",""0x102a10ba""]" 1 314 0x9330648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 32 09 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 33 09 20 01 00 02 00 00 00 +2026-04-25T21:03:54.018Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x932c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa4d7020"",""0xed2ffe76"",""0x9330214"",""0x9330204"",""0x641add04"",""0x64""]" 0 360 0xa4d7020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 32 09 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 33 09 20 01 00 02 00 00 00 +2026-04-25T21:03:54.019Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:03:54.019Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:03:54.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x2c2"",""0x7e8fe44"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x2c2"",""0x7e8fe44"",""0x206"",""0x3"",""0x78f49bc""]" 0 706 0x7e8fe44 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 20 f7 44 e8 4f 2e 7d 46 83 ab f0 0a c9 32 62 2f 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:03:54.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x2c2"",""0x7e8fe44"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x2c2"",""0x7e8fe44"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:54.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x2c2"",""0x7e8fe44"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x2c2"",""0x7e8fe44"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:54.043Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:54.047Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x97"",""0x7e8fe44"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x97"",""0x7e8fe44"",""0x206"",""0x3"",""0x78f49bc""]" 0 151 0x7e8fe44 97 00 00 00 01 00 69 00 00 00 00 00 00 00 66 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 20 f7 44 e8 4f 2e 7d 46 83 ab f0 0a c9 32 62 2f 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:03:54.047Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x97"",""0x7e8fe44"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x97"",""0x7e8fe44"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:54.047Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x97"",""0x7e8fe44"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x97"",""0x7e8fe44"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:54.051Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:54.106Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x940a448"",""0xcfe5ec"",""0x102a10ba""]" 0 1 0x2 +2026-04-25T21:03:54.106Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x940a448"",""0xcfe5ec"",""0x102a10ba""]" 1 173 0x940a448 10 01 00 01 00 00 00 1e 7a 30 d6 7d 43 72 48 ae a6 14 e9 52 cf 57 31 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:03:54.107Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x932c738 "[""0x1"",""0x1"",""0x1"",""0xdb"",""0xa4d7020"",""0xed2ffe76"",""0x93277f4"",""0x93277e4"",""0x641add04"",""0x64""]" 0 219 0xa4d7020 01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 1e 7a 30 d6 7d 43 72 48 ae a6 14 e9 52 cf 57 31 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:03:54.108Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:03:54.108Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:03:54.170Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x2e"",""0x7e9315c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x2e"",""0x7e9315c"",""0x206"",""0x3"",""0x78f49bc""]" 0 46 0x7e9315c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 +2026-04-25T21:03:54.170Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x2e"",""0x7e9315c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x2e"",""0x7e9315c"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:54.170Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x2e"",""0x7e9315c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x2e"",""0x7e9315c"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:54.171Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:54.223Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0xd3"",""0x7e92054"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0xd3"",""0x7e92054"",""0x206"",""0x3"",""0x78f49bc""]" 0 211 0x7e92054 d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 69 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 1e 7a 30 d6 7d 43 72 48 ae a6 14 e9 52 cf 57 31 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T21:03:54.223Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0xd3"",""0x7e92054"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0xd3"",""0x7e92054"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:54.223Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0xd3"",""0x7e92054"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0xd3"",""0x7e92054"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:54.225Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:54.940Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:03:54.941Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe788 [] +2026-04-25T21:03:54.942Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:03:54.942Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe718 [] +2026-04-25T21:03:54.943Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe718 [] +2026-04-25T21:03:54.943Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe718 [] +2026-04-25T21:03:54.944Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:03:54.945Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:03:54.945Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfe8d4 "[""0x5e98ff0"",""0x1"",""0x2"",""0x2e315755"",""0x74794704""]" +2026-04-25T21:03:54.946Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:54.946Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe754 [] +2026-04-25T21:03:54.946Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:03:54.947Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfd3e8 [] +2026-04-25T21:03:54.947Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:03:54.999Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x93fd910"",""0xcfe598"",""0x102a110e""]" 0 2 0x2 +2026-04-25T21:03:54.999Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x93fd910"",""0xcfe598"",""0x102a110e""]" 1 39 0x93fd910 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:03:55.001Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x932c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa4d7020"",""0xed2ffea2"",""0x93277f4"",""0x93277e4"",""0x641add04"",""0x0""]" 0 85 0xa4d7020 01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:03:55.001Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:03:55.001Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:03:55.014Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x5c"",""0x7e9315c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x5c"",""0x7e9315c"",""0x206"",""0x3"",""0x78f49bc""]" 0 92 0x7e9315c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 +2026-04-25T21:03:55.014Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x5c"",""0x7e9315c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x5c"",""0x7e9315c"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:55.014Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x5c"",""0x7e9315c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x5c"",""0x7e9315c"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:55.016Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:55.019Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6c"",""0x7e92054"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6c"",""0x7e92054"",""0x206"",""0x3"",""0x78f49bc""]" 0 108 0x7e92054 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 a1 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 03 00 00 00 03 00 00 00 c0 00 10 04 46 b8 f3 d4 dc 01 02 +2026-04-25T21:03:55.019Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6c"",""0x7e92054"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6c"",""0x7e92054"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:55.019Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6c"",""0x7e92054"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6c"",""0x7e92054"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:55.020Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:55.974Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcfe8c8 "[""0x5e98ff0"",""0x1"",""0x2"",""0x3"",""0x0"",""0x86"",""0x0"",""0x1"",""0x2e315755"",""0x74794704""]" +2026-04-25T21:03:55.974Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:03:56.077Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x93fdeb0"",""0xcfe598"",""0x102a110e""]" 0 2 0x2 +2026-04-25T21:03:56.077Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x93fdeb0"",""0xcfe598"",""0x102a110e""]" 1 40 0x93fdeb0 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 86 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 01 00 00 00 +2026-04-25T21:03:56.078Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x932c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa4d7020"",""0xed2ffea2"",""0x940aa5c"",""0x940aa4c"",""0x641add04"",""0x0""]" 0 86 0xa4d7020 01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 86 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 01 00 00 00 +2026-04-25T21:03:56.079Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:03:56.079Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:03:56.082Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x33"",""0x7e5b12c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x33"",""0x7e5b12c"",""0x206"",""0x3"",""0x78f49bc""]" 0 51 0x7e5b12c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:03:56.082Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x33"",""0x7e5b12c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x33"",""0x7e5b12c"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:56.082Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x33"",""0x7e5b12c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x33"",""0x7e5b12c"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:56.083Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:03:56.085Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x58"",""0x7e54afc"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x58"",""0x7e54afc"",""0x206"",""0x3"",""0x78f49bc""]" 0 88 0x7e54afc 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 a2 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 03 00 00 00 c0 00 00 fb 6b 07 f7 d4 dc 01 02 +2026-04-25T21:03:56.085Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x58"",""0x7e54afc"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x58"",""0x7e54afc"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:03:56.085Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x58"",""0x7e54afc"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x58"",""0x7e54afc"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:03:56.087Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:04:01.030Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:04:01.030Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe788 [] +2026-04-25T21:04:01.031Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:04:01.032Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe718 [] +2026-04-25T21:04:01.033Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe718 [] +2026-04-25T21:04:01.033Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfe718 [] +2026-04-25T21:04:01.034Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:04:01.034Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:04:01.035Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfe8d4 "[""0x5e98ff0"",""0x1"",""0x3"",""0x2e315755"",""0x74794704""]" +2026-04-25T21:04:01.035Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:04:01.036Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe754 [] +2026-04-25T21:04:01.036Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:04:01.037Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfd3e8 [] +2026-04-25T21:04:01.037Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:04:01.140Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x93fe0a8"",""0xcfe598"",""0x102a110e""]" 0 2 0x2 +2026-04-25T21:04:01.140Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x93fe0a8"",""0xcfe598"",""0x102a110e""]" 1 39 0x93fe0a8 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 +2026-04-25T21:04:01.141Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x932c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa4d7020"",""0xed2ffea2"",""0x93277f4"",""0x93277e4"",""0x641add04"",""0x0""]" 0 85 0xa4d7020 01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 +2026-04-25T21:04:01.142Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:04:01.142Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:04:01.145Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x5c"",""0x7e5b12c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x5c"",""0x7e5b12c"",""0x206"",""0x3"",""0x78f49bc""]" 0 92 0x7e5b12c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 +2026-04-25T21:04:01.145Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x5c"",""0x7e5b12c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x5c"",""0x7e5b12c"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:04:01.145Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x5c"",""0x7e5b12c"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x5c"",""0x7e5b12c"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:04:01.147Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:04:01.151Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6c"",""0x7e4aadc"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6c"",""0x7e4aadc"",""0x206"",""0x3"",""0x78f49bc""]" 0 108 0x7e4aadc 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 a3 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 04 00 00 00 03 00 00 00 c0 00 00 fb 6b 07 f7 d4 dc 01 02 +2026-04-25T21:04:01.151Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6c"",""0x7e4aadc"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6c"",""0x7e4aadc"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:04:01.151Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6c"",""0x7e4aadc"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6c"",""0x7e4aadc"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:04:01.153Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:04:02.062Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcfe8c8 "[""0x5e98ff0"",""0x1"",""0x3"",""0x3"",""0x0"",""0x87"",""0x0"",""0x1"",""0x2e315755"",""0x74794704""]" +2026-04-25T21:04:02.063Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:04:02.115Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x93fdb50"",""0xcfe598"",""0x102a110e""]" 0 2 0x2 +2026-04-25T21:04:02.115Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x932c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x93fdb50"",""0xcfe598"",""0x102a110e""]" 1 40 0x93fdb50 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 87 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 02 00 00 00 +2026-04-25T21:04:02.116Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x932c738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa4d7020"",""0xed2ffea2"",""0x9409584"",""0x9409574"",""0x641add04"",""0x0""]" 0 86 0xa4d7020 01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 87 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 02 00 00 00 +2026-04-25T21:04:02.116Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:04:02.117Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:04:02.119Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x33"",""0x7e539f4"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x33"",""0x7e539f4"",""0x206"",""0x3"",""0x78f49bc""]" 0 51 0x7e539f4 33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:04:02.119Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x33"",""0x7e539f4"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x33"",""0x7e539f4"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:04:02.119Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x33"",""0x7e539f4"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x33"",""0x7e539f4"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:04:02.121Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:04:02.124Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6b"",""0x7e96474"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6b"",""0x7e96474"",""0x206"",""0x3"",""0x78f49bc""]" 0 107 0x7e96474 6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 a4 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 03 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02 87 00 00 00 04 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02 +2026-04-25T21:04:02.124Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6b"",""0x7e96474"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6b"",""0x7e96474"",""0x206"",""0x3"",""0x78f49bc""]" 1 518 0x3 +2026-04-25T21:04:02.124Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x932c738 "[""0x6b"",""0x7e96474"",""0x762e818"",""0x76ffedd8"",""0x932c744"",""0x6b"",""0x7e96474"",""0x206"",""0x3"",""0x78f49bc""]" 2 3 0x78f49bc c0 7b fb +2026-04-25T21:04:02.126Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/084-frida-buffered-external-write-hooked/frida-exit.txt b/captures/084-frida-buffered-external-write-hooked/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/084-frida-buffered-external-write-hooked/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/084-frida-buffered-external-write-hooked/frida.stderr.txt b/captures/084-frida-buffered-external-write-hooked/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/084-frida-buffered-external-write-hooked/frida.stdout.jsonl b/captures/084-frida-buffered-external-write-hooked/frida.stdout.jsonl new file mode 100644 index 0000000..4ec2784 --- /dev/null +++ b/captures/084-frida-buffered-external-write-hooked/frida.stdout.jsonl @@ -0,0 +1,132 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=134,135 --user-id=1 --duration=8 --write-delay-ms=1000 --write-interval-ms=2500 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\084-frida-buffered-external-write-hooked\harness.log --client=MxFridaTrace-084-frida-buffered-external-write-hooked`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=134,135 --user-id=1 --duration=8 --write-delay-ms=1000 --write-interval-ms=2500 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\084-frida-buffered-external-write-hooked\harness.log --client=MxFridaTrace-084-frida-buffered-external-write-hooked`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:03:40.700Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:03:40.701Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:03:40.701Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:03:40.702Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:03:40.703Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:03:40.703Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:03:40.704Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:03:40.705Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:03:53.699Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:03:53.700Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:03:53.700Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:03:53.701Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:03:53.702Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:03:53.702Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:03:53.703Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9327010","outPtr":"0xcfe250","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:03:53.776Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe250","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe250","time":"2026-04-25T21:03:53.777Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9327010","outPtr":"0xcfe250","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:03:53.777Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe250","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe250","time":"2026-04-25T21:03:53.778Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:03:53.800Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:03:53.801Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:03:53.802Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:03:53.803Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","address":"0x65a4fc80","ecx":"0xcfe928","args":["0x5e98ff0","0x1","0x3e8"],"time":"2026-04-25T21:03:53.880Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","retval":"0x0","time":"2026-04-25T21:03:53.881Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","address":"0x65a5121d","ecx":"0xcfe91c","args":["0x5e98ff0","0x1","0xcfe8bc","0xcfe894","0xcfe900"],"time":"2026-04-25T21:03:53.883Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93305d8","outPtr":"0xcfe75c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfe75c","time":"2026-04-25T21:03:53.883Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9330588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93fe060","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 48 dd 3f 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 e0 3f 09 7c 27 76 0a 00 00 00 00 00 00 00 00 2c 19 fa 07 10 70 32 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 a0 f6 00 00 00 00 00"},"time":"2026-04-25T21:03:53.884Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93305d8","outPtr":"0xcfe6fc","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfe6fc","time":"2026-04-25T21:03:53.885Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93305d8","outPtr":"0xcfe6e8","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfe6e8","time":"2026-04-25T21:03:53.885Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93305d8","outPtr":"0xcfe6fc","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfe6fc","time":"2026-04-25T21:03:53.886Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9330588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93fe060","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 48 dd 3f 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 e0 3f 09 7c 27 76 0a 00 00 00 00 00 00 00 00 2c 19 fa 07 10 70 32 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 04 a0 f6 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:03:53.887Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93305d8","outPtr":"0xcfe75c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfe75c","time":"2026-04-25T21:03:53.887Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","retval":"0x0","time":"2026-04-25T21:03:53.888Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfe928","args":["0x5e98ff0","0x1","0x1","0x2e315755","0x74794704"],"time":"2026-04-25T21:03:53.889Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:03:53.890Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x932c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9330648","0xcfe5ec","0x102a10ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9330648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 32 09 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 33 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:03:54.015Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x932c738","args":["0x1","0x1","0x1","0x168","0xa4d7020","0xed2ffe76","0x9330214","0x9330204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa4d7020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 32 09 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 33 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:03:54.018Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:03:54.019Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:03:54.019Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x2c2","0x7e8fe44","0x762e818","0x76ffedd8","0x932c744","0x2c2","0x7e8fe44","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7e8fe44","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 20 f7 44 e8 4f 2e 7d 46 83 ab f0 0a c9 32 62 2f 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:54.041Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:54.043Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x97","0x7e8fe44","0x762e818","0x76ffedd8","0x932c744","0x97","0x7e8fe44","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7e8fe44","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 66 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 20 f7 44 e8 4f 2e 7d 46 83 ab f0 0a c9 32 62 2f 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:54.047Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:54.051Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x932c738","0x1","0x1","0x1","0x2","0x0","0xad","0x940a448","0xcfe5ec","0x102a10ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":173,"ptr":"0x940a448","hex":"10 01 00 01 00 00 00 1e 7a 30 d6 7d 43 72 48 ae a6 14 e9 52 cf 57 31 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:03:54.106Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x932c738","args":["0x1","0x1","0x1","0xdb","0xa4d7020","0xed2ffe76","0x93277f4","0x93277e4","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":219,"ptr":"0xa4d7020","hex":"01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 1e 7a 30 d6 7d 43 72 48 ae a6 14 e9 52 cf 57 31 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:03:54.107Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:03:54.108Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:03:54.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x2e","0x7e9315c","0x762e818","0x76ffedd8","0x932c744","0x2e","0x7e9315c","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7e9315c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:54.170Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:54.171Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0xd3","0x7e92054","0x762e818","0x76ffedd8","0x932c744","0xd3","0x7e92054","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":211,"ptr":"0x7e92054","hex":"d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 69 23 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 1e 7a 30 d6 7d 43 72 48 ae a6 14 e9 52 cf 57 31 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:54.223Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:54.225Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:03:54.940Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93d1388","outPtr":"0xcfe788","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe788","time":"2026-04-25T21:03:54.941Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9409f38","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93fdfd0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 40 09 e8 63 19 10 00 14 e9 52 02 00 00 00 60 80 32 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 36 f6 0f 00 d0 df 3f 09 6c 34 76 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 32 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 d0 38 40 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 28 3b 40 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 a7 f8 07 00 3b 40 09"},"time":"2026-04-25T21:03:54.942Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9409f88","outPtr":"0xcfe718","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe718","time":"2026-04-25T21:03:54.942Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9409f88","outPtr":"0xcfe718","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe718","time":"2026-04-25T21:03:54.943Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9409f88","outPtr":"0xcfe718","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe718","time":"2026-04-25T21:03:54.943Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9409f38","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93fdfd0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 40 09 e8 63 19 10 00 14 e9 52 02 00 00 00 60 80 32 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 36 f6 0f 00 d0 df 3f 09 6c 34 76 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 32 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 d0 38 40 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 28 3b 40 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 a7 f8 07 00 3b 40 09"},"retval":"0x70fe1e01","time":"2026-04-25T21:03:54.944Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:03:54.945Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfe8d4","args":["0x5e98ff0","0x1","0x2","0x2e315755","0x74794704"],"time":"2026-04-25T21:03:54.945Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9327010","outPtr":"0xcfe754","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:03:54.946Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe754","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe754","time":"2026-04-25T21:03:54.946Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9327010","outPtr":"0xcfd3e8","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:03:54.946Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfd3e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfd3e8","time":"2026-04-25T21:03:54.947Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:03:54.947Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x932c738","0x1","0x1","0x2","0x2","0x0","0x27","0x93fd910","0xcfe598","0x102a110e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x93fd910","hex":"1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:03:54.999Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x932c738","args":["0x1","0x1","0x2","0x55","0xa4d7020","0xed2ffea2","0x93277f4","0x93277e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa4d7020","hex":"01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:03:55.001Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:03:55.001Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:03:55.001Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x5c","0x7e9315c","0x762e818","0x76ffedd8","0x932c744","0x5c","0x7e9315c","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7e9315c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:55.014Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:55.016Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x6c","0x7e92054","0x762e818","0x76ffedd8","0x932c744","0x6c","0x7e92054","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7e92054","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 a1 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 03 00 00 00 03 00 00 00 c0 00 10 04 46 b8 f3 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:55.019Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:55.020Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcfe8c8","args":["0x5e98ff0","0x1","0x2","0x3","0x0","0x86","0x0","0x1","0x2e315755","0x74794704"],"time":"2026-04-25T21:03:55.974Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:03:55.974Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x932c738","0x1","0x1","0x2","0x2","0x0","0x28","0x93fdeb0","0xcfe598","0x102a110e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x93fdeb0","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 86 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 01 00 00 00"}],"time":"2026-04-25T21:03:56.077Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x932c738","args":["0x1","0x1","0x2","0x56","0xa4d7020","0xed2ffea2","0x940aa5c","0x940aa4c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa4d7020","hex":"01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 86 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 01 00 00 00"}],"time":"2026-04-25T21:03:56.078Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:03:56.079Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:03:56.079Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x33","0x7e5b12c","0x762e818","0x76ffedd8","0x932c744","0x33","0x7e5b12c","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7e5b12c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:56.082Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:56.083Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x58","0x7e54afc","0x762e818","0x76ffedd8","0x932c744","0x58","0x7e54afc","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7e54afc","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 a2 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 03 00 00 00 c0 00 00 fb 6b 07 f7 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:03:56.085Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:03:56.087Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:04:01.030Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93d1388","outPtr":"0xcfe788","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe788","time":"2026-04-25T21:04:01.030Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9409f38","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93fdf40","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 40 09 e8 63 19 10 00 14 e9 52 02 00 00 00 60 a2 40 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 36 f6 0f 00 40 df 3f 09 5c 2f 76 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 32 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 d0 38 40 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 28 3b 40 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 14 05 77 0a 00 3b 40 09"},"time":"2026-04-25T21:04:01.031Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9409f88","outPtr":"0xcfe718","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe718","time":"2026-04-25T21:04:01.032Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9409f88","outPtr":"0xcfe718","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe718","time":"2026-04-25T21:04:01.033Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9409f88","outPtr":"0xcfe718","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe718","time":"2026-04-25T21:04:01.033Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9409f38","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93fdf40","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 9f 40 09 e8 63 19 10 00 14 e9 52 02 00 00 00 60 a2 40 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 01 01 00 49 00 00 00 00 07 00 00 00 36 f6 0f 00 40 df 3f 09 5c 2f 76 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 32 09 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 d0 38 40 09 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 65 00 63 28 3b 40 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 14 05 77 0a 00 3b 40 09"},"retval":"0x70fe1e01","time":"2026-04-25T21:04:01.034Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:04:01.034Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfe8d4","args":["0x5e98ff0","0x1","0x3","0x2e315755","0x74794704"],"time":"2026-04-25T21:04:01.035Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9327010","outPtr":"0xcfe754","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:04:01.035Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe754","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfe754","time":"2026-04-25T21:04:01.036Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9327010","outPtr":"0xcfd3e8","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:04:01.036Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfd3e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xcfd3e8","time":"2026-04-25T21:04:01.037Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:04:01.037Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x932c738","0x1","0x1","0x2","0x2","0x0","0x27","0x93fe0a8","0xcfe598","0x102a110e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x93fe0a8","hex":"1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00"}],"time":"2026-04-25T21:04:01.140Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x932c738","args":["0x1","0x1","0x2","0x55","0xa4d7020","0xed2ffea2","0x93277f4","0x93277e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa4d7020","hex":"01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00"}],"time":"2026-04-25T21:04:01.141Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:04:01.142Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:04:01.142Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x5c","0x7e5b12c","0x762e818","0x76ffedd8","0x932c744","0x5c","0x7e5b12c","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7e5b12c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:04:01.145Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:04:01.147Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x6c","0x7e4aadc","0x762e818","0x76ffedd8","0x932c744","0x6c","0x7e4aadc","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7e4aadc","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 a3 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 94 b8 b7 86 a5 16 2c 40 a5 9c d2 d7 5e 1c 6e 8b 04 00 00 00 03 00 00 00 c0 00 00 fb 6b 07 f7 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:04:01.151Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:04:01.153Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcfe8c8","args":["0x5e98ff0","0x1","0x3","0x3","0x0","0x87","0x0","0x1","0x2e315755","0x74794704"],"time":"2026-04-25T21:04:02.062Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:04:02.063Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x932c738","0x1","0x1","0x2","0x2","0x0","0x28","0x93fdb50","0xcfe598","0x102a110e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x93fdb50","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 87 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 02 00 00 00"}],"time":"2026-04-25T21:04:02.115Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x932c738","args":["0x1","0x1","0x2","0x56","0xa4d7020","0xed2ffea2","0x9409584","0x9409574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa4d7020","hex":"01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 87 00 00 00 ff ff 00 00 00 00 00 00 00 00 60 3f db 0b 02 00 00 00"}],"time":"2026-04-25T21:04:02.116Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:04:02.116Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:04:02.117Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x33","0x7e539f4","0x762e818","0x76ffedd8","0x932c744","0x33","0x7e539f4","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7e539f4","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:04:02.119Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:04:02.121Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x932c738","args":["0x6b","0x7e96474","0x762e818","0x76ffedd8","0x932c744","0x6b","0x7e96474","0x206","0x3","0x78f49bc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":107,"ptr":"0x7e96474","hex":"6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 a4 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 b2 c0 3c 8d 74 e2 12 4a ba 3c 2c 8f 26 d5 2f 70 03 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02 87 00 00 00 04 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x78f49bc","hex":"c0 7b fb"}],"time":"2026-04-25T21:04:02.124Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:04:02.126Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/084-frida-buffered-external-write-hooked/harness.log b/captures/084-frida-buffered-external-write-hooked/harness.log new file mode 100644 index 0000000..54065ff --- /dev/null +++ b/captures/084-frida-buffered-external-write-hooked/harness.log @@ -0,0 +1,40 @@ +2026-04-25T21:03:40.6173705+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxFridaTrace-084-frida-buffered-external-write-hooked","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"","WriteValues":["134","135"],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":2500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:03:53.5165692+00:00 mx.register.begin {"ClientName":"MxFridaTrace-084-frida-buffered-external-write-hooked"} +2026-04-25T21:03:53.8774814+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:03:53.8784800+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T21:03:53.8814844+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T21:03:53.8814844+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T21:03:53.8884206+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T21:03:53.8894273+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:53.8904086+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:03:54.9358254+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"134"},"UserId":1} +2026-04-25T21:03:54.9397692+00:00 mx.writer-additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:03:54.9457765+00:00 mx.writer-additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T21:03:54.9457765+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T21:03:54.9477674+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T21:03:55.9710462+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":2,"Value":{"Type":"System.Int32","Value":"134"},"UserId":1} +2026-04-25T21:03:55.9741041+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T21:03:58.4774588+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T21:03:58.4774588+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T21:03:58.4774588+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T21:03:58.4774588+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T21:03:58.4774588+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":0} +2026-04-25T21:04:01.0291675+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"135"},"UserId":1} +2026-04-25T21:04:01.0291675+00:00 mx.writer-additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:04:01.0341690+00:00 mx.writer-additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":3} +2026-04-25T21:04:01.0341690+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T21:04:01.0371718+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T21:04:02.0624658+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":3,"Value":{"Type":"System.Int32","Value":"135"},"UserId":1} +2026-04-25T21:04:02.0634805+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T21:04:04.5753037+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T21:04:04.5753037+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T21:04:04.5753037+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T21:04:04.5753037+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T21:04:04.5753037+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":1} +2026-04-25T21:04:15.1016400+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:04:15.1016400+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:04:15.1016400+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:04:15.1016400+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:04:15.1016400+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:04:15.2741625+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:04:15.2812218+00:00 harness.stop {} diff --git a/captures/085-frida-subscribe-property-buffer/frida-command.txt b/captures/085-frida-subscribe-property-buffer/frida-command.txt new file mode 100644 index 0000000..d574448 --- /dev/null +++ b/captures/085-frida-subscribe-property-buffer/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=TestChildObject.TestInt.property(buffer) --duration=6 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\085-frida-subscribe-property-buffer\harness.log --client=MxFridaTrace-085-frida-subscribe-property-buffer diff --git a/captures/085-frida-subscribe-property-buffer/frida-events.tsv b/captures/085-frida-subscribe-property-buffer/frida-events.tsv new file mode 100644 index 0000000..d0b12e1 --- /dev/null +++ b/captures/085-frida-subscribe-property-buffer/frida-events.tsv @@ -0,0 +1,65 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:06:47.629Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:06:47.632Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:06:47.634Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:06:47.635Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:06:47.637Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:06:47.637Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:06:47.640Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:06:47.641Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:07:00.317Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:07:00.317Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:07:00.317Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:07:00.318Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:07:00.318Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:07:00.319Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:07:00.320Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:07:00.419Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:07:00.419Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:07:00.420Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:07:00.420Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:07:00.424Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:07:00.424Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xb8e8dc [] +2026-04-25T21:07:00.425Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:07:00.425Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xb8e8dc [] +2026-04-25T21:07:00.522Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:07:00.523Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:07:00.524Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8edcc [] +2026-04-25T21:07:00.524Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8edb8 [] +2026-04-25T21:07:00.524Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:07:00.525Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xb8edb8 [] +2026-04-25T21:07:00.525Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8d9b4 [] +2026-04-25T21:07:00.526Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8d9b4 [] +2026-04-25T21:07:00.527Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8d9b4 [] +2026-04-25T21:07:00.527Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8edcc [] +2026-04-25T21:07:00.527Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8edcc [] +2026-04-25T21:07:00.528Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8d980 [] +2026-04-25T21:07:00.528Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xb8d980 [] +2026-04-25T21:07:00.529Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:07:00.530Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:07:00.532Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xb8efa8 "[""0x60d8ff0"",""0x1"",""0x1"",""0xd5bfcbba"",""0x74794704""]" +2026-04-25T21:07:00.532Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:07:00.532Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xb8ee28 [] +2026-04-25T21:07:00.533Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:07:00.661Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x925c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9260648"",""0xb8ec6c"",""0xd2f671ba""]" 0 1 0x2 +2026-04-25T21:07:00.661Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x925c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9260648"",""0xb8ec6c"",""0xd2f671ba""]" 1 314 0x9260648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 25 09 1f 01 00 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 26 09 20 01 00 02 00 00 00 +2026-04-25T21:07:00.663Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x925c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9d44020"",""0x63073d38"",""0x9260214"",""0x9260204"",""0x641add04"",""0x64""]" 0 360 0x9d44020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 25 09 1f 01 00 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 26 09 20 01 00 02 00 00 00 +2026-04-25T21:07:00.664Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:07:00.664Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:07:00.666Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x925c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0xb0"",""0x9339330"",""0xb8ec6c"",""0xd2f671ba""]" 0 2 0x2 +2026-04-25T21:07:00.666Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x925c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0xb0"",""0x9339330"",""0xb8ec6c"",""0xd2f671ba""]" 1 176 0x9339330 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 26 09 +2026-04-25T21:07:00.667Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x925c738 "[""0x1"",""0x1"",""0x2"",""0xde"",""0x9d44020"",""0x63073d38"",""0x93392fc"",""0x93392ec"",""0x641add04"",""0x0""]" 0 222 0x9d44020 01 00 b0 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 26 09 +2026-04-25T21:07:00.668Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:07:00.668Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:07:00.681Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x2c2"",""0x105c104"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x2c2"",""0x105c104"",""0x206"",""0x3"",""0x7873cc4""]" 0 706 0x105c104 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 92 ca 48 d1 97 8e 56 49 b1 12 03 98 05 27 45 02 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:07:00.681Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x2c2"",""0x105c104"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x2c2"",""0x105c104"",""0x206"",""0x3"",""0x7873cc4""]" 1 518 0x3 +2026-04-25T21:07:00.681Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x2c2"",""0x105c104"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x2c2"",""0x105c104"",""0x206"",""0x3"",""0x7873cc4""]" 2 3 0x7873cc4 98 79 bb +2026-04-25T21:07:00.684Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:07:00.688Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x97"",""0x7a5bf34"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x97"",""0x7a5bf34"",""0x206"",""0x3"",""0x7873cc4""]" 0 151 0x7a5bf34 97 00 00 00 01 00 69 00 00 00 00 00 00 00 61 26 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 92 ca 48 d1 97 8e 56 49 b1 12 03 98 05 27 45 02 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:07:00.688Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x97"",""0x7a5bf34"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x97"",""0x7a5bf34"",""0x206"",""0x3"",""0x7873cc4""]" 1 518 0x3 +2026-04-25T21:07:00.688Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x97"",""0x7a5bf34"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x97"",""0x7a5bf34"",""0x206"",""0x3"",""0x7873cc4""]" 2 3 0x7873cc4 98 79 bb +2026-04-25T21:07:00.689Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:07:00.699Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x16f"",""0x7a35174"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x16f"",""0x7a35174"",""0x206"",""0x3"",""0x7873cc4""]" 0 367 0x7a35174 6f 01 00 00 01 00 41 01 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 c8 00 00 00 52 00 00 91 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 32 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 02 00 9b 00 32 00 3e da 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 +2026-04-25T21:07:00.699Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x16f"",""0x7a35174"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x16f"",""0x7a35174"",""0x206"",""0x3"",""0x7873cc4""]" 1 518 0x3 +2026-04-25T21:07:00.699Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x925c738 "[""0x16f"",""0x7a35174"",""0x751ee28"",""0x76ffedd8"",""0x925c744"",""0x16f"",""0x7a35174"",""0x206"",""0x3"",""0x7873cc4""]" 2 3 0x7873cc4 98 79 bb +2026-04-25T21:07:00.701Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/085-frida-subscribe-property-buffer/frida-exit.txt b/captures/085-frida-subscribe-property-buffer/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/085-frida-subscribe-property-buffer/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/085-frida-subscribe-property-buffer/frida.stderr.txt b/captures/085-frida-subscribe-property-buffer/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/085-frida-subscribe-property-buffer/frida.stdout.jsonl b/captures/085-frida-subscribe-property-buffer/frida.stdout.jsonl new file mode 100644 index 0000000..93871b8 --- /dev/null +++ b/captures/085-frida-subscribe-property-buffer/frida.stdout.jsonl @@ -0,0 +1,72 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.TestInt.property(buffer) --duration=6 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\085-frida-subscribe-property-buffer\harness.log --client=MxFridaTrace-085-frida-subscribe-property-buffer`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.TestInt.property(buffer) --duration=6 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\085-frida-subscribe-property-buffer\harness.log --client=MxFridaTrace-085-frida-subscribe-property-buffer`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:06:47.629Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:06:47.632Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:06:47.634Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:06:47.635Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:06:47.637Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:06:47.637Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:06:47.640Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:06:47.641Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:07:00.317Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:07:00.317Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:07:00.317Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:07:00.318Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:07:00.318Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:07:00.319Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:07:00.320Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:07:00.419Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:07:00.419Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:07:00.420Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:07:00.420Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9257010","outPtr":"0xb8e8dc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:07:00.424Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xb8e8dc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xb8e8dc","time":"2026-04-25T21:07:00.424Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9257010","outPtr":"0xb8e8dc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:07:00.425Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xb8e8dc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xb8e8dc","time":"2026-04-25T21:07:00.425Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:07:00.522Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9260588","referenceString":{"length":40,"capacity":47,"value":"TestChildObject.TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x932cbd8","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 08 b7 25 09 00 65 00 00 00 02 00 00 00 00 00 02 28 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 cb 32 09 3c f5 b9 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 25 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 74 68 01 01 00 00 00 00"},"time":"2026-04-25T21:07:00.523Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8edcc","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xb8edcc","time":"2026-04-25T21:07:00.524Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8edb8","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xb8edb8","time":"2026-04-25T21:07:00.524Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9257010","outPtr":"0xb8edb8","inWords":[65537,327682,55094,0,0,0],"time":"2026-04-25T21:07:00.524Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xb8edb8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8edb8","time":"2026-04-25T21:07:00.525Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8d9b4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8d9b4","time":"2026-04-25T21:07:00.525Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8d9b4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8d9b4","time":"2026-04-25T21:07:00.526Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8d9b4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8d9b4","time":"2026-04-25T21:07:00.527Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8edcc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8edcc","time":"2026-04-25T21:07:00.527Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8edcc","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8edcc","time":"2026-04-25T21:07:00.527Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8d980","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8d980","time":"2026-04-25T21:07:00.528Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92605d8","outPtr":"0xb8d980","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8d980","time":"2026-04-25T21:07:00.528Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9260588","referenceString":{"length":40,"capacity":47,"value":"TestChildObject.TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x932cbd8","status":2,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 01 67 00 43 03 00 00 00 08 b7 25 09 00 65 00 00 00 02 00 00 00 00 00 02 28 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 cb 32 09 3c f5 b9 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 25 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 74 68 01 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:07:00.529Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:07:00.530Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xb8efa8","args":["0x60d8ff0","0x1","0x1","0xd5bfcbba","0x74794704"],"time":"2026-04-25T21:07:00.532Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9257010","outPtr":"0xb8ee28","inWords":[65537,327682,55094,0,0,0],"time":"2026-04-25T21:07:00.532Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xb8ee28","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0xb8ee28","time":"2026-04-25T21:07:00.532Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:07:00.533Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x925c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9260648","0xb8ec6c","0xd2f671ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9260648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 25 09 1f 01 00 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 26 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:07:00.661Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x925c738","args":["0x1","0x1","0x1","0x168","0x9d44020","0x63073d38","0x9260214","0x9260204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9d44020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 25 09 1f 01 00 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 26 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:07:00.663Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:07:00.664Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:07:00.664Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x925c738","0x1","0x1","0x2","0x2","0x0","0xb0","0x9339330","0xb8ec6c","0xd2f671ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":176,"ptr":"0x9339330","hex":"01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 26 09"}],"time":"2026-04-25T21:07:00.666Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x925c738","args":["0x1","0x1","0x2","0xde","0x9d44020","0x63073d38","0x93392fc","0x93392ec","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":222,"ptr":"0x9d44020","hex":"01 00 b0 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 26 09"}],"time":"2026-04-25T21:07:00.667Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:07:00.668Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:07:00.668Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x925c738","args":["0x2c2","0x105c104","0x751ee28","0x76ffedd8","0x925c744","0x2c2","0x105c104","0x206","0x3","0x7873cc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x105c104","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 92 ca 48 d1 97 8e 56 49 b1 12 03 98 05 27 45 02 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7873cc4","hex":"98 79 bb"}],"time":"2026-04-25T21:07:00.681Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:07:00.684Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x925c738","args":["0x97","0x7a5bf34","0x751ee28","0x76ffedd8","0x925c744","0x97","0x7a5bf34","0x206","0x3","0x7873cc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7a5bf34","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 61 26 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 92 ca 48 d1 97 8e 56 49 b1 12 03 98 05 27 45 02 90 4d 45 c5 6c 0b 6c 49 a6 ba 59 c8 bf da f9 b6 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7873cc4","hex":"98 79 bb"}],"time":"2026-04-25T21:07:00.688Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:07:00.689Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x925c738","args":["0x16f","0x7a35174","0x751ee28","0x76ffedd8","0x925c744","0x16f","0x7a35174","0x206","0x3","0x7873cc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":367,"ptr":"0x7a35174","hex":"6f 01 00 00 01 00 41 01 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f4 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 c8 00 00 00 52 00 00 91 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 32 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 02 00 9b 00 32 00 3e da 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7873cc4","hex":"98 79 bb"}],"time":"2026-04-25T21:07:00.699Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:07:00.701Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/085-frida-subscribe-property-buffer/harness.log b/captures/085-frida-subscribe-property-buffer/harness.log new file mode 100644 index 0000000..92571d0 --- /dev/null +++ b/captures/085-frida-subscribe-property-buffer/harness.log @@ -0,0 +1,14 @@ +2026-04-25T21:06:47.5455383+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-085-frida-subscribe-property-buffer","Tags":["TestChildObject.TestInt.property(buffer)"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:07:00.1548214+00:00 mx.register.begin {"ClientName":"MxFridaTrace-085-frida-subscribe-property-buffer"} +2026-04-25T21:07:00.5196819+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:07:00.5196819+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt.property(buffer)"} +2026-04-25T21:07:00.5306767+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:00.5316747+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:00.5336818+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:06.5717652+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:06.5717652+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:06.5717652+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:06.5727624+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:06.5727624+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:07:06.7414931+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:07:06.7465420+00:00 harness.stop {} diff --git a/captures/086-frida-write-property-buffer/frida-command.txt b/captures/086-frida-write-property-buffer/frida-command.txt new file mode 100644 index 0000000..0dd1444 --- /dev/null +++ b/captures/086-frida-write-property-buffer/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt.property(buffer) --type=int --value=137 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\086-frida-write-property-buffer\harness.log --client=MxFridaTrace-086-frida-write-property-buffer diff --git a/captures/086-frida-write-property-buffer/frida-events.tsv b/captures/086-frida-write-property-buffer/frida-events.tsv new file mode 100644 index 0000000..c60a5b9 --- /dev/null +++ b/captures/086-frida-write-property-buffer/frida-events.tsv @@ -0,0 +1,67 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:06:47.637Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:06:47.638Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:06:47.638Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:06:47.639Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:06:47.639Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:06:47.640Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:06:47.640Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:06:47.641Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:06:53.885Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:06:53.886Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:06:53.886Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:06:53.887Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:06:53.888Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:06:53.888Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:06:53.889Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:06:53.986Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:06:53.988Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:06:53.988Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:06:53.988Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:06:54.037Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:06:54.037Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe394 [] +2026-04-25T21:06:54.038Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:06:54.038Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe394 [] +2026-04-25T21:06:54.129Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:06:54.130Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:06:54.131Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe87c [] +2026-04-25T21:06:54.131Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe868 [] +2026-04-25T21:06:54.131Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:06:54.132Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe868 [] +2026-04-25T21:06:54.132Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd464 [] +2026-04-25T21:06:54.132Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd464 [] +2026-04-25T21:06:54.133Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd464 [] +2026-04-25T21:06:54.133Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe87c [] +2026-04-25T21:06:54.134Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fe87c [] +2026-04-25T21:06:54.134Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd430 [] +2026-04-25T21:06:54.134Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fd430 [] +2026-04-25T21:06:54.135Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:06:54.136Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:06:54.137Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x12fea58 "[""0x66b8ff0"",""0x1"",""0x1"",""0xc95e2ef9"",""0x74794704""]" +2026-04-25T21:06:54.138Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:06:54.138Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe8d8 [] +2026-04-25T21:06:54.138Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:06:54.266Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9960648"",""0x12fe71c"",""0xa80f59a6""]" 0 1 0x2 +2026-04-25T21:06:54.266Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9960648"",""0x12fe71c"",""0xa80f59a6""]" 1 314 0x9960648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00 +2026-04-25T21:06:54.269Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x995c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xac30020"",""0xefb5e201"",""0x9960214"",""0x9960204"",""0x641add04"",""0x64""]" 0 360 0xac30020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00 +2026-04-25T21:06:54.270Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:06:54.270Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:06:54.272Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0xb0"",""0x9a39330"",""0x12fe71c"",""0xa80f59a6""]" 0 2 0x2 +2026-04-25T21:06:54.272Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x995c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0xb0"",""0x9a39330"",""0x12fe71c"",""0xa80f59a6""]" 1 176 0x9a39330 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 96 09 +2026-04-25T21:06:54.274Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x995c738 "[""0x1"",""0x1"",""0x2"",""0xde"",""0xac30020"",""0xefb5e201"",""0x9a392fc"",""0x9a392ec"",""0x641add04"",""0x0""]" 0 222 0xac30020 01 00 b0 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 96 09 +2026-04-25T21:06:54.275Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:06:54.275Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:06:54.294Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x16f"",""0x1554f54"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x16f"",""0x1554f54"",""0x206"",""0x3"",""0x7f9d8fc""]" 0 367 0x1554f54 6f 01 00 00 01 00 41 01 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 c8 00 00 00 52 00 00 91 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 32 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 02 00 9b 00 32 00 3e da 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 +2026-04-25T21:06:54.294Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x16f"",""0x1554f54"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x16f"",""0x1554f54"",""0x206"",""0x3"",""0x7f9d8fc""]" 1 518 0x3 +2026-04-25T21:06:54.294Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x16f"",""0x1554f54"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x16f"",""0x1554f54"",""0x206"",""0x3"",""0x7f9d8fc""]" 2 3 0x7f9d8fc d8 94 54 +2026-04-25T21:06:54.296Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:06:54.317Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x2c2"",""0x1552d44"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x2c2"",""0x1552d44"",""0x206"",""0x3"",""0x7f9d8fc""]" 0 706 0x1552d44 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 60 82 fa 2e 8f 35 52 4d 92 f9 db f2 c0 c0 75 cc c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:06:54.317Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x2c2"",""0x1552d44"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x2c2"",""0x1552d44"",""0x206"",""0x3"",""0x7f9d8fc""]" 1 518 0x3 +2026-04-25T21:06:54.317Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x2c2"",""0x1552d44"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x2c2"",""0x1552d44"",""0x206"",""0x3"",""0x7f9d8fc""]" 2 3 0x7f9d8fc d8 94 54 +2026-04-25T21:06:54.319Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:06:54.321Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x97"",""0x1559374"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x97"",""0x1559374"",""0x206"",""0x3"",""0x7f9d8fc""]" 0 151 0x1559374 97 00 00 00 01 00 69 00 00 00 00 00 00 00 46 26 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 60 82 fa 2e 8f 35 52 4d 92 f9 db f2 c0 c0 75 cc c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:06:54.321Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x97"",""0x1559374"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x97"",""0x1559374"",""0x206"",""0x3"",""0x7f9d8fc""]" 1 518 0x3 +2026-04-25T21:06:54.321Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x995c738 "[""0x97"",""0x1559374"",""0x7c3eaf0"",""0x76ffedd8"",""0x995c744"",""0x97"",""0x1559374"",""0x206"",""0x3"",""0x7f9d8fc""]" 2 3 0x7f9d8fc d8 94 54 +2026-04-25T21:06:54.322Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:06:55.183Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x12fea2c "[""0x66b8ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x89"",""0x0"",""0x1"",""0xc95e2ef9"",""0x74794704""]" +2026-04-25T21:06:55.183Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] diff --git a/captures/086-frida-write-property-buffer/frida-exit.txt b/captures/086-frida-write-property-buffer/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/086-frida-write-property-buffer/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/086-frida-write-property-buffer/frida.stderr.txt b/captures/086-frida-write-property-buffer/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/086-frida-write-property-buffer/frida.stdout.jsonl b/captures/086-frida-write-property-buffer/frida.stdout.jsonl new file mode 100644 index 0000000..64327f6 --- /dev/null +++ b/captures/086-frida-write-property-buffer/frida.stdout.jsonl @@ -0,0 +1,74 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt.property(buffer) --type=int --value=137 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\086-frida-write-property-buffer\harness.log --client=MxFridaTrace-086-frida-write-property-buffer`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt.property(buffer) --type=int --value=137 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\086-frida-write-property-buffer\harness.log --client=MxFridaTrace-086-frida-write-property-buffer`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:06:47.637Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:06:47.638Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:06:47.638Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:06:47.639Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:06:47.639Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:06:47.640Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:06:47.640Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:06:47.641Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:06:53.885Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:06:53.886Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:06:53.886Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:06:53.887Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:06:53.888Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:06:53.888Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:06:53.889Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:06:53.986Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:06:53.988Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:06:53.988Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:06:53.988Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12fe394","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:06:54.037Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe394","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fe394","time":"2026-04-25T21:06:54.037Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12fe394","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:06:54.038Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe394","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fe394","time":"2026-04-25T21:06:54.038Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:06:54.129Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9960588","referenceString":{"length":40,"capacity":47,"value":"TestChildObject.TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9a2d5b0","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b0 ba 95 09 00 65 00 00 00 02 00 00 00 00 00 02 28 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 d5 a2 09 1c 31 31 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 95 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 a4 13 51 01 00 00 00 00"},"time":"2026-04-25T21:06:54.130Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fe87c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x12fe87c","time":"2026-04-25T21:06:54.131Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fe868","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x12fe868","time":"2026-04-25T21:06:54.131Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12fe868","inWords":[65537,327682,55094,0,0,0],"time":"2026-04-25T21:06:54.131Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe868","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fe868","time":"2026-04-25T21:06:54.132Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fd464","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fd464","time":"2026-04-25T21:06:54.132Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fd464","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fd464","time":"2026-04-25T21:06:54.132Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fd464","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fd464","time":"2026-04-25T21:06:54.133Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fe87c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fe87c","time":"2026-04-25T21:06:54.133Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fe87c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fe87c","time":"2026-04-25T21:06:54.134Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fd430","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fd430","time":"2026-04-25T21:06:54.134Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99605d8","outPtr":"0x12fd430","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fd430","time":"2026-04-25T21:06:54.134Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9960588","referenceString":{"length":40,"capacity":47,"value":"TestChildObject.TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9a2d5b0","status":2,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 01 67 00 43 03 00 00 00 b0 ba 95 09 00 65 00 00 00 02 00 00 00 00 00 02 28 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 d5 a2 09 1c 31 31 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 95 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 a4 13 51 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:06:54.135Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:06:54.136Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x12fea58","args":["0x66b8ff0","0x1","0x1","0xc95e2ef9","0x74794704"],"time":"2026-04-25T21:06:54.137Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9957010","outPtr":"0x12fe8d8","inWords":[65537,327682,55094,0,0,0],"time":"2026-04-25T21:06:54.138Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe8d8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":327682,"w2":55094,"w3":0,"w4":0},"retval":"0x12fe8d8","time":"2026-04-25T21:06:54.138Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:06:54.138Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x995c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9960648","0x12fe71c","0xa80f59a6"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9960648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:06:54.266Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x995c738","args":["0x1","0x1","0x1","0x168","0xac30020","0xefb5e201","0x9960214","0x9960204","0x641add04","0x64"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xac30020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 95 09 1f 01 00 c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 96 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:06:54.269Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:06:54.270Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:06:54.270Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x995c738","0x1","0x1","0x2","0x2","0x0","0xb0","0x9a39330","0x12fe71c","0xa80f59a6"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":176,"ptr":"0x9a39330","hex":"01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 96 09"}],"time":"2026-04-25T21:06:54.272Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x995c738","args":["0x1","0x1","0x2","0xde","0xac30020","0xefb5e201","0x9a392fc","0x9a392ec","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":222,"ptr":"0xac30020","hex":"01 00 b0 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 96 00 00 00 52 00 00 81 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 ff ff 00 00 00 00 00 00 00 00 01 88 05 96 09"}],"time":"2026-04-25T21:06:54.274Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:06:54.275Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:06:54.275Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x16f","0x1554f54","0x7c3eaf0","0x76ffedd8","0x995c744","0x16f","0x1554f54","0x206","0x3","0x7f9d8fc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":367,"ptr":"0x1554f54","hex":"6f 01 00 00 01 00 41 01 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 c8 00 00 00 52 00 00 91 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 2e 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 32 00 00 00 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 01 01 00 02 00 05 00 36 d7 02 00 9b 00 32 00 3e da 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f9d8fc","hex":"d8 94 54"}],"time":"2026-04-25T21:06:54.294Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:06:54.296Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x2c2","0x1552d44","0x7c3eaf0","0x76ffedd8","0x995c744","0x2c2","0x1552d44","0x206","0x3","0x7f9d8fc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x1552d44","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 60 82 fa 2e 8f 35 52 4d 92 f9 db f2 c0 c0 75 cc c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f9d8fc","hex":"d8 94 54"}],"time":"2026-04-25T21:06:54.317Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:06:54.319Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x995c738","args":["0x97","0x1559374","0x7c3eaf0","0x76ffedd8","0x995c744","0x97","0x1559374","0x206","0x3","0x7f9d8fc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x1559374","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 46 26 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f5 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 60 82 fa 2e 8f 35 52 4d 92 f9 db f2 c0 c0 75 cc c1 7c be 41 b3 42 f7 4a bc ac e5 25 33 7e b9 be 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f9d8fc","hex":"d8 94 54"}],"time":"2026-04-25T21:06:54.321Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:06:54.322Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x12fea2c","args":["0x66b8ff0","0x1","0x1","0x3","0x0","0x89","0x0","0x1","0xc95e2ef9","0x74794704"],"time":"2026-04-25T21:06:55.183Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:06:55.183Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/086-frida-write-property-buffer/harness.log b/captures/086-frida-write-property-buffer/harness.log new file mode 100644 index 0000000..04a8c1f --- /dev/null +++ b/captures/086-frida-write-property-buffer/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:06:47.5435352+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-086-frida-write-property-buffer","Tags":["TestChildObject.TestInt.property(buffer)"],"ItemContext":"","WriteType":"int","WriteValue":"137","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:06:53.7829344+00:00 mx.register.begin {"ClientName":"MxFridaTrace-086-frida-write-property-buffer"} +2026-04-25T21:06:54.1263198+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:06:54.1263198+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt.property(buffer)"} +2026-04-25T21:06:54.1362510+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:54.1372603+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:54.1392419+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:55.1806453+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"137"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:06:55.1845978+00:00 mx.write.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:07:00.1928870+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:00.1938894+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:00.1938894+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:00.1938894+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:07:00.1938894+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:07:03.6665439+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:07:03.6715441+00:00 harness.stop {} diff --git a/captures/087-frida-authenticate-administrator-empty/frida-command.txt b/captures/087-frida-authenticate-administrator-empty/frida-command.txt new file mode 100644 index 0000000..ea8aeb6 --- /dev/null +++ b/captures/087-frida-authenticate-administrator-empty/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=authenticate-user --auth-user=Administrator --duration=2 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\087-frida-authenticate-administrator-empty\harness.log --client=MxFridaTrace-087-frida-authenticate-administrator-empty diff --git a/captures/087-frida-authenticate-administrator-empty/frida-events.tsv b/captures/087-frida-authenticate-administrator-empty/frida-events.tsv new file mode 100644 index 0000000..8a681b0 --- /dev/null +++ b/captures/087-frida-authenticate-administrator-empty/frida-events.tsv @@ -0,0 +1,40 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:12:15.259Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:12:15.260Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:12:15.260Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:12:15.261Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:12:15.261Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:12:15.262Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:12:15.262Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:12:15.263Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:12:15.264Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:12:28.652Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:12:28.653Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:12:28.653Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:12:28.654Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:12:28.654Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:12:28.655Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:12:28.655Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:12:28.754Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:12:28.755Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:12:28.755Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:12:28.756Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:12:28.791Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:12:28.792Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x53e298 [] +2026-04-25T21:12:28.793Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:12:28.793Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x53e298 [] +2026-04-25T21:12:28.894Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x53e968 [] +2026-04-25T21:12:28.910Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-25T21:12:29.037Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8c00648"",""0x53e638"",""0x41a380a8""]" 0 1 0x2 +2026-04-25T21:12:29.037Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8c00648"",""0x53e638"",""0x41a380a8""]" 1 314 0x8c00648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00 +2026-04-25T21:12:29.041Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bfc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x95ae020"",""0xe9f9f0ed"",""0x8c00214"",""0x8c00204"",""0x641add04"",""0x0""]" 0 360 0x95ae020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00 +2026-04-25T21:12:29.041Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:12:29.041Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:12:29.059Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2c2"",""0xa0a347c"",""0x6edeb80"",""0x76ffedd8"",""0x8bfc744"",""0x2c2"",""0xa0a347c"",""0x206"",""0x3"",""0x71bedfc""]" 0 706 0xa0a347c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 e0 8f 6e 61 c4 43 e7 43 bc 74 11 5b 6a c9 33 70 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:12:29.059Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2c2"",""0xa0a347c"",""0x6edeb80"",""0x76ffedd8"",""0x8bfc744"",""0x2c2"",""0xa0a347c"",""0x206"",""0x3"",""0x71bedfc""]" 1 518 0x3 +2026-04-25T21:12:29.059Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2c2"",""0xa0a347c"",""0x6edeb80"",""0x76ffedd8"",""0x8bfc744"",""0x2c2"",""0xa0a347c"",""0x206"",""0x3"",""0x71bedfc""]" 2 3 0x71bedfc 28 aa 1b +2026-04-25T21:12:29.062Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:12:29.065Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x97"",""0xa0a6794"",""0x6edeb80"",""0x76ffedd8"",""0x8bfc744"",""0x97"",""0xa0a6794"",""0x206"",""0x3"",""0x71bedfc""]" 0 151 0xa0a6794 97 00 00 00 01 00 69 00 00 00 00 00 00 00 8b 2b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 e0 8f 6e 61 c4 43 e7 43 bc 74 11 5b 6a c9 33 70 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:12:29.065Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x97"",""0xa0a6794"",""0x6edeb80"",""0x76ffedd8"",""0x8bfc744"",""0x97"",""0xa0a6794"",""0x206"",""0x3"",""0x71bedfc""]" 1 518 0x3 +2026-04-25T21:12:29.065Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x97"",""0xa0a6794"",""0x6edeb80"",""0x76ffedd8"",""0x8bfc744"",""0x97"",""0xa0a6794"",""0x206"",""0x3"",""0x71bedfc""]" 2 3 0x71bedfc 28 aa 1b +2026-04-25T21:12:29.066Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/087-frida-authenticate-administrator-empty/frida-exit.txt b/captures/087-frida-authenticate-administrator-empty/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/087-frida-authenticate-administrator-empty/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/087-frida-authenticate-administrator-empty/frida.stderr.txt b/captures/087-frida-authenticate-administrator-empty/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/087-frida-authenticate-administrator-empty/frida.stdout.jsonl b/captures/087-frida-authenticate-administrator-empty/frida.stdout.jsonl new file mode 100644 index 0000000..f9a9faa --- /dev/null +++ b/captures/087-frida-authenticate-administrator-empty/frida.stdout.jsonl @@ -0,0 +1,50 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=authenticate-user --auth-user=Administrator --duration=2 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\087-frida-authenticate-administrator-empty\harness.log --client=MxFridaTrace-087-frida-authenticate-administrator-empty`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=authenticate-user --auth-user=Administrator --duration=2 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\087-frida-authenticate-administrator-empty\harness.log --client=MxFridaTrace-087-frida-authenticate-administrator-empty`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:12:15.259Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:12:15.260Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:12:15.260Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:12:15.261Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:12:15.261Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:12:15.262Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:12:15.262Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:12:15.263Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:12:15.264Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:12:28.652Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:12:28.653Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:12:28.653Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:12:28.654Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:12:28.654Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:12:28.655Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:12:28.655Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:12:28.754Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:12:28.755Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:12:28.755Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:12:28.756Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bf7010","outPtr":"0x53e298","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:12:28.791Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x53e298","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x53e298","time":"2026-04-25T21:12:28.792Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bf7010","outPtr":"0x53e298","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:12:28.793Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x53e298","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x53e298","time":"2026-04-25T21:12:28.793Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0x53e968","serverHandle":1,"user":"Administrator","passwordLength":0,"userIdOut":"0x53e94c","time":"2026-04-25T21:12:28.894Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-25T21:12:28.910Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bfc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8c00648","0x53e638","0x41a380a8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8c00648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:12:29.037Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bfc738","args":["0x1","0x1","0x1","0x168","0x95ae020","0xe9f9f0ed","0x8c00214","0x8c00204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x95ae020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:12:29.041Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:12:29.041Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:12:29.041Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bfc738","args":["0x2c2","0xa0a347c","0x6edeb80","0x76ffedd8","0x8bfc744","0x2c2","0xa0a347c","0x206","0x3","0x71bedfc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xa0a347c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 e0 8f 6e 61 c4 43 e7 43 bc 74 11 5b 6a c9 33 70 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71bedfc","hex":"28 aa 1b"}],"time":"2026-04-25T21:12:29.059Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:12:29.062Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bfc738","args":["0x97","0xa0a6794","0x6edeb80","0x76ffedd8","0x8bfc744","0x97","0xa0a6794","0x206","0x3","0x71bedfc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xa0a6794","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 8b 2b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 e0 8f 6e 61 c4 43 e7 43 bc 74 11 5b 6a c9 33 70 4e 96 fa 99 5c bc 74 47 a9 3b 49 23 11 2b 49 5a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71bedfc","hex":"28 aa 1b"}],"time":"2026-04-25T21:12:29.065Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:12:29.066Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/087-frida-authenticate-administrator-empty/harness.log b/captures/087-frida-authenticate-administrator-empty/harness.log new file mode 100644 index 0000000..62ab271 --- /dev/null +++ b/captures/087-frida-authenticate-administrator-empty/harness.log @@ -0,0 +1,8 @@ +2026-04-25T21:12:15.1849905+00:00 harness.start {"Scenario":"authenticate-user","ClientName":"MxFridaTrace-087-frida-authenticate-administrator-empty","Tags":[],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"Administrator","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:12:28.5390667+00:00 mx.register.begin {"ClientName":"MxFridaTrace-087-frida-authenticate-administrator-empty"} +2026-04-25T21:12:28.8908815+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:12:28.8918711+00:00 mx.authenticate-user.begin {"AuthUser":"Administrator","PasswordSource":"empty-or-missing-env"} +2026-04-25T21:12:28.9118754+00:00 mx.authenticate-user.end {"AuthUser":"Administrator","UserId":1} +2026-04-25T21:12:30.9759115+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:12:35.3980713+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:12:35.4030681+00:00 harness.stop {} diff --git a/captures/088-frida-authenticate-invalid-empty/frida-command.txt b/captures/088-frida-authenticate-invalid-empty/frida-command.txt new file mode 100644 index 0000000..c448637 --- /dev/null +++ b/captures/088-frida-authenticate-invalid-empty/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=authenticate-user --auth-user=DefinitelyNotAUser --duration=2 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\088-frida-authenticate-invalid-empty\harness.log --client=MxFridaTrace-088-frida-authenticate-invalid-empty diff --git a/captures/088-frida-authenticate-invalid-empty/frida-events.tsv b/captures/088-frida-authenticate-invalid-empty/frida-events.tsv new file mode 100644 index 0000000..3af542b --- /dev/null +++ b/captures/088-frida-authenticate-invalid-empty/frida-events.tsv @@ -0,0 +1,40 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:12:15.253Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:12:15.254Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:12:15.255Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:12:15.255Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:12:15.256Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:12:15.256Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:12:15.257Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:12:15.257Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:12:15.257Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:12:22.304Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:12:22.305Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:12:22.306Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:12:22.306Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:12:22.307Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:12:22.308Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:12:22.308Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:12:22.404Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:12:22.405Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:12:22.405Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:12:22.406Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:12:22.406Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:12:22.407Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xb3e674 [] +2026-04-25T21:12:22.408Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:12:22.408Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xb3e674 [] +2026-04-25T21:12:22.506Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0xb3ed38 [] +2026-04-25T21:12:22.522Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-25T21:12:22.647Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9200648"",""0xb3ea08"",""0xf34a8e87""]" 0 1 0x2 +2026-04-25T21:12:22.647Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9200648"",""0xb3ea08"",""0xf34a8e87""]" 1 314 0x9200648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1f 09 1f 01 00 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 20 09 20 01 00 02 00 00 00 +2026-04-25T21:12:22.650Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91fc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9b9d020"",""0x1d781494"",""0x9200214"",""0x9200204"",""0x641add04"",""0x0""]" 0 360 0x9b9d020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1f 09 1f 01 00 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 20 09 20 01 00 02 00 00 00 +2026-04-25T21:12:22.650Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:12:22.650Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:12:22.674Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91fc738 "[""0x2c2"",""0xfb1fac"",""0x740eef0"",""0x76ffedd8"",""0x91fc744"",""0x2c2"",""0xfb1fac"",""0x206"",""0x3"",""0x77d517c""]" 0 706 0xfb1fac c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 ce 16 ef e2 29 d8 57 4f bf 16 73 4b d4 fe a3 83 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:12:22.674Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91fc738 "[""0x2c2"",""0xfb1fac"",""0x740eef0"",""0x76ffedd8"",""0x91fc744"",""0x2c2"",""0xfb1fac"",""0x206"",""0x3"",""0x77d517c""]" 1 518 0x3 +2026-04-25T21:12:22.674Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91fc738 "[""0x2c2"",""0xfb1fac"",""0x740eef0"",""0x76ffedd8"",""0x91fc744"",""0x2c2"",""0xfb1fac"",""0x206"",""0x3"",""0x77d517c""]" 2 3 0x77d517c 68 c6 e2 +2026-04-25T21:12:22.676Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:12:22.678Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91fc738 "[""0x97"",""0x7d0bfdc"",""0x740eef0"",""0x76ffedd8"",""0x91fc744"",""0x97"",""0x7d0bfdc"",""0x206"",""0x3"",""0x77d517c""]" 0 151 0x7d0bfdc 97 00 00 00 01 00 69 00 00 00 00 00 00 00 72 2b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 ce 16 ef e2 29 d8 57 4f bf 16 73 4b d4 fe a3 83 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:12:22.678Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91fc738 "[""0x97"",""0x7d0bfdc"",""0x740eef0"",""0x76ffedd8"",""0x91fc744"",""0x97"",""0x7d0bfdc"",""0x206"",""0x3"",""0x77d517c""]" 1 518 0x3 +2026-04-25T21:12:22.678Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91fc738 "[""0x97"",""0x7d0bfdc"",""0x740eef0"",""0x76ffedd8"",""0x91fc744"",""0x97"",""0x7d0bfdc"",""0x206"",""0x3"",""0x77d517c""]" 2 3 0x77d517c 68 c6 e2 +2026-04-25T21:12:22.680Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/088-frida-authenticate-invalid-empty/frida-exit.txt b/captures/088-frida-authenticate-invalid-empty/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/088-frida-authenticate-invalid-empty/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/088-frida-authenticate-invalid-empty/frida.stderr.txt b/captures/088-frida-authenticate-invalid-empty/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/088-frida-authenticate-invalid-empty/frida.stdout.jsonl b/captures/088-frida-authenticate-invalid-empty/frida.stdout.jsonl new file mode 100644 index 0000000..d5712c6 --- /dev/null +++ b/captures/088-frida-authenticate-invalid-empty/frida.stdout.jsonl @@ -0,0 +1,50 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=authenticate-user --auth-user=DefinitelyNotAUser --duration=2 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\088-frida-authenticate-invalid-empty\harness.log --client=MxFridaTrace-088-frida-authenticate-invalid-empty`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=authenticate-user --auth-user=DefinitelyNotAUser --duration=2 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\088-frida-authenticate-invalid-empty\harness.log --client=MxFridaTrace-088-frida-authenticate-invalid-empty`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:12:15.253Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:12:15.254Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:12:15.255Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:12:15.255Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:12:15.256Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:12:15.256Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:12:15.257Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:12:15.257Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:12:15.257Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:12:22.304Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:12:22.305Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:12:22.306Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:12:22.306Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:12:22.307Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:12:22.308Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:12:22.308Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:12:22.404Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:12:22.405Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:12:22.405Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:12:22.406Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x91f7010","outPtr":"0xb3e674","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:12:22.406Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xb3e674","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xb3e674","time":"2026-04-25T21:12:22.407Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x91f7010","outPtr":"0xb3e674","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:12:22.408Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xb3e674","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xb3e674","time":"2026-04-25T21:12:22.408Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0xb3ed38","serverHandle":1,"user":"DefinitelyNotAUser","passwordLength":0,"userIdOut":"0xb3ed1c","time":"2026-04-25T21:12:22.506Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-25T21:12:22.522Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91fc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9200648","0xb3ea08","0xf34a8e87"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9200648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1f 09 1f 01 00 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 20 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:12:22.647Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91fc738","args":["0x1","0x1","0x1","0x168","0x9b9d020","0x1d781494","0x9200214","0x9200204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9b9d020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1f 09 1f 01 00 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 20 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:12:22.650Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:12:22.650Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:12:22.650Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91fc738","args":["0x2c2","0xfb1fac","0x740eef0","0x76ffedd8","0x91fc744","0x2c2","0xfb1fac","0x206","0x3","0x77d517c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xfb1fac","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 ce 16 ef e2 29 d8 57 4f bf 16 73 4b d4 fe a3 83 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77d517c","hex":"68 c6 e2"}],"time":"2026-04-25T21:12:22.674Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:12:22.676Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91fc738","args":["0x97","0x7d0bfdc","0x740eef0","0x76ffedd8","0x91fc744","0x97","0x7d0bfdc","0x206","0x3","0x77d517c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7d0bfdc","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 72 2b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 ce 16 ef e2 29 d8 57 4f bf 16 73 4b d4 fe a3 83 0b bf 7a 6d 73 82 ad 4a bd d1 42 bc c5 b1 64 bc 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77d517c","hex":"68 c6 e2"}],"time":"2026-04-25T21:12:22.678Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:12:22.680Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/088-frida-authenticate-invalid-empty/harness.log b/captures/088-frida-authenticate-invalid-empty/harness.log new file mode 100644 index 0000000..1f057f4 --- /dev/null +++ b/captures/088-frida-authenticate-invalid-empty/harness.log @@ -0,0 +1,8 @@ +2026-04-25T21:12:15.1659255+00:00 harness.start {"Scenario":"authenticate-user","ClientName":"MxFridaTrace-088-frida-authenticate-invalid-empty","Tags":[],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"DefinitelyNotAUser","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:12:22.1367087+00:00 mx.register.begin {"ClientName":"MxFridaTrace-088-frida-authenticate-invalid-empty"} +2026-04-25T21:12:22.5038257+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:12:22.5038257+00:00 mx.authenticate-user.begin {"AuthUser":"DefinitelyNotAUser","PasswordSource":"empty-or-missing-env"} +2026-04-25T21:12:22.5228303+00:00 mx.authenticate-user.end {"AuthUser":"DefinitelyNotAUser","UserId":1} +2026-04-25T21:12:24.5754930+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:12:32.0893342+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:12:32.0948696+00:00 harness.stop {} diff --git a/captures/089-frida-write-testint-wrong-type/frida-command.txt b/captures/089-frida-write-testint-wrong-type/frida-command.txt new file mode 100644 index 0000000..ad7763f --- /dev/null +++ b/captures/089-frida-write-testint-wrong-type/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=string --value=not_an_int --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\089-frida-write-testint-wrong-type\harness.log --client=MxFridaTrace-089-frida-write-testint-wrong-type diff --git a/captures/089-frida-write-testint-wrong-type/frida-events.tsv b/captures/089-frida-write-testint-wrong-type/frida-events.tsv new file mode 100644 index 0000000..0947f1b --- /dev/null +++ b/captures/089-frida-write-testint-wrong-type/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:17:21.323Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:17:21.324Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:17:21.324Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:17:21.325Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:17:21.325Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:17:21.326Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:17:21.327Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:17:21.327Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:17:21.328Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:17:27.764Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:17:27.765Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:17:27.766Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:17:27.767Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:27.767Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:17:27.768Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:17:27.768Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:17:27.927Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:27.927Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe9e8 [] +2026-04-25T21:17:27.928Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:27.928Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe9e8 [] +2026-04-25T21:17:27.964Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:17:27.965Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:17:27.966Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:17:27.966Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:17:28.032Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:17:28.033Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fef68 [] +2026-04-25T21:17:28.034Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:17:28.035Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4feef8 [] +2026-04-25T21:17:28.035Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4feef8 [] +2026-04-25T21:17:28.036Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4feef8 [] +2026-04-25T21:17:28.037Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:17:28.037Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:17:28.039Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x4ff0b4 "[""0x5828ff0"",""0x1"",""0x1"",""0xb4a0558b"",""0x74794704""]" +2026-04-25T21:17:28.039Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:28.040Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fef34 [] +2026-04-25T21:17:28.040Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:28.040Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fdbc8 [] +2026-04-25T21:17:28.041Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:17:28.170Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b70648"",""0x4fed78"",""0xfea69d79""]" 0 1 0x2 +2026-04-25T21:17:28.170Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b70648"",""0x4fed78"",""0xfea69d79""]" 1 314 0x8b70648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00 +2026-04-25T21:17:28.173Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b6c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9504020"",""0xe07f5475"",""0x8b70214"",""0x8b70204"",""0x641add04"",""0x0""]" 0 360 0x9504020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00 +2026-04-25T21:17:28.174Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:17:28.174Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:17:28.175Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c3d7a8"",""0x4fed78"",""0xfea69d79""]" 0 2 0x2 +2026-04-25T21:17:28.175Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c3d7a8"",""0x4fed78"",""0xfea69d79""]" 1 39 0x8c3d7a8 1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:17:28.176Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b6c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9504020"",""0xe07f5475"",""0x8c49584"",""0x8c49574"",""0x641add04"",""0x0""]" 0 85 0x9504020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:17:28.176Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:17:28.177Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:17:28.205Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x5c"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x5c"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 0 92 0x99a914 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a5 f6 0a 9d de 35 ae 4e bc d3 4d 57 d9 55 00 3f 4a b5 77 bb bf 6a 19 44 89 6f fc 87 +2026-04-25T21:17:28.205Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x5c"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x5c"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 1 518 0x3 +2026-04-25T21:17:28.205Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x5c"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x5c"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 2 3 0x70de4d4 10 90 4b +2026-04-25T21:17:28.207Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:28.209Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x6c"",""0x99980c"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x6c"",""0x99980c"",""0x206"",""0x3"",""0x70de4d4""]" 0 108 0x99980c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 a9 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a5 f6 0a 9d de 35 ae 4e bc d3 4d 57 d9 55 00 3f 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 03 00 00 00 03 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02 +2026-04-25T21:17:28.209Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x6c"",""0x99980c"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x6c"",""0x99980c"",""0x206"",""0x3"",""0x70de4d4""]" 1 518 0x3 +2026-04-25T21:17:28.209Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x6c"",""0x99980c"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x6c"",""0x99980c"",""0x206"",""0x3"",""0x70de4d4""]" 2 3 0x70de4d4 10 90 4b +2026-04-25T21:17:28.211Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:28.215Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x2c2"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x2c2"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 0 706 0x99a914 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 90 8f 84 99 d6 6f 1f 44 85 7b 97 27 95 60 76 8c 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:17:28.215Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x2c2"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x2c2"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 1 518 0x3 +2026-04-25T21:17:28.215Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x2c2"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x2c2"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 2 3 0x70de4d4 10 90 4b +2026-04-25T21:17:28.216Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:28.218Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x97"",""0x99980c"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x97"",""0x99980c"",""0x206"",""0x3"",""0x70de4d4""]" 0 151 0x99980c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 45 30 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 90 8f 84 99 d6 6f 1f 44 85 7b 97 27 95 60 76 8c 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:17:28.218Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x97"",""0x99980c"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x97"",""0x99980c"",""0x206"",""0x3"",""0x70de4d4""]" 1 518 0x3 +2026-04-25T21:17:28.218Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x97"",""0x99980c"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x97"",""0x99980c"",""0x206"",""0x3"",""0x70de4d4""]" 2 3 0x70de4d4 10 90 4b +2026-04-25T21:17:28.220Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:29.090Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x4ff088 "[""0x5828ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x748ae24"",""0x0"",""0x1"",""0xb4a0558b"",""0x74794704""]" +2026-04-25T21:17:29.091Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:17:29.144Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x8c4a8b8"",""0x4fed78"",""0xfea69d79""]" 0 2 0x2 +2026-04-25T21:17:29.144Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x8c4a8b8"",""0x4fed78"",""0xfea69d79""]" 1 66 0x8c4a8b8 not_an_int:utf16le@26 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 6e 00 5f 00 69 00 6e 00 74 00 00 00 ff ff 00 00 00 00 00 00 00 00 ac ab e7 0b 01 00 00 00 +2026-04-25T21:17:29.145Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b6c738 "[""0x1"",""0x1"",""0x2"",""0x70"",""0x9504020"",""0xe07f5475"",""0x8b677f4"",""0x8b677e4"",""0x641add04"",""0x0""]" 0 112 0x9504020 not_an_int:utf16le@72 01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 6e 00 5f 00 69 00 6e 00 74 00 00 00 ff ff 00 00 00 00 00 00 00 00 ac ab e7 0b 01 00 00 00 +2026-04-25T21:17:29.146Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:17:29.146Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:17:29.197Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x33"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x33"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 0 51 0x99a914 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 41 +2026-04-25T21:17:29.197Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x33"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x33"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 1 518 0x3 +2026-04-25T21:17:29.197Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x33"",""0x99a914"",""0x6e7eb58"",""0x76ffedd8"",""0x8b6c744"",""0x33"",""0x99a914"",""0x206"",""0x3"",""0x70de4d4""]" 2 3 0x70de4d4 10 90 4b +2026-04-25T21:17:29.199Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/089-frida-write-testint-wrong-type/frida-exit.txt b/captures/089-frida-write-testint-wrong-type/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/089-frida-write-testint-wrong-type/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/089-frida-write-testint-wrong-type/frida.stderr.txt b/captures/089-frida-write-testint-wrong-type/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/089-frida-write-testint-wrong-type/frida.stdout.jsonl b/captures/089-frida-write-testint-wrong-type/frida.stdout.jsonl new file mode 100644 index 0000000..8905cd1 --- /dev/null +++ b/captures/089-frida-write-testint-wrong-type/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=string --value=not_an_int --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\089-frida-write-testint-wrong-type\harness.log --client=MxFridaTrace-089-frida-write-testint-wrong-type`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=string --value=not_an_int --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\089-frida-write-testint-wrong-type\harness.log --client=MxFridaTrace-089-frida-write-testint-wrong-type`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:17:21.323Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:17:21.324Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:17:21.324Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:17:21.325Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:17:21.325Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:17:21.326Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:17:21.327Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:17:21.327Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:17:21.328Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:17:27.764Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:17:27.765Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:17:27.766Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:17:27.767Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:17:27.767Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:17:27.768Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:17:27.768Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fe9e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:17:27.927Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe9e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe9e8","time":"2026-04-25T21:17:27.927Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fe9e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:17:27.928Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe9e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe9e8","time":"2026-04-25T21:17:27.928Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:17:27.964Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:17:27.965Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:17:27.966Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:17:27.966Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:17:28.032Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c10ca8","outPtr":"0x4fef68","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fef68","time":"2026-04-25T21:17:28.033Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b70588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c3d718","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 7f b6 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 d7 c3 08 f4 24 4b 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 b6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 6c 44 93 00 00 00 00 00"},"time":"2026-04-25T21:17:28.034Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b705d8","outPtr":"0x4feef8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4feef8","time":"2026-04-25T21:17:28.035Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b705d8","outPtr":"0x4feef8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4feef8","time":"2026-04-25T21:17:28.035Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b705d8","outPtr":"0x4feef8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4feef8","time":"2026-04-25T21:17:28.036Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b70588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c3d718","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 7f b6 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 d7 c3 08 f4 24 4b 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 b6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 6c 44 93 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:17:28.037Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:17:28.037Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x4ff0b4","args":["0x5828ff0","0x1","0x1","0xb4a0558b","0x74794704"],"time":"2026-04-25T21:17:28.039Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fef34","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:17:28.039Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fef34","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fef34","time":"2026-04-25T21:17:28.040Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fdbc8","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:17:28.040Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fdbc8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fdbc8","time":"2026-04-25T21:17:28.040Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:17:28.041Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b6c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8b70648","0x4fed78","0xfea69d79"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8b70648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:17:28.170Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b6c738","args":["0x1","0x1","0x1","0x168","0x9504020","0xe07f5475","0x8b70214","0x8b70204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9504020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:17:28.173Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:17:28.174Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:17:28.174Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b6c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8c3d7a8","0x4fed78","0xfea69d79"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8c3d7a8","hex":"1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:17:28.175Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b6c738","args":["0x1","0x1","0x2","0x55","0x9504020","0xe07f5475","0x8c49584","0x8c49574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9504020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:17:28.176Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:17:28.176Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:17:28.177Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x5c","0x99a914","0x6e7eb58","0x76ffedd8","0x8b6c744","0x5c","0x99a914","0x206","0x3","0x70de4d4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x99a914","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a5 f6 0a 9d de 35 ae 4e bc d3 4d 57 d9 55 00 3f 4a b5 77 bb bf 6a 19 44 89 6f fc 87"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70de4d4","hex":"10 90 4b"}],"time":"2026-04-25T21:17:28.205Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:28.207Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x6c","0x99980c","0x6e7eb58","0x76ffedd8","0x8b6c744","0x6c","0x99980c","0x206","0x3","0x70de4d4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x99980c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 a9 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a5 f6 0a 9d de 35 ae 4e bc d3 4d 57 d9 55 00 3f 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 03 00 00 00 03 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70de4d4","hex":"10 90 4b"}],"time":"2026-04-25T21:17:28.209Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:28.211Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x2c2","0x99a914","0x6e7eb58","0x76ffedd8","0x8b6c744","0x2c2","0x99a914","0x206","0x3","0x70de4d4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x99a914","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 90 8f 84 99 d6 6f 1f 44 85 7b 97 27 95 60 76 8c 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70de4d4","hex":"10 90 4b"}],"time":"2026-04-25T21:17:28.215Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:28.216Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x97","0x99980c","0x6e7eb58","0x76ffedd8","0x8b6c744","0x97","0x99980c","0x206","0x3","0x70de4d4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x99980c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 45 30 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 90 8f 84 99 d6 6f 1f 44 85 7b 97 27 95 60 76 8c 4a b5 77 bb bf 6a 19 44 89 6f fc 87 fd 33 16 81 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70de4d4","hex":"10 90 4b"}],"time":"2026-04-25T21:17:28.218Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:28.220Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x4ff088","args":["0x5828ff0","0x1","0x1","0x8","0x0","0x748ae24","0x0","0x1","0xb4a0558b","0x74794704"],"time":"2026-04-25T21:17:29.090Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:17:29.091Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b6c738","0x1","0x1","0x2","0x2","0x0","0x42","0x8c4a8b8","0x4fed78","0xfea69d79"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":66,"ptr":"0x8c4a8b8","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 6e 00 5f 00 69 00 6e 00 74 00 00 00 ff ff 00 00 00 00 00 00 00 00 ac ab e7 0b 01 00 00 00"}],"time":"2026-04-25T21:17:29.144Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b6c738","args":["0x1","0x1","0x2","0x70","0x9504020","0xe07f5475","0x8b677f4","0x8b677e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":112,"ptr":"0x9504020","hex":"01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 6e 00 5f 00 69 00 6e 00 74 00 00 00 ff ff 00 00 00 00 00 00 00 00 ac ab e7 0b 01 00 00 00"}],"time":"2026-04-25T21:17:29.145Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:17:29.146Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:17:29.146Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x33","0x99a914","0x6e7eb58","0x76ffedd8","0x8b6c744","0x33","0x99a914","0x206","0x3","0x70de4d4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x99a914","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 41"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x70de4d4","hex":"10 90 4b"}],"time":"2026-04-25T21:17:29.197Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:29.199Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/089-frida-write-testint-wrong-type/harness.log b/captures/089-frida-write-testint-wrong-type/harness.log new file mode 100644 index 0000000..373a030 --- /dev/null +++ b/captures/089-frida-write-testint-wrong-type/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:17:21.2306050+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-089-frida-write-testint-wrong-type","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"not_an_int","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:17:27.6533918+00:00 mx.register.begin {"ClientName":"MxFridaTrace-089-frida-write-testint-wrong-type"} +2026-04-25T21:17:28.0275641+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:17:28.0282889+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:17:28.0372911+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:17:28.0382876+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:17:28.0412964+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:17:29.0868891+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String","Value":"not_an_int"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:17:29.0918778+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:17:34.1102073+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:17:34.1111777+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:17:34.1111777+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:17:34.1111777+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:17:34.1111777+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:17:37.9073972+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:17:37.9123275+00:00 harness.stop {} diff --git a/captures/090-frida-write-invalid-reference/frida-command.txt b/captures/090-frida-write-invalid-reference/frida-command.txt new file mode 100644 index 0000000..2a96284 --- /dev/null +++ b/captures/090-frida-write-invalid-reference/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=NoSuchObject_999.NoSuchAttr --type=int --value=145 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\090-frida-write-invalid-reference\harness.log --client=MxFridaTrace-090-frida-write-invalid-reference diff --git a/captures/090-frida-write-invalid-reference/frida-events.tsv b/captures/090-frida-write-invalid-reference/frida-events.tsv new file mode 100644 index 0000000..1c0d0da --- /dev/null +++ b/captures/090-frida-write-invalid-reference/frida-events.tsv @@ -0,0 +1,62 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:17:21.352Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:17:21.353Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:17:21.354Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:17:21.354Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:17:21.355Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:17:21.355Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:17:21.356Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:17:21.356Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:17:21.357Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:17:34.146Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:17:34.146Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:17:34.147Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:17:34.147Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:34.148Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:17:34.148Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:17:34.149Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:17:34.246Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:17:34.247Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:17:34.248Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:17:34.248Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:17:34.284Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:34.284Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafe6ac [] +2026-04-25T21:17:34.285Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:17:34.285Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafe6ac [] +2026-04-25T21:17:34.382Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:17:34.383Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:17:34.384Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafebb0 [] +2026-04-25T21:17:34.384Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafeb9c [] +2026-04-25T21:17:34.385Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafebb0 [] +2026-04-25T21:17:34.386Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:17:34.386Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:17:34.388Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xafed74 "[""0x5ef8ff0"",""0x1"",""0x1"",""0x1d8b12aa"",""0x74794704""]" +2026-04-25T21:17:34.388Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:17:34.512Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x918c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9190648"",""0xafea38"",""0x44cd2619""]" 0 1 0x2 +2026-04-25T21:17:34.512Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x918c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9190648"",""0xafea38"",""0x44cd2619""]" 1 314 0x9190648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 18 09 1f 01 00 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 19 09 20 01 00 02 00 00 00 +2026-04-25T21:17:34.515Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x918c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9c7b020"",""0x235c69f2"",""0x9190214"",""0x9190204"",""0x641add04"",""0x0""]" 0 360 0x9c7b020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 18 09 1f 01 00 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 19 09 20 01 00 02 00 00 00 +2026-04-25T21:17:34.515Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:17:34.516Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:17:34.527Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x2c2"",""0x10152a4"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x2c2"",""0x10152a4"",""0x206"",""0x3"",""0x77ab4f4""]" 0 706 0x10152a4 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 8d 80 19 ac 12 5c 80 4f 97 63 2e 26 4e af ea e7 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:17:34.527Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x2c2"",""0x10152a4"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x2c2"",""0x10152a4"",""0x206"",""0x3"",""0x77ab4f4""]" 1 518 0x3 +2026-04-25T21:17:34.527Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x2c2"",""0x10152a4"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x2c2"",""0x10152a4"",""0x206"",""0x3"",""0x77ab4f4""]" 2 3 0x77ab4f4 f8 7c 7a +2026-04-25T21:17:34.530Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:34.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x97"",""0x7cb8074"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x97"",""0x7cb8074"",""0x206"",""0x3"",""0x77ab4f4""]" 0 151 0x7cb8074 97 00 00 00 01 00 69 00 00 00 00 00 00 00 5e 30 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 8d 80 19 ac 12 5c 80 4f 97 63 2e 26 4e af ea e7 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:17:34.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x97"",""0x7cb8074"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x97"",""0x7cb8074"",""0x206"",""0x3"",""0x77ab4f4""]" 1 518 0x3 +2026-04-25T21:17:34.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x97"",""0x7cb8074"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x97"",""0x7cb8074"",""0x206"",""0x3"",""0x77ab4f4""]" 2 3 0x77ab4f4 f8 7c 7a +2026-04-25T21:17:34.535Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:34.750Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x918c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x93"",""0x926a448"",""0xafea38"",""0x44cd2619""]" 0 1 0x2 +2026-04-25T21:17:34.750Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x918c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x93"",""0x926a448"",""0xafea38"",""0x44cd2619""]" 1 147 0x926a448 10 01 00 01 00 00 00 7e ad 5a fe 50 0a 37 45 bb cb c0 3f d8 c5 5e c0 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 00 00 81 4e 00 6f 00 53 00 75 00 63 00 68 00 4f 00 62 00 6a 00 65 00 63 00 74 00 5f 00 39 00 39 00 39 00 2e 00 4e 00 6f 00 53 00 75 00 63 00 68 00 41 00 74 00 74 00 72 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:17:34.751Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x918c738 "[""0x1"",""0x1"",""0x1"",""0xc1"",""0x9c7b020"",""0x235c69f2"",""0x91877f4"",""0x91877e4"",""0x641add04"",""0x0""]" 0 193 0x9c7b020 01 00 93 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 7e ad 5a fe 50 0a 37 45 bb cb c0 3f d8 c5 5e c0 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 00 00 81 4e 00 6f 00 53 00 75 00 63 00 68 00 4f 00 62 00 6a 00 65 00 63 00 74 00 5f 00 39 00 39 00 39 00 2e 00 4e 00 6f 00 53 00 75 00 63 00 68 00 41 00 74 00 74 00 72 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:17:34.751Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:17:34.752Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:17:34.770Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x2e"",""0x10152a4"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x2e"",""0x10152a4"",""0x206"",""0x3"",""0x77ab4f4""]" 0 46 0x10152a4 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 +2026-04-25T21:17:34.770Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x2e"",""0x10152a4"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x2e"",""0x10152a4"",""0x206"",""0x3"",""0x77ab4f4""]" 1 518 0x3 +2026-04-25T21:17:34.770Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0x2e"",""0x10152a4"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0x2e"",""0x10152a4"",""0x206"",""0x3"",""0x77ab4f4""]" 2 3 0x77ab4f4 f8 7c 7a +2026-04-25T21:17:34.772Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:34.775Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0xb9"",""0x7cb8074"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0xb9"",""0x7cb8074"",""0x206"",""0x3"",""0x77ab4f4""]" 0 185 0x7cb8074 b9 00 00 00 01 00 8b 00 00 00 00 00 00 00 61 30 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 7e ad 5a fe 50 0a 37 45 bb cb c0 3f d8 c5 5e c0 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 5e 00 00 00 38 00 00 81 4e 00 6f 00 53 00 75 00 63 00 68 00 4f 00 62 00 6a 00 65 00 63 00 74 00 5f 00 39 00 39 00 39 00 2e 00 4e 00 6f 00 53 00 75 00 63 00 68 00 41 00 74 00 74 00 72 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T21:17:34.775Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0xb9"",""0x7cb8074"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0xb9"",""0x7cb8074"",""0x206"",""0x3"",""0x77ab4f4""]" 1 518 0x3 +2026-04-25T21:17:34.775Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x918c738 "[""0xb9"",""0x7cb8074"",""0x75de9a0"",""0x76ffedd8"",""0x918c744"",""0xb9"",""0x7cb8074"",""0x206"",""0x3"",""0x77ab4f4""]" 2 3 0x77ab4f4 f8 7c 7a +2026-04-25T21:17:34.776Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:17:35.430Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xafed48 "[""0x5ef8ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x91"",""0x0"",""0x1"",""0x1d8b12aa"",""0x74794704""]" +2026-04-25T21:17:35.430Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] diff --git a/captures/090-frida-write-invalid-reference/frida-exit.txt b/captures/090-frida-write-invalid-reference/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/090-frida-write-invalid-reference/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/090-frida-write-invalid-reference/frida.stderr.txt b/captures/090-frida-write-invalid-reference/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/090-frida-write-invalid-reference/frida.stdout.jsonl b/captures/090-frida-write-invalid-reference/frida.stdout.jsonl new file mode 100644 index 0000000..624375a --- /dev/null +++ b/captures/090-frida-write-invalid-reference/frida.stdout.jsonl @@ -0,0 +1,67 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=NoSuchObject_999.NoSuchAttr --type=int --value=145 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\090-frida-write-invalid-reference\harness.log --client=MxFridaTrace-090-frida-write-invalid-reference`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=NoSuchObject_999.NoSuchAttr --type=int --value=145 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\090-frida-write-invalid-reference\harness.log --client=MxFridaTrace-090-frida-write-invalid-reference`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:17:21.352Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:17:21.353Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:17:21.354Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:17:21.354Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:17:21.355Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:17:21.355Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:17:21.356Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:17:21.356Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:17:21.357Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:17:34.146Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:17:34.146Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:17:34.147Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:17:34.147Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:17:34.148Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:17:34.148Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:17:34.149Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:17:34.246Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:17:34.247Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:17:34.248Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:17:34.248Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9187010","outPtr":"0xafe6ac","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:17:34.284Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafe6ac","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafe6ac","time":"2026-04-25T21:17:34.284Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9187010","outPtr":"0xafe6ac","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:17:34.285Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafe6ac","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafe6ac","time":"2026-04-25T21:17:34.285Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:17:34.382Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9190588","referenceString":{"length":27,"capacity":31,"value":"NoSuchObject_999.NoSuchAttr"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x925cbd8","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b8 ca 25 09 00 65 00 00 00 02 00 00 00 00 00 02 1b 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 cb 25 09 14 0b 77 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 18 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2c 20 fc 00 00 00 00 00"},"time":"2026-04-25T21:17:34.383Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91905d8","outPtr":"0xafebb0","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xafebb0","time":"2026-04-25T21:17:34.384Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91905d8","outPtr":"0xafeb9c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xafeb9c","time":"2026-04-25T21:17:34.384Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91905d8","outPtr":"0xafebb0","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xafebb0","time":"2026-04-25T21:17:34.385Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9190588","referenceString":{"length":27,"capacity":31,"value":"NoSuchObject_999.NoSuchAttr"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x925cbd8","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 b8 ca 25 09 00 65 00 00 00 02 00 00 00 00 00 02 1b 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 cb 25 09 14 0b 77 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 18 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 2c 20 fc 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:17:34.386Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":7274574,"time":"2026-04-25T21:17:34.386Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xafed74","args":["0x5ef8ff0","0x1","0x1","0x1d8b12aa","0x74794704"],"time":"2026-04-25T21:17:34.388Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:17:34.388Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x918c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9190648","0xafea38","0x44cd2619"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9190648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 18 09 1f 01 00 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 19 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:17:34.512Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x918c738","args":["0x1","0x1","0x1","0x168","0x9c7b020","0x235c69f2","0x9190214","0x9190204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9c7b020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 18 09 1f 01 00 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 19 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:17:34.515Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:17:34.515Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:17:34.516Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x918c738","args":["0x2c2","0x10152a4","0x75de9a0","0x76ffedd8","0x918c744","0x2c2","0x10152a4","0x206","0x3","0x77ab4f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x10152a4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 8d 80 19 ac 12 5c 80 4f 97 63 2e 26 4e af ea e7 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77ab4f4","hex":"f8 7c 7a"}],"time":"2026-04-25T21:17:34.527Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:34.530Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x918c738","args":["0x97","0x7cb8074","0x75de9a0","0x76ffedd8","0x918c744","0x97","0x7cb8074","0x206","0x3","0x77ab4f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7cb8074","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 5e 30 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 8d 80 19 ac 12 5c 80 4f 97 63 2e 26 4e af ea e7 f0 a9 cc 12 f4 44 18 47 81 fa 2b d9 5d 62 f7 79 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77ab4f4","hex":"f8 7c 7a"}],"time":"2026-04-25T21:17:34.533Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:34.535Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x918c738","0x1","0x1","0x1","0x2","0x0","0x93","0x926a448","0xafea38","0x44cd2619"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":147,"ptr":"0x926a448","hex":"10 01 00 01 00 00 00 7e ad 5a fe 50 0a 37 45 bb cb c0 3f d8 c5 5e c0 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 00 00 81 4e 00 6f 00 53 00 75 00 63 00 68 00 4f 00 62 00 6a 00 65 00 63 00 74 00 5f 00 39 00 39 00 39 00 2e 00 4e 00 6f 00 53 00 75 00 63 00 68 00 41 00 74 00 74 00 72 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:17:34.750Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x918c738","args":["0x1","0x1","0x1","0xc1","0x9c7b020","0x235c69f2","0x91877f4","0x91877e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":193,"ptr":"0x9c7b020","hex":"01 00 93 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 7e ad 5a fe 50 0a 37 45 bb cb c0 3f d8 c5 5e c0 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 00 00 81 4e 00 6f 00 53 00 75 00 63 00 68 00 4f 00 62 00 6a 00 65 00 63 00 74 00 5f 00 39 00 39 00 39 00 2e 00 4e 00 6f 00 53 00 75 00 63 00 68 00 41 00 74 00 74 00 72 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:17:34.751Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:17:34.751Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:17:34.752Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x918c738","args":["0x2e","0x10152a4","0x75de9a0","0x76ffedd8","0x918c744","0x2e","0x10152a4","0x206","0x3","0x77ab4f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x10152a4","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77ab4f4","hex":"f8 7c 7a"}],"time":"2026-04-25T21:17:34.770Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:34.772Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x918c738","args":["0xb9","0x7cb8074","0x75de9a0","0x76ffedd8","0x918c744","0xb9","0x7cb8074","0x206","0x3","0x77ab4f4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":185,"ptr":"0x7cb8074","hex":"b9 00 00 00 01 00 8b 00 00 00 00 00 00 00 61 30 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 7e ad 5a fe 50 0a 37 45 bb cb c0 3f d8 c5 5e c0 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 5e 00 00 00 38 00 00 81 4e 00 6f 00 53 00 75 00 63 00 68 00 4f 00 62 00 6a 00 65 00 63 00 74 00 5f 00 39 00 39 00 39 00 2e 00 4e 00 6f 00 53 00 75 00 63 00 68 00 41 00 74 00 74 00 72 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x77ab4f4","hex":"f8 7c 7a"}],"time":"2026-04-25T21:17:34.775Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:17:34.776Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xafed48","args":["0x5ef8ff0","0x1","0x1","0x3","0x0","0x91","0x0","0x1","0x1d8b12aa","0x74794704"],"time":"2026-04-25T21:17:35.430Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:17:35.430Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/090-frida-write-invalid-reference/harness.log b/captures/090-frida-write-invalid-reference/harness.log new file mode 100644 index 0000000..09b36c7 --- /dev/null +++ b/captures/090-frida-write-invalid-reference/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:17:21.2557404+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-090-frida-write-invalid-reference","Tags":["NoSuchObject_999.NoSuchAttr"],"ItemContext":"","WriteType":"int","WriteValue":"145","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:17:34.0129449+00:00 mx.register.begin {"ClientName":"MxFridaTrace-090-frida-write-invalid-reference"} +2026-04-25T21:17:34.3800417+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:17:34.3800417+00:00 mx.additem.begin {"Tag":"NoSuchObject_999.NoSuchAttr"} +2026-04-25T21:17:34.3860086+00:00 mx.additem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:17:34.3870242+00:00 mx.advise-supervisory.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:17:34.3890210+00:00 mx.advise-supervisory.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:17:35.4276517+00:00 mx.write.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"145"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:17:35.4306521+00:00 mx.write.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:17:40.4388728+00:00 mx.unadvise.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:17:40.4388728+00:00 mx.unadvise.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:17:40.4398756+00:00 mx.removeitem.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:17:40.4398756+00:00 mx.removeitem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:17:40.4398756+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:17:40.6198534+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:17:40.6278533+00:00 harness.stop {} diff --git a/captures/091-frida-write-testint-double-type/frida-command.txt b/captures/091-frida-write-testint-double-type/frida-command.txt new file mode 100644 index 0000000..66733aa --- /dev/null +++ b/captures/091-frida-write-testint-double-type/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestInt --type=double --value=1.25 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\091-frida-write-testint-double-type\harness.log --client=MxFridaTrace-091-frida-write-testint-double-type diff --git a/captures/091-frida-write-testint-double-type/frida-events.tsv b/captures/091-frida-write-testint-double-type/frida-events.tsv new file mode 100644 index 0000000..ccda4d3 --- /dev/null +++ b/captures/091-frida-write-testint-double-type/frida-events.tsv @@ -0,0 +1,80 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:22:05.315Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:22:05.315Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:22:05.316Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:22:05.316Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:22:05.317Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:22:05.317Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:22:05.318Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:22:05.318Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:22:05.319Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:22:12.063Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:22:12.064Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:22:12.064Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:22:12.065Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:12.065Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:22:12.066Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:22:12.066Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:22:12.164Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:22:12.165Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:22:12.165Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:22:12.166Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:22:12.222Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:12.223Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x9be298 [] +2026-04-25T21:22:12.224Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:12.224Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x9be298 [] +2026-04-25T21:22:12.327Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:22:12.328Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be818 [] +2026-04-25T21:22:12.329Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:22:12.329Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be7a8 [] +2026-04-25T21:22:12.330Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be7a8 [] +2026-04-25T21:22:12.330Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x9be7a8 [] +2026-04-25T21:22:12.331Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:22:12.331Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:22:12.333Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x9be964 "[""0x5f98ff0"",""0x1"",""0x1"",""0x64072980"",""0x74794704""]" +2026-04-25T21:22:12.334Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:12.334Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x9be7e4 [] +2026-04-25T21:22:12.334Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:12.335Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x9bd478 [] +2026-04-25T21:22:12.335Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:22:12.461Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9290648"",""0x9be628"",""0x22a16a""]" 0 1 0x2 +2026-04-25T21:22:12.461Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9290648"",""0x9be628"",""0x22a16a""]" 1 314 0x9290648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00 +2026-04-25T21:22:12.465Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x928c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9c2d020"",""0xcf91fb18"",""0x9290214"",""0x9290204"",""0x641add04"",""0x0""]" 0 360 0x9c2d020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00 +2026-04-25T21:22:12.465Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:12.466Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:12.467Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x935cb00"",""0x9be628"",""0x22a16a""]" 0 2 0x2 +2026-04-25T21:22:12.467Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x935cb00"",""0x9be628"",""0x22a16a""]" 1 39 0x935cb00 1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:22:12.468Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x928c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9c2d020"",""0xcf91fb18"",""0x9369584"",""0x9369574"",""0x641add04"",""0x0""]" 0 85 0x9c2d020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:22:12.469Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:12.469Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:12.521Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x5c"",""0xff2b34"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x5c"",""0xff2b34"",""0x206"",""0x3"",""0x7899eec""]" 0 92 0xff2b34 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 22 6b 25 cf 49 b8 48 47 8e eb c3 1d bf c3 c4 a3 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 +2026-04-25T21:22:12.521Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x5c"",""0xff2b34"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x5c"",""0xff2b34"",""0x206"",""0x3"",""0x7899eec""]" 1 518 0x3 +2026-04-25T21:22:12.521Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x5c"",""0xff2b34"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x5c"",""0xff2b34"",""0x206"",""0x3"",""0x7899eec""]" 2 3 0x7899eec 18 9c 74 +2026-04-25T21:22:12.524Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:12.527Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x6c"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x6c"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 0 108 0xff6f54 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 ac 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 22 6b 25 cf 49 b8 48 47 8e eb c3 1d bf c3 c4 a3 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 03 00 00 00 03 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02 +2026-04-25T21:22:12.527Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x6c"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x6c"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 1 518 0x3 +2026-04-25T21:22:12.527Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x6c"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x6c"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 2 3 0x7899eec 18 9c 74 +2026-04-25T21:22:12.528Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:12.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2c2"",""0xff2b34"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x2c2"",""0xff2b34"",""0x206"",""0x3"",""0x7899eec""]" 0 706 0xff2b34 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 11 f8 40 ad 5f 41 59 4e a4 9a 4f 3d ac d0 72 19 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:22:12.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2c2"",""0xff2b34"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x2c2"",""0xff2b34"",""0x206"",""0x3"",""0x7899eec""]" 1 518 0x3 +2026-04-25T21:22:12.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x2c2"",""0xff2b34"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x2c2"",""0xff2b34"",""0x206"",""0x3"",""0x7899eec""]" 2 3 0x7899eec 18 9c 74 +2026-04-25T21:22:12.534Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:12.536Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x97"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x97"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 0 151 0xff6f54 97 00 00 00 01 00 69 00 00 00 00 00 00 00 bf 34 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 11 f8 40 ad 5f 41 59 4e a4 9a 4f 3d ac d0 72 19 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:22:12.536Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x97"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x97"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 1 518 0x3 +2026-04-25T21:22:12.536Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x97"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x97"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 2 3 0x7899eec 18 9c 74 +2026-04-25T21:22:12.538Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:13.379Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x9be938 "[""0x5f98ff0"",""0x1"",""0x1"",""0x5"",""0x0"",""0x0"",""0x3ff40000"",""0x1"",""0x64072980"",""0x74794704""]" +2026-04-25T21:22:13.380Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:22:13.432Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x935c8c0"",""0x9be628"",""0x22a16a""]" 0 2 0x2 +2026-04-25T21:22:13.432Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x928c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x2c"",""0x935c8c0"",""0x9be628"",""0x22a16a""]" 1 44 0x935c8c0 1.25:f64@18 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 00 00 00 f4 3f ff ff 00 00 00 00 00 00 00 00 35 02 ec 0b 01 00 00 00 +2026-04-25T21:22:13.433Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x928c738 "[""0x1"",""0x1"",""0x2"",""0x5a"",""0x9c2d020"",""0xcf91fb18"",""0x93699dc"",""0x93699cc"",""0x641add04"",""0x0""]" 0 90 0x9c2d020 1.25:f64@64 01 00 2c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 00 00 00 f4 3f ff ff 00 00 00 00 00 00 00 00 35 02 ec 0b 01 00 00 00 +2026-04-25T21:22:13.433Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:13.434Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:13.462Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x33"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x33"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 0 51 0xff6f54 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:22:13.462Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x33"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x33"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 1 518 0x3 +2026-04-25T21:22:13.462Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x33"",""0xff6f54"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x33"",""0xff6f54"",""0x206"",""0x3"",""0x7899eec""]" 2 3 0x7899eec 18 9c 74 +2026-04-25T21:22:13.464Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:13.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x58"",""0x7850e14"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x58"",""0x7850e14"",""0x206"",""0x3"",""0x7899eec""]" 0 88 0x7850e14 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 ad 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 22 6b 25 cf 49 b8 48 47 8e eb c3 1d bf c3 c4 a3 03 00 00 00 c0 00 50 08 83 95 f9 d4 dc 01 02 +2026-04-25T21:22:13.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x58"",""0x7850e14"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x58"",""0x7850e14"",""0x206"",""0x3"",""0x7899eec""]" 1 518 0x3 +2026-04-25T21:22:13.466Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x928c738 "[""0x58"",""0x7850e14"",""0x751e928"",""0x76ffedd8"",""0x928c744"",""0x58"",""0x7850e14"",""0x206"",""0x3"",""0x7899eec""]" 2 3 0x7899eec 18 9c 74 +2026-04-25T21:22:13.468Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/091-frida-write-testint-double-type/frida-exit.txt b/captures/091-frida-write-testint-double-type/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/091-frida-write-testint-double-type/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/091-frida-write-testint-double-type/frida.stderr.txt b/captures/091-frida-write-testint-double-type/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/091-frida-write-testint-double-type/frida.stdout.jsonl b/captures/091-frida-write-testint-double-type/frida.stdout.jsonl new file mode 100644 index 0000000..51dba24 --- /dev/null +++ b/captures/091-frida-write-testint-double-type/frida.stdout.jsonl @@ -0,0 +1,80 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=double --value=1.25 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\091-frida-write-testint-double-type\harness.log --client=MxFridaTrace-091-frida-write-testint-double-type`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestInt --type=double --value=1.25 --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\091-frida-write-testint-double-type\harness.log --client=MxFridaTrace-091-frida-write-testint-double-type`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:22:05.315Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:22:05.315Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:22:05.316Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:22:05.316Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:22:05.317Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:22:05.317Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:22:05.318Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:22:05.318Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:22:05.319Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:22:12.063Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:22:12.064Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:22:12.064Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:22:12.065Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:22:12.065Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:22:12.066Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:22:12.066Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:22:12.164Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:22:12.165Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:22:12.165Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:22:12.166Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9287010","outPtr":"0x9be298","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:22:12.222Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x9be298","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x9be298","time":"2026-04-25T21:22:12.223Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9287010","outPtr":"0x9be298","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:22:12.224Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x9be298","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x9be298","time":"2026-04-25T21:22:12.224Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:22:12.327Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93314c8","outPtr":"0x9be818","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x9be818","time":"2026-04-25T21:22:12.328Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9290588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935c878","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 7f 28 09 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 78 c8 35 09 bc b8 74 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 74 50 fd 00 00 00 00 00"},"time":"2026-04-25T21:22:12.329Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be7a8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x9be7a8","time":"2026-04-25T21:22:12.329Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be7a8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x9be7a8","time":"2026-04-25T21:22:12.330Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92905d8","outPtr":"0x9be7a8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x9be7a8","time":"2026-04-25T21:22:12.330Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9290588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x935c878","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 7f 28 09 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 78 c8 35 09 bc b8 74 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 28 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 74 50 fd 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:22:12.331Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:22:12.331Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x9be964","args":["0x5f98ff0","0x1","0x1","0x64072980","0x74794704"],"time":"2026-04-25T21:22:12.333Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9287010","outPtr":"0x9be7e4","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:22:12.334Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x9be7e4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x9be7e4","time":"2026-04-25T21:22:12.334Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9287010","outPtr":"0x9bd478","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:22:12.334Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x9bd478","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x9bd478","time":"2026-04-25T21:22:12.335Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:22:12.335Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x928c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9290648","0x9be628","0x22a16a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9290648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:22:12.461Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x928c738","args":["0x1","0x1","0x1","0x168","0x9c2d020","0xcf91fb18","0x9290214","0x9290204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9c2d020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 28 09 1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 29 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:22:12.465Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:12.465Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:12.466Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x928c738","0x1","0x1","0x2","0x2","0x0","0x27","0x935cb00","0x9be628","0x22a16a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x935cb00","hex":"1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:22:12.467Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x928c738","args":["0x1","0x1","0x2","0x55","0x9c2d020","0xcf91fb18","0x9369584","0x9369574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9c2d020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:22:12.468Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:12.469Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:12.469Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x5c","0xff2b34","0x751e928","0x76ffedd8","0x928c744","0x5c","0xff2b34","0x206","0x3","0x7899eec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xff2b34","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 22 6b 25 cf 49 b8 48 47 8e eb c3 1d bf c3 c4 a3 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7899eec","hex":"18 9c 74"}],"time":"2026-04-25T21:22:12.521Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:12.524Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x6c","0xff6f54","0x751e928","0x76ffedd8","0x928c744","0x6c","0xff6f54","0x206","0x3","0x7899eec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0xff6f54","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 ac 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 22 6b 25 cf 49 b8 48 47 8e eb c3 1d bf c3 c4 a3 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 03 00 00 00 03 00 00 00 c0 00 50 27 05 0b f7 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7899eec","hex":"18 9c 74"}],"time":"2026-04-25T21:22:12.527Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:12.528Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x2c2","0xff2b34","0x751e928","0x76ffedd8","0x928c744","0x2c2","0xff2b34","0x206","0x3","0x7899eec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xff2b34","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 11 f8 40 ad 5f 41 59 4e a4 9a 4f 3d ac d0 72 19 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7899eec","hex":"18 9c 74"}],"time":"2026-04-25T21:22:12.533Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:12.534Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x97","0xff6f54","0x751e928","0x76ffedd8","0x928c744","0x97","0xff6f54","0x206","0x3","0x7899eec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xff6f54","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 bf 34 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 11 f8 40 ad 5f 41 59 4e a4 9a 4f 3d ac d0 72 19 1b 91 ec ef d6 4a c6 4a 94 bf a2 a7 d8 99 5a db 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7899eec","hex":"18 9c 74"}],"time":"2026-04-25T21:22:12.536Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:12.538Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x9be938","args":["0x5f98ff0","0x1","0x1","0x5","0x0","0x0","0x3ff40000","0x1","0x64072980","0x74794704"],"time":"2026-04-25T21:22:13.379Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:22:13.380Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x928c738","0x1","0x1","0x2","0x2","0x0","0x2c","0x935c8c0","0x9be628","0x22a16a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":44,"ptr":"0x935c8c0","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 00 00 00 f4 3f ff ff 00 00 00 00 00 00 00 00 35 02 ec 0b 01 00 00 00"}],"time":"2026-04-25T21:22:13.432Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x928c738","args":["0x1","0x1","0x2","0x5a","0x9c2d020","0xcf91fb18","0x93699dc","0x93699cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":90,"ptr":"0x9c2d020","hex":"01 00 2c 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 00 00 00 f4 3f ff ff 00 00 00 00 00 00 00 00 35 02 ec 0b 01 00 00 00"}],"time":"2026-04-25T21:22:13.433Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:13.433Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:13.434Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x33","0xff6f54","0x751e928","0x76ffedd8","0x928c744","0x33","0xff6f54","0x206","0x3","0x7899eec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xff6f54","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7899eec","hex":"18 9c 74"}],"time":"2026-04-25T21:22:13.462Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:13.464Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x928c738","args":["0x58","0x7850e14","0x751e928","0x76ffedd8","0x928c744","0x58","0x7850e14","0x206","0x3","0x7899eec"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7850e14","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 ad 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 22 6b 25 cf 49 b8 48 47 8e eb c3 1d bf c3 c4 a3 03 00 00 00 c0 00 50 08 83 95 f9 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7899eec","hex":"18 9c 74"}],"time":"2026-04-25T21:22:13.466Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:13.468Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/091-frida-write-testint-double-type/harness.log b/captures/091-frida-write-testint-double-type/harness.log new file mode 100644 index 0000000..c0e0e4c --- /dev/null +++ b/captures/091-frida-write-testint-double-type/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:22:05.2214218+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-091-frida-write-testint-double-type","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"double","WriteValue":"1.25","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:22:11.9304652+00:00 mx.register.begin {"ClientName":"MxFridaTrace-091-frida-write-testint-double-type"} +2026-04-25T21:22:12.3253087+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:22:12.3253087+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:22:12.3313283+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:22:12.3323948+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:22:12.3353258+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:22:13.3765366+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Double","Value":"1.25"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:22:13.3805175+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:22:18.3941792+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:22:18.3941792+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:22:18.3941792+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:22:18.3941792+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:22:18.3941792+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:22:28.5245575+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:22:28.5305586+00:00 harness.stop {} diff --git a/captures/092-frida-write-testbool-string-type/frida-command.txt b/captures/092-frida-write-testbool-string-type/frida-command.txt new file mode 100644 index 0000000..6027e8c --- /dev/null +++ b/captures/092-frida-write-testbool-string-type/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestBool --type=string --value=not_bool --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\092-frida-write-testbool-string-type\harness.log --client=MxFridaTrace-092-frida-write-testbool-string-type diff --git a/captures/092-frida-write-testbool-string-type/frida-events.tsv b/captures/092-frida-write-testbool-string-type/frida-events.tsv new file mode 100644 index 0000000..7869b3e --- /dev/null +++ b/captures/092-frida-write-testbool-string-type/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:22:05.311Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:22:05.312Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:22:05.312Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:22:05.313Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:22:05.313Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:22:05.314Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:22:05.314Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:22:05.315Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:22:05.315Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:22:25.265Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:22:25.265Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:22:25.266Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:22:25.267Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:25.269Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:22:25.269Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:22:25.270Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:22:25.366Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:22:25.366Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:22:25.367Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:22:25.367Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:22:25.399Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:25.400Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8e6d4 [] +2026-04-25T21:22:25.400Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:25.401Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8e6d4 [] +2026-04-25T21:22:25.496Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:22:25.497Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ec58 [] +2026-04-25T21:22:25.498Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:22:25.498Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ebe8 [] +2026-04-25T21:22:25.499Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ebe8 [] +2026-04-25T21:22:25.499Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xf8ebe8 [] +2026-04-25T21:22:25.500Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:22:25.501Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:22:25.503Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xf8eda4 "[""0x6578ff0"",""0x1"",""0x1"",""0xca413c64"",""0x74794704""]" +2026-04-25T21:22:25.503Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:25.504Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8ec24 [] +2026-04-25T21:22:25.504Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:25.505Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xf8d8b8 [] +2026-04-25T21:22:25.505Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:22:25.629Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x956c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9570648"",""0xf8ea68"",""0xeb54da71""]" 0 1 0x2 +2026-04-25T21:22:25.629Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x956c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9570648"",""0xf8ea68"",""0xeb54da71""]" 1 314 0x9570648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 56 09 1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 57 09 20 01 00 02 00 00 00 +2026-04-25T21:22:25.631Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x956c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa145020"",""0x4fc32f05"",""0x9570214"",""0x9570204"",""0x641add04"",""0x0""]" 0 360 0xa145020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 56 09 1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 57 09 20 01 00 02 00 00 00 +2026-04-25T21:22:25.632Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:25.632Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:25.633Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x956c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x963f890"",""0xf8ea68"",""0xeb54da71""]" 0 2 0x2 +2026-04-25T21:22:25.633Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x956c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x963f890"",""0xf8ea68"",""0xeb54da71""]" 1 39 0x963f890 1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T21:22:25.634Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x956c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa145020"",""0x4fc32f05"",""0x957086c"",""0x957085c"",""0x641add04"",""0x0""]" 0 85 0xa145020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00 +2026-04-25T21:22:25.635Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:25.635Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:25.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x5c"",""0x7fb906c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x5c"",""0x7fb906c"",""0x206"",""0x3"",""0x7da4644""]" 0 92 0x7fb906c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 0d 39 94 5d 58 e7 9a 40 a5 7d b4 60 d0 18 44 f3 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 +2026-04-25T21:22:25.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x5c"",""0x7fb906c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x5c"",""0x7fb906c"",""0x206"",""0x3"",""0x7da4644""]" 1 518 0x3 +2026-04-25T21:22:25.672Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x5c"",""0x7fb906c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x5c"",""0x7fb906c"",""0x206"",""0x3"",""0x7da4644""]" 2 3 0x7da4644 e8 12 0d +2026-04-25T21:22:25.674Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:25.677Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x69"",""0x7d4028c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x69"",""0x7d4028c"",""0x206"",""0x3"",""0x7da4644""]" 0 105 0x7d4028c 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 af 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 0d 39 94 5d 58 e7 9a 40 a5 7d b4 60 d0 18 44 f3 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 03 00 00 00 03 00 00 00 c0 00 00 d3 c1 2f ab d4 +2026-04-25T21:22:25.677Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x69"",""0x7d4028c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x69"",""0x7d4028c"",""0x206"",""0x3"",""0x7da4644""]" 1 518 0x3 +2026-04-25T21:22:25.677Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x69"",""0x7d4028c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x69"",""0x7d4028c"",""0x206"",""0x3"",""0x7da4644""]" 2 3 0x7da4644 e8 12 0d +2026-04-25T21:22:25.678Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:25.682Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x2c2"",""0x7fbf69c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x2c2"",""0x7fbf69c"",""0x206"",""0x3"",""0x7da4644""]" 0 706 0x7fbf69c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 6d db f8 b3 3a d8 5e 4d a1 75 77 48 82 c3 fd a6 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:22:25.682Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x2c2"",""0x7fbf69c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x2c2"",""0x7fbf69c"",""0x206"",""0x3"",""0x7da4644""]" 1 518 0x3 +2026-04-25T21:22:25.682Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x2c2"",""0x7fbf69c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x2c2"",""0x7fbf69c"",""0x206"",""0x3"",""0x7da4644""]" 2 3 0x7da4644 e8 12 0d +2026-04-25T21:22:25.684Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:25.686Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x97"",""0x7d4028c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x97"",""0x7d4028c"",""0x206"",""0x3"",""0x7da4644""]" 0 151 0x7d4028c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 f7 34 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 6d db f8 b3 3a d8 5e 4d a1 75 77 48 82 c3 fd a6 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:22:25.686Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x97"",""0x7d4028c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x97"",""0x7d4028c"",""0x206"",""0x3"",""0x7da4644""]" 1 518 0x3 +2026-04-25T21:22:25.686Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x97"",""0x7d4028c"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x97"",""0x7d4028c"",""0x206"",""0x3"",""0x7da4644""]" 2 3 0x7da4644 e8 12 0d +2026-04-25T21:22:25.688Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:26.546Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xf8ed78 "[""0x6578ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x809fe0c"",""0x0"",""0x1"",""0xca413c64"",""0x74794704""]" +2026-04-25T21:22:26.547Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:22:26.600Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x956c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3e"",""0x963f2a8"",""0xf8ea68"",""0xeb54da71""]" 0 2 0x2 +2026-04-25T21:22:26.600Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x956c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x3e"",""0x963f2a8"",""0xf8ea68"",""0xeb54da71""]" 1 62 0x963f2a8 not_bool:utf16le@26 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 05 16 00 00 00 12 00 00 00 6e 00 6f 00 74 00 5f 00 62 00 6f 00 6f 00 6c 00 00 00 ff ff 00 00 00 00 00 00 00 00 a9 35 ec 0b 01 00 00 00 +2026-04-25T21:22:26.601Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x956c738 "[""0x1"",""0x1"",""0x2"",""0x6c"",""0xa145020"",""0x4fc32f05"",""0x95677f4"",""0x95677e4"",""0x641add04"",""0x0""]" 0 108 0xa145020 not_bool:utf16le@72 01 00 3e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 05 16 00 00 00 12 00 00 00 6e 00 6f 00 74 00 5f 00 62 00 6f 00 6f 00 6c 00 00 00 ff ff 00 00 00 00 00 00 00 00 a9 35 ec 0b 01 00 00 00 +2026-04-25T21:22:26.601Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:26.602Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:26.618Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x33"",""0x7fba174"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x33"",""0x7fba174"",""0x206"",""0x3"",""0x7da4644""]" 0 51 0x7fba174 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 41 +2026-04-25T21:22:26.618Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x33"",""0x7fba174"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x33"",""0x7fba174"",""0x206"",""0x3"",""0x7da4644""]" 1 518 0x3 +2026-04-25T21:22:26.618Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x956c738 "[""0x33"",""0x7fba174"",""0x79ae818"",""0x76ffedd8"",""0x956c744"",""0x33"",""0x7fba174"",""0x206"",""0x3"",""0x7da4644""]" 2 3 0x7da4644 e8 12 0d +2026-04-25T21:22:26.620Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/092-frida-write-testbool-string-type/frida-exit.txt b/captures/092-frida-write-testbool-string-type/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/092-frida-write-testbool-string-type/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/092-frida-write-testbool-string-type/frida.stderr.txt b/captures/092-frida-write-testbool-string-type/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/092-frida-write-testbool-string-type/frida.stdout.jsonl b/captures/092-frida-write-testbool-string-type/frida.stdout.jsonl new file mode 100644 index 0000000..0922d52 --- /dev/null +++ b/captures/092-frida-write-testbool-string-type/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBool --type=string --value=not_bool --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\092-frida-write-testbool-string-type\harness.log --client=MxFridaTrace-092-frida-write-testbool-string-type`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBool --type=string --value=not_bool --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\092-frida-write-testbool-string-type\harness.log --client=MxFridaTrace-092-frida-write-testbool-string-type`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:22:05.311Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:22:05.312Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:22:05.312Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:22:05.313Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:22:05.313Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:22:05.314Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:22:05.314Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:22:05.315Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:22:05.315Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:22:25.265Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:22:25.265Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:22:25.266Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:22:25.267Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:22:25.269Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:22:25.269Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:22:25.270Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:22:25.366Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:22:25.366Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:22:25.367Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:22:25.367Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9567010","outPtr":"0xf8e6d4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:22:25.399Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8e6d4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf8e6d4","time":"2026-04-25T21:22:25.400Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9567010","outPtr":"0xf8e6d4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:22:25.400Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8e6d4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xf8e6d4","time":"2026-04-25T21:22:25.401Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:22:25.496Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9617420","outPtr":"0xf8ec58","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0xf8ec58","time":"2026-04-25T21:22:25.497Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9570588","referenceString":{"length":24,"capacity":31,"value":"TestChildObject.TestBool"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x963f410","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 48 f8 63 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 f4 63 09 dc 90 0a 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 56 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 6c 8b 29 01 00 00 00 00"},"time":"2026-04-25T21:22:25.498Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95705d8","outPtr":"0xf8ebe8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0xf8ebe8","time":"2026-04-25T21:22:25.498Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95705d8","outPtr":"0xf8ebe8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0xf8ebe8","time":"2026-04-25T21:22:25.499Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95705d8","outPtr":"0xf8ebe8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0xf8ebe8","time":"2026-04-25T21:22:25.499Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9570588","referenceString":{"length":24,"capacity":31,"value":"TestChildObject.TestBool"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x963f410","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 48 f8 63 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 f4 63 09 dc 90 0a 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 56 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 6c 8b 29 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:22:25.500Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:22:25.501Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xf8eda4","args":["0x6578ff0","0x1","0x1","0xca413c64","0x74794704"],"time":"2026-04-25T21:22:25.503Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9567010","outPtr":"0xf8ec24","inWords":[65537,327682,186166,655514,32250,0],"time":"2026-04-25T21:22:25.503Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8ec24","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0xf8ec24","time":"2026-04-25T21:22:25.504Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9567010","outPtr":"0xf8d8b8","inWords":[65537,327682,186166,655514,32250,0],"time":"2026-04-25T21:22:25.504Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xf8d8b8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655514,"w4":32250},"retval":"0xf8d8b8","time":"2026-04-25T21:22:25.505Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:22:25.505Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x956c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9570648","0xf8ea68","0xeb54da71"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9570648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 56 09 1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 57 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:22:25.629Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x956c738","args":["0x1","0x1","0x1","0x168","0xa145020","0x4fc32f05","0x9570214","0x9570204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa145020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 56 09 1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 57 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:22:25.631Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:25.632Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:25.632Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x956c738","0x1","0x1","0x2","0x2","0x0","0x27","0x963f890","0xf8ea68","0xeb54da71"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x963f890","hex":"1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T21:22:25.633Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x956c738","args":["0x1","0x1","0x2","0x55","0xa145020","0x4fc32f05","0x957086c","0x957085c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa145020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00"}],"time":"2026-04-25T21:22:25.634Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:25.635Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:25.635Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x956c738","args":["0x5c","0x7fb906c","0x79ae818","0x76ffedd8","0x956c744","0x5c","0x7fb906c","0x206","0x3","0x7da4644"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7fb906c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 0d 39 94 5d 58 e7 9a 40 a5 7d b4 60 d0 18 44 f3 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7da4644","hex":"e8 12 0d"}],"time":"2026-04-25T21:22:25.672Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:25.674Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x956c738","args":["0x69","0x7d4028c","0x79ae818","0x76ffedd8","0x956c744","0x69","0x7d4028c","0x206","0x3","0x7da4644"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x7d4028c","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 af 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 0d 39 94 5d 58 e7 9a 40 a5 7d b4 60 d0 18 44 f3 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 03 00 00 00 03 00 00 00 c0 00 00 d3 c1 2f ab d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7da4644","hex":"e8 12 0d"}],"time":"2026-04-25T21:22:25.677Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:25.678Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x956c738","args":["0x2c2","0x7fbf69c","0x79ae818","0x76ffedd8","0x956c744","0x2c2","0x7fbf69c","0x206","0x3","0x7da4644"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7fbf69c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 6d db f8 b3 3a d8 5e 4d a1 75 77 48 82 c3 fd a6 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7da4644","hex":"e8 12 0d"}],"time":"2026-04-25T21:22:25.682Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:25.684Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x956c738","args":["0x97","0x7d4028c","0x79ae818","0x76ffedd8","0x956c744","0x97","0x7d4028c","0x206","0x3","0x7da4644"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7d4028c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 f7 34 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 6d db f8 b3 3a d8 5e 4d a1 75 77 48 82 c3 fd a6 9a 24 a6 62 3d 4b 50 47 ae 26 89 d1 39 3c 5c ad 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7da4644","hex":"e8 12 0d"}],"time":"2026-04-25T21:22:25.686Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:25.688Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xf8ed78","args":["0x6578ff0","0x1","0x1","0x8","0x0","0x809fe0c","0x0","0x1","0xca413c64","0x74794704"],"time":"2026-04-25T21:22:26.546Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:22:26.547Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x956c738","0x1","0x1","0x2","0x2","0x0","0x3e","0x963f2a8","0xf8ea68","0xeb54da71"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":62,"ptr":"0x963f2a8","hex":"37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 05 16 00 00 00 12 00 00 00 6e 00 6f 00 74 00 5f 00 62 00 6f 00 6f 00 6c 00 00 00 ff ff 00 00 00 00 00 00 00 00 a9 35 ec 0b 01 00 00 00"}],"time":"2026-04-25T21:22:26.600Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x956c738","args":["0x1","0x1","0x2","0x6c","0xa145020","0x4fc32f05","0x95677f4","0x95677e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":108,"ptr":"0xa145020","hex":"01 00 3e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 05 16 00 00 00 12 00 00 00 6e 00 6f 00 74 00 5f 00 62 00 6f 00 6f 00 6c 00 00 00 ff ff 00 00 00 00 00 00 00 00 a9 35 ec 0b 01 00 00 00"}],"time":"2026-04-25T21:22:26.601Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:26.601Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:26.602Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x956c738","args":["0x33","0x7fba174","0x79ae818","0x76ffedd8","0x956c744","0x33","0x7fba174","0x206","0x3","0x7da4644"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fba174","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 41"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7da4644","hex":"e8 12 0d"}],"time":"2026-04-25T21:22:26.618Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:26.620Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/092-frida-write-testbool-string-type/harness.log b/captures/092-frida-write-testbool-string-type/harness.log new file mode 100644 index 0000000..07b4de9 --- /dev/null +++ b/captures/092-frida-write-testbool-string-type/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:22:05.2174209+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-092-frida-write-testbool-string-type","Tags":["TestChildObject.TestBool"],"ItemContext":"","WriteType":"string","WriteValue":"not_bool","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:22:25.1164851+00:00 mx.register.begin {"ClientName":"MxFridaTrace-092-frida-write-testbool-string-type"} +2026-04-25T21:22:25.4931903+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:22:25.4941904+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-25T21:22:25.5011461+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T21:22:25.5021328+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T21:22:25.5051326+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T21:22:26.5433667+00:00 mx.write.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String","Value":"not_bool"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:22:26.5473712+00:00 mx.write.end {"Tag":"TestChildObject.TestBool","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:22:31.5664534+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T21:22:31.5664534+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T21:22:31.5664534+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T21:22:31.5664534+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-25T21:22:31.5664534+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:22:32.1313482+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:22:32.1364064+00:00 harness.stop {} diff --git a/captures/093-frida-write-testdatetime-string-type/frida-command.txt b/captures/093-frida-write-testdatetime-string-type/frida-command.txt new file mode 100644 index 0000000..e60675a --- /dev/null +++ b/captures/093-frida-write-testdatetime-string-type/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestDateTime --type=string --value=not_a_date --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\093-frida-write-testdatetime-string-type\harness.log --client=MxFridaTrace-093-frida-write-testdatetime-string-type diff --git a/captures/093-frida-write-testdatetime-string-type/frida-events.tsv b/captures/093-frida-write-testdatetime-string-type/frida-events.tsv new file mode 100644 index 0000000..ad02239 --- /dev/null +++ b/captures/093-frida-write-testdatetime-string-type/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:22:05.331Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:22:05.331Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:22:05.332Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:22:05.332Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:22:05.333Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:22:05.334Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:22:05.335Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:22:05.335Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:22:05.336Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:22:18.722Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:22:18.723Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:22:18.724Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:22:18.724Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:18.725Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:22:18.725Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:22:18.726Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:22:18.822Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:18.822Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x59e68c [] +2026-04-25T21:22:18.823Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:22:18.824Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:22:18.824Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:22:18.824Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:22:18.825Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:18.825Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x59e68c [] +2026-04-25T21:22:18.952Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:22:18.953Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x59ec10 [] +2026-04-25T21:22:18.954Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:22:18.955Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x59eba0 [] +2026-04-25T21:22:18.955Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x59eba0 [] +2026-04-25T21:22:18.955Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x59eba0 [] +2026-04-25T21:22:18.956Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:22:18.957Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:22:18.959Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x59ed64 "[""0x5bd8ff0"",""0x1"",""0x1"",""0xe51895a6"",""0x74794704""]" +2026-04-25T21:22:18.959Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:18.960Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x59ebe4 [] +2026-04-25T21:22:18.960Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:22:18.960Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x59d878 [] +2026-04-25T21:22:18.961Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:22:19.087Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8e70648"",""0x59ea28"",""0xabf7bb1c""]" 0 1 0x2 +2026-04-25T21:22:19.087Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8e70648"",""0x59ea28"",""0xabf7bb1c""]" 1 314 0x8e70648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e6 08 1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e7 08 20 01 00 02 00 00 00 +2026-04-25T21:22:19.090Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e6c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9812020"",""0x9188a005"",""0x8e70214"",""0x8e70204"",""0x641add04"",""0x0""]" 0 360 0x9812020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e6 08 1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e7 08 20 01 00 02 00 00 00 +2026-04-25T21:22:19.090Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:19.091Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:19.091Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8f3c758"",""0x59ea28"",""0xabf7bb1c""]" 0 2 0x2 +2026-04-25T21:22:19.091Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8f3c758"",""0x59ea28"",""0xabf7bb1c""]" 1 39 0x8f3c758 1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00 +2026-04-25T21:22:19.093Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e6c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9812020"",""0x9188a005"",""0x8f49584"",""0x8f49574"",""0x641add04"",""0x0""]" 0 85 0x9812020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00 +2026-04-25T21:22:19.094Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:19.094Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:19.102Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x2c2"",""0x79cbcbc"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x2c2"",""0x79cbcbc"",""0x206"",""0x3"",""0x74c0344""]" 0 706 0x79cbcbc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 77 ff 7d 55 de 54 75 42 84 dc a2 94 16 55 07 43 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:22:19.102Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x2c2"",""0x79cbcbc"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x2c2"",""0x79cbcbc"",""0x206"",""0x3"",""0x74c0344""]" 1 518 0x3 +2026-04-25T21:22:19.102Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x2c2"",""0x79cbcbc"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x2c2"",""0x79cbcbc"",""0x206"",""0x3"",""0x74c0344""]" 2 3 0x74c0344 d0 db b1 +2026-04-25T21:22:19.104Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:19.107Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x97"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x97"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 0 151 0x7984d3c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 da 34 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 77 ff 7d 55 de 54 75 42 84 dc a2 94 16 55 07 43 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:22:19.107Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x97"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x97"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 1 518 0x3 +2026-04-25T21:22:19.107Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x97"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x97"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 2 3 0x74c0344 d0 db b1 +2026-04-25T21:22:19.108Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:19.136Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x5c"",""0x79c789c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x5c"",""0x79c789c"",""0x206"",""0x3"",""0x74c0344""]" 0 92 0x79c789c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 8d b1 d5 56 4d 59 e0 49 8c 1e 5e 96 0d 4d 3a 96 43 a3 85 6f a2 74 7f 46 9b d4 69 42 +2026-04-25T21:22:19.136Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x5c"",""0x79c789c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x5c"",""0x79c789c"",""0x206"",""0x3"",""0x74c0344""]" 1 518 0x3 +2026-04-25T21:22:19.136Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x5c"",""0x79c789c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x5c"",""0x79c789c"",""0x206"",""0x3"",""0x74c0344""]" 2 3 0x74c0344 d0 db b1 +2026-04-25T21:22:19.138Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:19.141Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x76"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x76"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 0 118 0x7984d3c 76 00 00 00 01 00 48 00 00 00 00 00 00 00 ae 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 8d b1 d5 56 4d 59 e0 49 8c 1e 5e 96 0d 4d 3a 96 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 03 00 00 00 03 00 00 00 c0 00 20 31 6f 8d 7c d4 dc 01 06 0a 00 00 00 00 b0 9b 38 7d d4 +2026-04-25T21:22:19.141Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x76"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x76"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 1 518 0x3 +2026-04-25T21:22:19.141Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x76"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x76"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 2 3 0x74c0344 d0 db b1 +2026-04-25T21:22:19.142Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:22:20.003Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x59ed38 "[""0x5bd8ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x7ae6184"",""0x0"",""0x1"",""0xe51895a6"",""0x74794704""]" +2026-04-25T21:22:20.003Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:22:20.056Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x8f4a0b0"",""0x59ea28"",""0xabf7bb1c""]" 0 2 0x2 +2026-04-25T21:22:20.056Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x8f4a0b0"",""0x59ea28"",""0xabf7bb1c""]" 1 66 0x8f4a0b0 not_a_date:utf16le@26 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 5f 00 64 00 61 00 74 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 f7 1b ec 0b 01 00 00 00 +2026-04-25T21:22:20.057Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e6c738 "[""0x1"",""0x1"",""0x2"",""0x70"",""0x9812020"",""0x9188a005"",""0x8f499dc"",""0x8f499cc"",""0x641add04"",""0x0""]" 0 112 0x9812020 not_a_date:utf16le@72 01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 5f 00 64 00 61 00 74 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 f7 1b ec 0b 01 00 00 00 +2026-04-25T21:22:20.058Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:22:20.058Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:22:20.083Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x33"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x33"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 0 51 0x7984d3c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 41 +2026-04-25T21:22:20.083Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x33"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x33"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 1 518 0x3 +2026-04-25T21:22:20.083Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e6c738 "[""0x33"",""0x7984d3c"",""0x716eae0"",""0x76ffedd8"",""0x8e6c744"",""0x33"",""0x7984d3c"",""0x206"",""0x3"",""0x74c0344""]" 2 3 0x74c0344 d0 db b1 +2026-04-25T21:22:20.085Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/093-frida-write-testdatetime-string-type/frida-exit.txt b/captures/093-frida-write-testdatetime-string-type/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/093-frida-write-testdatetime-string-type/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/093-frida-write-testdatetime-string-type/frida.stderr.txt b/captures/093-frida-write-testdatetime-string-type/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/093-frida-write-testdatetime-string-type/frida.stdout.jsonl b/captures/093-frida-write-testdatetime-string-type/frida.stdout.jsonl new file mode 100644 index 0000000..207d42f --- /dev/null +++ b/captures/093-frida-write-testdatetime-string-type/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTime --type=string --value=not_a_date --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\093-frida-write-testdatetime-string-type\harness.log --client=MxFridaTrace-093-frida-write-testdatetime-string-type`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestDateTime --type=string --value=not_a_date --user-id=1 --duration=5 --write-delay-ms=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\093-frida-write-testdatetime-string-type\harness.log --client=MxFridaTrace-093-frida-write-testdatetime-string-type`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:22:05.331Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:22:05.331Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:22:05.332Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:22:05.332Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:22:05.333Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:22:05.334Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:22:05.335Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:22:05.335Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:22:05.336Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:22:18.722Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:22:18.723Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:22:18.724Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:22:18.724Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:22:18.725Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:22:18.725Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:22:18.726Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e67010","outPtr":"0x59e68c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:22:18.822Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x59e68c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x59e68c","time":"2026-04-25T21:22:18.822Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:22:18.823Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:22:18.824Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:22:18.824Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:22:18.824Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e67010","outPtr":"0x59e68c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:22:18.825Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x59e68c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x59e68c","time":"2026-04-25T21:22:18.825Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:22:18.952Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8f10cd0","outPtr":"0x59ec10","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655519,"w4":18786},"retval":"0x59ec10","time":"2026-04-25T21:22:18.953Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e70588","referenceString":{"length":28,"capacity":31,"value":"TestChildObject.TestDateTime"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f3ccb0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 e0 c9 f3 08 00 65 00 00 00 02 00 00 00 00 00 02 1c 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 cc f3 08 8c 5f b1 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 a4 32 a8 00 00 00 00 00"},"time":"2026-04-25T21:22:18.954Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e705d8","outPtr":"0x59eba0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655519,"w4":18786},"retval":"0x59eba0","time":"2026-04-25T21:22:18.955Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e705d8","outPtr":"0x59eba0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655519,"w4":18786},"retval":"0x59eba0","time":"2026-04-25T21:22:18.955Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e705d8","outPtr":"0x59eba0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655519,"w4":18786},"retval":"0x59eba0","time":"2026-04-25T21:22:18.955Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e70588","referenceString":{"length":28,"capacity":31,"value":"TestChildObject.TestDateTime"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f3ccb0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 e0 c9 f3 08 00 65 00 00 00 02 00 00 00 00 00 02 1c 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 cc f3 08 8c 5f b1 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 a4 32 a8 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:22:18.956Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:22:18.957Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x59ed64","args":["0x5bd8ff0","0x1","0x1","0xe51895a6","0x74794704"],"time":"2026-04-25T21:22:18.959Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e67010","outPtr":"0x59ebe4","inWords":[65537,327682,186166,655519,18786,0],"time":"2026-04-25T21:22:18.959Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x59ebe4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655519,"w4":18786},"retval":"0x59ebe4","time":"2026-04-25T21:22:18.960Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e67010","outPtr":"0x59d878","inWords":[65537,327682,186166,655519,18786,0],"time":"2026-04-25T21:22:18.960Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x59d878","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655519,"w4":18786},"retval":"0x59d878","time":"2026-04-25T21:22:18.960Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:22:18.961Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e6c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8e70648","0x59ea28","0xabf7bb1c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8e70648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e6 08 1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:22:19.087Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e6c738","args":["0x1","0x1","0x1","0x168","0x9812020","0x9188a005","0x8e70214","0x8e70204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9812020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e6 08 1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:22:19.090Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:19.090Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:19.091Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e6c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8f3c758","0x59ea28","0xabf7bb1c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8f3c758","hex":"1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00"}],"time":"2026-04-25T21:22:19.091Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e6c738","args":["0x1","0x1","0x2","0x55","0x9812020","0x9188a005","0x8f49584","0x8f49574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9812020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 00 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 03 00 00 00"}],"time":"2026-04-25T21:22:19.093Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:19.094Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:19.094Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e6c738","args":["0x2c2","0x79cbcbc","0x716eae0","0x76ffedd8","0x8e6c744","0x2c2","0x79cbcbc","0x206","0x3","0x74c0344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x79cbcbc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 77 ff 7d 55 de 54 75 42 84 dc a2 94 16 55 07 43 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74c0344","hex":"d0 db b1"}],"time":"2026-04-25T21:22:19.102Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:19.104Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e6c738","args":["0x97","0x7984d3c","0x716eae0","0x76ffedd8","0x8e6c744","0x97","0x7984d3c","0x206","0x3","0x74c0344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7984d3c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 da 34 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 77 ff 7d 55 de 54 75 42 84 dc a2 94 16 55 07 43 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74c0344","hex":"d0 db b1"}],"time":"2026-04-25T21:22:19.107Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:19.108Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e6c738","args":["0x5c","0x79c789c","0x716eae0","0x76ffedd8","0x8e6c744","0x5c","0x79c789c","0x206","0x3","0x74c0344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x79c789c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 8d b1 d5 56 4d 59 e0 49 8c 1e 5e 96 0d 4d 3a 96 43 a3 85 6f a2 74 7f 46 9b d4 69 42"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74c0344","hex":"d0 db b1"}],"time":"2026-04-25T21:22:19.136Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:19.138Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e6c738","args":["0x76","0x7984d3c","0x716eae0","0x76ffedd8","0x8e6c744","0x76","0x7984d3c","0x206","0x3","0x74c0344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":118,"ptr":"0x7984d3c","hex":"76 00 00 00 01 00 48 00 00 00 00 00 00 00 ae 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 8d b1 d5 56 4d 59 e0 49 8c 1e 5e 96 0d 4d 3a 96 43 a3 85 6f a2 74 7f 46 9b d4 69 42 fc 3c c4 a4 03 00 00 00 03 00 00 00 c0 00 20 31 6f 8d 7c d4 dc 01 06 0a 00 00 00 00 b0 9b 38 7d d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74c0344","hex":"d0 db b1"}],"time":"2026-04-25T21:22:19.141Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:19.142Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x59ed38","args":["0x5bd8ff0","0x1","0x1","0x8","0x0","0x7ae6184","0x0","0x1","0xe51895a6","0x74794704"],"time":"2026-04-25T21:22:20.003Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:22:20.003Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e6c738","0x1","0x1","0x2","0x2","0x0","0x42","0x8f4a0b0","0x59ea28","0xabf7bb1c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":66,"ptr":"0x8f4a0b0","hex":"37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 5f 00 64 00 61 00 74 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 f7 1b ec 0b 01 00 00 00"}],"time":"2026-04-25T21:22:20.056Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e6c738","args":["0x1","0x1","0x2","0x70","0x9812020","0x9188a005","0x8f499dc","0x8f499cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":112,"ptr":"0x9812020","hex":"01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 1a 00 00 00 16 00 00 00 6e 00 6f 00 74 00 5f 00 61 00 5f 00 64 00 61 00 74 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 f7 1b ec 0b 01 00 00 00"}],"time":"2026-04-25T21:22:20.057Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:22:20.058Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:22:20.058Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e6c738","args":["0x33","0x7984d3c","0x716eae0","0x76ffedd8","0x8e6c744","0x33","0x7984d3c","0x206","0x3","0x74c0344"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7984d3c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f8 7f 00 00 02 02 00 00 30 75 00 00 41"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74c0344","hex":"d0 db b1"}],"time":"2026-04-25T21:22:20.083Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:22:20.085Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/093-frida-write-testdatetime-string-type/harness.log b/captures/093-frida-write-testdatetime-string-type/harness.log new file mode 100644 index 0000000..6173ee1 --- /dev/null +++ b/captures/093-frida-write-testdatetime-string-type/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:22:05.2334152+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-093-frida-write-testdatetime-string-type","Tags":["TestChildObject.TestDateTime"],"ItemContext":"","WriteType":"string","WriteValue":"not_a_date","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:22:18.5301793+00:00 mx.register.begin {"ClientName":"MxFridaTrace-093-frida-write-testdatetime-string-type"} +2026-04-25T21:22:18.9492335+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:22:18.9501896+00:00 mx.additem.begin {"Tag":"TestChildObject.TestDateTime"} +2026-04-25T21:22:18.9571773+00:00 mx.additem.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T21:22:18.9581742+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T21:22:18.9611734+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T21:22:20.0000935+00:00 mx.write.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String","Value":"not_a_date"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:22:20.0040689+00:00 mx.write.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:22:25.0204864+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T21:22:25.0214864+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T21:22:25.0214864+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T21:22:25.0214864+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestDateTime","ItemHandle":1} +2026-04-25T21:22:25.0214864+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:22:31.9453010+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:22:31.9502498+00:00 harness.stop {} diff --git a/captures/094-frida-buffered-separate-writer/frida-command.txt b/captures/094-frida-buffered-separate-writer/frida-command.txt new file mode 100644 index 0000000..88e8fae --- /dev/null +++ b/captures/094-frida-buffered-separate-writer/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=136,137 --user=1 --write-delay-ms=1500 --write-interval-ms=3000 --buffered-update-interval=1000 --duration=10 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\094-frida-buffered-separate-writer\harness.log --client=MxFridaTrace-094-frida-buffered-separate-writer diff --git a/captures/094-frida-buffered-separate-writer/frida-events.tsv b/captures/094-frida-buffered-separate-writer/frida-events.tsv new file mode 100644 index 0000000..e894868 --- /dev/null +++ b/captures/094-frida-buffered-separate-writer/frida-events.tsv @@ -0,0 +1,158 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:40:12.655Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:40:12.656Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:40:12.656Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:40:12.656Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:40:12.657Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:40:12.658Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:40:12.659Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:40:12.659Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:40:12.660Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:40:19.400Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:40:19.401Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:40:19.401Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:40:19.402Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:40:19.402Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:40:19.403Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:40:19.403Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:40:19.502Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:40:19.503Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:40:19.503Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:40:19.503Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:40:19.554Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:40:19.554Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xdde598 [] +2026-04-25T21:40:19.555Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:40:19.555Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xdde598 [] +2026-04-25T21:40:19.645Z call.enter LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0xddec64 "[""0x6298ff0"",""0x1"",""0x3e8""]" +2026-04-25T21:40:19.645Z call.leave LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x0 [] +2026-04-25T21:40:19.647Z call.enter LmxProxy.dll CLMXProxyServer.AddBufferedItem 0xddec58 "[""0x6298ff0"",""0x1"",""0xddebf8"",""0xddebd0"",""0xddec3c""]" +2026-04-25T21:40:19.648Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea98 [] +2026-04-25T21:40:19.649Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:40:19.649Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea38 [] +2026-04-25T21:40:19.650Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea24 [] +2026-04-25T21:40:19.650Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea38 [] +2026-04-25T21:40:19.651Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:40:19.652Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea98 [] +2026-04-25T21:40:19.652Z call.leave LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x0 [] +2026-04-25T21:40:19.653Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xddec64 "[""0x6298ff0"",""0x1"",""0x1"",""0xe9d2b796"",""0x74794704""]" +2026-04-25T21:40:19.653Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:40:19.779Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x96b0648"",""0xdde928"",""0xce4a3608""]" 0 1 0x2 +2026-04-25T21:40:19.779Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x96b0648"",""0xdde928"",""0xce4a3608""]" 1 314 0x96b0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6a 09 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6b 09 20 01 00 02 00 00 00 +2026-04-25T21:40:19.782Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96ac738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa991020"",""0x732d4b6"",""0x96b0214"",""0x96b0204"",""0x641add04"",""0x0""]" 0 360 0xa991020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6a 09 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6b 09 20 01 00 02 00 00 00 +2026-04-25T21:40:19.783Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:40:19.783Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:40:19.796Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x2c2"",""0x819bc1c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x2c2"",""0x819bc1c"",""0x206"",""0x3"",""0x7c62ea4""]" 0 706 0x819bc1c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 bf f1 db 2d eb 25 e6 49 8c ca 77 b3 24 d3 c5 2e 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:40:19.796Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x2c2"",""0x819bc1c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x2c2"",""0x819bc1c"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:19.796Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x2c2"",""0x819bc1c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x2c2"",""0x819bc1c"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:19.798Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:19.801Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x97"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x97"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 0 151 0x819cd24 97 00 00 00 01 00 69 00 00 00 00 00 00 00 c1 45 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 bf f1 db 2d eb 25 e6 49 8c ca 77 b3 24 d3 c5 2e 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:40:19.801Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x97"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x97"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:19.801Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x97"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x97"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:19.803Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:19.970Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x978a448"",""0xdde928"",""0xce4a3608""]" 0 1 0x2 +2026-04-25T21:40:19.970Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xad"",""0x978a448"",""0xdde928"",""0xce4a3608""]" 1 173 0x978a448 10 01 00 01 00 00 00 db a0 56 b7 17 e2 6c 41 8f d3 77 7f a9 1a 19 dd ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:40:19.971Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96ac738 "[""0x1"",""0x1"",""0x1"",""0xdb"",""0xa991020"",""0x732d4b6"",""0x96a77f4"",""0x96a77e4"",""0x641add04"",""0x0""]" 0 219 0xa991020 01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 db a0 56 b7 17 e2 6c 41 8f d3 77 7f a9 1a 19 dd ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-25T21:40:19.972Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:40:19.973Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:40:20.024Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x2e"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x2e"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 0 46 0x153253c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-25T21:40:20.024Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x2e"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x2e"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:20.024Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x2e"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x2e"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:20.025Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:20.030Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0xd3"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0xd3"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 0 211 0x819cd24 d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 c2 45 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 db a0 56 b7 17 e2 6c 41 8f d3 77 7f a9 1a 19 dd 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T21:40:20.030Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0xd3"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0xd3"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:20.030Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0xd3"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0xd3"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:20.031Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:21.283Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:40:21.283Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddeac0 [] +2026-04-25T21:40:21.284Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:40:21.285Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea50 [] +2026-04-25T21:40:21.285Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea50 [] +2026-04-25T21:40:21.286Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea50 [] +2026-04-25T21:40:21.286Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:40:21.287Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:40:21.287Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xddec0c "[""0x6298ff0"",""0x2"",""0x1"",""0xe9d2b796"",""0x74794704""]" +2026-04-25T21:40:21.287Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:40:21.288Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xddea8c [] +2026-04-25T21:40:21.288Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:40:21.288Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xddd720 [] +2026-04-25T21:40:21.288Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:40:21.341Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x977d0e8"",""0xdde8d0"",""0xce4a39a0""]" 0 2 0x2 +2026-04-25T21:40:21.341Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x977d0e8"",""0xdde8d0"",""0xce4a39a0""]" 1 39 0x977d0e8 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:40:21.343Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96ac738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa991020"",""0x732d4ee"",""0x96a77f4"",""0x96a77e4"",""0x641add04"",""0x0""]" 0 85 0xa991020 01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:40:21.344Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:40:21.344Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:40:21.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x5c"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x5c"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 0 92 0x153253c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24 +2026-04-25T21:40:21.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x5c"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x5c"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:21.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x5c"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x5c"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:21.373Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:21.376Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6c"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6c"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 0 108 0x819cd24 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 b3 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 03 00 00 00 03 00 00 00 c0 00 50 08 83 95 f9 d4 dc 01 02 +2026-04-25T21:40:21.376Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6c"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6c"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:21.376Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6c"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6c"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:21.377Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:22.846Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xddec00 "[""0x6298ff0"",""0x2"",""0x1"",""0x3"",""0x0"",""0x88"",""0x0"",""0x0"",""0xe9d2b796"",""0x74794704""]" +2026-04-25T21:40:22.847Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:40:22.952Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x977d7f0"",""0xdde8d0"",""0xce4a39a0""]" 0 2 0x2 +2026-04-25T21:40:22.952Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x977d7f0"",""0xdde8d0"",""0xce4a39a0""]" 1 40 0x977d7f0 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 88 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 01 00 00 00 +2026-04-25T21:40:22.953Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96ac738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa991020"",""0x732d4ee"",""0x96a77f4"",""0x96a77e4"",""0x641add04"",""0x0""]" 0 86 0xa991020 01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 88 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 01 00 00 00 +2026-04-25T21:40:22.955Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:40:22.956Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:40:22.962Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x33"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x33"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 0 51 0x153253c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:40:22.962Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x33"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x33"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:22.962Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x33"",""0x153253c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x33"",""0x153253c"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:22.963Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:22.966Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x58"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x58"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 0 88 0x819cd24 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 b4 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 03 00 00 00 c0 00 00 63 e7 1e fc d4 dc 01 02 +2026-04-25T21:40:22.966Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x58"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x58"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:22.966Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x58"",""0x819cd24"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x58"",""0x819cd24"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:22.967Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:32.564Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:40:32.565Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddeac0 [] +2026-04-25T21:40:32.566Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:40:32.566Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea50 [] +2026-04-25T21:40:32.567Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea50 [] +2026-04-25T21:40:32.567Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xddea50 [] +2026-04-25T21:40:32.568Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:40:32.568Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:40:32.569Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xddec0c "[""0x6298ff0"",""0x3"",""0x1"",""0xe9d2b796"",""0x74794704""]" +2026-04-25T21:40:32.569Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:40:32.569Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xddea8c [] +2026-04-25T21:40:32.569Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:40:32.569Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xddd720 [] +2026-04-25T21:40:32.569Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:40:32.622Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x977d718"",""0xdde8d0"",""0xce4a39a0""]" 0 2 0x2 +2026-04-25T21:40:32.622Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x977d718"",""0xdde8d0"",""0xce4a39a0""]" 1 39 0x977d718 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 +2026-04-25T21:40:32.623Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96ac738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa991020"",""0x732d4ee"",""0x96a77f4"",""0x96a77e4"",""0x641add04"",""0x0""]" 0 85 0xa991020 01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00 +2026-04-25T21:40:32.624Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:40:32.624Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:40:32.634Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x5c"",""0x81b10bc"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x5c"",""0x81b10bc"",""0x206"",""0x3"",""0x7c62ea4""]" 0 92 0x81b10bc 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24 +2026-04-25T21:40:32.634Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x5c"",""0x81b10bc"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x5c"",""0x81b10bc"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:32.634Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x5c"",""0x81b10bc"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x5c"",""0x81b10bc"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:32.636Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:32.638Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6c"",""0x81acc9c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6c"",""0x81acc9c"",""0x206"",""0x3"",""0x7c62ea4""]" 0 108 0x81acc9c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 b5 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 04 00 00 00 03 00 00 00 c0 00 00 63 e7 1e fc d4 dc 01 02 +2026-04-25T21:40:32.638Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6c"",""0x81acc9c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6c"",""0x81acc9c"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:32.638Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6c"",""0x81acc9c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6c"",""0x81acc9c"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:32.640Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:34.102Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xddec00 "[""0x6298ff0"",""0x3"",""0x1"",""0x3"",""0x0"",""0x89"",""0x0"",""0x0"",""0xe9d2b796"",""0x74794704""]" +2026-04-25T21:40:34.102Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:40:34.205Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x977d7f0"",""0xdde8d0"",""0xce4a39a0""]" 0 2 0x2 +2026-04-25T21:40:34.205Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x977d7f0"",""0xdde8d0"",""0xce4a39a0""]" 1 40 0x977d7f0 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 89 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 02 00 00 00 +2026-04-25T21:40:34.206Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96ac738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa991020"",""0x732d4ee"",""0x96a77f4"",""0x96a77e4"",""0x641add04"",""0x0""]" 0 86 0xa991020 01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 89 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 02 00 00 00 +2026-04-25T21:40:34.206Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:40:34.207Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:40:34.218Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x33"",""0x81b10bc"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x33"",""0x81b10bc"",""0x206"",""0x3"",""0x7c62ea4""]" 0 51 0x81b10bc 33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:40:34.218Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x33"",""0x81b10bc"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x33"",""0x81b10bc"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:34.218Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x33"",""0x81b10bc"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x33"",""0x81b10bc"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:34.220Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:34.222Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6b"",""0x81acc9c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6b"",""0x81acc9c"",""0x206"",""0x3"",""0x7c62ea4""]" 0 107 0x81acc9c 6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 b6 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 03 00 00 00 c0 00 90 11 9d 25 fc d4 dc 01 02 89 00 00 00 04 00 00 00 c0 00 90 11 9d 25 fc d4 dc 01 02 +2026-04-25T21:40:34.222Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6b"",""0x81acc9c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6b"",""0x81acc9c"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:34.222Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x6b"",""0x81acc9c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x6b"",""0x81acc9c"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:34.224Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:40:49.829Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x2e"",""0xdde7c8"",""0x732db46"",""0x96ac738"",""0x0"",""0x0"",""0x0"",""0x0"",""0x0"",""0x0""]" +2026-04-25T21:40:49.830Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x1 [] +2026-04-25T21:40:49.984Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x96ac738"",""0x1"",""0x1"",""0x1"",""0x0"",""0x0"",""0x56"",""0x9789f38"",""0xdde928"",""0xce4a3608""]" 0 86 0x9789f38 01 01 00 01 00 00 00 64 00 64 00 0a 00 00 00 00 00 08 3c 00 00 00 12 00 00 81 4d 00 79 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 38 61 78 09 +2026-04-25T21:40:49.985Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x96ac738 "[""0x1"",""0x1"",""0x1"",""0x84"",""0xa991020"",""0x732d4b6"",""0x978a4ec"",""0x978a4dc"",""0x641add04"",""0x0""]" 0 132 0xa991020 01 00 56 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 30 75 00 00 01 01 00 01 00 00 00 64 00 64 00 0a 00 00 00 00 00 08 3c 00 00 00 12 00 00 81 4d 00 79 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 38 61 78 09 +2026-04-25T21:40:49.987Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:40:49.987Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:40:50.092Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x73"",""0x818019c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x73"",""0x818019c"",""0x206"",""0x3"",""0x7c62ea4""]" 0 115 0x818019c 73 00 00 00 01 00 45 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 00 00 00 30 75 00 00 00 00 50 80 08 3c 00 00 00 12 00 00 81 4d 00 79 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-25T21:40:50.092Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x73"",""0x818019c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x73"",""0x818019c"",""0x206"",""0x3"",""0x7c62ea4""]" 1 518 0x3 +2026-04-25T21:40:50.092Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x96ac738 "[""0x73"",""0x818019c"",""0x799efb8"",""0x76ffedd8"",""0x96ac744"",""0x73"",""0x818019c"",""0x206"",""0x3"",""0x7c62ea4""]" 2 3 0x7c62ea4 e8 92 bd +2026-04-25T21:40:50.093Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/094-frida-buffered-separate-writer/frida-exit.txt b/captures/094-frida-buffered-separate-writer/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/094-frida-buffered-separate-writer/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/094-frida-buffered-separate-writer/frida.stderr.txt b/captures/094-frida-buffered-separate-writer/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/094-frida-buffered-separate-writer/frida.stdout.jsonl b/captures/094-frida-buffered-separate-writer/frida.stdout.jsonl new file mode 100644 index 0000000..03753dd --- /dev/null +++ b/captures/094-frida-buffered-separate-writer/frida.stdout.jsonl @@ -0,0 +1,141 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=136,137 --user=1 --write-delay-ms=1500 --write-interval-ms=3000 --buffered-update-interval=1000 --duration=10 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\094-frida-buffered-separate-writer\harness.log --client=MxFridaTrace-094-frida-buffered-separate-writer`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestInt --context=TestChildObject --type=int --values=136,137 --user=1 --write-delay-ms=1500 --write-interval-ms=3000 --buffered-update-interval=1000 --duration=10 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\094-frida-buffered-separate-writer\harness.log --client=MxFridaTrace-094-frida-buffered-separate-writer`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:40:12.655Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:40:12.656Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:40:12.656Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:40:12.656Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:40:12.657Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:40:12.658Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:40:12.659Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:40:12.659Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:40:12.660Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:40:19.400Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:40:19.401Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:40:19.401Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:40:19.402Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:40:19.402Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:40:19.403Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:40:19.403Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:40:19.502Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:40:19.503Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:40:19.503Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:40:19.503Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96a7010","outPtr":"0xdde598","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:40:19.554Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xdde598","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xdde598","time":"2026-04-25T21:40:19.554Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96a7010","outPtr":"0xdde598","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:40:19.555Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xdde598","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xdde598","time":"2026-04-25T21:40:19.555Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","address":"0x65a4fc80","ecx":"0xddec64","args":["0x6298ff0","0x1","0x3e8"],"time":"2026-04-25T21:40:19.645Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","retval":"0x0","time":"2026-04-25T21:40:19.645Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","address":"0x65a5121d","ecx":"0xddec58","args":["0x6298ff0","0x1","0xddebf8","0xddebd0","0xddec3c"],"time":"2026-04-25T21:40:19.647Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96b05d8","outPtr":"0xddea98","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xddea98","time":"2026-04-25T21:40:19.648Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x96b0588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x977d5b0","status":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 58 d0 77 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 d5 77 09 c4 4c 2c 08 00 00 00 00 00 00 00 00 34 5e 2e 08 10 70 6a 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 34 1f 51 01 00 00 00 00"},"time":"2026-04-25T21:40:19.649Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96b05d8","outPtr":"0xddea38","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xddea38","time":"2026-04-25T21:40:19.649Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96b05d8","outPtr":"0xddea24","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xddea24","time":"2026-04-25T21:40:19.650Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96b05d8","outPtr":"0xddea38","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xddea38","time":"2026-04-25T21:40:19.650Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x96b0588","referenceString":{"length":24,"capacity":31,"value":"TestInt.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x977d5b0","status":1,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 58 d0 77 09 00 65 00 00 00 02 00 00 00 00 00 02 18 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 b0 d5 77 09 c4 4c 2c 08 00 00 00 00 00 00 00 00 34 5e 2e 08 10 70 6a 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 34 1f 51 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:40:19.651Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x96b05d8","outPtr":"0xddea98","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xddea98","time":"2026-04-25T21:40:19.652Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","retval":"0x0","time":"2026-04-25T21:40:19.652Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xddec64","args":["0x6298ff0","0x1","0x1","0xe9d2b796","0x74794704"],"time":"2026-04-25T21:40:19.653Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:40:19.653Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ac738","0x1","0x1","0x1","0x2","0x0","0x13a","0x96b0648","0xdde928","0xce4a3608"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x96b0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6a 09 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6b 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:40:19.779Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ac738","args":["0x1","0x1","0x1","0x168","0xa991020","0x732d4b6","0x96b0214","0x96b0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa991020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 6a 09 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 6b 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:40:19.782Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:40:19.783Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:40:19.783Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x2c2","0x819bc1c","0x799efb8","0x76ffedd8","0x96ac744","0x2c2","0x819bc1c","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x819bc1c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 bf f1 db 2d eb 25 e6 49 8c ca 77 b3 24 d3 c5 2e 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:19.796Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:19.798Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x97","0x819cd24","0x799efb8","0x76ffedd8","0x96ac744","0x97","0x819cd24","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x819cd24","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 c1 45 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 bf f1 db 2d eb 25 e6 49 8c ca 77 b3 24 d3 c5 2e 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:19.801Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:19.803Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ac738","0x1","0x1","0x1","0x2","0x0","0xad","0x978a448","0xdde928","0xce4a3608"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":173,"ptr":"0x978a448","hex":"10 01 00 01 00 00 00 db a0 56 b7 17 e2 6c 41 8f d3 77 7f a9 1a 19 dd ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:40:19.970Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ac738","args":["0x1","0x1","0x1","0xdb","0xa991020","0x732d4b6","0x96a77f4","0x96a77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":219,"ptr":"0xa991020","hex":"01 00 ad 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 db a0 56 b7 17 e2 6c 41 8f d3 77 7f a9 1a 19 dd ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-25T21:40:19.971Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:40:19.972Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:40:19.973Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x2e","0x153253c","0x799efb8","0x76ffedd8","0x96ac744","0x2e","0x153253c","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x153253c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:20.024Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:20.025Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0xd3","0x819cd24","0x799efb8","0x76ffedd8","0x96ac744","0xd3","0x819cd24","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":211,"ptr":"0x819cd24","hex":"d3 00 00 00 01 00 a5 00 00 00 00 00 00 00 c2 45 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 db a0 56 b7 17 e2 6c 41 8f d3 77 7f a9 1a 19 dd 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:20.030Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:20.031Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:40:21.283Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97513d8","outPtr":"0xddeac0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddeac0","time":"2026-04-25T21:40:21.283Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x978a928","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x977d2e0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 28 a2 78 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 e0 d2 77 09 dc 4f 2c 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 6a 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c 2c ce 0a 00 00 00 00"},"time":"2026-04-25T21:40:21.284Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x978a978","outPtr":"0xddea50","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea50","time":"2026-04-25T21:40:21.285Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x978a978","outPtr":"0xddea50","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea50","time":"2026-04-25T21:40:21.285Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x978a978","outPtr":"0xddea50","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea50","time":"2026-04-25T21:40:21.286Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x978a928","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x977d2e0","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 28 a2 78 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 e0 d2 77 09 dc 4f 2c 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 6a 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c 2c ce 0a 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:40:21.286Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:40:21.287Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xddec0c","args":["0x6298ff0","0x2","0x1","0xe9d2b796","0x74794704"],"time":"2026-04-25T21:40:21.287Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96a7010","outPtr":"0xddea8c","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:40:21.287Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xddea8c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea8c","time":"2026-04-25T21:40:21.288Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96a7010","outPtr":"0xddd720","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:40:21.288Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xddd720","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddd720","time":"2026-04-25T21:40:21.288Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:40:21.288Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ac738","0x1","0x1","0x2","0x2","0x0","0x27","0x977d0e8","0xdde8d0","0xce4a39a0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x977d0e8","hex":"1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:40:21.341Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ac738","args":["0x1","0x1","0x2","0x55","0xa991020","0x732d4ee","0x96a77f4","0x96a77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa991020","hex":"01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:40:21.343Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:40:21.344Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:40:21.344Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x5c","0x153253c","0x799efb8","0x76ffedd8","0x96ac744","0x5c","0x153253c","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x153253c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:21.372Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:21.373Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x6c","0x819cd24","0x799efb8","0x76ffedd8","0x96ac744","0x6c","0x819cd24","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x819cd24","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 b3 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 03 00 00 00 03 00 00 00 c0 00 50 08 83 95 f9 d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:21.376Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:21.377Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xddec00","args":["0x6298ff0","0x2","0x1","0x3","0x0","0x88","0x0","0x0","0xe9d2b796","0x74794704"],"time":"2026-04-25T21:40:22.846Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:40:22.847Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ac738","0x1","0x1","0x2","0x2","0x0","0x28","0x977d7f0","0xdde8d0","0xce4a39a0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x977d7f0","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 88 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 01 00 00 00"}],"time":"2026-04-25T21:40:22.952Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ac738","args":["0x1","0x1","0x2","0x56","0xa991020","0x732d4ee","0x96a77f4","0x96a77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa991020","hex":"01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 88 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 01 00 00 00"}],"time":"2026-04-25T21:40:22.953Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:40:22.955Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:40:22.956Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x33","0x153253c","0x799efb8","0x76ffedd8","0x96ac744","0x33","0x153253c","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x153253c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:22.962Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:22.963Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x58","0x819cd24","0x799efb8","0x76ffedd8","0x96ac744","0x58","0x819cd24","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x819cd24","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 b4 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 03 00 00 00 c0 00 00 63 e7 1e fc d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:22.966Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:22.967Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:40:32.564Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97513d8","outPtr":"0xddeac0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddeac0","time":"2026-04-25T21:40:32.565Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x978ad78","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x977d178","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 78 a3 78 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 78 d1 77 09 4c 58 2c 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 6a 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 7c d8 2c 08 00 00 00 00"},"time":"2026-04-25T21:40:32.566Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x978adc8","outPtr":"0xddea50","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea50","time":"2026-04-25T21:40:32.566Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x978adc8","outPtr":"0xddea50","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea50","time":"2026-04-25T21:40:32.567Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x978adc8","outPtr":"0xddea50","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea50","time":"2026-04-25T21:40:32.567Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x978ad78","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x977d178","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 78 a3 78 09 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 78 d1 77 09 4c 58 2c 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 6a 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 7c d8 2c 08 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:40:32.568Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:40:32.568Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xddec0c","args":["0x6298ff0","0x3","0x1","0xe9d2b796","0x74794704"],"time":"2026-04-25T21:40:32.569Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96a7010","outPtr":"0xddea8c","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:40:32.569Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xddea8c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddea8c","time":"2026-04-25T21:40:32.569Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x96a7010","outPtr":"0xddd720","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:40:32.569Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xddd720","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0xddd720","time":"2026-04-25T21:40:32.569Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:40:32.569Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ac738","0x1","0x1","0x2","0x2","0x0","0x27","0x977d718","0xdde8d0","0xce4a39a0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x977d718","hex":"1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00"}],"time":"2026-04-25T21:40:32.622Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ac738","args":["0x1","0x1","0x2","0x55","0xa991020","0x732d4ee","0x96a77f4","0x96a77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa991020","hex":"01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 04 00 00 00"}],"time":"2026-04-25T21:40:32.623Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:40:32.624Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:40:32.624Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x5c","0x81b10bc","0x799efb8","0x76ffedd8","0x96ac744","0x5c","0x81b10bc","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x81b10bc","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:32.634Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:32.636Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x6c","0x81acc9c","0x799efb8","0x76ffedd8","0x96ac744","0x6c","0x81acc9c","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x81acc9c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 b5 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 13 22 94 e4 8a cc ab 47 80 b2 65 24 5d 52 41 b9 04 00 00 00 03 00 00 00 c0 00 00 63 e7 1e fc d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:32.638Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:32.640Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xddec00","args":["0x6298ff0","0x3","0x1","0x3","0x0","0x89","0x0","0x0","0xe9d2b796","0x74794704"],"time":"2026-04-25T21:40:34.102Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:40:34.102Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ac738","0x1","0x1","0x2","0x2","0x0","0x28","0x977d7f0","0xdde8d0","0xce4a39a0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x977d7f0","hex":"37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 89 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 02 00 00 00"}],"time":"2026-04-25T21:40:34.205Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ac738","args":["0x1","0x1","0x2","0x56","0xa991020","0x732d4ee","0x96a77f4","0x96a77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa991020","hex":"01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 89 00 00 00 ff ff 00 00 00 00 00 00 00 00 95 99 fc 0b 02 00 00 00"}],"time":"2026-04-25T21:40:34.206Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:40:34.206Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:40:34.207Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x33","0x81b10bc","0x799efb8","0x76ffedd8","0x96ac744","0x33","0x81b10bc","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x81b10bc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:34.218Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:34.220Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x6b","0x81acc9c","0x799efb8","0x76ffedd8","0x96ac744","0x6b","0x81acc9c","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":107,"ptr":"0x81acc9c","hex":"6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 b6 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 93 8a 8d 18 49 1d 13 47 86 c1 e2 1d 4f d7 ca 8d 03 00 00 00 c0 00 90 11 9d 25 fc d4 dc 01 02 89 00 00 00 04 00 00 00 c0 00 90 11 9d 25 fc d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:34.222Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:34.224Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x2e","0xdde7c8","0x732db46","0x96ac738","0x0","0x0","0x0","0x0","0x0","0x0"],"candidates":[],"time":"2026-04-25T21:40:49.829Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x1","time":"2026-04-25T21:40:49.830Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x96ac738","0x1","0x1","0x1","0x0","0x0","0x56","0x9789f38","0xdde928","0xce4a3608"],"candidates":[{"sizeIndex":6,"ptrIndex":7,"size":86,"ptr":"0x9789f38","hex":"01 01 00 01 00 00 00 64 00 64 00 0a 00 00 00 00 00 08 3c 00 00 00 12 00 00 81 4d 00 79 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 38 61 78 09"}],"time":"2026-04-25T21:40:49.984Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x96ac738","args":["0x1","0x1","0x1","0x84","0xa991020","0x732d4b6","0x978a4ec","0x978a4dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":132,"ptr":"0xa991020","hex":"01 00 56 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 30 75 00 00 01 01 00 01 00 00 00 64 00 64 00 0a 00 00 00 00 00 08 3c 00 00 00 12 00 00 81 4d 00 79 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 38 61 78 09"}],"time":"2026-04-25T21:40:49.985Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:40:49.987Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:40:49.987Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x96ac738","args":["0x73","0x818019c","0x799efb8","0x76ffedd8","0x96ac744","0x73","0x818019c","0x206","0x3","0x7c62ea4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":115,"ptr":"0x818019c","hex":"73 00 00 00 01 00 45 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 00 00 00 30 75 00 00 00 00 50 80 08 3c 00 00 00 12 00 00 81 4d 00 79 00 45 00 6e 00 67 00 69 00 6e 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7c62ea4","hex":"e8 92 bd"}],"time":"2026-04-25T21:40:50.092Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:40:50.093Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/094-frida-buffered-separate-writer/harness.log b/captures/094-frida-buffered-separate-writer/harness.log new file mode 100644 index 0000000..6be1273 --- /dev/null +++ b/captures/094-frida-buffered-separate-writer/harness.log @@ -0,0 +1,48 @@ +2026-04-25T21:40:12.5584817+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxFridaTrace-094-frida-buffered-separate-writer","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"","WriteValues":["136","137"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1500,"WriteIntervalMilliseconds":3000,"BufferedUpdateInterval":1000,"DurationSeconds":10,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:40:19.2772611+00:00 mx.register.begin {"ClientName":"MxFridaTrace-094-frida-buffered-separate-writer"} +2026-04-25T21:40:19.6433252+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:40:19.6442750+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T21:40:19.6463279+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T21:40:19.6463279+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T21:40:19.6522800+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T21:40:19.6533041+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:19.6543430+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:21.2101287+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"136"},"UserId":0} +2026-04-25T21:40:21.2150575+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-094-frida-buffered-separate-writer.Writer"} +2026-04-25T21:40:21.2810819+00:00 mx.writer-register.end {"SessionHandle":2} +2026-04-25T21:40:21.2810819+00:00 mx.writer-additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:40:21.2871036+00:00 mx.writer-additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:40:21.2871036+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:21.2881233+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:22.8448752+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":2,"Tag":"TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"136"},"UserId":0} +2026-04-25T21:40:22.8478756+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:25.8733898+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:25.8743629+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:25.8743629+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:25.8743629+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:25.8743629+00:00 mx.writer-unregister.begin {"SessionHandle":2} +2026-04-25T21:40:29.4859141+00:00 mx.writer-unregister.end {"SessionHandle":2} +2026-04-25T21:40:29.4868935+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":0} +2026-04-25T21:40:32.5002199+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"137"},"UserId":0} +2026-04-25T21:40:32.5002199+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-094-frida-buffered-separate-writer.Writer"} +2026-04-25T21:40:32.5640623+00:00 mx.writer-register.end {"SessionHandle":3} +2026-04-25T21:40:32.5640623+00:00 mx.writer-additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:40:32.5680473+00:00 mx.writer-additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:40:32.5680473+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:32.5699685+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:34.1023645+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":3,"Tag":"TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"137"},"UserId":0} +2026-04-25T21:40:34.1033613+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:37.1176243+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:37.1176243+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:37.1176243+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:37.1176243+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:37.1176243+00:00 mx.writer-unregister.begin {"SessionHandle":3} +2026-04-25T21:40:37.3757197+00:00 mx.writer-unregister.end {"SessionHandle":3} +2026-04-25T21:40:37.3757197+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":1} +2026-04-25T21:40:50.4021000+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:50.4021000+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:50.4021000+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:50.4021000+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:40:50.4031325+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:40:50.6923025+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:40:50.6992308+00:00 harness.stop {} diff --git a/captures/095-frida-write-elapsed-int/frida-command.txt b/captures/095-frida-write-elapsed-int/frida-command.txt new file mode 100644 index 0000000..15ab1b1 --- /dev/null +++ b/captures/095-frida-write-elapsed-int/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --type=int --value=1000 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\095-frida-write-elapsed-int\harness.log --client=MxFridaTrace-095-frida-write-elapsed-int diff --git a/captures/095-frida-write-elapsed-int/frida-events.tsv b/captures/095-frida-write-elapsed-int/frida-events.tsv new file mode 100644 index 0000000..c4eaf2f --- /dev/null +++ b/captures/095-frida-write-elapsed-int/frida-events.tsv @@ -0,0 +1,80 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:42:33.509Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:42:33.509Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:42:33.510Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:42:33.510Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:42:33.511Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:42:33.511Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:42:33.512Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:42:33.513Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:42:33.513Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:42:40.258Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:42:40.258Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:42:40.259Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:42:40.260Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:42:40.260Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:42:40.261Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:42:40.262Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:42:40.427Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:42:40.428Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe948 [] +2026-04-25T21:42:40.428Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:42:40.428Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fe948 [] +2026-04-25T21:42:40.461Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:42:40.461Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:42:40.462Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:42:40.462Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:42:40.521Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:42:40.522Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fee88 [] +2026-04-25T21:42:40.523Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:42:40.524Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fee18 [] +2026-04-25T21:42:40.524Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fee18 [] +2026-04-25T21:42:40.525Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x12fee18 [] +2026-04-25T21:42:40.527Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:42:40.527Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:42:40.529Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x12ff004 "[""0x6658ff0"",""0x1"",""0x1"",""0x5e4f7d56"",""0x74794704""]" +2026-04-25T21:42:40.529Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:42:40.530Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fee84 [] +2026-04-25T21:42:40.530Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:42:40.530Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x12fdb18 [] +2026-04-25T21:42:40.531Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:42:40.657Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x98fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9900648"",""0x12fecc8"",""0xb54fab24""]" 0 1 0x2 +2026-04-25T21:42:40.657Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x98fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9900648"",""0x12fecc8"",""0xb54fab24""]" 1 314 0x9900648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 8f 09 1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 90 09 20 01 00 02 00 00 00 +2026-04-25T21:42:40.660Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x98fc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xaacc020"",""0x9af2959c"",""0x9900214"",""0x9900204"",""0x641add04"",""0x0""]" 0 360 0xaacc020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 8f 09 1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 90 09 20 01 00 02 00 00 00 +2026-04-25T21:42:40.661Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:42:40.661Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:42:40.662Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x98fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x99cc9e0"",""0x12fecc8"",""0xb54fab24""]" 0 2 0x2 +2026-04-25T21:42:40.662Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x98fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x99cc9e0"",""0x12fecc8"",""0xb54fab24""]" 1 39 0x99cc9e0 1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T21:42:40.663Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x98fc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xaacc020"",""0x9af2959c"",""0x99d9584"",""0x99d9574"",""0x641add04"",""0x0""]" 0 85 0xaacc020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T21:42:40.664Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:42:40.664Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:42:40.682Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x2c2"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x2c2"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 0 706 0x811062c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a1 80 fc 6d 91 cd f9 40 8e e7 20 ae 0b 15 c8 f8 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:42:40.682Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x2c2"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x2c2"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 1 518 0x3 +2026-04-25T21:42:40.682Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x2c2"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x2c2"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 2 3 0x7f48b04 a8 cd 65 +2026-04-25T21:42:40.685Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:42:40.687Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x97"",""0x16406dc"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x97"",""0x16406dc"",""0x206"",""0x3"",""0x7f48b04""]" 0 151 0x16406dc 97 00 00 00 01 00 69 00 00 00 00 00 00 00 fb 47 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a1 80 fc 6d 91 cd f9 40 8e e7 20 ae 0b 15 c8 f8 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:42:40.687Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x97"",""0x16406dc"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x97"",""0x16406dc"",""0x206"",""0x3"",""0x7f48b04""]" 1 518 0x3 +2026-04-25T21:42:40.687Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x97"",""0x16406dc"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x97"",""0x16406dc"",""0x206"",""0x3"",""0x7f48b04""]" 2 3 0x7f48b04 a8 cd 65 +2026-04-25T21:42:40.689Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:42:40.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x5c"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x5c"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 0 92 0x811062c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 4f 03 33 51 f9 04 1b 43 8e 86 7b 25 a3 77 d8 dd 39 57 41 b5 45 82 81 45 ba f7 3e 48 +2026-04-25T21:42:40.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x5c"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x5c"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 1 518 0x3 +2026-04-25T21:42:40.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x5c"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x5c"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 2 3 0x7f48b04 a8 cd 65 +2026-04-25T21:42:40.716Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:42:40.719Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x70"",""0x163f5d4"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x70"",""0x163f5d4"",""0x206"",""0x3"",""0x7f48b04""]" 0 112 0x163f5d4 70 00 00 00 01 00 42 00 00 00 00 00 00 00 b8 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 4f 03 33 51 f9 04 1b 43 8e 86 7b 25 a3 77 d8 dd 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 00 00 00 +2026-04-25T21:42:40.719Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x70"",""0x163f5d4"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x70"",""0x163f5d4"",""0x206"",""0x3"",""0x7f48b04""]" 1 518 0x3 +2026-04-25T21:42:40.719Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x70"",""0x163f5d4"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x70"",""0x163f5d4"",""0x206"",""0x3"",""0x7f48b04""]" 2 3 0x7f48b04 a8 cd 65 +2026-04-25T21:42:40.720Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:42:41.586Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x12fefd8 "[""0x6658ff0"",""0x1"",""0x1"",""0x3"",""0x0"",""0x3e8"",""0x0"",""0x0"",""0x5e4f7d56"",""0x74794704""]" +2026-04-25T21:42:41.586Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:42:41.639Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x98fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x99ccd88"",""0x12fecc8"",""0xb54fab24""]" 0 2 0x2 +2026-04-25T21:42:41.639Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x98fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x99ccd88"",""0x12fecc8"",""0xb54fab24""]" 1 40 0x99ccd88 1000@18 37 01 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 02 e8 03 00 00 ff ff 00 00 00 00 00 00 00 00 e0 bf fe 0b 01 00 00 00 +2026-04-25T21:42:41.639Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x98fc738 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xaacc020"",""0x9af2959c"",""0x98f77f4"",""0x98f77e4"",""0x641add04"",""0x0""]" 0 86 0xaacc020 1000@64 01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 02 e8 03 00 00 ff ff 00 00 00 00 00 00 00 00 e0 bf fe 0b 01 00 00 00 +2026-04-25T21:42:41.640Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:42:41.640Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:42:41.663Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x33"",""0x16406dc"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x33"",""0x16406dc"",""0x206"",""0x3"",""0x7f48b04""]" 0 51 0x16406dc 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:42:41.663Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x33"",""0x16406dc"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x33"",""0x16406dc"",""0x206"",""0x3"",""0x7f48b04""]" 1 518 0x3 +2026-04-25T21:42:41.663Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x33"",""0x16406dc"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x33"",""0x16406dc"",""0x206"",""0x3"",""0x7f48b04""]" 2 3 0x7f48b04 a8 cd 65 +2026-04-25T21:42:41.664Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:42:41.667Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x5c"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x5c"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 0 92 0x811062c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 b9 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 4f 03 33 51 f9 04 1b 43 8e 86 7b 25 a3 77 d8 dd 03 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 e4 0b 54 +2026-04-25T21:42:41.667Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x5c"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x5c"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 1 518 0x3 +2026-04-25T21:42:41.667Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x98fc738 "[""0x5c"",""0x811062c"",""0x7b6efa8"",""0x76ffedd8"",""0x98fc744"",""0x5c"",""0x811062c"",""0x206"",""0x3"",""0x7f48b04""]" 2 3 0x7f48b04 a8 cd 65 +2026-04-25T21:42:41.669Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/095-frida-write-elapsed-int/frida-exit.txt b/captures/095-frida-write-elapsed-int/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/095-frida-write-elapsed-int/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/095-frida-write-elapsed-int/frida.stderr.txt b/captures/095-frida-write-elapsed-int/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/095-frida-write-elapsed-int/frida.stdout.jsonl b/captures/095-frida-write-elapsed-int/frida.stdout.jsonl new file mode 100644 index 0000000..6ce97d8 --- /dev/null +++ b/captures/095-frida-write-elapsed-int/frida.stdout.jsonl @@ -0,0 +1,80 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --type=int --value=1000 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\095-frida-write-elapsed-int\harness.log --client=MxFridaTrace-095-frida-write-elapsed-int`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --type=int --value=1000 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\095-frida-write-elapsed-int\harness.log --client=MxFridaTrace-095-frida-write-elapsed-int`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:42:33.509Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:42:33.509Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:42:33.510Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:42:33.510Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:42:33.511Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:42:33.511Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:42:33.512Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:42:33.513Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:42:33.513Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:42:40.258Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:42:40.258Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:42:40.259Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:42:40.260Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:42:40.260Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:42:40.261Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:42:40.262Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x98f7010","outPtr":"0x12fe948","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:42:40.427Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe948","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fe948","time":"2026-04-25T21:42:40.428Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x98f7010","outPtr":"0x12fe948","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:42:40.428Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fe948","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x12fe948","time":"2026-04-25T21:42:40.428Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:42:40.461Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:42:40.461Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:42:40.462Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:42:40.462Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:42:40.521Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99a0e60","outPtr":"0x12fee88","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x12fee88","time":"2026-04-25T21:42:40.522Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9900588","referenceString":{"length":47,"capacity":47,"value":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x99cce60","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 20 bd 8f 09 00 65 00 00 00 02 00 00 00 00 00 02 2f 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 ce 9c 09 3c 2c 25 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 8f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 dc e8 61 01 00 00 00 00"},"time":"2026-04-25T21:42:40.523Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99005d8","outPtr":"0x12fee18","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x12fee18","time":"2026-04-25T21:42:40.524Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99005d8","outPtr":"0x12fee18","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x12fee18","time":"2026-04-25T21:42:40.524Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x99005d8","outPtr":"0x12fee18","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x12fee18","time":"2026-04-25T21:42:40.525Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9900588","referenceString":{"length":47,"capacity":47,"value":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x99cce60","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 20 bd 8f 09 00 65 00 00 00 02 00 00 00 00 00 02 2f 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 60 ce 9c 09 3c 2c 25 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 8f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 dc e8 61 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:42:40.527Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:42:40.527Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x12ff004","args":["0x6658ff0","0x1","0x1","0x5e4f7d56","0x74794704"],"time":"2026-04-25T21:42:40.529Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x98f7010","outPtr":"0x12fee84","inWords":[65537,393218,8320008,655485,22956,0],"time":"2026-04-25T21:42:40.529Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fee84","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x12fee84","time":"2026-04-25T21:42:40.530Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x98f7010","outPtr":"0x12fdb18","inWords":[65537,393218,8320008,655485,22956,0],"time":"2026-04-25T21:42:40.530Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x12fdb18","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x12fdb18","time":"2026-04-25T21:42:40.530Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:42:40.531Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x98fc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9900648","0x12fecc8","0xb54fab24"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9900648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 8f 09 1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 90 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:42:40.657Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x98fc738","args":["0x1","0x1","0x1","0x168","0xaacc020","0x9af2959c","0x9900214","0x9900204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xaacc020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 8f 09 1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 90 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:42:40.660Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:42:40.661Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:42:40.661Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x98fc738","0x1","0x1","0x2","0x2","0x0","0x27","0x99cc9e0","0x12fecc8","0xb54fab24"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x99cc9e0","hex":"1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T21:42:40.662Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x98fc738","args":["0x1","0x1","0x2","0x55","0xaacc020","0x9af2959c","0x99d9584","0x99d9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xaacc020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T21:42:40.663Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:42:40.664Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:42:40.664Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x98fc738","args":["0x2c2","0x811062c","0x7b6efa8","0x76ffedd8","0x98fc744","0x2c2","0x811062c","0x206","0x3","0x7f48b04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x811062c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a1 80 fc 6d 91 cd f9 40 8e e7 20 ae 0b 15 c8 f8 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f48b04","hex":"a8 cd 65"}],"time":"2026-04-25T21:42:40.682Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:42:40.685Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x98fc738","args":["0x97","0x16406dc","0x7b6efa8","0x76ffedd8","0x98fc744","0x97","0x16406dc","0x206","0x3","0x7f48b04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x16406dc","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 fb 47 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a1 80 fc 6d 91 cd f9 40 8e e7 20 ae 0b 15 c8 f8 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f48b04","hex":"a8 cd 65"}],"time":"2026-04-25T21:42:40.687Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:42:40.689Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x98fc738","args":["0x5c","0x811062c","0x7b6efa8","0x76ffedd8","0x98fc744","0x5c","0x811062c","0x206","0x3","0x7f48b04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x811062c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 4f 03 33 51 f9 04 1b 43 8e 86 7b 25 a3 77 d8 dd 39 57 41 b5 45 82 81 45 ba f7 3e 48"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f48b04","hex":"a8 cd 65"}],"time":"2026-04-25T21:42:40.715Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:42:40.716Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x98fc738","args":["0x70","0x163f5d4","0x7b6efa8","0x76ffedd8","0x98fc744","0x70","0x163f5d4","0x206","0x3","0x7f48b04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x163f5d4","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 b8 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 4f 03 33 51 f9 04 1b 43 8e 86 7b 25 a3 77 d8 dd 39 57 41 b5 45 82 81 45 ba f7 3e 48 ca 16 ea f4 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f48b04","hex":"a8 cd 65"}],"time":"2026-04-25T21:42:40.719Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:42:40.720Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x12fefd8","args":["0x6658ff0","0x1","0x1","0x3","0x0","0x3e8","0x0","0x0","0x5e4f7d56","0x74794704"],"time":"2026-04-25T21:42:41.586Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:42:41.586Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x98fc738","0x1","0x1","0x2","0x2","0x0","0x28","0x99ccd88","0x12fecc8","0xb54fab24"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x99ccd88","hex":"37 01 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 02 e8 03 00 00 ff ff 00 00 00 00 00 00 00 00 e0 bf fe 0b 01 00 00 00"}],"time":"2026-04-25T21:42:41.639Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x98fc738","args":["0x1","0x1","0x2","0x56","0xaacc020","0x9af2959c","0x98f77f4","0x98f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xaacc020","hex":"01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 02 e8 03 00 00 ff ff 00 00 00 00 00 00 00 00 e0 bf fe 0b 01 00 00 00"}],"time":"2026-04-25T21:42:41.639Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:42:41.640Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:42:41.640Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x98fc738","args":["0x33","0x16406dc","0x7b6efa8","0x76ffedd8","0x98fc744","0x33","0x16406dc","0x206","0x3","0x7f48b04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x16406dc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f48b04","hex":"a8 cd 65"}],"time":"2026-04-25T21:42:41.663Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:42:41.664Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x98fc738","args":["0x5c","0x811062c","0x7b6efa8","0x76ffedd8","0x98fc744","0x5c","0x811062c","0x206","0x3","0x7f48b04"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x811062c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 b9 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 4f 03 33 51 f9 04 1b 43 8e 86 7b 25 a3 77 d8 dd 03 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 e4 0b 54"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7f48b04","hex":"a8 cd 65"}],"time":"2026-04-25T21:42:41.667Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:42:41.669Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/095-frida-write-elapsed-int/harness.log b/captures/095-frida-write-elapsed-int/harness.log new file mode 100644 index 0000000..a05a2a0 --- /dev/null +++ b/captures/095-frida-write-elapsed-int/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:42:33.4498469+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-095-frida-write-elapsed-int","Tags":["TestMachine_001.TestAlarm001.Alarm.TimeDeadband"],"ItemContext":"","WriteType":"int","WriteValue":"1000","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:42:40.1637297+00:00 mx.register.begin {"ClientName":"MxFridaTrace-095-frida-write-elapsed-int"} +2026-04-25T21:42:40.5194984+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:42:40.5194984+00:00 mx.additem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"} +2026-04-25T21:42:40.5274585+00:00 mx.additem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T21:42:40.5284662+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T21:42:40.5314337+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T21:42:41.5836675+00:00 mx.write.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"1000"},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:42:41.5866885+00:00 mx.write.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:42:46.6015936+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T21:42:46.6015936+00:00 mx.unadvise.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T21:42:46.6015936+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T21:42:46.6026300+00:00 mx.removeitem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T21:42:46.6026300+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:42:50.5596029+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:42:50.5655987+00:00 harness.stop {} diff --git a/captures/096-frida-write-intl-string/frida-command.txt b/captures/096-frida-write-intl-string/frida-command.txt new file mode 100644 index 0000000..3d2088b --- /dev/null +++ b/captures/096-frida-write-intl-string/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.ShortDesc --type=string --value=hello-native --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\096-frida-write-intl-string\harness.log --client=MxFridaTrace-096-frida-write-intl-string diff --git a/captures/096-frida-write-intl-string/frida-events.tsv b/captures/096-frida-write-intl-string/frida-events.tsv new file mode 100644 index 0000000..f7380a4 --- /dev/null +++ b/captures/096-frida-write-intl-string/frida-events.tsv @@ -0,0 +1,76 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:43:16.606Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:43:16.607Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:43:16.607Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:43:16.608Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:43:16.608Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:43:16.609Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:43:16.609Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:43:16.610Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:43:16.610Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:43:23.457Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:43:23.458Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:43:23.459Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:43:23.460Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:43:23.461Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:43:23.462Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:43:23.462Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:43:23.619Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:43:23.620Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x76e418 [] +2026-04-25T21:43:23.620Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:43:23.621Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x76e418 [] +2026-04-25T21:43:23.658Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:43:23.658Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:43:23.659Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:43:23.659Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:43:23.733Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:43:23.733Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x76e984 [] +2026-04-25T21:43:23.734Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:43:23.735Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x76e914 [] +2026-04-25T21:43:23.735Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x76e914 [] +2026-04-25T21:43:23.736Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x76e914 [] +2026-04-25T21:43:23.737Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:43:23.737Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:43:23.739Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x76ead4 "[""0x5c28ff0"",""0x1"",""0x1"",""0xab16100a"",""0x74794704""]" +2026-04-25T21:43:23.740Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:43:23.740Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x76e954 [] +2026-04-25T21:43:23.741Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:43:23.741Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x76d5e8 [] +2026-04-25T21:43:23.742Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:43:23.869Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e3c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8e40648"",""0x76e798"",""0xaeaa5f68""]" 0 1 0x2 +2026-04-25T21:43:23.869Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e3c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8e40648"",""0x76e798"",""0xaeaa5f68""]" 1 314 0x8e40648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e3 08 1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e4 08 20 01 00 02 00 00 00 +2026-04-25T21:43:23.871Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e3c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9fdf020"",""0xdf25fae3"",""0x8e40214"",""0x8e40204"",""0x641add04"",""0x0""]" 0 360 0x9fdf020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e3 08 1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e4 08 20 01 00 02 00 00 00 +2026-04-25T21:43:23.872Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:43:23.873Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:43:23.874Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e3c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8f0cef0"",""0x76e798"",""0xaeaa5f68""]" 0 2 0x2 +2026-04-25T21:43:23.874Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e3c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8f0cef0"",""0x76e798"",""0xaeaa5f68""]" 1 39 0x8f0cef0 1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T21:43:23.875Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e3c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9fdf020"",""0xdf25fae3"",""0x8f19584"",""0x8f19574"",""0x641add04"",""0x0""]" 0 85 0x9fdf020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T21:43:23.876Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:43:23.876Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:43:23.907Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x2c2"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x2c2"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 0 706 0x73f51cc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 f1 41 e9 90 cc 75 b6 48 a4 02 dd 63 88 f7 c0 15 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:43:23.907Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x2c2"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x2c2"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 1 518 0x3 +2026-04-25T21:43:23.907Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x2c2"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x2c2"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 2 3 0x742b38c 88 34 ae +2026-04-25T21:43:23.909Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:43:23.911Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x97"",""0x7971734"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x97"",""0x7971734"",""0x206"",""0x3"",""0x742b38c""]" 0 151 0x7971734 97 00 00 00 01 00 69 00 00 00 00 00 00 00 a9 48 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 f1 41 e9 90 cc 75 b6 48 a4 02 dd 63 88 f7 c0 15 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:43:23.911Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x97"",""0x7971734"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x97"",""0x7971734"",""0x206"",""0x3"",""0x742b38c""]" 1 518 0x3 +2026-04-25T21:43:23.911Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x97"",""0x7971734"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x97"",""0x7971734"",""0x206"",""0x3"",""0x742b38c""]" 2 3 0x742b38c 88 34 ae +2026-04-25T21:43:23.912Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:43:23.925Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x5c"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x5c"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 0 92 0x73f51cc 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 86 b5 7f 19 70 93 a9 4b b1 31 e4 9d 58 e3 95 82 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e +2026-04-25T21:43:23.925Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x5c"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x5c"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 1 518 0x3 +2026-04-25T21:43:23.925Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x5c"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x5c"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 2 3 0x742b38c 88 34 ae +2026-04-25T21:43:23.926Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:43:23.929Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x70"",""0x7971734"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x70"",""0x7971734"",""0x206"",""0x3"",""0x742b38c""]" 0 112 0x7971734 70 00 00 00 01 00 42 00 00 00 00 00 00 00 bb 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 86 b5 7f 19 70 93 a9 4b b1 31 e4 9d 58 e3 95 82 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00 +2026-04-25T21:43:23.929Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x70"",""0x7971734"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x70"",""0x7971734"",""0x206"",""0x3"",""0x742b38c""]" 1 518 0x3 +2026-04-25T21:43:23.929Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x70"",""0x7971734"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x70"",""0x7971734"",""0x206"",""0x3"",""0x742b38c""]" 2 3 0x742b38c 88 34 ae +2026-04-25T21:43:23.930Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:43:24.790Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x76eaa8 "[""0x5c28ff0"",""0x1"",""0x1"",""0x8"",""0x0"",""0x7aa979c"",""0x0"",""0x0"",""0xab16100a"",""0x74794704""]" +2026-04-25T21:43:24.791Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:43:24.947Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e3c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x46"",""0x8f1a0b0"",""0x76e798"",""0xaeaa5f68""]" 0 2 0x2 +2026-04-25T21:43:24.947Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e3c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x46"",""0x8f1a0b0"",""0x76e798"",""0xaeaa5f68""]" 1 70 0x8f1a0b0 hello-native:utf16le@26 37 01 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 05 1e 00 00 00 1a 00 00 00 68 00 65 00 6c 00 6c 00 6f 00 2d 00 6e 00 61 00 74 00 69 00 76 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 94 68 ff 0b 01 00 00 00 +2026-04-25T21:43:24.948Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e3c738 "[""0x1"",""0x1"",""0x2"",""0x74"",""0x9fdf020"",""0xdf25fae3"",""0x8f199dc"",""0x8f199cc"",""0x641add04"",""0x0""]" 0 116 0x9fdf020 hello-native:utf16le@72 01 00 46 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 05 1e 00 00 00 1a 00 00 00 68 00 65 00 6c 00 6c 00 6f 00 2d 00 6e 00 61 00 74 00 69 00 76 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 94 68 ff 0b 01 00 00 00 +2026-04-25T21:43:24.949Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:43:24.949Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:43:24.975Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x33"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x33"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 0 51 0x73f51cc 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 ef +2026-04-25T21:43:24.975Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x33"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x33"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 1 518 0x3 +2026-04-25T21:43:24.975Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e3c738 "[""0x33"",""0x73f51cc"",""0x70dea48"",""0x76ffedd8"",""0x8e3c744"",""0x33"",""0x73f51cc"",""0x206"",""0x3"",""0x742b38c""]" 2 3 0x742b38c 88 34 ae +2026-04-25T21:43:24.977Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/096-frida-write-intl-string/frida-exit.txt b/captures/096-frida-write-intl-string/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/096-frida-write-intl-string/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/096-frida-write-intl-string/frida.stderr.txt b/captures/096-frida-write-intl-string/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/096-frida-write-intl-string/frida.stdout.jsonl b/captures/096-frida-write-intl-string/frida.stdout.jsonl new file mode 100644 index 0000000..f52d4c1 --- /dev/null +++ b/captures/096-frida-write-intl-string/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.ShortDesc --type=string --value=hello-native --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\096-frida-write-intl-string\harness.log --client=MxFridaTrace-096-frida-write-intl-string`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.ShortDesc --type=string --value=hello-native --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\096-frida-write-intl-string\harness.log --client=MxFridaTrace-096-frida-write-intl-string`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:43:16.606Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:43:16.607Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:43:16.607Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:43:16.608Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:43:16.608Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:43:16.609Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:43:16.609Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:43:16.610Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:43:16.610Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:43:23.457Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:43:23.458Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:43:23.459Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:43:23.460Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:43:23.461Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:43:23.462Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:43:23.462Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e37010","outPtr":"0x76e418","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:43:23.619Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x76e418","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x76e418","time":"2026-04-25T21:43:23.620Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e37010","outPtr":"0x76e418","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:43:23.620Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x76e418","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x76e418","time":"2026-04-25T21:43:23.621Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:43:23.658Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:43:23.658Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:43:23.659Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:43:23.659Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:43:23.733Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8ee0d48","outPtr":"0x76e984","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x76e984","time":"2026-04-25T21:43:23.733Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e40588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f0cb48","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 18 ce f0 08 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 48 cb f0 08 9c 8f ad 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 e3 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 d4 3f 9a 00 00 00 00 00"},"time":"2026-04-25T21:43:23.734Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e405d8","outPtr":"0x76e914","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x76e914","time":"2026-04-25T21:43:23.735Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e405d8","outPtr":"0x76e914","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x76e914","time":"2026-04-25T21:43:23.735Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e405d8","outPtr":"0x76e914","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x76e914","time":"2026-04-25T21:43:23.736Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e40588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f0cb48","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 18 ce f0 08 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 48 cb f0 08 9c 8f ad 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 e3 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 d4 3f 9a 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:43:23.737Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:43:23.737Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x76ead4","args":["0x5c28ff0","0x1","0x1","0xab16100a","0x74794704"],"time":"2026-04-25T21:43:23.739Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e37010","outPtr":"0x76e954","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T21:43:23.740Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x76e954","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x76e954","time":"2026-04-25T21:43:23.740Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e37010","outPtr":"0x76d5e8","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T21:43:23.741Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x76d5e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x76d5e8","time":"2026-04-25T21:43:23.741Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:43:23.742Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e3c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8e40648","0x76e798","0xaeaa5f68"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8e40648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e3 08 1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e4 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:43:23.869Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e3c738","args":["0x1","0x1","0x1","0x168","0x9fdf020","0xdf25fae3","0x8e40214","0x8e40204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9fdf020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e3 08 1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e4 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:43:23.871Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:43:23.872Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:43:23.873Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e3c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8f0cef0","0x76e798","0xaeaa5f68"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8f0cef0","hex":"1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T21:43:23.874Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e3c738","args":["0x1","0x1","0x2","0x55","0x9fdf020","0xdf25fae3","0x8f19584","0x8f19574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9fdf020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T21:43:23.875Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:43:23.876Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:43:23.876Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e3c738","args":["0x2c2","0x73f51cc","0x70dea48","0x76ffedd8","0x8e3c744","0x2c2","0x73f51cc","0x206","0x3","0x742b38c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x73f51cc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 f1 41 e9 90 cc 75 b6 48 a4 02 dd 63 88 f7 c0 15 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x742b38c","hex":"88 34 ae"}],"time":"2026-04-25T21:43:23.907Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:43:23.909Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e3c738","args":["0x97","0x7971734","0x70dea48","0x76ffedd8","0x8e3c744","0x97","0x7971734","0x206","0x3","0x742b38c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7971734","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 a9 48 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 f1 41 e9 90 cc 75 b6 48 a4 02 dd 63 88 f7 c0 15 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x742b38c","hex":"88 34 ae"}],"time":"2026-04-25T21:43:23.911Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:43:23.912Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e3c738","args":["0x5c","0x73f51cc","0x70dea48","0x76ffedd8","0x8e3c744","0x5c","0x73f51cc","0x206","0x3","0x742b38c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x73f51cc","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 86 b5 7f 19 70 93 a9 4b b1 31 e4 9d 58 e3 95 82 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x742b38c","hex":"88 34 ae"}],"time":"2026-04-25T21:43:23.925Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:43:23.926Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e3c738","args":["0x70","0x7971734","0x70dea48","0x76ffedd8","0x8e3c744","0x70","0x7971734","0x206","0x3","0x742b38c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x7971734","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 bb 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 86 b5 7f 19 70 93 a9 4b b1 31 e4 9d 58 e3 95 82 8d 3c 99 2a e3 ae 42 45 af 98 5b 0e 71 a2 0d 6c 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x742b38c","hex":"88 34 ae"}],"time":"2026-04-25T21:43:23.929Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:43:23.930Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x76eaa8","args":["0x5c28ff0","0x1","0x1","0x8","0x0","0x7aa979c","0x0","0x0","0xab16100a","0x74794704"],"time":"2026-04-25T21:43:24.790Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:43:24.791Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e3c738","0x1","0x1","0x2","0x2","0x0","0x46","0x8f1a0b0","0x76e798","0xaeaa5f68"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":70,"ptr":"0x8f1a0b0","hex":"37 01 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 05 1e 00 00 00 1a 00 00 00 68 00 65 00 6c 00 6c 00 6f 00 2d 00 6e 00 61 00 74 00 69 00 76 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 94 68 ff 0b 01 00 00 00"}],"time":"2026-04-25T21:43:24.947Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e3c738","args":["0x1","0x1","0x2","0x74","0x9fdf020","0xdf25fae3","0x8f199dc","0x8f199cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":116,"ptr":"0x9fdf020","hex":"01 00 46 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 05 1e 00 00 00 1a 00 00 00 68 00 65 00 6c 00 6c 00 6f 00 2d 00 6e 00 61 00 74 00 69 00 76 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 94 68 ff 0b 01 00 00 00"}],"time":"2026-04-25T21:43:24.948Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:43:24.949Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:43:24.949Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e3c738","args":["0x33","0x73f51cc","0x70dea48","0x76ffedd8","0x8e3c744","0x33","0x73f51cc","0x206","0x3","0x742b38c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x73f51cc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 ef"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x742b38c","hex":"88 34 ae"}],"time":"2026-04-25T21:43:24.975Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:43:24.977Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/096-frida-write-intl-string/harness.log b/captures/096-frida-write-intl-string/harness.log new file mode 100644 index 0000000..6f862b8 --- /dev/null +++ b/captures/096-frida-write-intl-string/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:43:16.5105117+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-096-frida-write-intl-string","Tags":["TestChildObject.ShortDesc"],"ItemContext":"","WriteType":"string","WriteValue":"hello-native","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:43:23.3513592+00:00 mx.register.begin {"ClientName":"MxFridaTrace-096-frida-write-intl-string"} +2026-04-25T21:43:23.7298358+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:43:23.7309057+00:00 mx.additem.begin {"Tag":"TestChildObject.ShortDesc"} +2026-04-25T21:43:23.7378461+00:00 mx.additem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T21:43:23.7398595+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T21:43:23.7428410+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T21:43:24.7878284+00:00 mx.write.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String","Value":"hello-native"},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:43:24.7918588+00:00 mx.write.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:43:29.8042893+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T21:43:29.8052960+00:00 mx.unadvise.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T21:43:29.8052960+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T21:43:29.8052960+00:00 mx.removeitem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T21:43:29.8052960+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:43:33.6865181+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:43:33.6914980+00:00 harness.stop {} diff --git a/captures/097-frida-write-bool-array-pattern/frida-command.txt b/captures/097-frida-write-bool-array-pattern/frida-command.txt new file mode 100644 index 0000000..0d1c6f0 --- /dev/null +++ b/captures/097-frida-write-bool-array-pattern/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --values=true,false,false,true,true,false,true,false,false,true --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\097-frida-write-bool-array-pattern\harness.log --client=MxFridaTrace-097-frida-write-bool-array-pattern diff --git a/captures/097-frida-write-bool-array-pattern/frida-events.tsv b/captures/097-frida-write-bool-array-pattern/frida-events.tsv new file mode 100644 index 0000000..e2880ed --- /dev/null +++ b/captures/097-frida-write-bool-array-pattern/frida-events.tsv @@ -0,0 +1,195 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:52:35.998Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:52:35.999Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:52:35.999Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:52:36.000Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:52:36.000Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:52:36.001Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:52:36.001Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:52:36.002Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:52:36.002Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:52:42.847Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:52:42.848Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:52:42.849Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:52:42.849Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:52:42.850Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:52:42.851Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:52:42.851Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:52:42.937Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:52:42.938Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe4e8 [] +2026-04-25T21:52:42.938Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:52:42.938Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefe4e8 [] +2026-04-25T21:52:42.948Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:52:42.949Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:52:42.949Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:52:42.950Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:52:43.035Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:52:43.035Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefea58 [] +2026-04-25T21:52:43.036Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:52:43.037Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefe9e8 [] +2026-04-25T21:52:43.037Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefe9e8 [] +2026-04-25T21:52:43.037Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xefe9e8 [] +2026-04-25T21:52:43.038Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:52:43.039Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:52:43.040Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xefebb4 "[""0x6248ff0"",""0x1"",""0x1"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:43.041Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:52:43.041Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefea34 [] +2026-04-25T21:52:43.041Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:52:43.042Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xefd6c8 [] +2026-04-25T21:52:43.042Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:52:43.166Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9500648"",""0xefe878"",""0x35346c41""]" 0 1 0x2 +2026-04-25T21:52:43.166Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9500648"",""0xefe878"",""0x35346c41""]" 1 314 0x9500648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4f 09 1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 50 09 20 01 00 02 00 00 00 +2026-04-25T21:52:43.169Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9e9e020"",""0xb0c448bf"",""0x9500214"",""0x9500204"",""0x641add04"",""0x0""]" 0 360 0x9e9e020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4f 09 1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 50 09 20 01 00 02 00 00 00 +2026-04-25T21:52:43.169Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:43.170Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:43.171Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x95cdd90"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:43.171Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x95cdd90"",""0xefe878"",""0x35346c41""]" 1 39 0x95cdd90 1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00 +2026-04-25T21:52:43.172Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9e9e020"",""0xb0c448bf"",""0x95d9584"",""0x95d9574"",""0x641add04"",""0x0""]" 0 85 0x9e9e020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00 +2026-04-25T21:52:43.172Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:43.173Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:43.181Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x2c2"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x2c2"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 0 706 0x7fe585c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 08 8b 75 34 7d a0 c3 47 94 46 7d 18 bc 0c 96 2b cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:52:43.181Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x2c2"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x2c2"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:43.181Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x2c2"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x2c2"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:43.183Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:43.186Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x97"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x97"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 0 151 0x7fead84 97 00 00 00 01 00 69 00 00 00 00 00 00 00 69 51 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 08 8b 75 34 7d a0 c3 47 94 46 7d 18 bc 0c 96 2b cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:52:43.186Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x97"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x97"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:43.186Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x97"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x97"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:43.187Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:43.206Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x5c"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x5c"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 0 92 0x7fe585c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 +2026-04-25T21:52:43.206Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x5c"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x5c"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:43.206Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x5c"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x5c"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:43.207Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:43.210Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x86"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x86"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 0 134 0x7fead84 86 00 00 00 01 00 58 00 00 00 00 00 00 00 bd 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 03 00 00 00 03 00 00 00 c0 00 00 70 58 9b ac d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 +2026-04-25T21:52:43.210Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x86"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x86"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:43.210Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x86"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x86"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:43.211Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:44.086Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x80341a8"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:44.087Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:44.139Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd880"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:44.139Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd880"",""0xefe878"",""0x35346c41""]" 1 48 0x95cd880 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 01 00 00 00 +2026-04-25T21:52:44.140Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x94f77f4"",""0x94f77e4"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 01 00 00 00 +2026-04-25T21:52:44.141Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:44.141Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:44.159Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fdf22c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fdf22c"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x7fdf22c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:44.159Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fdf22c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fdf22c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:44.159Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fdf22c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fdf22c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:44.161Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:44.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 0 96 0x7fe585c 60 00 00 00 01 00 32 00 00 00 00 00 00 00 be 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 e0 39 b1 d8 fd d4 dc 01 41 00 00 00 00 01 00 02 00 +2026-04-25T21:52:44.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:44.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:44.164Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:44.602Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x80341a8"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:44.602Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:44.705Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95ce018"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:44.705Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95ce018"",""0xefe878"",""0x35346c41""]" 1 48 0x95ce018 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 02 00 00 00 +2026-04-25T21:52:44.706Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x95d99dc"",""0x95d99cc"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 02 00 00 00 +2026-04-25T21:52:44.706Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:44.706Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:44.716Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x7fead84 33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:44.716Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:44.716Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fead84"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fead84"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:44.718Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:44.721Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fde124"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fde124"",""0x206"",""0x3"",""0x7af6d84""]" 0 96 0x7fde124 60 00 00 00 01 00 32 00 00 00 00 00 00 00 bf 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 b0 37 06 d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00 +2026-04-25T21:52:44.721Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fde124"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fde124"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:44.721Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fde124"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fde124"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:44.722Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:45.115Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x80341a8"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:45.116Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:45.219Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd958"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:45.219Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd958"",""0xefe878"",""0x35346c41""]" 1 48 0x95cd958 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 03 00 00 00 +2026-04-25T21:52:45.220Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x95d9584"",""0x95d9574"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 03 00 00 00 +2026-04-25T21:52:45.220Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:45.221Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:45.248Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x7fe0334 33 00 00 00 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:45.248Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:45.248Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:45.250Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:45.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe9c7c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe9c7c"",""0x206"",""0x3"",""0x7af6d84""]" 0 96 0x7fe9c7c 60 00 00 00 01 00 32 00 00 00 00 00 00 00 c0 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 e0 3d 57 d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00 +2026-04-25T21:52:45.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe9c7c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe9c7c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:45.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe9c7c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe9c7c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:45.253Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:45.630Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x80341a8"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:45.630Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:45.682Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cde68"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:45.682Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cde68"",""0xefe878"",""0x35346c41""]" 1 48 0x95cde68 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 04 00 00 00 +2026-04-25T21:52:45.683Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x95d99dc"",""0x95d99cc"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 04 00 00 00 +2026-04-25T21:52:45.683Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:45.684Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:45.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x801af4c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x801af4c"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x801af4c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:45.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x801af4c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x801af4c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:45.715Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x801af4c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x801af4c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:45.717Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:45.719Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x801c054"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x801c054"",""0x206"",""0x3"",""0x7af6d84""]" 0 96 0x801c054 60 00 00 00 01 00 32 00 00 00 00 00 00 00 c1 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 10 80 9e d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00 +2026-04-25T21:52:45.719Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x801c054"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x801c054"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:45.719Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x801c054"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x801c054"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:45.721Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:46.143Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x80341a8"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:46.144Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:46.248Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cdd00"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:46.248Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cdd00"",""0xefe878"",""0x35346c41""]" 1 48 0x95cdd00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 05 00 00 00 +2026-04-25T21:52:46.249Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x94f77f4"",""0x94f77e4"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 05 00 00 00 +2026-04-25T21:52:46.250Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:46.250Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:46.302Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe7a6c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe7a6c"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x7fe7a6c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:46.302Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe7a6c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe7a6c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:46.302Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe7a6c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe7a6c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:46.304Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:46.307Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 0 96 0x7fe0334 60 00 00 00 01 00 32 00 00 00 00 00 00 00 c2 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 d0 38 f8 d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00 +2026-04-25T21:52:46.307Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:46.307Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x60"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x60"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:46.309Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:46.658Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x80343e8"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:46.659Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:46.762Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd958"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:46.762Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd958"",""0xefe878"",""0x35346c41""]" 1 48 0x95cd958 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 06 00 00 00 +2026-04-25T21:52:46.763Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x95d9584"",""0x95d9574"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 06 00 00 00 +2026-04-25T21:52:46.763Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:46.763Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:46.813Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe7a6c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe7a6c"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x7fe7a6c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:46.813Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe7a6c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe7a6c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:46.813Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe7a6c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe7a6c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:46.814Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:47.173Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x8034448"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:47.173Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:47.225Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cdd00"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:47.225Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cdd00"",""0xefe878"",""0x35346c41""]" 1 48 0x95cdd00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 07 00 00 00 +2026-04-25T21:52:47.227Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x94f77f4"",""0x94f77e4"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 09 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 07 00 00 00 +2026-04-25T21:52:47.228Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:47.228Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:47.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x7fe585c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 09 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:47.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:47.252Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe585c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe585c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:47.254Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:47.688Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x8034088"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:47.689Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:47.740Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cda30"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:47.740Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cda30"",""0xefe878"",""0x35346c41""]" 1 48 0x95cda30 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 08 00 00 00 +2026-04-25T21:52:47.741Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x95d99dc"",""0x95d99cc"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 0a 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 08 00 00 00 +2026-04-25T21:52:47.750Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:47.751Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:47.766Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x7fe0334 33 00 00 00 01 00 05 00 00 00 00 00 00 00 0a 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:47.766Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:47.766Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x7fe0334"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x7fe0334"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:47.768Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:48.210Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x80343e8"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:48.211Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:48.314Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cdfd0"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:48.314Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cdfd0"",""0xefe878"",""0x35346c41""]" 1 48 0x95cdfd0 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 09 00 00 00 +2026-04-25T21:52:48.315Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x95d9584"",""0x95d9574"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 0b 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 09 00 00 00 +2026-04-25T21:52:48.315Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:48.316Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:48.357Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x802157c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x802157c"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x802157c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 0b 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:48.357Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x802157c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x802157c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:48.357Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x802157c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x802157c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:48.359Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:52:48.727Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xefeb88 "[""0x6248ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x8034388"",""0x0"",""0x0"",""0x588295aa"",""0x74794704""]" +2026-04-25T21:52:48.728Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:52:48.830Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd880"",""0xefe878"",""0x35346c41""]" 0 2 0x2 +2026-04-25T21:52:48.830Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x94fc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x30"",""0x95cd880"",""0xefe878"",""0x35346c41""]" 1 48 0x95cd880 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 0a 00 00 00 +2026-04-25T21:52:48.830Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x94fc738 "[""0x1"",""0x1"",""0x2"",""0x5e"",""0x9e9e020"",""0xb0c448bf"",""0x94f77f4"",""0x94f77e4"",""0x641add04"",""0x0""]" 0 94 0x9e9e020 01 00 30 00 00 00 00 00 00 00 0c 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 0a 00 00 00 +2026-04-25T21:52:48.831Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:52:48.831Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:52:48.870Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x801af4c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x801af4c"",""0x206"",""0x3"",""0x7af6d84""]" 0 51 0x801af4c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 0c 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:52:48.870Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x801af4c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x801af4c"",""0x206"",""0x3"",""0x7af6d84""]" 1 518 0x3 +2026-04-25T21:52:48.870Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x94fc738 "[""0x33"",""0x801af4c"",""0x78aee68"",""0x76ffedd8"",""0x94fc744"",""0x33"",""0x801af4c"",""0x206"",""0x3"",""0x7af6d84""]" 2 3 0x7af6d84 a0 90 14 +2026-04-25T21:52:48.872Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/097-frida-write-bool-array-pattern/frida-exit.txt b/captures/097-frida-write-bool-array-pattern/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/097-frida-write-bool-array-pattern/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/097-frida-write-bool-array-pattern/frida.stderr.txt b/captures/097-frida-write-bool-array-pattern/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/097-frida-write-bool-array-pattern/frida.stdout.jsonl b/captures/097-frida-write-bool-array-pattern/frida.stdout.jsonl new file mode 100644 index 0000000..8108b47 --- /dev/null +++ b/captures/097-frida-write-bool-array-pattern/frida.stdout.jsonl @@ -0,0 +1,160 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --values=true,false,false,true,true,false,true,false,false,true --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\097-frida-write-bool-array-pattern\harness.log --client=MxFridaTrace-097-frida-write-bool-array-pattern`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --values=true,false,false,true,true,false,true,false,false,true --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\097-frida-write-bool-array-pattern\harness.log --client=MxFridaTrace-097-frida-write-bool-array-pattern`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:52:35.998Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:52:35.999Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:52:35.999Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:52:36.000Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:52:36.000Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:52:36.001Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:52:36.001Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:52:36.002Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:52:36.002Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:52:42.847Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:52:42.848Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:52:42.849Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:52:42.849Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:52:42.850Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:52:42.851Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:52:42.851Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94f7010","outPtr":"0xefe4e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:52:42.937Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe4e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xefe4e8","time":"2026-04-25T21:52:42.938Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94f7010","outPtr":"0xefe4e8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:52:42.938Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefe4e8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xefe4e8","time":"2026-04-25T21:52:42.938Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:52:42.948Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:52:42.949Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:52:42.949Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:52:42.950Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:52:43.035Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95a0c80","outPtr":"0xefea58","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0xefea58","time":"2026-04-25T21:52:43.035Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9500588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestBoolArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x95cddd8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b0 de 5c 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 dd 5c 09 f4 2a 13 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 4f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 c4 36 12 01 00 00 00 00"},"time":"2026-04-25T21:52:43.036Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95005d8","outPtr":"0xefe9e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0xefe9e8","time":"2026-04-25T21:52:43.037Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95005d8","outPtr":"0xefe9e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0xefe9e8","time":"2026-04-25T21:52:43.037Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x95005d8","outPtr":"0xefe9e8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0xefe9e8","time":"2026-04-25T21:52:43.037Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9500588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestBoolArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x95cddd8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b0 de 5c 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d8 dd 5c 09 f4 2a 13 08 00 00 00 00 00 00 00 00 00 00 00 00 10 70 4f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 c4 36 12 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:52:43.038Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:52:43.039Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xefebb4","args":["0x6248ff0","0x1","0x1","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:43.040Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94f7010","outPtr":"0xefea34","inWords":[65537,327682,186166,655520,4294937082,0],"time":"2026-04-25T21:52:43.041Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefea34","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0xefea34","time":"2026-04-25T21:52:43.041Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x94f7010","outPtr":"0xefd6c8","inWords":[65537,327682,186166,655520,4294937082,0],"time":"2026-04-25T21:52:43.041Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xefd6c8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0xefd6c8","time":"2026-04-25T21:52:43.042Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:52:43.042Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9500648","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9500648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4f 09 1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 50 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:52:43.166Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x1","0x168","0x9e9e020","0xb0c448bf","0x9500214","0x9500204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9e9e020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 4f 09 1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 50 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:52:43.169Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:43.169Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:43.170Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x27","0x95cdd90","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x95cdd90","hex":"1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T21:52:43.171Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x55","0x9e9e020","0xb0c448bf","0x95d9584","0x95d9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9e9e020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T21:52:43.172Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:43.172Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:43.173Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x2c2","0x7fe585c","0x78aee68","0x76ffedd8","0x94fc744","0x2c2","0x7fe585c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7fe585c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 08 8b 75 34 7d a0 c3 47 94 46 7d 18 bc 0c 96 2b cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:43.181Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:43.183Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x97","0x7fead84","0x78aee68","0x76ffedd8","0x94fc744","0x97","0x7fead84","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7fead84","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 69 51 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 08 8b 75 34 7d a0 c3 47 94 46 7d 18 bc 0c 96 2b cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:43.186Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:43.187Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x5c","0x7fe585c","0x78aee68","0x76ffedd8","0x94fc744","0x5c","0x7fe585c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7fe585c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:43.206Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:43.207Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x86","0x7fead84","0x78aee68","0x76ffedd8","0x94fc744","0x86","0x7fead84","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":134,"ptr":"0x7fead84","hex":"86 00 00 00 01 00 58 00 00 00 00 00 00 00 bd 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 cd e3 7d 42 d5 73 f6 43 8c 1a d5 e2 0d 52 eb 7c 03 00 00 00 03 00 00 00 c0 00 00 70 58 9b ac d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:43.210Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:43.211Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x80341a8","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:44.086Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:44.087Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cd880","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cd880","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 01 00 00 00"}],"time":"2026-04-25T21:52:44.139Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x94f77f4","0x94f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 01 00 00 00"}],"time":"2026-04-25T21:52:44.140Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:44.141Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:44.141Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x7fdf22c","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x7fdf22c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fdf22c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:44.159Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:44.161Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x60","0x7fe585c","0x78aee68","0x76ffedd8","0x94fc744","0x60","0x7fe585c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":96,"ptr":"0x7fe585c","hex":"60 00 00 00 01 00 32 00 00 00 00 00 00 00 be 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 e0 39 b1 d8 fd d4 dc 01 41 00 00 00 00 01 00 02 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:44.163Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:44.164Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x80341a8","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:44.602Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:44.602Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95ce018","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95ce018","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 02 00 00 00"}],"time":"2026-04-25T21:52:44.705Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x95d99dc","0x95d99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 02 00 00 00"}],"time":"2026-04-25T21:52:44.706Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:44.706Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:44.706Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x7fead84","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x7fead84","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fead84","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:44.716Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:44.718Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x60","0x7fde124","0x78aee68","0x76ffedd8","0x94fc744","0x60","0x7fde124","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":96,"ptr":"0x7fde124","hex":"60 00 00 00 01 00 32 00 00 00 00 00 00 00 bf 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 b0 37 06 d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:44.721Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:44.722Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x80341a8","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:45.115Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:45.116Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cd958","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cd958","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 03 00 00 00"}],"time":"2026-04-25T21:52:45.219Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x95d9584","0x95d9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 03 00 00 00"}],"time":"2026-04-25T21:52:45.220Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:45.220Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:45.221Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x7fe0334","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x7fe0334","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fe0334","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:45.248Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:45.250Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x60","0x7fe9c7c","0x78aee68","0x76ffedd8","0x94fc744","0x60","0x7fe9c7c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":96,"ptr":"0x7fe9c7c","hex":"60 00 00 00 01 00 32 00 00 00 00 00 00 00 c0 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 e0 3d 57 d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:45.252Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:45.253Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x80341a8","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:45.630Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:45.630Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cde68","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cde68","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 04 00 00 00"}],"time":"2026-04-25T21:52:45.682Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x95d99dc","0x95d99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 04 00 00 00"}],"time":"2026-04-25T21:52:45.683Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:45.683Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:45.684Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x801af4c","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x801af4c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x801af4c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:45.715Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:45.717Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x60","0x801c054","0x78aee68","0x76ffedd8","0x94fc744","0x60","0x801c054","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":96,"ptr":"0x801c054","hex":"60 00 00 00 01 00 32 00 00 00 00 00 00 00 c1 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 10 80 9e d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:45.719Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:45.721Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x80341a8","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:46.143Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:46.144Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cdd00","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cdd00","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 05 00 00 00"}],"time":"2026-04-25T21:52:46.248Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x94f77f4","0x94f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 05 00 00 00"}],"time":"2026-04-25T21:52:46.249Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:46.250Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:46.250Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x7fe7a6c","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x7fe7a6c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fe7a6c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:46.302Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:46.304Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x60","0x7fe0334","0x78aee68","0x76ffedd8","0x94fc744","0x60","0x7fe0334","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":96,"ptr":"0x7fe0334","hex":"60 00 00 00 01 00 32 00 00 00 00 00 00 00 c2 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 27 4a 13 a0 ee 8b d2 4b 96 4d 35 b1 39 a2 ed e5 03 00 00 00 c0 00 d0 38 f8 d9 fd d4 dc 01 41 00 00 00 00 01 00 02 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:46.307Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:46.309Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x80343e8","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:46.658Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:46.659Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cd958","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cd958","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 06 00 00 00"}],"time":"2026-04-25T21:52:46.762Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x95d9584","0x95d9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 06 00 00 00"}],"time":"2026-04-25T21:52:46.763Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:46.763Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:46.763Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x7fe7a6c","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x7fe7a6c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fe7a6c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:46.813Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:46.814Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x8034448","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:47.173Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:47.173Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cdd00","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cdd00","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 07 00 00 00"}],"time":"2026-04-25T21:52:47.225Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x94f77f4","0x94f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 09 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 07 00 00 00"}],"time":"2026-04-25T21:52:47.227Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:47.228Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:47.228Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x7fe585c","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x7fe585c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fe585c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 09 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:47.252Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:47.254Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x8034088","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:47.688Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:47.689Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cda30","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cda30","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 08 00 00 00"}],"time":"2026-04-25T21:52:47.740Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x95d99dc","0x95d99cc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 0a 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 08 00 00 00"}],"time":"2026-04-25T21:52:47.741Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:47.750Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:47.751Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x7fe0334","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x7fe0334","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7fe0334","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 0a 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:47.766Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:47.768Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x80343e8","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:48.210Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:48.211Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cdfd0","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cdfd0","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 09 00 00 00"}],"time":"2026-04-25T21:52:48.314Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x95d9584","0x95d9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 0b 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 09 00 00 00"}],"time":"2026-04-25T21:52:48.315Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:48.315Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:48.316Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x802157c","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x802157c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x802157c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 0b 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:48.357Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:48.359Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xefeb88","args":["0x6248ff0","0x1","0x1","0x200b","0x0","0x8034388","0x0","0x0","0x588295aa","0x74794704"],"time":"2026-04-25T21:52:48.727Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:52:48.728Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x94fc738","0x1","0x1","0x2","0x2","0x0","0x30","0x95cd880","0xefe878","0x35346c41"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":48,"ptr":"0x95cd880","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 0a 00 00 00"}],"time":"2026-04-25T21:52:48.830Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x94fc738","args":["0x1","0x1","0x2","0x5e","0x9e9e020","0xb0c448bf","0x94f77f4","0x94f77e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":94,"ptr":"0x9e9e020","hex":"01 00 30 00 00 00 00 00 00 00 0c 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 01 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 74 f1 07 0c 0a 00 00 00"}],"time":"2026-04-25T21:52:48.830Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:52:48.831Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:52:48.831Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x94fc738","args":["0x33","0x801af4c","0x78aee68","0x76ffedd8","0x94fc744","0x33","0x801af4c","0x206","0x3","0x7af6d84"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x801af4c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 0c 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7af6d84","hex":"a0 90 14"}],"time":"2026-04-25T21:52:48.870Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:52:48.872Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/097-frida-write-bool-array-pattern/harness.log b/captures/097-frida-write-bool-array-pattern/harness.log new file mode 100644 index 0000000..32cca0f --- /dev/null +++ b/captures/097-frida-write-bool-array-pattern/harness.log @@ -0,0 +1,34 @@ +2026-04-25T21:52:35.9044812+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-097-frida-write-bool-array-pattern","Tags":["TestChildObject.TestBoolArray[]"],"ItemContext":"","WriteType":"bool[]","WriteValue":"","WriteValues":["true","false","false","true","true","false","true","false","false","true"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:52:42.6640272+00:00 mx.register.begin {"ClientName":"MxFridaTrace-097-frida-write-bool-array-pattern"} +2026-04-25T21:52:43.0328551+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:52:43.0338579+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBoolArray[]"} +2026-04-25T21:52:43.0398435+00:00 mx.additem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:52:43.0408558+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:52:43.0428015+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:52:44.0831109+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["True"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:44.0871114+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:52:44.6015109+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":1,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["False"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:44.6024530+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":1} +2026-04-25T21:52:45.1145502+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":2,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["False"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:45.1165514+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":2} +2026-04-25T21:52:45.6297943+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":3,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["True"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:45.6307805+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":3} +2026-04-25T21:52:46.1437979+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":4,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["True"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:46.1448696+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":4} +2026-04-25T21:52:46.6583150+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":5,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["False"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:46.6593169+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":5} +2026-04-25T21:52:47.1720533+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":6,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["True"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:47.1730031+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":6} +2026-04-25T21:52:47.6884941+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":7,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["False"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:47.6894918+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":7} +2026-04-25T21:52:48.2104980+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":8,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["False"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:48.2114981+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":8} +2026-04-25T21:52:48.7270599+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":9,"Value":{"Type":"System.Boolean[]","Length":1,"Values":["True"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:52:48.7280845+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":9} +2026-04-25T21:52:53.7414338+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:52:53.7414338+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:52:53.7414338+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:52:53.7414338+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:52:53.7424277+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:52:59.0105387+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:52:59.0155770+00:00 harness.stop {} diff --git a/captures/098-frida-write-bool-array-pattern-10/frida-command.txt b/captures/098-frida-write-bool-array-pattern-10/frida-command.txt new file mode 100644 index 0000000..3047ab6 --- /dev/null +++ b/captures/098-frida-write-bool-array-pattern-10/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;false;true;true;false;true;false;false;true --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\098-frida-write-bool-array-pattern-10\harness.log --client=MxFridaTrace-098-frida-write-bool-array-pattern-10 diff --git a/captures/098-frida-write-bool-array-pattern-10/frida-events.tsv b/captures/098-frida-write-bool-array-pattern-10/frida-events.tsv new file mode 100644 index 0000000..309205a --- /dev/null +++ b/captures/098-frida-write-bool-array-pattern-10/frida-events.tsv @@ -0,0 +1,80 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:53:40.205Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:53:40.206Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:53:40.206Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:53:40.207Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:53:40.207Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:53:40.208Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:53:40.208Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:53:40.209Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:53:40.209Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:53:47.152Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:53:47.152Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:53:47.153Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:53:47.153Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:53:47.154Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:53:47.154Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:53:47.155Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:53:47.250Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:53:47.250Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x5be904 [] +2026-04-25T21:53:47.251Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:53:47.251Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:53:47.252Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:53:47.252Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:53:47.253Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:53:47.253Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x5be904 [] +2026-04-25T21:53:47.348Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:53:47.349Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5bee78 [] +2026-04-25T21:53:47.350Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:53:47.351Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5bee08 [] +2026-04-25T21:53:47.351Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5bee08 [] +2026-04-25T21:53:47.352Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x5bee08 [] +2026-04-25T21:53:47.354Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:53:47.354Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:53:47.356Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x5befd4 "[""0x5ab8ff0"",""0x1"",""0x1"",""0x9ad81a3c"",""0x74794704""]" +2026-04-25T21:53:47.357Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:53:47.357Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x5bee54 [] +2026-04-25T21:53:47.358Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:53:47.358Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x5bdae8 [] +2026-04-25T21:53:47.359Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T21:53:47.486Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e8c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8e90648"",""0x5bec98"",""0xb5203fc8""]" 0 1 0x2 +2026-04-25T21:53:47.486Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e8c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8e90648"",""0x5bec98"",""0xb5203fc8""]" 1 314 0x8e90648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e8 08 1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e9 08 20 01 00 02 00 00 00 +2026-04-25T21:53:47.489Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e8c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9827020"",""0x4c73fa21"",""0x8e90214"",""0x8e90204"",""0x641add04"",""0x0""]" 0 360 0x9827020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e8 08 1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e9 08 20 01 00 02 00 00 00 +2026-04-25T21:53:47.490Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:53:47.490Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:53:47.491Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e8c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8f5cb00"",""0x5bec98"",""0xb5203fc8""]" 0 2 0x2 +2026-04-25T21:53:47.491Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e8c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8f5cb00"",""0x5bec98"",""0xb5203fc8""]" 1 39 0x8f5cb00 1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00 +2026-04-25T21:53:47.492Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e8c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9827020"",""0x4c73fa21"",""0x8f69584"",""0x8f69574"",""0x641add04"",""0x0""]" 0 85 0x9827020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00 +2026-04-25T21:53:47.493Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:53:47.493Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:53:47.519Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x5c"",""0x796dc44"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x5c"",""0x796dc44"",""0x206"",""0x3"",""0x7479e54""]" 0 92 0x796dc44 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 42 f8 f4 e1 cc a9 71 4e 80 eb c8 42 d0 25 70 5d 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 +2026-04-25T21:53:47.519Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x5c"",""0x796dc44"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x5c"",""0x796dc44"",""0x206"",""0x3"",""0x7479e54""]" 1 518 0x3 +2026-04-25T21:53:47.519Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x5c"",""0x796dc44"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x5c"",""0x796dc44"",""0x206"",""0x3"",""0x7479e54""]" 2 3 0x7479e54 e0 e9 ab +2026-04-25T21:53:47.521Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:53:47.524Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x74"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x74"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 0 116 0x796a92c 74 00 00 00 01 00 46 00 00 00 00 00 00 00 c4 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 42 f8 f4 e1 cc a9 71 4e 80 eb c8 42 d0 25 70 5d 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 03 00 00 00 03 00 00 00 c0 00 40 ea 7f db fd d4 dc 01 41 00 00 00 00 01 00 02 00 +2026-04-25T21:53:47.524Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x74"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x74"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 1 518 0x3 +2026-04-25T21:53:47.524Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x74"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x74"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 2 3 0x7479e54 e0 e9 ab +2026-04-25T21:53:47.525Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:53:47.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x2c2"",""0x796871c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x2c2"",""0x796871c"",""0x206"",""0x3"",""0x7479e54""]" 0 706 0x796871c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 87 bc f2 64 9a 42 ae 4b 90 53 7a 38 32 a3 fb 11 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:53:47.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x2c2"",""0x796871c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x2c2"",""0x796871c"",""0x206"",""0x3"",""0x7479e54""]" 1 518 0x3 +2026-04-25T21:53:47.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x2c2"",""0x796871c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x2c2"",""0x796871c"",""0x206"",""0x3"",""0x7479e54""]" 2 3 0x7479e54 e0 e9 ab +2026-04-25T21:53:47.530Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:53:47.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x97"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x97"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 0 151 0x796a92c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 6b 52 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 87 bc f2 64 9a 42 ae 4b 90 53 7a 38 32 a3 fb 11 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:53:47.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x97"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x97"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 1 518 0x3 +2026-04-25T21:53:47.533Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x97"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x97"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 2 3 0x7479e54 e0 e9 ab +2026-04-25T21:53:47.534Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:53:48.407Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x5befa8 "[""0x5ab8ff0"",""0x1"",""0x1"",""0x200b"",""0x0"",""0x7999290"",""0x0"",""0x0"",""0x9ad81a3c"",""0x74794704""]" +2026-04-25T21:53:48.408Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T21:53:48.460Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e8c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x8f6a0b0"",""0x5bec98"",""0xb5203fc8""]" 0 2 0x2 +2026-04-25T21:53:48.460Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8e8c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x42"",""0x8f6a0b0"",""0x5bec98"",""0xb5203fc8""]" 1 66 0x8f6a0b0 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 ac ec 08 0c 01 00 00 00 +2026-04-25T21:53:48.461Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8e8c738 "[""0x1"",""0x1"",""0x2"",""0x70"",""0x9827020"",""0x4c73fa21"",""0x8e877f4"",""0x8e877e4"",""0x641add04"",""0x0""]" 0 112 0x9827020 01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 ac ec 08 0c 01 00 00 00 +2026-04-25T21:53:48.461Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:53:48.462Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:53:48.514Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x33"",""0x796871c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x33"",""0x796871c"",""0x206"",""0x3"",""0x7479e54""]" 0 51 0x796871c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T21:53:48.514Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x33"",""0x796871c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x33"",""0x796871c"",""0x206"",""0x3"",""0x7479e54""]" 1 518 0x3 +2026-04-25T21:53:48.514Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x33"",""0x796871c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x33"",""0x796871c"",""0x206"",""0x3"",""0x7479e54""]" 2 3 0x7479e54 e0 e9 ab +2026-04-25T21:53:48.516Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:53:48.518Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x72"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x72"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 0 114 0x796a92c 72 00 00 00 01 00 44 00 00 00 00 00 00 00 c5 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 42 f8 f4 e1 cc a9 71 4e 80 eb c8 42 d0 25 70 5d 03 00 00 00 c0 00 00 de 0c ff fd d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff +2026-04-25T21:53:48.518Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x72"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x72"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 1 518 0x3 +2026-04-25T21:53:48.518Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8e8c738 "[""0x72"",""0x796a92c"",""0x701ee20"",""0x76ffedd8"",""0x8e8c744"",""0x72"",""0x796a92c"",""0x206"",""0x3"",""0x7479e54""]" 2 3 0x7479e54 e0 e9 ab +2026-04-25T21:53:48.520Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/098-frida-write-bool-array-pattern-10/frida-exit.txt b/captures/098-frida-write-bool-array-pattern-10/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/098-frida-write-bool-array-pattern-10/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/098-frida-write-bool-array-pattern-10/frida.stderr.txt b/captures/098-frida-write-bool-array-pattern-10/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/098-frida-write-bool-array-pattern-10/frida.stdout.jsonl b/captures/098-frida-write-bool-array-pattern-10/frida.stdout.jsonl new file mode 100644 index 0000000..bf23af1 --- /dev/null +++ b/captures/098-frida-write-bool-array-pattern-10/frida.stdout.jsonl @@ -0,0 +1,80 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;false;true;true;false;true;false;false;true --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\098-frida-write-bool-array-pattern-10\harness.log --client=MxFridaTrace-098-frida-write-bool-array-pattern-10`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestBoolArray[] --type=bool[] --value=true;false;false;true;true;false;true;false;false;true --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\098-frida-write-bool-array-pattern-10\harness.log --client=MxFridaTrace-098-frida-write-bool-array-pattern-10`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:53:40.205Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:53:40.206Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:53:40.206Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:53:40.207Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:53:40.207Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:53:40.208Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:53:40.208Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:53:40.209Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:53:40.209Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:53:47.152Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:53:47.152Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:53:47.153Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:53:47.153Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:53:47.154Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:53:47.154Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:53:47.155Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e87010","outPtr":"0x5be904","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:53:47.250Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x5be904","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x5be904","time":"2026-04-25T21:53:47.250Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e87010","outPtr":"0x5be904","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:53:47.251Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:53:47.251Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:53:47.252Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:53:47.252Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:53:47.253Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x5be904","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x5be904","time":"2026-04-25T21:53:47.253Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:53:47.348Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8f312e8","outPtr":"0x5bee78","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x5bee78","time":"2026-04-25T21:53:47.349Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e90588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestBoolArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f5cc20","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 28 ca f5 08 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 20 cc f5 08 dc 04 a9 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 e8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 94 22 ab 00 00 00 00 00"},"time":"2026-04-25T21:53:47.350Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e905d8","outPtr":"0x5bee08","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x5bee08","time":"2026-04-25T21:53:47.351Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e905d8","outPtr":"0x5bee08","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x5bee08","time":"2026-04-25T21:53:47.351Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e905d8","outPtr":"0x5bee08","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x5bee08","time":"2026-04-25T21:53:47.352Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e90588","referenceString":{"length":31,"capacity":31,"value":"TestChildObject.TestBoolArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8f5cc20","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 28 ca f5 08 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 20 cc f5 08 dc 04 a9 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 e8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 94 22 ab 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:53:47.354Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:53:47.354Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x5befd4","args":["0x5ab8ff0","0x1","0x1","0x9ad81a3c","0x74794704"],"time":"2026-04-25T21:53:47.356Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e87010","outPtr":"0x5bee54","inWords":[65537,327682,186166,655520,4294937082,0],"time":"2026-04-25T21:53:47.357Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x5bee54","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x5bee54","time":"2026-04-25T21:53:47.357Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8e87010","outPtr":"0x5bdae8","inWords":[65537,327682,186166,655520,4294937082,0],"time":"2026-04-25T21:53:47.358Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x5bdae8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655520,"w4":4294937082},"retval":"0x5bdae8","time":"2026-04-25T21:53:47.358Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T21:53:47.359Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8e90648","0x5bec98","0xb5203fc8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8e90648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e8 08 1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e9 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:53:47.486Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x1","0x168","0x9827020","0x4c73fa21","0x8e90214","0x8e90204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9827020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc e8 08 1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 e9 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:53:47.489Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:53:47.490Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:53:47.490Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8f5cb00","0x5bec98","0xb5203fc8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8f5cb00","hex":"1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T21:53:47.491Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x2","0x55","0x9827020","0x4c73fa21","0x8f69584","0x8f69574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9827020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 00 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 03 00 00 00"}],"time":"2026-04-25T21:53:47.492Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:53:47.493Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:53:47.493Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x5c","0x796dc44","0x701ee20","0x76ffedd8","0x8e8c744","0x5c","0x796dc44","0x206","0x3","0x7479e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x796dc44","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 42 f8 f4 e1 cc a9 71 4e 80 eb c8 42 d0 25 70 5d 10 88 c0 03 17 35 2c 4c 8c 8e c9 19"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7479e54","hex":"e0 e9 ab"}],"time":"2026-04-25T21:53:47.519Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:53:47.521Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x74","0x796a92c","0x701ee20","0x76ffedd8","0x8e8c744","0x74","0x796a92c","0x206","0x3","0x7479e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":116,"ptr":"0x796a92c","hex":"74 00 00 00 01 00 46 00 00 00 00 00 00 00 c4 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 42 f8 f4 e1 cc a9 71 4e 80 eb c8 42 d0 25 70 5d 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 03 00 00 00 03 00 00 00 c0 00 40 ea 7f db fd d4 dc 01 41 00 00 00 00 01 00 02 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7479e54","hex":"e0 e9 ab"}],"time":"2026-04-25T21:53:47.524Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:53:47.525Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x2c2","0x796871c","0x701ee20","0x76ffedd8","0x8e8c744","0x2c2","0x796871c","0x206","0x3","0x7479e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x796871c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 87 bc f2 64 9a 42 ae 4b 90 53 7a 38 32 a3 fb 11 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7479e54","hex":"e0 e9 ab"}],"time":"2026-04-25T21:53:47.529Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:53:47.530Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x97","0x796a92c","0x701ee20","0x76ffedd8","0x8e8c744","0x97","0x796a92c","0x206","0x3","0x7479e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x796a92c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 6b 52 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 87 bc f2 64 9a 42 ae 4b 90 53 7a 38 32 a3 fb 11 10 88 c0 03 17 35 2c 4c 8c 8e c9 19 02 9f b5 40 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7479e54","hex":"e0 e9 ab"}],"time":"2026-04-25T21:53:47.533Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:53:47.534Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x5befa8","args":["0x5ab8ff0","0x1","0x1","0x200b","0x0","0x7999290","0x0","0x0","0x9ad81a3c","0x74794704"],"time":"2026-04-25T21:53:48.407Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T21:53:48.408Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8e8c738","0x1","0x1","0x2","0x2","0x0","0x42","0x8f6a0b0","0x5bec98","0xb5203fc8"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":66,"ptr":"0x8f6a0b0","hex":"37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 ac ec 08 0c 01 00 00 00"}],"time":"2026-04-25T21:53:48.460Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8e8c738","args":["0x1","0x1","0x2","0x70","0x9827020","0x4c73fa21","0x8e877f4","0x8e877e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":112,"ptr":"0x9827020","hex":"01 00 42 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 ac ec 08 0c 01 00 00 00"}],"time":"2026-04-25T21:53:48.461Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:53:48.461Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:53:48.462Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x33","0x796871c","0x701ee20","0x76ffedd8","0x8e8c744","0x33","0x796871c","0x206","0x3","0x7479e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x796871c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7479e54","hex":"e0 e9 ab"}],"time":"2026-04-25T21:53:48.514Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:53:48.516Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8e8c738","args":["0x72","0x796a92c","0x701ee20","0x76ffedd8","0x8e8c744","0x72","0x796a92c","0x206","0x3","0x7479e54"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":114,"ptr":"0x796a92c","hex":"72 00 00 00 01 00 44 00 00 00 00 00 00 00 c5 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 42 f8 f4 e1 cc a9 71 4e 80 eb c8 42 d0 25 70 5d 03 00 00 00 c0 00 00 de 0c ff fd d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7479e54","hex":"e0 e9 ab"}],"time":"2026-04-25T21:53:48.518Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:53:48.520Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/098-frida-write-bool-array-pattern-10/harness.log b/captures/098-frida-write-bool-array-pattern-10/harness.log new file mode 100644 index 0000000..72d7873 --- /dev/null +++ b/captures/098-frida-write-bool-array-pattern-10/harness.log @@ -0,0 +1,16 @@ +2026-04-25T21:53:40.1169347+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-098-frida-write-bool-array-pattern-10","Tags":["TestChildObject.TestBoolArray[]"],"ItemContext":"","WriteType":"bool[]","WriteValue":"true;false;false;true;true;false;true;false;false;true","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:53:46.9922310+00:00 mx.register.begin {"ClientName":"MxFridaTrace-098-frida-write-bool-array-pattern-10"} +2026-04-25T21:53:47.3456145+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:53:47.3466121+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBoolArray[]"} +2026-04-25T21:53:47.3545694+00:00 mx.additem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:53:47.3555504+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:53:47.3595441+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:53:48.4044051+00:00 mx.write.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean[]","Length":10,"Values":["True","False","False","True","True","False","True","False","False","True"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:53:48.4084070+00:00 mx.write.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:53:53.4407387+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:53:53.4407387+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:53:53.4407387+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:53:53.4407387+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBoolArray[]","ItemHandle":1} +2026-04-25T21:53:53.4417396+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:53:57.4818783+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:53:57.4878798+00:00 harness.stop {} diff --git a/captures/099-frida-plain-advise-testint/frida-command.txt b/captures/099-frida-plain-advise-testint/frida-command.txt new file mode 100644 index 0000000..01682db --- /dev/null +++ b/captures/099-frida-plain-advise-testint/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=advise --tag=TestChildObject.TestInt --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\099-frida-plain-advise-testint\harness.log --client=MxFridaTrace-099-frida-plain-advise-testint diff --git a/captures/099-frida-plain-advise-testint/frida-events.tsv b/captures/099-frida-plain-advise-testint/frida-events.tsv new file mode 100644 index 0000000..ff7429f --- /dev/null +++ b/captures/099-frida-plain-advise-testint/frida-events.tsv @@ -0,0 +1,74 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T21:57:27.344Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T21:57:27.346Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T21:57:27.347Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T21:57:27.347Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T21:57:27.347Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T21:57:27.349Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T21:57:27.350Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T21:57:27.350Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T21:57:27.351Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T21:57:34.193Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:57:34.194Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T21:57:34.194Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T21:57:34.195Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:57:34.195Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:57:34.196Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T21:57:34.197Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T21:57:34.373Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:57:34.373Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x53e930 [] +2026-04-25T21:57:34.373Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:57:34.374Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x53e930 [] +2026-04-25T21:57:34.394Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T21:57:34.395Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T21:57:34.396Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T21:57:34.396Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T21:57:34.487Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T21:57:34.488Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x53eea8 [] +2026-04-25T21:57:34.489Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T21:57:34.489Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x53ee38 [] +2026-04-25T21:57:34.490Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x53ee38 [] +2026-04-25T21:57:34.491Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x53ee38 [] +2026-04-25T21:57:34.492Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T21:57:34.492Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T21:57:34.494Z lmx.user-register-prebound.enter Lmx.dll MxConnection.UserRegisterPreboundReference 0x8cd641c [] +2026-04-25T21:57:34.494Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:57:34.495Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x53ee94 [] +2026-04-25T21:57:34.495Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T21:57:34.496Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x53db28 [] +2026-04-25T21:57:34.496Z lmx.user-register-prebound.leave Lmx.dll MxConnection.UserRegisterPreboundReference 0x0 [] +2026-04-25T21:57:34.623Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8c00648"",""0x53ecb8"",""0x9146d5fa""]" 0 1 0x2 +2026-04-25T21:57:34.623Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8c00648"",""0x53ecb8"",""0x9146d5fa""]" 1 314 0x8c00648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00 +2026-04-25T21:57:34.628Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bfc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9595020"",""0xeaf68cba"",""0x8c00214"",""0x8c00204"",""0x641add04"",""0x0""]" 0 360 0x9595020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00 +2026-04-25T21:57:34.628Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:57:34.629Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:57:34.630Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8ccd688"",""0x53ecb8"",""0x9146d5fa""]" 0 2 0x2 +2026-04-25T21:57:34.630Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8ccd688"",""0x53ecb8"",""0x9146d5fa""]" 1 39 0x8ccd688 1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:57:34.631Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bfc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9595020"",""0xeaf68cba"",""0x8cd9584"",""0x8cd9574"",""0x641add04"",""0x0""]" 0 85 0x9595020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:57:34.631Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:57:34.631Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:57:34.642Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x5c"",""0x71b6d5c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x5c"",""0x71b6d5c"",""0x206"",""0x3"",""0x71e96cc""]" 0 92 0x71b6d5c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 57 10 b2 5f 32 ac e3 46 86 2f f3 f9 11 26 21 7e 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c +2026-04-25T21:57:34.642Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x5c"",""0x71b6d5c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x5c"",""0x71b6d5c"",""0x206"",""0x3"",""0x71e96cc""]" 1 518 0x3 +2026-04-25T21:57:34.642Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x5c"",""0x71b6d5c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x5c"",""0x71b6d5c"",""0x206"",""0x3"",""0x71e96cc""]" 2 3 0x71e96cc 40 42 81 +2026-04-25T21:57:34.644Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:57:34.647Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x6c"",""0x98471c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x6c"",""0x98471c"",""0x206"",""0x3"",""0x71e96cc""]" 0 108 0x98471c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 c7 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 57 10 b2 5f 32 ac e3 46 86 2f f3 f9 11 26 21 7e 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 03 00 00 00 03 00 00 00 c0 00 90 11 9d 25 fc d4 dc 01 02 +2026-04-25T21:57:34.647Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x6c"",""0x98471c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x6c"",""0x98471c"",""0x206"",""0x3"",""0x71e96cc""]" 1 518 0x3 +2026-04-25T21:57:34.647Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x6c"",""0x98471c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x6c"",""0x98471c"",""0x206"",""0x3"",""0x71e96cc""]" 2 3 0x71e96cc 40 42 81 +2026-04-25T21:57:34.649Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:57:34.681Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2c2"",""0x98ad4c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x2c2"",""0x98ad4c"",""0x206"",""0x3"",""0x71e96cc""]" 0 706 0x98ad4c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 ae f2 dc e0 86 89 07 41 bc c9 84 64 a1 22 fb 37 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T21:57:34.681Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2c2"",""0x98ad4c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x2c2"",""0x98ad4c"",""0x206"",""0x3"",""0x71e96cc""]" 1 518 0x3 +2026-04-25T21:57:34.681Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2c2"",""0x98ad4c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x2c2"",""0x98ad4c"",""0x206"",""0x3"",""0x71e96cc""]" 2 3 0x71e96cc 40 42 81 +2026-04-25T21:57:34.683Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:57:34.685Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x97"",""0x71b6d5c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x97"",""0x71b6d5c"",""0x206"",""0x3"",""0x71e96cc""]" 0 151 0x71b6d5c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 fb 55 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 ae f2 dc e0 86 89 07 41 bc c9 84 64 a1 22 fb 37 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T21:57:34.685Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x97"",""0x71b6d5c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x97"",""0x71b6d5c"",""0x206"",""0x3"",""0x71e96cc""]" 1 518 0x3 +2026-04-25T21:57:34.685Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x97"",""0x71b6d5c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x97"",""0x71b6d5c"",""0x206"",""0x3"",""0x71e96cc""]" 2 3 0x71e96cc 40 42 81 +2026-04-25T21:57:34.687Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T21:57:39.532Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8ccd2e0"",""0x53ed14"",""0x9146d5ce""]" 0 2 0x2 +2026-04-25T21:57:39.532Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bfc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8ccd2e0"",""0x53ed14"",""0x9146d5ce""]" 1 37 0x8ccd2e0 21 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:57:39.533Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bfc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9595020"",""0xeaf68cae"",""0x53ed64"",""0x53ed54"",""0x641add04"",""0x0""]" 0 83 0x9595020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T21:57:39.534Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T21:57:39.534Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T21:57:39.539Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2e"",""0x98ad4c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x2e"",""0x98ad4c"",""0x206"",""0x3"",""0x71e96cc""]" 0 46 0x98ad4c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-25T21:57:39.539Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2e"",""0x98ad4c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x2e"",""0x98ad4c"",""0x206"",""0x3"",""0x71e96cc""]" 1 518 0x3 +2026-04-25T21:57:39.539Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bfc738 "[""0x2e"",""0x98ad4c"",""0x6e9ea60"",""0x76ffedd8"",""0x8bfc744"",""0x2e"",""0x98ad4c"",""0x206"",""0x3"",""0x71e96cc""]" 2 3 0x71e96cc 40 42 81 +2026-04-25T21:57:39.541Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/099-frida-plain-advise-testint/frida-exit.txt b/captures/099-frida-plain-advise-testint/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/099-frida-plain-advise-testint/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/099-frida-plain-advise-testint/frida.stderr.txt b/captures/099-frida-plain-advise-testint/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/099-frida-plain-advise-testint/frida.stdout.jsonl b/captures/099-frida-plain-advise-testint/frida.stdout.jsonl new file mode 100644 index 0000000..6c958e2 --- /dev/null +++ b/captures/099-frida-plain-advise-testint/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=advise --tag=TestChildObject.TestInt --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\099-frida-plain-advise-testint\harness.log --client=MxFridaTrace-099-frida-plain-advise-testint`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=advise --tag=TestChildObject.TestInt --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\099-frida-plain-advise-testint\harness.log --client=MxFridaTrace-099-frida-plain-advise-testint`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T21:57:27.344Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T21:57:27.346Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T21:57:27.347Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T21:57:27.347Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T21:57:27.347Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T21:57:27.349Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T21:57:27.350Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T21:57:27.350Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T21:57:27.351Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T21:57:34.193Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T21:57:34.194Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T21:57:34.194Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T21:57:34.195Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T21:57:34.195Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T21:57:34.196Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T21:57:34.197Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bf7010","outPtr":"0x53e930","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:57:34.373Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x53e930","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x53e930","time":"2026-04-25T21:57:34.373Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bf7010","outPtr":"0x53e930","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T21:57:34.373Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x53e930","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x53e930","time":"2026-04-25T21:57:34.374Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T21:57:34.394Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T21:57:34.395Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T21:57:34.396Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T21:57:34.396Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T21:57:34.487Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8ca2238","outPtr":"0x53eea8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x53eea8","time":"2026-04-25T21:57:34.488Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8c00588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8ccd250","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 50 7d bf 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 50 d2 cc 08 e4 d4 80 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 bf 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 cc 24 94 00 00 00 00 00"},"time":"2026-04-25T21:57:34.489Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c005d8","outPtr":"0x53ee38","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x53ee38","time":"2026-04-25T21:57:34.489Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c005d8","outPtr":"0x53ee38","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x53ee38","time":"2026-04-25T21:57:34.490Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c005d8","outPtr":"0x53ee38","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x53ee38","time":"2026-04-25T21:57:34.491Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8c00588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8ccd250","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 50 7d bf 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 50 d2 cc 08 e4 d4 80 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 bf 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 cc 24 94 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T21:57:34.492Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T21:57:34.492Z"} +{"event":"lmx.user-register-prebound.enter","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","ecx":"0x8cd641c","preboundHandle":146801228,"callback":"0x1","userData":"0x8cd641c","outPtr":"0x1","time":"2026-04-25T21:57:34.494Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bf7010","outPtr":"0x53ee94","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:57:34.494Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x53ee94","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x53ee94","time":"2026-04-25T21:57:34.495Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bf7010","outPtr":"0x53db28","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T21:57:34.495Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x53db28","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x53db28","time":"2026-04-25T21:57:34.496Z"} +{"event":"lmx.user-register-prebound.leave","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","retval":"0x0","mxReferenceHandle":null,"time":"2026-04-25T21:57:34.496Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bfc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8c00648","0x53ecb8","0x9146d5fa"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8c00648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:57:34.623Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bfc738","args":["0x1","0x1","0x1","0x168","0x9595020","0xeaf68cba","0x8c00214","0x8c00204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9595020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc bf 08 1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 c0 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T21:57:34.628Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:57:34.628Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:57:34.629Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bfc738","0x1","0x1","0x2","0x2","0x0","0x27","0x8ccd688","0x53ecb8","0x9146d5fa"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8ccd688","hex":"1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:57:34.630Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bfc738","args":["0x1","0x1","0x2","0x55","0x9595020","0xeaf68cba","0x8cd9584","0x8cd9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9595020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:57:34.631Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:57:34.631Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:57:34.631Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bfc738","args":["0x5c","0x71b6d5c","0x6e9ea60","0x76ffedd8","0x8bfc744","0x5c","0x71b6d5c","0x206","0x3","0x71e96cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x71b6d5c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 57 10 b2 5f 32 ac e3 46 86 2f f3 f9 11 26 21 7e 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71e96cc","hex":"40 42 81"}],"time":"2026-04-25T21:57:34.642Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:57:34.644Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bfc738","args":["0x6c","0x98471c","0x6e9ea60","0x76ffedd8","0x8bfc744","0x6c","0x98471c","0x206","0x3","0x71e96cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x98471c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 c7 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 57 10 b2 5f 32 ac e3 46 86 2f f3 f9 11 26 21 7e 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 03 00 00 00 03 00 00 00 c0 00 90 11 9d 25 fc d4 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71e96cc","hex":"40 42 81"}],"time":"2026-04-25T21:57:34.647Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:57:34.649Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bfc738","args":["0x2c2","0x98ad4c","0x6e9ea60","0x76ffedd8","0x8bfc744","0x2c2","0x98ad4c","0x206","0x3","0x71e96cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x98ad4c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 ae f2 dc e0 86 89 07 41 bc c9 84 64 a1 22 fb 37 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71e96cc","hex":"40 42 81"}],"time":"2026-04-25T21:57:34.681Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:57:34.683Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bfc738","args":["0x97","0x71b6d5c","0x6e9ea60","0x76ffedd8","0x8bfc744","0x97","0x71b6d5c","0x206","0x3","0x71e96cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x71b6d5c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 fb 55 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 ae f2 dc e0 86 89 07 41 bc c9 84 64 a1 22 fb 37 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71e96cc","hex":"40 42 81"}],"time":"2026-04-25T21:57:34.685Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:57:34.687Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bfc738","0x1","0x1","0x2","0x2","0x0","0x25","0x8ccd2e0","0x53ed14","0x9146d5ce"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8ccd2e0","hex":"21 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:57:39.532Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bfc738","args":["0x1","0x1","0x2","0x53","0x9595020","0xeaf68cae","0x53ed64","0x53ed54","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9595020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 0b 56 12 c7 97 7b ab 4f bc 69 3e 4c 39 43 2d a9 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T21:57:39.533Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T21:57:39.534Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T21:57:39.534Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bfc738","args":["0x2e","0x98ad4c","0x6e9ea60","0x76ffedd8","0x8bfc744","0x2e","0x98ad4c","0x206","0x3","0x71e96cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x98ad4c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71e96cc","hex":"40 42 81"}],"time":"2026-04-25T21:57:39.539Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T21:57:39.541Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/099-frida-plain-advise-testint/harness.log b/captures/099-frida-plain-advise-testint/harness.log new file mode 100644 index 0000000..10edb94 --- /dev/null +++ b/captures/099-frida-plain-advise-testint/harness.log @@ -0,0 +1,14 @@ +2026-04-25T21:57:27.2550543+00:00 harness.start {"Scenario":"advise","ClientName":"MxFridaTrace-099-frida-plain-advise-testint","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:57:34.0852980+00:00 mx.register.begin {"ClientName":"MxFridaTrace-099-frida-plain-advise-testint"} +2026-04-25T21:57:34.4842765+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:57:34.4853444+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:57:34.4923222+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:57:34.4932916+00:00 mx.advise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:57:34.4972970+00:00 mx.advise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:57:39.5175785+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:57:39.5175785+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:57:39.5175785+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:57:39.5175785+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:57:39.5175785+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:57:43.4467499+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:57:43.4527175+00:00 harness.stop {} diff --git a/captures/100-frida-subscribe-string-array/frida-command.txt b/captures/100-frida-subscribe-string-array/frida-command.txt new file mode 100644 index 0000000..baeb2d1 --- /dev/null +++ b/captures/100-frida-subscribe-string-array/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=TestChildObject.TestStringArray[] --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\100-frida-subscribe-string-array\harness.log --client=MxFridaTrace-100-frida-subscribe-string-array diff --git a/captures/100-frida-subscribe-string-array/frida-events.tsv b/captures/100-frida-subscribe-string-array/frida-events.tsv new file mode 100644 index 0000000..24ff2d3 --- /dev/null +++ b/captures/100-frida-subscribe-string-array/frida-events.tsv @@ -0,0 +1,74 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T22:03:40.586Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T22:03:40.587Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T22:03:40.587Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T22:03:40.588Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T22:03:40.588Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T22:03:40.588Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T22:03:40.589Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T22:03:40.589Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T22:03:40.590Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T22:03:47.332Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:03:47.333Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T22:03:47.333Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T22:03:47.334Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:03:47.334Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:03:47.335Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T22:03:47.335Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T22:03:47.415Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:03:47.415Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x73e23c [] +2026-04-25T22:03:47.416Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:03:47.416Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x73e23c [] +2026-04-25T22:03:47.432Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T22:03:47.433Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T22:03:47.433Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T22:03:47.434Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T22:03:47.513Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T22:03:47.514Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x73e7a4 [] +2026-04-25T22:03:47.515Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:03:47.515Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x73e734 [] +2026-04-25T22:03:47.516Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x73e734 [] +2026-04-25T22:03:47.516Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x73e734 [] +2026-04-25T22:03:47.517Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T22:03:47.517Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:03:47.519Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x73e904 "[""0x5ab8ff0"",""0x1"",""0x1"",""0x20e50f2"",""0x74794704""]" +2026-04-25T22:03:47.520Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:03:47.520Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x73e784 [] +2026-04-25T22:03:47.520Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:03:47.521Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x73d418 [] +2026-04-25T22:03:47.521Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T22:03:47.645Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8ddc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8de0648"",""0x73e5c8"",""0x4c037190""]" 0 1 0x2 +2026-04-25T22:03:47.645Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8ddc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8de0648"",""0x73e5c8"",""0x4c037190""]" 1 314 0x8de0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc dd 08 1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 de 08 20 01 00 02 00 00 00 +2026-04-25T22:03:47.647Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8ddc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x98ba020"",""0x45c43a3a"",""0x8de0214"",""0x8de0204"",""0x641add04"",""0x0""]" 0 360 0x98ba020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc dd 08 1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 de 08 20 01 00 02 00 00 00 +2026-04-25T22:03:47.648Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:03:47.649Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:03:47.650Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8ddc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8ead010"",""0x73e5c8"",""0x4c037190""]" 0 2 0x2 +2026-04-25T22:03:47.650Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8ddc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8ead010"",""0x73e5c8"",""0x4c037190""]" 1 39 0x8ead010 1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T22:03:47.651Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8ddc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x98ba020"",""0x45c43a3a"",""0x8eb9634"",""0x8eb9624"",""0x641add04"",""0x0""]" 0 85 0x98ba020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T22:03:47.651Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:03:47.652Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:03:47.690Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x2c2"",""0x78c0b2c"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x2c2"",""0x78c0b2c"",""0x206"",""0x3"",""0x73ba46c""]" 0 706 0x78c0b2c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 26 f6 b9 e2 1a 0e 09 49 bb 3c 61 1f a6 28 47 e0 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T22:03:47.690Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x2c2"",""0x78c0b2c"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x2c2"",""0x78c0b2c"",""0x206"",""0x3"",""0x73ba46c""]" 1 518 0x3 +2026-04-25T22:03:47.690Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x2c2"",""0x78c0b2c"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x2c2"",""0x78c0b2c"",""0x206"",""0x3"",""0x73ba46c""]" 2 3 0x73ba46c 80 d8 9a +2026-04-25T22:03:47.693Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:03:47.695Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x97"",""0x78b2dc4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x97"",""0x78b2dc4"",""0x206"",""0x3"",""0x73ba46c""]" 0 151 0x78b2dc4 97 00 00 00 01 00 69 00 00 00 00 00 00 00 d1 5b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 26 f6 b9 e2 1a 0e 09 49 bb 3c 61 1f a6 28 47 e0 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T22:03:47.695Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x97"",""0x78b2dc4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x97"",""0x78b2dc4"",""0x206"",""0x3"",""0x73ba46c""]" 1 518 0x3 +2026-04-25T22:03:47.695Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x97"",""0x78b2dc4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x97"",""0x78b2dc4"",""0x206"",""0x3"",""0x73ba46c""]" 2 3 0x73ba46c 80 d8 9a +2026-04-25T22:03:47.697Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:03:47.706Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x5c"",""0x78af7f4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x5c"",""0x78af7f4"",""0x206"",""0x3"",""0x73ba46c""]" 0 92 0x78af7f4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a4 55 15 fa 80 c2 53 45 bd 42 1e 69 ae a2 38 56 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 +2026-04-25T22:03:47.706Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x5c"",""0x78af7f4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x5c"",""0x78af7f4"",""0x206"",""0x3"",""0x73ba46c""]" 1 518 0x3 +2026-04-25T22:03:47.706Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x5c"",""0x78af7f4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x5c"",""0x78af7f4"",""0x206"",""0x3"",""0x73ba46c""]" 2 3 0x73ba46c 80 d8 9a +2026-04-25T22:03:47.707Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:03:47.710Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x146"",""0x78b71e4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x146"",""0x78b71e4"",""0x206"",""0x3"",""0x73ba46c""]" 0 326 0x78b71e4 46 01 00 00 01 00 18 01 00 00 00 00 00 00 c8 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a4 55 15 fa 80 c2 53 45 bd 42 1e 69 ae a2 38 56 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 03 00 00 00 03 00 00 00 c0 00 80 4c b4 bf ac d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 +2026-04-25T22:03:47.710Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x146"",""0x78b71e4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x146"",""0x78b71e4"",""0x206"",""0x3"",""0x73ba46c""]" 1 518 0x3 +2026-04-25T22:03:47.710Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x146"",""0x78b71e4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x146"",""0x78b71e4"",""0x206"",""0x3"",""0x73ba46c""]" 2 3 0x73ba46c 80 d8 9a +2026-04-25T22:03:47.712Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:03:52.561Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8ddc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8ead370"",""0x73e624"",""0x4c037184""]" 0 2 0x2 +2026-04-25T22:03:52.561Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8ddc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8ead370"",""0x73e624"",""0x4c037184""]" 1 37 0x8ead370 21 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T22:03:52.562Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8ddc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x98ba020"",""0x45c43a0e"",""0x73e674"",""0x73e664"",""0x641add04"",""0x0""]" 0 83 0x98ba020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T22:03:52.563Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:03:52.563Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:03:52.565Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x2e"",""0x78af7f4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x2e"",""0x78af7f4"",""0x206"",""0x3"",""0x73ba46c""]" 0 46 0x78af7f4 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-25T22:03:52.565Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x2e"",""0x78af7f4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x2e"",""0x78af7f4"",""0x206"",""0x3"",""0x73ba46c""]" 1 518 0x3 +2026-04-25T22:03:52.565Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8ddc738 "[""0x2e"",""0x78af7f4"",""0x716e9a8"",""0x76ffedd8"",""0x8ddc744"",""0x2e"",""0x78af7f4"",""0x206"",""0x3"",""0x73ba46c""]" 2 3 0x73ba46c 80 d8 9a +2026-04-25T22:03:52.567Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/100-frida-subscribe-string-array/frida-exit.txt b/captures/100-frida-subscribe-string-array/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/100-frida-subscribe-string-array/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/100-frida-subscribe-string-array/frida.stderr.txt b/captures/100-frida-subscribe-string-array/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/100-frida-subscribe-string-array/frida.stdout.jsonl b/captures/100-frida-subscribe-string-array/frida.stdout.jsonl new file mode 100644 index 0000000..9d3a4ed --- /dev/null +++ b/captures/100-frida-subscribe-string-array/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.TestStringArray[] --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\100-frida-subscribe-string-array\harness.log --client=MxFridaTrace-100-frida-subscribe-string-array`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.TestStringArray[] --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\100-frida-subscribe-string-array\harness.log --client=MxFridaTrace-100-frida-subscribe-string-array`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T22:03:40.586Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T22:03:40.587Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T22:03:40.587Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T22:03:40.588Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T22:03:40.588Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T22:03:40.588Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T22:03:40.589Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T22:03:40.589Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T22:03:40.590Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T22:03:47.332Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T22:03:47.333Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T22:03:47.333Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T22:03:47.334Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T22:03:47.334Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T22:03:47.335Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T22:03:47.335Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8dd7010","outPtr":"0x73e23c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:03:47.415Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x73e23c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x73e23c","time":"2026-04-25T22:03:47.415Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8dd7010","outPtr":"0x73e23c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:03:47.416Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x73e23c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x73e23c","time":"2026-04-25T22:03:47.416Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T22:03:47.432Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T22:03:47.433Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T22:03:47.433Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T22:03:47.434Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T22:03:47.513Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e82210","outPtr":"0x73e7a4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x73e7a4","time":"2026-04-25T22:03:47.514Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8de0588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestStringArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8ead448","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 eb 08 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 48 d4 ea 08 c4 67 29 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 dd 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c 4c 9a 00 00 00 00 00"},"time":"2026-04-25T22:03:47.515Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8de05d8","outPtr":"0x73e734","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x73e734","time":"2026-04-25T22:03:47.515Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8de05d8","outPtr":"0x73e734","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x73e734","time":"2026-04-25T22:03:47.516Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8de05d8","outPtr":"0x73e734","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x73e734","time":"2026-04-25T22:03:47.516Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8de0588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestStringArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8ead448","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 eb 08 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 48 d4 ea 08 c4 67 29 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 dd 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c 4c 9a 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T22:03:47.517Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T22:03:47.517Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x73e904","args":["0x5ab8ff0","0x1","0x1","0x20e50f2","0x74794704"],"time":"2026-04-25T22:03:47.519Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8dd7010","outPtr":"0x73e784","inWords":[65537,327682,186166,655525,4294921053,0],"time":"2026-04-25T22:03:47.520Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x73e784","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x73e784","time":"2026-04-25T22:03:47.520Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8dd7010","outPtr":"0x73d418","inWords":[65537,327682,186166,655525,4294921053,0],"time":"2026-04-25T22:03:47.520Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x73d418","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0x73d418","time":"2026-04-25T22:03:47.521Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T22:03:47.521Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8ddc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8de0648","0x73e5c8","0x4c037190"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8de0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc dd 08 1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 de 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:03:47.645Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8ddc738","args":["0x1","0x1","0x1","0x168","0x98ba020","0x45c43a3a","0x8de0214","0x8de0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x98ba020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc dd 08 1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 de 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:03:47.647Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:03:47.648Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:03:47.649Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8ddc738","0x1","0x1","0x2","0x2","0x0","0x27","0x8ead010","0x73e5c8","0x4c037190"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8ead010","hex":"1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T22:03:47.650Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8ddc738","args":["0x1","0x1","0x2","0x55","0x98ba020","0x45c43a3a","0x8eb9634","0x8eb9624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x98ba020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T22:03:47.651Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:03:47.651Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:03:47.652Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8ddc738","args":["0x2c2","0x78c0b2c","0x716e9a8","0x76ffedd8","0x8ddc744","0x2c2","0x78c0b2c","0x206","0x3","0x73ba46c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x78c0b2c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 26 f6 b9 e2 1a 0e 09 49 bb 3c 61 1f a6 28 47 e0 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73ba46c","hex":"80 d8 9a"}],"time":"2026-04-25T22:03:47.690Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:03:47.693Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8ddc738","args":["0x97","0x78b2dc4","0x716e9a8","0x76ffedd8","0x8ddc744","0x97","0x78b2dc4","0x206","0x3","0x73ba46c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x78b2dc4","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 d1 5b 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 26 f6 b9 e2 1a 0e 09 49 bb 3c 61 1f a6 28 47 e0 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73ba46c","hex":"80 d8 9a"}],"time":"2026-04-25T22:03:47.695Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:03:47.697Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8ddc738","args":["0x5c","0x78af7f4","0x716e9a8","0x76ffedd8","0x8ddc744","0x5c","0x78af7f4","0x206","0x3","0x73ba46c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x78af7f4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 a4 55 15 fa 80 c2 53 45 bd 42 1e 69 ae a2 38 56 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73ba46c","hex":"80 d8 9a"}],"time":"2026-04-25T22:03:47.706Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:03:47.707Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8ddc738","args":["0x146","0x78b71e4","0x716e9a8","0x76ffedd8","0x8ddc744","0x146","0x78b71e4","0x206","0x3","0x73ba46c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":326,"ptr":"0x78b71e4","hex":"46 01 00 00 01 00 18 01 00 00 00 00 00 00 c8 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 a4 55 15 fa 80 c2 53 45 bd 42 1e 69 ae a2 38 56 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 03 00 00 00 03 00 00 00 c0 00 80 4c b4 bf ac d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73ba46c","hex":"80 d8 9a"}],"time":"2026-04-25T22:03:47.710Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:03:47.712Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8ddc738","0x1","0x1","0x2","0x2","0x0","0x25","0x8ead370","0x73e624","0x4c037184"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8ead370","hex":"21 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T22:03:52.561Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8ddc738","args":["0x1","0x1","0x2","0x53","0x98ba020","0x45c43a0e","0x73e674","0x73e664","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x98ba020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 d4 55 d3 6d 28 ef 4f 4a af d8 ef 47 f1 dd 88 c0 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T22:03:52.562Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:03:52.563Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:03:52.563Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8ddc738","args":["0x2e","0x78af7f4","0x716e9a8","0x76ffedd8","0x8ddc744","0x2e","0x78af7f4","0x206","0x3","0x73ba46c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x78af7f4","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73ba46c","hex":"80 d8 9a"}],"time":"2026-04-25T22:03:52.565Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:03:52.567Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/100-frida-subscribe-string-array/harness.log b/captures/100-frida-subscribe-string-array/harness.log new file mode 100644 index 0000000..bf9781c --- /dev/null +++ b/captures/100-frida-subscribe-string-array/harness.log @@ -0,0 +1,14 @@ +2026-04-25T22:03:40.4895382+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-100-frida-subscribe-string-array","Tags":["TestChildObject.TestStringArray[]"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:03:47.1498146+00:00 mx.register.begin {"ClientName":"MxFridaTrace-100-frida-subscribe-string-array"} +2026-04-25T22:03:47.5113161+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:03:47.5113161+00:00 mx.additem.begin {"Tag":"TestChildObject.TestStringArray[]"} +2026-04-25T22:03:47.5182526+00:00 mx.additem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:03:47.5182526+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:03:47.5212527+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:03:52.5487522+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:03:52.5487522+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:03:52.5487522+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:03:52.5487522+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:03:52.5487522+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:03:56.3118213+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:03:56.3170890+00:00 harness.stop {} diff --git a/captures/101-frida-write-string-array-update/frida-command.txt b/captures/101-frida-write-string-array-update/frida-command.txt new file mode 100644 index 0000000..fd63661 --- /dev/null +++ b/captures/101-frida-write-string-array-update/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write --tag=TestChildObject.TestStringArray[] --type=string[] --value=KA1;KB2;KC3;KD4;KE5;KF6;KG7;KH8;KI9;KJ10 --write-delay-ms=1000 --duration=6 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\101-frida-write-string-array-update\harness.log --client=MxFridaTrace-101-frida-write-string-array-update diff --git a/captures/101-frida-write-string-array-update/frida-events.tsv b/captures/101-frida-write-string-array-update/frida-events.tsv new file mode 100644 index 0000000..058666c --- /dev/null +++ b/captures/101-frida-write-string-array-update/frida-events.tsv @@ -0,0 +1,80 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T22:04:45.164Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T22:04:45.165Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T22:04:45.165Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T22:04:45.166Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T22:04:45.167Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T22:04:45.167Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T22:04:45.168Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T22:04:45.168Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T22:04:45.168Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T22:04:52.109Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:04:52.111Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T22:04:52.111Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T22:04:52.112Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:04:52.113Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:04:52.114Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T22:04:52.115Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T22:04:52.211Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T22:04:52.211Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T22:04:52.214Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T22:04:52.215Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T22:04:52.232Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:04:52.233Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafe998 [] +2026-04-25T22:04:52.233Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:04:52.234Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafe998 [] +2026-04-25T22:04:52.327Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T22:04:52.327Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafef04 [] +2026-04-25T22:04:52.328Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:04:52.329Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafee94 [] +2026-04-25T22:04:52.329Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafee94 [] +2026-04-25T22:04:52.330Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafee94 [] +2026-04-25T22:04:52.331Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T22:04:52.331Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:04:52.333Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xaff064 "[""0x5e08ff0"",""0x1"",""0x1"",""0x8f4c5e0"",""0x74794704""]" +2026-04-25T22:04:52.333Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:04:52.333Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafeee4 [] +2026-04-25T22:04:52.334Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:04:52.334Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafdb78 [] +2026-04-25T22:04:52.334Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T22:04:52.461Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x911c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9120648"",""0xafed28"",""0xb41e8ea7""]" 0 1 0x2 +2026-04-25T22:04:52.461Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x911c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9120648"",""0xafed28"",""0xb41e8ea7""]" 1 314 0x9120648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 11 09 1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 12 09 20 01 00 02 00 00 00 +2026-04-25T22:04:52.465Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x911c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9ab5020"",""0x7c4b9942"",""0x9120214"",""0x9120204"",""0x641add04"",""0x0""]" 0 360 0x9ab5020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 11 09 1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 12 09 20 01 00 02 00 00 00 +2026-04-25T22:04:52.465Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:04:52.466Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:04:52.468Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x911c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ece60"",""0xafed28"",""0xb41e8ea7""]" 0 2 0x2 +2026-04-25T22:04:52.468Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x911c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ece60"",""0xafed28"",""0xb41e8ea7""]" 1 39 0x91ece60 1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T22:04:52.470Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x911c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9ab5020"",""0x7c4b9942"",""0x91f9634"",""0x91f9624"",""0x641add04"",""0x0""]" 0 85 0x9ab5020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00 +2026-04-25T22:04:52.470Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:04:52.470Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:04:52.499Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x2c2"",""0x7c382f4"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x2c2"",""0x7c382f4"",""0x206"",""0x3"",""0x772ed1c""]" 0 706 0x7c382f4 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 95 8b f8 08 02 24 e3 4e 82 ea 07 2c 36 84 45 da 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T22:04:52.499Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x2c2"",""0x7c382f4"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x2c2"",""0x7c382f4"",""0x206"",""0x3"",""0x772ed1c""]" 1 518 0x3 +2026-04-25T22:04:52.499Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x2c2"",""0x7c382f4"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x2c2"",""0x7c382f4"",""0x206"",""0x3"",""0x772ed1c""]" 2 3 0x772ed1c c0 c9 72 +2026-04-25T22:04:52.501Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:04:52.505Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x97"",""0xf0fb54"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x97"",""0xf0fb54"",""0x206"",""0x3"",""0x772ed1c""]" 0 151 0xf0fb54 97 00 00 00 01 00 69 00 00 00 00 00 00 00 d5 5c 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 95 8b f8 08 02 24 e3 4e 82 ea 07 2c 36 84 45 da 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T22:04:52.505Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x97"",""0xf0fb54"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x97"",""0xf0fb54"",""0x206"",""0x3"",""0x772ed1c""]" 1 518 0x3 +2026-04-25T22:04:52.505Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x97"",""0xf0fb54"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x97"",""0xf0fb54"",""0x206"",""0x3"",""0x772ed1c""]" 2 3 0x772ed1c c0 c9 72 +2026-04-25T22:04:52.506Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:04:52.523Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x5c"",""0xf10c5c"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x5c"",""0xf10c5c"",""0x206"",""0x3"",""0x772ed1c""]" 0 92 0xf10c5c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 2c 87 3a c9 d6 4e 1a 4a a4 f7 e7 31 f3 06 cc 88 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 +2026-04-25T22:04:52.523Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x5c"",""0xf10c5c"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x5c"",""0xf10c5c"",""0x206"",""0x3"",""0x772ed1c""]" 1 518 0x3 +2026-04-25T22:04:52.523Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x5c"",""0xf10c5c"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x5c"",""0xf10c5c"",""0x206"",""0x3"",""0x772ed1c""]" 2 3 0x772ed1c c0 c9 72 +2026-04-25T22:04:52.525Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:04:52.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x146"",""0xf0fb54"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x146"",""0xf0fb54"",""0x206"",""0x3"",""0x772ed1c""]" 0 326 0xf0fb54 46 01 00 00 01 00 18 01 00 00 00 00 00 00 c9 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 2c 87 3a c9 d6 4e 1a 4a a4 f7 e7 31 f3 06 cc 88 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 03 00 00 00 03 00 00 00 c0 00 80 4c b4 bf ac d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 +2026-04-25T22:04:52.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x146"",""0xf0fb54"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x146"",""0xf0fb54"",""0x206"",""0x3"",""0x772ed1c""]" 1 518 0x3 +2026-04-25T22:04:52.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x146"",""0xf0fb54"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x146"",""0xf0fb54"",""0x206"",""0x3"",""0x772ed1c""]" 2 3 0x772ed1c c0 c9 72 +2026-04-25T22:04:52.530Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:04:53.381Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xaff038 "[""0x5e08ff0"",""0x1"",""0x1"",""0x2008"",""0x0"",""0x7c1a908"",""0x0"",""0x0"",""0x8f4c5e0"",""0x74794704""]" +2026-04-25T22:04:53.381Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-25T22:04:53.434Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x911c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x102"",""0x91fa2e0"",""0xafed28"",""0xb41e8ea7""]" 0 2 0x2 +2026-04-25T22:04:53.434Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x911c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x102"",""0x91fa2e0"",""0xafed28"",""0xb41e8ea7""]" 1 258 0x91fa2e0 37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4b 00 4a 00 31 00 30 00 00 00 ff ff 00 00 00 00 00 00 00 00 45 12 13 0c 01 00 00 00 +2026-04-25T22:04:53.436Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x911c738 "[""0x1"",""0x1"",""0x2"",""0x130"",""0x9ab5020"",""0x7c4b9942"",""0x91177f4"",""0x91177e4"",""0x641add04"",""0x0""]" 0 304 0x9ab5020 01 00 02 01 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4b 00 4a 00 31 00 30 00 00 00 ff ff 00 00 00 00 00 00 00 00 45 12 13 0c 01 00 00 00 +2026-04-25T22:04:53.437Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:04:53.437Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:04:53.474Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x33"",""0x7c3b60c"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x33"",""0x7c3b60c"",""0x206"",""0x3"",""0x772ed1c""]" 0 51 0x7c3b60c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-25T22:04:53.474Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x33"",""0x7c3b60c"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x33"",""0x7c3b60c"",""0x206"",""0x3"",""0x772ed1c""]" 1 518 0x3 +2026-04-25T22:04:53.474Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x33"",""0x7c3b60c"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x33"",""0x7c3b60c"",""0x206"",""0x3"",""0x772ed1c""]" 2 3 0x772ed1c c0 c9 72 +2026-04-25T22:04:53.476Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:04:53.479Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x132"",""0x7c382f4"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x132"",""0x7c382f4"",""0x206"",""0x3"",""0x772ed1c""]" 0 306 0x7c382f4 32 01 00 00 01 00 04 01 00 00 00 00 00 00 ca 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 2c 87 3a c9 d6 4e 1a 4a a4 f7 e7 31 f3 06 cc 88 03 00 00 00 c0 00 00 b6 65 8b ff d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4b 00 4a 00 31 00 +2026-04-25T22:04:53.479Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x132"",""0x7c382f4"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x132"",""0x7c382f4"",""0x206"",""0x3"",""0x772ed1c""]" 1 518 0x3 +2026-04-25T22:04:53.479Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x911c738 "[""0x132"",""0x7c382f4"",""0x729ec88"",""0x76ffedd8"",""0x911c744"",""0x132"",""0x7c382f4"",""0x206"",""0x3"",""0x772ed1c""]" 2 3 0x772ed1c c0 c9 72 +2026-04-25T22:04:53.480Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/101-frida-write-string-array-update/frida-exit.txt b/captures/101-frida-write-string-array-update/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/101-frida-write-string-array-update/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/101-frida-write-string-array-update/frida.stderr.txt b/captures/101-frida-write-string-array-update/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/101-frida-write-string-array-update/frida.stdout.jsonl b/captures/101-frida-write-string-array-update/frida.stdout.jsonl new file mode 100644 index 0000000..9930069 --- /dev/null +++ b/captures/101-frida-write-string-array-update/frida.stdout.jsonl @@ -0,0 +1,80 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestStringArray[] --type=string[] --value=KA1;KB2;KC3;KD4;KE5;KF6;KG7;KH8;KI9;KJ10 --write-delay-ms=1000 --duration=6 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\101-frida-write-string-array-update\harness.log --client=MxFridaTrace-101-frida-write-string-array-update`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write --tag=TestChildObject.TestStringArray[] --type=string[] --value=KA1;KB2;KC3;KD4;KE5;KF6;KG7;KH8;KI9;KJ10 --write-delay-ms=1000 --duration=6 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\101-frida-write-string-array-update\harness.log --client=MxFridaTrace-101-frida-write-string-array-update`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T22:04:45.164Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T22:04:45.165Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T22:04:45.165Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T22:04:45.166Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T22:04:45.167Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T22:04:45.167Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T22:04:45.168Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T22:04:45.168Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T22:04:45.168Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T22:04:52.109Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T22:04:52.111Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T22:04:52.111Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T22:04:52.112Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T22:04:52.113Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T22:04:52.114Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T22:04:52.115Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T22:04:52.211Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T22:04:52.211Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T22:04:52.214Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T22:04:52.215Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9117010","outPtr":"0xafe998","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:04:52.232Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafe998","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafe998","time":"2026-04-25T22:04:52.233Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9117010","outPtr":"0xafe998","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:04:52.233Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafe998","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafe998","time":"2026-04-25T22:04:52.234Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T22:04:52.327Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91c0d70","outPtr":"0xafef04","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0xafef04","time":"2026-04-25T22:04:52.327Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9120588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestStringArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91eca28","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 1f 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 28 ca 1e 09 5c 27 d3 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 11 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 19 f2 00 00 00 00 00"},"time":"2026-04-25T22:04:52.328Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91205d8","outPtr":"0xafee94","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0xafee94","time":"2026-04-25T22:04:52.329Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91205d8","outPtr":"0xafee94","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0xafee94","time":"2026-04-25T22:04:52.329Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91205d8","outPtr":"0xafee94","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0xafee94","time":"2026-04-25T22:04:52.330Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9120588","referenceString":{"length":33,"capacity":39,"value":"TestChildObject.TestStringArray[]"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91eca28","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 38 90 1f 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 28 ca 1e 09 5c 27 d3 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 11 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 19 f2 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T22:04:52.331Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T22:04:52.331Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xaff064","args":["0x5e08ff0","0x1","0x1","0x8f4c5e0","0x74794704"],"time":"2026-04-25T22:04:52.333Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9117010","outPtr":"0xafeee4","inWords":[65537,327682,186166,655525,4294921053,0],"time":"2026-04-25T22:04:52.333Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafeee4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0xafeee4","time":"2026-04-25T22:04:52.333Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9117010","outPtr":"0xafdb78","inWords":[65537,327682,186166,655525,4294921053,0],"time":"2026-04-25T22:04:52.334Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafdb78","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff","w0":65537,"w1":327682,"w2":186166,"w3":655525,"w4":4294921053},"retval":"0xafdb78","time":"2026-04-25T22:04:52.334Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T22:04:52.334Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x911c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9120648","0xafed28","0xb41e8ea7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9120648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 11 09 1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 12 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:04:52.461Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x911c738","args":["0x1","0x1","0x1","0x168","0x9ab5020","0x7c4b9942","0x9120214","0x9120204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9ab5020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 11 09 1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 12 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:04:52.465Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:04:52.465Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:04:52.466Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x911c738","0x1","0x1","0x2","0x2","0x0","0x27","0x91ece60","0xafed28","0xb41e8ea7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x91ece60","hex":"1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T22:04:52.468Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x911c738","args":["0x1","0x1","0x2","0x55","0x9ab5020","0x7c4b9942","0x91f9634","0x91f9624","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9ab5020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 00 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 03 00 00 00"}],"time":"2026-04-25T22:04:52.470Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:04:52.470Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:04:52.470Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x911c738","args":["0x2c2","0x7c382f4","0x729ec88","0x76ffedd8","0x911c744","0x2c2","0x7c382f4","0x206","0x3","0x772ed1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7c382f4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 95 8b f8 08 02 24 e3 4e 82 ea 07 2c 36 84 45 da 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x772ed1c","hex":"c0 c9 72"}],"time":"2026-04-25T22:04:52.499Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:04:52.501Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x911c738","args":["0x97","0xf0fb54","0x729ec88","0x76ffedd8","0x911c744","0x97","0xf0fb54","0x206","0x3","0x772ed1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xf0fb54","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 d5 5c 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 95 8b f8 08 02 24 e3 4e 82 ea 07 2c 36 84 45 da 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x772ed1c","hex":"c0 c9 72"}],"time":"2026-04-25T22:04:52.505Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:04:52.506Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x911c738","args":["0x5c","0xf10c5c","0x729ec88","0x76ffedd8","0x911c744","0x5c","0xf10c5c","0x206","0x3","0x772ed1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xf10c5c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 2c 87 3a c9 d6 4e 1a 4a a4 f7 e7 31 f3 06 cc 88 25 c8 40 0a 09 83 87 42 b0 24 b6 f2"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x772ed1c","hex":"c0 c9 72"}],"time":"2026-04-25T22:04:52.523Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:04:52.525Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x911c738","args":["0x146","0xf0fb54","0x729ec88","0x76ffedd8","0x911c744","0x146","0xf0fb54","0x206","0x3","0x772ed1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":326,"ptr":"0xf0fb54","hex":"46 01 00 00 01 00 18 01 00 00 00 00 00 00 c9 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 2c 87 3a c9 d6 4e 1a 4a a4 f7 e7 31 f3 06 cc 88 25 c8 40 0a 09 83 87 42 b0 24 b6 f2 a3 bf 7a b6 03 00 00 00 03 00 00 00 c0 00 80 4c b4 bf ac d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x772ed1c","hex":"c0 c9 72"}],"time":"2026-04-25T22:04:52.529Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:04:52.530Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xaff038","args":["0x5e08ff0","0x1","0x1","0x2008","0x0","0x7c1a908","0x0","0x0","0x8f4c5e0","0x74794704"],"time":"2026-04-25T22:04:53.381Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-25T22:04:53.381Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x911c738","0x1","0x1","0x2","0x2","0x0","0x102","0x91fa2e0","0xafed28","0xb41e8ea7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":258,"ptr":"0x91fa2e0","hex":"37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4b 00 4a 00 31 00 30 00 00 00 ff ff 00 00 00 00 00 00 00 00 45 12 13 0c 01 00 00 00"}],"time":"2026-04-25T22:04:53.434Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x911c738","args":["0x1","0x1","0x2","0x130","0x9ab5020","0x7c4b9942","0x91177f4","0x91177e4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":304,"ptr":"0x9ab5020","hex":"01 00 02 01 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4b 00 4a 00 31 00 30 00 00 00 ff ff 00 00 00 00 00 00 00 00 45 12 13 0c 01 00 00 00"}],"time":"2026-04-25T22:04:53.436Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:04:53.437Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:04:53.437Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x911c738","args":["0x33","0x7c3b60c","0x729ec88","0x76ffedd8","0x911c744","0x33","0x7c3b60c","0x206","0x3","0x772ed1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7c3b60c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x772ed1c","hex":"c0 c9 72"}],"time":"2026-04-25T22:04:53.474Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:04:53.476Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x911c738","args":["0x132","0x7c382f4","0x729ec88","0x76ffedd8","0x911c744","0x132","0x7c382f4","0x206","0x3","0x772ed1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":306,"ptr":"0x7c382f4","hex":"32 01 00 00 01 00 04 01 00 00 00 00 00 00 ca 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 2c 87 3a c9 d6 4e 1a 4a a4 f7 e7 31 f3 06 cc 88 03 00 00 00 c0 00 00 b6 65 8b ff d4 dc 01 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4b 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4b 00 4a 00 31 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x772ed1c","hex":"c0 c9 72"}],"time":"2026-04-25T22:04:53.479Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:04:53.480Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/101-frida-write-string-array-update/harness.log b/captures/101-frida-write-string-array-update/harness.log new file mode 100644 index 0000000..f62d5fd --- /dev/null +++ b/captures/101-frida-write-string-array-update/harness.log @@ -0,0 +1,16 @@ +2026-04-25T22:04:45.0706140+00:00 harness.start {"Scenario":"write","ClientName":"MxFridaTrace-101-frida-write-string-array-update","Tags":["TestChildObject.TestStringArray[]"],"ItemContext":"","WriteType":"string[]","WriteValue":"KA1;KB2;KC3;KD4;KE5;KF6;KG7;KH8;KI9;KJ10","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:04:51.9646957+00:00 mx.register.begin {"ClientName":"MxFridaTrace-101-frida-write-string-array-update"} +2026-04-25T22:04:52.3244026+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:04:52.3254029+00:00 mx.additem.begin {"Tag":"TestChildObject.TestStringArray[]"} +2026-04-25T22:04:52.3314141+00:00 mx.additem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:04:52.3323957+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:04:52.3344136+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:04:53.3779281+00:00 mx.write.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String[]","Length":10,"Values":["KA1","KB2","KC3","KD4","KE5","KF6","KG7","KH8","KI9","KJ10"]},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T22:04:53.3829917+00:00 mx.write.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1,"WriteIndex":0} +2026-04-25T22:04:59.4130865+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:04:59.4141189+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:04:59.4141189+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:04:59.4141189+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestStringArray[]","ItemHandle":1} +2026-04-25T22:04:59.4141189+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:05:03.4870997+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:05:03.4921131+00:00 harness.stop {} diff --git a/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-command.txt b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-command.txt new file mode 100644 index 0000000..5901060 --- /dev/null +++ b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=TestChildObject.ShortDesc --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\102-frida-subscribe-intl-shortdesc-after-write\harness.log --client=MxFridaTrace-102-frida-subscribe-intl-shortdesc-after-write diff --git a/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-events.tsv b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-events.tsv new file mode 100644 index 0000000..edfc375 --- /dev/null +++ b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-events.tsv @@ -0,0 +1,70 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T22:07:52.167Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T22:07:52.168Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T22:07:52.168Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T22:07:52.169Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T22:07:52.169Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T22:07:52.169Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T22:07:52.170Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T22:07:52.170Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T22:07:52.171Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T22:07:58.915Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:07:58.916Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T22:07:58.916Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T22:07:58.917Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:07:58.917Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:07:58.918Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T22:07:58.918Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T22:07:59.017Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T22:07:59.017Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T22:07:59.018Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T22:07:59.018Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T22:07:59.047Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:07:59.047Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7be990 [] +2026-04-25T22:07:59.048Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:07:59.048Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7be990 [] +2026-04-25T22:07:59.141Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T22:07:59.142Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7bef24 [] +2026-04-25T22:07:59.143Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:07:59.144Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beeb4 [] +2026-04-25T22:07:59.144Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beeb4 [] +2026-04-25T22:07:59.144Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beeb4 [] +2026-04-25T22:07:59.145Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T22:07:59.146Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:07:59.148Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x7bf074 "[""0x5be8ff0"",""0x1"",""0x1"",""0x314493d4"",""0x74794704""]" +2026-04-25T22:07:59.149Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:07:59.149Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7beef4 [] +2026-04-25T22:07:59.150Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:07:59.150Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7bdb88 [] +2026-04-25T22:07:59.151Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T22:07:59.275Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9090648"",""0x7bed38"",""0xdf565aba""]" 0 1 0x2 +2026-04-25T22:07:59.275Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9090648"",""0x7bed38"",""0xdf565aba""]" 1 314 0x9090648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00 +2026-04-25T22:07:59.278Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x908c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9a2d020"",""0x2655bfc8"",""0x9090214"",""0x9090204"",""0x641add04"",""0x0""]" 0 360 0x9a2d020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00 +2026-04-25T22:07:59.278Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:07:59.278Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:07:59.280Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x915e180"",""0x7bed38"",""0xdf565aba""]" 0 2 0x2 +2026-04-25T22:07:59.280Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x915e180"",""0x7bed38"",""0xdf565aba""]" 1 39 0x915e180 1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T22:07:59.281Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x908c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9a2d020"",""0x2655bfc8"",""0x9169f94"",""0x9169f84"",""0x641add04"",""0x0""]" 0 85 0x9a2d020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T22:07:59.281Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:07:59.282Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:07:59.297Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2c2"",""0x7b60ac4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x2c2"",""0x7b60ac4"",""0x206"",""0x3"",""0x768d204""]" 0 706 0x7b60ac4 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 02 d0 3e 52 e1 43 09 4f ac d1 b1 e5 32 4d 5d 51 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T22:07:59.297Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2c2"",""0x7b60ac4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x2c2"",""0x7b60ac4"",""0x206"",""0x3"",""0x768d204""]" 1 518 0x3 +2026-04-25T22:07:59.297Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x2c2"",""0x7b60ac4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x2c2"",""0x7b60ac4"",""0x206"",""0x3"",""0x768d204""]" 2 3 0x768d204 00 99 57 +2026-04-25T22:07:59.300Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:07:59.303Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x97"",""0x7b56074"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x97"",""0x7b56074"",""0x206"",""0x3"",""0x768d204""]" 0 151 0x7b56074 97 00 00 00 01 00 69 00 00 00 00 00 00 00 c3 5f 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 02 d0 3e 52 e1 43 09 4f ac d1 b1 e5 32 4d 5d 51 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T22:07:59.303Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x97"",""0x7b56074"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x97"",""0x7b56074"",""0x206"",""0x3"",""0x768d204""]" 1 518 0x3 +2026-04-25T22:07:59.303Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x97"",""0x7b56074"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x97"",""0x7b56074"",""0x206"",""0x3"",""0x768d204""]" 2 3 0x768d204 00 99 57 +2026-04-25T22:07:59.305Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:07:59.319Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x5c"",""0x7b60ac4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x5c"",""0x7b60ac4"",""0x206"",""0x3"",""0x768d204""]" 0 92 0x7b60ac4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 cd b5 2e 76 87 37 18 42 94 0a ec b7 50 92 2c 8d b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 +2026-04-25T22:07:59.319Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x5c"",""0x7b60ac4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x5c"",""0x7b60ac4"",""0x206"",""0x3"",""0x768d204""]" 1 518 0x3 +2026-04-25T22:07:59.319Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x5c"",""0x7b60ac4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x5c"",""0x7b60ac4"",""0x206"",""0x3"",""0x768d204""]" 2 3 0x768d204 00 99 57 +2026-04-25T22:07:59.321Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:07:59.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x70"",""0x7b5e8b4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x70"",""0x7b5e8b4"",""0x206"",""0x3"",""0x768d204""]" 0 112 0x7b5e8b4 70 00 00 00 01 00 42 00 00 00 00 00 00 00 cc 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 cd b5 2e 76 87 37 18 42 94 0a ec b7 50 92 2c 8d b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00 +2026-04-25T22:07:59.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x70"",""0x7b5e8b4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x70"",""0x7b5e8b4"",""0x206"",""0x3"",""0x768d204""]" 1 518 0x3 +2026-04-25T22:07:59.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x908c738 "[""0x70"",""0x7b5e8b4"",""0x73be850"",""0x76ffedd8"",""0x908c744"",""0x70"",""0x7b5e8b4"",""0x206"",""0x3"",""0x768d204""]" 2 3 0x768d204 00 99 57 +2026-04-25T22:07:59.326Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:08:04.226Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x915e960"",""0x7bed94"",""0xdf565a8e""]" 0 2 0x2 +2026-04-25T22:08:04.226Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x908c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x915e960"",""0x7bed94"",""0xdf565a8e""]" 1 37 0x915e960 21 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T22:08:04.227Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x908c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9a2d020"",""0x2655bfdc"",""0x7bede4"",""0x7bedd4"",""0x641add04"",""0x0""]" 0 83 0x9a2d020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T22:08:04.228Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:08:04.228Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-exit.txt b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/102-frida-subscribe-intl-shortdesc-after-write/frida.stderr.txt b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/102-frida-subscribe-intl-shortdesc-after-write/frida.stdout.jsonl b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida.stdout.jsonl new file mode 100644 index 0000000..93adb02 --- /dev/null +++ b/captures/102-frida-subscribe-intl-shortdesc-after-write/frida.stdout.jsonl @@ -0,0 +1,74 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.ShortDesc --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\102-frida-subscribe-intl-shortdesc-after-write\harness.log --client=MxFridaTrace-102-frida-subscribe-intl-shortdesc-after-write`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestChildObject.ShortDesc --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\102-frida-subscribe-intl-shortdesc-after-write\harness.log --client=MxFridaTrace-102-frida-subscribe-intl-shortdesc-after-write`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T22:07:52.167Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T22:07:52.168Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T22:07:52.168Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T22:07:52.169Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T22:07:52.169Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T22:07:52.169Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T22:07:52.170Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T22:07:52.170Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T22:07:52.171Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T22:07:58.915Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T22:07:58.916Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T22:07:58.916Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T22:07:58.917Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T22:07:58.917Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T22:07:58.918Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T22:07:58.918Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T22:07:59.017Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T22:07:59.017Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T22:07:59.018Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T22:07:59.018Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9087010","outPtr":"0x7be990","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:07:59.047Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7be990","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7be990","time":"2026-04-25T22:07:59.047Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9087010","outPtr":"0x7be990","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:07:59.048Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7be990","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7be990","time":"2026-04-25T22:07:59.048Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T22:07:59.141Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9131400","outPtr":"0x7bef24","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x7bef24","time":"2026-04-25T22:07:59.142Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9090588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x915e570","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 f0 e9 15 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 70 e5 15 09 8c 1c 57 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 08 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 fc ff f6 00 00 00 00 00"},"time":"2026-04-25T22:07:59.143Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7beeb4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x7beeb4","time":"2026-04-25T22:07:59.144Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7beeb4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x7beeb4","time":"2026-04-25T22:07:59.144Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90905d8","outPtr":"0x7beeb4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x7beeb4","time":"2026-04-25T22:07:59.144Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9090588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x915e570","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 f0 e9 15 09 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 70 e5 15 09 8c 1c 57 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 08 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 fc ff f6 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T22:07:59.145Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T22:07:59.146Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x7bf074","args":["0x5be8ff0","0x1","0x1","0x314493d4","0x74794704"],"time":"2026-04-25T22:07:59.148Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9087010","outPtr":"0x7beef4","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T22:07:59.149Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7beef4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x7beef4","time":"2026-04-25T22:07:59.149Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9087010","outPtr":"0x7bdb88","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T22:07:59.150Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7bdb88","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x7bdb88","time":"2026-04-25T22:07:59.150Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T22:07:59.151Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9090648","0x7bed38","0xdf565aba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9090648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:07:59.275Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x1","0x168","0x9a2d020","0x2655bfc8","0x9090214","0x9090204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9a2d020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 08 09 1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 09 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:07:59.278Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:07:59.278Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:07:59.278Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x2","0x2","0x0","0x27","0x915e180","0x7bed38","0xdf565aba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x915e180","hex":"1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T22:07:59.280Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x2","0x55","0x9a2d020","0x2655bfc8","0x9169f94","0x9169f84","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9a2d020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T22:07:59.281Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:07:59.281Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:07:59.282Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x2c2","0x7b60ac4","0x73be850","0x76ffedd8","0x908c744","0x2c2","0x7b60ac4","0x206","0x3","0x768d204"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7b60ac4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 02 d0 3e 52 e1 43 09 4f ac d1 b1 e5 32 4d 5d 51 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x768d204","hex":"00 99 57"}],"time":"2026-04-25T22:07:59.297Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:07:59.300Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x97","0x7b56074","0x73be850","0x76ffedd8","0x908c744","0x97","0x7b56074","0x206","0x3","0x768d204"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7b56074","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 c3 5f 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 02 d0 3e 52 e1 43 09 4f ac d1 b1 e5 32 4d 5d 51 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x768d204","hex":"00 99 57"}],"time":"2026-04-25T22:07:59.303Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:07:59.305Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x5c","0x7b60ac4","0x73be850","0x76ffedd8","0x908c744","0x5c","0x7b60ac4","0x206","0x3","0x768d204"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7b60ac4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 cd b5 2e 76 87 37 18 42 94 0a ec b7 50 92 2c 8d b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x768d204","hex":"00 99 57"}],"time":"2026-04-25T22:07:59.319Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:07:59.321Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x908c738","args":["0x70","0x7b5e8b4","0x73be850","0x76ffedd8","0x908c744","0x70","0x7b5e8b4","0x206","0x3","0x768d204"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x7b5e8b4","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 cc 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 cd b5 2e 76 87 37 18 42 94 0a ec b7 50 92 2c 8d b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x768d204","hex":"00 99 57"}],"time":"2026-04-25T22:07:59.324Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:07:59.326Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x908c738","0x1","0x1","0x2","0x2","0x0","0x25","0x915e960","0x7bed94","0xdf565a8e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x915e960","hex":"21 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T22:08:04.226Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x908c738","args":["0x1","0x1","0x2","0x53","0x9a2d020","0x2655bfdc","0x7bede4","0x7bedd4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9a2d020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 b1 1c 94 50 d3 e9 ce 41 b4 f5 00 e3 09 e4 7b 29 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T22:08:04.227Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:08:04.228Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:08:04.228Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/102-frida-subscribe-intl-shortdesc-after-write/harness.log b/captures/102-frida-subscribe-intl-shortdesc-after-write/harness.log new file mode 100644 index 0000000..a0b758f --- /dev/null +++ b/captures/102-frida-subscribe-intl-shortdesc-after-write/harness.log @@ -0,0 +1,14 @@ +2026-04-25T22:07:52.0729247+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-102-frida-subscribe-intl-shortdesc-after-write","Tags":["TestChildObject.ShortDesc"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:07:58.7884016+00:00 mx.register.begin {"ClientName":"MxFridaTrace-102-frida-subscribe-intl-shortdesc-after-write"} +2026-04-25T22:07:59.1383959+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:07:59.1393937+00:00 mx.additem.begin {"Tag":"TestChildObject.ShortDesc"} +2026-04-25T22:07:59.1463281+00:00 mx.additem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T22:07:59.1473367+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T22:07:59.1513450+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T22:08:04.2132033+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T22:08:04.2141924+00:00 mx.unadvise.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T22:08:04.2141924+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T22:08:04.2141924+00:00 mx.removeitem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T22:08:04.2141924+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:08:08.1808158+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:08:08.1858152+00:00 harness.stop {} diff --git a/captures/103-frida-subscribe-elapsed-after-write/frida-command.txt b/captures/103-frida-subscribe-elapsed-after-write/frida-command.txt new file mode 100644 index 0000000..e7a94d8 --- /dev/null +++ b/captures/103-frida-subscribe-elapsed-after-write/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=subscribe --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\103-frida-subscribe-elapsed-after-write\harness.log --client=MxFridaTrace-103-frida-subscribe-elapsed-after-write diff --git a/captures/103-frida-subscribe-elapsed-after-write/frida-events.tsv b/captures/103-frida-subscribe-elapsed-after-write/frida-events.tsv new file mode 100644 index 0000000..d51f95f --- /dev/null +++ b/captures/103-frida-subscribe-elapsed-after-write/frida-events.tsv @@ -0,0 +1,70 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T22:09:40.241Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T22:09:40.241Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T22:09:40.242Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T22:09:40.242Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T22:09:40.242Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T22:09:40.243Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T22:09:40.243Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T22:09:40.244Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T22:09:40.244Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T22:09:47.091Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:09:47.092Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T22:09:47.092Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T22:09:47.093Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:09:47.094Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:09:47.094Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T22:09:47.095Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T22:09:47.251Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:09:47.251Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7ce590 [] +2026-04-25T22:09:47.252Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:09:47.252Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7ce590 [] +2026-04-25T22:09:47.291Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T22:09:47.292Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T22:09:47.292Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T22:09:47.293Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T22:09:47.351Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference 0x10188a34 [] +2026-04-25T22:09:47.351Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7ceae8 [] +2026-04-25T22:09:47.352Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T22:09:47.353Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7cea78 [] +2026-04-25T22:09:47.353Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7cea78 [] +2026-04-25T22:09:47.354Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7cea78 [] +2026-04-25T22:09:47.355Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T22:09:47.355Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T22:09:47.357Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x7cec64 "[""0x5b08ff0"",""0x1"",""0x1"",""0x5d775201"",""0x74794704""]" +2026-04-25T22:09:47.357Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:09:47.357Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7ceae4 [] +2026-04-25T22:09:47.358Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T22:09:47.358Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7cd778 [] +2026-04-25T22:09:47.358Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-25T22:09:47.482Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x90a0648"",""0x7ce928"",""0xcfa1f09a""]" 0 1 0x2 +2026-04-25T22:09:47.482Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x90a0648"",""0x7ce928"",""0xcfa1f09a""]" 1 314 0x90a0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 09 09 1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 0a 09 20 01 00 02 00 00 00 +2026-04-25T22:09:47.485Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x909c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9a38020"",""0x6c79adea"",""0x90a0214"",""0x90a0204"",""0x641add04"",""0x0""]" 0 360 0x9a38020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 09 09 1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 0a 09 20 01 00 02 00 00 00 +2026-04-25T22:09:47.486Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:09:47.486Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:09:47.487Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x916d568"",""0x7ce928"",""0xcfa1f09a""]" 0 2 0x2 +2026-04-25T22:09:47.487Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x916d568"",""0x7ce928"",""0xcfa1f09a""]" 1 39 0x916d568 1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T22:09:47.488Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x909c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9a38020"",""0x6c79adea"",""0x9179584"",""0x9179574"",""0x641add04"",""0x0""]" 0 85 0x9a38020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T22:09:47.489Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:09:47.489Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T22:09:47.508Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x2c2"",""0x7b59c8c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x2c2"",""0x7b59c8c"",""0x206"",""0x3"",""0x763a284""]" 0 706 0x7b59c8c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 cc 8c dd df 51 72 92 4f bf 17 47 0a 9d c0 5b c2 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T22:09:47.508Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x2c2"",""0x7b59c8c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x2c2"",""0x7b59c8c"",""0x206"",""0x3"",""0x763a284""]" 1 518 0x3 +2026-04-25T22:09:47.508Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x2c2"",""0x7b59c8c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x2c2"",""0x7b59c8c"",""0x206"",""0x3"",""0x763a284""]" 2 3 0x763a284 78 6f d1 +2026-04-25T22:09:47.510Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:09:47.513Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x97"",""0x7bae54c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x97"",""0x7bae54c"",""0x206"",""0x3"",""0x763a284""]" 0 151 0x7bae54c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 75 61 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 cc 8c dd df 51 72 92 4f bf 17 47 0a 9d c0 5b c2 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T22:09:47.513Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x97"",""0x7bae54c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x97"",""0x7bae54c"",""0x206"",""0x3"",""0x763a284""]" 1 518 0x3 +2026-04-25T22:09:47.513Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x97"",""0x7bae54c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x97"",""0x7bae54c"",""0x206"",""0x3"",""0x763a284""]" 2 3 0x763a284 78 6f d1 +2026-04-25T22:09:47.515Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:09:47.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x5c"",""0x7b86964"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x5c"",""0x7b86964"",""0x206"",""0x3"",""0x763a284""]" 0 92 0x7b86964 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 80 d0 62 c4 97 13 d4 43 a0 bc 8b a5 a6 e2 69 86 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 +2026-04-25T22:09:47.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x5c"",""0x7b86964"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x5c"",""0x7b86964"",""0x206"",""0x3"",""0x763a284""]" 1 518 0x3 +2026-04-25T22:09:47.529Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x5c"",""0x7b86964"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x5c"",""0x7b86964"",""0x206"",""0x3"",""0x763a284""]" 2 3 0x763a284 78 6f d1 +2026-04-25T22:09:47.530Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:09:47.532Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x70"",""0x7b59c8c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x70"",""0x7b59c8c"",""0x206"",""0x3"",""0x763a284""]" 0 112 0x7b59c8c 70 00 00 00 01 00 42 00 00 00 00 00 00 00 cd 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 80 d0 62 c4 97 13 d4 43 a0 bc 8b a5 a6 e2 69 86 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 e4 0b 54 +2026-04-25T22:09:47.532Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x70"",""0x7b59c8c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x70"",""0x7b59c8c"",""0x206"",""0x3"",""0x763a284""]" 1 518 0x3 +2026-04-25T22:09:47.532Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c738 "[""0x70"",""0x7b59c8c"",""0x727ec98"",""0x76ffedd8"",""0x909c744"",""0x70"",""0x7b59c8c"",""0x206"",""0x3"",""0x763a284""]" 2 3 0x763a284 78 6f d1 +2026-04-25T22:09:47.533Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T22:09:52.449Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x916d2e0"",""0x7ce984"",""0xcfa1f08e""]" 0 2 0x2 +2026-04-25T22:09:52.449Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x916d2e0"",""0x7ce984"",""0xcfa1f08e""]" 1 37 0x916d2e0 21 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T22:09:52.450Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x909c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9a38020"",""0x6c79a21e"",""0x7ce9d4"",""0x7ce9c4"",""0x641add04"",""0x0""]" 0 83 0x9a38020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00 +2026-04-25T22:09:52.452Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T22:09:52.452Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/103-frida-subscribe-elapsed-after-write/frida-exit.txt b/captures/103-frida-subscribe-elapsed-after-write/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/103-frida-subscribe-elapsed-after-write/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/103-frida-subscribe-elapsed-after-write/frida.stderr.txt b/captures/103-frida-subscribe-elapsed-after-write/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/103-frida-subscribe-elapsed-after-write/frida.stdout.jsonl b/captures/103-frida-subscribe-elapsed-after-write/frida.stdout.jsonl new file mode 100644 index 0000000..731102b --- /dev/null +++ b/captures/103-frida-subscribe-elapsed-after-write/frida.stdout.jsonl @@ -0,0 +1,74 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\103-frida-subscribe-elapsed-after-write\harness.log --client=MxFridaTrace-103-frida-subscribe-elapsed-after-write`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=subscribe --tag=TestMachine_001.TestAlarm001.Alarm.TimeDeadband --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\103-frida-subscribe-elapsed-after-write\harness.log --client=MxFridaTrace-103-frida-subscribe-elapsed-after-write`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T22:09:40.241Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T22:09:40.241Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T22:09:40.242Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T22:09:40.242Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T22:09:40.242Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T22:09:40.243Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T22:09:40.243Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T22:09:40.244Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T22:09:40.244Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T22:09:47.091Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T22:09:47.092Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T22:09:47.092Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T22:09:47.093Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T22:09:47.094Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T22:09:47.094Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T22:09:47.095Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9097010","outPtr":"0x7ce590","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:09:47.251Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7ce590","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7ce590","time":"2026-04-25T22:09:47.251Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9097010","outPtr":"0x7ce590","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T22:09:47.252Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7ce590","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7ce590","time":"2026-04-25T22:09:47.252Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T22:09:47.291Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T22:09:47.292Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T22:09:47.292Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T22:09:47.293Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","ecx":"0x10188a34","reference":"\u8a34\u1018\u8a20\u1018\u8a04\u1018\u89f0\u1018\u89dc\u1018\u89ac\u1018\u0004","time":"2026-04-25T22:09:47.351Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91425a8","outPtr":"0x7ceae8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x7ceae8","time":"2026-04-25T22:09:47.351Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x90a0588","referenceString":{"length":47,"capacity":47,"value":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x916cfc8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 40 b8 09 09 00 65 00 00 00 02 00 00 00 00 00 02 2f 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 c8 cf 16 09 5c 2e d1 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 09 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 14 3d ce 00 00 00 00 00"},"time":"2026-04-25T22:09:47.352Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90a05d8","outPtr":"0x7cea78","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x7cea78","time":"2026-04-25T22:09:47.353Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90a05d8","outPtr":"0x7cea78","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x7cea78","time":"2026-04-25T22:09:47.353Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90a05d8","outPtr":"0x7cea78","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x7cea78","time":"2026-04-25T22:09:47.354Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x90a0588","referenceString":{"length":47,"capacity":47,"value":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x916cfc8","status":3,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 40 b8 09 09 00 65 00 00 00 02 00 00 00 00 00 02 2f 00 00 00 2f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 c8 cf 16 09 5c 2e d1 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 09 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 14 3d ce 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T22:09:47.355Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":6619220,"time":"2026-04-25T22:09:47.355Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x7cec64","args":["0x5b08ff0","0x1","0x1","0x5d775201","0x74794704"],"time":"2026-04-25T22:09:47.357Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9097010","outPtr":"0x7ceae4","inWords":[65537,393218,8320008,655485,22956,0],"time":"2026-04-25T22:09:47.357Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7ceae4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x7ceae4","time":"2026-04-25T22:09:47.357Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9097010","outPtr":"0x7cd778","inWords":[65537,393218,8320008,655485,22956,0],"time":"2026-04-25T22:09:47.358Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7cd778","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00","w0":65537,"w1":393218,"w2":8320008,"w3":655485,"w4":22956},"retval":"0x7cd778","time":"2026-04-25T22:09:47.358Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-25T22:09:47.358Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x909c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x90a0648","0x7ce928","0xcfa1f09a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x90a0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 09 09 1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 0a 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:09:47.482Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x909c738","args":["0x1","0x1","0x1","0x168","0x9a38020","0x6c79adea","0x90a0214","0x90a0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9a38020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 09 09 1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 0a 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T22:09:47.485Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:09:47.486Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:09:47.486Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x909c738","0x1","0x1","0x2","0x2","0x0","0x27","0x916d568","0x7ce928","0xcfa1f09a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x916d568","hex":"1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T22:09:47.487Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x909c738","args":["0x1","0x1","0x2","0x55","0x9a38020","0x6c79adea","0x9179584","0x9179574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9a38020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 00 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T22:09:47.488Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:09:47.489Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:09:47.489Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c738","args":["0x2c2","0x7b59c8c","0x727ec98","0x76ffedd8","0x909c744","0x2c2","0x7b59c8c","0x206","0x3","0x763a284"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7b59c8c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 cc 8c dd df 51 72 92 4f bf 17 47 0a 9d c0 5b c2 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x763a284","hex":"78 6f d1"}],"time":"2026-04-25T22:09:47.508Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:09:47.510Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c738","args":["0x97","0x7bae54c","0x727ec98","0x76ffedd8","0x909c744","0x97","0x7bae54c","0x206","0x3","0x763a284"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7bae54c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 75 61 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 cc 8c dd df 51 72 92 4f bf 17 47 0a 9d c0 5b c2 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x763a284","hex":"78 6f d1"}],"time":"2026-04-25T22:09:47.513Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:09:47.515Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c738","args":["0x5c","0x7b86964","0x727ec98","0x76ffedd8","0x909c744","0x5c","0x7b86964","0x206","0x3","0x763a284"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7b86964","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 80 d0 62 c4 97 13 d4 43 a0 bc 8b a5 a6 e2 69 86 7c 32 dd c9 b6 70 af 4a 89 a5 18 67"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x763a284","hex":"78 6f d1"}],"time":"2026-04-25T22:09:47.529Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:09:47.530Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c738","args":["0x70","0x7b59c8c","0x727ec98","0x76ffedd8","0x909c744","0x70","0x7b59c8c","0x206","0x3","0x763a284"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x7b59c8c","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 cd 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 80 d0 62 c4 97 13 d4 43 a0 bc 8b a5 a6 e2 69 86 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 e4 0b 54"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x763a284","hex":"78 6f d1"}],"time":"2026-04-25T22:09:47.532Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T22:09:47.533Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x909c738","0x1","0x1","0x2","0x2","0x0","0x25","0x916d2e0","0x7ce984","0xcfa1f08e"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x916d2e0","hex":"21 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T22:09:52.449Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x909c738","args":["0x1","0x1","0x2","0x53","0x9a38020","0x6c79a21e","0x7ce9d4","0x7ce9c4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9a38020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 03 00 00 00"}],"time":"2026-04-25T22:09:52.450Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T22:09:52.452Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T22:09:52.452Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/103-frida-subscribe-elapsed-after-write/harness.log b/captures/103-frida-subscribe-elapsed-after-write/harness.log new file mode 100644 index 0000000..c26cc23 --- /dev/null +++ b/captures/103-frida-subscribe-elapsed-after-write/harness.log @@ -0,0 +1,14 @@ +2026-04-25T22:09:40.1528089+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxFridaTrace-103-frida-subscribe-elapsed-after-write","Tags":["TestMachine_001.TestAlarm001.Alarm.TimeDeadband"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:09:46.9802853+00:00 mx.register.begin {"ClientName":"MxFridaTrace-103-frida-subscribe-elapsed-after-write"} +2026-04-25T22:09:47.3485003+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:09:47.3495081+00:00 mx.additem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"} +2026-04-25T22:09:47.3554992+00:00 mx.additem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T22:09:47.3564973+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T22:09:47.3585112+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T22:09:52.4219342+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T22:09:52.4219342+00:00 mx.unadvise.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T22:09:52.4219342+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T22:09:52.4229322+00:00 mx.removeitem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T22:09:52.4229322+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:09:56.4796310+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:09:56.4856452+00:00 harness.stop {} diff --git a/captures/104-frida-plain-advise-testint-prebound-fixed/frida-command.txt b/captures/104-frida-plain-advise-testint-prebound-fixed/frida-command.txt new file mode 100644 index 0000000..b8d9a84 --- /dev/null +++ b/captures/104-frida-plain-advise-testint-prebound-fixed/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=advise --tag=TestChildObject.TestInt --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\104-frida-plain-advise-testint-prebound-fixed\harness.log --client=MxFridaTrace-104-frida-plain-advise-testint-prebound-fixed diff --git a/captures/104-frida-plain-advise-testint-prebound-fixed/frida-events.tsv b/captures/104-frida-plain-advise-testint-prebound-fixed/frida-events.tsv new file mode 100644 index 0000000..c7e9dd9 --- /dev/null +++ b/captures/104-frida-plain-advise-testint-prebound-fixed/frida-events.tsv @@ -0,0 +1,70 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T23:04:42.425Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T23:04:42.426Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T23:04:42.426Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T23:04:42.427Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T23:04:42.427Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T23:04:42.428Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T23:04:42.428Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T23:04:42.429Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T23:04:42.429Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T23:04:49.375Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T23:04:49.376Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T23:04:49.376Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T23:04:49.377Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:04:49.377Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T23:04:49.378Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T23:04:49.378Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T23:04:49.476Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T23:04:49.477Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T23:04:49.478Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T23:04:49.478Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T23:04:49.531Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:04:49.532Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x95e4f4 [] +2026-04-25T23:04:49.532Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:04:49.533Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x95e4f4 [] +2026-04-25T23:04:49.626Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-25T23:04:49.626Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x95ea88 [] +2026-04-25T23:04:49.627Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T23:04:49.628Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x95ea18 [] +2026-04-25T23:04:49.628Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x95ea18 [] +2026-04-25T23:04:49.629Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x95ea18 [] +2026-04-25T23:04:49.630Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T23:04:49.630Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T23:04:49.632Z lmx.user-register-prebound.enter Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T23:04:49.632Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:04:49.632Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x95ea74 [] +2026-04-25T23:04:49.633Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:04:49.633Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x95d708 [] +2026-04-25T23:04:49.633Z lmx.user-register-prebound.leave Lmx.dll MxConnection.UserRegisterPreboundReference 0x0 [] +2026-04-25T23:04:49.760Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x901c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9020648"",""0x95e898"",""0x9dde29ff""]" 0 1 0x2 +2026-04-25T23:04:49.760Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x901c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9020648"",""0x95e898"",""0x9dde29ff""]" 1 314 0x9020648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 01 09 1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 02 09 20 01 00 02 00 00 00 +2026-04-25T23:04:49.762Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x901c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x99b7020"",""0xb7f2527e"",""0x9020214"",""0x9020204"",""0x641add04"",""0x0""]" 0 360 0x99b7020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 01 09 1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 02 09 20 01 00 02 00 00 00 +2026-04-25T23:04:49.763Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T23:04:49.764Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T23:04:49.765Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x901c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x90ee408"",""0x95e898"",""0x9dde29ff""]" 0 2 0x2 +2026-04-25T23:04:49.765Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x901c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x90ee408"",""0x95e898"",""0x9dde29ff""]" 1 39 0x90ee408 1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T23:04:49.766Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x901c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x99b7020"",""0xb7f2527e"",""0x90f9584"",""0x90f9574"",""0x641add04"",""0x0""]" 0 85 0x99b7020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T23:04:49.767Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T23:04:49.767Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T23:04:49.806Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x2c2"",""0xe696c4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x2c2"",""0xe696c4"",""0x206"",""0x3"",""0x761bc3c""]" 0 706 0xe696c4 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 04 41 e8 3e ae 2f 79 47 99 62 74 92 4d b6 ee e3 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T23:04:49.806Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x2c2"",""0xe696c4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x2c2"",""0xe696c4"",""0x206"",""0x3"",""0x761bc3c""]" 1 518 0x3 +2026-04-25T23:04:49.806Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x2c2"",""0xe696c4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x2c2"",""0xe696c4"",""0x206"",""0x3"",""0x761bc3c""]" 2 3 0x761bc3c 00 d6 c6 +2026-04-25T23:04:49.808Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:04:49.810Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x97"",""0xe6dae4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x97"",""0xe6dae4"",""0x206"",""0x3"",""0x761bc3c""]" 0 151 0xe6dae4 97 00 00 00 01 00 69 00 00 00 00 00 00 00 2c 95 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 04 41 e8 3e ae 2f 79 47 99 62 74 92 4d b6 ee e3 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T23:04:49.810Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x97"",""0xe6dae4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x97"",""0xe6dae4"",""0x206"",""0x3"",""0x761bc3c""]" 1 518 0x3 +2026-04-25T23:04:49.810Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x97"",""0xe6dae4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x97"",""0xe6dae4"",""0x206"",""0x3"",""0x761bc3c""]" 2 3 0x761bc3c 00 d6 c6 +2026-04-25T23:04:49.812Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:04:49.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x5c"",""0xe696c4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x5c"",""0xe696c4"",""0x206"",""0x3"",""0x761bc3c""]" 0 92 0xe696c4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c9 02 f3 e7 69 65 8d 49 b5 b6 f4 0b 3c 15 b3 f0 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 +2026-04-25T23:04:49.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x5c"",""0xe696c4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x5c"",""0xe696c4"",""0x206"",""0x3"",""0x761bc3c""]" 1 518 0x3 +2026-04-25T23:04:49.819Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x5c"",""0xe696c4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x5c"",""0xe696c4"",""0x206"",""0x3"",""0x761bc3c""]" 2 3 0x761bc3c 00 d6 c6 +2026-04-25T23:04:49.821Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:04:49.823Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x6c"",""0xe6dae4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x6c"",""0xe6dae4"",""0x206"",""0x3"",""0x761bc3c""]" 0 108 0xe6dae4 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 f7 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c9 02 f3 e7 69 65 8d 49 b5 b6 f4 0b 3c 15 b3 f0 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 03 00 00 00 03 00 00 00 c0 00 d0 d1 46 be 04 d5 dc 01 02 +2026-04-25T23:04:49.823Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x6c"",""0xe6dae4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x6c"",""0xe6dae4"",""0x206"",""0x3"",""0x761bc3c""]" 1 518 0x3 +2026-04-25T23:04:49.823Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x901c738 "[""0x6c"",""0xe6dae4"",""0x72cebd0"",""0x76ffedd8"",""0x901c744"",""0x6c"",""0xe6dae4"",""0x206"",""0x3"",""0x761bc3c""]" 2 3 0x761bc3c 00 d6 c6 +2026-04-25T23:04:49.825Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:04:54.670Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x901c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x90ee768"",""0x95e8f4"",""0x9dde298b""]" 0 2 0x2 +2026-04-25T23:04:54.670Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x901c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x90ee768"",""0x95e8f4"",""0x9dde298b""]" 1 37 0x90ee768 21 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T23:04:54.670Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x901c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x99b7020"",""0xb7f2526a"",""0x95e944"",""0x95e934"",""0x641add04"",""0x0""]" 0 83 0x99b7020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-25T23:04:54.671Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T23:04:54.671Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/104-frida-plain-advise-testint-prebound-fixed/frida-exit.txt b/captures/104-frida-plain-advise-testint-prebound-fixed/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/104-frida-plain-advise-testint-prebound-fixed/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/104-frida-plain-advise-testint-prebound-fixed/frida.stderr.txt b/captures/104-frida-plain-advise-testint-prebound-fixed/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/104-frida-plain-advise-testint-prebound-fixed/frida.stdout.jsonl b/captures/104-frida-plain-advise-testint-prebound-fixed/frida.stdout.jsonl new file mode 100644 index 0000000..be5f6c2 --- /dev/null +++ b/captures/104-frida-plain-advise-testint-prebound-fixed/frida.stdout.jsonl @@ -0,0 +1,74 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=advise --tag=TestChildObject.TestInt --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\104-frida-plain-advise-testint-prebound-fixed\harness.log --client=MxFridaTrace-104-frida-plain-advise-testint-prebound-fixed`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=advise --tag=TestChildObject.TestInt --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\104-frida-plain-advise-testint-prebound-fixed\harness.log --client=MxFridaTrace-104-frida-plain-advise-testint-prebound-fixed`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T23:04:42.425Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T23:04:42.426Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T23:04:42.426Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T23:04:42.427Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T23:04:42.427Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T23:04:42.428Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T23:04:42.428Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T23:04:42.429Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T23:04:42.429Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T23:04:49.375Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T23:04:49.376Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T23:04:49.376Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T23:04:49.377Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T23:04:49.377Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T23:04:49.378Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T23:04:49.378Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T23:04:49.476Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T23:04:49.477Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T23:04:49.478Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T23:04:49.478Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9017010","outPtr":"0x95e4f4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T23:04:49.531Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x95e4f4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x95e4f4","time":"2026-04-25T23:04:49.532Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9017010","outPtr":"0x95e4f4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T23:04:49.532Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x95e4f4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x95e4f4","time":"2026-04-25T23:04:49.533Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x902025c","outPtr":"0x95eb20","referencePtr":"0x95eb54","reference":"TestChildObject.TestInt","time":"2026-04-25T23:04:49.626Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90c2378","outPtr":"0x95ea88","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x95ea88","time":"2026-04-25T23:04:49.626Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9020588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x90ee528","flags10":1124099840,"word14":2,"word4c":131073,"word54":130292308,"word58":0,"word5c":0,"word60":0,"word64":151089168,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 7c 01 09 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 28 e5 0e 09 54 1a c4 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 01 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 34 b0 e1 00 00 00 00 00"},"time":"2026-04-25T23:04:49.627Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90205d8","outPtr":"0x95ea18","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x95ea18","time":"2026-04-25T23:04:49.628Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90205d8","outPtr":"0x95ea18","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x95ea18","time":"2026-04-25T23:04:49.628Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90205d8","outPtr":"0x95ea18","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x95ea18","time":"2026-04-25T23:04:49.629Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9020588","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x90ee528","flags10":1124099840,"word14":2,"word4c":131073,"word54":130292308,"word58":0,"word5c":0,"word60":0,"word64":151089168,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 7c 01 09 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 28 e5 0e 09 54 1a c4 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 01 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 34 b0 e1 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T23:04:49.630Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-25T23:04:49.630Z"} +{"event":"lmx.user-register-prebound.enter","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","self":"0x902024c","preboundHandle":1,"callback":"0x90f603c","userData":1,"outPtr":"0x9017cf8","time":"2026-04-25T23:04:49.632Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9017010","outPtr":"0x95ea74","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T23:04:49.632Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x95ea74","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x95ea74","time":"2026-04-25T23:04:49.632Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9017010","outPtr":"0x95d708","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-25T23:04:49.633Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x95d708","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x95d708","time":"2026-04-25T23:04:49.633Z"} +{"event":"lmx.user-register-prebound.leave","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","retval":"0x0","mxReferenceHandle":1,"time":"2026-04-25T23:04:49.633Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x901c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x9020648","0x95e898","0x9dde29ff"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9020648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 01 09 1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 02 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T23:04:49.760Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x901c738","args":["0x1","0x1","0x1","0x168","0x99b7020","0xb7f2527e","0x9020214","0x9020204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x99b7020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 01 09 1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 02 09 20 01 00 02 00 00 00"}],"time":"2026-04-25T23:04:49.762Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T23:04:49.763Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T23:04:49.764Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x901c738","0x1","0x1","0x2","0x2","0x0","0x27","0x90ee408","0x95e898","0x9dde29ff"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x90ee408","hex":"1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T23:04:49.765Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x901c738","args":["0x1","0x1","0x2","0x55","0x99b7020","0xb7f2527e","0x90f9584","0x90f9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x99b7020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T23:04:49.766Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T23:04:49.767Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T23:04:49.767Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x901c738","args":["0x2c2","0xe696c4","0x72cebd0","0x76ffedd8","0x901c744","0x2c2","0xe696c4","0x206","0x3","0x761bc3c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xe696c4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 04 41 e8 3e ae 2f 79 47 99 62 74 92 4d b6 ee e3 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x761bc3c","hex":"00 d6 c6"}],"time":"2026-04-25T23:04:49.806Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:04:49.808Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x901c738","args":["0x97","0xe6dae4","0x72cebd0","0x76ffedd8","0x901c744","0x97","0xe6dae4","0x206","0x3","0x761bc3c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0xe6dae4","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 2c 95 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 04 41 e8 3e ae 2f 79 47 99 62 74 92 4d b6 ee e3 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x761bc3c","hex":"00 d6 c6"}],"time":"2026-04-25T23:04:49.810Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:04:49.812Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x901c738","args":["0x5c","0xe696c4","0x72cebd0","0x76ffedd8","0x901c744","0x5c","0xe696c4","0x206","0x3","0x761bc3c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xe696c4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c9 02 f3 e7 69 65 8d 49 b5 b6 f4 0b 3c 15 b3 f0 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x761bc3c","hex":"00 d6 c6"}],"time":"2026-04-25T23:04:49.819Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:04:49.821Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x901c738","args":["0x6c","0xe6dae4","0x72cebd0","0x76ffedd8","0x901c744","0x6c","0xe6dae4","0x206","0x3","0x761bc3c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0xe6dae4","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 f7 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c9 02 f3 e7 69 65 8d 49 b5 b6 f4 0b 3c 15 b3 f0 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 03 00 00 00 03 00 00 00 c0 00 d0 d1 46 be 04 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x761bc3c","hex":"00 d6 c6"}],"time":"2026-04-25T23:04:49.823Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:04:49.825Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x901c738","0x1","0x1","0x2","0x2","0x0","0x25","0x90ee768","0x95e8f4","0x9dde298b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x90ee768","hex":"21 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T23:04:54.670Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x901c738","args":["0x1","0x1","0x2","0x53","0x99b7020","0xb7f2526a","0x95e944","0x95e934","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x99b7020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 67 b2 c7 c2 93 eb 8e 4d 8c 91 26 81 69 bc f9 6f 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-25T23:04:54.670Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T23:04:54.671Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T23:04:54.671Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/104-frida-plain-advise-testint-prebound-fixed/harness.log b/captures/104-frida-plain-advise-testint-prebound-fixed/harness.log new file mode 100644 index 0000000..d456dbd --- /dev/null +++ b/captures/104-frida-plain-advise-testint-prebound-fixed/harness.log @@ -0,0 +1,14 @@ +2026-04-25T23:04:42.3435992+00:00 harness.start {"Scenario":"advise","ClientName":"MxFridaTrace-104-frida-plain-advise-testint-prebound-fixed","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T23:04:49.2476528+00:00 mx.register.begin {"ClientName":"MxFridaTrace-104-frida-plain-advise-testint-prebound-fixed"} +2026-04-25T23:04:49.6238968+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T23:04:49.6249121+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T23:04:49.6308448+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T23:04:49.6318270+00:00 mx.advise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T23:04:49.6348381+00:00 mx.advise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T23:04:54.6551456+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T23:04:54.6551456+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T23:04:54.6551456+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T23:04:54.6551456+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T23:04:54.6561442+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T23:04:58.5507460+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T23:04:58.5557340+00:00 harness.stop {} diff --git a/captures/105-frida-advise-shortdesc-prebound-fixed/frida-command.txt b/captures/105-frida-advise-shortdesc-prebound-fixed/frida-command.txt new file mode 100644 index 0000000..287172a --- /dev/null +++ b/captures/105-frida-advise-shortdesc-prebound-fixed/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=advise --tag=TestChildObject.ShortDesc --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\105-frida-advise-shortdesc-prebound-fixed\harness.log --client=MxFridaTrace-105-frida-advise-shortdesc-prebound-fixed diff --git a/captures/105-frida-advise-shortdesc-prebound-fixed/frida-events.tsv b/captures/105-frida-advise-shortdesc-prebound-fixed/frida-events.tsv new file mode 100644 index 0000000..79ed728 --- /dev/null +++ b/captures/105-frida-advise-shortdesc-prebound-fixed/frida-events.tsv @@ -0,0 +1,70 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-25T23:05:47.748Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-25T23:05:47.748Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-25T23:05:47.749Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-25T23:05:47.749Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-25T23:05:47.750Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-25T23:05:47.750Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-25T23:05:47.751Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-25T23:05:47.751Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-25T23:05:47.752Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-25T23:05:54.694Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-25T23:05:54.695Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T23:05:54.696Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-25T23:05:54.696Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:05:54.697Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-25T23:05:54.697Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-25T23:05:54.698Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-25T23:05:54.772Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:05:54.773Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe9ac [] +2026-04-25T23:05:54.773Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:05:54.774Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe9ac [] +2026-04-25T23:05:54.796Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-25T23:05:54.797Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-25T23:05:54.797Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-25T23:05:54.798Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-25T23:05:54.871Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-25T23:05:54.872Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fef34 [] +2026-04-25T23:05:54.873Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-25T23:05:54.874Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4feec4 [] +2026-04-25T23:05:54.874Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4feec4 [] +2026-04-25T23:05:54.874Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4feec4 [] +2026-04-25T23:05:54.876Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-25T23:05:54.876Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-25T23:05:54.877Z lmx.user-register-prebound.enter Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-25T23:05:54.878Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:05:54.878Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fef24 [] +2026-04-25T23:05:54.878Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-25T23:05:54.879Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fdbb8 [] +2026-04-25T23:05:54.879Z lmx.user-register-prebound.leave Lmx.dll MxConnection.UserRegisterPreboundReference 0x0 [] +2026-04-25T23:05:55.007Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b70648"",""0x4fed48"",""0x9c31393""]" 0 1 0x2 +2026-04-25T23:05:55.007Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b70648"",""0x4fed48"",""0x9c31393""]" 1 314 0x8b70648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00 +2026-04-25T23:05:55.010Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b6c738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9508020"",""0xc7d1a423"",""0x8b70214"",""0x8b70204"",""0x641add04"",""0x0""]" 0 360 0x9508020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00 +2026-04-25T23:05:55.011Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T23:05:55.011Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T23:05:55.012Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c3cbd8"",""0x4fed48"",""0x9c31393""]" 0 2 0x2 +2026-04-25T23:05:55.012Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c3cbd8"",""0x4fed48"",""0x9c31393""]" 1 39 0x8c3cbd8 1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T23:05:55.013Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b6c738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9508020"",""0xc7d1a423"",""0x8c49584"",""0x8c49574"",""0x641add04"",""0x0""]" 0 85 0x9508020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T23:05:55.014Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T23:05:55.014Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-25T23:05:55.028Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x2c2"",""0x76a532c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x2c2"",""0x76a532c"",""0x206"",""0x3"",""0x71c25e4""]" 0 706 0x76a532c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 bf 55 d7 8b b2 66 01 4b 9e e7 74 79 50 bf 86 36 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-25T23:05:55.028Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x2c2"",""0x76a532c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x2c2"",""0x76a532c"",""0x206"",""0x3"",""0x71c25e4""]" 1 518 0x3 +2026-04-25T23:05:55.028Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x2c2"",""0x76a532c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x2c2"",""0x76a532c"",""0x206"",""0x3"",""0x71c25e4""]" 2 3 0x71c25e4 88 b4 12 +2026-04-25T23:05:55.031Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:05:55.033Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x97"",""0x76a4224"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x97"",""0x76a4224"",""0x206"",""0x3"",""0x71c25e4""]" 0 151 0x76a4224 97 00 00 00 01 00 69 00 00 00 00 00 00 00 32 96 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 bf 55 d7 8b b2 66 01 4b 9e e7 74 79 50 bf 86 36 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-25T23:05:55.033Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x97"",""0x76a4224"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x97"",""0x76a4224"",""0x206"",""0x3"",""0x71c25e4""]" 1 518 0x3 +2026-04-25T23:05:55.033Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x97"",""0x76a4224"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x97"",""0x76a4224"",""0x206"",""0x3"",""0x71c25e4""]" 2 3 0x71c25e4 88 b4 12 +2026-04-25T23:05:55.035Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:05:55.037Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x5c"",""0x76a0f0c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x5c"",""0x76a0f0c"",""0x206"",""0x3"",""0x71c25e4""]" 0 92 0x76a0f0c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c5 85 56 d5 3e af c1 4f 80 49 40 db 08 2e d8 8c 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 +2026-04-25T23:05:55.037Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x5c"",""0x76a0f0c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x5c"",""0x76a0f0c"",""0x206"",""0x3"",""0x71c25e4""]" 1 518 0x3 +2026-04-25T23:05:55.037Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x5c"",""0x76a0f0c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x5c"",""0x76a0f0c"",""0x206"",""0x3"",""0x71c25e4""]" 2 3 0x71c25e4 88 b4 12 +2026-04-25T23:05:55.039Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:05:55.042Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x70"",""0x76a532c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x70"",""0x76a532c"",""0x206"",""0x3"",""0x71c25e4""]" 0 112 0x76a532c 70 00 00 00 01 00 42 00 00 00 00 00 00 00 f8 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c5 85 56 d5 3e af c1 4f 80 49 40 db 08 2e d8 8c 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00 +2026-04-25T23:05:55.042Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x70"",""0x76a532c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x70"",""0x76a532c"",""0x206"",""0x3"",""0x71c25e4""]" 1 518 0x3 +2026-04-25T23:05:55.042Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b6c738 "[""0x70"",""0x76a532c"",""0x6fee9f8"",""0x76ffedd8"",""0x8b6c744"",""0x70"",""0x76a532c"",""0x206"",""0x3"",""0x71c25e4""]" 2 3 0x71c25e4 88 b4 12 +2026-04-25T23:05:55.043Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-25T23:06:02.931Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c3cb48"",""0x4feda4"",""0x9c31387""]" 0 2 0x2 +2026-04-25T23:06:02.931Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b6c738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c3cb48"",""0x4feda4"",""0x9c31387""]" 1 37 0x8c3cb48 21 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T23:06:02.932Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b6c738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9508020"",""0xc7d1a417"",""0x4fedf4"",""0x4fede4"",""0x641add04"",""0x0""]" 0 83 0x9508020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00 +2026-04-25T23:06:02.933Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-25T23:06:02.934Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/105-frida-advise-shortdesc-prebound-fixed/frida-exit.txt b/captures/105-frida-advise-shortdesc-prebound-fixed/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/105-frida-advise-shortdesc-prebound-fixed/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/105-frida-advise-shortdesc-prebound-fixed/frida.stderr.txt b/captures/105-frida-advise-shortdesc-prebound-fixed/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/105-frida-advise-shortdesc-prebound-fixed/frida.stdout.jsonl b/captures/105-frida-advise-shortdesc-prebound-fixed/frida.stdout.jsonl new file mode 100644 index 0000000..72cd453 --- /dev/null +++ b/captures/105-frida-advise-shortdesc-prebound-fixed/frida.stdout.jsonl @@ -0,0 +1,74 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=advise --tag=TestChildObject.ShortDesc --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\105-frida-advise-shortdesc-prebound-fixed\harness.log --client=MxFridaTrace-105-frida-advise-shortdesc-prebound-fixed`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=advise --tag=TestChildObject.ShortDesc --duration=8 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\105-frida-advise-shortdesc-prebound-fixed\harness.log --client=MxFridaTrace-105-frida-advise-shortdesc-prebound-fixed`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-25T23:05:47.748Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-25T23:05:47.748Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-25T23:05:47.749Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-25T23:05:47.749Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-25T23:05:47.750Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-25T23:05:47.750Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-25T23:05:47.751Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-25T23:05:47.751Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-25T23:05:47.752Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-25T23:05:54.694Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-25T23:05:54.695Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-25T23:05:54.696Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-25T23:05:54.696Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-25T23:05:54.697Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-25T23:05:54.697Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-25T23:05:54.698Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fe9ac","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T23:05:54.772Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe9ac","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe9ac","time":"2026-04-25T23:05:54.773Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fe9ac","inWords":[65537,65537,0,0,0,0],"time":"2026-04-25T23:05:54.773Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe9ac","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe9ac","time":"2026-04-25T23:05:54.774Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-25T23:05:54.796Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-25T23:05:54.797Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-25T23:05:54.797Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-25T23:05:54.798Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8b7025c","outPtr":"0x4fefcc","referencePtr":"0x4ff000","reference":"TestChildObject.ShortDesc","time":"2026-04-25T23:05:54.871Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c111d0","outPtr":"0x4fef34","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x4fef34","time":"2026-04-25T23:05:54.872Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b70588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c3c950","flags10":1124099840,"word14":2,"word4c":131073,"word54":168600684,"word58":0,"word5c":0,"word60":0,"word64":146173968,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 40 cd c3 08 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 50 c9 c3 08 6c a4 0c 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 b6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 e4 f1 93 00 00 00 00 00"},"time":"2026-04-25T23:05:54.873Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b705d8","outPtr":"0x4feec4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x4feec4","time":"2026-04-25T23:05:54.874Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b705d8","outPtr":"0x4feec4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x4feec4","time":"2026-04-25T23:05:54.874Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b705d8","outPtr":"0x4feec4","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x4feec4","time":"2026-04-25T23:05:54.874Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b70588","referenceString":{"length":25,"capacity":31,"value":"TestChildObject.ShortDesc"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c3c950","flags10":1124099840,"word14":2,"word4c":131073,"word54":168600684,"word58":0,"word5c":0,"word60":0,"word64":146173968,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 40 cd c3 08 00 65 00 00 00 02 00 00 00 00 00 02 19 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 50 c9 c3 08 6c a4 0c 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 b6 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 e4 f1 93 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-25T23:05:54.876Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-25T23:05:54.876Z"} +{"event":"lmx.user-register-prebound.enter","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","self":"0x8b7024c","preboundHandle":1,"callback":"0x8c46c3c","userData":1,"outPtr":"0x8b67f28","time":"2026-04-25T23:05:54.877Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fef24","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T23:05:54.878Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fef24","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x4fef24","time":"2026-04-25T23:05:54.878Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b67010","outPtr":"0x4fdbb8","inWords":[65537,327682,186166,655461,621,0],"time":"2026-04-25T23:05:54.878Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fdbb8","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655461,"w4":621},"retval":"0x4fdbb8","time":"2026-04-25T23:05:54.879Z"} +{"event":"lmx.user-register-prebound.leave","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","retval":"0x0","mxReferenceHandle":1,"time":"2026-04-25T23:05:54.879Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b6c738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8b70648","0x4fed48","0x9c31393"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8b70648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T23:05:55.007Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b6c738","args":["0x1","0x1","0x1","0x168","0x9508020","0xc7d1a423","0x8b70214","0x8b70204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9508020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc b6 08 1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 b7 08 20 01 00 02 00 00 00"}],"time":"2026-04-25T23:05:55.010Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T23:05:55.011Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T23:05:55.011Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b6c738","0x1","0x1","0x2","0x2","0x0","0x27","0x8c3cbd8","0x4fed48","0x9c31393"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8c3cbd8","hex":"1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T23:05:55.012Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b6c738","args":["0x1","0x1","0x2","0x55","0x9508020","0xc7d1a423","0x8c49584","0x8c49574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9508020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 00 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T23:05:55.013Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T23:05:55.014Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T23:05:55.014Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x2c2","0x76a532c","0x6fee9f8","0x76ffedd8","0x8b6c744","0x2c2","0x76a532c","0x206","0x3","0x71c25e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x76a532c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 bf 55 d7 8b b2 66 01 4b 9e e7 74 79 50 bf 86 36 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71c25e4","hex":"88 b4 12"}],"time":"2026-04-25T23:05:55.028Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:05:55.031Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x97","0x76a4224","0x6fee9f8","0x76ffedd8","0x8b6c744","0x97","0x76a4224","0x206","0x3","0x71c25e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x76a4224","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 32 96 0c 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 bf 55 d7 8b b2 66 01 4b 9e e7 74 79 50 bf 86 36 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71c25e4","hex":"88 b4 12"}],"time":"2026-04-25T23:05:55.033Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:05:55.035Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x5c","0x76a0f0c","0x6fee9f8","0x76ffedd8","0x8b6c744","0x5c","0x76a0f0c","0x206","0x3","0x71c25e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x76a0f0c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c5 85 56 d5 3e af c1 4f 80 49 40 db 08 2e d8 8c 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71c25e4","hex":"88 b4 12"}],"time":"2026-04-25T23:05:55.037Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:05:55.039Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b6c738","args":["0x70","0x76a532c","0x6fee9f8","0x76ffedd8","0x8b6c744","0x70","0x76a532c","0x206","0x3","0x71c25e4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":112,"ptr":"0x76a532c","hex":"70 00 00 00 01 00 42 00 00 00 00 00 00 00 f8 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c5 85 56 d5 3e af c1 4f 80 49 40 db 08 2e d8 8c 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71c25e4","hex":"88 b4 12"}],"time":"2026-04-25T23:05:55.042Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-25T23:05:55.043Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b6c738","0x1","0x1","0x2","0x2","0x0","0x25","0x8c3cb48","0x4feda4","0x9c31387"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8c3cb48","hex":"21 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T23:06:02.931Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b6c738","args":["0x1","0x1","0x2","0x53","0x9508020","0xc7d1a417","0x4fedf4","0x4fede4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9508020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 1e fe 85 81 18 f9 eb 4e 99 d4 4d b8 98 57 55 3a 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 03 00 00 00"}],"time":"2026-04-25T23:06:02.932Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-25T23:06:02.933Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-25T23:06:02.934Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/105-frida-advise-shortdesc-prebound-fixed/harness.log b/captures/105-frida-advise-shortdesc-prebound-fixed/harness.log new file mode 100644 index 0000000..157fe7c --- /dev/null +++ b/captures/105-frida-advise-shortdesc-prebound-fixed/harness.log @@ -0,0 +1,14 @@ +2026-04-25T23:05:47.6580655+00:00 harness.start {"Scenario":"advise","ClientName":"MxFridaTrace-105-frida-advise-shortdesc-prebound-fixed","Tags":["TestChildObject.ShortDesc"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T23:05:54.5077657+00:00 mx.register.begin {"ClientName":"MxFridaTrace-105-frida-advise-shortdesc-prebound-fixed"} +2026-04-25T23:05:54.8692973+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T23:05:54.8692973+00:00 mx.additem.begin {"Tag":"TestChildObject.ShortDesc"} +2026-04-25T23:05:54.8762842+00:00 mx.additem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T23:05:54.8772851+00:00 mx.advise.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T23:05:54.8792901+00:00 mx.advise.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T23:06:02.9172339+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T23:06:02.9181752+00:00 mx.unadvise.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T23:06:02.9181752+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T23:06:02.9181752+00:00 mx.removeitem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T23:06:02.9181752+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T23:06:06.7990004+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T23:06:06.8040785+00:00 harness.stop {} diff --git a/captures/106-native-subscribe-testint-current/harness.log b/captures/106-native-subscribe-testint-current/harness.log new file mode 100644 index 0000000..cbf58f6 --- /dev/null +++ b/captures/106-native-subscribe-testint-current/harness.log @@ -0,0 +1,14 @@ +2026-04-26T00:13:28.2100655+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxTraceHarness-106-native-subscribe-testint-current","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T00:13:35.0858521+00:00 mx.register.begin {"ClientName":"MxTraceHarness-106-native-subscribe-testint-current"} +2026-04-26T00:13:35.4641404+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T00:13:35.4651409+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-26T00:13:35.4671406+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:13:35.4681481+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:13:35.4691428+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:13:43.5043241+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:13:43.5043241+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:13:43.5043241+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:13:43.5053233+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:13:43.5053233+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T00:13:47.3377660+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T00:13:47.3426992+00:00 harness.stop {} diff --git a/captures/107-native-write-testint-current/harness.log b/captures/107-native-write-testint-current/harness.log new file mode 100644 index 0000000..de1b0fb --- /dev/null +++ b/captures/107-native-write-testint-current/harness.log @@ -0,0 +1,16 @@ +2026-04-26T00:13:55.8036207+00:00 harness.start {"Scenario":"write","ClientName":"MxTraceHarness-107-native-write-testint-current","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"791","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T00:14:02.5042758+00:00 mx.register.begin {"ClientName":"MxTraceHarness-107-native-write-testint-current"} +2026-04-26T00:14:02.8532199+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T00:14:02.8532199+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-26T00:14:02.8552240+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:14:02.8562300+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:14:02.8572309+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:14:03.8878177+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"791"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-26T00:14:03.8908836+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-26T00:14:11.9076290+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:14:11.9086308+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:14:11.9086308+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:14:11.9086308+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:14:11.9086308+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T00:14:15.7264517+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T00:14:15.7325114+00:00 harness.stop {} diff --git a/captures/108-native-subscribe-scalar-current/harness.log b/captures/108-native-subscribe-scalar-current/harness.log new file mode 100644 index 0000000..9454a5f --- /dev/null +++ b/captures/108-native-subscribe-scalar-current/harness.log @@ -0,0 +1,46 @@ +2026-04-26T00:15:42.9542936+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxTraceHarness-108-native-subscribe-scalar-current","Tags":["TestChildObject.TestBool","TestChildObject.TestInt","TestChildObject.TestFloat","TestChildObject.TestString","TestChildObject.ShortDesc"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T00:15:49.9794486+00:00 mx.register.begin {"ClientName":"MxTraceHarness-108-native-subscribe-scalar-current"} +2026-04-26T00:15:50.3515850+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T00:15:50.3515850+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-26T00:15:50.3535853+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-26T00:15:50.3545818+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-26T00:15:50.3545818+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-26T00:15:50.3555811+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-26T00:15:50.3555811+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-26T00:15:50.3555811+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-26T00:15:50.3555811+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-26T00:15:50.3555811+00:00 mx.additem.begin {"Tag":"TestChildObject.TestFloat"} +2026-04-26T00:15:50.3555811+00:00 mx.additem.end {"Tag":"TestChildObject.TestFloat","ItemHandle":3} +2026-04-26T00:15:50.3555811+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":3} +2026-04-26T00:15:50.3555811+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestFloat","ItemHandle":3} +2026-04-26T00:15:50.3555811+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-26T00:15:50.3555811+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":4} +2026-04-26T00:15:50.3555811+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestString","ItemHandle":4} +2026-04-26T00:15:50.3555811+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestString","ItemHandle":4} +2026-04-26T00:15:50.3555811+00:00 mx.additem.begin {"Tag":"TestChildObject.ShortDesc"} +2026-04-26T00:15:50.3555811+00:00 mx.additem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":5} +2026-04-26T00:15:50.3565837+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":5} +2026-04-26T00:15:50.3565837+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":5} +2026-04-26T00:15:58.3792015+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":5} +2026-04-26T00:15:58.3801308+00:00 mx.unadvise.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":5} +2026-04-26T00:15:58.3801308+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":5} +2026-04-26T00:15:58.3801308+00:00 mx.removeitem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":5} +2026-04-26T00:15:58.3801308+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestString","ItemHandle":4} +2026-04-26T00:15:58.3801308+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestString","ItemHandle":4} +2026-04-26T00:15:58.3801308+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":4} +2026-04-26T00:15:58.3801308+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":4} +2026-04-26T00:15:58.3801308+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":3} +2026-04-26T00:15:58.3801308+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestFloat","ItemHandle":3} +2026-04-26T00:15:58.3801308+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestFloat","ItemHandle":3} +2026-04-26T00:15:58.3801308+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestFloat","ItemHandle":3} +2026-04-26T00:15:58.3801308+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-26T00:15:58.3812003+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-26T00:15:58.3812003+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-26T00:15:58.3812003+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-26T00:15:58.3812003+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-26T00:15:58.3812003+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-26T00:15:58.3812003+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-26T00:15:58.3812003+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":1} +2026-04-26T00:15:58.3812003+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T00:16:02.2999475+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T00:16:02.3059909+00:00 harness.stop {} diff --git a/captures/109-native-post-remove-errors/harness.log b/captures/109-native-post-remove-errors/harness.log new file mode 100644 index 0000000..907d444 --- /dev/null +++ b/captures/109-native-post-remove-errors/harness.log @@ -0,0 +1,26 @@ +2026-04-26T00:44:10.6044790+00:00 harness.start {"Scenario":"post-remove-errors","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"900","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T00:44:17.5759075+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-26T00:44:17.9645056+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T00:44:17.9655190+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-26T00:44:17.9674875+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:17.9705315+00:00 mx.post-remove.remove.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:17.9705315+00:00 mx.post-remove.remove.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:17.9715269+00:00 mx.post-remove.advise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:17.9905007+00:00 mx.post-remove.advise.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Advise(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__0() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 478\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:17.9914937+00:00 mx.post-remove.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:17.9924838+00:00 mx.post-remove.advise-supervisory.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.AdviseSupervisory(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__1() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 479\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:17.9924838+00:00 mx.post-remove.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:17.9924838+00:00 mx.post-remove.unadvise.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.UnAdvise(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__2() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 480\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:17.9924838+00:00 mx.post-remove.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:18.0015508+00:00 mx.post-remove.write.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Int32 UserID)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__3() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 481\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:18.0025513+00:00 mx.post-remove.write2.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:18.0045512+00:00 mx.post-remove.write2.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write2(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Object pItemTime, Int32 UserID)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__4() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 482\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:18.0045512+00:00 mx.post-remove.suspend.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:18.0055508+00:00 mx.post-remove.suspend.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Suspend(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__5() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 486\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:18.0055508+00:00 mx.post-remove.activate.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:18.0065534+00:00 mx.post-remove.activate.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Activate(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__6() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 492\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:18.0065534+00:00 mx.post-remove.remove-again.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:44:18.0075634+00:00 mx.post-remove.remove-again.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.RemoveItem(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass5_0.b__7() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 495\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 503"} +2026-04-26T00:44:19.0367169+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T00:44:22.9571690+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T00:44:22.9631820+00:00 harness.stop {} diff --git a/captures/110-native-invalid-handle-errors/harness.log b/captures/110-native-invalid-handle-errors/harness.log new file mode 100644 index 0000000..1000a3b --- /dev/null +++ b/captures/110-native-invalid-handle-errors/harness.log @@ -0,0 +1,42 @@ +2026-04-26T00:48:18.1331614+00:00 harness.start {"Scenario":"invalid-handle-errors","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"902","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T00:48:27.4138059+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-26T00:48:28.2076680+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T00:48:28.2086640+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-26T00:48:28.2116649+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.2176684+00:00 mx.invalid-handle.cross-register.begin {"ClientName":"MxProtoTraceHarness.Cross"} +2026-04-26T00:48:28.3363427+00:00 mx.invalid-handle.cross-register.end {"SessionHandle":2} +2026-04-26T00:48:28.3381167+00:00 mx.invalid-handle.additem-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.3690215+00:00 mx.invalid-handle.additem-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.AddItem(Int32 hLMXServerHandle, String strItemDef)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__0() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 522\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.3710124+00:00 mx.invalid-handle.additem2-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.3750196+00:00 mx.invalid-handle.additem2-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.AddItem2(Int32 hLMXServerHandle, String strItemDef, String strItemCtxt)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__1() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 527\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.3750196+00:00 mx.invalid-handle.remove-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.3770155+00:00 mx.invalid-handle.remove-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.RemoveItem(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__2() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 530\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.3770155+00:00 mx.invalid-handle.advise-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.3780221+00:00 mx.invalid-handle.advise-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Advise(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__3() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 531\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.3780221+00:00 mx.invalid-handle.advise-supervisory-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.3790205+00:00 mx.invalid-handle.advise-supervisory-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.AdviseSupervisory(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__4() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 532\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.3800186+00:00 mx.invalid-handle.unadvise-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.3800186+00:00 mx.invalid-handle.unadvise-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.UnAdvise(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__5() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 533\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.3810161+00:00 mx.invalid-handle.write-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.3970299+00:00 mx.invalid-handle.write-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Int32 UserID)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__6() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 534\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.3970299+00:00 mx.invalid-handle.write2-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.4000302+00:00 mx.invalid-handle.write2-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write2(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Object pItemTime, Int32 UserID)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__7() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 535\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.4000302+00:00 mx.invalid-handle.suspend-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.4030300+00:00 mx.invalid-handle.suspend-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Suspend(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__8() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 539\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.4030300+00:00 mx.invalid-handle.activate-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.4040280+00:00 mx.invalid-handle.activate-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Activate(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__9() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 545\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.4040280+00:00 mx.invalid-handle.unregister-invalid-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.4060246+00:00 mx.invalid-handle.unregister-invalid-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Unregister(Int32 hLMXServerHandle)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__10() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 548\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.4060246+00:00 mx.invalid-handle.remove-cross-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.4069066+00:00 mx.invalid-handle.remove-cross-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.RemoveItem(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__11() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 550\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.4070323+00:00 mx.invalid-handle.advise-cross-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.4070323+00:00 mx.invalid-handle.advise-cross-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Advise(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__12() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 551\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.4080250+00:00 mx.invalid-handle.write-cross-server.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:28.4090240+00:00 mx.invalid-handle.write-cross-server.error {"Payload":{"Tag":"TestChildObject.TestInt","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Int32 UserID)\r\n at MxTraceHarness.Program.<>c__DisplayClass6_0.b__13() in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 552\r\n at MxTraceHarness.Program.TryLogOperation(String eventName, String tag, Int32 itemHandle, Action action) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 568"} +2026-04-26T00:48:28.4090240+00:00 mx.invalid-handle.cross-unregister.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:32.9176336+00:00 mx.invalid-handle.cross-unregister.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:33.9677767+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:33.9682394+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T00:48:33.9683392+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T00:48:34.4755869+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T00:48:34.4835493+00:00 harness.stop {} diff --git a/captures/111-frida-write-secured-auth-protectedvalue/frida-command.txt b/captures/111-frida-write-secured-auth-protectedvalue/frida-command.txt new file mode 100644 index 0000000..1cfc4ff --- /dev/null +++ b/captures/111-frida-write-secured-auth-protectedvalue/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\111-frida-write-secured-auth-protectedvalue\harness.log --client=MxFridaTrace-111-frida-write-secured-auth-protectedvalue diff --git a/captures/111-frida-write-secured-auth-protectedvalue/frida-events.tsv b/captures/111-frida-write-secured-auth-protectedvalue/frida-events.tsv new file mode 100644 index 0000000..7203bbd --- /dev/null +++ b/captures/111-frida-write-secured-auth-protectedvalue/frida-events.tsv @@ -0,0 +1,74 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T01:23:07.668Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T01:23:07.669Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T01:23:07.669Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T01:23:07.670Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T01:23:07.670Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T01:23:07.670Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T01:23:07.671Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T01:23:07.671Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T01:23:07.672Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T01:23:14.511Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:23:14.512Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T01:23:14.513Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T01:23:14.513Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:23:14.514Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:23:14.515Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T01:23:14.515Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T01:23:14.612Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T01:23:14.613Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T01:23:14.613Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T01:23:14.614Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T01:23:14.667Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:23:14.667Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe4a0 [] +2026-04-26T01:23:14.668Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:23:14.668Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe4a0 [] +2026-04-26T01:23:14.757Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:23:14.758Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fea24 [] +2026-04-26T01:23:14.759Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:23:14.760Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fe9b4 [] +2026-04-26T01:23:14.760Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fe9b4 [] +2026-04-26T01:23:14.761Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fe9b4 [] +2026-04-26T01:23:14.762Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T01:23:14.762Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:23:14.764Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x4feb7c "[""0x5968fe0"",""0x1"",""0x1"",""0xd6177ed7"",""0x74794704""]" +2026-04-26T01:23:14.764Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:23:14.764Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe9fc [] +2026-04-26T01:23:14.765Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:23:14.765Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fd690 [] +2026-04-26T01:23:14.765Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T01:23:14.895Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bcc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8bd0620"",""0x4fe840"",""0x5cbecfd7""]" 0 1 0x2 +2026-04-26T01:23:14.895Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bcc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8bd0620"",""0x4fe840"",""0x5cbecfd7""]" 1 314 0x8bd0620 True:u8@1 True:u8@3 True:u8@4 True:u8@6 True:u8@111 True:u8@112 True:u8@114 True:u8@116 True:u8@130 True:u8@136 True:u8@156 True:u8@161 True:u8@163 True:u8@164 True:u8@166 True:u8@283 True:u8@284 True:u8@286 True:u8@288 True:u8@302 True:u8@308 True:i32@6 True:i32@116 True:i32@156 True:i32@166 True:i32@288 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc bc 08 1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 bd 08 20 01 00 02 00 00 00 +2026-04-26T01:23:14.898Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bcc710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x956e020"",""0xf5940164"",""0x8bd01ec"",""0x8bd01dc"",""0x641add04"",""0x0""]" 0 360 0x956e020 True:u8@0 True:u8@3 True:u8@10 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@49 True:u8@50 True:u8@52 True:u8@157 True:u8@158 True:u8@160 True:u8@162 True:u8@176 True:u8@182 True:u8@202 True:u8@207 True:u8@209 True:u8@210 True:u8@212 True:u8@329 True:u8@330 True:u8@332 True:u8@334 True:u8@348 True:u8@354 True:i32@3 True:i32@10 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@52 True:i32@162 True:i32@202 True:i32@212 True:i32@334 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc bc 08 1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 bd 08 20 01 00 02 00 00 00 +2026-04-26T01:23:14.899Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:23:14.899Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:23:14.900Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bcc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c9e080"",""0x4fe840"",""0x5cbecfd7""]" 0 2 0x2 +2026-04-26T01:23:14.900Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bcc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c9e080"",""0x4fe840"",""0x5cbecfd7""]" 1 39 0x8c9e080 True:u8@1 1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:23:14.901Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bcc710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x956e020"",""0xf5940164"",""0x8ca955c"",""0x8ca954c"",""0x641add04"",""0x0""]" 0 85 0x956e020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:23:14.902Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:23:14.902Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:23:14.925Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x5c"",""0x7760b8c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x5c"",""0x7760b8c"",""0x206"",""0x3"",""0x73442cc""]" 0 92 0x7760b8c True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@54 True:u8@56 True:i32@18 True:i32@22 True:i32@30 True:i32@34 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 d0 e9 c4 40 93 bf 08 47 a6 5d d5 73 ef c4 8f f1 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 +2026-04-26T01:23:14.925Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x5c"",""0x7760b8c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x5c"",""0x7760b8c"",""0x206"",""0x3"",""0x73442cc""]" 1 518 0x3 +2026-04-26T01:23:14.925Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x5c"",""0x7760b8c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x5c"",""0x7760b8c"",""0x206"",""0x3"",""0x73442cc""]" 2 3 0x73442cc 78 04 10 +2026-04-26T01:23:14.927Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:23:14.930Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x69"",""0x76f3f1c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x69"",""0x76f3f1c"",""0x206"",""0x3"",""0x73442cc""]" 0 105 0x76f3f1c True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 1b 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 d0 e9 c4 40 93 bf 08 47 a6 5d d5 73 ef c4 8f f1 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 03 00 00 00 03 00 00 00 c0 00 e0 51 14 30 81 d4 +2026-04-26T01:23:14.930Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x69"",""0x76f3f1c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x69"",""0x76f3f1c"",""0x206"",""0x3"",""0x73442cc""]" 1 518 0x3 +2026-04-26T01:23:14.930Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x69"",""0x76f3f1c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x69"",""0x76f3f1c"",""0x206"",""0x3"",""0x73442cc""]" 2 3 0x73442cc 78 04 10 +2026-04-26T01:23:14.932Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:23:14.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x2c2"",""0x7760b8c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x2c2"",""0x7760b8c"",""0x206"",""0x3"",""0x73442cc""]" 0 706 0x7760b8c True:u8@4 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@205 True:u8@206 True:u8@208 True:u8@210 True:u8@224 True:u8@342 True:u8@344 True:u8@346 True:u8@563 True:u8@564 True:u8@566 True:u8@568 True:u8@582 True:u8@700 True:u8@702 True:u8@704 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 b9 7a fe 75 f8 12 b2 46 8d ec a5 46 77 66 6d 6b 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T01:23:14.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x2c2"",""0x7760b8c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x2c2"",""0x7760b8c"",""0x206"",""0x3"",""0x73442cc""]" 1 518 0x3 +2026-04-26T01:23:14.936Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x2c2"",""0x7760b8c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x2c2"",""0x7760b8c"",""0x206"",""0x3"",""0x73442cc""]" 2 3 0x73442cc 78 04 10 +2026-04-26T01:23:14.938Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:23:14.940Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x97"",""0x76f1d0c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x97"",""0x76f1d0c"",""0x206"",""0x3"",""0x73442cc""]" 0 151 0x76f1d0c True:u8@4 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@89 True:u8@106 True:u8@119 True:u8@139 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 True:i32@89 97 00 00 00 01 00 69 00 00 00 00 00 00 00 06 17 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 b9 7a fe 75 f8 12 b2 46 8d ec a5 46 77 66 6d 6b 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T01:23:14.940Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x97"",""0x76f1d0c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x97"",""0x76f1d0c"",""0x206"",""0x3"",""0x73442cc""]" 1 518 0x3 +2026-04-26T01:23:14.940Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8bcc710 "[""0x97"",""0x76f1d0c"",""0x70eee40"",""0x76ffedd8"",""0x8bcc71c"",""0x97"",""0x76f1d0c"",""0x206"",""0x3"",""0x73442cc""]" 2 3 0x73442cc 78 04 10 +2026-04-26T01:23:14.942Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:23:15.803Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x4feb40 [] +2026-04-26T01:23:15.826Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-26T01:23:15.841Z call.enter LmxProxy.dll CLMXProxyServer.WriteSecured.variantA 0x4feb4c "[""0x5968fe0"",""0x1"",""0x1"",""0x1"",""0x0"",""0xb"",""0x0"",""0xffff"",""0x0"",""0xd6177ed7""]" +2026-04-26T01:23:15.841Z call.leave LmxProxy.dll CLMXProxyServer.WriteSecured.variantA 0x80004021 [] +2026-04-26T01:23:20.931Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bcc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c9dcd8"",""0x4fe89c"",""0x5cbecfe3""]" 0 2 0x2 +2026-04-26T01:23:20.931Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8bcc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c9dcd8"",""0x4fe89c"",""0x5cbecfe3""]" 1 37 0x8c9dcd8 True:u8@1 21 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:23:20.932Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8bcc710 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x956e020"",""0xf5940150"",""0x4fe8ec"",""0x4fe8dc"",""0x641add04"",""0x0""]" 0 83 0x956e020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:23:20.933Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:23:20.933Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/111-frida-write-secured-auth-protectedvalue/frida-exit.txt b/captures/111-frida-write-secured-auth-protectedvalue/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/111-frida-write-secured-auth-protectedvalue/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/111-frida-write-secured-auth-protectedvalue/frida.stderr.txt b/captures/111-frida-write-secured-auth-protectedvalue/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/111-frida-write-secured-auth-protectedvalue/frida.stdout.jsonl b/captures/111-frida-write-secured-auth-protectedvalue/frida.stdout.jsonl new file mode 100644 index 0000000..b17d6bd --- /dev/null +++ b/captures/111-frida-write-secured-auth-protectedvalue/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\111-frida-write-secured-auth-protectedvalue\harness.log --client=MxFridaTrace-111-frida-write-secured-auth-protectedvalue`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\111-frida-write-secured-auth-protectedvalue\harness.log --client=MxFridaTrace-111-frida-write-secured-auth-protectedvalue`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T01:23:07.668Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T01:23:07.669Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T01:23:07.669Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T01:23:07.670Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T01:23:07.670Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T01:23:07.670Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T01:23:07.671Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T01:23:07.671Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T01:23:07.672Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T01:23:14.511Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T01:23:14.512Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T01:23:14.513Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T01:23:14.513Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T01:23:14.514Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T01:23:14.515Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T01:23:14.515Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T01:23:14.612Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T01:23:14.613Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T01:23:14.613Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T01:23:14.614Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bc6fe8","outPtr":"0x4fe4a0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:23:14.667Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe4a0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe4a0","time":"2026-04-26T01:23:14.667Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bc6fe8","outPtr":"0x4fe4a0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:23:14.668Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe4a0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe4a0","time":"2026-04-26T01:23:14.668Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8bd0234","outPtr":"0x4feabc","referencePtr":"0x4feaf0","reference":"TestMachine_001.ProtectedValue","time":"2026-04-26T01:23:14.757Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c71450","outPtr":"0x4fea24","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fea24","time":"2026-04-26T01:23:14.758Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8bd0560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c9dc48","flags10":1124099840,"word14":2,"word4c":131073,"word54":126287716,"word58":0,"word5c":0,"word60":0,"word64":146567144,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 10 e1 c9 08 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 48 dc c9 08 64 ff 86 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f bc 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 64 73 99 00 00 00 00 00"},"time":"2026-04-26T01:23:14.759Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8bd05b0","outPtr":"0x4fe9b4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fe9b4","time":"2026-04-26T01:23:14.760Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8bd05b0","outPtr":"0x4fe9b4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fe9b4","time":"2026-04-26T01:23:14.760Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8bd05b0","outPtr":"0x4fe9b4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fe9b4","time":"2026-04-26T01:23:14.761Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8bd0560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c9dc48","flags10":1124099840,"word14":2,"word4c":131073,"word54":126287716,"word58":0,"word5c":0,"word60":0,"word64":146567144,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 10 e1 c9 08 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 48 dc c9 08 64 ff 86 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f bc 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 64 73 99 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T01:23:14.762Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T01:23:14.762Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x4feb7c","args":["0x5968fe0","0x1","0x1","0xd6177ed7","0x74794704"],"time":"2026-04-26T01:23:14.764Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bc6fe8","outPtr":"0x4fe9fc","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:23:14.764Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe9fc","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fe9fc","time":"2026-04-26T01:23:14.764Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8bc6fe8","outPtr":"0x4fd690","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:23:14.765Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fd690","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fd690","time":"2026-04-26T01:23:14.765Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T01:23:14.765Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bcc710","0x1","0x1","0x1","0x2","0x0","0x13a","0x8bd0620","0x4fe840","0x5cbecfd7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8bd0620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc bc 08 1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 bd 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:23:14.895Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bcc710","args":["0x1","0x1","0x1","0x168","0x956e020","0xf5940164","0x8bd01ec","0x8bd01dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x956e020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc bc 08 1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 bd 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:23:14.898Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:23:14.899Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:23:14.899Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bcc710","0x1","0x1","0x2","0x2","0x0","0x27","0x8c9e080","0x4fe840","0x5cbecfd7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8c9e080","hex":"1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:23:14.900Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bcc710","args":["0x1","0x1","0x2","0x55","0x956e020","0xf5940164","0x8ca955c","0x8ca954c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x956e020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:23:14.901Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:23:14.902Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:23:14.902Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bcc710","args":["0x5c","0x7760b8c","0x70eee40","0x76ffedd8","0x8bcc71c","0x5c","0x7760b8c","0x206","0x3","0x73442cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7760b8c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 d0 e9 c4 40 93 bf 08 47 a6 5d d5 73 ef c4 8f f1 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73442cc","hex":"78 04 10"}],"time":"2026-04-26T01:23:14.925Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:23:14.927Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bcc710","args":["0x69","0x76f3f1c","0x70eee40","0x76ffedd8","0x8bcc71c","0x69","0x76f3f1c","0x206","0x3","0x73442cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x76f3f1c","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 1b 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 d0 e9 c4 40 93 bf 08 47 a6 5d d5 73 ef c4 8f f1 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 03 00 00 00 03 00 00 00 c0 00 e0 51 14 30 81 d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73442cc","hex":"78 04 10"}],"time":"2026-04-26T01:23:14.930Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:23:14.932Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bcc710","args":["0x2c2","0x7760b8c","0x70eee40","0x76ffedd8","0x8bcc71c","0x2c2","0x7760b8c","0x206","0x3","0x73442cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7760b8c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 b9 7a fe 75 f8 12 b2 46 8d ec a5 46 77 66 6d 6b 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73442cc","hex":"78 04 10"}],"time":"2026-04-26T01:23:14.936Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:23:14.938Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8bcc710","args":["0x97","0x76f1d0c","0x70eee40","0x76ffedd8","0x8bcc71c","0x97","0x76f1d0c","0x206","0x3","0x73442cc"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x76f1d0c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 06 17 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 b9 7a fe 75 f8 12 b2 46 8d ec a5 46 77 66 6d 6b 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x73442cc","hex":"78 04 10"}],"time":"2026-04-26T01:23:14.940Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:23:14.942Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0x4feb40","serverHandle":1,"user":"dohertj2","passwordLength":8,"userIdOut":"0x4feb24","time":"2026-04-26T01:23:15.803Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-26T01:23:15.826Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","address":"0x65a52f24","ecx":"0x4feb4c","args":["0x5968fe0","0x1","0x1","0x1","0x0","0xb","0x0","0xffff","0x0","0xd6177ed7"],"time":"2026-04-26T01:23:15.841Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","retval":"0x80004021","time":"2026-04-26T01:23:15.841Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8bcc710","0x1","0x1","0x2","0x2","0x0","0x25","0x8c9dcd8","0x4fe89c","0x5cbecfe3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8c9dcd8","hex":"21 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:23:20.931Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8bcc710","args":["0x1","0x1","0x2","0x53","0x956e020","0xf5940150","0x4fe8ec","0x4fe8dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x956e020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 0e e9 1b 3a 89 4d 59 41 9b 7a 70 d5 94 00 3b 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:23:20.932Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:23:20.933Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:23:20.933Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/111-frida-write-secured-auth-protectedvalue/harness.log b/captures/111-frida-write-secured-auth-protectedvalue/harness.log new file mode 100644 index 0000000..594c5c9 --- /dev/null +++ b/captures/111-frida-write-secured-auth-protectedvalue/harness.log @@ -0,0 +1,18 @@ +2026-04-26T01:23:07.6060968+00:00 harness.start {"Scenario":"write-secured","ClientName":"MxFridaTrace-111-frida-write-secured-auth-protectedvalue","Tags":["TestMachine_001.ProtectedValue"],"ItemContext":"","WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":1,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"dohertj2","AuthenticateBeforeWrite":true,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T01:23:14.3995263+00:00 mx.register.begin {"ClientName":"MxFridaTrace-111-frida-write-secured-auth-protectedvalue"} +2026-04-26T01:23:14.7564155+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T01:23:14.7564155+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue"} +2026-04-26T01:23:14.7623536+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:23:14.7633201+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:23:14.7653456+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:23:15.8018917+00:00 mx.authenticate-before-write.begin {"AuthUser":"dohertj2","PasswordSource":"env"} +2026-04-26T01:23:15.8269348+00:00 mx.authenticate-before-write.end {"AuthUser":"dohertj2","AuthenticatedUserId":1,"CurrentUserId":1,"VerifierUserId":0} +2026-04-26T01:23:15.8389294+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-26T01:23:15.8618735+00:00 mx.item.error {"Payload":{"Tag":"TestMachine_001.ProtectedValue"},"Exception":"System.Runtime.InteropServices.COMException","Message":"The operation attempted is not supported. (Exception from HRESULT: 0x80004021)","HResult":"0x80004021","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.WriteSecured(Int32 hLMXServerHandle, Int32 hItem, Int32 CurrentUserID, Int32 VerifierUserID, Object pItemValue)\r\n at MxTraceHarness.Program.InvokeWrite(LMXProxyServerClass proxy, Int32 sessionHandle, Int32 itemHandle, Object writeValue, Options options) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 456\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 181"} +2026-04-26T01:23:20.9173536+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:23:20.9173536+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:23:20.9183513+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:23:20.9183513+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:23:20.9183513+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T01:23:24.8883703+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T01:23:24.8943739+00:00 harness.stop {} diff --git a/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-command.txt b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-command.txt new file mode 100644 index 0000000..b1f91c6 --- /dev/null +++ b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --authenticated-user-is-verifier --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\112-frida-write-secured-auth-verified-protectedvalue1\harness.log --client=MxFridaTrace-112-frida-write-secured-auth-verified-protectedvalue1 diff --git a/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-events.tsv b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-events.tsv new file mode 100644 index 0000000..af2b1cd --- /dev/null +++ b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-events.tsv @@ -0,0 +1,74 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T01:24:05.401Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T01:24:05.402Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T01:24:05.402Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T01:24:05.403Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T01:24:05.403Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T01:24:05.404Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T01:24:05.405Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T01:24:05.405Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T01:24:05.406Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T01:24:18.601Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:24:18.602Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T01:24:18.603Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T01:24:18.603Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:18.604Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:24:18.604Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T01:24:18.605Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T01:24:18.779Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:18.780Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe6bc [] +2026-04-26T01:24:18.780Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:18.781Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe6bc [] +2026-04-26T01:24:18.803Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T01:24:18.804Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T01:24:18.804Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T01:24:18.805Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T01:24:18.877Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:24:18.877Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfec50 [] +2026-04-26T01:24:18.878Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:24:18.879Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfebe0 [] +2026-04-26T01:24:18.879Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfebe0 [] +2026-04-26T01:24:18.880Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfebe0 [] +2026-04-26T01:24:18.881Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T01:24:18.881Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:24:18.882Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfedac "[""0x5d08fe0"",""0x1"",""0x1"",""0x8f5a4129"",""0x74794704""]" +2026-04-26T01:24:18.883Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:18.883Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfec2c [] +2026-04-26T01:24:18.883Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:18.884Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfd8c0 [] +2026-04-26T01:24:18.884Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T01:24:19.009Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x92ec710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x92f0620"",""0xcfea70"",""0x29f36840""]" 0 1 0x2 +2026-04-26T01:24:19.009Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x92ec710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x92f0620"",""0xcfea70"",""0x29f36840""]" 1 314 0x92f0620 True:u8@1 True:u8@3 True:u8@4 True:u8@6 True:u8@111 True:u8@112 True:u8@114 True:u8@116 True:u8@130 True:u8@136 True:u8@156 True:u8@161 True:u8@163 True:u8@164 True:u8@166 True:u8@283 True:u8@284 True:u8@286 True:u8@288 True:u8@302 True:u8@308 True:i32@6 True:i32@116 True:i32@156 True:i32@166 True:i32@288 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 2e 09 1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 2f 09 20 01 00 02 00 00 00 +2026-04-26T01:24:19.011Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x92ec710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa4f4020"",""0xd2d342b"",""0x92f01ec"",""0x92f01dc"",""0x641add04"",""0x0""]" 0 360 0xa4f4020 True:u8@0 True:u8@3 True:u8@10 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@49 True:u8@50 True:u8@52 True:u8@157 True:u8@158 True:u8@160 True:u8@162 True:u8@176 True:u8@182 True:u8@202 True:u8@207 True:u8@209 True:u8@210 True:u8@212 True:u8@329 True:u8@330 True:u8@332 True:u8@334 True:u8@348 True:u8@354 True:i32@3 True:i32@10 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@52 True:i32@162 True:i32@202 True:i32@212 True:i32@334 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 2e 09 1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 2f 09 20 01 00 02 00 00 00 +2026-04-26T01:24:19.012Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:24:19.012Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:24:19.013Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x92ec710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x93bda98"",""0xcfea70"",""0x29f36840""]" 0 2 0x2 +2026-04-26T01:24:19.013Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x92ec710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x93bda98"",""0xcfea70"",""0x29f36840""]" 1 39 0x93bda98 True:u8@1 1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:24:19.015Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x92ec710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa4f4020"",""0xd2d342b"",""0x93c955c"",""0x93c954c"",""0x641add04"",""0x0""]" 0 85 0xa4f4020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:24:19.016Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:24:19.016Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:24:19.029Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x5c"",""0x7af413c"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x5c"",""0x7af413c"",""0x206"",""0x3"",""0x776b214""]" 0 92 0x7af413c True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@54 True:u8@56 True:u8@73 True:i32@18 True:i32@22 True:i32@30 True:i32@34 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 21 34 45 ea 24 63 33 4c 88 01 26 b8 cc f3 10 ef 40 12 ae 08 37 e9 69 42 ab 32 52 82 +2026-04-26T01:24:19.029Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x5c"",""0x7af413c"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x5c"",""0x7af413c"",""0x206"",""0x3"",""0x776b214""]" 1 518 0x3 +2026-04-26T01:24:19.029Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x5c"",""0x7af413c"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x5c"",""0x7af413c"",""0x206"",""0x3"",""0x776b214""]" 2 3 0x776b214 b0 fa 74 +2026-04-26T01:24:19.031Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:19.035Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x69"",""0x7af7454"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x69"",""0x7af7454"",""0x206"",""0x3"",""0x776b214""]" 0 105 0x7af7454 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:u8@66 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 1f 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 21 34 45 ea 24 63 33 4c 88 01 26 b8 cc f3 10 ef 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 03 00 00 00 03 00 00 00 c0 00 c0 32 3e 40 81 d4 +2026-04-26T01:24:19.035Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x69"",""0x7af7454"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x69"",""0x7af7454"",""0x206"",""0x3"",""0x776b214""]" 1 518 0x3 +2026-04-26T01:24:19.035Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x69"",""0x7af7454"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x69"",""0x7af7454"",""0x206"",""0x3"",""0x776b214""]" 2 3 0x776b214 b0 fa 74 +2026-04-26T01:24:19.036Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:19.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x2c2"",""0x7af413c"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x2c2"",""0x7af413c"",""0x206"",""0x3"",""0x776b214""]" 0 706 0x7af413c True:u8@4 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@205 True:u8@206 True:u8@208 True:u8@210 True:u8@224 True:u8@342 True:u8@344 True:u8@346 True:u8@563 True:u8@564 True:u8@566 True:u8@568 True:u8@582 True:u8@700 True:u8@702 True:u8@704 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 1a c6 c4 91 bb bf e7 41 80 67 26 c3 82 c0 20 37 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T01:24:19.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x2c2"",""0x7af413c"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x2c2"",""0x7af413c"",""0x206"",""0x3"",""0x776b214""]" 1 518 0x3 +2026-04-26T01:24:19.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x2c2"",""0x7af413c"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x2c2"",""0x7af413c"",""0x206"",""0x3"",""0x776b214""]" 2 3 0x776b214 b0 fa 74 +2026-04-26T01:24:19.042Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:19.045Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x97"",""0x7af7454"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x97"",""0x7af7454"",""0x206"",""0x3"",""0x776b214""]" 0 151 0x7af7454 True:u8@4 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@89 True:u8@106 True:u8@119 True:u8@139 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 True:i32@89 97 00 00 00 01 00 69 00 00 00 00 00 00 00 09 18 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 1a c6 c4 91 bb bf e7 41 80 67 26 c3 82 c0 20 37 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T01:24:19.045Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x97"",""0x7af7454"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x97"",""0x7af7454"",""0x206"",""0x3"",""0x776b214""]" 1 518 0x3 +2026-04-26T01:24:19.045Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x92ec710 "[""0x97"",""0x7af7454"",""0x747ec20"",""0x76ffedd8"",""0x92ec71c"",""0x97"",""0x7af7454"",""0x206"",""0x3"",""0x776b214""]" 2 3 0x776b214 b0 fa 74 +2026-04-26T01:24:19.046Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:19.914Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0xcfed70 [] +2026-04-26T01:24:19.931Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-26T01:24:19.946Z call.enter LmxProxy.dll CLMXProxyServer.WriteSecured.variantA 0xcfed7c "[""0x5d08fe0"",""0x1"",""0x1"",""0x1"",""0x1"",""0xb"",""0x0"",""0xffff"",""0x0"",""0x8f5a4129""]" +2026-04-26T01:24:19.946Z call.leave LmxProxy.dll CLMXProxyServer.WriteSecured.variantA 0x80004021 [] +2026-04-26T01:24:25.005Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x92ec710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x93be038"",""0xcfeacc"",""0x29f36854""]" 0 2 0x2 +2026-04-26T01:24:25.005Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x92ec710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x93be038"",""0xcfeacc"",""0x29f36854""]" 1 37 0x93be038 True:u8@1 21 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:24:25.006Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x92ec710 "[""0x1"",""0x1"",""0x2"",""0x53"",""0xa4f4020"",""0xd2d343f"",""0xcfeb1c"",""0xcfeb0c"",""0x641add04"",""0x0""]" 0 83 0xa4f4020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:24:25.007Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:24:25.007Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-exit.txt b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida.stderr.txt b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida.stdout.jsonl b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida.stdout.jsonl new file mode 100644 index 0000000..58c0616 --- /dev/null +++ b/captures/112-frida-write-secured-auth-verified-protectedvalue1/frida.stdout.jsonl @@ -0,0 +1,78 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --authenticated-user-is-verifier --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\112-frida-write-secured-auth-verified-protectedvalue1\harness.log --client=MxFridaTrace-112-frida-write-secured-auth-verified-protectedvalue1`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --authenticated-user-is-verifier --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\112-frida-write-secured-auth-verified-protectedvalue1\harness.log --client=MxFridaTrace-112-frida-write-secured-auth-verified-protectedvalue1`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T01:24:05.401Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T01:24:05.402Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T01:24:05.402Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T01:24:05.403Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T01:24:05.403Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T01:24:05.404Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T01:24:05.405Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T01:24:05.405Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T01:24:05.406Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T01:24:18.601Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T01:24:18.602Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T01:24:18.603Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T01:24:18.603Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T01:24:18.604Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T01:24:18.604Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T01:24:18.605Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e6fe8","outPtr":"0xcfe6bc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:24:18.779Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe6bc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe6bc","time":"2026-04-26T01:24:18.780Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e6fe8","outPtr":"0xcfe6bc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:24:18.780Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe6bc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe6bc","time":"2026-04-26T01:24:18.781Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T01:24:18.803Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T01:24:18.804Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T01:24:18.804Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T01:24:18.805Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x92f0234","outPtr":"0xcfece8","referencePtr":"0xcfed1c","reference":"TestMachine_001.ProtectedValue1","time":"2026-04-26T01:24:18.877Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9392698","outPtr":"0xcfec50","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0xcfec50","time":"2026-04-26T01:24:18.877Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x92f0560","referenceString":{"length":31,"capacity":31,"value":"TestMachine_001.ProtectedValue1"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93be080","flags10":1124099840,"word14":2,"word4c":131073,"word54":130190452,"word58":0,"word5c":0,"word60":0,"word64":154038248,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b0 dd 3b 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 80 e0 3b 09 74 8c c2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 2e 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 c4 c9 04 01 00 00 00 00"},"time":"2026-04-26T01:24:18.878Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92f05b0","outPtr":"0xcfebe0","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0xcfebe0","time":"2026-04-26T01:24:18.879Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92f05b0","outPtr":"0xcfebe0","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0xcfebe0","time":"2026-04-26T01:24:18.879Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x92f05b0","outPtr":"0xcfebe0","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0xcfebe0","time":"2026-04-26T01:24:18.880Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x92f0560","referenceString":{"length":31,"capacity":31,"value":"TestMachine_001.ProtectedValue1"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x93be080","flags10":1124099840,"word14":2,"word4c":131073,"word54":130190452,"word58":0,"word5c":0,"word60":0,"word64":154038248,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 b0 dd 3b 09 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 80 e0 3b 09 74 8c c2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 2e 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 c4 c9 04 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T01:24:18.881Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T01:24:18.881Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfedac","args":["0x5d08fe0","0x1","0x1","0x8f5a4129","0x74794704"],"time":"2026-04-26T01:24:18.882Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e6fe8","outPtr":"0xcfec2c","inWords":[65537,393218,193544,655527,35366,0],"time":"2026-04-26T01:24:18.883Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfec2c","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0xcfec2c","time":"2026-04-26T01:24:18.883Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x92e6fe8","outPtr":"0xcfd8c0","inWords":[65537,393218,193544,655527,35366,0],"time":"2026-04-26T01:24:18.883Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfd8c0","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0xcfd8c0","time":"2026-04-26T01:24:18.884Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T01:24:18.884Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x92ec710","0x1","0x1","0x1","0x2","0x0","0x13a","0x92f0620","0xcfea70","0x29f36840"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x92f0620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 2e 09 1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 2f 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:24:19.009Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x92ec710","args":["0x1","0x1","0x1","0x168","0xa4f4020","0xd2d342b","0x92f01ec","0x92f01dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa4f4020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 2e 09 1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 2f 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:24:19.011Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:24:19.012Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:24:19.012Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x92ec710","0x1","0x1","0x2","0x2","0x0","0x27","0x93bda98","0xcfea70","0x29f36840"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x93bda98","hex":"1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:19.013Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x92ec710","args":["0x1","0x1","0x2","0x55","0xa4f4020","0xd2d342b","0x93c955c","0x93c954c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa4f4020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:19.015Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:24:19.016Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:24:19.016Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec710","args":["0x5c","0x7af413c","0x747ec20","0x76ffedd8","0x92ec71c","0x5c","0x7af413c","0x206","0x3","0x776b214"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7af413c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 21 34 45 ea 24 63 33 4c 88 01 26 b8 cc f3 10 ef 40 12 ae 08 37 e9 69 42 ab 32 52 82"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776b214","hex":"b0 fa 74"}],"time":"2026-04-26T01:24:19.029Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:19.031Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec710","args":["0x69","0x7af7454","0x747ec20","0x76ffedd8","0x92ec71c","0x69","0x7af7454","0x206","0x3","0x776b214"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x7af7454","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 1f 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 21 34 45 ea 24 63 33 4c 88 01 26 b8 cc f3 10 ef 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 03 00 00 00 03 00 00 00 c0 00 c0 32 3e 40 81 d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776b214","hex":"b0 fa 74"}],"time":"2026-04-26T01:24:19.035Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:19.036Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec710","args":["0x2c2","0x7af413c","0x747ec20","0x76ffedd8","0x92ec71c","0x2c2","0x7af413c","0x206","0x3","0x776b214"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7af413c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 1a c6 c4 91 bb bf e7 41 80 67 26 c3 82 c0 20 37 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776b214","hex":"b0 fa 74"}],"time":"2026-04-26T01:24:19.041Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:19.042Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x92ec710","args":["0x97","0x7af7454","0x747ec20","0x76ffedd8","0x92ec71c","0x97","0x7af7454","0x206","0x3","0x776b214"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7af7454","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 09 18 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 1a c6 c4 91 bb bf e7 41 80 67 26 c3 82 c0 20 37 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x776b214","hex":"b0 fa 74"}],"time":"2026-04-26T01:24:19.045Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:19.046Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0xcfed70","serverHandle":1,"user":"dohertj2","passwordLength":8,"userIdOut":"0xcfed54","time":"2026-04-26T01:24:19.914Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-26T01:24:19.931Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","address":"0x65a52f24","ecx":"0xcfed7c","args":["0x5d08fe0","0x1","0x1","0x1","0x1","0xb","0x0","0xffff","0x0","0x8f5a4129"],"time":"2026-04-26T01:24:19.946Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","retval":"0x80004021","time":"2026-04-26T01:24:19.946Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x92ec710","0x1","0x1","0x2","0x2","0x0","0x25","0x93be038","0xcfeacc","0x29f36854"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x93be038","hex":"21 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:25.005Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x92ec710","args":["0x1","0x1","0x2","0x53","0xa4f4020","0xd2d343f","0xcfeb1c","0xcfeb0c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa4f4020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 40 12 ae 08 37 e9 69 42 ab 32 52 82 cf 64 20 2a 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:25.006Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:24:25.007Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:24:25.007Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/112-frida-write-secured-auth-verified-protectedvalue1/harness.log b/captures/112-frida-write-secured-auth-verified-protectedvalue1/harness.log new file mode 100644 index 0000000..1c911d2 --- /dev/null +++ b/captures/112-frida-write-secured-auth-verified-protectedvalue1/harness.log @@ -0,0 +1,18 @@ +2026-04-26T01:24:05.3188073+00:00 harness.start {"Scenario":"write-secured","ClientName":"MxFridaTrace-112-frida-write-secured-auth-verified-protectedvalue1","Tags":["TestMachine_001.ProtectedValue1"],"ItemContext":"","WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":1,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"dohertj2","AuthenticateBeforeWrite":true,"UseAuthenticatedUserAsVerifier":true,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T01:24:18.5050136+00:00 mx.register.begin {"ClientName":"MxFridaTrace-112-frida-write-secured-auth-verified-protectedvalue1"} +2026-04-26T01:24:18.8750540+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T01:24:18.8750540+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue1"} +2026-04-26T01:24:18.8810764+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:24:18.8820647+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:24:18.8840384+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:24:19.9125559+00:00 mx.authenticate-before-write.begin {"AuthUser":"dohertj2","PasswordSource":"env"} +2026-04-26T01:24:19.9325011+00:00 mx.authenticate-before-write.end {"AuthUser":"dohertj2","AuthenticatedUserId":1,"CurrentUserId":1,"VerifierUserId":1} +2026-04-26T01:24:19.9435532+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1,"CurrentUserId":1,"VerifierUserId":1,"WriteTimestamp":""} +2026-04-26T01:24:19.9644939+00:00 mx.item.error {"Payload":{"Tag":"TestMachine_001.ProtectedValue1"},"Exception":"System.Runtime.InteropServices.COMException","Message":"The operation attempted is not supported. (Exception from HRESULT: 0x80004021)","HResult":"0x80004021","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.WriteSecured(Int32 hLMXServerHandle, Int32 hItem, Int32 CurrentUserID, Int32 VerifierUserID, Object pItemValue)\r\n at MxTraceHarness.Program.InvokeWrite(LMXProxyServerClass proxy, Int32 sessionHandle, Int32 itemHandle, Object writeValue, Options options) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 456\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 181"} +2026-04-26T01:24:24.9780652+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:24:24.9789793+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:24:24.9789793+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:24:24.9789793+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:24:24.9789793+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T01:24:28.7139258+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T01:24:28.7188940+00:00 harness.stop {} diff --git a/captures/113-frida-write-secured2-auth-protectedvalue/frida-command.txt b/captures/113-frida-write-secured2-auth-protectedvalue/frida-command.txt new file mode 100644 index 0000000..3b42d0f --- /dev/null +++ b/captures/113-frida-write-secured2-auth-protectedvalue/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\113-frida-write-secured2-auth-protectedvalue\harness.log --client=MxFridaTrace-113-frida-write-secured2-auth-protectedvalue diff --git a/captures/113-frida-write-secured2-auth-protectedvalue/frida-events.tsv b/captures/113-frida-write-secured2-auth-protectedvalue/frida-events.tsv new file mode 100644 index 0000000..d5ecf66 --- /dev/null +++ b/captures/113-frida-write-secured2-auth-protectedvalue/frida-events.tsv @@ -0,0 +1,91 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T01:24:05.369Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T01:24:05.370Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T01:24:05.370Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T01:24:05.371Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T01:24:05.371Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T01:24:05.372Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T01:24:05.372Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T01:24:05.373Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T01:24:05.373Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T01:24:12.216Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:24:12.217Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T01:24:12.217Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T01:24:12.218Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:12.219Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:24:12.220Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T01:24:12.220Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T01:24:12.306Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:12.306Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe7cc [] +2026-04-26T01:24:12.307Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:12.307Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe7cc [] +2026-04-26T01:24:12.317Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T01:24:12.318Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T01:24:12.318Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T01:24:12.319Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T01:24:12.403Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:24:12.404Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fed54 [] +2026-04-26T01:24:12.405Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:24:12.406Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fece4 [] +2026-04-26T01:24:12.406Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fece4 [] +2026-04-26T01:24:12.406Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fece4 [] +2026-04-26T01:24:12.407Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T01:24:12.408Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:24:12.410Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x4feeac "[""0x5878fe0"",""0x1"",""0x1"",""0x53222076"",""0x74794704""]" +2026-04-26T01:24:12.410Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:12.410Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fed2c [] +2026-04-26T01:24:12.411Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:24:12.411Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fd9c0 [] +2026-04-26T01:24:12.412Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T01:24:12.540Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b20620"",""0x4feb70"",""0xdfe9769b""]" 0 1 0x2 +2026-04-26T01:24:12.540Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b20620"",""0x4feb70"",""0xdfe9769b""]" 1 314 0x8b20620 True:u8@1 True:u8@3 True:u8@4 True:u8@6 True:u8@111 True:u8@112 True:u8@114 True:u8@116 True:u8@130 True:u8@136 True:u8@156 True:u8@161 True:u8@163 True:u8@164 True:u8@166 True:u8@283 True:u8@284 True:u8@286 True:u8@288 True:u8@302 True:u8@308 True:i32@6 True:i32@116 True:i32@156 True:i32@166 True:i32@288 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b1 08 1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b2 08 20 01 00 02 00 00 00 +2026-04-26T01:24:12.543Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b1c710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x94b7020"",""0xd0263e4b"",""0x8b201ec"",""0x8b201dc"",""0x641add04"",""0x0""]" 0 360 0x94b7020 True:u8@0 True:u8@3 True:u8@10 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@49 True:u8@50 True:u8@52 True:u8@157 True:u8@158 True:u8@160 True:u8@162 True:u8@176 True:u8@182 True:u8@202 True:u8@207 True:u8@209 True:u8@210 True:u8@212 True:u8@329 True:u8@330 True:u8@332 True:u8@334 True:u8@348 True:u8@354 True:i32@3 True:i32@10 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@52 True:i32@162 True:i32@202 True:i32@212 True:i32@334 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b1 08 1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b2 08 20 01 00 02 00 00 00 +2026-04-26T01:24:12.544Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:24:12.544Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:24:12.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8bee788"",""0x4feb70"",""0xdfe9769b""]" 0 2 0x2 +2026-04-26T01:24:12.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8bee788"",""0x4feb70"",""0xdfe9769b""]" 1 39 0x8bee788 True:u8@1 1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:24:12.546Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b1c710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x94b7020"",""0xd0263e4b"",""0x8bf955c"",""0x8bf954c"",""0x641add04"",""0x0""]" 0 85 0x94b7020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:24:12.547Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:24:12.547Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:24:12.577Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x2c2"",""0x713ac5c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x2c2"",""0x713ac5c"",""0x206"",""0x3"",""0x7152984""]" 0 706 0x713ac5c True:u8@4 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@205 True:u8@206 True:u8@208 True:u8@210 True:u8@224 True:u8@342 True:u8@344 True:u8@346 True:u8@563 True:u8@564 True:u8@566 True:u8@568 True:u8@582 True:u8@700 True:u8@702 True:u8@704 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 1c 1c 04 88 b4 19 70 43 99 39 e3 62 39 f3 4d 71 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T01:24:12.577Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x2c2"",""0x713ac5c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x2c2"",""0x713ac5c"",""0x206"",""0x3"",""0x7152984""]" 1 518 0x3 +2026-04-26T01:24:12.577Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x2c2"",""0x713ac5c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x2c2"",""0x713ac5c"",""0x206"",""0x3"",""0x7152984""]" 2 3 0x7152984 78 61 0c +2026-04-26T01:24:12.580Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:12.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x97"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x97"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 0 151 0x713020c True:u8@4 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@89 True:u8@106 True:u8@119 True:u8@139 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 True:i32@89 97 00 00 00 01 00 69 00 00 00 00 00 00 00 ee 17 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 1c 1c 04 88 b4 19 70 43 99 39 e3 62 39 f3 4d 71 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T01:24:12.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x97"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x97"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 1 518 0x3 +2026-04-26T01:24:12.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x97"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x97"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 2 3 0x7152984 78 61 0c +2026-04-26T01:24:12.584Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:12.587Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x5c"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x5c"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 0 92 0x8a3cd4 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@54 True:u8@56 True:i32@18 True:i32@22 True:i32@30 True:i32@34 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 34 52 62 bd 6d d4 10 42 88 8b d0 3d bc d4 40 32 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e +2026-04-26T01:24:12.587Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x5c"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x5c"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 1 518 0x3 +2026-04-26T01:24:12.587Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x5c"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x5c"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 2 3 0x7152984 78 61 0c +2026-04-26T01:24:12.588Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:12.591Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x69"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x69"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 0 105 0x713020c True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 1c 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 34 52 62 bd 6d d4 10 42 88 8b d0 3d bc d4 40 32 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 03 00 00 00 03 00 00 00 c0 00 e0 51 14 30 81 d4 +2026-04-26T01:24:12.591Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x69"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x69"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 1 518 0x3 +2026-04-26T01:24:12.591Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x69"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x69"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 2 3 0x7152984 78 61 0c +2026-04-26T01:24:12.592Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:13.446Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x4fee70 [] +2026-04-26T01:24:13.462Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-26T01:24:13.480Z call.enter LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x4fee78 "[""0x5878fe0"",""0x1"",""0x1"",""0x1"",""0x0"",""0xb"",""0x0"",""0xffff"",""0x0"",""0x7"",""0x0"",""0x89cfade9"",""0x40e6873c"",""0x53222076""]" +2026-04-26T01:24:13.482Z call.leave LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x0 [] +2026-04-26T01:24:13.537Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xbf"",""0x8bfa108"",""0x4feb70"",""0xdfe9769b""]" 0 2 0x3 +2026-04-26T01:24:13.537Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xbf"",""0x8bfa108"",""0x4feb70"",""0xdfe9769b""]" 1 191 0x8bfa108 True:u8@1 True:u8@17 True:u8@28 True:u8@187 True:i32@187 True:variant_bool@181 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 80 dc d4 63 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 74 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 33 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 43 91 c9 0c 01 00 00 00 +2026-04-26T01:24:13.539Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b1c710 "[""0x1"",""0x1"",""0x2"",""0xed"",""0x94b7020"",""0xd0263e4b"",""0x8b177cc"",""0x8b177bc"",""0x641add04"",""0x0""]" 0 237 0x94b7020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:u8@74 True:u8@233 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@233 True:variant_bool@227 01 00 bf 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 80 dc d4 63 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 74 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 33 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 43 91 c9 0c 01 00 00 00 +2026-04-26T01:24:13.539Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:24:13.540Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:24:13.703Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x33"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x33"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 0 51 0x8a3cd4 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:i32@18 True:i32@22 True:i32@30 True:i32@34 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00 +2026-04-26T01:24:13.703Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x33"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x33"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 1 518 0x3 +2026-04-26T01:24:13.703Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x33"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x33"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 2 3 0x7152984 78 61 0c +2026-04-26T01:24:13.705Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:13.707Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x55"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x55"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 0 85 0x713020c True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 55 00 00 00 01 00 27 00 00 00 00 00 00 00 1d 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 34 52 62 bd 6d d4 10 42 88 8b d0 3d bc d4 40 32 03 00 00 00 c0 00 80 dc d4 63 1b d5 +2026-04-26T01:24:13.707Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x55"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x55"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 1 518 0x3 +2026-04-26T01:24:13.707Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x55"",""0x713020c"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x55"",""0x713020c"",""0x206"",""0x3"",""0x7152984""]" 2 3 0x7152984 78 61 0c +2026-04-26T01:24:13.709Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:24:18.517Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8bee6f8"",""0x4febcc"",""0xdfe9768f""]" 0 2 0x2 +2026-04-26T01:24:18.517Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b1c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8bee6f8"",""0x4febcc"",""0xdfe9768f""]" 1 37 0x8bee6f8 True:u8@1 21 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:24:18.517Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b1c710 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x94b7020"",""0xd0263e5f"",""0x4fec1c"",""0x4fec0c"",""0x641add04"",""0x0""]" 0 83 0x94b7020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:24:18.519Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:24:18.519Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:24:18.523Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x2e"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x2e"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 0 46 0x8a3cd4 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:i32@4 True:i32@18 True:i32@22 True:i32@30 True:i32@34 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-26T01:24:18.523Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x2e"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x2e"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 1 518 0x3 +2026-04-26T01:24:18.523Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b1c710 "[""0x2e"",""0x8a3cd4"",""0x6d7eb38"",""0x76ffedd8"",""0x8b1c71c"",""0x2e"",""0x8a3cd4"",""0x206"",""0x3"",""0x7152984""]" 2 3 0x7152984 78 61 0c +2026-04-26T01:24:18.525Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/113-frida-write-secured2-auth-protectedvalue/frida-exit.txt b/captures/113-frida-write-secured2-auth-protectedvalue/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/113-frida-write-secured2-auth-protectedvalue/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/113-frida-write-secured2-auth-protectedvalue/frida.stderr.txt b/captures/113-frida-write-secured2-auth-protectedvalue/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/113-frida-write-secured2-auth-protectedvalue/frida.stdout.jsonl b/captures/113-frida-write-secured2-auth-protectedvalue/frida.stdout.jsonl new file mode 100644 index 0000000..4d4525a --- /dev/null +++ b/captures/113-frida-write-secured2-auth-protectedvalue/frida.stdout.jsonl @@ -0,0 +1,88 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\113-frida-write-secured2-auth-protectedvalue\harness.log --client=MxFridaTrace-113-frida-write-secured2-auth-protectedvalue`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\113-frida-write-secured2-auth-protectedvalue\harness.log --client=MxFridaTrace-113-frida-write-secured2-auth-protectedvalue`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T01:24:05.369Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T01:24:05.370Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T01:24:05.370Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T01:24:05.371Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T01:24:05.371Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T01:24:05.372Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T01:24:05.372Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T01:24:05.373Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T01:24:05.373Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T01:24:12.216Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T01:24:12.217Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T01:24:12.217Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T01:24:12.218Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T01:24:12.219Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T01:24:12.220Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T01:24:12.220Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b16fe8","outPtr":"0x4fe7cc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:24:12.306Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe7cc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe7cc","time":"2026-04-26T01:24:12.306Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b16fe8","outPtr":"0x4fe7cc","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:24:12.307Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe7cc","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe7cc","time":"2026-04-26T01:24:12.307Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T01:24:12.317Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T01:24:12.318Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T01:24:12.318Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T01:24:12.319Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8b20234","outPtr":"0x4fedec","referencePtr":"0x4fee20","reference":"TestMachine_001.ProtectedValue","time":"2026-04-26T01:24:12.403Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8bc14a0","outPtr":"0x4fed54","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fed54","time":"2026-04-26T01:24:12.404Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b20560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8bee230","flags10":1124099840,"word14":2,"word4c":131073,"word54":125068164,"word58":0,"word5c":0,"word60":0,"word64":145846248,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 d8 e5 be 08 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 30 e2 be 08 84 63 74 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f b1 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 3c 33 90 00 00 00 00 00"},"time":"2026-04-26T01:24:12.405Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b205b0","outPtr":"0x4fece4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fece4","time":"2026-04-26T01:24:12.406Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b205b0","outPtr":"0x4fece4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fece4","time":"2026-04-26T01:24:12.406Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b205b0","outPtr":"0x4fece4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fece4","time":"2026-04-26T01:24:12.406Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b20560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8bee230","flags10":1124099840,"word14":2,"word4c":131073,"word54":125068164,"word58":0,"word5c":0,"word60":0,"word64":145846248,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 d8 e5 be 08 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 30 e2 be 08 84 63 74 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f b1 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 3c 33 90 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T01:24:12.407Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T01:24:12.408Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x4feeac","args":["0x5878fe0","0x1","0x1","0x53222076","0x74794704"],"time":"2026-04-26T01:24:12.410Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b16fe8","outPtr":"0x4fed2c","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:24:12.410Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fed2c","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fed2c","time":"2026-04-26T01:24:12.410Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b16fe8","outPtr":"0x4fd9c0","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:24:12.411Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fd9c0","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x4fd9c0","time":"2026-04-26T01:24:12.411Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T01:24:12.412Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b1c710","0x1","0x1","0x1","0x2","0x0","0x13a","0x8b20620","0x4feb70","0xdfe9769b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8b20620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b1 08 1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b2 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:24:12.540Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b1c710","args":["0x1","0x1","0x1","0x168","0x94b7020","0xd0263e4b","0x8b201ec","0x8b201dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x94b7020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b1 08 1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b2 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:24:12.543Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:24:12.544Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:24:12.544Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b1c710","0x1","0x1","0x2","0x2","0x0","0x27","0x8bee788","0x4feb70","0xdfe9769b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8bee788","hex":"1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:12.545Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b1c710","args":["0x1","0x1","0x2","0x55","0x94b7020","0xd0263e4b","0x8bf955c","0x8bf954c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x94b7020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:12.546Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:24:12.547Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:24:12.547Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b1c710","args":["0x2c2","0x713ac5c","0x6d7eb38","0x76ffedd8","0x8b1c71c","0x2c2","0x713ac5c","0x206","0x3","0x7152984"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x713ac5c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 1c 1c 04 88 b4 19 70 43 99 39 e3 62 39 f3 4d 71 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7152984","hex":"78 61 0c"}],"time":"2026-04-26T01:24:12.577Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:12.580Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b1c710","args":["0x97","0x713020c","0x6d7eb38","0x76ffedd8","0x8b1c71c","0x97","0x713020c","0x206","0x3","0x7152984"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x713020c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 ee 17 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 1c 1c 04 88 b4 19 70 43 99 39 e3 62 39 f3 4d 71 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7152984","hex":"78 61 0c"}],"time":"2026-04-26T01:24:12.583Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:12.584Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b1c710","args":["0x5c","0x8a3cd4","0x6d7eb38","0x76ffedd8","0x8b1c71c","0x5c","0x8a3cd4","0x206","0x3","0x7152984"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8a3cd4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 34 52 62 bd 6d d4 10 42 88 8b d0 3d bc d4 40 32 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7152984","hex":"78 61 0c"}],"time":"2026-04-26T01:24:12.587Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:12.588Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b1c710","args":["0x69","0x713020c","0x6d7eb38","0x76ffedd8","0x8b1c71c","0x69","0x713020c","0x206","0x3","0x7152984"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x713020c","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 1c 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 34 52 62 bd 6d d4 10 42 88 8b d0 3d bc d4 40 32 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 03 00 00 00 03 00 00 00 c0 00 e0 51 14 30 81 d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7152984","hex":"78 61 0c"}],"time":"2026-04-26T01:24:12.591Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:12.592Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0x4fee70","serverHandle":1,"user":"dohertj2","passwordLength":8,"userIdOut":"0x4fee54","time":"2026-04-26T01:24:13.446Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-26T01:24:13.462Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","address":"0x65a535fe","ecx":"0x4fee78","args":["0x5878fe0","0x1","0x1","0x1","0x0","0xb","0x0","0xffff","0x0","0x7","0x0","0x89cfade9","0x40e6873c","0x53222076"],"time":"2026-04-26T01:24:13.480Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","retval":"0x0","time":"2026-04-26T01:24:13.482Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b1c710","0x1","0x1","0x2","0x3","0x0","0xbf","0x8bfa108","0x4feb70","0xdfe9769b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x3","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":191,"ptr":"0x8bfa108","hex":"38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 80 dc d4 63 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 74 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 33 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 43 91 c9 0c 01 00 00 00"}],"time":"2026-04-26T01:24:13.537Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b1c710","args":["0x1","0x1","0x2","0xed","0x94b7020","0xd0263e4b","0x8b177cc","0x8b177bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":237,"ptr":"0x94b7020","hex":"01 00 bf 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 80 dc d4 63 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 74 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 33 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 43 91 c9 0c 01 00 00 00"}],"time":"2026-04-26T01:24:13.539Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:24:13.539Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:24:13.540Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b1c710","args":["0x33","0x8a3cd4","0x6d7eb38","0x76ffedd8","0x8b1c71c","0x33","0x8a3cd4","0x206","0x3","0x7152984"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x8a3cd4","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7152984","hex":"78 61 0c"}],"time":"2026-04-26T01:24:13.703Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:13.705Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b1c710","args":["0x55","0x713020c","0x6d7eb38","0x76ffedd8","0x8b1c71c","0x55","0x713020c","0x206","0x3","0x7152984"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x713020c","hex":"55 00 00 00 01 00 27 00 00 00 00 00 00 00 1d 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 34 52 62 bd 6d d4 10 42 88 8b d0 3d bc d4 40 32 03 00 00 00 c0 00 80 dc d4 63 1b d5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7152984","hex":"78 61 0c"}],"time":"2026-04-26T01:24:13.707Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:13.709Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b1c710","0x1","0x1","0x2","0x2","0x0","0x25","0x8bee6f8","0x4febcc","0xdfe9768f"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8bee6f8","hex":"21 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:18.517Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b1c710","args":["0x1","0x1","0x2","0x53","0x94b7020","0xd0263e5f","0x4fec1c","0x4fec0c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x94b7020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 22 df 34 d3 a0 b5 83 49 8e b3 bd 8e a2 5a 56 82 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:24:18.517Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:24:18.519Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:24:18.519Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b1c710","args":["0x2e","0x8a3cd4","0x6d7eb38","0x76ffedd8","0x8b1c71c","0x2e","0x8a3cd4","0x206","0x3","0x7152984"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x8a3cd4","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7152984","hex":"78 61 0c"}],"time":"2026-04-26T01:24:18.523Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:24:18.525Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/113-frida-write-secured2-auth-protectedvalue/harness.log b/captures/113-frida-write-secured2-auth-protectedvalue/harness.log new file mode 100644 index 0000000..e389347 --- /dev/null +++ b/captures/113-frida-write-secured2-auth-protectedvalue/harness.log @@ -0,0 +1,18 @@ +2026-04-26T01:24:05.2887493+00:00 harness.start {"Scenario":"write-secured2","ClientName":"MxFridaTrace-113-frida-write-secured2-auth-protectedvalue","Tags":["TestMachine_001.ProtectedValue"],"ItemContext":"","WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":1,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"dohertj2","AuthenticateBeforeWrite":true,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T01:24:12.0410433+00:00 mx.register.begin {"ClientName":"MxFridaTrace-113-frida-write-secured2-auth-protectedvalue"} +2026-04-26T01:24:12.4019572+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T01:24:12.4029486+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue"} +2026-04-26T01:24:12.4089594+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:24:12.4099484+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:24:12.4129018+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:24:13.4449583+00:00 mx.authenticate-before-write.begin {"AuthUser":"dohertj2","PasswordSource":"env"} +2026-04-26T01:24:13.4638996+00:00 mx.authenticate-before-write.end {"AuthUser":"dohertj2","AuthenticatedUserId":1,"CurrentUserId":1,"VerifierUserId":0} +2026-04-26T01:24:13.4759604+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-26T01:24:13.4829591+00:00 mx.write.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0} +2026-04-26T01:24:18.5030162+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:24:18.5030162+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:24:18.5030162+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:24:18.5030162+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:24:18.5040153+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T01:24:22.3277236+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T01:24:22.3327992+00:00 harness.stop {} diff --git a/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-command.txt b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-command.txt new file mode 100644 index 0000000..cc68cb8 --- /dev/null +++ b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=false --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\114-frida-write-secured2-auth-protectedvalue-false\harness.log --client=MxFridaTrace-114-frida-write-secured2-auth-protectedvalue-false diff --git a/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-events.tsv b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-events.tsv new file mode 100644 index 0000000..be9b390 --- /dev/null +++ b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-events.tsv @@ -0,0 +1,87 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T01:27:19.156Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T01:27:19.157Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T01:27:19.157Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T01:27:19.158Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T01:27:19.158Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T01:27:19.159Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T01:27:19.159Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T01:27:19.160Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T01:27:19.161Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T01:27:26.207Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:27:26.208Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T01:27:26.209Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T01:27:26.209Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:26.210Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:27:26.210Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T01:27:26.212Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T01:27:26.299Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:26.300Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x113e330 [] +2026-04-26T01:27:26.300Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:26.301Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x113e330 [] +2026-04-26T01:27:26.309Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T01:27:26.309Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T01:27:26.310Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T01:27:26.310Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T01:27:26.411Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:27:26.412Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x113e8c4 [] +2026-04-26T01:27:26.413Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:27:26.413Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x113e854 [] +2026-04-26T01:27:26.414Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x113e854 [] +2026-04-26T01:27:26.414Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x113e854 [] +2026-04-26T01:27:26.415Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T01:27:26.415Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:27:26.417Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x113ea1c "[""0x6358fe0"",""0x1"",""0x1"",""0xe940e4b3"",""0x74794704""]" +2026-04-26T01:27:26.417Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:26.418Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x113e89c [] +2026-04-26T01:27:26.418Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:26.419Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x113d530 [] +2026-04-26T01:27:26.419Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T01:27:26.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x97e0620"",""0x113e6e0"",""0xfdd1603""]" 0 1 0x2 +2026-04-26T01:27:26.545Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x97e0620"",""0x113e6e0"",""0xfdd1603""]" 1 314 0x97e0620 False:u8@2 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@18 False:u8@19 False:u8@22 False:u8@23 False:u8@24 False:u8@26 False:u8@27 False:u8@30 False:u8@32 False:u8@34 False:u8@36 False:u8@38 False:u8@40 False:u8@42 False:u8@44 False:u8@46 False:u8@48 False:u8@50 False:u8@52 False:u8@54 False:u8@56 False:u8@58 False:u8@60 False:u8@62 False:u8@64 False:u8@66 False:u8@68 False:u8@70 False:u8@72 False:u8@74 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@95 False:u8@96 False:u8@97 False:u8@98 False:u8@100 False:u8@101 False:u8@102 False:u8@103 False:u8@104 False:u8@106 False:u8@107 False:u8@108 False:u8@109 False:u8@110 False:u8@113 False:u8@115 False:u8@117 False:u8@118 False:u8@119 False:u8@120 False:u8@121 False:u8@122 False:u8@123 False:u8@124 False:u8@125 False:u8@126 False:u8@127 False:u8@128 False:u8@129 False:u8@137 False:u8@154 False:u8@155 False:u8@157 False:u8@158 False:u8@159 False:u8@162 False:u8@165 False:u8@167 False:u8@168 False:u8@169 False:u8@171 False:u8@173 False:u8@175 False:u8@176 False:u8@177 False:u8@178 False:u8@179 False:u8@182 False:u8@183 False:u8@184 False:u8@186 False:u8@187 False:u8@190 False:u8@192 False:u8@194 False:u8@196 False:u8@198 False:u8@200 False:u8@202 False:u8@204 False:u8@206 False:u8@208 False:u8@210 False:u8@212 False:u8@214 False:u8@216 False:u8@218 False:u8@220 False:u8@222 False:u8@224 False:u8@226 False:u8@228 False:u8@230 False:u8@232 False:u8@234 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:u8@256 False:u8@258 False:u8@260 False:u8@262 False:u8@263 False:u8@264 False:u8@266 False:u8@267 False:u8@268 False:u8@269 False:u8@270 False:u8@272 False:u8@273 False:u8@274 False:u8@275 False:u8@276 False:u8@278 False:u8@279 False:u8@280 False:u8@281 False:u8@282 False:u8@285 False:u8@287 False:u8@289 False:u8@290 False:u8@291 False:u8@292 False:u8@293 False:u8@294 False:u8@295 False:u8@296 False:u8@297 False:u8@298 False:u8@299 False:u8@300 False:u8@301 False:u8@309 False:u8@311 False:u8@312 False:u8@313 False:i32@15 False:i32@16 False:i32@94 False:i32@95 False:i32@100 False:i32@101 False:i32@106 False:i32@107 False:i32@117 False:i32@118 False:i32@119 False:i32@120 False:i32@121 False:i32@122 False:i32@123 False:i32@124 False:i32@125 False:i32@126 False:i32@175 False:i32@176 False:i32@266 False:i32@267 False:i32@272 False:i32@273 False:i32@278 False:i32@279 False:i32@289 False:i32@290 False:i32@291 False:i32@292 False:i32@293 False:i32@294 False:i32@295 False:i32@296 False:i32@297 False:i32@298 False:variant_bool@7 False:variant_bool@8 False:variant_bool@15 False:variant_bool@16 False:variant_bool@17 False:variant_bool@18 False:variant_bool@22 False:variant_bool@23 False:variant_bool@26 False:variant_bool@90 False:variant_bool@91 False:variant_bool@94 False:variant_bool@95 False:variant_bool@96 False:variant_bool@97 False:variant_bool@100 False:variant_bool@101 False:variant_bool@102 False:variant_bool@103 False:variant_bool@106 False:variant_bool@107 False:variant_bool@108 False:variant_bool@109 False:variant_bool@117 False:variant_bool@118 False:variant_bool@119 False:variant_bool@120 False:variant_bool@121 False:variant_bool@122 False:variant_bool@123 False:variant_bool@124 False:variant_bool@125 False:variant_bool@126 False:variant_bool@127 False:variant_bool@128 False:variant_bool@154 False:variant_bool@157 False:variant_bool@158 False:variant_bool@167 False:variant_bool@168 False:variant_bool@175 False:variant_bool@176 False:variant_bool@177 False:variant_bool@178 False:variant_bool@182 False:variant_bool@183 False:variant_bool@186 False:variant_bool@262 False:variant_bool@263 False:variant_bool@266 False:variant_bool@267 False:variant_bool@268 False:variant_bool@269 False:variant_bool@272 False:variant_bool@273 False:variant_bool@274 False:variant_bool@275 False:variant_bool@278 False:variant_bool@279 False:variant_bool@280 False:variant_bool@281 False:variant_bool@289 False:variant_bool@290 False:variant_bool@291 False:variant_bool@292 False:variant_bool@293 False:variant_bool@294 False:variant_bool@295 False:variant_bool@296 False:variant_bool@297 False:variant_bool@298 False:variant_bool@299 False:variant_bool@300 False:variant_bool@311 False:variant_bool@312 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 7d 09 1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 7e 09 20 01 00 02 00 00 00 +2026-04-26T01:27:26.547Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x97dc710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa978020"",""0x8c77c5b2"",""0x97e01ec"",""0x97e01dc"",""0x641add04"",""0x0""]" 0 360 0xa978020 False:u8@1 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@51 False:u8@53 False:u8@54 False:u8@55 False:u8@57 False:u8@59 False:u8@61 False:u8@62 False:u8@63 False:u8@64 False:u8@65 False:u8@68 False:u8@69 False:u8@70 False:u8@72 False:u8@73 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@92 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@122 False:u8@124 False:u8@126 False:u8@128 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@137 False:u8@138 False:u8@140 False:u8@141 False:u8@142 False:u8@143 False:u8@144 False:u8@146 False:u8@147 False:u8@148 False:u8@149 False:u8@150 False:u8@152 False:u8@153 False:u8@154 False:u8@155 False:u8@156 False:u8@159 False:u8@161 False:u8@163 False:u8@164 False:u8@165 False:u8@166 False:u8@167 False:u8@168 False:u8@169 False:u8@170 False:u8@171 False:u8@172 False:u8@173 False:u8@174 False:u8@175 False:u8@183 False:u8@200 False:u8@201 False:u8@203 False:u8@204 False:u8@205 False:u8@208 False:u8@211 False:u8@213 False:u8@214 False:u8@215 False:u8@217 False:u8@219 False:u8@221 False:u8@222 False:u8@223 False:u8@224 False:u8@225 False:u8@228 False:u8@229 False:u8@230 False:u8@232 False:u8@233 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:u8@256 False:u8@258 False:u8@260 False:u8@262 False:u8@264 False:u8@266 False:u8@268 False:u8@270 False:u8@272 False:u8@274 False:u8@276 False:u8@278 False:u8@280 False:u8@282 False:u8@284 False:u8@286 False:u8@288 False:u8@290 False:u8@292 False:u8@294 False:u8@296 False:u8@298 False:u8@300 False:u8@302 False:u8@304 False:u8@306 False:u8@308 False:u8@309 False:u8@310 False:u8@312 False:u8@313 False:u8@314 False:u8@315 False:u8@316 False:u8@318 False:u8@319 False:u8@320 False:u8@321 False:u8@322 False:u8@324 False:u8@325 False:u8@326 False:u8@327 False:u8@328 False:u8@331 False:u8@333 False:u8@335 False:u8@336 False:u8@337 False:u8@338 False:u8@339 False:u8@340 False:u8@341 False:u8@342 False:u8@343 False:u8@344 False:u8@345 False:u8@346 False:u8@347 False:u8@355 False:u8@357 False:u8@358 False:u8@359 False:i32@4 False:i32@5 False:i32@6 False:i32@61 False:i32@62 False:i32@140 False:i32@141 False:i32@146 False:i32@147 False:i32@152 False:i32@153 False:i32@163 False:i32@164 False:i32@165 False:i32@166 False:i32@167 False:i32@168 False:i32@169 False:i32@170 False:i32@171 False:i32@172 False:i32@221 False:i32@222 False:i32@312 False:i32@313 False:i32@318 False:i32@319 False:i32@324 False:i32@325 False:i32@335 False:i32@336 False:i32@337 False:i32@338 False:i32@339 False:i32@340 False:i32@341 False:i32@342 False:i32@343 False:i32@344 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@53 False:variant_bool@54 False:variant_bool@61 False:variant_bool@62 False:variant_bool@63 False:variant_bool@64 False:variant_bool@68 False:variant_bool@69 False:variant_bool@72 False:variant_bool@136 False:variant_bool@137 False:variant_bool@140 False:variant_bool@141 False:variant_bool@142 False:variant_bool@143 False:variant_bool@146 False:variant_bool@147 False:variant_bool@148 False:variant_bool@149 False:variant_bool@152 False:variant_bool@153 False:variant_bool@154 False:variant_bool@155 False:variant_bool@163 False:variant_bool@164 False:variant_bool@165 False:variant_bool@166 False:variant_bool@167 False:variant_bool@168 False:variant_bool@169 False:variant_bool@170 False:variant_bool@171 False:variant_bool@172 False:variant_bool@173 False:variant_bool@174 False:variant_bool@200 False:variant_bool@203 False:variant_bool@204 False:variant_bool@213 False:variant_bool@214 False:variant_bool@221 False:variant_bool@222 False:variant_bool@223 False:variant_bool@224 False:variant_bool@228 False:variant_bool@229 False:variant_bool@232 False:variant_bool@308 False:variant_bool@309 False:variant_bool@312 False:variant_bool@313 False:variant_bool@314 False:variant_bool@315 False:variant_bool@318 False:variant_bool@319 False:variant_bool@320 False:variant_bool@321 False:variant_bool@324 False:variant_bool@325 False:variant_bool@326 False:variant_bool@327 False:variant_bool@335 False:variant_bool@336 False:variant_bool@337 False:variant_bool@338 False:variant_bool@339 False:variant_bool@340 False:variant_bool@341 False:variant_bool@342 False:variant_bool@343 False:variant_bool@344 False:variant_bool@345 False:variant_bool@346 False:variant_bool@357 False:variant_bool@358 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 7d 09 1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 7e 09 20 01 00 02 00 00 00 +2026-04-26T01:27:26.548Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:27:26.548Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:27:26.549Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x98ad858"",""0x113e6e0"",""0xfdd1603""]" 0 2 0x2 +2026-04-26T01:27:26.549Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x98ad858"",""0x113e6e0"",""0xfdd1603""]" 1 39 0x98ad858 False:u8@2 False:u8@19 False:u8@20 False:u8@22 False:u8@26 False:u8@28 False:u8@30 False:u8@33 False:u8@34 False:u8@36 False:u8@37 False:u8@38 False:variant_bool@19 False:variant_bool@33 False:variant_bool@36 False:variant_bool@37 1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:27:26.550Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x97dc710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa978020"",""0x8c77c5b2"",""0x98b955c"",""0x98b954c"",""0x641add04"",""0x0""]" 0 85 0xa978020 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@65 False:u8@66 False:u8@68 False:u8@72 False:u8@74 False:u8@76 False:u8@79 False:u8@80 False:u8@82 False:u8@83 False:u8@84 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@65 False:variant_bool@79 False:variant_bool@82 False:variant_bool@83 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:27:26.551Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:27:26.551Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:27:26.578Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x2c2"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x2c2"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 0 706 0x8305654 False:u8@2 False:u8@3 False:u8@5 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@56 False:u8@57 False:u8@58 False:u8@60 False:u8@61 False:u8@64 False:u8@66 False:u8@68 False:u8@70 False:u8@72 False:u8@74 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@92 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@122 False:u8@124 False:u8@125 False:u8@126 False:u8@128 False:u8@129 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@138 False:u8@140 False:u8@142 False:u8@144 False:u8@146 False:u8@148 False:u8@150 False:u8@152 False:u8@153 False:u8@154 False:u8@156 False:u8@157 False:u8@158 False:u8@160 False:u8@162 False:u8@164 False:u8@166 False:u8@168 False:u8@170 False:u8@172 False:u8@174 False:u8@176 False:u8@178 False:u8@180 False:u8@182 False:u8@184 False:u8@186 False:u8@188 False:u8@190 False:u8@192 False:u8@194 False:u8@196 False:u8@197 False:u8@198 False:u8@200 False:u8@201 False:u8@202 False:u8@203 False:u8@204 False:u8@207 False:u8@209 False:u8@211 False:u8@215 False:u8@217 False:u8@219 False:u8@222 False:u8@223 False:u8@226 False:u8@227 False:u8@228 False:u8@230 False:u8@232 False:u8@234 False:u8@236 False:u8@238 False:u8@240 False:u8@242 False:u8@244 False:u8@246 False:u8@248 False:u8@250 False:u8@252 False:u8@254 False:u8@256 False:u8@258 False:u8@260 False:u8@262 False:u8@264 False:u8@266 False:u8@268 False:u8@270 False:u8@272 False:u8@274 False:u8@276 False:u8@278 False:u8@280 False:u8@282 False:u8@284 False:u8@286 False:u8@288 False:u8@290 False:u8@292 False:u8@294 False:u8@296 False:u8@298 False:u8@300 False:u8@302 False:u8@304 False:u8@306 False:u8@308 False:u8@310 False:u8@312 False:u8@314 False:u8@316 False:u8@318 False:u8@320 False:u8@322 False:u8@324 False:u8@326 False:u8@328 False:u8@330 False:u8@332 False:u8@334 False:u8@335 False:u8@336 False:u8@338 False:u8@339 False:u8@343 False:u8@345 False:u8@347 False:u8@350 False:u8@351 False:u8@390 False:u8@391 False:u8@392 False:u8@394 False:u8@395 False:u8@398 False:u8@400 False:u8@402 False:u8@404 False:u8@406 False:u8@408 False:u8@410 False:u8@412 False:u8@414 False:u8@416 False:u8@418 False:u8@420 False:u8@422 False:u8@424 False:u8@426 False:u8@428 False:u8@430 False:u8@432 False:u8@434 False:u8@436 False:u8@438 False:u8@440 False:u8@442 False:u8@444 False:u8@446 False:u8@448 False:u8@450 False:u8@452 False:u8@454 False:u8@456 False:u8@458 False:u8@460 False:u8@462 False:u8@464 False:u8@466 False:u8@468 False:u8@470 False:u8@471 False:u8@472 False:u8@474 False:u8@475 False:u8@476 False:u8@478 False:u8@480 False:u8@482 False:u8@484 False:u8@486 False:u8@488 False:u8@490 False:u8@492 False:u8@494 False:u8@496 False:u8@498 False:u8@499 False:u8@500 False:u8@502 False:u8@503 False:u8@504 False:u8@506 False:u8@508 False:u8@510 False:u8@512 False:u8@514 False:u8@516 False:u8@518 False:u8@520 False:u8@522 False:u8@524 False:u8@526 False:u8@528 False:u8@530 False:u8@532 False:u8@534 False:u8@536 False:u8@538 False:u8@540 False:u8@542 False:u8@544 False:u8@546 False:u8@548 False:u8@550 False:u8@552 False:u8@554 False:u8@555 False:u8@556 False:u8@558 False:u8@559 False:u8@560 False:u8@561 False:u8@562 False:u8@565 False:u8@567 False:u8@569 False:u8@573 False:u8@575 False:u8@577 False:u8@580 False:u8@581 False:u8@584 False:u8@585 False:u8@586 False:u8@588 False:u8@590 False:u8@592 False:u8@594 False:u8@596 False:u8@598 False:u8@600 False:u8@602 False:u8@604 False:u8@606 False:u8@608 False:u8@610 False:u8@612 False:u8@614 False:u8@616 False:u8@618 False:u8@620 False:u8@622 False:u8@624 False:u8@626 False:u8@628 False:u8@630 False:u8@632 False:u8@634 False:u8@636 False:u8@638 False:u8@640 False:u8@642 False:u8@644 False:u8@646 False:u8@648 False:u8@650 False:u8@652 False:u8@654 False:u8@656 False:u8@658 False:u8@660 False:u8@662 False:u8@664 False:u8@666 False:u8@668 False:u8@670 False:u8@672 False:u8@674 False:u8@676 False:u8@678 False:u8@680 False:u8@682 False:u8@684 False:u8@686 False:u8@688 False:u8@690 False:u8@692 False:u8@693 False:u8@694 False:u8@696 False:u8@697 False:u8@701 False:u8@703 False:u8@705 False:i32@8 False:i32@9 False:i32@10 False:i32@200 False:i32@201 False:i32@558 False:i32@559 False:variant_bool@2 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@56 False:variant_bool@57 False:variant_bool@60 False:variant_bool@124 False:variant_bool@125 False:variant_bool@128 False:variant_bool@129 False:variant_bool@152 False:variant_bool@153 False:variant_bool@156 False:variant_bool@157 False:variant_bool@196 False:variant_bool@197 False:variant_bool@200 False:variant_bool@201 False:variant_bool@202 False:variant_bool@203 False:variant_bool@222 False:variant_bool@226 False:variant_bool@227 False:variant_bool@334 False:variant_bool@335 False:variant_bool@338 False:variant_bool@350 False:variant_bool@390 False:variant_bool@391 False:variant_bool@394 False:variant_bool@470 False:variant_bool@471 False:variant_bool@474 False:variant_bool@475 False:variant_bool@498 False:variant_bool@499 False:variant_bool@502 False:variant_bool@503 False:variant_bool@554 False:variant_bool@555 False:variant_bool@558 False:variant_bool@559 False:variant_bool@560 False:variant_bool@561 False:variant_bool@580 False:variant_bool@584 False:variant_bool@585 False:variant_bool@692 False:variant_bool@693 False:variant_bool@696 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90 e0 75 62 4a 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T01:27:26.578Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x2c2"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x2c2"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 1 518 0x3 +2026-04-26T01:27:26.578Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x2c2"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x2c2"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 2 3 0x7dac514 48 03 c4 +2026-04-26T01:27:26.580Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:26.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x97"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x97"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 0 151 0x138698c False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@52 False:u8@54 False:u8@55 False:u8@56 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@95 False:u8@96 False:u8@98 False:u8@109 False:u8@110 False:u8@111 False:u8@112 False:u8@120 False:u8@121 False:u8@123 False:u8@124 False:u8@125 False:u8@127 False:u8@128 False:u8@129 False:u8@131 False:u8@142 False:u8@143 False:u8@144 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:i32@109 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@54 False:variant_bool@55 False:variant_bool@90 False:variant_bool@91 False:variant_bool@94 False:variant_bool@95 False:variant_bool@109 False:variant_bool@110 False:variant_bool@111 False:variant_bool@120 False:variant_bool@123 False:variant_bool@124 False:variant_bool@127 False:variant_bool@128 False:variant_bool@142 False:variant_bool@143 97 00 00 00 01 00 69 00 00 00 00 00 00 00 fa 1a 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90 e0 75 62 4a 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T01:27:26.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x97"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x97"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 1 518 0x3 +2026-04-26T01:27:26.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x97"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x97"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 2 3 0x7dac514 48 03 c4 +2026-04-26T01:27:26.584Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:26.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x5c"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x5c"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 0 92 0x8305654 False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@50 False:u8@51 False:u8@55 False:u8@57 False:u8@59 False:u8@62 False:u8@63 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:i32@48 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@49 False:variant_bool@50 False:variant_bool@62 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 11 d3 e0 7e 42 c1 80 4e 9b 75 ec ba 99 fc f7 ca 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 +2026-04-26T01:27:26.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x5c"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x5c"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 1 518 0x3 +2026-04-26T01:27:26.586Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x5c"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x5c"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 2 3 0x7dac514 48 03 c4 +2026-04-26T01:27:26.587Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:26.590Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x69"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x69"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 0 105 0x138698c False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@52 False:u8@54 False:u8@55 False:u8@56 False:u8@90 False:u8@91 False:u8@92 False:u8@94 False:u8@95 False:u8@96 False:u8@98 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@54 False:variant_bool@55 False:variant_bool@90 False:variant_bool@91 False:variant_bool@94 False:variant_bool@95 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 20 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 11 d3 e0 7e 42 c1 80 4e 9b 75 ec ba 99 fc f7 ca 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 03 00 00 00 03 00 00 00 c0 00 80 dc d4 63 1b d5 +2026-04-26T01:27:26.590Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x69"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x69"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 1 518 0x3 +2026-04-26T01:27:26.590Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x69"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x69"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 2 3 0x7dac514 48 03 c4 +2026-04-26T01:27:26.591Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:27.454Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x113e9e0 [] +2026-04-26T01:27:27.470Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-26T01:27:27.497Z call.enter LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x113e9e8 "[""0x6358fe0"",""0x1"",""0x1"",""0x1"",""0x0"",""0xb"",""0x0"",""0x0"",""0x0"",""0x7"",""0x0"",""0x9c34f995"",""0x40e6873c"",""0xe940e4b3""]" +2026-04-26T01:27:27.499Z call.leave LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x0 [] +2026-04-26T01:27:27.553Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xcb"",""0x98ba108"",""0x113e6e0"",""0xfdd1603""]" 0 2 0x3 +2026-04-26T01:27:27.553Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xcb"",""0x98ba108"",""0x113e6e0"",""0xfdd1603""]" 1 203 0x98ba108 False:u8@2 False:u8@4 False:u8@8 False:u8@10 False:u8@12 False:u8@15 False:u8@16 False:u8@18 False:u8@19 False:u8@20 False:u8@46 False:u8@47 False:u8@48 False:u8@50 False:u8@52 False:u8@54 False:u8@56 False:u8@58 False:u8@60 False:u8@62 False:u8@64 False:u8@66 False:u8@68 False:u8@70 False:u8@72 False:u8@74 False:u8@76 False:u8@78 False:u8@80 False:u8@82 False:u8@84 False:u8@86 False:u8@88 False:u8@90 False:u8@92 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@122 False:u8@124 False:u8@126 False:u8@128 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@138 False:u8@140 False:u8@142 False:u8@144 False:u8@146 False:u8@148 False:u8@150 False:u8@152 False:u8@154 False:u8@156 False:u8@158 False:u8@160 False:u8@162 False:u8@164 False:u8@166 False:u8@168 False:u8@170 False:u8@172 False:u8@174 False:u8@175 False:u8@176 False:u8@177 False:u8@178 False:u8@179 False:u8@180 False:u8@181 False:u8@182 False:u8@183 False:u8@184 False:u8@185 False:u8@186 False:u8@187 False:u8@188 False:u8@189 False:u8@190 False:u8@191 False:u8@192 False:u8@200 False:u8@201 False:u8@202 False:i32@174 False:i32@175 False:i32@176 False:i32@177 False:i32@178 False:i32@179 False:i32@180 False:i32@181 False:i32@182 False:i32@183 False:i32@184 False:i32@185 False:i32@186 False:i32@187 False:i32@188 False:i32@189 False:variant_bool@15 False:variant_bool@18 False:variant_bool@19 False:variant_bool@46 False:variant_bool@47 False:variant_bool@174 False:variant_bool@175 False:variant_bool@176 False:variant_bool@177 False:variant_bool@178 False:variant_bool@179 False:variant_bool@180 False:variant_bool@181 False:variant_bool@182 False:variant_bool@183 False:variant_bool@184 False:variant_bool@185 False:variant_bool@186 False:variant_bool@187 False:variant_bool@188 False:variant_bool@189 False:variant_bool@190 False:variant_bool@191 False:variant_bool@200 False:variant_bool@201 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 00 00 00 80 e9 76 d7 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 80 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 34 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 66 00 61 00 6c 00 73 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 13 87 cc 0c 01 00 00 00 +2026-04-26T01:27:27.555Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x97dc710 "[""0x1"",""0x1"",""0x2"",""0xf9"",""0xa978020"",""0x8c77c5b2"",""0x97d77cc"",""0x97d77bc"",""0x641add04"",""0x0""]" 0 249 0xa978020 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@50 False:u8@54 False:u8@56 False:u8@58 False:u8@61 False:u8@62 False:u8@64 False:u8@65 False:u8@66 False:u8@92 False:u8@93 False:u8@94 False:u8@96 False:u8@98 False:u8@100 False:u8@102 False:u8@104 False:u8@106 False:u8@108 False:u8@110 False:u8@112 False:u8@114 False:u8@116 False:u8@118 False:u8@120 False:u8@122 False:u8@124 False:u8@126 False:u8@128 False:u8@130 False:u8@132 False:u8@134 False:u8@136 False:u8@138 False:u8@140 False:u8@142 False:u8@144 False:u8@146 False:u8@148 False:u8@150 False:u8@152 False:u8@154 False:u8@156 False:u8@158 False:u8@160 False:u8@162 False:u8@164 False:u8@166 False:u8@168 False:u8@170 False:u8@172 False:u8@174 False:u8@176 False:u8@178 False:u8@180 False:u8@182 False:u8@184 False:u8@186 False:u8@188 False:u8@190 False:u8@192 False:u8@194 False:u8@196 False:u8@198 False:u8@200 False:u8@202 False:u8@204 False:u8@206 False:u8@208 False:u8@210 False:u8@212 False:u8@214 False:u8@216 False:u8@218 False:u8@220 False:u8@221 False:u8@222 False:u8@223 False:u8@224 False:u8@225 False:u8@226 False:u8@227 False:u8@228 False:u8@229 False:u8@230 False:u8@231 False:u8@232 False:u8@233 False:u8@234 False:u8@235 False:u8@236 False:u8@237 False:u8@238 False:u8@246 False:u8@247 False:u8@248 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:i32@220 False:i32@221 False:i32@222 False:i32@223 False:i32@224 False:i32@225 False:i32@226 False:i32@227 False:i32@228 False:i32@229 False:i32@230 False:i32@231 False:i32@232 False:i32@233 False:i32@234 False:i32@235 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@61 False:variant_bool@64 False:variant_bool@65 False:variant_bool@92 False:variant_bool@93 False:variant_bool@220 False:variant_bool@221 False:variant_bool@222 False:variant_bool@223 False:variant_bool@224 False:variant_bool@225 False:variant_bool@226 False:variant_bool@227 False:variant_bool@228 False:variant_bool@229 False:variant_bool@230 False:variant_bool@231 False:variant_bool@232 False:variant_bool@233 False:variant_bool@234 False:variant_bool@235 False:variant_bool@236 False:variant_bool@237 False:variant_bool@246 False:variant_bool@247 01 00 cb 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 00 00 00 80 e9 76 d7 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 80 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 34 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 66 00 61 00 6c 00 73 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 13 87 cc 0c 01 00 00 00 +2026-04-26T01:27:27.556Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:27:27.556Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:27:27.579Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x33"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x33"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 0 51 0x8305654 False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@50 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@49 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00 +2026-04-26T01:27:27.579Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x33"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x33"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 1 518 0x3 +2026-04-26T01:27:27.579Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x33"",""0x8305654"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x33"",""0x8305654"",""0x206"",""0x3"",""0x7dac514""]" 2 3 0x7dac514 48 03 c4 +2026-04-26T01:27:27.580Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:27.582Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x55"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x55"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 0 85 0x138698c False:u8@1 False:u8@2 False:u8@3 False:u8@5 False:u8@7 False:u8@8 False:u8@9 False:u8@10 False:u8@11 False:u8@12 False:u8@13 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@23 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@49 False:u8@52 False:u8@54 False:u8@55 False:u8@56 False:u8@74 False:u8@75 False:u8@76 False:u8@78 False:i32@7 False:i32@8 False:i32@9 False:i32@10 False:variant_bool@1 False:variant_bool@2 False:variant_bool@7 False:variant_bool@8 False:variant_bool@9 False:variant_bool@10 False:variant_bool@11 False:variant_bool@12 False:variant_bool@19 False:variant_bool@20 False:variant_bool@23 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@48 False:variant_bool@54 False:variant_bool@55 False:variant_bool@74 False:variant_bool@75 55 00 00 00 01 00 27 00 00 00 00 00 00 00 21 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 11 d3 e0 7e 42 c1 80 4e 9b 75 ec ba 99 fc f7 ca 03 00 00 00 c0 00 80 e9 76 d7 1b d5 +2026-04-26T01:27:27.582Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x55"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x55"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 1 518 0x3 +2026-04-26T01:27:27.582Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x97dc710 "[""0x55"",""0x138698c"",""0x7b5e940"",""0x76ffedd8"",""0x97dc71c"",""0x55"",""0x138698c"",""0x206"",""0x3"",""0x7dac514""]" 2 3 0x7dac514 48 03 c4 +2026-04-26T01:27:27.584Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:32.529Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x98ad858"",""0x113e73c"",""0xfdd15f7""]" 0 2 0x2 +2026-04-26T01:27:32.529Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x97dc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x98ad858"",""0x113e73c"",""0xfdd15f7""]" 1 37 0x98ad858 False:u8@2 False:u8@20 False:u8@24 False:u8@26 False:u8@28 False:u8@31 False:u8@32 False:u8@34 False:u8@35 False:u8@36 False:variant_bool@31 False:variant_bool@34 False:variant_bool@35 21 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:27:32.530Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x97dc710 "[""0x1"",""0x1"",""0x2"",""0x53"",""0xa978020"",""0x8c77c5c6"",""0x113e78c"",""0x113e77c"",""0x641add04"",""0x0""]" 0 83 0xa978020 False:u8@1 False:u8@3 False:u8@4 False:u8@5 False:u8@6 False:u8@7 False:u8@8 False:u8@9 False:u8@11 False:u8@12 False:u8@13 False:u8@15 False:u8@16 False:u8@17 False:u8@19 False:u8@20 False:u8@21 False:u8@24 False:u8@25 False:u8@27 False:u8@28 False:u8@29 False:u8@31 False:u8@32 False:u8@33 False:u8@35 False:u8@36 False:u8@37 False:u8@40 False:u8@41 False:u8@44 False:u8@45 False:u8@48 False:u8@66 False:u8@70 False:u8@72 False:u8@74 False:u8@77 False:u8@78 False:u8@80 False:u8@81 False:u8@82 False:i32@3 False:i32@4 False:i32@5 False:i32@6 False:variant_bool@3 False:variant_bool@4 False:variant_bool@5 False:variant_bool@6 False:variant_bool@7 False:variant_bool@8 False:variant_bool@11 False:variant_bool@12 False:variant_bool@15 False:variant_bool@16 False:variant_bool@19 False:variant_bool@20 False:variant_bool@24 False:variant_bool@27 False:variant_bool@28 False:variant_bool@31 False:variant_bool@32 False:variant_bool@35 False:variant_bool@36 False:variant_bool@40 False:variant_bool@44 False:variant_bool@77 False:variant_bool@80 False:variant_bool@81 01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:27:32.530Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:27:32.531Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-exit.txt b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/114-frida-write-secured2-auth-protectedvalue-false/frida.stderr.txt b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/114-frida-write-secured2-auth-protectedvalue-false/frida.stdout.jsonl b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida.stdout.jsonl new file mode 100644 index 0000000..ac9d904 --- /dev/null +++ b/captures/114-frida-write-secured2-auth-protectedvalue-false/frida.stdout.jsonl @@ -0,0 +1,86 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=false --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\114-frida-write-secured2-auth-protectedvalue-false\harness.log --client=MxFridaTrace-114-frida-write-secured2-auth-protectedvalue-false`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=false --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\114-frida-write-secured2-auth-protectedvalue-false\harness.log --client=MxFridaTrace-114-frida-write-secured2-auth-protectedvalue-false`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T01:27:19.156Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T01:27:19.157Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T01:27:19.157Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T01:27:19.158Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T01:27:19.158Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T01:27:19.159Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T01:27:19.159Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T01:27:19.160Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T01:27:19.161Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T01:27:26.207Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T01:27:26.208Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T01:27:26.209Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T01:27:26.209Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T01:27:26.210Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T01:27:26.210Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T01:27:26.212Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97d6fe8","outPtr":"0x113e330","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:27:26.299Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x113e330","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x113e330","time":"2026-04-26T01:27:26.300Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97d6fe8","outPtr":"0x113e330","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:27:26.300Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x113e330","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x113e330","time":"2026-04-26T01:27:26.301Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T01:27:26.309Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T01:27:26.309Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T01:27:26.310Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T01:27:26.310Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x97e0234","outPtr":"0x113e95c","referencePtr":"0x113e990","reference":"TestMachine_001.ProtectedValue","time":"2026-04-26T01:27:26.411Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9880c58","outPtr":"0x113e8c4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x113e8c4","time":"2026-04-26T01:27:26.412Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x97e0560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x98ae110","flags10":1124099840,"word14":2,"word4c":131073,"word54":138427596,"word58":0,"word5c":0,"word60":0,"word64":159215592,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 db 8a 09 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 e1 8a 09 cc 3c 40 08 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 7d 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ac b4 35 01 00 00 00 00"},"time":"2026-04-26T01:27:26.413Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97e05b0","outPtr":"0x113e854","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x113e854","time":"2026-04-26T01:27:26.413Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97e05b0","outPtr":"0x113e854","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x113e854","time":"2026-04-26T01:27:26.414Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x97e05b0","outPtr":"0x113e854","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x113e854","time":"2026-04-26T01:27:26.414Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x97e0560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x98ae110","flags10":1124099840,"word14":2,"word4c":131073,"word54":138427596,"word58":0,"word5c":0,"word60":0,"word64":159215592,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 db 8a 09 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 10 e1 8a 09 cc 3c 40 08 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 7d 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ac b4 35 01 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T01:27:26.415Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T01:27:26.415Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x113ea1c","args":["0x6358fe0","0x1","0x1","0xe940e4b3","0x74794704"],"time":"2026-04-26T01:27:26.417Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97d6fe8","outPtr":"0x113e89c","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:27:26.417Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x113e89c","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x113e89c","time":"2026-04-26T01:27:26.418Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x97d6fe8","outPtr":"0x113d530","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:27:26.418Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x113d530","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x113d530","time":"2026-04-26T01:27:26.419Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T01:27:26.419Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x97dc710","0x1","0x1","0x1","0x2","0x0","0x13a","0x97e0620","0x113e6e0","0xfdd1603"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x97e0620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 7d 09 1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 7e 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:27:26.545Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x97dc710","args":["0x1","0x1","0x1","0x168","0xa978020","0x8c77c5b2","0x97e01ec","0x97e01dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa978020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 7d 09 1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 7e 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:27:26.547Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:27:26.548Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:27:26.548Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x97dc710","0x1","0x1","0x2","0x2","0x0","0x27","0x98ad858","0x113e6e0","0xfdd1603"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x98ad858","hex":"1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:27:26.549Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x97dc710","args":["0x1","0x1","0x2","0x55","0xa978020","0x8c77c5b2","0x98b955c","0x98b954c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa978020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:27:26.550Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:27:26.551Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:27:26.551Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97dc710","args":["0x2c2","0x8305654","0x7b5e940","0x76ffedd8","0x97dc71c","0x2c2","0x8305654","0x206","0x3","0x7dac514"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x8305654","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90 e0 75 62 4a 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7dac514","hex":"48 03 c4"}],"time":"2026-04-26T01:27:26.578Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:26.580Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97dc710","args":["0x97","0x138698c","0x7b5e940","0x76ffedd8","0x97dc71c","0x97","0x138698c","0x206","0x3","0x7dac514"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x138698c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 fa 1a 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90 e0 75 62 4a 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7dac514","hex":"48 03 c4"}],"time":"2026-04-26T01:27:26.583Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:26.584Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97dc710","args":["0x5c","0x8305654","0x7b5e940","0x76ffedd8","0x97dc71c","0x5c","0x8305654","0x206","0x3","0x7dac514"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x8305654","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 11 d3 e0 7e 42 c1 80 4e 9b 75 ec ba 99 fc f7 ca 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7dac514","hex":"48 03 c4"}],"time":"2026-04-26T01:27:26.586Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:26.587Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97dc710","args":["0x69","0x138698c","0x7b5e940","0x76ffedd8","0x97dc71c","0x69","0x138698c","0x206","0x3","0x7dac514"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x138698c","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 20 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 11 d3 e0 7e 42 c1 80 4e 9b 75 ec ba 99 fc f7 ca 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 03 00 00 00 03 00 00 00 c0 00 80 dc d4 63 1b d5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7dac514","hex":"48 03 c4"}],"time":"2026-04-26T01:27:26.590Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:26.591Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0x113e9e0","serverHandle":1,"user":"dohertj2","passwordLength":8,"userIdOut":"0x113e9c4","time":"2026-04-26T01:27:27.454Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-26T01:27:27.470Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","address":"0x65a535fe","ecx":"0x113e9e8","args":["0x6358fe0","0x1","0x1","0x1","0x0","0xb","0x0","0x0","0x0","0x7","0x0","0x9c34f995","0x40e6873c","0xe940e4b3"],"time":"2026-04-26T01:27:27.497Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","retval":"0x0","time":"2026-04-26T01:27:27.499Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x97dc710","0x1","0x1","0x2","0x3","0x0","0xcb","0x98ba108","0x113e6e0","0xfdd1603"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x3","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":203,"ptr":"0x98ba108","hex":"38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 00 00 00 80 e9 76 d7 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 80 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 34 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 66 00 61 00 6c 00 73 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 13 87 cc 0c 01 00 00 00"}],"time":"2026-04-26T01:27:27.553Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x97dc710","args":["0x1","0x1","0x2","0xf9","0xa978020","0x8c77c5b2","0x97d77cc","0x97d77bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":249,"ptr":"0xa978020","hex":"01 00 cb 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 00 00 00 80 e9 76 d7 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 80 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 34 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 66 00 61 00 6c 00 73 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 13 87 cc 0c 01 00 00 00"}],"time":"2026-04-26T01:27:27.555Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:27:27.556Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:27:27.556Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97dc710","args":["0x33","0x8305654","0x7b5e940","0x76ffedd8","0x97dc71c","0x33","0x8305654","0x206","0x3","0x7dac514"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x8305654","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7dac514","hex":"48 03 c4"}],"time":"2026-04-26T01:27:27.579Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:27.580Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x97dc710","args":["0x55","0x138698c","0x7b5e940","0x76ffedd8","0x97dc71c","0x55","0x138698c","0x206","0x3","0x7dac514"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x138698c","hex":"55 00 00 00 01 00 27 00 00 00 00 00 00 00 21 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 11 d3 e0 7e 42 c1 80 4e 9b 75 ec ba 99 fc f7 ca 03 00 00 00 c0 00 80 e9 76 d7 1b d5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7dac514","hex":"48 03 c4"}],"time":"2026-04-26T01:27:27.582Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:27.584Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x97dc710","0x1","0x1","0x2","0x2","0x0","0x25","0x98ad858","0x113e73c","0xfdd15f7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x98ad858","hex":"21 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:27:32.529Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x97dc710","args":["0x1","0x1","0x2","0x53","0xa978020","0x8c77c5c6","0x113e78c","0x113e77c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa978020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:27:32.530Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:27:32.530Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:27:32.531Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/114-frida-write-secured2-auth-protectedvalue-false/harness.log b/captures/114-frida-write-secured2-auth-protectedvalue-false/harness.log new file mode 100644 index 0000000..e9e7d40 --- /dev/null +++ b/captures/114-frida-write-secured2-auth-protectedvalue-false/harness.log @@ -0,0 +1,18 @@ +2026-04-26T01:27:19.0707974+00:00 harness.start {"Scenario":"write-secured2","ClientName":"MxFridaTrace-114-frida-write-secured2-auth-protectedvalue-false","Tags":["TestMachine_001.ProtectedValue"],"ItemContext":"","WriteType":"bool","WriteValue":"false","WriteValues":[],"UserId":1,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"dohertj2","AuthenticateBeforeWrite":true,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T01:27:26.0318136+00:00 mx.register.begin {"ClientName":"MxFridaTrace-114-frida-write-secured2-auth-protectedvalue-false"} +2026-04-26T01:27:26.4092284+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T01:27:26.4102283+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue"} +2026-04-26T01:27:26.4162207+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:26.4162207+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:26.4192110+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:27.4520894+00:00 mx.authenticate-before-write.begin {"AuthUser":"dohertj2","PasswordSource":"env"} +2026-04-26T01:27:27.4713964+00:00 mx.authenticate-before-write.end {"AuthUser":"dohertj2","AuthenticatedUserId":1,"CurrentUserId":1,"VerifierUserId":0} +2026-04-26T01:27:27.4903994+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"False"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-26T01:27:27.5004284+00:00 mx.write.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0} +2026-04-26T01:27:32.5159101+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:32.5159101+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:32.5159101+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:32.5159101+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:32.5169028+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T01:27:36.4348911+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T01:27:36.4398967+00:00 harness.stop {} diff --git a/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-command.txt b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-command.txt new file mode 100644 index 0000000..5dfe82b --- /dev/null +++ b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\115-frida-write-secured2-auth-protectedvalue-true\harness.log --client=MxFridaTrace-115-frida-write-secured2-auth-protectedvalue-true diff --git a/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-events.tsv b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-events.tsv new file mode 100644 index 0000000..22876e7 --- /dev/null +++ b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-events.tsv @@ -0,0 +1,91 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T01:27:47.442Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T01:27:47.443Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T01:27:47.443Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T01:27:47.444Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T01:27:47.444Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T01:27:47.445Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T01:27:47.445Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T01:27:47.446Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T01:27:47.446Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T01:27:54.184Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:27:54.185Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T01:27:54.185Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T01:27:54.186Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:54.187Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:27:54.187Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T01:27:54.188Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T01:27:54.285Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T01:27:54.286Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T01:27:54.287Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T01:27:54.287Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T01:27:54.330Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:54.331Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7ce6e4 [] +2026-04-26T01:27:54.331Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:54.332Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7ce6e4 [] +2026-04-26T01:27:54.436Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:27:54.437Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7cec74 [] +2026-04-26T01:27:54.438Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:27:54.439Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7cec04 [] +2026-04-26T01:27:54.439Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7cec04 [] +2026-04-26T01:27:54.440Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7cec04 [] +2026-04-26T01:27:54.441Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T01:27:54.441Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:27:54.443Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x7cedcc "[""0x5d28fe0"",""0x1"",""0x1"",""0x3e3454fc"",""0x74794704""]" +2026-04-26T01:27:54.443Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:54.444Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7cec4c [] +2026-04-26T01:27:54.444Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:27:54.444Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7cd8e0 [] +2026-04-26T01:27:54.445Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T01:27:54.571Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x90a0620"",""0x7cea90"",""0x8067f41c""]" 0 1 0x2 +2026-04-26T01:27:54.571Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x90a0620"",""0x7cea90"",""0x8067f41c""]" 1 314 0x90a0620 True:u8@1 True:u8@3 True:u8@4 True:u8@6 True:u8@111 True:u8@112 True:u8@114 True:u8@116 True:u8@130 True:u8@136 True:u8@156 True:u8@161 True:u8@163 True:u8@164 True:u8@166 True:u8@283 True:u8@284 True:u8@286 True:u8@288 True:u8@302 True:u8@308 True:i32@6 True:i32@116 True:i32@156 True:i32@166 True:i32@288 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 09 09 1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 0a 09 20 01 00 02 00 00 00 +2026-04-26T01:27:54.574Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x909c710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9a32020"",""0x727ab00b"",""0x90a01ec"",""0x90a01dc"",""0x641add04"",""0x0""]" 0 360 0x9a32020 True:u8@0 True:u8@3 True:u8@10 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@49 True:u8@50 True:u8@52 True:u8@157 True:u8@158 True:u8@160 True:u8@162 True:u8@176 True:u8@182 True:u8@202 True:u8@207 True:u8@209 True:u8@210 True:u8@212 True:u8@329 True:u8@330 True:u8@332 True:u8@334 True:u8@348 True:u8@354 True:i32@3 True:i32@10 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@52 True:i32@162 True:i32@202 True:i32@212 True:i32@334 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 09 09 1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 0a 09 20 01 00 02 00 00 00 +2026-04-26T01:27:54.575Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:27:54.575Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:27:54.576Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x916d420"",""0x7cea90"",""0x8067f41c""]" 0 2 0x2 +2026-04-26T01:27:54.576Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x916d420"",""0x7cea90"",""0x8067f41c""]" 1 39 0x916d420 True:u8@1 1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:27:54.578Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x909c710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x9a32020"",""0x727ab00b"",""0x917955c"",""0x917954c"",""0x641add04"",""0x0""]" 0 85 0x9a32020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:27:54.578Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:27:54.579Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:27:54.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x2c2"",""0xc627d4"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x2c2"",""0xc627d4"",""0x206"",""0x3"",""0x766437c""]" 0 706 0xc627d4 True:u8@4 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@205 True:u8@206 True:u8@208 True:u8@210 True:u8@224 True:u8@342 True:u8@344 True:u8@346 True:u8@563 True:u8@564 True:u8@566 True:u8@568 True:u8@582 True:u8@700 True:u8@702 True:u8@704 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 70 ec ae 44 3d b1 1b 4f 9f f5 a0 8e 76 67 f8 65 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T01:27:54.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x2c2"",""0xc627d4"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x2c2"",""0xc627d4"",""0x206"",""0x3"",""0x766437c""]" 1 518 0x3 +2026-04-26T01:27:54.619Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x2c2"",""0xc627d4"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x2c2"",""0xc627d4"",""0x206"",""0x3"",""0x766437c""]" 2 3 0x766437c b8 e4 cb +2026-04-26T01:27:54.620Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:54.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x97"",""0x762c294"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x97"",""0x762c294"",""0x206"",""0x3"",""0x766437c""]" 0 151 0x762c294 True:u8@4 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@89 True:u8@106 True:u8@119 True:u8@139 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 True:i32@89 97 00 00 00 01 00 69 00 00 00 00 00 00 00 6b 1b 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 70 ec ae 44 3d b1 1b 4f 9f f5 a0 8e 76 67 f8 65 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T01:27:54.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x97"",""0x762c294"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x97"",""0x762c294"",""0x206"",""0x3"",""0x766437c""]" 1 518 0x3 +2026-04-26T01:27:54.623Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x97"",""0x762c294"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x97"",""0x762c294"",""0x206"",""0x3"",""0x766437c""]" 2 3 0x766437c b8 e4 cb +2026-04-26T01:27:54.625Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:54.629Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x5c"",""0xc627d4"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x5c"",""0xc627d4"",""0x206"",""0x3"",""0x766437c""]" 0 92 0xc627d4 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@54 True:u8@56 True:i32@18 True:i32@22 True:i32@30 True:i32@34 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 19 f1 05 be 0e f5 91 42 99 53 4f 2e e5 55 14 f5 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce +2026-04-26T01:27:54.629Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x5c"",""0xc627d4"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x5c"",""0xc627d4"",""0x206"",""0x3"",""0x766437c""]" 1 518 0x3 +2026-04-26T01:27:54.629Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x5c"",""0xc627d4"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x5c"",""0xc627d4"",""0x206"",""0x3"",""0x766437c""]" 2 3 0x766437c b8 e4 cb +2026-04-26T01:27:54.630Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:54.632Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x69"",""0x762c294"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x69"",""0x762c294"",""0x206"",""0x3"",""0x766437c""]" 0 105 0x762c294 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 23 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 19 f1 05 be 0e f5 91 42 99 53 4f 2e e5 55 14 f5 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 03 00 00 00 03 00 00 00 c0 00 80 e9 76 d7 1b d5 +2026-04-26T01:27:54.632Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x69"",""0x762c294"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x69"",""0x762c294"",""0x206"",""0x3"",""0x766437c""]" 1 518 0x3 +2026-04-26T01:27:54.632Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x69"",""0x762c294"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x69"",""0x762c294"",""0x206"",""0x3"",""0x766437c""]" 2 3 0x766437c b8 e4 cb +2026-04-26T01:27:54.634Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:55.483Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x7ced90 [] +2026-04-26T01:27:55.498Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-26T01:27:55.514Z call.enter LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x7ced98 "[""0x5d28fe0"",""0x1"",""0x1"",""0x1"",""0x0"",""0xb"",""0x0"",""0xffff"",""0x0"",""0x7"",""0x0"",""0x9edd0529"",""0x40e6873c"",""0x3e3454fc""]" +2026-04-26T01:27:55.515Z call.leave LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x0 [] +2026-04-26T01:27:55.567Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xc9"",""0x917a108"",""0x7cea90"",""0x8067f41c""]" 0 2 0x3 +2026-04-26T01:27:55.567Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xc9"",""0x917a108"",""0x7cea90"",""0x8067f41c""]" 1 201 0x917a108 True:u8@1 True:u8@17 True:u8@28 True:u8@197 True:i32@197 True:variant_bool@191 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 00 f6 bf e8 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 7e 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 35 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 74 00 72 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 92 f4 cc 0c 01 00 00 00 +2026-04-26T01:27:55.568Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x909c710 "[""0x1"",""0x1"",""0x2"",""0xf7"",""0x9a32020"",""0x727ab00b"",""0x91799b4"",""0x91799a4"",""0x641add04"",""0x0""]" 0 247 0x9a32020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:u8@74 True:u8@243 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@243 True:variant_bool@237 01 00 c9 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 00 f6 bf e8 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 7e 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 35 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 74 00 72 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 92 f4 cc 0c 01 00 00 00 +2026-04-26T01:27:55.569Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:27:55.570Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:27:55.579Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x33"",""0xa6c779c"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x33"",""0xa6c779c"",""0x206"",""0x3"",""0x766437c""]" 0 51 0xa6c779c True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:i32@18 True:i32@22 True:i32@30 True:i32@34 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00 +2026-04-26T01:27:55.579Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x33"",""0xa6c779c"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x33"",""0xa6c779c"",""0x206"",""0x3"",""0x766437c""]" 1 518 0x3 +2026-04-26T01:27:55.579Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x33"",""0xa6c779c"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x33"",""0xa6c779c"",""0x206"",""0x3"",""0x766437c""]" 2 3 0x766437c b8 e4 cb +2026-04-26T01:27:55.580Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:55.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x55"",""0xa6c6694"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x55"",""0xa6c6694"",""0x206"",""0x3"",""0x766437c""]" 0 85 0xa6c6694 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 55 00 00 00 01 00 27 00 00 00 00 00 00 00 24 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 19 f1 05 be 0e f5 91 42 99 53 4f 2e e5 55 14 f5 03 00 00 00 c0 00 00 f6 bf e8 1b d5 +2026-04-26T01:27:55.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x55"",""0xa6c6694"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x55"",""0xa6c6694"",""0x206"",""0x3"",""0x766437c""]" 1 518 0x3 +2026-04-26T01:27:55.583Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x55"",""0xa6c6694"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x55"",""0xa6c6694"",""0x206"",""0x3"",""0x766437c""]" 2 3 0x766437c b8 e4 cb +2026-04-26T01:27:55.584Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:27:57.976Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x84"",""0xa6c779c"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x84"",""0xa6c779c"",""0x206"",""0x3"",""0x766437c""]" 0 132 0xa6c779c True:u8@4 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:u8@73 True:u8@94 True:u8@116 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 True:i32@53 84 00 00 00 01 00 56 00 00 00 00 00 00 00 7a 1b 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 01 00 00 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 01 00 20 03 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90 e0 75 62 4a 24 01 00 02 00 00 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 01 00 20 03 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90 +2026-04-26T01:27:57.976Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x84"",""0xa6c779c"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x84"",""0xa6c779c"",""0x206"",""0x3"",""0x766437c""]" 1 518 0x3 +2026-04-26T01:27:57.976Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x909c710 "[""0x84"",""0xa6c779c"",""0x728ef60"",""0x76ffedd8"",""0x909c71c"",""0x84"",""0xa6c779c"",""0x206"",""0x3"",""0x766437c""]" 2 3 0x766437c b8 e4 cb +2026-04-26T01:27:57.978Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:28:00.542Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x916d5d0"",""0x7ceaec"",""0x8067f408""]" 0 2 0x2 +2026-04-26T01:28:00.542Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x909c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x916d5d0"",""0x7ceaec"",""0x8067f408""]" 1 37 0x916d5d0 True:u8@1 21 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:28:00.543Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x909c710 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x9a32020"",""0x727ab01f"",""0x7ceb3c"",""0x7ceb2c"",""0x641add04"",""0x0""]" 0 83 0x9a32020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00 +2026-04-26T01:28:00.544Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:28:00.544Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-exit.txt b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/115-frida-write-secured2-auth-protectedvalue-true/frida.stderr.txt b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/115-frida-write-secured2-auth-protectedvalue-true/frida.stdout.jsonl b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida.stdout.jsonl new file mode 100644 index 0000000..72e8591 --- /dev/null +++ b/captures/115-frida-write-secured2-auth-protectedvalue-true/frida.stdout.jsonl @@ -0,0 +1,88 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\115-frida-write-secured2-auth-protectedvalue-true\harness.log --client=MxFridaTrace-115-frida-write-secured2-auth-protectedvalue-true`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\115-frida-write-secured2-auth-protectedvalue-true\harness.log --client=MxFridaTrace-115-frida-write-secured2-auth-protectedvalue-true`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T01:27:47.442Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T01:27:47.443Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T01:27:47.443Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T01:27:47.444Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T01:27:47.444Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T01:27:47.445Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T01:27:47.445Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T01:27:47.446Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T01:27:47.446Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T01:27:54.184Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T01:27:54.185Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T01:27:54.185Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T01:27:54.186Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T01:27:54.187Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T01:27:54.187Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T01:27:54.188Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T01:27:54.285Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T01:27:54.286Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T01:27:54.287Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T01:27:54.287Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9096fe8","outPtr":"0x7ce6e4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:27:54.330Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7ce6e4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7ce6e4","time":"2026-04-26T01:27:54.331Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9096fe8","outPtr":"0x7ce6e4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:27:54.331Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7ce6e4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7ce6e4","time":"2026-04-26T01:27:54.332Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x90a0234","outPtr":"0x7ced0c","referencePtr":"0x7ced40","reference":"TestMachine_001.ProtectedValue","time":"2026-04-26T01:27:54.436Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9142918","outPtr":"0x7cec74","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x7cec74","time":"2026-04-26T01:27:54.437Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x90a0560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x916d150","flags10":1124099840,"word14":2,"word4c":131073,"word54":130748764,"word58":0,"word5c":0,"word60":0,"word64":151613416,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 58 cf 16 09 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 50 d1 16 09 5c 11 cb 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 09 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 10 c7 00 00 00 00 00"},"time":"2026-04-26T01:27:54.438Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90a05b0","outPtr":"0x7cec04","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x7cec04","time":"2026-04-26T01:27:54.439Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90a05b0","outPtr":"0x7cec04","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x7cec04","time":"2026-04-26T01:27:54.439Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90a05b0","outPtr":"0x7cec04","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x7cec04","time":"2026-04-26T01:27:54.440Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x90a0560","referenceString":{"length":30,"capacity":31,"value":"TestMachine_001.ProtectedValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x916d150","flags10":1124099840,"word14":2,"word4c":131073,"word54":130748764,"word58":0,"word5c":0,"word60":0,"word64":151613416,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 58 cf 16 09 00 65 00 00 00 02 00 00 00 00 00 02 1e 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 50 d1 16 09 5c 11 cb 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 09 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 f4 10 c7 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T01:27:54.441Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T01:27:54.441Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x7cedcc","args":["0x5d28fe0","0x1","0x1","0x3e3454fc","0x74794704"],"time":"2026-04-26T01:27:54.443Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9096fe8","outPtr":"0x7cec4c","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:27:54.443Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7cec4c","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x7cec4c","time":"2026-04-26T01:27:54.444Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x9096fe8","outPtr":"0x7cd8e0","inWords":[65537,393218,193544,655526,26555,0],"time":"2026-04-26T01:27:54.444Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7cd8e0","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655526,"w4":26555},"retval":"0x7cd8e0","time":"2026-04-26T01:27:54.444Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T01:27:54.445Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x909c710","0x1","0x1","0x1","0x2","0x0","0x13a","0x90a0620","0x7cea90","0x8067f41c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x90a0620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 09 09 1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 0a 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:27:54.571Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x909c710","args":["0x1","0x1","0x1","0x168","0x9a32020","0x727ab00b","0x90a01ec","0x90a01dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9a32020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 09 09 1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 0a 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:27:54.574Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:27:54.575Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:27:54.575Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x909c710","0x1","0x1","0x2","0x2","0x0","0x27","0x916d420","0x7cea90","0x8067f41c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x916d420","hex":"1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:27:54.576Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x909c710","args":["0x1","0x1","0x2","0x55","0x9a32020","0x727ab00b","0x917955c","0x917954c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x9a32020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 00 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:27:54.578Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:27:54.578Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:27:54.579Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c710","args":["0x2c2","0xc627d4","0x728ef60","0x76ffedd8","0x909c71c","0x2c2","0xc627d4","0x206","0x3","0x766437c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0xc627d4","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 70 ec ae 44 3d b1 1b 4f 9f f5 a0 8e 76 67 f8 65 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x766437c","hex":"b8 e4 cb"}],"time":"2026-04-26T01:27:54.619Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:54.620Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c710","args":["0x97","0x762c294","0x728ef60","0x76ffedd8","0x909c71c","0x97","0x762c294","0x206","0x3","0x766437c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x762c294","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 6b 1b 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 70 ec ae 44 3d b1 1b 4f 9f f5 a0 8e 76 67 f8 65 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x766437c","hex":"b8 e4 cb"}],"time":"2026-04-26T01:27:54.623Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:54.625Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c710","args":["0x5c","0xc627d4","0x728ef60","0x76ffedd8","0x909c71c","0x5c","0xc627d4","0x206","0x3","0x766437c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xc627d4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 19 f1 05 be 0e f5 91 42 99 53 4f 2e e5 55 14 f5 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x766437c","hex":"b8 e4 cb"}],"time":"2026-04-26T01:27:54.629Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:54.630Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c710","args":["0x69","0x762c294","0x728ef60","0x76ffedd8","0x909c71c","0x69","0x762c294","0x206","0x3","0x766437c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x762c294","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 23 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 19 f1 05 be 0e f5 91 42 99 53 4f 2e e5 55 14 f5 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 03 00 00 00 03 00 00 00 c0 00 80 e9 76 d7 1b d5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x766437c","hex":"b8 e4 cb"}],"time":"2026-04-26T01:27:54.632Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:54.634Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0x7ced90","serverHandle":1,"user":"dohertj2","passwordLength":8,"userIdOut":"0x7ced74","time":"2026-04-26T01:27:55.483Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-26T01:27:55.498Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","address":"0x65a535fe","ecx":"0x7ced98","args":["0x5d28fe0","0x1","0x1","0x1","0x0","0xb","0x0","0xffff","0x0","0x7","0x0","0x9edd0529","0x40e6873c","0x3e3454fc"],"time":"2026-04-26T01:27:55.514Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","retval":"0x0","time":"2026-04-26T01:27:55.515Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x909c710","0x1","0x1","0x2","0x3","0x0","0xc9","0x917a108","0x7cea90","0x8067f41c"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x3","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":201,"ptr":"0x917a108","hex":"38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 00 f6 bf e8 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 7e 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 35 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 74 00 72 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 92 f4 cc 0c 01 00 00 00"}],"time":"2026-04-26T01:27:55.567Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x909c710","args":["0x1","0x1","0x2","0xf7","0x9a32020","0x727ab00b","0x91799b4","0x91799a4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":247,"ptr":"0x9a32020","hex":"01 00 c9 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 00 f6 bf e8 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 7e 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 35 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 74 00 72 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 92 f4 cc 0c 01 00 00 00"}],"time":"2026-04-26T01:27:55.568Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:27:55.569Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:27:55.570Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c710","args":["0x33","0xa6c779c","0x728ef60","0x76ffedd8","0x909c71c","0x33","0xa6c779c","0x206","0x3","0x766437c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xa6c779c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x766437c","hex":"b8 e4 cb"}],"time":"2026-04-26T01:27:55.579Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:55.580Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c710","args":["0x55","0xa6c6694","0x728ef60","0x76ffedd8","0x909c71c","0x55","0xa6c6694","0x206","0x3","0x766437c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0xa6c6694","hex":"55 00 00 00 01 00 27 00 00 00 00 00 00 00 24 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 19 f1 05 be 0e f5 91 42 99 53 4f 2e e5 55 14 f5 03 00 00 00 c0 00 00 f6 bf e8 1b d5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x766437c","hex":"b8 e4 cb"}],"time":"2026-04-26T01:27:55.583Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:55.584Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x909c710","args":["0x84","0xa6c779c","0x728ef60","0x76ffedd8","0x909c71c","0x84","0xa6c779c","0x206","0x3","0x766437c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":132,"ptr":"0xa6c779c","hex":"84 00 00 00 01 00 56 00 00 00 00 00 00 00 7a 1b 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 24 01 00 01 00 00 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 01 00 20 03 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90 e0 75 62 4a 24 01 00 02 00 00 00 7d 18 17 b8 e3 f4 23 41 9a a4 c3 e5 bf 0d e1 0a 01 00 20 03 a5 75 9d b6 2d 9d c6 45 9d 5d 3a 90"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x766437c","hex":"b8 e4 cb"}],"time":"2026-04-26T01:27:57.976Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:27:57.978Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x909c710","0x1","0x1","0x2","0x2","0x0","0x25","0x916d5d0","0x7ceaec","0x8067f408"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x916d5d0","hex":"21 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:28:00.542Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x909c710","args":["0x1","0x1","0x2","0x53","0x9a32020","0x727ab01f","0x7ceb3c","0x7ceb2c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x9a32020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 dd f1 4b 71 b0 42 b3 48 8a b1 b0 ce 92 0f 65 08 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 03 00 00 00"}],"time":"2026-04-26T01:28:00.543Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:28:00.544Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:28:00.544Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/115-frida-write-secured2-auth-protectedvalue-true/harness.log b/captures/115-frida-write-secured2-auth-protectedvalue-true/harness.log new file mode 100644 index 0000000..10d729b --- /dev/null +++ b/captures/115-frida-write-secured2-auth-protectedvalue-true/harness.log @@ -0,0 +1,18 @@ +2026-04-26T01:27:47.3518717+00:00 harness.start {"Scenario":"write-secured2","ClientName":"MxFridaTrace-115-frida-write-secured2-auth-protectedvalue-true","Tags":["TestMachine_001.ProtectedValue"],"ItemContext":"","WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":1,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"dohertj2","AuthenticateBeforeWrite":true,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T01:27:54.0585376+00:00 mx.register.begin {"ClientName":"MxFridaTrace-115-frida-write-secured2-auth-protectedvalue-true"} +2026-04-26T01:27:54.4340131+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T01:27:54.4351047+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue"} +2026-04-26T01:27:54.4418488+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:54.4422541+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:54.4452350+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:27:55.4821980+00:00 mx.authenticate-before-write.begin {"AuthUser":"dohertj2","PasswordSource":"env"} +2026-04-26T01:27:55.4991830+00:00 mx.authenticate-before-write.end {"AuthUser":"dohertj2","AuthenticatedUserId":1,"CurrentUserId":1,"VerifierUserId":0} +2026-04-26T01:27:55.5103779+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-26T01:27:55.5151702+00:00 mx.write.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1,"WriteIndex":0} +2026-04-26T01:28:00.5294207+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:28:00.5294207+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:28:00.5294207+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:28:00.5294207+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue","ItemHandle":1} +2026-04-26T01:28:00.5294207+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T01:28:04.6626636+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T01:28:04.6676637+00:00 harness.stop {} diff --git a/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-command.txt b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-command.txt new file mode 100644 index 0000000..068f194 --- /dev/null +++ b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --authenticated-user-is-verifier --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\116-frida-write-secured2-auth-verified-protectedvalue1\harness.log --client=MxFridaTrace-116-frida-write-secured2-auth-verified-protectedvalue1 diff --git a/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-events.tsv b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-events.tsv new file mode 100644 index 0000000..8e3eff7 --- /dev/null +++ b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-events.tsv @@ -0,0 +1,87 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T01:30:41.798Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T01:30:41.799Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T01:30:41.799Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T01:30:41.800Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T01:30:41.800Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T01:30:41.800Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T01:30:41.801Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T01:30:41.801Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T01:30:41.802Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T01:30:48.449Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:30:48.449Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T01:30:48.450Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T01:30:48.450Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:30:48.451Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:30:48.451Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T01:30:48.452Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T01:30:48.548Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:30:48.549Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe438 [] +2026-04-26T01:30:48.549Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:30:48.550Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe438 [] +2026-04-26T01:30:48.550Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T01:30:48.551Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T01:30:48.551Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T01:30:48.552Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T01:30:48.654Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:30:48.654Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe9d0 [] +2026-04-26T01:30:48.655Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:30:48.656Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe960 [] +2026-04-26T01:30:48.656Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe960 [] +2026-04-26T01:30:48.657Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fe960 [] +2026-04-26T01:30:48.658Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T01:30:48.658Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:30:48.660Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x6feb2c "[""0x5838fe0"",""0x1"",""0x1"",""0xa7ce8929"",""0x74794704""]" +2026-04-26T01:30:48.660Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:30:48.661Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe9ac [] +2026-04-26T01:30:48.661Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:30:48.661Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fd640 [] +2026-04-26T01:30:48.661Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T01:30:48.789Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d30620"",""0x6fe7f0"",""0xb7265f8b""]" 0 1 0x2 +2026-04-26T01:30:48.789Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d30620"",""0x6fe7f0"",""0xb7265f8b""]" 1 314 0x8d30620 True:u8@1 True:u8@3 True:u8@4 True:u8@6 True:u8@111 True:u8@112 True:u8@114 True:u8@116 True:u8@130 True:u8@136 True:u8@156 True:u8@161 True:u8@163 True:u8@164 True:u8@166 True:u8@283 True:u8@284 True:u8@286 True:u8@288 True:u8@302 True:u8@308 True:i32@6 True:i32@116 True:i32@156 True:i32@166 True:i32@288 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d2 08 1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d3 08 20 01 00 02 00 00 00 +2026-04-26T01:30:48.792Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d2c710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x96cb020"",""0x691b8323"",""0x8d301ec"",""0x8d301dc"",""0x641add04"",""0x0""]" 0 360 0x96cb020 True:u8@0 True:u8@3 True:u8@10 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@34 True:u8@38 True:u8@47 True:u8@49 True:u8@50 True:u8@52 True:u8@157 True:u8@158 True:u8@160 True:u8@162 True:u8@176 True:u8@182 True:u8@202 True:u8@207 True:u8@209 True:u8@210 True:u8@212 True:u8@329 True:u8@330 True:u8@332 True:u8@334 True:u8@348 True:u8@354 True:i32@3 True:i32@10 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@34 True:i32@52 True:i32@162 True:i32@202 True:i32@212 True:i32@334 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d2 08 1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d3 08 20 01 00 02 00 00 00 +2026-04-26T01:30:48.793Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:30:48.793Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:30:48.794Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8dfd300"",""0x6fe7f0"",""0xb7265f8b""]" 0 2 0x2 +2026-04-26T01:30:48.794Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8dfd300"",""0x6fe7f0"",""0xb7265f8b""]" 1 39 0x8dfd300 True:u8@1 1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:30:48.796Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d2c710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x96cb020"",""0x691b8323"",""0x8e0955c"",""0x8e0954c"",""0x641add04"",""0x0""]" 0 85 0x96cb020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:30:48.796Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:30:48.797Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:30:48.826Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x5c"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x5c"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 0 92 0x7544fcc True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@54 True:u8@56 True:i32@18 True:i32@22 True:i32@30 True:i32@34 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 fd 8d c6 6d 98 4e bf 4a a9 f4 df f5 12 60 b6 ba 90 17 00 58 6c 7c 73 44 80 cb 53 cc +2026-04-26T01:30:48.826Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x5c"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x5c"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 1 518 0x3 +2026-04-26T01:30:48.826Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x5c"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x5c"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 2 3 0x7230cb4 18 99 68 +2026-04-26T01:30:48.828Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:30:48.830Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x69"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x69"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 0 105 0x753d894 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 26 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 fd 8d c6 6d 98 4e bf 4a a9 f4 df f5 12 60 b6 ba 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 03 00 00 00 03 00 00 00 c0 00 c0 32 3e 40 81 d4 +2026-04-26T01:30:48.830Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x69"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x69"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 1 518 0x3 +2026-04-26T01:30:48.830Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x69"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x69"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 2 3 0x7230cb4 18 99 68 +2026-04-26T01:30:48.831Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:30:48.850Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x2c2"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x2c2"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 0 706 0x7544fcc True:u8@4 True:u8@14 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@205 True:u8@206 True:u8@208 True:u8@210 True:u8@224 True:u8@342 True:u8@344 True:u8@346 True:u8@563 True:u8@564 True:u8@566 True:u8@568 True:u8@582 True:u8@700 True:u8@702 True:u8@704 True:i32@14 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 53 d1 e6 48 74 fe 36 46 80 64 ec 0d 68 af bc 0b 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T01:30:48.850Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x2c2"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x2c2"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 1 518 0x3 +2026-04-26T01:30:48.850Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x2c2"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x2c2"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 2 3 0x7230cb4 18 99 68 +2026-04-26T01:30:48.851Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:30:48.853Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x97"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x97"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 0 151 0x753d894 True:u8@4 True:u8@18 True:u8@22 True:u8@26 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@89 True:u8@106 True:u8@119 True:u8@139 True:i32@18 True:i32@22 True:i32@26 True:i32@30 True:i32@34 True:i32@89 97 00 00 00 01 00 69 00 00 00 00 00 00 00 29 1e 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 53 d1 e6 48 74 fe 36 46 80 64 ec 0d 68 af bc 0b 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T01:30:48.853Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x97"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x97"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 1 518 0x3 +2026-04-26T01:30:48.853Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x97"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x97"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 2 3 0x7230cb4 18 99 68 +2026-04-26T01:30:48.855Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:30:49.697Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x6feaf0 [] +2026-04-26T01:30:49.713Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-26T01:30:49.727Z call.enter LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x6feaf8 "[""0x5838fe0"",""0x1"",""0x1"",""0x1"",""0x1"",""0xb"",""0x0"",""0xffff"",""0x0"",""0x7"",""0x0"",""0xaf61a546"",""0x40e6873c"",""0xa7ce8929""]" +2026-04-26T01:30:49.728Z call.leave LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x0 [] +2026-04-26T01:30:49.781Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xd3"",""0x8e0a108"",""0x6fe7f0"",""0xb7265f8b""]" 0 2 0x3 +2026-04-26T01:30:49.781Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xd3"",""0x8e0a108"",""0x6fe7f0"",""0xb7265f8b""]" 1 211 0x8e0a108 True:u8@1 True:u8@17 True:u8@28 True:u8@207 True:i32@207 True:variant_bool@201 38 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff 00 00 00 41 76 50 1c d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 88 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 36 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 76 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 31 00 00 00 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f ff ff 1d 9d cf 0c 01 00 00 00 +2026-04-26T01:30:49.783Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d2c710 "[""0x1"",""0x1"",""0x2"",""0x101"",""0x96cb020"",""0x691b8323"",""0x8e099b4"",""0x8e099a4"",""0x641add04"",""0x0""]" 0 257 0x96cb020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:u8@63 True:u8@74 True:u8@253 True:i32@14 True:i32@18 True:i32@26 True:i32@30 True:i32@253 True:variant_bool@247 01 00 d3 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff 00 00 00 41 76 50 1c d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 88 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 36 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 76 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 31 00 00 00 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f ff ff 1d 9d cf 0c 01 00 00 00 +2026-04-26T01:30:49.783Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:30:49.784Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:30:49.818Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x33"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x33"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 0 51 0x7544fcc True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:i32@18 True:i32@22 True:i32@30 True:i32@34 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00 +2026-04-26T01:30:49.818Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x33"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x33"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 1 518 0x3 +2026-04-26T01:30:49.818Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x33"",""0x7544fcc"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x33"",""0x7544fcc"",""0x206"",""0x3"",""0x7230cb4""]" 2 3 0x7230cb4 18 99 68 +2026-04-26T01:30:49.820Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:30:49.822Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x55"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x55"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 0 85 0x753d894 True:u8@4 True:u8@18 True:u8@22 True:u8@30 True:u8@34 True:u8@42 True:u8@51 True:u8@53 True:i32@18 True:i32@22 True:i32@30 True:i32@34 True:i32@53 55 00 00 00 01 00 27 00 00 00 00 00 00 00 27 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 fd 8d c6 6d 98 4e bf 4a a9 f4 df f5 12 60 b6 ba 03 00 00 00 c0 00 00 41 76 50 1c d5 +2026-04-26T01:30:49.822Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x55"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x55"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 1 518 0x3 +2026-04-26T01:30:49.822Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d2c710 "[""0x55"",""0x753d894"",""0x5e8ead0"",""0x76ffedd8"",""0x8d2c71c"",""0x55"",""0x753d894"",""0x206"",""0x3"",""0x7230cb4""]" 2 3 0x7230cb4 18 99 68 +2026-04-26T01:30:49.824Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:30:54.764Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8dfd1e0"",""0x6fe84c"",""0xb7265f9f""]" 0 2 0x2 +2026-04-26T01:30:54.764Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d2c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8dfd1e0"",""0x6fe84c"",""0xb7265f9f""]" 1 37 0x8dfd1e0 True:u8@1 21 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:30:54.765Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d2c710 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x96cb020"",""0x691b8337"",""0x6fe89c"",""0x6fe88c"",""0x641add04"",""0x0""]" 0 83 0x96cb020 True:u8@0 True:u8@14 True:u8@18 True:u8@26 True:u8@30 True:u8@38 True:u8@47 True:i32@14 True:i32@18 True:i32@26 True:i32@30 01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00 +2026-04-26T01:30:54.766Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:30:54.766Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-exit.txt b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida.stderr.txt b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida.stdout.jsonl b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida.stdout.jsonl new file mode 100644 index 0000000..ffbca0d --- /dev/null +++ b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/frida.stdout.jsonl @@ -0,0 +1,86 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --authenticated-user-is-verifier --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\116-frida-write-secured2-auth-verified-protectedvalue1\harness.log --client=MxFridaTrace-116-frida-write-secured2-auth-verified-protectedvalue1`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestMachine_001.ProtectedValue1 --type=bool --value=true --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --authenticated-user-is-verifier --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\116-frida-write-secured2-auth-verified-protectedvalue1\harness.log --client=MxFridaTrace-116-frida-write-secured2-auth-verified-protectedvalue1`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T01:30:41.798Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T01:30:41.799Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T01:30:41.799Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T01:30:41.800Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T01:30:41.800Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T01:30:41.800Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T01:30:41.801Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T01:30:41.801Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T01:30:41.802Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T01:30:48.449Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T01:30:48.449Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T01:30:48.450Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T01:30:48.450Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T01:30:48.451Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T01:30:48.451Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T01:30:48.452Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d26fe8","outPtr":"0x6fe438","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:30:48.548Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe438","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe438","time":"2026-04-26T01:30:48.549Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d26fe8","outPtr":"0x6fe438","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:30:48.549Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe438","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe438","time":"2026-04-26T01:30:48.550Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T01:30:48.550Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T01:30:48.551Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T01:30:48.551Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T01:30:48.552Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8d30234","outPtr":"0x6fea68","referencePtr":"0x6fea9c","reference":"TestMachine_001.ProtectedValue1","time":"2026-04-26T01:30:48.654Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8dd0c30","outPtr":"0x6fe9d0","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0x6fe9d0","time":"2026-04-26T01:30:48.654Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d30560","referenceString":{"length":31,"capacity":31,"value":"TestMachine_001.ProtectedValue1"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8dfd1e0","flags10":1124099840,"word14":2,"word4c":131073,"word54":124268780,"word58":0,"word5c":0,"word60":0,"word64":148008936,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 d7 df 08 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e0 d1 df 08 ec 30 68 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d2 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 8c 42 a0 00 00 00 00 00"},"time":"2026-04-26T01:30:48.655Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d305b0","outPtr":"0x6fe960","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0x6fe960","time":"2026-04-26T01:30:48.656Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d305b0","outPtr":"0x6fe960","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0x6fe960","time":"2026-04-26T01:30:48.656Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d305b0","outPtr":"0x6fe960","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0x6fe960","time":"2026-04-26T01:30:48.657Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d30560","referenceString":{"length":31,"capacity":31,"value":"TestMachine_001.ProtectedValue1"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8dfd1e0","flags10":1124099840,"word14":2,"word4c":131073,"word54":124268780,"word58":0,"word5c":0,"word60":0,"word64":148008936,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 80 d7 df 08 00 65 00 00 00 02 00 00 00 00 00 02 1f 00 00 00 1f 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 e0 d1 df 08 ec 30 68 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d2 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 8c 42 a0 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T01:30:48.658Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T01:30:48.658Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6feb2c","args":["0x5838fe0","0x1","0x1","0xa7ce8929","0x74794704"],"time":"2026-04-26T01:30:48.660Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d26fe8","outPtr":"0x6fe9ac","inWords":[65537,393218,193544,655527,35366,0],"time":"2026-04-26T01:30:48.660Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe9ac","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0x6fe9ac","time":"2026-04-26T01:30:48.661Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d26fe8","outPtr":"0x6fd640","inWords":[65537,393218,193544,655527,35366,0],"time":"2026-04-26T01:30:48.661Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fd640","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655527,"w4":35366},"retval":"0x6fd640","time":"2026-04-26T01:30:48.661Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T01:30:48.661Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d2c710","0x1","0x1","0x1","0x2","0x0","0x13a","0x8d30620","0x6fe7f0","0xb7265f8b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8d30620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d2 08 1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d3 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:30:48.789Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d2c710","args":["0x1","0x1","0x1","0x168","0x96cb020","0x691b8323","0x8d301ec","0x8d301dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x96cb020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d2 08 1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d3 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:30:48.792Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:30:48.793Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:30:48.793Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d2c710","0x1","0x1","0x2","0x2","0x0","0x27","0x8dfd300","0x6fe7f0","0xb7265f8b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8dfd300","hex":"1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:30:48.794Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d2c710","args":["0x1","0x1","0x2","0x55","0x96cb020","0x691b8323","0x8e0955c","0x8e0954c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x96cb020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 00 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:30:48.796Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:30:48.796Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:30:48.797Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d2c710","args":["0x5c","0x7544fcc","0x5e8ead0","0x76ffedd8","0x8d2c71c","0x5c","0x7544fcc","0x206","0x3","0x7230cb4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7544fcc","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 fd 8d c6 6d 98 4e bf 4a a9 f4 df f5 12 60 b6 ba 90 17 00 58 6c 7c 73 44 80 cb 53 cc"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7230cb4","hex":"18 99 68"}],"time":"2026-04-26T01:30:48.826Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:30:48.828Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d2c710","args":["0x69","0x753d894","0x5e8ead0","0x76ffedd8","0x8d2c71c","0x69","0x753d894","0x206","0x3","0x7230cb4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x753d894","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 26 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 fd 8d c6 6d 98 4e bf 4a a9 f4 df f5 12 60 b6 ba 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 03 00 00 00 03 00 00 00 c0 00 c0 32 3e 40 81 d4"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7230cb4","hex":"18 99 68"}],"time":"2026-04-26T01:30:48.830Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:30:48.831Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d2c710","args":["0x2c2","0x7544fcc","0x5e8ead0","0x76ffedd8","0x8d2c71c","0x2c2","0x7544fcc","0x206","0x3","0x7230cb4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7544fcc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 53 d1 e6 48 74 fe 36 46 80 64 ec 0d 68 af bc 0b 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7230cb4","hex":"18 99 68"}],"time":"2026-04-26T01:30:48.850Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:30:48.851Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d2c710","args":["0x97","0x753d894","0x5e8ead0","0x76ffedd8","0x8d2c71c","0x97","0x753d894","0x206","0x3","0x7230cb4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x753d894","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 29 1e 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 53 d1 e6 48 74 fe 36 46 80 64 ec 0d 68 af bc 0b 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7230cb4","hex":"18 99 68"}],"time":"2026-04-26T01:30:48.853Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:30:48.855Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0x6feaf0","serverHandle":1,"user":"dohertj2","passwordLength":8,"userIdOut":"0x6fead4","time":"2026-04-26T01:30:49.697Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-26T01:30:49.713Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","address":"0x65a535fe","ecx":"0x6feaf8","args":["0x5838fe0","0x1","0x1","0x1","0x1","0xb","0x0","0xffff","0x0","0x7","0x0","0xaf61a546","0x40e6873c","0xa7ce8929"],"time":"2026-04-26T01:30:49.727Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","retval":"0x0","time":"2026-04-26T01:30:49.728Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d2c710","0x1","0x1","0x2","0x3","0x0","0xd3","0x8e0a108","0x6fe7f0","0xb7265f8b"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x3","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":211,"ptr":"0x8e0a108","hex":"38 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff 00 00 00 41 76 50 1c d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 88 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 36 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 76 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 31 00 00 00 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f ff ff 1d 9d cf 0c 01 00 00 00"}],"time":"2026-04-26T01:30:49.781Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d2c710","args":["0x1","0x1","0x2","0x101","0x96cb020","0x691b8323","0x8e099b4","0x8e099a4","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":257,"ptr":"0x96cb020","hex":"01 00 d3 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff 00 00 00 41 76 50 1c d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 88 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 36 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 76 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 31 00 00 00 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f ff ff 1d 9d cf 0c 01 00 00 00"}],"time":"2026-04-26T01:30:49.783Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:30:49.783Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:30:49.784Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d2c710","args":["0x33","0x7544fcc","0x5e8ead0","0x76ffedd8","0x8d2c71c","0x33","0x7544fcc","0x206","0x3","0x7230cb4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7544fcc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7230cb4","hex":"18 99 68"}],"time":"2026-04-26T01:30:49.818Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:30:49.820Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d2c710","args":["0x55","0x753d894","0x5e8ead0","0x76ffedd8","0x8d2c71c","0x55","0x753d894","0x206","0x3","0x7230cb4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":85,"ptr":"0x753d894","hex":"55 00 00 00 01 00 27 00 00 00 00 00 00 00 27 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 fd 8d c6 6d 98 4e bf 4a a9 f4 df f5 12 60 b6 ba 03 00 00 00 c0 00 00 41 76 50 1c d5"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7230cb4","hex":"18 99 68"}],"time":"2026-04-26T01:30:49.822Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:30:49.824Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d2c710","0x1","0x1","0x2","0x2","0x0","0x25","0x8dfd1e0","0x6fe84c","0xb7265f9f"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8dfd1e0","hex":"21 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:30:54.764Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d2c710","args":["0x1","0x1","0x2","0x53","0x96cb020","0x691b8337","0x6fe89c","0x6fe88c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x96cb020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 90 17 00 58 6c 7c 73 44 80 cb 53 cc 99 b5 43 a8 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 03 00 00 00"}],"time":"2026-04-26T01:30:54.765Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:30:54.766Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:30:54.766Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/116-frida-write-secured2-auth-verified-protectedvalue1/harness.log b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/harness.log new file mode 100644 index 0000000..5a4fc71 --- /dev/null +++ b/captures/116-frida-write-secured2-auth-verified-protectedvalue1/harness.log @@ -0,0 +1,18 @@ +2026-04-26T01:30:41.7088316+00:00 harness.start {"Scenario":"write-secured2","ClientName":"MxFridaTrace-116-frida-write-secured2-auth-verified-protectedvalue1","Tags":["TestMachine_001.ProtectedValue1"],"ItemContext":"","WriteType":"bool","WriteValue":"true","WriteValues":[],"UserId":1,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"dohertj2","AuthenticateBeforeWrite":true,"UseAuthenticatedUserAsVerifier":true,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T01:30:48.2921772+00:00 mx.register.begin {"ClientName":"MxFridaTrace-116-frida-write-secured2-auth-verified-protectedvalue1"} +2026-04-26T01:30:48.6521811+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T01:30:48.6521811+00:00 mx.additem.begin {"Tag":"TestMachine_001.ProtectedValue1"} +2026-04-26T01:30:48.6581777+00:00 mx.additem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:30:48.6591794+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:30:48.6621652+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:30:49.6951470+00:00 mx.authenticate-before-write.begin {"AuthUser":"dohertj2","PasswordSource":"env"} +2026-04-26T01:30:49.7131117+00:00 mx.authenticate-before-write.end {"AuthUser":"dohertj2","AuthenticatedUserId":1,"CurrentUserId":1,"VerifierUserId":1} +2026-04-26T01:30:49.7240799+00:00 mx.write.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Boolean","Value":"True"},"UserId":1,"CurrentUserId":1,"VerifierUserId":1,"WriteTimestamp":""} +2026-04-26T01:30:49.7280790+00:00 mx.write.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1,"WriteIndex":0} +2026-04-26T01:30:54.7499245+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:30:54.7509718+00:00 mx.unadvise.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:30:54.7509718+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:30:54.7509718+00:00 mx.removeitem.end {"Tag":"TestMachine_001.ProtectedValue1","ItemHandle":1} +2026-04-26T01:30:54.7509718+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T01:30:58.6013058+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T01:30:58.6073097+00:00 harness.stop {} diff --git a/captures/117-frida-write-secured2-auth-testint/frida-command.txt b/captures/117-frida-write-secured2-auth-testint/frida-command.txt new file mode 100644 index 0000000..a80fba8 --- /dev/null +++ b/captures/117-frida-write-secured2-auth-testint/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=write-secured2 --tag=TestChildObject.TestInt --type=int --value=777 --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\117-frida-write-secured2-auth-testint\harness.log --client=MxFridaTrace-117-frida-write-secured2-auth-testint diff --git a/captures/117-frida-write-secured2-auth-testint/frida-events.tsv b/captures/117-frida-write-secured2-auth-testint/frida-events.tsv new file mode 100644 index 0000000..6602488 --- /dev/null +++ b/captures/117-frida-write-secured2-auth-testint/frida-events.tsv @@ -0,0 +1,87 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T01:50:22.464Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T01:50:22.465Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T01:50:22.466Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T01:50:22.466Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T01:50:22.467Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T01:50:22.467Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T01:50:22.468Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T01:50:22.468Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T01:50:22.469Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T01:50:29.825Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:50:29.826Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T01:50:29.826Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T01:50:29.827Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:50:29.828Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:50:29.828Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T01:50:29.829Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T01:50:29.999Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:50:30.000Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe51c [] +2026-04-26T01:50:30.000Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:50:30.001Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fe51c [] +2026-04-26T01:50:30.027Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T01:50:30.027Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T01:50:30.028Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T01:50:30.028Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T01:50:30.111Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:50:30.111Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4feaa0 [] +2026-04-26T01:50:30.112Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T01:50:30.113Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fea30 [] +2026-04-26T01:50:30.113Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fea30 [] +2026-04-26T01:50:30.113Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x4fea30 [] +2026-04-26T01:50:30.114Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T01:50:30.115Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T01:50:30.116Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x4febec "[""0x5868fe0"",""0x1"",""0x1"",""0xb140e9c9"",""0x74794704""]" +2026-04-26T01:50:30.117Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:50:30.117Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fea6c [] +2026-04-26T01:50:30.117Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T01:50:30.118Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x4fd700 [] +2026-04-26T01:50:30.118Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T01:50:30.244Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b80620"",""0x4fe8b0"",""0x89000a7""]" 0 1 0x2 +2026-04-26T01:50:30.244Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8b80620"",""0x4fe8b0"",""0x89000a7""]" 1 314 0x8b80620 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b7 08 1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b8 08 20 01 00 02 00 00 00 +2026-04-26T01:50:30.247Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b7c710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x951f020"",""0xa59b3f21"",""0x8b801ec"",""0x8b801dc"",""0x641add04"",""0x0""]" 0 360 0x951f020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b7 08 1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b8 08 20 01 00 02 00 00 00 +2026-04-26T01:50:30.247Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:50:30.248Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:50:30.249Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c4d618"",""0x4fe8b0"",""0x89000a7""]" 0 2 0x2 +2026-04-26T01:50:30.249Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8c4d618"",""0x4fe8b0"",""0x89000a7""]" 1 39 0x8c4d618 1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-26T01:50:30.250Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b7c710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x951f020"",""0xa59b3f21"",""0x8c5955c"",""0x8c5954c"",""0x641add04"",""0x0""]" 0 85 0x951f020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-26T01:50:30.251Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:50:30.251Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:50:30.279Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x5c"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x5c"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 0 92 0x76f8b1c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 62 10 7a 27 06 72 3e 4e a5 84 62 8a b4 a9 90 66 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 +2026-04-26T01:50:30.279Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x5c"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x5c"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 1 518 0x3 +2026-04-26T01:50:30.279Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x5c"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x5c"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 2 3 0x71a3fc4 20 a4 84 +2026-04-26T01:50:30.281Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:50:30.283Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x6c"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x6c"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 0 108 0x76f690c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 2e 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 62 10 7a 27 06 72 3e 4e a5 84 62 8a b4 a9 90 66 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 03 00 00 00 03 00 00 00 c0 00 60 1f fe ba 18 d5 dc 01 02 +2026-04-26T01:50:30.283Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x6c"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x6c"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 1 518 0x3 +2026-04-26T01:50:30.283Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x6c"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x6c"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 2 3 0x71a3fc4 20 a4 84 +2026-04-26T01:50:30.284Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:50:30.301Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x2c2"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x2c2"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 0 706 0x76f8b1c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 8d 4b 94 07 6f a6 dd 42 9d cc e7 ea 86 4c 56 38 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T01:50:30.301Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x2c2"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x2c2"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 1 518 0x3 +2026-04-26T01:50:30.301Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x2c2"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x2c2"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 2 3 0x71a3fc4 20 a4 84 +2026-04-26T01:50:30.303Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:50:30.306Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x97"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x97"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 0 151 0x76f690c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 a1 30 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 8d 4b 94 07 6f a6 dd 42 9d cc e7 ea 86 4c 56 38 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T01:50:30.306Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x97"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x97"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 1 518 0x3 +2026-04-26T01:50:30.306Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x97"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x97"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 2 3 0x71a3fc4 20 a4 84 +2026-04-26T01:50:30.308Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:50:31.172Z call.enter LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x4febb0 [] +2026-04-26T01:50:31.188Z call.leave LmxProxy.dll CLMXProxyServer.AuthenticateUser 0x0 [] +2026-04-26T01:50:31.204Z call.enter LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x4febb8 "[""0x5868fe0"",""0x1"",""0x1"",""0x1"",""0x0"",""0x3"",""0x0"",""0x309"",""0x0"",""0x7"",""0x0"",""0x1f672197"",""0x40e6873d"",""0xb140e9c9""]" +2026-04-26T01:50:31.205Z call.leave LmxProxy.dll CLMXProxyServer.WriteSecured.variantB 0x0 [] +2026-04-26T01:50:31.258Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xb4"",""0x8c5a910"",""0x4fe8b0"",""0x89000a7""]" 0 2 0x3 +2026-04-26T01:50:31.258Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x2"",""0x3"",""0x0"",""0xb4"",""0x8c5a910"",""0x4fe8b0"",""0x89000a7""]" 1 180 0x8c5a910 777@18 38 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 09 03 00 00 00 00 80 8d 64 10 1f d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 66 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 37 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 74 00 65 00 73 00 74 00 69 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 2a a4 e1 0c 01 00 00 00 +2026-04-26T01:50:31.260Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b7c710 "[""0x1"",""0x1"",""0x2"",""0xe2"",""0x951f020"",""0xa59b3f21"",""0x8b777cc"",""0x8b777bc"",""0x641add04"",""0x0""]" 0 226 0x951f020 777@64 01 00 b4 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 09 03 00 00 00 00 80 8d 64 10 1f d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 66 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 37 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 74 00 65 00 73 00 74 00 69 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 2a a4 e1 0c 01 00 00 00 +2026-04-26T01:50:31.260Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:50:31.261Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T01:50:31.274Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x33"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x33"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 0 51 0x76f8b1c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00 +2026-04-26T01:50:31.274Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x33"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x33"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 1 518 0x3 +2026-04-26T01:50:31.274Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x33"",""0x76f8b1c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x33"",""0x76f8b1c"",""0x206"",""0x3"",""0x71a3fc4""]" 2 3 0x71a3fc4 20 a4 84 +2026-04-26T01:50:31.276Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:50:31.278Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x58"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x58"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 0 88 0x76f690c 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 2f 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 62 10 7a 27 06 72 3e 4e a5 84 62 8a b4 a9 90 66 03 00 00 00 c0 00 80 8d 64 10 1f d5 dc 01 02 +2026-04-26T01:50:31.278Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x58"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x58"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 1 518 0x3 +2026-04-26T01:50:31.278Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8b7c710 "[""0x58"",""0x76f690c"",""0x6f6ef20"",""0x76ffedd8"",""0x8b7c71c"",""0x58"",""0x76f690c"",""0x206"",""0x3"",""0x71a3fc4""]" 2 3 0x71a3fc4 20 a4 84 +2026-04-26T01:50:31.280Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T01:50:36.243Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c4d5d0"",""0x4fe90c"",""0x89000b3""]" 0 2 0x2 +2026-04-26T01:50:36.243Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8b7c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x8c4d5d0"",""0x4fe90c"",""0x89000b3""]" 1 37 0x8c4d5d0 21 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-26T01:50:36.244Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8b7c710 "[""0x1"",""0x1"",""0x2"",""0x53"",""0x951f020"",""0xa59b3f35"",""0x4fe95c"",""0x4fe94c"",""0x641add04"",""0x0""]" 0 83 0x951f020 01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00 +2026-04-26T01:50:36.245Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T01:50:36.246Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/117-frida-write-secured2-auth-testint/frida-exit.txt b/captures/117-frida-write-secured2-auth-testint/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/117-frida-write-secured2-auth-testint/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/117-frida-write-secured2-auth-testint/frida.stderr.txt b/captures/117-frida-write-secured2-auth-testint/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/117-frida-write-secured2-auth-testint/frida.stdout.jsonl b/captures/117-frida-write-secured2-auth-testint/frida.stdout.jsonl new file mode 100644 index 0000000..6e4d310 --- /dev/null +++ b/captures/117-frida-write-secured2-auth-testint/frida.stdout.jsonl @@ -0,0 +1,86 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestChildObject.TestInt --type=int --value=777 --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\117-frida-write-secured2-auth-testint\harness.log --client=MxFridaTrace-117-frida-write-secured2-auth-testint`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=write-secured2 --tag=TestChildObject.TestInt --type=int --value=777 --user-id=1 --current-user-id=0 --verifier-user-id=0 --authenticate-before-write --auth-user=dohertj2 --write-delay-ms=1000 --duration=5 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\117-frida-write-secured2-auth-testint\harness.log --client=MxFridaTrace-117-frida-write-secured2-auth-testint`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T01:50:22.464Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T01:50:22.465Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T01:50:22.466Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T01:50:22.466Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T01:50:22.467Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T01:50:22.467Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T01:50:22.468Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T01:50:22.468Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T01:50:22.469Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T01:50:29.825Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T01:50:29.826Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T01:50:29.826Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T01:50:29.827Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T01:50:29.828Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T01:50:29.828Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T01:50:29.829Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b76fe8","outPtr":"0x4fe51c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:50:29.999Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe51c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe51c","time":"2026-04-26T01:50:30.000Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b76fe8","outPtr":"0x4fe51c","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T01:50:30.000Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fe51c","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x4fe51c","time":"2026-04-26T01:50:30.001Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T01:50:30.027Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T01:50:30.027Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T01:50:30.028Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T01:50:30.028Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8b80234","outPtr":"0x4feb38","referencePtr":"0x4feb6c","reference":"TestChildObject.TestInt","time":"2026-04-26T01:50:30.111Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8c20eb0","outPtr":"0x4feaa0","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4feaa0","time":"2026-04-26T01:50:30.111Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b80560","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c4cfa0","flags10":1124099840,"word14":2,"word4c":131073,"word54":168795428,"word58":0,"word5c":0,"word60":0,"word64":146239464,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 40 7e b7 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 a0 cf c4 08 24 9d 0f 0a 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f b7 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 54 3f 79 00 00 00 00 00"},"time":"2026-04-26T01:50:30.112Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b805b0","outPtr":"0x4fea30","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fea30","time":"2026-04-26T01:50:30.113Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b805b0","outPtr":"0x4fea30","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fea30","time":"2026-04-26T01:50:30.113Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8b805b0","outPtr":"0x4fea30","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fea30","time":"2026-04-26T01:50:30.113Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8b80560","referenceString":{"length":23,"capacity":23,"value":"TestChildObject.TestInt"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8c4cfa0","flags10":1124099840,"word14":2,"word4c":131073,"word54":168795428,"word58":0,"word5c":0,"word60":0,"word64":146239464,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 40 7e b7 08 00 65 00 00 00 02 00 00 00 00 00 02 17 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 a0 cf c4 08 24 9d 0f 0a 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f b7 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 54 3f 79 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T01:50:30.114Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T01:50:30.115Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x4febec","args":["0x5868fe0","0x1","0x1","0xb140e9c9","0x74794704"],"time":"2026-04-26T01:50:30.116Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b76fe8","outPtr":"0x4fea6c","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-26T01:50:30.117Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fea6c","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fea6c","time":"2026-04-26T01:50:30.117Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8b76fe8","outPtr":"0x4fd700","inWords":[65537,327682,186166,655515,55870,0],"time":"2026-04-26T01:50:30.117Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x4fd700","handle":{"raw":"01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00","w0":65537,"w1":327682,"w2":186166,"w3":655515,"w4":55870},"retval":"0x4fd700","time":"2026-04-26T01:50:30.118Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T01:50:30.118Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b7c710","0x1","0x1","0x1","0x2","0x0","0x13a","0x8b80620","0x4fe8b0","0x89000a7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8b80620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b7 08 1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b8 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:50:30.244Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b7c710","args":["0x1","0x1","0x1","0x168","0x951f020","0xa59b3f21","0x8b801ec","0x8b801dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x951f020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc b7 08 1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 b8 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T01:50:30.247Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:50:30.247Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:50:30.248Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b7c710","0x1","0x1","0x2","0x2","0x0","0x27","0x8c4d618","0x4fe8b0","0x89000a7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8c4d618","hex":"1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-26T01:50:30.249Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b7c710","args":["0x1","0x1","0x2","0x55","0x951f020","0xa59b3f21","0x8c5955c","0x8c5954c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x951f020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-26T01:50:30.250Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:50:30.251Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:50:30.251Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b7c710","args":["0x5c","0x76f8b1c","0x6f6ef20","0x76ffedd8","0x8b7c71c","0x5c","0x76f8b1c","0x206","0x3","0x71a3fc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x76f8b1c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 62 10 7a 27 06 72 3e 4e a5 84 62 8a b4 a9 90 66 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a3fc4","hex":"20 a4 84"}],"time":"2026-04-26T01:50:30.279Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:50:30.281Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b7c710","args":["0x6c","0x76f690c","0x6f6ef20","0x76ffedd8","0x8b7c71c","0x6c","0x76f690c","0x206","0x3","0x71a3fc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x76f690c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 2e 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 62 10 7a 27 06 72 3e 4e a5 84 62 8a b4 a9 90 66 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 03 00 00 00 03 00 00 00 c0 00 60 1f fe ba 18 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a3fc4","hex":"20 a4 84"}],"time":"2026-04-26T01:50:30.283Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:50:30.284Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b7c710","args":["0x2c2","0x76f8b1c","0x6f6ef20","0x76ffedd8","0x8b7c71c","0x2c2","0x76f8b1c","0x206","0x3","0x71a3fc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x76f8b1c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 8d 4b 94 07 6f a6 dd 42 9d cc e7 ea 86 4c 56 38 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a3fc4","hex":"20 a4 84"}],"time":"2026-04-26T01:50:30.301Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:50:30.303Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b7c710","args":["0x97","0x76f690c","0x6f6ef20","0x76ffedd8","0x8b7c71c","0x97","0x76f690c","0x206","0x3","0x71a3fc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x76f690c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 a1 30 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 8d 4b 94 07 6f a6 dd 42 9d cc e7 ea 86 4c 56 38 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a3fc4","hex":"20 a4 84"}],"time":"2026-04-26T01:50:30.306Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:50:30.308Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","address":"0x65a5399f","ecx":"0x4febb0","serverHandle":1,"user":"dohertj2","passwordLength":8,"userIdOut":"0x4feb94","time":"2026-04-26T01:50:31.172Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","retval":"0x0","userId":1,"time":"2026-04-26T01:50:31.188Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","address":"0x65a535fe","ecx":"0x4febb8","args":["0x5868fe0","0x1","0x1","0x1","0x0","0x3","0x0","0x309","0x0","0x7","0x0","0x1f672197","0x40e6873d","0xb140e9c9"],"time":"2026-04-26T01:50:31.204Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","retval":"0x0","time":"2026-04-26T01:50:31.205Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b7c710","0x1","0x1","0x2","0x3","0x0","0xb4","0x8c5a910","0x4fe8b0","0x89000a7"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x3","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":180,"ptr":"0x8c5a910","hex":"38 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 09 03 00 00 00 00 80 8d 64 10 1f d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 66 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 37 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 74 00 65 00 73 00 74 00 69 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 2a a4 e1 0c 01 00 00 00"}],"time":"2026-04-26T01:50:31.258Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b7c710","args":["0x1","0x1","0x2","0xe2","0x951f020","0xa59b3f21","0x8b777cc","0x8b777bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":226,"ptr":"0x951f020","hex":"01 00 b4 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 03 00 00 30 75 00 00 38 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 09 03 00 00 00 00 80 8d 64 10 1f d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 66 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 37 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 74 00 65 00 73 00 74 00 69 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 2a a4 e1 0c 01 00 00 00"}],"time":"2026-04-26T01:50:31.260Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:50:31.260Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:50:31.261Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b7c710","args":["0x33","0x76f8b1c","0x6f6ef20","0x76ffedd8","0x8b7c71c","0x33","0x76f8b1c","0x206","0x3","0x71a3fc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x76f8b1c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 03 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a3fc4","hex":"20 a4 84"}],"time":"2026-04-26T01:50:31.274Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:50:31.276Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8b7c710","args":["0x58","0x76f690c","0x6f6ef20","0x76ffedd8","0x8b7c71c","0x58","0x76f690c","0x206","0x3","0x71a3fc4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x76f690c","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 2f 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 62 10 7a 27 06 72 3e 4e a5 84 62 8a b4 a9 90 66 03 00 00 00 c0 00 80 8d 64 10 1f d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x71a3fc4","hex":"20 a4 84"}],"time":"2026-04-26T01:50:31.278Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T01:50:31.280Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8b7c710","0x1","0x1","0x2","0x2","0x0","0x25","0x8c4d5d0","0x4fe90c","0x89000b3"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x8c4d5d0","hex":"21 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-26T01:50:36.243Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8b7c710","args":["0x1","0x1","0x2","0x53","0x951f020","0xa59b3f35","0x4fe95c","0x4fe94c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0x951f020","hex":"01 00 25 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 77 b5 76 8d 05 e8 a0 4a b7 1a b4 67 8a 65 77 4c 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"}],"time":"2026-04-26T01:50:36.244Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T01:50:36.245Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T01:50:36.246Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/117-frida-write-secured2-auth-testint/harness.log b/captures/117-frida-write-secured2-auth-testint/harness.log new file mode 100644 index 0000000..176cc69 --- /dev/null +++ b/captures/117-frida-write-secured2-auth-testint/harness.log @@ -0,0 +1,18 @@ +2026-04-26T01:50:22.3848822+00:00 harness.start {"Scenario":"write-secured2","ClientName":"MxFridaTrace-117-frida-write-secured2-auth-testint","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"777","WriteValues":[],"UserId":1,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"dohertj2","AuthenticateBeforeWrite":true,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T01:50:29.7170361+00:00 mx.register.begin {"ClientName":"MxFridaTrace-117-frida-write-secured2-auth-testint"} +2026-04-26T01:50:30.1084115+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T01:50:30.1094688+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-26T01:50:30.1153913+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T01:50:30.1164067+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T01:50:30.1184038+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T01:50:31.1705918+00:00 mx.authenticate-before-write.begin {"AuthUser":"dohertj2","PasswordSource":"env"} +2026-04-26T01:50:31.1885269+00:00 mx.authenticate-before-write.end {"AuthUser":"dohertj2","AuthenticatedUserId":1,"CurrentUserId":1,"VerifierUserId":0} +2026-04-26T01:50:31.2005202+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"777"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-26T01:50:31.2055862+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-26T01:50:36.2253949+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T01:50:36.2253949+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T01:50:36.2253949+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T01:50:36.2253949+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-26T01:50:36.2253949+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T01:50:40.2824171+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T01:50:40.2884242+00:00 harness.stop {} diff --git a/captures/118-frida-suspend-advised-scanstate-long/frida-command.txt b/captures/118-frida-suspend-advised-scanstate-long/frida-command.txt new file mode 100644 index 0000000..677d097 --- /dev/null +++ b/captures/118-frida-suspend-advised-scanstate-long/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=suspend-advised --tag=DevAppEngine.ScanState --duration=20 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\118-frida-suspend-advised-scanstate-long\harness.log --client=MxFridaTrace-118-frida-suspend-advised-scanstate-long diff --git a/captures/118-frida-suspend-advised-scanstate-long/frida-events.tsv b/captures/118-frida-suspend-advised-scanstate-long/frida-events.tsv new file mode 100644 index 0000000..ec8a42f --- /dev/null +++ b/captures/118-frida-suspend-advised-scanstate-long/frida-events.tsv @@ -0,0 +1,67 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T02:26:14.709Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T02:26:14.709Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T02:26:14.711Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T02:26:14.711Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T02:26:14.711Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T02:26:14.712Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T02:26:14.712Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T02:26:14.712Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T02:26:14.712Z hook.installed LmxProxy.dll CUserConnectionCallback.OnSetAttributeResult [] +2026-04-26T02:26:14.713Z hook.installed LmxProxy.dll CUserConnectionCallback.OperationComplete [] +2026-04-26T02:26:14.713Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T02:26:21.560Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:26:21.561Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T02:26:21.561Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T02:26:21.562Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:21.562Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:26:21.563Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T02:26:21.564Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T02:26:21.661Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T02:26:21.662Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T02:26:21.663Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T02:26:21.663Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T02:26:21.685Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:21.685Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafe564 [] +2026-04-26T02:26:21.685Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:21.686Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafe564 [] +2026-04-26T02:26:21.788Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:26:21.788Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafeaf4 [] +2026-04-26T02:26:21.789Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:26:21.790Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafea84 [] +2026-04-26T02:26:21.790Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafea84 [] +2026-04-26T02:26:21.791Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xafea84 [] +2026-04-26T02:26:21.792Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:26:21.792Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:26:21.794Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xafec3c "[""0x5ee8ff0"",""0x1"",""0x1"",""0xead788e8"",""0x74794704""]" +2026-04-26T02:26:21.794Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:21.795Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafeabc [] +2026-04-26T02:26:21.795Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:21.795Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xafd750 [] +2026-04-26T02:26:21.795Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:26:21.936Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x91d0648"",""0xafe900"",""0xe7cc8093""]" 0 1 0x2 +2026-04-26T02:26:21.936Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x91d0648"",""0xafe900"",""0xe7cc8093""]" 1 314 0x91d0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 1d 09 20 01 00 02 00 00 00 +2026-04-26T02:26:21.938Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa368020"",""0x1a389702"",""0x91d0214"",""0x91d0204"",""0x641add04"",""0x0""]" 0 360 0xa368020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 1d 09 20 01 00 02 00 00 00 +2026-04-26T02:26:21.939Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:26:21.939Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:26:21.942Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x929e960"",""0xafe900"",""0xe7cc8093""]" 0 2 0x2 +2026-04-26T02:26:21.942Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x91cc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x929e960"",""0xafe900"",""0xe7cc8093""]" 1 39 0x929e960 1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-26T02:26:21.943Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x91cc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa368020"",""0x1a389702"",""0x92a9584"",""0x92a9574"",""0x641add04"",""0x0""]" 0 85 0xa368020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-26T02:26:21.944Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:26:21.945Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:26:21.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x2c2"",""0x7c8112c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x2c2"",""0x7c8112c"",""0x206"",""0x3"",""0x7772fa4""]" 0 706 0x7c8112c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0e 3e 4b ad c7 2d 0b 49 95 ac 29 d4 2a 4c 98 fe 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T02:26:21.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x2c2"",""0x7c8112c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x2c2"",""0x7c8112c"",""0x206"",""0x3"",""0x7772fa4""]" 1 518 0x3 +2026-04-26T02:26:21.985Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x2c2"",""0x7c8112c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x2c2"",""0x7c8112c"",""0x206"",""0x3"",""0x7772fa4""]" 2 3 0x7772fa4 50 a8 e0 +2026-04-26T02:26:21.987Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:26:21.989Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x7c777e4"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x7c777e4"",""0x206"",""0x3"",""0x7772fa4""]" 0 92 0x7c777e4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c1 2f 27 17 14 48 05 45 8d e8 10 60 f1 02 f5 f3 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f +2026-04-26T02:26:21.989Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x7c777e4"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x7c777e4"",""0x206"",""0x3"",""0x7772fa4""]" 1 518 0x3 +2026-04-26T02:26:21.989Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x5c"",""0x7c777e4"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x5c"",""0x7c777e4"",""0x206"",""0x3"",""0x7772fa4""]" 2 3 0x7772fa4 50 a8 e0 +2026-04-26T02:26:21.991Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:26:21.993Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x97"",""0x7c8333c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x97"",""0x7c8333c"",""0x206"",""0x3"",""0x7772fa4""]" 0 151 0x7c8333c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 3f 52 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0e 3e 4b ad c7 2d 0b 49 95 ac 29 d4 2a 4c 98 fe 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T02:26:21.993Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x97"",""0x7c8333c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x97"",""0x7c8333c"",""0x206"",""0x3"",""0x7772fa4""]" 1 518 0x3 +2026-04-26T02:26:21.993Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x97"",""0x7c8333c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x97"",""0x7c8333c"",""0x206"",""0x3"",""0x7772fa4""]" 2 3 0x7772fa4 50 a8 e0 +2026-04-26T02:26:21.994Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:26:21.996Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x69"",""0xa743b7c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x69"",""0xa743b7c"",""0x206"",""0x3"",""0x7772fa4""]" 0 105 0xa743b7c 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 38 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c1 2f 27 17 14 48 05 45 8d e8 10 60 f1 02 f5 f3 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 03 00 00 00 00 00 00 00 c0 00 10 20 2f 49 28 d3 +2026-04-26T02:26:21.996Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x69"",""0xa743b7c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x69"",""0xa743b7c"",""0x206"",""0x3"",""0x7772fa4""]" 1 518 0x3 +2026-04-26T02:26:21.996Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x91cc738 "[""0x69"",""0xa743b7c"",""0x742ef70"",""0x76ffedd8"",""0x91cc744"",""0x69"",""0xa743b7c"",""0x206"",""0x3"",""0x7772fa4""]" 2 3 0x7772fa4 50 a8 e0 +2026-04-26T02:26:21.997Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/118-frida-suspend-advised-scanstate-long/frida-exit.txt b/captures/118-frida-suspend-advised-scanstate-long/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/118-frida-suspend-advised-scanstate-long/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/118-frida-suspend-advised-scanstate-long/frida.stderr.txt b/captures/118-frida-suspend-advised-scanstate-long/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/118-frida-suspend-advised-scanstate-long/frida.stdout.jsonl b/captures/118-frida-suspend-advised-scanstate-long/frida.stdout.jsonl new file mode 100644 index 0000000..dd25f25 --- /dev/null +++ b/captures/118-frida-suspend-advised-scanstate-long/frida.stdout.jsonl @@ -0,0 +1,72 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=suspend-advised --tag=DevAppEngine.ScanState --duration=20 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\118-frida-suspend-advised-scanstate-long\harness.log --client=MxFridaTrace-118-frida-suspend-advised-scanstate-long`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=suspend-advised --tag=DevAppEngine.ScanState --duration=20 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\118-frida-suspend-advised-scanstate-long\harness.log --client=MxFridaTrace-118-frida-suspend-advised-scanstate-long`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T02:26:14.709Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T02:26:14.709Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T02:26:14.711Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T02:26:14.711Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T02:26:14.711Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T02:26:14.712Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T02:26:14.712Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T02:26:14.712Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OnSetAttributeResult","base":"0x65a40000","rva":"0x16b50","address":"0x65a56b50","time":"2026-04-26T02:26:14.712Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OperationComplete","base":"0x65a40000","rva":"0x16d4b","address":"0x65a56d4b","time":"2026-04-26T02:26:14.713Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T02:26:14.713Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T02:26:21.560Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T02:26:21.561Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T02:26:21.561Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T02:26:21.562Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T02:26:21.562Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T02:26:21.563Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T02:26:21.564Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T02:26:21.661Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T02:26:21.662Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T02:26:21.663Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T02:26:21.663Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x91c7010","outPtr":"0xafe564","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:26:21.685Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafe564","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafe564","time":"2026-04-26T02:26:21.685Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x91c7010","outPtr":"0xafe564","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:26:21.685Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafe564","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xafe564","time":"2026-04-26T02:26:21.686Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x91d025c","outPtr":"0xafeb8c","referencePtr":"0xafebc0","reference":"DevAppEngine.ScanState","time":"2026-04-26T02:26:21.788Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x9261180","outPtr":"0xafeaf4","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0xafeaf4","time":"2026-04-26T02:26:21.788Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d0588","referenceString":{"length":22,"capacity":23,"value":"DevAppEngine.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x929e918","flags10":1124099840,"word14":2,"word4c":131073,"word54":132101780,"word58":0,"word5c":0,"word60":0,"word64":152858640,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 98 79 1c 09 00 65 00 00 00 02 00 00 00 00 00 02 16 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 e9 29 09 94 b6 df 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 1c 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 54 84 f4 00 00 00 00 00"},"time":"2026-04-26T02:26:21.789Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d05d8","outPtr":"0xafea84","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0xafea84","time":"2026-04-26T02:26:21.790Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d05d8","outPtr":"0xafea84","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0xafea84","time":"2026-04-26T02:26:21.790Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d05d8","outPtr":"0xafea84","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0xafea84","time":"2026-04-26T02:26:21.791Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d0588","referenceString":{"length":22,"capacity":23,"value":"DevAppEngine.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x929e918","flags10":1124099840,"word14":2,"word4c":131073,"word54":132101780,"word58":0,"word5c":0,"word60":0,"word64":152858640,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 98 79 1c 09 00 65 00 00 00 02 00 00 00 00 00 02 16 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 18 e9 29 09 94 b6 df 07 00 00 00 00 00 00 00 00 00 00 00 00 10 70 1c 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 54 84 f4 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:26:21.792Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:26:21.792Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xafec3c","args":["0x5ee8ff0","0x1","0x1","0xead788e8","0x74794704"],"time":"2026-04-26T02:26:21.794Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x91c7010","outPtr":"0xafeabc","inWords":[65537,65538,138085,655465,37447,0],"time":"2026-04-26T02:26:21.794Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafeabc","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0xafeabc","time":"2026-04-26T02:26:21.795Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x91c7010","outPtr":"0xafd750","inWords":[65537,65538,138085,655465,37447,0],"time":"2026-04-26T02:26:21.795Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xafd750","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0xafd750","time":"2026-04-26T02:26:21.795Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:26:21.795Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x91d0648","0xafe900","0xe7cc8093"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x91d0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 1d 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:26:21.936Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x1","0x168","0xa368020","0x1a389702","0x91d0214","0x91d0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa368020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 1c 09 1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 1d 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:26:21.938Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:26:21.939Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:26:21.939Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x91cc738","0x1","0x1","0x2","0x2","0x0","0x27","0x929e960","0xafe900","0xe7cc8093"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x929e960","hex":"1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-26T02:26:21.942Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x91cc738","args":["0x1","0x1","0x2","0x55","0xa368020","0x1a389702","0x92a9584","0x92a9574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa368020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-26T02:26:21.943Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:26:21.944Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:26:21.945Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x2c2","0x7c8112c","0x742ef70","0x76ffedd8","0x91cc744","0x2c2","0x7c8112c","0x206","0x3","0x7772fa4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7c8112c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 0e 3e 4b ad c7 2d 0b 49 95 ac 29 d4 2a 4c 98 fe 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7772fa4","hex":"50 a8 e0"}],"time":"2026-04-26T02:26:21.985Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:21.987Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x5c","0x7c777e4","0x742ef70","0x76ffedd8","0x91cc744","0x5c","0x7c777e4","0x206","0x3","0x7772fa4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7c777e4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c1 2f 27 17 14 48 05 45 8d e8 10 60 f1 02 f5 f3 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7772fa4","hex":"50 a8 e0"}],"time":"2026-04-26T02:26:21.989Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:21.991Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x97","0x7c8333c","0x742ef70","0x76ffedd8","0x91cc744","0x97","0x7c8333c","0x206","0x3","0x7772fa4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7c8333c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 3f 52 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 0e 3e 4b ad c7 2d 0b 49 95 ac 29 d4 2a 4c 98 fe 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7772fa4","hex":"50 a8 e0"}],"time":"2026-04-26T02:26:21.993Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:21.994Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x91cc738","args":["0x69","0xa743b7c","0x742ef70","0x76ffedd8","0x91cc744","0x69","0xa743b7c","0x206","0x3","0x7772fa4"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0xa743b7c","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 38 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c1 2f 27 17 14 48 05 45 8d e8 10 60 f1 02 f5 f3 55 d5 17 bc cb 2d 6d 4b a8 fa c1 1f 45 66 d5 ba 03 00 00 00 00 00 00 00 c0 00 10 20 2f 49 28 d3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7772fa4","hex":"50 a8 e0"}],"time":"2026-04-26T02:26:21.996Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:21.997Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/118-frida-suspend-advised-scanstate-long/harness.log b/captures/118-frida-suspend-advised-scanstate-long/harness.log new file mode 100644 index 0000000..03d12ff --- /dev/null +++ b/captures/118-frida-suspend-advised-scanstate-long/harness.log @@ -0,0 +1,16 @@ +2026-04-26T02:26:14.6204432+00:00 harness.start {"Scenario":"suspend-advised","ClientName":"MxFridaTrace-118-frida-suspend-advised-scanstate-long","Tags":["DevAppEngine.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","AuthenticateBeforeWrite":false,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":20,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T02:26:21.3851459+00:00 mx.register.begin {"ClientName":"MxFridaTrace-118-frida-suspend-advised-scanstate-long"} +2026-04-26T02:26:21.7850804+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T02:26:21.7860881+00:00 mx.additem.begin {"Tag":"DevAppEngine.ScanState"} +2026-04-26T02:26:21.7920738+00:00 mx.additem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:21.7930828+00:00 mx.advise-supervisory.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:21.7960796+00:00 mx.advise-supervisory.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:22.5979133+00:00 mx.suspend.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:22.6028532+00:00 mx.suspend.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryPending","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-26T02:26:42.6528377+00:00 mx.unadvise.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:42.6528377+00:00 mx.unadvise.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:42.6528377+00:00 mx.removeitem.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:42.6528377+00:00 mx.removeitem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:42.6528377+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T02:26:46.5158303+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T02:26:46.5208276+00:00 harness.stop {} diff --git a/captures/119-frida-activate-advised-scanstate-long/frida-command.txt b/captures/119-frida-activate-advised-scanstate-long/frida-command.txt new file mode 100644 index 0000000..5b44314 --- /dev/null +++ b/captures/119-frida-activate-advised-scanstate-long/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=activate-advised --tag=DevAppEngine.ScanState --duration=20 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\119-frida-activate-advised-scanstate-long\harness.log --client=MxFridaTrace-119-frida-activate-advised-scanstate-long diff --git a/captures/119-frida-activate-advised-scanstate-long/frida-events.tsv b/captures/119-frida-activate-advised-scanstate-long/frida-events.tsv new file mode 100644 index 0000000..888cfb6 --- /dev/null +++ b/captures/119-frida-activate-advised-scanstate-long/frida-events.tsv @@ -0,0 +1,72 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T02:26:14.758Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T02:26:14.759Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T02:26:14.760Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T02:26:14.760Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T02:26:14.761Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T02:26:14.761Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T02:26:14.762Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T02:26:14.762Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T02:26:14.762Z hook.installed LmxProxy.dll CUserConnectionCallback.OnSetAttributeResult [] +2026-04-26T02:26:14.763Z hook.installed LmxProxy.dll CUserConnectionCallback.OperationComplete [] +2026-04-26T02:26:14.763Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T02:26:27.956Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:26:27.957Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T02:26:27.958Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T02:26:27.959Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:27.959Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:26:27.960Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T02:26:27.960Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T02:26:28.053Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:28.054Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fe7e4 [] +2026-04-26T02:26:28.054Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:28.055Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fe7e4 [] +2026-04-26T02:26:28.057Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T02:26:28.058Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T02:26:28.058Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T02:26:28.059Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T02:26:28.157Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:26:28.158Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8fed74 [] +2026-04-26T02:26:28.159Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:26:28.159Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8fed04 [] +2026-04-26T02:26:28.159Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8fed04 [] +2026-04-26T02:26:28.160Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x8fed04 [] +2026-04-26T02:26:28.161Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:26:28.161Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:26:28.163Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x8feebc "[""0x5c78ff0"",""0x1"",""0x1"",""0x21cebb9e"",""0x74794704""]" +2026-04-26T02:26:28.163Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:28.163Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fed3c [] +2026-04-26T02:26:28.164Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:26:28.164Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x8fd9d0 [] +2026-04-26T02:26:28.164Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:26:28.290Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8fbc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8fc0648"",""0x8feb80"",""0x63436fae""]" 0 1 0x2 +2026-04-26T02:26:28.290Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8fbc738"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8fc0648"",""0x8feb80"",""0x63436fae""]" 1 314 0x8fc0648 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc fb 08 1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fc 08 20 01 00 02 00 00 00 +2026-04-26T02:26:28.292Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8fbc738 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa2a1020"",""0xd0a03913"",""0x8fc0214"",""0x8fc0204"",""0x641add04"",""0x0""]" 0 360 0xa2a1020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc fb 08 1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fc 08 20 01 00 02 00 00 00 +2026-04-26T02:26:28.293Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:26:28.293Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:26:28.295Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8fbc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x908e2a0"",""0x8feb80"",""0x63436fae""]" 0 2 0x2 +2026-04-26T02:26:28.295Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8fbc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x908e2a0"",""0x8feb80"",""0x63436fae""]" 1 39 0x908e2a0 1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-26T02:26:28.296Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8fbc738 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa2a1020"",""0xd0a03913"",""0x9099584"",""0x9099574"",""0x641add04"",""0x0""]" 0 85 0xa2a1020 01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-26T02:26:28.296Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:26:28.297Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:26:28.337Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x5c"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x5c"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 0 92 0x77f54f4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c6 50 8b 10 51 fc b6 4f aa a2 62 ae 6b da 54 de 84 12 84 95 d2 ee 25 42 9c d4 58 95 +2026-04-26T02:26:28.337Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x5c"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x5c"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 1 518 0x3 +2026-04-26T02:26:28.337Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x5c"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x5c"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 2 3 0x75ee814 58 8c 54 +2026-04-26T02:26:28.339Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:26:28.342Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x69"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x69"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 0 105 0x77f54f4 69 00 00 00 01 00 3b 00 00 00 00 00 00 00 39 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c6 50 8b 10 51 fc b6 4f aa a2 62 ae 6b da 54 de 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 03 00 00 00 00 00 00 00 c0 00 10 20 2f 49 28 d3 +2026-04-26T02:26:28.342Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x69"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x69"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 1 518 0x3 +2026-04-26T02:26:28.342Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x69"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x69"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 2 3 0x75ee814 58 8c 54 +2026-04-26T02:26:28.344Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:26:28.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x2c2"",""0x77f65fc"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x2c2"",""0x77f65fc"",""0x206"",""0x3"",""0x75ee814""]" 0 706 0x77f65fc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 54 bf 0a 6e 3a c3 90 41 b5 d8 3f b5 87 e4 e5 f6 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T02:26:28.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x2c2"",""0x77f65fc"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x2c2"",""0x77f65fc"",""0x206"",""0x3"",""0x75ee814""]" 1 518 0x3 +2026-04-26T02:26:28.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x2c2"",""0x77f65fc"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x2c2"",""0x77f65fc"",""0x206"",""0x3"",""0x75ee814""]" 2 3 0x75ee814 58 8c 54 +2026-04-26T02:26:28.349Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:26:28.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x97"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x97"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 0 151 0x77f54f4 97 00 00 00 01 00 69 00 00 00 00 00 00 00 5a 52 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 54 bf 0a 6e 3a c3 90 41 b5 d8 3f b5 87 e4 e5 f6 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T02:26:28.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x97"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x97"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 1 518 0x3 +2026-04-26T02:26:28.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8fbc738 "[""0x97"",""0x77f54f4"",""0x717eca0"",""0x76ffedd8"",""0x8fbc744"",""0x97"",""0x77f54f4"",""0x206"",""0x3"",""0x75ee814""]" 2 3 0x75ee814 58 8c 54 +2026-04-26T02:26:28.353Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:26:48.987Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8fbc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x908e5b8"",""0x8febdc"",""0x63436f9a""]" 0 2 0x2 +2026-04-26T02:26:48.987Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8fbc738"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x25"",""0x908e5b8"",""0x8febdc"",""0x63436f9a""]" 1 37 0x908e5b8 21 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-26T02:26:48.987Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8fbc738 "[""0x1"",""0x1"",""0x2"",""0x53"",""0xa2a1020"",""0xd0a03927"",""0x8fec2c"",""0x8fec1c"",""0x641add04"",""0x0""]" 0 83 0xa2a1020 01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00 +2026-04-26T02:26:48.988Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:26:48.989Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] diff --git a/captures/119-frida-activate-advised-scanstate-long/frida-exit.txt b/captures/119-frida-activate-advised-scanstate-long/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/119-frida-activate-advised-scanstate-long/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/119-frida-activate-advised-scanstate-long/frida.stderr.txt b/captures/119-frida-activate-advised-scanstate-long/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/119-frida-activate-advised-scanstate-long/frida.stdout.jsonl b/captures/119-frida-activate-advised-scanstate-long/frida.stdout.jsonl new file mode 100644 index 0000000..d5a59fc --- /dev/null +++ b/captures/119-frida-activate-advised-scanstate-long/frida.stdout.jsonl @@ -0,0 +1,76 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=activate-advised --tag=DevAppEngine.ScanState --duration=20 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\119-frida-activate-advised-scanstate-long\harness.log --client=MxFridaTrace-119-frida-activate-advised-scanstate-long`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=activate-advised --tag=DevAppEngine.ScanState --duration=20 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\119-frida-activate-advised-scanstate-long\harness.log --client=MxFridaTrace-119-frida-activate-advised-scanstate-long`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T02:26:14.758Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T02:26:14.759Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T02:26:14.760Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T02:26:14.760Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T02:26:14.761Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T02:26:14.761Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T02:26:14.762Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T02:26:14.762Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OnSetAttributeResult","base":"0x65a40000","rva":"0x16b50","address":"0x65a56b50","time":"2026-04-26T02:26:14.762Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OperationComplete","base":"0x65a40000","rva":"0x16d4b","address":"0x65a56d4b","time":"2026-04-26T02:26:14.763Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T02:26:14.763Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T02:26:27.956Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T02:26:27.957Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T02:26:27.958Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T02:26:27.959Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T02:26:27.959Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T02:26:27.960Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T02:26:27.960Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8fb7010","outPtr":"0x8fe7e4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:26:28.053Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fe7e4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x8fe7e4","time":"2026-04-26T02:26:28.054Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8fb7010","outPtr":"0x8fe7e4","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:26:28.054Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fe7e4","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x8fe7e4","time":"2026-04-26T02:26:28.055Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T02:26:28.057Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T02:26:28.058Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T02:26:28.058Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T02:26:28.059Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8fc025c","outPtr":"0x8fee0c","referencePtr":"0x8fee40","reference":"DevAppEngine.ScanState","time":"2026-04-26T02:26:28.157Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x90505f0","outPtr":"0x8fed74","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0x8fed74","time":"2026-04-26T02:26:28.158Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8fc0588","referenceString":{"length":22,"capacity":23,"value":"DevAppEngine.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x908e258","flags10":1124099840,"word14":2,"word4c":131073,"word54":173283556,"word58":0,"word5c":0,"word60":0,"word64":150695952,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 7c fb 08 00 65 00 00 00 02 00 00 00 00 00 02 16 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 58 e2 08 09 e4 18 54 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 fb 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ac 30 b7 00 00 00 00 00"},"time":"2026-04-26T02:26:28.159Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8fc05d8","outPtr":"0x8fed04","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0x8fed04","time":"2026-04-26T02:26:28.159Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8fc05d8","outPtr":"0x8fed04","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0x8fed04","time":"2026-04-26T02:26:28.159Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8fc05d8","outPtr":"0x8fed04","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0x8fed04","time":"2026-04-26T02:26:28.160Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8fc0588","referenceString":{"length":22,"capacity":23,"value":"DevAppEngine.ScanState"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x908e258","flags10":1124099840,"word14":2,"word4c":131073,"word54":173283556,"word58":0,"word5c":0,"word60":0,"word64":150695952,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 70 7c fb 08 00 65 00 00 00 02 00 00 00 00 00 02 16 00 00 00 17 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 58 e2 08 09 e4 18 54 0a 00 00 00 00 00 00 00 00 00 00 00 00 10 70 fb 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ac 30 b7 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:26:28.161Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:26:28.161Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x8feebc","args":["0x5c78ff0","0x1","0x1","0x21cebb9e","0x74794704"],"time":"2026-04-26T02:26:28.163Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8fb7010","outPtr":"0x8fed3c","inWords":[65537,65538,138085,655465,37447,0],"time":"2026-04-26T02:26:28.163Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fed3c","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0x8fed3c","time":"2026-04-26T02:26:28.163Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8fb7010","outPtr":"0x8fd9d0","inWords":[65537,65538,138085,655465,37447,0],"time":"2026-04-26T02:26:28.164Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x8fd9d0","handle":{"raw":"01 00 01 00 02 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00","w0":65537,"w1":65538,"w2":138085,"w3":655465,"w4":37447},"retval":"0x8fd9d0","time":"2026-04-26T02:26:28.164Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:26:28.164Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fbc738","0x1","0x1","0x1","0x2","0x0","0x13a","0x8fc0648","0x8feb80","0x63436fae"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8fc0648","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc fb 08 1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fc 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:26:28.290Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fbc738","args":["0x1","0x1","0x1","0x168","0xa2a1020","0xd0a03913","0x8fc0214","0x8fc0204","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa2a1020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc fb 08 1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 fc 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:26:28.292Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:26:28.293Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:26:28.293Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fbc738","0x1","0x1","0x2","0x2","0x0","0x27","0x908e2a0","0x8feb80","0x63436fae"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x908e2a0","hex":"1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-26T02:26:28.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fbc738","args":["0x1","0x1","0x2","0x55","0xa2a1020","0xd0a03913","0x9099584","0x9099574","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa2a1020","hex":"01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 00 00 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-26T02:26:28.296Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:26:28.296Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:26:28.297Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fbc738","args":["0x5c","0x77f54f4","0x717eca0","0x76ffedd8","0x8fbc744","0x5c","0x77f54f4","0x206","0x3","0x75ee814"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x77f54f4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 c6 50 8b 10 51 fc b6 4f aa a2 62 ae 6b da 54 de 84 12 84 95 d2 ee 25 42 9c d4 58 95"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75ee814","hex":"58 8c 54"}],"time":"2026-04-26T02:26:28.337Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:28.339Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fbc738","args":["0x69","0x77f54f4","0x717eca0","0x76ffedd8","0x8fbc744","0x69","0x77f54f4","0x206","0x3","0x75ee814"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":105,"ptr":"0x77f54f4","hex":"69 00 00 00 01 00 3b 00 00 00 00 00 00 00 39 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 c6 50 8b 10 51 fc b6 4f aa a2 62 ae 6b da 54 de 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 03 00 00 00 00 00 00 00 c0 00 10 20 2f 49 28 d3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75ee814","hex":"58 8c 54"}],"time":"2026-04-26T02:26:28.342Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:28.344Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fbc738","args":["0x2c2","0x77f65fc","0x717eca0","0x76ffedd8","0x8fbc744","0x2c2","0x77f65fc","0x206","0x3","0x75ee814"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x77f65fc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 54 bf 0a 6e 3a c3 90 41 b5 d8 3f b5 87 e4 e5 f6 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75ee814","hex":"58 8c 54"}],"time":"2026-04-26T02:26:28.348Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:28.349Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8fbc738","args":["0x97","0x77f54f4","0x717eca0","0x76ffedd8","0x8fbc744","0x97","0x77f54f4","0x206","0x3","0x75ee814"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x77f54f4","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 5a 52 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 54 bf 0a 6e 3a c3 90 41 b5 d8 3f b5 87 e4 e5 f6 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x75ee814","hex":"58 8c 54"}],"time":"2026-04-26T02:26:28.352Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:26:28.353Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8fbc738","0x1","0x1","0x2","0x2","0x0","0x25","0x908e5b8","0x8febdc","0x63436f9a"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":37,"ptr":"0x908e5b8","hex":"21 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-26T02:26:48.987Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8fbc738","args":["0x1","0x1","0x2","0x53","0xa2a1020","0xd0a03927","0x8fec2c","0x8fec1c","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":83,"ptr":"0xa2a1020","hex":"01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 21 01 00 84 12 84 95 d2 ee 25 42 9c d4 58 95 89 4c fd ff 01 00 65 1b 02 00 69 00 0a 00 47 92 00 00 03 00 00 00"}],"time":"2026-04-26T02:26:48.987Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:26:48.988Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:26:48.989Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/119-frida-activate-advised-scanstate-long/harness.log b/captures/119-frida-activate-advised-scanstate-long/harness.log new file mode 100644 index 0000000..7908961 --- /dev/null +++ b/captures/119-frida-activate-advised-scanstate-long/harness.log @@ -0,0 +1,16 @@ +2026-04-26T02:26:14.6652410+00:00 harness.start {"Scenario":"activate-advised","ClientName":"MxFridaTrace-119-frida-activate-advised-scanstate-long","Tags":["DevAppEngine.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","AuthenticateBeforeWrite":false,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":20,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T02:26:27.7723870+00:00 mx.register.begin {"ClientName":"MxFridaTrace-119-frida-activate-advised-scanstate-long"} +2026-04-26T02:26:28.1547928+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T02:26:28.1568106+00:00 mx.additem.begin {"Tag":"DevAppEngine.ScanState"} +2026-04-26T02:26:28.1618084+00:00 mx.additem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:28.1628023+00:00 mx.advise-supervisory.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:28.1647874+00:00 mx.advise-supervisory.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:28.9495058+00:00 mx.activate.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:28.9524787+00:00 mx.activate.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-26T02:26:48.9689723+00:00 mx.unadvise.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:48.9689723+00:00 mx.unadvise.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:48.9689723+00:00 mx.removeitem.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:48.9689723+00:00 mx.removeitem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-26T02:26:48.9689723+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T02:26:52.5341155+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T02:26:52.5391141+00:00 harness.stop {} diff --git a/captures/120-frida-buffered-history-testhistoryvalue/frida-command.txt b/captures/120-frida-buffered-history-testhistoryvalue/frida-command.txt new file mode 100644 index 0000000..7c9ab66 --- /dev/null +++ b/captures/120-frida-buffered-history-testhistoryvalue/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=buffered-external-write --tag=TestHistoryValue --item-context=TestMachine_001 --type=int --values=101,102,103 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\120-frida-buffered-history-testhistoryvalue\harness.log --client=MxFridaTrace-120-frida-buffered-history-testhistoryvalue diff --git a/captures/120-frida-buffered-history-testhistoryvalue/frida-events.tsv b/captures/120-frida-buffered-history-testhistoryvalue/frida-events.tsv new file mode 100644 index 0000000..1087189 --- /dev/null +++ b/captures/120-frida-buffered-history-testhistoryvalue/frida-events.tsv @@ -0,0 +1,138 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T02:30:31.981Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T02:30:31.982Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T02:30:31.982Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T02:30:31.983Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T02:30:31.983Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T02:30:31.984Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T02:30:31.984Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T02:30:31.985Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T02:30:31.985Z hook.installed LmxProxy.dll CUserConnectionCallback.OnSetAttributeResult [] +2026-04-26T02:30:31.986Z hook.installed LmxProxy.dll CUserConnectionCallback.OperationComplete [] +2026-04-26T02:30:31.986Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T02:30:38.736Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:30:38.737Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T02:30:38.737Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T02:30:38.738Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:30:38.739Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:30:38.739Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T02:30:38.740Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T02:30:38.837Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T02:30:38.838Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T02:30:38.838Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T02:30:38.839Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T02:30:38.889Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:30:38.889Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe650 [] +2026-04-26T02:30:38.890Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:30:38.890Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0xcfe650 [] +2026-04-26T02:30:38.991Z call.enter LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0xcfed2c "[""0x6138fe0"",""0x1"",""0x3e8""]" +2026-04-26T02:30:38.991Z call.leave LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x0 [] +2026-04-26T02:30:38.993Z call.enter LmxProxy.dll CLMXProxyServer.AddBufferedItem 0xcfed20 "[""0x6138fe0"",""0x1"",""0xcfecb0"",""0xcfeca8"",""0xcfed04""]" +2026-04-26T02:30:38.996Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb70 [] +2026-04-26T02:30:38.997Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:30:38.998Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb10 [] +2026-04-26T02:30:38.998Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeafc [] +2026-04-26T02:30:38.998Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb10 [] +2026-04-26T02:30:38.999Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:30:39.000Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb70 [] +2026-04-26T02:30:39.000Z call.leave LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x0 [] +2026-04-26T02:30:39.002Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfed2c "[""0x6138fe0"",""0x1"",""0x1"",""0xd21ba75a"",""0x74794704""]" +2026-04-26T02:30:39.003Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:30:39.127Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x93c0620"",""0xcfe9f0"",""0x5cc4fc78""]" 0 1 0x2 +2026-04-26T02:30:39.127Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x93c0620"",""0xcfe9f0"",""0x5cc4fc78""]" 1 314 0x93c0620 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 3b 09 1f 01 00 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 3c 09 20 01 00 02 00 00 00 +2026-04-26T02:30:39.130Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93bc710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x9f18020"",""0xa9ee7d19"",""0x93c01ec"",""0x93c01dc"",""0x641add04"",""0x0""]" 0 360 0x9f18020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 3b 09 1f 01 00 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 3c 09 20 01 00 02 00 00 00 +2026-04-26T02:30:39.131Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:30:39.131Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:30:39.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2c2"",""0x7cf2abc"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2c2"",""0x7cf2abc"",""0x206"",""0x3"",""0x114bb6c""]" 0 706 0x7cf2abc c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 dd 1b 9e f6 05 58 42 44 b8 d9 1b 40 2c 18 4c dd 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T02:30:39.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2c2"",""0x7cf2abc"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2c2"",""0x7cf2abc"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:39.163Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2c2"",""0x7cf2abc"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2c2"",""0x7cf2abc"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:39.165Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:39.168Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x97"",""0x10fae0c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x97"",""0x10fae0c"",""0x206"",""0x3"",""0x114bb6c""]" 0 151 0x10fae0c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 47 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 dd 1b 9e f6 05 58 42 44 b8 d9 1b 40 2c 18 4c dd 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T02:30:39.168Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x97"",""0x10fae0c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x97"",""0x10fae0c"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:39.168Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x97"",""0x10fae0c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x97"",""0x10fae0c"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:39.170Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:39.315Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xa1"",""0x93c19d8"",""0xcfe9f0"",""0x5cc4fc78""]" 0 1 0x2 +2026-04-26T02:30:39.315Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xa1"",""0x93c19d8"",""0xcfe9f0"",""0x5cc4fc78""]" 1 161 0x93c19d8 10 01 00 01 00 00 00 55 15 2a af 9e 8f c0 4a bd a3 12 a8 d9 ba 93 61 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:39.317Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93bc710 "[""0x1"",""0x1"",""0x1"",""0xcf"",""0x9f18020"",""0xa9ee7d19"",""0x93b77cc"",""0x93b77bc"",""0x641add04"",""0x0""]" 0 207 0x9f18020 01 00 a1 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 55 15 2a af 9e 8f c0 4a bd a3 12 a8 d9 ba 93 61 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:39.317Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:30:39.318Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:30:39.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 0 46 0x108474c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-26T02:30:39.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:39.372Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:39.374Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:39.450Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xc7"",""0x7cba66c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xc7"",""0x7cba66c"",""0x206"",""0x3"",""0x114bb6c""]" 0 199 0x7cba66c c7 00 00 00 01 00 99 00 00 00 00 00 00 00 4a 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 55 15 2a af 9e 8f c0 4a bd a3 12 a8 d9 ba 93 61 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 6c 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-26T02:30:39.450Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xc7"",""0x7cba66c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xc7"",""0x7cba66c"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:39.450Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xc7"",""0x7cba66c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xc7"",""0x7cba66c"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:39.452Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:40.110Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:30:40.111Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:30:40.111Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb28 [] +2026-04-26T02:30:40.112Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb14 [] +2026-04-26T02:30:40.112Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb28 [] +2026-04-26T02:30:40.114Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:30:40.114Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:30:40.114Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfecd4 "[""0x6138fe0"",""0x2"",""0x1"",""0xd21ba75a"",""0x74794704""]" +2026-04-26T02:30:40.114Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:30:40.270Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x7d"",""0x93c24a8"",""0xcfe998"",""0x5cc4fdc0""]" 0 1 0x2 +2026-04-26T02:30:40.270Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x7d"",""0x93c24a8"",""0xcfe998"",""0x5cc4fdc0""]" 1 125 0x93c24a8 10 01 00 02 00 00 00 29 0a 07 d3 8e 01 70 4e a1 04 d5 37 af cc f3 e1 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:40.271Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93bc710 "[""0x1"",""0x1"",""0x1"",""0xab"",""0x9f18020"",""0xa9ee7db1"",""0x93b77cc"",""0x93b77bc"",""0x641add04"",""0x0""]" 0 171 0x9f18020 01 00 7d 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 02 00 00 00 29 0a 07 d3 8e 01 70 4e a1 04 d5 37 af cc f3 e1 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:40.271Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:30:40.271Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:30:40.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 0 46 0x108474c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-26T02:30:40.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:40.324Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:40.326Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:40.329Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x7cba66c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x7cba66c"",""0x206"",""0x3"",""0x114bb6c""]" 0 163 0x7cba66c a3 00 00 00 01 00 75 00 00 00 00 00 00 00 4f 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 02 00 00 00 29 0a 07 d3 8e 01 70 4e a1 04 d5 37 af cc f3 e1 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 48 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-26T02:30:40.329Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x7cba66c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x7cba66c"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:40.329Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x7cba66c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x7cba66c"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:40.330Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:41.144Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcfecc8 "[""0x6138fe0"",""0x2"",""0x1"",""0x3"",""0x0"",""0x65"",""0x0"",""0x0"",""0xd21ba75a"",""0x74794704""]" +2026-04-26T02:30:41.145Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:30:45.795Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:30:45.796Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:30:45.796Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb28 [] +2026-04-26T02:30:45.796Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb14 [] +2026-04-26T02:30:45.798Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb28 [] +2026-04-26T02:30:45.798Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:30:45.798Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:30:45.800Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfecd4 "[""0x6138fe0"",""0x3"",""0x1"",""0xd21ba75a"",""0x74794704""]" +2026-04-26T02:30:45.800Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:30:45.955Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x7d"",""0x93c27a8"",""0xcfe998"",""0x5cc4fdc0""]" 0 1 0x2 +2026-04-26T02:30:45.955Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x7d"",""0x93c27a8"",""0xcfe998"",""0x5cc4fdc0""]" 1 125 0x93c27a8 10 01 00 03 00 00 00 b6 13 74 49 5b 5c 1e 43 a1 59 eb fc 63 4b 90 95 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:45.956Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93bc710 "[""0x1"",""0x1"",""0x1"",""0xab"",""0x9f18020"",""0xa9ee7db1"",""0x93b77cc"",""0x93b77bc"",""0x641add04"",""0x0""]" 0 171 0x9f18020 01 00 7d 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 03 00 00 00 b6 13 74 49 5b 5c 1e 43 a1 59 eb fc 63 4b 90 95 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:45.957Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:30:45.957Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:30:45.977Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x7cf3bc4"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x7cf3bc4"",""0x206"",""0x3"",""0x114bb6c""]" 0 46 0x7cf3bc4 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-26T02:30:45.977Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x7cf3bc4"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x7cf3bc4"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:45.977Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x7cf3bc4"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x7cf3bc4"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:45.979Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:45.981Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 0 163 0x108474c a3 00 00 00 01 00 75 00 00 00 00 00 00 00 66 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 03 00 00 00 b6 13 74 49 5b 5c 1e 43 a1 59 eb fc 63 4b 90 95 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 48 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-26T02:30:45.981Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:45.981Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:45.982Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:46.826Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcfecc8 "[""0x6138fe0"",""0x3"",""0x1"",""0x3"",""0x0"",""0x66"",""0x0"",""0x0"",""0xd21ba75a"",""0x74794704""]" +2026-04-26T02:30:46.827Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:30:48.191Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:30:48.193Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:30:48.193Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb28 [] +2026-04-26T02:30:48.194Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb14 [] +2026-04-26T02:30:48.194Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0xcfeb28 [] +2026-04-26T02:30:48.195Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:30:48.196Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:30:48.196Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0xcfecd4 "[""0x6138fe0"",""0x4"",""0x1"",""0xd21ba75a"",""0x74794704""]" +2026-04-26T02:30:48.196Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:30:48.402Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x7d"",""0x93c2998"",""0xcfe998"",""0x5cc4fdc0""]" 0 1 0x2 +2026-04-26T02:30:48.402Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x93bc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x7d"",""0x93c2998"",""0xcfe998"",""0x5cc4fdc0""]" 1 125 0x93c2998 10 01 00 04 00 00 00 45 7e fc 2b 99 57 f8 4d 81 0c 80 ea 62 be 60 47 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:48.404Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x93bc710 "[""0x1"",""0x1"",""0x1"",""0xab"",""0x9f18020"",""0xa9ee7db1"",""0x93b77cc"",""0x93b77bc"",""0x641add04"",""0x0""]" 0 171 0x9f18020 01 00 7d 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 04 00 00 00 45 7e fc 2b 99 57 f8 4d 81 0c 80 ea 62 be 60 47 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:30:48.405Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:30:48.405Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:30:48.423Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x7cf3bc4"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x7cf3bc4"",""0x206"",""0x3"",""0x114bb6c""]" 0 46 0x7cf3bc4 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 +2026-04-26T02:30:48.423Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x7cf3bc4"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x7cf3bc4"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:48.423Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0x2e"",""0x7cf3bc4"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0x2e"",""0x7cf3bc4"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:48.425Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:48.428Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 0 163 0x108474c a3 00 00 00 01 00 75 00 00 00 00 00 00 00 71 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 04 00 00 00 45 7e fc 2b 99 57 f8 4d 81 0c 80 ea 62 be 60 47 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 48 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-26T02:30:48.428Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 1 518 0x3 +2026-04-26T02:30:48.428Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x93bc710 "[""0xa3"",""0x108474c"",""0x786ecd0"",""0x76ffedd8"",""0x93bc71c"",""0xa3"",""0x108474c"",""0x206"",""0x3"",""0x114bb6c""]" 2 3 0x114bb6c 18 e1 94 +2026-04-26T02:30:48.429Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:30:49.224Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0xcfecc8 "[""0x6138fe0"",""0x4"",""0x1"",""0x3"",""0x0"",""0x67"",""0x0"",""0x0"",""0xd21ba75a"",""0x74794704""]" +2026-04-26T02:30:49.225Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] diff --git a/captures/120-frida-buffered-history-testhistoryvalue/frida-exit.txt b/captures/120-frida-buffered-history-testhistoryvalue/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/120-frida-buffered-history-testhistoryvalue/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/120-frida-buffered-history-testhistoryvalue/frida.stderr.txt b/captures/120-frida-buffered-history-testhistoryvalue/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/120-frida-buffered-history-testhistoryvalue/frida.stdout.jsonl b/captures/120-frida-buffered-history-testhistoryvalue/frida.stdout.jsonl new file mode 100644 index 0000000..26c7d1e --- /dev/null +++ b/captures/120-frida-buffered-history-testhistoryvalue/frida.stdout.jsonl @@ -0,0 +1,128 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestHistoryValue --item-context=TestMachine_001 --type=int --values=101,102,103 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\120-frida-buffered-history-testhistoryvalue\harness.log --client=MxFridaTrace-120-frida-buffered-history-testhistoryvalue`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestHistoryValue --item-context=TestMachine_001 --type=int --values=101,102,103 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\120-frida-buffered-history-testhistoryvalue\harness.log --client=MxFridaTrace-120-frida-buffered-history-testhistoryvalue`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T02:30:31.981Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T02:30:31.982Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T02:30:31.982Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T02:30:31.983Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T02:30:31.983Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T02:30:31.984Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T02:30:31.984Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T02:30:31.985Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OnSetAttributeResult","base":"0x65a40000","rva":"0x16b50","address":"0x65a56b50","time":"2026-04-26T02:30:31.985Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OperationComplete","base":"0x65a40000","rva":"0x16d4b","address":"0x65a56d4b","time":"2026-04-26T02:30:31.986Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T02:30:31.986Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T02:30:38.736Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T02:30:38.737Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T02:30:38.737Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T02:30:38.738Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T02:30:38.739Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T02:30:38.739Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T02:30:38.740Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T02:30:38.837Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T02:30:38.838Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T02:30:38.838Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T02:30:38.839Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x93b6fe8","outPtr":"0xcfe650","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:30:38.889Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe650","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe650","time":"2026-04-26T02:30:38.889Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x93b6fe8","outPtr":"0xcfe650","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:30:38.890Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0xcfe650","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0xcfe650","time":"2026-04-26T02:30:38.890Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","address":"0x65a4fc80","ecx":"0xcfed2c","args":["0x6138fe0","0x1","0x3e8"],"time":"2026-04-26T02:30:38.991Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","retval":"0x0","time":"2026-04-26T02:30:38.991Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","address":"0x65a5121d","ecx":"0xcfed20","args":["0x6138fe0","0x1","0xcfecb0","0xcfeca8","0xcfed04"],"time":"2026-04-26T02:30:38.993Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c05b0","outPtr":"0xcfeb70","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb70","time":"2026-04-26T02:30:38.996Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c0560","referenceString":{"length":33,"capacity":39,"value":"TestHistoryValue.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490328","flags10":1124099840,"word14":2,"word4c":131073,"word54":132316988,"word58":0,"word5c":0,"word60":177522212,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":0,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 98 ba 49 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 28 03 49 09 3c ff e2 07 00 00 00 00 00 00 00 00 24 c6 94 0a e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 a4 c7 94 0a 00 00 00 00"},"time":"2026-04-26T02:30:38.997Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c05b0","outPtr":"0xcfeb10","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb10","time":"2026-04-26T02:30:38.998Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c05b0","outPtr":"0xcfeafc","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeafc","time":"2026-04-26T02:30:38.998Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c05b0","outPtr":"0xcfeb10","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb10","time":"2026-04-26T02:30:38.998Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c0560","referenceString":{"length":33,"capacity":39,"value":"TestHistoryValue.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490328","flags10":1124099840,"word14":3,"word4c":131073,"word54":132316988,"word58":0,"word5c":0,"word60":177522212,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 98 ba 49 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 28 03 49 09 3c ff e2 07 00 00 00 00 00 00 00 00 24 c6 94 0a e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 a4 c7 94 0a 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:30:38.999Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c05b0","outPtr":"0xcfeb70","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb70","time":"2026-04-26T02:30:39.000Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","retval":"0x0","time":"2026-04-26T02:30:39.000Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfed2c","args":["0x6138fe0","0x1","0x1","0xd21ba75a","0x74794704"],"time":"2026-04-26T02:30:39.002Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:30:39.003Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93bc710","0x1","0x1","0x1","0x2","0x0","0x13a","0x93c0620","0xcfe9f0","0x5cc4fc78"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x93c0620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 3b 09 1f 01 00 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 3c 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:30:39.127Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93bc710","args":["0x1","0x1","0x1","0x168","0x9f18020","0xa9ee7d19","0x93c01ec","0x93c01dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x9f18020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 3b 09 1f 01 00 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 3c 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:30:39.130Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:30:39.131Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:30:39.131Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0x2c2","0x7cf2abc","0x786ecd0","0x76ffedd8","0x93bc71c","0x2c2","0x7cf2abc","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7cf2abc","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 dd 1b 9e f6 05 58 42 44 b8 d9 1b 40 2c 18 4c dd 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:39.163Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:39.165Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0x97","0x10fae0c","0x786ecd0","0x76ffedd8","0x93bc71c","0x97","0x10fae0c","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x10fae0c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 47 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 dd 1b 9e f6 05 58 42 44 b8 d9 1b 40 2c 18 4c dd 6f 16 d3 e7 be 5f a1 4b 80 06 f0 42 e0 e3 6a 5c 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:39.168Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:39.170Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93bc710","0x1","0x1","0x1","0x2","0x0","0xa1","0x93c19d8","0xcfe9f0","0x5cc4fc78"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":161,"ptr":"0x93c19d8","hex":"10 01 00 01 00 00 00 55 15 2a af 9e 8f c0 4a bd a3 12 a8 d9 ba 93 61 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:39.315Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93bc710","args":["0x1","0x1","0x1","0xcf","0x9f18020","0xa9ee7d19","0x93b77cc","0x93b77bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":207,"ptr":"0x9f18020","hex":"01 00 a1 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 55 15 2a af 9e 8f c0 4a bd a3 12 a8 d9 ba 93 61 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:39.317Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:30:39.317Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:30:39.318Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0x2e","0x108474c","0x786ecd0","0x76ffedd8","0x93bc71c","0x2e","0x108474c","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x108474c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:39.372Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:39.374Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0xc7","0x7cba66c","0x786ecd0","0x76ffedd8","0x93bc71c","0xc7","0x7cba66c","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":199,"ptr":"0x7cba66c","hex":"c7 00 00 00 01 00 99 00 00 00 00 00 00 00 4a 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 55 15 2a af 9e 8f c0 4a bd a3 12 a8 d9 ba 93 61 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 6c 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:39.450Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:39.452Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x93c19ec","outPtr":"0xcfec30","referencePtr":"0xcfec64","reference":"TestHistoryValue","time":"2026-04-26T02:30:40.110Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c1eb8","referenceString":{"length":16,"capacity":23,"value":"TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490a30","flags10":0,"word14":2,"word4c":0,"word54":132259516,"word58":0,"word5c":0,"word60":0,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":0,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 80 17 3c 09 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 30 0a 49 09 bc 1e e2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 24 91 e3 07 00 00 00 00"},"time":"2026-04-26T02:30:40.111Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb28","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb28","time":"2026-04-26T02:30:40.111Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb14","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb14","time":"2026-04-26T02:30:40.112Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb28","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb28","time":"2026-04-26T02:30:40.112Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c1eb8","referenceString":{"length":16,"capacity":23,"value":"TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490a30","flags10":0,"word14":3,"word4c":0,"word54":132259516,"word58":0,"word5c":0,"word60":0,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 03 00 00 00 80 17 3c 09 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 30 0a 49 09 bc 1e e2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 24 91 e3 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:30:40.114Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:30:40.114Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfecd4","args":["0x6138fe0","0x2","0x1","0xd21ba75a","0x74794704"],"time":"2026-04-26T02:30:40.114Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:30:40.114Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93bc710","0x1","0x1","0x1","0x2","0x0","0x7d","0x93c24a8","0xcfe998","0x5cc4fdc0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":125,"ptr":"0x93c24a8","hex":"10 01 00 02 00 00 00 29 0a 07 d3 8e 01 70 4e a1 04 d5 37 af cc f3 e1 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:40.270Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93bc710","args":["0x1","0x1","0x1","0xab","0x9f18020","0xa9ee7db1","0x93b77cc","0x93b77bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":171,"ptr":"0x9f18020","hex":"01 00 7d 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 02 00 00 00 29 0a 07 d3 8e 01 70 4e a1 04 d5 37 af cc f3 e1 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:40.271Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:30:40.271Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:30:40.271Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0x2e","0x108474c","0x786ecd0","0x76ffedd8","0x93bc71c","0x2e","0x108474c","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x108474c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:40.324Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:40.326Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0xa3","0x7cba66c","0x786ecd0","0x76ffedd8","0x93bc71c","0xa3","0x7cba66c","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":163,"ptr":"0x7cba66c","hex":"a3 00 00 00 01 00 75 00 00 00 00 00 00 00 4f 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 02 00 00 00 29 0a 07 d3 8e 01 70 4e a1 04 d5 37 af cc f3 e1 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 48 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:40.329Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:40.330Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcfecc8","args":["0x6138fe0","0x2","0x1","0x3","0x0","0x65","0x0","0x0","0xd21ba75a","0x74794704"],"time":"2026-04-26T02:30:41.144Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:30:41.145Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x93c0714","outPtr":"0xcfec30","referencePtr":"0xcfec64","reference":"TestHistoryValue","time":"2026-04-26T02:30:45.795Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c1eb8","referenceString":{"length":16,"capacity":23,"value":"TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490a30","flags10":0,"word14":3,"word4c":0,"word54":132259516,"word58":0,"word5c":0,"word60":0,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 03 00 00 00 80 17 3c 09 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 30 0a 49 09 bc 1e e2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 24 91 e3 07 00 00 00 00"},"time":"2026-04-26T02:30:45.796Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb28","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb28","time":"2026-04-26T02:30:45.796Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb14","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb14","time":"2026-04-26T02:30:45.796Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb28","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb28","time":"2026-04-26T02:30:45.798Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c1eb8","referenceString":{"length":16,"capacity":23,"value":"TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490a30","flags10":0,"word14":4,"word4c":0,"word54":132259516,"word58":0,"word5c":0,"word60":0,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 04 00 00 00 80 17 3c 09 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 30 0a 49 09 bc 1e e2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 24 91 e3 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:30:45.798Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:30:45.798Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfecd4","args":["0x6138fe0","0x3","0x1","0xd21ba75a","0x74794704"],"time":"2026-04-26T02:30:45.800Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:30:45.800Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93bc710","0x1","0x1","0x1","0x2","0x0","0x7d","0x93c27a8","0xcfe998","0x5cc4fdc0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":125,"ptr":"0x93c27a8","hex":"10 01 00 03 00 00 00 b6 13 74 49 5b 5c 1e 43 a1 59 eb fc 63 4b 90 95 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:45.955Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93bc710","args":["0x1","0x1","0x1","0xab","0x9f18020","0xa9ee7db1","0x93b77cc","0x93b77bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":171,"ptr":"0x9f18020","hex":"01 00 7d 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 03 00 00 00 b6 13 74 49 5b 5c 1e 43 a1 59 eb fc 63 4b 90 95 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:45.956Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:30:45.957Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:30:45.957Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0x2e","0x7cf3bc4","0x786ecd0","0x76ffedd8","0x93bc71c","0x2e","0x7cf3bc4","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7cf3bc4","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:45.977Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:45.979Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0xa3","0x108474c","0x786ecd0","0x76ffedd8","0x93bc71c","0xa3","0x108474c","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":163,"ptr":"0x108474c","hex":"a3 00 00 00 01 00 75 00 00 00 00 00 00 00 66 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 03 00 00 00 b6 13 74 49 5b 5c 1e 43 a1 59 eb fc 63 4b 90 95 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 48 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:45.981Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:45.982Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcfecc8","args":["0x6138fe0","0x3","0x1","0x3","0x0","0x66","0x0","0x0","0xd21ba75a","0x74794704"],"time":"2026-04-26T02:30:46.826Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:30:46.827Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x93c0714","outPtr":"0xcfec30","referencePtr":"0xcfec64","reference":"TestHistoryValue","time":"2026-04-26T02:30:48.191Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c1eb8","referenceString":{"length":16,"capacity":23,"value":"TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490a30","flags10":0,"word14":4,"word4c":0,"word54":132259516,"word58":0,"word5c":0,"word60":0,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 04 00 00 00 80 17 3c 09 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 30 0a 49 09 bc 1e e2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 24 91 e3 07 00 00 00 00"},"time":"2026-04-26T02:30:48.193Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb28","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb28","time":"2026-04-26T02:30:48.193Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb14","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb14","time":"2026-04-26T02:30:48.194Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x93c1f08","outPtr":"0xcfeb28","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0xcfeb28","time":"2026-04-26T02:30:48.194Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x93c1eb8","referenceString":{"length":16,"capacity":23,"value":"TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x9490a30","flags10":0,"word14":5,"word4c":0,"word54":132259516,"word58":0,"word5c":0,"word60":0,"word64":154890216,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 05 00 00 00 80 17 3c 09 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 30 0a 49 09 bc 1e e2 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 3b 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 24 91 e3 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:30:48.195Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:30:48.196Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0xcfecd4","args":["0x6138fe0","0x4","0x1","0xd21ba75a","0x74794704"],"time":"2026-04-26T02:30:48.196Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:30:48.196Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x93bc710","0x1","0x1","0x1","0x2","0x0","0x7d","0x93c2998","0xcfe998","0x5cc4fdc0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":125,"ptr":"0x93c2998","hex":"10 01 00 04 00 00 00 45 7e fc 2b 99 57 f8 4d 81 0c 80 ea 62 be 60 47 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:48.402Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x93bc710","args":["0x1","0x1","0x1","0xab","0x9f18020","0xa9ee7db1","0x93b77cc","0x93b77bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":171,"ptr":"0x9f18020","hex":"01 00 7d 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 04 00 00 00 45 7e fc 2b 99 57 f8 4d 81 0c 80 ea 62 be 60 47 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:30:48.404Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:30:48.405Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:30:48.405Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0x2e","0x7cf3bc4","0x786ecd0","0x76ffedd8","0x93bc71c","0x2e","0x7cf3bc4","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7cf3bc4","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:48.423Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:48.425Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x93bc710","args":["0xa3","0x108474c","0x786ecd0","0x76ffedd8","0x93bc71c","0xa3","0x108474c","0x206","0x3","0x114bb6c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":163,"ptr":"0x108474c","hex":"a3 00 00 00 01 00 75 00 00 00 00 00 00 00 71 56 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 04 00 00 00 45 7e fc 2b 99 57 f8 4d 81 0c 80 ea 62 be 60 47 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 48 00 00 00 22 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x114bb6c","hex":"18 e1 94"}],"time":"2026-04-26T02:30:48.428Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:30:48.429Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0xcfecc8","args":["0x6138fe0","0x4","0x1","0x3","0x0","0x67","0x0","0x0","0xd21ba75a","0x74794704"],"time":"2026-04-26T02:30:49.224Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:30:49.225Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/120-frida-buffered-history-testhistoryvalue/harness.log b/captures/120-frida-buffered-history-testhistoryvalue/harness.log new file mode 100644 index 0000000..d4a11f9 --- /dev/null +++ b/captures/120-frida-buffered-history-testhistoryvalue/harness.log @@ -0,0 +1,64 @@ +2026-04-26T02:30:31.8952254+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxFridaTrace-120-frida-buffered-history-testhistoryvalue","Tags":["TestHistoryValue"],"ItemContext":"","WriteType":"int","WriteValue":"","WriteValues":["101","102","103"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","AuthenticateBeforeWrite":false,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":18,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T02:30:38.6305604+00:00 mx.register.begin {"ClientName":"MxFridaTrace-120-frida-buffered-history-testhistoryvalue"} +2026-04-26T02:30:38.9898295+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T02:30:38.9909126+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-26T02:30:38.9918200+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-26T02:30:38.9918200+00:00 mx.add-buffered.begin {"Tag":"TestHistoryValue","ItemContext":""} +2026-04-26T02:30:39.0008981+00:00 mx.add-buffered.end {"Tag":"TestHistoryValue","ItemContext":"","ItemHandle":1} +2026-04-26T02:30:39.0018195+00:00 mx.advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:39.0038168+00:00 mx.advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:40.0418335+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"101"},"UserId":0} +2026-04-26T02:30:40.0458325+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-120-frida-buffered-history-testhistoryvalue.Writer"} +2026-04-26T02:30:40.1088960+00:00 mx.writer-register.end {"SessionHandle":2} +2026-04-26T02:30:40.1088960+00:00 mx.writer-additem.begin {"Tag":"TestHistoryValue"} +2026-04-26T02:30:40.1148530+00:00 mx.writer-additem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:40.1148530+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:40.1148530+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:41.1418991+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":2,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"101"},"UserId":0} +2026-04-26T02:30:41.1456527+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:41.6559082+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:41.6559082+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:41.6559082+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:41.6559082+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:41.6559082+00:00 mx.writer-unregister.begin {"SessionHandle":2} +2026-04-26T02:30:45.2181471+00:00 mx.writer-unregister.end {"SessionHandle":2} +2026-04-26T02:30:45.2181471+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":0} +2026-04-26T02:30:45.7280048+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"102"},"UserId":0} +2026-04-26T02:30:45.7280048+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-120-frida-buffered-history-testhistoryvalue.Writer"} +2026-04-26T02:30:45.7950944+00:00 mx.writer-register.end {"SessionHandle":3} +2026-04-26T02:30:45.7950944+00:00 mx.writer-additem.begin {"Tag":"TestHistoryValue"} +2026-04-26T02:30:45.8000021+00:00 mx.writer-additem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:45.8000021+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:45.8000021+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:46.8263148+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":3,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"102"},"UserId":0} +2026-04-26T02:30:46.8273658+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:47.3415072+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:47.3415072+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:47.3415072+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:47.3415072+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:47.3415072+00:00 mx.writer-unregister.begin {"SessionHandle":3} +2026-04-26T02:30:47.6101887+00:00 mx.writer-unregister.end {"SessionHandle":3} +2026-04-26T02:30:47.6101887+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":1} +2026-04-26T02:30:48.1229520+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"","WriteIndex":2,"Value":{"Type":"System.Int32","Value":"103"},"UserId":0} +2026-04-26T02:30:48.1229520+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-120-frida-buffered-history-testhistoryvalue.Writer"} +2026-04-26T02:30:48.1910654+00:00 mx.writer-register.end {"SessionHandle":4} +2026-04-26T02:30:48.1910654+00:00 mx.writer-additem.begin {"Tag":"TestHistoryValue"} +2026-04-26T02:30:48.1960632+00:00 mx.writer-additem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:48.1960632+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:48.1970681+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:49.2240224+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":4,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"103"},"UserId":0} +2026-04-26T02:30:49.2250538+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:49.7387258+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:49.7387258+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:49.7387258+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:49.7387258+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:30:49.7387258+00:00 mx.writer-unregister.begin {"SessionHandle":4} +2026-04-26T02:30:49.9997095+00:00 mx.writer-unregister.end {"SessionHandle":4} +2026-04-26T02:30:49.9997095+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":2} +2026-04-26T02:31:08.5577035+00:00 mx.unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:08.5586692+00:00 mx.unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:08.5586692+00:00 mx.removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:08.5586692+00:00 mx.removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:08.5586692+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T02:31:08.8350442+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T02:31:08.8420919+00:00 harness.stop {} diff --git a/captures/121-frida-buffered-history-testhistoryvalue-context/frida-command.txt b/captures/121-frida-buffered-history-testhistoryvalue-context/frida-command.txt new file mode 100644 index 0000000..baf96a2 --- /dev/null +++ b/captures/121-frida-buffered-history-testhistoryvalue-context/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=buffered-external-write --tag=TestHistoryValue --context=TestMachine_001 --type=int --values=201,202,203 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\121-frida-buffered-history-testhistoryvalue-context\harness.log --client=MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context diff --git a/captures/121-frida-buffered-history-testhistoryvalue-context/frida-events.tsv b/captures/121-frida-buffered-history-testhistoryvalue-context/frida-events.tsv new file mode 100644 index 0000000..07575cf --- /dev/null +++ b/captures/121-frida-buffered-history-testhistoryvalue-context/frida-events.tsv @@ -0,0 +1,192 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T02:31:44.442Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T02:31:44.443Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T02:31:44.444Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T02:31:44.445Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T02:31:44.446Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T02:31:44.446Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T02:31:44.447Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T02:31:44.448Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T02:31:44.448Z hook.installed LmxProxy.dll CUserConnectionCallback.OnSetAttributeResult [] +2026-04-26T02:31:44.449Z hook.installed LmxProxy.dll CUserConnectionCallback.OperationComplete [] +2026-04-26T02:31:44.449Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T02:31:51.288Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:31:51.289Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T02:31:51.289Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T02:31:51.290Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:31:51.290Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:31:51.291Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T02:31:51.291Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T02:31:51.389Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T02:31:51.390Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T02:31:51.391Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T02:31:51.391Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T02:31:51.440Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:31:51.441Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7be6a0 [] +2026-04-26T02:31:51.442Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:31:51.442Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7be6a0 [] +2026-04-26T02:31:51.557Z call.enter LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x7bed8c "[""0x5eb8fe0"",""0x1"",""0x3e8""]" +2026-04-26T02:31:51.557Z call.leave LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x0 [] +2026-04-26T02:31:51.559Z call.enter LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x7bed80 "[""0x5eb8fe0"",""0x1"",""0x7bed10"",""0x7bece8"",""0x7bed64""]" +2026-04-26T02:31:51.560Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7bebb0 [] +2026-04-26T02:31:51.561Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:31:51.561Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb50 [] +2026-04-26T02:31:51.561Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb3c [] +2026-04-26T02:31:51.562Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb50 [] +2026-04-26T02:31:51.563Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:31:51.563Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7bebb0 [] +2026-04-26T02:31:51.564Z call.leave LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x0 [] +2026-04-26T02:31:51.565Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x7bed8c "[""0x5eb8fe0"",""0x1"",""0x1"",""0x9aa64973"",""0x74794704""]" +2026-04-26T02:31:51.566Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:31:51.690Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9100620"",""0x7bea50"",""0x3c4b24c2""]" 0 1 0x2 +2026-04-26T02:31:51.690Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x9100620"",""0x7bea50"",""0x3c4b24c2""]" 1 314 0x9100620 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 0f 09 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 10 09 20 01 00 02 00 00 00 +2026-04-26T02:31:51.693Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0xa313020"",""0x368af3d"",""0x91001ec"",""0x91001dc"",""0x641add04"",""0x0""]" 0 360 0xa313020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 0f 09 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 10 09 20 01 00 02 00 00 00 +2026-04-26T02:31:51.694Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:31:51.694Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:31:51.714Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x2c2"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x2c2"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 0 706 0x7c36f4c c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 3c f5 79 ab e7 fb 8a 41 b8 97 a3 ba 83 db cd 1c 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T02:31:51.714Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x2c2"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x2c2"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:51.714Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x2c2"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x2c2"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:51.716Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:51.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x97"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x97"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 0 151 0x7bc0804 97 00 00 00 01 00 69 00 00 00 00 00 00 00 76 57 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 3c f5 79 ab e7 fb 8a 41 b8 97 a3 ba 83 db cd 1c 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T02:31:51.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x97"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x97"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:51.718Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x97"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x97"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:51.720Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:51.877Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xbf"",""0x91d84d0"",""0x7bea50"",""0x3c4b24c2""]" 0 1 0x2 +2026-04-26T02:31:51.877Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xbf"",""0x91d84d0"",""0x7bea50"",""0x3c4b24c2""]" 1 191 0x91d84d0 10 01 00 01 00 00 00 1f 40 bc d0 73 5b e9 4e 94 b0 88 b8 61 61 28 24 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:31:51.879Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x1"",""0xed"",""0xa313020"",""0x368af3d"",""0x90f77cc"",""0x90f77bc"",""0x641add04"",""0x0""]" 0 237 0xa313020 01 00 bf 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 1f 40 bc d0 73 5b e9 4e 94 b0 88 b8 61 61 28 24 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:31:51.880Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:31:51.880Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:31:51.883Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x2e"",""0x7c3915c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x2e"",""0x7c3915c"",""0x206"",""0x3"",""0x7757d1c""]" 0 46 0x7c3915c 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 +2026-04-26T02:31:51.883Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x2e"",""0x7c3915c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x2e"",""0x7c3915c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:51.883Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x2e"",""0x7c3915c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x2e"",""0x7c3915c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:51.886Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:51.892Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0xe5"",""0x7bbf6fc"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0xe5"",""0x7bbf6fc"",""0x206"",""0x3"",""0x7757d1c""]" 0 229 0x7bbf6fc e5 00 00 00 01 00 b7 00 00 00 00 00 00 00 79 57 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 1f 40 bc d0 73 5b e9 4e 94 b0 88 b8 61 61 28 24 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 8a 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-26T02:31:51.892Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0xe5"",""0x7bbf6fc"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0xe5"",""0x7bbf6fc"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:51.892Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0xe5"",""0x7bbf6fc"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0xe5"",""0x7bbf6fc"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:51.894Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:52.684Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:31:52.685Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7bebd8 [] +2026-04-26T02:31:52.686Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:31:52.687Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:31:52.687Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:31:52.687Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:31:52.688Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:31:52.689Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:31:52.689Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x7bed34 "[""0x5eb8fe0"",""0x2"",""0x1"",""0x9aa64973"",""0x74794704""]" +2026-04-26T02:31:52.689Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:31:52.690Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7bebb4 [] +2026-04-26T02:31:52.690Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:31:52.690Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7bd848 [] +2026-04-26T02:31:52.691Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:31:52.742Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ceb70"",""0x7be9f8"",""0x3c4b24ba""]" 0 2 0x2 +2026-04-26T02:31:52.742Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ceb70"",""0x7be9f8"",""0x3c4b24ba""]" 1 39 0x91ceb70 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00 +2026-04-26T02:31:52.743Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa313020"",""0x368aed5"",""0x91d760c"",""0x91d75fc"",""0x641add04"",""0x0""]" 0 85 0xa313020 01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00 +2026-04-26T02:31:52.744Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:31:52.744Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:31:52.752Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 0 92 0x7c36f4c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 +2026-04-26T02:31:52.752Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:52.752Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:52.754Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:52.756Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 0 108 0x7bc0804 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 3b 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 03 00 00 00 03 00 00 00 c0 00 e0 15 e3 57 47 bd dc 01 02 +2026-04-26T02:31:52.756Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:52.756Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:52.758Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:53.720Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x7bed28 "[""0x5eb8fe0"",""0x2"",""0x1"",""0x3"",""0x0"",""0xc9"",""0x0"",""0x0"",""0x9aa64973"",""0x74794704""]" +2026-04-26T02:31:53.720Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:31:53.773Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x91ce780"",""0x7be9f8"",""0x3c4b24ba""]" 0 2 0x2 +2026-04-26T02:31:53.773Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x91ce780"",""0x7be9f8"",""0x3c4b24ba""]" 1 40 0x91ce780 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 c9 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 01 00 00 00 +2026-04-26T02:31:53.774Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa313020"",""0x368aed5"",""0x91d9014"",""0x91d9004"",""0x641add04"",""0x0""]" 0 86 0xa313020 01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 c9 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 01 00 00 00 +2026-04-26T02:31:53.774Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:31:53.775Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:31:53.803Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 0 51 0x7c36f4c 33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-26T02:31:53.803Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:53.803Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:53.805Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:53.808Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x58"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x58"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 0 88 0x7bc0804 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 3c 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 03 00 00 00 c0 00 90 eb 41 d8 24 d5 dc 01 02 +2026-04-26T02:31:53.808Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x58"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x58"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:53.808Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x58"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x58"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:53.809Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:58.458Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:31:58.458Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7bebd8 [] +2026-04-26T02:31:58.459Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:31:58.459Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:31:58.460Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:31:58.460Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:31:58.461Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:31:58.461Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:31:58.462Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x7bed34 "[""0x5eb8fe0"",""0x3"",""0x1"",""0x9aa64973"",""0x74794704""]" +2026-04-26T02:31:58.462Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:31:58.462Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7bebb4 [] +2026-04-26T02:31:58.463Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:31:58.463Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7bd848 [] +2026-04-26T02:31:58.463Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:31:58.515Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ced68"",""0x7be9f8"",""0x3c4b24ba""]" 0 2 0x2 +2026-04-26T02:31:58.515Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91ced68"",""0x7be9f8"",""0x3c4b24ba""]" 1 39 0x91ced68 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00 +2026-04-26T02:31:58.515Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa313020"",""0x368aed5"",""0x91d760c"",""0x91d75fc"",""0x641add04"",""0x0""]" 0 85 0xa313020 01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00 +2026-04-26T02:31:58.516Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:31:58.517Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:31:58.543Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c40894"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c40894"",""0x206"",""0x3"",""0x7757d1c""]" 0 92 0x7c40894 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 +2026-04-26T02:31:58.543Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c40894"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c40894"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:58.543Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c40894"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c40894"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:58.545Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:58.548Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 0 108 0x7c36f4c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 3d 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 04 00 00 00 03 00 00 00 c0 00 90 eb 41 d8 24 d5 dc 01 02 +2026-04-26T02:31:58.548Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:58.548Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:58.549Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:59.487Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x7bed28 "[""0x5eb8fe0"",""0x3"",""0x1"",""0x3"",""0x0"",""0xca"",""0x0"",""0x0"",""0x9aa64973"",""0x74794704""]" +2026-04-26T02:31:59.487Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:31:59.540Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x91ce858"",""0x7be9f8"",""0x3c4b24ba""]" 0 2 0x2 +2026-04-26T02:31:59.540Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x91ce858"",""0x7be9f8"",""0x3c4b24ba""]" 1 40 0x91ce858 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 ca 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 02 00 00 00 +2026-04-26T02:31:59.541Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa313020"",""0x368aed5"",""0x90f77cc"",""0x90f77bc"",""0x641add04"",""0x0""]" 0 86 0xa313020 01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 ca 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 02 00 00 00 +2026-04-26T02:31:59.541Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:31:59.542Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:31:59.594Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 0 51 0x7bc0804 33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-26T02:31:59.594Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:59.594Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7bc0804"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7bc0804"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:59.595Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:31:59.598Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6b"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6b"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 0 107 0x7c36f4c 6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 3e 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 03 00 00 00 c0 00 80 8e b5 db 24 d5 dc 01 02 ca 00 00 00 04 00 00 00 c0 00 80 8e b5 db 24 d5 dc 01 02 +2026-04-26T02:31:59.598Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6b"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6b"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:31:59.598Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6b"",""0x7c36f4c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6b"",""0x7c36f4c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:31:59.599Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:32:00.850Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:32:00.850Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7bebd8 [] +2026-04-26T02:32:00.851Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:32:00.851Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:32:00.852Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:32:00.852Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x7beb68 [] +2026-04-26T02:32:00.853Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:32:00.853Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:32:00.854Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x7bed34 "[""0x5eb8fe0"",""0x4"",""0x1"",""0x9aa64973"",""0x74794704""]" +2026-04-26T02:32:00.854Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:32:00.855Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7bebb4 [] +2026-04-26T02:32:00.855Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:32:00.855Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x7bd848 [] +2026-04-26T02:32:00.855Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:32:00.908Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91cedb0"",""0x7be9f8"",""0x3c4b24ba""]" 0 2 0x2 +2026-04-26T02:32:00.908Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x91cedb0"",""0x7be9f8"",""0x3c4b24ba""]" 1 39 0x91cedb0 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00 +2026-04-26T02:32:00.909Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0xa313020"",""0x368aed5"",""0x91d9014"",""0x91d9004"",""0x641add04"",""0x0""]" 0 85 0xa313020 01 00 27 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00 +2026-04-26T02:32:00.909Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:32:00.910Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:32:00.929Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c46ec4"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c46ec4"",""0x206"",""0x3"",""0x7757d1c""]" 0 92 0x7c46ec4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 +2026-04-26T02:32:00.929Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c46ec4"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c46ec4"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:32:00.929Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x5c"",""0x7c46ec4"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x5c"",""0x7c46ec4"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:32:00.931Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:32:00.934Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7c3f78c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7c3f78c"",""0x206"",""0x3"",""0x7757d1c""]" 0 108 0x7c3f78c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 3f 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 05 00 00 00 03 00 00 00 c0 00 80 8e b5 db 24 d5 dc 01 02 +2026-04-26T02:32:00.934Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7c3f78c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7c3f78c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:32:00.934Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x6c"",""0x7c3f78c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x6c"",""0x7c3f78c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:32:00.935Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:32:01.879Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x7bed28 "[""0x5eb8fe0"",""0x4"",""0x1"",""0x3"",""0x0"",""0xcb"",""0x0"",""0x0"",""0x9aa64973"",""0x74794704""]" +2026-04-26T02:32:01.880Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:32:01.984Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x91cee40"",""0x7be9f8"",""0x3c4b24ba""]" 0 2 0x2 +2026-04-26T02:32:01.984Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x90fc710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x91cee40"",""0x7be9f8"",""0x3c4b24ba""]" 1 40 0x91cee40 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 cb 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 03 00 00 00 +2026-04-26T02:32:01.985Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x90fc710 "[""0x1"",""0x1"",""0x2"",""0x56"",""0xa313020"",""0x368aed5"",""0x91d760c"",""0x91d75fc"",""0x641add04"",""0x0""]" 0 86 0xa313020 01 00 28 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 cb 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 03 00 00 00 +2026-04-26T02:32:01.986Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:32:01.986Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:32:02.036Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7c46ec4"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7c46ec4"",""0x206"",""0x3"",""0x7757d1c""]" 0 51 0x7c46ec4 33 00 00 00 01 00 05 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-26T02:32:02.036Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7c46ec4"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7c46ec4"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:32:02.036Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x33"",""0x7c46ec4"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x33"",""0x7c46ec4"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:32:02.038Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:32:02.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x7e"",""0x7c3f78c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x7e"",""0x7c3f78c"",""0x206"",""0x3"",""0x7757d1c""]" 0 126 0x7c3f78c 7e 00 00 00 01 00 50 00 00 00 00 00 00 00 40 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 03 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 03 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02 cb 00 00 00 04 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02 cb 00 00 00 05 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02 +2026-04-26T02:32:02.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x7e"",""0x7c3f78c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x7e"",""0x7c3f78c"",""0x206"",""0x3"",""0x7757d1c""]" 1 518 0x3 +2026-04-26T02:32:02.041Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x90fc710 "[""0x7e"",""0x7c3f78c"",""0x750e958"",""0x76ffedd8"",""0x90fc71c"",""0x7e"",""0x7c3f78c"",""0x206"",""0x3"",""0x7757d1c""]" 2 3 0x7757d1c 18 92 65 +2026-04-26T02:32:02.042Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/121-frida-buffered-history-testhistoryvalue-context/frida-exit.txt b/captures/121-frida-buffered-history-testhistoryvalue-context/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/121-frida-buffered-history-testhistoryvalue-context/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/121-frida-buffered-history-testhistoryvalue-context/frida.stderr.txt b/captures/121-frida-buffered-history-testhistoryvalue-context/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/121-frida-buffered-history-testhistoryvalue-context/frida.stdout.jsonl b/captures/121-frida-buffered-history-testhistoryvalue-context/frida.stdout.jsonl new file mode 100644 index 0000000..fc8bc21 --- /dev/null +++ b/captures/121-frida-buffered-history-testhistoryvalue-context/frida.stdout.jsonl @@ -0,0 +1,167 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestHistoryValue --context=TestMachine_001 --type=int --values=201,202,203 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\121-frida-buffered-history-testhistoryvalue-context\harness.log --client=MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --tag=TestHistoryValue --context=TestMachine_001 --type=int --values=201,202,203 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\121-frida-buffered-history-testhistoryvalue-context\harness.log --client=MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T02:31:44.442Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T02:31:44.443Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T02:31:44.444Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T02:31:44.445Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T02:31:44.446Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T02:31:44.446Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T02:31:44.447Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T02:31:44.448Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OnSetAttributeResult","base":"0x65a40000","rva":"0x16b50","address":"0x65a56b50","time":"2026-04-26T02:31:44.448Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OperationComplete","base":"0x65a40000","rva":"0x16d4b","address":"0x65a56d4b","time":"2026-04-26T02:31:44.449Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T02:31:44.449Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T02:31:51.288Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T02:31:51.289Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T02:31:51.289Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T02:31:51.290Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T02:31:51.290Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T02:31:51.291Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T02:31:51.291Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T02:31:51.389Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T02:31:51.390Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T02:31:51.391Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T02:31:51.391Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7be6a0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:31:51.440Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7be6a0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7be6a0","time":"2026-04-26T02:31:51.441Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7be6a0","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:31:51.442Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7be6a0","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x7be6a0","time":"2026-04-26T02:31:51.442Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","address":"0x65a4fc80","ecx":"0x7bed8c","args":["0x5eb8fe0","0x1","0x3e8"],"time":"2026-04-26T02:31:51.557Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","retval":"0x0","time":"2026-04-26T02:31:51.557Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","address":"0x65a5121d","ecx":"0x7bed80","args":["0x5eb8fe0","0x1","0x7bed10","0x7bece8","0x7bed64"],"time":"2026-04-26T02:31:51.559Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91005b0","outPtr":"0x7bebb0","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7bebb0","time":"2026-04-26T02:31:51.560Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9100560","referenceString":{"length":33,"capacity":39,"value":"TestHistoryValue.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91ce978","flags10":1124099840,"word14":2,"word4c":131073,"word54":131426756,"word58":0,"word5c":0,"word60":174351836,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":0,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 10 70 1d 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 78 e9 1c 09 c4 69 d5 07 00 00 00 00 00 00 00 00 dc 65 64 0a e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2c cc cf 00 00 00 00 00"},"time":"2026-04-26T02:31:51.561Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91005b0","outPtr":"0x7beb50","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7beb50","time":"2026-04-26T02:31:51.561Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91005b0","outPtr":"0x7beb3c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7beb3c","time":"2026-04-26T02:31:51.561Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91005b0","outPtr":"0x7beb50","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7beb50","time":"2026-04-26T02:31:51.562Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x9100560","referenceString":{"length":33,"capacity":39,"value":"TestHistoryValue.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91ce978","flags10":1124099840,"word14":3,"word4c":131073,"word54":131426756,"word58":0,"word5c":0,"word60":174351836,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 10 70 1d 09 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 78 e9 1c 09 c4 69 d5 07 00 00 00 00 00 00 00 00 dc 65 64 0a e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 2c cc cf 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:31:51.563Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91005b0","outPtr":"0x7bebb0","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x7bebb0","time":"2026-04-26T02:31:51.563Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","retval":"0x0","time":"2026-04-26T02:31:51.564Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x7bed8c","args":["0x5eb8fe0","0x1","0x1","0x9aa64973","0x74794704"],"time":"2026-04-26T02:31:51.565Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:31:51.566Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x1","0x2","0x0","0x13a","0x9100620","0x7bea50","0x3c4b24c2"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x9100620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 0f 09 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 10 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:31:51.690Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x1","0x168","0xa313020","0x368af3d","0x91001ec","0x91001dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0xa313020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc 0f 09 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 10 09 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:31:51.693Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:31:51.694Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:31:51.694Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x2c2","0x7c36f4c","0x750e958","0x76ffedd8","0x90fc71c","0x2c2","0x7c36f4c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x7c36f4c","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 3c f5 79 ab e7 fb 8a 41 b8 97 a3 ba 83 db cd 1c 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:51.714Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:51.716Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x97","0x7bc0804","0x750e958","0x76ffedd8","0x90fc71c","0x97","0x7bc0804","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x7bc0804","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 76 57 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 3c f5 79 ab e7 fb 8a 41 b8 97 a3 ba 83 db cd 1c 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:51.718Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:51.720Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x1","0x2","0x0","0xbf","0x91d84d0","0x7bea50","0x3c4b24c2"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":191,"ptr":"0x91d84d0","hex":"10 01 00 01 00 00 00 1f 40 bc d0 73 5b e9 4e 94 b0 88 b8 61 61 28 24 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:31:51.877Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x1","0xed","0xa313020","0x368af3d","0x90f77cc","0x90f77bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":237,"ptr":"0xa313020","hex":"01 00 bf 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 1f 40 bc d0 73 5b e9 4e 94 b0 88 b8 61 61 28 24 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:31:51.879Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:31:51.880Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:31:51.880Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x2e","0x7c3915c","0x750e958","0x76ffedd8","0x90fc71c","0x2e","0x7c3915c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x7c3915c","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:51.883Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:51.886Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0xe5","0x7bbf6fc","0x750e958","0x76ffedd8","0x90fc71c","0xe5","0x7bbf6fc","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":229,"ptr":"0x7bbf6fc","hex":"e5 00 00 00 01 00 b7 00 00 00 00 00 00 00 79 57 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 1f 40 bc d0 73 5b e9 4e 94 b0 88 b8 61 61 28 24 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 8a 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:51.892Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:51.894Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x91d84e4","outPtr":"0x7bec70","referencePtr":"0x7beca4","reference":"TestMachine_001.TestHistoryValue","time":"2026-04-26T02:31:52.684Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91a77f8","outPtr":"0x7bebd8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bebd8","time":"2026-04-26T02:31:52.685Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d89b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91cea98","flags10":0,"word14":2,"word4c":0,"word54":125038468,"word58":0,"word5c":0,"word60":0,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 30 80 1d 09 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 98 ea 1c 09 84 ef 73 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 8c e2 d4 07 00 00 00 00"},"time":"2026-04-26T02:31:52.686Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8a00","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:31:52.687Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8a00","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:31:52.687Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8a00","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:31:52.687Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d89b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91cea98","flags10":0,"word14":2,"word4c":0,"word54":125038468,"word58":0,"word5c":0,"word60":0,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 30 80 1d 09 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 98 ea 1c 09 84 ef 73 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 8c e2 d4 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:31:52.688Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:31:52.689Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x7bed34","args":["0x5eb8fe0","0x2","0x1","0x9aa64973","0x74794704"],"time":"2026-04-26T02:31:52.689Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7bebb4","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:31:52.689Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7bebb4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bebb4","time":"2026-04-26T02:31:52.690Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7bd848","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:31:52.690Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7bd848","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bd848","time":"2026-04-26T02:31:52.690Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:31:52.691Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x2","0x2","0x0","0x27","0x91ceb70","0x7be9f8","0x3c4b24ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x91ceb70","hex":"1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00"}],"time":"2026-04-26T02:31:52.742Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x2","0x55","0xa313020","0x368aed5","0x91d760c","0x91d75fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa313020","hex":"01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00"}],"time":"2026-04-26T02:31:52.743Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:31:52.744Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:31:52.744Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x5c","0x7c36f4c","0x750e958","0x76ffedd8","0x90fc71c","0x5c","0x7c36f4c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7c36f4c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:52.752Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:52.754Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x6c","0x7bc0804","0x750e958","0x76ffedd8","0x90fc71c","0x6c","0x7bc0804","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7bc0804","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 3b 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 03 00 00 00 03 00 00 00 c0 00 e0 15 e3 57 47 bd dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:52.756Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:52.758Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x7bed28","args":["0x5eb8fe0","0x2","0x1","0x3","0x0","0xc9","0x0","0x0","0x9aa64973","0x74794704"],"time":"2026-04-26T02:31:53.720Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:31:53.720Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x2","0x2","0x0","0x28","0x91ce780","0x7be9f8","0x3c4b24ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x91ce780","hex":"37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 c9 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 01 00 00 00"}],"time":"2026-04-26T02:31:53.773Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x2","0x56","0xa313020","0x368aed5","0x91d9014","0x91d9004","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa313020","hex":"01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 c9 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 01 00 00 00"}],"time":"2026-04-26T02:31:53.774Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:31:53.774Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:31:53.775Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x33","0x7c36f4c","0x750e958","0x76ffedd8","0x90fc71c","0x33","0x7c36f4c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7c36f4c","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:53.803Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:53.805Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x58","0x7bc0804","0x750e958","0x76ffedd8","0x90fc71c","0x58","0x7bc0804","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0x7bc0804","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 3c 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 03 00 00 00 c0 00 90 eb 41 d8 24 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:53.808Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:53.809Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x91d7fd4","outPtr":"0x7bec70","referencePtr":"0x7beca4","reference":"TestMachine_001.TestHistoryValue","time":"2026-04-26T02:31:58.458Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91a77f8","outPtr":"0x7bebd8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bebd8","time":"2026-04-26T02:31:58.458Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d8e58","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91ceae0","flags10":0,"word14":2,"word4c":0,"word54":125038468,"word58":0,"word5c":0,"word60":0,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 85 1d 09 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 e0 ea 1c 09 84 ef 73 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ec 24 cf 07 00 00 00 00"},"time":"2026-04-26T02:31:58.459Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8ea8","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:31:58.459Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8ea8","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:31:58.460Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8ea8","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:31:58.460Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d8e58","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91ceae0","flags10":0,"word14":2,"word4c":0,"word54":125038468,"word58":0,"word5c":0,"word60":0,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 85 1d 09 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 e0 ea 1c 09 84 ef 73 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 ec 24 cf 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:31:58.461Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:31:58.461Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x7bed34","args":["0x5eb8fe0","0x3","0x1","0x9aa64973","0x74794704"],"time":"2026-04-26T02:31:58.462Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7bebb4","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:31:58.462Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7bebb4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bebb4","time":"2026-04-26T02:31:58.462Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7bd848","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:31:58.463Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7bd848","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bd848","time":"2026-04-26T02:31:58.463Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:31:58.463Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x2","0x2","0x0","0x27","0x91ced68","0x7be9f8","0x3c4b24ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x91ced68","hex":"1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00"}],"time":"2026-04-26T02:31:58.515Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x2","0x55","0xa313020","0x368aed5","0x91d760c","0x91d75fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa313020","hex":"01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00"}],"time":"2026-04-26T02:31:58.515Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:31:58.516Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:31:58.517Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x5c","0x7c40894","0x750e958","0x76ffedd8","0x90fc71c","0x5c","0x7c40894","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7c40894","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:58.543Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:58.545Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x6c","0x7c36f4c","0x750e958","0x76ffedd8","0x90fc71c","0x6c","0x7c36f4c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7c36f4c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 3d 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 04 00 00 00 03 00 00 00 c0 00 90 eb 41 d8 24 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:58.548Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:58.549Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x7bed28","args":["0x5eb8fe0","0x3","0x1","0x3","0x0","0xca","0x0","0x0","0x9aa64973","0x74794704"],"time":"2026-04-26T02:31:59.487Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:31:59.487Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x2","0x2","0x0","0x28","0x91ce858","0x7be9f8","0x3c4b24ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x91ce858","hex":"37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 ca 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 02 00 00 00"}],"time":"2026-04-26T02:31:59.540Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x2","0x56","0xa313020","0x368aed5","0x90f77cc","0x90f77bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa313020","hex":"01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 ca 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 02 00 00 00"}],"time":"2026-04-26T02:31:59.541Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:31:59.541Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:31:59.542Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x33","0x7bc0804","0x750e958","0x76ffedd8","0x90fc71c","0x33","0x7bc0804","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7bc0804","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:59.594Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:59.595Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x6b","0x7c36f4c","0x750e958","0x76ffedd8","0x90fc71c","0x6b","0x7c36f4c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":107,"ptr":"0x7c36f4c","hex":"6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 3e 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 03 00 00 00 c0 00 80 8e b5 db 24 d5 dc 01 02 ca 00 00 00 04 00 00 00 c0 00 80 8e b5 db 24 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:31:59.598Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:31:59.599Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x91d7fd4","outPtr":"0x7bec70","referencePtr":"0x7beca4","reference":"TestMachine_001.TestHistoryValue","time":"2026-04-26T02:32:00.850Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91a77f8","outPtr":"0x7bebd8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bebd8","time":"2026-04-26T02:32:00.850Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d89b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91cec90","flags10":0,"word14":2,"word4c":0,"word54":125038468,"word58":0,"word5c":0,"word60":0,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 85 1d 09 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 90 ec 1c 09 84 ef 73 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c 25 cf 07 00 00 00 00"},"time":"2026-04-26T02:32:00.851Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8a00","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:32:00.851Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8a00","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:32:00.852Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x91d8a00","outPtr":"0x7beb68","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7beb68","time":"2026-04-26T02:32:00.852Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x91d89b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x91cec90","flags10":0,"word14":2,"word4c":0,"word54":125038468,"word58":0,"word5c":0,"word60":0,"word64":152006632,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 85 1d 09 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 90 ec 1c 09 84 ef 73 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f 0f 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c 25 cf 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:32:00.853Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:32:00.853Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x7bed34","args":["0x5eb8fe0","0x4","0x1","0x9aa64973","0x74794704"],"time":"2026-04-26T02:32:00.854Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7bebb4","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:32:00.854Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7bebb4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bebb4","time":"2026-04-26T02:32:00.855Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x90f6fe8","outPtr":"0x7bd848","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:32:00.855Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x7bd848","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x7bd848","time":"2026-04-26T02:32:00.855Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:32:00.855Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x2","0x2","0x0","0x27","0x91cedb0","0x7be9f8","0x3c4b24ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x91cedb0","hex":"1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00"}],"time":"2026-04-26T02:32:00.908Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x2","0x55","0xa313020","0x368aed5","0x91d9014","0x91d9004","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0xa313020","hex":"01 00 27 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00"}],"time":"2026-04-26T02:32:00.909Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:32:00.909Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:32:00.910Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x5c","0x7c46ec4","0x750e958","0x76ffedd8","0x90fc71c","0x5c","0x7c46ec4","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x7c46ec4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:32:00.929Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:32:00.931Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x6c","0x7c3f78c","0x750e958","0x76ffedd8","0x90fc71c","0x6c","0x7c3f78c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x7c3f78c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 3f 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 26 10 cd bd ce 41 c8 48 a7 a0 47 c3 50 b2 1b e3 05 00 00 00 03 00 00 00 c0 00 80 8e b5 db 24 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:32:00.934Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:32:00.935Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x7bed28","args":["0x5eb8fe0","0x4","0x1","0x3","0x0","0xcb","0x0","0x0","0x9aa64973","0x74794704"],"time":"2026-04-26T02:32:01.879Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:32:01.880Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x90fc710","0x1","0x1","0x2","0x2","0x0","0x28","0x91cee40","0x7be9f8","0x3c4b24ba"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x91cee40","hex":"37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 cb 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 03 00 00 00"}],"time":"2026-04-26T02:32:01.984Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x90fc710","args":["0x1","0x1","0x2","0x56","0xa313020","0x368aed5","0x91d760c","0x91d75fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0xa313020","hex":"01 00 28 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 cb 00 00 00 ff ff 00 00 00 00 00 00 00 00 48 81 07 0d 03 00 00 00"}],"time":"2026-04-26T02:32:01.985Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:32:01.986Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:32:01.986Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x33","0x7c46ec4","0x750e958","0x76ffedd8","0x90fc71c","0x33","0x7c46ec4","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0x7c46ec4","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:32:02.036Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:32:02.038Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x90fc710","args":["0x7e","0x7c3f78c","0x750e958","0x76ffedd8","0x90fc71c","0x7e","0x7c3f78c","0x206","0x3","0x7757d1c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":126,"ptr":"0x7c3f78c","hex":"7e 00 00 00 01 00 50 00 00 00 00 00 00 00 40 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fa 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 03 00 00 00 f5 0e 94 ea c3 6c 84 45 ad e4 75 bc 33 44 ab 65 03 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02 cb 00 00 00 04 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02 cb 00 00 00 05 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x7757d1c","hex":"18 92 65"}],"time":"2026-04-26T02:32:02.041Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:32:02.042Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/121-frida-buffered-history-testhistoryvalue-context/harness.log b/captures/121-frida-buffered-history-testhistoryvalue-context/harness.log new file mode 100644 index 0000000..85584fa --- /dev/null +++ b/captures/121-frida-buffered-history-testhistoryvalue-context/harness.log @@ -0,0 +1,64 @@ +2026-04-26T02:31:44.3568559+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context","Tags":["TestHistoryValue"],"ItemContext":"TestMachine_001","WriteType":"int","WriteValue":"","WriteValues":["201","202","203"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","AuthenticateBeforeWrite":false,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":18,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T02:31:51.1665286+00:00 mx.register.begin {"ClientName":"MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context"} +2026-04-26T02:31:51.5554041+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T02:31:51.5554041+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-26T02:31:51.5574039+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-26T02:31:51.5574039+00:00 mx.add-buffered.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001"} +2026-04-26T02:31:51.5643986+00:00 mx.add-buffered.end {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","ItemHandle":1} +2026-04-26T02:31:51.5653722+00:00 mx.advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:51.5663915+00:00 mx.advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:52.6152273+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"201"},"UserId":0} +2026-04-26T02:31:52.6191817+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context.Writer"} +2026-04-26T02:31:52.6832135+00:00 mx.writer-register.end {"SessionHandle":2} +2026-04-26T02:31:52.6832135+00:00 mx.writer-additem.begin {"Tag":"TestMachine_001.TestHistoryValue"} +2026-04-26T02:31:52.6891815+00:00 mx.writer-additem.end {"Tag":"TestMachine_001.TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:52.6891815+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:52.6912867+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:53.7176842+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":2,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"201"},"UserId":0} +2026-04-26T02:31:53.7206692+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:54.2356896+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:54.2356896+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:54.2356896+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:54.2366334+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:54.2366334+00:00 mx.writer-unregister.begin {"SessionHandle":2} +2026-04-26T02:31:57.8814157+00:00 mx.writer-unregister.end {"SessionHandle":2} +2026-04-26T02:31:57.8814157+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":0} +2026-04-26T02:31:58.3927258+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"202"},"UserId":0} +2026-04-26T02:31:58.3927258+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context.Writer"} +2026-04-26T02:31:58.4577126+00:00 mx.writer-register.end {"SessionHandle":3} +2026-04-26T02:31:58.4577126+00:00 mx.writer-additem.begin {"Tag":"TestMachine_001.TestHistoryValue"} +2026-04-26T02:31:58.4617202+00:00 mx.writer-additem.end {"Tag":"TestMachine_001.TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:58.4627292+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:58.4637512+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:31:59.4879385+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":3,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"202"},"UserId":0} +2026-04-26T02:31:59.4889377+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:00.0028364+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:00.0028364+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:00.0028364+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:00.0028364+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:00.0028364+00:00 mx.writer-unregister.begin {"SessionHandle":3} +2026-04-26T02:32:00.2736279+00:00 mx.writer-unregister.end {"SessionHandle":3} +2026-04-26T02:32:00.2736279+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":1} +2026-04-26T02:32:00.7865058+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","WriteIndex":2,"Value":{"Type":"System.Int32","Value":"203"},"UserId":0} +2026-04-26T02:32:00.7865058+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-121-frida-buffered-history-testhistoryvalue-context.Writer"} +2026-04-26T02:32:00.8494149+00:00 mx.writer-register.end {"SessionHandle":4} +2026-04-26T02:32:00.8494149+00:00 mx.writer-additem.begin {"Tag":"TestMachine_001.TestHistoryValue"} +2026-04-26T02:32:00.8541574+00:00 mx.writer-additem.end {"Tag":"TestMachine_001.TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:00.8541574+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:00.8561440+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:01.8794359+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":4,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"203"},"UserId":0} +2026-04-26T02:32:01.8804272+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:02.3949003+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:02.3958719+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:02.3958719+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:02.3958719+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:02.3958719+00:00 mx.writer-unregister.begin {"SessionHandle":4} +2026-04-26T02:32:02.6488542+00:00 mx.writer-unregister.end {"SessionHandle":4} +2026-04-26T02:32:02.6488542+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":2} +2026-04-26T02:32:21.2138299+00:00 mx.unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:21.2138299+00:00 mx.unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:21.2138299+00:00 mx.removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:21.2138299+00:00 mx.removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:32:21.2147664+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T02:32:21.4714807+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T02:32:21.4784361+00:00 harness.stop {} diff --git a/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-command.txt b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-command.txt new file mode 100644 index 0000000..74d9900 --- /dev/null +++ b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-command.txt @@ -0,0 +1,3 @@ +frida=C:\Users\dohertj2\AppData\Local\Programs\Python\Python312\Scripts\frida.exe +harness=C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +args=-f C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe -l C:\Users\dohertj2\Desktop\mxaccess\analysis\frida\mx-nmx-trace.js -- --scenario=buffered-external-write --plain-advise --tag=TestHistoryValue --context=TestMachine_001 --type=int --values=301,302,303 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\122-frida-buffered-history-testhistoryvalue-plainadvise\harness.log --client=MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise diff --git a/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-events.tsv b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-events.tsv new file mode 100644 index 0000000..bc07297 --- /dev/null +++ b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-events.tsv @@ -0,0 +1,192 @@ +time event module name ecx retval args candidate_index candidate_size candidate_ptr value_hits hex +2026-04-26T02:33:28.044Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantA [] +2026-04-26T02:33:28.044Z hook.installed LmxProxy.dll CLMXProxyServer.Write.variantB [] +2026-04-26T02:33:28.045Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantA [] +2026-04-26T02:33:28.045Z hook.installed LmxProxy.dll CLMXProxyServer.WriteSecured.variantB [] +2026-04-26T02:33:28.046Z hook.installed LmxProxy.dll CLMXProxyServer.AddBufferedItem [] +2026-04-26T02:33:28.047Z hook.installed LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval [] +2026-04-26T02:33:28.047Z hook.installed LmxProxy.dll CLMXProxyServer.AdviseSupervisory [] +2026-04-26T02:33:28.048Z hook.installed LmxProxy.dll CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange [] +2026-04-26T02:33:28.048Z hook.installed LmxProxy.dll CUserConnectionCallback.OnSetAttributeResult [] +2026-04-26T02:33:28.049Z hook.installed LmxProxy.dll CUserConnectionCallback.OperationComplete [] +2026-04-26T02:33:28.049Z hook.installed LmxProxy.dll CLMXProxyServer.AuthenticateUser [] +2026-04-26T02:33:34.898Z hook.installed Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:33:34.898Z hook.installed Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T02:33:34.899Z hook.installed Lmx.dll IMxReference.GetMxHandle [] +2026-04-26T02:33:34.900Z hook.installed Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:34.900Z hook.installed Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:33:34.901Z hook.installed Lmx.dll PreboundReference.OnPlatformResolveReferenceResults [] +2026-04-26T02:33:34.902Z hook.installed Lmx.dll PreboundReference.OnSetAttributeResult [] +2026-04-26T02:33:34.998Z hook.installed NmxAdptr.dll CNmxAdapter.TransferData [] +2026-04-26T02:33:34.999Z hook.installed NmxAdptr.dll CNmxAdapter.ProcessDataReceived [] +2026-04-26T02:33:34.999Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequest [] +2026-04-26T02:33:35.000Z hook.installed NmxAdptr.dll CNmxAdapter.PutRequestEx [] +2026-04-26T02:33:35.014Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:35.015Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe7d8 [] +2026-04-26T02:33:35.015Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:35.017Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fe7d8 [] +2026-04-26T02:33:35.115Z call.enter LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x6feecc "[""0x5b98fe0"",""0x1"",""0x3e8""]" +2026-04-26T02:33:35.115Z call.leave LmxProxy.dll CLMXProxyServer.SetBufferedUpdateInterval 0x0 [] +2026-04-26T02:33:35.117Z call.enter LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x6feec0 "[""0x5b98fe0"",""0x1"",""0x6fee50"",""0x6fee28"",""0x6feea4""]" +2026-04-26T02:33:35.117Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fecf0 [] +2026-04-26T02:33:35.119Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:33:35.119Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fec90 [] +2026-04-26T02:33:35.120Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fec7c [] +2026-04-26T02:33:35.120Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fec90 [] +2026-04-26T02:33:35.121Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:33:35.122Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fecf0 [] +2026-04-26T02:33:35.122Z call.leave LmxProxy.dll CLMXProxyServer.AddBufferedItem 0x0 [] +2026-04-26T02:33:35.123Z lmx.user-register-prebound.enter Lmx.dll MxConnection.UserRegisterPreboundReference [] +2026-04-26T02:33:35.124Z lmx.user-register-prebound.leave Lmx.dll MxConnection.UserRegisterPreboundReference 0x0 [] +2026-04-26T02:33:35.248Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d90620"",""0x6feb90"",""0x69be37ea""]" 0 1 0x2 +2026-04-26T02:33:35.248Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0x13a"",""0x8d90620"",""0x6feb90"",""0x69be37ea""]" 1 314 0x8d90620 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d8 08 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d9 08 20 01 00 02 00 00 00 +2026-04-26T02:33:35.251Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x1"",""0x168"",""0x97aa020"",""0xf0eabc2a"",""0x8d901ec"",""0x8d901dc"",""0x641add04"",""0x0""]" 0 360 0x97aa020 01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d8 08 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d9 08 20 01 00 02 00 00 00 +2026-04-26T02:33:35.252Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:35.252Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:35.280Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x2c2"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x2c2"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 0 706 0x78f3874 c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 03 ad 9c c5 9e 92 39 45 87 6c 2a 48 bc e2 f7 e5 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00 +2026-04-26T02:33:35.280Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x2c2"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x2c2"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:35.280Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x2c2"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x2c2"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:35.282Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:35.284Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x97"",""0x78f276c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x97"",""0x78f276c"",""0x206"",""0x3"",""0x74f3d2c""]" 0 151 0x78f276c 97 00 00 00 01 00 69 00 00 00 00 00 00 00 1b 59 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 03 ad 9c c5 9e 92 39 45 87 6c 2a 48 bc e2 f7 e5 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd +2026-04-26T02:33:35.284Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x97"",""0x78f276c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x97"",""0x78f276c"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:35.284Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x97"",""0x78f276c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x97"",""0x78f276c"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:35.285Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:35.486Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xbf"",""0x8e6a4d0"",""0x6feb90"",""0x69be37ea""]" 0 1 0x2 +2026-04-26T02:33:35.486Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x1"",""0x2"",""0x0"",""0xbf"",""0x8e6a4d0"",""0x6feb90"",""0x69be37ea""]" 1 191 0x8e6a4d0 10 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:33:35.488Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x1"",""0xed"",""0x97aa020"",""0xf0eabc2a"",""0x8d877cc"",""0x8d877bc"",""0x641add04"",""0x0""]" 0 237 0x97aa020 01 00 bf 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 +2026-04-26T02:33:35.489Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:35.489Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:35.536Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x2e"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x2e"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 0 46 0x78f3874 2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 +2026-04-26T02:33:35.536Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x2e"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x2e"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:35.536Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x2e"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x2e"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:35.537Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:35.540Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0xe5"",""0x78f276c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0xe5"",""0x78f276c"",""0x206"",""0x3"",""0x74f3d2c""]" 0 229 0x78f276c e5 00 00 00 01 00 b7 00 00 00 00 00 00 00 1c 59 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 8a 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-26T02:33:35.540Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0xe5"",""0x78f276c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0xe5"",""0x78f276c"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:35.540Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0xe5"",""0x78f276c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0xe5"",""0x78f276c"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:35.541Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:36.234Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:33:36.235Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fed18 [] +2026-04-26T02:33:36.236Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:33:36.236Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:36.236Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:36.237Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:36.238Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:33:36.238Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:33:36.238Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x6fee74 "[""0x5b98fe0"",""0x2"",""0x1"",""0x69ab6e6a"",""0x74794704""]" +2026-04-26T02:33:36.239Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:36.239Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fecf4 [] +2026-04-26T02:33:36.240Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:36.240Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fd988 [] +2026-04-26T02:33:36.240Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:33:36.292Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e5d150"",""0x6feb38"",""0x69be3712""]" 0 2 0x2 +2026-04-26T02:33:36.292Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e5d150"",""0x6feb38"",""0x69be3712""]" 1 39 0x8e5d150 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00 +2026-04-26T02:33:36.294Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x97aa020"",""0xf0eabc42"",""0x8e6960c"",""0x8e695fc"",""0x641add04"",""0x0""]" 0 85 0x97aa020 01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00 +2026-04-26T02:33:36.295Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:36.295Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:36.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 0 92 0x78f3874 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac +2026-04-26T02:33:36.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:36.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0x78f3874"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0x78f3874"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:36.350Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:36.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0xa4f64e4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0xa4f64e4"",""0x206"",""0x3"",""0x74f3d2c""]" 0 108 0xa4f64e4 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 43 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 03 00 00 00 03 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02 +2026-04-26T02:33:36.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0xa4f64e4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0xa4f64e4"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:36.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0xa4f64e4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0xa4f64e4"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:36.354Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:37.270Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x6fee68 "[""0x5b98fe0"",""0x2"",""0x1"",""0x3"",""0x0"",""0x12d"",""0x0"",""0x0"",""0x69ab6e6a"",""0x74794704""]" +2026-04-26T02:33:37.270Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:33:37.323Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e5d4b0"",""0x6feb38"",""0x69be3712""]" 0 2 0x2 +2026-04-26T02:33:37.323Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e5d4b0"",""0x6feb38"",""0x69be3712""]" 1 40 0x8e5d4b0 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2d 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 01 00 00 00 +2026-04-26T02:33:37.324Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x97aa020"",""0xf0eabc42"",""0x8d877cc"",""0x8d877bc"",""0x641add04"",""0x0""]" 0 86 0x97aa020 01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2d 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 01 00 00 00 +2026-04-26T02:33:37.325Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:37.325Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:37.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 0 51 0xa4f97fc 33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-26T02:33:37.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:37.348Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:37.350Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:37.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x58"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x58"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 0 88 0xa4f20c4 58 00 00 00 01 00 2a 00 00 00 00 00 00 00 44 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 03 00 00 00 c0 00 30 c9 f9 15 25 d5 dc 01 02 +2026-04-26T02:33:37.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x58"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x58"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:37.352Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x58"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x58"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:37.353Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:41.896Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:33:41.897Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fed18 [] +2026-04-26T02:33:41.898Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:33:41.899Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:41.899Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:41.899Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:41.900Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:33:41.901Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:33:41.901Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x6fee74 "[""0x5b98fe0"",""0x3"",""0x1"",""0x69ab6e6a"",""0x74794704""]" +2026-04-26T02:33:41.901Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:41.902Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fecf4 [] +2026-04-26T02:33:41.902Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:41.902Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fd988 [] +2026-04-26T02:33:41.902Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:33:41.955Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e5cf58"",""0x6feb38"",""0x69be3712""]" 0 2 0x2 +2026-04-26T02:33:41.955Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e5cf58"",""0x6feb38"",""0x69be3712""]" 1 39 0x8e5cf58 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00 +2026-04-26T02:33:41.956Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x97aa020"",""0xf0eabc42"",""0x8e6960c"",""0x8e695fc"",""0x641add04"",""0x0""]" 0 85 0x97aa020 01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00 +2026-04-26T02:33:41.957Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:41.958Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:41.978Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 0 92 0xa4f20c4 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac +2026-04-26T02:33:41.978Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:41.978Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:41.980Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:41.983Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 0 108 0xa4f97fc 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 45 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 04 00 00 00 03 00 00 00 c0 00 30 c9 f9 15 25 d5 dc 01 02 +2026-04-26T02:33:41.983Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:41.983Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:41.984Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:42.932Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x6fee68 "[""0x5b98fe0"",""0x3"",""0x1"",""0x3"",""0x0"",""0x12e"",""0x0"",""0x0"",""0x69ab6e6a"",""0x74794704""]" +2026-04-26T02:33:42.932Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:33:42.985Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e5d7c8"",""0x6feb38"",""0x69be3712""]" 0 2 0x2 +2026-04-26T02:33:42.985Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e5d7c8"",""0x6feb38"",""0x69be3712""]" 1 40 0x8e5d7c8 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2e 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 02 00 00 00 +2026-04-26T02:33:42.986Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x97aa020"",""0xf0eabc42"",""0x8d877cc"",""0x8d877bc"",""0x641add04"",""0x0""]" 0 86 0x97aa020 01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2e 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 02 00 00 00 +2026-04-26T02:33:42.986Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:42.987Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:43.034Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 0 51 0xa4f20c4 33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-26T02:33:43.034Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:43.034Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f20c4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f20c4"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:43.036Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:43.038Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6b"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6b"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 0 107 0xa4f97fc 6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 46 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 03 00 00 00 c0 00 80 3f 5d 19 25 d5 dc 01 02 2e 01 00 00 04 00 00 00 c0 00 80 3f 5d 19 25 d5 dc 01 02 +2026-04-26T02:33:43.038Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6b"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6b"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:43.038Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6b"",""0xa4f97fc"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6b"",""0xa4f97fc"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:43.041Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:44.287Z lmx.prebind.enter Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:33:44.287Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6fed18 [] +2026-04-26T02:33:44.289Z lmx.prebound-resolve.enter Lmx.dll PreboundReference.Resolve [] +2026-04-26T02:33:44.289Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:44.290Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:44.290Z lmx.mxhandle.read Lmx.dll IMxReference.GetMxHandle 0x6feca8 [] +2026-04-26T02:33:44.291Z lmx.prebound-resolve.leave Lmx.dll PreboundReference.Resolve 0x70fe1e01 [] +2026-04-26T02:33:44.291Z lmx.prebind.leave Lmx.dll MxConnection.PrebindReference [] +2026-04-26T02:33:44.292Z call.enter LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x6fee74 "[""0x5b98fe0"",""0x4"",""0x1"",""0x69ab6e6a"",""0x74794704""]" +2026-04-26T02:33:44.292Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:44.293Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fecf4 [] +2026-04-26T02:33:44.293Z lmx.fixup-mxhandle.enter Lmx.dll AccessManager.FixUpMxHandle [] +2026-04-26T02:33:44.293Z lmx.fixup-mxhandle.leave Lmx.dll AccessManager.FixUpMxHandle 0x6fd988 [] +2026-04-26T02:33:44.293Z call.leave LmxProxy.dll CLMXProxyServer.AdviseSupervisory 0x0 [] +2026-04-26T02:33:44.347Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e5d150"",""0x6feb38"",""0x69be3712""]" 0 2 0x2 +2026-04-26T02:33:44.347Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x27"",""0x8e5d150"",""0x6feb38"",""0x69be3712""]" 1 39 0x8e5d150 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00 +2026-04-26T02:33:44.348Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x2"",""0x55"",""0x97aa020"",""0xf0eabc42"",""0x8e6b014"",""0x8e6b004"",""0x641add04"",""0x0""]" 0 85 0x97aa020 01 00 27 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00 +2026-04-26T02:33:44.349Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:44.349Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:44.402Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0xa4fdc1c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0xa4fdc1c"",""0x206"",""0x3"",""0x74f3d2c""]" 0 92 0xa4fdc1c 5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac +2026-04-26T02:33:44.402Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0xa4fdc1c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0xa4fdc1c"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:44.402Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x5c"",""0xa4fdc1c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x5c"",""0xa4fdc1c"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:44.404Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:44.406Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0x9b468c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0x9b468c"",""0x206"",""0x3"",""0x74f3d2c""]" 0 108 0x9b468c 6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 47 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 05 00 00 00 03 00 00 00 c0 00 80 3f 5d 19 25 d5 dc 01 02 +2026-04-26T02:33:44.406Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0x9b468c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0x9b468c"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:44.406Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x6c"",""0x9b468c"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x6c"",""0x9b468c"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:44.408Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:45.320Z call.enter LmxProxy.dll CLMXProxyServer.Write.variantA 0x6fee68 "[""0x5b98fe0"",""0x4"",""0x1"",""0x3"",""0x0"",""0x12f"",""0x0"",""0x0"",""0x69ab6e6a"",""0x74794704""]" +2026-04-26T02:33:45.320Z call.leave LmxProxy.dll CLMXProxyServer.Write.variantA 0x0 [] +2026-04-26T02:33:45.423Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e5d150"",""0x6feb38"",""0x69be3712""]" 0 2 0x2 +2026-04-26T02:33:45.423Z nmx.enter NmxAdptr.dll CNmxAdapter.PutRequest 0x1 "[""0x8d8c710"",""0x1"",""0x1"",""0x2"",""0x2"",""0x0"",""0x28"",""0x8e5d150"",""0x6feb38"",""0x69be3712""]" 1 40 0x8e5d150 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2f 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 03 00 00 00 +2026-04-26T02:33:45.423Z nmx.enter NmxAdptr.dll CNmxAdapter.TransferData 0x8d8c710 "[""0x1"",""0x1"",""0x2"",""0x56"",""0x97aa020"",""0xf0eabc42"",""0x8e6960c"",""0x8e695fc"",""0x641add04"",""0x0""]" 0 86 0x97aa020 01 00 28 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2f 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 03 00 00 00 +2026-04-26T02:33:45.424Z nmx.leave NmxAdptr.dll CNmxAdapter.TransferData 0x0 [] +2026-04-26T02:33:45.424Z nmx.leave NmxAdptr.dll CNmxAdapter.PutRequest 0x0 [] +2026-04-26T02:33:45.428Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f75ec"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f75ec"",""0x206"",""0x3"",""0x74f3d2c""]" 0 51 0xa4f75ec 33 00 00 00 01 00 05 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 +2026-04-26T02:33:45.428Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f75ec"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f75ec"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:45.428Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x33"",""0xa4f75ec"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x33"",""0xa4f75ec"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:45.430Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] +2026-04-26T02:33:45.432Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x7e"",""0x79004d4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x7e"",""0x79004d4"",""0x206"",""0x3"",""0x74f3d2c""]" 0 126 0x79004d4 7e 00 00 00 01 00 50 00 00 00 00 00 00 00 48 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 03 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 03 00 00 00 c0 00 20 8b ca 1a 25 d5 dc 01 02 2f 01 00 00 04 00 00 00 c0 00 20 8b ca 1a 25 d5 dc 01 02 2f 01 00 00 05 00 00 00 c0 00 20 8b ca 1a 25 d5 dc 01 02 +2026-04-26T02:33:45.432Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x7e"",""0x79004d4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x7e"",""0x79004d4"",""0x206"",""0x3"",""0x74f3d2c""]" 1 518 0x3 +2026-04-26T02:33:45.432Z nmx.enter NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x8d8c710 "[""0x7e"",""0x79004d4"",""0x718ea80"",""0x76ffedd8"",""0x8d8c71c"",""0x7e"",""0x79004d4"",""0x206"",""0x3"",""0x74f3d2c""]" 2 3 0x74f3d2c 50 01 4f +2026-04-26T02:33:45.433Z nmx.leave NmxAdptr.dll CNmxAdapter.ProcessDataReceived 0x0 [] diff --git a/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-exit.txt b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-exit.txt new file mode 100644 index 0000000..eecede7 --- /dev/null +++ b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida-exit.txt @@ -0,0 +1 @@ +exit_code=1 diff --git a/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida.stderr.txt b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida.stdout.jsonl b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida.stdout.jsonl new file mode 100644 index 0000000..66061fe --- /dev/null +++ b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/frida.stdout.jsonl @@ -0,0 +1,167 @@ + ____ + / _ | Frida 17.9.1 - A world-class dynamic instrumentation toolkit + | (_| | + > _ | Commands: + /_/ |_| help -> Displays the help system + . . . . object? -> Display information about 'object' + . . . . exit/quit -> Exit + . . . . + . . . . More info at https://frida.re/docs/home/ + . . . . + . . . . Connected to Local System (id=local) +Spawning `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --plain-advise --tag=TestHistoryValue --context=TestMachine_001 --type=int --values=301,302,303 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\122-frida-buffered-history-testhistoryvalue-plainadvise\harness.log --client=MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise`... +Spawned `C:\Users\dohertj2\Desktop\mxaccess\src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe --scenario=buffered-external-write --plain-advise --tag=TestHistoryValue --context=TestMachine_001 --type=int --values=301,302,303 --write-delay-ms=1000 --write-interval-ms=500 --duration=18 --buffered-update-interval=1000 --log=C:\Users\dohertj2\Desktop\mxaccess\captures\122-frida-buffered-history-testhistoryvalue-plainadvise\harness.log --client=MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise`. Resuming main thread! +[Local::MxTraceHarness.exe ]-> {"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","base":"0x65a40000","rva":"0x12c0c","address":"0x65a52c0c","time":"2026-04-26T02:33:28.044Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantB","base":"0x65a40000","rva":"0x13280","address":"0x65a53280","time":"2026-04-26T02:33:28.044Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantA","base":"0x65a40000","rva":"0x12f24","address":"0x65a52f24","time":"2026-04-26T02:33:28.045Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.WriteSecured.variantB","base":"0x65a40000","rva":"0x135fe","address":"0x65a535fe","time":"2026-04-26T02:33:28.045Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","base":"0x65a40000","rva":"0x1121d","address":"0x65a5121d","time":"2026-04-26T02:33:28.046Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","base":"0x65a40000","rva":"0xfc80","address":"0x65a4fc80","time":"2026-04-26T02:33:28.047Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","base":"0x65a40000","rva":"0x142b4","address":"0x65a542b4","time":"2026-04-26T02:33:28.047Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CProxy_ILMXProxyServerEvents2.Fire_OnBufferedDataChange","base":"0x65a40000","rva":"0x163c0","address":"0x65a563c0","time":"2026-04-26T02:33:28.048Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OnSetAttributeResult","base":"0x65a40000","rva":"0x16b50","address":"0x65a56b50","time":"2026-04-26T02:33:28.048Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CUserConnectionCallback.OperationComplete","base":"0x65a40000","rva":"0x16d4b","address":"0x65a56d4b","time":"2026-04-26T02:33:28.049Z"} +{"event":"hook.installed","module":"LmxProxy.dll","name":"CLMXProxyServer.AuthenticateUser","base":"0x65a40000","rva":"0x1399f","address":"0x65a5399f","time":"2026-04-26T02:33:28.049Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.PrebindReference","base":"0x10000000","rva":"0xea780","address":"0x100ea780","time":"2026-04-26T02:33:34.898Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","base":"0x10000000","rva":"0xe1920","address":"0x100e1920","time":"2026-04-26T02:33:34.898Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"IMxReference.GetMxHandle","base":"0x10000000","rva":"0x5f730","address":"0x1005f730","time":"2026-04-26T02:33:34.899Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","base":"0x10000000","rva":"0x8f8b0","address":"0x1008f8b0","time":"2026-04-26T02:33:34.900Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.Resolve","base":"0x10000000","rva":"0x113d40","address":"0x10113d40","time":"2026-04-26T02:33:34.900Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnPlatformResolveReferenceResults","base":"0x10000000","rva":"0x1155a0","address":"0x101155a0","time":"2026-04-26T02:33:34.901Z"} +{"event":"hook.installed","module":"Lmx.dll","name":"PreboundReference.OnSetAttributeResult","base":"0x10000000","rva":"0x114a90","address":"0x10114a90","time":"2026-04-26T02:33:34.902Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","base":"0x64180000","rva":"0x10996","address":"0x64190996","time":"2026-04-26T02:33:34.998Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","base":"0x64180000","rva":"0x112da","address":"0x641912da","time":"2026-04-26T02:33:34.999Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","base":"0x64180000","rva":"0x15169","address":"0x64195169","time":"2026-04-26T02:33:34.999Z"} +{"event":"hook.installed","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequestEx","base":"0x64180000","rva":"0x159c3","address":"0x641959c3","time":"2026-04-26T02:33:35.000Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fe7d8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:33:35.014Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe7d8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe7d8","time":"2026-04-26T02:33:35.015Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fe7d8","inWords":[65537,65537,0,0,0,0],"time":"2026-04-26T02:33:35.015Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fe7d8","handle":{"raw":"01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":65537,"w1":65537,"w2":0,"w3":0,"w4":0},"retval":"0x6fe7d8","time":"2026-04-26T02:33:35.017Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","address":"0x65a4fc80","ecx":"0x6feecc","args":["0x5b98fe0","0x1","0x3e8"],"time":"2026-04-26T02:33:35.115Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.SetBufferedUpdateInterval","retval":"0x0","time":"2026-04-26T02:33:35.115Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","address":"0x65a5121d","ecx":"0x6feec0","args":["0x5b98fe0","0x1","0x6fee50","0x6fee28","0x6feea4"],"time":"2026-04-26T02:33:35.117Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d905b0","outPtr":"0x6fecf0","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x6fecf0","time":"2026-04-26T02:33:35.117Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d90560","referenceString":{"length":33,"capacity":39,"value":"TestHistoryValue.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d5d0","flags10":1124099840,"word14":2,"word4c":131073,"word54":128152636,"word58":0,"word5c":0,"word60":128188012,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":0,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 02 00 00 00 10 90 e6 08 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d0 d5 e5 08 3c 74 a3 07 00 00 00 00 00 00 00 00 6c fe a3 07 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dc 0a 9b 00 00 00 00 00"},"time":"2026-04-26T02:33:35.119Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d905b0","outPtr":"0x6fec90","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x6fec90","time":"2026-04-26T02:33:35.119Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d905b0","outPtr":"0x6fec7c","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x6fec7c","time":"2026-04-26T02:33:35.120Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d905b0","outPtr":"0x6fec90","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x6fec90","time":"2026-04-26T02:33:35.120Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8d90560","referenceString":{"length":33,"capacity":39,"value":"TestHistoryValue.property(buffer)"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d5d0","flags10":1124099840,"word14":3,"word4c":131073,"word54":128152636,"word58":0,"word5c":0,"word60":128188012,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":1,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 6f 00 6e e8 63 19 10 00 67 00 43 03 00 00 00 10 90 e6 08 00 65 00 00 00 02 00 00 00 00 00 02 21 00 00 00 27 00 00 00 00 00 00 01 00 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00 02 00 d0 d5 e5 08 3c 74 a3 07 00 00 00 00 00 00 00 00 6c fe a3 07 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 dc 0a 9b 00 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:33:35.121Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8d905b0","outPtr":"0x6fecf0","handle":{"raw":"00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00","w0":0,"w1":0,"w2":0,"w3":0,"w4":0},"retval":"0x6fecf0","time":"2026-04-26T02:33:35.122Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AddBufferedItem","retval":"0x0","time":"2026-04-26T02:33:35.122Z"} +{"event":"lmx.user-register-prebound.enter","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","self":"0x8d90224","preboundHandle":1,"callback":"0x8e65ff4","userData":1,"outPtr":"0x8d87b48","time":"2026-04-26T02:33:35.123Z"} +{"event":"lmx.user-register-prebound.leave","module":"Lmx.dll","name":"MxConnection.UserRegisterPreboundReference","retval":"0x0","mxReferenceHandle":1,"time":"2026-04-26T02:33:35.124Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x1","0x2","0x0","0x13a","0x8d90620","0x6feb90","0x69be37ea"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":314,"ptr":"0x8d90620","hex":"17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d8 08 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d9 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:33:35.248Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x1","0x168","0x97aa020","0xf0eabc2a","0x8d901ec","0x8d901dc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":360,"ptr":"0x97aa020","hex":"01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 a8 fc d8 08 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 01 00 00 00 17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 28 03 d9 08 20 01 00 02 00 00 00"}],"time":"2026-04-26T02:33:35.251Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:35.252Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:35.252Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x2c2","0x78f3874","0x718ea80","0x76ffedd8","0x8d8c71c","0x2c2","0x78f3874","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":706,"ptr":"0x78f3874","hex":"c2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 40 1f 50 80 08 a6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 28 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6a 00 0a 00 5f f1 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 1f 00 00 50 80 01 00 01 00 01 00 30 75 00 00 03 ad 9c c5 9e 92 39 45 87 6c 2a 48 bc e2 f7 e5 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 40 1f 50 80 08 be 00 00 00 4c 00 00 91 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 00 00 34 00 00 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 f2 9a 00 6b 00 0a 00 87 3a 00 00 01 6c 00 00 00 41 00 6e 00 20 00 69 00 6e 00 74 00 65 00 72 00 6e 00 61 00 6c 00 20 00 65 00 72 00 72 00 6f 00 72 00 20 00 6f 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6e 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6e 00 74 00 69 00 6d 00 65 00 20 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:35.280Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:35.282Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x97","0x78f276c","0x718ea80","0x76ffedd8","0x8d8c71c","0x97","0x78f276c","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":151,"ptr":"0x78f276c","hex":"97 00 00 00 01 00 69 00 00 00 00 00 00 00 1b 59 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 02 00 00 00 03 ad 9c c5 9e 92 39 45 87 6c 2a 48 bc e2 f7 e5 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:35.284Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:35.285Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x1","0x2","0x0","0xbf","0x8e6a4d0","0x6feb90","0x69be37ea"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":1,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":191,"ptr":"0x8e6a4d0","hex":"10 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:33:35.486Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x1","0xed","0x97aa020","0xf0eabc2a","0x8d877cc","0x8d877bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":237,"ptr":"0x97aa020","hex":"01 00 bf 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 10 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"}],"time":"2026-04-26T02:33:35.488Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:35.489Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:35.489Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x2e","0x78f3874","0x718ea80","0x76ffedd8","0x8d8c71c","0x2e","0x78f3874","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":46,"ptr":"0x78f3874","hex":"2e 00 00 00 01 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:35.536Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:35.537Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0xe5","0x78f276c","0x718ea80","0x76ffedd8","0x8d8c71c","0xe5","0x78f276c","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":229,"ptr":"0x78f276c","hex":"e5 00 00 00 01 00 b7 00 00 00 00 00 00 00 1c 59 0d 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 11 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 8a 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:35.540Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:35.541Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8e6a4e4","outPtr":"0x6fedb0","referencePtr":"0x6fede4","reference":"TestMachine_001.TestHistoryValue","time":"2026-04-26T02:33:36.234Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e37dc0","outPtr":"0x6fed18","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fed18","time":"2026-04-26T02:33:36.235Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e6a9b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d348","flags10":0,"word14":2,"word4c":0,"word54":122494612,"word58":0,"word5c":0,"word60":0,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 30 a0 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 48 d3 e5 08 94 1e 4d 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 bc b9 a1 07 00 00 00 00"},"time":"2026-04-26T02:33:36.236Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aa00","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:36.236Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aa00","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:36.236Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aa00","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:36.237Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e6a9b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d348","flags10":0,"word14":2,"word4c":0,"word54":122494612,"word58":0,"word5c":0,"word60":0,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 30 a0 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 48 d3 e5 08 94 1e 4d 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 bc b9 a1 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:33:36.238Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:33:36.238Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6fee74","args":["0x5b98fe0","0x2","0x1","0x69ab6e6a","0x74794704"],"time":"2026-04-26T02:33:36.238Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fecf4","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:33:36.239Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fecf4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fecf4","time":"2026-04-26T02:33:36.239Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fd988","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:33:36.240Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fd988","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fd988","time":"2026-04-26T02:33:36.240Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:33:36.240Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x2","0x2","0x0","0x27","0x8e5d150","0x6feb38","0x69be3712"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8e5d150","hex":"1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00"}],"time":"2026-04-26T02:33:36.292Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x2","0x55","0x97aa020","0xf0eabc42","0x8e6960c","0x8e695fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x97aa020","hex":"01 00 27 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 03 00 00 00"}],"time":"2026-04-26T02:33:36.294Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:36.295Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:36.295Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x5c","0x78f3874","0x718ea80","0x76ffedd8","0x8d8c71c","0x5c","0x78f3874","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0x78f3874","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:36.348Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:36.350Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x6c","0xa4f64e4","0x718ea80","0x76ffedd8","0x8d8c71c","0x6c","0xa4f64e4","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0xa4f64e4","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 43 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 03 00 00 00 03 00 00 00 c0 00 30 54 2a dd 24 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:36.352Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:36.354Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x6fee68","args":["0x5b98fe0","0x2","0x1","0x3","0x0","0x12d","0x0","0x0","0x69ab6e6a","0x74794704"],"time":"2026-04-26T02:33:37.270Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:33:37.270Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x2","0x2","0x0","0x28","0x8e5d4b0","0x6feb38","0x69be3712"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x8e5d4b0","hex":"37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2d 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 01 00 00 00"}],"time":"2026-04-26T02:33:37.323Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x2","0x56","0x97aa020","0xf0eabc42","0x8d877cc","0x8d877bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x97aa020","hex":"01 00 28 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2d 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 01 00 00 00"}],"time":"2026-04-26T02:33:37.324Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:37.325Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:37.325Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x33","0xa4f97fc","0x718ea80","0x76ffedd8","0x8d8c71c","0x33","0xa4f97fc","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xa4f97fc","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:37.348Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:37.350Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x58","0xa4f20c4","0x718ea80","0x76ffedd8","0x8d8c71c","0x58","0xa4f20c4","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":88,"ptr":"0xa4f20c4","hex":"58 00 00 00 01 00 2a 00 00 00 00 00 00 00 44 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 03 00 00 00 c0 00 30 c9 f9 15 25 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:37.352Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:37.353Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8e69fd4","outPtr":"0x6fedb0","referencePtr":"0x6fede4","reference":"TestMachine_001.TestHistoryValue","time":"2026-04-26T02:33:41.896Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e37dc0","outPtr":"0x6fed18","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fed18","time":"2026-04-26T02:33:41.897Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e6ae58","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d660","flags10":0,"word14":2,"word4c":0,"word54":122494612,"word58":0,"word5c":0,"word60":0,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 a5 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 60 d6 e5 08 94 1e 4d 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c a0 a5 07 00 00 00 00"},"time":"2026-04-26T02:33:41.898Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aea8","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:41.899Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aea8","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:41.899Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aea8","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:41.899Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e6ae58","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d660","flags10":0,"word14":2,"word4c":0,"word54":122494612,"word58":0,"word5c":0,"word60":0,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 a5 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 60 d6 e5 08 94 1e 4d 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 1c a0 a5 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:33:41.900Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:33:41.901Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6fee74","args":["0x5b98fe0","0x3","0x1","0x69ab6e6a","0x74794704"],"time":"2026-04-26T02:33:41.901Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fecf4","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:33:41.901Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fecf4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fecf4","time":"2026-04-26T02:33:41.902Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fd988","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:33:41.902Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fd988","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fd988","time":"2026-04-26T02:33:41.902Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:33:41.902Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x2","0x2","0x0","0x27","0x8e5cf58","0x6feb38","0x69be3712"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8e5cf58","hex":"1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00"}],"time":"2026-04-26T02:33:41.955Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x2","0x55","0x97aa020","0xf0eabc42","0x8e6960c","0x8e695fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x97aa020","hex":"01 00 27 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 04 00 00 00"}],"time":"2026-04-26T02:33:41.956Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:41.957Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:41.958Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x5c","0xa4f20c4","0x718ea80","0x76ffedd8","0x8d8c71c","0x5c","0xa4f20c4","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xa4f20c4","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 05 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:41.978Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:41.980Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x6c","0xa4f97fc","0x718ea80","0x76ffedd8","0x8d8c71c","0x6c","0xa4f97fc","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0xa4f97fc","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 45 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 04 00 00 00 03 00 00 00 c0 00 30 c9 f9 15 25 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:41.983Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:41.984Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x6fee68","args":["0x5b98fe0","0x3","0x1","0x3","0x0","0x12e","0x0","0x0","0x69ab6e6a","0x74794704"],"time":"2026-04-26T02:33:42.932Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:33:42.932Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x2","0x2","0x0","0x28","0x8e5d7c8","0x6feb38","0x69be3712"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x8e5d7c8","hex":"37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2e 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 02 00 00 00"}],"time":"2026-04-26T02:33:42.985Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x2","0x56","0x97aa020","0xf0eabc42","0x8d877cc","0x8d877bc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x97aa020","hex":"01 00 28 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2e 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 02 00 00 00"}],"time":"2026-04-26T02:33:42.986Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:42.986Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:42.987Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x33","0xa4f20c4","0x718ea80","0x76ffedd8","0x8d8c71c","0x33","0xa4f20c4","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xa4f20c4","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 06 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:43.034Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:43.036Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x6b","0xa4f97fc","0x718ea80","0x76ffedd8","0x8d8c71c","0x6b","0xa4f97fc","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":107,"ptr":"0xa4f97fc","hex":"6b 00 00 00 01 00 3d 00 00 00 00 00 00 00 46 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 02 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 03 00 00 00 c0 00 80 3f 5d 19 25 d5 dc 01 02 2e 01 00 00 04 00 00 00 c0 00 80 3f 5d 19 25 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:43.038Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:43.041Z"} +{"event":"lmx.prebind.enter","module":"Lmx.dll","name":"MxConnection.PrebindReference","self":"0x8e69fd4","outPtr":"0x6fedb0","referencePtr":"0x6fede4","reference":"TestMachine_001.TestHistoryValue","time":"2026-04-26T02:33:44.287Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e37dc0","outPtr":"0x6fed18","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fed18","time":"2026-04-26T02:33:44.287Z"} +{"event":"lmx.prebound-resolve.enter","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e6a9b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d738","flags10":0,"word14":2,"word4c":0,"word54":122494612,"word58":0,"word5c":0,"word60":0,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 a5 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 38 d7 e5 08 94 1e 4d 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 0c 9e a5 07 00 00 00 00"},"time":"2026-04-26T02:33:44.289Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aa00","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:44.289Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aa00","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:44.290Z"} +{"event":"lmx.mxhandle.read","module":"Lmx.dll","name":"IMxReference.GetMxHandle","referencePtr":"0x8e6aa00","outPtr":"0x6feca8","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6feca8","time":"2026-04-26T02:33:44.290Z"} +{"event":"lmx.prebound-resolve.leave","module":"Lmx.dll","name":"PreboundReference.Resolve","prebound":{"ptr":"0x8e6a9b0","referenceString":{"length":32,"capacity":39,"value":"TestMachine_001.TestHistoryValue"},"contextString":{"length":0,"capacity":7,"value":""},"auxString":{"length":0,"capacity":7,"value":""},"mxReference":"0x8e5d738","flags10":0,"word14":2,"word4c":0,"word54":122494612,"word58":0,"word5c":0,"word60":0,"word64":148402152,"word68":0,"word6c":0,"worda0":0,"worda4":0,"status":3,"flagb0":0,"errorText":"","raw":"08 64 19 10 f0 63 19 10 00 00 00 00 e8 63 19 10 00 00 00 00 02 00 00 00 40 a5 e6 08 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 38 d7 e5 08 94 1e 4d 07 00 00 00 00 00 00 00 00 00 00 00 00 e8 6f d8 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 0c 9e a5 07 00 00 00 00"},"retval":"0x70fe1e01","time":"2026-04-26T02:33:44.291Z"} +{"event":"lmx.prebind.leave","module":"Lmx.dll","name":"MxConnection.PrebindReference","handle":1,"time":"2026-04-26T02:33:44.291Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","address":"0x65a542b4","ecx":"0x6fee74","args":["0x5b98fe0","0x4","0x1","0x69ab6e6a","0x74794704"],"time":"2026-04-26T02:33:44.292Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fecf4","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:33:44.292Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fecf4","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fecf4","time":"2026-04-26T02:33:44.293Z"} +{"event":"lmx.fixup-mxhandle.enter","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","accessManager":"0x8d86fe8","outPtr":"0x6fd988","inWords":[65537,393218,193544,655528,48332,0],"time":"2026-04-26T02:33:44.293Z"} +{"event":"lmx.fixup-mxhandle.leave","module":"Lmx.dll","name":"AccessManager.FixUpMxHandle","outPtr":"0x6fd988","handle":{"raw":"01 00 01 00 02 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00","w0":65537,"w1":393218,"w2":193544,"w3":655528,"w4":48332},"retval":"0x6fd988","time":"2026-04-26T02:33:44.293Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.AdviseSupervisory","retval":"0x0","time":"2026-04-26T02:33:44.293Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x2","0x2","0x0","0x27","0x8e5d150","0x6feb38","0x69be3712"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":39,"ptr":"0x8e5d150","hex":"1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00"}],"time":"2026-04-26T02:33:44.347Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x2","0x55","0x97aa020","0xf0eabc42","0x8e6b014","0x8e6b004","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":85,"ptr":"0x97aa020","hex":"01 00 27 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 1f 01 00 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 00 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 05 00 00 00"}],"time":"2026-04-26T02:33:44.348Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:44.349Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:44.349Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x5c","0xa4fdc1c","0x718ea80","0x76ffedd8","0x8d8c71c","0x5c","0xa4fdc1c","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":92,"ptr":"0xa4fdc1c","hex":"5c 00 00 00 01 00 2e 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 01 00 01 00 02 00 30 75 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:44.402Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:44.404Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x6c","0x9b468c","0x718ea80","0x76ffedd8","0x8d8c71c","0x6c","0x9b468c","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":108,"ptr":"0x9b468c","hex":"6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 47 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 32 01 00 01 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 59 8e 06 a1 b2 73 60 4d 9b ac e4 ac 90 d1 da e6 05 00 00 00 03 00 00 00 c0 00 80 3f 5d 19 25 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:44.406Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:44.408Z"} +{"event":"call.enter","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","address":"0x65a52c0c","ecx":"0x6fee68","args":["0x5b98fe0","0x4","0x1","0x3","0x0","0x12f","0x0","0x0","0x69ab6e6a","0x74794704"],"time":"2026-04-26T02:33:45.320Z"} +{"event":"call.leave","module":"LmxProxy.dll","name":"CLMXProxyServer.Write.variantA","retval":"0x0","time":"2026-04-26T02:33:45.320Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","address":"0x64195169","ecx":"0x1","args":["0x8d8c710","0x1","0x1","0x2","0x2","0x0","0x28","0x8e5d150","0x6feb38","0x69be3712"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":2,"ptr":"0x2","hex":""},{"sizeIndex":6,"ptrIndex":7,"size":40,"ptr":"0x8e5d150","hex":"37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2f 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 03 00 00 00"}],"time":"2026-04-26T02:33:45.423Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","address":"0x64190996","ecx":"0x8d8c710","args":["0x1","0x1","0x2","0x56","0x97aa020","0xf0eabc42","0x8e6960c","0x8e695fc","0x641add04","0x0"],"candidates":[{"sizeIndex":3,"ptrIndex":4,"size":86,"ptr":"0x97aa020","hex":"01 00 28 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 06 00 08 f4 02 00 a8 00 0a 00 cc bc 00 00 02 2f 01 00 00 ff ff 00 00 00 00 00 00 00 00 e2 15 09 0d 03 00 00 00"}],"time":"2026-04-26T02:33:45.423Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.TransferData","retval":"0x0","time":"2026-04-26T02:33:45.424Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.PutRequest","retval":"0x0","time":"2026-04-26T02:33:45.424Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x33","0xa4f75ec","0x718ea80","0x76ffedd8","0x8d8c71c","0x33","0xa4f75ec","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":51,"ptr":"0xa4f75ec","hex":"33 00 00 00 01 00 05 00 00 00 00 00 00 00 08 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:45.428Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:45.430Z"} +{"event":"nmx.enter","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","address":"0x641912da","ecx":"0x8d8c710","args":["0x7e","0x79004d4","0x718ea80","0x76ffedd8","0x8d8c71c","0x7e","0x79004d4","0x206","0x3","0x74f3d2c"],"candidates":[{"sizeIndex":5,"ptrIndex":6,"size":126,"ptr":"0x79004d4","hex":"7e 00 00 00 01 00 50 00 00 00 00 00 00 00 48 8a 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 01 02 00 00 30 75 00 00 33 01 00 03 00 00 00 25 9f 10 f1 58 70 7a 4e 8e 3b c5 31 50 4c 43 5c 03 00 00 00 c0 00 20 8b ca 1a 25 d5 dc 01 02 2f 01 00 00 04 00 00 00 c0 00 20 8b ca 1a 25 d5 dc 01 02 2f 01 00 00 05 00 00 00 c0 00 20 8b ca 1a 25 d5 dc 01 02"},{"sizeIndex":7,"ptrIndex":8,"size":518,"ptr":"0x3","hex":""},{"sizeIndex":8,"ptrIndex":9,"size":3,"ptr":"0x74f3d2c","hex":"50 01 4f"}],"time":"2026-04-26T02:33:45.432Z"} +{"event":"nmx.leave","module":"NmxAdptr.dll","name":"CNmxAdapter.ProcessDataReceived","retval":"0x0","time":"2026-04-26T02:33:45.433Z"} +Process terminated + +Thank you for using Frida! diff --git a/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/harness.log b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/harness.log new file mode 100644 index 0000000..1c07e28 --- /dev/null +++ b/captures/122-frida-buffered-history-testhistoryvalue-plainadvise/harness.log @@ -0,0 +1,64 @@ +2026-04-26T02:33:27.9474268+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise","Tags":["TestHistoryValue"],"ItemContext":"TestMachine_001","WriteType":"int","WriteValue":"","WriteValues":["301","302","303"],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","AuthenticateBeforeWrite":false,"UseAuthenticatedUserAsVerifier":false,"WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":18,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-26T02:33:34.7550868+00:00 mx.register.begin {"ClientName":"MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise"} +2026-04-26T02:33:35.1138959+00:00 mx.register.end {"SessionHandle":1} +2026-04-26T02:33:35.1138959+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-26T02:33:35.1158928+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-26T02:33:35.1158928+00:00 mx.add-buffered.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001"} +2026-04-26T02:33:35.1228801+00:00 mx.add-buffered.end {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","ItemHandle":1} +2026-04-26T02:33:35.1238916+00:00 mx.advise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:35.1248996+00:00 mx.advise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:36.1651793+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"301"},"UserId":0} +2026-04-26T02:33:36.1692096+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise.Writer"} +2026-04-26T02:33:36.2326838+00:00 mx.writer-register.end {"SessionHandle":2} +2026-04-26T02:33:36.2336438+00:00 mx.writer-additem.begin {"Tag":"TestMachine_001.TestHistoryValue"} +2026-04-26T02:33:36.2386081+00:00 mx.writer-additem.end {"Tag":"TestMachine_001.TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:36.2386081+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:36.2406066+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:37.2685356+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":2,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"301"},"UserId":0} +2026-04-26T02:33:37.2705363+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:37.7867730+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:37.7867730+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:37.7867730+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:37.7867730+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:37.7867730+00:00 mx.writer-unregister.begin {"SessionHandle":2} +2026-04-26T02:33:41.3152595+00:00 mx.writer-unregister.end {"SessionHandle":2} +2026-04-26T02:33:41.3152595+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":0} +2026-04-26T02:33:41.8275801+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"302"},"UserId":0} +2026-04-26T02:33:41.8275801+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise.Writer"} +2026-04-26T02:33:41.8969011+00:00 mx.writer-register.end {"SessionHandle":3} +2026-04-26T02:33:41.8969011+00:00 mx.writer-additem.begin {"Tag":"TestMachine_001.TestHistoryValue"} +2026-04-26T02:33:41.9019157+00:00 mx.writer-additem.end {"Tag":"TestMachine_001.TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:41.9019157+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:41.9029246+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:42.9324478+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":3,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"302"},"UserId":0} +2026-04-26T02:33:42.9324478+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:43.4484354+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:43.4484354+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:43.4484354+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:43.4484354+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:43.4484354+00:00 mx.writer-unregister.begin {"SessionHandle":3} +2026-04-26T02:33:43.7145957+00:00 mx.writer-unregister.end {"SessionHandle":3} +2026-04-26T02:33:43.7145957+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":1} +2026-04-26T02:33:44.2232504+00:00 mx.buffered-external-write.begin {"Tag":"TestHistoryValue","ItemContext":"TestMachine_001","WriteIndex":2,"Value":{"Type":"System.Int32","Value":"303"},"UserId":0} +2026-04-26T02:33:44.2236676+00:00 mx.writer-register.begin {"ClientName":"MxFridaTrace-122-frida-buffered-history-testhistoryvalue-plainadvise.Writer"} +2026-04-26T02:33:44.2876815+00:00 mx.writer-register.end {"SessionHandle":4} +2026-04-26T02:33:44.2876815+00:00 mx.writer-additem.begin {"Tag":"TestMachine_001.TestHistoryValue"} +2026-04-26T02:33:44.2916739+00:00 mx.writer-additem.end {"Tag":"TestMachine_001.TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:44.2926600+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:44.2946705+00:00 mx.writer-advise-supervisory.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:45.3198126+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":4,"Tag":"TestHistoryValue","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"303"},"UserId":0} +2026-04-26T02:33:45.3206997+00:00 mx.writer-write.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:45.8345906+00:00 mx.writer-unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:45.8345906+00:00 mx.writer-unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:45.8345906+00:00 mx.writer-removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:45.8345906+00:00 mx.writer-removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:33:45.8345906+00:00 mx.writer-unregister.begin {"SessionHandle":4} +2026-04-26T02:33:46.0959510+00:00 mx.writer-unregister.end {"SessionHandle":4} +2026-04-26T02:33:46.0961619+00:00 mx.buffered-external-write.end {"Tag":"TestHistoryValue","WriteIndex":2} +2026-04-26T02:34:04.6174606+00:00 mx.unadvise.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:34:04.6174606+00:00 mx.unadvise.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:34:04.6174606+00:00 mx.removeitem.begin {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:34:04.6174606+00:00 mx.removeitem.end {"Tag":"TestHistoryValue","ItemHandle":1} +2026-04-26T02:34:04.6174606+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-26T02:34:04.8679128+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-26T02:34:04.8749121+00:00 harness.stop {} diff --git a/captures/harness.log b/captures/harness.log new file mode 100644 index 0000000..94c805f --- /dev/null +++ b/captures/harness.log @@ -0,0 +1,6 @@ +2026-04-25T22:27:02.3157079+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness","Tags":[],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":10,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T22:27:09.2951042+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T22:27:09.6557731+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T22:27:19.6812541+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T22:27:23.5243968+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T22:27:23.5299001+00:00 harness.stop {} diff --git a/captures/mx-init-probe-after-recycle.log b/captures/mx-init-probe-after-recycle.log new file mode 100644 index 0000000..8587bd0 --- /dev/null +++ b/captures/mx-init-probe-after-recycle.log @@ -0,0 +1,6 @@ +2026-04-27T08:00:27.0558223+00:00 harness.start {"Scenario":"register","ClientName":"MxInitProbeAfterRecycle-494773885","Tags":[],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","AuthenticateBeforeWrite":false,"UseAuthenticatedUserAsVerifier":false,"UsePlainAdvise":false,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-27T08:00:34.0800527+00:00 mx.register.begin {"ClientName":"MxInitProbeAfterRecycle-494773885"} +2026-04-27T08:00:34.6060759+00:00 mx.register.end {"SessionHandle":1} +2026-04-27T08:00:36.6800761+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-27T08:00:40.0610398+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-27T08:00:40.0680400+00:00 harness.stop {} diff --git a/captures/mx-init-probe.log b/captures/mx-init-probe.log new file mode 100644 index 0000000..28a3a36 --- /dev/null +++ b/captures/mx-init-probe.log @@ -0,0 +1,6 @@ +2026-04-27T07:50:48.9063892+00:00 harness.start {"Scenario":"register","ClientName":"MxInitProbe-1627274009","Tags":[],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"","AuthenticateBeforeWrite":false,"UseAuthenticatedUserAsVerifier":false,"UsePlainAdvise":false,"WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-27T07:50:55.1853411+00:00 mx.register.begin {"ClientName":"MxInitProbe-1627274009"} +2026-04-27T07:50:55.9982951+00:00 mx.register.end {"SessionHandle":1} +2026-04-27T07:50:58.0303180+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-27T07:51:01.3713110+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-27T07:51:01.3773128+00:00 harness.stop {} diff --git a/captures/mxaccess-activate-advised-engine-scanstate.log b/captures/mxaccess-activate-advised-engine-scanstate.log new file mode 100644 index 0000000..7441f22 --- /dev/null +++ b/captures/mxaccess-activate-advised-engine-scanstate.log @@ -0,0 +1,16 @@ +2026-04-25T20:23:10.7594593+00:00 harness.start {"Scenario":"activate-advised","ClientName":"MxProtoTraceHarness","Tags":["DevAppEngine.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:23:17.7231553+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:23:18.1030624+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:23:18.1040628+00:00 mx.additem.begin {"Tag":"DevAppEngine.ScanState"} +2026-04-25T20:23:18.1070593+00:00 mx.additem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:18.1080605+00:00 mx.advise-supervisory.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:18.1100604+00:00 mx.advise-supervisory.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:19.1353282+00:00 mx.activate.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:19.1383239+00:00 mx.activate.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-25T20:23:21.1896549+00:00 mx.unadvise.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:21.1896549+00:00 mx.unadvise.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:21.1896549+00:00 mx.removeitem.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:21.1896549+00:00 mx.removeitem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:21.1896549+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:23:40.1795942+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:23:40.1875956+00:00 harness.stop {} diff --git a/captures/mxaccess-activate-advised-scanstate.log b/captures/mxaccess-activate-advised-scanstate.log new file mode 100644 index 0000000..b736fd4 --- /dev/null +++ b/captures/mxaccess-activate-advised-scanstate.log @@ -0,0 +1,16 @@ +2026-04-25T20:23:11.1238221+00:00 harness.start {"Scenario":"activate-advised","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:23:36.8740840+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:23:37.2234121+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:23:37.2244656+00:00 mx.additem.begin {"Tag":"TestChildObject.ScanState"} +2026-04-25T20:23:37.2253836+00:00 mx.additem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:37.2264472+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:37.2273841+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:38.2469713+00:00 mx.activate.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:38.2490356+00:00 mx.activate.end {"Tag":"TestChildObject.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryOk","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-25T20:23:40.2975106+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:40.2985070+00:00 mx.unadvise.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:40.2985070+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:40.2985070+00:00 mx.removeitem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:40.2985070+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:23:40.8252427+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:23:40.8322403+00:00 harness.stop {} diff --git a/captures/mxaccess-activate-engine-scanstate.log b/captures/mxaccess-activate-engine-scanstate.log new file mode 100644 index 0000000..a84ed12 --- /dev/null +++ b/captures/mxaccess-activate-engine-scanstate.log @@ -0,0 +1,12 @@ +2026-04-25T20:21:31.8763581+00:00 harness.start {"Scenario":"activate","ClientName":"MxProtoTraceHarness","Tags":["DevAppEngine.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:21:56.4241654+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:21:56.7676317+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:21:56.7692894+00:00 mx.additem.begin {"Tag":"DevAppEngine.ScanState"} +2026-04-25T20:21:56.7708755+00:00 mx.additem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:56.7708755+00:00 mx.activate.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:56.7898744+00:00 mx.item.error {"Payload":{"Tag":"DevAppEngine.ScanState"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Activate(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 196"} +2026-04-25T20:21:58.8331361+00:00 mx.removeitem.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:58.8341552+00:00 mx.removeitem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:58.8341552+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:22:06.8899111+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:22:06.8969156+00:00 harness.stop {} diff --git a/captures/mxaccess-activate-scanstate.log b/captures/mxaccess-activate-scanstate.log new file mode 100644 index 0000000..2802a60 --- /dev/null +++ b/captures/mxaccess-activate-scanstate.log @@ -0,0 +1,12 @@ +2026-04-25T20:21:31.2125747+00:00 harness.start {"Scenario":"activate","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:21:37.6901358+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:21:38.0456598+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:21:38.0476618+00:00 mx.additem.begin {"Tag":"TestChildObject.ScanState"} +2026-04-25T20:21:38.0486614+00:00 mx.additem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:38.0496055+00:00 mx.activate.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:38.0676642+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.ScanState"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Activate(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 196"} +2026-04-25T20:21:40.1121725+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:40.1131251+00:00 mx.removeitem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:40.1131251+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:21:59.7592412+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:21:59.7652374+00:00 harness.stop {} diff --git a/captures/mxaccess-activate-testint.log b/captures/mxaccess-activate-testint.log new file mode 100644 index 0000000..b93d9bf --- /dev/null +++ b/captures/mxaccess-activate-testint.log @@ -0,0 +1,12 @@ +2026-04-25T19:37:38.1389394+00:00 harness.start {"Scenario":"activate","ClientName":"MxActivateCompare","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:37:44.8199965+00:00 mx.register.begin {"ClientName":"MxActivateCompare"} +2026-04-25T19:37:45.1717866+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:37:45.1727219+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T19:37:45.1747189+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:45.1747189+00:00 mx.activate.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:45.1927822+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.TestInt"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Activate(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 148"} +2026-04-25T19:37:46.2152659+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:46.2162604+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:46.2162604+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:37:50.0319658+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:37:50.0369020+00:00 harness.stop {} diff --git a/captures/mxaccess-add-buffered-advise-testint-context.log b/captures/mxaccess-add-buffered-advise-testint-context.log new file mode 100644 index 0000000..08c2a41 --- /dev/null +++ b/captures/mxaccess-add-buffered-advise-testint-context.log @@ -0,0 +1,16 @@ +2026-04-25T20:30:48.2124790+00:00 harness.start {"Scenario":"add-buffered-advise","ClientName":"MxProtoTraceHarness","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:31:01.4044006+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:31:01.7652627+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:31:01.7662638+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T20:31:01.7672637+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T20:31:01.7672637+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:31:01.7712665+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:31:01.7722648+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:01.7722648+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:08.5695835+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:08.5705848+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:08.5705848+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:08.5705848+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:08.5705848+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:31:12.0654236+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:31:12.0720335+00:00 harness.stop {} diff --git a/captures/mxaccess-add-buffered-plain-advise-testint-context.log b/captures/mxaccess-add-buffered-plain-advise-testint-context.log new file mode 100644 index 0000000..22287e9 --- /dev/null +++ b/captures/mxaccess-add-buffered-plain-advise-testint-context.log @@ -0,0 +1,16 @@ +2026-04-25T21:02:39.6651950+00:00 harness.start {"Scenario":"add-buffered-plain-advise","ClientName":"MxProtoTraceHarness","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:02:46.6215315+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T21:02:47.0074842+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:02:47.0084777+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T21:02:47.0094986+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T21:02:47.0094986+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T21:02:47.0114404+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T21:02:47.0124420+00:00 mx.advise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:02:47.0124420+00:00 mx.advise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:02:56.0646856+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:02:56.0646856+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:02:56.0646856+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:02:56.0646856+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T21:02:56.0646856+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:02:59.6253128+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:02:59.6322534+00:00 harness.stop {} diff --git a/captures/mxaccess-add-buffered-testint-context.log b/captures/mxaccess-add-buffered-testint-context.log new file mode 100644 index 0000000..4354b40 --- /dev/null +++ b/captures/mxaccess-add-buffered-testint-context.log @@ -0,0 +1,10 @@ +2026-04-25T19:41:02.8019394+00:00 harness.start {"Scenario":"add-buffered","ClientName":"MxBufferedCompare","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:41:09.5551118+00:00 mx.register.begin {"ClientName":"MxBufferedCompare"} +2026-04-25T19:41:09.9026983+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:41:09.9036990+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T19:41:09.9056995+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T19:41:12.9669066+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:41:12.9671168+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:41:12.9681121+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:41:16.5672552+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:41:16.5742562+00:00 harness.stop {} diff --git a/captures/mxaccess-add-buffered-write-testint-context.log b/captures/mxaccess-add-buffered-write-testint-context.log new file mode 100644 index 0000000..9337854 --- /dev/null +++ b/captures/mxaccess-add-buffered-write-testint-context.log @@ -0,0 +1,12 @@ +2026-04-25T19:42:03.5693938+00:00 harness.start {"Scenario":"add-buffered-write","ClientName":"MxBufferedWriteCompare","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"131","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:42:10.4489305+00:00 mx.register.begin {"ClientName":"MxBufferedWriteCompare"} +2026-04-25T19:42:10.7861229+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:42:10.7871224+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T19:42:10.7891477+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T19:42:11.5669144+00:00 mx.write.begin {"Tag":"TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"131"},"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T19:42:11.5938420+00:00 mx.item.error {"Payload":{"Tag":"TestInt"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Write(Int32 hLMXServerHandle, Int32 hItem, Object pItemValue, Int32 UserID)\r\n at MxTraceHarness.Program.InvokeWrite(LMXProxyServerClass proxy, Int32 sessionHandle, Int32 itemHandle, Object writeValue, Options options) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 363\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 169"} +2026-04-25T19:42:16.6041847+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:42:16.6062168+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:42:16.6062168+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:42:20.2194742+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:42:20.2264743+00:00 harness.stop {} diff --git a/captures/mxaccess-additem2-testint-context.log b/captures/mxaccess-additem2-testint-context.log new file mode 100644 index 0000000..d6bd3a5 --- /dev/null +++ b/captures/mxaccess-additem2-testint-context.log @@ -0,0 +1,15 @@ +2026-04-25T19:33:23.9417955+00:00 harness.start {"Scenario":"additem2","ClientName":"MxAddItem2Compare","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:33:30.9641020+00:00 mx.register.begin {"ClientName":"MxAddItem2Compare"} +2026-04-25T19:33:31.3180971+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:33:31.3200837+00:00 mx.additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T19:33:31.3220927+00:00 mx.additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T19:33:31.3230865+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:33:31.3240866+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:33:31.3240866+00:00 harness.warning {"Message":"Unknown scenario; performed add/advise default.","Scenario":"additem2"} +2026-04-25T19:33:32.3523762+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:33:32.3533724+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:33:32.3533724+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:33:32.3533724+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T19:33:32.3533724+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:33:36.0011865+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:33:36.0061852+00:00 harness.stop {} diff --git a/captures/mxaccess-authenticate-user-administrator-empty.log b/captures/mxaccess-authenticate-user-administrator-empty.log new file mode 100644 index 0000000..00a5082 --- /dev/null +++ b/captures/mxaccess-authenticate-user-administrator-empty.log @@ -0,0 +1,8 @@ +2026-04-25T21:11:22.4529235+00:00 harness.start {"Scenario":"authenticate-user","ClientName":"MxProtoTraceHarness","Tags":[],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","AuthUser":"Administrator","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:11:29.0085856+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T21:11:29.3822965+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:11:29.3822965+00:00 mx.authenticate-user.begin {"AuthUser":"Administrator","PasswordSource":"empty-or-missing-env"} +2026-04-25T21:11:29.5591570+00:00 mx.authenticate-user.end {"AuthUser":"Administrator","UserId":1} +2026-04-25T21:11:31.6145396+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:11:35.5425943+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:11:35.5495712+00:00 harness.stop {} diff --git a/captures/mxaccess-buffered-external-write-testint-context-2.log b/captures/mxaccess-buffered-external-write-testint-context-2.log new file mode 100644 index 0000000..eef805e --- /dev/null +++ b/captures/mxaccess-buffered-external-write-testint-context-2.log @@ -0,0 +1,48 @@ +2026-04-25T20:31:56.1209283+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxProtoTraceHarness","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"","WriteValues":["122","123"],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":2500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:32:02.5065028+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:32:02.8475206+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:32:02.8485050+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T20:32:02.8495025+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T20:32:02.8495025+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:32:02.8523402+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:32:02.8523402+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:02.8534726+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:03.8863748+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"122"},"UserId":1} +2026-04-25T20:32:03.8903699+00:00 mx.writer-register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:32:03.9546627+00:00 mx.writer-register.end {"SessionHandle":2} +2026-04-25T20:32:03.9546627+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:32:03.9546627+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:32:03.9546627+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:03.9552987+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:04.9790415+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":2,"Tag":"TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"122"},"UserId":1} +2026-04-25T20:32:04.9831021+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:07.4919971+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:07.4919971+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:07.4919971+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:07.4919971+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:07.4919971+00:00 mx.writer-unregister.begin {"SessionHandle":2} +2026-04-25T20:32:11.0117921+00:00 mx.writer-unregister.end {"SessionHandle":2} +2026-04-25T20:32:11.0117921+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":0} +2026-04-25T20:32:13.5240145+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"123"},"UserId":1} +2026-04-25T20:32:13.5240145+00:00 mx.writer-register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:32:13.5877818+00:00 mx.writer-register.end {"SessionHandle":3} +2026-04-25T20:32:13.5877818+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:32:13.5877818+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:32:13.5877818+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:13.5877818+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:14.6098321+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":3,"Tag":"TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"123"},"UserId":1} +2026-04-25T20:32:14.6098321+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:17.1147667+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:17.1147667+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:17.1158283+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:17.1158283+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:17.1158283+00:00 mx.writer-unregister.begin {"SessionHandle":3} +2026-04-25T20:32:17.1590628+00:00 mx.writer-unregister.end {"SessionHandle":3} +2026-04-25T20:32:17.1600183+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":1} +2026-04-25T20:32:27.6819068+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:27.6819068+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:27.6819068+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:27.6819068+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:32:27.6819068+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:32:27.7229034+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:32:27.7309159+00:00 harness.stop {} diff --git a/captures/mxaccess-buffered-external-write-testint-context-3.log b/captures/mxaccess-buffered-external-write-testint-context-3.log new file mode 100644 index 0000000..062e2b6 --- /dev/null +++ b/captures/mxaccess-buffered-external-write-testint-context-3.log @@ -0,0 +1,40 @@ +2026-04-25T20:33:36.7614618+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxProtoTraceHarness","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"","WriteValues":["124","125"],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":2500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:33:43.3527569+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:33:43.7037046+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:33:43.7047185+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T20:33:43.7057026+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T20:33:43.7057026+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:33:43.7077587+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:33:43.7087567+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:33:43.7097220+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:33:44.7378101+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"124"},"UserId":1} +2026-04-25T20:33:44.7408122+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:33:44.7418127+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":2} +2026-04-25T20:33:44.7418127+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:33:44.7418127+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:33:45.7646981+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":2,"Value":{"Type":"System.Int32","Value":"124"},"UserId":1} +2026-04-25T20:33:45.7667541+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:33:48.2680610+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:33:48.2680610+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:33:48.2680610+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:33:48.2690621+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:33:48.2690621+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":0} +2026-04-25T20:33:50.7706049+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"125"},"UserId":1} +2026-04-25T20:33:50.7706049+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:33:50.7706049+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":3} +2026-04-25T20:33:50.7706049+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:33:50.7706049+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:33:51.7920302+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":3,"Value":{"Type":"System.Int32","Value":"125"},"UserId":1} +2026-04-25T20:33:51.7920302+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:33:54.3004320+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:33:54.3004320+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:33:54.3004320+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:33:54.3004320+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:33:54.3004320+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":1} +2026-04-25T20:34:04.8280973+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:04.8280973+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:04.8280973+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:04.8280973+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:34:04.8290703+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:34:08.2563347+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:34:08.2633372+00:00 harness.stop {} diff --git a/captures/mxaccess-buffered-external-write-testint-context-4.log b/captures/mxaccess-buffered-external-write-testint-context-4.log new file mode 100644 index 0000000..4135dfc --- /dev/null +++ b/captures/mxaccess-buffered-external-write-testint-context-4.log @@ -0,0 +1,40 @@ +2026-04-25T20:35:53.3711215+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxProtoTraceHarness","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"","WriteValues":["128","129"],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":2500,"BufferedUpdateInterval":1000,"DurationSeconds":8,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:35:59.8151459+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:36:00.1790205+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:36:00.1799275+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T20:36:00.1819747+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T20:36:00.1819747+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:36:00.1849299+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:36:00.1858878+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:36:00.1868978+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:36:01.2240851+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"128"},"UserId":1} +2026-04-25T20:36:01.2270879+00:00 mx.writer-additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:36:01.2291018+00:00 mx.writer-additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":2} +2026-04-25T20:36:01.2291018+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:36:01.2291018+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:36:02.2509316+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":2,"Value":{"Type":"System.Int32","Value":"128"},"UserId":1} +2026-04-25T20:36:02.2529149+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:36:04.7593634+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:36:04.7593634+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:36:04.7593634+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:36:04.7604013+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":2} +2026-04-25T20:36:04.7604013+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":0} +2026-04-25T20:36:07.3112018+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"129"},"UserId":1} +2026-04-25T20:36:07.3112018+00:00 mx.writer-additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:36:07.3122146+00:00 mx.writer-additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":3} +2026-04-25T20:36:07.3122146+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:36:07.3122146+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:36:08.3342258+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"Tag":"TestInt","ItemHandle":3,"Value":{"Type":"System.Int32","Value":"129"},"UserId":1} +2026-04-25T20:36:08.3342258+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:36:10.8375474+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:36:10.8375474+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:36:10.8375474+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:36:10.8375474+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":3} +2026-04-25T20:36:10.8375474+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":1} +2026-04-25T20:36:21.3617486+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:36:21.3626993+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:36:21.3626993+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:36:21.3626993+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:36:21.3626993+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:36:25.2133334+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:36:25.2203317+00:00 harness.stop {} diff --git a/captures/mxaccess-buffered-external-write-testint-context.log b/captures/mxaccess-buffered-external-write-testint-context.log new file mode 100644 index 0000000..ad17275 --- /dev/null +++ b/captures/mxaccess-buffered-external-write-testint-context.log @@ -0,0 +1,48 @@ +2026-04-25T20:30:48.1925137+00:00 harness.start {"Scenario":"buffered-external-write","ClientName":"MxProtoTraceHarness","Tags":["TestInt"],"ItemContext":"TestChildObject","WriteType":"int","WriteValue":"","WriteValues":["120","121"],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":1200,"BufferedUpdateInterval":1000,"DurationSeconds":7,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:30:54.9032311+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:30:55.2692321+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:30:55.2703836+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T20:30:55.2709864+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T20:30:55.2715927+00:00 mx.add-buffered.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:30:55.2732024+00:00 mx.add-buffered.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:30:55.2743724+00:00 mx.advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:55.2750604+00:00 mx.advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:56.3072576+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":0,"Value":{"Type":"System.Int32","Value":"120"},"UserId":1} +2026-04-25T20:30:56.3112636+00:00 mx.writer-register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:30:56.3753285+00:00 mx.writer-register.end {"SessionHandle":2} +2026-04-25T20:30:56.3753285+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:30:56.3753285+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:30:56.3762629+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:56.3762629+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:57.3973051+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":2,"Tag":"TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"120"},"UserId":1} +2026-04-25T20:30:57.3992425+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:57.3992425+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:57.3992425+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:57.3992425+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:57.3992425+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:30:57.3992425+00:00 mx.writer-unregister.begin {"SessionHandle":2} +2026-04-25T20:31:04.8197437+00:00 mx.writer-unregister.end {"SessionHandle":2} +2026-04-25T20:31:04.8197437+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":0} +2026-04-25T20:31:06.0444965+00:00 mx.buffered-external-write.begin {"Tag":"TestInt","ItemContext":"TestChildObject","WriteIndex":1,"Value":{"Type":"System.Int32","Value":"121"},"UserId":1} +2026-04-25T20:31:06.0444965+00:00 mx.writer-register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:31:06.1081710+00:00 mx.writer-register.end {"SessionHandle":3} +2026-04-25T20:31:06.1081710+00:00 mx.writer-additem2.begin {"Tag":"TestInt","ItemContext":"TestChildObject"} +2026-04-25T20:31:06.1081710+00:00 mx.writer-additem2.end {"Tag":"TestInt","ItemContext":"TestChildObject","ItemHandle":1} +2026-04-25T20:31:06.1081710+00:00 mx.writer-advise-supervisory.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:06.1081710+00:00 mx.writer-advise-supervisory.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:07.1300635+00:00 mx.writer-write.begin {"BufferedSessionHandle":1,"WriterSessionHandle":3,"Tag":"TestInt","ItemHandle":1,"Value":{"Type":"System.Int32","Value":"121"},"UserId":1} +2026-04-25T20:31:07.1300635+00:00 mx.writer-write.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:07.1300635+00:00 mx.writer-unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:07.1300635+00:00 mx.writer-unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:07.1311113+00:00 mx.writer-removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:07.1311113+00:00 mx.writer-removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:07.1311113+00:00 mx.writer-unregister.begin {"SessionHandle":3} +2026-04-25T20:31:07.4026225+00:00 mx.writer-unregister.end {"SessionHandle":3} +2026-04-25T20:31:07.4026225+00:00 mx.buffered-external-write.end {"Tag":"TestInt","WriteIndex":1} +2026-04-25T20:31:15.6753999+00:00 mx.unadvise.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:15.6753999+00:00 mx.unadvise.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:15.6753999+00:00 mx.removeitem.begin {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:15.6753999+00:00 mx.removeitem.end {"Tag":"TestInt","ItemHandle":1} +2026-04-25T20:31:15.6763968+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:31:15.8293971+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:31:15.8363490+00:00 harness.stop {} diff --git a/captures/mxaccess-plain-advise-testint.log b/captures/mxaccess-plain-advise-testint.log new file mode 100644 index 0000000..3a0294c --- /dev/null +++ b/captures/mxaccess-plain-advise-testint.log @@ -0,0 +1,15 @@ +2026-04-25T19:35:09.1406213+00:00 harness.start {"Scenario":"advise","ClientName":"MxPlainAdviseCompare","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:35:16.3290053+00:00 mx.register.begin {"ClientName":"MxPlainAdviseCompare"} +2026-04-25T19:35:16.7085492+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:35:16.7105573+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T19:35:16.7115454+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:35:16.7125491+00:00 mx.advise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:35:16.7135487+00:00 mx.advise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:35:16.7135487+00:00 harness.warning {"Message":"Unknown scenario; performed add/advise default.","Scenario":"advise"} +2026-04-25T19:35:19.7383080+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:35:19.7383080+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:35:19.7383080+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:35:19.7383080+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:35:19.7383080+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:35:23.7866964+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:35:23.7927166+00:00 harness.stop {} diff --git a/captures/mxaccess-set-buffered-interval-1000.log b/captures/mxaccess-set-buffered-interval-1000.log new file mode 100644 index 0000000..f1b6f82 --- /dev/null +++ b/captures/mxaccess-set-buffered-interval-1000.log @@ -0,0 +1,8 @@ +2026-04-25T19:40:50.2578331+00:00 harness.start {"Scenario":"set-buffered-interval","ClientName":"MxBufferedCompare","Tags":[],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:40:57.3483768+00:00 mx.register.begin {"ClientName":"MxBufferedCompare"} +2026-04-25T19:40:57.7169289+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:40:57.7188906+00:00 mx.set-buffered-interval.begin {"BufferedUpdateInterval":1000} +2026-04-25T19:40:57.7188906+00:00 mx.set-buffered-interval.end {"BufferedUpdateInterval":1000} +2026-04-25T19:40:58.7428056+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:41:02.5696090+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:41:02.5795481+00:00 harness.stop {} diff --git a/captures/mxaccess-subscribe-elapsed-time-deadband-fullref.log b/captures/mxaccess-subscribe-elapsed-time-deadband-fullref.log new file mode 100644 index 0000000..5c31e2d --- /dev/null +++ b/captures/mxaccess-subscribe-elapsed-time-deadband-fullref.log @@ -0,0 +1,14 @@ +2026-04-25T19:50:16.2145767+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness","Tags":["TestMachine_001.TestAlarm001.Alarm.TimeDeadband"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:50:23.3668710+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T19:50:23.7341949+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:50:23.7341949+00:00 mx.additem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband"} +2026-04-25T19:50:23.7361853+00:00 mx.additem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:50:23.7372474+00:00 mx.advise-supervisory.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:50:23.7381938+00:00 mx.advise-supervisory.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:50:28.8066568+00:00 mx.unadvise.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:50:28.8066568+00:00 mx.unadvise.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:50:28.8066568+00:00 mx.removeitem.begin {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:50:28.8066568+00:00 mx.removeitem.end {"Tag":"TestMachine_001.TestAlarm001.Alarm.TimeDeadband","ItemHandle":1} +2026-04-25T19:50:28.8066568+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:50:33.3113466+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:50:33.3182859+00:00 harness.stop {} diff --git a/captures/mxaccess-subscribe-intl-shortdesc.log b/captures/mxaccess-subscribe-intl-shortdesc.log new file mode 100644 index 0000000..f5c90ad --- /dev/null +++ b/captures/mxaccess-subscribe-intl-shortdesc.log @@ -0,0 +1,14 @@ +2026-04-25T19:50:16.4775660+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.ShortDesc"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:50:29.6903795+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T19:50:30.0320350+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:50:30.0339897+00:00 mx.additem.begin {"Tag":"TestChildObject.ShortDesc"} +2026-04-25T19:50:30.0350034+00:00 mx.additem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:50:30.0360192+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:50:30.0370363+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:50:35.0923687+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:50:35.0933660+00:00 mx.unadvise.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:50:35.0933660+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:50:35.0933660+00:00 mx.removeitem.end {"Tag":"TestChildObject.ShortDesc","ItemHandle":1} +2026-04-25T19:50:35.0943664+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:50:38.9751009+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:50:38.9810987+00:00 harness.stop {} diff --git a/captures/mxaccess-subscribe-scalars-after-buffered.log b/captures/mxaccess-subscribe-scalars-after-buffered.log new file mode 100644 index 0000000..900495a --- /dev/null +++ b/captures/mxaccess-subscribe-scalars-after-buffered.log @@ -0,0 +1,22 @@ +2026-04-25T20:37:03.3164353+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt","TestChildObject.TestBool"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:37:10.1215171+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:37:10.4780475+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:37:10.4790249+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:37:10.4800325+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:10.4809633+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:10.4820260+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:10.4820260+00:00 mx.additem.begin {"Tag":"TestChildObject.TestBool"} +2026-04-25T20:37:10.4820260+00:00 mx.additem.end {"Tag":"TestChildObject.TestBool","ItemHandle":2} +2026-04-25T20:37:10.4820260+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestBool","ItemHandle":2} +2026-04-25T20:37:10.4820260+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestBool","ItemHandle":2} +2026-04-25T20:37:15.4982060+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestBool","ItemHandle":2} +2026-04-25T20:37:15.4992060+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestBool","ItemHandle":2} +2026-04-25T20:37:15.4992060+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestBool","ItemHandle":2} +2026-04-25T20:37:15.4992060+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestBool","ItemHandle":2} +2026-04-25T20:37:15.4992060+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:15.4992060+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:15.4992060+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:15.4992060+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:15.4992060+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:37:19.3196147+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:37:19.3265494+00:00 harness.stop {} diff --git a/captures/mxaccess-subscribe-testint-after-buffered.log b/captures/mxaccess-subscribe-testint-after-buffered.log new file mode 100644 index 0000000..3e4930f --- /dev/null +++ b/captures/mxaccess-subscribe-testint-after-buffered.log @@ -0,0 +1,14 @@ +2026-04-25T20:36:39.0092192+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":3,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:36:45.9368837+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:36:46.2789082+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:36:46.2799697+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:36:46.2819005+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:36:46.2819005+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:36:46.2829004+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:36:49.3485582+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:36:49.3485582+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:36:49.3485582+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:36:49.3485582+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:36:49.3485582+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:36:53.3959155+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:36:53.4029144+00:00 harness.stop {} diff --git a/captures/mxaccess-subscribe-testint-no-buffered-sink.log b/captures/mxaccess-subscribe-testint-no-buffered-sink.log new file mode 100644 index 0000000..73c9981 --- /dev/null +++ b/captures/mxaccess-subscribe-testint-no-buffered-sink.log @@ -0,0 +1,14 @@ +2026-04-25T20:39:59.9399298+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness-NoBufferedSinkSub","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:40:06.8873138+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-NoBufferedSinkSub"} +2026-04-25T20:40:07.2379260+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:40:07.2389256+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:40:07.2399258+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:07.2409638+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:07.2419986+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:12.2966168+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:12.2966168+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:12.2966168+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:12.2966168+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:12.2966168+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:40:16.7063809+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:40:16.7113800+00:00 harness.stop {} diff --git a/captures/mxaccess-subscribe-testint-property-buffer.log b/captures/mxaccess-subscribe-testint-property-buffer.log new file mode 100644 index 0000000..3584153 --- /dev/null +++ b/captures/mxaccess-subscribe-testint-property-buffer.log @@ -0,0 +1,14 @@ +2026-04-25T21:06:03.9873891+00:00 harness.start {"Scenario":"subscribe","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt.property(buffer)"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":6,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:06:16.9127007+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T21:06:17.2613299+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:06:17.2613299+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt.property(buffer)"} +2026-04-25T21:06:17.2633227+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:17.2643175+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:17.2643175+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:23.2929779+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:23.2939770+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:23.2939770+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:23.2939770+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:23.2939770+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:06:26.6903619+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:06:26.6953640+00:00 harness.stop {} diff --git a/captures/mxaccess-suspend-advised-engine-scanstate.log b/captures/mxaccess-suspend-advised-engine-scanstate.log new file mode 100644 index 0000000..abd0cbb --- /dev/null +++ b/captures/mxaccess-suspend-advised-engine-scanstate.log @@ -0,0 +1,16 @@ +2026-04-25T20:23:11.0898116+00:00 harness.start {"Scenario":"suspend-advised","ClientName":"MxProtoTraceHarness","Tags":["DevAppEngine.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:23:24.2067602+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:23:24.5706413+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:23:24.5706413+00:00 mx.additem.begin {"Tag":"DevAppEngine.ScanState"} +2026-04-25T20:23:24.5726247+00:00 mx.additem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:24.5736910+00:00 mx.advise-supervisory.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:24.5736910+00:00 mx.advise-supervisory.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:25.5923542+00:00 mx.suspend.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:25.5943546+00:00 mx.suspend.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryPending","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-25T20:23:27.6426432+00:00 mx.unadvise.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:27.6426432+00:00 mx.unadvise.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:27.6426432+00:00 mx.removeitem.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:27.6435784+00:00 mx.removeitem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:23:27.6435784+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:23:30.0817080+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:23:30.0897031+00:00 harness.stop {} diff --git a/captures/mxaccess-suspend-advised-scanstate.log b/captures/mxaccess-suspend-advised-scanstate.log new file mode 100644 index 0000000..981cde2 --- /dev/null +++ b/captures/mxaccess-suspend-advised-scanstate.log @@ -0,0 +1,16 @@ +2026-04-25T20:23:11.0597480+00:00 harness.start {"Scenario":"suspend-advised","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:23:30.4547741+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:23:30.8158897+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:23:30.8163092+00:00 mx.additem.begin {"Tag":"TestChildObject.ScanState"} +2026-04-25T20:23:30.8179886+00:00 mx.additem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:30.8188843+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:30.8198853+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:31.8460043+00:00 mx.suspend.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:31.8489940+00:00 mx.suspend.end {"Tag":"TestChildObject.ScanState","ItemHandle":1,"Status":{"Success":-1,"Category":"MxCategoryPending","Source":"MxSourceRequestingLmx","Detail":0}} +2026-04-25T20:23:33.8579370+00:00 mx.unadvise.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:33.8589400+00:00 mx.unadvise.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:33.8589400+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:33.8589400+00:00 mx.removeitem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:23:33.8589400+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:23:40.2225934+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:23:40.2285535+00:00 harness.stop {} diff --git a/captures/mxaccess-suspend-engine-scanstate.log b/captures/mxaccess-suspend-engine-scanstate.log new file mode 100644 index 0000000..66d4cb3 --- /dev/null +++ b/captures/mxaccess-suspend-engine-scanstate.log @@ -0,0 +1,12 @@ +2026-04-25T20:21:31.6589282+00:00 harness.start {"Scenario":"suspend","ClientName":"MxProtoTraceHarness","Tags":["DevAppEngine.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:21:43.9280898+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:21:44.2816751+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:21:44.2827167+00:00 mx.additem.begin {"Tag":"DevAppEngine.ScanState"} +2026-04-25T20:21:44.2846746+00:00 mx.additem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:44.2846746+00:00 mx.suspend.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:44.3087202+00:00 mx.item.error {"Payload":{"Tag":"DevAppEngine.ScanState"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Suspend(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 187"} +2026-04-25T20:21:46.3677002+00:00 mx.removeitem.begin {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:46.3686973+00:00 mx.removeitem.end {"Tag":"DevAppEngine.ScanState","ItemHandle":1} +2026-04-25T20:21:46.3686973+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:21:59.8012035+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:21:59.8081752+00:00 harness.stop {} diff --git a/captures/mxaccess-suspend-scanstate.log b/captures/mxaccess-suspend-scanstate.log new file mode 100644 index 0000000..ad8601e --- /dev/null +++ b/captures/mxaccess-suspend-scanstate.log @@ -0,0 +1,12 @@ +2026-04-25T20:21:31.8064107+00:00 harness.start {"Scenario":"suspend","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.ScanState"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:21:50.0454573+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:21:50.3909200+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:21:50.3919214+00:00 mx.additem.begin {"Tag":"TestChildObject.ScanState"} +2026-04-25T20:21:50.3929462+00:00 mx.additem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:50.3939309+00:00 mx.suspend.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:50.4119299+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.ScanState"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Suspend(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 187"} +2026-04-25T20:21:52.4532736+00:00 mx.removeitem.begin {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:52.4542783+00:00 mx.removeitem.end {"Tag":"TestChildObject.ScanState","ItemHandle":1} +2026-04-25T20:21:52.4542783+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:21:59.8242138+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:21:59.8312667+00:00 harness.stop {} diff --git a/captures/mxaccess-suspend-testint.log b/captures/mxaccess-suspend-testint.log new file mode 100644 index 0000000..ea4eabb --- /dev/null +++ b/captures/mxaccess-suspend-testint.log @@ -0,0 +1,12 @@ +2026-04-25T19:37:25.9858086+00:00 harness.start {"Scenario":"suspend","ClientName":"MxSuspendCompare","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:37:32.7744786+00:00 mx.register.begin {"ClientName":"MxSuspendCompare"} +2026-04-25T19:37:33.1256353+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:37:33.1266431+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T19:37:33.1286709+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:33.1296587+00:00 mx.suspend.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:33.1497257+00:00 mx.item.error {"Payload":{"Tag":"TestChildObject.TestInt"},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.Suspend(Int32 hLMXServerHandle, Int32 hItem, MxStatus& pMxStatus)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 139"} +2026-04-25T19:37:34.1751555+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:34.1751555+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T19:37:34.1761569+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:37:37.9215642+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:37:37.9265621+00:00 harness.stop {} diff --git a/captures/mxaccess-user-map-administrator.log b/captures/mxaccess-user-map-administrator.log new file mode 100644 index 0000000..b0be47a --- /dev/null +++ b/captures/mxaccess-user-map-administrator.log @@ -0,0 +1,8 @@ +2026-04-25T19:29:12.4882330+00:00 harness.start {"Scenario":"user-map","ClientName":"MxUserMapCompare","Tags":[],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"9222FBBA-53F4-457E-8B37-C93A9A250B4A","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:29:19.2654493+00:00 mx.register.begin {"ClientName":"MxUserMapCompare"} +2026-04-25T19:29:19.6397189+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:29:19.6417172+00:00 mx.user-map.begin {"UserGuid":"9222FBBA-53F4-457E-8B37-C93A9A250B4A"} +2026-04-25T19:29:19.6437141+00:00 mx.user-map.end {"UserGuid":"9222FBBA-53F4-457E-8B37-C93A9A250B4A","UserId":1} +2026-04-25T19:29:20.6707286+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:29:24.4953567+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:29:24.5003805+00:00 harness.stop {} diff --git a/captures/mxaccess-user-map-defaultuser.log b/captures/mxaccess-user-map-defaultuser.log new file mode 100644 index 0000000..513ca20 --- /dev/null +++ b/captures/mxaccess-user-map-defaultuser.log @@ -0,0 +1,8 @@ +2026-04-25T19:29:49.1207580+00:00 harness.start {"Scenario":"user-map","ClientName":"MxUserMapCompare","Tags":[],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"F4A9B907-6E72-48AE-83B5-BBDE918C890F","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:29:55.8900468+00:00 mx.register.begin {"ClientName":"MxUserMapCompare"} +2026-04-25T19:29:56.2376520+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:29:56.2397277+00:00 mx.user-map.begin {"UserGuid":"F4A9B907-6E72-48AE-83B5-BBDE918C890F"} +2026-04-25T19:29:56.2407604+00:00 mx.user-map.end {"UserGuid":"F4A9B907-6E72-48AE-83B5-BBDE918C890F","UserId":1} +2026-04-25T19:29:57.2665674+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:30:00.9997513+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:30:01.0057480+00:00 harness.stop {} diff --git a/captures/mxaccess-user-map-invalid.log b/captures/mxaccess-user-map-invalid.log new file mode 100644 index 0000000..66f0e8b --- /dev/null +++ b/captures/mxaccess-user-map-invalid.log @@ -0,0 +1,8 @@ +2026-04-25T19:30:13.2331874+00:00 harness.start {"Scenario":"user-map","ClientName":"MxUserMapCompare","Tags":[],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"00000000-0000-0000-0000-000000000000","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:30:20.1194903+00:00 mx.register.begin {"ClientName":"MxUserMapCompare"} +2026-04-25T19:30:20.4850985+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:30:20.4870900+00:00 mx.user-map.begin {"UserGuid":"00000000-0000-0000-0000-000000000000"} +2026-04-25T19:30:20.4891061+00:00 mx.user-map.end {"UserGuid":"00000000-0000-0000-0000-000000000000","UserId":1} +2026-04-25T19:30:21.5178076+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:30:25.4013414+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:30:25.4059652+00:00 harness.stop {} diff --git a/captures/mxaccess-user-map-systemengineer.log b/captures/mxaccess-user-map-systemengineer.log new file mode 100644 index 0000000..ecb2bf8 --- /dev/null +++ b/captures/mxaccess-user-map-systemengineer.log @@ -0,0 +1,8 @@ +2026-04-25T19:29:36.9268584+00:00 harness.start {"Scenario":"user-map","ClientName":"MxUserMapCompare","Tags":[],"WriteType":"string","WriteValue":"","WriteValues":[],"UserId":0,"CurrentUserId":0,"VerifierUserId":0,"UserGuid":"626A355F-737E-45F8-9740-43372220DEAB","WriteTimestamp":"","WriteDelayMilliseconds":750,"WriteIntervalMilliseconds":500,"DurationSeconds":1,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T19:29:43.7704580+00:00 mx.register.begin {"ClientName":"MxUserMapCompare"} +2026-04-25T19:29:44.1270576+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T19:29:44.1290624+00:00 mx.user-map.begin {"UserGuid":"626A355F-737E-45F8-9740-43372220DEAB"} +2026-04-25T19:29:44.1310575+00:00 mx.user-map.end {"UserGuid":"626A355F-737E-45F8-9740-43372220DEAB","UserId":1} +2026-04-25T19:29:45.1520670+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T19:29:48.8911772+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T19:29:48.8961757+00:00 harness.stop {} diff --git a/captures/mxaccess-write-invalid-reference.log b/captures/mxaccess-write-invalid-reference.log new file mode 100644 index 0000000..3fa2641 --- /dev/null +++ b/captures/mxaccess-write-invalid-reference.log @@ -0,0 +1,16 @@ +2026-04-25T21:16:29.2333275+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["NoSuchObject_999.NoSuchAttr"],"ItemContext":"","WriteType":"int","WriteValue":"144","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:16:41.6243352+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T21:16:41.9667958+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:16:41.9671721+00:00 mx.additem.begin {"Tag":"NoSuchObject_999.NoSuchAttr"} +2026-04-25T21:16:41.9686660+00:00 mx.additem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:16:41.9695798+00:00 mx.advise-supervisory.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:16:41.9702687+00:00 mx.advise-supervisory.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:16:43.0090024+00:00 mx.write.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"144"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:16:43.0140041+00:00 mx.write.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:16:48.0260859+00:00 mx.unadvise.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:16:48.0260859+00:00 mx.unadvise.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:16:48.0260859+00:00 mx.removeitem.begin {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:16:48.0260859+00:00 mx.removeitem.end {"Tag":"NoSuchObject_999.NoSuchAttr","ItemHandle":1} +2026-04-25T21:16:48.0270808+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:16:51.0004308+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:16:51.0064261+00:00 harness.stop {} diff --git a/captures/mxaccess-write-testint-after-buffered.log b/captures/mxaccess-write-testint-after-buffered.log new file mode 100644 index 0000000..657aa42 --- /dev/null +++ b/captures/mxaccess-write-testint-after-buffered.log @@ -0,0 +1,16 @@ +2026-04-25T20:37:32.3782804+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"130","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:37:39.0984611+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T20:37:39.4462822+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:37:39.4472862+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:37:39.4482839+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:39.4492849+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:39.4502842+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:40.4815725+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"130"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T20:37:40.4842837+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:37:45.4912168+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:45.4912168+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:45.4912168+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:45.4912168+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:37:45.4918132+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:37:49.1946924+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:37:49.2006044+00:00 harness.stop {} diff --git a/captures/mxaccess-write-testint-fresh-long.log b/captures/mxaccess-write-testint-fresh-long.log new file mode 100644 index 0000000..55ba6e1 --- /dev/null +++ b/captures/mxaccess-write-testint-fresh-long.log @@ -0,0 +1,16 @@ +2026-04-25T20:38:08.5099981+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-Fresh130","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"131","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":2000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":15,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:38:15.2132083+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-Fresh130"} +2026-04-25T20:38:15.5669561+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:38:15.5679931+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:38:15.5699975+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:15.5709658+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:15.5709658+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:17.6196262+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"131"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T20:38:17.6225621+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:38:32.6520502+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:32.6520502+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:32.6520502+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:32.6520502+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:38:32.6529920+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:38:36.2893635+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:38:36.2963611+00:00 harness.stop {} diff --git a/captures/mxaccess-write-testint-no-buffered-sink.log b/captures/mxaccess-write-testint-no-buffered-sink.log new file mode 100644 index 0000000..80c8630 --- /dev/null +++ b/captures/mxaccess-write-testint-no-buffered-sink.log @@ -0,0 +1,16 @@ +2026-04-25T20:40:00.0438648+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness-NoBufferedSink","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"int","WriteValue":"133","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T20:40:13.2637977+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-NoBufferedSink"} +2026-04-25T20:40:13.6134588+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T20:40:13.6134588+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T20:40:13.6154599+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:13.6164646+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:13.6174605+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:14.6437873+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"133"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T20:40:14.6477297+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T20:40:19.7016635+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:19.7016635+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:19.7016635+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:19.7016635+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T20:40:19.7016635+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T20:40:23.3015729+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T20:40:23.3076361+00:00 harness.stop {} diff --git a/captures/mxaccess-write-testint-property-buffer.log b/captures/mxaccess-write-testint-property-buffer.log new file mode 100644 index 0000000..251713b --- /dev/null +++ b/captures/mxaccess-write-testint-property-buffer.log @@ -0,0 +1,16 @@ +2026-04-25T21:06:03.9054044+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt.property(buffer)"],"ItemContext":"","WriteType":"int","WriteValue":"136","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:06:10.7549872+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T21:06:11.1373339+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:06:11.1373339+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt.property(buffer)"} +2026-04-25T21:06:11.1394701+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:11.1394701+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:11.1403349+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:12.1722651+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.Int32","Value":"136"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:06:12.1752634+00:00 mx.write.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:06:17.1909412+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:17.1911035+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:17.1911035+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:17.1911035+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt.property(buffer)","ItemHandle":1} +2026-04-25T21:06:17.1916028+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:06:20.7536324+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:06:20.7596361+00:00 harness.stop {} diff --git a/captures/mxaccess-write-testint-wrong-type.log b/captures/mxaccess-write-testint-wrong-type.log new file mode 100644 index 0000000..91d0edc --- /dev/null +++ b/captures/mxaccess-write-testint-wrong-type.log @@ -0,0 +1,16 @@ +2026-04-25T21:16:29.2223122+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["TestChildObject.TestInt"],"ItemContext":"","WriteType":"string","WriteValue":"not_an_int","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:16:35.5024492+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T21:16:35.8460325+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:16:35.8469965+00:00 mx.additem.begin {"Tag":"TestChildObject.TestInt"} +2026-04-25T21:16:35.8480041+00:00 mx.additem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:16:35.8489926+00:00 mx.advise-supervisory.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:16:35.8501543+00:00 mx.advise-supervisory.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:16:36.8783989+00:00 mx.write.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.String","Value":"not_an_int"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:16:36.8813295+00:00 mx.write.end {"Tag":"TestChildObject.TestInt","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:16:41.8883849+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:16:41.8883849+00:00 mx.unadvise.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:16:41.8883849+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:16:41.8883849+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestInt","ItemHandle":1} +2026-04-25T21:16:41.8893852+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:16:50.9544060+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:16:50.9604451+00:00 harness.stop {} diff --git a/captures/mxaccess-write-timeoflastdeploy.log b/captures/mxaccess-write-timeoflastdeploy.log new file mode 100644 index 0000000..d6618f1 --- /dev/null +++ b/captures/mxaccess-write-timeoflastdeploy.log @@ -0,0 +1,16 @@ +2026-04-25T21:16:29.2957464+00:00 harness.start {"Scenario":"write","ClientName":"MxProtoTraceHarness","Tags":["DevPlatform.GR.TimeOfLastDeploy"],"ItemContext":"","WriteType":"datetime","WriteValue":"2026-04-25T17:15:00Z","WriteValues":[],"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"UserGuid":"","AuthUser":"","WriteTimestamp":"","WriteDelayMilliseconds":1000,"WriteIntervalMilliseconds":500,"BufferedUpdateInterval":1000,"DurationSeconds":5,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T21:16:47.7587386+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness"} +2026-04-25T21:16:48.1130803+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T21:16:48.1140855+00:00 mx.additem.begin {"Tag":"DevPlatform.GR.TimeOfLastDeploy"} +2026-04-25T21:16:48.1152128+00:00 mx.additem.end {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1} +2026-04-25T21:16:48.1160160+00:00 mx.advise-supervisory.begin {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1} +2026-04-25T21:16:48.1170192+00:00 mx.advise-supervisory.end {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1} +2026-04-25T21:16:49.1448022+00:00 mx.write.begin {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1,"WriteIndex":0,"Value":{"Type":"System.DateTime","Value":"04/25/2026 13:15:00"},"UserId":1,"CurrentUserId":1,"VerifierUserId":0,"WriteTimestamp":""} +2026-04-25T21:16:49.1480077+00:00 mx.write.end {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1,"WriteIndex":0} +2026-04-25T21:16:54.1628356+00:00 mx.unadvise.begin {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1} +2026-04-25T21:16:54.1628356+00:00 mx.unadvise.end {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1} +2026-04-25T21:16:54.1628356+00:00 mx.removeitem.begin {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1} +2026-04-25T21:16:54.1628356+00:00 mx.removeitem.end {"Tag":"DevPlatform.GR.TimeOfLastDeploy","ItemHandle":1} +2026-04-25T21:16:54.1628356+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T21:16:54.3294531+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T21:16:54.3344529+00:00 harness.stop {} diff --git a/captures/probe-add-remove.log b/captures/probe-add-remove.log new file mode 100644 index 0000000..7248ac2 --- /dev/null +++ b/captures/probe-add-remove.log @@ -0,0 +1,12 @@ +2026-04-25T04:30:26.0530580+00:00 harness.start {"Scenario":"add-remove","ClientName":"MxProtoTraceHarness-probe","Tags":["TestChildObject.TestString"],"DurationSeconds":2,"ProcessBitness":"x86","Runtime":"4.0.30319.42000"} +2026-04-25T04:30:33.3999369+00:00 mx.register.begin {"ClientName":"MxProtoTraceHarness-probe"} +2026-04-25T04:30:33.7898900+00:00 mx.register.end {"SessionHandle":1} +2026-04-25T04:30:33.7898900+00:00 mx.additem.begin {"Tag":"TestChildObject.TestString"} +2026-04-25T04:30:33.7918403+00:00 mx.additem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T04:30:35.8138623+00:00 mx.unadvise.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T04:30:35.8358627+00:00 mx.unadvise.error {"Payload":{"Tag":"TestChildObject.TestString","ItemHandle":1},"Exception":"System.ArgumentException","Message":"Value does not fall within the expected range.","HResult":"0x80070057","StackTrace":" at ArchestrA.MxAccess.LMXProxyServerClass.UnAdvise(Int32 hLMXServerHandle, Int32 hItem)\r\n at MxTraceHarness.Program.Main(String[] args) in C:\\Users\\dohertj2\\Desktop\\mxaccess\\src\\MxTraceHarness\\Program.cs:line 112"} +2026-04-25T04:30:35.8368600+00:00 mx.removeitem.begin {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T04:30:35.8368600+00:00 mx.removeitem.end {"Tag":"TestChildObject.TestString","ItemHandle":1} +2026-04-25T04:30:35.8368600+00:00 mx.unregister.begin {"SessionHandle":1} +2026-04-25T04:30:39.8366003+00:00 mx.unregister.end {"SessionHandle":1} +2026-04-25T04:30:39.8415337+00:00 harness.stop {} diff --git a/design/00-overview.md b/design/00-overview.md new file mode 100644 index 0000000..bbd5775 --- /dev/null +++ b/design/00-overview.md @@ -0,0 +1,127 @@ +# Overview + +## Mission + +Build a **native Rust replacement for AVEVA/Wonderware MXAccess** that gives Rust applications byte-equivalent access to the AVEVA System Platform without depending on the 32-bit `LmxProxy.dll` / `NmxSvcps.dll` interop chain. + +The replacement ships in two layers: + +1. **Raw layer** — a faithful Rust reimplementation of the wire protocol (codec + transport + session). Every byte over the wire matches what native MXAccess sends, validated against Frida-captured baselines. The raw layer's API is `unsafe`-free and Tokio-aware (it uses Tokio for I/O) but its codec is pure and runtime-agnostic. +2. **Async layer** — an idiomatic Tokio façade on top of the raw layer: typed errors, `Send + Sync` handles, `async fn` operations, structured subscription `Stream`s, drop and `CancellationToken` cancellation, `tracing` instrumentation. This is what most consumers reach for. + +Both layers ship in one Cargo workspace; the raw crates are useful on their own for power users who need byte-level control or who are integrating into a non-standard runtime. + +## Why two layers + +Inverting the order would compromise correctness. If the public API is async-first, the protocol behavior gets shaped to fit the API. We saw the alternative work in the .NET reference: every async method bottoms out in a sync codec call (`NmxTransferEnvelopeTemplate.Encode` — see `src/MxNativeCodec/NmxTransferEnvelopeTemplate.cs:33`) because the wire format has no "async" — it has bytes. Putting bytes first lets us validate against captures with a pure round-trip test, then layer ergonomics on top. + +The split also maps cleanly onto the existing .NET tree: + +| .NET project | Rust analogue (raw) | Rust analogue (async) | +|---|---|---| +| `MxNativeCodec` | `mxaccess-codec` | (codec is shared) | +| `MxNativeClient` (DCE/RPC + NTLM + IRemUnknown + INmxService2) | `mxaccess-rpc`, `mxaccess-nmx`, `mxaccess-callback` | (transport is shared) | +| `MxNativeClient` (`MxNativeSession`, `MxNativeCompatibilityServer`) | (raw layer ends at transport) | `mxaccess` (async session, optional `mxaccess-compat` shim) | +| `MxAsbClient` | `mxaccess-asb` (codec+transport) | `mxaccess` (async ASB session) | + +The session-level state in `MxNativeSession` (subscription registry, correlation-id bookkeeping, recovery state, callback routing — `src/MxNativeClient/MxNativeSession.cs:90-125, 312-351, 573`) lives in the async `mxaccess` crate, **not** in `mxaccess-nmx`. The raw `mxaccess-nmx` crate exposes the `INmxService2` client + envelope codec + a low-level register/advise/write surface so power users *can* drive it directly (per the "byte-level control" promise above) — but it does not own correlation or recovery, because those are session-level concerns that span both transports. A consumer using `mxaccess-nmx` standalone is responsible for its own correlation-id table. + +## Architectural principles + +These are non-negotiable. They are informed by what went wrong in the reverse-engineering effort and what the existing tree gets right. + +1. **Do not fabricate protocol behavior.** Every wire shape in the Rust port must be backed by a Frida capture, a decompiled artifact, or a live probe. When extending, cite the evidence — and capture a new fixture if one does not exist. The native codec deliberately does not zero "unknown" bytes; the Rust port mirrors this. +2. **Round-trip preservation.** Encoder and decoder must be bijective on observed traffic. Codec types keep the original byte buffer alongside parsed fields so unknown bytes survive a parse + re-encode. `NmxTransferEnvelopeTemplate` and `ObservedWriteBodyTemplate` in the .NET reference exist for this reason — Rust analogues must too. +3. **No `unsafe` in the public API surface.** Public types and trait methods across all crates are safe. Internal `unsafe` is permitted but confined to `mxaccess-rpc`, where COM activation / `IUnknown` calls via the `windows` crate are unavoidable (see principle 6) — every such call must be wrapped in a safe abstraction at the crate boundary. Codec crates (`mxaccess-codec`, `mxaccess-asb-nettcp`) remain `#![forbid(unsafe_code)]`: no raw pointers, no `transmute`, multi-byte field access via `bytes::Buf` / `byteorder`, memory layout never derived from `#[repr(C)]`. +4. **x64 only.** The whole point of the replacement is escaping the 32-bit `NmxSvcps.dll` proxy/stub. The Rust workspace targets `x86_64-pc-windows-msvc` (and optionally `x86_64-pc-windows-gnu`). No 32-bit code paths anywhere; cross-compile to `i686-*` is unsupported by design. +5. **Windows-first, cross-platform-aware.** NTLM, DPAPI, and Galaxy SQL Server are Windows realities for AVEVA deployments. Crate boundaries are drawn so the codec, ASB net.tcp framing (MC-NMF + MC-NBFX/NBFS — *not* SOAP/XML on the wire; see `src/MxAsbClient/MxAsbDataClient.cs:660-685` where `NetTcpBinding(SecurityMode.None)` selects the default `BinaryMessageEncodingBindingElement`), and protocol logic compile on Linux even when the platform-bound transports do not. Cross-platform reach is a stretch goal — see `70-risks-and-open-questions.md`. +6. **COM via `windows-rs`** when COM types are unavoidable: OBJREF building, IPID/OXID/OID handling, GUID literals. For raw bytes (NDR encoding, NMX envelope, write bodies) we hand-roll — the surface is small enough that a generated stub would obscure the wire and compromise rule 1. +7. **Galaxy access is direct SQL.** No LMX. The Rust port queries `dbo.gobject` / `dbo.instance` / `dbo.dynamic_attribute` (and the package-inheritance CTE) the same way `GalaxyRepositoryTagResolver.cs` does (see `src/MxNativeClient/GalaxyRepositoryTagResolver.cs:215, 253, 257`), then computes CRC-16/IBM signatures locally to build `MxReferenceHandle`s. **Note**: `CLAUDE.md` lists the SQL surface as `aa_attribute` / `aa_object` / `mx_attribute_category` — that is incorrect. Those tables do not exist in the resolver source; the actual tables are `dbo.gobject` / `dbo.instance` / `dbo.dynamic_attribute` as cited above. Treat this design doc as authoritative over `CLAUDE.md` for SQL surface, and update `CLAUDE.md` next time it is touched. +8. **One Tokio runtime, multi-thread by default.** The async layer assumes `#[tokio::main(flavor = "multi_thread")]` semantics; current_thread is supported but not the default. No `tokio::spawn` from inside `Drop`; no blocking calls inside `async fn`. Drop-based cancellation is implemented by sending a cleanup request (e.g. `UnAdvise` for a `Subscription`, `RemoveSubscriberEngine`/`UnregisterEngine` for the last `Session` clone) over a `tokio::sync::mpsc` or `tokio::sync::oneshot` channel to a long-lived connection task that was spawned at session construction time. The connection task's lifetime exceeds any individual `Subscription`, so `Drop` itself never spawns and never blocks. This mirrors the .NET reference's synchronous teardown path (`MxNativeSession.cs:483-507`), where `UnAdvise` per subscription, `RemoveSubscriberEngine` per publisher, and `UnregisterEngine` are all invoked from a single dispose-time loop on a pre-existing service handle. +9. **Two transports, one façade.** `Session` is parameterised over a `Transport` trait. `NmxTransport` and `AsbTransport` are independent implementations; capability is queryable. A `Session` constructed with a single transport returns `Error::Unsupported` for operations that transport cannot reach (e.g. `Session::activate(item)` on an ASB-only `Session` — ASB has no `Activate`/`Suspend`/supervisory-advise surface; see non-goal 5). A `Session` constructed via the dual-transport builder (`Session::builder().with_nmx(...).with_asb(...).build()`) routes callback-only operations to NMX automatically and the regular tag data plane to ASB, matching the deployment shape recommended in `docs/ASB-Native-Integration-Decision.md`. Routing is static at session-build time; `Session` does not silently activate a fallback transport at runtime. +10. **Status is data, errors are exceptional.** A non-Ok `MxStatus` on a returned data change is data the caller inspects, not a `Result::Err`. A non-Ok status returned from a synchronous-shaped operation (`write`, `read`) **is** an `Err`. This split mirrors the .NET reference and is the only sensible mapping; see `50-error-model.md`. + +## Non-goals (V1) + +- WinSXS-style side-by-side install with the native MXAccess COM proxies. +- 32-bit clients. The Rust crates do not build for `i686-pc-windows-msvc`. +- A drop-in COM-visible `LMXProxyServer.LMXProxyServer` ProgId. The MXAccess shape is replicated as a Rust API; consumers that want to expose it as COM register a separate shim crate (`mxaccess-compat-com`, deferred to post-V1). +- Linux first-class support in V1. Crate boundaries do not preclude Linux later, but Galaxy SQL + DPAPI mean V1 ships Windows-only. +- ASB feature parity with NMX. ASB cannot reach callback-only semantics (Activate/Suspend, supervisory advise, OperationComplete). The Rust port routes those to NMX; ASB owns the regular tag data plane only. See `docs/ASB-Native-Integration-Decision.md`. + +## At-a-glance architecture + +``` ++----------------------------------------------------------------------+ +| Application (Rust, async) | ++----------------------------------------------------------------------+ + | + v async fn / Stream ++----------------------------------------------------------------------+ +| mxaccess (async layer) | +| - Session, Subscription, DataChange, MxValue | +| - trait Transport { connect, register, write, advise, ... } | +| (read is NOT a transport primitive — it is a session-level helper | +| composed from subscribe + first-result + drop, mirroring | +| MxNativeSession.ReadAsync at src/MxNativeClient/MxNativeSession.cs:312-359) | +| - Drop-cancellable, tracing-instrumented, typed Error | ++----------------------------------------------------------------------+ + | | + | NmxTransport | AsbTransport + v v ++---------------------------------+ +----------------------------------+ +| mxaccess-nmx (NMX raw) | | mxaccess-asb (ASB raw) | +| INmxService2 client + envelope | | IASBIDataV2 client + variant | ++---------------------------------+ +----------------------------------+ + | | | + v v v ++--------------+ +------------------------+ +--------------------+ +| mxaccess-rpc | | mxaccess-callback | | mxaccess-asb-nettcp| +| DCE/RPC PDU | | INmxSvcCallback server | | MC-NMF framing + | +| + NTLMv2 SSP | | + IRemUnknown | | MC-NBFX/NBFS binary| +| | | | | + DH/HMAC/AES | ++--------------+ +------------------------+ +--------------------+ + | + v ++----------------------------------------------------------------------+ +| mxaccess-codec (pure, no I/O) | +| MxReferenceHandle, NmxTransferEnvelope, write/advise/subscribe | +| bodies, MxStatus, MxValueKind, MxDataType, ASB Variant | ++----------------------------------------------------------------------+ + | | + v v ++--------------------+ +-------------------+ +| mxaccess-galaxy | | windows (crate) | +| SQL tag resolver | | OBJREF/IID/OXID | ++--------------------+ +-------------------+ +``` + +## Phasing summary + +Detailed roadmap in `60-roadmap.md`. At a glance: + +- **M0** — Workspace skeleton, CI, fixture infrastructure. +- **M1** — `mxaccess-codec` complete; round-trips every Frida fixture. +- **M2** — `mxaccess-rpc` + `mxaccess-callback`: live `RegisterEngine2` against `NmxSvc.exe`. +- **M3** — `mxaccess-nmx` + `mxaccess-galaxy`: live scalar write/subscribe. +- **M4** — `mxaccess` async façade over NMX. End-to-end consumer-grade API. +- **M5** — `mxaccess-asb` + `mxaccess-asb-nettcp`: ASB transport plugged into the same `Session`. +- **M6** — `mxaccess-compat` + production hardening (recovery, perf, observability). + +The order is chosen so each milestone's exit criterion is independently observable: codec parity (M1), live RPC (M2), live data (M3), consumer API (M4), alternate transport (M5), shipping (M6). + +## Adjacent tooling (`C:\Users\dohertj2\Desktop\wwtools`) + +A sibling toolkit at `C:\Users\dohertj2\Desktop\wwtools` collects WW/AVEVA-adjacent CLIs and reference material. Several are load-bearing for this project — they replace credentials we would otherwise inline, and provide the comparison harnesses M2–M5 need. See `wwtools/CLAUDE.md` for the authoritative index. + +| Tool | Path | Used by Rust port for | +|---|---|---| +| `secrets/` | `wwtools/secrets/` | **Credential retrieval.** Self-hosted Infisical CLI (`infisical.exe`) + `Get-Secret.ps1` PowerShell helper backed by `https://infisical.dohertylan.com`. Replaces the DPAPI-only path in `mxaccess-asb` (R9): live probes and CI fetch the ASB shared secret, NTLM credentials, Galaxy DB connection string, etc. via `secret ` instead of inlining plaintext. The `AsbCredentials::shared_secret(&[u8])` constructor pairs with this — wire it via `secret ASB_SHARED_SECRET` in probe scripts. | +| `mxaccesscli/` | `wwtools/mxaccesscli/` | **Parity harness.** `.NET Framework 4.8 / x86` CLI built on `LMXProxyServerClass` — i.e. the original 32-bit MxAccess COM proxy. Use as a third comparison point for cross-implementation parity (alongside `src/MxNativeClient.Probe`). Read/write/subscribe semantics here are the proven ground truth for what consumers expect from the Rust port's compat shim. | +| `graccesscli/` | `wwtools/graccesscli/` | **Galaxy configuration setup.** `.NET Framework 4.8 / x86` CLI over GRAccess COM. Use to provision test objects/attributes for live probes (M3+) without manual IDE clicks — scriptable galaxy setup for CI and reproducible test fixtures. | +| `grdb/` | `wwtools/grdb/` | **Galaxy SQL schema reference.** Cross-check `mxaccess-galaxy`'s `tiberius` queries against the documented schema, hierarchy queries, and contained-name ↔ tag-name translation rules. M3 schema correctness is verified here before M3 lands. | +| `aalogcli/` | `wwtools/aalogcli/` | **Debugging.** Reads System Platform `.aaLGX` binary logs. Use to correlate Rust-port runtime errors with what NmxSvc.exe / LMX adapters log on the System Platform side. | +| `histdb/` | `wwtools/histdb/` | **Out of scope for V1** but documented here so the Rust port doesn't accidentally re-implement Historian retrieval in `mxaccess`. The tag data plane (NMX/ASB) and the historical-data plane (`INSQL`, `wwXxx` extensions) are distinct subsystems. | +| `aot/` | `wwtools/aot/` | Reference material (ArchestrA Object Toolkit dev guide, API reference). Background only — the Rust port does not consume AOT primitives directly; the wire shapes are observed end-to-end in `captures/`. | + +**Operational note:** `wwtools/secrets/secret ` is the canonical credential-fetch path on this workstation. The Rust port's `live`-feature integration tests should source `MX_GALAXY_DB`, `MX_NMX_HOST`, `MX_ASB_SHARED_SECRET`, etc. via `secret` invocations in the test setup script, not via inline plaintext or `.env` files committed to the repo. This supersedes the "inline credentials are fine for the maintainer's workstation" stance implied by the M2/M3 live-probe DoDs in `60-roadmap.md`. diff --git a/design/10-raw-layer.md b/design/10-raw-layer.md new file mode 100644 index 0000000..d2bf307 --- /dev/null +++ b/design/10-raw-layer.md @@ -0,0 +1,441 @@ +# Raw layer + +The raw layer is the byte-accurate Rust reimplementation of MXAccess. It lives in three sub-layers: + +``` +mxaccess-codec pure encoding/decoding, no I/O + | + v +mxaccess-rpc DCE/RPC + NTLMv2 + OBJREF + OXID resolution +mxaccess-callback INmxSvcCallback RPC server (callback exporter) + | + v +mxaccess-nmx INmxService2 client + Galaxy SQL resolver +mxaccess-asb IASBIDataV2 client (alternate data plane) +``` + +Codec is pure and runtime-agnostic. Transport crates use Tokio for I/O. Neither layer exposes Tokio in the public types except through `async fn` signatures. + +## `mxaccess-codec` + +Pure protocol codec. No I/O. Compiles on every Rust target including non-Windows. Allocations only where the protocol mandates variable-length fields (string values, array payloads, registration bodies). + +### `MxReferenceHandle` (20 bytes) + +Source: `src/MxNativeCodec/MxReferenceHandle.cs:5–120`. + +```rust +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub struct MxReferenceHandle { + pub galaxy_id: u8, + // Byte 1 is reserved (always 0). Not exposed publicly. + pub platform_id: u16, + pub engine_id: u16, + pub object_id: u16, + object_signature: u16, // private — CRC-16/IBM of lowercase UTF-16LE object tag + pub primitive_id: i16, + pub attribute_id: i16, + pub property_id: i16, + attribute_signature: u16, // private — CRC-16/IBM of lowercase UTF-16LE attribute name + pub attribute_index: i16, // -1 array, 0 scalar +} + +impl MxReferenceHandle { + pub const ENCODED_LEN: usize = 20; + + /// The only constructor that derives signatures from names. Recomputes both + /// `object_signature` and `attribute_signature` so they cannot desync from + /// the names that produced them. + pub fn from_names( + galaxy_id: u8, + platform_id: u16, + engine_id: u16, + object_id: u16, + object_tag_name: &str, + primitive_id: i16, + attribute_id: i16, + property_id: i16, + attribute_name: &str, + is_array: bool, + ) -> Self; + + /// Parse from a captured 20-byte handle. Signatures come straight from the + /// wire; the caller is asserting the bytes are authoritative. + pub fn parse(bytes: &[u8; Self::ENCODED_LEN]) -> Self; + pub fn encode(self, dst: &mut [u8; Self::ENCODED_LEN]); + + /// Read-only accessors — there is intentionally no `set_*_signature`. + pub fn object_signature(self) -> u16 { self.object_signature } + pub fn attribute_signature(self) -> u16 { self.attribute_signature } + + /// Returns a new handle with `attribute_name`'s signature recomputed, + /// preserving every other field. Use this instead of mutating in place. + pub fn with_attribute_name(self, attribute_name: &str) -> Self; + pub fn with_object_tag_name(self, object_tag_name: &str) -> Self; + + pub fn compute_name_signature(name: &str) -> u16; +} +``` + +`object_signature` and `attribute_signature` are **derived** values and are the only fields not exposed `pub`. There is no setter that takes a raw `u16` signature without a corresponding name — the only way to update a signature is to hand a name in, which forces a recomputation. This keeps `(object_tag_name, object_signature)` and `(attribute_name, attribute_signature)` consistent by construction. (The .NET reference is more permissive — `MxReferenceHandle` is a record with public init-only signature fields — but mirroring that in Rust would invite caller bugs that the wire format silently rejects with `0x80070057`.) + +`compute_name_signature` mirrors the .NET `ComputeNameSignature` exactly. For each `char` in `name.to_lowercase()`, run the byte sequence in UTF-16LE order through `update_crc16_ibm` (poly `0xa001`, initial `0`, low byte first then high byte). + +⚠ **Unicode lowercasing must match `String.ToLowerInvariant()` semantics, NOT `str::to_lowercase()`.** The .NET `ToLowerInvariant()` uses the culture-invariant Unicode case map (`CultureInfo.InvariantCulture.TextInfo.ToLower`, ICU-derived). Rust `str::to_lowercase()` is **locale-dependent** in spirit (it follows Unicode's special-casing rules, e.g. Turkish dotless-i is mapped per the Default Casing algorithm with no tailoring, which is *close to* but not identical to `Invariant`). Worse, `unicase::Ascii::to_lowercase` is **ASCII-only** and silently passes non-ASCII characters through unchanged — for any tag containing a non-ASCII character it will produce a CRC that disagrees with the .NET reference. The Rust port should: +1. Use `icu_casemap::CaseMapper::lowercase_to_string` (ICU4X) configured for `Locale::UND` / Root locale to match `Invariant`, **or** hand-implement Unicode `Default_Lowercase` via the UCD `SpecialCasing.txt` and `UnicodeData.txt` `Lowercase_Mapping` field with no language tailoring. +2. **Not** use `str::to_lowercase()` (locale-flavored) and **not** use `unicase::Ascii::to_lowercase` (ASCII-only — destroys non-ASCII parity). +3. Treat this as a divergence-test requirement: `mxaccess-codec/tests/` must include fixture tag names containing characters whose ASCII-vs-invariant mapping differs (Turkish dotted-İ → `i̇`, German ß → `ss` is *not* applied by `ToLowerInvariant` so `ß → ß`, Greek Σ → σ — confirm against `MxReferenceHandle.cs:47–59` outputs from the .NET reference and assert byte-equal CRC). + +### `NmxTransferEnvelope` (46 bytes) + +Source: `src/MxNativeCodec/NmxTransferEnvelope.cs:5–104`. + +```rust +#[derive(Debug, Clone, Copy)] +pub struct NmxTransferEnvelope { + pub version: u16, // 1 + pub inner_length: i32, // body.len() - 46 + pub reserved6_10: [u8; 4], // bytes 6..10; preserved verbatim by Rust port — see note below + pub message_kind: NmxTransferMessageKind, // 1=Metadata, 2=ItemControl, 3=Write + pub source_galaxy_id: i32, + pub source_platform_id: i32, + pub local_engine_id: i32, + pub target_galaxy_id: i32, + pub target_platform_id: i32, + pub target_engine_id: i32, + pub protocol_marker: i32, // 0x0201 + pub timeout_ms: i32, // default 30000 +} +``` + +`NmxTransferEnvelopeTemplate` is the round-trip preserver: takes a captured 46-byte buffer, exposes setters that patch only `inner_length`, leaves every other byte untouched. Used for `ObservedWriteBodyTemplate`. **This is non-optional** — the protocol has bytes whose semantics are not yet decoded; the .NET reference passes them through. + +⚠ **Reserved bytes 6..10 are NOT preserved by the .NET reference parser.** `NmxTransferEnvelope.Parse` reads only Version, InnerLength, ProtocolMarker, MessageKind, and the engine ids; the four bytes at offset 6 are discarded (`src/MxNativeCodec/NmxTransferEnvelope.cs:39–75`), and `Encode` always writes `0` there (`src/MxNativeCodec/NmxTransferEnvelope.cs:91`). The Rust port intentionally **fixes this gap** by carrying `reserved6_10: [u8; 4]` through `parse`/`encode`, defaulting to `[0; 4]` for newly-constructed envelopes. This honours CLAUDE.md's preserve-unknown-bytes rule on a layer the .NET reference does not — the Rust codec is closer to true byte-parity than the .NET parser when round-tripping captured envelopes that have non-zero bytes at offset 6. + +⚠ The native adapter logs `NMX Header ... buffer size pktHeader.dwDataSize N doesn't match received message size of 46` (`work_remain.md:74–85`) when `inner_length` does not match the actual body size. The encoder validates `inner_length == body.len() - 46` before transmitting. + +### Item-control bodies (advise / supervisory / unadvise) + +| Command | Opcode | Length | +|---|---|---| +| AdviseSupervisory | `0x1f` | 39 bytes (HeaderLength 3 + GUID 16 + AdviseExtra 2 + Payload 18) | +| UnAdvise | `0x21` | 37 bytes (HeaderLength 3 + GUID 16 + Payload 18) | + +The `Advise` enum value shares opcode `0x1f` with `AdviseSupervisory` (`src/MxNativeCodec/NmxItemControlMessage.cs:7–8`), but `NmxItemControlMessage.Parse` only accepts `AdviseSupervisory` or `UnAdvise` (`src/MxNativeCodec/NmxItemControlMessage.cs:46–49`). There is **no** separate 37-byte plain-Advise wire shape — the higher-level `MxNativeCompatibilityServer.AdviseSupervisory` simply forwards to `Advise`, both of which encode an `AdviseSupervisory` 39-byte body (`src/MxNativeClient/MxNativeCompatibilityServer.cs:256–258`). + +Layout: `command(1) + version(2) + correlation_id(GUID 16) + [extra(2) when AdviseSupervisory] + handle_projection(14) + tail(4)` (`src/MxNativeCodec/NmxItemControlMessage.cs:25–35,121–142`). + +Source: `src/MxNativeCodec/NmxItemControlMessage.cs:5–154`. + +### Write bodies (`0x37` / `0x38`) + +Common prefix (18 bytes) ends in a wire-kind byte at offset 17. Layout of the prefix is `cmd(1) + version u16(2) + handle_projection(14, bytes 6..19 of MxReferenceHandle) + wireKind(1)` (`src/MxNativeCodec/NmxWriteMessage.cs:11–13,207–213`). There is no padding between version and the handle projection. + +| WireKind | Type | Total scalar size | Notes | +|---|---|---|---| +| `0x01` | Boolean | 37 | 4-byte value `[0xff,0xff,0xff,0x00]` (true) or `[0x00,0xff,0xff,0x00]` (false) — bytes 1 and 2 are literal `0xFF` filler, NOT reserved zeros (`src/MxNativeCodec/NmxWriteMessage.cs:257`); 11-byte boolean suffix (7 zero bytes + 4-byte clientToken, `NmxWriteMessage.cs:228–238`) + 4-byte writeIndex | +| `0x02` | Int32 | 40 | 4 LE + 14-byte suffix + 4 writeIndex | +| `0x03` | Float32 | 40 | 4 IEEE + 14 + 4 | +| `0x04` | Float64 | 44 | 8 IEEE + 14 + 4 | +| `0x05` | String | 44 + N | recordLength i32(4) + valueByteLength i32(4) + UTF-16LE bytes(N) + null(2) + 14-byte suffix + 4-byte writeIndex; total = `KindOffset(17) + 1 + 4 + 4 + N + 14 + 4` (`src/MxNativeCodec/NmxWriteMessage.cs:148–157`) | +| `0x05` | DateTime | 44 + N | Same shape as String. Value is UTF-16LE of `DateTime.ToString("M/d/yyyy h:mm:ss tt", InvariantCulture)` + null (`src/MxNativeCodec/NmxWriteMessage.cs:262,390–393`) | +| `0x41–0x45` | Arrays | 18 + 10 + N + 18 | prefix(18) + 4 unused bytes + count u16 at body[22] + elementWidth u16 at body[24] + elements(N) + 14-byte suffix + 4-byte writeIndex (`src/MxNativeCodec/NmxWriteMessage.cs:179–186`) | + +`Write2` (timestamped) replaces the `-1 i16` flag with `0 i16` and inserts an 8-byte `FILETIME` (`DateTime.ToFileTime()`) between offsets 12 and 19 of the suffix. + +`WriteSecured2` (`0x38`) appends `currentUserToken(16) + clientNameLen(i32) + clientNameBytes(UTF-16LE+null) + verifierUserToken(16)` before the trailing index slot. + +Sources: `src/MxNativeCodec/NmxWriteMessage.cs:7–394`, `NmxSecuredWrite2Message.cs:6–105`. Per-type byte matrices in `analysis/frida/write-body-matrix.tsv`, `write-array-body-matrix.tsv`, `write-mode-matrix.tsv`. + +`ObservedWriteBodyTemplate` mirrors the .NET helper: take a captured write body, replace only the value slot, preserve every other byte (suffix, tokens, padding). + +### Subscription Status (`0x32`) and DataUpdate (`0x33`) + +Source: `src/MxNativeCodec/NmxSubscriptionMessage.cs:5–428`. + +**The two frames share a 23-byte common header (`cmd + version + recordCount + operationId`) but diverge immediately after.** The parser must dispatch on `cmd` before reading any further bytes; do not unify the two paths. + +`SubscriptionStatus` (cmd `0x32`) — header → **per-message correlationId** → records (`src/MxNativeCodec/NmxSubscriptionMessage.cs:87–115`): +``` +cmd(1=0x32) + version(2=1) + recordCount(i32) + operationId(GUID 16) [bytes 0..23] +correlationId(GUID 16) [bytes 23..39] +records[recordCount] [from byte 39] +record: status(i32) + detailStatus(i32) + quality(u16) + + timestamp_filetime(i64) + wireKind(u8) + value(N) +``` + +`DataUpdate` (cmd `0x33`) — header → records, **no correlationId** (`src/MxNativeCodec/NmxSubscriptionMessage.cs:54–55, 65–85`): +``` +cmd(1=0x33) + version(2=1) + recordCount(i32) + operationId(GUID 16) [bytes 0..23] +records[recordCount] [from byte 23] +record: status(i32) + quality(u16) + timestamp_filetime(i64) + + wireKind(u8) + value(N) +``` + +⚠ **`recordCount != 1` is a hard error on `0x33` DataUpdate.** The .NET parser throws `ArgumentException` (`src/MxNativeCodec/NmxSubscriptionMessage.cs:71–74`). The Rust port replicates this as a typed error (do not silently accept multi-record DataUpdate frames); buffered batches are listed in `70-risks-and-open-questions.md` (R2/R13) as not yet wire-proven. + +Wire kinds are 0x01..0x07 (scalars) and 0x41..0x46 (arrays). + +ⓘ **Known gap — wire kind `0x47` (`ElapsedTimeArray`) is not enumerated by either the .NET reference or this design.** The scalar `ElapsedTime` (`0x07`, `src/MxNativeCodec/MxValueKind.cs`) has no array counterpart in either `MxValueKind` or `MxValue`, and neither `NmxWriteMessage.cs` (encoder) nor `NmxSubscriptionMessage.cs:270–276` (decoder) has a branch for `0x47`. If a future Frida capture exposes such a frame, both sides need an additive enum variant (`ElapsedTimeArray` → `0x47`) plus a value carrier; the current parser will fall through to the default `(wireKind, null, 0)` opaque arm and the encoder will simply have no way to emit it. Document as a known gap rather than silently extending the enum without evidence. + +⚠ **Encoder/decoder asymmetry on the array kind byte (preserve verbatim):** the write encoder collapses both `StringArray` and `DateTimeArray` to `0x45` and never emits `0x46` (`src/MxNativeCodec/NmxWriteMessage.cs:107`). The subscription/callback decoder treats `0x46` as `DateTimeArray` (`src/MxNativeCodec/NmxSubscriptionMessage.cs:173,275`). Therefore: **writes use `0x41..0x45` only; reads accept `0x41..0x46`.** The Rust port's encoder must match (only emit up to `0x45`); the decoder must accept the full `0x41..0x46` range and demux `StringArray` vs `DateTimeArray` from `wireKind`, not from any encoder-side metadata. + +### Reference registration (`0x10` / `0x11`) + +Source: `src/MxNativeCodec/NmxReferenceRegistrationMessage.cs:6–142`, `NmxReferenceRegistrationResultMessage.cs:6–120`. + +Tagged-string encoding: 4-byte length prefix where `tagged ? (byteLength | 0x81000000) : byteLength`, followed by UTF-16LE bytes plus a null terminator. Codec preserves the 8 zero bytes of `ItemStringReservedLength` (lines 42–45) and the `0x81000000` marker on tagged strings. + +### Type model + +Compatible with the .NET enums in `src/MxNativeCodec/MxStatus.cs`, `MxValueKind.cs`, `MxDataType.cs`. + +```rust +#[repr(i16)] +pub enum MxStatusCategory { + Unknown = -1, Ok = 0, Pending = 1, Warning = 2, CommunicationError = 3, + ConfigurationError = 4, OperationalError = 5, SecurityError = 6, + SoftwareError = 7, OtherError = 8, +} + +#[repr(i16)] +pub enum MxStatusSource { + Unknown = -1, RequestingLmx = 0, RespondingLmx = 1, RequestingNmx = 2, + RespondingNmx = 3, RequestingAutomationObject = 4, RespondingAutomationObject = 5, +} + +pub struct MxStatus { + pub success: i16, + pub category: MxStatusCategory, + pub detected_by: MxStatusSource, // .NET field name is `DetectedBy` (`src/MxNativeCodec/MxStatus.cs:31`); not `Source` + pub detail: i16, // i16, signed; matches .NET `short Detail` (`src/MxNativeCodec/MxStatus.cs:32`) +} + +pub enum MxValueKind { + Boolean, Int32, Float32, Float64, String, DateTime, ElapsedTime, + BooleanArray, Int32Array, Float32Array, Float64Array, + StringArray, DateTimeArray, + // No ElapsedTimeArray variant — see footnote. +} + +#[repr(i16)] +pub enum MxDataType { + Unknown = -1, NoData = 0, Boolean = 1, Integer = 2, Float = 3, Double = 4, + String = 5, Time = 6, ElapsedTime = 7, ReferenceType = 8, StatusType = 9, + Enum = 10, SecurityClassificationEnum = 11, DataQualityType = 12, + QualifiedEnum = 13, QualifiedStruct = 14, InternationalizedString = 15, + BigString = 16, End = 17, +} +``` + +### `MxValue` — typed value carrier + +```rust +pub enum MxValue { + Boolean(bool), + Int32(i32), + Float32(f32), + Float64(f64), + String(String), + DateTime(SystemTime), // FILETIME at codec boundary + ElapsedTime(MxElapsedTime), // signed wire — see note below + BooleanArray(Vec), + Int32Array(Vec), + Float32Array(Vec), + Float64Array(Vec), + StringArray(Vec), + DateTimeArray(Vec), +} +``` + +Conversions: +- `SystemTime` ↔ FILETIME: 100-ns intervals since `1601-01-01T00:00:00Z`. `time::OffsetDateTime` is also acceptable; pick one and stay consistent. The codec layer accepts both via traits. +- `ElapsedTime`: **4-byte signed `i32` milliseconds** on the wire. The .NET decoder reads `BinaryPrimitives.ReadInt32LittleEndian` and produces `TimeSpan.FromMilliseconds(milliseconds)` (`src/MxNativeCodec/NmxSubscriptionMessage.cs:252`), which accepts negative values. `std::time::Duration` is unsigned and **must not** be used here — it cannot represent a negative ms value and panics on conversion. The Rust port exposes a newtype `pub struct MxElapsedTime(pub i64);` (milliseconds, signed) — `i64` rather than `i32` so it can also carry the wider `time::Duration`/.NET `TimeSpan` range without precision loss when promoted at the async layer. + +ASB variant lives in a parallel `mxaccess_codec::asb::AsbVariant` because it is wire-incompatible (different type-id space and binary layout). + +### Preservation rules + +Every codec type that decodes a message keeps a private `original: Bytes` field. `re_encode()` returns the original bytes when no fields were mutated. This guarantees byte parity on captured fixtures even when fields' meanings are not fully understood. + +For mutable round-trips (e.g. re-encoding a captured `Write2` with a new value), only mutated fields are re-emitted; the rest of the buffer is patched in place. This matches `ObservedWriteBodyTemplate` in the .NET reference and is essential for the parity test strategy described in `60-roadmap.md`. + +### Test strategy (codec) + +- **Round-trip fixtures**: every captured write/advise/subscribe body in `captures/0NN-frida-*` and every row in `analysis/frida/*-matrix.tsv` is loaded, decoded, re-encoded, and asserted byte-equal. +- **Property tests**: `proptest` generators for each primitive (`MxReferenceHandle`, envelope, write body) — encode then decode, assert structural equality. +- **CRC vectors**: hardcoded vectors from .NET unit tests are mirrored as Rust constants and asserted. +- **Cross-implementation**: a small fixture runner shells out to `dotnet run --project src\MxNativeCodec.Tests` and asserts the same bytes are produced. + +## `mxaccess-rpc` + +DCE/RPC over TCP, NTLMv2 packet integrity, OXID resolution, OBJREF parsing, IRemUnknown::RemQueryInterface. The minimum subset of [MS-RPCE], [MS-DCOM], and [MS-NLMP] required to drive `INmxService2`. + +### NTLM + +Source: `src/MxNativeClient/ManagedNtlmClientContext.cs:1–389`. Implements: + +- **Type1 (Negotiate)** — emit. Negotiate flags as set by `CreateType1` (`src/MxNativeClient/ManagedNtlmClientContext.cs:53–63`): `KeyExchange (0x40000000) | Sign (0x00000010) | AlwaysSign (0x00008000) | Seal (0x00000020) | TargetInfo (0x00800000) | Ntlm (0x00000200) | ExtendedSessionSecurity (0x00080000) | Unicode (0x00000001) | RequestTarget (0x00000004) | Negotiate128 (0x20000000) | Negotiate56 (0x80000000)`. Bit constants per `ManagedNtlmClientContext.cs:10–21`. +- **Type2 (Challenge)** — parse. Extract server challenge, AV pairs from TargetInfo (timestamp, channel binding optional). +- **Type3 (Authenticate)** — emit. NTLMv2 NT-OWF = HMAC-MD5(MD4(unicode(password)), unicode(uppercase(user) + domain)). Client challenge with AV pairs replayed from the Type2. +- **Sign / Verify** — packet-integrity signature: HMAC-MD5(SignKey, sequence || plaintext) → first 8 bytes XOR with RC4 keystream. +- **Seal / Unseal** — RC4 stream cipher with derived seal key. +- **Sign-key / seal-key** — derived via MD5 on a magic-constant string. + +Rust crates: `hmac`, `md-5`, `rc4` (or hand-rolled), `rand_core`. **Do not pull `ring`** — it does not implement MD4. Hand-roll MD4 (~30 lines, mirroring the .NET reference). + +### DCE/RPC PDU + +Source: `src/MxNativeClient/DceRpcPdu.cs:1–380`, `DceRpcTcpClient.cs:1–420`. + +PDU types implemented: `Bind` (11), `BindAck` (12), `Request` (0), `Response` (2), `Fault` (3), `AlterContext` (14), `AlterContextResponse` (15), `Auth3` (16). Authentication trailer: type=NTLMSSP (10), level=PKT_INTEGRITY (5). + +Fragmentation: max transmit/receive 4280 bytes. Multi-fragment Request/Response bodies concatenate in order using the FIRST (0x01) and LAST (0x02) fragment flag bits. + +### OXID resolution + +`IObjectExporter::ResolveOxid` over port 135. Returns dual-string bindings; we filter for tower id `0x0007` (ncacn_ip_tcp) and parse `host[port]`. + +Source: `src/MxNativeClient/ObjectExporterClient.cs:1–82`. + +### OBJREF / IRemUnknown + +OBJREF is a 68-byte STDOBJREF header + dual-string array. Signature `MEOW` = `0x574F454D`. + +`IRemUnknown::RemQueryInterface` (opnum 3) yields a new IPID for a different IID on the same OXID. Used to obtain `INmxService2` from the activated `IUnknown`. + +Source: `src/MxNativeClient/ComObjRef.cs:1–145`, `RemUnknownMessages.cs:1–79`. + +### Public surface (sketch) + +```rust +pub struct DceRpcClient { /* tokio::net::TcpStream + auth + frag state */ } + +impl DceRpcClient { + pub async fn connect(addr: SocketAddr) -> Result; + pub async fn bind(&mut self, iid: Uuid, ntlm: NtlmContext) -> Result<(), RpcError>; + pub async fn alter_context(&mut self, iid: Uuid) -> Result<(), RpcError>; + pub async fn call(&mut self, opnum: u16, stub: &[u8]) -> Result; +} +``` + +`tokio::net::TcpStream` underneath. The PDU codec is a pure `tokio_util::codec::Decoder` so the same logic could in principle drive a different runtime if the I/O is provided. + +## `mxaccess-callback` + +Server-side. Listens on an ephemeral TCP port; serves Bind / Request PDUs for two interfaces: + +- `IRemUnknown` (RemQueryInterface, RemAddRef, RemRelease) +- `INmxSvcCallback` (`DataReceived` opnum 3, `StatusReceived` opnum 4) — names match the .NET reference exactly: `src/MxNativeClient/NmxSvcCallbackMessages.cs:11–12` (`DataReceivedOpnum`/`StatusReceivedOpnum`) and `src/MxNativeClient/NmxProcedureMetadata.cs:89–101` (`NdrProcedureDescriptor` `DataReceived`/`StatusReceived`). The doc previously used a `Raw` suffix that does not appear in the source. + +Source: `src/MxNativeClient/ManagedCallbackExporter.cs:1–335`. + +```rust +pub struct CallbackExporter { /* TcpListener + dispatcher + frame channel */ } + +impl CallbackExporter { + pub async fn bind(addr: SocketAddr) -> Result; + pub fn obj_ref(&self) -> ObjRef; + pub fn frames(&self) -> impl Stream; +} + +pub enum CallbackFrame { + Data(Bytes), // INmxSvcCallback::DataReceived payload (opnum 3) + Status(Bytes), // INmxSvcCallback::StatusReceived payload (opnum 4) +} +``` + +Frames are not decoded here — they're forwarded to `mxaccess-codec::NmxSubscriptionMessage::parse` upstream. This keeps the callback exporter a transport, not a parser. + +## `mxaccess-nmx` + +`INmxService2` client. Sits on top of `mxaccess-rpc` and `mxaccess-callback`. + +```rust +pub struct NmxClient { /* DceRpcClient + CallbackExporter handle + state */ } + +impl NmxClient { + pub async fn connect(host: &str, ids: EngineIds) -> Result; + pub async fn register_engine_2( + &mut self, engine_id: i32, name: &str, version: i32, callback: ObjRef, + ) -> Result<(), NmxError>; + pub async fn unregister_engine(&mut self, engine_id: i32) -> Result<(), NmxError>; + pub async fn get_partner_version(&mut self, ids: EngineIds) -> Result; + pub async fn transfer_data(&mut self, ids: EngineIds, body: &[u8]) -> Result<(), NmxError>; + pub async fn add_subscriber_engine(&mut self, ...) -> Result<(), NmxError>; + pub async fn remove_subscriber_engine(&mut self, ...) -> Result<(), NmxError>; + pub async fn set_heartbeat_send_interval( + &mut self, ticks_per_beat: i32, max_missed_ticks: i32, + ) -> Result<(), NmxError>; +} +``` + +`transfer_data` accepts a pre-encoded body from `mxaccess-codec`. It does not decode; it forwards. + +Includes the SQL tag resolver (`mxaccess-galaxy`): + +```rust +pub struct GalaxyResolver { /* tiberius client */ } + +impl GalaxyResolver { + pub async fn connect(connection_string: &str) -> Result; + pub async fn resolve(&mut self, full_reference: &str) -> Result; + pub async fn resolve_user(&mut self, guid: Uuid) -> Result; +} + +pub struct GalaxyTagMetadata { + pub object_tag_name: String, + pub attribute_name: String, + pub platform_id: u16, + pub engine_id: u16, + pub object_id: u16, + pub mx_data_type: MxDataType, + pub security_classification: SecurityClassification, + pub is_array: bool, +} +``` + +The resolver does not compute the CRC — consumers do that via `MxReferenceHandle::compute_name_signature` so the codec stays self-contained and the resolver stays a thin SQL layer. + +## `mxaccess-asb` + +`IASBIDataV2` client. SOAP over `net.tcp` framing. Independent of `mxaccess-rpc` and `mxaccess-nmx`; parallel data plane. + +The wire is: +- Net.Tcp framing (binary length-prefixed, see [MS-NMF]). +- WCF binary message encoding ([MC-NBFX] tokenised XML + [MC-NBFS] static dictionary), **not** SOAP/XML on the wire — the .NET reference uses `new NetTcpBinding(SecurityMode.None)` with no encoder override (`src/MxAsbClient/MxAsbDataClient.cs:660-685`), which selects `BinaryMessageEncodingBindingElement` by default. +- Custom binary inside `` base64 elements (Variant, AsbStatus, MonitoredItem...) — the inner application payload, distinct from the message-envelope encoding. +- Application-level auth: DH key exchange + per-message HMAC + AES-128. + +Implementation: hand-rolled [MS-NMF] framing + [MC-NBFX]/[MC-NBFS] binary-XML codec in `mxaccess-asb-nettcp` (workspace-internal, published alongside the rest of the workspace), public surface in `mxaccess-asb`. Cross-platform reach is theoretically possible (no DCOM) but blocked by DPAPI for the shared secret on Windows AVEVA installs. + +```rust +pub struct AsbClient { /* TcpStream + SOAP codec + auth + subscription state */ } + +impl AsbClient { + pub async fn connect(endpoint: Url, options: AsbConnectionOptions) -> Result; + pub async fn register(&mut self, item: &ItemIdentity) -> Result; + pub async fn read(&mut self, item: &ItemIdentity) -> Result; + pub async fn write( + &mut self, item: &ItemIdentity, value: AsbValue, opts: WriteOptions, + ) -> Result; + pub async fn create_subscription( + &mut self, opts: SubscriptionOptions, + ) -> Result; + pub async fn add_monitored_items( + &mut self, sid: SubscriptionId, items: &[MonitoredItem], + ) -> Result<(), AsbError>; + pub async fn publish(&mut self, sid: SubscriptionId) -> Result, AsbError>; + pub async fn disconnect(&mut self) -> Result<(), AsbError>; +} +``` + +`AsbClient` is async-native (unlike the .NET reference, which is sync) because Tokio + non-blocking sockets is the natural fit for a long-poll subscription API. + +## What the raw layer does **not** do + +- It does not own a Tokio `Runtime`. It uses one when handed sockets but does not start one. +- It does not surface `Stream`. That is an async-layer concern. The raw callback exporter exposes `mpsc::Receiver` of undecoded bytes; the async layer parses them and demultiplexes by correlation. +- It does not transform `MxStatus` into typed Rust errors. Status decoding is verbatim; the async layer maps to `Error` types (see `50-error-model.md`). +- It does not reconnect or retry. Recovery is an async-layer policy. +- It does not expose any sync wrappers. The raw types use `async fn` because every interesting operation is I/O-bound. diff --git a/design/20-async-layer.md b/design/20-async-layer.md new file mode 100644 index 0000000..ef907a1 --- /dev/null +++ b/design/20-async-layer.md @@ -0,0 +1,393 @@ +# Async layer (Tokio) + +The async layer is the public face of the library. Most consumers depend on `mxaccess` (the top-level crate) and never see the raw crates. The crate is async-native, Tokio-based, and exposes idiomatic Rust: typed errors, `Send + Sync` handles, `Stream`s for subscriptions, drop-cancellable subscriptions, `tracing` instrumentation. + +## Public crate: `mxaccess` + +Re-exports the core types from `mxaccess-codec`, hides the raw transports, adds the async session. + +### Connection + +```rust +use mxaccess::{Session, ConnectionOptions, Credentials, MxValue}; +use std::time::SystemTime; + +let session = Session::connect( + ConnectionOptions::nmx("localhost") + .galaxy_id(1) + .platform_id(1) + .engine_id(MX_LOCAL_ENGINE) + .credentials(Credentials::current_user()) + .galaxy_db("Server=localhost;Database=Galaxy;Integrated Security=True;TrustServerCertificate=True"), +).await?; +``` + +`ConnectionOptions::nmx(...)` selects `NmxTransport`; `ConnectionOptions::asb(...)` selects `AsbTransport`. Both produce a `Session`. + +`Session` is `Clone + Send + Sync`. Internally it wraps `Arc` so cloned handles share the same underlying connection. + +**Orderly shutdown — `Session::shutdown(timeout: Duration) -> impl Future>`.** Sends `UnAdvise` for every live subscription, then `UnregisterEngine`, and awaits the connection task's confirmation that those frames have flushed — or returns `Err(Error::Timeout(_))` if the timeout elapses first. This is the recommended exit path for production code and is the async equivalent of the .NET reference's synchronous `Dispose` (src/MxNativeClient/MxNativeSession.cs:476-514). + +Drop of the last `Session` clone is a best-effort fallback: it signals `UnregisterEngine` to the connection task via the same in-process channel that subscription drops use (no `tokio::spawn`, no `block_on`). If the runtime is shut down before the connection task drains, the unregister is lost — see the runtime-shutdown leak note under "Cancellation". Callers that care about deterministic engine deregistration must call `Session::shutdown` rather than relying on drop. + +### Operations + +```rust +// Fire-and-forget: returns when the LMX `Write` RPC return is acked. +// No `WriteCompleted` callback is awaited. +session.write("TestChildObject.TestInt", MxValue::Int32(123)).await?; + +// Awaits the 5-byte `OperationStatus` completion frame. The `client_token` +// correlates the wire callback to this call (see writeIndex/clientToken on +// `MxNativeSession.WriteAsync`, src/MxNativeClient/MxNativeSession.cs:165-185). +session.write_with_completion( + "TestChildObject.TestInt", + MxValue::Int32(123), + /* client_token: */ 0x1001u32, +).await?; + +session.write_with_timestamp( + "TestChildObject.TestInt", + MxValue::Int32(123), + SystemTime::now(), +).await?; + +// Verified Write — the LMX `WriteSecured` always takes TWO user ids: +// `(currentUserId, verifierUserId, value)`. "Single-user secured write" is +// callers passing the same id twice; it is NOT a separate API surface. +// `WriteSecured2` adds a timestamp; it does NOT add a second token. The +// `0x80004021` failure observed in `MxNativeSession.WriteSecuredAsync` is a +// defect of the .NET native reimplementation, not a real LMX constraint +// (verified against wwtools/mxaccesscli/docs/api-notes.md:60-72,87-95 and +// wwtools/mxaccesscli/src/MxAccess.Cli/Commands/WriteCommand.cs:44-101,151-155,196-199; +// the LMX proxy CLI exposes `WriteSecured(currentUserId, verifierUserId, value)` +// and treats single-user secured writes as `currentUserId == verifierUserId`). +session.write_secured( + "TestChildObject.TestInt", + MxValue::Int32(123), + SecurityContext { current_user_id, verifier_user_id }, +).await?; + +// Timestamped Verified Write — adds a `SystemTime`. Same two-id token shape; +// matches `WriteSecured2(currentUserId, verifierUserId, value, timestamp)`. +session.write_secured_at( + "TestChildObject.TestInt", + MxValue::Int32(123), + SystemTime::now(), + SecurityContext { current_user_id, verifier_user_id }, +).await?; + +// `read` is implemented as `subscribe + first-result + drop`, mirroring +// `MxNativeSession.ReadAsync` (src/MxNativeClient/MxNativeSession.cs:312-359), +// which requires a positive timeout and unadvises on completion or timeout. +let DataChange { value, status, timestamp, .. } = + session.read("TestChildObject.TestInt", Duration::from_secs(5)).await?; +``` + +All operations take a `&str` reference name (e.g. `"TestObject.Attribute"`) and resolve it to a `MxReferenceHandle` internally via the configured `Resolver`. Default resolver is `mxaccess-galaxy::SqlResolver`; an in-memory resolver is provided for tests (`InMemoryResolver::insert("Tag", metadata)`). + +`Session::write` returns `Ok(())` once the LMX `Write` RPC has been acknowledged at the transport level — it does **not** await a wire `WriteCompleted` frame. Callers that need write-completion semantics must use `Session::write_with_completion(reference, value, client_token)`, which threads `client_token` through the `MxNativeSession.WriteAsync` `clientToken` parameter (src/MxNativeClient/MxNativeSession.cs:165-185) and returns when the matching 5-byte `OperationStatus` callback frame is decoded. See `70-risks-and-open-questions.md` R3/R4 for the cases where the proven stack does not emit a completion frame. + +`Session::read` takes a `Duration` timeout (matching the .NET reference's mandatory `TimeSpan timeout` argument and `ArgumentOutOfRangeException` for non-positive values, src/MxNativeClient/MxNativeSession.cs:312-321). Implementation is `subscribe + first-result + drop`; the drop guard guarantees `UnAdvise` runs on the success, error, and timeout paths so no advise is leaked, mirroring the `finally`/`Unsubscribe` block at src/MxNativeClient/MxNativeSession.cs:351-358. + +### Subscriptions + +```rust +use futures::StreamExt; + +let mut subscription = session.subscribe("TestChildObject.TestInt").await?; + +while let Some(change) = subscription.next().await { + let change = change?; + println!("{} = {:?} @ {:?} (status={:?})", + change.reference, change.value, change.timestamp, change.status); +} + +// Drop the subscription to unadvise. +drop(subscription); +``` + +`Subscription` implements `Stream>`. + +**Err semantics — non-terminal for parse errors, terminal after connection loss.** The stream yields `Err` items for parse-level failures (the consumer can keep polling — the next inbound frame will be delivered). The stream ends with `None` after a final `Err` for connection-loss / subscription-end events; once `None` is observed, no further items will be yielded. This split mirrors the .NET reference's two events: `CallbackReceived` is raised per-record after a successful parse (src/MxNativeClient/MxNativeSession.cs:603-606), while `UnparsedCallbackReceived` is raised when `NmxSubscriptionMessage.ParseProcessDataReceivedBody` throws — without tearing down other live subscriptions (src/MxNativeClient/MxNativeSession.cs:590-601). + +Consumers wanting strict parity with `UnparsedCallbackReceived` (raw bytes for unparseable frames) can subscribe to `Subscription::raw_callbacks() -> Stream`, or simply inspect the `Err` variants and keep polling: `Error::Protocol(ProtocolError::Decode { .. })` corresponds to the .NET unparsed-callback path and is non-terminal; `Error::Connection(_)` is terminal and the next `next().await` returns `None`. + +Dropping the subscription sends `UnAdvise` (best-effort, fire-and-forget — see drop semantics below) and removes the correlation from the session's subscription map. + +For batch subscriptions: + +```rust +let mut sub = session.subscribe_many(&["A.X", "A.Y", "A.Z"]).await?; +while let Some(change) = sub.next().await { + let change = change?; + // change.reference identifies which of the three +} +``` + +Multi-tag subscriptions multiplex on the same callback channel and demultiplex by correlation ID inside the session task. The wire still issues one `Advise` per tag — the Rust API does not pretend a single advise covers many tags. + +**`subscribe_many` is non-atomic.** The implementation issues one `AdviseSupervisory` per tag in a loop, mirroring `MxNativeSession.SubscribeAsync` which produces a fresh `CorrelationId` and calls `_service.AdviseSupervisory` per tag (src/MxNativeClient/MxNativeSession.cs:250-270). If the Nth advise fails, the first N-1 succeed and remain advised. The error is surfaced through the returned `Result`; the partial set lives on the returned `Subscription`, and the consumer chooses how to recover: +- `Subscription::drop` to unadvise the partial set, or +- retry the failed tag (e.g. via a follow-up `session.subscribe(failed_tag).await`). + +`subscribe_many_atomic` (an all-or-nothing variant that rolls back on partial failure) is **not** provided in V1 — the proven .NET reference has no atomic equivalent and the wire offers no transactional advise primitive. + +### Buffered subscriptions (NMX only) + +`subscribe_buffered` mirrors the .NET reference's `MxNativeSession.RegisterBufferedItemAsync`, which takes the dual-string `itemDefinition`/`itemContext` split plus an `itemHandle: int` (src/MxNativeClient/MxNativeSession.cs:272-310). The Rust API takes the same parameters explicitly via a `BufferedSubscription` request struct — no convenience overload that hides the `(definition, context, item_handle)` triple is offered, because a consumer that omits any of the three cannot reproduce the captured Frida bodies. + +```rust +let mut sub = session.subscribe_buffered(BufferedSubscription { + definition: "TestMachine_001.TestHistoryValue", + context: "", // optional, may be empty per RegisterBufferedItemAsync:279 + item_handle: 0x1001, // i32 mapped to NmxReferenceRegistrationMessage.ItemHandle + options: BufferedOptions { + sample_interval: Duration::from_millis(100), + max_queue_size: 1000, + }, +}).await?; + +while let Some(batch) = sub.next().await { + for sample in batch?.samples { + // sample is a DataChange + } +} +``` + +`subscribe_buffered` is gated on the `nmx` feature and returns `Stream>`. The deployed AVEVA provider may emit single-sample batches even with buffering enabled — see risk R2 in `70-risks-and-open-questions.md`. The API does not synthesise batches; if the wire returns one sample per record, the batch is `samples.len() == 1`. + +### Recovery + +**Recovery is caller-driven, not automatic.** This mirrors the .NET reference: `MxNativeSession.RecoverConnection` and `RecoverConnectionAsync(policy)` are explicit entry points the consumer invokes — the session never auto-starts recovery on heartbeat loss (src/MxNativeClient/MxNativeSession.cs:383-440). The Rust API exposes the same shape: + +```rust +// Caller invokes recovery when they choose, with the policy of their choice. +session.recover_connection(RecoveryPolicy::exponential( + Duration::from_secs(1), + /* max_attempts: */ 5, + Duration::from_secs(60), +)).await?; +``` + +Heartbeat-loss surfaces as `Error::Connection(...)` on subsequent operations (write/read/subscribe). The caller decides whether to call `recover_connection` based on observed errors and recovery events. There is no implicit recovery thread that resurrects the session in the background. + +**In-flight calls during recovery fail.** While `recover_connection` is running, in-flight writes/reads/subscriptions against the previous transport are not paused, replayed, or migrated — they observe the existing transport being torn down and fail with `Error::Connection(...)`. The .NET reference's `_recoveryActive` is similarly just an inbound-callback annotation flag (src/MxNativeClient/MxNativeSession.cs:444,472); concurrent calls against `_service` are not interlocked. The Rust design **does not promise** "the future resumes on the new connection" — the caller is responsible for retrying after a successful `RecoveryEvent::Completed`. + +```rust +let mut events = session.recovery_events(); +while let Some(ev) = events.next().await { + tracing::info!(?ev, "recovery event"); +} + +pub enum RecoveryEvent { + Started { attempt: u32 }, + Failed { attempt: u32, error: Error, will_retry: bool }, + Completed { duration: Duration }, +} +``` + +The event stream mirrors the .NET reference's `MxNativeSession.RecoveryAttemptStarted/Failed/Completed` events one-for-one (src/MxNativeClient/MxNativeSession.cs:121-123). + +### Cancellation + +Three cancellation surfaces, in order of preference for callers: + +1. **Drop the future or handle.** Dropping a `Subscription` signals `UnAdvise` to the long-lived connection task; dropping a `Session` signals `UnregisterEngine` to the same task. **Drop never spawns a new Tokio task** — instead, `Subscription` holds a `tokio::sync::oneshot::Sender` (or equivalent unbounded channel sender), and its `Drop` impl sends a message that the connection task drains in its event loop. Drop is therefore safe outside a runtime context and during runtime shutdown — it does not call `tokio::spawn` from `Drop`. +2. **`tokio_util::sync::CancellationToken`.** Long operations (`subscribe_buffered`, recovery, `connect`) accept an optional `CancellationToken` via `*_with_cancellation` variants. +3. **Timeout.** `tokio::time::timeout` works on every operation because `async fn`s are cancel-correct by construction. + +**Known runtime-shutdown leak.** If the Tokio runtime is shut down before the connection task has drained pending `UnAdvise`/`UnregisterEngine` messages, those frames are not delivered to the wire. Production code should avoid this by calling `Session::shutdown(timeout).await` (see below) on the orderly-exit path. The .NET reference has the same shape: `Dispose` runs synchronously and calls `_service.UnAdvise(...)` per live subscription before `UnregisterEngine` (src/MxNativeClient/MxNativeSession.cs:483-495). The Rust async equivalent is `Session::shutdown`; relying on `Drop` alone for cleanup is best-effort and documented as such. + +### Error model + +`mxaccess::Error` is a `thiserror`-derived `#[non_exhaustive]` enum. See `50-error-model.md` for the full surface. All operations return `Result`; **no panics in the public surface**. + +A non-Ok `MxStatus` on a returned `DataChange` is data, not an error. A non-Ok status on `read`/`write`/`subscribe`'s synchronous result is an `Err`. This mirrors the .NET reference and is the only sensible split: subscription frames carry status that callers want to inspect ("stale" or "uncertain" is still data); operation results are pass/fail. + +### Threading model + +- Multi-thread Tokio is the default. Single-thread is supported (no `Send`-only future escapes the local thread) but not the recommended deployment. +- All public types are `Send + Sync`. +- The codec is `Send + Sync` trivially (immutable after parse, owns its bytes). +- The session uses `tokio::sync::Mutex` for the per-connection RPC channel state and `tokio::sync::watch` for recovery state. **No `parking_lot::Mutex`** — sync mutexes inside async paths cause hidden blocking. + +### Observability + +`tracing` spans on every public operation: `tracing::instrument` on `register`, `write`, `subscribe`, `read`, `recover`. Span fields: `reference`, `correlation_id`, `transport` (`nmx`|`asb`), `engine_ids`. Span events for state transitions (subscription added, callback received, recovery started, recovery completed). + +Recommended subscriber filter: +``` +mxaccess::session=info,mxaccess::transport=debug +``` + +Optional `metrics` feature exposes: +- counters: `mxaccess_writes_total`, `mxaccess_subscribes_total`, `mxaccess_callbacks_total`, `mxaccess_recoveries_total` +- histograms: `mxaccess_operation_latency_seconds{op="write"|"read"|"subscribe"}` + +### Trait `Transport` + +`Transport` uses **native `async fn` in trait** (AFIT, stable in Rust 1.75+) and is **generic-only**. Consumers parameterise sites that take a transport with `impl Transport` or a generic `` bound. The trait is **not** dyn-compatible — `Box` is not supported in V1 — and that limitation is intentional: the design already uses `Session::connect(...)`-style generic entry points, so giving up `dyn Transport` costs nothing the design currently uses, while keeping zero per-call heap allocation in the hot path. (`#[async_trait]` was the alternative; it allows `dyn Transport` but boxes a `Pin>` per call — accepted as a known cost only if a future revision needs runtime polymorphism.) + +```rust +pub trait Transport: Send + Sync { + fn capabilities(&self) -> TransportCapabilities; + + async fn register(&self, options: &ConnectionOptions) -> Result; + async fn unregister(&self, engine: &RegisteredEngine) -> Result<(), Error>; + + async fn write( + &self, + handle: &MxReferenceHandle, + value: &MxValue, + opts: WriteOptions, + ) -> Result; + + async fn advise( + &self, + handle: &MxReferenceHandle, + opts: AdviseOptions, + ) -> Result; + + async fn unadvise(&self, sub: SubscriptionHandle) -> Result<(), Error>; + + fn callbacks(&self) -> CallbackStream; +} + +pub struct TransportCapabilities { + pub timestamped_writes: bool, + pub secured_writes: bool, + pub buffered_subscriptions: bool, + pub supervisory_advise: bool, + pub operation_complete_events: bool, +} +``` + +Two implementations: `NmxTransport` (capabilities mostly true) and `AsbTransport` (capabilities mostly false; see `70-risks-and-open-questions.md`). + +Calling a NMX-only API on an `AsbTransport` returns `Error::Unsupported { operation: Cow<'static, str>, transport: TransportKind }`. The `Cow` is used so the variant accepts both interned `&'static str` literals (the common case) and runtime-formatted operation names without allocation when not required; `TransportKind` is the corresponding `enum TransportKind { Nmx, Asb }` (matching the `transport` span field at line 204). The `Session` may also pre-flight via `transport.capabilities()` to give a better error message before issuing the call. + +### Public surface (re-exports) + +```rust +pub use mxaccess_codec::{ + MxReferenceHandle, MxStatus, MxStatusCategory, MxStatusSource, + MxValue, MxValueKind, MxDataType, +}; + +pub struct Session; +pub struct Subscription; + +pub struct DataChange { + pub reference: Arc, + pub value: MxValue, + /// Legacy 16-bit OPC quality (e.g. `0xC0` = 192 = "Good"). Distinct from + /// `status: MxStatus` — both are surfaced because real MxAccess + /// (`OnDataChange(hServer, hItem, MxDataType, value, quality, timestamp, + /// statuses)`) carries them as separate fields. Verified against + /// `wwtools/mxaccesscli/docs/api-notes.md:104-105` ("quality on + /// OnDataChange is the legacy 16-bit OPC quality value … the richer state + /// lives in the statuses[] array") and + /// `wwtools/mxaccesscli/src/MxAccess.Cli/Mx/MxUpdate.cs:13-22,39-65`. + /// Earlier drafts of this design dropped `quality` as redundant with + /// `status`; that was a parity break and has been restored. + pub quality: u16, + pub timestamp: SystemTime, + pub status: MxStatus, +} +pub struct DataChangeBatch { + pub reference: Arc, + pub samples: Vec, +} +// Note on `quality`: `DataChange` carries a 16-bit OPC quality alongside +// `status: MxStatus`. They are distinct: `quality` is the legacy wire field +// (e.g. `0xC0` = "Good"), preserved for parity with real MxAccess +// (`OnDataChange` exposes both). The canonical projection from a wire record +// to a typed status is `Record.ToDataChangeStatus()` in the .NET reference +// (src/MxNativeClient/MxNativeSession.cs:70), which produces an `MxStatus`. +// Consumers that need the historical "quality" view (Good/Uncertain/Bad on +// bits 7..6) read it from `status.detail` and `status.category` rather than +// from a redundant raw u16. Exposing both invites callers to use the wrong +// field; the codec's `MxStatus` is the single source of truth. + +pub struct ConnectionOptions; +pub struct WriteOptions; +pub struct AdviseOptions; +pub struct BufferedOptions; +pub struct RecoveryPolicy; +pub enum RecoveryEvent { Started { .. }, Failed { .. }, Completed { .. } } + +pub struct Credentials; +pub struct SecurityContext; + +pub enum Error; // see 50-error-model.md +``` + +## `mxaccess-compat` (optional) + +`LMXProxyServer`-shaped methods on top of `Session`. Each method maps one-to-one to a `Session::*` operation: + +```rust +let server = mxaccess_compat::Server::new(session); +let server_handle = server.register("MyClient"); +let item_handle = server.add_item(server_handle, "TestObject.TestInt").await?; +server.advise(server_handle, item_handle).await?; +server.write(server_handle, item_handle, MxValue::Int32(123), user_id).await?; +``` + +Useful for porting code that depends on the COM API shape; not the recommended consumer surface. Not COM-visible by itself; a separate `mxaccess-compat-com` crate (deferred to post-V1) will register `windows-rs`-generated COM classes that wrap this. + +## Examples + +End-to-end consumer-grade examples in `rust/examples/`: + +- `connect-write-read.rs` — open session, write, read back +- `subscribe.rs` — long-running subscription +- `subscribe-buffered.rs` — buffered subscription (NMX feature) +- `asb-subscribe.rs` — ASB subscription +- `recovery.rs` — recovery policy + recovery events +- `multi-tag.rs` — `subscribe_many` on a 100-tag set +- `secured-write.rs` — `write_secured` (no timestamp) and `write_secured_at` (timestamped), each taking `(current_user_id, verifier_user_id)`; demonstrates both single-user (`current == verifier`) and two-person verification paths + +## Code sample (full) + +```rust +use std::time::Duration; +use futures::StreamExt; +use mxaccess::{Session, ConnectionOptions, Credentials, MxValue, RecoveryPolicy}; + +#[tokio::main(flavor = "multi_thread")] +async fn main() -> anyhow::Result<()> { + tracing_subscriber::fmt::init(); + + let mut session = Session::connect( + ConnectionOptions::nmx("localhost") + .galaxy_id(1) + .platform_id(1) + .engine_id(420) + .credentials(Credentials::current_user()) + .galaxy_db(std::env::var("MX_GALAXY_DB")?) + .recovery(RecoveryPolicy::exponential( + Duration::from_secs(1), 5, Duration::from_secs(60), + )), + ).await?; + + session.write("TestChildObject.TestInt", MxValue::Int32(123)).await?; + + let mut sub = session.subscribe("TestChildObject.TestInt").await?; + while let Some(change) = sub.next().await { + let change = change?; + tracing::info!(value = ?change.value, ts = ?change.timestamp, "data change"); + } + Ok(()) +} +``` + +## What the async layer does **not** do + +- It does not pretend to be sync. There is no `block_on` shortcut in the public API. +- It does not support multiple async runtimes. Tokio only. +- It does not transmit raw bytes. All operations go through the codec. +- It does not retry by default. Recovery is opt-in via `ConnectionOptions::recovery(...)` at session construction. There is no runtime mutator for `RecoveryPolicy`: `Session` is `Clone + Arc`-backed, so a `&mut self` setter on a clone would not propagate to other clones; the policy is fixed once and shared by every clone. Consumers that need a different policy build a new `Session`. +- It does not own a thread pool. It uses Tokio's runtime. +- It does not synthesise events the wire does not produce. `WriteCompleted` only fires when the proven 5-byte completion frame is observed; otherwise `RawStatus` is exposed verbatim through `Session::operation_status_events()`. See `70-risks-and-open-questions.md` R3/R4. diff --git a/design/30-crate-topology.md b/design/30-crate-topology.md new file mode 100644 index 0000000..7c98dcc --- /dev/null +++ b/design/30-crate-topology.md @@ -0,0 +1,295 @@ +# Crate topology + +## Workspace layout + +``` +rust/ + Cargo.toml workspace root + Cargo.lock + rust-toolchain.toml 1.85, stable (matches workspace.package.rust-version) + crates/ + mxaccess-codec/ pure protocol codec, no I/O + mxaccess-galaxy/ Galaxy SQL resolver (tiberius) + mxaccess-rpc/ DCE/RPC + NTLMv2 + OXID + OBJREF + mxaccess-callback/ INmxSvcCallback RPC server + mxaccess-nmx/ INmxService2 client + mxaccess-asb-nettcp/ net.tcp framing: MC-NMF + MC-NBFX/NBFS binary message encoder + (NetTcpBinding default — see src/MxAsbClient/MxAsbDataClient.cs:660-685) + mxaccess-asb/ IASBIDataV2 client + mxaccess/ async session + Transport trait + public API + examples/ `cargo run --example` only resolves examples + connect-write-read.rs owned by a specific crate, so the public-facing + subscribe.rs examples live under the top-level `mxaccess` + subscribe-buffered.rs crate and are invoked with `-p mxaccess`. + asb-subscribe.rs + recovery.rs + multi-tag.rs + secured-write.rs + mxaccess-compat/ LMXProxyServer-shaped facade (optional) + tests/ + fixtures/ copy of ../captures/0NN-frida-* (junctions are Windows-only and don't survive `git clone` cross-platform; symlinks need Developer Mode on Windows — copy is the portable default) +``` + +The workspace lives at `c:\Users\dohertj2\Desktop\mxaccess\rust\` (sibling of `src/`) per the `CLAUDE.md` directive. The .NET tooling does not look there; cargo treats it as the workspace root. + +## Dependency graph + +``` + +----------------+ + | mxaccess-codec | + +----------------+ + ^ ^ + | | + +-----------+ +-----------+ + | | + +---------------+ +-------------------+ + | mxaccess-rpc | | mxaccess-asb-nettcp | + +---------------+ +-------------------+ + ^ ^ + | | + +-------+---------+ +-------+--------+ + | mxaccess-callback| | mxaccess-asb | + +------------------+ +----------------+ + ^ ^ + | | + +-------+----------+ | + | mxaccess-nmx | | + +------------------+ | + ^ +-------------------+ | + | | mxaccess-galaxy | | + | +-------------------+ | + | ^ | + +--------------+-------------------+ + | + +---------------+ + | mxaccess | (top-level async API) + +---------------+ + ^ + | + +-----------------+ + | mxaccess-compat | (LMXProxyServer shape) + +-----------------+ +``` + +No cycles. ASB and NMX paths never depend on each other. The `mxaccess-nmx → mxaccess-galaxy` arrow is feature-gated behind `galaxy-resolver` (default-on); consumers building NMX with a custom `Resolver` can drop it. + +## Per-crate detail + +### `mxaccess-codec` + +| | | +|---|---| +| Role | Pure encoder/decoder for NMX wire types and ASB variant | +| Targets | All Rust targets *theoretically* (codec is pure, no platform-bound deps); Linux/macOS support is a **stretch goal**, gated on `MX_LIVE` integration tests against a remote AVEVA install. See `60-roadmap.md` and `70-risks-and-open-questions.md` Q3. | +| Public deps | `bytes`, `byteorder`, `uuid`, `widestring`, `thiserror` | +| Private deps | `proptest` (dev) | +| Optional features | `serde` (derives `Serialize`/`Deserialize` on public types) | +| Tests | Round-trip every captured fixture; proptest generators for primitives; cross-implementation parity vs `dotnet run --project src\MxNativeCodec.Tests` | + +### `mxaccess-galaxy` + +| | | +|---|---| +| Role | Galaxy Repository SQL resolver: tag → metadata, user → identity | +| Targets | All Rust targets, but Linux integrated-security is a stretch goal — see auth note below | +| Deps | `mxaccess-codec`, `tokio`, `tokio-util`, `futures-util`, `thiserror`, `tracing` (`tiberius` is now an optional dep, see below) | +| Optional features | `galaxy-resolver` (default-off; pulls `tiberius` and exposes the SQL-backed resolver. Consumers that only need NMX/ASB with a custom `Resolver` impl can leave this off and avoid pulling TDS, native-tls/rustls, and the `winauth` stack). `auth-windows` (default-on for Windows when `galaxy-resolver` is on; selects `tiberius`'s `winauth` SSPI feature for integrated security against domain-joined SQL Server). On Linux, `auth-windows` does **not** apply: integrated security against an MSSQL Galaxy DB requires `tiberius`'s `integrated-auth-gssapi` feature plus a configured Kerberos KDC and `krb5.conf` on the client. Galaxy databases in practice are domain-joined Windows boxes using NTLM/Kerberos integrated auth, so Linux clients without an MIT/Heimdal stack will fail to authenticate; flagged as a **stretch goal** and tracked in `70-risks-and-open-questions.md`. SQL-login fallback is always available cross-platform. | +| Tests | Mock SQL fixtures; live integration test gated on `MX_GALAXY_DB` env var | + +The .NET reference keeps `GalaxyRepositoryTagResolver.cs` inside the `MxNativeClient` namespace (`src/MxNativeClient/GalaxyRepositoryTagResolver.cs:4`). Splitting it into `mxaccess-galaxy` is a Rust-side improvement, not a porting fault: the resolver's only inputs are SQL connection options, its only output is `MxReferenceHandle` (a `mxaccess-codec` type), and the Rust trait `Resolver` is exposed by `mxaccess-nmx` so consumers can plug in their own implementation. With `galaxy-resolver` feature-gated, `mxaccess-nmx` does not transitively pull `tiberius` for consumers who do not need it. + +**Resolver input contract — `tag_name`-form only.** The Galaxy DB carries two distinct name fields per object: `tag_name` (the runtime read/write name, e.g. `DelmiaReceiver_001`) and `contained_name` (the hierarchy-browsing path, e.g. `TestMachine_001.DelmiaReceiver`). These are **asymmetric and cannot be used interchangeably** — `wwtools/grdb/README.md` calls this out as a critical distinction. `GalaxyRepositoryTagResolver.ResolveSql` keys on `g.tag_name = @objectTagName`; passing a contained-name will silently miss. The Rust `Resolver` trait takes a `tag_name`-form `&str` (e.g. `"TestObject.TestInt"` resolves the `TestObject` tag plus the `TestInt` attribute on it). If a future consumer needs contained-name → tag-name translation, add it as a separate translator that calls `wwtools/grdb/queries/hierarchy.sql`-style logic; **do not** mix the two paths inside `mxaccess-galaxy`. + +**Galaxy schema version probe.** R10 in `70-risks-and-open-questions.md` flags older Galaxy schema layouts as untested. `wwtools/grdb/` confirms a `dbo.schema_version` table exists with `version_number` / `version_string` / `cdi_version` columns. The Rust resolver should query this at session construction and fail loud (`ConfigError::Galaxy { reason: format!("schema version {version_string} is outside tested range") }`) if the version is outside the proven set. + +### `mxaccess-rpc` + +| | | +|---|---| +| Role | DCE/RPC PDU codec + NTLMv2 + OBJREF + OXID resolution + RemQI | +| Targets | `x86_64-pc-windows-msvc` (primary), `x86_64-pc-windows-gnu`, `x86_64-unknown-linux-gnu` (NTLM-only paths) | +| Deps | `mxaccess-codec`, `bytes`, `byteorder`, `tokio`, `hmac`, `md-5`, `rc4`, `rand`, `uuid`, `thiserror`, `tracing` (all crypto crates pinned to the `digest 0.11`/`cipher 0.5` generation per the workspace dependency table) | +| Optional features | `windows-com` (default-on Windows; pulls `windows` for `GUID`/`ObjRef` helpers) | +| Tests | Unit tests for NTLM message construction + PDU framing; integration tests against captured ObjectExporter responses | + +### `mxaccess-callback` + +| | | +|---|---| +| Role | TCP listener + RPC server for `INmxSvcCallback` and `IRemUnknown` | +| Deps | `mxaccess-rpc`, `mxaccess-codec`, `tokio`, `futures-util`, `tracing`, `thiserror` | +| Tests | Unit test that exercises the dispatch table with synthetic Bind/Request PDUs | + +### `mxaccess-nmx` + +| | | +|---|---| +| Role | `INmxService2` client + raw NMX session façade. Exposes a `Resolver` trait so consumers can plug in any tag-handle resolver. | +| Deps | `mxaccess-codec`, `mxaccess-rpc`, `mxaccess-callback`, `tokio`, `tracing`, `thiserror` | +| Optional features | `galaxy-resolver` (default-on; pulls `mxaccess-galaxy` and re-exports its SQL-backed `Resolver` impl. Off → `mxaccess-nmx` builds without `tiberius`/TDS, and the consumer supplies their own `Resolver`.) | +| Tests | Round-trip TransferData fixtures; live probe gated on `MX_LIVE` | + +### `mxaccess-asb-nettcp` + +| | | +|---|---| +| Role | net.tcp framing layer. Implements MC-NMF (.NET Message Framing) + MC-NBFX/NBFS (.NET Binary XML / dictionary string table) — the default binary message encoder for `NetTcpBinding`. Reference WCF construction in `src/MxAsbClient/MxAsbDataClient.cs:660-685` is `new NetTcpBinding(SecurityMode.None)` with no encoder override, which selects `BinaryMessageEncodingBindingElement` by default — i.e. *not* SOAP/XML on the wire. The previous name `mxaccess-asb-soap` was a misnomer. | +| Visibility | Workspace-internal crate, published alongside the rest of the workspace (no `publish = false` — Cargo refuses `cargo publish` of `mxaccess-asb` if a path-dep here lacks a published version). | +| Deps | `bytes`, `tokio`, `[an MC-NBFX/NBFS impl — TODO: evaluate `wcf-binary` crate or hand-roll a dictionary-table codec]`, `quick-xml` (only for the small ASB control-plane XML payloads such as `request.ToXml()` at `src/MxAsbClient/AsbSystemAuthenticator.cs:79`, *not* for net.tcp framing), `flate2`, `aes`, `hmac`, `md-5`, `sha1` (note crate rename — `sha-1` is deprecated upstream, `sha1` is the maintained successor), `sha2`, `pbkdf2`, `num-bigint`, `rand`, `tracing`. All RustCrypto crates are pinned to the `digest 0.11`/`cipher 0.5` generation; see workspace `[workspace.dependencies]` table. | +| Tests | Unit tests for net.tcp/MC-NMF framing + DH handshake against captured payloads from `AsbMessageDumpBehavior` | + +### `mxaccess-asb` + +| | | +|---|---| +| Role | `IASBIDataV2` client | +| Deps | `mxaccess-codec`, `mxaccess-asb-nettcp`, `tokio`, `tracing`, `thiserror` | +| Optional features | `dpapi` (default-on for Windows targets) — see `SecretProvider` below | +| Tests | Round-trip Variant fixtures; live probe gated on `MX_LIVE` | + +`mxaccess-asb` always exposes a `SecretProvider` trait (single fallible `async fn fetch(&self) -> Result>, Error>`) that the ASB authenticator calls to obtain the shared secret used for the DH-passphrase derivation (`src/MxAsbClient/AsbSystemAuthenticator.cs:28, 134-142` — the secret is mandatory for the handshake; without it ASB cannot authenticate). The trait is **always present** — not feature-gated — so consumers can plug in any source (env var, file, KeyVault, hardcoded test fixture). The `dpapi` feature provides a default Windows-only implementation that reads the secret via `windows::Win32::Security::Cryptography::CryptUnprotectData`. With `dpapi=off`, the crate still compiles and works; the consumer must provide a `SecretProvider` impl explicitly, otherwise `Session::builder()` fails at construction time with `Error::ConfigurationIncomplete { missing: "secret_provider" }`. + +### `mxaccess` + +| | | +|---|---| +| Role | Public async API: `Session`, `Subscription`, `Transport` trait | +| Deps | `mxaccess-codec`, `tokio`, `tokio-util`, `futures-util`, `tracing`, `thiserror`, `async-trait`, `arc-swap` (for cheap clones of session state) | +| Optional features | `nmx` (default-on Windows; pulls `mxaccess-nmx`), `asb` (default-on; pulls `mxaccess-asb`), `metrics` (optional `metrics` instrumentation), `serde` (forwards to codec) | +| Tests | Integration tests gated on env vars; in-memory `Transport` for unit tests | + +### `mxaccess-compat` + +| | | +|---|---| +| Role | `LMXProxyServer`-shaped methods on top of `Session` | +| Deps | `mxaccess` | +| Tests | Method-equivalence tests against captured `MxNativeCompatibilityServer` outputs | + +## Build / test commands + +To be added to `CLAUDE.md` "Common commands" once `rust/` exists: + +```powershell +# Workspace-wide +cargo build --workspace +cargo test --workspace +cargo clippy --workspace -- -D warnings +cargo fmt --check + +# Single crate +cargo build -p mxaccess-codec +cargo test -p mxaccess-codec + +# Live integration tests (require AVEVA install + Galaxy DB) +$env:MX_LIVE = "1" +$env:MX_GALAXY_DB = "Server=localhost;Database=Galaxy;Integrated Security=True;TrustServerCertificate=True" +$env:MX_NMX_HOST = "localhost" +cargo test -p mxaccess --features live -- --ignored + +# Examples (live under `crates/mxaccess/examples/`; `-p mxaccess` is required because +# `cargo run --example` only resolves examples that belong to a specific crate) +cargo run -p mxaccess --example connect-write-read +cargo run -p mxaccess --example subscribe -- --tag TestChildObject.TestInt +cargo run -p mxaccess --example asb-subscribe -- --tag TestChildObject.TestInt +``` + +## Toolchain & MSRV + +- MSRV is **1.85**, set both in `rust-toolchain.toml` and in `[workspace.package].rust-version`. Both must stay in lock-step; CI fails if they drift. 1.85 is the floor required by the pinned RustCrypto generation (`digest 0.11` / `cipher 0.5` family — `aes 0.9`, `hmac 0.13`, `md-5 0.11`, `sha1 0.11`, `pbkdf2 0.13`) and by the latest `uuid 1.x`; lowering it forces an older crypto generation that conflicts on the resolved `digest`/`cipher` traits. +- Edition **2024** (stable since Rust 1.85, 2025-02). Since MSRV is already 1.85, edition 2024 is a free upgrade. +- `rustfmt` default config + 100-column lines committed. +- `clippy` with `-D warnings` in CI. +- `clippy::unwrap_used`, `clippy::expect_used` set to deny in `mxaccess`, `mxaccess-codec`, `mxaccess-rpc`, `mxaccess-nmx`, `mxaccess-asb`. Allowed in tests via `#[cfg(test)]` overrides. UTF-16LE name decoding in `mxaccess-codec` (`MxReferenceHandle` parsing) must use a fallible helper that maps `String::from_utf16` errors into a typed codec error rather than `.unwrap()`-ing — there is no panicking decode path on the hot wire-parse surface. + +## Feature gates summary + +| Feature | Default | Crate | Effect | +|---|---|---|---| +| `nmx` | yes (Windows) | `mxaccess` | Enables `NmxTransport`, pulls `mxaccess-nmx` | +| `asb` | yes | `mxaccess` | Enables `AsbTransport`, pulls `mxaccess-asb` | +| `metrics` | no | `mxaccess` | Emits `metrics` counters/histograms | +| `serde` | no | `mxaccess`, `mxaccess-codec` | Derives `Serialize`/`Deserialize` | +| `dpapi` | yes (Windows) | `mxaccess-asb` | Provides the Windows DPAPI default `SecretProvider` impl. Off → consumer must supply their own `SecretProvider` (the trait is always present). | +| `galaxy-resolver` | yes | `mxaccess-nmx` | Pulls `mxaccess-galaxy` and exposes the SQL-backed `Resolver`. Off → `mxaccess-nmx` ships without `tiberius`/TDS; consumer supplies a custom `Resolver`. | +| `auth-windows` | yes (Windows) | `mxaccess-galaxy` | Integrated security (SSPI/`winauth`) for SQL Server. Windows-only; Linux integrated security is a separate stretch goal that requires `tiberius`'s `integrated-auth-gssapi` feature + a configured Kerberos KDC. SQL-login fallback works cross-platform without this feature. | +| `windows-com` | yes (Windows) | `mxaccess-rpc` | Uses `windows` crate for GUID/IID helpers | +| `live` (test-only) | no | `mxaccess`, `mxaccess-nmx`, `mxaccess-asb` | Enables tests that hit a live AVEVA install | + +## Workspace `Cargo.toml` skeleton + +```toml +[workspace] +resolver = "2" +members = [ + "crates/mxaccess-codec", + "crates/mxaccess-galaxy", + "crates/mxaccess-rpc", + "crates/mxaccess-callback", + "crates/mxaccess-nmx", + "crates/mxaccess-asb-nettcp", + "crates/mxaccess-asb", + "crates/mxaccess", + "crates/mxaccess-compat", +] + +[workspace.package] +edition = "2024" +license = "MIT" # resolved 2026-05-05; LICENSE at repo root +repository = "https://github.com//mxaccess" +rust-version = "1.85" + +[workspace.dependencies] +bytes = "1" +byteorder = "1" +uuid = { version = "1", features = ["v4", "v7"] } +widestring = "1" +thiserror = "1" +tokio = { version = "1", features = ["net", "io-util", "rt-multi-thread", "sync", "time", "macros"] } +tokio-util = { version = "0.7", features = ["codec"] } +futures-util = "0.3" +tracing = "0.1" +async-trait = "0.1" +# RustCrypto generation: digest 0.11 / cipher 0.5 line. All crates here are pinned to that +# generation so the resolved `digest` / `cipher` graph is coherent. Bumping any one of these +# to the older 0.10/0.12 line will fail to build — pin the generation, not the individual +# versions. This generation requires `rust-version = "1.85"` (set below). +hmac = "0.13" +md-5 = "0.11" +sha1 = "0.11" # crate renamed from `sha-1` (deprecated) to `sha1` upstream +sha2 = "0.11" +rc4 = "0.2" # latest published; on the cipher 0.5 trait reform. +rand = "0.8" +quick-xml = "0.36" # ASB control-plane XML payloads only (e.g. `request.ToXml()` at + # `src/MxAsbClient/AsbSystemAuthenticator.cs:79`); not used for + # net.tcp wire framing. +aes = "0.9" +flate2 = "1" +pbkdf2 = "0.13" +num-bigint = "0.4" # NOTE: review.md [MAJOR] flags this as not constant-time. The DH + # private exponent is long-lived (`AsbSystemAuthenticator.cs:153-166`), + # so a side-channel-leaky `mod_exp` is a security regression vs. an + # opportunity. Tracked as an explicit follow-up in `70-risks-and-open-questions.md` + # to swap to `crypto-bigint` constant-time `mod_exp` once the wire + # round-trips against captured DH handshakes. +tiberius = { version = "0.12", features = ["chrono", "tds73"] } +# `windows` 0.62 is the current line; 0.58 → 0.62 has breaking renames in +# `Win32_System_Rpc` and `Win32_Security_Cryptography` so designing against an older +# pin wastes work. +windows = { version = "0.62", features = [ + "Win32_Foundation", + "Win32_System_Com", + "Win32_Security_Cryptography", + "Win32_System_Rpc", +] } +proptest = "1" +metrics = "0.23" +serde = { version = "1", features = ["derive"] } +arc-swap = "1" +``` + +Pin minor versions in CI; keep workspace-level dependency table consistent across crates. + +## License + +**MIT** (resolved 2026-05-05; see `70-risks-and-open-questions.md` Q2). `LICENSE` file lives at the project root (`c:\Users\dohertj2\Desktop\mxaccess\LICENSE`). All crate `Cargo.toml`s inherit `license = "MIT"` via `workspace.package` so each crate publishes correctly. Workspace deps listed above are MIT/Apache-2.0 compatible; MIT alone satisfies every dep's downstream license obligation. The `windows` crate proxy/stub IDL re-emissions are flagged for legal review only if vendored from Microsoft headers — not applicable to typical `windows-rs`-generated code. diff --git a/design/40-protocol-invariants.md b/design/40-protocol-invariants.md new file mode 100644 index 0000000..05cd6e3 --- /dev/null +++ b/design/40-protocol-invariants.md @@ -0,0 +1,357 @@ +# Protocol invariants — bill of materials + +This is the wire-level spec the Rust port must hit byte-for-byte. Every entry cites its evidence in `src/`, `docs/`, `analysis/`, or `captures/`. + +## COM identifiers + +| Name | GUID | Source | +|---|---|---| +| `NmxServiceClass` (CLSID) | `AE24BD51-2E80-44CC-905B-E5446C942BEB` | `src/MxNativeClient/NmxComContracts.cs:7` | +| `INmxService` (IID) | `575008DB-845D-46C6-A906-F6F8CA86F315` | `src/MxNativeClient/NmxComContracts.cs:24` | +| `INmxService2` (IID) | `2630A513-A974-4B1A-8025-457A9A7C56B8` | `src/MxNativeClient/NmxComContracts.cs:51` | +| `INmxSvcCallback` (IID) | `B49F92F7-C748-4169-8ECA-A0670B012746` | `src/MxNativeClient/NmxComContracts.cs:84` | +| DCE/RPC bind context UUID (initial bind, opnum 0 calls) | `4e0c90df-e39d-4164-a421-ace89484c602` | `docs/Loopback-Protocol-Findings.md:63` | +| DCE/RPC service UUID (altered context, main opnums 0/2/3/5) | `1981974b-6bf7-46cb-9640-0260bbb551ba` | `docs/Loopback-Protocol-Findings.md:64` | +| Standard NDR transfer syntax v2.0 | `8a885d04-1ceb-11c9-9fe8-08002b104860` | [MS-RPCE] §14.3 | + +## INmxService2 opnums (after IUnknown's 0/1/2) + +`INmxService2` inherits from `INmxService`. Opnums are sequential across the inheritance. + +In the IDL/COM proxy these opnums are sequential because `INmxService2` extends `INmxService` and the derived interface continues the same vtable. In the .NET interop interface (`src/MxNativeClient/NmxComContracts.cs:50–80`) the methods are re-declared with the `new` modifier (`new void RegisterEngine(...)`, `new void UnRegisterEngine(...)`, etc.) so the managed `INmxService2` carries its own vtable slots distinct from the base interface — that managed shadowing is a C# interop detail and does **not** affect the wire opnum table. The Rust port targets the IDL/wire opnums (3..11 below), not the .NET interop vtable. + +| Opnum | Method | Inputs | Outputs | +|---|---|---|---| +| 3 | `RegisterEngine` | engineId(i32), engineName(BSTR), callback(*INmxSvcCallback) | hresult | +| 4 | `UnRegisterEngine` | engineId(i32) | hresult | +| 5 | `Connect` | localEngineId(i32), remoteGalaxyId(i32), remotePlatformId(i32), remoteEngineId(i32) | hresult | +| 6 | `TransferData` | remoteGalaxyId(i32), remotePlatformId(i32), remoteEngineId(i32), size(i32), messageBody(byte[size]) | hresult | +| 7 | `AddSubscriberEngine` | localEngineId(i32), subscriberGalaxyId(i32), subscriberPlatformId(i32), subscriberEngineId(i32) | hresult | +| 8 | `RemoveSubscriberEngine` | same as Add | hresult | +| 9 | `SetHeartbeatSendInterval` | ticksPerBeat(i32), maxMissedTicks(i32) | hresult | +| 10 | `RegisterEngine2` | engineId(i32), engineName(BSTR), version(i32), callback(*INmxSvcCallback) | hresult | +| 11 | `GetPartnerVersion` | galaxyId(i32), platformId(i32), engineId(i32) | hresult, version(out i32) | + +Source: `src/MxNativeClient/NmxComContracts.cs:11–80`. + +## INmxSvcCallback opnums + +| Opnum | Method | Inputs | Outputs | +|---|---|---|---| +| 3 | `DataReceived` | bufferSize(i32), dataBuffer(sbyte[bufferSize]) | hresult | +| 4 | `StatusReceived` | bufferSize(i32), statusBuffer(sbyte[bufferSize]) | hresult | + +Source: `src/MxNativeClient/NmxComContracts.cs:85–92`. Method names match the MIDL signatures at `src/MxNativeClient/NmxSvcCallbackMessages.cs:11-12` and `src/MxNativeClient/NmxProcedureMetadata.cs:89-101` exactly — the `Raw` suffix used in earlier drafts was doc-invented and has been removed. + +## Network ports + +| Endpoint | Port | Notes | +|---|---|---| +| `IObjectExporter` (RPCSS endpoint mapper) | 135/tcp | DCE/RPC over TCP | +| `NmxSvc.exe` static endpoint registration | 5026/tcp+udp | Registered with RPCSS; actual listening socket resolved via OXID at runtime (observed dynamic ports e.g. 49704). | +| Callback server (`mxaccess-callback`) | ephemeral | Embedded in OBJREF dual-string | +| ASB endpoint | configurable, typical `net.tcp://host:5021/...` | Read from `HKLM\ArchestrA\ArchestrAServices\{Solution}` | + +## NMX TransferData envelope (46 bytes) + +| Offset | Size | Field | Encoding | +|---|---|---|---| +| 0 | 2 | Version | u16 LE = `1` | +| 2 | 4 | InnerLength | i32 LE = `body.len() - 46` | +| 6 | 4 | Reserved | 4 bytes. **Not preserved by the .NET reference**: `Parse` skips bytes 6..10 and `Encode` always writes `0` there (`src/MxNativeCodec/NmxTransferEnvelope.cs:39–75, 91`). The Rust port intentionally **adds** preservation by carrying these four bytes as `reserved6_10: [u8; 4]` through parse/encode (default `[0; 4]` for new envelopes), per the `10-raw-layer.md` envelope section — this fixes a CLAUDE.md "preserve unknown bytes" gap that the .NET reference does not. | +| 10 | 4 | MessageKind | i32 LE: 1=Metadata, 2=ItemControl, 3=Write | +| 14 | 4 | SourceGalaxyId | i32 LE | +| 18 | 4 | SourcePlatformId | i32 LE | +| 22 | 4 | LocalEngineId | i32 LE | +| 26 | 4 | TargetGalaxyId | i32 LE | +| 30 | 4 | TargetPlatformId | i32 LE | +| 34 | 4 | TargetEngineId | i32 LE | +| 38 | 4 | ProtocolMarker | i32 LE = `0x0000_0201`; on-wire byte sequence `01 02 00 00` (low byte first). Encoded by `BinaryPrimitives.WriteInt32LittleEndian(... ProtocolMarker)` (`src/MxNativeCodec/NmxTransferEnvelope.cs:99`). | +| 42 | 4 | TimeoutMilliseconds | i32 LE (default `30000`) | + +Source: `src/MxNativeCodec/NmxTransferEnvelope.cs:5–104`. + +âš  **InnerLength must match actual body size.** The native adapter logs `NMX Header ... buffer size pktHeader.dwDataSize N doesn't match received message size of 46` (`work_remain.md:74–85`) when it does not. The encoder validates the relationship before transmitting; envelope-only sends with `InnerLength == 0` are rejected unless explicitly opted into for diagnostics. + +## MxReferenceHandle (20 bytes) + +| Offset | Size | Field | Encoding | +|---|---|---|---| +| 0 | 1 | GalaxyId | u8 | +| 1 | 1 | Reserved | u8 = `0` | +| 2 | 2 | PlatformId | u16 LE | +| 4 | 2 | EngineId | u16 LE | +| 6 | 2 | ObjectId | u16 LE | +| 8 | 2 | ObjectSignature | u16 LE = CRC-16/IBM(lowercase UTF-16LE objectTagName) | +| 10 | 2 | PrimitiveId | i16 LE | +| 12 | 2 | AttributeId | i16 LE | +| 14 | 2 | PropertyId | i16 LE | +| 16 | 2 | AttributeSignature | u16 LE = CRC-16/IBM(lowercase UTF-16LE attributeName) | +| 18 | 2 | AttributeIndex | i16 LE = `-1` if array, `0` otherwise | + +CRC-16/IBM polynomial `0xa001` (right-shifted variant). **Initial value `0`** (`src/MxNativeCodec/MxReferenceHandle.cs:51` — literal `ushort crc = 0`, not `0xFFFF`). For each `char` of `name.ToLowerInvariant()`, apply the low byte then the high byte of the UTF-16LE representation (`src/MxNativeCodec/MxReferenceHandle.cs:52–56`). + +Source: `src/MxNativeCodec/MxReferenceHandle.cs:5–120`. Per-char loop at `MxReferenceHandle.cs:47–59`; inner CRC byte step at `MxReferenceHandle.cs:108–119`. + +## Item-control bodies + +| Command | Opcode | Length | +|---|---|---| +| AdviseSupervisory | `0x1f` | 39 bytes (HeaderLength 3 + GUID 16 + AdviseExtra 2 + Payload 18) | +| UnAdvise | `0x21` | 37 bytes (HeaderLength 3 + GUID 16 + Payload 18) | + +The enum defines `Advise = 0x1f` and `AdviseSupervisory = 0x1f` as the same opcode (`src/MxNativeCodec/NmxItemControlMessage.cs:7–8`), but `NmxItemControlMessage.Parse` only accepts `AdviseSupervisory` or `UnAdvise` and rejects any other command byte (`src/MxNativeCodec/NmxItemControlMessage.cs:46–49`). A 37-byte `0x1f` "plain advise" body is **not** a wire shape the codec produces or accepts. The compatibility layer's `AdviseSupervisory` method forwards to `Advise`, both encoded as the 39-byte AdviseSupervisory body (`src/MxNativeClient/MxNativeCompatibilityServer.cs:256–258`). + +AdviseSupervisory layout: `cmd(1) + version u16(2) + correlation(GUID 16) + adviseExtra(2) + handle_projection(14, bytes 6..19 of MxReferenceHandle) + tail u32(4)` (`src/MxNativeCodec/NmxItemControlMessage.cs:25–35,121–142`). The 2-byte `adviseExtra` is omitted for `UnAdvise`. + +**`tail` constant value: `3` (u32 LE = `03 00 00 00`).** `NmxItemControlMessage.FromReferenceHandle` defaults the parameter to `tail = 3` (`src/MxNativeCodec/NmxItemControlMessage.cs:88`) and every call site in the .NET reference relies on that default. The Rust port must emit the literal value `3` for both `AdviseSupervisory` and `UnAdvise`; emitting any other value will be rejected by the responding NMX. + +Source: `src/MxNativeCodec/NmxItemControlMessage.cs:5–154`. + +## Write bodies (`0x37`, normal) + +Common prefix (18 bytes): `cmd(1=0x37) + version u16(2=1) + handle_projection(14) + wireKind(1)` (`src/MxNativeCodec/NmxWriteMessage.cs:11–13,207–213`). `HandleProjectionOffset = 3`, `HandleProjectionLength = 14`, `KindOffset = 17`. There is **no** padding between version and the handle projection; the handle projection is bytes 6..19 of the 20-byte `MxReferenceHandle` written directly at offset 3. + +Normal scalar suffix (14 bytes + writeIndex): `[-1 i16] + filler(8 zero bytes) + clientToken u32(4) + writeIndex i32(4)` (`src/MxNativeCodec/NmxWriteMessage.cs:215–226`). + +Boolean has its own 11-byte suffix instead: `7 zero bytes + clientToken u32(4) + writeIndex i32(4)` (`src/MxNativeCodec/NmxWriteMessage.cs:228–238`). + +| WireKind | Type | Value section | Total | +|---|---|---|---| +| `0x01` | Boolean | 4 bytes literal `[0xff,0xff,0xff,0x00]` (true) or `[0x00,0xff,0xff,0x00]` (false). Bytes 1 and 2 are `0xFF` filler, NOT reserved zeros (`src/MxNativeCodec/NmxWriteMessage.cs:257`). | 37 (`KindOffset(17) + 1 + 4 + 11 + 4`, `src/MxNativeCodec/NmxWriteMessage.cs:121–128`) | +| `0x02` | Int32 | 4 bytes LE | 40 | +| `0x03` | Float32 | 4 bytes IEEE | 40 | +| `0x04` | Float64 | 8 bytes IEEE | 44 | +| `0x05` | String | recordLength i32(4) + valueByteLength i32(4) + UTF-16LE bytes(N) + null(2) | **44 + N** (`KindOffset(17) + 1 + 4 + 4 + N + 14 + 4`, `src/MxNativeCodec/NmxWriteMessage.cs:148–157`) | +| `0x05` | DateTime | Same shape as String; value is UTF-16LE of `DateTime.ToString("M/d/yyyy h:mm:ss tt", InvariantCulture)` + null (`src/MxNativeCodec/NmxWriteMessage.cs:262,390–393`) | **44 + N** | +| `0x41` | BoolArray | 4 unused bytes + count u16 at body[22] + elementWidth u16 at body[24] + elements at body[28] | 18 (prefix) + 10 (array header) + 2N + 14-byte suffix + 4 writeIndex | + +**BoolArray element encoding (writes and reads agree):** each element is a little-endian `i16`, **not** a single byte. `true` → `-1` → `[0xFF, 0xFF]`; `false` → `0` → `[0x00, 0x00]`. Encoder: `BinaryPrimitives.WriteInt16LittleEndian(..., values[i] ? (short)-1 : (short)0)` (`src/MxNativeCodec/NmxWriteMessage.cs:307`). Decoder: `BinaryPrimitives.ReadInt16LittleEndian(...) != 0` (`src/MxNativeCodec/NmxSubscriptionMessage.cs:282, 290`). Element width is therefore 2 bytes (the `2N` in the BoolArray total), and the array-header `elementWidth` field carries `2`. +| `0x42` | Int32Array | same shape, 4-byte elements | 18 + 10 + 4N + 14 + 4 | +| `0x43` | Float32Array | same | 18 + 10 + 4N + 14 + 4 | +| `0x44` | Float64Array | same, 8-byte elements | 18 + 10 + 8N + 14 + 4 | +| `0x45` | StringArray / DateTimeArray | per-element length-prefixed records (`src/MxNativeCodec/NmxWriteMessage.cs:346–362`) | 18 + 10 + Σ(per-element) + 14 + 4 | + +**Encoder vs decoder asymmetry for array headers (preserve verbatim):** +The encoder writes `count` as **u16 at body[22]** and `elementWidth` as **u16 at body[24]** — both 2-byte little-endian values (`src/MxNativeCodec/NmxWriteMessage.cs:181–182`). The subscription/callback decoder, however, reads `count` as **u16 at body+4** and `elementWidth` as **i32 at body+6** — a 4-byte little-endian read (`src/MxNativeCodec/NmxSubscriptionMessage.cs:264–265`). Because the high u16 of the encoder's `[count, elementWidth]` slot is the small `elementWidth` value and the bytes at offsets 26..27 are zero (no other writes target that slot — `NmxWriteMessage.cs:170–186`), an i32 read at body+6 of a captured write body sees the same numeric value. A Rust port must replicate the asymmetry exactly: write u16/u16, read u16+i32, do not normalize either side. + +Source: `src/MxNativeCodec/NmxWriteMessage.cs:7–394`. Per-type matrices: `analysis/frida/write-body-matrix.tsv`, `write-array-body-matrix.tsv`, `write-mode-matrix.tsv`. + +## Write2 (timestamped) + +Same as `Write` but the 18-byte trailer (14-byte suffix + 4-byte writeIndex) is rewritten by `WriteTimestampedSuffix` (`src/MxNativeCodec/NmxWriteMessage.cs:240–251`). The trailer is **not** lengthened — bytes are repacked, not inserted: + +| Trailer offset | Size | Normal `Write` | `Write2` (timestamped) | +|---|---|---|---| +| 0 | 2 | `-1 i16` (`NmxWriteMessage.cs:222`) | **`0 i16`** (`NmxWriteMessage.cs:247`) | +| 2 | 8 | 8 zero filler bytes (`NmxWriteMessage.cs:223–225`, `WriteNormalSuffix` zero-init) | **8-byte `FILETIME` from `timestamp.ToFileTime()`** (`NmxWriteMessage.cs:248`) | +| 10 | 4 | `clientToken u32` (`NmxWriteMessage.cs:225`) | `clientToken u32` (`NmxWriteMessage.cs:249`) | +| 14 | 4 | `writeIndex i32` (`NmxWriteMessage.cs:226`) | `writeIndex i32` (`NmxWriteMessage.cs:250`) | + +The FILETIME **replaces** the eight-byte filler that `WriteNormalSuffix` would otherwise leave zero; nothing is inserted between offsets 12 and 19. Total body size is identical to the corresponding non-timestamped `Write`. + +Source: `src/MxNativeCodec/NmxWriteMessage.cs:240–251` (`WriteTimestampedSuffix`); compare to `WriteNormalSuffix` at `src/MxNativeCodec/NmxWriteMessage.cs:215–226`. + +## WriteSecured2 (`0x38`) + +`Write2` body (without trailing clientToken+writeIndex), then: + +``` +currentUserToken(16) + clientNameLen(i32) + clientNameBytes(UTF-16LE+null) + + verifierUserToken(16) + (-1 i16) + clientToken(u32) + writeIndex(i32) +``` + +Observed authenticated user token (sample): `07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f` (`captures/036-frida-secured*`). + +Source: `src/MxNativeCodec/NmxSecuredWrite2Message.cs:6–105`. + +## SubscriptionStatus (`0x32`) + +``` +cmd(1=0x32) + version(2=1) + recordCount(i32) + operationId(GUID 16) + + correlationId(GUID 16) + records[recordCount] +record: status(i32) + detailStatus(i32) + quality(u16) + + timestamp_filetime(i64) + wireKind(u8) + value(N) +``` + +**Header length: 39 bytes** = cmd(1) + version(2) + recordCount(4) + operationId(16) + correlationId(16). Records start at byte offset 39 (`src/MxNativeCodec/NmxSubscriptionMessage.cs:98–99`, `for (int i = 0; i < recordCount; i++)` over `offset = 39`). + +## DataUpdate (`0x33`) + +``` +cmd(1=0x33) + version(2=1) + recordCount(i32) + operationId(GUID 16) + + records[recordCount] +record: status(i32) + quality(u16) + timestamp_filetime(i64) + wireKind(u8) + value(N) +``` + +**Header length: 23 bytes** = cmd(1) + version(2) + recordCount(4) + operationId(16). There is **no** per-message correlationId on `0x33`; the record starts at byte offset 23 (`src/MxNativeCodec/NmxSubscriptionMessage.cs:54–55, 76` — `recordCount` read at offset 3, `operationId` at offset 7, `recordOffset = 23`). The 16-byte difference between the two header lengths (39 − 23) is exactly the `0x32`-only correlationId slot. + +âš  **Hard invariant: `recordCount == 1` for `0x33` DataUpdate.** The .NET parser throws `ArgumentException` on any other value (`src/MxNativeCodec/NmxSubscriptionMessage.cs:71–74` — `if (recordCount != 1) throw`). The Rust port replicates this as a typed error rather than degrading to opaque-bytes preservation, matching the executable spec. Multi-sample buffered batches are tracked as not-yet-wire-proven in `70-risks-and-open-questions.md` (R2/R13); only single-record DataUpdate frames have been observed in `captures/`. + +Wire kinds **0x01..0x07** (scalars) and **0x41..0x46** (arrays). The set is asymmetric across encode/decode: the write-side encoder collapses both `StringArray` and `DateTimeArray` to `0x45` and never emits `0x46` (`src/MxNativeCodec/NmxWriteMessage.cs:107`); the subscription/callback decoder accepts and demuxes `0x46` as `DateTimeArray` (`src/MxNativeCodec/NmxSubscriptionMessage.cs:173,275`). **Writes use `0x41..0x45` only; reads/callbacks accept `0x41..0x46`.** + +Source: `src/MxNativeCodec/NmxSubscriptionMessage.cs:5–428`. + +## Reference registration (`0x10` / `0x11`) + +Request (`0x10`) — fixed 55-byte header, then variable strings, then 20-byte tail. `HeaderLength = 55` (`src/MxNativeCodec/NmxReferenceRegistrationMessage.cs:15`). The codec only writes at six explicit offsets inside the header (`NmxReferenceRegistrationMessage.cs:80–87`); all other bytes within `[0..55)` are left as zero from the freshly-allocated buffer (`NmxReferenceRegistrationMessage.cs:71–78`) and are preserved verbatim per CLAUDE.md unknown-bytes rule. + +| Offset | Size | Field | Encoding / source | +|---|---|---|---| +| 0 | 1 | Command | u8 = `0x10` (`NmxReferenceRegistrationMessage.cs:80`) | +| 1 | 2 | Version | u16 LE = `1` (`NmxReferenceRegistrationMessage.cs:81`) | +| 3 | 4 | ItemHandle | i32 LE (`NmxReferenceRegistrationMessage.cs:82`) | +| 7 | 16 | ItemCorrelationId | GUID bytes (`NmxReferenceRegistrationMessage.cs:83`) | +| 23 | 2 | `-1 i16` marker | i16 LE = `-1` (`NmxReferenceRegistrationMessage.cs:85`) | +| 25 | 2 | Reserved gap | preserved as `0` — never written explicitly; zero-init from `new byte[]` (`NmxReferenceRegistrationMessage.cs:71–78`). Preserved verbatim per CLAUDE.md unknown-bytes rule. | +| 27 | 4 | Constant `1 i32` | i32 LE = `1` (`NmxReferenceRegistrationMessage.cs:86`) | +| 31 | 24 | Reserved gap | preserved as `0` — never written explicitly; zero-init from `new byte[]` (`NmxReferenceRegistrationMessage.cs:71–78`). The `Parse` method reads these bytes implicitly only via `body.Slice(offset, ItemStringReservedLength)` further on; the prefix range itself is round-tripped untouched. Preserved verbatim per CLAUDE.md unknown-bytes rule. | + +After the 55-byte prefix: + +``` +itemDefinition(taggedString: i32 length with high byte 0x81 + UTF-16LE + null) +itemStringReserved(8 bytes; Parse asserts all-zero, NmxReferenceRegistrationMessage.cs:42–47) +itemContext(untaggedString: i32 length + UTF-16LE + null) +tail(20 bytes; first 19 zero, tail[19] = subscribe_flag, NmxReferenceRegistrationMessage.cs:54–56,92) +``` + +Result (`0x11`): +``` +cmd(1) + version(2) + itemHandle(i32) + correlation(GUID 16) + + firstTimestamp(i64) + secondTimestamp(i64) + + statusCategory(u8) + statusDetail(u8) + + blockLength(i32) + + itemDefinition(tagged) + mxDataType(i32) + reserved(6) + + itemContext(untagged) + + tail(16 zero) +``` + +**Tail = 16 zero bytes is a hard parser invariant.** `NmxReferenceRegistrationResultMessage.Parse` asserts both that the trailing slice is exactly `TailLength = 16` (`src/MxNativeCodec/NmxReferenceRegistrationResultMessage.cs:21, 59–62`) and that every byte in it is `0` — `body.Slice(offset, TailLength).IndexOfAnyExcept((byte)0) >= 0` throws `ArgumentException` (`NmxReferenceRegistrationResultMessage.cs:64–67`). Wire-confirmed against the `0x11` registration-result frames captured under `captures/080-frida-buffered-external-write-testint/` (per `docs/Capture-Run-2026-04-25.md:480–486`, which records that this capture supplied the stable normal-and-buffered `0x10` registration bodies *plus the matching `0x11` registration-result frames* used by the `NmxReferenceRegistrationResultMessage` tests — the same parser whose all-zero-tail assertion would have rejected those captures had the wire bytes been non-zero). Per CLAUDE.md's preserve-unknown-bytes rule the Rust port still carries them as 16 explicit bytes (not skipped) so non-zero tails surface as a typed parse error rather than silent acceptance. + +Tagged-string encoding: `4-byte length: tagged ? (byteLength | 0x81000000) : byteLength` followed by UTF-16LE bytes + null terminator. + +Source: `src/MxNativeCodec/NmxReferenceRegistrationMessage.cs:6–142`, `NmxReferenceRegistrationResultMessage.cs:6–120`. + +## ASB Variant + +| Offset | Size | Field | +|---|---|---| +| 0 | 2 | Type ID (u16 LE, AsbDataType) | +| 2 | 4 | Length (i32 LE, logical) | +| 6 | 4 | PayloadLength (i32 LE, byte count) | +| 10 | N | Payload | + +AsbDataType IDs (live-proven): Bool=17, Int32=4, Float=8, Double=9, String=10 (UTF-16LE), DateTime=11 (FILETIME), Duration=12 (.NET Ticks), Int32Array=44, FloatArray=48, DoubleArray=49, StringArray=50, DateTimeArray=51, DurationArray=52, BoolArray=57. + +Source: `src/MxAsbClient/AsbContracts.cs:1169–1293`, `docs/ASB-Variant-Wire-Format.md`. + +## ASB AsbStatus + +| Offset | Size | Field | +|---|---|---| +| 0 | 1 | Count (sbyte: -1 marker-only, 0..N elements) | +| 1 | 4 | PayloadLength (u32 LE) | +| 5 | N | Payload (packed status elements) | + +Status element: marker byte (high bit clear = value follows), low 7 bits = type ID. Known IDs: 5=MxStatusCategory, 6=MxStatusDetail, 7=MxQuality. If value present, 2-byte u16 LE follows. + +Quality bits (mask `0x00C0`): `0xC0`=Good, `0x40`=Uncertain, `0x00`=Bad. + +Source: `src/MxAsbClient/AsbContracts.cs:1106–1167`, `src/MxAsbClient/AsbPublishedValue.cs:87–119`. + +## Authentication + +### NTLMv2 (NMX/DCE-RPC) + +- Negotiate flags: Unicode | RequestTarget | Sign | Seal | ExtendedSessionSecurity | Negotiate128 | KeyExchange +- NTLMv2 NT-OWF = `HMAC-MD5(MD4(unicode(password)), unicode(uppercase(user) + domain))` +- Type3 with AV pairs from server's TargetInfo (channel binding optional) +- Packet integrity: `HMAC-MD5(SignKey, sequence || plaintext)` → first 8 bytes XOR with RC4 keystream +- Sign-key / seal-key: MD5 over magic constants + +Source: `src/MxNativeClient/ManagedNtlmClientContext.cs:1–389`. Reference: [MS-NLMP]. + +### ASB application-level + +1. DH key exchange (prime, generator, key size in `HKLM\ArchestrA\ArchestrAServices\{Solution}`). +2. Shared secret = `DH(remote_pub, local_priv, prime)`. +3. AES key = `SHA1(shared_secret || passphrase)`. +4. Per-message HMAC (algorithm in registry: MD5/SHA1/SHA512). +5. AES-128 message encryption with `PBKDF2(passphrase, salt, 1000 iters, SHA1)`. + +Passphrase obtained via DPAPI: +- `HKLM\[Wow6432Node\]ArchestrA\ArchestrAServices\{SolutionName}\sharedsecret` +- `ProtectedData.Unprotect(bytes, Unicode("wonderware"), LocalMachine)` + +Source: `src/MxAsbClient/AsbSystemAuthenticator.cs:8–167`, `AsbRegistry.cs:8–67`. + +## Galaxy SQL schema (subset) + +| Table | Columns of interest | +|---|---| +| `dbo.gobject` | tag_name, gobject_id, package_id | +| `dbo.instance` | mx_platform_id, mx_object_id, mx_engine_id | +| `dbo.dynamic_attribute` | mx_data_type, is_array | +| `dbo.package` | inheritance chain (recursive CTE) | +| `dbo.user_profile` | user_guid, user_profile_name, intouch_access_level, roles | + +`GalaxyRepositoryTagResolver.cs:209–293` is the canonical query (recursive CTE for `deployed_package_chain` → `ranked_dynamic` → `primitive_attributes`). + +User-role parsing: hex-encoded UTF-16LE blob, scan for null-terminated wide-char strings (`GalaxyRepositoryUserResolver.cs:87–133`). + +## HRESULT / status codes (observed) + +| HRESULT | Meaning | Source | +|---|---|---| +| `0x00000000` | S_OK | trivially | +| `0x00000001` | S_FALSE (pending/retry) | observed in callbacks | +| `0x80004021` | Returned by `MxNativeSession.WriteSecuredAsync` (the .NET native reimplementation) before reaching the wire — `src/MxNativeClient/MxNativeSession.cs:218-221`. **NOT** a real LMX-proxy constraint: `wwtools/mxaccesscli/` verifies the production LMX `WriteSecured` always takes two user ids `(currentUserId, verifierUserId, value)` and accepts single-user secured writes as `currentUserId == verifierUserId`. See R6 in `70-risks-and-open-questions.md`. | `docs/DotNet10-Native-Library-Plan.md`; `wwtools/mxaccesscli/docs/api-notes.md:60-72` | +| `0x80070057` | E_INVALIDARG | observed for stale handles | +| `0x8007139F` | `ERROR_INVALID_STATE` — observed from `IDataConsumer.ProcessActivateSuspend2` while the namespace is not yet activated. Despite the canonical Win32 name, the codebase elsewhere has labelled this "uninitialized object" / `EngineNotRegistered`; the canonical Win32 mapping is `ERROR_INVALID_STATE` per `docs/Capture-Run-2026-04-25.md:888` and `docs/MXAccess-Public-API.md:326`. | `docs/Capture-Run-2026-04-25.md:872,886,888`; `docs/MXAccess-Public-API.md:313,326`; `docs/Current-Sprint-State.md:119,122` | +| `0x80040154` | REGDB_E_CLASSNOTREG | callback proxy/stub missing | +| `0x8001011D` | ORPC callback OBJREF rejected (security binding) | observed in callback flows | +| `0x800706BA` | RPC server unavailable | NmxSvc not running | + +## Status detail codes (subset) + +From `MxStatusSource.RespondingNmx`-side callbacks: +- 16 = timeout +- 17 = platform-comm failure +- 18 = invalid platform id +- 21 = invalid reference +- 22 = no Galaxy Repository +- 23 = invalid object id +- 30 = type mismatch +- 31 = not readable +- 32 = not writeable +- 33 = access denied +- 56 = secured-write related +- 57 = verified-write related + +âš  **Three different on-wire widths carry "detail"-shaped numbers; do not conflate them.** + +| Field | Width | Signedness | Where it lives | Source | +|---|---|---|---|---| +| `MxStatus.Detail` | 2 bytes | **`i16`** (signed `short`) | `MxStatus` record, the canonical promoted-status type | `src/MxNativeCodec/MxStatus.cs:32` (`short Detail`) | +| DataUpdate / SubscriptionStatus record `quality` | 2 bytes | **`u16`** (unsigned, bitmask, mask `0x00C0`) | per-record header in `0x32`/`0x33` frames | `src/MxNativeCodec/NmxSubscriptionMessage.cs:136` | +| Record `status` and (SubscriptionStatus only) `detailStatus` | 4 bytes each | **`i32`** (signed) | per-record header in `0x32`/`0x33` frames | `src/MxNativeCodec/NmxSubscriptionMessage.cs:126` (`status`), `:132` (`detailStatus`) | + +When promoting a record to an `MxStatus`, the i32 `detailStatus` is **narrowed** to `i16` — sign-extension applies on the way out, but values outside `i16` range are not representable. The Rust port must preserve the on-wire width on each layer (don't widen everything to `i32` on parse) so that an out-of-range `detailStatus` is a typed error rather than a silent truncation. + +Source: `docs/MXAccess-Public-API.md`, the MxStatus parsing in `src/MxNativeCodec/MxStatus.cs:3–126`, and the per-record decoder in `src/MxNativeCodec/NmxSubscriptionMessage.cs:117–149`. + +## Completion-only frames + +5-byte completion frame `00 00 50 80 00` → `MxStatus.WriteCompleteOk` (the only proven mapping). + +1-byte completion frames (`0x00`, `0x41`, `0xEF`) are preserved as raw, unpromoted statuses (`work_remain.md:164–174`). Do not synthesise typed completion events from them. + +## Items not yet wire-proven + +- Multi-sample buffered batches (`recordCount > 1` in `0x33` frames). Provider does not currently emit them. +- Generic `OperationComplete` events outside the proven 5-byte completion frame. +- Activate/Suspend transition events. +- ASB write timestamp + status fields in publish responses. + +Listed with mitigation strategy in `70-risks-and-open-questions.md`. The codec must accept these as opaque bytes and not promote them. diff --git a/design/50-error-model.md b/design/50-error-model.md new file mode 100644 index 0000000..13e769b --- /dev/null +++ b/design/50-error-model.md @@ -0,0 +1,304 @@ +# Error model + +## Goals + +- No `HRESULT` bare integers in the public API. +- Every operation returns `Result`. +- `Error` is `#[non_exhaustive]` so adding variants is non-breaking. +- Every error variant carries enough context to debug without re-running. +- No panics in the public API. + +## Public `mxaccess::Error` + +```rust +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum Error { + #[error("connection: {0}")] + Connection(#[from] ConnectionError), + + #[error("authentication: {0}")] + Auth(#[from] AuthError), + + #[error("protocol: {0}")] + Protocol(#[from] ProtocolError), + + #[error("configuration: {0}")] + Configuration(#[from] ConfigError), + + #[error("type mismatch on {reference}: expected {expected:?}, got {actual:?}")] + TypeMismatch { reference: Arc, expected: MxValueKind, actual: MxValueKind }, + // The `{expected:?} {actual:?}` formatting above requires `MxValueKind: Debug`. + // The codec layer guarantees this: `MxValueKind`, `MxValue`, `MxStatus`, + // `MxStatusCategory`, and `MxStatusSource` all `#[derive(Debug)]` (this is a + // public-API requirement of the codec crate, not just a convenience). The + // .NET reference enum at src/MxNativeCodec/MxValueKind.cs:3-18 is the spec + // for the variants; the Rust port reproduces them and pins `Debug` as part + // of the contract so `Error::Display` and `tracing` fields render usefully. + + #[error("security: {0}")] + Security(#[from] SecurityError), + + #[error("unsupported on {transport:?} transport: {operation}")] + Unsupported { operation: Cow<'static, str>, transport: TransportKind }, + + #[error("operation timed out after {0:?}")] + Timeout(Duration), + + #[error("operation cancelled")] + Cancelled, + + #[error("status: success={success} category={category:?} source={source:?} detail={detail}")] + Status { + /// `MxStatus.Success` (`short`). `-1` is the documented OK sentinel + /// (src/MxNativeCodec/MxStatus.cs:29,36-58). Carried verbatim for + /// byte-parity diagnostics; consumers usually inspect `category` first. + success: i16, + category: MxStatusCategory, + source: MxStatusSource, + detail: i16, + }, + + #[error("io: {0}")] + Io(#[from] std::io::Error), +} +``` + +Sub-errors (`ConnectionError`, `AuthError`, `ProtocolError`, `ConfigError`, `SecurityError`) are similar `thiserror`-derived `#[non_exhaustive]` enums. Sources preserved via `#[source]`. + +`MxStatusCategory` and `MxStatusSource` (re-exported from `mxaccess-codec`) are likewise `#[non_exhaustive]` — AVEVA may legally introduce new short-valued category/source variants, and the .NET reference already has `Unknown=-1` open-set sentinels (src/MxNativeCodec/MxStatus.cs:3,17). Without `#[non_exhaustive]`, downstream `match` statements would freeze the API on the first new category. The Rust port mirrors the **seven** `MxStatusSource` values one-for-one as named in the .NET enum — `Unknown=-1, RequestingLmx=0, RespondingLmx=1, RequestingNmx=2, RespondingNmx=3, RequestingAutomationObject=4, RespondingAutomationObject=5` (src/MxNativeCodec/MxStatus.cs:17-26). `DetectedBy` is essential for diagnostics: it tells the consumer which layer (requesting LMX vs responding NMX vs the automation object itself) detected the fault. Verified against wwtools/mxaccesscli/docs/api-notes.md:107-136 — every `MxStatusInfo[]` entry exposes `DetectedBy`. + +```rust +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +#[non_exhaustive] +#[repr(i16)] +pub enum MxStatusCategory { + Unknown = -1, + Ok = 0, + Pending = 1, + Warning = 2, + CommunicationError = 3, + ConfigurationError = 4, + OperationalError = 5, + SecurityError = 6, + SoftwareError = 7, + OtherError = 8, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +#[non_exhaustive] +#[repr(i16)] +pub enum MxStatusSource { + Unknown = -1, + RequestingLmx = 0, + RespondingLmx = 1, + RequestingNmx = 2, + RespondingNmx = 3, + RequestingAutomationObject = 4, + RespondingAutomationObject = 5, +} +``` + +```rust +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum ConnectionError { + #[error("tcp connect to {addr} failed")] + TcpConnect { addr: SocketAddr, #[source] source: std::io::Error }, + #[error("OXID resolve failed")] + OxidResolve { #[source] source: RpcError }, + // `RpcError` is a public, stable, `std::error::Error`-implementing type + // defined in the `mxaccess-rpc` crate (per the topology in 30-crate-topology.md) + // and re-exported here. Its declaration is: + // + // #[derive(Debug, thiserror::Error)] + // #[non_exhaustive] + // pub enum RpcError { /* DCE/RPC framing/PDU/NDR variants */ } + // + // Required because `#[source]` on the `OxidResolve` variant above demands + // `std::error::Error + 'static`. The variant set is documented in the raw + // layer; this crate guarantees only that `RpcError: std::error::Error + + // Send + Sync + Debug + Display + 'static` and is `#[non_exhaustive]` so + // new RPC failure modes can be added without a breaking change. + #[error("RPC server unavailable")] + ServerUnavailable, + #[error("callback proxy/stub not registered (REGDB_E_CLASSNOTREG)")] + CallbackProxyMissing, + #[error("engine not registered (UninitializedObject)")] + EngineNotRegistered, +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum AuthError { + #[error("NTLM rejected: {reason}")] + Ntlm { reason: String }, + #[error("ASB DH handshake failed: {reason}")] + AsbHandshake { reason: String }, + #[error("DPAPI shared secret unavailable: {reason}")] + SharedSecret { reason: String }, +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum ProtocolError { + #[error("decode at offset {offset} ({reason}); buffer len {buffer_len}")] + Decode { offset: usize, reason: &'static str, buffer_len: usize }, + #[error("inner length {declared} does not match body length {actual}")] + InnerLengthMismatch { declared: i32, actual: usize }, + #[error("unexpected opcode {0:#x}")] + UnexpectedOpcode(u8), + #[error("envelope mismatch: {reason}")] + EnvelopeMismatch { reason: &'static str }, +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum ConfigError { + /// Covers both ill-formed arguments and stale/unknown item handles. + /// The proven x86 stack returns `0x80070057 E_INVALIDARG` for stale + /// handles (captures/008-write-test-int-same-value/harness.log:7, + /// analysis/ghidra/exports/LmxProxy.dll.item-helper-decompile.md:60,75,88,164). + /// Discriminate via `detail` if a finer split is justified by future evidence. + #[error("invalid argument: {detail}")] + InvalidArgument { detail: String }, + #[error("galaxy resolver: {reason}")] + Galaxy { reason: String }, +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum SecurityError { + #[error("callback OBJREF rejected (HRESULT 0x8001011D)")] + CallbackObjRefRejected, + #[error("verifier user token required for secured write")] + VerifierRequired, +} +``` + +## Mapping rules + +The async layer translates raw protocol outcomes into typed errors at exactly one place: at the boundary where a `Result<_, RawError>` from `mxaccess-nmx` or `mxaccess-asb` becomes a `Result<_, Error>` exposed to the consumer. + +| Source | Maps to | +|---|---| +| TCP connect failure | `Error::Connection(ConnectionError::TcpConnect { addr, source })` | +| OXID resolve failure | `Error::Connection(ConnectionError::OxidResolve { source })` | +| NTLM Type1/Type3 reject | `Error::Auth(AuthError::Ntlm { reason })` | +| DH handshake mismatch (ASB) | `Error::Auth(AuthError::AsbHandshake { reason })` | +| HRESULT `0x80070057` (incl. stale/unknown item handles) | `Error::Configuration(ConfigError::InvalidArgument { detail })` | +| HRESULT `0x80040154` | `Error::Connection(ConnectionError::CallbackProxyMissing)` | +| HRESULT `0x8007139F` | `Error::Connection(ConnectionError::EngineNotRegistered)` | +| HRESULT `0x8001011D` | `Error::Security(SecurityError::CallbackObjRefRejected)` (citation: `docs/NMX-COM-Contracts.md:590-594`, the full surrounding paragraph; no capture currently logs this HRESULT, so promotion to a typed error is based on probe analysis rather than a recorded wire fixture — re-examine if a future capture contradicts the narrative) | +| HRESULT `0x800706BA` | `Error::Connection(ConnectionError::ServerUnavailable)` | +| HRESULT `0x80004021` from a Write operation | preserved verbatim as `Error::Status { ..raw HRESULT carried }` — no synthesized typed error. Note: this HRESULT was previously mapped to a synthesized "single-token `WriteSecured` not supported" error; that mapping has been **removed** per `wwtools/mxaccesscli/` verification. Real MxAccess `WriteSecured` always takes two user ids (`(currentUserId, verifierUserId, value)`) and the LMX proxy CLI exposes single-user secured writes as `currentUserId == verifierUserId`. The 0x80004021 in `MxNativeSession.WriteSecuredAsync` (src/MxNativeClient/MxNativeSession.cs:218-221) is a defect of that .NET reimplementation, not a real LMX constraint — see R6 in `70-risks-and-open-questions.md` | +| Decoder failure on inbound frame | `Error::Protocol(ProtocolError::Decode { ... })` | +| `MxStatus` with `category != Ok` from `read`/`write`/`subscribe` | `Error::Status { success, category, source, detail }` (the full 4-tuple from the .NET `MxStatus` record at src/MxNativeCodec/MxStatus.cs:28-33 — `success` is the documented OK sentinel `-1` and is carried for byte-parity diagnostics per CLAUDE.md "preserve unknown bytes") | +| `MxStatus` with `category != Ok` on a `DataChange` from a `Subscription` | **not** an error — set on `DataChange.status`, surfaced through the stream | + +The split between operation-status-as-error and subscription-status-as-data is the only sensible mapping. A subscription frame with `category=Warning, detail=stale` is data the caller wants to receive and inspect; it is not an exception. An operation that returns `category=ConfigurationError, detail=21 (invalid reference)` is a failure to produce a value and should be surfaced as `Err`. + +## Cancellation semantics + +- **Drop**: dropping a future cancels it. The library does not `block_on` inside drop. +- **Subscription drop**: holds a `tokio::sync::oneshot::Sender` to signal `UnAdvise` from the task that owns the connection. On drop, the sender is consumed; the connection task fires `UnAdvise` best-effort. The drop returns immediately; no async cleanup is awaited. If the best-effort `UnAdvise` fails (e.g. connection already gone), the failure is logged via `tracing::warn!` with the subscription handle and the underlying error. The drop completes regardless. (Log signature precedent: `captures/probe-add-remove.log:7`, which records the .NET `LMX_UnAdvise` per-handle warning emitted when the proxy reports a non-Ok status during teardown.) +- **Session shutdown**: `Session::shutdown(timeout)` returns `Ok(())` once `UnregisterEngine` completes or the timeout elapses. Drop without `shutdown` runs an unbounded best-effort cleanup spawn — fine for tests, suboptimal for production where `shutdown` is the recommendation. +- **`CancellationToken`**: long operations (`subscribe_buffered`, recovery, `connect`) accept an optional token. Cancellation surfaces as `Error::Cancelled`. +- **Timeout**: `tokio::time::timeout` works on every operation because `async fn`s are cancel-correct by construction. + +## Panic policy + +Public API panics only for invariants the type system enforces (e.g. an array length that cannot be wrong). In practice this means: **no `unwrap()`, `expect()`, or `panic!()` in non-test code paths**. + +Lints: +- `clippy::unwrap_used = "deny"` +- `clippy::expect_used = "deny"` +- `clippy::panic = "deny"` +- `clippy::indexing_slicing = "deny"` — out-of-bounds `slice[i]` is a panic; codecs use `slice.get(i).ok_or(...)?` instead. +- `clippy::unreachable = "deny"` — `unreachable!()` is still a panic; force `Err(ProtocolError::...)` on supposedly-impossible decoder branches so the wire is never trusted to match the type system. +- `clippy::todo = "deny"` — `todo!()` must not ship in non-test code. +- `clippy::arithmetic_side_effects = "warn"` — overflow-on-debug is a real footgun, but the codec does legitimate `u8`/`u16` field arithmetic where the lint is noisy; `warn` keeps it visible without blocking honest cases. Use `wrapping_*`/`checked_*` explicitly when the intent is non-default. + +Test modules opt out of the unwrap/expect/indexing rules via the actual pattern: + +```rust +#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing))] +``` + +placed at the top of the test module (or `#[cfg(test)] mod tests { #![allow(...)] ... }` for inline test modules). CI rejects PRs that introduce any of the denied lints in non-test paths. + +## Diagnostics surface + +`Error::Display` is short and operator-friendly. `Error::source()` walks the cause chain. `Error::Debug` is verbose for logs. + +```rust +match session.write("X.Y", v).await { + Ok(()) => {} + Err(e) => { + tracing::error!(error = ?e, error.source = ?e.source(), "write failed"); + return Err(e); + } +} +``` + +For protocol-level decode failures, every `ProtocolError::Decode` carries: +- byte offset in the frame +- reason (`&'static str` — interned message) +- buffer length + +This matches the .NET reference's tendency to throw `ArgumentException` with byte-offset messages. + +## Recovery decisions + +`Error::is_retryable() -> bool` informs the default `RecoveryPolicy`: + +| Variant | Retryable? | +|---|---| +| `Connection(ServerUnavailable)` | no — `0x800706BA` in the proven stack is a structural callback-marshalling failure (no SYN to the advertised callback port after security bindings are added), not a flapping `NmxSvc.exe`. Retrying loops forever. Evidence: `analysis/proxy/managed-registerengine2-callback-probe.txt:8`, `docs/NMX-COM-Contracts.md:592`. | +| `Connection(TcpConnect)` | depends on the inner `io::Error.kind()` — same dispatch as `Io(_)` below: `WouldBlock`/`Interrupted`/`TimedOut`/`ConnectionReset` → yes; `AddrNotAvailable`/`HostUnreachable`/`ConnectionRefused` → no. Implementation: `is_retryable()`'s `Connection(TcpConnect { source, .. })` arm delegates to `source.kind()` rather than blanket-yes; otherwise a name-not-found hot-loops. | +| `Connection(OxidResolve)` | yes | +| `Connection(CallbackProxyMissing)` | no (config issue) | +| `Connection(EngineNotRegistered)` | yes (re-register) | +| `Auth(Ntlm)` | no (credentials are wrong) | +| `Auth(AsbHandshake)` | no | +| `Auth(SharedSecret)` | no | +| `Configuration(*)` | no | +| `TypeMismatch` | no | +| `Security(*)` | no | +| `Status` with `category=CommunicationError` | yes | +| `Status` with `category=Pending` | yes (with backoff) | +| `Status` with `category=ConfigurationError` | depends on `detail`: `detail == 21` ("Invalid reference", src/MxNativeCodec/MxStatus.cs:76) → yes, after a Galaxy-resolver-cache refresh — the .NET reference's per-operation `ResolveTagAsync` (src/MxNativeClient/MxNativeSession.cs:173,196,232,255) makes a stale-cache miss recoverable on the next attempt. All other `ConfigurationError` details → no. Implementation: `is_retryable()` matches the inner `detail` and returns `true` only for the resolver-refresh-eligible codes. | +| `Status` other categories | no by default; consumer can override | +| `Timeout` | yes | +| `Cancelled` | no | +| `Protocol(*)` | no — protocol-level decode bugs are not retryable | +| `Io(_)` | depends on `kind()`: `WouldBlock`/`Interrupted`/`TimedOut` → yes; everything else → no | + +The default `RecoveryPolicy::exponential` calls `is_retryable()` before re-attempting and emits `RecoveryEvent::Failed { error, .. }` if not. + +## Status as data on subscriptions + +```rust +pub struct DataChange { + pub reference: Arc, + pub value: MxValue, + pub quality: u16, + pub timestamp: SystemTime, + pub status: MxStatus, +} +``` + +Consumers inspect `status.category` to distinguish good/uncertain/bad data. The default `mxaccess` does not filter; if a consumer wants Ok-only data, they filter the stream themselves: + +```rust +let mut sub = session.subscribe("X.Y").await? + .filter_map(|change| async move { + match change { + Ok(c) if c.status.category == MxStatusCategory::Ok => Some(Ok(c)), + Ok(_) => None, // drop non-Ok + Err(e) => Some(Err(e)), + } + }); +``` + +This keeps `Error` reserved for actual failures and keeps stream items composable. diff --git a/design/60-roadmap.md b/design/60-roadmap.md new file mode 100644 index 0000000..322bb10 --- /dev/null +++ b/design/60-roadmap.md @@ -0,0 +1,186 @@ +# Roadmap + +The Rust port is staged so each milestone is independently usable: a milestone delivers either a useful crate, a measurable test improvement, or a concrete API surface. Earlier milestones never depend on later ones. + +## Phasing + +### M0 — Workspace skeleton + +- Create `rust/` workspace per `30-crate-topology.md`. +- Pin Rust toolchain via `rust-toolchain.toml`. +- CI: `cargo build --workspace`, `cargo test --workspace`, `cargo clippy --workspace -- -D warnings`, `cargo fmt --check`. +- Test infrastructure: `tests/fixtures/` populated from `captures/` (copy — junctions are Windows-only and don't survive `git clone` on Linux/macOS; symlinks need Developer Mode on Windows; a plain copy is the only cross-platform option). The matching line in `30-crate-topology.md:29` says the same thing — flag any drift to the user. +- `mxaccess-codec` exposes the type stubs (empty bodies returning `unimplemented!`) so downstream crates compile. +- **Define the `Transport` trait (and a placeholder `Session` shape it returns) in M0** as empty/stub signatures in `mxaccess` so M5 can build against the trait without waiting for M4's NMX implementation. This is what allows M5 to run in parallel with M3/M4 — see "Sequencing dependencies" below. M4 fills in the concrete `NmxTransport` impl + recovery policy + `Stream` plumbing; M5 fills in `AsbTransport` against the same trait. +- Update `CLAUDE.md` "Common commands" with cargo invocations. + +**Definition of done:** `cargo build --workspace` succeeds; CI green on a clean commit; the empty crates publish-check (`cargo publish --dry-run -p mxaccess-codec`) passes. **Dependency on Q2 (license).** `cargo publish --dry-run` requires a resolved `license` field in `Cargo.toml`; until Q2 in `70-risks-and-open-questions.md` is settled, the publish-check is downgraded to `cargo build --release -p mxaccess-codec`. M0 cannot complete cleanly with the publish-check until Q2 is resolved. + +### M1 — Codec parity + +Implement every codec type from `src/MxNativeCodec/`: + +- `MxReferenceHandle` (CRC-16/IBM, 20-byte layout) +- `NmxTransferEnvelope` + `NmxTransferEnvelopeTemplate` +- `NmxItemControlMessage` (advise / supervisory / unadvise) +- `NmxWriteMessage` (scalar + array, normal + timestamped) +- `NmxSecuredWrite2Message` +- `NmxSubscriptionMessage` (DataUpdate, SubscriptionStatus) +- `NmxReferenceRegistrationMessage` + Result +- `NmxMetadataQueryMessage` +- `NmxOperationStatusMessage` +- `ObservedWriteBodyTemplate` +- ASB Variant + AsbStatus + RuntimeValue +- `MxStatus`, `MxValueKind`, `MxDataType`, `MxValue` + +**Definition of done:** every Frida-captured write/advise/subscribe body that the .NET reference encodes today round-trips byte-identical through `mxaccess-codec` — i.e. the proven matrix in `work_remain.md` (scalar/array writes, advise/unadvise, single-record `0x33` DataUpdate, single-record SubscriptionStatus, the 5-byte `00 00 50 80 00` write-complete frame, and the 1-byte completion frames `0x00`/`0x41`/`0xEF` preserved verbatim). Cross-validated against `src/MxNativeCodec.Tests/` outputs (a fixture runner shells out to `dotnet run --project src\MxNativeCodec.Tests` and asserts the same bytes are produced for shared inputs). + +Captures whose native behaviour the .NET reference does not yet decode are explicitly out of scope for M1 and are tracked elsewhere: + +- `captures/077`, `captures/079-082`, `captures/094` — buffered batch payloads (`work_remain.md:176–181`); deferred to M6 + R2. +- `captures/036` — Activate/Suspend trigger conditions; deferred to R5. +- Single-token `WriteSecured` (returns `0x80004021` before sending the body); deferred to R6. + +These captures are still loaded as fixtures so their headers/envelopes round-trip, but the inner unproven payloads are preserved as opaque bytes rather than asserted against a typed decode. + +### M2 — DCE/RPC + NTLM + OBJREF + OXID + callback exporter + +- `mxaccess-rpc`: NTLMv2 client context, DCE/RPC PDU codec, TCP transport, OBJREF parser, OXID resolution, IRemUnknown::RemQueryInterface. +- `mxaccess-callback`: callback exporter (RPC server with `INmxSvcCallback` + `IRemUnknown`). +- Live probe: connect to local `NmxSvc.exe`, execute `RegisterEngine2` + `GetPartnerVersion` round-trip, register a callback OBJREF, observe a status frame. + +**Definition of done:** all three of the following must hold against a running AVEVA install (the `partnerVersion`-only check is insufficient on its own — it does not exercise the callback exporter, which the .NET evidence shows is the hardest part of M2 since `MxNativeClient` had to hand-roll `INmxSvcCallback`/`IRemUnknown`): + +1. `cargo run --example connect-nmx` issues `RegisterEngine2` and observes `partnerVersion == 6` in the response (cite `docs/DotNet10-Native-Library-Plan.md:64-73` for the expected value). +2. The Rust callback exporter accepts an inbound `IRemUnknown::RemQueryInterface` from `NmxSvc.exe` and returns the negotiated `INmxSvcCallback` interface pointer — i.e. the server-side handshake against our exported OBJREF completes without an `IRemUnknown` reject. +3. At least one `INmxSvcCallback::StatusReceived` frame is observed end-to-end through the Rust callback exporter (raw frame bytes captured to a fixture under `tests/fixtures/m2-status-frame/`). + +NTLMv2 packet-integrity matches the .NET reference's `MakeSignature` outputs on a fixed challenge fixture (i.e. byte-equivalent signature for fixed input). + +### M3 — NMX session + Galaxy resolver + +- `mxaccess-galaxy`: `tiberius`-based tag resolver, user resolver. Replicates the recursive CTE from `GalaxyRepositoryTagResolver.cs:209–293`. +- `mxaccess-nmx`: `NmxClient` with `register_engine_2`, `transfer_data`, `add_subscriber_engine`, `set_heartbeat_send_interval`. Builds `MxReferenceHandle` from resolver output + `MxReferenceHandle::compute_name_signature`. +- Live probes: write `TestChildObject.TestInt = 123`, subscribe, receive callback. + +**Definition of done:** scalar write + scalar subscribe round-trip live, identical bytes to `captures/022-frida-write-test-int-sequence-106-108` and `captures/058-frida-subscribe-testint` (verified against `captures/` directory listing — `077-frida-suspend-advised-scanstate` is a *suspend* capture and belongs to R5, not M3). Re-implementations of `dotnet run --project src\MxNativeClient.Probe -- --probe-session-write` and `--probe-session-subscribe` succeed when invoked as `cargo run --example session-write` / `--example session-subscribe`. + +### M4 — Async Tokio façade (NMX path) + +- `mxaccess::Session` over `NmxTransport`. +- `mxaccess::Subscription` as `Stream>`. +- `Session::write`, `write_with_completion`, `write_with_timestamp`, `write_secured`, `write_secured_at`, `read`, `subscribe`, `subscribe_many`. +- Recovery policy + recovery events (mirroring `MxNativeSession.RecoveryAttempt*` events). +- `tracing` instrumentation throughout. +- Examples: `connect-write-read.rs`, `subscribe.rs`, `recovery.rs`, `multi-tag.rs`. + +**Definition of done:** the public API is end-to-end usable without referencing `mxaccess-codec` directly. A consumer can write 30 lines of `tokio::main` code and get live data. `cargo doc --workspace --open` produces useful API docs. The `examples/` programs all exit `0` against a live AVEVA install. + +**Parity test fixtures** (verified against `wwtools/mxaccesscli/`): +- A bare-array reference (e.g. `Obj.Arr` without brackets) returns `MxStatus { category: CommunicationError, detail: 1003 }`. Source: `wwtools/mxaccesscli/docs/usage.md:215,299`. Add as a `mxaccess` integration test that subscribes to a known bare-array reference and asserts the exact `(category, detail)` tuple. +- Read-as-subscribe parity: a `read(tag, timeout)` against a tag that never publishes returns `Error::Timeout(_)`, with no leaked advise on the server side (verified by issuing a subsequent `subscribe` and confirming no stale-handle error). Source: `wwtools/mxaccesscli/docs/usage.md:24` and `wwtools/mxaccesscli/src/MxAccess.Cli/Commands/ReadCommand.cs:14-78`. +- Verified Write parity: `write_secured(tag, value, current_user_id, verifier_user_id)` with `current_user_id == verifier_user_id` (single-user path) and with two distinct ids (two-person verification path) both succeed against a tag whose security classification permits it. Source: `wwtools/mxaccesscli/src/MxAccess.Cli/Commands/WriteCommand.cs:151-155,196-199`. + +### M5 — ASB transport + +- `mxaccess-asb-nettcp`: [MS-NMF] net.tcp framing + [MC-NBFX]/[MC-NBFS] binary message encoding (the default `NetTcpBinding` encoder, *not* SOAP/XML — see `src/MxAsbClient/MxAsbDataClient.cs:660-685`) + WCF custom-binary inside ASBIData base64. +- `mxaccess-asb`: `AsbClient` with Connect, RegisterItems, Read, Write, CreateSubscription, AddMonitoredItems, Publish, Disconnect. +- `mxaccess::Session` over `AsbTransport`; capabilities reflect ASB limits (no `subscribe_buffered`, no `Activate`/`Suspend`, no `OperationComplete` outside the proven write-completion frame). +- DPAPI shared-secret read on Windows; explicit `AsbCredentials::shared_secret(&[u8])` constructor as escape hatch. + +**Definition of done:** `cargo run --example asb-subscribe -- --tag TestChildObject.TestInt` succeeds against a live ASB endpoint. Round-trip parity with `dotnet run --project src\MxAsbClient.Probe`. Type matrix in `mxaccess-asb` covers what `work_remain.md:108–113` documents as proven: scalar Boolean, Int32, Float, Double, String, DateTime, Duration, plus "deployed array tags" (the array shapes actually exercised against the live VM, not all eight scalar arrays). Less-common ASB types and the unexercised scalar array shapes are deferred — added only as needed by real deployed tags, per `work_remain.md:110`. + +### M6 — Compatibility shim + production hardening + +- `mxaccess-compat`: `LMXProxyServer`-shaped methods on top of `Session`. +- `subscribe_buffered` (NMX feature) — guarded by `BufferedOptions`; no synthesis if provider returns single-sample batches. +- Performance pass: zero-copy frame parsing where possible (`bytes::Bytes`), pre-allocated `BytesMut` per session, codec allocation count benchmarked. +- Optional `metrics` feature emitting counters / histograms. +- Docs: `cargo doc` published; `cargo public-api` baseline established. +- Release: `cargo publish` all crates. + +**Definition of done:** the codec hits the per-write allocation target from R12 (< 5 allocations per write at steady state, measured via `cargo bench` with a counting allocator); live subscribe under churn does not allocate per-message; `cargo public-api` produces a stable surface that clears review. + +`cargo bench` latency numbers are reported but **not gating** — this matches the V1 non-goal "we measure but don't gate beyond M6's loose acceptance bar" below. There is no .NET microbench harness to compare against (the .NET reference ships probes and assertion-style runners, not benchmarks); building one is out of scope for V1. If a future milestone adds a comparison harness, document it here and only then can a "comparable to .NET" clause be added without contradicting the non-goal. + +## Validation strategy + +Three lines of defense against regression. + +### 1. Round-trip fixtures + +Every byte sequence in `captures/0NN-frida-*` and `analysis/frida/*.tsv` is a fixture. Test cases load the bytes, decode them, re-encode, and assert equality. New scenarios add new fixtures, never modify old ones. Fixtures live under `crates/mxaccess-codec/tests/fixtures/` (linked or copied). + +### 2. Live probes + +Per-milestone live probes mirror the .NET probes (`MxNativeClient.Probe`, `MxAsbClient.Probe`). They run only when `MX_LIVE` env var is set, match the .NET command-line surface, and print the same artifacts. The Rust examples are the canonical live tests. + +**CI lane status (V1).** Live probes require a Windows runner with AVEVA System Platform installed and a populated Galaxy DB. AVEVA System Platform is a licensed Windows-only install with a SQL Galaxy attached, so a hosted CI runner cannot be spun up from a public image. **V1 ships without a hosted CI lane for live probes** — they run only on the maintainer's workstation, gated by `MX_LIVE=1`. PRs that touch the live-probe surface (anything under `crates/*/examples/` invoked when `MX_LIVE` is set, plus `mxaccess-galaxy` and the NMX/ASB transport crates' integration tests) require a screenshot or capture log from a successful local run attached to the PR. Hosted CI for milestones M2/M3/M4/M5 covers `cargo build`, `cargo test --workspace` (non-live), and `cargo clippy` only. Building a hosted live-probe lane (a pinned AVEVA VM image + Galaxy seed snapshot, owned by the project) is a stretch goal post-V1; it is not a V1 deliverable. + +### 3. Cross-implementation parity + +For each milestone with a `dotnet run` equivalent, the same operation runs through both: +- the .NET reference (`dotnet run --project src\MxNativeClient.Probe -- --probe-session-write ...`) +- the Rust port (`cargo run --example session-write -- ...`) + +Wireshark / Frida captures of both runs are diffed; any byte-level divergence is a regression. + +**Caveat — parity is not correctness.** Byte-parity tests confirm the Rust port matches the .NET reference; they do **not** confirm correctness in the absolute sense. Specifically, the completion-only frame mappings (`0x00`, `0x41`, `0xEF`, plus `MXSTATUS_PROXY[]` conversion — see `work_remain.md:170-174`) are unmapped in both implementations; both preserve them verbatim. If the .NET reference is wrong about one of these bytes, the Rust port will also be wrong, and the parity test will still pass green. R3 and R4 in `70-risks-and-open-questions.md` track this. These frames are marked "preserved verbatim" rather than "verified correct" in the milestone DoDs that touch them. + +## Build & test commands + +To be added to `CLAUDE.md` "Common commands" once `rust/` exists: + +```powershell +# Workspace-wide +cargo build --workspace +cargo test --workspace +cargo clippy --workspace -- -D warnings +cargo fmt --check + +# Single crate +cargo test -p mxaccess-codec + +# Live probes (require AVEVA + Galaxy DB). Credentials come from Infisical via +# wwtools/secrets/Get-Secret.ps1 — never inline plaintext. The setup script +# fetches the WW_VM_ADMIN_* secrets and (when present) the AVEVA-specific +# ASB_SHARED_SECRET, then exports MX_LIVE, MX_NMX_HOST, MX_GALAXY_DB, +# MX_TEST_USER, MX_TEST_DOMAIN, MX_TEST_PASSWORD, MX_ASB_SHARED_SECRET. +. .\tools\Setup-LiveProbeEnv.ps1 # dot-source so env vars persist +cargo test -p mxaccess --features live -- --ignored + +# CI / dev fallback when ASB shared secret is not yet in Infisical: +. .\tools\Setup-LiveProbeEnv.ps1 -SkipAsbSecret +# ...then construct AsbCredentials::shared_secret(&[u8]) explicitly in the test. + +# Examples +cargo run --example connect-write-read +cargo run --example subscribe -- --tag TestChildObject.TestInt +cargo run --example asb-subscribe -- --tag TestChildObject.TestInt + +# Benchmarks (M6) +cargo bench -p mxaccess-codec +``` + +## Sequencing dependencies + +| Milestone | Depends on | Blocks | +|---|---|---| +| M0 | nothing | M1 | +| M1 | M0 | M2, M3, M5 | +| M2 | M0, M1 | M3 | +| M3 | M1, M2 | M4 | +| M4 | M3 | M6 (NMX) | +| M5 | M0, M1 (codec only — ASB does not need M2/M3) | M6 (ASB) | +| M6 | M4 (NMX consumers) or M5 (ASB consumers) | release | + +M5 can be developed in parallel with M3/M4 because ASB does not depend on DCE/RPC **and** because the `Transport` trait (plus the placeholder `Session` shape it returns) is defined in M0, not M4. M0 publishes the empty/stub trait; M4 fills in the concrete NMX-side `Session` recovery policy, `Stream`, and `NmxTransport` impl; M5 fills in `AsbTransport` against the same M0 trait. Without that M0-level trait split, M5 would block on M4 (since the Session/Transport types live in `mxaccess`, which sits below both transports per `30-crate-topology.md`). The two transport paths converge into the same `Session` at M4 (NMX) and M5 (ASB). + +## What this roadmap deliberately does not include (V1) + +- `cargo bench` numbers as gating criteria. We measure but don't gate beyond M6's loose acceptance bar. +- Drop-in COM interop. `mxaccess-compat` wraps the API shape, not the COM ABI. A `mxaccess-compat-com` crate is post-V1. +- Multi-runtime support (smol, async-std). Tokio only. +- 32-bit Windows. x64 only by design. +- Linux-first deployment. Linux is a stretch goal sitting behind feature flags; see `70-risks-and-open-questions.md` Q3. +- Full `OperationComplete` parity. Bound to whether the .NET reference can prove the trigger conditions; see R3/R4 in `70-risks-and-open-questions.md`. diff --git a/design/70-risks-and-open-questions.md b/design/70-risks-and-open-questions.md new file mode 100644 index 0000000..fcf5540 --- /dev/null +++ b/design/70-risks-and-open-questions.md @@ -0,0 +1,321 @@ +# Risks and open questions + +This is the punch list of things that could break or are unproven. Each entry is tagged R(isk) or Q(uestion), with a current best answer and what would settle it. + +## Protocol-level + +### R1 — net.tcp / WCF framing **and binary message encoding** complexity + +**Severity: P0** (project-blocker — entire ASB data plane, ~3000 LoC) + +The .NET reference uses `System.ServiceModel.NetTcpBinding` for ASB (`src/MxAsbClient/MxAsbDataClient.cs:663`: `new NetTcpBinding(SecurityMode.None)` with no message-encoding override). With no override, WCF defaults to the **binary message encoder** — i.e. .NET Binary XML ([MC-NBFX]) with a static dictionary lookup ([MC-NBFS]) — **not** SOAP/XML. There is no Rust port of WCF, and `quick-xml` (or any other XML toolkit) is **not sufficient** to read or write these payloads: the body bytes are tokenised binary nodes that reference dictionary string IDs. + +So the hand-rolled scope is two layers, not one: + +1. **Framing** per [MS-NMF] (record types: preamble, preamble-ack, sized-envelope, end, fault) plus the reliable-session ack handling on the underlying `net.tcp` channel. +2. **Message encoding** per [MC-NBFX] (binary XML node tokens, length-prefixed strings, prefixed/typed attributes, end-element markers) **plus** [MC-NBFS] (the static dictionary that holds the SOAP/WS-Addressing/`IASBIDataV2`-action strings the encoder references by ID instead of inlining). + +**Options:** +1. Hand-roll both framing ([MS-NMF]) and binary message encoding ([MC-NBFX] + [MC-NBFS]). Estimate ~3000 LoC across both layers (the encoder/dictionary work is the majority — framing alone is ~1500 LoC; the binary XML codec, dictionary tables, and operation-action mapping are roughly the same again). +2. Switch ASB to its HTTP variant if the deployed AVEVA instance supports it (this would let us use a normal text SOAP/XML stack and skip both [MS-NMF] and [MC-NBFX]/[MC-NBFS] entirely). +3. Wrap the .NET ASB DLL in a process and call it via stdin/stdout JSON-RPC. + +**Current best answer:** option 1 (hand-roll both layers). The two specs are public, the encoder is deterministic, and the .NET reference's `AsbMessageDumpBehavior` already produces ground-truth byte vectors for the dictionary and operation set we use. `quick-xml` may help with any auxiliary text-XML the wider stack uses, but it cannot decode the binary-encoded message bodies — that requires the [MC-NBFX] + [MC-NBFS] codec. + +**Settles when:** `mxaccess-asb-nettcp` parses every captured request/reply byte-identical to the .NET reference's `IClientChannel` payload dump for the proven type matrix, including correct dictionary-ID resolution and round-trip of every observed binary XML node tag. + +### R2 — Buffered subscription is delivery cadence, not multi-sample payloads + +**Severity: P3** (likely a non-issue — see verification below) + +`subscribe_buffered` was originally framed as "we don't know if the codec layout for multi-sample `DataChangeBatch` is right." Verification against `wwtools/mxaccesscli/docs/api-notes.md:97-100,138-140,154-157` reverses this framing: `OnBufferedDataChange(hServer, hItem, MxDataType, value, quality, timestamp, statuses)` is **single-sample-per-event**, identical in shape to `OnDataChange`. The "buffer" is a delivery cadence — `SetBufferedUpdateInterval(ms)` collates per-tick updates and flushes them at the configured interval — **not** a multi-sample payload bundle. The native multi-sample bodies the original R2 worried about may not exist on the LMX surface at all. + +**Current best answer:** model `subscribe_buffered` as `Stream` (NOT `DataChangeBatch`) with a `BufferedOptions { update_interval_ms }` knob, matching `AddBufferedItem` + `SetBufferedUpdateInterval` (verified at wwtools/mxaccesscli/docs/api-notes.md:140). If a future capture surfaces a true multi-sample body, reopen — but the burden of proof has flipped. **Do not synthesise** multi-sample bodies; the LMX surface emits one per event. + +**Settles when:** either (a) a captured `OnBufferedDataChange` event with multi-sample body bytes is observed (which would contradict the LMX docs and require codec rework), or (b) the V1 codec ships and no consumer reports missing multi-sample semantics. Default-positive: this likely settles silently as "not a real risk." + +### R3 — `OperationComplete` trigger unproven + +**Severity: P1** (significant blocker for OperationComplete consumers — ships verbatim, no typed promotion) + +`work_remain.md:154–163`: ASB has no native OperationComplete; NMX completion-only frames have no proven mapping table. The .NET reference does not synthesise the event; the Rust port must not either. + +**Current best answer:** expose `Session::operation_status_events()` as `Stream` carrying frame bytes. Promote to a typed `WriteCompleted` only if the frame matches the proven `00 00 50 80 00` 5-byte pattern. + +**Settles when:** indefinitely deferred — see Open evidence gaps table. Settle criteria depends on a Ghidra mapping table (the `aaDCT` tables in `Lmx.dll`) that does not exist in `analysis/ghidra/` and has no owner. No current artifact in this repo produces the byte→status mapping. Reopen if a future capture or decompiled output produces evidence. + +### R4 — Completion-only byte mapping + +**Severity: P1** (significant blocker for typed completion semantics — ships verbatim) + +`0x00`, `0x41`, `0xEF` are observed as raw 1-byte completion frames (`work_remain.md:164–174`). They get preserved as `RawOperationStatus { byte: u8 }` without typed promotion. + +**Current best answer:** `Session::operation_status_events()` carries `RawOperationStatus(u8)` for these. Document as "preserved verbatim until mapping table is found." Same Ghidra dependency as R3. + +**Settles when:** indefinitely deferred — see Open evidence gaps table. Settle criteria depends on the same Ghidra mapping table as R3, which does not exist in `analysis/ghidra/` and has no owner. Reopen if a future capture or decompiled output produces evidence. + +### R5 — Activate / Suspend behaviour + +**Severity: P1** (significant blocker for Activate/Suspend consumers — surfaced as experimental) + +`MxNativeCompatibilityServer.Suspend` and `Activate` return MxStatus but the trigger conditions beyond "pending/requesting" are unknown. The .NET reference does not call them on a live path. + +**Current best answer:** expose `Session::suspend(item)` and `Session::activate(item)` returning `Result`. Document as experimental until a deployed scenario exercises them. Do not build callback-driven state transitions on top. + +**Settles when:** a live capture shows the operation triggering an observable state change in `NmxSvc` plus a corresponding callback frame. + +### R6 — `0x80004021` in `MxNativeSession.WriteSecuredAsync` is a .NET-reference defect, not a real LMX constraint + +**Severity: P3** (formerly P1 — downgraded after `wwtools/mxaccesscli/` verification) + +Original framing of this risk asserted that "`WriteSecured` (without `2`) returns `0x80004021` before sending the body" and concluded the single-token form was deprecated or rejected at the wire. That framing was wrong. Verification against `wwtools/mxaccesscli/` (a working CLI built on the production `LMXProxyServerClass` 32-bit COM proxy, i.e. the actual MxAccess surface) establishes: + +- The LMX `WriteSecured` ALWAYS takes **two** user ids: `(currentUserId, verifierUserId, value)` (`wwtools/mxaccesscli/docs/api-notes.md:60-72`, `wwtools/mxaccesscli/src/MxAccess.Cli/Mx/MxItem.cs:69-70`). +- "Single-user secured write" is the same API called with `currentUserId == verifierUserId` — it is **not** a separate API surface (`wwtools/mxaccesscli/src/MxAccess.Cli/Commands/WriteCommand.cs:151-155,196-199`). +- `WriteSecured2` adds a timestamp parameter; it does **not** add a second token. The 1-vs-2 distinction in this design's earlier drafts was a confusion between "with timestamp" (Write2 vs Write) and "two-token" (which is always true). +- The `0x80004021` failure observed in `src/MxNativeClient/MxNativeSession.cs:218-221` is therefore a defect of the .NET native reimplementation, not behaviour the LMX proxy itself produces. + +**Current best answer:** `mxaccess` exposes `write_secured(reference, value, current_user_id, verifier_user_id)` (no timestamp) and `write_secured_at(reference, value, timestamp, current_user_id, verifier_user_id)` (with timestamp), matching `WriteSecured` and `WriteSecured2` respectively. Both always pass two user ids; callers performing single-user secured writes pass the same id twice. The `Error::Unsupported` mapping for "single-token form" has been removed from `50-error-model.md`. + +**Settles when:** the `MxNativeSession.WriteSecuredAsync` defect is fixed in the .NET reference, or a captured frame shows the LMX proxy itself producing `0x80004021` on a `WriteSecured` call (which would resurrect the original framing). Default-positive: this likely settles silently as "not a real risk." + +### R7 — Status mapping for non-success ASB cases + +**Severity: P2** (nice-to-have / minor — unknown bytes preserved as raw) + +`work_remain.md:132–143`: live probes have not yet exercised access-denied and no-communication on the current VM. The Rust port mirrors what the .NET reference proves; remaining ASB error/quality/detail bytes are preserved as raw and surfaced through `MxStatus.detail` until a safe live capture lands. + +**Current best answer:** preserve unknown payloads. Document the gap. + +**Settles when:** live capture against a configured access-denied tag and a no-communication endpoint produces the expected `MxStatus` shape. + +## Implementation-level + +### R8 — NTLMv2 cross-domain auth + +**Severity: P1** (significant blocker for cross-domain deployments — single-domain ships) + +Captured traffic is single-domain (local AVEVA install). Cross-domain NTLM requires AV pair handling that has not been tested. + +**Current best answer:** implement AV pair parsing per [MS-NLMP] §2.2.2.1 and document `mxaccess-rpc` as untested across domains. Provide fixtures from any successful cross-domain probe. + +**Settles when:** a cross-domain probe runs successfully end-to-end with packet-integrity signatures verified. + +### R9 — DPAPI dependency for ASB + +**Severity: P2** (nice-to-have / minor — explicit `shared_secret` constructor is the escape hatch) + +ASB shared-secret retrieval uses `ProtectedData.Unprotect` (LocalMachine scope). Linux has no DPAPI. There is no portable replacement; the secret is encrypted at rest with a Windows-specific KCV. + +**Current best answer:** `mxaccess-asb` requires Windows for the credential read path. Provide an explicit `AsbCredentials::shared_secret(secret: &[u8])` constructor that bypasses DPAPI for tooling that has the secret in plaintext (e.g. CI tests, ops automation). + +**Settles when:** never. DPAPI is not portable; the escape hatch is the explicit constructor. + +### R10 — Galaxy SQL schema versioning + +**Severity: P1** (significant blocker per affected feature — break-loud on mismatch) + +The recursive CTE in `GalaxyRepositoryTagResolver.cs` assumes the current AVEVA schema. Older Galaxy versions may have different table layouts. + +**Current best answer:** target the schema that ships with the AVEVA version `MxNativeClient` validates against. Document the expected schema version. Break loudly on mismatch (`ConfigError::Galaxy { reason }`). + +**Settles when:** a multi-version test matrix is set up. Probably not in V1. + +### R11 — x86 proxy/stub workaround + +**Severity: P2** (nice-to-have / minor — integration test catches binding-shape drift) + +`NmxSvcps.dll` is x86-only. The replacement strategy bypasses the in-proc proxy by speaking ORPC directly. This works because we control both Type1/Type3 marshalling and `RemQueryInterface`. But it depends on `NmxSvc` continuing to expose IPv4 NCACN_IP_TCP bindings via the OXID. + +**Current best answer:** add an `mxaccess-rpc` integration test that asserts `ResolveOxid` returns at least one `ncacn_ip_tcp` binding. Fail fast if the binding shape changes in a future AVEVA release. + +**Settles when:** that integration test is in CI gating. + +### R12 — Performance — codec allocations + +**Severity: P2** (nice-to-have / minor — micro-optimisation in M6) + +The .NET reference reuses `byte[]` arrays via `MemoryPool`; the Rust port should use `bytes::Bytes` for zero-copy on receive and pre-allocate via `BytesMut` on encode. The codec currently allocates `Vec` per encode; tolerable for V1, worth optimising in M6. + +**Current best answer:** use `BytesMut::with_capacity(MAX_FRAME)` per session. Bench in M6. Aim for < 5 allocations per write at steady state. + +**Settles when:** `cargo bench` shows the target allocation count. + +### R13 — DataUpdate `recordCount != 1` panic risk + +**Severity: P1** (significant blocker for production stability — soft-error path documented) + +`src/MxNativeCodec/NmxSubscriptionMessage.cs:71-74` hard-throws `ArgumentException` on any `0x33` DataUpdate whose `recordCount` is not exactly 1: + +```csharp +if (recordCount != 1) +{ + throw new ArgumentException("Observed NMX DataUpdate callback parser currently supports one record per body.", nameof(inner)); +} +``` + +R2 covers the missing **fixture** for the multi-record case, but the bigger production-side risk is separate: the first time AVEVA emits a multi-record `0x33` against a deployed Rust client, the codec — if it ports the .NET behaviour faithfully — will panic / return a hard decode error and tear down the subscription. We have no fixture proving multi-record bodies don't happen on real installs; we only have evidence they haven't happened on **our** install. + +**Options:** +1. Mirror the .NET reference and hard-error on `recordCount != 1`. Loud, but kills the session. +2. Surface as a typed soft error (e.g. `ProtocolError::Decode { reason: "multi-record DataUpdate not yet supported" }`), log at warn, and drop the frame. The subscription stays alive; the consumer sees a single missed update, not a teardown. +3. Speculatively decode multi-record (assume the per-record layout from the single-record case repeats) — explicitly forbidden by CLAUDE.md "Do not fabricate protocol behavior." + +**Current best answer:** option 2 in Rust. Map the condition to `ProtocolError::Decode { reason: "multi-record DataUpdate not yet supported" }`, emit a `tracing::warn!` with the raw frame bytes attached as a hex field, and continue. Do **not** synthesise per-record decoding. The .NET-style hard throw stays as-is in the .NET reference (it is the executable spec, and a panic there is what produces the fixture we need — see R2). The Rust port deliberately diverges here on production-safety grounds, with the divergence documented in `50-error-model.md`. + +**Settles when:** R2's multi-record fixture lands and the codec gains a proven typed decode path; then R13 collapses into "supported, no special handling" and the soft-error branch becomes dead code that can be removed. + +### R14 — Fabricated `0x80004021 → StaleItem` mapping + +**Severity: P1** (significant blocker — fabrication risk; corrected in `50-error-model.md`) + +A draft of `50-error-model.md` mapped `HRESULT 0x80004021` to a typed `StaleItem` error category for regular (non-secured) operations. **This mapping is unevidenced.** + +- R6 already covers `0x80004021` on secured-write specifically: per `wwtools/mxaccesscli/` verification, this is a `MxNativeSession.WriteSecuredAsync` defect (the .NET native reimplementation throws `NotSupportedException` before reaching the wire), **not** a real LMX-proxy constraint. The production LMX surface accepts `WriteSecured` with two user ids unconditionally. R6 explicitly does **not** generalise the .NET defect to a typed "stale" error. +- For regular operations, the actual stale-handle / invalid-arg HRESULT observed in captures is `0x80070057` (`E_INVALIDARG`). There is no captured frame, decompiled mapping table, or live probe in this repo that produces `0x80004021` on a non-secured path, and certainly none that justifies tagging it `StaleItem`. + +This is a fabrication risk: the kind of "looks plausible from naming" mapping that CLAUDE.md "Do not fabricate protocol behavior" exists to prevent. + +**Options:** +1. Drop the `StaleItem` category entirely. Regular-op `0x80004021`, if ever observed, falls through to the generic `Hresult { code, hint: None }` branch with the raw HRESULT preserved. +2. Keep `StaleItem` but rename the source HRESULT to `0x80070057` and require a captured fixture before promoting any frame to that category. +3. Keep the `0x80004021 → StaleItem` mapping. **Forbidden** — no evidence backs it. + +**Current best answer:** option 1 for V1. Surface unknown HRESULTs as `Error::Hresult { code }` and let consumers match on the raw value. `50-error-model.md` is being corrected in parallel (review cluster 3) to remove the `StaleItem` reference; this risk register entry exists so the mistake is recorded for future contributors and not silently re-introduced when someone reaches for an ergonomic typed name. + +**Settles when:** indefinitely deferred — no current artifact maps either `0x80004021` or `0x80070057` to a "stale handle" semantic, and inventing one violates the "don't fabricate protocol behaviour" rule. If a future capture or decompiled mapping table produces evidence, reopen as a typed-error proposal. + +### R15 — Drop-time async cleanup hazards + +**Severity: P1** (significant blocker — server-side handle leak on runtime shutdown) + +`design/00-overview.md:38` states the principle "no spawn from inside Drop." `design/20-async-layer.md` and `design/50-error-model.md` describe Subscription drop semantics that fire `UnAdvise`/`UnregisterEngine` against the server. Reconciling these is non-trivial because: + +- `tokio::spawn` from `Drop` panics if no Tokio runtime is current at drop time. A user dropping a `Session` from a `std::thread` after `Runtime::shutdown_timeout` returns will hit this. +- During `Runtime::shutdown_timeout`, spawned tasks are aborted before they can flush. Even if a runtime is current, spawning the cleanup from `Drop` does not guarantee the unadvise/unregister actually reaches the server — the drop call returns immediately and the spawned task may be cancelled before the bytes hit the wire. +- The result is a **server-side handle leak in `NmxSvc`**: subscriptions stay live, registered engines stay registered, until the TCP connection itself is torn down (which only happens once the kernel notices the socket is dead). + +**Options:** +1. Best-effort `tokio::spawn` from `Drop`. Documented hazard. Leaks on runtime shutdown and panics on no-runtime. +2. Drop sends `UnAdvise`/`UnregisterEngine` via a `tokio::sync::oneshot` (or unbounded `mpsc`) to a long-lived connection task that owns the cleanup loop. **Drop itself never spawns** — it pushes a message onto the channel and returns. The connection task drains the channel until the TCP connection is itself dropped, at which point the server cleans up by socket close anyway. +3. Require the consumer to call `Session::shutdown(timeout).await` and document Drop as "best-effort, may leak under shutdown" — no automatic cleanup at all. + +**Current best answer:** option 2. A long-lived connection task owns the cleanup channel and drains it; `Drop` pushes a `UnAdvise`/`UnregisterEngine` request onto a `tokio::sync::oneshot` (one per resource) or a per-connection unbounded `mpsc` and returns synchronously. This keeps `Drop` cheap, satisfies "no spawn from Drop," and gives the cleanup a reasonable best-effort guarantee while the connection task is alive. **Runtime-shutdown leak window remains** — if the connection task is itself aborted by `Runtime::shutdown_timeout` before draining the channel, the cleanup messages are dropped on the floor and the server-side handles remain registered until the TCP socket close is observed by `NmxSvc`. This window is documented in `50-error-model.md`'s cancellation semantics; consumers running under explicit shutdown should call `Session::shutdown(timeout).await` for deterministic cleanup. Cite `design/00-overview.md:38` (no-spawn-from-Drop principle), `design/20-async-layer.md` (Subscription drop semantics), `design/50-error-model.md` (cancellation semantics). + +**Settles when:** the connection-task cleanup channel is implemented in M4, a stress test under churn confirms drop semantics on a live runtime do not leak, and the runtime-shutdown leak window is captured in a runnable test fixture (consumer drops `Session` after `Runtime::shutdown_timeout`; assert that the leak is bounded by socket-close timeout). + +### R16 — Crypto/auth crate maintenance drift + +**Severity: P1** (significant blocker — yank/advisory in CI breaks the build) + +The auth surface area depends on a small cluster of marginal-maintenance crates. `design/30-crate-topology.md:130` pins `rc4`, `sha-1`, `md-5`, `num-bigint`; `design/10-raw-layer.md:252` instructs "Do not pull `ring` — hand-roll MD4." Of these: + +- `rc4` is at minimum-maintenance, with a small maintainer pool and no recent releases. +- `sha-1` v0.10 is the last RustCrypto release that ships with a deprecation warning (the algorithm itself, not the crate's quality, is what's deprecated upstream). +- `md-5` and `num-bigint` are stable but not on the active-development frontier. +- The hand-rolled MD4 in `mxaccess-rpc` has no upstream at all — it lives in this repo. + +The risk is that any one of these crates gets **yanked**, picks up an `RUSTSEC` advisory, or stops compiling against a future Rust toolchain, and `cargo-deny` (or `cargo audit`) in CI fails the build for everyone — without any actual bug being found in our usage. This is especially bad if it happens during a live release window. + +**Options:** +1. Pin to known-good versions in workspace `Cargo.toml` and let CI break when an advisory lands. Triage manually. +2. Pin **and** subscribe to `cargo-deny` advisory feeds with a documented response process; pre-stage replacement plans for each crate (e.g. "if `rc4` is yanked, fall back to a hand-rolled cipher in `mxaccess-rpc::crypto::rc4` — RC4 is ~30 LoC and we already hand-roll MD4"). +3. Hand-roll all of them up front (RC4, SHA-1, MD5, MD4 are all small) and depend on `num-bigint` only. Reduces the surface area to one external crate; increases the in-repo cryptographic LoC. + +**Current best answer:** option 2 for V1. Pin to known-good versions in workspace `Cargo.toml`; subscribe `cargo-deny` advisories in CI; document a fallback plan per crate (hand-rolled RC4 if `rc4` is yanked, hand-rolled SHA-1/MD5 if `sha-1`/`md-5` are pulled, swap `num-bigint` for `crypto-bigint` if it's pulled). Reassess in M6 and consider option 3 (hand-roll-everything) if any of the pins fire during V1 development. Cite `design/30-crate-topology.md:130` and `design/10-raw-layer.md:252`. + +**Settles when:** `cargo-deny check advisories` runs green in CI on a fresh advisory database, the workspace `Cargo.toml` pins are documented inline with their fallback plans, and a "yank rehearsal" (manually mark a pin as yanked locally and confirm the fallback compiles) has been done at least once per crate. + +## Open questions + +### Q1 — Where does the Rust workspace live? **(unresolved)** + +`CLAUDE.md` proposes a sibling `rust/` directory at `c:\Users\dohertj2\Desktop\mxaccess\rust\`, but this is a *proposal*, not a confirmation: a glob of `rust/` confirms zero files exist there today, and `CLAUDE.md` itself hedges with "when it is started." **M0 cannot start until this is confirmed.** + +**Owner:** project lead. + +**Action:** confirm the path `c:\Users\dohertj2\Desktop\mxaccess\rust\` or pick an alternative location; create the empty `rust/` directory (or sibling) before M0 begins. + +**Current best answer:** still pending. The CLAUDE.md proposal is the default and is what M0 will assume unless overridden, but treat this as an open decision rather than a confirmed answer. + +**Settles when:** the workspace directory exists on disk and contains a `Cargo.toml` (even an empty one). + +### Q2 — License? **(resolved: MIT)** + +The .NET reference has no LICENSE file at the repo root. The Rust crates need one before publish. + +**Resolved (2026-05-05):** **MIT** (single-license, not the dual `MIT OR Apache-2.0`). All workspace deps verified MIT/Apache-2.0 compatible; MIT alone satisfies every dep's downstream license obligation. `LICENSE` file added at the project root (`c:\Users\dohertj2\Desktop\mxaccess\LICENSE`). All crate `Cargo.toml`s set `license = "MIT"` via `workspace.package`. + +**Settles when:** N/A — resolved. + +### Q3 — Cross-platform reach (Linux, macOS) + +The codec, ASB SOAP framing, and the async session are theoretically portable. Galaxy SQL via `tiberius` works on Linux. NTLM works on Linux. DPAPI does not. Active Directory authentication on Linux requires `gssapi` (Kerberos) which is out of scope. + +**Current best answer:** Linux is a **stretch goal** for V1, not a supported target — consistent with `30-crate-topology.md`'s `mxaccess-codec` Targets line ("stretch goal") and `60-roadmap.md`'s "What this roadmap deliberately does not include" (Linux behind feature flags). If pursued, the path is `default-features = false` with the consumer providing credentials and shared secret explicitly. macOS unsupported in V1 (no Galaxy SQL TDS testing on macOS). + +**Settles when:** a Linux integration test runs successfully against a remote AVEVA install. Until then, treat Linux support as aspirational and gate all Linux-specific code paths behind opt-in feature flags. + +### Q4 — How does `mxaccess-compat` handle COM event sinks? + +The .NET `MxNativeCompatibilityServer` raises `OnDataChange` etc. as COM events. `mxaccess-compat` is a Rust API; do we expose them as `Stream`s, callbacks, or both? + +**Current best answer:** Streams, with a separate optional `mxaccess-compat-com` crate (post-V1) that registers `windows-rs`-generated COM classes. The compat crate's primary surface is Rust. + +**Settles when:** a concrete consumer requests COM exposure. + +### Q5 — How do we surface `MxStatus` in `Subscription` items vs `Session` operations? + +For `Session::write()`, a non-Ok status maps to `Error::Status`. For `Subscription::next()`, a non-Ok status comes through as `DataChange { status: MxStatus, ... }` — it is not necessarily an error (a "stale" data change is still a valid frame). + +**Current best answer:** `Session::write()` returns `Err` on non-Ok category. `Subscription::next()` returns `Ok(DataChange { ... })` and the consumer inspects `change.status`. Documented in `50-error-model.md`. + +**Settles when:** API stabilises after consumer feedback. + +### Q6 — Should `Session` be `Clone`? + +Cheap clones via `Arc` are convenient (handlers can take `Session` by value). But cloning makes shutdown semantics fuzzy: when does `UnregisterEngine` fire? + +**Current best answer:** `Clone + Send + Sync`. Drop of the last clone runs `UnregisterEngine` best-effort via `tokio::spawn`. `Session::shutdown(timeout)` is the explicit, awaitable way for production code. + +**Settles when:** stress test under churn confirms drop semantics are correct. + +### Q7 — M1 `hasDetailStatus` audit + +During M1 wave-1 codec ports, the `subscription_message.rs` agent draft conditionally read the `status: i32` field only when `hasDetailStatus = true`, while requiring a minimum record length of 15 (DataUpdate) regardless. The result: 4 leading status bytes were left unconsumed, then misread as `quality` further down. The defect was caught by round-trip tests (`data_update_boolean_round_trip`, `data_update_has_no_correlation_id`) and fixed: `status: i32` is now read unconditionally per `src/MxNativeCodec/NmxSubscriptionMessage.cs:126-127`; only `detail_status: Option` is gated on `hasDetailStatus` (`NmxSubscriptionMessage.cs:130-134`). + +**Follow-up:** audit any other codec port (current or future) that takes a `has_detail_status` / `hasDetailStatus` parameter for the same defect pattern — specifically, verify that fields read unconditionally in the .NET source remain unconditional in the Rust port. Likely affected scope: any future helper that ports `ParseRecord` semantics from `NmxSubscriptionMessage.cs`. The inline note at `mxaccess-codec/src/subscription_message.rs` `parse_record` documents the fix. + +**Settles when:** post-M1 audit confirms no other codec module conditionally skips fields the .NET reference reads unconditionally. + +## Open evidence gaps + +These are missing fixtures that the design assumes will land by their respective milestone. + +| Fixture | Needed by | Captured how | +|---|---|---| +| Multi-sample buffered batch | M6 | provider tuning to exceed buffered queue threshold | +| Cross-domain NTLM Type1/2/3 | M2+ | multi-domain AVEVA test harness | +| Activate/Suspend transition | M6 | deployed object that goes pending | +| `OperationComplete` for non-write op | indefinitely | unknown | +| Ghidra mapping table for completion-only bytes (R3/R4) | indefinitely | Ghidra decompile of `Lmx.dll`'s `aaDCT` tables — table not yet present in `analysis/ghidra/` and has no owner | +| ASB write timestamp + status fields | M5 | extended ASB Write/PublishWriteComplete probe | +| ASB no-communication source-level evidence (`work_remain.md:198`) | M5 | live capture against an unconfigured ASB endpoint | +| Partial-cleanup behavior after channel failure (`work_remain.md:196-197`) | M4/M5 | inject mid-flight failure during subscribe, observe cleanup state | +| Galaxy schema older version | indefinitely | not in scope for V1 | + +## Things that look risky but aren't + +### "Decode the NDR-bridge to find the value bytes" + +`docs/Transport-Correlation.md:65-70` notes that distinct value probes do not appear in raw TCP — the `CNmxAdapter::PutRequest`/`CNmxAdapter::TransferData` buffers are an "internal adapter representation, not the TCP wire format." This is because the values flow as DCE/RPC stub bytes *inside* the `TransferData` payload, which itself is the 46-byte envelope plus the inner write/advise/subscribe body. The "bridge" is just our codec re-applied at a different boundary; once we encode the envelope correctly, the bytes are there. + +The .NET reference confirms this — `src/MxNativeClient/ManagedNmxService2Client.cs:159-183` (`TransferData` + `ValidateTransferDataBody`) writes the 46-byte envelope directly into the DCE/RPC Request stub body, then forwards the inner; the validator explicitly rejects bodies that lack "an inner message after the 46-byte envelope" (line 182). There is no extra layer. The probe-vs-pcap mismatch is an artefact of not reassembling the inner body, not a missing protocol layer. + +**No risk.** Documented for clarity so future contributors don't chase a non-existent encryption layer. + +### "We need a custom TLB / proxy DLL" + +The .NET reference avoids registering a custom TLB by hand-rolling the callback `IRemUnknown` server in `src/MxNativeClient/ManagedCallbackExporter.cs:44-54` (`CreateCallbackObjRef` builds an OBJREF in memory) plus `src/MxNativeClient/ManagedCallbackExporter.cs:164,195-196` (the `IRemUnknown::RemQueryInterface` server-side handler returns the negotiated `INmxSvcCallback` IPID without any registry-resident TLB or proxy/stub DLL). The Rust port does the same in `mxaccess-callback`. The only registry touchpoint is OXID resolution (read-only) and reading the ASB shared secret (read-only via DPAPI). No installer, no admin elevation. + +**No risk.** Documented because it commonly comes up in DCOM contexts. diff --git a/design/README.md b/design/README.md new file mode 100644 index 0000000..7db34e7 --- /dev/null +++ b/design/README.md @@ -0,0 +1,31 @@ +# `design/` — Rust port architectural plan + +This folder is the design contract for the Rust replacement of AVEVA/Wonderware MXAccess. It is the gap between the .NET reference in `src/` and the Rust crates that will be written under a sibling `rust/` workspace (per `CLAUDE.md`). + +The folder is structured as a small set of focused documents. Read in order; each builds on the previous. + +| File | Purpose | +|------|---------| +| `00-overview.md` | Mission, two-layer goal, architectural principles, non-goals | +| `10-raw-layer.md` | Byte-accurate raw MXAccess layer (codec + transport + session) | +| `20-async-layer.md` | Idiomatic Tokio async layer on top of the raw layer | +| `30-crate-topology.md` | Cargo workspace, crates, dependencies, build/test commands | +| `40-protocol-invariants.md` | Bill of materials: IIDs, opnums, envelope/handle bytes | +| `50-error-model.md` | `MxStatus`, error types, panic/cancellation policy | +| `60-roadmap.md` | Milestones M0..M6, validation strategy | +| `70-risks-and-open-questions.md` | Parity gaps, unproven flows, cross-platform constraints | + +The design is grounded in the .NET reference at `src/` and the protocol artifacts in `docs/`, `analysis/`, and `captures/`. **Do not introduce protocol behavior in these documents that is not already proven in the reference.** When adding a new claim about wire format, cite either: + +- a `.cs` file path in `src/MxNativeCodec/`, `src/MxNativeClient/`, or `src/MxAsbClient/`, or +- a `docs/*.md` spec file, or +- a `captures/0NN-frida-*` directory or `analysis/frida/*.tsv` row. + +This folder is documentation, not code. When the Rust workspace is created, the design here is the contract it must satisfy. When evidence in `captures/` invalidates a design decision here, update the design first, then the code. + +## Reading order + +- New contributor: 00 → 30 → 10 → 40 → 20 → 50 → 60 → 70. +- Protocol question: 40 first, then the relevant section of 10. +- API question: 20 first, then 50. +- Planning a milestone: 60 first, cross-reference 70 for blockers. diff --git a/design/review.md b/design/review.md new file mode 100644 index 0000000..59ade38 --- /dev/null +++ b/design/review.md @@ -0,0 +1,157 @@ +# Adversarial design review + +Generated: 2026-05-05. Reviewer: Claude `general-purpose` subagent (per-file, hostile framing). + +This is a *challenge* review — not a style pass. Reviewers are instructed to question implementation choices, design tradeoffs, and assumptions; verify every load-bearing claim against the cited evidence in `src/` (.NET reference), `docs/`, `analysis/`, `captures/`; and surface where the design could fail under real-world conditions. + +## Status (2026-05-05) + +**All findings have been addressed across three triage passes.** + +| Severity | Count | Status | +|---|---|---| +| `[BLOCKER]` | 24 | All resolved (cluster pass 1) | +| `[MAJOR]` | ~26 | All resolved (cluster pass 2) | +| `[MEDIUM]` | 3 | All resolved (cluster pass 1) | +| `[MINOR]` | ~14 | All resolved (cluster pass 3) | +| `[NIT]` | ~7 | All resolved (cluster pass 3) | + +Each finding bullet below is prefixed with `[RESOLVED]` to indicate the design doc has been corrected. The original finding text is preserved verbatim as the audit trail; see `git log design/*.md` for the specific edits. New risks added in response: R13 (`recordCount != 1` panic risk), R14 (fabricated `0x80004021 → StaleItem` mapping), R15 (Drop-time async cleanup hazards), R16 (crypto/auth crate maintenance drift). Severity tiers (P0/P1/P2) were added to all R-items. + +Severity-tag legend (in original review): +- **BLOCKER** — must fix before implementation; protocol or safety bug, or load-bearing claim that is fabricated / contradicts evidence. +- **MAJOR** — load-bearing assumption that is unsupported, under-specified, or likely wrong. +- **MEDIUM** — moderate-severity finding falling between MAJOR and MINOR. +- **MINOR** — clarity, consistency, or naming. +- **NIT** — style / preference. + +## design/00-overview.md + +- [RESOLVED] `[BLOCKER]` Doc lists `register, write, advise, read` as `Transport` trait primitives (design/00-overview.md:61) and the public API (design/10-raw-layer.md "Read" section, line 199) confirms `ReadAsync` is "implemented as a transient subscription read". Putting `read` on the `Transport` trait alongside the actual wire primitives misrepresents the protocol — there is no NMX read primitive. `MxNativeSession.ReadAsync` (src/MxNativeClient/MxNativeSession.cs:312–351) implements read as `SubscribeAsync` + first-callback-result + dispose. If the `Transport` trait shape implies `read` is transport-level, every transport must reimplement the subscribe-then-cancel dance instead of getting it once at the session layer. This contradicts principle 1 ("do not fabricate protocol behavior") by inventing a wire primitive that does not exist. +- [RESOLVED] `[MAJOR]` Diagram labels `mxaccess-asb-soap` as "NetTcp + SOAP" with "DH/HMAC/AES" (design/00-overview.md:75–77). The DH/HMAC/AES claim is supported (src/MxAsbClient/AsbSystemAuthenticator.cs:23–34, 73–122). But the "SOAP" label is misleading: the .NET reference uses `NetTcpBinding(SecurityMode.None)` with the default binary message encoder (src/MxAsbClient/MxAsbDataClient.cs:660–663). SOAP envelope bytes only exist as an in-memory infoset; on the wire it's MS-NMF-framed binary XML. design/70-risks-and-open-questions.md:9–18 (R1) confirms the plan is to "hand-roll the framing per [MS-NMF]" — no SOAP text framing. Crate name `mxaccess-asb-soap` and the diagram label will mislead implementers into thinking SOAP envelopes are on the wire. +- [RESOLVED] `[MAJOR]` Principle 3 says "Raw layer is `unsafe`-free. No raw pointers, no `transmute`, no FFI in the public surface" (design/00-overview.md:33), but principle 6 mandates `windows-rs` for "OBJREF building, IPID/OXID/OID handling, GUID literals" (line 36) and the diagram shows `mxaccess-rpc` consuming `windows` crate (line 88). Every `windows-rs` COM call is `unsafe fn`. The .NET reference uses `Type.GetTypeFromProgID` + `Activator.CreateInstance` (src/MxNativeClient/ManagedNmxService2Client.cs:33–36); `windows-rs` exposes equivalents only via `unsafe { CoCreateInstance(...) }`. The doc never reconciles this — either "raw layer is `unsafe`-free in the public surface" (i.e. internal `unsafe` allowed) or `windows-rs` types stay out of `mxaccess-rpc`. As written, principles 3 and 6 are in direct tension. +- [RESOLVED] `[MAJOR]` Principle 8 says "No spawn from inside `Drop`; no blocking calls inside `async fn`" (design/00-overview.md:38) but principle 2 in "Async layer" (line 10) promises "drop … cancellation" and 70-risks-and-open-questions.md:24 / R3 design references `Stream` cleanup. Drop-based cancellation of an in-flight subscription on `NmxSvc` requires sending an `unadvise`/`UnregisterReference` frame — that is I/O. If `Drop` cannot spawn and cannot block, the only options are (a) abandon the server-side subscription leak (NMX leak in the service process), (b) require an explicit `close().await` and downgrade `Drop` to a panic-in-debug, or (c) hand the cleanup to a background reaper task (which itself was spawned at session start, not inside Drop). The doc never specifies which, and "drop cancellation" implies (a)/(c) without saying so. Compare `MxNativeSession.DisposeAsync`/explicit unregister flows (src/MxNativeClient/MxNativeSession.cs uses `Volatile`, recovery, etc.) — none are `Drop`-equivalent. +- [RESOLVED] `[MAJOR]` Crate-mapping table (design/00-overview.md:22–25) splits `MxNativeClient` into `mxaccess-rpc`, `mxaccess-nmx`, `mxaccess-callback` for transport and puts `MxNativeSession` and `MxNativeCompatibilityServer` solely in the async `mxaccess` crate ("raw layer ends at transport"). But the .NET `MxNativeSession` is the only place where Galaxy resolution + handle lookup + correlation-id bookkeeping + recovery state are wired (src/MxNativeClient/MxNativeSession.cs:90–125, 312–351, 573). If `mxaccess-nmx` exposes only "INmxService2 client + envelope" (design/00-overview.md:69), then `Session` must reimplement every cross-cutting concern (subscription registry, recovery, callback routing) inside the async crate. Either the raw layer is incomplete (cannot be used standalone for "byte-level control" as line 12 promises, because there's no session/correlation surface), or the split is wrong. The 1:1 mapping in the table papers over this. +- [RESOLVED] `[MEDIUM]` Principle 9 says "ASB-only paths return `Error::Unsupported` on `NmxTransport` and vice versa; capability is queryable" (design/00-overview.md:39), but non-goal #5 (line 48) says "the Rust port routes those [callback-only ops] to NMX; ASB owns the regular tag data plane only". A consumer holding an `AsbTransport` and calling `activate(item)` will get `Error::Unsupported` — but the natural expectation (set by the non-goals paragraph) is that the high-level `mxaccess` `Session` *transparently routes* callback-only ops to NMX even when ASB is the data plane. The doc never says how the dual-routing works at the `Session` level — does the session hold both transports? Is the user expected to construct two? Principle 9 ("two transports, one façade") and non-goal 5 are in tension. +- [RESOLVED] `[MEDIUM]` Line 16: "every async method bottoms out in a sync codec call (`NmxTransferEnvelope.Encode`)". Searched src/MxNativeCodec — there is no `NmxTransferEnvelope.Encode`. The class is `NmxTransferEnvelopeTemplate` with `Encode(ReadOnlySpan)` (src/MxNativeCodec/NmxTransferEnvelopeTemplate.cs:33). Minor naming drift, but in a doc whose principle 1 is "do not fabricate" and which cites filenames as evidence, citing a non-existent method weakens the rhetorical case. +- [RESOLVED] `[MEDIUM]` Principle 7 cites `dbo.gobject` / `dbo.instance` / `dbo.dynamic_attribute` as the SQL surface (design/00-overview.md:37). Verified at src/MxNativeClient/GalaxyRepositoryTagResolver.cs:215, 253, 257. However CLAUDE.md (project root) lists the surface as `aa_attribute` / `aa_object` / `mx_attribute_category`. Grepping the `.cs` file shows zero hits for any of those names. CLAUDE.md is wrong, the design doc is right, but the design doc should call this out as a CLAUDE.md correction — otherwise the next implementer who trusts CLAUDE.md will write SQL against tables that don't exist. + +## design/10-raw-layer.md + +- [RESOLVED] `[BLOCKER]` Doc Item-control table claims `Advise (plain)` opcode `0x1f` = 37 bytes, distinct from `AdviseSupervisory` `0x1f` = 39 bytes (design/10-raw-layer.md:99-104). The .NET reference does not support a 37-byte plain-advise variant: `NmxItemControlMessage.Parse` accepts only `AdviseSupervisory` or `UnAdvise` (src/MxNativeCodec/NmxItemControlMessage.cs:46-48), and `MxNativeCompatibilityServer.AdviseSupervisory` aliases plain `Advise` to it (src/MxNativeClient/MxNativeCompatibilityServer.cs:256-258). The doc's three-row table fabricates a "plain advise" length the codec rejects. +- [RESOLVED] `[BLOCKER]` Doc claims Boolean write body has "1 value byte (0xFF/0x00)" giving 37 bytes total (design/10-raw-layer.md:114). Source actually emits 4 value bytes: `[0xff,0xff,0xff,0x00]` or `[0x00,0xff,0xff,0x00]` (src/MxNativeCodec/NmxWriteMessage.cs:257). Total still 37 because the suffix is 11+4 (not 14+4), but the per-byte breakdown in the doc is wrong — the "1 value byte" claim will lead a Rust port to emit a 34-byte body that the receiver rejects. +- [RESOLVED] `[MAJOR]` Doc String-write row says "Total = 26 + N" (design/10-raw-layer.md:118). True size is `KindOffset(17)+1+4+4+N+14+4 = 44+N` (src/MxNativeCodec/NmxWriteMessage.cs:150). The row drops the 14+4 suffix that every other row in the same table includes — an inconsistency in the column meaning that will produce undersized buffers. +- [RESOLVED] `[MAJOR]` Doc array-body row says "28 + N + 18" with layout "4-byte marker + count(u16) + width(u16) + elements" (design/10-raw-layer.md:120). Code shows count is at body offset 22 and width at 24, with two separate gap regions: bytes 18-21 are zero-padding and bytes 26-27 are zero-padding (src/MxNativeCodec/NmxWriteMessage.cs:179-184). The "4-byte marker" framing implies a single contiguous marker before count; in reality it's a 4-byte gap *and* a 2-byte gap surrounding the count/width. Documenting it that way will round-trip wrong on captures. +- [RESOLVED] `[MAJOR]` Doc claims `MxStatus.source: MxStatusSource` (design/10-raw-layer.md:178). The .NET reference field name is `DetectedBy` (src/MxNativeCodec/MxStatus.cs:31). Drift in field name across the parity boundary; tests that round-trip serialize will diverge. +- [RESOLVED] `[MAJOR]` Doc claims wire kinds `0x41–0x46` for arrays in `MxValue`/write (design/10-raw-layer.md:120, 149). Encoder side never emits `0x46` — `NmxWriteMessage.GetWireKind` collapses `StringArray` and `DateTimeArray` both to `0x45` (src/MxNativeCodec/NmxWriteMessage.cs:107). Decoder side does treat `0x46` as DateTimeArray (src/MxNativeCodec/NmxSubscriptionMessage.cs:173, 275). The doc lumps both directions as "0x41..0x46", masking an asymmetry the Rust port must replicate. +- [RESOLVED] `[MAJOR]` Doc says "`Duration` for `ElapsedTime`: 4-byte milliseconds on the wire" (design/10-raw-layer.md:220). Source decodes the wire as **signed** `i32` (`BinaryPrimitives.ReadInt32LittleEndian`, src/MxNativeCodec/NmxSubscriptionMessage.cs:252) and produces `TimeSpan.FromMilliseconds(milliseconds)`. Rust `std::time::Duration` is unsigned — a negative ms value (which the encoding allows) will panic or be clamped. Either spec a signed type (`time::Duration` or `i64` ms) or document the negative-handling policy. +- [RESOLVED] `[MAJOR]` Doc DataUpdate parser sketch says `recordCount(i32, typically 1)` and shows generic `records[recordCount]` (design/10-raw-layer.md:144-147). The .NET reference hard-rejects any record count != 1: `if (recordCount != 1) throw` (src/MxNativeCodec/NmxSubscriptionMessage.cs:71-74). The Rust sketch implies general support for N records that the executable spec does not provide; either lift the constraint with capture evidence or document it as an asserted invariant. +- [RESOLVED] `[MAJOR]` Doc says NTLM Type1 negotiate flags are "Unicode | RequestTarget | Sign | Seal | ExtendedSessionSecurity | Negotiate128 | KeyExchange" (design/10-raw-layer.md:246). Searched `ManagedNtlmClientContext.cs` for the actual flag set used in the negotiate emission — the file does derive sign/seal/sequence keys (src/MxNativeClient/ManagedNtlmClientContext.cs:177-200) and uses `_user.ToUpperInvariant()` for response key derivation (line 79), but the doc lists no citation for the Type1 flag bitfield. No line/offset is referenced; the flag list is a claim a Rust port could mis-encode without a fixture. Add a citation or capture. +- [RESOLVED] `[MAJOR]` Doc puts `NmxTransferEnvelope.reserved` as `i32` "preserved from observed; default 0" (design/10-raw-layer.md:78-79). The .NET encoder unconditionally writes 0 there (src/MxNativeCodec/NmxTransferEnvelope.cs:91) and `Parse` does not extract or expose the reserved bytes at all — there is no preservation. The doc's "round-trip preserver" promise (design/10-raw-layer.md:92) cannot be satisfied unless the Rust codec adds a field the .NET reference has thrown away. Either fix the .NET reference or drop the claim. +- [RESOLVED] `[MAJOR]` Doc says SubscriptionStatus has `recordCount(i32) + operationId(GUID 16) + correlationId(GUID 16) + records[recordCount]` immediately after `cmd+version` (design/10-raw-layer.md:135-140). Source orders fields the same but reads `recordCount` at offset 3, `operationId` at 7, `correlationId` at 23, records at 39 (src/MxNativeCodec/NmxSubscriptionMessage.cs:54-55, 98-99). Total agrees, but the diagram's `+ correlationId` includes records-bearing offsets that the .NET parser splits into two distinct paths (DataUpdate has *no* correlationId; SubscriptionStatus does). Doc places correlationId in both records (line 135-140 union) — Rust port must not parse correlationId for `0x33`. +- [RESOLVED] `[MAJOR]` Doc warns about `.NET ToLowerInvariant()` vs Rust `str::to_lowercase()` Unicode divergence and proposes a `_legacy` variant using "`unicase::Ascii::to_lowercase`" (design/10-raw-layer.md:66-68). `unicase::Ascii::to_lowercase` only handles ASCII — it is *not* a substitute for `ToLowerInvariant()` on non-ASCII Galaxy tag names. If the captured tags include non-ASCII (Turkish, German), the proposed legacy fallback will produce a *different* CRC than the .NET reference, not the same one. The mitigation as written makes the divergence worse. +- [RESOLVED] `[MAJOR]` `MxReferenceHandle` Rust struct uses `pub` for every primitive field including fields recomputed from name signatures (design/10-raw-layer.md:28-41). The `original: Bytes` preservation pattern (design/10-raw-layer.md:226) cannot apply here because the struct is `Copy` with no buffer. A consumer mutating `object_signature` directly will desync from `compute_name_signature(tag_name)` — there is no invariant binding the two together. Either expose the handle as opaque with accessors, or document that signatures are caller-owned and the codec will not recompute. +- [RESOLVED] `[NIT]` Doc names callback opnums `DataReceivedRaw` (3) and `StatusReceivedRaw` (4) (design/10-raw-layer.md:296). Source names them `DataReceived`/`StatusReceived` (src/MxNativeClient/NmxSvcCallbackMessages.cs:11-12, NmxProcedureMetadata.cs:89-101). The `Raw` suffix is doc-invented, will diverge from any cross-reference grep against the .NET reference. +- [RESOLVED] `[NIT]` Doc claims the `ElapsedTime` wire kind `0x07` is part of the array set "0x41..0x46" decoded scalars (design/10-raw-layer.md:149). It is in the scalar set 0x01..0x07 — but `MxValueKind` does not enumerate `ElapsedTimeArray`, while `MxValue` also lacks one (design/10-raw-layer.md:200-215). If `0x47` ever appears in a capture, both .NET and the proposed Rust enums would silently drop it. Worth flagging as a known gap. + +## design/20-async-layer.md + +- [RESOLVED] `[BLOCKER]` `Session::write` claims a single `&str` reference is sufficient, but `MxNativeSession.WriteAsync` requires `writeIndex` and `clientToken` parameters that drive correlation of `OperationStatus` callbacks (src/MxNativeClient/MxNativeSession.cs:165-185). The Rust API at design/20-async-layer.md:32-49 has no clientToken, so the `await` cannot await a wire `WriteCompleted`; it can only confirm the LMX `Write` RPC return code. This contradicts the claim that "write" is a true async operation that completes when the wire confirms — section 310 even concedes the 5-byte completion frame is observed-only. The single-shot `await` model is misleading. +- [RESOLVED] `[BLOCKER]` `write_secured` is offered unconditionally (design/20-async-layer.md:40-45) but the .NET reference explicitly throws `NotSupportedException` for it, citing `0x80004021` from captures 036/038/039 (MxNativeSession.cs:211-221). The Rust API surface promises a behaviour the proven stack does not deliver. Either drop it or rename to `write_secured2` to match `WriteSecured2Async`. +- [RESOLVED] `[BLOCKER]` `read` is described as a one-shot `read(&str) -> DataChange` (design/20-async-layer.md:47-49) with no timeout argument. The .NET reference's `ReadAsync` is explicitly a timed advise/first-callback/unadvise dance and *requires* `TimeSpan timeout > 0` (MxNativeSession.cs:312-359). The Rust API has no semantic for the case where no callback ever arrives — `tokio::time::timeout` can drop the future, but on drop the Rust design does not say it issues `UnAdvise` (only `Subscription` drop does). This leaks an advise on every read timeout. +- [RESOLVED] `[MAJOR]` `Subscription` is declared `Stream>` (design/20-async-layer.md:70) without specifying whether `Err` is terminal. The .NET reference fans out *records* via `CallbackReceived` and routes parse errors to a separate `UnparsedCallbackReceived` event (MxNativeSession.cs:590-607). The Rust design conflates these. If `Err` terminates the stream, transient parse errors kill an otherwise healthy subscription; if `Err` is recoverable, downstream `while let Some(Ok(_))` consumers silently skip data. Pick one and document, or split into two streams matching .NET. +- [RESOLVED] `[MAJOR]` Drop-cancellation of `Subscription` claims to "send `UnAdvise` (best-effort, fire-and-forget via `tokio::spawn`)" (design/20-async-layer.md:70). On runtime shutdown `tokio::spawn` from a `Drop` impl panics if no runtime is current, and during `Runtime::shutdown_timeout` spawned tasks are aborted before they can flush. The .NET reference disposes synchronously, sending `UnAdvise` per subscription on the same thread (MxNativeSession.cs:483-495). Document the runtime-shutdown path or provide an explicit `async fn close()`. +- [RESOLVED] `[MAJOR]` `Session: Clone + Send + Sync` with shared `Arc` (design/20-async-layer.md:27) but no explicit `close()` API. Last-clone-drop running `unregister_engine` "best-effort" requires either `tokio::spawn` (same shutdown hazard as above) or `block_on` (forbidden by section 305). The .NET reference is `IDisposable` synchronous and unregisters explicitly. The design has no answer for "I want to make sure the engine is unregistered before my process exits." +- [RESOLVED] `[MAJOR]` Recovery is presented as automatic on heartbeat-loss (design/20-async-layer.md:114), but `MxNativeSession.RecoverConnection*` is **explicitly caller-driven** — the .NET API exposes `RecoverConnectionAsync(policy)` and never auto-starts (MxNativeSession.cs:383-440). Worse: during recovery, `_recoveryActive` is just a flag set on inbound callbacks; in-flight writes against `_service` are *not* paused or replayed. The Rust design's promise that "the future resumes on the new connection" is unbacked — port the .NET semantics (concurrent calls fail, caller decides) or capture the gap. +- [RESOLVED] `[MAJOR]` `subscribe_buffered` (design/20-async-layer.md:87-100) returns `Stream` but the .NET equivalent `RegisterBufferedItemAsync` takes `itemDefinition`, `itemContext`, and crucially an `itemHandle: int` (MxNativeSession.cs:272-310). The Rust API drops the handle and the `(definition, context)` split, hiding the dual-string requirement. A consumer cannot reproduce the captured Frida bodies through this API. +- [RESOLVED] `[MAJOR]` `subscribe_many(&["A.X","A.Y","A.Z"])` is described as multiplexing one callback channel and demultiplexing by correlation ID (design/20-async-layer.md:74-82). The .NET reference issues per-tag `AdviseSupervisory` with one `CorrelationId` each (MxNativeSession.cs:250-270); there is no atomicity. If the second `Advise` errors, the design does not specify whether the first is rolled back. A consumer expects either all-or-nothing or partial success surfaced — the doc says neither. +- [RESOLVED] `[MAJOR]` `Transport` trait uses `#[async_trait]` (design/20-async-layer.md:168), forcing heap allocation per call and breaking the recently-stabilized native `async fn` in trait. If the project pivots to dyn-compatible native AFIT (Rust 1.75+ requires `dyn Transport` to use `Pin>` returning fns), the trait is **not dyn-safe** as written because `callbacks(&self) -> CallbackStream` returns a concrete struct — fine — but `async fn` methods are not dyn-safe without RPITIT workarounds. Pick `#[async_trait]` (legacy) or document that `Transport` is generic-only. +- [RESOLVED] `[MAJOR]` `RecoveryEvent` enum (design/20-async-layer.md:122-127) is missing `WillRetry: bool` from `MxNativeRecoveryFailureEvent` (MxNativeSession.cs:47-51). Consumers cannot distinguish "this attempt failed but the policy will retry" from "terminal failure." Without it, downstream code cannot decide when to tear down its own state. +- [RESOLVED] `[MAJOR]` `quality: u16` on `DataChange` (design/20-async-layer.md:222) but the .NET `MxStatus` model has its own categories (`MxStatusCategory`/`MxStatusSource`) and the codec already exposes `MxStatus`. Exposing a raw `u16` next to `status: MxStatus` invites callers to use the wrong field — the .NET reference uses `Record.ToDataChangeStatus()` (MxNativeSession.cs:70) as the canonical projection. Drop the `u16` or document the precedence. +- [RESOLVED] `[MINOR]` `set_recovery_policy` takes `&mut session` in the sample (design/20-async-layer.md:288) but `Session` is `Clone` and `Arc`-backed (:27). Mutation through `&mut` on a clone is a foot-gun: clones won't see policy changes unless they're stored behind interior mutability. Either make it `&self` with `tokio::sync::watch` or document that it must be called before any clone is made. +- [RESOLVED] `[MINOR]` `&'static str` in `Error::Unsupported` (design/20-async-layer.md:204) prevents formatting the offending operation with runtime context (e.g. capability name + transport variant). Use `Cow<'static, str>` or a structured variant. + +## design/30-crate-topology.md + +- [RESOLVED] `[BLOCKER]` `quick-xml` is the wrong dep entirely. NetTcpBinding default uses BINARY message encoder (.NET MC-NMF + MC-NBFX/NBFS dictionary tables), not XML over the wire. There is no XML envelope to parse; framing is binary records with dictionary string interning (design/30-crate-topology.md:130, :247). Evidence: src/MxAsbClient/MxAsbDataClient.cs:660–685 constructs `NetTcpBinding(SecurityMode.None)` with no override — default binding element is `BinaryMessageEncodingBindingElement`. The `mxaccess-asb-soap` crate name itself is a misnomer; needs MC-NMF/MC-NBFX framing, not SOAP/XML. `quick-xml` may still be needed for the small ASB control-plane XML payloads (`request.ToXml()` at AsbSystemAuthenticator.cs:79), but cannot frame net.tcp. +- [RESOLVED] `[BLOCKER]` `mxaccess-asb-soap` is `publish = false` while `mxaccess-asb` (publishable) depends on it (design/30-crate-topology.md:128–138). Cargo refuses `cargo publish` on a crate whose path-dep lacks a published version. Either publish both, or fold the framing module into `mxaccess-asb`. +- [RESOLVED] `[BLOCKER]` `rc4 = "0.1"` does not match crates.io. Latest is `rc4 v0.2.0` and the 0.1 line is unmaintained (design/30-crate-topology.md:245). Worse: `rc4` is published by RustCrypto but flagged stale; for NTLMv2 seal/sign most projects pull `cipher` + a manual ARC4 or use `ntlm-rs`/equivalent. Also `0.1` predates the `cipher` 0.4 trait reform that `aes 0.8`/`hmac 0.12` were built on. +- [RESOLVED] `[MAJOR]` Pinned crypto versions form an inconsistent generation. `aes = "0.8"`, `hmac = "0.12"`, `md-5 = "0.10"`, `sha-1 = "0.10"`, `pbkdf2 = "0.12"` are the older `cipher 0.4`/`digest 0.10` line, but the design says "1.83+ stable" (design/30-crate-topology.md:241–250). Current crates pulled from index are `aes 0.9`, `hmac 0.13`, `md-5 0.11`, `pbkdf2 0.13` — all bumped to `digest 0.11`/`cipher 0.5` and require `rust-version: 1.85`. Mixing 0.10/0.12-line traits with 0.13-line will fail to resolve a coherent `digest`. Either pin the whole RustCrypto generation to one line, or bump MSRV to 1.85 to match. +- [RESOLVED] `[MAJOR]` `sha-1 = "0.10"` is explicitly deprecated by upstream: "This crate is deprecated! Use the sha1 crate instead." (design/30-crate-topology.md:243). Pinning a deprecated crate in a fresh greenfield workspace is gratuitous. +- [RESOLVED] `[MAJOR]` `windows = "0.58"` is significantly stale; current is `0.62.2` (design/30-crate-topology.md:253). Between 0.58 and 0.62 the COM, RPC and Cryptography modules saw breaking renames (e.g. `Win32_System_Rpc` surface trimmed, `Security_Cryptography` reorganised). Designing against 0.58 then "upgrading later" wastes work. Pin to 0.62.x. +- [RESOLVED] `[MAJOR]` `tiberius = "0.12"` + `auth-windows` claim. `tiberius` 0.12.3 default features include `winauth` (SSPI) only on Windows; integrated security against MSSQL via SSPI is supported, but the design lists `mxaccess-galaxy` as "All Rust targets (TDS works cross-platform)" while only providing `auth-windows` for integrated security (design/30-crate-topology.md:94–96, :203). On Linux, the only auth options are SQL logins or `integrated-auth-gssapi` (Kerberos). Galaxy databases in practice are domain-joined Windows boxes using NTLM/Kerberos integrated auth — Linux clients won't work without `integrated-auth-gssapi` and a configured KDC. The doc claims cross-platform without flagging this. +- [RESOLVED] `[MAJOR]` `num-bigint = "0.4"` for DH ModPow is not constant-time (design/30-crate-topology.md:251). The .NET reference uses `BigInteger.ModPow` which is also not constant-time, but the Rust port has the chance to use a constant-time bignum (`crypto-bigint`). Since the DH exponent is the long-lived private key (AsbSystemAuthenticator.cs:153–166), a side-channel-leaky `mod_exp` re-creates a defect, not parity. Flag as a security regression vs. an opportunity. +- [RESOLVED] `[MAJOR]` Crate boundary: `mxaccess-galaxy` is split out, but the .NET reference keeps `GalaxyRepositoryTagResolver.cs` inside `MxNativeClient` namespace (`namespace MxNativeClient;` at line 4) (design/30-crate-topology.md:117–122). Splitting into a separate crate forces `mxaccess-nmx` → `mxaccess-galaxy`, but the resolver returns `MxReferenceHandle` (a `mxaccess-codec` type) and is consumed by NMX register flows — fine, no cycle. However, `mxaccess-callback` does NOT need `mxaccess-galaxy`, yet the diagram routes everything through `mxaccess-nmx` which depends on both. Minor coupling concern: the resolver pulls `tiberius` (heavy, native-tls/rustls/winauth) into every consumer of `mxaccess-nmx`. Should be a feature-gated optional dep. +- [RESOLVED] `[MAJOR]` Feature `dpapi` default-on for Windows under `mxaccess-asb` — but the design does not mention `#[cfg(feature = "dpapi")]` boundaries inside `mxaccess-asb` (design/30-crate-topology.md:139, :202). The ASB shared secret is mandatory for the DH passphrase derivation (AsbSystemAuthenticator.cs:28, :134–142). With `dpapi=off` and no alternate secret source spec'd, the crate cannot authenticate at all. Either remove `dpapi` as optional, or define an explicit `SecretProvider` trait that DPAPI plugs into. +- [RESOLVED] `[MAJOR]` `clippy::unwrap_used = deny` interaction with the error model (design/30-crate-topology.md:192, design/50-error-model.md:30). `Arc` construction from `&str` via `Arc::::from(&*s)` is fine, but `TypeMismatch { reference: Arc, ... }` formatted via `thiserror` `#[error("... {reference} ...")]` requires `Arc: Display`, which it is — no unwrap path. Real risk: any place the codec parses a UTF-16LE name and calls `String::from_utf16(...).unwrap()` will trip the lint. The design needs an explicit "fallible UTF-16 decode helper" rule. Worth flagging because `MxReferenceHandle` parsing is core. +- [RESOLVED] `[MAJOR]` MSRV 1.83 vs. dependency versions. `uuid v1` features `["v4", "v7"]` — `uuid 1.23.1` requires `rust-version: 1.85.0` (design/30-crate-topology.md:188, :228, :233). Same for current `tiberius` indirect deps. Pinning MSRV to 1.83 while pulling `uuid = "1"` (= latest) is contradictory. Either pin `uuid = "=1.10"` (last 1.83-compatible) or raise MSRV to 1.85. +- [RESOLVED] `[MINOR]` "Pinned to a recent stable Rust via `rust-toolchain.toml`. MSRV equals the pinned version (no separately-stated MSRV — pinning is the contract)" contradicts `rust-version = "1.83"` in the workspace skeleton (design/30-crate-topology.md:188, :228). Pick one policy. +- [RESOLVED] `[MINOR]` Build commands include `cargo run --example connect-write-read` but the workspace example-target only resolves at the workspace root if a single crate owns examples (design/30-crate-topology.md:20–27, :181–183). With nine crates and `examples/` at the workspace root (line 20), `cargo run --example` will fail unless examples live inside a specific crate (typically `mxaccess`). +- [RESOLVED] `[MINOR]` License "MIT OR Apache-2.0 — to be confirmed" (design/30-crate-topology.md:226, :269). `tiberius` is `MIT/Apache-2.0`; everything else verified is MIT-or-Apache-2.0 compatible. No GPL/AGPL contamination found in the pinned set. Risk is `windows-rs` proxy/stub IDL re-emissions if any are vendored from Microsoft headers — flag for legal review when the codec ports OBJREF/OXID structs derived from MIDL output. +- [RESOLVED] `[NIT]` "Edition 2021 initially. Edition 2024 once stable across the dependency graph" (design/30-crate-topology.md:189). Edition 2024 has been stable since Rust 1.85 (2025-02). Given pinned deps already require 1.85, just go edition 2024. + +## design/40-protocol-invariants.md + +- [RESOLVED] `[BLOCKER]` Reference registration request prefix is severely under-documented. Doc shows prefix `cmd(1) + version(2) + itemHandle(i32) + correlation(GUID 16) + (-1 i16) + reservedByte + (1 i32) + itemDefinition…` (design/40-protocol-invariants.md:172-180). Source `NmxReferenceRegistrationMessage.cs:15` defines `HeaderLength = 55`, with explicit writes only at offsets 0,1,3,7,23,27 (src/MxNativeCodec/NmxReferenceRegistrationMessage.cs:80-87). Bytes 25-26 and 31-55 (≈26 bytes) are zero-initialized but never described. CLAUDE.md says "preserve unknown bytes"; the doc elides them. Rust port reading the spec will encode a 30-byte prefix instead of 55. +- [RESOLVED] `[BLOCKER]` Write body common prefix is wrong. Doc (design/40-protocol-invariants.md:108) says "cmd(1) + version(2) + padding(2) + handle_projection(14)" and locates wireKind at offset 17. Source `NmxWriteMessage.cs:11-13` has `HandleProjectionOffset = 3`, `HandleProjectionLength = 14`, `KindOffset = 17` — so layout is `cmd(1) + version(2) + handle_projection(14)`, no 2-byte padding. The 14 bytes are at offsets 3..17, leaving wireKind at 17. Doc inserts a phantom 2-byte padding. +- [RESOLVED] `[BLOCKER]` String/DateTime write total size is wrong. Doc (design/40-protocol-invariants.md:118-119) says total = "26 + N". `NmxWriteMessage.cs:150` computes `KindOffset(17) + 1 + 4 + 4 + N + 14 + 4 = 44 + N`. The 26+N figure is off by 18 bytes. Anyone implementing to spec will under-allocate. +- [RESOLVED] `[BLOCKER]` Subscription array header offset width disagrees with the write encoder. Doc (design/40-protocol-invariants.md:120) says array layout is `count(u16) + width(u16) + 2N + suffix`. Encoder agrees: `NmxWriteMessage.cs:181-182` writes count u16 at body[22], elementWidth u16 at body[24]. But the **decoder** at `NmxSubscriptionMessage.cs:264-265` reads `count` as u16 at body+4 and `elementWidth` as **i32** at body+6. Either the encoder or decoder is wrong, and the doc only captures one shape. This is a load-bearing inconsistency that the BoM doc must resolve, not paper over. +- [RESOLVED] `[BLOCKER]` Boolean write value section description is wrong. Doc (design/40-protocol-invariants.md:114) says "1 byte (0xFF/0x00) + 3 reserved bytes". `NmxWriteMessage.cs:257` encodes `[0xff, 0xff, 0xff, 0x00]` (true) or `[0x00, 0xff, 0xff, 0x00]` (false) — bytes 1 and 2 are 0xFF, not "reserved". Reserved implies don't-care; native sets them to 0xFF. CLAUDE.md mandates preserving unknown bytes; calling them "reserved" invites zeroing. +- [RESOLVED] `[BLOCKER]` AdviseSupervisory and Advise share opcode 0x1f but the parser rejects plain Advise. Doc (design/40-protocol-invariants.md:97-99) lists three commands: `Advise (plain) 0x1f / 37 bytes`, `AdviseSupervisory 0x1f / 39 bytes`, `UnAdvise 0x21 / 37 bytes`. But `NmxItemControlMessage.cs:46-49` rejects `command is not (AdviseSupervisory or UnAdvise)` — a 37-byte 0x1f message fails to parse. Either the doc must remove "plain Advise" or call out that the codec emits/accepts only the supervisory form (39 bytes). The duplicate enum entries `Advise = 0x1f, AdviseSupervisory = 0x1f` in the source signal this is unresolved (`NmxItemControlMessage.cs:7-8`). +- [RESOLVED] `[MAJOR]` `recordCount != 1` invariant for DataUpdate is missing. `NmxSubscriptionMessage.cs:71-74` hard-throws if `recordCount != 1` for the 0x33 DataUpdate frame. The doc treats `recordCount(i32, typically 1)` as a casual hint (design/40-protocol-invariants.md:161) and only mentions multi-record as "not yet wire-proven" (design/40-protocol-invariants.md:303). For a bill-of-materials this is an enforced invariant, not a soft expectation. The Rust port must replicate the throw to match parity. +- [RESOLVED] `[MAJOR]` HRESULT 0x8007139F meaning conflicts across docs and elides the canonical name. Doc (design/40-protocol-invariants.md:272) says "Uninitialized object". `design/50-error-model.md:133` maps it to `EngineNotRegistered`. `docs/Capture-Run-2026-04-25.md:888` and `docs/MXAccess-Public-API.md:326` document it as **`ERROR_INVALID_STATE`**, observed from `ProcessActivateSuspend2`. The 40-doc cites neither file and gives a folkloric description. +- [RESOLVED] `[MAJOR]` Write2 timestamped suffix description is incoherent. Doc (design/40-protocol-invariants.md:131-132): "8-byte FILETIME inserted between offsets 12 and 19 of the suffix region". `NmxWriteMessage.cs:240-251` `WriteTimestampedSuffix` actually replaces the 8-byte filler at suffix offsets 2..10 with the FILETIME (and changes the leading i16 from `-1` to `0`). The "between 12 and 19" wording does not match any offset in the source. +- [RESOLVED] `[MAJOR]` `tail` value for item-control is not specified. `NmxItemControlMessage.cs:88` defaults `tail = 3` for advise/unadvise. The doc only describes shape (`tail(4)`) and never names the constant or its value (design/40-protocol-invariants.md:102). The Rust port will pick a different value and fail at the responding NMX. This is the kind of byte-exactness this BoM is supposed to nail down. +- [RESOLVED] `[MAJOR]` Envelope ProtocolMarker described as `0x0201` int32 — but bytes 38-41 hold the LE u32. Doc (design/40-protocol-invariants.md:67) calls offset 38..42 a single i32 = `0x0201`. `NmxTransferEnvelope.cs:99` writes `ProtocolMarker = 0x0201` as Int32LE at offset 38. So bytes are `01 02 00 00`. The doc's claim is technically OK but the BoM should call out the wire-byte sequence to prevent endianness mistakes, since the value visually reads as a high byte 0x02. Minor relative to others but worth noting. +- [RESOLVED] `[MAJOR]` Reserved offset 6 in the envelope is described as "preserved from observed (default 0)" but `Parse` does not retain it. Doc (design/40-protocol-invariants.md:59) promises round-trip, but `NmxTransferEnvelope.cs:39-75` reads only Version, InnerLength, ProtocolMarker, etc., and discards bytes 6..10 entirely. The Encode path always writes 0 (line 91). This violates CLAUDE.md "preserve unknown bytes" and the doc misrepresents the implementation. +- [RESOLVED] `[MAJOR]` DCE/RPC bind UUID and active-interface UUID lack file:line citations. Two of the most load-bearing values for activation (design/40-protocol-invariants.md:13-14) cite "`docs/Loopback-Protocol-Findings.md`" with no line number, while every other COM identifier in the same table has a `:N` citation. For a BoM this is a missing receipt. +- [RESOLVED] `[MAJOR]` CRC-16 attribute signature initial value is "`0`" but the doc never references the spot in `MxReferenceHandle.cs` that proves `0` (vs e.g. `0xFFFF`). Doc (design/40-protocol-invariants.md:90) asserts initial value 0. `MxReferenceHandle.cs:51` does start with `ushort crc = 0`, so the claim is correct but the byte order step (low byte then high byte of UTF-16LE per char) is shown at lines 53-56 — these need explicit `:LINE` anchors, not just a range. Lines 108-119 are the inner CRC step, not the per-char loop. +- [RESOLVED] `[MAJOR]` Status-detail table omits Source field and the `Detail` is `short` not byte. Doc (design/40-protocol-invariants.md:279-291) lists detail codes as bare integers. `MxStatus.cs:32` declares `Detail` as `short` (signed 16-bit). The two callbacks (DataUpdate quality `u16`, status records `i32`) use different widths (`NmxSubscriptionMessage.cs:126,132,136`). Whether the wire is i32 (record status) or short (`MxStatus.Detail`) matters for sign extension on detail 8017. Doc collapses both. +- [RESOLVED] `[MINOR]` DataUpdate record layout in doc claims `quality(u16) + timestamp_filetime(i64) + wireKind(u8) + value(N)` after status — confirmed by `NmxSubscriptionMessage.cs:126-143` for `hasDetailStatus=false`. SubscriptionStatus claims `status(i32) + detailStatus(i32) + quality(u16) + timestamp + wireKind + value`, also confirmed. But DataUpdate header is `cmd(1) + version(2) + recordCount(4) + operationId(16) = 23 bytes` then records. SubscriptionStatus header is the same 23 bytes **plus** a per-message correlationId(16) at offset 23, records start at 39 (`NmxSubscriptionMessage.cs:98-99`). Doc shows the correlationId for SubscriptionStatus only on line 153, which is correct, but the BoM table lacks an explicit "header length 23 vs 39" which would help an implementer. NIT level since the byte math is correct. +- [RESOLVED] `[MINOR]` Boolean array on the wire uses i16 elements (`-1`/`0`), not bool bytes. `NmxWriteMessage.cs:307` writes `(short)-1` for true. `NmxSubscriptionMessage.cs:282` decodes width=`sizeof(short)`. Doc (design/40-protocol-invariants.md:120) shows `2N` for BoolArray which is consistent but doesn't say the encoding is `0xFFFF`/`0x0000` two's complement. Worth noting. +- [RESOLVED] `[MINOR]` `RegisterEngine` opnum 3 has the same signature as `INmxService::RegisterEngine` — but the **`INmxService2` interface re-declares `new`** versions of all base methods (`NmxComContracts.cs:55-73`). This means COM proxy/stub for `INmxService2` exposes its own opnum table starting at 3, not inheriting opnums from `INmxService`. Doc (design/40-protocol-invariants.md:19) says "Opnums are sequential across the inheritance" — strictly speaking, with `new` declarations the C# vtable has its own slots. This needs a sentence saying "in the IDL these are sequential because `INmxService2 : INmxService`, but in the .NET interop they are re-declared `new`". Otherwise the Rust port may misinterpret what is bound. +- [RESOLVED] `[NIT]` Reference Result message tail described as "tail(16 zero)" (design/40-protocol-invariants.md:191). `NmxReferenceRegistrationResultMessage.cs` not read but per CLAUDE.md should preserve verbatim — doc claim "all zero" needs a Frida-capture citation, not assertion. + +## design/50-error-model.md + +- [RESOLVED] `[BLOCKER]` `0x80004021` mapping is fabricated for "regular operations" (design/50-error-model.md:130). The .NET reference NEVER emits `0x80004021` from a non-secured path — it only appears in `MxNativeSession.WriteSecuredAsync` as the explanation for the `NotSupportedException` thrown locally before any wire call (src/MxNativeClient/MxNativeSession.cs:219-220). The "regular operation" stale-handle code observed across all captures is `0x80070057` E_INVALIDARG (e.g. captures/probe-add-remove.log:7, captures/008-write-test-int-same-value/harness.log:7, plus the `LmxProxy.dll` decompile returns `0x80070057` for stale handles at analysis/ghidra/exports/LmxProxy.dll.item-helper-decompile.md:60,75,88,164). The `StaleItem` arm of the split is unsupported by evidence; the design even contradicts itself one row below by mapping `0x80070057` to `InvalidArgument`. Pick one. +- [RESOLVED] `[BLOCKER]` `WriteSecuredForbidden` cannot ever be returned by the Rust port as designed (design/50-error-model.md:101,129). The .NET reference does not surface `0x80004021` from a wire response — `WriteSecuredAsync` never reaches the wire, it `throw new NotSupportedException(...)` (src/MxNativeClient/MxNativeSession.cs:218-221). For Rust parity this should map to `Error::Unsupported(...)` at the API boundary, not a runtime HRESULT translation. The `SecurityError::AccessDenied { detail }` path (design/50-error-model.md:115) is also unreachable through the proven stack — captures 111/112 show the same `0x80004021` even after auth changes (captures/112-frida-write-secured-auth-verified-protectedvalue1/frida-events.tsv:69). +- [RESOLVED] `[MAJOR]` `0x800706BA` is not transient in the .NET reference — `is_retryable=true` is wrong (design/50-error-model.md:135,200). Every observed instance is a structural callback-marshalling failure, not a flapping NmxSvc: analysis/proxy/managed-registerengine2-callback-probe.txt:8, …-loopback-probe.txt:8, …-fixed-port-probe.txt:8 and docs/NMX-COM-Contracts.md:592 all describe it as the "no SYN to advertised port" outcome after security bindings are added — a config bug, not a retryable transient. Retrying loops forever. +- [RESOLVED] `[MAJOR]` `is_retryable()` for `Connection(TcpConnect)` (design/50-error-model.md:188) glosses over `io::ErrorKind::AddrNotAvailable` / `HostUnreachable` / `ConnectionRefused` vs `TimedOut`. Retrying a name-not-found immediately is a hot-loop bug. `ConnectionError::TcpConnect` carries the `io::Error` (design/50-error-model.md:59) — `is_retryable` must inspect `kind()` like `Io(_)` does on line 206, not blanket-yes. +- [RESOLVED] `[MAJOR]` `MxStatusCategory` and `MxStatusSource` are leaked into `Error::Status` without `#[non_exhaustive]` (design/50-error-model.md:45). They are plain Rust enums in the design but mirror short-valued .NET enums (src/MxNativeCodec/MxStatus.cs:3,17) where AVEVA could legally introduce new categories — `Unknown=-1` already implies open-set. Without `#[non_exhaustive]`, downstream `match` statements lock the API. Note also `MxStatusSource` exposes six values (`RequestingLmx`…`RespondingAutomationObject`) — the Rust port should mirror these names exactly; the design never lists them. +- [RESOLVED] `[MAJOR]` `Error::Status { detail: i16 }` drops `MxStatus.Success` (src/MxNativeCodec/MxStatus.cs:29). The .NET `MxStatus` is a 4-tuple `(Success, Category, DetectedBy, Detail)`, and `Success=-1` is the documented "OK" sentinel (MxStatus.cs:36-58). The Rust error model loses the Success short, breaking byte-parity diagnostics demanded by CLAUDE.md ("Preserve unknown bytes"). +- [RESOLVED] `[MAJOR]` `ConfigurationError` category is non-retryable per the recovery table (design/50-error-model.md:201), but detail=21 ("Invalid reference", src/MxNativeCodec/MxStatus.cs:76) is a cold-cache miss that becomes valid after Galaxy resolver refresh — the .NET path retries by re-resolving (`MxNativeSession.ResolveTagAsync` is called every operation, src/MxNativeClient/MxNativeSession.cs:173,196,232,255). Mapping the entire `ConfigurationError` category to `is_retryable=false` is too coarse. +- [RESOLVED] `[MAJOR]` `MxValueKind` `Debug` derive is not guaranteed by the codec (design/50-error-model.md:30). The .NET enum `MxValueKind` (src/MxNativeCodec/MxValueKind.cs:3-18) is the spec; the Rust port must explicitly `#[derive(Debug)]` and the design's `expected:?, actual:?` format (line 29) requires it. Not a blocker if obeyed, but the design must state it — neither `10-raw-layer.md` nor `50-error-model.md` constrain the codec to derive `Debug`. +- [RESOLVED] `[MAJOR]` `RpcError` is exposed in the public `ConnectionError::OxidResolve { source: RpcError }` (design/50-error-model.md:61) but `RpcError` is defined only in the raw layer (design/10-raw-layer.md:282-285) with no documented `std::error::Error` impl, no `Display`, and no `#[non_exhaustive]` declaration cited. `#[source]` requires `std::error::Error`. The design must promote `RpcError` to a public, stable, `Error`-implementing type or wrap it. +- [RESOLVED] `[MINOR]` Cancellation policy on `UnAdvise` failure is unspecified (design/50-error-model.md:145). "Best-effort" with no statement about whether the failure is logged, traced, or silently dropped. The .NET reference logs to `mx.unadvise.error` (captures/probe-add-remove.log:7) — the Rust port should commit to `tracing::warn!` and say so. +- [RESOLVED] `[MINOR]` Panic policy is incomplete (design/50-error-model.md:154-159). `clippy::panic = deny` does not cover `unreachable!()`, `todo!()`, indexing panics (`a[i]`), arithmetic overflow panics, or slice bounds. Add `clippy::indexing_slicing`, `clippy::unreachable`, `clippy::todo`, `clippy::arithmetic_side_effects` (or document why omitted). Test override "via `#[cfg(test)]`" is vague — `#![cfg_attr(test, allow(clippy::unwrap_used))]` is the actual pattern. +- [RESOLVED] `[NIT]` `0x8001011D` `CallbackObjRefRejected` mapping is supported but the cite is thin: it appears only in probe-narrative docs (docs/NMX-COM-Contracts.md:591), not as a logged HRESULT in `captures/`. The design should cite docs/NMX-COM-Contracts.md:590-594 directly so future maintainers can find it. + +## design/60-roadmap.md + +- [RESOLVED] `[BLOCKER]` M1 DoD claims "every Frida-captured write/advise/subscribe body in `captures/0NN-frida-*` round-trips byte-identical" but several captures contain unresolved native behaviour the .NET reference itself does not yet decode (design/60-roadmap.md:35). Evidence: captures/079-082, 094 are buffered-advise scenarios where work_remain.md:177-181 says the codec layout for buffered batches is unproven (provider only emits single-sample batches), and 70-risks-and-open-questions.md:21-26 (R2) explicitly defers buffered batch parity. 036 (single-token `WriteSecured`) returns `0x80004021` with no payload sent (R6, line 53-58). 077-078 (suspend/activate) trigger conditions are unknown (R5). Round-trip-against-themselves is achievable, but "byte-identical to the .NET reference's encode" is not, because the reference does not encode these flows. +- [RESOLVED] `[BLOCKER]` M5 DoD requires the ASB type matrix to cover `Boolean, Int32, Float, Double, String, DateTime, Duration, and the corresponding arrays` "matching `work_remain.md:108-113`" — but work_remain.md:109 only proves "deployed array tags," not all eight scalar arrays (design/60-roadmap.md:71). The DoD over-states what the .NET reference has actually proven; less-common ASB types are explicitly deferred ("Remaining work is adding less common ASB types only as needed"). Citing the line in `work_remain.md` as authority for a stronger claim than the file makes is a dependency on unproven behaviour. +- [RESOLVED] `[BLOCKER]` M6 DoD "`cargo bench` shows codec encode/decode latency comparable to or faster than the .NET reference" directly contradicts the explicit V1 non-goal "`cargo bench` numbers as gating criteria. We measure but don't gate beyond M6's loose acceptance bar." (design/60-roadmap.md:82 vs 60-roadmap.md:149). Also, "comparable to or faster than" has no defined comparison harness — the .NET reference has no microbench project. The DoD is unmeasurable as written. Same milestone also asserts "live subscribe under churn does not allocate per-message" with no allocation-counting tooling specified (compare to 70-risks-and-open-questions.md:102-108 R12 which only aims for "< 5 allocations per write at steady state"). +- [RESOLVED] `[MAJOR]` M2 DoD "non-zero `partnerVersion` against a running AVEVA install" is boolean-trivial and re-proves what docs/DotNet10-Native-Library-Plan.md:64-73 already established (`partner_version=6`) (design/60-roadmap.md:43). It does not exercise `RegisterEngine2`, callback OBJREF export, or actually receiving a status frame, despite the prose two lines above (line 41) listing those as in-scope. The DoD is weaker than what M2 promises to deliver and cannot detect regressions in the callback exporter — which is the *hardest* part of M2 per the .NET evidence (`MxNativeClient` had to hand-roll `INmxSvcCallback`/`IRemUnknown`). +- [RESOLVED] `[MAJOR]` Sequencing claim "M5 can run in parallel with M3/M4" is partially false (design/60-roadmap.md:142,145). M5 says `mxaccess::Session over AsbTransport` (line 68) — the `Session` type, recovery policy, `Stream`, and `Transport` trait are all defined in M4 (lines 55-60). M5 cannot land its public surface before M4 lands the Session abstraction. The "ASB does not depend on DCE/RPC" justification only covers the *transport*, not the shared `Session`. This contradicts 30-crate-topology.md:64-65 where `mxaccess` (top-level) sits below both transports. +- [RESOLVED] `[MAJOR]` Cross-implementation parity assumes the .NET reference is correct, but work_remain.md:170-174 flags the completion-only byte mapping (`0x00`/`0x41`/`0xEF`) as unmapped and `MXSTATUS_PROXY[]` conversion as missing (design/60-roadmap.md:96-102). Any Rust port that "matches the .NET reference" inherits the same gap — passing parity tests does not mean correct behaviour. The roadmap should mark these as "preserved verbatim" rather than green-checked by parity. R3/R4 acknowledge this but the validation strategy section does not. +- [RESOLVED] `[MAJOR]` Cross-platform drift: roadmap line 153 says "Linux is a stretch goal sitting behind feature flags" but 30-crate-topology.md:91 claims `mxaccess-galaxy` is "All Rust targets (TDS works cross-platform via `tiberius`)" and the codec is also "All Rust targets" (line 82), and 70-risks-and-open-questions.md:128-134 Q3 says "Linux-best-effort." Three documents, three different positions. The roadmap is the most restrictive; either it is wrong or the topology over-promises. +- [RESOLVED] `[MAJOR]` Live-probe CI story is unspecified. M2/M3/M4/M5 DoDs all require a "running AVEVA install" + Galaxy DB + `MX_LIVE` env (60-roadmap.md:43,51,62,71,93-94). There is no description of how this CI lane is provisioned — AVEVA System Platform is a licensed Windows-only install with a SQL Galaxy. Without a hosted runner story, every milestone's DoD reduces to "the author ran it once on their workstation." This is not a regression-detecting test line. +- [RESOLVED] `[MINOR]` M3 DoD cites `captures/022-frida-int-write*` and `captures/077-frida-advise*` for byte-identical comparison (60-roadmap.md:51), but `077` is `077-frida-suspend-advised-scanstate` (per the directory listing) — a *suspend* capture, not an advise capture. The advise/subscribe captures are `058-060`, `077` actually exercises the unproven Suspend path (R5). Citation appears wrong or aspirational. +- [RESOLVED] `[MINOR]` M0 DoD includes `cargo publish --dry-run -p mxaccess-codec` (60-roadmap.md:16) but 30-crate-topology.md:269 and Q2 (70-risks-and-open-questions.md:120-126) flag that the license is unconfirmed and there is no LICENSE in the repo. `cargo publish --dry-run` will refuse without `license` + `license-file` resolved. M0 cannot complete cleanly until Q2 is settled, but the dependency table does not reference Q2. +- [RESOLVED] `[NIT]` `tests/fixtures/` populated from `captures/` via "junction or copy" (60-roadmap.md:12, 30-crate-topology.md:29) — junctions on Windows do not survive `git clone` on Linux/macOS, breaking the cross-platform stretch goal at the fixture-loading layer. Pick one. + +## design/70-risks-and-open-questions.md + +- [RESOLVED] `[BLOCKER]` `mxaccess-asb-soap` framing risk is mis-scoped — the .NET reference uses `NetTcpBinding` with default **BinaryMessageEncoder** (.NET Binary XML / NBFX / [MC-NBFX]+[MC-NBFS]), NOT SOAP/XML. R1 talks about hand-rolling [MS-NMF] (~1500 LoC) but never lists implementing the binary dictionary/string-table codec, and 30-crate-topology.md:130 pins `quick-xml` for an XML parse path that does not exist on the wire. The risk register should record "no XML on the wire — must implement [MC-NBFX] decoder; `quick-xml` is the wrong dep" as its own R-item (design/70-risks-and-open-questions.md:7-18). Evidence: src/MxAsbClient/MxAsbDataClient.cs:663 `new NetTcpBinding(SecurityMode.None)` with no message-encoding override → WCF defaults to binary; design/30-crate-topology.md:130 lists `quick-xml`. Currently missing. +- [RESOLVED] `[BLOCKER]` `recordCount != 1 → throw` invariant has no risk entry. src/MxNativeCodec/NmxSubscriptionMessage.cs:71-74 hard-rejects any DataUpdate with more than one record. R2 is about the *missing fixture*, but the much bigger risk — that the codec will **panic in production** the first time AVEVA emits a multi-record `0x33` — is unrecorded. Either lift the constraint defensively or add this as its own R-item with a "behavior on rejection" plan (design/70-risks-and-open-questions.md:20-26). Evidence: src/MxNativeCodec/NmxSubscriptionMessage.cs:71-74; design/40-protocol-invariants.md:303 acknowledges the gap but only as a fixture problem. +- [RESOLVED] `[BLOCKER]` `0x80004021 → StaleItem` mapping in 50-error-model.md:130 is unevidenced. R6 admits "the reason is unknown" for secured writes, then the error model casually maps the same HRESULT on regular operations to a brand-new `StaleItem` enum that no capture, decompile, or .NET reference produces. This is invented protocol behavior — directly violates CLAUDE.md "do not fabricate protocol behavior" and is not flagged (design/70-risks-and-open-questions.md:52-58). Evidence: design/50-error-model.md:130 — `StaleItem` synthesised; no fixture cited; design/40-protocol-invariants.md:270 only documents the secured-write path. +- [RESOLVED] `[MAJOR]` R3/R4 "Settles when" depends on Ghidra output `analysis/ghidra/aaDCT tables` that the doc itself admits is "currently absent." work_remain.md:173-174 reports "Current available decompiled/Ghidra outputs did not expose a mapping table for completion-only bytes." There is no plan, owner, or alternate path (e.g. native callback frida capture mentioned in work_remain.md:170). This is indefinitely punted — should be relabeled "indefinitely deferred" like the OperationComplete row in the evidence-gaps table, and stripped of fake settle criteria (design/70-risks-and-open-questions.md:34, 42). +- [RESOLVED] `[MAJOR]` No risk for `Drop`-time async cleanup hazards. Q6 covers `Clone` semantics but the design at 20-async-layer.md:70 and 50-error-model.md:145-146 openly admits drop fires `tokio::spawn` for `UnAdvise`/`UnregisterEngine` — that requires a Tokio runtime to be alive at drop time. Drop in a sync context (e.g. final teardown after `Runtime::shutdown_timeout`) will silently leak the unadvise/unregister and leak server-side handles in NMX. This is a correctness hazard and not in R1–R12 (design/70-risks-and-open-questions.md:152-158). Evidence: design/00-overview.md:38 "No spawn from inside Drop" directly contradicts design/20-async-layer.md:70 and 50-error-model.md:145. +- [RESOLVED] `[MAJOR]` Crypto/auth crate version-drift risk is missing. 30-crate-topology.md:130 pins `rc4`, `sha-1`, `md-5`, `num-bigint` — all of which are at minimum-maintenance / deprecation watchlist (`rc4` is yanked-adjacent, `sha-1` v0.10 is the last RustCrypto release with a deprecation warning). Combined with 10-raw-layer.md:252 "Do not pull `ring` — hand-roll MD4," the auth surface area depends on ~5 marginal crates. No R-item tracks "what happens when one of these is yanked / advisory'd in CI." Currently missing. +- [RESOLVED] `[MAJOR]` R1 and R12 have inverted severity. R1 is "hand-roll [MS-NMF] reliable-session, NBFX/NBFS dictionary codec, DH key agreement (~1500 LoC, plus the entire WCF binary message encoder you forgot)" — that's the entire ASB data plane. R12 is `BytesMut::with_capacity` micro-optimization. Treating them as peer entries in an unsorted list misrepresents the project's blocker surface. The doc has no severity tier; introduce one or reorder (design/70-risks-and-open-questions.md:7, 102). +- [RESOLVED] `[MAJOR]` Q1 says "sibling `rust/`" but no workspace exists. `Glob` of `rust/` confirms zero files; CLAUDE.md itself hedges ("when it is started"). The "best answer" is presented as confirmed but is in fact still a question — and M0 cannot start without it. Either escalate to an explicit decision item with an owner, or stop calling it answered (design/70-risks-and-open-questions.md:112-118). +- [RESOLVED] `[MINOR]` Q3 contradicts crate topology. Q3 says "Linux-best-effort … macOS unsupported in V1." 00-overview.md:35 describes "Windows-first, **cross-platform-aware**" with ASB SOAP framing portable. 30-crate-topology.md:130 lists no `cfg(windows)` gating on `mxaccess-asb-soap` deps. So either the soap crate compiles on Linux (contradicting Q3 best-effort) or it doesn't (contradicting the topology). Resolve in one place (design/70-risks-and-open-questions.md:128-134). +- [RESOLVED] `[MINOR]` "No risk: NDR-bridge" and "No risk: custom TLB" are asserted with docs/Transport-Correlation.md and "the .NET reference" as citations but no `:line` numbers and no Ghidra/capture artifact. CLAUDE.md mandates evidence; the section that proudly declares non-issues is the only section in the file with weaker citations than the risks themselves (design/70-risks-and-open-questions.md:175-187). +- [RESOLVED] `[MINOR]` Evidence-gaps table omits two fixtures present in work_remain.md: (a) source-level no-communication evidence (work_remain.md:198) and (b) live partial-cleanup behavior after channel failure (work_remain.md:196-197). Both are open in work_remain.md but missing from the gap table (design/70-risks-and-open-questions.md:164-171). + diff --git a/docs/ASB-Native-Integration-Decision.md b/docs/ASB-Native-Integration-Decision.md new file mode 100644 index 0000000..273130e --- /dev/null +++ b/docs/ASB-Native-Integration-Decision.md @@ -0,0 +1,138 @@ +# ASB / Native Integration Decision + +## Decision + +Use `MxAsbClient` as the preferred implementation for the regular tag data +plane. Do not embed ASB inside the current `MxNativeSession` transport. Instead, +introduce a higher-level compatibility facade that can route each MXAccess-style +operation to either ASB or native NMX behind a common server/item-handle model. + +The boundary should be operation-based, not inheritance-based: + +- ASB owns direct `IASBIDataV2` connect, register, unregister, read, write, + write-completion polling, publish subscriptions, cleanup, and explicit + reconnect. +- Native NMX owns COM/DCOM activation, NMX service registration, callback export, + Galaxy repository metadata resolution, native subscription callbacks, native + recovery replay, and MXAccess behaviors whose ASB equivalent is not proven. +- The existing `MxNativeClient` should remain available as the native fallback + and diagnostic path. ASB can replace its basic scalar/array read/write and + simple data-change usage only after a shared facade makes routing explicit. + +This avoids coupling the WCF ASB channel lifecycle to the DCE/RPC callback +lifecycle while still letting callers move to the simpler pure-managed x64 ASB +path where evidence is strongest. + +## Evidence + +Current ASB evidence is strong for the normal data path: + +- The pure .NET 10 x64 ASB client connects to the live `IASBIDataV2` net.tcp + endpoint, authenticates from local DPAPI-protected solution material, and + performs register/read/write without AVEVA assembly references. +- ASB register/read/write is live-proven for deployed scalar and array tags, and + `PublishWriteComplete` supplies write-handle completion records for basic + writes. +- ASB subscriptions can create subscriptions, add monitored items, publish + values, map quality/status payloads, and raise an MXAccess-like data-change + event through `MxAsbCompatibilityServer`. +- ASB now has public option objects for connection, write, write completion, + subscriptions, monitored items, cleanup, and reconnect. + +Current native evidence is still required for legacy semantics: + +- `MxNativeSession` owns NMX service activation, DCE/RPC transport, callback sink + registration, heartbeat/recovery, Galaxy metadata resolution, NMX write + message projection, `Write2`, `WriteSecured2`, supervisory advise, buffered + registration, and callback parsing. +- `MxNativeCompatibilityServer` models the fuller MXAccess surface: + `AddItem2`, `AuthenticateUser`, `ArchestrAUserToId`, `Suspend`, `Activate`, + `AdviseSupervisory`, `OnWriteComplete`, `OperationComplete`, and + `OnBufferedDataChange`. +- Direct `IASBIDataV2` exposes no activate, suspend, or generic + `OperationComplete` operation. It only exposes write-completion polling. +- ASB buffered monitored items are accepted by the observed provider, but publish + still returns one current value rather than a native buffered sample batch. +- Direct system-auth ASB writes did not reproduce the public MXAccess secured + write rejection path on this VM. + +## Recommended Boundary + +Create a routing layer above both clients. It should hold compatibility +server/item handles and choose a backend per operation: + +- `Register`, `Unregister`, `AddItem`, `RemoveItem`, `Read`, basic `Write`, + simple `Advise`, `UnAdvise`, and write-completion polling should default to + ASB when an ASB endpoint is configured and the tag/value shape is supported. +- `Write2`, `WriteSecured2`, `AuthenticateUser`, `ArchestrAUserToId`, `Suspend`, + `Activate`, `AdviseSupervisory`, buffered items, and native callback-only + events should route to native NMX until direct ASB evidence exists. +- `OperationComplete` should not be synthesized from ASB write completion. ASB + write completion can raise a write-complete event, but generic operation + completion remains native-only until a native trigger and payload mapping are + proven. +- The facade should expose which backend handled an item or operation so tests, + probes, logs, and callers can distinguish ASB behavior from native fallback. + +## What ASB Should Own + +- Endpoint discovery/configuration inputs for the direct `IASBIDataV2` route. +- Connection/authentication, request signing, channel cleanup, reconnect, and + connection-failure cleanup for ASB. +- ASB item identity creation, register/unregister/read, variant + encode/decode, and supported scalar/array writes. +- `AsbWriteOptions` and `AsbWriteCompletionOptions` driven write completion, + including delayed readback when requested. +- ASB subscription creation, monitored item creation/deletion, publish polling, + quality/status mapping, and basic MXAccess-compatible data-change adaptation. +- ASB-specific result/status summaries that preserve raw provider status while + exposing named categories for known cases. + +## What Native NMX Should Still Own + +- DCE/RPC, COM object reference handling, NTLM/SSPI authentication, callback + export, and NMX service registration. +- Galaxy repository tag resolution and metadata needed for NMX reference handles, + value-kind projection, and native buffered registration. +- `Write2` and `WriteSecured2` until ASB timestamped and secured-write parity is + explicitly proven. +- `Suspend`, `Activate`, supervisory advise, native recovery replay, heartbeat + policy, and callback-derived event surfaces. +- `OnBufferedDataChange` and generic `OperationComplete` until ASB produces + equivalent runtime evidence. +- Native diagnostic/probe coverage for payloads that ASB does not expose. + +## Risks And Unknowns + +- ASB endpoint discovery/configuration is environment-specific; fallback to NMX + must be explicit when no usable endpoint is configured. +- ASB access-denied, no-communication, and other live fault status cases still + need safe source conditions before they can be treated as complete parity. +- The exact native completion-only byte-to-status mapping is not fully proven. +- ASB buffered publish behavior may vary by provider or configuration; the + observed provider did not produce multi-sample batches. +- Dual routing can create semantic drift if the facade hides backend choice. + Backend selection must be visible in diagnostics and test assertions. +- Mixing ASB and native subscriptions for the same logical item can duplicate + callbacks or produce ordering differences; route each item to one backend at a + time. + +## Staged Migration + +1. Add a small shared facade project or class that exposes the MXAccess-style + handle API and delegates to `MxAsbCompatibilityServer` or + `MxNativeCompatibilityServer`. +2. Start with opt-in ASB routing for basic register/read/write/simple-advise + flows. Keep native as the default fallback for unsupported operations. +3. Add route annotations to events and probe output so every data-change, + write-complete, and fallback decision identifies `asb` or `native`. +4. Port basic compatibility tests to run against the facade with ASB-for-data + enabled and native fallback enabled. Preserve existing ASB-only and + native-only tests. +5. Gate any additional replacement on evidence: timestamped ASB write behavior, + secured-write behavior, buffered sample batches, and native + operation-complete parity should each require a focused capture or live probe + before moving from native to ASB. +6. After the facade is stable, treat `MxNativeClient` as the legacy/native + adapter and `MxAsbClient` as the primary data adapter. Avoid merging their + transport internals. diff --git a/docs/ASB-Variant-Wire-Format.md b/docs/ASB-Variant-Wire-Format.md new file mode 100644 index 0000000..475397c --- /dev/null +++ b/docs/ASB-Variant-Wire-Format.md @@ -0,0 +1,222 @@ +# ASB Variant Wire Format + +This note documents the ASB `Variant` and related value/status payloads that +`MxAsbClient` currently understands. It is based on +`src/MxAsbClient/AsbContracts.cs`, `MxAsbDataClient.DecodeVariant`, +`MxAsbDataClient.FormatVariant`, `src/MxAsbClient.Tests/Program.cs`, and the +remaining-work notes. + +## ASBIData Framing + +ASB custom data-contract values are serialized as an `ASBIData` XML element +containing base64-encoded binary. The binary uses the .NET `BinaryWriter` / +`BinaryReader` primitive layout used by the client on Windows: + +| Field kind | Binary layout | +| --- | --- | +| `ushort` | 2-byte little-endian unsigned integer | +| `int` / `uint` | 4-byte little-endian integer | +| `long` / `ulong` | 8-byte little-endian integer | +| `float` / `double` | 4-byte / 8-byte IEEE payload from `BitConverter` | +| `bool` fields in custom structs | one `BinaryWriter.Write(bool)` byte | +| UTF-16 strings in custom structs | 4-byte byte length, then UTF-16LE bytes | +| custom arrays | 4-byte element count, then each element's custom binary body | + +The `Variant` body itself is: + +| Offset | Size | Field | Notes | +| --- | ---: | --- | --- | +| 0 | 2 | `Type` | `AsbDataType` numeric ID. | +| 2 | 4 | `Length` | Logical payload length. Factory-created variants set this to `Payload.Length`. | +| 6 | 4 | `PayloadLength` | Actual byte count emitted before `Payload`. | +| 10 | `PayloadLength` | `Payload` | Type-specific bytes. Empty or missing payload is treated as empty. | + +`DecodeVariant` trusts the actual payload bytes for parsing. Unsupported type IDs +with non-empty payloads are returned as raw `byte[]`; unsupported empty variants +return `null`, except known empty string/array types, which return empty values. + +## Declared Type IDs + +These IDs are declared by `AsbDataType`. Only the layouts listed as +decode-supported below should be considered implemented behavior. + +| ID | Name | Current handling | +| ---: | --- | --- | +| 0 | `TypeByte` | Declared only; raw bytes if received. | +| 1 | `TypeChar` | Declared only; raw bytes if received. | +| 2 | `TypeInt16` | Declared only; raw bytes if received. | +| 3 | `TypeUInt16` | Declared only; raw bytes if received. | +| 4 | `TypeInt32` | Decode/write supported and live-proven. | +| 5 | `TypeUInt32` | Declared only; raw bytes if received. | +| 6 | `TypeInt64` | Declared only; raw bytes if received. | +| 7 | `TypeUInt64` | Declared only; raw bytes if received. | +| 8 | `TypeFloat` | Decode/write supported and live-proven. | +| 9 | `TypeDouble` | Decode/write supported and live-proven. | +| 10 | `TypeString` | Decode/write supported and live-proven. | +| 11 | `TypeDateTime` | Decode/write supported and live-proven. | +| 12 | `TypeDuration` | Decode/write supported and live-proven. | +| 13 | `TypeGuid` | Declared only; raw bytes if received. | +| 14 | `TypeByteString` | Declared only; raw bytes if received. | +| 15 | `TypeLocaleId` | Declared only; raw bytes if received. | +| 16 | `TypeLocalizedText` | Declared only; raw bytes if received. | +| 17 | `TypeBool` | Decode/write supported and live-proven. | +| 18 | `TypeSByte` | Declared only; raw bytes if received. | +| 19 | `TypeErrorStatus` | Declared only; raw bytes if received. | +| 20 | `TypeEnum` | Declared only; raw bytes if received. | +| 21 | `TypeDataType` | Declared only; raw bytes if received. | +| 22 | `TypeSecurityClassification` | Declared only; raw bytes if received. | +| 23 | `TypeDataQuality` | Declared only; raw bytes if received. | +| 40 | `TypeByteArray` | Declared only; raw bytes if received. | +| 41 | `TypeCharArray` | Declared only; raw bytes if received. | +| 42 | `TypeInt16Array` | Declared only; raw bytes if received. | +| 43 | `TypeUInt16Array` | Declared only; raw bytes if received. | +| 44 | `TypeInt32Array` | Decode/write supported and live-proven for deployed array tags. | +| 45 | `TypeUInt32Array` | Declared only; raw bytes if received. | +| 46 | `TypeInt64Array` | Declared only; raw bytes if received. | +| 47 | `TypeUInt64Array` | Declared only; raw bytes if received. | +| 48 | `TypeFloatArray` | Decode/write supported and live-proven for deployed array tags. | +| 49 | `TypeDoubleArray` | Decode/write supported and live-proven for deployed array tags. | +| 50 | `TypeStringArray` | Decode/write supported and live-proven for deployed array tags. | +| 51 | `TypeDateTimeArray` | Decode/write supported and live-proven for deployed array tags. | +| 52 | `TypeDurationArray` | Decode/write supported by tests; live coverage depends on deployed tags. | +| 53 | `TypeGuidArray` | Declared only; raw bytes if received. | +| 54 | `TypeByteStringArray` | Declared only; raw bytes if received. | +| 55 | `TypeLocaleIdArray` | Declared only; raw bytes if received. | +| 56 | `TypeLocalizedTextArray` | Declared only; raw bytes if received. | +| 57 | `TypeBoolArray` | Decode/write supported and live-proven for deployed array tags. | +| 58 | `TypeSByteArray` | Declared only; raw bytes if received. | +| 60 | `TypeEnumArray` | Declared only; raw bytes if received. | +| 61 | `TypeDataTypeArray` | Declared only; raw bytes if received. | +| 62 | `TypeSecurityClassificationArray` | Declared only; raw bytes if received. | +| 63 | `TypeDataQualityArray` | Declared only; raw bytes if received. | +| 65535 | `TypeUnknown` | Used for empty/user-data placeholders. | + +## Supported Scalar Payloads + +| Type | ID | Payload layout | Empty-payload decode | +| --- | ---: | --- | --- | +| `TypeBool` | 17 | one byte; non-zero is `true`, zero is `false` | `null` | +| `TypeInt32` | 4 | 4-byte little-endian signed integer | `null` | +| `TypeFloat` | 8 | 4-byte IEEE single from `BitConverter` | `null` | +| `TypeDouble` | 9 | 8-byte IEEE double from `BitConverter` | `null` | +| `TypeString` | 10 | UTF-16LE bytes, no per-string length inside the variant payload | empty string | +| `TypeDateTime` | 11 | 8-byte signed Windows FILETIME from `DateTime.ToFileTimeUtc()` | `null` | +| `TypeDuration` | 12 | 8-byte signed .NET tick count from `TimeSpan.Ticks` | `null` | + +`FormatVariant` renders scalar values as invariant strings. `DateTime` values +format with the round-trip `O` pattern after `DateTime.FromFileTimeUtc()`; +`Duration` values format with the constant `c` `TimeSpan` pattern. + +## Supported Array Payloads + +Variant arrays do not carry an element count in a common header. The element +count is inferred from payload byte length for fixed-width arrays, or by walking +length-prefixed records for string arrays. + +| Type | ID | Payload layout | Empty-payload decode | +| --- | ---: | --- | --- | +| `TypeInt32Array` | 44 | packed 4-byte little-endian signed integers | empty `int[]` | +| `TypeBoolArray` | 57 | one byte per element; non-zero is `true` | empty `bool[]` | +| `TypeFloatArray` | 48 | packed 4-byte IEEE singles | empty `float[]` | +| `TypeDoubleArray` | 49 | packed 8-byte IEEE doubles | empty `double[]` | +| `TypeStringArray` | 50 | repeated 4-byte byte length, then UTF-16LE bytes; zero length is empty string | empty `string[]` | +| `TypeDateTimeArray` | 51 | packed 8-byte Windows FILETIME values | empty `DateTime[]` | +| `TypeDurationArray` | 52 | packed 8-byte .NET tick counts | empty `TimeSpan[]` | + +For malformed string-array payloads, decoding stops when the next declared +string byte length is negative or extends beyond the remaining payload. The +partial values decoded before that point are preserved. + +## Timestamp and Duration Handling + +There are two different timestamp encodings: + +| Location | Encoding | +| --- | --- | +| `Variant` `TypeDateTime` / `TypeDateTimeArray` payloads | Windows FILETIME UTC values (`DateTime.ToFileTimeUtc()` / `DateTime.FromFileTimeUtc()`). | +| `RuntimeValue.Timestamp` in read/publish wrappers | 8-byte `DateTime.ToBinary()` value followed by a one-byte `TimestampSpecified` flag. Publish mapping normalizes the timestamp to UTC for `AsbPublishedValue.TimestampUtc`. | + +`TypeDuration` and `TypeDurationArray` payloads are 8-byte `TimeSpan.Ticks` +values. No alternate duration units are inferred. + +## String Encoding + +Scalar `TypeString` payloads are raw UTF-16LE bytes without an inner length. +The variant `Length` and `PayloadLength` fields provide the byte count. + +`TypeStringArray` payloads are a sequence of string records. Each record starts +with a 4-byte little-endian byte length followed by that many UTF-16LE bytes. +`null` and empty strings are both emitted as a zero-length string by +`AsbVariantFactory.FromStringArray`, and decode as `string.Empty`. + +The same 4-byte byte-length plus UTF-16LE convention is also used by custom +struct string fields such as `ItemIdentity.Name`, but that is outside the +variant payload. + +## Runtime Value, Quality, and Status + +Quality is not part of a `Variant` payload. Reads and publishes wrap the variant +inside `RuntimeValue`, whose binary layout is: + +| Order | Field | Binary layout | +| ---: | --- | --- | +| 1 | `Timestamp` | 8-byte `DateTime.ToBinary()` value | +| 2 | `TimestampSpecified` | one boolean byte | +| 3 | `Value` | nested `Variant` body | +| 4 | `Status` | nested `AsbStatus` body | + +`AsbStatus` is: + +| Order | Field | Binary layout | +| ---: | --- | --- | +| 1 | `Count` | signed byte | +| 2 | payload byte length | 4-byte integer | +| 3 | `Payload` | status element bytes | + +`AsbPublishMapper.DecodeStatus` treats `Count` as the number of payload bytes +to inspect when it is positive, capped at the actual payload length. If `Count` +is zero or negative, it inspects the full payload. + +Status element bytes are parsed as repeated records: + +| Record part | Meaning | +| --- | --- | +| marker byte bit 0-6 | `AsbStatusElementType` ID | +| marker byte bit 7 set | element value is implicitly zero and no value bytes follow | +| marker byte bit 7 clear | next two bytes are a little-endian `ushort` value | + +Known status element type IDs are: + +| ID | Name | +| ---: | --- | +| 1 | `OpcDaStatus` | +| 2 | `OpcUaStatus` | +| 3 | `OpcUaVendorStatus` | +| 4 | `ScadaStatus` | +| 5 | `MxStatusCategory` | +| 6 | `MxStatusDetail` | +| 7 | `MxQuality` | +| 125 | `Reserved1Status` | +| 126 | `Reserved2Status` | +| 127 | `Reserved3Status` | + +`MxQuality` is summarized by masking with `0x00C0`: `0x00C0` is good, +`0x0040` is uncertain, and `0x0000` is bad. Unknown quality values and unknown +status element types are preserved rather than guessed. + +## Proven Versus Intentionally Open + +Live/read/write coverage is complete for Boolean, Int32, Float, Double, String, +DateTime, Duration, and the deployed array tags called out in the remaining-work +notes. The non-live test suite also round-trips the supported factories through +`DecodeVariant`, including the duration array path. + +The client intentionally does not infer layouts for declared-but-unsupported ASB +types such as GUID, byte strings, localized text, enum/data-type/security/data +quality variants, and their array forms. Those types stay as raw bytes until a +real deployed tag, capture, or contract evidence proves the payload shape. + +Buffered publish batches are also intentionally not described here. The current +ASB buffered flag is exposed, but observed publish responses still carry a +single current `RuntimeValue` per item rather than a proven multi-sample batch +payload. diff --git a/docs/Capture-Run-2026-04-25.md b/docs/Capture-Run-2026-04-25.md new file mode 100644 index 0000000..e68cc9c --- /dev/null +++ b/docs/Capture-Run-2026-04-25.md @@ -0,0 +1,975 @@ +# MXAccess capture run - 2026-04-25 + +This run used the primary installed MXAccess interop assembly: + +```text +C:\Program Files (x86)\ArchestrA\Framework\Bin\ArchestrA.MXAccess.dll +``` + +The harness is in `src\MxTraceHarness` and builds as `net481` x86 because +MXAccess activates the 32-bit `LMXProxy.LMXProxyServer` COM server. + +## Galaxy repository inputs + +The tag selector is: + +```text +analysis\sql\select_capture_tags.sql +``` + +It connects to the Galaxy repository described in +`C:\Users\dohertj2\Desktop\lmxopcua\gr\connectioninfo.md`: + +```text +Server=localhost; Database=ZB; Integrated Security=SSPI +``` + +The output from this run is saved at: + +```text +analysis\db\capture-tag-candidates.tsv +``` + +Selected test tags: + +| Runtime reference | Type | Security | Notes | +| --- | --- | --- | --- | +| `TestChildObject.TestBool` | Boolean | Operate / 1 | scalar read/subscription | +| `TestChildObject.TestInt` | Integer | Operate / 1 | scalar read/subscription/write | +| `TestChildObject.TestString` | String | Operate / 1 | scalar read/subscription | +| `TestChildObject.TestStringArray[]` | String array, length 10 | Operate / 1 | array read/subscription | +| `NoSuchObject_999.NoSuchAttr` | invalid | n/a | negative resolution path | + +Important naming result: array attributes must be passed to MXAccess with the +`[]` suffix. `TestChildObject.TestStringArray` produced +`MxCategoryConfigurationError`, detail `1003`; `TestChildObject.TestStringArray[]` +returned `System.String[]` with quality `192`. + +## Harness behavior captured + +Built command: + +```text +dotnet build src\MxTraceHarness\MxTraceHarness.csproj -c Release +``` + +Executable: + +```text +src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +``` + +Scenarios now implemented: + +| Scenario | High-level sequence | +| --- | --- | +| `register` | `Register`, wait, `Unregister` | +| `add-remove` | `Register`, `AddItem`, wait, `RemoveItem`, `Unregister` | +| `subscribe` | `Register`, `AddItem`, `AdviseSupervisory`, wait callbacks, `UnAdvise`, `RemoveItem`, `Unregister` | +| `write` | `Register`, `AddItem`, `AdviseSupervisory`, wait initial callback, `Write`, wait `OnWriteComplete`, cleanup | + +Write precondition found in this run: + +- `Write` immediately throws `E_INVALIDARG` if called after `AddItem` only. +- `Write` succeeds after `AdviseSupervisory` has established the item connection. +- The fourth `Write` argument should follow the existing bridge convention: + pass the Galaxy `security_classification` value for the attribute. For + `TestChildObject.TestInt`, that value is `1`. + +Successful same-value write: + +```text +captures\010-write-test-int-advised-same-value\harness.log +``` + +Observed sequence: + +```text +mx.event.data-change: TestChildObject.TestInt = 99, quality 192 +mx.write.begin: value 99, UserId/security classification 1 +mx.write.end +mx.event.write-complete: MxCategoryOk, MxSourceRespondingAutomationObject, detail 0 +``` + +## Captures produced + +Every capture folder contains `harness.log`, `netsh.etl`, `network.pcapng`, and +tool stdout/stderr files unless noted. + +| Folder | Result | +| --- | --- | +| `captures\001-register` | register/unregister success | +| `captures\002-add-remove-scalar` | scalar `AddItem`/`RemoveItem` success | +| `captures\003-subscribe-scalars` | bool/int/string initial data changes, quality `192` | +| `captures\004-subscribe-array-runtime-name` | array without `[]` returns configuration error detail `1003` | +| `captures\005-subscribe-array-bracketed-name` | array with `[]` returns `System.String[]`, length 10, quality `192` | +| `captures\006-add-invalid` | invalid `AddItem` still returns an item handle; no validation until advise | +| `captures\007-subscribe-invalid` | invalid subscribe returns configuration error detail `6` | +| `captures\008-write-test-int-same-value` | write without advise throws `E_INVALIDARG` using fourth arg `0` | +| `captures\009-write-test-int-same-value-security-1` | write without advise still throws `E_INVALIDARG` using fourth arg `1` | +| `captures\010-write-test-int-advised-same-value` | advised same-value write succeeds | +| `captures\011-pktmon-subscribe-scalar-loopback-probe` | `pktmon` probe; still did not expose `::1` NMX loopback traffic | + +Converted pcap summaries: + +```text +analysis\network\pcap-summary.txt +captures\011-pktmon-subscribe-scalar-loopback-probe\pcap-summary.txt +``` + +## Network capture status + +`netsh trace` and `pktmon` both captured external/background traffic and can be +converted to pcapng. They did not expose the local loopback session that +`NmxSvc.exe` keeps open on IPv6 loopback. + +Current `NmxSvc.exe` socket evidence during the run: + +```text +TCP 10.100.0.48:5026 LISTEN +UDP 10.100.0.48:5026 +TCP ::1:49829 <-> ::1:49704 ESTABLISHED +``` + +Interpretation: the payload needed for a native managed client is probably on +the local `::1` connection between the 32-bit MXAccess stack and `NmxSvc.exe`, +not on the physical NIC path. Capturing that requires one of: + +- working Npcap loopback capture, +- API Monitor / debugger tracing at Winsock or COM method boundaries, +- ETW provider capture if the AVEVA NMX components emit enough payload detail, +- direct lower-level COM tracing around `INmx4.PutRequest2` / `GetResponse2` and + `IDataClient` methods. + +Wireshark 4.6.4 and `etl2pcapng` 1.11.0 were installed. + +Update after interactive install: Npcap 1.87 is now installed and working. +`dumpcap -D` lists `\Device\NPF_Loopback (Adapter for loopback traffic capture)`. +The verification capture is: + +```text +captures\012-npcap-loopback-subscribe-scalar\ +``` + +Files: + +```text +loopback.pcapng +harness.log +nmx-loopback-frames.tsv +``` + +The focused loopback capture includes the active MXAccess/NMX conversation: + +```text +::1:59335 <-> ::1:49704 +803 frames, about 84 kB, duration 7.6793 s +``` + +It also saw the pre-existing service connection: + +```text +::1:49829 <-> ::1:49704 +4 frames, about 526 bytes +``` + +This confirms Npcap loopback capture is the correct mechanism for collecting +the actual local NMX payloads needed for protocol reconstruction. + +## Npcap loopback protocol captures + +The repeatable runner is: + +```text +analysis\scripts\run_loopback_capture.ps1 +``` + +Focused captures completed after Npcap verification: + +| Folder | Result | +| --- | --- | +| `captures\013-loopback-subscribe-scalars` | good bool/int/string subscribe | +| `captures\014-loopback-subscribe-array-bracketed` | good string-array subscribe using `[]` suffix | +| `captures\015-loopback-subscribe-invalid` | invalid reference subscribe | +| `captures\016-loopback-write-test-int-advised` | advised same-value write succeeds | + +Extraction and summary helpers: + +```text +analysis\scripts\extract_nmx_loopback.py +analysis\scripts\extract_tcp_conversations.py +analysis\scripts\decode_tcp_payload_packets.py +analysis\scripts\decode_mixed_local_stream.py +analysis\scripts\analyze_write_window.py +analysis\scripts\diff_write_window_records.py +analysis\scripts\run_frida_mx_trace.ps1 +analysis\scripts\extract_frida_trace.py +analysis\scripts\summarize_dcerpc.py +analysis\network\dcerpc-loopback-summary.tsv +analysis\network\write-window-tcp-payloads.tsv +``` + +Important packet result: the `::1: <-> ::1:49704` traffic is DCE/RPC, +not a simple tag-string socket protocol. The observed interface UUIDs are: + +```text +4e0c90df-e39d-4164-a421-ace89484c602 +1981974b-6bf7-46cb-9640-0260bbb551ba +``` + +Those UUIDs were not found as direct keys under the checked COM registry +interface, CLSID, or TypeLib areas. The likely decode targets are therefore the +native proxy/stub binaries: + +```text +C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvcps.dll +C:\Program Files (x86)\ArchestrA\Framework\Bin\WWProxyStub.dll +``` + +Good scalar subscribe, good array subscribe, and successful advised write share +the same main `49704` DCE/RPC shape: 165 ctx-1 opnum-3 request/response pairs, +10 ctx-0/ctx-1 setup groups, and 3 ctx-1 opnum-5 pairs. The invalid subscribe +adds one more setup group and 11 more opnum-3 pairs, matching the observed +behavior that invalid references fail during advise/resolution, not `AddItem`. + +The successful write has a second important observation. The harness write call +occurred at relative time about `10.34s`, and the write-complete callback at +about `10.55s`. No `49704` DCE/RPC frames appear in that exact window. The +active payload is primarily on: + +```text +127.0.0.1:57415 <-> 127.0.0.1:57433 +``` + +That stream is compact binary traffic with small control messages and apparent +little-endian length prefixes. This means the managed replacement likely needs +to reproduce both the DCE/RPC coordination path and a separate local binary +callback/request channel. + +The write-window stream is extracted as: + +```text +captures\016-loopback-write-test-int-advised\tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin +captures\016-loopback-write-test-int-advised\tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin +``` + +The stream has a mixed-record framing: + +- 12-byte control records: `int32 code_or_status`, `int32 token_low`, + `int32 token_high`. +- Data records: `uint32 body_length`, followed by the data body. +- Positive control values can announce one or more following data records. +- `-1` appears as a normal acknowledgement/status control. +- `-2` appears around write-window status/control exchanges. + +Additional differential write captures: + +| Folder | Result | +| --- | --- | +| `captures\017-loopback-write-test-int-100` | value changed `99 -> 100`; pcap usable | +| `captures\018-loopback-write-test-int-101` | write succeeded, but pcap is header-only and should not be used | +| `captures\019-loopback-write-test-int-101-rerun` | pcap usable, but same-value write because value was already `101` | +| `captures\020-loopback-write-test-int-102` | value changed `101 -> 102`; pcap usable | +| `captures\021-loopback-write-test-int-sequence-103-105` | same-session sequence changed `102 -> 103 -> 104 -> 105`; pcap usable | +| `captures\022-frida-write-test-int-sequence-106-108` | Frida hooks validated Ghidra RVAs; first buffer dump helper was incomplete | +| `captures\023-frida-write-test-int-sequence-109-111` | Frida hooks captured raw write values in `LmxProxy` and `NmxAdptr` buffers | +| `captures\024-frida-write-test-bool-sequence` | bool write matrix: `VT_BOOL`, 37-byte `PutRequest`, value slot at offset `18` | +| `captures\025-frida-write-test-float-sequence` | float write matrix: 40-byte `PutRequest`, `float32` at offset `18` | +| `captures\026-frida-write-test-double-sequence` | double write matrix: 44-byte `PutRequest`, `float64` at offset `18` | +| `captures\027-frida-write-test-string-sequence` | string write matrix: UTF-16LE payload at offset `26` | +| `captures\028-frida-write-test-datetime-sequence` | datetime write matrix: outbound UTF-16LE display string; callback FILETIME | +| `captures\029-frida-write-test-int-array` | int array write succeeds; packed `int32` values at `PutRequest` offset `28` | +| `captures\030-frida-write-test-bool-array` | bool array write succeeds, but alternating requested values returned as paired values; needs follow-up | +| `captures\031-frida-write-test-float-array` | float array write succeeds; packed `float32` values at `PutRequest` offset `28` | +| `captures\032-frida-write-test-double-array` | double array write succeeds; packed `float64` values at `PutRequest` offset `28` | +| `captures\033-frida-write-test-string-array` | string array write succeeds; per-element UTF-16LE records | +| `captures\034-frida-write-test-datetime-array` | datetime array write succeeds, but body dump was truncated by the old 256-byte Frida cap | +| `captures\035-frida-write-test-datetime-array-full` | datetime array rerun with full 4096-byte Frida dump cap | +| `captures\036-frida-write-secured-test-int` | `WriteSecured` against Operate int rejected with `0x80004021` before value-bearing body | +| `captures\037-frida-write-secured2-test-int` | `WriteSecured2` against Operate int rejected with `E_INVALIDARG` before value-bearing body | +| `captures\038-frida-write-secured-protectedvalue` | `WriteSecured` against real SecuredWrite bool rejected with `0x80004021` | +| `captures\039-frida-write-secured-verified-protectedvalue1` | `WriteSecured` against real VerifiedWrite bool rejected with `0x80004021` | +| `captures\040-frida-write-normal-secured-protectedvalue` | normal `Write` with user/security `2` succeeds against SecuredWrite bool | +| `captures\041-frida-write-normal-verified-protectedvalue1` | normal `Write` with user/security `3` succeeds against VerifiedWrite bool | +| `captures\042-frida-write2-test-int-timestamp` | `Write2` succeeds; int at offset `18`, FILETIME at offset `24` | +| `captures\043-frida-loopback-write-test-int-115` | combined Frida plus Npcap loopback capture; exact adapter bodies are not present verbatim in TCP streams | +| `captures\044-frida-loopback-write-test-int-123456789` | combined Frida plus Npcap loopback capture with distinctive value; raw scalar also absent from full pcap payload scan | + +The same-session sequence was captured with: + +```text +--scenario=write --tag=TestChildObject.TestInt --type=int --values=103,104,105 --user-id=1 --write-delay-ms=1000 --write-interval-ms=700 --duration=5 +``` + +Generated write-window analyses: + +```text +captures\017-loopback-write-test-int-100\write-window-mixed-records.tsv +captures\020-loopback-write-test-int-102\write-window-mixed-records.tsv +captures\021-loopback-write-test-int-sequence-103-105\write-window-mixed-records.tsv +analysis\network\write-window-body-diff-017-vs-020.tsv +analysis\network\write-window-body-diff-021-w0-vs-w1.tsv +analysis\network\write-window-body-diff-021-w1-vs-w2.tsv +``` + +The sequence capture is important because it keeps one MXAccess session alive +while changing only the requested int value. The decoded local-stream records +around write-complete still do not contain `103`, `104`, or `105` as plain +little-endian int32 payloads. The bytes that move consistently in the visible +records are request/session counters and checksummed or opaque body fields. +The pcap-only mixed-stream layer did not isolate the scalar value. Headless +Ghidra plus Frida then located it one native layer higher: + +```text +CLMXProxyServer::Write variant A RVA 0x12c0c +CNmxAdapter::PutRequest RVA 0x15169 +CNmxAdapter::TransferData RVA 0x10996 +CNmxAdapter::ProcessDataReceived RVA 0x112da +``` + +In `captures\023-frida-write-test-int-sequence-109-111`, the raw scalar values +are visible as little-endian int32: + +| Function | Body size | Value offsets | +| --- | ---: | --- | +| `CLMXProxyServer::Write` | call args | `args[5] = 109, 110, 111` | +| `CNmxAdapter::PutRequest` | `40` | offset `18` | +| `CNmxAdapter::TransferData` | `86` | offset `64` | +| `CNmxAdapter::ProcessDataReceived` | `88` | offset `84` | + +The later Frida captures generalize the body format: + +| Type | `PutRequest` | `TransferData` | Callback/update | Encoding | +| --- | --- | --- | --- | --- | +| bool | size `37`, offset `18` | size `83`, offset `64` | size `85`, offset `84` | `VT_BOOL`; true `ff ff ff 00` in write body and `ff` in data-change body; false `00 ff ff 00` and `00` | +| int | size `40`, offset `18` | size `86`, offset `64` | size `88`, offset `84` | little-endian `int32` | +| float | size `40`, offset `18` | size `86`, offset `64` | size `88`, offset `84` | little-endian `float32` | +| double | size `44`, offset `18` | size `90`, offset `64` | size `92`, offset `84` | little-endian `float64` | +| string | size `58` or `60`, offset `26` | size `104` or `106`, offset `72` | size `106` or `108`, offset `92` | UTF-16LE | +| datetime | size `86`, offset `26` | size `132`, offset `72` | size `98`, offset `88` | outbound UTF-16LE display string; callback FILETIME | + +Full matrix: + +```text +analysis\frida\write-body-matrix.tsv +``` + +Array matrix: + +```text +analysis\frida\write-array-body-matrix.tsv +``` + +Write-mode matrix: + +```text +analysis\frida\write-mode-matrix.tsv +``` + +Frida-to-TCP mapper: + +```text +analysis\scripts\run_frida_loopback_capture.ps1 +analysis\scripts\map_frida_to_tcp.py +analysis\scripts\parse_dcerpc_streams.py +captures\043-frida-loopback-write-test-int-115\frida-to-tcp-map.tsv +captures\044-frida-loopback-write-test-int-123456789\frida-to-tcp-map.tsv +``` + +Array body summary: + +| Type | `PutRequest` | `TransferData` | Callback/update | Encoding | +| --- | --- | --- | --- | --- | +| int[] | size `86`, first value offset `28` | size `132`, first value offset `74` | size `134`, first value offset `94` | descriptor kind `0x42`, count `10`, width `4`, packed `int32` | +| bool[] | size `66`, first value offset `28` | size `112`, first value offset `74` | size `114`, first value offset `94` | descriptor kind `0x41`, count `10`, width `2`; observed value pairing needs follow-up | +| float[] | size `86`, first value offset `28` | size `132`, first value offset `74` | size `134`, first value offset `94` | descriptor kind `0x43`, count `10`, width `4`, packed `float32` | +| double[] | size `126`, first value offset `28` | size `172`, first value offset `74` | size `174`, first value offset `94` | descriptor kind `0x44`, count `10`, width `8`, packed `float64` | +| string[] | size `256`, first string bytes at `41` | size `302`, first string bytes at `87` | size `304`, first string bytes at `107` | descriptor kind `0x45`, per-element UTF-16LE variable records | +| datetime[] | size `596`, first string bytes at `41` | size `642`, first string bytes at `87` | size `214`, first FILETIME at `94` | outbound per-element display strings; callback/update FILETIME sequence | + +Secured/verified write result: the public `WriteSecured` and `WriteSecured2` +methods are exposed by COM but did not produce value-bearing requests in these +captures. Actual `SecuredWrite` and `VerifiedWrite` attributes accepted normal +`Write` calls when the fourth argument matched the Galaxy security +classification (`2` or `3`). + +`Write2` result: the timestamped int write still uses a 40-byte body with the +value at offset `18`. A FILETIME timestamp is embedded at `PutRequest` offset +`24`, `TransferData` offset `70`, and callback/update offset `75`. + +Transport correlation result: in capture `043`, the raw `int32` value `115` +appears in TCP streams, but the exact Frida `PutRequest`, `TransferData`, and +callback bodies do not. The `::1:49704` hits around the scalar align with +DCE/RPC metadata/call IDs rather than the native adapter body. + +Capture `044` uses `123456789` to avoid that ambiguity. The raw scalar is not +found in a full pcap payload scan, in parsed `::1:49704` DCE/RPC stubs, or in +the mixed local stream. This confirms the wire representation is transformed or +encoded before TCP. + +Detailed notes are in: + +```text +docs\Loopback-Protocol-Findings.md +docs\NMX-COM-Contracts.md +``` + +## Protocol facts established + +- `Register` returns session handle `1` for these short-lived runs. +- `AddItem` allocates local item handles but does not prove the reference exists. +- `AdviseSupervisory` triggers item resolution and initial data/status callback. +- Good scalar reads return: + - `MXSTATUS_PROXY.success = -1` + - `category = MxCategoryOk` + - `detectedBy = MxSourceRequestingLmx` + - `detail = 0` + - quality `192` +- Invalid subscribe returns: + - value `null` + - quality `0` + - `category = MxCategoryConfigurationError` + - `detectedBy = MxSourceRequestingLmx` + - `detail = 6` +- Array name missing `[]` returns: + - value `null` + - quality `0` + - `category = MxCategoryConfigurationError` + - `detectedBy = MxSourceRespondingAutomationObject` + - `detail = 1003` +- Successful write completion returns: + - `success = -1` + - `category = MxCategoryOk` + - `detectedBy = MxSourceRespondingAutomationObject` + - `detail = 0` + +Later targeted non-core type captures: + +- `062-frida-subscribe-intl-shortdesc`: `TestChildObject.ShortDesc` + (`InternationalizedString`) resolves and advises. A callback record used normal + string wire kind `0x05` with compact empty payload `04 00 00 00`. +- `063-frida-subscribe-elapsed-time-deadband`: + `TestMachine_001.TestAlarm001.Alarm.TimeDeadband` (`ElapsedTime`) resolves and + advises. A callback record used wire kind `0x07` with four-byte zero payload. +- `064-frida-subscribe-intl-percent` and `065-frida-subscribe-intl-mb`: + non-empty internationalized-string references resolved and advised but did not + emit value callbacks during the capture window. +- `066` through `069`: timestamped `Write2` captures for bool, float, double, + and string. Float, double, and string use the same fixed/variable timestamped + suffix shape as int. Timestamped bool uses wire kind `0x01`, one value byte, + then the normal timestamp suffix. +- `070` through `072`: timestamped `Write2` captures for int[], bool[], and + string[]. These match the existing managed array timestamp encoder. The + bool-array capture preserves the earlier MXAccess marshaling behavior where + requested alternating bools arrive as paired true/false values. +- `073`, `074`, and `076`: timestamped `Write2` captures for float[], double[], + and datetime[]. These match the managed array timestamp encoder. The initial + `075` datetime[] run used the wrong tag name and did not emit the expected + `0x37` write body; `076` is the valid capture for `TestDateTimeArray[]`. +- `mxaccess-suspend-*` / `mxaccess-activate-*`: `Suspend` and `Activate` throw + `0x80070057` before `AdviseSupervisory`. The advised variants succeed on + scan-state targets: suspend returns pending/requesting-LMX, activate returns + ok/requesting-LMX. Frida captures `077` and `078` show no additional NMX + request body after the public method call, so this behavior appears local to + the MXAccess/LMX layer once the item has been advised. +- `079-frida-add-buffered-advise-testint`: `AddBufferedItem("TestInt", + "TestChildObject")` followed by `AdviseSupervisory` sends an item-control + `0x10` reference-registration body for `TestInt.property(buffer)` in context + `TestChildObject`. It does not send a normal `0x1f` advise body for the + buffered handle. +- `080-frida-buffered-external-write-testint`: while the buffered handle is + advised, adding normal writer handles in the same session sends normal + reference-registration bodies, but no `OnBufferedDataChange` payload was + observed. This capture supplied the stable normal and buffered `0x10` + registration bodies, plus the matching `0x11` registration-result frames, + used by `NmxReferenceRegistrationMessage` and + `NmxReferenceRegistrationResultMessage` tests. +- `085-frida-subscribe-property-buffer` and + `086-frida-write-property-buffer`: direct literal + `TestChildObject.TestInt.property(buffer)` add/advise follows normal + `AdviseSupervisory`, not `AddBufferedItem`; the item-control `0x10` + registration uses the full literal item with an empty context and receives a + `0x11` registration result containing the same Base Runtime Object internal + error text. No `OnBufferedDataChange` event was fired. +- `087-frida-authenticate-administrator-empty` and + `088-frida-authenticate-invalid-empty`: password-redacted auth hook shows + `CLMXProxyServer.AuthenticateUser` returning `S_OK` and user ID `1` for both + `Administrator` and an invalid user name with password length `0`. The only + NMX traffic observed after the auth call is the normal unregister-time system + reference cleanup, not an auth request body. +- `111-frida-write-secured-auth-protectedvalue` and + `112-frida-write-secured-auth-verified-protectedvalue1`: pre-authenticating + with `AuthenticateUser` returns user handle `1`, but public `WriteSecured` + still returns `0x80004021` before any value-bearing NMX write body is emitted. +- `113-frida-write-secured2-auth-protectedvalue`, + `114-frida-write-secured2-auth-protectedvalue-false`, + `115-frida-write-secured2-auth-protectedvalue-true`, and + `116-frida-write-secured2-auth-verified-protectedvalue1`: authenticated + public `WriteSecured2` succeeds and emits NMX command `0x38` over normal + transfer kind `Write` (`3`). The decoded boolean body layout is: command and + 14-byte reference-handle projection, boolean wire kind `0x01`, a four-byte + boolean scalar whose first byte carries the value, FILETIME timestamp, a + 16-byte current-user authenticator token, UTF-16LE client-name byte length, + null-terminated UTF-16LE client name, a 16-byte verifier token, `0xffff`, + client token, and write index. The verifier token is all zeros when + `VerifierUserId` is `0` and equals the authenticated token when the verifier + handle is `1`. +- `117-frida-write-secured2-auth-testint`: after pre-authentication, public + `WriteSecured2` also succeeds against `TestChildObject.TestInt` and emits + command `0x38` with integer wire kind `0x02`. This proves the secured2 body + is not boolean-only: it reuses the normal timestamped `0x37` value and + timestamp prefix, then appends current-user token, client name, verifier + token, `0xffff`, client token, and write index. +- `089-frida-write-testint-wrong-type`: writing string `not_an_int` to integer + `TestChildObject.TestInt` sends a normal `0x37` write body using string wire + kind `0x05`. NMX responds with a length-prefixed completion-only status body + whose inner completion byte is `0x41`; MXAccess returns `S_OK` from `Write` + but does not fire `OnWriteComplete` during the harness wait. +- `090-frida-write-invalid-reference`: invalid reference add/advise produces + the expected `0x10` registration and `0x11` registration-result failure. The + later public `Write` call returns `S_OK` but no value-bearing `0x37` body or + write-complete event is observed. +- `091-frida-write-testint-double-type`, + `092-frida-write-testbool-string-type`, and + `093-frida-write-testdatetime-string-type`: double-to-int writes emit + a length-prefixed completion-only byte `0x00`, but MXAccess still does not + fire `OnWriteComplete`; string-to-bool and string-to-time wrong-type writes + match the string-to-int failure pattern and emit completion byte `0x41`. +- `analysis/ghidra/exports/LmxProxy.dll.buffered-decompile.md`: decompile of + `AddBufferedItem`, `Fire_OnBufferedDataChange`, and + `SetBufferedUpdateInterval`. It confirms the `.property(buffer)` suffix, + the buffered item-record marker, the seven-argument event firing path, and + 100 ms tick rounding for buffered update intervals. +- `analysis/ghidra/exports/LmxProxy.dll.buffered-event-xrefs.md` and + `analysis/ghidra/exports/LmxProxy.dll.buffered-event-caller-decompile.md`: + `Fire_OnBufferedDataChange` has one direct caller, `FUN_1001657f`. That + function is the same native `OnDataChange callback received` path used for + normal data changes. It looks up the item record and branches on a buffered + item flag at offset `0x28`: normal items call the `_ILMXProxyServerEvents` + `OnDataChange` helper, while buffered items convert the value to value, + quality, and timestamp SAFEARRAY variants and call + `_ILMXProxyServerEvents2::Fire_OnBufferedDataChange`. +- `analysis/ghidra/exports/LmxProxy.dll.buffered-value-conversion-decompile.md`: + decompile of the buffered value conversion helper shows the public buffered + event value argument is a SAFEARRAY of values, the quality argument is a + `VT_I2` SAFEARRAY, the timestamp argument is a `VT_UI8`/FILETIME SAFEARRAY, + and the status argument is the normal `MXSTATUS_PROXY[]` SAFEARRAY. This + confirms the event shape even though a live buffered payload has not yet + been produced. +- `analysis/ghidra/exports/LmxProxy.dll.auth-decompile.md`: decompile of + `AuthenticateUser` and `ArchestrAUserToId`. Both increment a session-local + user counter and store a mapping from that generated handle to a GUID/token + identity before returning the generated handle to the public API caller. +- `analysis/ghidra/exports/LmxProxy.dll.events-decompile.md`: decompile of + `Fire_OnWriteComplete` and `Fire_OperationComplete`. Both build the same + three-argument COM event payload: server handle, item handle, and one + `MXSTATUS_PROXY` SAFEARRAY. `OnWriteComplete` dispatches event ID `2`; + `OperationComplete` dispatches event ID `3`. No capture in this set emitted + `mx.event.operation-complete`. +- `analysis/ghidra/exports/LmxProxy.dll.event-xrefs.md` and + `analysis/ghidra/exports/LmxProxy.dll.event-callers-decompile.md`: generated + with headless Ghidra to identify the event helper callers. `Fire_OnWriteComplete` + is called only from `FUN_10016b50`, which logs + `OnSetAttributeResult callback received`. `Fire_OperationComplete` is called + only from `FUN_10016d4b`, which logs `OperationComplete callback received`. + This confirms that mapping write completion statuses to both public events + would be incorrect; `OperationComplete` needs a distinct native callback + capture before the managed compatibility event can fire. +- `analysis/ghidra/exports/LmxProxy.dll.operation-candidates-decompile.md`: + decompile of public operation candidates. `RemoveItem` performs local item + cleanup, while `Suspend` and `Activate` query an `IMxScanOnDemand` interface + and synchronously call vtable offsets `0x0c` and `0x10`, respectively. These + paths did not reveal a call to `Fire_OperationComplete`, matching captures + `077` and `078`, which returned status structs but emitted no operation event. +- `118-frida-suspend-advised-scanstate-long` and + `119-frida-activate-advised-scanstate-long`: reran advised + `DevAppEngine.ScanState` suspend/activate with direct hooks on + `CUserConnectionCallback.OnSetAttributeResult` and + `CUserConnectionCallback.OperationComplete`. The hooks installed, but neither + callback entry point was called during the 20 second waits. This strengthens + the conclusion that these public scan-on-demand calls return local status and + do not trigger the public `OperationComplete` event on this node. +- `094-frida-buffered-separate-writer`: the harness was adjusted so + `buffered-external-write` registers a separate writer server handle before + adding/advising/writing `TestChildObject.TestInt`. The capture still produced + no `mx.event.buffered-data-change` and no `Fire_OnBufferedDataChange` Frida + entry. It did show the buffered `0x10` registration/`0x11` result for + `TestInt.property(buffer)` in context `TestChildObject`, plus normal writer + subscription/data callbacks. This rules out same-server-handle writer reuse + as the reason buffered callbacks were absent. +- `120-frida-buffered-history-testhistoryvalue`: first historized-attribute + buffered attempt against `TestHistoryValue`, but the harness argument used + `--item-context` instead of its actual `--context` switch, so MXAccess + registered `TestHistoryValue.property(buffer)` with an empty context. This is + retained only as a harness-option correction. +- `121-frida-buffered-history-testhistoryvalue-context`: repeated the capture + with `--context=TestMachine_001`. GR identifies + `TestMachine_001.TestHistoryValue` as a deployed, historized integer dynamic + attribute. Native MXAccess emitted the expected buffered `0x10` + registration and `0x11` result for + `TestHistoryValue.property(buffer)` in context `TestMachine_001`, and the + separate writer session successfully wrote `201`, `202`, and `203` through + `TestMachine_001.TestHistoryValue`. No public `mx.event.buffered-data-change` + and no `Fire_OnBufferedDataChange` Frida entry were observed. +- `122-frida-buffered-history-testhistoryvalue-plainadvise`: added a harness + `--plain-advise` probe switch and repeated the same historized buffered + scenario using public `Advise` instead of `AdviseSupervisory`. The + registration/result bodies matched the context-bearing buffered shape, writer + writes succeeded, and writer-session normal `0x32` data callbacks were seen, + but the buffered subscriber still did not enter `Fire_OnBufferedDataChange`. + This makes the remaining buffered gap a runtime/source-delivery condition, + not a plain-versus-supervisory advise mismatch. +- `095-frida-write-elapsed-int`: writing `1000` as an `Int32` to + `TestMachine_001.TestAlarm001.Alarm.TimeDeadband` emitted a normal `0x37` + write body with integer wire kind `0x02`; MXAccess did not emit a special + elapsed write kind for an integer caller value. +- `096-frida-write-intl-string`: writing `"hello-native"` as a `string` to + `TestChildObject.ShortDesc` emitted a normal `0x37` write body with string + wire kind `0x05`. The runtime returned a completion-only status byte `0xef`, + so success semantics still need more captures, but outbound encoding is now + defined for the caller-variant path. +- `097-frida-write-bool-array-pattern`: first attempted a bool-array pattern + with `--values`, which the harness interprets as ten separate writes of + one-element arrays. This capture is useful only as a harness argument + reminder. +- `098-frida-write-bool-array-pattern-10`: writing one ten-element + `bool[]` value with the requested pattern + `true,false,false,true,true,false,true,false,false,true` confirmed the x86 + MXAccess COM automation path still emits a paired/shifted + VARIANT_BOOL-style wire payload: + `true,true,false,false,false,false,true,true,true,true`. The NMX array + descriptor remains `0x41`, count `10`, width `2`. The managed encoder keeps + direct per-element `bool[]` encoding for native .NET callers, while the + observed x86 COM projection is preserved as a golden compatibility capture. +- `099-frida-plain-advise-testint`: public `CLMXProxyServer.Advise` for + `TestChildObject.TestInt` emitted the same item-control `0x1f` body shape as + the earlier `AdviseSupervisory` scalar subscription capture, including the + trailing option value `3`. The wrapper's shared `Advise`/`AdviseSupervisory` + path now has capture support for this scalar case. +- `100-frida-subscribe-string-array`: subscribing to + `TestChildObject.TestStringArray[]` produced a subscription-status callback + with wire kind `0x45`, count `10`, width code `4`, and string-array element + records, but the observed callback buffer stopped inside the final `"JJ10"` + element after `"JJ1"`. MXAccess did not raise a public + `OnDataChange` event. +- `101-frida-write-string-array-update`: writing + `KA1;KB2;KC3;KD4;KE5;KF6;KG7;KH8;KI9;KJ10` emitted a complete outbound + `0x37` string-array body. The following callback again carried a `0x45` + string-array record but stopped inside the final `"KJ10"` element after + `"KJ1"`, and no public data-change event was observed. Current managed + decoding treats this malformed callback value as incomplete rather than + fabricating a string array. +- `102-frida-subscribe-intl-shortdesc-after-write`: subscribing to + `TestChildObject.ShortDesc` after the earlier string write still produced the + compact empty string callback form (`wire kind 0x05`, record length `4`) and + no public data-change event. The earlier `096` write returned completion-only + `0xef`, so it did not establish a non-empty `InternationalizedString` + callback value. +- `103-frida-subscribe-elapsed-after-write`: subscribing to + `TestMachine_001.TestAlarm001.Alarm.TimeDeadband` produced a non-zero + `ElapsedTime` callback value using wire kind `0x07` followed by a 4-byte + little-endian millisecond count (`00 e4 0b 54`, `0x540be400`). This confirms + the existing elapsed-time callback decoder works for non-zero values as well + as the earlier zero capture. + +## Managed x64 live probes + +- `probe-remqi-managed`: a .NET 10 x64 process using managed NTLM activation + successfully resolved `INmxService2`, completed `RemQueryInterface`, and + returned partner version `6`. +- `probe-session-write`: direct managed `WriteAsync` to + `TestChildObject.TestInt` returns success through `INmxService2.TransferData`. + The managed sender now uses the captured transfer kind for normal writes + (`Write`, value `3`) rather than the earlier item-control kind. +- `probe-session-subscribe`: fixed local engine IDs caused stale registration + collisions and `UnAdvise` failures (`0x80041101`). The managed defaults now + derive the local engine ID from the current process ID; unique engine IDs + receive both `0x32` subscription-status and `0x33` data-update callbacks and + clean up without that failure. +- The live managed subscriber receives status-only scalar callbacks for + `TestChildObject.TestInt`: the raw `0x33` body contains status, quality, + timestamp, and wire kind `0x02`, but no four-byte integer payload. The same + status-only result occurs when an x86 MXAccess writer changes the tag while + the managed subscriber is active. This narrows the missing value-delivery + piece to the pre-advise AddItem/metadata registration path that MXAccess + emits as `0x17`, not to the scalar callback decoder. +- A managed encoder for the observed `0x17` metadata body reproduces the + capture exactly and `NmxSvc` accepts it before advise, but it still does not + turn the managed scalar callback into a value-bearing record. The `0x17` + body is therefore documented as a captured metadata primitive, not a complete + AddItem/value-subscription registration. +- Replaying the observed pre-advise `0x17` metadata body from the managed + NTLM/DCOM path now reproduces the MXAccess-like callback sequence in x64: + a 706-byte `0x40` metadata response containing + `DevPlatform.GR.TimeOfLastDeploy`, + `DevPlatform.GR.TimeOfLastConfigChange`, and the text + `An internal error occurred in the Base Runtime Object`; a 151-byte `0x32` + metadata status callback with two datetime records; the 92-byte operation + status frame; then the normal 108-byte scalar `0x32` status-only callback + for `TestChildObject.TestInt`. This proves the pre-advise metadata primitive + is live and decoded enough to inspect, but its runtime result is an internal + base-object error rather than successful value-subscription state. +- A same-session managed subscribe-then-write probe also remains status-only: + after `SubscribeAsync(TestChildObject.TestInt)`, managed `WriteAsync(331)` + returns success, then the callback is `0x33` with wire kind `0x02` but no + integer payload. This rules out cross-client delivery as the only cause; the + native library still needs additional LMX item/write state beyond the current + GR handle, NMX advise, and direct NMX write bodies. +- Ghidra review of `CReferenceStringResolutionService` explains why replaying + only the wire-visible metadata request is insufficient. The resolver compares + `TimeOfLastDeploy` and `TimeOfLastConfigChange` against pending reference + status details, and on a usable GR subscription status it calls an + in-process `OnSetAttributeResult` path directly before removing the pending + request. That state mutation is not produced by the current managed x64 + replay, which only sends the `NmxSvc` request and receives callbacks. +- Fixed Frida captures `104` and `105` corrected the stack argument mapping for + `PrebindReference` and `UserRegisterPreboundReference`. Native + `TestChildObject.ShortDesc` returns public prebound/reference handles of `1`, + sends `0x1f` advise with transfer kind `ItemControl` (`2`), and its + `IMxReference.GetMxHandle` value uses property id `10` even though the GR + attribute category is `11`. +- After changing the managed sender to use transfer kind `2` for `0x1f` advise + and changing the GR resolver to synthesize value handles with property id + `10`, .NET 10 x64 `SubscribeAsync(TestChildObject.ShortDesc)` receives the + native-equivalent 112-byte callback: command `0x32`, status/detail `3/0`, + quality `0x00C0`, wire kind `0x05`, and empty string value. This proves the + primary value-subscription path can be reproduced in full managed code for at + least one x86 value-bearing capture. +- A managed-client regression check now asserts the distinct transfer kinds: + normal `0x37` writes use transfer kind `Write` (`3`), while `0x1f` advise + uses transfer kind `ItemControl` (`2`). The generated `ShortDesc` + `"hello-native"` write body matches capture `096` byte-for-byte, including + the value handle with property id `10`. +- Live x64 subscribe-write probes after that correction matched the native + outcomes: `TestChildObject.ShortDesc` still returns completion-only byte + `0xef`, which is therefore native-equivalent for the current + `InternationalizedString` caller path rather than a managed-only transport + failure; `TestChildObject.TestInt` returns completion-only byte `0x00` and a + status-only `0x33` update callback with wire kind `0x02`. +- Fresh x86 MXAccess baseline captures on the current VM state: + `106-native-subscribe-testint-current` and + `107-native-write-testint-current` show public MXAccess also raises no + `mx.event.data-change` for `TestChildObject.TestInt` subscribe-only or + subscribe-then-write, even though the write call returns success. Older + captures `003`, `011`, `012`, `017`, and `018` prove this tag previously + emitted value-bearing public events, so the current status-only managed + result is not by itself a managed transport failure; it reflects the current + runtime/Galaxy state or deployment value-delivery state. +- Fresh current-state capture `108-native-subscribe-scalar-current` subscribed + to `TestBool`, `TestInt`, `TestFloat`, `TestString`, and `ShortDesc` through + native x86 MXAccess and raised no public `mx.event.data-change` for any of + them. Because native x86 also suppresses the decoded empty `ShortDesc` + adapter callback at the public event layer, `MxNativeCompatibilityServer` + now suppresses empty `InternationalizedString` `DataChanged` promotion while + leaving the low-level `MxNativeSession.CallbackReceived` event intact. +- The new .NET 10 x64 compatibility probe + `--probe-compatibility-subscribe` validates that public-facade behavior: + `TestChildObject.ShortDesc` and `TestChildObject.TestInt` both reported + `compat_data_changes=0`, matching fresh native x86 public-event behavior on + the current VM state. +- The companion `--probe-compatibility-subscribe-write` probe validates public + write-path facade behavior: `TestChildObject.TestInt = 793` and + `TestChildObject.ShortDesc = hello-compat` both completed the managed write + call but reported `compat_subscribe_write_data_changes=0` and + `compat_subscribe_write_completes=0`, matching the current native public + behavior where completion-only NMX statuses do not surface as + `OnWriteComplete`. +- Invalid-reference parity is now modeled in the compatibility facade: + `NoSuchObject_999.NoSuchAttr` returns an item handle from `AddItem`, and + `AdviseSupervisory` emits one public data-change with `value=null`, + `quality=0`, `status_success=0`, `ConfigurationError`, `RequestingLmx`, and + detail `6`, matching captures `007` and `015`. A subsequent compatibility + write to that invalid handle returns without adding a public write-complete + event, matching capture `090`. +- A mixed multi-item .NET 10 x64 compatibility probe with + `ShortDesc`, `TestInt`, and `NoSuchObject_999.NoSuchAttr` validated handle + routing in one server session: items `1` and `2` produced zero public changes + on the current VM state, while item `3` produced exactly one + configuration-error data-change. +- Compatibility write argument validation now mirrors two x86 error captures: + normal `Write` after `AddItem` but before advise returns `0x80070057`, as in + captures `008`/`009`, and normal `Write` against an `AddBufferedItem` handle + returns `0x80070057`, as in + `mxaccess-add-buffered-write-testint-context.log`. +- `captures\109-native-post-remove-errors` records stale item-handle parity + after `RemoveItem`. Native x86 MXAccess returns `ArgumentException` + `0x80070057` for `Advise`, `AdviseSupervisory`, `UnAdvise`, `Write`, + `Write2`, `Suspend`, `Activate`, and a second `RemoveItem` against the + removed handle. The .NET 10 x64 `--probe-compatibility-post-remove` probe now + reports the same `0x80070057` result for all of those operations. +- `captures\110-native-invalid-handle-errors` records invalid server-handle and + cross-server item-handle parity. Native x86 MXAccess returns + `ArgumentException` `0x80070057` for `AddItem`, `AddItem2`, `RemoveItem`, + `Advise`, `AdviseSupervisory`, `UnAdvise`, `Write`, `Write2`, `Suspend`, + `Activate`, and `Unregister` when the server handle is invalid, and also for + `RemoveItem`, `Advise`, and `Write` when the item handle belongs to another + server. The .NET 10 x64 `--probe-compatibility-invalid-handles` probe now + matches those HRESULTs. +- Literal property-reference parity is now covered for the observed buffer + property. Captures `085`/`086` show + `TestChildObject.TestInt.property(buffer)` resolving to base `TestInt` with + property id `0x32` and native handle + `01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 32 00 3e da 00 00`. + `GalaxyRepositoryTagResolver` now recognizes that suffix, and the .NET 10 + x64 compatibility subscribe/write probe for the literal reference reports + zero public data-changes and zero public write-completes, matching the native + public behavior in those captures. +- `AddItem2` context resolution has been broadened in the compatibility layer. + The live .NET 10 x64 probe now covers the captured simple context form + `TestInt` + `TestChildObject`, a dotted primitive attribute + `Alarm.TimeDeadband` + `TestMachine_001.TestAlarm001`, and a context-relative + property reference `TestInt.property(buffer)` + `TestChildObject`. All three + add and advise successfully; no public data-change is promoted on the current + VM state. +- A mixed .NET 10 x64 compatibility write probe now validates per-item routing + for `TestChildObject.TestInt`, `TestChildObject.ShortDesc`, + `TestChildObject.TestInt.property(buffer)`, and + `NoSuchObject_999.NoSuchAttr` in one server session. The three valid/literal + items report `data_changes=0` and `write_completes=0` on the current VM + state, while the invalid reference reports exactly one configuration-error + data-change and no write-complete. This confirms the compatibility facade does + not misattribute suppressed completion-only writes or invalid-reference + callbacks across item handles. +- A first post-fix scalar matrix shows more decoder/runtime work remains: + `TestChildObject.TestString` receives a `0x05` string record but the current + body ends before the declared string payload is complete, so the decoder + reports `value=null`; `TestChildObject.TestFloat` receives wire kind `0x03` + without enough bytes for a float payload; `TestChildObject.TestBool` receives + a 105-byte frame that stops inside the timestamp/kind area and is surfaced as + `UnparsedCallbackReceived`. These look like status/incomplete initial-value + callbacks on this node rather than handle-generation failures, because + `ShortDesc` now matches the native value-bearing path. +- Managed recovery lifecycle probe: + `MxNativeClient.Probe --probe-session-recover --recover-attempts=2 + --recover-delay-ms=100 --tag=TestChildObject.TestInt --value=323` ran from + .NET 10 x64. It subscribed successfully, reported one recovery-started event, + zero failed-attempt events, one recovery-completed event, preserved one active + subscription after recovery, and wrote through the recovered session. +- Recovery callback policy is now explicit in the managed API: callbacks are + passed through during reconnect/replay and marked with `IsDuringRecovery` + instead of being suppressed or buffered. More live evidence is still needed to + catch actual replay-window callback delivery on larger subscription sets. +- Managed multi-subscription recovery probe: + `MxNativeClient.Probe --probe-session-recover-multi --recover-attempts=2 + --recover-delay-ms=100` subscribed to `TestChildObject.TestInt`, + `TestChildObject.ShortDesc`, `TestMachine_001.ProtectedValue`, and + `TestMachine_001.ProtectedValue1`. Recovery replay preserved all four + subscriptions. The run observed two data callbacks and four unparsed + callbacks overall, but zero data, operation-status, reference-registration, + or unparsed callbacks with `IsDuringRecovery=true`. +- Managed multi-subscription recovery churn probe: + `MxNativeClient.Probe --probe-session-recover-multi --recover-attempts=2 + --recover-delay-ms=100 --recover-concurrent-writes + --recover-write-start=330 --recover-write-count=5 + --recover-write-delay-ms=10` used a separate writer session to write + `TestChildObject.TestInt` values `330`-`334` during recovery. Two writes + landed before the recovery-completed event. The recovering session preserved + all four subscriptions, observed four data callbacks overall, and marked two + data callbacks with `IsDuringRecovery=true`; operation-status, + reference-registration, and unparsed recovery-window counts remained zero. +- OperationComplete trigger analysis update: decompiled interop exposes + `IMxCallback2.OperationComplete(int lCallbackId, ref MxStatus, string)` plus + the `IDataConsumer.ActivateSuspend` / `ProcessActivateSuspend2` path returning + `ItemActiveResponse`. Public `LMXProxyServerClass.Suspend` and `Activate` + captures `118`/`119` used direct `IMxScanOnDemand` calls and did not enter the + callback. The next useful native trigger search should target DataConsumer + activate/suspend completion, not another plain public suspend/activate run. +- `aaMxDataConsumer.dll` import/probe: registry CLSID + `{85209FB2-0BA1-4594-BBC4-59D3DDAB823D}` maps to `MxDataConsumer Class` in + `C:\Program Files (x86)\Common Files\ArchestrA\Services\aaMxDataConsumer.dll`. + `tlbimp` generated `analysis\interop\Interop.aaMxDataConsumer.dll`, and + `ilspycmd` decompiled it into + `analysis\decompiled-interop\Interop.aaMxDataConsumer`. The new + `MxDataConsumerProbe` x86 harness can instantiate `DataConsumerClass`, call + `RegisterCallback`, resolve namespace strings to ID `1`, and call + `ResolveReference`, `subscribe`, `ActivateSuspend`, and + `ProcessActivateSuspend2`. Tested namespace strings remain disconnected + (`IsConnected=0`), no registration or subscription records are returned, and + `ProcessActivateSuspend2` returns `0x8007139F` (`ERROR_INVALID_STATE`). This + confirms the COM surface is callable but still missing the bootstrap needed to + attach it to the live namespace. +- `MxDataConsumerProbe --probe-dataclient` attempted to create + `DataClientClass` from the same imported type library. Creation failed with + `0x80040154` (`REGDB_E_CLASSNOTREG`) because CLSID + `{73BC4121-FF89-4762-901C-206E2BD9FE87}` is not registered on this node. The + ASB deployment config shows `ServiceHost1` at `net.tcp://localhost:4000/` and + `Default_ZB_MxDataProvider` publishing `IASBIData`, `IASBIDataV2`, and + `IDataV3`, but a registered client/factory is still needed before endpoint + connection probes can run. +- Headless Ghidra plus ILSpy on + `C:\Program Files (x86)\Common Files\ArchestrA\Services\aaMxDataConsumer.dll` + shows that its DataClient side is a mixed-mode wrapper around managed ASB + proxies. `CDataClientCLI.CreateConnection` sets the namespace string on a + `DataClientProxy` and starts the auto-connect worker; `DataClientProxy` + calls `CIDataVersionAdapterFactory.GetIDataAdapter(accessName)`, which calls + `IDataProxySelector.SelectProxyForLatestEndpoint(accessName, new + AsbMxDataSettings(), out error)`. +- `ASBIDataV2Adapter.dll` from the GAC contains `IDataProxySelector`. It first + checks `ASBDataV2Proxy.FindIDataEndpoint(accessName, DiscoveryScope.Global)`; + if any endpoints are discovered it returns `ASBDataV2Proxy`, otherwise it + falls back to `ASBDataProxy` V1. `ASBDataV2Proxy` searches LDS using scope + `domainname//global`. +- New x64 `AsbProxyProbe` results: access name `ZB` discovers one + `IASBIDataV2` endpoint, + `net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2`, + with listen URIs on the host name and local IPs. Access names + `Default_ZB_MxDataProvider`, `Galaxy`, `localhost`, and `ZB2` discover no + IDataV2/IData endpoints. `AsbProxyProbe --access=ZB --connect` successfully + opens the ASB proxy from an x64 managed process; `Connect` returns true, + channel state is `Opened`, and `PublishWriteComplete` returns success with + zero pending writes. +- `AsbProxyProbe --access=ZB --connect --register --read --write-int=401 + --tag=TestChildObject.TestInt` proves the direct ASB value path. The tag + registers with item id `18446462598732840961`, reads as ASB type `4` + (`Int32`) value `334`, accepts a write of `401`, and reads back `401`. The + immediate write result is global success with per-item + `0x0000001F` (`OperationWouldBlock`), then `PublishWriteComplete` returns + `0x00000020` (`PublishComplete`) with the submitted write handle + `0xA5B20001` and final per-item success. +- A follow-up x86 `MxDataConsumerProbe --namespace=ZB` run hung inside the COM + wrapper and was stopped. Direct ASB proxy probing is now the preferred path + for validating data-service functionality and any future OperationComplete + trigger without relying on the standalone mixed-mode DataConsumer COM object. +- Pure .NET 10 x64 ASB port update: + `MxAsbClient.Probe --tag=TestChildObject.TestInt --write-int=412` now + completes the core register/read/write/complete data-service flow without + AVEVA assembly references. It connects/authenticates through ASB system auth, + retries the observed one-way `AuthenticateMe` startup race in `RegisterItems`, + reads the tag, accepts the write with immediate per-item `0x0000001F`, reads + back `412`, and decodes `PublishWriteComplete` result `0x00000020`, count + `1`, the submitted handle, and final per-item success. The saved evidence is + `analysis\proxy\mxasbclient-probe-stage21-register-retry.txt`. +- Pure .NET 10 ASB unregister update: + `MxAsbClient.Probe --tag=TestChildObject.TestInt` now calls + `UnregisterItems` with the registered item identity. The pure client and + installed `ASBDataV2Proxy` compare run both return global success + `0x00000000` and per-item `0x0000000B` (`OperationFailed`) for this provider. + Evidence: + `analysis\proxy\mxasbclient-probe-stage23-unregister-id.txt` and + `analysis\proxy\asbproxyprobe-unregister-compare.txt`. +- Pure .NET 10 ASB multi-item update: + `MxAsbClient.Probe --tag=TestChildObject.TestInt + --tag=TestMachine_001.TestHistoryValue` registers and reads both tags in + two-item requests. Both tags return per-item register/read success; values + decode as ASB `TypeInt32` previews `412` and `303`. Evidence: + `analysis\proxy\mxasbclient-probe-stage24-multi-read.txt`. + +## Next capture steps + +1. Decode `NmxSvcps.dll` and `WWProxyStub.dll` to recover interface names, + opnum signatures, and NDR stub layouts for the observed DCE/RPC UUIDs. +2. Extract all localhost binary streams, not just port `49704`, and correlate + them to harness method/callback timestamps. +3. Trace `LmxProxy.dll`, `Lmx.dll`, + `NmxAdptr.dll`, and `NmxSvc.exe` with API Monitor around: + `send`, `recv`, `WSASend`, `WSARecv`, `INmx4.PutRequest2`, + `INmx4.GetResponse2`, `IDataClient.RegisterItems2`, `IDataClient.Write2`, + and `IDataClient.PublishWriteComplete2`. +4. Decide whether a future strict MXAccess COM-compatibility mode should + intentionally reproduce the x86 `SAFEARRAY VT_BOOL` value-pairing behavior + from capture `098`; the native managed path currently uses direct + per-element bool encoding. +5. Build managed encoder/decoder tests from the scalar, array, and write-mode + matrix TSVs. +6. Decode DCE/RPC/NDR and mixed-stream records structurally; raw byte searching + has confirmed that adapter bodies are not copied verbatim to TCP. diff --git a/docs/Current-Sprint-State.md b/docs/Current-Sprint-State.md new file mode 100644 index 0000000..08cbad8 --- /dev/null +++ b/docs/Current-Sprint-State.md @@ -0,0 +1,498 @@ +# Current Sprint State + +Last updated: 2026-04-26 local VM time. + +## Build Status + +- `MxNativeCodec.Tests`: passed. +- `MxNativeClient.Tests`: passed, including compatibility surface and recovery + lifecycle event checks. +- `MxTraceHarness`: Release build passed. +- `MxNativeClient.Probe`: Release build passed, including + `--probe-session-recover-multi`. +- `MxDataConsumerProbe`: Release build passed. It is an x86 .NET Framework + probe for `aaMxDataConsumer.dll` / `IDataConsumer`. +- `AsbProxyProbe`: Release x64 .NET Framework build passed. It directly loads + the MSIL ASB IData proxy/contract assemblies and proves x64 managed + discovery, connection, register, read, write, readback, and published write + completion against the live MxDataProvider. It also has an unregister compare + probe for installed-proxy parity. +- `MxAsbClient.Probe`: Release .NET 10 x64 build passed. It is a pure managed + ASB client slice with no AVEVA assembly references. It reads the ASB solution + shared secret through DPAPI, performs the ASB system-auth handshake, opens the + net.tcp `IASBIDataV2` channel, and live validates register, read, write, + readback, published write completion, unregister parity, and multi-item + register/read for `TestChildObject.TestInt` plus + `TestMachine_001.TestHistoryValue`. +- `MxAsbClient.Probe`: clean Release build with zero warnings after adding an + explicit `System.Security.Cryptography.Xml` `10.0.7` package reference and + replacing the obsolete PBKDF2 constructor with `Rfc2898DeriveBytes.Pbkdf2`. +- `MxAsbClient.Tests`: passed. The test project covers ASB `Variant` factory + and decode/display round trips for bool, int, float, double, string, + datetime, duration, and the matching bool/int/float/double/string/ + datetime/duration array wire payloads, `MonitoredItemValue` binary + serializer round trips for publish responses, and ASB status payload decoding + for publish quality/status mapping. It also covers the stable ASB connection + options overload, endpoint validation, and friend-only debug payload helper + visibility, plus write-completion option validation and cancellation-token + surface, subscription/monitored-item option overloads, and publish result + summary helpers. Latest focused non-live shaping tests also assert exact + defaults and validation boundaries for `AsbConnectionOptions`, + `AsbWriteOptions`, `AsbWriteCompletionOptions`, `AsbSubscriptionOptions`, + and `AsbMonitoredItemOptions`, DTO shape for write-completion/readback + results, null collection argument guards, empty/non-empty `AsbPublishResult` + helpers, derived status-summary helpers, item-status array mapping, and both + compatibility `Advise` overload signatures. +- Credential scan over `analysis`, `docs`, `src`, `captures`, and `README.md`: + no matches for the protected password patterns. + +## Implemented Surface + +- Public MXAccess method surface is accounted for: `Register`, `Unregister`, + `AddItem`, `RemoveItem`, `Advise`, `UnAdvise`, `Write`, `WriteSecured`, + `AuthenticateUser`, `ArchestrAUserToId`, `AddItem2`, `Write2`, + `WriteSecured2`, `Suspend`, `Activate`, `AdviseSupervisory`, + `AddBufferedItem`, and `SetBufferedUpdateInterval`. +- Public event families are represented: `OnDataChange`, `OnWriteComplete`, + `OperationComplete`, and `OnBufferedDataChange`. +- `WriteSecured2` is implemented and live validated from .NET 10 x64 for the + observed authenticated secured-write body shape. +- `WriteSecured` remains intentionally unsupported because installed MXAccess + returns `0x80004021` for the observed secured/verified paths before emitting a + value-bearing NMX body. +- Object/VARIANT timestamp overloads exist for `Write2` and `WriteSecured2`, + matching the installed interop assembly's public API shape. +- `SetHeartbeatSendInterval` is exposed and live validated through + `MxNativeClient.Probe --probe-session-heartbeat --heartbeat-ticks=5 + --heartbeat-max-missed=3`. +- Explicit recovery is implemented as `MxNativeSession.RecoverConnection()` and + `MxNativeCompatibilityServer.RecoverConnection(serverHandle)`. The probe + `--probe-session-recover --tag=TestChildObject.TestInt --value=321` live + validated subscribe, recover, preserved subscription count, and write-through + against local NmxSvc. +- `RecoverConnectionAsync` adds a caller-controlled retry loop via + `MxNativeRecoveryPolicy`. Automatic write retry remains intentionally absent + because it can duplicate writes. +- Recovery lifecycle is observable through `RecoveryAttemptStarted`, + `RecoveryAttemptFailed`, and `RecoveryCompleted` on both `MxNativeSession` + and the managed compatibility facade. A live recovery probe with + `--recover-attempts=2 --recover-delay-ms=100 --value=323` observed one + started event, zero failed events, and one completed event. +- Callback, operation-status, reference-registration, unparsed-callback, + compatibility data-change, buffered-data-change, and write-complete payloads + now carry `IsDuringRecovery`. The current policy is pass-through with an + explicit marker rather than suppression or buffering. +- `MxNativeClient.Probe --probe-session-recover-multi` replays several active + subscriptions and counts recovery-window callbacks by callback family. + +## Runtime Evidence Added In Latest Sprints + +- GR identified `TestMachine_001.TestHistoryValue` as a deployed, historized + integer dynamic attribute. +- Captures `121` and `122` proved context-bearing buffered registration/result + bodies for `TestHistoryValue.property(buffer)` in context `TestMachine_001`. +- Both supervisory and plain advise buffered captures still produced no native + `Fire_OnBufferedDataChange` entry on this VM. +- Reflection over `ArchestrA.MXAccess.dll` confirmed the 18-method public + method surface, four event families, `MxStatus` layout, `MxStatusCategory`, + `MxStatusSource`, and full `MxDataType` enum values. +- Installed `Lmx.aaDCT` detail text has been folded into `MxStatusDetails` for + details `16`-`61`, `541`, `542`, and `8017`. +- Explicit recovery event reporting is implemented and live validated. The + events report attempt number, maximum attempts, exception, and retry intent + for failed attempts. +- A live multi-subscription recovery probe replayed four subscriptions and + preserved all four. It observed two data callbacks and four unparsed callbacks + overall, but zero callbacks with `IsDuringRecovery=true` on this VM. +- A follow-up churn run with `--recover-concurrent-writes` wrote + `TestChildObject.TestInt` values `330`-`334` from a separate managed session + during recovery. It preserved all four subscriptions and observed four data + callbacks overall, including two with `IsDuringRecovery=true`. This validates + the pass-through-with-marker callback policy under live traffic. +- `aaMxDataConsumer.dll` was imported with `tlbimp` into + `analysis\interop\Interop.aaMxDataConsumer.dll` and decompiled under + `analysis\decompiled-interop\Interop.aaMxDataConsumer`. Registry CLSID + `{85209FB2-0BA1-4594-BBC4-59D3DDAB823D}` maps to `MxDataConsumer Class`. +- `MxDataConsumerProbe` can instantiate `DataConsumerClass`, register + `IDataConsumerCallback`, resolve namespace strings to namespace ID `1`, and + call `ResolveReference`, `subscribe`, `ActivateSuspend`, and + `ProcessActivateSuspend2`. However, `IsConnected(namespaceId)` remains `0` + for tested namespace strings (`Galaxy`, `ArchestrA`, `Lmx`, `localhost`, + `ZB`), no registration/subscription responses are produced, and + `ProcessActivateSuspend2` returns `0x8007139F` (`ERROR_INVALID_STATE`). +- `DataClientClass` appears in the imported `aaMxDataConsumer` type library, + but its CLSID `{73BC4121-FF89-4762-901C-206E2BD9FE87}` is not registered on + this node; `MxDataConsumerProbe --probe-dataclient` reports + `0x80040154` (`REGDB_E_CLASSNOTREG`) before endpoint tests can run. +- Headless/ILSpy analysis of `aaMxDataConsumer.dll` shows the COM consumer is a + mixed-mode wrapper around managed ASB data proxies. `CDataClientCLI` creates a + `DataClientProxy`, stores the namespace string, starts an auto-connect + worker, and `DataClientProxy.Initialize` passes that same string as + `AccessName` to `IDataProxySelector.SelectProxyForLatestEndpoint`. +- `ASBIDataV2Adapter.dll` from the GAC contains `IDataProxySelector`. It first + calls `ASBDataV2Proxy.FindIDataEndpoint(accessName, DiscoveryScope.Global)`; + if that returns endpoints it constructs `ASBDataV2Proxy`, otherwise it falls + back to V1. The discovery scope is + `domainname//global`. +- `AsbProxyProbe` live x64 discovery found one `IASBIDataV2` endpoint for + access name `ZB`: + `net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2`. + It found no endpoint for `Default_ZB_MxDataProvider`, `Galaxy`, + `localhost`, or `ZB2`. +- `AsbProxyProbe --access=ZB --connect` opened the ASB data proxy from an x64 + managed process. `ASBDataV2Proxy.Connect` returned `true`, channel state was + `Opened`, and `PublishWriteComplete` returned `0x00000000` with no pending + writes. This proves a managed x64 ASB route to LMX/NMX data services exists + on this node. +- `AsbProxyProbe --access=ZB --connect --register --read --tag=TestChildObject.TestInt` + registered and read the test integer through `IASBIDataV2`. `RegisterItems` + and `Read` both returned `0x00000000`; the item id was + `18446462598732840961`; the read value was ASB `DataType.TypeInt32` (`4`) + with payload `4E010000`, decoded as `334`. +- `AsbProxyProbe --access=ZB --connect --register --read --write-int=401 --tag=TestChildObject.TestInt` + accepted a basic ASB write and proved readback. The immediate `Write` result + was globally successful, the per-item synchronous status was `0x0000001F` + (`ArchestrAError.OperationWouldBlock`), the next read returned integer value + `401`, and `PublishWriteComplete` then returned `0x00000020` + (`ArchestrAError.PublishComplete`) with the original write handle + `0xA5B20001` and per-item completion status `0x00000000`. This is the first + direct evidence that ASB write completion polling can supply the missing + operation-completion source without the unstable DataConsumer COM wrapper. +- Forcing the x86 `MxDataConsumerProbe` to `--namespace=ZB` hung in the COM + wrapper path and was stopped. The direct ASB route is currently the cleaner + path for x64 managed implementation and for any future `OperationComplete` + trigger testing. +- The pure .NET 10 ASB port in `src\MxAsbClient` now proves the live data path + without loading AVEVA assemblies. Key auth details recovered during the port: + this VM's ASB solution registry key is `Archestra_DESKTOP-6JL3KKO`, + `HashAlgorthim=None`, `keySize=256`, and the solution overrides the DH prime + with the installed 768-bit value. The remaining compatibility fixes were the + AVEVA CLR data-contract namespaces/field ordering for `ConnectionValidator`, + `WriteValue`, `ItemStatus`, `ItemIdentity`, and `ItemWriteComplete`, plus + mutable-struct-safe binary decode for nested `Variant` and `ASBStatus` + values. +- `MxAsbClient.Probe --tag=TestChildObject.TestInt --write-int=412` completed + from .NET 10 x64. The run read the previous value `411`, accepted write + `412` with immediate per-item `0x0000001F` (`OperationWouldBlock`), read back + `412`, and decoded `PublishWriteComplete` result `0x00000020`, count `1`, + handle `0xA5B21001`, and final per-item status `0x00000000`. +- `RegisterItems` parity is resolved for the observed startup race. ASB + `AuthenticateMe` is a one-way WCF call; the first immediate `RegisterItems` + can arrive before `ASBIDataV2Shim.AuthenticateMe` adds the connection + implementation. The client now matches installed proxy signing for normal + data calls and retries `RegisterItems` briefly when the immediate result is + `0x00000001` (`InvalidConnectionId`). Stage21 evidence shows first register + message `2` returned `InvalidConnectionId`, retry message `3` returned + `0x00000000` with item id `18446462598732840961`, and later calls on the + same connection succeeded. +- `UnregisterItems` is implemented in the pure .NET 10 ASB port and compared + against the installed AVEVA `ASBDataV2Proxy`. Both clients return global + success `0x00000000` and the same per-item `0x0000000B` + (`OperationFailed`) for the registered `TestChildObject.TestInt` identity on + this provider. Evidence: + `analysis\proxy\mxasbclient-probe-stage23-unregister-id.txt` and + `analysis\proxy\asbproxyprobe-unregister-compare.txt`. +- Multi-item ASB register/read is implemented and live validated in the pure + .NET 10 port. `analysis\proxy\mxasbclient-probe-stage24-multi-read.txt` + registers and reads `TestChildObject.TestInt` and + `TestMachine_001.TestHistoryValue` in single two-item requests. Both register + and read return global `0x00000000` and per-item `0x00000000`; the read values + decode as ASB `TypeInt32` with previews `412` and `303`. +- The pure .NET 10 ASB port now has non-live ASB `Variant` construction and + decode/display coverage for the core scalar and array type matrix: + `TypeBool`, `TypeInt32`, `TypeFloat`, `TypeDouble`, `TypeString`, + `TypeDateTime`, `TypeDuration`, and their matching array forms. The public + client also exposes a generic `Write(tag, Variant, writeHandle)` path so the + next live write probes can reuse the same encoder instead of being hard-coded + to `Int32`. +- A live ASB register/read probe validated the deployed scalar and array read + type matrix from .NET 10 x64: + `TestChildObject.TestBool` -> `TypeBool` (`17`), + `TestChildObject.TestInt` -> `TypeInt32` (`4`), + `TestChildObject.TestFloat` -> `TypeFloat` (`8`), + `TestChildObject.TestDouble` -> `TypeDouble` (`9`), + `TestChildObject.TestString` -> `TypeString` (`10`), + `TestChildObject.TestDateTime` -> `TypeDateTime` (`11`), and the matching + `TestBoolArray[]`, `TestIntArray[]`, `TestFloatArray[]`, + `TestDoubleArray[]`, `TestStringArray[]`, and `TestDateTimeArray[]` returning + ASB array types `57`, `44`, `48`, `49`, `50`, and `51`. All register/read + per-item statuses were `0x00000000`, and previews decoded correctly. +- `MxAsbClient.Probe` now keeps SOAP envelopes and custom serializer byte dumps + opt-in through `--dump-messages`; normal traced runs still show stages, + statuses, type IDs, payload lengths, timestamps, and decoded previews without + dumping request/response bodies. +- Pure .NET 10 ASB scalar writes are live validated beyond `Int32`: + `TestBool` accepted a `TypeBool` write and later read back `False` then + `True`; `TestFloat` wrote/read `13.25`; `TestDouble` wrote/read `13.75`; + `TestString` accepted `asb-scalar-write` and read it back on a delayed + follow-up read; `TestDateTime` wrote/read `2026-04-26T14:33:00Z`. + These runs confirm the scalar factory payloads are accepted by the live + provider. Immediate `PublishWriteComplete` often returned count `0`, and + bool/string immediate readback could be stale or time out, so completion + polling/readback timing remains part of the production timeout policy gap. +- Pure .NET 10 ASB array writes are live validated for the deployed dynamic + array tags. `TestIntArray[]` accepted/read back `11`-`20`; + `TestBoolArray[]` accepted/read back alternating false/true values; + `TestFloatArray[]` and `TestDoubleArray[]` accepted/read back + `11.1`-`20.1`; `TestStringArray[]` accepted/read back `K11`-`T20`; and + `TestDateTimeArray[]` accepted/read back ten UTC timestamps from + `2026-04-26T14:40:00Z` through `2026-04-26T14:49:00Z`. Int, bool, and string + array readback needed a delayed follow-up read, matching the scalar timing + behavior noted above. +- Production cleanup removed the active ASB build warnings: the vulnerable + transitive `System.Security.Cryptography.Xml` `10.0.0` package is overridden + with `10.0.7`, `dotnet list package --include-transitive --vulnerable` now + reports no vulnerable packages for `MxAsbClient`, and the system-auth + PBKDF2 derivation uses the non-obsolete static API while preserving the + installed proxy's 1000-iteration SHA1 derivation inputs. A live ASB read of + `TestChildObject.TestInt` still succeeds after the authenticator change. +- Pure .NET 10 ASB subscription/publish is now live-proven for the basic + lifecycle. `MxAsbClient.Probe --subscribe --publish-count=3` created + subscription id `3`, added monitored items for `TestChildObject.TestInt` and + `TestChildObject.TestString` with per-item status `0x00000000`, received both + values on the second publish poll (`TypeInt32` preview `412` and `TypeString` + preview `asb-scalar-write`), deleted the subscription with global success, + and then completed the existing unregister cleanup path. Publish responses + returned global `0x00000020`, matching the previously observed completion + queue success signal, so exact result/status mapping remains open. +- The ASB publish path now maps raw `MonitoredItemValue` responses into + callback-ready values with item-id-to-tag-name resolution, decoded value, + UTC timestamp, `MxQuality`, and parsed ASB status elements. A live publish + run for `TestChildObject.TestInt` and `TestChildObject.TestString` decoded + quality `0x00C0` and status elements + `OpcUaStatus:0|OpcUaVendorStatus:0|MxStatusCategory:0|MxStatusDetail:0|MxQuality:192` + for both values. The same run added `DeleteMonitoredItems`, returned global + success and per-item `0x00000000` for both monitored identities, then deleted + the subscription successfully. +- `MxAsbDataClient` now exposes `PublishedValueReceived` plus `PublishValues`. + `PublishValues` keeps the raw `PublishResponse`, maps values through the + client's monitored-item id cache, and raises one event per mapped value. A + live probe observed `published_event[0]` for `TestChildObject.TestInt` and + `published_event[1]` for `TestChildObject.TestString`, both with quality + `0x00C0` and expected previews. +- `MxAsbCompatibilityServer` now adapts the pure ASB stream into an MXAccess-like + server/item-handle data-change facade. A live + `MxAsbClient.Probe --compat-subscribe --publish-count=3` run registered ASB + server handle `1`, added/advised item handles `1` and `2`, polled publish, + raised two `compat_data_change` events with values `412` and + `asb-scalar-write`, quality `0x00C0`, decoded ASB status elements, removed + both monitored items, and unregistered cleanly. +- The compatibility facade now has an `Advise` overload that accepts + `AsbSubscriptionOptions` plus `AsbMonitoredItemOptions`, matching the public + ASB subscription shaping instead of forcing positional primitives. The probe + compatibility subscribe path now exercises this route, and a live + compatibility subscribe run through the options overload registered/advised + item handles, published mapped `compat_data_change` events, removed monitored + items, and unregistered cleanly. +- Initial non-success ASB item-status mapping is implemented. A live probe for + `DefinitelyMissingObject.DefinitelyMissingAttribute` showed global register + and read success but per-item read error `0x000A` + (`InvalidMonitoredItems`), an empty value with value-status payload decoded + as `OpcUaStatus:32905|OpcUaVendorStatus:0|MxStatusCategory:750|MxStatusDetail:0|MxQuality:0`, + and unregister per-item error `0x000B` (`OperationFailed`). Unknown payloads + are still preserved rather than guessed. +- `MxAsbClient.Probe --probe-error-cases` now keeps broader live ASB + non-success evidence opt-in without changing production client behavior. + Evidence in `analysis\proxy\mxasbclient-probe-error-cases-v2.txt` covers: + invalid read target global success with per-item `0x000A` + (`InvalidMonitoredItems`) plus bad value status; invalid-target async write + immediate per-item `0x001F` (`OperationWouldBlock`) followed by + `PublishWriteComplete` global `0x0020` (`PublishComplete`) and completion + per-item `0x0006` (`MonitoredItemsNotFound`) with status payload + `OpcUaStatus:6|OpcUaVendorStatus:0|MxStatusCategory:4|MxStatusDetail:6`; + wrong-type string write to `TestChildObject.TestInt` immediate per-item + `0x001F`, completion per-item `0x0013` + (`WriteFailedBadTypeMismatch`) with status payload + `OpcUaStatus:19|OpcUaVendorStatus:0|MxStatusCategory:4|MxStatusDetail:8001`, + and unchanged readback value `412`; invalid monitored-item cleanup global + success with per-item `0x000B` (`OperationFailed`); invalid subscription + delete global `0x000C`, status `0x0020`, specific `0x80020000`; and empty + subscription publish returning global `0x0020` with no values. +- ASB result/status summaries now name the full installed `ArchestrAError` + code set, classify publish `0x0020` (`PublishComplete`) as success-like for + publish polling, summarize `MxQuality` as good/uncertain/bad/unknown, and map + known MX status details `16` and `17` to `RequestTimedOut` and + `BadNoCommunication` while preserving raw category/detail/quality values. +- Async ASB write completion now has a production-oriented polling helper. + `WaitForWriteComplete` polls `PublishWriteComplete` for a target write + handle until completion or timeout, preserving every raw poll response and + completion record. `WaitForWriteCompleteAndRead` adds optional delayed + readback without retrying or duplicating the write. A live probe using + `--write-int=412 --wait-write-complete --write-complete-timeout-ms=5000 + --write-complete-poll-ms=250 --write-readback-delay-ms=500` saw the first + completion poll return count `0`, the second poll return the matching + handle `0xA5B21001`, and readback return `412`. +- ASB client disposal now has explicit cleanup reporting. `Dispose()` delegates + to idempotent `Cleanup()`, sends signed `Disconnect` best-effort, closes the + channel and factory independently, aborts safely after close/fault failures, + and records `LastCleanupResult` with `Completed`, `Succeeded`, + `UsedAbortFallback`, and `RequiresNewConnection`. A live read probe ended + with `asb.stage=cleanup`, `asb.stage=disconnect`, and + `asb.cleanup.succeeded=True`. +- ASB reconnect now has an explicit opt-in API. `MxAsbDataClient.Reconnect` + validates caller retry options, optionally cleans up the current connection, + returns a new client on success, and preserves attempt plus cleanup evidence + without silently replaying reads or writes. A live + `MxAsbClient.Probe --probe-reconnect --reconnect-attempts=2 + --reconnect-delay-ms=250 --cleanup-disconnect-timeout-ms=5000 + --cleanup-close-timeout-ms=5000` run read `TestChildObject.TestInt` as + `412`, cleaned up and disconnected the original connection with caller + cleanup timeouts, connected successfully on attempt `1`, re-registered the + tag on the new client, read back `412`, and completed final cleanup + successfully. +- ASB cleanup partial-failure behavior is now covered in focused local tests + without forcing live provider faults. The close-or-abort policy is factored + into `AsbCommunicationCleanup`, and tests cover already-closed objects, + faulted objects that skip close and abort directly, close failure followed by + abort fallback, abort failure reporting, and propagation of the configured + close timeout. +- ASB cleanup cancellation now has explicit policy. `AsbClientCleanupOptions` + accepts a `CancellationToken`; when cancellation is already requested, cleanup + skips graceful disconnect/close attempts and uses local abort cleanup for + non-closed channel/factory objects. Existing disconnect and close timeouts + still bound synchronous WCF calls that have already started. A live + `MxAsbClient.Probe --probe-canceled-cleanup` run connected, registered, and + read `TestChildObject.TestInt` as `412`, then skipped disconnect and aborted + both opened communication objects locally. The cleanup result completed with + `succeeded=False`, `abort=True`, `requires_new=True`, and an + `OperationCanceledException` disconnect marker. +- Safe connection-failure evidence is now captured without destabilizing the + live ASB provider. `MxAsbClient.Probe --probe-connect-failure + --endpoint=net.tcp://localhost:1/ASBService/Default_ZB_MxDataProvider/IDataV2` + reports `connect_failure_observed=True`, an `EndpointNotFoundException`, and + inner `SocketException` `10061` for a refused local TCP endpoint. `Connect` + now also closes or aborts any WCF channel/factory objects created before a + connection setup failure; the refused-endpoint probe reports + `asb.stage=connect-cleanup` before surfacing the exception. +- OperationComplete candidate evidence was narrowed on the direct ASB route. + The `IASBIDataV2` contract exposed by the live endpoint has no activate, + suspend, or generic operation-complete operation; only `PublishWriteComplete` + exists, and it is write-specific. A live + `MxAsbClient.Probe --probe-operation-complete-candidates` run against + `TestChildObject.TestInt` and `TestChildObject.TestString` polled + `PublishWriteComplete` before and after create-subscription, add-monitored, + publish, delete-monitored, and delete-subscription operations. Every poll + returned count `0`, while the non-write operations themselves succeeded. +- ASB buffered-subscription probing is now explicit. `MxAsbDataClient` exposes + the `MonitoredItem.Buffered` flag through `AddMonitoredItems`, and + `MxAsbClient.Probe --subscribe-buffered` sets it. A live buffered ASB publish + probe against the historized `TestMachine_001.TestHistoryValue` succeeded, + but returned the same single current `MonitoredItemValue` shape as the normal + publish path: value `303`, quality `0x00C0`, timestamp + `2026-04-26T02:33:45.4260000Z`, and no multi-sample buffered batch. +- ASB status mapping now includes installed MX detail `33` + (`WriteAccessDenied`) and maps it to `WriteFailedAccessDenied`. Tests cover + success, invalid monitored item, wrong-type write completion, invalid cleanup + evidence inputs, request timeout detail `16`, platform/no-communication + detail `17`, and access-denied detail `33`. +- Safe access-denied/no-communication candidate probes did not produce those + source conditions on this VM. Same-value direct ASB writes to secured + `TestMachine_001.ProtectedValue` and verified + `TestMachine_001.ProtectedValue1` both completed successfully and read back + unchanged, so direct system-auth ASB writes do not reproduce the MXAccess + public secured-write rejection path here. A read-only sweep of + `TestMachine_001.ProtectedValue` through `TestMachine_020.ProtectedValue` + registered and read all 20 values with good quality `0x00C0`; no + no-communication status was observed. +- Native NMX completion-only operation-status handling is now stricter. One-byte + completion-only frames remain preserved as raw, unpromoted completion statuses + even when the byte is `0x00`; only the observed 5-byte status-word frame + `00 00 50 80 00` maps to `MxStatus.WriteCompleteOk` and can raise the + MXAccess-compatible write-complete event. Tests cover completion-only + `0x00`, `0x41`, and `0xEF`, plus the promoted `0x8050/0x00` status-word + frame. A search of the available Ghidra/decompiled outputs did not expose a + completion-byte-to-`MXSTATUS_PROXY[]` mapping table beyond this public-event + evidence. +- Public ASB connection shaping has started. `AsbConnectionOptions` is now the + stable options object for `MxAsbDataClient.Connect`, the previous string + overload delegates to it, and `MxAsbCompatibilityServer.Register` has a + matching options overload. Endpoint validation now happens before registry or + WCF setup work. `AsbPayloadDebug` is no longer part of the public surface and + is friend-only for the test/probe assemblies. A clean Release probe build, + non-live ASB contract test run, and live read of `TestChildObject.TestInt` + all passed after this change. +- ASB write-completion options now validate their own polling/readback policy + and expose a `CancellationToken`. Cancellation is checked before each + `PublishWriteComplete` poll and during poll/readback delays; already-running + synchronous ASB calls remain bounded by the existing WCF operation behavior. + A live same-value write-completion probe still completed on the second poll + for handle `0xA5B21001` and read back `412`. +- ASB subscription API shaping now has `AsbSubscriptionOptions` and + `AsbMonitoredItemOptions` overloads while preserving the existing positional + overloads. A live subscribe/publish probe created subscription `15`, added + monitored items for `TestChildObject.TestInt` and + `TestChildObject.TestString`, published both mapped values/events, deleted + the monitored items, deleted the subscription, and cleaned up the ASB + connection successfully. +- `AsbPublishResult` now exposes a derived `Result` summary and `HasValues` + helper so callers do not have to remap raw `PublishResponse.Result` on every + publish poll. The existing raw response and mapped values remain preserved. +- Public API/request-shaping tests were expanded without live ASB dependency. + They now pin defaults, validation, overload visibility, and helper DTO shape + for connection, write completion/readback, subscription, monitored-item, + compatibility `Advise`, and publish-result surfaces. +- Basic writes now also have an `AsbWriteOptions` overload carrying the write + handle and optional comment. The existing positional write overload and + `WriteInt32` path delegate through it, preserving behavior; a live same-value + write-completion probe still completed on the second poll and read back + `412`. +- Public multi-item APIs now explicitly reject null collection arguments before + touching client state: `RegisterMany`, `UnregisterMany`, `ReadMany`, + option-based `AddMonitoredItems`, and `DeleteMonitoredItems`. Empty + collections and tag/item contents keep their prior behavior. +- Published values and compatibility data-change events now expose derived + `StatusSummary` helpers, and `AsbResultMapper.ToItemSummaries` maps nullable + item-status arrays into raw-preserving summaries with null/empty as an empty + result. +- `docs\ASB-Variant-Wire-Format.md` now captures the supported ASB `Variant` + wire format: type IDs, scalar and array payload layouts, timestamp/duration + handling, string encoding, runtime value wrapping, quality/status payload + parsing, and intentionally raw-preserved unsupported types. +- `docs\ASB-Native-Integration-Decision.md` now records the recommended + integration boundary: prefer `MxAsbClient` for the regular tag data plane + behind a higher-level compatibility routing facade, keep `MxNativeClient` for + native callback-only semantics and not-yet-proven MXAccess behaviors, and + avoid merging ASB WCF lifecycle internals into the NMX DCE/RPC session. + +## Remaining Highest-Value Gaps + +1. Additional live faulted-channel and source-condition evidence that can be + gathered safely. Current safe secured/verified-write and protected-value + read sweeps did not produce access-denied or no-communication statuses. +2. Broaden pure .NET 10 ASB only where safe source conditions expose new + behavior. Local ASB `Variant` encode/decode, live reads/writes, + subscription/create/add/publish/delete-monitored/delete-subscription, + mapped publish events, compatibility data-change facade, options-shaped + connection/write/subscription/advise/write-completion APIs, cleanup, and + reconnect are now covered. Remaining work is mainly external failure modes + such as access denied or no-communication when a safe source condition is + available. +3. A native runtime trigger for `OperationComplete`. The direct ASB path now + proves a write-completion queue (`PublishWriteComplete`) carrying write + handles and per-item statuses. Direct `IASBIDataV2` does not expose + activate/suspend or a generic operation-complete contract, and subscription + create/add/publish/delete operations did not enqueue write-completion + records. Map to MXAccess event ID `3` only if a separate native trigger is + found. +4. A native runtime/source condition that emits `OnBufferedDataChange` sample + batches. Direct ASB buffered monitored items are accepted by this provider, + but the observed publish response still carries one current value rather + than a native MXAccess buffered sample batch. +5. Exact mapping for completion-only operation-status bytes into + `MXSTATUS_PROXY[]`; current code now preserves all completion-only bytes as + unpromoted raw statuses instead of guessing, including completion-only + `0x00`. +6. Cleanup behavior around live faulted/partial failure cases when a safe + provider condition is available. +7. Less-common ASB variant types only when real deployed tags expose them; the + currently supported/proven variant layout is documented and unsupported + declared types remain raw-preserved. + +## Recommended Next Sprint + +Treat the public ASB API-shaping sprint as closed unless a concrete caller gap +appears. The remaining local documentation gaps are also closed. Return to exact +completion-only operation-status mapping into `MXSTATUS_PROXY[]` only if a new +safe native public-event capture or deeper targeted decompile can provide +evidence. Keep live faulted-channel, access-denied, and source +no-communication probes opportunistic unless a safe provider condition appears. diff --git a/docs/DotNet10-Native-Library-Plan.md b/docs/DotNet10-Native-Library-Plan.md new file mode 100644 index 0000000..de8e617 --- /dev/null +++ b/docs/DotNet10-Native-Library-Plan.md @@ -0,0 +1,1078 @@ +# .NET 10 x64 native LMX/NMX library plan + +## Current conclusion + +A full managed .NET 10 x64 library is feasible only if it replaces the native +NMX proxy/stub layer in managed code. Normal .NET COM interop is not enough. + +Verified on 2026-04-25: + +| Probe | Result | +| --- | --- | +| 64-bit `CoCreateInstance` / `Type.GetTypeFromProgID("NmxSvc.NmxService")` | succeeds | +| first .NET 10 x64 `INmxService2.RegisterEngine2` call | fails with `0x8007000B` / `BadImageFormatException` | +| reason | COM tries to load the installed 32-bit `NmxSvcps.dll` proxy/stub into the x64 process | + +Registry verification: + +| Interface | 64-bit registration | 32-bit registration | +| --- | --- | --- | +| `INmxService2` `{2630A513-A974-4B1A-8025-457A9A7C56B8}` | absent under `HKCR\Interface` | `WOW6432Node\Interface`, `ProxyStubClsid32={2630A513-A974-4B1A-8025-457A9A7C56B8}`, `NumMethods=12` | +| `INmxService` `{575008DB-845D-46C6-A906-F6F8CA86F315}` | absent under `HKCR\Interface` | `WOW6432Node\Interface`, same proxy CLSID, `NumMethods=10` | +| `INmxSvcCallback` `{B49F92F7-C748-4169-8ECA-A0670B012746}` | absent under `HKCR\Interface` | `WOW6432Node\Interface`, same proxy CLSID, `NumMethods=5` | + +The proxy CLSID is registered only under +`HKCR\WOW6432Node\CLSID\{2630A513-A974-4B1A-8025-457A9A7C56B8}\InProcServer32` +and points to: + +```text +C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvcps.dll +``` + +The proof project is: + +```text +src\MxNativeClient\MxNativeClient.csproj +src\MxNativeClient.Probe\MxNativeClient.Probe.csproj +``` + +The probe output is expected at this stage: + +```text +process=x64:True +cocreate=ok +bad_image_format=0x8007000B An attempt was made to load a program with an incorrect format. +``` + +Packet-privacy DCOM activation now proves the x86 proxy is not fundamentally +required to talk to `NmxSvc.exe`. Using Impacket only as a reference client, a +64-bit process successfully activated `NmxSvc.NmxService`, received an +`INmxService2` IPID, bound directly to `INmxService2`, and invoked +`GetPartnerVersion`: + +```text +python analysis\scripts\probe_dcom_inmxservice2.py +``` + +Saved output: + +```text +analysis\proxy\dcom-inmxservice2-getpartner-probe.txt +``` + +Observed result: + +| Field | Value | +| --- | --- | +| DCOM auth level | packet privacy | +| activated CLSID | `{AE24BD51-2E80-44CC-905B-E5446C942BEB}` / `NmxSvc.NmxService` | +| requested IID | `{2630A513-A974-4B1A-8025-457A9A7C56B8}` / `INmxService2` | +| OXID | `0xEAF0D2B53BAB5BC2` | +| endpoint | `DESKTOP-6JL3KKO[60241]` plus IP bindings | +| method invoked | `GetPartnerVersion`, opnum `11` | +| result | `partner_version=6`, `ErrorCode=0x00000000` | + +This is the first end-to-end proof that the replacement library can be a .NET +10 x64 client-side implementation instead of a 32-bit sidecar or a new native +proxy/stub DLL. There are now two viable managed routes: direct DCOM/NDR to +`NmxSvc.exe` for MXAccess-compatible LMX behavior, and direct ASB `IASBIDataV2` +to the MxDataProvider for data-service register/read/write/complete behavior. + +The same path has now been reproduced in managed .NET 10 code through +`GetPartnerVersion`: + +```text +dotnet run --project src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-remqi-managed --objref-only +``` + +Saved output: + +```text +analysis\proxy\managed-remqi-and-getpartner-probe.txt +``` + +Observed result: + +| Stage | Managed result | +| --- | --- | +| NTLMv2 packet-integrity auth | succeeds without SSPI `MakeSignature` | +| `IObjectExporter::ResolveOxid` | `ErrorCode=0x00000000`, returns OXID bindings and `IRemUnknown` IPID | +| `IRemUnknown::RemQueryInterface` | `HRESULT=0x00000000`, returns an `INmxService2` IPID | +| `INmxService2::GetPartnerVersion` | `partner_version=6`, `HRESULT=0x00000000` | + +This removes the prior managed transport blocker for scalar service calls. The +remaining DCOM work is breadth: activation without local COM marshaling, packet +privacy/sealing if needed by future calls, callback object export, interface +pointer marshaling for `RegisterEngine2`, and byte-array marshaling for +`TransferData`. + +`TransferData` byte-array marshaling has now been live-proven. The managed +probe sent a non-value 46-byte control body from capture `046` through +`INmxService2::TransferData`: + +```text +analysis\proxy\managed-transferdata-control-probe.txt +``` + +The call reached `NmxSvc.exe` and returned `HRESULT=0x80041101` as an +application-level NMX error, not a DCE/RPC fault. This is the expected shape for +an unregistered probe session and confirms that the managed NDR encoding for +`int,int,int,int,byte[size]` is accepted by the service. + +Normal write bodies are now generated from `MxReferenceHandle`, GR data type, +payload value, write index, and the client token field: + +```text +src\MxNativeCodec\NmxWriteMessage.cs +``` + +The generated bodies reproduce the captured normal bool, int, float, double, +string, datetime, and array writes. They also reproduce the captured +timestamped int `Write2` body by replacing the normal no-time suffix with +`int16 0`, an 8-byte FILETIME, the client token, and the write index. +The captured secured/verified test tags (`TestMachine_001.ProtectedValue` and +`ProtectedValue1`) also use the normal bool write body; their GR +`security_classification` values are 2 and 3, and their generated handles/body +bytes now round-trip in tests. + +The callback marshal probe confirms the next hard blocker: + +```text +analysis\proxy\callback-marshal-probe.txt +``` + +`CoMarshalInterface` for `INmxSvcCallback` from the x64 managed process fails +with `0x80040154 REGDB_E_CLASSNOTREG`, because the installed +`NmxSvcps.dll` proxy/stub is only registered under WOW6432Node. Therefore +`RegisterEngine2` cannot rely on Windows COM to export the callback object; the +library needs a managed callback object exporter that advertises +`INmxSvcCallback` and handles `DataReceived` / `StatusReceived` ORPC calls. + +The probe can also dump the remote-style `IUnknown` OBJREF without loading the +NMX proxy: + +```text +dotnet run --project src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --dump-objref --objref-context=2 --expect-proxy-load-failure +``` + +Latest saved output: + +```text +analysis\proxy\nmxservice-objref-context2.txt +``` + +The parser used by the probe is now reusable managed code: + +```text +src\MxNativeClient\ComObjRef.cs +src\MxNativeClient\ComObjRefProvider.cs +``` + +The current OBJREF confirms: + +| Field | Value from latest probe | +| --- | --- | +| signature | `0x574F454D` / `MEOW` | +| marshaled IID | `IUnknown` / `00000000-0000-0000-C000-000000000046` | +| OXID | `0xEAF0D2B53BAB5BC2` | +| bindings | `ncacn_ip_tcp` host/IP bindings plus named-pipe, local-RPC, and security towers | + +The OID/IPID are activation-specific and change per run. This gives the +managed ORPC layer a concrete activation path: obtain/parse an `IUnknown` +OBJREF, resolve/query the object for `INmxService2`, then issue calls using the +decoded opnums below. + +## Boundary proved by capture 046 + +Capture: + +```text +captures\046-service-boundary-write-test-int-123456791 +``` + +The same 86-byte value-bearing `TransferData` body appears in all three places: + +| Stage | Function | Value offset | +| --- | --- | ---: | +| x86 client adapter | `CNmxAdapter.TransferData` | `64` | +| service COM entry | `CNmxService.TransferData` | `64` | +| service controller | `CNmxControler.TransferData` / `DataReceived` / `ProcessDataReceivedForEngine` | `64` | + +The exact body is not present in the loopback TCP capture. That means the +private TCP/LRPC serialization is below the COM proxy/stub layer. For a .NET 10 +x64 managed implementation, the target is not the visible NMX TCP stream first; +it is the `NmxSvcps.dll` MIDL proxy contract. + +The NMX service body passed through `INmxService2.TransferData` is: + +```text +46-byte NMX envelope + PutRequest body +``` + +The inner `PutRequest` length is stored as a little-endian `int32` at envelope +offset `2`. This has been moved into the .NET 10 codec as: + +```text +src\MxNativeCodec\NmxTransferEnvelopeTemplate.cs +``` + +## Proxy/stub inventory + +`NmxSvcps.dll` is a 32-bit MIDL proxy/stub DLL. It imports `NdrDllGetClassObject`, +`NdrDllRegisterProxy`, `CStdStubBuffer_*`, and `BSTR_UserMarshal`. + +Extracted layout: + +```text +analysis\proxy\nmxsvcps-proxy-layout.tsv +analysis\proxy\nmxsvcps-procedures.tsv +analysis\proxy\type-format-snippets\ +``` + +Interfaces in the proxy file: + +| Interface | IID | Methods including IUnknown | +| --- | --- | ---: | +| `INmxService2` | `2630A513-A974-4B1A-8025-457A9A7C56B8` | 12 | +| `INmxSvcStatistics` | `6EB90E4C-DF5C-47F0-B2CD-110549C1162A` | 5 | +| `INmxStatus` | `4CA783BC-F68E-42F4-9D76-8107C826F625` | 6 | +| `INmxService` | `575008DB-845D-46C6-A906-F6F8CA86F315` | 10 | +| `INmxNotify` | `73849AEA-472A-4715-B8C6-1C806AF12DFC` | 5 | +| `INmxSvcCallback` | `B49F92F7-C748-4169-8ECA-A0670B012746` | 5 | + +## Decoded MIDL procedure formats + +The procedure format string in `NmxSvcps.dll` has now been decoded into a +repeatable table: + +```text +python analysis\scripts\extract_nmxsvcps_proc_formats.py +``` + +Important `INmxService2` opnums: + +| Method | Opnum | x86 stack | Client buffer | Server buffer | Parameters including HRESULT | +| --- | ---: | ---: | ---: | ---: | ---: | +| `RegisterEngine` | 3 | 20 | 8 | 8 | 4 | +| `UnRegisterEngine` | 4 | 12 | 8 | 8 | 2 | +| `Connect` | 5 | 24 | 32 | 8 | 5 | +| `TransferData` | 6 | 28 | 32 | 8 | 6 | +| `AddSubscriberEngine` | 7 | 24 | 32 | 8 | 5 | +| `RemoveSubscriberEngine` | 8 | 24 | 32 | 8 | 5 | +| `SetHeartbeatSendInterval` | 9 | 16 | 16 | 8 | 3 | +| `RegisterEngine2` | 10 | 24 | 16 | 8 | 5 | +| `GetPartnerVersion` | 11 | 24 | 24 | 36 | 5 | + +Callback opnums: + +| Method | Opnum | x86 stack | Client buffer | Server buffer | Parameters including HRESULT | +| --- | ---: | ---: | ---: | ---: | ---: | +| `DataReceived` | 3 | 16 | 8 | 8 | 3 | +| `StatusReceived` | 4 | 16 | 8 | 8 | 3 | + +The key type-format references are: + +| Type-format offset | Meaning from usage | +| --- | --- | +| `0x0006` | `[size_is(dwBufferSize)] byte/sbyte callback buffer` | +| `0x002c` | `BSTR` user-marshaled string | +| `0x0036` | `INmxSvcCallback` interface pointer | +| `0x004c` | `[size_is(lSize)] byte TransferData buffer` | +| `0x005c` | `INmxNotify` interface pointer | + +This is enough to specify the managed NDR signatures for the service calls. It +does not remove the need for a managed DCOM/ORPC transport: normal COM still +tries to load the 32-bit proxy DLL before these calls can be made from x64. + +The recovered opnum table is also checked into the .NET 10 client scaffold: + +```text +src\MxNativeClient\NmxProcedureMetadata.cs +``` + +## Managed DCE/RPC primitives added + +The client scaffold now includes tested managed DCE/RPC binary primitives: + +```text +src\MxNativeClient\DceRpcPdu.cs +src\MxNativeClient\DceRpcTcpClient.cs +src\MxNativeClient.Tests\MxNativeClient.Tests.csproj +``` + +These currently cover: + +| Primitive | Status | +| --- | --- | +| common PDU header parse/write | implemented | +| bind / alter-context PDU parse/write | implemented | +| presentation context syntax IDs | implemented | +| request PDU parse | implemented | +| response/fault PDU body parse | implemented | +| authenticated RPC trailer support | pending | +| DCOM/OXID resolution with managed NTLMv2 packet integrity | implemented and live-proven | +| ORPC `this` / `that` without extensions | implemented | +| `MInterfacePointer` wrapper | implemented | +| `STDOBJREF` parse/write | implemented | +| `IRemUnknown::RemQueryInterface` request composer | implemented | +| `IRemUnknown::RemQueryInterface` response parser | partial: `REMQIRESULT` parse implemented, full NDR response wrapper pending | +| ORPC extension arrays | pending | + +The tests use real bytes from capture `046` plus the current OBJREF dump. This +keeps the managed transport work tied to observed AVEVA traffic instead of only +to the protocol specification. + +The capture parser has also been updated to annotate requests with recovered +presentation-context interface UUIDs: + +```text +analysis\scripts\parse_dcerpc_streams.py +captures\046-service-boundary-write-test-int-123456791\dcerpc-stream-pdus.tsv +``` + +The visible TCP DCE/RPC stream in capture `046` binds contexts +`4E0C90DF-E39D-4164-A421-ACE89484C602` and +`1981974B-6BF7-46CB-9640-0260BBB551BA`. It does not carry the NMX +`TransferData` scalar or exact service body, so it remains a useful DCE/RPC +format source but not the NMX service method channel. + +`rpcping` checks on 2026-04-25: + +| Probe | Result | +| --- | --- | +| `rpcping -s 127.0.0.1 -t ncacn_ip_tcp -f 2630A513-A974-4B1A-8025-457A9A7C56B8,1` | endpoint mapper returns `1753` / no endpoint | +| `rpcping -s ::1 -t ncacn_ip_tcp -e 49704` | succeeds; this is the visible DCE/RPC stream used as a framing reference | +| `rpcping -s 10.100.0.48 -t ncacn_ip_tcp -e 5026` | connects but fails as RPC with `1727`; this listener is not a normal RPC endpoint | + +So the next transport target is not endpoint-mapper lookup by `INmxService2` +IID. It is COM activation/OBJREF acquisition followed by manual ORPC against +the activated object identity. + +The ORPC and `IRemUnknown` scaffolding added in this pass is: + +```text +src\MxNativeClient\OrpcStructures.cs +src\MxNativeClient\RemUnknownMessages.cs +src\MxNativeClient\ObjectExporterMessages.cs +src\MxNativeClient\ObjectExporterClient.cs +``` + +Important details: + +| Item | Current implementation | +| --- | --- | +| `ORPCTHIS` | encodes COM version, flags, CID, null extension pointer | +| `ORPCTHAT` | parses/encodes flags plus null extension pointer | +| `MInterfacePointer` | wraps/unwraps a byte-counted OBJREF | +| `STDOBJREF` | parses/encodes flags, refs, OXID, OID, IPID | +| `RemQueryInterface` | composes a request body for one target IID, including `INmxService2` | +| DCE/RPC object UUID requests | implemented; required for COM IPID calls | +| `INmxService2` scalar stubs | encodes `GetPartnerVersion`, `Connect`, `SetHeartbeatSendInterval`; parses scalar responses | +| `INmxService2::TransferData` stub | encodes correlated `byte[size]`; live call reaches service and returns application HRESULT | +| `INmxSvcCallback` stubs | parses `DataReceived` / `StatusReceived` callback requests and encodes HRESULT responses | + +The first service-specific managed NDR message codec is: + +```text +src\MxNativeClient\NmxService2Messages.cs +``` + +It covers the scalar request/response shape used by the successful reference +`GetPartnerVersion` call. `RegisterEngine2` and `TransferData` are intentionally +left for the next pass because they require interface-pointer marshaling and the +correlated `byte[size]` transfer array. + +### ResolveOxid probe + +Two probes now reproduce the same result: + +```text +analysis\scripts\probe_resolve_oxid.py +src\MxNativeClient\ObjectExporterClient.cs +``` + +Saved outputs: + +```text +analysis\proxy\resolve-oxid-unauth-probe.txt +analysis\proxy\resolve-oxid-managed-unauth-probe.txt +``` + +The managed probe: + +```text +dotnet run --project src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-resolve-oxid-unauth --expect-proxy-load-failure +``` + +Result: + +```text +resolve_oxid_unauth_status=0x00000005 +``` + +The bind and NDR request shape are accepted by RPCSS. The failure is an +application-level `ERROR_ACCESS_DENIED` from `ResolveOxid`, matching the Python +probe and Impacket reference behavior without packet signing/privacy. + +Impacket reference probes established the missing auth requirement: + +| Auth level | `ResolveOxid` result | +| --- | --- | +| connect | `ERROR_ACCESS_DENIED` | +| packet integrity | succeeds | +| packet privacy | succeeds | + +The managed client now implements the required packet-integrity path itself: + +```text +src\MxNativeClient\ManagedNtlmClientContext.cs +src\MxNativeClient\DceRpcTcpClient.cs +``` + +It includes Type1/Type3 generation, NTLMv2 response calculation, session key +exchange, RC4 signing state, and DCE/RPC verifier generation. This was needed +because .NET's high-level `NegotiateAuthentication.Wrap` returns wrapped data, +not the verifier-only NTLM signature shape that DCE/RPC expects for packet +integrity. + +The callback request codecs are now represented in: + +```text +src\MxNativeClient\NmxSvcCallbackMessages.cs +``` + +They cover the two service-to-client callback opnums recovered from +`NmxSvcps.dll`: `DataReceived` opnum `3` and `StatusReceived` opnum `4`. +The remaining work is not their byte-array NDR shape; it is exposing an object +endpoint and OBJREF that `NmxSvc.exe` will accept as the `INmxSvcCallback` +argument to `RegisterEngine2`. + +The managed client now replicates the object-resolution path through the point +needed for scalar service calls: + +1. Obtain a remote-style `IUnknown` OBJREF for `NmxSvc.NmxService`. +2. Resolve its OXID through `IObjectExporter::ResolveOxid` using managed NTLMv2 + packet integrity. +3. Bind to the returned OXID endpoint and call + `IRemUnknown::RemQueryInterface` for `INmxService2`. +4. Bind to `INmxService2` and call scalar opnums with the returned object IPID. +5. Implement fully managed activation and the callback object endpoint needed + by `RegisterEngine2`. + +## Managed ASB route proof + +The mixed-mode `aaMxDataConsumer.dll` route decompiles to managed ASB proxies: +`DataClientProxy.Initialize` passes the namespace/access string to +`IDataProxySelector.SelectProxyForLatestEndpoint`, and the GAC +`ASBIDataV2Adapter.dll` first searches LDS for an `IASBIDataV2` endpoint under +`domainname//global`. + +`src\AsbProxyProbe` is a temporary x64 .NET Framework probe that directly uses +those installed MSIL ASB proxy assemblies. It proves that the data-service +route is not inherently x86-bound: + +| Probe | Result | +| --- | --- | +| `--access=ZB --connect` | discovers and opens `net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2` | +| `--register --read --tag=TestChildObject.TestInt` | `RegisterItems` and `Read` return `0x00000000`; ASB type `4` decodes as integer value `334` | +| `--write-int=401 --tag=TestChildObject.TestInt` | `Write` returns global success, readback returns `401`, and `PublishWriteComplete` returns the original write handle with per-item success | + +The observed write status model is important for the .NET 10 API design: + +| Stage | ASB code | Meaning | +| --- | ---: | --- | +| immediate per-item write status | `0x0000001F` | `ArchestrAError.OperationWouldBlock`; accepted asynchronously | +| readback after write | `0x00000000` | value changed to `401` | +| publish completion result | `0x00000020` | `ArchestrAError.PublishComplete` | +| published completion item status | `0x00000000` | final write success for handle `0xA5B20001` | + +This route is the highest-confidence basis for a full managed .NET 10 data +client because it avoids `LmxProxy.dll`, `aaMxDataConsumer.dll`, COM +registration, and the 32-bit NMX proxy/stub. The next implementation slice is a +pure .NET 10 port of the ASB discovery, system-auth handshake, net.tcp WCF +contract, `RegisterItems`, `Read`, `Write`, and `PublishWriteComplete` pieces. + +That pure .NET 10 port has started under: + +```text +src\MxAsbClient +src\MxAsbClient.Probe +``` + +Current live result: + +| Stage | Status | +| --- | --- | +| read ASB solution shared secret from registry/DPAPI | works | +| load registry crypto parameters | works; this VM uses `HashAlgorthim=None`, `keySize=256`, and a 768-bit DH prime | +| net.tcp WCF channel to `IASBIDataV2` | opens from .NET 10 x64 | +| ASB `Connect` + `AuthenticateMe` | works; probe reaches `connect=True` | +| `RegisterItems` | works; retries the observed one-way `AuthenticateMe` startup race and returns item status/id | +| `UnregisterItems` | implemented and matches installed proxy; this provider returns global success with per-item `0x0000000B` | +| `Read` | works for single and multi-item requests; decodes ASB `DataType.TypeInt32` (`4`) and payload to managed `int` | +| `Write` | works; immediate per-item status matches AVEVA proxy `0x0000001F` / `OperationWouldBlock` | +| `PublishWriteComplete` | works; decodes write handle and final per-item success | + +The .NET 10 port now proves endpoint discovery input, DPAPI passphrase access, +registry crypto parameters, DH/AES system authentication, WCF net.tcp channel +setup, AVEVA-compatible custom `ASBIData` binary bodies, and the required +`DataContractSerializer` CLR namespaces/field ordering for IDataV2 headers and +write-completion response types. The latest repeat also corrected the normal +data-call signing mode and handles the immediate post-auth `RegisterItems` +race caused by one-way `AuthenticateMe`. The key compatibility fixes were: + +- `ConnectionValidator` must serialize as + `http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBContract`, not + the local .NET namespace. +- `ItemIdentity[]`, `ItemStatus[]`, and `RuntimeValue[]` use the `ASBIData` + base64 binary custom serializer. +- `WriteValue`, `Variant`, `ASBStatus`, `ItemWriteComplete`, `ItemStatus`, and + `ItemIdentity` also need AVEVA data-contract field names/order for fallback + XML serialization paths. +- Nested mutable structs must be decoded through initialized locals and then + assigned back; mutating an auto-property copy drops the decoded `Variant` and + `ASBStatus`. +- `RegisterItems` needs a short retry on `0x00000001` immediately after + connect because the server adds the IDataV2 implementation inside the one-way + `AuthenticateMe` handler. + +The latest .NET 10 evidence is: + +```text +analysis\proxy\mxasbclient-probe-stage21-register-retry.txt +``` + +It first observed `RegisterItems` message `2` returning `0x00000001`, retried +as message `3`, then received `0x00000000` with item id +`18446462598732840961`. It read previous value `411`, wrote `412`, read back +`412`, and decoded one published completion with result `0x00000020`, handle +`0xA5B21001`, and final status `0x00000000`. The next ASB work is to broaden +the first core data-path proof: multi-item calls, scalar/array type matrix, +subscription/publish, and error/status mapping. + +`UnregisterItems` was then added and compared with the installed +`ASBDataV2Proxy`: + +```text +analysis\proxy\mxasbclient-probe-stage23-unregister-id.txt +analysis\proxy\asbproxyprobe-unregister-compare.txt +``` + +Both clients register and read `TestChildObject.TestInt`, then call +`UnregisterItems` with the registered item identity. The global result is +`0x00000000`; the provider returns per-item `0x0000000B` (`OperationFailed`) in +both implementations, so the pure .NET 10 behavior matches the AVEVA proxy for +this endpoint even though item-level cleanup is not reported as success. + +Multi-item register/read evidence: + +```text +analysis\proxy\mxasbclient-probe-stage24-multi-read.txt +``` + +The pure .NET 10 client registers and reads `TestChildObject.TestInt` and +`TestMachine_001.TestHistoryValue` in two-item requests. Both operations return +global success and per-item success for both tags; read values decode as ASB +`TypeInt32` previews `412` and `303`. + +`RegisterEngine2` request marshaling is now partially implemented and live +verified in .NET 10 x64. The recovered request shape is: + +```text +ORPCTHIS +localEngineId:int32 +0x72657355:uint32 ; MIDL user-marshal marker before BSTR +BSTR_UserMarshal(engineName) +padding +version:int32 +callback interface pointer +``` + +The BSTR user-marshal payload is: + +```text +char_count:uint32 +byte_length:uint32 +char_count:uint32 +utf16_payload_without_null +``` + +The null callback form uses a single `uint32` zero. The managed probe: + +```text +analysis\proxy\managed-registerengine2-null-callback-probe.txt +``` + +returns: + +```text +managed_register2_null_hresult=0x00000001 +managed_unregister_after_register_hresult=0x00000001 +``` + +That is a non-failing COM success code returned by `NmxSvc.exe`, proving that +the managed NDR stub is accepted for `RegisterEngine2` when no callback object +is supplied. + +The non-null callback form wraps an OBJREF as: + +```text +0x00020000:uint32 +objref_size:uint32 +objref_size:uint32 +objref_bytes +``` + +The remaining `RegisterEngine2` work is to generate an OBJREF for a managed +`INmxSvcCallback` endpoint and implement the DCE/RPC server side that handles +`IRemUnknown`, `DataReceived`, and `StatusReceived`. + +Two callback OBJREF probes refine that work: + +```text +analysis\proxy\managed-registerengine2-callback-fixed-port-probe.txt +analysis\proxy\managed-registerengine2-callback-com-iunknown-objref-probe.txt +analysis\proxy\managed-registerengine2-callback-com-iunknown-self-transfer-probe.txt +``` + +A fully synthetic OBJREF with a managed TCP listener is rejected before any +inbound connection reaches the listener. With default security bindings it +fails as `0x800706BA`, and TCP polling confirms there is no SYN to the +advertised callback port. This implies a standard OBJREF needs a real +RPCSS/OXID resolver registration, not just a reachable TCP endpoint. + +A COM-runtime-registered x64 `IUnknown` OBJREF, patched only to use the +`INmxSvcCallback` IID, is accepted by `NmxSvc.exe`: + +```text +managed_register2_callback_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 +managed_callback_self_transfer_hresult=0x00000000 +``` + +No callback event was delivered in that probe, so this is a registration and +OBJREF-resolution proof, not a complete callback dispatch solution. + +The x64 callback marshal problem can now be solved with Windows standard +type-library marshaling rather than an AVEVA x64 proxy/stub: + +```text +analysis\scripts\register_x64_callback_typelib.ps1 +analysis\proxy\callback-marshal-after-typelib-probe.txt +analysis\proxy\managed-registerengine2-callback-com-real-probe.txt +``` + +After registering `INmxSvcCallback` with the standard automation proxy/stub, +`CoMarshalInterface(INmxSvcCallback)` succeeds in the .NET 10 x64 probe and +`NmxSvc.exe` accepts the real non-null callback OBJREF. The matching x86 direct +harness also receives no callback from the synthetic self-transfer route: + +```text +analysis\proxy\x86-registerengine2-self-transfer-callback-probe.txt +``` + +That moves the next blocker from COM callback marshaling to the NMX session +message bodies that cause `CNmxControler.LocalCallbackDataReceived` to invoke +`INmxSvcCallback.DataReceived` / `StatusReceived`. + +## Subscription frame capture + +Focused capture: + +```text +captures\058-frida-subscribe-testint +``` + +This run used the x86 `MxTraceHarness` against `TestChildObject.TestInt` and +captured the native `NmxAdptr.dll` boundary around `AdviseSupervisory` and +cleanup. + +Observed outgoing bodies: + +| Stage | Size | Command | Meaning | +| --- | ---: | ---: | --- | +| `CNmxAdapter.PutRequest` | 314 | `0x17` | metadata query for `DevPlatform.GR.TimeOfLastDeploy` and `DevPlatform.GR.TimeOfLastConfigChange` | +| `CNmxAdapter.TransferData` | 360 | `0x17` | 46-byte service envelope plus the 314-byte metadata query | +| `CNmxAdapter.PutRequest` | 39 | `0x1f` | advise/supervisory item-control request | +| `CNmxAdapter.TransferData` | 85 | `0x1f` | 46-byte service envelope plus the 39-byte advise request | +| `CNmxAdapter.PutRequest` | 37 | `0x21` | unadvise item-control request | +| `CNmxAdapter.TransferData` | 83 | `0x21` | 46-byte service envelope plus the 37-byte unadvise request | + +The advise/unadvise control bodies share this observed shape: + +```text +command:uint8 +version:uint16 +itemCorrelationGuid:Guid +item/type/status suffix bytes +``` + +The command bytes identified so far are: + +| Command | Current name | +| ---: | --- | +| `0x17` | metadata query | +| `0x1f` | advise/supervisory | +| `0x21` | unadvise | +| `0x32` | subscription/status callback body | +| `0x33` | data/update callback body | +| `0x37` | write | + +Incoming `CNmxAdapter.ProcessDataReceived` buffers are not exactly the same as +client-side `TransferData` buffers: they start with a 4-byte total-length +prefix, then the 46-byte NMX service header. In this form, the declared inner +length in the service header is four bytes larger than the actual trailing +inner body. Other callback captures, including the `Write2` data update, start +directly with the 46-byte header and use the declared inner length as-is. The +.NET 10 codec now models both variants: + +```text +src\MxNativeCodec\NmxObservedFrame.cs +src\MxNativeCodec\NmxSubscriptionMessage.cs +src\MxNativeCodec.Tests\Program.cs +``` + +The current codec can classify the capture `058` advise body, unwrapped +subscription status body, and metadata query strings. It also decodes typed +`0x32` subscription status records and `0x33` data update records from the +observed callback captures, including operation/correlation GUIDs, status, +detail status, quality `0x00c0`, FILETIME timestamps, wire kinds, and observed +scalar bool, int, float, double, string values, numeric arrays, boolean arrays, +and datetime arrays. Multi-record status bodies with wire kind `0x06` use a +length-prefixed FILETIME payload and now parse without losing record alignment. +The observed 5-byte operation-status callback body `00 00 50 80 00` is decoded +as status code `0x8050` and mapped to `MxStatus.WriteCompleteOk`, matching the +write-complete success path seen before the data-update callback. +Future captures can now be fed into the codec and compared by callback record +fields instead of by raw hex. The generated envelope encoder also reproduces +the captured 85-byte advise body and the 83-byte unadvise body exactly: + +```text +src\MxNativeCodec\NmxTransferEnvelope.cs +src\MxNativeCodec.Tests\Program.cs +``` + +Follow-up captures: + +```text +captures\059-frida-subscribe-testbool +captures\060-frida-subscribe-teststring +``` + +confirm the 37/39-byte item-control body layout: + +| Offset | Size | Field | Status | +| ---: | ---: | --- | --- | +| `0x00` | 1 | command (`0x1f` advise, `0x21` unadvise) | decoded | +| `0x01` | 2 | version (`0x0001`) | decoded | +| `0x03` | 16 | item correlation GUID | generated per `AddItem` | +| `0x13` | 2 | advise-only zero padding | present for `0x1f` only | +| variable | 2 | object id | `MxHandle` byte offset 6 | +| variable | 2 | object signature | CRC-16/IBM over lowercase UTF-16LE object name | +| variable | 2 | primitive id | matches GR `mx_primitive_id` | +| variable | 2 | attribute id | matches GR `mx_attribute_id` | +| variable | 2 | value property id | observed as `10` for value references; do not use GR `mx_attribute_category` here | +| variable | 2 | attribute signature | CRC-16/IBM over lowercase UTF-16LE attribute name | +| variable | 2 | attribute index | `0` for scalar, `-1` for arrays | +| variable | 4 | tail (`0x00000003`) | observed stable | + +For `TestChildObject`: + +| Attribute | GR `mx_attribute_id` | Captured runtime code | +| --- | ---: | ---: | +| `TestBool` | `154` | `0x00007dfa` | +| `TestInt` | `155` | `0x0000da3e` | +| `TestString` | `158` | `0x0000941a` | + +The item-control codec is now checked in: + +```text +src\MxNativeCodec\NmxItemControlMessage.cs +``` + +Capture `061` adds the missing LMX-side mapping: + +```text +captures\061-frida-lmx-resolve-testint +analysis\frida\mx-nmx-trace.js +analysis\ghidra\exports\Lmx.dll.prebound-decompile.md +analysis\ghidra\exports\Lmx.dll.prebound-helpers-decompile.md +``` + +The Ghidra helper pass identifies `FUN_1008f8b0` as +`AccessManager::FixUpMxHandle` and `FUN_1005f730` as the `IMxReference` handle +reader. The live hook shows that the resolved `TestChildObject.TestInt` handle +is this 20-byte value: + +```text +01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 +``` + +The LMX typelib imported from `Lmx.dll` identifies this as a structured +`MxHandle`: `MxAutomationObjectHandle` followed by `MxAttributeHandle`. + +| Offset | Field | Value for `TestChildObject.TestInt` | Source | +| ---: | --- | ---: | --- | +| 0 | `galaxy` | `1` | local runtime convention | +| 2 | `platform` | `1` | `ZB.dbo.instance.mx_platform_id` | +| 4 | `engine` | `2` | `ZB.dbo.instance.mx_engine_id` | +| 6 | `object` | `5` | `ZB.dbo.instance.mx_object_id` | +| 8 | object signature | `0xd736` | CRC-16/IBM over lowercase UTF-16LE `testchildobject` | +| 10 | primitive id | `2` | `dynamic_attribute.mx_primitive_id` / `attribute_definition` path | +| 12 | attribute id | `155` | `dynamic_attribute.mx_attribute_id` | +| 14 | value property id | `10` | fixed runtime value-property id | +| 16 | attribute signature | `0xda3e` | CRC-16/IBM over lowercase UTF-16LE `testint` | +| 18 | attribute index | `0` | scalar index; arrays use `-1` | + +The 37/39-byte NMX item-control body is a projection of bytes 6 through 19 of +this handle, followed by tail `0x00000003`. The managed representation and +signature synthesizer are checked in as: + +```text +src\MxNativeCodec\MxReferenceHandle.cs +``` + +The GR correlation was obtained from the local `ZB` database using the query +notes in: + +```text +C:\Users\dohertj2\Desktop\lmxopcua\gr +``` + +That GR path is now executable managed code: + +```text +src\MxNativeClient\GalaxyRepositoryTagResolver.cs +src\MxNativeClient.Tests\Program.cs +``` + +The live test resolves `TestChildObject.TestInt` from SQL Server and asserts +that `GalaxyTagMetadata.ToReferenceHandle()` encodes the exact captured LMX +handle: + +```text +01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 +``` + +The static path through `LmxProxy.dll` is now decompiled into: + +```text +analysis\ghidra\exports\LmxProxy.dll.selected-decompile.md +analysis\ghidra\exports\LmxProxy.dll.item-helper-decompile.md +analysis\ghidra\exports\LmxProxy.dll.item-record-decompile.md +``` + +The decompile shows: + +- `AddItem` invokes a lower resolver through the per-server object and stores a + resolved item record keyed by local item handle. +- `AdviseSupervisory` verifies the server/item handle, calls the resolver helper + if the item has not been advised, then passes fields from the resolved item + record into the NMX callback path. +- `UnAdvise` validates an advised item and calls back through the stored + connection object, which matches the shared correlation GUID observed in the + advise/unadvise bodies. + +The direct handle synthesis problem is now solved for normal deployed object +attributes: combine `instance` platform/engine/object ids, deployed package +attribute metadata, and CRC-16/IBM name signatures. This removes the previous +need to call the x86 `IMxReference` resolver for the captured dynamic scalar and +array attributes. + +## Managed service client scaffold + +The live managed DCOM path has been moved from `MxNativeClient.Probe` into a +reusable client: + +```text +src\MxNativeClient\ManagedNmxService2Client.cs +``` + +It performs: + +- local activation of `NmxSvc.NmxService` only to obtain an `IUnknown` OBJREF, +- managed NTLMv2 packet-integrity `ResolveOxid`, +- managed `IRemUnknown::RemQueryInterface` for `INmxService2`, +- packet-integrity calls for `GetPartnerVersion`, `RegisterEngine2`, + `UnRegisterEngine`, `Connect`, subscriber engine calls, and `TransferData`. +- generated `AdviseSupervisory` and `UnAdvise` TransferData bodies from + repository-resolved tag metadata. +- generated normal `Write` TransferData bodies from repository-resolved tag + metadata and GR value type. +- generated timestamped `Write2` TransferData bodies using FILETIME timestamps. + +Verification on this node: + +```text +dotnet run --project src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-remqi-managed --objref-only +``` + +returned `managed_getpartner_version=6`, +`managed_getpartner_hresult=0x00000000`, and +`remqi_managed_error=0x00000000`. The managed NTLM credentials are supplied by +environment variables at runtime and are not stored in the project. + +The probe also contains a guarded `--probe-managed-subscribe` path. With SSPI +auth it currently faults at `ResolveOxid` with `0x00000721`, so the subscription +probe must use the managed NTLM environment path to be a valid end-to-end test. +No credential material is stored in this repository. + +## Library layers + +Planned managed library shape: + +| Layer | Project | Status | +| --- | --- | --- | +| Message body codec | `MxNativeCodec` | generated normal and timestamped scalar/array write bodies, generated TransferData envelope, item-control codec, typed observed subscription/data-update callback records for scalar values, scalar arrays, datetime arrays, and multi-record date/status payloads, 5-byte operation-status/write-complete callback mapping, and `MxReferenceHandle` projection | +| COM contract definitions | `MxNativeClient` | scaffolded; proves x64 native proxy blocker | +| Managed NDR/DCOM proxy | `MxNativeClient` | reusable `ManagedNmxService2Client` with DCE/RPC client, NTLMv2 packet integrity, OXID resolve, RemQI, scalar calls, `TransferData`, generated write/Write2/subscribe/unsubscribe bodies, null-callback `RegisterEngine2`, and real x64 `INmxSvcCallback` OBJREF registration working after type-library setup | +| Managed ASB/IDataV2 route | Planned .NET 10 client slice | new x64 evidence shows the installed MSIL ASB proxies can discover and connect to `IASBIDataV2` for access name `ZB` without MXAccess or COM; next step is porting the required WCF contracts/proxy/authentication path into .NET 10 managed code | +| Galaxy metadata resolver | `MxNativeClient` | live-tested SQL resolver and browse query for deployed dynamic and primitive attributes | +| High-level API | `MxNativeClient` | first `MxNativeSession` facade for open/register, GR resolve/browse, transient subscription read, write, timestamped write, subscribe/unsubscribe, typed callback events, and operation-status events | +| MXAccess compatibility layer | `MxNativeClient` | `MxNativeCompatibilityServer` maps integer server/item handles onto the managed session for register, add/remove item, advise/unadvise, write, timestamped write, data-change events, write-complete operation-status events, observed `ArchestrAUserToId` behavior, invalid-reference behavior, stale item-handle `0x80070057` errors after `RemoveItem`, invalid server-handle errors, and cross-server item-handle errors; malformed/incomplete decoded callback values are not promoted to public `DataChanged` events, and the observed empty `InternationalizedString` callback is suppressed to match x86 MXAccess public-event behavior | + +## Current gaps versus MXAccess + +This is the explicit parity plan against the public `ILMXProxyServer5` surface +documented in `docs\MXAccess-Public-API.md`. Status values: + +- `Covered`: implemented in managed code and covered by captures/tests or live + low-level probes. +- `Partial`: core mechanism exists, but behavior is not yet equivalent to + MXAccess or lacks live facade validation. +- `Missing`: not yet implemented or not yet decoded. + +| MXAccess surface | Current managed status | Gap / next work | +| --- | --- | --- | +| `Register` / `Unregister` | Partially live validated | `ManagedNmxService2Client.RegisterEngine2` and `UnregisterEngine` work from .NET 10 x64 with managed NTLM. `MxNativeSession.Open` wraps them with managed callbacks; `MxNativeCompatibilityServer.Register/Unregister` expose integer server handles. Fixed local engine IDs caused stale registration collisions during repeated probes, so defaults now derive the local engine ID from the process ID. Invalid `Unregister` server handles now return `ArgumentException` `0x80070057`, matching capture `110`. Still needs production reconnect/heartbeat policy and stable diagnostic mapping for nonzero NMX statuses. | +| `AddItem` | Partial / value-handle, buffer-property, invalid-reference, and mixed-session paths corrected | `MxNativeCompatibilityServer.AddItem` exposes integer item handles backed by GR metadata resolution. Fixed captures `104`/`105` showed the native value handle must use property id `10`; using GR `mx_attribute_category` caused managed `ShortDesc` to resolve to property `11` and receive only a status/type marker. After correcting the resolver, live x64 `SubscribeAsync(TestChildObject.ShortDesc)` receives the value-bearing `0x05` callback. Captures `085`/`086` show literal `TestChildObject.TestInt.property(buffer)` resolves to the base `TestInt` handle with property id `0x32`; the resolver now recognizes that suffix, and the x64 compatibility subscribe/write probe matches native public behavior with no public data-change or write-complete. For invalid references, the MXAccess-compatible facade now mirrors captures `007`/`015`: `AddItem` returns a handle and `AdviseSupervisory` raises a public null data-change with quality `0` and `ConfigurationError/RequestingLmx/detail 6`; strict `MxNativeSession.ResolveTagAsync` still fails fast for native managed callers. A mixed-session probe with `ShortDesc`, `TestInt`, and an invalid reference validated handle routing: only the invalid item produced a public event on the current VM state. Remaining AddItem work is broader parity: property references other than value/buffer and more error classes. | +| `RemoveItem` | Covered for observed scalar lifecycle | `MxNativeCompatibilityServer.RemoveItem` removes the item handle and unsubscribes if needed. Capture `109-native-post-remove-errors` shows native x86 MXAccess returns `ArgumentException` `0x80070057` for `Advise`, `AdviseSupervisory`, `UnAdvise`, `Write`, `Write2`, `Suspend`, `Activate`, and a second `RemoveItem` after the item handle has been removed; the .NET 10 x64 `--probe-compatibility-post-remove` probe now reports the same HRESULT for every operation. Capture `110-native-invalid-handle-errors` adds invalid server and cross-server item-handle coverage; the x64 compatibility probe matches those `0x80070057` results too. | +| `Advise` | Covered for observed scalar path / needs live facade validation | X86 MXAccess API capture `mxaccess-plain-advise-testint.log` confirms public `Advise` succeeds for `TestChildObject.TestInt`. Frida capture `099-frida-plain-advise-testint` shows plain `Advise` emits the same item-control `0x1f` body as the earlier `AdviseSupervisory` subscription capture for this scalar tag. The wrapper routes both public methods through the same managed subscription path; broader item classes still need live validation. | +| `AdviseSupervisory` | Transport live validated / initial value proven for observed string-like path | Item-control body and transfer envelope are generated, typed callback decoding is implemented, and the compatibility wrapper exposes handle-based `AdviseSupervisory`. Fixed captures `104`/`105` showed native `0x1f` advise uses transfer kind `ItemControl` (`2`) and value-property id `10` even when GR `mx_attribute_category` differs. After matching those fields, live .NET 10 x64 `SubscribeAsync(TestChildObject.ShortDesc)` receives the native-equivalent value callback: wire kind `0x05`, empty string value, quality `0x00C0`. Fresh x86 MXAccess capture `106-native-subscribe-testint-current` also raises no public `TestInt` data-change on the current VM state, so the managed status-only `TestInt` result is current-native-equivalent even though older captures show that tag can emit values in other runtime states. | +| `UnAdvise` | Partially live validated | Generated body and transfer kind match captures; with unique local engine IDs, live x64 subscribe probes clean up without the earlier `0x80041101` stale-registration failure. Needs broader facade validation across multiple items and failure paths. | +| `Write` | Transport live validated / current public facade parity | Normal scalar and array write bodies match captures, including secured/verified public tags when using normal route. `MxNativeSession.WriteAsync` reaches `INmxService2.TransferData` from .NET 10 x64, and the managed client now has a regression test that normal `0x37` writes use native transfer kind `Write` (`3`) rather than item-control kind `2`. The generated `TestChildObject.ShortDesc` `"hello-native"` body matches capture `096` byte-for-byte; the live completion-only `0xef` for `ShortDesc` also matches native behavior for this `InternationalizedString` caller path. `TestChildObject.TestInt` writes return completion-only `0x00` and a status-only `0x33` callback with no scalar payload; fresh x86 MXAccess capture `107-native-write-testint-current` also raises no public data-change after a successful write on the current VM state. The .NET 10 x64 compatibility subscribe-write probe now matches current public behavior for both `TestInt` and `ShortDesc`: no public data-change and no public write-complete event from completion-only NMX statuses. A write to invalid handle `NoSuchObject_999.NoSuchAttr` returns through the compatibility facade without adding a write-complete event, matching capture `090`. Literal `property(buffer)` writes return without surfacing a write-complete, matching capture `086`. The compatibility facade now also rejects normal writes before advise and normal writes against buffered handles with `0x80070057`, matching captures `008`/`009` and the buffered-write public capture. Older value-bearing `TestInt` captures remain useful golden fixtures for decoder coverage and future runtime-state testing. | +| `Write2` | Covered for observed scalar and array types | Timestamped int, bool, float, double, string, int[], bool[], float[], double[], string[], and datetime[] `Write2` bodies match captures `042` and `066`-`076`. Timestamped bool differs from normal bool writes: it uses a one-byte bool payload followed by the normal timestamp suffix. Datetime[] outbound still uses per-element display strings, matching normal datetime-array write behavior. Reflection over `ArchestrA.MXAccess.dll` shows the public timestamp argument is `object`/VARIANT, so `MxNativeCompatibilityServer` now exposes both typed `DateTime` and object timestamp overloads. | +| `WriteSecured` | Native path appears intentionally blocked for observed secured/verified bool tags / managed stub | Captures `036`, `038`, `039`, `111`, and `112` show `CLMXProxyServer.WriteSecured` returning `0x80004021` before any value-bearing NMX body is emitted, including after `AuthenticateUser` succeeds. Headless decompile in `analysis\ghidra\exports\LmxProxy.dll.write-secured-decompile.md` shows `WriteSecured` has an extra item-record byte check at offset `0x0f` that returns `0x80004021` when set; the deployed secured/verified bool tags hit that branch. `MxNativeSession.WriteSecuredAsync` throws `NotSupportedException` to avoid inventing a body not emitted by native MXAccess. Normal `Write` and boolean `WriteSecured2` cover the successful observed write paths. | +| `WriteSecured2` | Implemented for observed timestamped secured2 body | Captures `113`-`116` show authenticated `WriteSecured2` emitting NMX command `0x38` over transfer kind `Write` (`3`) for boolean secured/verified tags, and capture `117` shows the same command for authenticated integer `TestChildObject.TestInt`. `NmxSecuredWrite2Message` now reuses the normal timestamped `0x37` value/timestamp prefix, changes the command to `0x38`, and appends current-user authenticator token, client name, verifier token, `0xffff`, client token, and write index. Live .NET 10 x64 session probes succeeded for bool, int, float, double, string, datetime, and the matching scalar-array value kinds using the generic encoder. Handle-based compatibility probes succeeded for the secured/verified bool public cases. The compatibility facade exposes typed `DateTime` and object timestamp overloads and does not synthesize `OnWriteComplete`, matching the successful native captures where no public write-complete event was observed. | +| `AuthenticateUser` | Covered for current dev-node behavior / security-enabled auth still open | `captures\mxaccess-authenticate-user-administrator-empty.log` plus Frida captures `087`/`088` show `AuthenticateUser` returning `S_OK` and user ID `1` for both `Administrator` and `DefinitelyNotAUser` with empty password on this dev node. Ghidra shows the public return is a session-local user handle mapped to an authenticator token GUID, not a GR `user_profile_id`. `MxNativeCompatibilityServer.AuthenticateUser` now validates the server handle and returns a session-local handle without storing or comparing password material. A security-enabled Galaxy still needs successful and failed captures before implementing password/hash verification. | +| `ArchestrAUserToId` | Covered for current node behavior | Direct x86 MXAccess probes show Administrator, SystemEngineer, DefaultUser, and an invalid zero GUID all return `1`; `MxNativeCompatibilityServer.ArchestrAUserToId` mirrors that observed behavior after GUID validation. `GalaxyRepositoryUserResolver` separately exposes GR profile metadata: Administrator GUID `9222FBBA-53F4-457E-8B37-C93A9A250B4A` maps to `user_profile_id` `2` and roles `Administrator`/`Default`. | +| `AddItem2` | Partial / context fallback covered | `MxNativeCompatibilityServer.AddItem2` now tries the item definition directly, then retries with the supplied context when the direct reference is missing or syntactically relative. X86 MXAccess capture `mxaccess-additem2-testint-context.log` confirms `AddItem2("TestInt", "TestChildObject")` succeeds; live x64 probes also cover `AddItem2("Alarm.TimeDeadband", "TestMachine_001.TestAlarm001")` and `AddItem2("TestInt.property(buffer)", "TestChildObject")`. More complex `strItemCtxt` semantics still need native captures. | +| `Suspend` | API-compatible local status behavior covered | X86 MXAccess `Suspend` throws `0x80070057` when called before advise, including on `TestChildObject.ScanState` and `DevAppEngine.ScanState`. After `AdviseSupervisory`, both scan-state targets return `Success=-1`, `Category=Pending`, `Source=RequestingLmx`, `Detail=0`. Frida captures `077`/`078` show no distinct NMX suspend/activate body after the advised call. Ghidra decompile of `FUN_10013d9c` shows the public method queries an `IMxScanOnDemand` interface and synchronously calls vtable offset `0x0c`; it does not call the `OperationComplete` event helper in this path. `MxNativeCompatibilityServer.Suspend` mirrors this as local status behavior and requires an advised item. | +| `Activate` | API-compatible local status behavior covered | X86 MXAccess `Activate` throws `0x80070057` when called before advise. After `AdviseSupervisory`, scan-state targets return `Success=-1`, `Category=Ok`, `Source=RequestingLmx`, `Detail=0`. Ghidra decompile of `FUN_10014028` mirrors `Suspend` and synchronously calls `IMxScanOnDemand` vtable offset `0x10`, with no public `OperationComplete` event observed. `MxNativeCompatibilityServer.Activate` mirrors this observed local behavior and requires an advised item. | +| `AddBufferedItem` | Partial implementation | X86 MXAccess `AddBufferedItem("TestInt", "TestChildObject")` succeeds and returns handle `1`; normal `Write` against that buffered handle throws `0x80070057`, now mirrored by `MxNativeCompatibilityServer`. Frida captures `079`/`080` show that advising a buffered item sends an item-control `0x10` reference-registration body for `TestInt.property(buffer)` in context `TestChildObject`, not a normal `0x1f` advise body. Ghidra confirms `AddBufferedItem` appends `.property(buffer)`, calls the normal add-item implementation, then marks the item record as buffered. Direct literal probes `085`/`086` show `TestChildObject.TestInt.property(buffer)` uses the normal path with empty context and returns an internal-error registration result, so literal suffixing is not a replacement for `AddBufferedItem`. Capture `094` reran buffered external writes using a separate MXAccess writer registration; captures `121`/`122` repeated the same approach against GR-confirmed historized integer attribute `TestMachine_001.TestHistoryValue` using both `AdviseSupervisory` and `Advise`. The context-bearing buffered `0x10`/`0x11` registration/result bodies and writer data callbacks were observed, but `Fire_OnBufferedDataChange` still was not entered. `NmxReferenceRegistrationMessage`, `NmxReferenceRegistrationResultMessage`, `MxNativeSession.RegisterBufferedItemAsync`, and `MxNativeCompatibilityServer.AddBufferedItem` now encode the request and decode the `0x11` registration result, including context-bearing buffered references. No `OnBufferedDataChange` payload has been captured, so callback parity is still missing. | +| `SetBufferedUpdateInterval` | Local/API parity covered | X86 MXAccess `SetBufferedUpdateInterval(session, 1000)` succeeds and no distinct NMX request body has been observed for it. Ghidra confirms invalid intervals below `1` return `E_INVALIDARG` and valid values are rounded up to 100 ms ticks as `(milliseconds + 99) / 100`. `MxNativeCompatibilityServer.SetBufferedUpdateInterval` mirrors that local state behavior. Need a buffered callback capture to prove whether the interval changes downstream delivery cadence. | +| `OnDataChange` | Partial / current-runtime parity improving | `NmxSubscriptionMessage` decodes observed scalar, scalar-array, datetime-array, quality, timestamp, and correlation fields. Captures `062`, `102`, and `105` cover compact empty `InternationalizedString`/string callbacks. The low-level session exposes the decoded empty `ShortDesc` value, but `MxNativeCompatibilityServer` suppresses empty `InternationalizedString` promotion because fresh native x86 public-event capture `108` also raises no `OnDataChange` for `ShortDesc`. Captures `063` and `103` cover `ElapsedTime` wire kind `0x07` as both `TimeSpan.Zero` and a non-zero 4-byte millisecond count. The managed decoder now tolerates a captured two-record metadata status frame where the second datetime value is truncated/unknown and reports that value as `null` instead of throwing. Captures `100` and `101` show string-array callback records with wire kind `0x45`, but both observed buffers stop inside the final element and MXAccess did not raise a public data-change event; the managed decoder therefore treats those callback values as incomplete. Live x64 callback parity is proven at the low-level callback layer for `TestChildObject.ShortDesc` after correcting the advise transfer kind and value-property id. Fresh current-state x86 captures `106`/`107` show `TestInt` also has no public data-change in native MXAccess now, while older captures still provide value-bearing fixtures (`003`, `011`, `012`, `017`, `018`) for decoder and future runtime-state testing. | +| `OnWriteComplete` | Partial / completion-only suppression and mixed-session routing validated | The observed successful non-length-prefixed 5-byte operation-status frame decodes to status word `0x8050` plus completion byte `0x00` and maps to `MxStatus.WriteCompleteOk`; `MxNativeSession.OperationStatusReceived` exposes it and `MxNativeCompatibilityServer.WriteCompleted` now fires only for this MXAccess-visible form. Pending write handles are tracked per server session to avoid cross-session callback mis-correlation. Captures `089`, `092`, and `093` show wrong-type string writes emitting a length-prefixed completion-only status body with completion byte `0x41`, and MXAccess does not raise `OnWriteComplete` for those frames. Capture `091` shows double-to-int emits completion-only byte `0x00` and also does not raise `OnWriteComplete`. Capture `096` and the matching managed x64 `ShortDesc` probe show an `InternationalizedString` caller write can emit completion-only byte `0xef`; the .NET 10 x64 compatibility subscribe-write probe suppresses public `WriteCompleted` for both `TestInt` completion-only `0x00` and `ShortDesc` completion-only `0xef`, matching fresh native public-event behavior. A mixed x64 compatibility write probe with normal int, `ShortDesc`, literal `property(buffer)`, and invalid-reference items confirms no public write-complete or data-change is misattributed across item handles; only the invalid reference emits its expected data-change. `NmxOperationStatusMessage` preserves both 5-byte status-word and 1-byte completion-only forms. Need more failure captures to map completion bytes to exact `MXSTATUS_PROXY[]` values and a runtime state that emits multiple public 5-byte write-complete events. | +| `OperationComplete` | Event shape/source decoded / public trigger still missing | Ghidra confirms `Fire_OperationComplete` uses the same three-argument event shape as `OnWriteComplete` but dispatches event ID `3`. Headless xref/decompile output shows `Fire_OnWriteComplete` is called from `CUserConnectionCallback::OnSetAttributeResult`, while `Fire_OperationComplete` is called from `CUserConnectionCallback::OperationComplete`; they are distinct callback paths. The decompiled interop assemblies show `IMxCallback2.OperationComplete(int lCallbackId, ref MxStatus, string)` and an `IDataConsumer.ActivateSuspend` / `ProcessActivateSuspend2` path that returns `ItemActiveResponse`, making DataConsumer activate/suspend processing the best trigger candidate. Captures `118`/`119` added direct Frida hooks on both callback entry points during 20 second advised scan-state suspend/activate runs through public MXAccess `Suspend`/`Activate`; the hooks installed, but neither callback was entered. Those public methods decompile to direct `IMxScanOnDemand` vtable calls, not the DataConsumer `ProcessActivateSuspend2` path. `aaMxDataConsumer.dll` is now imported/decompiled and `MxDataConsumerProbe` can instantiate `DataConsumerClass`, resolve namespace strings to ID `1`, and call `ActivateSuspend`; however `IsConnected(namespaceId)` remains `0`, registration/subscription queues stay empty, and `ProcessActivateSuspend2` currently returns `0x8007139F` (`ERROR_INVALID_STATE`). The mixed-mode `aaMxDataConsumer` decompile shows it should create a managed `DataClientProxy` and select `ASBDataV2Proxy` via `IDataProxySelector`, but forcing namespace `ZB` hung in the COM wrapper. Direct x64 managed ASB probing bypasses that wrapper: `ASBIDataV2Adapter.IDataProxySelector` finds the live `IASBIDataV2` endpoint for access name `ZB`, and `ASBDataV2Proxy.Connect` succeeds. No harness capture has emitted `mx.event.operation-complete`, and the compatibility wrapper intentionally does not synthesize it from write status frames. Next trigger search should use the direct ASB IDataV2 path, not the unstable standalone COM DataConsumer object. | +| `OnBufferedDataChange` | Event source decoded / live payload missing | Harness subscribes to the event for buffered scenarios, and buffered registration is now decoded, but no live buffered data-change payload has been observed. Capture `094` used a separate writer session and longer wait window against `TestChildObject.TestInt`; captures `121` and `122` used a GR-confirmed historized integer attribute, `TestMachine_001.TestHistoryValue`, and tested both supervisory and plain advise. All three produced valid buffered registration/result bodies and writer-side normal data callbacks, but no public buffered event and no `Fire_OnBufferedDataChange` entry. Ghidra xrefs show `Fire_OnBufferedDataChange` is reached from the same native `OnDataChange callback received` method as normal data changes, with the item record buffered flag selecting the buffered event path. Ghidra also shows the public buffered event emits value, quality, and timestamp SAFEARRAY variants plus the normal `MXSTATUS_PROXY[]` status array. `MxNativeCompatibilityServer.BufferedDataChanged` now keeps parsed buffered callbacks separate from normal `DataChanged`; true multi-sample decode still needs a runtime/source condition that emits the native buffered callback. Candidates include a runtime/historian setting outside plain `SetBufferedUpdateInterval`, object deployment state, or a source that emits native buffered sample batches rather than ordinary write callbacks. | +| `MxStatus` / `MXSTATUS_PROXY` mapping | Partial / detail catalog broadened | Reflection over `ArchestrA.MXAccess.dll` confirms the managed enum numeric values for `MxStatusCategory`, `MxStatusSource`, and `MxDataType`. Basic status/detail/quality fields are decoded from callbacks. `MxStatus.DataChangeOk` and `MxStatus.WriteCompleteOk` are modeled from observed success paths, and `MxStatus.DetailText` now includes the installed English `Lmx.aaDCT` detail catalog entries for details `16`-`61`, `541`, `542`, and `8017`. Nonzero completion-only operation statuses are still preserved rather than guessed, starting with wrong-type write completion `0x41` from captures `089`, `092`, and `093`; the exact MXAccess status category/source/detail mapping for completion-only bytes still needs a native public event or decompiled mapping source. | +| `MxDataType` coverage | Partial | Core bool/int/float/double/string/time and observed array forms are covered for writes and callbacks. Live GR type inventory found only two extra deployed/configured types on this node: `ElapsedTime` (`286` attributes) and `InternationalizedString` (`70` attributes). Callback decode support covers observed zero/empty forms. Captures `095` and `096` show MXAccess writing `ElapsedTime` with an `Int32` caller value as integer wire kind `0x02`, and writing `InternationalizedString` with a string caller value as normal string wire kind `0x05`; `GalaxyTagMetadata.ProjectWriteValue` now mirrors those value-based projections while `TryGetValueKind` remains false for broad type classification. Capture `098` confirms the x86 MXAccess COM automation path can project a requested `SAFEARRAY VT_BOOL` differently than the caller's original .NET `bool[]`; the managed encoder uses direct per-element 16-bit VARIANT_BOOL encoding for native .NET callers and preserves the x86 projection only as a golden compatibility case. `ReferenceType`, `StatusType`, enums, qualified structs, and big string are not present in the current GR inventory and remain unsupported. | +| Direct `Read` | Partial | `MxNativeSession.ReadAsync` is implemented as transient subscribe/read/unsubscribe. No distinct direct NMX read body has been decoded. Determine if MXAccess has a direct read path or only returns initial subscription values. | +| Browse / resolve | Partial | GR-backed browse exists and avoids x86 LMX. `ResolveAsync` now accepts `Object.Attribute`, `Object.Primitive.Attribute`, and dotted primitive attribute references such as `TestMachine_001.TestAlarm001.Alarm.TimeDeadband`, matching observed MXAccess AddItem behavior. It is still not a full MXAccess browsing clone because MXAccess exposes add-item resolution rather than a public browse method; browse needs filtering/shape hardening for OPC UA needs. | +| Connection lifecycle | Partial / explicit recovery live validated | Basic activate/connect/register/unregister and subscriber cleanup exist. `ManagedNmxService2Client` now exposes `SetHeartbeatSendInterval`, and `MxNativeClientOptions` has opt-in `HeartbeatTicksPerBeat`/`HeartbeatMaxMissedTicks` settings. The .NET 10 x64 probe `--probe-session-heartbeat --heartbeat-ticks=5 --heartbeat-max-missed=3` successfully opened a session, registered, set heartbeat, and disposed cleanly against local NmxSvc. `MxNativeSession.RecoverConnection()` now explicitly rebuilds the service client, re-registers the local engine/callback, reapplies heartbeat, reconnects publisher engines, and replays normal/buffered subscriptions. `RecoverConnectionAsync` adds an explicit caller-controlled retry loop using `MxNativeRecoveryPolicy`; automatic write retry is intentionally not enabled to avoid duplicate writes. Recovery events now report attempt start, failed attempt with exception/retry intent, and completion on both `MxNativeSession` and `MxNativeCompatibilityServer`. Callback/status/reference/unparsed and compatibility data/write/buffered event payloads carry `IsDuringRecovery`; current policy is pass-through with marking rather than suppression. `--probe-session-recover --recover-attempts=2 --recover-delay-ms=100 --tag=TestChildObject.TestInt --value=323` live validated subscribe, one started event, one completed event, preserved subscription count, and write-through on the recovered session. `--probe-session-recover-multi` replayed four active subscriptions and observed zero recovery-window callbacks while preserving all subscriptions. With `--recover-concurrent-writes`, a separate writer session wrote `TestChildObject.TestInt` values `330`-`334`; the recovering session preserved all four subscriptions and observed two data callbacks with `IsDuringRecovery=true`. The remaining production piece is cleanup/timeout behavior after partial recovery failures. | +| Diagnostics/errors | Partial | HRESULTs and some callback statuses are surfaced. Need stable exception/status model equivalent to MXAccess status structs and detail text. | + +## Remaining hard pieces + +1. Broaden AddItem/value-subscription validation beyond the first proven + managed value path. Current managed x64 register/connect/advise/write + transport works, native `0x1f` transfer kind/property fields are matched, and + `TestChildObject.ShortDesc` now returns the same value-bearing callback as + x86 MXAccess. Need matrix validation for bool/int/float/double/string, + arrays, elapsed time, multi-item subscriptions, and same-session write + updates. +2. Harden the MXAccess-compatible handle/session layer: live multi-item + write-complete ordering and event args that more closely mirror + `OnDataChange`, `OnWriteComplete`, and `OperationComplete`. Stale item + handles, invalid server handles, and cross-server item handles now match + native `0x80070057` behavior for the observed scalar paths. +3. Decode remaining security/user edge cases: any native scenario where + `WriteSecured` does not hit its item-record flag rejection, native captures + for the remaining scalar/array `WriteSecured2` value kinds, and + security-enabled `AuthenticateUser` password/hash + semantics, permission-denied, and verifier-denied cases. Boolean + `WriteSecured2` is now implemented and live validated for the secured and + verified tags deployed on this node. `ArchestrAUserToId` mirrors direct + MXAccess behavior observed on this node; GR profile lookup remains separate + metadata. +4. Decode lifecycle/control APIs: plain `Advise`, deeper `AddItem2` context + behavior, buffered callback delivery, and secured write variants. Current + Ghidra output proves native buffered delivery is the normal `OnDataChange` + callback path plus a buffered item-record branch to + `OnBufferedDataChange`; the managed compatibility layer now keeps buffered + callbacks separate from normal `DataChanged`. Still missing: a live + buffered sample payload that validates multi-sample value/quality/timestamp + decoding. +5. Decide whether strict x86 MXAccess COM quirks, especially the + `SAFEARRAY VT_BOOL` projection observed in capture `098`, should be exposed + as an opt-in compatibility mode rather than the default native .NET 10 + behavior. + +## Reference Resolver Notes + +Ghidra export `Lmx.dll.reference-resolver-decompile.md` narrows the remaining +value-subscription gap to `CReferenceStringResolutionService`: + +- `ProcessPendingClientRequests` builds `0x11` bind responses for pending + reference strings. It checks whether the current GR deploy/config timestamps + make a local bind usable through `FUN_1008af90`; otherwise it binds the + reference through the platform service and sends a response through + `FUN_1010ad00`. +- `FUN_1008af90` compares the reason/status detail against the subscribed GR + timestamps. Details `3`, `4`, and `8` are checked against + `TimeOfLastDeploy`; detail `6` is checked against + `TimeOfLastConfigChange`. This matches the two metadata references in the + observed pre-advise body. +- A later resolver branch sends the metadata request for + `DevPlatform.GR.TimeOfLastDeploy` and + `DevPlatform.GR.TimeOfLastConfigChange`, then attempts to read those values + back through a COM interface at vtable offset `0x14`. If the returned status + is not usable, it logs `value of m_hRefGRTimeOfLastDeploy can't be used` or + `value of m_hRefGRTimeOfLastConfigChange can't be used`. +- The successful branch calls `OnSetAttributeResult` directly after acquiring + another COM class object, then removes the pending reference request. This + local callback/state mutation is a likely missing piece in the managed-only + reproduction: sending the adapter-visible metadata request yields the same + callbacks, but does not execute the LMX in-process state update that MXAccess + gets through its `PreboundReference`/resolver objects. +- Frida captures `104` and `105` fixed the earlier stack-argument hook bug and + show the native prebind/register path returning public prebound and reference + handles of `1`. More importantly, `IMxReference.GetMxHandle` showed the + runtime value handle for `TestChildObject.ShortDesc` uses property id `10`, + not the GR `mx_attribute_category` value `11`, and native `0x1f` advise uses + transfer kind `ItemControl` (`2`). Matching those two fields in managed code + restored the `0x05` value callback for `ShortDesc` without needing to execute + the in-process `PreboundReference` objects. +5. Complete callback/status parity: string-array callback captures, + failure/error records, multi-item write-complete arrays, operation-complete mapping, + buffered data-change payloads, and exact `MXSTATUS_PROXY[]` conversion. +6. Expand type coverage beyond the OPC-UA-critical primitives: more elapsed and + internationalized-string success/failure captures, plus reference/status/enums, + qualified structs, and big strings if they appear in a target Galaxy. +7. Add integration tests against `NmxSvc.exe` using the existing + `MxTraceHarness` captures as golden fixtures, then add live facade probes + gated on managed NTLM environment variables. + +## Protocol references for the managed ORPC layer + +Microsoft's Open Specifications define the pieces this project now needs to +replace in managed code: + +| Topic | Reference | +| --- | --- | +| DCOM/ORPC overview | | +| OBJREF header | | +| STDOBJREF fields | | +| OBJREF_STANDARD | | +| DUALSTRINGARRAY | | +| ORPC invocation model | | +| `IRemUnknown::RemQueryInterface` | | +| Windows RPC details | | + +## Non-goals for the managed-safe path + +- Loading `LmxProxy.dll`, `NmxAdptr.dll`, or `NmxSvcps.dll` in the .NET 10 + process. +- Requiring a 32-bit sidecar process for normal operation. +- Generating a new native x64 proxy/stub DLL unless a separate fallback is + explicitly accepted. diff --git a/docs/Ghidra-Headless-Analysis.md b/docs/Ghidra-Headless-Analysis.md new file mode 100644 index 0000000..86b072c --- /dev/null +++ b/docs/Ghidra-Headless-Analysis.md @@ -0,0 +1,328 @@ +# Ghidra headless analysis + +This note captures the headless Ghidra pass used to identify native MX/LMX/NMX +function boundaries and build Frida hook targets. + +## Tooling + +Ghidra was reused from: + +```text +C:\Users\dohertj2\Desktop\focas\tools\ghidra_12.0.4_PUBLIC +``` + +Java was available but not on `PATH`, so headless commands set: + +```text +JAVA_HOME=C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot +``` + +The AVEVA binaries were staged under a path without spaces: + +```text +analysis\ghidra\input +``` + +The headless post-script is: + +```text +analysis\ghidra\scripts\MxNmxExport.java +``` + +It exports metadata, not full decompiled source: + +```text +analysis\ghidra\exports\*.ghidra.md +analysis\ghidra\exports\*.functions.tsv +analysis\ghidra\exports\*.string-refs.tsv +analysis\ghidra\exports\*.call-refs.tsv +``` + +## Static targets + +High-value functions from `LmxProxy.dll`: + +| Function | RVA | Evidence | +| --- | ---: | --- | +| `CLMXProxyServer::Write` variant A | `0x12c0c` | references `CLMXProxyServer::Write - Server Handle` | +| `CLMXProxyServer::Write` variant B | `0x13280` | references `CLMXProxyServer::Write - Server Handle` | +| `CLMXProxyServer::WriteSecured` variant A | `0x12f24` | references secured-write strings | +| `CLMXProxyServer::WriteSecured` variant B | `0x135fe` | references secured-write strings | +| `CLMXProxyServer::AdviseSupervisory` | `0x142b4` | references advise-supervisory strings | + +High-value functions from `NmxAdptr.dll`: + +| Function | RVA | Evidence | +| --- | ---: | --- | +| `CNmxAdapter::TransferData` | `0x10996` | references `CNmxAdapter::TransferData` strings | +| `ProcessDataReceived` | `0x112da` | references invalid NMX request/response strings | +| `CNmxAdapter::PutRequest` | `0x15169` | references `CNmxAdapter::PutRequest` strings | +| `CNmxAdapter::PutRequestEx` | `0x159c3` | references `CNmxAdapter::PutRequestEx` strings | + +`LmxProxy.dll` has no direct Winsock callsites in the exported call refs. It is +COM, `VARIANT`, `BSTR`, and `SAFEARRAY` heavy. `NmxAdptr.dll` and `NmxSvc.exe` +contain the relevant NMX transport/body functions. + +`NmxSvcps.dll` is confirmed as a MIDL proxy/stub DLL. Its exports call: + +```text +NdrDllGetClassObject +NdrDllCanUnloadNow +NdrDllRegisterProxy +NdrDllUnregisterProxy +NdrCStdStubBuffer_Release +``` + +## Runtime hook result + +Frida hook script: + +```text +analysis\frida\mx-nmx-trace.js +analysis\scripts\run_frida_mx_trace.ps1 +analysis\scripts\extract_frida_trace.py +``` + +Successful traces: + +```text +captures\022-frida-write-test-int-sequence-106-108 +captures\023-frida-write-test-int-sequence-109-111 +captures\024-frida-write-test-bool-sequence +captures\025-frida-write-test-float-sequence +captures\026-frida-write-test-double-sequence +captures\027-frida-write-test-string-sequence +captures\028-frida-write-test-datetime-sequence +captures\029-frida-write-test-int-array +captures\030-frida-write-test-bool-array +captures\031-frida-write-test-float-array +captures\032-frida-write-test-double-array +captures\033-frida-write-test-string-array +captures\035-frida-write-test-datetime-array-full +captures\036-frida-write-secured-test-int +captures\037-frida-write-secured2-test-int +captures\038-frida-write-secured-protectedvalue +captures\039-frida-write-secured-verified-protectedvalue1 +captures\040-frida-write-normal-secured-protectedvalue +captures\041-frida-write-normal-verified-protectedvalue1 +captures\042-frida-write2-test-int-timestamp +captures\043-frida-loopback-write-test-int-115 +captures\044-frida-loopback-write-test-int-123456789 +``` + +Trace `023` proves the scalar write value is visible before the localhost +transport. Traces `024` through `028` extend that result across bool, float, +double, string, and datetime writes. + +At `CLMXProxyServer::Write` variant A: + +| Field | Observed value | +| --- | --- | +| `args[1]` | session handle `1` | +| `args[2]` | item handle `1` | +| `args[3]` | `0x3`, consistent with `VT_I4` | +| `args[5]` | requested int value: `0x6d`, `0x6e`, `0x6f` | +| `args[7]` | user/security id `1` | + +At `CNmxAdapter::PutRequest`: + +| Field | Observed value | +| --- | --- | +| `args[6]` | body size `0x28` / `40` | +| `args[7]` | body pointer | +| body offset `18` | requested int value as little-endian `int32` | + +The repeated 40-byte write body shape is: + +```text +37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 +00 02 ff ff 00 00 00 00 00 00 +00 00 c9 14 b1 08 +``` + +At `CNmxAdapter::TransferData`, the same 40-byte body is wrapped in an 86-byte +buffer. The scalar value appears at offset `64`, which is `46 + 18`. + +At `CNmxAdapter::ProcessDataReceived`, the callback/update body for the write +value is 88 bytes and carries the scalar value at offset `84`. + +Generated parser output: + +```text +captures\023-frida-write-test-int-sequence-109-111\frida-events.tsv +``` + +Value-hit summary from that TSV: + +| Function | Body size | Hit | +| --- | ---: | --- | +| `CNmxAdapter::PutRequest` | `40` | `109@18`, `110@18`, `111@18` | +| `CNmxAdapter::TransferData` | `86` | `109@64`, `110@64`, `111@64` | +| `CNmxAdapter::ProcessDataReceived` | `88` | `109@84`, `110@84`, `111@84` | + +## Write-body matrix + +The machine-readable matrix is: + +```text +analysis\frida\write-body-matrix.tsv +``` + +Observed write body encodings: + +| Type | COM carrier | `PutRequest` | `TransferData` | `ProcessDataReceived` | Encoding notes | +| --- | --- | --- | --- | --- | --- | +| `int` | `VT_I4` / `0x3`, `args[5]` | size `40`, value offset `18` | size `86`, value offset `64` | size `88`, value offset `84` | little-endian `int32` | +| `bool` | `VT_BOOL` / `0xb`, `args[5]` | size `37`, value offset `18` | size `83`, value offset `64` | size `85`, value offset `84` | true is `ff ff ff 00` in the write body and `ff` in the data-change body; false is `00 ff ff 00` and `00` | +| `float` | `VT_R4` / `0x4`, `args[5]` | size `40`, value offset `18` | size `86`, value offset `64` | size `88`, value offset `84` | little-endian `float32` | +| `double` | `VT_R8` / `0x5`, `args[5]`/`args[6]` | size `44`, value offset `18` | size `90`, value offset `64` | size `92`, value offset `84` | little-endian `float64` | +| `string` | `VT_BSTR` / `0x8` | size `58` or `60`, value offset `26` | size `104` or `106`, value offset `72` | size `106` or `108`, value offset `92` | UTF-16LE string payload; body size follows string length | +| `datetime` | `VT_DATE` / `0x7`, `args[5]`/`args[6]` | size `86`, value offset `26` | size `132`, value offset `72` | size `98`, value offset `88` | outbound write uses a UTF-16LE display string like `4/25/2026 2:30:00 AM`; callback/update uses FILETIME | + +The repeated numeric write bodies show a stable 18-byte prefix, scalar slot, and +trailing status/counter fields. Variable-width types move the value to offset +`26`, leaving an 8-byte descriptor before the UTF-16LE data. + +## Array write-body matrix + +The machine-readable array matrix is: + +```text +analysis\frida\write-array-body-matrix.tsv +``` + +Observed array write body encodings: + +| Type | COM carrier | `PutRequest` | `TransferData` | `ProcessDataReceived` | Encoding notes | +| --- | --- | --- | --- | --- | --- | +| `int[]` | `SAFEARRAY VT_I4` / `0x2003` | size `86`, first value offset `28` | size `132`, first value offset `74` | size `134`, first value offset `94` | descriptor kind `0x42`, count `10`, width `4`, packed little-endian `int32` | +| `bool[]` | `SAFEARRAY VT_BOOL` / `0x200b` | size `66`, first value offset `28` | size `112`, first value offset `74` | size `114`, first value offset `94` | descriptor kind `0x41`, count `10`, width `2`; capture `098` confirmed the x86 COM automation path can project a requested non-repeating .NET `bool[]` into a paired/shifted VARIANT_BOOL wire payload | +| `float[]` | `SAFEARRAY VT_R4` / `0x2004` | size `86`, first value offset `28` | size `132`, first value offset `74` | size `134`, first value offset `94` | descriptor kind `0x43`, count `10`, width `4`, packed little-endian `float32` | +| `double[]` | `SAFEARRAY VT_R8` / `0x2005` | size `126`, first value offset `28` | size `172`, first value offset `74` | size `174`, first value offset `94` | descriptor kind `0x44`, count `10`, width `8`, packed little-endian `float64` | +| `string[]` | `SAFEARRAY VT_BSTR` / `0x2008` | size `256`, first string bytes at offset `41` | size `302`, first string bytes at offset `87` | size `304`, first string bytes at offset `107` | descriptor kind `0x45`; each element is a length-prefixed scalar string-style UTF-16LE record | +| `datetime[]` | `SAFEARRAY VT_DATE` / `0x2007` | size `596`, first string bytes at offset `41` | size `642`, first string bytes at offset `87` | size `214`, first FILETIME at offset `94` | outbound values are per-element UTF-16LE display strings; callback/update uses packed FILETIME records | + +Array bodies use an 11-byte descriptor beginning at body offset `17`: + +```text +kind_byte 00 00 00 00 element_count:uint16 element_width_or_code:uint32 +``` + +Packed numeric array values begin at body offset `28`. String and datetime +arrays also begin their element records at offset `28`, with the first actual +UTF-16LE character at offset `41`. + +## Write mode matrix + +The machine-readable write-mode matrix is: + +```text +analysis\frida\write-mode-matrix.tsv +``` + +Findings: + +| Scenario | Result | +| --- | --- | +| `WriteSecured` against `TestChildObject.TestInt` | rejected before value-bearing `PutRequest` with `0x80004021` | +| `WriteSecured2` against `TestChildObject.TestInt` | rejected before value-bearing `PutRequest` with `E_INVALIDARG` | +| `WriteSecured` against `TestMachine_001.ProtectedValue` (`SecuredWrite`) | rejected before value-bearing `PutRequest` with `0x80004021` | +| `WriteSecured` against `TestMachine_001.ProtectedValue1` (`VerifiedWrite`) | rejected before value-bearing `PutRequest` with `0x80004021` | +| normal `Write` against `ProtectedValue` with fourth argument `2` | succeeds; same bool body shape as scalar bool writes | +| normal `Write` against `ProtectedValue1` with fourth argument `3` | succeeds; same bool body shape as scalar bool writes | +| `Write2` against `TestChildObject.TestInt` | succeeds; `PutRequest` size remains `40`, value stays at offset `18`, FILETIME appears at offset `24` | + +Implication: for MXAccess public automation, the supported secured/verified +route is the regular `Write` method with the fourth argument set to the Galaxy +security classification. The public `WriteSecured*` methods are present in the +type library but did not produce a supported value-bearing request in these +captures. + +Later authenticated captures and headless decompile refined this: + +- `analysis\ghidra\exports\LmxProxy.dll.write-secured-decompile.md` decompiles + `FUN_10012f24` (`WriteSecured`) and `FUN_100135fe` (`WriteSecured2`). +- `WriteSecured` performs an extra item-record byte check at offset `0x0f` and + returns `0x80004021` when that byte is nonzero. The secured and verified bool + tags on this node hit that branch even after `AuthenticateUser` succeeds. +- `WriteSecured2` skips that item-record flag check. It resolves current and + verifier user handles to 16-byte authenticator tokens, copies both the value + and timestamp variants, and calls the downstream vtable slot that emitted the + observed NMX `0x38` body in captures `113`-`116`. +- The shared user-token lookup branch returns `0x80070057` when the user handle + is not mapped, explaining the earlier unauthenticated `WriteSecured2` failure + against `TestChildObject.TestInt`. + +## Transport correlation + +Combined Frida plus loopback capture: + +```text +captures\043-frida-loopback-write-test-int-115 +captures\044-frida-loopback-write-test-int-123456789 +analysis\scripts\run_frida_loopback_capture.ps1 +analysis\scripts\map_frida_to_tcp.py +captures\043-frida-loopback-write-test-int-115\frida-to-tcp-map.tsv +captures\044-frida-loopback-write-test-int-123456789\frida-to-tcp-map.tsv +``` + +For the same write of `TestChildObject.TestInt = 115`, the mapper extracted the +exact Frida `PutRequest`, `TransferData`, and callback bodies and searched the +reassembled TCP streams. Result: + +| Needle | TCP result | +| --- | --- | +| raw `int32` value `115` | present in several streams, including `::1:49704`, but surrounding bytes show DCE/RPC call IDs/metadata and unrelated product records | +| exact 40-byte `PutRequest` body | not found | +| exact 86-byte `TransferData` body | not found | +| exact 88-byte callback body | not found | + +Capture `044` repeats the test with `123456789`, which avoids DCE/RPC call-ID +ambiguity. That raw scalar is absent from the full pcap payload scan, the +`::1:49704` DCE/RPC stubs, and the mixed `127.0.0.1:57415 <-> 57433` stream. + +This means the native adapter bodies are not copied verbatim onto TCP, and the +write value is not exposed as a plain little-endian scalar in the transport for +the distinctive-value capture. The next transport task is to decode the +DCE/RPC/NDR layer and the mixed local stream messages structurally. + +## Managed codec artifact + +The first .NET 10 managed implementation artifact is: + +```text +src\MxNativeCodec\MxNativeCodec.csproj +src\MxNativeCodec.Tests\MxNativeCodec.Tests.csproj +``` + +This is intentionally template-based. It preserves unknown tag/session/header +fields from an observed `PutRequest` body, then rewrites the typed value slot and +write index. The tests round-trip the real Frida bytes for bool, int, float, +double, string, datetime, timestamped `Write2` int, and the observed +int/bool/float/double/string array write bodies. + +Verification command: + +```text +dotnet run --project src\MxNativeCodec.Tests\MxNativeCodec.Tests.csproj -c Release +``` + +The harness also now accepts typed array writes: + +```text +--type=int[] --value="1;2;3" +--type=string[] --value="A;B;C" +``` + +For multiple whole-array writes in one session, `--values=` can use `|` between +array values so element commas are not ambiguous. + +## Implication + +The prior pcap-only decode showed local stream framing but did not isolate the +application scalar. Headless Ghidra plus Frida closes that gap: the native NMX +adapter receives compact bodies where scalar and string/date values are plainly +encoded before they enter localhost transport. The next implementation task is +to turn this matrix into encoder/decoder tests, then broaden the same approach +to arrays, quality/status responses, tag binding messages, and secured-write +variants. diff --git a/docs/Loopback-Protocol-Findings.md b/docs/Loopback-Protocol-Findings.md new file mode 100644 index 0000000..685ac5d --- /dev/null +++ b/docs/Loopback-Protocol-Findings.md @@ -0,0 +1,267 @@ +# Loopback protocol findings + +This note captures the first Npcap loopback decode pass for the MXAccess to +LMX/NMX path. + +## Capture set + +The repeatable capture runner is: + +```text +analysis\scripts\run_loopback_capture.ps1 +``` + +It starts `dumpcap` on the Npcap loopback adapter and runs the x86 MXAccess +harness: + +```text +src\MxTraceHarness\bin\Release\net481\MxTraceHarness.exe +``` + +Focused loopback captures: + +| Folder | Scenario | +| --- | --- | +| `captures\013-loopback-subscribe-scalars` | subscribe `TestBool`, `TestInt`, `TestString` | +| `captures\014-loopback-subscribe-array-bracketed` | subscribe `TestStringArray[]` | +| `captures\015-loopback-subscribe-invalid` | subscribe invalid reference | +| `captures\016-loopback-write-test-int-advised` | advised same-value write to `TestInt` | + +Per-capture generated files: + +| File | Purpose | +| --- | --- | +| `loopback.pcapng` | raw Npcap loopback capture | +| `harness.log` | timestamped MXAccess method and callback log | +| `dcerpc-49704.tsv` | tshark DCE/RPC frame index for the NMX service port | +| `nmx-conversations.tsv` | extracted IPv6 conversations involving port `49704` | +| `nmx-payload-packets.tsv` | payload packet index for the selected `49704` conversation | +| `nmx-stream-*.bin` | reassembled directional payloads for the selected `49704` conversation | +| `tcp-conversations.tsv` | all TCP payload conversations ranked by byte count | +| `tcp-payload-packets.tsv` | payload packet index for the top TCP conversations | +| `tcp-stream-*.bin` | reassembled directional payloads for the top TCP conversations | + +Cross-capture summaries: + +```text +analysis\scripts\extract_nmx_loopback.py +analysis\scripts\extract_tcp_conversations.py +analysis\scripts\decode_tcp_payload_packets.py +analysis\scripts\decode_mixed_local_stream.py +analysis\scripts\summarize_dcerpc.py +analysis\network\dcerpc-loopback-summary.tsv +analysis\network\write-window-tcp-payloads.tsv +``` + +## DCE/RPC service path + +Wireshark decodes the main `::1: <-> ::1:49704` traffic as DCE/RPC. +The captures show these DCE/RPC interface UUIDs: + +| UUID | Observed use | +| --- | --- | +| `4e0c90df-e39d-4164-a421-ace89484c602` | initial bind context, opnum `0` calls | +| `1981974b-6bf7-46cb-9640-0260bbb551ba` | altered context, main opnums `0`, `2`, `3`, `5` | + +The UUIDs were not present as direct keys under the checked COM registry areas: + +```text +HKCR\Interface +HKCR\Wow6432Node\Interface +HKCR\CLSID +HKCR\Wow6432Node\CLSID +HKCR\TypeLib +HKCR\Wow6432Node\TypeLib +``` + +This makes `NmxSvcps.dll` and `WWProxyStub.dll` high-value next targets. They +are likely proxy/stub components, but their interfaces are not exposed through +the simple COM registry lookup above. + +## DCE/RPC shape + +For good scalar subscribe, good array subscribe, and successful advised write, +the main `49704` DCE/RPC shape is identical: + +```text +165 request/response pairs on ctx 1, opnum 3 +10 request/response groups on ctx 0 opnum 0, ctx 1 opnum 0, ctx 1 opnum 2 +3 request/response pairs on ctx 1, opnum 5 +``` + +The invalid subscribe adds one extra group: + +```text +176 request/response pairs on ctx 1, opnum 3 +11 request/response groups on ctx 0 opnum 0, ctx 1 opnum 0, ctx 1 opnum 2 +3 request/response pairs on ctx 1, opnum 5 +``` + +Interpretation: invalid item resolution does not fail at `AddItem`; it drives +additional NMX/RPC activity during `AdviseSupervisory`, matching the harness +callbacks where invalid names return configuration errors only after advise. + +## Write path split + +The successful write capture has the standard main `49704` DCE/RPC conversation: + +```text +::1:55840 <-> ::1:49704 +803 frames, about 84 kB +``` + +It also has a short additional `49704` DCE/RPC conversation: + +```text +::1:49768 <-> ::1:49704 +192 frames, about 19 kB +``` + +The harness write timestamps were: + +```text +2026-04-25T05:13:58.0479762Z mx.write.begin +2026-04-25T05:13:58.0489758Z mx.write.end +2026-04-25T05:13:58.2561934Z mx.event.write-complete +``` + +With the pcap first frame at epoch `1777094027.708322300`, this places the +write call around relative time `10.34s` and the write-complete callback around +relative time `10.55s`. + +No DCE/RPC frames on port `49704` occur in the `10.30s` to `10.62s` window. +Instead, the active payload in that exact window is primarily TCP stream `0`: + +```text +127.0.0.1:57415 <-> 127.0.0.1:57433 +``` + +That stream is not decoded by Wireshark as DCE/RPC. Its payload has a compact +binary framing pattern with frequent 12-byte control messages and small +length-prefixed payloads. Example payload prefixes around the write window +include little-endian values such as: + +```text +1a 00 00 00 ... +16 00 00 00 ... +22 00 00 00 ... +1e 00 00 00 ... +3f 00 00 00 ... +``` + +Interpretation: the native implementation probably uses DCE/RPC for service +activation/session coordination and a separate local binary channel for at +least part of the advised update/write-complete path. The managed replacement +must account for both layers. + +The stream has been extracted as: + +```text +captures\016-loopback-write-test-int-advised\tcp-stream-127_0_0_1_57415-to-127_0_0_1_57433.bin +captures\016-loopback-write-test-int-advised\tcp-stream-127_0_0_1_57433-to-127_0_0_1_57415.bin +``` + +The stream is now decoded with packet-boundary and mixed-record helpers: + +```text +analysis\scripts\decode_tcp_payload_packets.py +analysis\scripts\decode_mixed_local_stream.py +analysis\scripts\analyze_write_window.py +analysis\scripts\diff_write_window_records.py +``` + +The mixed-record model is: + +- 12-byte control records: `int32 code_or_status`, `int32 token_low`, + `int32 token_high`. +- Data records: `uint32 body_length`, followed by the data body. +- A positive control value can announce one or more following data records. +- `-1` appears as acknowledgement/status. +- `-2` appears as a bidirectional status/control marker around write windows. + +Usable value-change write captures added after this decode pass: + +| Folder | Result | +| --- | --- | +| `captures\017-loopback-write-test-int-100` | `TestInt` changed `99 -> 100` | +| `captures\020-loopback-write-test-int-102` | `TestInt` changed `101 -> 102` | +| `captures\021-loopback-write-test-int-sequence-103-105` | same-session writes `103`, `104`, `105` | + +The detailed COM contract and managed-client implication note is: + +```text +docs\NMX-COM-Contracts.md +``` + +## Same-session write sequence + +`captures\021-loopback-write-test-int-sequence-103-105` writes three int values +through one registered/advised MXAccess session: + +```text +103 at 2026-04-25T05:53:06.9746508Z +104 at 2026-04-25T05:53:07.6963047Z +105 at 2026-04-25T05:53:08.4180133Z +``` + +Each write produced a good data-change callback followed by a good +write-complete callback. The top local payload stream remained: + +```text +127.0.0.1:57415 <-> 127.0.0.1:57433 +``` + +The analyzer output is: + +```text +captures\021-loopback-write-test-int-sequence-103-105\write-window-mixed-records.tsv +analysis\network\write-window-body-diff-021-w0-vs-w1.tsv +analysis\network\write-window-body-diff-021-w1-vs-w2.tsv +``` + +Within the `-0.10s` to `+0.12s` write-complete windows, the repeated records are +the same families already seen in the single-write captures: + +```text +54 8f 63 40 e2 5e 31 40 ... 26-byte data body +1c 21 18 d0 c4 6f 33 bb ... 34-byte data body +98 04 33 cb 0c b4 7c 38 ... 67-byte data body +44 6b 99 d8 ec 1b bd b5 ... 52-byte data body +55 ce ff 62 b2 1b 3a 50 ... 30-byte data body +``` + +The raw int values `103`, `104`, and `105` were not isolated from the pcap-only +mixed stream decode. The most consistent byte changes in that layer are +counter-like fields at offset `14` in the 26-byte and 30-byte data bodies, +offset `0` in the 22-byte and 26-byte response bodies, and related token fields +in adjacent 12-byte controls. Those fields advance with the local message +sequence and should not be treated as the application value. + +The application value was later isolated one layer higher with Frida hooks +placed using headless Ghidra RVAs. See: + +```text +docs\Ghidra-Headless-Analysis.md +captures\023-frida-write-test-int-sequence-109-111\frida-events.tsv +``` + +## Plaintext result + +The selected `49704` stream binaries did not contain the test tag names in +ASCII or UTF-16LE. The captured protocol is therefore not a simple plaintext +tag-reference transport. + +## Current reconstruction hypothesis + +The implementation path is: + +```text +ArchestrA.MXAccess.dll + -> LmxProxy.dll COM in-proc server + -> local DCE/RPC to NmxSvc.exe on ::1:49704 + -> local binary channels for request/callback data + -> LMX/NMX runtime and Galaxy-derived security/type metadata +``` + +The next useful work is to decode the proxy/stub interfaces and the local +binary stream structure, then tie decoded calls back to MXAccess harness events. diff --git a/docs/MXAccess-Public-API.md b/docs/MXAccess-Public-API.md new file mode 100644 index 0000000..e26c9ba --- /dev/null +++ b/docs/MXAccess-Public-API.md @@ -0,0 +1,523 @@ +# MXAccess public API surface + +Source of truth: `C:\Program Files (x86)\ArchestrA\Framework\Bin\ArchestrA.MXAccess.dll` + +Assembly identity: + +- Name: `ArchestrA.MxAccess` +- Version: `3.2.0.0` +- Public key token: `23106a86e706d0ae` +- File product string: `Assembly imported from type library 'LMXPROXYLib'.` +- Processor architecture in metadata: `None`; practical use is still x86 because the COM class is a 32-bit in-proc server. + +## COM class + +`ArchestrA.MxAccess.LMXProxyServerClass` + +- CLSID: `{C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC}` +- ProgID: `LMXProxy.LMXProxyServer.1` +- Version-independent ProgID: `LMXProxy.LMXProxyServer` +- Registered server: `C:\Program Files (x86)\ArchestrA\Framework\Bin\LmxProxy.dll` +- Registry location: `HKCR\Wow6432Node\CLSID\{C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC}` +- Threading model: `Apartment` + +Because the server is under `Wow6432Node` and registered as an in-process DLL, +64-bit callers cannot instantiate it directly. + +## Interface lineage + +`ILMXProxyServer5` extends prior versions without changing the older method +signatures: + +- `ILMXProxyServer` - original register/add/advise/write/auth API. +- `ILMXProxyServer2` - adds `ArchestrAUserToId`. +- `ILMXProxyServer3` - adds `AddItem2`. +- `ILMXProxyServer4` - adds `Write2`, `WriteSecured2`, `Suspend`, `Activate`, `AdviseSupervisory`. +- `ILMXProxyServer5` - adds buffered item support. + +Interface GUIDs: + +- `ILMXProxyServer`: `{CCE67FB7-EAFD-4367-9212-617043BF126D}` +- `ILMXProxyServer2`: `{020A8A87-69C5-497F-A893-B629E669FBFF}` +- `ILMXProxyServer3`: `{57D006B6-F25E-4654-A81E-BCBAFD60FE59}` +- `ILMXProxyServer4`: `{9DC0D5C1-9371-4E84-86F8-7091D316A66C}` +- `ILMXProxyServer5`: `{ECEFF506-A752-46E3-9E31-0A8E257C9926}` + +## Methods + +| Method | Purpose inferred from API and current usage | +| --- | --- | +| `Register(string pClientName) -> int` | Opens a client session and returns an LMX server handle. | +| `Unregister(int hLMXServerHandle)` | Closes the client session. | +| `AddItem(int hLMXServerHandle, string strItemDef) -> int` | Resolves/registers an item reference and returns an item handle. | +| `RemoveItem(int hLMXServerHandle, int hItem)` | Releases an item handle. | +| `Advise(int hLMXServerHandle, int hItem)` | Subscribes to item updates. | +| `UnAdvise(int hLMXServerHandle, int hItem)` | Cancels item updates. | +| `Write(int hLMXServerHandle, int hItem, object pItemValue, int userId)` | Writes a value. In current code `userId` is used as security classification. | +| `WriteSecured(int hLMXServerHandle, int hItem, int currentUserId, int verifierUserId, object pItemValue)` | Secured/verified write path. | +| `AuthenticateUser(int hLMXServerHandle, string verifyUser, string verifyUserPsw) -> int` | Authenticates a user and returns a numeric id. | +| `ArchestrAUserToId(int hLMXServerHandle, string userIdGuid) -> int` | Maps ArchestrA user GUID to integer id. | +| `AddItem2(int hLMXServerHandle, string strItemDef, string strItemCtxt) -> int` | Adds an item with a separate context string. | +| `Write2(int hLMXServerHandle, int hItem, object pItemValue, object pItemTime, int userId)` | Timestamped write. | +| `WriteSecured2(...)` | Timestamped secured/verified write. | +| `Suspend(int hLMXServerHandle, int hItem, out MxStatus status)` | Suspends an item/reference. | +| `Activate(int hLMXServerHandle, int hItem, out MxStatus status)` | Activates a suspended item/reference. | +| `AdviseSupervisory(int hLMXServerHandle, int hItem)` | Supervisory subscription mode. This is what the existing OPC UA bridge uses. | +| `AddBufferedItem(int hLMXServerHandle, string strItemDef, string strItemCtxt) -> int` | Adds a buffered item. | +| `SetBufferedUpdateInterval(int hLMXServerHandle, int updateInterval)` | Sets buffered update cadence. | + +Reflection over the installed interop assembly confirms +`LMXProxyServerClass` exposes these 18 public methods plus the four public COM +event families: `OnDataChange`, `OnWriteComplete`, `OperationComplete`, and +`OnBufferedDataChange`. `Write2` and `WriteSecured2` expose their timestamp +argument as `object`/VARIANT. The .NET 10 compatibility facade keeps typed +`DateTime` overloads and also exposes object timestamp overloads for +API-shape parity. + +## Secured write capture status + +The current test node still does not produce a successful dedicated +`WriteSecured` wire path: + +- `captures\036-frida-write-secured-test-int`: `WriteSecured` returned + `0x80004021` before any NMX `0x37` write body was emitted. +- `captures\038-frida-write-secured-protectedvalue`: `WriteSecured` returned + `0x80004021` before any NMX `0x37` write body was emitted. +- `captures\039-frida-write-secured-verified-protectedvalue1`: `WriteSecured` + returned `0x80004021` before any NMX `0x37` write body was emitted. +- `captures\111-frida-write-secured-auth-protectedvalue` and + `captures\112-frida-write-secured-auth-verified-protectedvalue1`: + `AuthenticateUser` succeeded first, but `WriteSecured` still returned + `0x80004021` before any value-bearing body. +- `captures\037-frida-write-secured2-test-int`: `WriteSecured2` returned + `0x80070057` before any NMX write body was emitted. + +Headless Ghidra output in +`analysis\ghidra\exports\LmxProxy.dll.write-secured-decompile.md` shows why +these paths split: `WriteSecured` has an extra item-record flag check that can +return `0x80004021`; `WriteSecured2` skips that check and proceeds through the +authenticated timestamped writer when the user handles are mapped. + +Normal `Write` calls to the secured/verified public test attributes did emit +ordinary `0x37` write bodies and succeeded in captures `040` and `041`. That +means the managed implementation supports the successful observed path through +normal `Write`. + +Authenticated `WriteSecured2` now has successful captures and a managed encoder. +Captures `113`-`116` show command `0x38` over transfer kind `Write` (`3`) for +the boolean secured/verified tags in this GR. The body carries the current-user +authenticator token before the client name and the verifier token after the +client name. Live .NET 10 x64 probes succeeded for +`TestMachine_001.ProtectedValue` with no verifier and +`TestMachine_001.ProtectedValue1` with verifier handle `1`, both through the +low-level session API and through the handle-based compatibility facade. The +facade does not synthesize `OnWriteComplete` for this path because the native +successful captures did not show a public write-complete event. Capture `117` +adds authenticated `WriteSecured2` for integer `TestChildObject.TestInt`; it +uses the same generic timestamped-prefix rule, so the managed encoder is no +longer bool-only. Live managed probes also succeeded for float, double, string, +datetime, and the scalar-array value kinds. Native captures beyond bool and int +would still be useful as additional golden fixtures, but the managed encoder is +now generic over the existing timestamped write-body support. + +## User mapping capture status + +The x86 `MxTraceHarness` `user-map` scenario directly calls +`CLMXProxyServer.ArchestrAUserToId`. On this test node, it does not return the +Galaxy Repository `user_profile_id`: + +| Capture | Input GUID | MXAccess return | +| --- | --- | ---: | +| `captures\mxaccess-user-map-administrator.log` | `9222FBBA-53F4-457E-8B37-C93A9A250B4A` | `1` | +| `captures\mxaccess-user-map-systemengineer.log` | `626A355F-737E-45F8-9740-43372220DEAB` | `1` | +| `captures\mxaccess-user-map-defaultuser.log` | `F4A9B907-6E72-48AE-83B5-BBDE918C890F` | `1` | +| `captures\mxaccess-user-map-invalid.log` | `00000000-0000-0000-0000-000000000000` | `1` | + +The managed compatibility layer mirrors this observed behavior for +`ArchestrAUserToId`. GR profile lookup remains available separately through +`GalaxyRepositoryUserResolver`. + +## Authentication capture status + +`captures\mxaccess-authenticate-user-administrator-empty.log` shows +`AuthenticateUser(session, "Administrator", "")` returning user ID `1`. +Frida captures `087-frida-authenticate-administrator-empty` and +`088-frida-authenticate-invalid-empty` show both `Administrator` and +`DefinitelyNotAUser` returning `S_OK` and user ID `1` when the password is +empty on this dev node. The Frida hook records only password length, not +password content. + +Headless Ghidra decompile `analysis\ghidra\exports\LmxProxy.dll.auth-decompile.md` +shows `AuthenticateUser` calling the underlying user-authenticator object and, +when it receives a security token, incrementing a per-session user counter and +mapping that generated integer to the token GUID. This matches +`ArchestrAUserToId`: the public return value is a session-local MXAccess handle, +not the GR `dbo.user_profile.user_profile_id`. + +`MxNativeCompatibilityServer.AuthenticateUser` now mirrors the observed dev-node +behavior by validating the server handle and returning a session-local user +handle. It deliberately ignores and does not retain password material. A +security-enabled Galaxy still needs dedicated captures before password/hash +verification can be implemented safely. + +## AddItem2 context capture status + +`captures\mxaccess-additem2-testint-context.log` shows +`CLMXProxyServer.AddItem2(session, "TestInt", "TestChildObject")` succeeding and +returning item handle `1`. That confirms the simple relative-reference form used +by `MxNativeCompatibilityServer.AddItem2`: combine context and item definition +as `TestChildObject.TestInt` before GR resolution. More complex context strings +still need captures. + +## Advise capture status + +`captures\mxaccess-plain-advise-testint.log` shows the public +`CLMXProxyServer.Advise(session, item)` method succeeding for +`TestChildObject.TestInt`. Frida capture `099-frida-plain-advise-testint` +captures the lower-level body: plain `Advise` sends the same item-control +`0x1f` body shape as the earlier `AdviseSupervisory` capture for the same +scalar tag, including the same trailing option value `3`. The managed +compatibility layer therefore routes both public methods through the same +decoded subscription body for the observed scalar path. + +## Suspend/Activate capture status + +`captures\mxaccess-suspend-testint.log` and +`captures\mxaccess-activate-testint.log` show the public MXAccess methods +throwing `0x80070057` for `TestChildObject.TestInt` before a usable `MxStatus` +is returned. These captures establish that the test integer attribute is not a +valid suspend/activate scenario. A successful capture against the correct item +class is still required before implementing native NMX bodies for these methods. + +## Buffered item capture status + +The x86 harness now covers the public buffered APIs: + +- `captures\mxaccess-set-buffered-interval-1000.log` shows + `SetBufferedUpdateInterval(session, 1000)` succeeding. +- `captures\mxaccess-add-buffered-testint-context.log` shows + `AddBufferedItem(session, "TestInt", "TestChildObject")` succeeding and + returning item handle `1`. +- `captures\mxaccess-add-buffered-write-testint-context.log` shows that using + the buffered item handle with normal `Write` throws `0x80070057`. +- `captures\079-frida-add-buffered-advise-testint` and + `captures\080-frida-buffered-external-write-testint` show the advised + buffered registration body. MXAccess does not send the normal `0x1f` + item-control advise for the buffered handle. It sends an item-control `0x10` + reference registration for `TestInt.property(buffer)` in context + `TestChildObject`, wrapped in a `MessageKind=2` transfer envelope. +- `captures\121-frida-buffered-history-testhistoryvalue-context` and + `captures\122-frida-buffered-history-testhistoryvalue-plainadvise` repeat the + buffered registration against GR-confirmed historized integer attribute + `TestMachine_001.TestHistoryValue`. Both supervisory and plain advise forms + emit the same context-bearing `0x10`/`0x11` registration/result shape for + `TestHistoryValue.property(buffer)` in context `TestMachine_001`. + Separate writer-session writes succeed and normal writer data callbacks are + observed, but native MXAccess still does not enter `Fire_OnBufferedDataChange` + on this VM. +- `captures\085-frida-subscribe-property-buffer` and + `captures\086-frida-write-property-buffer` show that adding the literal item + `TestChildObject.TestInt.property(buffer)` does not enter the public + `AddBufferedItem` helper. It follows the normal add/advise path, sends the + same item-control `0x10` reference-registration body with an empty item + context, and receives an NMX registration-result frame carrying the runtime + internal-error text for `TestInt.property(buffer)`. Normal `Write` against + the literal handle returns from `CLMXProxyServer.Write` without producing an + observed buffered callback. +- Ghidra decompile of `LmxProxy.dll` function `1001121d` confirms the public + `AddBufferedItem` implementation allocates a BSTR copy of `strItemDef`, + appends `.property(buffer)`, calls the normal add-item implementation, and + marks the resulting item record as buffered. Function `1000fc80` confirms + `SetBufferedUpdateInterval` rejects intervals below `1` and stores the + interval as `(milliseconds + 99) / 100`, effectively rounding up to 100 ms + ticks. +- Ghidra decompile of `100163c0` confirms `OnBufferedDataChange` is fired + through the `_ILMXProxyServerEvents2` connection point with seven arguments: + server handle, item handle, data type, value variant, quality variant, + timestamp variant, and status array. +- Headless xref/decompile output shows `Fire_OnBufferedDataChange` is reached + from the same native `OnDataChange callback received` method used for normal + data changes. The callback looks up the item record and branches on the + buffered item flag: non-buffered items fire `OnDataChange`; buffered items + convert the callback value into value, quality, and timestamp SAFEARRAY + variants before firing `OnBufferedDataChange`. +- The buffered value conversion helper maps MX buffered element type `1` to a + `VT_BOOL` value array, `2` to `VT_I4`, `3` to `VT_R4`, `4` to `VT_R8`, `5` + to `VT_BSTR`, and `6`/`7` to `VT_UI8` FILETIME-style values. Quality is + emitted as a `VT_I2` SAFEARRAY, timestamp as a `VT_UI8` SAFEARRAY, and the + status argument uses the normal `MXSTATUS_PROXY[]` SAFEARRAY. + +No live `OnBufferedDataChange` payload has been observed yet. A source/runtime +condition that actually delivers buffered sample batches is still needed to +validate the wire body and multi-sample parser. The managed library now +implements the decoded add/registration surface, including context-bearing +buffered registrations, and routes parsed buffered callbacks to a separate +managed buffered event instead of the normal data-change event. + +## Events + +Event source interfaces: + +- `_ILMXProxyServerEvents`: `{848299B6-DD61-4A0D-A304-3947A564B89C}` +- `_ILMXProxyServerEvents2`: `{C70A6FC4-09EF-4F31-8874-A049FEE87A95}` + +Events: + +```csharp +void OnDataChange( + int hLMXServerHandle, + int phItemHandle, + object pvItemValue, + int pwItemQuality, + object pftItemTimeStamp, + ref MXSTATUS_PROXY[] pVars); + +void OnWriteComplete( + int hLMXServerHandle, + int phItemHandle, + ref MXSTATUS_PROXY[] pVars); + +void OperationComplete( + int hLMXServerHandle, + int phItemHandle, + ref MXSTATUS_PROXY[] pVars); + +void OnBufferedDataChange( + int hLMXServerHandle, + int phItemHandle, + MxDataType dtDataType, + object pvItemValue, + object pwItemQuality, + object pftItemTimeStamp, + ref MXSTATUS_PROXY[] pVars); +``` + +Ghidra decompile of `LmxProxy.dll` event helpers confirms that +`Fire_OnWriteComplete` and `Fire_OperationComplete` both construct a three +element `VARIANT` argument array containing server handle, item handle, and one +`MXSTATUS_PROXY` SAFEARRAY. `Fire_OnWriteComplete` dispatches event ID `2`; +`Fire_OperationComplete` dispatches event ID `3`. In the capture set, successful +writes raise only `OnWriteComplete`; no `mx.event.operation-complete` line has +been observed yet. + +Headless Ghidra xref/decompile output in +`analysis\ghidra\exports\LmxProxy.dll.event-xrefs.md` and +`analysis\ghidra\exports\LmxProxy.dll.event-callers-decompile.md` narrows the +source further: `Fire_OnWriteComplete` is reached from +`CUserConnectionCallback::OnSetAttributeResult`, while `Fire_OperationComplete` +is reached from `CUserConnectionCallback::OperationComplete`. They are distinct +callback paths even though their COM event payload shape is the same. + +The installed interop assemblies expose the lower-level callback as +`IMxCallback2.OperationComplete(int lCallbackId, ref MxStatus, string)`. They +also expose `IDataConsumer.ActivateSuspend` and `ProcessActivateSuspend2`, whose +response type is `ItemActiveResponse`. That makes the DataConsumer +activate/suspend completion path the strongest remaining native trigger +candidate. The public `LMXProxyServerClass.Suspend` and `Activate` methods +tested in captures `118` and `119` instead decompile to direct +`IMxScanOnDemand` calls and did not enter +`CUserConnectionCallback.OperationComplete` on this node. + +`aaMxDataConsumer.dll` is registered separately as `MxDataConsumer Class` +(`{85209FB2-0BA1-4594-BBC4-59D3DDAB823D}`) and exposes the same +`IDataConsumer` activate/suspend methods through its type library. A targeted +x86 probe can instantiate it and call those methods, but the standalone object +currently reports `IsConnected(namespaceId)=0` and +`ProcessActivateSuspend2` returns `0x8007139F`. That means the COM surface is +reachable, but a DataConsumer/DataClient bootstrap step is still missing before +it can prove the public `OperationComplete` trigger. + +The mixed-mode `aaMxDataConsumer.dll` decompile shows that bootstrap should +ultimately route through managed ASB IData proxies: `CDataClientCLI` owns a +`DataClientProxy`, starts an auto-connect worker, and passes the namespace +string as an ASB access name to +`IDataProxySelector.SelectProxyForLatestEndpoint`. `ASBIDataV2Adapter.dll` +contains that selector; it looks for `IASBIDataV2` endpoints under +`domainname//global` before falling back to IData V1. A new x64 +managed probe found and connected to the live `IASBIDataV2` endpoint with +access name `ZB`, then successfully called `PublishWriteComplete`. This does +not prove `OperationComplete` yet, but it proves the relevant data-service +route can be reached from managed x64 code without MXAccess or COM. + +The same x64 ASB probe now proves the register/read/write/complete flow for +`TestChildObject.TestInt`. `RegisterItems` and `Read` succeed, ASB type `4` +decodes as `Int32`, `Write(401)` is accepted with per-item +`OperationWouldBlock`, the next read returns `401`, and +`PublishWriteComplete` returns the submitted write handle with final per-item +success. That gives a concrete managed completion queue to model for ASB-native +write-complete behavior; `OperationComplete` should still not be synthesized +until an operation other than a basic write is proven to use the native +MXAccess event ID `3` path. + +The same core flow is now reproduced by the pure .NET 10 x64 +`src\MxAsbClient` implementation with no AVEVA assembly references. Its live +probe reads the ASB solution secret through DPAPI, performs the system-auth +handshake, reads `TestChildObject.TestInt`, writes a new integer value, reads +that value back, and decodes `PublishWriteComplete` result `0x00000020` with +the submitted write handle and final per-item success. `RegisterItems` now +matches the observed ASB startup behavior: the first immediate call after +one-way `AuthenticateMe` can return `0x00000001`, so the client retries briefly +and receives the expected item status/id once the server-side implementation is +registered. The remaining ASB-native work is API breadth: multi-item calls, +subscriptions, scalar/array type matrix, and status/error mapping. + +`UnregisterItems` is now also implemented and compared against the installed +AVEVA `ASBDataV2Proxy`. Both the pure .NET 10 client and installed proxy return +global success for the unregister call and the same per-item `0x0000000B` +(`OperationFailed`) for `TestChildObject.TestInt` on this provider. That is +documented as parity with the deployed ASB provider, not a successful item-level +cleanup status. + +The pure .NET 10 client also handles multi-item register/read bodies. A two-tag +probe registered and read `TestChildObject.TestInt` plus +`TestMachine_001.TestHistoryValue` in single requests; both returned per-item +success and decoded as ASB `TypeInt32`. + +For write status callbacks, the public event is tied to the non-length-prefixed +5-byte operation-status body `00 00 50 80 00`. Length-prefixed completion-only +bodies are lower-level NMX status frames and did not produce public +`OnWriteComplete` events in captures `089`, `091`, `092`, or `093`, even when +the completion byte was `0x00`. + +## Data types + +`MxDataType`: + +```text +Unknown = -1 +NoData = 0 +Boolean = 1 +Integer = 2 +Float = 3 +Double = 4 +String = 5 +Time = 6 +ElapsedTime = 7 +ReferenceType = 8 +StatusType = 9 +Enum = 10 +SecurityClassificationEnum = 11 +DataQualityType = 12 +QualifiedEnum = 13 +QualifiedStruct = 14 +InternationalizedString = 15 +BigString = 16 +END = 17 +``` + +Live GR inventory on this node found deployed/configured instances of all core +scalar types plus `ElapsedTime` and `InternationalizedString`. Target references +captured for the two non-core types: + +- `TestMachine_001.TestAlarm001.Alarm.TimeDeadband`: `ElapsedTime`, observed + subscription callback wire kind `0x07` with four-byte zero payload in + `captures\063-frida-subscribe-elapsed-time-deadband`. +- `TestChildObject.ShortDesc`: `InternationalizedString`, observed callback + normalizes the empty value to string wire kind `0x05` with compact payload + `04 00 00 00` in `captures\062-frida-subscribe-intl-shortdesc`. +- Non-empty GR defaults exist at `DevPlatform._EngUnitsPercent` and + `DevAppEngine.Scheduler._EngUnitsMB`; captures `064` and `065` resolved and + advised those items but did not emit a value callback during the capture + window. + +Write projection for these non-core types is caller-variant based in the +observed MXAccess path. Capture `095` wrote an `Int32` to `ElapsedTime` and +emitted integer wire kind `0x02`; capture `096` wrote a `string` to +`InternationalizedString` and emitted string wire kind `0x05`. The managed +library mirrors those projections for write attempts while keeping the data +types out of generic `TryGetValueKind` classification. + +`MxStatus` and `MXSTATUS_PROXY` are identical sequential structs with 4-byte +packing: + +```csharp +public short success; +public MxStatusCategory category; +public MxStatusSource detectedBy; +public short detail; +``` + +`MxStatusCategory`: + +```text +Unknown = -1 +Ok = 0 +Pending = 1 +Warning = 2 +CommunicationError = 3 +ConfigurationError = 4 +OperationalError = 5 +SecurityError = 6 +SoftwareError = 7 +OtherError = 8 +``` + +`MxStatusSource`: + +```text +Unknown = -1 +RequestingLmx = 0 +RespondingLmx = 1 +RequestingNmx = 2 +RespondingNmx = 3 +RequestingAutomationObject = 4 +RespondingAutomationObject = 5 +``` + +## Status detail text + +`C:\Program Files (x86)\Common Files\ArchestrA\Framework\Bin\Lmx.aaDCT` +contains localized text for common status detail codes. The .NET 10 managed +model now includes the installed English entries: + +| Detail | Text | +| ---: | --- | +| 16 | Request timed out | +| 17 | Platform communication error | +| 18 | Invalid platform ID | +| 19 | Invalid engine ID | +| 20 | Engine communication error | +| 21 | Invalid reference | +| 22 | No Galaxy Repository | +| 23 | Invalid object ID | +| 24 | Object signature mismatch | +| 25 | Invalid primitive ID | +| 26 | Invalid attribute ID | +| 27 | Invalid property ID | +| 28 | Index out of range | +| 29 | Data out of range | +| 30 | Incorrect data type | +| 31 | Attribute not readable | +| 32 | Attribute not writeable | +| 33 | Write access denied | +| 34 | Unknown error | +| 35 | detected by | +| 36 | Wrong data type | +| 37 | Wrong number of dimensions | +| 38 | Invalid index | +| 39 | Index out of order | +| 40 | Dimension does not exist | +| 41 | Conversion not supported | +| 42 | Unable to convert string | +| 43 | Overflow | +| 44 | Attribute signature mismatch | +| 45 | Resolving local portion of reference | +| 46 | Resolving global portion of reference | +| 47 | Nmx version mismatch | +| 48 | Nmx command not valid | +| 49 | Lmx version mismatch | +| 50 | Lmx command not valid | +| 51 | However, the object could not be put On Scan - Permission to modify "Operate" attributes is required | +| 52 | Unable to resolve reference for 'set' request because Galaxy Repository is busy performing a 'Deploy/Undeploy' operation | +| 53 | Too many outstanding pending requests to engine | +| 54 | Object Initializing | +| 55 | Engine Initializing | +| 56 | Secured Write | +| 57 | Verified Write | +| 58 | No Alarm Ack Privilege | +| 59 | Alarm Acked Already | +| 60 | User did not have the necessary permissions to write | +| 61 | Verifier did not have the necessary permissions to verify | +| 541 | Conversion to intended data type is not supported | +| 542 | Unable to convert the input string to intended data type | +| 8017 | Object must be offscan to modify attributes that have an MxSecurityConfigure security classification | diff --git a/docs/MXAccess-Reverse-Engineering.md b/docs/MXAccess-Reverse-Engineering.md new file mode 100644 index 0000000..40e3e5e --- /dev/null +++ b/docs/MXAccess-Reverse-Engineering.md @@ -0,0 +1,397 @@ +# MXAccess reverse-engineering analysis + +## Executive summary + +The primary `ArchestrA.MXAccess.dll` is not a protocol implementation. It is a +.NET primary interop assembly generated from `LMXPROXYLib`. All useful methods +on `LMXProxyServerClass` are `extern` COM calls. The actual implementation is +native, 32-bit, and registered as an in-process COM server: + +```text +net48 x86 caller + -> ArchestrA.MXAccess.dll + -> COM CLSID {C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC} + -> C:\Program Files (x86)\ArchestrA\Framework\Bin\LmxProxy.dll + -> C:\Program Files (x86)\Common Files\ArchestrA\Framework\Bin\Lmx.dll + -> C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxAdptr.dll + -> C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvc.exe + -> runtime engines over NMX +``` + +That is why the current OPC UA interface is constrained to .NET Framework and +x86. The binding itself is not forcing .NET 4.8; the 32-bit COM/native stack is. +The cleanest modern replacement is not "port the interop assembly"; it is either: + +1. keep a 32-bit sidecar process and expose a modern IPC API to .NET 10/Rust, or +2. implement the lower LMX/NMX client protocol directly from the native type +libraries plus runtime traces. + +Option 2 is possible but not complete from static decompilation alone because +the proprietary message bodies are assembled inside native code, not in +`ArchestrA.MXAccess.dll`. + +## Evidence + +### Managed DLL + +`ArchestrA.MXAccess.dll`: + +- File path: `C:\Program Files (x86)\ArchestrA\Framework\Bin\ArchestrA.MXAccess.dll` +- Assembly: `ArchestrA.MxAccess, Version=3.2.0.0, PublicKeyToken=23106a86e706d0ae` +- File description/product: `Assembly imported from type library 'LMXPROXYLib'.` +- Decompilation contains only COM-imported interfaces, structs, enums, delegates, + and event sink helpers. +- `LMXProxyServerClass` methods are all `runtime managed internalcall`, meaning + the CLR dispatches them through COM; there is no managed implementation body to port. + +### COM registration + +`LMXProxy.LMXProxyServer` is registered only in the 32-bit COM registry view: + +```text +HKCR\Wow6432Node\CLSID\{C30B52F5-2CB5-4760-AF0A-3A344A7EB5DC} + (default) = LMXProxyServer Class + InprocServer32 = C:\Program Files (x86)\ArchestrA\Framework\Bin\LmxProxy.dll + ThreadingModel = Apartment + ProgID = LMXProxy.LMXProxyServer.1 + VersionIndependentProgID = LMXProxy.LMXProxyServer + TypeLib = {C36ECF28-3EF3-4528-9843-81D7FDC86328} +``` + +Type libraries: + +```text +{77E896EC-B3E3-4DE4-B96F-F32570164211}\3.2 + LMXProxy 3.2 Type Library + C:\Program Files (x86)\ArchestrA\Framework\Bin\MXAccess32.tlb + +{C36ECF28-3EF3-4528-9843-81D7FDC86328}\1.0 + LMXProxy 1.0 Type Library + C:\Program Files (x86)\ArchestrA\Framework\Bin\LmxProxy.dll + +{C36ECF28-3EF3-4528-9843-81D7FDC86328}\2.0 + LMXProxy 2.0 Type Library + C:\Program Files (x86)\ArchestrA\Framework\Bin\MXAccess20.tlb +``` + +### Native binaries + +| Binary | Role inferred from registration/imports/strings | Architecture | +| --- | --- | --- | +| `LmxProxy.dll` | Public MXAccess COM wrapper. Implements `LMXProxy.LMXProxyServer`. Imports licensing wrapper and COM/OLE Automation APIs. | PE32 x86 | +| `Lmx.dll` | Main local message exchange implementation. Exposes many COM objects including `IDataClient`, `IDataConsumer`, `Nmx`, bootstrap, runtime object, and data variant surfaces. | PE32 x86 | +| `NmxAdptr.dll` | In-process adapter over NMX service. Imports Winsock and exposes `WonderWare.Nmx.CNmxAdapter`. | PE32 x86 | +| `NmxSvc.exe` | Out-of-process NMX service. Registered as `NmxSvc.NmxService`; listens on TCP/UDP port `5026` on this machine. | PE32 x86 | +| `NmxSvcps.dll` | MIDL proxy/stub for NMX service COM interfaces. | PE32 x86 | + +`LmxProxy.dll` exports only standard COM DLL exports: + +```text +DllCanUnloadNow +DllGetClassObject +DllRegisterServer +DllUnregisterServer +``` + +This means there is no flat C ABI to P/Invoke from modern .NET or Rust. + +`LmxProxy.dll` imports `LicAPINativeWrapper.dll`, including: + +```text +CreateClientConnection +AddLicenseRequestInfo +AcquireLicense +GetLicenseAcquisitionError +ReleaseLicense +GetDeviceIdentity +``` + +Any native replacement has to account for AVEVA licensing behavior, either by +using a supported client surface or by keeping a licensed sidecar. + +## Runtime model inferred from MXAccess + +The current high-level API is handle based: + +1. `Register(clientName)` returns an `hLMXServerHandle`. +2. `AddItem(handle, fullReference)` resolves a Galaxy/runtime attribute and + returns an item handle. +3. `Advise` or `AdviseSupervisory` subscribes to updates. +4. Updates arrive through COM connection-point events: + `OnDataChange`, `OnWriteComplete`, and `OperationComplete`. +5. `Write`/`Write2` submit writes and completion is reported asynchronously. +6. `UnAdvise`, `RemoveItem`, and `Unregister` clean up. + +The existing OPC UA host uses the canonical pattern correctly: + +- All COM work runs on one STA thread. +- Reads are implemented as transient subscribe -> first `OnDataChange` -> unsubscribe because MXAccess exposes no direct synchronous read. +- Writes are submitted with `Write` and then matched with `OnWriteComplete`. +- Subscriptions use `AdviseSupervisory`. + +## Lower LMX data-client surface + +`Lmx.dll` exposes a richer COM interface named `IDataClient`. It is still x86 COM, +but it is closer to the underlying data model than `LMXProxyServer`: + +```csharp +void Initialize(string namespaceName); +IntPtr Connect(string endPointUri, ulong timeout, ref _IUserToken userToken, out uint clientId); +IArchestrAResult[] Connect2(...); +long CreateSubscription2(...); +IArchestrAResult[] RegisterItems2(IItemIdentity2[] items, ...); +IArchestrAResult[] AddMonitoredItems2(long subscriptionId, IMonitoredItem2[] items, ...); +IArchestrAResult[] Publish2(long subscriptionId, out DataChangeUpdate[] updates, out uint resultCount); +IArchestrAResult[] Read2(IItemIdentity2[] items, out DataChangeUpdate[] updates, out uint updatesCount); +IArchestrAResult[] Write2(WriteRequest2[] writes, ...); +``` + +Important structs: + +```csharp +struct IItemIdentity2 { + ushort ReferenceType; + ushort type; + string ContextName; + string Name; + ulong id; +} + +struct IMonitoredItem2 { + byte Active; + ushort ReferenceType; + ushort type; + string ContextName; + string Name; + ulong id; + ulong SampleInterval; + ulong TimeDeadband; +} + +struct DataChangeUpdate { + ulong ItemId; + int StatusCode; + uint HighDateTime; + uint LowDateTime; + int quality; + IDataVariant value; +} + +struct IDataVariant { + ushort type; + int length; + byte[] Payload; +} +``` + +This surface suggests AVEVA has a newer OPC UA-like internal data client in the +LMX layer. It may be a better reverse-engineering target than `LMXProxyServer`, +but it is not registered as a 64-bit component on this machine. It still goes +through the x86 native stack. + +## NMX service surface + +`NmxSvc.exe` is registered as an out-of-process COM local server: + +```text +CLSID {AE24BD51-2E80-44CC-905B-E5446C942BEB} + LocalServer32 = "C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvc.exe" + ProgID = NmxSvc.NmxService.1 +``` + +Key `INmxService2` methods: + +```csharp +void RegisterEngine2(int localEngineId, string engineName, int version, INmxSvcCallback callback); +void UnRegisterEngine(int localEngineId); +void Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId); +void TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, int size, ref byte msgBody); +void AddSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); +void RemoveSubscriberEngine(...); +void SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks); +void GetPartnerVersion(int galaxyId, int platformId, int engineId, out int version); +``` + +`NmxAdptr.dll` exposes `WonderWare.Nmx.CNmxAdapter` as an in-process COM adapter: + +```text +CLSID {42DB0511-28BE-11D3-80C0-00104B5F96A7} + InprocServer32 = C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxAdptr.dll + ProgID = WonderWare.Nmx.CNmxAdapter.1 + ThreadingModel = Apartment +``` + +Key `INmx4` methods: + +```csharp +void Initialize2(int platformId, int engineId, int version, int queueExtent); +void InitializeAnonymous2(out int platformId, out int engineId, int version); +void PutRequest2(int galaxyId, int platformId, int engineId, byte priority, byte type, int size, ref byte data, out int requestHandle); +void GetResponse2(byte type, out int responseCode, out int requestHandle, out int size, IntPtr data); +void PutMessageNoReply(...); +void GetPartnerVersion(...); +``` + +Static strings identify NMX message categories: + +```text +NMXMTYPE_CONNECT_INFO +NMXMTYPE_CONNECT_INFO_REQ +NMXMTYPE_ENGINE_DATA +NMXMTYPE_GET_HEARTBEAT_RATE +NMXMTYPE_PLATFORM_HEARTBEAT +NMXMTYPE_SET_HEARTBEAT_RATE +NMXMTYPE_VERSION_ERROR +NMXMTYPE_HEARTBEAT_DISCONNECT_REQ +``` + +On this machine, the running `NmxSvc.exe` process is listening on: + +```text +TCP 10.100.0.48:5026 +UDP 10.100.0.48:5026 +``` + +That gives a network tracing target for the direct-native path. + +## Why direct x64 COM is blocked + +There are two different issues: + +1. `ArchestrA.MXAccess.dll` is a .NET Framework-era interop assembly. Modern + .NET can consume many COM interfaces, but the generated event provider and + TLB-imported types are built for the old COM interop shape. +2. The actual COM class is an x86 in-process DLL. A 64-bit process cannot load + `LmxProxy.dll`, regardless of whether the caller is .NET Framework, .NET 10, + or Rust. + +An out-of-process COM local server can cross bitness, but `LMXProxyServer` is +not registered as a local server. It is an in-proc DLL. + +## Implementation options + +### Option A: Keep and formalize the 32-bit sidecar + +This is the shortest reliable path. + +Build or keep a small x86 process that owns: + +- COM apartment initialization. +- `LMXProxy.LMXProxyServer` lifetime. +- register/add/advise/write/unadvise cleanup. +- reconnect and subscription replay. + +Expose a stable IPC API to the modern service: + +- named pipes for same-machine .NET/Rust services, +- gRPC over named pipes or loopback TCP if cross-language tooling matters, +- protobuf messages for `Read`, `Write`, `Subscribe`, `Unsubscribe`, and status events. + +This is effectively what the existing `OtOpcUaGalaxyHost` / proxy work has moved +toward. It removes the OPC UA server's net48/x86 constraint without attempting +to clone AVEVA's internal protocol. + +### Option B: Use lower LMX COM interfaces from an x86 sidecar + +Instead of the high-level `LMXProxyServer`, use `Lmx.dll`'s `IDataClient` / +`IDataConsumer` APIs inside the sidecar. Potential benefits: + +- direct `Read2` API rather than transient subscribe for reads, +- batch register/read/write/monitor operations, +- explicit `IDataVariant` payloads, +- closer alignment with OPC UA-like status codes. + +Risks: + +- less documented than MXAccess, +- still x86 COM, +- endpoint URI, namespace, token setup, and licensing behavior need live probing. + +### Option C: Direct NMX protocol client in Rust or .NET + +This is the true native replacement path. + +Required work: + +1. Discover galaxy/platform/engine ids for target attributes. +2. Reconstruct NMX message envelope layout used by `PutRequest2` and + `NmxSvc.TransferData`. +3. Reconstruct LMX item registration, subscription, write, and completion + message bodies. +4. Reproduce heartbeat/version negotiation. +5. Reproduce security/licensing behavior or find a supported token flow. +6. Validate behavior across platform stopped/off-scan, engine restart, deploy, + security-denied write, and repository-busy cases. + +Static type-library analysis gives method names and high-level message routes, +but not the binary message schemas. Those schemas are assembled in native code. +The next step for this option is live tracing. + +## Proposed tracing plan + +1. Build a minimal x86 MXAccess harness that: + - registers as a known client name, + - adds one known good tag and one bad tag, + - subscribes with `AdviseSupervisory`, + - writes a toggled value, + - unregisters cleanly. + +2. Capture process activity: + - Process Monitor filters for `LmxProxy.dll`, `Lmx.dll`, `NmxAdptr.dll`, + `NmxSvc.exe`. + - ETW or API Monitor for COM method calls if available. + - Wireshark or `netsh trace` on TCP/UDP `5026`. + +3. Correlate high-level actions to low-level packets: + - `Register` + - `AddItem` + - `AdviseSupervisory` + - first data change + - `Write` + - `OnWriteComplete` + - `UnAdvise` / `RemoveItem` + +4. Repeat against: + - local object attribute, + - remote platform attribute, + - stopped engine, + - security-denied write, + - secured/verified write. + +5. Use `NmxAdptr.INmx4` as a stepping stone: + - call `InitializeAnonymous2`, + - issue controlled `PutRequest2` from an x86 harness, + - compare buffers and responses with MXAccess traffic. + +## Current recommendation + +For production, do not block the OPC UA server on a full native NMX clone. The +low-risk path is: + +1. keep the x86 MXAccess host as the vendor-bound adapter, +2. make the main OPC UA interface .NET 10 or Rust, +3. communicate through a narrow, well-tested IPC contract, +4. continue reverse-engineering `IDataClient` and NMX in parallel as an R&D path. + +The direct native path may still be worth pursuing, but it should be treated as +a protocol-reconstruction project with packet captures and failure-mode testing, +not as a decompile-only port. + +## Artifacts produced + +Generated files in this project folder: + +```text +analysis/decompiled-mxaccess/ +analysis/interop/ +analysis/decompiled-interop/ +``` + +Installed tools used: + +```text +dotnet tool install --global ilspycmd +python pefile +Windows SDK TlbImp.exe +``` + diff --git a/docs/Managed-LMX-NMX-Capture-Plan.md b/docs/Managed-LMX-NMX-Capture-Plan.md new file mode 100644 index 0000000..24fccf5 --- /dev/null +++ b/docs/Managed-LMX-NMX-Capture-Plan.md @@ -0,0 +1,295 @@ +# Managed LMX/NMX capture plan + +Goal: build a full managed .NET 10 x64 DLL that talks to AVEVA/Wonderware +LMX/NMX without loading the x86 MXAccess COM/native stack. + +Assumption: licensing is not a blocker for this environment. The capture plan +still records licensing and security behavior because the managed client must +match runtime behavior for secured writes, permission failures, and audit paths. + +## Success criteria + +The managed DLL is viable when it can perform these operations from an x64 +.NET 10 process using only managed code: + +- discover or configure the local Galaxy/runtime endpoint, +- resolve a Galaxy attribute reference such as `Object.Attribute`, +- read current value, timestamp, quality, and status, +- subscribe and receive initial value plus subsequent data changes, +- write standard values and receive definitive completion status, +- preserve bad-quality/status semantics when a platform or engine stops, +- handle reconnect, heartbeat, runtime restart, and deploy/undeploy churn, +- map common MXAccess errors to deterministic managed status codes. + +## Known protocol gaps + +Static analysis gave us interfaces and routing, but not enough wire/message +detail. These are the missing pieces to capture: + +| Area | Missing detail | +| --- | --- | +| NMX session startup | version negotiation, anonymous engine allocation, heartbeat setup, local/remote ids | +| Endpoint discovery | how local Galaxy/platform/engine ids are chosen or discovered | +| Item resolution | request body for `AddItem`, `AddItem2`, invalid-reference response | +| Subscription | request body for `Advise`, `AdviseSupervisory`, buffered items, initial value behavior | +| Data update | payload format for value, type, quality, timestamp, `MXSTATUS_PROXY` | +| Reads | whether MXAccess implements read as transient subscription only or lower `IDataClient.Read2` messages can be used directly | +| Writes | standard write body, timestamped write, array write, status and completion correlation | +| Security | secured write, verified write, user id/GUID mapping, denied-write status | +| Lifecycle | unregister/unadvise/remove cleanup messages | +| Failure modes | platform down, engine down, bad reference, repository busy, wrong type, permission denied | + +## Phase 1: controlled MXAccess harness + +Build a tiny x86 harness that uses the primary MXAccess stack exactly as +production does: + +```text +ArchestrA.MXAccess.dll -> LMXProxy.LMXProxyServer -> LmxProxy.dll +``` + +Harness requirements: + +- target `net48`, `x86`, +- single STA thread, +- deterministic client name, for example `MxProtoTraceHarness`, +- configurable tag list and write values, +- timestamps every high-level API call, +- logs: + - `Register` handle, + - every `AddItem` item handle, + - every `AdviseSupervisory`, + - every `OnDataChange`, + - every `Write`, + - every `OnWriteComplete`, + - every status array, + - cleanup calls. + +Initial scenarios: + +1. Register/unregister only. +2. Add/remove one known-good read-only item. +3. Subscribe/unsubscribe one known-good item. +4. One-shot read pattern: add, advise, wait first callback, unadvise, remove. +5. Write one boolean or integer setpoint and capture completion. +6. Add invalid item reference. +7. Subscribe to a stopped/unavailable runtime host probe if available. + +Artifacts: + +- harness source, +- timestamped harness log, +- Process Monitor trace, +- network trace, +- optional API Monitor trace. + +Exit criteria: + +- one repeatable capture set where every high-level harness operation can be + correlated to lower process/network activity. + +## Phase 2: process and network capture + +Capture layers: + +1. Process Monitor: + - processes: harness, `NmxSvc.exe`, `aaBootstrap`, relevant AppEngine/Platform processes, + - operations: registry, file, process/thread, TCP/UDP where available, + - objective: confirm DLLs, config, registry keys, and runtime dependencies touched per operation. + +2. Network: + - filter: host IP plus TCP/UDP port `5026`, + - tools: Wireshark and/or `netsh trace`, + - objective: recover packet framing and message timing. + +3. COM/API call tracing: + - target `LmxProxy.dll`, `Lmx.dll`, `NmxAdptr.dll`, `NmxSvc.exe`, + - APIs of interest: + - COM object creation, + - `NmxSvc.NmxService.TransferData`, + - `NmxAdptr.INmx4.PutRequest2`, + - `NmxAdptr.INmx4.GetResponse2`, + - `IDataClient.*` if used, + - Winsock `sendto`, `recvfrom`, TCP send/recv. + +Capture naming: + +```text +captures/ + 001-register/ + 002-additem-good/ + 003-subscribe-good/ + 004-write-good/ + 005-additem-invalid/ +``` + +Each folder should contain: + +```text +harness.log +procmon.pml +network.pcapng +notes.md +``` + +Exit criteria: + +- identify which layer carries the actual item-resolution, subscribe, update, + and write messages. +- know whether the best implementation target is: + - direct NMX socket protocol, + - local COM `NmxSvc` automation, + - lower `Lmx.dll` `IDataClient` behavior replicated over sockets. + +## Phase 3: schema reconstruction + +Start with messages that have simple cause/effect: + +1. `Register` / startup heartbeat. +2. `AddItem` good versus invalid reference. +3. `AdviseSupervisory` initial value. +4. `Write` and `OnWriteComplete`. + +For each message: + +- identify envelope: + - magic/version, + - message type, + - source galaxy/platform/engine id, + - destination galaxy/platform/engine id, + - request handle/correlation id, + - payload length, + - checksum if any. +- identify payload: + - item reference string encoding, + - context string, + - item handle/id, + - Mx data type, + - quality, + - FILETIME timestamp, + - status category/source/detail. + +Use differential captures: + +- same operation, different tag name, +- same tag, different value, +- valid tag versus invalid tag, +- boolean versus integer versus string, +- normal write versus denied write. + +Exit criteria: + +- documented binary structs for the minimum viable read/subscribe/write path, +- sample parser that can decode captured traffic into structured JSON. + +## Phase 4: managed transport prototype + +Build a new .NET 10 x64 prototype library: + +```text +src/ManagedLmxNmx/ + LmxNmxClient.cs + NmxTransport.cs + NmxFrame.cs + LmxMessages.cs + MxValueCodec.cs + MxStatus.cs +``` + +Prototype scope: + +- connect to local NMX endpoint, +- perform startup/version/heartbeat, +- resolve one item, +- subscribe to one item, +- decode updates, +- write one item, +- disconnect cleanly. + +Hard rules: + +- no COM, +- no native P/Invoke except optional OS primitives already wrapped by .NET, +- no x86 process dependency, +- deterministic timeouts and cancellation, +- all binary parsers bounds-checked. + +Exit criteria: + +- x64 test app receives the same value/quality/timestamp as MXAccess for a known tag. +- x64 test app can write and observe `OnWriteComplete` equivalent status. + +## Phase 5: parity suite + +Create side-by-side tests: + +```text +MXAccess x86 harness result == Managed x64 result +``` + +Parity matrix: + +| Scenario | Expected | +| --- | --- | +| Good boolean read | same value, quality, timestamp within tolerance | +| Good numeric read | same value/type/quality | +| Good string read | same value/type/quality | +| Invalid reference | same category/source/detail | +| Subscribe initial callback | same initial value behavior | +| Subscribe change callback | same change behavior | +| Write allowed | same completion success | +| Write wrong type | same failure detail | +| Write denied | same security failure detail | +| Platform stopped | same bad quality/status behavior | +| Engine restart | reconnect and resubscribe | +| Deploy/undeploy busy | same busy status | + +Exit criteria: + +- managed client passes parity for the minimum production tag classes, +- documented unsupported cases are explicit. + +## Phase 6: production hardening + +Before replacing the sidecar: + +- fuzz message parsers with captured and mutated frames, +- soak-test subscriptions with production-scale tag counts, +- run AppEngine/Platform stop-start tests, +- verify no unbounded queues, +- verify reconnect backoff, +- verify audit/security behavior for writes, +- expose metrics: + - connected state, + - heartbeat age, + - subscription count, + - pending request count, + - reconnect count, + - bad frame count. + +## Immediate next work items + +Completed in the 2026-04-25 run: + +1. Created the x86 MXAccess trace harness at `src\MxTraceHarness`. +2. Queried the Galaxy repository for safe candidate tags using + `analysis\sql\select_capture_tags.sql`. +3. Captured register, add/remove, subscribe, invalid reference, array naming, + and advised write scenarios under `captures\`. +4. Converted `netsh.etl` traces to `network.pcapng` with `etl2pcapng`. +5. Installed Wireshark 4.6.4 and attempted Npcap 1.87 installation. + +Current blocker: + +- The local NMX payload is on a loopback path (`::1`) that `netsh trace` and + `pktmon` did not expose as pcap payload in this session. `dumpcap` cannot + capture until Npcap installs successfully. + +Next work items: + +1. Complete an elevated/interactive Npcap install or use API Monitor. +2. Recapture scalar subscribe, array subscribe, invalid subscribe, and advised + write on the NMX loopback path. +3. Write the first decoder for loopback NMX frame boundaries and timestamps. +4. Decide whether direct socket protocol or lower `IDataClient` behavior is the + better implementation target after loopback payloads are available. diff --git a/docs/MxNativeSession-API.md b/docs/MxNativeSession-API.md new file mode 100644 index 0000000..448ca63 --- /dev/null +++ b/docs/MxNativeSession-API.md @@ -0,0 +1,426 @@ +# MxNativeSession API + +`MxNativeSession` is the first high-level .NET 10 x64 facade over the managed +NMX protocol work in this repository. It is intended to be the consumer-facing +entry point while the lower layers remain available for protocol tests and +diagnostics. + +## Runtime prerequisites + +- AVEVA System Platform/NMX installed locally so `NmxSvc.NmxService` can be + activated. +- The Galaxy Repository SQL database available to the current Windows session. +- Managed NTLM runtime credentials supplied through the existing environment + variable path used by `ManagedNtlmClientContext`. +- The x64 callback COM registration/type-library setup already documented in + `DotNet10-Native-Library-Plan.md`. + +The session facade does not store credentials. It relies on the process +environment and the already-authenticated Windows/SQL context. + +## Basic write + +```csharp +using MxNativeClient; + +using var session = MxNativeSession.Open(new MxNativeClientOptions +{ + LocalEngineId = 0x7fee, + EngineName = "MxNativeClient.Sample", + // Optional. Leave null unless a deployment-specific heartbeat cadence is known. + HeartbeatTicksPerBeat = null, +}); + +await session.WriteAsync("TestChildObject.TestInt", 123); +await session.Write2Async( + "TestChildObject.TestInt", + 124, + DateTime.UtcNow); +``` + +`HeartbeatTicksPerBeat` and `HeartbeatMaxMissedTicks` expose +`INmxService2.SetHeartbeatSendInterval`. A .NET 10 x64 probe validated +`SetHeartbeatSendInterval(5, 3)` against local NmxSvc. The setting remains +opt-in because the exact MXAccess heartbeat cadence has not been captured on +this VM; leaving `HeartbeatTicksPerBeat` null preserves the previously +validated connection behavior. + +## Recovery + +`MxNativeSession.RecoverConnection()` explicitly rebuilds the managed NMX +service client, re-registers the local engine and callback, reapplies optional +heartbeat settings, reconnects known publisher engines, and replays current +normal or buffered subscriptions with their existing correlation IDs. The +compatibility facade exposes the same operation as +`MxNativeCompatibilityServer.RecoverConnection(serverHandle)`. + +`RecoverConnectionAsync(policy, cancellationToken)` adds an explicit retry loop +around that primitive. `MxNativeRecoveryPolicy.MaxAttempts` defaults to `1`; +`Delay` defaults to zero. The compatibility facade exposes the same retrying +operation as `RecoverConnectionAsync(serverHandle, policy, cancellationToken)`. + +Recovery progress is observable: + +- `RecoveryAttemptStarted` fires before each reconnect/replay attempt. +- `RecoveryAttemptFailed` fires after a recoverable attempt failure and reports + the exception plus whether the retry loop will continue. +- `RecoveryCompleted` fires after the replacement service has been registered, + publisher endpoints have been reconnected, subscriptions have been replayed, + and the session has swapped to the recovered service. + +The compatibility facade exposes the same events with the server handle added +to each event payload. A live .NET 10 x64 probe with two allowed attempts and a +100 ms delay observed one started event, zero failed events, one completed +event, preserved the existing subscription count, and wrote through the +recovered session. + +Callbacks are passed through during the recovery window instead of being +suppressed or buffered. `MxNativeCallbackEvent`, +`MxNativeOperationStatusEvent`, `MxNativeReferenceRegistrationEvent`, and +`MxNativeUnparsedCallbackEvent` include `IsDuringRecovery` so callers can +separate replay-window events from steady-state events. Compatibility +`DataChanged`, `BufferedDataChanged`, and `WriteCompleted` payloads carry the +same marker. + +`MxNativeClient.Probe --probe-session-recover-multi` subscribes to multiple +tags, runs explicit recovery, and reports total callbacks plus +`IsDuringRecovery` counts for data, operation-status, reference-registration, +and unparsed callback families. The first live run replayed four subscriptions +and preserved all four, with zero callback events marked as recovery-window +events on this VM. + +Adding `--recover-concurrent-writes` starts a separate writer session during +the same recovery window. A live run wrote `TestChildObject.TestInt` values +`330`-`334`, preserved all four subscriptions, and observed two data callbacks +with `IsDuringRecovery=true`. This confirms that callbacks are not quiesced by +the library during recovery; consumers that require strict post-recovery +ordering should ignore or queue marked events at their boundary. + +Automatic background recovery is intentionally not enabled yet. Retrying writes +inside normal write calls can duplicate writes, so callers should choose where +recovery belongs in their own operation model. A .NET 10 x64 probe validated the +current explicit path by subscribing to `TestChildObject.TestInt`, recovering +the connection, preserving the subscription count, and writing through the +recovered session. + +`WriteSecured2Async` is implemented for the observed boolean secured/verified +payload shape: + +```csharp +await session.WriteSecured2Async( + "TestMachine_001.ProtectedValue", + true, + DateTime.Now, + currentUserId: 1, + verifierUserId: 0); +``` + +The encoder emits native command `0x38` and has been live validated from .NET +10 x64 against the secured and verified boolean tags deployed on this node, as +well as authenticated bool, int, float, double, string, datetime, and +scalar-array calls against `TestChildObject` attributes. The handle-based +compatibility facade also supports `AuthenticateUser` followed by +`WriteSecured2`, and intentionally does not synthesize `OnWriteComplete` for +this path because the successful native captures did not show that event. +`WriteSecuredAsync` remains unsupported because native MXAccess still returns +`0x80004021` before emitting a value-bearing body in every captured scenario. +Additional native captures beyond bool and int would improve fixture coverage, +but the managed encoder is now generic over the timestamped write-body support. + +## Browse + +```csharp +IReadOnlyList tags = + await session.BrowseAsync("TestChildObject", "Test%", maxRows: 25); +``` + +`BrowseAsync` uses Galaxy Repository metadata directly. It does not call the +x86 LMX resolver and returns the same metadata needed by the managed handle and +wire encoders. + +`ResolveAsync` accepts full references in the observed MXAccess forms: +`Object.Attribute`, `Object.Primitive.Attribute`, and +`Object.Primitive.Dotted.Attribute` for primitive attributes such as +`TestMachine_001.TestAlarm001.Alarm.TimeDeadband`. It also recognizes the +captured literal property form `Object.Attribute.property(buffer)`, resolving it +to the base attribute handle with property id `0x32`. + +Each `GalaxyTagMetadata` exposes `IsSupportedValueKind` and +`TryGetValueKind(out MxValueKind valueKind)`. Use those before write/read +projection when browsing broad GR metadata. The current wire codec supports the +live OPC-UA-critical GR types `Boolean`, `Integer`, `Float`, `Double`, `String`, +`Time`, and array forms captured so far. Live GR inspection also found +`ElapsedTime` and `InternationalizedString`. Subscribe/read callback decoding now +handles the observed `ElapsedTime` wire kind `0x07` as `TimeSpan` and the compact +empty `InternationalizedString`/string payload form `0x05 04 00 00 00` as +`string.Empty`. They are still reported as unsupported by `TryGetValueKind` +because they are not core one-to-one data kinds, but write projection now follows +captured MXAccess caller-variant behavior: `ElapsedTime` values supplied as +`TimeSpan` or integer project to integer milliseconds/wire kind `0x02`, and +`InternationalizedString` values project to normal string wire kind `0x05`. + +`WriteAsync` and `Write2Async` resolve the tag from Galaxy Repository metadata, +build the managed `MxReferenceHandle`, encode the NMX write body, wrap it in +the `TransferData` envelope, and call `INmxService2::TransferData` through the +managed DCOM path. + +## Subscribe + +```csharp +using MxNativeClient; + +using var session = MxNativeSession.Open(); + +session.CallbackReceived += (_, evt) => +{ + Console.WriteLine( + $"{evt.Record.TimestampUtc:O} status={evt.Status.Category} quality=0x{evt.Record.Quality:X4} value={evt.Record.Value}"); +}; + +session.OperationStatusReceived += (_, evt) => +{ + Console.WriteLine( + $"operation_status=0x{evt.Message.StatusCode:X4} status={evt.Message.Status.Category}"); +}; + +MxNativeSubscription sub = await session.SubscribeAsync("TestChildObject.TestInt"); +await Task.Delay(TimeSpan.FromSeconds(10)); +session.Unsubscribe(sub.CorrelationId); +``` + +## Read + +```csharp +object? value = await session.ReadAsync( + "TestChildObject.TestInt", + timeout: TimeSpan.FromSeconds(10)); +``` + +`ReadAsync` is implemented as a transient subscription read. It subscribes, +waits for the first typed value callback matching that item correlation, then +unsubscribes. + +`SubscribeAsync` performs the managed equivalent of the observed MXAccess path: + +1. Resolve tag metadata from the Galaxy Repository. +2. Connect the local engine to the tag's owning engine. +3. Add the local engine as a subscriber. +4. Send the generated item-control `0x1f` body using the native value handle. +5. Decode incoming `INmxSvcCallback` bodies with `NmxSubscriptionMessage`. + +Capture `099-frida-plain-advise-testint` showed public `Advise` and the earlier +`AdviseSupervisory` scalar path using the same `0x1f` body shape for +`TestChildObject.TestInt`, so the compatibility wrapper maps both methods onto +this subscription path. + +`CallbackReceived` is raised for typed `0x32` subscription-status and `0x33` +data-update records. Each callback exposes the raw NMX record fields plus a +first-pass `MxStatus` projection. `MxStatus.DetailText` returns the installed +English `Lmx.aaDCT` detail text for known LMX/NMX status details, including +reference, conversion, security, alarm, initializing, and secured/verified +write conditions. `OperationStatusReceived` +is raised for both observed operation-status frame forms. The non-length-prefixed +5-byte status-word form with status word `0x8050` and completion byte `0x00` +maps to `MxStatus.WriteCompleteOk` and is the captured public +`OnWriteComplete` success notification. Length-prefixed completion-only frames +are decoded separately and expose `NmxOperationStatusFormat.CompletionOnly`. +Captures `089`, `092`, and `093` produced completion byte `0x41` after +wrong-type string writes, and capture `091` produced completion byte `0x00` +after double-to-int coercion; MXAccess did not raise `OnWriteComplete` for +either completion-only form. + +The managed x64 path now has a proven value-bearing subscription fixture: +`SubscribeAsync("TestChildObject.ShortDesc")` receives the same compact empty +string callback observed from x86 MXAccess (`0x32`, wire kind `0x05`, quality +`0x00C0`). The key handle detail is that value references use property id `10`; +GR `mx_attribute_category` is metadata and is not the NMX value-handle property +field. + +String-array callback handling is intentionally conservative. Captures `100` +and `101` showed `0x45` string-array callback records whose buffers stopped +inside the final element, and MXAccess did not raise a public data-change event +for those runs. The decoder does not fabricate a value for malformed array +payloads; callers should treat a `null` value with a known array wire kind as an +incomplete callback until a complete/public string-array callback is captured. + +`ReferenceRegistrationReceived` is raised for decoded `0x11` +reference-registration result frames. Those frames are emitted after the `0x10` +normal/buffered registration request and include the item handle, correlation +ID, reference text, context, and MX data type. + +`UnparsedCallbackReceived` is a diagnostic event for callback bodies that are +not yet part of the high-level API surface. It is currently used to expose +frames such as the 92-byte operation/status-shaped body seen before scalar +subscription status callbacks, rather than silently swallowing unknown protocol +bodies during reverse engineering. + +## Probe commands + +The probe now has facade-level entry points: + +```powershell +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-session-write --tag=TestChildObject.TestInt --value=123 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-session-read --tag=TestChildObject.TestInt --read-timeout-seconds=10 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-session-subscribe --tag=TestChildObject.TestInt --subscribe-hold-seconds=5 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-session-subscribe --tag=TestChildObject.ShortDesc --subscribe-hold-seconds=8 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-compatibility-subscribe --tag=TestChildObject.ShortDesc --subscribe-hold-seconds=8 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-compatibility-subscribe-write --tag=TestChildObject.TestInt --value=793 --subscribe-hold-seconds=8 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-compatibility-subscribe --tag=NoSuchObject_999.NoSuchAttr --subscribe-hold-seconds=2 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-compatibility-subscribe-multi --tag=TestChildObject.ShortDesc --tag=TestChildObject.TestInt --tag=NoSuchObject_999.NoSuchAttr --subscribe-hold-seconds=4 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-compatibility-write-multi --subscribe-hold-seconds=4 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-compatibility-write-unadvised --tag=TestChildObject.TestInt --value=99 --objref-only +dotnet run --project .\src\MxNativeClient.Probe\MxNativeClient.Probe.csproj -c Release -- --probe-managed-subscribe --tag=TestChildObject.TestInt --subscribe-hold-seconds=5 --send-observed-preadvise-metadata --objref-only +``` + +These commands require the same runtime managed NTLM environment as the lower +level managed probes. + +## MXAccess-style compatibility wrapper + +`MxNativeCompatibilityServer` provides an MXAccess-like handle model for code +that expects integer server and item handles: + +```csharp +using MxNativeClient; + +using var mx = new MxNativeCompatibilityServer(); + +mx.DataChanged += (_, evt) => +{ + Console.WriteLine( + $"server={evt.ServerHandle} item={evt.ItemHandle} value={evt.Value} quality=0x{evt.Quality:X4}"); +}; + +mx.WriteCompleted += (_, evt) => +{ + Console.WriteLine( + $"server={evt.ServerHandle} item={evt.ItemHandle} status={evt.Statuses[0].Category}"); +}; + +int server = mx.Register("OpcUaBridge.Native"); +int item = mx.AddItem(server, "TestChildObject.TestInt"); +mx.AdviseSupervisory(server, item); +mx.Write(server, item, 123); +mx.UnAdvise(server, item); +mx.RemoveItem(server, item); +mx.Unregister(server); +``` + +The compatibility wrapper maps `Register`, `Unregister`, `AddItem`, +`RemoveItem`, `Advise`, `AdviseSupervisory`, `UnAdvise`, `Write`, and `Write2` +onto `MxNativeSession`. `Suspend` and `Activate` mirror observed MXAccess local +behavior for advised items: unadvised calls throw, `Suspend` returns +pending/requesting-LMX status, and `Activate` returns ok/requesting-LMX status. +After `RemoveItem`, the wrapper mirrors native x86 stale-item behavior by +returning `ArgumentException` with `HResult=0x80070057` for advise, unadvise, +write, write2, suspend, activate, and repeated remove attempts. +Invalid server handles and cross-server item handles use the same +`ArgumentException`/`0x80070057` shape observed from native MXAccess. +Literal `property(buffer)` items added with `AddItem` are not treated as +`AddBufferedItem` handles. They follow the captured MXAccess literal-reference +path: add/advise succeeds, normal write returns without a public write-complete, +and no public data-change is promoted on the current VM state. +`AddItem2` resolves the item definition directly first and then retries with the +supplied context. This covers the captured simple form +`AddItem2("TestInt", "TestChildObject")` plus dotted relative forms such as +`AddItem2("Alarm.TimeDeadband", "TestMachine_001.TestAlarm001")` and +`AddItem2("TestInt.property(buffer)", "TestChildObject")`. +`AddBufferedItem` and `SetBufferedUpdateInterval` now cover the decoded public +API path: buffered add creates a handle, the interval is stored as local session +state, and advising the buffered handle sends the observed NMX `0x10` +registration for `itemDefinition.property(buffer)` in the supplied item +context. Headless Ghidra analysis shows native MXAccess routes buffered item +callbacks through the same `OnDataChange` callback method as normal items, then +branches to `_ILMXProxyServerEvents2::OnBufferedDataChange` when the item record +is marked buffered. `MxNativeCompatibilityServer.BufferedDataChanged` mirrors +that separation for any parsed buffered callback and does not promote buffered +items through `DataChanged`. Captures against `TestChildObject.TestInt` and +GR-confirmed historized `TestMachine_001.TestHistoryValue` prove the outbound +context-bearing registration/result bodies, but this VM has not emitted a live +`OnBufferedDataChange` payload. True multi-sample buffered payload decoding +still needs that runtime condition. +`ArchestrAUserToId` follows the observed MXAccess x86 +behavior on this node: known user GUIDs and an invalid zero GUID all return `1`. +`AuthenticateUser` follows the same session-local handle model for the observed +dev-node behavior: MXAccess returned `S_OK` and user ID `1` for both +`Administrator` and an invalid user name with an empty password. The managed +compatibility method validates the server handle and user string, returns a +session-local handle, and does not store or compare password material. +`WriteCompleted` is raised only for the captured MXAccess-visible 5-byte +`0x8050/0x00` operation-status frame. Completion-only frames are still available +through `MxNativeSession.OperationStatusReceived`, but the compatibility wrapper +does not convert them into `OnWriteComplete` events because x86 MXAccess did not +fire that event in those captures. Pending write handles are queued per server +session, so concurrent compatibility sessions do not consume each other's +completion callbacks. The mixed `--probe-compatibility-write-multi` path +validates that normal int, internationalized string, literal buffer-property, +and invalid-reference items in one server session do not leak public data-change +or write-complete events across item handles; only the invalid reference emits +the expected configuration-error data-change. `OperationCompleted` keeps the public event +shape, but no trigger has been modeled yet because the capture set contains no +`mx.event.operation-complete` events. +`DataChanged` is also suppressed when the lower-level decoder reports a known +wire kind with a `null` value, which is how malformed/incomplete callback +payloads such as the observed string-array records from captures `100` and +`101` are represented. +`GalaxyRepositoryUserResolver` is separate metadata support: it resolves +`dbo.user_profile` rows, profile IDs, default security group, InTouch access +level, and decoded role names from the GR role blob. `AddItem2` currently +combines context and item text only for simple relative references; the real +MXAccess context behavior still needs captures. Unsupported MXAccess methods +throw `NotSupportedException` with the missing capture/protocol reason. + +For lower-level use, `GalaxyRepositoryUserResolver` exposes: + +```csharp +var users = new GalaxyRepositoryUserResolver(); +GalaxyUserProfile profile = await users.ResolveByNameAsync("Administrator"); +int profileId = await users.ResolveUserProfileIdByGuidAsync(profile.UserGuid); +IReadOnlyList roles = profile.Roles; +``` + +Security-enabled `AuthenticateUser` password verification remains intentionally +out of scope until successful and failed captures from a security-enabled Galaxy +show whether MXAccess delegates to OS/domain auth, GR hashes, or another token +provider. + +## Current limitations + +- Managed NTLM live probes now validate .NET 10 x64 activation, RemQI, + `GetPartnerVersion`, direct `WriteAsync` transport, callback delivery, and + unsubscribe cleanup with unique local engine IDs. +- Value-bearing managed `OnDataChange` is proven for + `TestChildObject.ShortDesc` after matching native advise transfer kind and + value-handle property id. The lower-level session exposes that callback, but + the MXAccess-style compatibility wrapper suppresses the empty + `InternationalizedString` public `DataChanged` event because fresh x86 + MXAccess capture `108` also raises no public event for `ShortDesc`. Fresh + current-state x86 MXAccess captures also raise no public `TestInt` + data-change for subscribe-only or subscribe-then-write, matching the managed + status-only `TestInt` callbacks on this VM. Broader scalar/array parity still + needs live validation against a runtime state that emits public values. + Replaying the captured + adapter-visible `0x17` metadata body is accepted by `NmxSvc` and produces + decoded `0x40` metadata-response plus `0x32` metadata-status callbacks, but + the response still contains an internal base-object error and does not appear + to be the gate for the `ShortDesc` value callback. +- `ReadAsync` currently uses a transient subscription. A lower-latency direct + read path can be added if a distinct NMX request/response read body is found; + tags with no initial value can still time out after receiving only status + callbacks. +- String-array callbacks are partially modeled from the element format, but the + available Frida string-array callback line is truncated before all values. +- Error/failure callback bodies still need more captures for exact + `MXSTATUS_PROXY[]` parity. +- `ElapsedTime` and `InternationalizedString` writes are value-projected from + captures `095` and `096`. The managed `ShortDesc` write body now matches + capture `096` byte-for-byte and returns the same completion-only `0xef` as + native MXAccess on this node, while `TestInt` returns completion-only `0x00` + and a status-only update callback. Public write-complete semantics for these + completion-only frames still need more captures. +- `MxNativeCompatibilityServer` provides source-level migration help but is not + a binary COM replacement for `ArchestrA.MxAccess`. +- For invalid references, the compatibility wrapper intentionally differs from + strict `MxNativeSession`: it returns an item handle and raises the observed + public configuration-error data-change (`null`, quality `0`, detail `6`) on + advise, matching x86 MXAccess captures. diff --git a/docs/NMX-COM-Contracts.md b/docs/NMX-COM-Contracts.md new file mode 100644 index 0000000..1e4bcec --- /dev/null +++ b/docs/NMX-COM-Contracts.md @@ -0,0 +1,670 @@ +# NMX COM contracts and managed-client implications + +This note captures the COM/type-library layer that sits below MXAccess and above +the local NMX transport. + +## Native binaries inspected + +Primary installed files: + +```text +C:\Program Files (x86)\ArchestrA\Framework\Bin\LmxProxy.dll +C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxAdptr.dll +C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvc.exe +C:\Program Files (x86)\ArchestrA\Framework\Bin\NmxSvcps.dll +C:\Program Files (x86)\ArchestrA\Framework\Bin\WWProxyStub.dll +``` + +No x64 equivalents were found under `C:\Program Files`; only x86 installed +copies and Galaxy file-repository copies were present. + +Generated inspection reports: + +```text +analysis\native\LmxProxy.dll.md +analysis\native\NmxAdptr.dll.md +analysis\native\NmxSvcps.dll.md +analysis\native\WWProxyStub.dll.md +``` + +`NmxSvcps.dll` is a MIDL COM proxy/stub DLL. It exports: + +```text +DllCanUnloadNow +DllGetClassObject +DllRegisterServer +DllUnregisterServer +``` + +It imports the expected RPC proxy/stub helpers from `RPCRT4.dll`: + +```text +NdrDllGetClassObject +NdrDllRegisterProxy +NdrDllUnregisterProxy +CStdStubBuffer_* +IUnknown_*_Proxy +``` + +## Key NMX service contracts + +The already decompiled interop tree contains the type-library contracts: + +```text +analysis\decompiled-interop\Interop.NmxSvc +analysis\decompiled-interop\Interop.NmxAdptr +``` + +Important interfaces: + +| Interface | GUID | Important methods | +| --- | --- | --- | +| `INmxService` | `575008DB-845D-46C6-A906-F6F8CA86F315` | `RegisterEngine`, `UnRegisterEngine`, `Connect`, `TransferData`, subscriber and heartbeat methods | +| `INmxService2` | `2630A513-A974-4B1A-8025-457A9A7C56B8` | `RegisterEngine2`, `GetPartnerVersion` | +| `INmxSvcCallback` | `B49F92F7-C748-4169-8ECA-A0670B012746` | `DataReceived`, `StatusReceived` | +| `INmxNotify` | `73849AEA-472A-4715-B8C6-1C806AF12DFC` | `ConnectionEstablished`, `ConnectionClosed` | +| `INmx4` | `84168012-B544-4217-A145-32819C607435` | `PutRequest2`, `GetResponse2`, `Initialize2`, `InitializeAnonymous2` | + +Core transport methods: + +```csharp +void INmxService.TransferData( + int lRemoteGalaxyID, + int lRemotePlatformID, + int lRemoteEngineID, + int lSize, + ref byte pMsgBody); + +void INmxSvcCallback.DataReceived( + int dwBufferSize, + ref sbyte lpDataBuffer); + +void INmxSvcCallback.StatusReceived( + int dwBufferSize, + ref sbyte lpStatusBuffer); + +void INmx4.PutRequest2( + int dwClusterId, + int dwPlatformId, + int dwEngineId, + byte byPriority, + byte byType, + int dwSize, + ref byte pData, + out int pdwRequestHandle); + +void INmx4.GetResponse2( + byte byType, + out int pdwResponseCode, + out int pdwRequestHandle, + out int pdwSize, + IntPtr pData); +``` + +## Local mixed stream + +The localhost `127.0.0.1:57415 <-> 127.0.0.1:57433` stream is not plain +DCE/RPC. It is a compact mixed protocol: + +- 12-byte control records: `int32 code_or_status`, `int32 token_low`, + `int32 token_high`. +- Data records: `uint32 body_length`, followed by `body_length` bytes. +- A positive control `code_or_status` often announces the total byte count of + one or more following data records. +- `-1` appears as a normal acknowledgement/status control. +- `-2` appears as a bidirectional status/control marker around write windows. + +The parser for this stream is: + +```text +analysis\scripts\decode_mixed_local_stream.py +``` + +Generated mixed-stream decodes: + +```text +captures\016-loopback-write-test-int-advised\mixed-stream-57415-to-57433.tsv +captures\016-loopback-write-test-int-advised\mixed-stream-57433-to-57415.tsv +captures\017-loopback-write-test-int-100\mixed-stream-57415-to-57433.tsv +captures\017-loopback-write-test-int-100\mixed-stream-57433-to-57415.tsv +captures\020-loopback-write-test-int-102\mixed-stream-57415-to-57433.tsv +captures\020-loopback-write-test-int-102\mixed-stream-57433-to-57415.tsv +``` + +Write-window extraction and diff helpers: + +```text +analysis\scripts\analyze_write_window.py +analysis\scripts\diff_write_window_records.py +``` + +## Controlled write captures + +Usable value-change captures: + +| Folder | Write path | +| --- | --- | +| `captures\017-loopback-write-test-int-100` | `TestInt` changed from `99` to `100` | +| `captures\020-loopback-write-test-int-102` | `TestInt` changed from `101` to `102` | +| `captures\021-loopback-write-test-int-sequence-103-105` | `TestInt` changed from `102` to `103`, `104`, then `105` in one session | + +`captures\018-loopback-write-test-int-101` has a successful harness log but a +header-only pcap, so it should not be used for packet analysis. The rerun +`captures\019-loopback-write-test-int-101-rerun` captured correctly, but it was +a same-value write because the attribute was already `101`. + +The same-session sequence shows that the decoded write-window records do not +carry the requested `int32` values as plain little-endian scalar payloads. The +visible moving fields are mostly local sequence tokens and opaque body fields. +For a managed implementation, this raises the priority of tracing the in-process +native API boundary before the payload enters the localhost transport. + +That boundary has now been traced with headless Ghidra-derived Frida hooks. See: + +```text +docs\Ghidra-Headless-Analysis.md +captures\023-frida-write-test-int-sequence-109-111\frida-events.tsv +``` + +The key result is that `CLMXProxyServer::Write` receives the raw `int32` scalar +directly, and `CNmxAdapter::PutRequest` receives a 40-byte body with the scalar +at offset `18`. `CNmxAdapter::TransferData` wraps that body in an 86-byte +message, placing the scalar at offset `64`. The corresponding +`ProcessDataReceived` update body carries the scalar at offset `84`. + +Additional Frida captures generalized the write body across common scalar +types: + +| Type | `PutRequest` body | `TransferData` body | Callback/update body | Encoding | +| --- | --- | --- | --- | --- | +| bool | size `37`, value offset `18` | size `83`, value offset `64` | size `85`, value offset `84` | `VT_BOOL`; true `ff ff ff 00` in write body and `ff` in data-change body; false `00 ff ff 00` and `00` | +| int | size `40`, value offset `18` | size `86`, value offset `64` | size `88`, value offset `84` | little-endian `int32` | +| float | size `40`, value offset `18` | size `86`, value offset `64` | size `88`, value offset `84` | little-endian `float32` | +| double | size `44`, value offset `18` | size `90`, value offset `64` | size `92`, value offset `84` | little-endian `float64` | +| string | size `58` or `60`, value offset `26` | size `104` or `106`, value offset `72` | size `106` or `108`, value offset `92` | UTF-16LE | +| datetime | size `86`, value offset `26` | size `132`, value offset `72` | size `98`, value offset `88` | outbound UTF-16LE display string; callback/update FILETIME | + +The matrix is saved at: + +```text +analysis\frida\write-body-matrix.tsv +``` + +Array writes are also captured: + +```text +analysis\frida\write-array-body-matrix.tsv +``` + +Write-mode captures are saved at: + +```text +analysis\frida\write-mode-matrix.tsv +``` + +The first combined Frida plus loopback correlation is: + +```text +captures\043-frida-loopback-write-test-int-115 +captures\043-frida-loopback-write-test-int-115\frida-to-tcp-map.tsv +captures\044-frida-loopback-write-test-int-123456789 +captures\044-frida-loopback-write-test-int-123456789\frida-to-tcp-map.tsv +``` + +Numeric arrays use an array descriptor at body offset `17`, then packed values +at offset `28`. The descriptor is: + +```text +kind_byte 00 00 00 00 element_count:uint16 element_width_or_code:uint32 +``` + +Observed kind bytes are `0x41` bool, `0x42` int, `0x43` float, `0x44` double, +and `0x45` variable-width string/date. String and datetime arrays use +per-element variable records; outbound datetime array writes encode display +strings, while callback/update bodies encode FILETIME values. The bool-array +capture succeeded but did not preserve the requested alternating pattern, so +that path is documented as unresolved pending a targeted follow-up. + +Secured and verified attributes did not require the COM `WriteSecured` methods. +Those methods returned before value-bearing NMX requests in the tested cases. +The supported public path was normal `Write` with the fourth argument set to the +Galaxy security classification (`2` for `SecuredWrite`, `3` for +`VerifiedWrite`). Timestamped `Write2` keeps the scalar value slot and embeds a +FILETIME after the value. + +The adapter body is still not the wire format. Capture `043` proves that exact +`PutRequest`, `TransferData`, and callback bodies are absent from the +reassembled TCP streams. Capture `044` uses the distinctive value `123456789` +and shows the raw scalar is absent from the full pcap payload scan, parsed +DCE/RPC stubs, and mixed local stream. A native managed client therefore needs a +structural DCE/RPC/NDR decoder in addition to the adapter-body codec. + +The initial managed codec is: + +```text +src\MxNativeCodec\MxNativeCodec.csproj +src\MxNativeCodec.Tests\MxNativeCodec.Tests.csproj +``` + +It does not yet synthesize every unknown header field. It uses captured +`PutRequest` bodies as templates and proves that scalar typed value slots, +timestamped scalar bodies, packed numeric arrays, string-array records, and the +write index can be decoded and re-encoded in .NET 10 x64 managed code. + +## Implication for .NET 10 x64 + +The public COM contracts are useful as a schema, but the installed runtime path +is x86. A full managed .NET 10 x64 implementation cannot simply load these +in-proc COM components. + +The service boundary was traced directly in capture `046`: + +```text +captures\046-service-boundary-write-test-int-123456791 +``` + +The same 86-byte write body appears at: + +```text +CNmxAdapter.TransferData +CNmxService.TransferData +CNmxControler.TransferData +CNmxControler.DataReceived +CNmxControler.ProcessDataReceivedForEngine +``` + +The distinctive scalar `123456791` is at body offset `64` in every one of those +86-byte bodies. + +The `TransferData` service body is a 46-byte NMX envelope followed by the +adapter `PutRequest` body. The envelope stores the inner body length at offset +`2`. For the observed `TestInt=123456791` write: + +Do not send a bare 46-byte envelope as a normal probe payload. If the adapter +receives a header-only or length-mismatched `TransferData` body, System Platform +can log `NMX Header ... buffer size pktHeader.dwDataSize ... doesn't match +received message size ...`. The local COM and managed DCE/RPC harnesses now +validate this envelope length before sending. + +| Body | Size | Value offset | +| --- | ---: | ---: | +| `CNmxAdapter.PutRequest` | 40 | 18 | +| `INmxService2.TransferData` / `CNmxAdapter.TransferData` | 86 | 64 | + +The managed codec now includes `NmxTransferEnvelopeTemplate` to decode and +re-encode this observed envelope form. + +The .NET 10 x64 probe can activate `NmxSvc.NmxService`, but the first +`INmxService2` method call fails with `0x8007000B` because COM tries to load the +32-bit `NmxSvcps.dll` proxy/stub into the x64 process. The probe is: + +```text +src\MxNativeClient.Probe +``` + +The same probe can marshal the activated object as remote `IUnknown` and dump a +standard OBJREF: + +```text +analysis\proxy\nmxservice-objref-context2.txt +``` + +The OBJREF exposes a stable OXID plus per-activation OID/IPID values and +binding towers. This proves a managed implementation can obtain the object +identity without loading `NmxSvcps.dll`; the remaining step is to implement the +ORPC `QueryInterface` and method call flow manually. + +The .NET 10 client scaffold now has the first managed protocol primitives: + +```text +src\MxNativeClient\DceRpcPdu.cs +src\MxNativeClient\DceRpcTcpClient.cs +src\MxNativeClient\OrpcStructures.cs +src\MxNativeClient\RemUnknownMessages.cs +src\MxNativeClient\ObjectExporterMessages.cs +src\MxNativeClient\ObjectExporterClient.cs +src\MxNativeClient.Tests\MxNativeClient.Tests.csproj +``` + +Those tests parse and re-encode real bind/alter-context style traffic from +capture `046` and parse a captured request PDU. The capture parser now records +presentation-context UUIDs in `dcerpc-stream-pdus.tsv`, which makes it easier to +separate useful DCE/RPC structure from traffic that is unrelated to the NMX +service body. + +The visible DCE/RPC stream does not begin request stubs with `ORPCTHIS`, so it +is not the direct `INmxService2` ORPC method channel. The managed ORPC work is +therefore being built from the DCOM specification plus the OBJREF returned by +local COM activation. `IRemUnknown::RemQueryInterface` composition is now +represented in code; a live RPC binding and response validation remain pending. + +The first live managed RPC probe binds to `IObjectExporter` on RPCSS and sends +`ResolveOxid` for the OBJREF OXID. The request is accepted, but the unauthenticated +call returns `0x00000005` (`ERROR_ACCESS_DENIED`). That matches the Python and +Impacket reference behavior, so the next blocker is RPC authentication rather +than the OXID NDR layout. + +The DCOM activation and scalar call path has now been proven with an Impacket +reference probe: + +```text +analysis\scripts\probe_dcom_inmxservice2.py +analysis\proxy\dcom-inmxservice2-getpartner-probe.txt +``` + +That probe uses packet privacy, activates CLSID +`{AE24BD51-2E80-44CC-905B-E5446C942BEB}`, requests +`INmxService2` `{2630A513-A974-4B1A-8025-457A9A7C56B8}`, binds to the returned +OXID endpoint, and calls `GetPartnerVersion` opnum `11`. The service returns +`partner_version=6` and `ErrorCode=0x00000000`. + +This changes the remaining work from "prove DCOM can reach NmxSvc without the +x86 proxy" to "port packet-private DCOM authentication and the decoded NDR +method stubs into the .NET 10 client." The public method schema, target CLSID, +service endpoint, object identity flow, and at least one working service method +are now verified. + +The .NET 10 managed client now reproduces the critical scalar path without the +AVEVA x86 proxy and without using SSPI `MakeSignature`: + +```text +analysis\proxy\managed-remqi-and-getpartner-probe.txt +src\MxNativeClient\ManagedNtlmClientContext.cs +src\MxNativeClient\DceRpcTcpClient.cs +src\MxNativeClient\NmxService2Messages.cs +``` + +The managed probe obtains an `IUnknown` OBJREF, resolves the OXID with a +managed NTLMv2 packet-integrity DCE/RPC call, calls +`IRemUnknown::RemQueryInterface` for `INmxService2`, and then invokes +`INmxService2::GetPartnerVersion`. The live result is +`managed_getpartner_version=6` and `managed_getpartner_hresult=0x00000000`. + +The remaining client-side proxy work is now concentrated on the non-scalar COM +methods: marshaling a managed callback object for `RegisterEngine2`, encoding +the correlated `byte[size]` parameter for `TransferData`, and implementing the +callback endpoint that receives `DataReceived` and `StatusReceived`. + +`TransferData` has since been encoded and live-probed: + +```text +analysis\proxy\managed-transferdata-control-probe.txt +``` + +The service returned `0x80041101`, which is an application-level HRESULT after +the ORPC call reached `NmxSvc.exe`; it was not a DCE/RPC/NDR failure. That +confirms the `byte[size]` request shape. + +The x64 callback marshal probe is: + +```text +analysis\proxy\callback-marshal-probe.txt +``` + +It fails with `0x80040154 REGDB_E_CLASSNOTREG` when trying to marshal +`INmxSvcCallback`. This is the same architecture problem in reverse: the +client-side x64 process has no registered `NmxSvcps.dll` proxy/stub for the +callback IID. A full managed client therefore needs to export the callback +object itself over DCE/RPC/ORPC. + +Therefore the viable managed path is to implement the observed local contracts +directly: + +1. Recreate enough of the NMX service/session behavior represented by + `INmxService`, `INmxSvcCallback`, and `INmx4`. +2. Encode/decode the NMX adapter message bodies identified by the Frida trace. +3. Replace the 32-bit `NmxSvcps.dll` MIDL proxy with a managed NDR/DCOM proxy + for `NmxSvc.exe`. +4. Use the Galaxy repository for tag/type/security metadata rather than + depending on the x86 MXAccess wrapper. + +The next hard blocker is no longer the basic `int32` value location. It is the +managed replacement for the MIDL proxy/stub plus synthesis of add-item, +advise/unadvise, remove-item, and status/error request bodies. + +See also: + +```text +docs\DotNet10-Native-Library-Plan.md +analysis\proxy\nmxsvcps-proxy-layout.tsv +analysis\proxy\nmxsvcps-procedures.tsv +``` + +## Decoded proxy/stub procedure table + +The proxy/stub MIDL procedure bytecode is extracted by: + +```text +analysis\scripts\extract_nmxsvcps_proc_formats.py +``` + +The output is: + +```text +analysis\proxy\nmxsvcps-procedures.tsv +analysis\proxy\type-format-snippets\ +``` + +The core service opnums recovered from `NmxSvcps.dll` are: + +| Interface | Method | Opnum | Parameter shape | +| --- | --- | ---: | --- | +| `INmxService2` | `RegisterEngine` | 3 | `int`, `BSTR`, `INmxSvcCallback*`, `HRESULT` | +| `INmxService2` | `UnRegisterEngine` | 4 | `int`, `HRESULT` | +| `INmxService2` | `Connect` | 5 | `int`, `int`, `int`, `int`, `HRESULT` | +| `INmxService2` | `TransferData` | 6 | `int`, `int`, `int`, `int size`, `byte[size]`, `HRESULT` | +| `INmxService2` | `AddSubscriberEngine` | 7 | `int`, `int`, `int`, `int`, `HRESULT` | +| `INmxService2` | `RemoveSubscriberEngine` | 8 | `int`, `int`, `int`, `int`, `HRESULT` | +| `INmxService2` | `SetHeartbeatSendInterval` | 9 | `int`, `int`, `HRESULT` | +| `INmxService2` | `RegisterEngine2` | 10 | `int`, `BSTR`, `int version`, `INmxSvcCallback*`, `HRESULT` | +| `INmxService2` | `GetPartnerVersion` | 11 | `int`, `int`, `int`, `out int`, `HRESULT` | +| `INmxSvcCallback` | `DataReceived` | 3 | `int size`, `sbyte[size]`, `HRESULT` | +| `INmxSvcCallback` | `StatusReceived` | 4 | `int size`, `sbyte[size]`, `HRESULT` | + +Important NDR type-format offsets: + +| Offset | Usage | +| --- | --- | +| `0x0006` | callback byte array correlated to `dwBufferSize` | +| `0x002c` | `BSTR_UserMarshal` string | +| `0x0036` | `INmxSvcCallback` interface pointer | +| `0x004c` | `TransferData` byte array correlated to `lSize` | +| `0x005c` | `INmxNotify` interface pointer | + +This confirms that the missing x64/full-managed layer is not the public method +schema. The remaining native dependency is the DCOM/ORPC transport and the NDR +interpreter behavior normally provided by `NmxSvcps.dll`. + +## RegisterEngine2 marshaling findings + +The direct x86 COM harness is: + +```text +src\NmxComHarness\NmxComHarness.csproj +src\NmxComHarness\Program.cs +``` + +It bypasses `ArchestrA.MXAccess.dll` and invokes +`NmxSvc.NmxService.RegisterEngine2` directly through the installed 32-bit +`NmxSvcps.dll` proxy. The focused Frida hook is: + +```text +analysis\frida\nmx-com-proxy-trace.js +``` + +Captured runs: + +```text +captures\052-frida-direct-nmx-registerengine2-marshals-retry +captures\053-frida-direct-nmx-registerengine2-null-stub +captures\054-frida-direct-nmx-registerengine2-callback-stub +analysis\proxy\x86-callback-objref-probe.txt +analysis\proxy\x86-registerengine2-null-callback-probe.txt +analysis\proxy\managed-registerengine2-null-callback-probe.txt +``` + +`BSTR_UserMarshal` writes the string as: + +```text +char_count:uint32 +byte_length:uint32 +char_count:uint32 +utf16_payload_without_null +``` + +For `NmxComProxyWire5`, the exact captured bytes were: + +```text +10 00 00 00 20 00 00 00 10 00 00 00 +4e 00 6d 00 78 00 43 00 6f 00 6d 00 50 00 72 00 +6f 00 78 00 79 00 57 00 69 00 72 00 65 00 35 00 +``` + +The generated proxy also writes a 4-byte user-marshal marker before that BSTR +payload: + +```text +55 73 65 72 +``` + +Interpreted little-endian, that value is `0x72657355` (`"User"`). + +The managed encoder in `src\MxNativeClient\NmxService2Messages.cs` now +reproduces the null-callback `RegisterEngine2` request: + +```text +ORPCTHIS +localEngineId:int32 +0x72657355:uint32 +BSTR_UserMarshal(engineName) +padding to 4-byte boundary +version:int32 +callback:null-interface-pointer:uint32 = 0 +``` + +The live .NET 10 x64 probe reaches `NmxSvc.exe` and returns a non-failing COM +success code: + +```text +managed_register2_null_hresult=0x00000001 +managed_unregister_after_register_hresult=0x00000001 +``` + +This confirms that the managed DCOM/NDR path can perform the service +registration lifecycle without the x86 proxy when no callback endpoint is +required. + +For a non-null callback, the x86 proxy wraps the callback OBJREF as: + +```text +0x00020000:uint32 +objref_size:uint32 +objref_size:uint32 +objref_bytes +``` + +The same capture showed `objref_size=0x44` for a compact same-machine standard +OBJREF. A separately marshaled x86 callback stream produced a 366-byte standard +OBJREF with dual-string bindings. The managed callback exporter can therefore +use the same MInterfacePointer wrapper around an OBJREF that advertises the +managed callback endpoint. + +## Callback OBJREF experiments + +Two managed callback OBJREF strategies have now been tested. + +### Synthetic managed TCP OBJREF + +`ManagedCallbackExporter` can build a standard OBJREF that advertises a managed +TCP listener: + +```text +src\MxNativeClient\ManagedCallbackExporter.cs +analysis\proxy\managed-registerengine2-callback-probe.txt +analysis\proxy\managed-registerengine2-callback-loopback-probe.txt +analysis\proxy\managed-registerengine2-callback-fixed-port-probe.txt +analysis\proxy\managed-callback-fixed-port-tcp-poll.txt +analysis\proxy\managed-callback-nmxsvc-tcp-poll.txt +``` + +Without security bindings the service rejects the callback OBJREF with +`0x8001011D`. Adding the default security binding sequence seen in x86 +`CoMarshalInterface` changes the failure to `0x800706BA` (`RPC server +unavailable`), but the managed listener sees no inbound connection. TCP polling +also shows no SYN to the advertised port. + +Inference: for standard OBJREFs, COM is not treating the embedded string binding +as a direct object endpoint. It is resolving the OXID through the local COM/OXID +resolver machinery. A purely synthetic OXID that is not registered with RPCSS is +not enough. + +### COM-registered IUnknown OBJREF patched to callback IID + +The probe can also ask the local x64 COM runtime to marshal a managed +`IUnknown` OBJREF, then replace only the OBJREF IID with `INmxSvcCallback`: + +```text +analysis\proxy\managed-registerengine2-callback-com-iunknown-objref-probe.txt +analysis\proxy\managed-registerengine2-callback-com-iunknown-self-transfer-probe.txt +``` + +That OBJREF is backed by a real RPCSS-registered OXID/OID/IPID. With this form, +`NmxSvc.exe` accepts a non-null callback pointer: + +```text +managed_register2_callback_hresult=0x00000000 +managed_unregister_after_callback_register_hresult=0x00000000 +``` + +A self-directed `TransferData` probe also returns `0x00000000`: + +```text +managed_callback_self_transfer_hresult=0x00000000 +``` + +No managed callback event was delivered during that self-transfer probe. This +means the COM-registered patched OBJREF is currently a registration proof, not +the final callback solution. The final managed implementation still needs an +endpoint whose OXID/IPID can be resolved by COM and whose request dispatch is +handled by managed code rather than the missing x64 `NmxSvcps.dll` proxy/stub. + +### x64 type-library marshaling for INmxSvcCallback + +The x64 callback marshal failure can be removed without AVEVA's 32-bit +`NmxSvcps.dll` by registering type-library metadata for the callback interface +and using the Windows standard automation proxy/stub: + +```text +analysis\scripts\register_x64_callback_typelib.ps1 +analysis\proxy\typelib\NmxComHarness.tlb +analysis\proxy\callback-marshal-after-typelib-probe.txt +``` + +The script exports `src\NmxComHarness\bin\Release\net481\NmxComHarness.exe` to +a TLB, registers it with `LoadTypeLibEx(REGKIND_REGISTER)`, and sets: + +```text +HKLM\SOFTWARE\Classes\Interface\{B49F92F7-C748-4169-8ECA-A0670B012746} + ProxyStubClsid32 = {00020424-0000-0000-C000-000000000046} + TypeLib = {4DBF23F3-069E-3D29-B67F-4C7850F588B3}, Version 1.0 + NumMethods = 5 +``` + +After that registration, the x64 managed process can call +`CoMarshalInterface` for `INmxSvcCallback` directly. The probe now emits a +standard 366-byte OBJREF for the callback IID instead of +`REGDB_E_CLASSNOTREG`. + +Using the real marshaled callback OBJREF, `NmxSvc.exe` accepts non-null +`RegisterEngine2`, `Connect`, `AddSubscriberEngine`, `TransferData`, and +`UnRegisterEngine` calls: + +```text +analysis\proxy\managed-registerengine2-callback-com-real-probe.txt +analysis\proxy\x86-registerengine2-self-transfer-callback-probe.txt +``` + +The same synthetic self-transfer route does not produce a callback in the x86 +harness either. Therefore the absence of a callback event in the current probe +is caused by the synthetic NMX message/session body, not by inability to marshal +the callback interface after the type-library registration. diff --git a/docs/Transport-Correlation.md b/docs/Transport-Correlation.md new file mode 100644 index 0000000..c58a66d --- /dev/null +++ b/docs/Transport-Correlation.md @@ -0,0 +1,80 @@ +# Transport correlation + +This note records the current boundary between the native adapter body format +and localhost transport. + +## Combined captures + +The combined runner starts Npcap loopback capture, then launches the harness +under Frida: + +```text +analysis\scripts\run_frida_loopback_capture.ps1 +``` + +Helper scripts: + +```text +analysis\scripts\map_frida_to_tcp.py +analysis\scripts\parse_dcerpc_streams.py +analysis\scripts\decode_mixed_local_stream.py +``` + +## Capture 043 + +```text +captures\043-frida-loopback-write-test-int-115 +``` + +This writes `TestChildObject.TestInt = 115`. It proved exact Frida adapter +bodies are not copied verbatim to TCP, but the scalar value `115` was ambiguous +because it also matched DCE/RPC call IDs in the same window. + +## Capture 044 + +```text +captures\044-frida-loopback-write-test-int-123456789 +``` + +This writes a distinctive value: + +```text +TestChildObject.TestInt = 123456789 +``` + +Results: + +| Needle | Result | +| --- | --- | +| raw little-endian `123456789` | not found anywhere in the full pcap payload scan | +| exact 40-byte Frida `PutRequest` body | not found in reassembled TCP streams | +| exact 86-byte Frida `TransferData` body | not found in reassembled TCP streams | +| exact 88-byte Frida callback body | not found in reassembled TCP streams | +| mixed `127.0.0.1:57415 <-> 57433` stream | parsed, raw value not found | +| DCE/RPC `::1:49704` streams | parsed 452 PDUs, raw value not found in request/response stubs | + +Generated files: + +```text +captures\044-frida-loopback-write-test-int-123456789\frida-to-tcp-map.tsv +captures\044-frida-loopback-write-test-int-123456789\dcerpc-stream-pdus.tsv +captures\044-frida-loopback-write-test-int-123456789\mixed-stream-57415-to-57433.tsv +captures\044-frida-loopback-write-test-int-123456789\mixed-stream-57433-to-57415.tsv +``` + +## Implication + +The `CNmxAdapter::PutRequest` and `CNmxAdapter::TransferData` buffers are an +internal adapter representation, not the TCP wire format. The wire transport +does not expose the write value as plain little-endian scalar bytes for this +distinctive-value capture. + +The next reverse-engineering step is to decode the structural bridge between +adapter bodies and transport messages: + +1. Correlate Frida call timestamps to DCE/RPC call IDs and mixed-stream record + windows. +2. Decode DCE/RPC NDR stubs for the observed context/opnum pairs. +3. Hook deeper in `NmxSvc.exe` around `CNmxControler::TransferData` and + `CNmxService::TransferData` so both sides of the adapter-to-service boundary + can be compared before TCP serialization. diff --git a/rust/.gitignore b/rust/.gitignore new file mode 100644 index 0000000..20a4036 --- /dev/null +++ b/rust/.gitignore @@ -0,0 +1,13 @@ +# Cargo build artifacts +/target/ +**/*.rs.bk +Cargo.lock.bak + +# IDE +.idea/ +.vscode/ +*.swp + +# Test fixture symlinks/junctions (per design/60-roadmap.md, copy is the +# portable default; live-only fixture trees should not be committed) +/tests/fixtures/ diff --git a/rust/Cargo.lock b/rust/Cargo.lock new file mode 100644 index 0000000..abad83c --- /dev/null +++ b/rust/Cargo.lock @@ -0,0 +1,117 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "mxaccess" +version = "0.0.0" +dependencies = [ + "mxaccess-codec", + "thiserror", +] + +[[package]] +name = "mxaccess-asb" +version = "0.0.0" +dependencies = [ + "mxaccess-asb-nettcp", + "mxaccess-codec", +] + +[[package]] +name = "mxaccess-asb-nettcp" +version = "0.0.0" + +[[package]] +name = "mxaccess-callback" +version = "0.0.0" +dependencies = [ + "mxaccess-codec", + "mxaccess-rpc", +] + +[[package]] +name = "mxaccess-codec" +version = "0.0.0" +dependencies = [ + "thiserror", +] + +[[package]] +name = "mxaccess-compat" +version = "0.0.0" +dependencies = [ + "mxaccess", +] + +[[package]] +name = "mxaccess-galaxy" +version = "0.0.0" + +[[package]] +name = "mxaccess-nmx" +version = "0.0.0" +dependencies = [ + "mxaccess-callback", + "mxaccess-codec", + "mxaccess-rpc", +] + +[[package]] +name = "mxaccess-rpc" +version = "0.0.0" + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" diff --git a/rust/Cargo.toml b/rust/Cargo.toml new file mode 100644 index 0000000..0115c54 --- /dev/null +++ b/rust/Cargo.toml @@ -0,0 +1,52 @@ +[workspace] +resolver = "3" +members = [ + "crates/mxaccess-codec", + "crates/mxaccess-galaxy", + "crates/mxaccess-rpc", + "crates/mxaccess-callback", + "crates/mxaccess-nmx", + "crates/mxaccess-asb-nettcp", + "crates/mxaccess-asb", + "crates/mxaccess", + "crates/mxaccess-compat", +] + +[workspace.package] +version = "0.0.0" +edition = "2024" +license = "MIT" +repository = "https://github.com//mxaccess" +rust-version = "1.85" +authors = ["Joseph Doherty "] + +# Workspace-level dependency pins. Crates opt in via `dep = { workspace = true }`. +# M0 stubs use minimal deps; the full pinned set per design/30-crate-topology.md +# will be uncommented as M1+ implementation lands. +[workspace.dependencies] +thiserror = "2" +tracing = "0.1" +async-trait = "0.1" +futures-util = "0.3" +bytes = "1" +byteorder = "1" +tokio = { version = "1", features = ["net", "io-util", "rt-multi-thread", "sync", "time", "macros"] } + +[workspace.lints.rust] +unsafe_op_in_unsafe_fn = "warn" + +[workspace.lints.clippy] +unwrap_used = "deny" +expect_used = "deny" +panic = "deny" +todo = "warn" # warn during M0 stubs; will tighten to deny post-M1 +unreachable = "deny" +indexing_slicing = "deny" + +[profile.release] +opt-level = 3 +lto = "thin" +codegen-units = 1 + +[profile.dev] +opt-level = 0 diff --git a/rust/README.md b/rust/README.md new file mode 100644 index 0000000..1bd9f50 --- /dev/null +++ b/rust/README.md @@ -0,0 +1,51 @@ +# mxaccess (Rust port) + +Native Rust replacement for AVEVA / Wonderware MXAccess. See `../design/` for +the architectural specification, `../src/` for the .NET reference (the +executable spec), and `../CLAUDE.md` for project-wide rules. + +## Status + +**M0** — Workspace skeleton. Stub types compile; nothing is implemented yet. +See `../design/60-roadmap.md` for the M0–M6 milestone plan. + +## Layout + +``` +rust/ + Cargo.toml workspace root + rust-toolchain.toml 1.85 stable + crates/ + mxaccess-codec/ pure protocol codec, no I/O + mxaccess-galaxy/ Galaxy SQL resolver (tiberius) + mxaccess-rpc/ DCE/RPC + NTLMv2 + OXID + OBJREF + mxaccess-callback/ INmxSvcCallback RPC server + mxaccess-nmx/ INmxService2 client + mxaccess-asb-nettcp/ net.tcp framing (MC-NMF + MC-NBFX/NBFS) + mxaccess-asb/ IASBIDataV2 client + mxaccess/ async session + Transport trait + public API + mxaccess-compat/ LMXProxyServer-shaped facade +``` + +## Build + +```powershell +cargo build --workspace +cargo test --workspace +cargo clippy --workspace -- -D warnings +cargo fmt --check +``` + +## Live probes + +```powershell +. ..\tools\Setup-LiveProbeEnv.ps1 +cargo test -p mxaccess --features live -- --ignored +``` + +The setup script fetches credentials from Infisical via +`wwtools/secrets/Get-Secret.ps1`. Never inline plaintext credentials. + +## License + +MIT — see `../LICENSE`. diff --git a/rust/crates/mxaccess-asb-nettcp/Cargo.toml b/rust/crates/mxaccess-asb-nettcp/Cargo.toml new file mode 100644 index 0000000..c95ac3b --- /dev/null +++ b/rust/crates/mxaccess-asb-nettcp/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "mxaccess-asb-nettcp" +description = "net.tcp framing layer: MC-NMF (.NET Message Framing) + MC-NBFX/NBFS (.NET Binary XML / dictionary string table) — the default binary message encoder for NetTcpBinding. Workspace-internal." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-asb-nettcp/src/lib.rs b/rust/crates/mxaccess-asb-nettcp/src/lib.rs new file mode 100644 index 0000000..f7fb78b --- /dev/null +++ b/rust/crates/mxaccess-asb-nettcp/src/lib.rs @@ -0,0 +1,15 @@ +//! `mxaccess-asb-nettcp` — `[MS-NMF]` framing + `[MC-NBFX]/[MC-NBFS]` binary +//! message encoding (the default `NetTcpBinding` encoder, **not** SOAP/XML). +//! +//! M0 stub. Real implementation lands in M5 — see `design/60-roadmap.md`. +//! The .NET reference at `src/MxAsbClient/MxAsbDataClient.cs:660-685` uses +//! `new NetTcpBinding(SecurityMode.None)` with no encoder override, which +//! selects `BinaryMessageEncodingBindingElement` by default. +//! +//! Implements two layers: +//! 1. `[MS-NMF]` framing (preamble, preamble-ack, sized-envelope, end, fault) +//! plus the reliable-session ack handling on the underlying `net.tcp` channel. +//! 2. `[MC-NBFX]` binary XML + `[MC-NBFS]` static dictionary that holds the +//! SOAP/WS-Addressing/`IASBIDataV2`-action strings. + +#![forbid(unsafe_code)] diff --git a/rust/crates/mxaccess-asb/Cargo.toml b/rust/crates/mxaccess-asb/Cargo.toml new file mode 100644 index 0000000..5ec9c0d --- /dev/null +++ b/rust/crates/mxaccess-asb/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "mxaccess-asb" +description = "IASBIDataV2 client — the alternate ASB data plane for the AVEVA System Platform." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] +mxaccess-codec = { path = "../mxaccess-codec" } +mxaccess-asb-nettcp = { path = "../mxaccess-asb-nettcp" } + +[features] +default = [] +# `dpapi` provides a Windows DPAPI-backed default impl of the `SecretProvider` +# trait. With `dpapi=off`, callers must inject a `SecretProvider` explicitly; +# otherwise `Session::builder()` fails at construction. +dpapi = [] + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-asb/src/lib.rs b/rust/crates/mxaccess-asb/src/lib.rs new file mode 100644 index 0000000..cb27e39 --- /dev/null +++ b/rust/crates/mxaccess-asb/src/lib.rs @@ -0,0 +1,5 @@ +//! `mxaccess-asb` — `IASBIDataV2` client. +//! +//! M0 stub. Real implementation lands in M5 — see `design/60-roadmap.md`. + +#![forbid(unsafe_code)] diff --git a/rust/crates/mxaccess-callback/Cargo.toml b/rust/crates/mxaccess-callback/Cargo.toml new file mode 100644 index 0000000..2cb04a5 --- /dev/null +++ b/rust/crates/mxaccess-callback/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "mxaccess-callback" +description = "TCP listener + RPC server for INmxSvcCallback and IRemUnknown (the callback exporter)." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] +mxaccess-rpc = { path = "../mxaccess-rpc" } +mxaccess-codec = { path = "../mxaccess-codec" } + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-callback/src/lib.rs b/rust/crates/mxaccess-callback/src/lib.rs new file mode 100644 index 0000000..8566dd9 --- /dev/null +++ b/rust/crates/mxaccess-callback/src/lib.rs @@ -0,0 +1,12 @@ +//! `mxaccess-callback` — `INmxSvcCallback` RPC server (the callback exporter). +//! +//! M0 stub. Real implementation lands in M2 — see `design/60-roadmap.md`. +//! +//! Opnums (verified against `src/MxNativeClient/NmxSvcCallbackMessages.cs:11-12`): +//! - `3` `DataReceived(bufferSize: i32, dataBuffer: sbyte[bufferSize]) -> hresult` +//! - `4` `StatusReceived(bufferSize: i32, statusBuffer: sbyte[bufferSize]) -> hresult` +//! +//! Plus the `IRemUnknown::RemQueryInterface` handler that completes the +//! server-side handshake against our exported OBJREF (DoD condition for M2). + +#![forbid(unsafe_code)] diff --git a/rust/crates/mxaccess-codec/Cargo.toml b/rust/crates/mxaccess-codec/Cargo.toml new file mode 100644 index 0000000..c0f58c1 --- /dev/null +++ b/rust/crates/mxaccess-codec/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "mxaccess-codec" +description = "Pure encoder/decoder for NMX wire types (envelope, write/advise/subscribe bodies, reference handles) and ASB Variant. No I/O. Compiles on every Rust target." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] +thiserror = { workspace = true } + +[features] +default = [] +serde = [] + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-codec/src/envelope.rs b/rust/crates/mxaccess-codec/src/envelope.rs new file mode 100644 index 0000000..5397212 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/envelope.rs @@ -0,0 +1,390 @@ +//! `NmxTransferEnvelope` — 46-byte NMX wire envelope. +//! +//! Direct port of `src/MxNativeCodec/NmxTransferEnvelope.cs`. The Rust port +//! adds `reserved6_10: [u8; 4]` preservation per CLAUDE.md unknown-bytes rule +//! — the .NET reference reads only Version/InnerLength/ProtocolMarker/MessageKind +//! and discards bytes 6..10 (`NmxTransferEnvelope.cs:39-75`); the Rust codec +//! round-trips them. + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; + +/// Encoded layout per `NmxTransferEnvelope.cs:23-37`: +/// +/// ```text +/// offset size field +/// 0 2 version u16 LE = 1 +/// 2 4 inner_length i32 LE = body.len() - 46 +/// 6 4 reserved6_10 [u8; 4] preserved verbatim by Rust port +/// 10 4 message_kind i32 LE 1=Metadata, 2=ItemControl, 3=Write +/// 14 4 source_galaxy_id i32 LE +/// 18 4 source_platform_id i32 LE +/// 22 4 local_engine_id i32 LE +/// 26 4 target_galaxy_id i32 LE +/// 30 4 target_platform_id i32 LE +/// 34 4 target_engine_id i32 LE +/// 38 4 protocol_marker i32 LE = 0x0201 (bytes: 01 02 00 00) +/// 42 4 timeout_ms i32 LE default 30000 +/// 46+ body... +/// ``` +pub const ENVELOPE_HEADER_LEN: usize = 46; + +const VERSION: u16 = 1; +const PROTOCOL_MARKER: i32 = 0x0201; +const DEFAULT_TIMEOUT_MS: i32 = 30000; + +const INNER_LENGTH_OFFSET: usize = 2; +const RESERVED_OFFSET: usize = 6; +const MESSAGE_KIND_OFFSET: usize = 10; +const SOURCE_GALAXY_OFFSET: usize = 14; +const SOURCE_PLATFORM_OFFSET: usize = 18; +const LOCAL_ENGINE_OFFSET: usize = 22; +const TARGET_GALAXY_OFFSET: usize = 26; +const TARGET_PLATFORM_OFFSET: usize = 30; +const TARGET_ENGINE_OFFSET: usize = 34; +const PROTOCOL_MARKER_OFFSET: usize = 38; +const TIMEOUT_OFFSET: usize = 42; + +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +#[non_exhaustive] +#[repr(u8)] +pub enum NmxTransferMessageKind { + #[default] + Unknown = 0, + Metadata = 1, + ItemControl = 2, + Write = 3, +} + +impl NmxTransferMessageKind { + fn from_i32(value: i32) -> Self { + match value { + 1 => Self::Metadata, + 2 => Self::ItemControl, + 3 => Self::Write, + _ => Self::Unknown, + } + } + + fn to_i32(self) -> i32 { + match self { + Self::Unknown => 0, + Self::Metadata => 1, + Self::ItemControl => 2, + Self::Write => 3, + } + } +} + +/// 46-byte envelope. `reserved6_10` is preserved verbatim — the .NET reference +/// discards these bytes on parse and writes 0 on encode. The Rust port carries +/// them through so captured envelopes with non-zero values at offset 6..10 +/// round-trip byte-identical. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub struct NmxTransferEnvelope { + pub message_kind: NmxTransferMessageKind, + pub source_galaxy_id: i32, + pub source_platform_id: i32, + pub local_engine_id: i32, + pub target_galaxy_id: i32, + pub target_platform_id: i32, + pub target_engine_id: i32, + pub timeout_ms: i32, + /// Bytes 6..10 of the envelope. The .NET reference does not retain these; + /// the Rust port preserves them per CLAUDE.md unknown-bytes rule. + /// Defaults to `[0; 4]` for newly-constructed envelopes. + pub reserved6_10: [u8; 4], +} + +impl Default for NmxTransferEnvelope { + fn default() -> Self { + Self { + message_kind: NmxTransferMessageKind::default(), + source_galaxy_id: 1, + source_platform_id: 1, + local_engine_id: 0, + target_galaxy_id: 0, + target_platform_id: 0, + target_engine_id: 0, + timeout_ms: DEFAULT_TIMEOUT_MS, + reserved6_10: [0; 4], + } + } +} + +impl NmxTransferEnvelope { + /// Header length in bytes. + pub const HEADER_LEN: usize = ENVELOPE_HEADER_LEN; + + /// Parse a transfer body — the 46-byte header followed by the inner body. + /// Returns the parsed envelope and the inner body length (the inner bytes + /// themselves are accessed by the caller via `&transfer_body[46..]`). + /// + /// Mirrors `NmxTransferEnvelope.Parse` (`NmxTransferEnvelope.cs:39-75`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `transfer_body.len() < 46`. + /// - [`CodecError::UnsupportedVersion`] if version != 1. + /// - [`CodecError::InnerLengthMismatch`] if the declared `inner_length` + /// does not match `transfer_body.len() - 46`. + /// - [`CodecError::UnsupportedProtocolMarker`] if the marker != 0x0201. + pub fn parse(transfer_body: &[u8]) -> Result { + if transfer_body.len() < Self::HEADER_LEN { + return Err(CodecError::ShortRead { + expected: Self::HEADER_LEN, + actual: transfer_body.len(), + }); + } + + let version = read_u16_le(transfer_body, 0); + if version != VERSION { + return Err(CodecError::UnsupportedVersion { + expected: VERSION, + actual: version, + }); + } + + let inner_length = read_i32_le(transfer_body, INNER_LENGTH_OFFSET); + let actual_inner = transfer_body.len() - Self::HEADER_LEN; + if inner_length != actual_inner as i32 { + return Err(CodecError::InnerLengthMismatch { + declared: inner_length, + actual: actual_inner, + }); + } + + let protocol_marker = read_i32_le(transfer_body, PROTOCOL_MARKER_OFFSET); + if protocol_marker != PROTOCOL_MARKER { + return Err(CodecError::UnsupportedProtocolMarker(protocol_marker)); + } + + let mut reserved6_10 = [0u8; 4]; + reserved6_10.copy_from_slice(&transfer_body[RESERVED_OFFSET..RESERVED_OFFSET + 4]); + + Ok(Self { + message_kind: NmxTransferMessageKind::from_i32(read_i32_le( + transfer_body, + MESSAGE_KIND_OFFSET, + )), + source_galaxy_id: read_i32_le(transfer_body, SOURCE_GALAXY_OFFSET), + source_platform_id: read_i32_le(transfer_body, SOURCE_PLATFORM_OFFSET), + local_engine_id: read_i32_le(transfer_body, LOCAL_ENGINE_OFFSET), + target_galaxy_id: read_i32_le(transfer_body, TARGET_GALAXY_OFFSET), + target_platform_id: read_i32_le(transfer_body, TARGET_PLATFORM_OFFSET), + target_engine_id: read_i32_le(transfer_body, TARGET_ENGINE_OFFSET), + timeout_ms: read_i32_le(transfer_body, TIMEOUT_OFFSET), + reserved6_10, + }) + } + + /// Encode the envelope header into the front of `transfer_body`. The + /// caller is responsible for providing a buffer of length + /// `46 + inner_body.len()` and copying the inner body into the tail + /// before transmission. + /// + /// Mirrors `NmxTransferEnvelope.Encode` (`NmxTransferEnvelope.cs:77-103`) + /// but additionally writes `reserved6_10` (the .NET version always writes 0). + /// + /// # Errors + /// + /// Returns [`CodecError::InnerLengthMismatch`] if `transfer_body.len() < 46`. + pub fn write_to(self, transfer_body: &mut [u8]) -> Result<(), CodecError> { + if transfer_body.len() < Self::HEADER_LEN { + return Err(CodecError::InnerLengthMismatch { + declared: 0, + actual: transfer_body.len(), + }); + } + + let inner_len = transfer_body.len() - Self::HEADER_LEN; + write_u16_le(transfer_body, 0, VERSION); + write_i32_le(transfer_body, INNER_LENGTH_OFFSET, inner_len as i32); + transfer_body[RESERVED_OFFSET..RESERVED_OFFSET + 4].copy_from_slice(&self.reserved6_10); + write_i32_le( + transfer_body, + MESSAGE_KIND_OFFSET, + self.message_kind.to_i32(), + ); + write_i32_le(transfer_body, SOURCE_GALAXY_OFFSET, self.source_galaxy_id); + write_i32_le( + transfer_body, + SOURCE_PLATFORM_OFFSET, + self.source_platform_id, + ); + write_i32_le(transfer_body, LOCAL_ENGINE_OFFSET, self.local_engine_id); + write_i32_le(transfer_body, TARGET_GALAXY_OFFSET, self.target_galaxy_id); + write_i32_le( + transfer_body, + TARGET_PLATFORM_OFFSET, + self.target_platform_id, + ); + write_i32_le(transfer_body, TARGET_ENGINE_OFFSET, self.target_engine_id); + write_i32_le(transfer_body, PROTOCOL_MARKER_OFFSET, PROTOCOL_MARKER); + write_i32_le(transfer_body, TIMEOUT_OFFSET, self.timeout_ms); + Ok(()) + } + + /// Convenience encoder that allocates a buffer of `46 + inner_body.len()`, + /// writes the header, and copies `inner_body` into the tail. Mirrors the + /// shape of `NmxTransferEnvelope.Encode`. + pub fn encode_with_inner(self, inner_body: &[u8]) -> Vec { + let mut out = vec![0u8; Self::HEADER_LEN + inner_body.len()]; + // write_to validates and never errors when the buffer is large enough, + // so this branch is unreachable in practice. We propagate the bug as + // an empty buffer rather than panicking. + if self.write_to(&mut out).is_err() { + return Vec::new(); + } + out[Self::HEADER_LEN..].copy_from_slice(inner_body); + out + } +} + +#[inline] +fn read_u16_le(bytes: &[u8], offset: usize) -> u16 { + u16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn write_u16_le(bytes: &mut [u8], offset: usize, value: u16) { + let le = value.to_le_bytes(); + bytes[offset..offset + 2].copy_from_slice(&le); +} + +#[inline] +fn write_i32_le(bytes: &mut [u8], offset: usize, value: i32) { + let le = value.to_le_bytes(); + bytes[offset..offset + 4].copy_from_slice(&le); +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + fn sample_envelope() -> NmxTransferEnvelope { + NmxTransferEnvelope { + message_kind: NmxTransferMessageKind::Write, + source_galaxy_id: 1, + source_platform_id: 1, + local_engine_id: 5, + target_galaxy_id: 1, + target_platform_id: 2, + target_engine_id: 17, + timeout_ms: 30000, + reserved6_10: [0; 4], + } + } + + #[test] + fn round_trip_default_envelope() { + let env = sample_envelope(); + let inner = [0xab, 0xcd, 0xef]; + let encoded = env.encode_with_inner(&inner); + assert_eq!(encoded.len(), 46 + 3); + let parsed = NmxTransferEnvelope::parse(&encoded).unwrap(); + assert_eq!(env, parsed); + assert_eq!(&encoded[46..], &inner); + } + + #[test] + fn protocol_marker_bytes_are_le() { + let env = sample_envelope(); + let encoded = env.encode_with_inner(&[]); + // 0x0201 LE = 01 02 00 00 + assert_eq!(encoded[38], 0x01); + assert_eq!(encoded[39], 0x02); + assert_eq!(encoded[40], 0x00); + assert_eq!(encoded[41], 0x00); + } + + #[test] + fn version_bytes_are_le_one() { + let env = sample_envelope(); + let encoded = env.encode_with_inner(&[]); + assert_eq!(encoded[0], 0x01); + assert_eq!(encoded[1], 0x00); + } + + #[test] + fn reserved_bytes_round_trip() { + // Construct an envelope with non-zero reserved bytes (as if parsed + // from a captured frame). Encode and re-parse — they must survive. + let env = NmxTransferEnvelope { + reserved6_10: [0xde, 0xad, 0xbe, 0xef], + ..sample_envelope() + }; + let encoded = env.encode_with_inner(&[]); + assert_eq!(&encoded[6..10], &[0xde, 0xad, 0xbe, 0xef]); + let parsed = NmxTransferEnvelope::parse(&encoded).unwrap(); + assert_eq!(parsed.reserved6_10, [0xde, 0xad, 0xbe, 0xef]); + } + + #[test] + fn parse_rejects_wrong_version() { + let mut encoded = sample_envelope().encode_with_inner(&[]); + encoded[0] = 0x02; // version = 2 + let err = NmxTransferEnvelope::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::UnsupportedVersion { .. })); + } + + #[test] + fn parse_rejects_inner_length_mismatch() { + let mut encoded = sample_envelope().encode_with_inner(&[0; 4]); + // Corrupt the inner_length field to claim 100 inner bytes when + // there are only 4. + write_i32_le(&mut encoded, INNER_LENGTH_OFFSET, 100); + let err = NmxTransferEnvelope::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::InnerLengthMismatch { .. })); + } + + #[test] + fn parse_rejects_wrong_protocol_marker() { + let mut encoded = sample_envelope().encode_with_inner(&[]); + write_i32_le(&mut encoded, PROTOCOL_MARKER_OFFSET, 0x0102); + let err = NmxTransferEnvelope::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::UnsupportedProtocolMarker(0x0102))); + } + + #[test] + fn parse_rejects_short_buffer() { + let err = NmxTransferEnvelope::parse(&[0u8; 45]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn message_kind_round_trips() { + for kind in [ + NmxTransferMessageKind::Metadata, + NmxTransferMessageKind::ItemControl, + NmxTransferMessageKind::Write, + ] { + let env = NmxTransferEnvelope { + message_kind: kind, + ..sample_envelope() + }; + let encoded = env.encode_with_inner(&[]); + let parsed = NmxTransferEnvelope::parse(&encoded).unwrap(); + assert_eq!(parsed.message_kind, kind); + } + } + + #[test] + fn header_length_constant() { + assert_eq!(NmxTransferEnvelope::HEADER_LEN, 46); + assert_eq!(ENVELOPE_HEADER_LEN, 46); + } +} diff --git a/rust/crates/mxaccess-codec/src/envelope_template.rs b/rust/crates/mxaccess-codec/src/envelope_template.rs new file mode 100644 index 0000000..24c8f49 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/envelope_template.rs @@ -0,0 +1,408 @@ +//! `NmxTransferEnvelopeTemplate` — buffer-preserving alternative to +//! [`crate::NmxTransferEnvelope`]. +//! +//! Direct port of `src/MxNativeCodec/NmxTransferEnvelopeTemplate.cs`. +//! +//! Where [`crate::NmxTransferEnvelope`] decodes the 46-byte header into typed +//! fields and re-encodes them, the template path **takes a captured 46-byte +//! header verbatim and only patches the field(s) the caller asks to patch**. +//! Every other byte in the header — including any reserved/unknown bytes the +//! typed codec ignores — is preserved bit-for-bit. +//! +//! This is the path used for high-fidelity replay against the AVEVA stack +//! when the captured envelope contains bytes whose meaning is unproven and +//! the round-trip must remain byte-identical to the capture. +//! +//! # Differences from the .NET reference +//! +//! - Setters return a new value (`with_inner_length`, `with_message_kind`) +//! rather than mutating in place. The underlying header buffer is owned +//! by the template, so `with_*` methods clone the buffer before patching. +//! The .NET reference does not expose setters — it re-encodes only the +//! `inner_length` field on every `Encode` call. The Rust port adds +//! targeted setters for forward use cases without breaking the +//! "patch only what the caller patches" contract. +//! - `decode_inner` returns a borrow (`&[u8]`) rather than a `ReadOnlyMemory`. + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::NmxTransferMessageKind; +use crate::error::CodecError; + +/// Header length in bytes (`NmxTransferEnvelopeTemplate.cs:7`). +pub const HEADER_LENGTH: usize = 46; + +/// Offset of the `inner_length` i32 LE field +/// (`NmxTransferEnvelopeTemplate.cs:8`). +pub const INNER_LENGTH_OFFSET: usize = 2; + +/// Offset of the `message_kind` i32 LE field. Mirrors the constant of the +/// same name in [`crate::envelope`]. +const MESSAGE_KIND_OFFSET: usize = 10; + +/// Round-trip preserver for an observed 46-byte transfer envelope. +/// +/// Internally stores the captured 46-byte header verbatim. Setters +/// (`with_inner_length`, `with_message_kind`) return a clone with only the +/// targeted bytes patched. [`Self::encode`] writes the header followed by the +/// supplied inner body, patching `inner_length` to match. +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct NmxTransferEnvelopeTemplate { + /// The captured 46-byte header, byte-for-byte (`NmxTransferEnvelopeTemplate.cs:10`). + header: [u8; HEADER_LENGTH], +} + +impl NmxTransferEnvelopeTemplate { + /// Header length in bytes (matches `NmxTransferEnvelopeTemplate.HeaderLength`). + pub const HEADER_LEN: usize = HEADER_LENGTH; + + /// Construct a template from an observed `TransferData` body. + /// + /// The body must be at least 46 bytes long, and the `inner_length` field + /// at offset 2 must declare exactly `body.len() - 46` bytes. Mirrors + /// `FromObserved` (`NmxTransferEnvelopeTemplate.cs:17-31`). + /// + /// Only the leading 46 bytes are retained — the inner body is dropped. + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `observed_transfer_body.len() < 46` + /// (`NmxTransferEnvelopeTemplate.cs:19-22`). + /// - [`CodecError::InnerLengthMismatch`] if the declared `inner_length` + /// field does not match the actual inner length + /// (`NmxTransferEnvelopeTemplate.cs:24-28`). + pub fn from_observed(observed_transfer_body: &[u8]) -> Result { + if observed_transfer_body.len() < HEADER_LENGTH { + return Err(CodecError::ShortRead { + expected: HEADER_LENGTH, + actual: observed_transfer_body.len(), + }); + } + + let inner_length = read_i32_le(observed_transfer_body, INNER_LENGTH_OFFSET); + let actual_inner = observed_transfer_body.len() - HEADER_LENGTH; + if inner_length != actual_inner as i32 { + return Err(CodecError::InnerLengthMismatch { + declared: inner_length, + actual: actual_inner, + }); + } + + let mut header = [0u8; HEADER_LENGTH]; + header.copy_from_slice(&observed_transfer_body[..HEADER_LENGTH]); + Ok(Self { header }) + } + + /// Borrow the captured 46-byte header. Useful for round-trip identity + /// asserts and for callers that need to inspect reserved/unknown bytes + /// without going through the typed [`crate::NmxTransferEnvelope`] codec. + pub fn header(&self) -> &[u8; HEADER_LENGTH] { + &self.header + } + + /// Return a new template with `inner_length` (offset 2, i32 LE) patched + /// to `inner_length`. Every other byte is preserved. + /// + /// Note: [`Self::encode`] also patches `inner_length` to match the supplied + /// inner body. This setter exists for callers that need to manipulate the + /// template separately from encoding. + #[must_use] + pub fn with_inner_length(mut self, inner_length: i32) -> Self { + write_i32_le(&mut self.header, INNER_LENGTH_OFFSET, inner_length); + self + } + + /// Return a new template with `message_kind` (offset 10, i32 LE) patched + /// to `kind`. Every other byte is preserved. + /// + /// `NmxTransferMessageKind::Unknown` encodes as 0 — same as the typed + /// codec ([`crate::envelope`]). + #[must_use] + pub fn with_message_kind(mut self, kind: NmxTransferMessageKind) -> Self { + let value: i32 = match kind { + NmxTransferMessageKind::Unknown => 0, + NmxTransferMessageKind::Metadata => 1, + NmxTransferMessageKind::ItemControl => 2, + NmxTransferMessageKind::Write => 3, + }; + write_i32_le(&mut self.header, MESSAGE_KIND_OFFSET, value); + self + } + + /// Encode the captured header followed by `inner_put_request_body`, + /// patching the `inner_length` field at offset 2 to match the supplied + /// inner body length. + /// + /// Mirrors `Encode` (`NmxTransferEnvelopeTemplate.cs:33-40`). Allocates a + /// fresh `Vec` of length `46 + inner_put_request_body.len()`. + pub fn encode(&self, inner_put_request_body: &[u8]) -> Vec { + let inner_len = inner_put_request_body.len(); + let mut body = vec![0u8; HEADER_LENGTH + inner_len]; + body[..HEADER_LENGTH].copy_from_slice(&self.header); + // Patch the inner_length field — `NmxTransferEnvelopeTemplate.cs:37`. + // `inner_len as i32` matches the .NET `int` cast. + write_i32_le(&mut body, INNER_LENGTH_OFFSET, inner_len as i32); + body[HEADER_LENGTH..].copy_from_slice(inner_put_request_body); + body + } + + /// Strip the 46-byte header off `transfer_body` and return a borrow of + /// the inner bytes. + /// + /// Mirrors `DecodeInner` (`NmxTransferEnvelopeTemplate.cs:42-56`). Validates + /// that the declared `inner_length` matches the actual inner body length. + /// Does **not** verify that the captured 46-byte prefix matches the + /// template's stored header — by design, the template path is a + /// permissive round-trip; if the caller wants strict validation they + /// should use [`crate::NmxTransferEnvelope::parse`]. + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `transfer_body.len() < 46` + /// (`NmxTransferEnvelopeTemplate.cs:44-47`). + /// - [`CodecError::InnerLengthMismatch`] if the declared `inner_length` + /// does not match the actual inner length + /// (`NmxTransferEnvelopeTemplate.cs:49-53`). + pub fn decode_inner<'a>(&self, transfer_body: &'a [u8]) -> Result<&'a [u8], CodecError> { + if transfer_body.len() < HEADER_LENGTH { + return Err(CodecError::ShortRead { + expected: HEADER_LENGTH, + actual: transfer_body.len(), + }); + } + + let inner_length = read_i32_le(transfer_body, INNER_LENGTH_OFFSET); + let actual_inner = transfer_body.len() - HEADER_LENGTH; + if inner_length != actual_inner as i32 { + return Err(CodecError::InnerLengthMismatch { + declared: inner_length, + actual: actual_inner, + }); + } + + Ok(&transfer_body[HEADER_LENGTH..]) + } +} + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn write_i32_le(bytes: &mut [u8], offset: usize, value: i32) { + let le = value.to_le_bytes(); + bytes[offset..offset + 4].copy_from_slice(&le); +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + /// Build a synthetic 46-byte header with each byte tagged so we can + /// verify which bytes the round-trip preserves vs. patches. + /// Offsets 2..6 are written explicitly so `inner_length` validates; + /// every other byte is `0xA0 + offset & 0xff` so reserved-byte + /// preservation is observable. + fn synthetic_header_with_inner_len(inner_len: i32) -> [u8; HEADER_LENGTH] { + let mut header = [0u8; HEADER_LENGTH]; + for (i, b) in header.iter_mut().enumerate() { + *b = 0xA0u8.wrapping_add(i as u8); + } + write_i32_le(&mut header, INNER_LENGTH_OFFSET, inner_len); + header + } + + #[test] + fn header_length_constant() { + assert_eq!(HEADER_LENGTH, 46); + assert_eq!(NmxTransferEnvelopeTemplate::HEADER_LEN, 46); + } + + #[test] + fn round_trip_zero_inner() { + // No inner body — header preserved exactly. + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + let encoded = template.encode(&[]); + assert_eq!(encoded.len(), HEADER_LENGTH); + assert_eq!(&encoded[..], &header[..]); + } + + #[test] + fn from_observed_rejects_short_buffer() { + let err = NmxTransferEnvelopeTemplate::from_observed(&[0u8; 45]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn from_observed_rejects_inner_length_mismatch() { + let mut buf = [0u8; HEADER_LENGTH + 8]; + // Claim 100 inner bytes when only 8 follow. + write_i32_le(&mut buf, INNER_LENGTH_OFFSET, 100); + let err = NmxTransferEnvelopeTemplate::from_observed(&buf).unwrap_err(); + assert!(matches!(err, CodecError::InnerLengthMismatch { .. })); + } + + #[test] + fn encode_patches_inner_length() { + // Template has inner_length = 0 baked in. Encoding with an 8-byte + // inner body should patch inner_length to 8. + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + let inner = [0xDEu8, 0xAD, 0xBE, 0xEF, 0x12, 0x34, 0x56, 0x78]; + let encoded = template.encode(&inner); + assert_eq!(encoded.len(), HEADER_LENGTH + 8); + assert_eq!(read_i32_le(&encoded, INNER_LENGTH_OFFSET), 8); + // Inner body must follow. + assert_eq!(&encoded[HEADER_LENGTH..], &inner); + } + + #[test] + fn encode_preserves_every_byte_outside_inner_length_field() { + // Build a template from a header packed with non-trivial bytes. + // After encoding with arbitrary inner data, every header byte + // outside offset 2..6 must match the original header. + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + let inner = vec![0u8; 32]; + let encoded = template.encode(&inner); + for i in 0..HEADER_LENGTH { + if (INNER_LENGTH_OFFSET..INNER_LENGTH_OFFSET + 4).contains(&i) { + continue; + } + assert_eq!( + encoded[i], header[i], + "byte at offset {i} must be preserved verbatim" + ); + } + } + + #[test] + fn with_inner_length_patches_only_inner_length_field() { + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + let patched = template.with_inner_length(0x12345678); + let patched_header = patched.header(); + // Inner length field reflects the patch. + assert_eq!(read_i32_le(patched_header, INNER_LENGTH_OFFSET), 0x12345678); + // Every other byte unchanged. + for i in 0..HEADER_LENGTH { + if (INNER_LENGTH_OFFSET..INNER_LENGTH_OFFSET + 4).contains(&i) { + continue; + } + assert_eq!(patched_header[i], header[i]); + } + } + + #[test] + fn with_message_kind_patches_only_message_kind_field() { + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + let patched = template.with_message_kind(NmxTransferMessageKind::Write); + let patched_header = patched.header(); + // Message-kind field reflects the patch (Write = 3). + assert_eq!(read_i32_le(patched_header, MESSAGE_KIND_OFFSET), 3); + // Every other byte unchanged. + for i in 0..HEADER_LENGTH { + if (MESSAGE_KIND_OFFSET..MESSAGE_KIND_OFFSET + 4).contains(&i) { + continue; + } + assert_eq!(patched_header[i], header[i]); + } + } + + #[test] + fn with_message_kind_round_trips_all_variants() { + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + for (kind, expected) in [ + (NmxTransferMessageKind::Unknown, 0), + (NmxTransferMessageKind::Metadata, 1), + (NmxTransferMessageKind::ItemControl, 2), + (NmxTransferMessageKind::Write, 3), + ] { + let patched = template.clone().with_message_kind(kind); + assert_eq!( + read_i32_le(patched.header(), MESSAGE_KIND_OFFSET), + expected, + "kind {kind:?} must encode as {expected}" + ); + } + } + + #[test] + fn decode_inner_returns_inner_body() { + // Build the full 50-byte buffer first; `from_observed` validates that + // the buffer length matches the declared inner_length, so we must + // pass header+inner together. + let header = synthetic_header_with_inner_len(4); + let mut full = vec![0u8; HEADER_LENGTH + 4]; + full[..HEADER_LENGTH].copy_from_slice(&header); + full[HEADER_LENGTH..].copy_from_slice(&[0x11, 0x22, 0x33, 0x44]); + let template = NmxTransferEnvelopeTemplate::from_observed(&full).unwrap(); + let inner = template.decode_inner(&full).unwrap(); + assert_eq!(inner, &[0x11, 0x22, 0x33, 0x44]); + } + + #[test] + fn decode_inner_rejects_short_buffer() { + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + let err = template.decode_inner(&[0u8; 45]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn decode_inner_rejects_inner_length_mismatch() { + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + // Build a 46+8 byte body but with inner_length declared as 0. + let mut full = vec![0u8; HEADER_LENGTH + 8]; + full[..HEADER_LENGTH].copy_from_slice(&header); + // header has inner_length = 0; actual inner is 8 → mismatch. + let err = template.decode_inner(&full).unwrap_err(); + assert!(matches!(err, CodecError::InnerLengthMismatch { .. })); + } + + #[test] + fn header_accessor_returns_captured_bytes() { + let header = synthetic_header_with_inner_len(0); + let template = NmxTransferEnvelopeTemplate::from_observed(&header).unwrap(); + assert_eq!(template.header(), &header); + } + + #[test] + fn captured_observed_body_is_preserved_byte_for_byte() { + // Simulates a captured envelope where bytes outside the four typed + // fields carry non-zero "reserved" data. The template path must + // round-trip every byte. The typed `NmxTransferEnvelope` codec + // would normally strip / synthesise these bytes; the template + // sidesteps that. + let mut captured = [0u8; HEADER_LENGTH + 12]; + // Pack the header with a recognisable pattern. + for (i, b) in captured[..HEADER_LENGTH].iter_mut().enumerate() { + *b = 0xA5u8.wrapping_add(i as u8); + } + // Set inner_length = 12 so from_observed accepts it. + write_i32_le(&mut captured, INNER_LENGTH_OFFSET, 12); + // Inner body bytes. + for (i, b) in captured[HEADER_LENGTH..].iter_mut().enumerate() { + *b = 0xC0u8.wrapping_add(i as u8); + } + + let template = NmxTransferEnvelopeTemplate::from_observed(&captured).unwrap(); + let encoded = template.encode(&captured[HEADER_LENGTH..]); + assert_eq!( + encoded, captured, + "round-trip via template must be byte-identical" + ); + } +} diff --git a/rust/crates/mxaccess-codec/src/error.rs b/rust/crates/mxaccess-codec/src/error.rs new file mode 100644 index 0000000..5207fc9 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/error.rs @@ -0,0 +1,40 @@ +//! Codec-level errors. Used by [`MxReferenceHandle`](crate::MxReferenceHandle), +//! [`NmxTransferEnvelope`](crate::NmxTransferEnvelope), and the M1+ message +//! codecs. + +use thiserror::Error; + +#[derive(Debug, Error)] +#[non_exhaustive] +pub enum CodecError { + /// A buffer was shorter than required to decode the type. + #[error("short read: expected {expected} bytes, got {actual}")] + ShortRead { expected: usize, actual: usize }, + + /// `name.trim().is_empty()`. Mirrors `ArgumentException.ThrowIfNullOrWhiteSpace` + /// in `MxReferenceHandle.cs:49`. + #[error("name must not be empty or whitespace-only")] + InvalidName, + + /// The `inner_length` field declared in an envelope did not match the + /// actual body size. + #[error("inner length {declared} does not match body size {actual}")] + InnerLengthMismatch { declared: i32, actual: usize }, + + #[error("unsupported version {actual} (expected {expected})")] + UnsupportedVersion { expected: u16, actual: u16 }, + + #[error("unsupported protocol marker {0:#010x}")] + UnsupportedProtocolMarker(i32), + + #[error("unexpected opcode {0:#04x}")] + UnexpectedOpcode(u8), + + /// Decoder failure with a position and human-readable reason. + #[error("decode at offset {offset} ({reason}); buffer len {buffer_len}")] + Decode { + offset: usize, + reason: &'static str, + buffer_len: usize, + }, +} diff --git a/rust/crates/mxaccess-codec/src/item_control.rs b/rust/crates/mxaccess-codec/src/item_control.rs new file mode 100644 index 0000000..1655f6e --- /dev/null +++ b/rust/crates/mxaccess-codec/src/item_control.rs @@ -0,0 +1,550 @@ +//! `NmxItemControlMessage` — NMX item-control body (advise / unadvise). +//! +//! Direct port of `src/MxNativeCodec/NmxItemControlMessage.cs`. The body +//! carries an advise-supervisory or unadvise command together with a 16-byte +//! item correlation GUID and a 14-byte projection of an [`MxReferenceHandle`] +//! (handle bytes 6..20 — `object_id` through `attribute_index`). +//! +//! ## Wire layout +//! +//! Per `NmxItemControlMessage.cs:24-36, 63-81, 121-142`: +//! +//! ```text +//! offset size field notes +//! 0 1 command (u8) 0x1f AdviseSupervisory, 0x21 UnAdvise +//! 1 2 version (u16 LE) must be 1 +//! 3 16 item_correlation_id (GUID) .NET layout (mixed-endian) +//! 19 2 advise extra (u16 LE) ONLY when command == AdviseSupervisory +//! [+2 if advise] +//! 19/21 2 object_id (u16 LE) +//! +2 2 object_signature (u16 LE) +//! +4 2 primitive_id (i16 LE) +//! +6 2 attribute_id (i16 LE) +//! +8 2 property_id (i16 LE) +//! +10 2 attribute_signature (u16 LE) +//! +12 2 attribute_index (i16 LE) +//! +14 4 tail (u32 LE) default 3 per cs:88 +//! ``` +//! +//! Total: 39 bytes for AdviseSupervisory, 37 bytes for UnAdvise. +//! +//! ## Opcode invariant +//! +//! `Advise` and `AdviseSupervisory` share opcode `0x1f` in the .NET enum +//! (`NmxItemControlMessage.cs:7-8`). The parser explicitly rejects anything +//! that is not `AdviseSupervisory` or `UnAdvise` (`cs:46-49`); there is no +//! 37-byte plain-Advise wire shape. The Rust port mirrors this: the public +//! command type only exposes `AdviseSupervisory` and `UnAdvise`. + +// Direct byte indexing — see reference_handle.rs for rationale. Every read or +// write is preceded by an explicit length check that mirrors the .NET source's +// `ReadOnlySpan` slicing, so the resulting code reads as a 1:1 mirror of +// `BinaryPrimitives` calls. +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; + +/// NMX item-control command opcode. +/// +/// In the .NET reference this is a `byte` enum where `Advise` and +/// `AdviseSupervisory` are aliases for `0x1f` (`NmxItemControlMessage.cs:5-10`). +/// Only `AdviseSupervisory` and `UnAdvise` are accepted on the wire +/// (`cs:46-49`), so the Rust enum collapses the alias and exposes just those +/// two variants. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +#[repr(u8)] +pub enum NmxItemControlCommand { + /// `0x1f`. Per `NmxItemControlMessage.cs:8`. + AdviseSupervisory = 0x1f, + /// `0x21`. Per `NmxItemControlMessage.cs:9`. + UnAdvise = 0x21, +} + +impl NmxItemControlCommand { + /// Map a wire byte to a command, mirroring the parser check at + /// `NmxItemControlMessage.cs:45-49`. + fn from_u8(value: u8) -> Result { + match value { + 0x1f => Ok(Self::AdviseSupervisory), + 0x21 => Ok(Self::UnAdvise), + other => Err(CodecError::UnexpectedOpcode(other)), + } + } + + fn to_u8(self) -> u8 { + self as u8 + } +} + +/// Wire-format constants from `NmxItemControlMessage.cs:24-28`. +const VERSION: u16 = 1; +const HEADER_LENGTH: usize = 3; // cmd(1) + version u16(2) +const GUID_LENGTH: usize = 16; // cs:26 +const ADVISE_EXTRA_LENGTH: usize = 2; // cs:27 +const PAYLOAD_LENGTH: usize = 18; // cs:28 — 7×u16 + u32 tail = 18 bytes + +/// Default tail value used by `FromReferenceHandle` (`NmxItemControlMessage.cs:88`). +pub const DEFAULT_TAIL: u32 = 3; + +/// Decoded NMX item-control body. The fields after `item_correlation_id` +/// project bytes 6..20 of an [`MxReferenceHandle`] — see +/// `NmxItemControlMessage.cs:71-81, 134-141`. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub struct NmxItemControlMessage { + pub command: NmxItemControlCommand, + /// 16-byte GUID. Stored as raw bytes in .NET-`Guid` layout (the layout + /// produced by `Guid.TryWriteBytes` and consumed by `new Guid(span)` — + /// mixed-endian: little-endian `Data1`/`Data2`/`Data3`, big-endian + /// `Data4`/`Data4Tail`). The Rust port stays at the byte level so the + /// .NET-shape round-trips exactly. See `NmxItemControlMessage.cs:64, 127`. + pub item_correlation_id: [u8; GUID_LENGTH], + pub object_id: u16, + pub object_signature: u16, + pub primitive_id: i16, + pub attribute_id: i16, + pub property_id: i16, + pub attribute_signature: u16, + pub attribute_index: i16, + /// Trailing u32. Default `3` per `NmxItemControlMessage.cs:88`. + pub tail: u32, +} + +impl NmxItemControlMessage { + /// Encoded length for a given command. Matches + /// `NmxItemControlMessage.GetEncodedLength` (`cs:30-36`): + /// 39 bytes for AdviseSupervisory, 37 bytes for UnAdvise. + #[must_use] + pub fn encoded_length(command: NmxItemControlCommand) -> usize { + HEADER_LENGTH + + GUID_LENGTH + + match command { + NmxItemControlCommand::AdviseSupervisory => ADVISE_EXTRA_LENGTH, + NmxItemControlCommand::UnAdvise => 0, + } + + PAYLOAD_LENGTH + } + + /// Construct a message from the bytes 6..20 of a reference handle. + /// Mirrors `NmxItemControlMessage.FromReferenceHandle` (`cs:84-101`). + /// + /// `tail` defaults to [`DEFAULT_TAIL`] (`3`) per `cs:88`. + #[must_use] + #[allow(clippy::too_many_arguments)] + pub fn from_reference_handle_fields( + command: NmxItemControlCommand, + item_correlation_id: [u8; GUID_LENGTH], + object_id: u16, + object_signature: u16, + primitive_id: i16, + attribute_id: i16, + property_id: i16, + attribute_signature: u16, + attribute_index: i16, + tail: u32, + ) -> Self { + Self { + command, + item_correlation_id, + object_id, + object_signature, + primitive_id, + attribute_id, + property_id, + attribute_signature, + attribute_index, + tail, + } + } + + /// Return a copy with `command = UnAdvise`. Mirrors `ToUnAdvise` + /// (`NmxItemControlMessage.cs:145-148`). + #[must_use] + pub fn to_un_advise(self) -> Self { + Self { + command: NmxItemControlCommand::UnAdvise, + ..self + } + } + + /// Return a copy with `command = AdviseSupervisory`. Mirrors + /// `ToAdviseSupervisory` (`NmxItemControlMessage.cs:150-153`). + #[must_use] + pub fn to_advise_supervisory(self) -> Self { + Self { + command: NmxItemControlCommand::AdviseSupervisory, + ..self + } + } + + /// Parse an item-control body. Mirrors `NmxItemControlMessage.Parse` + /// (`cs:38-82`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if the buffer is shorter than the + /// minimum 37-byte UnAdvise body (`cs:40-43`). + /// - [`CodecError::UnexpectedOpcode`] if the leading command byte is + /// neither `0x1f` (AdviseSupervisory) nor `0x21` (UnAdvise) (`cs:45-49`). + /// This is also what blocks the alias plain-`Advise` from being + /// accepted on the wire. + /// - [`CodecError::UnsupportedVersion`] if the version word is not 1 + /// (`cs:51-55`). + /// - [`CodecError::Decode`] if the buffer length does not match the + /// per-command expected length (`cs:57-61`). + pub fn parse(body: &[u8]) -> Result { + // Minimum length is the UnAdvise body (no advise-extra). Mirrors cs:40. + let min_len = HEADER_LENGTH + GUID_LENGTH + PAYLOAD_LENGTH; + if body.len() < min_len { + return Err(CodecError::ShortRead { + expected: min_len, + actual: body.len(), + }); + } + + let command = NmxItemControlCommand::from_u8(body[0])?; + + let version = read_u16_le(body, 1); + if version != VERSION { + return Err(CodecError::UnsupportedVersion { + expected: VERSION, + actual: version, + }); + } + + let expected_length = Self::encoded_length(command); + if body.len() != expected_length { + return Err(CodecError::Decode { + offset: 0, + reason: "unexpected item-control body length", + buffer_len: body.len(), + }); + } + + let mut offset = HEADER_LENGTH; + let mut item_correlation_id = [0u8; GUID_LENGTH]; + item_correlation_id.copy_from_slice(&body[offset..offset + GUID_LENGTH]); + offset += GUID_LENGTH; + + if command == NmxItemControlCommand::AdviseSupervisory { + // Skip the 2-byte advise-extra word (cs:66-69). The .NET parser + // does not retain it; the Rust port mirrors that drop on parse + // and writes zeros on encode. + offset += ADVISE_EXTRA_LENGTH; + } + + Ok(Self { + command, + item_correlation_id, + object_id: read_u16_le(body, offset), + object_signature: read_u16_le(body, offset + 2), + primitive_id: read_i16_le(body, offset + 4), + attribute_id: read_i16_le(body, offset + 6), + property_id: read_i16_le(body, offset + 8), + attribute_signature: read_u16_le(body, offset + 10), + attribute_index: read_i16_le(body, offset + 12), + tail: read_u32_le(body, offset + 14), + }) + } + + /// Encode to a freshly allocated `Vec`. Mirrors + /// `NmxItemControlMessage.Encode` (`cs:121-143`). + #[must_use] + pub fn encode(&self) -> Vec { + let mut body = vec![0u8; Self::encoded_length(self.command)]; + body[0] = self.command.to_u8(); + write_u16_le(&mut body, 1, VERSION); + + let mut offset = HEADER_LENGTH; + body[offset..offset + GUID_LENGTH].copy_from_slice(&self.item_correlation_id); + offset += GUID_LENGTH; + + if self.command == NmxItemControlCommand::AdviseSupervisory { + // Two zero bytes per cs:129-132 — the .NET source advances the + // offset over already-zeroed buffer space. + offset += ADVISE_EXTRA_LENGTH; + } + + write_u16_le(&mut body, offset, self.object_id); + write_u16_le(&mut body, offset + 2, self.object_signature); + write_i16_le(&mut body, offset + 4, self.primitive_id); + write_i16_le(&mut body, offset + 6, self.attribute_id); + write_i16_le(&mut body, offset + 8, self.property_id); + write_u16_le(&mut body, offset + 10, self.attribute_signature); + write_i16_le(&mut body, offset + 12, self.attribute_index); + write_u32_le(&mut body, offset + 14, self.tail); + body + } +} + +#[inline] +fn read_u16_le(bytes: &[u8], offset: usize) -> u16 { + u16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i16_le(bytes: &[u8], offset: usize) -> i16 { + i16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_u32_le(bytes: &[u8], offset: usize) -> u32 { + u32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn write_u16_le(bytes: &mut [u8], offset: usize, value: u16) { + let le = value.to_le_bytes(); + bytes[offset..offset + 2].copy_from_slice(&le); +} + +#[inline] +fn write_i16_le(bytes: &mut [u8], offset: usize, value: i16) { + let le = value.to_le_bytes(); + bytes[offset..offset + 2].copy_from_slice(&le); +} + +#[inline] +fn write_u32_le(bytes: &mut [u8], offset: usize, value: u32) { + let le = value.to_le_bytes(); + bytes[offset..offset + 4].copy_from_slice(&le); +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + fn sample(command: NmxItemControlCommand) -> NmxItemControlMessage { + NmxItemControlMessage { + command, + item_correlation_id: [0x11; GUID_LENGTH], + object_id: 0x1234, + object_signature: 0xABCD, + primitive_id: -1, + attribute_id: 7, + property_id: 0, + attribute_signature: 0xBEEF, + attribute_index: -1, + tail: DEFAULT_TAIL, + } + } + + #[test] + fn encoded_length_matches_dotnet() { + // cs:30-36: AdviseSupervisory = 3+16+2+18 = 39, UnAdvise = 3+16+18 = 37. + assert_eq!( + NmxItemControlMessage::encoded_length(NmxItemControlCommand::AdviseSupervisory), + 39 + ); + assert_eq!( + NmxItemControlMessage::encoded_length(NmxItemControlCommand::UnAdvise), + 37 + ); + } + + #[test] + fn round_trip_advise_supervisory() { + let msg = sample(NmxItemControlCommand::AdviseSupervisory); + let encoded = msg.encode(); + assert_eq!(encoded.len(), 39); + let decoded = NmxItemControlMessage::parse(&encoded).unwrap(); + assert_eq!(msg, decoded); + } + + #[test] + fn round_trip_un_advise() { + let msg = sample(NmxItemControlCommand::UnAdvise); + let encoded = msg.encode(); + assert_eq!(encoded.len(), 37); + let decoded = NmxItemControlMessage::parse(&encoded).unwrap(); + assert_eq!(msg, decoded); + } + + #[test] + fn parse_rejects_plain_advise_alias() { + // The .NET enum aliases `Advise = 0x1f = AdviseSupervisory`, so on + // the wire the leading byte 0x1f always means AdviseSupervisory. + // There is *no* 37-byte plain-Advise shape; a 37-byte body that + // starts with 0x1f must be rejected because the per-command length + // check (cs:57-61) demands 39 bytes for 0x1f. + let mut bogus = vec![0u8; 37]; + bogus[0] = 0x1f; + write_u16_le(&mut bogus, 1, VERSION); + let err = NmxItemControlMessage::parse(&bogus).unwrap_err(); + assert!( + matches!(err, CodecError::Decode { .. }), + "expected length-mismatch decode error, got {err:?}" + ); + } + + #[test] + fn parse_rejects_unknown_command_opcode() { + // Leading byte that is neither 0x1f nor 0x21 — cs:46-49. + let mut bogus = vec![0u8; 37]; + bogus[0] = 0x42; + write_u16_le(&mut bogus, 1, VERSION); + let err = NmxItemControlMessage::parse(&bogus).unwrap_err(); + assert!(matches!(err, CodecError::UnexpectedOpcode(0x42))); + } + + #[test] + fn parse_rejects_wrong_length_buffer_advise() { + // 39 bytes is right for AdviseSupervisory; 38 is wrong. + let msg = sample(NmxItemControlCommand::AdviseSupervisory); + let mut encoded = msg.encode(); + encoded.pop(); + let err = NmxItemControlMessage::parse(&encoded).unwrap_err(); + // 38 bytes still passes the 37-byte minimum, so we hit the + // per-command length mismatch (cs:57-61) — Decode. + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn parse_rejects_wrong_length_buffer_un_advise() { + // 36 bytes is below the 37-byte UnAdvise minimum (cs:40). + let err = NmxItemControlMessage::parse(&[0u8; 36]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn parse_rejects_oversized_un_advise() { + // 38 bytes with leading 0x21 — UnAdvise demands exactly 37. + let mut bogus = vec![0u8; 38]; + bogus[0] = 0x21; + write_u16_le(&mut bogus, 1, VERSION); + let err = NmxItemControlMessage::parse(&bogus).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn parse_rejects_wrong_version() { + let msg = sample(NmxItemControlCommand::UnAdvise); + let mut encoded = msg.encode(); + write_u16_le(&mut encoded, 1, 2); + let err = NmxItemControlMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::UnsupportedVersion { .. })); + } + + #[test] + fn guid_round_trips_byte_identical() { + // Use a distinctive byte pattern so a re-shuffle would be obvious. + let guid: [u8; 16] = [ + 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, + 0xee, 0xff, + ]; + let msg = NmxItemControlMessage { + item_correlation_id: guid, + ..sample(NmxItemControlCommand::AdviseSupervisory) + }; + let encoded = msg.encode(); + // GUID lives at offset 3..19 (after cmd+version) per cs:63-65. + assert_eq!(&encoded[3..19], &guid); + let decoded = NmxItemControlMessage::parse(&encoded).unwrap(); + assert_eq!(decoded.item_correlation_id, guid); + } + + #[test] + fn guid_round_trips_known_pattern() { + // The brief calls out `[0x11; 16]` as a sanity vector. + let guid = [0x11u8; 16]; + let msg = NmxItemControlMessage { + item_correlation_id: guid, + ..sample(NmxItemControlCommand::UnAdvise) + }; + let encoded = msg.encode(); + assert_eq!(&encoded[3..19], &guid); + let decoded = NmxItemControlMessage::parse(&encoded).unwrap(); + assert_eq!(decoded.item_correlation_id, [0x11; 16]); + } + + #[test] + fn default_tail_is_three() { + // cs:88 — `uint tail = 3`. + assert_eq!(DEFAULT_TAIL, 3); + let msg = NmxItemControlMessage::from_reference_handle_fields( + NmxItemControlCommand::AdviseSupervisory, + [0x11; 16], + 1, + 2, + 3, + 4, + 5, + 6, + 7, + DEFAULT_TAIL, + ); + let encoded = msg.encode(); + // Tail u32 lives at the last 4 bytes of the body. + let n = encoded.len(); + assert_eq!(&encoded[n - 4..], &3u32.to_le_bytes()); + } + + #[test] + fn advise_supervisory_extra_bytes_are_zero_on_encode() { + // cs:129-132: the 2-byte advise-extra word at offset 19..21 is + // skipped (left as zero in the freshly-allocated buffer). + let msg = sample(NmxItemControlCommand::AdviseSupervisory); + let encoded = msg.encode(); + assert_eq!(&encoded[19..21], &[0x00, 0x00]); + } + + #[test] + fn handle_projection_offsets_advise_supervisory() { + // For AdviseSupervisory the handle projection starts at offset 21 + // (3 + 16 + 2). Verify object_id 0x1234 lands as 34 12 there. + let msg = NmxItemControlMessage { + object_id: 0x1234, + ..sample(NmxItemControlCommand::AdviseSupervisory) + }; + let encoded = msg.encode(); + assert_eq!(encoded[21], 0x34); + assert_eq!(encoded[22], 0x12); + } + + #[test] + fn handle_projection_offsets_un_advise() { + // For UnAdvise the handle projection starts at offset 19 (3 + 16). + let msg = NmxItemControlMessage { + object_id: 0x1234, + ..sample(NmxItemControlCommand::UnAdvise) + }; + let encoded = msg.encode(); + assert_eq!(encoded[19], 0x34); + assert_eq!(encoded[20], 0x12); + } + + #[test] + fn version_word_is_one_le() { + let encoded = sample(NmxItemControlCommand::UnAdvise).encode(); + assert_eq!(encoded[1], 0x01); + assert_eq!(encoded[2], 0x00); + } + + #[test] + fn command_byte_round_trips() { + let advise = sample(NmxItemControlCommand::AdviseSupervisory).encode(); + let unadvise = sample(NmxItemControlCommand::UnAdvise).encode(); + assert_eq!(advise[0], 0x1f); + assert_eq!(unadvise[0], 0x21); + } + + #[test] + fn to_un_advise_and_back() { + // Mirrors cs:145-153 — `with` updates only the command. + let advise = sample(NmxItemControlCommand::AdviseSupervisory); + let unadvise = advise.to_un_advise(); + assert_eq!(unadvise.command, NmxItemControlCommand::UnAdvise); + // All other fields preserved. + assert_eq!(advise.item_correlation_id, unadvise.item_correlation_id); + assert_eq!(advise.object_id, unadvise.object_id); + assert_eq!(advise.tail, unadvise.tail); + let again = unadvise.to_advise_supervisory(); + assert_eq!(again.command, NmxItemControlCommand::AdviseSupervisory); + assert_eq!(again, advise); + } +} diff --git a/rust/crates/mxaccess-codec/src/lib.rs b/rust/crates/mxaccess-codec/src/lib.rs new file mode 100644 index 0000000..ddb93da --- /dev/null +++ b/rust/crates/mxaccess-codec/src/lib.rs @@ -0,0 +1,92 @@ +//! `mxaccess-codec` — pure protocol codec for the AVEVA / Wonderware MXAccess +//! wire format. No I/O. +//! +//! M1 codec parity in progress. Implemented: +//! - Foundational types: `MxReferenceHandle` (CRC-16/IBM), `NmxTransferEnvelope` +//! (with `reserved6_10` preservation), `MxStatus` + `MxStatusCategory` + +//! `MxStatusSource` + `detail_text`, `MxValue` + `MxValueKind` + `MxDataType`. +//! - Message-body codecs: `NmxItemControlMessage` (advise/supervisory/unadvise), +//! `write_message` module (scalar + array, normal + timestamped Write), +//! `subscription_message` (DataUpdate `0x33` + SubscriptionStatus `0x32`), +//! `NmxReferenceRegistrationMessage` + Result, `NmxOperationStatusMessage` +//! (incl. the proven `00 00 50 80 00` 5-byte completion frame and the +//! `0x00`/`0x41`/`0xEF` 1-byte completion frames preserved verbatim), +//! `NmxMetadataQueryMessage` (observed pre-advise template), +//! `NmxTransferEnvelopeTemplate` (round-trip preserver). +//! +//! Remaining (wave 2): `NmxSecuredWrite2Message` (`0x38`), +//! `ObservedWriteBodyTemplate`. ASB Variant + AsbStatus + RuntimeValue land +//! in M5. +//! +//! Every wire shape here is grounded in `src/MxNativeCodec/*.cs` (the .NET +//! reference) and `captures/0NN-frida-*` (Frida ground truth). + +#![forbid(unsafe_code)] + +pub mod envelope; +pub mod envelope_template; +pub mod error; +pub mod item_control; +pub mod metadata_query; +pub mod observed_frame; +pub mod observed_write_template; +pub mod operation_status; +pub mod reference_handle; +pub mod reference_registration; +pub mod secured_write; +pub mod status; +pub mod subscription_message; +pub mod value; +pub mod write_message; + +pub use envelope::{ENVELOPE_HEADER_LEN, NmxTransferEnvelope, NmxTransferMessageKind}; +pub use envelope_template::NmxTransferEnvelopeTemplate; +pub use error::CodecError; +pub use item_control::{NmxItemControlCommand, NmxItemControlMessage}; +pub use metadata_query::NmxMetadataQueryMessage; +pub use observed_frame::{NmxObservedEnvelope, NmxObservedMessage, NmxObservedString}; +pub use observed_write_template::ObservedWriteBodyTemplate; +pub use operation_status::{NmxOperationStatusFormat, NmxOperationStatusMessage}; +pub use reference_handle::{MxReferenceHandle, compute_name_signature, update_crc16_ibm}; +pub use reference_registration::{ + NmxReferenceRegistrationMessage, NmxReferenceRegistrationResultMessage, +}; +pub use secured_write::DecodedSecuredWrite; +pub use status::{MxStatus, MxStatusCategory, MxStatusSource, detail_text}; +pub use subscription_message::{NmxSubscriptionMessage, NmxSubscriptionRecord}; +pub use value::{MxDataType, MxValue, MxValueKind}; + +// `NmxWriteMessage` and `NmxSecuredWrite2Message` are not single struct types +// in the Rust port — encoding/decoding live as functions in the +// `write_message` and `secured_write` modules. Keep stubs as short type +// aliases so existing references compile; consumers should call the module +// functions directly. + +#[derive(Debug, Clone)] +pub struct NmxWriteMessage; + +#[derive(Debug, Clone)] +pub struct NmxSecuredWrite2Message; + +// ---- ASB types (M5 follow-up) -------------------------------------------- + +#[derive(Debug, Clone)] +pub struct AsbVariant; + +#[derive(Debug, Clone, Copy, Default)] +pub struct AsbStatus; + +#[derive(Debug, Clone)] +pub struct RuntimeValue; + +// ---- Convenience prelude ------------------------------------------------- + +pub mod prelude { + pub use super::{ + CodecError, MxDataType, MxReferenceHandle, MxStatus, MxStatusCategory, MxStatusSource, + MxValue, MxValueKind, NmxItemControlCommand, NmxItemControlMessage, + NmxOperationStatusMessage, NmxReferenceRegistrationMessage, + NmxReferenceRegistrationResultMessage, NmxSubscriptionMessage, NmxTransferEnvelope, + NmxTransferEnvelopeTemplate, NmxTransferMessageKind, + }; +} diff --git a/rust/crates/mxaccess-codec/src/metadata_query.rs b/rust/crates/mxaccess-codec/src/metadata_query.rs new file mode 100644 index 0000000..79ca782 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/metadata_query.rs @@ -0,0 +1,192 @@ +//! `NmxMetadataQueryMessage` — observed pre-advise metadata-query body. +//! +//! Direct port of `src/MxNativeCodec/NmxMetadataQueryMessage.cs`. The .NET +//! reference exposes a single static helper, [`encode_observed_pre_advise`], +//! which returns a fixed observed body with a 16-byte item-correlation GUID +//! patched in at offset `0x8a`. +//! +//! The body is a captured constant — both segments of the hex literal in +//! `NmxMetadataQueryMessage.cs:10-11` are reproduced byte-for-byte below. +//! It encodes two metadata queries against `$DevPlatform.GR.TimeOfLastDeploy` +//! and `$DevPlatform.GR.TimeOfLastConfigChange`. The Rust port preserves +//! every byte; the only mutation is the GUID at offset `0x8a`. + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +/// Offset of the 16-byte item-correlation GUID inside the observed body +/// (`NmxMetadataQueryMessage.cs:5`). +pub const PRE_ADVISE_CORRELATION_OFFSET: usize = 0x8a; + +/// Length of the first hex segment in bytes — `NmxMetadataQueryMessage.cs:10`. +const SEGMENT_1_LEN: usize = 160; + +/// Length of the second hex segment in bytes — `NmxMetadataQueryMessage.cs:11`. +const SEGMENT_2_LEN: usize = 154; + +/// Length of the observed body in bytes (160 + 154 = 314). +pub const PRE_ADVISE_BODY_LEN: usize = SEGMENT_1_LEN + SEGMENT_2_LEN; + +/// First hex segment from `NmxMetadataQueryMessage.cs:10`. Decoded byte-for-byte +/// from `Convert.FromHexString(...)` of the literal in the .NET source. +const SEGMENT_1: [u8; SEGMENT_1_LEN] = [ + 0x17, 0x01, 0x00, 0x01, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x65, 0x00, 0x71, 0x00, 0x0a, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x08, 0x6a, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x81, 0x44, 0x00, 0x65, + 0x00, 0x76, 0x00, 0x50, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x74, 0x00, 0x66, 0x00, 0x6f, 0x00, 0x72, + 0x00, 0x6d, 0x00, 0x2e, 0x00, 0x47, 0x00, 0x52, 0x00, 0x2e, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6d, + 0x00, 0x65, 0x00, 0x4f, 0x00, 0x66, 0x00, 0x4c, 0x00, 0x61, 0x00, 0x73, 0x00, 0x74, 0x00, 0x44, + 0x00, 0x65, 0x00, 0x70, 0x00, 0x6c, 0x00, 0x6f, 0x00, 0x79, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xd0, 0xfc, 0x40, 0x09, 0x1f, 0x01, 0x00, 0xc0, 0xca, 0x9c, 0xcd, 0x32, 0x65, + 0xb0, 0x46, 0xa5, 0x85, 0xa5, 0x83, 0xb2, 0xe7, 0x7a, 0x5d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, +]; + +/// Second hex segment from `NmxMetadataQueryMessage.cs:11`. Decoded +/// byte-for-byte from `Convert.FromHexString(...)` of the literal in the +/// .NET source. +const SEGMENT_2: [u8; SEGMENT_2_LEN] = [ + 0x17, 0x01, 0x00, 0x01, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x65, 0x00, 0x71, 0x00, 0x0a, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x08, 0x76, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x81, 0x44, 0x00, 0x65, + 0x00, 0x76, 0x00, 0x50, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x74, 0x00, 0x66, 0x00, 0x6f, 0x00, 0x72, + 0x00, 0x6d, 0x00, 0x2e, 0x00, 0x47, 0x00, 0x52, 0x00, 0x2e, 0x00, 0x54, 0x00, 0x69, 0x00, 0x6d, + 0x00, 0x65, 0x00, 0x4f, 0x00, 0x66, 0x00, 0x4c, 0x00, 0x61, 0x00, 0x73, 0x00, 0x74, 0x00, 0x43, + 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x66, 0x00, 0x69, 0x00, 0x67, 0x00, 0x43, 0x00, 0x68, 0x00, 0x61, + 0x00, 0x6e, 0x00, 0x67, 0x00, 0x65, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x01, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x50, + 0x03, 0x41, 0x09, 0x20, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, +]; + +/// Concatenation of `SEGMENT_1 || SEGMENT_2`. Equivalent to the result of +/// `Convert.FromHexString` on the joined hex literal at +/// `NmxMetadataQueryMessage.cs:10-11`. +const OBSERVED_PRE_ADVISE_BODY: [u8; PRE_ADVISE_BODY_LEN] = { + let mut out = [0u8; PRE_ADVISE_BODY_LEN]; + let mut i = 0; + while i < SEGMENT_1_LEN { + out[i] = SEGMENT_1[i]; + i += 1; + } + let mut j = 0; + while j < SEGMENT_2_LEN { + out[SEGMENT_1_LEN + j] = SEGMENT_2[j]; + j += 1; + } + out +}; + +/// Stateless helpers around the observed metadata-query body. +/// +/// Mirrors the static class `NmxMetadataQueryMessage` +/// (`NmxMetadataQueryMessage.cs:3-15`). +pub struct NmxMetadataQueryMessage; + +impl NmxMetadataQueryMessage { + /// Encode the observed pre-advise body, patching the supplied 16-byte + /// GUID into offset `0x8a` (`NmxMetadataQueryMessage.cs:7-14`). + /// + /// `item_correlation_id` is the raw 16-byte little-endian Guid layout — + /// the same byte order .NET's `Guid.TryWriteBytes` emits. Callers + /// constructing a Guid from Rust types are responsible for using the + /// same wire layout (e.g. `windows::core::GUID::to_u128_le().to_le_bytes()` + /// or equivalent). + pub fn encode_observed_pre_advise(item_correlation_id: [u8; 16]) -> Vec { + let mut body = OBSERVED_PRE_ADVISE_BODY.to_vec(); + body[PRE_ADVISE_CORRELATION_OFFSET..PRE_ADVISE_CORRELATION_OFFSET + 16] + .copy_from_slice(&item_correlation_id); + body + } +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + #[test] + fn body_length_is_314() { + // 160 + 154 = 314 bytes — derived from the two hex segments at + // `NmxMetadataQueryMessage.cs:10-11`. + assert_eq!(SEGMENT_1_LEN, 160); + assert_eq!(SEGMENT_2_LEN, 154); + assert_eq!(PRE_ADVISE_BODY_LEN, 314); + assert_eq!(OBSERVED_PRE_ADVISE_BODY.len(), 314); + } + + // Compile-time bounds checks: clippy denies `assert!()` at + // runtime, so anchor these as `const _: () = assert!(...)` instead. They + // still fail the build if the constants drift — at compile time, before + // the test runner even spins up. + const _: () = assert!(PRE_ADVISE_CORRELATION_OFFSET + 16 <= PRE_ADVISE_BODY_LEN); + const _: () = assert!(PRE_ADVISE_CORRELATION_OFFSET + 16 <= SEGMENT_1_LEN); + + #[test] + fn correlation_offset_is_0x8a() { + assert_eq!(PRE_ADVISE_CORRELATION_OFFSET, 0x8a); + // 0x8a (138) + 16 = 154, which is inside the first 160-byte segment. + // Anchor checks are above as `const _: () = assert!(...)`. + } + + #[test] + fn observed_guid_in_template_matches_dotnet_capture() { + // The captured GUID at offset 0x8a in the literal body + // (`NmxMetadataQueryMessage.cs:10` — after the `0xc0` byte at offset 138). + let expected = [ + 0xc0, 0xca, 0x9c, 0xcd, 0x32, 0x65, 0xb0, 0x46, 0xa5, 0x85, 0xa5, 0x83, 0xb2, 0xe7, + 0x7a, 0x5d, + ]; + assert_eq!( + &OBSERVED_PRE_ADVISE_BODY[0x8a..0x8a + 16], + &expected, + "the embedded GUID must match the .NET literal byte-for-byte" + ); + } + + #[test] + fn guid_is_patched_at_0x8a() { + let guid = [ + 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, + 0xff, 0x00, + ]; + let body = NmxMetadataQueryMessage::encode_observed_pre_advise(guid); + assert_eq!(body.len(), PRE_ADVISE_BODY_LEN); + assert_eq!(&body[0x8a..0x8a + 16], &guid); + } + + #[test] + fn bytes_outside_correlation_window_are_unchanged() { + // Encode with an all-zero GUID and an all-0xff GUID, compare every + // byte outside the patch window — they must be identical. + let body_a = NmxMetadataQueryMessage::encode_observed_pre_advise([0u8; 16]); + let body_b = NmxMetadataQueryMessage::encode_observed_pre_advise([0xffu8; 16]); + for i in 0..PRE_ADVISE_BODY_LEN { + if (PRE_ADVISE_CORRELATION_OFFSET..PRE_ADVISE_CORRELATION_OFFSET + 16).contains(&i) { + continue; + } + assert_eq!(body_a[i], body_b[i], "byte {i} should be unchanged"); + } + } + + #[test] + fn encoded_body_matches_observed_template_at_known_offsets() { + // Spot-check anchor bytes from the .NET hex string. Offsets 0..10 + // are the `17 01 00 01 01 00 01 00 00 00` header + // (`NmxMetadataQueryMessage.cs:10`); offset 160 starts the second + // segment with the same 10-byte preamble (`NmxMetadataQueryMessage.cs:11`). + let body = NmxMetadataQueryMessage::encode_observed_pre_advise([0u8; 16]); + let preamble = [0x17, 0x01, 0x00, 0x01, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00]; + assert_eq!(&body[0..10], &preamble); + assert_eq!(&body[SEGMENT_1_LEN..SEGMENT_1_LEN + 10], &preamble); + } + + #[test] + fn fresh_call_does_not_mutate_template() { + // Each call must return an independent buffer — patching the result + // of one call must not affect a subsequent call. + let mut a = NmxMetadataQueryMessage::encode_observed_pre_advise([0u8; 16]); + a[0] = 0x99; + let b = NmxMetadataQueryMessage::encode_observed_pre_advise([0u8; 16]); + assert_eq!(b[0], 0x17, "second call must not see mutation of first"); + } +} diff --git a/rust/crates/mxaccess-codec/src/observed_frame.rs b/rust/crates/mxaccess-codec/src/observed_frame.rs new file mode 100644 index 0000000..be02c52 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/observed_frame.rs @@ -0,0 +1,647 @@ +//! `NmxObservedFrame` — tolerant transfer-envelope + inner-message parser. +//! +//! Direct port of `src/MxNativeCodec/NmxObservedFrame.cs`. +//! +//! Where [`crate::NmxTransferEnvelope`] strictly validates the typed fields +//! of the 46-byte transfer header, the *observed* envelope path is a +//! permissive analyser used by probes and replay: +//! +//! - Splits a `TransferData`-shaped or `ProcessDataReceived`-shaped buffer +//! into a 46-byte header plus an inner body. +//! - Surfaces the optional 4-byte length prefix that wraps +//! `ProcessDataReceived` bodies on the wire. +//! - Parses the inner body's leading `cmd + version` bytes plus, for the +//! recognised opcodes `0x1f` and `0x21`, a 16-byte item-correlation GUID. +//! - Walks the body looking for runs of printable UTF-16LE strings and +//! surfaces them with their offsets. Unknown opcodes round-trip cleanly +//! — the parser never rejects them, it just gives them a synthetic +//! `Unknown0xNN` name (`NmxObservedFrame.cs:148`). +//! +//! ## hasDetailStatus audit (Q7 follow-up) +//! +//! `NmxObservedFrame.cs:122-126` reads `itemCorrelationId` **conditionally**: +//! +//! ```csharp +//! if (command is 0x1f or 0x21 && body.Length >= 19) +//! { +//! itemCorrelationId = new Guid(body.Slice(3, 16)); +//! } +//! ``` +//! +//! That is a `has_*`-style conditional read in the .NET source — it depends +//! on both the opcode and the buffer length. **Audit: the Rust port mirrors +//! the same conditional exactly** (it MUST stay conditional — making it +//! unconditional would either crash on shorter unknown-opcode bodies or +//! attach a meaningless GUID to bodies that have no correlation slot). No +//! other field in this file is read conditionally. + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; + +/// Header length in bytes (`NmxObservedFrame.cs:14`). +pub const HEADER_LENGTH: usize = 46; + +/// Inner-length field offset in the transfer header +/// (`NmxObservedFrame.cs:15`). +pub const INNER_LENGTH_OFFSET: usize = 2; + +/// Tolerant parse of a `TransferData`-style envelope body. Mirrors +/// [`NmxObservedEnvelope`] returned by `ParseTransferDataBody` +/// (`NmxObservedFrame.cs:17-38`). +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct NmxObservedEnvelope { + /// Whether the body began with a 4-byte total-length prefix + /// (set on `ProcessDataReceived` payloads). + pub has_length_prefix: bool, + /// The captured 4-byte total-length prefix, or `None` if absent. + pub total_length_prefix: Option, + /// `inner_length` field at offset 2 of the 46-byte header. + pub declared_inner_length: i32, + /// Actual inner-body length in bytes (`body.len() - 46` after stripping + /// any optional length prefix). + pub actual_inner_length: usize, + /// The captured 46-byte header. + pub header: Vec, + /// The inner body that follows the header. + pub inner_body: Vec, +} + +impl NmxObservedEnvelope { + /// Parse a `TransferData` body (no leading 4-byte length prefix). + /// Mirrors `ParseTransferDataBody` (`NmxObservedFrame.cs:17-38`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `body.len() < 46`. + /// - [`CodecError::InnerLengthMismatch`] if the declared inner length + /// doesn't match the actual inner body length. + pub fn parse_transfer_data_body(body: &[u8]) -> Result { + if body.len() < HEADER_LENGTH { + return Err(CodecError::ShortRead { + expected: HEADER_LENGTH, + actual: body.len(), + }); + } + let declared_inner_length = read_i32_le(body, INNER_LENGTH_OFFSET); + let actual_inner_length = body.len() - HEADER_LENGTH; + if declared_inner_length != actual_inner_length as i32 { + return Err(CodecError::InnerLengthMismatch { + declared: declared_inner_length, + actual: actual_inner_length, + }); + } + Ok(Self { + has_length_prefix: false, + total_length_prefix: None, + declared_inner_length, + actual_inner_length, + header: body[..HEADER_LENGTH].to_vec(), + inner_body: body[HEADER_LENGTH..].to_vec(), + }) + } + + /// Parse a `ProcessDataReceived` body — strict form with leading + /// 4-byte total-length prefix. Mirrors `ParseProcessDataReceivedBody` + /// (`NmxObservedFrame.cs:40-69`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `body.len() < 50`. + /// - [`CodecError::InnerLengthMismatch`] if either the total-length + /// prefix or the declared inner length doesn't reconcile with the + /// buffer size. + pub fn parse_process_data_received_body(body: &[u8]) -> Result { + if body.len() < 4 + HEADER_LENGTH { + return Err(CodecError::ShortRead { + expected: 4 + HEADER_LENGTH, + actual: body.len(), + }); + } + // `.cs:47` — total length prefix at offset 0. + let total_length_prefix = read_i32_le(body, 0); + if total_length_prefix as usize != body.len() { + return Err(CodecError::InnerLengthMismatch { + declared: total_length_prefix, + actual: body.len(), + }); + } + let header_offset = 4; + // `.cs:54-55` — inner length sits at headerOffset + InnerLengthOffset. + let declared_inner_length = read_i32_le(body, header_offset + INNER_LENGTH_OFFSET); + // `.cs:56` — actualInnerLength = declared - sizeof(int). + let actual_inner_length = declared_inner_length - 4; + if actual_inner_length < 0 + || header_offset + HEADER_LENGTH + actual_inner_length as usize != body.len() + { + return Err(CodecError::InnerLengthMismatch { + declared: declared_inner_length, + actual: body.len() - header_offset - HEADER_LENGTH, + }); + } + let actual_inner_length = actual_inner_length as usize; + Ok(Self { + has_length_prefix: true, + total_length_prefix: Some(total_length_prefix), + declared_inner_length, + actual_inner_length, + header: body[header_offset..header_offset + HEADER_LENGTH].to_vec(), + inner_body: body[header_offset + HEADER_LENGTH + ..header_offset + HEADER_LENGTH + actual_inner_length] + .to_vec(), + }) + } + + /// Flexible `ProcessDataReceived` parse — tries the strict + /// length-prefixed form first; falls back to the `TransferData`-style + /// header-only form. Mirrors `ParseProcessDataReceivedBodyFlexible` + /// (`NmxObservedFrame.cs:71-101`). + pub fn parse_process_data_received_body_flexible(body: &[u8]) -> Result { + // `.cs:73-80` — try the strict path if and only if the leading + // i32 == body length. + if body.len() >= 4 + HEADER_LENGTH { + let total_length_prefix = read_i32_le(body, 0); + if total_length_prefix as usize == body.len() { + return Self::parse_process_data_received_body(body); + } + } + if body.len() < HEADER_LENGTH { + return Err(CodecError::ShortRead { + expected: HEADER_LENGTH, + actual: body.len(), + }); + } + // `.cs:87-92` — fall back to header-only inner-length validation. + let declared_inner_length = read_i32_le(body, INNER_LENGTH_OFFSET); + let actual_inner_length = body.len() - HEADER_LENGTH; + if declared_inner_length != actual_inner_length as i32 { + return Err(CodecError::InnerLengthMismatch { + declared: declared_inner_length, + actual: actual_inner_length, + }); + } + Ok(Self { + has_length_prefix: false, + total_length_prefix: None, + declared_inner_length, + actual_inner_length, + header: body[..HEADER_LENGTH].to_vec(), + inner_body: body[HEADER_LENGTH..].to_vec(), + }) + } +} + +/// A printable UTF-16LE string discovered at a specific offset inside the +/// observed body. Mirrors the .NET `NmxObservedString` record +/// (`NmxObservedFrame.cs:104`). +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct NmxObservedString { + pub offset: usize, + pub value: String, +} + +/// Tolerant parse of an inner NMX message body. Mirrors +/// `NmxObservedMessage` (`NmxObservedFrame.cs:106-192`). +/// +/// "Tolerant" means: the parser does NOT validate the body shape against +/// any specific opcode — it simply records the leading `cmd`, `version` u16 +/// (split into major/minor bytes), and (for `0x1f` / `0x21`) a 16-byte item +/// correlation GUID. Unknown opcodes get a synthetic name (`Unknown0xNN`) +/// per `.cs:148`. +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct NmxObservedMessage { + pub command: u8, + pub command_name: &'static str, + /// Synthetic name for unknown commands (`Unknown0xNN`). When the command + /// is recognised, this is empty and [`Self::command_name`] is used. + pub synthetic_name: Option, + pub version_major: u8, + pub version_minor: u8, + /// Item-correlation GUID for `AdviseSupervisory` (`0x1f`) and + /// `UnAdvise` (`0x21`) bodies. **Read conditionally** — mirroring + /// `NmxObservedFrame.cs:122-126`. See module-level Q7 audit. + /// + /// The GUID is 16 raw bytes from `body[3..19]`. The .NET source uses + /// `new Guid(byte[])` which interprets the first three groups as + /// little-endian (mixed-endian on the wire). The Rust port keeps the + /// raw 16-byte form to avoid pulling in a `Guid`/`uuid` dependency at + /// the codec level — consumers can re-interpret if needed. + pub item_correlation_id: Option<[u8; 16]>, + /// Printable UTF-16LE strings discovered in the body, with their + /// starting byte offsets. + pub strings: Vec, +} + +impl NmxObservedMessage { + /// Parse the body. Mirrors `NmxObservedMessage.Parse` + /// (`NmxObservedFrame.cs:114-135`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if the body has fewer than 3 bytes (the + /// minimum needed to read `cmd + version`). + pub fn parse(body: &[u8]) -> Result { + // `.cs:116-119` — minimum length 3. + if body.len() < 3 { + return Err(CodecError::ShortRead { + expected: 3, + actual: body.len(), + }); + } + let command = body[0]; + + // `.cs:122-126` — CONDITIONAL read of itemCorrelationId. + // Audit Q7: this stays conditional in the Rust port. + let item_correlation_id = if (command == 0x1f || command == 0x21) && body.len() >= 19 { + let mut guid = [0u8; 16]; + guid.copy_from_slice(&body[3..19]); + Some(guid) + } else { + None + }; + + let (command_name, synthetic_name) = command_name(command); + + Ok(Self { + command, + command_name, + synthetic_name, + // `.cs:131` — body[1] is the major byte of the u16 version. + version_major: body[1], + // `.cs:132` — body[2] is the minor byte. + version_minor: body[2], + item_correlation_id, + strings: extract_utf16_strings(body), + }) + } +} + +/// Map a command byte to its declared name. Mirrors `GetCommandName` +/// (`NmxObservedFrame.cs:137-150`). +/// +/// Returns `(known_name, synthetic_name_for_unknown)`. For known commands, +/// the synthetic-name slot is `None`; for unknown commands, the known-name +/// slot is `"Unknown"` and the synthetic slot carries the formatted name. +fn command_name(command: u8) -> (&'static str, Option) { + match command { + 0x17 => ("MetadataQuery", None), + 0x1f => ("AdviseSupervisory", None), + 0x21 => ("UnAdvise", None), + 0x32 => ("SubscriptionStatus", None), + 0x33 => ("DataUpdate", None), + 0x37 => ("Write", None), + 0x40 => ("MetadataResponse", None), + // `.cs:148` — synthesised name for everything else. + other => ("Unknown", Some(format!("Unknown0x{other:02X}"))), + } +} + +/// Walk the body looking for runs of printable UTF-16LE characters +/// terminated by a 2-byte NUL. Mirrors `ExtractUtf16Strings` +/// (`NmxObservedFrame.cs:152-191`). +/// +/// A "string" is at least 3 printable ASCII characters (low byte in +/// `0x20..=0x7e`, high byte zero) followed by a `00 00` terminator. The +/// scanner's appetite is intentionally narrow: arbitrary binary that +/// happens to look like UTF-16 won't trip it. +fn extract_utf16_strings(body: &[u8]) -> Vec { + let mut strings = Vec::new(); + let mut offset = 0usize; + // `.cs:156` — outer guard `offset + 8 <= body.length`. + while offset + 8 <= body.len() { + let start = offset; + let mut chars: usize = 0; + // `.cs:160-177` — inner scan loop. + while offset + 1 < body.len() { + let lo = body[offset]; + let hi = body[offset + 1]; + // `.cs:162-167` — null terminator ends the run. + if lo == 0 && hi == 0 { + break; + } + // `.cs:169-173` — non-printable / non-ASCII byte invalidates + // the candidate run. + if hi != 0 || !(0x20..=0x7e).contains(&lo) { + chars = 0; + break; + } + chars += 1; + offset += 2; + } + + // `.cs:179-186` — accept the run if it had at least 3 chars and + // is followed by the 00 00 terminator. + if chars >= 3 && offset + 1 < body.len() && body[offset] == 0 && body[offset + 1] == 0 { + let raw = &body[start..start + chars * 2]; + let utf16: Vec = raw + .chunks_exact(2) + .map(|c| u16::from_le_bytes([c[0], c[1]])) + .collect(); + // The scan accepted only printable ASCII, so the conversion + // can't fail in practice. If it does, we silently drop the run. + if let Ok(value) = String::from_utf16(&utf16) { + strings.push(NmxObservedString { + offset: start, + value, + }); + } + offset += 2; + continue; + } + + // `.cs:187` — failed match: advance by 1 byte and retry. + offset = start + 1; + } + strings +} + +// ---- LE primitive helpers ------------------------------------------------- + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +// =========================================================================== +// Tests +// =========================================================================== + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + fn synthesise_envelope(inner: &[u8]) -> Vec { + let mut out = vec![0u8; HEADER_LENGTH + inner.len()]; + // Pack the header with a recognisable pattern so we can verify + // round-trip preservation. + for (i, b) in out[..HEADER_LENGTH].iter_mut().enumerate() { + *b = 0xA0u8.wrapping_add(i as u8); + } + // Patch the inner-length field at offset 2. + out[INNER_LENGTH_OFFSET..INNER_LENGTH_OFFSET + 4] + .copy_from_slice(&(inner.len() as i32).to_le_bytes()); + out[HEADER_LENGTH..].copy_from_slice(inner); + out + } + + fn synthesise_pdr_body(inner: &[u8]) -> Vec { + // ProcessDataReceived strict layout: 4 (total) + 46 (header) + inner. + // Total-length prefix == body.len(), inner-length field == inner.len() + 4. + let total_len = 4 + HEADER_LENGTH + inner.len(); + let mut out = vec![0u8; total_len]; + out[..4].copy_from_slice(&(total_len as i32).to_le_bytes()); + for (i, b) in out[4..4 + HEADER_LENGTH].iter_mut().enumerate() { + *b = 0xC0u8.wrapping_add(i as u8); + } + // inner length field at offset 4 + 2 = 6, value = inner.len() + 4. + out[6..10].copy_from_slice(&((inner.len() + 4) as i32).to_le_bytes()); + out[4 + HEADER_LENGTH..].copy_from_slice(inner); + out + } + + #[test] + fn header_constants_match_dotnet() { + // `NmxObservedFrame.cs:14-15`. + assert_eq!(HEADER_LENGTH, 46); + assert_eq!(INNER_LENGTH_OFFSET, 2); + } + + // ---- Envelope parsing ----------------------------------------------- + + #[test] + fn parse_transfer_data_body_round_trip() { + let inner = [0x37u8, 0x01, 0x00, 0xAB, 0xCD]; + let body = synthesise_envelope(&inner); + let env = NmxObservedEnvelope::parse_transfer_data_body(&body).unwrap(); + assert!(!env.has_length_prefix); + assert_eq!(env.total_length_prefix, None); + assert_eq!(env.declared_inner_length, inner.len() as i32); + assert_eq!(env.actual_inner_length, inner.len()); + assert_eq!(env.inner_body, inner); + assert_eq!(env.header.len(), HEADER_LENGTH); + // Header preserved verbatim. + assert_eq!(&env.header, &body[..HEADER_LENGTH]); + } + + #[test] + fn parse_transfer_data_body_rejects_short_buffer() { + let err = NmxObservedEnvelope::parse_transfer_data_body(&[0u8; 45]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn parse_transfer_data_body_rejects_inner_length_mismatch() { + let mut body = synthesise_envelope(&[0u8; 8]); + // Clobber inner-length field to a wrong value. + body[INNER_LENGTH_OFFSET..INNER_LENGTH_OFFSET + 4].copy_from_slice(&100i32.to_le_bytes()); + let err = NmxObservedEnvelope::parse_transfer_data_body(&body).unwrap_err(); + assert!(matches!(err, CodecError::InnerLengthMismatch { .. })); + } + + #[test] + fn parse_pdr_body_strict_round_trip() { + let inner = [0x33u8, 0x01, 0x00]; + let body = synthesise_pdr_body(&inner); + let env = NmxObservedEnvelope::parse_process_data_received_body(&body).unwrap(); + assert!(env.has_length_prefix); + assert_eq!(env.total_length_prefix, Some(body.len() as i32)); + assert_eq!(env.actual_inner_length, inner.len()); + assert_eq!(env.inner_body, inner); + } + + #[test] + fn parse_pdr_body_strict_rejects_bad_total_length() { + let inner = [0u8; 4]; + let mut body = synthesise_pdr_body(&inner); + // Corrupt the total-length prefix (compute the corrupt value first + // to avoid borrowing `body` mutably and immutably in the same expr). + let bad_total = body.len() as i32 + 1; + body[0..4].copy_from_slice(&bad_total.to_le_bytes()); + let err = NmxObservedEnvelope::parse_process_data_received_body(&body).unwrap_err(); + assert!(matches!(err, CodecError::InnerLengthMismatch { .. })); + } + + #[test] + fn parse_pdr_flexible_uses_strict_when_possible() { + let inner = [0x32u8, 0x01, 0x00]; + let body = synthesise_pdr_body(&inner); + let env = NmxObservedEnvelope::parse_process_data_received_body_flexible(&body).unwrap(); + assert!(env.has_length_prefix); + } + + #[test] + fn parse_pdr_flexible_falls_back_to_header_only() { + // No leading 4-byte length prefix — flexible parser falls back. + let inner = [0x32u8, 0x01, 0x00]; + let body = synthesise_envelope(&inner); + let env = NmxObservedEnvelope::parse_process_data_received_body_flexible(&body).unwrap(); + assert!(!env.has_length_prefix); + assert_eq!(env.inner_body, inner); + } + + // ---- Inner-message parsing ------------------------------------------ + + #[test] + fn parse_message_minimum_length_3() { + let err = NmxObservedMessage::parse(&[0x37u8, 0x01]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn parse_recognised_command_yields_known_name() { + let body = [0x37u8, 0x01, 0x00]; + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.command, 0x37); + assert_eq!(msg.command_name, "Write"); + assert_eq!(msg.synthetic_name, None); + assert_eq!(msg.version_major, 0x01); + assert_eq!(msg.version_minor, 0x00); + assert_eq!(msg.item_correlation_id, None); + } + + #[test] + fn parse_unknown_command_yields_synthetic_name() { + let body = [0xAAu8, 0x01, 0x00]; + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.command, 0xAA); + // Known-name slot is "Unknown" and synthetic_name carries the + // formatted string ("Unknown0xAA"). + assert_eq!(msg.command_name, "Unknown"); + assert_eq!(msg.synthetic_name.as_deref(), Some("Unknown0xAA")); + } + + #[test] + fn advise_supervisory_carries_correlation_id_when_long_enough() { + // 0x1f + version 1 + 16-byte GUID + a couple of stuffer bytes. + let mut body = vec![0x1fu8, 0x01, 0x00]; + let guid = [ + 0x11u8, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, + 0xFF, 0x00, + ]; + body.extend_from_slice(&guid); + body.extend_from_slice(&[0xDE, 0xAD]); + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.command_name, "AdviseSupervisory"); + assert_eq!(msg.item_correlation_id, Some(guid)); + } + + #[test] + fn unadvise_carries_correlation_id_when_long_enough() { + let mut body = vec![0x21u8, 0x01, 0x00]; + let guid = [0x42u8; 16]; + body.extend_from_slice(&guid); + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.command_name, "UnAdvise"); + assert_eq!(msg.item_correlation_id, Some(guid)); + } + + #[test] + fn correlation_id_only_for_advise_or_unadvise_opcodes() { + // Q7 audit: the conditional read is opcode-gated. Even with 19+ + // bytes available, opcodes other than 0x1f / 0x21 do NOT extract + // the GUID slot. + let mut body = vec![0x37u8, 0x01, 0x00]; + body.extend_from_slice(&[0xFFu8; 16]); + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.item_correlation_id, None); + } + + #[test] + fn correlation_id_omitted_when_buffer_too_short() { + // Q7 audit: even 0x1f / 0x21 don't get a GUID if the buffer is < 19. + let body = [0x1fu8, 0x01, 0x00, 0x42]; + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.command_name, "AdviseSupervisory"); + assert_eq!(msg.item_correlation_id, None); + } + + // ---- UTF-16 string scanner ------------------------------------------ + + #[test] + fn extract_strings_finds_simple_run() { + // "Hello" UTF-16LE + 00 00 terminator, embedded in a larger body. + let mut body = vec![0u8; 8]; + let utf16 = "Hello".encode_utf16().collect::>(); + for u in &utf16 { + body.extend_from_slice(&u.to_le_bytes()); + } + body.extend_from_slice(&[0x00, 0x00]); + body.extend_from_slice(&[0u8; 4]); + // Prefix the body with cmd+version so we can call parse(). + let mut full = vec![0x17u8, 0x01, 0x00]; + full.extend_from_slice(&body); + let msg = NmxObservedMessage::parse(&full).unwrap(); + let found: Vec<_> = msg.strings.iter().map(|s| s.value.as_str()).collect(); + assert!( + found.contains(&"Hello"), + "did not find 'Hello' in {found:?}" + ); + } + + #[test] + fn extract_strings_skips_short_runs() { + // "ab\0\0" — only 2 chars, below the 3-char minimum. + let mut body = vec![0x17u8, 0x01, 0x00, 0u8, 0u8]; + let utf16 = "ab".encode_utf16().collect::>(); + for u in &utf16 { + body.extend_from_slice(&u.to_le_bytes()); + } + body.extend_from_slice(&[0x00, 0x00, 0u8, 0u8]); + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert!(msg.strings.is_empty()); + } + + #[test] + fn extract_strings_ignores_non_printable() { + // A byte sequence that looks UTF-16-ish but contains a control + // character (0x07) — must NOT be reported as a string. + let mut body = vec![0x17u8, 0x01, 0x00]; + body.extend_from_slice(&[0x41, 0x00, 0x07, 0x00, 0x42, 0x00, 0x00, 0x00]); + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert!(msg.strings.is_empty()); + } + + #[test] + fn extract_strings_reports_offset_relative_to_body() { + // Two trailing strings; verify the second's offset is correct. + let mut body = vec![0x17u8, 0x01, 0x00, 0u8, 0u8, 0u8]; + let prefix_len = body.len(); + for u in "abcdef".encode_utf16() { + body.extend_from_slice(&u.to_le_bytes()); + } + body.extend_from_slice(&[0x00, 0x00]); + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.strings.len(), 1); + assert_eq!(msg.strings[0].value, "abcdef"); + assert_eq!(msg.strings[0].offset, prefix_len); + } + + // ---- Round-trip preservation across malformed bodies ---------------- + + #[test] + fn malformed_body_does_not_panic() { + // A body of all 0xFF bytes is structurally invalid for any opcode + // but parse() must not panic. + let body = [0xFFu8; 64]; + let msg = NmxObservedMessage::parse(&body).unwrap(); + // 0xFF is unknown; synthetic name should reflect that. + assert_eq!(msg.command, 0xFF); + assert_eq!(msg.synthetic_name.as_deref(), Some("Unknown0xFF")); + } + + #[test] + fn version_bytes_are_split_major_minor() { + // body[1] = major, body[2] = minor, regardless of endianness. + let body = [0x37u8, 0xAB, 0xCD]; + let msg = NmxObservedMessage::parse(&body).unwrap(); + assert_eq!(msg.version_major, 0xAB); + assert_eq!(msg.version_minor, 0xCD); + } +} diff --git a/rust/crates/mxaccess-codec/src/observed_write_template.rs b/rust/crates/mxaccess-codec/src/observed_write_template.rs new file mode 100644 index 0000000..7c15e8a --- /dev/null +++ b/rust/crates/mxaccess-codec/src/observed_write_template.rs @@ -0,0 +1,904 @@ +//! `ObservedWriteBodyTemplate` — observed-Write body round-trip preserver. +//! +//! Direct port of `src/MxNativeCodec/ObservedWriteBodyTemplate.cs`. +//! +//! ## What this is for +//! +//! The template path takes a *captured* Write body (real bytes from +//! `captures/0NN-frida-write-*`) and replays it with only the value slot +//! replaced. Every other byte — the prefix, the `cmd + version + handle +//! projection + wire_kind` header, the trailing suffix (clientToken, +//! writeIndex, the `-1 i16` discriminator, any padding) — is preserved +//! **verbatim**. This is one of the cornerstones of CLAUDE.md's "preserve +//! unknown bytes" rule (project root `CLAUDE.md`): some flows depend on +//! byte-for-byte parity with native MXAccess, and the captured suffix +//! contains bytes whose meaning is unproven. +//! +//! ## Layout assumptions (from `ObservedWriteBodyTemplate.cs:9-49`) +//! +//! Three offset constants from the .NET source: +//! +//! - `FixedValueOffset = 18` (`.cs:9`) — value slot for scalar types +//! (Boolean / Int32 / Float32 / Float64). +//! - `VariableValueOffset = 26` (`.cs:10`) — value slot for variable types +//! (String / DateTime), preceded by 8 bytes of length headers at offsets +//! 18..22 (outer_length) and 22..26 (inner_length). +//! - `ArrayValueOffset = 28` (`.cs:11`) — value slot for arrays, preceded by +//! 10 bytes (zeros at 18..22, count u16 at 22, element_width u16 at 24, +//! zeros at 26..28). +//! +//! The trailing suffix length is then implied by the captured body size: +//! +//! - **Fixed:** suffix starts at `FixedValueOffset + valueWidth` and runs +//! to `body.Length - sizeof(int)`. The trailing 4 bytes are the writeIndex. +//! `(.cs:96-109)`. +//! - **Variable:** suffix starts at `VariableValueOffset + valueByteLength` +//! where `valueByteLength = body.Slice(22, 4)` (read **unconditionally**). +//! Trailing writeIndex still 4 bytes. `(.cs:111-130)`. +//! - **Array:** suffix is exactly the **last 18 bytes**, of which the first +//! 14 are stored in `_suffixBeforeWriteIndex` and the last 4 are the +//! writeIndex. `(.cs:132-144)`. +//! +//! ## Round-trip preservation +//! +//! `Encode` (`.cs:51-64`) writes: +//! +//! 1. The captured prefix (`_prefix`, raw bytes) — preserved verbatim. +//! 2. The freshly-encoded value bytes from [`encode_value`]. +//! 3. The captured suffix (`_suffixBeforeWriteIndex`) — preserved verbatim. +//! 4. The fresh `writeIndex` as i32 LE in the trailing 4 bytes. +//! +//! Then it calls `PatchVariableLengths` and `PatchArrayDescriptor` to keep +//! the embedded length fields consistent with the new value bytes +//! (`.cs:378-411`). +//! +//! ## hasDetailStatus audit (Q7 follow-up) +//! +//! `ObservedWriteBodyTemplate.cs` does not take any `has_*` boolean +//! parameter. `CreateVariable` reads `body.Slice(22, 4)` unconditionally +//! (`.cs:118`); `CreateArray` reads `body.Slice(22, 2)` unconditionally +//! (via the count in DecodeBooleanArray etc., `.cs:198, 221, 251, 281, 337`); +//! `Decode*` functions read fixed-offset fields unconditionally per kind. +//! No conditional read patterns to mirror. **Audit: clean.** +//! +//! ## Public-API differences from .NET +//! +//! - The .NET `Decode` returns `object` and accepts the body to decode at +//! call time. The Rust port exposes [`ObservedWriteBodyTemplate::with_value`] +//! that returns a fresh body with the value replaced (the single most +//! common use case in probes / replay), plus `with_int32`, `with_boolean`, +//! etc. helpers. +//! - The .NET `Encode` takes a boxed `object` value; the Rust port takes a +//! typed [`crate::MxValue`] (no runtime conversion). +//! - The Rust port requires the captured kind to match the kind of the +//! replacement value — preventing accidentally replacing an Int32 with a +//! Float32 (which would corrupt the suffix offsets). + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; +use crate::{MxValue, MxValueKind}; + +/// Value-slot offset for fixed-width scalars (`ObservedWriteBodyTemplate.cs:9`). +pub const FIXED_VALUE_OFFSET: usize = 18; + +/// Value-slot offset for variable-length scalars +/// (`ObservedWriteBodyTemplate.cs:10`). +pub const VARIABLE_VALUE_OFFSET: usize = 26; + +/// Value-slot offset for arrays (`ObservedWriteBodyTemplate.cs:11`). +pub const ARRAY_VALUE_OFFSET: usize = 28; + +/// Round-trip preserver for a captured Write body (`0x37`) or +/// SecuredWrite2 body (`0x38`). +/// +/// Stores three pieces: +/// +/// - The captured *prefix* up to but not including the value slot. +/// - The captured *suffix* starting just after the value slot, up to but +/// not including the trailing 4-byte writeIndex. +/// - The captured kind (so we can later patch length fields correctly). +/// +/// The prefix and suffix carry every byte unchanged; the value slot is +/// rewritten on each [`Self::with_value`] call, and the trailing writeIndex +/// is rewritten with whatever the caller passes to encode. +#[derive(Debug, Clone)] +pub struct ObservedWriteBodyTemplate { + kind: MxValueKind, + /// Captured opcode at body[0]. Either `0x37` (Write) or `0x38` + /// (SecuredWrite2) — both share the value-slot layout per the .cs + /// constants. Stored separately for [`Self::command`] without re-reading + /// `prefix`. + command: u8, + prefix: Vec, + suffix_before_write_index: Vec, +} + +impl ObservedWriteBodyTemplate { + /// Capture a Write body and split it into prefix / suffix around the + /// value slot. + /// + /// Mirrors `FromObserved` (`ObservedWriteBodyTemplate.cs:26-49`). The + /// caller declares the `kind` because the captured body alone does not + /// disambiguate `0x05` String vs DateTime or `0x45` StringArray vs + /// DateTimeArray (the encoder collapses them — see + /// `crate::write_message` module doc). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `observed_body.len() < 24` + /// (`.cs:28-31`). + /// - [`CodecError::Decode`] if the kind is unsupported, or if the body + /// is too short for its declared kind, or if a variable-length body + /// has invalid embedded lengths. + pub fn from_observed(kind: MxValueKind, observed_body: &[u8]) -> Result { + // `.cs:28-31` — minimum length 24 bytes regardless of kind. + if observed_body.len() < 24 { + return Err(CodecError::ShortRead { + expected: 24, + actual: observed_body.len(), + }); + } + + match kind { + // `.cs:35-38` — fixed-width scalars. + MxValueKind::Boolean | MxValueKind::Int32 | MxValueKind::Float32 => { + Self::create_fixed(kind, observed_body, 4) + } + MxValueKind::Float64 => Self::create_fixed(kind, observed_body, 8), + // `.cs:39-40` — variable-width scalars. + MxValueKind::String | MxValueKind::DateTime => { + Self::create_variable(kind, observed_body) + } + // `.cs:41-46` — arrays. + MxValueKind::BoolArray + | MxValueKind::Int32Array + | MxValueKind::Float32Array + | MxValueKind::Float64Array + | MxValueKind::StringArray + | MxValueKind::DateTimeArray => Self::create_array(kind, observed_body), + // `.cs:47` — anything else throws. + MxValueKind::ElapsedTime | MxValueKind::Unknown => Err(CodecError::Decode { + offset: 17, + reason: "observed-write template: unsupported value kind", + buffer_len: observed_body.len(), + }), + } + } + + /// Captured opcode at body[0]. Mirrors `_prefix[0]`. + pub fn command(&self) -> u8 { + self.command + } + + /// Captured wire-kind byte at body[17]. Drawn from the captured prefix, + /// not from the runtime [`MxValueKind`] (which can disambiguate + /// String vs DateTime past the encoder collapse). + pub fn wire_kind(&self) -> u8 { + // body[17] sits inside the prefix for all three families. + self.prefix[17] + } + + /// The kind this template was captured against. + pub fn kind(&self) -> MxValueKind { + self.kind + } + + /// Borrow the captured prefix bytes (everything before the value slot). + pub fn prefix(&self) -> &[u8] { + &self.prefix + } + + /// Borrow the captured suffix bytes (between the value slot and the + /// trailing 4-byte writeIndex). + pub fn suffix_before_write_index(&self) -> &[u8] { + &self.suffix_before_write_index + } + + /// Emit a Write body with the value slot replaced. + /// + /// Mirrors `Encode` (`ObservedWriteBodyTemplate.cs:51-64`): + /// 1. Allocate `prefix.len() + value_bytes.len() + suffix.len() + 4`. + /// 2. Copy prefix verbatim. + /// 3. Copy fresh value bytes. + /// 4. Copy suffix verbatim. + /// 5. Write i32 LE writeIndex into the trailing 4 bytes. + /// 6. Patch embedded length fields (variable / array). + /// + /// # Errors + /// + /// - [`CodecError::Decode`] if `value.kind()` doesn't match the + /// captured kind. The .NET reference does not check this — it boxes + /// any `object` and lets the per-kind encoder throw — but mismatched + /// replacement would silently corrupt the suffix offsets, so the Rust + /// port enforces it. + pub fn with_value(&self, value: &MxValue, write_index: i32) -> Result, CodecError> { + // Strict kind check (Rust-port tightening; see module doc). + // The encoder collapses StringArray and DateTimeArray onto the same + // wire kind, so accept that pair as compatible. + let val_kind = value.kind(); + let kinds_match = val_kind == self.kind + || (val_kind == MxValueKind::StringArray && self.kind == MxValueKind::DateTimeArray) + || (val_kind == MxValueKind::DateTimeArray && self.kind == MxValueKind::StringArray) + || (val_kind == MxValueKind::String && self.kind == MxValueKind::DateTime) + || (val_kind == MxValueKind::DateTime && self.kind == MxValueKind::String); + if !kinds_match { + return Err(CodecError::Decode { + offset: 17, + reason: "observed-write template: replacement value kind does not match captured kind", + buffer_len: 0, + }); + } + + let value_bytes = encode_value_bytes(value, self.kind)?; + let body_len = + self.prefix.len() + value_bytes.len() + self.suffix_before_write_index.len() + 4; + let mut body = vec![0u8; body_len]; + body[..self.prefix.len()].copy_from_slice(&self.prefix); + let value_start = self.prefix.len(); + body[value_start..value_start + value_bytes.len()].copy_from_slice(&value_bytes); + let suffix_start = value_start + value_bytes.len(); + body[suffix_start..suffix_start + self.suffix_before_write_index.len()] + .copy_from_slice(&self.suffix_before_write_index); + write_i32_le(&mut body, body_len - 4, write_index); + self.patch_variable_lengths(&mut body, value_bytes.len()); + self.patch_array_descriptor(&mut body, value_bytes.len()); + Ok(body) + } + + /// Convenience: replace the value with an i32. Errors if the captured + /// kind isn't [`MxValueKind::Int32`]. + pub fn with_int32(&self, value: i32, write_index: i32) -> Result, CodecError> { + self.with_value(&MxValue::Int32(value), write_index) + } + + /// Convenience: replace the value with a bool. Errors if the captured + /// kind isn't [`MxValueKind::Boolean`]. + pub fn with_boolean(&self, value: bool, write_index: i32) -> Result, CodecError> { + self.with_value(&MxValue::Boolean(value), write_index) + } + + /// Convenience: replace the value with an f32. + pub fn with_float32(&self, value: f32, write_index: i32) -> Result, CodecError> { + self.with_value(&MxValue::Float32(value), write_index) + } + + /// Convenience: replace the value with an f64. + pub fn with_float64(&self, value: f64, write_index: i32) -> Result, CodecError> { + self.with_value(&MxValue::Float64(value), write_index) + } + + /// Convenience: replace the value with a UTF-16LE string. + pub fn with_string(&self, value: &str, write_index: i32) -> Result, CodecError> { + self.with_value(&MxValue::String(value.to_string()), write_index) + } + + /// Decode the trailing writeIndex from a body that was emitted by this + /// template. Mirrors `DecodeWriteIndex` (`.cs:86-94`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `body` has fewer than 4 bytes. + pub fn decode_write_index(body: &[u8]) -> Result { + if body.len() < 4 { + return Err(CodecError::ShortRead { + expected: 4, + actual: body.len(), + }); + } + Ok(read_i32_le(body, body.len() - 4)) + } + + // ---- Private constructors -------------------------------------------- + + /// `CreateFixed` (`ObservedWriteBodyTemplate.cs:96-109`). + fn create_fixed( + kind: MxValueKind, + body: &[u8], + value_width: usize, + ) -> Result { + let suffix_start = FIXED_VALUE_OFFSET + value_width; + // `.cs:99-103` — suffix length must be non-negative. + if body.len() < suffix_start + 4 { + return Err(CodecError::ShortRead { + expected: suffix_start + 4, + actual: body.len(), + }); + } + let suffix_length = body.len() - suffix_start - 4; + Ok(Self { + kind, + command: body[0], + prefix: body[..FIXED_VALUE_OFFSET].to_vec(), + suffix_before_write_index: body[suffix_start..suffix_start + suffix_length].to_vec(), + }) + } + + /// `CreateVariable` (`ObservedWriteBodyTemplate.cs:111-130`). Reads the + /// inner length at offset 22 **unconditionally** — there is no + /// "has X" boolean here, mirroring the .NET source. + fn create_variable(kind: MxValueKind, body: &[u8]) -> Result { + // `.cs:113-116` — minimum length check. + if body.len() < VARIABLE_VALUE_OFFSET + 4 { + return Err(CodecError::ShortRead { + expected: VARIABLE_VALUE_OFFSET + 4, + actual: body.len(), + }); + } + // `.cs:118` — value byte length read at offset 22 unconditionally. + let value_byte_length = read_i32_le(body, 22); + if value_byte_length < 2 { + return Err(CodecError::Decode { + offset: 22, + reason: "observed-write template: variable value_byte_length < 2", + buffer_len: body.len(), + }); + } + let value_byte_length = value_byte_length as usize; + let suffix_start = VARIABLE_VALUE_OFFSET + value_byte_length; + if body.len() < suffix_start + 4 { + return Err(CodecError::Decode { + offset: 22, + reason: "observed-write template: variable body too short for declared lengths", + buffer_len: body.len(), + }); + } + let suffix_length = body.len() - suffix_start - 4; + Ok(Self { + kind, + command: body[0], + prefix: body[..VARIABLE_VALUE_OFFSET].to_vec(), + suffix_before_write_index: body[suffix_start..suffix_start + suffix_length].to_vec(), + }) + } + + /// `CreateArray` (`ObservedWriteBodyTemplate.cs:132-144`). The .NET + /// reference takes the **last 18 bytes** as the suffix + /// (`suffixStart = body.Length - 18`), of which the first 14 are stored + /// in `_suffixBeforeWriteIndex` (`.cs:143`). This loses the array + /// payload bytes between offset 28 and `body.Length - 18` — they are + /// regenerated by [`encode_value_bytes`] from the supplied value. + fn create_array(kind: MxValueKind, body: &[u8]) -> Result { + // `.cs:134-137` — body must hold at least 18 trailing bytes plus + // the 28-byte prefix. + if body.len() < ARRAY_VALUE_OFFSET + 18 { + return Err(CodecError::ShortRead { + expected: ARRAY_VALUE_OFFSET + 18, + actual: body.len(), + }); + } + let suffix_start = body.len() - 18; + Ok(Self { + kind, + command: body[0], + // `.cs:142` — prefix is the leading 28 bytes. + prefix: body[..ARRAY_VALUE_OFFSET].to_vec(), + // `.cs:143` — suffix_before_write_index is exactly 14 bytes + // (the trailing 18 minus the 4-byte writeIndex slot). + suffix_before_write_index: body[suffix_start..suffix_start + 14].to_vec(), + }) + } + + // ---- Length / descriptor patches ------------------------------------- + + /// `PatchVariableLengths` (`ObservedWriteBodyTemplate.cs:378-388`). + /// Updates the embedded outer/inner length fields at offsets 18 and 22 + /// for variable-width kinds. No-op for everything else. + fn patch_variable_lengths(&self, body: &mut [u8], value_byte_length: usize) { + if !matches!(self.kind, MxValueKind::String | MxValueKind::DateTime) { + return; + } + // `.cs:385` — body[18..22] = value_byte_length + 4. + write_i32_le(body, 18, value_byte_length as i32 + 4); + // `.cs:386` — body[22..26] = value_byte_length. + write_i32_le(body, 22, value_byte_length as i32); + } + + /// `PatchArrayDescriptor` (`ObservedWriteBodyTemplate.cs:390-411`). + /// Updates the array element count u16 at offset 22 for fixed-element + /// arrays. No-op for variable-element arrays (StringArray / + /// DateTimeArray) and for non-array kinds — matching the early returns + /// at `.cs:392-400`. + fn patch_array_descriptor(&self, body: &mut [u8], value_byte_length: usize) { + let element_size = match self.kind { + MxValueKind::BoolArray => 2, + MxValueKind::Int32Array | MxValueKind::Float32Array => 4, + MxValueKind::Float64Array => 8, + // `.cs:397-400` — variable arrays return early; descriptor not patched. + _ => return, + }; + let count = value_byte_length / element_size; + // `.cs:410` — body[22..24] = checked u16 count. + let count_u16: u16 = u16::try_from(count).unwrap_or(u16::MAX); + write_u16_le(body, 22, count_u16); + } +} + +// ---- Value-byte encoders -------------------------------------------------- + +/// Encode the value bytes that go into the value slot. Mirrors `EncodeValue` +/// (`ObservedWriteBodyTemplate.cs:146-164`). +/// +/// `kind` is the captured kind (used to disambiguate the encoder collapse +/// for String/DateTime and StringArray/DateTimeArray — though in this +/// template path the actual byte layout is identical for both halves of +/// each pair, so the distinction is presentational). +fn encode_value_bytes(value: &MxValue, _kind: MxValueKind) -> Result, CodecError> { + Ok(match value { + // `.cs:150` / `EncodeBoolean` (`.cs:166-171`). Literal byte + // patterns: true -> [0xff,0xff,0xff,0x00], false -> [0x00,0xff,0xff,0x00]. + MxValue::Boolean(b) => encode_boolean_bytes(*b).to_vec(), + // `.cs:151` — i32 LE. + MxValue::Int32(v) => v.to_le_bytes().to_vec(), + // `.cs:152` — f32 via SingleToInt32Bits + i32 LE + // (`.cs:231-236` `EncodeFloat32`). + MxValue::Float32(v) => f32::to_bits(*v).to_le_bytes().to_vec(), + // `.cs:153` — f64 via DoubleToInt64Bits + i64 LE + // (`.cs:261-266` `EncodeFloat64`). + MxValue::Float64(v) => f64::to_bits(*v).to_le_bytes().to_vec(), + // `.cs:154` — UTF-16LE with 2-byte NUL trailer + // (`.cs:291-297` `EncodeUtf16String`). + MxValue::String(s) => encode_utf16_with_nul(s), + // `.cs:155` — DateTime is formatted with + // `"M/d/yyyy h:mm:ss tt"` and encoded as UTF-16LE+NUL. The Rust + // port carries the i64 FILETIME ticks; converting that to the + // .NET formatted string requires a calendar dependency outside + // the codec layer. The carrier expects a pre-formatted string. + MxValue::DateTime(_ticks) => { + return Err(CodecError::Decode { + offset: 0, + reason: "observed-write template: DateTime replacement requires a pre-formatted string; pass MxValue::String instead", + buffer_len: 0, + }); + } + // `.cs:156` `EncodeBooleanArray` (`.cs:185-194`) — each element + // is i16 LE (-1 or 0). + MxValue::BoolArray(arr) => { + let mut bytes = Vec::with_capacity(arr.len() * 2); + for v in arr { + let i: i16 = if *v { -1 } else { 0 }; + bytes.extend_from_slice(&i.to_le_bytes()); + } + bytes + } + // `.cs:157` `EncodeInt32Array` (`.cs:208-217`). + MxValue::Int32Array(arr) => { + let mut bytes = Vec::with_capacity(arr.len() * 4); + for v in arr { + bytes.extend_from_slice(&v.to_le_bytes()); + } + bytes + } + // `.cs:158` `EncodeFloat32Array` (`.cs:238-247`). + MxValue::Float32Array(arr) => { + let mut bytes = Vec::with_capacity(arr.len() * 4); + for v in arr { + bytes.extend_from_slice(&f32::to_bits(*v).to_le_bytes()); + } + bytes + } + // `.cs:159` `EncodeFloat64Array` (`.cs:268-277`). + MxValue::Float64Array(arr) => { + let mut bytes = Vec::with_capacity(arr.len() * 8); + for v in arr { + bytes.extend_from_slice(&f64::to_bits(*v).to_le_bytes()); + } + bytes + } + // `.cs:160` `EncodeVariableArray` (`.cs:317-333`). + MxValue::StringArray(arr) => encode_variable_array(arr.iter().map(String::as_str)), + // `.cs:161` — DateTimeArray formats each element. Same + // limitation as scalar DateTime; require pre-formatted strings. + MxValue::DateTimeArray(_arr) => { + return Err(CodecError::Decode { + offset: 0, + reason: "observed-write template: DateTimeArray replacement requires pre-formatted strings; pass MxValue::StringArray instead", + buffer_len: 0, + }); + } + // `.cs:162` — InvalidOperationException for unsupported. + MxValue::ElapsedTime(_) => { + return Err(CodecError::Decode { + offset: 0, + reason: "observed-write template: ElapsedTime is not supported on the write side", + buffer_len: 0, + }); + } + }) +} + +/// Boolean payload bytes — LITERALLY the same 4-byte pattern used by the +/// normal-write encoder (`.cs:166-171`, +/// matches `crate::write_message` `encode_boolean_value`). +const fn encode_boolean_bytes(value: bool) -> [u8; 4] { + if value { + [0xff, 0xff, 0xff, 0x00] + } else { + [0x00, 0xff, 0xff, 0x00] + } +} + +/// UTF-16LE encoding with a trailing 2-byte NUL terminator. Mirrors +/// `EncodeUtf16String` (`ObservedWriteBodyTemplate.cs:291-297`). +fn encode_utf16_with_nul(value: &str) -> Vec { + let utf16: Vec = value.encode_utf16().collect(); + let mut bytes = Vec::with_capacity(utf16.len() * 2 + 2); + for unit in &utf16 { + bytes.extend_from_slice(&unit.to_le_bytes()); + } + bytes.push(0x00); + bytes.push(0x00); + bytes +} + +/// Variable-array payload. Mirrors `EncodeVariableArray` +/// (`ObservedWriteBodyTemplate.cs:317-333`). +fn encode_variable_array<'a, I>(values: I) -> Vec +where + I: IntoIterator, +{ + let mut bytes = Vec::new(); + for value in values { + let text_bytes = encode_utf16_with_nul(value); + let mut header = [0u8; 13]; + // header[0..4] = 1 + 4 + 4 + textBytes.Length (`.cs:324`). + write_i32_le(&mut header, 0, 1i32 + 4 + 4 + text_bytes.len() as i32); + // header[4] = 0x05 (`.cs:325`). + header[4] = 0x05; + // header[5..9] = textBytes.Length + 4 (`.cs:326`). + write_i32_le(&mut header, 5, text_bytes.len() as i32 + 4); + // header[9..13] = textBytes.Length (`.cs:327`). + write_i32_le(&mut header, 9, text_bytes.len() as i32); + bytes.extend_from_slice(&header); + bytes.extend_from_slice(&text_bytes); + } + bytes +} + +// ---- LE primitive helpers ------------------------------------------------- + +#[inline] +fn write_u16_le(bytes: &mut [u8], offset: usize, value: u16) { + bytes[offset..offset + 2].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn write_i32_le(bytes: &mut [u8], offset: usize, value: i32) { + bytes[offset..offset + 4].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +// =========================================================================== +// Tests +// =========================================================================== + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + use crate::MxReferenceHandle; + use crate::write_message::{self, WriteValue}; + + fn sample_handle() -> MxReferenceHandle { + MxReferenceHandle::from_names( + 1, + 42, + 17, + 300, + "TestChildObject", + -1, + 7, + 0, + "TestInt", + false, + ) + .unwrap() + } + + fn observed_int32_body(value: i32, write_index: i32, client_token: u32) -> Vec { + write_message::encode( + &sample_handle(), + &WriteValue::Int32(value), + write_index, + client_token, + ) + .unwrap() + } + + fn observed_boolean_body(value: bool, write_index: i32, client_token: u32) -> Vec { + write_message::encode( + &sample_handle(), + &WriteValue::Boolean(value), + write_index, + client_token, + ) + .unwrap() + } + + fn observed_string_body(value: &str, write_index: i32, client_token: u32) -> Vec { + write_message::encode( + &sample_handle(), + &WriteValue::String(value.to_string()), + write_index, + client_token, + ) + .unwrap() + } + + fn observed_int32_array_body(values: &[i32], write_index: i32, client_token: u32) -> Vec { + write_message::encode( + &sample_handle(), + &WriteValue::Int32Array(values.to_vec()), + write_index, + client_token, + ) + .unwrap() + } + + // ---- Constants ------------------------------------------------------- + + #[test] + fn offset_constants_match_dotnet() { + // `ObservedWriteBodyTemplate.cs:9-11`. + assert_eq!(FIXED_VALUE_OFFSET, 18); + assert_eq!(VARIABLE_VALUE_OFFSET, 26); + assert_eq!(ARRAY_VALUE_OFFSET, 28); + } + + // ---- Round-trip identity -------------------------------------------- + + #[test] + fn fixed_round_trip_preserves_bytes_when_value_unchanged() { + // Capture an Int32(123) body, replay with the same value — every + // byte should match. + let original = observed_int32_body(123, 7, 0xCAFE_BABE); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32, &original).unwrap(); + let replayed = template.with_int32(123, 7).unwrap(); + assert_eq!(replayed, original); + } + + #[test] + fn variable_round_trip_preserves_bytes_when_value_unchanged() { + let original = observed_string_body("hello", 3, 0x12345678); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::String, &original).unwrap(); + let replayed = template.with_string("hello", 3).unwrap(); + assert_eq!(replayed, original); + } + + #[test] + fn array_round_trip_preserves_suffix_when_value_unchanged() { + let original = observed_int32_array_body(&[1, 2, 3], 1, 0xABCD); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32Array, &original).unwrap(); + let replayed = template + .with_value(&MxValue::Int32Array(vec![1, 2, 3]), 1) + .unwrap(); + // The 14-byte suffix (last 18 minus writeIndex) must match. + let original_suffix_start = original.len() - 18; + let replayed_suffix_start = replayed.len() - 18; + assert_eq!( + &original[original_suffix_start..original_suffix_start + 14], + &replayed[replayed_suffix_start..replayed_suffix_start + 14] + ); + // Trailing writeIndex field too. + assert_eq!( + &original[original.len() - 4..], + &replayed[replayed.len() - 4..] + ); + } + + // ---- Selective replacement ------------------------------------------- + + #[test] + fn replace_int32_only_changes_value_slot() { + let original = observed_int32_body(123, 7, 0xCAFE_BABE); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32, &original).unwrap(); + let replaced = template.with_int32(456, 7).unwrap(); + assert_eq!(replaced.len(), original.len()); + // Everything except body[18..22] should match. + for (i, (&a, &b)) in original.iter().zip(replaced.iter()).enumerate() { + if (FIXED_VALUE_OFFSET..FIXED_VALUE_OFFSET + 4).contains(&i) { + continue; + } + assert_eq!(a, b, "byte at offset {i} should be preserved"); + } + // The value slot reflects 456. + assert_eq!( + &replaced[FIXED_VALUE_OFFSET..FIXED_VALUE_OFFSET + 4], + &456i32.to_le_bytes() + ); + } + + #[test] + fn replace_boolean_uses_literal_4byte_pattern() { + // Boolean payload uses the literal 4-byte pattern, not a single byte. + let original = observed_boolean_body(true, 1, 0); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Boolean, &original).unwrap(); + let replaced = template.with_boolean(false, 1).unwrap(); + assert_eq!( + &replaced[FIXED_VALUE_OFFSET..FIXED_VALUE_OFFSET + 4], + &[0x00, 0xff, 0xff, 0x00] + ); + // Re-replacing with true gives the original. + let back = template.with_boolean(true, 1).unwrap(); + assert_eq!( + &back[FIXED_VALUE_OFFSET..FIXED_VALUE_OFFSET + 4], + &[0xff, 0xff, 0xff, 0x00] + ); + assert_eq!(back, original); + } + + #[test] + fn replace_string_with_different_length_grows_body_and_patches_lengths() { + // The .cs path supports same-length AND different-length string + // replacements: PatchVariableLengths rewrites both length fields + // (`.cs:378-388`). + let original = observed_string_body("hi", 1, 0); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::String, &original).unwrap(); + let replaced = template.with_string("hello world", 1).unwrap(); + // New length must reflect the new payload (UTF-16 + NUL = 24 bytes). + let utf16_len = "hello world".encode_utf16().count() * 2 + 2; + let outer = read_i32_le(&replaced, 18); + let inner = read_i32_le(&replaced, 22); + assert_eq!(inner, utf16_len as i32); + assert_eq!(outer, utf16_len as i32 + 4); + // The captured suffix (everything after the value slot) must + // still appear verbatim. + let suffix_start = VARIABLE_VALUE_OFFSET + utf16_len; + let suffix_len = template.suffix_before_write_index().len(); + assert_eq!( + &replaced[suffix_start..suffix_start + suffix_len], + template.suffix_before_write_index() + ); + } + + // ---- Suffix preservation --------------------------------------------- + + #[test] + fn suffix_clienttoken_and_writeindex_preserved_across_with_value_calls() { + let original = observed_int32_body(123, 0xAA, 0xDEADBEEF); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32, &original).unwrap(); + // Replace value but keep writeIndex; the captured clientToken + // (in the suffix) must round-trip. + let replaced = template.with_int32(999, 0xAA).unwrap(); + // For Int32 normal write, the suffix layout is: + // body[22..24] = -1 i16 + // body[24..32] = 8-byte filler + // body[32..36] = clientToken u32 + // body[36..40] = writeIndex i32 + let client_token = + u32::from_le_bytes([replaced[32], replaced[33], replaced[34], replaced[35]]); + assert_eq!(client_token, 0xDEADBEEF); + let write_index = + i32::from_le_bytes([replaced[36], replaced[37], replaced[38], replaced[39]]); + assert_eq!(write_index, 0xAA); + } + + #[test] + fn suffix_minus_one_marker_preserved() { + // The leading i16 of the normal suffix is -1 (0xFFFF); it lives in + // the captured suffix bytes, so any with_value call should preserve it. + let original = observed_int32_body(0, 1, 0); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32, &original).unwrap(); + let replaced = template.with_int32(0xFEED, 99).unwrap(); + let leading = i16::from_le_bytes([replaced[22], replaced[23]]); + assert_eq!(leading, -1); + } + + #[test] + fn write_index_decoder() { + let original = observed_int32_body(0, 0xABCDEF, 0); + let decoded = ObservedWriteBodyTemplate::decode_write_index(&original).unwrap(); + assert_eq!(decoded, 0xABCDEF); + } + + // ---- Array kind: count patch and suffix ----------------------------- + + #[test] + fn array_descriptor_count_patched_on_replacement() { + // Original: 3 Int32 elements -> body[22..24] count = 3. + let original = observed_int32_array_body(&[10, 20, 30], 1, 0); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32Array, &original).unwrap(); + // Replace with a 5-element array; descriptor count u16 must be 5. + let replaced = template + .with_value(&MxValue::Int32Array(vec![1, 2, 3, 4, 5]), 1) + .unwrap(); + let count = u16::from_le_bytes([replaced[22], replaced[23]]); + assert_eq!(count, 5); + } + + #[test] + fn array_string_descriptor_not_patched_on_replacement() { + // StringArray / DateTimeArray skip PatchArrayDescriptor (.cs:397-400). + let original = write_message::encode( + &sample_handle(), + &WriteValue::StringArray(vec!["a".into(), "b".into()]), + 1, + 0, + ) + .unwrap(); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::StringArray, &original).unwrap(); + let count_before = u16::from_le_bytes([original[22], original[23]]); + let replaced = template + .with_value( + &MxValue::StringArray(vec!["xx".into(), "yy".into(), "zz".into()]), + 1, + ) + .unwrap(); + let count_after = u16::from_le_bytes([replaced[22], replaced[23]]); + // Per .NET behaviour, the count u16 is NOT patched for variable arrays. + assert_eq!(count_after, count_before); + } + + // ---- Error paths ----------------------------------------------------- + + #[test] + fn from_observed_rejects_short_buffer() { + let err = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32, &[0u8; 23]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn from_observed_rejects_unsupported_kind() { + let original = observed_int32_body(0, 1, 0); + let err = ObservedWriteBodyTemplate::from_observed(MxValueKind::ElapsedTime, &original) + .unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn from_observed_rejects_short_array_body() { + // 28 + 18 - 1 = 45 bytes (one byte short). + let err = ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32Array, &[0u8; 45]) + .unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn from_observed_rejects_invalid_variable_lengths() { + // Build a 30-byte body where body[22..26] declares a value length of 0. + let mut buf = vec![0u8; 30]; + write_i32_le(&mut buf, 22, 0); + let err = ObservedWriteBodyTemplate::from_observed(MxValueKind::String, &buf).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn with_value_rejects_kind_mismatch() { + let original = observed_int32_body(0, 1, 0); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32, &original).unwrap(); + let err = template.with_value(&MxValue::Float32(1.0), 1).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn command_and_wire_kind_accessors() { + let original = observed_int32_body(123, 1, 0); + let template = + ObservedWriteBodyTemplate::from_observed(MxValueKind::Int32, &original).unwrap(); + // Normal Write opcode is 0x37; Int32 wire kind is 0x02. + assert_eq!(template.command(), 0x37); + assert_eq!(template.wire_kind(), 0x02); + } +} diff --git a/rust/crates/mxaccess-codec/src/operation_status.rs b/rust/crates/mxaccess-codec/src/operation_status.rs new file mode 100644 index 0000000..bc305d5 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/operation_status.rs @@ -0,0 +1,284 @@ +//! `NmxOperationStatusMessage` — completion / status-word frames. +//! +//! Direct port of `src/MxNativeCodec/NmxOperationStatusMessage.cs`. +//! +//! Two on-the-wire shapes are recognised by the inner-body parser: +//! +//! 1. **5-byte status-word frame** — `00 00 SS SS CC` where `SS SS` is a u16 +//! LE status code and `CC` is a completion code. The single proven mapping +//! is `00 00 50 80 00` → [`MxStatus::WRITE_COMPLETE_OK`] +//! (`NmxOperationStatusMessage.cs:48-62`, +//! `design/40-protocol-invariants.md:346`). +//! 2. **1-byte completion-only frame** — a single byte `CC`. Three values are +//! observed in the wild (`0x00`, `0x41`, `0xEF`) but the byte→status +//! mapping is unproven; they are preserved verbatim per +//! `design/70-risks-and-open-questions.md` R3/R4 and +//! `NmxOperationStatusMessage.cs:36-46,69-76`. +//! +//! The .NET reference also exposes `TryParseProcessDataReceivedBody`, which +//! peels an outer `NmxObservedEnvelope` before delegating to the inner-body +//! parser. The outer envelope codec has not yet been ported to Rust; only +//! [`NmxOperationStatusMessage::try_parse_inner`] is provided here. When +//! `NmxObservedEnvelope` lands, add `try_parse_process_data_received_body` as +//! a thin wrapper. + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; +use crate::status::{MxStatus, MxStatusCategory, MxStatusSource}; + +/// Which of the two recognised inner-frame shapes was decoded +/// (`NmxOperationStatusMessage.cs:3-7`). +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub enum NmxOperationStatusFormat { + /// Single-byte completion frame (`NmxOperationStatusMessage.cs:5,36-46`). + CompletionOnly, + /// 5-byte `00 00 SS SS CC` status-word frame + /// (`NmxOperationStatusMessage.cs:6,48-62`). + StatusWord, +} + +/// Decoded operation-status frame +/// (`NmxOperationStatusMessage.cs:9-15` — record fields). +/// +/// The four payload fields preserve the raw on-wire bytes; [`Self::status`] +/// carries the promoted [`MxStatus`] when a known mapping exists, or an +/// unpromoted placeholder otherwise (see `CompletionOnly` and the fallback +/// branch of `StatusWord`). +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub struct NmxOperationStatusMessage { + /// Which inner frame shape was observed. + pub format: NmxOperationStatusFormat, + /// First byte of the 5-byte frame (`NmxOperationStatusMessage.cs:54`). + /// `0` for `CompletionOnly` frames. + pub command: u8, + /// `inner[2..4]` u16 LE for `StatusWord` (`NmxOperationStatusMessage.cs:50`). + /// `0` for `CompletionOnly` frames. + pub status_code: u16, + /// Completion byte. `inner[0]` for `CompletionOnly` + /// (`NmxOperationStatusMessage.cs:38`); `inner[4]` for `StatusWord` + /// (`NmxOperationStatusMessage.cs:51`). + pub completion_code: u8, + /// Promoted status. The only proven promotion is + /// `status_code == 0x8050 && completion_code == 0x00 → WRITE_COMPLETE_OK` + /// (`NmxOperationStatusMessage.cs:57`, + /// `design/40-protocol-invariants.md:346`). Every other shape is wrapped + /// in an `Unknown`/`Unknown` placeholder with the raw byte preserved in + /// `detail`. + pub status: MxStatus, +} + +impl NmxOperationStatusMessage { + /// `true` for the proven `00 00 50 80 00` frame + /// (`NmxOperationStatusMessage.cs:16-18`). + pub fn is_mx_access_write_complete(&self) -> bool { + self.format == NmxOperationStatusFormat::StatusWord + && self.status_code == 0x8050 + && self.completion_code == 0x00 + } + + /// Parse an inner body — either 1 byte (`CompletionOnly`) or 5 bytes + /// (`StatusWord` with leading `00 00`). + /// + /// Mirrors `NmxOperationStatusMessage.TryParseInner` + /// (`NmxOperationStatusMessage.cs:34-67`). + /// + /// # Errors + /// + /// Returns [`CodecError::ShortRead`] when the buffer length matches no + /// recognised shape. The .NET reference returns `false` and a `null!` + /// out-param; the Rust port surfaces the failure as a typed error so + /// callers can distinguish "not an operation-status frame" from + /// "successfully parsed". Match on the error to mirror the bool API. + pub fn try_parse_inner(inner: &[u8]) -> Result { + if inner.len() == 1 { + // CompletionOnly — `NmxOperationStatusMessage.cs:36-46`. + let completion_code = inner[0]; + return Ok(Self { + format: NmxOperationStatusFormat::CompletionOnly, + command: 0, + status_code: 0, + completion_code, + status: create_unpromoted_completion_status(completion_code), + }); + } + + if inner.len() == 5 && inner[0] == 0x00 && inner[1] == 0x00 { + // StatusWord — `NmxOperationStatusMessage.cs:48-62`. + let status_code = u16::from(inner[2]) | (u16::from(inner[3]) << 8); + let completion_code = inner[4]; + + // Only the (0x8050, 0x00) shape is promoted to a typed status. + // Every other (status_code, completion_code) pair is preserved as + // an Unknown/Unknown placeholder with the raw byte in `detail`, + // mirroring `NmxOperationStatusMessage.cs:57-61`. + // + // The .NET fallback packs `detail` as: + // completion_code == 0x00 ? (short)status_code : completion_code + // We replicate the same selection here, including the + // `unchecked((short)statusCode)` reinterpretation (i.e. the u16's + // bit pattern as i16). + let status = if status_code == 0x8050 && completion_code == 0x00 { + MxStatus::WRITE_COMPLETE_OK + } else { + let detail = if completion_code == 0x00 { + // Reinterpret the u16 status_code as i16 (two's complement). + status_code as i16 + } else { + i16::from(completion_code) + }; + MxStatus { + success: 0, + category: MxStatusCategory::Unknown, + detected_by: MxStatusSource::Unknown, + detail, + } + }; + + return Ok(Self { + format: NmxOperationStatusFormat::StatusWord, + command: inner[0], + status_code, + completion_code, + status, + }); + } + + Err(CodecError::ShortRead { + // 1 or 5 are the two valid lengths; report the smaller for the + // diagnostic. Callers that need the strict bool API should pattern + // match on `Err(_) => false`. + expected: 1, + actual: inner.len(), + }) + } +} + +/// Build the unpromoted placeholder status used by `CompletionOnly` frames +/// (`NmxOperationStatusMessage.cs:69-76`). +fn create_unpromoted_completion_status(completion_code: u8) -> MxStatus { + MxStatus { + success: 0, + category: MxStatusCategory::Unknown, + detected_by: MxStatusSource::Unknown, + detail: i16::from(completion_code), + } +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + #[test] + fn write_complete_ok_frame() { + // The proven 5-byte mapping (`design/40-protocol-invariants.md:346`). + let frame = [0x00, 0x00, 0x50, 0x80, 0x00]; + let msg = NmxOperationStatusMessage::try_parse_inner(&frame).unwrap(); + assert_eq!(msg.format, NmxOperationStatusFormat::StatusWord); + assert_eq!(msg.command, 0x00); + assert_eq!(msg.status_code, 0x8050); + assert_eq!(msg.completion_code, 0x00); + assert_eq!(msg.status, MxStatus::WRITE_COMPLETE_OK); + assert!(msg.is_mx_access_write_complete()); + } + + #[test] + fn status_word_unknown_with_completion_zero_packs_status_code_as_i16() { + // status_code 0x8051, completion 0x00 — not the proven mapping; falls + // through to the unpromoted branch with detail = (i16)0x8051 = -32687. + // Mirrors `NmxOperationStatusMessage.cs:61` (`unchecked((short)statusCode)`). + let frame = [0x00, 0x00, 0x51, 0x80, 0x00]; + let msg = NmxOperationStatusMessage::try_parse_inner(&frame).unwrap(); + assert_eq!(msg.format, NmxOperationStatusFormat::StatusWord); + assert_eq!(msg.status_code, 0x8051); + assert_eq!(msg.completion_code, 0x00); + assert_eq!(msg.status.category, MxStatusCategory::Unknown); + assert_eq!(msg.status.detected_by, MxStatusSource::Unknown); + assert_eq!(msg.status.detail, 0x8051u16 as i16); + assert!(!msg.is_mx_access_write_complete()); + } + + #[test] + fn status_word_unknown_with_nonzero_completion_packs_completion_in_detail() { + // completion_code != 0 — detail = completion_code as i16 + // (`NmxOperationStatusMessage.cs:61`). + let frame = [0x00, 0x00, 0x50, 0x80, 0x42]; + let msg = NmxOperationStatusMessage::try_parse_inner(&frame).unwrap(); + assert_eq!(msg.completion_code, 0x42); + assert_eq!(msg.status.detail, 0x42); + assert_eq!(msg.status.category, MxStatusCategory::Unknown); + assert!(!msg.is_mx_access_write_complete()); + } + + #[test] + fn completion_only_zero_byte() { + // 1-byte 0x00 — preserved verbatim per design R3/R4. + let frame = [0x00]; + let msg = NmxOperationStatusMessage::try_parse_inner(&frame).unwrap(); + assert_eq!(msg.format, NmxOperationStatusFormat::CompletionOnly); + assert_eq!(msg.command, 0); + assert_eq!(msg.status_code, 0); + assert_eq!(msg.completion_code, 0x00); + assert_eq!(msg.status.detail, 0x00); + assert_eq!(msg.status.category, MxStatusCategory::Unknown); + // `CompletionOnly` is never promoted to WriteCompleteOk. + assert!(!msg.is_mx_access_write_complete()); + } + + #[test] + fn completion_only_0x41_byte() { + // 1-byte 0x41 — observed in the wild, mapping unproven + // (`design/70-risks-and-open-questions.md` R4). + let frame = [0x41]; + let msg = NmxOperationStatusMessage::try_parse_inner(&frame).unwrap(); + assert_eq!(msg.format, NmxOperationStatusFormat::CompletionOnly); + assert_eq!(msg.completion_code, 0x41); + assert_eq!(msg.status.detail, 0x41); + assert_eq!(msg.status.category, MxStatusCategory::Unknown); + } + + #[test] + fn completion_only_0xef_byte() { + // 1-byte 0xEF — observed in the wild, mapping unproven + // (`design/70-risks-and-open-questions.md` R4). + let frame = [0xEF]; + let msg = NmxOperationStatusMessage::try_parse_inner(&frame).unwrap(); + assert_eq!(msg.format, NmxOperationStatusFormat::CompletionOnly); + assert_eq!(msg.completion_code, 0xEF); + // 0xEF as i16 is 0x00EF (zero-extended), not -17. + assert_eq!(msg.status.detail, 0xEF); + } + + #[test] + fn rejects_unknown_length() { + // 0 / 2 / 3 / 4 / 6 bytes — all non-recognised shapes. + for len in [0_usize, 2, 3, 4, 6, 16] { + let buf = vec![0u8; len]; + assert!( + NmxOperationStatusMessage::try_parse_inner(&buf).is_err(), + "length {len} should be rejected" + ); + } + } + + #[test] + fn rejects_5_byte_frame_without_leading_zeros() { + // 5 bytes with non-zero leading bytes — not a StatusWord frame + // (`NmxOperationStatusMessage.cs:48` requires `inner[0] == 0 && inner[1] == 0`). + let frame = [0x01, 0x00, 0x50, 0x80, 0x00]; + assert!(NmxOperationStatusMessage::try_parse_inner(&frame).is_err()); + let frame = [0x00, 0x01, 0x50, 0x80, 0x00]; + assert!(NmxOperationStatusMessage::try_parse_inner(&frame).is_err()); + } + + #[test] + fn status_code_is_little_endian() { + // `inner[2..4]` is read as u16 LE — `inner[2] | (inner[3] << 8)`. + // 0xAA at [2], 0xBB at [3] → 0xBBAA. + let frame = [0x00, 0x00, 0xAA, 0xBB, 0x00]; + let msg = NmxOperationStatusMessage::try_parse_inner(&frame).unwrap(); + assert_eq!(msg.status_code, 0xBBAA); + } +} diff --git a/rust/crates/mxaccess-codec/src/reference_handle.rs b/rust/crates/mxaccess-codec/src/reference_handle.rs new file mode 100644 index 0000000..84d6e93 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/reference_handle.rs @@ -0,0 +1,422 @@ +//! `MxReferenceHandle` — 20-byte reference handle. +//! +//! Direct port of `src/MxNativeCodec/MxReferenceHandle.cs`. CRC-16/IBM +//! (poly `0xa001`, initial `0`) computed over lowercase UTF-16LE name bytes +//! (low byte then high byte per char), per `MxReferenceHandle.cs:51,47-59`. + +// Direct byte indexing is the right pattern for fixed-layout codec code: +// every byte access is preceded by an explicit length check, and the resulting +// code reads as a 1:1 mirror of the .NET source's `BinaryPrimitives` calls. +// `.get(n)?` would obscure the byte map. +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; + +const CRC16_IBM_POLYNOMIAL: u16 = 0xa001; + +/// 20-byte reference handle. Encoded layout matches the .NET reference +/// (`MxReferenceHandle.cs:88-106`): +/// +/// ```text +/// offset size field +/// 0 1 galaxy_id +/// 1 1 reserved (always 0; not exposed publicly) +/// 2 2 platform_id u16 LE +/// 4 2 engine_id u16 LE +/// 6 2 object_id u16 LE +/// 8 2 object_signature u16 LE (CRC-16/IBM of object tag name) +/// 10 2 primitive_id i16 LE +/// 12 2 attribute_id i16 LE +/// 14 2 property_id i16 LE +/// 16 2 attribute_signature u16 LE (CRC-16/IBM of attribute name) +/// 18 2 attribute_index i16 LE (-1 array, 0 scalar) +/// ``` +/// +/// `object_signature` and `attribute_signature` are derived values. The Rust +/// port keeps them private — the only constructor that produces a handle from +/// names is [`from_names`]; the only mutators that update one signature are +/// [`with_object_tag_name`] and [`with_attribute_name`], which both +/// recompute. This is a deliberate tightening over the .NET reference (which +/// is a record with public init-only signature fields). +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +pub struct MxReferenceHandle { + pub galaxy_id: u8, + pub platform_id: u16, + pub engine_id: u16, + pub object_id: u16, + object_signature: u16, + pub primitive_id: i16, + pub attribute_id: i16, + pub property_id: i16, + attribute_signature: u16, + pub attribute_index: i16, +} + +impl MxReferenceHandle { + pub const ENCODED_LEN: usize = 20; + + /// Construct a handle by computing the object/attribute signatures from + /// their respective names. Mirrors `MxReferenceHandle.Create`. + /// + /// # Errors + /// + /// Returns [`CodecError::InvalidName`] if either name is empty or + /// whitespace-only — matching the .NET `ArgumentException.ThrowIfNullOrWhiteSpace` + /// contract at `MxReferenceHandle.cs:49`. + #[allow(clippy::too_many_arguments)] + pub fn from_names( + galaxy_id: u8, + platform_id: u16, + engine_id: u16, + object_id: u16, + object_tag_name: &str, + primitive_id: i16, + attribute_id: i16, + property_id: i16, + attribute_name: &str, + is_array: bool, + ) -> Result { + Ok(Self { + galaxy_id, + platform_id, + engine_id, + object_id, + object_signature: compute_name_signature(object_tag_name)?, + primitive_id, + attribute_id, + property_id, + attribute_signature: compute_name_signature(attribute_name)?, + attribute_index: if is_array { -1 } else { 0 }, + }) + } + + pub fn object_signature(self) -> u16 { + self.object_signature + } + + pub fn attribute_signature(self) -> u16 { + self.attribute_signature + } + + /// Returns a new handle with the object signature recomputed from + /// `object_tag_name`. Every other field is preserved. + pub fn with_object_tag_name(self, object_tag_name: &str) -> Result { + Ok(Self { + object_signature: compute_name_signature(object_tag_name)?, + ..self + }) + } + + /// Returns a new handle with the attribute signature recomputed from + /// `attribute_name`. Every other field is preserved. + pub fn with_attribute_name(self, attribute_name: &str) -> Result { + Ok(Self { + attribute_signature: compute_name_signature(attribute_name)?, + ..self + }) + } + + /// Parse a 20-byte encoded handle. Mirrors `MxReferenceHandle.Parse` + /// (`MxReferenceHandle.cs:61-79`); byte 1 is read but discarded. + /// + /// # Errors + /// + /// Returns [`CodecError::ShortRead`] if `bytes` is not exactly 20 bytes. + pub fn parse(bytes: &[u8]) -> Result { + if bytes.len() != Self::ENCODED_LEN { + return Err(CodecError::ShortRead { + expected: Self::ENCODED_LEN, + actual: bytes.len(), + }); + } + Ok(Self { + galaxy_id: bytes[0], + // byte 1 reserved (discarded, mirrors .NET Parse) + platform_id: read_u16_le(bytes, 2), + engine_id: read_u16_le(bytes, 4), + object_id: read_u16_le(bytes, 6), + object_signature: read_u16_le(bytes, 8), + primitive_id: read_i16_le(bytes, 10), + attribute_id: read_i16_le(bytes, 12), + property_id: read_i16_le(bytes, 14), + attribute_signature: read_u16_le(bytes, 16), + attribute_index: read_i16_le(bytes, 18), + }) + } + + /// Encode into a freshly-allocated 20-byte buffer. + pub fn encode(self) -> [u8; Self::ENCODED_LEN] { + let mut bytes = [0u8; Self::ENCODED_LEN]; + self.write_to(&mut bytes); + bytes + } + + /// Encode into the provided destination. Mirrors `MxReferenceHandle.WriteTo` + /// (`MxReferenceHandle.cs:88-106`); byte 1 is always written as 0. + /// + /// # Panics + /// + /// Panics if `destination.len() < 20`. Use a 20-byte slice or call + /// [`encode`] for a fresh buffer. + pub fn write_to(self, destination: &mut [u8]) { + assert!( + destination.len() >= Self::ENCODED_LEN, + "destination must be at least {} bytes", + Self::ENCODED_LEN + ); + destination[0] = self.galaxy_id; + destination[1] = 0; + write_u16_le(destination, 2, self.platform_id); + write_u16_le(destination, 4, self.engine_id); + write_u16_le(destination, 6, self.object_id); + write_u16_le(destination, 8, self.object_signature); + write_i16_le(destination, 10, self.primitive_id); + write_i16_le(destination, 12, self.attribute_id); + write_i16_le(destination, 14, self.property_id); + write_u16_le(destination, 16, self.attribute_signature); + write_i16_le(destination, 18, self.attribute_index); + } +} + +/// CRC-16/IBM signature of a name. Lowercases the name, then for each `char` +/// runs the low byte then high byte of the UTF-16LE representation through +/// [`update_crc16_ibm`]. +/// +/// Mirrors `MxReferenceHandle.ComputeNameSignature` (`MxReferenceHandle.cs:47-59`). +/// +/// **Unicode caveat**: This uses Rust's [`str::to_lowercase`], which performs +/// the Unicode Default_Lowercase mapping. This is intended to match +/// `String.ToLowerInvariant()` in .NET. Edge cases involving locale-tailored +/// mappings (e.g. Turkish dotless-i) may diverge — see +/// `design/10-raw-layer.md` L37 for the path forward via `icu_casemap`. +/// +/// # Errors +/// +/// Returns [`CodecError::InvalidName`] if `name` is empty or whitespace-only. +pub fn compute_name_signature(name: &str) -> Result { + if name.trim().is_empty() { + return Err(CodecError::InvalidName); + } + let lower = name.to_lowercase(); + let mut crc: u16 = 0; + for ch in lower.chars() { + // UTF-16LE: low byte then high byte of each `char`'s UTF-16 code units. + // Surrogate-pair chars (>= U+10000) emit two u16 code units; we feed + // each as low-then-high. This mirrors the .NET enumeration which + // iterates over UTF-16 code units (the `char` in C# is a u16). + let mut buf = [0u16; 2]; + let utf16 = ch.encode_utf16(&mut buf); + for unit in utf16 { + crc = update_crc16_ibm(crc, *unit as u8); + crc = update_crc16_ibm(crc, (*unit >> 8) as u8); + } + } + Ok(crc) +} + +/// One iteration of the CRC-16/IBM update loop (poly `0xa001`, right-shifted +/// variant). Mirrors `UpdateCrc16Ibm` (`MxReferenceHandle.cs:108-119`). +pub const fn update_crc16_ibm(mut crc: u16, value: u8) -> u16 { + crc ^= value as u16; + let mut bit = 0u8; + while bit < 8 { + crc = if (crc & 1) != 0 { + (crc >> 1) ^ CRC16_IBM_POLYNOMIAL + } else { + crc >> 1 + }; + bit += 1; + } + crc +} + +#[inline] +fn read_u16_le(bytes: &[u8], offset: usize) -> u16 { + u16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i16_le(bytes: &[u8], offset: usize) -> i16 { + i16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn write_u16_le(bytes: &mut [u8], offset: usize, value: u16) { + let le = value.to_le_bytes(); + bytes[offset] = le[0]; + bytes[offset + 1] = le[1]; +} + +#[inline] +fn write_i16_le(bytes: &mut [u8], offset: usize, value: i16) { + let le = value.to_le_bytes(); + bytes[offset] = le[0]; + bytes[offset + 1] = le[1]; +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + /// CRC vectors hand-traced from `MxReferenceHandle.cs` against the + /// .NET `ToLowerInvariant` + per-char low/high UTF-16LE feed. + /// + /// Single ASCII char "a" (0x61): + /// low byte = 0x61 → after one iter: crc = ? + /// high byte = 0x00 → after another iter + /// + /// Easier sanity: empty string check; matches the .NET behaviour of + /// throwing on whitespace-only input. + /// **Cross-implementation parity**: the values on the right are the exact + /// CRC-16/IBM outputs of `MxNativeCodec.MxReferenceHandle.ComputeNameSignature` + /// in the .NET reference, captured via `tools/Compute-Crc.ps1`. If the + /// Rust port ever diverges, these tests catch it. Regenerate with + /// `pwsh -NoProfile -File tools\Compute-Crc.ps1` after adding new vectors. + #[test] + fn dotnet_reference_parity_vectors() { + let cases = [ + ("TestObject", 0x0B25), + ("TestInt", 0xDA3E), + ("$Object", 0x22A4), + ("a", 0x9029), + ("TestChildObject", 0xD736), + // Case-insensitivity: all three of these collapse to the same CRC + // because `to_lowercase` matches `String.ToLowerInvariant`. + ("testobject", 0x0B25), + ("TESTOBJECT", 0x0B25), + ]; + for (name, expected) in cases { + assert_eq!( + compute_name_signature(name).unwrap(), + expected, + "CRC for {name:?} diverged from .NET reference" + ); + } + } + + #[test] + fn empty_name_rejected() { + assert!(compute_name_signature("").is_err()); + assert!(compute_name_signature(" ").is_err()); + } + + #[test] + fn lowercasing_is_invariant() { + // Same name in different cases produces the same signature. + let a = compute_name_signature("TestObject").unwrap(); + let b = compute_name_signature("testobject").unwrap(); + let c = compute_name_signature("TESTOBJECT").unwrap(); + assert_eq!(a, b); + assert_eq!(a, c); + } + + #[test] + fn distinct_names_distinct_signatures() { + // Different names should hash to different values for any reasonable + // hash. (CRC-16 collisions exist, but these short distinct strings + // shouldn't collide.) + let a = compute_name_signature("TestObject").unwrap(); + let b = compute_name_signature("TestInt").unwrap(); + let c = compute_name_signature("$Object").unwrap(); + assert_ne!(a, b); + assert_ne!(a, c); + assert_ne!(b, c); + } + + #[test] + fn crc_init_is_zero() { + // CRC of a single null byte under poly 0xa001 with init 0: + // crc = 0 XOR 0 = 0; eight right-shifts on 0 stay 0. + // So CRC of [0u8] under update_crc16_ibm is 0. + assert_eq!(update_crc16_ibm(0, 0), 0); + } + + #[test] + fn round_trip_zero_handle() { + let handle = MxReferenceHandle::default(); + let encoded = handle.encode(); + let decoded = MxReferenceHandle::parse(&encoded).unwrap(); + assert_eq!(handle, decoded); + assert_eq!(encoded, [0u8; 20]); + } + + #[test] + fn round_trip_populated_handle() { + let handle = MxReferenceHandle::from_names( + 1, // galaxy_id + 42, // platform_id + 17, // engine_id + 300, // object_id + "TestChildObject", // object_tag_name + -1, // primitive_id + 7, // attribute_id + 0, // property_id + "TestInt", // attribute_name + false, // is_array + ) + .unwrap(); + + let encoded = handle.encode(); + let decoded = MxReferenceHandle::parse(&encoded).unwrap(); + assert_eq!(handle, decoded); + assert_eq!(decoded.galaxy_id, 1); + assert_eq!(decoded.platform_id, 42); + assert_eq!(decoded.engine_id, 17); + assert_eq!(decoded.object_id, 300); + assert_eq!(decoded.primitive_id, -1); + assert_eq!(decoded.attribute_id, 7); + assert_eq!(decoded.property_id, 0); + assert_eq!(decoded.attribute_index, 0); + assert_eq!(decoded.object_signature(), handle.object_signature()); + assert_eq!(decoded.attribute_signature(), handle.attribute_signature()); + } + + #[test] + fn array_flag_is_minus_one() { + let handle = MxReferenceHandle::from_names(1, 1, 1, 1, "X", 0, 0, 0, "Y", true).unwrap(); + assert_eq!(handle.attribute_index, -1); + } + + #[test] + fn byte_1_always_zero_on_encode() { + let handle = MxReferenceHandle { + galaxy_id: 0xff, + ..MxReferenceHandle::default() + }; + let encoded = handle.encode(); + assert_eq!(encoded[0], 0xff); + assert_eq!(encoded[1], 0x00); + } + + #[test] + fn parse_rejects_short_buffer() { + assert!(MxReferenceHandle::parse(&[0u8; 19]).is_err()); + assert!(MxReferenceHandle::parse(&[0u8; 21]).is_err()); + } + + #[test] + fn with_attribute_name_recomputes_signature() { + let h1 = MxReferenceHandle::from_names(1, 1, 1, 1, "Obj", 0, 0, 0, "AttrA", false).unwrap(); + let h2 = h1.with_attribute_name("AttrB").unwrap(); + assert_ne!(h1.attribute_signature(), h2.attribute_signature()); + // Object signature unchanged. + assert_eq!(h1.object_signature(), h2.object_signature()); + // Other fields preserved. + assert_eq!(h1.galaxy_id, h2.galaxy_id); + assert_eq!(h1.platform_id, h2.platform_id); + } + + #[test] + fn endianness_is_little() { + // Verify that platform_id 0x1234 ends up as bytes [0x34, 0x12] at + // offset 2..4. + let h = MxReferenceHandle { + platform_id: 0x1234, + ..MxReferenceHandle::default() + }; + let encoded = h.encode(); + assert_eq!(encoded[2], 0x34); + assert_eq!(encoded[3], 0x12); + } +} diff --git a/rust/crates/mxaccess-codec/src/reference_registration.rs b/rust/crates/mxaccess-codec/src/reference_registration.rs new file mode 100644 index 0000000..25736ec --- /dev/null +++ b/rust/crates/mxaccess-codec/src/reference_registration.rs @@ -0,0 +1,1190 @@ +//! NMX reference-registration request (`0x10`) and result (`0x11`) messages. +//! +//! Direct port of: +//! - `src/MxNativeCodec/NmxReferenceRegistrationMessage.cs` (request, opcode `0x10`) +//! - `src/MxNativeCodec/NmxReferenceRegistrationResultMessage.cs` (result, opcode `0x11`) +//! +//! Both types live in the same module because they are tightly coupled: the +//! result is the server's response to the request, sharing the `(ItemHandle, +//! ItemCorrelationId, ItemDefinition, ItemContext)` quadruple as a correlation +//! key. +//! +//! ## Unknown-bytes preservation (request) +//! +//! Per CLAUDE.md, the Rust port must round-trip non-zero bytes in protocol +//! gaps that the .NET reference zero-initialises but does not validate. The +//! request has two such gaps: +//! +//! - bytes 25-26 (2 bytes) — `reserved_25_27` +//! - bytes 31-54 (24 bytes) — `reserved_31_55` +//! +//! The .NET `Encode` allocates `new byte[...]` (`NmxReferenceRegistrationMessage.cs:71-78`) +//! which zeros those regions, but `Parse` does **not** assert they are zero — +//! it skips over them entirely. Captured frames could carry non-zero values +//! and the Rust port preserves them on round-trip. +//! +//! ## Validated-zero regions +//! +//! The .NET `Parse` for both messages **does** assert several regions are +//! all-zero and rejects non-zero bytes: +//! +//! - request: `itemStringReserved` (8 bytes between the two strings) — +//! `NmxReferenceRegistrationMessage.cs:42-47` +//! - request: tail bytes 0..18 (19 of the 20 tail bytes) — +//! `NmxReferenceRegistrationMessage.cs:54-57` +//! - result: 6-byte gap between `mxDataType` and `itemContext` — +//! `NmxReferenceRegistrationResultMessage.cs:52-55` +//! - result: full 16-byte tail — +//! `NmxReferenceRegistrationResultMessage.cs:64-67` +//! +//! These are reproduced as hard rejections in the Rust port. + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; + +// ============================================================================ +// Request message — opcode 0x10 +// ============================================================================ + +/// Command byte at offset 0 (`NmxReferenceRegistrationMessage.cs:13`). +const REQUEST_COMMAND: u8 = 0x10; + +/// Version u16 LE at offset 1 (`NmxReferenceRegistrationMessage.cs:14`). +const REQUEST_VERSION: u16 = 1; + +/// Fixed prefix length (`NmxReferenceRegistrationMessage.cs:15`). +const REQUEST_HEADER_LEN: usize = 55; + +/// 8-byte zero-asserted region between the two registered strings +/// (`NmxReferenceRegistrationMessage.cs:16,42-47`). +const ITEM_STRING_RESERVED_LEN: usize = 8; + +/// 20-byte tail; bytes 0..19 must be zero, byte 19 is the `subscribe_flag` +/// (`NmxReferenceRegistrationMessage.cs:17,54-56,92`). +const REQUEST_TAIL_LEN: usize = 20; + +/// High byte for the 0x81 string length marker +/// (`NmxReferenceRegistrationMessage.cs:108-110, 131`). Used by tests for +/// direct byte assertions; the encode/parse paths use [`TAGGED_STRING_MARKER_WORD`] +/// and [`TAGGED_STRING_MARKER_MASK`] instead. +#[allow(dead_code)] +const TAGGED_STRING_MARKER_BYTE: u8 = 0x81; + +/// Mask for extracting the byte length from a tagged length word +/// (`NmxReferenceRegistrationMessage.cs:107`). +const TAGGED_STRING_LENGTH_MASK: i32 = 0x00FF_FFFF; + +/// Value of the upper byte (`(rawLength >> 24) & 0xFF`) for a tagged length +/// (`NmxReferenceRegistrationMessage.cs:108-110`). +const TAGGED_STRING_MARKER_WORD: i32 = 0x8100_0000_u32 as i32; + +/// `0xFF00_0000` — used to isolate the marker byte when validating tagged +/// strings (`NmxReferenceRegistrationMessage.cs:108`). +const TAGGED_STRING_MARKER_MASK: i32 = 0xFF00_0000_u32 as i32; + +/// 16-byte GUID alias. The .NET reference uses `System.Guid`; the Rust port +/// keeps the raw 16 bytes since this codec crate has no `uuid` dependency +/// and the GUID is opaque from the wire's perspective. +pub type Guid16 = [u8; 16]; + +/// NMX reference-registration request message (opcode `0x10`). +/// +/// Mirrors `NmxReferenceRegistrationMessage` in the .NET reference. The +/// request asks the server to register a tag (`item_definition`) under a +/// `(item_handle, item_correlation_id)` pair within a given `item_context`, +/// optionally subscribing for updates. +/// +/// # Layout +/// +/// ```text +/// offset size field +/// 0 1 command u8 = 0x10 +/// 1 2 version u16 LE = 1 +/// 3 4 item_handle i32 LE +/// 7 16 item_correlation_id GUID +/// 23 2 i16 LE = -1 (constant marker) +/// 25 2 reserved_25_27 [u8; 2] (preserved verbatim) +/// 27 4 i32 LE = 1 (constant) +/// 31 24 reserved_31_55 [u8; 24] (preserved verbatim) +/// 55 4 item_definition tagged length (high byte 0x81 + 24-bit byte length) +/// 59+ N item_definition UTF-16LE + null terminator +/// ... 8 item_string_reserved (must be all zero on parse) +/// ... 4 item_context untagged length (i32 LE byte length) +/// ... M item_context UTF-16LE + null terminator +/// ... 20 tail: 19 zero bytes + 1 subscribe_flag byte +/// ``` +#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)] +pub struct NmxReferenceRegistrationMessage { + /// Item handle assigned by the client; echoed back in the result. + /// Offset 3, i32 LE (`NmxReferenceRegistrationMessage.cs:37, 82`). + pub item_handle: i32, + + /// Correlation GUID; echoed back in the result. + /// Offset 7, 16 bytes (`NmxReferenceRegistrationMessage.cs:38, 83`). + pub item_correlation_id: Guid16, + + /// Tag definition (e.g. `"$Object.SomeAttr"`). Encoded as a tagged string + /// — the i32 length word has high byte `0x81` and the low 24 bits hold + /// the UTF-16LE byte count including the null terminator + /// (`NmxReferenceRegistrationMessage.cs:40, 89`). + pub item_definition: String, + + /// Context (galaxy/platform identifier). Encoded as an untagged string — + /// the length word is a plain i32 byte count + /// (`NmxReferenceRegistrationMessage.cs:48, 91`). + pub item_context: String, + + /// Subscribe flag at byte 19 of the 20-byte tail + /// (`NmxReferenceRegistrationMessage.cs:64, 92`). + pub subscribe: bool, + + /// Bytes 25..27 of the prefix. The .NET reference zero-initialises these + /// (`NmxReferenceRegistrationMessage.cs:71-78`) but `Parse` does not + /// validate them, so the Rust port preserves them per CLAUDE.md. + pub reserved_25_27: [u8; 2], + + /// Bytes 31..55 of the prefix. Same preservation rationale as + /// `reserved_25_27`. + pub reserved_31_55: [u8; 24], +} + +impl NmxReferenceRegistrationMessage { + /// Opcode of the request (`0x10`). + pub const COMMAND: u8 = REQUEST_COMMAND; + + /// Append `.property(buffer)` to a tag definition unless it is already + /// present (case-insensitive). Mirrors + /// `NmxReferenceRegistrationMessage.ToBufferedItemDefinition` + /// (`NmxReferenceRegistrationMessage.cs:96-102`). + /// + /// # Errors + /// + /// Returns [`CodecError::InvalidName`] if `item_definition` is empty or + /// whitespace-only — matches `ArgumentException.ThrowIfNullOrWhiteSpace` + /// in the .NET reference. + pub fn to_buffered_item_definition(item_definition: &str) -> Result { + if item_definition.trim().is_empty() { + return Err(CodecError::InvalidName); + } + const SUFFIX: &str = ".property(buffer)"; + // Use `as_bytes` to avoid panicking on non-UTF-8-char-boundary slices. + // `SUFFIX` is pure ASCII, so byte-level case-insensitive comparison is + // equivalent to `String.EndsWith(..., OrdinalIgnoreCase)`. + let bytes = item_definition.as_bytes(); + let suffix = SUFFIX.as_bytes(); + let already_buffered = bytes.len() >= suffix.len() + && bytes[bytes.len() - suffix.len()..].eq_ignore_ascii_case(suffix); + if already_buffered { + Ok(item_definition.to_string()) + } else { + Ok(format!("{item_definition}{SUFFIX}")) + } + } + + /// Parse a reference-registration request body. + /// + /// Mirrors `NmxReferenceRegistrationMessage.Parse` + /// (`NmxReferenceRegistrationMessage.cs:19-65`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `body.len() < 83` (header + reserved + tail). + /// - [`CodecError::UnexpectedOpcode`] if byte 0 != `0x10`. + /// - [`CodecError::UnsupportedVersion`] if bytes 1..3 != `1u16`. + /// - [`CodecError::Decode`] for any malformed string, missing tagged + /// marker, non-zero `item_string_reserved`, mismatched tail length, or + /// non-zero tail bytes 0..19. + pub fn parse(body: &[u8]) -> Result { + let min_len = REQUEST_HEADER_LEN + ITEM_STRING_RESERVED_LEN + REQUEST_TAIL_LEN; + if body.len() < min_len { + return Err(CodecError::ShortRead { + expected: min_len, + actual: body.len(), + }); + } + + // Offset 0 — command (`NmxReferenceRegistrationMessage.cs:26-29`). + if body[0] != REQUEST_COMMAND { + return Err(CodecError::UnexpectedOpcode(body[0])); + } + + // Offset 1 — version (`NmxReferenceRegistrationMessage.cs:31-35`). + let version = read_u16_le(body, 1); + if version != REQUEST_VERSION { + return Err(CodecError::UnsupportedVersion { + expected: REQUEST_VERSION, + actual: version, + }); + } + + // Offset 3 — item handle (`NmxReferenceRegistrationMessage.cs:37`). + let item_handle = read_i32_le(body, 3); + + // Offset 7 — correlation GUID (`NmxReferenceRegistrationMessage.cs:38`). + let mut item_correlation_id = [0u8; 16]; + item_correlation_id.copy_from_slice(&body[7..23]); + + // Offset 23 — i16 LE = -1. The .NET parser does not validate this, + // it only writes -1 on encode (`NmxReferenceRegistrationMessage.cs:85`). + // Mirror parse behaviour: ignore. Encoding always emits -1. + let _ = read_i16_le(body, 23); + + // Offset 25..27 — preserved reserved bytes. + let mut reserved_25_27 = [0u8; 2]; + reserved_25_27.copy_from_slice(&body[25..27]); + + // Offset 27 — i32 LE = 1. Constant; `Parse` does not validate it + // (`NmxReferenceRegistrationMessage.cs:86`). Mirror. + let _ = read_i32_le(body, 27); + + // Offset 31..55 — preserved reserved bytes. + let mut reserved_31_55 = [0u8; 24]; + reserved_31_55.copy_from_slice(&body[31..55]); + + // Offset 55 — item definition (tagged string). + let mut offset = REQUEST_HEADER_LEN; + let item_definition = read_registered_string(body, &mut offset, true)?; + + // Item-string reserved 8 bytes (must all be zero per + // `NmxReferenceRegistrationMessage.cs:42-46`). + if offset + ITEM_STRING_RESERVED_LEN > body.len() { + return Err(CodecError::ShortRead { + expected: offset + ITEM_STRING_RESERVED_LEN, + actual: body.len(), + }); + } + if body[offset..offset + ITEM_STRING_RESERVED_LEN] + .iter() + .any(|&b| b != 0) + { + return Err(CodecError::Decode { + offset, + reason: "non-zero reference-registration item string reserved bytes", + buffer_len: body.len(), + }); + } + offset += ITEM_STRING_RESERVED_LEN; + + // Item context — untagged string. + let item_context = read_registered_string(body, &mut offset, false)?; + + // Tail (`NmxReferenceRegistrationMessage.cs:49-57, 64`). + let remaining = body.len() - offset; + if remaining != REQUEST_TAIL_LEN { + return Err(CodecError::Decode { + offset, + reason: "unexpected reference-registration tail length", + buffer_len: body.len(), + }); + } + if body[offset..offset + REQUEST_TAIL_LEN - 1] + .iter() + .any(|&b| b != 0) + { + return Err(CodecError::Decode { + offset, + reason: "non-zero reference-registration tail bytes", + buffer_len: body.len(), + }); + } + let subscribe = body[offset + REQUEST_TAIL_LEN - 1] != 0; + + Ok(Self { + item_handle, + item_correlation_id, + item_definition, + item_context, + subscribe, + reserved_25_27, + reserved_31_55, + }) + } + + /// Encode the request body. Mirrors `NmxReferenceRegistrationMessage.Encode` + /// (`NmxReferenceRegistrationMessage.cs:67-94`), but additionally writes + /// `reserved_25_27` and `reserved_31_55` verbatim instead of leaving them + /// at zero. + pub fn encode(&self) -> Vec { + let item_definition_bytes = encode_null_terminated_utf16(&self.item_definition); + let item_context_bytes = encode_null_terminated_utf16(&self.item_context); + + let total_len = REQUEST_HEADER_LEN + + 4 // tagged length word + + item_definition_bytes.len() + + ITEM_STRING_RESERVED_LEN + + 4 // untagged length word + + item_context_bytes.len() + + REQUEST_TAIL_LEN; + + let mut body = vec![0u8; total_len]; + + // Offset 0 — command. + body[0] = REQUEST_COMMAND; + // Offset 1 — version (`NmxReferenceRegistrationMessage.cs:81`). + write_u16_le(&mut body, 1, REQUEST_VERSION); + // Offset 3 — item handle (`NmxReferenceRegistrationMessage.cs:82`). + write_i32_le(&mut body, 3, self.item_handle); + // Offset 7 — correlation GUID (`NmxReferenceRegistrationMessage.cs:83`). + body[7..23].copy_from_slice(&self.item_correlation_id); + // Offset 23 — i16 LE = -1 marker (`NmxReferenceRegistrationMessage.cs:85`). + write_i16_le(&mut body, 23, -1); + // Offset 25..27 — preserved reserved bytes (Rust-port-only behaviour). + body[25..27].copy_from_slice(&self.reserved_25_27); + // Offset 27 — i32 LE = 1 (`NmxReferenceRegistrationMessage.cs:86`). + write_i32_le(&mut body, 27, 1); + // Offset 31..55 — preserved reserved bytes. + body[31..55].copy_from_slice(&self.reserved_31_55); + + let mut offset = REQUEST_HEADER_LEN; + write_registered_string(&mut body, &mut offset, &item_definition_bytes, true); + // 8-byte item-string reserved is left zero (already initialised). + offset += ITEM_STRING_RESERVED_LEN; + write_registered_string(&mut body, &mut offset, &item_context_bytes, false); + // 20-byte tail: bytes 0..19 already zero; byte 19 is subscribe flag + // (`NmxReferenceRegistrationMessage.cs:92`). + body[offset + REQUEST_TAIL_LEN - 1] = u8::from(self.subscribe); + + body + } +} + +// ============================================================================ +// Result message — opcode 0x11 +// ============================================================================ + +/// Command byte at offset 0 (`NmxReferenceRegistrationResultMessage.cs:17`). +const RESULT_COMMAND: u8 = 0x11; + +/// Version u16 LE at offset 1 (`NmxReferenceRegistrationResultMessage.cs:18`). +const RESULT_VERSION: u16 = 1; + +/// Fixed prefix length (`NmxReferenceRegistrationResultMessage.cs:19`). +const RESULT_HEADER_LEN: usize = 45; + +/// Spans the i32 mxDataType + 6 zero-asserted bytes between the two strings +/// (`NmxReferenceRegistrationResultMessage.cs:20, 49-57`). +const RESULT_BETWEEN_STRINGS_LEN: usize = 10; + +/// 16-byte tail; must be all zero on parse +/// (`NmxReferenceRegistrationResultMessage.cs:21, 64-67`). +const RESULT_TAIL_LEN: usize = 16; + +/// Offset of the i32 LE block-length field (validates body.Length - 41) +/// (`NmxReferenceRegistrationResultMessage.cs:41-45`). +const RESULT_BLOCK_LENGTH_OFFSET: usize = 41; + +/// NMX reference-registration result message (opcode `0x11`). +/// +/// Mirrors `NmxReferenceRegistrationResultMessage` in the .NET reference. The +/// .NET type is parse-only (no `Encode` method); the Rust port additionally +/// supplies an [`encode`](Self::encode) so round-trip tests can exercise +/// every code path. Encoding always emits the validated regions as all-zero +/// to match what the server actually produces. +/// +/// # Layout +/// +/// ```text +/// offset size field +/// 0 1 command u8 = 0x11 +/// 1 2 version u16 LE = 1 +/// 3 4 item_handle i32 LE +/// 7 16 item_correlation_id GUID +/// 23 8 first_timestamp_filetime i64 LE (Windows FILETIME ticks) +/// 31 8 second_timestamp_filetime i64 LE (Windows FILETIME ticks) +/// 39 1 status_category u8 +/// 40 1 status_detail u8 +/// 41 4 block_length i32 LE = body.len() - 41 (validated) +/// 45 4 item_definition tagged length (0x81 marker + 24-bit byte length) +/// 49+ N item_definition UTF-16LE + null terminator +/// ... 4 mx_data_type i32 LE +/// ... 6 zero-asserted reserved bytes +/// ... 4 item_context untagged length (i32 LE byte length) +/// ... M item_context UTF-16LE + null terminator +/// ... 16 tail: all zero +/// ``` +/// +/// `first_timestamp_filetime` / `second_timestamp_filetime` are raw Windows +/// FILETIME tick counts (100-ns intervals since 1601-01-01 UTC). The .NET +/// reference converts them via `DateTime.FromFileTimeUtc` +/// (`NmxReferenceRegistrationResultMessage.cs:72-73`); the Rust codec keeps +/// them as `i64` ticks and leaves time-zone / `chrono`/`time` conversion to +/// higher layers. +#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)] +pub struct NmxReferenceRegistrationResultMessage { + /// Echo of the request's `item_handle`. + pub item_handle: i32, + /// Echo of the request's `item_correlation_id`. + pub item_correlation_id: Guid16, + /// Windows FILETIME ticks (100-ns since 1601-01-01 UTC). + /// `NmxReferenceRegistrationResultMessage.cs:72`. + pub first_timestamp_filetime: i64, + /// Windows FILETIME ticks (100-ns since 1601-01-01 UTC). + /// `NmxReferenceRegistrationResultMessage.cs:73`. + pub second_timestamp_filetime: i64, + /// `MxStatus` category byte at offset 39 + /// (`NmxReferenceRegistrationResultMessage.cs:74`). + pub status_category: u8, + /// `MxStatus` detail byte at offset 40 + /// (`NmxReferenceRegistrationResultMessage.cs:75`). + pub status_detail: u8, + /// Echo of the request's `item_definition`. + pub item_definition: String, + /// MxDataType i32 LE that follows `item_definition` + /// (`NmxReferenceRegistrationResultMessage.cs:49-50, 77`). + pub mx_data_type: i32, + /// Echo of the request's `item_context`. + pub item_context: String, +} + +impl NmxReferenceRegistrationResultMessage { + /// Opcode of the result (`0x11`). + pub const COMMAND: u8 = RESULT_COMMAND; + + /// Parse a reference-registration result body. + /// + /// Mirrors `NmxReferenceRegistrationResultMessage.Parse` + /// (`NmxReferenceRegistrationResultMessage.cs:23-79`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `body.len() < 61` (header + tail). + /// - [`CodecError::UnexpectedOpcode`] if byte 0 != `0x11`. + /// - [`CodecError::UnsupportedVersion`] if bytes 1..3 != `1u16`. + /// - [`CodecError::Decode`] for malformed strings, mismatched + /// `block_length`, non-zero between-strings reserved, mismatched tail + /// length, or non-zero tail bytes. + pub fn parse(body: &[u8]) -> Result { + let min_len = RESULT_HEADER_LEN + RESULT_TAIL_LEN; + if body.len() < min_len { + return Err(CodecError::ShortRead { + expected: min_len, + actual: body.len(), + }); + } + + // Offset 0 — command (`NmxReferenceRegistrationResultMessage.cs:30-33`). + if body[0] != RESULT_COMMAND { + return Err(CodecError::UnexpectedOpcode(body[0])); + } + + // Offset 1 — version (`NmxReferenceRegistrationResultMessage.cs:35-39`). + let version = read_u16_le(body, 1); + if version != RESULT_VERSION { + return Err(CodecError::UnsupportedVersion { + expected: RESULT_VERSION, + actual: version, + }); + } + + // Offset 41 — block length validates body length + // (`NmxReferenceRegistrationResultMessage.cs:41-45`). + let block_length = read_i32_le(body, RESULT_BLOCK_LENGTH_OFFSET); + let expected_block_length = (body.len() - RESULT_BLOCK_LENGTH_OFFSET) as i32; + if block_length != expected_block_length { + return Err(CodecError::Decode { + offset: RESULT_BLOCK_LENGTH_OFFSET, + reason: "reference-registration result block length mismatch", + buffer_len: body.len(), + }); + } + + // Offset 45 — item definition (tagged string). + let mut offset = RESULT_HEADER_LEN; + let item_definition = read_registered_string(body, &mut offset, true)?; + + // Followed by mxDataType i32 LE + // (`NmxReferenceRegistrationResultMessage.cs:49-50`). + if offset + 4 > body.len() { + return Err(CodecError::ShortRead { + expected: offset + 4, + actual: body.len(), + }); + } + let mx_data_type = read_i32_le(body, offset); + offset += 4; + + // 6 zero-asserted bytes (`BetweenStringsLength - sizeof(int)` = + // 10 - 4 = 6) — `NmxReferenceRegistrationResultMessage.cs:52-57`. + let between_zero_len = RESULT_BETWEEN_STRINGS_LEN - 4; + if offset + between_zero_len > body.len() { + return Err(CodecError::ShortRead { + expected: offset + between_zero_len, + actual: body.len(), + }); + } + if body[offset..offset + between_zero_len] + .iter() + .any(|&b| b != 0) + { + return Err(CodecError::Decode { + offset, + reason: "non-zero reference-registration result reserved bytes", + buffer_len: body.len(), + }); + } + offset += between_zero_len; + + // Item context — untagged string. + let item_context = read_registered_string(body, &mut offset, false)?; + + // Tail (`NmxReferenceRegistrationResultMessage.cs:59-67`). + let remaining = body.len() - offset; + if remaining != RESULT_TAIL_LEN { + return Err(CodecError::Decode { + offset, + reason: "unexpected reference-registration result tail length", + buffer_len: body.len(), + }); + } + if body[offset..offset + RESULT_TAIL_LEN] + .iter() + .any(|&b| b != 0) + { + return Err(CodecError::Decode { + offset, + reason: "non-zero reference-registration result tail bytes", + buffer_len: body.len(), + }); + } + + // Header values read at the end to mirror the .NET ordering + // (`NmxReferenceRegistrationResultMessage.cs:69-78`). + let item_handle = read_i32_le(body, 3); + let mut item_correlation_id = [0u8; 16]; + item_correlation_id.copy_from_slice(&body[7..23]); + let first_timestamp_filetime = read_i64_le(body, 23); + let second_timestamp_filetime = read_i64_le(body, 31); + let status_category = body[39]; + let status_detail = body[40]; + + Ok(Self { + item_handle, + item_correlation_id, + first_timestamp_filetime, + second_timestamp_filetime, + status_category, + status_detail, + item_definition, + mx_data_type, + item_context, + }) + } + + /// Encode the result body. The .NET reference does not provide an + /// `Encode` (the result is server-emitted); the Rust port supplies one + /// for round-trip testing and for synthetic-server use cases. The + /// validated zero regions (between-strings reserved + 16-byte tail) are + /// emitted as zero, matching what `Parse` accepts. + pub fn encode(&self) -> Vec { + let item_definition_bytes = encode_null_terminated_utf16(&self.item_definition); + let item_context_bytes = encode_null_terminated_utf16(&self.item_context); + + let total_len = RESULT_HEADER_LEN + + 4 // tagged length word + + item_definition_bytes.len() + + RESULT_BETWEEN_STRINGS_LEN + + 4 // untagged length word + + item_context_bytes.len() + + RESULT_TAIL_LEN; + + let mut body = vec![0u8; total_len]; + + body[0] = RESULT_COMMAND; + write_u16_le(&mut body, 1, RESULT_VERSION); + write_i32_le(&mut body, 3, self.item_handle); + body[7..23].copy_from_slice(&self.item_correlation_id); + write_i64_le(&mut body, 23, self.first_timestamp_filetime); + write_i64_le(&mut body, 31, self.second_timestamp_filetime); + body[39] = self.status_category; + body[40] = self.status_detail; + + // Block length covers everything from offset 41 onward + // (`NmxReferenceRegistrationResultMessage.cs:41-44`). + let block_length = (total_len - RESULT_BLOCK_LENGTH_OFFSET) as i32; + write_i32_le(&mut body, RESULT_BLOCK_LENGTH_OFFSET, block_length); + + let mut offset = RESULT_HEADER_LEN; + write_registered_string(&mut body, &mut offset, &item_definition_bytes, true); + // mxDataType i32 LE. + write_i32_le(&mut body, offset, self.mx_data_type); + offset += 4; + // 6 zero bytes (already initialised). + offset += RESULT_BETWEEN_STRINGS_LEN - 4; + write_registered_string(&mut body, &mut offset, &item_context_bytes, false); + // 16-byte zero tail (already initialised). + let _ = offset; + + body + } +} + +// ============================================================================ +// Shared codec helpers — tagged / untagged registered strings +// ============================================================================ + +/// Read a registered string. `tagged_length=true` requires the high byte of +/// the i32 length to be `0x81` and masks it off. +/// +/// Mirrors `ReadRegisteredString` (`NmxReferenceRegistrationMessage.cs:104-127` +/// and the identical helper in `NmxReferenceRegistrationResultMessage.cs:96-119`). +fn read_registered_string( + body: &[u8], + offset: &mut usize, + tagged_length: bool, +) -> Result { + if *offset + 4 > body.len() { + return Err(CodecError::ShortRead { + expected: *offset + 4, + actual: body.len(), + }); + } + let raw_length = read_i32_le(body, *offset); + let byte_length = if tagged_length { + if (raw_length & TAGGED_STRING_MARKER_MASK) != TAGGED_STRING_MARKER_WORD { + return Err(CodecError::Decode { + offset: *offset, + reason: "missing 0x81 tagged-string marker", + buffer_len: body.len(), + }); + } + raw_length & TAGGED_STRING_LENGTH_MASK + } else { + raw_length + }; + + *offset += 4; + + // `NmxReferenceRegistrationMessage.cs:114-117`: byte length must be a + // positive even number that fits within the remaining buffer. + if byte_length < 2 || byte_length % 2 != 0 { + return Err(CodecError::Decode { + offset: *offset - 4, + reason: "invalid registered-string byte length", + buffer_len: body.len(), + }); + } + let byte_length = byte_length as usize; + if *offset + byte_length > body.len() { + return Err(CodecError::Decode { + offset: *offset - 4, + reason: "registered-string byte length exceeds buffer", + buffer_len: body.len(), + }); + } + + let payload = &body[*offset..*offset + byte_length]; + // Last two bytes must form the UTF-16LE null terminator + // (`NmxReferenceRegistrationMessage.cs:120-122`). + if payload[byte_length - 2] != 0 || payload[byte_length - 1] != 0 { + return Err(CodecError::Decode { + offset: *offset, + reason: "registered string is not null-terminated", + buffer_len: body.len(), + }); + } + + let value = decode_utf16_le(&payload[..byte_length - 2]).ok_or(CodecError::Decode { + offset: *offset, + reason: "registered string is not valid UTF-16LE", + buffer_len: body.len(), + })?; + *offset += byte_length; + Ok(value) +} + +/// Write a registered string. `tagged_length=true` ORs the high byte `0x81` +/// into the length word. +/// +/// Mirrors `WriteRegisteredString` (`NmxReferenceRegistrationMessage.cs:129-136`). +fn write_registered_string(body: &mut [u8], offset: &mut usize, value: &[u8], tagged_length: bool) { + let raw_length = if tagged_length { + // value.Length | 0x81000000 + (value.len() as i32) | TAGGED_STRING_MARKER_WORD + } else { + value.len() as i32 + }; + write_i32_le(body, *offset, raw_length); + *offset += 4; + body[*offset..*offset + value.len()].copy_from_slice(value); + *offset += value.len(); +} + +/// Encode a string as null-terminated UTF-16LE. +/// +/// Mirrors `EncodeNullTerminatedUtf16` (`NmxReferenceRegistrationMessage.cs:138-141`): +/// `Encoding.Unicode.GetBytes(value + '\0')`. +fn encode_null_terminated_utf16(value: &str) -> Vec { + let mut out = Vec::with_capacity((value.len() + 1) * 2); + for ch in value.encode_utf16() { + out.extend_from_slice(&ch.to_le_bytes()); + } + out.extend_from_slice(&[0u8, 0u8]); + out +} + +/// Decode a UTF-16LE byte slice. Returns `None` if `bytes.len()` is odd or if +/// the bytes contain unpaired surrogates. Empty input returns `Some(String::new())`. +fn decode_utf16_le(bytes: &[u8]) -> Option { + if bytes.len() % 2 != 0 { + return None; + } + let units: Vec = bytes + .chunks_exact(2) + .map(|c| u16::from_le_bytes([c[0], c[1]])) + .collect(); + char::decode_utf16(units) + .collect::>() + .ok() +} + +// ============================================================================ +// LE helpers +// ============================================================================ + +#[inline] +fn read_u16_le(bytes: &[u8], offset: usize) -> u16 { + u16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i16_le(bytes: &[u8], offset: usize) -> i16 { + i16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn read_i64_le(bytes: &[u8], offset: usize) -> i64 { + i64::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + bytes[offset + 4], + bytes[offset + 5], + bytes[offset + 6], + bytes[offset + 7], + ]) +} + +#[inline] +fn write_u16_le(bytes: &mut [u8], offset: usize, value: u16) { + bytes[offset..offset + 2].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn write_i16_le(bytes: &mut [u8], offset: usize, value: i16) { + bytes[offset..offset + 2].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn write_i32_le(bytes: &mut [u8], offset: usize, value: i32) { + bytes[offset..offset + 4].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn write_i64_le(bytes: &mut [u8], offset: usize, value: i64) { + bytes[offset..offset + 8].copy_from_slice(&value.to_le_bytes()); +} + +// ============================================================================ +// Tests +// ============================================================================ + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + fn sample_request() -> NmxReferenceRegistrationMessage { + NmxReferenceRegistrationMessage { + item_handle: 0x12345678, + item_correlation_id: [ + 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, + 0x0f, 0x10, + ], + item_definition: "TestObject.SomeAttr".to_string(), + item_context: "Galaxy.Platform".to_string(), + subscribe: true, + reserved_25_27: [0u8; 2], + reserved_31_55: [0u8; 24], + } + } + + fn sample_result() -> NmxReferenceRegistrationResultMessage { + NmxReferenceRegistrationResultMessage { + item_handle: 0x77665544, + item_correlation_id: [ + 0x10, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, + 0x02, 0x01, + ], + first_timestamp_filetime: 132_500_000_000_000_000, + second_timestamp_filetime: 132_600_000_000_000_000, + status_category: 0x40, + status_detail: 0x02, + item_definition: "TestObject.Attr".to_string(), + mx_data_type: 7, + item_context: "GalaxyA".to_string(), + } + } + + // ---------- Request round-trip tests ---------- + + #[test] + fn request_round_trip_zero_reserved() { + let req = sample_request(); + let encoded = req.encode(); + let parsed = NmxReferenceRegistrationMessage::parse(&encoded).unwrap(); + assert_eq!(req, parsed); + // Verify reserved regions encoded as zero (control for the next test). + assert_eq!(&encoded[25..27], &[0u8; 2]); + assert_eq!(&encoded[31..55], &[0u8; 24]); + } + + #[test] + fn request_round_trip_nonzero_reserved_preserved() { + // Non-zero reserved bytes must survive a parse/encode cycle (CLAUDE.md + // unknown-bytes preservation rule). + let req = NmxReferenceRegistrationMessage { + reserved_25_27: [0xde, 0xad], + reserved_31_55: [ + 0xfe, 0xed, 0xfa, 0xce, 0xca, 0xfe, 0xba, 0xbe, 0xde, 0xad, 0xbe, 0xef, 0x01, 0x23, + 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xff, 0xee, 0xdd, 0xcc, + ], + ..sample_request() + }; + let encoded = req.encode(); + // Bytes are present on the wire. + assert_eq!(&encoded[25..27], &[0xde, 0xad]); + assert_eq!( + &encoded[31..55], + &[ + 0xfe, 0xed, 0xfa, 0xce, 0xca, 0xfe, 0xba, 0xbe, 0xde, 0xad, 0xbe, 0xef, 0x01, 0x23, + 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xff, 0xee, 0xdd, 0xcc, + ] + ); + + let parsed = NmxReferenceRegistrationMessage::parse(&encoded).unwrap(); + assert_eq!(req, parsed); + assert_eq!(parsed.reserved_25_27, [0xde, 0xad]); + assert_eq!(parsed.reserved_31_55[0], 0xfe); + assert_eq!(parsed.reserved_31_55[23], 0xcc); + + // And re-encoding once more yields a byte-identical buffer. + let re_encoded = parsed.encode(); + assert_eq!(encoded, re_encoded); + } + + #[test] + fn request_tagged_string_marker_byte() { + let req = sample_request(); + let encoded = req.encode(); + // The high byte of the tagged length at offset 55 must be 0x81. + assert_eq!(encoded[55 + 3], TAGGED_STRING_MARKER_BYTE); + } + + #[test] + fn request_untagged_string_round_trip() { + // Use a multi-codepoint context including a non-ASCII char to exercise + // the UTF-16LE encoder. + let req = NmxReferenceRegistrationMessage { + item_definition: "Obj.Attr".to_string(), + item_context: "Δgalaxy".to_string(), + ..sample_request() + }; + let encoded = req.encode(); + let parsed = NmxReferenceRegistrationMessage::parse(&encoded).unwrap(); + assert_eq!(parsed.item_context, "Δgalaxy"); + assert_eq!(parsed.item_definition, "Obj.Attr"); + } + + #[test] + fn request_subscribe_flag_round_trip() { + for flag in [false, true] { + let req = NmxReferenceRegistrationMessage { + subscribe: flag, + ..sample_request() + }; + let encoded = req.encode(); + // Last byte is the subscribe flag. + assert_eq!(*encoded.last().unwrap(), u8::from(flag)); + // Bytes in the rest of the tail are zero. + let tail_start = encoded.len() - REQUEST_TAIL_LEN; + assert!( + encoded[tail_start..tail_start + REQUEST_TAIL_LEN - 1] + .iter() + .all(|&b| b == 0) + ); + let parsed = NmxReferenceRegistrationMessage::parse(&encoded).unwrap(); + assert_eq!(parsed.subscribe, flag); + } + } + + #[test] + fn request_rejects_wrong_opcode() { + let mut encoded = sample_request().encode(); + encoded[0] = 0x11; // Result opcode, not request. + let err = NmxReferenceRegistrationMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::UnexpectedOpcode(0x11))); + } + + #[test] + fn request_rejects_wrong_version() { + let mut encoded = sample_request().encode(); + write_u16_le(&mut encoded, 1, 2); + let err = NmxReferenceRegistrationMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::UnsupportedVersion { .. })); + } + + #[test] + fn request_rejects_missing_tagged_marker() { + // Strip the 0x81 marker from the tagged length word at offset 55. + let mut encoded = sample_request().encode(); + // Zero out the high byte (offset 55+3). + encoded[55 + 3] = 0x00; + let err = NmxReferenceRegistrationMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn request_rejects_wrong_length_prefix() { + // Set the tagged byte length to one larger than what the buffer + // actually carries (preserves the 0x81 marker). + let mut encoded = sample_request().encode(); + let raw = read_i32_le(&encoded, 55); + let bumped = ((raw & TAGGED_STRING_LENGTH_MASK) + 0x100) | TAGGED_STRING_MARKER_WORD; + write_i32_le(&mut encoded, 55, bumped); + let err = NmxReferenceRegistrationMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn request_rejects_nonzero_item_string_reserved() { + // Encode a request, find the item-string reserved 8 bytes, plant a + // non-zero byte there, and verify Parse rejects. + let req = sample_request(); + let mut encoded = req.encode(); + // The item-definition tagged string starts at offset 55: 4-byte + // length, then `item_definition_bytes`. The reserved 8 bytes follow. + let item_def_bytes = encode_null_terminated_utf16(&req.item_definition); + let reserved_offset = REQUEST_HEADER_LEN + 4 + item_def_bytes.len(); + encoded[reserved_offset + 3] = 0xab; + let err = NmxReferenceRegistrationMessage::parse(&encoded).unwrap_err(); + let reason = match err { + CodecError::Decode { reason, .. } => reason, + other => { + assert!(matches!(other, CodecError::Decode { .. })); + return; + } + }; + assert!(reason.contains("item string reserved")); + } + + #[test] + fn request_rejects_nonzero_tail_filler() { + // Plant a non-zero byte in the 19-byte zero region of the tail. + let mut encoded = sample_request().encode(); + let tail_start = encoded.len() - REQUEST_TAIL_LEN; + encoded[tail_start] = 0x01; + let err = NmxReferenceRegistrationMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn request_rejects_short_buffer() { + let err = NmxReferenceRegistrationMessage::parse(&[0u8; 50]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn request_to_buffered_item_definition_appends() { + let buffered = + NmxReferenceRegistrationMessage::to_buffered_item_definition("Obj.Attr").unwrap(); + assert_eq!(buffered, "Obj.Attr.property(buffer)"); + } + + #[test] + fn request_to_buffered_item_definition_idempotent_case_insensitive() { + let already = "Obj.Attr.PROPERTY(buffer)"; + let buffered = + NmxReferenceRegistrationMessage::to_buffered_item_definition(already).unwrap(); + assert_eq!(buffered, already); + } + + #[test] + fn request_to_buffered_item_definition_rejects_blank() { + assert!(matches!( + NmxReferenceRegistrationMessage::to_buffered_item_definition(""), + Err(CodecError::InvalidName) + )); + assert!(matches!( + NmxReferenceRegistrationMessage::to_buffered_item_definition(" "), + Err(CodecError::InvalidName) + )); + } + + // ---------- Result round-trip tests ---------- + + #[test] + fn result_round_trip() { + let res = sample_result(); + let encoded = res.encode(); + let parsed = NmxReferenceRegistrationResultMessage::parse(&encoded).unwrap(); + assert_eq!(res, parsed); + } + + #[test] + fn result_block_length_matches_body_len_minus_41() { + let res = sample_result(); + let encoded = res.encode(); + let block_length = read_i32_le(&encoded, RESULT_BLOCK_LENGTH_OFFSET); + assert_eq!(block_length as usize, encoded.len() - 41); + } + + #[test] + fn result_tagged_string_marker_byte() { + let res = sample_result(); + let encoded = res.encode(); + // The tagged length word is at offset 45; high byte should be 0x81. + assert_eq!(encoded[45 + 3], TAGGED_STRING_MARKER_BYTE); + } + + #[test] + fn result_rejects_wrong_opcode() { + let mut encoded = sample_result().encode(); + encoded[0] = 0x10; + let err = NmxReferenceRegistrationResultMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::UnexpectedOpcode(0x10))); + } + + #[test] + fn result_rejects_wrong_version() { + let mut encoded = sample_result().encode(); + write_u16_le(&mut encoded, 1, 9); + let err = NmxReferenceRegistrationResultMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::UnsupportedVersion { .. })); + } + + #[test] + fn result_rejects_wrong_block_length() { + let mut encoded = sample_result().encode(); + // Corrupt the block length to claim a different value. + let actual = read_i32_le(&encoded, RESULT_BLOCK_LENGTH_OFFSET); + write_i32_le(&mut encoded, RESULT_BLOCK_LENGTH_OFFSET, actual + 4); + let err = NmxReferenceRegistrationResultMessage::parse(&encoded).unwrap_err(); + let reason = match err { + CodecError::Decode { reason, .. } => reason, + other => { + assert!(matches!(other, CodecError::Decode { .. })); + return; + } + }; + assert!(reason.contains("block length")); + } + + #[test] + fn result_rejects_nonzero_between_strings() { + // Plant a non-zero byte in the 6-byte zero region between mxDataType + // and item_context. + let res = sample_result(); + let mut encoded = res.encode(); + let item_def_bytes = encode_null_terminated_utf16(&res.item_definition); + // After tagged length (4) + item def bytes + mxDataType (4), we are + // at the 6-byte zero region. + let between_offset = RESULT_HEADER_LEN + 4 + item_def_bytes.len() + 4; + encoded[between_offset + 2] = 0x77; + let err = NmxReferenceRegistrationResultMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn result_rejects_nonzero_tail() { + let mut encoded = sample_result().encode(); + let tail_start = encoded.len() - RESULT_TAIL_LEN; + encoded[tail_start + 5] = 0x99; + // Recompute block length so the prior validation step still passes. + let new_block_length = (encoded.len() - RESULT_BLOCK_LENGTH_OFFSET) as i32; + write_i32_le(&mut encoded, RESULT_BLOCK_LENGTH_OFFSET, new_block_length); + let err = NmxReferenceRegistrationResultMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + #[test] + fn result_rejects_short_buffer() { + let err = NmxReferenceRegistrationResultMessage::parse(&[0u8; 60]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn result_rejects_wrong_length_prefix() { + // Bump the tagged length on the item_definition string but keep the + // 0x81 marker. Block length must stay valid for this test to bypass + // the earlier check, then the inner string-length validation should + // fire. + let mut encoded = sample_result().encode(); + let raw = read_i32_le(&encoded, RESULT_HEADER_LEN); + let bumped = ((raw & TAGGED_STRING_LENGTH_MASK) + 0x100) | TAGGED_STRING_MARKER_WORD; + write_i32_le(&mut encoded, RESULT_HEADER_LEN, bumped); + let err = NmxReferenceRegistrationResultMessage::parse(&encoded).unwrap_err(); + assert!(matches!(err, CodecError::Decode { .. })); + } + + // ---------- Cross-cutting checks ---------- + + #[test] + fn request_total_length_matches_dotnet_formula() { + // Per `NmxReferenceRegistrationMessage.cs:71-78`, total length = + // 55 + 4 + item_def_bytes + 8 + 4 + item_ctx_bytes + 20. + let req = sample_request(); + let item_def_bytes = encode_null_terminated_utf16(&req.item_definition); + let item_ctx_bytes = encode_null_terminated_utf16(&req.item_context); + let expected = REQUEST_HEADER_LEN + + 4 + + item_def_bytes.len() + + ITEM_STRING_RESERVED_LEN + + 4 + + item_ctx_bytes.len() + + REQUEST_TAIL_LEN; + assert_eq!(req.encode().len(), expected); + } + + #[test] + fn request_byte_offsets_match_dotnet() { + // Verify the constant writes at offsets 0, 1, 3, 7, 23, 27 match what + // the .NET reference emits (`NmxReferenceRegistrationMessage.cs:80-87`). + let req = sample_request(); + let encoded = req.encode(); + assert_eq!(encoded[0], REQUEST_COMMAND); + assert_eq!(read_u16_le(&encoded, 1), REQUEST_VERSION); + assert_eq!(read_i32_le(&encoded, 3), req.item_handle); + assert_eq!(&encoded[7..23], &req.item_correlation_id); + assert_eq!(read_i16_le(&encoded, 23), -1); + assert_eq!(read_i32_le(&encoded, 27), 1); + } + + #[test] + fn result_byte_offsets_match_dotnet() { + // Verify that the result offsets match what the .NET Parse reads + // (`NmxReferenceRegistrationResultMessage.cs:69-78`). + let res = sample_result(); + let encoded = res.encode(); + assert_eq!(encoded[0], RESULT_COMMAND); + assert_eq!(read_u16_le(&encoded, 1), RESULT_VERSION); + assert_eq!(read_i32_le(&encoded, 3), res.item_handle); + assert_eq!(&encoded[7..23], &res.item_correlation_id); + assert_eq!(read_i64_le(&encoded, 23), res.first_timestamp_filetime); + assert_eq!(read_i64_le(&encoded, 31), res.second_timestamp_filetime); + assert_eq!(encoded[39], res.status_category); + assert_eq!(encoded[40], res.status_detail); + } +} diff --git a/rust/crates/mxaccess-codec/src/secured_write.rs b/rust/crates/mxaccess-codec/src/secured_write.rs new file mode 100644 index 0000000..472b79a --- /dev/null +++ b/rust/crates/mxaccess-codec/src/secured_write.rs @@ -0,0 +1,820 @@ +//! `NmxSecuredWrite2Message` — secured timestamped-write (`0x38`) message +//! body codec. +//! +//! Direct port of `src/MxNativeCodec/NmxSecuredWrite2Message.cs`. +//! +//! ## Naming and the single-token form +//! +//! The .NET method name is `WriteSecured2`. It always carries **two** user +//! identifiers (`currentUserToken` and `verifierUserToken`) plus a timestamp +//! and a client name — there is no separate single-token form on the LMX +//! wire. Single-user secured writes pass `currentUserToken == verifierUserToken` +//! (per `wwtools/mxaccesscli/docs/api-notes.md:60-72` verification noted in +//! `design/40-protocol-invariants.md` after the MAJOR-pass audit). +//! +//! The R6 entry in `design/70-risks-and-open-questions.md:174` confirms this: +//! the production LMX surface accepts `WriteSecured` with two user ids +//! unconditionally, and the captured `0x38` shape always has both token slots. +//! +//! ## Body layout +//! +//! The secured body inherits the `Write2` (timestamped) prefix shape, then +//! appends authentication / verification fields **before** the trailing +//! `(-1 i16) + clientToken(u32) + writeIndex(i32)` slot +//! (`NmxSecuredWrite2Message.cs:40-69`). +//! +//! ```text +//! offset size field source +//! 0..N N = Write2 prefix timestamped Write2 body up to but +//! NOT including the 4-byte clientToken +//! and 4-byte writeIndex .cs:41-54 +//! N 16 currentUserToken .cs:56 +//! N+16 4 clientNameLen i32 LE .cs:58 +//! N+20 clientNameLen clientNameBytes (UTF-16LE + NUL) .cs:60 +//! N+20+L 16 verifierUserToken .cs:62 +//! N+36+L 2 -1 i16 LE .cs:64 +//! N+38+L 4 clientToken u32 LE .cs:66 +//! N+42+L 4 writeIndex i32 LE .cs:68 +//! ``` +//! +//! `prefixLength = timestampedPrefix.Length - sizeof(uint) - sizeof(int)` +//! (`.cs:51`) — i.e. the timestamped body **minus** its trailing 8 bytes +//! (clientToken + writeIndex). The opcode byte is overwritten from `0x37` +//! to `0x38` after the timestamped encoder runs (`.cs:48`). +//! +//! ## Observed authenticated-user token +//! +//! The .NET reference exposes a sample observed token at `.cs:12-18`. It is +//! mirrored here as [`OBSERVED_AUTHENTICATED_USER_TOKEN`] for tests and +//! probes that want to replay the captured `captures/036-frida-secured*` +//! body (cited in `design/40-protocol-invariants.md:164`). + +// Direct byte indexing — see reference_handle.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::MxReferenceHandle; +use crate::error::CodecError; +use crate::write_message::{self, WriteValue}; + +/// Secured-write opcode (`NmxSecuredWrite2Message.cs:8`). +pub const COMMAND: u8 = 0x38; + +/// Wire-format version (`NmxSecuredWrite2Message.cs:9`). The .NET `Encode` +/// path defers to `NmxWriteMessage.EncodeTimestamped` which writes +/// `version = 1` (`NmxWriteMessage.cs:10`); the constant is preserved here +/// for parity with the .NET surface. +pub const VERSION: u16 = 1; + +/// Authenticator token length in bytes (`NmxSecuredWrite2Message.cs:10`). +pub const AUTHENTICATOR_TOKEN_LENGTH: usize = 16; + +/// Sample observed authenticated-user token from the live AVEVA stack +/// (`NmxSecuredWrite2Message.cs:12-18`, captured in +/// `captures/036-frida-secured*`). +pub const OBSERVED_AUTHENTICATED_USER_TOKEN: [u8; AUTHENTICATOR_TOKEN_LENGTH] = [ + 0x07, 0xb9, 0xa9, 0xf4, 0x72, 0x6e, 0xae, 0x48, 0x83, 0xb5, 0xbb, 0xde, 0x91, 0x8c, 0x89, 0x0f, +]; + +/// Resolve the observed token form for a given user id. Mirrors +/// `ResolveObservedUserToken` (`NmxSecuredWrite2Message.cs:94-99`): user id +/// `0` returns 16 zero bytes; any other id returns the observed authenticated +/// token. This helper is for tests / probes; production callers should pass +/// real tokens. +pub fn resolve_observed_user_token(user_id: i32) -> [u8; AUTHENTICATOR_TOKEN_LENGTH] { + if user_id == 0 { + [0u8; AUTHENTICATOR_TOKEN_LENGTH] + } else { + OBSERVED_AUTHENTICATED_USER_TOKEN + } +} + +/// Encode a `WriteSecured2` body (`0x38`). +/// +/// Mirrors `NmxSecuredWrite2Message.Encode` (`NmxSecuredWrite2Message.cs:20-70`). +/// Internally builds a timestamped Write2 body via +/// [`crate::write_message::encode_timestamped`], strips its trailing 8 bytes +/// (clientToken + writeIndex), overwrites the leading opcode byte, and +/// appends the secured suffix. +/// +/// `current_user_token == verifier_user_token` is the single-user secured +/// write path and is allowed unconditionally — see module doc. +/// +/// # Errors +/// +/// - Returns a [`CodecError::Decode`] if the underlying timestamped Write +/// encode fails (e.g. array element count exceeds `u16::MAX`). +#[allow(clippy::too_many_arguments)] +pub fn encode( + handle: &MxReferenceHandle, + value: &WriteValue, + current_user_token: [u8; AUTHENTICATOR_TOKEN_LENGTH], + verifier_user_token: [u8; AUTHENTICATOR_TOKEN_LENGTH], + client_name: &str, + timestamp_filetime: i64, + write_index: i32, + client_token: u32, +) -> Result, CodecError> { + // 1. Build the timestamped Write2 body. The .NET reference passes + // `clientToken: 0` (`NmxSecuredWrite2Message.cs:47`) — those 8 trailing + // bytes are about to be stripped, so the value is irrelevant. + let timestamped = + write_message::encode_timestamped(handle, value, timestamp_filetime, write_index, 0)?; + + // 2. Strip the trailing clientToken (4) + writeIndex (4) from the + // timestamped body — `prefixLength = ts.Length - 4 - 4` + // (`NmxSecuredWrite2Message.cs:51`). + let prefix_length = timestamped.len() - 4 - 4; + + // 3. UTF-16LE + NUL terminator for the client name + // (`NmxSecuredWrite2Message.cs:50`, + // `Encoding.Unicode.GetBytes(clientName + '\0')`). + let client_name_bytes = encode_utf16_with_nul(client_name); + let client_name_len = client_name_bytes.len(); + + // 4. Allocate body of the exact final size + // (`NmxSecuredWrite2Message.cs:52`). + let body_len = prefix_length + + AUTHENTICATOR_TOKEN_LENGTH + + 4 + + client_name_len + + AUTHENTICATOR_TOKEN_LENGTH + + 2 + + 4 + + 4; + let mut body = vec![0u8; body_len]; + + // 5. Copy stripped timestamped prefix and overwrite opcode + // (`NmxSecuredWrite2Message.cs:48, 54`). + body[..prefix_length].copy_from_slice(×tamped[..prefix_length]); + body[0] = COMMAND; + + // 6. Append secured suffix in declared order + // (`NmxSecuredWrite2Message.cs:55-69`). + let mut offset = prefix_length; + body[offset..offset + AUTHENTICATOR_TOKEN_LENGTH].copy_from_slice(¤t_user_token); + offset += AUTHENTICATOR_TOKEN_LENGTH; + write_i32_le(&mut body, offset, client_name_len as i32); + offset += 4; + body[offset..offset + client_name_len].copy_from_slice(&client_name_bytes); + offset += client_name_len; + body[offset..offset + AUTHENTICATOR_TOKEN_LENGTH].copy_from_slice(&verifier_user_token); + offset += AUTHENTICATOR_TOKEN_LENGTH; + write_i16_le(&mut body, offset, -1); + offset += 2; + write_u32_le(&mut body, offset, client_token); + offset += 4; + write_i32_le(&mut body, offset, write_index); + + Ok(body) +} + +/// Decoded secured-write body. +#[derive(Debug, Clone, PartialEq)] +pub struct DecodedSecuredWrite { + /// Inner timestamped Write2 result (handle projection, value, write + /// index, client token, timestamp). Note the `client_token` and + /// `write_index` of the inner result come from the **secured** suffix — + /// the original timestamped body was encoded with `client_token = 0` + /// before the trailing 8 bytes were stripped (.cs:47, .cs:51), so the + /// decoder reconstructs a synthetic timestamped body with the secured + /// suffix's clientToken+writeIndex re-attached for round-trip parity. + pub inner: write_message::DecodedWrite, + pub current_user_token: [u8; AUTHENTICATOR_TOKEN_LENGTH], + pub verifier_user_token: [u8; AUTHENTICATOR_TOKEN_LENGTH], + pub client_name: String, +} + +/// Decode a `WriteSecured2` body produced by [`encode`]. +/// +/// The .NET reference is encode-only (`NmxSecuredWrite2Message.cs:6-105`); the +/// Rust port adds a decoder for round-trip tests, mirroring the encoder +/// layout exactly. +/// +/// # Errors +/// +/// - [`CodecError::ShortRead`] if `body` is too small to carry the secured +/// suffix. +/// - [`CodecError::UnexpectedOpcode`] if `body[0] != 0x38`. +/// - [`CodecError::Decode`] for malformed lengths or invalid client-name UTF-16. +/// - Any error returned by [`crate::write_message::decode`] for the inner +/// reconstructed timestamped body. +pub fn decode(body: &[u8]) -> Result { + if body.is_empty() { + return Err(CodecError::ShortRead { + expected: 1, + actual: 0, + }); + } + if body[0] != COMMAND { + return Err(CodecError::UnexpectedOpcode(body[0])); + } + + // Trailing slot: 16 (verifier) + 2 (-1 i16) + 4 (clientToken) + 4 (writeIndex) + // = 26 bytes after the client-name region. + // The minimum body shape is: prefix(>=18) + currentToken(16) + nameLen(4) + // + nameBytes(>=2 NUL) + verifierToken(16) + 10-byte tail. + if body.len() < 1 + AUTHENTICATOR_TOKEN_LENGTH + 4 + 2 + AUTHENTICATOR_TOKEN_LENGTH + 10 { + return Err(CodecError::ShortRead { + expected: 1 + AUTHENTICATOR_TOKEN_LENGTH + 4 + 2 + AUTHENTICATOR_TOKEN_LENGTH + 10, + actual: body.len(), + }); + } + + // Strategy: walk back from the end. The last 26 bytes are the secured + // suffix; before that lies a UTF-16LE client_name of length declared in + // the i32 LE that precedes it; before THAT lies the 16-byte + // currentUserToken; before THAT lies the timestamped Write2 prefix + // (without its trailing 8 bytes). We don't know the prefix length up + // front, but we can locate the secured suffix by scanning for the + // currentUserToken offset using the client-name length field. + // + // Concretely: the last 26 bytes are + // verifier(16) + -1 i16 + clientToken(4) + writeIndex(4) = 26 + // Before them is the client_name of length L (variable). Before THAT + // is the i32 LE clientNameLen (4). Before THAT is the currentUserToken (16). + // + // We need to find the offset where currentUserToken starts. We do that + // by reading clientNameLen from a position relative to the end: + // offset_of_clientNameLen = body.len() - 26 - L - 4 + // offset_of_clientNameLen + 4 + L + 16 + 2 + 4 + 4 = body.len() + // + // Equivalently: the trailing region after the timestamped prefix is + // 16 + 4 + L + 16 + 2 + 4 + 4 = 46 + L bytes. + // + // So prefix_length = body.len() - (46 + L). + // + // We don't know L without locating clientNameLen first. The .NET + // reference does not record where the prefix ends — it derives it on + // encode. On decode, we need to use the inner write_message::decode to + // figure out the timestamped body's natural length, then derive L. + // + // Approach: reconstruct a synthetic timestamped body by appending an + // 8-byte clientToken+writeIndex tail with zeros to a candidate prefix, + // decode it, and use the resulting body length to find the boundary. + // + // Simpler: walk forward through the timestamped wire shape using the + // crate's own write_message::decode after we know the prefix bytes. + // But we don't know the prefix length yet. + // + // The cleanest approach: read the trailing structure. We know the body + // tail layout. Count bytes from the end: + // [body.len() - 4 .. body.len()] writeIndex i32 + // [body.len() - 8 .. body.len() - 4] clientToken u32 + // [body.len() - 10 .. body.len() - 8] -1 i16 + // [body.len() - 26 .. body.len() - 10] verifierUserToken (16) + // [body.len() - 26 - L .. body.len() - 26] clientNameBytes (L) + // [body.len() - 30 - L .. body.len() - 26 - L] clientNameLen i32 (4) + // [body.len() - 46 - L .. body.len() - 30 - L] currentUserToken (16) + // We need L. The clientNameLen i32 lives at offset (body.len() - 30 - L). + // We can solve by scanning candidate L values OR by realising that the + // timestamped prefix has a deterministic length given the value kind. + // + // We use the deterministic-length approach: rebuild a candidate + // timestamped prefix of length `prefix_length`, then decode by parsing + // the wire-kind-driven shape. Since the inner write_message::decode + // already implements this, and since the prefix shape is fully + // determined by body[1..3] (version) and body[17] (wire_kind), we can + // compute the timestamped body length without seeing the secured suffix. + + // body[0..18] is the common prefix: cmd + version + 14 handle bytes + wire_kind. + let wire_kind = body[17]; + + // For each wire kind, the timestamped body length is fixed (scalar) or + // determined by an inner length prefix (variable / array). The + // timestamped body length = prefix_length + 8 (the 8 stripped trailing + // bytes). prefix_length = body.len() - 46 - L. We don't know L. + // + // But we DO know the timestamped body length from wire_kind directly: + let ts_body_len = compute_timestamped_body_len(body, wire_kind)?; + let prefix_length = ts_body_len - 8; + + // Now layout is known. + let suffix_offset = prefix_length; + if suffix_offset + AUTHENTICATOR_TOKEN_LENGTH + 4 > body.len() { + return Err(CodecError::ShortRead { + expected: suffix_offset + AUTHENTICATOR_TOKEN_LENGTH + 4, + actual: body.len(), + }); + } + + let mut current_user_token = [0u8; AUTHENTICATOR_TOKEN_LENGTH]; + current_user_token + .copy_from_slice(&body[suffix_offset..suffix_offset + AUTHENTICATOR_TOKEN_LENGTH]); + + let name_len_offset = suffix_offset + AUTHENTICATOR_TOKEN_LENGTH; + let client_name_len = read_i32_le(body, name_len_offset); + if client_name_len < 0 { + return Err(CodecError::Decode { + offset: name_len_offset, + reason: "secured-write: negative clientNameLen", + buffer_len: body.len(), + }); + } + let client_name_len = client_name_len as usize; + + let name_offset = name_len_offset + 4; + if name_offset + client_name_len + AUTHENTICATOR_TOKEN_LENGTH + 10 > body.len() { + return Err(CodecError::ShortRead { + expected: name_offset + client_name_len + AUTHENTICATOR_TOKEN_LENGTH + 10, + actual: body.len(), + }); + } + + let client_name_bytes = &body[name_offset..name_offset + client_name_len]; + let client_name = decode_utf16_with_nul(client_name_bytes, name_offset, body.len())?; + + let verifier_offset = name_offset + client_name_len; + let mut verifier_user_token = [0u8; AUTHENTICATOR_TOKEN_LENGTH]; + verifier_user_token + .copy_from_slice(&body[verifier_offset..verifier_offset + AUTHENTICATOR_TOKEN_LENGTH]); + + let tail_offset = verifier_offset + AUTHENTICATOR_TOKEN_LENGTH; + let leading = read_i16_le(body, tail_offset); + if leading != -1 { + return Err(CodecError::Decode { + offset: tail_offset, + reason: "secured-write: trailing leading i16 is not -1", + buffer_len: body.len(), + }); + } + let secured_client_token = read_u32_le(body, tail_offset + 2); + let secured_write_index = read_i32_le(body, tail_offset + 6); + + // Reconstruct the timestamped body so we can call write_message::decode. + // The .NET encoder calls EncodeTimestamped with clientToken=0 then + // strips, so the original prefix has 0 in the clientToken slot. We need + // to substitute the secured suffix's clientToken+writeIndex back so the + // inner DecodedWrite reflects what the caller passed to encode(). + let mut ts_body = body[..prefix_length].to_vec(); + ts_body.extend_from_slice(&secured_client_token.to_le_bytes()); + ts_body.extend_from_slice(&secured_write_index.to_le_bytes()); + // Restore the inner opcode (was overwritten to 0x38; restore to 0x37 + // so write_message::decode accepts it). + ts_body[0] = write_message::COMMAND; + + let inner = write_message::decode(&ts_body)?; + + Ok(DecodedSecuredWrite { + inner, + current_user_token, + verifier_user_token, + client_name, + }) +} + +/// Compute the length of the timestamped Write2 body for a given wire kind, +/// reading any inner length fields from `body` (which carries a `0x38` body — +/// but the prefix bytes are identical to the timestamped `0x37` body). +fn compute_timestamped_body_len(body: &[u8], wire_kind: u8) -> Result { + // Timestamped body shapes (mirroring write_message.rs): + // Boolean (timestamped): 17 + 1 + 1 + 14 + 4 = 37 + // [actually: KIND_OFFSET(17) + 1 + 1-byte payload + 18-byte suffix + // = 37]. Per write_message.rs:357-364. + // Int32: 17 + 1 + 4 + 14 + 4 = 40 + // Float32: 40 + // Float64: 17 + 1 + 8 + 14 + 4 = 44 + // Variable: 44 + utf16_len (read inner_len at offset 22) + // Array: 46 + payload_len (count u16 at 22, walk for variable arrays) + match wire_kind { + 0x01 => Ok(37), + 0x02 | 0x03 => Ok(40), + 0x04 => Ok(44), + 0x05 => { + // body[22..26] = inner_length (i32 LE) — UTF-16 byte length + // including 2-byte NUL terminator. + if body.len() < 26 { + return Err(CodecError::ShortRead { + expected: 26, + actual: body.len(), + }); + } + let inner_len = read_i32_le(body, 22); + if inner_len < 0 { + return Err(CodecError::Decode { + offset: 22, + reason: "secured-write: negative variable inner_length", + buffer_len: body.len(), + }); + } + Ok(44 + inner_len as usize) + } + 0x41..=0x44 => { + if body.len() < 28 { + return Err(CodecError::ShortRead { + expected: 28, + actual: body.len(), + }); + } + let count = read_u16_le(body, 22) as usize; + // `wire_kind` is constrained to 0x41..=0x44 by the outer match + // arm; default to 2 for any out-of-table value (shouldn't occur). + let element_width = match wire_kind { + 0x41 => 2, + 0x42 | 0x43 => 4, + 0x44 => 8, + _ => 2, + }; + Ok(28 + count * element_width + 18) + } + 0x45 => { + if body.len() < 28 { + return Err(CodecError::ShortRead { + expected: 28, + actual: body.len(), + }); + } + let count = read_u16_le(body, 22) as usize; + let mut cursor = 28usize; + for _ in 0..count { + if cursor + 13 > body.len() { + return Err(CodecError::ShortRead { + expected: cursor + 13, + actual: body.len(), + }); + } + let inner_len = read_i32_le(body, cursor + 9); + if inner_len < 0 { + return Err(CodecError::Decode { + offset: cursor + 9, + reason: "secured-write: negative variable-array inner_length", + buffer_len: body.len(), + }); + } + cursor += 13 + inner_len as usize; + } + Ok(cursor + 18) + } + _ => Err(CodecError::Decode { + offset: 17, + reason: "secured-write: unknown wire kind", + buffer_len: body.len(), + }), + } +} + +// ---- UTF-16 helpers ------------------------------------------------------- + +/// UTF-16LE encoding with a trailing 2-byte NUL terminator. +/// Mirrors `Encoding.Unicode.GetBytes(clientName + '\0')` +/// (`NmxSecuredWrite2Message.cs:50`). +fn encode_utf16_with_nul(value: &str) -> Vec { + let utf16: Vec = value.encode_utf16().collect(); + let mut bytes = Vec::with_capacity(utf16.len() * 2 + 2); + for unit in &utf16 { + bytes.extend_from_slice(&unit.to_le_bytes()); + } + // Trailing NUL (the `+ '\0'` in the .NET source). + bytes.push(0x00); + bytes.push(0x00); + bytes +} + +fn decode_utf16_with_nul( + raw: &[u8], + offset: usize, + buffer_len: usize, +) -> Result { + if raw.len() % 2 != 0 { + return Err(CodecError::Decode { + offset, + reason: "secured-write: client_name byte length is not even", + buffer_len, + }); + } + let utf16: Vec = raw + .chunks_exact(2) + .map(|c| u16::from_le_bytes([c[0], c[1]])) + .collect(); + // Strip the trailing NUL terminator (the .NET path always emits one). + let trimmed: &[u16] = if utf16.last() == Some(&0) { + &utf16[..utf16.len() - 1] + } else { + &utf16 + }; + String::from_utf16(trimmed).map_err(|_| CodecError::Decode { + offset, + reason: "secured-write: invalid UTF-16 in client_name", + buffer_len, + }) +} + +// ---- LE primitive helpers ------------------------------------------------- + +#[inline] +fn write_i16_le(bytes: &mut [u8], offset: usize, value: i16) { + bytes[offset..offset + 2].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn write_i32_le(bytes: &mut [u8], offset: usize, value: i32) { + bytes[offset..offset + 4].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn write_u32_le(bytes: &mut [u8], offset: usize, value: u32) { + bytes[offset..offset + 4].copy_from_slice(&value.to_le_bytes()); +} + +#[inline] +fn read_i16_le(bytes: &[u8], offset: usize) -> i16 { + i16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn read_u16_le(bytes: &[u8], offset: usize) -> u16 { + u16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_u32_le(bytes: &[u8], offset: usize) -> u32 { + u32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +// =========================================================================== +// Tests +// =========================================================================== + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + fn sample_handle() -> MxReferenceHandle { + MxReferenceHandle::from_names( + 1, + 42, + 17, + 300, + "TestChildObject", + -1, + 7, + 0, + "TestInt", + false, + ) + .unwrap() + } + + const TOKEN_A: [u8; 16] = [ + 0x07, 0xb9, 0xa9, 0xf4, 0x72, 0x6e, 0xae, 0x48, 0x83, 0xb5, 0xbb, 0xde, 0x91, 0x8c, 0x89, + 0x0f, + ]; + const TOKEN_B: [u8; 16] = [ + 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff, + 0x00, + ]; + + #[test] + fn opcode_and_constants_match_dotnet() { + // `NmxSecuredWrite2Message.cs:8-10`. + assert_eq!(COMMAND, 0x38); + assert_eq!(VERSION, 1); + assert_eq!(AUTHENTICATOR_TOKEN_LENGTH, 16); + } + + #[test] + fn observed_authenticated_user_token_matches_dotnet() { + // `NmxSecuredWrite2Message.cs:12-18`. + assert_eq!( + OBSERVED_AUTHENTICATED_USER_TOKEN, + [ + 0x07, 0xb9, 0xa9, 0xf4, 0x72, 0x6e, 0xae, 0x48, 0x83, 0xb5, 0xbb, 0xde, 0x91, 0x8c, + 0x89, 0x0f + ] + ); + } + + #[test] + fn resolve_observed_user_token_matches_dotnet() { + // `NmxSecuredWrite2Message.cs:94-99`. + assert_eq!(resolve_observed_user_token(0), [0u8; 16]); + assert_eq!( + resolve_observed_user_token(123), + OBSERVED_AUTHENTICATED_USER_TOKEN + ); + } + + #[test] + fn opcode_byte_is_overwritten_to_0x38() { + // `NmxSecuredWrite2Message.cs:48`. + let h = sample_handle(); + let body = encode( + &h, + &WriteValue::Int32(123), + TOKEN_A, + TOKEN_B, + "client", + 123_456_789_i64, + 5, + 0xCAFE_BABE, + ) + .unwrap(); + assert_eq!(body[0], COMMAND); + } + + #[test] + fn round_trip_int32_two_distinct_user_tokens() { + let h = sample_handle(); + let body = encode( + &h, + &WriteValue::Int32(0x1234_5678), + TOKEN_A, + TOKEN_B, + "TestClient", + 0x0102_0304_0506_0708_i64, + 42, + 0xDEAD_BEEF, + ) + .unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.current_user_token, TOKEN_A); + assert_eq!(decoded.verifier_user_token, TOKEN_B); + assert_ne!(decoded.current_user_token, decoded.verifier_user_token); + assert_eq!(decoded.client_name, "TestClient"); + assert_eq!(decoded.inner.value, WriteValue::Int32(0x1234_5678)); + assert_eq!(decoded.inner.write_index, 42); + assert_eq!(decoded.inner.client_token, 0xDEAD_BEEF); + assert_eq!( + decoded.inner.timestamp_filetime, + Some(0x0102_0304_0506_0708) + ); + } + + #[test] + fn round_trip_boolean_single_user_path() { + // Per module doc / api-notes.md: single-user secured writes use + // currentUserToken == verifierUserToken. + let h = sample_handle(); + let body = encode( + &h, + &WriteValue::Boolean(true), + TOKEN_A, + TOKEN_A, // same token both slots + "Solo", + 1_700_000_000_000_000_000_i64, + 1, + 0x1234, + ) + .unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.current_user_token, decoded.verifier_user_token); + assert_eq!(decoded.current_user_token, TOKEN_A); + assert_eq!(decoded.client_name, "Solo"); + assert_eq!(decoded.inner.value, WriteValue::Boolean(true)); + } + + #[test] + fn round_trip_with_empty_client_name() { + // Empty string still emits a 2-byte NUL terminator + // (`Encoding.Unicode.GetBytes("" + '\0')`). + let h = sample_handle(); + let body = encode(&h, &WriteValue::Int32(0), TOKEN_A, TOKEN_B, "", 0, 1, 0).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.client_name, ""); + assert_eq!(decoded.inner.value, WriteValue::Int32(0)); + } + + #[test] + fn round_trip_with_populated_client_name() { + let h = sample_handle(); + let body = encode( + &h, + &WriteValue::Int32(42), + TOKEN_A, + TOKEN_B, + "Operator-Console-1", + 0, + 7, + 0xABCD, + ) + .unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.client_name, "Operator-Console-1"); + } + + #[test] + fn round_trip_string_value() { + let h = sample_handle(); + let body = encode( + &h, + &WriteValue::String("hello".to_string()), + TOKEN_A, + TOKEN_B, + "client", + 0x1122_3344_5566_7788_i64, + 3, + 0xFEED, + ) + .unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.inner.value, WriteValue::String("hello".to_string())); + assert_eq!( + decoded.inner.timestamp_filetime, + Some(0x1122_3344_5566_7788) + ); + } + + #[test] + fn wrong_opcode_rejected() { + // Take a real body and clobber the opcode. + let h = sample_handle(); + let mut body = encode(&h, &WriteValue::Int32(1), TOKEN_A, TOKEN_B, "x", 0, 1, 0).unwrap(); + body[0] = 0x37; + let err = decode(&body).unwrap_err(); + assert!(matches!(err, CodecError::UnexpectedOpcode(0x37))); + } + + #[test] + fn trailing_fields_land_at_correct_offsets() { + // For Int32 the timestamped prefix length is 40 - 8 = 32 bytes. + // Verify that: + // body[32..48] = currentUserToken + // body[48..52] = clientNameLen i32 LE + // body[52..52+L] = clientNameBytes + // body[..+16] = verifierUserToken + // then -1 i16 + clientToken u32 + writeIndex i32 + let h = sample_handle(); + let client_name = "abc"; // 3 chars * 2 + 2 (NUL) = 8 bytes + let body = encode( + &h, + &WriteValue::Int32(7), + TOKEN_A, + TOKEN_B, + client_name, + 0x1111_2222_3333_4444_i64, + 5, + 0xBEEF_CAFE, + ) + .unwrap(); + + // prefix_length for Int32 timestamped = 32. + let prefix_length = 32; + assert_eq!(&body[prefix_length..prefix_length + 16], &TOKEN_A); + let name_len_offset = prefix_length + 16; + let name_len = i32::from_le_bytes([ + body[name_len_offset], + body[name_len_offset + 1], + body[name_len_offset + 2], + body[name_len_offset + 3], + ]); + assert_eq!(name_len, 8); + let name_offset = name_len_offset + 4; + let name_bytes = &body[name_offset..name_offset + 8]; + // "abc\0" UTF-16LE LE = 'a' 0 'b' 0 'c' 0 0 0 + assert_eq!( + name_bytes, + &[0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x00, 0x00] + ); + + let verifier_offset = name_offset + 8; + assert_eq!(&body[verifier_offset..verifier_offset + 16], &TOKEN_B); + + let tail = verifier_offset + 16; + let leading_i16 = i16::from_le_bytes([body[tail], body[tail + 1]]); + assert_eq!(leading_i16, -1); + let client_token = u32::from_le_bytes([ + body[tail + 2], + body[tail + 3], + body[tail + 4], + body[tail + 5], + ]); + assert_eq!(client_token, 0xBEEF_CAFE); + let write_index = i32::from_le_bytes([ + body[tail + 6], + body[tail + 7], + body[tail + 8], + body[tail + 9], + ]); + assert_eq!(write_index, 5); + + // Total body length: prefix(32) + 16 + 4 + 8 + 16 + 2 + 4 + 4 = 86 + assert_eq!(body.len(), 86); + } + + #[test] + fn short_buffer_rejected() { + let err = decode(&[0x38u8; 4]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn empty_buffer_rejected() { + let err = decode(&[]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } +} diff --git a/rust/crates/mxaccess-codec/src/status.rs b/rust/crates/mxaccess-codec/src/status.rs new file mode 100644 index 0000000..982aca8 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/status.rs @@ -0,0 +1,314 @@ +//! `MxStatus` — 4-tuple `(Success, Category, DetectedBy, Detail)` per +//! `src/MxNativeCodec/MxStatus.cs:28-65`. +//! +//! `Success=-1` is the documented OK sentinel. Detail is a signed 16-bit +//! lookup code; canonical text for known codes is in [`detail_text`]. + +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +#[non_exhaustive] +#[repr(i16)] +pub enum MxStatusCategory { + #[default] + Unknown = -1, + Ok = 0, + Pending = 1, + Warning = 2, + CommunicationError = 3, + ConfigurationError = 4, + OperationalError = 5, + SecurityError = 6, + SoftwareError = 7, + OtherError = 8, +} + +impl MxStatusCategory { + pub fn from_i16(value: i16) -> Self { + match value { + 0 => Self::Ok, + 1 => Self::Pending, + 2 => Self::Warning, + 3 => Self::CommunicationError, + 4 => Self::ConfigurationError, + 5 => Self::OperationalError, + 6 => Self::SecurityError, + 7 => Self::SoftwareError, + 8 => Self::OtherError, + _ => Self::Unknown, + } + } + + pub fn to_i16(self) -> i16 { + self as i16 + } +} + +/// Seven values per `MxStatus.cs:17-26`. The `DetectedBy` field is essential +/// for diagnostics — it identifies which layer detected the fault. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +#[non_exhaustive] +#[repr(i16)] +pub enum MxStatusSource { + #[default] + Unknown = -1, + RequestingLmx = 0, + RespondingLmx = 1, + RequestingNmx = 2, + RespondingNmx = 3, + RequestingAutomationObject = 4, + RespondingAutomationObject = 5, +} + +impl MxStatusSource { + pub fn from_i16(value: i16) -> Self { + match value { + 0 => Self::RequestingLmx, + 1 => Self::RespondingLmx, + 2 => Self::RequestingNmx, + 3 => Self::RespondingNmx, + 4 => Self::RequestingAutomationObject, + 5 => Self::RespondingAutomationObject, + _ => Self::Unknown, + } + } + + pub fn to_i16(self) -> i16 { + self as i16 + } +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +pub struct MxStatus { + pub success: i16, + pub category: MxStatusCategory, + pub detected_by: MxStatusSource, + pub detail: i16, +} + +impl MxStatus { + /// `(success=-1, Ok, RequestingLmx, detail=0)` — `MxStatus.DataChangeOk` + /// from `MxStatus.cs:36-40`. + pub const DATA_CHANGE_OK: Self = Self { + success: -1, + category: MxStatusCategory::Ok, + detected_by: MxStatusSource::RequestingLmx, + detail: 0, + }; + + /// `(success=-1, Ok, RespondingAutomationObject, detail=0)` — + /// `MxStatus.WriteCompleteOk` from `MxStatus.cs:42-46`. + pub const WRITE_COMPLETE_OK: Self = Self { + success: -1, + category: MxStatusCategory::Ok, + detected_by: MxStatusSource::RespondingAutomationObject, + detail: 0, + }; + + /// `(success=-1, Pending, RequestingLmx, detail=0)` — + /// `MxStatus.SuspendPending` from `MxStatus.cs:48-52`. + pub const SUSPEND_PENDING: Self = Self { + success: -1, + category: MxStatusCategory::Pending, + detected_by: MxStatusSource::RequestingLmx, + detail: 0, + }; + + /// `(success=-1, Ok, RequestingLmx, detail=0)` — `MxStatus.ActivateOk` + /// from `MxStatus.cs:54-58`. + pub const ACTIVATE_OK: Self = Self { + success: -1, + category: MxStatusCategory::Ok, + detected_by: MxStatusSource::RequestingLmx, + detail: 0, + }; + + /// `(success=0, ConfigurationError, RequestingLmx, detail=6)` — + /// `MxStatus.InvalidReferenceConfiguration` from `MxStatus.cs:60-64`. + pub const INVALID_REFERENCE_CONFIGURATION: Self = Self { + success: 0, + category: MxStatusCategory::ConfigurationError, + detected_by: MxStatusSource::RequestingLmx, + detail: 6, + }; + + /// Look up the canonical text for `self.detail`, mirroring + /// `MxStatus.DetailText` (`MxStatus.cs:34`). Returns `None` for unknown + /// detail codes. + pub fn detail_text(&self) -> Option<&'static str> { + detail_text(self.detail) + } + + pub fn is_ok(&self) -> bool { + self.category == MxStatusCategory::Ok + } +} + +/// Canonical detail-code text per `MxStatusDetails.KnownDetails` +/// (`MxStatus.cs:69-120`). Returns `None` for unknown codes. +pub fn detail_text(detail: i16) -> Option<&'static str> { + match detail { + 16 => Some("Request timed out"), + 17 => Some("Platform communication error"), + 18 => Some("Invalid platform ID"), + 19 => Some("Invalid engine ID"), + 20 => Some("Engine communication error"), + 21 => Some("Invalid reference"), + 22 => Some("No Galaxy Repository"), + 23 => Some("Invalid object ID"), + 24 => Some("Object signature mismatch"), + 25 => Some("Invalid primitive ID"), + 26 => Some("Invalid attribute ID"), + 27 => Some("Invalid property ID"), + 28 => Some("Index out of range"), + 29 => Some("Data out of range"), + 30 => Some("Incorrect data type"), + 31 => Some("Attribute not readable"), + 32 => Some("Attribute not writeable"), + 33 => Some("Write access denied"), + 34 => Some("Unknown error"), + 35 => Some("detected by"), + 36 => Some("Wrong data type"), + 37 => Some("Wrong number of dimensions"), + 38 => Some("Invalid index"), + 39 => Some("Index out of order"), + 40 => Some("Dimension does not exist"), + 41 => Some("Conversion not supported"), + 42 => Some("Unable to convert string"), + 43 => Some("Overflow"), + 44 => Some("Attribute signature mismatch"), + 45 => Some("Resolving local portion of reference"), + 46 => Some("Resolving global portion of reference"), + 47 => Some("Nmx version mismatch"), + 48 => Some("Nmx command not valid"), + 49 => Some("Lmx version mismatch"), + 50 => Some("Lmx command not valid"), + 51 => Some( + "However, the object could not be put On Scan - Permission to modify \"Operate\" attributes is required", + ), + 52 => Some( + "Unable to resolve reference for 'set' request because Galaxy Repository is busy performing a 'Deploy/Undeploy' operation", + ), + 53 => Some("Too many outstanding pending requests to engine"), + 54 => Some("Object Initializing"), + 55 => Some("Engine Initializing"), + 56 => Some("Secured Write"), + 57 => Some("Verified Write"), + 58 => Some("No Alarm Ack Privilege"), + 59 => Some("Alarm Acked Already"), + 60 => Some("User did not have the necessary permissions to write"), + 61 => Some("Verifier did not have the necessary permissions to verify"), + 541 => Some("Conversion to intended data type is not supported"), + 542 => Some("Unable to convert the input string to intended data type"), + 8017 => Some( + "Object must be offscan to modify attributes that have an MxSecurityConfigure security classification", + ), + _ => None, + } +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used)] +mod tests { + use super::*; + + #[test] + fn category_round_trip() { + for cat in [ + MxStatusCategory::Unknown, + MxStatusCategory::Ok, + MxStatusCategory::Pending, + MxStatusCategory::Warning, + MxStatusCategory::CommunicationError, + MxStatusCategory::ConfigurationError, + MxStatusCategory::OperationalError, + MxStatusCategory::SecurityError, + MxStatusCategory::SoftwareError, + MxStatusCategory::OtherError, + ] { + assert_eq!(MxStatusCategory::from_i16(cat.to_i16()), cat); + } + } + + #[test] + fn source_round_trip() { + for src in [ + MxStatusSource::Unknown, + MxStatusSource::RequestingLmx, + MxStatusSource::RespondingLmx, + MxStatusSource::RequestingNmx, + MxStatusSource::RespondingNmx, + MxStatusSource::RequestingAutomationObject, + MxStatusSource::RespondingAutomationObject, + ] { + assert_eq!(MxStatusSource::from_i16(src.to_i16()), src); + } + } + + #[test] + fn unknown_codes_map_to_unknown_variants() { + assert_eq!(MxStatusCategory::from_i16(99), MxStatusCategory::Unknown); + assert_eq!(MxStatusCategory::from_i16(-99), MxStatusCategory::Unknown); + assert_eq!(MxStatusSource::from_i16(99), MxStatusSource::Unknown); + assert_eq!(MxStatusSource::from_i16(-2), MxStatusSource::Unknown); + } + + #[test] + fn canonical_sentinels_match_dotnet() { + // `MxStatus.cs:36-58` defines five canonical sentinels. + assert_eq!(MxStatus::DATA_CHANGE_OK.success, -1); + assert_eq!(MxStatus::DATA_CHANGE_OK.category, MxStatusCategory::Ok); + assert_eq!( + MxStatus::DATA_CHANGE_OK.detected_by, + MxStatusSource::RequestingLmx + ); + assert_eq!(MxStatus::DATA_CHANGE_OK.detail, 0); + + assert_eq!( + MxStatus::WRITE_COMPLETE_OK.detected_by, + MxStatusSource::RespondingAutomationObject + ); + + assert_eq!( + MxStatus::INVALID_REFERENCE_CONFIGURATION.success, + 0, + "InvalidReferenceConfiguration uses success=0, not -1" + ); + assert_eq!(MxStatus::INVALID_REFERENCE_CONFIGURATION.detail, 6); + } + + #[test] + fn detail_text_known_codes() { + assert_eq!(detail_text(16), Some("Request timed out")); + assert_eq!(detail_text(21), Some("Invalid reference")); + assert_eq!(detail_text(33), Some("Write access denied")); + assert_eq!(detail_text(57), Some("Verified Write")); + assert_eq!( + detail_text(541), + Some("Conversion to intended data type is not supported") + ); + assert_eq!( + detail_text(8017), + Some( + "Object must be offscan to modify attributes that have an MxSecurityConfigure security classification" + ) + ); + } + + #[test] + fn detail_text_unknown_codes() { + assert_eq!(detail_text(0), None); + assert_eq!(detail_text(15), None); + assert_eq!(detail_text(62), None); + assert_eq!(detail_text(540), None); + assert_eq!(detail_text(8018), None); + assert_eq!(detail_text(-1), None); + } + + #[test] + fn is_ok_categorisation() { + assert!(MxStatus::DATA_CHANGE_OK.is_ok()); + assert!(MxStatus::WRITE_COMPLETE_OK.is_ok()); + assert!(MxStatus::ACTIVATE_OK.is_ok()); + assert!(!MxStatus::SUSPEND_PENDING.is_ok()); + assert!(!MxStatus::INVALID_REFERENCE_CONFIGURATION.is_ok()); + } +} diff --git a/rust/crates/mxaccess-codec/src/subscription_message.rs b/rust/crates/mxaccess-codec/src/subscription_message.rs new file mode 100644 index 0000000..856c223 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/subscription_message.rs @@ -0,0 +1,1107 @@ +//! `NmxSubscriptionMessage` — `0x32` SubscriptionStatus / `0x33` DataUpdate +//! callback decoder. +//! +//! Direct port of `src/MxNativeCodec/NmxSubscriptionMessage.cs`. This module +//! decodes the inner-body of the NMX subscription callback delivered through +//! the NMX `TransferData` envelope (callers should call +//! [`NmxTransferEnvelope::parse`](crate::NmxTransferEnvelope::parse) first to +//! peel the 46-byte transfer header, then hand the remaining bytes to +//! [`NmxSubscriptionMessage::parse_inner`]). +//! +//! ## Wire layout summary +//! +//! Both message kinds share the 23-byte preamble +//! (`NmxSubscriptionMessage.cs:52-55`): +//! +//! ```text +//! offset size field +//! 0 1 command (0x32 SubscriptionStatus, 0x33 DataUpdate) +//! 1 2 version u16 LE +//! 3 4 record_count i32 LE +//! 7 16 operation_id GUID (.NET layout) +//! ``` +//! +//! `0x32` SubscriptionStatus extends to 39 bytes by appending a 16-byte +//! `item_correlation_id` GUID at offset 23 (`NmxSubscriptionMessage.cs:98-99`). +//! `0x33` DataUpdate has **no** correlation id — its records start at offset 23 +//! (`NmxSubscriptionMessage.cs:76-77`). +//! +//! ## Record layout +//! +//! - SubscriptionStatus record: `status i32 + detail_status i32 + quality u16 +//! + timestamp_filetime i64 + wire_kind u8 + value` (`hasDetailStatus=true`, +//! `NmxSubscriptionMessage.cs:117-155`). +//! - DataUpdate record: `quality u16 + timestamp_filetime i64 + wire_kind u8 +//! + value` (`hasDetailStatus=false`). +//! +//! ## Hard-error: DataUpdate multi-record +//! +//! The .NET reference rejects DataUpdate bodies with `record_count != 1` +//! (`NmxSubscriptionMessage.cs:71-74`). The Rust codec mirrors that hard error +//! via [`CodecError::Decode`] — see `design/70-risks-and-open-questions.md` R13 +//! for the soft-error path that the higher-level session layer may add later. +//! +//! ## Encoder/decoder asymmetry: array element width +//! +//! On the wire, the array header is `count u16 LE` at body+4 followed by +//! `element_width` at body+6. The decoder reads `element_width` as **`i32` +//! LE** (`NmxSubscriptionMessage.cs:264-265`); the encoder side (`write_message.rs`, +//! NOT this module) writes `u16/u16`. This asymmetry is real and intentional — +//! the decoder must accept whatever the native NMX service emits. +//! +//! ## Wire-kind table +//! +//! Scalar: `0x01` Boolean, `0x02` Int32, `0x03` Float32, `0x04` Float64, +//! `0x05` String, `0x06` DateTime, `0x07` ElapsedTime +//! (`NmxSubscriptionMessage.cs:165-176`). +//! +//! Array: `0x41` BoolArray, `0x42` Int32Array, `0x43` Float32Array, +//! `0x44` Float64Array, `0x45` StringArray, `0x46` DateTimeArray +//! (`NmxSubscriptionMessage.cs:268-277`). Note the encoder collapses +//! StringArray/DateTimeArray to `0x45`; the decoder keeps `0x46` as +//! DateTimeArray. + +// Direct byte indexing — see reference_handle.rs for rationale (every byte +// access is preceded by an explicit length check; matches the .NET source's +// `BinaryPrimitives` calls 1:1 and is far more readable than `.get(n)?`). +#![allow(clippy::indexing_slicing)] + +use crate::error::CodecError; +use crate::{MxValue, MxValueKind}; + +/// `0x32` — SubscriptionStatus. Per `NmxSubscriptionMessage.cs:36`. +pub const SUBSCRIPTION_STATUS_COMMAND: u8 = 0x32; + +/// `0x33` — DataUpdate. Per `NmxSubscriptionMessage.cs:37`. +pub const DATA_UPDATE_COMMAND: u8 = 0x33; + +/// 16-byte GUID with the .NET on-the-wire layout used by `new Guid(span)` / +/// `Guid.WriteToSpan` (data1 LE, data2 LE, data3 LE, then 8 raw bytes). +/// Mirrors `NmxSubscriptionMessage.cs:55,98` (the .NET `Guid(ReadOnlySpan)` +/// constructor consumes exactly 16 bytes in this layout). +/// +/// Stored as the raw 16 bytes verbatim — the codec preserves whatever the +/// service emits and surfaces it to consumers as a stable identifier; no +/// interpretation is needed at the codec layer. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +pub struct NmxGuid(pub [u8; 16]); + +impl NmxGuid { + /// Encoded GUID size on the wire. + pub const ENCODED_LEN: usize = 16; + + /// Construct from a 16-byte slice. + /// + /// # Errors + /// + /// Returns [`CodecError::ShortRead`] if `bytes.len() != 16`. + pub fn from_bytes(bytes: &[u8]) -> Result { + if bytes.len() != Self::ENCODED_LEN { + return Err(CodecError::ShortRead { + expected: Self::ENCODED_LEN, + actual: bytes.len(), + }); + } + let mut buf = [0u8; 16]; + buf.copy_from_slice(bytes); + Ok(Self(buf)) + } +} + +/// One record from a [`NmxSubscriptionMessage`]. SubscriptionStatus records +/// carry `status`/`detail_status`; DataUpdate records leave both as `None`. +/// +/// Per `NmxSubscriptionMessage.cs:12-26`. +#[derive(Debug, Clone, PartialEq)] +pub struct NmxSubscriptionRecord { + /// Status code — `i32` always present for both DataUpdate and + /// SubscriptionStatus records (`NmxSubscriptionMessage.cs:126-127` reads + /// it unconditionally). + pub status: i32, + /// Detail-status code — present for SubscriptionStatus (`0x32`) only; + /// `None` for DataUpdate (`NmxSubscriptionMessage.cs:129-134`). + pub detail_status: Option, + /// Quality bitfield (`NmxSubscriptionMessage.cs:136-137`). + pub quality: u16, + /// Windows FILETIME ticks (100ns units since 1601-01-01 UTC). Mirrors the + /// raw `i64` that the .NET reference passes to `DateTime.FromFileTimeUtc` + /// (`NmxSubscriptionMessage.cs:139-150`). + pub timestamp_filetime: i64, + /// Wire-kind tag from the body (`NmxSubscriptionMessage.cs:142`). + pub wire_kind: u8, + /// Decoded value, when the wire kind is recognized and the body is + /// well-formed. Malformed/unknown payloads (negative lengths, bad + /// element widths, unknown wire kinds) yield `None` — mirrors the .NET + /// `NmxCallbackValue.Value = null` paths (e.g. `NmxSubscriptionMessage.cs:182,199`). + pub value: Option, + /// Offset into the inner buffer where this record began. + pub offset: usize, + /// Total bytes this record consumed from the inner buffer. + pub length: usize, +} + +/// Parsed `0x32`/`0x33` subscription callback message. +/// Per `NmxSubscriptionMessage.cs:28-34`. +#[derive(Debug, Clone, PartialEq)] +pub struct NmxSubscriptionMessage { + /// `0x32` SubscriptionStatus or `0x33` DataUpdate. + pub command: u8, + /// `version` field (`NmxSubscriptionMessage.cs:53`). + pub version: u16, + /// `record_count` field (`NmxSubscriptionMessage.cs:54`). + pub record_count: i32, + /// `operation_id` GUID (`NmxSubscriptionMessage.cs:55`). + pub operation_id: NmxGuid, + /// `item_correlation_id` GUID — present only on `0x32` SubscriptionStatus + /// (`NmxSubscriptionMessage.cs:98`); always `None` on `0x33` DataUpdate. + pub item_correlation_id: Option, + /// Decoded records. + pub records: Vec, +} + +impl NmxSubscriptionMessage { + /// Length of the shared 23-byte preamble (`NmxSubscriptionMessage.cs:47`). + pub const PREAMBLE_LEN: usize = 23; + + /// Length of the SubscriptionStatus header — preamble + 16-byte + /// correlation id (`NmxSubscriptionMessage.cs:93,99`). + pub const SUBSCRIPTION_STATUS_HEADER_LEN: usize = 39; + + /// Parse the inner body (post-46-byte-envelope) of an NMX subscription + /// callback. Mirrors `NmxSubscriptionMessage.ParseInner` + /// (`NmxSubscriptionMessage.cs:45-63`). + /// + /// # Errors + /// + /// - [`CodecError::ShortRead`] if `inner.len() < 23`. + /// - [`CodecError::UnexpectedOpcode`] if the command byte is neither + /// `0x32` nor `0x33`. + /// - [`CodecError::Decode`] for protocol violations (multi-record + /// DataUpdate, truncated records, etc.). + pub fn parse_inner(inner: &[u8]) -> Result { + if inner.len() < Self::PREAMBLE_LEN { + return Err(CodecError::ShortRead { + expected: Self::PREAMBLE_LEN, + actual: inner.len(), + }); + } + + let command = inner[0]; + let version = read_u16_le(inner, 1); + let record_count = read_i32_le(inner, 3); + let operation_id = NmxGuid::from_bytes(&inner[7..23])?; + + match command { + SUBSCRIPTION_STATUS_COMMAND => { + parse_subscription_status(inner, version, record_count, operation_id) + } + DATA_UPDATE_COMMAND => parse_data_update(inner, version, record_count, operation_id), + _ => Err(CodecError::UnexpectedOpcode(command)), + } + } +} + +/// `0x33` DataUpdate. Mirrors `NmxSubscriptionMessage.ParseDataUpdate` +/// (`NmxSubscriptionMessage.cs:65-85`). +fn parse_data_update( + inner: &[u8], + version: u16, + record_count: i32, + operation_id: NmxGuid, +) -> Result { + // .NET hard-throws when `record_count != 1` (`NmxSubscriptionMessage.cs:71-74`). + // Mirror that here — the soft-error path is owned by the higher session + // layer (R13 in `design/70-risks-and-open-questions.md`). + if record_count != 1 { + return Err(CodecError::Decode { + offset: 3, + reason: "DataUpdate multi-record bodies are not yet supported", + buffer_len: inner.len(), + }); + } + + // Records start immediately after the 23-byte preamble — DataUpdate has + // no correlation id (`NmxSubscriptionMessage.cs:76-77`). + let record = parse_record(inner, NmxSubscriptionMessage::PREAMBLE_LEN, false)?; + Ok(NmxSubscriptionMessage { + command: DATA_UPDATE_COMMAND, + version, + record_count, + operation_id, + item_correlation_id: None, + records: vec![record], + }) +} + +/// `0x32` SubscriptionStatus. Mirrors +/// `NmxSubscriptionMessage.ParseSubscriptionStatus` +/// (`NmxSubscriptionMessage.cs:87-115`). +fn parse_subscription_status( + inner: &[u8], + version: u16, + record_count: i32, + operation_id: NmxGuid, +) -> Result { + if inner.len() < NmxSubscriptionMessage::SUBSCRIPTION_STATUS_HEADER_LEN { + return Err(CodecError::ShortRead { + expected: NmxSubscriptionMessage::SUBSCRIPTION_STATUS_HEADER_LEN, + actual: inner.len(), + }); + } + + let item_correlation_id = NmxGuid::from_bytes(&inner[23..39])?; + let mut offset = NmxSubscriptionMessage::SUBSCRIPTION_STATUS_HEADER_LEN; + // `record_count` is `i32` on the wire; clamp negatives to zero. The .NET + // for-loop `for (int i = 0; i < recordCount; i++)` also yields zero + // iterations for negative counts (`NmxSubscriptionMessage.cs:101`). + let count = if record_count < 0 { + 0usize + } else { + record_count as usize + }; + let mut records = Vec::with_capacity(count); + for _ in 0..count { + let record = parse_record(inner, offset, true)?; + offset += record.length; + records.push(record); + } + + Ok(NmxSubscriptionMessage { + command: SUBSCRIPTION_STATUS_COMMAND, + version, + record_count, + operation_id, + item_correlation_id: Some(item_correlation_id), + records, + }) +} + +/// Parse a single record. Mirrors `NmxSubscriptionMessage.ParseRecord` +/// (`NmxSubscriptionMessage.cs:117-155`). When `has_detail_status` is true the +/// record begins with `status i32 + detail_status i32`; otherwise neither is +/// present. +fn parse_record( + body: &[u8], + offset: usize, + has_detail_status: bool, +) -> Result { + // Minimum length is 19 with detail-status (status + detail_status + + // quality + timestamp + wire_kind = 4+4+2+8+1) and 15 without + // (`NmxSubscriptionMessage.cs:119`). We additionally require the + // wire-kind byte itself to be present (`body[offset++]` at line 142). + let minimum_length = if has_detail_status { 19 } else { 15 }; + if offset + minimum_length > body.len() { + return Err(CodecError::Decode { + offset, + reason: "subscription record truncated before fixed header", + buffer_len: body.len(), + }); + } + + let start = offset; + let mut cursor = offset; + + // `status: i32` is read unconditionally for both DataUpdate and + // SubscriptionStatus records (`NmxSubscriptionMessage.cs:126-127`). + // + // FOLLOW-UP (M1 wave-1 audit): An earlier port draft conditionally read + // `status` only when `has_detail_status=true`, then required min length 15 + // for DataUpdate without consuming the leading 4 bytes — leaving them to + // be misread as `quality`. Verified fixed here; if any other codec agent + // applied the same `hasDetailStatus`-gated conditional read pattern, + // re-audit. Min lengths are 15 (DataUpdate, status+quality+filetime+kind) + // and 19 (SubscriptionStatus, +detail_status). See + // `design/70-risks-and-open-questions.md` "M1 hasDetailStatus audit" + // follow-up entry. + let status = read_i32_le(body, cursor); + cursor += 4; + + let detail_status = if has_detail_status { + let d = read_i32_le(body, cursor); + cursor += 4; + Some(d) + } else { + None + }; + + let quality = read_u16_le(body, cursor); + cursor += 2; + + let timestamp_filetime = read_i64_le(body, cursor); + cursor += 8; + + let wire_kind = body[cursor]; + cursor += 1; + + let (value, encoded_len) = decode_value(wire_kind, &body[cursor..]); + cursor += encoded_len; + + Ok(NmxSubscriptionRecord { + status, + detail_status, + quality, + timestamp_filetime, + wire_kind, + value, + offset: start, + length: cursor - start, + }) +} + +/// Decode a value following a wire-kind byte. Returns `(decoded, bytes_consumed)`. +/// Mirrors `NmxSubscriptionMessage.DecodeValue` (`NmxSubscriptionMessage.cs:157-176`) +/// and the per-kind helpers below it. +/// +/// On any short / malformed payload returns `(None, 0)` — matching the .NET +/// behaviour where `NmxCallbackValue.Value` is null and `EncodedLength` is 0. +/// (Subsequent records following a malformed value are unrecoverable; the +/// .NET reference exhibits the same property.) +fn decode_value(wire_kind: u8, body: &[u8]) -> (Option, usize) { + if body.is_empty() { + return (None, 0); + } + + match wire_kind { + // 0x01 Boolean — single byte, non-zero is true (`NmxSubscriptionMessage.cs:166`). + 0x01 if !body.is_empty() => (Some(MxValue::Boolean(body[0] != 0)), 1), + // 0x02 Int32 (`NmxSubscriptionMessage.cs:167`). + 0x02 if body.len() >= 4 => (Some(MxValue::Int32(read_i32_le(body, 0))), 4), + // 0x03 Float32 — bit-cast i32->f32 mirrors `Int32BitsToSingle` + // (`NmxSubscriptionMessage.cs:168`). + 0x03 if body.len() >= 4 => { + let bits = read_i32_le(body, 0); + (Some(MxValue::Float32(f32::from_bits(bits as u32))), 4) + } + // 0x04 Float64 — bit-cast i64->f64 (`NmxSubscriptionMessage.cs:169`). + 0x04 if body.len() >= 8 => { + let bits = read_i64_le(body, 0); + (Some(MxValue::Float64(f64::from_bits(bits as u64))), 8) + } + // 0x05 String (`NmxSubscriptionMessage.cs:170`). + 0x05 => decode_string_value(body), + // 0x06 DateTime (`NmxSubscriptionMessage.cs:171`). + 0x06 => decode_datetime_value(body), + // 0x07 ElapsedTime (`NmxSubscriptionMessage.cs:172`). + 0x07 => decode_elapsed_time_value(body), + // Arrays 0x41..0x46 (`NmxSubscriptionMessage.cs:173`). + 0x41..=0x46 => decode_array_value(wire_kind, body), + // Unknown / malformed: matches the `_ => new NmxCallbackValue(... + // EncodedLength=0)` arms in the .NET source. + _ => (None, 0), + } +} + +/// Decode a string body. Mirrors `DecodeStringValue` +/// (`NmxSubscriptionMessage.cs:178-210`). +/// +/// Layout: `record_length i32 + text_byte_length i32 + utf16le bytes`. The +/// degenerate `record_length == 4` case represents an empty string and +/// consumes exactly 4 bytes (`NmxSubscriptionMessage.cs:186-189`). Otherwise +/// the trailing two-byte UTF-16 NUL is stripped if present +/// (`NmxSubscriptionMessage.cs:203-206`). +fn decode_string_value(body: &[u8]) -> (Option, usize) { + if body.len() < 4 { + return (None, 0); + } + let record_length = read_i32_le(body, 0); + if record_length == 4 { + return (Some(MxValue::String(String::new())), 4); + } + if body.len() < 8 { + return (None, 0); + } + let text_byte_length = read_i32_le(body, 4); + // .NET checks: `recordLength < 8 || textByteLength < 0 || + // recordLength != textByteLength + 4 || body.Length < 8 + textByteLength` + // (`NmxSubscriptionMessage.cs:197`). + if record_length < 8 || text_byte_length < 0 { + return (None, 0); + } + let text_byte_length_us = text_byte_length as usize; + if record_length as usize != text_byte_length_us + 4 || body.len() < 8 + text_byte_length_us { + return (None, 0); + } + + let mut text_bytes = &body[8..8 + text_byte_length_us]; + // Strip optional UTF-16LE NUL terminator. + if text_bytes.len() >= 2 + && text_bytes[text_bytes.len() - 2] == 0 + && text_bytes[text_bytes.len() - 1] == 0 + { + text_bytes = &text_bytes[..text_bytes.len() - 2]; + } + let value = decode_utf16_le_lossy(text_bytes); + (Some(MxValue::String(value)), 8 + text_byte_length_us) +} + +/// Decode a DateTime body. Mirrors `DecodeDateTimeValue` +/// (`NmxSubscriptionMessage.cs:212-243`). +/// +/// Two shapes exist on the wire: +/// 1. `record_length i32 + filetime i64 (+ trailer)` — used when +/// `body.len() >= 14` (`record_length >= 10`); consumes +/// `4 + record_length` bytes. +/// 2. Bare `filetime i64` — fallback when the framed shape doesn't fit; +/// consumes 8 bytes. +fn decode_datetime_value(body: &[u8]) -> (Option, usize) { + if body.len() >= 14 { + let record_length = read_i32_le(body, 0); + if record_length >= 10 && body.len() >= 4 + record_length as usize { + let file_time = read_i64_le(body, 4); + // The .NET reference returns `Value = null` when the FILETIME + // is out of range (`NmxSubscriptionMessage.cs:229`) but still + // consumes `4 + record_length` bytes. We carry the raw FILETIME + // verbatim — the codec preserves the wire value and lets the + // higher layer judge validity. + return ( + Some(MxValue::DateTime(file_time)), + 4 + record_length as usize, + ); + } + } + if body.len() >= 8 { + let file_time = read_i64_le(body, 0); + return (Some(MxValue::DateTime(file_time)), 8); + } + (None, 0) +} + +/// Decode an ElapsedTime body. Mirrors `DecodeElapsedTimeValue` +/// (`NmxSubscriptionMessage.cs:245-254`). +/// +/// **Wire is signed i32 milliseconds** (`NmxSubscriptionMessage.cs:252` reads +/// `BinaryPrimitives.ReadInt32LittleEndian`). Negative values are valid and +/// must round-trip — Rust `Duration` is unsigned so we widen to `i64` ms in +/// `MxValue::ElapsedTime` (lib.rs:73-74). +fn decode_elapsed_time_value(body: &[u8]) -> (Option, usize) { + if body.len() < 4 { + return (None, 0); + } + let milliseconds = read_i32_le(body, 0); + (Some(MxValue::ElapsedTime(milliseconds as i64)), 4) +} + +/// Decode an array body. Mirrors `DecodeArrayValue` +/// (`NmxSubscriptionMessage.cs:256-278`). +/// +/// Header layout (per the **decoder**, see module-level note about asymmetry): +/// `unknown 4 bytes + count u16 LE @+4 + element_width i32 LE @+6 + values`. +/// Total header = 10 bytes (`NmxSubscriptionMessage.cs:258`). The first 4 +/// bytes appear to be a record-length / record-kind framing field; the .NET +/// reference does not interpret them and neither do we — they pass through +/// the consumed-byte accounting via the fixed `arrayHeaderLength = 10`. +fn decode_array_value(wire_kind: u8, body: &[u8]) -> (Option, usize) { + const ARRAY_HEADER_LEN: usize = 10; + if body.len() < ARRAY_HEADER_LEN { + return (None, 0); + } + let count = read_u16_le(body, 4) as usize; + // Decoder reads element_width as i32 LE — the encoder writes u16/u16 but + // the wire emitted by NmxSvc puts an i32 here. (`NmxSubscriptionMessage.cs:265`.) + let element_width = read_i32_le(body, 6); + let values = &body[ARRAY_HEADER_LEN..]; + + match wire_kind { + 0x41 => decode_bool_array(count, element_width, values), + 0x42 => decode_int32_array(count, element_width, values), + 0x43 => decode_float32_array(count, element_width, values), + 0x44 => decode_float64_array(count, element_width, values), + 0x45 => decode_string_array(count, values), + 0x46 => decode_datetime_array(count, element_width, values), + // Unreachable given the guard in `decode_value`, but keep it total. + _ => (None, 0), + } +} + +/// Bool array decoder — element width must be `sizeof(short) == 2`, elements +/// are `i16` LE where any non-zero value is true. Per the .NET reference the +/// wire encoding is `-1`/`0` (`NmxSubscriptionMessage.cs:280-294`). +fn decode_bool_array(count: usize, element_width: i32, values: &[u8]) -> (Option, usize) { + if element_width != 2 { + return (None, 0); + } + let needed = count.saturating_mul(2); + if values.len() < needed { + return (None, 0); + } + let mut out = Vec::with_capacity(count); + for i in 0..count { + // Boolean elements are i16 (`-1`/`0` in practice); `!= 0` covers both. + let raw = read_i16_le(values, i * 2); + out.push(raw != 0); + } + (Some(MxValue::BoolArray(out)), 10 + count * 2) +} + +/// Int32 array decoder. Per `NmxSubscriptionMessage.cs:296-310`. +fn decode_int32_array(count: usize, element_width: i32, values: &[u8]) -> (Option, usize) { + if element_width != 4 { + return (None, 0); + } + let needed = count.saturating_mul(4); + if values.len() < needed { + return (None, 0); + } + let mut out = Vec::with_capacity(count); + for i in 0..count { + out.push(read_i32_le(values, i * 4)); + } + (Some(MxValue::Int32Array(out)), 10 + count * 4) +} + +/// Float32 array decoder. Per `NmxSubscriptionMessage.cs:312-326`. +fn decode_float32_array( + count: usize, + element_width: i32, + values: &[u8], +) -> (Option, usize) { + if element_width != 4 { + return (None, 0); + } + let needed = count.saturating_mul(4); + if values.len() < needed { + return (None, 0); + } + let mut out = Vec::with_capacity(count); + for i in 0..count { + let bits = read_i32_le(values, i * 4); + out.push(f32::from_bits(bits as u32)); + } + (Some(MxValue::Float32Array(out)), 10 + count * 4) +} + +/// Float64 array decoder. Per `NmxSubscriptionMessage.cs:328-342`. +fn decode_float64_array( + count: usize, + element_width: i32, + values: &[u8], +) -> (Option, usize) { + if element_width != 8 { + return (None, 0); + } + let needed = count.saturating_mul(8); + if values.len() < needed { + return (None, 0); + } + let mut out = Vec::with_capacity(count); + for i in 0..count { + let bits = read_i64_le(values, i * 8); + out.push(f64::from_bits(bits as u64)); + } + (Some(MxValue::Float64Array(out)), 10 + count * 8) +} + +/// DateTime array decoder. Per `NmxSubscriptionMessage.cs:344-359`. +/// Element width is **12** on the wire (FILETIME i64 + 4 bytes of padding / +/// trailer); we read the leading 8 bytes as the FILETIME and skip the rest. +fn decode_datetime_array( + count: usize, + element_width: i32, + values: &[u8], +) -> (Option, usize) { + if element_width != 12 { + return (None, 0); + } + let needed = count.saturating_mul(12); + if values.len() < needed { + return (None, 0); + } + let mut out = Vec::with_capacity(count); + for i in 0..count { + // Only the leading 8 bytes are interpreted; the trailing 4 bytes + // are not consumed by the .NET reference either (it calls + // `BinaryPrimitives.ReadInt64LittleEndian` on the slice's first + // 8 bytes, `NmxSubscriptionMessage.cs:354`). + let file_time = read_i64_le(values, i * 12); + out.push(file_time); + } + (Some(MxValue::DateTimeArray(out)), 10 + count * 12) +} + +/// String array decoder. Per `NmxSubscriptionMessage.cs:361-392`. +/// +/// Each element is `record_length i32 + element_kind u8 (must be 0x05) + +/// text_record_length i32 + text_byte_length i32 + utf16le bytes`. The +/// element header is 13 bytes. The whole array consumes +/// `10 + sum(13 + text_byte_length)` bytes. +fn decode_string_array(count: usize, values: &[u8]) -> (Option, usize) { + let mut out = Vec::with_capacity(count); + let mut offset = 0usize; + for _ in 0..count { + if offset + 13 > values.len() { + return (None, 0); + } + let record_length = read_i32_le(values, offset); + let element_kind = values[offset + 4]; + let text_record_length = read_i32_le(values, offset + 5); + let text_byte_length = read_i32_le(values, offset + 9); + + // .NET checks: `recordLength < 9 || elementKind != 0x05 || + // textRecordLength != textByteLength + sizeof(int) || + // recordLength != 1 + sizeof(int) + sizeof(int) + textByteLength || + // offset + 13 + textByteLength > values.Length` + // (`NmxSubscriptionMessage.cs:376`). + if record_length < 9 + || element_kind != 0x05 + || text_byte_length < 0 + || text_record_length != text_byte_length + 4 + || record_length != 1 + 4 + 4 + text_byte_length + { + return (None, 0); + } + let text_byte_length_us = text_byte_length as usize; + if offset + 13 + text_byte_length_us > values.len() { + return (None, 0); + } + + let mut text_bytes = &values[offset + 13..offset + 13 + text_byte_length_us]; + if text_bytes.len() >= 2 + && text_bytes[text_bytes.len() - 2] == 0 + && text_bytes[text_bytes.len() - 1] == 0 + { + text_bytes = &text_bytes[..text_bytes.len() - 2]; + } + out.push(decode_utf16_le_lossy(text_bytes)); + offset += 13 + text_byte_length_us; + } + (Some(MxValue::StringArray(out)), 10 + offset) +} + +/// Map a wire-kind byte to its [`MxValueKind`] without decoding the payload. +/// Mirrors `ToValueKindOrNull` (`NmxSubscriptionMessage.cs:394-413`). +pub fn wire_kind_to_value_kind(wire_kind: u8) -> Option { + Some(match wire_kind { + 0x01 => MxValueKind::Boolean, + 0x02 => MxValueKind::Int32, + 0x03 => MxValueKind::Float32, + 0x04 => MxValueKind::Float64, + 0x05 => MxValueKind::String, + 0x06 => MxValueKind::DateTime, + 0x07 => MxValueKind::ElapsedTime, + 0x41 => MxValueKind::BoolArray, + 0x42 => MxValueKind::Int32Array, + 0x43 => MxValueKind::Float32Array, + 0x44 => MxValueKind::Float64Array, + 0x45 => MxValueKind::StringArray, + 0x46 => MxValueKind::DateTimeArray, + _ => return None, + }) +} + +/// Decode UTF-16LE bytes lossily — invalid sequences become U+FFFD. Mirrors +/// `Encoding.Unicode.GetString` (`NmxSubscriptionMessage.cs:208,387`) which +/// is also lossy on malformed surrogates. +fn decode_utf16_le_lossy(bytes: &[u8]) -> String { + let units: Vec = bytes + .chunks_exact(2) + .map(|c| u16::from_le_bytes([c[0], c[1]])) + .collect(); + String::from_utf16_lossy(&units) +} + +#[inline] +fn read_u16_le(bytes: &[u8], offset: usize) -> u16 { + u16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i16_le(bytes: &[u8], offset: usize) -> i16 { + i16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn read_i64_le(bytes: &[u8], offset: usize) -> i64 { + i64::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + bytes[offset + 4], + bytes[offset + 5], + bytes[offset + 6], + bytes[offset + 7], + ]) +} + +#[cfg(test)] +#[allow( + clippy::unwrap_used, + clippy::expect_used, + clippy::indexing_slicing, + clippy::panic +)] +mod tests { + use super::*; + + /// Sample 16-byte GUID for hand-crafted bodies. + const OPERATION_ID_BYTES: [u8; 16] = [ + 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, + 0x10, + ]; + const CORRELATION_ID_BYTES: [u8; 16] = [ + 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, + 0x20, + ]; + + /// Build a DataUpdate (`0x33`) body with the given record bytes appended. + fn data_update_body(record_count: i32, record: &[u8]) -> Vec { + let mut out = Vec::with_capacity(23 + record.len()); + out.push(DATA_UPDATE_COMMAND); + out.extend_from_slice(&1u16.to_le_bytes()); // version + out.extend_from_slice(&record_count.to_le_bytes()); + out.extend_from_slice(&OPERATION_ID_BYTES); + out.extend_from_slice(record); + out + } + + /// Build a SubscriptionStatus (`0x32`) body. + fn subscription_status_body(record_count: i32, records: &[u8]) -> Vec { + let mut out = Vec::with_capacity(39 + records.len()); + out.push(SUBSCRIPTION_STATUS_COMMAND); + out.extend_from_slice(&1u16.to_le_bytes()); + out.extend_from_slice(&record_count.to_le_bytes()); + out.extend_from_slice(&OPERATION_ID_BYTES); + out.extend_from_slice(&CORRELATION_ID_BYTES); + out.extend_from_slice(records); + out + } + + /// DataUpdate record: `status(4) + quality(2) + filetime(8) + wire_kind(1) + /// + value` — 15-byte fixed prefix per `NmxSubscriptionMessage.cs:119,126-143` + /// (status is read unconditionally; detail_status is the only field + /// gated on hasDetailStatus). + fn data_record(quality: u16, filetime: i64, wire_kind: u8, value: &[u8]) -> Vec { + data_record_with_status(0, quality, filetime, wire_kind, value) + } + + fn data_record_with_status( + status: i32, + quality: u16, + filetime: i64, + wire_kind: u8, + value: &[u8], + ) -> Vec { + let mut out = Vec::with_capacity(15 + value.len()); + out.extend_from_slice(&status.to_le_bytes()); + out.extend_from_slice(&quality.to_le_bytes()); + out.extend_from_slice(&filetime.to_le_bytes()); + out.push(wire_kind); + out.extend_from_slice(value); + out + } + + /// SubscriptionStatus record: `status(4) + detail_status(4) + quality(2) + + /// filetime(8) + wire_kind(1) + value`. + fn status_record( + status: i32, + detail_status: i32, + quality: u16, + filetime: i64, + wire_kind: u8, + value: &[u8], + ) -> Vec { + let mut out = Vec::with_capacity(19 + value.len()); + out.extend_from_slice(&status.to_le_bytes()); + out.extend_from_slice(&detail_status.to_le_bytes()); + out.extend_from_slice(&quality.to_le_bytes()); + out.extend_from_slice(&filetime.to_le_bytes()); + out.push(wire_kind); + out.extend_from_slice(value); + out + } + + #[test] + fn data_update_boolean_round_trip() { + let rec = data_record(0x00C0, 132_000_000_000, 0x01, &[0x01]); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.command, DATA_UPDATE_COMMAND); + assert_eq!(msg.record_count, 1); + assert!(msg.item_correlation_id.is_none()); + assert_eq!(msg.operation_id.0, OPERATION_ID_BYTES); + assert_eq!(msg.records.len(), 1); + let r = &msg.records[0]; + assert_eq!(r.status, 0); + assert_eq!(r.detail_status, None); + assert_eq!(r.quality, 0x00C0); + assert_eq!(r.timestamp_filetime, 132_000_000_000); + assert_eq!(r.wire_kind, 0x01); + assert_eq!(r.value, Some(MxValue::Boolean(true))); + } + + #[test] + fn data_update_int32() { + let mut payload = Vec::new(); + payload.extend_from_slice(&42i32.to_le_bytes()); + let rec = data_record(0x00C0, 0, 0x02, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.records[0].value, Some(MxValue::Int32(42))); + } + + #[test] + fn data_update_float32() { + let mut payload = Vec::new(); + payload.extend_from_slice(&1.5f32.to_le_bytes()); + let rec = data_record(0x00C0, 0, 0x03, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.records[0].value, Some(MxValue::Float32(1.5))); + } + + #[test] + fn data_update_float64() { + let mut payload = Vec::new(); + payload.extend_from_slice(&3.25f64.to_le_bytes()); + let rec = data_record(0x00C0, 0, 0x04, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.records[0].value, Some(MxValue::Float64(3.25))); + } + + #[test] + fn data_update_string() { + // "Hi" UTF-16LE = [0x48, 0x00, 0x69, 0x00] then NUL [0x00, 0x00] = 6 bytes. + let utf16 = [0x48, 0x00, 0x69, 0x00, 0x00, 0x00]; + let text_byte_length: i32 = utf16.len() as i32; + let record_length: i32 = text_byte_length + 4; + let mut payload = Vec::new(); + payload.extend_from_slice(&record_length.to_le_bytes()); + payload.extend_from_slice(&text_byte_length.to_le_bytes()); + payload.extend_from_slice(&utf16); + let rec = data_record(0x00C0, 0, 0x05, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!( + msg.records[0].value, + Some(MxValue::String("Hi".to_string())) + ); + } + + #[test] + fn data_update_string_empty() { + // record_length == 4 indicates empty string; only 4 bytes consumed. + let mut payload = Vec::new(); + payload.extend_from_slice(&4i32.to_le_bytes()); + let rec = data_record(0x00C0, 0, 0x05, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.records[0].value, Some(MxValue::String(String::new()))); + } + + #[test] + fn data_update_datetime_framed() { + // Framed: record_length(4) + filetime(8) + 2 trailer bytes => 14 byte body. + let file_time: i64 = 132_500_000_000; + let record_length: i32 = 10; + let mut payload = Vec::new(); + payload.extend_from_slice(&record_length.to_le_bytes()); + payload.extend_from_slice(&file_time.to_le_bytes()); + payload.extend_from_slice(&[0x00, 0x00]); // trailer + let rec = data_record(0x00C0, 0, 0x06, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.records[0].value, Some(MxValue::DateTime(file_time))); + } + + #[test] + fn data_update_elapsed_time_negative() { + // Encode -500ms; expect a signed-preserving round-trip. + let mut payload = Vec::new(); + payload.extend_from_slice(&(-500i32).to_le_bytes()); + let rec = data_record(0x00C0, 0, 0x07, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.records[0].value, Some(MxValue::ElapsedTime(-500))); + } + + #[test] + fn subscription_status_int32_round_trip() { + let mut payload = Vec::new(); + payload.extend_from_slice(&7i32.to_le_bytes()); + let rec = status_record(-1, -2, 0x00C0, 0, 0x02, &payload); + let body = subscription_status_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.command, SUBSCRIPTION_STATUS_COMMAND); + assert_eq!(msg.records.len(), 1); + assert_eq!(msg.item_correlation_id.unwrap().0, CORRELATION_ID_BYTES); + let r = &msg.records[0]; + assert_eq!(r.status, -1); + assert_eq!(r.detail_status, Some(-2)); + assert_eq!(r.quality, 0x00C0); + assert_eq!(r.value, Some(MxValue::Int32(7))); + } + + #[test] + fn data_update_record_count_not_one_hard_errors() { + // recordCount = 2 must hard-error per NmxSubscriptionMessage.cs:71-74. + let body = data_update_body(2, &[]); + let err = NmxSubscriptionMessage::parse_inner(&body).unwrap_err(); + match err { + CodecError::Decode { offset, reason, .. } => { + assert_eq!(offset, 3); + assert!( + reason.contains("multi-record"), + "unexpected reason: {reason}" + ); + } + other => panic!("expected CodecError::Decode, got {other:?}"), + } + + // record_count = 0 also rejected. + let body0 = data_update_body(0, &[]); + assert!(matches!( + NmxSubscriptionMessage::parse_inner(&body0).unwrap_err(), + CodecError::Decode { .. } + )); + } + + #[test] + fn data_update_has_no_correlation_id() { + // DataUpdate records start at offset 23 — there is no correlation id + // gap. Verify by feeding a body that *would* be malformed if 16 extra + // bytes were consumed before the record. + let rec = data_record(0x00C0, 0, 0x01, &[0x01]); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert!(msg.item_correlation_id.is_none()); + // First record begins at offset 23, not 39. + assert_eq!(msg.records[0].offset, 23); + } + + #[test] + fn subscription_status_reads_correlation_id() { + let mut payload = Vec::new(); + payload.extend_from_slice(&0i32.to_le_bytes()); + let rec = status_record(0, 0, 0x00C0, 0, 0x02, &payload); + let body = subscription_status_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!(msg.item_correlation_id.unwrap().0, CORRELATION_ID_BYTES); + // First record begins at offset 39 (preamble + correlation id). + assert_eq!(msg.records[0].offset, 39); + } + + #[test] + fn boolean_array_minus_one_is_true() { + // Array header: 4 unknown bytes + count u16 + element_width i32 (=2) + // + values (count * 2 bytes). + let count: u16 = 2; + let element_width: i32 = 2; + let mut payload = Vec::new(); + payload.extend_from_slice(&[0u8; 4]); // unknown header bytes + payload.extend_from_slice(&count.to_le_bytes()); + payload.extend_from_slice(&element_width.to_le_bytes()); + // -1 (true) and 0 (false) as i16 LE + payload.extend_from_slice(&(-1i16).to_le_bytes()); // 0xff 0xff + payload.extend_from_slice(&0i16.to_le_bytes()); // 0x00 0x00 + let rec = data_record(0x00C0, 0, 0x41, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!( + msg.records[0].value, + Some(MxValue::BoolArray(vec![true, false])) + ); + } + + #[test] + fn boolean_array_byte_pattern_ff_ff_is_true_00_00_is_false() { + // Sanity: `[0xff, 0xff]` as i16 LE = -1 (true); `[0x00, 0x00]` = 0 (false). + let count: u16 = 2; + let element_width: i32 = 2; + let mut payload = Vec::new(); + payload.extend_from_slice(&[0u8; 4]); + payload.extend_from_slice(&count.to_le_bytes()); + payload.extend_from_slice(&element_width.to_le_bytes()); + payload.extend_from_slice(&[0xff, 0xff, 0x00, 0x00]); + let rec = data_record(0x00C0, 0, 0x41, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!( + msg.records[0].value, + Some(MxValue::BoolArray(vec![true, false])) + ); + } + + #[test] + fn datetime_array_decodes_0x46() { + // Element width is 12: 8-byte filetime + 4 bytes of trailing padding. + let count: u16 = 2; + let element_width: i32 = 12; + let mut payload = Vec::new(); + payload.extend_from_slice(&[0u8; 4]); + payload.extend_from_slice(&count.to_le_bytes()); + payload.extend_from_slice(&element_width.to_le_bytes()); + // Two FILETIMEs plus 4 bytes of trailing padding each. + payload.extend_from_slice(&132_000_000_000i64.to_le_bytes()); + payload.extend_from_slice(&[0u8; 4]); + payload.extend_from_slice(&132_500_000_000i64.to_le_bytes()); + payload.extend_from_slice(&[0u8; 4]); + let rec = data_record(0x00C0, 0, 0x46, &payload); + let body = data_update_body(1, &rec); + let msg = NmxSubscriptionMessage::parse_inner(&body).unwrap(); + assert_eq!( + msg.records[0].value, + Some(MxValue::DateTimeArray(vec![ + 132_000_000_000, + 132_500_000_000 + ])) + ); + } + + #[test] + fn unknown_command_is_unexpected_opcode() { + let mut body = data_update_body(1, &[]); + body[0] = 0x99; + let err = NmxSubscriptionMessage::parse_inner(&body).unwrap_err(); + assert!(matches!(err, CodecError::UnexpectedOpcode(0x99))); + } + + #[test] + fn short_inner_is_short_read() { + let err = NmxSubscriptionMessage::parse_inner(&[0u8; 22]).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn subscription_status_short_header_is_short_read() { + // 23 bytes is the preamble length, but SubscriptionStatus needs 39. + let mut body = Vec::with_capacity(23); + body.push(SUBSCRIPTION_STATUS_COMMAND); + body.extend_from_slice(&1u16.to_le_bytes()); + body.extend_from_slice(&0i32.to_le_bytes()); + body.extend_from_slice(&OPERATION_ID_BYTES); + let err = NmxSubscriptionMessage::parse_inner(&body).unwrap_err(); + assert!(matches!(err, CodecError::ShortRead { .. })); + } + + #[test] + fn wire_kind_to_value_kind_table() { + assert_eq!(wire_kind_to_value_kind(0x01), Some(MxValueKind::Boolean)); + assert_eq!( + wire_kind_to_value_kind(0x07), + Some(MxValueKind::ElapsedTime) + ); + assert_eq!( + wire_kind_to_value_kind(0x46), + Some(MxValueKind::DateTimeArray) + ); + assert_eq!(wire_kind_to_value_kind(0x99), None); + } + + #[test] + fn command_constants_match_dotnet() { + // NmxSubscriptionMessage.cs:36-37 + assert_eq!(SUBSCRIPTION_STATUS_COMMAND, 0x32); + assert_eq!(DATA_UPDATE_COMMAND, 0x33); + } +} diff --git a/rust/crates/mxaccess-codec/src/value.rs b/rust/crates/mxaccess-codec/src/value.rs new file mode 100644 index 0000000..f204f58 --- /dev/null +++ b/rust/crates/mxaccess-codec/src/value.rs @@ -0,0 +1,471 @@ +//! Value model — `MxValueKind`, `MxDataType`, and `MxValue`. +//! +//! Ports `src/MxNativeCodec/MxValueKind.cs`, `src/MxNativeCodec/MxDataType.cs`, +//! and the wire-kind/value mapping that `NmxSubscriptionMessage.cs` and +//! `NmxWriteMessage.cs` use. `MxValueKind` carries the on-the-wire numeric +//! tags observed in NMX subscription / write bodies; `MxDataType` is the +//! attribute-model side of the .NET enum and is independent of the wire +//! kind; `MxValue` is the runtime carrier used by codecs. +//! +//! The wire-kind values are not encoded as an enum in the .NET reference +//! (`MxValueKind.cs:3-18` uses default integer ordering) — the `0x01..0x07` +//! and `0x41..0x46` byte tags come from the encoder/decoder switches in +//! `NmxWriteMessage.cs:94-110` and `NmxSubscriptionMessage.cs:164-176`. + +#![allow(clippy::indexing_slicing)] + +/// On-the-wire value kind tag. +/// +/// Per `NmxWriteMessage.cs:94-110` (`GetWireKind`) and +/// `NmxSubscriptionMessage.cs:164-176` (`DecodeValue`). The byte values are +/// the actual wire tags written into / read out of NMX message bodies; they +/// are NOT the `int` ordinals of the C# `MxValueKind` enum +/// (`MxValueKind.cs:3-18`). +/// +/// Encoder asymmetry: both `StringArray` and `DateTimeArray` are written as +/// `0x45` on the wire (`NmxWriteMessage.cs:107`), but the decoder +/// distinguishes `0x46` for `DateTimeArray` +/// (`NmxSubscriptionMessage.cs:173,275`). [`MxValue::kind`] reflects the +/// encoder behaviour — see its docs. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +#[non_exhaustive] +#[repr(u8)] +pub enum MxValueKind { + /// Sentinel for unrecognised wire tags. Not on the wire; used by + /// [`MxValueKind::from_u8`] to surface "unknown kind" without panicking. + #[default] + Unknown = 0x00, + /// `MxValueKind.cs:5` / wire `0x01` (`NmxWriteMessage.cs:98`, + /// `NmxSubscriptionMessage.cs:166`). + Boolean = 0x01, + /// `MxValueKind.cs:6` / wire `0x02` (`NmxWriteMessage.cs:99`, + /// `NmxSubscriptionMessage.cs:167`). + Int32 = 0x02, + /// `MxValueKind.cs:7` / wire `0x03` (`NmxWriteMessage.cs:100`, + /// `NmxSubscriptionMessage.cs:168`). + Float32 = 0x03, + /// `MxValueKind.cs:8` / wire `0x04` (`NmxWriteMessage.cs:101`, + /// `NmxSubscriptionMessage.cs:169`). + Float64 = 0x04, + /// `MxValueKind.cs:9` / wire `0x05` (`NmxWriteMessage.cs:102`, + /// `NmxSubscriptionMessage.cs:170`). Encoder collapses `String` and + /// `DateTime` to the same tag (`NmxWriteMessage.cs:102`). + String = 0x05, + /// `MxValueKind.cs:10` / wire `0x06` on the decode path + /// (`NmxSubscriptionMessage.cs:171`). Encoder collapses to `0x05` + /// (`NmxWriteMessage.cs:102`). + DateTime = 0x06, + /// `MxValueKind.cs:11` / wire `0x07` (`NmxSubscriptionMessage.cs:172,253`). + /// Decoder reads a signed `i32` milliseconds value. + ElapsedTime = 0x07, + /// `MxValueKind.cs:12` / wire `0x41` (`NmxWriteMessage.cs:103`, + /// `NmxSubscriptionMessage.cs:173,270`). + BoolArray = 0x41, + /// `MxValueKind.cs:13` / wire `0x42` (`NmxWriteMessage.cs:104`, + /// `NmxSubscriptionMessage.cs:173,271`). + Int32Array = 0x42, + /// `MxValueKind.cs:14` / wire `0x43` (`NmxWriteMessage.cs:105`, + /// `NmxSubscriptionMessage.cs:173,272`). + Float32Array = 0x43, + /// `MxValueKind.cs:15` / wire `0x44` (`NmxWriteMessage.cs:106`, + /// `NmxSubscriptionMessage.cs:173,273`). + Float64Array = 0x44, + /// `MxValueKind.cs:16` / wire `0x45` (`NmxWriteMessage.cs:107`, + /// `NmxSubscriptionMessage.cs:173,274`). Encoder collapses + /// `StringArray` and `DateTimeArray` to this tag + /// (`NmxWriteMessage.cs:107`). + StringArray = 0x45, + /// `MxValueKind.cs:17` / wire `0x46` on the decode path + /// (`NmxSubscriptionMessage.cs:173,275`). Encoder collapses to `0x45` + /// (`NmxWriteMessage.cs:107`). + DateTimeArray = 0x46, + // ElapsedTimeArray (0x47) is not enumerated by `MxValueKind.cs` and is + // not handled by either the encoder or decoder. Known gap, parity with + // .NET reference. +} + +impl MxValueKind { + /// Decode a wire byte into a kind. Returns [`MxValueKind::Unknown`] for + /// any tag not in `0x01..=0x07` or `0x41..=0x46` — mirrors the fall- + /// through arms of `NmxSubscriptionMessage.DecodeValue` + /// (`NmxSubscriptionMessage.cs:174`) and `ToValueKindOrNull` in the + /// .NET reference. + pub fn from_u8(value: u8) -> Self { + match value { + 0x01 => Self::Boolean, + 0x02 => Self::Int32, + 0x03 => Self::Float32, + 0x04 => Self::Float64, + 0x05 => Self::String, + 0x06 => Self::DateTime, + 0x07 => Self::ElapsedTime, + 0x41 => Self::BoolArray, + 0x42 => Self::Int32Array, + 0x43 => Self::Float32Array, + 0x44 => Self::Float64Array, + 0x45 => Self::StringArray, + 0x46 => Self::DateTimeArray, + _ => Self::Unknown, + } + } + + /// Encode the kind to its wire byte. `Unknown` returns `0x00`; do not + /// emit `Unknown` to the wire — the .NET encoder + /// (`NmxWriteMessage.cs:108`) throws `ArgumentOutOfRangeException` for + /// any kind not in its match. + pub fn to_u8(self) -> u8 { + self as u8 + } +} + +/// Attribute-model data type — port of `MxDataType.cs:3-24`. +/// +/// This is the model-side attribute classification, distinct from the wire +/// `MxValueKind`. The numeric values are the explicit `short` discriminants +/// from `MxDataType.cs:3` (`enum MxDataType : short`). Used by the runtime +/// model and by `RegisterMxReferences` results, not by NMX value bodies. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)] +#[non_exhaustive] +#[repr(i16)] +pub enum MxDataType { + /// `MxDataType.cs:5` — sentinel for "no type known". + #[default] + Unknown = -1, + /// `MxDataType.cs:6`. + NoData = 0, + /// `MxDataType.cs:7`. + Boolean = 1, + /// `MxDataType.cs:8`. + Integer = 2, + /// `MxDataType.cs:9`. + Float = 3, + /// `MxDataType.cs:10`. + Double = 4, + /// `MxDataType.cs:11`. + String = 5, + /// `MxDataType.cs:12`. + Time = 6, + /// `MxDataType.cs:13`. + ElapsedTime = 7, + /// `MxDataType.cs:14`. + ReferenceType = 8, + /// `MxDataType.cs:15`. + StatusType = 9, + /// `MxDataType.cs:16`. + Enum = 10, + /// `MxDataType.cs:17`. + SecurityClassificationEnum = 11, + /// `MxDataType.cs:18`. + DataQualityType = 12, + /// `MxDataType.cs:19`. + QualifiedEnum = 13, + /// `MxDataType.cs:20`. + QualifiedStruct = 14, + /// `MxDataType.cs:21`. + InternationalizedString = 15, + /// `MxDataType.cs:22`. + BigString = 16, + /// `MxDataType.cs:23` — terminator sentinel from the .NET enum. + End = 17, +} + +impl MxDataType { + /// Decode the model-side type id. Out-of-range values map to + /// [`MxDataType::Unknown`]. Mirrors the `Unknown = -1` sentinel from + /// `MxDataType.cs:5`. + pub fn from_i16(value: i16) -> Self { + match value { + 0 => Self::NoData, + 1 => Self::Boolean, + 2 => Self::Integer, + 3 => Self::Float, + 4 => Self::Double, + 5 => Self::String, + 6 => Self::Time, + 7 => Self::ElapsedTime, + 8 => Self::ReferenceType, + 9 => Self::StatusType, + 10 => Self::Enum, + 11 => Self::SecurityClassificationEnum, + 12 => Self::DataQualityType, + 13 => Self::QualifiedEnum, + 14 => Self::QualifiedStruct, + 15 => Self::InternationalizedString, + 16 => Self::BigString, + 17 => Self::End, + _ => Self::Unknown, + } + } + + pub fn to_i16(self) -> i16 { + self as i16 + } +} + +/// Runtime carrier for a decoded MXAccess value. +/// +/// Variant set tracks `NmxSubscriptionMessage.DecodeValue` +/// (`NmxSubscriptionMessage.cs:164-176`): the seven scalar wire kinds +/// (`0x01..=0x07`) plus the six array wire kinds (`0x41..=0x46`, +/// minus `ElapsedTimeArray` which has no .NET support). +#[derive(Debug, Clone, PartialEq)] +#[non_exhaustive] +pub enum MxValue { + /// Scalar boolean, wire `0x01` (`NmxSubscriptionMessage.cs:166`). + Boolean(bool), + /// Scalar `i32`, wire `0x02` (`NmxSubscriptionMessage.cs:167`). + Int32(i32), + /// Scalar `f32`, wire `0x03` (`NmxSubscriptionMessage.cs:168`). + Float32(f32), + /// Scalar `f64`, wire `0x04` (`NmxSubscriptionMessage.cs:169`). + Float64(f64), + /// Scalar UTF-16LE string, wire `0x05` + /// (`NmxSubscriptionMessage.cs:170,178-210`). + String(String), + /// Windows `FILETIME` ticks (100ns since 1601-01-01 UTC), wire `0x06` + /// (`NmxSubscriptionMessage.cs:171,212-243`). Carries the raw `i64` + /// rather than a `DateTime` to preserve byte-for-byte parity even when + /// the value falls outside `chrono`/`time` clamp ranges. + DateTime(i64), + /// Signed milliseconds, wire `0x07` + /// (`NmxSubscriptionMessage.cs:172,245-254`). Wire is `i32`; widened to + /// `i64` here to allow the model to be unambiguous about sign and to + /// avoid forcing the `std::time::Duration` (unsigned) shape. + ElapsedTime(i64), + /// Boolean array, wire `0x41` + /// (`NmxSubscriptionMessage.cs:173,280-294`). On the wire each element + /// is an `i16` per `elementWidth==sizeof(short)` check. + BoolArray(Vec), + /// `i32` array, wire `0x42` + /// (`NmxSubscriptionMessage.cs:173,296-310`). + Int32Array(Vec), + /// `f32` array, wire `0x43` + /// (`NmxSubscriptionMessage.cs:173,312-326`). + Float32Array(Vec), + /// `f64` array, wire `0x44` + /// (`NmxSubscriptionMessage.cs:173,328-342`). + Float64Array(Vec), + /// String array, wire `0x45` on encode AND decode + /// (`NmxWriteMessage.cs:107`, `NmxSubscriptionMessage.cs:173,274`). + StringArray(Vec), + /// `DateTime` array; decoded from wire `0x46` + /// (`NmxSubscriptionMessage.cs:173,275`), but encoded as `0x45` + /// (`NmxWriteMessage.cs:107`). Elements are raw `FILETIME` ticks. + DateTimeArray(Vec), +} + +impl MxValue { + /// Wire kind for this value. Mirrors `NmxWriteMessage.GetWireKind` + /// (`NmxWriteMessage.cs:94-110`) — i.e. the *encoder* behaviour. + /// + /// **Encoder collapse:** both [`MxValue::StringArray`] and + /// [`MxValue::DateTimeArray`] return [`MxValueKind::StringArray`] + /// (`0x45`) here, matching `NmxWriteMessage.cs:107`. The decoder is + /// asymmetric (`0x46` round-trips back into `DateTimeArray`); see + /// [`MxValueKind`] docs. + pub fn kind(&self) -> MxValueKind { + match self { + Self::Boolean(_) => MxValueKind::Boolean, + Self::Int32(_) => MxValueKind::Int32, + Self::Float32(_) => MxValueKind::Float32, + Self::Float64(_) => MxValueKind::Float64, + Self::String(_) => MxValueKind::String, + // Per NmxWriteMessage.cs:102 the encoder collapses DateTime to + // the String wire tag (0x05). Returning `DateTime` here keeps + // the model side honest; encoders should re-map via + // `MxValueKind::to_u8` semantics or call out to a future + // `to_wire_byte` helper. + Self::DateTime(_) => MxValueKind::DateTime, + Self::ElapsedTime(_) => MxValueKind::ElapsedTime, + Self::BoolArray(_) => MxValueKind::BoolArray, + Self::Int32Array(_) => MxValueKind::Int32Array, + Self::Float32Array(_) => MxValueKind::Float32Array, + Self::Float64Array(_) => MxValueKind::Float64Array, + // Encoder collapse: NmxWriteMessage.cs:107 maps both + // StringArray and DateTimeArray to wire 0x45. Matches the + // .NET encoder; the decoder asymmetrically uses 0x46 for + // DateTimeArray (NmxSubscriptionMessage.cs:275). + Self::StringArray(_) => MxValueKind::StringArray, + Self::DateTimeArray(_) => MxValueKind::StringArray, + } + } + + /// Model-side data type hint. This is best-effort: the wire never + /// carries `MxDataType` — it's the model classification used by + /// register results and the public API. Arrays return their scalar + /// element's `MxDataType` (the .NET reference does not have an + /// "array of X" `MxDataType` discriminant). + pub fn data_type(&self) -> MxDataType { + match self { + Self::Boolean(_) | Self::BoolArray(_) => MxDataType::Boolean, + Self::Int32(_) | Self::Int32Array(_) => MxDataType::Integer, + Self::Float32(_) | Self::Float32Array(_) => MxDataType::Float, + Self::Float64(_) | Self::Float64Array(_) => MxDataType::Double, + Self::String(_) | Self::StringArray(_) => MxDataType::String, + Self::DateTime(_) | Self::DateTimeArray(_) => MxDataType::Time, + Self::ElapsedTime(_) => MxDataType::ElapsedTime, + } + } +} + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used)] +mod tests { + use super::*; + + const ALL_KINDS: &[MxValueKind] = &[ + MxValueKind::Unknown, + MxValueKind::Boolean, + MxValueKind::Int32, + MxValueKind::Float32, + MxValueKind::Float64, + MxValueKind::String, + MxValueKind::DateTime, + MxValueKind::ElapsedTime, + MxValueKind::BoolArray, + MxValueKind::Int32Array, + MxValueKind::Float32Array, + MxValueKind::Float64Array, + MxValueKind::StringArray, + MxValueKind::DateTimeArray, + ]; + + #[test] + fn value_kind_round_trip() { + for &kind in ALL_KINDS { + assert_eq!(MxValueKind::from_u8(kind.to_u8()), kind, "{kind:?}"); + } + } + + #[test] + fn value_kind_unknown_byte_maps_to_unknown() { + assert_eq!(MxValueKind::from_u8(0xff), MxValueKind::Unknown); + // Tags between scalar (0x07) and array (0x41) ranges are not + // assigned in the .NET reference. + assert_eq!(MxValueKind::from_u8(0x08), MxValueKind::Unknown); + assert_eq!(MxValueKind::from_u8(0x40), MxValueKind::Unknown); + // 0x47 (would-be ElapsedTimeArray) is a documented gap — must + // currently surface as Unknown. + assert_eq!(MxValueKind::from_u8(0x47), MxValueKind::Unknown); + } + + #[test] + fn value_kind_to_u8_matches_wire_tags() { + // Spot-check the wire bytes against the .cs sources. + assert_eq!(MxValueKind::Boolean.to_u8(), 0x01); + assert_eq!(MxValueKind::Int32.to_u8(), 0x02); + assert_eq!(MxValueKind::Float32.to_u8(), 0x03); + assert_eq!(MxValueKind::Float64.to_u8(), 0x04); + assert_eq!(MxValueKind::String.to_u8(), 0x05); + assert_eq!(MxValueKind::DateTime.to_u8(), 0x06); + assert_eq!(MxValueKind::ElapsedTime.to_u8(), 0x07); + assert_eq!(MxValueKind::BoolArray.to_u8(), 0x41); + assert_eq!(MxValueKind::Int32Array.to_u8(), 0x42); + assert_eq!(MxValueKind::Float32Array.to_u8(), 0x43); + assert_eq!(MxValueKind::Float64Array.to_u8(), 0x44); + assert_eq!(MxValueKind::StringArray.to_u8(), 0x45); + assert_eq!(MxValueKind::DateTimeArray.to_u8(), 0x46); + } + + #[test] + fn data_type_round_trip() { + let all = [ + MxDataType::Unknown, + MxDataType::NoData, + MxDataType::Boolean, + MxDataType::Integer, + MxDataType::Float, + MxDataType::Double, + MxDataType::String, + MxDataType::Time, + MxDataType::ElapsedTime, + MxDataType::ReferenceType, + MxDataType::StatusType, + MxDataType::Enum, + MxDataType::SecurityClassificationEnum, + MxDataType::DataQualityType, + MxDataType::QualifiedEnum, + MxDataType::QualifiedStruct, + MxDataType::InternationalizedString, + MxDataType::BigString, + MxDataType::End, + ]; + for dt in all { + assert_eq!(MxDataType::from_i16(dt.to_i16()), dt, "{dt:?}"); + } + } + + #[test] + fn data_type_out_of_range_maps_to_unknown() { + assert_eq!(MxDataType::from_i16(-2), MxDataType::Unknown); + assert_eq!(MxDataType::from_i16(18), MxDataType::Unknown); + assert_eq!(MxDataType::from_i16(i16::MAX), MxDataType::Unknown); + assert_eq!(MxDataType::from_i16(i16::MIN), MxDataType::Unknown); + } + + #[test] + fn value_kind_for_each_variant() { + assert_eq!(MxValue::Boolean(true).kind(), MxValueKind::Boolean); + assert_eq!(MxValue::Int32(0).kind(), MxValueKind::Int32); + assert_eq!(MxValue::Float32(0.0).kind(), MxValueKind::Float32); + assert_eq!(MxValue::Float64(0.0).kind(), MxValueKind::Float64); + assert_eq!(MxValue::String(String::new()).kind(), MxValueKind::String); + assert_eq!(MxValue::DateTime(0).kind(), MxValueKind::DateTime); + assert_eq!(MxValue::ElapsedTime(0).kind(), MxValueKind::ElapsedTime); + assert_eq!(MxValue::BoolArray(vec![]).kind(), MxValueKind::BoolArray); + assert_eq!(MxValue::Int32Array(vec![]).kind(), MxValueKind::Int32Array); + assert_eq!( + MxValue::Float32Array(vec![]).kind(), + MxValueKind::Float32Array + ); + assert_eq!( + MxValue::Float64Array(vec![]).kind(), + MxValueKind::Float64Array + ); + } + + /// Both `StringArray` and `DateTimeArray` collapse to the same wire + /// kind on the encode path. This mirrors `NmxWriteMessage.cs:107`: + /// + /// ```text + /// MxValueKind.StringArray or MxValueKind.DateTimeArray => 0x45, + /// ``` + #[test] + fn string_and_datetime_arrays_collapse_to_string_array_wire_kind() { + let s = MxValue::StringArray(vec!["a".to_string()]); + let d = MxValue::DateTimeArray(vec![0_i64]); + + assert_eq!(s.kind(), MxValueKind::StringArray); + assert_eq!(d.kind(), MxValueKind::StringArray); + assert_eq!(s.kind(), d.kind()); + assert_eq!(s.kind().to_u8(), 0x45); + assert_eq!(d.kind().to_u8(), 0x45); + } + + #[test] + fn data_type_for_each_value() { + assert_eq!(MxValue::Boolean(false).data_type(), MxDataType::Boolean); + assert_eq!(MxValue::Int32(0).data_type(), MxDataType::Integer); + assert_eq!(MxValue::Float32(0.0).data_type(), MxDataType::Float); + assert_eq!(MxValue::Float64(0.0).data_type(), MxDataType::Double); + assert_eq!( + MxValue::String(String::new()).data_type(), + MxDataType::String + ); + assert_eq!(MxValue::DateTime(0).data_type(), MxDataType::Time); + assert_eq!(MxValue::ElapsedTime(0).data_type(), MxDataType::ElapsedTime); + assert_eq!(MxValue::BoolArray(vec![]).data_type(), MxDataType::Boolean); + assert_eq!(MxValue::DateTimeArray(vec![]).data_type(), MxDataType::Time); + } + + #[test] + fn defaults_match_dotnet_sentinels() { + // MxValueKind::Unknown is the from_u8 fall-through and the Default + // (matches `ToValueKindOrNull` semantics in + // `NmxSubscriptionMessage.cs:174`). + assert_eq!(MxValueKind::default(), MxValueKind::Unknown); + // MxDataType::Unknown == -1 per `MxDataType.cs:5`. + assert_eq!(MxDataType::default(), MxDataType::Unknown); + assert_eq!(MxDataType::default().to_i16(), -1); + } +} diff --git a/rust/crates/mxaccess-codec/src/write_message.rs b/rust/crates/mxaccess-codec/src/write_message.rs new file mode 100644 index 0000000..94d602b --- /dev/null +++ b/rust/crates/mxaccess-codec/src/write_message.rs @@ -0,0 +1,1649 @@ +//! `NmxWriteMessage` — normal-write (`0x37`) message body codec. +//! +//! Direct port of `src/MxNativeCodec/NmxWriteMessage.cs`. Covers all scalar +//! and array wire kinds and both the normal and timestamped (`Write2`) suffix +//! variants. The secured-write opcode `0x38` lives in a separate module +//! (`NmxSecuredWrite2Message`) and is **not** handled here despite its +//! superficial similarity (per task spec / `design/40-protocol-invariants.md`). +//! +//! # Common prefix layout (`NmxWriteMessage.cs:11-13, 207-213`) +//! +//! ```text +//! offset size field +//! 0 1 command = 0x37 +//! 1 2 version u16 LE = 1 +//! 3 14 handle projection (bytes 6..20 of MxReferenceHandle.encode) +//! 17 1 wire kind (see GetWireKind, .cs:94-110) +//! 18 ... payload (depends on wire kind) +//! ``` +//! +//! There is **no** padding between the version field and the handle +//! projection: `HandleProjectionOffset = 3` immediately follows the 3-byte +//! `cmd + version` header. `HandleProjectionLength = 14` reaches up to and +//! including `attribute_index` of the source handle (offset 6..20). +//! +//! # Suffix layouts (`NmxWriteMessage.cs:215-251`) +//! +//! Three distinct suffixes follow the value payload: +//! +//! - **Normal (non-Boolean) suffix** (18 bytes total = 14 suffix + 4 index): +//! `i16 = -1`, `u64 = 0` (8-byte filler), `u32 clientToken`, `i32 writeIndex`. +//! - **Boolean suffix** (15 bytes total = 11 suffix + 4 index): +//! 7 zero bytes, `u32 clientToken`, `i32 writeIndex`. +//! - **Timestamped (`Write2`) suffix** (18 bytes total = 14 suffix + 4 index): +//! `i16 = 0` (was `-1` in the normal form), `i64 FILETIME ticks`, +//! `u32 clientToken`, `i32 writeIndex`. The 8-byte filler from the normal +//! suffix is replaced by the FILETIME timestamp at offsets 2..10. +//! +//! Note: Boolean has no timestamped variant with the 11-byte suffix shape — +//! the timestamped Boolean path lays out a single-byte payload (`0xff`/`0x00`) +//! followed by the standard 14-byte timestamped suffix +//! (`NmxWriteMessage.cs:130-137`). This matches the .NET reference exactly. +//! +//! # Boolean value bytes (`NmxWriteMessage.cs:257`) +//! +//! Normal Boolean values are **literally** four bytes: `[0xff, 0xff, 0xff, 0x00]` +//! for `true` or `[0x00, 0xff, 0xff, 0x00]` for `false`. Bytes 1 and 2 are +//! `0xff` filler — they are NOT reserved/zero. The total Boolean body is +//! 37 bytes (= prefix 18 + value 4 + suffix 15). +//! +//! # Variable-length payload (String / DateTime) (`NmxWriteMessage.cs:148-157`) +//! +//! ```text +//! 18..22 i32 LE outer_length = utf16_len + 4 +//! 22..26 i32 LE inner_length = utf16_len +//! 26.. UTF-16LE bytes (with 2-byte zero terminator) +//! ``` +//! +//! Total = `44 + utf16_bytes_len` (= prefix 18 + 8 length headers + utf16 +//! payload + 18 suffix). Note the .NET source `EncodeUtf16String` +//! pre-allocates `textBytes.Length + 2` and copies only `textBytes` in, +//! leaving the trailing 2 bytes zero — i.e. the UTF-16 NUL terminator +//! (`NmxWriteMessage.cs:294-300`). The terminator IS counted in both the +//! outer_length and inner_length values. +//! +//! # Array header (write side) (`NmxWriteMessage.cs:170-205`) +//! +//! ```text +//! 18..22 i32 LE zeros (skipped — body alloc'd to zero) +//! 22..24 u16 LE count +//! 24..26 u16 LE element_width +//! 26..28 i16 LE zeros (skipped) +//! 28.. payload +//! ``` +//! +//! The encoder writes `count` (u16) at body[22] and `element_width` (u16) at +//! body[24]. The decoder/subscription side reads `element_width` as `i32` at +//! a different offset — that asymmetry is documented in the subscription +//! message module, not here. Encoder element widths are 2/4/4/8 for +//! Boolean/Int32/Float32/Float64 arrays; for variable arrays (String, +//! DateTime) the width is hard-coded to `4` (`NmxWriteMessage.cs:30, 52`). +//! +//! # `GetWireKind` collapse (`NmxWriteMessage.cs:94-110`) +//! +//! `GetWireKind` returns `0x45` for **both** `StringArray` AND `DateTimeArray`. +//! The decoder distinguishes via a separate `0x46` value (subscription side); +//! the encoder always emits `0x45` for both — this is preserved here. + +// Direct byte indexing — see reference_handle.rs / envelope.rs for rationale. +#![allow(clippy::indexing_slicing)] + +use crate::MxReferenceHandle; +use crate::error::CodecError; + +/// Normal-write opcode (`NmxWriteMessage.cs:9`). +pub const COMMAND: u8 = 0x37; + +/// Wire-format version (`NmxWriteMessage.cs:10`). +pub const VERSION: u16 = 1; + +/// Byte offset of the 14-byte handle projection inside the message body +/// (`NmxWriteMessage.cs:11`). +pub const HANDLE_PROJECTION_OFFSET: usize = 3; + +/// Length of the handle projection (`NmxWriteMessage.cs:12`). +pub const HANDLE_PROJECTION_LENGTH: usize = 14; + +/// Byte offset of the wire-kind byte (`NmxWriteMessage.cs:13`). +pub const KIND_OFFSET: usize = 17; + +// Source-handle byte range of the projection: bytes 6..20 of the 20-byte +// encoded handle. Matches `referenceHandle.Encode().AsSpan(6, HandleProjectionLength)` +// in `WriteCommonPrefix` (`NmxWriteMessage.cs:211`). +const HANDLE_SOURCE_OFFSET: usize = 6; + +/// MX value kind. Mirrors `MxNativeCodec.MxValueKind` (`MxValueKind.cs:3-18`). +/// +/// This is the codec-internal enum; the crate-level `MxValueKind` in `lib.rs` +/// pre-existed before this module and uses `BoolArray` (without `ean`). To +/// avoid touching `lib.rs` per task spec, we keep a local enum that mirrors +/// the .NET names exactly. The discriminants intentionally match those in +/// the crate enum where they overlap. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub enum WriteValueKind { + Boolean, + Int32, + Float32, + Float64, + String, + DateTime, + BooleanArray, + Int32Array, + Float32Array, + Float64Array, + StringArray, + DateTimeArray, +} + +impl WriteValueKind { + /// Wire-kind byte returned by `GetWireKind` (`NmxWriteMessage.cs:94-110`). + /// `String` and `DateTime` both emit `0x05`; `StringArray` and + /// `DateTimeArray` both emit `0x45` (encoder collapse, see module doc). + pub const fn wire_kind(self) -> u8 { + match self { + Self::Boolean => 0x01, + Self::Int32 => 0x02, + Self::Float32 => 0x03, + Self::Float64 => 0x04, + Self::String | Self::DateTime => 0x05, + Self::BooleanArray => 0x41, + Self::Int32Array => 0x42, + Self::Float32Array => 0x43, + Self::Float64Array => 0x44, + Self::StringArray | Self::DateTimeArray => 0x45, + } + } + + /// Element width in bytes for fixed-element arrays. Variable-element + /// arrays (Strings, DateTimes) hard-code element width = 4 in the writer + /// (`NmxWriteMessage.cs:30, 52`); they return `Some(4)` here for caller + /// convenience but the variable-array encoder uses the constant directly. + /// Mirrors `GetArrayElementWidth` (`NmxWriteMessage.cs:378-388`). + pub const fn array_element_width(self) -> Option { + match self { + Self::BooleanArray => Some(2), + Self::Int32Array => Some(4), + Self::Float32Array => Some(4), + Self::Float64Array => Some(8), + Self::StringArray | Self::DateTimeArray => Some(4), + _ => None, + } + } +} + +/// MX scalar / array value model used by the encoder. Mirrors the runtime +/// switch in `EncodeValue` (`NmxWriteMessage.cs:253-271`). +/// +/// `DateTime` and `DateTimeArray` carry pre-formatted strings — the .NET +/// reference formats `DateTime` with `"M/d/yyyy h:mm:ss tt"` +/// (`NmxWriteMessage.cs:390-393`) before UTF-16 encoding. The Rust port +/// expects the caller to provide the formatted string directly; lifting +/// `DateTime` value formatting into Rust would require a calendar dependency +/// and is left to a higher layer. +#[derive(Debug, Clone, PartialEq)] +pub enum WriteValue { + Boolean(bool), + Int32(i32), + Float32(f32), + Float64(f64), + String(String), + /// Pre-formatted with `"M/d/yyyy h:mm:ss tt"` (CultureInfo.InvariantCulture). + DateTime(String), + BooleanArray(Vec), + Int32Array(Vec), + Float32Array(Vec), + Float64Array(Vec), + StringArray(Vec), + /// Pre-formatted strings (one per element). + DateTimeArray(Vec), +} + +impl WriteValue { + /// Returns the `WriteValueKind` matching this value's variant. + pub const fn kind(&self) -> WriteValueKind { + match self { + Self::Boolean(_) => WriteValueKind::Boolean, + Self::Int32(_) => WriteValueKind::Int32, + Self::Float32(_) => WriteValueKind::Float32, + Self::Float64(_) => WriteValueKind::Float64, + Self::String(_) => WriteValueKind::String, + Self::DateTime(_) => WriteValueKind::DateTime, + Self::BooleanArray(_) => WriteValueKind::BooleanArray, + Self::Int32Array(_) => WriteValueKind::Int32Array, + Self::Float32Array(_) => WriteValueKind::Float32Array, + Self::Float64Array(_) => WriteValueKind::Float64Array, + Self::StringArray(_) => WriteValueKind::StringArray, + Self::DateTimeArray(_) => WriteValueKind::DateTimeArray, + } + } + + fn array_count(&self) -> Option { + // `GetArrayCount` (`NmxWriteMessage.cs:364-376`); `checked((ushort)count)` + // at `NmxWriteMessage.cs:181` enforces u16 fit on the caller side. We + // surface that as a `None` for non-arrays and a saturating `u16::MAX` + // would be incorrect, so the encoder validates explicitly when used. + let len: usize = match self { + Self::BooleanArray(v) => v.len(), + Self::Int32Array(v) => v.len(), + Self::Float32Array(v) => v.len(), + Self::Float64Array(v) => v.len(), + Self::StringArray(v) => v.len(), + Self::DateTimeArray(v) => v.len(), + _ => return None, + }; + u16::try_from(len).ok() + } +} + +/// Encode a normal write body (`0x37`). Mirrors `NmxWriteMessage.Encode` +/// (`NmxWriteMessage.cs:15-34`). +/// +/// # Errors +/// +/// Returns [`CodecError::Decode`] (used here for "encode-time" failures with +/// a position-independent reason) if an array's element count exceeds +/// `u16::MAX` — matching the `checked((ushort)count)` cast at +/// `NmxWriteMessage.cs:181, 200`. +pub fn encode( + handle: &MxReferenceHandle, + value: &WriteValue, + write_index: i32, + client_token: u32, +) -> Result, CodecError> { + encode_inner(handle, value, write_index, client_token, None) +} + +/// Encode a `Write2` (timestamped) body. Mirrors `NmxWriteMessage.EncodeTimestamped` +/// (`NmxWriteMessage.cs:36-56`). +/// +/// `timestamp_filetime` is a Windows FILETIME tick count (100-ns intervals +/// since 1601-01-01 UTC), matching `DateTime.ToFileTime()` at +/// `NmxWriteMessage.cs:248`. +/// +/// # Errors +/// +/// See [`encode`]. +pub fn encode_timestamped( + handle: &MxReferenceHandle, + value: &WriteValue, + timestamp_filetime: i64, + write_index: i32, + client_token: u32, +) -> Result, CodecError> { + encode_inner( + handle, + value, + write_index, + client_token, + Some(timestamp_filetime), + ) +} + +fn encode_inner( + handle: &MxReferenceHandle, + value: &WriteValue, + write_index: i32, + client_token: u32, + timestamp: Option, +) -> Result, CodecError> { + let kind = value.kind(); + match value { + WriteValue::Boolean(b) => Ok(encode_boolean( + handle, + *b, + write_index, + client_token, + timestamp, + )), + WriteValue::Int32(_) | WriteValue::Float32(_) | WriteValue::Float64(_) => { + let value_bytes = encode_scalar_value(value); + Ok(encode_fixed( + handle, + kind, + &value_bytes, + write_index, + client_token, + timestamp, + )) + } + WriteValue::String(s) => { + let value_bytes = encode_utf16_string(s); + Ok(encode_variable( + handle, + kind, + &value_bytes, + write_index, + client_token, + timestamp, + )) + } + WriteValue::DateTime(s) => { + // Caller pre-formats DateTime (see `WriteValue::DateTime` doc). + let value_bytes = encode_utf16_string(s); + Ok(encode_variable( + handle, + kind, + &value_bytes, + write_index, + client_token, + timestamp, + )) + } + WriteValue::BooleanArray(arr) => { + let count = value.array_count().ok_or_else(array_too_large)?; + let element_width = kind.array_element_width().unwrap_or(2); + let value_bytes = encode_boolean_array(arr); + Ok(encode_array( + handle, + kind, + &value_bytes, + count, + element_width, + write_index, + client_token, + timestamp, + )) + } + WriteValue::Int32Array(arr) => { + let count = value.array_count().ok_or_else(array_too_large)?; + let element_width = kind.array_element_width().unwrap_or(4); + let value_bytes = encode_i32_array(arr); + Ok(encode_array( + handle, + kind, + &value_bytes, + count, + element_width, + write_index, + client_token, + timestamp, + )) + } + WriteValue::Float32Array(arr) => { + let count = value.array_count().ok_or_else(array_too_large)?; + let element_width = kind.array_element_width().unwrap_or(4); + let value_bytes = encode_f32_array(arr); + Ok(encode_array( + handle, + kind, + &value_bytes, + count, + element_width, + write_index, + client_token, + timestamp, + )) + } + WriteValue::Float64Array(arr) => { + let count = value.array_count().ok_or_else(array_too_large)?; + let element_width = kind.array_element_width().unwrap_or(8); + let value_bytes = encode_f64_array(arr); + Ok(encode_array( + handle, + kind, + &value_bytes, + count, + element_width, + write_index, + client_token, + timestamp, + )) + } + WriteValue::StringArray(arr) => { + let count = value.array_count().ok_or_else(array_too_large)?; + // Variable arrays hard-code element_width = 4 (`NmxWriteMessage.cs:30, 52`). + let value_bytes = encode_variable_array(arr.iter().map(String::as_str)); + Ok(encode_array( + handle, + kind, + &value_bytes, + count, + 4, + write_index, + client_token, + timestamp, + )) + } + WriteValue::DateTimeArray(arr) => { + let count = value.array_count().ok_or_else(array_too_large)?; + let value_bytes = encode_variable_array(arr.iter().map(String::as_str)); + Ok(encode_array( + handle, + kind, + &value_bytes, + count, + 4, + write_index, + client_token, + timestamp, + )) + } + } +} + +fn array_too_large() -> CodecError { + CodecError::Decode { + offset: 22, + reason: "array element count exceeds u16::MAX", + buffer_len: 0, + } +} + +// ---- Body builders -------------------------------------------------------- + +/// Boolean write body. The normal form uses the 11-byte Boolean suffix +/// (`NmxWriteMessage.cs:121-128`); the timestamped form uses a single-byte +/// payload with the 14-byte timestamped suffix (`NmxWriteMessage.cs:130-137`). +fn encode_boolean( + handle: &MxReferenceHandle, + value: bool, + write_index: i32, + client_token: u32, + timestamp: Option, +) -> Vec { + if let Some(filetime) = timestamp { + // Timestamped: 1-byte payload + 14-byte timestamped suffix + 4-byte index. + // Total = 18 + 1 + 14 + 4 = 37. Same total as normal Boolean. + let mut body = vec![0u8; KIND_OFFSET + 1 + 1 + 14 + 4]; + write_common_prefix(&mut body, handle, WriteValueKind::Boolean); + body[KIND_OFFSET + 1] = if value { 0xff } else { 0x00 }; + write_timestamped_suffix( + &mut body[KIND_OFFSET + 2..], + filetime, + write_index, + client_token, + ); + body + } else { + // Normal: 4-byte literal payload + 11-byte Boolean suffix + 4-byte index. + // Total = 18 + 4 + 11 + 4 = 37 bytes (`NmxWriteMessage.cs:123`). + let value_bytes = encode_boolean_value(value); + let mut body = vec![0u8; KIND_OFFSET + 1 + value_bytes.len() + 11 + 4]; + write_common_prefix(&mut body, handle, WriteValueKind::Boolean); + body[KIND_OFFSET + 1..KIND_OFFSET + 1 + value_bytes.len()].copy_from_slice(&value_bytes); + write_boolean_suffix( + &mut body[KIND_OFFSET + 1 + value_bytes.len()..], + write_index, + client_token, + ); + body + } +} + +/// Fixed-size scalar (Int32, Float32, Float64). Mirrors `CreateFixed` / +/// `CreateFixedTimestamped` (`NmxWriteMessage.cs:112-119, 139-146`). +fn encode_fixed( + handle: &MxReferenceHandle, + kind: WriteValueKind, + value_bytes: &[u8], + write_index: i32, + client_token: u32, + timestamp: Option, +) -> Vec { + let mut body = vec![0u8; KIND_OFFSET + 1 + value_bytes.len() + 14 + 4]; + write_common_prefix(&mut body, handle, kind); + body[KIND_OFFSET + 1..KIND_OFFSET + 1 + value_bytes.len()].copy_from_slice(value_bytes); + let suffix_start = KIND_OFFSET + 1 + value_bytes.len(); + match timestamp { + Some(ft) => { + write_timestamped_suffix(&mut body[suffix_start..], ft, write_index, client_token) + } + None => write_normal_suffix(&mut body[suffix_start..], write_index, client_token), + } + body +} + +/// Variable-length payload (String, DateTime). Mirrors `CreateVariable` / +/// `CreateVariableTimestamped` (`NmxWriteMessage.cs:148-168`). Total length +/// is `44 + utf16_bytes_len`. +fn encode_variable( + handle: &MxReferenceHandle, + kind: WriteValueKind, + value_bytes: &[u8], + write_index: i32, + client_token: u32, + timestamp: Option, +) -> Vec { + // body alloc = 18 + 4 + 4 + N + 14 + 4 = 44 + N. + let mut body = vec![0u8; KIND_OFFSET + 1 + 4 + 4 + value_bytes.len() + 14 + 4]; + write_common_prefix(&mut body, handle, kind); + // body[18..22] = outer_length = N + 4 (`NmxWriteMessage.cs:152, 163`) + let outer_len = (value_bytes.len() as i32).wrapping_add(4); + write_i32_le(&mut body, 18, outer_len); + // body[22..26] = inner_length = N (`NmxWriteMessage.cs:153, 164`) + write_i32_le(&mut body, 22, value_bytes.len() as i32); + // body[26..26+N] = payload (`NmxWriteMessage.cs:154, 165`) + body[26..26 + value_bytes.len()].copy_from_slice(value_bytes); + let suffix_start = 26 + value_bytes.len(); + match timestamp { + Some(ft) => { + write_timestamped_suffix(&mut body[suffix_start..], ft, write_index, client_token) + } + None => write_normal_suffix(&mut body[suffix_start..], write_index, client_token), + } + body +} + +/// Array body. Mirrors `CreateArray` / `CreateArrayTimestamped` +/// (`NmxWriteMessage.cs:170-205`). +#[allow(clippy::too_many_arguments)] +fn encode_array( + handle: &MxReferenceHandle, + kind: WriteValueKind, + value_bytes: &[u8], + count: u16, + element_width: u16, + write_index: i32, + client_token: u32, + timestamp: Option, +) -> Vec { + // body alloc = 18 + 10 + N + 14 + 4 (`NmxWriteMessage.cs:179, 198`). + let mut body = vec![0u8; KIND_OFFSET + 1 + 10 + value_bytes.len() + 14 + 4]; + write_common_prefix(&mut body, handle, kind); + // body[22..24] = count u16 LE (`NmxWriteMessage.cs:181, 200`). + write_u16_le(&mut body, 22, count); + // body[24..26] = element_width u16 LE (`NmxWriteMessage.cs:182, 201`). + write_u16_le(&mut body, 24, element_width); + // body[18..22] and body[26..28] are zero-initialised by vec! and not + // written by the .NET reference either — they remain zero. + body[28..28 + value_bytes.len()].copy_from_slice(value_bytes); + let suffix_start = 28 + value_bytes.len(); + match timestamp { + Some(ft) => { + write_timestamped_suffix(&mut body[suffix_start..], ft, write_index, client_token) + } + None => write_normal_suffix(&mut body[suffix_start..], write_index, client_token), + } + body +} + +// ---- Prefix and suffix writers -------------------------------------------- + +/// Write the `cmd + version + handle_projection + wire_kind` prefix. +/// Mirrors `WriteCommonPrefix` (`NmxWriteMessage.cs:207-213`). +fn write_common_prefix(body: &mut [u8], handle: &MxReferenceHandle, kind: WriteValueKind) { + body[0] = COMMAND; + write_u16_le(body, 1, VERSION); + let encoded = handle.encode(); + body[HANDLE_PROJECTION_OFFSET..HANDLE_PROJECTION_OFFSET + HANDLE_PROJECTION_LENGTH] + .copy_from_slice( + &encoded[HANDLE_SOURCE_OFFSET..HANDLE_SOURCE_OFFSET + HANDLE_PROJECTION_LENGTH], + ); + body[KIND_OFFSET] = kind.wire_kind(); +} + +/// Normal (non-Boolean) suffix (`NmxWriteMessage.cs:215-226`). The `i16 = -1` +/// at offset 0 is the leading marker that flips to `0` in the timestamped form. +fn write_normal_suffix(suffix: &mut [u8], write_index: i32, client_token: u32) { + debug_assert_eq!(suffix.len(), 18, "normal suffix must be 14 + 4 = 18 bytes"); + write_i16_le(suffix, 0, -1); + // bytes 2..10 = 8-byte filler (zeroed by caller's vec! alloc). + write_u32_le(suffix, 10, client_token); + write_i32_le(suffix, 14, write_index); +} + +/// Boolean-only 11-byte suffix (`NmxWriteMessage.cs:228-238`). Differs from the +/// normal suffix: 7 zero bytes (no leading `-1` marker), then clientToken, +/// then writeIndex. +fn write_boolean_suffix(suffix: &mut [u8], write_index: i32, client_token: u32) { + debug_assert_eq!(suffix.len(), 15, "boolean suffix must be 11 + 4 = 15 bytes"); + // bytes 0..7 = 7 zero bytes (already zero from vec! alloc). + write_u32_le(suffix, 7, client_token); + write_i32_le(suffix, 11, write_index); +} + +/// Timestamped (`Write2`) suffix (`NmxWriteMessage.cs:240-251`). The leading +/// `i16` is `0` (was `-1` in the normal form) and the 8-byte filler at +/// offsets 2..10 is replaced by the FILETIME tick count. +fn write_timestamped_suffix(suffix: &mut [u8], filetime: i64, write_index: i32, client_token: u32) { + debug_assert_eq!( + suffix.len(), + 18, + "timestamped suffix must be 14 + 4 = 18 bytes" + ); + write_i16_le(suffix, 0, 0); + write_i64_le(suffix, 2, filetime); + write_u32_le(suffix, 10, client_token); + write_i32_le(suffix, 14, write_index); +} + +// ---- Value encoders ------------------------------------------------------- + +/// Boolean payload bytes — LITERALLY `[0xff,0xff,0xff,0x00]` (true) or +/// `[0x00,0xff,0xff,0x00]` (false). Bytes 1 and 2 are `0xFF` filler, NOT +/// reserved/zero (`NmxWriteMessage.cs:257`). +const fn encode_boolean_value(value: bool) -> [u8; 4] { + if value { + [0xff, 0xff, 0xff, 0x00] + } else { + [0x00, 0xff, 0xff, 0x00] + } +} + +fn encode_scalar_value(value: &WriteValue) -> Vec { + match value { + WriteValue::Int32(v) => v.to_le_bytes().to_vec(), + WriteValue::Float32(v) => f32::to_bits(*v).to_le_bytes().to_vec(), + WriteValue::Float64(v) => f64::to_bits(*v).to_le_bytes().to_vec(), + // Booleans handled by encode_boolean directly; strings/dates are variable. + _ => Vec::new(), + } +} + +/// UTF-16LE encoding with a trailing 2-byte zero terminator +/// (`NmxWriteMessage.cs:294-300`). +fn encode_utf16_string(value: &str) -> Vec { + let utf16: Vec = value.encode_utf16().collect(); + let mut bytes = Vec::with_capacity(utf16.len() * 2 + 2); + for unit in &utf16 { + bytes.extend_from_slice(&unit.to_le_bytes()); + } + // Trailing 2-byte zero terminator (`textBytes.Length + 2` alloc; .NET + // copies only `textBytes` in, leaving the last 2 bytes zero). + bytes.push(0x00); + bytes.push(0x00); + bytes +} + +/// Boolean array payload — each element is an `i16` (`-1` for true, `0` for +/// false) (`NmxWriteMessage.cs:302-311`). +fn encode_boolean_array(values: &[bool]) -> Vec { + let mut bytes = Vec::with_capacity(values.len() * 2); + for v in values { + let value: i16 = if *v { -1 } else { 0 }; + bytes.extend_from_slice(&value.to_le_bytes()); + } + bytes +} + +fn encode_i32_array(values: &[i32]) -> Vec { + let mut bytes = Vec::with_capacity(values.len() * 4); + for v in values { + bytes.extend_from_slice(&v.to_le_bytes()); + } + bytes +} + +fn encode_f32_array(values: &[f32]) -> Vec { + let mut bytes = Vec::with_capacity(values.len() * 4); + for v in values { + bytes.extend_from_slice(&f32::to_bits(*v).to_le_bytes()); + } + bytes +} + +fn encode_f64_array(values: &[f64]) -> Vec { + let mut bytes = Vec::with_capacity(values.len() * 8); + for v in values { + bytes.extend_from_slice(&f64::to_bits(*v).to_le_bytes()); + } + bytes +} + +/// Variable array payload — each element is a 13-byte header followed by the +/// UTF-16LE bytes (`NmxWriteMessage.cs:346-362`). +/// +/// ```text +/// 0..4 i32 LE outer_outer_length = 1 + 4 + 4 + utf16_len +/// 4 u8 = 0x05 (string wire kind marker, internal to the array) +/// 5..9 i32 LE outer_length = utf16_len + 4 +/// 9..13 i32 LE inner_length = utf16_len +/// 13.. UTF-16LE bytes (with 2-byte NUL terminator) +/// ``` +fn encode_variable_array<'a, I>(values: I) -> Vec +where + I: IntoIterator, +{ + let mut bytes = Vec::new(); + for value in values { + let text_bytes = encode_utf16_string(value); + let mut header = [0u8; 13]; + // header[0..4] = 1 + 4 + 4 + textBytes.Length (`NmxWriteMessage.cs:353`). + write_i32_le( + &mut header, + 0, + 1i32.wrapping_add(4) + .wrapping_add(4) + .wrapping_add(text_bytes.len() as i32), + ); + // header[4] = 0x05 (`NmxWriteMessage.cs:354`). + header[4] = 0x05; + // header[5..9] = textBytes.Length + 4 (`NmxWriteMessage.cs:355`). + write_i32_le(&mut header, 5, (text_bytes.len() as i32).wrapping_add(4)); + // header[9..13] = textBytes.Length (`NmxWriteMessage.cs:356`). + write_i32_le(&mut header, 9, text_bytes.len() as i32); + bytes.extend_from_slice(&header); + bytes.extend_from_slice(&text_bytes); + } + bytes +} + +// ---- LE primitive helpers ------------------------------------------------- + +#[inline] +fn write_u16_le(bytes: &mut [u8], offset: usize, value: u16) { + let le = value.to_le_bytes(); + bytes[offset..offset + 2].copy_from_slice(&le); +} + +#[inline] +fn write_i16_le(bytes: &mut [u8], offset: usize, value: i16) { + let le = value.to_le_bytes(); + bytes[offset..offset + 2].copy_from_slice(&le); +} + +#[inline] +fn write_u32_le(bytes: &mut [u8], offset: usize, value: u32) { + let le = value.to_le_bytes(); + bytes[offset..offset + 4].copy_from_slice(&le); +} + +#[inline] +fn write_i32_le(bytes: &mut [u8], offset: usize, value: i32) { + let le = value.to_le_bytes(); + bytes[offset..offset + 4].copy_from_slice(&le); +} + +#[inline] +fn write_i64_le(bytes: &mut [u8], offset: usize, value: i64) { + let le = value.to_le_bytes(); + bytes[offset..offset + 8].copy_from_slice(&le); +} + +#[inline] +fn read_u16_le(bytes: &[u8], offset: usize) -> u16 { + u16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_i16_le(bytes: &[u8], offset: usize) -> i16 { + i16::from_le_bytes([bytes[offset], bytes[offset + 1]]) +} + +#[inline] +fn read_u32_le(bytes: &[u8], offset: usize) -> u32 { + u32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn read_i32_le(bytes: &[u8], offset: usize) -> i32 { + i32::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + ]) +} + +#[inline] +fn read_i64_le(bytes: &[u8], offset: usize) -> i64 { + i64::from_le_bytes([ + bytes[offset], + bytes[offset + 1], + bytes[offset + 2], + bytes[offset + 3], + bytes[offset + 4], + bytes[offset + 5], + bytes[offset + 6], + bytes[offset + 7], + ]) +} + +// ---- Decoder -------------------------------------------------------------- + +/// Result of decoding a normal-write or `Write2` body. +#[derive(Debug, Clone, PartialEq)] +pub struct DecodedWrite { + pub handle_projection: [u8; HANDLE_PROJECTION_LENGTH], + pub wire_kind: u8, + pub value: WriteValue, + pub write_index: i32, + pub client_token: u32, + /// `Some(filetime)` if the body used the timestamped suffix (leading + /// `i16 = 0` rather than `-1`). `None` for the normal suffix. + pub timestamp_filetime: Option, +} + +/// Decode a normal-write (`0x37`) body produced by [`encode`] or +/// [`encode_timestamped`]. The `timestamp_filetime` field of the returned +/// [`DecodedWrite`] indicates which suffix variant was on the wire. +/// +/// This is a round-trip helper for the codec's own tests; the wire decoder +/// for inbound subscription/callback bodies is in a separate module +/// (`NmxSubscriptionMessage`). Encode-time and decode-time array element +/// widths differ (see module doc) — this decoder follows the **encoder** +/// layout, not the subscription decoder layout. +/// +/// # Errors +/// +/// - [`CodecError::ShortRead`] if `body` is too small. +/// - [`CodecError::UnexpectedOpcode`] if `body[0] != 0x37`. +/// - [`CodecError::UnsupportedVersion`] if the version field != 1. +/// - [`CodecError::Decode`] for unknown wire-kind bytes or malformed +/// variable-length payloads. +pub fn decode(body: &[u8]) -> Result { + if body.len() < KIND_OFFSET + 1 { + return Err(CodecError::ShortRead { + expected: KIND_OFFSET + 1, + actual: body.len(), + }); + } + if body[0] != COMMAND { + return Err(CodecError::UnexpectedOpcode(body[0])); + } + let version = read_u16_le(body, 1); + if version != VERSION { + return Err(CodecError::UnsupportedVersion { + expected: VERSION, + actual: version, + }); + } + let mut handle_projection = [0u8; HANDLE_PROJECTION_LENGTH]; + handle_projection.copy_from_slice( + &body[HANDLE_PROJECTION_OFFSET..HANDLE_PROJECTION_OFFSET + HANDLE_PROJECTION_LENGTH], + ); + let wire_kind = body[KIND_OFFSET]; + + // The wire kind drives both payload layout and which suffix shape is + // expected. Booleans use a 4-byte payload + 11-byte suffix in the normal + // form; everything else uses the 14-byte suffix. The timestamped form + // is detected by reading the leading suffix `i16` and comparing to + // `-1` (normal) vs `0` (timestamped) — see module doc. + match wire_kind { + 0x01 => decode_boolean(body, handle_projection, wire_kind), + 0x02 => decode_fixed::<4>(body, handle_projection, wire_kind, |b| { + WriteValue::Int32(read_i32_le(b, 0)) + }), + 0x03 => decode_fixed::<4>(body, handle_projection, wire_kind, |b| { + WriteValue::Float32(f32::from_bits(read_u32_le(b, 0))) + }), + 0x04 => decode_fixed::<8>(body, handle_projection, wire_kind, |b| { + let lo = read_u32_le(b, 0) as u64; + let hi = read_u32_le(b, 4) as u64; + WriteValue::Float64(f64::from_bits(lo | (hi << 32))) + }), + 0x05 => decode_variable(body, handle_projection, wire_kind), + 0x41..=0x45 => decode_array(body, handle_projection, wire_kind), + _ => Err(CodecError::Decode { + offset: KIND_OFFSET, + reason: "unknown write wire-kind", + buffer_len: body.len(), + }), + } +} + +fn decode_boolean( + body: &[u8], + handle_projection: [u8; HANDLE_PROJECTION_LENGTH], + wire_kind: u8, +) -> Result { + // Two possible layouts: + // normal (37): 4-byte payload + 11-byte suffix + 4-byte index + // timestamped (37): 1-byte payload + 14-byte suffix + 4-byte index + // We disambiguate by total length. Both are 37 bytes total — but one has + // payload 4 + suffix 15, the other has payload 1 + suffix 18. We can + // detect the timestamped form by checking the suffix's leading i16: in + // the normal Boolean form, suffix offset 0 is body[22] which is the 7-byte + // zero region (so byte 22 == 0). In the timestamped form, payload is 1 + // byte at body[18], and the suffix's leading i16 sits at body[19..21] = 0 + // — which is also 0. So we instead check the *third* payload byte: in + // the normal form, body[20] is part of the literal `0xff` payload byte; + // in the timestamped form, body[20] is part of the FILETIME (very rarely + // 0xff for plausible timestamps, but ambiguous in general). To avoid + // ambiguity we require the caller to pick a path; here we default to + // the **normal** layout and only switch to timestamped if the literal + // pattern doesn't match. + if body.len() != KIND_OFFSET + 1 + 4 + 11 + 4 { + return Err(CodecError::ShortRead { + expected: KIND_OFFSET + 1 + 4 + 11 + 4, + actual: body.len(), + }); + } + let payload = &body[KIND_OFFSET + 1..KIND_OFFSET + 5]; + // Normal layout matches one of the two literal patterns. + let normal_true = payload == [0xff, 0xff, 0xff, 0x00]; + let normal_false = payload == [0x00, 0xff, 0xff, 0x00]; + if normal_true || normal_false { + let suffix = &body[KIND_OFFSET + 5..]; + // suffix is 15 bytes: 7 zero + clientToken u32 + writeIndex i32. + let client_token = read_u32_le(suffix, 7); + let write_index = read_i32_le(suffix, 11); + Ok(DecodedWrite { + handle_projection, + wire_kind, + value: WriteValue::Boolean(normal_true), + write_index, + client_token, + timestamp_filetime: None, + }) + } else { + // Timestamped: 1-byte payload at body[18], suffix at body[19..37]. + let value = body[KIND_OFFSET + 1] != 0; + let suffix = &body[KIND_OFFSET + 2..]; + // suffix is 18 bytes: leading i16 = 0, FILETIME, clientToken, writeIndex. + let leading = read_i16_le(suffix, 0); + if leading != 0 { + return Err(CodecError::Decode { + offset: KIND_OFFSET + 2, + reason: "boolean: not normal pattern and not timestamped (leading i16 != 0)", + buffer_len: body.len(), + }); + } + let filetime = read_i64_le(suffix, 2); + let client_token = read_u32_le(suffix, 10); + let write_index = read_i32_le(suffix, 14); + Ok(DecodedWrite { + handle_projection, + wire_kind, + value: WriteValue::Boolean(value), + write_index, + client_token, + timestamp_filetime: Some(filetime), + }) + } +} + +fn decode_fixed( + body: &[u8], + handle_projection: [u8; HANDLE_PROJECTION_LENGTH], + wire_kind: u8, + decode_value: impl Fn(&[u8]) -> WriteValue, +) -> Result { + let expected = KIND_OFFSET + 1 + N + 14 + 4; + if body.len() != expected { + return Err(CodecError::ShortRead { + expected, + actual: body.len(), + }); + } + let payload = &body[KIND_OFFSET + 1..KIND_OFFSET + 1 + N]; + let value = decode_value(payload); + let suffix = &body[KIND_OFFSET + 1 + N..]; + decode_normal_or_timestamped_suffix(suffix, body.len()).map( + |(write_index, client_token, ft)| DecodedWrite { + handle_projection, + wire_kind, + value, + write_index, + client_token, + timestamp_filetime: ft, + }, + ) +} + +fn decode_variable( + body: &[u8], + handle_projection: [u8; HANDLE_PROJECTION_LENGTH], + wire_kind: u8, +) -> Result { + if body.len() < 26 + 14 + 4 { + return Err(CodecError::ShortRead { + expected: 26 + 14 + 4, + actual: body.len(), + }); + } + let inner_len = read_i32_le(body, 22); + if inner_len < 0 { + return Err(CodecError::Decode { + offset: 22, + reason: "variable: negative inner_length", + buffer_len: body.len(), + }); + } + let inner_len = inner_len as usize; + let expected = 26 + inner_len + 14 + 4; + if body.len() != expected { + return Err(CodecError::ShortRead { + expected, + actual: body.len(), + }); + } + // Strip trailing 2-byte zero terminator if present. + let payload = &body[26..26 + inner_len]; + let utf16_units: Vec = payload + .chunks_exact(2) + .map(|c| u16::from_le_bytes([c[0], c[1]])) + .collect(); + let trimmed: &[u16] = if utf16_units.last() == Some(&0) { + &utf16_units[..utf16_units.len() - 1] + } else { + &utf16_units + }; + let s = String::from_utf16(trimmed).map_err(|_| CodecError::Decode { + offset: 26, + reason: "variable: invalid UTF-16", + buffer_len: body.len(), + })?; + // The encoder collapses String/DateTime to wire_kind 0x05; on decode we + // can't distinguish them, so we always return WriteValue::String. + let value = WriteValue::String(s); + let suffix = &body[26 + inner_len..]; + decode_normal_or_timestamped_suffix(suffix, body.len()).map( + |(write_index, client_token, ft)| DecodedWrite { + handle_projection, + wire_kind, + value, + write_index, + client_token, + timestamp_filetime: ft, + }, + ) +} + +fn decode_array( + body: &[u8], + handle_projection: [u8; HANDLE_PROJECTION_LENGTH], + wire_kind: u8, +) -> Result { + if body.len() < 28 + 14 + 4 { + return Err(CodecError::ShortRead { + expected: 28 + 14 + 4, + actual: body.len(), + }); + } + let count = read_u16_le(body, 22) as usize; + let element_width = read_u16_le(body, 24) as usize; + let payload_len = match wire_kind { + 0x41 => count * 2, + 0x42 | 0x43 => count * 4, + 0x44 => count * 8, + 0x45 => { + // Variable-element: must scan element-by-element to compute the + // total length, since each element carries its own header. + let mut cursor = 28usize; + for _ in 0..count { + if cursor + 13 > body.len() { + return Err(CodecError::ShortRead { + expected: cursor + 13, + actual: body.len(), + }); + } + let inner_len = read_i32_le(body, cursor + 9); + if inner_len < 0 { + return Err(CodecError::Decode { + offset: cursor + 9, + reason: "variable array: negative inner_length", + buffer_len: body.len(), + }); + } + cursor += 13 + inner_len as usize; + } + cursor - 28 + } + // Caller already filtered to 0x41..=0x45 in the dispatch table; this + // arm is reachable only on internal bug. Surface as a typed decode + // error rather than panicking (workspace denies `unreachable!`). + _ => { + return Err(CodecError::Decode { + offset: KIND_OFFSET, + reason: "decode_array dispatched on non-array wire_kind", + buffer_len: body.len(), + }); + } + }; + let _ = element_width; // captured for round-trip but not validated here. + let expected = 28 + payload_len + 14 + 4; + if body.len() != expected { + return Err(CodecError::ShortRead { + expected, + actual: body.len(), + }); + } + let payload = &body[28..28 + payload_len]; + let value = match wire_kind { + 0x41 => { + let mut v = Vec::with_capacity(count); + for i in 0..count { + v.push(read_i16_le(payload, i * 2) != 0); + } + WriteValue::BooleanArray(v) + } + 0x42 => { + let mut v = Vec::with_capacity(count); + for i in 0..count { + v.push(read_i32_le(payload, i * 4)); + } + WriteValue::Int32Array(v) + } + 0x43 => { + let mut v = Vec::with_capacity(count); + for i in 0..count { + v.push(f32::from_bits(read_u32_le(payload, i * 4))); + } + WriteValue::Float32Array(v) + } + 0x44 => { + let mut v = Vec::with_capacity(count); + for i in 0..count { + let lo = read_u32_le(payload, i * 8) as u64; + let hi = read_u32_le(payload, i * 8 + 4) as u64; + v.push(f64::from_bits(lo | (hi << 32))); + } + WriteValue::Float64Array(v) + } + 0x45 => { + let mut strings = Vec::with_capacity(count); + let mut cursor = 0usize; + for _ in 0..count { + let inner_len = read_i32_le(payload, cursor + 9) as usize; + let text_start = cursor + 13; + let text_bytes = &payload[text_start..text_start + inner_len]; + let utf16: Vec = text_bytes + .chunks_exact(2) + .map(|c| u16::from_le_bytes([c[0], c[1]])) + .collect(); + let trimmed: &[u16] = if utf16.last() == Some(&0) { + &utf16[..utf16.len() - 1] + } else { + &utf16 + }; + let s = String::from_utf16(trimmed).map_err(|_| CodecError::Decode { + offset: 28 + text_start, + reason: "variable array: invalid UTF-16", + buffer_len: body.len(), + })?; + strings.push(s); + cursor += 13 + inner_len; + } + WriteValue::StringArray(strings) + } + // Caller already filtered to 0x41..=0x45 in the dispatch table. + _ => { + return Err(CodecError::Decode { + offset: KIND_OFFSET, + reason: "decode_array_value dispatched on non-array wire_kind", + buffer_len: body.len(), + }); + } + }; + let suffix = &body[28 + payload_len..]; + decode_normal_or_timestamped_suffix(suffix, body.len()).map( + |(write_index, client_token, ft)| DecodedWrite { + handle_projection, + wire_kind, + value, + write_index, + client_token, + timestamp_filetime: ft, + }, + ) +} + +/// Returns `(write_index, client_token, timestamp_filetime)`. The leading +/// `i16` discriminates: `-1` → normal, `0` → timestamped. +fn decode_normal_or_timestamped_suffix( + suffix: &[u8], + body_len: usize, +) -> Result<(i32, u32, Option), CodecError> { + if suffix.len() != 18 { + return Err(CodecError::ShortRead { + expected: 18, + actual: suffix.len(), + }); + } + let leading = read_i16_le(suffix, 0); + let client_token = read_u32_le(suffix, 10); + let write_index = read_i32_le(suffix, 14); + match leading { + -1 => Ok((write_index, client_token, None)), + 0 => { + let ft = read_i64_le(suffix, 2); + Ok((write_index, client_token, Some(ft))) + } + _ => Err(CodecError::Decode { + offset: body_len - 18, + reason: "suffix: leading i16 not -1 (normal) or 0 (timestamped)", + buffer_len: body_len, + }), + } +} + +// =========================================================================== +// Tests +// =========================================================================== + +#[cfg(test)] +#[allow(clippy::unwrap_used, clippy::expect_used, clippy::indexing_slicing)] +mod tests { + use super::*; + + fn sample_handle() -> MxReferenceHandle { + MxReferenceHandle::from_names( + 1, // galaxy_id + 42, // platform_id + 17, // engine_id + 300, // object_id + "TestChildObject", // object_tag_name + -1, // primitive_id + 7, // attribute_id + 0, // property_id + "TestInt", // attribute_name + false, // is_array + ) + .unwrap() + } + + fn projection_of(handle: &MxReferenceHandle) -> [u8; HANDLE_PROJECTION_LENGTH] { + let encoded = handle.encode(); + let mut out = [0u8; HANDLE_PROJECTION_LENGTH]; + out.copy_from_slice( + &encoded[HANDLE_SOURCE_OFFSET..HANDLE_SOURCE_OFFSET + HANDLE_PROJECTION_LENGTH], + ); + out + } + + // ---- Wire-kind / opcode constants ------------------------------------ + + #[test] + fn opcode_and_offsets_match_dotnet() { + // `NmxWriteMessage.cs:9-13`. + assert_eq!(COMMAND, 0x37); + assert_eq!(VERSION, 1); + assert_eq!(HANDLE_PROJECTION_OFFSET, 3); + assert_eq!(HANDLE_PROJECTION_LENGTH, 14); + assert_eq!(KIND_OFFSET, 17); + } + + #[test] + fn wire_kinds_match_dotnet() { + // `NmxWriteMessage.cs:94-110`. + assert_eq!(WriteValueKind::Boolean.wire_kind(), 0x01); + assert_eq!(WriteValueKind::Int32.wire_kind(), 0x02); + assert_eq!(WriteValueKind::Float32.wire_kind(), 0x03); + assert_eq!(WriteValueKind::Float64.wire_kind(), 0x04); + assert_eq!(WriteValueKind::String.wire_kind(), 0x05); + // String + DateTime collapse to 0x05. + assert_eq!(WriteValueKind::DateTime.wire_kind(), 0x05); + assert_eq!(WriteValueKind::BooleanArray.wire_kind(), 0x41); + assert_eq!(WriteValueKind::Int32Array.wire_kind(), 0x42); + assert_eq!(WriteValueKind::Float32Array.wire_kind(), 0x43); + assert_eq!(WriteValueKind::Float64Array.wire_kind(), 0x44); + // StringArray + DateTimeArray collapse to 0x45 on the encoder side. + assert_eq!(WriteValueKind::StringArray.wire_kind(), 0x45); + assert_eq!(WriteValueKind::DateTimeArray.wire_kind(), 0x45); + } + + // ---- Boolean ---------------------------------------------------------- + + #[test] + fn boolean_literal_byte_pattern() { + // `NmxWriteMessage.cs:257`. true -> [ff,ff,ff,00], false -> [00,ff,ff,00]. + let h = sample_handle(); + let body_true = encode(&h, &WriteValue::Boolean(true), 1, 0).unwrap(); + let body_false = encode(&h, &WriteValue::Boolean(false), 1, 0).unwrap(); + // Payload sits at body[18..22]. + assert_eq!(&body_true[18..22], &[0xff, 0xff, 0xff, 0x00]); + assert_eq!(&body_false[18..22], &[0x00, 0xff, 0xff, 0x00]); + } + + #[test] + fn boolean_total_is_37_bytes() { + // `NmxWriteMessage.cs:123` — KindOffset(17) + 1 + 4 + 11 + 4 = 37. + let h = sample_handle(); + let body = encode(&h, &WriteValue::Boolean(true), 1, 0).unwrap(); + assert_eq!(body.len(), 37); + } + + #[test] + fn boolean_round_trip() { + let h = sample_handle(); + for v in [true, false] { + let body = encode(&h, &WriteValue::Boolean(v), 7, 0xCAFE_BABE).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Boolean(v)); + assert_eq!(decoded.write_index, 7); + assert_eq!(decoded.client_token, 0xCAFE_BABE); + assert_eq!(decoded.wire_kind, 0x01); + assert_eq!(decoded.handle_projection, projection_of(&h)); + assert_eq!(decoded.timestamp_filetime, None); + } + } + + #[test] + fn boolean_suffix_is_11_plus_4() { + // Boolean suffix layout: 7 zero + u32 clientToken + i32 writeIndex. + // `NmxWriteMessage.cs:228-238`. + let h = sample_handle(); + let body = encode(&h, &WriteValue::Boolean(true), 0x1234_5678, 0xDEAD_BEEF).unwrap(); + // Payload [18..22], suffix [22..33] (11 bytes), index [33..37]. + assert_eq!(&body[22..29], &[0; 7]); + assert_eq!(&body[29..33], &0xDEAD_BEEFu32.to_le_bytes()); + assert_eq!(&body[33..37], &0x1234_5678i32.to_le_bytes()); + } + + // ---- Fixed scalars --------------------------------------------------- + + #[test] + fn int32_round_trip() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Int32(123), 1, 0x1001).unwrap(); + // Total: 17 + 1 + 4 + 14 + 4 = 40. + assert_eq!(body.len(), 40); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Int32(123)); + assert_eq!(decoded.write_index, 1); + assert_eq!(decoded.client_token, 0x1001); + assert_eq!(decoded.wire_kind, 0x02); + } + + #[test] + fn float32_round_trip() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Float32(std::f32::consts::PI), 5, 0x42).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Float32(std::f32::consts::PI)); + assert_eq!(decoded.wire_kind, 0x03); + } + + #[test] + fn float64_round_trip() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Float64(std::f64::consts::E), 9, 0xFEED).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Float64(std::f64::consts::E)); + assert_eq!(decoded.wire_kind, 0x04); + } + + // ---- Variable (String/DateTime) -------------------------------------- + + #[test] + fn string_round_trip() { + let h = sample_handle(); + for s in ["", "hello", "world!", "AVEVA"] { + let body = encode(&h, &WriteValue::String(s.to_string()), 1, 0).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::String(s.to_string())); + assert_eq!(decoded.wire_kind, 0x05); + } + } + + #[test] + fn datetime_round_trip() { + let h = sample_handle(); + // Caller pre-formats DateTime per `NmxWriteMessage.cs:390-393`. + let formatted = "1/2/2024 3:04:05 PM".to_string(); + let body = encode(&h, &WriteValue::DateTime(formatted.clone()), 1, 0).unwrap(); + // Decoder collapses to String (encoder-collapse on wire kind 0x05). + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::String(formatted)); + assert_eq!(decoded.wire_kind, 0x05); + } + + #[test] + fn string_total_is_44_plus_n() { + // `NmxWriteMessage.cs:148-157`: total = 18 + 4 + 4 + N + 14 + 4 = 44 + N + // where N = utf16_bytes_with_terminator = (chars*2) + 2. + let h = sample_handle(); + for s in ["", "x", "hello", "longer string"] { + let body = encode(&h, &WriteValue::String(s.to_string()), 1, 0).unwrap(); + let n = s.encode_utf16().count() * 2 + 2; // +2 for NUL terminator + assert_eq!(body.len(), 44 + n, "len mismatch for {s:?}"); + } + } + + #[test] + fn string_outer_and_inner_length_headers() { + // `NmxWriteMessage.cs:152-153`: body[18..22] = outer = inner+4, + // body[22..26] = inner = utf16_bytes_with_terminator. + let h = sample_handle(); + let s = "abc"; + let body = encode(&h, &WriteValue::String(s.to_string()), 1, 0).unwrap(); + let inner = s.encode_utf16().count() * 2 + 2; // 6+2=8 + let outer = inner + 4; + assert_eq!(read_i32_le(&body, 18), outer as i32); + assert_eq!(read_i32_le(&body, 22), inner as i32); + } + + // ---- Arrays ---------------------------------------------------------- + + #[test] + fn array_u16_u16_header() { + // `NmxWriteMessage.cs:181-182`: count u16 at body[22], elementWidth u16 at body[24]. + let h = sample_handle(); + let body = encode(&h, &WriteValue::Int32Array(vec![1, 2, 3]), 1, 0).unwrap(); + assert_eq!(read_u16_le(&body, 22), 3); // count + assert_eq!(read_u16_le(&body, 24), 4); // element_width = sizeof(int) + } + + #[test] + fn boolean_array_round_trip() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::BooleanArray(vec![true, false, true]), 1, 0).unwrap(); + // count=3, width=2, payload=6 bytes (-1, 0, -1 as i16 LE). + assert_eq!(read_u16_le(&body, 22), 3); + assert_eq!(read_u16_le(&body, 24), 2); + let decoded = decode(&body).unwrap(); + assert_eq!( + decoded.value, + WriteValue::BooleanArray(vec![true, false, true]) + ); + assert_eq!(decoded.wire_kind, 0x41); + } + + #[test] + fn int32_array_round_trip() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Int32Array(vec![10, 20, 30, 40]), 2, 0xABCD).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Int32Array(vec![10, 20, 30, 40])); + assert_eq!(decoded.wire_kind, 0x42); + } + + #[test] + fn float32_array_round_trip() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Float32Array(vec![1.0, 2.0, 3.0]), 1, 0).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Float32Array(vec![1.0, 2.0, 3.0])); + assert_eq!(decoded.wire_kind, 0x43); + } + + #[test] + fn float64_array_round_trip() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Float64Array(vec![1.5, 2.5]), 1, 0).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Float64Array(vec![1.5, 2.5])); + assert_eq!(decoded.wire_kind, 0x44); + // element_width = 8. + assert_eq!(read_u16_le(&body, 24), 8); + } + + #[test] + fn string_array_round_trip() { + let h = sample_handle(); + let strings = vec!["a".to_string(), "bb".to_string(), "ccc".to_string()]; + let body = encode(&h, &WriteValue::StringArray(strings.clone()), 1, 0).unwrap(); + // element_width is hard-coded to 4 for variable arrays (`NmxWriteMessage.cs:30, 52`). + assert_eq!(read_u16_le(&body, 24), 4); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::StringArray(strings)); + assert_eq!(decoded.wire_kind, 0x45); + } + + #[test] + fn datetime_array_round_trip_and_collapses_to_0x45() { + let h = sample_handle(); + let dts = vec![ + "1/2/2024 3:04:05 PM".to_string(), + "5/6/2024 7:08:09 AM".to_string(), + ]; + let body = encode(&h, &WriteValue::DateTimeArray(dts.clone()), 1, 0).unwrap(); + // `GetWireKind` collapses DateTimeArray to 0x45 (`NmxWriteMessage.cs:107`). + assert_eq!(body[KIND_OFFSET], 0x45); + assert_eq!(read_u16_le(&body, 24), 4); + let decoded = decode(&body).unwrap(); + // Decoder cannot distinguish from StringArray on wire — returns StringArray. + assert_eq!(decoded.value, WriteValue::StringArray(dts)); + } + + // ---- Timestamped (Write2) -------------------------------------------- + + #[test] + fn timestamped_int32_suffix_layout() { + // `NmxWriteMessage.cs:240-251`: leading i16 = 0 (was -1 in normal), + // FILETIME at suffix offsets 2..10. + let h = sample_handle(); + let ft: i64 = 0x01D9_ABCD_1234_5678; + let body = encode_timestamped(&h, &WriteValue::Int32(99), ft, 1, 0xC0FFEE).unwrap(); + // suffix starts at body[22] for Int32 (KindOffset+1 + 4 = 22). + // suffix[0..2] = i16 LE = 0. + assert_eq!(read_i16_le(&body, 22), 0); + // suffix[2..10] = FILETIME. + assert_eq!(read_i64_le(&body, 24), ft); + // suffix[10..14] = clientToken. + assert_eq!(read_u32_le(&body, 32), 0xC0FFEE); + // suffix[14..18] = writeIndex. + assert_eq!(read_i32_le(&body, 36), 1); + } + + #[test] + fn timestamped_int32_round_trip() { + let h = sample_handle(); + let ft: i64 = 132_500_000_000_000_000; + let body = encode_timestamped(&h, &WriteValue::Int32(42), ft, 3, 0x1111).unwrap(); + let decoded = decode(&body).unwrap(); + assert_eq!(decoded.value, WriteValue::Int32(42)); + assert_eq!(decoded.timestamp_filetime, Some(ft)); + assert_eq!(decoded.write_index, 3); + assert_eq!(decoded.client_token, 0x1111); + } + + #[test] + fn normal_suffix_leading_i16_is_minus_one() { + // `NmxWriteMessage.cs:222`: normal suffix starts with i16 = -1. + let h = sample_handle(); + let body = encode(&h, &WriteValue::Int32(0), 1, 0).unwrap(); + assert_eq!(read_i16_le(&body, 22), -1); + } + + // ---- Hand-traced parity bytes ---------------------------------------- + + /// Verify the full byte sequence for + /// `Write { handle, MxValue::Int32(123), client_token: 0x1001, write_index: 1 }`. + /// Each byte is annotated with its source-line reason. + #[test] + fn parity_int32_byte_for_byte() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Int32(123), 1, 0x1001).unwrap(); + // Total length: KindOffset(17) + 1 + 4 + 14 + 4 = 40 (`NmxWriteMessage.cs:114`). + assert_eq!(body.len(), 40); + + // Build expected from .cs source: + // body[0] = 0x37 (Command, .cs:209) + // body[1..3] = u16 LE 1 (Version, .cs:210) + // body[3..17] = handle.encode()[6..20] (projection, .cs:211) + // body[17] = 0x02 (Int32 wire kind, .cs:99) + // body[18..22] = 7B 00 00 00 (Int32 LE 123, .cs:276) + // body[22..24] = FF FF (i16 LE -1 normal-suffix marker, .cs:222) + // body[24..32] = 00 00 00 00 00 00 00 00 (8-byte filler u64=0, .cs:223) + // body[32..36] = 01 10 00 00 (clientToken u32 LE 0x1001, .cs:224) + // body[36..40] = 01 00 00 00 (writeIndex i32 LE 1, .cs:225) + let projection = projection_of(&h); + let mut expected = Vec::with_capacity(40); + expected.push(0x37); + expected.extend_from_slice(&[0x01, 0x00]); + expected.extend_from_slice(&projection); + expected.push(0x02); + expected.extend_from_slice(&123i32.to_le_bytes()); + expected.extend_from_slice(&(-1i16).to_le_bytes()); // FF FF + expected.extend_from_slice(&0u64.to_le_bytes()); + expected.extend_from_slice(&0x1001u32.to_le_bytes()); + expected.extend_from_slice(&1i32.to_le_bytes()); + assert_eq!(body, expected); + + // Sanity: pin the literal bytes for the suffix region too. + assert_eq!(&body[22..24], &[0xFF, 0xFF]); + assert_eq!(&body[24..32], &[0; 8]); + assert_eq!(&body[32..36], &[0x01, 0x10, 0x00, 0x00]); + assert_eq!(&body[36..40], &[0x01, 0x00, 0x00, 0x00]); + } + + /// Verify the full byte sequence for a true Boolean write. + /// Validates the literal `[0xff,0xff,0xff,0x00]` payload AND the 11-byte + /// suffix shape (no leading `-1` marker — 7 zero bytes instead). + #[test] + fn parity_boolean_true_byte_for_byte() { + let h = sample_handle(); + let body = encode(&h, &WriteValue::Boolean(true), 1, 0x1001).unwrap(); + assert_eq!(body.len(), 37); + let projection = projection_of(&h); + let mut expected = Vec::with_capacity(37); + expected.push(0x37); // .cs:209 + expected.extend_from_slice(&[0x01, 0x00]); // .cs:210 (version=1) + expected.extend_from_slice(&projection); // .cs:211 + expected.push(0x01); // .cs:98 Boolean wire kind + // Boolean payload literal (.cs:257) + expected.extend_from_slice(&[0xff, 0xff, 0xff, 0x00]); + // 7-byte zero region of Boolean suffix (.cs:235) + expected.extend_from_slice(&[0; 7]); + // clientToken u32 LE (.cs:236) + expected.extend_from_slice(&0x1001u32.to_le_bytes()); + // writeIndex i32 LE (.cs:237) + expected.extend_from_slice(&1i32.to_le_bytes()); + assert_eq!(body, expected); + } + + // ---- Variable-array element header parity ---------------------------- + + #[test] + fn variable_array_element_header_layout() { + // `NmxWriteMessage.cs:346-362`. Per-element 13-byte header: + // [0..4] = 1 + 4 + 4 + textBytes.Length + // [4] = 0x05 + // [5..9] = textBytes.Length + 4 + // [9..13]= textBytes.Length + // followed by textBytes (which has the 2-byte NUL terminator baked in). + let h = sample_handle(); + let body = encode(&h, &WriteValue::StringArray(vec!["a".to_string()]), 1, 0).unwrap(); + // Single element. Array payload starts at body[28]. + // For "a": utf16 = [0x61], textBytes = 0x61 0x00 0x00 0x00 (= 4 bytes). + let payload_start = 28; + assert_eq!(read_i32_le(&body, payload_start), 1 + 4 + 4 + 4); + assert_eq!(body[payload_start + 4], 0x05); + assert_eq!(read_i32_le(&body, payload_start + 5), 4 + 4); + assert_eq!(read_i32_le(&body, payload_start + 9), 4); + assert_eq!( + &body[payload_start + 13..payload_start + 17], + &[0x61, 0x00, 0x00, 0x00] + ); + } + + // ---- Decode error surface -------------------------------------------- + + #[test] + fn decode_rejects_wrong_opcode() { + let mut body = encode(&sample_handle(), &WriteValue::Int32(0), 1, 0).unwrap(); + body[0] = 0x38; + assert!(matches!( + decode(&body), + Err(CodecError::UnexpectedOpcode(0x38)) + )); + } + + #[test] + fn decode_rejects_wrong_version() { + let mut body = encode(&sample_handle(), &WriteValue::Int32(0), 1, 0).unwrap(); + body[1] = 0x02; // version = 2 + assert!(matches!( + decode(&body), + Err(CodecError::UnsupportedVersion { + expected: 1, + actual: 2 + }) + )); + } + + #[test] + fn decode_rejects_short_buffer() { + assert!(matches!( + decode(&[0u8; 10]), + Err(CodecError::ShortRead { .. }) + )); + } +} diff --git a/rust/crates/mxaccess-codec/tests/dotnet_codec_parity.rs b/rust/crates/mxaccess-codec/tests/dotnet_codec_parity.rs new file mode 100644 index 0000000..3d7c24c --- /dev/null +++ b/rust/crates/mxaccess-codec/tests/dotnet_codec_parity.rs @@ -0,0 +1,259 @@ +//! Cross-implementation parity: Rust codec vs the .NET reference. +//! +//! Closes out the M1 DoD line in `design/60-roadmap.md`: +//! +//! > every Frida-captured write/advise/subscribe body that the .NET reference +//! > encodes today round-trips byte-identical through `mxaccess-codec` — i.e. +//! > the proven matrix in `work_remain.md` (scalar/array writes, advise/unadvise, +//! > single-record `0x33` DataUpdate, single-record SubscriptionStatus, the +//! > 5-byte `00 00 50 80 00` write-complete frame, and the 1-byte completion +//! > frames `0x00`/`0x41`/`0xEF` preserved verbatim). Cross-validated against +//! > `src/MxNativeCodec.Tests/` outputs. +//! +//! Each fixture in this file is **the canonical hex byte sequence the .NET +//! `MxNativeCodec.Tests` program asserts against** today. They are copied +//! verbatim from `src/MxNativeCodec.Tests/Program.cs` lines 4-100. The +//! reference is the bytes themselves, not the source program — if the .NET +//! reference's encoder ever changes, regenerate via +//! `dotnet run --project src\MxNativeCodec.Tests\MxNativeCodec.Tests.csproj` +//! and capture the new hex. +//! +//! The parity strategy mirrors the .NET `RunRoundTrip` helper +//! (`Program.cs:119-156`): +//! 1. Take the observed bytes. +//! 2. Hand them to [`ObservedWriteBodyTemplate::from_observed`] to capture the +//! prefix/suffix slots verbatim. +//! 3. Call [`ObservedWriteBodyTemplate::with_value`] with the original value. +//! 4. Assert byte-identical. +//! +//! `with_value` preserves the captured prefix (handle, clientToken stash) and +//! suffix (including FILETIME for timestamped Write2 bodies), so a single +//! parity check works uniformly for normal and timestamped fixtures. + +#![allow( + clippy::unwrap_used, + clippy::expect_used, + clippy::indexing_slicing, + clippy::panic +)] + +use mxaccess_codec::{ + MxValue, MxValueKind, NmxTransferEnvelopeTemplate, ObservedWriteBodyTemplate, +}; + +/// Decode a space-separated hex string into bytes. Mirrors `Convert.FromHexString` +/// in the .NET test helper. +fn hex_to_bytes(s: &str) -> Vec { + s.split_whitespace() + .map(|tok| u8::from_str_radix(tok, 16).expect("malformed hex token in fixture")) + .collect() +} + +/// One write-body parity fixture. Mirrors a single `RunRoundTrip(...)` call +/// in `src/MxNativeCodec.Tests/Program.cs`. +struct Fixture { + name: &'static str, + kind: MxValueKind, + /// Pre-built `MxValue` matching what the .NET test passes. For DateTime + /// fixtures, the .NET helper formats the `DateTime` to `M/d/yyyy h:mm:ss tt` + /// before encoding; we pass the same pre-formatted string via + /// `MxValue::String` (the encoder collapses DateTime onto the String wire + /// kind 0x05). + value: MxValue, + /// Canonical hex from the .NET test program. Space-separated bytes. + hex: &'static str, +} + +fn write_body_fixtures() -> Vec { + vec![ + // -------- Scalar Write (0x37) -------- + Fixture { + name: "int", + kind: MxValueKind::Int32, + value: MxValue::Int32(109), + hex: "37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00", + }, + Fixture { + name: "bool", + kind: MxValueKind::Boolean, + value: MxValue::Boolean(true), + hex: "37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 01 00 00 00", + }, + Fixture { + name: "float", + kind: MxValueKind::Float32, + value: MxValue::Float32(1.25), + hex: "37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 a0 3f ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 01 00 00 00", + }, + Fixture { + name: "double", + kind: MxValueKind::Float64, + value: MxValue::Float64(1.125), + hex: "37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 f2 3f ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 01 00 00 00", + }, + Fixture { + name: "string", + kind: MxValueKind::String, + value: MxValue::String("AlphaMX".to_string()), + hex: "37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 01 00 00 00", + }, + Fixture { + // .NET formats DateTime via `M/d/yyyy h:mm:ss tt` InvariantCulture. + // `new DateTime(2026, 4, 25, 2, 30, 0)` → "4/25/2026 2:30:00 AM". + // Wire kind collapses to 0x05 String per `NmxWriteMessage.cs:107`. + name: "datetime (M/d/yyyy h:mm:ss tt)", + kind: MxValueKind::DateTime, + value: MxValue::String("4/25/2026 2:30:00 AM".to_string()), + hex: "37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 01 00 00 00", + }, + // -------- Timestamped Write (Write2). Suffix `i16` is `0` (not -1) + // and the 8-byte filler at suffix offsets 2..10 is replaced + // by the FILETIME — see `design/40-protocol-invariants.md` + // for the layout. `with_value` preserves the FILETIME from + // the captured suffix, so the parity check is uniform. + Fixture { + name: "write2 int timestamp", + kind: MxValueKind::Int32, + value: MxValue::Int32(114), + hex: "37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 72 00 00 00 00 00 00 72 68 3a 83 d4 dc 01 20 2e d8 08 01 00 00 00", + }, + Fixture { + name: "write2 string timestamp", + kind: MxValueKind::String, + value: MxValue::String("Write2Alpha".to_string()), + hex: "37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00 61 00 00 00 00 00 80 68 d5 9c ab d4 dc 01 9f 6e a6 0b 01 00 00 00", + }, + // -------- Arrays -------- + Fixture { + name: "int[]", + kind: MxValueKind::Int32Array, + value: MxValue::Int32Array(vec![201, 202, 203, 204, 205, 206, 207, 208, 209, 210]), + hex: "37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00 d2 00 00 00 ff ff 00 00 00 00 00 00 00 00 4d c3 c4 08 01 00 00 00", + }, + Fixture { + name: "bool[]", + kind: MxValueKind::BoolArray, + value: MxValue::BoolArray(vec![ + true, true, false, false, true, true, false, false, true, true, + ]), + hex: "37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff ff ff 00 00 00 00 00 00 00 00 a8 7f c5 08 01 00 00 00", + }, + Fixture { + name: "float[]", + kind: MxValueKind::Float32Array, + value: MxValue::Float32Array(vec![ + 1.25, 2.5, 3.75, 4.25, 5.5, 6.75, 7.25, 8.5, 9.75, 10.25, + ]), + hex: "37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41 00 00 24 41 ff ff 00 00 00 00 00 00 00 00 0c f4 c5 08 01 00 00 00", + }, + Fixture { + name: "string[]", + kind: MxValueKind::StringArray, + value: MxValue::StringArray(vec![ + "A01".to_string(), + "B02".to_string(), + "C03".to_string(), + "D04".to_string(), + "E05".to_string(), + "F06".to_string(), + "G07".to_string(), + "H08".to_string(), + "I09".to_string(), + "J10".to_string(), + ]), + hex: "37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 30 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 30 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 30 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 30 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 30 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 30 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 30 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 30 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 30 00 39 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4a 00 31 00 30 00 00 00 ff ff 00 00 00 00 00 00 00 00 c3 da c6 08 01 00 00 00", + }, + // -------- Timestamped arrays -------- + Fixture { + name: "write2 int[] timestamp", + kind: MxValueKind::Int32Array, + value: MxValue::Int32Array(vec![301, 302, 303, 304, 305, 306, 307, 308, 309, 310]), + hex: "37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00 36 01 00 00 00 00 80 93 fc 76 ac d4 dc 01 43 35 ac 0b 01 00 00 00", + }, + ] +} + +#[test] +fn write_bodies_round_trip_byte_identical_against_dotnet_reference() { + let mut failures: Vec = Vec::new(); + + for fx in write_body_fixtures() { + let observed = hex_to_bytes(fx.hex); + let template = match ObservedWriteBodyTemplate::from_observed(fx.kind, &observed) { + Ok(t) => t, + Err(e) => { + failures.push(format!( + "fixture {:?} from_observed errored: {e:?}", + fx.name + )); + continue; + } + }; + // .NET helper passes `writeIndex: 1` uniformly (Program.cs:128). + let regen = match template.with_value(&fx.value, 1) { + Ok(b) => b, + Err(e) => { + failures.push(format!("fixture {:?} with_value errored: {e:?}", fx.name)); + continue; + } + }; + if regen != observed { + // Find first divergent byte for fast triage. + let len = regen.len().min(observed.len()); + let first = (0..len).find(|i| regen[*i] != observed[*i]); + failures.push(format!( + "fixture {:?} diverged: rust_len={} dotnet_len={} first_diff_at={:?}", + fx.name, + regen.len(), + observed.len(), + first, + )); + } + } + + if !failures.is_empty() { + panic!( + "{} fixture(s) failed parity vs .NET reference:\n {}", + failures.len(), + failures.join("\n ") + ); + } +} + +// ---- Transfer envelope round-trip ---------------------------------------- +// +// Mirrors `RunTransferEnvelopeRoundTrip` (Program.cs:174-182) and the canonical +// fixture at Program.cs:102-104. The envelope template captures the 46-byte +// header verbatim and re-emits it byte-identical given the same inner body. + +#[test] +fn transfer_envelope_round_trips_byte_identical() { + // Inner body and full transfer body — taken verbatim from + // src/MxNativeCodec.Tests/Program.cs:102-104. + let inner_hex = "37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00"; + let transfer_hex = "01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 \ + 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00"; + + let inner = hex_to_bytes(inner_hex); + let transfer = hex_to_bytes(transfer_hex); + + let template = NmxTransferEnvelopeTemplate::from_observed(&transfer) + .expect("envelope template parse failed"); + + // Decode inner — should match `inner_hex` byte-for-byte. + let decoded_inner = template + .decode_inner(&transfer) + .expect("decode_inner errored"); + assert_eq!( + decoded_inner, + inner.as_slice(), + "decoded inner body diverged from canonical hex" + ); + + // Re-encode the full 46+inner buffer — should match `transfer_hex`. + let regen = template.encode(&inner); + assert_eq!( + regen, transfer, + "re-encoded transfer body diverged from canonical hex" + ); +} diff --git a/rust/crates/mxaccess-compat/Cargo.toml b/rust/crates/mxaccess-compat/Cargo.toml new file mode 100644 index 0000000..9d2dc82 --- /dev/null +++ b/rust/crates/mxaccess-compat/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "mxaccess-compat" +description = "LMXProxyServer-shaped Rust facade on top of `mxaccess::Session`. Optional / post-V1." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] +mxaccess = { path = "../mxaccess" } + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-compat/src/lib.rs b/rust/crates/mxaccess-compat/src/lib.rs new file mode 100644 index 0000000..04f5a50 --- /dev/null +++ b/rust/crates/mxaccess-compat/src/lib.rs @@ -0,0 +1,8 @@ +//! `mxaccess-compat` — `LMXProxyServer`-shaped methods on top of `mxaccess::Session`. +//! +//! M0 stub. Real implementation lands in M6 — see `design/60-roadmap.md`. +//! The compat surface is Rust-shaped (Streams + async fns); a separate +//! `mxaccess-compat-com` crate (post-V1) registers `windows-rs`-generated COM +//! classes, per `design/70-risks-and-open-questions.md` Q4. + +#![forbid(unsafe_code)] diff --git a/rust/crates/mxaccess-galaxy/Cargo.toml b/rust/crates/mxaccess-galaxy/Cargo.toml new file mode 100644 index 0000000..00c7140 --- /dev/null +++ b/rust/crates/mxaccess-galaxy/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "mxaccess-galaxy" +description = "Galaxy Repository SQL resolver: tag → metadata, user → identity. Resolves tag_name-form input only (see design/30-crate-topology.md)." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] + +[features] +default = [] +# `galaxy-resolver` (off by default in M0) pulls `tiberius`. Consumers using a +# custom `Resolver` impl leave it off and avoid pulling TDS / native-tls / +# winauth. Per design/30-crate-topology.md `mxaccess-galaxy` section. +galaxy-resolver = [] +auth-windows = [] + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-galaxy/src/lib.rs b/rust/crates/mxaccess-galaxy/src/lib.rs new file mode 100644 index 0000000..a38989b --- /dev/null +++ b/rust/crates/mxaccess-galaxy/src/lib.rs @@ -0,0 +1,14 @@ +//! `mxaccess-galaxy` — Galaxy Repository SQL resolver. +//! +//! M0 stub. The real resolver lands in M3 — see `design/60-roadmap.md`. +//! Replicates the recursive CTE from +//! `src/MxNativeClient/GalaxyRepositoryTagResolver.cs:209-293` +//! (`deployed_package_chain`) against the verified table set +//! `dbo.gobject` / `dbo.instance` / `dbo.dynamic_attribute` / +//! `dbo.attribute_definition` / `dbo.primitive_instance` / `dbo.package`. +//! +//! **Resolver input contract**: `tag_name`-form only (e.g. `DelmiaReceiver_001`), +//! not `contained_name`-form (e.g. `TestMachine_001.DelmiaReceiver`). See +//! `wwtools/grdb/README.md` for the asymmetry. + +#![forbid(unsafe_code)] diff --git a/rust/crates/mxaccess-nmx/Cargo.toml b/rust/crates/mxaccess-nmx/Cargo.toml new file mode 100644 index 0000000..7c99463 --- /dev/null +++ b/rust/crates/mxaccess-nmx/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "mxaccess-nmx" +description = "INmxService2 client + raw NMX session façade. Exposes a Resolver trait so consumers can plug in any tag-handle resolver." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] +mxaccess-codec = { path = "../mxaccess-codec" } +mxaccess-rpc = { path = "../mxaccess-rpc" } +mxaccess-callback = { path = "../mxaccess-callback" } + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-nmx/src/lib.rs b/rust/crates/mxaccess-nmx/src/lib.rs new file mode 100644 index 0000000..6e1d1ea --- /dev/null +++ b/rust/crates/mxaccess-nmx/src/lib.rs @@ -0,0 +1,18 @@ +//! `mxaccess-nmx` — `INmxService2` client + raw NMX session façade. +//! +//! M0 stub. Real implementation lands in M3 — see `design/60-roadmap.md`. +//! +//! Opnums (verified against `src/MxNativeClient/NmxComContracts.cs:55-73`, +//! and on the wire — sequential because `INmxService2 : INmxService` continues +//! the same vtable; see `design/40-protocol-invariants.md`): +//! - `3` RegisterEngine +//! - `4` UnRegisterEngine +//! - `5` Connect +//! - `6` TransferData +//! - `7` AddSubscriberEngine +//! - `8` RemoveSubscriberEngine +//! - `9` SetHeartbeatSendInterval +//! - `10` RegisterEngine2 +//! - `11` GetPartnerVersion + +#![forbid(unsafe_code)] diff --git a/rust/crates/mxaccess-rpc/Cargo.toml b/rust/crates/mxaccess-rpc/Cargo.toml new file mode 100644 index 0000000..2a5853a --- /dev/null +++ b/rust/crates/mxaccess-rpc/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "mxaccess-rpc" +description = "DCE/RPC PDU codec + NTLMv2 + OBJREF + OXID resolution + RemQI for the NMX transport." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] + +[features] +default = [] +windows-com = [] + +[lints] +workspace = true diff --git a/rust/crates/mxaccess-rpc/src/lib.rs b/rust/crates/mxaccess-rpc/src/lib.rs new file mode 100644 index 0000000..7f1eb0d --- /dev/null +++ b/rust/crates/mxaccess-rpc/src/lib.rs @@ -0,0 +1,10 @@ +//! `mxaccess-rpc` — DCE/RPC + NTLMv2 + OBJREF + OXID + IRemUnknown::RemQueryInterface. +//! +//! M0 stub. Real implementation lands in M2 — see `design/60-roadmap.md`. +//! +//! Internal `unsafe` is permitted only for `windows-rs` COM activation paths +//! (per `design/00-overview.md` principle 3); all such calls must be wrapped +//! in safe abstractions at the crate boundary. + +// `mxaccess-rpc` is the only crate where internal unsafe is permitted (for +// windows-rs COM calls). Public API stays safe. diff --git a/rust/crates/mxaccess/Cargo.toml b/rust/crates/mxaccess/Cargo.toml new file mode 100644 index 0000000..1974dfd --- /dev/null +++ b/rust/crates/mxaccess/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "mxaccess" +description = "Async Tokio façade for AVEVA / Wonderware MXAccess. Exposes Session, Subscription, Transport trait, and the public Error model." +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +authors.workspace = true + +[dependencies] +mxaccess-codec = { path = "../mxaccess-codec" } +thiserror = { workspace = true } + +[features] +default = [] +# Transport feature gates land in M2-M5. +nmx = [] +asb = [] +metrics = [] +serde = ["mxaccess-codec/serde"] +# `live` gates integration tests that hit a running AVEVA install. Driven by +# the `MX_LIVE` env var via `tools/Setup-LiveProbeEnv.ps1`. +live = [] + +[lints] +workspace = true diff --git a/rust/crates/mxaccess/examples/asb-subscribe.rs b/rust/crates/mxaccess/examples/asb-subscribe.rs new file mode 100644 index 0000000..db75bbb --- /dev/null +++ b/rust/crates/mxaccess/examples/asb-subscribe.rs @@ -0,0 +1,7 @@ +//! `asb-subscribe` — subscribe via the ASB transport. +//! +//! M0 stub. See `design/60-roadmap.md` M5. + +fn main() { + eprintln!("asb-subscribe: stubbed (M0). See design/60-roadmap.md M5."); +} diff --git a/rust/crates/mxaccess/examples/connect-write-read.rs b/rust/crates/mxaccess/examples/connect-write-read.rs new file mode 100644 index 0000000..2f6992c --- /dev/null +++ b/rust/crates/mxaccess/examples/connect-write-read.rs @@ -0,0 +1,7 @@ +//! `connect-write-read` — connect, write a value, read it back. +//! +//! M0 stub. Filled in as M4 lands. See `design/60-roadmap.md` M4 DoD. + +fn main() { + eprintln!("connect-write-read: stubbed (M0). See design/60-roadmap.md M4."); +} diff --git a/rust/crates/mxaccess/examples/multi-tag.rs b/rust/crates/mxaccess/examples/multi-tag.rs new file mode 100644 index 0000000..0c6d841 --- /dev/null +++ b/rust/crates/mxaccess/examples/multi-tag.rs @@ -0,0 +1,8 @@ +//! `multi-tag` — `subscribe_many` over several tags. Non-atomic per-tag +//! advise loop matching `MxNativeSession.SubscribeAsync` (`MxNativeSession.cs:250-270`). +//! +//! M0 stub. + +fn main() { + eprintln!("multi-tag: stubbed (M0). See design/60-roadmap.md M4."); +} diff --git a/rust/crates/mxaccess/examples/recovery.rs b/rust/crates/mxaccess/examples/recovery.rs new file mode 100644 index 0000000..dc69691 --- /dev/null +++ b/rust/crates/mxaccess/examples/recovery.rs @@ -0,0 +1,10 @@ +//! `recovery` — caller-driven `Session::recover_connection(policy)` after +//! heartbeat-loss. +//! +//! Recovery is opt-in, not automatic — see `design/20-async-layer.md` and +//! `MxNativeSession.cs:383-440`. In-flight calls during recovery fail. +//! M0 stub. + +fn main() { + eprintln!("recovery: stubbed (M0). See design/60-roadmap.md M4."); +} diff --git a/rust/crates/mxaccess/examples/secured-write.rs b/rust/crates/mxaccess/examples/secured-write.rs new file mode 100644 index 0000000..cf7b780 --- /dev/null +++ b/rust/crates/mxaccess/examples/secured-write.rs @@ -0,0 +1,11 @@ +//! `secured-write` — Verified Write demonstrations. +//! +//! `write_secured` (no timestamp) and `write_secured_at` (timestamped), each +//! taking `(current_user_id, verifier_user_id)`. Demonstrates both the +//! single-user path (`current == verifier`) and the two-person verification +//! path. Per `wwtools/mxaccesscli/`, the LMX `WriteSecured` always takes two +//! ids — single-user is just same-id-twice, not a separate API. M0 stub. + +fn main() { + eprintln!("secured-write: stubbed (M0). See design/60-roadmap.md M4."); +} diff --git a/rust/crates/mxaccess/examples/subscribe-buffered.rs b/rust/crates/mxaccess/examples/subscribe-buffered.rs new file mode 100644 index 0000000..02949b8 --- /dev/null +++ b/rust/crates/mxaccess/examples/subscribe-buffered.rs @@ -0,0 +1,9 @@ +//! `subscribe-buffered` — buffered subscription with delivery cadence. +//! +//! Per `wwtools/mxaccesscli/docs/api-notes.md:138-140`, "buffered" is a +//! delivery-cadence knob (`SetBufferedUpdateInterval`), not multi-sample +//! payload bundling. M0 stub. + +fn main() { + eprintln!("subscribe-buffered: stubbed (M0). See design/60-roadmap.md M6."); +} diff --git a/rust/crates/mxaccess/examples/subscribe.rs b/rust/crates/mxaccess/examples/subscribe.rs new file mode 100644 index 0000000..b463ecb --- /dev/null +++ b/rust/crates/mxaccess/examples/subscribe.rs @@ -0,0 +1,7 @@ +//! `subscribe` — subscribe to a single tag and stream `DataChange` events. +//! +//! M0 stub. + +fn main() { + eprintln!("subscribe: stubbed (M0). See design/60-roadmap.md M4."); +} diff --git a/rust/crates/mxaccess/src/lib.rs b/rust/crates/mxaccess/src/lib.rs new file mode 100644 index 0000000..0838291 --- /dev/null +++ b/rust/crates/mxaccess/src/lib.rs @@ -0,0 +1,347 @@ +//! `mxaccess` — async Tokio façade for AVEVA / Wonderware MXAccess. +//! +//! Public API surface: `Session`, `Subscription`, `DataChange`, `Transport` +//! trait, `Error` taxonomy. Two transports plug into the same trait +//! (`NmxTransport`, `AsbTransport`) so M5 (ASB) can develop in parallel with +//! M3/M4 (NMX) — see `design/60-roadmap.md` sequencing notes. +//! +//! M0 stub. Everything `todo!()`s. Real implementation lands across M3 +//! (`mxaccess-nmx` wiring), M4 (NMX façade complete), and M5 (ASB transport). +//! See `design/20-async-layer.md` for the full API specification. + +#![forbid(unsafe_code)] + +use std::borrow::Cow; +use std::sync::Arc; +use std::time::{Duration, SystemTime}; + +pub use mxaccess_codec::{ + MxDataType, MxReferenceHandle, MxStatus, MxStatusCategory, MxStatusSource, MxValue, MxValueKind, +}; + +// ---- Public types -------------------------------------------------------- + +/// Async session façade. Cheap clones share the inner state; drop of the last +/// clone fires `UnregisterEngine` best-effort. For deterministic shutdown, +/// call `Session::shutdown(timeout).await`. +#[derive(Debug, Clone)] +pub struct Session { + _inner: Arc, +} + +#[derive(Debug)] +struct SessionInner; + +/// Stream of `DataChange` items. Drop sends `UnAdvise` via the long-lived +/// connection task (no `tokio::spawn` from `Drop`). +#[derive(Debug)] +pub struct Subscription; + +/// One inbound update. Carries both `quality: u16` (legacy 16-bit OPC quality, +/// e.g. `0xC0` = "Good") and `status: MxStatus` (the richer category model). +/// Both are surfaced because real MxAccess emits them as separate fields per +/// `wwtools/mxaccesscli/docs/api-notes.md:104-105`. +#[derive(Debug, Clone)] +pub struct DataChange { + pub reference: Arc, + pub value: MxValue, + /// Legacy 16-bit OPC quality. Distinct from `status: MxStatus`. + pub quality: u16, + pub timestamp: SystemTime, + pub status: MxStatus, +} + +/// Buffered subscription delivery — single-sample-per-event with a configurable +/// flush cadence. **Not** multi-sample payload bundles per +/// `wwtools/mxaccesscli/docs/api-notes.md:138-140` (R2 verified). +#[derive(Debug, Clone)] +pub struct BufferedSubscription; + +#[derive(Debug, Clone, Copy)] +pub struct BufferedOptions { + pub update_interval_ms: u32, +} + +#[derive(Debug, Clone)] +pub struct SecurityContext { + pub current_user_id: i32, + pub verifier_user_id: i32, +} + +/// Build-time transport selection. NMX-only, ASB-only, or both. +#[derive(Debug, Clone)] +pub struct ConnectionOptions; + +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +#[non_exhaustive] +pub enum TransportKind { + Nmx, + Asb, +} + +#[derive(Debug, Clone, Copy)] +pub struct TransportCapabilities { + pub buffered_subscribe: bool, + pub activate_suspend: bool, + pub operation_complete_frame: bool, +} + +#[derive(Debug, Clone, Copy, Default)] +pub struct RecoveryPolicy; + +/// Not `Clone` — `Error` is not `Clone`-able (thiserror chains an +/// `io::Error` source which is not `Clone`). Consumers that need to clone an +/// event should wrap it in `Arc`. +#[derive(Debug)] +#[non_exhaustive] +pub enum RecoveryEvent { + Started { + attempt: u32, + }, + Failed { + attempt: u32, + error: Error, + /// Whether the configured policy will retry. Mirrors + /// `MxNativeRecoveryFailureEvent.WillRetry` (`MxNativeSession.cs:47-51`). + will_retry: bool, + }, + Recovered { + attempt: u32, + }, +} + +// ---- Error taxonomy ------------------------------------------------------ + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum Error { + #[error("connection: {0}")] + Connection(#[from] ConnectionError), + + #[error("authentication: {0}")] + Auth(#[from] AuthError), + + #[error("protocol: {0}")] + Protocol(#[from] ProtocolError), + + #[error("configuration: {0}")] + Configuration(#[from] ConfigError), + + #[error("type mismatch on {reference}: expected {expected:?}, got {actual:?}")] + TypeMismatch { + reference: Arc, + expected: MxValueKind, + actual: MxValueKind, + }, + + #[error("security: {0}")] + Security(#[from] SecurityError), + + #[error("unsupported on {transport:?} transport: {operation}")] + Unsupported { + operation: Cow<'static, str>, + transport: TransportKind, + }, + + #[error("operation timed out after {0:?}")] + Timeout(Duration), + + #[error("operation cancelled")] + Cancelled, + + // Field is named `detected_by` (not `source`) to match the codec's + // `MxStatus.detected_by` and to avoid thiserror's `#[source]` attribute + // semantics (which would require `MxStatusSource: std::error::Error`). + #[error( + "status: success={success} category={category:?} detected_by={detected_by:?} detail={detail}" + )] + Status { + success: i16, + category: MxStatusCategory, + detected_by: MxStatusSource, + detail: i16, + }, + + #[error("io: {0}")] + Io(#[from] std::io::Error), +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum ConnectionError { + #[error("RPC server unavailable")] + ServerUnavailable, + #[error("callback proxy/stub not registered (REGDB_E_CLASSNOTREG)")] + CallbackProxyMissing, + #[error("engine not registered (UninitializedObject / ERROR_INVALID_STATE)")] + EngineNotRegistered, +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum AuthError { + #[error("NTLM rejected: {reason}")] + Ntlm { reason: String }, +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum ProtocolError { + #[error("decode at offset {offset} ({reason}); buffer len {buffer_len}")] + Decode { + offset: usize, + reason: &'static str, + buffer_len: usize, + }, + #[error("inner length {declared} does not match body length {actual}")] + InnerLengthMismatch { declared: i32, actual: usize }, + #[error("unexpected opcode {0:#x}")] + UnexpectedOpcode(u8), +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum ConfigError { + #[error("invalid argument: {detail}")] + InvalidArgument { detail: String }, + #[error("galaxy resolver: {reason}")] + Galaxy { reason: String }, +} + +#[derive(Debug, thiserror::Error)] +#[non_exhaustive] +pub enum SecurityError { + #[error("callback OBJREF rejected (HRESULT 0x8001011D)")] + CallbackObjRefRejected, + #[error("verifier user token required for secured write")] + VerifierRequired, +} + +// ---- Transport trait ----------------------------------------------------- + +/// Generic-only trait — `dyn Transport` is intentionally unsupported (see +/// design/20-async-layer.md L53 fix). Consumers parameterise on ``. +pub trait Transport: Send + Sync + 'static { + fn capabilities(&self) -> TransportCapabilities; + fn kind(&self) -> TransportKind; +} + +// ---- Session API surface (stubs) ----------------------------------------- + +impl Session { + pub async fn connect(_options: ConnectionOptions) -> Result { + // M3+ + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::connect"), + transport: TransportKind::Nmx, + }) + } + + pub async fn write(&self, _reference: &str, _value: MxValue) -> Result<(), Error> { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::write"), + transport: TransportKind::Nmx, + }) + } + + pub async fn write_with_completion( + &self, + _reference: &str, + _value: MxValue, + _client_token: u32, + ) -> Result<(), Error> { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::write_with_completion"), + transport: TransportKind::Nmx, + }) + } + + pub async fn write_with_timestamp( + &self, + _reference: &str, + _value: MxValue, + _timestamp: SystemTime, + ) -> Result<(), Error> { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::write_with_timestamp"), + transport: TransportKind::Nmx, + }) + } + + /// Verified Write — always two-id per `wwtools/mxaccesscli/`. Single-user + /// secured writes pass `current_user_id == verifier_user_id`. + pub async fn write_secured( + &self, + _reference: &str, + _value: MxValue, + _security: SecurityContext, + ) -> Result<(), Error> { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::write_secured"), + transport: TransportKind::Nmx, + }) + } + + pub async fn write_secured_at( + &self, + _reference: &str, + _value: MxValue, + _timestamp: SystemTime, + _security: SecurityContext, + ) -> Result<(), Error> { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::write_secured_at"), + transport: TransportKind::Nmx, + }) + } + + /// Read-as-subscribe per `MxNativeSession.ReadAsync` — requires a positive + /// timeout, drop guarantees `UnAdvise`. + pub async fn read(&self, _reference: &str, _timeout: Duration) -> Result { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::read"), + transport: TransportKind::Nmx, + }) + } + + pub async fn subscribe(&self, _reference: &str) -> Result { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::subscribe"), + transport: TransportKind::Nmx, + }) + } + + pub async fn subscribe_many(&self, _references: &[&str]) -> Result { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::subscribe_many"), + transport: TransportKind::Nmx, + }) + } + + pub async fn subscribe_buffered( + &self, + _reference: &str, + _options: BufferedOptions, + ) -> Result { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::subscribe_buffered"), + transport: TransportKind::Nmx, + }) + } + + pub async fn recover_connection(&self, _policy: RecoveryPolicy) -> Result<(), Error> { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::recover_connection"), + transport: TransportKind::Nmx, + }) + } + + /// Orderly shutdown — flushes `UnAdvise` for every live subscription, + /// then `UnregisterEngine`. Recommended exit path for production code. + pub async fn shutdown(self, _timeout: Duration) -> Result<(), Error> { + Err(Error::Unsupported { + operation: Cow::Borrowed("Session::shutdown"), + transport: TransportKind::Nmx, + }) + } +} diff --git a/rust/rust-toolchain.toml b/rust/rust-toolchain.toml new file mode 100644 index 0000000..c4c6f7a --- /dev/null +++ b/rust/rust-toolchain.toml @@ -0,0 +1,4 @@ +[toolchain] +channel = "1.85" +components = ["rustfmt", "clippy"] +profile = "minimal" diff --git a/src/AsbProxyProbe/AsbProxyProbe.csproj b/src/AsbProxyProbe/AsbProxyProbe.csproj new file mode 100644 index 0000000..1fa7f42 --- /dev/null +++ b/src/AsbProxyProbe/AsbProxyProbe.csproj @@ -0,0 +1,48 @@ + + + Exe + net481 + x64 + false + latest + enable + disable + + + + + C:\Windows\Microsoft.NET\assembly\GAC_MSIL\ASBIDataV2Adapter\v4.0_1.0.0.0__23106a86e706d0ae\ASBIDataV2Adapter.dll + false + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ViewAppFramework\Services\Authenticator\aaServicesCommon.dll + false + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ViewAppFramework\Services\Authenticator\aaServicesCommonDataContracts.dll + false + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ViewAppFramework\Services\Authenticator\aaServicesContractIAuthenticateASB.dll + false + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ViewAppFramework\Services\Authenticator\aaServicesContractIData.dll + false + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ViewAppFramework\Services\Authenticator\aaServicesContractIDataV2.dll + false + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ViewAppFramework\Services\Authenticator\aaServicesProxyIData.dll + false + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ViewAppFramework\Services\Authenticator\aaServicesProxyIDataV2.dll + false + + + + + diff --git a/src/AsbProxyProbe/Program.cs b/src/AsbProxyProbe/Program.cs new file mode 100644 index 0000000..693ae89 --- /dev/null +++ b/src/AsbProxyProbe/Program.cs @@ -0,0 +1,305 @@ +using System; +using System.Text; +using System.Linq; +using ArchestrAServices.Contract; +using ArchestrAServices.Proxy; +using ArchestrAServices.ASBIDataV2Contract; +using V2ItemIdentity = ArchestrAServices.ASBIDataV2Contract.ItemIdentity; +using V2ItemRegistration = ArchestrAServices.ASBIDataV2Contract.ItemRegistration; +using V2ItemStatus = ArchestrAServices.ASBIDataV2Contract.ItemStatus; +using V2RuntimeValue = ArchestrAServices.ASBIDataV2Contract.RuntimeValue; +using V2Variant = ArchestrAServices.ASBIDataContract.V2.Variant; +using V2VariantFactory = ArchestrAServices.ASBIDataContract.V2.VariantFactory; +using V2WriteValue = ArchestrAServices.ASBIDataV2Contract.WriteValue; + +namespace AsbProxyProbe; + +internal static class Program +{ + private static int Main(string[] args) + { + string[] accessNames = GetStrings(args, "--access"); + if (accessNames.Length == 0) + { + accessNames = + [ + "ZB", + "ZB2", + "Default_ZB_MxDataProvider", + "Default_ZB2_MxDataProvider", + "Galaxy", + "localhost", + ]; + } + + bool connect = HasFlag(args, "--connect"); + bool register = HasFlag(args, "--register"); + bool unregister = HasFlag(args, "--unregister"); + bool read = HasFlag(args, "--read"); + int? writeInt = GetInt(args, "--write-int"); + string tag = GetString(args, "--tag") ?? "TestChildObject.TestInt"; + Console.WriteLine($"process=x64:{Environment.Is64BitProcess}"); + Console.WriteLine($"tag={tag}"); + if (HasFlag(args, "--dump-register-payload")) + { + DumpRegisterPayload(tag); + return 0; + } + + if (writeInt.HasValue) + { + Console.WriteLine($"write_int={writeInt.Value}"); + } + + foreach (string accessName in accessNames) + { + ProbeAccessName(accessName, connect, register, unregister, read, tag, writeInt); + } + + return 0; + } + + private static void ProbeAccessName(string accessName, bool connect, bool register, bool unregister, bool read, string tag, int? writeInt) + { + Console.WriteLine($"access={accessName}"); + + try + { + var response = ASBDataV2Proxy.FindIDataEndpoint(accessName, DiscoveryScope.Global); + int count = response?.Endpoints?.Count ?? 0; + Console.WriteLine($"idata_v2_endpoints={count}"); + if (response?.Endpoints is not null) + { + for (int i = 0; i < response.Endpoints.Count; i++) + { + var endpoint = response.Endpoints[i]; + Console.WriteLine($"idata_v2_endpoint[{i}].address={endpoint.Address?.Uri}"); + Console.WriteLine($"idata_v2_endpoint[{i}].listen={string.Join(",", endpoint.ListenUris.Select(uri => uri.ToString()))}"); + Console.WriteLine($"idata_v2_endpoint[{i}].contracts={string.Join(",", endpoint.ContractTypeNames.Select(name => name.ToString()))}"); + Console.WriteLine($"idata_v2_endpoint[{i}].scopes={string.Join(",", endpoint.Scopes.Select(uri => uri.ToString()))}"); + } + } + } + catch (Exception ex) + { + Console.WriteLine($"idata_v2_discovery_error={ex.GetType().FullName}: {ex.Message}"); + } + + try + { + object? proxy = IDataProxySelector.SelectProxyForLatestEndpoint(accessName, new AsbMxDataSettings(), out string selectorError); + Console.WriteLine($"selector_proxy={proxy?.GetType().FullName ?? ""}"); + Console.WriteLine($"selector_error={selectorError.Replace(Environment.NewLine, " ")}"); + + if (connect && proxy is ASBDataV2Proxy v2) + { + bool connected = v2.Connect(out string connectError); + Console.WriteLine($"connect_v2={connected}"); + Console.WriteLine($"connect_v2_error={connectError.Replace(Environment.NewLine, " ")}"); + Console.WriteLine($"connect_v2_state={v2.ChannelState}"); + if (connected) + { + var result = v2.PublishWriteComplete(out var completeWrites); + Console.WriteLine($"publish_write_complete_error=0x{result.ErrorCode:X8}"); + Console.WriteLine($"publish_write_complete_count={completeWrites?.Length ?? 0}"); + V2ItemIdentity? registeredItem = null; + if (register) + { + registeredItem = ProbeRegister(v2, tag); + } + + if (read) + { + ProbeRead(v2, tag); + } + + if (writeInt.HasValue) + { + ProbeWriteInt(v2, tag, writeInt.Value); + ProbeRead(v2, tag); + result = v2.PublishWriteComplete(out completeWrites); + Console.WriteLine($"publish_write_complete_after_write_error=0x{result.ErrorCode:X8}"); + Console.WriteLine($"publish_write_complete_after_write_count={completeWrites?.Length ?? 0}"); + if (completeWrites is not null) + { + for (int i = 0; i < completeWrites.Length; i++) + { + Console.WriteLine($"publish_write_complete_after_write[{i}]=handle:{completeWrites[i].WriteHandle} handle_specified:{completeWrites[i].WriteHandleSpecified} status_items:{completeWrites[i].Status?.Length ?? 0}"); + PrintStatuses($"publish_write_complete_after_write[{i}].status", completeWrites[i].Status); + } + } + } + + if (unregister) + { + ProbeUnregister(v2, tag, registeredItem); + } + } + } + else if (connect && proxy is ASBDataProxy v1) + { + bool connected = v1.Connect(out string connectError); + Console.WriteLine($"connect_v1={connected}"); + Console.WriteLine($"connect_v1_error={connectError.Replace(Environment.NewLine, " ")}"); + } + } + catch (Exception ex) + { + Console.WriteLine($"selector_error_exception={ex.GetType().FullName}: {ex.Message}"); + } + } + + private static V2ItemIdentity? ProbeRegister(ASBDataV2Proxy proxy, string tag) + { + V2ItemIdentity[] items = [CreateAbsoluteItem(tag)]; + var result = proxy.RegisterItems(out V2ItemStatus[] statuses, out V2ItemRegistration[] capabilities, RequireId: true, RegisterOnly: true, items); + Console.WriteLine($"register_error=0x{result.ErrorCode:X8} status=0x{result.Status:X8} specific=0x{result.SpecificErrorCode:X8}"); + PrintStatuses("register_status", statuses); + if (capabilities is not null) + { + for (int i = 0; i < capabilities.Length; i++) + { + Console.WriteLine($"register_capability[{i}]=id:{capabilities[i].Id} id_specified:{capabilities[i].IdSpecified} write_capability:{capabilities[i].WriteCapability} write_specified:{capabilities[i].WriteCapabilitySpecified}"); + } + } + + return statuses is { Length: > 0 } ? statuses[0].Item : null; + } + + private static void ProbeUnregister(ASBDataV2Proxy proxy, string tag, V2ItemIdentity? registeredItem) + { + V2ItemIdentity[] items = [registeredItem ?? CreateAbsoluteItem(tag)]; + var result = proxy.UnregisterItems(out V2ItemStatus[] statuses, items); + Console.WriteLine($"unregister_error=0x{result.ErrorCode:X8} status=0x{result.Status:X8} specific=0x{result.SpecificErrorCode:X8}"); + PrintStatuses("unregister_status", statuses); + } + + private static void ProbeRead(ASBDataV2Proxy proxy, string tag) + { + V2ItemIdentity[] items = [CreateAbsoluteItem(tag)]; + var result = proxy.Read(out V2ItemStatus[] statuses, out V2RuntimeValue[] values, items); + Console.WriteLine($"read_error=0x{result.ErrorCode:X8} status=0x{result.Status:X8} specific=0x{result.SpecificErrorCode:X8}"); + PrintStatuses("read_status", statuses); + if (values is not null) + { + for (int i = 0; i < values.Length; i++) + { + V2RuntimeValue value = values[i]; + PrintVariant($"read_value[{i}]", value.Value); + Console.WriteLine($"read_value[{i}].timestamp={value.Timestamp:o} timestamp_specified={value.TimestampSpecified}"); + Console.WriteLine($"read_value[{i}].status_count={value.Status.Count} status_payload_len={value.Status.Payload?.Length ?? 0}"); + } + } + } + + private static void ProbeWriteInt(ASBDataV2Proxy proxy, string tag, int value) + { + V2ItemIdentity[] items = [CreateAbsoluteItem(tag)]; + V2WriteValue[] values = + [ + new V2WriteValue + { + Value = V2VariantFactory.MakeVariantValue(value), + Comment = "AsbProxyProbe write-int", + }, + ]; + + const uint writeHandle = 0xA5B20001; + var result = proxy.Write(out V2ItemStatus[] statuses, items, values, writeHandle); + Console.WriteLine($"write_error=0x{result.ErrorCode:X8} status=0x{result.Status:X8} specific=0x{result.SpecificErrorCode:X8} handle=0x{writeHandle:X8}"); + PrintStatuses("write_status", statuses); + } + + private static V2ItemIdentity CreateAbsoluteItem(string tag) + { + return new V2ItemIdentity + { + Type = (ushort)ArchestrAServices.ASBIDataV2Contract.ItemIdentityType.Name, + ReferenceType = (ushort)ArchestrAServices.ASBIDataV2Contract.ItemReferenceType.Absolute, + Name = tag, + ContextName = string.Empty, + }; + } + + private static void DumpRegisterPayload(string tag) + { + V2ItemIdentity[] items = [CreateAbsoluteItem(tag)]; + using var stream = new System.IO.MemoryStream(); + var writer = new System.IO.BinaryWriter(stream); + items[0].WriteArrayToStream(items, ref writer); + byte[] payload = stream.ToArray(); + Console.WriteLine($"register_payload_len={payload.Length}"); + Console.WriteLine($"register_payload_b64={Convert.ToBase64String(payload)}"); + } + + private static void PrintStatuses(string prefix, V2ItemStatus[]? statuses) + { + if (statuses is null) + { + return; + } + + for (int i = 0; i < statuses.Length; i++) + { + V2ItemStatus status = statuses[i]; + Console.WriteLine($"{prefix}[{i}]=item:{status.Item.Name} id:{status.Item.Id} id_specified:{status.Item.IdSpecified} error:0x{status.ErrorCode:X8} error_specified:{status.ErrorCodeSpecified} status_count:{status.Status.Count} status_payload_len:{status.Status.Payload?.Length ?? 0}"); + } + } + + private static void PrintVariant(string prefix, V2Variant variant) + { + string preview = string.Empty; + if (variant.Payload is { Length: > 0 }) + { + preview = variant.Type switch + { + 0 when variant.Payload.Length >= 1 => variant.Payload[0].ToString(System.Globalization.CultureInfo.InvariantCulture), + 1 when variant.Payload.Length >= 1 => ((char)variant.Payload[0]).ToString(), + 2 when variant.Payload.Length >= 2 => BitConverter.ToInt16(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 3 when variant.Payload.Length >= 2 => BitConverter.ToUInt16(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 4 when variant.Payload.Length >= 4 => BitConverter.ToInt32(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 5 when variant.Payload.Length >= 4 => BitConverter.ToUInt32(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 6 when variant.Payload.Length >= 8 => BitConverter.ToInt64(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 7 when variant.Payload.Length >= 8 => BitConverter.ToUInt64(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 8 when variant.Payload.Length >= 4 => BitConverter.ToSingle(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 9 when variant.Payload.Length >= 8 => BitConverter.ToDouble(variant.Payload, 0).ToString(System.Globalization.CultureInfo.InvariantCulture), + 10 => Encoding.Unicode.GetString(variant.Payload), + 11 when variant.Payload.Length >= 8 => DateTime.FromFileTimeUtc(BitConverter.ToInt64(variant.Payload, 0)).ToString("o"), + 17 when variant.Payload.Length >= 1 => BitConverter.ToBoolean(variant.Payload, 0).ToString(), + 18 when variant.Payload.Length >= 1 => ((sbyte)variant.Payload[0]).ToString(System.Globalization.CultureInfo.InvariantCulture), + _ => BitConverter.ToString(variant.Payload).Replace("-", string.Empty), + }; + } + + Console.WriteLine($"{prefix}=type:{variant.Type} length:{variant.Length} payload_len:{variant.Payload?.Length ?? 0} preview:{preview}"); + } + + private static string[] GetStrings(string[] args, string name) + { + string prefix = name + "="; + return args + .Where(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase)) + .Select(arg => arg.Substring(prefix.Length)) + .Where(value => !string.IsNullOrWhiteSpace(value)) + .ToArray(); + } + + private static string? GetString(string[] args, string name) + { + string prefix = name + "="; + return args.FirstOrDefault(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))?.Substring(prefix.Length); + } + + private static int? GetInt(string[] args, string name) + { + string? value = GetString(args, name); + return int.TryParse(value, System.Globalization.NumberStyles.Integer, System.Globalization.CultureInfo.InvariantCulture, out int result) + ? result + : null; + } + + private static bool HasFlag(string[] args, string name) + { + return args.Any(arg => arg.Equals(name, StringComparison.OrdinalIgnoreCase)); + } +} diff --git a/src/MxAsbClient.Probe/MxAsbClient.Probe.csproj b/src/MxAsbClient.Probe/MxAsbClient.Probe.csproj new file mode 100644 index 0000000..3a923e3 --- /dev/null +++ b/src/MxAsbClient.Probe/MxAsbClient.Probe.csproj @@ -0,0 +1,15 @@ + + + + + + + + Exe + net10.0-windows + enable + enable + x64 + + + diff --git a/src/MxAsbClient.Probe/Program.cs b/src/MxAsbClient.Probe/Program.cs new file mode 100644 index 0000000..0d4fb73 --- /dev/null +++ b/src/MxAsbClient.Probe/Program.cs @@ -0,0 +1,830 @@ +using MxAsbClient; +using System.Globalization; + +string endpoint = GetArg(args, "--endpoint") + ?? "net.tcp://desktop-6jl3kko/ASBService/Default_ZB_MxDataProvider/IDataV2"; +string[] tags = GetArgs(args, "--tag"); +if (tags.Length == 0) +{ + tags = ["TestChildObject.TestInt"]; +} + +string tag = tags[0]; +string? solution = GetArg(args, "--solution"); +bool dumpMessages = HasArg(args, "--dump-messages"); +bool subscribe = HasArg(args, "--subscribe"); +bool subscribeBuffered = HasArg(args, "--subscribe-buffered"); +bool compatibilitySubscribe = HasArg(args, "--compat-subscribe"); +bool probeConnectFailure = HasArg(args, "--probe-connect-failure"); +bool probeReconnect = HasArg(args, "--probe-reconnect"); +bool probeCanceledCleanup = HasArg(args, "--probe-canceled-cleanup"); +bool probeOperationCompleteCandidates = HasArg(args, "--probe-operation-complete-candidates"); +int publishCount = TryGetInt(args, "--publish-count") ?? 3; +int subscribeSampleMs = TryGetInt(args, "--subscribe-sample-ms") ?? 1000; +int publishDelayMs = TryGetInt(args, "--publish-delay-ms") ?? 500; +int reconnectAttempts = TryGetInt(args, "--reconnect-attempts") ?? 2; +int reconnectDelayMs = TryGetInt(args, "--reconnect-delay-ms") ?? 250; +int cleanupDisconnectTimeoutMs = TryGetInt(args, "--cleanup-disconnect-timeout-ms") ?? 30000; +int cleanupCloseTimeoutMs = TryGetInt(args, "--cleanup-close-timeout-ms") ?? 30000; +bool waitWriteComplete = HasArg(args, "--wait-write-complete"); +int writeCompleteTimeoutMs = TryGetInt(args, "--write-complete-timeout-ms") ?? 5000; +int writeCompletePollMs = TryGetInt(args, "--write-complete-poll-ms") ?? 250; +int writeReadbackDelayMs = TryGetInt(args, "--write-readback-delay-ms") ?? 0; +Variant? writeVariant = GetWriteVariant(args); +bool probeErrorCases = HasArg(args, "--probe-error-cases"); +bool probeInvalidTargets = probeErrorCases || HasArg(args, "--probe-invalid-targets"); +bool probeWrongTypeWrite = probeErrorCases || HasArg(args, "--probe-wrong-type-write"); +bool probeInvalidCleanup = probeErrorCases || HasArg(args, "--probe-invalid-cleanup"); +bool probeEmptyPublish = probeErrorCases || HasArg(args, "--probe-empty-publish"); +string invalidTag = GetArg(args, "--invalid-tag") ?? "DefinitelyMissingObject.DefinitelyMissingAttribute"; +string wrongTypeWriteTag = GetArg(args, "--wrong-type-write-tag") ?? tag; +int errorPublishCount = TryGetInt(args, "--error-publish-count") ?? 2; +int errorWriteCompleteTimeoutMs = TryGetInt(args, "--error-write-complete-timeout-ms") ?? 2000; +int errorWriteCompletePollMs = TryGetInt(args, "--error-write-complete-poll-ms") ?? 250; + +Console.WriteLine($"process=x64:{Environment.Is64BitProcess}"); +Console.WriteLine($"endpoint={endpoint}"); +Console.WriteLine($"tags={string.Join(",", tags)}"); +if (args.Any(arg => arg.Equals("--dump-register-payload", StringComparison.OrdinalIgnoreCase))) +{ + byte[] payload = AsbPayloadDebug.SerializeItemsForDebug(tag); + Console.WriteLine($"register_payload_len={payload.Length}"); + Console.WriteLine($"register_payload_b64={Convert.ToBase64String(payload)}"); + return; +} + +if (probeConnectFailure) +{ + try + { + using MxAsbDataClient connectFailureClient = MxAsbDataClient.Connect(endpoint, solution, Console.WriteLine, dumpMessages); + Console.WriteLine("connect_failure_observed=False"); + } + catch (Exception ex) + { + Console.WriteLine("connect_failure_observed=True"); + Console.WriteLine($"connect_failure_exception={FormatException(ex)}"); + if (ex.InnerException is not null) + { + Console.WriteLine($"connect_failure_inner_exception={FormatException(ex.InnerException)}"); + } + } + + return; +} + +if (compatibilitySubscribe) +{ + RunCompatibilitySubscribe(endpoint, solution, tags, dumpMessages, publishCount, subscribeSampleMs, publishDelayMs); + return; +} + +using MxAsbDataClient client = MxAsbDataClient.Connect(endpoint, solution, Console.WriteLine, dumpMessages); +int publishedEventCount = 0; +client.PublishedValueReceived += (_, value) => +{ + publishedEventCount++; + Console.WriteLine($"published_event[{publishedEventCount - 1}]=item:{value.ItemName ?? string.Empty} id:{value.ItemId} type:{value.VariantType} quality:{FormatNullableHex(value.Quality)} timestamp:{value.TimestampUtc:O} preview:{value.Preview}"); +}; +Console.WriteLine("connect=True"); + +RegisterItemsResponse register = client.RegisterMany(tags); +Console.WriteLine($"register_error=0x{register.Result.ErrorCode:X8} status=0x{register.Result.Status:X8} specific=0x{register.Result.SpecificErrorCode:X8}"); +PrintStatuses("register_status", register.Status); +ItemIdentity[] registeredItems = register.Status?.Select(status => status.Item).ToArray() ?? []; +IReadOnlyDictionary itemNamesById = AsbPublishMapper.CreateItemNameMap(register.Status); + +ReadResponse read = client.ReadMany(tags); +Console.WriteLine($"read_error=0x{read.Result.ErrorCode:X8} status=0x{read.Result.Status:X8} specific=0x{read.Result.SpecificErrorCode:X8}"); +PrintStatuses("read_status", read.Status); +PrintValues("read_value", read.Values); + +if (probeReconnect) +{ + AsbReconnectResult reconnect = client.Reconnect(new AsbReconnectOptions + { + MaxAttempts = reconnectAttempts, + Delay = TimeSpan.FromMilliseconds(reconnectDelayMs), + CleanupOptions = new AsbClientCleanupOptions + { + DisconnectTimeout = TimeSpan.FromMilliseconds(cleanupDisconnectTimeoutMs), + CloseTimeout = TimeSpan.FromMilliseconds(cleanupCloseTimeoutMs), + }, + }); + Console.WriteLine($"reconnect_succeeded={reconnect.Succeeded} attempts={reconnect.Attempts.Count}"); + PrintCleanup("reconnect_cleanup", reconnect.CleanupResult); + for (int i = 0; i < reconnect.Attempts.Count; i++) + { + AsbReconnectAttempt attempt = reconnect.Attempts[i]; + Console.WriteLine($"reconnect_attempt[{i}]=attempt:{attempt.Attempt} succeeded:{attempt.Succeeded} exception:{attempt.Exception?.GetType().Name ?? string.Empty}"); + } + + if (reconnect.Client is not null) + { + using MxAsbDataClient reconnectedClient = reconnect.Client; + RegisterItemsResponse reconnectRegister = reconnectedClient.RegisterMany(tags); + Console.WriteLine($"reconnect_register_error=0x{reconnectRegister.Result.ErrorCode:X8} status=0x{reconnectRegister.Result.Status:X8} specific=0x{reconnectRegister.Result.SpecificErrorCode:X8}"); + PrintStatuses("reconnect_register_status", reconnectRegister.Status); + + ReadResponse reconnectRead = reconnectedClient.ReadMany(tags); + Console.WriteLine($"reconnect_read_error=0x{reconnectRead.Result.ErrorCode:X8} status=0x{reconnectRead.Result.Status:X8} specific=0x{reconnectRead.Result.SpecificErrorCode:X8}"); + PrintStatuses("reconnect_read_status", reconnectRead.Status); + PrintValues("reconnect_read_value", reconnectRead.Values); + } + + return; +} + +if (probeCanceledCleanup) +{ + AsbClientCleanupResult cleanup = client.Cleanup(new AsbClientCleanupOptions + { + DisconnectTimeout = TimeSpan.FromMilliseconds(cleanupDisconnectTimeoutMs), + CloseTimeout = TimeSpan.FromMilliseconds(cleanupCloseTimeoutMs), + CancellationToken = new CancellationToken(canceled: true), + }); + PrintCleanup("canceled_cleanup", cleanup); + return; +} + +if (probeInvalidTargets) +{ + RunInvalidTargetProbe(client, invalidTag, errorWriteCompleteTimeoutMs, errorWriteCompletePollMs); +} + +if (probeWrongTypeWrite) +{ + RunWrongTypeWriteProbe(client, wrongTypeWriteTag, errorWriteCompleteTimeoutMs, errorWriteCompletePollMs); +} + +if (probeInvalidCleanup) +{ + RunInvalidCleanupProbe(client, subscribeSampleMs); +} + +if (probeEmptyPublish) +{ + RunEmptyPublishProbe(client, errorPublishCount, subscribeSampleMs, publishDelayMs); +} + +if (probeOperationCompleteCandidates) +{ + RunOperationCompleteCandidateProbe(client, tags, subscribeSampleMs, publishDelayMs); + return; +} + +if (subscribe) +{ + long subscriptionId = 0; + try + { + CreateSubscriptionResponse create = client.CreateSubscription(maxQueueSize: 128, sampleInterval: (ulong)subscribeSampleMs); + subscriptionId = create.SubscriptionId; + Console.WriteLine($"create_subscription_error=0x{create.Result.ErrorCode:X8} status=0x{create.Result.Status:X8} specific=0x{create.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + + AddMonitoredItemsResponse add = client.AddMonitoredItems(subscriptionId, tags, (ulong)subscribeSampleMs, buffered: subscribeBuffered); + Console.WriteLine($"add_monitored_error=0x{add.Result.ErrorCode:X8} status=0x{add.Result.Status:X8} specific=0x{add.Result.SpecificErrorCode:X8}"); + PrintStatuses("add_monitored_status", add.Status); + itemNamesById = AsbPublishMapper.CreateItemNameMap(register.Status, add.Status); + ItemIdentity[] monitoredItems = add.Status?.Select(status => status.Item).ToArray() ?? []; + + for (int i = 0; i < publishCount; i++) + { + if (i > 0 && publishDelayMs > 0) + { + Thread.Sleep(TimeSpan.FromMilliseconds(publishDelayMs)); + } + + AsbPublishResult mapped = client.PublishValues(subscriptionId); + PublishResponse publish = mapped.Response; + Console.WriteLine($"publish[{i}]_error=0x{publish.Result.ErrorCode:X8} status=0x{publish.Result.Status:X8} specific=0x{publish.Result.SpecificErrorCode:X8}"); + PrintStatuses($"publish[{i}]_status", publish.Status); + PrintMonitoredValues($"publish[{i}]_value", publish.Values); + PrintPublishedValues($"publish[{i}]_mapped", mapped.Values); + } + + if (monitoredItems.Length > 0) + { + DeleteMonitoredItemsResponse deleteItems = client.DeleteMonitoredItems(subscriptionId, monitoredItems); + Console.WriteLine($"delete_monitored_error=0x{deleteItems.Result.ErrorCode:X8} status=0x{deleteItems.Result.Status:X8} specific=0x{deleteItems.Result.SpecificErrorCode:X8}"); + PrintStatuses("delete_monitored_status", deleteItems.Status); + } + } + finally + { + if (subscriptionId != 0) + { + DeleteSubscriptionResponse delete = client.DeleteSubscription(subscriptionId); + Console.WriteLine($"delete_subscription_error=0x{delete.Result.ErrorCode:X8} status=0x{delete.Result.Status:X8} specific=0x{delete.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + } + } +} + +if (writeVariant.HasValue) +{ + const uint writeHandle = 0xA5B21001; + WriteResponse write = client.Write(tag, writeVariant.Value, writeHandle, "MxAsbClient probe write"); + Console.WriteLine($"write_error=0x{write.Result.ErrorCode:X8} status=0x{write.Result.Status:X8} specific=0x{write.Result.SpecificErrorCode:X8} handle=0x{writeHandle:X8}"); + PrintStatuses("write_status", write.Status); + + if (waitWriteComplete) + { + AsbWriteCompletionOptions options = new() + { + Timeout = TimeSpan.FromMilliseconds(writeCompleteTimeoutMs), + PollInterval = TimeSpan.FromMilliseconds(writeCompletePollMs), + ReadbackDelay = TimeSpan.FromMilliseconds(writeReadbackDelayMs), + }; + AsbWriteCompletionReadbackResult completionAndReadback = client.WaitForWriteCompleteAndRead(tag, writeHandle, options); + AsbWriteCompletionResult completion = completionAndReadback.Completion; + Console.WriteLine($"write_completion handle=0x{completion.WriteHandle:X8} completed={completion.Completed} timed_out={completion.TimedOut} elapsed_ms={(long)completion.Elapsed.TotalMilliseconds} polls={completion.PollCount} raw_count={completion.CompleteWrites.Count}"); + for (int i = 0; i < completion.Responses.Count; i++) + { + PublishWriteCompleteResponse response = completion.Responses[i]; + Console.WriteLine($"write_completion_poll[{i}]_error=0x{response.Result.ErrorCode:X8} status=0x{response.Result.Status:X8} specific=0x{response.Result.SpecificErrorCode:X8} count={response.CompleteWrites?.Length ?? 0}"); + } + + PrintWriteCompletes("write_completion_raw", completion.CompleteWrites); + if (completion.MatchingComplete.HasValue) + { + PrintWriteCompletes("write_completion_match", [completion.MatchingComplete.Value]); + } + + if (writeReadbackDelayMs > 0 && completion.Completed) + { + Console.WriteLine($"read_after_write_delay_ms={writeReadbackDelayMs}"); + } + + if (completionAndReadback.Readback is not null) + { + read = completionAndReadback.Readback; + Console.WriteLine($"read_after_write_error=0x{read.Result.ErrorCode:X8} status=0x{read.Result.Status:X8} specific=0x{read.Result.SpecificErrorCode:X8}"); + PrintStatuses("read_after_write_status", read.Status); + PrintValues("read_after_write_value", read.Values); + } + } + else + { + PublishWriteCompleteResponse complete = client.PublishWriteComplete(); + Console.WriteLine($"publish_write_complete_error=0x{complete.Result.ErrorCode:X8} status=0x{complete.Result.Status:X8} specific=0x{complete.Result.SpecificErrorCode:X8}"); + Console.WriteLine($"publish_write_complete_count={complete.CompleteWrites?.Length ?? 0}"); + PrintWriteCompletes("publish_write_complete", complete.CompleteWrites ?? []); + + if (writeReadbackDelayMs > 0) + { + Console.WriteLine($"read_after_write_delay_ms={writeReadbackDelayMs}"); + Thread.Sleep(TimeSpan.FromMilliseconds(writeReadbackDelayMs)); + } + + read = client.Read(tag); + Console.WriteLine($"read_after_write_error=0x{read.Result.ErrorCode:X8} status=0x{read.Result.Status:X8} specific=0x{read.Result.SpecificErrorCode:X8}"); + PrintStatuses("read_after_write_status", read.Status); + PrintValues("read_after_write_value", read.Values); + } +} + +UnregisterItemsResponse unregister = registeredItems.Length > 0 + ? client.UnregisterMany(registeredItems) + : client.Unregister(tag); +Console.WriteLine($"unregister_error=0x{unregister.Result.ErrorCode:X8} status=0x{unregister.Result.Status:X8} specific=0x{unregister.Result.SpecificErrorCode:X8}"); +PrintStatuses("unregister_status", unregister.Status); + +static void PrintStatuses(string prefix, ItemStatus[]? statuses) +{ + if (statuses is null) + { + return; + } + + for (int i = 0; i < statuses.Length; i++) + { + ItemStatus status = statuses[i]; + AsbItemStatusSummary summary = AsbResultMapper.ToItemSummary(status); + Console.WriteLine($"{prefix}[{i}]=item:{status.Item.Name} id:{status.Item.Id} id_specified:{status.Item.IdSpecified} error:0x{status.ErrorCode:X8} error_name:{summary.Error} error_specified:{status.ErrorCodeSpecified} status_count:{status.Status.Count} status_payload_len:{status.Status.Payload?.Length ?? 0} status:{FormatStatusElements(summary.Status)}"); + } +} + +static void PrintValues(string prefix, RuntimeValue[]? values) +{ + if (values is null) + { + return; + } + + for (int i = 0; i < values.Length; i++) + { + RuntimeValue value = values[i]; + Console.WriteLine($"{prefix}[{i}]=type:{value.Value.Type} length:{value.Value.Length} payload_len:{value.Value.Payload?.Length ?? 0} preview:{MxAsbDataClient.FormatVariant(value.Value)}"); + Console.WriteLine($"{prefix}[{i}].timestamp={value.Timestamp:o} timestamp_specified={value.TimestampSpecified}"); + Console.WriteLine($"{prefix}[{i}].status_count={value.Status.Count} status_payload_len={value.Status.Payload?.Length ?? 0} status:{FormatStatusElements(AsbPublishMapper.DecodeStatus(value.Status))}"); + } +} + +static void PrintMonitoredValues(string prefix, MonitoredItemValue[]? values) +{ + if (values is null) + { + return; + } + + for (int i = 0; i < values.Length; i++) + { + MonitoredItemValue item = values[i]; + RuntimeValue value = item.Value; + Console.WriteLine($"{prefix}[{i}]=item:{item.Item.Name} id:{item.Item.Id} id_specified:{item.Item.IdSpecified} type:{value.Value.Type} length:{value.Value.Length} payload_len:{value.Value.Payload?.Length ?? 0} preview:{MxAsbDataClient.FormatVariant(value.Value)}"); + Console.WriteLine($"{prefix}[{i}].timestamp={value.Timestamp:o} timestamp_specified={value.TimestampSpecified}"); + Console.WriteLine($"{prefix}[{i}].status_count={value.Status.Count} status_payload_len={value.Status.Payload?.Length ?? 0}"); + Console.WriteLine($"{prefix}[{i}].userdata_type={item.UserData.Type} userdata_length={item.UserData.Length} userdata_payload_len={item.UserData.Payload?.Length ?? 0}"); + } +} + +static void PrintPublishedValues(string prefix, IReadOnlyList values) +{ + for (int i = 0; i < values.Count; i++) + { + AsbPublishedValue value = values[i]; + Console.WriteLine($"{prefix}[{i}]=item:{value.ItemName ?? string.Empty} id:{value.ItemId} type:{value.VariantType} quality:{FormatNullableHex(value.Quality)} timestamp:{value.TimestampUtc:O} preview:{value.Preview}"); + Console.WriteLine($"{prefix}[{i}].status={FormatStatusElements(value.Status)} raw_count:{value.RawStatus.Count} raw_payload_len:{value.RawStatus.Payload?.Length ?? 0}"); + } +} + +static void PrintWriteCompletes(string prefix, IReadOnlyList writes) +{ + for (int i = 0; i < writes.Count; i++) + { + ItemWriteComplete item = writes[i]; + Console.WriteLine($"{prefix}[{i}]=handle:{item.WriteHandle} handle_hex:0x{item.WriteHandle:X8} handle_specified:{item.WriteHandleSpecified} status_items:{item.Status?.Length ?? 0}"); + PrintStatuses($"{prefix}[{i}].status", item.Status); + } +} + +static void PrintPublishWriteComplete(string prefix, PublishWriteCompleteResponse response) +{ + Console.WriteLine($"{prefix}_write_complete_error=0x{response.Result.ErrorCode:X8} status=0x{response.Result.Status:X8} specific=0x{response.Result.SpecificErrorCode:X8} count={response.CompleteWrites?.Length ?? 0}"); + PrintWriteCompletes($"{prefix}_write_complete", response.CompleteWrites ?? []); +} + +static string FormatStatusElements(IReadOnlyList status) +{ + return status.Count == 0 + ? string.Empty + : string.Join("|", status.Select(item => $"{item.Type}:{item.Value}")); +} + +static string FormatNullableHex(ushort? value) +{ + return value.HasValue ? $"0x{value.Value:X4}" : string.Empty; +} + +static void RunInvalidTargetProbe(MxAsbDataClient client, string invalidTag, int writeCompleteTimeoutMs, int writeCompletePollMs) +{ + Console.WriteLine($"probe_invalid_targets tag={invalidTag}"); + + RegisterItemsResponse register = client.RegisterMany([invalidTag]); + Console.WriteLine($"invalid_register_error=0x{register.Result.ErrorCode:X8} status=0x{register.Result.Status:X8} specific=0x{register.Result.SpecificErrorCode:X8}"); + PrintStatuses("invalid_register_status", register.Status); + + ReadResponse read = client.ReadMany([invalidTag]); + Console.WriteLine($"invalid_read_error=0x{read.Result.ErrorCode:X8} status=0x{read.Result.Status:X8} specific=0x{read.Result.SpecificErrorCode:X8}"); + PrintStatuses("invalid_read_status", read.Status); + PrintValues("invalid_read_value", read.Values); + + const uint writeHandle = 0xA5B2E001; + WriteResponse write = client.Write(invalidTag, AsbVariantFactory.FromInt32(1), writeHandle, "MxAsbClient probe invalid-target write"); + Console.WriteLine($"invalid_write_error=0x{write.Result.ErrorCode:X8} status=0x{write.Result.Status:X8} specific=0x{write.Result.SpecificErrorCode:X8} handle=0x{writeHandle:X8}"); + PrintStatuses("invalid_write_status", write.Status); + + PrintWriteCompletionProbe(client, "invalid_write_completion", writeHandle, writeCompleteTimeoutMs, writeCompletePollMs); + + ItemIdentity[] registeredItems = register.Status?.Select(status => status.Item).ToArray() ?? []; + UnregisterItemsResponse unregister = registeredItems.Length > 0 + ? client.UnregisterMany(registeredItems) + : client.Unregister(invalidTag); + Console.WriteLine($"invalid_unregister_error=0x{unregister.Result.ErrorCode:X8} status=0x{unregister.Result.Status:X8} specific=0x{unregister.Result.SpecificErrorCode:X8}"); + PrintStatuses("invalid_unregister_status", unregister.Status); +} + +static void RunWrongTypeWriteProbe(MxAsbDataClient client, string tag, int writeCompleteTimeoutMs, int writeCompletePollMs) +{ + Console.WriteLine($"probe_wrong_type_write tag={tag}"); + const uint writeHandle = 0xA5B2E002; + WriteResponse write = client.Write(tag, AsbVariantFactory.FromString("wrong-type-write-probe"), writeHandle, "MxAsbClient probe wrong-type write"); + Console.WriteLine($"wrong_type_write_error=0x{write.Result.ErrorCode:X8} status=0x{write.Result.Status:X8} specific=0x{write.Result.SpecificErrorCode:X8} handle=0x{writeHandle:X8}"); + PrintStatuses("wrong_type_write_status", write.Status); + + PrintWriteCompletionProbe(client, "wrong_type_write_completion", writeHandle, writeCompleteTimeoutMs, writeCompletePollMs); + + ReadResponse read = client.Read(tag); + Console.WriteLine($"wrong_type_read_after_error=0x{read.Result.ErrorCode:X8} status=0x{read.Result.Status:X8} specific=0x{read.Result.SpecificErrorCode:X8}"); + PrintStatuses("wrong_type_read_after_status", read.Status); + PrintValues("wrong_type_read_after_value", read.Values); +} + +static void PrintWriteCompletionProbe( + MxAsbDataClient client, + string prefix, + uint writeHandle, + int writeCompleteTimeoutMs, + int writeCompletePollMs) +{ + AsbWriteCompletionOptions options = new() + { + Timeout = TimeSpan.FromMilliseconds(writeCompleteTimeoutMs), + PollInterval = TimeSpan.FromMilliseconds(writeCompletePollMs), + }; + AsbWriteCompletionResult completion = client.WaitForWriteComplete(writeHandle, options); + Console.WriteLine($"{prefix} handle=0x{completion.WriteHandle:X8} completed={completion.Completed} timed_out={completion.TimedOut} elapsed_ms={(long)completion.Elapsed.TotalMilliseconds} polls={completion.PollCount} raw_count={completion.CompleteWrites.Count}"); + for (int i = 0; i < completion.Responses.Count; i++) + { + PublishWriteCompleteResponse response = completion.Responses[i]; + Console.WriteLine($"{prefix}_poll[{i}]_error=0x{response.Result.ErrorCode:X8} status=0x{response.Result.Status:X8} specific=0x{response.Result.SpecificErrorCode:X8} count={response.CompleteWrites?.Length ?? 0}"); + } + + PrintWriteCompletes($"{prefix}_raw", completion.CompleteWrites); + if (completion.MatchingComplete.HasValue) + { + PrintWriteCompletes($"{prefix}_match", [completion.MatchingComplete.Value]); + } +} + +static void RunInvalidCleanupProbe(MxAsbDataClient client, int subscribeSampleMs) +{ + Console.WriteLine("probe_invalid_cleanup=True"); + long subscriptionId = 0; + try + { + CreateSubscriptionResponse create = client.CreateSubscription(maxQueueSize: 128, sampleInterval: (ulong)subscribeSampleMs); + subscriptionId = create.SubscriptionId; + Console.WriteLine($"invalid_cleanup_create_subscription_error=0x{create.Result.ErrorCode:X8} status=0x{create.Result.Status:X8} specific=0x{create.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + + ItemIdentity invalidItem = CreateInvalidItemIdentity(); + DeleteMonitoredItemsResponse deleteItems = client.DeleteMonitoredItems(subscriptionId, [invalidItem]); + Console.WriteLine($"invalid_cleanup_delete_monitored_error=0x{deleteItems.Result.ErrorCode:X8} status=0x{deleteItems.Result.Status:X8} specific=0x{deleteItems.Result.SpecificErrorCode:X8}"); + PrintStatuses("invalid_cleanup_delete_monitored_status", deleteItems.Status); + + long invalidSubscriptionId = subscriptionId == long.MaxValue ? subscriptionId - 1 : subscriptionId + 987654321; + DeleteSubscriptionResponse deleteInvalid = client.DeleteSubscription(invalidSubscriptionId); + Console.WriteLine($"invalid_cleanup_delete_subscription_error=0x{deleteInvalid.Result.ErrorCode:X8} status=0x{deleteInvalid.Result.Status:X8} specific=0x{deleteInvalid.Result.SpecificErrorCode:X8} subscription_id={invalidSubscriptionId}"); + } + finally + { + if (subscriptionId != 0) + { + DeleteSubscriptionResponse delete = client.DeleteSubscription(subscriptionId); + Console.WriteLine($"invalid_cleanup_delete_valid_subscription_error=0x{delete.Result.ErrorCode:X8} status=0x{delete.Result.Status:X8} specific=0x{delete.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + } + } +} + +static void RunEmptyPublishProbe(MxAsbDataClient client, int publishCount, int subscribeSampleMs, int publishDelayMs) +{ + Console.WriteLine("probe_empty_publish=True"); + long subscriptionId = 0; + try + { + CreateSubscriptionResponse create = client.CreateSubscription(maxQueueSize: 128, sampleInterval: (ulong)subscribeSampleMs); + subscriptionId = create.SubscriptionId; + Console.WriteLine($"empty_publish_create_subscription_error=0x{create.Result.ErrorCode:X8} status=0x{create.Result.Status:X8} specific=0x{create.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + + for (int i = 0; i < publishCount; i++) + { + if (i > 0 && publishDelayMs > 0) + { + Thread.Sleep(TimeSpan.FromMilliseconds(publishDelayMs)); + } + + AsbPublishResult mapped = client.PublishValues(subscriptionId); + PublishResponse publish = mapped.Response; + Console.WriteLine($"empty_publish[{i}]_error=0x{publish.Result.ErrorCode:X8} status=0x{publish.Result.Status:X8} specific=0x{publish.Result.SpecificErrorCode:X8}"); + PrintStatuses($"empty_publish[{i}]_status", publish.Status); + PrintMonitoredValues($"empty_publish[{i}]_value", publish.Values); + PrintPublishedValues($"empty_publish[{i}]_mapped", mapped.Values); + } + } + finally + { + if (subscriptionId != 0) + { + DeleteSubscriptionResponse delete = client.DeleteSubscription(subscriptionId); + Console.WriteLine($"empty_publish_delete_subscription_error=0x{delete.Result.ErrorCode:X8} status=0x{delete.Result.Status:X8} specific=0x{delete.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + } + } +} + +static void RunOperationCompleteCandidateProbe(MxAsbDataClient client, string[] tags, int subscribeSampleMs, int publishDelayMs) +{ + Console.WriteLine("probe_operation_complete_candidates=True"); + PrintPublishWriteComplete("operation_candidate_initial", client.PublishWriteComplete()); + + long subscriptionId = 0; + try + { + CreateSubscriptionResponse create = client.CreateSubscription(maxQueueSize: 128, sampleInterval: (ulong)subscribeSampleMs); + subscriptionId = create.SubscriptionId; + Console.WriteLine($"operation_candidate_create_subscription_error=0x{create.Result.ErrorCode:X8} status=0x{create.Result.Status:X8} specific=0x{create.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + PrintPublishWriteComplete("operation_candidate_after_create_subscription", client.PublishWriteComplete()); + + AddMonitoredItemsResponse add = client.AddMonitoredItems(subscriptionId, tags, (ulong)subscribeSampleMs); + Console.WriteLine($"operation_candidate_add_monitored_error=0x{add.Result.ErrorCode:X8} status=0x{add.Result.Status:X8} specific=0x{add.Result.SpecificErrorCode:X8}"); + PrintStatuses("operation_candidate_add_monitored_status", add.Status); + PrintPublishWriteComplete("operation_candidate_after_add_monitored", client.PublishWriteComplete()); + + if (publishDelayMs > 0) + { + Thread.Sleep(TimeSpan.FromMilliseconds(publishDelayMs)); + } + + PublishResponse publish = client.Publish(subscriptionId); + Console.WriteLine($"operation_candidate_publish_error=0x{publish.Result.ErrorCode:X8} status=0x{publish.Result.Status:X8} specific=0x{publish.Result.SpecificErrorCode:X8}"); + PrintStatuses("operation_candidate_publish_status", publish.Status); + PrintMonitoredValues("operation_candidate_publish_value", publish.Values); + PrintPublishWriteComplete("operation_candidate_after_publish", client.PublishWriteComplete()); + + ItemIdentity[] monitoredItems = add.Status?.Select(status => status.Item).ToArray() ?? []; + if (monitoredItems.Length > 0) + { + DeleteMonitoredItemsResponse deleteItems = client.DeleteMonitoredItems(subscriptionId, monitoredItems); + Console.WriteLine($"operation_candidate_delete_monitored_error=0x{deleteItems.Result.ErrorCode:X8} status=0x{deleteItems.Result.Status:X8} specific=0x{deleteItems.Result.SpecificErrorCode:X8}"); + PrintStatuses("operation_candidate_delete_monitored_status", deleteItems.Status); + PrintPublishWriteComplete("operation_candidate_after_delete_monitored", client.PublishWriteComplete()); + } + } + finally + { + if (subscriptionId != 0) + { + DeleteSubscriptionResponse delete = client.DeleteSubscription(subscriptionId); + Console.WriteLine($"operation_candidate_delete_subscription_error=0x{delete.Result.ErrorCode:X8} status=0x{delete.Result.Status:X8} specific=0x{delete.Result.SpecificErrorCode:X8} subscription_id={subscriptionId}"); + PrintPublishWriteComplete("operation_candidate_after_delete_subscription", client.PublishWriteComplete()); + } + } +} + +static ItemIdentity CreateInvalidItemIdentity() +{ + return new ItemIdentity + { + Type = (ushort)ItemIdentityType.Name, + ReferenceType = (ushort)ItemReferenceType.Absolute, + Name = "DefinitelyMissingObject.DefinitelyMissingAttribute", + ContextName = string.Empty, + Id = ulong.MaxValue, + IdSpecified = true, + }; +} + +static void RunCompatibilitySubscribe( + string endpoint, + string? solution, + string[] tags, + bool dumpMessages, + int publishCount, + int subscribeSampleMs, + int publishDelayMs) +{ + using MxAsbCompatibilityServer server = new(); + int dataChangeCount = 0; + server.DataChanged += (_, evt) => + { + dataChangeCount++; + Console.WriteLine($"compat_data_change[{dataChangeCount - 1}]=server:{evt.ServerHandle} item:{evt.ItemHandle} quality:0x{evt.Quality:X4} timestamp:{evt.TimestampUtc:O} value:{FormatObject(evt.Value)} status:{FormatStatusElements(evt.Status)}"); + }; + + int serverHandle = server.Register(endpoint, solution, Console.WriteLine, dumpMessages); + Console.WriteLine($"compat_register_server={serverHandle}"); + + AsbSubscriptionOptions subscriptionOptions = new() + { + MaxQueueSize = 128, + SampleInterval = (ulong)subscribeSampleMs, + }; + AsbMonitoredItemOptions monitoredItemOptions = new() + { + SampleInterval = (ulong)subscribeSampleMs, + }; + + int[] itemHandles = tags.Select(tag => + { + int itemHandle = server.AddItem(serverHandle, tag); + Console.WriteLine($"compat_add_item tag:{tag} item:{itemHandle}"); + server.Advise(serverHandle, itemHandle, subscriptionOptions, monitoredItemOptions); + Console.WriteLine($"compat_advise item:{itemHandle}"); + return itemHandle; + }).ToArray(); + + for (int i = 0; i < publishCount; i++) + { + if (i > 0 && publishDelayMs > 0) + { + Thread.Sleep(TimeSpan.FromMilliseconds(publishDelayMs)); + } + + AsbPublishResult result = server.Poll(serverHandle); + Console.WriteLine($"compat_poll[{i}] error=0x{result.Response.Result.ErrorCode:X8} values:{result.Values.Count}"); + } + + foreach (int itemHandle in itemHandles) + { + server.RemoveItem(serverHandle, itemHandle); + Console.WriteLine($"compat_remove_item item:{itemHandle}"); + } + + server.Unregister(serverHandle); + Console.WriteLine($"compat_unregister_server={serverHandle} data_changes={dataChangeCount}"); +} + +static string FormatObject(object? value) +{ + return value switch + { + null => string.Empty, + Array array => string.Join(",", array.Cast()), + DateTime dateTime => dateTime.ToString("O", CultureInfo.InvariantCulture), + TimeSpan timeSpan => timeSpan.ToString("c", CultureInfo.InvariantCulture), + IFormattable formattable => formattable.ToString(null, CultureInfo.InvariantCulture), + _ => value.ToString() ?? string.Empty, + }; +} + +static void PrintCleanup(string prefix, AsbClientCleanupResult? cleanup) +{ + if (cleanup is null) + { + return; + } + + Console.WriteLine($"{prefix}=completed:{cleanup.Completed} succeeded:{cleanup.Succeeded} abort:{cleanup.UsedAbortFallback} requires_new:{cleanup.RequiresNewConnection} disconnect_attempted:{cleanup.DisconnectAttempted} disconnect_sent:{cleanup.DisconnectSent} disconnect_failure:{cleanup.DisconnectFailure ?? string.Empty}"); + PrintCommunicationCleanup($"{prefix}.channel", cleanup.Channel); + PrintCommunicationCleanup($"{prefix}.factory", cleanup.Factory); +} + +static void PrintCommunicationCleanup(string prefix, CommunicationObjectCleanupResult cleanup) +{ + Console.WriteLine($"{prefix}=initial:{cleanup.InitialState} final:{cleanup.FinalState} close_attempted:{cleanup.CloseAttempted} closed:{cleanup.Closed} abort_attempted:{cleanup.AbortAttempted} aborted:{cleanup.Aborted} close_failure:{cleanup.CloseFailure ?? string.Empty} abort_failure:{cleanup.AbortFailure ?? string.Empty}"); +} + +static string? GetArg(string[] args, string name) +{ + string prefix = name + "="; + return args.FirstOrDefault(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))?.Substring(prefix.Length); +} + +static string[] GetArgs(string[] args, string name) +{ + string prefix = name + "="; + return args + .Where(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase)) + .Select(arg => arg.Substring(prefix.Length)) + .Where(value => !string.IsNullOrWhiteSpace(value)) + .ToArray(); +} + +static int? TryGetInt(string[] args, string name) +{ + return int.TryParse(GetArg(args, name), out int result) ? result : null; +} + +static Variant? GetWriteVariant(string[] args) +{ + int? writeInt = TryGetInt(args, "--write-int"); + if (writeInt.HasValue) + { + return AsbVariantFactory.FromInt32(writeInt.Value); + } + + string? writeBool = GetArg(args, "--write-bool"); + if (bool.TryParse(writeBool, out bool boolResult)) + { + return AsbVariantFactory.FromBoolean(boolResult); + } + + string? writeFloat = GetArg(args, "--write-float"); + if (float.TryParse(writeFloat, NumberStyles.Float, CultureInfo.InvariantCulture, out float floatResult)) + { + return AsbVariantFactory.FromSingle(floatResult); + } + + string? writeDouble = GetArg(args, "--write-double"); + if (double.TryParse(writeDouble, NumberStyles.Float, CultureInfo.InvariantCulture, out double doubleResult)) + { + return AsbVariantFactory.FromDouble(doubleResult); + } + + string? writeString = GetArg(args, "--write-string"); + if (writeString is not null) + { + return AsbVariantFactory.FromString(writeString); + } + + string? writeDateTime = GetArg(args, "--write-datetime"); + if (DateTime.TryParse( + writeDateTime, + CultureInfo.InvariantCulture, + DateTimeStyles.AssumeUniversal | DateTimeStyles.AdjustToUniversal, + out DateTime dateTimeResult)) + { + return AsbVariantFactory.FromDateTime(dateTimeResult); + } + + if (TryParseArray(args, "--write-int-array", int.TryParse, out int[] intArray)) + { + return AsbVariantFactory.FromInt32Array(intArray); + } + + if (TryParseArray(args, "--write-bool-array", bool.TryParse, out bool[] boolArray)) + { + return AsbVariantFactory.FromBooleanArray(boolArray); + } + + if (TryParseFloatArray(args, "--write-float-array", out float[] floatArray)) + { + return AsbVariantFactory.FromSingleArray(floatArray); + } + + if (TryParseDoubleArray(args, "--write-double-array", out double[] doubleArray)) + { + return AsbVariantFactory.FromDoubleArray(doubleArray); + } + + string? writeStringArray = GetArg(args, "--write-string-array"); + if (writeStringArray is not null) + { + return AsbVariantFactory.FromStringArray(writeStringArray.Split('|')); + } + + if (TryParseDateTimeArray(args, "--write-datetime-array", out DateTime[] dateTimeArray)) + { + return AsbVariantFactory.FromDateTimeArray(dateTimeArray); + } + + return null; +} + +static bool TryParseArray(string[] args, string name, TryParse parser, out T[] values) +{ + string? raw = GetArg(args, name); + if (raw is null) + { + values = []; + return false; + } + + string[] parts = raw.Split(',', StringSplitOptions.TrimEntries); + values = new T[parts.Length]; + for (int i = 0; i < parts.Length; i++) + { + if (!parser(parts[i], out values[i])) + { + values = []; + return false; + } + } + + return true; +} + +static bool TryParseFloatArray(string[] args, string name, out float[] values) +{ + return TryParseArray(args, name, TryParseFloat, out values); +} + +static bool TryParseDoubleArray(string[] args, string name, out double[] values) +{ + return TryParseArray(args, name, TryParseDouble, out values); +} + +static bool TryParseDateTimeArray(string[] args, string name, out DateTime[] values) +{ + return TryParseArray(args, name, TryParseDateTime, out values); +} + +static bool TryParseFloat(string value, out float result) +{ + return float.TryParse(value, NumberStyles.Float, CultureInfo.InvariantCulture, out result); +} + +static bool TryParseDouble(string value, out double result) +{ + return double.TryParse(value, NumberStyles.Float, CultureInfo.InvariantCulture, out result); +} + +static bool TryParseDateTime(string value, out DateTime result) +{ + return DateTime.TryParse( + value, + CultureInfo.InvariantCulture, + DateTimeStyles.AssumeUniversal | DateTimeStyles.AdjustToUniversal, + out result); +} + +static bool HasArg(string[] args, string name) +{ + return args.Any(arg => arg.Equals(name, StringComparison.OrdinalIgnoreCase)); +} + +static string FormatException(Exception ex) +{ + return $"{ex.GetType().Name}:0x{ex.HResult:X8}:{ex.Message}"; +} + +delegate bool TryParse(string value, out T result); diff --git a/src/MxAsbClient.Tests/MxAsbClient.Tests.csproj b/src/MxAsbClient.Tests/MxAsbClient.Tests.csproj new file mode 100644 index 0000000..8622f86 --- /dev/null +++ b/src/MxAsbClient.Tests/MxAsbClient.Tests.csproj @@ -0,0 +1,13 @@ + + + + + + + Exe + net10.0-windows + enable + enable + x64 + + diff --git a/src/MxAsbClient.Tests/Program.cs b/src/MxAsbClient.Tests/Program.cs new file mode 100644 index 0000000..926af45 --- /dev/null +++ b/src/MxAsbClient.Tests/Program.cs @@ -0,0 +1,779 @@ +using MxAsbClient; +using System.ServiceModel; + +RunVariantFactoryTests(); +RunMonitoredItemValueTests(); +RunPublishMapperTests(); +RunCompatibilitySurfaceTests(); +RunConnectionOptionsTests(); +RunWriteOptionsTests(); +RunCollectionArgumentGuardTests(); +RunResultMapperTests(); +RunWriteCompletionOptionsTests(); +RunSubscriptionOptionsTests(); +RunCleanupOptionsTests(); +RunCommunicationCleanupTests(); +RunReconnectSurfaceTests(); + +Console.WriteLine("MxAsbClient ASB contract tests passed."); + +static void RunVariantFactoryTests() +{ + AssertVariant("bool", AsbDataType.TypeBool, 1, AsbVariantFactory.FromBoolean(true), true); + AssertVariant("int", AsbDataType.TypeInt32, 4, AsbVariantFactory.FromInt32(123), 123); + AssertVariant("float", AsbDataType.TypeFloat, 4, AsbVariantFactory.FromSingle(1.25f), 1.25f); + AssertVariant("double", AsbDataType.TypeDouble, 8, AsbVariantFactory.FromDouble(1.125d), 1.125d); + AssertVariant("string", AsbDataType.TypeString, 10, AsbVariantFactory.FromString("Alpha"), "Alpha"); + + DateTime timestamp = new(2026, 4, 26, 12, 34, 56, DateTimeKind.Utc); + AssertVariant("datetime", AsbDataType.TypeDateTime, 8, AsbVariantFactory.FromDateTime(timestamp), timestamp); + + TimeSpan duration = TimeSpan.FromSeconds(12.5); + AssertVariant("duration", AsbDataType.TypeDuration, 8, AsbVariantFactory.FromDuration(duration), duration); + + AssertVariant("int[]", AsbDataType.TypeInt32Array, 12, AsbVariantFactory.FromInt32Array([1, 2, 3]), new[] { 1, 2, 3 }); + AssertVariant("bool[]", AsbDataType.TypeBoolArray, 3, AsbVariantFactory.FromBooleanArray([true, false, true]), new[] { true, false, true }); + AssertVariant("float[]", AsbDataType.TypeFloatArray, 8, AsbVariantFactory.FromSingleArray([1.25f, 2.5f]), new[] { 1.25f, 2.5f }); + AssertVariant("double[]", AsbDataType.TypeDoubleArray, 16, AsbVariantFactory.FromDoubleArray([1.125d, 2.25d]), new[] { 1.125d, 2.25d }); + AssertVariant("string[]", AsbDataType.TypeStringArray, 18, AsbVariantFactory.FromStringArray(["A", "", "BC"]), new[] { "A", "", "BC" }); + AssertVariant("datetime[]", AsbDataType.TypeDateTimeArray, 16, AsbVariantFactory.FromDateTimeArray([timestamp, timestamp.AddMinutes(1)]), new[] { timestamp, timestamp.AddMinutes(1) }); + AssertVariant("duration[]", AsbDataType.TypeDurationArray, 16, AsbVariantFactory.FromDurationArray([duration, duration.Add(TimeSpan.FromSeconds(1))]), new[] { duration, duration.Add(TimeSpan.FromSeconds(1)) }); +} + +static void AssertVariant(string name, AsbDataType type, int length, Variant variant, T expected) +{ + AssertEqual(name + " type", (ushort)type, variant.Type); + AssertEqual(name + " length", length, variant.Length); + AssertEqual(name + " payload length", length, variant.Payload?.Length ?? 0); + + object? decoded = MxAsbDataClient.DecodeVariant(variant); + AssertValue(name + " decoded", expected, decoded); +} + +static void AssertValue(string name, T expected, object? actual) +{ + if (expected is Array expectedArray) + { + if (actual is not Array actualArray || expectedArray.Length != actualArray.Length) + { + throw new InvalidOperationException($"{name}: array mismatch."); + } + + for (int i = 0; i < expectedArray.Length; i++) + { + object? expectedItem = expectedArray.GetValue(i); + object? actualItem = actualArray.GetValue(i); + if (!Equals(expectedItem, actualItem)) + { + throw new InvalidOperationException($"{name}[{i}]: expected {expectedItem}, got {actualItem}."); + } + } + + return; + } + + if (!Equals(expected, actual)) + { + throw new InvalidOperationException($"{name}: expected {expected}, got {actual}."); + } +} + +static void AssertEqual(string name, T expected, T actual) +{ + if (!Equals(expected, actual)) + { + throw new InvalidOperationException($"{name}: expected {expected}, got {actual}."); + } +} + +static void AssertNotNull(string name, object? value) +{ + if (value is null) + { + throw new InvalidOperationException($"{name}: expected non-null."); + } +} + +static void AssertThrows(string name, Action action) + where TException : Exception +{ + try + { + action(); + } + catch (TException) + { + return; + } + + throw new InvalidOperationException($"{name}: expected {typeof(TException).Name}."); +} + +static void RunMonitoredItemValueTests() +{ + MonitoredItemValue original = new() + { + Item = new ItemIdentity + { + Type = (ushort)ItemIdentityType.Name, + ReferenceType = (ushort)ItemReferenceType.Absolute, + Name = "TestChildObject.TestInt", + ContextName = string.Empty, + Id = 123, + IdSpecified = true, + }, + Value = new RuntimeValue + { + Timestamp = new DateTime(2026, 4, 26, 16, 0, 0, DateTimeKind.Utc), + TimestampSpecified = true, + Value = AsbVariantFactory.FromInt32(412), + Status = new AsbStatus { Count = 0, Payload = [] }, + }, + UserData = AsbVariantFactory.Empty, + }; + + using MemoryStream stream = new(); + using BinaryWriter writer = new(stream, System.Text.Encoding.UTF8, leaveOpen: true); + original.WriteToStream(writer); + writer.Flush(); + stream.Position = 0; + + using BinaryReader reader = new(stream, System.Text.Encoding.UTF8, leaveOpen: true); + MonitoredItemValue decoded = new(); + decoded.InitializeFromStream(reader); + + AssertEqual("monitored item name", original.Item.Name, decoded.Item.Name); + AssertEqual("monitored item id", original.Item.Id, decoded.Item.Id); + AssertEqual("monitored value timestamp", original.Value.Timestamp, decoded.Value.Timestamp); + AssertValue("monitored value decoded", 412, MxAsbDataClient.DecodeVariant(decoded.Value.Value)); +} + +static void RunPublishMapperTests() +{ + AsbStatus status = new() + { + Count = 7, + Payload = [0x85, 0x06, 0x10, 0x00, 0x07, 0xC0, 0x00], + }; + IReadOnlyList elements = AsbPublishMapper.DecodeStatus(status); + AssertEqual("status count", 3, elements.Count); + AssertEqual("status category type", AsbStatusElementType.MxStatusCategory, elements[0].Type); + AssertEqual("status category value", (ushort)0, elements[0].Value); + AssertEqual("status detail type", AsbStatusElementType.MxStatusDetail, elements[1].Type); + AssertEqual("status detail value", (ushort)16, elements[1].Value); + AssertEqual("status quality type", AsbStatusElementType.MxQuality, elements[2].Type); + AssertEqual("status quality value", (ushort)0x00C0, elements[2].Value); + + MonitoredItemValue item = new() + { + Item = new ItemIdentity + { + Type = (ushort)ItemIdentityType.Id, + ReferenceType = (ushort)ItemReferenceType.Absolute, + Id = 456, + IdSpecified = true, + }, + Value = new RuntimeValue + { + Timestamp = new DateTime(2026, 4, 26, 16, 5, 0, DateTimeKind.Utc), + TimestampSpecified = true, + Value = AsbVariantFactory.FromString("mapped"), + Status = status, + }, + UserData = AsbVariantFactory.Empty, + }; + AsbPublishedValue mapped = AsbPublishMapper.ToPublishedValue(item, new Dictionary { [456] = "Test.Tag" }); + AssertEqual("published item name", "Test.Tag", mapped.ItemName); + AssertEqual("published quality", (ushort?)0x00C0, mapped.Quality); + AssertEqual("published preview", "mapped", mapped.Preview); + AssertEqual("published value", "mapped", mapped.Value); + AssertEqual("published status summary quality", AsbStatusQuality.Good, mapped.StatusSummary.Quality); + AssertEqual("published status summary detail", AsbMxStatusDetail.RequestTimedOut, mapped.StatusSummary.Detail); + + AsbPublishResult result = new( + new PublishResponse { Result = new ArchestrAResult { ErrorCode = 32, Success = false } }, + [mapped]); + AssertEqual("publish result summary", AsbErrorCode.PublishComplete, result.Result.Error); + AssertEqual("publish result success-like", true, result.Result.IsSuccessLike); + AssertEqual("publish result has values", true, result.HasValues); + + AsbPublishResult emptyResult = new( + new PublishResponse { Result = new ArchestrAResult { ErrorCode = 0, Success = true } }, + []); + AssertEqual("empty publish result summary", AsbErrorCode.Success, emptyResult.Result.Error); + AssertEqual("empty publish result success-like", true, emptyResult.Result.IsSuccessLike); + AssertEqual("empty publish result has values", false, emptyResult.HasValues); +} + +static void RunCompatibilitySurfaceTests() +{ + Type serverType = typeof(MxAsbCompatibilityServer); + AssertNotNull("asb compat data-change event", serverType.GetEvent(nameof(MxAsbCompatibilityServer.DataChanged))); + AssertNotNull("asb compat register", serverType.GetMethod( + nameof(MxAsbCompatibilityServer.Register), + [typeof(string), typeof(string), typeof(Action), typeof(bool)])); + AssertNotNull("asb compat register options", serverType.GetMethod(nameof(MxAsbCompatibilityServer.Register), [typeof(AsbConnectionOptions)])); + AssertNotNull("asb compat unregister", serverType.GetMethod(nameof(MxAsbCompatibilityServer.Unregister))); + AssertNotNull("asb compat add item", serverType.GetMethod(nameof(MxAsbCompatibilityServer.AddItem))); + AssertNotNull("asb compat remove item", serverType.GetMethod(nameof(MxAsbCompatibilityServer.RemoveItem))); + AssertNotNull("asb compat advise", serverType.GetMethod( + nameof(MxAsbCompatibilityServer.Advise), + [typeof(int), typeof(int), typeof(ulong), typeof(long)])); + AssertNotNull("asb compat advise options", serverType.GetMethod( + nameof(MxAsbCompatibilityServer.Advise), + [typeof(int), typeof(int), typeof(AsbSubscriptionOptions), typeof(AsbMonitoredItemOptions)])); + AssertNotNull("asb compat poll", serverType.GetMethod(nameof(MxAsbCompatibilityServer.Poll))); + AssertNotNull("asb buffered add monitored", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.AddMonitoredItems), + [typeof(long), typeof(IEnumerable), typeof(ulong), typeof(bool), typeof(bool)])); + AssertNotNull("asb options add monitored", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.AddMonitoredItems), + [typeof(long), typeof(IEnumerable), typeof(AsbMonitoredItemOptions)])); + + MxAsbDataChangeEvent dataChange = new( + ServerHandle: 1, + ItemHandle: 2, + Value: 412, + Quality: 0x00C0, + TimestampUtc: new DateTime(2026, 4, 26, 17, 0, 0, DateTimeKind.Utc), + Status: + [ + new AsbStatusElement(AsbStatusElementType.MxStatusCategory, 0), + new AsbStatusElement(AsbStatusElementType.MxStatusDetail, 0), + new AsbStatusElement(AsbStatusElementType.MxQuality, 0x00C0), + ]); + AssertEqual("compat status summary quality", AsbStatusQuality.Good, dataChange.StatusSummary.Quality); + AssertEqual("compat status summary error", AsbErrorCode.Success, dataChange.StatusSummary.StatusError); + + using MxAsbCompatibilityServer server = new(); + AssertThrows("unknown asb server handle", () => server.AddItem(404, "TestChildObject.TestInt")); +} + +static void RunConnectionOptionsTests() +{ + AssertNotNull("asb connect options overload", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.Connect), + [typeof(AsbConnectionOptions)])); + + AsbConnectionOptions defaultOptions = new(); + AssertEqual("default endpoint", string.Empty, defaultOptions.Endpoint); + AssertEqual("default solution", null, defaultOptions.SolutionName); + AssertEqual("default trace", null, defaultOptions.Trace); + AssertEqual("default dump messages", false, defaultOptions.DumpMessages); + + AsbConnectionOptions options = new() + { + Endpoint = "net.tcp://example/ASB/IDataV2", + SolutionName = "Galaxy", + Trace = _ => { }, + DumpMessages = true, + }; + options.Validate(); + AssertEqual("connection endpoint", "net.tcp://example/ASB/IDataV2", options.Endpoint); + AssertEqual("connection solution", "Galaxy", options.SolutionName); + AssertNotNull("connection trace", options.Trace); + AssertEqual("connection dump messages", true, options.DumpMessages); + + AssertThrows( + "empty endpoint options", + () => new AsbConnectionOptions { Endpoint = " " }.Validate()); + AssertThrows( + "null options connect", + () => MxAsbDataClient.Connect((AsbConnectionOptions)null!)); + AssertThrows( + "empty endpoint connect", + () => MxAsbDataClient.Connect(" ")); + AssertEqual("payload debug non-public", false, typeof(AsbPayloadDebug).IsPublic); +} + +static void RunWriteOptionsTests() +{ + AssertNotNull("asb write positional overload", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.Write), + [typeof(string), typeof(Variant), typeof(uint), typeof(string)])); + AssertNotNull("asb write options overload", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.Write), + [typeof(string), typeof(Variant), typeof(AsbWriteOptions)])); + + AsbWriteOptions defaultOptions = new(); + AssertEqual("write options default handle", 0u, defaultOptions.WriteHandle); + AssertEqual("write options default comment", null, defaultOptions.Comment); + + AsbWriteOptions options = new() + { + WriteHandle = 0xA5B21001, + Comment = "contract write", + }; + AssertEqual("write options handle", (uint)0xA5B21001, options.WriteHandle); + AssertEqual("write options comment", "contract write", options.Comment); + + MxAsbDataClient uninitializedClient = + (MxAsbDataClient)System.Runtime.CompilerServices.RuntimeHelpers.GetUninitializedObject(typeof(MxAsbDataClient)); + AssertThrows( + "write null options", + () => uninitializedClient.Write("Test.Tag", AsbVariantFactory.Empty, (AsbWriteOptions)null!)); +} + +static void RunCollectionArgumentGuardTests() +{ + MxAsbDataClient uninitializedClient = + (MxAsbDataClient)System.Runtime.CompilerServices.RuntimeHelpers.GetUninitializedObject(typeof(MxAsbDataClient)); + + AssertThrows( + "register many null tags", + () => uninitializedClient.RegisterMany(null!)); + AssertThrows( + "unregister many null items", + () => uninitializedClient.UnregisterMany(null!)); + AssertThrows( + "read many null tags", + () => uninitializedClient.ReadMany(null!)); + AssertThrows( + "add monitored null tags", + () => uninitializedClient.AddMonitoredItems(123, null!, AsbMonitoredItemOptions.Default)); + AssertThrows( + "delete monitored null items", + () => uninitializedClient.DeleteMonitoredItems(123, null!)); +} + +static void RunResultMapperTests() +{ + AsbResultSummary success = AsbResultMapper.ToSummary(new ArchestrAResult { ErrorCode = 0, Success = true }); + AssertEqual("success error", AsbErrorCode.Success, success.Error); + AssertEqual("success-like success", true, success.IsSuccessLike); + + AsbResultSummary publishComplete = AsbResultMapper.ToSummary(new ArchestrAResult { ErrorCode = 32, Success = false }); + AssertEqual("publish complete error", AsbErrorCode.PublishComplete, publishComplete.Error); + AssertEqual("publish complete success", false, publishComplete.IsSuccess); + AssertEqual("publish complete success-like", true, publishComplete.IsSuccessLike); + + AsbResultSummary unknown = AsbResultMapper.ToSummary(new ArchestrAResult { ErrorCode = 12345, Success = false }); + AssertEqual("unknown error", AsbErrorCode.Unknown, unknown.Error); + AssertEqual("unknown raw", 12345, unknown.RawErrorCode); + + AsbResultSummary outOfRange = AsbResultMapper.ToSummary(new ArchestrAResult { ErrorCode = 65536, Success = false }); + AssertEqual("out-of-range error", AsbErrorCode.Unknown, outOfRange.Error); + AssertEqual("out-of-range raw", 65536, outOfRange.RawErrorCode); + + AsbItemStatusSummary item = AsbResultMapper.ToItemSummary(new ItemStatus + { + Item = new ItemIdentity { Name = "Bad.Tag", Id = 42, IdSpecified = true }, + ErrorCode = 10, + Status = new AsbStatus { Count = 1, Payload = [0x85] }, + }); + AssertEqual("item status error", AsbErrorCode.InvalidMonitoredItems, item.Error); + AssertEqual("item status success", false, item.IsSuccess); + AssertEqual("item status element", AsbStatusElementType.MxStatusCategory, item.Status[0].Type); + AssertEqual("item status summary category", AsbMxStatusCategory.Ok, item.StatusSummary.Category); + + IReadOnlyList nullItems = AsbResultMapper.ToItemSummaries(null); + AssertEqual("item summaries null", 0, nullItems.Count); + + IReadOnlyList emptyItems = AsbResultMapper.ToItemSummaries([]); + AssertEqual("item summaries empty", 0, emptyItems.Count); + + IReadOnlyList oneItem = AsbResultMapper.ToItemSummaries( + [ + new ItemStatus + { + Item = new ItemIdentity { Name = "Good.Tag", Id = 43, IdSpecified = true }, + ErrorCode = 0, + Status = StatusBytes(0x05, 0x00, 0x00, 0x06, 0x00, 0x00, 0x07, 0xC0, 0x00), + }, + ]); + AssertEqual("item summaries one count", 1, oneItem.Count); + AssertEqual("item summaries one item", "Good.Tag", oneItem[0].ItemName); + AssertEqual("item summaries one error", AsbErrorCode.Success, oneItem[0].Error); + AssertEqual("item summaries one status", AsbStatusQuality.Good, oneItem[0].StatusSummary.Quality); + + AsbStatusSummary good = AsbResultMapper.ToStatusSummary(StatusBytes( + 0x05, 0x00, 0x00, + 0x06, 0x00, 0x00, + 0x07, 0xC0, 0x00)); + AssertEqual("good status category", AsbMxStatusCategory.Ok, good.Category); + AssertEqual("good status detail", AsbMxStatusDetail.None, good.Detail); + AssertEqual("good status quality", AsbStatusQuality.Good, good.Quality); + AssertEqual("good status error", AsbErrorCode.Success, good.StatusError); + AssertEqual("good status success-like", true, good.IsSuccessLike); + + AsbStatusSummary badQuality = AsbResultMapper.ToStatusSummary(StatusBytes( + 0x05, 0x00, 0x00, + 0x06, 0x00, 0x00, + 0x07, 0x00, 0x00)); + AssertEqual("bad quality summary", AsbStatusQuality.Bad, badQuality.Quality); + AssertEqual("bad quality raw", (ushort?)0x0000, badQuality.RawQuality); + AssertEqual("bad quality success-like", false, badQuality.IsSuccessLike); + + AsbStatusSummary timedOut = AsbResultMapper.ToStatusSummary(StatusBytes( + 0x05, 0x03, 0x00, + 0x06, 0x10, 0x00, + 0x07, 0x00, 0x00)); + AssertEqual("timed out category", AsbMxStatusCategory.CommunicationError, timedOut.Category); + AssertEqual("timed out detail", AsbMxStatusDetail.RequestTimedOut, timedOut.Detail); + AssertEqual("timed out error", AsbErrorCode.RequestTimedOut, timedOut.StatusError); + AssertEqual("timed out quality", AsbStatusQuality.Bad, timedOut.Quality); + + AsbStatusSummary noCommunication = AsbResultMapper.ToStatusSummary(StatusBytes( + 0x05, 0x03, 0x00, + 0x06, 0x11, 0x00, + 0x07, 0x00, 0x00)); + AssertEqual("no communication category", AsbMxStatusCategory.CommunicationError, noCommunication.Category); + AssertEqual("no communication detail", AsbMxStatusDetail.PlatformCommunicationError, noCommunication.Detail); + AssertEqual("no communication error", AsbErrorCode.BadNoCommunication, noCommunication.StatusError); + + AsbStatusSummary accessDenied = AsbResultMapper.ToStatusSummary(StatusBytes( + 0x05, 0x06, 0x00, + 0x06, 0x21, 0x00, + 0x07, 0x00, 0x00)); + AssertEqual("access denied category", AsbMxStatusCategory.SecurityError, accessDenied.Category); + AssertEqual("access denied detail", AsbMxStatusDetail.WriteAccessDenied, accessDenied.Detail); + AssertEqual("access denied error", AsbErrorCode.WriteFailedAccessDenied, accessDenied.StatusError); + AssertEqual("access denied success-like", false, accessDenied.IsSuccessLike); + + AsbStatusSummary unknownStatus = AsbResultMapper.ToStatusSummary(StatusBytes( + 0x63, 0x77, 0x77, + 0x05, 0xEE, 0x02, + 0x06, 0xE7, 0x03, + 0x07, 0x80, 0x00)); + AssertEqual("unknown status category", AsbMxStatusCategory.Unknown, unknownStatus.Category); + AssertEqual("unknown status raw category", (ushort?)750, unknownStatus.RawCategory); + AssertEqual("unknown status detail", AsbMxStatusDetail.Unknown, unknownStatus.Detail); + AssertEqual("unknown status raw detail", (ushort?)999, unknownStatus.RawDetail); + AssertEqual("unknown status quality", AsbStatusQuality.Unknown, unknownStatus.Quality); + AssertEqual("unknown status raw quality", (ushort?)0x0080, unknownStatus.RawQuality); + AssertEqual("unknown status raw type", (AsbStatusElementType)99, unknownStatus.Elements[0].Type); + AssertEqual("unknown status raw value", (ushort)0x7777, unknownStatus.Elements[0].Value); +} + +static void RunWriteCompletionOptionsTests() +{ + AssertNotNull("asb wait write completion overload", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.WaitForWriteComplete), + [typeof(uint), typeof(AsbWriteCompletionOptions)])); + AssertNotNull("asb wait write completion readback overload", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.WaitForWriteCompleteAndRead), + [typeof(string), typeof(uint), typeof(AsbWriteCompletionOptions)])); + + AssertEqual("write completion default timeout", TimeSpan.FromSeconds(5), AsbWriteCompletionOptions.Default.Timeout); + AssertEqual("write completion default poll", TimeSpan.FromMilliseconds(250), AsbWriteCompletionOptions.Default.PollInterval); + AssertEqual("write completion default readback", TimeSpan.Zero, AsbWriteCompletionOptions.Default.ReadbackDelay); + AssertEqual("write completion default cancellation", false, AsbWriteCompletionOptions.Default.CancellationToken.IsCancellationRequested); + AsbWriteCompletionOptions.Default.ValidateReadback(); + AssertNotNull("write completion cancellation option", typeof(AsbWriteCompletionOptions).GetProperty(nameof(AsbWriteCompletionOptions.CancellationToken))); + AssertEqual( + "write completion canceled token", + true, + new AsbWriteCompletionOptions { CancellationToken = new CancellationToken(canceled: true) }.CancellationToken.IsCancellationRequested); + new AsbWriteCompletionOptions { Timeout = TimeSpan.Zero, PollInterval = TimeSpan.FromMilliseconds(1) }.ValidatePolling(); + AssertThrows( + "write completion timeout", + () => new AsbWriteCompletionOptions { Timeout = TimeSpan.FromMilliseconds(-1) }.ValidatePolling()); + AssertThrows( + "write completion poll interval", + () => new AsbWriteCompletionOptions { PollInterval = TimeSpan.Zero }.ValidatePolling()); + AssertThrows( + "write completion readback delay", + () => new AsbWriteCompletionOptions { ReadbackDelay = TimeSpan.FromMilliseconds(-1) }.ValidateReadback()); + + ItemWriteComplete matchingComplete = new() + { + WriteHandle = 0xA5B21001, + Status = + [ + new ItemStatus + { + Item = new ItemIdentity { Name = "Test.Tag", Id = 12, IdSpecified = true }, + ErrorCode = 0, + Status = new AsbStatus { Count = 0, Payload = [] }, + }, + ], + }; + PublishWriteCompleteResponse response = new() + { + Result = new ArchestrAResult { ErrorCode = 32 }, + CompleteWrites = [matchingComplete], + }; + AsbWriteCompletionResult completion = new( + 0xA5B21001, + Completed: true, + TimedOut: false, + TimeSpan.FromMilliseconds(20), + PollCount: 2, + [response], + [matchingComplete], + matchingComplete); + AssertEqual("write completion result handle", (uint)0xA5B21001, completion.WriteHandle); + AssertEqual("write completion result completed", true, completion.Completed); + AssertEqual("write completion result timed out", false, completion.TimedOut); + AssertEqual("write completion result polls", 2, completion.PollCount); + AssertEqual("write completion result responses", 1, completion.Responses.Count); + AssertEqual("write completion result raw", 1, completion.CompleteWrites.Count); + AssertEqual("write completion result match", (uint)0xA5B21001, completion.MatchingComplete?.WriteHandle); + + AsbWriteCompletionReadbackResult readback = new(completion, Readback: null); + AssertEqual("write completion readback completion", completion, readback.Completion); + AssertEqual("write completion readback null", null, readback.Readback); +} + +static void RunSubscriptionOptionsTests() +{ + AssertNotNull("asb create subscription options overload", typeof(MxAsbDataClient).GetMethod( + nameof(MxAsbDataClient.CreateSubscription), + [typeof(AsbSubscriptionOptions)])); + + AssertEqual("subscription default queue", 128L, AsbSubscriptionOptions.Default.MaxQueueSize); + AssertEqual("subscription default sample", (ulong)1000, AsbSubscriptionOptions.Default.SampleInterval); + AsbSubscriptionOptions.Default.Validate(); + AsbSubscriptionOptions subscription = new() { MaxQueueSize = 128, SampleInterval = 1000 }; + subscription.Validate(); + AssertEqual("subscription queue", 128L, subscription.MaxQueueSize); + AssertEqual("subscription sample", (ulong)1000, subscription.SampleInterval); + AssertThrows( + "subscription max queue size", + () => new AsbSubscriptionOptions { MaxQueueSize = 0 }.Validate()); + + AssertEqual("monitored item default sample", (ulong)1000, AsbMonitoredItemOptions.Default.SampleInterval); + AssertEqual("monitored item default active", true, AsbMonitoredItemOptions.Default.Active); + AssertEqual("monitored item default buffered", false, AsbMonitoredItemOptions.Default.Buffered); + AsbMonitoredItemOptions monitored = new() + { + SampleInterval = 250, + Active = false, + Buffered = true, + }; + AssertEqual("monitored item sample", (ulong)250, monitored.SampleInterval); + AssertEqual("monitored item active", false, monitored.Active); + AssertEqual("monitored item buffered", true, monitored.Buffered); +} + +static AsbStatus StatusBytes(params byte[] payload) +{ + return new AsbStatus { Count = checked((sbyte)payload.Length), Payload = payload }; +} + +static void RunReconnectSurfaceTests() +{ + AssertNotNull("asb reconnect method", typeof(MxAsbDataClient).GetMethod(nameof(MxAsbDataClient.Reconnect))); + AssertNotNull("asb channel state property", typeof(MxAsbDataClient).GetProperty(nameof(MxAsbDataClient.ChannelState))); + AssertNotNull("asb disposed property", typeof(MxAsbDataClient).GetProperty(nameof(MxAsbDataClient.IsDisposed))); + + AsbReconnectOptions.Default.Validate(); + AssertThrows( + "reconnect attempts", + () => new AsbReconnectOptions { MaxAttempts = 0 }.Validate()); + AssertThrows( + "reconnect delay", + () => new AsbReconnectOptions { Delay = TimeSpan.FromMilliseconds(-1) }.Validate()); + AssertThrows( + "reconnect cleanup options", + () => new AsbReconnectOptions { CleanupOptions = null! }.Validate()); + AssertThrows( + "reconnect cleanup disconnect timeout", + () => new AsbReconnectOptions + { + CleanupOptions = new AsbClientCleanupOptions { DisconnectTimeout = TimeSpan.FromMilliseconds(-1) }, + }.Validate()); + + InvalidOperationException failure = new("failed"); + AsbReconnectResult result = new( + Succeeded: false, + Client: null, + CleanupResult: null, + [new AsbReconnectAttempt(1, Succeeded: false, failure)]); + AssertEqual("reconnect last exception", failure, result.LastException); +} + +static void RunCleanupOptionsTests() +{ + AssertNotNull("asb cleanup overload", typeof(MxAsbDataClient).GetMethod(nameof(MxAsbDataClient.Cleanup), [typeof(AsbClientCleanupOptions)])); + + AsbClientCleanupOptions.Default.Validate(); + AssertThrows( + "cleanup disconnect timeout", + () => new AsbClientCleanupOptions { DisconnectTimeout = TimeSpan.FromMilliseconds(-1) }.Validate()); + AssertThrows( + "cleanup close timeout", + () => new AsbClientCleanupOptions { CloseTimeout = TimeSpan.FromMilliseconds(-1) }.Validate()); + AssertEqual( + "cleanup cancellation token", + true, + new AsbClientCleanupOptions { CancellationToken = new CancellationToken(canceled: true) }.CancellationToken.IsCancellationRequested); +} + +static void RunCommunicationCleanupTests() +{ + FakeCommunicationObject closed = new(CommunicationState.Closed); + CommunicationObjectCleanupResult closedResult = AsbCommunicationCleanup.CloseOrAbort( + closed, + "closed", + TimeSpan.FromSeconds(1), + trace: null); + AssertEqual("closed cleanup close attempted", false, closedResult.CloseAttempted); + AssertEqual("closed cleanup closed", true, closedResult.Closed); + AssertEqual("closed cleanup abort attempted", false, closedResult.AbortAttempted); + AssertEqual("closed cleanup succeeded", true, closedResult.Succeeded); + + FakeCommunicationObject faulted = new(CommunicationState.Faulted); + CommunicationObjectCleanupResult faultedResult = AsbCommunicationCleanup.CloseOrAbort( + faulted, + "faulted", + TimeSpan.FromSeconds(1), + trace: null); + AssertEqual("faulted cleanup close attempted", false, faultedResult.CloseAttempted); + AssertEqual("faulted cleanup abort attempted", true, faultedResult.AbortAttempted); + AssertEqual("faulted cleanup aborted", true, faultedResult.Aborted); + AssertEqual("faulted cleanup succeeded", true, faultedResult.Succeeded); + + FakeCommunicationObject closeFailure = new(CommunicationState.Opened) + { + ThrowOnClose = true, + }; + CommunicationObjectCleanupResult closeFailureResult = AsbCommunicationCleanup.CloseOrAbort( + closeFailure, + "closeFailure", + TimeSpan.FromMilliseconds(25), + trace: null); + AssertEqual("close failure timeout", TimeSpan.FromMilliseconds(25), closeFailure.CloseTimeout); + AssertEqual("close failure close attempted", true, closeFailureResult.CloseAttempted); + AssertNotNull("close failure captured", closeFailureResult.CloseFailure); + AssertEqual("close failure abort attempted", true, closeFailureResult.AbortAttempted); + AssertEqual("close failure aborted", true, closeFailureResult.Aborted); + AssertEqual("close failure requires fallback", true, closeFailureResult.Succeeded is false); + + FakeCommunicationObject abortFailure = new(CommunicationState.Faulted) + { + ThrowOnAbort = true, + }; + CommunicationObjectCleanupResult abortFailureResult = AsbCommunicationCleanup.CloseOrAbort( + abortFailure, + "abortFailure", + TimeSpan.FromSeconds(1), + trace: null); + AssertEqual("abort failure abort attempted", true, abortFailureResult.AbortAttempted); + AssertEqual("abort failure aborted", false, abortFailureResult.Aborted); + AssertNotNull("abort failure captured", abortFailureResult.AbortFailure); + AssertEqual("abort failure succeeded", false, abortFailureResult.Succeeded); + + FakeCommunicationObject canceledOpen = new(CommunicationState.Opened); + CommunicationObjectCleanupResult canceledOpenResult = AsbCommunicationCleanup.AbortOnly( + canceledOpen, + "canceledOpen", + trace: null); + AssertEqual("canceled open close attempted", false, canceledOpenResult.CloseAttempted); + AssertEqual("canceled open abort attempted", true, canceledOpenResult.AbortAttempted); + AssertEqual("canceled open aborted", true, canceledOpenResult.Aborted); + AssertEqual("canceled open closed", true, canceledOpenResult.Closed); + + FakeCommunicationObject canceledClosed = new(CommunicationState.Closed); + CommunicationObjectCleanupResult canceledClosedResult = AsbCommunicationCleanup.AbortOnly( + canceledClosed, + "canceledClosed", + trace: null); + AssertEqual("canceled closed close attempted", false, canceledClosedResult.CloseAttempted); + AssertEqual("canceled closed abort attempted", false, canceledClosedResult.AbortAttempted); + AssertEqual("canceled closed closed", true, canceledClosedResult.Closed); +} + +sealed class FakeCommunicationObject(CommunicationState initialState) : ICommunicationObject +{ + public bool ThrowOnClose { get; init; } + + public bool ThrowOnAbort { get; init; } + + public TimeSpan? CloseTimeout { get; private set; } + + public CommunicationState State { get; private set; } = initialState; + + public event EventHandler? Closed; + public event EventHandler? Closing; + public event EventHandler? Faulted; + public event EventHandler? Opened; + public event EventHandler? Opening; + + public void Abort() + { + if (ThrowOnAbort) + { + throw new InvalidOperationException("abort failed"); + } + + State = CommunicationState.Closed; + Closed?.Invoke(this, EventArgs.Empty); + } + + public IAsyncResult BeginClose(AsyncCallback? callback, object? state) + { + Close(); + Task task = Task.CompletedTask; + callback?.Invoke(task); + return task; + } + + public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback? callback, object? state) + { + Close(timeout); + Task task = Task.CompletedTask; + callback?.Invoke(task); + return task; + } + + public IAsyncResult BeginOpen(AsyncCallback? callback, object? state) + { + Open(); + Task task = Task.CompletedTask; + callback?.Invoke(task); + return task; + } + + public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback? callback, object? state) + { + Open(timeout); + Task task = Task.CompletedTask; + callback?.Invoke(task); + return task; + } + + public void Close() + { + Close(TimeSpan.Zero); + } + + public void Close(TimeSpan timeout) + { + CloseTimeout = timeout; + if (ThrowOnClose) + { + throw new InvalidOperationException("close failed"); + } + + Closing?.Invoke(this, EventArgs.Empty); + State = CommunicationState.Closed; + Closed?.Invoke(this, EventArgs.Empty); + } + + public void EndClose(IAsyncResult result) + { + } + + public void EndOpen(IAsyncResult result) + { + } + + public void Open() + { + Open(TimeSpan.Zero); + } + + public void Open(TimeSpan timeout) + { + Opening?.Invoke(this, EventArgs.Empty); + State = CommunicationState.Opened; + Opened?.Invoke(this, EventArgs.Empty); + } + + public void RaiseFaulted() + { + State = CommunicationState.Faulted; + Faulted?.Invoke(this, EventArgs.Empty); + } +} diff --git a/src/MxAsbClient/AsbClientCleanupResult.cs b/src/MxAsbClient/AsbClientCleanupResult.cs new file mode 100644 index 0000000..c677025 --- /dev/null +++ b/src/MxAsbClient/AsbClientCleanupResult.cs @@ -0,0 +1,54 @@ +namespace MxAsbClient; + +public sealed record AsbClientCleanupOptions +{ + public static AsbClientCleanupOptions Default { get; } = new(); + + public TimeSpan DisconnectTimeout { get; init; } = TimeSpan.FromSeconds(30); + + public TimeSpan CloseTimeout { get; init; } = TimeSpan.FromSeconds(30); + + public CancellationToken CancellationToken { get; init; } = CancellationToken.None; + + public void Validate() + { + if (DisconnectTimeout < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(DisconnectTimeout), "Disconnect timeout cannot be negative."); + } + + if (CloseTimeout < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(CloseTimeout), "Close timeout cannot be negative."); + } + } +} + +public sealed record AsbClientCleanupResult( + bool DisconnectAttempted, + bool DisconnectSent, + string? DisconnectFailure, + CommunicationObjectCleanupResult Channel, + CommunicationObjectCleanupResult Factory) +{ + public bool Completed => Channel.Completed && Factory.Completed; + public bool Succeeded => DisconnectFailure is null && Channel.Succeeded && Factory.Succeeded; + public bool UsedAbortFallback => Channel.AbortAttempted || Factory.AbortAttempted; + public bool RequiresNewConnection => UsedAbortFallback || DisconnectFailure is not null; +} + +public sealed record CommunicationObjectCleanupResult( + string Name, + string InitialState, + string FinalState, + bool CloseAttempted, + bool Closed, + string? CloseFailure, + bool AbortAttempted, + bool Aborted, + string? AbortFailure) +{ + public bool Completed => Closed || Aborted; + public bool Succeeded => CloseFailure is null && AbortFailure is null && Completed; + public bool ClosedGracefully => Closed && CloseFailure is null; +} diff --git a/src/MxAsbClient/AsbCommunicationCleanup.cs b/src/MxAsbClient/AsbCommunicationCleanup.cs new file mode 100644 index 0000000..a2e248c --- /dev/null +++ b/src/MxAsbClient/AsbCommunicationCleanup.cs @@ -0,0 +1,116 @@ +using System.ServiceModel; + +namespace MxAsbClient; + +internal static class AsbCommunicationCleanup +{ + public static CommunicationObjectCleanupResult AbortOnly( + ICommunicationObject communicationObject, + string name, + Action? trace) + { + CommunicationState initialState = communicationObject.State; + bool abortAttempted = false; + bool aborted = false; + string? abortFailure = null; + + if (initialState is not CommunicationState.Closed) + { + (abortAttempted, aborted, abortFailure) = AbortBestEffort(communicationObject, name, trace); + } + + return new CommunicationObjectCleanupResult( + name, + initialState.ToString(), + communicationObject.State.ToString(), + CloseAttempted: false, + Closed: communicationObject.State is CommunicationState.Closed, + CloseFailure: null, + AbortAttempted: abortAttempted, + Aborted: aborted, + AbortFailure: abortFailure); + } + + public static CommunicationObjectCleanupResult CloseOrAbort( + ICommunicationObject communicationObject, + string name, + TimeSpan closeTimeout, + Action? trace) + { + CommunicationState initialState = communicationObject.State; + bool closeAttempted = false; + bool closed = false; + string? closeFailure = null; + bool abortAttempted = false; + bool aborted = false; + string? abortFailure = null; + + if (initialState is CommunicationState.Closed) + { + return new CommunicationObjectCleanupResult( + name, + initialState.ToString(), + communicationObject.State.ToString(), + CloseAttempted: false, + Closed: true, + CloseFailure: null, + AbortAttempted: false, + Aborted: false, + AbortFailure: null); + } + + if (initialState is CommunicationState.Faulted) + { + (abortAttempted, aborted, abortFailure) = AbortBestEffort(communicationObject, name, trace); + } + else + { + closeAttempted = true; + try + { + communicationObject.Close(closeTimeout); + closed = true; + } + catch (Exception ex) + { + closeFailure = FormatCleanupFailure(ex); + trace?.Invoke($"asb.cleanup.{name}.close.failed={closeFailure}"); + (abortAttempted, aborted, abortFailure) = AbortBestEffort(communicationObject, name, trace); + } + } + + return new CommunicationObjectCleanupResult( + name, + initialState.ToString(), + communicationObject.State.ToString(), + closeAttempted, + closed, + closeFailure, + abortAttempted, + aborted, + abortFailure); + } + + private static (bool Attempted, bool Aborted, string? Failure) AbortBestEffort( + ICommunicationObject communicationObject, + string name, + Action? trace) + { + try + { + communicationObject.Abort(); + return (Attempted: true, Aborted: true, Failure: null); + } + catch (Exception ex) + { + string failure = FormatCleanupFailure(ex); + trace?.Invoke($"asb.cleanup.{name}.abort.failed={failure}"); + return (Attempted: true, Aborted: false, Failure: failure); + } + } + + internal static string FormatCleanupFailure(Exception ex) + { + return $"{ex.GetType().Name}: {ex.Message}"; + } +} diff --git a/src/MxAsbClient/AsbConnectionOptions.cs b/src/MxAsbClient/AsbConnectionOptions.cs new file mode 100644 index 0000000..06f00fe --- /dev/null +++ b/src/MxAsbClient/AsbConnectionOptions.cs @@ -0,0 +1,20 @@ +namespace MxAsbClient; + +public sealed record AsbConnectionOptions +{ + public string Endpoint { get; init; } = string.Empty; + + public string? SolutionName { get; init; } + + public Action? Trace { get; init; } + + public bool DumpMessages { get; init; } + + public void Validate() + { + if (string.IsNullOrWhiteSpace(Endpoint)) + { + throw new ArgumentException("ASB endpoint is required.", nameof(Endpoint)); + } + } +} diff --git a/src/MxAsbClient/AsbContracts.cs b/src/MxAsbClient/AsbContracts.cs new file mode 100644 index 0000000..f5d5c05 --- /dev/null +++ b/src/MxAsbClient/AsbContracts.cs @@ -0,0 +1,1634 @@ +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.Xml.Serialization; +using System.ServiceModel.Description; +using System.ServiceModel.Dispatcher; +using System.Runtime.Serialization; +using System.Xml; + +namespace MxAsbClient; + +[ServiceContract(Namespace = "http://ASB.IDataV2", ConfigurationName = "IASBIDataV2")] +public interface IAsbDataV2 +{ + [OperationContract(Action = "http://asb.contracts/20111111:connectIn", ReplyAction = "*")] + [XmlSerializerFormat(SupportFaults = true)] + ConnectResponse Connect(ConnectRequest request); + + [OperationContract(IsOneWay = true, Action = "http://asb.contracts/20111111:authenticateMeIn")] + [XmlSerializerFormat(SupportFaults = true)] + void AuthenticateMe(AuthenticateMe request); + + [OperationContract(IsOneWay = true, Action = "http://asb.contracts/20111111:disconnectIn")] + [XmlSerializerFormat(SupportFaults = true)] + void Disconnect(Disconnect request); + + [OperationContract(IsOneWay = true, Action = "http://asb.contracts/20111111:keepAliveIn")] + [XmlSerializerFormat(SupportFaults = true)] + void KeepAlive(KeepAlive request); + + [OperationContract(Action = "http://ASB.IDataV2:registerItemsIn", ReplyAction = "*")] + RegisterItemsResponse RegisterItems(RegisterItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:unregisterItemsIn", ReplyAction = "*")] + UnregisterItemsResponse UnregisterItems(UnregisterItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:readIn", ReplyAction = "*")] + ReadResponse Read(ReadRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:writeIn", ReplyAction = "*")] + WriteResponse Write(WriteBasicRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:publishWriteCompleteIn", ReplyAction = "*")] + PublishWriteCompleteResponse PublishWriteComplete(PublishWriteCompleteRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:createSubscriptionIn", ReplyAction = "*")] + CreateSubscriptionResponse CreateSubscription(CreateSubscriptionRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:deleteSubscriptionIn", ReplyAction = "*")] + DeleteSubscriptionResponse DeleteSubscription(DeleteSubscriptionRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:addMonitoredItemsIn", ReplyAction = "*")] + AddMonitoredItemsResponse AddMonitoredItems(AddMonitoredItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:deleteMonitoredItemsIn", ReplyAction = "*")] + DeleteMonitoredItemsResponse DeleteMonitoredItems(DeleteMonitoredItemsRequest request); + + [OperationContract(Action = "http://ASB.IDataV2:publishIn", ReplyAction = "*")] + PublishResponse Publish(PublishRequest request); +} + +[MessageContract] +public class ServiceMessage; + +[MessageContract] +public class ConnectedRequest : ServiceMessage +{ + [MessageHeader(Namespace = "http://asb.contracts.headers/20111111")] + public ConnectionValidator ConnectionValidator = new(); +} + +[MessageContract] +public class ConnectedResponse : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111")] + public ArchestrAResult Result; +} + +[MessageContract(WrapperName = "ConnectRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public sealed class ConnectRequest : ServiceMessage +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public Guid ConnectionId; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] + public PublicKey? ConsumerPublicKey; +} + +[MessageContract(WrapperName = "ConnectResponse", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public sealed class ConnectResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public PublicKey? ServicePublicKey; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 1)] + public AuthenticationData? ServiceAuthenticationData; + + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 2)] + [XmlElement(DataType = "duration")] + public string? ConnectionLifetime; +} + +[MessageContract(WrapperName = "AuthenticateMeRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public sealed class AuthenticateMe : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public AuthenticationData? ConsumerAuthenticationData; +} + +[MessageContract(WrapperName = "DisconnectRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public sealed class Disconnect : ConnectedRequest +{ + [MessageBodyMember(Namespace = "http://asb.contracts.messages/20111111", Order = 0)] + public AuthenticationData? ConsumerAuthenticationData; +} + +[MessageContract(WrapperName = "KeepAliveRequest", WrapperNamespace = "http://asb.contracts.messages/20111111", IsWrapped = true)] +public sealed class KeepAlive : ConnectedRequest; + +[MessageContract(WrapperName = "RegisterItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class RegisterItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[]? Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public bool RequireId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public bool RegisterOnly; +} + +[MessageContract(WrapperName = "RegisterItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class RegisterItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[]? Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("ItemCapabilities")] + public ItemRegistration[]? ItemCapabilities; +} + +[MessageContract(WrapperName = "UnregisterItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class UnregisterItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[]? Items; +} + +[MessageContract(WrapperName = "UnregisterItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class UnregisterItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[]? Status; +} + +[MessageContract(WrapperName = "ReadRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class ReadRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[]? Items; +} + +[MessageContract(WrapperName = "ReadResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class ReadResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[]? Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public RuntimeValue[]? Values; +} + +[MessageContract(WrapperName = "WriteBasicRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class WriteBasicRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Items")] + public ItemIdentity[]? Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public WriteValue[]? Values; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public uint WriteHandle; +} + +[MessageContract(WrapperName = "WriteBasicResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class WriteResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[]? Status; +} + +[MessageContract(WrapperName = "PublishWriteCompleteRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class PublishWriteCompleteRequest : ConnectedRequest; + +[MessageContract(WrapperName = "PublishWriteCompleteResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class PublishWriteCompleteResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("CompleteWrites")] + public ItemWriteComplete[]? CompleteWrites; +} + +[MessageContract(WrapperName = "CreateSubscriptionRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class CreateSubscriptionRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long MaxQueueSize; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + public ulong SampleInterval; +} + +[MessageContract(WrapperName = "CreateSubscriptionResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class CreateSubscriptionResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; +} + +[MessageContract(WrapperName = "DeleteSubscriptionRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class DeleteSubscriptionRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; +} + +[MessageContract(WrapperName = "DeleteSubscriptionResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class DeleteSubscriptionResponse : ConnectedResponse; + +[MessageContract(WrapperName = "AddMonitoredItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class AddMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Items")] + public MonitoredItem[]? Items; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 2)] + public bool RequireId; +} + +[MessageContract(WrapperName = "AddMonitoredItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class AddMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[]? Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("ItemCapabilities")] + public ItemRegistration[]? ItemCapabilities; +} + +[MessageContract(WrapperName = "DeleteMonitoredItemsRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class DeleteMonitoredItemsRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Items")] + public MonitoredItem[]? Items; +} + +[MessageContract(WrapperName = "DeleteMonitoredItemsResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class DeleteMonitoredItemsResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[]? Status; +} + +[MessageContract(WrapperName = "PublishRequest", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class PublishRequest : ConnectedRequest +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + public long SubscriptionId; +} + +[MessageContract(WrapperName = "PublishResponse", WrapperNamespace = "urn:msg.data.asb.iom:2", IsWrapped = true)] +public sealed class PublishResponse : ConnectedResponse +{ + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 0)] + [XmlElement("Status")] + public ItemStatus[]? Status; + + [MessageBodyMember(Namespace = "urn:msg.data.asb.iom:2", Order = 1)] + [XmlElement("Values")] + public MonitoredItemValue[]? Values; +} + +[Serializable] +[DataContract(Name = "ConnectionValidator", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBContract")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public sealed class ConnectionValidator +{ + [DataMember(Name = "connectionIdField", Order = 0)] + private Guid connectionIdField; + + [DataMember(Name = "messageAuthenticationCodeField", Order = 1)] + private byte[] messageAuthenticationCodeField = []; + + [DataMember(Name = "messageNumberField", Order = 2)] + private ulong messageNumberField; + + [DataMember(Name = "signatureInitializationVectorField", Order = 3)] + private byte[] signatureInitializationVectorField = []; + + public Guid ConnectionId + { + get => connectionIdField; + set => connectionIdField = value; + } + + public ulong MessageNumber + { + get => messageNumberField; + set => messageNumberField = value; + } + + [XmlElement(DataType = "base64Binary")] + public byte[] MessageAuthenticationCode + { + get => messageAuthenticationCodeField; + set => messageAuthenticationCodeField = value; + } + + [XmlElement(DataType = "base64Binary")] + public byte[] SignatureInitializationVector + { + get => signatureInitializationVectorField; + set => signatureInitializationVectorField = value; + } +} + +[Serializable] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public sealed class PublicKey +{ + private byte[]? dataField; + + [XmlElement(DataType = "base64Binary")] + public byte[]? Data + { + get => dataField; + set => dataField = value; + } +} + +[Serializable] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public sealed class AuthenticationData +{ + private byte[]? dataField; + private byte[]? initializationVectorField; + + [XmlElement(DataType = "base64Binary")] + public byte[]? Data + { + get => dataField; + set => dataField = value; + } + + [XmlElement(DataType = "base64Binary")] + public byte[]? InitializationVector + { + get => initializationVectorField; + set => initializationVectorField = value; + } +} + +[Serializable] +[DataContract(Name = "ArchestrAResult", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBContract")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public struct ArchestrAResult +{ + [DataMember(Name = "errorMessagesField", Order = 0)] + private string[]? errorMessagesField; + + [DataMember(Name = "extensionsField", Order = 1)] + private NamedValue[]? extensionsField; + + [DataMember(Name = "informationMessagesField", Order = 2)] + private string[]? informationMessagesField; + + [DataMember(Name = "locationField", Order = 3)] + private string? locationField; + + [DataMember(Name = "resultCodeField", Order = 4)] + private int resultCodeField; + + [DataMember(Name = "specificErrorCodeField", Order = 5)] + private uint specificErrorCodeField; + + [DataMember(Name = "statusCodeField", Order = 6)] + private uint statusCodeField; + + [DataMember(Name = "successField", Order = 7)] + private bool successField; + + [DataMember(Name = "successMessagesField", Order = 8)] + private string[]? successMessagesField; + + public bool Success + { + get => successField; + set => successField = value; + } + + public int ResultCode + { + get => resultCodeField; + set => resultCodeField = value; + } + + public int ErrorCode + { + get => resultCodeField; + set => resultCodeField = value; + } + + public uint SpecificErrorCode + { + get => specificErrorCodeField; + set => specificErrorCodeField = value; + } + + public uint Status + { + get => statusCodeField; + set => statusCodeField = value; + } + + public string? Location + { + get => locationField; + set => locationField = value; + } + + [XmlElement("SuccessMessages")] + public string[]? SuccessMessages + { + get => successMessagesField; + set => successMessagesField = value; + } + + [XmlElement("InformationMessages")] + public string[]? InformationMessages + { + get => informationMessagesField; + set => informationMessagesField = value; + } + + [XmlElement("ErrorMessages")] + public string[]? ErrorMessages + { + get => errorMessagesField; + set => errorMessagesField = value; + } + + [XmlElement("Extensions")] + public NamedValue[]? Extensions + { + get => extensionsField; + set => extensionsField = value; + } +} + +[Serializable] +[DataContract(Name = "NamedValue", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBContract")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public sealed class NamedValue +{ + [DataMember(Name = "nameField", Order = 0)] + private string? nameField; + + [DataMember(Name = "valueField", Order = 1)] + private ResultVariant? valueField; + + public string? Name + { + get => nameField; + set => nameField = value; + } + + public ResultVariant? Value + { + get => valueField; + set => valueField = value; + } +} + +[Serializable] +[DataContract(Name = "ResultVariant", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBContract")] +[XmlType(Namespace = "http://asb.contracts.data/20111111")] +public sealed class ResultVariant +{ + [DataMember(Name = "itemElementNameField", Order = 0)] + private string? itemElementNameField; + + [DataMember(Name = "itemField", Order = 1)] + private object? itemField; + + public object? Item + { + get => itemField; + set => itemField = value; + } + + [XmlIgnore] + public string? ItemElementName + { + get => itemElementNameField; + set => itemElementNameField = value; + } +} + +[Serializable] +[DataContract(Name = "ItemIdentity", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemIdentity : IAsbCustomSerializableType +{ + [DataMember(Name = "contextNameField", Order = 0)] + private string? contextNameField; + + [DataMember(Name = "idField", Order = 1)] + private ulong idField; + + [DataMember(Name = "idFieldSpecified", Order = 2)] + private bool idFieldSpecified; + + [DataMember(Name = "nameField", Order = 3)] + private string? nameField; + + [DataMember(Name = "referenceTypeField", Order = 4)] + private ushort referenceTypeField; + + [DataMember(Name = "typeField", Order = 5)] + private ushort typeField; + + public ushort Type + { + get => typeField; + set => typeField = value; + } + + public ushort ReferenceType + { + get => referenceTypeField; + set => referenceTypeField = value; + } + + [XmlElement(IsNullable = true)] + public string? Name + { + get => nameField; + set => nameField = value; + } + + [XmlElement(IsNullable = true)] + public string? ContextName + { + get => contextNameField; + set => contextNameField = value; + } + + public ulong Id + { + get => idField; + set => idField = value; + } + + [XmlIgnore] + public bool IdSpecified + { + get => idFieldSpecified; + set => idFieldSpecified = value; + } + + public void WriteToStream(BinaryWriter writer) + { + writer.Write(Type); + writer.Write(ReferenceType); + AsbBinary.WriteUnicodeString(writer, Name); + AsbBinary.WriteUnicodeString(writer, ContextName); + writer.Write(Id); + writer.Write(IdSpecified); + } + + public void InitializeFromStream(BinaryReader reader) + { + Type = reader.ReadUInt16(); + ReferenceType = reader.ReadUInt16(); + Name = AsbBinary.ReadUnicodeString(reader); + ContextName = AsbBinary.ReadUnicodeString(reader); + Id = reader.ReadUInt64(); + IdSpecified = reader.ReadBoolean(); + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayLength) + { + ItemIdentity[] items = new ItemIdentity[arrayLength]; + for (int i = 0; i < items.Length; i++) + { + items[i].InitializeFromStream(reader); + } + + return items; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter writer) + { + ItemIdentity[] items = (ItemIdentity[])graph; + writer.Write(items.Length); + foreach (ItemIdentity item in items) + { + item.WriteToStream(writer); + } + } +} + +[Serializable] +[DataContract(Name = "ItemStatus", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemStatus : IAsbCustomSerializableType +{ + [DataMember(Name = "errorCodeField", Order = 0)] + private ushort errorCodeField; + + [DataMember(Name = "errorCodeFieldSpecified", Order = 1)] + private bool errorCodeFieldSpecified; + + [DataMember(Name = "itemField", Order = 2)] + private ItemIdentity itemField; + + [DataMember(Name = "statusField", Order = 3)] + private AsbStatus statusField; + + public ItemIdentity Item + { + get => itemField; + set => itemField = value; + } + + public ushort ErrorCode + { + get => errorCodeField; + set + { + errorCodeField = value; + ErrorCodeSpecified = true; + } + } + + [XmlIgnore] + public bool ErrorCodeSpecified + { + get => errorCodeFieldSpecified; + set => errorCodeFieldSpecified = value; + } + + public AsbStatus Status + { + get => statusField; + set => statusField = value; + } + + public void WriteToStream(BinaryWriter writer) + { + Item.WriteToStream(writer); + Status.WriteToStream(writer); + writer.Write(ErrorCode); + writer.Write(ErrorCodeSpecified); + } + + public void InitializeFromStream(BinaryReader reader) + { + ItemIdentity item = new(); + item.InitializeFromStream(reader); + Item = item; + AsbStatus status = new(); + status.InitializeFromStream(reader); + Status = status; + ErrorCode = reader.ReadUInt16(); + ErrorCodeSpecified = reader.ReadBoolean(); + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayLength) + { + ItemStatus[] items = new ItemStatus[arrayLength]; + for (int i = 0; i < items.Length; i++) + { + items[i].InitializeFromStream(reader); + } + + return items; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter writer) + { + ItemStatus[] items = (ItemStatus[])graph; + writer.Write(items.Length); + foreach (ItemStatus item in items) + { + item.WriteToStream(writer); + } + } +} + +[Serializable] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemRegistration +{ + public ulong Id { get; set; } + + [XmlIgnore] + public bool IdSpecified { get; set; } + + public ushort WriteCapability { get; set; } + + [XmlIgnore] + public bool WriteCapabilitySpecified { get; set; } +} + +[Serializable] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct RuntimeValue : IAsbCustomSerializableType +{ + public DateTime Timestamp { get; set; } + + [XmlIgnore] + public bool TimestampSpecified { get; set; } + + public Variant Value { get; set; } + public AsbStatus Status { get; set; } + + public void WriteToStream(BinaryWriter writer) + { + writer.Write(Timestamp.ToBinary()); + writer.Write(TimestampSpecified); + Value.WriteToStream(writer); + Status.WriteToStream(writer); + } + + public void InitializeFromStream(BinaryReader reader) + { + Timestamp = DateTime.FromBinary(reader.ReadInt64()); + TimestampSpecified = reader.ReadBoolean(); + Variant value = new(); + value.InitializeFromStream(reader); + Value = value; + AsbStatus status = new(); + status.InitializeFromStream(reader); + Status = status; + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayLength) + { + RuntimeValue[] items = new RuntimeValue[arrayLength]; + for (int i = 0; i < items.Length; i++) + { + items[i].InitializeFromStream(reader); + } + + return items; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter writer) + { + RuntimeValue[] items = (RuntimeValue[])graph; + writer.Write(items.Length); + foreach (RuntimeValue item in items) + { + item.WriteToStream(writer); + } + } +} + +[Serializable] +[DataContract(Name = "WriteValue", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct WriteValue +{ + [DataMember(Name = "arrayElementIndexField", Order = 0)] + private int arrayElementIndexField; + + [DataMember(Name = "arrayElementIndexFieldSpecified", Order = 1)] + private bool arrayElementIndexFieldSpecified; + + [DataMember(Name = "commentField", Order = 2)] + private string? commentField; + + [DataMember(Name = "hasQTField", Order = 3)] + private bool hasQTField; + + [DataMember(Name = "hasQTFieldSpecified", Order = 4)] + private bool hasQTFieldSpecified; + + [DataMember(Name = "statusField", Order = 5)] + private AsbStatus statusField; + + [DataMember(Name = "timestampField", Order = 6)] + private DateTime timestampField; + + [DataMember(Name = "timestampFieldSpecified", Order = 7)] + private bool timestampFieldSpecified; + + [DataMember(Name = "valueField", Order = 8)] + private Variant valueField; + + public bool HasQT + { + get => hasQTField; + set + { + hasQTField = value; + HasQTSpecified = true; + } + } + + [XmlIgnore] + public bool HasQTSpecified + { + get => hasQTFieldSpecified; + set => hasQTFieldSpecified = value; + } + + public Variant Value + { + get => valueField; + set => valueField = value; + } + + public AsbStatus Status + { + get => statusField; + set => statusField = value; + } + + public DateTime Timestamp + { + get => timestampField; + set + { + timestampField = value; + TimestampSpecified = true; + } + } + + [XmlIgnore] + public bool TimestampSpecified + { + get => timestampFieldSpecified; + set => timestampFieldSpecified = value; + } + + [XmlElement(IsNullable = true)] + public string? Comment + { + get => commentField; + set => commentField = value; + } + + public int ArrayElementIndex + { + get => arrayElementIndexField; + set + { + arrayElementIndexField = value; + ArrayElementIndexSpecified = true; + } + } + + [XmlIgnore] + public bool ArrayElementIndexSpecified + { + get => arrayElementIndexFieldSpecified; + set => arrayElementIndexFieldSpecified = value; + } +} + +[Serializable] +[DataContract(Name = "ItemWriteComplete", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct ItemWriteComplete +{ + [DataMember(Name = "statusField", Order = 0)] + private ItemStatus[]? statusField; + + [DataMember(Name = "writeHandleField", Order = 1)] + private uint writeHandleField; + + [DataMember(Name = "writeHandleFieldSpecified", Order = 2)] + private bool writeHandleFieldSpecified; + + [XmlElement("Status")] + public ItemStatus[]? Status + { + get => statusField; + set => statusField = value; + } + + public uint WriteHandle + { + get => writeHandleField; + set + { + writeHandleField = value; + WriteHandleSpecified = true; + } + } + + [XmlIgnore] + public bool WriteHandleSpecified + { + get => writeHandleFieldSpecified; + set => writeHandleFieldSpecified = value; + } +} + +[Serializable] +[DataContract(Name = "MonitoredItem", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct MonitoredItem +{ + [DataMember(Name = "activeField", Order = 0)] + private bool activeField; + + [DataMember(Name = "activeFieldSpecified", Order = 1)] + private bool activeFieldSpecified; + + [DataMember(Name = "bufferedField", Order = 2)] + private bool bufferedField; + + [DataMember(Name = "itemField", Order = 3)] + private ItemIdentity itemField; + + [DataMember(Name = "sampleIntervalField", Order = 4)] + private ulong sampleIntervalField; + + [DataMember(Name = "timeDeadbandField", Order = 5)] + private ulong timeDeadbandField; + + [DataMember(Name = "timeDeadbandFieldSpecified", Order = 6)] + private bool timeDeadbandFieldSpecified; + + [DataMember(Name = "userDataField", Order = 7)] + private Variant userDataField; + + [DataMember(Name = "valueDeadbandField", Order = 8)] + private Variant valueDeadbandField; + + public ItemIdentity Item + { + get => itemField; + set => itemField = value; + } + + public ulong SampleInterval + { + get => sampleIntervalField; + set => sampleIntervalField = value; + } + + public bool Active + { + get => activeField; + set + { + activeField = value; + ActiveSpecified = true; + } + } + + [XmlIgnore] + public bool ActiveSpecified + { + get => activeFieldSpecified; + set => activeFieldSpecified = value; + } + + public ulong TimeDeadband + { + get => timeDeadbandField; + set + { + timeDeadbandField = value; + TimeDeadbandSpecified = true; + } + } + + [XmlIgnore] + public bool TimeDeadbandSpecified + { + get => timeDeadbandFieldSpecified; + set => timeDeadbandFieldSpecified = value; + } + + public Variant ValueDeadband + { + get => valueDeadbandField; + set => valueDeadbandField = value; + } + + public Variant UserData + { + get => userDataField; + set => userDataField = value; + } + + public bool Buffered + { + get => bufferedField; + set => bufferedField = value; + } +} + +[Serializable] +[DataContract(Name = "MonitoredItemValue", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct MonitoredItemValue : IAsbCustomSerializableType +{ + [DataMember(Name = "itemField", Order = 0)] + private ItemIdentity itemField; + + [DataMember(Name = "valueField", Order = 1)] + private RuntimeValue valueField; + + [DataMember(Name = "userDataField", Order = 2)] + private Variant userDataField; + + public ItemIdentity Item + { + get => itemField; + set => itemField = value; + } + + public RuntimeValue Value + { + get => valueField; + set => valueField = value; + } + + public Variant UserData + { + get => userDataField; + set => userDataField = value; + } + + public void WriteToStream(BinaryWriter writer) + { + Item.WriteToStream(writer); + Value.WriteToStream(writer); + UserData.WriteToStream(writer); + } + + public void InitializeFromStream(BinaryReader reader) + { + ItemIdentity item = new(); + item.InitializeFromStream(reader); + Item = item; + RuntimeValue value = new(); + value.InitializeFromStream(reader); + Value = value; + Variant userData = new(); + userData.InitializeFromStream(reader); + UserData = userData; + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayLength) + { + MonitoredItemValue[] items = new MonitoredItemValue[arrayLength]; + for (int i = 0; i < items.Length; i++) + { + items[i].InitializeFromStream(reader); + } + + return items; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter writer) + { + MonitoredItemValue[] items = (MonitoredItemValue[])graph; + writer.Write(items.Length); + foreach (MonitoredItemValue item in items) + { + item.WriteToStream(writer); + } + } +} + +[Serializable] +[DataContract(Name = "AsbStatus", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "urn:data.data.asb.iom:2")] +public struct AsbStatus : IAsbCustomSerializableType +{ + [DataMember(Name = "countField", Order = 0)] + private sbyte countField; + + [DataMember(Name = "payloadField", Order = 1)] + private byte[]? payloadField; + + public sbyte Count + { + get => countField; + set => countField = value; + } + + [XmlElement(DataType = "base64Binary")] + public byte[]? Payload + { + get => payloadField; + set => payloadField = value; + } + + public void WriteToStream(BinaryWriter writer) + { + writer.Write(Count); + writer.Write((uint)(Payload?.Length ?? 0)); + if (Payload is { Length: > 0 }) + { + writer.Write(Payload); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + Count = reader.ReadSByte(); + int length = reader.ReadInt32(); + Payload = length > 0 ? reader.ReadBytes(length) : []; + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayLength) + { + AsbStatus[] items = new AsbStatus[arrayLength]; + for (int i = 0; i < items.Length; i++) + { + items[i].InitializeFromStream(reader); + } + + return items; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter writer) + { + AsbStatus[] items = (AsbStatus[])graph; + writer.Write(items.Length); + foreach (AsbStatus item in items) + { + item.WriteToStream(writer); + } + } +} + +[Serializable] +[DataContract(Name = "Variant", Namespace = "http://schemas.datacontract.org/2004/07/ArchestrAServices.ASBIDataV2Contract")] +[XmlType(Namespace = "http://asb.contracts.idata.data/20111111")] +public struct Variant : IAsbCustomSerializableType +{ + [DataMember(Name = "lengthField", Order = 0)] + private int lengthField; + + [DataMember(Name = "payloadField", Order = 1)] + private byte[]? payloadField; + + [DataMember(Name = "typeField", Order = 2)] + private ushort typeField; + + public ushort Type + { + get => typeField; + set => typeField = value; + } + + public int Length + { + get => lengthField; + set => lengthField = value; + } + + [XmlElement(DataType = "base64Binary", IsNullable = true)] + public byte[]? Payload + { + get => payloadField; + set => payloadField = value; + } + + public void WriteToStream(BinaryWriter writer) + { + writer.Write(Type); + writer.Write(Length); + writer.Write((uint)(Payload?.Length ?? 0)); + if (Payload is { Length: > 0 }) + { + writer.Write(Payload); + } + } + + public void InitializeFromStream(BinaryReader reader) + { + Type = reader.ReadUInt16(); + Length = reader.ReadInt32(); + int payloadLength = reader.ReadInt32(); + Payload = payloadLength > 0 ? reader.ReadBytes(payloadLength) : []; + } + + public object InitializeArrayFromStream(BinaryReader reader, int arrayLength) + { + Variant[] items = new Variant[arrayLength]; + for (int i = 0; i < items.Length; i++) + { + items[i].InitializeFromStream(reader); + } + + return items; + } + + public void WriteArrayToStream(object graph, ref BinaryWriter writer) + { + Variant[] items = (Variant[])graph; + writer.Write(items.Length); + foreach (Variant item in items) + { + item.WriteToStream(writer); + } + } +} + +public enum AsbDataType : ushort +{ + TypeByte = 0, + TypeChar = 1, + TypeInt16 = 2, + TypeUInt16 = 3, + TypeInt32 = 4, + TypeUInt32 = 5, + TypeInt64 = 6, + TypeUInt64 = 7, + TypeFloat = 8, + TypeDouble = 9, + TypeString = 10, + TypeDateTime = 11, + TypeDuration = 12, + TypeGuid = 13, + TypeByteString = 14, + TypeLocaleId = 15, + TypeLocalizedText = 16, + TypeBool = 17, + TypeSByte = 18, + TypeErrorStatus = 19, + TypeEnum = 20, + TypeDataType = 21, + TypeSecurityClassification = 22, + TypeDataQuality = 23, + TypeByteArray = 40, + TypeCharArray = 41, + TypeInt16Array = 42, + TypeUInt16Array = 43, + TypeInt32Array = 44, + TypeUInt32Array = 45, + TypeInt64Array = 46, + TypeUInt64Array = 47, + TypeFloatArray = 48, + TypeDoubleArray = 49, + TypeStringArray = 50, + TypeDateTimeArray = 51, + TypeDurationArray = 52, + TypeGuidArray = 53, + TypeByteStringArray = 54, + TypeLocaleIdArray = 55, + TypeLocalizedTextArray = 56, + TypeBoolArray = 57, + TypeSByteArray = 58, + TypeEnumArray = 60, + TypeDataTypeArray = 61, + TypeSecurityClassificationArray = 62, + TypeDataQualityArray = 63, + TypeUnknown = 65535, +} + +public enum ItemIdentityType : ushort +{ + Name = 0, + Id = 1, + NameAndId = 2, +} + +public enum ItemReferenceType : ushort +{ + None = 0, + Absolute = 1, + Hierarchical = 2, + Relative = 3, +} + +public static class AsbVariantFactory +{ + public static Variant Empty => Create(AsbDataType.TypeUnknown, 0, []); + + public static Variant FromBoolean(bool value) + { + return Create(AsbDataType.TypeBool, 1, [value ? (byte)1 : (byte)0]); + } + + public static Variant FromInt32(int value) + { + return Create(AsbDataType.TypeInt32, 4, BitConverter.GetBytes(value)); + } + + public static Variant FromSingle(float value) + { + return Create(AsbDataType.TypeFloat, 4, BitConverter.GetBytes(value)); + } + + public static Variant FromDouble(double value) + { + return Create(AsbDataType.TypeDouble, 8, BitConverter.GetBytes(value)); + } + + public static Variant FromString(string value) + { + byte[] payload = System.Text.Encoding.Unicode.GetBytes(value); + return Create(AsbDataType.TypeString, payload.Length, payload); + } + + public static Variant FromDateTime(DateTime value) + { + return Create(AsbDataType.TypeDateTime, 8, BitConverter.GetBytes(value.ToFileTimeUtc())); + } + + public static Variant FromDuration(TimeSpan value) + { + return Create(AsbDataType.TypeDuration, 8, BitConverter.GetBytes(value.Ticks)); + } + + public static Variant FromInt32Array(ReadOnlySpan values) + { + byte[] payload = new byte[values.Length * sizeof(int)]; + for (int i = 0; i < values.Length; i++) + { + BitConverter.GetBytes(values[i]).CopyTo(payload, i * sizeof(int)); + } + + return Create(AsbDataType.TypeInt32Array, payload.Length, payload); + } + + public static Variant FromBooleanArray(ReadOnlySpan values) + { + byte[] payload = new byte[values.Length]; + for (int i = 0; i < values.Length; i++) + { + payload[i] = values[i] ? (byte)1 : (byte)0; + } + + return Create(AsbDataType.TypeBoolArray, payload.Length, payload); + } + + public static Variant FromSingleArray(ReadOnlySpan values) + { + byte[] payload = new byte[values.Length * sizeof(float)]; + for (int i = 0; i < values.Length; i++) + { + BitConverter.GetBytes(values[i]).CopyTo(payload, i * sizeof(float)); + } + + return Create(AsbDataType.TypeFloatArray, payload.Length, payload); + } + + public static Variant FromDoubleArray(ReadOnlySpan values) + { + byte[] payload = new byte[values.Length * sizeof(double)]; + for (int i = 0; i < values.Length; i++) + { + BitConverter.GetBytes(values[i]).CopyTo(payload, i * sizeof(double)); + } + + return Create(AsbDataType.TypeDoubleArray, payload.Length, payload); + } + + public static Variant FromStringArray(IReadOnlyList values) + { + using MemoryStream stream = new(); + using BinaryWriter writer = new(stream, System.Text.Encoding.Unicode, leaveOpen: true); + foreach (string? value in values) + { + byte[] bytes = string.IsNullOrEmpty(value) ? [] : System.Text.Encoding.Unicode.GetBytes(value); + writer.Write(bytes.Length); + writer.Write(bytes); + } + + byte[] payload = stream.ToArray(); + return Create(AsbDataType.TypeStringArray, payload.Length, payload); + } + + public static Variant FromDateTimeArray(ReadOnlySpan values) + { + byte[] payload = new byte[values.Length * sizeof(long)]; + for (int i = 0; i < values.Length; i++) + { + BitConverter.GetBytes(values[i].ToFileTimeUtc()).CopyTo(payload, i * sizeof(long)); + } + + return Create(AsbDataType.TypeDateTimeArray, payload.Length, payload); + } + + public static Variant FromDurationArray(ReadOnlySpan values) + { + byte[] payload = new byte[values.Length * sizeof(long)]; + for (int i = 0; i < values.Length; i++) + { + BitConverter.GetBytes(values[i].Ticks).CopyTo(payload, i * sizeof(long)); + } + + return Create(AsbDataType.TypeDurationArray, payload.Length, payload); + } + + private static Variant Create(AsbDataType type, int length, byte[] payload) + { + return new Variant + { + Type = (ushort)type, + Length = length, + Payload = payload, + }; + } +} + +public interface IAsbCustomSerializableType +{ + void WriteToStream(BinaryWriter writer); + void InitializeFromStream(BinaryReader reader); + object InitializeArrayFromStream(BinaryReader reader, int arrayLength); + void WriteArrayToStream(object graph, ref BinaryWriter writer); +} + +public sealed class AsbCustomSerializerContractBehavior : IContractBehavior +{ + public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) + { + } + + public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime) + { + ReplaceSerializer(contractDescription); + } + + public void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, DispatchRuntime dispatchRuntime) + { + ReplaceSerializer(contractDescription); + } + + public void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint) + { + } + + public static int ReplaceSerializer(ContractDescription contract) + { + int replaced = 0; + foreach (OperationDescription operation in contract.Operations) + { + for (int i = 0; i < operation.Behaviors.Count; i++) + { + if (operation.Behaviors[i] is DataContractSerializerOperationBehavior) + { + operation.Behaviors[i] = new AsbDataCustomSerializerOperationBehavior(operation); + replaced++; + } + } + } + + return replaced; + } +} + +public sealed class AsbDataCustomSerializerOperationBehavior : DataContractSerializerOperationBehavior +{ + public AsbDataCustomSerializerOperationBehavior(OperationDescription operation) + : base(operation) + { + } + + public override XmlObjectSerializer CreateSerializer(Type type, string name, string ns, IList knownTypes) + { + return new AsbDataCustomSerializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } + + public override XmlObjectSerializer CreateSerializer(Type type, XmlDictionaryString name, XmlDictionaryString ns, IList knownTypes) + { + return new AsbDataCustomSerializer(type, base.CreateSerializer(type, name, ns, knownTypes)); + } +} + +public sealed class AsbDataCustomSerializer : XmlObjectSerializer +{ + public static Action? Trace { get; set; } + + private readonly Type type; + private readonly bool isArray; + private readonly bool isCustom; + private readonly XmlObjectSerializer fallback; + + public AsbDataCustomSerializer(Type type, XmlObjectSerializer fallback) + { + this.type = type; + this.fallback = fallback; + Type? candidate = type.IsArray ? type.GetElementType() : type; + isArray = type.IsArray; + isCustom = candidate is not null && typeof(IAsbCustomSerializableType).IsAssignableFrom(candidate); + } + + public override bool IsStartObject(XmlDictionaryReader reader) + { + return isCustom + ? string.Equals(reader.LocalName, "ASBIData", StringComparison.OrdinalIgnoreCase) + : fallback.IsStartObject(reader); + } + + public override object? ReadObject(XmlDictionaryReader reader, bool verifyObjectName) + { + if (!isCustom) + { + return fallback.ReadObject(reader, verifyObjectName); + } + + byte[] payload = reader.ReadElementContentAsBase64(); + Trace?.Invoke($"asb.serializer.read-bytes={type.FullName}:{payload.Length}:{Convert.ToBase64String(payload)}"); + using MemoryStream stream = new(payload); + if (stream.Length == 0) + { + return null; + } + + using BinaryReader binary = new(stream); + if (isArray) + { + int count = binary.ReadInt32(); + Type elementType = type.GetElementType() ?? throw new InvalidOperationException("ASB custom array had no element type."); + IAsbCustomSerializableType item = (IAsbCustomSerializableType)Activator.CreateInstance(elementType)!; + return item.InitializeArrayFromStream(binary, count); + } + + IAsbCustomSerializableType result = (IAsbCustomSerializableType)Activator.CreateInstance(type)!; + result.InitializeFromStream(binary); + return result; + } + + public override void WriteStartObject(XmlDictionaryWriter writer, object? graph) + { + if (isCustom) + { + Trace?.Invoke($"asb.serializer.start={type.FullName}"); + writer.WriteStartElement("ASBIData"); + } + else + { + fallback.WriteStartObject(writer, graph); + } + } + + public override void WriteObjectContent(XmlDictionaryWriter writer, object? graph) + { + if (!isCustom) + { + fallback.WriteObjectContent(writer, graph); + return; + } + + Trace?.Invoke($"asb.serializer.content={type.FullName}"); + using MemoryStream stream = new(); + BinaryWriter binary = new(stream); + if (isArray) + { + Type elementType = type.GetElementType() ?? throw new InvalidOperationException("ASB custom array had no element type."); + IAsbCustomSerializableType item = (IAsbCustomSerializableType)Activator.CreateInstance(elementType)!; + item.WriteArrayToStream(graph!, ref binary); + } + else + { + ((IAsbCustomSerializableType)graph!).WriteToStream(binary); + } + + byte[] bytes = stream.ToArray(); + Trace?.Invoke($"asb.serializer.bytes={type.FullName}:{bytes.Length}:{Convert.ToBase64String(bytes)}"); + writer.WriteBase64(bytes, 0, bytes.Length); + } + + public override void WriteEndObject(XmlDictionaryWriter writer) + { + if (isCustom) + { + writer.WriteEndElement(); + } + else + { + fallback.WriteEndObject(writer); + } + } +} + +internal static class AsbBinary +{ + public static string ReadUnicodeString(BinaryReader reader) + { + int byteLength = reader.ReadInt32(); + return byteLength > 0 ? System.Text.Encoding.Unicode.GetString(reader.ReadBytes(byteLength)) : string.Empty; + } + + public static void WriteUnicodeString(BinaryWriter writer, string? value) + { + if (string.IsNullOrEmpty(value)) + { + writer.Write(0u); + return; + } + + byte[] bytes = System.Text.Encoding.Unicode.GetBytes(value); + writer.Write((uint)bytes.Length); + writer.Write(bytes); + } +} diff --git a/src/MxAsbClient/AsbMessageDumpBehavior.cs b/src/MxAsbClient/AsbMessageDumpBehavior.cs new file mode 100644 index 0000000..323717a --- /dev/null +++ b/src/MxAsbClient/AsbMessageDumpBehavior.cs @@ -0,0 +1,75 @@ +using System.ServiceModel; +using System.ServiceModel.Channels; +using System.ServiceModel.Description; +using System.ServiceModel.Dispatcher; + +namespace MxAsbClient; + +internal sealed class AsbMessageDumpBehavior : IEndpointBehavior +{ + private readonly Action trace; + + public AsbMessageDumpBehavior(Action trace) + { + this.trace = trace; + } + + public void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) + { + } + + public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) + { + clientRuntime.ClientMessageInspectors.Add(new Inspector(trace)); + } + + public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) + { + } + + public void Validate(ServiceEndpoint endpoint) + { + } + + private sealed class Inspector : IClientMessageInspector + { + private readonly Action trace; + + public Inspector(Action trace) + { + this.trace = trace; + } + + public object? BeforeSendRequest(ref Message request, IClientChannel channel) + { + MessageBuffer buffer = request.CreateBufferedCopy(int.MaxValue); + Message copy = buffer.CreateMessage(); + request = buffer.CreateMessage(); + string action = copy.Headers.Action ?? string.Empty; + if (action.Contains("registerItems", StringComparison.OrdinalIgnoreCase) + || action.Contains("writeIn", StringComparison.OrdinalIgnoreCase) + || action.Contains("readIn", StringComparison.OrdinalIgnoreCase) + || action.Contains("publishWriteComplete", StringComparison.OrdinalIgnoreCase)) + { + trace("asb.request=" + copy); + } + + return null; + } + + public void AfterReceiveReply(ref Message reply, object? correlationState) + { + MessageBuffer buffer = reply.CreateBufferedCopy(int.MaxValue); + Message copy = buffer.CreateMessage(); + reply = buffer.CreateMessage(); + string xml = copy.ToString(); + if (xml.Contains("RegisterItemsResponse", StringComparison.OrdinalIgnoreCase) + || xml.Contains("ReadResponse", StringComparison.OrdinalIgnoreCase) + || xml.Contains("WriteBasicResponse", StringComparison.OrdinalIgnoreCase) + || xml.Contains("PublishWriteCompleteResponse", StringComparison.OrdinalIgnoreCase)) + { + trace("asb.reply=" + xml); + } + } + } +} diff --git a/src/MxAsbClient/AsbPayloadDebug.cs b/src/MxAsbClient/AsbPayloadDebug.cs new file mode 100644 index 0000000..5998d5d --- /dev/null +++ b/src/MxAsbClient/AsbPayloadDebug.cs @@ -0,0 +1,23 @@ +namespace MxAsbClient; + +internal static class AsbPayloadDebug +{ + public static byte[] SerializeItemsForDebug(string tag) + { + ItemIdentity[] items = + [ + new ItemIdentity + { + Type = (ushort)ItemIdentityType.Name, + ReferenceType = (ushort)ItemReferenceType.Absolute, + Name = tag, + ContextName = string.Empty, + }, + ]; + + using MemoryStream stream = new(); + BinaryWriter writer = new(stream); + ((IAsbCustomSerializableType)new ItemIdentity()).WriteArrayToStream(items, ref writer); + return stream.ToArray(); + } +} diff --git a/src/MxAsbClient/AsbPublishedValue.cs b/src/MxAsbClient/AsbPublishedValue.cs new file mode 100644 index 0000000..ac7838e --- /dev/null +++ b/src/MxAsbClient/AsbPublishedValue.cs @@ -0,0 +1,147 @@ +namespace MxAsbClient; + +public enum AsbStatusElementType : ushort +{ + OpcDaStatus = 1, + OpcUaStatus = 2, + OpcUaVendorStatus = 3, + ScadaStatus = 4, + MxStatusCategory = 5, + MxStatusDetail = 6, + MxQuality = 7, + Reserved1Status = 125, + Reserved2Status = 126, + Reserved3Status = 127, +} + +public sealed record AsbStatusElement(AsbStatusElementType Type, ushort Value); + +public sealed record AsbPublishedValue( + ulong ItemId, + string? ItemName, + ushort VariantType, + object? Value, + string Preview, + DateTime TimestampUtc, + bool TimestampSpecified, + ushort? Quality, + IReadOnlyList Status, + AsbStatus RawStatus, + Variant UserData) +{ + public AsbStatusSummary StatusSummary => AsbResultMapper.ToStatusSummary(Status); +} + +public sealed record AsbPublishResult(PublishResponse Response, IReadOnlyList Values) +{ + public AsbResultSummary Result => AsbResultMapper.ToSummary(Response.Result); + + public bool HasValues => Values.Count > 0; +} + +public static class AsbPublishMapper +{ + public static IReadOnlyList ToPublishedValues( + PublishResponse response, + IReadOnlyDictionary? itemNamesById = null) + { + if (response.Values is null || response.Values.Length == 0) + { + return []; + } + + AsbPublishedValue[] values = new AsbPublishedValue[response.Values.Length]; + for (int i = 0; i < response.Values.Length; i++) + { + values[i] = ToPublishedValue(response.Values[i], itemNamesById); + } + + return values; + } + + public static AsbPublishedValue ToPublishedValue( + MonitoredItemValue itemValue, + IReadOnlyDictionary? itemNamesById = null) + { + RuntimeValue runtime = itemValue.Value; + IReadOnlyList status = DecodeStatus(runtime.Status); + ushort? quality = status.FirstOrDefault(item => item.Type == AsbStatusElementType.MxQuality)?.Value; + string? itemName = string.IsNullOrWhiteSpace(itemValue.Item.Name) + ? ResolveItemName(itemValue.Item.Id, itemNamesById) + : itemValue.Item.Name; + + return new AsbPublishedValue( + itemValue.Item.Id, + itemName, + runtime.Value.Type, + MxAsbDataClient.DecodeVariant(runtime.Value), + MxAsbDataClient.FormatVariant(runtime.Value), + runtime.Timestamp.Kind == DateTimeKind.Utc ? runtime.Timestamp : runtime.Timestamp.ToUniversalTime(), + runtime.TimestampSpecified, + quality, + status, + runtime.Status, + itemValue.UserData); + } + + public static IReadOnlyList DecodeStatus(AsbStatus status) + { + byte[] payload = status.Payload ?? []; + int length = status.Count > 0 ? Math.Min(status.Count, payload.Length) : payload.Length; + if (length == 0) + { + return []; + } + + List elements = []; + int offset = 0; + while (offset < length) + { + byte marker = payload[offset++]; + AsbStatusElementType type = (AsbStatusElementType)(marker & 0x7F); + if ((marker & 0x80) != 0) + { + elements.Add(new AsbStatusElement(type, 0)); + continue; + } + + if (offset + sizeof(ushort) > length) + { + break; + } + + ushort value = BitConverter.ToUInt16(payload, offset); + offset += sizeof(ushort); + elements.Add(new AsbStatusElement(type, value)); + } + + return elements; + } + + public static IReadOnlyDictionary CreateItemNameMap(params ItemStatus[]?[] statusGroups) + { + Dictionary names = []; + foreach (ItemStatus[]? statuses in statusGroups) + { + if (statuses is null) + { + continue; + } + + foreach (ItemStatus status in statuses) + { + if (status.Item.IdSpecified && !string.IsNullOrWhiteSpace(status.Item.Name)) + { + names[status.Item.Id] = status.Item.Name; + } + } + } + + return names; + } + + private static string? ResolveItemName(ulong id, IReadOnlyDictionary? itemNamesById) + { + return itemNamesById is not null && itemNamesById.TryGetValue(id, out string? name) ? name : null; + } +} diff --git a/src/MxAsbClient/AsbReconnect.cs b/src/MxAsbClient/AsbReconnect.cs new file mode 100644 index 0000000..3bce37f --- /dev/null +++ b/src/MxAsbClient/AsbReconnect.cs @@ -0,0 +1,44 @@ +namespace MxAsbClient; + +public sealed record AsbReconnectOptions +{ + public static AsbReconnectOptions Default { get; } = new(); + + public int MaxAttempts { get; init; } = 3; + + public TimeSpan Delay { get; init; } = TimeSpan.FromMilliseconds(500); + + public bool CleanupCurrentConnection { get; init; } = true; + + public AsbClientCleanupOptions CleanupOptions { get; init; } = AsbClientCleanupOptions.Default; + + public void Validate() + { + if (MaxAttempts < 1) + { + throw new ArgumentOutOfRangeException(nameof(MaxAttempts), "Reconnect attempts must be at least one."); + } + + if (Delay < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(Delay), "Reconnect delay cannot be negative."); + } + + ArgumentNullException.ThrowIfNull(CleanupOptions); + CleanupOptions.Validate(); + } +} + +public sealed record AsbReconnectAttempt( + int Attempt, + bool Succeeded, + Exception? Exception); + +public sealed record AsbReconnectResult( + bool Succeeded, + MxAsbDataClient? Client, + AsbClientCleanupResult? CleanupResult, + IReadOnlyList Attempts) +{ + public Exception? LastException => Attempts.LastOrDefault(attempt => attempt.Exception is not null)?.Exception; +} diff --git a/src/MxAsbClient/AsbRegistry.cs b/src/MxAsbClient/AsbRegistry.cs new file mode 100644 index 0000000..4de070e --- /dev/null +++ b/src/MxAsbClient/AsbRegistry.cs @@ -0,0 +1,67 @@ +using System.Security.Cryptography; +using System.Text; +using Microsoft.Win32; +using System.Numerics; + +namespace MxAsbClient; + +internal static class AsbRegistry +{ + private const string Entropy = "wonderware"; + + private static string RegistryPath => Environment.Is64BitProcess + ? @"SOFTWARE\Wow6432Node\ArchestrA\ArchestrAServices" + : @"SOFTWARE\ArchestrA\ArchestrAServices"; + + public static string GetDefaultSolutionName() + { + return Registry.GetValue($@"HKEY_LOCAL_MACHINE\{RegistryPath}", "DefaultASBSolution", string.Empty)?.ToString() ?? string.Empty; + } + + public static string GetSolutionPassphrase(string? solutionName, Action? trace = null) + { + trace?.Invoke("asb.stage=registry-solution"); + string effectiveSolution = string.IsNullOrWhiteSpace(solutionName) ? GetDefaultSolutionName() : solutionName!; + if (string.IsNullOrWhiteSpace(effectiveSolution)) + { + throw new InvalidOperationException("ASB default solution name was not found in the registry."); + } + + trace?.Invoke("asb.stage=registry-open-solution"); + using RegistryKey? key = Registry.LocalMachine.OpenSubKey($@"{RegistryPath}\{effectiveSolution}", writable: false); + if (key?.GetValue("sharedsecret") is not byte[] protectedBytes) + { + throw new InvalidOperationException($"ASB sharedsecret was not found for solution '{effectiveSolution}'."); + } + + trace?.Invoke("asb.stage=registry-unprotect"); + byte[] clear = ProtectedData.Unprotect(protectedBytes, Encoding.Unicode.GetBytes(Entropy), DataProtectionScope.LocalMachine); + trace?.Invoke("asb.stage=registry-passphrase-ready"); + return Encoding.Unicode.GetString(clear); + } + + public static AsbSolutionCryptoParameters GetCryptoParameters(string? solutionName) + { + string effectiveSolution = string.IsNullOrWhiteSpace(solutionName) ? GetDefaultSolutionName() : solutionName!; + using RegistryKey? key = Registry.LocalMachine.OpenSubKey($@"{RegistryPath}\{effectiveSolution}", writable: false); + if (key is null) + { + throw new InvalidOperationException($"ASB solution registry key was not found for '{effectiveSolution}'."); + } + + string primeText = key.GetValue("Prime")?.ToString() ?? AsbSolutionCryptoParameters.DefaultPrimeText; + string generatorText = key.GetValue("Generator")?.ToString() ?? "22"; + string hashAlgorithm = key.GetValue("HashAlgorthim")?.ToString() ?? "MD5"; + int keySize = int.TryParse(key.GetValue("keySize")?.ToString(), out int parsedKeySize) ? parsedKeySize : 256; + return new AsbSolutionCryptoParameters( + BigInteger.Parse(primeText), + BigInteger.Parse(generatorText), + hashAlgorithm, + keySize); + } +} + +internal sealed record AsbSolutionCryptoParameters(BigInteger Prime, BigInteger Generator, string HashAlgorithm, int KeySize) +{ + public const string DefaultPrimeText = "179769313486231590770839156793787453197860296048756011706444423684197180216158519368947833795864925541502180565485980503646440548199239100050792877003355816639229553136239076508735759914822574862575007425302077447712589550957937778424442426617334727629299387668709205606050270810842907692932019128194"; +} diff --git a/src/MxAsbClient/AsbResultMapping.cs b/src/MxAsbClient/AsbResultMapping.cs new file mode 100644 index 0000000..5fa2caf --- /dev/null +++ b/src/MxAsbClient/AsbResultMapping.cs @@ -0,0 +1,273 @@ +namespace MxAsbClient; + +public enum AsbErrorCode : ushort +{ + Success = 0, + InvalidConnectionId = 1, + ApplicationAuthenticationError = 2, + UserAuthenticationError = 3, + UserAuthorizationError = 4, + NotSupportedOperation = 5, + MonitoredItemsNotFound = 6, + InvalidSubscriptionId = 7, + ItemAlreadyRegistered = 8, + ItemAlreadyDeletedOrDoesNotExist = 9, + InvalidMonitoredItems = 10, + OperationFailed = 11, + SpecificError = 12, + BadNoCommunication = 13, + BadNothingToDo = 14, + BadTooManyOperations = 15, + BadNodeIdInvalid = 16, + BrowseFailed = 17, + WriteFailedBadOutOfRange = 18, + WriteFailedBadTypeMismatch = 19, + WriteFailedBadDimensionMismatch = 20, + WriteFailedAccessDenied = 21, + WriteFailedSecuredWrite = 22, + WriteFailedVerifiedWrite = 23, + IndexOutOfRange = 24, + RequestTimedOut = 25, + DataTypeConversionNotSupported = 26, + ItemCannotBeRegisteredNoName = 27, + ItemCannotBeRegisteredNoId = 28, + ItemAlreadyBeingMonitored = 29, + SubscriptionIdAlreadyExist = 30, + OperationWouldBlock = 31, + PublishComplete = 32, + WriteFailedUserNotHavingAccessRights = 33, + WriteFailedVerifierNotHavingVerifyRights = 34, + ObjectNotInitialized = 128, + EndPointNotFound = 129, + ConnectionClosed = 130, + InvalidParameter = 131, + MemoryAllocationError = 132, + OperationNotComplete = 133, + FileOperationFailed = 256, + InvalidXmlFile = 272, + RecordLookupError = 288, + Unknown = ushort.MaxValue, +} + +public enum AsbStatusQuality +{ + Unknown = 0, + Bad = 1, + Uncertain = 2, + Good = 3, +} + +public enum AsbMxStatusCategory +{ + Unknown = -1, + Ok = 0, + Pending = 1, + Warning = 2, + CommunicationError = 3, + ConfigurationError = 4, + OperationalError = 5, + SecurityError = 6, + SoftwareError = 7, + OtherError = 8, +} + +public enum AsbMxStatusDetail +{ + Unknown = -1, + None = 0, + RequestTimedOut = 16, + PlatformCommunicationError = 17, + WriteAccessDenied = 33, +} + +public sealed record AsbResultSummary( + AsbErrorCode Error, + int RawErrorCode, + uint Status, + uint SpecificErrorCode, + bool IsSuccess, + bool IsSuccessLike); + +public sealed record AsbItemStatusSummary( + string? ItemName, + ulong ItemId, + AsbErrorCode Error, + ushort RawErrorCode, + bool IsSuccess, + IReadOnlyList Status) +{ + public AsbStatusSummary StatusSummary { get; init; } = AsbResultMapper.ToStatusSummary(Status); +} + +public sealed record AsbStatusSummary( + ushort? RawQuality, + AsbStatusQuality Quality, + ushort? RawCategory, + AsbMxStatusCategory Category, + ushort? RawDetail, + AsbMxStatusDetail Detail, + AsbErrorCode? StatusError, + bool IsGoodQuality, + bool IsSuccessLike, + IReadOnlyList Elements); + +public static class AsbResultMapper +{ + public static AsbResultSummary ToSummary(ArchestrAResult result) + { + AsbErrorCode error = result.ErrorCode is >= 0 and <= ushort.MaxValue + ? ToErrorCode((ushort)result.ErrorCode) + : AsbErrorCode.Unknown; + + bool isSuccess = error == AsbErrorCode.Success || result.Success; + return new AsbResultSummary( + error, + result.ErrorCode, + result.Status, + result.SpecificErrorCode, + isSuccess, + isSuccess || error == AsbErrorCode.PublishComplete); + } + + public static AsbItemStatusSummary ToItemSummary(ItemStatus status) + { + AsbErrorCode error = ToErrorCode(status.ErrorCode); + IReadOnlyList elements = AsbPublishMapper.DecodeStatus(status.Status); + return new AsbItemStatusSummary( + status.Item.Name, + status.Item.Id, + error, + status.ErrorCode, + error == AsbErrorCode.Success, + elements); + } + + public static IReadOnlyList ToItemSummaries(ItemStatus[]? statuses) + { + if (statuses is null || statuses.Length == 0) + { + return []; + } + + AsbItemStatusSummary[] summaries = new AsbItemStatusSummary[statuses.Length]; + for (int i = 0; i < statuses.Length; i++) + { + summaries[i] = ToItemSummary(statuses[i]); + } + + return summaries; + } + + public static AsbErrorCode ToErrorCode(ushort errorCode) + { + return Enum.IsDefined(typeof(AsbErrorCode), errorCode) + ? (AsbErrorCode)errorCode + : AsbErrorCode.Unknown; + } + + public static AsbStatusSummary ToStatusSummary(AsbStatus status) + { + return ToStatusSummary(AsbPublishMapper.DecodeStatus(status)); + } + + public static AsbStatusSummary ToStatusSummary(IReadOnlyList elements) + { + ushort? rawQuality = FirstValue(elements, AsbStatusElementType.MxQuality); + ushort? rawCategory = FirstValue(elements, AsbStatusElementType.MxStatusCategory); + ushort? rawDetail = FirstValue(elements, AsbStatusElementType.MxStatusDetail); + + AsbStatusQuality quality = ToQuality(rawQuality); + AsbMxStatusCategory category = ToMxStatusCategory(rawCategory); + AsbMxStatusDetail detail = ToMxStatusDetail(rawDetail); + AsbErrorCode? statusError = ToStatusError(category, detail); + bool isGoodQuality = quality == AsbStatusQuality.Good; + bool isSuccessLike = statusError == AsbErrorCode.Success + && (quality == AsbStatusQuality.Good || quality == AsbStatusQuality.Unknown); + + return new AsbStatusSummary( + rawQuality, + quality, + rawCategory, + category, + rawDetail, + detail, + statusError, + isGoodQuality, + isSuccessLike, + elements); + } + + public static AsbStatusQuality ToQuality(ushort? quality) + { + if (quality is null) + { + return AsbStatusQuality.Unknown; + } + + return (quality.Value & 0x00C0) switch + { + 0x00C0 => AsbStatusQuality.Good, + 0x0040 => AsbStatusQuality.Uncertain, + 0x0000 => AsbStatusQuality.Bad, + _ => AsbStatusQuality.Unknown, + }; + } + + public static AsbMxStatusCategory ToMxStatusCategory(ushort? category) + { + return category switch + { + 0 => AsbMxStatusCategory.Ok, + 1 => AsbMxStatusCategory.Pending, + 2 => AsbMxStatusCategory.Warning, + 3 => AsbMxStatusCategory.CommunicationError, + 4 => AsbMxStatusCategory.ConfigurationError, + 5 => AsbMxStatusCategory.OperationalError, + 6 => AsbMxStatusCategory.SecurityError, + 7 => AsbMxStatusCategory.SoftwareError, + 8 => AsbMxStatusCategory.OtherError, + _ => AsbMxStatusCategory.Unknown, + }; + } + + public static AsbMxStatusDetail ToMxStatusDetail(ushort? detail) + { + return detail switch + { + 0 => AsbMxStatusDetail.None, + 16 => AsbMxStatusDetail.RequestTimedOut, + 17 => AsbMxStatusDetail.PlatformCommunicationError, + 33 => AsbMxStatusDetail.WriteAccessDenied, + _ => AsbMxStatusDetail.Unknown, + }; + } + + private static AsbErrorCode? ToStatusError(AsbMxStatusCategory category, AsbMxStatusDetail detail) + { + if (category == AsbMxStatusCategory.Ok && detail == AsbMxStatusDetail.None) + { + return AsbErrorCode.Success; + } + + return detail switch + { + AsbMxStatusDetail.RequestTimedOut => AsbErrorCode.RequestTimedOut, + AsbMxStatusDetail.PlatformCommunicationError => AsbErrorCode.BadNoCommunication, + AsbMxStatusDetail.WriteAccessDenied => AsbErrorCode.WriteFailedAccessDenied, + _ => null, + }; + } + + private static ushort? FirstValue(IReadOnlyList elements, AsbStatusElementType type) + { + foreach (AsbStatusElement element in elements) + { + if (element.Type == type) + { + return element.Value; + } + } + + return null; + } +} diff --git a/src/MxAsbClient/AsbSerialization.cs b/src/MxAsbClient/AsbSerialization.cs new file mode 100644 index 0000000..9d924b3 --- /dev/null +++ b/src/MxAsbClient/AsbSerialization.cs @@ -0,0 +1,49 @@ +using System.Globalization; +using System.Xml.Linq; +using System.Xml.Serialization; + +namespace MxAsbClient; + +internal static class AsbSerialization +{ + private static readonly Dictionary Serializers = []; + private static readonly object LockObject = new(); + + public static string ToXml(this object value) + { + if (value is null) + { + return string.Empty; + } + + string text = string.Empty; + using (StringWriter writer = new(CultureInfo.CurrentCulture)) + { + lock (LockObject) + { + Type type = value.GetType(); + if (!Serializers.TryGetValue(type, out XmlSerializer? serializer)) + { + serializer = new XmlSerializer(type, "urn:invensys.schemas"); + Serializers.Add(type, serializer); + } + + serializer.Serialize(writer, value); + text = writer.ToString(); + } + } + + using TextReader reader = new StringReader(text); + XElement root = XDocument.Load(reader).Root ?? throw new InvalidOperationException("Serialized ASB message had no root element."); + XAttribute? xsd = root.Attribute(XNamespace.Xmlns + "xsd"); + XAttribute? xsi = root.Attribute(XNamespace.Xmlns + "xsi"); + if (xsd is not null && xsi is not null) + { + root.ReplaceAttributes(xsi, xsd); + } + + using StringWriter normalized = new(CultureInfo.CurrentCulture); + root.Save(normalized); + return normalized.ToString() ?? string.Empty; + } +} diff --git a/src/MxAsbClient/AsbSubscriptionOptions.cs b/src/MxAsbClient/AsbSubscriptionOptions.cs new file mode 100644 index 0000000..f230373 --- /dev/null +++ b/src/MxAsbClient/AsbSubscriptionOptions.cs @@ -0,0 +1,29 @@ +namespace MxAsbClient; + +public sealed record AsbSubscriptionOptions +{ + public static AsbSubscriptionOptions Default { get; } = new(); + + public long MaxQueueSize { get; init; } = 128; + + public ulong SampleInterval { get; init; } = 1000; + + public void Validate() + { + if (MaxQueueSize <= 0) + { + throw new ArgumentOutOfRangeException(nameof(MaxQueueSize), "ASB subscription max queue size must be greater than zero."); + } + } +} + +public sealed record AsbMonitoredItemOptions +{ + public static AsbMonitoredItemOptions Default { get; } = new(); + + public ulong SampleInterval { get; init; } = 1000; + + public bool Active { get; init; } = true; + + public bool Buffered { get; init; } +} diff --git a/src/MxAsbClient/AsbSystemAuthenticator.cs b/src/MxAsbClient/AsbSystemAuthenticator.cs new file mode 100644 index 0000000..eaad348 --- /dev/null +++ b/src/MxAsbClient/AsbSystemAuthenticator.cs @@ -0,0 +1,167 @@ +using System.IO.Compression; +using System.Numerics; +using System.Security.Cryptography; +using System.Text; + +namespace MxAsbClient; + +internal sealed class AsbSystemAuthenticator +{ + private static readonly byte[] PasswordSalt = Encoding.ASCII.GetBytes("ArchestrAService"); + private readonly BigInteger dhPrime; + private readonly BigInteger dhGenerator; + private readonly string hashAlgorithm; + private readonly int keySize; + private readonly byte[] solutionPassphrase; + private readonly byte[] privateKey; + private readonly byte[] localPublicKey; + private byte[] remotePublicKey = []; + private ulong nextMessageNumber = 1; + + public AsbSystemAuthenticator(string passphrase, AsbSolutionCryptoParameters cryptoParameters, Action? trace = null) + { + dhPrime = cryptoParameters.Prime; + dhGenerator = cryptoParameters.Generator; + hashAlgorithm = cryptoParameters.HashAlgorithm; + keySize = cryptoParameters.KeySize; + trace?.Invoke("asb.stage=authenticator-passphrase-bytes"); + solutionPassphrase = Encoding.UTF8.GetBytes(passphrase); + trace?.Invoke("asb.stage=authenticator-create-private"); + BigInteger privateKeyValue = CreatePrivateKey(); + trace?.Invoke("asb.stage=authenticator-private-ready"); + privateKey = privateKeyValue.ToByteArray(); + trace?.Invoke("asb.stage=authenticator-modpow"); + localPublicKey = BigInteger.ModPow(dhGenerator, privateKeyValue, dhPrime).ToByteArray(); + trace?.Invoke("asb.stage=authenticator-public-ready"); + ConnectionId = Guid.NewGuid(); + } + + public Guid ConnectionId { get; } + + public byte[] LocalPublicKey => localPublicKey; + + public bool UseApolloSigning { get; private set; } + + public void AcceptConnectResponse(ConnectResponse response) + { + remotePublicKey = response.ServicePublicKey?.Data ?? throw new InvalidOperationException("ASB connect response did not contain a service public key."); + UseApolloSigning = response.ConnectionLifetime?.Contains(":V2", StringComparison.OrdinalIgnoreCase) == true; + } + + public AuthenticationData CreateAuthenticationData() + { + byte[] clear = [.. localPublicKey, .. remotePublicKey]; + byte[] encrypted = Encrypt(clear, out byte[] iv); + return new AuthenticationData + { + Data = encrypted, + InitializationVector = iv, + }; + } + + public void Sign(ConnectedRequest request, bool forceHmac = false) + { + ConnectionValidator validator = new() + { + ConnectionId = ConnectionId, + MessageNumber = nextMessageNumber++, + MessageAuthenticationCode = [], + SignatureInitializationVector = [], + }; + + request.ConnectionValidator = validator; + using HMAC? hmac = CreateHmac(forceHmac); + if (hmac is null) + { + return; + } + + byte[] hash = hmac.ComputeHash(Encoding.UTF8.GetBytes(request.ToXml())); + validator.MessageAuthenticationCode = Encrypt(hash, out byte[] iv); + validator.SignatureInitializationVector = iv; + } + + private HMAC? CreateHmac(bool forceHmac) + { + return hashAlgorithm.ToLowerInvariant() switch + { + "md5" => new HMACMD5(CryptoKey), + "sha1" => new HMACSHA1(CryptoKey), + "sha512" => new HMACSHA512(CryptoKey), + _ => forceHmac ? new HMACSHA1(CryptoKey) : null, + }; + } + + private byte[] Encrypt(byte[] clear, out byte[] iv) + { + if (UseApolloSigning) + { + return EncryptApollo(clear, out iv); + } + + return EncryptBaktun(clear, out iv); + } + + private byte[] EncryptApollo(byte[] clear, out byte[] iv) + { + using Aes aes = Aes.Create(); + aes.Key = DeriveAesKey(); + iv = aes.IV; + using MemoryStream output = new(); + using (CryptoStream crypto = new(output, aes.CreateEncryptor(), CryptoStreamMode.Write)) + { + crypto.Write(clear, 0, clear.Length); + } + + return output.ToArray(); + } + + private byte[] EncryptBaktun(byte[] clear, out byte[] iv) + { + using Aes aes = Aes.Create(); + aes.Key = DeriveAesKey(); + iv = aes.IV; + using MemoryStream output = new(); + using (CryptoStream crypto = new(output, aes.CreateEncryptor(), CryptoStreamMode.Write)) + { + using DeflateStream deflate = new(crypto, CompressionMode.Compress); + deflate.Write(clear, 0, clear.Length); + } + + return output.ToArray(); + } + + private byte[] DeriveAesKey() + { + return Rfc2898DeriveBytes.Pbkdf2( + Convert.ToBase64String(CryptoKey), + PasswordSalt, + iterations: 1000, + HashAlgorithmName.SHA1, + outputLength: 16); + } + + private byte[] CryptoKey + { + get + { + byte[] shared = BigInteger.ModPow(new BigInteger(remotePublicKey), new BigInteger(privateKey), dhPrime).ToByteArray(); + return [.. shared, .. solutionPassphrase]; + } + } + + private BigInteger CreatePrivateKey() + { + byte[] bytes = new byte[(keySize / 8) + 1]; + BigInteger value; + do + { + RandomNumberGenerator.Fill(bytes); + bytes[^1] = 0; + value = new BigInteger(bytes); + } + while (value <= BigInteger.Zero || value >= dhPrime - BigInteger.One); + + return value; + } +} diff --git a/src/MxAsbClient/AsbWriteCompletion.cs b/src/MxAsbClient/AsbWriteCompletion.cs new file mode 100644 index 0000000..9f6d42d --- /dev/null +++ b/src/MxAsbClient/AsbWriteCompletion.cs @@ -0,0 +1,50 @@ +namespace MxAsbClient; + +public sealed record AsbWriteCompletionOptions +{ + public static AsbWriteCompletionOptions Default { get; } = new(); + + public TimeSpan Timeout { get; init; } = TimeSpan.FromSeconds(5); + + public TimeSpan PollInterval { get; init; } = TimeSpan.FromMilliseconds(250); + + public TimeSpan ReadbackDelay { get; init; } = TimeSpan.Zero; + + public CancellationToken CancellationToken { get; init; } + + public void ValidatePolling() + { + if (Timeout < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(Timeout), "Write completion timeout must not be negative."); + } + + if (PollInterval <= TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(PollInterval), "Write completion poll interval must be greater than zero."); + } + } + + public void ValidateReadback() + { + ValidatePolling(); + if (ReadbackDelay < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(ReadbackDelay), "Write completion readback delay must not be negative."); + } + } +} + +public sealed record AsbWriteCompletionResult( + uint WriteHandle, + bool Completed, + bool TimedOut, + TimeSpan Elapsed, + int PollCount, + IReadOnlyList Responses, + IReadOnlyList CompleteWrites, + ItemWriteComplete? MatchingComplete); + +public sealed record AsbWriteCompletionReadbackResult( + AsbWriteCompletionResult Completion, + ReadResponse? Readback); diff --git a/src/MxAsbClient/AsbWriteOptions.cs b/src/MxAsbClient/AsbWriteOptions.cs new file mode 100644 index 0000000..34f35ed --- /dev/null +++ b/src/MxAsbClient/AsbWriteOptions.cs @@ -0,0 +1,8 @@ +namespace MxAsbClient; + +public sealed record AsbWriteOptions +{ + public uint WriteHandle { get; init; } + + public string? Comment { get; init; } +} diff --git a/src/MxAsbClient/MxAsbClient.csproj b/src/MxAsbClient/MxAsbClient.csproj new file mode 100644 index 0000000..97466e1 --- /dev/null +++ b/src/MxAsbClient/MxAsbClient.csproj @@ -0,0 +1,17 @@ + + + + net10.0-windows + enable + enable + x64 + + + + + + + + + + diff --git a/src/MxAsbClient/MxAsbCompatibilityServer.cs b/src/MxAsbClient/MxAsbCompatibilityServer.cs new file mode 100644 index 0000000..1d28e60 --- /dev/null +++ b/src/MxAsbClient/MxAsbCompatibilityServer.cs @@ -0,0 +1,295 @@ +namespace MxAsbClient; + +public sealed record MxAsbDataChangeEvent( + int ServerHandle, + int ItemHandle, + object? Value, + ushort Quality, + DateTime TimestampUtc, + IReadOnlyList Status) +{ + public AsbStatusSummary StatusSummary => AsbResultMapper.ToStatusSummary(Status); +} + +public sealed class MxAsbCompatibilityServer : IDisposable +{ + private readonly object gate = new(); + private readonly Dictionary sessions = []; + private readonly Dictionary items = []; + private int nextServerHandle = 1; + private int nextItemHandle = 1; + private bool disposed; + + public event EventHandler? DataChanged; + + public int Register(string endpoint, string? solutionName = null, Action? trace = null, bool dumpMessages = false) + { + return Register(new AsbConnectionOptions + { + Endpoint = endpoint, + SolutionName = solutionName, + Trace = trace, + DumpMessages = dumpMessages, + }); + } + + public int Register(AsbConnectionOptions options) + { + ObjectDisposedException.ThrowIf(disposed, this); + MxAsbDataClient client = MxAsbDataClient.Connect(options); + return RegisterClient(client); + } + + private int RegisterClient(MxAsbDataClient client) + { + int serverHandle; + lock (gate) + { + serverHandle = nextServerHandle++; + sessions.Add(serverHandle, new AsbServerSession(serverHandle, client)); + } + + client.PublishedValueReceived += OnPublishedValueReceived; + return serverHandle; + } + + public void Unregister(int serverHandle) + { + AsbServerSession session; + lock (gate) + { + session = GetSessionLocked(serverHandle); + sessions.Remove(serverHandle); + foreach (int itemHandle in items + .Where(pair => pair.Value.ServerHandle == serverHandle) + .Select(pair => pair.Key) + .ToArray()) + { + items.Remove(itemHandle); + } + } + + session.Client.PublishedValueReceived -= OnPublishedValueReceived; + session.Dispose(); + } + + public int AddItem(int serverHandle, string tag) + { + ObjectDisposedException.ThrowIf(disposed, this); + lock (gate) + { + GetSessionLocked(serverHandle); + int itemHandle = nextItemHandle++; + items.Add(itemHandle, new AsbCompatibilityItem(serverHandle, itemHandle, tag)); + return itemHandle; + } + } + + public void RemoveItem(int serverHandle, int itemHandle) + { + AsbServerSession session; + AsbCompatibilityItem item; + lock (gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + items.Remove(itemHandle); + } + + if (session.SubscriptionId.HasValue && item.MonitoredItem.HasValue) + { + session.Client.DeleteMonitoredItems(session.SubscriptionId.Value, [item.MonitoredItem.Value]); + } + } + + public void Advise(int serverHandle, int itemHandle, ulong sampleInterval = 1000, long maxQueueSize = 128) + { + Advise( + serverHandle, + itemHandle, + new AsbSubscriptionOptions + { + MaxQueueSize = maxQueueSize, + SampleInterval = sampleInterval, + }, + new AsbMonitoredItemOptions + { + SampleInterval = sampleInterval, + }); + } + + public void Advise( + int serverHandle, + int itemHandle, + AsbSubscriptionOptions subscriptionOptions, + AsbMonitoredItemOptions monitoredItemOptions) + { + ObjectDisposedException.ThrowIf(disposed, this); + ArgumentNullException.ThrowIfNull(subscriptionOptions); + ArgumentNullException.ThrowIfNull(monitoredItemOptions); + subscriptionOptions.Validate(); + + AsbServerSession session; + AsbCompatibilityItem item; + lock (gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + } + + if (!session.SubscriptionId.HasValue) + { + CreateSubscriptionResponse create = session.Client.CreateSubscription(subscriptionOptions); + EnsureSucceeded(create.Result, nameof(MxAsbDataClient.CreateSubscription)); + session.SubscriptionId = create.SubscriptionId; + } + + AddMonitoredItemsResponse add = session.Client.AddMonitoredItems(session.SubscriptionId.Value, [item.Tag], monitoredItemOptions); + EnsureSucceeded(add.Result, nameof(MxAsbDataClient.AddMonitoredItems)); + ItemStatus? status = add.Status?.FirstOrDefault(); + if (status.HasValue) + { + item.MonitoredItem = status.Value.Item; + lock (gate) + { + items[itemHandle] = item; + } + } + } + + public AsbPublishResult Poll(int serverHandle) + { + ObjectDisposedException.ThrowIf(disposed, this); + AsbServerSession session; + lock (gate) + { + session = GetSessionLocked(serverHandle); + } + + if (!session.SubscriptionId.HasValue) + { + throw new InvalidOperationException("The ASB server handle has no active subscription."); + } + + return session.Client.PublishValues(session.SubscriptionId.Value); + } + + public void Dispose() + { + if (disposed) + { + return; + } + + AsbServerSession[] activeSessions; + lock (gate) + { + activeSessions = sessions.Values.ToArray(); + sessions.Clear(); + items.Clear(); + } + + foreach (AsbServerSession session in activeSessions) + { + session.Client.PublishedValueReceived -= OnPublishedValueReceived; + session.Dispose(); + } + + disposed = true; + } + + private void OnPublishedValueReceived(object? sender, AsbPublishedValue value) + { + int serverHandle; + int itemHandle; + lock (gate) + { + AsbServerSession? session = sessions.Values.FirstOrDefault(candidate => ReferenceEquals(candidate.Client, sender)); + if (session is null) + { + return; + } + + AsbCompatibilityItem? item = items.Values.FirstOrDefault(candidate => + candidate.ServerHandle == session.ServerHandle && + candidate.MonitoredItem?.Id == value.ItemId); + if (item is null) + { + return; + } + + serverHandle = session.ServerHandle; + itemHandle = item.ItemHandle; + } + + DataChanged?.Invoke( + this, + new MxAsbDataChangeEvent( + serverHandle, + itemHandle, + value.Value, + value.Quality ?? 0, + value.TimestampUtc, + value.Status)); + } + + private AsbServerSession GetSessionLocked(int serverHandle) + { + if (!sessions.TryGetValue(serverHandle, out AsbServerSession? session)) + { + throw new ArgumentException("Unknown ASB server handle.", nameof(serverHandle)); + } + + return session; + } + + private AsbCompatibilityItem GetItemLocked(int serverHandle, int itemHandle) + { + if (!items.TryGetValue(itemHandle, out AsbCompatibilityItem? item) || item.ServerHandle != serverHandle) + { + throw new ArgumentException("Unknown ASB item handle.", nameof(itemHandle)); + } + + return item; + } + + private static void EnsureSucceeded(ArchestrAResult result, string operation) + { + if (!result.Success) + { + throw new InvalidOperationException($"{operation} failed with error 0x{result.ErrorCode:X8}."); + } + } + + private sealed class AsbServerSession(int serverHandle, MxAsbDataClient client) : IDisposable + { + public int ServerHandle { get; } = serverHandle; + public MxAsbDataClient Client { get; } = client; + public long? SubscriptionId { get; set; } + + public void Dispose() + { + if (SubscriptionId.HasValue) + { + try + { + Client.DeleteSubscription(SubscriptionId.Value); + } + catch + { + // Best-effort cleanup; channel disposal below still releases the client. + } + } + + Client.Dispose(); + } + } + + private sealed record AsbCompatibilityItem( + int ServerHandle, + int ItemHandle, + string Tag) + { + public ItemIdentity? MonitoredItem { get; set; } + } +} diff --git a/src/MxAsbClient/MxAsbDataClient.cs b/src/MxAsbClient/MxAsbDataClient.cs new file mode 100644 index 0000000..d116f43 --- /dev/null +++ b/src/MxAsbClient/MxAsbDataClient.cs @@ -0,0 +1,828 @@ +using System.Diagnostics; +using System.Globalization; +using System.ServiceModel; +using System.ServiceModel.Channels; + +namespace MxAsbClient; + +public sealed class MxAsbDataClient : IDisposable +{ + private const int InvalidConnectionId = 1; + private readonly object cleanupGate = new(); + private readonly ChannelFactory factory; + private readonly IAsbDataV2 channel; + private readonly IClientChannel clientChannel; + private readonly AsbSystemAuthenticator authenticator; + private readonly string endpoint; + private readonly string? solutionName; + private readonly Action? trace; + private readonly bool dumpMessages; + private readonly Dictionary monitoredItemNamesById = []; + private AsbClientCleanupResult? cleanupResult; + private bool disposed; + + private MxAsbDataClient( + ChannelFactory factory, + IAsbDataV2 channel, + AsbSystemAuthenticator authenticator, + string endpoint, + string? solutionName, + Action? trace, + bool dumpMessages) + { + this.factory = factory; + this.channel = channel; + clientChannel = (IClientChannel)channel; + this.authenticator = authenticator; + this.endpoint = endpoint; + this.solutionName = solutionName; + this.trace = trace; + this.dumpMessages = dumpMessages; + } + + public static MxAsbDataClient Connect(string endpoint, string? solutionName = null, Action? trace = null, bool dumpMessages = false) + { + return Connect(new AsbConnectionOptions + { + Endpoint = endpoint, + SolutionName = solutionName, + Trace = trace, + DumpMessages = dumpMessages, + }); + } + + public static MxAsbDataClient Connect(AsbConnectionOptions options) + { + ArgumentNullException.ThrowIfNull(options); + options.Validate(); + + string endpoint = options.Endpoint; + string? solutionName = options.SolutionName; + Action? trace = options.Trace; + bool dumpMessages = options.DumpMessages; + + trace?.Invoke("asb.stage=read-passphrase"); + string passphrase = AsbRegistry.GetSolutionPassphrase(solutionName, trace); + AsbSolutionCryptoParameters cryptoParameters = AsbRegistry.GetCryptoParameters(solutionName); + trace?.Invoke("asb.stage=create-authenticator"); + AsbSystemAuthenticator authenticator = new(passphrase, cryptoParameters, trace); + trace?.Invoke("asb.stage=authenticator-ready"); + NetTcpBinding binding = CreateBinding(); + ChannelFactory factory = new(binding, new EndpointAddress(endpoint)); + AsbDataCustomSerializer.Trace = dumpMessages ? trace : null; + int replacedSerializers = AsbCustomSerializerContractBehavior.ReplaceSerializer(factory.Endpoint.Contract); + trace?.Invoke($"asb.serializer.behaviors-replaced={replacedSerializers}"); + if (trace is not null && dumpMessages) + { + factory.Endpoint.EndpointBehaviors.Add(new AsbMessageDumpBehavior(trace)); + } + + IAsbDataV2? channel = null; + IClientChannel? clientChannel = null; + try + { + trace?.Invoke("asb.stage=open-factory"); + factory.Open(); + channel = factory.CreateChannel(); + + trace?.Invoke("asb.stage=open-channel"); + clientChannel = (IClientChannel)channel; + clientChannel.Open(); + + trace?.Invoke("asb.stage=connect"); + ConnectResponse response = channel.Connect(new ConnectRequest + { + ConnectionId = authenticator.ConnectionId, + ConsumerPublicKey = new PublicKey { Data = authenticator.LocalPublicKey }, + }); + + if (!response.Result.Success) + { + throw new InvalidOperationException($"ASB Connect failed with error 0x{response.Result.ErrorCode:X8}."); + } + + authenticator.AcceptConnectResponse(response); + trace?.Invoke("asb.stage=authenticate-me"); + AuthenticateMe authenticateMe = new() + { + ConsumerAuthenticationData = authenticator.CreateAuthenticationData(), + }; + authenticator.Sign(authenticateMe, forceHmac: true); + channel.AuthenticateMe(authenticateMe); + trace?.Invoke("asb.stage=connected"); + + return new MxAsbDataClient(factory, channel, authenticator, endpoint, solutionName, trace, dumpMessages); + } + catch + { + trace?.Invoke("asb.stage=connect-cleanup"); + if (clientChannel is not null) + { + AsbCommunicationCleanup.CloseOrAbort(clientChannel, "connect-channel", binding.CloseTimeout, trace); + } + + AsbCommunicationCleanup.CloseOrAbort(factory, "connect-factory", binding.CloseTimeout, trace); + throw; + } + } + + public event EventHandler? PublishedValueReceived; + + public AsbClientCleanupResult? LastCleanupResult => cleanupResult; + + public bool IsDisposed => disposed; + + public CommunicationState ChannelState => clientChannel.State; + + public AsbReconnectResult Reconnect(AsbReconnectOptions? options = null) + { + options ??= AsbReconnectOptions.Default; + options.Validate(); + + AsbClientCleanupResult? currentCleanup = null; + if (options.CleanupCurrentConnection) + { + currentCleanup = Cleanup(options.CleanupOptions); + } + + List attempts = []; + for (int attempt = 1; attempt <= options.MaxAttempts; attempt++) + { + try + { + trace?.Invoke($"asb.reconnect.attempt={attempt}"); + MxAsbDataClient client = Connect(endpoint, solutionName, trace, dumpMessages); + attempts.Add(new AsbReconnectAttempt(attempt, Succeeded: true, Exception: null)); + return new AsbReconnectResult(Succeeded: true, client, currentCleanup, attempts); + } + catch (Exception ex) + { + attempts.Add(new AsbReconnectAttempt(attempt, Succeeded: false, ex)); + trace?.Invoke($"asb.reconnect.failed={attempt}:{ex.GetType().Name}:{ex.Message}"); + if (attempt < options.MaxAttempts && options.Delay > TimeSpan.Zero) + { + Thread.Sleep(options.Delay); + } + } + } + + return new AsbReconnectResult(Succeeded: false, Client: null, currentCleanup, attempts); + } + + public RegisterItemsResponse Register(string tag) + { + return RegisterMany([tag]); + } + + public RegisterItemsResponse RegisterMany(IEnumerable tags) + { + ArgumentNullException.ThrowIfNull(tags); + + ItemIdentity[] items = CreateAbsoluteItems(tags); + RegisterItemsResponse response = RegisterOnce(items); + for (int attempt = 1; attempt < 5 && response.Result.ErrorCode == InvalidConnectionId; attempt++) + { + Thread.Sleep(TimeSpan.FromMilliseconds(100 * attempt)); + response = RegisterOnce(items); + } + + return response; + } + + private RegisterItemsResponse RegisterOnce(string tag) + { + return RegisterOnce([CreateAbsoluteItem(tag)]); + } + + private RegisterItemsResponse RegisterOnce(ItemIdentity[] items) + { + RegisterItemsRequest request = new() + { + Items = items, + RequireId = true, + RegisterOnly = true, + }; + authenticator.Sign(request); + return channel.RegisterItems(request); + } + + public UnregisterItemsResponse Unregister(string tag) + { + return Unregister(CreateAbsoluteItem(tag)); + } + + public UnregisterItemsResponse Unregister(ItemIdentity item) + { + return UnregisterMany([item]); + } + + public UnregisterItemsResponse UnregisterMany(IEnumerable items) + { + ArgumentNullException.ThrowIfNull(items); + + UnregisterItemsRequest request = new() + { + Items = items.ToArray(), + }; + authenticator.Sign(request); + return channel.UnregisterItems(request); + } + + public ReadResponse Read(string tag) + { + return ReadMany([tag]); + } + + public ReadResponse ReadMany(IEnumerable tags) + { + ArgumentNullException.ThrowIfNull(tags); + + ReadRequest request = new() + { + Items = CreateAbsoluteItems(tags), + }; + authenticator.Sign(request); + return channel.Read(request); + } + + public WriteResponse WriteInt32(string tag, int value, uint writeHandle) + { + return Write(tag, AsbVariantFactory.FromInt32(value), writeHandle, "MxAsbClient write-int"); + } + + public WriteResponse Write(string tag, Variant value, uint writeHandle, string? comment = null) + { + return Write(tag, value, new AsbWriteOptions + { + WriteHandle = writeHandle, + Comment = comment, + }); + } + + public WriteResponse Write(string tag, Variant value, AsbWriteOptions options) + { + ArgumentNullException.ThrowIfNull(options); + + WriteBasicRequest request = new() + { + Items = [CreateAbsoluteItem(tag)], + Values = + [ + new WriteValue + { + Value = value, + Comment = options.Comment ?? "MxAsbClient write", + }, + ], + WriteHandle = options.WriteHandle, + }; + authenticator.Sign(request); + return channel.Write(request); + } + + public PublishWriteCompleteResponse PublishWriteComplete() + { + PublishWriteCompleteRequest request = new(); + authenticator.Sign(request); + return channel.PublishWriteComplete(request); + } + + public AsbWriteCompletionResult WaitForWriteComplete(uint writeHandle, AsbWriteCompletionOptions? options = null) + { + options ??= AsbWriteCompletionOptions.Default; + options.ValidatePolling(); + + Stopwatch stopwatch = Stopwatch.StartNew(); + List responses = []; + List completeWrites = []; + ItemWriteComplete? matchingComplete = null; + int pollCount = 0; + + while (true) + { + options.CancellationToken.ThrowIfCancellationRequested(); + PublishWriteCompleteResponse response = PublishWriteComplete(); + pollCount++; + responses.Add(response); + + ItemWriteComplete[] writes = response.CompleteWrites ?? []; + completeWrites.AddRange(writes); + foreach (ItemWriteComplete item in writes) + { + if (item.WriteHandleSpecified && item.WriteHandle == writeHandle) + { + matchingComplete = item; + break; + } + } + + if (matchingComplete.HasValue) + { + stopwatch.Stop(); + return new AsbWriteCompletionResult( + writeHandle, + Completed: true, + TimedOut: false, + stopwatch.Elapsed, + pollCount, + responses, + completeWrites, + matchingComplete); + } + + TimeSpan remaining = options.Timeout - stopwatch.Elapsed; + if (remaining <= TimeSpan.Zero) + { + stopwatch.Stop(); + return new AsbWriteCompletionResult( + writeHandle, + Completed: false, + TimedOut: true, + stopwatch.Elapsed, + pollCount, + responses, + completeWrites, + MatchingComplete: null); + } + + TimeSpan delay = options.PollInterval < remaining ? options.PollInterval : remaining; + if (delay > TimeSpan.Zero) + { + if (options.CancellationToken.WaitHandle.WaitOne(delay)) + { + throw new OperationCanceledException(options.CancellationToken); + } + } + } + } + + public AsbWriteCompletionReadbackResult WaitForWriteCompleteAndRead(string tag, uint writeHandle, AsbWriteCompletionOptions? options = null) + { + options ??= AsbWriteCompletionOptions.Default; + options.ValidateReadback(); + + AsbWriteCompletionResult completion = WaitForWriteComplete(writeHandle, options); + if (!completion.Completed) + { + return new AsbWriteCompletionReadbackResult(completion, Readback: null); + } + + if (options.ReadbackDelay > TimeSpan.Zero) + { + if (options.CancellationToken.WaitHandle.WaitOne(options.ReadbackDelay)) + { + throw new OperationCanceledException(options.CancellationToken); + } + } + + options.CancellationToken.ThrowIfCancellationRequested(); + return new AsbWriteCompletionReadbackResult(completion, Read(tag)); + } + + public CreateSubscriptionResponse CreateSubscription(long maxQueueSize = 128, ulong sampleInterval = 1000) + { + return CreateSubscription(new AsbSubscriptionOptions + { + MaxQueueSize = maxQueueSize, + SampleInterval = sampleInterval, + }); + } + + public CreateSubscriptionResponse CreateSubscription(AsbSubscriptionOptions options) + { + ArgumentNullException.ThrowIfNull(options); + options.Validate(); + + CreateSubscriptionResponse response = CreateSubscriptionOnce(options.MaxQueueSize, options.SampleInterval); + for (int attempt = 1; attempt < 5 && response.Result.ErrorCode == InvalidConnectionId; attempt++) + { + Thread.Sleep(TimeSpan.FromMilliseconds(100 * attempt)); + response = CreateSubscriptionOnce(options.MaxQueueSize, options.SampleInterval); + } + + return response; + } + + private CreateSubscriptionResponse CreateSubscriptionOnce(long maxQueueSize, ulong sampleInterval) + { + CreateSubscriptionRequest request = new() + { + MaxQueueSize = maxQueueSize, + SampleInterval = sampleInterval, + }; + authenticator.Sign(request); + return channel.CreateSubscription(request); + } + + public DeleteSubscriptionResponse DeleteSubscription(long subscriptionId) + { + DeleteSubscriptionRequest request = new() + { + SubscriptionId = subscriptionId, + }; + authenticator.Sign(request); + return channel.DeleteSubscription(request); + } + + public AddMonitoredItemsResponse AddMonitoredItems(long subscriptionId, IEnumerable tags, ulong sampleInterval = 1000, bool active = true, bool buffered = false) + { + return AddMonitoredItems(subscriptionId, tags, new AsbMonitoredItemOptions + { + SampleInterval = sampleInterval, + Active = active, + Buffered = buffered, + }); + } + + public AddMonitoredItemsResponse AddMonitoredItems(long subscriptionId, IEnumerable tags, AsbMonitoredItemOptions options) + { + ArgumentNullException.ThrowIfNull(tags); + ArgumentNullException.ThrowIfNull(options); + + AddMonitoredItemsRequest request = new() + { + SubscriptionId = subscriptionId, + Items = tags.Select(tag => CreateMonitoredItem(CreateAbsoluteItem(tag), options.SampleInterval, options.Active, options.Buffered)).ToArray(), + RequireId = true, + }; + authenticator.Sign(request); + AddMonitoredItemsResponse response = channel.AddMonitoredItems(request); + RememberItemNames(response.Status); + return response; + } + + public DeleteMonitoredItemsResponse DeleteMonitoredItems(long subscriptionId, IEnumerable items) + { + ArgumentNullException.ThrowIfNull(items); + + ItemIdentity[] itemArray = items.ToArray(); + DeleteMonitoredItemsRequest request = new() + { + SubscriptionId = subscriptionId, + Items = itemArray.Select(item => CreateMonitoredItem(item, 0, active: false, buffered: false)).ToArray(), + }; + authenticator.Sign(request); + DeleteMonitoredItemsResponse response = channel.DeleteMonitoredItems(request); + ForgetItemNames(itemArray); + return response; + } + + public PublishResponse Publish(long subscriptionId) + { + PublishRequest request = new() + { + SubscriptionId = subscriptionId, + }; + authenticator.Sign(request); + return channel.Publish(request); + } + + public AsbPublishResult PublishValues(long subscriptionId) + { + PublishResponse response = Publish(subscriptionId); + AsbPublishedValue[] values = AsbPublishMapper + .ToPublishedValues(response, monitoredItemNamesById) + .ToArray(); + foreach (AsbPublishedValue value in values) + { + PublishedValueReceived?.Invoke(this, value); + } + + return new AsbPublishResult(response, values); + } + + public void Dispose() + { + Cleanup(); + } + + public AsbClientCleanupResult Cleanup(AsbClientCleanupOptions? options = null) + { + options ??= AsbClientCleanupOptions.Default; + options.Validate(); + + lock (cleanupGate) + { + if (disposed) + { + return cleanupResult ?? CreateAlreadyCleanedResult(); + } + + disposed = true; + trace?.Invoke("asb.stage=cleanup"); + DisconnectCleanupResult disconnect = options.CancellationToken.IsCancellationRequested + ? CreateCanceledDisconnectResult() + : SendDisconnectBestEffort(options); + CommunicationObjectCleanupResult channelResult = CleanupCommunicationObject(clientChannel, "channel", options); + CommunicationObjectCleanupResult factoryResult = CleanupCommunicationObject(factory, "factory", options); + + cleanupResult = new AsbClientCleanupResult( + disconnect.Attempted, + disconnect.Sent, + disconnect.Failure, + channelResult, + factoryResult); + trace?.Invoke($"asb.cleanup.succeeded={cleanupResult.Succeeded}"); + return cleanupResult; + } + } + + private CommunicationObjectCleanupResult CleanupCommunicationObject( + ICommunicationObject communicationObject, + string name, + AsbClientCleanupOptions options) + { + if (options.CancellationToken.IsCancellationRequested) + { + trace?.Invoke($"asb.cleanup.{name}.canceled"); + return AsbCommunicationCleanup.AbortOnly(communicationObject, name, trace); + } + + return AsbCommunicationCleanup.CloseOrAbort(communicationObject, name, options.CloseTimeout, trace); + } + + private static DisconnectCleanupResult CreateCanceledDisconnectResult() + { + string failure = AsbCommunicationCleanup.FormatCleanupFailure( + new OperationCanceledException("Cleanup cancellation requested before disconnect.")); + return new DisconnectCleanupResult(Attempted: false, Sent: false, Failure: failure); + } + + private DisconnectCleanupResult SendDisconnectBestEffort(AsbClientCleanupOptions options) + { + if (clientChannel.State is not CommunicationState.Opened) + { + trace?.Invoke($"asb.cleanup.disconnect.skipped-state={clientChannel.State}"); + return new DisconnectCleanupResult(Attempted: false, Sent: false, Failure: null); + } + + TimeSpan previousOperationTimeout = clientChannel.OperationTimeout; + try + { + clientChannel.OperationTimeout = options.DisconnectTimeout; + trace?.Invoke("asb.stage=disconnect"); + Disconnect request = new() + { + ConsumerAuthenticationData = authenticator.CreateAuthenticationData(), + }; + authenticator.Sign(request); + channel.Disconnect(request); + return new DisconnectCleanupResult(Attempted: true, Sent: true, Failure: null); + } + catch (Exception ex) + { + string failure = AsbCommunicationCleanup.FormatCleanupFailure(ex); + trace?.Invoke($"asb.cleanup.disconnect.failed={failure}"); + return new DisconnectCleanupResult(Attempted: true, Sent: false, failure); + } + finally + { + clientChannel.OperationTimeout = previousOperationTimeout; + } + } + + private static AsbClientCleanupResult CreateAlreadyCleanedResult() + { + CommunicationObjectCleanupResult skipped = new( + "unknown", + "Closed", + "Closed", + CloseAttempted: false, + Closed: true, + CloseFailure: null, + AbortAttempted: false, + Aborted: false, + AbortFailure: null); + return new AsbClientCleanupResult( + DisconnectAttempted: false, + DisconnectSent: false, + DisconnectFailure: null, + Channel: skipped with { Name = "channel" }, + Factory: skipped with { Name = "factory" }); + } + + private static ItemIdentity CreateAbsoluteItem(string tag) + { + return new ItemIdentity + { + Type = (ushort)ItemIdentityType.Name, + ReferenceType = (ushort)ItemReferenceType.Absolute, + Name = tag, + ContextName = string.Empty, + }; + } + + private static ItemIdentity[] CreateAbsoluteItems(IEnumerable tags) + { + return tags.Select(CreateAbsoluteItem).ToArray(); + } + + private static MonitoredItem CreateMonitoredItem(ItemIdentity item, ulong sampleInterval, bool active, bool buffered) + { + return new MonitoredItem + { + Item = item, + SampleInterval = sampleInterval, + Active = active, + Buffered = buffered, + UserData = AsbVariantFactory.Empty, + ValueDeadband = AsbVariantFactory.Empty, + }; + } + + private void RememberItemNames(ItemStatus[]? statuses) + { + if (statuses is null) + { + return; + } + + foreach (ItemStatus status in statuses) + { + if (status.Item.IdSpecified && !string.IsNullOrWhiteSpace(status.Item.Name)) + { + monitoredItemNamesById[status.Item.Id] = status.Item.Name; + } + } + } + + private void ForgetItemNames(IEnumerable items) + { + foreach (ItemIdentity item in items) + { + if (item.IdSpecified) + { + monitoredItemNamesById.Remove(item.Id); + } + } + } + + private static NetTcpBinding CreateBinding() + { + int max = int.MaxValue; + return new NetTcpBinding(SecurityMode.None) + { + TransferMode = TransferMode.Buffered, + MaxReceivedMessageSize = max, + MaxBufferSize = max, + MaxBufferPoolSize = long.MaxValue, + OpenTimeout = TimeSpan.FromSeconds(30), + ReceiveTimeout = TimeSpan.FromSeconds(30), + SendTimeout = TimeSpan.FromSeconds(30), + CloseTimeout = TimeSpan.FromSeconds(30), + ReaderQuotas = + { + MaxArrayLength = max, + MaxBytesPerRead = max, + MaxDepth = max, + MaxNameTableCharCount = max, + MaxStringContentLength = max, + }, + ReliableSession = + { + InactivityTimeout = TimeSpan.FromSeconds(30), + }, + }; + } + + public static string FormatVariant(Variant variant) + { + object? value = DecodeVariant(variant); + return value switch + { + null => string.Empty, + bool typed => typed.ToString(CultureInfo.InvariantCulture), + int typed => typed.ToString(CultureInfo.InvariantCulture), + float typed => typed.ToString(CultureInfo.InvariantCulture), + double typed => typed.ToString(CultureInfo.InvariantCulture), + DateTime typed => typed.ToString("O", CultureInfo.InvariantCulture), + TimeSpan typed => typed.ToString("c", CultureInfo.InvariantCulture), + int[] typed => string.Join(",", typed.Select(item => item.ToString(CultureInfo.InvariantCulture))), + bool[] typed => string.Join(",", typed.Select(item => item.ToString(CultureInfo.InvariantCulture))), + float[] typed => string.Join(",", typed.Select(item => item.ToString(CultureInfo.InvariantCulture))), + double[] typed => string.Join(",", typed.Select(item => item.ToString(CultureInfo.InvariantCulture))), + string[] typed => string.Join("|", typed), + DateTime[] typed => string.Join(",", typed.Select(item => item.ToString("O", CultureInfo.InvariantCulture))), + TimeSpan[] typed => string.Join(",", typed.Select(item => item.ToString("c", CultureInfo.InvariantCulture))), + string typed => typed, + byte[] typed => BitConverter.ToString(typed).Replace("-", string.Empty), + _ => Convert.ToString(value, CultureInfo.InvariantCulture) ?? string.Empty, + }; + } + + public static object? DecodeVariant(Variant variant) + { + byte[] payload = variant.Payload ?? []; + if (payload.Length == 0) + { + return variant.Type switch + { + (ushort)AsbDataType.TypeString => string.Empty, + (ushort)AsbDataType.TypeInt32Array => Array.Empty(), + (ushort)AsbDataType.TypeBoolArray => Array.Empty(), + (ushort)AsbDataType.TypeFloatArray => Array.Empty(), + (ushort)AsbDataType.TypeDoubleArray => Array.Empty(), + (ushort)AsbDataType.TypeStringArray => Array.Empty(), + (ushort)AsbDataType.TypeDateTimeArray => Array.Empty(), + (ushort)AsbDataType.TypeDurationArray => Array.Empty(), + _ => null, + }; + } + + return variant.Type switch + { + (ushort)AsbDataType.TypeBool when payload.Length >= 1 => payload[0] != 0, + (ushort)AsbDataType.TypeInt32 when payload.Length >= 4 => BitConverter.ToInt32(payload, 0), + (ushort)AsbDataType.TypeFloat when payload.Length >= 4 => BitConverter.ToSingle(payload, 0), + (ushort)AsbDataType.TypeDouble when payload.Length >= 8 => BitConverter.ToDouble(payload, 0), + (ushort)AsbDataType.TypeString => System.Text.Encoding.Unicode.GetString(payload), + (ushort)AsbDataType.TypeDateTime when payload.Length >= 8 => DateTime.FromFileTimeUtc(BitConverter.ToInt64(payload, 0)), + (ushort)AsbDataType.TypeDuration when payload.Length >= 8 => TimeSpan.FromTicks(BitConverter.ToInt64(payload, 0)), + (ushort)AsbDataType.TypeInt32Array => DecodeInt32Array(payload), + (ushort)AsbDataType.TypeBoolArray => payload.Select(item => item != 0).ToArray(), + (ushort)AsbDataType.TypeFloatArray => DecodeSingleArray(payload), + (ushort)AsbDataType.TypeDoubleArray => DecodeDoubleArray(payload), + (ushort)AsbDataType.TypeStringArray => DecodeStringArray(payload), + (ushort)AsbDataType.TypeDateTimeArray => DecodeDateTimeArray(payload), + (ushort)AsbDataType.TypeDurationArray => DecodeDurationArray(payload), + _ => payload, + }; + } + + private static int[] DecodeInt32Array(byte[] payload) + { + int[] values = new int[payload.Length / sizeof(int)]; + for (int i = 0; i < values.Length; i++) + { + values[i] = BitConverter.ToInt32(payload, i * sizeof(int)); + } + + return values; + } + + private static float[] DecodeSingleArray(byte[] payload) + { + float[] values = new float[payload.Length / sizeof(float)]; + for (int i = 0; i < values.Length; i++) + { + values[i] = BitConverter.ToSingle(payload, i * sizeof(float)); + } + + return values; + } + + private static double[] DecodeDoubleArray(byte[] payload) + { + double[] values = new double[payload.Length / sizeof(double)]; + for (int i = 0; i < values.Length; i++) + { + values[i] = BitConverter.ToDouble(payload, i * sizeof(double)); + } + + return values; + } + + private static string[] DecodeStringArray(byte[] payload) + { + List values = []; + int offset = 0; + while (offset + sizeof(int) <= payload.Length) + { + int byteLength = BitConverter.ToInt32(payload, offset); + offset += sizeof(int); + if (byteLength < 0 || offset + byteLength > payload.Length) + { + break; + } + + values.Add(byteLength == 0 ? string.Empty : System.Text.Encoding.Unicode.GetString(payload, offset, byteLength)); + offset += byteLength; + } + + return values.ToArray(); + } + + private static DateTime[] DecodeDateTimeArray(byte[] payload) + { + DateTime[] values = new DateTime[payload.Length / sizeof(long)]; + for (int i = 0; i < values.Length; i++) + { + values[i] = DateTime.FromFileTimeUtc(BitConverter.ToInt64(payload, i * sizeof(long))); + } + + return values; + } + + private static TimeSpan[] DecodeDurationArray(byte[] payload) + { + TimeSpan[] values = new TimeSpan[payload.Length / sizeof(long)]; + for (int i = 0; i < values.Length; i++) + { + values[i] = TimeSpan.FromTicks(BitConverter.ToInt64(payload, i * sizeof(long))); + } + + return values; + } + + private sealed record DisconnectCleanupResult(bool Attempted, bool Sent, string? Failure); +} diff --git a/src/MxAsbClient/Properties/AssemblyInfo.cs b/src/MxAsbClient/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..654ee83 --- /dev/null +++ b/src/MxAsbClient/Properties/AssemblyInfo.cs @@ -0,0 +1,4 @@ +using System.Runtime.CompilerServices; + +[assembly: InternalsVisibleTo("MxAsbClient.Tests")] +[assembly: InternalsVisibleTo("MxAsbClient.Probe")] diff --git a/src/MxDataConsumerProbe/MxDataConsumerProbe.csproj b/src/MxDataConsumerProbe/MxDataConsumerProbe.csproj new file mode 100644 index 0000000..8a3e436 --- /dev/null +++ b/src/MxDataConsumerProbe/MxDataConsumerProbe.csproj @@ -0,0 +1,18 @@ + + + Exe + net481 + x86 + true + latest + enable + disable + + + + + ..\..\analysis\interop\Interop.aaMxDataConsumer.dll + true + + + diff --git a/src/MxDataConsumerProbe/Program.cs b/src/MxDataConsumerProbe/Program.cs new file mode 100644 index 0000000..cdb6d5d --- /dev/null +++ b/src/MxDataConsumerProbe/Program.cs @@ -0,0 +1,406 @@ +using System; +using System.Globalization; +using System.Linq; +using System.Runtime.InteropServices; +using System.Threading; +using Interop.aaMxDataConsumer; + +namespace MxDataConsumerProbe; + +internal static class Program +{ + [STAThread] + private static int Main(string[] args) + { + if (HasFlag(args, "--probe-dataclient")) + { + return ProbeDataClient(args); + } + + string tag = GetString(args, "--tag") ?? "TestChildObject.ScanState"; + string context = GetString(args, "--context") ?? string.Empty; + int itemId = GetInt(args, "--item-id") ?? 1; + ulong userData = (ulong)(GetInt(args, "--user-data") ?? 0x4401); + int active = GetInt(args, "--active") ?? 0; + int pollCount = GetInt(args, "--poll-count") ?? 10; + int pollDelayMs = GetInt(args, "--poll-delay-ms") ?? 500; + int connectPollCount = GetInt(args, "--connect-poll-count") ?? Math.Max(pollCount, 12); + int connectPollDelayMs = GetInt(args, "--connect-poll-delay-ms") ?? Math.Max(pollDelayMs, 1000); + string[] namespaces = GetStrings(args, "--namespace"); + if (namespaces.Length == 0) + { + namespaces = + [ + "Default_ZB_MxDataProvider", + "Default_ZB2_MxDataProvider", + "net.tcp://localhost:4000/Default_ZB_MxDataProvider/IDataV3", + "net.tcp://localhost:4000/Default_ZB_MxDataProvider", + "net.tcp://localhost:9055/IDataV3SoapContract", + "Galaxy", + "ArchestrA", + "Lmx", + "localhost", + "ZB", + ]; + } + + Console.WriteLine($"process=x64:{Environment.Is64BitProcess}"); + Console.WriteLine($"tag={tag}"); + Console.WriteLine($"context={context}"); + + var consumer = new DataConsumerClass(); + var callback = new DataConsumerCallback(); + consumer.RegisterCallback(callback); + try + { + int namespaceId = ResolveNamespace(consumer, namespaces); + Console.WriteLine($"namespace_id={namespaceId}"); + Console.WriteLine($"namespace_callback_count={callback.NamespaceIds.Length}"); + PrintConnectionState(consumer, namespaceId, "after_namespace"); + PollConnection(consumer, namespaceId, connectPollCount, connectPollDelayMs); + + consumer.ResolveReference(namespaceId, tag, context, itemId, userData); + Console.WriteLine("resolve_reference=sent"); + PrintConnectionState(consumer, namespaceId, "after_resolve_reference"); + PollRegistration(consumer, pollCount, pollDelayMs); + + consumer.subscribe(namespaceId, itemId, userData, bActive: 1); + Console.WriteLine("subscribe=sent"); + PrintConnectionState(consumer, namespaceId, "after_subscribe"); + PollSubscription(consumer, pollCount, pollDelayMs); + + consumer.ActivateSuspend(namespaceId, itemId, userData, active); + Console.WriteLine($"activate_suspend=sent active={active}"); + PrintConnectionState(consumer, namespaceId, "after_activate_suspend"); + PollActivateSuspend(consumer, pollCount, pollDelayMs); + + return 0; + } + finally + { + try + { + consumer.UnregisterCallback(); + } + catch (COMException ex) + { + Console.WriteLine($"unregister_callback_error=0x{ex.HResult:X8}"); + } + } + } + + private static int ProbeDataClient(string[] args) + { + string namespaceName = GetString(args, "--namespace") ?? "Galaxy"; + string[] endpoints = GetStrings(args, "--endpoint"); + if (endpoints.Length == 0) + { + endpoints = + [ + "net.tcp://localhost:4000/Default_ZB_MxDataProvider/IDataV3", + "net.tcp://localhost:4000/Default_ZB_MxDataProvider", + "net.tcp://localhost:4000/IDataV3", + "net.tcp://localhost:4000/MxDataService1/IDataV3", + "net.tcp://localhost:9055/IDataV3SoapContract", + ]; + } + + DataClientClass client; + try + { + client = new DataClientClass(); + } + catch (COMException ex) + { + Console.WriteLine($"dataclient_create_error=0x{ex.HResult:X8}"); + return 2; + } + + client.Initialize(namespaceName); + Console.WriteLine($"dataclient_initialize={namespaceName}"); + foreach (string endpoint in endpoints) + { + var token = new _IUserToken(); + try + { + IArchestrAResult[] results = client.Connect2(endpoint, timeout: 5000, ref token, out uint clientId); + Console.WriteLine($"dataclient_connect endpoint={endpoint} client_id={clientId} results={results?.Length ?? 0}"); + PrintArchestrAResults("dataclient_connect_result", results); + Console.WriteLine($"dataclient_connected={client.IsIDataClientConnected()}"); + return 0; + } + catch (COMException ex) + { + Console.WriteLine($"dataclient_connect_error endpoint={endpoint} hresult=0x{ex.HResult:X8} last_error={SafeGetLastError(client)}"); + } + } + + return 2; + } + + private static void PrintArchestrAResults(string prefix, IArchestrAResult[]? results) + { + if (results is null) + { + return; + } + + for (int i = 0; i < results.Length; i++) + { + IArchestrAResult result = results[i]; + try + { + Console.WriteLine($"{prefix}[{i}]=type:{result.GetType().FullName}"); + } + catch (COMException ex) + { + Console.WriteLine($"{prefix}[{i}]_error=0x{ex.HResult:X8}"); + } + } + } + + private static string SafeGetLastError(DataClientClass client) + { + try + { + return client.GetLastError(); + } + catch (COMException ex) + { + return $""; + } + } + + private static int ResolveNamespace(DataConsumerClass consumer, string[] namespaces) + { + foreach (string ns in namespaces) + { + try + { + int namespaceId = consumer.ResolveNamespace(ns); + Console.WriteLine($"resolve_namespace name={ns} id={namespaceId}"); + return namespaceId; + } + catch (COMException ex) + { + Console.WriteLine($"resolve_namespace_error name={ns} hresult=0x{ex.HResult:X8}"); + } + } + + throw new InvalidOperationException("No candidate namespace resolved."); + } + + private static void PollConnection(DataConsumerClass consumer, int namespaceId, int pollCount, int pollDelayMs) + { + for (int i = 0; i < pollCount; i++) + { + try + { + consumer.IsConnected(namespaceId, out int connected); + Console.WriteLine($"connection_poll[{i}]={connected}"); + if (connected != 0) + { + return; + } + } + catch (COMException ex) + { + Console.WriteLine($"connection_poll_error[{i}]=0x{ex.HResult:X8}"); + } + + Thread.Sleep(pollDelayMs); + } + } + + private static void PollRegistration(DataConsumerClass consumer, int pollCount, int pollDelayMs) + { + for (int i = 0; i < pollCount; i++) + { + uint result = consumer.ProcessRegistration2( + out int size, + out ItemRegistrationResponse[] responses, + out MxResultCode[] resultCodes); + Console.WriteLine($"registration_poll[{i}]=result:0x{result:X8} size:{size} responses:{responses?.Length ?? 0} result_codes:{resultCodes?.Length ?? 0}"); + if (responses is { Length: > 0 } || resultCodes is { Length: > 0 }) + { + PrintRegistration(responses); + PrintResultCodes("registration_result", resultCodes); + return; + } + + Thread.Sleep(pollDelayMs); + } + } + + private static void PrintConnectionState(DataConsumerClass consumer, int namespaceId, string label) + { + try + { + consumer.IsConnected(namespaceId, out int connected); + Console.WriteLine($"is_connected[{label}]={connected}"); + } + catch (COMException ex) + { + Console.WriteLine($"is_connected_error[{label}]=0x{ex.HResult:X8}"); + } + } + + private static void PollSubscription(DataConsumerClass consumer, int pollCount, int pollDelayMs) + { + for (int i = 0; i < pollCount; i++) + { + uint result = consumer.ProcessSubscription2( + out int size, + out ItemSubscriptionResponse[] responses, + out MxResultCode[] resultCodes); + Console.WriteLine($"subscription_poll[{i}]=result:0x{result:X8} size:{size} responses:{responses?.Length ?? 0} result_codes:{resultCodes?.Length ?? 0}"); + if (responses is { Length: > 0 } || resultCodes is { Length: > 0 }) + { + PrintSubscription(responses); + PrintResultCodes("subscription_result", resultCodes); + return; + } + + Thread.Sleep(pollDelayMs); + } + } + + private static void PollActivateSuspend(DataConsumerClass consumer, int pollCount, int pollDelayMs) + { + for (int i = 0; i < pollCount; i++) + { + uint result = consumer.ProcessActivateSuspend2( + out int size, + out ItemActiveResponse[] responses, + out MxResultCode[] resultCodes); + Console.WriteLine($"activate_suspend_poll[{i}]=result:0x{result:X8} size:{size} responses:{responses?.Length ?? 0} result_codes:{resultCodes?.Length ?? 0}"); + if (responses is { Length: > 0 } || resultCodes is { Length: > 0 }) + { + PrintActive(responses); + PrintResultCodes("activate_suspend_result", resultCodes); + return; + } + + Thread.Sleep(pollDelayMs); + } + } + + private static void PrintRegistration(ItemRegistrationResponse[]? responses) + { + if (responses is null) + { + return; + } + + for (int i = 0; i < responses.Length; i++) + { + ItemRegistrationResponse response = responses[i]; + Console.WriteLine($"registration[{i}]=item:{response.ItemId} user_data:{response.userData} status:0x{response.Status:X8} write_capability:{response.WriteCapability}"); + } + } + + private static void PrintSubscription(ItemSubscriptionResponse[]? responses) + { + if (responses is null) + { + return; + } + + for (int i = 0; i < responses.Length; i++) + { + ItemSubscriptionResponse response = responses[i]; + Console.WriteLine($"subscription[{i}]=item:{response.ItemId} user_data:{response.userData} status:0x{response.Status:X8}"); + } + } + + private static void PrintActive(ItemActiveResponse[]? responses) + { + if (responses is null) + { + return; + } + + for (int i = 0; i < responses.Length; i++) + { + ItemActiveResponse response = responses[i]; + Console.WriteLine($"activate_suspend[{i}]=item:{response.ItemId} user_data:{response.userData} status:0x{response.Status:X8}"); + } + } + + private static void PrintResultCodes(string prefix, MxResultCode[]? resultCodes) + { + if (resultCodes is null) + { + return; + } + + for (int i = 0; i < resultCodes.Length; i++) + { + MxResultCode resultCode = resultCodes[i]; + Console.WriteLine($"{prefix}[{i}]=namespace:{resultCode.lNamespaceId} error:0x{resultCode.ErrorCode:X8} arch_error:0x{resultCode.ArchestrErrorCode:X8} arch_specific:0x{resultCode.ArchestrSpecific:X8} arch_status:0x{resultCode.ArchestrStatus:X8}"); + } + } + + private static int? GetInt(string[] args, string name) + { + string? raw = GetString(args, name); + if (raw is null) + { + return null; + } + + return raw.StartsWith("0x", StringComparison.OrdinalIgnoreCase) + ? int.Parse(raw.Substring(2), NumberStyles.HexNumber, CultureInfo.InvariantCulture) + : int.Parse(raw, CultureInfo.InvariantCulture); + } + + private static string? GetString(string[] args, string name) + { + string prefix = name + "="; + return args.FirstOrDefault(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))?.Substring(prefix.Length); + } + + private static string[] GetStrings(string[] args, string name) + { + string prefix = name + "="; + return args + .Where(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase)) + .Select(arg => arg.Substring(prefix.Length)) + .Where(value => !string.IsNullOrWhiteSpace(value)) + .ToArray(); + } + + private static bool HasFlag(string[] args, string name) + { + return args.Any(arg => arg.Equals(name, StringComparison.OrdinalIgnoreCase)); + } +} + +[ComVisible(true)] +[ClassInterface(ClassInterfaceType.None)] +internal sealed class DataConsumerCallback : IDataConsumerCallback +{ + private readonly object _gate = new(); + private readonly System.Collections.Generic.List _namespaceIds = new(); + + public int[] NamespaceIds + { + get + { + lock (_gate) + { + return _namespaceIds.ToArray(); + } + } + } + + public void NamespaceResolved(int lNamespaceId) + { + lock (_gate) + { + _namespaceIds.Add(lNamespaceId); + } + + Console.WriteLine($"callback_namespace_resolved={lNamespaceId}"); + } +} diff --git a/src/MxNativeClient.Probe/MxNativeClient.Probe.csproj b/src/MxNativeClient.Probe/MxNativeClient.Probe.csproj new file mode 100644 index 0000000..3d8d62f --- /dev/null +++ b/src/MxNativeClient.Probe/MxNativeClient.Probe.csproj @@ -0,0 +1,13 @@ + + + + + + + Exe + net10.0-windows + enable + enable + x64 + + diff --git a/src/MxNativeClient.Probe/Program.cs b/src/MxNativeClient.Probe/Program.cs new file mode 100644 index 0000000..f3c7ac6 --- /dev/null +++ b/src/MxNativeClient.Probe/Program.cs @@ -0,0 +1,1888 @@ +using System.Globalization; +using System.Runtime.InteropServices; +using MxNativeClient; +using MxNativeCodec; + +var engineId = GetInt(args, "--engine-id") ?? (0x7000 + (Environment.ProcessId & 0x0fff)); +var engineName = GetString(args, "--engine-name") ?? $"MxNativeClient.Probe.{Environment.ProcessId}"; +var partnerGalaxyId = GetInt(args, "--partner-galaxy") ?? 1; +var partnerPlatformId = GetInt(args, "--partner-platform") ?? 1; +var partnerEngineId = GetInt(args, "--partner-engine") ?? 0x7ffd; +var expectProxyLoadFailure = HasFlag(args, "--expect-proxy-load-failure"); +var dumpObjRef = HasFlag(args, "--dump-objref"); +var objRefContext = (uint)(GetInt(args, "--objref-context") ?? 0); +var objRefOnly = HasFlag(args, "--objref-only"); +var holdSeconds = GetInt(args, "--hold-seconds") ?? 0; +var probeResolveOxidUnauth = HasFlag(args, "--probe-resolve-oxid-unauth"); +var probeResolveOxidNtlm = HasFlag(args, "--probe-resolve-oxid-ntlm"); +var probeResolveOxidNtlmIntegrity = HasFlag(args, "--probe-resolve-oxid-ntlm-integrity"); +var probeResolveOxidManagedNtlmIntegrity = HasFlag(args, "--probe-resolve-oxid-managed-ntlm-integrity"); +var probeRemQueryInterfaceManaged = HasFlag(args, "--probe-remqi-managed"); +var probeTransferDataManaged = HasFlag(args, "--probe-transferdata-managed"); +var probeCallbackMarshal = HasFlag(args, "--probe-callback-marshal"); +var probeRegisterEngine2NullCallbackManaged = HasFlag(args, "--probe-register-null-callback-managed"); +var probeRegisterEngine2ManagedCallback = HasFlag(args, "--probe-register-managed-callback"); +var probeManagedSubscribe = HasFlag(args, "--probe-managed-subscribe"); +var probeSessionHeartbeat = HasFlag(args, "--probe-session-heartbeat"); +var probeSessionRecover = HasFlag(args, "--probe-session-recover"); +var probeSessionRecoverMulti = HasFlag(args, "--probe-session-recover-multi"); +var probeSessionWrite = HasFlag(args, "--probe-session-write"); +var probeSessionWriteSecured2 = HasFlag(args, "--probe-session-write-secured2"); +var probeSessionRead = HasFlag(args, "--probe-session-read"); +var probeSessionSubscribe = HasFlag(args, "--probe-session-subscribe"); +var probeSessionSubscribeWrite = HasFlag(args, "--probe-session-subscribe-write"); +var probeCompatibilitySubscribe = HasFlag(args, "--probe-compatibility-subscribe"); +var probeCompatibilitySubscribeWrite = HasFlag(args, "--probe-compatibility-subscribe-write"); +var probeCompatibilitySubscribeMulti = HasFlag(args, "--probe-compatibility-subscribe-multi"); +var probeCompatibilityWriteMulti = HasFlag(args, "--probe-compatibility-write-multi"); +var probeCompatibilityWriteUnadvised = HasFlag(args, "--probe-compatibility-write-unadvised"); +var probeCompatibilityWriteSecured2 = HasFlag(args, "--probe-compatibility-write-secured2"); +var probeCompatibilityPostRemove = HasFlag(args, "--probe-compatibility-post-remove"); +var probeCompatibilityInvalidHandles = HasFlag(args, "--probe-compatibility-invalid-handles"); +var probeCompatibilityAddItem2 = HasFlag(args, "--probe-compatibility-additem2"); + +Console.WriteLine($"process=x64:{Environment.Is64BitProcess}"); +Console.WriteLine($"engine_id={engineId}"); +Console.WriteLine($"engine_name={engineName}"); + +if (dumpObjRef) +{ + DumpActivatedIUnknownObjRef(objRefContext, holdSeconds); +} + +if (probeResolveOxidUnauth) +{ + ProbeResolveOxidUnauthenticated(); +} + +if (probeResolveOxidNtlm) +{ + ProbeResolveOxidNtlm(); +} + +if (probeResolveOxidNtlmIntegrity) +{ + ProbeResolveOxidNtlmIntegrity(); +} + +if (probeResolveOxidManagedNtlmIntegrity) +{ + ProbeResolveOxidManagedNtlmIntegrity(); +} + +if (probeRemQueryInterfaceManaged) +{ + ProbeRemQueryInterfaceManaged(); +} + +if (probeTransferDataManaged) +{ + ProbeTransferDataManaged(); +} + +if (probeCallbackMarshal) +{ + ProbeCallbackMarshal(); +} + +if (probeRegisterEngine2NullCallbackManaged) +{ + ProbeRegisterEngine2NullCallbackManaged(engineId, engineName); +} + +if (probeRegisterEngine2ManagedCallback) +{ + ProbeRegisterEngine2ManagedCallback(engineId, engineName); +} + +if (probeManagedSubscribe) +{ + ProbeManagedSubscribe(engineId, engineName); +} + +if (probeSessionHeartbeat) +{ + ProbeSessionHeartbeat(engineId, engineName); + return 0; +} + +if (probeSessionRecover) +{ + await ProbeSessionRecoverAsync(engineId, engineName); + return 0; +} + +if (probeSessionRecoverMulti) +{ + await ProbeSessionRecoverMultiAsync(engineId, engineName); + return 0; +} + +if (probeSessionWrite) +{ + await ProbeSessionWriteAsync(engineId, engineName); + return 0; +} + +if (probeSessionWriteSecured2) +{ + await ProbeSessionWriteSecured2Async(engineId, engineName); + return 0; +} + +if (probeSessionRead) +{ + await ProbeSessionReadAsync(engineId, engineName); + return 0; +} + +if (probeSessionSubscribe) +{ + await ProbeSessionSubscribeAsync(engineId, engineName); + return 0; +} + +if (probeSessionSubscribeWrite) +{ + await ProbeSessionSubscribeWriteAsync(engineId, engineName); + return 0; +} + +if (probeCompatibilitySubscribe) +{ + await ProbeCompatibilitySubscribeAsync(); + return 0; +} + +if (probeCompatibilitySubscribeWrite) +{ + await ProbeCompatibilitySubscribeWriteAsync(); + return 0; +} + +if (probeCompatibilitySubscribeMulti) +{ + await ProbeCompatibilitySubscribeMultiAsync(); + return 0; +} + +if (probeCompatibilityWriteMulti) +{ + await ProbeCompatibilityWriteMultiAsync(); + return 0; +} + +if (probeCompatibilityWriteUnadvised) +{ + await ProbeCompatibilityWriteUnadvisedAsync(); + return 0; +} + +if (probeCompatibilityWriteSecured2) +{ + await ProbeCompatibilityWriteSecured2Async(); + return 0; +} + +if (probeCompatibilityPostRemove) +{ + await ProbeCompatibilityPostRemoveAsync(); + return 0; +} + +if (probeCompatibilityInvalidHandles) +{ + await ProbeCompatibilityInvalidHandlesAsync(); + return 0; +} + +if (probeCompatibilityAddItem2) +{ + await ProbeCompatibilityAddItem2Async(); + return 0; +} + +if (objRefOnly) +{ + return 0; +} + +var callback = new NmxCallbackSink(); +callback.DataReceived += (_, message) => Console.WriteLine($"callback=data size={message.Body.Length} prefix={HexPrefix(message.Body)}"); +callback.StatusReceived += (_, message) => Console.WriteLine($"callback=status size={message.Body.Length} prefix={HexPrefix(message.Body)}"); + +try +{ + using var client = NmxServiceClient.Create(); + Console.WriteLine("cocreate=ok"); + + client.RegisterEngine(engineId, engineName, callback); + Console.WriteLine("register=ok"); + + try + { + var version = client.GetPartnerVersion(partnerGalaxyId, partnerPlatformId, partnerEngineId); + Console.WriteLine($"partner_version={version}"); + } + catch (COMException ex) + { + Console.WriteLine($"partner_version_error=0x{ex.HResult:X8} {ex.Message}"); + } + + client.UnregisterEngine(); + Console.WriteLine("unregister=ok"); + return 0; +} +catch (COMException ex) +{ + Console.Error.WriteLine($"com_error=0x{ex.HResult:X8} {ex.Message}"); + return 2; +} +catch (BadImageFormatException ex) +{ + Console.Error.WriteLine($"bad_image_format=0x{ex.HResult:X8} {ex.Message}"); + return expectProxyLoadFailure ? 0 : 3; +} + +static int? GetInt(string[] args, string name) +{ + var raw = GetString(args, name); + if (raw is null) + { + return null; + } + + return raw.StartsWith("0x", StringComparison.OrdinalIgnoreCase) + ? int.Parse(raw[2..], NumberStyles.HexNumber, CultureInfo.InvariantCulture) + : int.Parse(raw, CultureInfo.InvariantCulture); +} + +static string? GetString(string[] args, string name) +{ + var prefix = name + "="; + return args.FirstOrDefault(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))?[prefix.Length..]; +} + +static IReadOnlyList GetStrings(string[] args, string name) +{ + var prefix = name + "="; + return args + .Where(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase)) + .Select(arg => arg[prefix.Length..]) + .Where(value => !string.IsNullOrWhiteSpace(value)) + .ToArray(); +} + +static bool HasFlag(string[] args, string name) +{ + return args.Any(arg => arg.Equals(name, StringComparison.OrdinalIgnoreCase)); +} + +static string HexPrefix(byte[] body) +{ + return string.Join(" ", body.Take(32).Select(value => value.ToString("x2", CultureInfo.InvariantCulture))); +} + +static void DumpActivatedIUnknownObjRef(uint destinationContext, int holdSeconds) +{ + var type = Type.GetTypeFromProgID("NmxSvc.NmxService", throwOnError: true) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService was not resolved."); + object instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService activation returned null."); + + try + { + byte[] buffer = ComObjRefProvider.MarshalIUnknownObjRef(instance, destinationContext); + Console.WriteLine($"objref_context={destinationContext}"); + Console.WriteLine($"objref_size={buffer.Length}"); + Console.WriteLine($"objref_hex={Convert.ToHexString(buffer)}"); + Console.WriteLine(string.Join(Environment.NewLine, ComObjRef.Parse(buffer).ToDiagnosticLines())); + + if (holdSeconds > 0) + { + Console.WriteLine($"objref_hold_seconds={holdSeconds}"); + Console.Out.Flush(); + Thread.Sleep(TimeSpan.FromSeconds(holdSeconds)); + } + } + finally + { + if (Marshal.IsComObject(instance)) + { + _ = Marshal.ReleaseComObject(instance); + } + } +} + +static void ProbeResolveOxidUnauthenticated() +{ + byte[] buffer = ComObjRefProvider.MarshalActivatedIUnknownObjRef( + "NmxSvc.NmxService", + ComObjRefProvider.MarshalContextDifferentMachine); + var objRef = ComObjRef.Parse(buffer); + var client = new ObjectExporterClient(); + var failure = client.ResolveOxidUnauthenticated(objRef.Oxid); + Console.WriteLine($"resolve_oxid_unauth_status=0x{failure.ErrorStatus:X8}"); +} + +static void ProbeResolveOxidNtlm() +{ + byte[] buffer = ComObjRefProvider.MarshalActivatedIUnknownObjRef( + "NmxSvc.NmxService", + ComObjRefProvider.MarshalContextDifferentMachine); + var objRef = ComObjRef.Parse(buffer); + var client = new ObjectExporterClient(); + try + { + var response = client.ResolveOxidWithNtlmConnect(objRef.Oxid); + Console.WriteLine($"resolve_oxid_ntlm_stub_size={response.StubData.Length}"); + Console.WriteLine($"resolve_oxid_ntlm_stub_prefix={HexPrefix(response.StubData.ToArray())}"); + if (response.StubData.Length >= 4) + { + Console.WriteLine($"resolve_oxid_ntlm_tail_status=0x{BitConverter.ToUInt32(response.StubData.Span[^4..]):X8}"); + } + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"resolve_oxid_ntlm_fault=0x{ex.Status:X8}"); + } +} + +static void ProbeResolveOxidNtlmIntegrity() +{ + byte[] buffer = ComObjRefProvider.MarshalActivatedIUnknownObjRef( + "NmxSvc.NmxService", + ComObjRefProvider.MarshalContextDifferentMachine); + var objRef = ComObjRef.Parse(buffer); + var client = new ObjectExporterClient(); + try + { + var response = client.ResolveOxidWithNtlmPacketIntegrity(objRef.Oxid); + Console.WriteLine($"resolve_oxid_ntlm_integrity_stub_size={response.StubData.Length}"); + Console.WriteLine($"resolve_oxid_ntlm_integrity_stub_prefix={HexPrefix(response.StubData.ToArray())}"); + if (response.StubData.Length >= 4) + { + Console.WriteLine($"resolve_oxid_ntlm_integrity_tail_status=0x{BitConverter.ToUInt32(response.StubData.Span[^4..]):X8}"); + } + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"resolve_oxid_ntlm_integrity_fault=0x{ex.Status:X8}"); + } +} + +static void ProbeResolveOxidManagedNtlmIntegrity() +{ + byte[] buffer = ComObjRefProvider.MarshalActivatedIUnknownObjRef( + "NmxSvc.NmxService", + ComObjRefProvider.MarshalContextDifferentMachine); + var objRef = ComObjRef.Parse(buffer); + var client = new ObjectExporterClient(); + try + { + var response = client.ResolveOxidWithManagedNtlmPacketIntegrity(objRef.Oxid); + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_stub_size={response.StubData.Length}"); + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_stub_prefix={HexPrefix(response.StubData.ToArray())}"); + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_stub_hex={Convert.ToHexString(response.StubData.ToArray())}"); + var parsed = ObjectExporterMessages.ParseResolveOxidResult(response.StubData.Span); + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_remunknown_ipid={parsed.RemUnknownIpid}"); + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_authn_hint={parsed.AuthnHint}"); + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_bindings={string.Join("|", parsed.Bindings.Select(binding => binding.ToDiagnosticString()))}"); + if (response.StubData.Length >= 4) + { + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_tail_status=0x{BitConverter.ToUInt32(response.StubData.Span[^4..]):X8}"); + } + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"resolve_oxid_managed_ntlm_integrity_fault=0x{ex.Status:X8}"); + } +} + +static void ProbeRemQueryInterfaceManaged() +{ + var type = Type.GetTypeFromProgID("NmxSvc.NmxService", throwOnError: true) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService was not resolved."); + object instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService activation returned null."); + + try + { + byte[] buffer = ComObjRefProvider.MarshalIUnknownObjRef( + instance, + ComObjRefProvider.MarshalContextDifferentMachine); + var objRef = ComObjRef.Parse(buffer); + var exporter = new ObjectExporterClient(); + var oxidResponse = exporter.ResolveOxidWithManagedNtlmPacketIntegrity(objRef.Oxid); + var resolved = ObjectExporterMessages.ParseResolveOxidResult(oxidResponse.StubData.Span); + var endpoint = resolved.Bindings.First(binding => binding.TowerId == ObjectExporterMessages.ProtseqNcacnIpTcp); + string host = ParseBracketedHost(endpoint.Value); + int port = ParseBracketedPort(endpoint.Value); + + using var client = new DceRpcTcpClient(host, port); + client.Connect(); + client.BindWithManagedNtlmPacketIntegrity(RemUnknownMessages.IRemUnknown, versionMajor: 0, versionMinor: 0); + byte[] request = RemUnknownMessages.EncodeRemQueryInterfaceRequest( + objRef.Ipid, + NmxProcedureMetadata.INmxService2, + Guid.NewGuid()); + try + { + var response = client.CallBoundObject(resolved.RemUnknownIpid, RemUnknownMessages.RemQueryInterfaceOpnum, request); + Console.WriteLine($"remqi_managed_stub_size={response.StubData.Length}"); + Console.WriteLine($"remqi_managed_stub_prefix={HexPrefix(response.StubData.ToArray())}"); + Console.WriteLine($"remqi_managed_stub_hex={Convert.ToHexString(response.StubData.ToArray())}"); + var parsed = RemUnknownMessages.ParseRemQueryInterfaceResponse(response.StubData.Span); + if (parsed.Result is not null) + { + Console.WriteLine($"remqi_managed_hresult=0x{parsed.Result.HResult:X8}"); + Console.WriteLine($"remqi_managed_inmxservice2_ipid={parsed.Result.StandardObjectReference.Ipid}"); + Console.WriteLine($"remqi_managed_inmxservice2_oxid=0x{parsed.Result.StandardObjectReference.Oxid:X16}"); + Console.WriteLine($"remqi_managed_inmxservice2_oid=0x{parsed.Result.StandardObjectReference.Oid:X16}"); + + using var serviceClient = new DceRpcTcpClient(host, port); + serviceClient.Connect(); + serviceClient.BindWithManagedNtlmPacketIntegrity(NmxService2Messages.InterfaceId, versionMajor: 0, versionMinor: 0); + byte[] versionRequest = NmxService2Messages.EncodeGetPartnerVersionRequest( + OrpcThis.Create(Guid.NewGuid()), + 1, + 1, + 0x7ffd); + var versionResponse = serviceClient.CallBoundObject( + parsed.Result.StandardObjectReference.Ipid, + NmxService2Messages.GetPartnerVersionOpnum, + versionRequest); + var version = NmxService2Messages.ParseGetPartnerVersionResponse(versionResponse.StubData.Span); + Console.WriteLine($"managed_getpartner_version={version.PartnerVersion}"); + Console.WriteLine($"managed_getpartner_hresult=0x{version.HResult:X8}"); + } + + Console.WriteLine($"remqi_managed_error=0x{parsed.ErrorCode:X8}"); + if (response.StubData.Length >= 4) + { + Console.WriteLine($"remqi_managed_tail_status=0x{BitConverter.ToUInt32(response.StubData.Span[^4..]):X8}"); + } + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"remqi_managed_fault=0x{ex.Status:X8}"); + } + } + finally + { + if (Marshal.IsComObject(instance)) + { + _ = Marshal.ReleaseComObject(instance); + } + } +} + +static void ProbeTransferDataManaged() +{ + var type = Type.GetTypeFromProgID("NmxSvc.NmxService", throwOnError: true) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService was not resolved."); + object instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService activation returned null."); + + try + { + var (host, port, serviceIpid) = ResolveManagedService(instance); + using var serviceClient = new DceRpcTcpClient(host, port); + serviceClient.Connect(); + serviceClient.BindWithManagedNtlmPacketIntegrity(NmxService2Messages.InterfaceId, versionMajor: 0, versionMinor: 0); + + byte[] body = ParseRequiredTransferBody(Environment.GetCommandLineArgs()); + byte[] request = NmxService2Messages.EncodeTransferDataRequest( + OrpcThis.Create(Guid.NewGuid()), + remoteGalaxyId: GetInt(Environment.GetCommandLineArgs(), "--transfer-galaxy") ?? 1, + remotePlatformId: GetInt(Environment.GetCommandLineArgs(), "--transfer-platform") ?? 1, + remoteEngineId: GetInt(Environment.GetCommandLineArgs(), "--transfer-engine") ?? 2, + body); + try + { + var response = serviceClient.CallBoundObject(serviceIpid, NmxService2Messages.TransferDataOpnum, request); + Console.WriteLine($"managed_transferdata_stub_size={response.StubData.Length}"); + Console.WriteLine($"managed_transferdata_stub_prefix={HexPrefix(response.StubData.ToArray())}"); + Console.WriteLine($"managed_transferdata_stub_hex={Convert.ToHexString(response.StubData.ToArray())}"); + var parsed = NmxService2Messages.ParseHResultResponse(response.StubData.Span); + Console.WriteLine($"managed_transferdata_hresult=0x{parsed.HResult:X8}"); + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"managed_transferdata_fault=0x{ex.Status:X8}"); + } + } + finally + { + if (Marshal.IsComObject(instance)) + { + _ = Marshal.ReleaseComObject(instance); + } + } +} + +static void ProbeCallbackMarshal() +{ + var callback = new NmxCallbackSink(); + try + { + byte[] buffer = ComObjRefProvider.MarshalInterfaceObjRef( + callback, + NmxProcedureMetadata.INmxSvcCallback, + ComObjRefProvider.MarshalContextDifferentMachine); + Console.WriteLine($"callback_objref_size={buffer.Length}"); + Console.WriteLine($"callback_objref_hex={Convert.ToHexString(buffer)}"); + Console.WriteLine(string.Join(Environment.NewLine, ComObjRef.Parse(buffer).ToDiagnosticLines())); + } + catch (COMException ex) + { + Console.WriteLine($"callback_marshal_com_error=0x{ex.HResult:X8} {ex.Message}"); + } +} + +static void ProbeRegisterEngine2NullCallbackManaged(int engineId, string engineName) +{ + var type = Type.GetTypeFromProgID("NmxSvc.NmxService", throwOnError: true) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService was not resolved."); + object instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService activation returned null."); + + try + { + var (host, port, serviceIpid) = ResolveManagedService(instance); + using var serviceClient = new DceRpcTcpClient(host, port); + serviceClient.Connect(); + serviceClient.BindWithManagedNtlmPacketIntegrity(NmxService2Messages.InterfaceId, versionMajor: 0, versionMinor: 0); + + byte[] request = NmxService2Messages.EncodeRegisterEngine2Request( + OrpcThis.Create(Guid.NewGuid()), + engineId, + engineName, + NmxServiceClient.ObservedNmxVersion, + callbackObjRef: null); + Console.WriteLine($"managed_register2_null_request_size={request.Length}"); + Console.WriteLine($"managed_register2_null_request_hex={Convert.ToHexString(request)}"); + + try + { + var response = serviceClient.CallBoundObject(serviceIpid, NmxService2Messages.RegisterEngine2Opnum, request); + Console.WriteLine($"managed_register2_null_stub_size={response.StubData.Length}"); + Console.WriteLine($"managed_register2_null_stub_prefix={HexPrefix(response.StubData.ToArray())}"); + Console.WriteLine($"managed_register2_null_stub_hex={Convert.ToHexString(response.StubData.ToArray())}"); + var parsed = NmxService2Messages.ParseHResultResponse(response.StubData.Span); + Console.WriteLine($"managed_register2_null_hresult=0x{parsed.HResult:X8}"); + + byte[] unregisterRequest = NmxService2Messages.EncodeUnregisterEngineRequest( + OrpcThis.Create(Guid.NewGuid()), + engineId); + var unregisterResponse = serviceClient.CallBoundObject( + serviceIpid, + NmxService2Messages.UnregisterEngineOpnum, + unregisterRequest); + var unregister = NmxService2Messages.ParseHResultResponse(unregisterResponse.StubData.Span); + Console.WriteLine($"managed_unregister_after_register_hresult=0x{unregister.HResult:X8}"); + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"managed_register2_null_fault=0x{ex.Status:X8}"); + } + } + finally + { + if (Marshal.IsComObject(instance)) + { + _ = Marshal.ReleaseComObject(instance); + } + } +} + +static void ProbeRegisterEngine2ManagedCallback(int engineId, string engineName) +{ + using var exporter = new ManagedCallbackExporter(GetInt(Environment.GetCommandLineArgs(), "--callback-port") ?? 0); + string host = GetString(Environment.GetCommandLineArgs(), "--callback-host") ?? Environment.MachineName; + byte[] callbackObjRef = HasFlag(Environment.GetCommandLineArgs(), "--callback-objref-com-iunknown") + ? CreateComRegisteredCallbackObjRef() + : HasFlag(Environment.GetCommandLineArgs(), "--callback-objref-com-real") + ? CreateComRegisteredRealCallbackObjRef() + : exporter.CreateCallbackObjRef(host); + Console.WriteLine($"managed_callback_exporter_port={exporter.Port}"); + Console.WriteLine($"managed_callback_objref_size={callbackObjRef.Length}"); + Console.WriteLine($"managed_callback_objref_hex={Convert.ToHexString(callbackObjRef)}"); + + var type = Type.GetTypeFromProgID("NmxSvc.NmxService", throwOnError: true) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService was not resolved."); + object instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService activation returned null."); + + try + { + var (serviceHost, port, serviceIpid) = ResolveManagedService(instance); + using var serviceClient = new DceRpcTcpClient(serviceHost, port); + serviceClient.Connect(); + serviceClient.BindWithManagedNtlmPacketIntegrity(NmxService2Messages.InterfaceId, versionMajor: 0, versionMinor: 0); + + byte[] request = NmxService2Messages.EncodeRegisterEngine2Request( + OrpcThis.Create(Guid.NewGuid()), + engineId, + engineName, + NmxServiceClient.ObservedNmxVersion, + callbackObjRef); + Console.WriteLine($"managed_register2_callback_request_size={request.Length}"); + try + { + var response = serviceClient.CallBoundObject(serviceIpid, NmxService2Messages.RegisterEngine2Opnum, request); + Console.WriteLine($"managed_register2_callback_stub_size={response.StubData.Length}"); + Console.WriteLine($"managed_register2_callback_stub_hex={Convert.ToHexString(response.StubData.ToArray())}"); + var parsed = NmxService2Messages.ParseHResultResponse(response.StubData.Span); + Console.WriteLine($"managed_register2_callback_hresult=0x{parsed.HResult:X8}"); + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"managed_register2_callback_fault=0x{ex.Status:X8}"); + } + + if (HasFlag(Environment.GetCommandLineArgs(), "--callback-self-transfer")) + { + if (HasFlag(Environment.GetCommandLineArgs(), "--callback-connect-self")) + { + byte[] connectRequest = NmxService2Messages.EncodeConnectRequest( + OrpcThis.Create(Guid.NewGuid()), + localEngineId: engineId, + remoteGalaxyId: GetInt(Environment.GetCommandLineArgs(), "--transfer-galaxy") ?? 1, + remotePlatformId: GetInt(Environment.GetCommandLineArgs(), "--transfer-platform") ?? 1, + remoteEngineId: engineId); + var connectResponse = serviceClient.CallBoundObject(serviceIpid, NmxService2Messages.ConnectOpnum, connectRequest); + var connect = NmxService2Messages.ParseHResultResponse(connectResponse.StubData.Span); + Console.WriteLine($"managed_callback_connect_self_hresult=0x{connect.HResult:X8}"); + } + + if (HasFlag(Environment.GetCommandLineArgs(), "--callback-add-self-subscriber")) + { + byte[] subscriberRequest = NmxService2Messages.EncodeSubscriberEngineRequest( + OrpcThis.Create(Guid.NewGuid()), + localEngineId: engineId, + subscriberGalaxyId: GetInt(Environment.GetCommandLineArgs(), "--transfer-galaxy") ?? 1, + subscriberPlatformId: GetInt(Environment.GetCommandLineArgs(), "--transfer-platform") ?? 1, + subscriberEngineId: engineId); + var subscriberResponse = serviceClient.CallBoundObject(serviceIpid, NmxService2Messages.AddSubscriberEngineOpnum, subscriberRequest); + var subscriber = NmxService2Messages.ParseHResultResponse(subscriberResponse.StubData.Span); + Console.WriteLine($"managed_callback_add_self_subscriber_hresult=0x{subscriber.HResult:X8}"); + } + + byte[] body = ParseRequiredTransferBody(Environment.GetCommandLineArgs()); + byte[] transferRequest = NmxService2Messages.EncodeTransferDataRequest( + OrpcThis.Create(Guid.NewGuid()), + remoteGalaxyId: GetInt(Environment.GetCommandLineArgs(), "--transfer-galaxy") ?? 1, + remotePlatformId: GetInt(Environment.GetCommandLineArgs(), "--transfer-platform") ?? 1, + remoteEngineId: engineId, + body); + try + { + var transferResponse = serviceClient.CallBoundObject(serviceIpid, NmxService2Messages.TransferDataOpnum, transferRequest); + var transfer = NmxService2Messages.ParseHResultResponse(transferResponse.StubData.Span); + Console.WriteLine($"managed_callback_self_transfer_hresult=0x{transfer.HResult:X8}"); + } + catch (DceRpcFaultException ex) + { + Console.WriteLine($"managed_callback_self_transfer_fault=0x{ex.Status:X8}"); + } + } + + Thread.Sleep(TimeSpan.FromSeconds(GetInt(Environment.GetCommandLineArgs(), "--callback-hold-seconds") ?? 3)); + + byte[] unregisterRequest = NmxService2Messages.EncodeUnregisterEngineRequest( + OrpcThis.Create(Guid.NewGuid()), + engineId); + var unregisterResponse = serviceClient.CallBoundObject( + serviceIpid, + NmxService2Messages.UnregisterEngineOpnum, + unregisterRequest); + var unregister = NmxService2Messages.ParseHResultResponse(unregisterResponse.StubData.Span); + Console.WriteLine($"managed_unregister_after_callback_register_hresult=0x{unregister.HResult:X8}"); + } + finally + { + if (Marshal.IsComObject(instance)) + { + _ = Marshal.ReleaseComObject(instance); + } + + foreach (string evt in exporter.Events) + { + Console.WriteLine($"callback_exporter_event={evt}"); + } + } +} + +static void ProbeManagedSubscribe(int engineId, string engineName) +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 5; + bool sendObservedPreAdviseMetadata = HasFlag(Environment.GetCommandLineArgs(), "--send-observed-preadvise-metadata"); + var callback = new NmxCallbackSink(); + var callbackHandle = GCHandle.Alloc(callback); + int dataCallbacks = 0; + int statusCallbacks = 0; + callback.DataReceived += (_, message) => + { + dataCallbacks++; + Console.WriteLine($"managed_subscribe_callback_data size={message.Body.Length} prefix={HexPrefix(message.Body)}"); + Console.WriteLine($"managed_subscribe_callback_data_hex={Convert.ToHexString(message.Body)}"); + TryPrintObservedCallback("managed_subscribe_callback_data", message.Body); + }; + callback.StatusReceived += (_, message) => + { + statusCallbacks++; + Console.WriteLine($"managed_subscribe_callback_status size={message.Body.Length} prefix={HexPrefix(message.Body)}"); + Console.WriteLine($"managed_subscribe_callback_status_hex={Convert.ToHexString(message.Body)}"); + TryPrintObservedCallback("managed_subscribe_callback_status", message.Body); + }; + + byte[] callbackObjRef = ComObjRefProvider.MarshalInterfaceObjRef( + callback, + NmxProcedureMetadata.INmxSvcCallback, + ComObjRefProvider.MarshalContextDifferentMachine); + Console.WriteLine($"managed_subscribe_callback_objref_size={callbackObjRef.Length}"); + + var resolver = new GalaxyRepositoryTagResolver(); + GalaxyTagMetadata tag = resolver.ResolveAsync(tagReference).GetAwaiter().GetResult(); + Console.WriteLine($"managed_subscribe_tag={tag.ObjectTagName}.{tag.AttributeName}"); + Console.WriteLine($"managed_subscribe_target=galaxy:1 platform:{tag.PlatformId} engine:{tag.EngineId} object:{tag.ObjectId}"); + Console.WriteLine($"managed_subscribe_handle_hex={Convert.ToHexString(tag.ToReferenceHandle().Encode())}"); + + using var client = ManagedNmxService2Client.Create(DceRpcClientAuthentication.ManagedNtlm); + Guid itemCorrelationId = Guid.NewGuid(); + bool registered = false; + bool subscriberAdded = false; + bool advised = false; + + try + { + int register = client.RegisterEngine2( + engineId, + engineName, + NmxServiceClient.ObservedNmxVersion, + callbackObjRef); + registered = register == 0; + Console.WriteLine($"managed_subscribe_register_hresult=0x{register:X8}"); + + int partnerVersion = client.GetPartnerVersion(1, tag.PlatformId, tag.EngineId); + Console.WriteLine($"managed_subscribe_partner_version={partnerVersion}"); + + int connect = client.Connect(engineId, 1, tag.PlatformId, tag.EngineId); + Console.WriteLine($"managed_subscribe_connect_hresult=0x{connect:X8}"); + + int addSubscriber = client.AddSubscriberEngine(tag.EngineId, 1, 1, engineId); + subscriberAdded = addSubscriber == 0; + Console.WriteLine($"managed_subscribe_add_subscriber_hresult=0x{addSubscriber:X8}"); + + if (sendObservedPreAdviseMetadata) + { + int metadata = client.SendObservedPreAdviseMetadata(engineId, itemCorrelationId); + Console.WriteLine($"managed_subscribe_preadvise_metadata_hresult=0x{metadata:X8}"); + } + + int advise = client.AdviseSupervisory(engineId, tag, itemCorrelationId); + advised = advise == 0; + Console.WriteLine($"managed_subscribe_advise_hresult=0x{advise:X8}"); + Console.WriteLine($"managed_subscribe_correlation={itemCorrelationId}"); + + Thread.Sleep(TimeSpan.FromSeconds(holdSeconds)); + } + finally + { + if (advised) + { + int unadvise = client.UnAdvise(engineId, tag, itemCorrelationId); + Console.WriteLine($"managed_subscribe_unadvise_hresult=0x{unadvise:X8}"); + } + + if (subscriberAdded) + { + int removeSubscriber = client.RemoveSubscriberEngine(tag.EngineId, 1, 1, engineId); + Console.WriteLine($"managed_subscribe_remove_subscriber_hresult=0x{removeSubscriber:X8}"); + } + + if (registered) + { + int unregister = client.UnregisterEngine(engineId); + Console.WriteLine($"managed_subscribe_unregister_hresult=0x{unregister:X8}"); + } + + callbackHandle.Free(); + Console.WriteLine($"managed_subscribe_status_callbacks={statusCallbacks}"); + Console.WriteLine($"managed_subscribe_data_callbacks={dataCallbacks}"); + } +} + +static async Task ProbeSessionWriteAsync(int engineId, string engineName) +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "123"; + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + GalaxyTagMetadata tag = await session.ResolveTagAsync(tagReference).ConfigureAwait(false); + MxValueKind inputKind = tag.TryGetValueKind(out var resolvedKind) + ? resolvedKind + : tag.MxDataType switch + { + (short)MxDataType.ElapsedTime => MxValueKind.Int32, + (short)MxDataType.InternationalizedString => MxValueKind.String, + _ => tag.ToValueKind(), + }; + object value = ConvertProbeValue(inputKind, rawValue); + var projection = tag.ProjectWriteValue(value); + await session.WriteAsync(tagReference, value).ConfigureAwait(false); + Console.WriteLine($"session_write_tag={tag.ObjectTagName}.{tag.AttributeName}"); + Console.WriteLine($"session_write_kind={projection.ValueKind}"); + Console.WriteLine("session_write=ok"); +} + +static void ProbeSessionHeartbeat(int engineId, string engineName) +{ + int heartbeatTicks = GetInt(Environment.GetCommandLineArgs(), "--heartbeat-ticks") ?? 5; + int maxMissedTicks = GetInt(Environment.GetCommandLineArgs(), "--heartbeat-max-missed") ?? 3; + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + HeartbeatTicksPerBeat = heartbeatTicks, + HeartbeatMaxMissedTicks = maxMissedTicks, + }); + Console.WriteLine($"session_heartbeat_ticks={heartbeatTicks}"); + Console.WriteLine($"session_heartbeat_max_missed={maxMissedTicks}"); + Console.WriteLine($"session_heartbeat_subscriptions={session.Subscriptions.Count}"); + Console.WriteLine("session_heartbeat=ok"); +} + +static async Task ProbeSessionRecoverAsync(int engineId, string engineName) +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "321"; + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + int recoveryStarted = 0; + int recoveryFailures = 0; + int recoveryCompleted = 0; + session.RecoveryAttemptStarted += (_, evt) => + { + recoveryStarted++; + Console.WriteLine($"session_recover_event=started attempt={evt.Attempt}/{evt.MaxAttempts}"); + }; + session.RecoveryAttemptFailed += (_, evt) => + { + recoveryFailures++; + Console.WriteLine($"session_recover_event=failed attempt={evt.Attempt}/{evt.MaxAttempts} retry={evt.WillRetry} hresult=0x{evt.Exception.HResult:X8}"); + }; + session.RecoveryCompleted += (_, evt) => + { + recoveryCompleted++; + Console.WriteLine($"session_recover_event=completed attempt={evt.Attempt}/{evt.MaxAttempts}"); + }; + GalaxyTagMetadata tag = await session.ResolveTagAsync(tagReference).ConfigureAwait(false); + MxNativeSubscription subscription = await session.SubscribeAsync(tagReference).ConfigureAwait(false); + Console.WriteLine($"session_recover_subscribed={subscription.CorrelationId}"); + Console.WriteLine($"session_recover_before_count={session.Subscriptions.Count}"); + int recoveryAttempts = GetInt(Environment.GetCommandLineArgs(), "--recover-attempts") ?? 1; + int recoveryDelayMs = GetInt(Environment.GetCommandLineArgs(), "--recover-delay-ms") ?? 0; + await session.RecoverConnectionAsync( + new MxNativeRecoveryPolicy + { + MaxAttempts = recoveryAttempts, + Delay = TimeSpan.FromMilliseconds(recoveryDelayMs), + }).ConfigureAwait(false); + Console.WriteLine($"session_recover_attempts={recoveryAttempts}"); + Console.WriteLine($"session_recover_delay_ms={recoveryDelayMs}"); + Console.WriteLine($"session_recover_events_started={recoveryStarted}"); + Console.WriteLine($"session_recover_events_failed={recoveryFailures}"); + Console.WriteLine($"session_recover_events_completed={recoveryCompleted}"); + Console.WriteLine($"session_recover_after_count={session.Subscriptions.Count}"); + MxValueKind inputKind = tag.TryGetValueKind(out var resolvedKind) ? resolvedKind : tag.ToValueKind(); + object value = ConvertProbeValue(inputKind, rawValue); + await session.WriteAsync(tagReference, value).ConfigureAwait(false); + Console.WriteLine($"session_recover_write_tag={tag.ObjectTagName}.{tag.AttributeName}"); + Console.WriteLine("session_recover=ok"); +} + +static async Task ProbeSessionRecoverMultiAsync(int engineId, string engineName) +{ + IReadOnlyList tagReferences = GetStrings(Environment.GetCommandLineArgs(), "--tag"); + if (tagReferences.Count == 0) + { + tagReferences = + [ + "TestChildObject.TestInt", + "TestChildObject.ShortDesc", + "TestMachine_001.ProtectedValue", + "TestMachine_001.ProtectedValue1", + ]; + } + + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + + int dataCallbacks = 0; + int recoveryDataCallbacks = 0; + int operationCallbacks = 0; + int recoveryOperationCallbacks = 0; + int referenceCallbacks = 0; + int recoveryReferenceCallbacks = 0; + int unparsedCallbacks = 0; + int recoveryUnparsedCallbacks = 0; + int recoveryStarted = 0; + int recoveryFailures = 0; + int recoveryCompleted = 0; + + session.CallbackReceived += (_, evt) => + { + dataCallbacks++; + if (evt.IsDuringRecovery) + { + recoveryDataCallbacks++; + } + }; + session.OperationStatusReceived += (_, evt) => + { + operationCallbacks++; + if (evt.IsDuringRecovery) + { + recoveryOperationCallbacks++; + } + }; + session.ReferenceRegistrationReceived += (_, evt) => + { + referenceCallbacks++; + if (evt.IsDuringRecovery) + { + recoveryReferenceCallbacks++; + } + }; + session.UnparsedCallbackReceived += (_, evt) => + { + unparsedCallbacks++; + if (evt.IsDuringRecovery) + { + recoveryUnparsedCallbacks++; + } + }; + session.RecoveryAttemptStarted += (_, evt) => + { + recoveryStarted++; + Console.WriteLine($"session_recover_multi_event=started attempt={evt.Attempt}/{evt.MaxAttempts}"); + }; + session.RecoveryAttemptFailed += (_, evt) => + { + recoveryFailures++; + Console.WriteLine($"session_recover_multi_event=failed attempt={evt.Attempt}/{evt.MaxAttempts} retry={evt.WillRetry} hresult=0x{evt.Exception.HResult:X8}"); + }; + session.RecoveryCompleted += (_, evt) => + { + recoveryCompleted++; + Console.WriteLine($"session_recover_multi_event=completed attempt={evt.Attempt}/{evt.MaxAttempts}"); + }; + + foreach (string tagReference in tagReferences) + { + MxNativeSubscription subscription = await session.SubscribeAsync(tagReference).ConfigureAwait(false); + Console.WriteLine($"session_recover_multi_subscribed={subscription.CorrelationId} tag={tagReference}"); + } + + Console.WriteLine($"session_recover_multi_before_count={session.Subscriptions.Count}"); + int recoveryAttempts = GetInt(Environment.GetCommandLineArgs(), "--recover-attempts") ?? 1; + int recoveryDelayMs = GetInt(Environment.GetCommandLineArgs(), "--recover-delay-ms") ?? 0; + Task writerTask = HasFlag(Environment.GetCommandLineArgs(), "--recover-concurrent-writes") + ? RunRecoveryWriterAsync(engineId + 1, $"{engineName}.Writer") + : Task.CompletedTask; + await session.RecoverConnectionAsync( + new MxNativeRecoveryPolicy + { + MaxAttempts = recoveryAttempts, + Delay = TimeSpan.FromMilliseconds(recoveryDelayMs), + }).ConfigureAwait(false); + await writerTask.ConfigureAwait(false); + + Console.WriteLine($"session_recover_multi_attempts={recoveryAttempts}"); + Console.WriteLine($"session_recover_multi_delay_ms={recoveryDelayMs}"); + Console.WriteLine($"session_recover_multi_events_started={recoveryStarted}"); + Console.WriteLine($"session_recover_multi_events_failed={recoveryFailures}"); + Console.WriteLine($"session_recover_multi_events_completed={recoveryCompleted}"); + Console.WriteLine($"session_recover_multi_after_count={session.Subscriptions.Count}"); + Console.WriteLine($"session_recover_multi_data_callbacks={dataCallbacks}"); + Console.WriteLine($"session_recover_multi_recovery_data_callbacks={recoveryDataCallbacks}"); + Console.WriteLine($"session_recover_multi_operation_callbacks={operationCallbacks}"); + Console.WriteLine($"session_recover_multi_recovery_operation_callbacks={recoveryOperationCallbacks}"); + Console.WriteLine($"session_recover_multi_reference_callbacks={referenceCallbacks}"); + Console.WriteLine($"session_recover_multi_recovery_reference_callbacks={recoveryReferenceCallbacks}"); + Console.WriteLine($"session_recover_multi_unparsed_callbacks={unparsedCallbacks}"); + Console.WriteLine($"session_recover_multi_recovery_unparsed_callbacks={recoveryUnparsedCallbacks}"); + Console.WriteLine("session_recover_multi=ok"); +} + +static async Task RunRecoveryWriterAsync(int engineId, string engineName) +{ + string writeTag = GetString(Environment.GetCommandLineArgs(), "--recover-write-tag") ?? "TestChildObject.TestInt"; + int startValue = GetInt(Environment.GetCommandLineArgs(), "--recover-write-start") ?? 330; + int writeCount = GetInt(Environment.GetCommandLineArgs(), "--recover-write-count") ?? 5; + int writeDelayMs = GetInt(Environment.GetCommandLineArgs(), "--recover-write-delay-ms") ?? 10; + using var writer = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + + for (int i = 0; i < writeCount; i++) + { + await writer.WriteAsync(writeTag, startValue + i).ConfigureAwait(false); + Console.WriteLine($"session_recover_multi_writer_write tag={writeTag} value={startValue + i}"); + if (writeDelayMs > 0 && i + 1 < writeCount) + { + await Task.Delay(TimeSpan.FromMilliseconds(writeDelayMs)).ConfigureAwait(false); + } + } +} + +static async Task ProbeSessionWriteSecured2Async(int engineId, string engineName) +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestMachine_001.ProtectedValue"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "true"; + int currentUserId = GetInt(Environment.GetCommandLineArgs(), "--current-user-id") ?? 1; + int verifierUserId = GetInt(Environment.GetCommandLineArgs(), "--verifier-user-id") ?? 0; + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + GalaxyTagMetadata tag = await session.ResolveTagAsync(tagReference).ConfigureAwait(false); + object value = ConvertProbeValue(tag.ToValueKind(), rawValue); + await session.WriteSecured2Async( + tagReference, + value, + DateTime.Now, + currentUserId, + verifierUserId).ConfigureAwait(false); + Console.WriteLine($"session_write_secured2_tag={tag.ObjectTagName}.{tag.AttributeName}"); + Console.WriteLine($"session_write_secured2_security={tag.SecurityClassification}"); + Console.WriteLine("session_write_secured2=ok"); +} + +static async Task ProbeSessionSubscribeAsync(int engineId, string engineName) +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 5; + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + int callbacks = 0; + session.CallbackReceived += (_, evt) => + { + callbacks++; + string detail = evt.Record.DetailStatus.HasValue + ? evt.Record.DetailStatus.Value.ToString(CultureInfo.InvariantCulture) + : "null"; + Console.WriteLine( + $"session_callback command=0x{evt.Message.Command:X2} status={evt.Record.Status} detail={detail} quality=0x{evt.Record.Quality:X4} kind=0x{evt.Record.WireKind:X2} value={FormatCallbackValue(evt.Record.Value)}"); + Console.WriteLine($"session_callback_raw size={evt.RawBody.Length} hex={Convert.ToHexString(evt.RawBody)}"); + }; + session.UnparsedCallbackReceived += (_, evt) => + { + Console.WriteLine($"session_unparsed_callback size={evt.RawBody.Length} error={evt.ParseError}"); + Console.WriteLine($"session_unparsed_callback_raw hex={Convert.ToHexString(evt.RawBody)}"); + }; + + MxNativeSubscription subscription = await session.SubscribeAsync(tagReference).ConfigureAwait(false); + Console.WriteLine($"session_subscribe_correlation={subscription.CorrelationId}"); + Thread.Sleep(TimeSpan.FromSeconds(holdSeconds)); + session.Unsubscribe(subscription.CorrelationId); + Console.WriteLine($"session_subscribe_callbacks={callbacks}"); +} + +static async Task ProbeSessionSubscribeWriteAsync(int engineId, string engineName) +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "123"; + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 8; + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + + GalaxyTagMetadata tag = await session.ResolveTagAsync(tagReference).ConfigureAwait(false); + MxValueKind inputKind = tag.TryGetValueKind(out var resolvedKind) + ? resolvedKind + : tag.MxDataType switch + { + (short)MxDataType.ElapsedTime => MxValueKind.Int32, + (short)MxDataType.InternationalizedString => MxValueKind.String, + _ => tag.ToValueKind(), + }; + + int callbacks = 0; + session.CallbackReceived += (_, evt) => + { + callbacks++; + string detail = evt.Record.DetailStatus.HasValue + ? evt.Record.DetailStatus.Value.ToString(CultureInfo.InvariantCulture) + : "null"; + Console.WriteLine( + $"session_subscribe_write_callback command=0x{evt.Message.Command:X2} status={evt.Record.Status} detail={detail} quality=0x{evt.Record.Quality:X4} kind=0x{evt.Record.WireKind:X2} value={FormatCallbackValue(evt.Record.Value)}"); + Console.WriteLine($"session_subscribe_write_callback_raw size={evt.RawBody.Length} hex={Convert.ToHexString(evt.RawBody)}"); + }; + session.UnparsedCallbackReceived += (_, evt) => + { + Console.WriteLine($"session_subscribe_write_unparsed_callback size={evt.RawBody.Length} error={evt.ParseError}"); + Console.WriteLine($"session_subscribe_write_unparsed_callback_raw hex={Convert.ToHexString(evt.RawBody)}"); + }; + session.OperationStatusReceived += (_, evt) => + { + Console.WriteLine( + $"session_subscribe_write_operation_status format={evt.Message.Format} command=0x{evt.Message.Command:X2} status=0x{evt.Message.StatusCode:X4} completion=0x{evt.Message.CompletionCode:X2} mxaccess_write_complete={evt.Message.IsMxAccessWriteComplete}"); + Console.WriteLine($"session_subscribe_write_operation_status_raw size={evt.RawBody.Length} hex={Convert.ToHexString(evt.RawBody)}"); + }; + + MxNativeSubscription subscription = await session.SubscribeAsync(tagReference).ConfigureAwait(false); + Console.WriteLine($"session_subscribe_write_correlation={subscription.CorrelationId}"); + Thread.Sleep(TimeSpan.FromSeconds(2)); + object value = ConvertProbeValue(inputKind, rawValue); + await session.WriteAsync(tagReference, value).ConfigureAwait(false); + Console.WriteLine($"session_subscribe_write_sent={FormatCallbackValue(value)}"); + Thread.Sleep(TimeSpan.FromSeconds(holdSeconds)); + session.Unsubscribe(subscription.CorrelationId); + Console.WriteLine($"session_subscribe_write_callbacks={callbacks}"); +} + +static async Task ProbeSessionReadAsync(int engineId, string engineName) +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + int timeoutSeconds = GetInt(Environment.GetCommandLineArgs(), "--read-timeout-seconds") ?? 10; + using var session = MxNativeSession.Open(new MxNativeClientOptions + { + LocalEngineId = engineId, + EngineName = engineName, + }); + object? value = await session.ReadAsync(tagReference, TimeSpan.FromSeconds(timeoutSeconds)).ConfigureAwait(false); + Console.WriteLine($"session_read_tag={tagReference}"); + Console.WriteLine($"session_read_value={FormatCallbackValue(value)}"); +} + +static async Task ProbeCompatibilitySubscribeAsync() +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.ShortDesc"; + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 8; + + using var server = new MxNativeCompatibilityServer(); + int dataChanges = 0; + server.DataChanged += (_, evt) => + { + dataChanges++; + MxStatus status = evt.Statuses.Count > 0 + ? evt.Statuses[0] + : new MxStatus(0, MxStatusCategory.Unknown, MxStatusSource.Unknown, 0); + Console.WriteLine( + $"compat_data_change server={evt.ServerHandle} item={evt.ItemHandle} quality=0x{evt.Quality:X4} value={FormatCallbackValue(evt.Value)} status_success={status.Success} status_category={status.Category} status_source={status.DetectedBy} status_detail={status.Detail}"); + }; + server.WriteCompleted += (_, evt) => + { + Console.WriteLine( + $"compat_write_complete server={evt.ServerHandle} item={evt.ItemHandle} statuses={evt.Statuses.Count}"); + }; + + int serverHandle = server.Register($"MxNativeClient.CompatProbe.{Environment.ProcessId}"); + int itemHandle = await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + Console.WriteLine($"compat_registered server={serverHandle} item={itemHandle} tag={tagReference}"); + await server.AdviseSupervisoryAsync(serverHandle, itemHandle).ConfigureAwait(false); + Console.WriteLine("compat_advise=ok"); + await Task.Delay(TimeSpan.FromSeconds(holdSeconds)).ConfigureAwait(false); + server.UnAdvise(serverHandle, itemHandle); + server.RemoveItem(serverHandle, itemHandle); + server.Unregister(serverHandle); + Console.WriteLine($"compat_data_changes={dataChanges}"); +} + +static async Task ProbeCompatibilitySubscribeWriteAsync() +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "792"; + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 8; + + using var server = new MxNativeCompatibilityServer(); + int dataChanges = 0; + int writeCompletes = 0; + server.DataChanged += (_, evt) => + { + dataChanges++; + MxStatus status = evt.Statuses.Count > 0 + ? evt.Statuses[0] + : new MxStatus(0, MxStatusCategory.Unknown, MxStatusSource.Unknown, 0); + Console.WriteLine( + $"compat_subscribe_write_data_change server={evt.ServerHandle} item={evt.ItemHandle} quality=0x{evt.Quality:X4} value={FormatCallbackValue(evt.Value)} status_success={status.Success} status_category={status.Category} status_source={status.DetectedBy} status_detail={status.Detail}"); + }; + server.WriteCompleted += (_, evt) => + { + writeCompletes++; + Console.WriteLine( + $"compat_subscribe_write_complete server={evt.ServerHandle} item={evt.ItemHandle} statuses={evt.Statuses.Count}"); + }; + + int serverHandle = server.Register($"MxNativeClient.CompatWriteProbe.{Environment.ProcessId}"); + int itemHandle = await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + MxValueKind inputKind; + try + { + GalaxyTagMetadata tag = await new GalaxyRepositoryTagResolver().ResolveAsync(tagReference).ConfigureAwait(false); + inputKind = tag.MxDataType switch + { + (short)MxDataType.ElapsedTime => MxValueKind.Int32, + (short)MxDataType.InternationalizedString => MxValueKind.String, + _ => tag.ToValueKind(), + }; + } + catch (InvalidOperationException ex) when (ex.Message.Contains("was not found in the deployed repository metadata", StringComparison.Ordinal)) + { + inputKind = MxValueKind.Int32; + } + + object value = ConvertProbeValue(inputKind, rawValue); + Console.WriteLine($"compat_subscribe_write_registered server={serverHandle} item={itemHandle} tag={tagReference}"); + await server.AdviseSupervisoryAsync(serverHandle, itemHandle).ConfigureAwait(false); + Console.WriteLine("compat_subscribe_write_advise=ok"); + await Task.Delay(TimeSpan.FromSeconds(2)).ConfigureAwait(false); + await server.WriteAsync(serverHandle, itemHandle, value).ConfigureAwait(false); + Console.WriteLine($"compat_subscribe_write_sent={FormatCallbackValue(value)}"); + await Task.Delay(TimeSpan.FromSeconds(holdSeconds)).ConfigureAwait(false); + server.UnAdvise(serverHandle, itemHandle); + server.RemoveItem(serverHandle, itemHandle); + server.Unregister(serverHandle); + Console.WriteLine($"compat_subscribe_write_data_changes={dataChanges}"); + Console.WriteLine($"compat_subscribe_write_completes={writeCompletes}"); +} + +static async Task ProbeCompatibilitySubscribeMultiAsync() +{ + IReadOnlyList tagReferences = GetStrings(Environment.GetCommandLineArgs(), "--tag"); + if (tagReferences.Count == 0) + { + tagReferences = + [ + "TestChildObject.ShortDesc", + "TestChildObject.TestInt", + "NoSuchObject_999.NoSuchAttr", + ]; + } + + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 4; + using var server = new MxNativeCompatibilityServer(); + int dataChanges = 0; + Dictionary itemChangeCounts = []; + server.DataChanged += (_, evt) => + { + dataChanges++; + itemChangeCounts[evt.ItemHandle] = itemChangeCounts.TryGetValue(evt.ItemHandle, out int current) + ? current + 1 + : 1; + MxStatus status = evt.Statuses.Count > 0 + ? evt.Statuses[0] + : new MxStatus(0, MxStatusCategory.Unknown, MxStatusSource.Unknown, 0); + Console.WriteLine( + $"compat_multi_data_change server={evt.ServerHandle} item={evt.ItemHandle} quality=0x{evt.Quality:X4} value={FormatCallbackValue(evt.Value)} status_success={status.Success} status_category={status.Category} status_source={status.DetectedBy} status_detail={status.Detail}"); + }; + + int serverHandle = server.Register($"MxNativeClient.CompatMultiProbe.{Environment.ProcessId}"); + List itemHandles = []; + foreach (string tagReference in tagReferences) + { + int itemHandle = await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + itemHandles.Add(itemHandle); + Console.WriteLine($"compat_multi_registered server={serverHandle} item={itemHandle} tag={tagReference}"); + await server.AdviseSupervisoryAsync(serverHandle, itemHandle).ConfigureAwait(false); + Console.WriteLine($"compat_multi_advise item={itemHandle} ok"); + } + + await Task.Delay(TimeSpan.FromSeconds(holdSeconds)).ConfigureAwait(false); + foreach (int itemHandle in itemHandles.AsEnumerable().Reverse()) + { + server.UnAdvise(serverHandle, itemHandle); + server.RemoveItem(serverHandle, itemHandle); + } + + server.Unregister(serverHandle); + Console.WriteLine($"compat_multi_items={itemHandles.Count}"); + Console.WriteLine($"compat_multi_data_changes={dataChanges}"); + foreach (int itemHandle in itemHandles) + { + int count = itemChangeCounts.TryGetValue(itemHandle, out int value) ? value : 0; + Console.WriteLine($"compat_multi_item_changes item={itemHandle} count={count}"); + } +} + +static async Task ProbeCompatibilityWriteMultiAsync() +{ + IReadOnlyList tagReferences = GetStrings(Environment.GetCommandLineArgs(), "--tag"); + if (tagReferences.Count == 0) + { + tagReferences = + [ + "TestChildObject.TestInt", + "TestChildObject.ShortDesc", + "TestChildObject.TestInt.property(buffer)", + "NoSuchObject_999.NoSuchAttr", + ]; + } + + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 4; + using var server = new MxNativeCompatibilityServer(); + Dictionary dataChangeCounts = []; + Dictionary writeCompleteCounts = []; + server.DataChanged += (_, evt) => + { + dataChangeCounts[evt.ItemHandle] = dataChangeCounts.TryGetValue(evt.ItemHandle, out int current) + ? current + 1 + : 1; + MxStatus status = evt.Statuses.Count > 0 + ? evt.Statuses[0] + : new MxStatus(0, MxStatusCategory.Unknown, MxStatusSource.Unknown, 0); + Console.WriteLine( + $"compat_write_multi_data_change item={evt.ItemHandle} value={FormatCallbackValue(evt.Value)} quality=0x{evt.Quality:X4} status_success={status.Success} status_category={status.Category} status_source={status.DetectedBy} status_detail={status.Detail}"); + }; + server.WriteCompleted += (_, evt) => + { + writeCompleteCounts[evt.ItemHandle] = writeCompleteCounts.TryGetValue(evt.ItemHandle, out int current) + ? current + 1 + : 1; + Console.WriteLine($"compat_write_multi_write_complete item={evt.ItemHandle} statuses={evt.Statuses.Count}"); + }; + + int serverHandle = server.Register($"MxNativeClient.CompatWriteMultiProbe.{Environment.ProcessId}"); + List<(int ItemHandle, string TagReference)> items = []; + foreach (string tagReference in tagReferences) + { + int itemHandle = await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + items.Add((itemHandle, tagReference)); + Console.WriteLine($"compat_write_multi_registered item={itemHandle} tag={tagReference}"); + await server.AdviseSupervisoryAsync(serverHandle, itemHandle).ConfigureAwait(false); + Console.WriteLine($"compat_write_multi_advise item={itemHandle} ok"); + } + + await Task.Delay(TimeSpan.FromSeconds(2)).ConfigureAwait(false); + foreach ((int itemHandle, string tagReference) in items) + { + object value = await ConvertProbeValueForTagAsync(tagReference, defaultRawValue: "904").ConfigureAwait(false); + await server.WriteAsync(serverHandle, itemHandle, value).ConfigureAwait(false); + Console.WriteLine($"compat_write_multi_sent item={itemHandle} value={FormatCallbackValue(value)}"); + } + + await Task.Delay(TimeSpan.FromSeconds(holdSeconds)).ConfigureAwait(false); + foreach ((int itemHandle, _) in items.AsEnumerable().Reverse()) + { + server.UnAdvise(serverHandle, itemHandle); + server.RemoveItem(serverHandle, itemHandle); + } + + server.Unregister(serverHandle); + Console.WriteLine($"compat_write_multi_items={items.Count}"); + foreach ((int itemHandle, string tagReference) in items) + { + int dataChanges = dataChangeCounts.TryGetValue(itemHandle, out int dc) ? dc : 0; + int writeCompletes = writeCompleteCounts.TryGetValue(itemHandle, out int wc) ? wc : 0; + Console.WriteLine($"compat_write_multi_item item={itemHandle} tag={tagReference} data_changes={dataChanges} write_completes={writeCompletes}"); + } +} + +static async Task ProbeCompatibilityWriteUnadvisedAsync() +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "99"; + bool buffered = HasFlag(Environment.GetCommandLineArgs(), "--buffered"); + string itemContext = GetString(Environment.GetCommandLineArgs(), "--item-context") ?? "TestChildObject"; + + using var server = new MxNativeCompatibilityServer(); + int serverHandle = server.Register($"MxNativeClient.CompatUnadvisedWriteProbe.{Environment.ProcessId}"); + int itemHandle = buffered + ? await server.AddBufferedItemAsync(serverHandle, tagReference, itemContext).ConfigureAwait(false) + : await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + Console.WriteLine($"compat_write_unadvised_registered server={serverHandle} item={itemHandle} tag={tagReference} buffered={buffered}"); + + MxValueKind inputKind = MxValueKind.Int32; + try + { + string resolveReference = buffered + ? $"{itemContext.TrimEnd('.')}.{tagReference.TrimStart('.')}" + : tagReference; + GalaxyTagMetadata tag = await new GalaxyRepositoryTagResolver().ResolveAsync(resolveReference).ConfigureAwait(false); + inputKind = tag.MxDataType switch + { + (short)MxDataType.ElapsedTime => MxValueKind.Int32, + (short)MxDataType.InternationalizedString => MxValueKind.String, + _ => tag.ToValueKind(), + }; + } + catch (InvalidOperationException ex) when (ex.Message.Contains("was not found in the deployed repository metadata", StringComparison.Ordinal)) + { + inputKind = MxValueKind.Int32; + } + + object value = ConvertProbeValue(inputKind, rawValue); + try + { + await server.WriteAsync(serverHandle, itemHandle, value).ConfigureAwait(false); + Console.WriteLine("compat_write_unadvised_result=success"); + } + catch (ArgumentException ex) + { + Console.WriteLine($"compat_write_unadvised_result=argument_error hresult=0x{ex.HResult:X8} message={ex.Message}"); + } + finally + { + server.RemoveItem(serverHandle, itemHandle); + server.Unregister(serverHandle); + } +} + +static async Task ProbeCompatibilityWriteSecured2Async() +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestMachine_001.ProtectedValue"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "true"; + bool useVerifier = HasFlag(Environment.GetCommandLineArgs(), "--use-verifier"); + string authUser = Environment.GetEnvironmentVariable("MX_RPC_USER", EnvironmentVariableTarget.User) + ?? Environment.UserName; + + using var server = new MxNativeCompatibilityServer(); + int writeCompletes = 0; + server.WriteCompleted += (_, evt) => + { + writeCompletes++; + Console.WriteLine( + $"compat_write_secured2_complete server={evt.ServerHandle} item={evt.ItemHandle} statuses={evt.Statuses.Count}"); + }; + + int serverHandle = server.Register($"MxNativeClient.CompatSecured2Probe.{Environment.ProcessId}"); + int itemHandle = await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + int currentUserId = server.AuthenticateUser(serverHandle, authUser, string.Empty); + int verifierUserId = useVerifier ? currentUserId : 0; + + GalaxyTagMetadata tag = await new GalaxyRepositoryTagResolver().ResolveAsync(tagReference).ConfigureAwait(false); + object value = ConvertProbeValue(tag.ToValueKind(), rawValue); + await server.WriteSecured2Async( + serverHandle, + itemHandle, + value, + DateTime.Now, + currentUserId, + verifierUserId).ConfigureAwait(false); + + Console.WriteLine($"compat_write_secured2_registered server={serverHandle} item={itemHandle} tag={tagReference}"); + Console.WriteLine($"compat_write_secured2_security={tag.SecurityClassification}"); + Console.WriteLine($"compat_write_secured2_current_user={currentUserId}"); + Console.WriteLine($"compat_write_secured2_verifier_user={verifierUserId}"); + Console.WriteLine($"compat_write_secured2_completes={writeCompletes}"); + server.RemoveItem(serverHandle, itemHandle); + server.Unregister(serverHandle); +} + +static async Task ConvertProbeValueForTagAsync(string tagReference, string defaultRawValue) +{ + MxValueKind inputKind = MxValueKind.Int32; + string rawValue = defaultRawValue; + try + { + GalaxyTagMetadata tag = await new GalaxyRepositoryTagResolver().ResolveAsync(tagReference).ConfigureAwait(false); + inputKind = tag.MxDataType switch + { + (short)MxDataType.ElapsedTime => MxValueKind.Int32, + (short)MxDataType.InternationalizedString => MxValueKind.String, + _ => tag.ToValueKind(), + }; + + if (inputKind == MxValueKind.String) + { + rawValue = "hello-multi"; + } + else if (inputKind == MxValueKind.Boolean) + { + rawValue = "true"; + } + else if (inputKind == MxValueKind.Float32 || inputKind == MxValueKind.Float64) + { + rawValue = "9.04"; + } + else if (inputKind == MxValueKind.DateTime) + { + rawValue = "2026-04-25T09:04:00"; + } + } + catch (InvalidOperationException ex) when (ex.Message.Contains("was not found in the deployed repository metadata", StringComparison.Ordinal)) + { + inputKind = MxValueKind.Int32; + } + + return ConvertProbeValue(inputKind, rawValue); +} + +static async Task ProbeCompatibilityPostRemoveAsync() +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "901"; + + using var server = new MxNativeCompatibilityServer(); + int serverHandle = server.Register($"MxNativeClient.CompatPostRemoveProbe.{Environment.ProcessId}"); + int itemHandle = await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + Console.WriteLine($"compat_post_remove_registered server={serverHandle} item={itemHandle} tag={tagReference}"); + server.RemoveItem(serverHandle, itemHandle); + Console.WriteLine("compat_post_remove_removed=ok"); + + MxValueKind inputKind = MxValueKind.Int32; + try + { + GalaxyTagMetadata tag = await new GalaxyRepositoryTagResolver().ResolveAsync(tagReference).ConfigureAwait(false); + inputKind = tag.MxDataType switch + { + (short)MxDataType.ElapsedTime => MxValueKind.Int32, + (short)MxDataType.InternationalizedString => MxValueKind.String, + _ => tag.ToValueKind(), + }; + } + catch (InvalidOperationException ex) when (ex.Message.Contains("was not found in the deployed repository metadata", StringComparison.Ordinal)) + { + inputKind = MxValueKind.Int32; + } + + object value = ConvertProbeValue(inputKind, rawValue); + PrintCompatibilityArgumentResult("compat_post_remove", "advise", () => server.Advise(serverHandle, itemHandle)); + PrintCompatibilityArgumentResult("compat_post_remove", "advise_supervisory", () => server.AdviseSupervisory(serverHandle, itemHandle)); + PrintCompatibilityArgumentResult("compat_post_remove", "unadvise", () => server.UnAdvise(serverHandle, itemHandle)); + await PrintCompatibilityArgumentResultAsync("compat_post_remove", "write", () => server.WriteAsync(serverHandle, itemHandle, value)).ConfigureAwait(false); + await PrintCompatibilityArgumentResultAsync("compat_post_remove", "write2", () => server.Write2Async(serverHandle, itemHandle, value, DateTime.Now)).ConfigureAwait(false); + PrintCompatibilityArgumentResult("compat_post_remove", "suspend", () => + { + MxStatus status; + server.Suspend(serverHandle, itemHandle, out status); + }); + PrintCompatibilityArgumentResult("compat_post_remove", "activate", () => + { + MxStatus status; + server.Activate(serverHandle, itemHandle, out status); + }); + PrintCompatibilityArgumentResult("compat_post_remove", "remove_again", () => server.RemoveItem(serverHandle, itemHandle)); + server.Unregister(serverHandle); +} + +static async Task ProbeCompatibilityInvalidHandlesAsync() +{ + string tagReference = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestChildObject.TestInt"; + string rawValue = GetString(Environment.GetCommandLineArgs(), "--value") ?? "902"; + + using var server = new MxNativeCompatibilityServer(); + int serverHandle = server.Register($"MxNativeClient.CompatInvalidHandleProbe.{Environment.ProcessId}"); + int crossServerHandle = server.Register($"MxNativeClient.CompatInvalidHandleProbe.Cross.{Environment.ProcessId}"); + int invalidServerHandle = serverHandle + 1000; + int itemHandle = await server.AddItemAsync(serverHandle, tagReference).ConfigureAwait(false); + Console.WriteLine($"compat_invalid_handles_registered server={serverHandle} cross_server={crossServerHandle} invalid_server={invalidServerHandle} item={itemHandle} tag={tagReference}"); + + MxValueKind inputKind = MxValueKind.Int32; + try + { + GalaxyTagMetadata tag = await new GalaxyRepositoryTagResolver().ResolveAsync(tagReference).ConfigureAwait(false); + inputKind = tag.MxDataType switch + { + (short)MxDataType.ElapsedTime => MxValueKind.Int32, + (short)MxDataType.InternationalizedString => MxValueKind.String, + _ => tag.ToValueKind(), + }; + } + catch (InvalidOperationException ex) when (ex.Message.Contains("was not found in the deployed repository metadata", StringComparison.Ordinal)) + { + inputKind = MxValueKind.Int32; + } + + object value = ConvertProbeValue(inputKind, rawValue); + await PrintCompatibilityArgumentResultAsync("compat_invalid_handles", "additem_invalid_server", () => server.AddItemAsync(invalidServerHandle, tagReference)).ConfigureAwait(false); + PrintCompatibilityArgumentResult("compat_invalid_handles", "additem2_invalid_server", () => _ = server.AddItem2(invalidServerHandle, tagReference, "TestChildObject")); + PrintCompatibilityArgumentResult("compat_invalid_handles", "remove_invalid_server", () => server.RemoveItem(invalidServerHandle, itemHandle)); + PrintCompatibilityArgumentResult("compat_invalid_handles", "advise_invalid_server", () => server.Advise(invalidServerHandle, itemHandle)); + PrintCompatibilityArgumentResult("compat_invalid_handles", "advise_supervisory_invalid_server", () => server.AdviseSupervisory(invalidServerHandle, itemHandle)); + PrintCompatibilityArgumentResult("compat_invalid_handles", "unadvise_invalid_server", () => server.UnAdvise(invalidServerHandle, itemHandle)); + await PrintCompatibilityArgumentResultAsync("compat_invalid_handles", "write_invalid_server", () => server.WriteAsync(invalidServerHandle, itemHandle, value)).ConfigureAwait(false); + await PrintCompatibilityArgumentResultAsync("compat_invalid_handles", "write2_invalid_server", () => server.Write2Async(invalidServerHandle, itemHandle, value, DateTime.Now)).ConfigureAwait(false); + PrintCompatibilityArgumentResult("compat_invalid_handles", "suspend_invalid_server", () => + { + MxStatus status; + server.Suspend(invalidServerHandle, itemHandle, out status); + }); + PrintCompatibilityArgumentResult("compat_invalid_handles", "activate_invalid_server", () => + { + MxStatus status; + server.Activate(invalidServerHandle, itemHandle, out status); + }); + PrintCompatibilityArgumentResult("compat_invalid_handles", "unregister_invalid_server", () => server.Unregister(invalidServerHandle)); + + PrintCompatibilityArgumentResult("compat_invalid_handles", "remove_cross_server", () => server.RemoveItem(crossServerHandle, itemHandle)); + PrintCompatibilityArgumentResult("compat_invalid_handles", "advise_cross_server", () => server.Advise(crossServerHandle, itemHandle)); + await PrintCompatibilityArgumentResultAsync("compat_invalid_handles", "write_cross_server", () => server.WriteAsync(crossServerHandle, itemHandle, value)).ConfigureAwait(false); + + server.RemoveItem(serverHandle, itemHandle); + server.Unregister(crossServerHandle); + server.Unregister(serverHandle); +} + +static async Task ProbeCompatibilityAddItem2Async() +{ + string itemDefinition = GetString(Environment.GetCommandLineArgs(), "--tag") ?? "TestInt"; + string itemContext = GetString(Environment.GetCommandLineArgs(), "--item-context") ?? "TestChildObject"; + int holdSeconds = GetInt(Environment.GetCommandLineArgs(), "--subscribe-hold-seconds") ?? 2; + + using var server = new MxNativeCompatibilityServer(); + int dataChanges = 0; + server.DataChanged += (_, evt) => + { + dataChanges++; + Console.WriteLine($"compat_additem2_data_change item={evt.ItemHandle} value={FormatCallbackValue(evt.Value)} quality=0x{evt.Quality:X4}"); + }; + + int serverHandle = server.Register($"MxNativeClient.CompatAddItem2Probe.{Environment.ProcessId}"); + int itemHandle = server.AddItem2(serverHandle, itemDefinition, itemContext); + Console.WriteLine($"compat_additem2_registered server={serverHandle} item={itemHandle} tag={itemDefinition} context={itemContext}"); + await server.AdviseSupervisoryAsync(serverHandle, itemHandle).ConfigureAwait(false); + Console.WriteLine("compat_additem2_advise=ok"); + await Task.Delay(TimeSpan.FromSeconds(holdSeconds)).ConfigureAwait(false); + server.UnAdvise(serverHandle, itemHandle); + server.RemoveItem(serverHandle, itemHandle); + server.Unregister(serverHandle); + Console.WriteLine($"compat_additem2_data_changes={dataChanges}"); +} + +static void PrintCompatibilityArgumentResult(string prefix, string operation, Action action) +{ + try + { + action(); + Console.WriteLine($"{prefix}_{operation}=success"); + } + catch (ArgumentException ex) + { + Console.WriteLine($"{prefix}_{operation}=argument_error hresult=0x{ex.HResult:X8}"); + } +} + +static async Task PrintCompatibilityArgumentResultAsync(string prefix, string operation, Func action) +{ + try + { + await action().ConfigureAwait(false); + Console.WriteLine($"{prefix}_{operation}=success"); + } + catch (ArgumentException ex) + { + Console.WriteLine($"{prefix}_{operation}=argument_error hresult=0x{ex.HResult:X8}"); + } +} + +static object ConvertProbeValue(MxValueKind valueKind, string rawValue) +{ + return valueKind switch + { + MxValueKind.Boolean => bool.Parse(rawValue), + MxValueKind.Int32 => int.Parse(rawValue, CultureInfo.InvariantCulture), + MxValueKind.Float32 => float.Parse(rawValue, CultureInfo.InvariantCulture), + MxValueKind.Float64 => double.Parse(rawValue, CultureInfo.InvariantCulture), + MxValueKind.String => rawValue, + MxValueKind.DateTime => DateTime.Parse(rawValue, CultureInfo.InvariantCulture, DateTimeStyles.AssumeLocal), + MxValueKind.BooleanArray => rawValue.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries).Select(bool.Parse).ToArray(), + MxValueKind.Int32Array => rawValue.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries).Select(value => int.Parse(value, CultureInfo.InvariantCulture)).ToArray(), + MxValueKind.Float32Array => rawValue.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries).Select(value => float.Parse(value, CultureInfo.InvariantCulture)).ToArray(), + MxValueKind.Float64Array => rawValue.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries).Select(value => double.Parse(value, CultureInfo.InvariantCulture)).ToArray(), + MxValueKind.StringArray => rawValue.Split(',', StringSplitOptions.TrimEntries), + MxValueKind.DateTimeArray => rawValue.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries).Select(value => DateTime.Parse(value, CultureInfo.InvariantCulture, DateTimeStyles.AssumeLocal)).ToArray(), + _ => throw new NotSupportedException($"Probe scalar value conversion does not support {valueKind}."), + }; +} + +static void TryPrintObservedCallback(string prefix, byte[] body) +{ + try + { + var envelope = NmxObservedEnvelope.ParseProcessDataReceivedBodyFlexible(body); + if (NmxOperationStatusMessage.TryParseInner(envelope.InnerBody.Span, out var operationStatus)) + { + Console.WriteLine($"{prefix}_command=OperationStatus"); + Console.WriteLine($"{prefix}_operation_status=0x{operationStatus.StatusCode:X4}"); + Console.WriteLine( + $"{prefix}_mx_status=success:{operationStatus.Status.Success} category:{operationStatus.Status.Category} detected_by:{operationStatus.Status.DetectedBy} detail:{operationStatus.Status.Detail}"); + return; + } + + var message = NmxObservedMessage.Parse(envelope.InnerBody.Span); + Console.WriteLine($"{prefix}_command={message.CommandName}"); + if (message.ItemCorrelationId is Guid itemCorrelationId) + { + Console.WriteLine($"{prefix}_correlation={itemCorrelationId}"); + } + + foreach (NmxObservedString text in message.Strings) + { + Console.WriteLine($"{prefix}_string@0x{text.Offset:X}={text.Value}"); + } + + if (message.Command is NmxSubscriptionMessage.SubscriptionStatusCommand or NmxSubscriptionMessage.DataUpdateCommand) + { + var typed = NmxSubscriptionMessage.ParseInner(envelope.InnerBody.Span); + Console.WriteLine($"{prefix}_typed_operation={typed.OperationId}"); + if (typed.ItemCorrelationId is Guid typedCorrelationId) + { + Console.WriteLine($"{prefix}_typed_correlation={typedCorrelationId}"); + } + + Console.WriteLine($"{prefix}_typed_record_count={typed.Records.Count}"); + for (int i = 0; i < typed.Records.Count; i++) + { + NmxSubscriptionRecord record = typed.Records[i]; + string detailStatus = record.DetailStatus.HasValue + ? record.DetailStatus.Value.ToString(CultureInfo.InvariantCulture) + : "null"; + Console.WriteLine( + $"{prefix}_record[{i}]=status:{record.Status} detail:{detailStatus} quality:0x{record.Quality:X4} timestamp:{record.TimestampUtc:O} kind:0x{record.WireKind:X2} value:{FormatCallbackValue(record.Value)}"); + } + } + } + catch (Exception ex) when (ex is ArgumentException or FormatException) + { + Console.WriteLine($"{prefix}_parse_error={ex.Message}"); + } +} + +static string FormatCallbackValue(object? value) +{ + return value switch + { + null => "null", + DateTime timestamp => timestamp.ToString("O", CultureInfo.InvariantCulture), + IFormattable formattable => formattable.ToString(null, CultureInfo.InvariantCulture), + _ => value.ToString() ?? string.Empty, + }; +} + +static byte[] CreateComRegisteredCallbackObjRef() +{ + var callback = new NmxCallbackSink(); + callback.DataReceived += (_, message) => Console.WriteLine($"com_iunknown_callback_data size={message.Body.Length} prefix={HexPrefix(message.Body)}"); + callback.StatusReceived += (_, message) => Console.WriteLine($"com_iunknown_callback_status size={message.Body.Length} prefix={HexPrefix(message.Body)}"); + byte[] objref = ComObjRefProvider.MarshalIUnknownObjRef( + callback, + ComObjRefProvider.MarshalContextDifferentMachine); + NmxProcedureMetadata.INmxSvcCallback.TryWriteBytes(objref.AsSpan(8, 16)); + _ = GCHandle.Alloc(callback); + return objref; +} + +static byte[] CreateComRegisteredRealCallbackObjRef() +{ + var callback = new NmxCallbackSink(); + callback.DataReceived += (_, message) => Console.WriteLine($"com_real_callback_data size={message.Body.Length} prefix={HexPrefix(message.Body)}"); + callback.StatusReceived += (_, message) => Console.WriteLine($"com_real_callback_status size={message.Body.Length} prefix={HexPrefix(message.Body)}"); + byte[] objref = ComObjRefProvider.MarshalInterfaceObjRef( + callback, + NmxProcedureMetadata.INmxSvcCallback, + ComObjRefProvider.MarshalContextDifferentMachine); + _ = GCHandle.Alloc(callback); + return objref; +} + +static (string Host, int Port, Guid ServiceIpid) ResolveManagedService(object instance) +{ + byte[] buffer = ComObjRefProvider.MarshalIUnknownObjRef( + instance, + ComObjRefProvider.MarshalContextDifferentMachine); + var objRef = ComObjRef.Parse(buffer); + var exporter = new ObjectExporterClient(); + var oxidResponse = exporter.ResolveOxidWithManagedNtlmPacketIntegrity(objRef.Oxid); + var resolved = ObjectExporterMessages.ParseResolveOxidResult(oxidResponse.StubData.Span); + var endpoint = resolved.Bindings.First(binding => binding.TowerId == ObjectExporterMessages.ProtseqNcacnIpTcp); + string host = ParseBracketedHost(endpoint.Value); + int port = ParseBracketedPort(endpoint.Value); + + using var client = new DceRpcTcpClient(host, port); + client.Connect(); + client.BindWithManagedNtlmPacketIntegrity(RemUnknownMessages.IRemUnknown, versionMajor: 0, versionMinor: 0); + byte[] request = RemUnknownMessages.EncodeRemQueryInterfaceRequest( + objRef.Ipid, + NmxProcedureMetadata.INmxService2, + Guid.NewGuid()); + var response = client.CallBoundObject(resolved.RemUnknownIpid, RemUnknownMessages.RemQueryInterfaceOpnum, request); + var parsed = RemUnknownMessages.ParseRemQueryInterfaceResponse(response.StubData.Span); + if (parsed.Result is null || parsed.Result.HResult != 0 || parsed.ErrorCode != 0) + { + throw new InvalidOperationException($"RemQueryInterface failed: hresult=0x{parsed.Result?.HResult ?? -1:X8}, error=0x{parsed.ErrorCode:X8}."); + } + + return (host, port, parsed.Result.StandardObjectReference.Ipid); +} + +static string ParseBracketedHost(string binding) +{ + int open = binding.LastIndexOf('['); + if (open <= 0) + { + throw new FormatException($"Binding does not contain a bracketed host: {binding}"); + } + + return binding[..open]; +} + +static int ParseBracketedPort(string binding) +{ + int open = binding.LastIndexOf('['); + int close = binding.LastIndexOf(']'); + if (open < 0 || close <= open) + { + throw new FormatException($"Binding does not contain a bracketed port: {binding}"); + } + + return int.Parse(binding.AsSpan(open + 1, close - open - 1), CultureInfo.InvariantCulture); +} + +static byte[] ParseHex(string hex) +{ + string compact = string.Concat(hex.Where(static ch => !char.IsWhiteSpace(ch))); + if (compact.Length % 2 != 0) + { + throw new FormatException("Hex string must contain an even number of digits."); + } + + byte[] bytes = new byte[compact.Length / 2]; + for (int i = 0; i < bytes.Length; i++) + { + bytes[i] = byte.Parse(compact.AsSpan(i * 2, 2), NumberStyles.HexNumber, CultureInfo.InvariantCulture); + } + + return bytes; +} + +static byte[] ParseRequiredTransferBody(string[] args) +{ + string bodyHex = GetString(args, "--transfer-body-hex") + ?? throw new InvalidOperationException( + "TransferData probes require --transfer-body-hex with a complete 46-byte NMX envelope plus inner body."); + byte[] body = ParseHex(bodyHex); + if (body.Length == 0) + { + throw new ArgumentException("TransferData body cannot be empty."); + } + + NmxTransferEnvelopeTemplate.FromObserved(body); + if (body.Length == NmxTransferEnvelopeTemplate.HeaderLength) + { + throw new ArgumentException("TransferData body must include an inner message after the 46-byte envelope."); + } + + return body; +} diff --git a/src/MxNativeClient.Tests/MxNativeClient.Tests.csproj b/src/MxNativeClient.Tests/MxNativeClient.Tests.csproj new file mode 100644 index 0000000..3d8d62f --- /dev/null +++ b/src/MxNativeClient.Tests/MxNativeClient.Tests.csproj @@ -0,0 +1,13 @@ + + + + + + + Exe + net10.0-windows + enable + enable + x64 + + diff --git a/src/MxNativeClient.Tests/Program.cs b/src/MxNativeClient.Tests/Program.cs new file mode 100644 index 0000000..3f82aeb --- /dev/null +++ b/src/MxNativeClient.Tests/Program.cs @@ -0,0 +1,658 @@ +using MxNativeClient; +using MxNativeCodec; + +RunObjRefParseTest(); +RunOrpcStructureTests(); +RunObjectExporterMessageTests(); +RunNmxService2MessageTests(); +RunNmxSvcCallbackMessageTests(); +RunDceRpcAuthTrailerTests(); +RunRemUnknownMessageTests(); +RunDceRpcBindParseTest(); +RunDceRpcRequestParseTest(); +RunDceRpcResponseParseTest(); +await RunGalaxyRepositoryResolverTestAsync(); +await RunGalaxyRepositoryUserResolverTestAsync(); +RunManagedNmxService2ClientTransferBodyTests(); +RunCompatibilitySurfaceTests(); +RunRecoveryPolicyTests(); +RunOperationStatusTests(); + +Console.WriteLine("MxNativeClient protocol primitive tests passed."); + +static void RunObjRefParseTest() +{ + // Captured from: dotnet run MxNativeClient.Probe -- --dump-objref --objref-context=2 + byte[] prefix = FromHex( + "4d 45 4f 57 01 00 00 00 00 00 00 00 00 00 00 00 c0 00 00 00 00 00 00 46 " + + "00 00 00 00 01 00 00 00 c2 5b ab 3b b5 d2 f0 ea 53 46 0b 86 8b 5f 57 39 " + + "20 f8 00 00 78 36 00 00 33 3c 4c 10 66 e0 ac 8b 95 00 7f 00"); + + var objRef = ComObjRef.Parse(prefix); + AssertEqual("OBJREF signature", 0x574F454Du, objRef.Signature); + AssertEqual("OBJREF flags", 1u, objRef.Flags); + AssertEqual("OBJREF iid", new Guid("00000000-0000-0000-C000-000000000046"), objRef.Iid); + AssertEqual("OBJREF OXID", 0xEAF0D2B53BAB5BC2ul, objRef.Oxid); + AssertEqual("OBJREF OID", 0x39575F8B860B4653ul, objRef.Oid); + AssertEqual("OBJREF entries", (ushort)149, objRef.DualStringEntries); + + var std = StdObjRef.Parse(prefix.AsSpan(24, StdObjRef.EncodedLength)); + AssertEqual("STD OXID", objRef.Oxid, std.Oxid); + AssertEqual("STD OID", objRef.Oid, std.Oid); + AssertEqual("STD IPID", objRef.Ipid, std.Ipid); +} + +static void RunCompatibilitySurfaceTests() +{ + Type serverType = typeof(MxNativeCompatibilityServer); + AssertNotNull( + "compat Write2 object timestamp overload", + serverType.GetMethod( + nameof(MxNativeCompatibilityServer.Write2), + [ + typeof(int), + typeof(int), + typeof(object), + typeof(object), + typeof(int), + ])); + AssertNotNull( + "compat WriteSecured2 object timestamp overload", + serverType.GetMethod( + nameof(MxNativeCompatibilityServer.WriteSecured2), + [ + typeof(int), + typeof(int), + typeof(int), + typeof(int), + typeof(object), + typeof(object), + ])); + AssertNotNull( + "compat recover method", + serverType.GetMethod(nameof(MxNativeCompatibilityServer.RecoverConnection), [typeof(int)])); + AssertNotNull( + "compat async recover method", + serverType.GetMethod( + nameof(MxNativeCompatibilityServer.RecoverConnectionAsync), + [typeof(int), typeof(MxNativeRecoveryPolicy), typeof(CancellationToken)])); + AssertNotNull("compat data-change event", serverType.GetEvent(nameof(MxNativeCompatibilityServer.DataChanged))); + AssertNotNull("compat buffered data-change event", serverType.GetEvent(nameof(MxNativeCompatibilityServer.BufferedDataChanged))); + AssertNotNull("compat write-complete event", serverType.GetEvent(nameof(MxNativeCompatibilityServer.WriteCompleted))); + AssertNotNull("compat operation-complete event", serverType.GetEvent(nameof(MxNativeCompatibilityServer.OperationCompleted))); + AssertNotNull("compat recovery-attempt event", serverType.GetEvent(nameof(MxNativeCompatibilityServer.RecoveryAttemptStarted))); + AssertNotNull("compat recovery-failed event", serverType.GetEvent(nameof(MxNativeCompatibilityServer.RecoveryAttemptFailed))); + AssertNotNull("compat recovery-completed event", serverType.GetEvent(nameof(MxNativeCompatibilityServer.RecoveryCompleted))); + AssertNotNull( + "session recover method", + typeof(MxNativeSession).GetMethod(nameof(MxNativeSession.RecoverConnection), Type.EmptyTypes)); + AssertNotNull( + "session async recover method", + typeof(MxNativeSession).GetMethod( + nameof(MxNativeSession.RecoverConnectionAsync), + [typeof(MxNativeRecoveryPolicy), typeof(CancellationToken)])); + AssertNotNull("session recovery-attempt event", typeof(MxNativeSession).GetEvent(nameof(MxNativeSession.RecoveryAttemptStarted))); + AssertNotNull("session recovery-failed event", typeof(MxNativeSession).GetEvent(nameof(MxNativeSession.RecoveryAttemptFailed))); + AssertNotNull("session recovery-completed event", typeof(MxNativeSession).GetEvent(nameof(MxNativeSession.RecoveryCompleted))); + AssertNotNull( + "callback recovery marker", + typeof(MxNativeCallbackEvent).GetProperty(nameof(MxNativeCallbackEvent.IsDuringRecovery))); + AssertNotNull( + "operation status recovery marker", + typeof(MxNativeOperationStatusEvent).GetProperty(nameof(MxNativeOperationStatusEvent.IsDuringRecovery))); + AssertNotNull( + "reference registration recovery marker", + typeof(MxNativeReferenceRegistrationEvent).GetProperty(nameof(MxNativeReferenceRegistrationEvent.IsDuringRecovery))); + AssertNotNull( + "unparsed callback recovery marker", + typeof(MxNativeUnparsedCallbackEvent).GetProperty(nameof(MxNativeUnparsedCallbackEvent.IsDuringRecovery))); + AssertNotNull( + "compat data-change recovery marker", + typeof(MxNativeDataChangeEvent).GetProperty(nameof(MxNativeDataChangeEvent.IsDuringRecovery))); + AssertNotNull( + "compat write-complete recovery marker", + typeof(MxNativeWriteCompleteEvent).GetProperty(nameof(MxNativeWriteCompleteEvent.IsDuringRecovery))); + AssertNotNull( + "compat buffered data-change recovery marker", + typeof(MxNativeBufferedDataChangeEvent).GetProperty(nameof(MxNativeBufferedDataChangeEvent.IsDuringRecovery))); + AssertNotNull( + "managed nmx heartbeat method", + typeof(ManagedNmxService2Client).GetMethod( + nameof(ManagedNmxService2Client.SetHeartbeatSendInterval), + [typeof(int), typeof(int)])); +} + +static void RunRecoveryPolicyTests() +{ + new MxNativeRecoveryPolicy { MaxAttempts = 1, Delay = TimeSpan.Zero }.Validate(); + AssertThrows( + "recovery attempts validation", + () => new MxNativeRecoveryPolicy { MaxAttempts = 0 }.Validate()); + AssertThrows( + "recovery delay validation", + () => new MxNativeRecoveryPolicy { Delay = TimeSpan.FromMilliseconds(-1) }.Validate()); +} + +static void RunOperationStatusTests() +{ + AssertEqual("completion-only 00 parses", true, NmxOperationStatusMessage.TryParseInner([0x00], out var completionOk)); + AssertEqual("completion-only format", NmxOperationStatusFormat.CompletionOnly, completionOk.Format); + AssertEqual("completion-only 00 code", (byte)0x00, completionOk.CompletionCode); + AssertEqual("completion-only not mxaccess write complete", false, completionOk.IsMxAccessWriteComplete); + AssertEqual("completion-only 00 success", (short)0, completionOk.Status.Success); + AssertEqual("completion-only 00 category", MxStatusCategory.Unknown, completionOk.Status.Category); + AssertEqual("completion-only 00 detail", (short)0, completionOk.Status.Detail); + + AssertEqual("completion-only 41 parses", true, NmxOperationStatusMessage.TryParseInner([0x41], out var completionBadType)); + AssertEqual("completion-only 41 detail", (short)0x41, completionBadType.Status.Detail); + AssertEqual("completion-only 41 category", MxStatusCategory.Unknown, completionBadType.Status.Category); + AssertEqual("completion-only 41 not mxaccess write complete", false, completionBadType.IsMxAccessWriteComplete); + + AssertEqual("completion-only ef parses", true, NmxOperationStatusMessage.TryParseInner([0xef], out var completionInternationalized)); + AssertEqual("completion-only ef detail", (short)0xef, completionInternationalized.Status.Detail); + AssertEqual("completion-only ef not mxaccess write complete", false, completionInternationalized.IsMxAccessWriteComplete); + + AssertEqual("status-word write complete parses", true, NmxOperationStatusMessage.TryParseInner([0x00, 0x00, 0x50, 0x80, 0x00], out var statusWord)); + AssertEqual("status-word format", NmxOperationStatusFormat.StatusWord, statusWord.Format); + AssertEqual("status-word code", (ushort)0x8050, statusWord.StatusCode); + AssertEqual("status-word mxaccess write complete", true, statusWord.IsMxAccessWriteComplete); + AssertEqual("status-word status", MxStatus.WriteCompleteOk, statusWord.Status); +} + +static void AssertThrows(string name, Action action) + where TException : Exception +{ + try + { + action(); + } + catch (TException) + { + return; + } + + throw new InvalidOperationException($"{name}: expected {typeof(TException).Name}."); +} + +static void AssertNotNull(string name, object? actual) +{ + if (actual is null) + { + throw new InvalidOperationException($"{name}: expected non-null value."); + } +} + +static void RunOrpcStructureTests() +{ + var cid = new Guid("01234567-89AB-CDEF-0123-456789ABCDEF"); + var thisCall = OrpcThis.Create(cid); + byte[] encodedThis = thisCall.Encode(); + AssertEqual("ORPCTHIS length", OrpcThis.EncodedLengthWithoutExtensions, encodedThis.Length); + AssertEqual("ORPCTHIS version", ComVersion.Version57, OrpcThis.Parse(encodedThis).Version); + AssertEqual("ORPCTHIS cid", cid, OrpcThis.Parse(encodedThis).Cid); + + var thatCall = new OrpcThat(0, 0); + byte[] encodedThat = thatCall.Encode(); + AssertEqual("ORPCTHAT length", OrpcThat.EncodedLengthWithoutExtensions, encodedThat.Length); + AssertEqual("ORPCTHAT flags", 0u, OrpcThat.Parse(encodedThat).Flags); + + byte[] objRef = FromHex( + "4d 45 4f 57 01 00 00 00 00 00 00 00 00 00 00 00 c0 00 00 00 00 00 00 46 " + + "00 00 00 00 01 00 00 00 c2 5b ab 3b b5 d2 f0 ea 53 46 0b 86 8b 5f 57 39 " + + "20 f8 00 00 78 36 00 00 33 3c 4c 10 66 e0 ac 8b 95 00 7f 00"); + var mip = new MInterfacePointer(objRef); + AssertBytes("MInterfacePointer payload", objRef, MInterfacePointer.Parse(mip.Encode()).ObjRefBytes); +} + +static void RunRemUnknownMessageTests() +{ + var ipid = new Guid("00007c14-3678-0000-fa76-a0a5cd73ac85"); + var iid = NmxProcedureMetadata.INmxService2; + var cid = new Guid("aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"); + byte[] request = RemUnknownMessages.EncodeRemQueryInterfaceRequest(ipid, iid, cid, publicRefs: 5); + + AssertEqual("RemQI length", 76, request.Length); + AssertEqual("RemQI ORPCTHIS CID", cid, OrpcThis.Parse(request).Cid); + AssertEqual("RemQI source IPID", ipid, new Guid(request.AsSpan(OrpcThis.EncodedLengthWithoutExtensions, 16))); + AssertEqual("RemQI refs", 5u, ReadUInt32(request, 48)); + AssertEqual("RemQI iid count", (ushort)1, ReadUInt16(request, 52)); + AssertEqual("RemQI conformant max", 1u, ReadUInt32(request, 56)); + AssertEqual("RemQI requested IID", iid, new Guid(request.AsSpan(60, 16))); + + var std = new StdObjRef(0, 5, 0x0102030405060708, 0x1112131415161718, ipid); + byte[] resultBytes = new byte[RemQiResult.EncodedLength]; + std.Encode().CopyTo(resultBytes.AsSpan(8)); + var result = RemQiResult.Parse(resultBytes); + AssertEqual("RemQI result hr", 0, result.HResult); + AssertEqual("RemQI result ipid", ipid, result.StandardObjectReference.Ipid); +} + +static void RunObjectExporterMessageTests() +{ + byte[] expected = FromHex("c2 5b ab 3b b5 d2 f0 ea 01 00 00 00 01 00 00 00 07 00 00 00"); + byte[] actual = ObjectExporterMessages.EncodeResolveOxidRequest( + 0xEAF0D2B53BAB5BC2, + [ObjectExporterMessages.ProtseqNcacnIpTcp]); + + AssertBytes("ResolveOxid request", expected, actual); + + var failure = ObjectExporterMessages.ParseResolveOxidFailure(FromHex( + "00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00")); + AssertEqual("ResolveOxid unauth status", 5u, failure.ErrorStatus); +} + +static void RunNmxService2MessageTests() +{ + var cid = new Guid("11111111-2222-3333-4444-555555555555"); + var orpcThis = OrpcThis.Create(cid); + + byte[] getVersion = NmxService2Messages.EncodeGetPartnerVersionRequest(orpcThis, 1, 2, 0x7ffd); + AssertEqual("GetPartnerVersion opnum", (ushort)11, NmxService2Messages.GetPartnerVersionOpnum); + AssertEqual("GetPartnerVersion request length", 44, getVersion.Length); + AssertEqual("GetPartnerVersion cid", cid, OrpcThis.Parse(getVersion).Cid); + AssertEqual("GetPartnerVersion galaxy", 1u, ReadUInt32(getVersion, 32)); + AssertEqual("GetPartnerVersion platform", 2u, ReadUInt32(getVersion, 36)); + AssertEqual("GetPartnerVersion engine", 0x7ffdu, ReadUInt32(getVersion, 40)); + + byte[] response = FromHex("00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00"); + var parsed = NmxService2Messages.ParseGetPartnerVersionResponse(response); + AssertEqual("GetPartnerVersion response version", 6, parsed.PartnerVersion); + AssertEqual("GetPartnerVersion response hr", 0, parsed.HResult); + + byte[] connect = NmxService2Messages.EncodeConnectRequest(orpcThis, 0x7fee, 1, 1, 0x7ffd); + AssertEqual("Connect request length", 48, connect.Length); + AssertEqual("Connect local engine", 0x7feeu, ReadUInt32(connect, 32)); + + byte[] subscriber = NmxService2Messages.EncodeSubscriberEngineRequest(orpcThis, 0x7fee, 1, 1, 0x7ffd); + AssertEqual("Subscriber request length", 48, subscriber.Length); + AssertEqual("Subscriber local engine", 0x7feeu, ReadUInt32(subscriber, 32)); + AssertEqual("Subscriber remote engine", 0x7ffdu, ReadUInt32(subscriber, 44)); + + byte[] unregister = NmxService2Messages.EncodeUnregisterEngineRequest(orpcThis, 0x7fee); + AssertEqual("UnRegisterEngine request length", 36, unregister.Length); + AssertEqual("UnRegisterEngine local engine", 0x7feeu, ReadUInt32(unregister, 32)); + + byte[] heartbeat = NmxService2Messages.EncodeSetHeartbeatSendIntervalRequest(orpcThis, 5, 3); + AssertEqual("Heartbeat request length", 40, heartbeat.Length); + AssertEqual("Heartbeat ticks", 5u, ReadUInt32(heartbeat, 32)); + AssertEqual("Heartbeat misses", 3u, ReadUInt32(heartbeat, 36)); + + byte[] transferBody = FromHex( + "01 00 00 00 00 00 00 00 00 00 9e 91 04 00 01 00 00 00 " + + "01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 " + + "00 00 02 02 00 00 30 75 00 00"); + byte[] transfer = NmxService2Messages.EncodeTransferDataRequest(orpcThis, 1, 1, 2, transferBody); + AssertEqual("TransferData opnum", (ushort)6, NmxService2Messages.TransferDataOpnum); + AssertEqual("TransferData request length", 100, transfer.Length); + AssertEqual("TransferData galaxy", 1u, ReadUInt32(transfer, 32)); + AssertEqual("TransferData platform", 1u, ReadUInt32(transfer, 36)); + AssertEqual("TransferData engine", 2u, ReadUInt32(transfer, 40)); + AssertEqual("TransferData lSize", 46u, ReadUInt32(transfer, 44)); + AssertEqual("TransferData max count", 46u, ReadUInt32(transfer, 48)); + AssertBytes("TransferData body", transferBody, transfer.AsSpan(52, transferBody.Length)); + + var hresult = NmxService2Messages.ParseHResultResponse(FromHex("00 00 00 00 00 00 00 00 00 00 00 00")); + AssertEqual("HRESULT response", 0, hresult.HResult); + + byte[] bstr = NmxService2Messages.EncodeBstrUserMarshal("NmxComProxyWire5"); + AssertBytes( + "BSTR user marshal", + FromHex( + "10 00 00 00 20 00 00 00 10 00 00 00 4e 00 6d 00 " + + "78 00 43 00 6f 00 6d 00 50 00 72 00 6f 00 78 00 " + + "79 00 57 00 69 00 72 00 65 00 35 00"), + bstr); + + byte[] register = NmxService2Messages.EncodeRegisterEngine2Request(orpcThis, 0x7104, "NmxComProxyWire5", 6); + AssertEqual("RegisterEngine2 opnum", (ushort)10, NmxService2Messages.RegisterEngine2Opnum); + AssertEqual("RegisterEngine2 null callback length", 92, register.Length); + AssertEqual("RegisterEngine2 engine", 0x7104u, ReadUInt32(register, 32)); + AssertEqual("RegisterEngine2 BSTR marker", 0x72657355u, ReadUInt32(register, 36)); + AssertBytes("RegisterEngine2 BSTR", bstr, register.AsSpan(40, bstr.Length)); + AssertEqual("RegisterEngine2 version", 6u, ReadUInt32(register, 40 + bstr.Length)); + AssertEqual("RegisterEngine2 null callback", 0u, ReadUInt32(register, 44 + bstr.Length)); + + byte[] oddRegister = NmxService2Messages.EncodeRegisterEngine2Request(orpcThis, 0x7200, "MxManagedNullCallback", 6); + AssertEqual("RegisterEngine2 odd-name length", 104, oddRegister.Length); + AssertEqual("RegisterEngine2 odd-name marker", 0x72657355u, ReadUInt32(oddRegister, 36)); + AssertEqual("RegisterEngine2 odd-name version", 6u, ReadUInt32(oddRegister, 96)); + AssertEqual("RegisterEngine2 odd-name null callback", 0u, ReadUInt32(oddRegister, 100)); + + byte[] compactObjRef = new byte[68]; + byte[] callbackRegister = NmxService2Messages.EncodeRegisterEngine2Request(orpcThis, 0x7108, "NmxCallbackX86", 6, compactObjRef); + AssertEqual("RegisterEngine2 callback marker", 0x00020000u, ReadUInt32(callbackRegister, 84)); + AssertEqual("RegisterEngine2 callback size a", 68u, ReadUInt32(callbackRegister, 88)); + AssertEqual("RegisterEngine2 callback size b", 68u, ReadUInt32(callbackRegister, 92)); +} + +static void RunNmxSvcCallbackMessageTests() +{ + var cid = new Guid("22222222-3333-4444-5555-666666666666"); + byte[] body = FromHex("01 02 03 04 05"); + byte[] request = new byte[OrpcThis.EncodedLengthWithoutExtensions + 8 + body.Length + 3]; + OrpcThis.Create(cid).Encode().CopyTo(request.AsSpan()); + WriteUInt32(request, 32, (uint)body.Length); + WriteUInt32(request, 36, (uint)body.Length); + body.CopyTo(request.AsSpan(40)); + + var parsed = NmxSvcCallbackMessages.ParseCallbackRequest(request); + AssertEqual("callback iid", NmxProcedureMetadata.INmxSvcCallback, NmxSvcCallbackMessages.InterfaceId); + AssertEqual("callback data opnum", (ushort)3, NmxSvcCallbackMessages.DataReceivedOpnum); + AssertEqual("callback status opnum", (ushort)4, NmxSvcCallbackMessages.StatusReceivedOpnum); + AssertEqual("callback cid", cid, parsed.OrpcThis.Cid); + AssertBytes("callback body", body, parsed.Body); + + byte[] response = NmxSvcCallbackMessages.EncodeCallbackResponse(0); + AssertEqual("callback response length", 12, response.Length); + AssertEqual("callback response hr", 0u, ReadUInt32(response, 8)); +} + +static void RunDceRpcAuthTrailerTests() +{ + var trailer = new DceRpcAuthTrailer(DceRpcAuthType.WinNt, DceRpcAuthLevel.Connect, 0, 0, 79231); + byte[] token = [0x4e, 0x54, 0x4c, 0x4d]; + var bind = new DceRpcBindPdu( + new DceRpcPduHeader(5, 0, DceRpcPacketType.Bind, 0x03, 0x10, 0, 0, 1), + 4280, + 4280, + 0, + [ + new DceRpcPresentationContext( + 0, + new DceRpcSyntaxId(ObjectExporterMessages.IObjectExporter, 0, 0), + [DceRpcSyntaxId.Ndr20]), + ]); + + byte[] pdu = bind.EncodeWithAuth(trailer, token); + var header = DceRpcPduHeader.Parse(pdu); + AssertEqual("auth bind token len", (ushort)4, header.AuthLength); + var auth = DceRpcBindPdu.ReadAuthValue(pdu); + AssertEqual("auth trailer type", DceRpcAuthType.WinNt, auth.Trailer.AuthType); + AssertEqual("auth trailer level", DceRpcAuthLevel.Connect, auth.Trailer.AuthLevel); + AssertBytes("auth token", token, auth.Token.Span); +} + +static void RunDceRpcBindParseTest() +{ + byte[] bind = FromHex( + "05 00 0b 03 10 00 00 00 74 00 00 00 02 00 00 00 d0 16 d0 16 00 00 00 00 " + + "02 00 00 00 00 00 01 00 df 90 0c 4e 9d e3 64 41 a4 21 ac e8 94 84 c6 02 " + + "01 00 00 00 04 5d 88 8a eb 1c c9 11 9f e8 08 00 2b 10 48 60 02 00 00 00 " + + "01 00 01 00 df 90 0c 4e 9d e3 64 41 a4 21 ac e8 94 84 c6 02 01 00 00 00 " + + "2c 1c b7 6c 12 98 40 45 03 00 00 00 00 00 00 00 01 00 00 00"); + + var pdu = DceRpcBindPdu.Parse(bind); + AssertEqual("bind type", DceRpcPacketType.Bind, pdu.Header.PacketType); + AssertEqual("bind frag", (ushort)116, pdu.Header.FragmentLength); + AssertEqual("bind call", 2u, pdu.Header.CallId); + AssertEqual("bind contexts", 2, pdu.PresentationContexts.Count); + AssertEqual("bind context0", (ushort)0, pdu.PresentationContexts[0].ContextId); + AssertEqual("bind context0 syntax", new Guid("4E0C90DF-E39D-4164-A421-ACE89484C602"), pdu.PresentationContexts[0].AbstractSyntax.Uuid); + + byte[] encoded = pdu.Encode(); + AssertBytes("bind roundtrip", bind, encoded); +} + +static void RunDceRpcRequestParseTest() +{ + byte[] request = FromHex( + "05 00 00 03 10 00 00 00 28 00 00 00 02 00 00 00 10 00 00 00 00 00 00 00 " + + "8c 9e 28 85 62 f2 97 47 84 df 3e 4b a6 0e 98 7f"); + + var pdu = DceRpcRequestPdu.Parse(request); + AssertEqual("request type", DceRpcPacketType.Request, pdu.Header.PacketType); + AssertEqual("request call", 2u, pdu.Header.CallId); + AssertEqual("request context", (ushort)0, pdu.ContextId); + AssertEqual("request opnum", (ushort)0, pdu.Opnum); + AssertEqual("request stub length", 16, pdu.StubData.Length); +} + +static void RunDceRpcResponseParseTest() +{ + byte[] response = FromHex( + "05 00 02 03 10 00 00 00 2c 00 00 00 02 00 00 00 14 00 00 00 00 00 00 00 " + + "00 00 00 00 e5 96 74 5a a4 eb c2 4f b6 13 bf 8a c5 a8 3b 6e"); + + var pdu = DceRpcResponsePdu.Parse(response); + AssertEqual("response type", DceRpcPacketType.Response, pdu.Header.PacketType); + AssertEqual("response call", 2u, pdu.Header.CallId); + AssertEqual("response context", (ushort)0, pdu.ContextId); + AssertEqual("response stub length", 20, pdu.StubData.Length); +} + +static async Task RunGalaxyRepositoryResolverTestAsync() +{ + var resolver = new GalaxyRepositoryTagResolver(); + GalaxyTagMetadata tag = await resolver.ResolveAsync("TestChildObject.TestInt"); + + AssertEqual("GR object", "TestChildObject", tag.ObjectTagName); + AssertEqual("GR attribute", "TestInt", tag.AttributeName); + AssertEqual("GR primitive", (string?)null, tag.PrimitiveName); + AssertEqual("GR platform", (ushort)1, tag.PlatformId); + AssertEqual("GR engine", (ushort)2, tag.EngineId); + AssertEqual("GR object id", (ushort)5, tag.ObjectId); + AssertEqual("GR primitive id", (short)2, tag.PrimitiveId); + AssertEqual("GR attribute id", (short)155, tag.AttributeId); + AssertEqual("GR property id", (short)10, tag.PropertyId); + AssertEqual("GR data type", (short)2, tag.MxDataType); + AssertEqual("GR is array", false, tag.IsArray); + AssertEqual("GR source", "dynamic", tag.AttributeSource); + AssertEqual("GR value kind", MxValueKind.Int32, tag.ToValueKind()); + AssertEqual("GR supported value kind", true, tag.IsSupportedValueKind); + AssertEqual("GR try value kind", true, tag.TryGetValueKind(out var testIntKind)); + AssertEqual("GR try value kind result", MxValueKind.Int32, testIntKind); + + byte[] expected = FromHex("01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00"); + AssertBytes("GR synthesized handle", expected, tag.ToReferenceHandle().Encode()); + + GalaxyTagMetadata bufferedProperty = await resolver.ResolveAsync("TestChildObject.TestInt.property(buffer)"); + AssertEqual("GR property(buffer) base attribute", "TestInt", bufferedProperty.AttributeName); + AssertEqual("GR property(buffer) id", GalaxyTagMetadata.BufferPropertyId, bufferedProperty.PropertyId); + AssertEqual("GR property(buffer) marker", true, bufferedProperty.IsBufferProperty); + AssertBytes( + "GR property(buffer) native literal handle", + FromHex("01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 32 00 3e da 00 00"), + bufferedProperty.ToReferenceHandle().Encode()); + + GalaxyTagMetadata shortDesc = await resolver.ResolveAsync("TestChildObject.ShortDesc"); + AssertEqual("GR ShortDesc category-independent property", (short)10, shortDesc.PropertyId); + AssertBytes( + "GR ShortDesc native value handle", + FromHex("01 00 01 00 02 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00"), + shortDesc.ToReferenceHandle().Encode()); + + GalaxyTagMetadata secured = await resolver.ResolveAsync("TestMachine_001.ProtectedValue"); + AssertEqual("GR secured object", "TestMachine_001", secured.ObjectTagName); + AssertEqual("GR secured attribute", "ProtectedValue", secured.AttributeName); + AssertEqual("GR secured object id", (ushort)6, secured.ObjectId); + AssertEqual("GR secured attr id", (short)166, secured.AttributeId); + AssertEqual("GR secured class", (short)2, secured.SecurityClassification); + AssertEqual("GR secured kind", MxValueKind.Boolean, secured.ToValueKind()); + AssertBytes( + "GR secured handle", + FromHex("01 00 01 00 02 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00"), + secured.ToReferenceHandle().Encode()); + + GalaxyTagMetadata verified = await resolver.ResolveAsync("TestMachine_001.ProtectedValue1"); + AssertEqual("GR verified attr id", (short)167, verified.AttributeId); + AssertEqual("GR verified class", (short)3, verified.SecurityClassification); + AssertBytes( + "GR verified handle", + FromHex("01 00 01 00 02 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00"), + verified.ToReferenceHandle().Encode()); + + GalaxyTagMetadata elapsed = await resolver.ResolveAsync("TestMachine_001.TestAlarm001.Alarm.TimeDeadband"); + AssertEqual("GR dotted primitive object", "TestMachine_001", elapsed.ObjectTagName); + AssertEqual("GR dotted primitive", "TestAlarm001", elapsed.PrimitiveName); + AssertEqual("GR dotted primitive attribute", "Alarm.TimeDeadband", elapsed.AttributeName); + AssertEqual("GR dotted primitive data type", (short)MxDataType.ElapsedTime, elapsed.MxDataType); + AssertEqual("GR dotted primitive supported", false, elapsed.IsSupportedValueKind); + var elapsedProjection = elapsed.ProjectWriteValue(TimeSpan.FromSeconds(1)); + AssertEqual("GR elapsed projection kind", MxValueKind.Int32, elapsedProjection.ValueKind); + AssertEqual("GR elapsed projection value", 1000, elapsedProjection.Value); + + GalaxyTagMetadata internationalized = await resolver.ResolveAsync("DevAppEngine.Scheduler._EngUnitsMB"); + AssertEqual("GR internationalized primitive", "Scheduler", internationalized.PrimitiveName); + AssertEqual("GR internationalized attribute", "_EngUnitsMB", internationalized.AttributeName); + AssertEqual("GR internationalized data type", (short)MxDataType.InternationalizedString, internationalized.MxDataType); + AssertEqual("GR internationalized supported", false, internationalized.IsSupportedValueKind); + var internationalizedProjection = internationalized.ProjectWriteValue("MB"); + AssertEqual("GR internationalized projection kind", MxValueKind.String, internationalizedProjection.ValueKind); + AssertEqual("GR internationalized projection value", "MB", internationalizedProjection.Value); + + IReadOnlyList browsed = await resolver.BrowseAsync("TestChildObject", "Test%", maxRows: 25); + AssertEqual("GR browse includes TestInt", true, browsed.Any(item => item.ObjectTagName == "TestChildObject" && item.AttributeName == "TestInt")); + AssertEqual("GR browse max respected", true, browsed.Count <= 25); +} + +static async Task RunGalaxyRepositoryUserResolverTestAsync() +{ + var resolver = new GalaxyRepositoryUserResolver(); + + GalaxyUserProfile administrator = await resolver.ResolveByNameAsync("Administrator"); + AssertEqual("GR user name", "Administrator", administrator.UserProfileName); + AssertEqual("GR user id", 2, administrator.UserProfileId); + AssertEqual("GR user guid", new Guid("9222FBBA-53F4-457E-8B37-C93A9A250B4A"), administrator.UserGuid); + AssertEqual("GR user group", "Default", administrator.DefaultSecurityGroup); + AssertEqual("GR user role administrator", true, administrator.Roles.Contains("Administrator")); + AssertEqual("GR user role default", true, administrator.Roles.Contains("Default")); + AssertEqual( + "GR user guid to profile id", + administrator.UserProfileId, + await resolver.ResolveUserProfileIdByGuidAsync(administrator.UserGuid)); +} + +static void RunManagedNmxService2ClientTransferBodyTests() +{ + var tag = new GalaxyTagMetadata( + ObjectTagName: "TestChildObject", + AttributeName: "ShortDesc", + PrimitiveName: null, + PlatformId: 1, + EngineId: 2, + ObjectId: 5, + PrimitiveId: 2, + AttributeId: 101, + PropertyId: 10, + MxDataType: (short)MxDataType.InternationalizedString, + IsArray: false, + SecurityClassification: 1, + AttributeSource: "dynamic"); + + byte[] writeTransfer = ManagedNmxService2Client.EncodeWriteTransferBody( + localEngineId: 0x7ffa, + tag, + "hello-native", + writeIndex: 1, + clientToken: 0x0bff6894); + var writeEnvelope = NmxTransferEnvelope.Parse(writeTransfer); + AssertEqual("client write transfer kind", NmxTransferMessageKind.Write, writeEnvelope.MessageKind); + AssertEqual("client write target engine", 2, writeEnvelope.TargetEngineId); + AssertEqual("client write command", NmxWriteMessage.Command, writeEnvelope.InnerBody.Span[0]); + AssertEqual("client write value kind", NmxWriteMessage.GetWireKind(MxValueKind.String), writeEnvelope.InnerBody.Span[NmxWriteMessage.KindOffset]); + AssertBytes( + "client write native ShortDesc body", + FromHex("37 01 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 05 1e 00 00 00 1a 00 00 00 68 00 65 00 6c 00 6c 00 6f 00 2d 00 6e 00 61 00 74 00 69 00 76 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 94 68 ff 0b 01 00 00 00"), + writeEnvelope.InnerBody.Span); + + Guid correlationId = new("cd9ccac0-6532-46b0-a585-a583b2e77a5d"); + byte[] adviseTransfer = ManagedNmxService2Client.EncodeAdviseSupervisoryTransferBody( + localEngineId: 0x7ffb, + tag, + correlationId); + var adviseEnvelope = NmxTransferEnvelope.Parse(adviseTransfer); + AssertEqual("client advise transfer kind", NmxTransferMessageKind.ItemControl, adviseEnvelope.MessageKind); + var advise = NmxItemControlMessage.Parse(adviseEnvelope.InnerBody.Span); + AssertEqual("client advise command", NmxItemControlCommand.AdviseSupervisory, advise.Command); + AssertEqual("client advise correlation", correlationId, advise.ItemCorrelationId); + AssertEqual("client advise property", (short)10, advise.PropertyId); + + AssertEqual( + "compat suppress empty internationalized string", + true, + MxNativeCompatibilityServer.ShouldSuppressCompatibilityDataChange(tag, string.Empty)); + AssertEqual( + "compat keep populated internationalized string", + false, + MxNativeCompatibilityServer.ShouldSuppressCompatibilityDataChange(tag, "populated")); + AssertEqual( + "compat keep normal empty string", + false, + MxNativeCompatibilityServer.ShouldSuppressCompatibilityDataChange(tag with { MxDataType = (short)MxDataType.String }, string.Empty)); + + var securedTag = new GalaxyTagMetadata( + ObjectTagName: "TestMachine_001", + AttributeName: "ProtectedValue", + PrimitiveName: null, + PlatformId: 1, + EngineId: 2, + ObjectId: 6, + PrimitiveId: 2, + AttributeId: 166, + PropertyId: 10, + MxDataType: (short)MxDataType.Boolean, + IsArray: false, + SecurityClassification: 2, + AttributeSource: "dynamic"); + byte[] securedTransfer = ManagedNmxService2Client.EncodeWriteSecured2TransferBody( + localEngineId: 0x7ffa, + securedTag, + true, + new DateTime(2026, 4, 25, 8, 30, 0), + "MxManagedSecured2", + currentUserId: 1, + verifierUserId: 0); + var securedEnvelope = NmxTransferEnvelope.Parse(securedTransfer); + AssertEqual("client secured2 transfer kind", NmxTransferMessageKind.Write, securedEnvelope.MessageKind); + AssertEqual("client secured2 command", NmxSecuredWrite2Message.Command, securedEnvelope.InnerBody.Span[0]); + AssertEqual("client secured2 bool kind", NmxWriteMessage.GetWireKind(MxValueKind.Boolean), securedEnvelope.InnerBody.Span[NmxWriteMessage.KindOffset]); +} + +static byte[] FromHex(string hex) +{ + string[] parts = hex.Split(' ', StringSplitOptions.RemoveEmptyEntries); + byte[] bytes = new byte[parts.Length]; + for (int i = 0; i < parts.Length; i++) + { + bytes[i] = Convert.ToByte(parts[i], 16); + } + + return bytes; +} + +static ushort ReadUInt16(ReadOnlySpan buffer, int offset) +{ + return (ushort)(buffer[offset] | (buffer[offset + 1] << 8)); +} + +static uint ReadUInt32(ReadOnlySpan buffer, int offset) +{ + return (uint)(buffer[offset] + | (buffer[offset + 1] << 8) + | (buffer[offset + 2] << 16) + | (buffer[offset + 3] << 24)); +} + +static void WriteUInt32(Span buffer, int offset, uint value) +{ + buffer[offset] = (byte)value; + buffer[offset + 1] = (byte)(value >> 8); + buffer[offset + 2] = (byte)(value >> 16); + buffer[offset + 3] = (byte)(value >> 24); +} + +static void AssertEqual(string name, T expected, T actual) +{ + if (!EqualityComparer.Default.Equals(expected, actual)) + { + throw new InvalidOperationException($"{name}: expected {expected}, got {actual}."); + } +} + +static void AssertBytes(string name, ReadOnlySpan expected, ReadOnlySpan actual) +{ + if (!expected.SequenceEqual(actual)) + { + throw new InvalidOperationException($"{name}: byte mismatch."); + } +} diff --git a/src/MxNativeClient/ComObjRef.cs b/src/MxNativeClient/ComObjRef.cs new file mode 100644 index 0000000..926fd62 --- /dev/null +++ b/src/MxNativeClient/ComObjRef.cs @@ -0,0 +1,145 @@ +using System.Globalization; + +namespace MxNativeClient; + +public sealed record ComObjRef( + uint Signature, + uint Flags, + Guid Iid, + uint StandardFlags, + uint PublicRefs, + ulong Oxid, + ulong Oid, + Guid Ipid, + ushort DualStringEntries, + ushort DualStringSecurityOffset, + IReadOnlyList DualStringEntriesDecoded) +{ + public static ComObjRef Parse(ReadOnlySpan buffer) + { + if (buffer.Length < 68) + { + throw new ArgumentException("OBJREF buffer is too short.", nameof(buffer)); + } + + ushort dualStringEntries = ReadUInt16(buffer, 64); + ushort securityOffset = ReadUInt16(buffer, 66); + + return new ComObjRef( + Signature: ReadUInt32(buffer, 0), + Flags: ReadUInt32(buffer, 4), + Iid: new Guid(buffer.Slice(8, 16)), + StandardFlags: ReadUInt32(buffer, 24), + PublicRefs: ReadUInt32(buffer, 28), + Oxid: ReadUInt64(buffer, 32), + Oid: ReadUInt64(buffer, 40), + Ipid: new Guid(buffer.Slice(48, 16)), + DualStringEntries: dualStringEntries, + DualStringSecurityOffset: securityOffset, + DualStringEntriesDecoded: DecodeDualStringArray(buffer[68..], dualStringEntries, securityOffset)); + } + + public IEnumerable ToDiagnosticLines() + { + yield return $"objref_signature=0x{Signature:X8}"; + yield return $"objref_flags=0x{Flags:X8}"; + yield return $"objref_iid={Iid}"; + yield return $"std_flags=0x{StandardFlags:X8}"; + yield return $"std_public_refs={PublicRefs}"; + yield return $"std_oxid=0x{Oxid:X16}"; + yield return $"std_oid=0x{Oid:X16}"; + yield return $"std_ipid={Ipid}"; + yield return $"dual_string_entries={DualStringEntries}"; + yield return $"dual_string_security_offset={DualStringSecurityOffset}"; + yield return $"dual_strings={string.Join("|", DualStringEntriesDecoded.Select(static entry => entry.ToDiagnosticString()))}"; + } + + private static IReadOnlyList DecodeDualStringArray(ReadOnlySpan data, ushort entries, ushort securityOffset) + { + int count = Math.Min(entries, data.Length / 2); + var strings = new List(); + + for (int i = 0; i < count;) + { + int entryStart = i; + ushort towerId = ReadUInt16(data, i * 2); + i++; + if (towerId == 0) + { + continue; + } + + var text = new List(); + while (i < count) + { + ushort value = ReadUInt16(data, i * 2); + i++; + if (value == 0) + { + break; + } + + if (value >= 0x20 && value <= 0x7e) + { + text.Add((char)value); + } + else + { + text.Add('<'); + text.AddRange(value.ToString("x4", CultureInfo.InvariantCulture)); + text.Add('>'); + } + } + + strings.Add(new ComDualStringEntry( + towerId, + ProtocolTowerName(towerId), + new string(text.ToArray()), + IsSecurityBinding: entryStart >= securityOffset)); + } + + return strings; + } + + private static string ProtocolTowerName(ushort towerId) + { + return towerId switch + { + 0x0007 => "ncacn_ip_tcp", + 0x0008 => "ncadg_ip_udp", + 0x0009 => "ncacn_np", + 0x000f => "ncacn_spx", + 0x0010 => "ncacn_nb_nb", + 0x0016 => "ncadg_ip_udp_or_netbios", + 0x001f => "ncalrpc", + _ => "unknown", + }; + } + + private static ushort ReadUInt16(ReadOnlySpan buffer, int offset) + { + return (ushort)(buffer[offset] | (buffer[offset + 1] << 8)); + } + + private static uint ReadUInt32(ReadOnlySpan buffer, int offset) + { + return (uint)(buffer[offset] + | (buffer[offset + 1] << 8) + | (buffer[offset + 2] << 16) + | (buffer[offset + 3] << 24)); + } + + private static ulong ReadUInt64(ReadOnlySpan buffer, int offset) + { + return ReadUInt32(buffer, offset) | ((ulong)ReadUInt32(buffer, offset + 4) << 32); + } +} + +public sealed record ComDualStringEntry(ushort TowerId, string Protocol, string Value, bool IsSecurityBinding) +{ + public string ToDiagnosticString() + { + string kind = IsSecurityBinding ? "security" : "string"; + return $"{kind}:0x{TowerId:x4}:{Protocol}:{Value}"; + } +} diff --git a/src/MxNativeClient/ComObjRefProvider.cs b/src/MxNativeClient/ComObjRefProvider.cs new file mode 100644 index 0000000..2fae917 --- /dev/null +++ b/src/MxNativeClient/ComObjRefProvider.cs @@ -0,0 +1,100 @@ +using System.Runtime.InteropServices; +using ComTypes = System.Runtime.InteropServices.ComTypes; + +namespace MxNativeClient; + +public static class ComObjRefProvider +{ + public const uint MarshalContextInProcess = 0; + public const uint MarshalContextLocal = 1; + public const uint MarshalContextDifferentMachine = 2; + + public static byte[] MarshalActivatedIUnknownObjRef(string progId, uint destinationContext) + { + var type = Type.GetTypeFromProgID(progId, throwOnError: true) + ?? throw new InvalidOperationException($"ProgID {progId} was not resolved."); + object instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException($"ProgID {progId} activation returned null."); + + try + { + return MarshalIUnknownObjRef(instance, destinationContext); + } + finally + { + if (Marshal.IsComObject(instance)) + { + _ = Marshal.ReleaseComObject(instance); + } + } + } + + public static byte[] MarshalIUnknownObjRef(object comObject, uint destinationContext) + { + return MarshalInterfaceObjRef(comObject, new Guid("00000000-0000-0000-C000-000000000046"), destinationContext); + } + + public static byte[] MarshalInterfaceObjRef(object comObject, Guid iid, uint destinationContext) + { + IntPtr unknown = IntPtr.Zero; + ComTypes.IStream? stream = null; + + try + { + unknown = Marshal.GetIUnknownForObject(comObject); + Marshal.ThrowExceptionForHR(CreateStreamOnHGlobal(IntPtr.Zero, true, out stream)); + Marshal.ThrowExceptionForHR(CoMarshalInterface(stream, ref iid, unknown, destinationContext, IntPtr.Zero, 0)); + Marshal.ThrowExceptionForHR(GetHGlobalFromStream(stream, out var hglobal)); + + nuint size = GlobalSize(hglobal); + IntPtr pointer = GlobalLock(hglobal); + if (pointer == IntPtr.Zero) + { + throw new InvalidOperationException("GlobalLock failed."); + } + + try + { + byte[] buffer = new byte[(int)size]; + Marshal.Copy(pointer, buffer, 0, buffer.Length); + return buffer; + } + finally + { + _ = GlobalUnlock(hglobal); + } + } + finally + { + if (unknown != IntPtr.Zero) + { + Marshal.Release(unknown); + } + + if (stream is not null) + { + _ = Marshal.ReleaseComObject(stream); + } + + } + } + + [DllImport("ole32.dll")] + private static extern int CreateStreamOnHGlobal(IntPtr hGlobal, [MarshalAs(UnmanagedType.Bool)] bool deleteOnRelease, out ComTypes.IStream stream); + + [DllImport("ole32.dll")] + private static extern int CoMarshalInterface(ComTypes.IStream stream, ref Guid iid, IntPtr unknown, uint destinationContext, IntPtr destinationContextPointer, uint marshalFlags); + + [DllImport("ole32.dll")] + private static extern int GetHGlobalFromStream(ComTypes.IStream stream, out IntPtr hGlobal); + + [DllImport("kernel32.dll", SetLastError = true)] + private static extern IntPtr GlobalLock(IntPtr hMem); + + [DllImport("kernel32.dll", SetLastError = true)] + [return: MarshalAs(UnmanagedType.Bool)] + private static extern bool GlobalUnlock(IntPtr hMem); + + [DllImport("kernel32.dll", SetLastError = true)] + private static extern nuint GlobalSize(IntPtr hMem); +} diff --git a/src/MxNativeClient/DceRpcAuthentication.cs b/src/MxNativeClient/DceRpcAuthentication.cs new file mode 100644 index 0000000..1386148 --- /dev/null +++ b/src/MxNativeClient/DceRpcAuthentication.cs @@ -0,0 +1,135 @@ +using System.Buffers.Binary; +using System.Buffers; +using System.Net; +using System.Net.Security; + +namespace MxNativeClient; + +public enum DceRpcAuthType : byte +{ + None = 0, + GssNegotiate = 9, + WinNt = 10, +} + +public enum DceRpcAuthLevel : byte +{ + None = 1, + Connect = 2, + PacketIntegrity = 5, + PacketPrivacy = 6, +} + +public sealed record DceRpcAuthTrailer( + DceRpcAuthType AuthType, + DceRpcAuthLevel AuthLevel, + byte AuthPadLength, + byte AuthReserved, + uint AuthContextId) +{ + public const int Length = 8; + + public static DceRpcAuthTrailer Parse(ReadOnlySpan buffer) + { + if (buffer.Length < Length) + { + throw new ArgumentException("DCE/RPC auth trailer is too short.", nameof(buffer)); + } + + return new DceRpcAuthTrailer( + (DceRpcAuthType)buffer[0], + (DceRpcAuthLevel)buffer[1], + buffer[2], + buffer[3], + BinaryPrimitives.ReadUInt32LittleEndian(buffer[4..8])); + } + + public void WriteTo(Span buffer) + { + if (buffer.Length < Length) + { + throw new ArgumentException("DCE/RPC auth trailer buffer is too short.", nameof(buffer)); + } + + buffer[0] = (byte)AuthType; + buffer[1] = (byte)AuthLevel; + buffer[2] = AuthPadLength; + buffer[3] = AuthReserved; + BinaryPrimitives.WriteUInt32LittleEndian(buffer[4..8], AuthContextId); + } +} + +public sealed record DceRpcAuthValue(DceRpcAuthTrailer Trailer, ReadOnlyMemory Token); + +public sealed class SspiClientContext : IDisposable +{ + private readonly NegotiateAuthentication _authentication; + + public SspiClientContext(string package, string targetName, ProtectionLevel protectionLevel = ProtectionLevel.None) + { + var credential = CreateCredentialFromEnvironment(); + _authentication = new NegotiateAuthentication(new NegotiateAuthenticationClientOptions + { + Package = package, + TargetName = targetName, + Credential = credential ?? CredentialCache.DefaultNetworkCredentials, + RequiredProtectionLevel = protectionLevel, + }); + } + + public byte[] GetOutgoingBlob(ReadOnlySpan incomingToken) + { + byte[]? input = incomingToken.IsEmpty ? Array.Empty() : incomingToken.ToArray(); + byte[]? output = _authentication.GetOutgoingBlob(input, out var status); + if (status is not (NegotiateAuthenticationStatusCode.Completed or NegotiateAuthenticationStatusCode.ContinueNeeded)) + { + throw new InvalidOperationException($"SSPI negotiation failed with {status}."); + } + + return output ?? []; + } + + public byte[] Wrap(ReadOnlySpan input, bool requestEncryption, out bool isEncrypted) + { + var writer = new ArrayBufferWriter(input.Length + 64); + var status = _authentication.Wrap(input, writer, requestEncryption, out isEncrypted); + if (status != NegotiateAuthenticationStatusCode.Completed) + { + throw new InvalidOperationException($"SSPI wrap failed with {status}."); + } + + return writer.WrittenSpan.ToArray(); + } + + public byte[] Unwrap(ReadOnlySpan input, out bool wasEncrypted) + { + var writer = new ArrayBufferWriter(input.Length); + var status = _authentication.Unwrap(input, writer, out wasEncrypted); + if (status != NegotiateAuthenticationStatusCode.Completed) + { + throw new InvalidOperationException($"SSPI unwrap failed with {status}."); + } + + return writer.WrittenSpan.ToArray(); + } + + public void Dispose() + { + _authentication.Dispose(); + } + + private static NetworkCredential? CreateCredentialFromEnvironment() + { + string? user = Environment.GetEnvironmentVariable("MX_RPC_USER"); + string? password = Environment.GetEnvironmentVariable("MX_RPC_PASSWORD"); + if (string.IsNullOrWhiteSpace(user) || password is null) + { + return null; + } + + string? domain = Environment.GetEnvironmentVariable("MX_RPC_DOMAIN"); + return string.IsNullOrWhiteSpace(domain) + ? new NetworkCredential(user, password) + : new NetworkCredential(user, password, domain); + } +} diff --git a/src/MxNativeClient/DceRpcPdu.cs b/src/MxNativeClient/DceRpcPdu.cs new file mode 100644 index 0000000..6c80275 --- /dev/null +++ b/src/MxNativeClient/DceRpcPdu.cs @@ -0,0 +1,380 @@ +using System.Buffers.Binary; + +namespace MxNativeClient; + +public enum DceRpcPacketType : byte +{ + Request = 0, + Response = 2, + Fault = 3, + Bind = 11, + BindAck = 12, + AlterContext = 14, + AlterContextResponse = 15, + Auth3 = 16, +} + +public readonly record struct DceRpcSyntaxId(Guid Uuid, ushort VersionMajor, ushort VersionMinor) +{ + public static DceRpcSyntaxId Ndr20 { get; } = new( + new Guid("8A885D04-1CEB-11C9-9FE8-08002B104860"), + 2, + 0); +} + +public sealed record DceRpcPresentationContext( + ushort ContextId, + DceRpcSyntaxId AbstractSyntax, + IReadOnlyList TransferSyntaxes); + +public sealed record DceRpcPduHeader( + byte Version, + byte VersionMinor, + DceRpcPacketType PacketType, + byte PacketFlags, + uint DataRepresentation, + ushort FragmentLength, + ushort AuthLength, + uint CallId) +{ + public const int Length = 16; + + public static DceRpcPduHeader Parse(ReadOnlySpan buffer) + { + if (buffer.Length < Length) + { + throw new ArgumentException("DCE/RPC PDU header is too short.", nameof(buffer)); + } + + return new DceRpcPduHeader( + Version: buffer[0], + VersionMinor: buffer[1], + PacketType: (DceRpcPacketType)buffer[2], + PacketFlags: buffer[3], + DataRepresentation: BinaryPrimitives.ReadUInt32LittleEndian(buffer[4..8]), + FragmentLength: BinaryPrimitives.ReadUInt16LittleEndian(buffer[8..10]), + AuthLength: BinaryPrimitives.ReadUInt16LittleEndian(buffer[10..12]), + CallId: BinaryPrimitives.ReadUInt32LittleEndian(buffer[12..16])); + } + + public void WriteTo(Span buffer) + { + if (buffer.Length < Length) + { + throw new ArgumentException("DCE/RPC PDU header buffer is too short.", nameof(buffer)); + } + + buffer[0] = Version; + buffer[1] = VersionMinor; + buffer[2] = (byte)PacketType; + buffer[3] = PacketFlags; + BinaryPrimitives.WriteUInt32LittleEndian(buffer[4..8], DataRepresentation); + BinaryPrimitives.WriteUInt16LittleEndian(buffer[8..10], FragmentLength); + BinaryPrimitives.WriteUInt16LittleEndian(buffer[10..12], AuthLength); + BinaryPrimitives.WriteUInt32LittleEndian(buffer[12..16], CallId); + } +} + +public sealed record DceRpcRequestPdu( + DceRpcPduHeader Header, + uint AllocationHint, + ushort ContextId, + ushort Opnum, + ReadOnlyMemory StubData) +{ + public static DceRpcRequestPdu Parse(ReadOnlyMemory pdu) + { + var span = pdu.Span; + var header = DceRpcPduHeader.Parse(span); + if (header.PacketType != DceRpcPacketType.Request) + { + throw new ArgumentException("PDU is not a request.", nameof(pdu)); + } + + if (span.Length < 24 || header.FragmentLength > span.Length) + { + throw new ArgumentException("DCE/RPC request PDU is truncated.", nameof(pdu)); + } + + int trailerLength = header.AuthLength == 0 ? 0 : header.AuthLength + 8; + int stubLength = header.FragmentLength - 24 - trailerLength; + if (stubLength < 0) + { + throw new ArgumentException("DCE/RPC request PDU has invalid auth/trailer length.", nameof(pdu)); + } + + return new DceRpcRequestPdu( + Header: header, + AllocationHint: BinaryPrimitives.ReadUInt32LittleEndian(span[16..20]), + ContextId: BinaryPrimitives.ReadUInt16LittleEndian(span[20..22]), + Opnum: BinaryPrimitives.ReadUInt16LittleEndian(span[22..24]), + StubData: pdu.Slice(24, stubLength)); + } + + public byte[] Encode() + { + int length = 24 + StubData.Length; + byte[] pdu = new byte[length]; + var header = Header with + { + PacketType = DceRpcPacketType.Request, + FragmentLength = (ushort)length, + AuthLength = 0, + PacketFlags = Header.PacketFlags == 0 ? (byte)0x03 : Header.PacketFlags, + }; + header.WriteTo(pdu); + BinaryPrimitives.WriteUInt32LittleEndian(pdu.AsSpan(16, 4), AllocationHint); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(20, 2), ContextId); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(22, 2), Opnum); + StubData.Span.CopyTo(pdu.AsSpan(24)); + return pdu; + } +} + +public sealed record DceRpcResponsePdu( + DceRpcPduHeader Header, + uint AllocationHint, + ushort ContextId, + byte CancelCount, + ReadOnlyMemory StubData) +{ + public static DceRpcResponsePdu Parse(ReadOnlyMemory pdu) + { + var span = pdu.Span; + var header = DceRpcPduHeader.Parse(span); + if (header.PacketType != DceRpcPacketType.Response) + { + throw new ArgumentException("PDU is not a response.", nameof(pdu)); + } + + if (span.Length < 24 || header.FragmentLength > span.Length) + { + throw new ArgumentException("DCE/RPC response PDU is truncated.", nameof(pdu)); + } + + int trailerLength = header.AuthLength == 0 ? 0 : header.AuthLength + 8; + int stubLength = header.FragmentLength - 24 - trailerLength; + if (stubLength < 0) + { + throw new ArgumentException("DCE/RPC response PDU has invalid auth/trailer length.", nameof(pdu)); + } + + return new DceRpcResponsePdu( + Header: header, + AllocationHint: BinaryPrimitives.ReadUInt32LittleEndian(span[16..20]), + ContextId: BinaryPrimitives.ReadUInt16LittleEndian(span[20..22]), + CancelCount: span[22], + StubData: pdu.Slice(24, stubLength)); + } +} + +public sealed record DceRpcFaultPdu( + DceRpcPduHeader Header, + uint AllocationHint, + ushort ContextId, + byte CancelCount, + uint Status, + ReadOnlyMemory StubData) +{ + public static DceRpcFaultPdu Parse(ReadOnlyMemory pdu) + { + var span = pdu.Span; + var header = DceRpcPduHeader.Parse(span); + if (header.PacketType != DceRpcPacketType.Fault) + { + throw new ArgumentException("PDU is not a fault.", nameof(pdu)); + } + + if (span.Length < 28 || header.FragmentLength > span.Length) + { + throw new ArgumentException("DCE/RPC fault PDU is truncated.", nameof(pdu)); + } + + int trailerLength = header.AuthLength == 0 ? 0 : header.AuthLength + 8; + int stubLength = header.FragmentLength - 28 - trailerLength; + if (stubLength < 0) + { + throw new ArgumentException("DCE/RPC fault PDU has invalid auth/trailer length.", nameof(pdu)); + } + + return new DceRpcFaultPdu( + Header: header, + AllocationHint: BinaryPrimitives.ReadUInt32LittleEndian(span[16..20]), + ContextId: BinaryPrimitives.ReadUInt16LittleEndian(span[20..22]), + CancelCount: span[22], + Status: BinaryPrimitives.ReadUInt32LittleEndian(span[24..28]), + StubData: pdu.Slice(28, stubLength)); + } +} + +public sealed record DceRpcBindPdu( + DceRpcPduHeader Header, + ushort MaxTransmitFragment, + ushort MaxReceiveFragment, + uint AssociationGroupId, + IReadOnlyList PresentationContexts) +{ + public static DceRpcBindPdu Parse(ReadOnlyMemory pdu) + { + var span = pdu.Span; + var header = DceRpcPduHeader.Parse(span); + if (header.PacketType is not (DceRpcPacketType.Bind or DceRpcPacketType.AlterContext)) + { + throw new ArgumentException("PDU is not a bind or alter-context PDU.", nameof(pdu)); + } + + if (span.Length < 28 || header.FragmentLength > span.Length) + { + throw new ArgumentException("DCE/RPC bind PDU is truncated.", nameof(pdu)); + } + + int contextCount = span[24]; + int offset = 28; + var contexts = new List(contextCount); + + for (int i = 0; i < contextCount; i++) + { + if (offset + 24 > header.FragmentLength) + { + throw new ArgumentException("DCE/RPC bind context is truncated.", nameof(pdu)); + } + + ushort contextId = BinaryPrimitives.ReadUInt16LittleEndian(span.Slice(offset, 2)); + byte transferSyntaxCount = span[offset + 2]; + offset += 4; + + var abstractSyntax = ReadSyntax(span, ref offset); + var transferSyntaxes = new List(transferSyntaxCount); + for (int j = 0; j < transferSyntaxCount; j++) + { + transferSyntaxes.Add(ReadSyntax(span, ref offset)); + } + + contexts.Add(new DceRpcPresentationContext(contextId, abstractSyntax, transferSyntaxes)); + } + + return new DceRpcBindPdu( + Header: header, + MaxTransmitFragment: BinaryPrimitives.ReadUInt16LittleEndian(span[16..18]), + MaxReceiveFragment: BinaryPrimitives.ReadUInt16LittleEndian(span[18..20]), + AssociationGroupId: BinaryPrimitives.ReadUInt32LittleEndian(span[20..24]), + PresentationContexts: contexts); + } + + public byte[] Encode() + { + int length = 28 + PresentationContexts.Sum(static context => 24 + 20 * context.TransferSyntaxes.Count); + byte[] pdu = new byte[length]; + var header = Header with { FragmentLength = (ushort)length, AuthLength = 0 }; + header.WriteTo(pdu); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(16, 2), MaxTransmitFragment); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(18, 2), MaxReceiveFragment); + BinaryPrimitives.WriteUInt32LittleEndian(pdu.AsSpan(20, 4), AssociationGroupId); + pdu[24] = (byte)PresentationContexts.Count; + + int offset = 28; + foreach (var context in PresentationContexts) + { + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(offset, 2), context.ContextId); + pdu[offset + 2] = (byte)context.TransferSyntaxes.Count; + offset += 4; + + WriteSyntax(pdu.AsSpan(), ref offset, context.AbstractSyntax); + foreach (var transferSyntax in context.TransferSyntaxes) + { + WriteSyntax(pdu.AsSpan(), ref offset, transferSyntax); + } + } + + return pdu; + } + + public byte[] EncodeWithAuth(DceRpcAuthTrailer trailer, ReadOnlySpan authToken) + { + byte[] unauthenticated = Encode(); + int padLength = Align(unauthenticated.Length, 4) - unauthenticated.Length; + int length = unauthenticated.Length + padLength + DceRpcAuthTrailer.Length + authToken.Length; + byte[] pdu = new byte[length]; + unauthenticated.CopyTo(pdu.AsSpan()); + + var header = Header with + { + FragmentLength = (ushort)length, + AuthLength = (ushort)authToken.Length, + }; + header.WriteTo(pdu); + + var alignedTrailer = trailer with { AuthPadLength = (byte)padLength }; + alignedTrailer.WriteTo(pdu.AsSpan(unauthenticated.Length + padLength, DceRpcAuthTrailer.Length)); + authToken.CopyTo(pdu.AsSpan(length - authToken.Length)); + return pdu; + } + + public static byte[] EncodeAuth3(DceRpcPduHeader header, DceRpcAuthTrailer trailer, ReadOnlySpan authToken) + { + byte[] body = [(byte)' ', (byte)' ', (byte)' ', (byte)' ']; + int padLength = Align(DceRpcPduHeader.Length + body.Length, 4) - (DceRpcPduHeader.Length + body.Length); + int length = DceRpcPduHeader.Length + body.Length + padLength + DceRpcAuthTrailer.Length + authToken.Length; + byte[] pdu = new byte[length]; + var authHeader = header with + { + PacketType = DceRpcPacketType.Auth3, + FragmentLength = (ushort)length, + AuthLength = (ushort)authToken.Length, + }; + authHeader.WriteTo(pdu); + body.CopyTo(pdu.AsSpan(DceRpcPduHeader.Length)); + var alignedTrailer = trailer with { AuthPadLength = (byte)padLength }; + alignedTrailer.WriteTo(pdu.AsSpan(DceRpcPduHeader.Length + body.Length + padLength, DceRpcAuthTrailer.Length)); + authToken.CopyTo(pdu.AsSpan(length - authToken.Length)); + return pdu; + } + + public static DceRpcAuthValue ReadAuthValue(ReadOnlyMemory pdu) + { + var header = DceRpcPduHeader.Parse(pdu.Span); + if (header.AuthLength == 0) + { + throw new ArgumentException("PDU has no auth value.", nameof(pdu)); + } + + int trailerOffset = header.FragmentLength - header.AuthLength - DceRpcAuthTrailer.Length; + if (trailerOffset < DceRpcPduHeader.Length) + { + throw new ArgumentException("PDU auth trailer offset is invalid.", nameof(pdu)); + } + + return new DceRpcAuthValue( + DceRpcAuthTrailer.Parse(pdu.Span.Slice(trailerOffset, DceRpcAuthTrailer.Length)), + pdu.Slice(header.FragmentLength - header.AuthLength, header.AuthLength)); + } + + private static DceRpcSyntaxId ReadSyntax(ReadOnlySpan span, ref int offset) + { + if (offset + 20 > span.Length) + { + throw new ArgumentException("DCE/RPC syntax identifier is truncated.", nameof(span)); + } + + var syntax = new DceRpcSyntaxId( + new Guid(span.Slice(offset, 16)), + BinaryPrimitives.ReadUInt16LittleEndian(span.Slice(offset + 16, 2)), + BinaryPrimitives.ReadUInt16LittleEndian(span.Slice(offset + 18, 2))); + offset += 20; + return syntax; + } + + private static void WriteSyntax(Span span, ref int offset, DceRpcSyntaxId syntax) + { + syntax.Uuid.TryWriteBytes(span.Slice(offset, 16)); + BinaryPrimitives.WriteUInt16LittleEndian(span.Slice(offset + 16, 2), syntax.VersionMajor); + BinaryPrimitives.WriteUInt16LittleEndian(span.Slice(offset + 18, 2), syntax.VersionMinor); + offset += 20; + } + + private static int Align(int value, int alignment) + { + int remainder = value % alignment; + return remainder == 0 ? value : value + alignment - remainder; + } +} diff --git a/src/MxNativeClient/DceRpcTcpClient.cs b/src/MxNativeClient/DceRpcTcpClient.cs new file mode 100644 index 0000000..59dea14 --- /dev/null +++ b/src/MxNativeClient/DceRpcTcpClient.cs @@ -0,0 +1,420 @@ +using System.Buffers.Binary; +using System.Net.Sockets; +using System.Net.Security; + +namespace MxNativeClient; + +public sealed class DceRpcTcpClient : IDisposable +{ + private readonly string _host; + private readonly int _port; + private TcpClient? _client; + private NetworkStream? _stream; + private uint _nextCallId = 1; + private ushort _boundContextId; + private SspiClientContext? _sspi; + private ManagedNtlmClientContext? _managedNtlm; + private DceRpcAuthTrailer? _authTrailer; + private DceRpcAuthLevel _authLevel = DceRpcAuthLevel.None; + + public DceRpcTcpClient(string host, int port) + { + _host = host; + _port = port; + } + + public void Connect() + { + _client = new TcpClient(); + _client.Connect(_host, _port); + _stream = _client.GetStream(); + } + + public DceRpcPduHeader Bind(Guid interfaceId, ushort versionMajor, ushort versionMinor) + { + EnsureConnected(); + uint callId = _nextCallId++; + var pdu = new DceRpcBindPdu( + Header: CreateHeader(DceRpcPacketType.Bind, callId), + MaxTransmitFragment: 4280, + MaxReceiveFragment: 4280, + AssociationGroupId: 0, + PresentationContexts: + [ + new DceRpcPresentationContext( + ContextId: 0, + AbstractSyntax: new DceRpcSyntaxId(interfaceId, versionMajor, versionMinor), + TransferSyntaxes: [DceRpcSyntaxId.Ndr20]), + ]); + + Write(pdu.Encode()); + byte[] response = ReadPdu(); + return DceRpcPduHeader.Parse(response); + } + + public DceRpcPduHeader BindWithNtlmConnect(Guid interfaceId, ushort versionMajor, ushort versionMinor, string targetName = "localhost") + { + return BindWithNtlm(interfaceId, versionMajor, versionMinor, DceRpcAuthLevel.Connect, targetName); + } + + public DceRpcPduHeader BindWithNtlmPacketIntegrity(Guid interfaceId, ushort versionMajor, ushort versionMinor, string targetName = "localhost") + { + return BindWithNtlm(interfaceId, versionMajor, versionMinor, DceRpcAuthLevel.PacketIntegrity, targetName); + } + + public DceRpcPduHeader BindWithManagedNtlmPacketIntegrity(Guid interfaceId, ushort versionMajor, ushort versionMinor) + { + EnsureConnected(); + _sspi?.Dispose(); + _sspi = null; + _managedNtlm = ManagedNtlmClientContext.FromEnvironment(); + byte[] type1 = _managedNtlm.CreateType1(); + uint callId = _nextCallId++; + var pdu = new DceRpcBindPdu( + Header: CreateHeader(DceRpcPacketType.Bind, callId), + MaxTransmitFragment: 4280, + MaxReceiveFragment: 4280, + AssociationGroupId: 0, + PresentationContexts: + [ + new DceRpcPresentationContext( + ContextId: 0, + AbstractSyntax: new DceRpcSyntaxId(interfaceId, versionMajor, versionMinor), + TransferSyntaxes: [DceRpcSyntaxId.Ndr20]), + ]); + var trailer = new DceRpcAuthTrailer( + AuthType: DceRpcAuthType.WinNt, + AuthLevel: DceRpcAuthLevel.PacketIntegrity, + AuthPadLength: 0, + AuthReserved: 0, + AuthContextId: 79232); + + Write(pdu.EncodeWithAuth(trailer, type1)); + byte[] response = ReadPdu(); + var responseHeader = DceRpcPduHeader.Parse(response); + var challenge = DceRpcBindPdu.ReadAuthValue(response); + byte[] type3 = _managedNtlm.CreateType3(challenge.Token.Span); + byte[] auth3 = DceRpcBindPdu.EncodeAuth3( + CreateHeader(DceRpcPacketType.Auth3, responseHeader.CallId), + trailer, + type3); + Write(auth3); + _boundContextId = 0; + _authTrailer = trailer; + _authLevel = DceRpcAuthLevel.PacketIntegrity; + return responseHeader; + } + + public DceRpcPduHeader BindWithNtlm(Guid interfaceId, ushort versionMajor, ushort versionMinor, DceRpcAuthLevel authLevel, string targetName = "localhost") + { + EnsureConnected(); + _sspi?.Dispose(); + _managedNtlm = null; + _sspi = new SspiClientContext("NTLM", targetName, ProtectionLevelFor(authLevel)); + byte[] type1 = _sspi.GetOutgoingBlob(ReadOnlySpan.Empty); + uint callId = _nextCallId++; + var pdu = new DceRpcBindPdu( + Header: CreateHeader(DceRpcPacketType.Bind, callId), + MaxTransmitFragment: 4280, + MaxReceiveFragment: 4280, + AssociationGroupId: 0, + PresentationContexts: + [ + new DceRpcPresentationContext( + ContextId: 0, + AbstractSyntax: new DceRpcSyntaxId(interfaceId, versionMajor, versionMinor), + TransferSyntaxes: [DceRpcSyntaxId.Ndr20]), + ]); + var trailer = new DceRpcAuthTrailer( + AuthType: DceRpcAuthType.WinNt, + AuthLevel: authLevel, + AuthPadLength: 0, + AuthReserved: 0, + AuthContextId: 79232); + + Write(pdu.EncodeWithAuth(trailer, type1)); + byte[] response = ReadPdu(); + var responseHeader = DceRpcPduHeader.Parse(response); + var challenge = DceRpcBindPdu.ReadAuthValue(response); + byte[] type3 = _sspi.GetOutgoingBlob(challenge.Token.Span); + byte[] auth3 = DceRpcBindPdu.EncodeAuth3( + CreateHeader(DceRpcPacketType.Auth3, responseHeader.CallId), + trailer, + type3); + Write(auth3); + _boundContextId = 0; + _authTrailer = trailer; + _authLevel = authLevel; + return responseHeader; + } + + public DceRpcResponsePdu Call(ushort contextId, ushort opnum, ReadOnlyMemory stubData) + { + return CallCore(contextId, opnum, stubData, objectUuid: null); + } + + public DceRpcResponsePdu CallBoundObject(Guid objectUuid, ushort opnum, ReadOnlyMemory stubData) + { + return CallCore(_boundContextId, opnum, stubData, objectUuid); + } + + private DceRpcResponsePdu CallCore(ushort contextId, ushort opnum, ReadOnlyMemory stubData, Guid? objectUuid) + { + EnsureConnected(); + uint callId = _nextCallId++; + byte[] request = EncodeRequestBytes(CreateHeader(DceRpcPacketType.Request, callId), contextId, opnum, stubData, objectUuid); + + Write(EncodeRequest(request)); + byte[] response = ReadPdu(); + var header = DceRpcPduHeader.Parse(response); + if (header.PacketType == DceRpcPacketType.Fault) + { + var fault = DceRpcFaultPdu.Parse(response); + throw new DceRpcFaultException(fault.Status); + } + + return DceRpcResponsePdu.Parse(response); + } + + public DceRpcResponsePdu CallBound(ushort opnum, ReadOnlyMemory stubData) + { + return Call(_boundContextId, opnum, stubData); + } + + public void Dispose() + { + _sspi?.Dispose(); + _stream?.Dispose(); + _client?.Dispose(); + } + + private byte[] EncodeRequest(byte[] request) + { + if (_authLevel == DceRpcAuthLevel.PacketIntegrity) + { + return EncodePacketIntegrityRequest(request); + } + + return request; + } + + private byte[] EncodePacketIntegrityRequest(byte[] unauthenticated) + { + if (_authTrailer is null) + { + throw new InvalidOperationException("Packet-integrity auth was requested without an auth trailer."); + } + + int padLength = Align(unauthenticated.Length, 4) - unauthenticated.Length; + int signatureLength = 16; + int length = unauthenticated.Length + padLength + DceRpcAuthTrailer.Length + signatureLength; + byte[] pdu = new byte[length]; + unauthenticated.CopyTo(pdu.AsSpan()); + if (padLength > 0) + { + pdu.AsSpan(unauthenticated.Length, padLength).Fill(0xbb); + } + + var parsedHeader = DceRpcPduHeader.Parse(unauthenticated); + var header = parsedHeader with + { + PacketType = DceRpcPacketType.Request, + PacketFlags = parsedHeader.PacketFlags == 0 ? (byte)0x03 : parsedHeader.PacketFlags, + FragmentLength = (ushort)length, + AuthLength = (ushort)signatureLength, + }; + header.WriteTo(pdu); + + var trailer = _authTrailer with { AuthPadLength = (byte)padLength }; + int trailerOffset = unauthenticated.Length + padLength; + trailer.WriteTo(pdu.AsSpan(trailerOffset, DceRpcAuthTrailer.Length)); + pdu.AsSpan(length - signatureLength, signatureLength).Fill(0x20); + + byte[] verifier; + if (_managedNtlm is not null) + { + verifier = _managedNtlm.Sign(pdu.AsSpan(0, length - signatureLength)); + } + else if (_sspi is not null) + { + byte[] wrapped = _sspi.Wrap(pdu.AsSpan(0, length - signatureLength), requestEncryption: false, out _); + verifier = ExtractNtlmVerifier(wrapped, pdu.AsSpan(0, length - signatureLength)); + } + else + { + throw new InvalidOperationException("Packet-integrity auth was requested without an auth context."); + } + + verifier.CopyTo(pdu.AsSpan(length - signatureLength, signatureLength)); + return pdu; + } + + private static byte[] EncodeRequestBytes( + DceRpcPduHeader header, + ushort contextId, + ushort opnum, + ReadOnlyMemory stubData, + Guid? objectUuid) + { + int objectLength = objectUuid.HasValue ? 16 : 0; + int fixedOffset = DceRpcPduHeader.Length; + int stubOffset = fixedOffset + 8 + objectLength; + int length = stubOffset + stubData.Length; + byte[] pdu = new byte[length]; + var requestHeader = header with + { + PacketType = DceRpcPacketType.Request, + FragmentLength = (ushort)length, + AuthLength = 0, + PacketFlags = (byte)((header.PacketFlags == 0 ? 0x03 : header.PacketFlags) | (objectUuid.HasValue ? 0x80 : 0x00)), + }; + requestHeader.WriteTo(pdu); + BinaryPrimitives.WriteUInt32LittleEndian(pdu.AsSpan(fixedOffset, 4), (uint)stubData.Length); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(fixedOffset + 4, 2), contextId); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(fixedOffset + 6, 2), opnum); + if (objectUuid.HasValue) + { + objectUuid.Value.TryWriteBytes(pdu.AsSpan(fixedOffset + 8, 16)); + } + + stubData.Span.CopyTo(pdu.AsSpan(stubOffset)); + return pdu; + } + + private static byte[] ExtractNtlmVerifier(ReadOnlySpan wrapped, ReadOnlySpan signedInput) + { + const int signatureLength = 16; + TraceWrapShape(wrapped, signedInput, signatureLength); + if (wrapped.Length == signatureLength) + { + return wrapped.ToArray(); + } + + if (wrapped.Length == signedInput.Length + signatureLength) + { + if (wrapped[signatureLength..].SequenceEqual(signedInput)) + { + return wrapped[..signatureLength].ToArray(); + } + + if (wrapped[..signedInput.Length].SequenceEqual(signedInput)) + { + return wrapped[^signatureLength..].ToArray(); + } + + return wrapped[..signatureLength].ToArray(); + } + + throw new InvalidOperationException($"Unexpected SSPI wrap verifier length {wrapped.Length} for input length {signedInput.Length}."); + } + + private static void TraceWrapShape(ReadOnlySpan wrapped, ReadOnlySpan signedInput, int signatureLength) + { + string? tracePath = Environment.GetEnvironmentVariable("MX_RPC_WRAP_TRACE"); + if (string.IsNullOrWhiteSpace(tracePath)) + { + return; + } + + bool tokenThenInput = wrapped.Length >= signatureLength + && wrapped.Length == signedInput.Length + signatureLength + && wrapped[signatureLength..].SequenceEqual(signedInput); + bool inputThenToken = wrapped.Length >= signatureLength + && wrapped.Length == signedInput.Length + signatureLength + && wrapped[..signedInput.Length].SequenceEqual(signedInput); + + string text = + $"signed_input_length={signedInput.Length}{Environment.NewLine}" + + $"wrapped_length={wrapped.Length}{Environment.NewLine}" + + $"token_then_input={tokenThenInput}{Environment.NewLine}" + + $"input_then_token={inputThenToken}{Environment.NewLine}" + + $"wrapped_first16={Convert.ToHexString(wrapped[..Math.Min(signatureLength, wrapped.Length)])}{Environment.NewLine}" + + $"wrapped_last16={Convert.ToHexString(wrapped[^Math.Min(signatureLength, wrapped.Length)..])}{Environment.NewLine}"; + File.AppendAllText(tracePath, text); + } + + private static DceRpcPduHeader CreateHeader(DceRpcPacketType packetType, uint callId) + { + return new DceRpcPduHeader( + Version: 5, + VersionMinor: 0, + PacketType: packetType, + PacketFlags: 0x03, + DataRepresentation: 0x10, + FragmentLength: 0, + AuthLength: 0, + CallId: callId); + } + + private static int Align(int value, int alignment) + { + int remainder = value % alignment; + return remainder == 0 ? value : value + alignment - remainder; + } + + private static ProtectionLevel ProtectionLevelFor(DceRpcAuthLevel authLevel) + { + return authLevel switch + { + DceRpcAuthLevel.PacketPrivacy => ProtectionLevel.EncryptAndSign, + DceRpcAuthLevel.PacketIntegrity => ProtectionLevel.Sign, + _ => ProtectionLevel.None, + }; + } + + private void Write(byte[] pdu) + { + EnsureConnected(); + _stream!.Write(pdu); + _stream.Flush(); + } + + private byte[] ReadPdu() + { + EnsureConnected(); + byte[] headerBytes = ReadExact(DceRpcPduHeader.Length); + var header = DceRpcPduHeader.Parse(headerBytes); + byte[] pdu = new byte[header.FragmentLength]; + headerBytes.CopyTo(pdu, 0); + byte[] body = ReadExact(header.FragmentLength - DceRpcPduHeader.Length); + body.CopyTo(pdu.AsSpan(DceRpcPduHeader.Length)); + return pdu; + } + + private byte[] ReadExact(int length) + { + byte[] buffer = new byte[length]; + int offset = 0; + while (offset < length) + { + int read = _stream!.Read(buffer, offset, length - offset); + if (read == 0) + { + throw new IOException("DCE/RPC socket closed while reading."); + } + + offset += read; + } + + return buffer; + } + + private void EnsureConnected() + { + if (_stream is null) + { + throw new InvalidOperationException("DCE/RPC TCP client is not connected."); + } + } +} + +public sealed class DceRpcFaultException : Exception +{ + public DceRpcFaultException(uint status) + : base($"DCE/RPC fault 0x{status:x8}") + { + Status = status; + } + + public uint Status { get; } +} diff --git a/src/MxNativeClient/GalaxyRepositoryTagResolver.cs b/src/MxNativeClient/GalaxyRepositoryTagResolver.cs new file mode 100644 index 0000000..3aa8f40 --- /dev/null +++ b/src/MxNativeClient/GalaxyRepositoryTagResolver.cs @@ -0,0 +1,433 @@ +using Microsoft.Data.SqlClient; +using MxNativeCodec; + +namespace MxNativeClient; + +public sealed record GalaxyTagMetadata( + string ObjectTagName, + string AttributeName, + string? PrimitiveName, + ushort PlatformId, + ushort EngineId, + ushort ObjectId, + short PrimitiveId, + short AttributeId, + short PropertyId, + short MxDataType, + bool IsArray, + short SecurityClassification, + string AttributeSource) +{ + public const short ValuePropertyId = 10; + public const short BufferPropertyId = 50; + + public bool IsBufferProperty => PropertyId == BufferPropertyId; + + public MxReferenceHandle ToReferenceHandle(byte galaxyId = 1) + { + return MxReferenceHandle.Create( + galaxyId, + PlatformId, + EngineId, + ObjectId, + ObjectTagName, + PrimitiveId, + AttributeId, + PropertyId, + AttributeName, + IsArray); + } + + public MxValueKind ToValueKind() + { + return NmxWriteMessage.GetValueKind(MxDataType, IsArray); + } + + public bool TryGetValueKind(out MxValueKind valueKind) + { + return NmxWriteMessage.TryGetValueKind(MxDataType, IsArray, out valueKind); + } + + public bool IsSupportedValueKind => TryGetValueKind(out _); + + public (MxValueKind ValueKind, object Value) ProjectWriteValue(object value) + { + if (TryGetValueKind(out MxValueKind valueKind)) + { + return (valueKind, value); + } + + if (IsArray) + { + throw new ArgumentOutOfRangeException(nameof(value), $"Unsupported MX array data type {MxDataType}."); + } + + return (MxDataType, value) switch + { + ((short)MxNativeCodec.MxDataType.ElapsedTime, TimeSpan timeSpan) => (MxValueKind.Int32, checked((int)timeSpan.TotalMilliseconds)), + ((short)MxNativeCodec.MxDataType.ElapsedTime, _) => (MxValueKind.Int32, value), + ((short)MxNativeCodec.MxDataType.InternationalizedString, _) => (MxValueKind.String, value), + _ => throw new ArgumentOutOfRangeException(nameof(value), $"Unsupported MX data type {MxDataType}."), + }; + } +} + +public sealed class GalaxyRepositoryTagResolver +{ + private const string DefaultConnectionString = + "Server=localhost;Database=ZB;Integrated Security=True;Encrypt=False;TrustServerCertificate=True"; + + private readonly string _connectionString; + + public GalaxyRepositoryTagResolver(string connectionString = DefaultConnectionString) + { + ArgumentException.ThrowIfNullOrWhiteSpace(connectionString); + _connectionString = connectionString; + } + + public async Task ResolveAsync( + string tagReference, + CancellationToken cancellationToken = default) + { + IReadOnlyList candidates = ParsedTagReference.ParseCandidates(tagReference); + await using var connection = new SqlConnection(_connectionString); + await connection.OpenAsync(cancellationToken).ConfigureAwait(false); + + foreach (ParsedTagReference parsed in candidates) + { + await using var command = connection.CreateCommand(); + command.CommandText = ResolveSql; + command.Parameters.AddWithValue("@objectTagName", parsed.ObjectTagName); + command.Parameters.AddWithValue("@attributeName", parsed.AttributeName); + command.Parameters.AddWithValue("@primitiveName", (object?)parsed.PrimitiveName ?? DBNull.Value); + + await using SqlDataReader reader = await command.ExecuteReaderAsync(cancellationToken).ConfigureAwait(false); + if (await reader.ReadAsync(cancellationToken).ConfigureAwait(false)) + { + GalaxyTagMetadata metadata = ReadMetadata(reader); + return parsed.PropertyIdOverride.HasValue + ? metadata with { PropertyId = parsed.PropertyIdOverride.Value } + : metadata; + } + } + + throw new InvalidOperationException($"Galaxy tag reference '{tagReference}' was not found in the deployed repository metadata."); + } + + public async Task> BrowseAsync( + string objectTagLike = "%", + string attributeLike = "%", + int maxRows = 100, + CancellationToken cancellationToken = default) + { + ArgumentException.ThrowIfNullOrWhiteSpace(objectTagLike); + ArgumentException.ThrowIfNullOrWhiteSpace(attributeLike); + if (maxRows <= 0) + { + throw new ArgumentOutOfRangeException(nameof(maxRows), "Maximum row count must be positive."); + } + + await using var connection = new SqlConnection(_connectionString); + await connection.OpenAsync(cancellationToken).ConfigureAwait(false); + + await using var command = connection.CreateCommand(); + command.CommandText = BrowseSql; + command.Parameters.AddWithValue("@objectTagLike", objectTagLike); + command.Parameters.AddWithValue("@attributeLike", attributeLike); + command.Parameters.AddWithValue("@maxRows", Math.Min(maxRows, 1000)); + + List results = []; + await using SqlDataReader reader = await command.ExecuteReaderAsync(cancellationToken).ConfigureAwait(false); + while (await reader.ReadAsync(cancellationToken).ConfigureAwait(false)) + { + results.Add(ReadMetadata(reader)); + } + + return results; + } + + private static GalaxyTagMetadata ReadMetadata(SqlDataReader reader) + { + return new GalaxyTagMetadata( + ObjectTagName: reader.GetString(0), + AttributeName: reader.GetString(1), + PrimitiveName: reader.IsDBNull(2) ? null : reader.GetString(2), + PlatformId: checked((ushort)reader.GetInt16(3)), + EngineId: checked((ushort)reader.GetInt16(4)), + ObjectId: checked((ushort)reader.GetInt16(5)), + PrimitiveId: reader.GetInt16(6), + AttributeId: reader.GetInt16(7), + PropertyId: checked((short)reader.GetInt32(8)), + MxDataType: reader.GetInt16(9), + IsArray: reader.GetBoolean(10), + SecurityClassification: reader.GetInt16(11), + AttributeSource: reader.GetString(12)); + } + + private sealed record ParsedTagReference( + string ObjectTagName, + string? PrimitiveName, + string AttributeName, + short? PropertyIdOverride) + { + public static IReadOnlyList ParseCandidates(string tagReference) + { + ArgumentException.ThrowIfNullOrWhiteSpace(tagReference); + var property = ParsePropertySuffix(tagReference); + string[] parts = property.BaseReference.Split('.', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries); + return parts.Length switch + { + 2 => [new ParsedTagReference(parts[0], null, parts[1], property.PropertyIdOverride)], + >= 3 => + [ + new ParsedTagReference(parts[0], parts[1], string.Join('.', parts.Skip(2)), property.PropertyIdOverride), + new ParsedTagReference(parts[0], null, string.Join('.', parts.Skip(1)), property.PropertyIdOverride), + ], + _ => throw new ArgumentException("Tag reference must be Object.Attribute or Object.Primitive.Attribute.", nameof(tagReference)), + }; + } + + private static (string BaseReference, short? PropertyIdOverride) ParsePropertySuffix(string tagReference) + { + const string bufferSuffix = ".property(buffer)"; + if (tagReference.EndsWith(bufferSuffix, StringComparison.OrdinalIgnoreCase)) + { + string baseReference = tagReference[..^bufferSuffix.Length]; + if (string.IsNullOrWhiteSpace(baseReference)) + { + throw new ArgumentException("Property references must include a base tag reference.", nameof(tagReference)); + } + + return (baseReference, GalaxyTagMetadata.BufferPropertyId); + } + + return (tagReference, null); + } + } + + private const string ResolveSql = """ +;WITH deployed_package_chain AS ( + SELECT + g.gobject_id, + p.package_id, + p.derived_from_package_id, + 0 AS depth + FROM dbo.gobject g + INNER JOIN dbo.package p + ON p.package_id = g.deployed_package_id + WHERE g.is_template = 0 + AND g.deployed_package_id <> 0 + AND g.tag_name = @objectTagName + UNION ALL + SELECT + dpc.gobject_id, + p.package_id, + p.derived_from_package_id, + dpc.depth + 1 + FROM deployed_package_chain dpc + INNER JOIN dbo.package p + ON p.package_id = dpc.derived_from_package_id + WHERE dpc.derived_from_package_id <> 0 + AND dpc.depth < 10 +), +ranked_dynamic AS ( + SELECT + g.tag_name AS object_tag_name, + da.attribute_name, + CAST(NULL AS nvarchar(329)) AS primitive_name, + i.mx_platform_id, + i.mx_engine_id, + i.mx_object_id, + da.mx_primitive_id, + da.mx_attribute_id, + CAST(10 AS int) AS property_id, + da.mx_data_type, + da.is_array, + da.security_classification, + CAST(N'dynamic' AS nvarchar(16)) AS attribute_source, + ROW_NUMBER() OVER ( + PARTITION BY dpc.gobject_id, da.attribute_name + ORDER BY dpc.depth + ) AS rn + FROM deployed_package_chain dpc + INNER JOIN dbo.dynamic_attribute da + ON da.package_id = dpc.package_id + INNER JOIN dbo.gobject g + ON g.gobject_id = dpc.gobject_id + INNER JOIN dbo.instance i + ON i.gobject_id = g.gobject_id + WHERE da.attribute_name = @attributeName + AND @primitiveName IS NULL +), +primitive_attributes AS ( + SELECT + g.tag_name AS object_tag_name, + ad.attribute_name, + NULLIF(pi.primitive_name, N'') AS primitive_name, + i.mx_platform_id, + i.mx_engine_id, + i.mx_object_id, + pi.mx_primitive_id, + ad.mx_attribute_id, + CAST(10 AS int) AS property_id, + ad.mx_data_type, + ad.is_array, + ad.security_classification, + CAST(N'primitive' AS nvarchar(16)) AS attribute_source, + 1 AS rn + FROM dbo.gobject g + INNER JOIN dbo.instance i + ON i.gobject_id = g.gobject_id + INNER JOIN dbo.primitive_instance pi + ON pi.gobject_id = g.gobject_id + AND pi.package_id = g.deployed_package_id + AND pi.property_bitmask & 0x10 <> 0x10 + INNER JOIN dbo.attribute_definition ad + ON ad.primitive_definition_id = pi.primitive_definition_id + WHERE g.tag_name = @objectTagName + AND ad.attribute_name = @attributeName + AND ( + (@primitiveName IS NULL AND pi.primitive_name = N'') + OR (@primitiveName IS NOT NULL AND pi.primitive_name = @primitiveName) + ) +) +SELECT TOP (1) + object_tag_name, + attribute_name, + primitive_name, + mx_platform_id, + mx_engine_id, + mx_object_id, + mx_primitive_id, + mx_attribute_id, + property_id, + mx_data_type, + is_array, + security_classification, + attribute_source +FROM ( + SELECT * FROM ranked_dynamic WHERE rn = 1 + UNION ALL + SELECT * FROM primitive_attributes +) resolved +ORDER BY CASE attribute_source WHEN N'dynamic' THEN 0 ELSE 1 END +"""; + + private const string BrowseSql = """ +;WITH deployed_objects AS ( + SELECT + g.gobject_id, + g.tag_name, + g.deployed_package_id, + i.mx_platform_id, + i.mx_engine_id, + i.mx_object_id + FROM dbo.gobject g + INNER JOIN dbo.instance i + ON i.gobject_id = g.gobject_id + WHERE g.is_template = 0 + AND g.deployed_package_id <> 0 + AND g.tag_name LIKE @objectTagLike +), +deployed_package_chain AS ( + SELECT + d.gobject_id, + d.tag_name, + d.mx_platform_id, + d.mx_engine_id, + d.mx_object_id, + p.package_id, + p.derived_from_package_id, + 0 AS depth + FROM deployed_objects d + INNER JOIN dbo.package p + ON p.package_id = d.deployed_package_id + UNION ALL + SELECT + dpc.gobject_id, + dpc.tag_name, + dpc.mx_platform_id, + dpc.mx_engine_id, + dpc.mx_object_id, + p.package_id, + p.derived_from_package_id, + dpc.depth + 1 + FROM deployed_package_chain dpc + INNER JOIN dbo.package p + ON p.package_id = dpc.derived_from_package_id + WHERE dpc.derived_from_package_id <> 0 + AND dpc.depth < 10 +), +ranked_dynamic AS ( + SELECT + dpc.tag_name AS object_tag_name, + da.attribute_name, + CAST(NULL AS nvarchar(329)) AS primitive_name, + dpc.mx_platform_id, + dpc.mx_engine_id, + dpc.mx_object_id, + da.mx_primitive_id, + da.mx_attribute_id, + CAST(10 AS int) AS property_id, + da.mx_data_type, + da.is_array, + da.security_classification, + CAST(N'dynamic' AS nvarchar(16)) AS attribute_source, + ROW_NUMBER() OVER ( + PARTITION BY dpc.gobject_id, da.attribute_name + ORDER BY dpc.depth + ) AS rn + FROM deployed_package_chain dpc + INNER JOIN dbo.dynamic_attribute da + ON da.package_id = dpc.package_id + WHERE da.attribute_name LIKE @attributeLike +), +primitive_attributes AS ( + SELECT + d.tag_name AS object_tag_name, + ad.attribute_name, + NULLIF(pi.primitive_name, N'') AS primitive_name, + d.mx_platform_id, + d.mx_engine_id, + d.mx_object_id, + pi.mx_primitive_id, + ad.mx_attribute_id, + CAST(10 AS int) AS property_id, + ad.mx_data_type, + ad.is_array, + ad.security_classification, + CAST(N'primitive' AS nvarchar(16)) AS attribute_source, + 1 AS rn + FROM deployed_objects d + INNER JOIN dbo.gobject g + ON g.gobject_id = d.gobject_id + INNER JOIN dbo.primitive_instance pi + ON pi.gobject_id = g.gobject_id + AND pi.package_id = g.deployed_package_id + AND pi.property_bitmask & 0x10 <> 0x10 + INNER JOIN dbo.attribute_definition ad + ON ad.primitive_definition_id = pi.primitive_definition_id + WHERE ad.attribute_name LIKE @attributeLike +) +SELECT TOP (@maxRows) + object_tag_name, + attribute_name, + primitive_name, + mx_platform_id, + mx_engine_id, + mx_object_id, + mx_primitive_id, + mx_attribute_id, + property_id, + mx_data_type, + is_array, + security_classification, + attribute_source +FROM ( + SELECT * FROM ranked_dynamic WHERE rn = 1 + UNION ALL + SELECT * FROM primitive_attributes +) resolved +ORDER BY object_tag_name, primitive_name, attribute_name +"""; +} diff --git a/src/MxNativeClient/GalaxyRepositoryUserResolver.cs b/src/MxNativeClient/GalaxyRepositoryUserResolver.cs new file mode 100644 index 0000000..8be62e2 --- /dev/null +++ b/src/MxNativeClient/GalaxyRepositoryUserResolver.cs @@ -0,0 +1,149 @@ +using Microsoft.Data.SqlClient; + +namespace MxNativeClient; + +public sealed record GalaxyUserProfile( + int UserProfileId, + string UserProfileName, + Guid UserGuid, + string DefaultSecurityGroup, + int? InTouchAccessLevel, + IReadOnlyList Roles); + +public sealed class GalaxyRepositoryUserResolver +{ + private const string DefaultConnectionString = + "Server=localhost;Database=ZB;Integrated Security=True;Encrypt=False;TrustServerCertificate=True"; + + private readonly string _connectionString; + + public GalaxyRepositoryUserResolver(string connectionString = DefaultConnectionString) + { + ArgumentException.ThrowIfNullOrWhiteSpace(connectionString); + _connectionString = connectionString; + } + + public async Task ResolveUserProfileIdByGuidAsync( + Guid userGuid, + CancellationToken cancellationToken = default) + { + GalaxyUserProfile profile = await ResolveByGuidAsync(userGuid, cancellationToken).ConfigureAwait(false); + return profile.UserProfileId; + } + + public async Task ResolveByGuidAsync( + Guid userGuid, + CancellationToken cancellationToken = default) + { + await using var connection = new SqlConnection(_connectionString); + await connection.OpenAsync(cancellationToken).ConfigureAwait(false); + + await using var command = connection.CreateCommand(); + command.CommandText = UserByGuidSql; + command.Parameters.AddWithValue("@userGuid", userGuid); + + await using SqlDataReader reader = await command.ExecuteReaderAsync(cancellationToken).ConfigureAwait(false); + if (!await reader.ReadAsync(cancellationToken).ConfigureAwait(false)) + { + throw new KeyNotFoundException($"Galaxy user GUID {userGuid} was not found in dbo.user_profile."); + } + + return ReadProfile(reader); + } + + public async Task ResolveByNameAsync( + string userName, + CancellationToken cancellationToken = default) + { + ArgumentException.ThrowIfNullOrWhiteSpace(userName); + + await using var connection = new SqlConnection(_connectionString); + await connection.OpenAsync(cancellationToken).ConfigureAwait(false); + + await using var command = connection.CreateCommand(); + command.CommandText = UserByNameSql; + command.Parameters.AddWithValue("@userName", userName); + + await using SqlDataReader reader = await command.ExecuteReaderAsync(cancellationToken).ConfigureAwait(false); + if (!await reader.ReadAsync(cancellationToken).ConfigureAwait(false)) + { + throw new KeyNotFoundException($"Galaxy user {userName} was not found in dbo.user_profile."); + } + + return ReadProfile(reader); + } + + private static GalaxyUserProfile ReadProfile(SqlDataReader reader) + { + return new GalaxyUserProfile( + reader.GetInt32(0), + reader.GetString(1), + reader.GetGuid(2), + reader.GetString(3), + reader.IsDBNull(4) ? null : reader.GetInt32(4), + reader.IsDBNull(5) ? [] : ParseRoleBlob(reader.GetString(5))); + } + + private static IReadOnlyList ParseRoleBlob(string rolesText) + { + if (!rolesText.StartsWith("0x", StringComparison.OrdinalIgnoreCase) || rolesText.Length <= 2) + { + return []; + } + + byte[] bytes = Convert.FromHexString(rolesText[2..]); + List roles = []; + for (int offset = 0; offset + 3 < bytes.Length; offset++) + { + List chars = []; + int cursor = offset; + while (cursor + 1 < bytes.Length) + { + char c = (char)(bytes[cursor] | (bytes[cursor + 1] << 8)); + if (c == '\0') + { + break; + } + + if (c < 0x20 || c > 0x7e) + { + chars.Clear(); + break; + } + + chars.Add(c); + cursor += 2; + } + + if (chars.Count < 2 || cursor + 1 >= bytes.Length || bytes[cursor] != 0 || bytes[cursor + 1] != 0) + { + continue; + } + + string role = new(chars.ToArray()); + if (!roles.Contains(role, StringComparer.OrdinalIgnoreCase)) + { + roles.Add(role); + } + + offset = cursor; + } + + return roles; + } + + private const string UserSelectSql = """ +SELECT TOP (1) + user_profile_id, + user_profile_name, + user_guid, + default_security_group, + intouch_access_level, + CONVERT(nvarchar(max), roles) AS roles_text +FROM dbo.user_profile +"""; + + private const string UserByGuidSql = UserSelectSql + "\nWHERE user_guid = @userGuid\nORDER BY user_profile_id"; + + private const string UserByNameSql = UserSelectSql + "\nWHERE user_profile_name = @userName\nORDER BY user_profile_id"; +} diff --git a/src/MxNativeClient/ManagedCallbackExporter.cs b/src/MxNativeClient/ManagedCallbackExporter.cs new file mode 100644 index 0000000..eff5091 --- /dev/null +++ b/src/MxNativeClient/ManagedCallbackExporter.cs @@ -0,0 +1,393 @@ +using System.Buffers.Binary; +using System.Net; +using System.Net.Sockets; + +namespace MxNativeClient; + +public sealed class ManagedCallbackExporter : IDisposable +{ + private readonly TcpListener _listener; + private readonly CancellationTokenSource _cancellation = new(); + private readonly Task _acceptLoop; + private readonly List _events = []; + private readonly object _eventsLock = new(); + private readonly ulong _oxid = RandomUInt64(); + private readonly ulong _oid = RandomUInt64(); + + public ManagedCallbackExporter(int port = 0) + { + CallbackIpid = Guid.NewGuid(); + RemUnknownIpid = Guid.NewGuid(); + _listener = new TcpListener(IPAddress.Any, port); + _listener.Start(); + Port = ((IPEndPoint)_listener.LocalEndpoint).Port; + _acceptLoop = Task.Run(AcceptLoopAsync); + } + + public int Port { get; } + + public Guid CallbackIpid { get; } + + public Guid RemUnknownIpid { get; } + + public IReadOnlyList Events + { + get + { + lock (_eventsLock) + { + return _events.ToArray(); + } + } + } + + public byte[] CreateCallbackObjRef(string hostName) + { + return ComObjRefBuilder.CreateStandardObjRef( + NmxProcedureMetadata.INmxSvcCallback, + stdFlags: 0x280, + publicRefs: 5, + oxid: _oxid, + oid: _oid, + ipid: CallbackIpid, + stringBindings: [$"{hostName}[{Port}]"]); + } + + public void Dispose() + { + _cancellation.Cancel(); + _listener.Stop(); + try + { + _acceptLoop.Wait(TimeSpan.FromSeconds(1)); + } + catch + { + } + + _cancellation.Dispose(); + } + + private async Task AcceptLoopAsync() + { + while (!_cancellation.IsCancellationRequested) + { + try + { + var client = await _listener.AcceptTcpClientAsync(_cancellation.Token).ConfigureAwait(false); + Record($"accept remote={client.Client.RemoteEndPoint}"); + _ = Task.Run(() => ServeClientAsync(client), _cancellation.Token); + } + catch (OperationCanceledException) + { + break; + } + catch (ObjectDisposedException) + { + break; + } + catch (Exception ex) + { + Record($"accept_error {ex.GetType().Name}: {ex.Message}"); + } + } + } + + private async Task ServeClientAsync(TcpClient client) + { + using (client) + { + NetworkStream stream = client.GetStream(); + ushort currentContext = 0; + Guid currentInterface = Guid.Empty; + + while (!_cancellation.IsCancellationRequested) + { + byte[]? pdu = await ReadPduAsync(stream, _cancellation.Token).ConfigureAwait(false); + if (pdu is null) + { + Record("client_closed"); + return; + } + + var header = DceRpcPduHeader.Parse(pdu); + Record($"pdu type={header.PacketType} flags=0x{header.PacketFlags:X2} frag={header.FragmentLength} auth={header.AuthLength} call={header.CallId}"); + + if (header.PacketType == DceRpcPacketType.Bind || header.PacketType == DceRpcPacketType.AlterContext) + { + var bind = DceRpcBindPdu.Parse(pdu); + currentContext = bind.PresentationContexts.Count == 0 ? (ushort)0 : bind.PresentationContexts[0].ContextId; + currentInterface = bind.PresentationContexts.Count == 0 ? Guid.Empty : bind.PresentationContexts[0].AbstractSyntax.Uuid; + Record($"bind context={currentContext} iid={currentInterface}"); + await stream.WriteAsync(EncodeBindAck(header.CallId, currentContext), _cancellation.Token).ConfigureAwait(false); + continue; + } + + if (header.PacketType == DceRpcPacketType.Request) + { + byte[] response = HandleRequest(pdu, header, currentContext, currentInterface); + await stream.WriteAsync(response, _cancellation.Token).ConfigureAwait(false); + continue; + } + + if (header.PacketType == DceRpcPacketType.Auth3) + { + Record("auth3_ignored"); + continue; + } + + Record($"unhandled_pdu {header.PacketType}"); + } + } + } + + private byte[] HandleRequest(byte[] pdu, DceRpcPduHeader header, ushort currentContext, Guid currentInterface) + { + int fixedOffset = DceRpcPduHeader.Length; + uint allocationHint = BinaryPrimitives.ReadUInt32LittleEndian(pdu.AsSpan(fixedOffset, 4)); + ushort contextId = BinaryPrimitives.ReadUInt16LittleEndian(pdu.AsSpan(fixedOffset + 4, 2)); + ushort opnum = BinaryPrimitives.ReadUInt16LittleEndian(pdu.AsSpan(fixedOffset + 6, 2)); + int stubOffset = fixedOffset + 8; + Guid? objectUuid = null; + if ((header.PacketFlags & 0x80) != 0) + { + objectUuid = new Guid(pdu.AsSpan(stubOffset, 16)); + stubOffset += 16; + } + + int trailerLength = header.AuthLength == 0 ? 0 : DceRpcAuthTrailer.Length + header.AuthLength; + int stubLength = header.FragmentLength - stubOffset - trailerLength; + ReadOnlySpan stub = pdu.AsSpan(stubOffset, Math.Max(0, stubLength)); + + Record($"request iid={currentInterface} context={contextId}/{currentContext} opnum={opnum} object={objectUuid} alloc={allocationHint} stub={stub.Length}"); + + if (currentInterface == RemUnknownMessages.IRemUnknown) + { + return opnum switch + { + RemUnknownMessages.RemQueryInterfaceOpnum => EncodeResponse(header.CallId, contextId, EncodeRemQueryInterfaceResponse(stub)), + RemUnknownMessages.RemAddRefOpnum => EncodeResponse(header.CallId, contextId, EncodeOrpcHResultResponse(0)), + RemUnknownMessages.RemReleaseOpnum => EncodeResponse(header.CallId, contextId, EncodeOrpcHResultResponse(0)), + _ => EncodeFault(header.CallId, contextId, 0x000006F7), + }; + } + + if (currentInterface == NmxSvcCallbackMessages.InterfaceId) + { + if (opnum is NmxSvcCallbackMessages.DataReceivedOpnum or NmxSvcCallbackMessages.StatusReceivedOpnum) + { + var parsed = NmxSvcCallbackMessages.ParseCallbackRequest(stub); + Record($"callback opnum={opnum} body={parsed.Body.Length}"); + return EncodeResponse(header.CallId, contextId, NmxSvcCallbackMessages.EncodeCallbackResponse(0)); + } + + return EncodeFault(header.CallId, contextId, 0x000006F7); + } + + return EncodeFault(header.CallId, contextId, 0x000006F7); + } + + private byte[] EncodeRemQueryInterfaceResponse(ReadOnlySpan request) + { + Guid requestedIid = request.Length >= 76 ? new Guid(request.Slice(60, 16)) : Guid.Empty; + Record($"remqi requested={requestedIid}"); + + var std = new StdObjRef(0x280, 5, _oxid, _oid, requestedIid == RemUnknownMessages.IRemUnknown ? RemUnknownIpid : CallbackIpid); + int hr = requestedIid == RemUnknownMessages.IRemUnknown + || requestedIid == NmxProcedureMetadata.INmxSvcCallback + || requestedIid == new Guid("00000000-0000-0000-C000-000000000046") + ? 0 + : unchecked((int)0x80004002); + + byte[] buffer = new byte[OrpcThat.EncodedLengthWithoutExtensions + 4 + 4 + RemQiResult.EncodedLength + 4]; + int offset = 0; + new OrpcThat(0, 0).Encode().CopyTo(buffer.AsSpan(offset)); + offset += OrpcThat.EncodedLengthWithoutExtensions; + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(offset, 4), 0x00020000); + offset += 4; + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(offset, 4), 1); + offset += 4; + BinaryPrimitives.WriteInt32LittleEndian(buffer.AsSpan(offset, 4), hr); + offset += 8; + std.Encode().CopyTo(buffer.AsSpan(offset)); + offset += StdObjRef.EncodedLength; + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(offset, 4), 0); + return buffer; + } + + private static byte[] EncodeOrpcHResultResponse(int hresult) + { + byte[] buffer = new byte[OrpcThat.EncodedLengthWithoutExtensions + 4]; + new OrpcThat(0, 0).Encode().CopyTo(buffer.AsSpan()); + BinaryPrimitives.WriteInt32LittleEndian(buffer.AsSpan(OrpcThat.EncodedLengthWithoutExtensions, 4), hresult); + return buffer; + } + + private static byte[] EncodeBindAck(uint callId, ushort contextId) + { + const string secondaryAddress = ""; + byte[] secondary = System.Text.Encoding.ASCII.GetBytes(secondaryAddress + "\0"); + int secAddrLength = secondary.Length; + int secPad = Align(28 + 2 + secAddrLength, 4) - (28 + 2 + secAddrLength); + int resultOffset = 28 + 2 + secAddrLength + secPad; + int length = resultOffset + 4 + 24; + byte[] pdu = new byte[length]; + new DceRpcPduHeader(5, 0, DceRpcPacketType.BindAck, 0x03, 0x10, (ushort)length, 0, callId).WriteTo(pdu); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(16, 2), 4280); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(18, 2), 4280); + BinaryPrimitives.WriteUInt32LittleEndian(pdu.AsSpan(20, 4), 0x00005353); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(24, 2), (ushort)secAddrLength); + secondary.CopyTo(pdu.AsSpan(26)); + int offset = resultOffset; + pdu[offset++] = 1; + pdu[offset++] = 0; + pdu[offset++] = 0; + pdu[offset++] = 0; + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(offset, 2), 0); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(offset + 2, 2), 0); + offset += 4; + DceRpcSyntaxId.Ndr20.Uuid.TryWriteBytes(pdu.AsSpan(offset, 16)); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(offset + 16, 2), DceRpcSyntaxId.Ndr20.VersionMajor); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(offset + 18, 2), DceRpcSyntaxId.Ndr20.VersionMinor); + _ = contextId; + return pdu; + } + + private static byte[] EncodeResponse(uint callId, ushort contextId, byte[] stubData) + { + int length = 24 + stubData.Length; + byte[] pdu = new byte[length]; + new DceRpcPduHeader(5, 0, DceRpcPacketType.Response, 0x03, 0x10, (ushort)length, 0, callId).WriteTo(pdu); + BinaryPrimitives.WriteUInt32LittleEndian(pdu.AsSpan(16, 4), (uint)stubData.Length); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(20, 2), contextId); + pdu[22] = 0; + pdu[23] = 0; + stubData.CopyTo(pdu.AsSpan(24)); + return pdu; + } + + private static byte[] EncodeFault(uint callId, ushort contextId, uint status) + { + byte[] pdu = new byte[28]; + new DceRpcPduHeader(5, 0, DceRpcPacketType.Fault, 0x03, 0x10, (ushort)pdu.Length, 0, callId).WriteTo(pdu); + BinaryPrimitives.WriteUInt32LittleEndian(pdu.AsSpan(16, 4), 0); + BinaryPrimitives.WriteUInt16LittleEndian(pdu.AsSpan(20, 2), contextId); + BinaryPrimitives.WriteUInt32LittleEndian(pdu.AsSpan(24, 4), status); + return pdu; + } + + private async Task ReadPduAsync(NetworkStream stream, CancellationToken cancellationToken) + { + byte[] header = new byte[DceRpcPduHeader.Length]; + if (!await ReadExactAsync(stream, header, cancellationToken).ConfigureAwait(false)) + { + return null; + } + + var parsed = DceRpcPduHeader.Parse(header); + byte[] pdu = new byte[parsed.FragmentLength]; + header.CopyTo(pdu, 0); + if (!await ReadExactAsync(stream, pdu.AsMemory(DceRpcPduHeader.Length), cancellationToken).ConfigureAwait(false)) + { + return null; + } + + return pdu; + } + + private static async Task ReadExactAsync(NetworkStream stream, Memory buffer, CancellationToken cancellationToken) + { + int offset = 0; + while (offset < buffer.Length) + { + int read = await stream.ReadAsync(buffer[offset..], cancellationToken).ConfigureAwait(false); + if (read == 0) + { + return false; + } + + offset += read; + } + + return true; + } + + private void Record(string message) + { + lock (_eventsLock) + { + _events.Add($"{DateTimeOffset.UtcNow:O} {message}"); + } + } + + private static int Align(int value, int alignment) + { + int remainder = value % alignment; + return remainder == 0 ? value : value + alignment - remainder; + } + + private static ulong RandomUInt64() + { + Span bytes = stackalloc byte[8]; + System.Security.Cryptography.RandomNumberGenerator.Fill(bytes); + return BinaryPrimitives.ReadUInt64LittleEndian(bytes); + } +} + +public static class ComObjRefBuilder +{ + public static byte[] CreateStandardObjRef( + Guid iid, + uint stdFlags, + uint publicRefs, + ulong oxid, + ulong oid, + Guid ipid, + IReadOnlyList stringBindings) + { + ushort securityOffset = (ushort)(stringBindings.Sum(binding => 1 + binding.Length + 1) + 1); + var words = new List(); + foreach (string binding in stringBindings) + { + words.Add(0x0007); + foreach (char ch in binding) + { + words.Add(ch); + } + + words.Add(0); + } + + words.Add(0); + foreach (ushort authenticationService in new ushort[] { 0x0009, 0x001e, 0x0010, 0x000a, 0x0016, 0x001f, 0x000e }) + { + words.Add(authenticationService); + words.Add(0xffff); + words.Add(0); + } + + words.Add(0); + + ushort entries = (ushort)words.Count; + byte[] buffer = new byte[68 + entries * 2]; + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(0, 4), 0x574F454D); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(4, 4), 1); + iid.TryWriteBytes(buffer.AsSpan(8, 16)); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(24, 4), stdFlags); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(28, 4), publicRefs); + BinaryPrimitives.WriteUInt64LittleEndian(buffer.AsSpan(32, 8), oxid); + BinaryPrimitives.WriteUInt64LittleEndian(buffer.AsSpan(40, 8), oid); + ipid.TryWriteBytes(buffer.AsSpan(48, 16)); + BinaryPrimitives.WriteUInt16LittleEndian(buffer.AsSpan(64, 2), entries); + BinaryPrimitives.WriteUInt16LittleEndian(buffer.AsSpan(66, 2), securityOffset); + + int offset = 68; + foreach (ushort word in words) + { + BinaryPrimitives.WriteUInt16LittleEndian(buffer.AsSpan(offset, 2), word); + offset += 2; + } + + return buffer; + } +} diff --git a/src/MxNativeClient/ManagedNmxService2Client.cs b/src/MxNativeClient/ManagedNmxService2Client.cs new file mode 100644 index 0000000..2031f44 --- /dev/null +++ b/src/MxNativeClient/ManagedNmxService2Client.cs @@ -0,0 +1,575 @@ +using System.Globalization; +using System.Runtime.InteropServices; +using MxNativeCodec; + +namespace MxNativeClient; + +public enum DceRpcClientAuthentication +{ + ManagedNtlm, + WindowsSspiNtlm, +} + +public sealed class ManagedNmxService2Client : IDisposable +{ + private readonly object _activatedComObject; + private readonly DceRpcTcpClient _serviceClient; + private readonly Guid _serviceIpid; + private bool _disposed; + + private ManagedNmxService2Client(object activatedComObject, DceRpcTcpClient serviceClient, Guid serviceIpid) + { + _activatedComObject = activatedComObject; + _serviceClient = serviceClient; + _serviceIpid = serviceIpid; + } + + public string Host { get; private init; } = string.Empty; + public int Port { get; private init; } + + public static ManagedNmxService2Client Create( + DceRpcClientAuthentication authentication = DceRpcClientAuthentication.ManagedNtlm) + { + var type = Type.GetTypeFromProgID("NmxSvc.NmxService", throwOnError: true) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService was not resolved."); + object instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService activation returned null."); + + try + { + var resolved = ResolveService(instance, authentication); + var serviceClient = new DceRpcTcpClient(resolved.Host, resolved.Port); + serviceClient.Connect(); + BindWithAuthentication( + serviceClient, + NmxService2Messages.InterfaceId, + authentication, + resolved.Host); + + return new ManagedNmxService2Client(instance, serviceClient, resolved.ServiceIpid) + { + Host = resolved.Host, + Port = resolved.Port, + }; + } + catch + { + if (Marshal.IsComObject(instance)) + { + _ = Marshal.ReleaseComObject(instance); + } + + throw; + } + } + + public int GetPartnerVersion(int galaxyId, int platformId, int engineId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeGetPartnerVersionRequest( + OrpcThis.Create(Guid.NewGuid()), + galaxyId, + platformId, + engineId); + var response = _serviceClient.CallBoundObject(_serviceIpid, NmxService2Messages.GetPartnerVersionOpnum, request); + var parsed = NmxService2Messages.ParseGetPartnerVersionResponse(response.StubData.Span); + ThrowIfFailed(parsed.HResult, nameof(GetPartnerVersion)); + return parsed.PartnerVersion; + } + + public int RegisterEngine2(int localEngineId, string engineName, int version, byte[] callbackObjRef) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeRegisterEngine2Request( + OrpcThis.Create(Guid.NewGuid()), + localEngineId, + engineName, + version, + callbackObjRef); + return CallForHResult(NmxService2Messages.RegisterEngine2Opnum, request); + } + + public int RegisterEngine2WithoutCallback(int localEngineId, string engineName, int version) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeRegisterEngine2Request( + OrpcThis.Create(Guid.NewGuid()), + localEngineId, + engineName, + version, + callbackObjRef: null); + return CallForHResult(NmxService2Messages.RegisterEngine2Opnum, request); + } + + public int UnregisterEngine(int localEngineId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeUnregisterEngineRequest( + OrpcThis.Create(Guid.NewGuid()), + localEngineId); + return CallForHResult(NmxService2Messages.UnregisterEngineOpnum, request); + } + + public int Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeConnectRequest( + OrpcThis.Create(Guid.NewGuid()), + localEngineId, + remoteGalaxyId, + remotePlatformId, + remoteEngineId); + return CallForHResult(NmxService2Messages.ConnectOpnum, request); + } + + public int AddSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeSubscriberEngineRequest( + OrpcThis.Create(Guid.NewGuid()), + localEngineId, + subscriberGalaxyId, + subscriberPlatformId, + subscriberEngineId); + return CallForHResult(NmxService2Messages.AddSubscriberEngineOpnum, request); + } + + public int RemoveSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeSubscriberEngineRequest( + OrpcThis.Create(Guid.NewGuid()), + localEngineId, + subscriberGalaxyId, + subscriberPlatformId, + subscriberEngineId); + return CallForHResult(NmxService2Messages.RemoveSubscriberEngineOpnum, request); + } + + public int SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] request = NmxService2Messages.EncodeSetHeartbeatSendIntervalRequest( + OrpcThis.Create(Guid.NewGuid()), + ticksPerBeat, + maxMissedTicks); + return CallForHResult(NmxService2Messages.SetHeartbeatSendIntervalOpnum, request); + } + + public int TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, ReadOnlySpan messageBody) + { + ObjectDisposedException.ThrowIf(_disposed, this); + ValidateTransferDataBody(messageBody, nameof(messageBody)); + byte[] request = NmxService2Messages.EncodeTransferDataRequest( + OrpcThis.Create(Guid.NewGuid()), + remoteGalaxyId, + remotePlatformId, + remoteEngineId, + messageBody); + return CallForHResult(NmxService2Messages.TransferDataOpnum, request); + } + + private static void ValidateTransferDataBody(ReadOnlySpan messageBody, string parameterName) + { + if (messageBody.IsEmpty) + { + throw new ArgumentException("TransferData body cannot be empty.", parameterName); + } + + NmxTransferEnvelopeTemplate.FromObserved(messageBody); + if (messageBody.Length == NmxTransferEnvelopeTemplate.HeaderLength) + { + throw new ArgumentException("TransferData body must include an inner message after the 46-byte envelope.", parameterName); + } + } + + internal static byte[] EncodeWriteTransferBody( + int localEngineId, + GalaxyTagMetadata tag, + object value, + int writeIndex = 1, + uint clientToken = 0, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + var projection = tag.ProjectWriteValue(value); + byte[] innerBody = NmxWriteMessage.Encode( + tag.ToReferenceHandle((byte)galaxyId), + projection.ValueKind, + projection.Value, + writeIndex, + clientToken); + return NmxTransferEnvelope.Encode( + NmxTransferMessageKind.Write, + localEngineId, + galaxyId, + tag.PlatformId, + tag.EngineId, + innerBody, + sourceGalaxyId, + sourcePlatformId); + } + + internal static byte[] EncodeWrite2TransferBody( + int localEngineId, + GalaxyTagMetadata tag, + object value, + DateTime timestamp, + int writeIndex = 1, + uint clientToken = 0, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + var projection = tag.ProjectWriteValue(value); + byte[] innerBody = NmxWriteMessage.EncodeTimestamped( + tag.ToReferenceHandle((byte)galaxyId), + projection.ValueKind, + projection.Value, + timestamp, + writeIndex, + clientToken); + return NmxTransferEnvelope.Encode( + NmxTransferMessageKind.Write, + localEngineId, + galaxyId, + tag.PlatformId, + tag.EngineId, + innerBody, + sourceGalaxyId, + sourcePlatformId); + } + + internal static byte[] EncodeWriteSecured2TransferBody( + int localEngineId, + GalaxyTagMetadata tag, + object value, + DateTime timestamp, + string clientName, + int currentUserId, + int verifierUserId, + int writeIndex = 1, + uint clientToken = 0, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + var projection = tag.ProjectWriteValue(value); + byte[] innerBody = NmxSecuredWrite2Message.Encode( + tag.ToReferenceHandle((byte)galaxyId), + projection.ValueKind, + projection.Value, + timestamp, + clientName, + NmxSecuredWrite2Message.ResolveObservedUserToken(currentUserId), + NmxSecuredWrite2Message.ResolveObservedUserToken(verifierUserId), + writeIndex, + clientToken); + return NmxTransferEnvelope.Encode( + NmxTransferMessageKind.Write, + localEngineId, + galaxyId, + tag.PlatformId, + tag.EngineId, + innerBody, + sourceGalaxyId, + sourcePlatformId); + } + + internal static byte[] EncodeAdviseSupervisoryTransferBody( + int localEngineId, + GalaxyTagMetadata tag, + Guid itemCorrelationId, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + byte[] innerBody = NmxItemControlMessage.FromReferenceHandle( + NmxItemControlCommand.AdviseSupervisory, + itemCorrelationId, + tag.ToReferenceHandle((byte)galaxyId)).Encode(); + return NmxTransferEnvelope.Encode( + NmxTransferMessageKind.ItemControl, + localEngineId, + galaxyId, + tag.PlatformId, + tag.EngineId, + innerBody, + sourceGalaxyId, + sourcePlatformId); + } + + public int Write( + int localEngineId, + GalaxyTagMetadata tag, + object value, + int writeIndex = 1, + uint clientToken = 0, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] transferBody = EncodeWriteTransferBody( + localEngineId, + tag, + value, + writeIndex, + clientToken, + galaxyId, + sourceGalaxyId, + sourcePlatformId); + return TransferData(galaxyId, tag.PlatformId, tag.EngineId, transferBody); + } + + public int Write2( + int localEngineId, + GalaxyTagMetadata tag, + object value, + DateTime timestamp, + int writeIndex = 1, + uint clientToken = 0, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] transferBody = EncodeWrite2TransferBody( + localEngineId, + tag, + value, + timestamp, + writeIndex, + clientToken, + galaxyId, + sourceGalaxyId, + sourcePlatformId); + return TransferData(galaxyId, tag.PlatformId, tag.EngineId, transferBody); + } + + public int WriteSecured2( + int localEngineId, + GalaxyTagMetadata tag, + object value, + DateTime timestamp, + string clientName, + int currentUserId, + int verifierUserId, + int writeIndex = 1, + uint clientToken = 0, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] transferBody = EncodeWriteSecured2TransferBody( + localEngineId, + tag, + value, + timestamp, + clientName, + currentUserId, + verifierUserId, + writeIndex, + clientToken, + galaxyId, + sourceGalaxyId, + sourcePlatformId); + return TransferData(galaxyId, tag.PlatformId, tag.EngineId, transferBody); + } + + public int AdviseSupervisory( + int localEngineId, + GalaxyTagMetadata tag, + Guid itemCorrelationId, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] transferBody = EncodeAdviseSupervisoryTransferBody( + localEngineId, + tag, + itemCorrelationId, + galaxyId, + sourceGalaxyId, + sourcePlatformId); + return TransferData(galaxyId, tag.PlatformId, tag.EngineId, transferBody); + } + + public int SendObservedPreAdviseMetadata( + int localEngineId, + Guid itemCorrelationId, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] innerBody = NmxMetadataQueryMessage.EncodeObservedPreAdvise(itemCorrelationId); + byte[] transferBody = NmxTransferEnvelope.Encode( + NmxTransferMessageKind.Metadata, + localEngineId, + galaxyId, + targetPlatformId: 1, + targetEngineId: 1, + innerBody, + sourceGalaxyId, + sourcePlatformId); + return TransferData(galaxyId, 1, 1, transferBody); + } + + public int RegisterReference( + int localEngineId, + GalaxyTagMetadata routeTag, + NmxReferenceRegistrationMessage message, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] transferBody = NmxTransferEnvelope.Encode( + NmxTransferMessageKind.ItemControl, + localEngineId, + galaxyId, + routeTag.PlatformId, + routeTag.EngineId, + message.Encode(), + sourceGalaxyId, + sourcePlatformId); + return TransferData(galaxyId, routeTag.PlatformId, routeTag.EngineId, transferBody); + } + + public int UnAdvise( + int localEngineId, + GalaxyTagMetadata tag, + Guid itemCorrelationId, + int galaxyId = 1, + int sourceGalaxyId = 1, + int sourcePlatformId = 1) + { + ObjectDisposedException.ThrowIf(_disposed, this); + byte[] innerBody = NmxItemControlMessage.FromReferenceHandle( + NmxItemControlCommand.UnAdvise, + itemCorrelationId, + tag.ToReferenceHandle((byte)galaxyId)).Encode(); + byte[] transferBody = NmxTransferEnvelope.Encode( + NmxTransferMessageKind.Write, + localEngineId, + galaxyId, + tag.PlatformId, + tag.EngineId, + innerBody, + sourceGalaxyId, + sourcePlatformId); + return TransferData(galaxyId, tag.PlatformId, tag.EngineId, transferBody); + } + + public void Dispose() + { + if (_disposed) + { + return; + } + + _serviceClient.Dispose(); + if (Marshal.IsComObject(_activatedComObject)) + { + _ = Marshal.ReleaseComObject(_activatedComObject); + } + + _disposed = true; + } + + private int CallForHResult(ushort opnum, byte[] request) + { + var response = _serviceClient.CallBoundObject(_serviceIpid, opnum, request); + var parsed = NmxService2Messages.ParseHResultResponse(response.StubData.Span); + return parsed.HResult; + } + + private static (string Host, int Port, Guid ServiceIpid) ResolveService( + object instance, + DceRpcClientAuthentication authentication) + { + byte[] buffer = ComObjRefProvider.MarshalIUnknownObjRef( + instance, + ComObjRefProvider.MarshalContextDifferentMachine); + var objRef = ComObjRef.Parse(buffer); + var exporter = new ObjectExporterClient(); + var oxidResponse = authentication == DceRpcClientAuthentication.ManagedNtlm + ? exporter.ResolveOxidWithManagedNtlmPacketIntegrity(objRef.Oxid) + : exporter.ResolveOxidWithNtlmPacketIntegrity(objRef.Oxid); + var resolved = ObjectExporterMessages.ParseResolveOxidResult(oxidResponse.StubData.Span); + var endpoint = resolved.Bindings.First(binding => binding.TowerId == ObjectExporterMessages.ProtseqNcacnIpTcp); + string host = ParseBracketedHost(endpoint.Value); + int port = ParseBracketedPort(endpoint.Value); + + using var client = new DceRpcTcpClient(host, port); + client.Connect(); + BindWithAuthentication(client, RemUnknownMessages.IRemUnknown, authentication, host); + byte[] request = RemUnknownMessages.EncodeRemQueryInterfaceRequest( + objRef.Ipid, + NmxProcedureMetadata.INmxService2, + Guid.NewGuid()); + var response = client.CallBoundObject(resolved.RemUnknownIpid, RemUnknownMessages.RemQueryInterfaceOpnum, request); + var parsed = RemUnknownMessages.ParseRemQueryInterfaceResponse(response.StubData.Span); + if (parsed.Result is null || parsed.Result.HResult != 0 || parsed.ErrorCode != 0) + { + throw new InvalidOperationException($"RemQueryInterface failed: hresult=0x{parsed.Result?.HResult ?? -1:X8}, error=0x{parsed.ErrorCode:X8}."); + } + + return (host, port, parsed.Result.StandardObjectReference.Ipid); + } + + private static void BindWithAuthentication( + DceRpcTcpClient client, + Guid interfaceId, + DceRpcClientAuthentication authentication, + string targetName) + { + if (authentication == DceRpcClientAuthentication.ManagedNtlm) + { + client.BindWithManagedNtlmPacketIntegrity(interfaceId, versionMajor: 0, versionMinor: 0); + return; + } + + client.BindWithNtlmPacketIntegrity(interfaceId, versionMajor: 0, versionMinor: 0, targetName); + } + + private static string ParseBracketedHost(string binding) + { + int open = binding.LastIndexOf('['); + if (open <= 0) + { + throw new FormatException($"Binding does not contain a bracketed host: {binding}"); + } + + return binding[..open]; + } + + private static int ParseBracketedPort(string binding) + { + int open = binding.LastIndexOf('['); + int close = binding.LastIndexOf(']'); + if (open < 0 || close <= open) + { + throw new FormatException($"Binding does not contain a bracketed port: {binding}"); + } + + return int.Parse(binding.AsSpan(open + 1, close - open - 1), CultureInfo.InvariantCulture); + } + + private static void ThrowIfFailed(int hresult, string operation) + { + if (hresult < 0) + { + Marshal.ThrowExceptionForHR(hresult); + } + + if (hresult != 0) + { + throw new InvalidOperationException($"{operation} returned application status 0x{hresult:X8}."); + } + } +} diff --git a/src/MxNativeClient/ManagedNtlmClientContext.cs b/src/MxNativeClient/ManagedNtlmClientContext.cs new file mode 100644 index 0000000..b131bb4 --- /dev/null +++ b/src/MxNativeClient/ManagedNtlmClientContext.cs @@ -0,0 +1,389 @@ +using System.Buffers.Binary; +using System.Numerics; +using System.Security.Cryptography; +using System.Text; + +namespace MxNativeClient; + +public sealed class ManagedNtlmClientContext +{ + private const uint NegotiateUnicode = 0x00000001; + private const uint RequestTarget = 0x00000004; + private const uint NegotiateSign = 0x00000010; + private const uint NegotiateSeal = 0x00000020; + private const uint NegotiateNtlm = 0x00000200; + private const uint NegotiateAlwaysSign = 0x00008000; + private const uint NegotiateExtendedSessionSecurity = 0x00080000; + private const uint NegotiateTargetInfo = 0x00800000; + private const uint NegotiateVersion = 0x02000000; + private const uint Negotiate128 = 0x20000000; + private const uint NegotiateKeyExchange = 0x40000000; + private const uint Negotiate56 = 0x80000000; + + private readonly string _user; + private readonly string _password; + private readonly string _domain; + private readonly string _workstation; + private uint _flags; + private byte[] _exportedSessionKey = []; + private byte[] _clientSigningKey = []; + private Rc4? _clientSealingHandle; + private uint _sequence; + + public ManagedNtlmClientContext(string user, string password, string domain, string? workstation = null) + { + _user = user; + _password = password; + _domain = domain; + _workstation = string.IsNullOrWhiteSpace(workstation) ? Environment.MachineName : workstation; + } + + public static ManagedNtlmClientContext FromEnvironment() + { + string user = Environment.GetEnvironmentVariable("MX_RPC_USER") + ?? throw new InvalidOperationException("MX_RPC_USER is required for managed NTLM."); + string password = Environment.GetEnvironmentVariable("MX_RPC_PASSWORD") + ?? throw new InvalidOperationException("MX_RPC_PASSWORD is required for managed NTLM."); + string domain = Environment.GetEnvironmentVariable("MX_RPC_DOMAIN") ?? string.Empty; + return new ManagedNtlmClientContext(user, password, domain); + } + + public byte[] CreateType1() + { + _flags = NegotiateKeyExchange + | NegotiateSign + | NegotiateAlwaysSign + | NegotiateSeal + | NegotiateTargetInfo + | NegotiateNtlm + | NegotiateExtendedSessionSecurity + | NegotiateUnicode + | RequestTarget + | Negotiate128 + | Negotiate56; + + byte[] message = new byte[32]; + Encoding.ASCII.GetBytes("NTLMSSP\0").CopyTo(message, 0); + BinaryPrimitives.WriteUInt32LittleEndian(message.AsSpan(8, 4), 1); + BinaryPrimitives.WriteUInt32LittleEndian(message.AsSpan(12, 4), _flags); + return message; + } + + public byte[] CreateType3(ReadOnlySpan type2) + { + var challenge = NtlmChallenge.Parse(type2); + _flags &= challenge.Flags; + + byte[] clientChallenge = RandomNumberGenerator.GetBytes(8); + byte[] targetInfo = BuildTargetInfo(challenge.TargetInfo); + byte[] responseKeyNt = HmacMd5(NtHash(_password), Encoding.Unicode.GetBytes(_user.ToUpperInvariant() + _domain)); + + byte[] temp = BuildNtlmV2Temp(clientChallenge, targetInfo); + byte[] ntProof = HmacMd5(responseKeyNt, Combine(challenge.ServerChallenge, temp)); + byte[] ntResponse = Combine(ntProof, temp); + byte[] lmResponse = Combine(HmacMd5(responseKeyNt, Combine(challenge.ServerChallenge, clientChallenge)), clientChallenge); + byte[] sessionBaseKey = HmacMd5(responseKeyNt, ntProof); + + _exportedSessionKey = RandomNumberGenerator.GetBytes(16); + byte[] encryptedSessionKey = new Rc4(sessionBaseKey).Transform(_exportedSessionKey); + _clientSigningKey = SignKey(_exportedSessionKey, clientMode: true); + _clientSealingHandle = new Rc4(SealKey(_exportedSessionKey, clientMode: true)); + _sequence = 0; + + byte[] domain = Encoding.Unicode.GetBytes(_domain); + byte[] user = Encoding.Unicode.GetBytes(_user); + byte[] workstation = Encoding.Unicode.GetBytes(_workstation); + + const int headerLength = 64; + int payloadLength = lmResponse.Length + ntResponse.Length + domain.Length + user.Length + workstation.Length + encryptedSessionKey.Length; + byte[] message = new byte[headerLength + payloadLength]; + Encoding.ASCII.GetBytes("NTLMSSP\0").CopyTo(message, 0); + BinaryPrimitives.WriteUInt32LittleEndian(message.AsSpan(8, 4), 3); + + int offset = headerLength; + WriteSecurityBuffer(message, 12, lmResponse, ref offset); + WriteSecurityBuffer(message, 20, ntResponse, ref offset); + WriteSecurityBuffer(message, 28, domain, ref offset); + WriteSecurityBuffer(message, 36, user, ref offset); + WriteSecurityBuffer(message, 44, workstation, ref offset); + WriteSecurityBuffer(message, 52, encryptedSessionKey, ref offset); + BinaryPrimitives.WriteUInt32LittleEndian(message.AsSpan(60, 4), _flags); + return message; + } + + public byte[] Sign(ReadOnlySpan message) + { + if (_clientSealingHandle is null || _clientSigningKey.Length == 0) + { + throw new InvalidOperationException("NTLM context has not completed Type3 negotiation."); + } + + byte[] sequenceBytes = new byte[4]; + BinaryPrimitives.WriteUInt32LittleEndian(sequenceBytes, _sequence); + byte[] digest = HmacMd5(_clientSigningKey, Combine(sequenceBytes, message.ToArray())); + byte[] checksum = _clientSealingHandle.Transform(digest[..8]); + + byte[] signature = new byte[16]; + BinaryPrimitives.WriteUInt32LittleEndian(signature.AsSpan(0, 4), 1); + checksum.CopyTo(signature.AsSpan(4, 8)); + BinaryPrimitives.WriteUInt32LittleEndian(signature.AsSpan(12, 4), _sequence); + _sequence++; + return signature; + } + + private static byte[] BuildNtlmV2Temp(byte[] clientChallenge, byte[] targetInfo) + { + byte[] temp = new byte[28 + targetInfo.Length]; + temp[0] = 1; + temp[1] = 1; + BinaryPrimitives.WriteInt64LittleEndian(temp.AsSpan(8, 8), DateTimeOffset.UtcNow.ToFileTime()); + clientChallenge.CopyTo(temp.AsSpan(16, 8)); + targetInfo.CopyTo(temp.AsSpan(28)); + return temp; + } + + private static byte[] BuildTargetInfo(ReadOnlySpan original) + { + var pairs = AvPair.ParseAll(original); + byte[]? dnsHost = pairs.FirstOrDefault(static pair => pair.Id == 3)?.Value; + if (dnsHost is not null) + { + byte[] prefix = Encoding.Unicode.GetBytes("cifs/"); + pairs.RemoveAll(static pair => pair.Id == 9); + pairs.Add(new AvPair(9, Combine(prefix, dnsHost))); + } + + if (!pairs.Any(static pair => pair.Id == 7)) + { + byte[] timestamp = new byte[8]; + BinaryPrimitives.WriteInt64LittleEndian(timestamp, DateTimeOffset.UtcNow.ToFileTime()); + pairs.Add(new AvPair(7, timestamp)); + } + + using var stream = new MemoryStream(); + Span header = stackalloc byte[4]; + foreach (var pair in pairs.Where(static pair => pair.Id != 0)) + { + BinaryPrimitives.WriteUInt16LittleEndian(header[..2], pair.Id); + BinaryPrimitives.WriteUInt16LittleEndian(header[2..], (ushort)pair.Value.Length); + stream.Write(header); + stream.Write(pair.Value); + } + + stream.Write(new byte[4]); + return stream.ToArray(); + } + + private static byte[] SignKey(byte[] sessionKey, bool clientMode) + { + string magic = clientMode + ? "session key to client-to-server signing key magic constant\0" + : "session key to server-to-client signing key magic constant\0"; + return MD5.HashData(Combine(sessionKey, Encoding.ASCII.GetBytes(magic))); + } + + private static byte[] SealKey(byte[] sessionKey, bool clientMode) + { + string magic = clientMode + ? "session key to client-to-server sealing key magic constant\0" + : "session key to server-to-client sealing key magic constant\0"; + return MD5.HashData(Combine(sessionKey, Encoding.ASCII.GetBytes(magic))); + } + + private static byte[] NtHash(string password) + { + return Md4.Hash(Encoding.Unicode.GetBytes(password)); + } + + private static byte[] HmacMd5(byte[] key, byte[] data) + { + using var hmac = new HMACMD5(key); + return hmac.ComputeHash(data); + } + + private static byte[] Combine(params byte[][] parts) + { + byte[] combined = new byte[parts.Sum(static part => part.Length)]; + int offset = 0; + foreach (byte[] part in parts) + { + part.CopyTo(combined.AsSpan(offset)); + offset += part.Length; + } + + return combined; + } + + private static void WriteSecurityBuffer(byte[] message, int descriptorOffset, byte[] value, ref int payloadOffset) + { + BinaryPrimitives.WriteUInt16LittleEndian(message.AsSpan(descriptorOffset, 2), (ushort)value.Length); + BinaryPrimitives.WriteUInt16LittleEndian(message.AsSpan(descriptorOffset + 2, 2), (ushort)value.Length); + BinaryPrimitives.WriteUInt32LittleEndian(message.AsSpan(descriptorOffset + 4, 4), (uint)payloadOffset); + value.CopyTo(message.AsSpan(payloadOffset)); + payloadOffset += value.Length; + } + + private sealed record NtlmChallenge(uint Flags, byte[] ServerChallenge, byte[] TargetInfo) + { + public static NtlmChallenge Parse(ReadOnlySpan message) + { + if (message.Length < 48 || !message[..8].SequenceEqual(Encoding.ASCII.GetBytes("NTLMSSP\0"))) + { + throw new ArgumentException("NTLM challenge is truncated or invalid.", nameof(message)); + } + + int targetInfoLength = BinaryPrimitives.ReadUInt16LittleEndian(message.Slice(40, 2)); + int targetInfoOffset = (int)BinaryPrimitives.ReadUInt32LittleEndian(message.Slice(44, 4)); + if (targetInfoOffset < 0 || targetInfoOffset + targetInfoLength > message.Length) + { + throw new ArgumentException("NTLM challenge target-info buffer is invalid.", nameof(message)); + } + + return new NtlmChallenge( + BinaryPrimitives.ReadUInt32LittleEndian(message.Slice(20, 4)), + message.Slice(24, 8).ToArray(), + message.Slice(targetInfoOffset, targetInfoLength).ToArray()); + } + } + + private sealed record AvPair(ushort Id, byte[] Value) + { + public static List ParseAll(ReadOnlySpan buffer) + { + var pairs = new List(); + int offset = 0; + while (offset + 4 <= buffer.Length) + { + ushort id = BinaryPrimitives.ReadUInt16LittleEndian(buffer.Slice(offset, 2)); + ushort length = BinaryPrimitives.ReadUInt16LittleEndian(buffer.Slice(offset + 2, 2)); + offset += 4; + if (id == 0) + { + break; + } + + if (offset + length > buffer.Length) + { + throw new ArgumentException("NTLM AV pair buffer is truncated.", nameof(buffer)); + } + + pairs.Add(new AvPair(id, buffer.Slice(offset, length).ToArray())); + offset += length; + } + + return pairs; + } + } + + private sealed class Rc4 + { + private readonly byte[] _s = new byte[256]; + private int _i; + private int _j; + + public Rc4(byte[] key) + { + for (int i = 0; i < 256; i++) + { + _s[i] = (byte)i; + } + + int j = 0; + for (int i = 0; i < 256; i++) + { + j = (j + _s[i] + key[i % key.Length]) & 0xff; + (_s[i], _s[j]) = (_s[j], _s[i]); + } + } + + public byte[] Transform(ReadOnlySpan input) + { + byte[] output = new byte[input.Length]; + for (int k = 0; k < input.Length; k++) + { + _i = (_i + 1) & 0xff; + _j = (_j + _s[_i]) & 0xff; + (_s[_i], _s[_j]) = (_s[_j], _s[_i]); + byte keyByte = _s[(_s[_i] + _s[_j]) & 0xff]; + output[k] = (byte)(input[k] ^ keyByte); + } + + return output; + } + } + + private static class Md4 + { + public static byte[] Hash(byte[] input) + { + uint a = 0x67452301; + uint b = 0xefcdab89; + uint c = 0x98badcfe; + uint d = 0x10325476; + + byte[] padded = Pad(input); + Span x = stackalloc uint[16]; + for (int offset = 0; offset < padded.Length; offset += 64) + { + uint aa = a; + uint bb = b; + uint cc = c; + uint dd = d; + for (int i = 0; i < 16; i++) + { + x[i] = BinaryPrimitives.ReadUInt32LittleEndian(padded.AsSpan(offset + i * 4, 4)); + } + + Round1(ref a, b, c, d, x[0], 3); Round1(ref d, a, b, c, x[1], 7); Round1(ref c, d, a, b, x[2], 11); Round1(ref b, c, d, a, x[3], 19); + Round1(ref a, b, c, d, x[4], 3); Round1(ref d, a, b, c, x[5], 7); Round1(ref c, d, a, b, x[6], 11); Round1(ref b, c, d, a, x[7], 19); + Round1(ref a, b, c, d, x[8], 3); Round1(ref d, a, b, c, x[9], 7); Round1(ref c, d, a, b, x[10], 11); Round1(ref b, c, d, a, x[11], 19); + Round1(ref a, b, c, d, x[12], 3); Round1(ref d, a, b, c, x[13], 7); Round1(ref c, d, a, b, x[14], 11); Round1(ref b, c, d, a, x[15], 19); + + Round2(ref a, b, c, d, x[0], 3); Round2(ref d, a, b, c, x[4], 5); Round2(ref c, d, a, b, x[8], 9); Round2(ref b, c, d, a, x[12], 13); + Round2(ref a, b, c, d, x[1], 3); Round2(ref d, a, b, c, x[5], 5); Round2(ref c, d, a, b, x[9], 9); Round2(ref b, c, d, a, x[13], 13); + Round2(ref a, b, c, d, x[2], 3); Round2(ref d, a, b, c, x[6], 5); Round2(ref c, d, a, b, x[10], 9); Round2(ref b, c, d, a, x[14], 13); + Round2(ref a, b, c, d, x[3], 3); Round2(ref d, a, b, c, x[7], 5); Round2(ref c, d, a, b, x[11], 9); Round2(ref b, c, d, a, x[15], 13); + + Round3(ref a, b, c, d, x[0], 3); Round3(ref d, a, b, c, x[8], 9); Round3(ref c, d, a, b, x[4], 11); Round3(ref b, c, d, a, x[12], 15); + Round3(ref a, b, c, d, x[2], 3); Round3(ref d, a, b, c, x[10], 9); Round3(ref c, d, a, b, x[6], 11); Round3(ref b, c, d, a, x[14], 15); + Round3(ref a, b, c, d, x[1], 3); Round3(ref d, a, b, c, x[9], 9); Round3(ref c, d, a, b, x[5], 11); Round3(ref b, c, d, a, x[13], 15); + Round3(ref a, b, c, d, x[3], 3); Round3(ref d, a, b, c, x[11], 9); Round3(ref c, d, a, b, x[7], 11); Round3(ref b, c, d, a, x[15], 15); + + a += aa; + b += bb; + c += cc; + d += dd; + } + + byte[] hash = new byte[16]; + BinaryPrimitives.WriteUInt32LittleEndian(hash.AsSpan(0, 4), a); + BinaryPrimitives.WriteUInt32LittleEndian(hash.AsSpan(4, 4), b); + BinaryPrimitives.WriteUInt32LittleEndian(hash.AsSpan(8, 4), c); + BinaryPrimitives.WriteUInt32LittleEndian(hash.AsSpan(12, 4), d); + return hash; + } + + private static byte[] Pad(byte[] input) + { + ulong bitLength = (ulong)input.Length * 8; + int paddedLength = input.Length + 1; + while (paddedLength % 64 != 56) + { + paddedLength++; + } + + byte[] padded = new byte[paddedLength + 8]; + input.CopyTo(padded.AsSpan()); + padded[input.Length] = 0x80; + BinaryPrimitives.WriteUInt64LittleEndian(padded.AsSpan(paddedLength, 8), bitLength); + return padded; + } + + private static uint F(uint x, uint y, uint z) => (x & y) | (~x & z); + private static uint G(uint x, uint y, uint z) => (x & y) | (x & z) | (y & z); + private static uint H(uint x, uint y, uint z) => x ^ y ^ z; + private static void Round1(ref uint a, uint b, uint c, uint d, uint x, int s) => a = BitOperations.RotateLeft(a + F(b, c, d) + x, s); + private static void Round2(ref uint a, uint b, uint c, uint d, uint x, int s) => a = BitOperations.RotateLeft(a + G(b, c, d) + x + 0x5a827999, s); + private static void Round3(ref uint a, uint b, uint c, uint d, uint x, int s) => a = BitOperations.RotateLeft(a + H(b, c, d) + x + 0x6ed9eba1, s); + } +} diff --git a/src/MxNativeClient/MxNativeClient.csproj b/src/MxNativeClient/MxNativeClient.csproj new file mode 100644 index 0000000..cdd1652 --- /dev/null +++ b/src/MxNativeClient/MxNativeClient.csproj @@ -0,0 +1,15 @@ + + + net10.0-windows + enable + enable + true + x64 + + + + + + + + diff --git a/src/MxNativeClient/MxNativeCompatibilityServer.cs b/src/MxNativeClient/MxNativeCompatibilityServer.cs new file mode 100644 index 0000000..82c4336 --- /dev/null +++ b/src/MxNativeClient/MxNativeCompatibilityServer.cs @@ -0,0 +1,910 @@ +using System.Globalization; +using MxNativeCodec; + +namespace MxNativeClient; + +public sealed record MxNativeDataChangeEvent( + int ServerHandle, + int ItemHandle, + object? Value, + ushort Quality, + DateTime TimestampUtc, + IReadOnlyList Statuses, + bool IsDuringRecovery = false); + +public sealed record MxNativeWriteCompleteEvent( + int ServerHandle, + int ItemHandle, + IReadOnlyList Statuses, + bool IsDuringRecovery = false); + +public sealed record MxNativeOperationCompleteEvent( + int ServerHandle, + int ItemHandle, + IReadOnlyList Statuses, + bool IsDuringRecovery = false); + +public sealed record MxNativeBufferedDataChangeEvent( + int ServerHandle, + int ItemHandle, + short MxDataType, + IReadOnlyList Values, + IReadOnlyList Qualities, + IReadOnlyList TimestampsUtc, + IReadOnlyList Statuses, + bool IsDuringRecovery = false); + +public sealed record MxNativeCompatibilityRecoveryAttemptEvent( + int ServerHandle, + int Attempt, + int MaxAttempts); + +public sealed record MxNativeCompatibilityRecoveryFailureEvent( + int ServerHandle, + int Attempt, + int MaxAttempts, + Exception Exception, + bool WillRetry); + +public sealed record MxNativeCompatibilityRecoveryCompletedEvent( + int ServerHandle, + int Attempt, + int MaxAttempts); + +public sealed class MxNativeCompatibilityServer : IDisposable +{ + private readonly object _gate = new(); + private readonly Dictionary _sessions = []; + private readonly Dictionary _items = []; + private readonly Dictionary _bufferedUpdateIntervals = []; + private readonly Dictionary _nextUserHandles = []; + private readonly Dictionary> _pendingWriteItems = []; + private int _nextServerHandle = 1; + private int _nextItemHandle = 1; + private bool _disposed; + + public event EventHandler? DataChanged; + public event EventHandler? BufferedDataChanged; + public event EventHandler? WriteCompleted; +#pragma warning disable CS0067 // OperationComplete has the MXAccess event shape, but no firing path is modeled until captures define its trigger. + public event EventHandler? OperationCompleted; +#pragma warning restore CS0067 + public event EventHandler? RecoveryAttemptStarted; + public event EventHandler? RecoveryAttemptFailed; + public event EventHandler? RecoveryCompleted; + + public int Register(string clientName) + { + ObjectDisposedException.ThrowIf(_disposed, this); + var session = MxNativeSession.Open(new MxNativeClientOptions + { + EngineName = string.IsNullOrWhiteSpace(clientName) ? $"MxNativeClient.{Environment.ProcessId}" : clientName, + }); + + int serverHandle; + lock (_gate) + { + serverHandle = _nextServerHandle++; + _sessions.Add(serverHandle, session); + _nextUserHandles.Add(serverHandle, 1); + _pendingWriteItems.Add(serverHandle, new Queue()); + } + + session.CallbackReceived += (_, evt) => OnCallbackReceived(serverHandle, evt); + session.OperationStatusReceived += (_, evt) => OnOperationStatusReceived(serverHandle, evt); + session.RecoveryAttemptStarted += (_, evt) => RecoveryAttemptStarted?.Invoke( + this, + new MxNativeCompatibilityRecoveryAttemptEvent(serverHandle, evt.Attempt, evt.MaxAttempts)); + session.RecoveryAttemptFailed += (_, evt) => RecoveryAttemptFailed?.Invoke( + this, + new MxNativeCompatibilityRecoveryFailureEvent( + serverHandle, + evt.Attempt, + evt.MaxAttempts, + evt.Exception, + evt.WillRetry)); + session.RecoveryCompleted += (_, evt) => RecoveryCompleted?.Invoke( + this, + new MxNativeCompatibilityRecoveryCompletedEvent(serverHandle, evt.Attempt, evt.MaxAttempts)); + return serverHandle; + } + + public void Unregister(int serverHandle) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + foreach (int itemHandle in _items + .Where(pair => pair.Value.ServerHandle == serverHandle) + .Select(pair => pair.Key) + .ToArray()) + { + _items.Remove(itemHandle); + } + + _sessions.Remove(serverHandle); + _bufferedUpdateIntervals.Remove(serverHandle); + _nextUserHandles.Remove(serverHandle); + _pendingWriteItems.Remove(serverHandle); + } + + session.Dispose(); + } + + public void RecoverConnection(int serverHandle) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + } + + session.RecoverConnection(); + } + + public async Task RecoverConnectionAsync( + int serverHandle, + MxNativeRecoveryPolicy? policy = null, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + } + + await session.RecoverConnectionAsync(policy, cancellationToken).ConfigureAwait(false); + } + + public int AddItem(int serverHandle, string itemDefinition) + { + return AddItemAsync(serverHandle, itemDefinition).GetAwaiter().GetResult(); + } + + public async Task AddItemAsync( + int serverHandle, + string itemDefinition, + CancellationToken cancellationToken = default) + { + return await AddItemCoreAsync(serverHandle, itemDefinition, itemContext: null, cancellationToken).ConfigureAwait(false); + } + + private async Task AddItemCoreAsync( + int serverHandle, + string itemDefinition, + string? itemContext, + CancellationToken cancellationToken) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + } + + GalaxyTagMetadata? metadata; + string resolvedReference; + try + { + (metadata, resolvedReference) = await ResolveWithOptionalContextAsync( + session, + itemDefinition, + itemContext, + cancellationToken).ConfigureAwait(false); + } + catch (InvalidOperationException ex) when (IsMissingReferenceResolution(ex)) + { + metadata = null; + resolvedReference = string.IsNullOrWhiteSpace(itemContext) + ? itemDefinition + : CombineItemContext(itemDefinition, itemContext); + } + + lock (_gate) + { + int itemHandle = _nextItemHandle++; + _items.Add( + itemHandle, + metadata is null + ? new CompatibilityItem( + serverHandle, + resolvedReference, + metadata: null, + isInvalidReference: true) + : new CompatibilityItem(serverHandle, resolvedReference, metadata)); + return itemHandle; + } + } + + public int AddItem2(int serverHandle, string itemDefinition, string itemContext) + { + return AddItemCoreAsync(serverHandle, itemDefinition, itemContext, CancellationToken.None).GetAwaiter().GetResult(); + } + + public void RemoveItem(int serverHandle, int itemHandle) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + CompatibilityItem item; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + _items.Remove(itemHandle); + } + + if (item.Subscription is not null) + { + session.Unsubscribe(item.Subscription.CorrelationId); + } + } + + public void Advise(int serverHandle, int itemHandle) + { + AdviseAsync(serverHandle, itemHandle).GetAwaiter().GetResult(); + } + + public Task AdviseSupervisoryAsync(int serverHandle, int itemHandle, CancellationToken cancellationToken = default) + { + return AdviseAsync(serverHandle, itemHandle, cancellationToken); + } + + public void AdviseSupervisory(int serverHandle, int itemHandle) + { + Advise(serverHandle, itemHandle); + } + + public async Task AdviseAsync( + int serverHandle, + int itemHandle, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + CompatibilityItem item; + bool fireInvalidReference = false; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + if (item.Subscription is not null) + { + return; + } + + if (item.IsInvalidReference) + { + item.IsAdvisedInvalidReference = true; + fireInvalidReference = true; + } + } + + if (fireInvalidReference) + { + ThreadPool.QueueUserWorkItem(_ => FireInvalidReferenceDataChange(serverHandle, itemHandle)); + return; + } + + if (item.Metadata is null) + { + throw new InvalidOperationException("Valid compatibility items must carry Galaxy metadata."); + } + + MxNativeSubscription subscription = item.IsBuffered + ? await session.RegisterBufferedItemAsync( + item.ItemDefinition, + item.ItemContext, + itemHandle, + cancellationToken).ConfigureAwait(false) + : await session.SubscribeAsync(item.TagReference, cancellationToken).ConfigureAwait(false); + lock (_gate) + { + if (_items.TryGetValue(itemHandle, out CompatibilityItem? current)) + { + current.Subscription = subscription; + } + } + } + + public void UnAdvise(int serverHandle, int itemHandle) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + CompatibilityItem item; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + if (item.IsInvalidReference) + { + item.IsAdvisedInvalidReference = false; + return; + } + + if (item.Subscription is null) + { + return; + } + } + + session.Unsubscribe(item.Subscription.CorrelationId); + lock (_gate) + { + if (_items.TryGetValue(itemHandle, out CompatibilityItem? current)) + { + current.Subscription = null; + } + } + } + + public void Write(int serverHandle, int itemHandle, object value, int userId = 0) + { + WriteAsync(serverHandle, itemHandle, value).GetAwaiter().GetResult(); + } + + public async Task WriteAsync( + int serverHandle, + int itemHandle, + object value, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + CompatibilityItem item; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + if (item.IsInvalidReference) + { + return; + } + + if (item.IsBuffered) + { + throw new ArgumentException("Normal Write is not valid for buffered item handles.", nameof(itemHandle)); + } + + if (item.Subscription is null) + { + throw new ArgumentException("Write requires an advised item handle.", nameof(itemHandle)); + } + + if (item.Metadata?.IsBufferProperty == true) + { + return; + } + + GetPendingWriteItemsLocked(serverHandle).Enqueue(itemHandle); + } + + try + { + await session.WriteAsync(item.TagReference, value, cancellationToken: cancellationToken).ConfigureAwait(false); + } + catch + { + lock (_gate) + { + RemovePendingWriteItemLocked(serverHandle, itemHandle); + } + + throw; + } + } + + public void Write2(int serverHandle, int itemHandle, object value, DateTime timestamp, int userId = 0) + { + Write2Async(serverHandle, itemHandle, value, timestamp).GetAwaiter().GetResult(); + } + + public void Write2(int serverHandle, int itemHandle, object value, object timestamp, int userId = 0) + { + Write2(serverHandle, itemHandle, value, CoerceWriteTimestamp(timestamp), userId); + } + + public async Task Write2Async( + int serverHandle, + int itemHandle, + object value, + DateTime timestamp, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + CompatibilityItem item; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + if (item.IsInvalidReference) + { + return; + } + + if (item.IsBuffered) + { + throw new ArgumentException("Normal Write2 is not valid for buffered item handles.", nameof(itemHandle)); + } + + if (item.Subscription is null) + { + throw new ArgumentException("Write2 requires an advised item handle.", nameof(itemHandle)); + } + + if (item.Metadata?.IsBufferProperty == true) + { + return; + } + + GetPendingWriteItemsLocked(serverHandle).Enqueue(itemHandle); + } + + try + { + await session.Write2Async(item.TagReference, value, timestamp, cancellationToken: cancellationToken).ConfigureAwait(false); + } + catch + { + lock (_gate) + { + RemovePendingWriteItemLocked(serverHandle, itemHandle); + } + + throw; + } + } + + public Task Write2Async( + int serverHandle, + int itemHandle, + object value, + object timestamp, + CancellationToken cancellationToken = default) + { + return Write2Async(serverHandle, itemHandle, value, CoerceWriteTimestamp(timestamp), cancellationToken); + } + + public void WriteSecured(int serverHandle, int itemHandle, int currentUserId, int verifierUserId, object value) + { + throw new NotSupportedException("Dedicated WriteSecured parity is not implemented because current MXAccess captures do not emit a successful NMX secured-write body."); + } + + public void WriteSecured2(int serverHandle, int itemHandle, int currentUserId, int verifierUserId, object value, DateTime timestamp) + { + WriteSecured2Async(serverHandle, itemHandle, value, timestamp, currentUserId, verifierUserId).GetAwaiter().GetResult(); + } + + public void WriteSecured2(int serverHandle, int itemHandle, int currentUserId, int verifierUserId, object value, object timestamp) + { + WriteSecured2(serverHandle, itemHandle, currentUserId, verifierUserId, value, CoerceWriteTimestamp(timestamp)); + } + + public async Task WriteSecured2Async(int serverHandle, int itemHandle, object value, DateTime timestamp, int currentUserId, int verifierUserId = 0) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + CompatibilityItem item; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + item = GetItemLocked(serverHandle, itemHandle); + } + + await session.WriteSecured2Async( + item.TagReference, + value, + timestamp, + currentUserId, + verifierUserId).ConfigureAwait(false); + } + + public Task WriteSecured2Async( + int serverHandle, + int itemHandle, + object value, + object timestamp, + int currentUserId, + int verifierUserId = 0) + { + return WriteSecured2Async( + serverHandle, + itemHandle, + value, + CoerceWriteTimestamp(timestamp), + currentUserId, + verifierUserId); + } + + public int AuthenticateUser(int serverHandle, string verifyUser, string verifyUserPassword) + { + ObjectDisposedException.ThrowIf(_disposed, this); + ArgumentNullException.ThrowIfNull(verifyUser); + _ = verifyUserPassword; + lock (_gate) + { + _ = GetSessionLocked(serverHandle); + return AllocateUserHandleLocked(serverHandle); + } + } + + public int ArchestrAUserToId(int serverHandle, string userIdGuid) + { + ObjectDisposedException.ThrowIf(_disposed, this); + lock (_gate) + { + _ = GetSessionLocked(serverHandle); + } + + if (!Guid.TryParse(userIdGuid, out Guid parsedGuid)) + { + throw new ArgumentException("ArchestrA user ID must be a GUID string.", nameof(userIdGuid)); + } + + lock (_gate) + { + return AllocateUserHandleLocked(serverHandle); + } + } + + public void Suspend(int serverHandle, int itemHandle, out MxStatus status) + { + ObjectDisposedException.ThrowIf(_disposed, this); + lock (_gate) + { + _ = GetSessionLocked(serverHandle); + CompatibilityItem item = GetItemLocked(serverHandle, itemHandle); + if (item.Subscription is null) + { + status = new MxStatus(0, MxStatusCategory.Unknown, MxStatusSource.Unknown, 0); + throw new ArgumentException("Suspend requires an advised item handle.", nameof(itemHandle)); + } + } + + status = MxStatus.SuspendPending; + } + + public void Activate(int serverHandle, int itemHandle, out MxStatus status) + { + ObjectDisposedException.ThrowIf(_disposed, this); + lock (_gate) + { + _ = GetSessionLocked(serverHandle); + CompatibilityItem item = GetItemLocked(serverHandle, itemHandle); + if (item.Subscription is null) + { + status = new MxStatus(0, MxStatusCategory.Unknown, MxStatusSource.Unknown, 0); + throw new ArgumentException("Activate requires an advised item handle.", nameof(itemHandle)); + } + } + + status = MxStatus.ActivateOk; + } + + public int AddBufferedItem(int serverHandle, string itemDefinition, string itemContext) + { + return AddBufferedItemAsync(serverHandle, itemDefinition, itemContext).GetAwaiter().GetResult(); + } + + public async Task AddBufferedItemAsync( + int serverHandle, + string itemDefinition, + string itemContext, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + MxNativeSession session; + lock (_gate) + { + session = GetSessionLocked(serverHandle); + } + + (GalaxyTagMetadata metadata, string routeReference) = await ResolveWithOptionalContextAsync( + session, + itemDefinition, + itemContext, + cancellationToken).ConfigureAwait(false); + lock (_gate) + { + int itemHandle = _nextItemHandle++; + _items.Add( + itemHandle, + new CompatibilityItem( + serverHandle, + routeReference, + metadata, + isBuffered: true, + itemDefinition: itemDefinition, + itemContext: itemContext)); + return itemHandle; + } + } + + public void SetBufferedUpdateInterval(int serverHandle, int updateInterval) + { + ObjectDisposedException.ThrowIf(_disposed, this); + if (updateInterval <= 0) + { + throw new ArgumentOutOfRangeException(nameof(updateInterval), updateInterval, "Buffered update interval must be positive."); + } + + lock (_gate) + { + _ = GetSessionLocked(serverHandle); + _bufferedUpdateIntervals[serverHandle] = ((updateInterval + 99) / 100) * 100; + } + } + + public void Dispose() + { + if (_disposed) + { + return; + } + + MxNativeSession[] sessions; + lock (_gate) + { + sessions = _sessions.Values.ToArray(); + _sessions.Clear(); + _items.Clear(); + _bufferedUpdateIntervals.Clear(); + _nextUserHandles.Clear(); + _pendingWriteItems.Clear(); + } + + foreach (MxNativeSession session in sessions) + { + session.Dispose(); + } + + _disposed = true; + } + + private void OnCallbackReceived(int serverHandle, MxNativeCallbackEvent evt) + { + int itemHandle; + CompatibilityItem? item; + lock (_gate) + { + var matched = _items.FirstOrDefault(pair => + pair.Value.ServerHandle == serverHandle && + pair.Value.Subscription?.CorrelationId == evt.Message.ItemCorrelationId); + itemHandle = matched.Key; + item = matched.Value; + } + + if (itemHandle == 0 || item is null) + { + return; + } + + if (evt.Record.Value is null) + { + return; + } + + if (item.IsBuffered) + { + BufferedDataChanged?.Invoke( + this, + new MxNativeBufferedDataChangeEvent( + serverHandle, + itemHandle, + item.Metadata?.MxDataType ?? 0, + [evt.Record.Value], + [evt.Record.Quality], + [evt.Record.TimestampUtc], + [evt.Status], + evt.IsDuringRecovery)); + return; + } + + if (item.Metadata is not null && ShouldSuppressCompatibilityDataChange(item.Metadata, evt.Record.Value)) + { + return; + } + + DataChanged?.Invoke( + this, + new MxNativeDataChangeEvent( + serverHandle, + itemHandle, + evt.Record.Value, + evt.Record.Quality, + evt.Record.TimestampUtc, + [evt.Status], + evt.IsDuringRecovery)); + } + + internal static bool ShouldSuppressCompatibilityDataChange(GalaxyTagMetadata metadata, object value) + { + return metadata.MxDataType == (short)MxDataType.InternationalizedString + && value is string text + && text.Length == 0; + } + + private void FireInvalidReferenceDataChange(int serverHandle, int itemHandle) + { + DataChanged?.Invoke( + this, + new MxNativeDataChangeEvent( + serverHandle, + itemHandle, + Value: null, + Quality: 0, + TimestampUtc: DateTime.UtcNow, + [MxStatus.InvalidReferenceConfiguration])); + } + + private void OnOperationStatusReceived(int serverHandle, MxNativeOperationStatusEvent evt) + { + int itemHandle; + lock (_gate) + { + if (!_pendingWriteItems.TryGetValue(serverHandle, out Queue? pendingItems) + || !pendingItems.TryDequeue(out itemHandle)) + { + return; + } + } + + if (!evt.Message.IsMxAccessWriteComplete) + { + return; + } + + WriteCompleted?.Invoke( + this, + new MxNativeWriteCompleteEvent(serverHandle, itemHandle, [evt.Message.Status], evt.IsDuringRecovery)); + } + + private MxNativeSession GetSessionLocked(int serverHandle) + { + if (!_sessions.TryGetValue(serverHandle, out MxNativeSession? session)) + { + throw new ArgumentException("Unknown MX native server handle.", nameof(serverHandle)); + } + + return session; + } + + private CompatibilityItem GetItemLocked(int serverHandle, int itemHandle) + { + if (!_items.TryGetValue(itemHandle, out CompatibilityItem? item) || item.ServerHandle != serverHandle) + { + throw new ArgumentException("Unknown MX native item handle.", nameof(itemHandle)); + } + + return item; + } + + private int AllocateUserHandleLocked(int serverHandle) + { + int next = _nextUserHandles.TryGetValue(serverHandle, out int value) ? value : 1; + _nextUserHandles[serverHandle] = next + 1; + return next; + } + + private Queue GetPendingWriteItemsLocked(int serverHandle) + { + if (!_pendingWriteItems.TryGetValue(serverHandle, out Queue? pendingItems)) + { + pendingItems = new Queue(); + _pendingWriteItems.Add(serverHandle, pendingItems); + } + + return pendingItems; + } + + private static bool IsMissingReferenceResolution(InvalidOperationException ex) + { + return ex.Message.Contains("was not found in the deployed repository metadata", StringComparison.Ordinal); + } + + private static string CombineItemContext(string itemDefinition, string itemContext) + { + if (string.IsNullOrWhiteSpace(itemContext)) + { + return itemDefinition; + } + + string trimmedContext = itemContext.TrimEnd('.'); + string trimmedDefinition = itemDefinition.TrimStart('.'); + return trimmedDefinition.StartsWith(trimmedContext + ".", StringComparison.OrdinalIgnoreCase) + ? trimmedDefinition + : $"{trimmedContext}.{trimmedDefinition}"; + } + + private static async Task<(GalaxyTagMetadata Metadata, string ResolvedReference)> ResolveWithOptionalContextAsync( + MxNativeSession session, + string itemDefinition, + string? itemContext, + CancellationToken cancellationToken) + { + try + { + GalaxyTagMetadata metadata = await session.ResolveTagAsync(itemDefinition, cancellationToken).ConfigureAwait(false); + return (metadata, itemDefinition); + } + catch (Exception ex) when (!string.IsNullOrWhiteSpace(itemContext) && CanRetryWithItemContext(ex)) + { + string combinedReference = CombineItemContext(itemDefinition, itemContext); + GalaxyTagMetadata metadata = await session.ResolveTagAsync(combinedReference, cancellationToken).ConfigureAwait(false); + return (metadata, combinedReference); + } + } + + private static bool CanRetryWithItemContext(Exception ex) + { + return ex is ArgumentException + || (ex is InvalidOperationException invalidOperation && IsMissingReferenceResolution(invalidOperation)); + } + + private static DateTime CoerceWriteTimestamp(object timestamp) + { + return timestamp switch + { + DateTime dateTime => dateTime, + DateTimeOffset dateTimeOffset => dateTimeOffset.UtcDateTime, + double oaDate => DateTime.FromOADate(oaDate), + float oaDate => DateTime.FromOADate(oaDate), + decimal oaDate => DateTime.FromOADate((double)oaDate), + string text when DateTime.TryParse( + text, + CultureInfo.InvariantCulture, + DateTimeStyles.AssumeLocal, + out DateTime parsed) => parsed, + _ => throw new ArgumentException( + "Timestamp must be a DateTime, DateTimeOffset, OLE Automation date, or invariant parseable date/time string.", + nameof(timestamp)), + }; + } + + private void RemovePendingWriteItemLocked(int serverHandle, int itemHandle) + { + if (!_pendingWriteItems.TryGetValue(serverHandle, out Queue? pendingItems) + || pendingItems.Count == 0) + { + return; + } + + int pendingCount = pendingItems.Count; + bool removed = false; + for (int i = 0; i < pendingCount; i++) + { + int pendingItem = pendingItems.Dequeue(); + if (!removed && pendingItem == itemHandle) + { + removed = true; + continue; + } + + pendingItems.Enqueue(pendingItem); + } + } + + private sealed class CompatibilityItem( + int serverHandle, + string tagReference, + GalaxyTagMetadata? metadata, + bool isBuffered = false, + bool isInvalidReference = false, + string itemDefinition = "", + string itemContext = "") + { + public int ServerHandle { get; } = serverHandle; + public string TagReference { get; } = tagReference; + public GalaxyTagMetadata? Metadata { get; } = metadata; + public bool IsBuffered { get; } = isBuffered; + public bool IsInvalidReference { get; } = isInvalidReference; + public string ItemDefinition { get; } = itemDefinition; + public string ItemContext { get; } = itemContext; + public MxNativeSubscription? Subscription { get; set; } + public bool IsAdvisedInvalidReference { get; set; } + } +} diff --git a/src/MxNativeClient/MxNativeSession.cs b/src/MxNativeClient/MxNativeSession.cs new file mode 100644 index 0000000..7b7dab7 --- /dev/null +++ b/src/MxNativeClient/MxNativeSession.cs @@ -0,0 +1,669 @@ +using System.Runtime.InteropServices; +using System.Threading; +using MxNativeCodec; + +namespace MxNativeClient; + +public sealed record MxNativeClientOptions +{ + public int LocalEngineId { get; init; } = GenerateDefaultLocalEngineId(); + public string EngineName { get; init; } = $"MxNativeClient.{Environment.ProcessId}"; + public int PartnerVersion { get; init; } = 6; + public int GalaxyId { get; init; } = 1; + public int SourcePlatformId { get; init; } = 1; + public DceRpcClientAuthentication Authentication { get; init; } = DceRpcClientAuthentication.ManagedNtlm; + public int? HeartbeatTicksPerBeat { get; init; } + public int HeartbeatMaxMissedTicks { get; init; } = 3; + + private static int GenerateDefaultLocalEngineId() + { + return 0x7000 + (Environment.ProcessId & 0x0fff); + } +} + +public sealed record MxNativeRecoveryPolicy +{ + public static MxNativeRecoveryPolicy SingleAttempt { get; } = new(); + + public int MaxAttempts { get; init; } = 1; + public TimeSpan Delay { get; init; } = TimeSpan.Zero; + + public void Validate() + { + if (MaxAttempts < 1) + { + throw new ArgumentOutOfRangeException(nameof(MaxAttempts), "Recovery attempts must be at least one."); + } + + if (Delay < TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(Delay), "Recovery delay cannot be negative."); + } + } +} + +public sealed record MxNativeRecoveryAttemptEvent(int Attempt, int MaxAttempts); + +public sealed record MxNativeRecoveryFailureEvent( + int Attempt, + int MaxAttempts, + Exception Exception, + bool WillRetry); + +public sealed record MxNativeRecoveryCompletedEvent(int Attempt, int MaxAttempts); + +public sealed record MxNativeSubscription( + Guid CorrelationId, + string TagReference, + GalaxyTagMetadata Metadata, + bool IsBuffered = false, + string BufferedItemDefinition = "", + string BufferedItemContext = "", + int BufferedItemHandle = 0); + +public sealed record MxNativeCallbackEvent( + NmxSubscriptionMessage Message, + NmxSubscriptionRecord Record, + byte[] RawBody, + bool IsDuringRecovery = false) +{ + public MxStatus Status => Record.ToDataChangeStatus(); +} + +public sealed record MxNativeOperationStatusEvent( + NmxOperationStatusMessage Message, + byte[] RawBody, + bool IsDuringRecovery = false); + +public sealed record MxNativeReferenceRegistrationEvent( + NmxReferenceRegistrationResultMessage Message, + byte[] RawBody, + bool IsDuringRecovery = false); + +public sealed record MxNativeUnparsedCallbackEvent( + byte[] RawBody, + string ParseError, + bool IsDuringRecovery = false); + +public sealed class MxNativeSession : IDisposable +{ + private readonly MxNativeClientOptions _options; + private readonly GalaxyRepositoryTagResolver _resolver; + private readonly NmxCallbackSink _callback; + private readonly GCHandle _callbackHandle; + private readonly Dictionary _subscriptions = []; + private readonly HashSet _publisherEndpoints = []; + private ManagedNmxService2Client _service; + private int _recoveryActive; + private bool _disposed; + + private MxNativeSession( + MxNativeClientOptions options, + ManagedNmxService2Client service, + GalaxyRepositoryTagResolver resolver, + NmxCallbackSink callback, + GCHandle callbackHandle) + { + _options = options; + _service = service; + _resolver = resolver; + _callback = callback; + _callbackHandle = callbackHandle; + + _callback.DataReceived += OnCallbackReceived; + _callback.StatusReceived += OnCallbackReceived; + } + + public event EventHandler? CallbackReceived; + public event EventHandler? OperationStatusReceived; + public event EventHandler? ReferenceRegistrationReceived; + public event EventHandler? UnparsedCallbackReceived; + public event EventHandler? RecoveryAttemptStarted; + public event EventHandler? RecoveryAttemptFailed; + public event EventHandler? RecoveryCompleted; + + public IReadOnlyCollection Subscriptions => _subscriptions.Values; + + public static MxNativeSession Open(MxNativeClientOptions? options = null) + { + options ??= new MxNativeClientOptions(); + var callback = new NmxCallbackSink(); + var callbackHandle = GCHandle.Alloc(callback); + + try + { + return new MxNativeSession( + options, + CreateRegisteredService(options, callback), + new GalaxyRepositoryTagResolver(), + callback, + callbackHandle); + } + catch + { + callbackHandle.Free(); + throw; + } + } + + public Task ResolveTagAsync(string tagReference, CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + return _resolver.ResolveAsync(tagReference, cancellationToken); + } + + public Task> BrowseAsync( + string objectTagLike = "%", + string attributeLike = "%", + int maxRows = 100, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + return _resolver.BrowseAsync(objectTagLike, attributeLike, maxRows, cancellationToken); + } + + public async Task WriteAsync( + string tagReference, + object value, + int writeIndex = 1, + uint clientToken = 0, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + GalaxyTagMetadata tag = await ResolveTagAsync(tagReference, cancellationToken).ConfigureAwait(false); + EnsureSucceeded( + _service.Write( + _options.LocalEngineId, + tag, + value, + writeIndex, + clientToken, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.Write)); + } + + public async Task Write2Async( + string tagReference, + object value, + DateTime timestamp, + int writeIndex = 1, + uint clientToken = 0, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + GalaxyTagMetadata tag = await ResolveTagAsync(tagReference, cancellationToken).ConfigureAwait(false); + EnsureSucceeded( + _service.Write2( + _options.LocalEngineId, + tag, + value, + timestamp, + writeIndex, + clientToken, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.Write2)); + } + + public Task WriteSecuredAsync( + string tagReference, + object value, + int currentUserId, + int verifierUserId = 0, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + throw new NotSupportedException( + "Dedicated MXAccess WriteSecured parity is not implemented. Captures 036, 038, and 039 show the installed MXAccess WriteSecured method returning 0x80004021 before emitting an NMX write body; normal Write to secured-classified public tags is supported through WriteAsync."); + } + + public async Task WriteSecured2Async( + string tagReference, + object value, + DateTime timestamp, + int currentUserId, + int verifierUserId = 0, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + GalaxyTagMetadata tag = await ResolveTagAsync(tagReference, cancellationToken).ConfigureAwait(false); + EnsureSucceeded( + _service.WriteSecured2( + _options.LocalEngineId, + tag, + value, + timestamp, + _options.EngineName, + currentUserId, + verifierUserId, + writeIndex: 1, + clientToken: 0, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.WriteSecured2)); + } + + public async Task SubscribeAsync( + string tagReference, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + GalaxyTagMetadata tag = await ResolveTagAsync(tagReference, cancellationToken).ConfigureAwait(false); + EnsurePublisherConnected(tag); + + var subscription = new MxNativeSubscription(Guid.NewGuid(), tagReference, tag); + EnsureSucceeded( + _service.AdviseSupervisory( + _options.LocalEngineId, + tag, + subscription.CorrelationId, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.AdviseSupervisory)); + _subscriptions.Add(subscription.CorrelationId, subscription); + return subscription; + } + + public async Task RegisterBufferedItemAsync( + string itemDefinition, + string itemContext, + int itemHandle, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + string routeReference = string.IsNullOrWhiteSpace(itemContext) + ? itemDefinition + : $"{itemContext.TrimEnd('.')}.{itemDefinition.TrimStart('.')}"; + GalaxyTagMetadata routeTag = await ResolveTagAsync(routeReference, cancellationToken).ConfigureAwait(false); + EnsurePublisherConnected(routeTag); + + var subscription = new MxNativeSubscription( + Guid.NewGuid(), + routeReference, + routeTag, + IsBuffered: true, + BufferedItemDefinition: itemDefinition, + BufferedItemContext: itemContext, + BufferedItemHandle: itemHandle); + var message = new NmxReferenceRegistrationMessage( + itemHandle, + subscription.CorrelationId, + NmxReferenceRegistrationMessage.ToBufferedItemDefinition(itemDefinition), + itemContext, + Subscribe: true); + EnsureSucceeded( + _service.RegisterReference( + _options.LocalEngineId, + routeTag, + message, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.RegisterReference)); + _subscriptions.Add(subscription.CorrelationId, subscription); + return subscription; + } + + public async Task ReadAsync( + string tagReference, + TimeSpan timeout, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + if (timeout <= TimeSpan.Zero) + { + throw new ArgumentOutOfRangeException(nameof(timeout), "Read timeout must be positive."); + } + + using var timeoutSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken); + timeoutSource.CancelAfter(timeout); + + var completion = new TaskCompletionSource( + TaskCreationOptions.RunContinuationsAsynchronously); + MxNativeSubscription? subscription = null; + using CancellationTokenRegistration cancellation = timeoutSource.Token.Register( + static state => ((TaskCompletionSource)state!).TrySetCanceled(), + completion); + + EventHandler handler = (_, evt) => + { + if (subscription is null || + evt.Message.ItemCorrelationId != subscription.CorrelationId || + evt.Record.Value is null) + { + return; + } + + completion.TrySetResult(evt.Record.Value); + }; + + CallbackReceived += handler; + try + { + subscription = await SubscribeAsync(tagReference, timeoutSource.Token).ConfigureAwait(false); + return await completion.Task.ConfigureAwait(false); + } + finally + { + CallbackReceived -= handler; + if (subscription is not null && _subscriptions.ContainsKey(subscription.CorrelationId)) + { + Unsubscribe(subscription.CorrelationId); + } + } + } + + public void Unsubscribe(Guid correlationId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + if (!_subscriptions.Remove(correlationId, out MxNativeSubscription? subscription)) + { + return; + } + + if (!subscription.IsBuffered) + { + EnsureSucceeded( + _service.UnAdvise( + _options.LocalEngineId, + subscription.Metadata, + subscription.CorrelationId, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.UnAdvise)); + } + } + + public void RecoverConnection() + { + ObjectDisposedException.ThrowIf(_disposed, this); + try + { + RecoveryAttemptStarted?.Invoke(this, new MxNativeRecoveryAttemptEvent(1, 1)); + RecoverConnectionCore(); + RecoveryCompleted?.Invoke(this, new MxNativeRecoveryCompletedEvent(1, 1)); + } + catch (Exception ex) when (IsRecoverableRecoveryException(ex)) + { + RecoveryAttemptFailed?.Invoke(this, new MxNativeRecoveryFailureEvent(1, 1, ex, WillRetry: false)); + throw; + } + } + + public async Task RecoverConnectionAsync( + MxNativeRecoveryPolicy? policy = null, + CancellationToken cancellationToken = default) + { + ObjectDisposedException.ThrowIf(_disposed, this); + policy ??= MxNativeRecoveryPolicy.SingleAttempt; + policy.Validate(); + + Exception? lastError = null; + for (int attempt = 1; attempt <= policy.MaxAttempts; attempt++) + { + cancellationToken.ThrowIfCancellationRequested(); + RecoveryAttemptStarted?.Invoke(this, new MxNativeRecoveryAttemptEvent(attempt, policy.MaxAttempts)); + try + { + RecoverConnectionCore(); + RecoveryCompleted?.Invoke(this, new MxNativeRecoveryCompletedEvent(attempt, policy.MaxAttempts)); + return; + } + catch (Exception ex) when (IsRecoverableRecoveryException(ex)) + { + lastError = ex; + bool willRetry = attempt < policy.MaxAttempts; + RecoveryAttemptFailed?.Invoke( + this, + new MxNativeRecoveryFailureEvent(attempt, policy.MaxAttempts, ex, willRetry)); + if (!willRetry) + { + break; + } + + if (policy.Delay > TimeSpan.Zero) + { + await Task.Delay(policy.Delay, cancellationToken).ConfigureAwait(false); + } + } + } + + throw new InvalidOperationException( + $"MX native recovery failed after {policy.MaxAttempts} attempt(s).", + lastError); + } + + private void RecoverConnectionCore() + { + Interlocked.Increment(ref _recoveryActive); + try + { + ManagedNmxService2Client replacement = CreateRegisteredService(_options, _callback); + try + { + foreach (PublisherEndpoint endpoint in _publisherEndpoints) + { + ConnectPublisher(replacement, endpoint); + } + + foreach (MxNativeSubscription subscription in _subscriptions.Values) + { + ReAdviseSubscription(replacement, subscription); + } + } + catch + { + replacement.Dispose(); + throw; + } + + ManagedNmxService2Client oldService = _service; + _service = replacement; + oldService.Dispose(); + } + finally + { + Interlocked.Decrement(ref _recoveryActive); + } + } + + public void Dispose() + { + if (_disposed) + { + return; + } + + foreach (MxNativeSubscription subscription in _subscriptions.Values.ToArray()) + { + if (!subscription.IsBuffered) + { + TryCleanup(() => _service.UnAdvise( + _options.LocalEngineId, + subscription.Metadata, + subscription.CorrelationId, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId)); + } + } + + foreach (PublisherEndpoint publisherEndpoint in _publisherEndpoints) + { + TryCleanup(() => _service.RemoveSubscriberEngine( + publisherEndpoint.EngineId, + _options.GalaxyId, + _options.SourcePlatformId, + _options.LocalEngineId)); + } + + TryCleanup(() => _service.UnregisterEngine(_options.LocalEngineId)); + _service.Dispose(); + if (_callbackHandle.IsAllocated) + { + _callbackHandle.Free(); + } + + _disposed = true; + } + + private void EnsurePublisherConnected(GalaxyTagMetadata tag) + { + var endpoint = new PublisherEndpoint(tag.PlatformId, tag.EngineId); + if (_publisherEndpoints.Contains(endpoint)) + { + return; + } + + ConnectPublisher(_service, endpoint); + _publisherEndpoints.Add(endpoint); + } + + private void ConnectPublisher(ManagedNmxService2Client service, PublisherEndpoint endpoint) + { + EnsureSucceeded( + service.Connect(_options.LocalEngineId, _options.GalaxyId, endpoint.PlatformId, endpoint.EngineId), + nameof(ManagedNmxService2Client.Connect)); + EnsureSucceeded( + service.AddSubscriberEngine(endpoint.EngineId, _options.GalaxyId, _options.SourcePlatformId, _options.LocalEngineId), + nameof(ManagedNmxService2Client.AddSubscriberEngine)); + } + + private void ReAdviseSubscription(ManagedNmxService2Client service, MxNativeSubscription subscription) + { + if (subscription.IsBuffered) + { + var message = new NmxReferenceRegistrationMessage( + subscription.BufferedItemHandle, + subscription.CorrelationId, + NmxReferenceRegistrationMessage.ToBufferedItemDefinition(subscription.BufferedItemDefinition), + subscription.BufferedItemContext, + Subscribe: true); + EnsureSucceeded( + service.RegisterReference( + _options.LocalEngineId, + subscription.Metadata, + message, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.RegisterReference)); + return; + } + + EnsureSucceeded( + service.AdviseSupervisory( + _options.LocalEngineId, + subscription.Metadata, + subscription.CorrelationId, + _options.GalaxyId, + _options.GalaxyId, + _options.SourcePlatformId), + nameof(ManagedNmxService2Client.AdviseSupervisory)); + } + + private void OnCallbackReceived(object? sender, NmxServiceMessage message) + { + bool isDuringRecovery = Volatile.Read(ref _recoveryActive) > 0; + if (NmxOperationStatusMessage.TryParseProcessDataReceivedBody(message.Body, out var operationStatus)) + { + OperationStatusReceived?.Invoke( + this, + new MxNativeOperationStatusEvent(operationStatus, message.Body, isDuringRecovery)); + return; + } + + if (NmxReferenceRegistrationResultMessage.TryParseProcessDataReceivedBody(message.Body, out var registrationResult)) + { + ReferenceRegistrationReceived?.Invoke( + this, + new MxNativeReferenceRegistrationEvent(registrationResult!, message.Body, isDuringRecovery)); + return; + } + + NmxSubscriptionMessage parsed; + try + { + parsed = NmxSubscriptionMessage.ParseProcessDataReceivedBody(message.Body); + } + catch (ArgumentException ex) + { + UnparsedCallbackReceived?.Invoke( + this, + new MxNativeUnparsedCallbackEvent(message.Body, ex.Message, isDuringRecovery)); + return; + } + + foreach (NmxSubscriptionRecord record in parsed.Records) + { + CallbackReceived?.Invoke(this, new MxNativeCallbackEvent(parsed, record, message.Body, isDuringRecovery)); + } + } + + private static void EnsureSucceeded(int hresult, string operation) + { + if (hresult == 0) + { + return; + } + + if (hresult < 0) + { + Marshal.ThrowExceptionForHR(hresult); + } + + throw new InvalidOperationException($"{operation} returned application status 0x{hresult:X8}."); + } + + private static ManagedNmxService2Client CreateRegisteredService(MxNativeClientOptions options, NmxCallbackSink callback) + { + byte[] callbackObjRef = ComObjRefProvider.MarshalInterfaceObjRef( + callback, + NmxProcedureMetadata.INmxSvcCallback, + ComObjRefProvider.MarshalContextDifferentMachine); + ManagedNmxService2Client service = ManagedNmxService2Client.Create(options.Authentication); + try + { + EnsureSucceeded( + service.RegisterEngine2(options.LocalEngineId, options.EngineName, options.PartnerVersion, callbackObjRef), + nameof(ManagedNmxService2Client.RegisterEngine2)); + if (options.HeartbeatTicksPerBeat is { } heartbeatTicks) + { + EnsureSucceeded( + service.SetHeartbeatSendInterval(heartbeatTicks, options.HeartbeatMaxMissedTicks), + nameof(ManagedNmxService2Client.SetHeartbeatSendInterval)); + } + + return service; + } + catch + { + service.Dispose(); + throw; + } + } + + private static void TryCleanup(Func operation) + { + try + { + _ = operation(); + } + catch (Exception ex) when (ex is InvalidOperationException or COMException or ObjectDisposedException) + { + } + } + + private static bool IsRecoverableRecoveryException(Exception ex) + { + return ex is InvalidOperationException or COMException or IOException or ObjectDisposedException; + } + + private readonly record struct PublisherEndpoint(int PlatformId, int EngineId); +} diff --git a/src/MxNativeClient/NmxCallbackSink.cs b/src/MxNativeClient/NmxCallbackSink.cs new file mode 100644 index 0000000..0e8e41a --- /dev/null +++ b/src/MxNativeClient/NmxCallbackSink.cs @@ -0,0 +1,39 @@ +using System.Runtime.InteropServices; + +namespace MxNativeClient; + +public sealed record NmxServiceMessage(byte[] Body); + +[ComVisible(true)] +[ClassInterface(ClassInterfaceType.None)] +public sealed unsafe class NmxCallbackSink : INmxSvcCallback +{ + public event EventHandler? DataReceived; + public event EventHandler? StatusReceived; + + public void DataReceivedRaw(int bufferSize, ref sbyte dataBuffer) + { + DataReceived?.Invoke(this, new NmxServiceMessage(CopyBuffer(bufferSize, ref dataBuffer))); + } + + public void StatusReceivedRaw(int bufferSize, ref sbyte statusBuffer) + { + StatusReceived?.Invoke(this, new NmxServiceMessage(CopyBuffer(bufferSize, ref statusBuffer))); + } + + private static byte[] CopyBuffer(int bufferSize, ref sbyte firstByte) + { + if (bufferSize <= 0) + { + return []; + } + + var output = new byte[bufferSize]; + fixed (sbyte* source = &firstByte) + { + new ReadOnlySpan(source, bufferSize).CopyTo(output); + } + + return output; + } +} diff --git a/src/MxNativeClient/NmxComContracts.cs b/src/MxNativeClient/NmxComContracts.cs new file mode 100644 index 0000000..42301c9 --- /dev/null +++ b/src/MxNativeClient/NmxComContracts.cs @@ -0,0 +1,92 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace MxNativeClient; + +[ComImport] +[Guid("AE24BD51-2E80-44CC-905B-E5446C942BEB")] +[ClassInterface(ClassInterfaceType.None)] +internal sealed class NmxServiceClass : INmxService2 +{ + public extern void RegisterEngine(int engineId, string engineName, INmxSvcCallback callback); + public extern void UnRegisterEngine(int engineId); + public extern void Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId); + public extern void TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, int size, ref byte messageBody); + public extern void AddSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + public extern void RemoveSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + public extern void SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks); + public extern void RegisterEngine2(int engineId, string engineName, int version, INmxSvcCallback callback); + public extern void GetPartnerVersion(int galaxyId, int platformId, int engineId, out int version); +} + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("575008DB-845D-46C6-A906-F6F8CA86F315")] +internal interface INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine(int engineId, [MarshalAs(UnmanagedType.BStr)] string engineName, [MarshalAs(UnmanagedType.Interface)] INmxSvcCallback callback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnRegisterEngine(int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, int size, ref byte messageBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks); +} + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("2630A513-A974-4B1A-8025-457A9A7C56B8")] +internal interface INmxService2 : INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterEngine(int engineId, [MarshalAs(UnmanagedType.BStr)] string engineName, [MarshalAs(UnmanagedType.Interface)] INmxSvcCallback callback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnRegisterEngine(int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, int size, ref byte messageBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AddSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoveSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine2(int engineId, [MarshalAs(UnmanagedType.BStr)] string engineName, int version, [MarshalAs(UnmanagedType.Interface)] INmxSvcCallback callback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerVersion(int galaxyId, int platformId, int engineId, out int version); +} + +[ComVisible(true)] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B49F92F7-C748-4169-8ECA-A0670B012746")] +public interface INmxSvcCallback +{ + [PreserveSig] + void DataReceivedRaw(int bufferSize, ref sbyte dataBuffer); + + [PreserveSig] + void StatusReceivedRaw(int bufferSize, ref sbyte statusBuffer); +} diff --git a/src/MxNativeClient/NmxProcedureMetadata.cs b/src/MxNativeClient/NmxProcedureMetadata.cs new file mode 100644 index 0000000..e9a0e4f --- /dev/null +++ b/src/MxNativeClient/NmxProcedureMetadata.cs @@ -0,0 +1,115 @@ +namespace MxNativeClient; + +public static class NmxProcedureMetadata +{ + public static readonly Guid INmxService2 = new("2630A513-A974-4B1A-8025-457A9A7C56B8"); + public static readonly Guid INmxSvcCallback = new("B49F92F7-C748-4169-8ECA-A0670B012746"); + + public static readonly NdrProcedureDescriptor RegisterEngine = new( + InterfaceId: INmxService2, + Name: nameof(RegisterEngine), + Opnum: 3, + X86StackSize: 20, + ClientBufferSize: 8, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 4); + + public static readonly NdrProcedureDescriptor UnRegisterEngine = new( + InterfaceId: INmxService2, + Name: nameof(UnRegisterEngine), + Opnum: 4, + X86StackSize: 12, + ClientBufferSize: 8, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 2); + + public static readonly NdrProcedureDescriptor Connect = new( + InterfaceId: INmxService2, + Name: nameof(Connect), + Opnum: 5, + X86StackSize: 24, + ClientBufferSize: 32, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 5); + + public static readonly NdrProcedureDescriptor TransferData = new( + InterfaceId: INmxService2, + Name: nameof(TransferData), + Opnum: 6, + X86StackSize: 28, + ClientBufferSize: 32, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 6); + + public static readonly NdrProcedureDescriptor AddSubscriberEngine = new( + InterfaceId: INmxService2, + Name: nameof(AddSubscriberEngine), + Opnum: 7, + X86StackSize: 24, + ClientBufferSize: 32, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 5); + + public static readonly NdrProcedureDescriptor RemoveSubscriberEngine = new( + InterfaceId: INmxService2, + Name: nameof(RemoveSubscriberEngine), + Opnum: 8, + X86StackSize: 24, + ClientBufferSize: 32, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 5); + + public static readonly NdrProcedureDescriptor SetHeartbeatSendInterval = new( + InterfaceId: INmxService2, + Name: nameof(SetHeartbeatSendInterval), + Opnum: 9, + X86StackSize: 16, + ClientBufferSize: 16, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 3); + + public static readonly NdrProcedureDescriptor RegisterEngine2 = new( + InterfaceId: INmxService2, + Name: nameof(RegisterEngine2), + Opnum: 10, + X86StackSize: 24, + ClientBufferSize: 16, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 5); + + public static readonly NdrProcedureDescriptor GetPartnerVersion = new( + InterfaceId: INmxService2, + Name: nameof(GetPartnerVersion), + Opnum: 11, + X86StackSize: 24, + ClientBufferSize: 24, + ServerBufferSize: 36, + ParameterCountIncludingReturn: 5); + + public static readonly NdrProcedureDescriptor DataReceived = new( + InterfaceId: INmxSvcCallback, + Name: nameof(DataReceived), + Opnum: 3, + X86StackSize: 16, + ClientBufferSize: 8, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 3); + + public static readonly NdrProcedureDescriptor StatusReceived = new( + InterfaceId: INmxSvcCallback, + Name: nameof(StatusReceived), + Opnum: 4, + X86StackSize: 16, + ClientBufferSize: 8, + ServerBufferSize: 8, + ParameterCountIncludingReturn: 3); +} + +public sealed record NdrProcedureDescriptor( + Guid InterfaceId, + string Name, + int Opnum, + int X86StackSize, + int ClientBufferSize, + int ServerBufferSize, + int ParameterCountIncludingReturn); diff --git a/src/MxNativeClient/NmxService2Messages.cs b/src/MxNativeClient/NmxService2Messages.cs new file mode 100644 index 0000000..7caff39 --- /dev/null +++ b/src/MxNativeClient/NmxService2Messages.cs @@ -0,0 +1,216 @@ +using System.Buffers.Binary; +using System.Text; + +namespace MxNativeClient; + +public sealed record NmxGetPartnerVersionResult(OrpcThat OrpcThat, int PartnerVersion, int HResult); + +public sealed record NmxHResultResponse(OrpcThat OrpcThat, int HResult); + +public static class NmxService2Messages +{ + public static Guid ClassIdNmxService { get; } = new("AE24BD51-2E80-44CC-905B-E5446C942BEB"); + public static Guid InterfaceId { get; } = NmxProcedureMetadata.INmxService2; + + public const ushort RegisterEngineOpnum = 3; + public const ushort UnregisterEngineOpnum = 4; + public const ushort ConnectOpnum = 5; + public const ushort TransferDataOpnum = 6; + public const ushort AddSubscriberEngineOpnum = 7; + public const ushort RemoveSubscriberEngineOpnum = 8; + public const ushort SetHeartbeatSendIntervalOpnum = 9; + public const ushort RegisterEngine2Opnum = 10; + public const ushort GetPartnerVersionOpnum = 11; + + public static byte[] EncodeGetPartnerVersionRequest( + OrpcThis orpcThis, + int galaxyId, + int platformId, + int engineId) + { + byte[] buffer = new byte[OrpcThis.EncodedLengthWithoutExtensions + 12]; + orpcThis.Encode().CopyTo(buffer.AsSpan()); + WriteInt32(buffer.AsSpan(32, 4), galaxyId); + WriteInt32(buffer.AsSpan(36, 4), platformId); + WriteInt32(buffer.AsSpan(40, 4), engineId); + return buffer; + } + + public static NmxGetPartnerVersionResult ParseGetPartnerVersionResponse(ReadOnlySpan buffer) + { + if (buffer.Length < OrpcThat.EncodedLengthWithoutExtensions + 8) + { + throw new ArgumentException("GetPartnerVersion response is too short.", nameof(buffer)); + } + + return new NmxGetPartnerVersionResult( + OrpcThat.Parse(buffer), + ReadInt32(buffer[8..12]), + ReadInt32(buffer[12..16])); + } + + public static byte[] EncodeConnectRequest( + OrpcThis orpcThis, + int localEngineId, + int remoteGalaxyId, + int remotePlatformId, + int remoteEngineId) + { + byte[] buffer = new byte[OrpcThis.EncodedLengthWithoutExtensions + 16]; + orpcThis.Encode().CopyTo(buffer.AsSpan()); + WriteInt32(buffer.AsSpan(32, 4), localEngineId); + WriteInt32(buffer.AsSpan(36, 4), remoteGalaxyId); + WriteInt32(buffer.AsSpan(40, 4), remotePlatformId); + WriteInt32(buffer.AsSpan(44, 4), remoteEngineId); + return buffer; + } + + public static byte[] EncodeSubscriberEngineRequest( + OrpcThis orpcThis, + int localEngineId, + int subscriberGalaxyId, + int subscriberPlatformId, + int subscriberEngineId) + { + byte[] buffer = new byte[OrpcThis.EncodedLengthWithoutExtensions + 16]; + orpcThis.Encode().CopyTo(buffer.AsSpan()); + WriteInt32(buffer.AsSpan(32, 4), localEngineId); + WriteInt32(buffer.AsSpan(36, 4), subscriberGalaxyId); + WriteInt32(buffer.AsSpan(40, 4), subscriberPlatformId); + WriteInt32(buffer.AsSpan(44, 4), subscriberEngineId); + return buffer; + } + + public static byte[] EncodeUnregisterEngineRequest( + OrpcThis orpcThis, + int localEngineId) + { + byte[] buffer = new byte[OrpcThis.EncodedLengthWithoutExtensions + 4]; + orpcThis.Encode().CopyTo(buffer.AsSpan()); + WriteInt32(buffer.AsSpan(32, 4), localEngineId); + return buffer; + } + + public static byte[] EncodeSetHeartbeatSendIntervalRequest( + OrpcThis orpcThis, + int ticksPerBeat, + int maxMissedTicks) + { + byte[] buffer = new byte[OrpcThis.EncodedLengthWithoutExtensions + 8]; + orpcThis.Encode().CopyTo(buffer.AsSpan()); + WriteInt32(buffer.AsSpan(32, 4), ticksPerBeat); + WriteInt32(buffer.AsSpan(36, 4), maxMissedTicks); + return buffer; + } + + public static byte[] EncodeTransferDataRequest( + OrpcThis orpcThis, + int remoteGalaxyId, + int remotePlatformId, + int remoteEngineId, + ReadOnlySpan messageBody) + { + int bodyOffset = OrpcThis.EncodedLengthWithoutExtensions + 20; + int paddedLength = Align(bodyOffset + messageBody.Length, 4); + byte[] buffer = new byte[paddedLength]; + orpcThis.Encode().CopyTo(buffer.AsSpan()); + WriteInt32(buffer.AsSpan(32, 4), remoteGalaxyId); + WriteInt32(buffer.AsSpan(36, 4), remotePlatformId); + WriteInt32(buffer.AsSpan(40, 4), remoteEngineId); + WriteInt32(buffer.AsSpan(44, 4), messageBody.Length); + WriteInt32(buffer.AsSpan(48, 4), messageBody.Length); + messageBody.CopyTo(buffer.AsSpan(bodyOffset)); + return buffer; + } + + public static byte[] EncodeRegisterEngine2Request( + OrpcThis orpcThis, + int localEngineId, + string engineName, + int version, + byte[]? callbackObjRef = null) + { + byte[] bstr = EncodeBstrUserMarshal(engineName); + byte[] callback = callbackObjRef is null + ? EncodeNullInterfacePointer() + : EncodeInterfacePointer(callbackObjRef); + + int bstrOffset = OrpcThis.EncodedLengthWithoutExtensions + 8; + int versionOffset = Align(bstrOffset + bstr.Length, 4); + int length = Align(versionOffset + 4 + callback.Length, 4); + byte[] buffer = new byte[length]; + orpcThis.Encode().CopyTo(buffer.AsSpan()); + int offset = OrpcThis.EncodedLengthWithoutExtensions; + WriteInt32(buffer.AsSpan(offset, 4), localEngineId); + offset += 4; + WriteInt32(buffer.AsSpan(offset, 4), 0x72657355); + offset += 4; + bstr.CopyTo(buffer.AsSpan(offset)); + offset = versionOffset; + WriteInt32(buffer.AsSpan(offset, 4), version); + offset += 4; + callback.CopyTo(buffer.AsSpan(offset)); + return buffer; + } + + public static byte[] EncodeBstrUserMarshal(string value) + { + byte[] utf16 = Encoding.Unicode.GetBytes(value); + if ((utf16.Length % 2) != 0) + { + throw new ArgumentException("BSTR payload must be UTF-16.", nameof(value)); + } + + int charCount = utf16.Length / 2; + byte[] buffer = new byte[12 + utf16.Length]; + WriteInt32(buffer.AsSpan(0, 4), charCount); + WriteInt32(buffer.AsSpan(4, 4), utf16.Length); + WriteInt32(buffer.AsSpan(8, 4), charCount); + utf16.CopyTo(buffer.AsSpan(12)); + return buffer; + } + + public static NmxHResultResponse ParseHResultResponse(ReadOnlySpan buffer) + { + if (buffer.Length < OrpcThat.EncodedLengthWithoutExtensions + 4) + { + throw new ArgumentException("HRESULT response is too short.", nameof(buffer)); + } + + return new NmxHResultResponse( + OrpcThat.Parse(buffer), + ReadInt32(buffer[8..12])); + } + + private static int ReadInt32(ReadOnlySpan buffer) + { + return BinaryPrimitives.ReadInt32LittleEndian(buffer); + } + + private static void WriteInt32(Span buffer, int value) + { + BinaryPrimitives.WriteInt32LittleEndian(buffer, value); + } + + private static int Align(int value, int alignment) + { + int remainder = value % alignment; + return remainder == 0 ? value : value + alignment - remainder; + } + + private static byte[] EncodeNullInterfacePointer() + { + return [0, 0, 0, 0]; + } + + private static byte[] EncodeInterfacePointer(byte[] objRef) + { + int length = Align(12 + objRef.Length, 4); + byte[] buffer = new byte[length]; + WriteInt32(buffer.AsSpan(0, 4), 0x00020000); + WriteInt32(buffer.AsSpan(4, 4), objRef.Length); + WriteInt32(buffer.AsSpan(8, 4), objRef.Length); + objRef.CopyTo(buffer.AsSpan(12)); + return buffer; + } +} diff --git a/src/MxNativeClient/NmxServiceClient.cs b/src/MxNativeClient/NmxServiceClient.cs new file mode 100644 index 0000000..e91bdd6 --- /dev/null +++ b/src/MxNativeClient/NmxServiceClient.cs @@ -0,0 +1,112 @@ +using System.Runtime.InteropServices; +using MxNativeCodec; + +namespace MxNativeClient; + +public sealed class NmxServiceClient : IDisposable +{ + public const int ObservedNmxVersion = 30000; + + private readonly INmxService2 _service; + private readonly object _comObject; + private int? _registeredEngineId; + private bool _disposed; + + private NmxServiceClient(INmxService2 service) + { + _service = service; + _comObject = service; + } + + public static NmxServiceClient Create() + { + var service = (INmxService2)new NmxServiceClass(); + return new NmxServiceClient(service); + } + + public void RegisterEngine(int engineId, string engineName, NmxCallbackSink callback, int version = ObservedNmxVersion) + { + ObjectDisposedException.ThrowIf(_disposed, this); + _service.RegisterEngine2(engineId, engineName, version, callback); + _registeredEngineId = engineId; + } + + public void UnregisterEngine() + { + ObjectDisposedException.ThrowIf(_disposed, this); + if (_registeredEngineId is not { } engineId) + { + return; + } + + _service.UnRegisterEngine(engineId); + _registeredEngineId = null; + } + + public int GetPartnerVersion(int galaxyId, int platformId, int engineId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + _service.GetPartnerVersion(galaxyId, platformId, engineId, out var version); + return version; + } + + public void Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId) + { + ObjectDisposedException.ThrowIf(_disposed, this); + _service.Connect(localEngineId, remoteGalaxyId, remotePlatformId, remoteEngineId); + } + + public void SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks) + { + ObjectDisposedException.ThrowIf(_disposed, this); + _service.SetHeartbeatSendInterval(ticksPerBeat, maxMissedTicks); + } + + public void TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, ReadOnlySpan messageBody) + { + ObjectDisposedException.ThrowIf(_disposed, this); + ValidateTransferDataBody(messageBody, nameof(messageBody)); + + var copy = messageBody.ToArray(); + _service.TransferData(remoteGalaxyId, remotePlatformId, remoteEngineId, copy.Length, ref copy[0]); + } + + public void Dispose() + { + if (_disposed) + { + return; + } + + try + { + if (_registeredEngineId is not null) + { + UnregisterEngine(); + } + } + finally + { + if (Marshal.IsComObject(_comObject)) + { + Marshal.ReleaseComObject(_comObject); + } + + _disposed = true; + } + } + + private static void ValidateTransferDataBody(ReadOnlySpan messageBody, string parameterName) + { + if (messageBody.IsEmpty) + { + throw new ArgumentException("TransferData body cannot be empty.", parameterName); + } + + NmxTransferEnvelopeTemplate.FromObserved(messageBody); + if (messageBody.Length == NmxTransferEnvelopeTemplate.HeaderLength) + { + throw new ArgumentException("TransferData body must include an inner message after the 46-byte envelope.", parameterName); + } + } +} diff --git a/src/MxNativeClient/NmxSvcCallbackMessages.cs b/src/MxNativeClient/NmxSvcCallbackMessages.cs new file mode 100644 index 0000000..97b2993 --- /dev/null +++ b/src/MxNativeClient/NmxSvcCallbackMessages.cs @@ -0,0 +1,45 @@ +using System.Buffers.Binary; + +namespace MxNativeClient; + +public sealed record NmxCallbackRequest(OrpcThis OrpcThis, byte[] Body); + +public static class NmxSvcCallbackMessages +{ + public static Guid InterfaceId { get; } = NmxProcedureMetadata.INmxSvcCallback; + + public const ushort DataReceivedOpnum = 3; + public const ushort StatusReceivedOpnum = 4; + + public static NmxCallbackRequest ParseCallbackRequest(ReadOnlySpan buffer) + { + if (buffer.Length < OrpcThis.EncodedLengthWithoutExtensions + 8) + { + throw new ArgumentException("Callback request is too short.", nameof(buffer)); + } + + var orpcThis = OrpcThis.Parse(buffer); + int size = BinaryPrimitives.ReadInt32LittleEndian(buffer.Slice(OrpcThis.EncodedLengthWithoutExtensions, 4)); + int maxCount = BinaryPrimitives.ReadInt32LittleEndian(buffer.Slice(OrpcThis.EncodedLengthWithoutExtensions + 4, 4)); + if (size < 0 || maxCount < size) + { + throw new ArgumentException("Callback request has invalid array size metadata.", nameof(buffer)); + } + + int bodyOffset = OrpcThis.EncodedLengthWithoutExtensions + 8; + if (bodyOffset + size > buffer.Length) + { + throw new ArgumentException("Callback request byte array is truncated.", nameof(buffer)); + } + + return new NmxCallbackRequest(orpcThis, buffer.Slice(bodyOffset, size).ToArray()); + } + + public static byte[] EncodeCallbackResponse(int hresult) + { + byte[] buffer = new byte[OrpcThat.EncodedLengthWithoutExtensions + sizeof(int)]; + new OrpcThat(0, 0).Encode().CopyTo(buffer.AsSpan()); + BinaryPrimitives.WriteInt32LittleEndian(buffer.AsSpan(OrpcThat.EncodedLengthWithoutExtensions, sizeof(int)), hresult); + return buffer; + } +} diff --git a/src/MxNativeClient/ObjectExporterClient.cs b/src/MxNativeClient/ObjectExporterClient.cs new file mode 100644 index 0000000..2519d3f --- /dev/null +++ b/src/MxNativeClient/ObjectExporterClient.cs @@ -0,0 +1,82 @@ +namespace MxNativeClient; + +public sealed class ObjectExporterClient +{ + private readonly string _host; + private readonly int _port; + + public ObjectExporterClient(string host = "127.0.0.1", int port = 135) + { + _host = host; + _port = port; + } + + public ResolveOxidFailure ResolveOxidUnauthenticated(ulong oxid, IReadOnlyList? requestedProtseqs = null) + { + using var client = new DceRpcTcpClient(_host, _port); + client.Connect(); + var bind = client.Bind(ObjectExporterMessages.IObjectExporter, versionMajor: 0, versionMinor: 0); + if (bind.PacketType != DceRpcPacketType.BindAck) + { + throw new InvalidOperationException($"Unexpected bind response packet type {bind.PacketType}."); + } + + byte[] request = ObjectExporterMessages.EncodeResolveOxidRequest( + oxid, + requestedProtseqs ?? [ObjectExporterMessages.ProtseqNcacnIpTcp]); + + var response = client.Call(contextId: 0, ObjectExporterMessages.ResolveOxidOpnum, request); + return ObjectExporterMessages.ParseResolveOxidFailure(response.StubData.Span); + } + + public DceRpcResponsePdu ResolveOxidWithNtlmConnect(ulong oxid, IReadOnlyList? requestedProtseqs = null) + { + using var client = new DceRpcTcpClient(_host, _port); + client.Connect(); + var bind = client.BindWithNtlmConnect(ObjectExporterMessages.IObjectExporter, versionMajor: 0, versionMinor: 0); + if (bind.PacketType != DceRpcPacketType.BindAck) + { + throw new InvalidOperationException($"Unexpected bind response packet type {bind.PacketType}."); + } + + byte[] request = ObjectExporterMessages.EncodeResolveOxidRequest( + oxid, + requestedProtseqs ?? [ObjectExporterMessages.ProtseqNcacnIpTcp]); + + return client.CallBound(ObjectExporterMessages.ResolveOxidOpnum, request); + } + + public DceRpcResponsePdu ResolveOxidWithNtlmPacketIntegrity(ulong oxid, IReadOnlyList? requestedProtseqs = null) + { + using var client = new DceRpcTcpClient(_host, _port); + client.Connect(); + var bind = client.BindWithNtlmPacketIntegrity(ObjectExporterMessages.IObjectExporter, versionMajor: 0, versionMinor: 0, targetName: _host); + if (bind.PacketType != DceRpcPacketType.BindAck) + { + throw new InvalidOperationException($"Unexpected bind response packet type {bind.PacketType}."); + } + + byte[] request = ObjectExporterMessages.EncodeResolveOxidRequest( + oxid, + requestedProtseqs ?? [ObjectExporterMessages.ProtseqNcacnIpTcp]); + + return client.CallBound(ObjectExporterMessages.ResolveOxidOpnum, request); + } + + public DceRpcResponsePdu ResolveOxidWithManagedNtlmPacketIntegrity(ulong oxid, IReadOnlyList? requestedProtseqs = null) + { + using var client = new DceRpcTcpClient(_host, _port); + client.Connect(); + var bind = client.BindWithManagedNtlmPacketIntegrity(ObjectExporterMessages.IObjectExporter, versionMajor: 0, versionMinor: 0); + if (bind.PacketType != DceRpcPacketType.BindAck) + { + throw new InvalidOperationException($"Unexpected bind response packet type {bind.PacketType}."); + } + + byte[] request = ObjectExporterMessages.EncodeResolveOxidRequest( + oxid, + requestedProtseqs ?? [ObjectExporterMessages.ProtseqNcacnIpTcp]); + + return client.CallBound(ObjectExporterMessages.ResolveOxidOpnum, request); + } +} diff --git a/src/MxNativeClient/ObjectExporterMessages.cs b/src/MxNativeClient/ObjectExporterMessages.cs new file mode 100644 index 0000000..2a0fc8e --- /dev/null +++ b/src/MxNativeClient/ObjectExporterMessages.cs @@ -0,0 +1,141 @@ +using System.Buffers.Binary; + +namespace MxNativeClient; + +public static class ObjectExporterMessages +{ + public static readonly Guid IObjectExporter = new("99FCFEC4-5260-101B-BBCB-00AA0021347A"); + public const ushort ResolveOxidOpnum = 0; + public const ushort SimplePingOpnum = 1; + public const ushort ComplexPingOpnum = 2; + public const ushort ServerAliveOpnum = 3; + public const ushort ResolveOxid2Opnum = 4; + public const ushort ServerAlive2Opnum = 5; + + public const ushort ProtseqNcacnIpTcp = 0x0007; + public const ushort ProtseqNcalRpc = 0x001f; + + public static byte[] EncodeResolveOxidRequest(ulong oxid, IReadOnlyList requestedProtseqs) + { + if (requestedProtseqs.Count == 0) + { + throw new ArgumentException("At least one protocol sequence is required.", nameof(requestedProtseqs)); + } + + int length = 8 + 2 + 2 + 4 + requestedProtseqs.Count * sizeof(ushort); + length = Align(length, 4); + byte[] buffer = new byte[length]; + BinaryPrimitives.WriteUInt64LittleEndian(buffer.AsSpan(0, 8), oxid); + BinaryPrimitives.WriteUInt16LittleEndian(buffer.AsSpan(8, 2), (ushort)requestedProtseqs.Count); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(12, 4), (uint)requestedProtseqs.Count); + for (int i = 0; i < requestedProtseqs.Count; i++) + { + BinaryPrimitives.WriteUInt16LittleEndian(buffer.AsSpan(16 + i * sizeof(ushort), sizeof(ushort)), requestedProtseqs[i]); + } + + return buffer; + } + + public static ResolveOxidFailure ParseResolveOxidFailure(ReadOnlySpan responseStub) + { + if (responseStub.Length < 4) + { + throw new ArgumentException("ResolveOxid response stub is too short.", nameof(responseStub)); + } + + return new ResolveOxidFailure(BinaryPrimitives.ReadUInt32LittleEndian(responseStub[^4..])); + } + + public static ResolveOxidResult ParseResolveOxidResult(ReadOnlySpan responseStub) + { + if (responseStub.Length < 32) + { + throw new ArgumentException("ResolveOxid response stub is too short.", nameof(responseStub)); + } + + uint referentId = BinaryPrimitives.ReadUInt32LittleEndian(responseStub[0..4]); + if (referentId == 0) + { + uint nullStatus = BinaryPrimitives.ReadUInt32LittleEndian(responseStub[^4..]); + return new ResolveOxidResult([], Guid.Empty, 0, nullStatus); + } + + uint maxCount = BinaryPrimitives.ReadUInt32LittleEndian(responseStub[4..8]); + ushort entries = BinaryPrimitives.ReadUInt16LittleEndian(responseStub[8..10]); + ushort securityOffset = BinaryPrimitives.ReadUInt16LittleEndian(responseStub[10..12]); + if (maxCount < entries) + { + throw new ArgumentException("ResolveOxid DUALSTRINGARRAY max count is smaller than entry count.", nameof(responseStub)); + } + + int arrayOffset = 12; + int arrayBytes = checked((int)maxCount * sizeof(ushort)); + if (arrayOffset + arrayBytes > responseStub.Length) + { + throw new ArgumentException("ResolveOxid DUALSTRINGARRAY is truncated.", nameof(responseStub)); + } + + var decoded = DecodeDualStringArray(responseStub.Slice(arrayOffset, entries * sizeof(ushort)), entries, securityOffset); + int offset = Align(arrayOffset + arrayBytes, 4); + if (offset + 24 > responseStub.Length) + { + throw new ArgumentException("ResolveOxid trailing fields are truncated.", nameof(responseStub)); + } + + return new ResolveOxidResult( + decoded, + new Guid(responseStub.Slice(offset, 16)), + BinaryPrimitives.ReadUInt32LittleEndian(responseStub.Slice(offset + 16, 4)), + BinaryPrimitives.ReadUInt32LittleEndian(responseStub.Slice(offset + 20, 4))); + } + + private static IReadOnlyList DecodeDualStringArray(ReadOnlySpan data, ushort entries, ushort securityOffset) + { + var strings = new List(); + for (int i = 0; i < entries;) + { + int entryStart = i; + ushort towerId = BinaryPrimitives.ReadUInt16LittleEndian(data.Slice(i * 2, 2)); + i++; + if (towerId == 0) + { + continue; + } + + var text = new List(); + while (i < entries) + { + ushort value = BinaryPrimitives.ReadUInt16LittleEndian(data.Slice(i * 2, 2)); + i++; + if (value == 0) + { + break; + } + + text.Add(value >= 0x20 && value <= 0x7e ? (char)value : '?'); + } + + strings.Add(new ComDualStringEntry( + towerId, + towerId == ProtseqNcacnIpTcp ? "ncacn_ip_tcp" : $"protseq_0x{towerId:x4}", + new string(text.ToArray()), + IsSecurityBinding: entryStart >= securityOffset)); + } + + return strings; + } + + private static int Align(int value, int alignment) + { + int remainder = value % alignment; + return remainder == 0 ? value : value + alignment - remainder; + } +} + +public sealed record ResolveOxidFailure(uint ErrorStatus); + +public sealed record ResolveOxidResult( + IReadOnlyList Bindings, + Guid RemUnknownIpid, + uint AuthnHint, + uint ErrorStatus); diff --git a/src/MxNativeClient/OrpcStructures.cs b/src/MxNativeClient/OrpcStructures.cs new file mode 100644 index 0000000..fac8184 --- /dev/null +++ b/src/MxNativeClient/OrpcStructures.cs @@ -0,0 +1,140 @@ +using System.Buffers.Binary; + +namespace MxNativeClient; + +public readonly record struct ComVersion(ushort Major, ushort Minor) +{ + public static ComVersion Version57 { get; } = new(5, 7); +} + +public sealed record OrpcThis( + ComVersion Version, + uint Flags, + uint Reserved1, + Guid Cid, + uint ExtensionsReferentId) +{ + public const int EncodedLengthWithoutExtensions = 32; + + public static OrpcThis Create(Guid cid, ComVersion? version = null) + { + return new OrpcThis(version ?? ComVersion.Version57, 0, 0, cid, 0); + } + + public static OrpcThis Parse(ReadOnlySpan buffer) + { + if (buffer.Length < EncodedLengthWithoutExtensions) + { + throw new ArgumentException("ORPCTHIS buffer is too short.", nameof(buffer)); + } + + return new OrpcThis( + Version: new ComVersion( + BinaryPrimitives.ReadUInt16LittleEndian(buffer[0..2]), + BinaryPrimitives.ReadUInt16LittleEndian(buffer[2..4])), + Flags: BinaryPrimitives.ReadUInt32LittleEndian(buffer[4..8]), + Reserved1: BinaryPrimitives.ReadUInt32LittleEndian(buffer[8..12]), + Cid: new Guid(buffer.Slice(12, 16)), + ExtensionsReferentId: BinaryPrimitives.ReadUInt32LittleEndian(buffer[28..32])); + } + + public byte[] Encode() + { + byte[] buffer = new byte[EncodedLengthWithoutExtensions]; + BinaryPrimitives.WriteUInt16LittleEndian(buffer.AsSpan(0, 2), Version.Major); + BinaryPrimitives.WriteUInt16LittleEndian(buffer.AsSpan(2, 2), Version.Minor); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(4, 4), Flags); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(8, 4), Reserved1); + Cid.TryWriteBytes(buffer.AsSpan(12, 16)); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(28, 4), ExtensionsReferentId); + return buffer; + } +} + +public sealed record OrpcThat(uint Flags, uint ExtensionsReferentId) +{ + public const int EncodedLengthWithoutExtensions = 8; + + public static OrpcThat Parse(ReadOnlySpan buffer) + { + if (buffer.Length < EncodedLengthWithoutExtensions) + { + throw new ArgumentException("ORPCTHAT buffer is too short.", nameof(buffer)); + } + + return new OrpcThat( + Flags: BinaryPrimitives.ReadUInt32LittleEndian(buffer[0..4]), + ExtensionsReferentId: BinaryPrimitives.ReadUInt32LittleEndian(buffer[4..8])); + } + + public byte[] Encode() + { + byte[] buffer = new byte[EncodedLengthWithoutExtensions]; + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(0, 4), Flags); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(4, 4), ExtensionsReferentId); + return buffer; + } +} + +public sealed record MInterfacePointer(byte[] ObjRefBytes) +{ + public byte[] Encode() + { + byte[] buffer = new byte[sizeof(uint) + ObjRefBytes.Length]; + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(0, sizeof(uint)), (uint)ObjRefBytes.Length); + ObjRefBytes.CopyTo(buffer.AsSpan(sizeof(uint))); + return buffer; + } + + public static MInterfacePointer Parse(ReadOnlySpan buffer) + { + if (buffer.Length < sizeof(uint)) + { + throw new ArgumentException("MInterfacePointer buffer is too short.", nameof(buffer)); + } + + uint size = BinaryPrimitives.ReadUInt32LittleEndian(buffer[..sizeof(uint)]); + if (size > buffer.Length - sizeof(uint)) + { + throw new ArgumentException("MInterfacePointer OBJREF payload is truncated.", nameof(buffer)); + } + + return new MInterfacePointer(buffer.Slice(sizeof(uint), (int)size).ToArray()); + } + + public ComObjRef ParseObjRef() + { + return ComObjRef.Parse(ObjRefBytes); + } +} + +public sealed record StdObjRef(uint Flags, uint PublicRefs, ulong Oxid, ulong Oid, Guid Ipid) +{ + public const int EncodedLength = 40; + + public static StdObjRef Parse(ReadOnlySpan buffer) + { + if (buffer.Length < EncodedLength) + { + throw new ArgumentException("STDOBJREF buffer is too short.", nameof(buffer)); + } + + return new StdObjRef( + Flags: BinaryPrimitives.ReadUInt32LittleEndian(buffer[0..4]), + PublicRefs: BinaryPrimitives.ReadUInt32LittleEndian(buffer[4..8]), + Oxid: BinaryPrimitives.ReadUInt64LittleEndian(buffer[8..16]), + Oid: BinaryPrimitives.ReadUInt64LittleEndian(buffer[16..24]), + Ipid: new Guid(buffer.Slice(24, 16))); + } + + public byte[] Encode() + { + byte[] buffer = new byte[EncodedLength]; + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(0, 4), Flags); + BinaryPrimitives.WriteUInt32LittleEndian(buffer.AsSpan(4, 4), PublicRefs); + BinaryPrimitives.WriteUInt64LittleEndian(buffer.AsSpan(8, 8), Oxid); + BinaryPrimitives.WriteUInt64LittleEndian(buffer.AsSpan(16, 8), Oid); + Ipid.TryWriteBytes(buffer.AsSpan(24, 16)); + return buffer; + } +} diff --git a/src/MxNativeClient/Properties/AssemblyInfo.cs b/src/MxNativeClient/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..9edef24 --- /dev/null +++ b/src/MxNativeClient/Properties/AssemblyInfo.cs @@ -0,0 +1,3 @@ +using System.Runtime.CompilerServices; + +[assembly: InternalsVisibleTo("MxNativeClient.Tests")] diff --git a/src/MxNativeClient/RemUnknownMessages.cs b/src/MxNativeClient/RemUnknownMessages.cs new file mode 100644 index 0000000..277353f --- /dev/null +++ b/src/MxNativeClient/RemUnknownMessages.cs @@ -0,0 +1,79 @@ +using System.Buffers.Binary; + +namespace MxNativeClient; + +public static class RemUnknownMessages +{ + public static readonly Guid IRemUnknown = new("00000131-0000-0000-C000-000000000046"); + public const ushort RemQueryInterfaceOpnum = 3; + public const ushort RemAddRefOpnum = 4; + public const ushort RemReleaseOpnum = 5; + + public static byte[] EncodeRemQueryInterfaceRequest(Guid sourceIpid, Guid requestedIid, Guid causalityId, uint publicRefs = 5) + { + var orpcThis = OrpcThis.Create(causalityId).Encode(); + byte[] body = new byte[orpcThis.Length + 16 + 4 + 4 + 4 + 16]; + int offset = 0; + orpcThis.CopyTo(body.AsSpan(offset)); + offset += orpcThis.Length; + + sourceIpid.TryWriteBytes(body.AsSpan(offset, 16)); + offset += 16; + BinaryPrimitives.WriteUInt32LittleEndian(body.AsSpan(offset, 4), publicRefs); + offset += 4; + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(offset, 2), 1); + offset += 2; + body[offset++] = 0xce; + body[offset++] = 0xce; // NDR alignment before the conformant IID array max count. + BinaryPrimitives.WriteUInt32LittleEndian(body.AsSpan(offset, 4), 1); + offset += 4; + requestedIid.TryWriteBytes(body.AsSpan(offset, 16)); + + return body; + } + + public static RemQueryInterfaceResponse ParseRemQueryInterfaceResponse(ReadOnlySpan buffer) + { + if (buffer.Length < OrpcThat.EncodedLengthWithoutExtensions + 4 + RemQiResult.EncodedLength + 4) + { + throw new ArgumentException("RemQueryInterface response is too short.", nameof(buffer)); + } + + var orpcThat = OrpcThat.Parse(buffer); + uint referentId = BinaryPrimitives.ReadUInt32LittleEndian(buffer.Slice(OrpcThat.EncodedLengthWithoutExtensions, 4)); + int offset = OrpcThat.EncodedLengthWithoutExtensions + 4; + RemQiResult? result = null; + if (referentId != 0) + { + offset += 4; // Conformant array max count for the REMQIRESULT result array. + result = RemQiResult.Parse(buffer[offset..]); + } + + if (result is not null) + { + offset += RemQiResult.EncodedLength; + } + + uint errorCode = BinaryPrimitives.ReadUInt32LittleEndian(buffer.Slice(offset, 4)); + return new RemQueryInterfaceResponse(orpcThat, result, errorCode); + } +} + +public sealed record RemQueryInterfaceResponse(OrpcThat OrpcThat, RemQiResult? Result, uint ErrorCode); + +public sealed record RemQiResult(int HResult, StdObjRef StandardObjectReference) +{ + public const int EncodedLength = sizeof(int) + sizeof(int) + StdObjRef.EncodedLength; + + public static RemQiResult Parse(ReadOnlySpan buffer) + { + if (buffer.Length < EncodedLength) + { + throw new ArgumentException("REMQIRESULT buffer is too short.", nameof(buffer)); + } + + return new RemQiResult( + HResult: BinaryPrimitives.ReadInt32LittleEndian(buffer[..4]), + StandardObjectReference: StdObjRef.Parse(buffer[8..])); + } +} diff --git a/src/MxNativeCodec.Tests/MxNativeCodec.Tests.csproj b/src/MxNativeCodec.Tests/MxNativeCodec.Tests.csproj new file mode 100644 index 0000000..a6dc569 --- /dev/null +++ b/src/MxNativeCodec.Tests/MxNativeCodec.Tests.csproj @@ -0,0 +1,12 @@ + + + Exe + net10.0 + enable + enable + preview + + + + + diff --git a/src/MxNativeCodec.Tests/Program.cs b/src/MxNativeCodec.Tests/Program.cs new file mode 100644 index 0000000..4aa04b8 --- /dev/null +++ b/src/MxNativeCodec.Tests/Program.cs @@ -0,0 +1,860 @@ +using System.Buffers.Binary; +using MxNativeCodec; + +RunRoundTrip("int", MxValueKind.Int32, 109, + "37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 6d 00 00 00 ff ff 00 00 00 00 00 00 00 00 c9 14 b1 08 01 00 00 00"); + +RunRoundTrip("bool", MxValueKind.Boolean, true, + "37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 e1 d8 b5 08 01 00 00 00"); + +RunRoundTrip("float", MxValueKind.Float32, 1.25f, + "37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 a0 3f ff ff 00 00 00 00 00 00 00 00 64 6f b6 08 01 00 00 00"); + +RunRoundTrip("double", MxValueKind.Float64, 1.125d, + "37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 00 f2 3f ff ff 00 00 00 00 00 00 00 00 bf 04 b7 08 01 00 00 00"); + +RunRoundTrip("string", MxValueKind.String, "AlphaMX", + "37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00 ff ff 00 00 00 00 00 00 00 00 3d a1 b7 08 01 00 00 00"); + +RunRoundTrip("elapsed int caller", MxValueKind.Int32, 1000, + "37 01 00 06 00 08 f4 7e 00 7d 00 0a 00 ac 59 00 00 02 e8 03 00 00 ff ff 00 00 00 00 00 00 00 00 e0 bf fe 0b 01 00 00 00"); + +RunRoundTrip("internationalized string caller", MxValueKind.String, "hello-native", + "37 01 00 05 00 36 d7 02 00 65 00 0a 00 6d 02 00 00 05 1e 00 00 00 1a 00 00 00 68 00 65 00 6c 00 6c 00 6f 00 2d 00 6e 00 61 00 74 00 69 00 76 00 65 00 00 00 ff ff 00 00 00 00 00 00 00 00 94 68 ff 0b 01 00 00 00"); + +RunRoundTrip("datetime", MxValueKind.DateTime, new DateTime(2026, 4, 25, 2, 30, 0), + "37 01 00 05 00 36 d7 02 00 9f 00 0a 00 62 49 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 32 00 3a 00 33 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 ff ff 00 00 00 00 00 00 00 00 58 94 b8 08 01 00 00 00"); + +RunRoundTrip("write2 int timestamp", MxValueKind.Int32, 114, + "37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 72 00 00 00 00 00 00 72 68 3a 83 d4 dc 01 20 2e d8 08 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 7, 15, 0, DateTimeKind.Utc)); + +RunTimestampedGenerated("write2 bool timestamp", MxValueKind.Boolean, false, + "37 01 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 01 00 00 00 00 d3 c1 2f ab d4 dc 01 c9 dd a5 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 1, 2)); + +RunRoundTrip("write2 float timestamp", MxValueKind.Float32, 6.25f, + "37 01 00 05 00 36 d7 02 00 9c 00 0a 00 a6 ed 00 00 03 00 00 c8 40 00 00 80 af 1d 54 ab d4 dc 01 94 c4 a5 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 2, 3)); + +RunRoundTrip("write2 double timestamp", MxValueKind.Float64, 7.125d, + "37 01 00 05 00 36 d7 02 00 9d 00 0a 00 1e 95 00 00 04 00 00 00 00 00 80 1c 40 00 00 00 8c 79 78 ab d4 dc 01 a3 56 a6 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 3, 4)); + +RunRoundTrip("write2 string timestamp", MxValueKind.String, "Write2Alpha", + "37 01 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 05 1c 00 00 00 18 00 00 00 57 00 72 00 69 00 74 00 65 00 32 00 41 00 6c 00 70 00 68 00 61 00 00 00 00 00 80 68 d5 9c ab d4 dc 01 9f 6e a6 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 4, 5)); + +RunRoundTrip("int[]", MxValueKind.Int32Array, new[] { 201, 202, 203, 204, 205, 206, 207, 208, 209, 210 }, + "37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00 d2 00 00 00 ff ff 00 00 00 00 00 00 00 00 4d c3 c4 08 01 00 00 00"); + +RunRoundTrip("bool[]", MxValueKind.BooleanArray, new[] { true, true, false, false, true, true, false, false, true, true }, + "37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff ff ff 00 00 00 00 00 00 00 00 a8 7f c5 08 01 00 00 00"); + +RunRoundTrip("bool[] mxaccess safearray projection", MxValueKind.BooleanArray, new[] { true, true, false, false, false, false, true, true, true, true }, + "37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 ac ec 08 0c 01 00 00 00"); + +RunRoundTrip("float[]", MxValueKind.Float32Array, new[] { 1.25f, 2.5f, 3.75f, 4.25f, 5.5f, 6.75f, 7.25f, 8.5f, 9.75f, 10.25f }, + "37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41 00 00 24 41 ff ff 00 00 00 00 00 00 00 00 0c f4 c5 08 01 00 00 00"); + +RunRoundTrip("double[]", MxValueKind.Float64Array, new[] { 1.125d, 2.25d, 3.5d, 4.625d, 5.75d, 6.875d, 7.0d, 8.125d, 9.25d, 10.375d }, + "37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f2 3f 00 00 00 00 00 00 02 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 80 12 40 00 00 00 00 00 00 17 40 00 00 00 00 00 80 1b 40 00 00 00 00 00 00 1c 40 00 00 00 00 00 40 20 40 00 00 00 00 00 80 22 40 00 00 00 00 00 c0 24 40 ff ff 00 00 00 00 00 00 00 00 cf 68 c6 08 01 00 00 00"); + +RunRoundTrip("string[]", MxValueKind.StringArray, new[] { "A01", "B02", "C03", "D04", "E05", "F06", "G07", "H08", "I09", "J10" }, + "37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 30 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 30 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 30 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 30 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 30 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 30 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 30 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 30 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 30 00 39 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 4a 00 31 00 30 00 00 00 ff ff 00 00 00 00 00 00 00 00 c3 da c6 08 01 00 00 00"); + +RunRoundTrip("write2 int[] timestamp", MxValueKind.Int32Array, new[] { 301, 302, 303, 304, 305, 306, 307, 308, 309, 310 }, + "37 01 00 05 00 36 d7 02 00 a4 00 0a 00 60 57 ff ff 42 00 00 00 00 0a 00 04 00 00 00 2d 01 00 00 2e 01 00 00 2f 01 00 00 30 01 00 00 31 01 00 00 32 01 00 00 33 01 00 00 34 01 00 00 35 01 00 00 36 01 00 00 00 00 80 93 fc 76 ac d4 dc 01 43 35 ac 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 10, 11)); + +RunRoundTrip("write2 bool[] timestamp", MxValueKind.BooleanArray, new[] { true, true, false, false, true, true, false, false, true, true }, + "37 01 00 05 00 36 d7 02 00 a0 00 0a 00 fa 89 ff ff 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 70 58 9b ac d4 dc 01 8b 1c ac 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 11, 12)); + +RunRoundTrip("write2 string[] timestamp", MxValueKind.StringArray, new[] { "AA1", "BB2", "CC3", "DD4", "EE5", "FF6", "GG7", "HH8", "II9", "JJ10" }, + "37 01 00 05 00 36 d7 02 00 a5 00 0a 00 5d 4b ff ff 45 00 00 00 00 0a 00 04 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 41 00 41 00 31 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 42 00 42 00 32 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 43 00 43 00 33 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 44 00 44 00 34 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 45 00 45 00 35 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 46 00 46 00 36 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 47 00 47 00 37 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 48 00 48 00 38 00 00 00 11 00 00 00 05 0c 00 00 00 08 00 00 00 49 00 49 00 39 00 00 00 13 00 00 00 05 0e 00 00 00 0a 00 00 00 4a 00 4a 00 31 00 30 00 00 00 00 00 80 4c b4 bf ac d4 dc 01 10 a3 ac 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 12, 13)); + +RunRoundTrip("write2 float[] timestamp", MxValueKind.Float32Array, new[] { 1.5f, 2.5f, 3.5f, 4.5f, 5.5f, 6.5f, 7.5f, 8.5f, 9.5f, 10.5f }, + "37 01 00 05 00 36 d7 02 00 a3 00 0a 00 95 f1 ff ff 43 00 00 00 00 0a 00 04 00 00 00 00 00 c0 3f 00 00 20 40 00 00 60 40 00 00 90 40 00 00 b0 40 00 00 d0 40 00 00 f0 40 00 00 08 41 00 00 18 41 00 00 28 41 00 00 00 29 10 e4 ac d4 dc 01 fa 6a af 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 13, 14)); + +RunRoundTrip("write2 double[] timestamp", MxValueKind.Float64Array, new[] { 1.5d, 2.5d, 3.5d, 4.5d, 5.5d, 6.5d, 7.5d, 8.5d, 9.5d, 10.5d }, + "37 01 00 05 00 36 d7 02 00 a2 00 0a 00 11 0e ff ff 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f8 3f 00 00 00 00 00 00 04 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 00 12 40 00 00 00 00 00 00 16 40 00 00 00 00 00 00 1a 40 00 00 00 00 00 00 1e 40 00 00 00 00 00 00 21 40 00 00 00 00 00 00 23 40 00 00 00 00 00 00 25 40 00 00 80 05 6c 08 ad d4 dc 01 42 52 af 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 14, 15)); + +RunRoundTrip("write2 datetime[] timestamp", MxValueKind.DateTimeArray, new[] + { + new DateTime(2026, 4, 25, 9, 0, 0), + new DateTime(2026, 4, 25, 9, 1, 0), + new DateTime(2026, 4, 25, 9, 2, 0), + new DateTime(2026, 4, 25, 9, 3, 0), + new DateTime(2026, 4, 25, 9, 4, 0), + new DateTime(2026, 4, 25, 9, 5, 0), + new DateTime(2026, 4, 25, 9, 6, 0), + new DateTime(2026, 4, 25, 9, 7, 0), + new DateTime(2026, 4, 25, 9, 8, 0), + new DateTime(2026, 4, 25, 9, 9, 0), + }, + "37 01 00 05 00 36 d7 02 00 a1 00 0a 00 1b df ff ff 45 00 00 00 00 0a 00 04 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 30 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 31 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 32 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 33 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 34 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 35 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 36 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 37 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 38 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 33 00 00 00 05 2e 00 00 00 2a 00 00 00 34 00 2f 00 32 00 35 00 2f 00 32 00 30 00 32 00 36 00 20 00 39 00 3a 00 30 00 39 00 3a 00 30 00 30 00 20 00 41 00 4d 00 00 00 00 00 00 e2 c7 2c ad d4 dc 01 35 07 b1 0b 01 00 00 00", + timestamp: new DateTime(2026, 4, 25, 8, 15, 16)); + +RunTransferEnvelopeRoundTrip( + "int transfer envelope", + "37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00", + "01 00 28 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 37 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 17 cd 5b 07 ff ff 00 00 00 00 00 00 00 00 24 3c ed 08 01 00 00 00"); + +RunObservedFrameTests(); +RunItemControlMessageTests(); +RunMxReferenceHandleTests(); +RunGeneratedTransferEnvelopeTests(); +RunReferenceRegistrationMessageTests(); +RunProtectedWriteGenerationTests(); +RunSecuredWrite2GenerationTests(); +RunMxStatusDetailTests(); +RunMxDataTypeSupportTests(); + +Console.WriteLine("MxNativeCodec observed write-body round trips passed."); + +static void RunRoundTrip(string name, MxValueKind kind, object value, string hex, DateTime? timestamp = null) +{ + byte[] observed = FromHex(hex); + var template = ObservedWriteBodyTemplate.FromObserved(kind, observed); + + object decoded = template.Decode(observed); + AssertValue(name, value, decoded); + AssertEqual(name + " write index", 1, template.DecodeWriteIndex(observed)); + + byte[] encoded = template.Encode(value, writeIndex: 1); + AssertBytes(name, observed, encoded); + + if (timestamp.HasValue) + { + var handle = HandleFromObservedWriteBody(observed); + uint clientToken = BinaryPrimitives.ReadUInt32LittleEndian(observed.AsSpan(observed.Length - 8, sizeof(uint))); + byte[] generated = NmxWriteMessage.EncodeTimestamped( + handle, + kind, + decoded, + timestamp.Value, + template.DecodeWriteIndex(observed), + clientToken); + AssertBytes(name + " generated", observed, generated); + } + else + { + var handle = HandleFromObservedWriteBody(observed); + uint clientToken = BinaryPrimitives.ReadUInt32LittleEndian(observed.AsSpan(observed.Length - 8, sizeof(uint))); + byte[] generated = NmxWriteMessage.Encode( + handle, + kind, + decoded, + template.DecodeWriteIndex(observed), + clientToken); + AssertBytes(name + " generated", observed, generated); + } +} + +static void RunTimestampedGenerated(string name, MxValueKind kind, object value, string hex, DateTime timestamp) +{ + byte[] observed = FromHex(hex); + var handle = HandleFromObservedWriteBody(observed); + uint clientToken = BinaryPrimitives.ReadUInt32LittleEndian(observed.AsSpan(observed.Length - 8, sizeof(uint))); + int writeIndex = BinaryPrimitives.ReadInt32LittleEndian(observed.AsSpan(observed.Length - sizeof(int), sizeof(int))); + byte[] generated = NmxWriteMessage.EncodeTimestamped( + handle, + kind, + value, + timestamp, + writeIndex, + clientToken); + AssertBytes(name + " generated", observed, generated); +} + +static void RunTransferEnvelopeRoundTrip(string name, string innerHex, string transferHex) +{ + byte[] inner = FromHex(innerHex); + byte[] transfer = FromHex(transferHex); + var template = NmxTransferEnvelopeTemplate.FromObserved(transfer); + + AssertBytes(name + " decoded inner", inner, template.DecodeInner(transfer).Span); + AssertBytes(name, transfer, template.Encode(inner)); +} + +static void RunObservedFrameTests() +{ + byte[] adviseTransfer = FromHex( + "01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 " + + "1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"); + var adviseEnvelope = NmxObservedEnvelope.ParseTransferDataBody(adviseTransfer); + AssertEqual("advise declared inner", 39, adviseEnvelope.DeclaredInnerLength); + AssertEqual("advise actual inner", 39, adviseEnvelope.ActualInnerLength); + + var advise = NmxObservedMessage.Parse(adviseEnvelope.InnerBody.Span); + AssertEqual("advise command", (byte)0x1f, advise.Command); + AssertEqual("advise command name", "AdviseSupervisory", advise.CommandName); + AssertEqual("advise version major", (byte)1, advise.VersionMajor); + AssertEqual("advise correlation", new Guid("cd9ccac0-6532-46b0-a585-a583b2e77a5d"), advise.ItemCorrelationId); + + byte[] statusReceived = FromHex( + "6c 00 00 00 01 00 3e 00 00 00 00 00 00 00 5d 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "32 01 00 01 00 00 00 db 4e 14 ba e9 25 85 47 81 e4 e0 e7 1a d2 b1 aa c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 03 00 00 00 03 00 00 00 c0 00 60 9a 60 95 84 d4 dc 01 02"); + var statusEnvelope = NmxObservedEnvelope.ParseProcessDataReceivedBody(statusReceived); + AssertEqual("status total prefix", 108, statusEnvelope.TotalLengthPrefix!.Value); + AssertEqual("status declared inner", 62, statusEnvelope.DeclaredInnerLength); + AssertEqual("status actual inner", 58, statusEnvelope.ActualInnerLength); + + var status = NmxObservedMessage.Parse(statusEnvelope.InnerBody.Span); + AssertEqual("status command", (byte)0x32, status.Command); + AssertEqual("status command name", "SubscriptionStatus", status.CommandName); + + var typedStatus = NmxSubscriptionMessage.ParseProcessDataReceivedBody(statusReceived); + AssertEqual("typed status command", NmxSubscriptionMessage.SubscriptionStatusCommand, typedStatus.Command); + AssertEqual("typed status count", 1, typedStatus.RecordCount); + AssertEqual("typed status operation id", new Guid("ba144edb-25e9-4785-81e4-e0e71ad2b1aa"), typedStatus.OperationId); + AssertEqual("typed status item correlation", new Guid("cd9ccac0-6532-46b0-a585-a583b2e77a5d"), typedStatus.ItemCorrelationId!.Value); + AssertEqual("typed status record count", 1, typedStatus.Records.Count); + AssertEqual("typed status status", 3, typedStatus.Records[0].Status); + AssertEqual("typed status detail", 3, typedStatus.Records[0].DetailStatus!.Value); + AssertEqual("typed status quality", (ushort)0x00c0, typedStatus.Records[0].Quality); + AssertEqual("typed status wire kind", (byte)0x02, typedStatus.Records[0].WireKind); + AssertEqual("typed status value", null, typedStatus.Records[0].Value); + AssertEqual("typed status mx status", MxStatus.DataChangeOk, typedStatus.Records[0].ToDataChangeStatus()); + + byte[] dataUpdateReceived = FromHex( + "01 00 2a 00 00 00 00 00 00 00 cd 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 1c c8 68 ce e5 13 e8 48 89 87 21 91 a8 dc 42 93 03 00 00 00 c0 00 00 72 68 3a 83 d4 dc 01 02 72 00 00 00"); + var dataUpdateEnvelope = NmxObservedEnvelope.ParseProcessDataReceivedBodyFlexible(dataUpdateReceived); + AssertEqual("data update has no length prefix", false, dataUpdateEnvelope.HasLengthPrefix); + AssertEqual("data update declared inner", 42, dataUpdateEnvelope.DeclaredInnerLength); + AssertEqual("data update actual inner", 42, dataUpdateEnvelope.ActualInnerLength); + + var dataUpdate = NmxSubscriptionMessage.ParseProcessDataReceivedBody(dataUpdateReceived); + AssertEqual("data update command", NmxSubscriptionMessage.DataUpdateCommand, dataUpdate.Command); + AssertEqual("data update count", 1, dataUpdate.RecordCount); + AssertEqual("data update operation id", new Guid("ce68c81c-13e5-48e8-8987-2191a8dc4293"), dataUpdate.OperationId); + AssertEqual("data update item correlation", null, dataUpdate.ItemCorrelationId); + AssertEqual("data update status", 3, dataUpdate.Records[0].Status); + AssertEqual("data update detail", null, dataUpdate.Records[0].DetailStatus); + AssertEqual("data update quality", (ushort)0x00c0, dataUpdate.Records[0].Quality); + AssertEqual("data update timestamp", new DateTime(2026, 4, 25, 7, 15, 0, DateTimeKind.Utc), dataUpdate.Records[0].TimestampUtc); + AssertEqual("data update wire kind", (byte)0x02, dataUpdate.Records[0].WireKind); + AssertEqual("data update value", 114, dataUpdate.Records[0].Value!); + AssertEqual("data update mx status", MxStatus.DataChangeOk, dataUpdate.Records[0].ToDataChangeStatus()); + + byte[] writeCompleteReceived = FromHex( + "01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 02 02 00 00 30 75 00 00 00 00 50 80 00"); + AssertEqual( + "write complete operation parse", + true, + NmxOperationStatusMessage.TryParseProcessDataReceivedBody(writeCompleteReceived, out var writeComplete)); + AssertEqual("write complete format", NmxOperationStatusFormat.StatusWord, writeComplete.Format); + AssertEqual("write complete command", (byte)0x00, writeComplete.Command); + AssertEqual("write complete status code", (ushort)0x8050, writeComplete.StatusCode); + AssertEqual("write complete completion code", (byte)0x00, writeComplete.CompletionCode); + AssertEqual("write complete mx status", MxStatus.WriteCompleteOk, writeComplete.Status); + AssertEqual("write complete mxaccess event", true, writeComplete.IsMxAccessWriteComplete); + + byte[] writeWrongTypeStatusReceived = FromHex( + "33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 41"); + AssertEqual( + "write wrong-type status parse", + true, + NmxOperationStatusMessage.TryParseProcessDataReceivedBody(writeWrongTypeStatusReceived, out var writeWrongTypeStatus)); + AssertEqual("write wrong-type format", NmxOperationStatusFormat.CompletionOnly, writeWrongTypeStatus.Format); + AssertEqual("write wrong-type status code", (ushort)0, writeWrongTypeStatus.StatusCode); + AssertEqual("write wrong-type completion code", (byte)0x41, writeWrongTypeStatus.CompletionCode); + AssertEqual("write wrong-type mx status success", (short)0, writeWrongTypeStatus.Status.Success); + AssertEqual("write wrong-type mx status detail", (short)0x41, writeWrongTypeStatus.Status.Detail); + AssertEqual("write wrong-type mxaccess event", false, writeWrongTypeStatus.IsMxAccessWriteComplete); + + byte[] writeCompletionOnlyOkReceived = FromHex( + "33 00 00 00 01 00 05 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 f9 7f 00 00 02 02 00 00 30 75 00 00 00"); + AssertEqual( + "write completion-only ok parse", + true, + NmxOperationStatusMessage.TryParseProcessDataReceivedBody(writeCompletionOnlyOkReceived, out var writeCompletionOnlyOk)); + AssertEqual("write completion-only ok format", NmxOperationStatusFormat.CompletionOnly, writeCompletionOnlyOk.Format); + AssertEqual("write completion-only ok completion code", (byte)0x00, writeCompletionOnlyOk.CompletionCode); + AssertEqual("write completion-only ok mxaccess event", false, writeCompletionOnlyOk.IsMxAccessWriteComplete); + + byte[] statusWithValueReceived = FromHex( + "01 00 3e 00 00 00 00 00 00 00 ca 86 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "32 01 00 01 00 00 00 1c c8 68 ce e5 13 e8 48 89 87 21 91 a8 dc 42 93 b0 b8 80 11 ae ae f8 40 9a c9 8b 3c 9e 79 f4 a4 03 00 00 00 03 00 00 00 c0 00 90 06 82 68 7b d4 dc 01 02 6f 00 00 00"); + var statusWithValue = NmxSubscriptionMessage.ParseProcessDataReceivedBody(statusWithValueReceived); + AssertEqual("status with value command", NmxSubscriptionMessage.SubscriptionStatusCommand, statusWithValue.Command); + AssertEqual("status with value count", 1, statusWithValue.RecordCount); + AssertEqual("status with value operation id", new Guid("ce68c81c-13e5-48e8-8987-2191a8dc4293"), statusWithValue.OperationId); + AssertEqual("status with value item correlation", new Guid("1180b8b0-aeae-40f8-9ac9-8b3c9e79f4a4"), statusWithValue.ItemCorrelationId!.Value); + AssertEqual("status with value status", 3, statusWithValue.Records[0].Status); + AssertEqual("status with value detail", 3, statusWithValue.Records[0].DetailStatus!.Value); + AssertEqual("status with value quality", (ushort)0x00c0, statusWithValue.Records[0].Quality); + AssertEqual("status with value wire kind", (byte)0x02, statusWithValue.Records[0].WireKind); + AssertEqual("status with value value", 111, statusWithValue.Records[0].Value!); + + byte[] multiRecordStatusReceived = FromHex( + "01 00 69 00 00 00 00 00 00 00 ef e4 08 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "32 01 00 02 00 00 00 13 27 1c 4c c8 d3 95 40 b9 dd 17 80 70 23 4a 9d 42 95 8e 96 10 37 0c 4a b8 f8 79 bf ac 46 b8 e4 01 00 00 00 03 00 00 00 c0 00 20 2e 5a 46 28 d3 dc 01 06 0a 00 00 00 00 a0 41 c3 55 bd dc 01 00 00 02 00 00 00 03 00 00 00 c0 00 80 18 5b 46 28 d3 dc 01 06 0a 00 00 00 80 c1 75 25 a5 bd dc 01 00 00"); + var multiRecordStatus = NmxSubscriptionMessage.ParseProcessDataReceivedBody(multiRecordStatusReceived); + AssertEqual("multi status count", 2, multiRecordStatus.RecordCount); + AssertEqual("multi status parsed records", 2, multiRecordStatus.Records.Count); + AssertEqual("multi status first status", 1, multiRecordStatus.Records[0].Status); + AssertEqual("multi status second status", 2, multiRecordStatus.Records[1].Status); + AssertEqual("multi status first kind", (byte)0x06, multiRecordStatus.Records[0].WireKind); + AssertEqual("multi status second kind", (byte)0x06, multiRecordStatus.Records[1].WireKind); + AssertEqual("multi status first value type", true, multiRecordStatus.Records[0].Value is DateTime); + AssertEqual("multi status second value type", true, multiRecordStatus.Records[1].Value is DateTime); + + byte[] boolUpdateReceived = FromHex( + "01 00 27 00 00 00 00 00 00 00 f9 74 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 88 b0 59 be 24 f0 f8 43 a7 89 b6 95 d8 11 13 9e 03 00 00 00 c0 00 f0 58 d4 21 7c d4 dc 01 01 ff"); + AssertCallbackValue("bool update", boolUpdateReceived, true); + + byte[] floatUpdateReceived = FromHex( + "01 00 2a 00 00 00 00 00 00 00 4d 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 e1 29 46 93 4a c7 6d 43 b8 9b ad df bc ee f8 61 03 00 00 00 c0 00 10 8f cb 38 7c d4 dc 01 03 00 00 a0 3f"); + AssertCallbackValue("float update", floatUpdateReceived, 1.25f); + + byte[] doubleUpdateReceived = FromHex( + "01 00 2e 00 00 00 00 00 00 00 a1 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 3b 39 15 ab 40 13 c5 4c 8d 6c b6 74 e5 9a db bf 03 00 00 00 c0 00 20 16 af 4f 7c d4 dc 01 04 00 00 00 00 00 00 f2 3f"); + AssertCallbackValue("double update", doubleUpdateReceived, 1.125d); + + byte[] stringUpdateReceived = FromHex( + "01 00 3e 00 00 00 00 00 00 00 f8 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed 03 00 00 00 c0 00 10 5c 75 67 7c d4 dc 01 05 14 00 00 00 10 00 00 00 41 00 6c 00 70 00 68 00 61 00 4d 00 58 00 00 00"); + AssertCallbackValue("string update", stringUpdateReceived, "AlphaMX"); + + byte[] stringStatusReceived = FromHex( + "01 00 60 00 00 00 00 00 00 00 f5 75 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "32 01 00 01 00 00 00 e1 40 1f 90 80 e4 7d 43 bf ab 6f a2 ea 23 97 ed b2 36 c6 09 ef 0d 00 43 9e 1d 5e d9 16 c8 7c cc 03 00 00 00 03 00 00 00 c0 00 b0 a0 e2 57 47 bd dc 01 05 22 00 00 00 1e 00 00 00 48 00 65 00 6c 00 6c 00 6f 00 46 00 72 00 6f 00 6d 00 4f 00 70 00 63 00 55 00 61 00 00 00"); + AssertCallbackValue("string status", stringStatusReceived, "HelloFromOpcUa"); + + byte[] compactEmptyStringStatusReceived = FromHex( + "32 01 00 01 00 00 00 bd 26 31 07 1d d2 76 4d b4 48 29 dd a2 53 1e 29 e6 5c 35 81 5e f9 79 44 b3 5a d0 5d 9f c6 60 a8 03 00 00 00 00 00 00 00 c0 00 30 69 98 49 28 d3 dc 01 05 04 00 00 00"); + var compactEmptyStringStatus = NmxSubscriptionMessage.ParseInner(compactEmptyStringStatusReceived); + AssertEqual("compact empty string kind", (byte)0x05, compactEmptyStringStatus.Records[0].WireKind); + AssertEqual("compact empty string value", string.Empty, compactEmptyStringStatus.Records[0].Value!); + + byte[] elapsedTimeStatusReceived = FromHex( + "32 01 00 01 00 00 00 00 c0 ac 3a 1a 83 b4 48 88 e6 43 56 87 4b 87 97 45 d3 97 30 68 7f b9 48 b8 c4 bf cd 99 a7 a3 51 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 00 00 00"); + var elapsedTimeStatus = NmxSubscriptionMessage.ParseInner(elapsedTimeStatusReceived); + AssertEqual("elapsed time kind", (byte)0x07, elapsedTimeStatus.Records[0].WireKind); + AssertEqual("elapsed time value", TimeSpan.Zero, elapsedTimeStatus.Records[0].Value!); + + byte[] nonZeroElapsedTimeStatusReceived = FromHex( + "70 00 00 00 01 00 42 00 00 00 00 00 00 00 cd 89 05 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "32 01 00 01 00 00 00 80 d0 62 c4 97 13 d4 43 a0 bc 8b a5 a6 e2 69 86 7c 32 dd c9 b6 70 af 4a 89 a5 18 67 bc 51 66 71 03 00 00 00 00 00 00 00 c0 00 90 5c d6 49 28 d3 dc 01 07 00 e4 0b 54"); + var nonZeroElapsedTimeStatus = NmxSubscriptionMessage.ParseProcessDataReceivedBody(nonZeroElapsedTimeStatusReceived); + AssertEqual("nonzero elapsed time kind", (byte)0x07, nonZeroElapsedTimeStatus.Records[0].WireKind); + AssertEqual("nonzero elapsed time value", TimeSpan.FromMilliseconds(0x540be400), nonZeroElapsedTimeStatus.Records[0].Value!); + + byte[] intArrayUpdateReceived = FromHex( + "01 00 58 00 00 00 00 00 00 00 c0 7c 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 46 5a 30 af 6a 87 65 46 ac c5 4d 98 f2 e2 12 fe 03 00 00 00 c0 00 d0 ba 8f 68 7e d4 dc 01 42 00 00 00 00 0a 00 04 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cc 00 00 00 cd 00 00 00 ce 00 00 00 cf 00 00 00 d0 00 00 00 d1 00 00 00 d2 00 00 00"); + AssertCallbackValue("int array update", intArrayUpdateReceived, new[] { 201, 202, 203, 204, 205, 206, 207, 208, 209, 210 }); + + byte[] boolArrayUpdateReceived = FromHex( + "01 00 44 00 00 00 00 00 00 00 23 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 f6 8c cc e9 ef 7e 36 4e ab 35 e3 d0 27 51 db 55 03 00 00 00 c0 00 20 73 4c 85 7e d4 dc 01 41 00 00 00 00 0a 00 02 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff 00 00 00 00 ff ff ff ff"); + AssertCallbackValue("bool array update", boolArrayUpdateReceived, new[] { true, true, false, false, true, true, false, false, true, true }); + + byte[] floatArrayUpdateReceived = FromHex( + "01 00 58 00 00 00 00 00 00 00 62 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 43 cd bf c8 a6 e1 a7 44 b7 14 99 a0 52 81 ec 43 03 00 00 00 c0 00 b0 47 0d 97 7e d4 dc 01 43 00 00 00 00 0a 00 04 00 00 00 00 00 a0 3f 00 00 20 40 00 00 70 40 00 00 88 40 00 00 b0 40 00 00 d8 40 00 00 e8 40 00 00 08 41 00 00 1c 41 00 00 24 41"); + AssertCallbackValue("float array update", floatArrayUpdateReceived, new[] { 1.25f, 2.5f, 3.75f, 4.25f, 5.5f, 6.75f, 7.25f, 8.5f, 9.75f, 10.25f }); + + byte[] doubleArrayUpdateReceived = FromHex( + "01 00 80 00 00 00 00 00 00 00 a0 7d 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 eb 4d ab 7d 2e d8 02 49 b9 04 34 db b0 c9 41 06 03 00 00 00 c0 00 b0 bc cc a8 7e d4 dc 01 44 00 00 00 00 0a 00 08 00 00 00 00 00 00 00 00 00 f2 3f 00 00 00 00 00 00 02 40 00 00 00 00 00 00 0c 40 00 00 00 00 00 80 12 40 00 00 00 00 00 00 17 40 00 00 00 00 00 80 1b 40 00 00 00 00 00 00 1c 40 00 00 00 00 00 40 20 40 00 00 00 00 00 80 22 40 00 00 00 00 00 c0 24 40"); + AssertCallbackValue("double array update", doubleArrayUpdateReceived, new[] { 1.125d, 2.25d, 3.5d, 4.625d, 5.75d, 6.875d, 7.0d, 8.125d, 9.25d, 10.375d }); + + byte[] dateTimeArrayUpdateReceived = FromHex( + "01 00 a8 00 00 00 00 00 00 00 e4 7e 04 00 01 00 00 00 01 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 02 00 00 30 75 00 00 " + + "33 01 00 01 00 00 00 c4 10 20 21 f5 14 45 42 aa 5a 7e 63 fc e1 d7 72 03 00 00 00 c0 00 40 85 bb 06 7f d4 dc 01 46 00 00 00 00 0a 00 0c 00 00 00 00 58 f7 21 81 d4 dc 01 00 00 00 00 00 9e ba 45 81 d4 dc 01 00 00 00 00 00 e4 7d 69 81 d4 dc 01 00 00 00 00 00 2a 41 8d 81 d4 dc 01 00 00 00 00 00 70 04 b1 81 d4 dc 01 00 00 00 00 00 b6 c7 d4 81 d4 dc 01 00 00 00 00 00 fc 8a f8 81 d4 dc 01 00 00 00 00 00 42 4e 1c 82 d4 dc 01 00 00 00 00 00 88 11 40 82 d4 dc 01 00 00 00 00 00 ce d4 63 82 d4 dc 01 00 00 00 00"); + var dateTimeArrayUpdate = NmxSubscriptionMessage.ParseProcessDataReceivedBody(dateTimeArrayUpdateReceived); + AssertEqual("datetime array update value type", true, dateTimeArrayUpdate.Records[0].Value is DateTime[]); + AssertEqual("datetime array update count", 10, ((DateTime[])dateTimeArrayUpdate.Records[0].Value!).Length); + + byte[] metadataTransfer = FromHex( + "01 00 3a 01 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 02 00 00 30 75 00 00 " + + "17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 6a 00 00 00 40 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 44 00 65 00 70 00 6c 00 6f 00 79 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 d0 fc 40 09 1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 01 00 00 00 " + + "17 01 00 01 01 00 01 00 00 00 65 00 71 00 0a 00 00 00 00 00 08 76 00 00 00 4c 00 00 81 44 00 65 00 76 00 50 00 6c 00 61 00 74 00 66 00 6f 00 72 00 6d 00 2e 00 47 00 52 00 2e 00 54 00 69 00 6d 00 65 00 4f 00 66 00 4c 00 61 00 73 00 74 00 43 00 6f 00 6e 00 66 00 69 00 67 00 43 00 68 00 61 00 6e 00 67 00 65 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 50 03 41 09 20 01 00 02 00 00 00"); + var metadataEnvelope = NmxObservedEnvelope.ParseTransferDataBody(metadataTransfer); + var metadata = NmxObservedMessage.Parse(metadataEnvelope.InnerBody.Span); + AssertEqual("metadata command", (byte)0x17, metadata.Command); + AssertEqual("metadata command name", "MetadataQuery", metadata.CommandName); + AssertEqual("metadata string 1", true, metadata.Strings.Any(s => s.Value == "DevPlatform.GR.TimeOfLastDeploy")); + AssertEqual("metadata string 2", true, metadata.Strings.Any(s => s.Value == "DevPlatform.GR.TimeOfLastConfigChange")); + AssertBytes( + "observed pre-advise metadata encode", + metadataEnvelope.InnerBody.ToArray(), + NmxMetadataQueryMessage.EncodeObservedPreAdvise(new Guid("cd9ccac0-6532-46b0-a585-a583b2e77a5d"))); + + byte[] metadataResponseReceived = FromHex( + "C2 02 00 00 01 00 94 02 00 00 00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 24 72 00 00 02 02 00 00 30 75 00 00 " + + "40 1F 50 80 08 A6 00 00 00 40 00 00 91 44 00 65 00 76 00 50 00 6C 00 61 00 74 00 66 00 6F 00 72 00 6D 00 2E 00 47 00 52 00 2E 00 54 00 69 00 6D 00 65 00 4F 00 66 00 4C 00 61 00 73 00 74 00 44 00 65 00 70 00 6C 00 6F 00 79 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6C 00 61 00 74 00 66 00 6F 00 72 00 6D 00 00 00 28 00 00 00 47 00 52 00 2E 00 54 00 69 00 6D 00 65 00 4F 00 66 00 4C 00 61 00 73 00 74 00 44 00 65 00 70 00 6C 00 6F 00 79 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 F2 9A 00 6A 00 0A 00 5F F1 00 00 01 6C 00 00 00 41 00 6E 00 20 00 69 00 6E 00 74 00 65 00 72 00 6E 00 61 00 6C 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 6F 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6E 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6E 00 74 00 69 00 6D 00 65 00 20 00 4F 00 62 00 6A 00 65 00 63 00 74 00 00 00 1F 00 00 50 80 01 00 01 00 01 00 30 75 00 00 D3 57 0D 95 6B 8F 7C 43 A6 09 63 4D 53 53 A2 C2 66 6B F0 7D 78 52 AC 46 82 E5 AF 0A CF 91 34 F5 40 1F 50 80 08 BE 00 00 00 4C 00 00 91 44 00 65 00 76 00 50 00 6C 00 61 00 74 00 66 00 6F 00 72 00 6D 00 2E 00 47 00 52 00 2E 00 54 00 69 00 6D 00 65 00 4F 00 66 00 4C 00 61 00 73 00 74 00 43 00 6F 00 6E 00 66 00 69 00 67 00 43 00 68 00 61 00 6E 00 67 00 65 00 00 00 18 00 00 00 44 00 65 00 76 00 50 00 6C 00 61 00 74 00 66 00 6F 00 72 00 6D 00 00 00 34 00 00 00 47 00 52 00 2E 00 54 00 69 00 6D 00 65 00 4F 00 66 00 4C 00 61 00 73 00 74 00 43 00 6F 00 6E 00 66 00 69 00 67 00 43 00 68 00 61 00 6E 00 67 00 65 00 00 00 02 00 00 00 00 00 01 01 00 01 00 01 00 53 F2 9A 00 6B 00 0A 00 87 3A 00 00 01 6C 00 00 00 41 00 6E 00 20 00 69 00 6E 00 74 00 65 00 72 00 6E 00 61 00 6C 00 20 00 65 00 72 00 72 00 6F 00 72 00 20 00 6F 00 63 00 63 00 75 00 72 00 72 00 65 00 64 00 20 00 69 00 6E 00 20 00 74 00 68 00 65 00 20 00 42 00 61 00 73 00 65 00 20 00 52 00 75 00 6E 00 74 00 69 00 6D 00 65 00 20 00 4F 00 62 00 6A 00 65 00 63 00 74 00 00 00 20 00 00 50 80 01 00 01 00 01 00"); + var metadataResponse = NmxObservedMessage.Parse(metadataResponseReceived.AsSpan(46)); + AssertEqual("metadata response command", (byte)0x40, metadataResponse.Command); + AssertEqual("metadata response command name", "MetadataResponse", metadataResponse.CommandName); + AssertEqual("metadata response string 1", true, metadataResponse.Strings.Any(s => s.Value == "DevPlatform.GR.TimeOfLastDeploy")); + AssertEqual("metadata response string 2", true, metadataResponse.Strings.Any(s => s.Value == "DevPlatform.GR.TimeOfLastConfigChange")); + AssertEqual("metadata response error string", true, metadataResponse.Strings.Any(s => s.Value == "An internal error occurred in the Base Runtime Object")); +} + +static void RunItemControlMessageTests() +{ + RunItemControlRoundTrip( + "TestInt advise", + "1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00", + NmxItemControlCommand.AdviseSupervisory, + new Guid("cd9ccac0-6532-46b0-a585-a583b2e77a5d"), + 5, + 0xd736, + 2, + 155, + 10, + 0xda3e, + 0); + + RunItemControlRoundTrip( + "TestInt unadvise", + "21 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00", + NmxItemControlCommand.UnAdvise, + new Guid("cd9ccac0-6532-46b0-a585-a583b2e77a5d"), + 5, + 0xd736, + 2, + 155, + 10, + 0xda3e, + 0); + + RunItemControlRoundTrip( + "TestBool advise", + "1f 01 00 46 86 88 6b e0 16 13 4f 9a 88 2b bc 8f ae 13 04 00 00 05 00 36 d7 02 00 9a 00 0a 00 fa 7d 00 00 03 00 00 00", + NmxItemControlCommand.AdviseSupervisory, + new Guid("6b888646-16e0-4f13-9a88-2bbc8fae1304"), + 5, + 0xd736, + 2, + 154, + 10, + 0x7dfa, + 0); + + RunItemControlRoundTrip( + "TestString advise", + "1f 01 00 7d 4e 8d dc 01 db 02 41 9e 5d a4 f3 44 10 c4 73 00 00 05 00 36 d7 02 00 9e 00 0a 00 1a 94 00 00 03 00 00 00", + NmxItemControlCommand.AdviseSupervisory, + new Guid("dc8d4e7d-db01-4102-9e5d-a4f34410c473"), + 5, + 0xd736, + 2, + 158, + 10, + 0x941a, + 0); +} + +static void RunMxStatusDetailTests() +{ + var denied = new MxStatus( + Success: 0, + Category: MxStatusCategory.SecurityError, + DetectedBy: MxStatusSource.RespondingAutomationObject, + Detail: 33); + AssertEqual("status detail denied", "Write access denied", denied.DetailText!); + AssertEqual("status detail secured", "Secured Write", MxStatusDetails.GetKnownText(56)!); + AssertEqual("status detail conversion", "Conversion to intended data type is not supported", MxStatusDetails.GetKnownText(541)!); + AssertEqual("status detail configure classification", "Object must be offscan to modify attributes that have an MxSecurityConfigure security classification", MxStatusDetails.GetKnownText(8017)!); + AssertEqual("status detail unknown", null, MxStatusDetails.GetKnownText(999)); + AssertEqual("invalid reference status success", (short)0, MxStatus.InvalidReferenceConfiguration.Success); + AssertEqual("invalid reference status category", MxStatusCategory.ConfigurationError, MxStatus.InvalidReferenceConfiguration.Category); + AssertEqual("invalid reference status source", MxStatusSource.RequestingLmx, MxStatus.InvalidReferenceConfiguration.DetectedBy); + AssertEqual("invalid reference status detail", (short)6, MxStatus.InvalidReferenceConfiguration.Detail); +} + +static void RunMxDataTypeSupportTests() +{ + AssertEqual("int type kind supported", true, NmxWriteMessage.TryGetValueKind((short)MxDataType.Integer, isArray: false, out var intKind)); + AssertEqual("int type kind", MxValueKind.Int32, intKind); + AssertEqual("int array type kind supported", true, NmxWriteMessage.TryGetValueKind((short)MxDataType.Integer, isArray: true, out var intArrayKind)); + AssertEqual("int array type kind", MxValueKind.Int32Array, intArrayKind); + AssertEqual("elapsed unsupported", false, NmxWriteMessage.TryGetValueKind((short)MxDataType.ElapsedTime, isArray: false, out _)); + AssertEqual("internationalized string unsupported", false, NmxWriteMessage.TryGetValueKind((short)MxDataType.InternationalizedString, isArray: false, out _)); +} + +static void RunMxReferenceHandleTests() +{ + byte[] observedHandle = FromHex("01 00 01 00 02 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00"); + var handle = MxReferenceHandle.Parse(observedHandle); + + AssertEqual("handle platform", (ushort)1, handle.PlatformId); + AssertEqual("handle engine", (ushort)2, handle.EngineId); + AssertEqual("handle object id", (ushort)5, handle.ObjectId); + AssertEqual("handle object signature", (ushort)0xd736, handle.ObjectSignature); + AssertEqual("handle primitive id", (short)2, handle.PrimitiveId); + AssertEqual("handle attribute id", (short)155, handle.AttributeId); + AssertEqual("handle property id", (short)10, handle.PropertyId); + AssertEqual("handle attribute signature", (ushort)0xda3e, handle.AttributeSignature); + AssertEqual("handle attribute index", (short)0, handle.AttributeIndex); + AssertBytes("handle encode", observedHandle, handle.Encode()); + AssertEqual("object signature crc", (ushort)0xd736, MxReferenceHandle.ComputeNameSignature("TestChildObject")); + AssertEqual("int signature crc", (ushort)0xda3e, MxReferenceHandle.ComputeNameSignature("TestInt")); + AssertEqual("bool signature crc", (ushort)0x7dfa, MxReferenceHandle.ComputeNameSignature("TestBool")); + AssertEqual("string signature crc", (ushort)0x941a, MxReferenceHandle.ComputeNameSignature("TestString")); + AssertEqual("int array signature crc", (ushort)0x5760, MxReferenceHandle.ComputeNameSignature("TestIntArray")); + + var synthesized = MxReferenceHandle.Create( + galaxyId: 1, + platformId: 1, + engineId: 2, + objectId: 5, + objectTagName: "TestChildObject", + primitiveId: 2, + attributeId: 155, + propertyId: 10, + attributeName: "TestInt", + isArray: false); + AssertEqual("synthesized handle", handle, synthesized); + + var advise = NmxItemControlMessage.FromReferenceHandle( + NmxItemControlCommand.AdviseSupervisory, + new Guid("e56c1aff-d3a3-4a1d-921f-f12e18f0d95d"), + handle); + + AssertEqual("handle to advise object id", handle.ObjectId, advise.ObjectId); + AssertEqual("handle to advise object signature", handle.ObjectSignature, advise.ObjectSignature); + AssertEqual("handle to advise primitive", handle.PrimitiveId, advise.PrimitiveId); + AssertEqual("handle to advise attr id", handle.AttributeId, advise.AttributeId); + AssertEqual("handle to advise property id", handle.PropertyId, advise.PropertyId); + AssertEqual("handle to advise attr signature", handle.AttributeSignature, advise.AttributeSignature); + AssertEqual("handle to advise attr index", handle.AttributeIndex, advise.AttributeIndex); + AssertEqual("advise to handle", handle, advise.ToReferenceHandle(engineId: 2)); + + AssertEqual("GR bool kind", MxValueKind.Boolean, NmxWriteMessage.GetValueKind(1, isArray: false)); + AssertEqual("GR int kind", MxValueKind.Int32, NmxWriteMessage.GetValueKind(2, isArray: false)); + AssertEqual("GR float kind", MxValueKind.Float32, NmxWriteMessage.GetValueKind(3, isArray: false)); + AssertEqual("GR double kind", MxValueKind.Float64, NmxWriteMessage.GetValueKind(4, isArray: false)); + AssertEqual("GR string kind", MxValueKind.String, NmxWriteMessage.GetValueKind(5, isArray: false)); + AssertEqual("GR datetime kind", MxValueKind.DateTime, NmxWriteMessage.GetValueKind(6, isArray: false)); + AssertEqual("GR int array kind", MxValueKind.Int32Array, NmxWriteMessage.GetValueKind(2, isArray: true)); +} + +static void RunGeneratedTransferEnvelopeTests() +{ + byte[] inner = FromHex( + "1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"); + byte[] expected = FromHex( + "01 00 27 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 " + + "1f 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 00 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"); + + byte[] generated = NmxTransferEnvelope.Encode( + NmxTransferMessageKind.ItemControl, + localEngineId: 0x7ffb, + targetGalaxyId: 1, + targetPlatformId: 1, + targetEngineId: 2, + inner); + AssertBytes("generated item-control transfer", expected, generated); + + var parsed = NmxTransferEnvelope.Parse(generated); + AssertEqual("transfer kind", NmxTransferMessageKind.ItemControl, parsed.MessageKind); + AssertEqual("transfer source galaxy", 1, parsed.SourceGalaxyId); + AssertEqual("transfer source platform", 1, parsed.SourcePlatformId); + AssertEqual("transfer local engine", 0x7ffb, parsed.LocalEngineId); + AssertEqual("transfer target galaxy", 1, parsed.TargetGalaxyId); + AssertEqual("transfer target platform", 1, parsed.TargetPlatformId); + AssertEqual("transfer target engine", 2, parsed.TargetEngineId); + AssertEqual("transfer timeout", 30000, parsed.TimeoutMilliseconds); + AssertBytes("transfer inner", inner, parsed.InnerBody.Span); + + byte[] unadviseInner = FromHex( + "21 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"); + byte[] expectedUnadvise = FromHex( + "01 00 25 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 fb 7f 00 00 01 00 00 00 01 00 00 00 02 00 00 00 01 02 00 00 30 75 00 00 " + + "21 01 00 c0 ca 9c cd 32 65 b0 46 a5 85 a5 83 b2 e7 7a 5d 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 03 00 00 00"); + AssertBytes( + "generated unadvise transfer", + expectedUnadvise, + NmxTransferEnvelope.Encode( + NmxTransferMessageKind.Write, + localEngineId: 0x7ffb, + targetGalaxyId: 1, + targetPlatformId: 1, + targetEngineId: 2, + unadviseInner)); +} + +static void RunReferenceRegistrationMessageTests() +{ + byte[] observedNormal = FromHex( + "10 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"); + var normal = NmxReferenceRegistrationMessage.Parse(observedNormal); + AssertEqual("reference registration handle", 2, normal.ItemHandle); + AssertEqual("reference registration guid", new Guid("740bbd35-e863-4154-ad3a-a06861a6f99c"), normal.ItemCorrelationId); + AssertEqual("reference registration item", "TestInt", normal.ItemDefinition); + AssertEqual("reference registration context", "TestChildObject", normal.ItemContext); + AssertEqual("reference registration subscribe", true, normal.Subscribe); + AssertBytes("reference registration encode", observedNormal, normal.Encode()); + + byte[] observedBuffered = FromHex( + "10 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"); + var buffered = NmxReferenceRegistrationMessage.Parse(observedBuffered); + AssertEqual("buffered reference registration handle", 1, buffered.ItemHandle); + AssertEqual("buffered reference registration guid", new Guid("fc632990-6946-4d16-bc65-19f6d3060737"), buffered.ItemCorrelationId); + AssertEqual("buffered reference registration item", "TestInt.property(buffer)", buffered.ItemDefinition); + AssertEqual("buffered reference registration context", "TestChildObject", buffered.ItemContext); + AssertEqual("buffered helper", "TestInt.property(buffer)", NmxReferenceRegistrationMessage.ToBufferedItemDefinition("TestInt")); + AssertBytes("buffered reference registration encode", observedBuffered, buffered.Encode()); + + byte[] observedBufferedWithContext = FromHex( + "10 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 ff ff 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01"); + var bufferedWithContext = NmxReferenceRegistrationMessage.Parse(observedBufferedWithContext); + AssertEqual("context buffered registration handle", 1, bufferedWithContext.ItemHandle); + AssertEqual("context buffered registration guid", new Guid("d6969b66-42a8-4b20-9e9b-dc3e2b844e21"), bufferedWithContext.ItemCorrelationId); + AssertEqual("context buffered registration item", "TestHistoryValue.property(buffer)", bufferedWithContext.ItemDefinition); + AssertEqual("context buffered registration context", "TestMachine_001", bufferedWithContext.ItemContext); + AssertBytes("context buffered registration encode", observedBufferedWithContext, bufferedWithContext.Encode()); + + byte[] transfer = NmxTransferEnvelope.Encode( + NmxTransferMessageKind.ItemControl, + localEngineId: 0x7ff6, + targetGalaxyId: 1, + targetPlatformId: 1, + targetEngineId: 2, + observedBuffered); + AssertEqual("buffered registration transfer kind", NmxTransferMessageKind.ItemControl, NmxTransferEnvelope.Parse(transfer).MessageKind); + + byte[] observedNormalResult = FromHex( + "11 01 00 02 00 00 00 35 bd 0b 74 63 e8 54 41 ad 3a a0 68 61 a6 f9 9c 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 56 00 00 00 10 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"); + var normalResult = NmxReferenceRegistrationResultMessage.Parse(observedNormalResult); + AssertEqual("normal result handle", 2, normalResult.ItemHandle); + AssertEqual("normal result item", "TestInt", normalResult.ItemDefinition); + AssertEqual("normal result type", 2, normalResult.MxDataType); + AssertEqual("normal result context", "TestChildObject", normalResult.ItemContext); + AssertEqual("normal result status category byte", (byte)1, normalResult.StatusCategory); + AssertEqual("normal result status detail byte", (byte)8, normalResult.StatusDetail); + + byte[] observedBufferedResult = FromHex( + "11 01 00 01 00 00 00 90 29 63 fc 46 69 16 4d bc 65 19 f6 d3 06 07 37 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 78 00 00 00 32 00 00 81 54 00 65 00 73 00 74 00 49 00 6e 00 74 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 43 00 68 00 69 00 6c 00 64 00 4f 00 62 00 6a 00 65 00 63 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"); + var bufferedResult = NmxReferenceRegistrationResultMessage.Parse(observedBufferedResult); + AssertEqual("buffered result handle", 1, bufferedResult.ItemHandle); + AssertEqual("buffered result item", "TestInt.property(buffer)", bufferedResult.ItemDefinition); + AssertEqual("buffered result type", 2, bufferedResult.MxDataType); + AssertEqual("buffered result context", "TestChildObject", bufferedResult.ItemContext); + + byte[] observedBufferedContextResult = FromHex( + "11 01 00 01 00 00 00 66 9b 96 d6 a8 42 20 4b 9e 9b dc 3e 2b 84 4e 21 00 a0 41 c3 55 bd dc 01 80 c1 75 25 a5 bd dc 01 01 08 8a 00 00 00 44 00 00 81 54 00 65 00 73 00 74 00 48 00 69 00 73 00 74 00 6f 00 72 00 79 00 56 00 61 00 6c 00 75 00 65 00 2e 00 70 00 72 00 6f 00 70 00 65 00 72 00 74 00 79 00 28 00 62 00 75 00 66 00 66 00 65 00 72 00 29 00 00 00 02 00 00 00 00 00 00 00 00 00 20 00 00 00 54 00 65 00 73 00 74 00 4d 00 61 00 63 00 68 00 69 00 6e 00 65 00 5f 00 30 00 30 00 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"); + var bufferedContextResult = NmxReferenceRegistrationResultMessage.Parse(observedBufferedContextResult); + AssertEqual("context buffered result handle", 1, bufferedContextResult.ItemHandle); + AssertEqual("context buffered result item", "TestHistoryValue.property(buffer)", bufferedContextResult.ItemDefinition); + AssertEqual("context buffered result type", 2, bufferedContextResult.MxDataType); + AssertEqual("context buffered result context", "TestMachine_001", bufferedContextResult.ItemContext); +} + +static void RunProtectedWriteGenerationTests() +{ + byte[] securedWrite = FromHex( + "37 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 a1 fa d6 08 01 00 00 00"); + var securedHandle = HandleFromObservedWriteBody(securedWrite); + AssertEqual("secured object signature", (ushort)0xf408, securedHandle.ObjectSignature); + AssertEqual("secured attr signature", (ushort)0x67bb, securedHandle.AttributeSignature); + AssertEqual("secured object signature crc", securedHandle.ObjectSignature, MxReferenceHandle.ComputeNameSignature("TestMachine_001")); + AssertEqual("secured attr signature crc", securedHandle.AttributeSignature, MxReferenceHandle.ComputeNameSignature("ProtectedValue")); + AssertBytes( + "secured generated bool write", + securedWrite, + NmxWriteMessage.Encode( + securedHandle, + MxValueKind.Boolean, + true, + writeIndex: 1, + clientToken: BinaryPrimitives.ReadUInt32LittleEndian(securedWrite.AsSpan(securedWrite.Length - 8, sizeof(uint))))); + + byte[] verifiedWrite = FromHex( + "37 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff ff ff 00 00 00 00 00 00 00 00 67 64 d7 08 01 00 00 00"); + var verifiedHandle = HandleFromObservedWriteBody(verifiedWrite); + AssertEqual("verified object signature", (ushort)0xf408, verifiedHandle.ObjectSignature); + AssertEqual("verified attr signature", (ushort)0x8a26, verifiedHandle.AttributeSignature); + AssertEqual("verified attr signature crc", verifiedHandle.AttributeSignature, MxReferenceHandle.ComputeNameSignature("ProtectedValue1")); + AssertBytes( + "verified generated bool write", + verifiedWrite, + NmxWriteMessage.Encode( + verifiedHandle, + MxValueKind.Boolean, + true, + writeIndex: 1, + clientToken: BinaryPrimitives.ReadUInt32LittleEndian(verifiedWrite.AsSpan(verifiedWrite.Length - 8, sizeof(uint))))); +} + +static void RunSecuredWrite2GenerationTests() +{ + byte[] secured = FromHex( + "38 01 00 06 00 08 f4 02 00 a6 00 0a 00 bb 67 00 00 01 ff 00 00 00 f6 bf e8 1b d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 7e 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 35 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 2d 00 74 00 72 00 75 00 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 92 f4 cc 0c 01 00 00 00"); + AssertSecuredWrite2( + "secured WriteSecured2 bool", + secured, + MxValueKind.Boolean, + true, + "MxFridaTrace-115-frida-write-secured2-auth-protectedvalue-true", + verifierToken: new byte[NmxSecuredWrite2Message.AuthenticatorTokenLength]); + + byte[] verified = FromHex( + "38 01 00 06 00 08 f4 02 00 a7 00 0a 00 26 8a 00 00 01 ff 00 00 00 41 76 50 1c d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 88 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 36 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 76 00 65 00 72 00 69 00 66 00 69 00 65 00 64 00 2d 00 70 00 72 00 6f 00 74 00 65 00 63 00 74 00 65 00 64 00 76 00 61 00 6c 00 75 00 65 00 31 00 00 00 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f ff ff 1d 9d cf 0c 01 00 00 00"); + AssertSecuredWrite2( + "verified WriteSecured2 bool", + verified, + MxValueKind.Boolean, + true, + "MxFridaTrace-116-frida-write-secured2-auth-verified-protectedvalue1", + verifierToken: NmxSecuredWrite2Message.ObservedAuthenticatedUserToken); + + byte[] securedInt = FromHex( + "38 01 00 05 00 36 d7 02 00 9b 00 0a 00 3e da 00 00 02 09 03 00 00 00 00 80 8d 64 10 1f d5 dc 01 07 b9 a9 f4 72 6e ae 48 83 b5 bb de 91 8c 89 0f 66 00 00 00 4d 00 78 00 46 00 72 00 69 00 64 00 61 00 54 00 72 00 61 00 63 00 65 00 2d 00 31 00 31 00 37 00 2d 00 66 00 72 00 69 00 64 00 61 00 2d 00 77 00 72 00 69 00 74 00 65 00 2d 00 73 00 65 00 63 00 75 00 72 00 65 00 64 00 32 00 2d 00 61 00 75 00 74 00 68 00 2d 00 74 00 65 00 73 00 74 00 69 00 6e 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 2a a4 e1 0c 01 00 00 00"); + AssertSecuredWrite2( + "secured WriteSecured2 int", + securedInt, + MxValueKind.Int32, + 777, + "MxFridaTrace-117-frida-write-secured2-auth-testint", + verifierToken: new byte[NmxSecuredWrite2Message.AuthenticatorTokenLength]); +} + +static void AssertSecuredWrite2( + string name, + byte[] observed, + MxValueKind valueKind, + object value, + string clientName, + ReadOnlySpan verifierToken) +{ + var handle = HandleFromObservedWriteBody(observed); + int prefixLength = valueKind == MxValueKind.Boolean ? 21 : 24; + long fileTime = BinaryPrimitives.ReadInt64LittleEndian(observed.AsSpan(prefixLength, sizeof(long))); + uint clientToken = BinaryPrimitives.ReadUInt32LittleEndian(observed.AsSpan(observed.Length - 8, sizeof(uint))); + int writeIndex = BinaryPrimitives.ReadInt32LittleEndian(observed.AsSpan(observed.Length - sizeof(int), sizeof(int))); + + byte[] generated = NmxSecuredWrite2Message.Encode( + handle, + valueKind, + value, + DateTime.FromFileTime(fileTime), + clientName, + NmxSecuredWrite2Message.ObservedAuthenticatedUserToken, + verifierToken, + writeIndex, + clientToken); + AssertBytes(name, observed, generated); +} + +static void RunItemControlRoundTrip( + string name, + string hex, + NmxItemControlCommand command, + Guid correlationId, + ushort objectId, + ushort objectSignature, + short primitiveId, + short attributeId, + short propertyId, + ushort attributeSignature, + short attributeIndex) +{ + byte[] observed = FromHex(hex); + var parsed = NmxItemControlMessage.Parse(observed); + AssertEqual(name + " command", command, parsed.Command); + AssertEqual(name + " correlation", correlationId, parsed.ItemCorrelationId); + AssertEqual(name + " object id", objectId, parsed.ObjectId); + AssertEqual(name + " object signature", objectSignature, parsed.ObjectSignature); + AssertEqual(name + " primitive id", primitiveId, parsed.PrimitiveId); + AssertEqual(name + " attribute id", attributeId, parsed.AttributeId); + AssertEqual(name + " property id", propertyId, parsed.PropertyId); + AssertEqual(name + " attribute signature", attributeSignature, parsed.AttributeSignature); + AssertEqual(name + " attribute index", attributeIndex, parsed.AttributeIndex); + AssertEqual(name + " tail", 3u, parsed.Tail); + AssertBytes(name + " encode", observed, parsed.Encode()); +} + +static void AssertCallbackValue(string name, byte[] processDataBody, object expected) +{ + var callback = NmxSubscriptionMessage.ParseProcessDataReceivedBody(processDataBody); + AssertEqual(name + " record count", 1, callback.Records.Count); + AssertEqual(name + " quality", (ushort)0x00c0, callback.Records[0].Quality); + AssertValue(name + " value", expected, callback.Records[0].Value!); +} + +static byte[] FromHex(string hex) +{ + string[] parts = hex.Split(' ', StringSplitOptions.RemoveEmptyEntries); + byte[] bytes = new byte[parts.Length]; + for (int i = 0; i < parts.Length; i++) + { + bytes[i] = Convert.ToByte(parts[i], 16); + } + + return bytes; +} + +static MxReferenceHandle HandleFromObservedWriteBody(ReadOnlySpan body) +{ + return new MxReferenceHandle( + GalaxyId: 1, + PlatformId: 1, + EngineId: 2, + ObjectId: BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(3, sizeof(ushort))), + ObjectSignature: BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(5, sizeof(ushort))), + PrimitiveId: BinaryPrimitives.ReadInt16LittleEndian(body.Slice(7, sizeof(short))), + AttributeId: BinaryPrimitives.ReadInt16LittleEndian(body.Slice(9, sizeof(short))), + PropertyId: BinaryPrimitives.ReadInt16LittleEndian(body.Slice(11, sizeof(short))), + AttributeSignature: BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(13, sizeof(ushort))), + AttributeIndex: BinaryPrimitives.ReadInt16LittleEndian(body.Slice(15, sizeof(short)))); +} + +static void AssertValue(string name, object expected, object actual) +{ + bool equals = expected switch + { + float f => actual is float a && Math.Abs(f - a) < 0.0001f, + double d => actual is double a && Math.Abs(d - a) < 0.0000001d, + DateTime d => actual is DateTime a && d == a, + bool[] expectedValues => actual is bool[] actualValues && expectedValues.SequenceEqual(actualValues), + int[] expectedValues => actual is int[] actualValues && expectedValues.SequenceEqual(actualValues), + float[] expectedValues => actual is float[] actualValues && expectedValues.Zip(actualValues, static (e, a) => Math.Abs(e - a) < 0.0001f).All(static x => x), + double[] expectedValues => actual is double[] actualValues && expectedValues.Zip(actualValues, static (e, a) => Math.Abs(e - a) < 0.0000001d).All(static x => x), + string[] expectedValues => actual is string[] actualValues && expectedValues.SequenceEqual(actualValues), + DateTime[] expectedValues => actual is DateTime[] actualValues && expectedValues.SequenceEqual(actualValues), + _ => Equals(expected, actual), + }; + + if (!equals) + { + throw new InvalidOperationException($"{name}: expected decoded value {expected}, got {actual}."); + } +} + +static void AssertEqual(string name, T expected, T actual) +{ + if (!EqualityComparer.Default.Equals(expected, actual)) + { + throw new InvalidOperationException($"{name}: expected {expected}, got {actual}."); + } +} + +static void AssertBytes(string name, ReadOnlySpan expected, ReadOnlySpan actual) +{ + if (!expected.SequenceEqual(actual)) + { + int diff = 0; + while (diff < expected.Length && diff < actual.Length && expected[diff] == actual[diff]) + { + diff++; + } + + string expectedWindow = Convert.ToHexString(expected.Slice(diff, Math.Min(24, expected.Length - diff))).ToLowerInvariant(); + string actualWindow = Convert.ToHexString(actual.Slice(diff, Math.Min(24, actual.Length - diff))).ToLowerInvariant(); + throw new InvalidOperationException($"{name}: encoded bytes do not match observed bytes at offset {diff}; expected length {expected.Length}, actual length {actual.Length}; expected {expectedWindow}; actual {actualWindow}."); + } +} diff --git a/src/MxNativeCodec/MxDataType.cs b/src/MxNativeCodec/MxDataType.cs new file mode 100644 index 0000000..8c90a48 --- /dev/null +++ b/src/MxNativeCodec/MxDataType.cs @@ -0,0 +1,24 @@ +namespace MxNativeCodec; + +public enum MxDataType : short +{ + Unknown = -1, + NoData = 0, + Boolean = 1, + Integer = 2, + Float = 3, + Double = 4, + String = 5, + Time = 6, + ElapsedTime = 7, + ReferenceType = 8, + StatusType = 9, + Enum = 10, + SecurityClassificationEnum = 11, + DataQualityType = 12, + QualifiedEnum = 13, + QualifiedStruct = 14, + InternationalizedString = 15, + BigString = 16, + End = 17, +} diff --git a/src/MxNativeCodec/MxNativeCodec.csproj b/src/MxNativeCodec/MxNativeCodec.csproj new file mode 100644 index 0000000..ca41e2a --- /dev/null +++ b/src/MxNativeCodec/MxNativeCodec.csproj @@ -0,0 +1,8 @@ + + + net10.0 + enable + enable + preview + + diff --git a/src/MxNativeCodec/MxReferenceHandle.cs b/src/MxNativeCodec/MxReferenceHandle.cs new file mode 100644 index 0000000..c0809cc --- /dev/null +++ b/src/MxNativeCodec/MxReferenceHandle.cs @@ -0,0 +1,120 @@ +using System.Buffers.Binary; + +namespace MxNativeCodec; + +public readonly record struct MxReferenceHandle( + byte GalaxyId, + ushort PlatformId, + ushort EngineId, + ushort ObjectId, + ushort ObjectSignature, + short PrimitiveId, + short AttributeId, + short PropertyId, + ushort AttributeSignature, + short AttributeIndex) +{ + public const int EncodedLength = 20; + private const ushort Crc16IbmPolynomial = 0xa001; + + public ushort Reserved0 => 0; + + public static MxReferenceHandle Create( + byte galaxyId, + ushort platformId, + ushort engineId, + ushort objectId, + string objectTagName, + short primitiveId, + short attributeId, + short propertyId, + string attributeName, + bool isArray) + { + return new MxReferenceHandle( + galaxyId, + platformId, + engineId, + objectId, + ComputeNameSignature(objectTagName), + primitiveId, + attributeId, + propertyId, + ComputeNameSignature(attributeName), + isArray ? (short)-1 : (short)0); + } + + public static ushort ComputeNameSignature(string name) + { + ArgumentException.ThrowIfNullOrWhiteSpace(name); + + ushort crc = 0; + foreach (char character in name.ToLowerInvariant()) + { + crc = UpdateCrc16Ibm(crc, (byte)character); + crc = UpdateCrc16Ibm(crc, (byte)(character >> 8)); + } + + return crc; + } + + public static MxReferenceHandle Parse(ReadOnlySpan bytes) + { + if (bytes.Length != EncodedLength) + { + throw new ArgumentException($"MX reference handle must be {EncodedLength} bytes.", nameof(bytes)); + } + + return new MxReferenceHandle( + GalaxyId: bytes[0], + PlatformId: BinaryPrimitives.ReadUInt16LittleEndian(bytes.Slice(2, sizeof(ushort))), + EngineId: BinaryPrimitives.ReadUInt16LittleEndian(bytes.Slice(4, sizeof(ushort))), + ObjectId: BinaryPrimitives.ReadUInt16LittleEndian(bytes.Slice(6, sizeof(ushort))), + ObjectSignature: BinaryPrimitives.ReadUInt16LittleEndian(bytes.Slice(8, sizeof(ushort))), + PrimitiveId: BinaryPrimitives.ReadInt16LittleEndian(bytes.Slice(10, sizeof(short))), + AttributeId: BinaryPrimitives.ReadInt16LittleEndian(bytes.Slice(12, sizeof(short))), + PropertyId: BinaryPrimitives.ReadInt16LittleEndian(bytes.Slice(14, sizeof(short))), + AttributeSignature: BinaryPrimitives.ReadUInt16LittleEndian(bytes.Slice(16, sizeof(ushort))), + AttributeIndex: BinaryPrimitives.ReadInt16LittleEndian(bytes.Slice(18, sizeof(short)))); + } + + public byte[] Encode() + { + byte[] bytes = new byte[EncodedLength]; + WriteTo(bytes); + return bytes; + } + + public void WriteTo(Span destination) + { + if (destination.Length < EncodedLength) + { + throw new ArgumentException($"Destination must be at least {EncodedLength} bytes.", nameof(destination)); + } + + destination[0] = GalaxyId; + destination[1] = 0; + BinaryPrimitives.WriteUInt16LittleEndian(destination.Slice(2, sizeof(ushort)), PlatformId); + BinaryPrimitives.WriteUInt16LittleEndian(destination.Slice(4, sizeof(ushort)), EngineId); + BinaryPrimitives.WriteUInt16LittleEndian(destination.Slice(6, sizeof(ushort)), ObjectId); + BinaryPrimitives.WriteUInt16LittleEndian(destination.Slice(8, sizeof(ushort)), ObjectSignature); + BinaryPrimitives.WriteInt16LittleEndian(destination.Slice(10, sizeof(short)), PrimitiveId); + BinaryPrimitives.WriteInt16LittleEndian(destination.Slice(12, sizeof(short)), AttributeId); + BinaryPrimitives.WriteInt16LittleEndian(destination.Slice(14, sizeof(short)), PropertyId); + BinaryPrimitives.WriteUInt16LittleEndian(destination.Slice(16, sizeof(ushort)), AttributeSignature); + BinaryPrimitives.WriteInt16LittleEndian(destination.Slice(18, sizeof(short)), AttributeIndex); + } + + private static ushort UpdateCrc16Ibm(ushort crc, byte value) + { + crc ^= value; + for (int bit = 0; bit < 8; bit++) + { + crc = (ushort)(((crc & 1) != 0) + ? ((crc >> 1) ^ Crc16IbmPolynomial) + : (crc >> 1)); + } + + return crc; + } +} diff --git a/src/MxNativeCodec/MxStatus.cs b/src/MxNativeCodec/MxStatus.cs new file mode 100644 index 0000000..e8e538d --- /dev/null +++ b/src/MxNativeCodec/MxStatus.cs @@ -0,0 +1,126 @@ +namespace MxNativeCodec; + +public enum MxStatusCategory : short +{ + Unknown = -1, + Ok = 0, + Pending = 1, + Warning = 2, + CommunicationError = 3, + ConfigurationError = 4, + OperationalError = 5, + SecurityError = 6, + SoftwareError = 7, + OtherError = 8, +} + +public enum MxStatusSource : short +{ + Unknown = -1, + RequestingLmx = 0, + RespondingLmx = 1, + RequestingNmx = 2, + RespondingNmx = 3, + RequestingAutomationObject = 4, + RespondingAutomationObject = 5, +} + +public sealed record MxStatus( + short Success, + MxStatusCategory Category, + MxStatusSource DetectedBy, + short Detail) +{ + public string? DetailText => MxStatusDetails.GetKnownText(Detail); + + public static MxStatus DataChangeOk { get; } = new( + Success: -1, + Category: MxStatusCategory.Ok, + DetectedBy: MxStatusSource.RequestingLmx, + Detail: 0); + + public static MxStatus WriteCompleteOk { get; } = new( + Success: -1, + Category: MxStatusCategory.Ok, + DetectedBy: MxStatusSource.RespondingAutomationObject, + Detail: 0); + + public static MxStatus SuspendPending { get; } = new( + Success: -1, + Category: MxStatusCategory.Pending, + DetectedBy: MxStatusSource.RequestingLmx, + Detail: 0); + + public static MxStatus ActivateOk { get; } = new( + Success: -1, + Category: MxStatusCategory.Ok, + DetectedBy: MxStatusSource.RequestingLmx, + Detail: 0); + + public static MxStatus InvalidReferenceConfiguration { get; } = new( + Success: 0, + Category: MxStatusCategory.ConfigurationError, + DetectedBy: MxStatusSource.RequestingLmx, + Detail: 6); +} + +public static class MxStatusDetails +{ + private static readonly IReadOnlyDictionary KnownDetails = new Dictionary + { + [16] = "Request timed out", + [17] = "Platform communication error", + [18] = "Invalid platform ID", + [19] = "Invalid engine ID", + [20] = "Engine communication error", + [21] = "Invalid reference", + [22] = "No Galaxy Repository", + [23] = "Invalid object ID", + [24] = "Object signature mismatch", + [25] = "Invalid primitive ID", + [26] = "Invalid attribute ID", + [27] = "Invalid property ID", + [28] = "Index out of range", + [29] = "Data out of range", + [30] = "Incorrect data type", + [31] = "Attribute not readable", + [32] = "Attribute not writeable", + [33] = "Write access denied", + [34] = "Unknown error", + [35] = "detected by", + [36] = "Wrong data type", + [37] = "Wrong number of dimensions", + [38] = "Invalid index", + [39] = "Index out of order", + [40] = "Dimension does not exist", + [41] = "Conversion not supported", + [42] = "Unable to convert string", + [43] = "Overflow", + [44] = "Attribute signature mismatch", + [45] = "Resolving local portion of reference", + [46] = "Resolving global portion of reference", + [47] = "Nmx version mismatch", + [48] = "Nmx command not valid", + [49] = "Lmx version mismatch", + [50] = "Lmx command not valid", + [51] = "However, the object could not be put On Scan - Permission to modify \"Operate\" attributes is required", + [52] = "Unable to resolve reference for 'set' request because Galaxy Repository is busy performing a 'Deploy/Undeploy' operation", + [53] = "Too many outstanding pending requests to engine", + [54] = "Object Initializing", + [55] = "Engine Initializing", + [56] = "Secured Write", + [57] = "Verified Write", + [58] = "No Alarm Ack Privilege", + [59] = "Alarm Acked Already", + [60] = "User did not have the necessary permissions to write", + [61] = "Verifier did not have the necessary permissions to verify", + [541] = "Conversion to intended data type is not supported", + [542] = "Unable to convert the input string to intended data type", + [8017] = "Object must be offscan to modify attributes that have an MxSecurityConfigure security classification", + }; + + public static string? GetKnownText(short detail) + { + return KnownDetails.TryGetValue(detail, out string? text) ? text : null; + } +} diff --git a/src/MxNativeCodec/MxValueKind.cs b/src/MxNativeCodec/MxValueKind.cs new file mode 100644 index 0000000..04034f3 --- /dev/null +++ b/src/MxNativeCodec/MxValueKind.cs @@ -0,0 +1,18 @@ +namespace MxNativeCodec; + +public enum MxValueKind +{ + Boolean, + Int32, + Float32, + Float64, + String, + DateTime, + ElapsedTime, + BooleanArray, + Int32Array, + Float32Array, + Float64Array, + StringArray, + DateTimeArray, +} diff --git a/src/MxNativeCodec/NmxItemControlMessage.cs b/src/MxNativeCodec/NmxItemControlMessage.cs new file mode 100644 index 0000000..a4ab0ac --- /dev/null +++ b/src/MxNativeCodec/NmxItemControlMessage.cs @@ -0,0 +1,154 @@ +using System.Buffers.Binary; + +namespace MxNativeCodec; + +public enum NmxItemControlCommand : byte +{ + Advise = 0x1f, + AdviseSupervisory = 0x1f, + UnAdvise = 0x21, +} + +public sealed record NmxItemControlMessage( + NmxItemControlCommand Command, + Guid ItemCorrelationId, + ushort ObjectId, + ushort ObjectSignature, + short PrimitiveId, + short AttributeId, + short PropertyId, + ushort AttributeSignature, + short AttributeIndex, + uint Tail) +{ + private const ushort Version = 1; + private const int HeaderLength = 3; + private const int GuidLength = 16; + private const int AdviseExtraLength = 2; + private const int PayloadLength = 18; + + public static int GetEncodedLength(NmxItemControlCommand command) + { + return HeaderLength + + GuidLength + + (command == NmxItemControlCommand.AdviseSupervisory ? AdviseExtraLength : 0) + + PayloadLength; + } + + public static NmxItemControlMessage Parse(ReadOnlySpan body) + { + if (body.Length < HeaderLength + GuidLength + PayloadLength) + { + throw new ArgumentException("NMX item-control body is too short.", nameof(body)); + } + + var command = (NmxItemControlCommand)body[0]; + if (command is not (NmxItemControlCommand.AdviseSupervisory or NmxItemControlCommand.UnAdvise)) + { + throw new ArgumentException($"Unsupported item-control command 0x{body[0]:X2}.", nameof(body)); + } + + ushort version = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(1, sizeof(ushort))); + if (version != Version) + { + throw new ArgumentException($"Unsupported item-control version {version}.", nameof(body)); + } + + int expectedLength = GetEncodedLength(command); + if (body.Length != expectedLength) + { + throw new ArgumentException($"Unexpected item-control body length {body.Length}; expected {expectedLength}.", nameof(body)); + } + + int offset = HeaderLength; + var itemCorrelationId = new Guid(body.Slice(offset, GuidLength)); + offset += GuidLength; + if (command == NmxItemControlCommand.AdviseSupervisory) + { + offset += AdviseExtraLength; + } + + return new NmxItemControlMessage( + command, + itemCorrelationId, + BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(offset, sizeof(ushort))), + BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(offset + 2, sizeof(ushort))), + BinaryPrimitives.ReadInt16LittleEndian(body.Slice(offset + 4, sizeof(short))), + BinaryPrimitives.ReadInt16LittleEndian(body.Slice(offset + 6, sizeof(short))), + BinaryPrimitives.ReadInt16LittleEndian(body.Slice(offset + 8, sizeof(short))), + BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(offset + 10, sizeof(ushort))), + BinaryPrimitives.ReadInt16LittleEndian(body.Slice(offset + 12, sizeof(short))), + BinaryPrimitives.ReadUInt32LittleEndian(body.Slice(offset + 14, sizeof(uint)))); + } + + public static NmxItemControlMessage FromReferenceHandle( + NmxItemControlCommand command, + Guid itemCorrelationId, + MxReferenceHandle referenceHandle, + uint tail = 3) + { + return new NmxItemControlMessage( + command, + itemCorrelationId, + referenceHandle.ObjectId, + referenceHandle.ObjectSignature, + referenceHandle.PrimitiveId, + referenceHandle.AttributeId, + referenceHandle.PropertyId, + referenceHandle.AttributeSignature, + referenceHandle.AttributeIndex, + tail); + } + + public MxReferenceHandle ToReferenceHandle( + byte galaxyId = 1, + ushort platformId = 1, + ushort engineId = 1) + { + return new MxReferenceHandle( + galaxyId, + platformId, + engineId, + ObjectId, + ObjectSignature, + PrimitiveId, + AttributeId, + PropertyId, + AttributeSignature, + AttributeIndex); + } + + public byte[] Encode() + { + byte[] body = new byte[GetEncodedLength(Command)]; + body[0] = (byte)Command; + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(1, sizeof(ushort)), Version); + int offset = HeaderLength; + ItemCorrelationId.TryWriteBytes(body.AsSpan(offset, GuidLength)); + offset += GuidLength; + if (Command == NmxItemControlCommand.AdviseSupervisory) + { + offset += AdviseExtraLength; + } + + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(offset, sizeof(ushort)), ObjectId); + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(offset + 2, sizeof(ushort)), ObjectSignature); + BinaryPrimitives.WriteInt16LittleEndian(body.AsSpan(offset + 4, sizeof(short)), PrimitiveId); + BinaryPrimitives.WriteInt16LittleEndian(body.AsSpan(offset + 6, sizeof(short)), AttributeId); + BinaryPrimitives.WriteInt16LittleEndian(body.AsSpan(offset + 8, sizeof(short)), PropertyId); + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(offset + 10, sizeof(ushort)), AttributeSignature); + BinaryPrimitives.WriteInt16LittleEndian(body.AsSpan(offset + 12, sizeof(short)), AttributeIndex); + BinaryPrimitives.WriteUInt32LittleEndian(body.AsSpan(offset + 14, sizeof(uint)), Tail); + return body; + } + + public NmxItemControlMessage ToUnAdvise() + { + return this with { Command = NmxItemControlCommand.UnAdvise }; + } + + public NmxItemControlMessage ToAdviseSupervisory() + { + return this with { Command = NmxItemControlCommand.AdviseSupervisory }; + } +} diff --git a/src/MxNativeCodec/NmxMetadataQueryMessage.cs b/src/MxNativeCodec/NmxMetadataQueryMessage.cs new file mode 100644 index 0000000..0c6571f --- /dev/null +++ b/src/MxNativeCodec/NmxMetadataQueryMessage.cs @@ -0,0 +1,15 @@ +namespace MxNativeCodec; + +public static class NmxMetadataQueryMessage +{ + private const int PreAdviseCorrelationOffset = 0x8a; + + public static byte[] EncodeObservedPreAdvise(Guid itemCorrelationId) + { + byte[] body = Convert.FromHexString( + "17010001010001000000650071000a0000000000086a0000004000008144006500760050006c006100740066006f0072006d002e00470052002e00540069006d0065004f0066004c006100730074004400650070006c006f00790000000200000000000200000000000200000000000101000100010000000000000000000000000001d0fc40091f0100c0ca9ccd3265b046a585a583b2e77a5d000001000000" + + "17010001010001000000650071000a000000000008760000004c00008144006500760050006c006100740066006f0072006d002e00470052002e00540069006d0065004f0066004c0061007300740043006f006e006600690067004300680061006e0067006500000002000000000002000000000002000000000001010001000100000000000000000000000000015003410920010002000000"); + itemCorrelationId.TryWriteBytes(body.AsSpan(PreAdviseCorrelationOffset, 16)); + return body; + } +} diff --git a/src/MxNativeCodec/NmxObservedFrame.cs b/src/MxNativeCodec/NmxObservedFrame.cs new file mode 100644 index 0000000..b751bbe --- /dev/null +++ b/src/MxNativeCodec/NmxObservedFrame.cs @@ -0,0 +1,192 @@ +using System.Buffers.Binary; +using System.Text; + +namespace MxNativeCodec; + +public sealed record NmxObservedEnvelope( + bool HasLengthPrefix, + int? TotalLengthPrefix, + int DeclaredInnerLength, + int ActualInnerLength, + ReadOnlyMemory Header, + ReadOnlyMemory InnerBody) +{ + public const int HeaderLength = 46; + public const int InnerLengthOffset = 2; + + public static NmxObservedEnvelope ParseTransferDataBody(ReadOnlyMemory body) + { + if (body.Length < HeaderLength) + { + throw new ArgumentException("NMX TransferData body is too short.", nameof(body)); + } + + int declaredInnerLength = BinaryPrimitives.ReadInt32LittleEndian(body.Span.Slice(InnerLengthOffset, sizeof(int))); + int actualInnerLength = body.Length - HeaderLength; + if (declaredInnerLength != actualInnerLength) + { + throw new ArgumentException("NMX TransferData inner length does not match body size.", nameof(body)); + } + + return new NmxObservedEnvelope( + false, + null, + declaredInnerLength, + actualInnerLength, + body[..HeaderLength], + body.Slice(HeaderLength, actualInnerLength)); + } + + public static NmxObservedEnvelope ParseProcessDataReceivedBody(ReadOnlyMemory body) + { + if (body.Length < sizeof(int) + HeaderLength) + { + throw new ArgumentException("NMX ProcessDataReceived body is too short.", nameof(body)); + } + + int totalLengthPrefix = BinaryPrimitives.ReadInt32LittleEndian(body.Span[..sizeof(int)]); + if (totalLengthPrefix != body.Length) + { + throw new ArgumentException("NMX ProcessDataReceived length prefix does not match body size.", nameof(body)); + } + + int headerOffset = sizeof(int); + int declaredInnerLength = BinaryPrimitives.ReadInt32LittleEndian( + body.Span.Slice(headerOffset + InnerLengthOffset, sizeof(int))); + int actualInnerLength = declaredInnerLength - sizeof(int); + if (actualInnerLength < 0 || headerOffset + HeaderLength + actualInnerLength != body.Length) + { + throw new ArgumentException("NMX ProcessDataReceived inner length does not match body size.", nameof(body)); + } + + return new NmxObservedEnvelope( + true, + totalLengthPrefix, + declaredInnerLength, + actualInnerLength, + body.Slice(headerOffset, HeaderLength), + body.Slice(headerOffset + HeaderLength, actualInnerLength)); + } + + public static NmxObservedEnvelope ParseProcessDataReceivedBodyFlexible(ReadOnlyMemory body) + { + if (body.Length >= sizeof(int) + HeaderLength) + { + int totalLengthPrefix = BinaryPrimitives.ReadInt32LittleEndian(body.Span[..sizeof(int)]); + if (totalLengthPrefix == body.Length) + { + return ParseProcessDataReceivedBody(body); + } + } + + if (body.Length < HeaderLength) + { + throw new ArgumentException("NMX ProcessDataReceived body is too short.", nameof(body)); + } + + int declaredInnerLength = BinaryPrimitives.ReadInt32LittleEndian(body.Span.Slice(InnerLengthOffset, sizeof(int))); + int actualInnerLength = body.Length - HeaderLength; + if (declaredInnerLength != actualInnerLength) + { + throw new ArgumentException("NMX ProcessDataReceived header inner length does not match body size.", nameof(body)); + } + + return new NmxObservedEnvelope( + false, + null, + declaredInnerLength, + actualInnerLength, + body[..HeaderLength], + body.Slice(HeaderLength, actualInnerLength)); + } +} + +public sealed record NmxObservedString(int Offset, string Value); + +public sealed record NmxObservedMessage( + byte Command, + string CommandName, + byte VersionMajor, + byte VersionMinor, + Guid? ItemCorrelationId, + IReadOnlyList Strings) +{ + public static NmxObservedMessage Parse(ReadOnlySpan body) + { + if (body.Length < 3) + { + throw new ArgumentException("NMX message body is too short.", nameof(body)); + } + + byte command = body[0]; + Guid? itemCorrelationId = null; + if (command is 0x1f or 0x21 && body.Length >= 19) + { + itemCorrelationId = new Guid(body.Slice(3, 16)); + } + + return new NmxObservedMessage( + command, + GetCommandName(command), + body[1], + body[2], + itemCorrelationId, + ExtractUtf16Strings(body)); + } + + private static string GetCommandName(byte command) + { + return command switch + { + 0x17 => "MetadataQuery", + 0x1f => "AdviseSupervisory", + 0x21 => "UnAdvise", + 0x32 => "SubscriptionStatus", + 0x33 => "DataUpdate", + 0x37 => "Write", + 0x40 => "MetadataResponse", + _ => $"Unknown0x{command:X2}", + }; + } + + private static IReadOnlyList ExtractUtf16Strings(ReadOnlySpan body) + { + List strings = []; + int offset = 0; + while (offset + 8 <= body.Length) + { + int start = offset; + int chars = 0; + while (offset + 1 < body.Length) + { + byte lo = body[offset]; + byte hi = body[offset + 1]; + if (lo == 0 && hi == 0) + { + break; + } + + if (hi != 0 || lo < 0x20 || lo > 0x7e) + { + chars = 0; + break; + } + + chars++; + offset += 2; + } + + if (chars >= 3 && offset + 1 < body.Length && body[offset] == 0 && body[offset + 1] == 0) + { + string value = Encoding.Unicode.GetString(body.Slice(start, chars * 2)); + strings.Add(new NmxObservedString(start, value)); + offset += 2; + continue; + } + + offset = start + 1; + } + + return strings; + } +} diff --git a/src/MxNativeCodec/NmxOperationStatusMessage.cs b/src/MxNativeCodec/NmxOperationStatusMessage.cs new file mode 100644 index 0000000..25b8760 --- /dev/null +++ b/src/MxNativeCodec/NmxOperationStatusMessage.cs @@ -0,0 +1,77 @@ +namespace MxNativeCodec; + +public enum NmxOperationStatusFormat +{ + CompletionOnly, + StatusWord, +} + +public sealed record NmxOperationStatusMessage( + NmxOperationStatusFormat Format, + byte Command, + ushort StatusCode, + byte CompletionCode, + MxStatus Status) +{ + public bool IsMxAccessWriteComplete => Format == NmxOperationStatusFormat.StatusWord + && StatusCode == 0x8050 + && CompletionCode == 0x00; + + public static bool TryParseProcessDataReceivedBody(ReadOnlyMemory body, out NmxOperationStatusMessage message) + { + try + { + var envelope = NmxObservedEnvelope.ParseProcessDataReceivedBodyFlexible(body); + return TryParseInner(envelope.InnerBody.Span, out message); + } + catch (ArgumentException) + { + message = null!; + return false; + } + } + + public static bool TryParseInner(ReadOnlySpan inner, out NmxOperationStatusMessage message) + { + if (inner.Length == 1) + { + byte completionCode = inner[0]; + message = new NmxOperationStatusMessage( + Format: NmxOperationStatusFormat.CompletionOnly, + Command: 0, + StatusCode: 0, + CompletionCode: completionCode, + Status: CreateUnpromotedCompletionStatus(completionCode)); + return true; + } + + if (inner.Length == 5 && inner[0] == 0x00 && inner[1] == 0x00) + { + ushort statusCode = (ushort)(inner[2] | (inner[3] << 8)); + byte completionCode = inner[4]; + message = new NmxOperationStatusMessage( + Format: NmxOperationStatusFormat.StatusWord, + Command: inner[0], + StatusCode: statusCode, + CompletionCode: completionCode, + Status: statusCode == 0x8050 && completionCode == 0x00 ? MxStatus.WriteCompleteOk : new MxStatus( + Success: 0, + Category: MxStatusCategory.Unknown, + DetectedBy: MxStatusSource.Unknown, + Detail: completionCode == 0x00 ? unchecked((short)statusCode) : completionCode)); + return true; + } + + message = null!; + return false; + } + + private static MxStatus CreateUnpromotedCompletionStatus(byte completionCode) + { + return new MxStatus( + Success: 0, + Category: MxStatusCategory.Unknown, + DetectedBy: MxStatusSource.Unknown, + Detail: completionCode); + } +} diff --git a/src/MxNativeCodec/NmxReferenceRegistrationMessage.cs b/src/MxNativeCodec/NmxReferenceRegistrationMessage.cs new file mode 100644 index 0000000..08318d2 --- /dev/null +++ b/src/MxNativeCodec/NmxReferenceRegistrationMessage.cs @@ -0,0 +1,142 @@ +using System.Buffers.Binary; +using System.Text; + +namespace MxNativeCodec; + +public sealed record NmxReferenceRegistrationMessage( + int ItemHandle, + Guid ItemCorrelationId, + string ItemDefinition, + string ItemContext, + bool Subscribe) +{ + private const byte Command = 0x10; + private const ushort Version = 1; + private const int HeaderLength = 55; + private const int ItemStringReservedLength = 8; + private const int TailLength = 20; + + public static NmxReferenceRegistrationMessage Parse(ReadOnlySpan body) + { + if (body.Length < HeaderLength + ItemStringReservedLength + TailLength) + { + throw new ArgumentException("NMX reference-registration body is too short.", nameof(body)); + } + + if (body[0] != Command) + { + throw new ArgumentException($"Unsupported reference-registration command 0x{body[0]:X2}.", nameof(body)); + } + + ushort version = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(1, sizeof(ushort))); + if (version != Version) + { + throw new ArgumentException($"Unsupported reference-registration version {version}.", nameof(body)); + } + + int itemHandle = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(3, sizeof(int))); + var correlationId = new Guid(body.Slice(7, 16)); + int offset = HeaderLength; + string itemDefinition = ReadRegisteredString(body, ref offset, taggedLength: true); + + if (body.Slice(offset, ItemStringReservedLength).IndexOfAnyExcept((byte)0) >= 0) + { + throw new ArgumentException("Unexpected nonzero reference-registration item string reserved bytes.", nameof(body)); + } + + offset += ItemStringReservedLength; + string itemContext = ReadRegisteredString(body, ref offset, taggedLength: false); + if (body.Length - offset != TailLength) + { + throw new ArgumentException($"Unexpected reference-registration tail length {body.Length - offset}.", nameof(body)); + } + + if (body.Slice(offset, TailLength - 1).IndexOfAnyExcept((byte)0) >= 0) + { + throw new ArgumentException("Unexpected nonzero reference-registration tail bytes.", nameof(body)); + } + + return new NmxReferenceRegistrationMessage( + itemHandle, + correlationId, + itemDefinition, + itemContext, + body[offset + TailLength - 1] != 0); + } + + public byte[] Encode() + { + byte[] itemDefinitionBytes = EncodeNullTerminatedUtf16(ItemDefinition); + byte[] itemContextBytes = EncodeNullTerminatedUtf16(ItemContext); + byte[] body = new byte[ + HeaderLength + + sizeof(int) + + itemDefinitionBytes.Length + + ItemStringReservedLength + + sizeof(int) + + itemContextBytes.Length + + TailLength]; + + body[0] = Command; + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(1, sizeof(ushort)), Version); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(3, sizeof(int)), ItemHandle); + ItemCorrelationId.TryWriteBytes(body.AsSpan(7, 16)); + + BinaryPrimitives.WriteInt16LittleEndian(body.AsSpan(23, sizeof(short)), -1); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(27, sizeof(int)), 1); + + int offset = HeaderLength; + WriteRegisteredString(body, ref offset, itemDefinitionBytes, taggedLength: true); + offset += ItemStringReservedLength; + WriteRegisteredString(body, ref offset, itemContextBytes, taggedLength: false); + body[offset + TailLength - 1] = Subscribe ? (byte)1 : (byte)0; + return body; + } + + public static string ToBufferedItemDefinition(string itemDefinition) + { + ArgumentException.ThrowIfNullOrWhiteSpace(itemDefinition); + return itemDefinition.EndsWith(".property(buffer)", StringComparison.OrdinalIgnoreCase) + ? itemDefinition + : itemDefinition + ".property(buffer)"; + } + + private static string ReadRegisteredString(ReadOnlySpan body, ref int offset, bool taggedLength) + { + int rawLength = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(offset, sizeof(int))); + int byteLength = taggedLength ? rawLength & 0x00FF_FFFF : rawLength; + if (taggedLength && (rawLength & unchecked((int)0xFF00_0000)) != unchecked((int)0x8100_0000)) + { + throw new ArgumentException("Reference-registration item definition is missing the observed 0x81 string marker."); + } + + offset += sizeof(int); + if (byteLength < 2 || byteLength % 2 != 0 || offset + byteLength > body.Length) + { + throw new ArgumentException($"Invalid reference-registration string byte length {byteLength}."); + } + + string value = Encoding.Unicode.GetString(body.Slice(offset, byteLength - 2)); + if (body[offset + byteLength - 2] != 0 || body[offset + byteLength - 1] != 0) + { + throw new ArgumentException("Reference-registration string is not null terminated."); + } + + offset += byteLength; + return value; + } + + private static void WriteRegisteredString(byte[] body, ref int offset, byte[] value, bool taggedLength) + { + int rawLength = taggedLength ? value.Length | unchecked((int)0x8100_0000) : value.Length; + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(offset, sizeof(int)), rawLength); + offset += sizeof(int); + value.CopyTo(body.AsSpan(offset)); + offset += value.Length; + } + + private static byte[] EncodeNullTerminatedUtf16(string value) + { + return Encoding.Unicode.GetBytes(value + '\0'); + } +} diff --git a/src/MxNativeCodec/NmxReferenceRegistrationResultMessage.cs b/src/MxNativeCodec/NmxReferenceRegistrationResultMessage.cs new file mode 100644 index 0000000..859dcd9 --- /dev/null +++ b/src/MxNativeCodec/NmxReferenceRegistrationResultMessage.cs @@ -0,0 +1,120 @@ +using System.Buffers.Binary; +using System.Text; + +namespace MxNativeCodec; + +public sealed record NmxReferenceRegistrationResultMessage( + int ItemHandle, + Guid ItemCorrelationId, + DateTime FirstTimestampUtc, + DateTime SecondTimestampUtc, + byte StatusCategory, + byte StatusDetail, + string ItemDefinition, + int MxDataType, + string ItemContext) +{ + private const byte Command = 0x11; + private const ushort Version = 1; + private const int HeaderLength = 45; + private const int BetweenStringsLength = 10; + private const int TailLength = 16; + + public static NmxReferenceRegistrationResultMessage Parse(ReadOnlySpan body) + { + if (body.Length < HeaderLength + TailLength) + { + throw new ArgumentException("NMX reference-registration result body is too short.", nameof(body)); + } + + if (body[0] != Command) + { + throw new ArgumentException($"Unsupported reference-registration result command 0x{body[0]:X2}.", nameof(body)); + } + + ushort version = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(1, sizeof(ushort))); + if (version != Version) + { + throw new ArgumentException($"Unsupported reference-registration result version {version}.", nameof(body)); + } + + int blockLength = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(41, sizeof(int))); + if (blockLength != body.Length - 41) + { + throw new ArgumentException("Reference-registration result block length does not match body size.", nameof(body)); + } + + int offset = HeaderLength; + string itemDefinition = ReadRegisteredString(body, ref offset, taggedLength: true); + int mxDataType = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(offset, sizeof(int))); + offset += sizeof(int); + + if (body.Slice(offset, BetweenStringsLength - sizeof(int)).IndexOfAnyExcept((byte)0) >= 0) + { + throw new ArgumentException("Unexpected nonzero reference-registration result reserved bytes.", nameof(body)); + } + + offset += BetweenStringsLength - sizeof(int); + string itemContext = ReadRegisteredString(body, ref offset, taggedLength: false); + if (body.Length - offset != TailLength) + { + throw new ArgumentException($"Unexpected reference-registration result tail length {body.Length - offset}.", nameof(body)); + } + + if (body.Slice(offset, TailLength).IndexOfAnyExcept((byte)0) >= 0) + { + throw new ArgumentException("Unexpected nonzero reference-registration result tail bytes.", nameof(body)); + } + + return new NmxReferenceRegistrationResultMessage( + BinaryPrimitives.ReadInt32LittleEndian(body.Slice(3, sizeof(int))), + new Guid(body.Slice(7, 16)), + DateTime.FromFileTimeUtc(BinaryPrimitives.ReadInt64LittleEndian(body.Slice(23, sizeof(long)))), + DateTime.FromFileTimeUtc(BinaryPrimitives.ReadInt64LittleEndian(body.Slice(31, sizeof(long)))), + body[39], + body[40], + itemDefinition, + mxDataType, + itemContext); + } + + public static bool TryParseProcessDataReceivedBody(ReadOnlyMemory processDataBody, out NmxReferenceRegistrationResultMessage? message) + { + try + { + var envelope = NmxObservedEnvelope.ParseProcessDataReceivedBodyFlexible(processDataBody); + message = Parse(envelope.InnerBody.Span); + return true; + } + catch (ArgumentException) + { + message = null; + return false; + } + } + + private static string ReadRegisteredString(ReadOnlySpan body, ref int offset, bool taggedLength) + { + int rawLength = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(offset, sizeof(int))); + int byteLength = taggedLength ? rawLength & 0x00FF_FFFF : rawLength; + if (taggedLength && (rawLength & unchecked((int)0xFF00_0000)) != unchecked((int)0x8100_0000)) + { + throw new ArgumentException("Reference-registration result item definition is missing the observed 0x81 string marker."); + } + + offset += sizeof(int); + if (byteLength < 2 || byteLength % 2 != 0 || offset + byteLength > body.Length) + { + throw new ArgumentException($"Invalid reference-registration result string byte length {byteLength}."); + } + + string value = Encoding.Unicode.GetString(body.Slice(offset, byteLength - 2)); + if (body[offset + byteLength - 2] != 0 || body[offset + byteLength - 1] != 0) + { + throw new ArgumentException("Reference-registration result string is not null terminated."); + } + + offset += byteLength; + return value; + } +} diff --git a/src/MxNativeCodec/NmxSecuredWrite2Message.cs b/src/MxNativeCodec/NmxSecuredWrite2Message.cs new file mode 100644 index 0000000..9adb37f --- /dev/null +++ b/src/MxNativeCodec/NmxSecuredWrite2Message.cs @@ -0,0 +1,105 @@ +using System.Buffers.Binary; +using System.Text; + +namespace MxNativeCodec; + +public static class NmxSecuredWrite2Message +{ + public const byte Command = 0x38; + public const ushort Version = 1; + public const int AuthenticatorTokenLength = 16; + + public static readonly byte[] ObservedAuthenticatedUserToken = + [ + 0x07, 0xb9, 0xa9, 0xf4, + 0x72, 0x6e, 0xae, 0x48, + 0x83, 0xb5, 0xbb, 0xde, + 0x91, 0x8c, 0x89, 0x0f, + ]; + + public static byte[] Encode( + MxReferenceHandle referenceHandle, + MxValueKind valueKind, + object value, + DateTime timestamp, + string clientName, + ReadOnlySpan currentUserToken, + ReadOnlySpan verifierUserToken, + int writeIndex = 1, + uint clientToken = 0) + { + if (currentUserToken.Length != AuthenticatorTokenLength) + { + throw new ArgumentException("Current user token must be 16 bytes.", nameof(currentUserToken)); + } + + if (verifierUserToken.Length != AuthenticatorTokenLength) + { + throw new ArgumentException("Verifier user token must be 16 bytes.", nameof(verifierUserToken)); + } + + byte[] timestampedPrefix = NmxWriteMessage.EncodeTimestamped( + referenceHandle, + valueKind, + value, + timestamp, + writeIndex, + clientToken: 0); + timestampedPrefix[0] = Command; + + byte[] clientNameBytes = Encoding.Unicode.GetBytes((clientName ?? string.Empty) + '\0'); + int prefixLength = timestampedPrefix.Length - sizeof(uint) - sizeof(int); + byte[] body = new byte[prefixLength + AuthenticatorTokenLength + sizeof(int) + clientNameBytes.Length + AuthenticatorTokenLength + sizeof(short) + sizeof(uint) + sizeof(int)]; + + timestampedPrefix.AsSpan(0, prefixLength).CopyTo(body); + int offset = prefixLength; + currentUserToken.CopyTo(body.AsSpan(offset, AuthenticatorTokenLength)); + offset += AuthenticatorTokenLength; + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(offset, sizeof(int)), clientNameBytes.Length); + offset += sizeof(int); + clientNameBytes.CopyTo(body.AsSpan(offset)); + offset += clientNameBytes.Length; + verifierUserToken.CopyTo(body.AsSpan(offset, AuthenticatorTokenLength)); + offset += AuthenticatorTokenLength; + BinaryPrimitives.WriteInt16LittleEndian(body.AsSpan(offset, sizeof(short)), -1); + offset += sizeof(short); + BinaryPrimitives.WriteUInt32LittleEndian(body.AsSpan(offset, sizeof(uint)), clientToken); + offset += sizeof(uint); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(offset, sizeof(int)), writeIndex); + return body; + } + + public static byte[] EncodeBoolean( + MxReferenceHandle referenceHandle, + bool value, + DateTime timestamp, + string clientName, + ReadOnlySpan currentUserToken, + ReadOnlySpan verifierUserToken, + int writeIndex = 1, + uint clientToken = 0) + { + return Encode( + referenceHandle, + MxValueKind.Boolean, + value, + timestamp, + clientName, + currentUserToken, + verifierUserToken, + writeIndex, + clientToken); + } + + public static byte[] ResolveObservedUserToken(int userId) + { + return userId == 0 + ? new byte[AuthenticatorTokenLength] + : ObservedAuthenticatedUserToken.ToArray(); + } + + public static string FormatToken(ReadOnlySpan token) + { + return Convert.ToHexString(token).ToLowerInvariant(); + } +} diff --git a/src/MxNativeCodec/NmxSubscriptionMessage.cs b/src/MxNativeCodec/NmxSubscriptionMessage.cs new file mode 100644 index 0000000..afa0ab1 --- /dev/null +++ b/src/MxNativeCodec/NmxSubscriptionMessage.cs @@ -0,0 +1,428 @@ +using System.Buffers.Binary; +using System.Text; + +namespace MxNativeCodec; + +public sealed record NmxCallbackValue( + byte WireKind, + MxValueKind? ValueKind, + object? Value, + int EncodedLength); + +public sealed record NmxSubscriptionRecord( + int Status, + int? DetailStatus, + ushort Quality, + DateTime TimestampUtc, + byte WireKind, + object? Value, + int Offset, + int Length) +{ + public MxStatus ToDataChangeStatus() + { + return MxStatus.DataChangeOk; + } +} + +public sealed record NmxSubscriptionMessage( + byte Command, + ushort Version, + int RecordCount, + Guid OperationId, + Guid? ItemCorrelationId, + IReadOnlyList Records) +{ + public const byte SubscriptionStatusCommand = 0x32; + public const byte DataUpdateCommand = 0x33; + + public static NmxSubscriptionMessage ParseProcessDataReceivedBody(ReadOnlyMemory body) + { + var envelope = NmxObservedEnvelope.ParseProcessDataReceivedBodyFlexible(body); + return ParseInner(envelope.InnerBody.Span); + } + + public static NmxSubscriptionMessage ParseInner(ReadOnlySpan inner) + { + if (inner.Length < 23) + { + throw new ArgumentException("NMX subscription callback body is too short.", nameof(inner)); + } + + byte command = inner[0]; + ushort version = BinaryPrimitives.ReadUInt16LittleEndian(inner.Slice(1, sizeof(ushort))); + int recordCount = BinaryPrimitives.ReadInt32LittleEndian(inner.Slice(3, sizeof(int))); + var operationId = new Guid(inner.Slice(7, 16)); + + return command switch + { + SubscriptionStatusCommand => ParseSubscriptionStatus(inner, version, recordCount, operationId), + DataUpdateCommand => ParseDataUpdate(inner, version, recordCount, operationId), + _ => throw new ArgumentException($"Unsupported NMX subscription callback command 0x{command:X2}.", nameof(inner)), + }; + } + + private static NmxSubscriptionMessage ParseDataUpdate( + ReadOnlySpan inner, + ushort version, + int recordCount, + Guid operationId) + { + if (recordCount != 1) + { + throw new ArgumentException("Observed NMX DataUpdate callback parser currently supports one record per body.", nameof(inner)); + } + + const int recordOffset = 23; + var record = ParseRecord(inner, recordOffset, hasDetailStatus: false); + return new NmxSubscriptionMessage( + DataUpdateCommand, + version, + recordCount, + operationId, + null, + [record]); + } + + private static NmxSubscriptionMessage ParseSubscriptionStatus( + ReadOnlySpan inner, + ushort version, + int recordCount, + Guid operationId) + { + if (inner.Length < 39) + { + throw new ArgumentException("NMX SubscriptionStatus callback body is too short.", nameof(inner)); + } + + var itemCorrelationId = new Guid(inner.Slice(23, 16)); + int offset = 39; + List records = []; + for (int i = 0; i < recordCount; i++) + { + var record = ParseRecord(inner, offset, hasDetailStatus: true); + records.Add(record); + offset += record.Length; + } + + return new NmxSubscriptionMessage( + SubscriptionStatusCommand, + version, + recordCount, + operationId, + itemCorrelationId, + records); + } + + private static NmxSubscriptionRecord ParseRecord(ReadOnlySpan body, int offset, bool hasDetailStatus) + { + int minimumLength = hasDetailStatus ? 19 : 15; + if (offset < 0 || offset + minimumLength > body.Length) + { + throw new ArgumentException("NMX subscription record is too short.", nameof(body)); + } + + int start = offset; + int status = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(offset, sizeof(int))); + offset += sizeof(int); + + int? detailStatus = null; + if (hasDetailStatus) + { + detailStatus = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(offset, sizeof(int))); + offset += sizeof(int); + } + + ushort quality = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(offset, sizeof(ushort))); + offset += sizeof(ushort); + + long fileTime = BinaryPrimitives.ReadInt64LittleEndian(body.Slice(offset, sizeof(long))); + offset += sizeof(long); + + byte wireKind = body[offset++]; + var value = DecodeValue(wireKind, body[offset..]); + offset += value.EncodedLength; + + return new NmxSubscriptionRecord( + status, + detailStatus, + quality, + DateTime.FromFileTimeUtc(fileTime), + wireKind, + value.Value, + start, + offset - start); + } + + private static NmxCallbackValue DecodeValue(byte wireKind, ReadOnlySpan body) + { + if (body.Length == 0) + { + return new NmxCallbackValue(wireKind, ToValueKindOrNull(wireKind), null, 0); + } + + return wireKind switch + { + 0x01 when body.Length >= 1 => new NmxCallbackValue(wireKind, MxValueKind.Boolean, body[0] != 0, 1), + 0x02 when body.Length >= sizeof(int) => new NmxCallbackValue(wireKind, MxValueKind.Int32, BinaryPrimitives.ReadInt32LittleEndian(body[..sizeof(int)]), sizeof(int)), + 0x03 when body.Length >= sizeof(float) => new NmxCallbackValue(wireKind, MxValueKind.Float32, BitConverter.Int32BitsToSingle(BinaryPrimitives.ReadInt32LittleEndian(body[..sizeof(int)])), sizeof(float)), + 0x04 when body.Length >= sizeof(double) => new NmxCallbackValue(wireKind, MxValueKind.Float64, BitConverter.Int64BitsToDouble(BinaryPrimitives.ReadInt64LittleEndian(body[..sizeof(long)])), sizeof(double)), + 0x05 => DecodeStringValue(wireKind, body), + 0x06 => DecodeDateTimeValue(wireKind, body), + 0x07 => DecodeElapsedTimeValue(wireKind, body), + 0x41 or 0x42 or 0x43 or 0x44 or 0x45 or 0x46 => DecodeArrayValue(wireKind, body), + _ => new NmxCallbackValue(wireKind, ToValueKindOrNull(wireKind), null, 0), + }; + } + + private static NmxCallbackValue DecodeStringValue(byte wireKind, ReadOnlySpan body) + { + if (body.Length < sizeof(int)) + { + return new NmxCallbackValue(wireKind, MxValueKind.String, null, 0); + } + + int recordLength = BinaryPrimitives.ReadInt32LittleEndian(body[..sizeof(int)]); + if (recordLength == sizeof(int)) + { + return new NmxCallbackValue(wireKind, MxValueKind.String, string.Empty, sizeof(int)); + } + + if (body.Length < 8) + { + return new NmxCallbackValue(wireKind, MxValueKind.String, null, 0); + } + + int textByteLength = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(4, sizeof(int))); + if (recordLength < 8 || textByteLength < 0 || recordLength != textByteLength + 4 || body.Length < 8 + textByteLength) + { + return new NmxCallbackValue(wireKind, MxValueKind.String, null, 0); + } + + ReadOnlySpan textBytes = body.Slice(8, textByteLength); + if (textBytes.Length >= 2 && textBytes[^2] == 0 && textBytes[^1] == 0) + { + textBytes = textBytes[..^2]; + } + + string value = Encoding.Unicode.GetString(textBytes); + return new NmxCallbackValue(wireKind, MxValueKind.String, value, 8 + textByteLength); + } + + private static NmxCallbackValue DecodeDateTimeValue(byte wireKind, ReadOnlySpan body) + { + if (body.Length >= 14) + { + int recordLength = BinaryPrimitives.ReadInt32LittleEndian(body[..sizeof(int)]); + if (recordLength >= 10 && body.Length >= sizeof(int) + recordLength) + { + long fileTime = BinaryPrimitives.ReadInt64LittleEndian(body.Slice(sizeof(int), sizeof(long))); + if (TryFromFileTimeUtc(fileTime, out DateTime timestamp)) + { + return new NmxCallbackValue( + wireKind, + MxValueKind.DateTime, + timestamp, + sizeof(int) + recordLength); + } + + return new NmxCallbackValue(wireKind, MxValueKind.DateTime, null, sizeof(int) + recordLength); + } + } + + if (body.Length >= sizeof(long)) + { + long fileTime = BinaryPrimitives.ReadInt64LittleEndian(body[..sizeof(long)]); + if (TryFromFileTimeUtc(fileTime, out DateTime timestamp)) + { + return new NmxCallbackValue(wireKind, MxValueKind.DateTime, timestamp, sizeof(long)); + } + } + + return new NmxCallbackValue(wireKind, MxValueKind.DateTime, null, 0); + } + + private static NmxCallbackValue DecodeElapsedTimeValue(byte wireKind, ReadOnlySpan body) + { + if (body.Length < sizeof(int)) + { + return new NmxCallbackValue(wireKind, MxValueKind.ElapsedTime, null, 0); + } + + int milliseconds = BinaryPrimitives.ReadInt32LittleEndian(body[..sizeof(int)]); + return new NmxCallbackValue(wireKind, MxValueKind.ElapsedTime, TimeSpan.FromMilliseconds(milliseconds), sizeof(int)); + } + + private static NmxCallbackValue DecodeArrayValue(byte wireKind, ReadOnlySpan body) + { + const int arrayHeaderLength = 10; + if (body.Length < arrayHeaderLength) + { + return new NmxCallbackValue(wireKind, ToValueKindOrNull(wireKind), null, 0); + } + + ushort count = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(4, sizeof(ushort))); + int elementWidth = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(6, sizeof(int))); + ReadOnlySpan values = body[arrayHeaderLength..]; + + return wireKind switch + { + 0x41 => DecodeBooleanArray(wireKind, count, elementWidth, body.Length, values), + 0x42 => DecodeInt32Array(wireKind, count, elementWidth, body.Length, values), + 0x43 => DecodeFloat32Array(wireKind, count, elementWidth, body.Length, values), + 0x44 => DecodeFloat64Array(wireKind, count, elementWidth, body.Length, values), + 0x45 => DecodeStringArray(wireKind, count, values), + 0x46 => DecodeDateTimeArray(wireKind, count, elementWidth, body.Length, values), + _ => new NmxCallbackValue(wireKind, ToValueKindOrNull(wireKind), null, 0), + }; + } + + private static NmxCallbackValue DecodeBooleanArray(byte wireKind, ushort count, int elementWidth, int bodyLength, ReadOnlySpan values) + { + if (elementWidth != sizeof(short) || values.Length < count * elementWidth) + { + return new NmxCallbackValue(wireKind, MxValueKind.BooleanArray, null, 0); + } + + bool[] decoded = new bool[count]; + for (int i = 0; i < count; i++) + { + decoded[i] = BinaryPrimitives.ReadInt16LittleEndian(values.Slice(i * elementWidth, sizeof(short))) != 0; + } + + return new NmxCallbackValue(wireKind, MxValueKind.BooleanArray, decoded, 10 + count * elementWidth); + } + + private static NmxCallbackValue DecodeInt32Array(byte wireKind, ushort count, int elementWidth, int bodyLength, ReadOnlySpan values) + { + if (elementWidth != sizeof(int) || values.Length < count * elementWidth) + { + return new NmxCallbackValue(wireKind, MxValueKind.Int32Array, null, 0); + } + + int[] decoded = new int[count]; + for (int i = 0; i < count; i++) + { + decoded[i] = BinaryPrimitives.ReadInt32LittleEndian(values.Slice(i * elementWidth, sizeof(int))); + } + + return new NmxCallbackValue(wireKind, MxValueKind.Int32Array, decoded, 10 + count * elementWidth); + } + + private static NmxCallbackValue DecodeFloat32Array(byte wireKind, ushort count, int elementWidth, int bodyLength, ReadOnlySpan values) + { + if (elementWidth != sizeof(float) || values.Length < count * elementWidth) + { + return new NmxCallbackValue(wireKind, MxValueKind.Float32Array, null, 0); + } + + float[] decoded = new float[count]; + for (int i = 0; i < count; i++) + { + decoded[i] = BitConverter.Int32BitsToSingle(BinaryPrimitives.ReadInt32LittleEndian(values.Slice(i * elementWidth, sizeof(int)))); + } + + return new NmxCallbackValue(wireKind, MxValueKind.Float32Array, decoded, 10 + count * elementWidth); + } + + private static NmxCallbackValue DecodeFloat64Array(byte wireKind, ushort count, int elementWidth, int bodyLength, ReadOnlySpan values) + { + if (elementWidth != sizeof(double) || values.Length < count * elementWidth) + { + return new NmxCallbackValue(wireKind, MxValueKind.Float64Array, null, 0); + } + + double[] decoded = new double[count]; + for (int i = 0; i < count; i++) + { + decoded[i] = BitConverter.Int64BitsToDouble(BinaryPrimitives.ReadInt64LittleEndian(values.Slice(i * elementWidth, sizeof(long)))); + } + + return new NmxCallbackValue(wireKind, MxValueKind.Float64Array, decoded, 10 + count * elementWidth); + } + + private static NmxCallbackValue DecodeDateTimeArray(byte wireKind, ushort count, int elementWidth, int bodyLength, ReadOnlySpan values) + { + if (elementWidth != 12 || values.Length < count * elementWidth) + { + return new NmxCallbackValue(wireKind, MxValueKind.DateTimeArray, null, 0); + } + + DateTime[] decoded = new DateTime[count]; + for (int i = 0; i < count; i++) + { + long fileTime = BinaryPrimitives.ReadInt64LittleEndian(values.Slice(i * elementWidth, sizeof(long))); + decoded[i] = DateTime.FromFileTimeUtc(fileTime); + } + + return new NmxCallbackValue(wireKind, MxValueKind.DateTimeArray, decoded, 10 + count * elementWidth); + } + + private static NmxCallbackValue DecodeStringArray(byte wireKind, ushort count, ReadOnlySpan values) + { + string[] decoded = new string[count]; + int offset = 0; + for (int i = 0; i < count; i++) + { + if (offset + 13 > values.Length) + { + return new NmxCallbackValue(wireKind, MxValueKind.StringArray, null, 0); + } + + int recordLength = BinaryPrimitives.ReadInt32LittleEndian(values.Slice(offset, sizeof(int))); + byte elementKind = values[offset + 4]; + int textRecordLength = BinaryPrimitives.ReadInt32LittleEndian(values.Slice(offset + 5, sizeof(int))); + int textByteLength = BinaryPrimitives.ReadInt32LittleEndian(values.Slice(offset + 9, sizeof(int))); + if (recordLength < 9 || elementKind != 0x05 || textRecordLength != textByteLength + sizeof(int) || recordLength != 1 + sizeof(int) + sizeof(int) + textByteLength || offset + 13 + textByteLength > values.Length) + { + return new NmxCallbackValue(wireKind, MxValueKind.StringArray, null, 0); + } + + ReadOnlySpan textBytes = values.Slice(offset + 13, textByteLength); + if (textBytes.Length >= 2 && textBytes[^2] == 0 && textBytes[^1] == 0) + { + textBytes = textBytes[..^2]; + } + + decoded[i] = Encoding.Unicode.GetString(textBytes); + offset += 13 + textByteLength; + } + + return new NmxCallbackValue(wireKind, MxValueKind.StringArray, decoded, 10 + offset); + } + + private static MxValueKind? ToValueKindOrNull(byte wireKind) + { + return wireKind switch + { + 0x01 => MxValueKind.Boolean, + 0x02 => MxValueKind.Int32, + 0x03 => MxValueKind.Float32, + 0x04 => MxValueKind.Float64, + 0x05 => MxValueKind.String, + 0x06 => MxValueKind.DateTime, + 0x07 => MxValueKind.ElapsedTime, + 0x41 => MxValueKind.BooleanArray, + 0x42 => MxValueKind.Int32Array, + 0x43 => MxValueKind.Float32Array, + 0x44 => MxValueKind.Float64Array, + 0x45 => MxValueKind.StringArray, + 0x46 => MxValueKind.DateTimeArray, + _ => null, + }; + } + + private static bool TryFromFileTimeUtc(long fileTime, out DateTime timestamp) + { + try + { + timestamp = DateTime.FromFileTimeUtc(fileTime); + return true; + } + catch (ArgumentOutOfRangeException) + { + timestamp = default; + return false; + } + } +} diff --git a/src/MxNativeCodec/NmxTransferEnvelope.cs b/src/MxNativeCodec/NmxTransferEnvelope.cs new file mode 100644 index 0000000..37d5e94 --- /dev/null +++ b/src/MxNativeCodec/NmxTransferEnvelope.cs @@ -0,0 +1,104 @@ +using System.Buffers.Binary; + +namespace MxNativeCodec; + +public enum NmxTransferMessageKind : int +{ + Metadata = 1, + ItemControl = 2, + Write = 3, +} + +public sealed record NmxTransferEnvelope( + NmxTransferMessageKind MessageKind, + int SourceGalaxyId, + int SourcePlatformId, + int LocalEngineId, + int TargetGalaxyId, + int TargetPlatformId, + int TargetEngineId, + int TimeoutMilliseconds, + ReadOnlyMemory InnerBody) +{ + public const int HeaderLength = 46; + private const ushort Version = 1; + private const int InnerLengthOffset = 2; + private const int ReservedOffset = 6; + private const int MessageKindOffset = 10; + private const int SourceGalaxyOffset = 14; + private const int SourcePlatformOffset = 18; + private const int LocalEngineOffset = 22; + private const int TargetGalaxyOffset = 26; + private const int TargetPlatformOffset = 30; + private const int TargetEngineOffset = 34; + private const int ProtocolMarkerOffset = 38; + private const int TimeoutOffset = 42; + private const int ProtocolMarker = 0x0201; + private const int DefaultTimeoutMilliseconds = 30000; + + public static NmxTransferEnvelope Parse(ReadOnlyMemory transferBody) + { + if (transferBody.Length < HeaderLength) + { + throw new ArgumentException("NMX TransferData body is too short.", nameof(transferBody)); + } + + ReadOnlySpan span = transferBody.Span; + ushort version = BinaryPrimitives.ReadUInt16LittleEndian(span[..sizeof(ushort)]); + if (version != Version) + { + throw new ArgumentException($"Unsupported NMX TransferData version {version}.", nameof(transferBody)); + } + + int innerLength = BinaryPrimitives.ReadInt32LittleEndian(span.Slice(InnerLengthOffset, sizeof(int))); + if (innerLength != transferBody.Length - HeaderLength) + { + throw new ArgumentException("NMX TransferData inner length does not match the body size.", nameof(transferBody)); + } + + int protocolMarker = BinaryPrimitives.ReadInt32LittleEndian(span.Slice(ProtocolMarkerOffset, sizeof(int))); + if (protocolMarker != ProtocolMarker) + { + throw new ArgumentException($"Unsupported NMX TransferData protocol marker 0x{protocolMarker:X8}.", nameof(transferBody)); + } + + return new NmxTransferEnvelope( + (NmxTransferMessageKind)BinaryPrimitives.ReadInt32LittleEndian(span.Slice(MessageKindOffset, sizeof(int))), + BinaryPrimitives.ReadInt32LittleEndian(span.Slice(SourceGalaxyOffset, sizeof(int))), + BinaryPrimitives.ReadInt32LittleEndian(span.Slice(SourcePlatformOffset, sizeof(int))), + BinaryPrimitives.ReadInt32LittleEndian(span.Slice(LocalEngineOffset, sizeof(int))), + BinaryPrimitives.ReadInt32LittleEndian(span.Slice(TargetGalaxyOffset, sizeof(int))), + BinaryPrimitives.ReadInt32LittleEndian(span.Slice(TargetPlatformOffset, sizeof(int))), + BinaryPrimitives.ReadInt32LittleEndian(span.Slice(TargetEngineOffset, sizeof(int))), + BinaryPrimitives.ReadInt32LittleEndian(span.Slice(TimeoutOffset, sizeof(int))), + transferBody[HeaderLength..]); + } + + public static byte[] Encode( + NmxTransferMessageKind messageKind, + int localEngineId, + int targetGalaxyId, + int targetPlatformId, + int targetEngineId, + ReadOnlySpan innerBody, + int sourceGalaxyId = 1, + int sourcePlatformId = 1, + int timeoutMilliseconds = DefaultTimeoutMilliseconds) + { + byte[] transferBody = new byte[HeaderLength + innerBody.Length]; + BinaryPrimitives.WriteUInt16LittleEndian(transferBody.AsSpan(0, sizeof(ushort)), Version); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(InnerLengthOffset, sizeof(int)), innerBody.Length); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(ReservedOffset, sizeof(int)), 0); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(MessageKindOffset, sizeof(int)), (int)messageKind); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(SourceGalaxyOffset, sizeof(int)), sourceGalaxyId); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(SourcePlatformOffset, sizeof(int)), sourcePlatformId); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(LocalEngineOffset, sizeof(int)), localEngineId); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(TargetGalaxyOffset, sizeof(int)), targetGalaxyId); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(TargetPlatformOffset, sizeof(int)), targetPlatformId); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(TargetEngineOffset, sizeof(int)), targetEngineId); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(ProtocolMarkerOffset, sizeof(int)), ProtocolMarker); + BinaryPrimitives.WriteInt32LittleEndian(transferBody.AsSpan(TimeoutOffset, sizeof(int)), timeoutMilliseconds); + innerBody.CopyTo(transferBody.AsSpan(HeaderLength)); + return transferBody; + } +} diff --git a/src/MxNativeCodec/NmxTransferEnvelopeTemplate.cs b/src/MxNativeCodec/NmxTransferEnvelopeTemplate.cs new file mode 100644 index 0000000..c352848 --- /dev/null +++ b/src/MxNativeCodec/NmxTransferEnvelopeTemplate.cs @@ -0,0 +1,57 @@ +using System.Buffers.Binary; + +namespace MxNativeCodec; + +public sealed class NmxTransferEnvelopeTemplate +{ + public const int HeaderLength = 46; + public const int InnerLengthOffset = 2; + + private readonly byte[] _header; + + private NmxTransferEnvelopeTemplate(byte[] header) + { + _header = header; + } + + public static NmxTransferEnvelopeTemplate FromObserved(ReadOnlySpan observedTransferBody) + { + if (observedTransferBody.Length < HeaderLength) + { + throw new ArgumentException("Observed TransferData body is too short.", nameof(observedTransferBody)); + } + + int innerLength = BinaryPrimitives.ReadInt32LittleEndian(observedTransferBody.Slice(InnerLengthOffset, sizeof(int))); + if (innerLength != observedTransferBody.Length - HeaderLength) + { + throw new ArgumentException("Observed TransferData body does not contain the expected inner length.", nameof(observedTransferBody)); + } + + return new NmxTransferEnvelopeTemplate(observedTransferBody[..HeaderLength].ToArray()); + } + + public byte[] Encode(ReadOnlySpan innerPutRequestBody) + { + byte[] body = new byte[HeaderLength + innerPutRequestBody.Length]; + _header.CopyTo(body, 0); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(InnerLengthOffset, sizeof(int)), innerPutRequestBody.Length); + innerPutRequestBody.CopyTo(body.AsSpan(HeaderLength)); + return body; + } + + public ReadOnlyMemory DecodeInner(ReadOnlyMemory transferBody) + { + if (transferBody.Length < HeaderLength) + { + throw new ArgumentException("TransferData body is too short.", nameof(transferBody)); + } + + int innerLength = BinaryPrimitives.ReadInt32LittleEndian(transferBody.Span.Slice(InnerLengthOffset, sizeof(int))); + if (innerLength != transferBody.Length - HeaderLength) + { + throw new ArgumentException("TransferData body inner length does not match the body size.", nameof(transferBody)); + } + + return transferBody[HeaderLength..]; + } +} diff --git a/src/MxNativeCodec/NmxWriteMessage.cs b/src/MxNativeCodec/NmxWriteMessage.cs new file mode 100644 index 0000000..d82a739 --- /dev/null +++ b/src/MxNativeCodec/NmxWriteMessage.cs @@ -0,0 +1,394 @@ +using System.Buffers.Binary; +using System.Globalization; +using System.Text; + +namespace MxNativeCodec; + +public static class NmxWriteMessage +{ + public const byte Command = 0x37; + public const ushort Version = 1; + public const int HandleProjectionOffset = 3; + public const int HandleProjectionLength = 14; + public const int KindOffset = 17; + + public static byte[] Encode( + MxReferenceHandle referenceHandle, + MxValueKind valueKind, + object value, + int writeIndex = 1, + uint clientToken = 0) + { + byte[] valueBytes = EncodeValue(valueKind, value); + byte[] body = valueKind switch + { + MxValueKind.Boolean => CreateBoolean(referenceHandle, valueKind, valueBytes, writeIndex, clientToken), + MxValueKind.Int32 or MxValueKind.Float32 => CreateFixed(referenceHandle, valueKind, valueBytes, writeIndex, clientToken), + MxValueKind.Float64 => CreateFixed(referenceHandle, valueKind, valueBytes, writeIndex, clientToken), + MxValueKind.String or MxValueKind.DateTime => CreateVariable(referenceHandle, valueKind, valueBytes, writeIndex, clientToken), + MxValueKind.BooleanArray or MxValueKind.Int32Array or MxValueKind.Float32Array or MxValueKind.Float64Array => CreateArray(referenceHandle, valueKind, valueBytes, GetArrayCount(value), GetArrayElementWidth(valueKind), writeIndex, clientToken), + MxValueKind.StringArray or MxValueKind.DateTimeArray => CreateArray(referenceHandle, valueKind, valueBytes, GetArrayCount(value), elementWidth: 4, writeIndex, clientToken), + _ => throw new ArgumentOutOfRangeException(nameof(valueKind), valueKind, null), + }; + return body; + } + + public static byte[] EncodeTimestamped( + MxReferenceHandle referenceHandle, + MxValueKind valueKind, + object value, + DateTime timestamp, + int writeIndex = 1, + uint clientToken = 0) + { + byte[] valueBytes = EncodeValue(valueKind, value); + byte[] body = valueKind switch + { + MxValueKind.Boolean => CreateBooleanTimestamped(referenceHandle, value, timestamp, writeIndex, clientToken), + MxValueKind.Int32 or MxValueKind.Float32 => CreateFixedTimestamped(referenceHandle, valueKind, valueBytes, timestamp, writeIndex, clientToken), + MxValueKind.Float64 => CreateFixedTimestamped(referenceHandle, valueKind, valueBytes, timestamp, writeIndex, clientToken), + MxValueKind.String or MxValueKind.DateTime => CreateVariableTimestamped(referenceHandle, valueKind, valueBytes, timestamp, writeIndex, clientToken), + MxValueKind.BooleanArray or MxValueKind.Int32Array or MxValueKind.Float32Array or MxValueKind.Float64Array => CreateArrayTimestamped(referenceHandle, valueKind, valueBytes, GetArrayCount(value), GetArrayElementWidth(valueKind), timestamp, writeIndex, clientToken), + MxValueKind.StringArray or MxValueKind.DateTimeArray => CreateArrayTimestamped(referenceHandle, valueKind, valueBytes, GetArrayCount(value), elementWidth: 4, timestamp, writeIndex, clientToken), + _ => throw new ArgumentOutOfRangeException(nameof(valueKind), valueKind, null), + }; + return body; + } + + public static MxValueKind GetValueKind(short mxDataType, bool isArray) + { + if (TryGetValueKind(mxDataType, isArray, out MxValueKind valueKind)) + { + return valueKind; + } + + throw new ArgumentOutOfRangeException(nameof(mxDataType), $"Unsupported MX data type {mxDataType} with isArray={isArray}."); + } + + public static bool TryGetValueKind(short mxDataType, bool isArray, out MxValueKind valueKind) + { + return (mxDataType, isArray) switch + { + (1, false) => Return(MxValueKind.Boolean, out valueKind), + (2, false) => Return(MxValueKind.Int32, out valueKind), + (3, false) => Return(MxValueKind.Float32, out valueKind), + (4, false) => Return(MxValueKind.Float64, out valueKind), + (5, false) => Return(MxValueKind.String, out valueKind), + (6, false) => Return(MxValueKind.DateTime, out valueKind), + (1, true) => Return(MxValueKind.BooleanArray, out valueKind), + (2, true) => Return(MxValueKind.Int32Array, out valueKind), + (3, true) => Return(MxValueKind.Float32Array, out valueKind), + (4, true) => Return(MxValueKind.Float64Array, out valueKind), + (5, true) => Return(MxValueKind.StringArray, out valueKind), + (6, true) => Return(MxValueKind.DateTimeArray, out valueKind), + _ => Return(default, out valueKind, success: false), + }; + } + + private static bool Return(MxValueKind source, out MxValueKind target, bool success = true) + { + target = source; + return success; + } + + public static byte GetWireKind(MxValueKind valueKind) + { + return valueKind switch + { + MxValueKind.Boolean => 0x01, + MxValueKind.Int32 => 0x02, + MxValueKind.Float32 => 0x03, + MxValueKind.Float64 => 0x04, + MxValueKind.String or MxValueKind.DateTime => 0x05, + MxValueKind.BooleanArray => 0x41, + MxValueKind.Int32Array => 0x42, + MxValueKind.Float32Array => 0x43, + MxValueKind.Float64Array => 0x44, + MxValueKind.StringArray or MxValueKind.DateTimeArray => 0x45, + _ => throw new ArgumentOutOfRangeException(nameof(valueKind), valueKind, null), + }; + } + + private static byte[] CreateFixed(MxReferenceHandle referenceHandle, MxValueKind valueKind, byte[] valueBytes, int writeIndex, uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + valueBytes.Length + 14 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, valueKind); + valueBytes.CopyTo(body.AsSpan(KindOffset + 1)); + WriteNormalSuffix(body.AsSpan(KindOffset + 1 + valueBytes.Length), writeIndex, clientToken); + return body; + } + + private static byte[] CreateBoolean(MxReferenceHandle referenceHandle, MxValueKind valueKind, byte[] valueBytes, int writeIndex, uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + valueBytes.Length + 11 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, valueKind); + valueBytes.CopyTo(body.AsSpan(KindOffset + 1)); + WriteBooleanSuffix(body.AsSpan(KindOffset + 1 + valueBytes.Length), writeIndex, clientToken); + return body; + } + + private static byte[] CreateBooleanTimestamped(MxReferenceHandle referenceHandle, object value, DateTime timestamp, int writeIndex, uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + sizeof(byte) + 14 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, MxValueKind.Boolean); + body[KindOffset + 1] = Convert.ToBoolean(value, CultureInfo.InvariantCulture) ? (byte)0xff : (byte)0x00; + WriteTimestampedSuffix(body.AsSpan(KindOffset + 2), timestamp, writeIndex, clientToken); + return body; + } + + private static byte[] CreateFixedTimestamped(MxReferenceHandle referenceHandle, MxValueKind valueKind, byte[] valueBytes, DateTime timestamp, int writeIndex, uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + valueBytes.Length + 14 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, valueKind); + valueBytes.CopyTo(body.AsSpan(KindOffset + 1)); + WriteTimestampedSuffix(body.AsSpan(KindOffset + 1 + valueBytes.Length), timestamp, writeIndex, clientToken); + return body; + } + + private static byte[] CreateVariable(MxReferenceHandle referenceHandle, MxValueKind valueKind, byte[] valueBytes, int writeIndex, uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + sizeof(int) + sizeof(int) + valueBytes.Length + 14 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, valueKind); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(18, sizeof(int)), valueBytes.Length + sizeof(int)); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(22, sizeof(int)), valueBytes.Length); + valueBytes.CopyTo(body.AsSpan(26)); + WriteNormalSuffix(body.AsSpan(26 + valueBytes.Length), writeIndex, clientToken); + return body; + } + + private static byte[] CreateVariableTimestamped(MxReferenceHandle referenceHandle, MxValueKind valueKind, byte[] valueBytes, DateTime timestamp, int writeIndex, uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + sizeof(int) + sizeof(int) + valueBytes.Length + 14 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, valueKind); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(18, sizeof(int)), valueBytes.Length + sizeof(int)); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(22, sizeof(int)), valueBytes.Length); + valueBytes.CopyTo(body.AsSpan(26)); + WriteTimestampedSuffix(body.AsSpan(26 + valueBytes.Length), timestamp, writeIndex, clientToken); + return body; + } + + private static byte[] CreateArray( + MxReferenceHandle referenceHandle, + MxValueKind valueKind, + byte[] valueBytes, + int count, + ushort elementWidth, + int writeIndex, + uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + 10 + valueBytes.Length + 14 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, valueKind); + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(22, sizeof(ushort)), checked((ushort)count)); + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(24, sizeof(ushort)), elementWidth); + valueBytes.CopyTo(body.AsSpan(28)); + WriteNormalSuffix(body.AsSpan(28 + valueBytes.Length), writeIndex, clientToken); + return body; + } + + private static byte[] CreateArrayTimestamped( + MxReferenceHandle referenceHandle, + MxValueKind valueKind, + byte[] valueBytes, + int count, + ushort elementWidth, + DateTime timestamp, + int writeIndex, + uint clientToken) + { + byte[] body = new byte[KindOffset + 1 + 10 + valueBytes.Length + 14 + sizeof(int)]; + WriteCommonPrefix(body, referenceHandle, valueKind); + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(22, sizeof(ushort)), checked((ushort)count)); + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(24, sizeof(ushort)), elementWidth); + valueBytes.CopyTo(body.AsSpan(28)); + WriteTimestampedSuffix(body.AsSpan(28 + valueBytes.Length), timestamp, writeIndex, clientToken); + return body; + } + + private static void WriteCommonPrefix(byte[] body, MxReferenceHandle referenceHandle, MxValueKind valueKind) + { + body[0] = Command; + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(1, sizeof(ushort)), Version); + referenceHandle.Encode().AsSpan(6, HandleProjectionLength).CopyTo(body.AsSpan(HandleProjectionOffset, HandleProjectionLength)); + body[KindOffset] = GetWireKind(valueKind); + } + + private static void WriteNormalSuffix(Span suffixAndIndex, int writeIndex, uint clientToken) + { + if (suffixAndIndex.Length != 18) + { + throw new ArgumentException("Normal write suffix span must include the 14-byte suffix and 4-byte write index.", nameof(suffixAndIndex)); + } + + BinaryPrimitives.WriteInt16LittleEndian(suffixAndIndex[..sizeof(short)], -1); + BinaryPrimitives.WriteUInt64LittleEndian(suffixAndIndex.Slice(2, sizeof(ulong)), 0); + BinaryPrimitives.WriteUInt32LittleEndian(suffixAndIndex.Slice(10, sizeof(uint)), clientToken); + BinaryPrimitives.WriteInt32LittleEndian(suffixAndIndex.Slice(14, sizeof(int)), writeIndex); + } + + private static void WriteBooleanSuffix(Span suffixAndIndex, int writeIndex, uint clientToken) + { + if (suffixAndIndex.Length != 15) + { + throw new ArgumentException("Boolean write suffix span must include the 11-byte suffix and 4-byte write index.", nameof(suffixAndIndex)); + } + + suffixAndIndex[..7].Clear(); + BinaryPrimitives.WriteUInt32LittleEndian(suffixAndIndex.Slice(7, sizeof(uint)), clientToken); + BinaryPrimitives.WriteInt32LittleEndian(suffixAndIndex.Slice(11, sizeof(int)), writeIndex); + } + + private static void WriteTimestampedSuffix(Span suffixAndIndex, DateTime timestamp, int writeIndex, uint clientToken) + { + if (suffixAndIndex.Length != 18) + { + throw new ArgumentException("Timestamped write suffix span must include the 14-byte suffix and 4-byte write index.", nameof(suffixAndIndex)); + } + + BinaryPrimitives.WriteInt16LittleEndian(suffixAndIndex[..sizeof(short)], 0); + BinaryPrimitives.WriteInt64LittleEndian(suffixAndIndex.Slice(2, sizeof(long)), timestamp.ToFileTime()); + BinaryPrimitives.WriteUInt32LittleEndian(suffixAndIndex.Slice(10, sizeof(uint)), clientToken); + BinaryPrimitives.WriteInt32LittleEndian(suffixAndIndex.Slice(14, sizeof(int)), writeIndex); + } + + private static byte[] EncodeValue(MxValueKind valueKind, object value) + { + return valueKind switch + { + MxValueKind.Boolean => Convert.ToBoolean(value, CultureInfo.InvariantCulture) ? [0xff, 0xff, 0xff, 0x00] : [0x00, 0xff, 0xff, 0x00], + MxValueKind.Int32 => EncodeInt32(Convert.ToInt32(value, CultureInfo.InvariantCulture)), + MxValueKind.Float32 => EncodeFloat32(Convert.ToSingle(value, CultureInfo.InvariantCulture)), + MxValueKind.Float64 => EncodeFloat64(Convert.ToDouble(value, CultureInfo.InvariantCulture)), + MxValueKind.String => EncodeUtf16String(Convert.ToString(value, CultureInfo.InvariantCulture) ?? string.Empty), + MxValueKind.DateTime => EncodeUtf16String(FormatDateTime((DateTime)value)), + MxValueKind.BooleanArray => EncodeBooleanArray((bool[])value), + MxValueKind.Int32Array => EncodeInt32Array((int[])value), + MxValueKind.Float32Array => EncodeFloat32Array((float[])value), + MxValueKind.Float64Array => EncodeFloat64Array((double[])value), + MxValueKind.StringArray => EncodeVariableArray(((string[])value).Select(static value => value ?? string.Empty)), + MxValueKind.DateTimeArray => EncodeVariableArray(((DateTime[])value).Select(FormatDateTime)), + _ => throw new ArgumentOutOfRangeException(nameof(valueKind), valueKind, null), + }; + } + + private static byte[] EncodeInt32(int value) + { + byte[] bytes = new byte[sizeof(int)]; + BinaryPrimitives.WriteInt32LittleEndian(bytes, value); + return bytes; + } + + private static byte[] EncodeFloat32(float value) + { + byte[] bytes = new byte[sizeof(float)]; + BinaryPrimitives.WriteInt32LittleEndian(bytes, BitConverter.SingleToInt32Bits(value)); + return bytes; + } + + private static byte[] EncodeFloat64(double value) + { + byte[] bytes = new byte[sizeof(double)]; + BinaryPrimitives.WriteInt64LittleEndian(bytes, BitConverter.DoubleToInt64Bits(value)); + return bytes; + } + + private static byte[] EncodeUtf16String(string value) + { + byte[] textBytes = Encoding.Unicode.GetBytes(value); + byte[] bytes = new byte[textBytes.Length + 2]; + textBytes.CopyTo(bytes, 0); + return bytes; + } + + private static byte[] EncodeBooleanArray(bool[] values) + { + byte[] bytes = new byte[values.Length * sizeof(short)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt16LittleEndian(bytes.AsSpan(i * sizeof(short), sizeof(short)), values[i] ? (short)-1 : (short)0); + } + + return bytes; + } + + private static byte[] EncodeInt32Array(int[] values) + { + byte[] bytes = new byte[values.Length * sizeof(int)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt32LittleEndian(bytes.AsSpan(i * sizeof(int), sizeof(int)), values[i]); + } + + return bytes; + } + + private static byte[] EncodeFloat32Array(float[] values) + { + byte[] bytes = new byte[values.Length * sizeof(float)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt32LittleEndian(bytes.AsSpan(i * sizeof(float), sizeof(float)), BitConverter.SingleToInt32Bits(values[i])); + } + + return bytes; + } + + private static byte[] EncodeFloat64Array(double[] values) + { + byte[] bytes = new byte[values.Length * sizeof(double)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt64LittleEndian(bytes.AsSpan(i * sizeof(double), sizeof(double)), BitConverter.DoubleToInt64Bits(values[i])); + } + + return bytes; + } + + private static byte[] EncodeVariableArray(IEnumerable values) + { + using var stream = new MemoryStream(); + foreach (string value in values) + { + byte[] textBytes = EncodeUtf16String(value); + byte[] header = new byte[13]; + BinaryPrimitives.WriteInt32LittleEndian(header.AsSpan(0, 4), 1 + sizeof(int) + sizeof(int) + textBytes.Length); + header[4] = 0x05; + BinaryPrimitives.WriteInt32LittleEndian(header.AsSpan(5, 4), textBytes.Length + sizeof(int)); + BinaryPrimitives.WriteInt32LittleEndian(header.AsSpan(9, 4), textBytes.Length); + stream.Write(header); + stream.Write(textBytes); + } + + return stream.ToArray(); + } + + private static int GetArrayCount(object value) + { + return value switch + { + bool[] values => values.Length, + int[] values => values.Length, + float[] values => values.Length, + double[] values => values.Length, + string[] values => values.Length, + DateTime[] values => values.Length, + _ => throw new ArgumentException("Value is not a supported MX array.", nameof(value)), + }; + } + + private static ushort GetArrayElementWidth(MxValueKind valueKind) + { + return valueKind switch + { + MxValueKind.BooleanArray => sizeof(short), + MxValueKind.Int32Array => sizeof(int), + MxValueKind.Float32Array => sizeof(float), + MxValueKind.Float64Array => sizeof(double), + _ => throw new ArgumentOutOfRangeException(nameof(valueKind), valueKind, null), + }; + } + + private static string FormatDateTime(DateTime value) + { + return value.ToString("M/d/yyyy h:mm:ss tt", CultureInfo.InvariantCulture); + } +} diff --git a/src/MxNativeCodec/ObservedWriteBodyTemplate.cs b/src/MxNativeCodec/ObservedWriteBodyTemplate.cs new file mode 100644 index 0000000..7798618 --- /dev/null +++ b/src/MxNativeCodec/ObservedWriteBodyTemplate.cs @@ -0,0 +1,412 @@ +using System.Buffers.Binary; +using System.Globalization; +using System.Text; + +namespace MxNativeCodec; + +public sealed class ObservedWriteBodyTemplate +{ + public const int FixedValueOffset = 18; + public const int VariableValueOffset = 26; + public const int ArrayValueOffset = 28; + + private readonly byte[] _prefix; + private readonly byte[] _suffixBeforeWriteIndex; + private readonly MxValueKind _kind; + + private ObservedWriteBodyTemplate(MxValueKind kind, byte[] prefix, byte[] suffixBeforeWriteIndex) + { + _kind = kind; + _prefix = prefix; + _suffixBeforeWriteIndex = suffixBeforeWriteIndex; + } + + public MxValueKind Kind => _kind; + + public static ObservedWriteBodyTemplate FromObserved(MxValueKind kind, ReadOnlySpan observedBody) + { + if (observedBody.Length < 24) + { + throw new ArgumentException("Observed body is too short.", nameof(observedBody)); + } + + return kind switch + { + MxValueKind.Boolean => CreateFixed(kind, observedBody, valueWidth: 4), + MxValueKind.Int32 => CreateFixed(kind, observedBody, valueWidth: 4), + MxValueKind.Float32 => CreateFixed(kind, observedBody, valueWidth: 4), + MxValueKind.Float64 => CreateFixed(kind, observedBody, valueWidth: 8), + MxValueKind.String => CreateVariable(kind, observedBody), + MxValueKind.DateTime => CreateVariable(kind, observedBody), + MxValueKind.BooleanArray => CreateArray(kind, observedBody), + MxValueKind.Int32Array => CreateArray(kind, observedBody), + MxValueKind.Float32Array => CreateArray(kind, observedBody), + MxValueKind.Float64Array => CreateArray(kind, observedBody), + MxValueKind.StringArray => CreateArray(kind, observedBody), + MxValueKind.DateTimeArray => CreateArray(kind, observedBody), + _ => throw new ArgumentOutOfRangeException(nameof(kind), kind, null), + }; + } + + public byte[] Encode(object value, int writeIndex) + { + byte[] valueBytes = EncodeValue(value); + byte[] body = new byte[_prefix.Length + valueBytes.Length + _suffixBeforeWriteIndex.Length + sizeof(int)]; + + _prefix.CopyTo(body, 0); + valueBytes.CopyTo(body, _prefix.Length); + _suffixBeforeWriteIndex.CopyTo(body, _prefix.Length + valueBytes.Length); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(body.Length - sizeof(int)), writeIndex); + PatchVariableLengths(body, valueBytes.Length); + PatchArrayDescriptor(body, valueBytes.Length); + + return body; + } + + public object Decode(ReadOnlySpan body) + { + return _kind switch + { + MxValueKind.Boolean => DecodeBoolean(body), + MxValueKind.Int32 => BinaryPrimitives.ReadInt32LittleEndian(body.Slice(FixedValueOffset, 4)), + MxValueKind.Float32 => BitConverter.Int32BitsToSingle(BinaryPrimitives.ReadInt32LittleEndian(body.Slice(FixedValueOffset, 4))), + MxValueKind.Float64 => BitConverter.Int64BitsToDouble(BinaryPrimitives.ReadInt64LittleEndian(body.Slice(FixedValueOffset, 8))), + MxValueKind.String => DecodeUtf16String(body), + MxValueKind.DateTime => DecodeDateTime(body), + MxValueKind.BooleanArray => DecodeBooleanArray(body), + MxValueKind.Int32Array => DecodeInt32Array(body), + MxValueKind.Float32Array => DecodeFloat32Array(body), + MxValueKind.Float64Array => DecodeFloat64Array(body), + MxValueKind.StringArray => DecodeVariableArray(body, DecodeVariableArrayString), + MxValueKind.DateTimeArray => DecodeVariableArray(body, DecodeVariableArrayDateTime), + _ => throw new InvalidOperationException($"Unsupported value kind {_kind}."), + }; + } + + public int DecodeWriteIndex(ReadOnlySpan body) + { + if (body.Length < sizeof(int)) + { + throw new ArgumentException("Body is too short.", nameof(body)); + } + + return BinaryPrimitives.ReadInt32LittleEndian(body[^sizeof(int)..]); + } + + private static ObservedWriteBodyTemplate CreateFixed(MxValueKind kind, ReadOnlySpan body, int valueWidth) + { + int suffixStart = FixedValueOffset + valueWidth; + int suffixLength = body.Length - suffixStart - sizeof(int); + if (suffixLength < 0) + { + throw new ArgumentException("Observed fixed-width body is too short.", nameof(body)); + } + + return new ObservedWriteBodyTemplate( + kind, + body[..FixedValueOffset].ToArray(), + body.Slice(suffixStart, suffixLength).ToArray()); + } + + private static ObservedWriteBodyTemplate CreateVariable(MxValueKind kind, ReadOnlySpan body) + { + if (body.Length < VariableValueOffset + sizeof(int)) + { + throw new ArgumentException("Observed variable-width body is too short.", nameof(body)); + } + + int valueByteLength = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(22, 4)); + int suffixStart = VariableValueOffset + valueByteLength; + int suffixLength = body.Length - suffixStart - sizeof(int); + if (valueByteLength < 2 || suffixLength < 0) + { + throw new ArgumentException("Observed variable-width body has invalid lengths.", nameof(body)); + } + + return new ObservedWriteBodyTemplate( + kind, + body[..VariableValueOffset].ToArray(), + body.Slice(suffixStart, suffixLength).ToArray()); + } + + private static ObservedWriteBodyTemplate CreateArray(MxValueKind kind, ReadOnlySpan body) + { + if (body.Length < ArrayValueOffset + 18) + { + throw new ArgumentException("Observed array body is too short.", nameof(body)); + } + + int suffixStart = body.Length - 18; + return new ObservedWriteBodyTemplate( + kind, + body[..ArrayValueOffset].ToArray(), + body.Slice(suffixStart, 14).ToArray()); + } + + private byte[] EncodeValue(object value) + { + return _kind switch + { + MxValueKind.Boolean => EncodeBoolean(Convert.ToBoolean(value, CultureInfo.InvariantCulture)), + MxValueKind.Int32 => EncodeInt32(Convert.ToInt32(value, CultureInfo.InvariantCulture)), + MxValueKind.Float32 => EncodeFloat32(Convert.ToSingle(value, CultureInfo.InvariantCulture)), + MxValueKind.Float64 => EncodeFloat64(Convert.ToDouble(value, CultureInfo.InvariantCulture)), + MxValueKind.String => EncodeUtf16String(Convert.ToString(value, CultureInfo.InvariantCulture) ?? string.Empty), + MxValueKind.DateTime => EncodeUtf16String(FormatObservedDateTime((DateTime)value)), + MxValueKind.BooleanArray => EncodeBooleanArray((bool[])value), + MxValueKind.Int32Array => EncodeInt32Array((int[])value), + MxValueKind.Float32Array => EncodeFloat32Array((float[])value), + MxValueKind.Float64Array => EncodeFloat64Array((double[])value), + MxValueKind.StringArray => EncodeVariableArray(((string[])value).Select(static s => s ?? string.Empty)), + MxValueKind.DateTimeArray => EncodeVariableArray(((DateTime[])value).Select(FormatObservedDateTime)), + _ => throw new InvalidOperationException($"Unsupported value kind {_kind}."), + }; + } + + private static byte[] EncodeBoolean(bool value) + { + return value + ? [0xff, 0xff, 0xff, 0x00] + : [0x00, 0xff, 0xff, 0x00]; + } + + private static bool DecodeBoolean(ReadOnlySpan body) + { + return body[FixedValueOffset] == 0xff && body[FixedValueOffset + 1] == 0xff; + } + + private static byte[] EncodeInt32(int value) + { + byte[] bytes = new byte[sizeof(int)]; + BinaryPrimitives.WriteInt32LittleEndian(bytes, value); + return bytes; + } + + private static byte[] EncodeBooleanArray(bool[] values) + { + byte[] bytes = new byte[values.Length * sizeof(short)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt16LittleEndian(bytes.AsSpan(i * sizeof(short), sizeof(short)), values[i] ? (short)-1 : (short)0); + } + + return bytes; + } + + private static bool[] DecodeBooleanArray(ReadOnlySpan body) + { + int count = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(22, 2)); + bool[] values = new bool[count]; + for (int i = 0; i < values.Length; i++) + { + values[i] = BinaryPrimitives.ReadInt16LittleEndian(body.Slice(ArrayValueOffset + i * sizeof(short), sizeof(short))) != 0; + } + + return values; + } + + private static byte[] EncodeInt32Array(int[] values) + { + byte[] bytes = new byte[values.Length * sizeof(int)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt32LittleEndian(bytes.AsSpan(i * sizeof(int), sizeof(int)), values[i]); + } + + return bytes; + } + + private static int[] DecodeInt32Array(ReadOnlySpan body) + { + int count = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(22, 2)); + int[] values = new int[count]; + for (int i = 0; i < values.Length; i++) + { + values[i] = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(ArrayValueOffset + i * sizeof(int), sizeof(int))); + } + + return values; + } + + private static byte[] EncodeFloat32(float value) + { + byte[] bytes = new byte[sizeof(float)]; + BinaryPrimitives.WriteInt32LittleEndian(bytes, BitConverter.SingleToInt32Bits(value)); + return bytes; + } + + private static byte[] EncodeFloat32Array(float[] values) + { + byte[] bytes = new byte[values.Length * sizeof(float)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt32LittleEndian(bytes.AsSpan(i * sizeof(float), sizeof(float)), BitConverter.SingleToInt32Bits(values[i])); + } + + return bytes; + } + + private static float[] DecodeFloat32Array(ReadOnlySpan body) + { + int count = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(22, 2)); + float[] values = new float[count]; + for (int i = 0; i < values.Length; i++) + { + values[i] = BitConverter.Int32BitsToSingle(BinaryPrimitives.ReadInt32LittleEndian(body.Slice(ArrayValueOffset + i * sizeof(float), sizeof(float)))); + } + + return values; + } + + private static byte[] EncodeFloat64(double value) + { + byte[] bytes = new byte[sizeof(double)]; + BinaryPrimitives.WriteInt64LittleEndian(bytes, BitConverter.DoubleToInt64Bits(value)); + return bytes; + } + + private static byte[] EncodeFloat64Array(double[] values) + { + byte[] bytes = new byte[values.Length * sizeof(double)]; + for (int i = 0; i < values.Length; i++) + { + BinaryPrimitives.WriteInt64LittleEndian(bytes.AsSpan(i * sizeof(double), sizeof(double)), BitConverter.DoubleToInt64Bits(values[i])); + } + + return bytes; + } + + private static double[] DecodeFloat64Array(ReadOnlySpan body) + { + int count = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(22, 2)); + double[] values = new double[count]; + for (int i = 0; i < values.Length; i++) + { + values[i] = BitConverter.Int64BitsToDouble(BinaryPrimitives.ReadInt64LittleEndian(body.Slice(ArrayValueOffset + i * sizeof(double), sizeof(double)))); + } + + return values; + } + + private static byte[] EncodeUtf16String(string value) + { + byte[] textBytes = Encoding.Unicode.GetBytes(value); + byte[] bytes = new byte[textBytes.Length + 2]; + textBytes.CopyTo(bytes, 0); + return bytes; + } + + private static string DecodeUtf16String(ReadOnlySpan body) + { + int valueByteLength = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(22, 4)); + ReadOnlySpan raw = body.Slice(VariableValueOffset, valueByteLength); + if (raw.Length >= 2 && raw[^1] == 0 && raw[^2] == 0) + { + raw = raw[..^2]; + } + + return Encoding.Unicode.GetString(raw); + } + + private static DateTime DecodeDateTime(ReadOnlySpan body) + { + string text = DecodeUtf16String(body); + return DateTime.ParseExact(text, "M/d/yyyy h:mm:ss tt", CultureInfo.InvariantCulture, DateTimeStyles.None); + } + + private static byte[] EncodeVariableArray(IEnumerable values) + { + using var stream = new MemoryStream(); + foreach (var value in values) + { + byte[] textBytes = EncodeUtf16String(value); + byte[] header = new byte[13]; + BinaryPrimitives.WriteInt32LittleEndian(header.AsSpan(0, 4), 1 + sizeof(int) + sizeof(int) + textBytes.Length); + header[4] = 0x05; + BinaryPrimitives.WriteInt32LittleEndian(header.AsSpan(5, 4), textBytes.Length + sizeof(int)); + BinaryPrimitives.WriteInt32LittleEndian(header.AsSpan(9, 4), textBytes.Length); + stream.Write(header); + stream.Write(textBytes, 0, textBytes.Length); + } + + return stream.ToArray(); + } + + private static T[] DecodeVariableArray(ReadOnlySpan body, Func, T> decode) + { + int count = BinaryPrimitives.ReadUInt16LittleEndian(body.Slice(22, 2)); + T[] values = new T[count]; + int offset = ArrayValueOffset; + for (int i = 0; i < values.Length; i++) + { + int recordLength = BinaryPrimitives.ReadInt32LittleEndian(body.Slice(offset, 4)); + ReadOnlySpan record = body.Slice(offset + 4, recordLength); + values[i] = decode(record); + offset += sizeof(int) + recordLength; + } + + return values; + } + + private static string DecodeVariableArrayString(ReadOnlySpan record) + { + if (record[0] != 0x05) + { + throw new ArgumentException("Unexpected variable array element type.", nameof(record)); + } + + int valueByteLength = BinaryPrimitives.ReadInt32LittleEndian(record.Slice(5, 4)); + ReadOnlySpan raw = record.Slice(9, valueByteLength); + if (raw.Length >= 2 && raw[^1] == 0 && raw[^2] == 0) + { + raw = raw[..^2]; + } + + return Encoding.Unicode.GetString(raw); + } + + private static DateTime DecodeVariableArrayDateTime(ReadOnlySpan record) + { + return DateTime.ParseExact(DecodeVariableArrayString(record), "M/d/yyyy h:mm:ss tt", CultureInfo.InvariantCulture, DateTimeStyles.None); + } + + private static string FormatObservedDateTime(DateTime value) + { + return value.ToString("M/d/yyyy h:mm:ss tt", CultureInfo.InvariantCulture); + } + + private void PatchVariableLengths(byte[] body, int valueByteLength) + { + if (_kind is not (MxValueKind.String or MxValueKind.DateTime)) + { + return; + } + + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(18, 4), valueByteLength + 4); + BinaryPrimitives.WriteInt32LittleEndian(body.AsSpan(22, 4), valueByteLength); + return; + } + + private void PatchArrayDescriptor(byte[] body, int valueByteLength) + { + if (_kind is not (MxValueKind.BooleanArray or MxValueKind.Int32Array or MxValueKind.Float32Array or MxValueKind.Float64Array or MxValueKind.StringArray or MxValueKind.DateTimeArray)) + { + return; + } + + if (_kind is MxValueKind.StringArray or MxValueKind.DateTimeArray) + { + return; + } + + int count = _kind switch + { + MxValueKind.BooleanArray => valueByteLength / sizeof(short), + MxValueKind.Int32Array => valueByteLength / sizeof(int), + MxValueKind.Float32Array => valueByteLength / sizeof(float), + MxValueKind.Float64Array => valueByteLength / sizeof(double), + _ => 0, + }; + BinaryPrimitives.WriteUInt16LittleEndian(body.AsSpan(22, 2), checked((ushort)count)); + } +} diff --git a/src/MxTraceHarness/MxTraceHarness.csproj b/src/MxTraceHarness/MxTraceHarness.csproj new file mode 100644 index 0000000..f5250e9 --- /dev/null +++ b/src/MxTraceHarness/MxTraceHarness.csproj @@ -0,0 +1,19 @@ + + + Exe + net481 + x86 + true + latest + enable + disable + true + + + + + C:\Program Files (x86)\ArchestrA\Framework\Bin\ArchestrA.MXAccess.dll + false + + + diff --git a/src/MxTraceHarness/Program.cs b/src/MxTraceHarness/Program.cs new file mode 100644 index 0000000..52a6b25 --- /dev/null +++ b/src/MxTraceHarness/Program.cs @@ -0,0 +1,1169 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; +using ArchestrA.MxAccess; + +namespace MxTraceHarness; + +internal static class Program +{ + private static readonly object LogLock = new(); + private static StreamWriter? _log; + + [STAThread] + private static int Main(string[] args) + { + var options = Options.Parse(args); + Directory.CreateDirectory(Path.GetDirectoryName(Path.GetFullPath(options.LogPath))!); + using var log = new StreamWriter(options.LogPath, append: false) { AutoFlush = true }; + _log = log; + + Log("harness.start", new + { + options.Scenario, + options.ClientName, + options.Tags, + options.ItemContext, + options.WriteType, + options.WriteValue, + options.WriteValues, + options.UserId, + options.CurrentUserId, + options.VerifierUserId, + options.UserGuid, + options.AuthUser, + options.AuthenticateBeforeWrite, + options.UseAuthenticatedUserAsVerifier, + options.UsePlainAdvise, + options.WriteTimestamp, + options.WriteDelayMilliseconds, + options.WriteIntervalMilliseconds, + options.BufferedUpdateInterval, + options.DurationSeconds, + ProcessBitness = Environment.Is64BitProcess ? "x64" : "x86", + Runtime = Environment.Version.ToString() + }); + + LMXProxyServerClass? proxy = null; + var sessionHandle = 0; + var items = new Dictionary(StringComparer.OrdinalIgnoreCase); + var advisedItems = new HashSet(); + var bufferedEventSubscribed = false; + + try + { + proxy = new LMXProxyServerClass(); + proxy.OnDataChange += OnDataChange; + proxy.OnWriteComplete += OnWriteComplete; + proxy.OperationComplete += OnOperationComplete; + if (options.IsBufferedScenario) + { + proxy.OnBufferedDataChange += OnBufferedDataChange; + bufferedEventSubscribed = true; + } + + Log("mx.register.begin", new { options.ClientName }); + sessionHandle = proxy.Register(options.ClientName); + Log("mx.register.end", new { SessionHandle = sessionHandle }); + + if (options.Scenario.Equals("register", StringComparison.OrdinalIgnoreCase)) + { + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + return 0; + } + + if (options.Scenario.Equals("user-map", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.user-map.begin", new { options.UserGuid }); + int userId = proxy.ArchestrAUserToId(sessionHandle, options.UserGuid); + Log("mx.user-map.end", new { options.UserGuid, UserId = userId }); + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + return 0; + } + + if (options.Scenario.Equals("authenticate-user", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.authenticate-user.begin", new + { + options.AuthUser, + PasswordSource = string.IsNullOrEmpty(options.AuthPassword) ? "empty-or-missing-env" : "env" + }); + int userId = proxy.AuthenticateUser(sessionHandle, options.AuthUser, options.AuthPassword); + Log("mx.authenticate-user.end", new { options.AuthUser, UserId = userId }); + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + return 0; + } + + if (options.Scenario.Equals("set-buffered-interval", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.set-buffered-interval.begin", new { options.BufferedUpdateInterval }); + proxy.SetBufferedUpdateInterval(sessionHandle, options.BufferedUpdateInterval); + Log("mx.set-buffered-interval.end", new { options.BufferedUpdateInterval }); + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + return 0; + } + + foreach (var tag in options.Tags) + { + try + { + int itemHandle; + if (options.IsBufferedScenario) + { + if (items.Count == 0) + { + Log("mx.set-buffered-interval.begin", new { options.BufferedUpdateInterval }); + proxy.SetBufferedUpdateInterval(sessionHandle, options.BufferedUpdateInterval); + Log("mx.set-buffered-interval.end", new { options.BufferedUpdateInterval }); + } + + Log("mx.add-buffered.begin", new { Tag = tag, options.ItemContext }); + itemHandle = proxy.AddBufferedItem(sessionHandle, tag, options.ItemContext); + Log("mx.add-buffered.end", new { Tag = tag, options.ItemContext, ItemHandle = itemHandle }); + } + else if (options.Scenario.Equals("additem2", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.additem2.begin", new { Tag = tag, options.ItemContext }); + itemHandle = proxy.AddItem2(sessionHandle, tag, options.ItemContext); + Log("mx.additem2.end", new { Tag = tag, options.ItemContext, ItemHandle = itemHandle }); + } + else + { + Log("mx.additem.begin", new { Tag = tag }); + itemHandle = proxy.AddItem(sessionHandle, tag); + Log("mx.additem.end", new { Tag = tag, ItemHandle = itemHandle }); + } + + items[tag] = itemHandle; + + if (options.Scenario.Equals("post-remove-errors", StringComparison.OrdinalIgnoreCase)) + { + InvokePostRemoveOperations(proxy, sessionHandle, tag, itemHandle, options); + items.Remove(tag); + continue; + } + + if (options.Scenario.Equals("invalid-handle-errors", StringComparison.OrdinalIgnoreCase)) + { + InvokeInvalidHandleOperations(proxy, sessionHandle, tag, itemHandle, options); + continue; + } + + if (options.IsWriteScenario) + { + Log("mx.advise-supervisory.begin", new { Tag = tag, ItemHandle = itemHandle }); + proxy.AdviseSupervisory(sessionHandle, itemHandle); + advisedItems.Add(itemHandle); + Log("mx.advise-supervisory.end", new { Tag = tag, ItemHandle = itemHandle }); + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteDelayMilliseconds)); + AuthenticateBeforeWriteIfRequested(proxy, sessionHandle, options); + + var writeIndex = 0; + foreach (var writeValue in options.GetWriteValues()) + { + Log("mx.write.begin", new + { + Tag = tag, + ItemHandle = itemHandle, + WriteIndex = writeIndex, + Value = DescribeVariant(writeValue), + options.UserId, + options.CurrentUserId, + options.VerifierUserId, + options.WriteTimestamp + }); + InvokeWrite(proxy, sessionHandle, itemHandle, writeValue, options); + Log("mx.write.end", new { Tag = tag, ItemHandle = itemHandle, WriteIndex = writeIndex }); + writeIndex++; + + if (writeIndex < options.WriteCount) + { + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteIntervalMilliseconds)); + } + } + + continue; + } + + if (options.Scenario.Equals("add-buffered-write", StringComparison.OrdinalIgnoreCase)) + { + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteDelayMilliseconds)); + var writeIndex = 0; + foreach (var writeValue in options.GetWriteValues()) + { + Log("mx.write.begin", new + { + Tag = tag, + ItemHandle = itemHandle, + WriteIndex = writeIndex, + Value = DescribeVariant(writeValue), + options.UserId, + options.CurrentUserId, + options.VerifierUserId, + options.WriteTimestamp + }); + InvokeWrite(proxy, sessionHandle, itemHandle, writeValue, options); + Log("mx.write.end", new { Tag = tag, ItemHandle = itemHandle, WriteIndex = writeIndex }); + writeIndex++; + + if (writeIndex < options.WriteCount) + { + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteIntervalMilliseconds)); + } + } + + continue; + } + + if (options.Scenario.Equals("add-buffered-advise", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered-plain-advise", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("buffered-external-write", StringComparison.OrdinalIgnoreCase)) + { + if (options.UsePlainAdvise + || options.Scenario.Equals("add-buffered-plain-advise", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.advise.begin", new { Tag = tag, ItemHandle = itemHandle }); + proxy.Advise(sessionHandle, itemHandle); + Log("mx.advise.end", new { Tag = tag, ItemHandle = itemHandle }); + } + else + { + Log("mx.advise-supervisory.begin", new { Tag = tag, ItemHandle = itemHandle }); + proxy.AdviseSupervisory(sessionHandle, itemHandle); + Log("mx.advise-supervisory.end", new { Tag = tag, ItemHandle = itemHandle }); + } + + advisedItems.Add(itemHandle); + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteDelayMilliseconds)); + } + + if (options.Scenario.Equals("buffered-external-write", StringComparison.OrdinalIgnoreCase)) + { + var writeIndex = 0; + foreach (var writeValue in options.GetWriteValues()) + { + Log("mx.buffered-external-write.begin", new + { + Tag = tag, + options.ItemContext, + WriteIndex = writeIndex, + Value = DescribeVariant(writeValue), + options.UserId + }); + InvokeExternalWrite(proxy, sessionHandle, tag, writeValue, options); + Log("mx.buffered-external-write.end", new { Tag = tag, WriteIndex = writeIndex }); + writeIndex++; + + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteIntervalMilliseconds)); + } + + continue; + } + + if (options.Scenario.Equals("suspend-advised", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("activate-advised", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.advise-supervisory.begin", new { Tag = tag, ItemHandle = itemHandle }); + proxy.AdviseSupervisory(sessionHandle, itemHandle); + advisedItems.Add(itemHandle); + Log("mx.advise-supervisory.end", new { Tag = tag, ItemHandle = itemHandle }); + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteDelayMilliseconds)); + } + + if (options.Scenario.Equals("suspend", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("suspend-advised", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.suspend.begin", new { Tag = tag, ItemHandle = itemHandle }); + MxStatus status; + proxy.Suspend(sessionHandle, itemHandle, out status); + Log("mx.suspend.end", new { Tag = tag, ItemHandle = itemHandle, Status = DescribeStatus(status) }); + continue; + } + + if (options.Scenario.Equals("activate", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("activate-advised", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.activate.begin", new { Tag = tag, ItemHandle = itemHandle }); + MxStatus status; + proxy.Activate(sessionHandle, itemHandle, out status); + Log("mx.activate.end", new { Tag = tag, ItemHandle = itemHandle, Status = DescribeStatus(status) }); + continue; + } + + if (options.Scenario.Equals("add-remove", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered-advise", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered-plain-advise", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered-write", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("buffered-external-write", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("additem2", StringComparison.OrdinalIgnoreCase)) + { + continue; + } + + if (options.Scenario.Equals("advise", StringComparison.OrdinalIgnoreCase)) + { + Log("mx.advise.begin", new { Tag = tag, ItemHandle = itemHandle }); + proxy.Advise(sessionHandle, itemHandle); + Log("mx.advise.end", new { Tag = tag, ItemHandle = itemHandle }); + } + else + { + Log("mx.advise-supervisory.begin", new { Tag = tag, ItemHandle = itemHandle }); + proxy.AdviseSupervisory(sessionHandle, itemHandle); + Log("mx.advise-supervisory.end", new { Tag = tag, ItemHandle = itemHandle }); + } + + advisedItems.Add(itemHandle); + } + catch (Exception ex) + { + LogException("mx.item.error", ex, new { Tag = tag }); + } + } + + if (options.Scenario.Equals("subscribe", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("advise", StringComparison.OrdinalIgnoreCase)) + { + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + } + else if (options.Scenario.Equals("write", StringComparison.OrdinalIgnoreCase)) + { + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + } + else if (options.IsWriteScenario) + { + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + } + else if (options.Scenario.Equals("add-remove", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("suspend", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("suspend-advised", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("activate", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("activate-advised", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered-advise", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered-plain-advise", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("add-buffered-write", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("buffered-external-write", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("post-remove-errors", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("invalid-handle-errors", StringComparison.OrdinalIgnoreCase) + || options.Scenario.Equals("additem2", StringComparison.OrdinalIgnoreCase)) + { + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + } + else + { + Log("harness.warning", new { Message = "Unknown scenario; performed add/advise default.", options.Scenario }); + SleepWithMessagePump(TimeSpan.FromSeconds(options.DurationSeconds)); + } + + return 0; + } + catch (Exception ex) + { + LogException("harness.error", ex, new { }); + return 1; + } + finally + { + if (proxy is not null) + { + foreach (var pair in items.Reverse()) + { + if (advisedItems.Contains(pair.Value)) + { + try + { + Log("mx.unadvise.begin", new { Tag = pair.Key, ItemHandle = pair.Value }); + proxy.UnAdvise(sessionHandle, pair.Value); + Log("mx.unadvise.end", new { Tag = pair.Key, ItemHandle = pair.Value }); + } + catch (Exception ex) + { + LogException("mx.unadvise.error", ex, new { Tag = pair.Key, ItemHandle = pair.Value }); + } + } + + try + { + Log("mx.removeitem.begin", new { Tag = pair.Key, ItemHandle = pair.Value }); + proxy.RemoveItem(sessionHandle, pair.Value); + Log("mx.removeitem.end", new { Tag = pair.Key, ItemHandle = pair.Value }); + } + catch (Exception ex) + { + LogException("mx.removeitem.error", ex, new { Tag = pair.Key, ItemHandle = pair.Value }); + } + } + + if (sessionHandle != 0) + { + try + { + Log("mx.unregister.begin", new { SessionHandle = sessionHandle }); + proxy.Unregister(sessionHandle); + Log("mx.unregister.end", new { SessionHandle = sessionHandle }); + } + catch (Exception ex) + { + LogException("mx.unregister.error", ex, new { SessionHandle = sessionHandle }); + } + } + + try + { + proxy.OnDataChange -= OnDataChange; + proxy.OnWriteComplete -= OnWriteComplete; + proxy.OperationComplete -= OnOperationComplete; + if (bufferedEventSubscribed) + { + proxy.OnBufferedDataChange -= OnBufferedDataChange; + } + + while (Marshal.IsComObject(proxy) && Marshal.ReleaseComObject(proxy) > 0) { } + } + catch (Exception ex) + { + LogException("mx.release.error", ex, new { }); + } + } + + Log("harness.stop", new { }); + } + } + + private static void OnDataChange(int hLMXServerHandle, int phItemHandle, object pvItemValue, int pwItemQuality, + object pftItemTimeStamp, ref MXSTATUS_PROXY[] pVars) + { + Log("mx.event.data-change", new + { + SessionHandle = hLMXServerHandle, + ItemHandle = phItemHandle, + Value = DescribeVariant(pvItemValue), + Quality = pwItemQuality, + Timestamp = DescribeVariant(pftItemTimeStamp), + Status = DescribeStatus(pVars) + }); + } + + private static void InvokeWrite(LMXProxyServerClass proxy, int sessionHandle, int itemHandle, object writeValue, Options options) + { + if (options.Scenario.Equals("write-secured", StringComparison.OrdinalIgnoreCase)) + { + proxy.WriteSecured(sessionHandle, itemHandle, options.CurrentUserId, options.VerifierUserId, writeValue); + return; + } + + if (options.Scenario.Equals("write-secured2", StringComparison.OrdinalIgnoreCase)) + { + proxy.WriteSecured2(sessionHandle, itemHandle, options.CurrentUserId, options.VerifierUserId, writeValue, options.GetWriteTimestamp()); + return; + } + + if (options.Scenario.Equals("write2", StringComparison.OrdinalIgnoreCase)) + { + proxy.Write2(sessionHandle, itemHandle, writeValue, options.GetWriteTimestamp(), options.UserId); + return; + } + + proxy.Write(sessionHandle, itemHandle, writeValue, options.UserId); + } + + private static void AuthenticateBeforeWriteIfRequested( + LMXProxyServerClass proxy, + int sessionHandle, + Options options) + { + if (!options.AuthenticateBeforeWrite) + { + return; + } + + Log("mx.authenticate-before-write.begin", new + { + options.AuthUser, + PasswordSource = string.IsNullOrEmpty(options.AuthPassword) ? "empty-or-missing-env" : "env" + }); + int authenticatedUserId = proxy.AuthenticateUser(sessionHandle, options.AuthUser, options.AuthPassword); + options.ApplyAuthenticatedUserId(authenticatedUserId); + Log("mx.authenticate-before-write.end", new + { + options.AuthUser, + AuthenticatedUserId = authenticatedUserId, + options.CurrentUserId, + options.VerifierUserId + }); + } + + private static void InvokePostRemoveOperations( + LMXProxyServerClass proxy, + int sessionHandle, + string tag, + int itemHandle, + Options options) + { + Log("mx.post-remove.remove.begin", new { Tag = tag, ItemHandle = itemHandle }); + proxy.RemoveItem(sessionHandle, itemHandle); + Log("mx.post-remove.remove.end", new { Tag = tag, ItemHandle = itemHandle }); + + TryLogOperation("mx.post-remove.advise", tag, itemHandle, () => proxy.Advise(sessionHandle, itemHandle)); + TryLogOperation("mx.post-remove.advise-supervisory", tag, itemHandle, () => proxy.AdviseSupervisory(sessionHandle, itemHandle)); + TryLogOperation("mx.post-remove.unadvise", tag, itemHandle, () => proxy.UnAdvise(sessionHandle, itemHandle)); + TryLogOperation("mx.post-remove.write", tag, itemHandle, () => proxy.Write(sessionHandle, itemHandle, options.GetWriteValue(), options.UserId)); + TryLogOperation("mx.post-remove.write2", tag, itemHandle, () => proxy.Write2(sessionHandle, itemHandle, options.GetWriteValue(), options.GetWriteTimestamp(), options.UserId)); + TryLogOperation("mx.post-remove.suspend", tag, itemHandle, () => + { + MxStatus status; + proxy.Suspend(sessionHandle, itemHandle, out status); + Log("mx.post-remove.suspend.status", new { Tag = tag, ItemHandle = itemHandle, Status = DescribeStatus(status) }); + }); + TryLogOperation("mx.post-remove.activate", tag, itemHandle, () => + { + MxStatus status; + proxy.Activate(sessionHandle, itemHandle, out status); + Log("mx.post-remove.activate.status", new { Tag = tag, ItemHandle = itemHandle, Status = DescribeStatus(status) }); + }); + TryLogOperation("mx.post-remove.remove-again", tag, itemHandle, () => proxy.RemoveItem(sessionHandle, itemHandle)); + } + + private static void InvokeInvalidHandleOperations( + LMXProxyServerClass proxy, + int sessionHandle, + string tag, + int itemHandle, + Options options) + { + int invalidServerHandle = sessionHandle + 1000; + int crossServerHandle = 0; + try + { + Log("mx.invalid-handle.cross-register.begin", new { ClientName = options.ClientName + ".Cross" }); + crossServerHandle = proxy.Register(options.ClientName + ".Cross"); + Log("mx.invalid-handle.cross-register.end", new { SessionHandle = crossServerHandle }); + + TryLogOperation("mx.invalid-handle.additem-invalid-server", tag, itemHandle, () => + { + int added = proxy.AddItem(invalidServerHandle, tag); + Log("mx.invalid-handle.additem-invalid-server.item", new { AddedItemHandle = added }); + }); + TryLogOperation("mx.invalid-handle.additem2-invalid-server", tag, itemHandle, () => + { + int added = proxy.AddItem2(invalidServerHandle, tag, options.ItemContext); + Log("mx.invalid-handle.additem2-invalid-server.item", new { AddedItemHandle = added }); + }); + TryLogOperation("mx.invalid-handle.remove-invalid-server", tag, itemHandle, () => proxy.RemoveItem(invalidServerHandle, itemHandle)); + TryLogOperation("mx.invalid-handle.advise-invalid-server", tag, itemHandle, () => proxy.Advise(invalidServerHandle, itemHandle)); + TryLogOperation("mx.invalid-handle.advise-supervisory-invalid-server", tag, itemHandle, () => proxy.AdviseSupervisory(invalidServerHandle, itemHandle)); + TryLogOperation("mx.invalid-handle.unadvise-invalid-server", tag, itemHandle, () => proxy.UnAdvise(invalidServerHandle, itemHandle)); + TryLogOperation("mx.invalid-handle.write-invalid-server", tag, itemHandle, () => proxy.Write(invalidServerHandle, itemHandle, options.GetWriteValue(), options.UserId)); + TryLogOperation("mx.invalid-handle.write2-invalid-server", tag, itemHandle, () => proxy.Write2(invalidServerHandle, itemHandle, options.GetWriteValue(), options.GetWriteTimestamp(), options.UserId)); + TryLogOperation("mx.invalid-handle.suspend-invalid-server", tag, itemHandle, () => + { + MxStatus status; + proxy.Suspend(invalidServerHandle, itemHandle, out status); + Log("mx.invalid-handle.suspend-invalid-server.status", new { Status = DescribeStatus(status) }); + }); + TryLogOperation("mx.invalid-handle.activate-invalid-server", tag, itemHandle, () => + { + MxStatus status; + proxy.Activate(invalidServerHandle, itemHandle, out status); + Log("mx.invalid-handle.activate-invalid-server.status", new { Status = DescribeStatus(status) }); + }); + TryLogOperation("mx.invalid-handle.unregister-invalid-server", tag, itemHandle, () => proxy.Unregister(invalidServerHandle)); + + TryLogOperation("mx.invalid-handle.remove-cross-server", tag, itemHandle, () => proxy.RemoveItem(crossServerHandle, itemHandle)); + TryLogOperation("mx.invalid-handle.advise-cross-server", tag, itemHandle, () => proxy.Advise(crossServerHandle, itemHandle)); + TryLogOperation("mx.invalid-handle.write-cross-server", tag, itemHandle, () => proxy.Write(crossServerHandle, itemHandle, options.GetWriteValue(), options.UserId)); + } + finally + { + if (crossServerHandle != 0) + { + TryLogOperation("mx.invalid-handle.cross-unregister", tag, itemHandle, () => proxy.Unregister(crossServerHandle)); + } + } + } + + private static void TryLogOperation(string eventName, string tag, int itemHandle, Action action) + { + try + { + Log(eventName + ".begin", new { Tag = tag, ItemHandle = itemHandle }); + action(); + Log(eventName + ".end", new { Tag = tag, ItemHandle = itemHandle }); + } + catch (Exception ex) + { + LogException(eventName + ".error", ex, new { Tag = tag, ItemHandle = itemHandle }); + } + } + + private static void InvokeExternalWrite( + LMXProxyServerClass proxy, + int bufferedSessionHandle, + string tag, + object writeValue, + Options options) + { + var writerSessionHandle = 0; + var writerItemHandle = 0; + try + { + Log("mx.writer-register.begin", new { ClientName = options.ClientName + ".Writer" }); + writerSessionHandle = proxy.Register(options.ClientName + ".Writer"); + Log("mx.writer-register.end", new { SessionHandle = writerSessionHandle }); + + if (!string.IsNullOrWhiteSpace(options.ItemContext)) + { + var fullTag = options.ItemContext + "." + tag; + Log("mx.writer-additem.begin", new { Tag = fullTag }); + writerItemHandle = proxy.AddItem(writerSessionHandle, fullTag); + Log("mx.writer-additem.end", new { Tag = fullTag, ItemHandle = writerItemHandle }); + } + else + { + Log("mx.writer-additem.begin", new { Tag = tag }); + writerItemHandle = proxy.AddItem(writerSessionHandle, tag); + Log("mx.writer-additem.end", new { Tag = tag, ItemHandle = writerItemHandle }); + } + + Log("mx.writer-advise-supervisory.begin", new { Tag = tag, ItemHandle = writerItemHandle }); + proxy.AdviseSupervisory(writerSessionHandle, writerItemHandle); + Log("mx.writer-advise-supervisory.end", new { Tag = tag, ItemHandle = writerItemHandle }); + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteDelayMilliseconds)); + + Log("mx.writer-write.begin", new + { + BufferedSessionHandle = bufferedSessionHandle, + WriterSessionHandle = writerSessionHandle, + Tag = tag, + ItemHandle = writerItemHandle, + Value = DescribeVariant(writeValue), + options.UserId + }); + proxy.Write(writerSessionHandle, writerItemHandle, writeValue, options.UserId); + Log("mx.writer-write.end", new { Tag = tag, ItemHandle = writerItemHandle }); + SleepWithMessagePump(TimeSpan.FromMilliseconds(options.WriteIntervalMilliseconds)); + } + finally + { + if (writerItemHandle != 0) + { + try + { + Log("mx.writer-unadvise.begin", new { Tag = tag, ItemHandle = writerItemHandle }); + proxy.UnAdvise(writerSessionHandle, writerItemHandle); + Log("mx.writer-unadvise.end", new { Tag = tag, ItemHandle = writerItemHandle }); + } + catch (Exception ex) + { + LogException("mx.writer-unadvise.error", ex, new { Tag = tag, ItemHandle = writerItemHandle }); + } + + try + { + Log("mx.writer-removeitem.begin", new { Tag = tag, ItemHandle = writerItemHandle }); + proxy.RemoveItem(writerSessionHandle, writerItemHandle); + Log("mx.writer-removeitem.end", new { Tag = tag, ItemHandle = writerItemHandle }); + } + catch (Exception ex) + { + LogException("mx.writer-removeitem.error", ex, new { Tag = tag, ItemHandle = writerItemHandle }); + } + } + + if (writerSessionHandle != 0) + { + try + { + Log("mx.writer-unregister.begin", new { SessionHandle = writerSessionHandle }); + proxy.Unregister(writerSessionHandle); + Log("mx.writer-unregister.end", new { SessionHandle = writerSessionHandle }); + } + catch (Exception ex) + { + LogException("mx.writer-unregister.error", ex, new { SessionHandle = writerSessionHandle }); + } + } + } + } + + private static void OnWriteComplete(int hLMXServerHandle, int phItemHandle, ref MXSTATUS_PROXY[] pVars) + { + Log("mx.event.write-complete", new + { + SessionHandle = hLMXServerHandle, + ItemHandle = phItemHandle, + Status = DescribeStatus(pVars) + }); + } + + private static void OnOperationComplete(int hLMXServerHandle, int phItemHandle, ref MXSTATUS_PROXY[] pVars) + { + Log("mx.event.operation-complete", new + { + SessionHandle = hLMXServerHandle, + ItemHandle = phItemHandle, + Status = DescribeStatus(pVars) + }); + } + + private static void OnBufferedDataChange( + int hLMXServerHandle, + int phItemHandle, + MxDataType dtDataType, + object pvItemValue, + object pwItemQuality, + object pftItemTimeStamp, + ref MXSTATUS_PROXY[] pVars) + { + Log("mx.event.buffered-data-change", new + { + SessionHandle = hLMXServerHandle, + ItemHandle = phItemHandle, + DataType = dtDataType.ToString(), + Value = DescribeVariant(pvItemValue), + Quality = DescribeVariant(pwItemQuality), + Timestamp = DescribeVariant(pftItemTimeStamp), + Status = DescribeStatus(pVars) + }); + } + + private static object DescribeVariant(object? value) + { + if (value is null) return new { Type = "null", Value = (string?)null }; + if (value is Array array) + { + var values = array.Cast().Take(16).Select(x => x?.ToString()).ToArray(); + return new { Type = value.GetType().FullName, Length = array.Length, Values = values }; + } + + return new { Type = value.GetType().FullName, Value = Convert.ToString(value, CultureInfo.InvariantCulture) }; + } + + private static object[] DescribeStatus(MXSTATUS_PROXY[]? statuses) + { + if (statuses is null) return Array.Empty(); + return statuses.Select(s => new + { + Success = s.success, + Category = s.category.ToString(), + Source = s.detectedBy.ToString(), + Detail = s.detail + }).Cast().ToArray(); + } + + private static object DescribeStatus(MxStatus status) + { + return new + { + Success = status.success, + Category = status.category.ToString(), + Source = status.detectedBy.ToString(), + Detail = status.detail + }; + } + + private static void SleepWithMessagePump(TimeSpan duration) + { + var until = Stopwatch.StartNew(); + while (until.Elapsed < duration) + { + Thread.Sleep(50); + System.Windows.Forms.Application.DoEvents(); + } + } + + private static void Log(string eventName, object payload) + { + lock (LogLock) + { + _log?.WriteLine($"{DateTimeOffset.UtcNow:O}\t{eventName}\t{ToJson(payload)}"); + } + } + + private static void LogException(string eventName, Exception ex, object payload) + { + Log(eventName, new + { + Payload = payload, + Exception = ex.GetType().FullName, + ex.Message, + HResult = $"0x{ex.HResult:X8}", + ex.StackTrace + }); + } + + private static string ToJson(object value) + { + var builder = new StringBuilder(); + WriteJson(builder, value, 0); + return builder.ToString(); + } + + private static void WriteJson(StringBuilder builder, object? value, int depth) + { + if (value is null) + { + builder.Append("null"); + return; + } + + if (depth > 8) + { + WriteJsonString(builder, Convert.ToString(value, CultureInfo.InvariantCulture) ?? string.Empty); + return; + } + + switch (value) + { + case string text: + WriteJsonString(builder, text); + return; + case char character: + WriteJsonString(builder, character.ToString()); + return; + case bool boolean: + builder.Append(boolean ? "true" : "false"); + return; + case byte or sbyte or short or ushort or int or uint or long or ulong or float or double or decimal: + builder.Append(Convert.ToString(value, CultureInfo.InvariantCulture)); + return; + case DateTime dateTime: + WriteJsonString(builder, dateTime.ToUniversalTime().ToString("O", CultureInfo.InvariantCulture)); + return; + case DateTimeOffset dateTimeOffset: + WriteJsonString(builder, dateTimeOffset.ToUniversalTime().ToString("O", CultureInfo.InvariantCulture)); + return; + case TimeSpan timeSpan: + WriteJsonString(builder, timeSpan.ToString("c", CultureInfo.InvariantCulture)); + return; + } + + if (value is System.Collections.IEnumerable sequence) + { + builder.Append('['); + var first = true; + foreach (var item in sequence) + { + if (!first) + { + builder.Append(','); + } + + WriteJson(builder, item, depth + 1); + first = false; + } + + builder.Append(']'); + return; + } + + builder.Append('{'); + var properties = value.GetType() + .GetProperties(BindingFlags.Instance | BindingFlags.Public) + .Where(p => p.GetIndexParameters().Length == 0) + .ToArray(); + for (var i = 0; i < properties.Length; i++) + { + if (i > 0) + { + builder.Append(','); + } + + WriteJsonString(builder, properties[i].Name); + builder.Append(':'); + WriteJson(builder, properties[i].GetValue(value), depth + 1); + } + + builder.Append('}'); + } + + private static void WriteJsonString(StringBuilder builder, string value) + { + builder.Append('"'); + foreach (var character in value) + { + switch (character) + { + case '\\': + builder.Append("\\\\"); + break; + case '"': + builder.Append("\\\""); + break; + case '\r': + builder.Append("\\r"); + break; + case '\n': + builder.Append("\\n"); + break; + case '\t': + builder.Append("\\t"); + break; + default: + if (char.IsControl(character)) + { + builder.Append("\\u"); + builder.Append(((int)character).ToString("x4", CultureInfo.InvariantCulture)); + } + else + { + builder.Append(character); + } + + break; + } + } + + builder.Append('"'); + } +} + +internal sealed class Options +{ + public string Scenario { get; private set; } = "subscribe"; + public string ClientName { get; private set; } = "MxProtoTraceHarness"; + public string LogPath { get; private set; } = Path.Combine("captures", "harness.log"); + public int DurationSeconds { get; private set; } = 10; + public string[] Tags { get; private set; } = Array.Empty(); + public string ItemContext { get; private set; } = string.Empty; + public string WriteType { get; private set; } = "string"; + public string WriteValue { get; private set; } = string.Empty; + public string[] WriteValues { get; private set; } = Array.Empty(); + public int UserId { get; private set; } + public int CurrentUserId { get; private set; } + public int VerifierUserId { get; private set; } + public string UserGuid { get; private set; } = string.Empty; + public string AuthUser { get; private set; } = string.Empty; + public string AuthPassword { get; private set; } = string.Empty; + public bool AuthenticateBeforeWrite { get; private set; } + public bool UseAuthenticatedUserAsVerifier { get; private set; } + public bool UsePlainAdvise { get; private set; } + public string WriteTimestamp { get; private set; } = string.Empty; + public int WriteDelayMilliseconds { get; private set; } = 750; + public int WriteIntervalMilliseconds { get; private set; } = 500; + public int BufferedUpdateInterval { get; private set; } = 1000; + public int WriteCount => WriteValues.Length == 0 ? 1 : WriteValues.Length; + public bool IsWriteScenario => + Scenario.Equals("write", StringComparison.OrdinalIgnoreCase) + || Scenario.Equals("write2", StringComparison.OrdinalIgnoreCase) + || Scenario.Equals("write-secured", StringComparison.OrdinalIgnoreCase) + || Scenario.Equals("write-secured2", StringComparison.OrdinalIgnoreCase); + + public bool IsBufferedScenario => + Scenario.Equals("add-buffered", StringComparison.OrdinalIgnoreCase) + || Scenario.Equals("add-buffered-advise", StringComparison.OrdinalIgnoreCase) + || Scenario.Equals("add-buffered-plain-advise", StringComparison.OrdinalIgnoreCase) + || Scenario.Equals("add-buffered-write", StringComparison.OrdinalIgnoreCase) + || Scenario.Equals("buffered-external-write", StringComparison.OrdinalIgnoreCase); + + public static Options Parse(string[] args) + { + var scenario = Get(args, "--scenario") ?? "subscribe"; + var clientName = Get(args, "--client") ?? "MxProtoTraceHarness"; + var logPath = Get(args, "--log") ?? Path.Combine("captures", "harness.log"); + var duration = int.TryParse(Get(args, "--duration"), out var d) ? d : 10; + var writeType = Get(args, "--type") ?? "string"; + var writeValue = Get(args, "--value") ?? string.Empty; + var writeValues = SplitWriteValues(Get(args, "--values")); + var itemContext = Get(args, "--context") ?? Get(args, "--item-context") ?? string.Empty; + var userId = int.TryParse(Get(args, "--user-id"), NumberStyles.Integer, CultureInfo.InvariantCulture, out var uid) + ? uid + : 0; + var currentUserId = int.TryParse(Get(args, "--current-user-id"), NumberStyles.Integer, CultureInfo.InvariantCulture, out var cuid) + ? cuid + : userId; + var verifierUserId = int.TryParse(Get(args, "--verifier-user-id"), NumberStyles.Integer, CultureInfo.InvariantCulture, out var vuid) + ? vuid + : 0; + var userGuid = Get(args, "--user-guid") ?? string.Empty; + var authUser = Get(args, "--auth-user") ?? string.Empty; + var authPassword = Environment.GetEnvironmentVariable("MX_HARNESS_AUTH_PASSWORD") ?? string.Empty; + var authenticateBeforeWrite = HasFlag(args, "--authenticate-before-write"); + var useAuthenticatedUserAsVerifier = HasFlag(args, "--authenticated-user-is-verifier"); + var usePlainAdvise = HasFlag(args, "--plain-advise"); + var writeTimestamp = Get(args, "--write-time") ?? string.Empty; + var writeDelay = int.TryParse(Get(args, "--write-delay-ms"), NumberStyles.Integer, CultureInfo.InvariantCulture, out var delay) + ? delay + : 750; + var writeInterval = int.TryParse(Get(args, "--write-interval-ms"), NumberStyles.Integer, CultureInfo.InvariantCulture, out var interval) + ? interval + : 500; + var bufferedUpdateInterval = int.TryParse(Get(args, "--buffered-update-interval"), NumberStyles.Integer, CultureInfo.InvariantCulture, out var bufferedInterval) + ? bufferedInterval + : 1000; + var tags = args + .Where(a => a.StartsWith("--tag=", StringComparison.OrdinalIgnoreCase)) + .Select(a => a.Substring("--tag=".Length)) + .Where(a => !string.IsNullOrWhiteSpace(a)) + .ToArray(); + + return new Options + { + Scenario = scenario, + ClientName = clientName, + LogPath = logPath, + DurationSeconds = Math.Max(1, duration), + Tags = tags, + ItemContext = itemContext, + WriteType = writeType, + WriteValue = writeValue, + WriteValues = writeValues, + UserId = userId, + CurrentUserId = currentUserId, + VerifierUserId = verifierUserId, + UserGuid = userGuid, + AuthUser = authUser, + AuthPassword = authPassword, + AuthenticateBeforeWrite = authenticateBeforeWrite, + UseAuthenticatedUserAsVerifier = useAuthenticatedUserAsVerifier, + UsePlainAdvise = usePlainAdvise, + WriteTimestamp = writeTimestamp, + WriteDelayMilliseconds = Math.Max(0, writeDelay), + WriteIntervalMilliseconds = Math.Max(0, writeInterval), + BufferedUpdateInterval = Math.Max(1, bufferedUpdateInterval) + }; + } + + public void ApplyAuthenticatedUserId(int userId) + { + CurrentUserId = userId; + if (UseAuthenticatedUserAsVerifier || VerifierUserId < 0) + { + VerifierUserId = userId; + } + } + + public object GetWriteValue() + { + return ParseWriteValue(WriteValue); + } + + public IEnumerable GetWriteValues() + { + if (WriteValues.Length == 0) + { + yield return GetWriteValue(); + yield break; + } + + foreach (var value in WriteValues) + { + yield return ParseWriteValue(value); + } + } + + public object GetWriteTimestamp() + { + if (string.IsNullOrWhiteSpace(WriteTimestamp)) + { + return DateTime.Now; + } + + return DateTime.Parse(WriteTimestamp, CultureInfo.InvariantCulture, DateTimeStyles.AssumeLocal); + } + + private object ParseWriteValue(string value) + { + switch (WriteType.ToLowerInvariant()) + { + case "bool": + case "boolean": + return bool.Parse(value); + case "bool-array": + case "boolean-array": + case "bool[]": + case "boolean[]": + return SplitArray(value).Select(bool.Parse).ToArray(); + case "int": + case "integer": + case "int32": + return int.Parse(value, NumberStyles.Integer, CultureInfo.InvariantCulture); + case "int-array": + case "integer-array": + case "int32-array": + case "int[]": + case "integer[]": + case "int32[]": + return SplitArray(value) + .Select(v => int.Parse(v, NumberStyles.Integer, CultureInfo.InvariantCulture)) + .ToArray(); + case "float": + case "single": + return float.Parse(value, NumberStyles.Float, CultureInfo.InvariantCulture); + case "float-array": + case "single-array": + case "float[]": + case "single[]": + return SplitArray(value) + .Select(v => float.Parse(v, NumberStyles.Float, CultureInfo.InvariantCulture)) + .ToArray(); + case "double": + return double.Parse(value, NumberStyles.Float, CultureInfo.InvariantCulture); + case "double-array": + case "double[]": + return SplitArray(value) + .Select(v => double.Parse(v, NumberStyles.Float, CultureInfo.InvariantCulture)) + .ToArray(); + case "datetime": + case "time": + return DateTime.Parse(value, CultureInfo.InvariantCulture, DateTimeStyles.AssumeLocal); + case "datetime-array": + case "time-array": + case "datetime[]": + case "time[]": + return SplitArray(value) + .Select(v => DateTime.Parse(v, CultureInfo.InvariantCulture, DateTimeStyles.AssumeLocal)) + .ToArray(); + case "string": + return value; + case "string-array": + case "string[]": + return SplitArray(value); + default: + throw new ArgumentException($"Unsupported --type value '{WriteType}'."); + } + } + + private static string[] SplitWriteValues(string? rawValues) + { + if (string.IsNullOrWhiteSpace(rawValues)) + { + return Array.Empty(); + } + + var separator = rawValues!.IndexOf('|') >= 0 ? '|' : ','; + return rawValues + .Split(new[] { separator }, StringSplitOptions.RemoveEmptyEntries) + .Select(v => v.Trim()) + .Where(v => v.Length > 0) + .ToArray(); + } + + private static string[] SplitArray(string value) + { + return value + .Split(new[] { ';' }, StringSplitOptions.None) + .Select(v => v.Trim()) + .ToArray(); + } + + private static string? Get(string[] args, string name) + { + var prefix = name + "="; + return args.FirstOrDefault(a => a.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))?.Substring(prefix.Length); + } + + private static bool HasFlag(string[] args, string name) + { + return args.Any(a => a.Equals(name, StringComparison.OrdinalIgnoreCase)); + } +} diff --git a/src/NmxComHarness/NmxComHarness.csproj b/src/NmxComHarness/NmxComHarness.csproj new file mode 100644 index 0000000..0013160 --- /dev/null +++ b/src/NmxComHarness/NmxComHarness.csproj @@ -0,0 +1,11 @@ + + + Exe + net481 + x86 + true + latest + enable + disable + + diff --git a/src/NmxComHarness/Program.cs b/src/NmxComHarness/Program.cs new file mode 100644 index 0000000..78521f7 --- /dev/null +++ b/src/NmxComHarness/Program.cs @@ -0,0 +1,364 @@ +using System; +using System.Globalization; +using System.Linq; +using System.Diagnostics; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Threading; +using ComTypes = System.Runtime.InteropServices.ComTypes; + +namespace NmxComHarness; + +internal static class Program +{ + [STAThread] + private static int Main(string[] args) + { + var engineId = GetInt(args, "--engine-id") ?? 0x7100; + var engineName = GetString(args, "--engine-name") ?? $"NmxComHarness.{Process.GetCurrentProcess().Id}"; + var version = GetInt(args, "--version") ?? 6; + var holdSeconds = GetInt(args, "--hold-seconds") ?? 1; + var useNullCallback = HasFlag(args, "--null-callback"); + var dumpCallbackObjRef = HasFlag(args, "--dump-callback-objref"); + var selfTransfer = HasFlag(args, "--self-transfer"); + var allowEmptyTransfer = HasFlag(args, "--allow-empty-transfer"); + + Console.WriteLine($"process=x64:{Environment.Is64BitProcess}"); + Console.WriteLine($"engine_id={engineId}"); + Console.WriteLine($"engine_name={engineName}"); + Console.WriteLine($"version={version}"); + Console.WriteLine($"null_callback={useNullCallback}"); + + object? instance = null; + try + { + var type = Type.GetTypeFromProgID("NmxSvc.NmxService", throwOnError: true) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService was not resolved."); + instance = Activator.CreateInstance(type) + ?? throw new InvalidOperationException("ProgID NmxSvc.NmxService activation returned null."); + + var service = (INmxService2)instance; + INmxSvcCallback? callback = useNullCallback ? null : new CallbackSink(); + if (callback is not null && dumpCallbackObjRef) + { + byte[] objref = ComObjRefProvider.MarshalInterfaceObjRef( + callback, + new Guid("B49F92F7-C748-4169-8ECA-A0670B012746"), + ComObjRefProvider.MarshalContextDifferentMachine); + Console.WriteLine($"callback_objref_size={objref.Length}"); + Console.WriteLine($"callback_objref_hex={BitConverter.ToString(objref).Replace("-", string.Empty)}"); + } + + Console.WriteLine("register.begin"); + service.RegisterEngine2(engineId, engineName, version, callback); + Console.WriteLine("register.ok"); + + if (selfTransfer) + { + if (HasFlag(args, "--connect-self")) + { + service.Connect(engineId, 1, 1, engineId); + Console.WriteLine("connect.self.ok"); + } + + if (HasFlag(args, "--add-self-subscriber")) + { + service.AddSubscriberEngine(engineId, 1, 1, engineId); + Console.WriteLine("add-subscriber.self.ok"); + } + + string bodyHex = GetString(args, "--transfer-body-hex") + ?? throw new InvalidOperationException( + "--self-transfer requires --transfer-body-hex with a complete 46-byte NMX envelope plus inner body. " + + "Use --allow-empty-transfer only for controlled size-zero probes."); + byte[] body = ParseHex(bodyHex); + ValidateTransferDataBody(body, allowEmptyTransfer); + if (body.Length == 0) + { + byte empty = 0; + service.TransferData(1, 1, engineId, 0, ref empty); + } + else + { + service.TransferData(1, 1, engineId, body.Length, ref body[0]); + } + Console.WriteLine("transfer.self.ok"); + } + + try + { + service.GetPartnerVersion(1, 1, 0x7ffd, out var partnerVersion); + Console.WriteLine($"partner_version={partnerVersion}"); + } + catch (COMException ex) + { + Console.WriteLine($"partner_version_error=0x{ex.HResult:X8} {ex.Message}"); + } + + Thread.Sleep(TimeSpan.FromSeconds(Math.Max(0, holdSeconds))); + + Console.WriteLine("unregister.begin"); + service.UnRegisterEngine(engineId); + Console.WriteLine("unregister.ok"); + return 0; + } + catch (COMException ex) + { + Console.Error.WriteLine($"com_error=0x{ex.HResult:X8} {ex.Message}"); + return 2; + } + catch (Exception ex) + { + Console.Error.WriteLine($"{ex.GetType().FullName}: {ex.Message}"); + return 1; + } + finally + { + if (instance is not null && Marshal.IsComObject(instance)) + { + while (Marshal.ReleaseComObject(instance) > 0) + { + } + } + } + } + + private static string? GetString(string[] args, string name) + { + var prefix = name + "="; + var match = args.FirstOrDefault(arg => arg.StartsWith(prefix, StringComparison.OrdinalIgnoreCase)); + return match is null ? null : match.Substring(prefix.Length); + } + + private static int? GetInt(string[] args, string name) + { + var raw = GetString(args, name); + if (string.IsNullOrWhiteSpace(raw)) + { + return null; + } + + return raw!.StartsWith("0x", StringComparison.OrdinalIgnoreCase) + ? int.Parse(raw.Substring(2), NumberStyles.HexNumber, CultureInfo.InvariantCulture) + : int.Parse(raw, CultureInfo.InvariantCulture); + } + + private static bool HasFlag(string[] args, string name) + { + return args.Any(arg => arg.Equals(name, StringComparison.OrdinalIgnoreCase)); + } + + private static void ValidateTransferDataBody(byte[] body, bool allowEmptyTransfer) + { + const int headerLength = 46; + const int innerLengthOffset = 2; + + if (body.Length == 0) + { + if (allowEmptyTransfer) + { + return; + } + + throw new ArgumentException("TransferData body cannot be empty without --allow-empty-transfer."); + } + + if (body.Length < headerLength) + { + throw new ArgumentException($"TransferData body must be at least {headerLength} bytes."); + } + + int innerLength = BitConverter.ToInt32(body, innerLengthOffset); + int expectedInnerLength = body.Length - headerLength; + if (innerLength != expectedInnerLength) + { + throw new ArgumentException( + $"TransferData envelope declares inner length {innerLength}, but body length {body.Length} requires {expectedInnerLength}."); + } + + if (innerLength == 0 && !allowEmptyTransfer) + { + throw new ArgumentException("TransferData body must include an inner message after the 46-byte envelope."); + } + } + + private static byte[] ParseHex(string hex) + { + string compact = new string(hex.Where(static ch => !char.IsWhiteSpace(ch)).ToArray()); + if ((compact.Length % 2) != 0) + { + throw new FormatException("Hex string must contain an even number of digits."); + } + + byte[] bytes = new byte[compact.Length / 2]; + for (int i = 0; i < bytes.Length; i++) + { + bytes[i] = byte.Parse(compact.Substring(i * 2, 2), NumberStyles.HexNumber, CultureInfo.InvariantCulture); + } + + return bytes; + } +} + +internal static class ComObjRefProvider +{ + public const uint MarshalContextDifferentMachine = 2; + + public static byte[] MarshalInterfaceObjRef(object comObject, Guid iid, uint destinationContext) + { + IntPtr unknown = IntPtr.Zero; + ComTypes.IStream? stream = null; + + try + { + unknown = Marshal.GetIUnknownForObject(comObject); + Marshal.ThrowExceptionForHR(CreateStreamOnHGlobal(IntPtr.Zero, true, out stream)); + Marshal.ThrowExceptionForHR(CoMarshalInterface(stream, ref iid, unknown, destinationContext, IntPtr.Zero, 0)); + Marshal.ThrowExceptionForHR(GetHGlobalFromStream(stream, out var hglobal)); + + uint size = GlobalSize(hglobal); + IntPtr pointer = GlobalLock(hglobal); + if (pointer == IntPtr.Zero) + { + throw new InvalidOperationException("GlobalLock failed."); + } + + try + { + byte[] buffer = new byte[(int)size]; + Marshal.Copy(pointer, buffer, 0, buffer.Length); + return buffer; + } + finally + { + GlobalUnlock(hglobal); + } + } + finally + { + if (unknown != IntPtr.Zero) + { + Marshal.Release(unknown); + } + + if (stream is not null) + { + Marshal.ReleaseComObject(stream); + } + } + } + + [DllImport("ole32.dll")] + private static extern int CreateStreamOnHGlobal(IntPtr hGlobal, [MarshalAs(UnmanagedType.Bool)] bool deleteOnRelease, out ComTypes.IStream stream); + + [DllImport("ole32.dll")] + private static extern int CoMarshalInterface(ComTypes.IStream stream, ref Guid iid, IntPtr unknown, uint destinationContext, IntPtr destinationContextPointer, uint marshalFlags); + + [DllImport("ole32.dll")] + private static extern int GetHGlobalFromStream(ComTypes.IStream stream, out IntPtr hGlobal); + + [DllImport("kernel32.dll", SetLastError = true)] + private static extern IntPtr GlobalLock(IntPtr hMem); + + [DllImport("kernel32.dll", SetLastError = true)] + private static extern bool GlobalUnlock(IntPtr hMem); + + [DllImport("kernel32.dll", SetLastError = true)] + private static extern uint GlobalSize(IntPtr hMem); +} + +[ComImport] +[Guid("AE24BD51-2E80-44CC-905B-E5446C942BEB")] +[ClassInterface(ClassInterfaceType.None)] +internal sealed class NmxServiceClass +{ +} + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("575008DB-845D-46C6-A906-F6F8CA86F315")] +internal interface INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine(int engineId, [MarshalAs(UnmanagedType.BStr)] string engineName, [MarshalAs(UnmanagedType.Interface)] INmxSvcCallback? callback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void UnRegisterEngine(int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, int size, ref byte messageBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void AddSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RemoveSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks); +} + +[ComImport] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("2630A513-A974-4B1A-8025-457A9A7C56B8")] +internal interface INmxService2 : INmxService +{ + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RegisterEngine(int engineId, [MarshalAs(UnmanagedType.BStr)] string engineName, [MarshalAs(UnmanagedType.Interface)] INmxSvcCallback? callback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void UnRegisterEngine(int engineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void Connect(int localEngineId, int remoteGalaxyId, int remotePlatformId, int remoteEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void TransferData(int remoteGalaxyId, int remotePlatformId, int remoteEngineId, int size, ref byte messageBody); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void AddSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void RemoveSubscriberEngine(int localEngineId, int subscriberGalaxyId, int subscriberPlatformId, int subscriberEngineId); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + new void SetHeartbeatSendInterval(int ticksPerBeat, int maxMissedTicks); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void RegisterEngine2(int engineId, [MarshalAs(UnmanagedType.BStr)] string engineName, int version, [MarshalAs(UnmanagedType.Interface)] INmxSvcCallback? callback); + + [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + void GetPartnerVersion(int galaxyId, int platformId, int engineId, out int version); +} + +[ComVisible(true)] +[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] +[Guid("B49F92F7-C748-4169-8ECA-A0670B012746")] +public interface INmxSvcCallback +{ + [PreserveSig] + int DataReceived(int bufferSize, ref sbyte dataBuffer); + + [PreserveSig] + int StatusReceived(int bufferSize, ref sbyte statusBuffer); +} + +[ComVisible(true)] +[ClassInterface(ClassInterfaceType.None)] +public sealed class CallbackSink : INmxSvcCallback +{ + public int DataReceived(int bufferSize, ref sbyte dataBuffer) + { + Console.WriteLine($"callback.data size={bufferSize}"); + return 0; + } + + public int StatusReceived(int bufferSize, ref sbyte statusBuffer) + { + Console.WriteLine($"callback.status size={bufferSize}"); + return 0; + } +} diff --git a/tools/Compute-Crc.ps1 b/tools/Compute-Crc.ps1 new file mode 100644 index 0000000..37f1073 --- /dev/null +++ b/tools/Compute-Crc.ps1 @@ -0,0 +1,15 @@ +# One-shot parity helper: prints CRC-16/IBM signatures for sample names using +# the .NET reference's `MxReferenceHandle.ComputeNameSignature`. Used to +# cross-validate the Rust codec port (`mxaccess-codec/src/reference_handle.rs`). + +$dll = 'C:\Users\dohertj2\Desktop\mxaccess\src\MxNativeCodec\bin\Debug\net10.0\MxNativeCodec.dll' +if (-not (Test-Path $dll)) { + Write-Error "MxNativeCodec.dll not found at $dll. Run: dotnet build src\MxNativeCodec\MxNativeCodec.csproj" + exit 1 +} + +Add-Type -Path $dll +foreach ($name in @('TestObject','TestInt','$Object','a','TestChildObject','testobject','TESTOBJECT')) { + $sig = [MxNativeCodec.MxReferenceHandle]::ComputeNameSignature($name) + Write-Output ("{0,-20} = 0x{1:X4}" -f $name, $sig) +} diff --git a/tools/Setup-LiveProbeEnv.ps1 b/tools/Setup-LiveProbeEnv.ps1 new file mode 100644 index 0000000..8b55c21 --- /dev/null +++ b/tools/Setup-LiveProbeEnv.ps1 @@ -0,0 +1,121 @@ +# Setup-LiveProbeEnv.ps1 — populate the env vars the mxaccess Rust port's +# `live`-feature integration tests and probes expect, fetching credentials +# from the homelab Infisical instance via wwtools/secrets/Get-Secret.ps1. +# +# Usage: +# . .\tools\Setup-LiveProbeEnv.ps1 # dot-source — env vars persist in the calling session +# . .\tools\Setup-LiveProbeEnv.ps1 -SkipAsbSecret # no Infisical lookup for ASB shared secret (CI/dev fallback) +# .\tools\Setup-LiveProbeEnv.ps1 -DryRun # print what would be set without exporting +# +# Hard rules (per design/00-overview.md "Adjacent tooling" section): +# - Credentials are fetched via `wwtools\secrets\Get-Secret.ps1`, which logs +# into Infisical fresh on each call (DPAPI session storage doesn't survive +# non-interactive contexts). +# - We never inline plaintext secrets here. New AVEVA-specific secrets go +# into Infisical at `homelab/aveva/system-platform/` (suggested path). +# - Sets `MX_LIVE=1` to enable the `live` feature gate in cargo tests. +# +# Env vars set: +# MX_LIVE — "1", enables the `live` cargo feature +# MX_NMX_HOST — NMX hostname (default: localhost) +# MX_GALAXY_DB — tiberius / SQL Server connection string with integrated security +# MX_GALAXY_NAME — Galaxy name (default: $env:MX_GALAXY_NAME or 'ZB' from wwtools/grdb) +# MX_TEST_USER — fetched from Infisical: homelab/infrastructure/windows-hosts/WW_VM_ADMIN_USER +# MX_TEST_DOMAIN — fetched from Infisical: ...WW_VM_ADMIN_DOMAIN +# MX_TEST_PASSWORD — fetched from Infisical: ...WW_VM_ADMIN_PWD +# MX_ASB_SHARED_SECRET — fetched from Infisical: homelab/aveva/system-platform/ASB_SHARED_SECRET +# (TODO: add this entry to Infisical — currently optional with -SkipAsbSecret) + +[CmdletBinding()] +param( + [string]$NmxHost = 'localhost', + [string]$GalaxyName = $(if ($env:MX_GALAXY_NAME) { $env:MX_GALAXY_NAME } else { 'ZB' }), + [string]$GalaxyServer = 'localhost', + [switch]$SkipAsbSecret, + [switch]$DryRun +) + +$ErrorActionPreference = 'Stop' + +$GetSecret = 'C:\Users\dohertj2\Desktop\wwtools\secrets\Get-Secret.ps1' +if (-not (Test-Path $GetSecret)) { + throw "Get-Secret.ps1 not found at $GetSecret. wwtools must be installed at C:\Users\dohertj2\Desktop\wwtools per design/00-overview.md 'Adjacent tooling' section." +} + +# Hydrate User-scope env vars into Process scope. Necessary in non-interactive +# contexts (Bash → pwsh, scheduled tasks, CI runners) where the User-scope +# block from HKCU\Environment is not auto-merged into the process env. +foreach ($name in @('INFISICAL_API_URL','INFISICAL_UNIVERSAL_AUTH_CLIENT_ID','INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET')) { + if (-not (Get-Item -Path "Env:$name" -ErrorAction SilentlyContinue)) { + $userValue = [Environment]::GetEnvironmentVariable($name, 'User') + if ($userValue) { + Set-Item -Path "Env:$name" -Value $userValue + } + } +} + +function Set-LiveEnvVar { + param([string]$Name, [string]$Value, [switch]$Sensitive) + $display = if ($Sensitive) { '***redacted***' } else { $Value } + if ($DryRun) { + Write-Host "[DRY] $Name = $display" -ForegroundColor Yellow + } else { + Set-Item -Path "Env:$Name" -Value $Value + Write-Host "[SET] $Name = $display" -ForegroundColor Green + } +} + +function Get-InfisicalSecret { + param([string]$Key, [string]$Env = 'infrastructure', [string]$Path = '/windows-hosts') + try { + $value = & $GetSecret -Key $Key -Env $Env -Path $Path 2>&1 + if ($LASTEXITCODE -ne 0 -or -not $value) { + throw "Get-Secret returned empty for $Env$Path/$Key (exit code $LASTEXITCODE)" + } + # Trim any trailing whitespace from the CLI output + return ($value | Out-String).Trim() + } catch { + throw "Failed to fetch $Env$Path/$Key from Infisical: $_" + } +} + +Write-Host "mxaccess live-probe env setup" -ForegroundColor Cyan +Write-Host " source: wwtools/secrets/Get-Secret.ps1 -> https://infisical.dohertylan.com" -ForegroundColor DarkGray +Write-Host "" + +# Non-secret env vars +Set-LiveEnvVar -Name 'MX_LIVE' -Value '1' +Set-LiveEnvVar -Name 'MX_NMX_HOST' -Value $NmxHost +Set-LiveEnvVar -Name 'MX_GALAXY_NAME' -Value $GalaxyName +$galaxyDb = "Server=$GalaxyServer;Database=$GalaxyName;Integrated Security=True;TrustServerCertificate=True" +Set-LiveEnvVar -Name 'MX_GALAXY_DB' -Value $galaxyDb + +# Secret-backed env vars +Write-Host "" +Write-Host "Fetching credentials from Infisical..." -ForegroundColor Cyan + +$user = Get-InfisicalSecret -Key 'WW_VM_ADMIN_USER' +Set-LiveEnvVar -Name 'MX_TEST_USER' -Value $user + +$domain = Get-InfisicalSecret -Key 'WW_VM_ADMIN_DOMAIN' +Set-LiveEnvVar -Name 'MX_TEST_DOMAIN' -Value $domain + +$password = Get-InfisicalSecret -Key 'WW_VM_ADMIN_PWD' +Set-LiveEnvVar -Name 'MX_TEST_PASSWORD' -Value $password -Sensitive + +if ($SkipAsbSecret) { + Write-Host "[SKIP] MX_ASB_SHARED_SECRET (use AsbCredentials::shared_secret(&[u8]) constructor or set manually)" -ForegroundColor Yellow +} else { + try { + $asbSecret = Get-InfisicalSecret -Key 'ASB_SHARED_SECRET' -Env 'aveva' -Path '/system-platform' + Set-LiveEnvVar -Name 'MX_ASB_SHARED_SECRET' -Value $asbSecret -Sensitive + } catch { + Write-Warning "MX_ASB_SHARED_SECRET not yet in Infisical. Add it at homelab/aveva/system-platform/ASB_SHARED_SECRET, or rerun with -SkipAsbSecret. Underlying error: $_" + Set-LiveEnvVar -Name 'MX_ASB_SHARED_SECRET' -Value '' -Sensitive + } +} + +Write-Host "" +Write-Host "Done. Live-probe env is ready." -ForegroundColor Green +Write-Host " Run cargo tests with the 'live' feature: cargo test -p mxaccess --features live -- --ignored" -ForegroundColor DarkGray +Write-Host " Run a probe example: cargo run -p mxaccess --example session-write" -ForegroundColor DarkGray diff --git a/tools/platform-remover/PlatformRemover(2016).zip b/tools/platform-remover/PlatformRemover(2016).zip new file mode 100644 index 0000000..498fd82 Binary files /dev/null and b/tools/platform-remover/PlatformRemover(2016).zip differ diff --git a/tools/platform-remover/PlatformRemover(2016)/AdvLogger.dll b/tools/platform-remover/PlatformRemover(2016)/AdvLogger.dll new file mode 100644 index 0000000..b342365 Binary files /dev/null and b/tools/platform-remover/PlatformRemover(2016)/AdvLogger.dll differ diff --git a/tools/platform-remover/PlatformRemover(2016)/Platform Remover.exe b/tools/platform-remover/PlatformRemover(2016)/Platform Remover.exe new file mode 100644 index 0000000..34c1555 Binary files /dev/null and b/tools/platform-remover/PlatformRemover(2016)/Platform Remover.exe differ diff --git a/tools/platform-remover/platform-remover-box-page.html b/tools/platform-remover/platform-remover-box-page.html new file mode 100644 index 0000000..2acb9b5 --- /dev/null +++ b/tools/platform-remover/platform-remover-box-page.html @@ -0,0 +1,24 @@ + Box + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/work_remain.md b/work_remain.md new file mode 100644 index 0000000..3b421f7 --- /dev/null +++ b/work_remain.md @@ -0,0 +1,232 @@ +# Core Remaining Work + +## Current Baseline + +The pure managed .NET 10 x64 ASB path is feasible and live-proven. It can: + +- read the ASB solution shared secret through DPAPI, +- authenticate to the live `IASBIDataV2` net.tcp endpoint, +- register/read `TestChildObject.TestInt`, +- reject null public collection arguments before touching client state in the + main multi-item APIs, +- decode/read/write the core scalar and array ASB type matrix, +- write `Int32` values and read them back, +- write through either positional write parameters or `AsbWriteOptions`, +- poll `PublishWriteComplete` for write completion, +- create a subscription, add monitored items, publish updates, and delete the + monitored items/subscription, +- configure subscription creation and monitored-item registration through + stable option records while preserving the original positional overloads, +- map publish responses into callback-ready values with decoded value, + timestamp, quality, ASB status elements, and item-id-to-tag-name resolution, +- expose publish result summaries and value-presence helpers alongside the raw + publish response and mapped values, +- expose derived publish/data-change status summaries and item-status array + summary mapping while preserving raw statuses, +- raise mapped publish updates through the `MxAsbClient` `PublishedValueReceived` + event, +- adapt ASB publish updates into an MXAccess-like server/item-handle + `DataChanged` facade, +- advise compatibility items through either positional subscription parameters + or the shaped `AsbSubscriptionOptions` / `AsbMonitoredItemOptions` overload, +- map known ASB global and item error codes to named `AsbErrorCode` values, +- summarize ASB status payload quality/category/detail while preserving raw + unknown values, +- wait for async write completion by handle with timeout, poll interval, and + optional delayed readback without retrying the write, +- cancel write-completion polling before the next poll or during polling/ + readback delays through `AsbWriteCompletionOptions.CancellationToken`, +- perform idempotent best-effort ASB cleanup with signed `Disconnect`, + independent channel/factory close-or-abort handling, and cleanup result + reporting, +- explicitly reconnect by cleaning up the current ASB channel, retrying + connection creation with caller-controlled attempts/delay, returning a fresh + client, and preserving attempt plus cleanup evidence without replaying + operations, +- connect through a stable `AsbConnectionOptions` API object with early + endpoint validation and matching compatibility-server register/advise + options overloads, +- keep payload serialization diagnostics out of the public API surface while + retaining friend-only probe/test access, +- bound ASB cleanup disconnect and close operations with caller-controlled + timeouts, +- cancel ASB cleanup before graceful disconnect/close by aborting local + channel/factory objects when the cleanup token is already canceled, +- live-prove canceled cleanup on an opened ASB connection, including skipped + disconnect, local channel/factory abort, and `RequiresNewConnection`, +- test cleanup partial-failure behavior for closed objects, faulted objects, + close failure with abort fallback, abort failure reporting, and configured + close timeout propagation, +- capture safe connection-failure evidence for refused ASB endpoints without + destabilizing the live provider, +- clean up partially-created WCF channel/factory objects when ASB connection + setup fails before a disposable client is returned, +- match installed AVEVA proxy behavior for `UnregisterItems`, +- register/read multiple tags in one request. +- document the supported ASB `Variant` wire format, scalar/array payload + layouts, timestamp/duration handling, and quality/status payload parsing in + `docs\ASB-Variant-Wire-Format.md`, +- document the recommended ASB/native integration boundary and staged migration + in `docs\ASB-Native-Integration-Decision.md`. + +## Recent NMX Warning Triage + +System Platform warning: + +```text +NMX Header ... buffer size pktHeader.dwDataSize 381 doesn't match received message size of 46 +``` + +The warning is emitted by `NmxAdptr.dll` in the `ProcessDataReceived` path, not +by the pure ASB client. The `46` byte received size matches the standalone NMX +`TransferData` envelope size. A valid `TransferData` operation must send the +46-byte envelope plus the declared inner body; if the service receives only the +envelope, or any envelope whose inner-length field does not match the actual +body length, the adapter logs this class of header-size warning. + +Mitigation now applied: + +- `src\NmxComHarness` no longer sends a default self-transfer body. The + `--self-transfer` path requires explicit `--transfer-body-hex`, validates the + 46-byte envelope length field, and rejects empty/header-only transfers unless + `--allow-empty-transfer` is explicitly supplied for a controlled probe. +- `src\MxNativeClient` validates low-level `TransferData` bodies before sending + through both COM and managed DCE/RPC paths. +- `src\MxNativeClient.Probe` now requires explicit validated + `--transfer-body-hex` for managed `TransferData` probes. + +Build/test verification after mitigation: + +- `dotnet build src\NmxComHarness\NmxComHarness.csproj` +- `dotnet build src\MxNativeClient\MxNativeClient.csproj` +- `dotnet build src\MxNativeClient.Probe\MxNativeClient.Probe.csproj` +- `dotnet run --project src\MxNativeClient.Tests\MxNativeClient.Tests.csproj` +- `dotnet run --project src\MxNativeCodec.Tests\MxNativeCodec.Tests.csproj` + +## Remaining Core Work + +1. ASB type matrix + - Core scalar/array decode, live read, and live write coverage is complete for Boolean, Int32, Float, Double, String, DateTime, Duration, and deployed array tags. + - Remaining work is adding less common ASB types only as needed by real deployed tags. + - ASB variant type IDs, payload layout, timestamp handling, duration handling, + and quality/status payload parsing are documented in + `docs\ASB-Variant-Wire-Format.md`. + +2. ASB subscriptions and publish + - `CreateSubscription`, `AddMonitoredItems`, `Publish`, `DeleteMonitoredItems`, and `DeleteSubscription` are implemented and live-proven. + - `AsbSubscriptionOptions` and `AsbMonitoredItemOptions` now provide stable + option-object overloads for subscription creation and monitored-item + registration. + - Mapped publish updates are exposed through a .NET event and a handle-based data-change facade. + - The compatibility `Advise` facade also accepts + `AsbSubscriptionOptions` and `AsbMonitoredItemOptions`; the probe path can + exercise this options overload and live compatibility subscribe has been + verified through it. + - `AsbPublishResult` now carries a derived result summary and `HasValues` + helper while retaining the raw `PublishResponse`. + - `AsbPublishedValue` and `MxAsbDataChangeEvent` expose derived + `StatusSummary` helpers for callers that want named status categories + without losing raw status elements. + - Item identity mapping and basic cleanup behavior are live-proven; continue validating callback/update ordering under churn. + +3. Status and error mapping + - Success-path publish quality/status decoding is implemented for ASB status elements, including `MxQuality`. + - Named global/item ASB error-code mapping is implemented, and live probes cover `InvalidMonitoredItems`, `OperationFailed`, `MonitoredItemsNotFound`, `WriteFailedBadTypeMismatch`, invalid subscription delete global `0x000C`, publish `0x0020`, and bad-quality value status. + - Status summaries classify good/uncertain/bad quality, known MX status categories, request timeout detail, and platform/no-communication detail. + - Broaden remaining live non-success ASB `ArchestrAError`, item status, quality bytes, and known detail cases into the managed status model when safe source conditions are available, especially access denied and no communication. + - Safe current-VM probes did not produce access denied or no communication: + same-value direct ASB writes to secured/verified booleans succeeded, and a + read-only sweep of 20 protected-value tags returned good quality. + - Preserve unknown payloads without guessing. + - Tests now cover success, invalid item, wrong-type write completion, + invalid cleanup evidence inputs, access denied, timeout, no communication, + and async write completion statuses. + +4. Write variants + - Core scalar and deployed array writes are live-proven beyond basic `Int32`. + - `AsbWriteOptions` now provides an option-object overload for basic writes + while preserving the existing positional overloads. + - Add timestamp/status/comment handling where the provider supports it. + - Write completion polling by handle with timeout, optional delayed readback, + option validation, and caller cancellation is implemented and live-proven + for `Int32`; extend evidence across other supported write shapes. + +5. OperationComplete parity + - Basic write completion through `PublishWriteComplete` is proven. + - Direct `IASBIDataV2` has no activate/suspend or generic OperationComplete + contract, and create-subscription, add-monitored, publish, + delete-monitored, and delete-subscription operations do not enqueue + `PublishWriteComplete` records. + - Continue trigger search outside the direct IDataV2 write-completion queue + if a safe runtime candidate appears. + - Do not synthesize `OperationComplete` for operations until native behavior is proven. + +5a. Completion-only operation status + - One-byte NMX completion-only frames are preserved as raw, unpromoted + statuses, including `0x00`, `0x41`, and `0xEF`. + - Only the observed 5-byte status-word frame `00 00 50 80 00` maps to + `MxStatus.WriteCompleteOk` and can raise the MXAccess-compatible + write-complete event. + - Exact native `MXSTATUS_PROXY[]` conversion for completion-only bytes still + needs decompiled mapping evidence or a native public event capture before + promotion. + - Current available decompiled/Ghidra outputs did not expose a mapping table + for completion-only bytes. + +6. Buffered data + - Find a runtime/source condition that emits buffered sample batches. + - ASB `MonitoredItem.Buffered` is now exposed and live-proven against + `TestMachine_001.TestHistoryValue`, but the observed publish response + still carries one current value rather than a multi-sample buffered batch. + - Map any proven batch payloads into the compatibility event model. + +7. Production cleanup + - Reduce trace verbosity and make SOAP/body dumps opt-in. + - Channel/factory disposal now sends best-effort signed `Disconnect`, closes + channel/factory independently with caller-controlled timeouts, and records + cleanup results. + - Cleanup cancellation is implemented for cancellation requested before + graceful disconnect/close starts; already-running synchronous WCF cleanup + calls remain bounded by configured timeouts. + - Canceled cleanup is live-proven on an opened ASB channel and completes via + local abort without hanging. + - Explicit reconnect is implemented and live-proven for the normal cleanup + and reconnect path. + - Resolve additional live partial cleanup behavior after ASB channel + failures when a safe provider condition is available. + - Safe refused-endpoint connection failure evidence is captured; source-level + no-communication evidence still needs a safe provider condition. + - Partial ASB connection setup failure now runs channel/factory + close-or-abort cleanup before rethrowing. + +8. Public library shaping + - The main probe-grade API primitives have been shaped into stable public + option/helper surfaces; continue only for concrete caller gaps. + - `AsbConnectionOptions` now fronts `MxAsbDataClient.Connect`, the string + overload delegates to it, and `MxAsbCompatibilityServer.Register` accepts + the same options object. + - `AsbWriteOptions` now fronts the basic write path while preserving the + existing positional write overloads. + - `MxAsbCompatibilityServer.Advise` now has an options overload, and the + probe can route compatibility subscribe through it. + - `AsbPayloadDebug` has been narrowed to an internal friend-only diagnostic + helper for test/probe assemblies. + - `AsbWriteCompletionOptions` now owns timeout/poll/readback validation and + exposes a cancellation token for caller-controlled polling waits. + - `AsbSubscriptionOptions` and `AsbMonitoredItemOptions` now avoid extending + positional primitive overloads as subscription policy grows. + - `AsbPublishResult` now exposes common summary helpers without hiding raw + response details. + - `AsbPublishedValue`, `MxAsbDataChangeEvent`, and `AsbResultMapper` now + expose derived status-summary helpers for common caller paths. + - Public collection null guards are explicit for the main multi-item APIs. + - `docs\ASB-Native-Integration-Decision.md` records the current integration + decision: use `MxAsbClient` as the preferred regular tag data-plane + adapter behind a higher-level compatibility routing facade, while keeping + native NMX responsible for callback-only and not-yet-proven MXAccess + semantics. + - Focused non-live tests now cover public options defaults/validation, + compatibility overload visibility, write-completion/readback DTO shape, + and publish-result helpers. Add deeper request-construction tests only + where future API growth makes them necessary. + - Keep compatibility behavior documented where the deployed provider differs from ideal success semantics.